Merge "Project import generated by Copybara." into 11.0.10
diff --git a/kernel-source/Makefile b/kernel-source/Makefile
deleted file mode 100644
index 803de00..0000000
--- a/kernel-source/Makefile
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-all :
-	bash scripts/build.sh
diff --git a/kernel-source/patches/kernel.spec.patch b/kernel-source/patches/kernel.spec.patch
deleted file mode 100644
index 8c56209..0000000
--- a/kernel-source/patches/kernel.spec.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- thirdparty/SPECS/kernel.spec	2022-06-08 15:20:05.813872246 +0000
-+++ kernel.spec	2022-06-08 15:22:00.662019559 +0000
-@@ -6,6 +6,7 @@
- %define dist .el7
- 
- # % define buildid .local
-+%define buildid .act_KNLSUFFIX
- 
- # If there's no unversioned python, select version explicitly,
- # so it's possible to at least do rh-srpm.
-@@ -98,7 +99,7 @@
- # Set debugbuildsenabled to 1 for production (build separate debug kernels)
- #  and 0 for rawhide (all kernels are debug kernels).
- # See also 'make debug' and 'make release'. RHEL only ever does 1.
--%define debugbuildsenabled 1
-+%define debugbuildsenabled 0
- 
- %define with_gcov %{?_with_gcov:1}%{?!_with_gcov:0}
- 
-@@ -969,6 +972,17 @@
-     %pesign -s -i $KernelImage.tmp -o $KernelImage.signed -a %{SOURCE15} -c %{SOURCE16} -n %{pesign_name_1}
-     rm $KernelImage.tmp
-     mv $KernelImage.signed $KernelImage
-+    sbattach --detach $KernelImage.oldsig --remove $KernelImage
-+    sbattach --remove $KernelImage
-+    kms_signer --project backupdr-build --location global \
-+    --keyring uefi-signing-prod --key db-signing --key-version 1 pkcs7 \
-+    --signing-cert /target/dbsign-v1.crt --input $KernelImage.oldsig \
-+    --output $KernelImage.newsig
-+    cp $KernelImage  $KernelImage.signed
-+    sbattach --attach $KernelImage.newsig $KernelImage.signed
-+    mv $KernelImage.signed $KernelImage
-+    rm -f $KernelImage.newsig
-+    rm -f $KernelImage.oldsig
- %endif
-     $CopyKernel $KernelImage $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
-     chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
diff --git a/kernel-source/scripts/build.sh b/kernel-source/scripts/build.sh
deleted file mode 100644
index 4d1f3a3..0000000
--- a/kernel-source/scripts/build.sh
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/bash
-#
-# This creates an "rpmbuild" environment in which to
-# build the CentOS kernel 
-#
-set -x
-
-
-#
-# This is most likely temporary, we need to get the build
-# number information into git like the other branches
-
-KNLSUFFIX=$(date "+%y%m%d%H%M%S" )
-
-# We need DST_DIR to be set so that we know where to build
-if [ "$DST_DIR" == "" ]
-then
-    echo "DST_DIR is not set"
-    exit 1
-fi
-
-# Save our current directory
-SRCDIR=$(pwd)
-
-# Create the target dirs under DST_DIR
-mkdir -p $DST_DIR/rpmbuild
-mkdir -p $DST_DIR/RPMS
-mkdir -p $DST_DIR/SRPMS
-
-# Create an "rpmbuild" environment with symlinks
-pushd $DST_DIR/rpmbuild
-ln -s ../RPMS .
-ln -s ../SRPMS .
-cp -rpd $SRCDIR/thirdparty/SOURCES .
-cp $SRCDIR/patches/* $DST_DIR/rpmbuild/SOURCES
-
-mkdir SPECS
-
-# Use rpmbuid to build the new kernel
-cd SPECS
-
-cp $SRCDIR/thirdparty/SPECS/kernel.spec .
-cat $SRCDIR/patches/kernel.spec.patch | sed s/KNLSUFFIX/$KNLSUFFIX/ | patch -p0
-
-export HOME=$DST_DIR
-
-rpmbuild -ba kernel.spec
-
-popd
-
-
diff --git a/kernel-source/thirdparty/SOURCES/Makefile.common b/kernel-source/thirdparty/SOURCES/Makefile.common
deleted file mode 100644
index e79e05a..0000000
--- a/kernel-source/thirdparty/SOURCES/Makefile.common
+++ /dev/null
@@ -1,52 +0,0 @@
-RPMBUILD := $(shell if [ -x "/usr/bin/rpmbuild" ]; then echo rpmbuild; \
-                   else echo rpm; fi)
-REDHAT:=$(shell pwd)
-TOPDIR:=$(shell dirname $(REDHAT))
-MACH :=  $(shell uname -m)
-KVERSION:=3.10.0
-GITID:= $(shell git log --max-count=1 --pretty=format:%H)
-RPMVERSION:=3.10.0
-# marker is git tag which we base off of for exporting patches
-MARKER:=v3.10
-PREBUILD:=
-BUILD:=1160.102.1
-DIST:=.el7
-SPECFILE:=kernel.spec
-RPM:=$(REDHAT)/rpm
-SRPMS:=$(RPM)/SRPMS
-SOURCES:=$(RPM)/SOURCES
-TESTPATCH:=$(REDHAT)/linux-kernel-test.patch
-FILTERDIFF:=/usr/bin/filterdiff -x '*redhat/*' -x '*/.gitignore' -x '*/makefile' -x '*/Makefile'
-
-# RELEASED_KERNEL: swaps between the pre-release secureboot keys and
-# 		   the release one, for vmlinux signing.
-#
-#	0 : pre-release (devel) secureboot keys are used for signing
-#	1 : release (RC/GA) secureboot keys are used for signing
-#
-RELEASED_KERNEL:=1
-
-STAMP_VERSION:=$(KVERSION)
-
-LOCVERFILE:=../localversion
-# create an empty localversion file if you don't want a local buildid
-ifneq ($(wildcard $(LOCVERFILE)),)
-  BUILDID:=$(shell cat $(LOCVERFILE))
-else
-  BUILDID:=.test
-endif
-$(info BUILDID is "$(BUILDID)". Update '$(shell dirname $(REDHAT))/localversion' to change.)
-
-PKGRELEASE:=$(PREBUILD)$(BUILD)$(DIST)$(BUILDID)
-SPECRELEASE:=$(PREBUILD)$(BUILD)%{?dist}$(BUILDID)
-
-TARFILE:=linux-$(KVERSION)-$(PKGRELEASE).tar.xz
-TARBALL:=$(REDHAT)/$(TARFILE)
-DISTRO_BUILD:=$(shell echo $(BUILD) | sed -e 's|\(^[0-9]\{1,4\}\)\..*|\1|')
-KABI_TARFILE:=kernel-abi-whitelists-$(DISTRO_BUILD).tar.bz2
-KABI_TARBALL:=$(REDHAT)/rpm/SOURCES/$(KABI_TARFILE)
-KABIDW_TARFILE:=kernel-kabi-dw-$(DISTRO_BUILD).tar.bz2
-KABIDW_TARBALL:=$(REDHAT)/rpm/SOURCES/$(KABIDW_TARFILE)
-
-RHELMAJOR:=$(shell git show HEAD:Makefile | grep ^RHEL_MAJOR | sed -e s/RHEL_MAJOR\ =\ //)
-RHELMINOR:=$(shell git show HEAD:Makefile | grep ^RHEL_MINOR | sed -e s/RHEL_MINOR\ =\ //)
diff --git a/kernel-source/thirdparty/SOURCES/Module.kabi_ppc64 b/kernel-source/thirdparty/SOURCES/Module.kabi_ppc64
deleted file mode 100644
index c7eab18..0000000
--- a/kernel-source/thirdparty/SOURCES/Module.kabi_ppc64
+++ /dev/null
@@ -1,837 +0,0 @@
-0x4e0a651e	___pskb_trim	vmlinux	EXPORT_SYMBOL
-0xd0e0f254	__alloc_pages_nodemask	vmlinux	EXPORT_SYMBOL
-0x949f7342	__alloc_percpu	vmlinux	EXPORT_SYMBOL_GPL
-0xbb0a3c26	__alloc_skb	vmlinux	EXPORT_SYMBOL
-0x43a53735	__alloc_workqueue_key	vmlinux	EXPORT_SYMBOL_GPL
-0x6b1b67d3	__bdevname	vmlinux	EXPORT_SYMBOL
-0x9e9f1714	__bitmap_andnot	vmlinux	EXPORT_SYMBOL
-0x6d27ef64	__bitmap_empty	vmlinux	EXPORT_SYMBOL
-0xc256e762	__bitmap_equal	vmlinux	EXPORT_SYMBOL
-0xea10655a	__bitmap_intersects	vmlinux	EXPORT_SYMBOL
-0x4df119fa	__bitmap_parse	vmlinux	EXPORT_SYMBOL
-0x4a358252	__bitmap_subset	vmlinux	EXPORT_SYMBOL
-0x4cbbd171	__bitmap_weight	vmlinux	EXPORT_SYMBOL
-0x67f1ea3b	__blk_end_request	vmlinux	EXPORT_SYMBOL
-0x64692ccc	__blk_put_request	vmlinux	EXPORT_SYMBOL_GPL
-0xf01ef248	__blockdev_direct_IO	vmlinux	EXPORT_SYMBOL
-0xa8a6f639	__check_region	vmlinux	EXPORT_SYMBOL
-0xc72acb10	__class_create	vmlinux	EXPORT_SYMBOL_GPL
-0x0753bcb1	__class_register	vmlinux	EXPORT_SYMBOL_GPL
-0x466c14a7	__delay	vmlinux	EXPORT_SYMBOL
-0xf001e177	__dev_get_by_index	vmlinux	EXPORT_SYMBOL
-0xedb94920	__dev_get_by_name	vmlinux	EXPORT_SYMBOL
-0xec6fc505	__dynamic_dev_dbg	vmlinux	EXPORT_SYMBOL
-0x73ea3875	__ethtool_get_settings	vmlinux	EXPORT_SYMBOL
-0x3ec9240c	__first_cpu	vmlinux	EXPORT_SYMBOL
-0x4eb46297	__generic_file_aio_write	vmlinux	EXPORT_SYMBOL
-0x6b435680	__genl_register_family	vmlinux	EXPORT_SYMBOL
-0x93fca811	__get_free_pages	vmlinux	EXPORT_SYMBOL
-0x011d5690	__get_page_tail	vmlinux	EXPORT_SYMBOL
-0x019e7765	__init_rwsem	vmlinux	EXPORT_SYMBOL
-0xa1c99385	__init_waitqueue_head	vmlinux	EXPORT_SYMBOL
-0xb4a05e4f	__insert_inode_hash	vmlinux	EXPORT_SYMBOL
-0x0d542439	__ipv6_addr_type	vmlinux	EXPORT_SYMBOL
-0xd2b09ce5	__kmalloc	vmlinux	EXPORT_SYMBOL
-0x0343a1a8	__list_add	vmlinux	EXPORT_SYMBOL
-0x1e579dc5	__list_add_rcu	vmlinux	EXPORT_SYMBOL
-0x65e75cb6	__list_del_entry	vmlinux	EXPORT_SYMBOL
-0xf9aa3ea9	__lock_page	vmlinux	EXPORT_SYMBOL
-0xfca23429	__mark_inode_dirty	vmlinux	EXPORT_SYMBOL
-0xe729c34b	__mmdrop	vmlinux	EXPORT_SYMBOL_GPL
-0x959389f7	__mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
-0x5be0c3a6	__module_get	vmlinux	EXPORT_SYMBOL
-0x6b7ba5a0	__mutex_init	vmlinux	EXPORT_SYMBOL
-0x84142bb5	__napi_complete	vmlinux	EXPORT_SYMBOL
-0xcf3ee562	__napi_schedule	vmlinux	EXPORT_SYMBOL
-0x0a7a5195	__netdev_alloc_skb	vmlinux	EXPORT_SYMBOL
-0x314b7d41	__netif_schedule	vmlinux	EXPORT_SYMBOL
-0x00ac6958	__next_cpu	vmlinux	EXPORT_SYMBOL
-0x5289b437	__next_cpu_nr	vmlinux	EXPORT_SYMBOL
-0x6bd99593	__nlmsg_put	vmlinux	EXPORT_SYMBOL
-0x46c47fb6	__node_distance	vmlinux	EXPORT_SYMBOL
-0xd93502ca	__pagevec_release	vmlinux	EXPORT_SYMBOL
-0x82263c10	__pci_register_driver	vmlinux	EXPORT_SYMBOL
-0x499bfc6d	__per_cpu_offset	vmlinux	EXPORT_SYMBOL
-0x4a644cf6	__pskb_pull_tail	vmlinux	EXPORT_SYMBOL
-0x551bd071	__rb_erase_color	vmlinux	EXPORT_SYMBOL
-0x120b336a	__rb_insert_augmented	vmlinux	EXPORT_SYMBOL
-0xf7289d82	__register_chrdev	vmlinux	EXPORT_SYMBOL
-0x7c61340c	__release_region	vmlinux	EXPORT_SYMBOL
-0x402b8281	__request_module	vmlinux	EXPORT_SYMBOL
-0x1fedf0f4	__request_region	vmlinux	EXPORT_SYMBOL
-0xafdf7cb7	__root_device_register	vmlinux	EXPORT_SYMBOL_GPL
-0xed54724c	__set_page_dirty_nobuffers	vmlinux	EXPORT_SYMBOL
-0x00fb8538	__skb_checksum_complete	vmlinux	EXPORT_SYMBOL
-0x5889c789	__skb_get_hash	vmlinux	EXPORT_SYMBOL
-0xa47fd548	__skb_gso_segment	vmlinux	EXPORT_SYMBOL
-0x868784cb	__symbol_get	vmlinux	EXPORT_SYMBOL_GPL
-0x6e9dd606	__symbol_put	vmlinux	EXPORT_SYMBOL
-0x0f869f4a	__task_pid_nr_ns	vmlinux	EXPORT_SYMBOL
-0x961aa14d	__test_set_page_writeback	vmlinux	EXPORT_SYMBOL
-0xa3fc3d50	__tracepoint_module_get	vmlinux	EXPORT_SYMBOL
-0x6bc3fbc0	__unregister_chrdev	vmlinux	EXPORT_SYMBOL
-0x26477c07	__vmalloc	vmlinux	EXPORT_SYMBOL
-0x5e3a8a9c	__wake_up	vmlinux	EXPORT_SYMBOL
-0xa1c76e0a	_cond_resched	vmlinux	EXPORT_SYMBOL
-0x061d1859	_dev_info	vmlinux	EXPORT_SYMBOL
-0x89797060	_raw_read_lock	vmlinux	EXPORT_SYMBOL
-0x4c11435a	_raw_read_lock_bh	vmlinux	EXPORT_SYMBOL
-0xbfb8b0b7	_raw_read_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0xfdb6cedc	_raw_read_unlock_bh	vmlinux	EXPORT_SYMBOL
-0xcc17504d	_raw_read_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0xde48e9ca	_raw_spin_lock	vmlinux	EXPORT_SYMBOL
-0xaf063510	_raw_spin_lock_bh	vmlinux	EXPORT_SYMBOL
-0xcd0529c7	_raw_spin_lock_irq	vmlinux	EXPORT_SYMBOL
-0xf5222143	_raw_spin_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0x9d7ce8dd	_raw_spin_trylock	vmlinux	EXPORT_SYMBOL
-0x1b2150a9	_raw_spin_unlock	vmlinux	EXPORT_SYMBOL
-0xe4fe8ca1	_raw_spin_unlock_bh	vmlinux	EXPORT_SYMBOL
-0x5c37f319	_raw_spin_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0xac26b820	_raw_write_lock	vmlinux	EXPORT_SYMBOL
-0xc47cdf9c	_raw_write_lock_bh	vmlinux	EXPORT_SYMBOL
-0x0e8f30f6	_raw_write_lock_irq	vmlinux	EXPORT_SYMBOL
-0xaa6e4df5	_raw_write_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0x99afe916	_raw_write_unlock_bh	vmlinux	EXPORT_SYMBOL
-0xae545f06	_raw_write_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0xa3abc422	abort_exclusive_wait	vmlinux	EXPORT_SYMBOL
-0x90e00558	add_disk	vmlinux	EXPORT_SYMBOL
-0xbe2c0274	add_timer	vmlinux	EXPORT_SYMBOL
-0x735d8503	add_wait_queue	vmlinux	EXPORT_SYMBOL
-0x75994700	add_wait_queue_exclusive	vmlinux	EXPORT_SYMBOL
-0x74f612e9	aio_complete	vmlinux	EXPORT_SYMBOL
-0x29537c9e	alloc_chrdev_region	vmlinux	EXPORT_SYMBOL
-0x092d13e8	alloc_disk	vmlinux	EXPORT_SYMBOL
-0xa8d06ab8	alloc_etherdev_mqs	vmlinux	EXPORT_SYMBOL
-0xc2ad3937	alloc_netdev_mqs	vmlinux	EXPORT_SYMBOL
-0xce30f1c5	alloc_pages_current	vmlinux	EXPORT_SYMBOL
-0xd79b5a02	allow_signal	vmlinux	EXPORT_SYMBOL
-0x736b1ee9	arp_create	vmlinux	EXPORT_SYMBOL
-0x9ebfae51	arp_send	vmlinux	EXPORT_SYMBOL
-0xdea02b92	arp_xmit	vmlinux	EXPORT_SYMBOL
-0xcc85fcb6	async_schedule	vmlinux	EXPORT_SYMBOL_GPL
-0x836d61d0	atomic_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
-0xb5aa10af	atomic_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc8b57c27	autoremove_wake_function	vmlinux	EXPORT_SYMBOL
-0xaf4e8d77	balance_dirty_pages_ratelimited	vmlinux	EXPORT_SYMBOL
-0x441645e7	bdevname	vmlinux	EXPORT_SYMBOL
-0x45959346	bdget	vmlinux	EXPORT_SYMBOL
-0xf5090636	bdget_disk	vmlinux	EXPORT_SYMBOL
-0x2500ba4e	bdi_destroy	vmlinux	EXPORT_SYMBOL
-0x3331b7ef	bdi_init	vmlinux	EXPORT_SYMBOL
-0x4955295c	bdi_register_dev	vmlinux	EXPORT_SYMBOL
-0x40a37ba4	bdi_unregister	vmlinux	EXPORT_SYMBOL
-0x9671a238	bdput	vmlinux	EXPORT_SYMBOL
-0xbc897608	bio_add_page	vmlinux	EXPORT_SYMBOL
-0xe0a41dcf	bio_alloc_bioset	vmlinux	EXPORT_SYMBOL
-0x70ed2f8d	bio_clone_bioset	vmlinux	EXPORT_SYMBOL
-0xfe7394c3	bio_endio	vmlinux	EXPORT_SYMBOL
-0xe1d1a963	bio_get_nr_vecs	vmlinux	EXPORT_SYMBOL
-0x066a6609	bio_init	vmlinux	EXPORT_SYMBOL
-0x7dec7b53	bio_put	vmlinux	EXPORT_SYMBOL
-0x0ae90a88	bioset_create	vmlinux	EXPORT_SYMBOL
-0xeaddbae5	bioset_free	vmlinux	EXPORT_SYMBOL
-0x8251bcc3	bitmap_release_region	vmlinux	EXPORT_SYMBOL
-0x646a6b68	blk_alloc_queue	vmlinux	EXPORT_SYMBOL
-0x34d2d1fd	blk_cleanup_queue	vmlinux	EXPORT_SYMBOL
-0x24b9bd76	blk_end_request	vmlinux	EXPORT_SYMBOL
-0x83f3612c	blk_end_request_all	vmlinux	EXPORT_SYMBOL
-0x6edff580	blk_execute_rq	vmlinux	EXPORT_SYMBOL
-0x1bd07cc4	blk_execute_rq_nowait	vmlinux	EXPORT_SYMBOL_GPL
-0xd7d260c1	blk_fetch_request	vmlinux	EXPORT_SYMBOL
-0x0ce900af	blk_finish_plug	vmlinux	EXPORT_SYMBOL
-0x6cfe8edf	blk_get_backing_dev_info	vmlinux	EXPORT_SYMBOL
-0x8f520a60	blk_get_queue	vmlinux	EXPORT_SYMBOL
-0xaebe8770	blk_get_request	vmlinux	EXPORT_SYMBOL
-0x9846b739	blk_init_queue	vmlinux	EXPORT_SYMBOL
-0x124af3bf	blk_limits_io_min	vmlinux	EXPORT_SYMBOL
-0x7c922190	blk_limits_io_opt	vmlinux	EXPORT_SYMBOL
-0x226a4d31	blk_make_request	vmlinux	EXPORT_SYMBOL
-0x544d84f6	blk_mq_unique_tag	vmlinux	EXPORT_SYMBOL
-0x52c404e8	blk_put_queue	vmlinux	EXPORT_SYMBOL
-0x9e46db32	blk_put_request	vmlinux	EXPORT_SYMBOL
-0xadb55f7f	blk_queue_bounce	vmlinux	EXPORT_SYMBOL
-0xc19a0501	blk_queue_bounce_limit	vmlinux	EXPORT_SYMBOL
-0x24e88152	blk_queue_dma_alignment	vmlinux	EXPORT_SYMBOL
-0xc89fc98e	blk_queue_end_tag	vmlinux	EXPORT_SYMBOL
-0x4bf8f8e4	blk_queue_flush	vmlinux	EXPORT_SYMBOL_GPL
-0x39b95d1e	blk_queue_init_tags	vmlinux	EXPORT_SYMBOL
-0x29a84f9d	blk_queue_logical_block_size	vmlinux	EXPORT_SYMBOL
-0x25e93eae	blk_queue_make_request	vmlinux	EXPORT_SYMBOL
-0xdd3018d7	blk_queue_max_discard_sectors	vmlinux	EXPORT_SYMBOL
-0x4b3863b1	blk_queue_max_hw_sectors	vmlinux	EXPORT_SYMBOL
-0xc98aadb1	blk_queue_max_segments	vmlinux	EXPORT_SYMBOL
-0x41ede271	blk_queue_merge_bvec	vmlinux	EXPORT_SYMBOL
-0xf9e81836	blk_queue_rq_timed_out	vmlinux	EXPORT_SYMBOL_GPL
-0xf4dcc005	blk_queue_segment_boundary	vmlinux	EXPORT_SYMBOL
-0x61689aec	blk_queue_softirq_done	vmlinux	EXPORT_SYMBOL
-0xb617abdd	blk_queue_stack_limits	vmlinux	EXPORT_SYMBOL
-0xe57caec7	blk_rq_init	vmlinux	EXPORT_SYMBOL
-0x5f39ee75	blk_rq_map_kern	vmlinux	EXPORT_SYMBOL
-0x925520d2	blk_start_plug	vmlinux	EXPORT_SYMBOL
-0xea346831	blk_start_queue	vmlinux	EXPORT_SYMBOL
-0x08795d9d	blk_stop_queue	vmlinux	EXPORT_SYMBOL
-0xfddaf54b	blk_sync_queue	vmlinux	EXPORT_SYMBOL
-0xab9d194a	blkdev_get	vmlinux	EXPORT_SYMBOL
-0x744ada85	blkdev_get_by_dev	vmlinux	EXPORT_SYMBOL
-0xe031e70e	blkdev_get_by_path	vmlinux	EXPORT_SYMBOL
-0x537208c4	blkdev_issue_discard	vmlinux	EXPORT_SYMBOL
-0x77d1c2b6	blkdev_put	vmlinux	EXPORT_SYMBOL
-0x092ff7a1	block_write_begin	vmlinux	EXPORT_SYMBOL
-0x19e5e68d	block_write_full_page	vmlinux	EXPORT_SYMBOL
-0xfd6293c2	boot_tvec_bases	vmlinux	EXPORT_SYMBOL
-0x57100a27	bus_register	vmlinux	EXPORT_SYMBOL_GPL
-0x8ccf53d6	bus_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xa75312bc	call_rcu_sched	vmlinux	EXPORT_SYMBOL_GPL
-0xc5fdef94	call_usermodehelper	vmlinux	EXPORT_SYMBOL
-0x93a8d611	call_usermodehelper_exec	vmlinux	EXPORT_SYMBOL
-0x87236b53	call_usermodehelper_setup	vmlinux	EXPORT_SYMBOL
-0x5991219c	cancel_delayed_work	vmlinux	EXPORT_SYMBOL
-0x797c8fa9	cancel_delayed_work_sync	vmlinux	EXPORT_SYMBOL
-0x96400c76	cdev_add	vmlinux	EXPORT_SYMBOL
-0x6e51a4c9	cdev_alloc	vmlinux	EXPORT_SYMBOL
-0x6ba98a96	cdev_del	vmlinux	EXPORT_SYMBOL
-0x30e2b7f5	cdev_init	vmlinux	EXPORT_SYMBOL
-0xc5afc285	class_destroy	vmlinux	EXPORT_SYMBOL_GPL
-0x2328e744	class_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x155ea61f	clear_inode	vmlinux	EXPORT_SYMBOL
-0xf1c7a49d	clear_nlink	vmlinux	EXPORT_SYMBOL
-0xb0aa81eb	clear_page_dirty_for_io	vmlinux	EXPORT_SYMBOL
-0x5568c553	complete	vmlinux	EXPORT_SYMBOL
-0x68609857	complete_and_exit	vmlinux	EXPORT_SYMBOL
-0xbd5b9464	consume_skb	vmlinux	EXPORT_SYMBOL
-0x33b84f74	copy_page	vmlinux	EXPORT_SYMBOL
-0x7ff5383e	cpu_active_mask	vmlinux	EXPORT_SYMBOL
-0x1389da84	cpu_bit_bitmap	vmlinux	EXPORT_SYMBOL_GPL
-0xc6774da5	cpu_online_mask	vmlinux	EXPORT_SYMBOL
-0xa631df8a	cpu_possible_mask	vmlinux	EXPORT_SYMBOL
-0xfbdd4c01	cpu_present_mask	vmlinux	EXPORT_SYMBOL
-0x76b59b33	cpu_sibling_map	vmlinux	EXPORT_SYMBOL
-0xdef417d9	crypto_alloc_base	vmlinux	EXPORT_SYMBOL_GPL
-0xbad95e42	crypto_destroy_tfm	vmlinux	EXPORT_SYMBOL_GPL
-0xacc5b5d2	csum_ipv6_magic	vmlinux	EXPORT_SYMBOL
-0xe113bbbc	csum_partial	vmlinux	EXPORT_SYMBOL
-0x174e4211	current_fs_time	vmlinux	EXPORT_SYMBOL
-0x34184afe	current_kernel_time	vmlinux	EXPORT_SYMBOL
-0x5e95b1cd	current_umask	vmlinux	EXPORT_SYMBOL
-0x3bab5b3f	d_alloc	vmlinux	EXPORT_SYMBOL
-0x0f4d97cd	d_drop	vmlinux	EXPORT_SYMBOL
-0x39ad33aa	d_instantiate	vmlinux	EXPORT_SYMBOL
-0x10351553	d_lookup	vmlinux	EXPORT_SYMBOL
-0x7f11dc4e	d_make_root	vmlinux	EXPORT_SYMBOL
-0x7f4e5c3b	d_obtain_alias	vmlinux	EXPORT_SYMBOL
-0x6032834e	d_prune_aliases	vmlinux	EXPORT_SYMBOL
-0x3a2c6d3a	d_rehash	vmlinux	EXPORT_SYMBOL
-0x3026b0e4	d_set_d_op	vmlinux	EXPORT_SYMBOL
-0x0517be97	debugfs_create_dir	vmlinux	EXPORT_SYMBOL_GPL
-0x747e3560	debugfs_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0x689e6591	debugfs_create_u32	vmlinux	EXPORT_SYMBOL_GPL
-0x791c5597	debugfs_remove	vmlinux	EXPORT_SYMBOL_GPL
-0xffd5a395	default_wake_function	vmlinux	EXPORT_SYMBOL
-0xb5a56ff4	del_gendisk	vmlinux	EXPORT_SYMBOL
-0xc996d097	del_timer	vmlinux	EXPORT_SYMBOL
-0xd5f2172f	del_timer_sync	vmlinux	EXPORT_SYMBOL
-0x6b06fdce	delayed_work_timer_fn	vmlinux	EXPORT_SYMBOL
-0x8c03d20c	destroy_workqueue	vmlinux	EXPORT_SYMBOL_GPL
-0xf7bfa73f	dev_add_pack	vmlinux	EXPORT_SYMBOL
-0xff6903c6	dev_addr_add	vmlinux	EXPORT_SYMBOL
-0x97642d97	dev_addr_del	vmlinux	EXPORT_SYMBOL
-0x43d3b493	dev_close	vmlinux	EXPORT_SYMBOL
-0x6724aeb0	dev_err	vmlinux	EXPORT_SYMBOL
-0xe574fafc	dev_get_by_index	vmlinux	EXPORT_SYMBOL
-0x75de9c18	dev_get_by_name	vmlinux	EXPORT_SYMBOL
-0x8da17a98	dev_get_drvdata	vmlinux	EXPORT_SYMBOL
-0x1e4b9dfb	dev_get_stats	vmlinux	EXPORT_SYMBOL
-0x77b4ed95	dev_kfree_skb_any	vmlinux	EXPORT_SYMBOL
-0x817a4ef4	dev_kfree_skb_irq	vmlinux	EXPORT_SYMBOL
-0x09bd3d11	dev_mc_add	vmlinux	EXPORT_SYMBOL
-0x1ae086a1	dev_mc_del	vmlinux	EXPORT_SYMBOL
-0x935ef735	dev_open	vmlinux	EXPORT_SYMBOL
-0x186823ad	dev_printk	vmlinux	EXPORT_SYMBOL
-0xf953d844	dev_queue_xmit	vmlinux	EXPORT_SYMBOL
-0x56e5912e	dev_remove_pack	vmlinux	EXPORT_SYMBOL
-0xeee3a6ab	dev_set_allmulti	vmlinux	EXPORT_SYMBOL
-0x7236e180	dev_set_drvdata	vmlinux	EXPORT_SYMBOL
-0xc4d9c1fd	dev_set_mac_address	vmlinux	EXPORT_SYMBOL
-0xc2c2c982	dev_set_mtu	vmlinux	EXPORT_SYMBOL
-0xd1e41860	dev_set_name	vmlinux	EXPORT_SYMBOL_GPL
-0xac2827a7	dev_set_promiscuity	vmlinux	EXPORT_SYMBOL
-0x401c8a0f	dev_trans_start	vmlinux	EXPORT_SYMBOL
-0xfd2f64b3	dev_warn	vmlinux	EXPORT_SYMBOL
-0x11e4247a	device_create	vmlinux	EXPORT_SYMBOL_GPL
-0x311610f2	device_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0xb9cace8d	device_del	vmlinux	EXPORT_SYMBOL_GPL
-0x139c004a	device_destroy	vmlinux	EXPORT_SYMBOL_GPL
-0xd086f483	device_register	vmlinux	EXPORT_SYMBOL_GPL
-0x466d9ba0	device_remove_file	vmlinux	EXPORT_SYMBOL_GPL
-0xc3ecbf4d	device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xe3840116	dget_parent	vmlinux	EXPORT_SYMBOL
-0x3ce4ca6f	disable_irq	vmlinux	EXPORT_SYMBOL
-0x27bbf221	disable_irq_nosync	vmlinux	EXPORT_SYMBOL
-0x203ea967	dma_set_mask	vmlinux	EXPORT_SYMBOL
-0x952664c5	do_exit	vmlinux	EXPORT_SYMBOL_GPL
-0x4f68e5c9	do_gettimeofday	vmlinux	EXPORT_SYMBOL
-0xdc9498dd	down	vmlinux	EXPORT_SYMBOL
-0x4289f7df	down_interruptible	vmlinux	EXPORT_SYMBOL
-0xbc3f6afa	down_read	vmlinux	EXPORT_SYMBOL
-0xc91ff664	down_read_trylock	vmlinux	EXPORT_SYMBOL
-0x4678aa19	down_timeout	vmlinux	EXPORT_SYMBOL
-0x7bcc3ec6	down_trylock	vmlinux	EXPORT_SYMBOL
-0xdbb24fc2	down_write	vmlinux	EXPORT_SYMBOL
-0xbe77aebe	down_write_trylock	vmlinux	EXPORT_SYMBOL
-0x4f19b279	dquot_acquire	vmlinux	EXPORT_SYMBOL
-0x56486b36	dquot_alloc	vmlinux	EXPORT_SYMBOL
-0xe3c79736	dquot_commit	vmlinux	EXPORT_SYMBOL
-0x91ad81e6	dquot_commit_info	vmlinux	EXPORT_SYMBOL
-0xdf455f79	dquot_destroy	vmlinux	EXPORT_SYMBOL
-0xe02e2164	dquot_mark_dquot_dirty	vmlinux	EXPORT_SYMBOL
-0x253c197a	dquot_release	vmlinux	EXPORT_SYMBOL
-0x16c29988	driver_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0xedaa03da	driver_register	vmlinux	EXPORT_SYMBOL_GPL
-0x6721a551	driver_remove_file	vmlinux	EXPORT_SYMBOL_GPL
-0x2a06e30b	driver_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x877895ec	dst_release	vmlinux	EXPORT_SYMBOL
-0x6b2dc060	dump_stack	vmlinux	EXPORT_SYMBOL
-0xc00d678b	elevator_change	vmlinux	EXPORT_SYMBOL
-0xd0c05159	emergency_restart	vmlinux	EXPORT_SYMBOL_GPL
-0xfcec0987	enable_irq	vmlinux	EXPORT_SYMBOL
-0x6033853b	end_page_writeback	vmlinux	EXPORT_SYMBOL
-0x52ba85e4	eth_change_mtu	vmlinux	EXPORT_SYMBOL
-0x8320c0e8	eth_mac_addr	vmlinux	EXPORT_SYMBOL
-0xc023df52	eth_type_trans	vmlinux	EXPORT_SYMBOL
-0xba2ce95a	eth_validate_addr	vmlinux	EXPORT_SYMBOL
-0x62c18f0a	ether_setup	vmlinux	EXPORT_SYMBOL
-0x2b3fe8a2	ether_setup_rh	vmlinux	EXPORT_SYMBOL
-0x47ae30a8	ethtool_op_get_link	vmlinux	EXPORT_SYMBOL
-0x098b71c6	fb_dealloc_cmap	vmlinux	EXPORT_SYMBOL
-0xdcba476f	fc_attach_transport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x64980c58	fc_change_queue_depth	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xc44645db	fc_exch_mgr_alloc	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xc0428dbb	fc_exch_mgr_free	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x7d7d661a	fc_exch_mgr_reset	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x7c9a0933	fc_exch_recv	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x95b841fc	fc_fabric_login	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x52314964	fc_fabric_logoff	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xa4d7fe36	fc_get_host_port_state	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xdad0ecf9	fc_lport_bsg_request	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xf3f10eb3	fc_lport_config	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xdc6df492	fc_lport_destroy	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x479ef9bd	fc_release_transport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xb467daff	fc_remote_port_add	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x3e865fcc	fc_remote_port_delete	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xe915c2f3	fc_remote_port_rolechg	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x10c242fc	fc_remove_host	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x72c225d2	fc_set_mfs	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xc0e2c93c	fc_vport_terminate	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xf34710d0	fcoe_ctlr_destroy	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x3d0c661b	fcoe_ctlr_els_send	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x06fd692a	fcoe_ctlr_init	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x64ba0b82	fcoe_ctlr_link_down	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xf7b3ab5c	fcoe_ctlr_link_up	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xb8a87951	fcoe_ctlr_recv	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xe797aee6	fcoe_ctlr_recv_flogi	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xdba9446d	fcoe_libfc_config	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL_GPL
-0xec163c04	file_remove_privs	vmlinux	EXPORT_SYMBOL
-0x27662dc4	file_update_time	vmlinux	EXPORT_SYMBOL
-0x6f90cbae	filemap_fault	vmlinux	EXPORT_SYMBOL
-0x960b535d	filemap_flush	vmlinux	EXPORT_SYMBOL
-0x31769ce2	filemap_write_and_wait	vmlinux	EXPORT_SYMBOL
-0x6921b78f	filemap_write_and_wait_range	vmlinux	EXPORT_SYMBOL
-0xcb635093	filp_close	vmlinux	EXPORT_SYMBOL
-0x2372e3a5	filp_open	vmlinux	EXPORT_SYMBOL
-0xf04d1604	find_get_page	vmlinux	EXPORT_SYMBOL
-0x171434d6	find_get_pages_tag	vmlinux	EXPORT_SYMBOL
-0xb1762dfa	find_module	vmlinux	EXPORT_SYMBOL_GPL
-0xc0a3d105	find_next_bit	vmlinux	EXPORT_SYMBOL
-0x479c3c86	find_next_zero_bit	vmlinux	EXPORT_SYMBOL
-0x0892891a	find_or_create_page	vmlinux	EXPORT_SYMBOL
-0x7d27979f	find_vma	vmlinux	EXPORT_SYMBOL
-0xe12e9ebe	find_vpid	vmlinux	EXPORT_SYMBOL_GPL
-0xbd7c2242	finish_no_open	vmlinux	EXPORT_SYMBOL
-0xbee482e5	finish_open	vmlinux	EXPORT_SYMBOL
-0x519b0da3	finish_wait	vmlinux	EXPORT_SYMBOL
-0x00801678	flush_scheduled_work	vmlinux	EXPORT_SYMBOL
-0xfe51a31b	flush_signals	vmlinux	EXPORT_SYMBOL
-0x42160169	flush_workqueue	vmlinux	EXPORT_SYMBOL_GPL
-0x9ea25113	fput	vmlinux	EXPORT_SYMBOL
-0xa4fa766e	framebuffer_alloc	vmlinux	EXPORT_SYMBOL
-0xe9767b6b	framebuffer_release	vmlinux	EXPORT_SYMBOL
-0xf20dabd8	free_irq	vmlinux	EXPORT_SYMBOL
-0x0b733609	free_netdev	vmlinux	EXPORT_SYMBOL
-0x4302d0eb	free_pages	vmlinux	EXPORT_SYMBOL
-0xc9ec4e21	free_percpu	vmlinux	EXPORT_SYMBOL_GPL
-0x18e2f81b	fs_bio_set	vmlinux	EXPORT_SYMBOL
-0xa89f71e5	fsync_bdev	vmlinux	EXPORT_SYMBOL
-0x805d296a	generic_delete_inode	vmlinux	EXPORT_SYMBOL
-0x3b8e71cc	generic_file_aio_read	vmlinux	EXPORT_SYMBOL
-0xb3cc4221	generic_file_aio_write	vmlinux	EXPORT_SYMBOL
-0xcfd13dc9	generic_file_fsync	vmlinux	EXPORT_SYMBOL
-0x2175f13b	generic_file_llseek	vmlinux	EXPORT_SYMBOL
-0x15bd502b	generic_file_open	vmlinux	EXPORT_SYMBOL
-0xee7f06be	generic_file_remap_pages	vmlinux	EXPORT_SYMBOL
-0xcfbe0aba	generic_fillattr	vmlinux	EXPORT_SYMBOL
-0x541136bb	generic_getxattr	vmlinux	EXPORT_SYMBOL
-0x14dc6791	generic_make_request	vmlinux	EXPORT_SYMBOL
-0x8549cc68	generic_read_dir	vmlinux	EXPORT_SYMBOL
-0x1afeb65e	generic_removexattr	vmlinux	EXPORT_SYMBOL
-0x6fd040ec	generic_segment_checks	vmlinux	EXPORT_SYMBOL
-0x10ce4028	generic_setlease	vmlinux	EXPORT_SYMBOL
-0x5481783a	generic_setxattr	vmlinux	EXPORT_SYMBOL
-0x73506772	generic_write_checks	vmlinux	EXPORT_SYMBOL
-0x7fad4e00	generic_write_end	vmlinux	EXPORT_SYMBOL
-0x43f15255	genl_unregister_family	vmlinux	EXPORT_SYMBOL
-0xfe79d045	genlmsg_put	vmlinux	EXPORT_SYMBOL
-0x751b6bad	get_device	vmlinux	EXPORT_SYMBOL_GPL
-0x79aa04a2	get_random_bytes	vmlinux	EXPORT_SYMBOL
-0x405c1144	get_seconds	vmlinux	EXPORT_SYMBOL
-0x8e2f6ce4	get_task_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x2a00ae46	get_user_pages	vmlinux	EXPORT_SYMBOL
-0x9b388444	get_zeroed_page	vmlinux	EXPORT_SYMBOL
-0x0b0d5f71	grab_cache_page_nowait	vmlinux	EXPORT_SYMBOL
-0xd8b8e8d4	grab_cache_page_write_begin	vmlinux	EXPORT_SYMBOL
-0xe900947c	hci_alloc_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0xdd9a0847	hci_free_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0xc16044a5	hci_register_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0x3185f976	hci_unregister_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0xc1647dcc	hrtimer_cancel	vmlinux	EXPORT_SYMBOL_GPL
-0xa7a4705c	hrtimer_forward	vmlinux	EXPORT_SYMBOL_GPL
-0x09376b10	hrtimer_init	vmlinux	EXPORT_SYMBOL_GPL
-0xc3c6c9cc	hrtimer_start	vmlinux	EXPORT_SYMBOL_GPL
-0x3ce35a12	icmpv6_send	vmlinux	EXPORT_SYMBOL
-0x60e2bc13	iget5_locked	vmlinux	EXPORT_SYMBOL
-0x70c52560	igrab	vmlinux	EXPORT_SYMBOL
-0xaccabc6a	in4_pton	vmlinux	EXPORT_SYMBOL
-0x1b6314fd	in_aton	vmlinux	EXPORT_SYMBOL
-0x077d552b	inc_zone_page_state	vmlinux	EXPORT_SYMBOL
-0x3b288f4a	inet_proto_csum_replace4	vmlinux	EXPORT_SYMBOL
-0x4c6bac59	init_net	vmlinux	EXPORT_SYMBOL
-0xd88bb979	init_special_inode	vmlinux	EXPORT_SYMBOL
-0x7951b3f0	init_task	vmlinux	EXPORT_SYMBOL
-0x0593a99b	init_timer_key	vmlinux	EXPORT_SYMBOL
-0xa724257f	init_uts_ns	vmlinux	EXPORT_SYMBOL_GPL
-0xb8e7e0f5	inode_init_once	vmlinux	EXPORT_SYMBOL
-0x754c21f5	inode_newsize_ok	vmlinux	EXPORT_SYMBOL
-0x9208dc0c	inode_owner_or_capable	vmlinux	EXPORT_SYMBOL
-0xd7e9c75b	invalidate_bdev	vmlinux	EXPORT_SYMBOL
-0x1bf0387f	invalidate_inode_pages2_range	vmlinux	EXPORT_SYMBOL_GPL
-0x75dfe224	invalidate_mapping_pages	vmlinux	EXPORT_SYMBOL
-0x5bb092bb	invalidate_partition	vmlinux	EXPORT_SYMBOL
-0x93a6e0b2	io_schedule	vmlinux	EXPORT_SYMBOL
-0x6c2d808a	ioctl_by_bdev	vmlinux	EXPORT_SYMBOL
-0x69a358a6	iomem_resource	vmlinux	EXPORT_SYMBOL
-0xd761a383	ioremap_prot	vmlinux	EXPORT_SYMBOL
-0xedc03953	iounmap	vmlinux	EXPORT_SYMBOL
-0xb562274e	ip6_route_output	vmlinux	EXPORT_SYMBOL
-0x1c80de9c	ip_send_check	vmlinux	EXPORT_SYMBOL
-0x423b776a	ipmi_create_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x8c8ee770	ipmi_destroy_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x5d6ca259	ipmi_register_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x1348760d	ipmi_request_settime	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xa28a2ace	ipmi_set_gets_events	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x16dcec76	ipmi_set_my_address	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x4c971bec	ipmi_smi_msg_received	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x1aba5db8	ipmi_unregister_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xe4f4665b	ipmi_validate_addr	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xa96327d1	iput	vmlinux	EXPORT_SYMBOL
-0x044d326f	ipv6_dev_get_saddr	vmlinux	EXPORT_SYMBOL
-0x99591a7a	ipv6_ext_hdr	vmlinux	EXPORT_SYMBOL
-0x4de20d6a	ipv6_skip_exthdr	vmlinux	EXPORT_SYMBOL
-0x3fb2bd8a	irq_set_affinity_hint	vmlinux	EXPORT_SYMBOL_GPL
-0xe0a05524	irq_stat	vmlinux	EXPORT_SYMBOL
-0x7d11c268	jiffies	vmlinux	EXPORT_SYMBOL
-0xe24d3a97	jiffies_64	vmlinux	EXPORT_SYMBOL
-0x37befc70	jiffies_to_msecs	vmlinux	EXPORT_SYMBOL
-0xd220cf8a	jiffies_to_timespec	vmlinux	EXPORT_SYMBOL
-0x0b06387f	kernel_bind	vmlinux	EXPORT_SYMBOL
-0xea136aae	kernel_getsockopt	vmlinux	EXPORT_SYMBOL
-0x62ba8aba	kernel_recvmsg	vmlinux	EXPORT_SYMBOL
-0x08a5aca2	kernel_sendmsg	vmlinux	EXPORT_SYMBOL
-0xb7554cd8	kernel_setsockopt	vmlinux	EXPORT_SYMBOL
-0xe77d8be0	kernel_sock_ioctl	vmlinux	EXPORT_SYMBOL
-0x576e7e8b	kernel_sock_shutdown	vmlinux	EXPORT_SYMBOL
-0x037a0cba	kfree	vmlinux	EXPORT_SYMBOL
-0x56f3abda	kfree_put_link	vmlinux	EXPORT_SYMBOL
-0x01b10fe1	kfree_skb	vmlinux	EXPORT_SYMBOL
-0x13d65753	kill_block_super	vmlinux	EXPORT_SYMBOL
-0x3b53f972	kill_pgrp	vmlinux	EXPORT_SYMBOL
-0x589718e5	kill_pid	vmlinux	EXPORT_SYMBOL
-0x1c8a8817	kmalloc_caches	vmlinux	EXPORT_SYMBOL
-0xa202a8e5	kmalloc_order_trace	vmlinux	EXPORT_SYMBOL
-0x37d73baa	kmem_cache_alloc	vmlinux	EXPORT_SYMBOL
-0xab75f09f	kmem_cache_alloc_node_trace	vmlinux	EXPORT_SYMBOL
-0xa6f51e81	kmem_cache_alloc_trace	vmlinux	EXPORT_SYMBOL
-0x53310ae5	kmem_cache_create	vmlinux	EXPORT_SYMBOL
-0x7efde935	kmem_cache_destroy	vmlinux	EXPORT_SYMBOL
-0xafdd52f4	kmem_cache_free	vmlinux	EXPORT_SYMBOL
-0x91473ba0	kmem_cache_shrink	vmlinux	EXPORT_SYMBOL
-0x0f80e1e0	kobject_get	vmlinux	EXPORT_SYMBOL
-0xff8c676d	kobject_put	vmlinux	EXPORT_SYMBOL
-0x1eefcf54	kobject_set_name	vmlinux	EXPORT_SYMBOL
-0x3cda4ecf	kobject_uevent_env	vmlinux	EXPORT_SYMBOL_GPL
-0x85f5e2aa	krealloc	vmlinux	EXPORT_SYMBOL
-0x1b17e06c	kstrtoll	vmlinux	EXPORT_SYMBOL
-0xa111eac3	kthread_bind	vmlinux	EXPORT_SYMBOL
-0x7238a29a	kthread_create_on_node	vmlinux	EXPORT_SYMBOL
-0xb3f7646e	kthread_should_stop	vmlinux	EXPORT_SYMBOL
-0x6d76ee6f	kthread_stop	vmlinux	EXPORT_SYMBOL
-0xc87c1f84	ktime_get	vmlinux	EXPORT_SYMBOL_GPL
-0x0521445b	list_del	vmlinux	EXPORT_SYMBOL
-0x94c33897	ll_rw_block	vmlinux	EXPORT_SYMBOL
-0x3ff62317	local_bh_disable	vmlinux	EXPORT_SYMBOL
-0x0799aca4	local_bh_enable	vmlinux	EXPORT_SYMBOL
-0xfe7ff482	lock_sock_nested	vmlinux	EXPORT_SYMBOL
-0x91b7d3a4	lookup_bdev	vmlinux	EXPORT_SYMBOL
-0xba497f13	loops_per_jiffy	vmlinux	EXPORT_SYMBOL
-0xf5b710db	mapping_tagged	vmlinux	EXPORT_SYMBOL
-0x8b6eed4f	mark_page_accessed	vmlinux	EXPORT_SYMBOL
-0x716c85d4	mem_section	vmlinux	EXPORT_SYMBOL
-0xa07a37f0	memchr	vmlinux	EXPORT_SYMBOL
-0x1c3e02e4	memcmp	vmlinux	EXPORT_SYMBOL
-0x4829a47e	memcpy	vmlinux	EXPORT_SYMBOL
-0x5a9f1d63	memmove	vmlinux	EXPORT_SYMBOL
-0x65e0d6d7	memory_read_from_buffer	vmlinux	EXPORT_SYMBOL
-0xafff3d1d	mempool_alloc	vmlinux	EXPORT_SYMBOL
-0x183fa88b	mempool_alloc_slab	vmlinux	EXPORT_SYMBOL
-0x8de0b5ac	mempool_create	vmlinux	EXPORT_SYMBOL
-0x891fbb10	mempool_destroy	vmlinux	EXPORT_SYMBOL
-0x23f2243d	mempool_free	vmlinux	EXPORT_SYMBOL
-0x8a99a016	mempool_free_slab	vmlinux	EXPORT_SYMBOL
-0xdcb764ad	memset	vmlinux	EXPORT_SYMBOL
-0xd813a358	misc_deregister	vmlinux	EXPORT_SYMBOL
-0x0520243b	misc_register	vmlinux	EXPORT_SYMBOL
-0xcecc85e5	mmput	vmlinux	EXPORT_SYMBOL_GPL
-0xf07e7682	mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
-0xc21d1846	mmu_notifier_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x8834396c	mod_timer	vmlinux	EXPORT_SYMBOL
-0x8d1fd821	module_layout	vmlinux	EXPORT_SYMBOL
-0x25b098f3	module_put	vmlinux	EXPORT_SYMBOL
-0x89b3f6dc	module_refcount	vmlinux	EXPORT_SYMBOL
-0x3bd1b1f6	msecs_to_jiffies	vmlinux	EXPORT_SYMBOL
-0xf9a482f9	msleep	vmlinux	EXPORT_SYMBOL
-0xb06badf2	mutex_lock	vmlinux	EXPORT_SYMBOL
-0xa544431c	mutex_trylock	vmlinux	EXPORT_SYMBOL
-0x8615d0d6	mutex_unlock	vmlinux	EXPORT_SYMBOL
-0xe849388c	napi_complete	vmlinux	EXPORT_SYMBOL
-0x67cfd50c	napi_get_frags	vmlinux	EXPORT_SYMBOL
-0xf5b8dbe6	napi_gro_frags	vmlinux	EXPORT_SYMBOL
-0xe35f4555	napi_gro_receive	vmlinux	EXPORT_SYMBOL
-0xa20ce1b8	net_msg_warn	vmlinux	EXPORT_SYMBOL
-0x6d2fc5a6	net_namespace_list	vmlinux	EXPORT_SYMBOL_GPL
-0xf6ebc03b	net_ratelimit	vmlinux	EXPORT_SYMBOL
-0x4c63b49b	netdev_change_features	vmlinux	EXPORT_SYMBOL
-0xd65ad5ef	netdev_features_change	vmlinux	EXPORT_SYMBOL
-0x0c58a8cd	netdev_increment_features	vmlinux	EXPORT_SYMBOL
-0x74fa3981	netdev_master_upper_dev_get	vmlinux	EXPORT_SYMBOL
-0x04df2782	netdev_master_upper_dev_link	vmlinux	EXPORT_SYMBOL
-0xc96149f5	netdev_rx_handler_register	vmlinux	EXPORT_SYMBOL_GPL
-0xbe6884f9	netdev_rx_handler_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x258cb2a7	netdev_update_features	vmlinux	EXPORT_SYMBOL
-0xf736d408	netif_carrier_off	vmlinux	EXPORT_SYMBOL
-0xbe57745a	netif_carrier_on	vmlinux	EXPORT_SYMBOL
-0xee862a41	netif_device_attach	vmlinux	EXPORT_SYMBOL
-0xe02ed4fa	netif_device_detach	vmlinux	EXPORT_SYMBOL
-0xe6857e6f	netif_napi_add	vmlinux	EXPORT_SYMBOL
-0xb1e0666e	netif_napi_del	vmlinux	EXPORT_SYMBOL
-0xb68636d0	netif_receive_skb	vmlinux	EXPORT_SYMBOL
-0x39d52295	netif_rx	vmlinux	EXPORT_SYMBOL
-0x93d873ae	netif_rx_ni	vmlinux	EXPORT_SYMBOL
-0x70dea6ef	netif_set_real_num_tx_queues	vmlinux	EXPORT_SYMBOL
-0xafd82093	netif_tx_wake_queue	vmlinux	EXPORT_SYMBOL
-0xc5a58e97	netlink_broadcast	vmlinux	EXPORT_SYMBOL
-0x3cbdf1f6	netlink_unicast	vmlinux	EXPORT_SYMBOL
-0x01902adf	netpoll_trap	vmlinux	EXPORT_SYMBOL
-0x2a423bfe	nf_register_hook	vmlinux	EXPORT_SYMBOL
-0xa14843ee	nf_register_hooks	vmlinux	EXPORT_SYMBOL
-0xd2057af4	nf_unregister_hook	vmlinux	EXPORT_SYMBOL
-0x42128e98	nf_unregister_hooks	vmlinux	EXPORT_SYMBOL
-0xcd279169	nla_find	vmlinux	EXPORT_SYMBOL
-0xf1db1704	nla_memcpy	vmlinux	EXPORT_SYMBOL
-0x7a2fba58	nla_put	vmlinux	EXPORT_SYMBOL
-0x192d45e4	nla_reserve	vmlinux	EXPORT_SYMBOL
-0xa91aa598	node_data	vmlinux	EXPORT_SYMBOL
-0xb68bfa9d	node_states	vmlinux	EXPORT_SYMBOL
-0x7d9514c1	node_to_cpumask_map	vmlinux	EXPORT_SYMBOL
-0xa3d0ab0f	noop_llseek	vmlinux	EXPORT_SYMBOL
-0xfe7c4287	nr_cpu_ids	vmlinux	EXPORT_SYMBOL
-0x0948cde9	num_physpages	vmlinux	EXPORT_SYMBOL
-0x618911fc	numa_node	vmlinux	EXPORT_SYMBOL
-0x5541ea93	on_each_cpu	vmlinux	EXPORT_SYMBOL
-0x775aa293	pagevec_lookup	vmlinux	EXPORT_SYMBOL
-0x35d5d8c7	pagevec_lookup_tag	vmlinux	EXPORT_SYMBOL
-0x7c1372e8	panic	vmlinux	EXPORT_SYMBOL
-0x1af62a99	panic_notifier_list	vmlinux	EXPORT_SYMBOL
-0x4845c423	param_array_ops	vmlinux	EXPORT_SYMBOL
-0xa250c838	param_get_charp	vmlinux	EXPORT_SYMBOL
-0x253bdb78	param_get_int	vmlinux	EXPORT_SYMBOL
-0xab1d6cc1	param_get_long	vmlinux	EXPORT_SYMBOL
-0xe200d2d5	param_get_uint	vmlinux	EXPORT_SYMBOL
-0x03bd889d	param_get_ulong	vmlinux	EXPORT_SYMBOL
-0x1976aa06	param_ops_bool	vmlinux	EXPORT_SYMBOL
-0xadb5559d	param_ops_byte	vmlinux	EXPORT_SYMBOL
-0x35b6b772	param_ops_charp	vmlinux	EXPORT_SYMBOL
-0x15692c87	param_ops_int	vmlinux	EXPORT_SYMBOL
-0x4470a79b	param_ops_long	vmlinux	EXPORT_SYMBOL
-0xb2d307de	param_ops_short	vmlinux	EXPORT_SYMBOL
-0x4d405db8	param_ops_string	vmlinux	EXPORT_SYMBOL
-0x6d044c26	param_ops_uint	vmlinux	EXPORT_SYMBOL
-0xe5d95985	param_ops_ulong	vmlinux	EXPORT_SYMBOL
-0x6b7589f4	param_set_bool	vmlinux	EXPORT_SYMBOL
-0x62fd6207	param_set_charp	vmlinux	EXPORT_SYMBOL
-0x83c8a355	param_set_int	vmlinux	EXPORT_SYMBOL
-0x617643a2	param_set_long	vmlinux	EXPORT_SYMBOL
-0x8bfe8c57	param_set_uint	vmlinux	EXPORT_SYMBOL
-0x8f7014a1	param_set_ulong	vmlinux	EXPORT_SYMBOL
-0x84d8b0af	pci_bus_read_config_byte	vmlinux	EXPORT_SYMBOL
-0x28260b0b	pci_bus_read_config_dword	vmlinux	EXPORT_SYMBOL
-0x32152c19	pci_bus_read_config_word	vmlinux	EXPORT_SYMBOL
-0x63a0f4fd	pci_bus_write_config_byte	vmlinux	EXPORT_SYMBOL
-0xfaa6f7be	pci_bus_write_config_dword	vmlinux	EXPORT_SYMBOL
-0xe1304888	pci_bus_write_config_word	vmlinux	EXPORT_SYMBOL
-0xa42ab0fe	pci_clear_master	vmlinux	EXPORT_SYMBOL
-0x58b69596	pci_disable_device	vmlinux	EXPORT_SYMBOL
-0xc67b03d2	pci_disable_msi	vmlinux	EXPORT_SYMBOL
-0xd26838dc	pci_disable_msix	vmlinux	EXPORT_SYMBOL
-0x0584cbe5	pci_enable_device	vmlinux	EXPORT_SYMBOL
-0x22c6470c	pci_enable_msi_block	vmlinux	EXPORT_SYMBOL
-0xd5c6b9cc	pci_enable_msix	vmlinux	EXPORT_SYMBOL
-0x4035f3f1	pci_find_capability	vmlinux	EXPORT_SYMBOL
-0x85a04356	pci_get_device	vmlinux	EXPORT_SYMBOL
-0xb96fe991	pci_get_subsys	vmlinux	EXPORT_SYMBOL
-0x1a0a5fe6	pci_iomap	vmlinux	EXPORT_SYMBOL
-0xc2171b99	pci_iounmap	vmlinux	EXPORT_SYMBOL
-0xb17b3f5c	pci_read_config_byte	vmlinux	EXPORT_SYMBOL
-0x82c5ff24	pci_read_config_dword	vmlinux	EXPORT_SYMBOL
-0xdc7ece2e	pci_read_config_word	vmlinux	EXPORT_SYMBOL
-0xcb2cde7b	pci_release_regions	vmlinux	EXPORT_SYMBOL
-0x26ee5a72	pci_request_regions	vmlinux	EXPORT_SYMBOL
-0x8310b417	pci_set_master	vmlinux	EXPORT_SYMBOL
-0xe6b02f0f	pci_unregister_driver	vmlinux	EXPORT_SYMBOL
-0x18fee9d9	pci_write_config_byte	vmlinux	EXPORT_SYMBOL
-0x863ed56a	pci_write_config_dword	vmlinux	EXPORT_SYMBOL
-0xf8ad3f34	pci_write_config_word	vmlinux	EXPORT_SYMBOL
-0xb43cef70	pid_task	vmlinux	EXPORT_SYMBOL
-0xba4dcd1f	platform_device_add	vmlinux	EXPORT_SYMBOL_GPL
-0xfbbb2cbd	platform_device_alloc	vmlinux	EXPORT_SYMBOL_GPL
-0xd9765422	platform_device_put	vmlinux	EXPORT_SYMBOL_GPL
-0x321c24b2	platform_device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xdb8fa120	posix_lock_file	vmlinux	EXPORT_SYMBOL
-0xab8f71a2	posix_test_lock	vmlinux	EXPORT_SYMBOL
-0xaf2d872c	prepare_to_wait	vmlinux	EXPORT_SYMBOL
-0x8f85f835	prepare_to_wait_exclusive	vmlinux	EXPORT_SYMBOL
-0x27e1a049	printk	vmlinux	EXPORT_SYMBOL
-0x750498fa	proc_create_data	vmlinux	EXPORT_SYMBOL
-0x1857aa39	proc_dointvec	vmlinux	EXPORT_SYMBOL
-0xced777cb	proc_dointvec_minmax	vmlinux	EXPORT_SYMBOL
-0x895108f3	proc_dostring	vmlinux	EXPORT_SYMBOL
-0x73e390ad	proc_mkdir	vmlinux	EXPORT_SYMBOL
-0x04f052f5	proc_mkdir_mode	vmlinux	EXPORT_SYMBOL
-0x9097d9fd	proc_remove	vmlinux	EXPORT_SYMBOL
-0x4695b4bc	pskb_expand_head	vmlinux	EXPORT_SYMBOL
-0xb9ed12bb	put_device	vmlinux	EXPORT_SYMBOL_GPL
-0x46aeed52	put_disk	vmlinux	EXPORT_SYMBOL
-0xf72dac45	put_page	vmlinux	EXPORT_SYMBOL
-0xeeec26a7	queue_delayed_work_on	vmlinux	EXPORT_SYMBOL
-0x2e0d2f7f	queue_work_on	vmlinux	EXPORT_SYMBOL
-0x60a13e90	rcu_barrier	vmlinux	EXPORT_SYMBOL_GPL
-0x47c13945	read_cache_pages	vmlinux	EXPORT_SYMBOL
-0xfb6af58d	recalc_sigpending	vmlinux	EXPORT_SYMBOL
-0xc51a626c	ref_module	vmlinux	EXPORT_SYMBOL_GPL
-0x71a50dbc	register_blkdev	vmlinux	EXPORT_SYMBOL
-0x60352082	register_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
-0xf68285c0	register_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
-0x6be3081e	register_netdev	vmlinux	EXPORT_SYMBOL
-0x9a227f2d	register_netdevice	vmlinux	EXPORT_SYMBOL
-0xd2da1048	register_netdevice_notifier	vmlinux	EXPORT_SYMBOL
-0x4761f17c	register_netevent_notifier	vmlinux	EXPORT_SYMBOL_GPL
-0x59e552bd	register_pernet_subsys	vmlinux	EXPORT_SYMBOL_GPL
-0x3517383e	register_reboot_notifier	vmlinux	EXPORT_SYMBOL
-0x75be6702	register_sysctl_paths	vmlinux	EXPORT_SYMBOL
-0x70bab33f	release_sock	vmlinux	EXPORT_SYMBOL
-0xa983cf2b	remap_pfn_range	vmlinux	EXPORT_SYMBOL
-0xfd2ebb60	remove_proc_entry	vmlinux	EXPORT_SYMBOL
-0x48404b9a	remove_wait_queue	vmlinux	EXPORT_SYMBOL
-0xd6b8e852	request_threaded_irq	vmlinux	EXPORT_SYMBOL
-0xa9e574db	revalidate_disk	vmlinux	EXPORT_SYMBOL
-0x49710e81	rh_kabi_7_2	vmlinux	EXPORT_SYMBOL_GPL
-0xedc3b416	root_device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x51b65a26	rtc_lock	vmlinux	EXPORT_SYMBOL_GPL
-0x85670f1d	rtnl_is_locked	vmlinux	EXPORT_SYMBOL
-0xfc2db3a5	rtnl_link_register	vmlinux	EXPORT_SYMBOL_GPL
-0x9066ad5d	rtnl_link_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc7a4fbed	rtnl_lock	vmlinux	EXPORT_SYMBOL
-0xf4f14de6	rtnl_trylock	vmlinux	EXPORT_SYMBOL
-0x6e720ff2	rtnl_unlock	vmlinux	EXPORT_SYMBOL
-0x01000e51	schedule	vmlinux	EXPORT_SYMBOL
-0xd62c833f	schedule_timeout	vmlinux	EXPORT_SYMBOL
-0x34c58209	scsi_add_device	vmlinux	EXPORT_SYMBOL
-0xf353d5b3	scsi_add_host_with_dma	vmlinux	EXPORT_SYMBOL
-0xe92e0906	scsi_adjust_queue_depth	vmlinux	EXPORT_SYMBOL
-0x33c5d48a	scsi_cmd_get_serial	vmlinux	EXPORT_SYMBOL
-0x07ea3b21	scsi_cmd_ioctl	vmlinux	EXPORT_SYMBOL
-0x0334da4e	scsi_command_size_tbl	vmlinux	EXPORT_SYMBOL
-0x1d39c14f	scsi_device_get	vmlinux	EXPORT_SYMBOL
-0x33c80339	scsi_device_lookup	vmlinux	EXPORT_SYMBOL
-0x24154c52	scsi_device_put	vmlinux	EXPORT_SYMBOL
-0x72ea7b2d	scsi_device_type	vmlinux	EXPORT_SYMBOL
-0x1de77e41	scsi_dma_map	vmlinux	EXPORT_SYMBOL
-0x97e33397	scsi_dma_unmap	vmlinux	EXPORT_SYMBOL
-0xbba3c440	scsi_execute	vmlinux	EXPORT_SYMBOL
-0x8fe1d08b	scsi_host_alloc	vmlinux	EXPORT_SYMBOL
-0xb4a97c80	scsi_host_lookup	vmlinux	EXPORT_SYMBOL
-0xd5ac345b	scsi_host_put	vmlinux	EXPORT_SYMBOL
-0xcf3dbbde	scsi_host_set_state	vmlinux	EXPORT_SYMBOL
-0x219d8aac	scsi_is_fc_rport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x37e7da5e	scsi_is_host_device	vmlinux	EXPORT_SYMBOL
-0x86663310	scsi_is_sdev_device	vmlinux	EXPORT_SYMBOL
-0xdf2069ff	scsi_register_driver	vmlinux	EXPORT_SYMBOL
-0x20106814	scsi_remove_device	vmlinux	EXPORT_SYMBOL
-0x8153ccac	scsi_remove_host	vmlinux	EXPORT_SYMBOL
-0x078e60ca	scsi_reset_provider	vmlinux	EXPORT_SYMBOL
-0x64514ab9	scsi_scan_host	vmlinux	EXPORT_SYMBOL
-0x52026cdf	security_sb_parse_opts_str	vmlinux	EXPORT_SYMBOL
-0x96a2c672	security_sb_set_mnt_opts	vmlinux	EXPORT_SYMBOL
-0x4eac5820	send_sig	vmlinux	EXPORT_SYMBOL
-0x73fdb946	send_sig_info	vmlinux	EXPORT_SYMBOL
-0x8a961231	seq_lseek	vmlinux	EXPORT_SYMBOL
-0x341529a3	seq_open	vmlinux	EXPORT_SYMBOL
-0x1cf2a83b	seq_printf	vmlinux	EXPORT_SYMBOL
-0xab2f667a	seq_putc	vmlinux	EXPORT_SYMBOL
-0xf68b1b22	seq_puts	vmlinux	EXPORT_SYMBOL
-0xd09c13c0	seq_read	vmlinux	EXPORT_SYMBOL
-0x58bbe1e6	seq_release	vmlinux	EXPORT_SYMBOL
-0x4a8440fc	seq_write	vmlinux	EXPORT_SYMBOL
-0xffd88de1	set_blocksize	vmlinux	EXPORT_SYMBOL
-0x1c1cb116	set_cpus_allowed_ptr	vmlinux	EXPORT_SYMBOL_GPL
-0x3387a2ea	set_device_ro	vmlinux	EXPORT_SYMBOL
-0xeb0a788e	set_disk_ro	vmlinux	EXPORT_SYMBOL
-0xe4fc15c4	set_page_dirty	vmlinux	EXPORT_SYMBOL
-0x7fe38f48	sg_copy_to_buffer	vmlinux	EXPORT_SYMBOL
-0x3fec048f	sg_next	vmlinux	EXPORT_SYMBOL
-0x40c7247c	si_meminfo	vmlinux	EXPORT_SYMBOL
-0x0b742fd7	simple_strtol	vmlinux	EXPORT_SYMBOL
-0x20000329	simple_strtoul	vmlinux	EXPORT_SYMBOL
-0x61b7b126	simple_strtoull	vmlinux	EXPORT_SYMBOL
-0x30916d9f	single_open	vmlinux	EXPORT_SYMBOL
-0x7e071ede	single_release	vmlinux	EXPORT_SYMBOL
-0xf76778e5	sk_alloc	vmlinux	EXPORT_SYMBOL
-0xc1986fd5	sk_free	vmlinux	EXPORT_SYMBOL
-0xaac9a5d8	skb_checksum	vmlinux	EXPORT_SYMBOL
-0x27d5c308	skb_checksum_help	vmlinux	EXPORT_SYMBOL
-0x943bfcf0	skb_clone	vmlinux	EXPORT_SYMBOL
-0xd5f97f52	skb_copy	vmlinux	EXPORT_SYMBOL
-0x6dadb8a5	skb_copy_bits	vmlinux	EXPORT_SYMBOL
-0x4f8a297f	skb_copy_datagram_iovec	vmlinux	EXPORT_SYMBOL
-0xeb9024ec	skb_copy_expand	vmlinux	EXPORT_SYMBOL
-0xe08cfb26	skb_dequeue	vmlinux	EXPORT_SYMBOL
-0xbfa43f03	skb_dequeue_tail	vmlinux	EXPORT_SYMBOL
-0xa9f503a2	skb_make_writable	vmlinux	EXPORT_SYMBOL
-0x6d6dd13e	skb_pad	vmlinux	EXPORT_SYMBOL
-0x1b500a88	skb_partial_csum_set	vmlinux	EXPORT_SYMBOL_GPL
-0x6d17295c	skb_pull	vmlinux	EXPORT_SYMBOL
-0x6f51c40f	skb_push	vmlinux	EXPORT_SYMBOL
-0x6291f5e2	skb_put	vmlinux	EXPORT_SYMBOL
-0x61139089	skb_queue_head	vmlinux	EXPORT_SYMBOL
-0xd5c48339	skb_queue_purge	vmlinux	EXPORT_SYMBOL
-0xbd489e21	skb_queue_tail	vmlinux	EXPORT_SYMBOL
-0x396d3148	skb_realloc_headroom	vmlinux	EXPORT_SYMBOL
-0x17b75f21	skb_recv_datagram	vmlinux	EXPORT_SYMBOL
-0xdabc6f8e	skb_trim	vmlinux	EXPORT_SYMBOL
-0x9b9bc74f	skb_tstamp_tx	vmlinux	EXPORT_SYMBOL_GPL
-0x6a5f1499	skb_unlink	vmlinux	EXPORT_SYMBOL
-0x6228c21f	smp_call_function_single	vmlinux	EXPORT_SYMBOL
-0x28318305	snprintf	vmlinux	EXPORT_SYMBOL
-0x9ee5b0af	sock_alloc_send_skb	vmlinux	EXPORT_SYMBOL
-0x0ea13df6	sock_create_kern	vmlinux	EXPORT_SYMBOL
-0x162b1dcd	sock_release	vmlinux	EXPORT_SYMBOL
-0x91715312	sprintf	vmlinux	EXPORT_SYMBOL
-0x20c55ae0	sscanf	vmlinux	EXPORT_SYMBOL
-0x0ecf823a	static_key_slow_dec	vmlinux	EXPORT_SYMBOL_GPL
-0x368f1fea	static_key_slow_inc	vmlinux	EXPORT_SYMBOL_GPL
-0x2a67f7da	stop_machine	vmlinux	EXPORT_SYMBOL_GPL
-0xaafdc258	strcasecmp	vmlinux	EXPORT_SYMBOL
-0x061651be	strcat	vmlinux	EXPORT_SYMBOL
-0x349cba85	strchr	vmlinux	EXPORT_SYMBOL
-0xe2d5255a	strcmp	vmlinux	EXPORT_SYMBOL
-0xe914e41e	strcpy	vmlinux	EXPORT_SYMBOL
-0x5792f848	strlcpy	vmlinux	EXPORT_SYMBOL
-0x98cf60b3	strlen	vmlinux	EXPORT_SYMBOL
-0x96b29254	strncasecmp	vmlinux	EXPORT_SYMBOL
-0x2e2b40d2	strncat	vmlinux	EXPORT_SYMBOL
-0x5a921311	strncmp	vmlinux	EXPORT_SYMBOL
-0x9166fada	strncpy	vmlinux	EXPORT_SYMBOL
-0x24428be5	strncpy_from_user	vmlinux	EXPORT_SYMBOL
-0x3d5844b3	strnicmp	vmlinux	EXPORT_SYMBOL
-0xa916b694	strnlen	vmlinux	EXPORT_SYMBOL
-0x9f984513	strrchr	vmlinux	EXPORT_SYMBOL
-0x85df9b6c	strsep	vmlinux	EXPORT_SYMBOL
-0x1e6d26a8	strstr	vmlinux	EXPORT_SYMBOL
-0x845cfa7e	submit_bio	vmlinux	EXPORT_SYMBOL
-0x7eab6223	sync_blockdev	vmlinux	EXPORT_SYMBOL
-0x609f1c7e	synchronize_net	vmlinux	EXPORT_SYMBOL
-0xfe5d4bb2	sys_tz	vmlinux	EXPORT_SYMBOL
-0x2d3385d3	system_wq	vmlinux	EXPORT_SYMBOL
-0x87ba735c	tag_pages_for_writeback	vmlinux	EXPORT_SYMBOL
-0x92a9c60c	time_to_tm	vmlinux	EXPORT_SYMBOL
-0x6fcb87a1	touch_softlockup_watchdog	vmlinux	EXPORT_SYMBOL
-0x59ca9631	truncate_inode_pages	vmlinux	EXPORT_SYMBOL
-0xc7a3379e	truncate_inode_pages_final	vmlinux	EXPORT_SYMBOL
-0xb8b30764	truncate_pagecache	vmlinux	EXPORT_SYMBOL
-0x125d0917	try_module_get	vmlinux	EXPORT_SYMBOL
-0x329c1aae	unlock_page	vmlinux	EXPORT_SYMBOL
-0x4da35905	unmap_mapping_range	vmlinux	EXPORT_SYMBOL
-0xb5a459dc	unregister_blkdev	vmlinux	EXPORT_SYMBOL
-0x7485e15e	unregister_chrdev_region	vmlinux	EXPORT_SYMBOL
-0x2fe252cc	unregister_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
-0xfe029963	unregister_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
-0x805a22d6	unregister_netdev	vmlinux	EXPORT_SYMBOL
-0x9d0d6206	unregister_netdevice_notifier	vmlinux	EXPORT_SYMBOL
-0xdc07a16a	unregister_netdevice_queue	vmlinux	EXPORT_SYMBOL
-0x4fe1eddf	unregister_netevent_notifier	vmlinux	EXPORT_SYMBOL_GPL
-0xa48e0b5f	unregister_pernet_subsys	vmlinux	EXPORT_SYMBOL_GPL
-0xac1a55be	unregister_reboot_notifier	vmlinux	EXPORT_SYMBOL
-0xc50bab05	unregister_shrinker	vmlinux	EXPORT_SYMBOL
-0xbbb6b412	unregister_sysctl_table	vmlinux	EXPORT_SYMBOL
-0x4256c3bf	unuse_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x5412c7c7	up	vmlinux	EXPORT_SYMBOL
-0x13e38f5c	up_read	vmlinux	EXPORT_SYMBOL
-0xe4a895fa	up_write	vmlinux	EXPORT_SYMBOL
-0xf87ba608	use_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x12a38747	usleep_range	vmlinux	EXPORT_SYMBOL
-0x999e8297	vfree	vmlinux	EXPORT_SYMBOL
-0x15c4f2b1	vfs_fsync_range	vmlinux	EXPORT_SYMBOL
-0x4765d26e	vfs_mknod	vmlinux	EXPORT_SYMBOL
-0x4bd5a958	vfs_unlink	vmlinux	EXPORT_SYMBOL
-0x53de88d2	vga_set_legacy_decoding	vmlinux	EXPORT_SYMBOL
-0x91acde9a	vlan_dev_real_dev	vmlinux	EXPORT_SYMBOL
-0xa6dce21e	vlan_dev_vlan_id	vmlinux	EXPORT_SYMBOL
-0x5a389ed0	vm_insert_pfn	vmlinux	EXPORT_SYMBOL
-0x87be4cb3	vm_mmap	vmlinux	EXPORT_SYMBOL
-0x5b56860c	vm_munmap	vmlinux	EXPORT_SYMBOL
-0x31a78843	vm_stat	vmlinux	EXPORT_SYMBOL
-0xd6ee688f	vmalloc	vmlinux	EXPORT_SYMBOL
-0xa0b04675	vmalloc_32	vmlinux	EXPORT_SYMBOL
-0x250a51a0	vmalloc_to_page	vmlinux	EXPORT_SYMBOL
-0x5635a60a	vmalloc_user	vmlinux	EXPORT_SYMBOL
-0x3a9bd615	vmap	vmlinux	EXPORT_SYMBOL
-0xbf8ba54a	vprintk	vmlinux	EXPORT_SYMBOL
-0x91ac822f	vscnprintf	vmlinux	EXPORT_SYMBOL
-0x99195078	vsnprintf	vmlinux	EXPORT_SYMBOL
-0x2482e688	vsprintf	vmlinux	EXPORT_SYMBOL
-0x94961283	vunmap	vmlinux	EXPORT_SYMBOL
-0x44eb192e	wait_for_completion	vmlinux	EXPORT_SYMBOL
-0x46d12956	wait_for_completion_interruptible_timeout	vmlinux	EXPORT_SYMBOL
-0xb1c6e787	wait_for_completion_timeout	vmlinux	EXPORT_SYMBOL
-0x6824bdc4	wait_on_page_bit	vmlinux	EXPORT_SYMBOL
-0xc22a8b8a	wait_on_sync_kiocb	vmlinux	EXPORT_SYMBOL
-0x3fe17343	wake_up_process	vmlinux	EXPORT_SYMBOL
-0x8c612a05	xt_register_targets	vmlinux	EXPORT_SYMBOL
-0xf929684e	xt_unregister_targets	vmlinux	EXPORT_SYMBOL
-0x760a0f4f	yield	vmlinux	EXPORT_SYMBOL
-0xadf023cd	zap_vma_ptes	vmlinux	EXPORT_SYMBOL_GPL
-0xf2c43f3f	zlib_deflate	vmlinux	EXPORT_SYMBOL
-0xc890c008	zlib_deflateEnd	vmlinux	EXPORT_SYMBOL
-0x5a0b73d0	zlib_deflateInit2	vmlinux	EXPORT_SYMBOL
-0xe9f7149c	zlib_deflate_workspacesize	vmlinux	EXPORT_SYMBOL
-0x581f98da	zlib_inflate	vmlinux	EXPORT_SYMBOL
-0x107e5878	zlib_inflateEnd	vmlinux	EXPORT_SYMBOL
-0x35a88f28	zlib_inflateInit2	vmlinux	EXPORT_SYMBOL
-0xce5ac24f	zlib_inflate_workspacesize	vmlinux	EXPORT_SYMBOL
diff --git a/kernel-source/thirdparty/SOURCES/Module.kabi_ppc64le b/kernel-source/thirdparty/SOURCES/Module.kabi_ppc64le
deleted file mode 100644
index c519e06..0000000
--- a/kernel-source/thirdparty/SOURCES/Module.kabi_ppc64le
+++ /dev/null
@@ -1,837 +0,0 @@
-0xcbdace63	___pskb_trim	vmlinux	EXPORT_SYMBOL
-0xf5c4a9c8	__alloc_pages_nodemask	vmlinux	EXPORT_SYMBOL
-0x949f7342	__alloc_percpu	vmlinux	EXPORT_SYMBOL_GPL
-0x77ceedf1	__alloc_skb	vmlinux	EXPORT_SYMBOL
-0x43a53735	__alloc_workqueue_key	vmlinux	EXPORT_SYMBOL_GPL
-0x6b1b67d3	__bdevname	vmlinux	EXPORT_SYMBOL
-0x9e9f1714	__bitmap_andnot	vmlinux	EXPORT_SYMBOL
-0x6d27ef64	__bitmap_empty	vmlinux	EXPORT_SYMBOL
-0xc256e762	__bitmap_equal	vmlinux	EXPORT_SYMBOL
-0xea10655a	__bitmap_intersects	vmlinux	EXPORT_SYMBOL
-0x4df119fa	__bitmap_parse	vmlinux	EXPORT_SYMBOL
-0x4a358252	__bitmap_subset	vmlinux	EXPORT_SYMBOL
-0x4cbbd171	__bitmap_weight	vmlinux	EXPORT_SYMBOL
-0xd46d8192	__blk_end_request	vmlinux	EXPORT_SYMBOL
-0x78e3d270	__blk_put_request	vmlinux	EXPORT_SYMBOL_GPL
-0xd739fca8	__blockdev_direct_IO	vmlinux	EXPORT_SYMBOL
-0xa8a6f639	__check_region	vmlinux	EXPORT_SYMBOL
-0xe55907bf	__class_create	vmlinux	EXPORT_SYMBOL_GPL
-0xfc26cd7c	__class_register	vmlinux	EXPORT_SYMBOL_GPL
-0x466c14a7	__delay	vmlinux	EXPORT_SYMBOL
-0x42ed7de9	__dev_get_by_index	vmlinux	EXPORT_SYMBOL
-0xf45a7326	__dev_get_by_name	vmlinux	EXPORT_SYMBOL
-0xe97edb3b	__dynamic_dev_dbg	vmlinux	EXPORT_SYMBOL
-0xc132ac4c	__ethtool_get_settings	vmlinux	EXPORT_SYMBOL
-0x3ec9240c	__first_cpu	vmlinux	EXPORT_SYMBOL
-0x6404826c	__generic_file_aio_write	vmlinux	EXPORT_SYMBOL
-0xb0bf7a07	__genl_register_family	vmlinux	EXPORT_SYMBOL
-0x93fca811	__get_free_pages	vmlinux	EXPORT_SYMBOL
-0x26ca3f21	__get_page_tail	vmlinux	EXPORT_SYMBOL
-0x019e7765	__init_rwsem	vmlinux	EXPORT_SYMBOL
-0xa1c99385	__init_waitqueue_head	vmlinux	EXPORT_SYMBOL
-0x29df1b1b	__insert_inode_hash	vmlinux	EXPORT_SYMBOL
-0x0d542439	__ipv6_addr_type	vmlinux	EXPORT_SYMBOL
-0xd2b09ce5	__kmalloc	vmlinux	EXPORT_SYMBOL
-0x0343a1a8	__list_add	vmlinux	EXPORT_SYMBOL
-0x1e579dc5	__list_add_rcu	vmlinux	EXPORT_SYMBOL
-0x65e75cb6	__list_del_entry	vmlinux	EXPORT_SYMBOL
-0xdbb99c5a	__lock_page	vmlinux	EXPORT_SYMBOL
-0x1fcfe8d3	__mark_inode_dirty	vmlinux	EXPORT_SYMBOL
-0x1df683fa	__mmdrop	vmlinux	EXPORT_SYMBOL_GPL
-0x959389f7	__mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
-0x01983c65	__module_get	vmlinux	EXPORT_SYMBOL
-0x6b7ba5a0	__mutex_init	vmlinux	EXPORT_SYMBOL
-0x4f89404d	__napi_complete	vmlinux	EXPORT_SYMBOL
-0x04a38e9a	__napi_schedule	vmlinux	EXPORT_SYMBOL
-0x0680c925	__netdev_alloc_skb	vmlinux	EXPORT_SYMBOL
-0xb4adb617	__netif_schedule	vmlinux	EXPORT_SYMBOL
-0x00ac6958	__next_cpu	vmlinux	EXPORT_SYMBOL
-0x5289b437	__next_cpu_nr	vmlinux	EXPORT_SYMBOL
-0x2dc3a951	__nlmsg_put	vmlinux	EXPORT_SYMBOL
-0x46c47fb6	__node_distance	vmlinux	EXPORT_SYMBOL
-0xf8044aae	__pagevec_release	vmlinux	EXPORT_SYMBOL
-0xe0016e86	__pci_register_driver	vmlinux	EXPORT_SYMBOL
-0x499bfc6d	__per_cpu_offset	vmlinux	EXPORT_SYMBOL
-0xcf619be5	__pskb_pull_tail	vmlinux	EXPORT_SYMBOL
-0x551bd071	__rb_erase_color	vmlinux	EXPORT_SYMBOL
-0x120b336a	__rb_insert_augmented	vmlinux	EXPORT_SYMBOL
-0x8465db3a	__register_chrdev	vmlinux	EXPORT_SYMBOL
-0x7c61340c	__release_region	vmlinux	EXPORT_SYMBOL
-0x402b8281	__request_module	vmlinux	EXPORT_SYMBOL
-0x1fedf0f4	__request_region	vmlinux	EXPORT_SYMBOL
-0x831dcba0	__root_device_register	vmlinux	EXPORT_SYMBOL_GPL
-0x6b82bdc5	__set_page_dirty_nobuffers	vmlinux	EXPORT_SYMBOL
-0x336bd61b	__skb_checksum_complete	vmlinux	EXPORT_SYMBOL
-0x8aaf99e1	__skb_get_hash	vmlinux	EXPORT_SYMBOL
-0x9ba870af	__skb_gso_segment	vmlinux	EXPORT_SYMBOL
-0x868784cb	__symbol_get	vmlinux	EXPORT_SYMBOL_GPL
-0x6e9dd606	__symbol_put	vmlinux	EXPORT_SYMBOL
-0x76bd0c86	__task_pid_nr_ns	vmlinux	EXPORT_SYMBOL
-0xa5adc113	__test_set_page_writeback	vmlinux	EXPORT_SYMBOL
-0xa3fc3d50	__tracepoint_module_get	vmlinux	EXPORT_SYMBOL
-0x6bc3fbc0	__unregister_chrdev	vmlinux	EXPORT_SYMBOL
-0x26477c07	__vmalloc	vmlinux	EXPORT_SYMBOL
-0x5e3a8a9c	__wake_up	vmlinux	EXPORT_SYMBOL
-0xa1c76e0a	_cond_resched	vmlinux	EXPORT_SYMBOL
-0x4a4e386e	_dev_info	vmlinux	EXPORT_SYMBOL
-0x89797060	_raw_read_lock	vmlinux	EXPORT_SYMBOL
-0x4c11435a	_raw_read_lock_bh	vmlinux	EXPORT_SYMBOL
-0xbfb8b0b7	_raw_read_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0xfdb6cedc	_raw_read_unlock_bh	vmlinux	EXPORT_SYMBOL
-0xcc17504d	_raw_read_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0xde48e9ca	_raw_spin_lock	vmlinux	EXPORT_SYMBOL
-0xaf063510	_raw_spin_lock_bh	vmlinux	EXPORT_SYMBOL
-0xcd0529c7	_raw_spin_lock_irq	vmlinux	EXPORT_SYMBOL
-0xf5222143	_raw_spin_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0x9d7ce8dd	_raw_spin_trylock	vmlinux	EXPORT_SYMBOL
-0x1b2150a9	_raw_spin_unlock	vmlinux	EXPORT_SYMBOL
-0xe4fe8ca1	_raw_spin_unlock_bh	vmlinux	EXPORT_SYMBOL
-0x5c37f319	_raw_spin_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0xac26b820	_raw_write_lock	vmlinux	EXPORT_SYMBOL
-0xc47cdf9c	_raw_write_lock_bh	vmlinux	EXPORT_SYMBOL
-0x0e8f30f6	_raw_write_lock_irq	vmlinux	EXPORT_SYMBOL
-0xaa6e4df5	_raw_write_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0x99afe916	_raw_write_unlock_bh	vmlinux	EXPORT_SYMBOL
-0xae545f06	_raw_write_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0xa3abc422	abort_exclusive_wait	vmlinux	EXPORT_SYMBOL
-0x48a12e3c	add_disk	vmlinux	EXPORT_SYMBOL
-0xbe2c0274	add_timer	vmlinux	EXPORT_SYMBOL
-0x735d8503	add_wait_queue	vmlinux	EXPORT_SYMBOL
-0x75994700	add_wait_queue_exclusive	vmlinux	EXPORT_SYMBOL
-0x9ae2d69d	aio_complete	vmlinux	EXPORT_SYMBOL
-0x29537c9e	alloc_chrdev_region	vmlinux	EXPORT_SYMBOL
-0xa005a935	alloc_disk	vmlinux	EXPORT_SYMBOL
-0x36305cb6	alloc_etherdev_mqs	vmlinux	EXPORT_SYMBOL
-0x4634c06c	alloc_netdev_mqs	vmlinux	EXPORT_SYMBOL
-0x50c5327b	alloc_pages_current	vmlinux	EXPORT_SYMBOL
-0xd79b5a02	allow_signal	vmlinux	EXPORT_SYMBOL
-0xeefa4e35	arp_create	vmlinux	EXPORT_SYMBOL
-0x2f6b9784	arp_send	vmlinux	EXPORT_SYMBOL
-0x05207ed5	arp_xmit	vmlinux	EXPORT_SYMBOL
-0xcc85fcb6	async_schedule	vmlinux	EXPORT_SYMBOL_GPL
-0x836d61d0	atomic_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
-0xb5aa10af	atomic_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc8b57c27	autoremove_wake_function	vmlinux	EXPORT_SYMBOL
-0x82fdf416	balance_dirty_pages_ratelimited	vmlinux	EXPORT_SYMBOL
-0x1a9efbb2	bdevname	vmlinux	EXPORT_SYMBOL
-0x6233ecc1	bdget	vmlinux	EXPORT_SYMBOL
-0xf9fa5748	bdget_disk	vmlinux	EXPORT_SYMBOL
-0xd6b14273	bdi_destroy	vmlinux	EXPORT_SYMBOL
-0xc0804fd2	bdi_init	vmlinux	EXPORT_SYMBOL
-0xde0ef113	bdi_register_dev	vmlinux	EXPORT_SYMBOL
-0xb3128399	bdi_unregister	vmlinux	EXPORT_SYMBOL
-0x4423358a	bdput	vmlinux	EXPORT_SYMBOL
-0x9e628c95	bio_add_page	vmlinux	EXPORT_SYMBOL
-0x7f37b973	bio_alloc_bioset	vmlinux	EXPORT_SYMBOL
-0xc2aa3d45	bio_clone_bioset	vmlinux	EXPORT_SYMBOL
-0x051aa314	bio_endio	vmlinux	EXPORT_SYMBOL
-0xde948160	bio_get_nr_vecs	vmlinux	EXPORT_SYMBOL
-0x1d354bcc	bio_init	vmlinux	EXPORT_SYMBOL
-0x66b35696	bio_put	vmlinux	EXPORT_SYMBOL
-0xa22c8b57	bioset_create	vmlinux	EXPORT_SYMBOL
-0x8aeb48da	bioset_free	vmlinux	EXPORT_SYMBOL
-0x8251bcc3	bitmap_release_region	vmlinux	EXPORT_SYMBOL
-0xdd312ce2	blk_alloc_queue	vmlinux	EXPORT_SYMBOL
-0x479b4027	blk_cleanup_queue	vmlinux	EXPORT_SYMBOL
-0x9725d6df	blk_end_request	vmlinux	EXPORT_SYMBOL
-0x79e2e6d4	blk_end_request_all	vmlinux	EXPORT_SYMBOL
-0x28cd427a	blk_execute_rq	vmlinux	EXPORT_SYMBOL
-0xf24764fd	blk_execute_rq_nowait	vmlinux	EXPORT_SYMBOL_GPL
-0x5a0f6404	blk_fetch_request	vmlinux	EXPORT_SYMBOL
-0x0ce900af	blk_finish_plug	vmlinux	EXPORT_SYMBOL
-0xaee0caf7	blk_get_backing_dev_info	vmlinux	EXPORT_SYMBOL
-0x7b9d25f4	blk_get_queue	vmlinux	EXPORT_SYMBOL
-0xeb95b813	blk_get_request	vmlinux	EXPORT_SYMBOL
-0xbff07fe4	blk_init_queue	vmlinux	EXPORT_SYMBOL
-0x124af3bf	blk_limits_io_min	vmlinux	EXPORT_SYMBOL
-0x7c922190	blk_limits_io_opt	vmlinux	EXPORT_SYMBOL
-0x5b1dd99f	blk_make_request	vmlinux	EXPORT_SYMBOL
-0x96daf574	blk_mq_unique_tag	vmlinux	EXPORT_SYMBOL
-0x218d9532	blk_put_queue	vmlinux	EXPORT_SYMBOL
-0xd32c3071	blk_put_request	vmlinux	EXPORT_SYMBOL
-0xe1fbc962	blk_queue_bounce	vmlinux	EXPORT_SYMBOL
-0x71921ef4	blk_queue_bounce_limit	vmlinux	EXPORT_SYMBOL
-0x94e09aa7	blk_queue_dma_alignment	vmlinux	EXPORT_SYMBOL
-0x86910080	blk_queue_end_tag	vmlinux	EXPORT_SYMBOL
-0x9f6d0e5e	blk_queue_flush	vmlinux	EXPORT_SYMBOL_GPL
-0xa1e2f0f5	blk_queue_init_tags	vmlinux	EXPORT_SYMBOL
-0x635c8a13	blk_queue_logical_block_size	vmlinux	EXPORT_SYMBOL
-0xc21f1d60	blk_queue_make_request	vmlinux	EXPORT_SYMBOL
-0x09a5ee6d	blk_queue_max_discard_sectors	vmlinux	EXPORT_SYMBOL
-0x9fad950b	blk_queue_max_hw_sectors	vmlinux	EXPORT_SYMBOL
-0x837e683f	blk_queue_max_segments	vmlinux	EXPORT_SYMBOL
-0x4ba7b893	blk_queue_merge_bvec	vmlinux	EXPORT_SYMBOL
-0x1e1e3bf8	blk_queue_rq_timed_out	vmlinux	EXPORT_SYMBOL_GPL
-0xdfbc0f61	blk_queue_segment_boundary	vmlinux	EXPORT_SYMBOL
-0x869eb922	blk_queue_softirq_done	vmlinux	EXPORT_SYMBOL
-0xf2c397fe	blk_queue_stack_limits	vmlinux	EXPORT_SYMBOL
-0xf9f6507b	blk_rq_init	vmlinux	EXPORT_SYMBOL
-0x65aa55dc	blk_rq_map_kern	vmlinux	EXPORT_SYMBOL
-0x925520d2	blk_start_plug	vmlinux	EXPORT_SYMBOL
-0x997df9eb	blk_start_queue	vmlinux	EXPORT_SYMBOL
-0x7b30cc47	blk_stop_queue	vmlinux	EXPORT_SYMBOL
-0x8e936491	blk_sync_queue	vmlinux	EXPORT_SYMBOL
-0x9c3756b5	blkdev_get	vmlinux	EXPORT_SYMBOL
-0xde39d5cf	blkdev_get_by_dev	vmlinux	EXPORT_SYMBOL
-0x1905b19a	blkdev_get_by_path	vmlinux	EXPORT_SYMBOL
-0xad5c38ac	blkdev_issue_discard	vmlinux	EXPORT_SYMBOL
-0x78795092	blkdev_put	vmlinux	EXPORT_SYMBOL
-0x6553c5f3	block_write_begin	vmlinux	EXPORT_SYMBOL
-0x126bff96	block_write_full_page	vmlinux	EXPORT_SYMBOL
-0xfd6293c2	boot_tvec_bases	vmlinux	EXPORT_SYMBOL
-0x57100a27	bus_register	vmlinux	EXPORT_SYMBOL_GPL
-0x8ccf53d6	bus_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xa75312bc	call_rcu_sched	vmlinux	EXPORT_SYMBOL_GPL
-0xc5fdef94	call_usermodehelper	vmlinux	EXPORT_SYMBOL
-0x93a8d611	call_usermodehelper_exec	vmlinux	EXPORT_SYMBOL
-0x87236b53	call_usermodehelper_setup	vmlinux	EXPORT_SYMBOL
-0x5991219c	cancel_delayed_work	vmlinux	EXPORT_SYMBOL
-0x797c8fa9	cancel_delayed_work_sync	vmlinux	EXPORT_SYMBOL
-0xaf89be1f	cdev_add	vmlinux	EXPORT_SYMBOL
-0xa4500f2a	cdev_alloc	vmlinux	EXPORT_SYMBOL
-0x42645773	cdev_del	vmlinux	EXPORT_SYMBOL
-0x4b0c2df7	cdev_init	vmlinux	EXPORT_SYMBOL
-0x79bca32e	class_destroy	vmlinux	EXPORT_SYMBOL_GPL
-0x9f3b86ef	class_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x1f4495c4	clear_inode	vmlinux	EXPORT_SYMBOL
-0xfbdd9746	clear_nlink	vmlinux	EXPORT_SYMBOL
-0x367c4e62	clear_page_dirty_for_io	vmlinux	EXPORT_SYMBOL
-0x5568c553	complete	vmlinux	EXPORT_SYMBOL
-0x68609857	complete_and_exit	vmlinux	EXPORT_SYMBOL
-0x6ea4656e	consume_skb	vmlinux	EXPORT_SYMBOL
-0x33b84f74	copy_page	vmlinux	EXPORT_SYMBOL
-0x7ff5383e	cpu_active_mask	vmlinux	EXPORT_SYMBOL
-0x1389da84	cpu_bit_bitmap	vmlinux	EXPORT_SYMBOL_GPL
-0xc6774da5	cpu_online_mask	vmlinux	EXPORT_SYMBOL
-0xa631df8a	cpu_possible_mask	vmlinux	EXPORT_SYMBOL
-0xfbdd4c01	cpu_present_mask	vmlinux	EXPORT_SYMBOL
-0x76b59b33	cpu_sibling_map	vmlinux	EXPORT_SYMBOL
-0x23b447d9	crypto_alloc_base	vmlinux	EXPORT_SYMBOL_GPL
-0xd17d0938	crypto_destroy_tfm	vmlinux	EXPORT_SYMBOL_GPL
-0xacc5b5d2	csum_ipv6_magic	vmlinux	EXPORT_SYMBOL
-0xe113bbbc	csum_partial	vmlinux	EXPORT_SYMBOL
-0xc6a3642a	current_fs_time	vmlinux	EXPORT_SYMBOL
-0x34184afe	current_kernel_time	vmlinux	EXPORT_SYMBOL
-0x5e95b1cd	current_umask	vmlinux	EXPORT_SYMBOL
-0x17d290c2	d_alloc	vmlinux	EXPORT_SYMBOL
-0x8ca3d04b	d_drop	vmlinux	EXPORT_SYMBOL
-0xe94a26d1	d_instantiate	vmlinux	EXPORT_SYMBOL
-0x70953205	d_lookup	vmlinux	EXPORT_SYMBOL
-0x3451c60c	d_make_root	vmlinux	EXPORT_SYMBOL
-0xcaa1be95	d_obtain_alias	vmlinux	EXPORT_SYMBOL
-0x59c471da	d_prune_aliases	vmlinux	EXPORT_SYMBOL
-0xb9c22abc	d_rehash	vmlinux	EXPORT_SYMBOL
-0xbf3daebc	d_set_d_op	vmlinux	EXPORT_SYMBOL
-0x49aadb99	debugfs_create_dir	vmlinux	EXPORT_SYMBOL_GPL
-0x1cf91603	debugfs_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0xd933fa29	debugfs_create_u32	vmlinux	EXPORT_SYMBOL_GPL
-0xd05e4a88	debugfs_remove	vmlinux	EXPORT_SYMBOL_GPL
-0xffd5a395	default_wake_function	vmlinux	EXPORT_SYMBOL
-0x6de44490	del_gendisk	vmlinux	EXPORT_SYMBOL
-0xc996d097	del_timer	vmlinux	EXPORT_SYMBOL
-0xd5f2172f	del_timer_sync	vmlinux	EXPORT_SYMBOL
-0x6b06fdce	delayed_work_timer_fn	vmlinux	EXPORT_SYMBOL
-0x8c03d20c	destroy_workqueue	vmlinux	EXPORT_SYMBOL_GPL
-0xaad76ff2	dev_add_pack	vmlinux	EXPORT_SYMBOL
-0x5a2c1907	dev_addr_add	vmlinux	EXPORT_SYMBOL
-0x32213756	dev_addr_del	vmlinux	EXPORT_SYMBOL
-0xafc3a7d3	dev_close	vmlinux	EXPORT_SYMBOL
-0x2b778e87	dev_err	vmlinux	EXPORT_SYMBOL
-0xacc279cd	dev_get_by_index	vmlinux	EXPORT_SYMBOL
-0x1c37f5c4	dev_get_by_name	vmlinux	EXPORT_SYMBOL
-0x8da17a98	dev_get_drvdata	vmlinux	EXPORT_SYMBOL
-0x5cd4d828	dev_get_stats	vmlinux	EXPORT_SYMBOL
-0x5712ec3f	dev_kfree_skb_any	vmlinux	EXPORT_SYMBOL
-0xa1dc4f5e	dev_kfree_skb_irq	vmlinux	EXPORT_SYMBOL
-0xd17d3f4b	dev_mc_add	vmlinux	EXPORT_SYMBOL
-0xc22084fb	dev_mc_del	vmlinux	EXPORT_SYMBOL
-0x7f4ee475	dev_open	vmlinux	EXPORT_SYMBOL
-0x543b039a	dev_printk	vmlinux	EXPORT_SYMBOL
-0xd9f5d9ee	dev_queue_xmit	vmlinux	EXPORT_SYMBOL
-0x0b8d59e3	dev_remove_pack	vmlinux	EXPORT_SYMBOL
-0x361a3fce	dev_set_allmulti	vmlinux	EXPORT_SYMBOL
-0x7236e180	dev_set_drvdata	vmlinux	EXPORT_SYMBOL
-0x33e774e7	dev_set_mac_address	vmlinux	EXPORT_SYMBOL
-0x1a3b50e7	dev_set_mtu	vmlinux	EXPORT_SYMBOL
-0x9db73857	dev_set_name	vmlinux	EXPORT_SYMBOL_GPL
-0x74d1bec2	dev_set_promiscuity	vmlinux	EXPORT_SYMBOL
-0xa8c11fae	dev_trans_start	vmlinux	EXPORT_SYMBOL
-0xb17c4484	dev_warn	vmlinux	EXPORT_SYMBOL
-0xa2a37cfc	device_create	vmlinux	EXPORT_SYMBOL_GPL
-0x36f77c76	device_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0x74adf398	device_del	vmlinux	EXPORT_SYMBOL_GPL
-0x15606344	device_destroy	vmlinux	EXPORT_SYMBOL_GPL
-0x1de1c996	device_register	vmlinux	EXPORT_SYMBOL_GPL
-0x418cf724	device_remove_file	vmlinux	EXPORT_SYMBOL_GPL
-0x0e8b8258	device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x7b1d61b0	dget_parent	vmlinux	EXPORT_SYMBOL
-0x3ce4ca6f	disable_irq	vmlinux	EXPORT_SYMBOL
-0x27bbf221	disable_irq_nosync	vmlinux	EXPORT_SYMBOL
-0x203ea967	dma_set_mask	vmlinux	EXPORT_SYMBOL
-0x952664c5	do_exit	vmlinux	EXPORT_SYMBOL_GPL
-0x4f68e5c9	do_gettimeofday	vmlinux	EXPORT_SYMBOL
-0xdc9498dd	down	vmlinux	EXPORT_SYMBOL
-0x4289f7df	down_interruptible	vmlinux	EXPORT_SYMBOL
-0xbc3f6afa	down_read	vmlinux	EXPORT_SYMBOL
-0xc91ff664	down_read_trylock	vmlinux	EXPORT_SYMBOL
-0x4678aa19	down_timeout	vmlinux	EXPORT_SYMBOL
-0x7bcc3ec6	down_trylock	vmlinux	EXPORT_SYMBOL
-0xdbb24fc2	down_write	vmlinux	EXPORT_SYMBOL
-0xbe77aebe	down_write_trylock	vmlinux	EXPORT_SYMBOL
-0xacb9d68f	dquot_acquire	vmlinux	EXPORT_SYMBOL
-0xe39ba8d8	dquot_alloc	vmlinux	EXPORT_SYMBOL
-0x0067f3c0	dquot_commit	vmlinux	EXPORT_SYMBOL
-0x91b27a90	dquot_commit_info	vmlinux	EXPORT_SYMBOL
-0x3ce53b8f	dquot_destroy	vmlinux	EXPORT_SYMBOL
-0x038e4592	dquot_mark_dquot_dirty	vmlinux	EXPORT_SYMBOL
-0xc69c7d8c	dquot_release	vmlinux	EXPORT_SYMBOL
-0x16c29988	driver_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0xedaa03da	driver_register	vmlinux	EXPORT_SYMBOL_GPL
-0x6721a551	driver_remove_file	vmlinux	EXPORT_SYMBOL_GPL
-0x2a06e30b	driver_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x458dbb2b	dst_release	vmlinux	EXPORT_SYMBOL
-0x6b2dc060	dump_stack	vmlinux	EXPORT_SYMBOL
-0x280ae528	elevator_change	vmlinux	EXPORT_SYMBOL
-0xd0c05159	emergency_restart	vmlinux	EXPORT_SYMBOL_GPL
-0xfcec0987	enable_irq	vmlinux	EXPORT_SYMBOL
-0x422027c8	end_page_writeback	vmlinux	EXPORT_SYMBOL
-0xc1b3e774	eth_change_mtu	vmlinux	EXPORT_SYMBOL
-0x5024c90a	eth_mac_addr	vmlinux	EXPORT_SYMBOL
-0xa8781d91	eth_type_trans	vmlinux	EXPORT_SYMBOL
-0x405c1883	eth_validate_addr	vmlinux	EXPORT_SYMBOL
-0x98b17ed3	ether_setup	vmlinux	EXPORT_SYMBOL
-0xd14f197b	ether_setup_rh	vmlinux	EXPORT_SYMBOL
-0xb6cefcdf	ethtool_op_get_link	vmlinux	EXPORT_SYMBOL
-0x098b71c6	fb_dealloc_cmap	vmlinux	EXPORT_SYMBOL
-0xbbcbaec0	fc_attach_transport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xc56a4ab3	fc_change_queue_depth	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x02b3ea73	fc_exch_mgr_alloc	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xa78138fb	fc_exch_mgr_free	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xc8485ae4	fc_exch_mgr_reset	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x7528d117	fc_exch_recv	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x6987b8de	fc_fabric_login	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xae0eb046	fc_fabric_logoff	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xbb5298f7	fc_get_host_port_state	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x73a23e0c	fc_lport_bsg_request	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x0fcef791	fc_lport_config	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x20520db0	fc_lport_destroy	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xd787278a	fc_release_transport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x4c67bdf1	fc_remote_port_add	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xad07e919	fc_remote_port_delete	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x9ed1652c	fc_remote_port_rolechg	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x156848a9	fc_remove_host	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x6914d180	fc_set_mfs	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x378f6026	fc_vport_terminate	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x96f10126	fcoe_ctlr_destroy	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x9706ddd4	fcoe_ctlr_els_send	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x9f1a106a	fcoe_ctlr_init	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x010c1a74	fcoe_ctlr_link_down	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x9205baaa	fcoe_ctlr_link_up	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x6108662b	fcoe_ctlr_recv	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xece67b7c	fcoe_ctlr_recv_flogi	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xeef75fbb	fcoe_libfc_config	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL_GPL
-0x20fd2f8b	file_remove_privs	vmlinux	EXPORT_SYMBOL
-0xeb8d3e4b	file_update_time	vmlinux	EXPORT_SYMBOL
-0x01c2b403	filemap_fault	vmlinux	EXPORT_SYMBOL
-0x12c1f277	filemap_flush	vmlinux	EXPORT_SYMBOL
-0xb5bc3dc8	filemap_write_and_wait	vmlinux	EXPORT_SYMBOL
-0x77a0cc9b	filemap_write_and_wait_range	vmlinux	EXPORT_SYMBOL
-0x119ca85d	filp_close	vmlinux	EXPORT_SYMBOL
-0x4c653671	filp_open	vmlinux	EXPORT_SYMBOL
-0xccd286ac	find_get_page	vmlinux	EXPORT_SYMBOL
-0xfe5147ae	find_get_pages_tag	vmlinux	EXPORT_SYMBOL
-0x2d9bfdf5	find_module	vmlinux	EXPORT_SYMBOL_GPL
-0xc0a3d105	find_next_bit	vmlinux	EXPORT_SYMBOL
-0x479c3c86	find_next_zero_bit	vmlinux	EXPORT_SYMBOL
-0x5d8a476d	find_or_create_page	vmlinux	EXPORT_SYMBOL
-0x2160ebdf	find_vma	vmlinux	EXPORT_SYMBOL
-0x404fc528	find_vpid	vmlinux	EXPORT_SYMBOL_GPL
-0x6dc453c8	finish_no_open	vmlinux	EXPORT_SYMBOL
-0xbe92ceb0	finish_open	vmlinux	EXPORT_SYMBOL
-0x519b0da3	finish_wait	vmlinux	EXPORT_SYMBOL
-0x00801678	flush_scheduled_work	vmlinux	EXPORT_SYMBOL
-0x075153f7	flush_signals	vmlinux	EXPORT_SYMBOL
-0x42160169	flush_workqueue	vmlinux	EXPORT_SYMBOL_GPL
-0x7095f7a0	fput	vmlinux	EXPORT_SYMBOL
-0x1423482e	framebuffer_alloc	vmlinux	EXPORT_SYMBOL
-0x8c15e096	framebuffer_release	vmlinux	EXPORT_SYMBOL
-0xf20dabd8	free_irq	vmlinux	EXPORT_SYMBOL
-0xe7632549	free_netdev	vmlinux	EXPORT_SYMBOL
-0x4302d0eb	free_pages	vmlinux	EXPORT_SYMBOL
-0xc9ec4e21	free_percpu	vmlinux	EXPORT_SYMBOL_GPL
-0x97637b1d	fs_bio_set	vmlinux	EXPORT_SYMBOL
-0x7acde657	fsync_bdev	vmlinux	EXPORT_SYMBOL
-0x8a471ab1	generic_delete_inode	vmlinux	EXPORT_SYMBOL
-0x900e4960	generic_file_aio_read	vmlinux	EXPORT_SYMBOL
-0x184c7a8d	generic_file_aio_write	vmlinux	EXPORT_SYMBOL
-0xf589f92e	generic_file_fsync	vmlinux	EXPORT_SYMBOL
-0x2b8e77de	generic_file_llseek	vmlinux	EXPORT_SYMBOL
-0xbe734c6f	generic_file_open	vmlinux	EXPORT_SYMBOL
-0xf002d024	generic_file_remap_pages	vmlinux	EXPORT_SYMBOL
-0x50a82be7	generic_fillattr	vmlinux	EXPORT_SYMBOL
-0x0be8fba2	generic_getxattr	vmlinux	EXPORT_SYMBOL
-0x9c2d1fcb	generic_make_request	vmlinux	EXPORT_SYMBOL
-0xe4e3ba6a	generic_read_dir	vmlinux	EXPORT_SYMBOL
-0x4fe62f1d	generic_removexattr	vmlinux	EXPORT_SYMBOL
-0x6fd040ec	generic_segment_checks	vmlinux	EXPORT_SYMBOL
-0x1bac4200	generic_setlease	vmlinux	EXPORT_SYMBOL
-0x4b7a0e3a	generic_setxattr	vmlinux	EXPORT_SYMBOL
-0x262f68d9	generic_write_checks	vmlinux	EXPORT_SYMBOL
-0xe77f9e17	generic_write_end	vmlinux	EXPORT_SYMBOL
-0x980d7ed2	genl_unregister_family	vmlinux	EXPORT_SYMBOL
-0xafbe203f	genlmsg_put	vmlinux	EXPORT_SYMBOL
-0x22b7c744	get_device	vmlinux	EXPORT_SYMBOL_GPL
-0x79aa04a2	get_random_bytes	vmlinux	EXPORT_SYMBOL
-0x405c1144	get_seconds	vmlinux	EXPORT_SYMBOL
-0xea62cf5d	get_task_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x908f61fd	get_user_pages	vmlinux	EXPORT_SYMBOL
-0x9b388444	get_zeroed_page	vmlinux	EXPORT_SYMBOL
-0x11c90a77	grab_cache_page_nowait	vmlinux	EXPORT_SYMBOL
-0x63098c7d	grab_cache_page_write_begin	vmlinux	EXPORT_SYMBOL
-0xd9baf9cc	hci_alloc_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0x196141d9	hci_free_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0x059b0d3b	hci_register_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0xf57eb0e8	hci_unregister_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0xc1647dcc	hrtimer_cancel	vmlinux	EXPORT_SYMBOL_GPL
-0xa7a4705c	hrtimer_forward	vmlinux	EXPORT_SYMBOL_GPL
-0x09376b10	hrtimer_init	vmlinux	EXPORT_SYMBOL_GPL
-0xc3c6c9cc	hrtimer_start	vmlinux	EXPORT_SYMBOL_GPL
-0xdf71ddb4	icmpv6_send	vmlinux	EXPORT_SYMBOL
-0x686b3fbc	iget5_locked	vmlinux	EXPORT_SYMBOL
-0xcc623d7c	igrab	vmlinux	EXPORT_SYMBOL
-0xaccabc6a	in4_pton	vmlinux	EXPORT_SYMBOL
-0x1b6314fd	in_aton	vmlinux	EXPORT_SYMBOL
-0x76f2ae19	inc_zone_page_state	vmlinux	EXPORT_SYMBOL
-0x5d917719	inet_proto_csum_replace4	vmlinux	EXPORT_SYMBOL
-0x787f5586	init_net	vmlinux	EXPORT_SYMBOL
-0x00ea0949	init_special_inode	vmlinux	EXPORT_SYMBOL
-0x719ecd55	init_task	vmlinux	EXPORT_SYMBOL
-0x0593a99b	init_timer_key	vmlinux	EXPORT_SYMBOL
-0xa724257f	init_uts_ns	vmlinux	EXPORT_SYMBOL_GPL
-0xb2fdd32e	inode_init_once	vmlinux	EXPORT_SYMBOL
-0xcbcc83e7	inode_newsize_ok	vmlinux	EXPORT_SYMBOL
-0x94ae0a0f	inode_owner_or_capable	vmlinux	EXPORT_SYMBOL
-0x05bb50e9	invalidate_bdev	vmlinux	EXPORT_SYMBOL
-0x91952e67	invalidate_inode_pages2_range	vmlinux	EXPORT_SYMBOL_GPL
-0xffbaf43c	invalidate_mapping_pages	vmlinux	EXPORT_SYMBOL
-0xdef69a32	invalidate_partition	vmlinux	EXPORT_SYMBOL
-0x93a6e0b2	io_schedule	vmlinux	EXPORT_SYMBOL
-0x53a3d5e2	ioctl_by_bdev	vmlinux	EXPORT_SYMBOL
-0x69a358a6	iomem_resource	vmlinux	EXPORT_SYMBOL
-0xd761a383	ioremap_prot	vmlinux	EXPORT_SYMBOL
-0xedc03953	iounmap	vmlinux	EXPORT_SYMBOL
-0xf885b212	ip6_route_output	vmlinux	EXPORT_SYMBOL
-0x02124474	ip_send_check	vmlinux	EXPORT_SYMBOL
-0x423b776a	ipmi_create_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x8c8ee770	ipmi_destroy_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x8e7a9569	ipmi_register_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x1348760d	ipmi_request_settime	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xa28a2ace	ipmi_set_gets_events	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x16dcec76	ipmi_set_my_address	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x4c971bec	ipmi_smi_msg_received	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x1aba5db8	ipmi_unregister_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xe4f4665b	ipmi_validate_addr	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xa379140a	iput	vmlinux	EXPORT_SYMBOL
-0xb1882d2f	ipv6_dev_get_saddr	vmlinux	EXPORT_SYMBOL
-0x99591a7a	ipv6_ext_hdr	vmlinux	EXPORT_SYMBOL
-0x3d8cd4cd	ipv6_skip_exthdr	vmlinux	EXPORT_SYMBOL
-0x3fb2bd8a	irq_set_affinity_hint	vmlinux	EXPORT_SYMBOL_GPL
-0xe0a05524	irq_stat	vmlinux	EXPORT_SYMBOL
-0x7d11c268	jiffies	vmlinux	EXPORT_SYMBOL
-0xe24d3a97	jiffies_64	vmlinux	EXPORT_SYMBOL
-0x37befc70	jiffies_to_msecs	vmlinux	EXPORT_SYMBOL
-0xd220cf8a	jiffies_to_timespec	vmlinux	EXPORT_SYMBOL
-0xcb22e709	kernel_bind	vmlinux	EXPORT_SYMBOL
-0x80cc438d	kernel_getsockopt	vmlinux	EXPORT_SYMBOL
-0x1183eabd	kernel_recvmsg	vmlinux	EXPORT_SYMBOL
-0x8e490a0a	kernel_sendmsg	vmlinux	EXPORT_SYMBOL
-0x369dc4c8	kernel_setsockopt	vmlinux	EXPORT_SYMBOL
-0x807d0088	kernel_sock_ioctl	vmlinux	EXPORT_SYMBOL
-0xcce29c60	kernel_sock_shutdown	vmlinux	EXPORT_SYMBOL
-0x037a0cba	kfree	vmlinux	EXPORT_SYMBOL
-0x4036d882	kfree_put_link	vmlinux	EXPORT_SYMBOL
-0xd24efeeb	kfree_skb	vmlinux	EXPORT_SYMBOL
-0xef8b4235	kill_block_super	vmlinux	EXPORT_SYMBOL
-0xe343b550	kill_pgrp	vmlinux	EXPORT_SYMBOL
-0x808754c7	kill_pid	vmlinux	EXPORT_SYMBOL
-0x71c17866	kmalloc_caches	vmlinux	EXPORT_SYMBOL
-0xa202a8e5	kmalloc_order_trace	vmlinux	EXPORT_SYMBOL
-0x669102d2	kmem_cache_alloc	vmlinux	EXPORT_SYMBOL
-0xdd960555	kmem_cache_alloc_node_trace	vmlinux	EXPORT_SYMBOL
-0x9705ac0b	kmem_cache_alloc_trace	vmlinux	EXPORT_SYMBOL
-0xbdb21d92	kmem_cache_create	vmlinux	EXPORT_SYMBOL
-0x3f05b103	kmem_cache_destroy	vmlinux	EXPORT_SYMBOL
-0xf152edc3	kmem_cache_free	vmlinux	EXPORT_SYMBOL
-0x7abba5a8	kmem_cache_shrink	vmlinux	EXPORT_SYMBOL
-0x0f80e1e0	kobject_get	vmlinux	EXPORT_SYMBOL
-0xff8c676d	kobject_put	vmlinux	EXPORT_SYMBOL
-0x1eefcf54	kobject_set_name	vmlinux	EXPORT_SYMBOL
-0xdb7c1f35	kobject_uevent_env	vmlinux	EXPORT_SYMBOL_GPL
-0x85f5e2aa	krealloc	vmlinux	EXPORT_SYMBOL
-0x1b17e06c	kstrtoll	vmlinux	EXPORT_SYMBOL
-0xa111eac3	kthread_bind	vmlinux	EXPORT_SYMBOL
-0x7238a29a	kthread_create_on_node	vmlinux	EXPORT_SYMBOL
-0xb3f7646e	kthread_should_stop	vmlinux	EXPORT_SYMBOL
-0x6d76ee6f	kthread_stop	vmlinux	EXPORT_SYMBOL
-0xc87c1f84	ktime_get	vmlinux	EXPORT_SYMBOL_GPL
-0x0521445b	list_del	vmlinux	EXPORT_SYMBOL
-0xf7fed215	ll_rw_block	vmlinux	EXPORT_SYMBOL
-0x3ff62317	local_bh_disable	vmlinux	EXPORT_SYMBOL
-0x0799aca4	local_bh_enable	vmlinux	EXPORT_SYMBOL
-0x11934b38	lock_sock_nested	vmlinux	EXPORT_SYMBOL
-0xae3986cc	lookup_bdev	vmlinux	EXPORT_SYMBOL
-0xba497f13	loops_per_jiffy	vmlinux	EXPORT_SYMBOL
-0xfd8f7a5d	mapping_tagged	vmlinux	EXPORT_SYMBOL
-0x302131ee	mark_page_accessed	vmlinux	EXPORT_SYMBOL
-0x716c85d4	mem_section	vmlinux	EXPORT_SYMBOL
-0xa07a37f0	memchr	vmlinux	EXPORT_SYMBOL
-0x1c3e02e4	memcmp	vmlinux	EXPORT_SYMBOL
-0x4829a47e	memcpy	vmlinux	EXPORT_SYMBOL
-0x5a9f1d63	memmove	vmlinux	EXPORT_SYMBOL
-0x65e0d6d7	memory_read_from_buffer	vmlinux	EXPORT_SYMBOL
-0xafff3d1d	mempool_alloc	vmlinux	EXPORT_SYMBOL
-0x183fa88b	mempool_alloc_slab	vmlinux	EXPORT_SYMBOL
-0x8de0b5ac	mempool_create	vmlinux	EXPORT_SYMBOL
-0x891fbb10	mempool_destroy	vmlinux	EXPORT_SYMBOL
-0x23f2243d	mempool_free	vmlinux	EXPORT_SYMBOL
-0x8a99a016	mempool_free_slab	vmlinux	EXPORT_SYMBOL
-0xdcb764ad	memset	vmlinux	EXPORT_SYMBOL
-0xaf9b1ffd	misc_deregister	vmlinux	EXPORT_SYMBOL
-0x72a8989e	misc_register	vmlinux	EXPORT_SYMBOL
-0x3413c554	mmput	vmlinux	EXPORT_SYMBOL_GPL
-0xf07e7682	mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
-0xc21d1846	mmu_notifier_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x8834396c	mod_timer	vmlinux	EXPORT_SYMBOL
-0x1045f469	module_layout	vmlinux	EXPORT_SYMBOL
-0x7fc86730	module_put	vmlinux	EXPORT_SYMBOL
-0xd3cb091f	module_refcount	vmlinux	EXPORT_SYMBOL
-0x3bd1b1f6	msecs_to_jiffies	vmlinux	EXPORT_SYMBOL
-0xf9a482f9	msleep	vmlinux	EXPORT_SYMBOL
-0xb06badf2	mutex_lock	vmlinux	EXPORT_SYMBOL
-0xa544431c	mutex_trylock	vmlinux	EXPORT_SYMBOL
-0x8615d0d6	mutex_unlock	vmlinux	EXPORT_SYMBOL
-0x23d45374	napi_complete	vmlinux	EXPORT_SYMBOL
-0xa5e21b43	napi_get_frags	vmlinux	EXPORT_SYMBOL
-0x3e25b01e	napi_gro_frags	vmlinux	EXPORT_SYMBOL
-0x85065bbc	napi_gro_receive	vmlinux	EXPORT_SYMBOL
-0xa20ce1b8	net_msg_warn	vmlinux	EXPORT_SYMBOL
-0x6d2fc5a6	net_namespace_list	vmlinux	EXPORT_SYMBOL_GPL
-0xf6ebc03b	net_ratelimit	vmlinux	EXPORT_SYMBOL
-0xa073a7db	netdev_change_features	vmlinux	EXPORT_SYMBOL
-0x3a4ac6af	netdev_features_change	vmlinux	EXPORT_SYMBOL
-0x0c58a8cd	netdev_increment_features	vmlinux	EXPORT_SYMBOL
-0xe4ac5e56	netdev_master_upper_dev_get	vmlinux	EXPORT_SYMBOL
-0x0ff96d64	netdev_master_upper_dev_link	vmlinux	EXPORT_SYMBOL
-0xfeba93d4	netdev_rx_handler_register	vmlinux	EXPORT_SYMBOL_GPL
-0x527897b9	netdev_rx_handler_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc99ca1e7	netdev_update_features	vmlinux	EXPORT_SYMBOL
-0x1feb41a9	netif_carrier_off	vmlinux	EXPORT_SYMBOL
-0x568ae1fb	netif_carrier_on	vmlinux	EXPORT_SYMBOL
-0x02963901	netif_device_attach	vmlinux	EXPORT_SYMBOL
-0x0c3ec7ba	netif_device_detach	vmlinux	EXPORT_SYMBOL
-0x7d88f3ab	netif_napi_add	vmlinux	EXPORT_SYMBOL
-0x7a7d0d96	netif_napi_del	vmlinux	EXPORT_SYMBOL
-0x9620377a	netif_receive_skb	vmlinux	EXPORT_SYMBOL
-0x1973233f	netif_rx	vmlinux	EXPORT_SYMBOL
-0xb37e7204	netif_rx_ni	vmlinux	EXPORT_SYMBOL
-0x596e2c96	netif_set_real_num_tx_queues	vmlinux	EXPORT_SYMBOL
-0x0f9e2ad5	netif_tx_wake_queue	vmlinux	EXPORT_SYMBOL
-0x308858da	netlink_broadcast	vmlinux	EXPORT_SYMBOL
-0x59aca8d0	netlink_unicast	vmlinux	EXPORT_SYMBOL
-0x01902adf	netpoll_trap	vmlinux	EXPORT_SYMBOL
-0x4a68176d	nf_register_hook	vmlinux	EXPORT_SYMBOL
-0xfc32ee4d	nf_register_hooks	vmlinux	EXPORT_SYMBOL
-0xb22f5667	nf_unregister_hook	vmlinux	EXPORT_SYMBOL
-0x1f68233b	nf_unregister_hooks	vmlinux	EXPORT_SYMBOL
-0xcd279169	nla_find	vmlinux	EXPORT_SYMBOL
-0xf1db1704	nla_memcpy	vmlinux	EXPORT_SYMBOL
-0xd46da425	nla_put	vmlinux	EXPORT_SYMBOL
-0x194340ef	nla_reserve	vmlinux	EXPORT_SYMBOL
-0xd237bbff	node_data	vmlinux	EXPORT_SYMBOL
-0xb68bfa9d	node_states	vmlinux	EXPORT_SYMBOL
-0x7d9514c1	node_to_cpumask_map	vmlinux	EXPORT_SYMBOL
-0xa92b2dea	noop_llseek	vmlinux	EXPORT_SYMBOL
-0xfe7c4287	nr_cpu_ids	vmlinux	EXPORT_SYMBOL
-0x0948cde9	num_physpages	vmlinux	EXPORT_SYMBOL
-0x618911fc	numa_node	vmlinux	EXPORT_SYMBOL
-0x5541ea93	on_each_cpu	vmlinux	EXPORT_SYMBOL
-0xd5864f17	pagevec_lookup	vmlinux	EXPORT_SYMBOL
-0xefc88492	pagevec_lookup_tag	vmlinux	EXPORT_SYMBOL
-0x7c1372e8	panic	vmlinux	EXPORT_SYMBOL
-0x1af62a99	panic_notifier_list	vmlinux	EXPORT_SYMBOL
-0x4845c423	param_array_ops	vmlinux	EXPORT_SYMBOL
-0xa250c838	param_get_charp	vmlinux	EXPORT_SYMBOL
-0x253bdb78	param_get_int	vmlinux	EXPORT_SYMBOL
-0xab1d6cc1	param_get_long	vmlinux	EXPORT_SYMBOL
-0xe200d2d5	param_get_uint	vmlinux	EXPORT_SYMBOL
-0x03bd889d	param_get_ulong	vmlinux	EXPORT_SYMBOL
-0x1976aa06	param_ops_bool	vmlinux	EXPORT_SYMBOL
-0xadb5559d	param_ops_byte	vmlinux	EXPORT_SYMBOL
-0x35b6b772	param_ops_charp	vmlinux	EXPORT_SYMBOL
-0x15692c87	param_ops_int	vmlinux	EXPORT_SYMBOL
-0x4470a79b	param_ops_long	vmlinux	EXPORT_SYMBOL
-0xb2d307de	param_ops_short	vmlinux	EXPORT_SYMBOL
-0x4d405db8	param_ops_string	vmlinux	EXPORT_SYMBOL
-0x6d044c26	param_ops_uint	vmlinux	EXPORT_SYMBOL
-0xe5d95985	param_ops_ulong	vmlinux	EXPORT_SYMBOL
-0x6b7589f4	param_set_bool	vmlinux	EXPORT_SYMBOL
-0x62fd6207	param_set_charp	vmlinux	EXPORT_SYMBOL
-0x83c8a355	param_set_int	vmlinux	EXPORT_SYMBOL
-0x617643a2	param_set_long	vmlinux	EXPORT_SYMBOL
-0x8bfe8c57	param_set_uint	vmlinux	EXPORT_SYMBOL
-0x8f7014a1	param_set_ulong	vmlinux	EXPORT_SYMBOL
-0x84d8b0af	pci_bus_read_config_byte	vmlinux	EXPORT_SYMBOL
-0x28260b0b	pci_bus_read_config_dword	vmlinux	EXPORT_SYMBOL
-0x32152c19	pci_bus_read_config_word	vmlinux	EXPORT_SYMBOL
-0x63a0f4fd	pci_bus_write_config_byte	vmlinux	EXPORT_SYMBOL
-0xfaa6f7be	pci_bus_write_config_dword	vmlinux	EXPORT_SYMBOL
-0xe1304888	pci_bus_write_config_word	vmlinux	EXPORT_SYMBOL
-0xa42ab0fe	pci_clear_master	vmlinux	EXPORT_SYMBOL
-0x58b69596	pci_disable_device	vmlinux	EXPORT_SYMBOL
-0x0c03494a	pci_disable_msi	vmlinux	EXPORT_SYMBOL
-0x18107244	pci_disable_msix	vmlinux	EXPORT_SYMBOL
-0x0584cbe5	pci_enable_device	vmlinux	EXPORT_SYMBOL
-0xf303082f	pci_enable_msi_block	vmlinux	EXPORT_SYMBOL
-0x38a1c661	pci_enable_msix	vmlinux	EXPORT_SYMBOL
-0x4035f3f1	pci_find_capability	vmlinux	EXPORT_SYMBOL
-0x85a04356	pci_get_device	vmlinux	EXPORT_SYMBOL
-0xb96fe991	pci_get_subsys	vmlinux	EXPORT_SYMBOL
-0x1a0a5fe6	pci_iomap	vmlinux	EXPORT_SYMBOL
-0xc2171b99	pci_iounmap	vmlinux	EXPORT_SYMBOL
-0xb17b3f5c	pci_read_config_byte	vmlinux	EXPORT_SYMBOL
-0x82c5ff24	pci_read_config_dword	vmlinux	EXPORT_SYMBOL
-0xdc7ece2e	pci_read_config_word	vmlinux	EXPORT_SYMBOL
-0xcb2cde7b	pci_release_regions	vmlinux	EXPORT_SYMBOL
-0x26ee5a72	pci_request_regions	vmlinux	EXPORT_SYMBOL
-0x8310b417	pci_set_master	vmlinux	EXPORT_SYMBOL
-0xe1fb8004	pci_unregister_driver	vmlinux	EXPORT_SYMBOL
-0x18fee9d9	pci_write_config_byte	vmlinux	EXPORT_SYMBOL
-0x863ed56a	pci_write_config_dword	vmlinux	EXPORT_SYMBOL
-0xf8ad3f34	pci_write_config_word	vmlinux	EXPORT_SYMBOL
-0xd1acb1c4	pid_task	vmlinux	EXPORT_SYMBOL
-0xba4dcd1f	platform_device_add	vmlinux	EXPORT_SYMBOL_GPL
-0xfbbb2cbd	platform_device_alloc	vmlinux	EXPORT_SYMBOL_GPL
-0xd9765422	platform_device_put	vmlinux	EXPORT_SYMBOL_GPL
-0x321c24b2	platform_device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xee316bd8	posix_lock_file	vmlinux	EXPORT_SYMBOL
-0x4084ae0d	posix_test_lock	vmlinux	EXPORT_SYMBOL
-0xaf2d872c	prepare_to_wait	vmlinux	EXPORT_SYMBOL
-0x8f85f835	prepare_to_wait_exclusive	vmlinux	EXPORT_SYMBOL
-0x27e1a049	printk	vmlinux	EXPORT_SYMBOL
-0x4b5cbaf7	proc_create_data	vmlinux	EXPORT_SYMBOL
-0x1857aa39	proc_dointvec	vmlinux	EXPORT_SYMBOL
-0xced777cb	proc_dointvec_minmax	vmlinux	EXPORT_SYMBOL
-0x895108f3	proc_dostring	vmlinux	EXPORT_SYMBOL
-0xf55e941f	proc_mkdir	vmlinux	EXPORT_SYMBOL
-0x583f5f53	proc_mkdir_mode	vmlinux	EXPORT_SYMBOL
-0x5c60527c	proc_remove	vmlinux	EXPORT_SYMBOL
-0x16c057f8	pskb_expand_head	vmlinux	EXPORT_SYMBOL
-0x748a2fae	put_device	vmlinux	EXPORT_SYMBOL_GPL
-0x9eefc636	put_disk	vmlinux	EXPORT_SYMBOL
-0x4c6270e4	put_page	vmlinux	EXPORT_SYMBOL
-0xeeec26a7	queue_delayed_work_on	vmlinux	EXPORT_SYMBOL
-0x2e0d2f7f	queue_work_on	vmlinux	EXPORT_SYMBOL
-0x60a13e90	rcu_barrier	vmlinux	EXPORT_SYMBOL_GPL
-0xe3ff1434	read_cache_pages	vmlinux	EXPORT_SYMBOL
-0xfb6af58d	recalc_sigpending	vmlinux	EXPORT_SYMBOL
-0x6623aad3	ref_module	vmlinux	EXPORT_SYMBOL_GPL
-0x71a50dbc	register_blkdev	vmlinux	EXPORT_SYMBOL
-0x60352082	register_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
-0xf68285c0	register_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
-0x87f31b5e	register_netdev	vmlinux	EXPORT_SYMBOL
-0x76326c6d	register_netdevice	vmlinux	EXPORT_SYMBOL
-0xd2da1048	register_netdevice_notifier	vmlinux	EXPORT_SYMBOL
-0x4761f17c	register_netevent_notifier	vmlinux	EXPORT_SYMBOL_GPL
-0x1bb4a1df	register_pernet_subsys	vmlinux	EXPORT_SYMBOL_GPL
-0x3517383e	register_reboot_notifier	vmlinux	EXPORT_SYMBOL
-0x75be6702	register_sysctl_paths	vmlinux	EXPORT_SYMBOL
-0xe9555930	release_sock	vmlinux	EXPORT_SYMBOL
-0x76b29d88	remap_pfn_range	vmlinux	EXPORT_SYMBOL
-0x31d930e1	remove_proc_entry	vmlinux	EXPORT_SYMBOL
-0x48404b9a	remove_wait_queue	vmlinux	EXPORT_SYMBOL
-0xd6b8e852	request_threaded_irq	vmlinux	EXPORT_SYMBOL
-0xc78db2ad	revalidate_disk	vmlinux	EXPORT_SYMBOL
-0x49710e81	rh_kabi_7_2	vmlinux	EXPORT_SYMBOL_GPL
-0x20a48903	root_device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x51b65a26	rtc_lock	vmlinux	EXPORT_SYMBOL_GPL
-0x85670f1d	rtnl_is_locked	vmlinux	EXPORT_SYMBOL
-0x4cf92d88	rtnl_link_register	vmlinux	EXPORT_SYMBOL_GPL
-0x20b23370	rtnl_link_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc7a4fbed	rtnl_lock	vmlinux	EXPORT_SYMBOL
-0xf4f14de6	rtnl_trylock	vmlinux	EXPORT_SYMBOL
-0x6e720ff2	rtnl_unlock	vmlinux	EXPORT_SYMBOL
-0x01000e51	schedule	vmlinux	EXPORT_SYMBOL
-0xd62c833f	schedule_timeout	vmlinux	EXPORT_SYMBOL
-0x7ac1f728	scsi_add_device	vmlinux	EXPORT_SYMBOL
-0x680629df	scsi_add_host_with_dma	vmlinux	EXPORT_SYMBOL
-0xe141e51a	scsi_adjust_queue_depth	vmlinux	EXPORT_SYMBOL
-0xeab31b62	scsi_cmd_get_serial	vmlinux	EXPORT_SYMBOL
-0x1344e5af	scsi_cmd_ioctl	vmlinux	EXPORT_SYMBOL
-0x0334da4e	scsi_command_size_tbl	vmlinux	EXPORT_SYMBOL
-0xb58ce48a	scsi_device_get	vmlinux	EXPORT_SYMBOL
-0x01d213a4	scsi_device_lookup	vmlinux	EXPORT_SYMBOL
-0x8ca06997	scsi_device_put	vmlinux	EXPORT_SYMBOL
-0x72ea7b2d	scsi_device_type	vmlinux	EXPORT_SYMBOL
-0x1d14d8a4	scsi_dma_map	vmlinux	EXPORT_SYMBOL
-0x97109572	scsi_dma_unmap	vmlinux	EXPORT_SYMBOL
-0x3fa03c01	scsi_execute	vmlinux	EXPORT_SYMBOL
-0x4ca094a9	scsi_host_alloc	vmlinux	EXPORT_SYMBOL
-0xe4fb532e	scsi_host_lookup	vmlinux	EXPORT_SYMBOL
-0xe4f26d66	scsi_host_put	vmlinux	EXPORT_SYMBOL
-0x697981e8	scsi_host_set_state	vmlinux	EXPORT_SYMBOL
-0x38038a13	scsi_is_fc_rport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x92bf197e	scsi_is_host_device	vmlinux	EXPORT_SYMBOL
-0x9bccf61d	scsi_is_sdev_device	vmlinux	EXPORT_SYMBOL
-0x7dea808e	scsi_register_driver	vmlinux	EXPORT_SYMBOL
-0x597c1f20	scsi_remove_device	vmlinux	EXPORT_SYMBOL
-0xb00d9591	scsi_remove_host	vmlinux	EXPORT_SYMBOL
-0xe8634f1a	scsi_reset_provider	vmlinux	EXPORT_SYMBOL
-0x8d5ca40a	scsi_scan_host	vmlinux	EXPORT_SYMBOL
-0x52026cdf	security_sb_parse_opts_str	vmlinux	EXPORT_SYMBOL
-0x8410b310	security_sb_set_mnt_opts	vmlinux	EXPORT_SYMBOL
-0xdd0b9bdb	send_sig	vmlinux	EXPORT_SYMBOL
-0x8ff68a43	send_sig_info	vmlinux	EXPORT_SYMBOL
-0xcc1ccbc5	seq_lseek	vmlinux	EXPORT_SYMBOL
-0x330f0ca4	seq_open	vmlinux	EXPORT_SYMBOL
-0xe3ea7ee6	seq_printf	vmlinux	EXPORT_SYMBOL
-0xf954f786	seq_putc	vmlinux	EXPORT_SYMBOL
-0x34c60606	seq_puts	vmlinux	EXPORT_SYMBOL
-0x9028dc66	seq_read	vmlinux	EXPORT_SYMBOL
-0xa5862f86	seq_release	vmlinux	EXPORT_SYMBOL
-0x0bdb1caf	seq_write	vmlinux	EXPORT_SYMBOL
-0x24f5e2e8	set_blocksize	vmlinux	EXPORT_SYMBOL
-0xa2b21160	set_cpus_allowed_ptr	vmlinux	EXPORT_SYMBOL_GPL
-0x828e8b62	set_device_ro	vmlinux	EXPORT_SYMBOL
-0x6e4c7007	set_disk_ro	vmlinux	EXPORT_SYMBOL
-0x622ada4d	set_page_dirty	vmlinux	EXPORT_SYMBOL
-0x7fe38f48	sg_copy_to_buffer	vmlinux	EXPORT_SYMBOL
-0x3fec048f	sg_next	vmlinux	EXPORT_SYMBOL
-0x40c7247c	si_meminfo	vmlinux	EXPORT_SYMBOL
-0x0b742fd7	simple_strtol	vmlinux	EXPORT_SYMBOL
-0x20000329	simple_strtoul	vmlinux	EXPORT_SYMBOL
-0x61b7b126	simple_strtoull	vmlinux	EXPORT_SYMBOL
-0xd56fd57e	single_open	vmlinux	EXPORT_SYMBOL
-0x833ad0be	single_release	vmlinux	EXPORT_SYMBOL
-0xedbb7283	sk_alloc	vmlinux	EXPORT_SYMBOL
-0x587785da	sk_free	vmlinux	EXPORT_SYMBOL
-0x2ef2e1d1	skb_checksum	vmlinux	EXPORT_SYMBOL
-0x0773c2a2	skb_checksum_help	vmlinux	EXPORT_SYMBOL
-0x6c14fb6e	skb_clone	vmlinux	EXPORT_SYMBOL
-0xc96cb4f2	skb_copy	vmlinux	EXPORT_SYMBOL
-0x1c4c68cf	skb_copy_bits	vmlinux	EXPORT_SYMBOL
-0x5f0e32e0	skb_copy_datagram_iovec	vmlinux	EXPORT_SYMBOL
-0xa6423c68	skb_copy_expand	vmlinux	EXPORT_SYMBOL
-0xad250cfb	skb_dequeue	vmlinux	EXPORT_SYMBOL
-0x460efd52	skb_dequeue_tail	vmlinux	EXPORT_SYMBOL
-0x7ff79ac1	skb_make_writable	vmlinux	EXPORT_SYMBOL
-0xe868062d	skb_pad	vmlinux	EXPORT_SYMBOL
-0xc768f5f1	skb_partial_csum_set	vmlinux	EXPORT_SYMBOL_GPL
-0xe8c78221	skb_pull	vmlinux	EXPORT_SYMBOL
-0xea816f72	skb_push	vmlinux	EXPORT_SYMBOL
-0xe7415e9f	skb_put	vmlinux	EXPORT_SYMBOL
-0x51466976	skb_queue_head	vmlinux	EXPORT_SYMBOL
-0xca6bf83c	skb_queue_purge	vmlinux	EXPORT_SYMBOL
-0x8d1d67de	skb_queue_tail	vmlinux	EXPORT_SYMBOL
-0x9e9d1fc4	skb_realloc_headroom	vmlinux	EXPORT_SYMBOL
-0xd4cdcae2	skb_recv_datagram	vmlinux	EXPORT_SYMBOL
-0x5f6cc4f3	skb_trim	vmlinux	EXPORT_SYMBOL
-0x421b2d9a	skb_tstamp_tx	vmlinux	EXPORT_SYMBOL_GPL
-0x792a4def	skb_unlink	vmlinux	EXPORT_SYMBOL
-0x6228c21f	smp_call_function_single	vmlinux	EXPORT_SYMBOL
-0x28318305	snprintf	vmlinux	EXPORT_SYMBOL
-0xe48b38f1	sock_alloc_send_skb	vmlinux	EXPORT_SYMBOL
-0x4b1ce77d	sock_create_kern	vmlinux	EXPORT_SYMBOL
-0x4dc8ef91	sock_release	vmlinux	EXPORT_SYMBOL
-0x91715312	sprintf	vmlinux	EXPORT_SYMBOL
-0x20c55ae0	sscanf	vmlinux	EXPORT_SYMBOL
-0x0ecf823a	static_key_slow_dec	vmlinux	EXPORT_SYMBOL_GPL
-0x368f1fea	static_key_slow_inc	vmlinux	EXPORT_SYMBOL_GPL
-0x2a67f7da	stop_machine	vmlinux	EXPORT_SYMBOL_GPL
-0xaafdc258	strcasecmp	vmlinux	EXPORT_SYMBOL
-0x061651be	strcat	vmlinux	EXPORT_SYMBOL
-0x349cba85	strchr	vmlinux	EXPORT_SYMBOL
-0xe2d5255a	strcmp	vmlinux	EXPORT_SYMBOL
-0xe914e41e	strcpy	vmlinux	EXPORT_SYMBOL
-0x5792f848	strlcpy	vmlinux	EXPORT_SYMBOL
-0x98cf60b3	strlen	vmlinux	EXPORT_SYMBOL
-0x96b29254	strncasecmp	vmlinux	EXPORT_SYMBOL
-0x2e2b40d2	strncat	vmlinux	EXPORT_SYMBOL
-0x5a921311	strncmp	vmlinux	EXPORT_SYMBOL
-0x9166fada	strncpy	vmlinux	EXPORT_SYMBOL
-0x24428be5	strncpy_from_user	vmlinux	EXPORT_SYMBOL
-0x3d5844b3	strnicmp	vmlinux	EXPORT_SYMBOL
-0xa916b694	strnlen	vmlinux	EXPORT_SYMBOL
-0x9f984513	strrchr	vmlinux	EXPORT_SYMBOL
-0x85df9b6c	strsep	vmlinux	EXPORT_SYMBOL
-0x1e6d26a8	strstr	vmlinux	EXPORT_SYMBOL
-0x0cad8224	submit_bio	vmlinux	EXPORT_SYMBOL
-0xacf9f591	sync_blockdev	vmlinux	EXPORT_SYMBOL
-0x609f1c7e	synchronize_net	vmlinux	EXPORT_SYMBOL
-0xfe5d4bb2	sys_tz	vmlinux	EXPORT_SYMBOL
-0x2d3385d3	system_wq	vmlinux	EXPORT_SYMBOL
-0x0ec6f8fa	tag_pages_for_writeback	vmlinux	EXPORT_SYMBOL
-0x92a9c60c	time_to_tm	vmlinux	EXPORT_SYMBOL
-0x6fcb87a1	touch_softlockup_watchdog	vmlinux	EXPORT_SYMBOL
-0x4c6398fc	truncate_inode_pages	vmlinux	EXPORT_SYMBOL
-0x69dd1228	truncate_inode_pages_final	vmlinux	EXPORT_SYMBOL
-0x0b6055c8	truncate_pagecache	vmlinux	EXPORT_SYMBOL
-0x4825f6d4	try_module_get	vmlinux	EXPORT_SYMBOL
-0x108fb85d	unlock_page	vmlinux	EXPORT_SYMBOL
-0x9784850c	unmap_mapping_range	vmlinux	EXPORT_SYMBOL
-0xb5a459dc	unregister_blkdev	vmlinux	EXPORT_SYMBOL
-0x7485e15e	unregister_chrdev_region	vmlinux	EXPORT_SYMBOL
-0x2fe252cc	unregister_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
-0xfe029963	unregister_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
-0x6c4a3196	unregister_netdev	vmlinux	EXPORT_SYMBOL
-0x9d0d6206	unregister_netdevice_notifier	vmlinux	EXPORT_SYMBOL
-0x219266a5	unregister_netdevice_queue	vmlinux	EXPORT_SYMBOL
-0x4fe1eddf	unregister_netevent_notifier	vmlinux	EXPORT_SYMBOL_GPL
-0xe6dff83d	unregister_pernet_subsys	vmlinux	EXPORT_SYMBOL_GPL
-0xac1a55be	unregister_reboot_notifier	vmlinux	EXPORT_SYMBOL
-0xc50bab05	unregister_shrinker	vmlinux	EXPORT_SYMBOL
-0xbbb6b412	unregister_sysctl_table	vmlinux	EXPORT_SYMBOL
-0x4256c3bf	unuse_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x5412c7c7	up	vmlinux	EXPORT_SYMBOL
-0x13e38f5c	up_read	vmlinux	EXPORT_SYMBOL
-0xe4a895fa	up_write	vmlinux	EXPORT_SYMBOL
-0xf87ba608	use_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x12a38747	usleep_range	vmlinux	EXPORT_SYMBOL
-0x999e8297	vfree	vmlinux	EXPORT_SYMBOL
-0x1bb1c673	vfs_fsync_range	vmlinux	EXPORT_SYMBOL
-0x7c3c9c14	vfs_mknod	vmlinux	EXPORT_SYMBOL
-0xfb3e6834	vfs_unlink	vmlinux	EXPORT_SYMBOL
-0x47903c3a	vga_set_legacy_decoding	vmlinux	EXPORT_SYMBOL
-0x670f9ec3	vlan_dev_real_dev	vmlinux	EXPORT_SYMBOL
-0xbb191e66	vlan_dev_vlan_id	vmlinux	EXPORT_SYMBOL
-0x3824474a	vm_insert_pfn	vmlinux	EXPORT_SYMBOL
-0x56f33e1c	vm_mmap	vmlinux	EXPORT_SYMBOL
-0x5b56860c	vm_munmap	vmlinux	EXPORT_SYMBOL
-0x31a78843	vm_stat	vmlinux	EXPORT_SYMBOL
-0xd6ee688f	vmalloc	vmlinux	EXPORT_SYMBOL
-0xa0b04675	vmalloc_32	vmlinux	EXPORT_SYMBOL
-0xbe0edcb8	vmalloc_to_page	vmlinux	EXPORT_SYMBOL
-0x5635a60a	vmalloc_user	vmlinux	EXPORT_SYMBOL
-0xa365cd30	vmap	vmlinux	EXPORT_SYMBOL
-0xbf8ba54a	vprintk	vmlinux	EXPORT_SYMBOL
-0x91ac822f	vscnprintf	vmlinux	EXPORT_SYMBOL
-0x99195078	vsnprintf	vmlinux	EXPORT_SYMBOL
-0x2482e688	vsprintf	vmlinux	EXPORT_SYMBOL
-0x94961283	vunmap	vmlinux	EXPORT_SYMBOL
-0x44eb192e	wait_for_completion	vmlinux	EXPORT_SYMBOL
-0x46d12956	wait_for_completion_interruptible_timeout	vmlinux	EXPORT_SYMBOL
-0xb1c6e787	wait_for_completion_timeout	vmlinux	EXPORT_SYMBOL
-0x88a0707a	wait_on_page_bit	vmlinux	EXPORT_SYMBOL
-0x0987ef19	wait_on_sync_kiocb	vmlinux	EXPORT_SYMBOL
-0xcfe616f8	wake_up_process	vmlinux	EXPORT_SYMBOL
-0x584f8e0d	xt_register_targets	vmlinux	EXPORT_SYMBOL
-0x2d07cc46	xt_unregister_targets	vmlinux	EXPORT_SYMBOL
-0x760a0f4f	yield	vmlinux	EXPORT_SYMBOL
-0xcfecfa57	zap_vma_ptes	vmlinux	EXPORT_SYMBOL_GPL
-0xf2c43f3f	zlib_deflate	vmlinux	EXPORT_SYMBOL
-0xc890c008	zlib_deflateEnd	vmlinux	EXPORT_SYMBOL
-0x5a0b73d0	zlib_deflateInit2	vmlinux	EXPORT_SYMBOL
-0xe9f7149c	zlib_deflate_workspacesize	vmlinux	EXPORT_SYMBOL
-0x581f98da	zlib_inflate	vmlinux	EXPORT_SYMBOL
-0x107e5878	zlib_inflateEnd	vmlinux	EXPORT_SYMBOL
-0x35a88f28	zlib_inflateInit2	vmlinux	EXPORT_SYMBOL
-0xce5ac24f	zlib_inflate_workspacesize	vmlinux	EXPORT_SYMBOL
diff --git a/kernel-source/thirdparty/SOURCES/Module.kabi_s390x b/kernel-source/thirdparty/SOURCES/Module.kabi_s390x
deleted file mode 100644
index 9a4a5bf..0000000
--- a/kernel-source/thirdparty/SOURCES/Module.kabi_s390x
+++ /dev/null
@@ -1,782 +0,0 @@
-0xc408e209	___pskb_trim	vmlinux	EXPORT_SYMBOL
-0x30d36e18	__alloc_pages_nodemask	vmlinux	EXPORT_SYMBOL
-0x55f2580b	__alloc_percpu	vmlinux	EXPORT_SYMBOL_GPL
-0x341a3b6c	__alloc_skb	vmlinux	EXPORT_SYMBOL
-0x43a53735	__alloc_workqueue_key	vmlinux	EXPORT_SYMBOL_GPL
-0x6b1b67d3	__bdevname	vmlinux	EXPORT_SYMBOL
-0x9e9f1714	__bitmap_andnot	vmlinux	EXPORT_SYMBOL
-0x6d27ef64	__bitmap_empty	vmlinux	EXPORT_SYMBOL
-0xc256e762	__bitmap_equal	vmlinux	EXPORT_SYMBOL
-0xea10655a	__bitmap_intersects	vmlinux	EXPORT_SYMBOL
-0x4df119fa	__bitmap_parse	vmlinux	EXPORT_SYMBOL
-0x4a358252	__bitmap_subset	vmlinux	EXPORT_SYMBOL
-0x4cbbd171	__bitmap_weight	vmlinux	EXPORT_SYMBOL
-0x551de461	__blk_end_request	vmlinux	EXPORT_SYMBOL
-0x8b05713b	__blk_put_request	vmlinux	EXPORT_SYMBOL_GPL
-0xb2b1f090	__blockdev_direct_IO	vmlinux	EXPORT_SYMBOL
-0xa8a6f639	__check_region	vmlinux	EXPORT_SYMBOL
-0x56d030e1	__class_create	vmlinux	EXPORT_SYMBOL_GPL
-0x01327e79	__class_register	vmlinux	EXPORT_SYMBOL_GPL
-0xd920dab9	__dev_get_by_index	vmlinux	EXPORT_SYMBOL
-0x28d0766b	__dev_get_by_name	vmlinux	EXPORT_SYMBOL
-0x756b2b5e	__dynamic_dev_dbg	vmlinux	EXPORT_SYMBOL
-0x77945994	__ethtool_get_settings	vmlinux	EXPORT_SYMBOL
-0xe3e12008	__first_cpu	vmlinux	EXPORT_SYMBOL
-0x70636176	__generic_file_aio_write	vmlinux	EXPORT_SYMBOL
-0xec3ecefb	__genl_register_family	vmlinux	EXPORT_SYMBOL
-0x93fca811	__get_free_pages	vmlinux	EXPORT_SYMBOL
-0x85443fdb	__get_page_tail	vmlinux	EXPORT_SYMBOL
-0x319d4877	__init_rwsem	vmlinux	EXPORT_SYMBOL
-0xac213e3a	__init_waitqueue_head	vmlinux	EXPORT_SYMBOL
-0x78dc3f3c	__insert_inode_hash	vmlinux	EXPORT_SYMBOL
-0x0d542439	__ipv6_addr_type	vmlinux	EXPORT_SYMBOL
-0x5a34a45c	__kmalloc	vmlinux	EXPORT_SYMBOL
-0x0343a1a8	__list_add	vmlinux	EXPORT_SYMBOL
-0x1e579dc5	__list_add_rcu	vmlinux	EXPORT_SYMBOL
-0x65e75cb6	__list_del_entry	vmlinux	EXPORT_SYMBOL
-0x149c03e2	__lock_page	vmlinux	EXPORT_SYMBOL
-0x38a90c5d	__mark_inode_dirty	vmlinux	EXPORT_SYMBOL
-0x1226f4a6	__mmdrop	vmlinux	EXPORT_SYMBOL_GPL
-0xc74c15f3	__module_get	vmlinux	EXPORT_SYMBOL
-0x9c1e955b	__mutex_init	vmlinux	EXPORT_SYMBOL
-0x49a1ee35	__napi_complete	vmlinux	EXPORT_SYMBOL
-0x8e1a8cc6	__napi_schedule	vmlinux	EXPORT_SYMBOL
-0x338bbef8	__ndelay	vmlinux	EXPORT_SYMBOL
-0x096cd716	__netdev_alloc_skb	vmlinux	EXPORT_SYMBOL
-0x465cd4df	__netif_schedule	vmlinux	EXPORT_SYMBOL
-0xe8dbafef	__next_cpu	vmlinux	EXPORT_SYMBOL
-0xa5e4f65c	__next_cpu_nr	vmlinux	EXPORT_SYMBOL
-0x694d4ab6	__nlmsg_put	vmlinux	EXPORT_SYMBOL
-0x4dbe9e2d	__pagevec_release	vmlinux	EXPORT_SYMBOL
-0x03be3c87	__pci_register_driver	vmlinux	EXPORT_SYMBOL
-0x3928efe9	__per_cpu_offset	vmlinux	EXPORT_SYMBOL
-0x96db666f	__pskb_pull_tail	vmlinux	EXPORT_SYMBOL
-0x551bd071	__rb_erase_color	vmlinux	EXPORT_SYMBOL
-0x120b336a	__rb_insert_augmented	vmlinux	EXPORT_SYMBOL
-0x25c20a7f	__register_chrdev	vmlinux	EXPORT_SYMBOL
-0x7c61340c	__release_region	vmlinux	EXPORT_SYMBOL
-0x402b8281	__request_module	vmlinux	EXPORT_SYMBOL
-0x1fedf0f4	__request_region	vmlinux	EXPORT_SYMBOL
-0xba909aa0	__root_device_register	vmlinux	EXPORT_SYMBOL_GPL
-0xca8e88c1	__set_page_dirty_nobuffers	vmlinux	EXPORT_SYMBOL
-0xef912634	__skb_checksum_complete	vmlinux	EXPORT_SYMBOL
-0x36c879aa	__skb_get_hash	vmlinux	EXPORT_SYMBOL
-0x92bfc237	__skb_gso_segment	vmlinux	EXPORT_SYMBOL
-0x868784cb	__symbol_get	vmlinux	EXPORT_SYMBOL_GPL
-0x6e9dd606	__symbol_put	vmlinux	EXPORT_SYMBOL
-0xe65e5ea8	__task_pid_nr_ns	vmlinux	EXPORT_SYMBOL
-0xd3765d1c	__test_set_page_writeback	vmlinux	EXPORT_SYMBOL
-0xd4df235d	__tracepoint_module_get	vmlinux	EXPORT_SYMBOL
-0x3fb0b9e3	__udelay	vmlinux	EXPORT_SYMBOL
-0x6bc3fbc0	__unregister_chrdev	vmlinux	EXPORT_SYMBOL
-0x8e879bb7	__vmalloc	vmlinux	EXPORT_SYMBOL
-0x9b318b10	__wake_up	vmlinux	EXPORT_SYMBOL
-0xa1c76e0a	_cond_resched	vmlinux	EXPORT_SYMBOL
-0x03aecf29	_dev_info	vmlinux	EXPORT_SYMBOL
-0x29b500b2	_raw_spin_unlock	vmlinux	EXPORT_SYMBOL
-0xd270d8c8	abort_exclusive_wait	vmlinux	EXPORT_SYMBOL
-0x873bab48	add_disk	vmlinux	EXPORT_SYMBOL
-0xbe2c0274	add_timer	vmlinux	EXPORT_SYMBOL
-0x1288f9c2	add_wait_queue	vmlinux	EXPORT_SYMBOL
-0xd4d250e2	add_wait_queue_exclusive	vmlinux	EXPORT_SYMBOL
-0x18feadd3	aio_complete	vmlinux	EXPORT_SYMBOL
-0x29537c9e	alloc_chrdev_region	vmlinux	EXPORT_SYMBOL
-0xff0fc525	alloc_disk	vmlinux	EXPORT_SYMBOL
-0x608404e3	alloc_etherdev_mqs	vmlinux	EXPORT_SYMBOL
-0x2b45f8c4	alloc_netdev_mqs	vmlinux	EXPORT_SYMBOL
-0xd79b5a02	allow_signal	vmlinux	EXPORT_SYMBOL
-0xbea5477e	arp_create	vmlinux	EXPORT_SYMBOL
-0x09589111	arp_send	vmlinux	EXPORT_SYMBOL
-0xa4858d16	arp_xmit	vmlinux	EXPORT_SYMBOL
-0xcc85fcb6	async_schedule	vmlinux	EXPORT_SYMBOL_GPL
-0xf9404829	atomic_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
-0x1ce65480	atomic_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc8b57c27	autoremove_wake_function	vmlinux	EXPORT_SYMBOL
-0xe20f4080	balance_dirty_pages_ratelimited	vmlinux	EXPORT_SYMBOL
-0x71b1d9b5	bdevname	vmlinux	EXPORT_SYMBOL
-0x1620fd52	bdget	vmlinux	EXPORT_SYMBOL
-0x0d28e449	bdget_disk	vmlinux	EXPORT_SYMBOL
-0x2739bbcf	bdi_destroy	vmlinux	EXPORT_SYMBOL
-0x27333f6b	bdi_init	vmlinux	EXPORT_SYMBOL
-0x2fba61d2	bdi_register_dev	vmlinux	EXPORT_SYMBOL
-0x61f39ebb	bdi_unregister	vmlinux	EXPORT_SYMBOL
-0xc109b12c	bdput	vmlinux	EXPORT_SYMBOL
-0x6dbe029f	bio_add_page	vmlinux	EXPORT_SYMBOL
-0xb17b25f4	bio_alloc_bioset	vmlinux	EXPORT_SYMBOL
-0x10f891b4	bio_clone_bioset	vmlinux	EXPORT_SYMBOL
-0x8c143b05	bio_endio	vmlinux	EXPORT_SYMBOL
-0x8e9d1f16	bio_get_nr_vecs	vmlinux	EXPORT_SYMBOL
-0x58924650	bio_init	vmlinux	EXPORT_SYMBOL
-0x846c3efe	bio_put	vmlinux	EXPORT_SYMBOL
-0x4b4c7576	bioset_create	vmlinux	EXPORT_SYMBOL
-0x3cc06c69	bioset_free	vmlinux	EXPORT_SYMBOL
-0x8251bcc3	bitmap_release_region	vmlinux	EXPORT_SYMBOL
-0x1ccb6bad	blk_alloc_queue	vmlinux	EXPORT_SYMBOL
-0x9b24f4e3	blk_cleanup_queue	vmlinux	EXPORT_SYMBOL
-0x0d25fbdf	blk_end_request	vmlinux	EXPORT_SYMBOL
-0x5ba30ae4	blk_end_request_all	vmlinux	EXPORT_SYMBOL
-0xe69a8bb7	blk_execute_rq	vmlinux	EXPORT_SYMBOL
-0x79e7ea7a	blk_execute_rq_nowait	vmlinux	EXPORT_SYMBOL_GPL
-0xe4d031a9	blk_fetch_request	vmlinux	EXPORT_SYMBOL
-0x0ce900af	blk_finish_plug	vmlinux	EXPORT_SYMBOL
-0x27898f76	blk_get_backing_dev_info	vmlinux	EXPORT_SYMBOL
-0xcb5cf306	blk_get_queue	vmlinux	EXPORT_SYMBOL
-0x2a99b348	blk_get_request	vmlinux	EXPORT_SYMBOL
-0xf77e96a1	blk_init_queue	vmlinux	EXPORT_SYMBOL
-0x124af3bf	blk_limits_io_min	vmlinux	EXPORT_SYMBOL
-0x7c922190	blk_limits_io_opt	vmlinux	EXPORT_SYMBOL
-0xa579bb8d	blk_make_request	vmlinux	EXPORT_SYMBOL
-0xc44dbaaf	blk_mq_unique_tag	vmlinux	EXPORT_SYMBOL
-0xc375b120	blk_put_queue	vmlinux	EXPORT_SYMBOL
-0x89dfa6e0	blk_put_request	vmlinux	EXPORT_SYMBOL
-0xeeead523	blk_queue_bounce	vmlinux	EXPORT_SYMBOL
-0x3ab7d913	blk_queue_bounce_limit	vmlinux	EXPORT_SYMBOL
-0x6e13c159	blk_queue_dma_alignment	vmlinux	EXPORT_SYMBOL
-0x73a292bc	blk_queue_end_tag	vmlinux	EXPORT_SYMBOL
-0x14aaad79	blk_queue_flush	vmlinux	EXPORT_SYMBOL_GPL
-0xa61cbaa4	blk_queue_init_tags	vmlinux	EXPORT_SYMBOL
-0x719c0220	blk_queue_logical_block_size	vmlinux	EXPORT_SYMBOL
-0x8902d546	blk_queue_make_request	vmlinux	EXPORT_SYMBOL
-0x5c419042	blk_queue_max_discard_sectors	vmlinux	EXPORT_SYMBOL
-0xfea8ef63	blk_queue_max_hw_sectors	vmlinux	EXPORT_SYMBOL
-0xafc6526b	blk_queue_max_segments	vmlinux	EXPORT_SYMBOL
-0x8033ac31	blk_queue_merge_bvec	vmlinux	EXPORT_SYMBOL
-0x6e98c23e	blk_queue_rq_timed_out	vmlinux	EXPORT_SYMBOL_GPL
-0xfca65b1f	blk_queue_segment_boundary	vmlinux	EXPORT_SYMBOL
-0xa398c805	blk_queue_softirq_done	vmlinux	EXPORT_SYMBOL
-0xec01e50f	blk_queue_stack_limits	vmlinux	EXPORT_SYMBOL
-0x467b617c	blk_rq_init	vmlinux	EXPORT_SYMBOL
-0x74da6656	blk_rq_map_kern	vmlinux	EXPORT_SYMBOL
-0x925520d2	blk_start_plug	vmlinux	EXPORT_SYMBOL
-0x66cd7232	blk_start_queue	vmlinux	EXPORT_SYMBOL
-0xf35aeff5	blk_stop_queue	vmlinux	EXPORT_SYMBOL
-0x3784d2ee	blk_sync_queue	vmlinux	EXPORT_SYMBOL
-0x9c65f8d3	blkdev_get	vmlinux	EXPORT_SYMBOL
-0x145be80f	blkdev_get_by_dev	vmlinux	EXPORT_SYMBOL
-0x4c8e6c14	blkdev_get_by_path	vmlinux	EXPORT_SYMBOL
-0xcf4642fd	blkdev_issue_discard	vmlinux	EXPORT_SYMBOL
-0xa8247c7a	blkdev_put	vmlinux	EXPORT_SYMBOL
-0x6f0da87f	block_write_begin	vmlinux	EXPORT_SYMBOL
-0xe81cbb68	block_write_full_page	vmlinux	EXPORT_SYMBOL
-0xfd6293c2	boot_tvec_bases	vmlinux	EXPORT_SYMBOL
-0x74fcfb86	bus_register	vmlinux	EXPORT_SYMBOL_GPL
-0x2e17e871	bus_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xa75312bc	call_rcu_sched	vmlinux	EXPORT_SYMBOL_GPL
-0xc5fdef94	call_usermodehelper	vmlinux	EXPORT_SYMBOL
-0x13996a7d	call_usermodehelper_exec	vmlinux	EXPORT_SYMBOL
-0x116b66a7	call_usermodehelper_setup	vmlinux	EXPORT_SYMBOL
-0x5991219c	cancel_delayed_work	vmlinux	EXPORT_SYMBOL
-0x797c8fa9	cancel_delayed_work_sync	vmlinux	EXPORT_SYMBOL
-0x574acc3a	cdev_add	vmlinux	EXPORT_SYMBOL
-0x9da26ff5	cdev_alloc	vmlinux	EXPORT_SYMBOL
-0x61589057	cdev_del	vmlinux	EXPORT_SYMBOL
-0xfd11cfe9	cdev_init	vmlinux	EXPORT_SYMBOL
-0x44064b84	class_destroy	vmlinux	EXPORT_SYMBOL_GPL
-0x05a20f43	class_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xbab0b80d	clear_inode	vmlinux	EXPORT_SYMBOL
-0x1b83cecb	clear_nlink	vmlinux	EXPORT_SYMBOL
-0x602e32cc	clear_page_dirty_for_io	vmlinux	EXPORT_SYMBOL
-0x498c4425	complete	vmlinux	EXPORT_SYMBOL
-0xfb91066b	complete_and_exit	vmlinux	EXPORT_SYMBOL
-0x31212d9f	consume_skb	vmlinux	EXPORT_SYMBOL
-0x04927208	cpu_active_mask	vmlinux	EXPORT_SYMBOL
-0x119af014	cpu_bit_bitmap	vmlinux	EXPORT_SYMBOL_GPL
-0xbd100793	cpu_online_mask	vmlinux	EXPORT_SYMBOL
-0xb9249d16	cpu_possible_mask	vmlinux	EXPORT_SYMBOL
-0x341cbed2	cpu_present_mask	vmlinux	EXPORT_SYMBOL
-0xe588a711	crypto_alloc_base	vmlinux	EXPORT_SYMBOL_GPL
-0x999ece8f	crypto_destroy_tfm	vmlinux	EXPORT_SYMBOL_GPL
-0xacc5b5d2	csum_ipv6_magic	vmlinux	EXPORT_SYMBOL
-0xf73266dc	current_fs_time	vmlinux	EXPORT_SYMBOL
-0x34184afe	current_kernel_time	vmlinux	EXPORT_SYMBOL
-0x5e95b1cd	current_umask	vmlinux	EXPORT_SYMBOL
-0x12b2f77f	d_alloc	vmlinux	EXPORT_SYMBOL
-0x70819266	d_drop	vmlinux	EXPORT_SYMBOL
-0x45d42201	d_instantiate	vmlinux	EXPORT_SYMBOL
-0x8a2aa4f8	d_lookup	vmlinux	EXPORT_SYMBOL
-0x9d9cfc8a	d_make_root	vmlinux	EXPORT_SYMBOL
-0xef65b97a	d_obtain_alias	vmlinux	EXPORT_SYMBOL
-0x9ac0ca19	d_prune_aliases	vmlinux	EXPORT_SYMBOL
-0xef99a3d4	d_rehash	vmlinux	EXPORT_SYMBOL
-0xb377dae0	d_set_d_op	vmlinux	EXPORT_SYMBOL
-0x228417bc	debugfs_create_dir	vmlinux	EXPORT_SYMBOL_GPL
-0x688e3b5c	debugfs_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0xe4f37e2f	debugfs_create_u32	vmlinux	EXPORT_SYMBOL_GPL
-0x81ee9280	debugfs_remove	vmlinux	EXPORT_SYMBOL_GPL
-0xffd5a395	default_wake_function	vmlinux	EXPORT_SYMBOL
-0xa1b85fb4	del_gendisk	vmlinux	EXPORT_SYMBOL
-0xc996d097	del_timer	vmlinux	EXPORT_SYMBOL
-0xd5f2172f	del_timer_sync	vmlinux	EXPORT_SYMBOL
-0x6b06fdce	delayed_work_timer_fn	vmlinux	EXPORT_SYMBOL
-0x8c03d20c	destroy_workqueue	vmlinux	EXPORT_SYMBOL_GPL
-0x5ae2c3b5	dev_add_pack	vmlinux	EXPORT_SYMBOL
-0xf1e42d29	dev_addr_add	vmlinux	EXPORT_SYMBOL
-0x9d11b2ac	dev_addr_del	vmlinux	EXPORT_SYMBOL
-0xaad1d1e2	dev_close	vmlinux	EXPORT_SYMBOL
-0xc1491476	dev_err	vmlinux	EXPORT_SYMBOL
-0x758cea21	dev_get_by_index	vmlinux	EXPORT_SYMBOL
-0xa7dfdf7f	dev_get_by_name	vmlinux	EXPORT_SYMBOL
-0x394a7fd4	dev_get_drvdata	vmlinux	EXPORT_SYMBOL
-0xb6d781fe	dev_get_stats	vmlinux	EXPORT_SYMBOL
-0x8bf7112f	dev_kfree_skb_any	vmlinux	EXPORT_SYMBOL
-0xe8d63e47	dev_kfree_skb_irq	vmlinux	EXPORT_SYMBOL
-0xb402099e	dev_mc_add	vmlinux	EXPORT_SYMBOL
-0x243cbdfd	dev_mc_del	vmlinux	EXPORT_SYMBOL
-0x817a4580	dev_open	vmlinux	EXPORT_SYMBOL
-0x161fb4bf	dev_printk	vmlinux	EXPORT_SYMBOL
-0x53ec3f18	dev_queue_xmit	vmlinux	EXPORT_SYMBOL
-0xdab8b9c0	dev_remove_pack	vmlinux	EXPORT_SYMBOL
-0xd7b075ea	dev_set_allmulti	vmlinux	EXPORT_SYMBOL
-0x5e2c291d	dev_set_drvdata	vmlinux	EXPORT_SYMBOL
-0xe2909b44	dev_set_mac_address	vmlinux	EXPORT_SYMBOL
-0xf6ed79ed	dev_set_mtu	vmlinux	EXPORT_SYMBOL
-0x024709fa	dev_set_name	vmlinux	EXPORT_SYMBOL_GPL
-0xba69c3f7	dev_set_promiscuity	vmlinux	EXPORT_SYMBOL
-0x1567a003	dev_trans_start	vmlinux	EXPORT_SYMBOL
-0x637c1723	dev_warn	vmlinux	EXPORT_SYMBOL
-0x31aea7b3	device_create	vmlinux	EXPORT_SYMBOL_GPL
-0xc82815ef	device_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0x8ca329e3	device_del	vmlinux	EXPORT_SYMBOL_GPL
-0x9b96f588	device_destroy	vmlinux	EXPORT_SYMBOL_GPL
-0xc1029a77	device_register	vmlinux	EXPORT_SYMBOL_GPL
-0x8ca25a59	device_remove_file	vmlinux	EXPORT_SYMBOL_GPL
-0x1fe56764	device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x7f6f8a9f	dget_parent	vmlinux	EXPORT_SYMBOL
-0x3ce4ca6f	disable_irq	vmlinux	EXPORT_SYMBOL_GPL
-0x27bbf221	disable_irq_nosync	vmlinux	EXPORT_SYMBOL_GPL
-0x10734423	dma_set_mask	vmlinux	EXPORT_SYMBOL_GPL
-0x952664c5	do_exit	vmlinux	EXPORT_SYMBOL_GPL
-0x4f68e5c9	do_gettimeofday	vmlinux	EXPORT_SYMBOL
-0xd0c3f32d	down	vmlinux	EXPORT_SYMBOL
-0xae2a3f38	down_interruptible	vmlinux	EXPORT_SYMBOL
-0x424c5367	down_read	vmlinux	EXPORT_SYMBOL
-0x75d22842	down_read_trylock	vmlinux	EXPORT_SYMBOL
-0xf8c64aab	down_timeout	vmlinux	EXPORT_SYMBOL
-0xc7c4298d	down_trylock	vmlinux	EXPORT_SYMBOL
-0x59857b3b	down_write	vmlinux	EXPORT_SYMBOL
-0x4850ec10	down_write_trylock	vmlinux	EXPORT_SYMBOL
-0xe81d9af0	dquot_acquire	vmlinux	EXPORT_SYMBOL
-0x1c5ea262	dquot_alloc	vmlinux	EXPORT_SYMBOL
-0x8512076a	dquot_commit	vmlinux	EXPORT_SYMBOL
-0x2ec87960	dquot_commit_info	vmlinux	EXPORT_SYMBOL
-0x997523ea	dquot_destroy	vmlinux	EXPORT_SYMBOL
-0xa8dc318d	dquot_mark_dquot_dirty	vmlinux	EXPORT_SYMBOL
-0x26169ca0	dquot_release	vmlinux	EXPORT_SYMBOL
-0xe5585fb5	driver_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0xa98228bd	driver_register	vmlinux	EXPORT_SYMBOL_GPL
-0xf09ca875	driver_remove_file	vmlinux	EXPORT_SYMBOL_GPL
-0x123e3f03	driver_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x56bdfad0	dst_release	vmlinux	EXPORT_SYMBOL
-0x6b2dc060	dump_stack	vmlinux	EXPORT_SYMBOL
-0xde21c3d2	elevator_change	vmlinux	EXPORT_SYMBOL
-0xd0c05159	emergency_restart	vmlinux	EXPORT_SYMBOL_GPL
-0xfcec0987	enable_irq	vmlinux	EXPORT_SYMBOL_GPL
-0x473a42d9	end_page_writeback	vmlinux	EXPORT_SYMBOL
-0xa6a64bea	eth_change_mtu	vmlinux	EXPORT_SYMBOL
-0x9f04dbeb	eth_mac_addr	vmlinux	EXPORT_SYMBOL
-0xa3d532b7	eth_type_trans	vmlinux	EXPORT_SYMBOL
-0x8effd209	eth_validate_addr	vmlinux	EXPORT_SYMBOL
-0xa2aaca50	ether_setup	vmlinux	EXPORT_SYMBOL
-0x35b29aa0	ether_setup_rh	vmlinux	EXPORT_SYMBOL
-0x69c93da6	ethtool_op_get_link	vmlinux	EXPORT_SYMBOL
-0xf1e30d81	fc_attach_transport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x934e6f52	fc_change_queue_depth	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x45f69818	fc_exch_mgr_alloc	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x87f72860	fc_exch_mgr_free	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xf853add3	fc_exch_mgr_reset	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x5ad04179	fc_exch_recv	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x298563d1	fc_fabric_login	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x55847c54	fc_fabric_logoff	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x9509b39c	fc_get_host_port_state	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x1ff8a837	fc_lport_bsg_request	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x052f280a	fc_lport_config	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x6b76d812	fc_lport_destroy	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x411f007c	fc_release_transport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x87dde2f6	fc_remote_port_add	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xd9e78067	fc_remote_port_delete	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x286f3f00	fc_remote_port_rolechg	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xb5d8c0e0	fc_remove_host	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x37e2fe40	fc_set_mfs	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x917618c7	fc_vport_terminate	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x2b6f4489	fcoe_ctlr_destroy	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xc059ecb1	fcoe_ctlr_els_send	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x4672131a	fcoe_ctlr_init	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x85e90e41	fcoe_ctlr_link_down	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x7d51371e	fcoe_ctlr_link_up	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x9e405e74	fcoe_ctlr_recv	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xfde73ed9	fcoe_ctlr_recv_flogi	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x19b9bff6	fcoe_libfc_config	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL_GPL
-0xd965db2e	file_remove_privs	vmlinux	EXPORT_SYMBOL
-0x31a95283	file_update_time	vmlinux	EXPORT_SYMBOL
-0xa2527263	filemap_fault	vmlinux	EXPORT_SYMBOL
-0xe735301e	filemap_flush	vmlinux	EXPORT_SYMBOL
-0xa75c1326	filemap_write_and_wait	vmlinux	EXPORT_SYMBOL
-0xb3cb740f	filemap_write_and_wait_range	vmlinux	EXPORT_SYMBOL
-0xd1317002	filp_close	vmlinux	EXPORT_SYMBOL
-0x62343fe4	filp_open	vmlinux	EXPORT_SYMBOL
-0xd6285b82	find_get_page	vmlinux	EXPORT_SYMBOL
-0x0d8dcd7a	find_get_pages_tag	vmlinux	EXPORT_SYMBOL
-0x335da784	find_module	vmlinux	EXPORT_SYMBOL_GPL
-0x575a8217	find_or_create_page	vmlinux	EXPORT_SYMBOL
-0x158b62ed	find_vma	vmlinux	EXPORT_SYMBOL
-0x33acba39	find_vpid	vmlinux	EXPORT_SYMBOL_GPL
-0xd6d0d022	finish_no_open	vmlinux	EXPORT_SYMBOL
-0x39012c69	finish_open	vmlinux	EXPORT_SYMBOL
-0x267509e2	finish_wait	vmlinux	EXPORT_SYMBOL
-0x00801678	flush_scheduled_work	vmlinux	EXPORT_SYMBOL
-0x001eb4a4	flush_signals	vmlinux	EXPORT_SYMBOL
-0x42160169	flush_workqueue	vmlinux	EXPORT_SYMBOL_GPL
-0x99760466	fput	vmlinux	EXPORT_SYMBOL
-0xf20dabd8	free_irq	vmlinux	EXPORT_SYMBOL_GPL
-0x264f5ee8	free_netdev	vmlinux	EXPORT_SYMBOL
-0x4302d0eb	free_pages	vmlinux	EXPORT_SYMBOL
-0xc9ec4e21	free_percpu	vmlinux	EXPORT_SYMBOL_GPL
-0x229c4119	fs_bio_set	vmlinux	EXPORT_SYMBOL
-0x1f2729a1	fsync_bdev	vmlinux	EXPORT_SYMBOL
-0xc99c7a10	generic_delete_inode	vmlinux	EXPORT_SYMBOL
-0x81e21805	generic_file_aio_read	vmlinux	EXPORT_SYMBOL
-0x2ab25647	generic_file_aio_write	vmlinux	EXPORT_SYMBOL
-0xaf39bef7	generic_file_fsync	vmlinux	EXPORT_SYMBOL
-0x33b9a196	generic_file_llseek	vmlinux	EXPORT_SYMBOL
-0xec991b26	generic_file_open	vmlinux	EXPORT_SYMBOL
-0x9086feb3	generic_file_remap_pages	vmlinux	EXPORT_SYMBOL
-0x4b70073c	generic_fillattr	vmlinux	EXPORT_SYMBOL
-0x293c933d	generic_getxattr	vmlinux	EXPORT_SYMBOL
-0x6a446b0e	generic_make_request	vmlinux	EXPORT_SYMBOL
-0x3b8b7cd6	generic_read_dir	vmlinux	EXPORT_SYMBOL
-0x6faf039f	generic_removexattr	vmlinux	EXPORT_SYMBOL
-0xfe392bcd	generic_segment_checks	vmlinux	EXPORT_SYMBOL
-0xc9a82d6d	generic_setlease	vmlinux	EXPORT_SYMBOL
-0x5ef4b522	generic_setxattr	vmlinux	EXPORT_SYMBOL
-0x42a4954b	generic_write_checks	vmlinux	EXPORT_SYMBOL
-0xf41f7138	generic_write_end	vmlinux	EXPORT_SYMBOL
-0xe8565c20	genl_unregister_family	vmlinux	EXPORT_SYMBOL
-0xa40df390	genlmsg_put	vmlinux	EXPORT_SYMBOL
-0x67ea7707	get_device	vmlinux	EXPORT_SYMBOL_GPL
-0x79aa04a2	get_random_bytes	vmlinux	EXPORT_SYMBOL
-0x405c1144	get_seconds	vmlinux	EXPORT_SYMBOL
-0x59a3f347	get_task_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x8c609a6b	get_user_pages	vmlinux	EXPORT_SYMBOL
-0x9b388444	get_zeroed_page	vmlinux	EXPORT_SYMBOL
-0xa4a174e1	grab_cache_page_nowait	vmlinux	EXPORT_SYMBOL
-0x64d51e1e	grab_cache_page_write_begin	vmlinux	EXPORT_SYMBOL
-0x4cdca450	hrtimer_cancel	vmlinux	EXPORT_SYMBOL_GPL
-0xde6fd51f	hrtimer_forward	vmlinux	EXPORT_SYMBOL_GPL
-0x4c3c1b66	hrtimer_init	vmlinux	EXPORT_SYMBOL_GPL
-0xe4ba6b83	hrtimer_start	vmlinux	EXPORT_SYMBOL_GPL
-0xbbe8b848	icmpv6_send	vmlinux	EXPORT_SYMBOL
-0xd98f8907	iget5_locked	vmlinux	EXPORT_SYMBOL
-0x83b7f890	igrab	vmlinux	EXPORT_SYMBOL
-0xaccabc6a	in4_pton	vmlinux	EXPORT_SYMBOL
-0x1b6314fd	in_aton	vmlinux	EXPORT_SYMBOL
-0xdcaf8bdf	inc_zone_page_state	vmlinux	EXPORT_SYMBOL
-0xc9f522aa	inet_proto_csum_replace4	vmlinux	EXPORT_SYMBOL
-0xae80edb0	init_net	vmlinux	EXPORT_SYMBOL
-0xcbf388e3	init_special_inode	vmlinux	EXPORT_SYMBOL
-0x69e94571	init_task	vmlinux	EXPORT_SYMBOL
-0x0593a99b	init_timer_key	vmlinux	EXPORT_SYMBOL
-0xa724257f	init_uts_ns	vmlinux	EXPORT_SYMBOL_GPL
-0xa2a7356b	inode_init_once	vmlinux	EXPORT_SYMBOL
-0xf36d9b91	inode_newsize_ok	vmlinux	EXPORT_SYMBOL
-0x691b34ae	inode_owner_or_capable	vmlinux	EXPORT_SYMBOL
-0x8f7a7f74	invalidate_bdev	vmlinux	EXPORT_SYMBOL
-0x3a7a2e34	invalidate_inode_pages2_range	vmlinux	EXPORT_SYMBOL_GPL
-0xdf1f8572	invalidate_mapping_pages	vmlinux	EXPORT_SYMBOL
-0x2ec53334	invalidate_partition	vmlinux	EXPORT_SYMBOL
-0x93a6e0b2	io_schedule	vmlinux	EXPORT_SYMBOL
-0x01ea03a1	ioctl_by_bdev	vmlinux	EXPORT_SYMBOL
-0x69a358a6	iomem_resource	vmlinux	EXPORT_SYMBOL
-0xccabb7c3	ip6_route_output	vmlinux	EXPORT_SYMBOL
-0x1c80de9c	ip_send_check	vmlinux	EXPORT_SYMBOL
-0x31ca6b16	iput	vmlinux	EXPORT_SYMBOL
-0x70c7be5d	ipv6_dev_get_saddr	vmlinux	EXPORT_SYMBOL
-0x99591a7a	ipv6_ext_hdr	vmlinux	EXPORT_SYMBOL
-0xeb02d7ca	ipv6_skip_exthdr	vmlinux	EXPORT_SYMBOL
-0xded5d8e0	irq_stat	vmlinux	EXPORT_SYMBOL_GPL
-0x7d11c268	jiffies	vmlinux	EXPORT_SYMBOL
-0xe24d3a97	jiffies_64	vmlinux	EXPORT_SYMBOL
-0x37befc70	jiffies_to_msecs	vmlinux	EXPORT_SYMBOL
-0xd220cf8a	jiffies_to_timespec	vmlinux	EXPORT_SYMBOL
-0x1a0bb83e	kernel_bind	vmlinux	EXPORT_SYMBOL
-0x0d1d7cd4	kernel_getsockopt	vmlinux	EXPORT_SYMBOL
-0x3056dbf6	kernel_recvmsg	vmlinux	EXPORT_SYMBOL
-0xfe58d0cb	kernel_sendmsg	vmlinux	EXPORT_SYMBOL
-0x166953f2	kernel_setsockopt	vmlinux	EXPORT_SYMBOL
-0x29730b1d	kernel_sock_ioctl	vmlinux	EXPORT_SYMBOL
-0x2a5aa4b4	kernel_sock_shutdown	vmlinux	EXPORT_SYMBOL
-0x037a0cba	kfree	vmlinux	EXPORT_SYMBOL
-0x3023e459	kfree_put_link	vmlinux	EXPORT_SYMBOL
-0x0d665ccc	kfree_skb	vmlinux	EXPORT_SYMBOL
-0x35edebfa	kill_block_super	vmlinux	EXPORT_SYMBOL
-0x338dff33	kill_pgrp	vmlinux	EXPORT_SYMBOL
-0x413fd599	kill_pid	vmlinux	EXPORT_SYMBOL
-0x646af8b4	kmalloc_caches	vmlinux	EXPORT_SYMBOL
-0x4b5814ef	kmalloc_order_trace	vmlinux	EXPORT_SYMBOL
-0x36db8dea	kmem_cache_alloc	vmlinux	EXPORT_SYMBOL
-0x91fa4c17	kmem_cache_alloc_trace	vmlinux	EXPORT_SYMBOL
-0xac558eef	kmem_cache_create	vmlinux	EXPORT_SYMBOL
-0x15985615	kmem_cache_destroy	vmlinux	EXPORT_SYMBOL
-0x1bb30d14	kmem_cache_free	vmlinux	EXPORT_SYMBOL
-0x516cdf6c	kmem_cache_shrink	vmlinux	EXPORT_SYMBOL
-0x897ae0e8	kobject_get	vmlinux	EXPORT_SYMBOL
-0x42be15dc	kobject_put	vmlinux	EXPORT_SYMBOL
-0x1a6194fd	kobject_set_name	vmlinux	EXPORT_SYMBOL
-0x6feed552	kobject_uevent_env	vmlinux	EXPORT_SYMBOL_GPL
-0x059baffc	krealloc	vmlinux	EXPORT_SYMBOL
-0x1b17e06c	kstrtoll	vmlinux	EXPORT_SYMBOL
-0xdf6f51de	kthread_bind	vmlinux	EXPORT_SYMBOL
-0xb7488438	kthread_create_on_node	vmlinux	EXPORT_SYMBOL
-0xb3f7646e	kthread_should_stop	vmlinux	EXPORT_SYMBOL
-0xd82f223a	kthread_stop	vmlinux	EXPORT_SYMBOL
-0xc87c1f84	ktime_get	vmlinux	EXPORT_SYMBOL_GPL
-0x0521445b	list_del	vmlinux	EXPORT_SYMBOL
-0xbac9244d	ll_rw_block	vmlinux	EXPORT_SYMBOL
-0x3ff62317	local_bh_disable	vmlinux	EXPORT_SYMBOL
-0x0799aca4	local_bh_enable	vmlinux	EXPORT_SYMBOL
-0xec81bb7b	lock_sock_nested	vmlinux	EXPORT_SYMBOL
-0x58954f74	lookup_bdev	vmlinux	EXPORT_SYMBOL
-0xba497f13	loops_per_jiffy	vmlinux	EXPORT_SYMBOL
-0x3cff268a	mapping_tagged	vmlinux	EXPORT_SYMBOL
-0x82e4ac22	mark_page_accessed	vmlinux	EXPORT_SYMBOL
-0x3d2a2c01	mem_section	vmlinux	EXPORT_SYMBOL
-0x4dea1053	memchr	vmlinux	EXPORT_SYMBOL
-0x2fa5a500	memcmp	vmlinux	EXPORT_SYMBOL
-0x236c8c64	memcpy	vmlinux	EXPORT_SYMBOL
-0x5dbbe98e	memmove	vmlinux	EXPORT_SYMBOL
-0x189b6bac	memory_read_from_buffer	vmlinux	EXPORT_SYMBOL
-0x042b3758	mempool_alloc	vmlinux	EXPORT_SYMBOL
-0x183fa88b	mempool_alloc_slab	vmlinux	EXPORT_SYMBOL
-0x4557907d	mempool_create	vmlinux	EXPORT_SYMBOL
-0x7c55c249	mempool_destroy	vmlinux	EXPORT_SYMBOL
-0xb7a1a18c	mempool_free	vmlinux	EXPORT_SYMBOL
-0x8a99a016	mempool_free_slab	vmlinux	EXPORT_SYMBOL
-0xde0bdcff	memset	vmlinux	EXPORT_SYMBOL
-0x9ffc5035	misc_deregister	vmlinux	EXPORT_SYMBOL
-0x72fb1fa1	misc_register	vmlinux	EXPORT_SYMBOL
-0x56e5568a	mmput	vmlinux	EXPORT_SYMBOL_GPL
-0x8834396c	mod_timer	vmlinux	EXPORT_SYMBOL
-0x033edbda	module_layout	vmlinux	EXPORT_SYMBOL
-0x63a8c448	module_put	vmlinux	EXPORT_SYMBOL
-0xa93dab8a	module_refcount	vmlinux	EXPORT_SYMBOL
-0x3bd1b1f6	msecs_to_jiffies	vmlinux	EXPORT_SYMBOL
-0xf9a482f9	msleep	vmlinux	EXPORT_SYMBOL
-0x3b1a828c	mutex_lock	vmlinux	EXPORT_SYMBOL
-0xa866b6b5	mutex_trylock	vmlinux	EXPORT_SYMBOL
-0x76a57362	mutex_unlock	vmlinux	EXPORT_SYMBOL
-0x11173544	napi_complete	vmlinux	EXPORT_SYMBOL
-0x1bdb5ad4	napi_get_frags	vmlinux	EXPORT_SYMBOL
-0x31387761	napi_gro_frags	vmlinux	EXPORT_SYMBOL
-0x2ad2e15a	napi_gro_receive	vmlinux	EXPORT_SYMBOL
-0xa20ce1b8	net_msg_warn	vmlinux	EXPORT_SYMBOL
-0x6d2fc5a6	net_namespace_list	vmlinux	EXPORT_SYMBOL_GPL
-0xf6ebc03b	net_ratelimit	vmlinux	EXPORT_SYMBOL
-0x995e2d94	netdev_change_features	vmlinux	EXPORT_SYMBOL
-0x303970b0	netdev_features_change	vmlinux	EXPORT_SYMBOL
-0x0c58a8cd	netdev_increment_features	vmlinux	EXPORT_SYMBOL
-0xd111471b	netdev_master_upper_dev_get	vmlinux	EXPORT_SYMBOL
-0xcf9b5316	netdev_master_upper_dev_link	vmlinux	EXPORT_SYMBOL
-0x557464cc	netdev_rx_handler_register	vmlinux	EXPORT_SYMBOL_GPL
-0x3ff7a505	netdev_rx_handler_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x096f2493	netdev_update_features	vmlinux	EXPORT_SYMBOL
-0xbe455b65	netif_carrier_off	vmlinux	EXPORT_SYMBOL
-0xf5ff6921	netif_carrier_on	vmlinux	EXPORT_SYMBOL
-0x179ad980	netif_device_attach	vmlinux	EXPORT_SYMBOL
-0xf61d16c4	netif_device_detach	vmlinux	EXPORT_SYMBOL
-0x9fd02a36	netif_napi_add	vmlinux	EXPORT_SYMBOL
-0x48019357	netif_napi_del	vmlinux	EXPORT_SYMBOL
-0xd06daabf	netif_receive_skb	vmlinux	EXPORT_SYMBOL
-0xd18bca07	netif_rx	vmlinux	EXPORT_SYMBOL
-0x649db771	netif_rx_ni	vmlinux	EXPORT_SYMBOL
-0x6a193284	netif_set_real_num_tx_queues	vmlinux	EXPORT_SYMBOL
-0x40d9d55b	netif_tx_wake_queue	vmlinux	EXPORT_SYMBOL
-0xdce4e0ef	netlink_broadcast	vmlinux	EXPORT_SYMBOL
-0x1bd65564	netlink_unicast	vmlinux	EXPORT_SYMBOL
-0x01902adf	netpoll_trap	vmlinux	EXPORT_SYMBOL
-0x27dbc159	nf_register_hook	vmlinux	EXPORT_SYMBOL
-0xf1234187	nf_register_hooks	vmlinux	EXPORT_SYMBOL
-0x94729d2c	nf_unregister_hook	vmlinux	EXPORT_SYMBOL
-0x65e8aed2	nf_unregister_hooks	vmlinux	EXPORT_SYMBOL
-0xcd279169	nla_find	vmlinux	EXPORT_SYMBOL
-0xf1db1704	nla_memcpy	vmlinux	EXPORT_SYMBOL
-0x9b652f3e	nla_put	vmlinux	EXPORT_SYMBOL
-0xdd9ce37b	nla_reserve	vmlinux	EXPORT_SYMBOL
-0x2bdd6e28	node_states	vmlinux	EXPORT_SYMBOL
-0x6b8bfe90	noop_llseek	vmlinux	EXPORT_SYMBOL
-0xfe7c4287	nr_cpu_ids	vmlinux	EXPORT_SYMBOL
-0x0948cde9	num_physpages	vmlinux	EXPORT_SYMBOL
-0x5541ea93	on_each_cpu	vmlinux	EXPORT_SYMBOL
-0xd6e39a1e	pagevec_lookup	vmlinux	EXPORT_SYMBOL
-0x9244e903	pagevec_lookup_tag	vmlinux	EXPORT_SYMBOL
-0x7c1372e8	panic	vmlinux	EXPORT_SYMBOL
-0xa826046e	panic_notifier_list	vmlinux	EXPORT_SYMBOL
-0x4845c423	param_array_ops	vmlinux	EXPORT_SYMBOL
-0xa250c838	param_get_charp	vmlinux	EXPORT_SYMBOL
-0x253bdb78	param_get_int	vmlinux	EXPORT_SYMBOL
-0xab1d6cc1	param_get_long	vmlinux	EXPORT_SYMBOL
-0xe200d2d5	param_get_uint	vmlinux	EXPORT_SYMBOL
-0x03bd889d	param_get_ulong	vmlinux	EXPORT_SYMBOL
-0x1976aa06	param_ops_bool	vmlinux	EXPORT_SYMBOL
-0xadb5559d	param_ops_byte	vmlinux	EXPORT_SYMBOL
-0x35b6b772	param_ops_charp	vmlinux	EXPORT_SYMBOL
-0x15692c87	param_ops_int	vmlinux	EXPORT_SYMBOL
-0x4470a79b	param_ops_long	vmlinux	EXPORT_SYMBOL
-0xb2d307de	param_ops_short	vmlinux	EXPORT_SYMBOL
-0x4d405db8	param_ops_string	vmlinux	EXPORT_SYMBOL
-0x6d044c26	param_ops_uint	vmlinux	EXPORT_SYMBOL
-0xe5d95985	param_ops_ulong	vmlinux	EXPORT_SYMBOL
-0x6b7589f4	param_set_bool	vmlinux	EXPORT_SYMBOL
-0x62fd6207	param_set_charp	vmlinux	EXPORT_SYMBOL
-0x83c8a355	param_set_int	vmlinux	EXPORT_SYMBOL
-0x617643a2	param_set_long	vmlinux	EXPORT_SYMBOL
-0x8bfe8c57	param_set_uint	vmlinux	EXPORT_SYMBOL
-0x8f7014a1	param_set_ulong	vmlinux	EXPORT_SYMBOL
-0x2b8010c1	pci_bus_read_config_byte	vmlinux	EXPORT_SYMBOL
-0x6e5c51c5	pci_bus_read_config_dword	vmlinux	EXPORT_SYMBOL
-0x72e8a50b	pci_bus_read_config_word	vmlinux	EXPORT_SYMBOL
-0x0a8cc391	pci_bus_write_config_byte	vmlinux	EXPORT_SYMBOL
-0xac244640	pci_bus_write_config_dword	vmlinux	EXPORT_SYMBOL
-0x778438d3	pci_bus_write_config_word	vmlinux	EXPORT_SYMBOL
-0x74d8ca94	pci_clear_master	vmlinux	EXPORT_SYMBOL
-0x939ed8e1	pci_disable_device	vmlinux	EXPORT_SYMBOL
-0x44ff6687	pci_disable_msi	vmlinux	EXPORT_SYMBOL
-0x3fc7c194	pci_disable_msix	vmlinux	EXPORT_SYMBOL
-0xdb1a4ca4	pci_enable_device	vmlinux	EXPORT_SYMBOL
-0x60a2fbe9	pci_enable_msi_block	vmlinux	EXPORT_SYMBOL
-0x7774c595	pci_enable_msix	vmlinux	EXPORT_SYMBOL
-0x2cc20ef4	pci_find_capability	vmlinux	EXPORT_SYMBOL
-0xf0d9272f	pci_get_device	vmlinux	EXPORT_SYMBOL
-0xc0c5e0b1	pci_get_subsys	vmlinux	EXPORT_SYMBOL
-0x99349287	pci_iomap	vmlinux	EXPORT_SYMBOL_GPL
-0x7596ca5c	pci_iounmap	vmlinux	EXPORT_SYMBOL_GPL
-0x709ff0fb	pci_read_config_byte	vmlinux	EXPORT_SYMBOL
-0x84d3f349	pci_read_config_dword	vmlinux	EXPORT_SYMBOL
-0x80ae6d9f	pci_read_config_word	vmlinux	EXPORT_SYMBOL
-0x85d1e15a	pci_release_regions	vmlinux	EXPORT_SYMBOL
-0xacbf8ec5	pci_request_regions	vmlinux	EXPORT_SYMBOL
-0x8820828a	pci_set_master	vmlinux	EXPORT_SYMBOL
-0xfc1d8d47	pci_unregister_driver	vmlinux	EXPORT_SYMBOL
-0x64da3f81	pci_write_config_byte	vmlinux	EXPORT_SYMBOL
-0xe998fbb4	pci_write_config_dword	vmlinux	EXPORT_SYMBOL
-0xd76aac07	pci_write_config_word	vmlinux	EXPORT_SYMBOL
-0x49df521d	pid_task	vmlinux	EXPORT_SYMBOL
-0x7f3f7120	platform_device_add	vmlinux	EXPORT_SYMBOL_GPL
-0x81d4523e	platform_device_alloc	vmlinux	EXPORT_SYMBOL_GPL
-0x7fd53ac5	platform_device_put	vmlinux	EXPORT_SYMBOL_GPL
-0x12bd560c	platform_device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x07a92699	posix_lock_file	vmlinux	EXPORT_SYMBOL
-0x87ba380b	posix_test_lock	vmlinux	EXPORT_SYMBOL
-0x56945f39	prepare_to_wait	vmlinux	EXPORT_SYMBOL
-0xa89d4a50	prepare_to_wait_exclusive	vmlinux	EXPORT_SYMBOL
-0x27e1a049	printk	vmlinux	EXPORT_SYMBOL
-0xf8ca2b5a	proc_create_data	vmlinux	EXPORT_SYMBOL
-0xca03281c	proc_dointvec	vmlinux	EXPORT_SYMBOL
-0x2a3752a5	proc_dointvec_minmax	vmlinux	EXPORT_SYMBOL
-0xd1969cf5	proc_dostring	vmlinux	EXPORT_SYMBOL
-0xf969cfe0	proc_mkdir	vmlinux	EXPORT_SYMBOL
-0x535fe05f	proc_mkdir_mode	vmlinux	EXPORT_SYMBOL
-0x1071eaae	proc_remove	vmlinux	EXPORT_SYMBOL
-0xe024dcda	pskb_expand_head	vmlinux	EXPORT_SYMBOL
-0xacb6e29f	put_device	vmlinux	EXPORT_SYMBOL_GPL
-0x87c0b638	put_disk	vmlinux	EXPORT_SYMBOL
-0x5da0bf48	put_page	vmlinux	EXPORT_SYMBOL
-0xeeec26a7	queue_delayed_work_on	vmlinux	EXPORT_SYMBOL
-0x2e0d2f7f	queue_work_on	vmlinux	EXPORT_SYMBOL
-0x60a13e90	rcu_barrier	vmlinux	EXPORT_SYMBOL_GPL
-0x0499488a	read_cache_pages	vmlinux	EXPORT_SYMBOL
-0xfb6af58d	recalc_sigpending	vmlinux	EXPORT_SYMBOL
-0xc1e919a9	ref_module	vmlinux	EXPORT_SYMBOL_GPL
-0x71a50dbc	register_blkdev	vmlinux	EXPORT_SYMBOL
-0x60352082	register_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
-0xf68285c0	register_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
-0xbdc60b46	register_netdev	vmlinux	EXPORT_SYMBOL
-0xc8b47800	register_netdevice	vmlinux	EXPORT_SYMBOL
-0xd2da1048	register_netdevice_notifier	vmlinux	EXPORT_SYMBOL
-0x4761f17c	register_netevent_notifier	vmlinux	EXPORT_SYMBOL_GPL
-0xa1fef4ea	register_pernet_subsys	vmlinux	EXPORT_SYMBOL_GPL
-0x3517383e	register_reboot_notifier	vmlinux	EXPORT_SYMBOL
-0x63714b4d	register_sysctl_paths	vmlinux	EXPORT_SYMBOL
-0xdfba2704	release_sock	vmlinux	EXPORT_SYMBOL
-0xa979b162	remap_pfn_range	vmlinux	EXPORT_SYMBOL
-0xb98eaa18	remove_proc_entry	vmlinux	EXPORT_SYMBOL
-0xe04e3b6e	remove_wait_queue	vmlinux	EXPORT_SYMBOL
-0xdd30e292	revalidate_disk	vmlinux	EXPORT_SYMBOL
-0x49710e81	rh_kabi_7_2	vmlinux	EXPORT_SYMBOL_GPL
-0x017dcb44	root_device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x85670f1d	rtnl_is_locked	vmlinux	EXPORT_SYMBOL
-0xa14b09ab	rtnl_link_register	vmlinux	EXPORT_SYMBOL_GPL
-0xca977107	rtnl_link_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc7a4fbed	rtnl_lock	vmlinux	EXPORT_SYMBOL
-0xf4f14de6	rtnl_trylock	vmlinux	EXPORT_SYMBOL
-0x6e720ff2	rtnl_unlock	vmlinux	EXPORT_SYMBOL
-0x01000e51	schedule	vmlinux	EXPORT_SYMBOL
-0xd62c833f	schedule_timeout	vmlinux	EXPORT_SYMBOL
-0xf0993207	scsi_add_device	vmlinux	EXPORT_SYMBOL
-0x9b3d421c	scsi_add_host_with_dma	vmlinux	EXPORT_SYMBOL
-0x4b2557d5	scsi_adjust_queue_depth	vmlinux	EXPORT_SYMBOL
-0x0966f974	scsi_cmd_get_serial	vmlinux	EXPORT_SYMBOL
-0x7a5310b8	scsi_cmd_ioctl	vmlinux	EXPORT_SYMBOL
-0x0334da4e	scsi_command_size_tbl	vmlinux	EXPORT_SYMBOL
-0x7d2ba32f	scsi_device_get	vmlinux	EXPORT_SYMBOL
-0x9675e248	scsi_device_lookup	vmlinux	EXPORT_SYMBOL
-0x416bbf68	scsi_device_put	vmlinux	EXPORT_SYMBOL
-0x72ea7b2d	scsi_device_type	vmlinux	EXPORT_SYMBOL
-0x87b76218	scsi_dma_map	vmlinux	EXPORT_SYMBOL
-0xa2dc1950	scsi_dma_unmap	vmlinux	EXPORT_SYMBOL
-0x9de01092	scsi_execute	vmlinux	EXPORT_SYMBOL
-0x354e8b7b	scsi_host_alloc	vmlinux	EXPORT_SYMBOL
-0xb8d661af	scsi_host_lookup	vmlinux	EXPORT_SYMBOL
-0x55781169	scsi_host_put	vmlinux	EXPORT_SYMBOL
-0xb2eb8c07	scsi_host_set_state	vmlinux	EXPORT_SYMBOL
-0x72cfc3a3	scsi_is_fc_rport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xd518bca7	scsi_is_host_device	vmlinux	EXPORT_SYMBOL
-0x07986ae0	scsi_is_sdev_device	vmlinux	EXPORT_SYMBOL
-0x1563d925	scsi_register_driver	vmlinux	EXPORT_SYMBOL
-0x1fc68445	scsi_remove_device	vmlinux	EXPORT_SYMBOL
-0xd4d54c83	scsi_remove_host	vmlinux	EXPORT_SYMBOL
-0xe4a4dae3	scsi_reset_provider	vmlinux	EXPORT_SYMBOL
-0x7d049873	scsi_scan_host	vmlinux	EXPORT_SYMBOL
-0x52026cdf	security_sb_parse_opts_str	vmlinux	EXPORT_SYMBOL
-0x40ccc6e7	security_sb_set_mnt_opts	vmlinux	EXPORT_SYMBOL
-0x4a4f9101	send_sig	vmlinux	EXPORT_SYMBOL
-0x0335421a	send_sig_info	vmlinux	EXPORT_SYMBOL
-0x57114dba	seq_lseek	vmlinux	EXPORT_SYMBOL
-0x946cd9e3	seq_open	vmlinux	EXPORT_SYMBOL
-0x960b5c1e	seq_printf	vmlinux	EXPORT_SYMBOL
-0x7695d87f	seq_putc	vmlinux	EXPORT_SYMBOL
-0xa0ffd90b	seq_puts	vmlinux	EXPORT_SYMBOL
-0xbc4941ce	seq_read	vmlinux	EXPORT_SYMBOL
-0x147670c4	seq_release	vmlinux	EXPORT_SYMBOL
-0xe5a64092	seq_write	vmlinux	EXPORT_SYMBOL
-0x75eb23a7	set_blocksize	vmlinux	EXPORT_SYMBOL
-0xff9de629	set_cpus_allowed_ptr	vmlinux	EXPORT_SYMBOL_GPL
-0xad5b9670	set_device_ro	vmlinux	EXPORT_SYMBOL
-0x0355db5e	set_disk_ro	vmlinux	EXPORT_SYMBOL
-0x25c8152e	set_page_dirty	vmlinux	EXPORT_SYMBOL
-0x2d5528c9	sg_copy_to_buffer	vmlinux	EXPORT_SYMBOL
-0x3fec048f	sg_next	vmlinux	EXPORT_SYMBOL
-0x40c7247c	si_meminfo	vmlinux	EXPORT_SYMBOL
-0x0b742fd7	simple_strtol	vmlinux	EXPORT_SYMBOL
-0x20000329	simple_strtoul	vmlinux	EXPORT_SYMBOL
-0x61b7b126	simple_strtoull	vmlinux	EXPORT_SYMBOL
-0xcf67f900	single_open	vmlinux	EXPORT_SYMBOL
-0x7d2a55a0	single_release	vmlinux	EXPORT_SYMBOL
-0x8b64fcff	sk_alloc	vmlinux	EXPORT_SYMBOL
-0x241ce4bb	sk_free	vmlinux	EXPORT_SYMBOL
-0xe96f0c59	skb_checksum	vmlinux	EXPORT_SYMBOL
-0x2787b07e	skb_checksum_help	vmlinux	EXPORT_SYMBOL
-0x84e7f12a	skb_clone	vmlinux	EXPORT_SYMBOL
-0x2a871e72	skb_copy	vmlinux	EXPORT_SYMBOL
-0x75a0db5c	skb_copy_bits	vmlinux	EXPORT_SYMBOL
-0xe6a63949	skb_copy_datagram_iovec	vmlinux	EXPORT_SYMBOL
-0xed6c237b	skb_copy_expand	vmlinux	EXPORT_SYMBOL
-0xe6fb7bbc	skb_dequeue	vmlinux	EXPORT_SYMBOL
-0xceaf6fda	skb_dequeue_tail	vmlinux	EXPORT_SYMBOL
-0x1239ab93	skb_make_writable	vmlinux	EXPORT_SYMBOL
-0x5cae65ad	skb_pad	vmlinux	EXPORT_SYMBOL
-0x6121d287	skb_partial_csum_set	vmlinux	EXPORT_SYMBOL_GPL
-0xba95da65	skb_pull	vmlinux	EXPORT_SYMBOL
-0x9c094c97	skb_push	vmlinux	EXPORT_SYMBOL
-0xf8810135	skb_put	vmlinux	EXPORT_SYMBOL
-0x29a3b45c	skb_queue_head	vmlinux	EXPORT_SYMBOL
-0x16395671	skb_queue_purge	vmlinux	EXPORT_SYMBOL
-0x93639a58	skb_queue_tail	vmlinux	EXPORT_SYMBOL
-0x74f7f43b	skb_realloc_headroom	vmlinux	EXPORT_SYMBOL
-0x48ef7243	skb_recv_datagram	vmlinux	EXPORT_SYMBOL
-0x8c87c15d	skb_trim	vmlinux	EXPORT_SYMBOL
-0xf09af4cb	skb_tstamp_tx	vmlinux	EXPORT_SYMBOL_GPL
-0x919f647e	skb_unlink	vmlinux	EXPORT_SYMBOL
-0x6228c21f	smp_call_function_single	vmlinux	EXPORT_SYMBOL
-0x50720c5f	snprintf	vmlinux	EXPORT_SYMBOL
-0x1d75a30c	sock_alloc_send_skb	vmlinux	EXPORT_SYMBOL
-0x4bf2500f	sock_create_kern	vmlinux	EXPORT_SYMBOL
-0x97a7804b	sock_release	vmlinux	EXPORT_SYMBOL
-0x91715312	sprintf	vmlinux	EXPORT_SYMBOL
-0x20c55ae0	sscanf	vmlinux	EXPORT_SYMBOL
-0x4b18565b	static_key_slow_dec	vmlinux	EXPORT_SYMBOL_GPL
-0x9d9c3529	static_key_slow_inc	vmlinux	EXPORT_SYMBOL_GPL
-0xb4759adc	stop_machine	vmlinux	EXPORT_SYMBOL_GPL
-0xaafdc258	strcasecmp	vmlinux	EXPORT_SYMBOL
-0x061651be	strcat	vmlinux	EXPORT_SYMBOL
-0x349cba85	strchr	vmlinux	EXPORT_SYMBOL
-0xe2d5255a	strcmp	vmlinux	EXPORT_SYMBOL
-0xe914e41e	strcpy	vmlinux	EXPORT_SYMBOL
-0x672144bd	strlcpy	vmlinux	EXPORT_SYMBOL
-0x25ec1b28	strlen	vmlinux	EXPORT_SYMBOL
-0xebbf1dba	strncasecmp	vmlinux	EXPORT_SYMBOL
-0x7b5a7137	strncat	vmlinux	EXPORT_SYMBOL
-0x85abc85f	strncmp	vmlinux	EXPORT_SYMBOL
-0xad4aee39	strncpy	vmlinux	EXPORT_SYMBOL
-0x756e6992	strnicmp	vmlinux	EXPORT_SYMBOL
-0x9b8d07aa	strnlen	vmlinux	EXPORT_SYMBOL
-0x9f984513	strrchr	vmlinux	EXPORT_SYMBOL
-0x85df9b6c	strsep	vmlinux	EXPORT_SYMBOL
-0x1e6d26a8	strstr	vmlinux	EXPORT_SYMBOL
-0xc871bd8e	submit_bio	vmlinux	EXPORT_SYMBOL
-0xbe4b4f63	sync_blockdev	vmlinux	EXPORT_SYMBOL
-0x609f1c7e	synchronize_net	vmlinux	EXPORT_SYMBOL
-0xfe5d4bb2	sys_tz	vmlinux	EXPORT_SYMBOL
-0x2d3385d3	system_wq	vmlinux	EXPORT_SYMBOL
-0x6a6e306b	tag_pages_for_writeback	vmlinux	EXPORT_SYMBOL
-0x92a9c60c	time_to_tm	vmlinux	EXPORT_SYMBOL
-0x41dd6192	truncate_inode_pages	vmlinux	EXPORT_SYMBOL
-0x43618f20	truncate_inode_pages_final	vmlinux	EXPORT_SYMBOL
-0xe6b02ba1	truncate_pagecache	vmlinux	EXPORT_SYMBOL
-0x3926a455	try_module_get	vmlinux	EXPORT_SYMBOL
-0x4f88eeb8	unlock_page	vmlinux	EXPORT_SYMBOL
-0x5af28e8d	unmap_mapping_range	vmlinux	EXPORT_SYMBOL
-0xb5a459dc	unregister_blkdev	vmlinux	EXPORT_SYMBOL
-0x7485e15e	unregister_chrdev_region	vmlinux	EXPORT_SYMBOL
-0x2fe252cc	unregister_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
-0xfe029963	unregister_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
-0x45cd5e52	unregister_netdev	vmlinux	EXPORT_SYMBOL
-0x9d0d6206	unregister_netdevice_notifier	vmlinux	EXPORT_SYMBOL
-0x4d09d912	unregister_netdevice_queue	vmlinux	EXPORT_SYMBOL
-0x4fe1eddf	unregister_netevent_notifier	vmlinux	EXPORT_SYMBOL_GPL
-0x486b3ce6	unregister_pernet_subsys	vmlinux	EXPORT_SYMBOL_GPL
-0xac1a55be	unregister_reboot_notifier	vmlinux	EXPORT_SYMBOL
-0xc50bab05	unregister_shrinker	vmlinux	EXPORT_SYMBOL
-0x95be7da8	unregister_sysctl_table	vmlinux	EXPORT_SYMBOL
-0xf39e1d27	unuse_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x4060ef4d	up	vmlinux	EXPORT_SYMBOL
-0x6bcea52e	up_read	vmlinux	EXPORT_SYMBOL
-0x56ac00f9	up_write	vmlinux	EXPORT_SYMBOL
-0x2de8127e	use_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x12a38747	usleep_range	vmlinux	EXPORT_SYMBOL
-0x999e8297	vfree	vmlinux	EXPORT_SYMBOL
-0x29f02a7d	vfs_fsync_range	vmlinux	EXPORT_SYMBOL
-0x4b01b856	vfs_mknod	vmlinux	EXPORT_SYMBOL
-0xaeb36d44	vfs_unlink	vmlinux	EXPORT_SYMBOL
-0xceb8f361	vlan_dev_real_dev	vmlinux	EXPORT_SYMBOL
-0x75714755	vlan_dev_vlan_id	vmlinux	EXPORT_SYMBOL
-0x40afbbad	vm_insert_pfn	vmlinux	EXPORT_SYMBOL
-0xbe7a440e	vm_mmap	vmlinux	EXPORT_SYMBOL
-0x29391e7d	vm_munmap	vmlinux	EXPORT_SYMBOL
-0x14ccd79f	vm_stat	vmlinux	EXPORT_SYMBOL
-0xd6ee688f	vmalloc	vmlinux	EXPORT_SYMBOL
-0xa0b04675	vmalloc_32	vmlinux	EXPORT_SYMBOL
-0x4333cea3	vmalloc_to_page	vmlinux	EXPORT_SYMBOL
-0x5635a60a	vmalloc_user	vmlinux	EXPORT_SYMBOL
-0x07ea18ee	vmap	vmlinux	EXPORT_SYMBOL
-0xbf8ba54a	vprintk	vmlinux	EXPORT_SYMBOL
-0xca4c923d	vscnprintf	vmlinux	EXPORT_SYMBOL
-0x10f2eb76	vsnprintf	vmlinux	EXPORT_SYMBOL
-0x2482e688	vsprintf	vmlinux	EXPORT_SYMBOL
-0x94961283	vunmap	vmlinux	EXPORT_SYMBOL
-0xaedec4c0	wait_for_completion	vmlinux	EXPORT_SYMBOL
-0x8cc0f5da	wait_for_completion_interruptible_timeout	vmlinux	EXPORT_SYMBOL
-0x507fd4fe	wait_for_completion_timeout	vmlinux	EXPORT_SYMBOL
-0x5370dbf9	wait_on_page_bit	vmlinux	EXPORT_SYMBOL
-0x4e29a571	wait_on_sync_kiocb	vmlinux	EXPORT_SYMBOL
-0xff02a40a	wake_up_process	vmlinux	EXPORT_SYMBOL
-0x32d0ebd9	xt_register_targets	vmlinux	EXPORT_SYMBOL
-0xe6799ce3	xt_unregister_targets	vmlinux	EXPORT_SYMBOL
-0x760a0f4f	yield	vmlinux	EXPORT_SYMBOL
-0x793890a5	zap_vma_ptes	vmlinux	EXPORT_SYMBOL_GPL
-0xf2c43f3f	zlib_deflate	lib/zlib_deflate/zlib_deflate	EXPORT_SYMBOL
-0xc890c008	zlib_deflateEnd	lib/zlib_deflate/zlib_deflate	EXPORT_SYMBOL
-0x5a0b73d0	zlib_deflateInit2	lib/zlib_deflate/zlib_deflate	EXPORT_SYMBOL
-0xe9f7149c	zlib_deflate_workspacesize	lib/zlib_deflate/zlib_deflate	EXPORT_SYMBOL
-0x581f98da	zlib_inflate	vmlinux	EXPORT_SYMBOL
-0x107e5878	zlib_inflateEnd	vmlinux	EXPORT_SYMBOL
-0x35a88f28	zlib_inflateInit2	vmlinux	EXPORT_SYMBOL
-0xce5ac24f	zlib_inflate_workspacesize	vmlinux	EXPORT_SYMBOL
diff --git a/kernel-source/thirdparty/SOURCES/Module.kabi_x86_64 b/kernel-source/thirdparty/SOURCES/Module.kabi_x86_64
deleted file mode 100644
index b194fd2..0000000
--- a/kernel-source/thirdparty/SOURCES/Module.kabi_x86_64
+++ /dev/null
@@ -1,903 +0,0 @@
-0x93956063	___pskb_trim	vmlinux	EXPORT_SYMBOL
-0x8616cca3	__alloc_pages_nodemask	vmlinux	EXPORT_SYMBOL
-0x949f7342	__alloc_percpu	vmlinux	EXPORT_SYMBOL_GPL
-0xaf3f0d3e	__alloc_skb	vmlinux	EXPORT_SYMBOL
-0x43a53735	__alloc_workqueue_key	vmlinux	EXPORT_SYMBOL_GPL
-0x6b1b67d3	__bdevname	vmlinux	EXPORT_SYMBOL
-0x9e9f1714	__bitmap_andnot	vmlinux	EXPORT_SYMBOL
-0x6d27ef64	__bitmap_empty	vmlinux	EXPORT_SYMBOL
-0xc256e762	__bitmap_equal	vmlinux	EXPORT_SYMBOL
-0xea10655a	__bitmap_intersects	vmlinux	EXPORT_SYMBOL
-0x4df119fa	__bitmap_parse	vmlinux	EXPORT_SYMBOL
-0x4a358252	__bitmap_subset	vmlinux	EXPORT_SYMBOL
-0x4cbbd171	__bitmap_weight	vmlinux	EXPORT_SYMBOL
-0x2d5e143b	__blk_end_request	vmlinux	EXPORT_SYMBOL
-0xa1d7c7fc	__blk_put_request	vmlinux	EXPORT_SYMBOL_GPL
-0x9aba54e3	__blockdev_direct_IO	vmlinux	EXPORT_SYMBOL
-0xa8a6f639	__check_region	vmlinux	EXPORT_SYMBOL
-0x7e5df8e3	__class_create	vmlinux	EXPORT_SYMBOL_GPL
-0x856eabb1	__class_register	vmlinux	EXPORT_SYMBOL_GPL
-0xeae3dfd6	__const_udelay	vmlinux	EXPORT_SYMBOL
-0x466c14a7	__delay	vmlinux	EXPORT_SYMBOL
-0x7c766a18	__dev_get_by_index	vmlinux	EXPORT_SYMBOL
-0x0c5225d5	__dev_get_by_name	vmlinux	EXPORT_SYMBOL
-0xc140ad72	__dynamic_dev_dbg	vmlinux	EXPORT_SYMBOL
-0xf68eeca4	__ethtool_get_settings	vmlinux	EXPORT_SYMBOL
-0xbdfb6dbb	__fentry__	vmlinux	EXPORT_SYMBOL
-0xd7e66815	__first_cpu	vmlinux	EXPORT_SYMBOL
-0x6abf21e5	__generic_file_aio_write	vmlinux	EXPORT_SYMBOL
-0xcc1d296d	__genl_register_family	vmlinux	EXPORT_SYMBOL
-0x93fca811	__get_free_pages	vmlinux	EXPORT_SYMBOL
-0xadd2aceb	__get_page_tail	vmlinux	EXPORT_SYMBOL
-0x8f9c199c	__get_user_2	vmlinux	EXPORT_SYMBOL
-0x6729d3df	__get_user_4	vmlinux	EXPORT_SYMBOL
-0x2a6e6109	__init_rwsem	vmlinux	EXPORT_SYMBOL
-0xf432dd3d	__init_waitqueue_head	vmlinux	EXPORT_SYMBOL
-0x257ee9ad	__insert_inode_hash	vmlinux	EXPORT_SYMBOL
-0x0d542439	__ipv6_addr_type	vmlinux	EXPORT_SYMBOL
-0xd2b09ce5	__kmalloc	vmlinux	EXPORT_SYMBOL
-0x0343a1a8	__list_add	vmlinux	EXPORT_SYMBOL
-0x1e579dc5	__list_add_rcu	vmlinux	EXPORT_SYMBOL
-0x65e75cb6	__list_del_entry	vmlinux	EXPORT_SYMBOL
-0xd488791e	__lock_page	vmlinux	EXPORT_SYMBOL
-0x69c74a2b	__mark_inode_dirty	vmlinux	EXPORT_SYMBOL
-0xa3b50673	__mmdrop	vmlinux	EXPORT_SYMBOL_GPL
-0x7c4806d4	__mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
-0x20c05d48	__module_get	vmlinux	EXPORT_SYMBOL
-0x9a025cd5	__mutex_init	vmlinux	EXPORT_SYMBOL
-0x4cb571dc	__napi_complete	vmlinux	EXPORT_SYMBOL
-0xd17f4c5b	__napi_schedule	vmlinux	EXPORT_SYMBOL
-0xdf8c695a	__ndelay	vmlinux	EXPORT_SYMBOL
-0x2475ff29	__netdev_alloc_skb	vmlinux	EXPORT_SYMBOL
-0xc4bff15e	__netif_schedule	vmlinux	EXPORT_SYMBOL
-0xe9832541	__next_cpu	vmlinux	EXPORT_SYMBOL
-0xbba6f82e	__next_cpu_nr	vmlinux	EXPORT_SYMBOL
-0xfa31c478	__nlmsg_put	vmlinux	EXPORT_SYMBOL
-0x46c47fb6	__node_distance	vmlinux	EXPORT_SYMBOL
-0x3f614336	__pagevec_release	vmlinux	EXPORT_SYMBOL
-0x99487493	__pci_register_driver	vmlinux	EXPORT_SYMBOL
-0x0d94cc09	__per_cpu_offset	vmlinux	EXPORT_SYMBOL
-0xe0dbd0e4	__pskb_pull_tail	vmlinux	EXPORT_SYMBOL
-0x5a4896a8	__put_user_2	vmlinux	EXPORT_SYMBOL
-0xb8e7ce2c	__put_user_8	vmlinux	EXPORT_SYMBOL
-0x551bd071	__rb_erase_color	vmlinux	EXPORT_SYMBOL
-0x120b336a	__rb_insert_augmented	vmlinux	EXPORT_SYMBOL
-0x0c816cb3	__register_chrdev	vmlinux	EXPORT_SYMBOL
-0x88b04e39	__register_nmi_handler	vmlinux	EXPORT_SYMBOL
-0x7c61340c	__release_region	vmlinux	EXPORT_SYMBOL
-0x402b8281	__request_module	vmlinux	EXPORT_SYMBOL
-0x1fedf0f4	__request_region	vmlinux	EXPORT_SYMBOL
-0x934ffc58	__root_device_register	vmlinux	EXPORT_SYMBOL_GPL
-0xb45a14de	__set_page_dirty_nobuffers	vmlinux	EXPORT_SYMBOL
-0xd3b86558	__skb_checksum_complete	vmlinux	EXPORT_SYMBOL
-0xb0dc2829	__skb_get_hash	vmlinux	EXPORT_SYMBOL
-0x18b3d404	__skb_gso_segment	vmlinux	EXPORT_SYMBOL
-0xf0fdf6cb	__stack_chk_fail	vmlinux	EXPORT_SYMBOL
-0x868784cb	__symbol_get	vmlinux	EXPORT_SYMBOL_GPL
-0x6e9dd606	__symbol_put	vmlinux	EXPORT_SYMBOL
-0xbd8bce19	__task_pid_nr_ns	vmlinux	EXPORT_SYMBOL
-0xcc2d3792	__test_set_page_writeback	vmlinux	EXPORT_SYMBOL
-0xa3fc3d50	__tracepoint_module_get	vmlinux	EXPORT_SYMBOL
-0x9e7d6bd0	__udelay	vmlinux	EXPORT_SYMBOL
-0x6bc3fbc0	__unregister_chrdev	vmlinux	EXPORT_SYMBOL
-0xa9bd2676	__vmalloc	vmlinux	EXPORT_SYMBOL
-0xcf21d241	__wake_up	vmlinux	EXPORT_SYMBOL
-0x263ed23b	__x86_indirect_thunk_r12	vmlinux	EXPORT_SYMBOL
-0x2ea2c95c	__x86_indirect_thunk_rax	vmlinux	EXPORT_SYMBOL
-0xa1c76e0a	_cond_resched	vmlinux	EXPORT_SYMBOL
-0x077e2f33	_copy_from_user	vmlinux	EXPORT_SYMBOL
-0x71de9b3f	_copy_to_user	vmlinux	EXPORT_SYMBOL
-0x4cce8b07	_dev_info	vmlinux	EXPORT_SYMBOL
-0x4b7dcf38	_raw_qspin_lock	vmlinux	EXPORT_SYMBOL
-0x3588d8ba	_raw_qspin_lock_irq	vmlinux	EXPORT_SYMBOL
-0x9b0c8220	_raw_read_lock	vmlinux	EXPORT_SYMBOL
-0xa5a99b49	_raw_read_lock_bh	vmlinux	EXPORT_SYMBOL
-0xdeadeb5c	_raw_read_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0xbded85d0	_raw_read_unlock_bh	vmlinux	EXPORT_SYMBOL
-0x2f8a2bd4	_raw_read_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0xd52bf1ce	_raw_spin_lock	vmlinux	EXPORT_SYMBOL
-0x1637ff0f	_raw_spin_lock_bh	vmlinux	EXPORT_SYMBOL
-0x43261dca	_raw_spin_lock_irq	vmlinux	EXPORT_SYMBOL
-0x9327f5ce	_raw_spin_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0xe15f42bb	_raw_spin_trylock	vmlinux	EXPORT_SYMBOL
-0xda3e43d1	_raw_spin_unlock	vmlinux	EXPORT_SYMBOL
-0xba63339c	_raw_spin_unlock_bh	vmlinux	EXPORT_SYMBOL
-0x08f64aa4	_raw_spin_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0x13a1a61a	_raw_write_lock	vmlinux	EXPORT_SYMBOL
-0xd5dac574	_raw_write_lock_bh	vmlinux	EXPORT_SYMBOL
-0xa3a9637d	_raw_write_lock_irq	vmlinux	EXPORT_SYMBOL
-0x05f837f0	_raw_write_lock_irqsave	vmlinux	EXPORT_SYMBOL
-0x5bd6c1ee	_raw_write_unlock_bh	vmlinux	EXPORT_SYMBOL
-0xcf65df50	_raw_write_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
-0x78bb3e24	abort_exclusive_wait	vmlinux	EXPORT_SYMBOL
-0x1a45cb6c	acpi_disabled	vmlinux	EXPORT_SYMBOL
-0x691001b5	acpi_evaluate_integer	vmlinux	EXPORT_SYMBOL
-0x44a81d5f	acpi_evaluate_object	vmlinux	EXPORT_SYMBOL
-0xdf0da3cc	acpi_get_devices	vmlinux	EXPORT_SYMBOL
-0x2bfeb410	acpi_get_handle	vmlinux	EXPORT_SYMBOL
-0x81472677	acpi_get_table	vmlinux	EXPORT_SYMBOL
-0xbc28fd2e	add_disk	vmlinux	EXPORT_SYMBOL
-0xbe2c0274	add_timer	vmlinux	EXPORT_SYMBOL
-0x5860aad4	add_wait_queue	vmlinux	EXPORT_SYMBOL
-0xee46885d	add_wait_queue_exclusive	vmlinux	EXPORT_SYMBOL
-0xf713bbef	aio_complete	vmlinux	EXPORT_SYMBOL
-0x29537c9e	alloc_chrdev_region	vmlinux	EXPORT_SYMBOL
-0x7959fc3f	alloc_disk	vmlinux	EXPORT_SYMBOL
-0x906ac89f	alloc_etherdev_mqs	vmlinux	EXPORT_SYMBOL
-0xf6122d1b	alloc_netdev_mqs	vmlinux	EXPORT_SYMBOL
-0x434693dd	alloc_pages_current	vmlinux	EXPORT_SYMBOL
-0xd79b5a02	allow_signal	vmlinux	EXPORT_SYMBOL
-0x512101d1	apic	vmlinux	EXPORT_SYMBOL_GPL
-0xa2c1743d	arp_create	vmlinux	EXPORT_SYMBOL
-0xa43f92a3	arp_send	vmlinux	EXPORT_SYMBOL
-0xc7d79ebf	arp_xmit	vmlinux	EXPORT_SYMBOL
-0xcc85fcb6	async_schedule	vmlinux	EXPORT_SYMBOL_GPL
-0x500b6dd7	atomic_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
-0x758a3812	atomic_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc8b57c27	autoremove_wake_function	vmlinux	EXPORT_SYMBOL
-0x4eeafb66	balance_dirty_pages_ratelimited	vmlinux	EXPORT_SYMBOL
-0x8f619a88	bdevname	vmlinux	EXPORT_SYMBOL
-0x28423f49	bdget	vmlinux	EXPORT_SYMBOL
-0x9f249c9a	bdget_disk	vmlinux	EXPORT_SYMBOL
-0x669a7116	bdi_destroy	vmlinux	EXPORT_SYMBOL
-0x0fc60b55	bdi_init	vmlinux	EXPORT_SYMBOL
-0x4661b648	bdi_register_dev	vmlinux	EXPORT_SYMBOL
-0x9e77e005	bdi_unregister	vmlinux	EXPORT_SYMBOL
-0xc041d114	bdput	vmlinux	EXPORT_SYMBOL
-0x4554b079	bio_add_page	vmlinux	EXPORT_SYMBOL
-0xeb862489	bio_alloc_bioset	vmlinux	EXPORT_SYMBOL
-0x7502c520	bio_clone_bioset	vmlinux	EXPORT_SYMBOL
-0xdd5fbc2b	bio_endio	vmlinux	EXPORT_SYMBOL
-0x37be9f32	bio_get_nr_vecs	vmlinux	EXPORT_SYMBOL
-0x07eadc08	bio_init	vmlinux	EXPORT_SYMBOL
-0x867c68af	bio_put	vmlinux	EXPORT_SYMBOL
-0x1b57183e	bioset_create	vmlinux	EXPORT_SYMBOL
-0x8f49a246	bioset_free	vmlinux	EXPORT_SYMBOL
-0x8251bcc3	bitmap_release_region	vmlinux	EXPORT_SYMBOL
-0xddc65021	blk_alloc_queue	vmlinux	EXPORT_SYMBOL
-0x61762346	blk_cleanup_queue	vmlinux	EXPORT_SYMBOL
-0xe0085c2a	blk_end_request	vmlinux	EXPORT_SYMBOL
-0xd6cb6349	blk_end_request_all	vmlinux	EXPORT_SYMBOL
-0x1fb99830	blk_execute_rq	vmlinux	EXPORT_SYMBOL
-0x87526260	blk_execute_rq_nowait	vmlinux	EXPORT_SYMBOL_GPL
-0x605420f9	blk_fetch_request	vmlinux	EXPORT_SYMBOL
-0x0ce900af	blk_finish_plug	vmlinux	EXPORT_SYMBOL
-0xb39698d5	blk_get_backing_dev_info	vmlinux	EXPORT_SYMBOL
-0xb25b6ec8	blk_get_queue	vmlinux	EXPORT_SYMBOL
-0xadcd0a77	blk_get_request	vmlinux	EXPORT_SYMBOL
-0x84daafd0	blk_init_queue	vmlinux	EXPORT_SYMBOL
-0x124af3bf	blk_limits_io_min	vmlinux	EXPORT_SYMBOL
-0x7c922190	blk_limits_io_opt	vmlinux	EXPORT_SYMBOL
-0x449b3dbe	blk_make_request	vmlinux	EXPORT_SYMBOL
-0x23b5ba4e	blk_mq_unique_tag	vmlinux	EXPORT_SYMBOL
-0xb0c277ee	blk_put_queue	vmlinux	EXPORT_SYMBOL
-0x62e8ba3a	blk_put_request	vmlinux	EXPORT_SYMBOL
-0x4061b663	blk_queue_bounce	vmlinux	EXPORT_SYMBOL
-0x7c56c563	blk_queue_bounce_limit	vmlinux	EXPORT_SYMBOL
-0x0f130a5e	blk_queue_dma_alignment	vmlinux	EXPORT_SYMBOL
-0x95deb73f	blk_queue_end_tag	vmlinux	EXPORT_SYMBOL
-0x2a3e5d36	blk_queue_flush	vmlinux	EXPORT_SYMBOL_GPL
-0x294f285c	blk_queue_init_tags	vmlinux	EXPORT_SYMBOL
-0x177c57ca	blk_queue_logical_block_size	vmlinux	EXPORT_SYMBOL
-0x55610108	blk_queue_make_request	vmlinux	EXPORT_SYMBOL
-0xbd275110	blk_queue_max_discard_sectors	vmlinux	EXPORT_SYMBOL
-0x5ef68d5c	blk_queue_max_hw_sectors	vmlinux	EXPORT_SYMBOL
-0xbe0a2f77	blk_queue_max_segments	vmlinux	EXPORT_SYMBOL
-0x156cc590	blk_queue_merge_bvec	vmlinux	EXPORT_SYMBOL
-0x34002e66	blk_queue_rq_timed_out	vmlinux	EXPORT_SYMBOL_GPL
-0xeedc4654	blk_queue_segment_boundary	vmlinux	EXPORT_SYMBOL
-0x7cb14f79	blk_queue_softirq_done	vmlinux	EXPORT_SYMBOL
-0x8cf1dab2	blk_queue_stack_limits	vmlinux	EXPORT_SYMBOL
-0xe2d8d565	blk_rq_init	vmlinux	EXPORT_SYMBOL
-0x884a0d1a	blk_rq_map_kern	vmlinux	EXPORT_SYMBOL
-0x925520d2	blk_start_plug	vmlinux	EXPORT_SYMBOL
-0x149a3e2d	blk_start_queue	vmlinux	EXPORT_SYMBOL
-0x24e6fc92	blk_stop_queue	vmlinux	EXPORT_SYMBOL
-0xff6fcdb5	blk_sync_queue	vmlinux	EXPORT_SYMBOL
-0xad3e6d7f	blkdev_get	vmlinux	EXPORT_SYMBOL
-0x8c1cc22d	blkdev_get_by_dev	vmlinux	EXPORT_SYMBOL
-0x6f3b39e8	blkdev_get_by_path	vmlinux	EXPORT_SYMBOL
-0x9a0d63fa	blkdev_issue_discard	vmlinux	EXPORT_SYMBOL
-0x1a86fdbf	blkdev_put	vmlinux	EXPORT_SYMBOL
-0x564be946	block_write_begin	vmlinux	EXPORT_SYMBOL
-0x978c969f	block_write_full_page	vmlinux	EXPORT_SYMBOL
-0x45449b56	boot_cpu_data	vmlinux	EXPORT_SYMBOL
-0xfd6293c2	boot_tvec_bases	vmlinux	EXPORT_SYMBOL
-0xc3d55f5c	bus_register	vmlinux	EXPORT_SYMBOL_GPL
-0x5b2835a8	bus_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xa75312bc	call_rcu_sched	vmlinux	EXPORT_SYMBOL_GPL
-0xc5fdef94	call_usermodehelper	vmlinux	EXPORT_SYMBOL
-0xe85b5e75	call_usermodehelper_exec	vmlinux	EXPORT_SYMBOL
-0xe63031e1	call_usermodehelper_setup	vmlinux	EXPORT_SYMBOL
-0x5991219c	cancel_delayed_work	vmlinux	EXPORT_SYMBOL
-0x797c8fa9	cancel_delayed_work_sync	vmlinux	EXPORT_SYMBOL
-0x5f675a65	cdev_add	vmlinux	EXPORT_SYMBOL
-0x798d5ca6	cdev_alloc	vmlinux	EXPORT_SYMBOL
-0x3fa89e8f	cdev_del	vmlinux	EXPORT_SYMBOL
-0xdacd8618	cdev_init	vmlinux	EXPORT_SYMBOL
-0x0450c190	class_destroy	vmlinux	EXPORT_SYMBOL_GPL
-0xc554721a	class_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x913c50e8	clear_inode	vmlinux	EXPORT_SYMBOL
-0x473b7306	clear_nlink	vmlinux	EXPORT_SYMBOL
-0x2e1a09e1	clear_page_dirty_for_io	vmlinux	EXPORT_SYMBOL
-0x7da99cdd	clear_user	vmlinux	EXPORT_SYMBOL
-0x4b06d2e7	complete	vmlinux	EXPORT_SYMBOL
-0x40256835	complete_all	vmlinux	EXPORT_SYMBOL
-0x5aeb145f	complete_and_exit	vmlinux	EXPORT_SYMBOL
-0x95baac39	consume_skb	vmlinux	EXPORT_SYMBOL
-0x33b84f74	copy_page	vmlinux	EXPORT_SYMBOL
-0xe5772d4a	copy_user_generic_string	vmlinux	EXPORT_SYMBOL
-0xdcc3a419	copy_user_generic_unrolled	vmlinux	EXPORT_SYMBOL
-0x2a86f131	cpu_active_mask	vmlinux	EXPORT_SYMBOL
-0x8b850a78	cpu_bit_bitmap	vmlinux	EXPORT_SYMBOL_GPL
-0x8b2b14ad	cpu_info	vmlinux	EXPORT_SYMBOL
-0xd6b33026	cpu_khz	vmlinux	EXPORT_SYMBOL
-0x54efb5d6	cpu_number	vmlinux	EXPORT_SYMBOL
-0x930484aa	cpu_online_mask	vmlinux	EXPORT_SYMBOL
-0xc311ec22	cpu_possible_mask	vmlinux	EXPORT_SYMBOL
-0x6b372259	cpu_present_mask	vmlinux	EXPORT_SYMBOL
-0x469ea33e	cpu_sibling_map	vmlinux	EXPORT_SYMBOL
-0x0e388bca	crypto_alloc_base	vmlinux	EXPORT_SYMBOL_GPL
-0x8f944a92	crypto_destroy_tfm	vmlinux	EXPORT_SYMBOL_GPL
-0x27c33efe	csum_ipv6_magic	vmlinux	EXPORT_SYMBOL
-0xe113bbbc	csum_partial	vmlinux	EXPORT_SYMBOL
-0xafbf00ce	current_fs_time	vmlinux	EXPORT_SYMBOL
-0x34184afe	current_kernel_time	vmlinux	EXPORT_SYMBOL
-0xb8c7ff88	current_task	vmlinux	EXPORT_SYMBOL
-0x5e95b1cd	current_umask	vmlinux	EXPORT_SYMBOL
-0x6fd8a0cd	d_alloc	vmlinux	EXPORT_SYMBOL
-0xf83fbf40	d_drop	vmlinux	EXPORT_SYMBOL
-0xa1501aec	d_instantiate	vmlinux	EXPORT_SYMBOL
-0x669cd593	d_lookup	vmlinux	EXPORT_SYMBOL
-0x46af2b76	d_make_root	vmlinux	EXPORT_SYMBOL
-0x221201db	d_obtain_alias	vmlinux	EXPORT_SYMBOL
-0x2ffd976e	d_prune_aliases	vmlinux	EXPORT_SYMBOL
-0x4dca5a4f	d_rehash	vmlinux	EXPORT_SYMBOL
-0x20e629ac	d_set_d_op	vmlinux	EXPORT_SYMBOL
-0x9f13414d	debugfs_create_dir	vmlinux	EXPORT_SYMBOL_GPL
-0xae9bb4d4	debugfs_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0x01d45035	debugfs_create_u32	vmlinux	EXPORT_SYMBOL_GPL
-0x4c48a854	debugfs_remove	vmlinux	EXPORT_SYMBOL_GPL
-0xffd5a395	default_wake_function	vmlinux	EXPORT_SYMBOL
-0x95f82b97	del_gendisk	vmlinux	EXPORT_SYMBOL
-0xc996d097	del_timer	vmlinux	EXPORT_SYMBOL
-0xd5f2172f	del_timer_sync	vmlinux	EXPORT_SYMBOL
-0x6b06fdce	delayed_work_timer_fn	vmlinux	EXPORT_SYMBOL
-0x8c03d20c	destroy_workqueue	vmlinux	EXPORT_SYMBOL_GPL
-0xda4fbfb6	dev_add_pack	vmlinux	EXPORT_SYMBOL
-0xc4a7ca66	dev_addr_add	vmlinux	EXPORT_SYMBOL
-0xfc27b2ce	dev_addr_del	vmlinux	EXPORT_SYMBOL
-0xf40262b1	dev_close	vmlinux	EXPORT_SYMBOL
-0x0d795224	dev_err	vmlinux	EXPORT_SYMBOL
-0xc32cc99a	dev_get_by_index	vmlinux	EXPORT_SYMBOL
-0x548ddad5	dev_get_by_name	vmlinux	EXPORT_SYMBOL
-0x7cf5b2b3	dev_get_drvdata	vmlinux	EXPORT_SYMBOL
-0xe18ef6e0	dev_get_stats	vmlinux	EXPORT_SYMBOL
-0x4396e9a3	dev_kfree_skb_any	vmlinux	EXPORT_SYMBOL
-0x5ff07858	dev_kfree_skb_irq	vmlinux	EXPORT_SYMBOL
-0x8971d4b4	dev_mc_add	vmlinux	EXPORT_SYMBOL
-0x48e83e87	dev_mc_del	vmlinux	EXPORT_SYMBOL
-0x2e3d0c4c	dev_open	vmlinux	EXPORT_SYMBOL
-0x18abe2e5	dev_printk	vmlinux	EXPORT_SYMBOL
-0x34c11ce1	dev_queue_xmit	vmlinux	EXPORT_SYMBOL
-0x2221c998	dev_remove_pack	vmlinux	EXPORT_SYMBOL
-0x9ba8147c	dev_set_allmulti	vmlinux	EXPORT_SYMBOL
-0xc483a55a	dev_set_drvdata	vmlinux	EXPORT_SYMBOL
-0xbb400a5d	dev_set_mac_address	vmlinux	EXPORT_SYMBOL
-0xf5cbcd90	dev_set_mtu	vmlinux	EXPORT_SYMBOL
-0xf01ecd60	dev_set_name	vmlinux	EXPORT_SYMBOL_GPL
-0x10999bf8	dev_set_promiscuity	vmlinux	EXPORT_SYMBOL
-0x292de8c4	dev_trans_start	vmlinux	EXPORT_SYMBOL
-0x43b38448	dev_warn	vmlinux	EXPORT_SYMBOL
-0x196103b4	device_create	vmlinux	EXPORT_SYMBOL_GPL
-0xe4f79f4e	device_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0x1247892c	device_del	vmlinux	EXPORT_SYMBOL_GPL
-0xacbfe419	device_destroy	vmlinux	EXPORT_SYMBOL_GPL
-0xf283da2a	device_register	vmlinux	EXPORT_SYMBOL_GPL
-0xb85e416f	device_remove_file	vmlinux	EXPORT_SYMBOL_GPL
-0x44f8da52	device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xcbbf077f	dget_parent	vmlinux	EXPORT_SYMBOL
-0x3ce4ca6f	disable_irq	vmlinux	EXPORT_SYMBOL
-0x27bbf221	disable_irq_nosync	vmlinux	EXPORT_SYMBOL
-0x584c5b17	dma_ops	vmlinux	EXPORT_SYMBOL
-0x59d5a7f7	dma_set_mask	vmlinux	EXPORT_SYMBOL
-0x7a7f7d68	dma_supported	vmlinux	EXPORT_SYMBOL
-0x6add5c9a	dmi_find_device	vmlinux	EXPORT_SYMBOL
-0x81e6b37f	dmi_get_system_info	vmlinux	EXPORT_SYMBOL
-0x952664c5	do_exit	vmlinux	EXPORT_SYMBOL_GPL
-0x4f68e5c9	do_gettimeofday	vmlinux	EXPORT_SYMBOL
-0x68aca4ad	down	vmlinux	EXPORT_SYMBOL
-0x9f6b4c62	down_interruptible	vmlinux	EXPORT_SYMBOL
-0x57a6ccd0	down_read	vmlinux	EXPORT_SYMBOL
-0xa3a77c69	down_read_trylock	vmlinux	EXPORT_SYMBOL
-0x031c0c6a	down_timeout	vmlinux	EXPORT_SYMBOL
-0x940602e5	down_trylock	vmlinux	EXPORT_SYMBOL
-0xe6e3b875	down_write	vmlinux	EXPORT_SYMBOL
-0x35225ea3	down_write_trylock	vmlinux	EXPORT_SYMBOL
-0x2ac9adf5	dquot_acquire	vmlinux	EXPORT_SYMBOL
-0x33d9f148	dquot_alloc	vmlinux	EXPORT_SYMBOL
-0x10017b7a	dquot_commit	vmlinux	EXPORT_SYMBOL
-0x2e1382ba	dquot_commit_info	vmlinux	EXPORT_SYMBOL
-0x8b7099e5	dquot_destroy	vmlinux	EXPORT_SYMBOL
-0x812665b8	dquot_mark_dquot_dirty	vmlinux	EXPORT_SYMBOL
-0x7728f5d7	dquot_release	vmlinux	EXPORT_SYMBOL
-0x6a57436a	driver_create_file	vmlinux	EXPORT_SYMBOL_GPL
-0xaea8b4b4	driver_register	vmlinux	EXPORT_SYMBOL_GPL
-0x6b4b680d	driver_remove_file	vmlinux	EXPORT_SYMBOL_GPL
-0xdd08621f	driver_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc435ce0a	dst_release	vmlinux	EXPORT_SYMBOL
-0x6b2dc060	dump_stack	vmlinux	EXPORT_SYMBOL
-0x9f9e20c4	efi	vmlinux	EXPORT_SYMBOL
-0xd0dbb495	elevator_change	vmlinux	EXPORT_SYMBOL
-0xd0c05159	emergency_restart	vmlinux	EXPORT_SYMBOL_GPL
-0xfcec0987	enable_irq	vmlinux	EXPORT_SYMBOL
-0xdbe86ff6	end_page_writeback	vmlinux	EXPORT_SYMBOL
-0x6f9269d0	eth_change_mtu	vmlinux	EXPORT_SYMBOL
-0x5ab429de	eth_mac_addr	vmlinux	EXPORT_SYMBOL
-0xad480ea0	eth_type_trans	vmlinux	EXPORT_SYMBOL
-0xdec0caf5	eth_validate_addr	vmlinux	EXPORT_SYMBOL
-0x5eab1a2f	ether_setup	vmlinux	EXPORT_SYMBOL
-0xa060d8b4	ether_setup_rh	vmlinux	EXPORT_SYMBOL
-0xd58bf9d8	ethtool_op_get_link	vmlinux	EXPORT_SYMBOL
-0x098b71c6	fb_dealloc_cmap	vmlinux	EXPORT_SYMBOL
-0x6b5715cd	fc_attach_transport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x44001b78	fc_change_queue_depth	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x23244e2e	fc_exch_mgr_alloc	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xd67b3750	fc_exch_mgr_free	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xfc571942	fc_exch_mgr_reset	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x8e3860a8	fc_exch_recv	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xb6cbd911	fc_fabric_login	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0xc1e61e54	fc_fabric_logoff	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x346408f4	fc_get_host_port_state	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x7aa6bce7	fc_lport_bsg_request	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x53f22502	fc_lport_config	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x6f6355fe	fc_lport_destroy	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x4fd8d8e6	fc_release_transport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x544f3caa	fc_remote_port_add	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x187fa27b	fc_remote_port_delete	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xc60f6a54	fc_remote_port_rolechg	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x4a719e3a	fc_remove_host	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0x7dea95f1	fc_set_mfs	drivers/scsi/libfc/libfc	EXPORT_SYMBOL
-0x8e0f40d2	fc_vport_terminate	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xdc5f2d7a	fcoe_ctlr_destroy	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xd4fd5917	fcoe_ctlr_els_send	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x853118b4	fcoe_ctlr_init	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xd866a983	fcoe_ctlr_link_down	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xd41c8364	fcoe_ctlr_link_up	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0xf527cb90	fcoe_ctlr_recv	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x6a3a910a	fcoe_ctlr_recv_flogi	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL
-0x6f6cc562	fcoe_libfc_config	drivers/scsi/fcoe/libfcoe	EXPORT_SYMBOL_GPL
-0x6f5f38f7	file_remove_privs	vmlinux	EXPORT_SYMBOL
-0xc70f9cd8	file_update_time	vmlinux	EXPORT_SYMBOL
-0xd7d990c8	filemap_fault	vmlinux	EXPORT_SYMBOL
-0xfdb5cbba	filemap_flush	vmlinux	EXPORT_SYMBOL
-0x5c34ce5a	filemap_write_and_wait	vmlinux	EXPORT_SYMBOL
-0x945b8886	filemap_write_and_wait_range	vmlinux	EXPORT_SYMBOL
-0x61aa871a	filp_close	vmlinux	EXPORT_SYMBOL
-0x9c7c731b	filp_open	vmlinux	EXPORT_SYMBOL
-0xb352177e	find_first_bit	vmlinux	EXPORT_SYMBOL
-0xf11543ff	find_first_zero_bit	vmlinux	EXPORT_SYMBOL
-0xadeacf60	find_get_page	vmlinux	EXPORT_SYMBOL
-0xcb73f0f8	find_get_pages_tag	vmlinux	EXPORT_SYMBOL
-0x5b8db256	find_module	vmlinux	EXPORT_SYMBOL_GPL
-0xc0a3d105	find_next_bit	vmlinux	EXPORT_SYMBOL
-0x479c3c86	find_next_zero_bit	vmlinux	EXPORT_SYMBOL
-0x0cd25c12	find_or_create_page	vmlinux	EXPORT_SYMBOL
-0x0feb44a7	find_vma	vmlinux	EXPORT_SYMBOL
-0x49a6b139	find_vpid	vmlinux	EXPORT_SYMBOL_GPL
-0x9d9fbfd5	finish_no_open	vmlinux	EXPORT_SYMBOL
-0xe643e91d	finish_open	vmlinux	EXPORT_SYMBOL
-0xfa66f77c	finish_wait	vmlinux	EXPORT_SYMBOL
-0x00801678	flush_scheduled_work	vmlinux	EXPORT_SYMBOL
-0xc5ed6853	flush_signals	vmlinux	EXPORT_SYMBOL
-0x42160169	flush_workqueue	vmlinux	EXPORT_SYMBOL_GPL
-0xcd1850f2	fput	vmlinux	EXPORT_SYMBOL
-0x6e7ac51d	framebuffer_alloc	vmlinux	EXPORT_SYMBOL
-0x1f81a0d8	framebuffer_release	vmlinux	EXPORT_SYMBOL
-0xf20dabd8	free_irq	vmlinux	EXPORT_SYMBOL
-0x708b5f0c	free_netdev	vmlinux	EXPORT_SYMBOL
-0x4302d0eb	free_pages	vmlinux	EXPORT_SYMBOL
-0xc9ec4e21	free_percpu	vmlinux	EXPORT_SYMBOL_GPL
-0x30877173	fs_bio_set	vmlinux	EXPORT_SYMBOL
-0x8e1c90a9	fsync_bdev	vmlinux	EXPORT_SYMBOL
-0xc07f211d	generic_delete_inode	vmlinux	EXPORT_SYMBOL
-0xf3108d14	generic_file_aio_read	vmlinux	EXPORT_SYMBOL
-0xf08c1f24	generic_file_aio_write	vmlinux	EXPORT_SYMBOL
-0x11c05483	generic_file_fsync	vmlinux	EXPORT_SYMBOL
-0xc821665c	generic_file_llseek	vmlinux	EXPORT_SYMBOL
-0x2ee05603	generic_file_open	vmlinux	EXPORT_SYMBOL
-0xdada62f3	generic_file_remap_pages	vmlinux	EXPORT_SYMBOL
-0x5f883970	generic_fillattr	vmlinux	EXPORT_SYMBOL
-0xfe6fd8db	generic_getxattr	vmlinux	EXPORT_SYMBOL
-0xd42803ea	generic_make_request	vmlinux	EXPORT_SYMBOL
-0x7f9ad7a0	generic_read_dir	vmlinux	EXPORT_SYMBOL
-0xc0fba65a	generic_removexattr	vmlinux	EXPORT_SYMBOL
-0x6fd040ec	generic_segment_checks	vmlinux	EXPORT_SYMBOL
-0x4802b64a	generic_setlease	vmlinux	EXPORT_SYMBOL
-0x61abde57	generic_setxattr	vmlinux	EXPORT_SYMBOL
-0x542de561	generic_write_checks	vmlinux	EXPORT_SYMBOL
-0xfca3f8c8	generic_write_end	vmlinux	EXPORT_SYMBOL
-0xa9a4f805	genl_unregister_family	vmlinux	EXPORT_SYMBOL
-0xdbce6f67	genlmsg_put	vmlinux	EXPORT_SYMBOL
-0x91c11bc0	get_device	vmlinux	EXPORT_SYMBOL_GPL
-0x79aa04a2	get_random_bytes	vmlinux	EXPORT_SYMBOL
-0x405c1144	get_seconds	vmlinux	EXPORT_SYMBOL
-0xbd67c867	get_task_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x32f730e3	get_user_pages	vmlinux	EXPORT_SYMBOL
-0x9b388444	get_zeroed_page	vmlinux	EXPORT_SYMBOL
-0x21cc1427	grab_cache_page_nowait	vmlinux	EXPORT_SYMBOL
-0x819b4061	grab_cache_page_write_begin	vmlinux	EXPORT_SYMBOL
-0x8d24006a	hci_alloc_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0xc887c5e3	hci_free_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0xcc9b39c8	hci_register_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0x5a469665	hci_unregister_dev	net/bluetooth/bluetooth	EXPORT_SYMBOL
-0x094313d7	hrtimer_cancel	vmlinux	EXPORT_SYMBOL_GPL
-0xe7f3608a	hrtimer_forward	vmlinux	EXPORT_SYMBOL_GPL
-0x25a97010	hrtimer_init	vmlinux	EXPORT_SYMBOL_GPL
-0x6e8bf789	hrtimer_start	vmlinux	EXPORT_SYMBOL_GPL
-0xfa6af917	icmpv6_send	vmlinux	EXPORT_SYMBOL
-0x0e91fc98	iget5_locked	vmlinux	EXPORT_SYMBOL
-0xde4fab67	igrab	vmlinux	EXPORT_SYMBOL
-0xaccabc6a	in4_pton	vmlinux	EXPORT_SYMBOL
-0x1b6314fd	in_aton	vmlinux	EXPORT_SYMBOL
-0xd6f95d96	inc_zone_page_state	vmlinux	EXPORT_SYMBOL
-0x219d32bc	inet_proto_csum_replace4	vmlinux	EXPORT_SYMBOL
-0x8070df92	init_net	vmlinux	EXPORT_SYMBOL
-0x971f06a3	init_special_inode	vmlinux	EXPORT_SYMBOL
-0x6be0bc63	init_task	vmlinux	EXPORT_SYMBOL
-0x0593a99b	init_timer_key	vmlinux	EXPORT_SYMBOL
-0xa724257f	init_uts_ns	vmlinux	EXPORT_SYMBOL_GPL
-0x4f6d74cf	inode_init_once	vmlinux	EXPORT_SYMBOL
-0xe5554450	inode_newsize_ok	vmlinux	EXPORT_SYMBOL
-0xadac4d0f	inode_owner_or_capable	vmlinux	EXPORT_SYMBOL
-0x7655f61b	invalidate_bdev	vmlinux	EXPORT_SYMBOL
-0xdc233361	invalidate_inode_pages2_range	vmlinux	EXPORT_SYMBOL_GPL
-0x50331c78	invalidate_mapping_pages	vmlinux	EXPORT_SYMBOL
-0xcfda4de5	invalidate_partition	vmlinux	EXPORT_SYMBOL
-0x93a6e0b2	io_schedule	vmlinux	EXPORT_SYMBOL
-0x58314ddd	ioc4_register_submodule	drivers/misc/ioc4	EXPORT_SYMBOL
-0xf0eb7163	ioc4_unregister_submodule	drivers/misc/ioc4	EXPORT_SYMBOL
-0x213f7bd5	ioctl_by_bdev	vmlinux	EXPORT_SYMBOL
-0x69a358a6	iomem_resource	vmlinux	EXPORT_SYMBOL
-0x068c7263	ioremap_cache	vmlinux	EXPORT_SYMBOL
-0x42c8de35	ioremap_nocache	vmlinux	EXPORT_SYMBOL
-0x830e547b	ioremap_prot	vmlinux	EXPORT_SYMBOL
-0xedc03953	iounmap	vmlinux	EXPORT_SYMBOL
-0xe87399b5	ip6_route_output	vmlinux	EXPORT_SYMBOL
-0x02124474	ip_send_check	vmlinux	EXPORT_SYMBOL
-0x423b776a	ipmi_create_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x8c8ee770	ipmi_destroy_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x14a186dd	ipmi_register_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x1348760d	ipmi_request_settime	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xa28a2ace	ipmi_set_gets_events	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x16dcec76	ipmi_set_my_address	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x4c971bec	ipmi_smi_msg_received	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0x1aba5db8	ipmi_unregister_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xe4f4665b	ipmi_validate_addr	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
-0xe644f4ea	iput	vmlinux	EXPORT_SYMBOL
-0x8493dabc	ipv6_dev_get_saddr	vmlinux	EXPORT_SYMBOL
-0x99591a7a	ipv6_ext_hdr	vmlinux	EXPORT_SYMBOL
-0x2ee086e1	ipv6_skip_exthdr	vmlinux	EXPORT_SYMBOL
-0xaa011360	irq_set_affinity_hint	vmlinux	EXPORT_SYMBOL_GPL
-0x5ac21822	irq_stat	vmlinux	EXPORT_SYMBOL
-0x12e285ec	is_uv_system	vmlinux	EXPORT_SYMBOL_GPL
-0x7d11c268	jiffies	vmlinux	EXPORT_SYMBOL
-0xe24d3a97	jiffies_64	vmlinux	EXPORT_SYMBOL
-0x37befc70	jiffies_to_msecs	vmlinux	EXPORT_SYMBOL
-0xd220cf8a	jiffies_to_timespec	vmlinux	EXPORT_SYMBOL
-0x7344a35a	kernel_bind	vmlinux	EXPORT_SYMBOL
-0x351d3f5a	kernel_getsockopt	vmlinux	EXPORT_SYMBOL
-0x36af3fad	kernel_recvmsg	vmlinux	EXPORT_SYMBOL
-0x1ce449af	kernel_sendmsg	vmlinux	EXPORT_SYMBOL
-0x38e61f4e	kernel_setsockopt	vmlinux	EXPORT_SYMBOL
-0x56e2c81f	kernel_sock_ioctl	vmlinux	EXPORT_SYMBOL
-0x8b75d2b5	kernel_sock_shutdown	vmlinux	EXPORT_SYMBOL
-0x4c4fef19	kernel_stack	vmlinux	EXPORT_SYMBOL
-0x037a0cba	kfree	vmlinux	EXPORT_SYMBOL
-0x45e13a28	kfree_put_link	vmlinux	EXPORT_SYMBOL
-0x195c9f2c	kfree_skb	vmlinux	EXPORT_SYMBOL
-0x73ed6e61	kill_block_super	vmlinux	EXPORT_SYMBOL
-0x75940681	kill_pgrp	vmlinux	EXPORT_SYMBOL
-0x52fd15e1	kill_pid	vmlinux	EXPORT_SYMBOL
-0x98ab5c8d	kmalloc_caches	vmlinux	EXPORT_SYMBOL
-0xa202a8e5	kmalloc_order_trace	vmlinux	EXPORT_SYMBOL
-0xd11b7a3e	kmem_cache_alloc	vmlinux	EXPORT_SYMBOL
-0xb3ea49f2	kmem_cache_alloc_node_trace	vmlinux	EXPORT_SYMBOL
-0x41ec4c1a	kmem_cache_alloc_trace	vmlinux	EXPORT_SYMBOL
-0xaf5517a9	kmem_cache_create	vmlinux	EXPORT_SYMBOL
-0xacfa5975	kmem_cache_destroy	vmlinux	EXPORT_SYMBOL
-0x19ee3d71	kmem_cache_free	vmlinux	EXPORT_SYMBOL
-0x9b06170b	kmem_cache_shrink	vmlinux	EXPORT_SYMBOL
-0x75b1f1fb	kobject_get	vmlinux	EXPORT_SYMBOL
-0x54554948	kobject_put	vmlinux	EXPORT_SYMBOL
-0x8f52a40d	kobject_set_name	vmlinux	EXPORT_SYMBOL
-0xf2257d89	kobject_uevent_env	vmlinux	EXPORT_SYMBOL_GPL
-0x85f5e2aa	krealloc	vmlinux	EXPORT_SYMBOL
-0x1b17e06c	kstrtoll	vmlinux	EXPORT_SYMBOL
-0x00d2258c	kthread_bind	vmlinux	EXPORT_SYMBOL
-0xc35e4b4e	kthread_create_on_node	vmlinux	EXPORT_SYMBOL
-0xb3f7646e	kthread_should_stop	vmlinux	EXPORT_SYMBOL
-0x42f90a31	kthread_stop	vmlinux	EXPORT_SYMBOL
-0xc87c1f84	ktime_get	vmlinux	EXPORT_SYMBOL_GPL
-0x0521445b	list_del	vmlinux	EXPORT_SYMBOL
-0xf16169f8	ll_rw_block	vmlinux	EXPORT_SYMBOL
-0x3ff62317	local_bh_disable	vmlinux	EXPORT_SYMBOL
-0x0799aca4	local_bh_enable	vmlinux	EXPORT_SYMBOL
-0x22a4c8c1	lock_sock_nested	vmlinux	EXPORT_SYMBOL
-0xc9468df0	lookup_bdev	vmlinux	EXPORT_SYMBOL
-0xba497f13	loops_per_jiffy	vmlinux	EXPORT_SYMBOL
-0xabee204a	mapping_tagged	vmlinux	EXPORT_SYMBOL
-0xc1092877	mark_page_accessed	vmlinux	EXPORT_SYMBOL
-0x9f6e19ab	mem_section	vmlinux	EXPORT_SYMBOL
-0xa07a37f0	memchr	vmlinux	EXPORT_SYMBOL
-0x449ad0a7	memcmp	vmlinux	EXPORT_SYMBOL
-0x69acdf38	memcpy	vmlinux	EXPORT_SYMBOL
-0xb0e602eb	memmove	vmlinux	EXPORT_SYMBOL
-0x65e0d6d7	memory_read_from_buffer	vmlinux	EXPORT_SYMBOL
-0xe9dff136	mempool_alloc	vmlinux	EXPORT_SYMBOL
-0x183fa88b	mempool_alloc_slab	vmlinux	EXPORT_SYMBOL
-0x3f71faa1	mempool_create	vmlinux	EXPORT_SYMBOL
-0xefba93e1	mempool_destroy	vmlinux	EXPORT_SYMBOL
-0x4aad52d7	mempool_free	vmlinux	EXPORT_SYMBOL
-0x8a99a016	mempool_free_slab	vmlinux	EXPORT_SYMBOL
-0xfb578fc5	memset	vmlinux	EXPORT_SYMBOL
-0xa1012e43	misc_deregister	vmlinux	EXPORT_SYMBOL
-0xf23b2e74	misc_register	vmlinux	EXPORT_SYMBOL
-0x45599a23	mmput	vmlinux	EXPORT_SYMBOL_GPL
-0xf3ba11d9	mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
-0x34809f28	mmu_notifier_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x8834396c	mod_timer	vmlinux	EXPORT_SYMBOL
-0x28950ef1	module_layout	vmlinux	EXPORT_SYMBOL
-0xc3bf75bc	module_put	vmlinux	EXPORT_SYMBOL
-0xd3d14f23	module_refcount	vmlinux	EXPORT_SYMBOL
-0x3bd1b1f6	msecs_to_jiffies	vmlinux	EXPORT_SYMBOL
-0xf9a482f9	msleep	vmlinux	EXPORT_SYMBOL
-0x9abdea30	mutex_lock	vmlinux	EXPORT_SYMBOL
-0xe196a9f7	mutex_trylock	vmlinux	EXPORT_SYMBOL
-0x4ed12f73	mutex_unlock	vmlinux	EXPORT_SYMBOL
-0x75be4df3	napi_complete	vmlinux	EXPORT_SYMBOL
-0xe1c559f1	napi_get_frags	vmlinux	EXPORT_SYMBOL
-0xcdd3a8dc	napi_gro_frags	vmlinux	EXPORT_SYMBOL
-0xae250af1	napi_gro_receive	vmlinux	EXPORT_SYMBOL
-0x029444f0	native_read_tsc	vmlinux	EXPORT_SYMBOL
-0xa20ce1b8	net_msg_warn	vmlinux	EXPORT_SYMBOL
-0x6d2fc5a6	net_namespace_list	vmlinux	EXPORT_SYMBOL_GPL
-0xf6ebc03b	net_ratelimit	vmlinux	EXPORT_SYMBOL
-0xce9ff773	netdev_change_features	vmlinux	EXPORT_SYMBOL
-0xaa006be7	netdev_features_change	vmlinux	EXPORT_SYMBOL
-0x0c58a8cd	netdev_increment_features	vmlinux	EXPORT_SYMBOL
-0x5935e0e1	netdev_master_upper_dev_get	vmlinux	EXPORT_SYMBOL
-0x5d958cad	netdev_master_upper_dev_link	vmlinux	EXPORT_SYMBOL
-0x31e9790f	netdev_rx_handler_register	vmlinux	EXPORT_SYMBOL_GPL
-0xb0d91372	netdev_rx_handler_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xa544661b	netdev_update_features	vmlinux	EXPORT_SYMBOL
-0x3eff7be7	netif_carrier_off	vmlinux	EXPORT_SYMBOL
-0xe6d7097b	netif_carrier_on	vmlinux	EXPORT_SYMBOL
-0x423058c9	netif_device_attach	vmlinux	EXPORT_SYMBOL
-0x2fa56500	netif_device_detach	vmlinux	EXPORT_SYMBOL
-0x648f1a22	netif_napi_add	vmlinux	EXPORT_SYMBOL
-0x81ad6f16	netif_napi_del	vmlinux	EXPORT_SYMBOL
-0x3400f3b8	netif_receive_skb	vmlinux	EXPORT_SYMBOL
-0x9332231b	netif_rx	vmlinux	EXPORT_SYMBOL
-0x47dfc5d2	netif_rx_ni	vmlinux	EXPORT_SYMBOL
-0x5562fbb2	netif_set_real_num_tx_queues	vmlinux	EXPORT_SYMBOL
-0x58c08cf3	netif_tx_wake_queue	vmlinux	EXPORT_SYMBOL
-0xbd9316ae	netlink_broadcast	vmlinux	EXPORT_SYMBOL
-0xf50069a6	netlink_unicast	vmlinux	EXPORT_SYMBOL
-0x01902adf	netpoll_trap	vmlinux	EXPORT_SYMBOL
-0xb5ad25db	nf_register_hook	vmlinux	EXPORT_SYMBOL
-0xcfbcfea2	nf_register_hooks	vmlinux	EXPORT_SYMBOL
-0x75928e73	nf_unregister_hook	vmlinux	EXPORT_SYMBOL
-0x0f7edb41	nf_unregister_hooks	vmlinux	EXPORT_SYMBOL
-0xcd279169	nla_find	vmlinux	EXPORT_SYMBOL
-0xf1db1704	nla_memcpy	vmlinux	EXPORT_SYMBOL
-0xdc9c9463	nla_put	vmlinux	EXPORT_SYMBOL
-0x96120cdd	nla_reserve	vmlinux	EXPORT_SYMBOL
-0x3142b10b	node_data	vmlinux	EXPORT_SYMBOL
-0xf99d347e	node_states	vmlinux	EXPORT_SYMBOL
-0xfd96706c	node_to_cpumask_map	vmlinux	EXPORT_SYMBOL
-0x8e07ec8e	noop_llseek	vmlinux	EXPORT_SYMBOL
-0xfe7c4287	nr_cpu_ids	vmlinux	EXPORT_SYMBOL
-0x0948cde9	num_physpages	vmlinux	EXPORT_SYMBOL
-0x618911fc	numa_node	vmlinux	EXPORT_SYMBOL
-0x5541ea93	on_each_cpu	vmlinux	EXPORT_SYMBOL
-0x7cd8d75e	page_offset_base	vmlinux	EXPORT_SYMBOL
-0x0229e570	pagevec_lookup	vmlinux	EXPORT_SYMBOL
-0xba1665aa	pagevec_lookup_tag	vmlinux	EXPORT_SYMBOL
-0x7c1372e8	panic	vmlinux	EXPORT_SYMBOL
-0x4476e9e2	panic_notifier_list	vmlinux	EXPORT_SYMBOL
-0x4845c423	param_array_ops	vmlinux	EXPORT_SYMBOL
-0xa250c838	param_get_charp	vmlinux	EXPORT_SYMBOL
-0x253bdb78	param_get_int	vmlinux	EXPORT_SYMBOL
-0xab1d6cc1	param_get_long	vmlinux	EXPORT_SYMBOL
-0xe200d2d5	param_get_uint	vmlinux	EXPORT_SYMBOL
-0x03bd889d	param_get_ulong	vmlinux	EXPORT_SYMBOL
-0x1976aa06	param_ops_bool	vmlinux	EXPORT_SYMBOL
-0xadb5559d	param_ops_byte	vmlinux	EXPORT_SYMBOL
-0x35b6b772	param_ops_charp	vmlinux	EXPORT_SYMBOL
-0x15692c87	param_ops_int	vmlinux	EXPORT_SYMBOL
-0x4470a79b	param_ops_long	vmlinux	EXPORT_SYMBOL
-0xb2d307de	param_ops_short	vmlinux	EXPORT_SYMBOL
-0x4d405db8	param_ops_string	vmlinux	EXPORT_SYMBOL
-0x6d044c26	param_ops_uint	vmlinux	EXPORT_SYMBOL
-0xe5d95985	param_ops_ulong	vmlinux	EXPORT_SYMBOL
-0x6b7589f4	param_set_bool	vmlinux	EXPORT_SYMBOL
-0x62fd6207	param_set_charp	vmlinux	EXPORT_SYMBOL
-0x83c8a355	param_set_int	vmlinux	EXPORT_SYMBOL
-0x617643a2	param_set_long	vmlinux	EXPORT_SYMBOL
-0x8bfe8c57	param_set_uint	vmlinux	EXPORT_SYMBOL
-0x8f7014a1	param_set_ulong	vmlinux	EXPORT_SYMBOL
-0xd3719d59	paravirt_ticketlocks_enabled	vmlinux	EXPORT_SYMBOL
-0x008e86d8	pci_bus_read_config_byte	vmlinux	EXPORT_SYMBOL
-0x7c481ff1	pci_bus_read_config_dword	vmlinux	EXPORT_SYMBOL
-0x1aa4c8bf	pci_bus_read_config_word	vmlinux	EXPORT_SYMBOL
-0xb576174c	pci_bus_write_config_byte	vmlinux	EXPORT_SYMBOL
-0x2966ef5e	pci_bus_write_config_dword	vmlinux	EXPORT_SYMBOL
-0x8fb5a29a	pci_bus_write_config_word	vmlinux	EXPORT_SYMBOL
-0x909b4067	pci_clear_master	vmlinux	EXPORT_SYMBOL
-0x1c3e657e	pci_disable_device	vmlinux	EXPORT_SYMBOL
-0x79142775	pci_disable_msi	vmlinux	EXPORT_SYMBOL
-0x58ecf574	pci_disable_msix	vmlinux	EXPORT_SYMBOL
-0x46734db7	pci_enable_device	vmlinux	EXPORT_SYMBOL
-0x117cb312	pci_enable_msi_block	vmlinux	EXPORT_SYMBOL
-0xac1adf42	pci_enable_msix	vmlinux	EXPORT_SYMBOL
-0x99b0aabc	pci_find_capability	vmlinux	EXPORT_SYMBOL
-0x58af4a0f	pci_get_device	vmlinux	EXPORT_SYMBOL
-0xbe872f4b	pci_get_subsys	vmlinux	EXPORT_SYMBOL
-0x8055d058	pci_iomap	vmlinux	EXPORT_SYMBOL
-0x127b8725	pci_iounmap	vmlinux	EXPORT_SYMBOL
-0xc2f7c1b1	pci_read_config_byte	vmlinux	EXPORT_SYMBOL
-0xebfdcb96	pci_read_config_dword	vmlinux	EXPORT_SYMBOL
-0xc2560ac2	pci_read_config_word	vmlinux	EXPORT_SYMBOL
-0xcf73ce21	pci_release_regions	vmlinux	EXPORT_SYMBOL
-0x00c3fc2f	pci_request_regions	vmlinux	EXPORT_SYMBOL
-0xbe4a1520	pci_set_master	vmlinux	EXPORT_SYMBOL
-0x2cb61da5	pci_unregister_driver	vmlinux	EXPORT_SYMBOL
-0xc9426d6d	pci_write_config_byte	vmlinux	EXPORT_SYMBOL
-0x07f59e59	pci_write_config_dword	vmlinux	EXPORT_SYMBOL
-0x8bd590db	pci_write_config_word	vmlinux	EXPORT_SYMBOL
-0x4c9d28b0	phys_base	vmlinux	EXPORT_SYMBOL
-0xa25e8997	pid_task	vmlinux	EXPORT_SYMBOL
-0x50d5b739	platform_device_add	vmlinux	EXPORT_SYMBOL_GPL
-0x7db9025b	platform_device_alloc	vmlinux	EXPORT_SYMBOL_GPL
-0xee23857b	platform_device_put	vmlinux	EXPORT_SYMBOL_GPL
-0x9b36baa6	platform_device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xf4d63ca3	pnp_get_resource	vmlinux	EXPORT_SYMBOL
-0xc0bf66f6	pnp_register_driver	vmlinux	EXPORT_SYMBOL
-0xf5fc268e	pnp_unregister_driver	vmlinux	EXPORT_SYMBOL
-0xf9dbaa9c	posix_lock_file	vmlinux	EXPORT_SYMBOL
-0x38601a91	posix_test_lock	vmlinux	EXPORT_SYMBOL
-0x5c8b5ce8	prepare_to_wait	vmlinux	EXPORT_SYMBOL
-0xf8983de7	prepare_to_wait_exclusive	vmlinux	EXPORT_SYMBOL
-0x27e1a049	printk	vmlinux	EXPORT_SYMBOL
-0x8c34c149	proc_create_data	vmlinux	EXPORT_SYMBOL
-0xd067fc5c	proc_dointvec	vmlinux	EXPORT_SYMBOL
-0xd0298b8b	proc_dointvec_minmax	vmlinux	EXPORT_SYMBOL
-0xf82cfd1a	proc_dostring	vmlinux	EXPORT_SYMBOL
-0x73839c7a	proc_mkdir	vmlinux	EXPORT_SYMBOL
-0x7be90215	proc_mkdir_mode	vmlinux	EXPORT_SYMBOL
-0xbc848342	proc_remove	vmlinux	EXPORT_SYMBOL
-0x826789e8	pskb_expand_head	vmlinux	EXPORT_SYMBOL
-0x890f0812	put_device	vmlinux	EXPORT_SYMBOL_GPL
-0x058390d3	put_disk	vmlinux	EXPORT_SYMBOL
-0x334c1f75	put_page	vmlinux	EXPORT_SYMBOL
-0x910538ff	pv_cpu_ops	vmlinux	EXPORT_SYMBOL
-0x78764f4e	pv_irq_ops	vmlinux	EXPORT_SYMBOL
-0x784213a6	pv_lock_ops	vmlinux	EXPORT_SYMBOL
-0x72392fe6	pv_mmu_ops	vmlinux	EXPORT_SYMBOL
-0xeeec26a7	queue_delayed_work_on	vmlinux	EXPORT_SYMBOL
-0x2e0d2f7f	queue_work_on	vmlinux	EXPORT_SYMBOL
-0x60a13e90	rcu_barrier	vmlinux	EXPORT_SYMBOL_GPL
-0xf194dd6f	read_cache_pages	vmlinux	EXPORT_SYMBOL
-0xfb6af58d	recalc_sigpending	vmlinux	EXPORT_SYMBOL
-0xd5079fb8	ref_module	vmlinux	EXPORT_SYMBOL_GPL
-0x71a50dbc	register_blkdev	vmlinux	EXPORT_SYMBOL
-0x60352082	register_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
-0xf68285c0	register_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
-0xd7efe2ef	register_netdev	vmlinux	EXPORT_SYMBOL
-0x954c2f42	register_netdevice	vmlinux	EXPORT_SYMBOL
-0xd2da1048	register_netdevice_notifier	vmlinux	EXPORT_SYMBOL
-0x4761f17c	register_netevent_notifier	vmlinux	EXPORT_SYMBOL_GPL
-0x105ba1f4	register_pernet_subsys	vmlinux	EXPORT_SYMBOL_GPL
-0x3517383e	register_reboot_notifier	vmlinux	EXPORT_SYMBOL
-0x8fe48b08	register_sysctl_paths	vmlinux	EXPORT_SYMBOL
-0x565528d4	release_sock	vmlinux	EXPORT_SYMBOL
-0xe84cb310	remap_pfn_range	vmlinux	EXPORT_SYMBOL
-0xa16aae11	remove_proc_entry	vmlinux	EXPORT_SYMBOL
-0xb5dcab5b	remove_wait_queue	vmlinux	EXPORT_SYMBOL
-0xd6b8e852	request_threaded_irq	vmlinux	EXPORT_SYMBOL
-0xde5a4e55	revalidate_disk	vmlinux	EXPORT_SYMBOL
-0x49710e81	rh_kabi_7_2	vmlinux	EXPORT_SYMBOL_GPL
-0x1a867ca0	root_device_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0x9e64fbfe	rtc_cmos_read	vmlinux	EXPORT_SYMBOL
-0x389bfe0d	rtc_lock	vmlinux	EXPORT_SYMBOL
-0x85670f1d	rtnl_is_locked	vmlinux	EXPORT_SYMBOL
-0xd1e6dcee	rtnl_link_register	vmlinux	EXPORT_SYMBOL_GPL
-0xcd42fa54	rtnl_link_unregister	vmlinux	EXPORT_SYMBOL_GPL
-0xc7a4fbed	rtnl_lock	vmlinux	EXPORT_SYMBOL
-0xf4f14de6	rtnl_trylock	vmlinux	EXPORT_SYMBOL
-0x6e720ff2	rtnl_unlock	vmlinux	EXPORT_SYMBOL
-0x01000e51	schedule	vmlinux	EXPORT_SYMBOL
-0xd62c833f	schedule_timeout	vmlinux	EXPORT_SYMBOL
-0x804d7d23	scsi_add_device	vmlinux	EXPORT_SYMBOL
-0x40020cf9	scsi_add_host_with_dma	vmlinux	EXPORT_SYMBOL
-0x5de1b3d3	scsi_adjust_queue_depth	vmlinux	EXPORT_SYMBOL
-0x9759a9b3	scsi_cmd_get_serial	vmlinux	EXPORT_SYMBOL
-0x23c4424d	scsi_cmd_ioctl	vmlinux	EXPORT_SYMBOL
-0x0334da4e	scsi_command_size_tbl	vmlinux	EXPORT_SYMBOL
-0x564218cf	scsi_device_get	vmlinux	EXPORT_SYMBOL
-0x1447ec08	scsi_device_lookup	vmlinux	EXPORT_SYMBOL
-0x68d95008	scsi_device_put	vmlinux	EXPORT_SYMBOL
-0x72ea7b2d	scsi_device_type	vmlinux	EXPORT_SYMBOL
-0x108bb7fd	scsi_dma_map	vmlinux	EXPORT_SYMBOL
-0xd74affc0	scsi_dma_unmap	vmlinux	EXPORT_SYMBOL
-0xd260fa18	scsi_execute	vmlinux	EXPORT_SYMBOL
-0xca606326	scsi_host_alloc	vmlinux	EXPORT_SYMBOL
-0xb3839e3b	scsi_host_lookup	vmlinux	EXPORT_SYMBOL
-0x6f8d91ba	scsi_host_put	vmlinux	EXPORT_SYMBOL
-0xab1050a8	scsi_host_set_state	vmlinux	EXPORT_SYMBOL
-0xae3cab9b	scsi_is_fc_rport	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
-0xf5fc28ff	scsi_is_host_device	vmlinux	EXPORT_SYMBOL
-0xf790d854	scsi_is_sdev_device	vmlinux	EXPORT_SYMBOL
-0x593cc3b9	scsi_register_driver	vmlinux	EXPORT_SYMBOL
-0x4346c54a	scsi_remove_device	vmlinux	EXPORT_SYMBOL
-0x7f99a70c	scsi_remove_host	vmlinux	EXPORT_SYMBOL
-0x057104af	scsi_reset_provider	vmlinux	EXPORT_SYMBOL
-0xc1eaaa65	scsi_scan_host	vmlinux	EXPORT_SYMBOL
-0x52026cdf	security_sb_parse_opts_str	vmlinux	EXPORT_SYMBOL
-0x506e3934	security_sb_set_mnt_opts	vmlinux	EXPORT_SYMBOL
-0xc11309e9	send_sig	vmlinux	EXPORT_SYMBOL
-0x0d9cd486	send_sig_info	vmlinux	EXPORT_SYMBOL
-0x1685c91c	seq_lseek	vmlinux	EXPORT_SYMBOL
-0x257f3887	seq_open	vmlinux	EXPORT_SYMBOL
-0x074df1d4	seq_printf	vmlinux	EXPORT_SYMBOL
-0x4492645d	seq_putc	vmlinux	EXPORT_SYMBOL
-0x50612798	seq_puts	vmlinux	EXPORT_SYMBOL
-0x9c3df9b4	seq_read	vmlinux	EXPORT_SYMBOL
-0x4f897611	seq_release	vmlinux	EXPORT_SYMBOL
-0x97544bdc	seq_write	vmlinux	EXPORT_SYMBOL
-0xca919404	set_blocksize	vmlinux	EXPORT_SYMBOL
-0x807d5628	set_cpus_allowed_ptr	vmlinux	EXPORT_SYMBOL_GPL
-0x3ac5607e	set_device_ro	vmlinux	EXPORT_SYMBOL
-0xaee2ce2a	set_disk_ro	vmlinux	EXPORT_SYMBOL
-0x120eee66	set_page_dirty	vmlinux	EXPORT_SYMBOL
-0x7fe38f48	sg_copy_to_buffer	vmlinux	EXPORT_SYMBOL
-0x3fec048f	sg_next	vmlinux	EXPORT_SYMBOL
-0x40c7247c	si_meminfo	vmlinux	EXPORT_SYMBOL
-0x0b742fd7	simple_strtol	vmlinux	EXPORT_SYMBOL
-0x20000329	simple_strtoul	vmlinux	EXPORT_SYMBOL
-0x61b7b126	simple_strtoull	vmlinux	EXPORT_SYMBOL
-0x16a5a12f	single_open	vmlinux	EXPORT_SYMBOL
-0x2296f507	single_release	vmlinux	EXPORT_SYMBOL
-0x47c466e3	sk_alloc	vmlinux	EXPORT_SYMBOL
-0xe2271eef	sk_free	vmlinux	EXPORT_SYMBOL
-0xb65b0187	skb_checksum	vmlinux	EXPORT_SYMBOL
-0x5adedd06	skb_checksum_help	vmlinux	EXPORT_SYMBOL
-0xd81e3d3f	skb_clone	vmlinux	EXPORT_SYMBOL
-0x12070d39	skb_copy	vmlinux	EXPORT_SYMBOL
-0x8ef01d8b	skb_copy_bits	vmlinux	EXPORT_SYMBOL
-0xcbf0ce12	skb_copy_datagram_iovec	vmlinux	EXPORT_SYMBOL
-0xf631c441	skb_copy_expand	vmlinux	EXPORT_SYMBOL
-0xac5d6a07	skb_dequeue	vmlinux	EXPORT_SYMBOL
-0x967ee078	skb_dequeue_tail	vmlinux	EXPORT_SYMBOL
-0x5a59cd95	skb_make_writable	vmlinux	EXPORT_SYMBOL
-0x611c9b4b	skb_pad	vmlinux	EXPORT_SYMBOL
-0xd87261b2	skb_partial_csum_set	vmlinux	EXPORT_SYMBOL_GPL
-0xb0b1f0f2	skb_pull	vmlinux	EXPORT_SYMBOL
-0xa6862bef	skb_push	vmlinux	EXPORT_SYMBOL
-0x2ac95217	skb_put	vmlinux	EXPORT_SYMBOL
-0x2e34a4df	skb_queue_head	vmlinux	EXPORT_SYMBOL
-0x297efa0e	skb_queue_purge	vmlinux	EXPORT_SYMBOL
-0x3de81b1e	skb_queue_tail	vmlinux	EXPORT_SYMBOL
-0x59f0126c	skb_realloc_headroom	vmlinux	EXPORT_SYMBOL
-0xd0a4c8a9	skb_recv_datagram	vmlinux	EXPORT_SYMBOL
-0x2f592a90	skb_trim	vmlinux	EXPORT_SYMBOL
-0x22095d00	skb_tstamp_tx	vmlinux	EXPORT_SYMBOL_GPL
-0x79f95226	skb_unlink	vmlinux	EXPORT_SYMBOL
-0x6228c21f	smp_call_function_single	vmlinux	EXPORT_SYMBOL
-0x8b966b63	sn_rtc_cycles_per_second	vmlinux	EXPORT_SYMBOL
-0x28318305	snprintf	vmlinux	EXPORT_SYMBOL
-0x960751d1	sock_alloc_send_skb	vmlinux	EXPORT_SYMBOL
-0xc6804e1b	sock_create_kern	vmlinux	EXPORT_SYMBOL
-0x9e9390ec	sock_release	vmlinux	EXPORT_SYMBOL
-0x91715312	sprintf	vmlinux	EXPORT_SYMBOL
-0x20c55ae0	sscanf	vmlinux	EXPORT_SYMBOL
-0x0ecf823a	static_key_slow_dec	vmlinux	EXPORT_SYMBOL_GPL
-0x368f1fea	static_key_slow_inc	vmlinux	EXPORT_SYMBOL_GPL
-0xbfd45930	stop_machine	vmlinux	EXPORT_SYMBOL_GPL
-0xaafdc258	strcasecmp	vmlinux	EXPORT_SYMBOL
-0x061651be	strcat	vmlinux	EXPORT_SYMBOL
-0x349cba85	strchr	vmlinux	EXPORT_SYMBOL
-0xe2d5255a	strcmp	vmlinux	EXPORT_SYMBOL
-0xe914e41e	strcpy	vmlinux	EXPORT_SYMBOL
-0x5792f848	strlcpy	vmlinux	EXPORT_SYMBOL
-0x754d539c	strlen	vmlinux	EXPORT_SYMBOL
-0x96b29254	strncasecmp	vmlinux	EXPORT_SYMBOL
-0x2e2b40d2	strncat	vmlinux	EXPORT_SYMBOL
-0x5a921311	strncmp	vmlinux	EXPORT_SYMBOL
-0x9166fada	strncpy	vmlinux	EXPORT_SYMBOL
-0x6263e02d	strncpy_from_user	vmlinux	EXPORT_SYMBOL
-0x3d5844b3	strnicmp	vmlinux	EXPORT_SYMBOL
-0xa916b694	strnlen	vmlinux	EXPORT_SYMBOL
-0x9f984513	strrchr	vmlinux	EXPORT_SYMBOL
-0x85df9b6c	strsep	vmlinux	EXPORT_SYMBOL
-0x1e6d26a8	strstr	vmlinux	EXPORT_SYMBOL
-0xc4076f47	submit_bio	vmlinux	EXPORT_SYMBOL
-0x89711fae	sync_blockdev	vmlinux	EXPORT_SYMBOL
-0x609f1c7e	synchronize_net	vmlinux	EXPORT_SYMBOL
-0xfe5d4bb2	sys_tz	vmlinux	EXPORT_SYMBOL
-0x2d3385d3	system_wq	vmlinux	EXPORT_SYMBOL
-0xa1f31b5b	tag_pages_for_writeback	vmlinux	EXPORT_SYMBOL
-0x7628f3c7	this_cpu_off	vmlinux	EXPORT_SYMBOL
-0x92a9c60c	time_to_tm	vmlinux	EXPORT_SYMBOL
-0xf51ae235	touch_nmi_watchdog	vmlinux	EXPORT_SYMBOL
-0x6fcb87a1	touch_softlockup_watchdog	vmlinux	EXPORT_SYMBOL
-0x554a5293	truncate_inode_pages	vmlinux	EXPORT_SYMBOL
-0xce9b6ece	truncate_inode_pages_final	vmlinux	EXPORT_SYMBOL
-0xfe3d5457	truncate_pagecache	vmlinux	EXPORT_SYMBOL
-0x84c274f9	try_module_get	vmlinux	EXPORT_SYMBOL
-0x44aaf30f	tsc_khz	vmlinux	EXPORT_SYMBOL
-0x5de75127	unlock_page	vmlinux	EXPORT_SYMBOL
-0x9373508b	unmap_mapping_range	vmlinux	EXPORT_SYMBOL
-0xb5a459dc	unregister_blkdev	vmlinux	EXPORT_SYMBOL
-0x7485e15e	unregister_chrdev_region	vmlinux	EXPORT_SYMBOL
-0x2fe252cc	unregister_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
-0xfe029963	unregister_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
-0x7eb952e6	unregister_netdev	vmlinux	EXPORT_SYMBOL
-0x9d0d6206	unregister_netdevice_notifier	vmlinux	EXPORT_SYMBOL
-0xd633fe2b	unregister_netdevice_queue	vmlinux	EXPORT_SYMBOL
-0x4fe1eddf	unregister_netevent_notifier	vmlinux	EXPORT_SYMBOL_GPL
-0xe64ad8ea	unregister_nmi_handler	vmlinux	EXPORT_SYMBOL_GPL
-0x9098b723	unregister_pernet_subsys	vmlinux	EXPORT_SYMBOL_GPL
-0xac1a55be	unregister_reboot_notifier	vmlinux	EXPORT_SYMBOL
-0xc50bab05	unregister_shrinker	vmlinux	EXPORT_SYMBOL
-0xac3d20e2	unregister_sysctl_table	vmlinux	EXPORT_SYMBOL
-0x9031c2c9	unuse_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x71e3cecb	up	vmlinux	EXPORT_SYMBOL
-0xf5893abf	up_read	vmlinux	EXPORT_SYMBOL
-0x3b4ceb4a	up_write	vmlinux	EXPORT_SYMBOL
-0x22e9da91	use_mm	vmlinux	EXPORT_SYMBOL_GPL
-0x12a38747	usleep_range	vmlinux	EXPORT_SYMBOL
-0x999e8297	vfree	vmlinux	EXPORT_SYMBOL
-0xbc86417f	vfs_fsync_range	vmlinux	EXPORT_SYMBOL
-0x93ff17d9	vfs_mknod	vmlinux	EXPORT_SYMBOL
-0xa83971ad	vfs_unlink	vmlinux	EXPORT_SYMBOL
-0x013f85e9	vga_set_legacy_decoding	vmlinux	EXPORT_SYMBOL
-0x9c47dae3	vlan_dev_real_dev	vmlinux	EXPORT_SYMBOL
-0x8b4b5322	vlan_dev_vlan_id	vmlinux	EXPORT_SYMBOL
-0xdf289dfe	vm_insert_pfn	vmlinux	EXPORT_SYMBOL
-0x4a350370	vm_mmap	vmlinux	EXPORT_SYMBOL
-0x5b56860c	vm_munmap	vmlinux	EXPORT_SYMBOL
-0x31a78843	vm_stat	vmlinux	EXPORT_SYMBOL
-0xd6ee688f	vmalloc	vmlinux	EXPORT_SYMBOL
-0xa0b04675	vmalloc_32	vmlinux	EXPORT_SYMBOL
-0x18e6b5cd	vmalloc_to_page	vmlinux	EXPORT_SYMBOL
-0x5635a60a	vmalloc_user	vmlinux	EXPORT_SYMBOL
-0xac41c6d8	vmap	vmlinux	EXPORT_SYMBOL
-0x97651e6c	vmemmap_base	vmlinux	EXPORT_SYMBOL
-0xbf8ba54a	vprintk	vmlinux	EXPORT_SYMBOL
-0x91ac822f	vscnprintf	vmlinux	EXPORT_SYMBOL
-0x99195078	vsnprintf	vmlinux	EXPORT_SYMBOL
-0x2482e688	vsprintf	vmlinux	EXPORT_SYMBOL
-0x94961283	vunmap	vmlinux	EXPORT_SYMBOL
-0x6d0aba34	wait_for_completion	vmlinux	EXPORT_SYMBOL
-0x015ddbdc	wait_for_completion_interruptible	vmlinux	EXPORT_SYMBOL
-0x263122f8	wait_for_completion_interruptible_timeout	vmlinux	EXPORT_SYMBOL
-0x53f6ffbc	wait_for_completion_timeout	vmlinux	EXPORT_SYMBOL
-0x90c7c2cd	wait_on_page_bit	vmlinux	EXPORT_SYMBOL
-0x13e13aa1	wait_on_sync_kiocb	vmlinux	EXPORT_SYMBOL
-0xe65cdceb	wake_up_process	vmlinux	EXPORT_SYMBOL
-0x16305289	warn_slowpath_null	vmlinux	EXPORT_SYMBOL
-0x360b8d16	x86_cpu_to_apicid	vmlinux	EXPORT_SYMBOL
-0x3637a577	xt_register_targets	vmlinux	EXPORT_SYMBOL
-0x10fbe6d8	xt_unregister_targets	vmlinux	EXPORT_SYMBOL
-0x760a0f4f	yield	vmlinux	EXPORT_SYMBOL
-0x4c83a22c	zap_vma_ptes	vmlinux	EXPORT_SYMBOL_GPL
-0xf2c43f3f	zlib_deflate	vmlinux	EXPORT_SYMBOL
-0xc890c008	zlib_deflateEnd	vmlinux	EXPORT_SYMBOL
-0x5a0b73d0	zlib_deflateInit2	vmlinux	EXPORT_SYMBOL
-0xe9f7149c	zlib_deflate_workspacesize	vmlinux	EXPORT_SYMBOL
-0x581f98da	zlib_inflate	vmlinux	EXPORT_SYMBOL
-0x107e5878	zlib_inflateEnd	vmlinux	EXPORT_SYMBOL
-0x35a88f28	zlib_inflateInit2	vmlinux	EXPORT_SYMBOL
-0xce5ac24f	zlib_inflate_workspacesize	vmlinux	EXPORT_SYMBOL
diff --git a/kernel-source/thirdparty/SOURCES/centos-ca-secureboot.der b/kernel-source/thirdparty/SOURCES/centos-ca-secureboot.der
deleted file mode 100644
index 44a2563..0000000
--- a/kernel-source/thirdparty/SOURCES/centos-ca-secureboot.der
+++ /dev/null
Binary files differ
diff --git a/kernel-source/thirdparty/SOURCES/centos-kpatch.x509 b/kernel-source/thirdparty/SOURCES/centos-kpatch.x509
deleted file mode 100644
index ca57a43..0000000
--- a/kernel-source/thirdparty/SOURCES/centos-kpatch.x509
+++ /dev/null
Binary files differ
diff --git a/kernel-source/thirdparty/SOURCES/centos-ldup.x509 b/kernel-source/thirdparty/SOURCES/centos-ldup.x509
deleted file mode 100644
index 9c65dd3..0000000
--- a/kernel-source/thirdparty/SOURCES/centos-ldup.x509
+++ /dev/null
Binary files differ
diff --git a/kernel-source/thirdparty/SOURCES/centossecureboot001.crt b/kernel-source/thirdparty/SOURCES/centossecureboot001.crt
deleted file mode 100644
index c67b0f3..0000000
--- a/kernel-source/thirdparty/SOURCES/centossecureboot001.crt
+++ /dev/null
@@ -1,81 +0,0 @@
-Certificate:
-    Data:
-        Version: 3 (0x2)
-        Serial Number:
-            b6:16:15:71:72:fb:31:7e
-        Signature Algorithm: sha256WithRSAEncryption
-        Issuer: CN=CentOS Secure Boot (CA key 1)/emailAddress=security@centos.org
-        Validity
-            Not Before: Aug  1 11:47:30 2018 GMT
-            Not After : Dec 31 11:47:30 2037 GMT
-        Subject: CN=CentOS Secure Boot (key 1)/emailAddress=security@centos.org
-        Subject Public Key Info:
-            Public Key Algorithm: rsaEncryption
-            RSA Public Key: (2048 bit)
-                Modulus (2048 bit):
-                    00:c1:a3:6a:f4:2d:71:83:6c:21:ca:0c:b7:ac:fa:
-                    76:80:43:03:40:87:5d:de:e9:1e:df:ad:e7:2b:51:
-                    cb:f8:31:0f:9a:db:ab:23:25:04:11:05:57:7d:f2:
-                    4b:8d:1e:b3:75:78:1d:b9:57:8b:18:0b:bb:7e:e3:
-                    24:0f:6a:40:5f:2b:4f:03:a5:85:94:d2:f9:08:a0:
-                    bc:db:a5:ea:4f:7f:e8:7c:d1:a9:f8:f0:9c:25:18:
-                    00:14:c4:c4:35:7d:1d:4c:8a:8d:95:f8:ed:65:97:
-                    a5:a4:da:7d:cb:f0:33:3b:b7:03:94:68:47:05:57:
-                    6c:96:91:ac:14:f2:e3:f6:6d:4a:18:cf:68:8a:35:
-                    6f:8e:26:99:7f:db:c9:83:54:c2:c3:bf:ad:45:a0:
-                    aa:a0:86:5f:20:b1:86:1b:ae:b7:28:15:11:f9:65:
-                    53:5d:70:33:9b:a3:c7:b5:c8:11:ff:55:3b:e7:46:
-                    f1:6c:6b:8c:bb:f2:9f:36:23:b1:2d:23:2f:8f:4f:
-                    6c:a8:cc:ae:f5:56:9e:22:6c:0e:9a:4a:b1:bd:b2:
-                    76:15:5c:05:85:b8:5e:dc:8c:a5:c3:e0:75:51:a4:
-                    94:9b:03:2e:7b:f8:d3:b9:dd:7f:88:ce:2e:2f:28:
-                    4c:b4:92:2f:e6:e0:67:0a:d0:ff:c5:d2:79:a6:ef:
-                    94:0f
-                Exponent: 65537 (0x10001)
-        X509v3 extensions:
-            X509v3 Basic Constraints: critical
-                CA:FALSE
-            X509v3 Key Usage: 
-                Digital Signature
-            X509v3 Subject Key Identifier: 
-                F0:37:C6:EA:EC:36:D4:05:7A:52:6C:0E:C6:D5:A9:5B:32:4E:E1:29
-            X509v3 Authority Key Identifier: 
-                keyid:54:EC:81:85:89:3E:E9:1A:DB:08:F7:44:88:54:7E:8E:3F:74:3A:F3
-
-    Signature Algorithm: sha256WithRSAEncryption
-        97:97:ba:a6:0b:5b:bb:84:39:2e:ef:8b:51:9a:89:bb:65:3c:
-        dc:15:d0:5a:88:c5:af:ce:93:f5:c1:74:98:15:59:a9:38:da:
-        11:fd:46:d5:4f:23:7c:03:1f:ae:0c:70:93:94:a7:61:2f:4b:
-        2f:5f:bb:cc:8a:d7:4a:24:66:73:85:b4:19:13:fc:6a:61:4a:
-        28:1f:a2:38:f4:72:90:03:c4:3e:64:63:8b:fb:15:22:22:4e:
-        b9:43:d9:b4:3d:3a:60:c1:4d:3a:09:85:68:7a:bc:3b:f9:ef:
-        f3:f5:e9:c9:4f:80:8c:c6:e9:cb:ef:28:44:b0:5d:d4:9e:4f:
-        0f:02:9a:65:aa:98:35:b4:6f:d2:80:e3:08:ef:12:d0:17:56:
-        a6:a1:42:1e:1d:ab:e5:33:c0:fd:88:0d:40:42:81:c8:27:30:
-        17:07:57:3e:05:9d:aa:05:0e:5b:3a:79:b4:29:aa:7c:42:5a:
-        ad:43:59:fb:34:4d:dc:62:58:63:e4:fb:de:bb:fd:6c:4e:97:
-        58:f4:b9:99:4a:71:fe:7f:16:50:55:25:46:39:96:9b:88:6c:
-        75:19:33:9e:70:b3:04:82:fe:16:a8:8e:22:47:83:6d:16:77:
-        da:26:ad:31:d8:06:6d:c5:7e:46:4b:21:ab:ae:ec:2a:93:71:
-        da:7f:89:1d
------BEGIN CERTIFICATE-----
-MIIDdTCCAl2gAwIBAgIJALYWFXFy+zF+MA0GCSqGSIb3DQEBCwUAMEwxJjAkBgNV
-BAMMHUNlbnRPUyBTZWN1cmUgQm9vdCAoQ0Ega2V5IDEpMSIwIAYJKoZIhvcNAQkB
-FhNzZWN1cml0eUBjZW50b3Mub3JnMB4XDTE4MDgwMTExNDczMFoXDTM3MTIzMTEx
-NDczMFowSTEjMCEGA1UEAxMaQ2VudE9TIFNlY3VyZSBCb290IChrZXkgMSkxIjAg
-BgkqhkiG9w0BCQEWE3NlY3VyaXR5QGNlbnRvcy5vcmcwggEiMA0GCSqGSIb3DQEB
-AQUAA4IBDwAwggEKAoIBAQDBo2r0LXGDbCHKDLes+naAQwNAh13e6R7frecrUcv4
-MQ+a26sjJQQRBVd98kuNHrN1eB25V4sYC7t+4yQPakBfK08DpYWU0vkIoLzbpepP
-f+h80an48JwlGAAUxMQ1fR1Mio2V+O1ll6Wk2n3L8DM7twOUaEcFV2yWkawU8uP2
-bUoYz2iKNW+OJpl/28mDVMLDv61FoKqghl8gsYYbrrcoFRH5ZVNdcDObo8e1yBH/
-VTvnRvFsa4y78p82I7EtIy+PT2yozK71Vp4ibA6aSrG9snYVXAWFuF7cjKXD4HVR
-pJSbAy57+NO53X+Izi4vKEy0ki/m4GcK0P/F0nmm75QPAgMBAAGjXTBbMAwGA1Ud
-EwEB/wQCMAAwCwYDVR0PBAQDAgeAMB0GA1UdDgQWBBTwN8bq7DbUBXpSbA7G1alb
-Mk7hKTAfBgNVHSMEGDAWgBRU7IGFiT7pGtsI90SIVH6OP3Q68zANBgkqhkiG9w0B
-AQsFAAOCAQEAl5e6pgtbu4Q5Lu+LUZqJu2U83BXQWojFr86T9cF0mBVZqTjaEf1G
-1U8jfAMfrgxwk5SnYS9LL1+7zIrXSiRmc4W0GRP8amFKKB+iOPRykAPEPmRji/sV
-IiJOuUPZtD06YMFNOgmFaHq8O/nv8/XpyU+AjMbpy+8oRLBd1J5PDwKaZaqYNbRv
-0oDjCO8S0BdWpqFCHh2r5TPA/YgNQEKByCcwFwdXPgWdqgUOWzp5tCmqfEJarUNZ
-+zRN3GJYY+T73rv9bE6XWPS5mUpx/n8WUFUlRjmWm4hsdRkznnCzBIL+FqiOIkeD
-bRZ32iatMdgGbcV+Rkshq67sKpNx2n+JHQ==
------END CERTIFICATE-----
diff --git a/kernel-source/thirdparty/SOURCES/centossecureboot201.crt b/kernel-source/thirdparty/SOURCES/centossecureboot201.crt
deleted file mode 100644
index f9d9675..0000000
--- a/kernel-source/thirdparty/SOURCES/centossecureboot201.crt
+++ /dev/null
@@ -1,84 +0,0 @@
-Certificate:
-    Data:
-        Version: 3 (0x2)
-        Serial Number:
-            93:c2:04:d8:bd:77:6b:11
-    Signature Algorithm: sha256WithRSAEncryption
-        Issuer: CN=CentOS Secure Boot CA 2/emailAddress=security@centos.org
-        Validity
-            Not Before: Jun  9 10:04:20 2020 GMT
-            Not After : Jan 18 10:04:20 2038 GMT
-        Subject: CN=CentOS Secure Boot Signing 201/emailAddress=security@centos.org
-        Subject Public Key Info:
-            Public Key Algorithm: rsaEncryption
-                Public-Key: (2048 bit)
-                Modulus:
-                    00:9e:ef:fe:76:1c:9f:9b:3e:f2:e4:c5:29:bd:19:
-                    32:01:59:f3:e6:99:fa:eb:b5:f8:94:0c:95:3a:65:
-                    5e:b1:72:d0:50:3e:70:64:8a:1a:d1:f6:4d:af:6d:
-                    57:ee:40:71:40:09:dd:30:0c:81:a1:8b:26:63:12:
-                    07:bf:e1:d1:45:9f:9b:09:a6:57:98:9e:ef:97:e9:
-                    bd:68:38:ea:aa:63:92:2e:0d:2f:8e:fb:be:88:40:
-                    9b:59:e3:bc:b7:6f:e3:bb:6b:1e:6e:9e:ee:57:b8:
-                    28:c6:d5:d6:bf:47:a6:e9:38:a9:8f:08:73:98:49:
-                    a8:58:d2:62:73:f1:1e:44:d4:88:3d:f9:aa:43:e2:
-                    72:2e:d7:43:3e:1d:b6:65:f6:d1:2e:ef:31:cb:9f:
-                    5e:e3:d4:ea:3c:23:9a:07:af:f9:4a:ee:43:9a:75:
-                    06:ed:9a:54:2c:ed:5b:ca:85:a5:10:16:cd:30:64:
-                    ea:d5:27:7e:23:f6:fc:ec:69:a9:43:2f:78:73:6b:
-                    33:78:8b:f8:54:db:3f:ce:95:a4:5a:04:9a:15:49:
-                    98:cd:34:7c:c7:8c:a9:8a:32:82:ae:c0:d6:34:93:
-                    e7:d2:54:82:45:ee:eb:54:9a:96:d4:da:4b:24:f8:
-                    09:56:d8:cd:7f:ec:7b:f3:bd:db:9b:8c:b6:18:87:
-                    fa:07
-                Exponent: 65537 (0x10001)
-        X509v3 extensions:
-            X509v3 Basic Constraints: critical
-                CA:FALSE
-            X509v3 Key Usage: critical
-                Digital Signature
-            X509v3 Extended Key Usage: critical
-                Code Signing
-            X509v3 Subject Key Identifier: 
-                5D:4B:64:F2:FA:63:1E:5E:5F:DB:AA:DC:14:67:C6:6C:99:21:7A:22
-            X509v3 Authority Key Identifier: 
-                keyid:70:00:7F:99:20:9C:12:6B:E1:47:74:EA:EC:7B:6D:96:31:F3:4D:CA
-
-    Signature Algorithm: sha256WithRSAEncryption
-         39:4b:b5:cc:37:3f:cd:db:84:0f:63:7c:c4:e4:53:fb:5e:fd:
-         db:12:19:23:6f:0a:50:14:fd:4f:7c:f9:87:3d:f9:6d:5b:af:
-         07:a5:94:34:1b:84:07:f4:f1:a0:de:cc:73:87:99:31:c3:93:
-         66:c0:bc:f2:0f:b2:69:65:8e:da:b9:1a:8e:ae:38:56:f3:7c:
-         5a:8d:29:0d:3d:ad:84:e7:86:31:a2:8e:2a:a8:f8:f8:f7:87:
-         32:65:5d:81:47:53:b8:40:c5:1b:a7:46:1f:b0:60:a7:b4:97:
-         89:51:26:3c:de:46:b9:14:d5:a0:7d:99:cc:a7:7e:ed:89:18:
-         02:ce:e6:07:45:49:e2:04:7d:5b:03:65:ec:e6:c3:86:0d:82:
-         31:24:45:51:ec:15:ad:31:83:a8:1c:6e:52:4d:b8:0f:5d:0b:
-         e4:7b:51:49:39:46:8a:0b:fd:0c:46:af:b4:19:65:0f:12:f1:
-         fc:ee:fd:6b:4f:df:9a:73:7c:e0:c8:3d:c3:d5:b5:ab:4a:86:
-         36:97:e8:89:fb:af:f4:f1:c2:05:5d:17:fb:b6:df:a5:0e:45:
-         89:db:89:99:93:ce:f0:4e:e9:9c:f4:4a:03:b0:6e:be:a2:69:
-         ab:b1:f3:3b:ed:c7:97:f4:0e:0a:53:27:5a:7e:70:9a:35:ea:
-         7a:76:d1:bc
------BEGIN CERTIFICATE-----
-MIIDjjCCAnagAwIBAgIJAJPCBNi9d2sRMA0GCSqGSIb3DQEBCwUAMEYxIDAeBgNV
-BAMMF0NlbnRPUyBTZWN1cmUgQm9vdCBDQSAyMSIwIAYJKoZIhvcNAQkBFhNzZWN1
-cml0eUBjZW50b3Mub3JnMB4XDTIwMDYwOTEwMDQyMFoXDTM4MDExODEwMDQyMFow
-TTEnMCUGA1UEAwweQ2VudE9TIFNlY3VyZSBCb290IFNpZ25pbmcgMjAxMSIwIAYJ
-KoZIhvcNAQkBFhNzZWN1cml0eUBjZW50b3Mub3JnMIIBIjANBgkqhkiG9w0BAQEF
-AAOCAQ8AMIIBCgKCAQEAnu/+dhyfmz7y5MUpvRkyAVnz5pn667X4lAyVOmVesXLQ
-UD5wZIoa0fZNr21X7kBxQAndMAyBoYsmYxIHv+HRRZ+bCaZXmJ7vl+m9aDjqqmOS
-Lg0vjvu+iECbWeO8t2/ju2sebp7uV7goxtXWv0em6TipjwhzmEmoWNJic/EeRNSI
-PfmqQ+JyLtdDPh22ZfbRLu8xy59e49TqPCOaB6/5Su5DmnUG7ZpULO1byoWlEBbN
-MGTq1Sd+I/b87GmpQy94c2szeIv4VNs/zpWkWgSaFUmYzTR8x4ypijKCrsDWNJPn
-0lSCRe7rVJqW1NpLJPgJVtjNf+x7873bm4y2GIf6BwIDAQABo3gwdjAMBgNVHRMB
-Af8EAjAAMA4GA1UdDwEB/wQEAwIHgDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDAzAd
-BgNVHQ4EFgQUXUtk8vpjHl5f26rcFGfGbJkheiIwHwYDVR0jBBgwFoAUcAB/mSCc
-EmvhR3Tq7HttljHzTcowDQYJKoZIhvcNAQELBQADggEBADlLtcw3P83bhA9jfMTk
-U/te/dsSGSNvClAU/U98+Yc9+W1brwellDQbhAf08aDezHOHmTHDk2bAvPIPsmll
-jtq5Go6uOFbzfFqNKQ09rYTnhjGijiqo+Pj3hzJlXYFHU7hAxRunRh+wYKe0l4lR
-JjzeRrkU1aB9mcynfu2JGALO5gdFSeIEfVsDZezmw4YNgjEkRVHsFa0xg6gcblJN
-uA9dC+R7UUk5RooL/QxGr7QZZQ8S8fzu/WtP35pzfODIPcPVtatKhjaX6In7r/Tx
-wgVdF/u236UORYnbiZmTzvBO6Zz0SgOwbr6iaaux8zvtx5f0DgpTJ1p+cJo16np2
-0bw=
------END CERTIFICATE-----
diff --git a/kernel-source/thirdparty/SOURCES/centossecurebootca2.der b/kernel-source/thirdparty/SOURCES/centossecurebootca2.der
deleted file mode 100644
index 42bdfcf..0000000
--- a/kernel-source/thirdparty/SOURCES/centossecurebootca2.der
+++ /dev/null
Binary files differ
diff --git a/kernel-source/thirdparty/SOURCES/check-kabi b/kernel-source/thirdparty/SOURCES/check-kabi
deleted file mode 100755
index 9402ead..0000000
--- a/kernel-source/thirdparty/SOURCES/check-kabi
+++ /dev/null
@@ -1,146 +0,0 @@
-#!/usr/bin/python
-#
-# check-kabi - Red Hat kABI reference checking tool
-#
-# We use this script to check against reference Module.kabi files.
-#
-# Author: Jon Masters <jcm@redhat.com>
-# Copyright (C) 2007-2009 Red Hat, Inc.
-#
-# This software may be freely redistributed under the terms of the GNU
-# General Public License (GPL).
-
-# Changelog:
-# 
-# 2009/08/15 - Updated for use in RHEL6.
-# 2007/06/13 - Initial rewrite in python by Jon Masters.
-
-__author__ = "Jon Masters <jcm@redhat.com>"
-__version__ = "2.0"
-__date__ = "2009/08/15"
-__copyright__ = "Copyright (C) 2007-2009 Red Hat, Inc"
-__license__ = "GPL"
-
-import getopt
-import os
-import re
-import string
-import sys
-
-true = 1
-false = 0
-
-def load_symvers(symvers,filename):
-	"""Load a Module.symvers file."""
-
-	symvers_file = open(filename,"r")
-
-	while true:
-		in_line = symvers_file.readline()
-		if in_line == "":
-			break
-		if in_line == "\n":
-			continue
-		checksum,symbol,directory,type = string.split(in_line)
-
-		symvers[symbol] = in_line[0:-1]
-
-def load_kabi(kabi,filename):
-	"""Load a Module.kabi file."""
-
-	kabi_file = open(filename,"r")
-
-	while true:
-		in_line = kabi_file.readline()
-		if in_line == "":
-			break
-		if in_line == "\n":
-			continue
-		checksum,symbol,directory,type = string.split(in_line)
-
-		kabi[symbol] = in_line[0:-1]
-
-def check_kabi(symvers,kabi):
-	"""Check Module.kabi and Module.symvers files."""
-
-	fail=0
-	warn=0
-	changed_symbols=[]
-	moved_symbols=[]
-
-	for symbol in kabi:
-		abi_hash,abi_sym,abi_dir,abi_type = string.split(kabi[symbol])
-		if symvers.has_key(symbol):
-			sym_hash,sym_sym,sym_dir,sym_type = string.split(symvers[symbol])
-			if abi_hash != sym_hash:
-				fail=1
-				changed_symbols.append(symbol)
-
-			if abi_dir != sym_dir:
-				warn=1
-				moved_symbols.append(symbol)
-		else:
-			fail=1
-			changed_symbols.append(symbol)
-
-	if fail:
-		print "*** ERROR - ABI BREAKAGE WAS DETECTED ***"
-		print ""
-		print "The following symbols have been changed (this will cause an ABI breakage):"
-		print ""
-		for symbol in changed_symbols:
-			print symbol
-		print ""
-
-	if warn:
-		print "*** WARNING - ABI SYMBOLS MOVED ***"
-		print ""
-		print "The following symbols moved (typically caused by moving a symbol from being"
-		print "provided by the kernel vmlinux out to a loadable module):"
-		print ""
-		for symbol in moved_symbols:
-			print symbol
-		print ""
-
-	"""Halt the build, if we got errors and/or warnings. In either case,
-	   double-checkig is required to avoid introducing / concealing
-	   KABI inconsistencies."""
-	if fail or warn:
-		sys.exit(1)
-	sys.exit(0)
-
-def usage():
-	print """
-check-kabi: check Module.kabi and Module.symvers files.
-
-	check-kabi [ -k Module.kabi ] [ -s Module.symvers ]
-
-"""
-
-if __name__ == "__main__":
-
-	symvers_file = ""
-	kabi_file = ""
-
-	opts, args = getopt.getopt(sys.argv[1:], 'hk:s:')
-
-	for o, v in opts:
-		if o == "-s":
-			symvers_file = v
-		if o == "-h":
-			usage()
-			sys.exit(0)
-		if o == "-k":
-			kabi_file = v
-	
-	if (symvers_file == "") or (kabi_file == ""):
-		usage()
-		sys.exit(1)
-
-	symvers={}
-	kabi={}
-
-	load_symvers(symvers,symvers_file)
-	load_kabi(kabi,kabi_file)
-	check_kabi(symvers,kabi)
-
diff --git a/kernel-source/thirdparty/SOURCES/debrand-rh-i686-cpu.patch b/kernel-source/thirdparty/SOURCES/debrand-rh-i686-cpu.patch
deleted file mode 100644
index 739855c..0000000
--- a/kernel-source/thirdparty/SOURCES/debrand-rh-i686-cpu.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/arch/x86/boot/main.c	2014-06-04 10:05:04.000000000 -0700
-+++ b/arch/x86/boot/main.c	2014-07-09 12:54:40.000000000 -0700
-@@ -146,7 +146,7 @@ void main(void)
- 
- 	/* Make sure we have all the proper CPU support */
- 	if (validate_cpu()) {
--		puts("This processor is unsupported in RHEL7.\n");
-+		puts("This processor is unsupported in CentOS 7.\n");
- 		die();
- 	}
- 
diff --git a/kernel-source/thirdparty/SOURCES/debrand-rh_taint.patch b/kernel-source/thirdparty/SOURCES/debrand-rh_taint.patch
deleted file mode 100644
index 8ef4557..0000000
--- a/kernel-source/thirdparty/SOURCES/debrand-rh_taint.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 69c0d42cfa26515196896dea086857c2caccb6eb Mon Sep 17 00:00:00 2001
-From: Jim Perrin <jperrin@centos.org>
-Date: Thu, 19 Jun 2014 10:05:12 -0500
-Subject: [PATCH] branding patch for rh_taint
-
----
- kernel/rh_taint.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/kernel/rh_taint.c b/kernel/rh_taint.c
-index 59a74b0..0708e15 100644
---- a/kernel/rh_taint.c
-+++ b/kernel/rh_taint.c
-@@ -8,7 +8,7 @@
- void mark_hardware_unsupported(const char *msg)
- {
- 	/* Print one single message */
--	pr_crit("Warning: %s - this hardware has not undergone testing by Red Hat and might not be certified. Please consult https://hardware.redhat.com for certified hardware.\n", msg);
-+	pr_crit("Warning: %s - this hardware has not undergone upstream testing. Please consult http://wiki.centos.org/FAQ for more information\n", msg);
- }
- EXPORT_SYMBOL(mark_hardware_unsupported);
- 
--- 
-1.8.3.1
-
diff --git a/kernel-source/thirdparty/SOURCES/debrand-single-cpu.patch b/kernel-source/thirdparty/SOURCES/debrand-single-cpu.patch
deleted file mode 100644
index afd0e0c..0000000
--- a/kernel-source/thirdparty/SOURCES/debrand-single-cpu.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNrp linux-3.10.0-957.27.2.el7.x86_64.orig/arch/x86/kernel/setup.c linux-3.10.0-957.27.2.el7.x86_64/arch/x86/kernel/setup.c
---- linux-3.10.0-957.27.2.el7.x86_64.orig/arch/x86/kernel/setup.c	2019-07-09 16:13:02.000000000 +0000
-+++ linux-3.10.0-957.27.2.el7.x86_64/arch/x86/kernel/setup.c	2019-07-29 17:32:40.018405430 +0000
-@@ -963,7 +963,7 @@ static void rh_check_supported(void)
- 	if (((boot_cpu_data.x86_max_cores * smp_num_siblings) == 1) &&
- 	    !guest && !is_kdump_kernel()) {
- 		pr_crit("Detected single cpu native boot.\n");
--		pr_crit("Important:  In Red Hat Enterprise Linux 7, single threaded, single CPU 64-bit physical systems are unsupported by Red Hat. Please contact your Red Hat support representative for a list of certified and supported systems.");
-+		pr_crit("Important:  In CentOS Linux 7, single threaded, single CPU 64-bit physical systems are unsupported.");
- 	}
- 
- 	/* The RHEL7 kernel does not support this hardware.  The kernel will
diff --git a/kernel-source/thirdparty/SOURCES/extra_certificates b/kernel-source/thirdparty/SOURCES/extra_certificates
deleted file mode 100644
index e69de29..0000000
--- a/kernel-source/thirdparty/SOURCES/extra_certificates
+++ /dev/null
diff --git a/kernel-source/thirdparty/SOURCES/find-debuginfo.sh b/kernel-source/thirdparty/SOURCES/find-debuginfo.sh
deleted file mode 100755
index f7b7b0b..0000000
--- a/kernel-source/thirdparty/SOURCES/find-debuginfo.sh
+++ /dev/null
@@ -1,596 +0,0 @@
-#!/bin/bash
-
-# NB: this is a patched version of find-debuginfo.sh from rpm-build package,
-# this one supports parallel extraction. (We have ~4000 modules to process!)
-# See https://bugzilla.redhat.com/show_bug.cgi?id=1586159
-# for how to recreate this script from rpm*.src.rpm
-
-#find-debuginfo.sh - automagically generate debug info and file list
-#for inclusion in an rpm spec file.
-#
-# Usage: find-debuginfo.sh [--strict-build-id] [-g] [-r] [-m]
-#			   [-j N] [--jobs N]
-#			   [--g-libs]
-#	 		   [-o debugfiles.list]
-#			   [--run-dwz] [--dwz-low-mem-die-limit N]
-#			   [--dwz-max-die-limit N]
-#			   [[-l filelist]... [-p 'pattern'] -o debuginfo.list]
-#			   [builddir]
-#
-# The -g flag says to use strip -g instead of full strip on DSOs or EXEs.
-# The --g-libs flag says to use strip -g instead of full strip ONLY on DSOs.
-# Options -g and --g-libs are mutually exclusive.
-# The --strict-build-id flag says to exit with failure status if
-# any ELF binary processed fails to contain a build-id note.
-# The -r flag says to use eu-strip --reloc-debug-sections.
-#
-# The -j, --jobs N option will spawn N processes to do the debuginfo
-# extraction in parallel.
-#
-# A single -o switch before any -l or -p switches simply renames
-# the primary output file from debugfiles.list to something else.
-# A -o switch that follows a -p switch or some -l switches produces
-# an additional output file with the debuginfo for the files in
-# the -l filelist file, or whose names match the -p pattern.
-# The -p argument is an grep -E -style regexp matching the a file name,
-# and must not use anchors (^ or $).
-#
-# The --run-dwz flag instructs find-debuginfo.sh to run the dwz utility
-# if available, and --dwz-low-mem-die-limit and --dwz-max-die-limit
-# provide detailed limits.  See dwz(1) -l and -L option for details.
-#
-# All file names in switches are relative to builddir (. if not given).
-#
-
-# With -g arg, pass it to strip on libraries or executables.
-strip_g=false
-
-# With --g-libs arg, pass it to strip on libraries.
-strip_glibs=false
-
-# with -r arg, pass --reloc-debug-sections to eu-strip.
-strip_r=false
-
-# with -m arg, add minimal debuginfo to binary.
-include_minidebug=false
-
-# Barf on missing build IDs.
-strict=false
-
-# DWZ parameters.
-run_dwz=false
-dwz_low_mem_die_limit=
-dwz_max_die_limit=
-
-# Number of parallel jobs to spawn
-n_jobs=1
-
-BUILDDIR=.
-out=debugfiles.list
-nout=0
-while [ $# -gt 0 ]; do
-  case "$1" in
-  --strict-build-id)
-    strict=true
-    ;;
-  --run-dwz)
-    run_dwz=true
-    ;;
-  --dwz-low-mem-die-limit)
-    dwz_low_mem_die_limit=$2
-    shift
-    ;;
-  --dwz-max-die-limit)
-    dwz_max_die_limit=$2
-    shift
-    ;;
-  --g-libs)
-    strip_glibs=true
-    ;;
-  -g)
-    strip_g=true
-    ;;
-  -m)
-    include_minidebug=true
-    ;;
-  -o)
-    if [ -z "${lists[$nout]}" -a -z "${ptns[$nout]}" ]; then
-      out=$2
-    else
-      outs[$nout]=$2
-      ((nout++))
-    fi
-    shift
-    ;;
-  -l)
-    lists[$nout]="${lists[$nout]} $2"
-    shift
-    ;;
-  -p)
-    ptns[$nout]=$2
-    shift
-    ;;
-  -r)
-    strip_r=true
-    ;;
-  -j)
-    n_jobs=$2
-    shift
-    ;;
-  -j*)
-    n_jobs=${1#-j}
-    ;;
-  --jobs)
-    n_jobs=$2
-    shift
-    ;;
-  -*)
-    echo >&2 "find-debuginfo.sh: warning: unknown option '$1'"
-    ;;
-  *)
-    BUILDDIR=$1
-    shift
-    break
-    ;;
-  esac
-  shift
-done
-
-if ("$strip_g" = "true") && ("$strip_glibs" = "true"); then
-  echo >&2 "*** ERROR: -g  and --g-libs cannot be used together"
-  exit 2
-fi
-
-i=0
-while ((i < nout)); do
-  outs[$i]="$BUILDDIR/${outs[$i]}"
-  l=''
-  for f in ${lists[$i]}; do
-    l="$l $BUILDDIR/$f"
-  done
-  lists[$i]=$l
-  ((++i))
-done
-
-LISTFILE="$BUILDDIR/$out"
-SOURCEFILE="$BUILDDIR/debugsources.list"
-LINKSFILE="$BUILDDIR/debuglinks.list"
-ELFBINSFILE="$BUILDDIR/elfbins.list"
-
-> "$SOURCEFILE"
-> "$LISTFILE"
-> "$LINKSFILE"
-> "$ELFBINSFILE"
-
-debugdir="${RPM_BUILD_ROOT}/usr/lib/debug"
-
-strip_to_debug()
-{
-  local g=
-  local r=
-  $strip_r && r=--reloc-debug-sections
-  $strip_g && case "$(file -bi "$2")" in
-  application/x-sharedlib*) g=-g ;;
-  application/x-executable*) g=-g ;;
-  esac
-  $strip_glibs && case "$(file -bi "$2")" in
-    application/x-sharedlib*) g=-g ;;
-  esac
-  eu-strip --remove-comment $r $g -f "$1" "$2" || exit
-  chmod 444 "$1" || exit
-}
-
-add_minidebug()
-{
-  local debuginfo="$1"
-  local binary="$2"
-
-  local dynsyms=`mktemp`
-  local funcsyms=`mktemp`
-  local keep_symbols=`mktemp`
-  local mini_debuginfo=`mktemp`
-
-  # Extract the dynamic symbols from the main binary, there is no need to also have these
-  # in the normal symbol table
-  nm -D "$binary" --format=posix --defined-only | awk '{ print $1 }' | sort > "$dynsyms"
-  # Extract all the text (i.e. function) symbols from the debuginfo 
-  # Use format sysv to make sure we can match against the actual ELF FUNC
-  # symbol type. The binutils nm posix format symbol type chars are
-  # ambigous for architectures that might use function descriptors.
-  nm "$debuginfo" --format=sysv --defined-only | awk -F \| '{ if ($4 ~ "FUNC") print $1 }' | sort > "$funcsyms"
-  # Keep all the function symbols not already in the dynamic symbol table
-  comm -13 "$dynsyms" "$funcsyms" > "$keep_symbols"
-  # Copy the full debuginfo, keeping only a minumal set of symbols and removing some unnecessary sections
-  objcopy -S --remove-section .gdb_index --remove-section .comment --keep-symbols="$keep_symbols" "$debuginfo" "$mini_debuginfo" &> /dev/null
-  #Inject the compressed data into the .gnu_debugdata section of the original binary
-  xz "$mini_debuginfo"
-  mini_debuginfo="${mini_debuginfo}.xz"
-  objcopy --add-section .gnu_debugdata="$mini_debuginfo" "$binary"
-  rm -f "$dynsyms" "$funcsyms" "$keep_symbols" "$mini_debuginfo"
-}
-
-# Make a relative symlink to $1 called $3$2
-shopt -s extglob
-link_relative()
-{
-  local t="$1" f="$2" pfx="$3"
-  local fn="${f#/}" tn="${t#/}"
-  local fd td d
-
-  while fd="${fn%%/*}"; td="${tn%%/*}"; [ "$fd" = "$td" ]; do
-    fn="${fn#*/}"
-    tn="${tn#*/}"
-  done
-
-  d="${fn%/*}"
-  if [ "$d" != "$fn" ]; then
-    d="${d//+([!\/])/..}"
-    tn="${d}/${tn}"
-  fi
-
-  mkdir -p "$(dirname "$pfx$f")" && ln -snf "$tn" "$pfx$f"
-}
-
-# Make a symlink in /usr/lib/debug/$2 to $1
-debug_link()
-{
-  local l="/usr/lib/debug$2"
-  local t="$1"
-  echo >> "$LINKSFILE" "$l $t"
-  link_relative "$t" "$l" "$RPM_BUILD_ROOT"
-}
-
-# Provide .2, .3, ... symlinks to all filename instances of this build-id.
-make_id_dup_link()
-{
-  local id="$1" file="$2" idfile
-
-  local n=1
-  while true; do
-    idfile=".build-id/${id:0:2}/${id:2}.$n"
-    [ $# -eq 3 ] && idfile="${idfile}$3"
-    if [ ! -L "$RPM_BUILD_ROOT/usr/lib/debug/$idfile" ]; then
-      break
-    fi
-    n=$[$n+1]
-  done
-  debug_link "$file" "/$idfile"
-}
-
-# Make a build-id symlink for id $1 with suffix $3 to file $2.
-make_id_link()
-{
-  local id="$1" file="$2"
-  local idfile=".build-id/${id:0:2}/${id:2}"
-  [ $# -eq 3 ] && idfile="${idfile}$3"
-  local root_idfile="$RPM_BUILD_ROOT/usr/lib/debug/$idfile"
-
-  if [ ! -L "$root_idfile" ]; then
-    debug_link "$file" "/$idfile"
-    return
-  fi
-
-  make_id_dup_link "$@"
-
-  [ $# -eq 3 ] && return 0
-
-  local other=$(readlink -m "$root_idfile")
-  other=${other#$RPM_BUILD_ROOT}
-  if cmp -s "$root_idfile" "$RPM_BUILD_ROOT$file" ||
-     eu-elfcmp -q "$root_idfile" "$RPM_BUILD_ROOT$file" 2> /dev/null; then
-    # Two copies.  Maybe one has to be setuid or something.
-    echo >&2 "*** WARNING: identical binaries are copied, not linked:"
-    echo >&2 "        $file"
-    echo >&2 "   and  $other"
-  else
-    # This is pathological, break the build.
-    echo >&2 "*** ERROR: same build ID in nonidentical files!"
-    echo >&2 "        $file"
-    echo >&2 "   and  $other"
-    exit 2
-  fi
-}
-
-get_debugfn()
-{
-  dn=$(dirname "${1#$RPM_BUILD_ROOT}")
-  bn=$(basename "$1" .debug).debug
-
-  debugdn=${debugdir}${dn}
-  debugfn=${debugdn}/${bn}
-}
-
-set -o pipefail
-
-strict_error=ERROR
-$strict || strict_error=WARNING
-
-temp=$(mktemp -d ${TMPDIR:-/tmp}/find-debuginfo.XXXXXX)
-trap 'rm -rf "$temp"' EXIT
-
-# Build a list of unstripped ELF files and their hardlinks
-touch "$temp/primary"
-find "$RPM_BUILD_ROOT" ! -path "${debugdir}/*.debug" -type f \
-     		     \( -perm -0100 -or -perm -0010 -or -perm -0001 \) \
-		     -print |
-file -N -f - | sed -n -e 's/^\(.*\):[ 	]*.*ELF.*, not stripped.*/\1/p' |
-xargs --no-run-if-empty stat -c '%h %D_%i %n' |
-while read nlinks inum f; do
-  if [ $nlinks -gt 1 ]; then
-    var=seen_$inum
-    if test -n "${!var}"; then
-      echo "$inum $f" >>"$temp/linked"
-      continue
-    else
-      read "$var" < <(echo 1)
-    fi
-  fi
-  echo "$nlinks $inum $f" >>"$temp/primary"
-done
-
-# Strip ELF binaries
-do_file()
-{
-  local nlinks=$1 inum=$2 f=$3 id link linked
-
-  get_debugfn "$f"
-  [ -f "${debugfn}" ] && return
-
-  echo "extracting debug info from $f"
-  id=$(/usr/lib/rpm/debugedit -b "$RPM_BUILD_DIR" -d /usr/src/debug \
-			      -i -l "$SOURCEFILE" "$f") || exit
-  if [ -z "$id" ]; then
-    echo >&2 "*** ${strict_error}: No build ID note found in $f"
-    $strict && exit 2
-  fi
-
-  [ -x /usr/bin/gdb-add-index ] && /usr/bin/gdb-add-index "$f" > /dev/null 2>&1
-
-  # A binary already copied into /usr/lib/debug doesn't get stripped,
-  # just has its file names collected and adjusted.
-  case "$dn" in
-  /usr/lib/debug/*)
-    [ -z "$id" ] || make_id_link "$id" "$dn/$(basename $f)"
-    return ;;
-  esac
-
-  mkdir -p "${debugdn}"
-  if test -w "$f"; then
-    strip_to_debug "${debugfn}" "$f"
-  else
-    chmod u+w "$f"
-    strip_to_debug "${debugfn}" "$f"
-    chmod u-w "$f"
-  fi
-
-  # strip -g implies we have full symtab, don't add mini symtab in that case.
-  # It only makes sense to add a minisymtab for executables and shared
-  # libraries. Other executable ELF files (like kernel modules) don't need it.
-  if [ "$include_minidebug" = "true" -a "$strip_g" = "false" ]; then
-    skip_mini=true
-    if [ "$strip_glibs" = "false" ]; then
-      case "$(file -bi "$f")" in
-        application/x-sharedlib*) skip_mini=false ;;
-      esac
-    fi
-    case "$(file -bi "$f")" in
-      application/x-sharedlib*) skip_mini=false ;;
-      application/x-executable*) skip_mini=false ;;
-      application/x-pie-executable*) skip_mini=false ;;
-    esac
-    $skip_mini || add_minidebug "${debugfn}" "$f"
-  fi
-
-  echo "./${f#$RPM_BUILD_ROOT}" >> "$ELFBINSFILE"
-  
-  if [ -n "$id" ]; then
-    make_id_link "$id" "$dn/$(basename $f)"
-    make_id_link "$id" "/usr/lib/debug$dn/$bn" .debug
-  fi
-
-  # If this file has multiple links, make the corresponding .debug files
-  # all links to one file too.
-  if [ $nlinks -gt 1 ]; then
-    grep "^$inum " "$temp/linked" | while read inum linked; do
-      make_id_dup_link "$id" "$dn/$(basename $f)"
-      make_id_dup_link "$id" "/usr/lib/debug$dn/$bn" .debug
-      link=$debugfn
-      get_debugfn "$linked"
-      echo "hard linked $link to $debugfn"
-      mkdir -p "$(dirname "$debugfn")" && ln -nf "$link" "$debugfn"
-    done
-  fi
-}
-
-# 16^6 - 1 or about 16 milion files
-FILENUM_DIGITS=6
-run_job()
-{
-  local jobid=$1 filenum
-  local SOURCEFILE=$temp/debugsources.$jobid ELFBINSFILE=$temp/elfbins.$jobid
-
-  >"$SOURCEFILE"
-  >"$ELFBINSFILE"
-  # can't use read -n <n>, because it reads bytes one by one, allowing for
-  # races
-  while :; do
-    filenum=$(dd bs=$(( FILENUM_DIGITS + 1 )) count=1 status=none)
-    if test -z "$filenum"; then
-      break
-    fi
-    do_file $(sed -n "$(( 0x$filenum )) p" "$temp/primary")
-  done
-  echo 0 >"$temp/res.$jobid"
-}
-
-n_files=$(wc -l <"$temp/primary")
-if [ $n_jobs -gt $n_files ]; then
-  n_jobs=$n_files
-fi
-if [ $n_jobs -le 1 ]; then
-  while read nlinks inum f; do
-    do_file "$nlinks" "$inum" "$f"
-  done <"$temp/primary"
-else
-  for ((i = 1; i <= n_files; i++)); do
-    printf "%0${FILENUM_DIGITS}x\\n" $i
-  done | (
-    exec 3<&0
-    for ((i = 0; i < n_jobs; i++)); do
-      # The shell redirects stdin to /dev/null for background jobs. Work
-      # around this by duplicating fd 0
-      run_job $i <&3 &
-    done
-    wait
-  )
-  for f in "$temp"/res.*; do
-    res=$(< "$f")
-    if [ "$res" !=  "0" ]; then
-      exit 1
-    fi
-  done
-  cat "$temp"/debugsources.* >"$SOURCEFILE"
-  cat "$temp"/elfbins.* >"$ELFBINSFILE"
-fi
-
-# Invoke the DWARF Compressor utility.
-if $run_dwz && type dwz >/dev/null 2>&1 \
-   && [ -d "${RPM_BUILD_ROOT}/usr/lib/debug" ]; then
-  dwz_files="`cd "${RPM_BUILD_ROOT}/usr/lib/debug"; find -type f -name \*.debug`"
-  if [ -n "${dwz_files}" ]; then
-    dwz_multifile_name="${RPM_PACKAGE_NAME}-${RPM_PACKAGE_VERSION}-${RPM_PACKAGE_RELEASE}.${RPM_ARCH}"
-    dwz_multifile_suffix=
-    dwz_multifile_idx=0
-    while [ -f "${RPM_BUILD_ROOT}/usr/lib/debug/.dwz/${dwz_multifile_name}${dwz_multifile_suffix}" ]; do
-      let ++dwz_multifile_idx
-      dwz_multifile_suffix=".${dwz_multifile_idx}"
-    done
-    dwz_multfile_name="${dwz_multifile_name}${dwz_multifile_suffix}"
-    dwz_opts="-h -q -r -m .dwz/${dwz_multifile_name}"
-    mkdir -p "${RPM_BUILD_ROOT}/usr/lib/debug/.dwz"
-    [ -n "${dwz_low_mem_die_limit}" ] \
-      && dwz_opts="${dwz_opts} -l ${dwz_low_mem_die_limit}"
-    [ -n "${dwz_max_die_limit}" ] \
-      && dwz_opts="${dwz_opts} -L ${dwz_max_die_limit}"
-    ( cd "${RPM_BUILD_ROOT}/usr/lib/debug" && dwz $dwz_opts $dwz_files )
-    # Remove .dwz directory if empty
-    rmdir "${RPM_BUILD_ROOT}/usr/lib/debug/.dwz" 2>/dev/null
-    if [ -f "${RPM_BUILD_ROOT}/usr/lib/debug/.dwz/${dwz_multifile_name}" ]; then
-      id="`readelf -Wn "${RPM_BUILD_ROOT}/usr/lib/debug/.dwz/${dwz_multifile_name}" \
-	     2>/dev/null | sed -n 's/^    Build ID: \([0-9a-f]\+\)/\1/p'`"
-      [ -n "$id" ] \
-	&& make_id_link "$id" "/usr/lib/debug/.dwz/${dwz_multifile_name}" .debug
-    fi
-  fi
-fi
-
-# dwz invalidates .gnu_debuglink CRC32 in the main files.
-cat "$ELFBINSFILE" |
-(cd "$RPM_BUILD_ROOT"; xargs -d '\n' /usr/lib/rpm/sepdebugcrcfix usr/lib/debug)
-
-# For each symlink whose target has a .debug file,
-# make a .debug symlink to that file.
-find "$RPM_BUILD_ROOT" ! -path "${debugdir}/*" -type l -print |
-while read f
-do
-  t=$(readlink -m "$f").debug
-  f=${f#$RPM_BUILD_ROOT}
-  t=${t#$RPM_BUILD_ROOT}
-  if [ -f "$debugdir$t" ]; then
-    echo "symlinked /usr/lib/debug$t to /usr/lib/debug${f}.debug"
-    debug_link "/usr/lib/debug$t" "${f}.debug"
-  fi
-done
-
-if [ -s "$SOURCEFILE" ]; then
-  mkdir -p "${RPM_BUILD_ROOT}/usr/src/debug"
-  LC_ALL=C sort -z -u "$SOURCEFILE" | grep -E -v -z '(<internal>|<built-in>)$' |
-  (cd "$RPM_BUILD_DIR"; cpio -pd0mL "${RPM_BUILD_ROOT}/usr/src/debug")
-  # stupid cpio creates new directories in mode 0700,
-  # and non-standard modes may be inherented from original directories, fixup
-  find "${RPM_BUILD_ROOT}/usr/src/debug" -type d -print0 |
-  xargs --no-run-if-empty -0 chmod 0755
-fi
-
-if [ -d "${RPM_BUILD_ROOT}/usr/lib" -o -d "${RPM_BUILD_ROOT}/usr/src" ]; then
-  ((nout > 0)) ||
-  test ! -d "${RPM_BUILD_ROOT}/usr/lib" ||
-  (cd "${RPM_BUILD_ROOT}/usr/lib"; find debug -type d) |
-  sed 's,^,%dir /usr/lib/,' >> "$LISTFILE"
-
-  (cd "${RPM_BUILD_ROOT}/usr"
-   test ! -d lib/debug || find lib/debug ! -type d
-   test ! -d src/debug || find src/debug -mindepth 1 -maxdepth 1
-  ) | sed 's,^,/usr/,' >> "$LISTFILE"
-fi
-
-# Append to $1 only the lines from stdin not already in the file.
-append_uniq()
-{
-  grep -F -f "$1" -x -v >> "$1"
-}
-
-# Helper to generate list of corresponding .debug files from a file list.
-filelist_debugfiles()
-{
-  local extra="$1"
-  shift
-  sed 's/^%[a-z0-9_][a-z0-9_]*([^)]*) *//
-s/^%[a-z0-9_][a-z0-9_]* *//
-/^$/d
-'"$extra" "$@"
-}
-
-# Write an output debuginfo file list based on given input file lists.
-filtered_list()
-{
-  local out="$1"
-  shift
-  test $# -gt 0 || return
-  grep -F -f <(filelist_debugfiles 's,^.*$,/usr/lib/debug&.debug,' "$@") \
-  	-x $LISTFILE >> $out
-  sed -n -f <(filelist_debugfiles 's/[\\.*+#]/\\&/g
-h
-s,^.*$,s# &$##p,p
-g
-s,^.*$,s# /usr/lib/debug&.debug$##p,p
-' "$@") "$LINKSFILE" | append_uniq "$out"
-}
-
-# Write an output debuginfo file list based on an grep -E -style regexp.
-pattern_list()
-{
-  local out="$1" ptn="$2"
-  test -n "$ptn" || return
-  grep -E -x -e "$ptn" "$LISTFILE" >> "$out"
-  sed -n -r "\#^$ptn #s/ .*\$//p" "$LINKSFILE" | append_uniq "$out"
-}
-
-#
-# When given multiple -o switches, split up the output as directed.
-#
-i=0
-while ((i < nout)); do
-  > ${outs[$i]}
-  filtered_list ${outs[$i]} ${lists[$i]}
-  pattern_list ${outs[$i]} "${ptns[$i]}"
-  grep -Fvx -f ${outs[$i]} "$LISTFILE" > "${LISTFILE}.new"
-  mv "${LISTFILE}.new" "$LISTFILE"
-  ((++i))
-done
-if ((nout > 0)); then
-  # Now add the right %dir lines to each output list.
-  (cd "${RPM_BUILD_ROOT}"; find usr/lib/debug -type d) |
-  sed 's#^.*$#\\@^/&/@{h;s@^.*$@%dir /&@p;g;}#' |
-  LC_ALL=C sort -ur > "${LISTFILE}.dirs.sed"
-  i=0
-  while ((i < nout)); do
-    sed -n -f "${LISTFILE}.dirs.sed" "${outs[$i]}" | sort -u > "${outs[$i]}.new"
-    cat "${outs[$i]}" >> "${outs[$i]}.new"
-    mv -f "${outs[$i]}.new" "${outs[$i]}"
-    ((++i))
-  done
-  sed -n -f "${LISTFILE}.dirs.sed" "${LISTFILE}" | sort -u > "${LISTFILE}.new"
-  cat "$LISTFILE" >> "${LISTFILE}.new"
-  mv "${LISTFILE}.new" "$LISTFILE"
-fi
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64-debug.config b/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64-debug.config
deleted file mode 100644
index fe1d1f4..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64-debug.config
+++ /dev/null
@@ -1,5681 +0,0 @@
-# powerpc
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/powerpc 3.10.0 Kernel Configuration
-#
-CONFIG_PPC64=y
-
-#
-# Processor support
-#
-CONFIG_PPC_BOOK3S_64=y
-# CONFIG_PPC_BOOK3E_64 is not set
-CONFIG_GENERIC_CPU=y
-# CONFIG_CELL_CPU is not set
-# CONFIG_POWER4_CPU is not set
-# CONFIG_POWER5_CPU is not set
-# CONFIG_POWER6_CPU is not set
-# CONFIG_POWER7_CPU is not set
-# CONFIG_POWER8_CPU is not set
-CONFIG_PPC_BOOK3S=y
-CONFIG_POWER3=y
-CONFIG_POWER4=y
-# CONFIG_TUNE_CELL is not set
-CONFIG_PPC_FPU=y
-CONFIG_ALTIVEC=y
-CONFIG_VSX=y
-CONFIG_PPC_ICSWX=y
-# CONFIG_PPC_ICSWX_PID is not set
-# CONFIG_PPC_ICSWX_USE_SIGILL is not set
-CONFIG_PPC_STD_MMU=y
-CONFIG_PPC_STD_MMU_64=y
-CONFIG_PPC_MM_SLICES=y
-CONFIG_PPC_HAVE_PMU_SUPPORT=y
-CONFIG_PPC_PERF_CTRS=y
-CONFIG_SMP=y
-CONFIG_NR_CPUS=2048
-CONFIG_PPC_DOORBELL=y
-CONFIG_CPU_BIG_ENDIAN=y
-# CONFIG_CPU_LITTLE_ENDIAN is not set
-CONFIG_64BIT=y
-CONFIG_WORD_SIZE=64
-CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_MMU=y
-CONFIG_ARCH_MMAP_RND_BITS_MAX=28
-CONFIG_ARCH_MMAP_RND_BITS_MIN=14
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=13
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7
-CONFIG_HAVE_SETUP_PER_CPU_AREA=y
-CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
-CONFIG_NR_IRQS=512
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-CONFIG_ARCH_HAS_ILOG2_U32=y
-CONFIG_ARCH_HAS_ILOG2_U64=y
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK=y
-CONFIG_PPC=y
-CONFIG_PPC_BARRIER_NOSPEC=y
-# CONFIG_GENERIC_CSUM is not set
-CONFIG_EARLY_PRINTK=y
-CONFIG_PANIC_TIMEOUT=180
-CONFIG_COMPAT=y
-CONFIG_SYSVIPC_COMPAT=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_ARCH_MAY_HAVE_PC_FDC=y
-CONFIG_PPC_OF=y
-CONFIG_PPC_UDBG_16550=y
-# CONFIG_GENERIC_TBSYNC is not set
-CONFIG_AUDIT_ARCH=y
-CONFIG_GENERIC_BUG=y
-CONFIG_EPAPR_BOOT=y
-# CONFIG_DEFAULT_UIMAGE is not set
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_ARCH_SUSPEND_POSSIBLE=y
-# CONFIG_PPC_DCR_NATIVE is not set
-# CONFIG_PPC_DCR_MMIO is not set
-# CONFIG_PPC_OF_PLATFORM_PCI is not set
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_PPC_EMULATE_SSTEP=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
-CONFIG_AUDIT=y
-CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
-CONFIG_AUDIT_TREE=y
-CONFIG_HAVE_GENERIC_HARDIRQS=y
-
-#
-# IRQ subsystem
-#
-CONFIG_GENERIC_HARDIRQS=y
-CONFIG_GENERIC_IRQ_SHOW=y
-CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
-CONFIG_HARDIRQS_SW_RESEND=y
-CONFIG_IRQ_DOMAIN=y
-# CONFIG_IRQ_DOMAIN_DEBUG is not set
-CONFIG_IRQ_FORCED_THREADING=y
-CONFIG_SPARSE_IRQ=y
-CONFIG_GENERIC_TIME_VSYSCALL_OLD=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-CONFIG_ARCH_HAS_TICK_BROADCAST=y
-CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
-CONFIG_GENERIC_CMOS_UPDATE=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-# CONFIG_NO_HZ_IDLE is not set
-CONFIG_NO_HZ_FULL=y
-# CONFIG_NO_HZ_FULL_ALL is not set
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_BSD_PROCESS_ACCT_V3=y
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_CONTEXT_TRACKING=y
-CONFIG_RCU_USER_QS=y
-# CONFIG_CONTEXT_TRACKING_FORCE is not set
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-# CONFIG_BUILD_BIN2C is not set
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=20
-CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
-CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
-CONFIG_NUMA_BALANCING=y
-CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
-CONFIG_MEMCG=y
-CONFIG_MEMCG_SWAP=y
-CONFIG_MEMCG_SWAP_ENABLED=y
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-CONFIG_DEBUG_BLK_CGROUP=y
-# CONFIG_CHECKPOINT_RESTORE is not set
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-CONFIG_SCHED_AUTOGROUP=y
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_HAVE_PCSPKR_PLATFORM=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_PCSPKR_PLATFORM=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-CONFIG_USERFAULTFD=y
-CONFIG_PCI_QUIRKS=y
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_OPROFILE=m
-CONFIG_HAVE_OPROFILE=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_ARCH_USE_BUILTIN_BSWAP=y
-CONFIG_KRETPROBES=y
-CONFIG_HAVE_IOREMAP_PROT=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_HW_BREAKPOINT=y
-CONFIG_HAVE_PERF_EVENTS_NMI=y
-CONFIG_HAVE_PERF_REGS=y
-CONFIG_HAVE_PERF_USER_STACK_DUMP=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_HAVE_RCU_TABLE_FREE=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-# CONFIG_CC_STACKPROTECTOR is not set
-CONFIG_HAVE_CONTEXT_TRACKING=y
-CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
-CONFIG_ARCH_MMAP_RND_BITS=14
-CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS=7
-CONFIG_CLONE_BACKWARDS=y
-CONFIG_OLD_SIGSUSPEND=y
-CONFIG_COMPAT_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
-CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_SHA1=y
-# CONFIG_MODULE_SIG_SHA224 is not set
-# CONFIG_MODULE_SIG_SHA256 is not set
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha1"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-CONFIG_OSF_PARTITION=y
-CONFIG_AMIGA_PARTITION=y
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_MAC_PARTITION=y
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-# CONFIG_LDM_PARTITION is not set
-CONFIG_SGI_PARTITION=y
-# CONFIG_ULTRIX_PARTITION is not set
-CONFIG_SUN_PARTITION=y
-CONFIG_KARMA_PARTITION=y
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_BLOCK_COMPAT=y
-CONFIG_BLK_MQ_PCI=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
-CONFIG_MQ_IOSCHED_DEADLINE=y
-CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PREEMPT_NOTIFIERS=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_UNINLINE_SPIN_UNLOCK=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_FREEZER=y
-CONFIG_PPC_MSI_BITMAP=y
-CONFIG_PPC_XICS=y
-CONFIG_PPC_ICP_NATIVE=y
-CONFIG_PPC_ICP_HV=y
-CONFIG_PPC_ICS_RTAS=y
-CONFIG_PPC_SCOM=y
-# CONFIG_SCOM_DEBUGFS is not set
-# CONFIG_GE_FPGA is not set
-
-#
-# Platform support
-#
-CONFIG_PPC_POWERNV=y
-# CONFIG_OPAL_PRD is not set
-CONFIG_PPC_PSERIES=y
-CONFIG_PPC_SPLPAR=y
-CONFIG_PSERIES_MSI=y
-CONFIG_PSERIES_ENERGY=m
-CONFIG_SCANLOG=y
-CONFIG_IO_EVENT_IRQ=y
-CONFIG_LPARCFG=y
-CONFIG_PPC_SMLPAR=y
-CONFIG_CMM=y
-CONFIG_HV_PERF_CTRS=y
-CONFIG_DTL=y
-# CONFIG_PPC_PMAC is not set
-# CONFIG_PPC_MAPLE is not set
-# CONFIG_PPC_PASEMI is not set
-# CONFIG_PPC_PS3 is not set
-# CONFIG_PPC_CELL is not set
-# CONFIG_PPC_CELL_NATIVE is not set
-# CONFIG_PPC_IBM_CELL_BLADE is not set
-# CONFIG_PPC_CELL_QPACE is not set
-# CONFIG_PQ2ADS is not set
-# CONFIG_PPC_WSP is not set
-CONFIG_KVM_GUEST=y
-CONFIG_EPAPR_PARAVIRT=y
-CONFIG_PPC_NATIVE=y
-CONFIG_PPC_OF_BOOT_TRAMPOLINE=y
-# CONFIG_UDBG_RTAS_CONSOLE is not set
-CONFIG_PPC_SMP_MUXED_IPI=y
-# CONFIG_IPIC is not set
-CONFIG_MPIC=y
-# CONFIG_PPC_EPAPR_HV_PIC is not set
-# CONFIG_MPIC_WEIRD is not set
-# CONFIG_MPIC_MSGR is not set
-CONFIG_PPC_I8259=y
-# CONFIG_U3_DART is not set
-CONFIG_PPC_RTAS=y
-CONFIG_RTAS_ERROR_LOGGING=y
-CONFIG_PPC_RTAS_DAEMON=y
-CONFIG_RTAS_PROC=y
-CONFIG_RTAS_FLASH=y
-# CONFIG_MMIO_NVRAM is not set
-# CONFIG_MPIC_U3_HT_IRQS is not set
-CONFIG_IBMVIO=y
-CONFIG_IBMEBUS=y
-CONFIG_EEH=y
-# CONFIG_PPC_MPC106 is not set
-# CONFIG_PPC_970_NAP is not set
-CONFIG_PPC_P7_NAP=y
-CONFIG_PPC_INDIRECT_PIO=y
-
-#
-# CPU Frequency scaling
-#
-CONFIG_CPU_FREQ=y
-CONFIG_CPU_FREQ_GOV_COMMON=y
-CONFIG_CPU_FREQ_STAT=m
-CONFIG_CPU_FREQ_STAT_DETAILS=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
-CONFIG_CPU_FREQ_GOV_POWERSAVE=y
-CONFIG_CPU_FREQ_GOV_USERSPACE=y
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
-CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
-
-#
-# PowerPC CPU frequency scaling drivers
-#
-CONFIG_POWERNV_CPUFREQ=y
-
-#
-# CPUIdle driver
-#
-CONFIG_CPU_IDLE=y
-# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
-# CONFIG_CPU_IDLE_GOV_LADDER is not set
-CONFIG_CPU_IDLE_GOV_MENU=y
-
-#
-# POWERPC CPU Idle Drivers
-#
-CONFIG_PSERIES_CPUIDLE=y
-CONFIG_POWERNV_CPUIDLE=y
-# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
-# CONFIG_FSL_ULI1575 is not set
-CONFIG_SIMPLE_GPIO=y
-
-#
-# Kernel options
-#
-CONFIG_HZ_100=y
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-# CONFIG_HZ_1000 is not set
-CONFIG_HZ=100
-CONFIG_SCHED_HRTICK=y
-# CONFIG_PREEMPT_NONE is not set
-CONFIG_PREEMPT_VOLUNTARY=y
-# CONFIG_PREEMPT is not set
-CONFIG_PREEMPT_COUNT=y
-CONFIG_BINFMT_ELF=y
-CONFIG_COMPAT_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_COREDUMP=y
-CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y
-CONFIG_PPC_TRANSACTIONAL_MEM=y
-CONFIG_IOMMU_HELPER=y
-CONFIG_SWIOTLB=y
-CONFIG_HOTPLUG_CPU=y
-CONFIG_ARCH_CPU_PROBE_RELEASE=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_HAS_WALK_MEMORY=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_KEXEC=y
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_CRASH_DUMP=y
-CONFIG_FA_DUMP=y
-CONFIG_IRQ_ALL_CPUS=y
-CONFIG_NUMA=y
-CONFIG_NODES_SHIFT=8
-CONFIG_USE_PERCPU_NUMA_NODE_ID=y
-CONFIG_HAVE_MEMORYLESS_NODES=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_SYS_SUPPORTS_HUGETLBFS=y
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_NEED_MULTIPLE_NODES=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_MEMORY_ISOLATION=y
-CONFIG_HAVE_BOOTMEM_INFO_NODE=y
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_MMU_NOTIFIER=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_MEMORY_FAILURE=y
-CONFIG_HWPOISON_INJECT=m
-CONFIG_TRANSPARENT_HUGEPAGE=y
-# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
-CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-CONFIG_FRONTSWAP=y
-CONFIG_CMA=y
-# CONFIG_CMA_DEBUG is not set
-CONFIG_ZSWAP=y
-CONFIG_ZPOOL=y
-CONFIG_ZBUD=y
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-CONFIG_PERCPU_STATS=y
-CONFIG_ARCH_MEMORY_PROBE=y
-CONFIG_NODES_SPAN_OTHER_NODES=y
-CONFIG_PPC_HAS_HASH_64K=y
-# CONFIG_PPC_4K_PAGES is not set
-CONFIG_PPC_64K_PAGES=y
-CONFIG_FORCE_MAX_ZONEORDER=9
-CONFIG_PPC_SUBPAGE_PROT=y
-CONFIG_PPC_COPRO_BASE=y
-CONFIG_SCHED_SMT=y
-CONFIG_PPC_DENORMALISATION=y
-# CONFIG_CMDLINE_BOOL is not set
-CONFIG_EXTRA_TARGETS=""
-CONFIG_SUSPEND=y
-CONFIG_SUSPEND_FREEZER=y
-# CONFIG_HIBERNATION is not set
-CONFIG_PM_SLEEP=y
-CONFIG_PM_SLEEP_SMP=y
-# CONFIG_PM_AUTOSLEEP is not set
-# CONFIG_PM_WAKELOCKS is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-# CONFIG_PM_TEST_SUSPEND is not set
-CONFIG_PM_SLEEP_DEBUG=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_SECCOMP=y
-CONFIG_PPC_RTAS_FILTER=y
-CONFIG_ISA_DMA_API=y
-
-#
-# Bus options
-#
-CONFIG_ZONE_DMA=y
-CONFIG_NEED_DMA_MAP_STATE=y
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_GENERIC_ISA_DMA=y
-# CONFIG_PPC_INDIRECT_PCI is not set
-CONFIG_PCI=y
-CONFIG_PCI_DOMAINS=y
-CONFIG_PCI_SYSCALL=y
-CONFIG_PCIEPORTBUS=y
-# CONFIG_HOTPLUG_PCI_PCIE is not set
-CONFIG_PCIEAER=y
-CONFIG_PCIE_ECRC=y
-CONFIG_PCIEAER_INJECT=m
-CONFIG_PCIEASPM=y
-# CONFIG_PCIEASPM_DEBUG is not set
-CONFIG_PCIEASPM_DEFAULT=y
-# CONFIG_PCIEASPM_POWERSAVE is not set
-# CONFIG_PCIEASPM_PERFORMANCE is not set
-CONFIG_PCIE_PME=y
-# CONFIG_PCIE_DPC is not set
-CONFIG_PCI_BUS_ADDR_T_64BIT=y
-CONFIG_PCI_MSI=y
-# CONFIG_PCI_DEBUG is not set
-# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
-CONFIG_PCI_STUB=y
-CONFIG_PCI_ATS=y
-CONFIG_PCI_IOV=y
-CONFIG_PCI_PRI=y
-CONFIG_PCI_PASID=y
-CONFIG_HOTPLUG_PCI=y
-# CONFIG_HOTPLUG_PCI_CPCI is not set
-CONFIG_HOTPLUG_PCI_SHPC=y
-CONFIG_HOTPLUG_PCI_RPA=m
-CONFIG_HOTPLUG_PCI_RPA_DLPAR=m
-CONFIG_PCCARD=y
-# CONFIG_PCMCIA is not set
-CONFIG_CARDBUS=y
-
-#
-# PC-card bridges
-#
-CONFIG_YENTA=m
-CONFIG_YENTA_O2=y
-CONFIG_YENTA_RICOH=y
-CONFIG_YENTA_TI=y
-CONFIG_YENTA_ENE_TUNE=y
-CONFIG_YENTA_TOSHIBA=y
-# CONFIG_HAS_RAPIDIO is not set
-# CONFIG_RAPIDIO is not set
-CONFIG_NONSTATIC_KERNEL=y
-CONFIG_RELOCATABLE=y
-CONFIG_PAGE_OFFSET=0xc000000000000000
-CONFIG_KERNEL_START=0xc000000000000000
-CONFIG_PHYSICAL_START=0x00000000
-CONFIG_ARCH_RANDOM=y
-CONFIG_NET=y
-CONFIG_COMPAT_NETLINK_MESSAGES=y
-CONFIG_NET_INGRESS=y
-CONFIG_NET_EGRESS=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_PACKET_DIAG=m
-CONFIG_UNIX=y
-CONFIG_UNIX_DIAG=m
-CONFIG_XFRM=y
-CONFIG_XFRM_ALGO=y
-CONFIG_XFRM_USER=y
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-CONFIG_XFRM_STATISTICS=y
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_FIB_TRIE_STATS=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-CONFIG_NET_IPGRE_DEMUX=m
-CONFIG_NET_IP_TUNNEL=m
-CONFIG_NET_IPGRE=m
-CONFIG_NET_IPGRE_BROADCAST=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NET_IPVTI=m
-CONFIG_NET_UDP_TUNNEL=m
-# CONFIG_NET_FOU is not set
-# CONFIG_NET_FOU_IP_TUNNELS is not set
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=y
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_INET_UDP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_TCP_CONG_DCTCP=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=m
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_VTI=m
-CONFIG_IPV6_SIT=m
-CONFIG_IPV6_SIT_6RD=y
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_GRE=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-# CONFIG_IPV6_SUBTREES is not set
-CONFIG_IPV6_MROUTE=y
-CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IPV6_PIMSM_V2=y
-CONFIG_NETLABEL=y
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
-CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
-CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=m
-
-#
-# Core Netfilter Configuration
-#
-CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_ACCT=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
-CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_LOG_COMMON=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_ZONES=y
-CONFIG_NF_CONNTRACK_PROCFS=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-CONFIG_NF_CONNTRACK_TIMEOUT=y
-CONFIG_NF_CONNTRACK_TIMESTAMP=y
-CONFIG_NF_CONNTRACK_LABELS=y
-CONFIG_NF_CT_PROTO_DCCP=y
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=y
-CONFIG_NF_CT_PROTO_UDPLITE=y
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-CONFIG_NF_CONNTRACK_SNMP=m
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NF_CT_NETLINK_TIMEOUT=m
-CONFIG_NF_CT_NETLINK_HELPER=m
-CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_NF_NAT_PROTO_DCCP=y
-CONFIG_NF_NAT_PROTO_UDPLITE=y
-CONFIG_NF_NAT_PROTO_SCTP=y
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_REDIRECT=m
-CONFIG_NETFILTER_SYNPROXY=m
-CONFIG_NF_TABLES=m
-CONFIG_NF_TABLES_INET=m
-CONFIG_NFT_EXTHDR=m
-CONFIG_NFT_META=m
-CONFIG_NFT_CT=m
-CONFIG_NFT_RBTREE=m
-CONFIG_NFT_HASH=m
-CONFIG_NFT_COUNTER=m
-CONFIG_NFT_LOG=m
-CONFIG_NFT_LIMIT=m
-CONFIG_NFT_MASQ=m
-CONFIG_NFT_REDIR=m
-CONFIG_NFT_NAT=m
-CONFIG_NFT_QUEUE=m
-CONFIG_NFT_REJECT=m
-CONFIG_NFT_REJECT_INET=m
-CONFIG_NFT_COMPAT=m
-CONFIG_NETFILTER_XTABLES=y
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
-CONFIG_NETFILTER_XT_CONNMARK=m
-CONFIG_NETFILTER_XT_SET=m
-
-#
-# Xtables targets
-#
-CONFIG_NETFILTER_XT_TARGET_AUDIT=m
-CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-CONFIG_NETFILTER_XT_TARGET_CT=m
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-CONFIG_NETFILTER_XT_TARGET_HMARK=m
-CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
-CONFIG_NETFILTER_XT_TARGET_LED=m
-CONFIG_NETFILTER_XT_TARGET_LOG=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_NAT=m
-CONFIG_NETFILTER_XT_TARGET_NETMAP=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
-CONFIG_NETFILTER_XT_TARGET_TEE=m
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
-CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
-CONFIG_NETFILTER_XT_MATCH_BPF=m
-CONFIG_NETFILTER_XT_MATCH_CGROUP=m
-CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
-CONFIG_NETFILTER_XT_MATCH_COMMENT=m
-CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
-CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
-CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
-CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
-CONFIG_NETFILTER_XT_MATCH_CPU=m
-CONFIG_NETFILTER_XT_MATCH_DCCP=m
-CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
-CONFIG_NETFILTER_XT_MATCH_DSCP=m
-CONFIG_NETFILTER_XT_MATCH_ECN=m
-CONFIG_NETFILTER_XT_MATCH_ESP=m
-CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_HELPER=m
-CONFIG_NETFILTER_XT_MATCH_HL=m
-CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
-CONFIG_NETFILTER_XT_MATCH_IPVS=m
-CONFIG_NETFILTER_XT_MATCH_LENGTH=m
-CONFIG_NETFILTER_XT_MATCH_LIMIT=m
-CONFIG_NETFILTER_XT_MATCH_MAC=m
-CONFIG_NETFILTER_XT_MATCH_MARK=m
-CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_NFACCT=m
-CONFIG_NETFILTER_XT_MATCH_OSF=m
-CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
-CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
-CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
-CONFIG_NETFILTER_XT_MATCH_QUOTA=m
-CONFIG_NETFILTER_XT_MATCH_RATEEST=m
-CONFIG_NETFILTER_XT_MATCH_REALM=m
-CONFIG_NETFILTER_XT_MATCH_RECENT=m
-CONFIG_NETFILTER_XT_MATCH_SCTP=m
-CONFIG_NETFILTER_XT_MATCH_SOCKET=m
-CONFIG_NETFILTER_XT_MATCH_STATE=m
-CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
-CONFIG_NETFILTER_XT_MATCH_STRING=m
-CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
-CONFIG_NETFILTER_XT_MATCH_U32=m
-CONFIG_IP_SET=m
-CONFIG_IP_SET_MAX=256
-CONFIG_IP_SET_BITMAP_IP=m
-CONFIG_IP_SET_BITMAP_IPMAC=m
-CONFIG_IP_SET_BITMAP_PORT=m
-CONFIG_IP_SET_HASH_IP=m
-CONFIG_IP_SET_HASH_IPMARK=m
-CONFIG_IP_SET_HASH_IPPORT=m
-CONFIG_IP_SET_HASH_IPPORTIP=m
-CONFIG_IP_SET_HASH_IPPORTNET=m
-CONFIG_IP_SET_HASH_IPMAC=m
-CONFIG_IP_SET_HASH_MAC=m
-CONFIG_IP_SET_HASH_NETPORTNET=m
-CONFIG_IP_SET_HASH_NET=m
-CONFIG_IP_SET_HASH_NETNET=m
-CONFIG_IP_SET_HASH_NETPORT=m
-CONFIG_IP_SET_HASH_NETIFACE=m
-CONFIG_IP_SET_LIST_SET=m
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-CONFIG_IP_VS_DEBUG=y
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-CONFIG_IP_VS_PROTO_SCTP=y
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS SH scheduler
-#
-CONFIG_IP_VS_SH_TAB_BITS=8
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-CONFIG_IP_VS_PE_SIP=m
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
-CONFIG_NF_TABLES_IPV4=m
-CONFIG_NFT_CHAIN_ROUTE_IPV4=m
-CONFIG_NFT_REJECT_IPV4=m
-CONFIG_NFT_DUP_IPV4=m
-CONFIG_NF_TABLES_ARP=m
-CONFIG_NF_DUP_IPV4=m
-CONFIG_NF_LOG_IPV4=m
-CONFIG_NF_REJECT_IPV4=m
-CONFIG_NF_NAT_IPV4=m
-CONFIG_NFT_CHAIN_NAT_IPV4=m
-CONFIG_NF_NAT_MASQUERADE_IPV4=m
-CONFIG_NFT_MASQ_IPV4=m
-CONFIG_NFT_REDIR_IPV4=m
-CONFIG_NF_NAT_SNMP_BASIC=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_RPFILTER=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_SYNPROXY=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_IP_NF_NAT=m
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_NF_TABLES_IPV6=m
-CONFIG_NFT_CHAIN_ROUTE_IPV6=m
-CONFIG_NFT_REJECT_IPV6=m
-CONFIG_NFT_DUP_IPV6=m
-CONFIG_NF_DUP_IPV6=m
-CONFIG_NF_REJECT_IPV6=m
-CONFIG_NF_LOG_IPV6=m
-CONFIG_NF_NAT_IPV6=m
-CONFIG_NFT_CHAIN_NAT_IPV6=m
-CONFIG_NF_NAT_MASQUERADE_IPV6=m
-CONFIG_NFT_MASQ_IPV6=m
-CONFIG_NFT_REDIR_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RPFILTER=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_TARGET_SYNPROXY=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-CONFIG_IP6_NF_NAT=m
-CONFIG_IP6_NF_TARGET_MASQUERADE=m
-CONFIG_IP6_NF_TARGET_NPT=m
-CONFIG_NF_TABLES_BRIDGE=m
-CONFIG_NFT_BRIDGE_META=m
-CONFIG_NFT_BRIDGE_REJECT=m
-CONFIG_NF_LOG_BRIDGE=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-CONFIG_NET_SCTPPROBE=m
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
-CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
-CONFIG_SCTP_COOKIE_HMAC_MD5=y
-CONFIG_SCTP_COOKIE_HMAC_SHA1=y
-CONFIG_INET_SCTP_DIAG=m
-# CONFIG_RDS is not set
-# CONFIG_TIPC is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-# CONFIG_ATM_MPOA is not set
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-CONFIG_L2TP=m
-CONFIG_L2TP_DEBUGFS=m
-CONFIG_L2TP_V3=y
-CONFIG_L2TP_IP=m
-CONFIG_L2TP_ETH=m
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_MRP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-CONFIG_BRIDGE_VLAN_FILTERING=y
-CONFIG_HAVE_NET_DSA=y
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_VLAN_8021Q_MVRP=y
-# CONFIG_DECNET is not set
-CONFIG_LLC=m
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_6LOWPAN=m
-# CONFIG_6LOWPAN_DEBUGFS is not set
-CONFIG_6LOWPAN_NHC=m
-CONFIG_6LOWPAN_NHC_DEST=m
-CONFIG_6LOWPAN_NHC_FRAGMENT=m
-CONFIG_6LOWPAN_NHC_HOP=m
-CONFIG_6LOWPAN_NHC_IPV6=m
-CONFIG_6LOWPAN_NHC_MOBILITY=m
-CONFIG_6LOWPAN_NHC_ROUTING=m
-CONFIG_6LOWPAN_NHC_UDP=m
-# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set
-# CONFIG_6LOWPAN_GHC_UDP is not set
-# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_IEEE802154_6LOWPAN=m
-CONFIG_MAC802154=m
-CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
-CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
-CONFIG_NET_SCH_MULTIQ=m
-CONFIG_NET_SCH_RED=m
-CONFIG_NET_SCH_SFB=m
-CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
-CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_CBS=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-CONFIG_NET_SCH_MQPRIO=m
-CONFIG_NET_SCH_CHOKE=m
-CONFIG_NET_SCH_QFQ=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_SCH_FQ=m
-# CONFIG_NET_SCH_HHF is not set
-# CONFIG_NET_SCH_PIE is not set
-CONFIG_NET_SCH_INGRESS=m
-CONFIG_NET_SCH_PLUG=m
-# CONFIG_NET_SCH_DEFAULT is not set
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_CLS_BPF=m
-CONFIG_NET_CLS_FLOWER=m
-CONFIG_NET_CLS_MATCHALL=m
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-# CONFIG_NET_EMATCH_CANID is not set
-CONFIG_NET_EMATCH_IPSET=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_SAMPLE=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-CONFIG_NET_ACT_CSUM=m
-CONFIG_NET_ACT_VLAN=m
-CONFIG_NET_ACT_TUNNEL_KEY=m
-CONFIG_NET_ACT_CONNMARK=m
-CONFIG_NET_ACT_SKBMOD=m
-# CONFIG_NET_ACT_IFE is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_OPENVSWITCH=m
-CONFIG_OPENVSWITCH_GRE=m
-CONFIG_OPENVSWITCH_VXLAN=m
-CONFIG_OPENVSWITCH_GENEVE=m
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
-CONFIG_NET_SWITCHDEV=y
-CONFIG_RPS=y
-CONFIG_RFS_ACCEL=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_HAMRADIO is not set
-CONFIG_CAN=m
-CONFIG_CAN_RAW=m
-CONFIG_CAN_BCM=m
-CONFIG_CAN_GW=m
-
-#
-# CAN Device Drivers
-#
-CONFIG_CAN_VCAN=m
-CONFIG_CAN_SLCAN=m
-CONFIG_CAN_DEV=m
-CONFIG_CAN_CALC_BITTIMING=y
-CONFIG_CAN_LEDS=y
-# CONFIG_PCH_CAN is not set
-# CONFIG_CAN_GRCAN is not set
-# CONFIG_CAN_MSCAN is not set
-CONFIG_CAN_SJA1000=m
-# CONFIG_CAN_SJA1000_ISA is not set
-CONFIG_CAN_SJA1000_PLATFORM=m
-CONFIG_CAN_SJA1000_OF_PLATFORM=m
-CONFIG_CAN_EMS_PCI=m
-CONFIG_CAN_PEAK_PCI=m
-CONFIG_CAN_PEAK_PCIEC=y
-CONFIG_CAN_KVASER_PCI=m
-CONFIG_CAN_PLX_PCI=m
-CONFIG_CAN_C_CAN=m
-CONFIG_CAN_C_CAN_PLATFORM=m
-CONFIG_CAN_C_CAN_PCI=m
-CONFIG_CAN_CC770=m
-# CONFIG_CAN_CC770_ISA is not set
-CONFIG_CAN_CC770_PLATFORM=m
-
-#
-# CAN USB interfaces
-#
-CONFIG_CAN_EMS_USB=m
-CONFIG_CAN_ESD_USB2=m
-CONFIG_CAN_KVASER_USB=m
-CONFIG_CAN_PEAK_USB=m
-CONFIG_CAN_8DEV_USB=m
-CONFIG_CAN_SOFTING=m
-CONFIG_CAN_DEBUG_DEVICES=y
-# CONFIG_IRDA is not set
-CONFIG_BT=m
-CONFIG_BT_BREDR=y
-CONFIG_BT_RFCOMM=m
-CONFIG_BT_RFCOMM_TTY=y
-CONFIG_BT_BNEP=m
-CONFIG_BT_BNEP_MC_FILTER=y
-CONFIG_BT_BNEP_PROTO_FILTER=y
-CONFIG_BT_CMTP=m
-CONFIG_BT_HIDP=m
-CONFIG_BT_HS=y
-CONFIG_BT_LE=y
-# CONFIG_BT_6LOWPAN is not set
-# CONFIG_BT_LEDS is not set
-# CONFIG_BT_SELFTEST is not set
-CONFIG_BT_DEBUGFS=y
-
-#
-# Bluetooth device drivers
-#
-CONFIG_BT_INTEL=m
-CONFIG_BT_BCM=m
-CONFIG_BT_RTL=m
-CONFIG_BT_HCIBTUSB=m
-CONFIG_BT_HCIBTUSB_BCM=y
-CONFIG_BT_HCIBTUSB_RTL=y
-CONFIG_BT_HCIBTSDIO=m
-CONFIG_BT_HCIUART=m
-CONFIG_BT_HCIUART_H4=y
-CONFIG_BT_HCIUART_BCSP=y
-CONFIG_BT_HCIUART_ATH3K=y
-CONFIG_BT_HCIUART_LL=y
-CONFIG_BT_HCIUART_3WIRE=y
-# CONFIG_BT_HCIUART_INTEL is not set
-# CONFIG_BT_HCIUART_BCM is not set
-# CONFIG_BT_HCIUART_QCA is not set
-# CONFIG_BT_HCIUART_AG6XX is not set
-# CONFIG_BT_HCIUART_MRVL is not set
-CONFIG_BT_HCIBCM203X=m
-CONFIG_BT_HCIBPA10X=m
-CONFIG_BT_HCIBFUSB=m
-CONFIG_BT_HCIVHCI=m
-CONFIG_BT_MRVL=m
-CONFIG_BT_MRVL_SDIO=m
-CONFIG_BT_ATH3K=m
-# CONFIG_AF_RXRPC is not set
-CONFIG_FIB_RULES=y
-CONFIG_WIRELESS=y
-CONFIG_WIRELESS_EXT=y
-CONFIG_WEXT_CORE=y
-CONFIG_WEXT_PROC=y
-CONFIG_WEXT_PRIV=y
-CONFIG_CFG80211=m
-# CONFIG_NL80211_TESTMODE is not set
-# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
-# CONFIG_CFG80211_REQUIRE_SIGNED_REGDB is not set
-CONFIG_CFG80211_DEFAULT_PS=y
-CONFIG_CFG80211_DEBUGFS=y
-CONFIG_CFG80211_CRDA_SUPPORT=y
-CONFIG_CFG80211_WEXT=y
-CONFIG_LIB80211=m
-# CONFIG_LIB80211_DEBUG is not set
-CONFIG_MAC80211=m
-CONFIG_MAC80211_HAS_RC=y
-CONFIG_MAC80211_RC_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
-# CONFIG_MAC80211_MESH is not set
-CONFIG_MAC80211_LEDS=y
-CONFIG_MAC80211_DEBUGFS=y
-CONFIG_MAC80211_MESSAGE_TRACING=y
-# CONFIG_MAC80211_DEBUG_MENU is not set
-CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_LEDS=y
-CONFIG_RFKILL_INPUT=y
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-CONFIG_CEPH_LIB=m
-CONFIG_CEPH_LIB_PRETTYDEBUG=y
-CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-CONFIG_DST_CACHE=y
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_PAGE_POOL=y
-CONFIG_FAILOVER=m
-CONFIG_HAVE_CBPF_JIT=y
-CONFIG_HAVE_EBPF_JIT=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-CONFIG_WANT_DEV_COREDUMP=y
-CONFIG_DEV_COREDUMP=y
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-# CONFIG_SYS_HYPERVISOR is not set
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-CONFIG_REGMAP=y
-CONFIG_REGMAP_I2C=m
-CONFIG_DMA_SHARED_BUFFER=y
-
-#
-# Bus devices
-#
-CONFIG_CONNECTOR=y
-CONFIG_PROC_EVENTS=y
-CONFIG_MTD=m
-# CONFIG_MTD_TESTS is not set
-# CONFIG_MTD_REDBOOT_PARTS is not set
-# CONFIG_MTD_CMDLINE_PARTS is not set
-CONFIG_MTD_OF_PARTS=m
-# CONFIG_MTD_AR7_PARTS is not set
-
-#
-# User Modules And Translation Layers
-#
-# CONFIG_MTD_BLKDEVS is not set
-# CONFIG_MTD_BLOCK is not set
-# CONFIG_MTD_BLOCK_RO is not set
-# CONFIG_FTL is not set
-# CONFIG_NFTL is not set
-# CONFIG_INFTL is not set
-# CONFIG_RFD_FTL is not set
-# CONFIG_SSFDC is not set
-# CONFIG_SM_FTL is not set
-# CONFIG_MTD_OOPS is not set
-# CONFIG_MTD_SWAP is not set
-
-#
-# RAM/ROM/Flash chip drivers
-#
-# CONFIG_MTD_CFI is not set
-# CONFIG_MTD_JEDECPROBE is not set
-CONFIG_MTD_MAP_BANK_WIDTH_1=y
-CONFIG_MTD_MAP_BANK_WIDTH_2=y
-CONFIG_MTD_MAP_BANK_WIDTH_4=y
-# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
-CONFIG_MTD_CFI_I1=y
-CONFIG_MTD_CFI_I2=y
-# CONFIG_MTD_CFI_I4 is not set
-# CONFIG_MTD_CFI_I8 is not set
-# CONFIG_MTD_RAM is not set
-# CONFIG_MTD_ROM is not set
-# CONFIG_MTD_ABSENT is not set
-
-#
-# Mapping drivers for chip access
-#
-# CONFIG_MTD_COMPLEX_MAPPINGS is not set
-# CONFIG_MTD_INTEL_VR_NOR is not set
-# CONFIG_MTD_PLATRAM is not set
-
-#
-# Self-contained MTD device drivers
-#
-# CONFIG_MTD_PMC551 is not set
-# CONFIG_MTD_SLRAM is not set
-# CONFIG_MTD_PHRAM is not set
-# CONFIG_MTD_MTDRAM is not set
-# CONFIG_MTD_BLOCK2MTD is not set
-# CONFIG_MTD_POWERNV_FLASH is not set
-
-#
-# Disk-On-Chip Device Drivers
-#
-# CONFIG_MTD_DOCG3 is not set
-# CONFIG_MTD_NAND is not set
-# CONFIG_MTD_ONENAND is not set
-
-#
-# LPDDR flash memory drivers
-#
-# CONFIG_MTD_LPDDR is not set
-CONFIG_MTD_UBI=m
-CONFIG_MTD_UBI_WL_THRESHOLD=4096
-CONFIG_MTD_UBI_BEB_LIMIT=20
-# CONFIG_MTD_UBI_FASTMAP is not set
-# CONFIG_MTD_UBI_GLUEBI is not set
-CONFIG_DTC=y
-CONFIG_OF=y
-
-#
-# Device Tree and Open Firmware support
-#
-CONFIG_PROC_DEVICETREE=y
-# CONFIG_OF_SELFTEST is not set
-CONFIG_OF_FLATTREE=y
-CONFIG_OF_EARLY_FLATTREE=y
-CONFIG_OF_DYNAMIC=y
-CONFIG_OF_ADDRESS=y
-CONFIG_OF_IRQ=y
-CONFIG_OF_DEVICE=y
-CONFIG_OF_NET=y
-CONFIG_OF_MDIO=y
-CONFIG_OF_PCI=y
-CONFIG_OF_PCI_IRQ=y
-CONFIG_OF_MTD=y
-CONFIG_PARPORT=m
-CONFIG_PARPORT_PC=m
-CONFIG_PARPORT_SERIAL=m
-# CONFIG_PARPORT_PC_FIFO is not set
-# CONFIG_PARPORT_PC_SUPERIO is not set
-# CONFIG_PARPORT_GSC is not set
-# CONFIG_PARPORT_AX88796 is not set
-CONFIG_PARPORT_1284=y
-CONFIG_PARPORT_NOT_PC=y
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-# CONFIG_BLK_DEV_FD is not set
-# CONFIG_PARIDE is not set
-# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
-CONFIG_ZRAM=m
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=m
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-CONFIG_BLK_DEV_SX8=m
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=16384
-CONFIG_CDROM_PKTCDVD=m
-CONFIG_CDROM_PKTCDVD_BUFFERS=8
-# CONFIG_CDROM_PKTCDVD_WCACHE is not set
-CONFIG_ATA_OVER_ETH=m
-CONFIG_VIRTIO_BLK=m
-# CONFIG_BLK_DEV_HD is not set
-CONFIG_BLK_DEV_RBD=m
-CONFIG_BLK_DEV_RSXX=m
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_RDMA=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_RDMA=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-CONFIG_SENSORS_LIS3LV02D=m
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_DUMMY_IRQ is not set
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-# CONFIG_SGI_IOC4 is not set
-CONFIG_TIFM_CORE=m
-CONFIG_TIFM_7XX1=m
-# CONFIG_ICS932S401 is not set
-# CONFIG_ATMEL_SSC is not set
-CONFIG_ENCLOSURE_SERVICES=m
-# CONFIG_HP_ILO is not set
-CONFIG_APDS9802ALS=m
-CONFIG_ISL29003=m
-CONFIG_ISL29020=m
-CONFIG_SENSORS_TSL2550=m
-# CONFIG_SENSORS_BH1780 is not set
-CONFIG_SENSORS_BH1770=m
-CONFIG_SENSORS_APDS990X=m
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_BMP085_I2C is not set
-# CONFIG_PCH_PHUB is not set
-# CONFIG_USB_SWITCH_FSA9480 is not set
-# CONFIG_SRAM is not set
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-CONFIG_EEPROM_AT24=m
-CONFIG_EEPROM_LEGACY=m
-CONFIG_EEPROM_MAX6875=m
-CONFIG_EEPROM_93CX6=m
-CONFIG_CB710_CORE=m
-# CONFIG_CB710_DEBUG is not set
-CONFIG_CB710_DEBUG_ASSUMPTIONS=y
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_TI_ST is not set
-CONFIG_SENSORS_LIS3_I2C=m
-
-#
-# Altera FPGA firmware download module
-#
-CONFIG_ALTERA_STAPL=m
-CONFIG_GENWQE=m
-CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=1
-CONFIG_CXL_BASE=y
-CONFIG_CXL_KERNEL_API=y
-CONFIG_CXL_EEH=y
-CONFIG_CXL=m
-CONFIG_HAVE_IDE=y
-# CONFIG_IDE is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=m
-CONFIG_CHR_DEV_ST=m
-CONFIG_CHR_DEV_OSST=m
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-CONFIG_CHR_DEV_SCH=m
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_ATA=y
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_TCP=m
-CONFIG_ISCSI_BOOT_SYSFS=m
-CONFIG_SCSI_CXGB3_ISCSI=m
-CONFIG_SCSI_CXGB4_ISCSI=m
-CONFIG_SCSI_BNX2_ISCSI=m
-CONFIG_SCSI_BNX2X_FCOE=m
-CONFIG_BE2ISCSI=m
-CONFIG_CXLFLASH=m
-# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
-CONFIG_SCSI_HPSA=m
-CONFIG_SCSI_3W_9XXX=m
-CONFIG_SCSI_3W_SAS=m
-# CONFIG_SCSI_ACARD is not set
-CONFIG_SCSI_AACRAID=m
-# CONFIG_SCSI_AIC7XXX is not set
-# CONFIG_SCSI_AIC7XXX_OLD is not set
-CONFIG_SCSI_AIC79XX=m
-CONFIG_AIC79XX_CMDS_PER_DEVICE=4
-CONFIG_AIC79XX_RESET_DELAY_MS=15000
-# CONFIG_AIC79XX_DEBUG_ENABLE is not set
-CONFIG_AIC79XX_DEBUG_MASK=0
-# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
-# CONFIG_SCSI_AIC94XX is not set
-CONFIG_SCSI_MVSAS=m
-# CONFIG_SCSI_MVSAS_DEBUG is not set
-CONFIG_SCSI_MVSAS_TASKLET=y
-CONFIG_SCSI_MVUMI=m
-CONFIG_SCSI_ARCMSR=m
-# CONFIG_MEGARAID_NEWGEN is not set
-# CONFIG_MEGARAID_LEGACY is not set
-CONFIG_MEGARAID_SAS=m
-CONFIG_SCSI_MPT2SAS=m
-CONFIG_SCSI_MPT3SAS=m
-CONFIG_SCSI_MPT2SAS_MAX_SGE=128
-CONFIG_SCSI_MPT3SAS_MAX_SGE=128
-CONFIG_SCSI_SMARTPQI=m
-CONFIG_SCSI_UFSHCD=m
-CONFIG_SCSI_UFSHCD_PCI=m
-# CONFIG_SCSI_UFSHCD_PLATFORM is not set
-CONFIG_SCSI_HPTIOP=m
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-# CONFIG_SCSI_DMX3191D is not set
-# CONFIG_SCSI_EATA is not set
-# CONFIG_SCSI_FUTURE_DOMAIN is not set
-# CONFIG_SCSI_GDTH is not set
-# CONFIG_SCSI_IPS is not set
-CONFIG_SCSI_IBMVSCSI=m
-CONFIG_SCSI_IBMVSCSIS=m
-CONFIG_SCSI_IBMVFC=m
-CONFIG_SCSI_IBMVFC_TRACE=y
-CONFIG_SCSI_INITIO=m
-# CONFIG_SCSI_INIA100 is not set
-# CONFIG_SCSI_PPA is not set
-# CONFIG_SCSI_IMM is not set
-CONFIG_SCSI_STEX=m
-# CONFIG_SCSI_SYM53C8XX_2 is not set
-CONFIG_SCSI_IPR=m
-CONFIG_SCSI_IPR_TRACE=y
-CONFIG_SCSI_IPR_DUMP=y
-# CONFIG_SCSI_QLOGIC_1280 is not set
-CONFIG_SCSI_QLA_FC=m
-CONFIG_TCM_QLA2XXX=m
-# CONFIG_TCM_QLA2XXX_DEBUG is not set
-CONFIG_SCSI_QLA_ISCSI=m
-CONFIG_QEDI=m
-CONFIG_QEDF=m
-CONFIG_SCSI_LPFC=m
-# CONFIG_SCSI_LPFC_DEBUG_FS is not set
-# CONFIG_SCSI_DC395x is not set
-# CONFIG_SCSI_DC390T is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_SCSI_PMCRAID=m
-CONFIG_SCSI_PM8001=m
-CONFIG_SCSI_SRP=m
-CONFIG_SCSI_BFA_FC=m
-CONFIG_SCSI_VIRTIO=m
-# CONFIG_SCSI_CHELSIO_FCOE is not set
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=m
-# CONFIG_ATA_NONSTANDARD is not set
-CONFIG_ATA_VERBOSE_ERROR=y
-CONFIG_SATA_PMP=y
-
-#
-# Controllers with non-SFF native interface
-#
-CONFIG_SATA_AHCI=m
-CONFIG_SATA_AHCI_PLATFORM=m
-# CONFIG_SATA_INIC162X is not set
-CONFIG_SATA_ACARD_AHCI=m
-CONFIG_SATA_SIL24=m
-CONFIG_ATA_SFF=y
-
-#
-# SFF controllers with custom DMA interface
-#
-CONFIG_PDC_ADMA=m
-CONFIG_SATA_QSTOR=m
-CONFIG_SATA_SX4=m
-CONFIG_ATA_BMDMA=y
-
-#
-# SATA SFF controllers with BMDMA
-#
-CONFIG_ATA_PIIX=m
-# CONFIG_SATA_HIGHBANK is not set
-CONFIG_SATA_MV=m
-CONFIG_SATA_NV=m
-CONFIG_SATA_PROMISE=m
-CONFIG_SATA_SIL=m
-CONFIG_SATA_SIS=m
-CONFIG_SATA_SVW=m
-CONFIG_SATA_ULI=m
-CONFIG_SATA_VIA=m
-CONFIG_SATA_VITESSE=m
-
-#
-# PATA SFF controllers with BMDMA
-#
-CONFIG_PATA_ALI=m
-CONFIG_PATA_AMD=m
-CONFIG_PATA_ARASAN_CF=m
-CONFIG_PATA_ARTOP=m
-CONFIG_PATA_ATIIXP=m
-CONFIG_PATA_ATP867X=m
-CONFIG_PATA_CMD64X=m
-# CONFIG_PATA_CS5520 is not set
-# CONFIG_PATA_CS5530 is not set
-CONFIG_PATA_CS5536=m
-# CONFIG_PATA_CYPRESS is not set
-# CONFIG_PATA_EFAR is not set
-CONFIG_PATA_HPT366=m
-CONFIG_PATA_HPT37X=m
-CONFIG_PATA_HPT3X2N=m
-CONFIG_PATA_HPT3X3=m
-# CONFIG_PATA_HPT3X3_DMA is not set
-CONFIG_PATA_IT8213=m
-CONFIG_PATA_IT821X=m
-CONFIG_PATA_JMICRON=m
-CONFIG_PATA_MARVELL=m
-CONFIG_PATA_NETCELL=m
-CONFIG_PATA_NINJA32=m
-# CONFIG_PATA_NS87415 is not set
-CONFIG_PATA_OLDPIIX=m
-# CONFIG_PATA_OPTIDMA is not set
-CONFIG_PATA_PDC2027X=m
-CONFIG_PATA_PDC_OLD=m
-# CONFIG_PATA_RADISYS is not set
-CONFIG_PATA_RDC=m
-# CONFIG_PATA_SC1200 is not set
-CONFIG_PATA_SCH=m
-CONFIG_PATA_SERVERWORKS=m
-CONFIG_PATA_SIL680=m
-CONFIG_PATA_SIS=m
-CONFIG_PATA_TOSHIBA=m
-# CONFIG_PATA_TRIFLEX is not set
-CONFIG_PATA_VIA=m
-# CONFIG_PATA_WINBOND is not set
-
-#
-# PIO-only SFF controllers
-#
-# CONFIG_PATA_CMD640_PCI is not set
-# CONFIG_PATA_MPIIX is not set
-# CONFIG_PATA_NS87410 is not set
-# CONFIG_PATA_OPTI is not set
-CONFIG_PATA_PLATFORM=m
-CONFIG_PATA_OF_PLATFORM=m
-# CONFIG_PATA_RZ1000 is not set
-
-#
-# Generic fallback / legacy drivers
-#
-CONFIG_ATA_GENERIC=m
-# CONFIG_PATA_LEGACY is not set
-CONFIG_MD=y
-CONFIG_BLK_DEV_MD=y
-CONFIG_MD_AUTODETECT=y
-CONFIG_MD_LINEAR=m
-CONFIG_MD_RAID0=m
-CONFIG_MD_RAID1=m
-CONFIG_MD_RAID10=m
-CONFIG_MD_RAID456=m
-# CONFIG_MD_MULTIPATH is not set
-CONFIG_MD_FAULTY=m
-# CONFIG_BCACHE is not set
-CONFIG_BLK_DEV_DM_BUILTIN=y
-CONFIG_BLK_DEV_DM=m
-# CONFIG_DM_MQ_DEFAULT is not set
-CONFIG_DM_DEBUG=y
-CONFIG_DM_BUFIO=m
-# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
-CONFIG_DM_BIO_PRISON=m
-CONFIG_DM_PERSISTENT_DATA=m
-CONFIG_DM_CRYPT=m
-CONFIG_DM_SNAPSHOT=m
-CONFIG_DM_THIN_PROVISIONING=m
-CONFIG_DM_CACHE=m
-CONFIG_DM_CACHE_SMQ=m
-CONFIG_DM_ERA=m
-CONFIG_DM_MIRROR=m
-CONFIG_DM_LOG_USERSPACE=m
-CONFIG_DM_RAID=m
-CONFIG_DM_ZERO=m
-CONFIG_DM_MULTIPATH=m
-CONFIG_DM_MULTIPATH_QL=m
-CONFIG_DM_MULTIPATH_ST=m
-CONFIG_DM_DELAY=m
-CONFIG_DM_UEVENT=y
-CONFIG_DM_FLAKEY=m
-CONFIG_DM_VERITY=m
-CONFIG_DM_SWITCH=m
-CONFIG_DM_LOG_WRITES=m
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_TCM_USER2=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-CONFIG_ISCSI_TARGET_CXGB4=m
-# CONFIG_SBP_TARGET is not set
-CONFIG_FUSION=y
-CONFIG_FUSION_SPI=m
-# CONFIG_FUSION_FC is not set
-CONFIG_FUSION_SAS=m
-CONFIG_FUSION_MAX_SGE=128
-CONFIG_FUSION_CTL=m
-CONFIG_FUSION_LOGGING=y
-
-#
-# IEEE 1394 (FireWire) support
-#
-CONFIG_FIREWIRE=m
-CONFIG_FIREWIRE_OHCI=m
-CONFIG_FIREWIRE_SBP2=m
-CONFIG_FIREWIRE_NET=m
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-CONFIG_MACINTOSH_DRIVERS=y
-CONFIG_MAC_EMUMOUSEBTN=y
-# CONFIG_WINDFARM is not set
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-CONFIG_BONDING=m
-CONFIG_DUMMY=m
-# CONFIG_EQUALIZER is not set
-CONFIG_NET_FC=y
-CONFIG_MII=m
-CONFIG_IFB=m
-CONFIG_NET_TEAM=m
-CONFIG_NET_TEAM_MODE_BROADCAST=m
-CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
-CONFIG_NET_TEAM_MODE_RANDOM=m
-CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
-CONFIG_NET_TEAM_MODE_LOADBALANCE=m
-CONFIG_MACVLAN=m
-CONFIG_MACVTAP=m
-CONFIG_VXLAN=m
-CONFIG_GENEVE=m
-CONFIG_MACSEC=m
-CONFIG_NETCONSOLE=m
-CONFIG_NETCONSOLE_DYNAMIC=y
-CONFIG_NETPOLL=y
-CONFIG_NET_POLL_CONTROLLER=y
-CONFIG_TUN=m
-CONFIG_TUN_VNET_CROSS_LE=y
-CONFIG_VETH=m
-CONFIG_VIRTIO_NET=m
-CONFIG_NLMON=m
-CONFIG_VSOCKMON=m
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_VHOST_NET=m
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST_RING=m
-CONFIG_VHOST=m
-CONFIG_VHOST_CROSS_ENDIAN_LEGACY=y
-
-#
-# Distributed Switch Architecture drivers
-#
-# CONFIG_NET_DSA_MV88E6XXX is not set
-# CONFIG_NET_DSA_MV88E6060 is not set
-# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
-# CONFIG_NET_DSA_MV88E6131 is not set
-# CONFIG_NET_DSA_MV88E6123_61_65 is not set
-CONFIG_ETHERNET=y
-CONFIG_MDIO=m
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
-CONFIG_NET_VENDOR_AMAZON=y
-CONFIG_NET_VENDOR_AMD=y
-CONFIG_AMD8111_ETH=m
-CONFIG_PCNET32=m
-# CONFIG_AMD_XGBE_HAVE_ECC is not set
-CONFIG_NET_VENDOR_AQUANTIA=y
-CONFIG_NET_VENDOR_ATHEROS=y
-CONFIG_ATL2=m
-CONFIG_ATL1=m
-CONFIG_ATL1E=m
-CONFIG_ATL1C=m
-CONFIG_ALX=m
-CONFIG_NET_CADENCE=y
-CONFIG_ARM_AT91_ETHER=m
-CONFIG_MACB=m
-CONFIG_NET_VENDOR_BROADCOM=y
-CONFIG_B44=m
-CONFIG_B44_PCI_AUTOSELECT=y
-CONFIG_B44_PCICORE_AUTOSELECT=y
-CONFIG_B44_PCI=y
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-CONFIG_TIGON3=m
-CONFIG_TIGON3_HWMON=y
-CONFIG_BNX2X=m
-CONFIG_BNX2X_SRIOV=y
-CONFIG_BNXT=m
-CONFIG_BNXT_SRIOV=y
-CONFIG_BNXT_FLOWER_OFFLOAD=y
-CONFIG_BNXT_DCB=y
-CONFIG_BNXT_HWMON=y
-CONFIG_NET_VENDOR_BROCADE=y
-CONFIG_BNA=m
-CONFIG_NET_CALXEDA_XGMAC=m
-CONFIG_NET_VENDOR_CAVIUM=y
-CONFIG_LIQUIDIO=m
-CONFIG_LIQUIDIO_VF=m
-CONFIG_NET_VENDOR_CHELSIO=y
-# CONFIG_CHELSIO_T1 is not set
-CONFIG_CHELSIO_T3=m
-CONFIG_CHELSIO_T4=m
-# CONFIG_CHELSIO_T4_DCB is not set
-CONFIG_CHELSIO_T4VF=m
-CONFIG_CHELSIO_LIB=m
-CONFIG_NET_VENDOR_CISCO=y
-CONFIG_ENIC=m
-CONFIG_DNET=m
-CONFIG_NET_VENDOR_DEC=y
-CONFIG_NET_TULIP=y
-CONFIG_DE2104X=m
-CONFIG_DE2104X_DSL=0
-CONFIG_TULIP=m
-# CONFIG_TULIP_MWI is not set
-CONFIG_TULIP_MMIO=y
-# CONFIG_TULIP_NAPI is not set
-CONFIG_DE4X5=m
-CONFIG_WINBOND_840=m
-CONFIG_DM9102=m
-CONFIG_ULI526X=m
-CONFIG_PCMCIA_XIRCOM=m
-# CONFIG_NET_VENDOR_DLINK is not set
-CONFIG_NET_VENDOR_EMULEX=y
-CONFIG_BE2NET=m
-CONFIG_BE2NET_HWMON=y
-# CONFIG_NET_VENDOR_EXAR is not set
-CONFIG_NET_VENDOR_GOOGLE=y
-CONFIG_GVE=m
-# CONFIG_NET_VENDOR_HP is not set
-CONFIG_NET_VENDOR_IBM=y
-CONFIG_IBMVETH=m
-# CONFIG_IBM_EMAC_ZMII is not set
-# CONFIG_IBM_EMAC_RGMII is not set
-# CONFIG_IBM_EMAC_TAH is not set
-# CONFIG_IBM_EMAC_EMAC4 is not set
-# CONFIG_IBM_EMAC_NO_FLOW_CTRL is not set
-# CONFIG_IBM_EMAC_MAL_CLR_ICINTSTAT is not set
-# CONFIG_IBM_EMAC_MAL_COMMON_ERR is not set
-CONFIG_EHEA=m
-CONFIG_IBMVNIC=m
-CONFIG_NET_VENDOR_INTEL=y
-# CONFIG_E100 is not set
-CONFIG_E1000=m
-CONFIG_E1000E=m
-CONFIG_IGB=m
-CONFIG_IGB_HWMON=y
-CONFIG_IGBVF=m
-# CONFIG_IXGB is not set
-CONFIG_IXGBE=m
-CONFIG_IXGBE_HWMON=y
-CONFIG_IXGBE_DCB=y
-CONFIG_IXGBEVF=m
-CONFIG_I40E=m
-CONFIG_I40E_VXLAN=y
-CONFIG_I40E_DCB=y
-CONFIG_IAVF=m
-CONFIG_I40EVF=m
-CONFIG_ICE=m
-CONFIG_FM10K=m
-CONFIG_IGC=m
-# CONFIG_NET_VENDOR_I825XX is not set
-# CONFIG_IP1000 is not set
-CONFIG_JME=m
-CONFIG_NET_VENDOR_MARVELL=y
-CONFIG_MVMDIO=m
-CONFIG_SKGE=m
-# CONFIG_SKGE_DEBUG is not set
-CONFIG_SKGE_GENESIS=y
-CONFIG_SKY2=m
-# CONFIG_SKY2_DEBUG is not set
-CONFIG_NET_VENDOR_MELLANOX=y
-CONFIG_MLX4_EN=m
-CONFIG_MLX4_EN_DCB=y
-CONFIG_MLX4_CORE=m
-CONFIG_MLX4_DEBUG=y
-CONFIG_MLX4_CORE_GEN2=y
-CONFIG_MLX5_CORE=m
-# CONFIG_MLX5_FPGA is not set
-CONFIG_MLX5_CORE_EN=y
-CONFIG_MLX5_EN_ARFS=y
-CONFIG_MLX5_EN_RXNFC=y
-CONFIG_MLX5_MPFS=y
-CONFIG_MLX5_ESWITCH=y
-CONFIG_MLX5_CORE_EN_DCB=y
-CONFIG_MLX5_CORE_IPOIB=y
-CONFIG_MLXSW_CORE=m
-CONFIG_MLXSW_CORE_HWMON=y
-CONFIG_MLXSW_CORE_THERMAL=y
-CONFIG_MLXSW_PCI=m
-CONFIG_MLXSW_I2C=m
-CONFIG_MLXSW_SWITCHIB=m
-CONFIG_MLXSW_SWITCHX2=m
-CONFIG_MLXSW_SPECTRUM=m
-CONFIG_MLXSW_SPECTRUM_DCB=y
-CONFIG_MLXSW_MINIMAL=m
-CONFIG_MLXFW=m
-# CONFIG_NET_VENDOR_MICREL is not set
-CONFIG_NET_VENDOR_MYRI=y
-CONFIG_MYRI10GE=m
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
-CONFIG_NET_VENDOR_NETRONOME=y
-CONFIG_NFP=m
-CONFIG_NFP_APP_FLOWER=y
-CONFIG_NFP_APP_ABM_NIC=y
-CONFIG_NFP_DEBUG=y
-# CONFIG_NET_VENDOR_NVIDIA is not set
-CONFIG_NET_VENDOR_OKI=y
-# CONFIG_PCH_GBE is not set
-CONFIG_ETHOC=m
-CONFIG_NET_PACKET_ENGINE=y
-# CONFIG_HAMACHI is not set
-# CONFIG_YELLOWFIN is not set
-CONFIG_NET_VENDOR_QLOGIC=y
-CONFIG_QLA3XXX=m
-CONFIG_QLCNIC=m
-CONFIG_QLCNIC_SRIOV=y
-CONFIG_QLCNIC_DCB=y
-# CONFIG_QLCNIC_VXLAN is not set
-CONFIG_QLCNIC_HWMON=y
-CONFIG_QLGE=m
-CONFIG_NETXEN_NIC=m
-CONFIG_QED=m
-CONFIG_QED_LL2=y
-CONFIG_QED_SRIOV=y
-CONFIG_QEDE=m
-CONFIG_QED_RDMA=y
-CONFIG_QED_ISCSI=y
-CONFIG_QED_FCOE=y
-CONFIG_QED_OOO=y
-CONFIG_NET_VENDOR_REALTEK=y
-CONFIG_8139CP=m
-CONFIG_8139TOO=m
-# CONFIG_8139TOO_PIO is not set
-# CONFIG_8139TOO_TUNE_TWISTER is not set
-CONFIG_8139TOO_8129=y
-# CONFIG_8139_OLD_RX_RESET is not set
-CONFIG_R8169=m
-# CONFIG_NET_VENDOR_RDC is not set
-CONFIG_NET_VENDOR_ROCKER=y
-CONFIG_ROCKER=m
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
-CONFIG_NET_VENDOR_SOLARFLARE=y
-CONFIG_SFC=m
-CONFIG_SFC_MTD=y
-CONFIG_SFC_MCDI_MON=y
-CONFIG_SFC_SRIOV=y
-CONFIG_SFC_MCDI_LOGGING=y
-CONFIG_SFC_FALCON=m
-CONFIG_SFC_FALCON_MTD=y
-CONFIG_NET_VENDOR_SMSC=y
-CONFIG_EPIC100=m
-CONFIG_SMSC9420=m
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-CONFIG_NET_VENDOR_TI=y
-CONFIG_TLAN=m
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_NET_VENDOR_WIZNET is not set
-# CONFIG_NET_VENDOR_XILINX is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-CONFIG_PHYLIB=y
-
-#
-# MII PHY device drivers
-#
-CONFIG_AT803X_PHY=m
-CONFIG_AMD_PHY=m
-CONFIG_MARVELL_PHY=m
-CONFIG_DAVICOM_PHY=m
-CONFIG_QSEMI_PHY=m
-CONFIG_LXT_PHY=m
-CONFIG_CICADA_PHY=m
-CONFIG_VITESSE_PHY=m
-CONFIG_SMSC_PHY=m
-CONFIG_BROADCOM_PHY=m
-CONFIG_BCM87XX_PHY=m
-CONFIG_ICPLUS_PHY=m
-CONFIG_REALTEK_PHY=y
-CONFIG_NATIONAL_PHY=m
-CONFIG_STE10XP=m
-CONFIG_LSI_ET1011C_PHY=m
-CONFIG_MICREL_PHY=m
-CONFIG_FIXED_PHY=y
-CONFIG_MDIO_BITBANG=m
-CONFIG_MDIO_GPIO=m
-# CONFIG_MDIO_BUS_MUX_GPIO is not set
-# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
-# CONFIG_PLIP is not set
-CONFIG_PPP=m
-CONFIG_PPP_BSDCOMP=m
-CONFIG_PPP_DEFLATE=m
-CONFIG_PPP_FILTER=y
-CONFIG_PPP_MPPE=m
-CONFIG_PPP_MULTILINK=y
-CONFIG_PPPOATM=m
-CONFIG_PPPOE=m
-CONFIG_PPTP=m
-CONFIG_PPPOL2TP=m
-CONFIG_PPP_ASYNC=m
-CONFIG_PPP_SYNC_TTY=m
-CONFIG_SLIP=m
-CONFIG_SLHC=m
-CONFIG_SLIP_COMPRESSED=y
-CONFIG_SLIP_SMART=y
-# CONFIG_SLIP_MODE_SLIP6 is not set
-CONFIG_USB_NET_DRIVERS=y
-CONFIG_USB_CATC=m
-CONFIG_USB_KAWETH=m
-CONFIG_USB_PEGASUS=m
-CONFIG_USB_RTL8150=m
-CONFIG_USB_RTL8152=m
-# CONFIG_USB_LAN78XX is not set
-CONFIG_USB_USBNET=m
-CONFIG_USB_NET_AX8817X=m
-CONFIG_USB_NET_AX88179_178A=m
-CONFIG_USB_NET_CDCETHER=m
-CONFIG_USB_NET_CDC_EEM=m
-CONFIG_USB_NET_CDC_NCM=m
-CONFIG_USB_NET_HUAWEI_CDC_NCM=m
-CONFIG_USB_NET_CDC_MBIM=m
-CONFIG_USB_NET_DM9601=m
-# CONFIG_USB_NET_SR9700 is not set
-# CONFIG_USB_NET_SR9800 is not set
-CONFIG_USB_NET_SMSC75XX=m
-CONFIG_USB_NET_SMSC95XX=m
-CONFIG_USB_NET_GL620A=m
-CONFIG_USB_NET_NET1080=m
-CONFIG_USB_NET_PLUSB=m
-CONFIG_USB_NET_MCS7830=m
-CONFIG_USB_NET_RNDIS_HOST=m
-CONFIG_USB_NET_CDC_SUBSET_ENABLE=m
-CONFIG_USB_NET_CDC_SUBSET=m
-CONFIG_USB_ALI_M5632=y
-CONFIG_USB_AN2720=y
-CONFIG_USB_BELKIN=y
-CONFIG_USB_ARMLINUX=y
-CONFIG_USB_EPSON2888=y
-CONFIG_USB_KC2190=y
-CONFIG_USB_NET_ZAURUS=m
-CONFIG_USB_NET_CX82310_ETH=m
-CONFIG_USB_NET_KALMIA=m
-CONFIG_USB_NET_QMI_WWAN=m
-CONFIG_USB_HSO=m
-CONFIG_USB_NET_INT51X1=m
-CONFIG_USB_IPHETH=m
-CONFIG_USB_SIERRA_NET=m
-CONFIG_USB_VL600=m
-# CONFIG_USB_NET_CH9200 is not set
-CONFIG_WLAN=y
-# CONFIG_LIBERTAS_THINFIRM is not set
-# CONFIG_AIRO is not set
-# CONFIG_ATMEL is not set
-# CONFIG_AT76C50X_USB is not set
-# CONFIG_PRISM54 is not set
-# CONFIG_USB_ZD1201 is not set
-# CONFIG_USB_NET_RNDIS_WLAN is not set
-# CONFIG_ADM8211 is not set
-CONFIG_MAC80211_HWSIM=m
-CONFIG_ATH_COMMON=m
-CONFIG_WLAN_VENDOR_ATH=y
-CONFIG_ATH_DEBUG=y
-# CONFIG_ATH_TRACEPOINTS is not set
-# CONFIG_ATH5K is not set
-# CONFIG_ATH5K_PCI is not set
-CONFIG_ATH9K_HW=m
-CONFIG_ATH9K_COMMON=m
-CONFIG_ATH9K_COMMON_DEBUG=y
-CONFIG_ATH9K_BTCOEX_SUPPORT=y
-CONFIG_ATH9K=m
-CONFIG_ATH9K_PCI=y
-CONFIG_ATH9K_AHB=y
-CONFIG_ATH9K_DEBUGFS=y
-# CONFIG_ATH9K_STATION_STATISTICS is not set
-# CONFIG_ATH9K_DYNACK is not set
-CONFIG_ATH9K_WOW=y
-CONFIG_ATH9K_RFKILL=y
-# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
-CONFIG_ATH9K_PCOEM=y
-CONFIG_ATH9K_HTC=m
-# CONFIG_ATH9K_HTC_DEBUGFS is not set
-# CONFIG_ATH9K_HWRNG is not set
-CONFIG_CARL9170=m
-CONFIG_CARL9170_LEDS=y
-CONFIG_CARL9170_DEBUGFS=y
-CONFIG_CARL9170_WPC=y
-# CONFIG_CARL9170_HWRNG is not set
-# CONFIG_ATH6KL is not set
-# CONFIG_AR5523 is not set
-CONFIG_WIL6210=m
-CONFIG_WIL6210_ISR_COR=y
-CONFIG_WIL6210_TRACING=y
-CONFIG_WIL6210_DEBUGFS=y
-CONFIG_ATH10K=m
-CONFIG_ATH10K_PCI=m
-# CONFIG_ATH10K_SDIO is not set
-# CONFIG_ATH10K_USB is not set
-CONFIG_ATH10K_DEBUG=y
-CONFIG_ATH10K_DEBUGFS=y
-CONFIG_ATH10K_TRACING=y
-# CONFIG_B43 is not set
-# CONFIG_B43LEGACY is not set
-CONFIG_WLAN_VENDOR_BROADCOM=y
-CONFIG_BRCMUTIL=m
-CONFIG_BRCMSMAC=m
-CONFIG_BRCMFMAC=m
-CONFIG_BRCMFMAC_PROTO_BCDC=y
-CONFIG_BRCMFMAC_PROTO_MSGBUF=y
-CONFIG_BRCMFMAC_SDIO=y
-CONFIG_BRCMFMAC_USB=y
-CONFIG_BRCMFMAC_PCIE=y
-# CONFIG_BRCM_TRACING is not set
-# CONFIG_BRCMDBG is not set
-# CONFIG_HOSTAP is not set
-# CONFIG_IPW2100 is not set
-# CONFIG_IPW2200 is not set
-CONFIG_WLAN_VENDOR_INTEL=y
-CONFIG_IWLEGACY=m
-CONFIG_IWL4965=m
-CONFIG_IWL3945=m
-
-#
-# iwl3945 / iwl4965 Debugging Options
-#
-CONFIG_IWLEGACY_DEBUG=y
-CONFIG_IWLEGACY_DEBUGFS=y
-CONFIG_IWLWIFI=m
-CONFIG_IWLWIFI_LEDS=y
-CONFIG_IWLDVM=m
-CONFIG_IWLMVM=m
-CONFIG_IWLWIFI_OPMODE_MODULAR=y
-# CONFIG_IWLWIFI_BCAST_FILTERING is not set
-
-#
-# Debugging Options
-#
-CONFIG_IWLWIFI_DEBUG=y
-CONFIG_IWLWIFI_DEBUGFS=y
-CONFIG_IWLWIFI_DEVICE_TRACING=y
-# CONFIG_LIBERTAS is not set
-CONFIG_WLAN_VENDOR_MARVELL=y
-CONFIG_MWIFIEX=m
-CONFIG_MWIFIEX_SDIO=m
-CONFIG_MWIFIEX_PCIE=m
-CONFIG_MWIFIEX_USB=m
-CONFIG_MWL8K=m
-# CONFIG_HERMES is not set
-# CONFIG_P54_COMMON is not set
-CONFIG_WLAN_VENDOR_RALINK=y
-CONFIG_RT2X00=m
-# CONFIG_RT2400PCI is not set
-# CONFIG_RT2500PCI is not set
-CONFIG_RT61PCI=m
-CONFIG_RT2800PCI=m
-CONFIG_RT2800PCI_RT33XX=y
-CONFIG_RT2800PCI_RT35XX=y
-CONFIG_RT2800PCI_RT53XX=y
-CONFIG_RT2800PCI_RT3290=y
-# CONFIG_RT2500USB is not set
-CONFIG_RT73USB=m
-CONFIG_RT2800USB=m
-CONFIG_RT2800USB_RT33XX=y
-CONFIG_RT2800USB_RT35XX=y
-CONFIG_RT2800USB_RT3573=y
-CONFIG_RT2800USB_RT53XX=y
-CONFIG_RT2800USB_RT55XX=y
-CONFIG_RT2800USB_UNKNOWN=y
-CONFIG_RT2800_LIB=m
-CONFIG_RT2800_LIB_MMIO=m
-CONFIG_RT2X00_LIB_MMIO=m
-CONFIG_RT2X00_LIB_PCI=m
-CONFIG_RT2X00_LIB_USB=m
-CONFIG_RT2X00_LIB=m
-CONFIG_RT2X00_LIB_FIRMWARE=y
-CONFIG_RT2X00_LIB_CRYPTO=y
-CONFIG_RT2X00_LIB_LEDS=y
-CONFIG_RT2X00_LIB_DEBUGFS=y
-# CONFIG_RT2X00_DEBUG is not set
-CONFIG_WLAN_VENDOR_REALTEK=y
-# CONFIG_RTL8180 is not set
-CONFIG_RTL8187=m
-CONFIG_RTL8187_LEDS=y
-CONFIG_RTL_CARDS=m
-CONFIG_RTL8192CE=m
-CONFIG_RTL8192SE=m
-CONFIG_RTL8192DE=m
-CONFIG_RTL8723AE=m
-CONFIG_RTL8723BE=m
-CONFIG_RTL8188EE=m
-CONFIG_RTL8192EE=m
-CONFIG_RTL8821AE=m
-CONFIG_RTL8192CU=m
-CONFIG_RTLWIFI=m
-CONFIG_RTLWIFI_PCI=m
-CONFIG_RTLWIFI_USB=m
-CONFIG_RTLWIFI_DEBUG=y
-CONFIG_RTL8192C_COMMON=m
-CONFIG_RTL8723_COMMON=m
-CONFIG_RTLBTCOEXIST=m
-CONFIG_RTW88=m
-CONFIG_RTW88_CORE=m
-CONFIG_RTW88_PCI=m
-CONFIG_RTW88_8822BE=y
-CONFIG_RTW88_8822CE=y
-CONFIG_RTW88_DEBUG=y
-CONFIG_RTW88_DEBUGFS=y
-# CONFIG_WL_TI is not set
-# CONFIG_ZD1211RW is not set
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-CONFIG_WAN=y
-CONFIG_HDLC=m
-CONFIG_HDLC_RAW=m
-# CONFIG_HDLC_RAW_ETH is not set
-CONFIG_HDLC_CISCO=m
-CONFIG_HDLC_FR=m
-CONFIG_HDLC_PPP=m
-
-#
-# X.25/LAPB support is disabled
-#
-# CONFIG_PCI200SYN is not set
-# CONFIG_WANXL is not set
-# CONFIG_PC300TOO is not set
-# CONFIG_FARSYNC is not set
-# CONFIG_DSCC4 is not set
-CONFIG_DLCI=m
-CONFIG_DLCI_MAX=8
-CONFIG_IEEE802154_DRIVERS=m
-CONFIG_IEEE802154_FAKELB=m
-# CONFIG_IEEE802154_ATUSB is not set
-# CONFIG_VMXNET3 is not set
-CONFIG_NET_FAILOVER=m
-CONFIG_ISDN=y
-CONFIG_ISDN_I4L=m
-CONFIG_ISDN_PPP=y
-CONFIG_ISDN_PPP_VJ=y
-CONFIG_ISDN_MPP=y
-CONFIG_IPPP_FILTER=y
-# CONFIG_ISDN_PPP_BSDCOMP is not set
-CONFIG_ISDN_AUDIO=y
-CONFIG_ISDN_TTY_FAX=y
-
-#
-# ISDN feature submodules
-#
-CONFIG_ISDN_DIVERSION=m
-
-#
-# ISDN4Linux hardware drivers
-#
-
-#
-# Passive cards
-#
-CONFIG_ISDN_DRV_HISAX=m
-
-#
-# D-channel protocol features
-#
-CONFIG_HISAX_EURO=y
-CONFIG_DE_AOC=y
-CONFIG_HISAX_NO_SENDCOMPLETE=y
-CONFIG_HISAX_NO_LLC=y
-CONFIG_HISAX_NO_KEYPAD=y
-CONFIG_HISAX_1TR6=y
-CONFIG_HISAX_NI1=y
-CONFIG_HISAX_MAX_CARDS=8
-
-#
-# HiSax supported cards
-#
-CONFIG_HISAX_16_3=y
-CONFIG_HISAX_S0BOX=y
-CONFIG_HISAX_AVM_A1_PCMCIA=y
-CONFIG_HISAX_ELSA=y
-CONFIG_HISAX_DIEHLDIVA=y
-CONFIG_HISAX_SEDLBAUER=y
-CONFIG_HISAX_NICCY=y
-CONFIG_HISAX_BKM_A4T=y
-CONFIG_HISAX_SCT_QUADRO=y
-CONFIG_HISAX_GAZEL=y
-CONFIG_HISAX_W6692=y
-CONFIG_HISAX_HFC_SX=y
-# CONFIG_HISAX_DEBUG is not set
-
-#
-# HiSax PCMCIA card service modules
-#
-
-#
-# HiSax sub driver modules
-#
-CONFIG_HISAX_ST5481=m
-# CONFIG_HISAX_HFCUSB is not set
-CONFIG_HISAX_HFC4S8S=m
-CONFIG_HISAX_FRITZ_PCIPNP=m
-
-#
-# Active cards
-#
-CONFIG_ISDN_CAPI=m
-CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
-# CONFIG_CAPI_TRACE is not set
-CONFIG_ISDN_CAPI_MIDDLEWARE=y
-CONFIG_ISDN_CAPI_CAPI20=m
-CONFIG_ISDN_CAPI_CAPIDRV=m
-
-#
-# CAPI hardware drivers
-#
-CONFIG_CAPI_AVM=y
-CONFIG_ISDN_DRV_AVMB1_B1PCI=m
-CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
-CONFIG_ISDN_DRV_AVMB1_T1PCI=m
-CONFIG_ISDN_DRV_AVMB1_C4=m
-# CONFIG_CAPI_EICON is not set
-CONFIG_ISDN_DRV_GIGASET=m
-CONFIG_GIGASET_CAPI=y
-# CONFIG_GIGASET_I4L is not set
-# CONFIG_GIGASET_DUMMYLL is not set
-CONFIG_GIGASET_BASE=m
-CONFIG_GIGASET_M105=m
-CONFIG_GIGASET_M101=m
-# CONFIG_GIGASET_DEBUG is not set
-CONFIG_HYSDN=m
-CONFIG_HYSDN_CAPI=y
-CONFIG_MISDN=m
-CONFIG_MISDN_DSP=m
-CONFIG_MISDN_L1OIP=m
-
-#
-# mISDN hardware drivers
-#
-CONFIG_MISDN_HFCPCI=m
-CONFIG_MISDN_HFCMULTI=m
-CONFIG_MISDN_HFCUSB=m
-CONFIG_MISDN_AVMFRITZ=m
-CONFIG_MISDN_SPEEDFAX=m
-CONFIG_MISDN_INFINEON=m
-CONFIG_MISDN_W6692=m
-CONFIG_MISDN_NETJET=m
-CONFIG_MISDN_IPAC=m
-CONFIG_MISDN_ISAR=m
-CONFIG_ISDN_HDLC=m
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-CONFIG_INPUT_LEDS=y
-CONFIG_INPUT_FF_MEMLESS=y
-CONFIG_INPUT_POLLDEV=m
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-CONFIG_INPUT_MOUSEDEV=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
-CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
-# CONFIG_INPUT_JOYDEV is not set
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-CONFIG_INPUT_KEYBOARD=y
-# CONFIG_KEYBOARD_ADP5588 is not set
-# CONFIG_KEYBOARD_ADP5589 is not set
-CONFIG_KEYBOARD_ATKBD=y
-# CONFIG_KEYBOARD_QT1070 is not set
-# CONFIG_KEYBOARD_QT2160 is not set
-# CONFIG_KEYBOARD_LKKBD is not set
-# CONFIG_KEYBOARD_GPIO is not set
-# CONFIG_KEYBOARD_GPIO_POLLED is not set
-# CONFIG_KEYBOARD_TCA6416 is not set
-# CONFIG_KEYBOARD_TCA8418 is not set
-# CONFIG_KEYBOARD_MATRIX is not set
-# CONFIG_KEYBOARD_LM8323 is not set
-# CONFIG_KEYBOARD_LM8333 is not set
-# CONFIG_KEYBOARD_MAX7359 is not set
-# CONFIG_KEYBOARD_MCS is not set
-# CONFIG_KEYBOARD_MPR121 is not set
-# CONFIG_KEYBOARD_NEWTON is not set
-# CONFIG_KEYBOARD_OPENCORES is not set
-# CONFIG_KEYBOARD_STOWAWAY is not set
-# CONFIG_KEYBOARD_SUNKBD is not set
-# CONFIG_KEYBOARD_XTKBD is not set
-CONFIG_INPUT_MOUSE=y
-CONFIG_MOUSE_PS2=y
-CONFIG_MOUSE_PS2_ALPS=y
-CONFIG_MOUSE_PS2_LOGIPS2PP=y
-CONFIG_MOUSE_PS2_SYNAPTICS=y
-CONFIG_MOUSE_PS2_CYPRESS=y
-CONFIG_MOUSE_PS2_TRACKPOINT=y
-CONFIG_MOUSE_PS2_ELANTECH=y
-CONFIG_MOUSE_PS2_SENTELIC=y
-# CONFIG_MOUSE_PS2_TOUCHKIT is not set
-CONFIG_MOUSE_SERIAL=m
-CONFIG_MOUSE_APPLETOUCH=m
-CONFIG_MOUSE_BCM5974=m
-CONFIG_MOUSE_CYAPA=m
-CONFIG_MOUSE_VSXXXAA=m
-# CONFIG_MOUSE_GPIO is not set
-CONFIG_MOUSE_SYNAPTICS_I2C=m
-CONFIG_MOUSE_SYNAPTICS_USB=m
-# CONFIG_INPUT_JOYSTICK is not set
-CONFIG_INPUT_TABLET=y
-CONFIG_TABLET_USB_ACECAD=m
-CONFIG_TABLET_USB_AIPTEK=m
-CONFIG_TABLET_USB_GTCO=m
-# CONFIG_TABLET_USB_HANWANG is not set
-CONFIG_TABLET_USB_KBTAB=m
-CONFIG_TABLET_USB_WACOM=m
-CONFIG_INPUT_TOUCHSCREEN=y
-# CONFIG_TOUCHSCREEN_AD7879 is not set
-# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
-# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_BU21013 is not set
-# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
-# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
-# CONFIG_TOUCHSCREEN_DYNAPRO is not set
-# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
-# CONFIG_TOUCHSCREEN_EETI is not set
-# CONFIG_TOUCHSCREEN_EGALAX is not set
-# CONFIG_TOUCHSCREEN_FUJITSU is not set
-# CONFIG_TOUCHSCREEN_ILI210X is not set
-# CONFIG_TOUCHSCREEN_GUNZE is not set
-CONFIG_TOUCHSCREEN_ELO=m
-CONFIG_TOUCHSCREEN_WACOM_W8001=m
-CONFIG_TOUCHSCREEN_WACOM_I2C=m
-# CONFIG_TOUCHSCREEN_MAX11801 is not set
-# CONFIG_TOUCHSCREEN_MCS5000 is not set
-# CONFIG_TOUCHSCREEN_MMS114 is not set
-# CONFIG_TOUCHSCREEN_MTOUCH is not set
-# CONFIG_TOUCHSCREEN_INEXIO is not set
-# CONFIG_TOUCHSCREEN_MK712 is not set
-# CONFIG_TOUCHSCREEN_PENMOUNT is not set
-# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
-# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
-# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
-# CONFIG_TOUCHSCREEN_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_WM97XX is not set
-# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
-# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
-# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
-# CONFIG_TOUCHSCREEN_TSC2007 is not set
-# CONFIG_TOUCHSCREEN_ST1232 is not set
-# CONFIG_TOUCHSCREEN_TPS6507X is not set
-CONFIG_INPUT_MISC=y
-# CONFIG_INPUT_AD714X is not set
-# CONFIG_INPUT_BMA150 is not set
-# CONFIG_INPUT_PCSPKR is not set
-# CONFIG_INPUT_MMA8450 is not set
-# CONFIG_INPUT_MPU3050 is not set
-# CONFIG_INPUT_GP2A is not set
-# CONFIG_INPUT_GPIO_TILT_POLLED is not set
-CONFIG_INPUT_ATI_REMOTE2=m
-CONFIG_INPUT_KEYSPAN_REMOTE=m
-# CONFIG_INPUT_KXTJ9 is not set
-CONFIG_INPUT_POWERMATE=m
-CONFIG_INPUT_YEALINK=m
-CONFIG_INPUT_CM109=m
-CONFIG_INPUT_UINPUT=m
-# CONFIG_INPUT_PCF8574 is not set
-CONFIG_INPUT_PWM_BEEPER=m
-CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
-# CONFIG_INPUT_ADXL34X is not set
-# CONFIG_INPUT_IMS_PCU is not set
-# CONFIG_INPUT_CMA3000 is not set
-# CONFIG_RMI4_CORE is not set
-
-#
-# Hardware I/O ports
-#
-CONFIG_SERIO=y
-CONFIG_SERIO_I8042=y
-CONFIG_SERIO_SERPORT=y
-# CONFIG_SERIO_PARKBD is not set
-# CONFIG_SERIO_PCIPS2 is not set
-CONFIG_SERIO_LIBPS2=y
-CONFIG_SERIO_RAW=m
-# CONFIG_SERIO_XILINX_XPS_PS2 is not set
-CONFIG_SERIO_ALTERA_PS2=m
-# CONFIG_SERIO_PS2MULT is not set
-CONFIG_SERIO_ARC_PS2=m
-# CONFIG_SERIO_APBPS2 is not set
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_VT_CONSOLE_SLEEP=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_SERIAL_NONSTANDARD=y
-# CONFIG_ROCKETPORT is not set
-CONFIG_CYCLADES=m
-# CONFIG_CYZ_INTR is not set
-# CONFIG_MOXA_INTELLIO is not set
-# CONFIG_MOXA_SMARTIO is not set
-CONFIG_SYNCLINK=m
-CONFIG_SYNCLINKMP=m
-CONFIG_SYNCLINK_GT=m
-CONFIG_NOZOMI=m
-# CONFIG_ISI is not set
-CONFIG_N_HDLC=m
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=y
-# CONFIG_STALDRV is not set
-
-#
-# Serial drivers
-#
-CONFIG_SERIAL_8250=y
-# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_SERIAL_8250_DMA=y
-CONFIG_SERIAL_8250_PCI=y
-CONFIG_SERIAL_8250_NR_UARTS=32
-CONFIG_SERIAL_8250_RUNTIME_UARTS=4
-CONFIG_SERIAL_8250_EXTENDED=y
-CONFIG_SERIAL_8250_MANY_PORTS=y
-CONFIG_SERIAL_8250_SHARE_IRQ=y
-# CONFIG_SERIAL_8250_DETECT_IRQ is not set
-CONFIG_SERIAL_8250_RSA=y
-CONFIG_SERIAL_8250_FSL=y
-# CONFIG_SERIAL_8250_DW is not set
-
-#
-# Non-8250 serial port support
-#
-# CONFIG_SERIAL_KGDB_NMI is not set
-# CONFIG_SERIAL_MFD_HSU is not set
-CONFIG_SERIAL_CORE=y
-CONFIG_SERIAL_CORE_CONSOLE=y
-CONFIG_CONSOLE_POLL=y
-CONFIG_SERIAL_ICOM=m
-CONFIG_SERIAL_JSM=m
-CONFIG_SERIAL_OF_PLATFORM=m
-# CONFIG_SERIAL_SCCNXP is not set
-# CONFIG_SERIAL_TIMBERDALE is not set
-# CONFIG_SERIAL_ALTERA_JTAGUART is not set
-# CONFIG_SERIAL_ALTERA_UART is not set
-# CONFIG_SERIAL_PCH_UART is not set
-# CONFIG_SERIAL_XILINX_PS_UART is not set
-CONFIG_SERIAL_ARC=m
-CONFIG_SERIAL_ARC_NR_PORTS=1
-# CONFIG_SERIAL_RP2 is not set
-CONFIG_PRINTER=m
-# CONFIG_LP_CONSOLE is not set
-CONFIG_PPDEV=m
-CONFIG_HVC_DRIVER=y
-CONFIG_HVC_IRQ=y
-CONFIG_HVC_CONSOLE=y
-# CONFIG_HVC_OLD_HVSI is not set
-CONFIG_HVC_OPAL=y
-CONFIG_HVC_RTAS=y
-# CONFIG_HVC_UDBG is not set
-CONFIG_HVCS=m
-CONFIG_VIRTIO_CONSOLE=m
-CONFIG_IBM_BSR=m
-CONFIG_IPMI_HANDLER=m
-CONFIG_IPMI_PROC_INTERFACE=y
-CONFIG_IPMI_PANIC_EVENT=y
-# CONFIG_IPMI_PANIC_STRING is not set
-CONFIG_IPMI_DEVICE_INTERFACE=m
-CONFIG_IPMI_SI=m
-CONFIG_IPMI_SSIF=m
-# CONFIG_IPMI_POWERNV is not set
-CONFIG_IPMI_WATCHDOG=m
-CONFIG_IPMI_POWEROFF=m
-CONFIG_HW_RANDOM=y
-CONFIG_HW_RANDOM_TIMERIOMEM=m
-CONFIG_HW_RANDOM_VIRTIO=m
-CONFIG_HW_RANDOM_PSERIES=m
-CONFIG_HW_RANDOM_POWERNV=m
-# CONFIG_R3964 is not set
-# CONFIG_APPLICOM is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-CONFIG_HANGCHECK_TIMER=m
-CONFIG_TCG_TPM=y
-CONFIG_HW_RANDOM_TPM=y
-CONFIG_TCG_TIS_CORE=m
-CONFIG_TCG_TIS=m
-CONFIG_TCG_TIS_I2C_ATMEL=m
-CONFIG_TCG_TIS_I2C_INFINEON=m
-CONFIG_TCG_TIS_I2C_NUVOTON=m
-# CONFIG_TCG_ATMEL is not set
-CONFIG_TCG_IBMVTPM=y
-# CONFIG_TCG_VTPM_PROXY is not set
-CONFIG_TCG_TIS_ST33ZP24=m
-CONFIG_TCG_TIS_ST33ZP24_I2C=m
-CONFIG_DEVPORT=y
-CONFIG_HMC_DRV=m
-
-#
-# I2C support
-#
-CONFIG_I2C=m
-CONFIG_I2C_BOARDINFO=y
-CONFIG_I2C_COMPAT=y
-CONFIG_I2C_CHARDEV=m
-# CONFIG_I2C_MUX is not set
-CONFIG_I2C_HELPER_AUTO=y
-CONFIG_I2C_SMBUS=m
-CONFIG_I2C_ALGOBIT=m
-CONFIG_I2C_ALGOPCA=m
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-# CONFIG_I2C_AMD756 is not set
-# CONFIG_I2C_AMD8111 is not set
-# CONFIG_I2C_I801 is not set
-# CONFIG_I2C_ISCH is not set
-# CONFIG_I2C_PIIX4 is not set
-CONFIG_I2C_NFORCE2=m
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-# CONFIG_I2C_SIS96X is not set
-# CONFIG_I2C_VIA is not set
-# CONFIG_I2C_VIAPRO is not set
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_CBUS_GPIO is not set
-CONFIG_I2C_DESIGNWARE_CORE=m
-CONFIG_I2C_DESIGNWARE_PLATFORM=m
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_EG20T is not set
-# CONFIG_I2C_GPIO is not set
-# CONFIG_I2C_INTEL_MID is not set
-CONFIG_I2C_MPC=m
-# CONFIG_I2C_OCORES is not set
-CONFIG_I2C_PCA_PLATFORM=m
-# CONFIG_I2C_PXA_PCI is not set
-CONFIG_I2C_SIMTEC=m
-# CONFIG_I2C_XILINX is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-CONFIG_I2C_DIOLAN_U2C=m
-CONFIG_I2C_PARPORT=m
-CONFIG_I2C_PARPORT_LIGHT=m
-# CONFIG_I2C_TAOS_EVM is not set
-CONFIG_I2C_TINY_USB=m
-CONFIG_I2C_VIPERBOARD=m
-
-#
-# Other I2C/SMBus bus drivers
-#
-CONFIG_I2C_OPAL=m
-CONFIG_I2C_STUB=m
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-# CONFIG_SPI is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-CONFIG_PPS_CLIENT_PARPORT=m
-CONFIG_PPS_CLIENT_GPIO=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-CONFIG_DP83640_PHY=m
-CONFIG_PTP_1588_CLOCK_PCH=m
-CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
-CONFIG_ARCH_REQUIRE_GPIOLIB=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_DEVRES=y
-CONFIG_OF_GPIO=y
-# CONFIG_DEBUG_GPIO is not set
-CONFIG_GPIO_SYSFS=y
-
-#
-# Memory mapped GPIO drivers:
-#
-# CONFIG_GPIO_GENERIC_PLATFORM is not set
-# CONFIG_GPIO_SCH311X is not set
-# CONFIG_GPIO_TS5500 is not set
-# CONFIG_GPIO_XILINX is not set
-# CONFIG_GPIO_VX855 is not set
-# CONFIG_GPIO_GRGPIO is not set
-
-#
-# I2C GPIO expanders:
-#
-# CONFIG_GPIO_MAX7300 is not set
-# CONFIG_GPIO_MAX732X is not set
-CONFIG_GPIO_PCA953X=m
-CONFIG_GPIO_PCF857X=m
-# CONFIG_GPIO_ADP5588 is not set
-# CONFIG_GPIO_ADNP is not set
-
-#
-# PCI GPIO expanders:
-#
-# CONFIG_GPIO_AMD8111 is not set
-# CONFIG_GPIO_ML_IOH is not set
-# CONFIG_GPIO_RDC321X is not set
-
-#
-# SPI GPIO expanders:
-#
-# CONFIG_GPIO_MCP23S08 is not set
-
-#
-# AC97 GPIO expanders:
-#
-
-#
-# LPC GPIO expanders:
-#
-
-#
-# MODULbus GPIO expanders:
-#
-
-#
-# USB GPIO expanders:
-#
-CONFIG_GPIO_VIPERBOARD=m
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_PDA_POWER is not set
-# CONFIG_GENERIC_ADC_BATTERY is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-# CONFIG_BATTERY_DS2781 is not set
-# CONFIG_BATTERY_DS2782 is not set
-# CONFIG_BATTERY_SBS is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-# CONFIG_BATTERY_MAX17040 is not set
-# CONFIG_BATTERY_MAX17042 is not set
-# CONFIG_CHARGER_MAX8903 is not set
-# CONFIG_CHARGER_LP8727 is not set
-# CONFIG_CHARGER_GPIO is not set
-# CONFIG_CHARGER_BQ2415X is not set
-CONFIG_CHARGER_SMB347=m
-# CONFIG_BATTERY_GOLDFISH is not set
-CONFIG_POWER_RESET=y
-CONFIG_POWER_RESET_GPIO=y
-# CONFIG_POWER_AVS is not set
-# CONFIG_POWERCAP is not set
-CONFIG_HWMON=y
-CONFIG_HWMON_VID=m
-# CONFIG_HWMON_DEBUG_CHIP is not set
-
-#
-# Native drivers
-#
-CONFIG_SENSORS_AD7414=m
-CONFIG_SENSORS_AD7418=m
-CONFIG_SENSORS_ADM1021=m
-CONFIG_SENSORS_ADM1025=m
-CONFIG_SENSORS_ADM1026=m
-CONFIG_SENSORS_ADM1029=m
-CONFIG_SENSORS_ADM1031=m
-CONFIG_SENSORS_ADM9240=m
-CONFIG_SENSORS_ADT7X10=m
-CONFIG_SENSORS_ADT7410=m
-CONFIG_SENSORS_ADT7411=m
-CONFIG_SENSORS_ADT7462=m
-CONFIG_SENSORS_ADT7470=m
-CONFIG_SENSORS_ADT7475=m
-CONFIG_SENSORS_ASC7621=m
-CONFIG_SENSORS_ATXP1=m
-CONFIG_SENSORS_DS620=m
-CONFIG_SENSORS_DS1621=m
-# CONFIG_SENSORS_I5K_AMB is not set
-CONFIG_SENSORS_F75375S=m
-CONFIG_SENSORS_G760A=m
-CONFIG_SENSORS_GL518SM=m
-CONFIG_SENSORS_GL520SM=m
-# CONFIG_SENSORS_GPIO_FAN is not set
-# CONFIG_SENSORS_HIH6130 is not set
-CONFIG_SENSORS_IBMAEM=m
-CONFIG_SENSORS_IBMPEX=m
-CONFIG_SENSORS_IBMPOWERNV=y
-# CONFIG_SENSORS_IIO_HWMON is not set
-CONFIG_SENSORS_JC42=m
-CONFIG_SENSORS_LINEAGE=m
-CONFIG_SENSORS_LM63=m
-CONFIG_SENSORS_LM73=m
-CONFIG_SENSORS_LM75=m
-CONFIG_SENSORS_LM77=m
-CONFIG_SENSORS_LM78=m
-CONFIG_SENSORS_LM80=m
-CONFIG_SENSORS_LM83=m
-CONFIG_SENSORS_LM85=m
-CONFIG_SENSORS_LM87=m
-CONFIG_SENSORS_LM90=m
-CONFIG_SENSORS_LM92=m
-CONFIG_SENSORS_LM93=m
-CONFIG_SENSORS_LTC4151=m
-CONFIG_SENSORS_LTC4215=m
-CONFIG_SENSORS_LTC4245=m
-CONFIG_SENSORS_LTC4261=m
-CONFIG_SENSORS_LM95234=m
-CONFIG_SENSORS_LM95241=m
-CONFIG_SENSORS_LM95245=m
-CONFIG_SENSORS_MAX16065=m
-CONFIG_SENSORS_MAX1619=m
-CONFIG_SENSORS_MAX1668=m
-CONFIG_SENSORS_MAX197=m
-CONFIG_SENSORS_MAX6639=m
-CONFIG_SENSORS_MAX6642=m
-CONFIG_SENSORS_MAX6650=m
-CONFIG_SENSORS_MAX6697=m
-CONFIG_SENSORS_MCP3021=m
-CONFIG_SENSORS_NTC_THERMISTOR=m
-CONFIG_SENSORS_PCF8591=m
-CONFIG_PMBUS=m
-CONFIG_SENSORS_PMBUS=m
-CONFIG_SENSORS_ADM1275=m
-CONFIG_SENSORS_LM25066=m
-CONFIG_SENSORS_LTC2978=m
-CONFIG_SENSORS_MAX16064=m
-CONFIG_SENSORS_MAX34440=m
-CONFIG_SENSORS_MAX8688=m
-CONFIG_SENSORS_UCD9000=m
-CONFIG_SENSORS_UCD9200=m
-CONFIG_SENSORS_ZL6100=m
-CONFIG_SENSORS_SHT15=m
-CONFIG_SENSORS_SHT21=m
-CONFIG_SENSORS_SIS5595=m
-# CONFIG_SENSORS_SMM665 is not set
-CONFIG_SENSORS_EMC1403=m
-# CONFIG_SENSORS_EMC2103 is not set
-CONFIG_SENSORS_EMC6W201=m
-CONFIG_SENSORS_SMSC47M192=m
-# CONFIG_SENSORS_SCH56XX_COMMON is not set
-CONFIG_SENSORS_ADS1015=m
-CONFIG_SENSORS_ADS7828=m
-CONFIG_SENSORS_AMC6821=m
-CONFIG_SENSORS_INA209=m
-CONFIG_SENSORS_INA2XX=m
-CONFIG_SENSORS_THMC50=m
-CONFIG_SENSORS_TMP102=m
-CONFIG_SENSORS_TMP401=m
-CONFIG_SENSORS_TMP421=m
-CONFIG_SENSORS_VIA686A=m
-CONFIG_SENSORS_VT8231=m
-CONFIG_SENSORS_W83781D=m
-CONFIG_SENSORS_W83791D=m
-CONFIG_SENSORS_W83792D=m
-CONFIG_SENSORS_W83793=m
-CONFIG_SENSORS_W83795=m
-# CONFIG_SENSORS_W83795_FANCTRL is not set
-CONFIG_SENSORS_W83L785TS=m
-CONFIG_SENSORS_W83L786NG=m
-CONFIG_THERMAL=y
-CONFIG_THERMAL_HWMON=y
-CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
-# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
-# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
-CONFIG_THERMAL_GOV_FAIR_SHARE=y
-CONFIG_THERMAL_GOV_STEP_WISE=y
-# CONFIG_THERMAL_GOV_USER_SPACE is not set
-# CONFIG_CPU_THERMAL is not set
-# CONFIG_THERMAL_EMULATION is not set
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_CORE=y
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
-CONFIG_WATCHDOG_SYSFS=y
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-CONFIG_ALIM7101_WDT=m
-CONFIG_I6300ESB_WDT=m
-CONFIG_WATCHDOG_RTAS=m
-
-#
-# PCI-based Watchdog Cards
-#
-CONFIG_PCIPCWATCHDOG=m
-CONFIG_WDTPCI=m
-
-#
-# USB-based Watchdog Cards
-#
-CONFIG_USBPCWATCHDOG=m
-
-#
-# Watchdog Pretimeout Governors
-#
-# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-CONFIG_SSB=m
-CONFIG_SSB_SPROM=y
-CONFIG_SSB_PCIHOST_POSSIBLE=y
-CONFIG_SSB_PCIHOST=y
-# CONFIG_SSB_B43_PCI_BRIDGE is not set
-CONFIG_SSB_SDIOHOST_POSSIBLE=y
-CONFIG_SSB_SDIOHOST=y
-# CONFIG_SSB_DEBUG is not set
-CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
-CONFIG_SSB_DRIVER_PCICORE=y
-CONFIG_SSB_DRIVER_GPIO=y
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-CONFIG_BCMA=m
-CONFIG_BCMA_HOST_PCI_POSSIBLE=y
-CONFIG_BCMA_HOST_PCI=y
-# CONFIG_BCMA_HOST_SOC is not set
-CONFIG_BCMA_DRIVER_PCI=y
-CONFIG_BCMA_DRIVER_GMAC_CMN=y
-CONFIG_BCMA_DRIVER_GPIO=y
-# CONFIG_BCMA_DEBUG is not set
-
-#
-# Multifunction device drivers
-#
-CONFIG_MFD_CORE=m
-# CONFIG_MFD_CROS_EC is not set
-# CONFIG_MFD_MC13XXX_I2C is not set
-# CONFIG_HTC_PASIC3 is not set
-# CONFIG_LPC_ICH is not set
-# CONFIG_LPC_SCH is not set
-# CONFIG_MFD_JANZ_CMODIO is not set
-CONFIG_MFD_VIPERBOARD=m
-# CONFIG_MFD_RETU is not set
-# CONFIG_MFD_PCF50633 is not set
-# CONFIG_UCB1400_CORE is not set
-# CONFIG_MFD_RDC321X is not set
-CONFIG_MFD_RTSX_PCI=m
-CONFIG_MFD_RTSX_USB=m
-# CONFIG_MFD_SI476X_CORE is not set
-CONFIG_MFD_SM501=m
-CONFIG_MFD_SM501_GPIO=y
-# CONFIG_ABX500_CORE is not set
-# CONFIG_MFD_SYSCON is not set
-# CONFIG_MFD_TI_AM335X_TSCADC is not set
-# CONFIG_TPS6105X is not set
-# CONFIG_TPS65010 is not set
-# CONFIG_TPS6507X is not set
-# CONFIG_MFD_TPS65217 is not set
-# CONFIG_MFD_TPS65912 is not set
-# CONFIG_MFD_WL1273_CORE is not set
-# CONFIG_MFD_LM3533 is not set
-# CONFIG_MFD_TIMBERDALE is not set
-# CONFIG_MFD_TMIO is not set
-CONFIG_MFD_VX855=m
-# CONFIG_MFD_ARIZONA_I2C is not set
-# CONFIG_REGULATOR is not set
-CONFIG_MEDIA_SUPPORT=m
-
-#
-# Multimedia core support
-#
-CONFIG_MEDIA_CAMERA_SUPPORT=y
-CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
-CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
-CONFIG_MEDIA_RADIO_SUPPORT=y
-CONFIG_MEDIA_RC_SUPPORT=y
-# CONFIG_MEDIA_CONTROLLER is not set
-CONFIG_VIDEO_DEV=m
-CONFIG_VIDEO_V4L2=m
-# CONFIG_VIDEO_ADV_DEBUG is not set
-# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
-CONFIG_VIDEO_TUNER=m
-CONFIG_VIDEOBUF_GEN=m
-CONFIG_VIDEOBUF_DMA_SG=m
-CONFIG_VIDEOBUF_VMALLOC=m
-CONFIG_VIDEOBUF_DVB=m
-CONFIG_VIDEOBUF2_CORE=m
-CONFIG_VIDEOBUF2_MEMOPS=m
-CONFIG_VIDEOBUF2_VMALLOC=m
-# CONFIG_VIDEO_V4L2_INT_DEVICE is not set
-CONFIG_DVB_CORE=m
-CONFIG_DVB_NET=y
-CONFIG_TTPCI_EEPROM=m
-CONFIG_DVB_MAX_ADAPTERS=8
-CONFIG_DVB_DYNAMIC_MINORS=y
-
-#
-# Media drivers
-#
-CONFIG_RC_CORE=m
-CONFIG_RC_MAP=m
-CONFIG_RC_DECODERS=y
-CONFIG_LIRC=m
-CONFIG_IR_LIRC_CODEC=m
-CONFIG_IR_NEC_DECODER=m
-CONFIG_IR_RC5_DECODER=m
-CONFIG_IR_RC6_DECODER=m
-CONFIG_IR_JVC_DECODER=m
-CONFIG_IR_SONY_DECODER=m
-CONFIG_IR_RC5_SZ_DECODER=m
-CONFIG_IR_SANYO_DECODER=m
-CONFIG_IR_MCE_KBD_DECODER=m
-CONFIG_RC_DEVICES=y
-CONFIG_RC_ATI_REMOTE=m
-CONFIG_IR_IMON=m
-CONFIG_IR_MCEUSB=m
-CONFIG_IR_REDRAT3=m
-CONFIG_IR_STREAMZAP=m
-CONFIG_IR_IGUANA=m
-CONFIG_IR_TTUSBIR=m
-CONFIG_RC_LOOPBACK=m
-CONFIG_IR_GPIO_CIR=m
-CONFIG_MEDIA_USB_SUPPORT=y
-
-#
-# Webcam devices
-#
-CONFIG_USB_VIDEO_CLASS=m
-CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
-CONFIG_USB_GSPCA=m
-CONFIG_USB_M5602=m
-CONFIG_USB_STV06XX=m
-CONFIG_USB_GL860=m
-CONFIG_USB_GSPCA_BENQ=m
-CONFIG_USB_GSPCA_CONEX=m
-CONFIG_USB_GSPCA_CPIA1=m
-CONFIG_USB_GSPCA_ETOMS=m
-CONFIG_USB_GSPCA_FINEPIX=m
-CONFIG_USB_GSPCA_JEILINJ=m
-CONFIG_USB_GSPCA_JL2005BCD=m
-# CONFIG_USB_GSPCA_KINECT is not set
-CONFIG_USB_GSPCA_KONICA=m
-CONFIG_USB_GSPCA_MARS=m
-CONFIG_USB_GSPCA_MR97310A=m
-CONFIG_USB_GSPCA_NW80X=m
-CONFIG_USB_GSPCA_OV519=m
-CONFIG_USB_GSPCA_OV534=m
-CONFIG_USB_GSPCA_OV534_9=m
-CONFIG_USB_GSPCA_PAC207=m
-CONFIG_USB_GSPCA_PAC7302=m
-CONFIG_USB_GSPCA_PAC7311=m
-CONFIG_USB_GSPCA_SE401=m
-CONFIG_USB_GSPCA_SN9C2028=m
-CONFIG_USB_GSPCA_SN9C20X=m
-CONFIG_USB_GSPCA_SONIXB=m
-CONFIG_USB_GSPCA_SONIXJ=m
-CONFIG_USB_GSPCA_SPCA500=m
-CONFIG_USB_GSPCA_SPCA501=m
-CONFIG_USB_GSPCA_SPCA505=m
-CONFIG_USB_GSPCA_SPCA506=m
-CONFIG_USB_GSPCA_SPCA508=m
-CONFIG_USB_GSPCA_SPCA561=m
-CONFIG_USB_GSPCA_SPCA1528=m
-CONFIG_USB_GSPCA_SQ905=m
-CONFIG_USB_GSPCA_SQ905C=m
-CONFIG_USB_GSPCA_SQ930X=m
-CONFIG_USB_GSPCA_STK014=m
-CONFIG_USB_GSPCA_STV0680=m
-CONFIG_USB_GSPCA_SUNPLUS=m
-CONFIG_USB_GSPCA_T613=m
-CONFIG_USB_GSPCA_TOPRO=m
-CONFIG_USB_GSPCA_TV8532=m
-CONFIG_USB_GSPCA_VC032X=m
-CONFIG_USB_GSPCA_VICAM=m
-CONFIG_USB_GSPCA_XIRLINK_CIT=m
-CONFIG_USB_GSPCA_ZC3XX=m
-CONFIG_USB_PWC=m
-# CONFIG_USB_PWC_DEBUG is not set
-CONFIG_USB_PWC_INPUT_EVDEV=y
-# CONFIG_VIDEO_CPIA2 is not set
-CONFIG_USB_ZR364XX=m
-CONFIG_USB_STKWEBCAM=m
-CONFIG_USB_S2255=m
-# CONFIG_USB_SN9C102 is not set
-
-#
-# Analog TV USB devices
-#
-CONFIG_VIDEO_PVRUSB2=m
-CONFIG_VIDEO_PVRUSB2_SYSFS=y
-CONFIG_VIDEO_PVRUSB2_DVB=y
-# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
-CONFIG_VIDEO_HDPVR=m
-CONFIG_VIDEO_TLG2300=m
-CONFIG_VIDEO_USBVISION=m
-CONFIG_VIDEO_STK1160=m
-CONFIG_VIDEO_STK1160_AC97=y
-
-#
-# Analog/digital TV USB devices
-#
-CONFIG_VIDEO_AU0828=m
-CONFIG_VIDEO_AU0828_V4L2=y
-CONFIG_VIDEO_CX231XX=m
-CONFIG_VIDEO_CX231XX_RC=y
-CONFIG_VIDEO_CX231XX_ALSA=m
-CONFIG_VIDEO_CX231XX_DVB=m
-CONFIG_VIDEO_TM6000=m
-CONFIG_VIDEO_TM6000_ALSA=m
-CONFIG_VIDEO_TM6000_DVB=m
-
-#
-# Digital TV USB devices
-#
-CONFIG_DVB_USB=m
-# CONFIG_DVB_USB_DEBUG is not set
-CONFIG_DVB_USB_A800=m
-CONFIG_DVB_USB_DIBUSB_MB=m
-# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
-CONFIG_DVB_USB_DIBUSB_MC=m
-CONFIG_DVB_USB_DIB0700=m
-CONFIG_DVB_USB_UMT_010=m
-CONFIG_DVB_USB_CXUSB=m
-CONFIG_DVB_USB_M920X=m
-CONFIG_DVB_USB_DIGITV=m
-CONFIG_DVB_USB_VP7045=m
-CONFIG_DVB_USB_VP702X=m
-CONFIG_DVB_USB_GP8PSK=m
-CONFIG_DVB_USB_NOVA_T_USB2=m
-CONFIG_DVB_USB_TTUSB2=m
-CONFIG_DVB_USB_DTT200U=m
-CONFIG_DVB_USB_OPERA1=m
-CONFIG_DVB_USB_AF9005=m
-CONFIG_DVB_USB_AF9005_REMOTE=m
-CONFIG_DVB_USB_PCTV452E=m
-CONFIG_DVB_USB_DW2102=m
-CONFIG_DVB_USB_CINERGY_T2=m
-CONFIG_DVB_USB_DTV5100=m
-CONFIG_DVB_USB_FRIIO=m
-CONFIG_DVB_USB_AZ6027=m
-CONFIG_DVB_USB_TECHNISAT_USB2=m
-CONFIG_DVB_USB_V2=m
-CONFIG_DVB_USB_AF9015=m
-CONFIG_DVB_USB_AF9035=m
-CONFIG_DVB_USB_ANYSEE=m
-CONFIG_DVB_USB_AU6610=m
-CONFIG_DVB_USB_AZ6007=m
-CONFIG_DVB_USB_CE6230=m
-CONFIG_DVB_USB_EC168=m
-CONFIG_DVB_USB_GL861=m
-CONFIG_DVB_USB_IT913X=m
-CONFIG_DVB_USB_LME2510=m
-CONFIG_DVB_USB_MXL111SF=m
-CONFIG_DVB_USB_RTL28XXU=m
-CONFIG_DVB_TTUSB_BUDGET=m
-CONFIG_DVB_TTUSB_DEC=m
-CONFIG_SMS_USB_DRV=m
-CONFIG_DVB_B2C2_FLEXCOP_USB=m
-# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
-
-#
-# Webcam, TV (analog/digital) USB devices
-#
-CONFIG_VIDEO_EM28XX=m
-CONFIG_VIDEO_EM28XX_ALSA=m
-CONFIG_VIDEO_EM28XX_DVB=m
-CONFIG_VIDEO_EM28XX_RC=m
-CONFIG_MEDIA_PCI_SUPPORT=y
-
-#
-# Media capture support
-#
-
-#
-# Media capture/analog TV support
-#
-CONFIG_VIDEO_IVTV=m
-# CONFIG_VIDEO_IVTV_ALSA is not set
-CONFIG_VIDEO_FB_IVTV=m
-# CONFIG_VIDEO_HEXIUM_GEMINI is not set
-# CONFIG_VIDEO_HEXIUM_ORION is not set
-# CONFIG_VIDEO_MXB is not set
-
-#
-# Media capture/analog/hybrid TV support
-#
-CONFIG_VIDEO_CX18=m
-CONFIG_VIDEO_CX18_ALSA=m
-CONFIG_VIDEO_CX23885=m
-CONFIG_MEDIA_ALTERA_CI=m
-# CONFIG_VIDEO_CX25821 is not set
-CONFIG_VIDEO_CX88=m
-CONFIG_VIDEO_CX88_ALSA=m
-CONFIG_VIDEO_CX88_BLACKBIRD=m
-CONFIG_VIDEO_CX88_DVB=m
-CONFIG_VIDEO_CX88_VP3054=m
-CONFIG_VIDEO_CX88_MPEG=m
-CONFIG_VIDEO_BT848=m
-CONFIG_DVB_BT8XX=m
-CONFIG_VIDEO_SAA7134=m
-CONFIG_VIDEO_SAA7134_ALSA=m
-CONFIG_VIDEO_SAA7134_RC=y
-CONFIG_VIDEO_SAA7134_DVB=m
-CONFIG_VIDEO_SAA7164=m
-
-#
-# Media digital TV PCI Adapters
-#
-CONFIG_DVB_AV7110=m
-CONFIG_DVB_AV7110_OSD=y
-CONFIG_DVB_BUDGET_CORE=m
-CONFIG_DVB_BUDGET=m
-CONFIG_DVB_BUDGET_CI=m
-CONFIG_DVB_BUDGET_AV=m
-CONFIG_DVB_BUDGET_PATCH=m
-CONFIG_DVB_B2C2_FLEXCOP_PCI=m
-# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
-CONFIG_DVB_PLUTO2=m
-CONFIG_DVB_DM1105=m
-CONFIG_DVB_PT1=m
-CONFIG_MANTIS_CORE=m
-CONFIG_DVB_MANTIS=m
-CONFIG_DVB_HOPPER=m
-CONFIG_DVB_NGENE=m
-CONFIG_DVB_DDBRIDGE=m
-# CONFIG_V4L_PLATFORM_DRIVERS is not set
-# CONFIG_V4L_MEM2MEM_DRIVERS is not set
-# CONFIG_V4L_TEST_DRIVERS is not set
-
-#
-# Supported MMC/SDIO adapters
-#
-CONFIG_SMS_SDIO_DRV=m
-# CONFIG_MEDIA_PARPORT_SUPPORT is not set
-# CONFIG_RADIO_ADAPTERS is not set
-
-#
-# Supported FireWire (IEEE 1394) Adapters
-#
-CONFIG_DVB_FIREDTV=m
-CONFIG_DVB_FIREDTV_INPUT=y
-CONFIG_MEDIA_COMMON_OPTIONS=y
-
-#
-# common driver options
-#
-CONFIG_VIDEO_CX2341X=m
-CONFIG_VIDEO_BTCX=m
-CONFIG_VIDEO_TVEEPROM=m
-CONFIG_CYPRESS_FIRMWARE=m
-CONFIG_DVB_B2C2_FLEXCOP=m
-CONFIG_VIDEO_SAA7146=m
-CONFIG_VIDEO_SAA7146_VV=m
-CONFIG_SMS_SIANO_MDTV=m
-CONFIG_SMS_SIANO_RC=y
-# CONFIG_SMS_SIANO_DEBUGFS is not set
-
-#
-# Media ancillary drivers (tuners, sensors, i2c, frontends)
-#
-CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
-CONFIG_MEDIA_ATTACH=y
-CONFIG_VIDEO_IR_I2C=m
-
-#
-# Audio decoders, processors and mixers
-#
-CONFIG_VIDEO_TVAUDIO=m
-CONFIG_VIDEO_TDA7432=m
-CONFIG_VIDEO_MSP3400=m
-CONFIG_VIDEO_CS5345=m
-CONFIG_VIDEO_CS53L32A=m
-CONFIG_VIDEO_WM8775=m
-CONFIG_VIDEO_WM8739=m
-CONFIG_VIDEO_VP27SMPX=m
-
-#
-# RDS decoders
-#
-CONFIG_VIDEO_SAA6588=m
-
-#
-# Video decoders
-#
-CONFIG_VIDEO_SAA711X=m
-CONFIG_VIDEO_TVP5150=m
-
-#
-# Video and audio decoders
-#
-CONFIG_VIDEO_SAA717X=m
-CONFIG_VIDEO_CX25840=m
-
-#
-# Video encoders
-#
-CONFIG_VIDEO_SAA7127=m
-
-#
-# Camera sensor devices
-#
-CONFIG_VIDEO_MT9V011=m
-
-#
-# Flash devices
-#
-
-#
-# Video improvement chips
-#
-CONFIG_VIDEO_UPD64031A=m
-CONFIG_VIDEO_UPD64083=m
-
-#
-# Miscelaneous helper chips
-#
-CONFIG_VIDEO_M52790=m
-
-#
-# Sensors used on soc_camera driver
-#
-CONFIG_MEDIA_TUNER=m
-CONFIG_MEDIA_TUNER_SIMPLE=m
-CONFIG_MEDIA_TUNER_TDA8290=m
-CONFIG_MEDIA_TUNER_TDA827X=m
-CONFIG_MEDIA_TUNER_TDA18271=m
-CONFIG_MEDIA_TUNER_TDA9887=m
-CONFIG_MEDIA_TUNER_TEA5761=m
-CONFIG_MEDIA_TUNER_TEA5767=m
-CONFIG_MEDIA_TUNER_MT20XX=m
-CONFIG_MEDIA_TUNER_MT2060=m
-CONFIG_MEDIA_TUNER_MT2063=m
-CONFIG_MEDIA_TUNER_MT2266=m
-CONFIG_MEDIA_TUNER_MT2131=m
-CONFIG_MEDIA_TUNER_QT1010=m
-CONFIG_MEDIA_TUNER_XC2028=m
-CONFIG_MEDIA_TUNER_XC5000=m
-CONFIG_MEDIA_TUNER_XC4000=m
-CONFIG_MEDIA_TUNER_MXL5005S=m
-CONFIG_MEDIA_TUNER_MXL5007T=m
-CONFIG_MEDIA_TUNER_MC44S803=m
-CONFIG_MEDIA_TUNER_MAX2165=m
-CONFIG_MEDIA_TUNER_TDA18218=m
-CONFIG_MEDIA_TUNER_FC0011=m
-CONFIG_MEDIA_TUNER_FC0012=m
-CONFIG_MEDIA_TUNER_FC0013=m
-CONFIG_MEDIA_TUNER_TDA18212=m
-CONFIG_MEDIA_TUNER_E4000=m
-CONFIG_MEDIA_TUNER_FC2580=m
-CONFIG_MEDIA_TUNER_TUA9001=m
-CONFIG_MEDIA_TUNER_IT913X=m
-CONFIG_MEDIA_TUNER_R820T=m
-
-#
-# Multistandard (satellite) frontends
-#
-CONFIG_DVB_STB0899=m
-CONFIG_DVB_STB6100=m
-CONFIG_DVB_STV090x=m
-CONFIG_DVB_STV6110x=m
-
-#
-# Multistandard (cable + terrestrial) frontends
-#
-CONFIG_DVB_DRXK=m
-CONFIG_DVB_TDA18271C2DD=m
-
-#
-# DVB-S (satellite) frontends
-#
-CONFIG_DVB_CX24110=m
-CONFIG_DVB_CX24123=m
-CONFIG_DVB_MT312=m
-CONFIG_DVB_ZL10036=m
-CONFIG_DVB_ZL10039=m
-CONFIG_DVB_S5H1420=m
-CONFIG_DVB_STV0288=m
-CONFIG_DVB_STB6000=m
-CONFIG_DVB_STV0299=m
-CONFIG_DVB_STV6110=m
-CONFIG_DVB_STV0900=m
-CONFIG_DVB_TDA8083=m
-CONFIG_DVB_TDA10086=m
-CONFIG_DVB_TDA8261=m
-CONFIG_DVB_VES1X93=m
-CONFIG_DVB_TUNER_ITD1000=m
-CONFIG_DVB_TUNER_CX24113=m
-CONFIG_DVB_TDA826X=m
-CONFIG_DVB_TUA6100=m
-CONFIG_DVB_CX24116=m
-CONFIG_DVB_SI21XX=m
-CONFIG_DVB_TS2020=m
-CONFIG_DVB_DS3000=m
-CONFIG_DVB_MB86A16=m
-CONFIG_DVB_TDA10071=m
-
-#
-# DVB-T (terrestrial) frontends
-#
-CONFIG_DVB_SP8870=m
-CONFIG_DVB_SP887X=m
-CONFIG_DVB_CX22700=m
-CONFIG_DVB_CX22702=m
-CONFIG_DVB_DRXD=m
-CONFIG_DVB_L64781=m
-CONFIG_DVB_TDA1004X=m
-CONFIG_DVB_NXT6000=m
-CONFIG_DVB_MT352=m
-CONFIG_DVB_ZL10353=m
-CONFIG_DVB_DIB3000MB=m
-CONFIG_DVB_DIB3000MC=m
-CONFIG_DVB_DIB7000M=m
-CONFIG_DVB_DIB7000P=m
-CONFIG_DVB_TDA10048=m
-CONFIG_DVB_AF9013=m
-CONFIG_DVB_EC100=m
-CONFIG_DVB_STV0367=m
-CONFIG_DVB_CXD2820R=m
-CONFIG_DVB_RTL2830=m
-CONFIG_DVB_RTL2832=m
-
-#
-# DVB-C (cable) frontends
-#
-CONFIG_DVB_VES1820=m
-CONFIG_DVB_TDA10021=m
-CONFIG_DVB_TDA10023=m
-CONFIG_DVB_STV0297=m
-
-#
-# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
-#
-CONFIG_DVB_NXT200X=m
-CONFIG_DVB_OR51211=m
-CONFIG_DVB_OR51132=m
-CONFIG_DVB_BCM3510=m
-CONFIG_DVB_LGDT330X=m
-CONFIG_DVB_LGDT3305=m
-CONFIG_DVB_LG2160=m
-CONFIG_DVB_S5H1409=m
-CONFIG_DVB_AU8522=m
-CONFIG_DVB_AU8522_DTV=m
-CONFIG_DVB_AU8522_V4L=m
-CONFIG_DVB_S5H1411=m
-
-#
-# ISDB-T (terrestrial) frontends
-#
-CONFIG_DVB_S921=m
-CONFIG_DVB_DIB8000=m
-CONFIG_DVB_MB86A20S=m
-
-#
-# Digital terrestrial only tuners/PLL
-#
-CONFIG_DVB_PLL=m
-CONFIG_DVB_TUNER_DIB0070=m
-CONFIG_DVB_TUNER_DIB0090=m
-
-#
-# SEC control devices for DVB-S
-#
-CONFIG_DVB_LNBP21=m
-CONFIG_DVB_LNBP22=m
-CONFIG_DVB_ISL6405=m
-CONFIG_DVB_ISL6421=m
-CONFIG_DVB_ISL6423=m
-CONFIG_DVB_A8293=m
-CONFIG_DVB_LGS8GXX=m
-CONFIG_DVB_ATBM8830=m
-CONFIG_DVB_TDA665x=m
-CONFIG_DVB_IX2505V=m
-CONFIG_DVB_IT913X_FE=m
-CONFIG_DVB_M88RS2000=m
-CONFIG_DVB_AF9033=m
-
-#
-# Tools to develop new frontends
-#
-# CONFIG_DVB_DUMMY_FE is not set
-
-#
-# Graphics support
-#
-CONFIG_AGP=y
-CONFIG_VGA_ARB=y
-CONFIG_VGA_ARB_MAX_GPUS=64
-CONFIG_DRM=m
-CONFIG_DRM_DP_AUX_CHARDEV=y
-# CONFIG_DRM_DEBUG_SELFTEST is not set
-CONFIG_DRM_KMS_HELPER=m
-CONFIG_DRM_KMS_FB_HELPER=y
-CONFIG_DRM_FBDEV_EMULATION=y
-CONFIG_DRM_FBDEV_OVERALLOC=100
-CONFIG_DRM_LOAD_EDID_FIRMWARE=y
-# CONFIG_DRM_DP_CEC is not set
-CONFIG_DRM_TTM=m
-CONFIG_DRM_VM=y
-CONFIG_DRM_SCHED=m
-
-#
-# I2C encoder or helper chips
-#
-CONFIG_DRM_I2C_CH7006=m
-CONFIG_DRM_I2C_SIL164=m
-# CONFIG_DRM_I2C_NXP_TDA998X is not set
-# CONFIG_DRM_I2C_NXP_TDA9950 is not set
-CONFIG_DRM_RADEON=m
-# CONFIG_DRM_RADEON_USERPTR is not set
-CONFIG_DRM_AMDGPU=m
-# CONFIG_DRM_AMDGPU_SI is not set
-# CONFIG_DRM_AMDGPU_CIK is not set
-# CONFIG_DRM_AMDGPU_USERPTR is not set
-# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
-
-#
-# ACP (Audio CoProcessor) Configuration
-#
-# CONFIG_DRM_AMD_ACP is not set
-
-#
-# Display Engine Configuration
-#
-CONFIG_DRM_AMD_DC=y
-# CONFIG_DRM_AMD_DC_DCN1_0 is not set
-# CONFIG_DRM_AMD_DC_DCN1_01 is not set
-# CONFIG_DEBUG_KERNEL_DC is not set
-
-#
-# AMD Library routines
-#
-CONFIG_CHASH=m
-# CONFIG_CHASH_STATS is not set
-# CONFIG_CHASH_SELFTEST is not set
-CONFIG_DRM_NOUVEAU=m
-CONFIG_NOUVEAU_DEBUG=5
-CONFIG_NOUVEAU_DEBUG_DEFAULT=3
-CONFIG_NOUVEAU_DEBUG_MMU=y
-CONFIG_DRM_NOUVEAU_BACKLIGHT=y
-CONFIG_DRM_VGEM=m
-# CONFIG_DRM_VKMS is not set
-CONFIG_DRM_UDL=m
-CONFIG_DRM_AST=m
-CONFIG_DRM_MGAG200=m
-CONFIG_DRM_CIRRUS_QEMU=m
-CONFIG_DRM_QXL=m
-CONFIG_DRM_BOCHS=m
-CONFIG_DRM_VIRTIO_GPU=m
-# CONFIG_DRM_LEGACY is not set
-CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
-# CONFIG_DRM_LIB_RANDOM is not set
-CONFIG_VGASTATE=m
-CONFIG_VIDEO_OUTPUT_CONTROL=m
-CONFIG_HDMI=y
-CONFIG_FB=y
-# CONFIG_FIRMWARE_EDID is not set
-# CONFIG_FB_DDC is not set
-# CONFIG_FB_BOOT_VESA_SUPPORT is not set
-CONFIG_FB_CFB_FILLRECT=y
-CONFIG_FB_CFB_COPYAREA=y
-CONFIG_FB_CFB_IMAGEBLIT=y
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-CONFIG_FB_DEFERRED_IO=y
-# CONFIG_FB_SVGALIB is not set
-CONFIG_FB_MACMODES=y
-CONFIG_FB_BACKLIGHT=y
-CONFIG_FB_MODE_HELPERS=y
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-CONFIG_FB_OF=y
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-# CONFIG_FB_VGA16 is not set
-# CONFIG_FB_UVESA is not set
-# CONFIG_FB_S1D13XXX is not set
-CONFIG_FB_NVIDIA=m
-# CONFIG_FB_NVIDIA_I2C is not set
-# CONFIG_FB_NVIDIA_DEBUG is not set
-CONFIG_FB_NVIDIA_BACKLIGHT=y
-# CONFIG_FB_RIVA is not set
-# CONFIG_FB_I740 is not set
-CONFIG_FB_MATROX=y
-# CONFIG_FB_MATROX_MILLENIUM is not set
-# CONFIG_FB_MATROX_MYSTIQUE is not set
-CONFIG_FB_MATROX_G=y
-# CONFIG_FB_MATROX_I2C is not set
-CONFIG_FB_RADEON=m
-# CONFIG_FB_RADEON_I2C is not set
-CONFIG_FB_RADEON_BACKLIGHT=y
-# CONFIG_FB_RADEON_DEBUG is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_TMIO is not set
-# CONFIG_FB_SM501 is not set
-# CONFIG_FB_SMSCUFX is not set
-# CONFIG_FB_UDL is not set
-CONFIG_FB_IBM_GXT4500=y
-# CONFIG_FB_GOLDFISH is not set
-# CONFIG_FB_VIRTUAL is not set
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-# CONFIG_FB_AUO_K190X is not set
-# CONFIG_FB_SIMPLE is not set
-# CONFIG_EXYNOS_VIDEO is not set
-CONFIG_BACKLIGHT_LCD_SUPPORT=y
-CONFIG_LCD_CLASS_DEVICE=m
-CONFIG_LCD_PLATFORM=m
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-# CONFIG_BACKLIGHT_GENERIC is not set
-CONFIG_BACKLIGHT_PWM=m
-# CONFIG_BACKLIGHT_ADP8860 is not set
-# CONFIG_BACKLIGHT_ADP8870 is not set
-# CONFIG_BACKLIGHT_LM3630 is not set
-# CONFIG_BACKLIGHT_LM3639 is not set
-CONFIG_BACKLIGHT_LP855X=m
-CONFIG_LOGO=y
-# CONFIG_LOGO_LINUX_MONO is not set
-# CONFIG_LOGO_LINUX_VGA16 is not set
-CONFIG_LOGO_LINUX_CLUT224=y
-CONFIG_FB_SSD1307=m
-
-#
-# Console display driver support
-#
-CONFIG_VGA_CONSOLE=y
-CONFIG_VGACON_SOFT_SCROLLBACK=y
-CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-CONFIG_SOUND=m
-CONFIG_SOUND_OSS_CORE=y
-CONFIG_SOUND_OSS_CORE_PRECLAIM=y
-CONFIG_SND=m
-CONFIG_SND_TIMER=m
-CONFIG_SND_PCM=m
-CONFIG_SND_HWDEP=m
-CONFIG_SND_SEQ_DEVICE=m
-CONFIG_SND_RAWMIDI=m
-CONFIG_SND_JACK=y
-CONFIG_SND_JACK_INPUT_DEV=y
-CONFIG_SND_OSSEMUL=y
-# CONFIG_SND_MIXER_OSS is not set
-# CONFIG_SND_PCM_OSS is not set
-CONFIG_SND_PCM_TIMER=y
-CONFIG_SND_HRTIMER=m
-CONFIG_SND_DYNAMIC_MINORS=y
-CONFIG_SND_MAX_CARDS=32
-# CONFIG_SND_SUPPORT_OLD_API is not set
-CONFIG_SND_PROC_FS=y
-CONFIG_SND_VERBOSE_PROCFS=y
-CONFIG_SND_VERBOSE_PRINTK=y
-CONFIG_SND_DEBUG=y
-# CONFIG_SND_DEBUG_VERBOSE is not set
-CONFIG_SND_PCM_XRUN_DEBUG=y
-CONFIG_SND_VMASTER=y
-CONFIG_SND_SEQUENCER=m
-CONFIG_SND_SEQ_DUMMY=m
-CONFIG_SND_SEQUENCER_OSS=m
-CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
-CONFIG_SND_SEQ_MIDI_EVENT=m
-CONFIG_SND_SEQ_MIDI=m
-CONFIG_SND_SEQ_MIDI_EMUL=m
-CONFIG_SND_SEQ_VIRMIDI=m
-CONFIG_SND_MPU401_UART=m
-CONFIG_SND_OPL3_LIB=m
-CONFIG_SND_OPL3_LIB_SEQ=m
-# CONFIG_SND_OPL4_LIB_SEQ is not set
-CONFIG_SND_VX_LIB=m
-CONFIG_SND_AC97_CODEC=m
-CONFIG_SND_DRIVERS=y
-CONFIG_SND_DUMMY=m
-CONFIG_SND_ALOOP=m
-CONFIG_SND_VIRMIDI=m
-CONFIG_SND_MTPAV=m
-# CONFIG_SND_MTS64 is not set
-# CONFIG_SND_SERIAL_U16550 is not set
-CONFIG_SND_MPU401=m
-# CONFIG_SND_PORTMAN2X4 is not set
-CONFIG_SND_AC97_POWER_SAVE=y
-CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
-CONFIG_SND_TEA575X=m
-CONFIG_SND_PCI=y
-CONFIG_SND_AD1889=m
-# CONFIG_SND_ALS300 is not set
-# CONFIG_SND_ALS4000 is not set
-CONFIG_SND_ALI5451=m
-CONFIG_SND_ATIIXP=m
-CONFIG_SND_ATIIXP_MODEM=m
-CONFIG_SND_AU8810=m
-CONFIG_SND_AU8820=m
-CONFIG_SND_AU8830=m
-# CONFIG_SND_AW2 is not set
-# CONFIG_SND_AZT3328 is not set
-CONFIG_SND_BT87X=m
-# CONFIG_SND_BT87X_OVERCLOCK is not set
-CONFIG_SND_CA0106=m
-CONFIG_SND_CMIPCI=m
-CONFIG_SND_OXYGEN_LIB=m
-CONFIG_SND_OXYGEN=m
-# CONFIG_SND_CS4281 is not set
-CONFIG_SND_CS46XX=m
-CONFIG_SND_CS46XX_NEW_DSP=y
-CONFIG_SND_CTXFI=m
-CONFIG_SND_DARLA20=m
-CONFIG_SND_GINA20=m
-CONFIG_SND_LAYLA20=m
-CONFIG_SND_DARLA24=m
-CONFIG_SND_GINA24=m
-CONFIG_SND_LAYLA24=m
-CONFIG_SND_MONA=m
-CONFIG_SND_MIA=m
-CONFIG_SND_ECHO3G=m
-CONFIG_SND_INDIGO=m
-CONFIG_SND_INDIGOIO=m
-CONFIG_SND_INDIGODJ=m
-CONFIG_SND_INDIGOIOX=m
-CONFIG_SND_INDIGODJX=m
-CONFIG_SND_EMU10K1=m
-CONFIG_SND_EMU10K1_SEQ=m
-CONFIG_SND_EMU10K1X=m
-CONFIG_SND_ENS1370=m
-CONFIG_SND_ENS1371=m
-# CONFIG_SND_ES1938 is not set
-CONFIG_SND_ES1968=m
-CONFIG_SND_ES1968_INPUT=y
-CONFIG_SND_ES1968_RADIO=y
-# CONFIG_SND_FM801 is not set
-CONFIG_SND_HDSP=m
-CONFIG_SND_HDSPM=m
-CONFIG_SND_ICE1712=m
-CONFIG_SND_ICE1724=m
-CONFIG_SND_INTEL8X0=m
-CONFIG_SND_INTEL8X0M=m
-CONFIG_SND_KORG1212=m
-CONFIG_SND_LOLA=m
-CONFIG_SND_LX6464ES=m
-CONFIG_SND_MAESTRO3=m
-CONFIG_SND_MAESTRO3_INPUT=y
-CONFIG_SND_MIXART=m
-# CONFIG_SND_NM256 is not set
-CONFIG_SND_PCXHR=m
-# CONFIG_SND_RIPTIDE is not set
-CONFIG_SND_RME32=m
-CONFIG_SND_RME96=m
-CONFIG_SND_RME9652=m
-# CONFIG_SND_SONICVIBES is not set
-CONFIG_SND_TRIDENT=m
-CONFIG_SND_VIA82XX=m
-CONFIG_SND_VIA82XX_MODEM=m
-CONFIG_SND_VIRTUOSO=m
-CONFIG_SND_VX222=m
-# CONFIG_SND_YMFPCI is not set
-
-#
-# HD-Audio
-#
-# CONFIG_SND_HDA_INTEL is not set
-CONFIG_SND_HDA_PREALLOC_SIZE=512
-CONFIG_SND_PPC=y
-CONFIG_SND_USB=y
-CONFIG_SND_USB_AUDIO=m
-CONFIG_SND_USB_UA101=m
-CONFIG_SND_USB_USX2Y=m
-CONFIG_SND_USB_CAIAQ=m
-CONFIG_SND_USB_CAIAQ_INPUT=y
-CONFIG_SND_USB_6FIRE=m
-CONFIG_SND_USB_HIFACE=m
-CONFIG_SND_BCD2000=m
-CONFIG_SND_USB_LINE6=m
-CONFIG_SND_USB_POD=m
-CONFIG_SND_USB_PODHD=m
-CONFIG_SND_USB_TONEPORT=m
-CONFIG_SND_USB_VARIAX=m
-CONFIG_SND_FIREWIRE=y
-CONFIG_SND_FIREWIRE_LIB=m
-CONFIG_SND_FIREWIRE_SPEAKERS=m
-CONFIG_SND_ISIGHT=m
-CONFIG_SND_SCS1X=m
-# CONFIG_SND_SOC is not set
-CONFIG_SND_SYNTH_EMUX=m
-# CONFIG_SOUND_PRIME is not set
-CONFIG_AC97_BUS=m
-
-#
-# HID support
-#
-CONFIG_HID=y
-CONFIG_HID_BATTERY_STRENGTH=y
-CONFIG_HIDRAW=y
-CONFIG_UHID=m
-CONFIG_HID_GENERIC=y
-
-#
-# Special HID drivers
-#
-CONFIG_HID_A4TECH=y
-CONFIG_HID_ACRUX=m
-# CONFIG_HID_ACRUX_FF is not set
-CONFIG_HID_APPLE=y
-CONFIG_HID_APPLEIR=m
-CONFIG_HID_AUREAL=m
-CONFIG_HID_BELKIN=y
-CONFIG_HID_CHERRY=y
-CONFIG_HID_CHICONY=y
-CONFIG_HID_PRODIKEYS=m
-CONFIG_HID_CYPRESS=y
-CONFIG_HID_DRAGONRISE=m
-# CONFIG_DRAGONRISE_FF is not set
-# CONFIG_HID_EMS_FF is not set
-CONFIG_HID_ELECOM=m
-CONFIG_HID_EZKEY=y
-CONFIG_HID_HOLTEK=m
-# CONFIG_HOLTEK_FF is not set
-CONFIG_HID_KEYTOUCH=m
-CONFIG_HID_KYE=m
-CONFIG_HID_UCLOGIC=m
-CONFIG_HID_WALTOP=m
-CONFIG_HID_GYRATION=m
-CONFIG_HID_ICADE=m
-CONFIG_HID_TWINHAN=m
-CONFIG_HID_KENSINGTON=y
-CONFIG_HID_LCPOWER=m
-CONFIG_HID_LENOVO_TPKBD=m
-CONFIG_HID_LOGITECH=y
-CONFIG_HID_LOGITECH_DJ=m
-# CONFIG_LOGITECH_FF is not set
-# CONFIG_LOGIRUMBLEPAD2_FF is not set
-# CONFIG_LOGIG940_FF is not set
-# CONFIG_LOGIWHEELS_FF is not set
-CONFIG_HID_MAGICMOUSE=y
-CONFIG_HID_MICROSOFT=y
-CONFIG_HID_MONTEREY=y
-CONFIG_HID_MULTITOUCH=m
-CONFIG_HID_NTRIG=y
-CONFIG_HID_ORTEK=m
-CONFIG_HID_PANTHERLORD=m
-# CONFIG_PANTHERLORD_FF is not set
-CONFIG_HID_PETALYNX=m
-CONFIG_HID_PICOLCD=m
-CONFIG_HID_PICOLCD_FB=y
-CONFIG_HID_PICOLCD_BACKLIGHT=y
-CONFIG_HID_PICOLCD_LCD=y
-CONFIG_HID_PICOLCD_LEDS=y
-CONFIG_HID_PICOLCD_CIR=y
-CONFIG_HID_PLANTRONICS=y
-CONFIG_HID_PRIMAX=m
-CONFIG_HID_PS3REMOTE=m
-CONFIG_HID_ROCCAT=m
-CONFIG_HID_SAITEK=m
-CONFIG_HID_SAMSUNG=m
-CONFIG_HID_SONY=m
-CONFIG_HID_SPEEDLINK=m
-CONFIG_HID_STEELSERIES=m
-CONFIG_HID_SUNPLUS=m
-CONFIG_HID_RMI=m
-CONFIG_HID_GREENASIA=m
-# CONFIG_GREENASIA_FF is not set
-CONFIG_HID_SMARTJOYPLUS=m
-# CONFIG_SMARTJOYPLUS_FF is not set
-CONFIG_HID_TIVO=m
-CONFIG_HID_TOPSEED=m
-CONFIG_HID_THINGM=m
-CONFIG_HID_THRUSTMASTER=m
-# CONFIG_THRUSTMASTER_FF is not set
-CONFIG_HID_WACOM=m
-CONFIG_HID_WIIMOTE=m
-CONFIG_HID_WIIMOTE_EXT=y
-CONFIG_HID_ZEROPLUS=m
-# CONFIG_ZEROPLUS_FF is not set
-CONFIG_HID_ZYDACRON=m
-# CONFIG_HID_SENSOR_HUB is not set
-CONFIG_HID_ALPS=m
-
-#
-# USB HID support
-#
-CONFIG_USB_HID=y
-CONFIG_HID_PID=y
-CONFIG_USB_HIDDEV=y
-
-#
-# I2C HID support
-#
-CONFIG_I2C_HID=m
-CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
-CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-CONFIG_USB_SUPPORT=y
-CONFIG_USB_COMMON=y
-CONFIG_USB_ARCH_HAS_HCD=y
-CONFIG_USB=y
-CONFIG_USB_PCI=y
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-
-#
-# Miscellaneous USB options
-#
-CONFIG_USB_DEFAULT_PERSIST=y
-# CONFIG_USB_DYNAMIC_MINORS is not set
-# CONFIG_USB_OTG is not set
-# CONFIG_USB_OTG_WHITELIST is not set
-# CONFIG_USB_OTG_FSM is not set
-CONFIG_USB_LEDS_TRIGGER_USBPORT=m
-CONFIG_USB_MON=y
-CONFIG_USB_WUSB=m
-CONFIG_USB_WUSB_CBAF=m
-# CONFIG_USB_WUSB_CBAF_DEBUG is not set
-
-#
-# USB Host Controller Drivers
-#
-# CONFIG_USB_C67X00_HCD is not set
-CONFIG_USB_XHCI_HCD=y
-# CONFIG_USB_XHCI_DBGCAP is not set
-CONFIG_USB_XHCI_PCI=y
-# CONFIG_USB_XHCI_PLATFORM is not set
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_ROOT_HUB_TT=y
-CONFIG_USB_EHCI_TT_NEWSCHED=y
-CONFIG_USB_EHCI_PCI=y
-CONFIG_USB_EHCI_HCD_PPC_OF=y
-# CONFIG_USB_EHCI_HCD_PLATFORM is not set
-# CONFIG_USB_OXU210HP_HCD is not set
-# CONFIG_USB_ISP116X_HCD is not set
-# CONFIG_USB_ISP1760_HCD is not set
-# CONFIG_USB_ISP1362_HCD is not set
-# CONFIG_USB_FOTG210_HCD is not set
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
-CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
-CONFIG_USB_OHCI_HCD_PPC_OF=y
-CONFIG_USB_OHCI_HCD_PCI=y
-# CONFIG_USB_OHCI_HCD_PLATFORM is not set
-CONFIG_USB_UHCI_HCD=y
-# CONFIG_USB_U132_HCD is not set
-# CONFIG_USB_SL811_HCD is not set
-# CONFIG_USB_R8A66597_HCD is not set
-# CONFIG_USB_WHCI_HCD is not set
-CONFIG_USB_HWA_HCD=m
-# CONFIG_USB_HCD_BCMA is not set
-# CONFIG_USB_HCD_SSB is not set
-# CONFIG_USB_HCD_TEST_MODE is not set
-
-#
-# USB Device Class drivers
-#
-CONFIG_USB_ACM=m
-CONFIG_USB_PRINTER=m
-CONFIG_USB_WDM=m
-CONFIG_USB_TMC=m
-
-#
-# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
-#
-
-#
-# also be needed; see USB_STORAGE Help for more info
-#
-CONFIG_USB_STORAGE=m
-# CONFIG_USB_STORAGE_DEBUG is not set
-CONFIG_USB_STORAGE_REALTEK=m
-CONFIG_REALTEK_AUTOPM=y
-CONFIG_USB_STORAGE_DATAFAB=m
-CONFIG_USB_STORAGE_FREECOM=m
-# CONFIG_USB_STORAGE_ISD200 is not set
-CONFIG_USB_STORAGE_USBAT=m
-CONFIG_USB_STORAGE_SDDR09=m
-CONFIG_USB_STORAGE_SDDR55=m
-CONFIG_USB_STORAGE_JUMPSHOT=m
-CONFIG_USB_STORAGE_ALAUDA=m
-CONFIG_USB_STORAGE_ONETOUCH=m
-CONFIG_USB_STORAGE_KARMA=m
-CONFIG_USB_STORAGE_CYPRESS_ATACB=m
-CONFIG_USB_STORAGE_ENE_UB6250=m
-CONFIG_USB_UAS=m
-
-#
-# USB Imaging devices
-#
-CONFIG_USB_MDC800=m
-CONFIG_USB_MICROTEK=m
-CONFIG_USBIP_CORE=m
-# CONFIG_USBIP_VHCI_HCD is not set
-# CONFIG_USBIP_HOST is not set
-# CONFIG_USBIP_DEBUG is not set
-# CONFIG_USB_DWC3 is not set
-# CONFIG_USB_CHIPIDEA is not set
-
-#
-# USB port drivers
-#
-CONFIG_USB_USS720=m
-CONFIG_USB_SERIAL=y
-CONFIG_USB_SERIAL_CONSOLE=y
-CONFIG_USB_SERIAL_GENERIC=y
-# CONFIG_USB_SERIAL_SIMPLE is not set
-CONFIG_USB_SERIAL_AIRCABLE=m
-CONFIG_USB_SERIAL_ARK3116=m
-CONFIG_USB_SERIAL_BELKIN=m
-CONFIG_USB_SERIAL_CH341=m
-CONFIG_USB_SERIAL_WHITEHEAT=m
-CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
-CONFIG_USB_SERIAL_CP210X=m
-CONFIG_USB_SERIAL_CYPRESS_M8=m
-CONFIG_USB_SERIAL_EMPEG=m
-CONFIG_USB_SERIAL_FTDI_SIO=m
-CONFIG_USB_SERIAL_VISOR=m
-CONFIG_USB_SERIAL_IPAQ=m
-CONFIG_USB_SERIAL_IR=m
-CONFIG_USB_SERIAL_EDGEPORT=m
-CONFIG_USB_SERIAL_EDGEPORT_TI=m
-# CONFIG_USB_SERIAL_F81232 is not set
-CONFIG_USB_SERIAL_GARMIN=m
-CONFIG_USB_SERIAL_IPW=m
-CONFIG_USB_SERIAL_IUU=m
-CONFIG_USB_SERIAL_KEYSPAN_PDA=m
-CONFIG_USB_SERIAL_KEYSPAN=m
-CONFIG_USB_SERIAL_KLSI=m
-CONFIG_USB_SERIAL_KOBIL_SCT=m
-CONFIG_USB_SERIAL_MCT_U232=m
-# CONFIG_USB_SERIAL_METRO is not set
-CONFIG_USB_SERIAL_MOS7720=m
-CONFIG_USB_SERIAL_MOS7715_PARPORT=y
-CONFIG_USB_SERIAL_MOS7840=m
-# CONFIG_USB_SERIAL_MXUPORT is not set
-CONFIG_USB_SERIAL_NAVMAN=m
-CONFIG_USB_SERIAL_PL2303=m
-CONFIG_USB_SERIAL_OTI6858=m
-CONFIG_USB_SERIAL_QCAUX=m
-CONFIG_USB_SERIAL_QUALCOMM=m
-CONFIG_USB_SERIAL_SPCP8X5=m
-CONFIG_USB_SERIAL_SAFE=m
-CONFIG_USB_SERIAL_SAFE_PADDED=y
-CONFIG_USB_SERIAL_SIERRAWIRELESS=m
-CONFIG_USB_SERIAL_SYMBOL=m
-CONFIG_USB_SERIAL_TI=m
-CONFIG_USB_SERIAL_CYBERJACK=m
-CONFIG_USB_SERIAL_XIRCOM=m
-CONFIG_USB_SERIAL_WWAN=m
-CONFIG_USB_SERIAL_OPTION=m
-CONFIG_USB_SERIAL_OMNINET=m
-CONFIG_USB_SERIAL_OPTICON=m
-CONFIG_USB_SERIAL_XSENS_MT=m
-# CONFIG_USB_SERIAL_WISHBONE is not set
-CONFIG_USB_SERIAL_SSU100=m
-CONFIG_USB_SERIAL_QT2=m
-# CONFIG_USB_SERIAL_UPD78F0730 is not set
-CONFIG_USB_SERIAL_DEBUG=m
-
-#
-# USB Miscellaneous drivers
-#
-CONFIG_USB_EMI62=m
-CONFIG_USB_EMI26=m
-CONFIG_USB_ADUTUX=m
-CONFIG_USB_SEVSEG=m
-# CONFIG_USB_RIO500 is not set
-CONFIG_USB_LEGOTOWER=m
-CONFIG_USB_LCD=m
-# CONFIG_USB_CYPRESS_CY7C63 is not set
-# CONFIG_USB_CYTHERM is not set
-CONFIG_USB_IDMOUSE=m
-CONFIG_USB_FTDI_ELAN=m
-CONFIG_USB_APPLEDISPLAY=m
-CONFIG_USB_SISUSBVGA=m
-CONFIG_USB_SISUSBVGA_CON=y
-CONFIG_USB_LD=m
-# CONFIG_USB_TRANCEVIBRATOR is not set
-CONFIG_USB_IOWARRIOR=m
-# CONFIG_USB_TEST is not set
-# CONFIG_USB_EHSET_TEST_FIXTURE is not set
-CONFIG_USB_ISIGHTFW=m
-# CONFIG_USB_YUREX is not set
-CONFIG_USB_EZUSB_FX2=m
-CONFIG_USB_HSIC_USB3503=m
-# CONFIG_USB_HSIC_USB4604 is not set
-# CONFIG_USB_LINK_LAYER_TEST is not set
-# CONFIG_USB_CHAOSKEY is not set
-CONFIG_USB_ATM=m
-CONFIG_USB_SPEEDTOUCH=m
-CONFIG_USB_CXACRU=m
-CONFIG_USB_UEAGLEATM=m
-CONFIG_USB_XUSBATM=m
-# CONFIG_USB_PHY is not set
-# CONFIG_USB_GADGET is not set
-CONFIG_TYPEC=y
-# CONFIG_TYPEC_TCPM is not set
-# CONFIG_TYPEC_TPS6598X is not set
-
-#
-# USB Type-C Multiplexer/DeMultiplexer Switch support
-#
-# CONFIG_TYPEC_MUX_PI3USB30532 is not set
-
-#
-# USB Type-C Alternate Mode drivers
-#
-CONFIG_TYPEC_DP_ALTMODE=y
-# CONFIG_USB_LED_TRIG is not set
-# CONFIG_USB_ULPI_BUS is not set
-CONFIG_UWB=m
-CONFIG_UWB_HWA=m
-CONFIG_UWB_WHCI=m
-CONFIG_UWB_I1480U=m
-CONFIG_MMC=m
-CONFIG_MMC_BLOCK=m
-CONFIG_MMC_BLOCK_MINORS=8
-CONFIG_SDIO_UART=m
-# CONFIG_MMC_TEST is not set
-
-#
-# MMC/SD/SDIO Host Controller Drivers
-#
-# CONFIG_MMC_DEBUG is not set
-CONFIG_MMC_SDHCI=m
-CONFIG_MMC_SDHCI_PCI=m
-CONFIG_MMC_RICOH_MMC=y
-CONFIG_MMC_SDHCI_PLTFM=m
-# CONFIG_MMC_SDHCI_OF_ESDHC is not set
-# CONFIG_MMC_SDHCI_OF_HLWD is not set
-# CONFIG_MMC_SDHCI_CADENCE is not set
-# CONFIG_MMC_SDHCI_F_SDH30 is not set
-# CONFIG_MMC_WBSD is not set
-CONFIG_MMC_TIFM_SD=m
-CONFIG_MMC_CB710=m
-CONFIG_MMC_VIA_SDMMC=m
-CONFIG_MMC_VUB300=m
-CONFIG_MMC_USHC=m
-# CONFIG_MMC_USDHI6ROL0 is not set
-CONFIG_MMC_REALTEK_PCI=m
-CONFIG_MMC_REALTEK_USB=m
-CONFIG_MMC_CQHCI=m
-# CONFIG_MMC_TOSHIBA_PCI is not set
-# CONFIG_MMC_MTK is not set
-CONFIG_MEMSTICK=m
-# CONFIG_MEMSTICK_DEBUG is not set
-
-#
-# MemoryStick drivers
-#
-# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
-CONFIG_MSPRO_BLOCK=m
-
-#
-# MemoryStick Host Controller Drivers
-#
-CONFIG_MEMSTICK_TIFM_MS=m
-CONFIG_MEMSTICK_JMICRON_38X=m
-CONFIG_MEMSTICK_R592=m
-CONFIG_MEMSTICK_REALTEK_PCI=m
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-
-#
-# LED drivers
-#
-CONFIG_LEDS_LM3530=m
-# CONFIG_LEDS_LM3642 is not set
-# CONFIG_LEDS_PCA9532 is not set
-# CONFIG_LEDS_GPIO is not set
-CONFIG_LEDS_LP3944=m
-CONFIG_LEDS_LP55XX_COMMON=m
-CONFIG_LEDS_LP5521=m
-CONFIG_LEDS_LP5523=m
-CONFIG_LEDS_LP5562=m
-# CONFIG_LEDS_PCA955X is not set
-# CONFIG_LEDS_PCA9633 is not set
-# CONFIG_LEDS_PWM is not set
-# CONFIG_LEDS_BD2802 is not set
-CONFIG_LEDS_LT3593=m
-# CONFIG_LEDS_TCA6507 is not set
-# CONFIG_LEDS_LM355x is not set
-# CONFIG_LEDS_OT200 is not set
-CONFIG_LEDS_BLINKM=m
-# CONFIG_LEDS_POWERNV is not set
-
-#
-# LED Triggers
-#
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_TIMER=m
-CONFIG_LEDS_TRIGGER_ONESHOT=m
-CONFIG_LEDS_TRIGGER_HEARTBEAT=m
-CONFIG_LEDS_TRIGGER_BACKLIGHT=m
-# CONFIG_LEDS_TRIGGER_CPU is not set
-CONFIG_LEDS_TRIGGER_GPIO=m
-CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
-
-#
-# iptables trigger is under Netfilter config (LED target)
-#
-CONFIG_LEDS_TRIGGER_TRANSIENT=m
-CONFIG_LEDS_TRIGGER_CAMERA=m
-# CONFIG_ACCESSIBILITY is not set
-CONFIG_INFINIBAND=m
-CONFIG_INFINIBAND_USER_MAD=m
-CONFIG_INFINIBAND_USER_ACCESS=m
-# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
-CONFIG_INFINIBAND_USER_MEM=y
-CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
-CONFIG_INFINIBAND_ADDR_TRANS=y
-CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
-CONFIG_INFINIBAND_MTHCA=m
-CONFIG_INFINIBAND_MTHCA_DEBUG=y
-CONFIG_INFINIBAND_EHCA=m
-# CONFIG_INFINIBAND_AMSO1100 is not set
-CONFIG_INFINIBAND_CXGB3=m
-# CONFIG_INFINIBAND_CXGB3_DEBUG is not set
-CONFIG_INFINIBAND_CXGB4=m
-CONFIG_INFINIBAND_I40IW=m
-CONFIG_MLX4_INFINIBAND=m
-CONFIG_MLX5_INFINIBAND=m
-CONFIG_INFINIBAND_NES=m
-# CONFIG_INFINIBAND_NES_DEBUG is not set
-CONFIG_INFINIBAND_OCRDMA=m
-CONFIG_INFINIBAND_IPOIB=m
-CONFIG_INFINIBAND_IPOIB_CM=y
-CONFIG_INFINIBAND_IPOIB_DEBUG=y
-# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
-CONFIG_INFINIBAND_SRP=m
-CONFIG_INFINIBAND_SRPT=m
-CONFIG_INFINIBAND_ISER=m
-CONFIG_INFINIBAND_ISERT=m
-CONFIG_RDMA_RXE=m
-CONFIG_INFINIBAND_QEDR=m
-CONFIG_INFINIBAND_BNXT_RE=m
-CONFIG_EDAC=y
-CONFIG_EDAC_LEGACY_SYSFS=y
-CONFIG_EDAC_DEBUG=y
-CONFIG_EDAC_MM_EDAC=m
-CONFIG_EDAC_CPC925=m
-CONFIG_RTC_LIB=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_HCTOSYS=y
-# CONFIG_RTC_SYSTOHC is not set
-CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
-# CONFIG_RTC_DEBUG is not set
-
-#
-# RTC interfaces
-#
-CONFIG_RTC_INTF_SYSFS=y
-CONFIG_RTC_INTF_PROC=y
-CONFIG_RTC_INTF_DEV=y
-# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
-# CONFIG_RTC_DRV_TEST is not set
-
-#
-# I2C RTC drivers
-#
-CONFIG_RTC_DRV_DS1307=m
-CONFIG_RTC_DRV_DS1374=m
-CONFIG_RTC_DRV_DS1672=m
-CONFIG_RTC_DRV_DS3232=m
-CONFIG_RTC_DRV_MAX6900=m
-CONFIG_RTC_DRV_RS5C372=m
-CONFIG_RTC_DRV_ISL1208=m
-CONFIG_RTC_DRV_ISL12022=m
-CONFIG_RTC_DRV_X1205=m
-CONFIG_RTC_DRV_PCF8523=m
-CONFIG_RTC_DRV_PCF8563=m
-CONFIG_RTC_DRV_PCF8583=m
-CONFIG_RTC_DRV_M41T80=m
-CONFIG_RTC_DRV_M41T80_WDT=y
-CONFIG_RTC_DRV_BQ32K=m
-# CONFIG_RTC_DRV_S35390A is not set
-CONFIG_RTC_DRV_FM3130=m
-CONFIG_RTC_DRV_RX8581=m
-CONFIG_RTC_DRV_RX8025=m
-CONFIG_RTC_DRV_EM3027=m
-CONFIG_RTC_DRV_RV3029C2=m
-
-#
-# SPI RTC drivers
-#
-
-#
-# Platform RTC drivers
-#
-CONFIG_RTC_DRV_CMOS=y
-CONFIG_RTC_DRV_DS1286=m
-CONFIG_RTC_DRV_DS1511=m
-CONFIG_RTC_DRV_DS1553=m
-CONFIG_RTC_DRV_DS1742=m
-CONFIG_RTC_DRV_STK17TA8=m
-# CONFIG_RTC_DRV_M48T86 is not set
-CONFIG_RTC_DRV_M48T35=m
-CONFIG_RTC_DRV_M48T59=m
-CONFIG_RTC_DRV_MSM6242=m
-CONFIG_RTC_DRV_BQ4802=m
-CONFIG_RTC_DRV_RP5C01=m
-CONFIG_RTC_DRV_V3020=m
-CONFIG_RTC_DRV_DS2404=m
-CONFIG_RTC_DRV_OPAL=y
-
-#
-# on-CPU RTC drivers
-#
-CONFIG_RTC_DRV_GENERIC=y
-# CONFIG_RTC_DRV_SNVS is not set
-
-#
-# HID Sensor RTC drivers
-#
-# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
-CONFIG_DMADEVICES=y
-CONFIG_DMADEVICES_DEBUG=y
-CONFIG_DMADEVICES_VDEBUG=y
-
-#
-# DMA Devices
-#
-CONFIG_DW_DMAC_CORE=m
-CONFIG_DW_DMAC=m
-# CONFIG_DW_DMAC_PCI is not set
-# CONFIG_DW_DMAC_BIG_ENDIAN_IO is not set
-# CONFIG_IDMA64 is not set
-# CONFIG_TIMB_DMA is not set
-CONFIG_DMA_ENGINE=y
-CONFIG_DMA_OF=y
-
-#
-# DMA Clients
-#
-CONFIG_NET_DMA_RH_KABI=y
-CONFIG_ASYNC_TX_DMA=y
-# CONFIG_DMATEST is not set
-
-#
-# DMABUF options
-#
-CONFIG_SYNC_FILE=y
-# CONFIG_SW_SYNC is not set
-CONFIG_AUXDISPLAY=y
-CONFIG_KS0108=m
-CONFIG_KS0108_PORT=0x378
-CONFIG_KS0108_DELAY=2
-CONFIG_UIO=m
-CONFIG_UIO_CIF=m
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_DMEM_GENIRQ is not set
-CONFIG_UIO_AEC=m
-CONFIG_UIO_SERCOS3=m
-CONFIG_UIO_PCI_GENERIC=m
-# CONFIG_UIO_NETX is not set
-# CONFIG_VFIO_IOMMU_TYPE1 is not set
-CONFIG_VFIO_IOMMU_SPAPR_TCE=m
-CONFIG_VFIO_SPAPR_EEH=m
-CONFIG_VFIO=m
-# CONFIG_VFIO_NOIOMMU is not set
-CONFIG_VFIO_PCI=m
-CONFIG_VFIO_PCI_MMAP=y
-CONFIG_VFIO_PCI_INTX=y
-# CONFIG_VFIO_MDEV is not set
-CONFIG_IRQ_BYPASS_MANAGER=y
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=m
-
-#
-# Virtio drivers
-#
-CONFIG_VIRTIO_PCI=m
-CONFIG_VIRTIO_PCI_LEGACY=y
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-# CONFIG_VIRTIO_MMIO is not set
-
-#
-# Microsoft Hyper-V guest support
-#
-# CONFIG_HYPERV_TSCPAGE is not set
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_W35UND is not set
-# CONFIG_PRISM2_USB is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_ASUS_OLED is not set
-# CONFIG_PANEL is not set
-# CONFIG_R8187SE is not set
-# CONFIG_RTL8192U is not set
-CONFIG_RTLLIB=m
-CONFIG_RTLLIB_CRYPTO_CCMP=m
-CONFIG_RTLLIB_CRYPTO_TKIP=m
-CONFIG_RTLLIB_CRYPTO_WEP=m
-CONFIG_RTL8192E=m
-CONFIG_R8712U=m
-# CONFIG_RTS5139 is not set
-# CONFIG_TRANZPORT is not set
-# CONFIG_IDE_PHISON is not set
-# CONFIG_LINE6_USB is not set
-# CONFIG_USB_SERIAL_QUATECH2 is not set
-# CONFIG_VT6655 is not set
-# CONFIG_VT6656 is not set
-# CONFIG_DX_SEP is not set
-
-#
-# IIO staging drivers
-#
-
-#
-# Accelerometers
-#
-
-#
-# Analog to digital converters
-#
-# CONFIG_AD7291 is not set
-# CONFIG_AD7606 is not set
-# CONFIG_AD799X is not set
-
-#
-# Analog digital bi-direction converters
-#
-# CONFIG_ADT7316 is not set
-
-#
-# Capacitance to digital converters
-#
-# CONFIG_AD7150 is not set
-# CONFIG_AD7152 is not set
-# CONFIG_AD7746 is not set
-
-#
-# Direct Digital Synthesis
-#
-
-#
-# Digital gyroscope sensors
-#
-
-#
-# Network Analyzer, Impedance Converters
-#
-# CONFIG_AD5933 is not set
-
-#
-# Light sensors
-#
-# CONFIG_SENSORS_ISL29018 is not set
-# CONFIG_SENSORS_ISL29028 is not set
-# CONFIG_TSL2583 is not set
-# CONFIG_TSL2x7x is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_SENSORS_HMC5843 is not set
-
-#
-# Active energy metering IC
-#
-# CONFIG_ADE7854 is not set
-
-#
-# Resolver to digital converters
-#
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_PERIODIC_RTC_TRIGGER is not set
-# CONFIG_IIO_GPIO_TRIGGER is not set
-# CONFIG_IIO_SIMPLE_DUMMY is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_CXT1E1 is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_SBE_2T3E3 is not set
-# CONFIG_USB_ENESTORAGE is not set
-# CONFIG_BCM_WIMAX is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_USB_WPAN_HCD is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_CSR_WIFI is not set
-# CONFIG_NET_VENDOR_SILICOM is not set
-# CONFIG_CED1401 is not set
-# CONFIG_DGRP is not set
-CONFIG_FIREWIRE_SERIAL=m
-# CONFIG_ZCACHE is not set
-
-#
-# Hardware Spinlock drivers
-#
-CONFIG_I8253_LOCK=y
-CONFIG_CLKBLD_I8253=y
-# CONFIG_MAILBOX is not set
-CONFIG_IOMMU_API=y
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_IOMMU_DEBUGFS is not set
-CONFIG_OF_IOMMU=y
-CONFIG_SPAPR_TCE_IOMMU=y
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-CONFIG_IIO=y
-CONFIG_IIO_BUFFER=y
-CONFIG_IIO_BUFFER_CB=y
-CONFIG_IIO_KFIFO_BUF=y
-# CONFIG_IIO_CONFIGFS is not set
-CONFIG_IIO_TRIGGER=y
-CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
-# CONFIG_IIO_SW_DEVICE is not set
-# CONFIG_IIO_SW_TRIGGER is not set
-
-#
-# Accelerometers
-#
-# CONFIG_IIO_ST_ACCEL_3AXIS is not set
-
-#
-# Analog to digital converters
-#
-# CONFIG_EXYNOS_ADC is not set
-# CONFIG_MAX1363 is not set
-# CONFIG_TI_ADC081C is not set
-# CONFIG_VIPERBOARD_ADC is not set
-
-#
-# Amplifiers
-#
-
-#
-# Hid Sensor IIO Common
-#
-
-#
-# Digital to analog converters
-#
-# CONFIG_AD5064 is not set
-# CONFIG_AD5380 is not set
-# CONFIG_AD5446 is not set
-# CONFIG_MAX517 is not set
-# CONFIG_MCP4725 is not set
-
-#
-# Frequency Synthesizers DDS/PLL
-#
-
-#
-# Clock Generator/Distribution
-#
-
-#
-# Phase-Locked Loop (PLL) frequency synthesizers
-#
-
-#
-# Digital gyroscope sensors
-#
-# CONFIG_IIO_ST_GYRO_3AXIS is not set
-# CONFIG_ITG3200 is not set
-
-#
-# Inertial measurement units
-#
-# CONFIG_INV_MPU6050_IIO is not set
-
-#
-# Light sensors
-#
-# CONFIG_ADJD_S311 is not set
-# CONFIG_SENSORS_TSL2563 is not set
-# CONFIG_VCNL4000 is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_AK8975 is not set
-# CONFIG_IIO_ST_MAGN_3AXIS is not set
-
-#
-# Inclinometer sensors
-#
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_INTERRUPT_TRIGGER is not set
-# CONFIG_IIO_SYSFS_TRIGGER is not set
-
-#
-# Pressure Sensors
-#
-# CONFIG_IIO_ST_PRESS is not set
-# CONFIG_NTB is not set
-# CONFIG_VME_BUS is not set
-CONFIG_PWM=y
-CONFIG_PWM_SYSFS=y
-CONFIG_IRQCHIP=y
-# CONFIG_IPACK_BUS is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_RAS=y
-CONFIG_LIBNVDIMM=m
-CONFIG_BLK_DEV_PMEM=m
-CONFIG_ND_BLK=m
-CONFIG_ND_CLAIM=y
-CONFIG_ND_BTT=m
-CONFIG_BTT=y
-CONFIG_NVDIMM_KEYS=y
-CONFIG_DAX_DRIVER=y
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-# CONFIG_STM is not set
-# CONFIG_INTEL_TH is not set
-CONFIG_NVMEM=y
-
-#
-# File systems
-#
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=m
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-CONFIG_EXT4_DEBUG=y
-CONFIG_JBD2=m
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=m
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=m
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-CONFIG_XFS_WARN=y
-# CONFIG_XFS_DEBUG is not set
-# CONFIG_GFS2_FS is not set
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-CONFIG_BTRFS_ASSERT=y
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-CONFIG_QUOTA_DEBUG=y
-CONFIG_QUOTA_TREE=y
-# CONFIG_QFMT_V1 is not set
-CONFIG_QFMT_V2=y
-CONFIG_QUOTACTL=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-CONFIG_FSCACHE_OBJECT_LIST=y
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_JFFS2_FS is not set
-# CONFIG_UBIFS_FS is not set
-# CONFIG_LOGFS is not set
-CONFIG_CRAMFS=m
-CONFIG_SQUASHFS=m
-CONFIG_SQUASHFS_XATTR=y
-CONFIG_SQUASHFS_ZLIB=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_SQUASHFS_XZ=y
-# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
-# CONFIG_SQUASHFS_EMBEDDED is not set
-CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-CONFIG_PSTORE_RAM=m
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-CONFIG_ORE=m
-CONFIG_NETWORK_FILESYSTEMS=y
-CONFIG_NFS_FS=m
-# CONFIG_NFS_V2 is not set
-CONFIG_NFS_V3=m
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=m
-# CONFIG_NFS_SWAP is not set
-CONFIG_NFS_V4_1=y
-CONFIG_NFS_V4_2=y
-CONFIG_PNFS_FILE_LAYOUT=m
-CONFIG_PNFS_BLOCK=m
-CONFIG_PNFS_OBJLAYOUT=m
-CONFIG_PNFS_FLEXFILE_LAYOUT=m
-CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
-# CONFIG_NFS_V4_1_MIGRATION is not set
-CONFIG_NFS_V4_SECURITY_LABEL=y
-CONFIG_NFS_FSCACHE=y
-# CONFIG_NFS_USE_LEGACY_DNS is not set
-CONFIG_NFS_USE_KERNEL_DNS=y
-CONFIG_NFS_DEBUG=y
-CONFIG_NFSD=m
-CONFIG_NFSD_V2_ACL=y
-CONFIG_NFSD_V3=y
-CONFIG_NFSD_V3_ACL=y
-CONFIG_NFSD_V4=y
-CONFIG_NFSD_PNFS=y
-# CONFIG_NFSD_BLOCKLAYOUT is not set
-CONFIG_NFSD_SCSILAYOUT=y
-CONFIG_NFSD_V4_SECURITY_LABEL=y
-CONFIG_NFSD_FAULT_INJECTION=y
-CONFIG_GRACE_PERIOD=m
-CONFIG_LOCKD=m
-CONFIG_LOCKD_V4=y
-CONFIG_NFS_ACL_SUPPORT=m
-CONFIG_NFS_COMMON=y
-CONFIG_SUNRPC=m
-CONFIG_SUNRPC_GSS=m
-CONFIG_SUNRPC_BACKCHANNEL=y
-CONFIG_RPCSEC_GSS_KRB5=m
-CONFIG_SUNRPC_DEBUG=y
-CONFIG_SUNRPC_XPRT_RDMA=m
-CONFIG_CEPH_FS=m
-CONFIG_CEPH_FS_POSIX_ACL=y
-CONFIG_CIFS=m
-CONFIG_CIFS_STATS=y
-# CONFIG_CIFS_STATS2 is not set
-CONFIG_CIFS_WEAK_PW_HASH=y
-CONFIG_CIFS_UPCALL=y
-CONFIG_CIFS_XATTR=y
-CONFIG_CIFS_POSIX=y
-CONFIG_CIFS_ACL=y
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
-CONFIG_CIFS_DFS_UPCALL=y
-# CONFIG_CIFS_SMB311 is not set
-# CONFIG_CIFS_FSCACHE is not set
-# CONFIG_NCP_FS is not set
-# CONFIG_CODA_FS is not set
-# CONFIG_AFS_FS is not set
-CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_737=m
-CONFIG_NLS_CODEPAGE_775=m
-CONFIG_NLS_CODEPAGE_850=m
-CONFIG_NLS_CODEPAGE_852=m
-CONFIG_NLS_CODEPAGE_855=m
-CONFIG_NLS_CODEPAGE_857=m
-CONFIG_NLS_CODEPAGE_860=m
-CONFIG_NLS_CODEPAGE_861=m
-CONFIG_NLS_CODEPAGE_862=m
-CONFIG_NLS_CODEPAGE_863=m
-CONFIG_NLS_CODEPAGE_864=m
-CONFIG_NLS_CODEPAGE_865=m
-CONFIG_NLS_CODEPAGE_866=m
-CONFIG_NLS_CODEPAGE_869=m
-CONFIG_NLS_CODEPAGE_936=m
-CONFIG_NLS_CODEPAGE_950=m
-CONFIG_NLS_CODEPAGE_932=m
-CONFIG_NLS_CODEPAGE_949=m
-CONFIG_NLS_CODEPAGE_874=m
-CONFIG_NLS_ISO8859_8=m
-CONFIG_NLS_CODEPAGE_1250=m
-CONFIG_NLS_CODEPAGE_1251=m
-CONFIG_NLS_ASCII=y
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_ISO8859_2=m
-CONFIG_NLS_ISO8859_3=m
-CONFIG_NLS_ISO8859_4=m
-CONFIG_NLS_ISO8859_5=m
-CONFIG_NLS_ISO8859_6=m
-CONFIG_NLS_ISO8859_7=m
-CONFIG_NLS_ISO8859_9=m
-CONFIG_NLS_ISO8859_13=m
-CONFIG_NLS_ISO8859_14=m
-CONFIG_NLS_ISO8859_15=m
-CONFIG_NLS_KOI8_R=m
-CONFIG_NLS_KOI8_U=m
-CONFIG_NLS_MAC_ROMAN=m
-CONFIG_NLS_MAC_CELTIC=m
-CONFIG_NLS_MAC_CENTEURO=m
-CONFIG_NLS_MAC_CROATIAN=m
-CONFIG_NLS_MAC_CYRILLIC=m
-CONFIG_NLS_MAC_GAELIC=m
-CONFIG_NLS_MAC_GREEK=m
-CONFIG_NLS_MAC_ICELAND=m
-CONFIG_NLS_MAC_INUIT=m
-CONFIG_NLS_MAC_ROMANIAN=m
-CONFIG_NLS_MAC_TURKISH=m
-CONFIG_NLS_UTF8=m
-# CONFIG_DLM is not set
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_STRNCPY_FROM_USER=y
-CONFIG_GENERIC_STRNLEN_USER=y
-CONFIG_GENERIC_PCI_IOMAP=y
-CONFIG_GENERIC_IOMAP=y
-CONFIG_GENERIC_IO=y
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=m
-CONFIG_CRC8=m
-CONFIG_RANDOM32_SELFTEST=y
-CONFIG_842_COMPRESS=m
-CONFIG_842_DECOMPRESS=y
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=y
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
-CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
-CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_REED_SOLOMON=m
-CONFIG_REED_SOLOMON_ENC8=y
-CONFIG_REED_SOLOMON_DEC8=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_BTREE=y
-CONFIG_INTERVAL_TREE=y
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_IOMEM=y
-CONFIG_HAS_IOPORT=y
-CONFIG_HAS_DMA=y
-CONFIG_DMA_VIRT_OPS=y
-CONFIG_CHECK_SIGNATURE=y
-CONFIG_CPUMASK_OFFSTACK=y
-CONFIG_CPU_RMAP=y
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-CONFIG_IRQ_POLL=y
-CONFIG_MPILIB=y
-CONFIG_SIGNATURE=y
-CONFIG_OID_REGISTRY=y
-CONFIG_SG_POOL=y
-CONFIG_PARMAN=m
-CONFIG_SBITMAP=y
-
-#
-# Kernel hacking
-#
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=2048
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-CONFIG_PAGE_OWNER=y
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_SHIRQ=y
-CONFIG_LOCKUP_DETECTOR=y
-CONFIG_HARDLOCKUP_DETECTOR=y
-# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
-# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
-# CONFIG_WQ_WATCHDOG is not set
-# CONFIG_PANIC_ON_OOPS is not set
-CONFIG_PANIC_ON_OOPS_VALUE=0
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-CONFIG_DEBUG_OBJECTS=y
-# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
-CONFIG_DEBUG_OBJECTS_FREE=y
-CONFIG_DEBUG_OBJECTS_TIMERS=y
-CONFIG_DEBUG_OBJECTS_WORK=y
-CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
-CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
-CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-CONFIG_DEBUG_KMEMLEAK=y
-CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=20000
-# CONFIG_DEBUG_KMEMLEAK_TEST is not set
-CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-CONFIG_PROVE_LOCKING=y
-CONFIG_LOCK_STAT=y
-CONFIG_DEBUG_RT_MUTEXES=y
-CONFIG_DEBUG_PI_LIST=y
-# CONFIG_RT_MUTEX_TESTER is not set
-CONFIG_DEBUG_SPINLOCK=y
-CONFIG_DEBUG_MUTEXES=y
-CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
-CONFIG_DEBUG_RWSEMS=y
-CONFIG_DEBUG_LOCK_ALLOC=y
-CONFIG_LOCKDEP=y
-# CONFIG_DEBUG_LOCKDEP is not set
-CONFIG_TRACE_IRQFLAGS=y
-CONFIG_DEBUG_ATOMIC_SLEEP=y
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-CONFIG_DEBUG_STACK_USAGE=y
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-CONFIG_DEBUG_VM=y
-# CONFIG_DEBUG_VM_RB is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-CONFIG_TEST_LIST_SORT=y
-CONFIG_DEBUG_SG=y
-CONFIG_DEBUG_NOTIFIERS=y
-CONFIG_DEBUG_CREDENTIALS=y
-
-#
-# RCU Debugging
-#
-CONFIG_PROVE_RCU=y
-# CONFIG_PROVE_RCU_REPEATEDLY is not set
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-CONFIG_DEBUG_PER_CPU_MAPS=y
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-CONFIG_FAULT_INJECTION=y
-CONFIG_FAILSLAB=y
-CONFIG_FAIL_PAGE_ALLOC=y
-CONFIG_FAIL_MAKE_REQUEST=y
-CONFIG_FAIL_IO_TIMEOUT=y
-CONFIG_FAIL_MMC_REQUEST=y
-CONFIG_FAULT_INJECTION_DEBUG_FS=y
-CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y
-CONFIG_LATENCYTOP=y
-CONFIG_PAGE_EXTENSION=y
-CONFIG_DEBUG_PAGEALLOC=y
-CONFIG_WANT_PAGE_DEBUG_FLAGS=y
-# CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT is not set
-CONFIG_PAGE_GUARD=y
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-# CONFIG_FUNCTION_GRAPH_TRACER is not set
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-# CONFIG_STACK_TRACER is not set
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-# CONFIG_FUNCTION_PROFILER is not set
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_TEST_PARMAN is not set
-# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-CONFIG_DMA_API_DEBUG=y
-CONFIG_ATOMIC64_SELFTEST=y
-CONFIG_ASYNC_RAID6_TEST=m
-# CONFIG_SAMPLES is not set
-CONFIG_HAVE_ARCH_KGDB=y
-CONFIG_KGDB=y
-CONFIG_KGDB_SERIAL_CONSOLE=y
-CONFIG_KGDB_TESTS=y
-# CONFIG_KGDB_TESTS_ON_BOOT is not set
-CONFIG_KGDB_KDB=y
-CONFIG_KDB_KEYBOARD=y
-CONFIG_KDB_CONTINUE_CATASTROPHIC=0
-CONFIG_TEST_STRING_HELPERS=m
-CONFIG_TEST_KSTRTOX=y
-CONFIG_PPC_DISABLE_WERROR=y
-CONFIG_PRINT_STACK_DEPTH=64
-CONFIG_DEBUG_STACKOVERFLOW=y
-# CONFIG_HCALL_STATS is not set
-CONFIG_PPC_EMULATED_STATS=y
-# CONFIG_CODE_PATCHING_SELFTEST is not set
-# CONFIG_FTR_FIXUP_SELFTEST is not set
-CONFIG_MSI_BITMAP_SELFTEST=y
-CONFIG_XMON=y
-# CONFIG_XMON_DEFAULT is not set
-CONFIG_XMON_DISASSEMBLY=y
-CONFIG_DEBUGGER=y
-CONFIG_BOOTX_TEXT=y
-# CONFIG_PPC_EARLY_DEBUG is not set
-CONFIG_STRICT_DEVMEM=y
-# CONFIG_FAIL_IOMMU is not set
-# CONFIG_PPC_DEBUG_RFI is not set
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_KEYS_COMPAT=y
-CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_BIG_KEYS=y
-CONFIG_TRUSTED_KEYS=y
-CONFIG_ENCRYPTED_KEYS=y
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
-CONFIG_SECURITY=y
-CONFIG_SECURITYFS=y
-CONFIG_SECURITY_NETWORK=y
-CONFIG_SECURITY_INFINIBAND=y
-CONFIG_SECURITY_NETWORK_XFRM=y
-CONFIG_SECURITY_PATH=y
-CONFIG_SECURITY_SECURELEVEL=y
-CONFIG_LSM_MMAP_MIN_ADDR=65535
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
-CONFIG_SECURITY_SELINUX=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
-CONFIG_SECURITY_SELINUX_DISABLE=y
-CONFIG_SECURITY_SELINUX_DEVELOP=y
-CONFIG_SECURITY_SELINUX_AVC_STATS=y
-CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
-# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
-# CONFIG_SECURITY_SMACK is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
-CONFIG_SECURITY_YAMA=y
-CONFIG_SECURITY_YAMA_STACKED=y
-CONFIG_INTEGRITY=y
-CONFIG_INTEGRITY_SIGNATURE=y
-CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
-CONFIG_IMA=y
-CONFIG_IMA_MEASURE_PCR_IDX=10
-CONFIG_IMA_AUDIT=y
-CONFIG_IMA_LSM_RULES=y
-CONFIG_IMA_APPRAISE=y
-CONFIG_IMA_TRUSTED_KEYRING=y
-CONFIG_EVM=y
-CONFIG_EVM_HMAC_VERSION=2
-CONFIG_DEFAULT_SECURITY_SELINUX=y
-# CONFIG_DEFAULT_SECURITY_YAMA is not set
-# CONFIG_DEFAULT_SECURITY_DAC is not set
-CONFIG_DEFAULT_SECURITY="selinux"
-CONFIG_XOR_BLOCKS=m
-CONFIG_ASYNC_CORE=m
-CONFIG_ASYNC_MEMCPY=m
-CONFIG_ASYNC_XOR=m
-CONFIG_ASYNC_PQ=m
-CONFIG_ASYNC_RAID6_RECOV=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_ACOMP2=y
-# CONFIG_CRYPTO_RSA is not set
-# CONFIG_CRYPTO_DH is not set
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-# CONFIG_CRYPTO_CRYPTD is not set
-# CONFIG_CRYPTO_MCRYPTD is not set
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRCT10DIF=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-# CONFIG_CRYPTO_SHA1_PPC is not set
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=y
-CONFIG_CRYPTO_842=m
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-CONFIG_CRYPTO_DEV_NX=y
-CONFIG_CRYPTO_DEV_NX_ENCRYPT=m
-CONFIG_CRYPTO_DEV_NX_COMPRESS=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=y
-CONFIG_CRYPTO_DEV_VMX=y
-CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m
-CONFIG_CRYPTO_DEV_CHELSIO=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-# CONFIG_PKCS7_MESSAGE_PARSER is not set
-# CONFIG_PPC_CLOCK is not set
-CONFIG_HAVE_KVM_IRQCHIP=y
-CONFIG_HAVE_KVM_IRQFD=y
-CONFIG_HAVE_KVM_EVENTFD=y
-CONFIG_KVM_MMIO=y
-CONFIG_KVM_VFIO=y
-CONFIG_HAVE_KVM_IRQ_BYPASS=y
-CONFIG_VIRTUALIZATION=y
-CONFIG_KVM=y
-CONFIG_KVM_BOOK3S_HANDLER=y
-CONFIG_KVM_BOOK3S_64_HANDLER=y
-CONFIG_KVM_BOOK3S_PR_POSSIBLE=y
-CONFIG_KVM_BOOK3S_HV_POSSIBLE=y
-CONFIG_KVM_BOOK3S_64=m
-CONFIG_KVM_BOOK3S_64_HV=m
-CONFIG_KVM_BOOK3S_64_PR=m
-# CONFIG_KVM_BOOK3S_HV_EXIT_TIMING is not set
-CONFIG_KVM_XICS=y
-# CONFIG_RH_KABI_SIZE_ALIGN_CHECKS is not set
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64.config b/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64.config
deleted file mode 100644
index 73f954f..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64.config
+++ /dev/null
@@ -1,5653 +0,0 @@
-# powerpc
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/powerpc 3.10.0 Kernel Configuration
-#
-CONFIG_PPC64=y
-
-#
-# Processor support
-#
-CONFIG_PPC_BOOK3S_64=y
-# CONFIG_PPC_BOOK3E_64 is not set
-CONFIG_GENERIC_CPU=y
-# CONFIG_CELL_CPU is not set
-# CONFIG_POWER4_CPU is not set
-# CONFIG_POWER5_CPU is not set
-# CONFIG_POWER6_CPU is not set
-# CONFIG_POWER7_CPU is not set
-# CONFIG_POWER8_CPU is not set
-CONFIG_PPC_BOOK3S=y
-CONFIG_POWER3=y
-CONFIG_POWER4=y
-# CONFIG_TUNE_CELL is not set
-CONFIG_PPC_FPU=y
-CONFIG_ALTIVEC=y
-CONFIG_VSX=y
-CONFIG_PPC_ICSWX=y
-# CONFIG_PPC_ICSWX_PID is not set
-# CONFIG_PPC_ICSWX_USE_SIGILL is not set
-CONFIG_PPC_STD_MMU=y
-CONFIG_PPC_STD_MMU_64=y
-CONFIG_PPC_MM_SLICES=y
-CONFIG_PPC_HAVE_PMU_SUPPORT=y
-CONFIG_PPC_PERF_CTRS=y
-CONFIG_SMP=y
-CONFIG_NR_CPUS=2048
-CONFIG_PPC_DOORBELL=y
-CONFIG_CPU_BIG_ENDIAN=y
-# CONFIG_CPU_LITTLE_ENDIAN is not set
-CONFIG_64BIT=y
-CONFIG_WORD_SIZE=64
-CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_MMU=y
-CONFIG_ARCH_MMAP_RND_BITS_MAX=28
-CONFIG_ARCH_MMAP_RND_BITS_MIN=14
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=13
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7
-CONFIG_HAVE_SETUP_PER_CPU_AREA=y
-CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
-CONFIG_NR_IRQS=512
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-CONFIG_ARCH_HAS_ILOG2_U32=y
-CONFIG_ARCH_HAS_ILOG2_U64=y
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK=y
-CONFIG_PPC=y
-CONFIG_PPC_BARRIER_NOSPEC=y
-# CONFIG_GENERIC_CSUM is not set
-CONFIG_EARLY_PRINTK=y
-CONFIG_PANIC_TIMEOUT=180
-CONFIG_COMPAT=y
-CONFIG_SYSVIPC_COMPAT=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_ARCH_MAY_HAVE_PC_FDC=y
-CONFIG_PPC_OF=y
-CONFIG_PPC_UDBG_16550=y
-# CONFIG_GENERIC_TBSYNC is not set
-CONFIG_AUDIT_ARCH=y
-CONFIG_GENERIC_BUG=y
-CONFIG_EPAPR_BOOT=y
-# CONFIG_DEFAULT_UIMAGE is not set
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_ARCH_SUSPEND_POSSIBLE=y
-# CONFIG_PPC_DCR_NATIVE is not set
-# CONFIG_PPC_DCR_MMIO is not set
-# CONFIG_PPC_OF_PLATFORM_PCI is not set
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_PPC_EMULATE_SSTEP=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
-CONFIG_AUDIT=y
-CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
-CONFIG_AUDIT_TREE=y
-CONFIG_HAVE_GENERIC_HARDIRQS=y
-
-#
-# IRQ subsystem
-#
-CONFIG_GENERIC_HARDIRQS=y
-CONFIG_GENERIC_IRQ_SHOW=y
-CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
-CONFIG_HARDIRQS_SW_RESEND=y
-CONFIG_IRQ_DOMAIN=y
-# CONFIG_IRQ_DOMAIN_DEBUG is not set
-CONFIG_IRQ_FORCED_THREADING=y
-CONFIG_SPARSE_IRQ=y
-CONFIG_GENERIC_TIME_VSYSCALL_OLD=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-CONFIG_ARCH_HAS_TICK_BROADCAST=y
-CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
-CONFIG_GENERIC_CMOS_UPDATE=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-# CONFIG_NO_HZ_IDLE is not set
-CONFIG_NO_HZ_FULL=y
-# CONFIG_NO_HZ_FULL_ALL is not set
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_BSD_PROCESS_ACCT_V3=y
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_CONTEXT_TRACKING=y
-CONFIG_RCU_USER_QS=y
-# CONFIG_CONTEXT_TRACKING_FORCE is not set
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-# CONFIG_BUILD_BIN2C is not set
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=20
-CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
-CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
-CONFIG_NUMA_BALANCING=y
-CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
-CONFIG_MEMCG=y
-CONFIG_MEMCG_SWAP=y
-CONFIG_MEMCG_SWAP_ENABLED=y
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
-# CONFIG_CHECKPOINT_RESTORE is not set
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-CONFIG_SCHED_AUTOGROUP=y
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_HAVE_PCSPKR_PLATFORM=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_PCSPKR_PLATFORM=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-CONFIG_USERFAULTFD=y
-CONFIG_PCI_QUIRKS=y
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_OPROFILE=m
-CONFIG_HAVE_OPROFILE=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_ARCH_USE_BUILTIN_BSWAP=y
-CONFIG_KRETPROBES=y
-CONFIG_HAVE_IOREMAP_PROT=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_HW_BREAKPOINT=y
-CONFIG_HAVE_PERF_EVENTS_NMI=y
-CONFIG_HAVE_PERF_REGS=y
-CONFIG_HAVE_PERF_USER_STACK_DUMP=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_HAVE_RCU_TABLE_FREE=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-# CONFIG_CC_STACKPROTECTOR is not set
-CONFIG_HAVE_CONTEXT_TRACKING=y
-CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
-CONFIG_ARCH_MMAP_RND_BITS=14
-CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS=7
-CONFIG_CLONE_BACKWARDS=y
-CONFIG_OLD_SIGSUSPEND=y
-CONFIG_COMPAT_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
-CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_SHA1=y
-# CONFIG_MODULE_SIG_SHA224 is not set
-# CONFIG_MODULE_SIG_SHA256 is not set
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha1"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-CONFIG_OSF_PARTITION=y
-CONFIG_AMIGA_PARTITION=y
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_MAC_PARTITION=y
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-# CONFIG_LDM_PARTITION is not set
-CONFIG_SGI_PARTITION=y
-# CONFIG_ULTRIX_PARTITION is not set
-CONFIG_SUN_PARTITION=y
-CONFIG_KARMA_PARTITION=y
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_BLOCK_COMPAT=y
-CONFIG_BLK_MQ_PCI=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
-CONFIG_MQ_IOSCHED_DEADLINE=y
-CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PREEMPT_NOTIFIERS=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
-CONFIG_INLINE_READ_UNLOCK=y
-CONFIG_INLINE_READ_UNLOCK_IRQ=y
-CONFIG_INLINE_WRITE_UNLOCK=y
-CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
-CONFIG_MUTEX_SPIN_ON_OWNER=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_FREEZER=y
-CONFIG_PPC_MSI_BITMAP=y
-CONFIG_PPC_XICS=y
-CONFIG_PPC_ICP_NATIVE=y
-CONFIG_PPC_ICP_HV=y
-CONFIG_PPC_ICS_RTAS=y
-CONFIG_PPC_SCOM=y
-# CONFIG_SCOM_DEBUGFS is not set
-# CONFIG_GE_FPGA is not set
-
-#
-# Platform support
-#
-CONFIG_PPC_POWERNV=y
-# CONFIG_OPAL_PRD is not set
-CONFIG_PPC_PSERIES=y
-CONFIG_PPC_SPLPAR=y
-CONFIG_PSERIES_MSI=y
-CONFIG_PSERIES_ENERGY=m
-CONFIG_SCANLOG=y
-CONFIG_IO_EVENT_IRQ=y
-CONFIG_LPARCFG=y
-CONFIG_PPC_SMLPAR=y
-CONFIG_CMM=y
-CONFIG_HV_PERF_CTRS=y
-CONFIG_DTL=y
-# CONFIG_PPC_PMAC is not set
-# CONFIG_PPC_MAPLE is not set
-# CONFIG_PPC_PASEMI is not set
-# CONFIG_PPC_PS3 is not set
-# CONFIG_PPC_CELL is not set
-# CONFIG_PPC_CELL_NATIVE is not set
-# CONFIG_PPC_IBM_CELL_BLADE is not set
-# CONFIG_PPC_CELL_QPACE is not set
-# CONFIG_PQ2ADS is not set
-# CONFIG_PPC_WSP is not set
-CONFIG_KVM_GUEST=y
-CONFIG_EPAPR_PARAVIRT=y
-CONFIG_PPC_NATIVE=y
-CONFIG_PPC_OF_BOOT_TRAMPOLINE=y
-# CONFIG_UDBG_RTAS_CONSOLE is not set
-CONFIG_PPC_SMP_MUXED_IPI=y
-# CONFIG_IPIC is not set
-CONFIG_MPIC=y
-# CONFIG_PPC_EPAPR_HV_PIC is not set
-# CONFIG_MPIC_WEIRD is not set
-# CONFIG_MPIC_MSGR is not set
-CONFIG_PPC_I8259=y
-# CONFIG_U3_DART is not set
-CONFIG_PPC_RTAS=y
-CONFIG_RTAS_ERROR_LOGGING=y
-CONFIG_PPC_RTAS_DAEMON=y
-CONFIG_RTAS_PROC=y
-CONFIG_RTAS_FLASH=y
-# CONFIG_MMIO_NVRAM is not set
-# CONFIG_MPIC_U3_HT_IRQS is not set
-CONFIG_IBMVIO=y
-CONFIG_IBMEBUS=y
-CONFIG_EEH=y
-# CONFIG_PPC_MPC106 is not set
-# CONFIG_PPC_970_NAP is not set
-CONFIG_PPC_P7_NAP=y
-CONFIG_PPC_INDIRECT_PIO=y
-
-#
-# CPU Frequency scaling
-#
-CONFIG_CPU_FREQ=y
-CONFIG_CPU_FREQ_GOV_COMMON=y
-CONFIG_CPU_FREQ_STAT=m
-CONFIG_CPU_FREQ_STAT_DETAILS=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
-CONFIG_CPU_FREQ_GOV_POWERSAVE=y
-CONFIG_CPU_FREQ_GOV_USERSPACE=y
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
-CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
-
-#
-# PowerPC CPU frequency scaling drivers
-#
-CONFIG_POWERNV_CPUFREQ=y
-
-#
-# CPUIdle driver
-#
-CONFIG_CPU_IDLE=y
-# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
-# CONFIG_CPU_IDLE_GOV_LADDER is not set
-CONFIG_CPU_IDLE_GOV_MENU=y
-
-#
-# POWERPC CPU Idle Drivers
-#
-CONFIG_PSERIES_CPUIDLE=y
-CONFIG_POWERNV_CPUIDLE=y
-# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
-# CONFIG_FSL_ULI1575 is not set
-CONFIG_SIMPLE_GPIO=y
-
-#
-# Kernel options
-#
-CONFIG_HZ_100=y
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-# CONFIG_HZ_1000 is not set
-CONFIG_HZ=100
-CONFIG_SCHED_HRTICK=y
-# CONFIG_PREEMPT_NONE is not set
-CONFIG_PREEMPT_VOLUNTARY=y
-# CONFIG_PREEMPT is not set
-CONFIG_BINFMT_ELF=y
-CONFIG_COMPAT_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_COREDUMP=y
-CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y
-CONFIG_PPC_TRANSACTIONAL_MEM=y
-CONFIG_IOMMU_HELPER=y
-CONFIG_SWIOTLB=y
-CONFIG_HOTPLUG_CPU=y
-CONFIG_ARCH_CPU_PROBE_RELEASE=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_HAS_WALK_MEMORY=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_KEXEC=y
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_CRASH_DUMP=y
-CONFIG_FA_DUMP=y
-CONFIG_IRQ_ALL_CPUS=y
-CONFIG_NUMA=y
-CONFIG_NODES_SHIFT=8
-CONFIG_USE_PERCPU_NUMA_NODE_ID=y
-CONFIG_HAVE_MEMORYLESS_NODES=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_SYS_SUPPORTS_HUGETLBFS=y
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_NEED_MULTIPLE_NODES=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_MEMORY_ISOLATION=y
-CONFIG_HAVE_BOOTMEM_INFO_NODE=y
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_MMU_NOTIFIER=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_MEMORY_FAILURE=y
-CONFIG_HWPOISON_INJECT=m
-CONFIG_TRANSPARENT_HUGEPAGE=y
-# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
-CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-CONFIG_FRONTSWAP=y
-CONFIG_CMA=y
-# CONFIG_CMA_DEBUG is not set
-CONFIG_ZSWAP=y
-CONFIG_ZPOOL=y
-CONFIG_ZBUD=y
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-# CONFIG_PERCPU_STATS is not set
-CONFIG_ARCH_MEMORY_PROBE=y
-CONFIG_NODES_SPAN_OTHER_NODES=y
-CONFIG_PPC_HAS_HASH_64K=y
-# CONFIG_PPC_4K_PAGES is not set
-CONFIG_PPC_64K_PAGES=y
-CONFIG_FORCE_MAX_ZONEORDER=9
-CONFIG_PPC_SUBPAGE_PROT=y
-CONFIG_PPC_COPRO_BASE=y
-CONFIG_SCHED_SMT=y
-CONFIG_PPC_DENORMALISATION=y
-# CONFIG_CMDLINE_BOOL is not set
-CONFIG_EXTRA_TARGETS=""
-CONFIG_SUSPEND=y
-CONFIG_SUSPEND_FREEZER=y
-# CONFIG_HIBERNATION is not set
-CONFIG_PM_SLEEP=y
-CONFIG_PM_SLEEP_SMP=y
-# CONFIG_PM_AUTOSLEEP is not set
-# CONFIG_PM_WAKELOCKS is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-# CONFIG_PM_TEST_SUSPEND is not set
-CONFIG_PM_SLEEP_DEBUG=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_SECCOMP=y
-CONFIG_PPC_RTAS_FILTER=y
-CONFIG_ISA_DMA_API=y
-
-#
-# Bus options
-#
-CONFIG_ZONE_DMA=y
-CONFIG_NEED_DMA_MAP_STATE=y
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_GENERIC_ISA_DMA=y
-# CONFIG_PPC_INDIRECT_PCI is not set
-CONFIG_PCI=y
-CONFIG_PCI_DOMAINS=y
-CONFIG_PCI_SYSCALL=y
-CONFIG_PCIEPORTBUS=y
-# CONFIG_HOTPLUG_PCI_PCIE is not set
-CONFIG_PCIEAER=y
-CONFIG_PCIE_ECRC=y
-CONFIG_PCIEAER_INJECT=m
-CONFIG_PCIEASPM=y
-# CONFIG_PCIEASPM_DEBUG is not set
-CONFIG_PCIEASPM_DEFAULT=y
-# CONFIG_PCIEASPM_POWERSAVE is not set
-# CONFIG_PCIEASPM_PERFORMANCE is not set
-CONFIG_PCIE_PME=y
-# CONFIG_PCIE_DPC is not set
-CONFIG_PCI_BUS_ADDR_T_64BIT=y
-CONFIG_PCI_MSI=y
-# CONFIG_PCI_DEBUG is not set
-# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
-CONFIG_PCI_STUB=y
-CONFIG_PCI_ATS=y
-CONFIG_PCI_IOV=y
-CONFIG_PCI_PRI=y
-CONFIG_PCI_PASID=y
-CONFIG_HOTPLUG_PCI=y
-# CONFIG_HOTPLUG_PCI_CPCI is not set
-CONFIG_HOTPLUG_PCI_SHPC=y
-CONFIG_HOTPLUG_PCI_RPA=m
-CONFIG_HOTPLUG_PCI_RPA_DLPAR=m
-CONFIG_PCCARD=y
-# CONFIG_PCMCIA is not set
-CONFIG_CARDBUS=y
-
-#
-# PC-card bridges
-#
-CONFIG_YENTA=m
-CONFIG_YENTA_O2=y
-CONFIG_YENTA_RICOH=y
-CONFIG_YENTA_TI=y
-CONFIG_YENTA_ENE_TUNE=y
-CONFIG_YENTA_TOSHIBA=y
-# CONFIG_HAS_RAPIDIO is not set
-# CONFIG_RAPIDIO is not set
-CONFIG_NONSTATIC_KERNEL=y
-CONFIG_RELOCATABLE=y
-CONFIG_PAGE_OFFSET=0xc000000000000000
-CONFIG_KERNEL_START=0xc000000000000000
-CONFIG_PHYSICAL_START=0x00000000
-CONFIG_ARCH_RANDOM=y
-CONFIG_NET=y
-CONFIG_COMPAT_NETLINK_MESSAGES=y
-CONFIG_NET_INGRESS=y
-CONFIG_NET_EGRESS=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_PACKET_DIAG=m
-CONFIG_UNIX=y
-CONFIG_UNIX_DIAG=m
-CONFIG_XFRM=y
-CONFIG_XFRM_ALGO=y
-CONFIG_XFRM_USER=y
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-CONFIG_XFRM_STATISTICS=y
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_FIB_TRIE_STATS=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-CONFIG_NET_IPGRE_DEMUX=m
-CONFIG_NET_IP_TUNNEL=m
-CONFIG_NET_IPGRE=m
-CONFIG_NET_IPGRE_BROADCAST=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NET_IPVTI=m
-CONFIG_NET_UDP_TUNNEL=m
-# CONFIG_NET_FOU is not set
-# CONFIG_NET_FOU_IP_TUNNELS is not set
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=y
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_INET_UDP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_TCP_CONG_DCTCP=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=m
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_VTI=m
-CONFIG_IPV6_SIT=m
-CONFIG_IPV6_SIT_6RD=y
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_GRE=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-# CONFIG_IPV6_SUBTREES is not set
-CONFIG_IPV6_MROUTE=y
-CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IPV6_PIMSM_V2=y
-CONFIG_NETLABEL=y
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
-CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
-CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=m
-
-#
-# Core Netfilter Configuration
-#
-CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_ACCT=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
-CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_LOG_COMMON=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_ZONES=y
-CONFIG_NF_CONNTRACK_PROCFS=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-CONFIG_NF_CONNTRACK_TIMEOUT=y
-CONFIG_NF_CONNTRACK_TIMESTAMP=y
-CONFIG_NF_CONNTRACK_LABELS=y
-CONFIG_NF_CT_PROTO_DCCP=y
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=y
-CONFIG_NF_CT_PROTO_UDPLITE=y
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-CONFIG_NF_CONNTRACK_SNMP=m
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NF_CT_NETLINK_TIMEOUT=m
-CONFIG_NF_CT_NETLINK_HELPER=m
-CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_NF_NAT_PROTO_DCCP=y
-CONFIG_NF_NAT_PROTO_UDPLITE=y
-CONFIG_NF_NAT_PROTO_SCTP=y
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_REDIRECT=m
-CONFIG_NETFILTER_SYNPROXY=m
-CONFIG_NF_TABLES=m
-CONFIG_NF_TABLES_INET=m
-CONFIG_NFT_EXTHDR=m
-CONFIG_NFT_META=m
-CONFIG_NFT_CT=m
-CONFIG_NFT_RBTREE=m
-CONFIG_NFT_HASH=m
-CONFIG_NFT_COUNTER=m
-CONFIG_NFT_LOG=m
-CONFIG_NFT_LIMIT=m
-CONFIG_NFT_MASQ=m
-CONFIG_NFT_REDIR=m
-CONFIG_NFT_NAT=m
-CONFIG_NFT_QUEUE=m
-CONFIG_NFT_REJECT=m
-CONFIG_NFT_REJECT_INET=m
-CONFIG_NFT_COMPAT=m
-CONFIG_NETFILTER_XTABLES=y
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
-CONFIG_NETFILTER_XT_CONNMARK=m
-CONFIG_NETFILTER_XT_SET=m
-
-#
-# Xtables targets
-#
-CONFIG_NETFILTER_XT_TARGET_AUDIT=m
-CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-CONFIG_NETFILTER_XT_TARGET_CT=m
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-CONFIG_NETFILTER_XT_TARGET_HMARK=m
-CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
-CONFIG_NETFILTER_XT_TARGET_LED=m
-CONFIG_NETFILTER_XT_TARGET_LOG=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_NAT=m
-CONFIG_NETFILTER_XT_TARGET_NETMAP=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
-CONFIG_NETFILTER_XT_TARGET_TEE=m
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
-CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
-CONFIG_NETFILTER_XT_MATCH_BPF=m
-CONFIG_NETFILTER_XT_MATCH_CGROUP=m
-CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
-CONFIG_NETFILTER_XT_MATCH_COMMENT=m
-CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
-CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
-CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
-CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
-CONFIG_NETFILTER_XT_MATCH_CPU=m
-CONFIG_NETFILTER_XT_MATCH_DCCP=m
-CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
-CONFIG_NETFILTER_XT_MATCH_DSCP=m
-CONFIG_NETFILTER_XT_MATCH_ECN=m
-CONFIG_NETFILTER_XT_MATCH_ESP=m
-CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_HELPER=m
-CONFIG_NETFILTER_XT_MATCH_HL=m
-CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
-CONFIG_NETFILTER_XT_MATCH_IPVS=m
-CONFIG_NETFILTER_XT_MATCH_LENGTH=m
-CONFIG_NETFILTER_XT_MATCH_LIMIT=m
-CONFIG_NETFILTER_XT_MATCH_MAC=m
-CONFIG_NETFILTER_XT_MATCH_MARK=m
-CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_NFACCT=m
-CONFIG_NETFILTER_XT_MATCH_OSF=m
-CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
-CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
-CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
-CONFIG_NETFILTER_XT_MATCH_QUOTA=m
-CONFIG_NETFILTER_XT_MATCH_RATEEST=m
-CONFIG_NETFILTER_XT_MATCH_REALM=m
-CONFIG_NETFILTER_XT_MATCH_RECENT=m
-CONFIG_NETFILTER_XT_MATCH_SCTP=m
-CONFIG_NETFILTER_XT_MATCH_SOCKET=m
-CONFIG_NETFILTER_XT_MATCH_STATE=m
-CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
-CONFIG_NETFILTER_XT_MATCH_STRING=m
-CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
-CONFIG_NETFILTER_XT_MATCH_U32=m
-CONFIG_IP_SET=m
-CONFIG_IP_SET_MAX=256
-CONFIG_IP_SET_BITMAP_IP=m
-CONFIG_IP_SET_BITMAP_IPMAC=m
-CONFIG_IP_SET_BITMAP_PORT=m
-CONFIG_IP_SET_HASH_IP=m
-CONFIG_IP_SET_HASH_IPMARK=m
-CONFIG_IP_SET_HASH_IPPORT=m
-CONFIG_IP_SET_HASH_IPPORTIP=m
-CONFIG_IP_SET_HASH_IPPORTNET=m
-CONFIG_IP_SET_HASH_IPMAC=m
-CONFIG_IP_SET_HASH_MAC=m
-CONFIG_IP_SET_HASH_NETPORTNET=m
-CONFIG_IP_SET_HASH_NET=m
-CONFIG_IP_SET_HASH_NETNET=m
-CONFIG_IP_SET_HASH_NETPORT=m
-CONFIG_IP_SET_HASH_NETIFACE=m
-CONFIG_IP_SET_LIST_SET=m
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-# CONFIG_IP_VS_DEBUG is not set
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-CONFIG_IP_VS_PROTO_SCTP=y
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS SH scheduler
-#
-CONFIG_IP_VS_SH_TAB_BITS=8
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-CONFIG_IP_VS_PE_SIP=m
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
-CONFIG_NF_TABLES_IPV4=m
-CONFIG_NFT_CHAIN_ROUTE_IPV4=m
-CONFIG_NFT_REJECT_IPV4=m
-CONFIG_NFT_DUP_IPV4=m
-CONFIG_NF_TABLES_ARP=m
-CONFIG_NF_DUP_IPV4=m
-CONFIG_NF_LOG_IPV4=m
-CONFIG_NF_REJECT_IPV4=m
-CONFIG_NF_NAT_IPV4=m
-CONFIG_NFT_CHAIN_NAT_IPV4=m
-CONFIG_NF_NAT_MASQUERADE_IPV4=m
-CONFIG_NFT_MASQ_IPV4=m
-CONFIG_NFT_REDIR_IPV4=m
-CONFIG_NF_NAT_SNMP_BASIC=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_RPFILTER=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_SYNPROXY=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_IP_NF_NAT=m
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_NF_TABLES_IPV6=m
-CONFIG_NFT_CHAIN_ROUTE_IPV6=m
-CONFIG_NFT_REJECT_IPV6=m
-CONFIG_NFT_DUP_IPV6=m
-CONFIG_NF_DUP_IPV6=m
-CONFIG_NF_REJECT_IPV6=m
-CONFIG_NF_LOG_IPV6=m
-CONFIG_NF_NAT_IPV6=m
-CONFIG_NFT_CHAIN_NAT_IPV6=m
-CONFIG_NF_NAT_MASQUERADE_IPV6=m
-CONFIG_NFT_MASQ_IPV6=m
-CONFIG_NFT_REDIR_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RPFILTER=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_TARGET_SYNPROXY=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-CONFIG_IP6_NF_NAT=m
-CONFIG_IP6_NF_TARGET_MASQUERADE=m
-CONFIG_IP6_NF_TARGET_NPT=m
-CONFIG_NF_TABLES_BRIDGE=m
-CONFIG_NFT_BRIDGE_META=m
-CONFIG_NFT_BRIDGE_REJECT=m
-CONFIG_NF_LOG_BRIDGE=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-CONFIG_NET_SCTPPROBE=m
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
-CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
-CONFIG_SCTP_COOKIE_HMAC_MD5=y
-CONFIG_SCTP_COOKIE_HMAC_SHA1=y
-CONFIG_INET_SCTP_DIAG=m
-# CONFIG_RDS is not set
-# CONFIG_TIPC is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-# CONFIG_ATM_MPOA is not set
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-CONFIG_L2TP=m
-CONFIG_L2TP_DEBUGFS=m
-CONFIG_L2TP_V3=y
-CONFIG_L2TP_IP=m
-CONFIG_L2TP_ETH=m
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_MRP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-CONFIG_BRIDGE_VLAN_FILTERING=y
-CONFIG_HAVE_NET_DSA=y
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_VLAN_8021Q_MVRP=y
-# CONFIG_DECNET is not set
-CONFIG_LLC=m
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_6LOWPAN=m
-# CONFIG_6LOWPAN_DEBUGFS is not set
-CONFIG_6LOWPAN_NHC=m
-CONFIG_6LOWPAN_NHC_DEST=m
-CONFIG_6LOWPAN_NHC_FRAGMENT=m
-CONFIG_6LOWPAN_NHC_HOP=m
-CONFIG_6LOWPAN_NHC_IPV6=m
-CONFIG_6LOWPAN_NHC_MOBILITY=m
-CONFIG_6LOWPAN_NHC_ROUTING=m
-CONFIG_6LOWPAN_NHC_UDP=m
-# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set
-# CONFIG_6LOWPAN_GHC_UDP is not set
-# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_IEEE802154_6LOWPAN=m
-CONFIG_MAC802154=m
-CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
-CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
-CONFIG_NET_SCH_MULTIQ=m
-CONFIG_NET_SCH_RED=m
-CONFIG_NET_SCH_SFB=m
-CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
-CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_CBS=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-CONFIG_NET_SCH_MQPRIO=m
-CONFIG_NET_SCH_CHOKE=m
-CONFIG_NET_SCH_QFQ=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_SCH_FQ=m
-# CONFIG_NET_SCH_HHF is not set
-# CONFIG_NET_SCH_PIE is not set
-CONFIG_NET_SCH_INGRESS=m
-CONFIG_NET_SCH_PLUG=m
-# CONFIG_NET_SCH_DEFAULT is not set
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_CLS_BPF=m
-CONFIG_NET_CLS_FLOWER=m
-CONFIG_NET_CLS_MATCHALL=m
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-# CONFIG_NET_EMATCH_CANID is not set
-CONFIG_NET_EMATCH_IPSET=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_SAMPLE=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-CONFIG_NET_ACT_CSUM=m
-CONFIG_NET_ACT_VLAN=m
-CONFIG_NET_ACT_TUNNEL_KEY=m
-CONFIG_NET_ACT_CONNMARK=m
-CONFIG_NET_ACT_SKBMOD=m
-# CONFIG_NET_ACT_IFE is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_OPENVSWITCH=m
-CONFIG_OPENVSWITCH_GRE=m
-CONFIG_OPENVSWITCH_VXLAN=m
-CONFIG_OPENVSWITCH_GENEVE=m
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
-CONFIG_NET_SWITCHDEV=y
-CONFIG_RPS=y
-CONFIG_RFS_ACCEL=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_HAMRADIO is not set
-CONFIG_CAN=m
-CONFIG_CAN_RAW=m
-CONFIG_CAN_BCM=m
-CONFIG_CAN_GW=m
-
-#
-# CAN Device Drivers
-#
-CONFIG_CAN_VCAN=m
-CONFIG_CAN_SLCAN=m
-CONFIG_CAN_DEV=m
-CONFIG_CAN_CALC_BITTIMING=y
-CONFIG_CAN_LEDS=y
-# CONFIG_PCH_CAN is not set
-# CONFIG_CAN_GRCAN is not set
-# CONFIG_CAN_MSCAN is not set
-CONFIG_CAN_SJA1000=m
-# CONFIG_CAN_SJA1000_ISA is not set
-CONFIG_CAN_SJA1000_PLATFORM=m
-CONFIG_CAN_SJA1000_OF_PLATFORM=m
-CONFIG_CAN_EMS_PCI=m
-CONFIG_CAN_PEAK_PCI=m
-CONFIG_CAN_PEAK_PCIEC=y
-CONFIG_CAN_KVASER_PCI=m
-CONFIG_CAN_PLX_PCI=m
-CONFIG_CAN_C_CAN=m
-CONFIG_CAN_C_CAN_PLATFORM=m
-CONFIG_CAN_C_CAN_PCI=m
-CONFIG_CAN_CC770=m
-# CONFIG_CAN_CC770_ISA is not set
-CONFIG_CAN_CC770_PLATFORM=m
-
-#
-# CAN USB interfaces
-#
-CONFIG_CAN_EMS_USB=m
-CONFIG_CAN_ESD_USB2=m
-CONFIG_CAN_KVASER_USB=m
-CONFIG_CAN_PEAK_USB=m
-CONFIG_CAN_8DEV_USB=m
-CONFIG_CAN_SOFTING=m
-# CONFIG_CAN_DEBUG_DEVICES is not set
-# CONFIG_IRDA is not set
-CONFIG_BT=m
-CONFIG_BT_BREDR=y
-CONFIG_BT_RFCOMM=m
-CONFIG_BT_RFCOMM_TTY=y
-CONFIG_BT_BNEP=m
-CONFIG_BT_BNEP_MC_FILTER=y
-CONFIG_BT_BNEP_PROTO_FILTER=y
-CONFIG_BT_CMTP=m
-CONFIG_BT_HIDP=m
-CONFIG_BT_HS=y
-CONFIG_BT_LE=y
-# CONFIG_BT_6LOWPAN is not set
-# CONFIG_BT_LEDS is not set
-# CONFIG_BT_SELFTEST is not set
-CONFIG_BT_DEBUGFS=y
-
-#
-# Bluetooth device drivers
-#
-CONFIG_BT_INTEL=m
-CONFIG_BT_BCM=m
-CONFIG_BT_RTL=m
-CONFIG_BT_HCIBTUSB=m
-CONFIG_BT_HCIBTUSB_BCM=y
-CONFIG_BT_HCIBTUSB_RTL=y
-CONFIG_BT_HCIBTSDIO=m
-CONFIG_BT_HCIUART=m
-CONFIG_BT_HCIUART_H4=y
-CONFIG_BT_HCIUART_BCSP=y
-CONFIG_BT_HCIUART_ATH3K=y
-CONFIG_BT_HCIUART_LL=y
-CONFIG_BT_HCIUART_3WIRE=y
-# CONFIG_BT_HCIUART_INTEL is not set
-# CONFIG_BT_HCIUART_BCM is not set
-# CONFIG_BT_HCIUART_QCA is not set
-# CONFIG_BT_HCIUART_AG6XX is not set
-# CONFIG_BT_HCIUART_MRVL is not set
-CONFIG_BT_HCIBCM203X=m
-CONFIG_BT_HCIBPA10X=m
-CONFIG_BT_HCIBFUSB=m
-CONFIG_BT_HCIVHCI=m
-CONFIG_BT_MRVL=m
-CONFIG_BT_MRVL_SDIO=m
-CONFIG_BT_ATH3K=m
-# CONFIG_AF_RXRPC is not set
-CONFIG_FIB_RULES=y
-CONFIG_WIRELESS=y
-CONFIG_WIRELESS_EXT=y
-CONFIG_WEXT_CORE=y
-CONFIG_WEXT_PROC=y
-CONFIG_WEXT_PRIV=y
-CONFIG_CFG80211=m
-# CONFIG_NL80211_TESTMODE is not set
-# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
-# CONFIG_CFG80211_REQUIRE_SIGNED_REGDB is not set
-CONFIG_CFG80211_DEFAULT_PS=y
-# CONFIG_CFG80211_DEBUGFS is not set
-CONFIG_CFG80211_CRDA_SUPPORT=y
-CONFIG_CFG80211_WEXT=y
-CONFIG_LIB80211=m
-# CONFIG_LIB80211_DEBUG is not set
-CONFIG_MAC80211=m
-CONFIG_MAC80211_HAS_RC=y
-CONFIG_MAC80211_RC_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
-# CONFIG_MAC80211_MESH is not set
-CONFIG_MAC80211_LEDS=y
-CONFIG_MAC80211_DEBUGFS=y
-# CONFIG_MAC80211_MESSAGE_TRACING is not set
-# CONFIG_MAC80211_DEBUG_MENU is not set
-CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_LEDS=y
-CONFIG_RFKILL_INPUT=y
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-CONFIG_CEPH_LIB=m
-# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
-CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-CONFIG_DST_CACHE=y
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_PAGE_POOL=y
-CONFIG_FAILOVER=m
-CONFIG_HAVE_CBPF_JIT=y
-CONFIG_HAVE_EBPF_JIT=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-CONFIG_WANT_DEV_COREDUMP=y
-CONFIG_DEV_COREDUMP=y
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-# CONFIG_SYS_HYPERVISOR is not set
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-CONFIG_REGMAP=y
-CONFIG_REGMAP_I2C=m
-CONFIG_DMA_SHARED_BUFFER=y
-
-#
-# Bus devices
-#
-CONFIG_CONNECTOR=y
-CONFIG_PROC_EVENTS=y
-CONFIG_MTD=m
-# CONFIG_MTD_TESTS is not set
-# CONFIG_MTD_REDBOOT_PARTS is not set
-# CONFIG_MTD_CMDLINE_PARTS is not set
-CONFIG_MTD_OF_PARTS=m
-# CONFIG_MTD_AR7_PARTS is not set
-
-#
-# User Modules And Translation Layers
-#
-# CONFIG_MTD_BLKDEVS is not set
-# CONFIG_MTD_BLOCK is not set
-# CONFIG_MTD_BLOCK_RO is not set
-# CONFIG_FTL is not set
-# CONFIG_NFTL is not set
-# CONFIG_INFTL is not set
-# CONFIG_RFD_FTL is not set
-# CONFIG_SSFDC is not set
-# CONFIG_SM_FTL is not set
-# CONFIG_MTD_OOPS is not set
-# CONFIG_MTD_SWAP is not set
-
-#
-# RAM/ROM/Flash chip drivers
-#
-# CONFIG_MTD_CFI is not set
-# CONFIG_MTD_JEDECPROBE is not set
-CONFIG_MTD_MAP_BANK_WIDTH_1=y
-CONFIG_MTD_MAP_BANK_WIDTH_2=y
-CONFIG_MTD_MAP_BANK_WIDTH_4=y
-# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
-CONFIG_MTD_CFI_I1=y
-CONFIG_MTD_CFI_I2=y
-# CONFIG_MTD_CFI_I4 is not set
-# CONFIG_MTD_CFI_I8 is not set
-# CONFIG_MTD_RAM is not set
-# CONFIG_MTD_ROM is not set
-# CONFIG_MTD_ABSENT is not set
-
-#
-# Mapping drivers for chip access
-#
-# CONFIG_MTD_COMPLEX_MAPPINGS is not set
-# CONFIG_MTD_INTEL_VR_NOR is not set
-# CONFIG_MTD_PLATRAM is not set
-
-#
-# Self-contained MTD device drivers
-#
-# CONFIG_MTD_PMC551 is not set
-# CONFIG_MTD_SLRAM is not set
-# CONFIG_MTD_PHRAM is not set
-# CONFIG_MTD_MTDRAM is not set
-# CONFIG_MTD_BLOCK2MTD is not set
-# CONFIG_MTD_POWERNV_FLASH is not set
-
-#
-# Disk-On-Chip Device Drivers
-#
-# CONFIG_MTD_DOCG3 is not set
-# CONFIG_MTD_NAND is not set
-# CONFIG_MTD_ONENAND is not set
-
-#
-# LPDDR flash memory drivers
-#
-# CONFIG_MTD_LPDDR is not set
-CONFIG_MTD_UBI=m
-CONFIG_MTD_UBI_WL_THRESHOLD=4096
-CONFIG_MTD_UBI_BEB_LIMIT=20
-# CONFIG_MTD_UBI_FASTMAP is not set
-# CONFIG_MTD_UBI_GLUEBI is not set
-CONFIG_DTC=y
-CONFIG_OF=y
-
-#
-# Device Tree and Open Firmware support
-#
-CONFIG_PROC_DEVICETREE=y
-# CONFIG_OF_SELFTEST is not set
-CONFIG_OF_FLATTREE=y
-CONFIG_OF_EARLY_FLATTREE=y
-CONFIG_OF_DYNAMIC=y
-CONFIG_OF_ADDRESS=y
-CONFIG_OF_IRQ=y
-CONFIG_OF_DEVICE=y
-CONFIG_OF_NET=y
-CONFIG_OF_MDIO=y
-CONFIG_OF_PCI=y
-CONFIG_OF_PCI_IRQ=y
-CONFIG_OF_MTD=y
-CONFIG_PARPORT=m
-CONFIG_PARPORT_PC=m
-CONFIG_PARPORT_SERIAL=m
-# CONFIG_PARPORT_PC_FIFO is not set
-# CONFIG_PARPORT_PC_SUPERIO is not set
-# CONFIG_PARPORT_GSC is not set
-# CONFIG_PARPORT_AX88796 is not set
-CONFIG_PARPORT_1284=y
-CONFIG_PARPORT_NOT_PC=y
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-# CONFIG_BLK_DEV_FD is not set
-# CONFIG_PARIDE is not set
-# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
-CONFIG_ZRAM=m
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=m
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-CONFIG_BLK_DEV_SX8=m
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=16384
-CONFIG_CDROM_PKTCDVD=m
-CONFIG_CDROM_PKTCDVD_BUFFERS=8
-# CONFIG_CDROM_PKTCDVD_WCACHE is not set
-CONFIG_ATA_OVER_ETH=m
-CONFIG_VIRTIO_BLK=m
-# CONFIG_BLK_DEV_HD is not set
-CONFIG_BLK_DEV_RBD=m
-CONFIG_BLK_DEV_RSXX=m
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_RDMA=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_RDMA=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-CONFIG_SENSORS_LIS3LV02D=m
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_DUMMY_IRQ is not set
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-# CONFIG_SGI_IOC4 is not set
-CONFIG_TIFM_CORE=m
-CONFIG_TIFM_7XX1=m
-# CONFIG_ICS932S401 is not set
-# CONFIG_ATMEL_SSC is not set
-CONFIG_ENCLOSURE_SERVICES=m
-# CONFIG_HP_ILO is not set
-CONFIG_APDS9802ALS=m
-CONFIG_ISL29003=m
-CONFIG_ISL29020=m
-CONFIG_SENSORS_TSL2550=m
-# CONFIG_SENSORS_BH1780 is not set
-CONFIG_SENSORS_BH1770=m
-CONFIG_SENSORS_APDS990X=m
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_BMP085_I2C is not set
-# CONFIG_PCH_PHUB is not set
-# CONFIG_USB_SWITCH_FSA9480 is not set
-# CONFIG_SRAM is not set
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-CONFIG_EEPROM_AT24=m
-CONFIG_EEPROM_LEGACY=m
-CONFIG_EEPROM_MAX6875=m
-CONFIG_EEPROM_93CX6=m
-CONFIG_CB710_CORE=m
-# CONFIG_CB710_DEBUG is not set
-CONFIG_CB710_DEBUG_ASSUMPTIONS=y
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_TI_ST is not set
-CONFIG_SENSORS_LIS3_I2C=m
-
-#
-# Altera FPGA firmware download module
-#
-CONFIG_ALTERA_STAPL=m
-CONFIG_GENWQE=m
-CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=1
-CONFIG_CXL_BASE=y
-CONFIG_CXL_KERNEL_API=y
-CONFIG_CXL_EEH=y
-CONFIG_CXL=m
-CONFIG_HAVE_IDE=y
-# CONFIG_IDE is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=m
-CONFIG_CHR_DEV_ST=m
-CONFIG_CHR_DEV_OSST=m
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-CONFIG_CHR_DEV_SCH=m
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_ATA=y
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_TCP=m
-CONFIG_ISCSI_BOOT_SYSFS=m
-CONFIG_SCSI_CXGB3_ISCSI=m
-CONFIG_SCSI_CXGB4_ISCSI=m
-CONFIG_SCSI_BNX2_ISCSI=m
-CONFIG_SCSI_BNX2X_FCOE=m
-CONFIG_BE2ISCSI=m
-CONFIG_CXLFLASH=m
-# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
-CONFIG_SCSI_HPSA=m
-CONFIG_SCSI_3W_9XXX=m
-CONFIG_SCSI_3W_SAS=m
-# CONFIG_SCSI_ACARD is not set
-CONFIG_SCSI_AACRAID=m
-# CONFIG_SCSI_AIC7XXX is not set
-# CONFIG_SCSI_AIC7XXX_OLD is not set
-CONFIG_SCSI_AIC79XX=m
-CONFIG_AIC79XX_CMDS_PER_DEVICE=4
-CONFIG_AIC79XX_RESET_DELAY_MS=15000
-# CONFIG_AIC79XX_DEBUG_ENABLE is not set
-CONFIG_AIC79XX_DEBUG_MASK=0
-# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
-# CONFIG_SCSI_AIC94XX is not set
-CONFIG_SCSI_MVSAS=m
-# CONFIG_SCSI_MVSAS_DEBUG is not set
-CONFIG_SCSI_MVSAS_TASKLET=y
-CONFIG_SCSI_MVUMI=m
-CONFIG_SCSI_ARCMSR=m
-# CONFIG_MEGARAID_NEWGEN is not set
-# CONFIG_MEGARAID_LEGACY is not set
-CONFIG_MEGARAID_SAS=m
-CONFIG_SCSI_MPT2SAS=m
-CONFIG_SCSI_MPT3SAS=m
-CONFIG_SCSI_MPT2SAS_MAX_SGE=128
-CONFIG_SCSI_MPT3SAS_MAX_SGE=128
-CONFIG_SCSI_SMARTPQI=m
-CONFIG_SCSI_UFSHCD=m
-CONFIG_SCSI_UFSHCD_PCI=m
-# CONFIG_SCSI_UFSHCD_PLATFORM is not set
-CONFIG_SCSI_HPTIOP=m
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-# CONFIG_SCSI_DMX3191D is not set
-# CONFIG_SCSI_EATA is not set
-# CONFIG_SCSI_FUTURE_DOMAIN is not set
-# CONFIG_SCSI_GDTH is not set
-# CONFIG_SCSI_IPS is not set
-CONFIG_SCSI_IBMVSCSI=m
-CONFIG_SCSI_IBMVSCSIS=m
-CONFIG_SCSI_IBMVFC=m
-CONFIG_SCSI_IBMVFC_TRACE=y
-CONFIG_SCSI_INITIO=m
-# CONFIG_SCSI_INIA100 is not set
-# CONFIG_SCSI_PPA is not set
-# CONFIG_SCSI_IMM is not set
-CONFIG_SCSI_STEX=m
-# CONFIG_SCSI_SYM53C8XX_2 is not set
-CONFIG_SCSI_IPR=m
-CONFIG_SCSI_IPR_TRACE=y
-CONFIG_SCSI_IPR_DUMP=y
-# CONFIG_SCSI_QLOGIC_1280 is not set
-CONFIG_SCSI_QLA_FC=m
-CONFIG_TCM_QLA2XXX=m
-# CONFIG_TCM_QLA2XXX_DEBUG is not set
-CONFIG_SCSI_QLA_ISCSI=m
-CONFIG_QEDI=m
-CONFIG_QEDF=m
-CONFIG_SCSI_LPFC=m
-# CONFIG_SCSI_LPFC_DEBUG_FS is not set
-# CONFIG_SCSI_DC395x is not set
-# CONFIG_SCSI_DC390T is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_SCSI_PMCRAID=m
-CONFIG_SCSI_PM8001=m
-CONFIG_SCSI_SRP=m
-CONFIG_SCSI_BFA_FC=m
-CONFIG_SCSI_VIRTIO=m
-# CONFIG_SCSI_CHELSIO_FCOE is not set
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=m
-# CONFIG_ATA_NONSTANDARD is not set
-CONFIG_ATA_VERBOSE_ERROR=y
-CONFIG_SATA_PMP=y
-
-#
-# Controllers with non-SFF native interface
-#
-CONFIG_SATA_AHCI=m
-CONFIG_SATA_AHCI_PLATFORM=m
-# CONFIG_SATA_INIC162X is not set
-CONFIG_SATA_ACARD_AHCI=m
-CONFIG_SATA_SIL24=m
-CONFIG_ATA_SFF=y
-
-#
-# SFF controllers with custom DMA interface
-#
-CONFIG_PDC_ADMA=m
-CONFIG_SATA_QSTOR=m
-CONFIG_SATA_SX4=m
-CONFIG_ATA_BMDMA=y
-
-#
-# SATA SFF controllers with BMDMA
-#
-CONFIG_ATA_PIIX=m
-# CONFIG_SATA_HIGHBANK is not set
-CONFIG_SATA_MV=m
-CONFIG_SATA_NV=m
-CONFIG_SATA_PROMISE=m
-CONFIG_SATA_SIL=m
-CONFIG_SATA_SIS=m
-CONFIG_SATA_SVW=m
-CONFIG_SATA_ULI=m
-CONFIG_SATA_VIA=m
-CONFIG_SATA_VITESSE=m
-
-#
-# PATA SFF controllers with BMDMA
-#
-CONFIG_PATA_ALI=m
-CONFIG_PATA_AMD=m
-CONFIG_PATA_ARASAN_CF=m
-CONFIG_PATA_ARTOP=m
-CONFIG_PATA_ATIIXP=m
-CONFIG_PATA_ATP867X=m
-CONFIG_PATA_CMD64X=m
-# CONFIG_PATA_CS5520 is not set
-# CONFIG_PATA_CS5530 is not set
-CONFIG_PATA_CS5536=m
-# CONFIG_PATA_CYPRESS is not set
-# CONFIG_PATA_EFAR is not set
-CONFIG_PATA_HPT366=m
-CONFIG_PATA_HPT37X=m
-CONFIG_PATA_HPT3X2N=m
-CONFIG_PATA_HPT3X3=m
-# CONFIG_PATA_HPT3X3_DMA is not set
-CONFIG_PATA_IT8213=m
-CONFIG_PATA_IT821X=m
-CONFIG_PATA_JMICRON=m
-CONFIG_PATA_MARVELL=m
-CONFIG_PATA_NETCELL=m
-CONFIG_PATA_NINJA32=m
-# CONFIG_PATA_NS87415 is not set
-CONFIG_PATA_OLDPIIX=m
-# CONFIG_PATA_OPTIDMA is not set
-CONFIG_PATA_PDC2027X=m
-CONFIG_PATA_PDC_OLD=m
-# CONFIG_PATA_RADISYS is not set
-CONFIG_PATA_RDC=m
-# CONFIG_PATA_SC1200 is not set
-CONFIG_PATA_SCH=m
-CONFIG_PATA_SERVERWORKS=m
-CONFIG_PATA_SIL680=m
-CONFIG_PATA_SIS=m
-CONFIG_PATA_TOSHIBA=m
-# CONFIG_PATA_TRIFLEX is not set
-CONFIG_PATA_VIA=m
-# CONFIG_PATA_WINBOND is not set
-
-#
-# PIO-only SFF controllers
-#
-# CONFIG_PATA_CMD640_PCI is not set
-# CONFIG_PATA_MPIIX is not set
-# CONFIG_PATA_NS87410 is not set
-# CONFIG_PATA_OPTI is not set
-CONFIG_PATA_PLATFORM=m
-CONFIG_PATA_OF_PLATFORM=m
-# CONFIG_PATA_RZ1000 is not set
-
-#
-# Generic fallback / legacy drivers
-#
-CONFIG_ATA_GENERIC=m
-# CONFIG_PATA_LEGACY is not set
-CONFIG_MD=y
-CONFIG_BLK_DEV_MD=y
-CONFIG_MD_AUTODETECT=y
-CONFIG_MD_LINEAR=m
-CONFIG_MD_RAID0=m
-CONFIG_MD_RAID1=m
-CONFIG_MD_RAID10=m
-CONFIG_MD_RAID456=m
-# CONFIG_MD_MULTIPATH is not set
-CONFIG_MD_FAULTY=m
-# CONFIG_BCACHE is not set
-CONFIG_BLK_DEV_DM_BUILTIN=y
-CONFIG_BLK_DEV_DM=m
-# CONFIG_DM_MQ_DEFAULT is not set
-CONFIG_DM_DEBUG=y
-CONFIG_DM_BUFIO=m
-# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
-CONFIG_DM_BIO_PRISON=m
-CONFIG_DM_PERSISTENT_DATA=m
-CONFIG_DM_CRYPT=m
-CONFIG_DM_SNAPSHOT=m
-CONFIG_DM_THIN_PROVISIONING=m
-CONFIG_DM_CACHE=m
-CONFIG_DM_CACHE_SMQ=m
-CONFIG_DM_ERA=m
-CONFIG_DM_MIRROR=m
-CONFIG_DM_LOG_USERSPACE=m
-CONFIG_DM_RAID=m
-CONFIG_DM_ZERO=m
-CONFIG_DM_MULTIPATH=m
-CONFIG_DM_MULTIPATH_QL=m
-CONFIG_DM_MULTIPATH_ST=m
-CONFIG_DM_DELAY=m
-CONFIG_DM_UEVENT=y
-CONFIG_DM_FLAKEY=m
-CONFIG_DM_VERITY=m
-CONFIG_DM_SWITCH=m
-CONFIG_DM_LOG_WRITES=m
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_TCM_USER2=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-CONFIG_ISCSI_TARGET_CXGB4=m
-# CONFIG_SBP_TARGET is not set
-CONFIG_FUSION=y
-CONFIG_FUSION_SPI=m
-# CONFIG_FUSION_FC is not set
-CONFIG_FUSION_SAS=m
-CONFIG_FUSION_MAX_SGE=128
-CONFIG_FUSION_CTL=m
-CONFIG_FUSION_LOGGING=y
-
-#
-# IEEE 1394 (FireWire) support
-#
-CONFIG_FIREWIRE=m
-CONFIG_FIREWIRE_OHCI=m
-CONFIG_FIREWIRE_SBP2=m
-CONFIG_FIREWIRE_NET=m
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-CONFIG_MACINTOSH_DRIVERS=y
-CONFIG_MAC_EMUMOUSEBTN=y
-# CONFIG_WINDFARM is not set
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-CONFIG_BONDING=m
-CONFIG_DUMMY=m
-# CONFIG_EQUALIZER is not set
-CONFIG_NET_FC=y
-CONFIG_MII=m
-CONFIG_IFB=m
-CONFIG_NET_TEAM=m
-CONFIG_NET_TEAM_MODE_BROADCAST=m
-CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
-CONFIG_NET_TEAM_MODE_RANDOM=m
-CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
-CONFIG_NET_TEAM_MODE_LOADBALANCE=m
-CONFIG_MACVLAN=m
-CONFIG_MACVTAP=m
-CONFIG_VXLAN=m
-CONFIG_GENEVE=m
-CONFIG_MACSEC=m
-CONFIG_NETCONSOLE=m
-CONFIG_NETCONSOLE_DYNAMIC=y
-CONFIG_NETPOLL=y
-CONFIG_NET_POLL_CONTROLLER=y
-CONFIG_TUN=m
-CONFIG_TUN_VNET_CROSS_LE=y
-CONFIG_VETH=m
-CONFIG_VIRTIO_NET=m
-CONFIG_NLMON=m
-CONFIG_VSOCKMON=m
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_VHOST_NET=m
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST_RING=m
-CONFIG_VHOST=m
-CONFIG_VHOST_CROSS_ENDIAN_LEGACY=y
-
-#
-# Distributed Switch Architecture drivers
-#
-# CONFIG_NET_DSA_MV88E6XXX is not set
-# CONFIG_NET_DSA_MV88E6060 is not set
-# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
-# CONFIG_NET_DSA_MV88E6131 is not set
-# CONFIG_NET_DSA_MV88E6123_61_65 is not set
-CONFIG_ETHERNET=y
-CONFIG_MDIO=m
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
-CONFIG_NET_VENDOR_AMAZON=y
-CONFIG_NET_VENDOR_AMD=y
-CONFIG_AMD8111_ETH=m
-CONFIG_PCNET32=m
-# CONFIG_AMD_XGBE_HAVE_ECC is not set
-CONFIG_NET_VENDOR_AQUANTIA=y
-CONFIG_NET_VENDOR_ATHEROS=y
-CONFIG_ATL2=m
-CONFIG_ATL1=m
-CONFIG_ATL1E=m
-CONFIG_ATL1C=m
-CONFIG_ALX=m
-CONFIG_NET_CADENCE=y
-CONFIG_ARM_AT91_ETHER=m
-CONFIG_MACB=m
-CONFIG_NET_VENDOR_BROADCOM=y
-CONFIG_B44=m
-CONFIG_B44_PCI_AUTOSELECT=y
-CONFIG_B44_PCICORE_AUTOSELECT=y
-CONFIG_B44_PCI=y
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-CONFIG_TIGON3=m
-CONFIG_TIGON3_HWMON=y
-CONFIG_BNX2X=m
-CONFIG_BNX2X_SRIOV=y
-CONFIG_BNXT=m
-CONFIG_BNXT_SRIOV=y
-CONFIG_BNXT_FLOWER_OFFLOAD=y
-CONFIG_BNXT_DCB=y
-CONFIG_BNXT_HWMON=y
-CONFIG_NET_VENDOR_BROCADE=y
-CONFIG_BNA=m
-CONFIG_NET_CALXEDA_XGMAC=m
-CONFIG_NET_VENDOR_CAVIUM=y
-CONFIG_LIQUIDIO=m
-CONFIG_LIQUIDIO_VF=m
-CONFIG_NET_VENDOR_CHELSIO=y
-# CONFIG_CHELSIO_T1 is not set
-CONFIG_CHELSIO_T3=m
-CONFIG_CHELSIO_T4=m
-# CONFIG_CHELSIO_T4_DCB is not set
-CONFIG_CHELSIO_T4VF=m
-CONFIG_CHELSIO_LIB=m
-CONFIG_NET_VENDOR_CISCO=y
-CONFIG_ENIC=m
-CONFIG_DNET=m
-CONFIG_NET_VENDOR_DEC=y
-CONFIG_NET_TULIP=y
-CONFIG_DE2104X=m
-CONFIG_DE2104X_DSL=0
-CONFIG_TULIP=m
-# CONFIG_TULIP_MWI is not set
-CONFIG_TULIP_MMIO=y
-# CONFIG_TULIP_NAPI is not set
-CONFIG_DE4X5=m
-CONFIG_WINBOND_840=m
-CONFIG_DM9102=m
-CONFIG_ULI526X=m
-CONFIG_PCMCIA_XIRCOM=m
-# CONFIG_NET_VENDOR_DLINK is not set
-CONFIG_NET_VENDOR_EMULEX=y
-CONFIG_BE2NET=m
-CONFIG_BE2NET_HWMON=y
-# CONFIG_NET_VENDOR_EXAR is not set
-CONFIG_NET_VENDOR_GOOGLE=y
-CONFIG_GVE=m
-# CONFIG_NET_VENDOR_HP is not set
-CONFIG_NET_VENDOR_IBM=y
-CONFIG_IBMVETH=m
-# CONFIG_IBM_EMAC_ZMII is not set
-# CONFIG_IBM_EMAC_RGMII is not set
-# CONFIG_IBM_EMAC_TAH is not set
-# CONFIG_IBM_EMAC_EMAC4 is not set
-# CONFIG_IBM_EMAC_NO_FLOW_CTRL is not set
-# CONFIG_IBM_EMAC_MAL_CLR_ICINTSTAT is not set
-# CONFIG_IBM_EMAC_MAL_COMMON_ERR is not set
-CONFIG_EHEA=m
-CONFIG_IBMVNIC=m
-CONFIG_NET_VENDOR_INTEL=y
-# CONFIG_E100 is not set
-CONFIG_E1000=m
-CONFIG_E1000E=m
-CONFIG_IGB=m
-CONFIG_IGB_HWMON=y
-CONFIG_IGBVF=m
-# CONFIG_IXGB is not set
-CONFIG_IXGBE=m
-CONFIG_IXGBE_HWMON=y
-CONFIG_IXGBE_DCB=y
-CONFIG_IXGBEVF=m
-CONFIG_I40E=m
-CONFIG_I40E_VXLAN=y
-CONFIG_I40E_DCB=y
-CONFIG_IAVF=m
-CONFIG_I40EVF=m
-CONFIG_ICE=m
-CONFIG_FM10K=m
-CONFIG_IGC=m
-# CONFIG_NET_VENDOR_I825XX is not set
-# CONFIG_IP1000 is not set
-CONFIG_JME=m
-CONFIG_NET_VENDOR_MARVELL=y
-CONFIG_MVMDIO=m
-CONFIG_SKGE=m
-# CONFIG_SKGE_DEBUG is not set
-CONFIG_SKGE_GENESIS=y
-CONFIG_SKY2=m
-# CONFIG_SKY2_DEBUG is not set
-CONFIG_NET_VENDOR_MELLANOX=y
-CONFIG_MLX4_EN=m
-CONFIG_MLX4_EN_DCB=y
-CONFIG_MLX4_CORE=m
-CONFIG_MLX4_DEBUG=y
-CONFIG_MLX4_CORE_GEN2=y
-CONFIG_MLX5_CORE=m
-# CONFIG_MLX5_FPGA is not set
-CONFIG_MLX5_CORE_EN=y
-CONFIG_MLX5_EN_ARFS=y
-CONFIG_MLX5_EN_RXNFC=y
-CONFIG_MLX5_MPFS=y
-CONFIG_MLX5_ESWITCH=y
-CONFIG_MLX5_CORE_EN_DCB=y
-CONFIG_MLX5_CORE_IPOIB=y
-CONFIG_MLXSW_CORE=m
-CONFIG_MLXSW_CORE_HWMON=y
-CONFIG_MLXSW_CORE_THERMAL=y
-CONFIG_MLXSW_PCI=m
-CONFIG_MLXSW_I2C=m
-CONFIG_MLXSW_SWITCHIB=m
-CONFIG_MLXSW_SWITCHX2=m
-CONFIG_MLXSW_SPECTRUM=m
-CONFIG_MLXSW_SPECTRUM_DCB=y
-CONFIG_MLXSW_MINIMAL=m
-CONFIG_MLXFW=m
-# CONFIG_NET_VENDOR_MICREL is not set
-CONFIG_NET_VENDOR_MYRI=y
-CONFIG_MYRI10GE=m
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
-CONFIG_NET_VENDOR_NETRONOME=y
-CONFIG_NFP=m
-CONFIG_NFP_APP_FLOWER=y
-CONFIG_NFP_APP_ABM_NIC=y
-# CONFIG_NFP_DEBUG is not set
-# CONFIG_NET_VENDOR_NVIDIA is not set
-CONFIG_NET_VENDOR_OKI=y
-# CONFIG_PCH_GBE is not set
-CONFIG_ETHOC=m
-CONFIG_NET_PACKET_ENGINE=y
-# CONFIG_HAMACHI is not set
-# CONFIG_YELLOWFIN is not set
-CONFIG_NET_VENDOR_QLOGIC=y
-CONFIG_QLA3XXX=m
-CONFIG_QLCNIC=m
-CONFIG_QLCNIC_SRIOV=y
-CONFIG_QLCNIC_DCB=y
-# CONFIG_QLCNIC_VXLAN is not set
-CONFIG_QLCNIC_HWMON=y
-CONFIG_QLGE=m
-CONFIG_NETXEN_NIC=m
-CONFIG_QED=m
-CONFIG_QED_LL2=y
-CONFIG_QED_SRIOV=y
-CONFIG_QEDE=m
-CONFIG_QED_RDMA=y
-CONFIG_QED_ISCSI=y
-CONFIG_QED_FCOE=y
-CONFIG_QED_OOO=y
-CONFIG_NET_VENDOR_REALTEK=y
-CONFIG_8139CP=m
-CONFIG_8139TOO=m
-# CONFIG_8139TOO_PIO is not set
-# CONFIG_8139TOO_TUNE_TWISTER is not set
-CONFIG_8139TOO_8129=y
-# CONFIG_8139_OLD_RX_RESET is not set
-CONFIG_R8169=m
-# CONFIG_NET_VENDOR_RDC is not set
-CONFIG_NET_VENDOR_ROCKER=y
-CONFIG_ROCKER=m
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
-CONFIG_NET_VENDOR_SOLARFLARE=y
-CONFIG_SFC=m
-CONFIG_SFC_MTD=y
-CONFIG_SFC_MCDI_MON=y
-CONFIG_SFC_SRIOV=y
-CONFIG_SFC_MCDI_LOGGING=y
-CONFIG_SFC_FALCON=m
-CONFIG_SFC_FALCON_MTD=y
-CONFIG_NET_VENDOR_SMSC=y
-CONFIG_EPIC100=m
-CONFIG_SMSC9420=m
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-CONFIG_NET_VENDOR_TI=y
-CONFIG_TLAN=m
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_NET_VENDOR_WIZNET is not set
-# CONFIG_NET_VENDOR_XILINX is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-CONFIG_PHYLIB=y
-
-#
-# MII PHY device drivers
-#
-CONFIG_AT803X_PHY=m
-CONFIG_AMD_PHY=m
-CONFIG_MARVELL_PHY=m
-CONFIG_DAVICOM_PHY=m
-CONFIG_QSEMI_PHY=m
-CONFIG_LXT_PHY=m
-CONFIG_CICADA_PHY=m
-CONFIG_VITESSE_PHY=m
-CONFIG_SMSC_PHY=m
-CONFIG_BROADCOM_PHY=m
-CONFIG_BCM87XX_PHY=m
-CONFIG_ICPLUS_PHY=m
-CONFIG_REALTEK_PHY=y
-CONFIG_NATIONAL_PHY=m
-CONFIG_STE10XP=m
-CONFIG_LSI_ET1011C_PHY=m
-CONFIG_MICREL_PHY=m
-CONFIG_FIXED_PHY=y
-CONFIG_MDIO_BITBANG=m
-CONFIG_MDIO_GPIO=m
-# CONFIG_MDIO_BUS_MUX_GPIO is not set
-# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
-# CONFIG_PLIP is not set
-CONFIG_PPP=m
-CONFIG_PPP_BSDCOMP=m
-CONFIG_PPP_DEFLATE=m
-CONFIG_PPP_FILTER=y
-CONFIG_PPP_MPPE=m
-CONFIG_PPP_MULTILINK=y
-CONFIG_PPPOATM=m
-CONFIG_PPPOE=m
-CONFIG_PPTP=m
-CONFIG_PPPOL2TP=m
-CONFIG_PPP_ASYNC=m
-CONFIG_PPP_SYNC_TTY=m
-CONFIG_SLIP=m
-CONFIG_SLHC=m
-CONFIG_SLIP_COMPRESSED=y
-CONFIG_SLIP_SMART=y
-# CONFIG_SLIP_MODE_SLIP6 is not set
-CONFIG_USB_NET_DRIVERS=y
-CONFIG_USB_CATC=m
-CONFIG_USB_KAWETH=m
-CONFIG_USB_PEGASUS=m
-CONFIG_USB_RTL8150=m
-CONFIG_USB_RTL8152=m
-# CONFIG_USB_LAN78XX is not set
-CONFIG_USB_USBNET=m
-CONFIG_USB_NET_AX8817X=m
-CONFIG_USB_NET_AX88179_178A=m
-CONFIG_USB_NET_CDCETHER=m
-CONFIG_USB_NET_CDC_EEM=m
-CONFIG_USB_NET_CDC_NCM=m
-CONFIG_USB_NET_HUAWEI_CDC_NCM=m
-CONFIG_USB_NET_CDC_MBIM=m
-CONFIG_USB_NET_DM9601=m
-# CONFIG_USB_NET_SR9700 is not set
-# CONFIG_USB_NET_SR9800 is not set
-CONFIG_USB_NET_SMSC75XX=m
-CONFIG_USB_NET_SMSC95XX=m
-CONFIG_USB_NET_GL620A=m
-CONFIG_USB_NET_NET1080=m
-CONFIG_USB_NET_PLUSB=m
-CONFIG_USB_NET_MCS7830=m
-CONFIG_USB_NET_RNDIS_HOST=m
-CONFIG_USB_NET_CDC_SUBSET_ENABLE=m
-CONFIG_USB_NET_CDC_SUBSET=m
-CONFIG_USB_ALI_M5632=y
-CONFIG_USB_AN2720=y
-CONFIG_USB_BELKIN=y
-CONFIG_USB_ARMLINUX=y
-CONFIG_USB_EPSON2888=y
-CONFIG_USB_KC2190=y
-CONFIG_USB_NET_ZAURUS=m
-CONFIG_USB_NET_CX82310_ETH=m
-CONFIG_USB_NET_KALMIA=m
-CONFIG_USB_NET_QMI_WWAN=m
-CONFIG_USB_HSO=m
-CONFIG_USB_NET_INT51X1=m
-CONFIG_USB_IPHETH=m
-CONFIG_USB_SIERRA_NET=m
-CONFIG_USB_VL600=m
-# CONFIG_USB_NET_CH9200 is not set
-CONFIG_WLAN=y
-# CONFIG_LIBERTAS_THINFIRM is not set
-# CONFIG_AIRO is not set
-# CONFIG_ATMEL is not set
-# CONFIG_AT76C50X_USB is not set
-# CONFIG_PRISM54 is not set
-# CONFIG_USB_ZD1201 is not set
-# CONFIG_USB_NET_RNDIS_WLAN is not set
-# CONFIG_ADM8211 is not set
-CONFIG_MAC80211_HWSIM=m
-CONFIG_ATH_COMMON=m
-CONFIG_WLAN_VENDOR_ATH=y
-# CONFIG_ATH_DEBUG is not set
-# CONFIG_ATH5K is not set
-# CONFIG_ATH5K_PCI is not set
-CONFIG_ATH9K_HW=m
-CONFIG_ATH9K_COMMON=m
-CONFIG_ATH9K_COMMON_DEBUG=y
-CONFIG_ATH9K_BTCOEX_SUPPORT=y
-CONFIG_ATH9K=m
-CONFIG_ATH9K_PCI=y
-CONFIG_ATH9K_AHB=y
-CONFIG_ATH9K_DEBUGFS=y
-# CONFIG_ATH9K_STATION_STATISTICS is not set
-# CONFIG_ATH9K_DYNACK is not set
-CONFIG_ATH9K_WOW=y
-CONFIG_ATH9K_RFKILL=y
-# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
-CONFIG_ATH9K_PCOEM=y
-CONFIG_ATH9K_HTC=m
-# CONFIG_ATH9K_HTC_DEBUGFS is not set
-# CONFIG_ATH9K_HWRNG is not set
-CONFIG_CARL9170=m
-CONFIG_CARL9170_LEDS=y
-# CONFIG_CARL9170_DEBUGFS is not set
-CONFIG_CARL9170_WPC=y
-# CONFIG_CARL9170_HWRNG is not set
-# CONFIG_ATH6KL is not set
-# CONFIG_AR5523 is not set
-CONFIG_WIL6210=m
-CONFIG_WIL6210_ISR_COR=y
-CONFIG_WIL6210_TRACING=y
-CONFIG_WIL6210_DEBUGFS=y
-CONFIG_ATH10K=m
-CONFIG_ATH10K_PCI=m
-# CONFIG_ATH10K_SDIO is not set
-# CONFIG_ATH10K_USB is not set
-# CONFIG_ATH10K_DEBUG is not set
-CONFIG_ATH10K_DEBUGFS=y
-# CONFIG_ATH10K_TRACING is not set
-# CONFIG_B43 is not set
-# CONFIG_B43LEGACY is not set
-CONFIG_WLAN_VENDOR_BROADCOM=y
-CONFIG_BRCMUTIL=m
-CONFIG_BRCMSMAC=m
-CONFIG_BRCMFMAC=m
-CONFIG_BRCMFMAC_PROTO_BCDC=y
-CONFIG_BRCMFMAC_PROTO_MSGBUF=y
-CONFIG_BRCMFMAC_SDIO=y
-CONFIG_BRCMFMAC_USB=y
-CONFIG_BRCMFMAC_PCIE=y
-# CONFIG_BRCM_TRACING is not set
-# CONFIG_BRCMDBG is not set
-# CONFIG_HOSTAP is not set
-# CONFIG_IPW2100 is not set
-# CONFIG_IPW2200 is not set
-CONFIG_WLAN_VENDOR_INTEL=y
-CONFIG_IWLEGACY=m
-CONFIG_IWL4965=m
-CONFIG_IWL3945=m
-
-#
-# iwl3945 / iwl4965 Debugging Options
-#
-CONFIG_IWLEGACY_DEBUG=y
-CONFIG_IWLEGACY_DEBUGFS=y
-CONFIG_IWLWIFI=m
-CONFIG_IWLWIFI_LEDS=y
-CONFIG_IWLDVM=m
-CONFIG_IWLMVM=m
-CONFIG_IWLWIFI_OPMODE_MODULAR=y
-# CONFIG_IWLWIFI_BCAST_FILTERING is not set
-
-#
-# Debugging Options
-#
-# CONFIG_IWLWIFI_DEBUG is not set
-CONFIG_IWLWIFI_DEBUGFS=y
-# CONFIG_IWLWIFI_DEVICE_TRACING is not set
-# CONFIG_LIBERTAS is not set
-CONFIG_WLAN_VENDOR_MARVELL=y
-CONFIG_MWIFIEX=m
-CONFIG_MWIFIEX_SDIO=m
-CONFIG_MWIFIEX_PCIE=m
-CONFIG_MWIFIEX_USB=m
-CONFIG_MWL8K=m
-# CONFIG_HERMES is not set
-# CONFIG_P54_COMMON is not set
-CONFIG_WLAN_VENDOR_RALINK=y
-CONFIG_RT2X00=m
-# CONFIG_RT2400PCI is not set
-# CONFIG_RT2500PCI is not set
-CONFIG_RT61PCI=m
-CONFIG_RT2800PCI=m
-CONFIG_RT2800PCI_RT33XX=y
-CONFIG_RT2800PCI_RT35XX=y
-CONFIG_RT2800PCI_RT53XX=y
-CONFIG_RT2800PCI_RT3290=y
-# CONFIG_RT2500USB is not set
-CONFIG_RT73USB=m
-CONFIG_RT2800USB=m
-CONFIG_RT2800USB_RT33XX=y
-CONFIG_RT2800USB_RT35XX=y
-CONFIG_RT2800USB_RT3573=y
-CONFIG_RT2800USB_RT53XX=y
-CONFIG_RT2800USB_RT55XX=y
-CONFIG_RT2800USB_UNKNOWN=y
-CONFIG_RT2800_LIB=m
-CONFIG_RT2800_LIB_MMIO=m
-CONFIG_RT2X00_LIB_MMIO=m
-CONFIG_RT2X00_LIB_PCI=m
-CONFIG_RT2X00_LIB_USB=m
-CONFIG_RT2X00_LIB=m
-CONFIG_RT2X00_LIB_FIRMWARE=y
-CONFIG_RT2X00_LIB_CRYPTO=y
-CONFIG_RT2X00_LIB_LEDS=y
-CONFIG_RT2X00_LIB_DEBUGFS=y
-# CONFIG_RT2X00_DEBUG is not set
-CONFIG_WLAN_VENDOR_REALTEK=y
-# CONFIG_RTL8180 is not set
-CONFIG_RTL8187=m
-CONFIG_RTL8187_LEDS=y
-CONFIG_RTL_CARDS=m
-CONFIG_RTL8192CE=m
-CONFIG_RTL8192SE=m
-CONFIG_RTL8192DE=m
-CONFIG_RTL8723AE=m
-CONFIG_RTL8723BE=m
-CONFIG_RTL8188EE=m
-CONFIG_RTL8192EE=m
-CONFIG_RTL8821AE=m
-CONFIG_RTL8192CU=m
-CONFIG_RTLWIFI=m
-CONFIG_RTLWIFI_PCI=m
-CONFIG_RTLWIFI_USB=m
-# CONFIG_RTLWIFI_DEBUG is not set
-CONFIG_RTL8192C_COMMON=m
-CONFIG_RTL8723_COMMON=m
-CONFIG_RTLBTCOEXIST=m
-CONFIG_RTW88=m
-CONFIG_RTW88_CORE=m
-CONFIG_RTW88_PCI=m
-CONFIG_RTW88_8822BE=y
-CONFIG_RTW88_8822CE=y
-# CONFIG_RTW88_DEBUG is not set
-# CONFIG_RTW88_DEBUGFS is not set
-# CONFIG_WL_TI is not set
-# CONFIG_ZD1211RW is not set
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-CONFIG_WAN=y
-CONFIG_HDLC=m
-CONFIG_HDLC_RAW=m
-# CONFIG_HDLC_RAW_ETH is not set
-CONFIG_HDLC_CISCO=m
-CONFIG_HDLC_FR=m
-CONFIG_HDLC_PPP=m
-
-#
-# X.25/LAPB support is disabled
-#
-# CONFIG_PCI200SYN is not set
-# CONFIG_WANXL is not set
-# CONFIG_PC300TOO is not set
-# CONFIG_FARSYNC is not set
-# CONFIG_DSCC4 is not set
-CONFIG_DLCI=m
-CONFIG_DLCI_MAX=8
-CONFIG_IEEE802154_DRIVERS=m
-CONFIG_IEEE802154_FAKELB=m
-# CONFIG_IEEE802154_ATUSB is not set
-# CONFIG_VMXNET3 is not set
-CONFIG_NET_FAILOVER=m
-CONFIG_ISDN=y
-CONFIG_ISDN_I4L=m
-CONFIG_ISDN_PPP=y
-CONFIG_ISDN_PPP_VJ=y
-CONFIG_ISDN_MPP=y
-CONFIG_IPPP_FILTER=y
-# CONFIG_ISDN_PPP_BSDCOMP is not set
-CONFIG_ISDN_AUDIO=y
-CONFIG_ISDN_TTY_FAX=y
-
-#
-# ISDN feature submodules
-#
-CONFIG_ISDN_DIVERSION=m
-
-#
-# ISDN4Linux hardware drivers
-#
-
-#
-# Passive cards
-#
-CONFIG_ISDN_DRV_HISAX=m
-
-#
-# D-channel protocol features
-#
-CONFIG_HISAX_EURO=y
-CONFIG_DE_AOC=y
-CONFIG_HISAX_NO_SENDCOMPLETE=y
-CONFIG_HISAX_NO_LLC=y
-CONFIG_HISAX_NO_KEYPAD=y
-CONFIG_HISAX_1TR6=y
-CONFIG_HISAX_NI1=y
-CONFIG_HISAX_MAX_CARDS=8
-
-#
-# HiSax supported cards
-#
-CONFIG_HISAX_16_3=y
-CONFIG_HISAX_S0BOX=y
-CONFIG_HISAX_AVM_A1_PCMCIA=y
-CONFIG_HISAX_ELSA=y
-CONFIG_HISAX_DIEHLDIVA=y
-CONFIG_HISAX_SEDLBAUER=y
-CONFIG_HISAX_NICCY=y
-CONFIG_HISAX_BKM_A4T=y
-CONFIG_HISAX_SCT_QUADRO=y
-CONFIG_HISAX_GAZEL=y
-CONFIG_HISAX_W6692=y
-CONFIG_HISAX_HFC_SX=y
-# CONFIG_HISAX_DEBUG is not set
-
-#
-# HiSax PCMCIA card service modules
-#
-
-#
-# HiSax sub driver modules
-#
-CONFIG_HISAX_ST5481=m
-# CONFIG_HISAX_HFCUSB is not set
-CONFIG_HISAX_HFC4S8S=m
-CONFIG_HISAX_FRITZ_PCIPNP=m
-
-#
-# Active cards
-#
-CONFIG_ISDN_CAPI=m
-CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
-# CONFIG_CAPI_TRACE is not set
-CONFIG_ISDN_CAPI_MIDDLEWARE=y
-CONFIG_ISDN_CAPI_CAPI20=m
-CONFIG_ISDN_CAPI_CAPIDRV=m
-
-#
-# CAPI hardware drivers
-#
-CONFIG_CAPI_AVM=y
-CONFIG_ISDN_DRV_AVMB1_B1PCI=m
-CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
-CONFIG_ISDN_DRV_AVMB1_T1PCI=m
-CONFIG_ISDN_DRV_AVMB1_C4=m
-# CONFIG_CAPI_EICON is not set
-CONFIG_ISDN_DRV_GIGASET=m
-CONFIG_GIGASET_CAPI=y
-# CONFIG_GIGASET_I4L is not set
-# CONFIG_GIGASET_DUMMYLL is not set
-CONFIG_GIGASET_BASE=m
-CONFIG_GIGASET_M105=m
-CONFIG_GIGASET_M101=m
-# CONFIG_GIGASET_DEBUG is not set
-CONFIG_HYSDN=m
-CONFIG_HYSDN_CAPI=y
-CONFIG_MISDN=m
-CONFIG_MISDN_DSP=m
-CONFIG_MISDN_L1OIP=m
-
-#
-# mISDN hardware drivers
-#
-CONFIG_MISDN_HFCPCI=m
-CONFIG_MISDN_HFCMULTI=m
-CONFIG_MISDN_HFCUSB=m
-CONFIG_MISDN_AVMFRITZ=m
-CONFIG_MISDN_SPEEDFAX=m
-CONFIG_MISDN_INFINEON=m
-CONFIG_MISDN_W6692=m
-CONFIG_MISDN_NETJET=m
-CONFIG_MISDN_IPAC=m
-CONFIG_MISDN_ISAR=m
-CONFIG_ISDN_HDLC=m
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-CONFIG_INPUT_LEDS=y
-CONFIG_INPUT_FF_MEMLESS=y
-CONFIG_INPUT_POLLDEV=m
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-CONFIG_INPUT_MOUSEDEV=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
-CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
-# CONFIG_INPUT_JOYDEV is not set
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-CONFIG_INPUT_KEYBOARD=y
-# CONFIG_KEYBOARD_ADP5588 is not set
-# CONFIG_KEYBOARD_ADP5589 is not set
-CONFIG_KEYBOARD_ATKBD=y
-# CONFIG_KEYBOARD_QT1070 is not set
-# CONFIG_KEYBOARD_QT2160 is not set
-# CONFIG_KEYBOARD_LKKBD is not set
-# CONFIG_KEYBOARD_GPIO is not set
-# CONFIG_KEYBOARD_GPIO_POLLED is not set
-# CONFIG_KEYBOARD_TCA6416 is not set
-# CONFIG_KEYBOARD_TCA8418 is not set
-# CONFIG_KEYBOARD_MATRIX is not set
-# CONFIG_KEYBOARD_LM8323 is not set
-# CONFIG_KEYBOARD_LM8333 is not set
-# CONFIG_KEYBOARD_MAX7359 is not set
-# CONFIG_KEYBOARD_MCS is not set
-# CONFIG_KEYBOARD_MPR121 is not set
-# CONFIG_KEYBOARD_NEWTON is not set
-# CONFIG_KEYBOARD_OPENCORES is not set
-# CONFIG_KEYBOARD_STOWAWAY is not set
-# CONFIG_KEYBOARD_SUNKBD is not set
-# CONFIG_KEYBOARD_XTKBD is not set
-CONFIG_INPUT_MOUSE=y
-CONFIG_MOUSE_PS2=y
-CONFIG_MOUSE_PS2_ALPS=y
-CONFIG_MOUSE_PS2_LOGIPS2PP=y
-CONFIG_MOUSE_PS2_SYNAPTICS=y
-CONFIG_MOUSE_PS2_CYPRESS=y
-CONFIG_MOUSE_PS2_TRACKPOINT=y
-CONFIG_MOUSE_PS2_ELANTECH=y
-CONFIG_MOUSE_PS2_SENTELIC=y
-# CONFIG_MOUSE_PS2_TOUCHKIT is not set
-CONFIG_MOUSE_SERIAL=m
-CONFIG_MOUSE_APPLETOUCH=m
-CONFIG_MOUSE_BCM5974=m
-CONFIG_MOUSE_CYAPA=m
-CONFIG_MOUSE_VSXXXAA=m
-# CONFIG_MOUSE_GPIO is not set
-CONFIG_MOUSE_SYNAPTICS_I2C=m
-CONFIG_MOUSE_SYNAPTICS_USB=m
-# CONFIG_INPUT_JOYSTICK is not set
-CONFIG_INPUT_TABLET=y
-CONFIG_TABLET_USB_ACECAD=m
-CONFIG_TABLET_USB_AIPTEK=m
-CONFIG_TABLET_USB_GTCO=m
-# CONFIG_TABLET_USB_HANWANG is not set
-CONFIG_TABLET_USB_KBTAB=m
-CONFIG_TABLET_USB_WACOM=m
-CONFIG_INPUT_TOUCHSCREEN=y
-# CONFIG_TOUCHSCREEN_AD7879 is not set
-# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
-# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_BU21013 is not set
-# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
-# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
-# CONFIG_TOUCHSCREEN_DYNAPRO is not set
-# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
-# CONFIG_TOUCHSCREEN_EETI is not set
-# CONFIG_TOUCHSCREEN_EGALAX is not set
-# CONFIG_TOUCHSCREEN_FUJITSU is not set
-# CONFIG_TOUCHSCREEN_ILI210X is not set
-# CONFIG_TOUCHSCREEN_GUNZE is not set
-CONFIG_TOUCHSCREEN_ELO=m
-CONFIG_TOUCHSCREEN_WACOM_W8001=m
-CONFIG_TOUCHSCREEN_WACOM_I2C=m
-# CONFIG_TOUCHSCREEN_MAX11801 is not set
-# CONFIG_TOUCHSCREEN_MCS5000 is not set
-# CONFIG_TOUCHSCREEN_MMS114 is not set
-# CONFIG_TOUCHSCREEN_MTOUCH is not set
-# CONFIG_TOUCHSCREEN_INEXIO is not set
-# CONFIG_TOUCHSCREEN_MK712 is not set
-# CONFIG_TOUCHSCREEN_PENMOUNT is not set
-# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
-# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
-# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
-# CONFIG_TOUCHSCREEN_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_WM97XX is not set
-# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
-# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
-# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
-# CONFIG_TOUCHSCREEN_TSC2007 is not set
-# CONFIG_TOUCHSCREEN_ST1232 is not set
-# CONFIG_TOUCHSCREEN_TPS6507X is not set
-CONFIG_INPUT_MISC=y
-# CONFIG_INPUT_AD714X is not set
-# CONFIG_INPUT_BMA150 is not set
-# CONFIG_INPUT_PCSPKR is not set
-# CONFIG_INPUT_MMA8450 is not set
-# CONFIG_INPUT_MPU3050 is not set
-# CONFIG_INPUT_GP2A is not set
-# CONFIG_INPUT_GPIO_TILT_POLLED is not set
-CONFIG_INPUT_ATI_REMOTE2=m
-CONFIG_INPUT_KEYSPAN_REMOTE=m
-# CONFIG_INPUT_KXTJ9 is not set
-CONFIG_INPUT_POWERMATE=m
-CONFIG_INPUT_YEALINK=m
-CONFIG_INPUT_CM109=m
-CONFIG_INPUT_UINPUT=m
-# CONFIG_INPUT_PCF8574 is not set
-CONFIG_INPUT_PWM_BEEPER=m
-CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
-# CONFIG_INPUT_ADXL34X is not set
-# CONFIG_INPUT_IMS_PCU is not set
-# CONFIG_INPUT_CMA3000 is not set
-# CONFIG_RMI4_CORE is not set
-
-#
-# Hardware I/O ports
-#
-CONFIG_SERIO=y
-CONFIG_SERIO_I8042=y
-CONFIG_SERIO_SERPORT=y
-# CONFIG_SERIO_PARKBD is not set
-# CONFIG_SERIO_PCIPS2 is not set
-CONFIG_SERIO_LIBPS2=y
-CONFIG_SERIO_RAW=m
-# CONFIG_SERIO_XILINX_XPS_PS2 is not set
-CONFIG_SERIO_ALTERA_PS2=m
-# CONFIG_SERIO_PS2MULT is not set
-CONFIG_SERIO_ARC_PS2=m
-# CONFIG_SERIO_APBPS2 is not set
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_VT_CONSOLE_SLEEP=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_SERIAL_NONSTANDARD=y
-# CONFIG_ROCKETPORT is not set
-CONFIG_CYCLADES=m
-# CONFIG_CYZ_INTR is not set
-# CONFIG_MOXA_INTELLIO is not set
-# CONFIG_MOXA_SMARTIO is not set
-CONFIG_SYNCLINK=m
-CONFIG_SYNCLINKMP=m
-CONFIG_SYNCLINK_GT=m
-CONFIG_NOZOMI=m
-# CONFIG_ISI is not set
-CONFIG_N_HDLC=m
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=y
-# CONFIG_STALDRV is not set
-
-#
-# Serial drivers
-#
-CONFIG_SERIAL_8250=y
-# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_SERIAL_8250_DMA=y
-CONFIG_SERIAL_8250_PCI=y
-CONFIG_SERIAL_8250_NR_UARTS=32
-CONFIG_SERIAL_8250_RUNTIME_UARTS=4
-CONFIG_SERIAL_8250_EXTENDED=y
-CONFIG_SERIAL_8250_MANY_PORTS=y
-CONFIG_SERIAL_8250_SHARE_IRQ=y
-# CONFIG_SERIAL_8250_DETECT_IRQ is not set
-CONFIG_SERIAL_8250_RSA=y
-CONFIG_SERIAL_8250_FSL=y
-# CONFIG_SERIAL_8250_DW is not set
-
-#
-# Non-8250 serial port support
-#
-# CONFIG_SERIAL_KGDB_NMI is not set
-# CONFIG_SERIAL_MFD_HSU is not set
-CONFIG_SERIAL_CORE=y
-CONFIG_SERIAL_CORE_CONSOLE=y
-CONFIG_CONSOLE_POLL=y
-CONFIG_SERIAL_ICOM=m
-CONFIG_SERIAL_JSM=m
-CONFIG_SERIAL_OF_PLATFORM=m
-# CONFIG_SERIAL_SCCNXP is not set
-# CONFIG_SERIAL_TIMBERDALE is not set
-# CONFIG_SERIAL_ALTERA_JTAGUART is not set
-# CONFIG_SERIAL_ALTERA_UART is not set
-# CONFIG_SERIAL_PCH_UART is not set
-# CONFIG_SERIAL_XILINX_PS_UART is not set
-CONFIG_SERIAL_ARC=m
-CONFIG_SERIAL_ARC_NR_PORTS=1
-# CONFIG_SERIAL_RP2 is not set
-CONFIG_PRINTER=m
-# CONFIG_LP_CONSOLE is not set
-CONFIG_PPDEV=m
-CONFIG_HVC_DRIVER=y
-CONFIG_HVC_IRQ=y
-CONFIG_HVC_CONSOLE=y
-# CONFIG_HVC_OLD_HVSI is not set
-CONFIG_HVC_OPAL=y
-CONFIG_HVC_RTAS=y
-# CONFIG_HVC_UDBG is not set
-CONFIG_HVCS=m
-CONFIG_VIRTIO_CONSOLE=m
-CONFIG_IBM_BSR=m
-CONFIG_IPMI_HANDLER=m
-CONFIG_IPMI_PROC_INTERFACE=y
-CONFIG_IPMI_PANIC_EVENT=y
-# CONFIG_IPMI_PANIC_STRING is not set
-CONFIG_IPMI_DEVICE_INTERFACE=m
-CONFIG_IPMI_SI=m
-CONFIG_IPMI_SSIF=m
-# CONFIG_IPMI_POWERNV is not set
-CONFIG_IPMI_WATCHDOG=m
-CONFIG_IPMI_POWEROFF=m
-CONFIG_HW_RANDOM=y
-CONFIG_HW_RANDOM_TIMERIOMEM=m
-CONFIG_HW_RANDOM_VIRTIO=m
-CONFIG_HW_RANDOM_PSERIES=m
-CONFIG_HW_RANDOM_POWERNV=m
-# CONFIG_R3964 is not set
-# CONFIG_APPLICOM is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-CONFIG_HANGCHECK_TIMER=m
-CONFIG_TCG_TPM=y
-CONFIG_HW_RANDOM_TPM=y
-CONFIG_TCG_TIS_CORE=m
-CONFIG_TCG_TIS=m
-CONFIG_TCG_TIS_I2C_ATMEL=m
-CONFIG_TCG_TIS_I2C_INFINEON=m
-CONFIG_TCG_TIS_I2C_NUVOTON=m
-# CONFIG_TCG_ATMEL is not set
-CONFIG_TCG_IBMVTPM=y
-# CONFIG_TCG_VTPM_PROXY is not set
-CONFIG_TCG_TIS_ST33ZP24=m
-CONFIG_TCG_TIS_ST33ZP24_I2C=m
-CONFIG_DEVPORT=y
-CONFIG_HMC_DRV=m
-
-#
-# I2C support
-#
-CONFIG_I2C=m
-CONFIG_I2C_BOARDINFO=y
-CONFIG_I2C_COMPAT=y
-CONFIG_I2C_CHARDEV=m
-# CONFIG_I2C_MUX is not set
-CONFIG_I2C_HELPER_AUTO=y
-CONFIG_I2C_SMBUS=m
-CONFIG_I2C_ALGOBIT=m
-CONFIG_I2C_ALGOPCA=m
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-# CONFIG_I2C_AMD756 is not set
-# CONFIG_I2C_AMD8111 is not set
-# CONFIG_I2C_I801 is not set
-# CONFIG_I2C_ISCH is not set
-# CONFIG_I2C_PIIX4 is not set
-CONFIG_I2C_NFORCE2=m
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-# CONFIG_I2C_SIS96X is not set
-# CONFIG_I2C_VIA is not set
-# CONFIG_I2C_VIAPRO is not set
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_CBUS_GPIO is not set
-CONFIG_I2C_DESIGNWARE_CORE=m
-CONFIG_I2C_DESIGNWARE_PLATFORM=m
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_EG20T is not set
-# CONFIG_I2C_GPIO is not set
-# CONFIG_I2C_INTEL_MID is not set
-CONFIG_I2C_MPC=m
-# CONFIG_I2C_OCORES is not set
-CONFIG_I2C_PCA_PLATFORM=m
-# CONFIG_I2C_PXA_PCI is not set
-CONFIG_I2C_SIMTEC=m
-# CONFIG_I2C_XILINX is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-CONFIG_I2C_DIOLAN_U2C=m
-CONFIG_I2C_PARPORT=m
-CONFIG_I2C_PARPORT_LIGHT=m
-# CONFIG_I2C_TAOS_EVM is not set
-CONFIG_I2C_TINY_USB=m
-CONFIG_I2C_VIPERBOARD=m
-
-#
-# Other I2C/SMBus bus drivers
-#
-CONFIG_I2C_OPAL=m
-CONFIG_I2C_STUB=m
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-# CONFIG_SPI is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-CONFIG_PPS_CLIENT_PARPORT=m
-CONFIG_PPS_CLIENT_GPIO=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-CONFIG_DP83640_PHY=m
-CONFIG_PTP_1588_CLOCK_PCH=m
-CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
-CONFIG_ARCH_REQUIRE_GPIOLIB=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_DEVRES=y
-CONFIG_OF_GPIO=y
-# CONFIG_DEBUG_GPIO is not set
-CONFIG_GPIO_SYSFS=y
-
-#
-# Memory mapped GPIO drivers:
-#
-# CONFIG_GPIO_GENERIC_PLATFORM is not set
-# CONFIG_GPIO_SCH311X is not set
-# CONFIG_GPIO_TS5500 is not set
-# CONFIG_GPIO_XILINX is not set
-# CONFIG_GPIO_VX855 is not set
-# CONFIG_GPIO_GRGPIO is not set
-
-#
-# I2C GPIO expanders:
-#
-# CONFIG_GPIO_MAX7300 is not set
-# CONFIG_GPIO_MAX732X is not set
-CONFIG_GPIO_PCA953X=m
-CONFIG_GPIO_PCF857X=m
-# CONFIG_GPIO_ADP5588 is not set
-# CONFIG_GPIO_ADNP is not set
-
-#
-# PCI GPIO expanders:
-#
-# CONFIG_GPIO_AMD8111 is not set
-# CONFIG_GPIO_ML_IOH is not set
-# CONFIG_GPIO_RDC321X is not set
-
-#
-# SPI GPIO expanders:
-#
-# CONFIG_GPIO_MCP23S08 is not set
-
-#
-# AC97 GPIO expanders:
-#
-
-#
-# LPC GPIO expanders:
-#
-
-#
-# MODULbus GPIO expanders:
-#
-
-#
-# USB GPIO expanders:
-#
-CONFIG_GPIO_VIPERBOARD=m
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_PDA_POWER is not set
-# CONFIG_GENERIC_ADC_BATTERY is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-# CONFIG_BATTERY_DS2781 is not set
-# CONFIG_BATTERY_DS2782 is not set
-# CONFIG_BATTERY_SBS is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-# CONFIG_BATTERY_MAX17040 is not set
-# CONFIG_BATTERY_MAX17042 is not set
-# CONFIG_CHARGER_MAX8903 is not set
-# CONFIG_CHARGER_LP8727 is not set
-# CONFIG_CHARGER_GPIO is not set
-# CONFIG_CHARGER_BQ2415X is not set
-CONFIG_CHARGER_SMB347=m
-# CONFIG_BATTERY_GOLDFISH is not set
-CONFIG_POWER_RESET=y
-CONFIG_POWER_RESET_GPIO=y
-# CONFIG_POWER_AVS is not set
-# CONFIG_POWERCAP is not set
-CONFIG_HWMON=y
-CONFIG_HWMON_VID=m
-# CONFIG_HWMON_DEBUG_CHIP is not set
-
-#
-# Native drivers
-#
-CONFIG_SENSORS_AD7414=m
-CONFIG_SENSORS_AD7418=m
-CONFIG_SENSORS_ADM1021=m
-CONFIG_SENSORS_ADM1025=m
-CONFIG_SENSORS_ADM1026=m
-CONFIG_SENSORS_ADM1029=m
-CONFIG_SENSORS_ADM1031=m
-CONFIG_SENSORS_ADM9240=m
-CONFIG_SENSORS_ADT7X10=m
-CONFIG_SENSORS_ADT7410=m
-CONFIG_SENSORS_ADT7411=m
-CONFIG_SENSORS_ADT7462=m
-CONFIG_SENSORS_ADT7470=m
-CONFIG_SENSORS_ADT7475=m
-CONFIG_SENSORS_ASC7621=m
-CONFIG_SENSORS_ATXP1=m
-CONFIG_SENSORS_DS620=m
-CONFIG_SENSORS_DS1621=m
-# CONFIG_SENSORS_I5K_AMB is not set
-CONFIG_SENSORS_F75375S=m
-CONFIG_SENSORS_G760A=m
-CONFIG_SENSORS_GL518SM=m
-CONFIG_SENSORS_GL520SM=m
-# CONFIG_SENSORS_GPIO_FAN is not set
-# CONFIG_SENSORS_HIH6130 is not set
-CONFIG_SENSORS_IBMAEM=m
-CONFIG_SENSORS_IBMPEX=m
-CONFIG_SENSORS_IBMPOWERNV=y
-# CONFIG_SENSORS_IIO_HWMON is not set
-CONFIG_SENSORS_JC42=m
-CONFIG_SENSORS_LINEAGE=m
-CONFIG_SENSORS_LM63=m
-CONFIG_SENSORS_LM73=m
-CONFIG_SENSORS_LM75=m
-CONFIG_SENSORS_LM77=m
-CONFIG_SENSORS_LM78=m
-CONFIG_SENSORS_LM80=m
-CONFIG_SENSORS_LM83=m
-CONFIG_SENSORS_LM85=m
-CONFIG_SENSORS_LM87=m
-CONFIG_SENSORS_LM90=m
-CONFIG_SENSORS_LM92=m
-CONFIG_SENSORS_LM93=m
-CONFIG_SENSORS_LTC4151=m
-CONFIG_SENSORS_LTC4215=m
-CONFIG_SENSORS_LTC4245=m
-CONFIG_SENSORS_LTC4261=m
-CONFIG_SENSORS_LM95234=m
-CONFIG_SENSORS_LM95241=m
-CONFIG_SENSORS_LM95245=m
-CONFIG_SENSORS_MAX16065=m
-CONFIG_SENSORS_MAX1619=m
-CONFIG_SENSORS_MAX1668=m
-CONFIG_SENSORS_MAX197=m
-CONFIG_SENSORS_MAX6639=m
-CONFIG_SENSORS_MAX6642=m
-CONFIG_SENSORS_MAX6650=m
-CONFIG_SENSORS_MAX6697=m
-CONFIG_SENSORS_MCP3021=m
-CONFIG_SENSORS_NTC_THERMISTOR=m
-CONFIG_SENSORS_PCF8591=m
-CONFIG_PMBUS=m
-CONFIG_SENSORS_PMBUS=m
-CONFIG_SENSORS_ADM1275=m
-CONFIG_SENSORS_LM25066=m
-CONFIG_SENSORS_LTC2978=m
-CONFIG_SENSORS_MAX16064=m
-CONFIG_SENSORS_MAX34440=m
-CONFIG_SENSORS_MAX8688=m
-CONFIG_SENSORS_UCD9000=m
-CONFIG_SENSORS_UCD9200=m
-CONFIG_SENSORS_ZL6100=m
-CONFIG_SENSORS_SHT15=m
-CONFIG_SENSORS_SHT21=m
-CONFIG_SENSORS_SIS5595=m
-# CONFIG_SENSORS_SMM665 is not set
-CONFIG_SENSORS_EMC1403=m
-# CONFIG_SENSORS_EMC2103 is not set
-CONFIG_SENSORS_EMC6W201=m
-CONFIG_SENSORS_SMSC47M192=m
-# CONFIG_SENSORS_SCH56XX_COMMON is not set
-CONFIG_SENSORS_ADS1015=m
-CONFIG_SENSORS_ADS7828=m
-CONFIG_SENSORS_AMC6821=m
-CONFIG_SENSORS_INA209=m
-CONFIG_SENSORS_INA2XX=m
-CONFIG_SENSORS_THMC50=m
-CONFIG_SENSORS_TMP102=m
-CONFIG_SENSORS_TMP401=m
-CONFIG_SENSORS_TMP421=m
-CONFIG_SENSORS_VIA686A=m
-CONFIG_SENSORS_VT8231=m
-CONFIG_SENSORS_W83781D=m
-CONFIG_SENSORS_W83791D=m
-CONFIG_SENSORS_W83792D=m
-CONFIG_SENSORS_W83793=m
-CONFIG_SENSORS_W83795=m
-# CONFIG_SENSORS_W83795_FANCTRL is not set
-CONFIG_SENSORS_W83L785TS=m
-CONFIG_SENSORS_W83L786NG=m
-CONFIG_THERMAL=y
-CONFIG_THERMAL_HWMON=y
-CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
-# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
-# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
-CONFIG_THERMAL_GOV_FAIR_SHARE=y
-CONFIG_THERMAL_GOV_STEP_WISE=y
-# CONFIG_THERMAL_GOV_USER_SPACE is not set
-# CONFIG_CPU_THERMAL is not set
-# CONFIG_THERMAL_EMULATION is not set
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_CORE=y
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
-CONFIG_WATCHDOG_SYSFS=y
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-CONFIG_ALIM7101_WDT=m
-CONFIG_I6300ESB_WDT=m
-CONFIG_WATCHDOG_RTAS=m
-
-#
-# PCI-based Watchdog Cards
-#
-CONFIG_PCIPCWATCHDOG=m
-CONFIG_WDTPCI=m
-
-#
-# USB-based Watchdog Cards
-#
-CONFIG_USBPCWATCHDOG=m
-
-#
-# Watchdog Pretimeout Governors
-#
-# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-CONFIG_SSB=m
-CONFIG_SSB_SPROM=y
-CONFIG_SSB_PCIHOST_POSSIBLE=y
-CONFIG_SSB_PCIHOST=y
-# CONFIG_SSB_B43_PCI_BRIDGE is not set
-CONFIG_SSB_SDIOHOST_POSSIBLE=y
-CONFIG_SSB_SDIOHOST=y
-# CONFIG_SSB_DEBUG is not set
-CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
-CONFIG_SSB_DRIVER_PCICORE=y
-CONFIG_SSB_DRIVER_GPIO=y
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-CONFIG_BCMA=m
-CONFIG_BCMA_HOST_PCI_POSSIBLE=y
-CONFIG_BCMA_HOST_PCI=y
-# CONFIG_BCMA_HOST_SOC is not set
-CONFIG_BCMA_DRIVER_PCI=y
-CONFIG_BCMA_DRIVER_GMAC_CMN=y
-CONFIG_BCMA_DRIVER_GPIO=y
-# CONFIG_BCMA_DEBUG is not set
-
-#
-# Multifunction device drivers
-#
-CONFIG_MFD_CORE=m
-# CONFIG_MFD_CROS_EC is not set
-# CONFIG_MFD_MC13XXX_I2C is not set
-# CONFIG_HTC_PASIC3 is not set
-# CONFIG_LPC_ICH is not set
-# CONFIG_LPC_SCH is not set
-# CONFIG_MFD_JANZ_CMODIO is not set
-CONFIG_MFD_VIPERBOARD=m
-# CONFIG_MFD_RETU is not set
-# CONFIG_MFD_PCF50633 is not set
-# CONFIG_UCB1400_CORE is not set
-# CONFIG_MFD_RDC321X is not set
-CONFIG_MFD_RTSX_PCI=m
-CONFIG_MFD_RTSX_USB=m
-# CONFIG_MFD_SI476X_CORE is not set
-CONFIG_MFD_SM501=m
-CONFIG_MFD_SM501_GPIO=y
-# CONFIG_ABX500_CORE is not set
-# CONFIG_MFD_SYSCON is not set
-# CONFIG_MFD_TI_AM335X_TSCADC is not set
-# CONFIG_TPS6105X is not set
-# CONFIG_TPS65010 is not set
-# CONFIG_TPS6507X is not set
-# CONFIG_MFD_TPS65217 is not set
-# CONFIG_MFD_TPS65912 is not set
-# CONFIG_MFD_WL1273_CORE is not set
-# CONFIG_MFD_LM3533 is not set
-# CONFIG_MFD_TIMBERDALE is not set
-# CONFIG_MFD_TMIO is not set
-CONFIG_MFD_VX855=m
-# CONFIG_MFD_ARIZONA_I2C is not set
-# CONFIG_REGULATOR is not set
-CONFIG_MEDIA_SUPPORT=m
-
-#
-# Multimedia core support
-#
-CONFIG_MEDIA_CAMERA_SUPPORT=y
-CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
-CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
-CONFIG_MEDIA_RADIO_SUPPORT=y
-CONFIG_MEDIA_RC_SUPPORT=y
-# CONFIG_MEDIA_CONTROLLER is not set
-CONFIG_VIDEO_DEV=m
-CONFIG_VIDEO_V4L2=m
-# CONFIG_VIDEO_ADV_DEBUG is not set
-# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
-CONFIG_VIDEO_TUNER=m
-CONFIG_VIDEOBUF_GEN=m
-CONFIG_VIDEOBUF_DMA_SG=m
-CONFIG_VIDEOBUF_VMALLOC=m
-CONFIG_VIDEOBUF_DVB=m
-CONFIG_VIDEOBUF2_CORE=m
-CONFIG_VIDEOBUF2_MEMOPS=m
-CONFIG_VIDEOBUF2_VMALLOC=m
-# CONFIG_VIDEO_V4L2_INT_DEVICE is not set
-CONFIG_DVB_CORE=m
-CONFIG_DVB_NET=y
-CONFIG_TTPCI_EEPROM=m
-CONFIG_DVB_MAX_ADAPTERS=8
-CONFIG_DVB_DYNAMIC_MINORS=y
-
-#
-# Media drivers
-#
-CONFIG_RC_CORE=m
-CONFIG_RC_MAP=m
-CONFIG_RC_DECODERS=y
-CONFIG_LIRC=m
-CONFIG_IR_LIRC_CODEC=m
-CONFIG_IR_NEC_DECODER=m
-CONFIG_IR_RC5_DECODER=m
-CONFIG_IR_RC6_DECODER=m
-CONFIG_IR_JVC_DECODER=m
-CONFIG_IR_SONY_DECODER=m
-CONFIG_IR_RC5_SZ_DECODER=m
-CONFIG_IR_SANYO_DECODER=m
-CONFIG_IR_MCE_KBD_DECODER=m
-CONFIG_RC_DEVICES=y
-CONFIG_RC_ATI_REMOTE=m
-CONFIG_IR_IMON=m
-CONFIG_IR_MCEUSB=m
-CONFIG_IR_REDRAT3=m
-CONFIG_IR_STREAMZAP=m
-CONFIG_IR_IGUANA=m
-CONFIG_IR_TTUSBIR=m
-# CONFIG_RC_LOOPBACK is not set
-CONFIG_IR_GPIO_CIR=m
-CONFIG_MEDIA_USB_SUPPORT=y
-
-#
-# Webcam devices
-#
-CONFIG_USB_VIDEO_CLASS=m
-CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
-CONFIG_USB_GSPCA=m
-CONFIG_USB_M5602=m
-CONFIG_USB_STV06XX=m
-CONFIG_USB_GL860=m
-CONFIG_USB_GSPCA_BENQ=m
-CONFIG_USB_GSPCA_CONEX=m
-CONFIG_USB_GSPCA_CPIA1=m
-CONFIG_USB_GSPCA_ETOMS=m
-CONFIG_USB_GSPCA_FINEPIX=m
-CONFIG_USB_GSPCA_JEILINJ=m
-CONFIG_USB_GSPCA_JL2005BCD=m
-# CONFIG_USB_GSPCA_KINECT is not set
-CONFIG_USB_GSPCA_KONICA=m
-CONFIG_USB_GSPCA_MARS=m
-CONFIG_USB_GSPCA_MR97310A=m
-CONFIG_USB_GSPCA_NW80X=m
-CONFIG_USB_GSPCA_OV519=m
-CONFIG_USB_GSPCA_OV534=m
-CONFIG_USB_GSPCA_OV534_9=m
-CONFIG_USB_GSPCA_PAC207=m
-CONFIG_USB_GSPCA_PAC7302=m
-CONFIG_USB_GSPCA_PAC7311=m
-CONFIG_USB_GSPCA_SE401=m
-CONFIG_USB_GSPCA_SN9C2028=m
-CONFIG_USB_GSPCA_SN9C20X=m
-CONFIG_USB_GSPCA_SONIXB=m
-CONFIG_USB_GSPCA_SONIXJ=m
-CONFIG_USB_GSPCA_SPCA500=m
-CONFIG_USB_GSPCA_SPCA501=m
-CONFIG_USB_GSPCA_SPCA505=m
-CONFIG_USB_GSPCA_SPCA506=m
-CONFIG_USB_GSPCA_SPCA508=m
-CONFIG_USB_GSPCA_SPCA561=m
-CONFIG_USB_GSPCA_SPCA1528=m
-CONFIG_USB_GSPCA_SQ905=m
-CONFIG_USB_GSPCA_SQ905C=m
-CONFIG_USB_GSPCA_SQ930X=m
-CONFIG_USB_GSPCA_STK014=m
-CONFIG_USB_GSPCA_STV0680=m
-CONFIG_USB_GSPCA_SUNPLUS=m
-CONFIG_USB_GSPCA_T613=m
-CONFIG_USB_GSPCA_TOPRO=m
-CONFIG_USB_GSPCA_TV8532=m
-CONFIG_USB_GSPCA_VC032X=m
-CONFIG_USB_GSPCA_VICAM=m
-CONFIG_USB_GSPCA_XIRLINK_CIT=m
-CONFIG_USB_GSPCA_ZC3XX=m
-CONFIG_USB_PWC=m
-# CONFIG_USB_PWC_DEBUG is not set
-CONFIG_USB_PWC_INPUT_EVDEV=y
-# CONFIG_VIDEO_CPIA2 is not set
-CONFIG_USB_ZR364XX=m
-CONFIG_USB_STKWEBCAM=m
-CONFIG_USB_S2255=m
-# CONFIG_USB_SN9C102 is not set
-
-#
-# Analog TV USB devices
-#
-CONFIG_VIDEO_PVRUSB2=m
-CONFIG_VIDEO_PVRUSB2_SYSFS=y
-CONFIG_VIDEO_PVRUSB2_DVB=y
-# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
-CONFIG_VIDEO_HDPVR=m
-CONFIG_VIDEO_TLG2300=m
-CONFIG_VIDEO_USBVISION=m
-CONFIG_VIDEO_STK1160=m
-CONFIG_VIDEO_STK1160_AC97=y
-
-#
-# Analog/digital TV USB devices
-#
-CONFIG_VIDEO_AU0828=m
-CONFIG_VIDEO_AU0828_V4L2=y
-CONFIG_VIDEO_CX231XX=m
-CONFIG_VIDEO_CX231XX_RC=y
-CONFIG_VIDEO_CX231XX_ALSA=m
-CONFIG_VIDEO_CX231XX_DVB=m
-CONFIG_VIDEO_TM6000=m
-CONFIG_VIDEO_TM6000_ALSA=m
-CONFIG_VIDEO_TM6000_DVB=m
-
-#
-# Digital TV USB devices
-#
-CONFIG_DVB_USB=m
-# CONFIG_DVB_USB_DEBUG is not set
-CONFIG_DVB_USB_A800=m
-CONFIG_DVB_USB_DIBUSB_MB=m
-# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
-CONFIG_DVB_USB_DIBUSB_MC=m
-CONFIG_DVB_USB_DIB0700=m
-CONFIG_DVB_USB_UMT_010=m
-CONFIG_DVB_USB_CXUSB=m
-CONFIG_DVB_USB_M920X=m
-CONFIG_DVB_USB_DIGITV=m
-CONFIG_DVB_USB_VP7045=m
-CONFIG_DVB_USB_VP702X=m
-CONFIG_DVB_USB_GP8PSK=m
-CONFIG_DVB_USB_NOVA_T_USB2=m
-CONFIG_DVB_USB_TTUSB2=m
-CONFIG_DVB_USB_DTT200U=m
-CONFIG_DVB_USB_OPERA1=m
-CONFIG_DVB_USB_AF9005=m
-CONFIG_DVB_USB_AF9005_REMOTE=m
-CONFIG_DVB_USB_PCTV452E=m
-CONFIG_DVB_USB_DW2102=m
-CONFIG_DVB_USB_CINERGY_T2=m
-CONFIG_DVB_USB_DTV5100=m
-CONFIG_DVB_USB_FRIIO=m
-CONFIG_DVB_USB_AZ6027=m
-CONFIG_DVB_USB_TECHNISAT_USB2=m
-CONFIG_DVB_USB_V2=m
-CONFIG_DVB_USB_AF9015=m
-CONFIG_DVB_USB_AF9035=m
-CONFIG_DVB_USB_ANYSEE=m
-CONFIG_DVB_USB_AU6610=m
-CONFIG_DVB_USB_AZ6007=m
-CONFIG_DVB_USB_CE6230=m
-CONFIG_DVB_USB_EC168=m
-CONFIG_DVB_USB_GL861=m
-CONFIG_DVB_USB_IT913X=m
-CONFIG_DVB_USB_LME2510=m
-CONFIG_DVB_USB_MXL111SF=m
-CONFIG_DVB_USB_RTL28XXU=m
-CONFIG_DVB_TTUSB_BUDGET=m
-CONFIG_DVB_TTUSB_DEC=m
-CONFIG_SMS_USB_DRV=m
-CONFIG_DVB_B2C2_FLEXCOP_USB=m
-# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
-
-#
-# Webcam, TV (analog/digital) USB devices
-#
-CONFIG_VIDEO_EM28XX=m
-CONFIG_VIDEO_EM28XX_ALSA=m
-CONFIG_VIDEO_EM28XX_DVB=m
-CONFIG_VIDEO_EM28XX_RC=m
-CONFIG_MEDIA_PCI_SUPPORT=y
-
-#
-# Media capture support
-#
-
-#
-# Media capture/analog TV support
-#
-CONFIG_VIDEO_IVTV=m
-# CONFIG_VIDEO_IVTV_ALSA is not set
-CONFIG_VIDEO_FB_IVTV=m
-# CONFIG_VIDEO_HEXIUM_GEMINI is not set
-# CONFIG_VIDEO_HEXIUM_ORION is not set
-# CONFIG_VIDEO_MXB is not set
-
-#
-# Media capture/analog/hybrid TV support
-#
-CONFIG_VIDEO_CX18=m
-CONFIG_VIDEO_CX18_ALSA=m
-CONFIG_VIDEO_CX23885=m
-CONFIG_MEDIA_ALTERA_CI=m
-# CONFIG_VIDEO_CX25821 is not set
-CONFIG_VIDEO_CX88=m
-CONFIG_VIDEO_CX88_ALSA=m
-CONFIG_VIDEO_CX88_BLACKBIRD=m
-CONFIG_VIDEO_CX88_DVB=m
-CONFIG_VIDEO_CX88_VP3054=m
-CONFIG_VIDEO_CX88_MPEG=m
-CONFIG_VIDEO_BT848=m
-CONFIG_DVB_BT8XX=m
-CONFIG_VIDEO_SAA7134=m
-CONFIG_VIDEO_SAA7134_ALSA=m
-CONFIG_VIDEO_SAA7134_RC=y
-CONFIG_VIDEO_SAA7134_DVB=m
-CONFIG_VIDEO_SAA7164=m
-
-#
-# Media digital TV PCI Adapters
-#
-CONFIG_DVB_AV7110=m
-CONFIG_DVB_AV7110_OSD=y
-CONFIG_DVB_BUDGET_CORE=m
-CONFIG_DVB_BUDGET=m
-CONFIG_DVB_BUDGET_CI=m
-CONFIG_DVB_BUDGET_AV=m
-CONFIG_DVB_BUDGET_PATCH=m
-CONFIG_DVB_B2C2_FLEXCOP_PCI=m
-# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
-CONFIG_DVB_PLUTO2=m
-CONFIG_DVB_DM1105=m
-CONFIG_DVB_PT1=m
-CONFIG_MANTIS_CORE=m
-CONFIG_DVB_MANTIS=m
-CONFIG_DVB_HOPPER=m
-CONFIG_DVB_NGENE=m
-CONFIG_DVB_DDBRIDGE=m
-# CONFIG_V4L_PLATFORM_DRIVERS is not set
-# CONFIG_V4L_MEM2MEM_DRIVERS is not set
-# CONFIG_V4L_TEST_DRIVERS is not set
-
-#
-# Supported MMC/SDIO adapters
-#
-CONFIG_SMS_SDIO_DRV=m
-# CONFIG_MEDIA_PARPORT_SUPPORT is not set
-# CONFIG_RADIO_ADAPTERS is not set
-
-#
-# Supported FireWire (IEEE 1394) Adapters
-#
-CONFIG_DVB_FIREDTV=m
-CONFIG_DVB_FIREDTV_INPUT=y
-CONFIG_MEDIA_COMMON_OPTIONS=y
-
-#
-# common driver options
-#
-CONFIG_VIDEO_CX2341X=m
-CONFIG_VIDEO_BTCX=m
-CONFIG_VIDEO_TVEEPROM=m
-CONFIG_CYPRESS_FIRMWARE=m
-CONFIG_DVB_B2C2_FLEXCOP=m
-CONFIG_VIDEO_SAA7146=m
-CONFIG_VIDEO_SAA7146_VV=m
-CONFIG_SMS_SIANO_MDTV=m
-CONFIG_SMS_SIANO_RC=y
-# CONFIG_SMS_SIANO_DEBUGFS is not set
-
-#
-# Media ancillary drivers (tuners, sensors, i2c, frontends)
-#
-CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
-CONFIG_MEDIA_ATTACH=y
-CONFIG_VIDEO_IR_I2C=m
-
-#
-# Audio decoders, processors and mixers
-#
-CONFIG_VIDEO_TVAUDIO=m
-CONFIG_VIDEO_TDA7432=m
-CONFIG_VIDEO_MSP3400=m
-CONFIG_VIDEO_CS5345=m
-CONFIG_VIDEO_CS53L32A=m
-CONFIG_VIDEO_WM8775=m
-CONFIG_VIDEO_WM8739=m
-CONFIG_VIDEO_VP27SMPX=m
-
-#
-# RDS decoders
-#
-CONFIG_VIDEO_SAA6588=m
-
-#
-# Video decoders
-#
-CONFIG_VIDEO_SAA711X=m
-CONFIG_VIDEO_TVP5150=m
-
-#
-# Video and audio decoders
-#
-CONFIG_VIDEO_SAA717X=m
-CONFIG_VIDEO_CX25840=m
-
-#
-# Video encoders
-#
-CONFIG_VIDEO_SAA7127=m
-
-#
-# Camera sensor devices
-#
-CONFIG_VIDEO_MT9V011=m
-
-#
-# Flash devices
-#
-
-#
-# Video improvement chips
-#
-CONFIG_VIDEO_UPD64031A=m
-CONFIG_VIDEO_UPD64083=m
-
-#
-# Miscelaneous helper chips
-#
-CONFIG_VIDEO_M52790=m
-
-#
-# Sensors used on soc_camera driver
-#
-CONFIG_MEDIA_TUNER=m
-CONFIG_MEDIA_TUNER_SIMPLE=m
-CONFIG_MEDIA_TUNER_TDA8290=m
-CONFIG_MEDIA_TUNER_TDA827X=m
-CONFIG_MEDIA_TUNER_TDA18271=m
-CONFIG_MEDIA_TUNER_TDA9887=m
-CONFIG_MEDIA_TUNER_TEA5761=m
-CONFIG_MEDIA_TUNER_TEA5767=m
-CONFIG_MEDIA_TUNER_MT20XX=m
-CONFIG_MEDIA_TUNER_MT2060=m
-CONFIG_MEDIA_TUNER_MT2063=m
-CONFIG_MEDIA_TUNER_MT2266=m
-CONFIG_MEDIA_TUNER_MT2131=m
-CONFIG_MEDIA_TUNER_QT1010=m
-CONFIG_MEDIA_TUNER_XC2028=m
-CONFIG_MEDIA_TUNER_XC5000=m
-CONFIG_MEDIA_TUNER_XC4000=m
-CONFIG_MEDIA_TUNER_MXL5005S=m
-CONFIG_MEDIA_TUNER_MXL5007T=m
-CONFIG_MEDIA_TUNER_MC44S803=m
-CONFIG_MEDIA_TUNER_MAX2165=m
-CONFIG_MEDIA_TUNER_TDA18218=m
-CONFIG_MEDIA_TUNER_FC0011=m
-CONFIG_MEDIA_TUNER_FC0012=m
-CONFIG_MEDIA_TUNER_FC0013=m
-CONFIG_MEDIA_TUNER_TDA18212=m
-CONFIG_MEDIA_TUNER_E4000=m
-CONFIG_MEDIA_TUNER_FC2580=m
-CONFIG_MEDIA_TUNER_TUA9001=m
-CONFIG_MEDIA_TUNER_IT913X=m
-CONFIG_MEDIA_TUNER_R820T=m
-
-#
-# Multistandard (satellite) frontends
-#
-CONFIG_DVB_STB0899=m
-CONFIG_DVB_STB6100=m
-CONFIG_DVB_STV090x=m
-CONFIG_DVB_STV6110x=m
-
-#
-# Multistandard (cable + terrestrial) frontends
-#
-CONFIG_DVB_DRXK=m
-CONFIG_DVB_TDA18271C2DD=m
-
-#
-# DVB-S (satellite) frontends
-#
-CONFIG_DVB_CX24110=m
-CONFIG_DVB_CX24123=m
-CONFIG_DVB_MT312=m
-CONFIG_DVB_ZL10036=m
-CONFIG_DVB_ZL10039=m
-CONFIG_DVB_S5H1420=m
-CONFIG_DVB_STV0288=m
-CONFIG_DVB_STB6000=m
-CONFIG_DVB_STV0299=m
-CONFIG_DVB_STV6110=m
-CONFIG_DVB_STV0900=m
-CONFIG_DVB_TDA8083=m
-CONFIG_DVB_TDA10086=m
-CONFIG_DVB_TDA8261=m
-CONFIG_DVB_VES1X93=m
-CONFIG_DVB_TUNER_ITD1000=m
-CONFIG_DVB_TUNER_CX24113=m
-CONFIG_DVB_TDA826X=m
-CONFIG_DVB_TUA6100=m
-CONFIG_DVB_CX24116=m
-CONFIG_DVB_SI21XX=m
-CONFIG_DVB_TS2020=m
-CONFIG_DVB_DS3000=m
-CONFIG_DVB_MB86A16=m
-CONFIG_DVB_TDA10071=m
-
-#
-# DVB-T (terrestrial) frontends
-#
-CONFIG_DVB_SP8870=m
-CONFIG_DVB_SP887X=m
-CONFIG_DVB_CX22700=m
-CONFIG_DVB_CX22702=m
-CONFIG_DVB_DRXD=m
-CONFIG_DVB_L64781=m
-CONFIG_DVB_TDA1004X=m
-CONFIG_DVB_NXT6000=m
-CONFIG_DVB_MT352=m
-CONFIG_DVB_ZL10353=m
-CONFIG_DVB_DIB3000MB=m
-CONFIG_DVB_DIB3000MC=m
-CONFIG_DVB_DIB7000M=m
-CONFIG_DVB_DIB7000P=m
-CONFIG_DVB_TDA10048=m
-CONFIG_DVB_AF9013=m
-CONFIG_DVB_EC100=m
-CONFIG_DVB_STV0367=m
-CONFIG_DVB_CXD2820R=m
-CONFIG_DVB_RTL2830=m
-CONFIG_DVB_RTL2832=m
-
-#
-# DVB-C (cable) frontends
-#
-CONFIG_DVB_VES1820=m
-CONFIG_DVB_TDA10021=m
-CONFIG_DVB_TDA10023=m
-CONFIG_DVB_STV0297=m
-
-#
-# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
-#
-CONFIG_DVB_NXT200X=m
-CONFIG_DVB_OR51211=m
-CONFIG_DVB_OR51132=m
-CONFIG_DVB_BCM3510=m
-CONFIG_DVB_LGDT330X=m
-CONFIG_DVB_LGDT3305=m
-CONFIG_DVB_LG2160=m
-CONFIG_DVB_S5H1409=m
-CONFIG_DVB_AU8522=m
-CONFIG_DVB_AU8522_DTV=m
-CONFIG_DVB_AU8522_V4L=m
-CONFIG_DVB_S5H1411=m
-
-#
-# ISDB-T (terrestrial) frontends
-#
-CONFIG_DVB_S921=m
-CONFIG_DVB_DIB8000=m
-CONFIG_DVB_MB86A20S=m
-
-#
-# Digital terrestrial only tuners/PLL
-#
-CONFIG_DVB_PLL=m
-CONFIG_DVB_TUNER_DIB0070=m
-CONFIG_DVB_TUNER_DIB0090=m
-
-#
-# SEC control devices for DVB-S
-#
-CONFIG_DVB_LNBP21=m
-CONFIG_DVB_LNBP22=m
-CONFIG_DVB_ISL6405=m
-CONFIG_DVB_ISL6421=m
-CONFIG_DVB_ISL6423=m
-CONFIG_DVB_A8293=m
-CONFIG_DVB_LGS8GXX=m
-CONFIG_DVB_ATBM8830=m
-CONFIG_DVB_TDA665x=m
-CONFIG_DVB_IX2505V=m
-CONFIG_DVB_IT913X_FE=m
-CONFIG_DVB_M88RS2000=m
-CONFIG_DVB_AF9033=m
-
-#
-# Tools to develop new frontends
-#
-# CONFIG_DVB_DUMMY_FE is not set
-
-#
-# Graphics support
-#
-CONFIG_AGP=y
-CONFIG_VGA_ARB=y
-CONFIG_VGA_ARB_MAX_GPUS=64
-CONFIG_DRM=m
-CONFIG_DRM_DP_AUX_CHARDEV=y
-# CONFIG_DRM_DEBUG_SELFTEST is not set
-CONFIG_DRM_KMS_HELPER=m
-CONFIG_DRM_KMS_FB_HELPER=y
-CONFIG_DRM_FBDEV_EMULATION=y
-CONFIG_DRM_FBDEV_OVERALLOC=100
-CONFIG_DRM_LOAD_EDID_FIRMWARE=y
-# CONFIG_DRM_DP_CEC is not set
-CONFIG_DRM_TTM=m
-CONFIG_DRM_VM=y
-CONFIG_DRM_SCHED=m
-
-#
-# I2C encoder or helper chips
-#
-CONFIG_DRM_I2C_CH7006=m
-CONFIG_DRM_I2C_SIL164=m
-# CONFIG_DRM_I2C_NXP_TDA998X is not set
-# CONFIG_DRM_I2C_NXP_TDA9950 is not set
-CONFIG_DRM_RADEON=m
-# CONFIG_DRM_RADEON_USERPTR is not set
-CONFIG_DRM_AMDGPU=m
-# CONFIG_DRM_AMDGPU_SI is not set
-# CONFIG_DRM_AMDGPU_CIK is not set
-# CONFIG_DRM_AMDGPU_USERPTR is not set
-# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
-
-#
-# ACP (Audio CoProcessor) Configuration
-#
-# CONFIG_DRM_AMD_ACP is not set
-
-#
-# Display Engine Configuration
-#
-CONFIG_DRM_AMD_DC=y
-# CONFIG_DRM_AMD_DC_DCN1_0 is not set
-# CONFIG_DRM_AMD_DC_DCN1_01 is not set
-# CONFIG_DEBUG_KERNEL_DC is not set
-
-#
-# AMD Library routines
-#
-CONFIG_CHASH=m
-# CONFIG_CHASH_STATS is not set
-# CONFIG_CHASH_SELFTEST is not set
-CONFIG_DRM_NOUVEAU=m
-CONFIG_NOUVEAU_DEBUG=5
-CONFIG_NOUVEAU_DEBUG_DEFAULT=3
-# CONFIG_NOUVEAU_DEBUG_MMU is not set
-CONFIG_DRM_NOUVEAU_BACKLIGHT=y
-CONFIG_DRM_VGEM=m
-# CONFIG_DRM_VKMS is not set
-CONFIG_DRM_UDL=m
-CONFIG_DRM_AST=m
-CONFIG_DRM_MGAG200=m
-CONFIG_DRM_CIRRUS_QEMU=m
-CONFIG_DRM_QXL=m
-CONFIG_DRM_BOCHS=m
-CONFIG_DRM_VIRTIO_GPU=m
-# CONFIG_DRM_LEGACY is not set
-CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
-# CONFIG_DRM_LIB_RANDOM is not set
-CONFIG_VGASTATE=m
-CONFIG_VIDEO_OUTPUT_CONTROL=m
-CONFIG_HDMI=y
-CONFIG_FB=y
-# CONFIG_FIRMWARE_EDID is not set
-# CONFIG_FB_DDC is not set
-# CONFIG_FB_BOOT_VESA_SUPPORT is not set
-CONFIG_FB_CFB_FILLRECT=y
-CONFIG_FB_CFB_COPYAREA=y
-CONFIG_FB_CFB_IMAGEBLIT=y
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-CONFIG_FB_DEFERRED_IO=y
-# CONFIG_FB_SVGALIB is not set
-CONFIG_FB_MACMODES=y
-CONFIG_FB_BACKLIGHT=y
-CONFIG_FB_MODE_HELPERS=y
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-CONFIG_FB_OF=y
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-# CONFIG_FB_VGA16 is not set
-# CONFIG_FB_UVESA is not set
-# CONFIG_FB_S1D13XXX is not set
-CONFIG_FB_NVIDIA=m
-# CONFIG_FB_NVIDIA_I2C is not set
-# CONFIG_FB_NVIDIA_DEBUG is not set
-CONFIG_FB_NVIDIA_BACKLIGHT=y
-# CONFIG_FB_RIVA is not set
-# CONFIG_FB_I740 is not set
-CONFIG_FB_MATROX=y
-# CONFIG_FB_MATROX_MILLENIUM is not set
-# CONFIG_FB_MATROX_MYSTIQUE is not set
-CONFIG_FB_MATROX_G=y
-# CONFIG_FB_MATROX_I2C is not set
-CONFIG_FB_RADEON=m
-# CONFIG_FB_RADEON_I2C is not set
-CONFIG_FB_RADEON_BACKLIGHT=y
-# CONFIG_FB_RADEON_DEBUG is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_TMIO is not set
-# CONFIG_FB_SM501 is not set
-# CONFIG_FB_SMSCUFX is not set
-# CONFIG_FB_UDL is not set
-CONFIG_FB_IBM_GXT4500=y
-# CONFIG_FB_GOLDFISH is not set
-# CONFIG_FB_VIRTUAL is not set
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-# CONFIG_FB_AUO_K190X is not set
-# CONFIG_FB_SIMPLE is not set
-# CONFIG_EXYNOS_VIDEO is not set
-CONFIG_BACKLIGHT_LCD_SUPPORT=y
-CONFIG_LCD_CLASS_DEVICE=m
-CONFIG_LCD_PLATFORM=m
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-# CONFIG_BACKLIGHT_GENERIC is not set
-CONFIG_BACKLIGHT_PWM=m
-# CONFIG_BACKLIGHT_ADP8860 is not set
-# CONFIG_BACKLIGHT_ADP8870 is not set
-# CONFIG_BACKLIGHT_LM3630 is not set
-# CONFIG_BACKLIGHT_LM3639 is not set
-CONFIG_BACKLIGHT_LP855X=m
-CONFIG_LOGO=y
-# CONFIG_LOGO_LINUX_MONO is not set
-# CONFIG_LOGO_LINUX_VGA16 is not set
-CONFIG_LOGO_LINUX_CLUT224=y
-CONFIG_FB_SSD1307=m
-
-#
-# Console display driver support
-#
-CONFIG_VGA_CONSOLE=y
-CONFIG_VGACON_SOFT_SCROLLBACK=y
-CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-CONFIG_SOUND=m
-CONFIG_SOUND_OSS_CORE=y
-CONFIG_SOUND_OSS_CORE_PRECLAIM=y
-CONFIG_SND=m
-CONFIG_SND_TIMER=m
-CONFIG_SND_PCM=m
-CONFIG_SND_HWDEP=m
-CONFIG_SND_SEQ_DEVICE=m
-CONFIG_SND_RAWMIDI=m
-CONFIG_SND_JACK=y
-CONFIG_SND_JACK_INPUT_DEV=y
-CONFIG_SND_OSSEMUL=y
-# CONFIG_SND_MIXER_OSS is not set
-# CONFIG_SND_PCM_OSS is not set
-CONFIG_SND_PCM_TIMER=y
-CONFIG_SND_HRTIMER=m
-CONFIG_SND_DYNAMIC_MINORS=y
-CONFIG_SND_MAX_CARDS=32
-# CONFIG_SND_SUPPORT_OLD_API is not set
-CONFIG_SND_PROC_FS=y
-CONFIG_SND_VERBOSE_PROCFS=y
-# CONFIG_SND_VERBOSE_PRINTK is not set
-# CONFIG_SND_DEBUG is not set
-CONFIG_SND_VMASTER=y
-CONFIG_SND_SEQUENCER=m
-CONFIG_SND_SEQ_DUMMY=m
-CONFIG_SND_SEQUENCER_OSS=m
-CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
-CONFIG_SND_SEQ_MIDI_EVENT=m
-CONFIG_SND_SEQ_MIDI=m
-CONFIG_SND_SEQ_MIDI_EMUL=m
-CONFIG_SND_SEQ_VIRMIDI=m
-CONFIG_SND_MPU401_UART=m
-CONFIG_SND_OPL3_LIB=m
-CONFIG_SND_OPL3_LIB_SEQ=m
-# CONFIG_SND_OPL4_LIB_SEQ is not set
-CONFIG_SND_VX_LIB=m
-CONFIG_SND_AC97_CODEC=m
-CONFIG_SND_DRIVERS=y
-CONFIG_SND_DUMMY=m
-CONFIG_SND_ALOOP=m
-CONFIG_SND_VIRMIDI=m
-CONFIG_SND_MTPAV=m
-# CONFIG_SND_MTS64 is not set
-# CONFIG_SND_SERIAL_U16550 is not set
-CONFIG_SND_MPU401=m
-# CONFIG_SND_PORTMAN2X4 is not set
-CONFIG_SND_AC97_POWER_SAVE=y
-CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
-CONFIG_SND_TEA575X=m
-CONFIG_SND_PCI=y
-CONFIG_SND_AD1889=m
-# CONFIG_SND_ALS300 is not set
-# CONFIG_SND_ALS4000 is not set
-CONFIG_SND_ALI5451=m
-CONFIG_SND_ATIIXP=m
-CONFIG_SND_ATIIXP_MODEM=m
-CONFIG_SND_AU8810=m
-CONFIG_SND_AU8820=m
-CONFIG_SND_AU8830=m
-# CONFIG_SND_AW2 is not set
-# CONFIG_SND_AZT3328 is not set
-CONFIG_SND_BT87X=m
-# CONFIG_SND_BT87X_OVERCLOCK is not set
-CONFIG_SND_CA0106=m
-CONFIG_SND_CMIPCI=m
-CONFIG_SND_OXYGEN_LIB=m
-CONFIG_SND_OXYGEN=m
-# CONFIG_SND_CS4281 is not set
-CONFIG_SND_CS46XX=m
-CONFIG_SND_CS46XX_NEW_DSP=y
-CONFIG_SND_CTXFI=m
-CONFIG_SND_DARLA20=m
-CONFIG_SND_GINA20=m
-CONFIG_SND_LAYLA20=m
-CONFIG_SND_DARLA24=m
-CONFIG_SND_GINA24=m
-CONFIG_SND_LAYLA24=m
-CONFIG_SND_MONA=m
-CONFIG_SND_MIA=m
-CONFIG_SND_ECHO3G=m
-CONFIG_SND_INDIGO=m
-CONFIG_SND_INDIGOIO=m
-CONFIG_SND_INDIGODJ=m
-CONFIG_SND_INDIGOIOX=m
-CONFIG_SND_INDIGODJX=m
-CONFIG_SND_EMU10K1=m
-CONFIG_SND_EMU10K1_SEQ=m
-CONFIG_SND_EMU10K1X=m
-CONFIG_SND_ENS1370=m
-CONFIG_SND_ENS1371=m
-# CONFIG_SND_ES1938 is not set
-CONFIG_SND_ES1968=m
-CONFIG_SND_ES1968_INPUT=y
-CONFIG_SND_ES1968_RADIO=y
-# CONFIG_SND_FM801 is not set
-CONFIG_SND_HDSP=m
-CONFIG_SND_HDSPM=m
-CONFIG_SND_ICE1712=m
-CONFIG_SND_ICE1724=m
-CONFIG_SND_INTEL8X0=m
-CONFIG_SND_INTEL8X0M=m
-CONFIG_SND_KORG1212=m
-CONFIG_SND_LOLA=m
-CONFIG_SND_LX6464ES=m
-CONFIG_SND_MAESTRO3=m
-CONFIG_SND_MAESTRO3_INPUT=y
-CONFIG_SND_MIXART=m
-# CONFIG_SND_NM256 is not set
-CONFIG_SND_PCXHR=m
-# CONFIG_SND_RIPTIDE is not set
-CONFIG_SND_RME32=m
-CONFIG_SND_RME96=m
-CONFIG_SND_RME9652=m
-# CONFIG_SND_SONICVIBES is not set
-CONFIG_SND_TRIDENT=m
-CONFIG_SND_VIA82XX=m
-CONFIG_SND_VIA82XX_MODEM=m
-CONFIG_SND_VIRTUOSO=m
-CONFIG_SND_VX222=m
-# CONFIG_SND_YMFPCI is not set
-
-#
-# HD-Audio
-#
-# CONFIG_SND_HDA_INTEL is not set
-CONFIG_SND_HDA_PREALLOC_SIZE=512
-CONFIG_SND_PPC=y
-CONFIG_SND_USB=y
-CONFIG_SND_USB_AUDIO=m
-CONFIG_SND_USB_UA101=m
-CONFIG_SND_USB_USX2Y=m
-CONFIG_SND_USB_CAIAQ=m
-CONFIG_SND_USB_CAIAQ_INPUT=y
-CONFIG_SND_USB_6FIRE=m
-CONFIG_SND_USB_HIFACE=m
-CONFIG_SND_BCD2000=m
-CONFIG_SND_USB_LINE6=m
-CONFIG_SND_USB_POD=m
-CONFIG_SND_USB_PODHD=m
-CONFIG_SND_USB_TONEPORT=m
-CONFIG_SND_USB_VARIAX=m
-CONFIG_SND_FIREWIRE=y
-CONFIG_SND_FIREWIRE_LIB=m
-CONFIG_SND_FIREWIRE_SPEAKERS=m
-CONFIG_SND_ISIGHT=m
-CONFIG_SND_SCS1X=m
-# CONFIG_SND_SOC is not set
-CONFIG_SND_SYNTH_EMUX=m
-# CONFIG_SOUND_PRIME is not set
-CONFIG_AC97_BUS=m
-
-#
-# HID support
-#
-CONFIG_HID=y
-CONFIG_HID_BATTERY_STRENGTH=y
-CONFIG_HIDRAW=y
-CONFIG_UHID=m
-CONFIG_HID_GENERIC=y
-
-#
-# Special HID drivers
-#
-CONFIG_HID_A4TECH=y
-CONFIG_HID_ACRUX=m
-# CONFIG_HID_ACRUX_FF is not set
-CONFIG_HID_APPLE=y
-CONFIG_HID_APPLEIR=m
-CONFIG_HID_AUREAL=m
-CONFIG_HID_BELKIN=y
-CONFIG_HID_CHERRY=y
-CONFIG_HID_CHICONY=y
-CONFIG_HID_PRODIKEYS=m
-CONFIG_HID_CYPRESS=y
-CONFIG_HID_DRAGONRISE=m
-# CONFIG_DRAGONRISE_FF is not set
-# CONFIG_HID_EMS_FF is not set
-CONFIG_HID_ELECOM=m
-CONFIG_HID_EZKEY=y
-CONFIG_HID_HOLTEK=m
-# CONFIG_HOLTEK_FF is not set
-CONFIG_HID_KEYTOUCH=m
-CONFIG_HID_KYE=m
-CONFIG_HID_UCLOGIC=m
-CONFIG_HID_WALTOP=m
-CONFIG_HID_GYRATION=m
-CONFIG_HID_ICADE=m
-CONFIG_HID_TWINHAN=m
-CONFIG_HID_KENSINGTON=y
-CONFIG_HID_LCPOWER=m
-CONFIG_HID_LENOVO_TPKBD=m
-CONFIG_HID_LOGITECH=y
-CONFIG_HID_LOGITECH_DJ=m
-# CONFIG_LOGITECH_FF is not set
-# CONFIG_LOGIRUMBLEPAD2_FF is not set
-# CONFIG_LOGIG940_FF is not set
-# CONFIG_LOGIWHEELS_FF is not set
-CONFIG_HID_MAGICMOUSE=y
-CONFIG_HID_MICROSOFT=y
-CONFIG_HID_MONTEREY=y
-CONFIG_HID_MULTITOUCH=m
-CONFIG_HID_NTRIG=y
-CONFIG_HID_ORTEK=m
-CONFIG_HID_PANTHERLORD=m
-# CONFIG_PANTHERLORD_FF is not set
-CONFIG_HID_PETALYNX=m
-CONFIG_HID_PICOLCD=m
-CONFIG_HID_PICOLCD_FB=y
-CONFIG_HID_PICOLCD_BACKLIGHT=y
-CONFIG_HID_PICOLCD_LCD=y
-CONFIG_HID_PICOLCD_LEDS=y
-CONFIG_HID_PICOLCD_CIR=y
-CONFIG_HID_PLANTRONICS=y
-CONFIG_HID_PRIMAX=m
-CONFIG_HID_PS3REMOTE=m
-CONFIG_HID_ROCCAT=m
-CONFIG_HID_SAITEK=m
-CONFIG_HID_SAMSUNG=m
-CONFIG_HID_SONY=m
-CONFIG_HID_SPEEDLINK=m
-CONFIG_HID_STEELSERIES=m
-CONFIG_HID_SUNPLUS=m
-CONFIG_HID_RMI=m
-CONFIG_HID_GREENASIA=m
-# CONFIG_GREENASIA_FF is not set
-CONFIG_HID_SMARTJOYPLUS=m
-# CONFIG_SMARTJOYPLUS_FF is not set
-CONFIG_HID_TIVO=m
-CONFIG_HID_TOPSEED=m
-CONFIG_HID_THINGM=m
-CONFIG_HID_THRUSTMASTER=m
-# CONFIG_THRUSTMASTER_FF is not set
-CONFIG_HID_WACOM=m
-CONFIG_HID_WIIMOTE=m
-CONFIG_HID_WIIMOTE_EXT=y
-CONFIG_HID_ZEROPLUS=m
-# CONFIG_ZEROPLUS_FF is not set
-CONFIG_HID_ZYDACRON=m
-# CONFIG_HID_SENSOR_HUB is not set
-CONFIG_HID_ALPS=m
-
-#
-# USB HID support
-#
-CONFIG_USB_HID=y
-CONFIG_HID_PID=y
-CONFIG_USB_HIDDEV=y
-
-#
-# I2C HID support
-#
-CONFIG_I2C_HID=m
-CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
-CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-CONFIG_USB_SUPPORT=y
-CONFIG_USB_COMMON=y
-CONFIG_USB_ARCH_HAS_HCD=y
-CONFIG_USB=y
-CONFIG_USB_PCI=y
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-
-#
-# Miscellaneous USB options
-#
-CONFIG_USB_DEFAULT_PERSIST=y
-# CONFIG_USB_DYNAMIC_MINORS is not set
-# CONFIG_USB_OTG is not set
-# CONFIG_USB_OTG_WHITELIST is not set
-# CONFIG_USB_OTG_FSM is not set
-CONFIG_USB_LEDS_TRIGGER_USBPORT=m
-CONFIG_USB_MON=y
-CONFIG_USB_WUSB=m
-CONFIG_USB_WUSB_CBAF=m
-# CONFIG_USB_WUSB_CBAF_DEBUG is not set
-
-#
-# USB Host Controller Drivers
-#
-# CONFIG_USB_C67X00_HCD is not set
-CONFIG_USB_XHCI_HCD=y
-# CONFIG_USB_XHCI_DBGCAP is not set
-CONFIG_USB_XHCI_PCI=y
-# CONFIG_USB_XHCI_PLATFORM is not set
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_ROOT_HUB_TT=y
-CONFIG_USB_EHCI_TT_NEWSCHED=y
-CONFIG_USB_EHCI_PCI=y
-CONFIG_USB_EHCI_HCD_PPC_OF=y
-# CONFIG_USB_EHCI_HCD_PLATFORM is not set
-# CONFIG_USB_OXU210HP_HCD is not set
-# CONFIG_USB_ISP116X_HCD is not set
-# CONFIG_USB_ISP1760_HCD is not set
-# CONFIG_USB_ISP1362_HCD is not set
-# CONFIG_USB_FOTG210_HCD is not set
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
-CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
-CONFIG_USB_OHCI_HCD_PPC_OF=y
-CONFIG_USB_OHCI_HCD_PCI=y
-# CONFIG_USB_OHCI_HCD_PLATFORM is not set
-CONFIG_USB_UHCI_HCD=y
-# CONFIG_USB_U132_HCD is not set
-# CONFIG_USB_SL811_HCD is not set
-# CONFIG_USB_R8A66597_HCD is not set
-# CONFIG_USB_WHCI_HCD is not set
-CONFIG_USB_HWA_HCD=m
-# CONFIG_USB_HCD_BCMA is not set
-# CONFIG_USB_HCD_SSB is not set
-# CONFIG_USB_HCD_TEST_MODE is not set
-
-#
-# USB Device Class drivers
-#
-CONFIG_USB_ACM=m
-CONFIG_USB_PRINTER=m
-CONFIG_USB_WDM=m
-CONFIG_USB_TMC=m
-
-#
-# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
-#
-
-#
-# also be needed; see USB_STORAGE Help for more info
-#
-CONFIG_USB_STORAGE=m
-# CONFIG_USB_STORAGE_DEBUG is not set
-CONFIG_USB_STORAGE_REALTEK=m
-CONFIG_REALTEK_AUTOPM=y
-CONFIG_USB_STORAGE_DATAFAB=m
-CONFIG_USB_STORAGE_FREECOM=m
-# CONFIG_USB_STORAGE_ISD200 is not set
-CONFIG_USB_STORAGE_USBAT=m
-CONFIG_USB_STORAGE_SDDR09=m
-CONFIG_USB_STORAGE_SDDR55=m
-CONFIG_USB_STORAGE_JUMPSHOT=m
-CONFIG_USB_STORAGE_ALAUDA=m
-CONFIG_USB_STORAGE_ONETOUCH=m
-CONFIG_USB_STORAGE_KARMA=m
-CONFIG_USB_STORAGE_CYPRESS_ATACB=m
-CONFIG_USB_STORAGE_ENE_UB6250=m
-CONFIG_USB_UAS=m
-
-#
-# USB Imaging devices
-#
-CONFIG_USB_MDC800=m
-CONFIG_USB_MICROTEK=m
-CONFIG_USBIP_CORE=m
-# CONFIG_USBIP_VHCI_HCD is not set
-# CONFIG_USBIP_HOST is not set
-# CONFIG_USBIP_DEBUG is not set
-# CONFIG_USB_DWC3 is not set
-# CONFIG_USB_CHIPIDEA is not set
-
-#
-# USB port drivers
-#
-CONFIG_USB_USS720=m
-CONFIG_USB_SERIAL=y
-CONFIG_USB_SERIAL_CONSOLE=y
-CONFIG_USB_SERIAL_GENERIC=y
-# CONFIG_USB_SERIAL_SIMPLE is not set
-CONFIG_USB_SERIAL_AIRCABLE=m
-CONFIG_USB_SERIAL_ARK3116=m
-CONFIG_USB_SERIAL_BELKIN=m
-CONFIG_USB_SERIAL_CH341=m
-CONFIG_USB_SERIAL_WHITEHEAT=m
-CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
-CONFIG_USB_SERIAL_CP210X=m
-CONFIG_USB_SERIAL_CYPRESS_M8=m
-CONFIG_USB_SERIAL_EMPEG=m
-CONFIG_USB_SERIAL_FTDI_SIO=m
-CONFIG_USB_SERIAL_VISOR=m
-CONFIG_USB_SERIAL_IPAQ=m
-CONFIG_USB_SERIAL_IR=m
-CONFIG_USB_SERIAL_EDGEPORT=m
-CONFIG_USB_SERIAL_EDGEPORT_TI=m
-# CONFIG_USB_SERIAL_F81232 is not set
-CONFIG_USB_SERIAL_GARMIN=m
-CONFIG_USB_SERIAL_IPW=m
-CONFIG_USB_SERIAL_IUU=m
-CONFIG_USB_SERIAL_KEYSPAN_PDA=m
-CONFIG_USB_SERIAL_KEYSPAN=m
-CONFIG_USB_SERIAL_KLSI=m
-CONFIG_USB_SERIAL_KOBIL_SCT=m
-CONFIG_USB_SERIAL_MCT_U232=m
-# CONFIG_USB_SERIAL_METRO is not set
-CONFIG_USB_SERIAL_MOS7720=m
-CONFIG_USB_SERIAL_MOS7715_PARPORT=y
-CONFIG_USB_SERIAL_MOS7840=m
-# CONFIG_USB_SERIAL_MXUPORT is not set
-CONFIG_USB_SERIAL_NAVMAN=m
-CONFIG_USB_SERIAL_PL2303=m
-CONFIG_USB_SERIAL_OTI6858=m
-CONFIG_USB_SERIAL_QCAUX=m
-CONFIG_USB_SERIAL_QUALCOMM=m
-CONFIG_USB_SERIAL_SPCP8X5=m
-CONFIG_USB_SERIAL_SAFE=m
-CONFIG_USB_SERIAL_SAFE_PADDED=y
-CONFIG_USB_SERIAL_SIERRAWIRELESS=m
-CONFIG_USB_SERIAL_SYMBOL=m
-CONFIG_USB_SERIAL_TI=m
-CONFIG_USB_SERIAL_CYBERJACK=m
-CONFIG_USB_SERIAL_XIRCOM=m
-CONFIG_USB_SERIAL_WWAN=m
-CONFIG_USB_SERIAL_OPTION=m
-CONFIG_USB_SERIAL_OMNINET=m
-CONFIG_USB_SERIAL_OPTICON=m
-CONFIG_USB_SERIAL_XSENS_MT=m
-# CONFIG_USB_SERIAL_WISHBONE is not set
-CONFIG_USB_SERIAL_SSU100=m
-CONFIG_USB_SERIAL_QT2=m
-# CONFIG_USB_SERIAL_UPD78F0730 is not set
-CONFIG_USB_SERIAL_DEBUG=m
-
-#
-# USB Miscellaneous drivers
-#
-CONFIG_USB_EMI62=m
-CONFIG_USB_EMI26=m
-CONFIG_USB_ADUTUX=m
-CONFIG_USB_SEVSEG=m
-# CONFIG_USB_RIO500 is not set
-CONFIG_USB_LEGOTOWER=m
-CONFIG_USB_LCD=m
-# CONFIG_USB_CYPRESS_CY7C63 is not set
-# CONFIG_USB_CYTHERM is not set
-CONFIG_USB_IDMOUSE=m
-CONFIG_USB_FTDI_ELAN=m
-CONFIG_USB_APPLEDISPLAY=m
-CONFIG_USB_SISUSBVGA=m
-CONFIG_USB_SISUSBVGA_CON=y
-CONFIG_USB_LD=m
-# CONFIG_USB_TRANCEVIBRATOR is not set
-CONFIG_USB_IOWARRIOR=m
-# CONFIG_USB_TEST is not set
-# CONFIG_USB_EHSET_TEST_FIXTURE is not set
-CONFIG_USB_ISIGHTFW=m
-# CONFIG_USB_YUREX is not set
-CONFIG_USB_EZUSB_FX2=m
-CONFIG_USB_HSIC_USB3503=m
-# CONFIG_USB_HSIC_USB4604 is not set
-# CONFIG_USB_LINK_LAYER_TEST is not set
-# CONFIG_USB_CHAOSKEY is not set
-CONFIG_USB_ATM=m
-CONFIG_USB_SPEEDTOUCH=m
-CONFIG_USB_CXACRU=m
-CONFIG_USB_UEAGLEATM=m
-CONFIG_USB_XUSBATM=m
-# CONFIG_USB_PHY is not set
-# CONFIG_USB_GADGET is not set
-CONFIG_TYPEC=y
-# CONFIG_TYPEC_TCPM is not set
-# CONFIG_TYPEC_TPS6598X is not set
-
-#
-# USB Type-C Multiplexer/DeMultiplexer Switch support
-#
-# CONFIG_TYPEC_MUX_PI3USB30532 is not set
-
-#
-# USB Type-C Alternate Mode drivers
-#
-CONFIG_TYPEC_DP_ALTMODE=y
-# CONFIG_USB_LED_TRIG is not set
-# CONFIG_USB_ULPI_BUS is not set
-CONFIG_UWB=m
-CONFIG_UWB_HWA=m
-CONFIG_UWB_WHCI=m
-CONFIG_UWB_I1480U=m
-CONFIG_MMC=m
-CONFIG_MMC_BLOCK=m
-CONFIG_MMC_BLOCK_MINORS=8
-CONFIG_SDIO_UART=m
-# CONFIG_MMC_TEST is not set
-
-#
-# MMC/SD/SDIO Host Controller Drivers
-#
-# CONFIG_MMC_DEBUG is not set
-CONFIG_MMC_SDHCI=m
-CONFIG_MMC_SDHCI_PCI=m
-CONFIG_MMC_RICOH_MMC=y
-CONFIG_MMC_SDHCI_PLTFM=m
-# CONFIG_MMC_SDHCI_OF_ESDHC is not set
-# CONFIG_MMC_SDHCI_OF_HLWD is not set
-# CONFIG_MMC_SDHCI_CADENCE is not set
-# CONFIG_MMC_SDHCI_F_SDH30 is not set
-# CONFIG_MMC_WBSD is not set
-CONFIG_MMC_TIFM_SD=m
-CONFIG_MMC_CB710=m
-CONFIG_MMC_VIA_SDMMC=m
-CONFIG_MMC_VUB300=m
-CONFIG_MMC_USHC=m
-# CONFIG_MMC_USDHI6ROL0 is not set
-CONFIG_MMC_REALTEK_PCI=m
-CONFIG_MMC_REALTEK_USB=m
-CONFIG_MMC_CQHCI=m
-# CONFIG_MMC_TOSHIBA_PCI is not set
-# CONFIG_MMC_MTK is not set
-CONFIG_MEMSTICK=m
-# CONFIG_MEMSTICK_DEBUG is not set
-
-#
-# MemoryStick drivers
-#
-# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
-CONFIG_MSPRO_BLOCK=m
-
-#
-# MemoryStick Host Controller Drivers
-#
-CONFIG_MEMSTICK_TIFM_MS=m
-CONFIG_MEMSTICK_JMICRON_38X=m
-CONFIG_MEMSTICK_R592=m
-CONFIG_MEMSTICK_REALTEK_PCI=m
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-
-#
-# LED drivers
-#
-CONFIG_LEDS_LM3530=m
-# CONFIG_LEDS_LM3642 is not set
-# CONFIG_LEDS_PCA9532 is not set
-# CONFIG_LEDS_GPIO is not set
-CONFIG_LEDS_LP3944=m
-CONFIG_LEDS_LP55XX_COMMON=m
-CONFIG_LEDS_LP5521=m
-CONFIG_LEDS_LP5523=m
-CONFIG_LEDS_LP5562=m
-# CONFIG_LEDS_PCA955X is not set
-# CONFIG_LEDS_PCA9633 is not set
-# CONFIG_LEDS_PWM is not set
-# CONFIG_LEDS_BD2802 is not set
-CONFIG_LEDS_LT3593=m
-# CONFIG_LEDS_TCA6507 is not set
-# CONFIG_LEDS_LM355x is not set
-# CONFIG_LEDS_OT200 is not set
-CONFIG_LEDS_BLINKM=m
-# CONFIG_LEDS_POWERNV is not set
-
-#
-# LED Triggers
-#
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_TIMER=m
-CONFIG_LEDS_TRIGGER_ONESHOT=m
-CONFIG_LEDS_TRIGGER_HEARTBEAT=m
-CONFIG_LEDS_TRIGGER_BACKLIGHT=m
-# CONFIG_LEDS_TRIGGER_CPU is not set
-CONFIG_LEDS_TRIGGER_GPIO=m
-CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
-
-#
-# iptables trigger is under Netfilter config (LED target)
-#
-CONFIG_LEDS_TRIGGER_TRANSIENT=m
-CONFIG_LEDS_TRIGGER_CAMERA=m
-# CONFIG_ACCESSIBILITY is not set
-CONFIG_INFINIBAND=m
-CONFIG_INFINIBAND_USER_MAD=m
-CONFIG_INFINIBAND_USER_ACCESS=m
-# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
-CONFIG_INFINIBAND_USER_MEM=y
-CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
-CONFIG_INFINIBAND_ADDR_TRANS=y
-CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
-CONFIG_INFINIBAND_MTHCA=m
-CONFIG_INFINIBAND_MTHCA_DEBUG=y
-CONFIG_INFINIBAND_EHCA=m
-# CONFIG_INFINIBAND_AMSO1100 is not set
-CONFIG_INFINIBAND_CXGB3=m
-# CONFIG_INFINIBAND_CXGB3_DEBUG is not set
-CONFIG_INFINIBAND_CXGB4=m
-CONFIG_INFINIBAND_I40IW=m
-CONFIG_MLX4_INFINIBAND=m
-CONFIG_MLX5_INFINIBAND=m
-CONFIG_INFINIBAND_NES=m
-# CONFIG_INFINIBAND_NES_DEBUG is not set
-CONFIG_INFINIBAND_OCRDMA=m
-CONFIG_INFINIBAND_IPOIB=m
-CONFIG_INFINIBAND_IPOIB_CM=y
-CONFIG_INFINIBAND_IPOIB_DEBUG=y
-# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
-CONFIG_INFINIBAND_SRP=m
-CONFIG_INFINIBAND_SRPT=m
-CONFIG_INFINIBAND_ISER=m
-CONFIG_INFINIBAND_ISERT=m
-CONFIG_RDMA_RXE=m
-CONFIG_INFINIBAND_QEDR=m
-CONFIG_INFINIBAND_BNXT_RE=m
-CONFIG_EDAC=y
-CONFIG_EDAC_LEGACY_SYSFS=y
-# CONFIG_EDAC_DEBUG is not set
-CONFIG_EDAC_MM_EDAC=m
-CONFIG_EDAC_CPC925=m
-CONFIG_RTC_LIB=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_HCTOSYS=y
-# CONFIG_RTC_SYSTOHC is not set
-CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
-# CONFIG_RTC_DEBUG is not set
-
-#
-# RTC interfaces
-#
-CONFIG_RTC_INTF_SYSFS=y
-CONFIG_RTC_INTF_PROC=y
-CONFIG_RTC_INTF_DEV=y
-# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
-# CONFIG_RTC_DRV_TEST is not set
-
-#
-# I2C RTC drivers
-#
-CONFIG_RTC_DRV_DS1307=m
-CONFIG_RTC_DRV_DS1374=m
-CONFIG_RTC_DRV_DS1672=m
-CONFIG_RTC_DRV_DS3232=m
-CONFIG_RTC_DRV_MAX6900=m
-CONFIG_RTC_DRV_RS5C372=m
-CONFIG_RTC_DRV_ISL1208=m
-CONFIG_RTC_DRV_ISL12022=m
-CONFIG_RTC_DRV_X1205=m
-CONFIG_RTC_DRV_PCF8523=m
-CONFIG_RTC_DRV_PCF8563=m
-CONFIG_RTC_DRV_PCF8583=m
-CONFIG_RTC_DRV_M41T80=m
-CONFIG_RTC_DRV_M41T80_WDT=y
-CONFIG_RTC_DRV_BQ32K=m
-# CONFIG_RTC_DRV_S35390A is not set
-CONFIG_RTC_DRV_FM3130=m
-CONFIG_RTC_DRV_RX8581=m
-CONFIG_RTC_DRV_RX8025=m
-CONFIG_RTC_DRV_EM3027=m
-CONFIG_RTC_DRV_RV3029C2=m
-
-#
-# SPI RTC drivers
-#
-
-#
-# Platform RTC drivers
-#
-CONFIG_RTC_DRV_CMOS=y
-CONFIG_RTC_DRV_DS1286=m
-CONFIG_RTC_DRV_DS1511=m
-CONFIG_RTC_DRV_DS1553=m
-CONFIG_RTC_DRV_DS1742=m
-CONFIG_RTC_DRV_STK17TA8=m
-# CONFIG_RTC_DRV_M48T86 is not set
-CONFIG_RTC_DRV_M48T35=m
-CONFIG_RTC_DRV_M48T59=m
-CONFIG_RTC_DRV_MSM6242=m
-CONFIG_RTC_DRV_BQ4802=m
-CONFIG_RTC_DRV_RP5C01=m
-CONFIG_RTC_DRV_V3020=m
-CONFIG_RTC_DRV_DS2404=m
-CONFIG_RTC_DRV_OPAL=y
-
-#
-# on-CPU RTC drivers
-#
-CONFIG_RTC_DRV_GENERIC=y
-# CONFIG_RTC_DRV_SNVS is not set
-
-#
-# HID Sensor RTC drivers
-#
-# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
-CONFIG_DMADEVICES=y
-# CONFIG_DMADEVICES_DEBUG is not set
-
-#
-# DMA Devices
-#
-CONFIG_DW_DMAC_CORE=m
-CONFIG_DW_DMAC=m
-# CONFIG_DW_DMAC_PCI is not set
-# CONFIG_DW_DMAC_BIG_ENDIAN_IO is not set
-# CONFIG_IDMA64 is not set
-# CONFIG_TIMB_DMA is not set
-CONFIG_DMA_ENGINE=y
-CONFIG_DMA_OF=y
-
-#
-# DMA Clients
-#
-CONFIG_NET_DMA_RH_KABI=y
-CONFIG_ASYNC_TX_DMA=y
-# CONFIG_DMATEST is not set
-
-#
-# DMABUF options
-#
-CONFIG_SYNC_FILE=y
-# CONFIG_SW_SYNC is not set
-CONFIG_AUXDISPLAY=y
-CONFIG_KS0108=m
-CONFIG_KS0108_PORT=0x378
-CONFIG_KS0108_DELAY=2
-CONFIG_UIO=m
-CONFIG_UIO_CIF=m
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_DMEM_GENIRQ is not set
-CONFIG_UIO_AEC=m
-CONFIG_UIO_SERCOS3=m
-CONFIG_UIO_PCI_GENERIC=m
-# CONFIG_UIO_NETX is not set
-# CONFIG_VFIO_IOMMU_TYPE1 is not set
-CONFIG_VFIO_IOMMU_SPAPR_TCE=m
-CONFIG_VFIO_SPAPR_EEH=m
-CONFIG_VFIO=m
-# CONFIG_VFIO_NOIOMMU is not set
-CONFIG_VFIO_PCI=m
-CONFIG_VFIO_PCI_MMAP=y
-CONFIG_VFIO_PCI_INTX=y
-# CONFIG_VFIO_MDEV is not set
-CONFIG_IRQ_BYPASS_MANAGER=y
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=m
-
-#
-# Virtio drivers
-#
-CONFIG_VIRTIO_PCI=m
-CONFIG_VIRTIO_PCI_LEGACY=y
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-# CONFIG_VIRTIO_MMIO is not set
-
-#
-# Microsoft Hyper-V guest support
-#
-# CONFIG_HYPERV_TSCPAGE is not set
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_W35UND is not set
-# CONFIG_PRISM2_USB is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_ASUS_OLED is not set
-# CONFIG_PANEL is not set
-# CONFIG_R8187SE is not set
-# CONFIG_RTL8192U is not set
-CONFIG_RTLLIB=m
-CONFIG_RTLLIB_CRYPTO_CCMP=m
-CONFIG_RTLLIB_CRYPTO_TKIP=m
-CONFIG_RTLLIB_CRYPTO_WEP=m
-CONFIG_RTL8192E=m
-CONFIG_R8712U=m
-# CONFIG_RTS5139 is not set
-# CONFIG_TRANZPORT is not set
-# CONFIG_IDE_PHISON is not set
-# CONFIG_LINE6_USB is not set
-# CONFIG_USB_SERIAL_QUATECH2 is not set
-# CONFIG_VT6655 is not set
-# CONFIG_VT6656 is not set
-# CONFIG_DX_SEP is not set
-
-#
-# IIO staging drivers
-#
-
-#
-# Accelerometers
-#
-
-#
-# Analog to digital converters
-#
-# CONFIG_AD7291 is not set
-# CONFIG_AD7606 is not set
-# CONFIG_AD799X is not set
-
-#
-# Analog digital bi-direction converters
-#
-# CONFIG_ADT7316 is not set
-
-#
-# Capacitance to digital converters
-#
-# CONFIG_AD7150 is not set
-# CONFIG_AD7152 is not set
-# CONFIG_AD7746 is not set
-
-#
-# Direct Digital Synthesis
-#
-
-#
-# Digital gyroscope sensors
-#
-
-#
-# Network Analyzer, Impedance Converters
-#
-# CONFIG_AD5933 is not set
-
-#
-# Light sensors
-#
-# CONFIG_SENSORS_ISL29018 is not set
-# CONFIG_SENSORS_ISL29028 is not set
-# CONFIG_TSL2583 is not set
-# CONFIG_TSL2x7x is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_SENSORS_HMC5843 is not set
-
-#
-# Active energy metering IC
-#
-# CONFIG_ADE7854 is not set
-
-#
-# Resolver to digital converters
-#
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_PERIODIC_RTC_TRIGGER is not set
-# CONFIG_IIO_GPIO_TRIGGER is not set
-# CONFIG_IIO_SIMPLE_DUMMY is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_CXT1E1 is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_SBE_2T3E3 is not set
-# CONFIG_USB_ENESTORAGE is not set
-# CONFIG_BCM_WIMAX is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_USB_WPAN_HCD is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_CSR_WIFI is not set
-# CONFIG_NET_VENDOR_SILICOM is not set
-# CONFIG_CED1401 is not set
-# CONFIG_DGRP is not set
-CONFIG_FIREWIRE_SERIAL=m
-# CONFIG_ZCACHE is not set
-
-#
-# Hardware Spinlock drivers
-#
-CONFIG_I8253_LOCK=y
-CONFIG_CLKBLD_I8253=y
-# CONFIG_MAILBOX is not set
-CONFIG_IOMMU_API=y
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_IOMMU_DEBUGFS is not set
-CONFIG_OF_IOMMU=y
-CONFIG_SPAPR_TCE_IOMMU=y
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-CONFIG_IIO=y
-CONFIG_IIO_BUFFER=y
-CONFIG_IIO_BUFFER_CB=y
-CONFIG_IIO_KFIFO_BUF=y
-# CONFIG_IIO_CONFIGFS is not set
-CONFIG_IIO_TRIGGER=y
-CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
-# CONFIG_IIO_SW_DEVICE is not set
-# CONFIG_IIO_SW_TRIGGER is not set
-
-#
-# Accelerometers
-#
-# CONFIG_IIO_ST_ACCEL_3AXIS is not set
-
-#
-# Analog to digital converters
-#
-# CONFIG_EXYNOS_ADC is not set
-# CONFIG_MAX1363 is not set
-# CONFIG_TI_ADC081C is not set
-# CONFIG_VIPERBOARD_ADC is not set
-
-#
-# Amplifiers
-#
-
-#
-# Hid Sensor IIO Common
-#
-
-#
-# Digital to analog converters
-#
-# CONFIG_AD5064 is not set
-# CONFIG_AD5380 is not set
-# CONFIG_AD5446 is not set
-# CONFIG_MAX517 is not set
-# CONFIG_MCP4725 is not set
-
-#
-# Frequency Synthesizers DDS/PLL
-#
-
-#
-# Clock Generator/Distribution
-#
-
-#
-# Phase-Locked Loop (PLL) frequency synthesizers
-#
-
-#
-# Digital gyroscope sensors
-#
-# CONFIG_IIO_ST_GYRO_3AXIS is not set
-# CONFIG_ITG3200 is not set
-
-#
-# Inertial measurement units
-#
-# CONFIG_INV_MPU6050_IIO is not set
-
-#
-# Light sensors
-#
-# CONFIG_ADJD_S311 is not set
-# CONFIG_SENSORS_TSL2563 is not set
-# CONFIG_VCNL4000 is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_AK8975 is not set
-# CONFIG_IIO_ST_MAGN_3AXIS is not set
-
-#
-# Inclinometer sensors
-#
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_INTERRUPT_TRIGGER is not set
-# CONFIG_IIO_SYSFS_TRIGGER is not set
-
-#
-# Pressure Sensors
-#
-# CONFIG_IIO_ST_PRESS is not set
-# CONFIG_NTB is not set
-# CONFIG_VME_BUS is not set
-CONFIG_PWM=y
-CONFIG_PWM_SYSFS=y
-CONFIG_IRQCHIP=y
-# CONFIG_IPACK_BUS is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_RAS=y
-CONFIG_LIBNVDIMM=m
-CONFIG_BLK_DEV_PMEM=m
-CONFIG_ND_BLK=m
-CONFIG_ND_CLAIM=y
-CONFIG_ND_BTT=m
-CONFIG_BTT=y
-CONFIG_NVDIMM_KEYS=y
-CONFIG_DAX_DRIVER=y
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-# CONFIG_STM is not set
-# CONFIG_INTEL_TH is not set
-CONFIG_NVMEM=y
-
-#
-# File systems
-#
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=m
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-# CONFIG_EXT4_DEBUG is not set
-CONFIG_JBD2=m
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=m
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=m
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-# CONFIG_XFS_WARN is not set
-# CONFIG_XFS_DEBUG is not set
-# CONFIG_GFS2_FS is not set
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-# CONFIG_BTRFS_ASSERT is not set
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-# CONFIG_QUOTA_DEBUG is not set
-CONFIG_QUOTA_TREE=y
-# CONFIG_QFMT_V1 is not set
-CONFIG_QFMT_V2=y
-CONFIG_QUOTACTL=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-# CONFIG_FSCACHE_OBJECT_LIST is not set
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_JFFS2_FS is not set
-# CONFIG_UBIFS_FS is not set
-# CONFIG_LOGFS is not set
-CONFIG_CRAMFS=m
-CONFIG_SQUASHFS=m
-CONFIG_SQUASHFS_XATTR=y
-CONFIG_SQUASHFS_ZLIB=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_SQUASHFS_XZ=y
-# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
-# CONFIG_SQUASHFS_EMBEDDED is not set
-CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-CONFIG_PSTORE_RAM=m
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-CONFIG_ORE=m
-CONFIG_NETWORK_FILESYSTEMS=y
-CONFIG_NFS_FS=m
-# CONFIG_NFS_V2 is not set
-CONFIG_NFS_V3=m
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=m
-# CONFIG_NFS_SWAP is not set
-CONFIG_NFS_V4_1=y
-CONFIG_NFS_V4_2=y
-CONFIG_PNFS_FILE_LAYOUT=m
-CONFIG_PNFS_BLOCK=m
-CONFIG_PNFS_OBJLAYOUT=m
-CONFIG_PNFS_FLEXFILE_LAYOUT=m
-CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
-# CONFIG_NFS_V4_1_MIGRATION is not set
-CONFIG_NFS_V4_SECURITY_LABEL=y
-CONFIG_NFS_FSCACHE=y
-# CONFIG_NFS_USE_LEGACY_DNS is not set
-CONFIG_NFS_USE_KERNEL_DNS=y
-CONFIG_NFS_DEBUG=y
-CONFIG_NFSD=m
-CONFIG_NFSD_V2_ACL=y
-CONFIG_NFSD_V3=y
-CONFIG_NFSD_V3_ACL=y
-CONFIG_NFSD_V4=y
-CONFIG_NFSD_PNFS=y
-# CONFIG_NFSD_BLOCKLAYOUT is not set
-CONFIG_NFSD_SCSILAYOUT=y
-CONFIG_NFSD_V4_SECURITY_LABEL=y
-# CONFIG_NFSD_FAULT_INJECTION is not set
-CONFIG_GRACE_PERIOD=m
-CONFIG_LOCKD=m
-CONFIG_LOCKD_V4=y
-CONFIG_NFS_ACL_SUPPORT=m
-CONFIG_NFS_COMMON=y
-CONFIG_SUNRPC=m
-CONFIG_SUNRPC_GSS=m
-CONFIG_SUNRPC_BACKCHANNEL=y
-CONFIG_RPCSEC_GSS_KRB5=m
-CONFIG_SUNRPC_DEBUG=y
-CONFIG_SUNRPC_XPRT_RDMA=m
-CONFIG_CEPH_FS=m
-CONFIG_CEPH_FS_POSIX_ACL=y
-CONFIG_CIFS=m
-CONFIG_CIFS_STATS=y
-# CONFIG_CIFS_STATS2 is not set
-CONFIG_CIFS_WEAK_PW_HASH=y
-CONFIG_CIFS_UPCALL=y
-CONFIG_CIFS_XATTR=y
-CONFIG_CIFS_POSIX=y
-CONFIG_CIFS_ACL=y
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
-CONFIG_CIFS_DFS_UPCALL=y
-# CONFIG_CIFS_SMB311 is not set
-# CONFIG_CIFS_FSCACHE is not set
-# CONFIG_NCP_FS is not set
-# CONFIG_CODA_FS is not set
-# CONFIG_AFS_FS is not set
-CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_737=m
-CONFIG_NLS_CODEPAGE_775=m
-CONFIG_NLS_CODEPAGE_850=m
-CONFIG_NLS_CODEPAGE_852=m
-CONFIG_NLS_CODEPAGE_855=m
-CONFIG_NLS_CODEPAGE_857=m
-CONFIG_NLS_CODEPAGE_860=m
-CONFIG_NLS_CODEPAGE_861=m
-CONFIG_NLS_CODEPAGE_862=m
-CONFIG_NLS_CODEPAGE_863=m
-CONFIG_NLS_CODEPAGE_864=m
-CONFIG_NLS_CODEPAGE_865=m
-CONFIG_NLS_CODEPAGE_866=m
-CONFIG_NLS_CODEPAGE_869=m
-CONFIG_NLS_CODEPAGE_936=m
-CONFIG_NLS_CODEPAGE_950=m
-CONFIG_NLS_CODEPAGE_932=m
-CONFIG_NLS_CODEPAGE_949=m
-CONFIG_NLS_CODEPAGE_874=m
-CONFIG_NLS_ISO8859_8=m
-CONFIG_NLS_CODEPAGE_1250=m
-CONFIG_NLS_CODEPAGE_1251=m
-CONFIG_NLS_ASCII=y
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_ISO8859_2=m
-CONFIG_NLS_ISO8859_3=m
-CONFIG_NLS_ISO8859_4=m
-CONFIG_NLS_ISO8859_5=m
-CONFIG_NLS_ISO8859_6=m
-CONFIG_NLS_ISO8859_7=m
-CONFIG_NLS_ISO8859_9=m
-CONFIG_NLS_ISO8859_13=m
-CONFIG_NLS_ISO8859_14=m
-CONFIG_NLS_ISO8859_15=m
-CONFIG_NLS_KOI8_R=m
-CONFIG_NLS_KOI8_U=m
-CONFIG_NLS_MAC_ROMAN=m
-CONFIG_NLS_MAC_CELTIC=m
-CONFIG_NLS_MAC_CENTEURO=m
-CONFIG_NLS_MAC_CROATIAN=m
-CONFIG_NLS_MAC_CYRILLIC=m
-CONFIG_NLS_MAC_GAELIC=m
-CONFIG_NLS_MAC_GREEK=m
-CONFIG_NLS_MAC_ICELAND=m
-CONFIG_NLS_MAC_INUIT=m
-CONFIG_NLS_MAC_ROMANIAN=m
-CONFIG_NLS_MAC_TURKISH=m
-CONFIG_NLS_UTF8=m
-# CONFIG_DLM is not set
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_STRNCPY_FROM_USER=y
-CONFIG_GENERIC_STRNLEN_USER=y
-CONFIG_GENERIC_PCI_IOMAP=y
-CONFIG_GENERIC_IOMAP=y
-CONFIG_GENERIC_IO=y
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=m
-CONFIG_CRC8=m
-# CONFIG_RANDOM32_SELFTEST is not set
-CONFIG_842_COMPRESS=m
-CONFIG_842_DECOMPRESS=y
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=y
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
-CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
-CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_REED_SOLOMON=m
-CONFIG_REED_SOLOMON_ENC8=y
-CONFIG_REED_SOLOMON_DEC8=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_BTREE=y
-CONFIG_INTERVAL_TREE=y
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_IOMEM=y
-CONFIG_HAS_IOPORT=y
-CONFIG_HAS_DMA=y
-CONFIG_DMA_VIRT_OPS=y
-CONFIG_CHECK_SIGNATURE=y
-CONFIG_CPU_RMAP=y
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-CONFIG_IRQ_POLL=y
-CONFIG_MPILIB=y
-CONFIG_SIGNATURE=y
-CONFIG_OID_REGISTRY=y
-CONFIG_SG_POOL=y
-CONFIG_PARMAN=m
-CONFIG_SBITMAP=y
-
-#
-# Kernel hacking
-#
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=2048
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-CONFIG_PAGE_OWNER=y
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_SHIRQ=y
-CONFIG_LOCKUP_DETECTOR=y
-CONFIG_HARDLOCKUP_DETECTOR=y
-# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
-# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
-# CONFIG_WQ_WATCHDOG is not set
-CONFIG_PANIC_ON_OOPS=y
-CONFIG_PANIC_ON_OOPS_VALUE=1
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-# CONFIG_DEBUG_OBJECTS is not set
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-# CONFIG_DEBUG_KMEMLEAK is not set
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-# CONFIG_PROVE_LOCKING is not set
-# CONFIG_LOCK_STAT is not set
-# CONFIG_DEBUG_RT_MUTEXES is not set
-# CONFIG_RT_MUTEX_TESTER is not set
-# CONFIG_DEBUG_SPINLOCK is not set
-# CONFIG_DEBUG_MUTEXES is not set
-# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
-# CONFIG_DEBUG_RWSEMS is not set
-# CONFIG_DEBUG_LOCK_ALLOC is not set
-# CONFIG_DEBUG_ATOMIC_SLEEP is not set
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-# CONFIG_DEBUG_STACK_USAGE is not set
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-# CONFIG_DEBUG_VM is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-# CONFIG_TEST_LIST_SORT is not set
-# CONFIG_DEBUG_SG is not set
-# CONFIG_DEBUG_NOTIFIERS is not set
-# CONFIG_DEBUG_CREDENTIALS is not set
-
-#
-# RCU Debugging
-#
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-# CONFIG_DEBUG_PER_CPU_MAPS is not set
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-# CONFIG_FAULT_INJECTION is not set
-# CONFIG_LATENCYTOP is not set
-CONFIG_PAGE_EXTENSION=y
-# CONFIG_DEBUG_PAGEALLOC is not set
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-# CONFIG_FUNCTION_GRAPH_TRACER is not set
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-# CONFIG_STACK_TRACER is not set
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-# CONFIG_FUNCTION_PROFILER is not set
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_TEST_PARMAN is not set
-# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-# CONFIG_DMA_API_DEBUG is not set
-CONFIG_ATOMIC64_SELFTEST=y
-CONFIG_ASYNC_RAID6_TEST=m
-# CONFIG_SAMPLES is not set
-CONFIG_HAVE_ARCH_KGDB=y
-CONFIG_KGDB=y
-CONFIG_KGDB_SERIAL_CONSOLE=y
-CONFIG_KGDB_TESTS=y
-# CONFIG_KGDB_TESTS_ON_BOOT is not set
-CONFIG_KGDB_KDB=y
-CONFIG_KDB_KEYBOARD=y
-CONFIG_KDB_CONTINUE_CATASTROPHIC=0
-# CONFIG_TEST_STRING_HELPERS is not set
-CONFIG_TEST_KSTRTOX=y
-CONFIG_PPC_DISABLE_WERROR=y
-CONFIG_PRINT_STACK_DEPTH=64
-CONFIG_DEBUG_STACKOVERFLOW=y
-# CONFIG_HCALL_STATS is not set
-CONFIG_PPC_EMULATED_STATS=y
-# CONFIG_CODE_PATCHING_SELFTEST is not set
-# CONFIG_FTR_FIXUP_SELFTEST is not set
-CONFIG_MSI_BITMAP_SELFTEST=y
-CONFIG_XMON=y
-# CONFIG_XMON_DEFAULT is not set
-CONFIG_XMON_DISASSEMBLY=y
-CONFIG_DEBUGGER=y
-CONFIG_BOOTX_TEXT=y
-# CONFIG_PPC_EARLY_DEBUG is not set
-CONFIG_STRICT_DEVMEM=y
-# CONFIG_PPC_DEBUG_RFI is not set
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_KEYS_COMPAT=y
-CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_BIG_KEYS=y
-CONFIG_TRUSTED_KEYS=y
-CONFIG_ENCRYPTED_KEYS=y
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
-CONFIG_SECURITY=y
-CONFIG_SECURITYFS=y
-CONFIG_SECURITY_NETWORK=y
-CONFIG_SECURITY_INFINIBAND=y
-CONFIG_SECURITY_NETWORK_XFRM=y
-CONFIG_SECURITY_PATH=y
-CONFIG_SECURITY_SECURELEVEL=y
-CONFIG_LSM_MMAP_MIN_ADDR=65535
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
-CONFIG_SECURITY_SELINUX=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
-CONFIG_SECURITY_SELINUX_DISABLE=y
-CONFIG_SECURITY_SELINUX_DEVELOP=y
-CONFIG_SECURITY_SELINUX_AVC_STATS=y
-CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
-# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
-# CONFIG_SECURITY_SMACK is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
-CONFIG_SECURITY_YAMA=y
-CONFIG_SECURITY_YAMA_STACKED=y
-CONFIG_INTEGRITY=y
-CONFIG_INTEGRITY_SIGNATURE=y
-CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
-CONFIG_IMA=y
-CONFIG_IMA_MEASURE_PCR_IDX=10
-CONFIG_IMA_AUDIT=y
-CONFIG_IMA_LSM_RULES=y
-CONFIG_IMA_APPRAISE=y
-CONFIG_IMA_TRUSTED_KEYRING=y
-CONFIG_EVM=y
-CONFIG_EVM_HMAC_VERSION=2
-CONFIG_DEFAULT_SECURITY_SELINUX=y
-# CONFIG_DEFAULT_SECURITY_YAMA is not set
-# CONFIG_DEFAULT_SECURITY_DAC is not set
-CONFIG_DEFAULT_SECURITY="selinux"
-CONFIG_XOR_BLOCKS=m
-CONFIG_ASYNC_CORE=m
-CONFIG_ASYNC_MEMCPY=m
-CONFIG_ASYNC_XOR=m
-CONFIG_ASYNC_PQ=m
-CONFIG_ASYNC_RAID6_RECOV=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_ACOMP2=y
-# CONFIG_CRYPTO_RSA is not set
-# CONFIG_CRYPTO_DH is not set
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-# CONFIG_CRYPTO_CRYPTD is not set
-# CONFIG_CRYPTO_MCRYPTD is not set
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRCT10DIF=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-# CONFIG_CRYPTO_SHA1_PPC is not set
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=y
-CONFIG_CRYPTO_842=m
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-CONFIG_CRYPTO_DEV_NX=y
-CONFIG_CRYPTO_DEV_NX_ENCRYPT=m
-CONFIG_CRYPTO_DEV_NX_COMPRESS=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=y
-CONFIG_CRYPTO_DEV_VMX=y
-CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m
-CONFIG_CRYPTO_DEV_CHELSIO=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-# CONFIG_PKCS7_MESSAGE_PARSER is not set
-# CONFIG_PPC_CLOCK is not set
-CONFIG_HAVE_KVM_IRQCHIP=y
-CONFIG_HAVE_KVM_IRQFD=y
-CONFIG_HAVE_KVM_EVENTFD=y
-CONFIG_KVM_MMIO=y
-CONFIG_KVM_VFIO=y
-CONFIG_HAVE_KVM_IRQ_BYPASS=y
-CONFIG_VIRTUALIZATION=y
-CONFIG_KVM=y
-CONFIG_KVM_BOOK3S_HANDLER=y
-CONFIG_KVM_BOOK3S_64_HANDLER=y
-CONFIG_KVM_BOOK3S_PR_POSSIBLE=y
-CONFIG_KVM_BOOK3S_HV_POSSIBLE=y
-CONFIG_KVM_BOOK3S_64=m
-CONFIG_KVM_BOOK3S_64_HV=m
-CONFIG_KVM_BOOK3S_64_PR=m
-# CONFIG_KVM_BOOK3S_HV_EXIT_TIMING is not set
-CONFIG_KVM_XICS=y
-CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64le-debug.config b/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64le-debug.config
deleted file mode 100644
index d2693bb..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64le-debug.config
+++ /dev/null
@@ -1,5684 +0,0 @@
-# powerpc
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/powerpc 3.10.0 Kernel Configuration
-#
-CONFIG_PPC64=y
-
-#
-# Processor support
-#
-CONFIG_PPC_BOOK3S_64=y
-# CONFIG_PPC_BOOK3E_64 is not set
-# CONFIG_POWER7_CPU is not set
-CONFIG_POWER8_CPU=y
-CONFIG_PPC_BOOK3S=y
-CONFIG_POWER3=y
-CONFIG_POWER4=y
-# CONFIG_TUNE_CELL is not set
-CONFIG_PPC_FPU=y
-CONFIG_ALTIVEC=y
-CONFIG_VSX=y
-CONFIG_PPC_ICSWX=y
-# CONFIG_PPC_ICSWX_PID is not set
-# CONFIG_PPC_ICSWX_USE_SIGILL is not set
-CONFIG_PPC_STD_MMU=y
-CONFIG_PPC_STD_MMU_64=y
-CONFIG_PPC_MM_SLICES=y
-CONFIG_PPC_HAVE_PMU_SUPPORT=y
-CONFIG_PPC_PERF_CTRS=y
-CONFIG_SMP=y
-CONFIG_NR_CPUS=2048
-CONFIG_PPC_DOORBELL=y
-# CONFIG_CPU_BIG_ENDIAN is not set
-CONFIG_CPU_LITTLE_ENDIAN=y
-CONFIG_PPC64_BOOT_WRAPPER=y
-CONFIG_64BIT=y
-CONFIG_WORD_SIZE=64
-CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_MMU=y
-CONFIG_ARCH_MMAP_RND_BITS_MAX=28
-CONFIG_ARCH_MMAP_RND_BITS_MIN=14
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=13
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7
-CONFIG_HAVE_SETUP_PER_CPU_AREA=y
-CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
-CONFIG_NR_IRQS=512
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-CONFIG_ARCH_HAS_ILOG2_U32=y
-CONFIG_ARCH_HAS_ILOG2_U64=y
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK=y
-CONFIG_PPC=y
-CONFIG_PPC_BARRIER_NOSPEC=y
-# CONFIG_GENERIC_CSUM is not set
-CONFIG_EARLY_PRINTK=y
-CONFIG_PANIC_TIMEOUT=180
-CONFIG_COMPAT=y
-CONFIG_SYSVIPC_COMPAT=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_ARCH_MAY_HAVE_PC_FDC=y
-CONFIG_PPC_OF=y
-CONFIG_PPC_UDBG_16550=y
-# CONFIG_GENERIC_TBSYNC is not set
-CONFIG_AUDIT_ARCH=y
-CONFIG_GENERIC_BUG=y
-CONFIG_EPAPR_BOOT=y
-# CONFIG_DEFAULT_UIMAGE is not set
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_ARCH_SUSPEND_POSSIBLE=y
-# CONFIG_PPC_DCR_NATIVE is not set
-# CONFIG_PPC_DCR_MMIO is not set
-# CONFIG_PPC_OF_PLATFORM_PCI is not set
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_PPC_EMULATE_SSTEP=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
-CONFIG_AUDIT=y
-CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
-CONFIG_AUDIT_TREE=y
-CONFIG_HAVE_GENERIC_HARDIRQS=y
-
-#
-# IRQ subsystem
-#
-CONFIG_GENERIC_HARDIRQS=y
-CONFIG_GENERIC_IRQ_SHOW=y
-CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
-CONFIG_HARDIRQS_SW_RESEND=y
-CONFIG_IRQ_DOMAIN=y
-# CONFIG_IRQ_DOMAIN_DEBUG is not set
-CONFIG_IRQ_FORCED_THREADING=y
-CONFIG_SPARSE_IRQ=y
-CONFIG_GENERIC_TIME_VSYSCALL_OLD=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-CONFIG_ARCH_HAS_TICK_BROADCAST=y
-CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
-CONFIG_GENERIC_CMOS_UPDATE=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-# CONFIG_NO_HZ_IDLE is not set
-CONFIG_NO_HZ_FULL=y
-# CONFIG_NO_HZ_FULL_ALL is not set
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_BSD_PROCESS_ACCT_V3=y
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_CONTEXT_TRACKING=y
-CONFIG_RCU_USER_QS=y
-# CONFIG_CONTEXT_TRACKING_FORCE is not set
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-# CONFIG_BUILD_BIN2C is not set
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=20
-CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
-CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
-CONFIG_NUMA_BALANCING=y
-CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
-CONFIG_MEMCG=y
-CONFIG_MEMCG_SWAP=y
-CONFIG_MEMCG_SWAP_ENABLED=y
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-CONFIG_DEBUG_BLK_CGROUP=y
-CONFIG_CHECKPOINT_RESTORE=y
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-CONFIG_SCHED_AUTOGROUP=y
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_HAVE_PCSPKR_PLATFORM=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_PCSPKR_PLATFORM=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-CONFIG_USERFAULTFD=y
-CONFIG_PCI_QUIRKS=y
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_OPROFILE=m
-CONFIG_HAVE_OPROFILE=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_ARCH_USE_BUILTIN_BSWAP=y
-CONFIG_KRETPROBES=y
-CONFIG_HAVE_IOREMAP_PROT=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_HW_BREAKPOINT=y
-CONFIG_HAVE_PERF_EVENTS_NMI=y
-CONFIG_HAVE_PERF_REGS=y
-CONFIG_HAVE_PERF_USER_STACK_DUMP=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_HAVE_RCU_TABLE_FREE=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-# CONFIG_CC_STACKPROTECTOR is not set
-CONFIG_HAVE_CONTEXT_TRACKING=y
-CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
-CONFIG_ARCH_MMAP_RND_BITS=14
-CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS=7
-CONFIG_HAVE_RELIABLE_STACKTRACE=y
-CONFIG_CLONE_BACKWARDS=y
-CONFIG_OLD_SIGSUSPEND=y
-CONFIG_COMPAT_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
-CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_SHA1=y
-# CONFIG_MODULE_SIG_SHA224 is not set
-# CONFIG_MODULE_SIG_SHA256 is not set
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha1"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-CONFIG_OSF_PARTITION=y
-# CONFIG_AMIGA_PARTITION is not set
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_MAC_PARTITION=y
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-# CONFIG_LDM_PARTITION is not set
-CONFIG_SGI_PARTITION=y
-# CONFIG_ULTRIX_PARTITION is not set
-CONFIG_SUN_PARTITION=y
-CONFIG_KARMA_PARTITION=y
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_BLOCK_COMPAT=y
-CONFIG_BLK_MQ_PCI=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
-CONFIG_MQ_IOSCHED_DEADLINE=y
-CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PREEMPT_NOTIFIERS=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_UNINLINE_SPIN_UNLOCK=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_FREEZER=y
-CONFIG_PPC_MSI_BITMAP=y
-CONFIG_PPC_XICS=y
-CONFIG_PPC_ICP_NATIVE=y
-CONFIG_PPC_ICP_HV=y
-CONFIG_PPC_ICS_RTAS=y
-CONFIG_PPC_SCOM=y
-CONFIG_SCOM_DEBUGFS=y
-# CONFIG_GE_FPGA is not set
-
-#
-# Platform support
-#
-CONFIG_PPC_POWERNV=y
-CONFIG_OPAL_PRD=m
-CONFIG_PPC_PSERIES=y
-CONFIG_PPC_SPLPAR=y
-CONFIG_PSERIES_MSI=y
-CONFIG_PSERIES_ENERGY=m
-CONFIG_SCANLOG=y
-CONFIG_IO_EVENT_IRQ=y
-CONFIG_LPARCFG=y
-CONFIG_PPC_SMLPAR=y
-CONFIG_CMM=y
-CONFIG_HV_PERF_CTRS=y
-CONFIG_DTL=y
-# CONFIG_PPC_PMAC is not set
-# CONFIG_PPC_MAPLE is not set
-# CONFIG_PPC_PASEMI is not set
-# CONFIG_PPC_PS3 is not set
-# CONFIG_PPC_CELL is not set
-# CONFIG_PPC_CELL_NATIVE is not set
-# CONFIG_PPC_IBM_CELL_BLADE is not set
-# CONFIG_PPC_CELL_QPACE is not set
-# CONFIG_PQ2ADS is not set
-# CONFIG_PPC_WSP is not set
-CONFIG_KVM_GUEST=y
-CONFIG_EPAPR_PARAVIRT=y
-CONFIG_PPC_NATIVE=y
-CONFIG_PPC_OF_BOOT_TRAMPOLINE=y
-# CONFIG_UDBG_RTAS_CONSOLE is not set
-CONFIG_PPC_SMP_MUXED_IPI=y
-# CONFIG_IPIC is not set
-CONFIG_MPIC=y
-# CONFIG_PPC_EPAPR_HV_PIC is not set
-# CONFIG_MPIC_WEIRD is not set
-# CONFIG_MPIC_MSGR is not set
-CONFIG_PPC_I8259=y
-# CONFIG_U3_DART is not set
-CONFIG_PPC_RTAS=y
-CONFIG_RTAS_ERROR_LOGGING=y
-CONFIG_PPC_RTAS_DAEMON=y
-CONFIG_RTAS_PROC=y
-CONFIG_RTAS_FLASH=y
-# CONFIG_MMIO_NVRAM is not set
-# CONFIG_MPIC_U3_HT_IRQS is not set
-CONFIG_IBMVIO=y
-CONFIG_IBMEBUS=y
-CONFIG_EEH=y
-# CONFIG_PPC_MPC106 is not set
-# CONFIG_PPC_970_NAP is not set
-CONFIG_PPC_P7_NAP=y
-CONFIG_PPC_INDIRECT_PIO=y
-
-#
-# CPU Frequency scaling
-#
-CONFIG_CPU_FREQ=y
-CONFIG_CPU_FREQ_GOV_COMMON=y
-CONFIG_CPU_FREQ_STAT=m
-CONFIG_CPU_FREQ_STAT_DETAILS=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
-CONFIG_CPU_FREQ_GOV_POWERSAVE=y
-CONFIG_CPU_FREQ_GOV_USERSPACE=y
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
-CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
-
-#
-# PowerPC CPU frequency scaling drivers
-#
-CONFIG_POWERNV_CPUFREQ=y
-
-#
-# CPUIdle driver
-#
-CONFIG_CPU_IDLE=y
-# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
-# CONFIG_CPU_IDLE_GOV_LADDER is not set
-CONFIG_CPU_IDLE_GOV_MENU=y
-
-#
-# POWERPC CPU Idle Drivers
-#
-CONFIG_PSERIES_CPUIDLE=y
-CONFIG_POWERNV_CPUIDLE=y
-# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
-# CONFIG_FSL_ULI1575 is not set
-CONFIG_SIMPLE_GPIO=y
-
-#
-# Kernel options
-#
-CONFIG_HZ_100=y
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-# CONFIG_HZ_1000 is not set
-CONFIG_HZ=100
-CONFIG_SCHED_HRTICK=y
-# CONFIG_PREEMPT_NONE is not set
-CONFIG_PREEMPT_VOLUNTARY=y
-# CONFIG_PREEMPT is not set
-CONFIG_PREEMPT_COUNT=y
-CONFIG_BINFMT_ELF=y
-CONFIG_COMPAT_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_COREDUMP=y
-CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y
-CONFIG_PPC_TRANSACTIONAL_MEM=y
-# CONFIG_DISABLE_MPROFILE_KERNEL is not set
-CONFIG_MPROFILE_KERNEL=y
-CONFIG_IOMMU_HELPER=y
-CONFIG_SWIOTLB=y
-CONFIG_HOTPLUG_CPU=y
-CONFIG_ARCH_CPU_PROBE_RELEASE=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_HAS_WALK_MEMORY=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_KEXEC=y
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_CRASH_DUMP=y
-CONFIG_FA_DUMP=y
-CONFIG_IRQ_ALL_CPUS=y
-CONFIG_NUMA=y
-CONFIG_NODES_SHIFT=8
-CONFIG_USE_PERCPU_NUMA_NODE_ID=y
-CONFIG_HAVE_MEMORYLESS_NODES=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_SYS_SUPPORTS_HUGETLBFS=y
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_NEED_MULTIPLE_NODES=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_MEMORY_ISOLATION=y
-CONFIG_HAVE_BOOTMEM_INFO_NODE=y
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_MMU_NOTIFIER=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_MEMORY_FAILURE=y
-CONFIG_HWPOISON_INJECT=m
-CONFIG_TRANSPARENT_HUGEPAGE=y
-# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
-CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-CONFIG_FRONTSWAP=y
-CONFIG_CMA=y
-# CONFIG_CMA_DEBUG is not set
-CONFIG_ZSWAP=y
-CONFIG_ZPOOL=y
-CONFIG_ZBUD=y
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-CONFIG_PERCPU_STATS=y
-CONFIG_ARCH_MEMORY_PROBE=y
-CONFIG_NODES_SPAN_OTHER_NODES=y
-CONFIG_PPC_HAS_HASH_64K=y
-# CONFIG_PPC_4K_PAGES is not set
-CONFIG_PPC_64K_PAGES=y
-CONFIG_FORCE_MAX_ZONEORDER=9
-CONFIG_PPC_SUBPAGE_PROT=y
-CONFIG_PPC_COPRO_BASE=y
-CONFIG_SCHED_SMT=y
-CONFIG_PPC_DENORMALISATION=y
-# CONFIG_CMDLINE_BOOL is not set
-CONFIG_EXTRA_TARGETS=""
-CONFIG_SUSPEND=y
-CONFIG_SUSPEND_FREEZER=y
-# CONFIG_HIBERNATION is not set
-CONFIG_PM_SLEEP=y
-CONFIG_PM_SLEEP_SMP=y
-# CONFIG_PM_AUTOSLEEP is not set
-# CONFIG_PM_WAKELOCKS is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-# CONFIG_PM_TEST_SUSPEND is not set
-CONFIG_PM_SLEEP_DEBUG=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_SECCOMP=y
-CONFIG_PPC_RTAS_FILTER=y
-CONFIG_ISA_DMA_API=y
-
-#
-# Bus options
-#
-CONFIG_ZONE_DMA=y
-CONFIG_NEED_DMA_MAP_STATE=y
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_GENERIC_ISA_DMA=y
-# CONFIG_PPC_INDIRECT_PCI is not set
-CONFIG_PCI=y
-CONFIG_PCI_DOMAINS=y
-CONFIG_PCI_SYSCALL=y
-CONFIG_PCIEPORTBUS=y
-# CONFIG_HOTPLUG_PCI_PCIE is not set
-CONFIG_PCIEAER=y
-CONFIG_PCIE_ECRC=y
-CONFIG_PCIEAER_INJECT=m
-CONFIG_PCIEASPM=y
-# CONFIG_PCIEASPM_DEBUG is not set
-CONFIG_PCIEASPM_DEFAULT=y
-# CONFIG_PCIEASPM_POWERSAVE is not set
-# CONFIG_PCIEASPM_PERFORMANCE is not set
-CONFIG_PCIE_PME=y
-# CONFIG_PCIE_DPC is not set
-CONFIG_PCI_BUS_ADDR_T_64BIT=y
-CONFIG_PCI_MSI=y
-# CONFIG_PCI_DEBUG is not set
-# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
-CONFIG_PCI_STUB=y
-CONFIG_PCI_ATS=y
-CONFIG_PCI_IOV=y
-CONFIG_PCI_PRI=y
-CONFIG_PCI_PASID=y
-CONFIG_HOTPLUG_PCI=y
-# CONFIG_HOTPLUG_PCI_CPCI is not set
-CONFIG_HOTPLUG_PCI_SHPC=y
-CONFIG_HOTPLUG_PCI_RPA=m
-CONFIG_HOTPLUG_PCI_RPA_DLPAR=m
-CONFIG_PCCARD=y
-# CONFIG_PCMCIA is not set
-CONFIG_CARDBUS=y
-
-#
-# PC-card bridges
-#
-CONFIG_YENTA=m
-CONFIG_YENTA_O2=y
-CONFIG_YENTA_RICOH=y
-CONFIG_YENTA_TI=y
-CONFIG_YENTA_ENE_TUNE=y
-CONFIG_YENTA_TOSHIBA=y
-# CONFIG_HAS_RAPIDIO is not set
-# CONFIG_RAPIDIO is not set
-CONFIG_NONSTATIC_KERNEL=y
-CONFIG_RELOCATABLE=y
-CONFIG_PAGE_OFFSET=0xc000000000000000
-CONFIG_KERNEL_START=0xc000000000000000
-CONFIG_PHYSICAL_START=0x00000000
-CONFIG_ARCH_RANDOM=y
-CONFIG_NET=y
-CONFIG_COMPAT_NETLINK_MESSAGES=y
-CONFIG_NET_INGRESS=y
-CONFIG_NET_EGRESS=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_PACKET_DIAG=m
-CONFIG_UNIX=y
-CONFIG_UNIX_DIAG=m
-CONFIG_XFRM=y
-CONFIG_XFRM_ALGO=y
-CONFIG_XFRM_USER=y
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-CONFIG_XFRM_STATISTICS=y
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_FIB_TRIE_STATS=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-CONFIG_NET_IPGRE_DEMUX=m
-CONFIG_NET_IP_TUNNEL=m
-CONFIG_NET_IPGRE=m
-CONFIG_NET_IPGRE_BROADCAST=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NET_IPVTI=m
-CONFIG_NET_UDP_TUNNEL=m
-# CONFIG_NET_FOU is not set
-# CONFIG_NET_FOU_IP_TUNNELS is not set
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=y
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_INET_UDP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_TCP_CONG_DCTCP=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=m
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_VTI=m
-CONFIG_IPV6_SIT=m
-CONFIG_IPV6_SIT_6RD=y
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_GRE=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-# CONFIG_IPV6_SUBTREES is not set
-CONFIG_IPV6_MROUTE=y
-CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IPV6_PIMSM_V2=y
-CONFIG_NETLABEL=y
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
-CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
-CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=m
-
-#
-# Core Netfilter Configuration
-#
-CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_ACCT=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
-CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_LOG_COMMON=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_ZONES=y
-CONFIG_NF_CONNTRACK_PROCFS=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-CONFIG_NF_CONNTRACK_TIMEOUT=y
-CONFIG_NF_CONNTRACK_TIMESTAMP=y
-CONFIG_NF_CONNTRACK_LABELS=y
-CONFIG_NF_CT_PROTO_DCCP=y
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=y
-CONFIG_NF_CT_PROTO_UDPLITE=y
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-CONFIG_NF_CONNTRACK_SNMP=m
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NF_CT_NETLINK_TIMEOUT=m
-CONFIG_NF_CT_NETLINK_HELPER=m
-CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_NF_NAT_PROTO_DCCP=y
-CONFIG_NF_NAT_PROTO_UDPLITE=y
-CONFIG_NF_NAT_PROTO_SCTP=y
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_REDIRECT=m
-CONFIG_NETFILTER_SYNPROXY=m
-CONFIG_NF_TABLES=m
-CONFIG_NF_TABLES_INET=m
-CONFIG_NFT_EXTHDR=m
-CONFIG_NFT_META=m
-CONFIG_NFT_CT=m
-CONFIG_NFT_RBTREE=m
-CONFIG_NFT_HASH=m
-CONFIG_NFT_COUNTER=m
-CONFIG_NFT_LOG=m
-CONFIG_NFT_LIMIT=m
-CONFIG_NFT_MASQ=m
-CONFIG_NFT_REDIR=m
-CONFIG_NFT_NAT=m
-CONFIG_NFT_QUEUE=m
-CONFIG_NFT_REJECT=m
-CONFIG_NFT_REJECT_INET=m
-CONFIG_NFT_COMPAT=m
-CONFIG_NETFILTER_XTABLES=y
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
-CONFIG_NETFILTER_XT_CONNMARK=m
-CONFIG_NETFILTER_XT_SET=m
-
-#
-# Xtables targets
-#
-CONFIG_NETFILTER_XT_TARGET_AUDIT=m
-CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-CONFIG_NETFILTER_XT_TARGET_CT=m
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-CONFIG_NETFILTER_XT_TARGET_HMARK=m
-CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
-CONFIG_NETFILTER_XT_TARGET_LED=m
-CONFIG_NETFILTER_XT_TARGET_LOG=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_NAT=m
-CONFIG_NETFILTER_XT_TARGET_NETMAP=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
-CONFIG_NETFILTER_XT_TARGET_TEE=m
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
-CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
-CONFIG_NETFILTER_XT_MATCH_BPF=m
-CONFIG_NETFILTER_XT_MATCH_CGROUP=m
-CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
-CONFIG_NETFILTER_XT_MATCH_COMMENT=m
-CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
-CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
-CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
-CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
-CONFIG_NETFILTER_XT_MATCH_CPU=m
-CONFIG_NETFILTER_XT_MATCH_DCCP=m
-CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
-CONFIG_NETFILTER_XT_MATCH_DSCP=m
-CONFIG_NETFILTER_XT_MATCH_ECN=m
-CONFIG_NETFILTER_XT_MATCH_ESP=m
-CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_HELPER=m
-CONFIG_NETFILTER_XT_MATCH_HL=m
-CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
-CONFIG_NETFILTER_XT_MATCH_IPVS=m
-CONFIG_NETFILTER_XT_MATCH_LENGTH=m
-CONFIG_NETFILTER_XT_MATCH_LIMIT=m
-CONFIG_NETFILTER_XT_MATCH_MAC=m
-CONFIG_NETFILTER_XT_MATCH_MARK=m
-CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_NFACCT=m
-CONFIG_NETFILTER_XT_MATCH_OSF=m
-CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
-CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
-CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
-CONFIG_NETFILTER_XT_MATCH_QUOTA=m
-CONFIG_NETFILTER_XT_MATCH_RATEEST=m
-CONFIG_NETFILTER_XT_MATCH_REALM=m
-CONFIG_NETFILTER_XT_MATCH_RECENT=m
-CONFIG_NETFILTER_XT_MATCH_SCTP=m
-CONFIG_NETFILTER_XT_MATCH_SOCKET=m
-CONFIG_NETFILTER_XT_MATCH_STATE=m
-CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
-CONFIG_NETFILTER_XT_MATCH_STRING=m
-CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
-CONFIG_NETFILTER_XT_MATCH_U32=m
-CONFIG_IP_SET=m
-CONFIG_IP_SET_MAX=256
-CONFIG_IP_SET_BITMAP_IP=m
-CONFIG_IP_SET_BITMAP_IPMAC=m
-CONFIG_IP_SET_BITMAP_PORT=m
-CONFIG_IP_SET_HASH_IP=m
-CONFIG_IP_SET_HASH_IPMARK=m
-CONFIG_IP_SET_HASH_IPPORT=m
-CONFIG_IP_SET_HASH_IPPORTIP=m
-CONFIG_IP_SET_HASH_IPPORTNET=m
-CONFIG_IP_SET_HASH_IPMAC=m
-CONFIG_IP_SET_HASH_MAC=m
-CONFIG_IP_SET_HASH_NETPORTNET=m
-CONFIG_IP_SET_HASH_NET=m
-CONFIG_IP_SET_HASH_NETNET=m
-CONFIG_IP_SET_HASH_NETPORT=m
-CONFIG_IP_SET_HASH_NETIFACE=m
-CONFIG_IP_SET_LIST_SET=m
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-CONFIG_IP_VS_DEBUG=y
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-CONFIG_IP_VS_PROTO_SCTP=y
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS SH scheduler
-#
-CONFIG_IP_VS_SH_TAB_BITS=8
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-CONFIG_IP_VS_PE_SIP=m
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
-CONFIG_NF_TABLES_IPV4=m
-CONFIG_NFT_CHAIN_ROUTE_IPV4=m
-CONFIG_NFT_REJECT_IPV4=m
-CONFIG_NFT_DUP_IPV4=m
-CONFIG_NF_TABLES_ARP=m
-CONFIG_NF_DUP_IPV4=m
-CONFIG_NF_LOG_IPV4=m
-CONFIG_NF_REJECT_IPV4=m
-CONFIG_NF_NAT_IPV4=m
-CONFIG_NFT_CHAIN_NAT_IPV4=m
-CONFIG_NF_NAT_MASQUERADE_IPV4=m
-CONFIG_NFT_MASQ_IPV4=m
-CONFIG_NFT_REDIR_IPV4=m
-CONFIG_NF_NAT_SNMP_BASIC=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_RPFILTER=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_SYNPROXY=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_IP_NF_NAT=m
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_NF_TABLES_IPV6=m
-CONFIG_NFT_CHAIN_ROUTE_IPV6=m
-CONFIG_NFT_REJECT_IPV6=m
-CONFIG_NFT_DUP_IPV6=m
-CONFIG_NF_DUP_IPV6=m
-CONFIG_NF_REJECT_IPV6=m
-CONFIG_NF_LOG_IPV6=m
-CONFIG_NF_NAT_IPV6=m
-CONFIG_NFT_CHAIN_NAT_IPV6=m
-CONFIG_NF_NAT_MASQUERADE_IPV6=m
-CONFIG_NFT_MASQ_IPV6=m
-CONFIG_NFT_REDIR_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RPFILTER=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_TARGET_SYNPROXY=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-CONFIG_IP6_NF_NAT=m
-CONFIG_IP6_NF_TARGET_MASQUERADE=m
-CONFIG_IP6_NF_TARGET_NPT=m
-CONFIG_NF_TABLES_BRIDGE=m
-CONFIG_NFT_BRIDGE_META=m
-CONFIG_NFT_BRIDGE_REJECT=m
-CONFIG_NF_LOG_BRIDGE=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-CONFIG_NET_SCTPPROBE=m
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
-CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
-CONFIG_SCTP_COOKIE_HMAC_MD5=y
-CONFIG_SCTP_COOKIE_HMAC_SHA1=y
-CONFIG_INET_SCTP_DIAG=m
-# CONFIG_RDS is not set
-# CONFIG_TIPC is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-# CONFIG_ATM_MPOA is not set
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-CONFIG_L2TP=m
-CONFIG_L2TP_DEBUGFS=m
-CONFIG_L2TP_V3=y
-CONFIG_L2TP_IP=m
-CONFIG_L2TP_ETH=m
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_MRP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-CONFIG_BRIDGE_VLAN_FILTERING=y
-CONFIG_HAVE_NET_DSA=y
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_VLAN_8021Q_MVRP=y
-# CONFIG_DECNET is not set
-CONFIG_LLC=m
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_6LOWPAN=m
-# CONFIG_6LOWPAN_DEBUGFS is not set
-CONFIG_6LOWPAN_NHC=m
-CONFIG_6LOWPAN_NHC_DEST=m
-CONFIG_6LOWPAN_NHC_FRAGMENT=m
-CONFIG_6LOWPAN_NHC_HOP=m
-CONFIG_6LOWPAN_NHC_IPV6=m
-CONFIG_6LOWPAN_NHC_MOBILITY=m
-CONFIG_6LOWPAN_NHC_ROUTING=m
-CONFIG_6LOWPAN_NHC_UDP=m
-# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set
-# CONFIG_6LOWPAN_GHC_UDP is not set
-# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_IEEE802154_6LOWPAN=m
-CONFIG_MAC802154=m
-CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
-CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
-CONFIG_NET_SCH_MULTIQ=m
-CONFIG_NET_SCH_RED=m
-CONFIG_NET_SCH_SFB=m
-CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
-CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_CBS=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-CONFIG_NET_SCH_MQPRIO=m
-CONFIG_NET_SCH_CHOKE=m
-CONFIG_NET_SCH_QFQ=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_SCH_FQ=m
-# CONFIG_NET_SCH_HHF is not set
-# CONFIG_NET_SCH_PIE is not set
-CONFIG_NET_SCH_INGRESS=m
-CONFIG_NET_SCH_PLUG=m
-# CONFIG_NET_SCH_DEFAULT is not set
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_CLS_BPF=m
-CONFIG_NET_CLS_FLOWER=m
-CONFIG_NET_CLS_MATCHALL=m
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-# CONFIG_NET_EMATCH_CANID is not set
-CONFIG_NET_EMATCH_IPSET=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_SAMPLE=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-CONFIG_NET_ACT_CSUM=m
-CONFIG_NET_ACT_VLAN=m
-CONFIG_NET_ACT_TUNNEL_KEY=m
-CONFIG_NET_ACT_CONNMARK=m
-CONFIG_NET_ACT_SKBMOD=m
-# CONFIG_NET_ACT_IFE is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_OPENVSWITCH=m
-CONFIG_OPENVSWITCH_GRE=m
-CONFIG_OPENVSWITCH_VXLAN=m
-CONFIG_OPENVSWITCH_GENEVE=m
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
-CONFIG_NET_SWITCHDEV=y
-CONFIG_RPS=y
-CONFIG_RFS_ACCEL=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_HAMRADIO is not set
-CONFIG_CAN=m
-CONFIG_CAN_RAW=m
-CONFIG_CAN_BCM=m
-CONFIG_CAN_GW=m
-
-#
-# CAN Device Drivers
-#
-CONFIG_CAN_VCAN=m
-CONFIG_CAN_SLCAN=m
-CONFIG_CAN_DEV=m
-CONFIG_CAN_CALC_BITTIMING=y
-CONFIG_CAN_LEDS=y
-# CONFIG_PCH_CAN is not set
-# CONFIG_CAN_GRCAN is not set
-# CONFIG_CAN_MSCAN is not set
-CONFIG_CAN_SJA1000=m
-# CONFIG_CAN_SJA1000_ISA is not set
-CONFIG_CAN_SJA1000_PLATFORM=m
-CONFIG_CAN_SJA1000_OF_PLATFORM=m
-CONFIG_CAN_EMS_PCI=m
-CONFIG_CAN_PEAK_PCI=m
-CONFIG_CAN_PEAK_PCIEC=y
-CONFIG_CAN_KVASER_PCI=m
-CONFIG_CAN_PLX_PCI=m
-CONFIG_CAN_C_CAN=m
-CONFIG_CAN_C_CAN_PLATFORM=m
-CONFIG_CAN_C_CAN_PCI=m
-CONFIG_CAN_CC770=m
-# CONFIG_CAN_CC770_ISA is not set
-CONFIG_CAN_CC770_PLATFORM=m
-
-#
-# CAN USB interfaces
-#
-CONFIG_CAN_EMS_USB=m
-CONFIG_CAN_ESD_USB2=m
-CONFIG_CAN_KVASER_USB=m
-CONFIG_CAN_PEAK_USB=m
-CONFIG_CAN_8DEV_USB=m
-CONFIG_CAN_SOFTING=m
-CONFIG_CAN_DEBUG_DEVICES=y
-# CONFIG_IRDA is not set
-CONFIG_BT=m
-CONFIG_BT_BREDR=y
-CONFIG_BT_RFCOMM=m
-CONFIG_BT_RFCOMM_TTY=y
-CONFIG_BT_BNEP=m
-CONFIG_BT_BNEP_MC_FILTER=y
-CONFIG_BT_BNEP_PROTO_FILTER=y
-CONFIG_BT_CMTP=m
-CONFIG_BT_HIDP=m
-CONFIG_BT_HS=y
-CONFIG_BT_LE=y
-# CONFIG_BT_6LOWPAN is not set
-# CONFIG_BT_LEDS is not set
-# CONFIG_BT_SELFTEST is not set
-CONFIG_BT_DEBUGFS=y
-
-#
-# Bluetooth device drivers
-#
-CONFIG_BT_INTEL=m
-CONFIG_BT_BCM=m
-CONFIG_BT_RTL=m
-CONFIG_BT_HCIBTUSB=m
-CONFIG_BT_HCIBTUSB_BCM=y
-CONFIG_BT_HCIBTUSB_RTL=y
-CONFIG_BT_HCIBTSDIO=m
-CONFIG_BT_HCIUART=m
-CONFIG_BT_HCIUART_H4=y
-CONFIG_BT_HCIUART_BCSP=y
-CONFIG_BT_HCIUART_ATH3K=y
-CONFIG_BT_HCIUART_LL=y
-CONFIG_BT_HCIUART_3WIRE=y
-# CONFIG_BT_HCIUART_INTEL is not set
-# CONFIG_BT_HCIUART_BCM is not set
-# CONFIG_BT_HCIUART_QCA is not set
-# CONFIG_BT_HCIUART_AG6XX is not set
-# CONFIG_BT_HCIUART_MRVL is not set
-CONFIG_BT_HCIBCM203X=m
-CONFIG_BT_HCIBPA10X=m
-CONFIG_BT_HCIBFUSB=m
-CONFIG_BT_HCIVHCI=m
-CONFIG_BT_MRVL=m
-CONFIG_BT_MRVL_SDIO=m
-CONFIG_BT_ATH3K=m
-# CONFIG_AF_RXRPC is not set
-CONFIG_FIB_RULES=y
-CONFIG_WIRELESS=y
-CONFIG_WIRELESS_EXT=y
-CONFIG_WEXT_CORE=y
-CONFIG_WEXT_PROC=y
-CONFIG_WEXT_PRIV=y
-CONFIG_CFG80211=m
-# CONFIG_NL80211_TESTMODE is not set
-# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
-# CONFIG_CFG80211_REQUIRE_SIGNED_REGDB is not set
-CONFIG_CFG80211_DEFAULT_PS=y
-CONFIG_CFG80211_DEBUGFS=y
-CONFIG_CFG80211_CRDA_SUPPORT=y
-CONFIG_CFG80211_WEXT=y
-CONFIG_LIB80211=m
-# CONFIG_LIB80211_DEBUG is not set
-CONFIG_MAC80211=m
-CONFIG_MAC80211_HAS_RC=y
-CONFIG_MAC80211_RC_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
-# CONFIG_MAC80211_MESH is not set
-CONFIG_MAC80211_LEDS=y
-CONFIG_MAC80211_DEBUGFS=y
-CONFIG_MAC80211_MESSAGE_TRACING=y
-# CONFIG_MAC80211_DEBUG_MENU is not set
-CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_LEDS=y
-CONFIG_RFKILL_INPUT=y
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-CONFIG_CEPH_LIB=m
-CONFIG_CEPH_LIB_PRETTYDEBUG=y
-CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-CONFIG_DST_CACHE=y
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_PAGE_POOL=y
-CONFIG_FAILOVER=m
-CONFIG_HAVE_CBPF_JIT=y
-CONFIG_HAVE_EBPF_JIT=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-CONFIG_WANT_DEV_COREDUMP=y
-CONFIG_DEV_COREDUMP=y
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-# CONFIG_SYS_HYPERVISOR is not set
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-CONFIG_REGMAP=y
-CONFIG_REGMAP_I2C=m
-CONFIG_DMA_SHARED_BUFFER=y
-
-#
-# Bus devices
-#
-CONFIG_CONNECTOR=y
-CONFIG_PROC_EVENTS=y
-CONFIG_MTD=m
-# CONFIG_MTD_TESTS is not set
-# CONFIG_MTD_REDBOOT_PARTS is not set
-# CONFIG_MTD_CMDLINE_PARTS is not set
-CONFIG_MTD_OF_PARTS=m
-# CONFIG_MTD_AR7_PARTS is not set
-
-#
-# User Modules And Translation Layers
-#
-# CONFIG_MTD_BLKDEVS is not set
-# CONFIG_MTD_BLOCK is not set
-# CONFIG_MTD_BLOCK_RO is not set
-# CONFIG_FTL is not set
-# CONFIG_NFTL is not set
-# CONFIG_INFTL is not set
-# CONFIG_RFD_FTL is not set
-# CONFIG_SSFDC is not set
-# CONFIG_SM_FTL is not set
-# CONFIG_MTD_OOPS is not set
-# CONFIG_MTD_SWAP is not set
-
-#
-# RAM/ROM/Flash chip drivers
-#
-# CONFIG_MTD_CFI is not set
-# CONFIG_MTD_JEDECPROBE is not set
-CONFIG_MTD_MAP_BANK_WIDTH_1=y
-CONFIG_MTD_MAP_BANK_WIDTH_2=y
-CONFIG_MTD_MAP_BANK_WIDTH_4=y
-# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
-CONFIG_MTD_CFI_I1=y
-CONFIG_MTD_CFI_I2=y
-# CONFIG_MTD_CFI_I4 is not set
-# CONFIG_MTD_CFI_I8 is not set
-# CONFIG_MTD_RAM is not set
-# CONFIG_MTD_ROM is not set
-# CONFIG_MTD_ABSENT is not set
-
-#
-# Mapping drivers for chip access
-#
-# CONFIG_MTD_COMPLEX_MAPPINGS is not set
-# CONFIG_MTD_INTEL_VR_NOR is not set
-# CONFIG_MTD_PLATRAM is not set
-
-#
-# Self-contained MTD device drivers
-#
-# CONFIG_MTD_PMC551 is not set
-# CONFIG_MTD_SLRAM is not set
-# CONFIG_MTD_PHRAM is not set
-# CONFIG_MTD_MTDRAM is not set
-# CONFIG_MTD_BLOCK2MTD is not set
-CONFIG_MTD_POWERNV_FLASH=m
-
-#
-# Disk-On-Chip Device Drivers
-#
-# CONFIG_MTD_DOCG3 is not set
-# CONFIG_MTD_NAND is not set
-# CONFIG_MTD_ONENAND is not set
-
-#
-# LPDDR flash memory drivers
-#
-# CONFIG_MTD_LPDDR is not set
-CONFIG_MTD_UBI=m
-CONFIG_MTD_UBI_WL_THRESHOLD=4096
-CONFIG_MTD_UBI_BEB_LIMIT=20
-# CONFIG_MTD_UBI_FASTMAP is not set
-# CONFIG_MTD_UBI_GLUEBI is not set
-CONFIG_DTC=y
-CONFIG_OF=y
-
-#
-# Device Tree and Open Firmware support
-#
-CONFIG_PROC_DEVICETREE=y
-# CONFIG_OF_SELFTEST is not set
-CONFIG_OF_FLATTREE=y
-CONFIG_OF_EARLY_FLATTREE=y
-CONFIG_OF_DYNAMIC=y
-CONFIG_OF_ADDRESS=y
-CONFIG_OF_IRQ=y
-CONFIG_OF_DEVICE=y
-CONFIG_OF_NET=y
-CONFIG_OF_MDIO=y
-CONFIG_OF_PCI=y
-CONFIG_OF_PCI_IRQ=y
-CONFIG_OF_MTD=y
-CONFIG_PARPORT=m
-CONFIG_PARPORT_PC=m
-CONFIG_PARPORT_SERIAL=m
-# CONFIG_PARPORT_PC_FIFO is not set
-# CONFIG_PARPORT_PC_SUPERIO is not set
-# CONFIG_PARPORT_GSC is not set
-# CONFIG_PARPORT_AX88796 is not set
-CONFIG_PARPORT_1284=y
-CONFIG_PARPORT_NOT_PC=y
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-# CONFIG_BLK_DEV_FD is not set
-# CONFIG_PARIDE is not set
-# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
-CONFIG_ZRAM=m
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=m
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-CONFIG_BLK_DEV_SX8=m
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=16384
-CONFIG_CDROM_PKTCDVD=m
-CONFIG_CDROM_PKTCDVD_BUFFERS=8
-# CONFIG_CDROM_PKTCDVD_WCACHE is not set
-CONFIG_ATA_OVER_ETH=m
-CONFIG_VIRTIO_BLK=m
-# CONFIG_BLK_DEV_HD is not set
-CONFIG_BLK_DEV_RBD=m
-CONFIG_BLK_DEV_RSXX=m
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_RDMA=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_RDMA=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-CONFIG_SENSORS_LIS3LV02D=m
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_DUMMY_IRQ is not set
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-# CONFIG_SGI_IOC4 is not set
-CONFIG_TIFM_CORE=m
-CONFIG_TIFM_7XX1=m
-# CONFIG_ICS932S401 is not set
-# CONFIG_ATMEL_SSC is not set
-CONFIG_ENCLOSURE_SERVICES=m
-# CONFIG_HP_ILO is not set
-CONFIG_APDS9802ALS=m
-CONFIG_ISL29003=m
-CONFIG_ISL29020=m
-CONFIG_SENSORS_TSL2550=m
-# CONFIG_SENSORS_BH1780 is not set
-CONFIG_SENSORS_BH1770=m
-CONFIG_SENSORS_APDS990X=m
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_BMP085_I2C is not set
-# CONFIG_PCH_PHUB is not set
-# CONFIG_USB_SWITCH_FSA9480 is not set
-# CONFIG_SRAM is not set
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-CONFIG_EEPROM_AT24=m
-CONFIG_EEPROM_LEGACY=m
-CONFIG_EEPROM_MAX6875=m
-CONFIG_EEPROM_93CX6=m
-CONFIG_CB710_CORE=m
-# CONFIG_CB710_DEBUG is not set
-CONFIG_CB710_DEBUG_ASSUMPTIONS=y
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_TI_ST is not set
-CONFIG_SENSORS_LIS3_I2C=m
-
-#
-# Altera FPGA firmware download module
-#
-CONFIG_ALTERA_STAPL=m
-CONFIG_GENWQE=m
-CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=1
-CONFIG_CXL_BASE=y
-CONFIG_CXL_KERNEL_API=y
-CONFIG_CXL_EEH=y
-CONFIG_CXL=m
-CONFIG_HAVE_IDE=y
-# CONFIG_IDE is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=m
-CONFIG_CHR_DEV_ST=m
-CONFIG_CHR_DEV_OSST=m
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-CONFIG_CHR_DEV_SCH=m
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_ATA=y
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_TCP=m
-CONFIG_ISCSI_BOOT_SYSFS=m
-CONFIG_SCSI_CXGB3_ISCSI=m
-CONFIG_SCSI_CXGB4_ISCSI=m
-CONFIG_SCSI_BNX2_ISCSI=m
-CONFIG_SCSI_BNX2X_FCOE=m
-CONFIG_BE2ISCSI=m
-CONFIG_CXLFLASH=m
-# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
-CONFIG_SCSI_HPSA=m
-CONFIG_SCSI_3W_9XXX=m
-CONFIG_SCSI_3W_SAS=m
-# CONFIG_SCSI_ACARD is not set
-CONFIG_SCSI_AACRAID=m
-# CONFIG_SCSI_AIC7XXX is not set
-# CONFIG_SCSI_AIC7XXX_OLD is not set
-CONFIG_SCSI_AIC79XX=m
-CONFIG_AIC79XX_CMDS_PER_DEVICE=4
-CONFIG_AIC79XX_RESET_DELAY_MS=15000
-# CONFIG_AIC79XX_DEBUG_ENABLE is not set
-CONFIG_AIC79XX_DEBUG_MASK=0
-# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
-# CONFIG_SCSI_AIC94XX is not set
-CONFIG_SCSI_MVSAS=m
-# CONFIG_SCSI_MVSAS_DEBUG is not set
-CONFIG_SCSI_MVSAS_TASKLET=y
-CONFIG_SCSI_MVUMI=m
-CONFIG_SCSI_ARCMSR=m
-# CONFIG_MEGARAID_NEWGEN is not set
-# CONFIG_MEGARAID_LEGACY is not set
-CONFIG_MEGARAID_SAS=m
-CONFIG_SCSI_MPT2SAS=m
-CONFIG_SCSI_MPT3SAS=m
-CONFIG_SCSI_MPT2SAS_MAX_SGE=128
-CONFIG_SCSI_MPT3SAS_MAX_SGE=128
-CONFIG_SCSI_SMARTPQI=m
-CONFIG_SCSI_UFSHCD=m
-CONFIG_SCSI_UFSHCD_PCI=m
-# CONFIG_SCSI_UFSHCD_PLATFORM is not set
-CONFIG_SCSI_HPTIOP=m
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-# CONFIG_SCSI_DMX3191D is not set
-# CONFIG_SCSI_EATA is not set
-# CONFIG_SCSI_FUTURE_DOMAIN is not set
-# CONFIG_SCSI_GDTH is not set
-# CONFIG_SCSI_IPS is not set
-CONFIG_SCSI_IBMVSCSI=m
-CONFIG_SCSI_IBMVSCSIS=m
-CONFIG_SCSI_IBMVFC=m
-CONFIG_SCSI_IBMVFC_TRACE=y
-CONFIG_SCSI_INITIO=m
-# CONFIG_SCSI_INIA100 is not set
-# CONFIG_SCSI_PPA is not set
-# CONFIG_SCSI_IMM is not set
-CONFIG_SCSI_STEX=m
-# CONFIG_SCSI_SYM53C8XX_2 is not set
-CONFIG_SCSI_IPR=m
-CONFIG_SCSI_IPR_TRACE=y
-CONFIG_SCSI_IPR_DUMP=y
-# CONFIG_SCSI_QLOGIC_1280 is not set
-CONFIG_SCSI_QLA_FC=m
-CONFIG_TCM_QLA2XXX=m
-# CONFIG_TCM_QLA2XXX_DEBUG is not set
-CONFIG_SCSI_QLA_ISCSI=m
-CONFIG_QEDI=m
-CONFIG_QEDF=m
-CONFIG_SCSI_LPFC=m
-# CONFIG_SCSI_LPFC_DEBUG_FS is not set
-# CONFIG_SCSI_DC395x is not set
-# CONFIG_SCSI_DC390T is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_SCSI_PMCRAID=m
-CONFIG_SCSI_PM8001=m
-CONFIG_SCSI_SRP=m
-CONFIG_SCSI_BFA_FC=m
-CONFIG_SCSI_VIRTIO=m
-# CONFIG_SCSI_CHELSIO_FCOE is not set
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=m
-# CONFIG_ATA_NONSTANDARD is not set
-CONFIG_ATA_VERBOSE_ERROR=y
-CONFIG_SATA_PMP=y
-
-#
-# Controllers with non-SFF native interface
-#
-CONFIG_SATA_AHCI=m
-CONFIG_SATA_AHCI_PLATFORM=m
-# CONFIG_SATA_INIC162X is not set
-CONFIG_SATA_ACARD_AHCI=m
-CONFIG_SATA_SIL24=m
-CONFIG_ATA_SFF=y
-
-#
-# SFF controllers with custom DMA interface
-#
-CONFIG_PDC_ADMA=m
-CONFIG_SATA_QSTOR=m
-CONFIG_SATA_SX4=m
-CONFIG_ATA_BMDMA=y
-
-#
-# SATA SFF controllers with BMDMA
-#
-CONFIG_ATA_PIIX=m
-# CONFIG_SATA_HIGHBANK is not set
-CONFIG_SATA_MV=m
-CONFIG_SATA_NV=m
-CONFIG_SATA_PROMISE=m
-CONFIG_SATA_SIL=m
-CONFIG_SATA_SIS=m
-CONFIG_SATA_SVW=m
-CONFIG_SATA_ULI=m
-CONFIG_SATA_VIA=m
-CONFIG_SATA_VITESSE=m
-
-#
-# PATA SFF controllers with BMDMA
-#
-CONFIG_PATA_ALI=m
-CONFIG_PATA_AMD=m
-CONFIG_PATA_ARASAN_CF=m
-CONFIG_PATA_ARTOP=m
-CONFIG_PATA_ATIIXP=m
-CONFIG_PATA_ATP867X=m
-CONFIG_PATA_CMD64X=m
-# CONFIG_PATA_CS5520 is not set
-# CONFIG_PATA_CS5530 is not set
-CONFIG_PATA_CS5536=m
-# CONFIG_PATA_CYPRESS is not set
-# CONFIG_PATA_EFAR is not set
-CONFIG_PATA_HPT366=m
-CONFIG_PATA_HPT37X=m
-CONFIG_PATA_HPT3X2N=m
-CONFIG_PATA_HPT3X3=m
-# CONFIG_PATA_HPT3X3_DMA is not set
-CONFIG_PATA_IT8213=m
-CONFIG_PATA_IT821X=m
-CONFIG_PATA_JMICRON=m
-CONFIG_PATA_MARVELL=m
-CONFIG_PATA_NETCELL=m
-CONFIG_PATA_NINJA32=m
-# CONFIG_PATA_NS87415 is not set
-CONFIG_PATA_OLDPIIX=m
-# CONFIG_PATA_OPTIDMA is not set
-CONFIG_PATA_PDC2027X=m
-CONFIG_PATA_PDC_OLD=m
-# CONFIG_PATA_RADISYS is not set
-CONFIG_PATA_RDC=m
-# CONFIG_PATA_SC1200 is not set
-CONFIG_PATA_SCH=m
-CONFIG_PATA_SERVERWORKS=m
-CONFIG_PATA_SIL680=m
-CONFIG_PATA_SIS=m
-CONFIG_PATA_TOSHIBA=m
-# CONFIG_PATA_TRIFLEX is not set
-CONFIG_PATA_VIA=m
-# CONFIG_PATA_WINBOND is not set
-
-#
-# PIO-only SFF controllers
-#
-# CONFIG_PATA_CMD640_PCI is not set
-# CONFIG_PATA_MPIIX is not set
-# CONFIG_PATA_NS87410 is not set
-# CONFIG_PATA_OPTI is not set
-CONFIG_PATA_PLATFORM=m
-CONFIG_PATA_OF_PLATFORM=m
-# CONFIG_PATA_RZ1000 is not set
-
-#
-# Generic fallback / legacy drivers
-#
-CONFIG_ATA_GENERIC=m
-# CONFIG_PATA_LEGACY is not set
-CONFIG_MD=y
-CONFIG_BLK_DEV_MD=y
-CONFIG_MD_AUTODETECT=y
-CONFIG_MD_LINEAR=m
-CONFIG_MD_RAID0=m
-CONFIG_MD_RAID1=m
-CONFIG_MD_RAID10=m
-CONFIG_MD_RAID456=m
-# CONFIG_MD_MULTIPATH is not set
-CONFIG_MD_FAULTY=m
-# CONFIG_BCACHE is not set
-CONFIG_BLK_DEV_DM_BUILTIN=y
-CONFIG_BLK_DEV_DM=m
-# CONFIG_DM_MQ_DEFAULT is not set
-CONFIG_DM_DEBUG=y
-CONFIG_DM_BUFIO=m
-# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
-CONFIG_DM_BIO_PRISON=m
-CONFIG_DM_PERSISTENT_DATA=m
-CONFIG_DM_CRYPT=m
-CONFIG_DM_SNAPSHOT=m
-CONFIG_DM_THIN_PROVISIONING=m
-CONFIG_DM_CACHE=m
-CONFIG_DM_CACHE_SMQ=m
-CONFIG_DM_ERA=m
-CONFIG_DM_MIRROR=m
-CONFIG_DM_LOG_USERSPACE=m
-CONFIG_DM_RAID=m
-CONFIG_DM_ZERO=m
-CONFIG_DM_MULTIPATH=m
-CONFIG_DM_MULTIPATH_QL=m
-CONFIG_DM_MULTIPATH_ST=m
-CONFIG_DM_DELAY=m
-CONFIG_DM_UEVENT=y
-CONFIG_DM_FLAKEY=m
-CONFIG_DM_VERITY=m
-CONFIG_DM_SWITCH=m
-CONFIG_DM_LOG_WRITES=m
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_TCM_USER2=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-CONFIG_ISCSI_TARGET_CXGB4=m
-# CONFIG_SBP_TARGET is not set
-CONFIG_FUSION=y
-CONFIG_FUSION_SPI=m
-# CONFIG_FUSION_FC is not set
-CONFIG_FUSION_SAS=m
-CONFIG_FUSION_MAX_SGE=128
-CONFIG_FUSION_CTL=m
-CONFIG_FUSION_LOGGING=y
-
-#
-# IEEE 1394 (FireWire) support
-#
-CONFIG_FIREWIRE=m
-CONFIG_FIREWIRE_OHCI=m
-CONFIG_FIREWIRE_SBP2=m
-CONFIG_FIREWIRE_NET=m
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-CONFIG_MACINTOSH_DRIVERS=y
-CONFIG_MAC_EMUMOUSEBTN=y
-# CONFIG_WINDFARM is not set
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-CONFIG_BONDING=m
-CONFIG_DUMMY=m
-# CONFIG_EQUALIZER is not set
-CONFIG_NET_FC=y
-CONFIG_MII=m
-CONFIG_IFB=m
-CONFIG_NET_TEAM=m
-CONFIG_NET_TEAM_MODE_BROADCAST=m
-CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
-CONFIG_NET_TEAM_MODE_RANDOM=m
-CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
-CONFIG_NET_TEAM_MODE_LOADBALANCE=m
-CONFIG_MACVLAN=m
-CONFIG_MACVTAP=m
-CONFIG_VXLAN=m
-CONFIG_GENEVE=m
-CONFIG_MACSEC=m
-CONFIG_NETCONSOLE=m
-CONFIG_NETCONSOLE_DYNAMIC=y
-CONFIG_NETPOLL=y
-CONFIG_NET_POLL_CONTROLLER=y
-CONFIG_TUN=m
-CONFIG_TUN_VNET_CROSS_LE=y
-CONFIG_VETH=m
-CONFIG_VIRTIO_NET=m
-CONFIG_NLMON=m
-CONFIG_VSOCKMON=m
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_VHOST_NET=m
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST_RING=m
-CONFIG_VHOST=m
-CONFIG_VHOST_CROSS_ENDIAN_LEGACY=y
-
-#
-# Distributed Switch Architecture drivers
-#
-# CONFIG_NET_DSA_MV88E6XXX is not set
-# CONFIG_NET_DSA_MV88E6060 is not set
-# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
-# CONFIG_NET_DSA_MV88E6131 is not set
-# CONFIG_NET_DSA_MV88E6123_61_65 is not set
-CONFIG_ETHERNET=y
-CONFIG_MDIO=m
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
-CONFIG_NET_VENDOR_AMAZON=y
-# CONFIG_ENA_ETHERNET is not set
-CONFIG_NET_VENDOR_AMD=y
-CONFIG_AMD8111_ETH=m
-CONFIG_PCNET32=m
-# CONFIG_AMD_XGBE_HAVE_ECC is not set
-CONFIG_NET_VENDOR_AQUANTIA=y
-CONFIG_NET_VENDOR_ATHEROS=y
-CONFIG_ATL2=m
-CONFIG_ATL1=m
-CONFIG_ATL1E=m
-CONFIG_ATL1C=m
-CONFIG_ALX=m
-CONFIG_NET_CADENCE=y
-CONFIG_ARM_AT91_ETHER=m
-CONFIG_MACB=m
-CONFIG_NET_VENDOR_BROADCOM=y
-CONFIG_B44=m
-CONFIG_B44_PCI_AUTOSELECT=y
-CONFIG_B44_PCICORE_AUTOSELECT=y
-CONFIG_B44_PCI=y
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-CONFIG_TIGON3=m
-CONFIG_TIGON3_HWMON=y
-CONFIG_BNX2X=m
-CONFIG_BNX2X_SRIOV=y
-CONFIG_BNXT=m
-CONFIG_BNXT_SRIOV=y
-CONFIG_BNXT_FLOWER_OFFLOAD=y
-CONFIG_BNXT_DCB=y
-CONFIG_BNXT_HWMON=y
-CONFIG_NET_VENDOR_BROCADE=y
-CONFIG_BNA=m
-CONFIG_NET_CALXEDA_XGMAC=m
-CONFIG_NET_VENDOR_CAVIUM=y
-CONFIG_LIQUIDIO=m
-CONFIG_LIQUIDIO_VF=m
-CONFIG_NET_VENDOR_CHELSIO=y
-# CONFIG_CHELSIO_T1 is not set
-CONFIG_CHELSIO_T3=m
-CONFIG_CHELSIO_T4=m
-# CONFIG_CHELSIO_T4_DCB is not set
-CONFIG_CHELSIO_T4VF=m
-CONFIG_CHELSIO_LIB=m
-CONFIG_NET_VENDOR_CISCO=y
-CONFIG_ENIC=m
-CONFIG_DNET=m
-CONFIG_NET_VENDOR_DEC=y
-CONFIG_NET_TULIP=y
-CONFIG_DE2104X=m
-CONFIG_DE2104X_DSL=0
-CONFIG_TULIP=m
-# CONFIG_TULIP_MWI is not set
-CONFIG_TULIP_MMIO=y
-# CONFIG_TULIP_NAPI is not set
-CONFIG_DE4X5=m
-CONFIG_WINBOND_840=m
-CONFIG_DM9102=m
-CONFIG_ULI526X=m
-CONFIG_PCMCIA_XIRCOM=m
-# CONFIG_NET_VENDOR_DLINK is not set
-CONFIG_NET_VENDOR_EMULEX=y
-CONFIG_BE2NET=m
-CONFIG_BE2NET_HWMON=y
-# CONFIG_NET_VENDOR_EXAR is not set
-CONFIG_NET_VENDOR_GOOGLE=y
-CONFIG_GVE=m
-# CONFIG_NET_VENDOR_HP is not set
-CONFIG_NET_VENDOR_IBM=y
-CONFIG_IBMVETH=m
-# CONFIG_IBM_EMAC_ZMII is not set
-# CONFIG_IBM_EMAC_RGMII is not set
-# CONFIG_IBM_EMAC_TAH is not set
-# CONFIG_IBM_EMAC_EMAC4 is not set
-# CONFIG_IBM_EMAC_NO_FLOW_CTRL is not set
-# CONFIG_IBM_EMAC_MAL_CLR_ICINTSTAT is not set
-# CONFIG_IBM_EMAC_MAL_COMMON_ERR is not set
-CONFIG_EHEA=m
-CONFIG_IBMVNIC=m
-CONFIG_NET_VENDOR_INTEL=y
-# CONFIG_E100 is not set
-CONFIG_E1000=m
-CONFIG_E1000E=m
-CONFIG_IGB=m
-CONFIG_IGB_HWMON=y
-CONFIG_IGBVF=m
-# CONFIG_IXGB is not set
-CONFIG_IXGBE=m
-CONFIG_IXGBE_HWMON=y
-CONFIG_IXGBE_DCB=y
-CONFIG_IXGBEVF=m
-CONFIG_I40E=m
-CONFIG_I40E_VXLAN=y
-CONFIG_I40E_DCB=y
-CONFIG_IAVF=m
-CONFIG_I40EVF=m
-CONFIG_ICE=m
-CONFIG_FM10K=m
-CONFIG_IGC=m
-# CONFIG_NET_VENDOR_I825XX is not set
-# CONFIG_IP1000 is not set
-CONFIG_JME=m
-CONFIG_NET_VENDOR_MARVELL=y
-CONFIG_MVMDIO=m
-CONFIG_SKGE=m
-# CONFIG_SKGE_DEBUG is not set
-CONFIG_SKGE_GENESIS=y
-CONFIG_SKY2=m
-# CONFIG_SKY2_DEBUG is not set
-CONFIG_NET_VENDOR_MELLANOX=y
-CONFIG_MLX4_EN=m
-CONFIG_MLX4_EN_DCB=y
-CONFIG_MLX4_CORE=m
-CONFIG_MLX4_DEBUG=y
-CONFIG_MLX4_CORE_GEN2=y
-CONFIG_MLX5_CORE=m
-# CONFIG_MLX5_FPGA is not set
-CONFIG_MLX5_CORE_EN=y
-CONFIG_MLX5_EN_ARFS=y
-CONFIG_MLX5_EN_RXNFC=y
-CONFIG_MLX5_MPFS=y
-CONFIG_MLX5_ESWITCH=y
-CONFIG_MLX5_CORE_EN_DCB=y
-CONFIG_MLX5_CORE_IPOIB=y
-CONFIG_MLXSW_CORE=m
-CONFIG_MLXSW_CORE_HWMON=y
-CONFIG_MLXSW_CORE_THERMAL=y
-CONFIG_MLXSW_PCI=m
-CONFIG_MLXSW_I2C=m
-CONFIG_MLXSW_SWITCHIB=m
-CONFIG_MLXSW_SWITCHX2=m
-CONFIG_MLXSW_SPECTRUM=m
-CONFIG_MLXSW_SPECTRUM_DCB=y
-CONFIG_MLXSW_MINIMAL=m
-CONFIG_MLXFW=m
-# CONFIG_NET_VENDOR_MICREL is not set
-CONFIG_NET_VENDOR_MYRI=y
-CONFIG_MYRI10GE=m
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
-CONFIG_NET_VENDOR_NETRONOME=y
-CONFIG_NFP=m
-CONFIG_NFP_APP_FLOWER=y
-CONFIG_NFP_APP_ABM_NIC=y
-CONFIG_NFP_DEBUG=y
-# CONFIG_NET_VENDOR_NVIDIA is not set
-CONFIG_NET_VENDOR_OKI=y
-# CONFIG_PCH_GBE is not set
-CONFIG_ETHOC=m
-CONFIG_NET_PACKET_ENGINE=y
-# CONFIG_HAMACHI is not set
-# CONFIG_YELLOWFIN is not set
-CONFIG_NET_VENDOR_QLOGIC=y
-CONFIG_QLA3XXX=m
-CONFIG_QLCNIC=m
-CONFIG_QLCNIC_SRIOV=y
-CONFIG_QLCNIC_DCB=y
-# CONFIG_QLCNIC_VXLAN is not set
-CONFIG_QLCNIC_HWMON=y
-CONFIG_QLGE=m
-CONFIG_NETXEN_NIC=m
-CONFIG_QED=m
-CONFIG_QED_LL2=y
-CONFIG_QED_SRIOV=y
-CONFIG_QEDE=m
-CONFIG_QED_RDMA=y
-CONFIG_QED_ISCSI=y
-CONFIG_QED_FCOE=y
-CONFIG_QED_OOO=y
-CONFIG_NET_VENDOR_REALTEK=y
-CONFIG_8139CP=m
-CONFIG_8139TOO=m
-# CONFIG_8139TOO_PIO is not set
-# CONFIG_8139TOO_TUNE_TWISTER is not set
-CONFIG_8139TOO_8129=y
-# CONFIG_8139_OLD_RX_RESET is not set
-CONFIG_R8169=m
-# CONFIG_NET_VENDOR_RDC is not set
-CONFIG_NET_VENDOR_ROCKER=y
-CONFIG_ROCKER=m
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
-CONFIG_NET_VENDOR_SOLARFLARE=y
-CONFIG_SFC=m
-CONFIG_SFC_MTD=y
-CONFIG_SFC_MCDI_MON=y
-CONFIG_SFC_SRIOV=y
-CONFIG_SFC_MCDI_LOGGING=y
-CONFIG_SFC_FALCON=m
-CONFIG_SFC_FALCON_MTD=y
-CONFIG_NET_VENDOR_SMSC=y
-CONFIG_EPIC100=m
-CONFIG_SMSC9420=m
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-CONFIG_NET_VENDOR_TI=y
-CONFIG_TLAN=m
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_NET_VENDOR_WIZNET is not set
-# CONFIG_NET_VENDOR_XILINX is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-CONFIG_PHYLIB=y
-
-#
-# MII PHY device drivers
-#
-CONFIG_AT803X_PHY=m
-CONFIG_AMD_PHY=m
-CONFIG_MARVELL_PHY=m
-CONFIG_DAVICOM_PHY=m
-CONFIG_QSEMI_PHY=m
-CONFIG_LXT_PHY=m
-CONFIG_CICADA_PHY=m
-CONFIG_VITESSE_PHY=m
-CONFIG_SMSC_PHY=m
-CONFIG_BROADCOM_PHY=m
-CONFIG_BCM87XX_PHY=m
-CONFIG_ICPLUS_PHY=m
-CONFIG_REALTEK_PHY=y
-CONFIG_NATIONAL_PHY=m
-CONFIG_STE10XP=m
-CONFIG_LSI_ET1011C_PHY=m
-CONFIG_MICREL_PHY=m
-CONFIG_FIXED_PHY=y
-CONFIG_MDIO_BITBANG=m
-CONFIG_MDIO_GPIO=m
-# CONFIG_MDIO_BUS_MUX_GPIO is not set
-# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
-# CONFIG_PLIP is not set
-CONFIG_PPP=m
-CONFIG_PPP_BSDCOMP=m
-CONFIG_PPP_DEFLATE=m
-CONFIG_PPP_FILTER=y
-CONFIG_PPP_MPPE=m
-CONFIG_PPP_MULTILINK=y
-CONFIG_PPPOATM=m
-CONFIG_PPPOE=m
-CONFIG_PPTP=m
-CONFIG_PPPOL2TP=m
-CONFIG_PPP_ASYNC=m
-CONFIG_PPP_SYNC_TTY=m
-CONFIG_SLIP=m
-CONFIG_SLHC=m
-CONFIG_SLIP_COMPRESSED=y
-CONFIG_SLIP_SMART=y
-# CONFIG_SLIP_MODE_SLIP6 is not set
-CONFIG_USB_NET_DRIVERS=y
-CONFIG_USB_CATC=m
-CONFIG_USB_KAWETH=m
-CONFIG_USB_PEGASUS=m
-CONFIG_USB_RTL8150=m
-CONFIG_USB_RTL8152=m
-# CONFIG_USB_LAN78XX is not set
-CONFIG_USB_USBNET=m
-CONFIG_USB_NET_AX8817X=m
-CONFIG_USB_NET_AX88179_178A=m
-CONFIG_USB_NET_CDCETHER=m
-CONFIG_USB_NET_CDC_EEM=m
-CONFIG_USB_NET_CDC_NCM=m
-CONFIG_USB_NET_HUAWEI_CDC_NCM=m
-CONFIG_USB_NET_CDC_MBIM=m
-CONFIG_USB_NET_DM9601=m
-# CONFIG_USB_NET_SR9700 is not set
-# CONFIG_USB_NET_SR9800 is not set
-CONFIG_USB_NET_SMSC75XX=m
-CONFIG_USB_NET_SMSC95XX=m
-CONFIG_USB_NET_GL620A=m
-CONFIG_USB_NET_NET1080=m
-CONFIG_USB_NET_PLUSB=m
-CONFIG_USB_NET_MCS7830=m
-CONFIG_USB_NET_RNDIS_HOST=m
-CONFIG_USB_NET_CDC_SUBSET_ENABLE=m
-CONFIG_USB_NET_CDC_SUBSET=m
-CONFIG_USB_ALI_M5632=y
-CONFIG_USB_AN2720=y
-CONFIG_USB_BELKIN=y
-CONFIG_USB_ARMLINUX=y
-CONFIG_USB_EPSON2888=y
-CONFIG_USB_KC2190=y
-CONFIG_USB_NET_ZAURUS=m
-CONFIG_USB_NET_CX82310_ETH=m
-CONFIG_USB_NET_KALMIA=m
-CONFIG_USB_NET_QMI_WWAN=m
-CONFIG_USB_HSO=m
-CONFIG_USB_NET_INT51X1=m
-CONFIG_USB_IPHETH=m
-CONFIG_USB_SIERRA_NET=m
-CONFIG_USB_VL600=m
-# CONFIG_USB_NET_CH9200 is not set
-CONFIG_WLAN=y
-# CONFIG_LIBERTAS_THINFIRM is not set
-# CONFIG_AIRO is not set
-# CONFIG_ATMEL is not set
-# CONFIG_AT76C50X_USB is not set
-# CONFIG_PRISM54 is not set
-# CONFIG_USB_ZD1201 is not set
-# CONFIG_USB_NET_RNDIS_WLAN is not set
-# CONFIG_ADM8211 is not set
-CONFIG_MAC80211_HWSIM=m
-CONFIG_ATH_COMMON=m
-CONFIG_WLAN_VENDOR_ATH=y
-CONFIG_ATH_DEBUG=y
-# CONFIG_ATH_TRACEPOINTS is not set
-# CONFIG_ATH5K is not set
-# CONFIG_ATH5K_PCI is not set
-CONFIG_ATH9K_HW=m
-CONFIG_ATH9K_COMMON=m
-CONFIG_ATH9K_COMMON_DEBUG=y
-CONFIG_ATH9K_BTCOEX_SUPPORT=y
-CONFIG_ATH9K=m
-CONFIG_ATH9K_PCI=y
-CONFIG_ATH9K_AHB=y
-CONFIG_ATH9K_DEBUGFS=y
-# CONFIG_ATH9K_STATION_STATISTICS is not set
-# CONFIG_ATH9K_DYNACK is not set
-CONFIG_ATH9K_WOW=y
-CONFIG_ATH9K_RFKILL=y
-# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
-CONFIG_ATH9K_PCOEM=y
-CONFIG_ATH9K_HTC=m
-# CONFIG_ATH9K_HTC_DEBUGFS is not set
-# CONFIG_ATH9K_HWRNG is not set
-# CONFIG_CARL9170 is not set
-# CONFIG_ATH6KL is not set
-# CONFIG_AR5523 is not set
-CONFIG_WIL6210=m
-CONFIG_WIL6210_ISR_COR=y
-CONFIG_WIL6210_TRACING=y
-CONFIG_WIL6210_DEBUGFS=y
-CONFIG_ATH10K=m
-CONFIG_ATH10K_PCI=m
-# CONFIG_ATH10K_SDIO is not set
-# CONFIG_ATH10K_USB is not set
-CONFIG_ATH10K_DEBUG=y
-CONFIG_ATH10K_DEBUGFS=y
-CONFIG_ATH10K_TRACING=y
-# CONFIG_B43 is not set
-# CONFIG_B43LEGACY is not set
-CONFIG_WLAN_VENDOR_BROADCOM=y
-CONFIG_BRCMUTIL=m
-CONFIG_BRCMSMAC=m
-CONFIG_BRCMFMAC=m
-CONFIG_BRCMFMAC_PROTO_BCDC=y
-CONFIG_BRCMFMAC_PROTO_MSGBUF=y
-CONFIG_BRCMFMAC_SDIO=y
-CONFIG_BRCMFMAC_USB=y
-CONFIG_BRCMFMAC_PCIE=y
-# CONFIG_BRCM_TRACING is not set
-# CONFIG_BRCMDBG is not set
-# CONFIG_HOSTAP is not set
-# CONFIG_IPW2100 is not set
-# CONFIG_IPW2200 is not set
-CONFIG_WLAN_VENDOR_INTEL=y
-CONFIG_IWLEGACY=m
-CONFIG_IWL4965=m
-CONFIG_IWL3945=m
-
-#
-# iwl3945 / iwl4965 Debugging Options
-#
-CONFIG_IWLEGACY_DEBUG=y
-CONFIG_IWLEGACY_DEBUGFS=y
-CONFIG_IWLWIFI=m
-CONFIG_IWLWIFI_LEDS=y
-CONFIG_IWLDVM=m
-CONFIG_IWLMVM=m
-CONFIG_IWLWIFI_OPMODE_MODULAR=y
-# CONFIG_IWLWIFI_BCAST_FILTERING is not set
-
-#
-# Debugging Options
-#
-CONFIG_IWLWIFI_DEBUG=y
-CONFIG_IWLWIFI_DEBUGFS=y
-CONFIG_IWLWIFI_DEVICE_TRACING=y
-# CONFIG_LIBERTAS is not set
-CONFIG_WLAN_VENDOR_MARVELL=y
-CONFIG_MWIFIEX=m
-CONFIG_MWIFIEX_SDIO=m
-CONFIG_MWIFIEX_PCIE=m
-CONFIG_MWIFIEX_USB=m
-CONFIG_MWL8K=m
-# CONFIG_HERMES is not set
-# CONFIG_P54_COMMON is not set
-CONFIG_WLAN_VENDOR_RALINK=y
-CONFIG_RT2X00=m
-# CONFIG_RT2400PCI is not set
-# CONFIG_RT2500PCI is not set
-CONFIG_RT61PCI=m
-CONFIG_RT2800PCI=m
-CONFIG_RT2800PCI_RT33XX=y
-CONFIG_RT2800PCI_RT35XX=y
-CONFIG_RT2800PCI_RT53XX=y
-CONFIG_RT2800PCI_RT3290=y
-# CONFIG_RT2500USB is not set
-CONFIG_RT73USB=m
-CONFIG_RT2800USB=m
-CONFIG_RT2800USB_RT33XX=y
-CONFIG_RT2800USB_RT35XX=y
-CONFIG_RT2800USB_RT3573=y
-CONFIG_RT2800USB_RT53XX=y
-CONFIG_RT2800USB_RT55XX=y
-CONFIG_RT2800USB_UNKNOWN=y
-CONFIG_RT2800_LIB=m
-CONFIG_RT2800_LIB_MMIO=m
-CONFIG_RT2X00_LIB_MMIO=m
-CONFIG_RT2X00_LIB_PCI=m
-CONFIG_RT2X00_LIB_USB=m
-CONFIG_RT2X00_LIB=m
-CONFIG_RT2X00_LIB_FIRMWARE=y
-CONFIG_RT2X00_LIB_CRYPTO=y
-CONFIG_RT2X00_LIB_LEDS=y
-CONFIG_RT2X00_LIB_DEBUGFS=y
-# CONFIG_RT2X00_DEBUG is not set
-CONFIG_WLAN_VENDOR_REALTEK=y
-# CONFIG_RTL8180 is not set
-CONFIG_RTL8187=m
-CONFIG_RTL8187_LEDS=y
-CONFIG_RTL_CARDS=m
-CONFIG_RTL8192CE=m
-CONFIG_RTL8192SE=m
-CONFIG_RTL8192DE=m
-CONFIG_RTL8723AE=m
-CONFIG_RTL8723BE=m
-CONFIG_RTL8188EE=m
-CONFIG_RTL8192EE=m
-CONFIG_RTL8821AE=m
-CONFIG_RTL8192CU=m
-CONFIG_RTLWIFI=m
-CONFIG_RTLWIFI_PCI=m
-CONFIG_RTLWIFI_USB=m
-CONFIG_RTLWIFI_DEBUG=y
-CONFIG_RTL8192C_COMMON=m
-CONFIG_RTL8723_COMMON=m
-CONFIG_RTLBTCOEXIST=m
-CONFIG_RTW88=m
-CONFIG_RTW88_CORE=m
-CONFIG_RTW88_PCI=m
-CONFIG_RTW88_8822BE=y
-CONFIG_RTW88_8822CE=y
-CONFIG_RTW88_DEBUG=y
-CONFIG_RTW88_DEBUGFS=y
-# CONFIG_WL_TI is not set
-# CONFIG_ZD1211RW is not set
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-CONFIG_WAN=y
-CONFIG_HDLC=m
-CONFIG_HDLC_RAW=m
-# CONFIG_HDLC_RAW_ETH is not set
-CONFIG_HDLC_CISCO=m
-CONFIG_HDLC_FR=m
-CONFIG_HDLC_PPP=m
-
-#
-# X.25/LAPB support is disabled
-#
-# CONFIG_PCI200SYN is not set
-# CONFIG_WANXL is not set
-# CONFIG_PC300TOO is not set
-# CONFIG_FARSYNC is not set
-# CONFIG_DSCC4 is not set
-CONFIG_DLCI=m
-CONFIG_DLCI_MAX=8
-CONFIG_IEEE802154_DRIVERS=m
-CONFIG_IEEE802154_FAKELB=m
-# CONFIG_IEEE802154_ATUSB is not set
-# CONFIG_VMXNET3 is not set
-CONFIG_NET_FAILOVER=m
-CONFIG_ISDN=y
-CONFIG_ISDN_I4L=m
-CONFIG_ISDN_PPP=y
-CONFIG_ISDN_PPP_VJ=y
-CONFIG_ISDN_MPP=y
-CONFIG_IPPP_FILTER=y
-# CONFIG_ISDN_PPP_BSDCOMP is not set
-CONFIG_ISDN_AUDIO=y
-CONFIG_ISDN_TTY_FAX=y
-
-#
-# ISDN feature submodules
-#
-CONFIG_ISDN_DIVERSION=m
-
-#
-# ISDN4Linux hardware drivers
-#
-
-#
-# Passive cards
-#
-CONFIG_ISDN_DRV_HISAX=m
-
-#
-# D-channel protocol features
-#
-CONFIG_HISAX_EURO=y
-CONFIG_DE_AOC=y
-CONFIG_HISAX_NO_SENDCOMPLETE=y
-CONFIG_HISAX_NO_LLC=y
-CONFIG_HISAX_NO_KEYPAD=y
-CONFIG_HISAX_1TR6=y
-CONFIG_HISAX_NI1=y
-CONFIG_HISAX_MAX_CARDS=8
-
-#
-# HiSax supported cards
-#
-CONFIG_HISAX_16_3=y
-CONFIG_HISAX_S0BOX=y
-CONFIG_HISAX_AVM_A1_PCMCIA=y
-CONFIG_HISAX_ELSA=y
-CONFIG_HISAX_DIEHLDIVA=y
-CONFIG_HISAX_SEDLBAUER=y
-CONFIG_HISAX_NICCY=y
-CONFIG_HISAX_BKM_A4T=y
-CONFIG_HISAX_SCT_QUADRO=y
-CONFIG_HISAX_GAZEL=y
-CONFIG_HISAX_W6692=y
-CONFIG_HISAX_HFC_SX=y
-# CONFIG_HISAX_DEBUG is not set
-
-#
-# HiSax PCMCIA card service modules
-#
-
-#
-# HiSax sub driver modules
-#
-CONFIG_HISAX_ST5481=m
-# CONFIG_HISAX_HFCUSB is not set
-CONFIG_HISAX_HFC4S8S=m
-CONFIG_HISAX_FRITZ_PCIPNP=m
-
-#
-# Active cards
-#
-CONFIG_ISDN_CAPI=m
-CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
-# CONFIG_CAPI_TRACE is not set
-CONFIG_ISDN_CAPI_MIDDLEWARE=y
-CONFIG_ISDN_CAPI_CAPI20=m
-CONFIG_ISDN_CAPI_CAPIDRV=m
-
-#
-# CAPI hardware drivers
-#
-CONFIG_CAPI_AVM=y
-CONFIG_ISDN_DRV_AVMB1_B1PCI=m
-CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
-CONFIG_ISDN_DRV_AVMB1_T1PCI=m
-CONFIG_ISDN_DRV_AVMB1_C4=m
-# CONFIG_CAPI_EICON is not set
-CONFIG_ISDN_DRV_GIGASET=m
-CONFIG_GIGASET_CAPI=y
-# CONFIG_GIGASET_I4L is not set
-# CONFIG_GIGASET_DUMMYLL is not set
-CONFIG_GIGASET_BASE=m
-CONFIG_GIGASET_M105=m
-CONFIG_GIGASET_M101=m
-# CONFIG_GIGASET_DEBUG is not set
-CONFIG_HYSDN=m
-CONFIG_HYSDN_CAPI=y
-CONFIG_MISDN=m
-CONFIG_MISDN_DSP=m
-CONFIG_MISDN_L1OIP=m
-
-#
-# mISDN hardware drivers
-#
-CONFIG_MISDN_HFCPCI=m
-CONFIG_MISDN_HFCMULTI=m
-CONFIG_MISDN_HFCUSB=m
-CONFIG_MISDN_AVMFRITZ=m
-CONFIG_MISDN_SPEEDFAX=m
-CONFIG_MISDN_INFINEON=m
-CONFIG_MISDN_W6692=m
-CONFIG_MISDN_NETJET=m
-CONFIG_MISDN_IPAC=m
-CONFIG_MISDN_ISAR=m
-CONFIG_ISDN_HDLC=m
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-CONFIG_INPUT_LEDS=y
-CONFIG_INPUT_FF_MEMLESS=y
-CONFIG_INPUT_POLLDEV=m
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-CONFIG_INPUT_MOUSEDEV=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
-CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
-# CONFIG_INPUT_JOYDEV is not set
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-CONFIG_INPUT_KEYBOARD=y
-# CONFIG_KEYBOARD_ADP5588 is not set
-# CONFIG_KEYBOARD_ADP5589 is not set
-CONFIG_KEYBOARD_ATKBD=y
-# CONFIG_KEYBOARD_QT1070 is not set
-# CONFIG_KEYBOARD_QT2160 is not set
-# CONFIG_KEYBOARD_LKKBD is not set
-# CONFIG_KEYBOARD_GPIO is not set
-# CONFIG_KEYBOARD_GPIO_POLLED is not set
-# CONFIG_KEYBOARD_TCA6416 is not set
-# CONFIG_KEYBOARD_TCA8418 is not set
-# CONFIG_KEYBOARD_MATRIX is not set
-# CONFIG_KEYBOARD_LM8323 is not set
-# CONFIG_KEYBOARD_LM8333 is not set
-# CONFIG_KEYBOARD_MAX7359 is not set
-# CONFIG_KEYBOARD_MCS is not set
-# CONFIG_KEYBOARD_MPR121 is not set
-# CONFIG_KEYBOARD_NEWTON is not set
-# CONFIG_KEYBOARD_OPENCORES is not set
-# CONFIG_KEYBOARD_STOWAWAY is not set
-# CONFIG_KEYBOARD_SUNKBD is not set
-# CONFIG_KEYBOARD_XTKBD is not set
-CONFIG_INPUT_MOUSE=y
-CONFIG_MOUSE_PS2=y
-CONFIG_MOUSE_PS2_ALPS=y
-CONFIG_MOUSE_PS2_LOGIPS2PP=y
-CONFIG_MOUSE_PS2_SYNAPTICS=y
-CONFIG_MOUSE_PS2_CYPRESS=y
-CONFIG_MOUSE_PS2_TRACKPOINT=y
-CONFIG_MOUSE_PS2_ELANTECH=y
-CONFIG_MOUSE_PS2_SENTELIC=y
-# CONFIG_MOUSE_PS2_TOUCHKIT is not set
-CONFIG_MOUSE_SERIAL=m
-CONFIG_MOUSE_APPLETOUCH=m
-CONFIG_MOUSE_BCM5974=m
-CONFIG_MOUSE_CYAPA=m
-CONFIG_MOUSE_VSXXXAA=m
-# CONFIG_MOUSE_GPIO is not set
-CONFIG_MOUSE_SYNAPTICS_I2C=m
-CONFIG_MOUSE_SYNAPTICS_USB=m
-# CONFIG_INPUT_JOYSTICK is not set
-CONFIG_INPUT_TABLET=y
-CONFIG_TABLET_USB_ACECAD=m
-CONFIG_TABLET_USB_AIPTEK=m
-CONFIG_TABLET_USB_GTCO=m
-# CONFIG_TABLET_USB_HANWANG is not set
-CONFIG_TABLET_USB_KBTAB=m
-CONFIG_TABLET_USB_WACOM=m
-CONFIG_INPUT_TOUCHSCREEN=y
-# CONFIG_TOUCHSCREEN_AD7879 is not set
-# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
-# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_BU21013 is not set
-# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
-# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
-# CONFIG_TOUCHSCREEN_DYNAPRO is not set
-# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
-# CONFIG_TOUCHSCREEN_EETI is not set
-# CONFIG_TOUCHSCREEN_EGALAX is not set
-# CONFIG_TOUCHSCREEN_FUJITSU is not set
-# CONFIG_TOUCHSCREEN_ILI210X is not set
-# CONFIG_TOUCHSCREEN_GUNZE is not set
-CONFIG_TOUCHSCREEN_ELO=m
-CONFIG_TOUCHSCREEN_WACOM_W8001=m
-CONFIG_TOUCHSCREEN_WACOM_I2C=m
-# CONFIG_TOUCHSCREEN_MAX11801 is not set
-# CONFIG_TOUCHSCREEN_MCS5000 is not set
-# CONFIG_TOUCHSCREEN_MMS114 is not set
-# CONFIG_TOUCHSCREEN_MTOUCH is not set
-# CONFIG_TOUCHSCREEN_INEXIO is not set
-# CONFIG_TOUCHSCREEN_MK712 is not set
-# CONFIG_TOUCHSCREEN_PENMOUNT is not set
-# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
-# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
-# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
-# CONFIG_TOUCHSCREEN_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_WM97XX is not set
-# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
-# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
-# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
-# CONFIG_TOUCHSCREEN_TSC2007 is not set
-# CONFIG_TOUCHSCREEN_ST1232 is not set
-# CONFIG_TOUCHSCREEN_TPS6507X is not set
-CONFIG_INPUT_MISC=y
-# CONFIG_INPUT_AD714X is not set
-# CONFIG_INPUT_BMA150 is not set
-# CONFIG_INPUT_PCSPKR is not set
-# CONFIG_INPUT_MMA8450 is not set
-# CONFIG_INPUT_MPU3050 is not set
-# CONFIG_INPUT_GP2A is not set
-# CONFIG_INPUT_GPIO_TILT_POLLED is not set
-CONFIG_INPUT_ATI_REMOTE2=m
-CONFIG_INPUT_KEYSPAN_REMOTE=m
-# CONFIG_INPUT_KXTJ9 is not set
-CONFIG_INPUT_POWERMATE=m
-CONFIG_INPUT_YEALINK=m
-CONFIG_INPUT_CM109=m
-CONFIG_INPUT_UINPUT=m
-# CONFIG_INPUT_PCF8574 is not set
-CONFIG_INPUT_PWM_BEEPER=m
-CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
-# CONFIG_INPUT_ADXL34X is not set
-# CONFIG_INPUT_IMS_PCU is not set
-# CONFIG_INPUT_CMA3000 is not set
-# CONFIG_RMI4_CORE is not set
-
-#
-# Hardware I/O ports
-#
-CONFIG_SERIO=y
-CONFIG_SERIO_I8042=y
-CONFIG_SERIO_SERPORT=y
-# CONFIG_SERIO_PARKBD is not set
-# CONFIG_SERIO_PCIPS2 is not set
-CONFIG_SERIO_LIBPS2=y
-CONFIG_SERIO_RAW=m
-# CONFIG_SERIO_XILINX_XPS_PS2 is not set
-CONFIG_SERIO_ALTERA_PS2=m
-# CONFIG_SERIO_PS2MULT is not set
-CONFIG_SERIO_ARC_PS2=m
-# CONFIG_SERIO_APBPS2 is not set
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_VT_CONSOLE_SLEEP=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_SERIAL_NONSTANDARD=y
-# CONFIG_ROCKETPORT is not set
-CONFIG_CYCLADES=m
-# CONFIG_CYZ_INTR is not set
-# CONFIG_MOXA_INTELLIO is not set
-# CONFIG_MOXA_SMARTIO is not set
-CONFIG_SYNCLINK=m
-CONFIG_SYNCLINKMP=m
-CONFIG_SYNCLINK_GT=m
-CONFIG_NOZOMI=m
-# CONFIG_ISI is not set
-CONFIG_N_HDLC=m
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=y
-# CONFIG_STALDRV is not set
-
-#
-# Serial drivers
-#
-CONFIG_SERIAL_8250=y
-# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_SERIAL_8250_DMA=y
-CONFIG_SERIAL_8250_PCI=y
-CONFIG_SERIAL_8250_NR_UARTS=32
-CONFIG_SERIAL_8250_RUNTIME_UARTS=4
-CONFIG_SERIAL_8250_EXTENDED=y
-CONFIG_SERIAL_8250_MANY_PORTS=y
-CONFIG_SERIAL_8250_SHARE_IRQ=y
-# CONFIG_SERIAL_8250_DETECT_IRQ is not set
-CONFIG_SERIAL_8250_RSA=y
-CONFIG_SERIAL_8250_FSL=y
-# CONFIG_SERIAL_8250_DW is not set
-
-#
-# Non-8250 serial port support
-#
-# CONFIG_SERIAL_KGDB_NMI is not set
-# CONFIG_SERIAL_MFD_HSU is not set
-CONFIG_SERIAL_CORE=y
-CONFIG_SERIAL_CORE_CONSOLE=y
-CONFIG_CONSOLE_POLL=y
-CONFIG_SERIAL_ICOM=m
-CONFIG_SERIAL_JSM=m
-CONFIG_SERIAL_OF_PLATFORM=m
-# CONFIG_SERIAL_SCCNXP is not set
-# CONFIG_SERIAL_TIMBERDALE is not set
-# CONFIG_SERIAL_ALTERA_JTAGUART is not set
-# CONFIG_SERIAL_ALTERA_UART is not set
-# CONFIG_SERIAL_PCH_UART is not set
-# CONFIG_SERIAL_XILINX_PS_UART is not set
-CONFIG_SERIAL_ARC=m
-CONFIG_SERIAL_ARC_NR_PORTS=1
-# CONFIG_SERIAL_RP2 is not set
-CONFIG_PRINTER=m
-# CONFIG_LP_CONSOLE is not set
-CONFIG_PPDEV=m
-CONFIG_HVC_DRIVER=y
-CONFIG_HVC_IRQ=y
-CONFIG_HVC_CONSOLE=y
-# CONFIG_HVC_OLD_HVSI is not set
-CONFIG_HVC_OPAL=y
-CONFIG_HVC_RTAS=y
-# CONFIG_HVC_UDBG is not set
-CONFIG_HVCS=m
-CONFIG_VIRTIO_CONSOLE=m
-CONFIG_IBM_BSR=m
-CONFIG_IPMI_HANDLER=m
-CONFIG_IPMI_PROC_INTERFACE=y
-CONFIG_IPMI_PANIC_EVENT=y
-# CONFIG_IPMI_PANIC_STRING is not set
-CONFIG_IPMI_DEVICE_INTERFACE=m
-CONFIG_IPMI_SI=m
-CONFIG_IPMI_SSIF=m
-CONFIG_IPMI_POWERNV=m
-CONFIG_IPMI_WATCHDOG=m
-CONFIG_IPMI_POWEROFF=m
-CONFIG_HW_RANDOM=y
-CONFIG_HW_RANDOM_TIMERIOMEM=m
-CONFIG_HW_RANDOM_VIRTIO=m
-CONFIG_HW_RANDOM_PSERIES=m
-CONFIG_HW_RANDOM_POWERNV=m
-# CONFIG_R3964 is not set
-# CONFIG_APPLICOM is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-CONFIG_HANGCHECK_TIMER=m
-CONFIG_TCG_TPM=y
-CONFIG_HW_RANDOM_TPM=y
-CONFIG_TCG_TIS_CORE=m
-CONFIG_TCG_TIS=m
-CONFIG_TCG_TIS_I2C_ATMEL=m
-CONFIG_TCG_TIS_I2C_INFINEON=m
-CONFIG_TCG_TIS_I2C_NUVOTON=m
-# CONFIG_TCG_ATMEL is not set
-CONFIG_TCG_IBMVTPM=y
-# CONFIG_TCG_VTPM_PROXY is not set
-CONFIG_TCG_TIS_ST33ZP24=m
-CONFIG_TCG_TIS_ST33ZP24_I2C=m
-CONFIG_DEVPORT=y
-CONFIG_HMC_DRV=m
-
-#
-# I2C support
-#
-CONFIG_I2C=m
-CONFIG_I2C_BOARDINFO=y
-CONFIG_I2C_COMPAT=y
-CONFIG_I2C_CHARDEV=m
-# CONFIG_I2C_MUX is not set
-CONFIG_I2C_HELPER_AUTO=y
-CONFIG_I2C_SMBUS=m
-CONFIG_I2C_ALGOBIT=m
-CONFIG_I2C_ALGOPCA=m
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-# CONFIG_I2C_AMD756 is not set
-# CONFIG_I2C_AMD8111 is not set
-# CONFIG_I2C_I801 is not set
-# CONFIG_I2C_ISCH is not set
-# CONFIG_I2C_PIIX4 is not set
-CONFIG_I2C_NFORCE2=m
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-# CONFIG_I2C_SIS96X is not set
-# CONFIG_I2C_VIA is not set
-# CONFIG_I2C_VIAPRO is not set
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_CBUS_GPIO is not set
-CONFIG_I2C_DESIGNWARE_CORE=m
-CONFIG_I2C_DESIGNWARE_PLATFORM=m
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_EG20T is not set
-# CONFIG_I2C_GPIO is not set
-# CONFIG_I2C_INTEL_MID is not set
-CONFIG_I2C_MPC=m
-# CONFIG_I2C_OCORES is not set
-CONFIG_I2C_PCA_PLATFORM=m
-# CONFIG_I2C_PXA_PCI is not set
-CONFIG_I2C_SIMTEC=m
-# CONFIG_I2C_XILINX is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-CONFIG_I2C_DIOLAN_U2C=m
-CONFIG_I2C_PARPORT=m
-CONFIG_I2C_PARPORT_LIGHT=m
-# CONFIG_I2C_TAOS_EVM is not set
-CONFIG_I2C_TINY_USB=m
-CONFIG_I2C_VIPERBOARD=m
-
-#
-# Other I2C/SMBus bus drivers
-#
-CONFIG_I2C_OPAL=m
-CONFIG_I2C_STUB=m
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-# CONFIG_SPI is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-CONFIG_PPS_CLIENT_PARPORT=m
-CONFIG_PPS_CLIENT_GPIO=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-CONFIG_DP83640_PHY=m
-CONFIG_PTP_1588_CLOCK_PCH=m
-CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
-CONFIG_ARCH_REQUIRE_GPIOLIB=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_DEVRES=y
-CONFIG_OF_GPIO=y
-# CONFIG_DEBUG_GPIO is not set
-CONFIG_GPIO_SYSFS=y
-
-#
-# Memory mapped GPIO drivers:
-#
-# CONFIG_GPIO_GENERIC_PLATFORM is not set
-# CONFIG_GPIO_SCH311X is not set
-# CONFIG_GPIO_TS5500 is not set
-# CONFIG_GPIO_XILINX is not set
-# CONFIG_GPIO_VX855 is not set
-# CONFIG_GPIO_GRGPIO is not set
-
-#
-# I2C GPIO expanders:
-#
-# CONFIG_GPIO_MAX7300 is not set
-# CONFIG_GPIO_MAX732X is not set
-CONFIG_GPIO_PCA953X=m
-CONFIG_GPIO_PCF857X=m
-# CONFIG_GPIO_ADP5588 is not set
-# CONFIG_GPIO_ADNP is not set
-
-#
-# PCI GPIO expanders:
-#
-# CONFIG_GPIO_AMD8111 is not set
-# CONFIG_GPIO_ML_IOH is not set
-# CONFIG_GPIO_RDC321X is not set
-
-#
-# SPI GPIO expanders:
-#
-# CONFIG_GPIO_MCP23S08 is not set
-
-#
-# AC97 GPIO expanders:
-#
-
-#
-# LPC GPIO expanders:
-#
-
-#
-# MODULbus GPIO expanders:
-#
-
-#
-# USB GPIO expanders:
-#
-CONFIG_GPIO_VIPERBOARD=m
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_PDA_POWER is not set
-# CONFIG_GENERIC_ADC_BATTERY is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-# CONFIG_BATTERY_DS2781 is not set
-# CONFIG_BATTERY_DS2782 is not set
-# CONFIG_BATTERY_SBS is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-# CONFIG_BATTERY_MAX17040 is not set
-# CONFIG_BATTERY_MAX17042 is not set
-# CONFIG_CHARGER_MAX8903 is not set
-# CONFIG_CHARGER_LP8727 is not set
-# CONFIG_CHARGER_GPIO is not set
-# CONFIG_CHARGER_BQ2415X is not set
-CONFIG_CHARGER_SMB347=m
-# CONFIG_BATTERY_GOLDFISH is not set
-CONFIG_POWER_RESET=y
-CONFIG_POWER_RESET_GPIO=y
-# CONFIG_POWER_AVS is not set
-# CONFIG_POWERCAP is not set
-CONFIG_HWMON=y
-CONFIG_HWMON_VID=m
-# CONFIG_HWMON_DEBUG_CHIP is not set
-
-#
-# Native drivers
-#
-CONFIG_SENSORS_AD7414=m
-CONFIG_SENSORS_AD7418=m
-CONFIG_SENSORS_ADM1021=m
-CONFIG_SENSORS_ADM1025=m
-CONFIG_SENSORS_ADM1026=m
-CONFIG_SENSORS_ADM1029=m
-CONFIG_SENSORS_ADM1031=m
-CONFIG_SENSORS_ADM9240=m
-CONFIG_SENSORS_ADT7X10=m
-CONFIG_SENSORS_ADT7410=m
-CONFIG_SENSORS_ADT7411=m
-CONFIG_SENSORS_ADT7462=m
-CONFIG_SENSORS_ADT7470=m
-CONFIG_SENSORS_ADT7475=m
-CONFIG_SENSORS_ASC7621=m
-CONFIG_SENSORS_ATXP1=m
-CONFIG_SENSORS_DS620=m
-CONFIG_SENSORS_DS1621=m
-# CONFIG_SENSORS_I5K_AMB is not set
-CONFIG_SENSORS_F75375S=m
-CONFIG_SENSORS_G760A=m
-CONFIG_SENSORS_GL518SM=m
-CONFIG_SENSORS_GL520SM=m
-# CONFIG_SENSORS_GPIO_FAN is not set
-# CONFIG_SENSORS_HIH6130 is not set
-CONFIG_SENSORS_IBMAEM=m
-CONFIG_SENSORS_IBMPEX=m
-CONFIG_SENSORS_IBMPOWERNV=m
-# CONFIG_SENSORS_IIO_HWMON is not set
-CONFIG_SENSORS_JC42=m
-CONFIG_SENSORS_LINEAGE=m
-CONFIG_SENSORS_LM63=m
-CONFIG_SENSORS_LM73=m
-CONFIG_SENSORS_LM75=m
-CONFIG_SENSORS_LM77=m
-CONFIG_SENSORS_LM78=m
-CONFIG_SENSORS_LM80=m
-CONFIG_SENSORS_LM83=m
-CONFIG_SENSORS_LM85=m
-CONFIG_SENSORS_LM87=m
-CONFIG_SENSORS_LM90=m
-CONFIG_SENSORS_LM92=m
-CONFIG_SENSORS_LM93=m
-CONFIG_SENSORS_LTC4151=m
-CONFIG_SENSORS_LTC4215=m
-CONFIG_SENSORS_LTC4245=m
-CONFIG_SENSORS_LTC4261=m
-CONFIG_SENSORS_LM95234=m
-CONFIG_SENSORS_LM95241=m
-CONFIG_SENSORS_LM95245=m
-CONFIG_SENSORS_MAX16065=m
-CONFIG_SENSORS_MAX1619=m
-CONFIG_SENSORS_MAX1668=m
-CONFIG_SENSORS_MAX197=m
-CONFIG_SENSORS_MAX6639=m
-CONFIG_SENSORS_MAX6642=m
-CONFIG_SENSORS_MAX6650=m
-CONFIG_SENSORS_MAX6697=m
-CONFIG_SENSORS_MCP3021=m
-CONFIG_SENSORS_NTC_THERMISTOR=m
-CONFIG_SENSORS_PCF8591=m
-CONFIG_PMBUS=m
-CONFIG_SENSORS_PMBUS=m
-CONFIG_SENSORS_ADM1275=m
-CONFIG_SENSORS_LM25066=m
-CONFIG_SENSORS_LTC2978=m
-CONFIG_SENSORS_MAX16064=m
-CONFIG_SENSORS_MAX34440=m
-CONFIG_SENSORS_MAX8688=m
-CONFIG_SENSORS_UCD9000=m
-CONFIG_SENSORS_UCD9200=m
-CONFIG_SENSORS_ZL6100=m
-CONFIG_SENSORS_SHT15=m
-CONFIG_SENSORS_SHT21=m
-CONFIG_SENSORS_SIS5595=m
-# CONFIG_SENSORS_SMM665 is not set
-CONFIG_SENSORS_EMC1403=m
-# CONFIG_SENSORS_EMC2103 is not set
-CONFIG_SENSORS_EMC6W201=m
-CONFIG_SENSORS_SMSC47M192=m
-# CONFIG_SENSORS_SCH56XX_COMMON is not set
-CONFIG_SENSORS_ADS1015=m
-CONFIG_SENSORS_ADS7828=m
-CONFIG_SENSORS_AMC6821=m
-CONFIG_SENSORS_INA209=m
-CONFIG_SENSORS_INA2XX=m
-CONFIG_SENSORS_THMC50=m
-CONFIG_SENSORS_TMP102=m
-CONFIG_SENSORS_TMP401=m
-CONFIG_SENSORS_TMP421=m
-CONFIG_SENSORS_VIA686A=m
-CONFIG_SENSORS_VT8231=m
-CONFIG_SENSORS_W83781D=m
-CONFIG_SENSORS_W83791D=m
-CONFIG_SENSORS_W83792D=m
-CONFIG_SENSORS_W83793=m
-CONFIG_SENSORS_W83795=m
-# CONFIG_SENSORS_W83795_FANCTRL is not set
-CONFIG_SENSORS_W83L785TS=m
-CONFIG_SENSORS_W83L786NG=m
-CONFIG_THERMAL=y
-CONFIG_THERMAL_HWMON=y
-CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
-# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
-# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
-CONFIG_THERMAL_GOV_FAIR_SHARE=y
-CONFIG_THERMAL_GOV_STEP_WISE=y
-# CONFIG_THERMAL_GOV_USER_SPACE is not set
-# CONFIG_CPU_THERMAL is not set
-# CONFIG_THERMAL_EMULATION is not set
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_CORE=y
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
-CONFIG_WATCHDOG_SYSFS=y
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-CONFIG_ALIM7101_WDT=m
-CONFIG_I6300ESB_WDT=m
-CONFIG_WATCHDOG_RTAS=m
-
-#
-# PCI-based Watchdog Cards
-#
-CONFIG_PCIPCWATCHDOG=m
-CONFIG_WDTPCI=m
-
-#
-# USB-based Watchdog Cards
-#
-CONFIG_USBPCWATCHDOG=m
-
-#
-# Watchdog Pretimeout Governors
-#
-# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-CONFIG_SSB=m
-CONFIG_SSB_SPROM=y
-CONFIG_SSB_PCIHOST_POSSIBLE=y
-CONFIG_SSB_PCIHOST=y
-# CONFIG_SSB_B43_PCI_BRIDGE is not set
-CONFIG_SSB_SDIOHOST_POSSIBLE=y
-CONFIG_SSB_SDIOHOST=y
-# CONFIG_SSB_DEBUG is not set
-CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
-CONFIG_SSB_DRIVER_PCICORE=y
-CONFIG_SSB_DRIVER_GPIO=y
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-CONFIG_BCMA=m
-CONFIG_BCMA_HOST_PCI_POSSIBLE=y
-CONFIG_BCMA_HOST_PCI=y
-# CONFIG_BCMA_HOST_SOC is not set
-CONFIG_BCMA_DRIVER_PCI=y
-CONFIG_BCMA_DRIVER_GMAC_CMN=y
-CONFIG_BCMA_DRIVER_GPIO=y
-# CONFIG_BCMA_DEBUG is not set
-
-#
-# Multifunction device drivers
-#
-CONFIG_MFD_CORE=m
-# CONFIG_MFD_CROS_EC is not set
-# CONFIG_MFD_MC13XXX_I2C is not set
-# CONFIG_HTC_PASIC3 is not set
-# CONFIG_LPC_ICH is not set
-# CONFIG_LPC_SCH is not set
-# CONFIG_MFD_JANZ_CMODIO is not set
-CONFIG_MFD_VIPERBOARD=m
-# CONFIG_MFD_RETU is not set
-# CONFIG_MFD_PCF50633 is not set
-# CONFIG_UCB1400_CORE is not set
-# CONFIG_MFD_RDC321X is not set
-CONFIG_MFD_RTSX_PCI=m
-CONFIG_MFD_RTSX_USB=m
-# CONFIG_MFD_SI476X_CORE is not set
-CONFIG_MFD_SM501=m
-CONFIG_MFD_SM501_GPIO=y
-# CONFIG_ABX500_CORE is not set
-# CONFIG_MFD_SYSCON is not set
-# CONFIG_MFD_TI_AM335X_TSCADC is not set
-# CONFIG_TPS6105X is not set
-# CONFIG_TPS65010 is not set
-# CONFIG_TPS6507X is not set
-# CONFIG_MFD_TPS65217 is not set
-# CONFIG_MFD_TPS65912 is not set
-# CONFIG_MFD_WL1273_CORE is not set
-# CONFIG_MFD_LM3533 is not set
-# CONFIG_MFD_TIMBERDALE is not set
-# CONFIG_MFD_TMIO is not set
-CONFIG_MFD_VX855=m
-# CONFIG_MFD_ARIZONA_I2C is not set
-# CONFIG_REGULATOR is not set
-CONFIG_MEDIA_SUPPORT=m
-
-#
-# Multimedia core support
-#
-CONFIG_MEDIA_CAMERA_SUPPORT=y
-CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
-CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
-CONFIG_MEDIA_RADIO_SUPPORT=y
-CONFIG_MEDIA_RC_SUPPORT=y
-# CONFIG_MEDIA_CONTROLLER is not set
-CONFIG_VIDEO_DEV=m
-CONFIG_VIDEO_V4L2=m
-# CONFIG_VIDEO_ADV_DEBUG is not set
-# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
-CONFIG_VIDEO_TUNER=m
-CONFIG_VIDEOBUF_GEN=m
-CONFIG_VIDEOBUF_DMA_SG=m
-CONFIG_VIDEOBUF_VMALLOC=m
-CONFIG_VIDEOBUF_DVB=m
-CONFIG_VIDEOBUF2_CORE=m
-CONFIG_VIDEOBUF2_MEMOPS=m
-CONFIG_VIDEOBUF2_VMALLOC=m
-# CONFIG_VIDEO_V4L2_INT_DEVICE is not set
-CONFIG_DVB_CORE=m
-CONFIG_DVB_NET=y
-CONFIG_TTPCI_EEPROM=m
-CONFIG_DVB_MAX_ADAPTERS=8
-CONFIG_DVB_DYNAMIC_MINORS=y
-
-#
-# Media drivers
-#
-CONFIG_RC_CORE=m
-CONFIG_RC_MAP=m
-CONFIG_RC_DECODERS=y
-CONFIG_LIRC=m
-CONFIG_IR_LIRC_CODEC=m
-CONFIG_IR_NEC_DECODER=m
-CONFIG_IR_RC5_DECODER=m
-CONFIG_IR_RC6_DECODER=m
-CONFIG_IR_JVC_DECODER=m
-CONFIG_IR_SONY_DECODER=m
-CONFIG_IR_RC5_SZ_DECODER=m
-CONFIG_IR_SANYO_DECODER=m
-CONFIG_IR_MCE_KBD_DECODER=m
-CONFIG_RC_DEVICES=y
-CONFIG_RC_ATI_REMOTE=m
-CONFIG_IR_IMON=m
-CONFIG_IR_MCEUSB=m
-CONFIG_IR_REDRAT3=m
-CONFIG_IR_STREAMZAP=m
-CONFIG_IR_IGUANA=m
-CONFIG_IR_TTUSBIR=m
-CONFIG_RC_LOOPBACK=m
-CONFIG_IR_GPIO_CIR=m
-CONFIG_MEDIA_USB_SUPPORT=y
-
-#
-# Webcam devices
-#
-CONFIG_USB_VIDEO_CLASS=m
-CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
-CONFIG_USB_GSPCA=m
-CONFIG_USB_M5602=m
-CONFIG_USB_STV06XX=m
-CONFIG_USB_GL860=m
-CONFIG_USB_GSPCA_BENQ=m
-CONFIG_USB_GSPCA_CONEX=m
-CONFIG_USB_GSPCA_CPIA1=m
-CONFIG_USB_GSPCA_ETOMS=m
-CONFIG_USB_GSPCA_FINEPIX=m
-CONFIG_USB_GSPCA_JEILINJ=m
-CONFIG_USB_GSPCA_JL2005BCD=m
-# CONFIG_USB_GSPCA_KINECT is not set
-CONFIG_USB_GSPCA_KONICA=m
-CONFIG_USB_GSPCA_MARS=m
-CONFIG_USB_GSPCA_MR97310A=m
-CONFIG_USB_GSPCA_NW80X=m
-CONFIG_USB_GSPCA_OV519=m
-CONFIG_USB_GSPCA_OV534=m
-CONFIG_USB_GSPCA_OV534_9=m
-CONFIG_USB_GSPCA_PAC207=m
-CONFIG_USB_GSPCA_PAC7302=m
-CONFIG_USB_GSPCA_PAC7311=m
-CONFIG_USB_GSPCA_SE401=m
-CONFIG_USB_GSPCA_SN9C2028=m
-CONFIG_USB_GSPCA_SN9C20X=m
-CONFIG_USB_GSPCA_SONIXB=m
-CONFIG_USB_GSPCA_SONIXJ=m
-CONFIG_USB_GSPCA_SPCA500=m
-CONFIG_USB_GSPCA_SPCA501=m
-CONFIG_USB_GSPCA_SPCA505=m
-CONFIG_USB_GSPCA_SPCA506=m
-CONFIG_USB_GSPCA_SPCA508=m
-CONFIG_USB_GSPCA_SPCA561=m
-CONFIG_USB_GSPCA_SPCA1528=m
-CONFIG_USB_GSPCA_SQ905=m
-CONFIG_USB_GSPCA_SQ905C=m
-CONFIG_USB_GSPCA_SQ930X=m
-CONFIG_USB_GSPCA_STK014=m
-CONFIG_USB_GSPCA_STV0680=m
-CONFIG_USB_GSPCA_SUNPLUS=m
-CONFIG_USB_GSPCA_T613=m
-CONFIG_USB_GSPCA_TOPRO=m
-CONFIG_USB_GSPCA_TV8532=m
-CONFIG_USB_GSPCA_VC032X=m
-CONFIG_USB_GSPCA_VICAM=m
-CONFIG_USB_GSPCA_XIRLINK_CIT=m
-CONFIG_USB_GSPCA_ZC3XX=m
-CONFIG_USB_PWC=m
-# CONFIG_USB_PWC_DEBUG is not set
-CONFIG_USB_PWC_INPUT_EVDEV=y
-# CONFIG_VIDEO_CPIA2 is not set
-CONFIG_USB_ZR364XX=m
-CONFIG_USB_STKWEBCAM=m
-CONFIG_USB_S2255=m
-# CONFIG_USB_SN9C102 is not set
-
-#
-# Analog TV USB devices
-#
-CONFIG_VIDEO_PVRUSB2=m
-CONFIG_VIDEO_PVRUSB2_SYSFS=y
-CONFIG_VIDEO_PVRUSB2_DVB=y
-# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
-CONFIG_VIDEO_HDPVR=m
-CONFIG_VIDEO_TLG2300=m
-CONFIG_VIDEO_USBVISION=m
-CONFIG_VIDEO_STK1160=m
-CONFIG_VIDEO_STK1160_AC97=y
-
-#
-# Analog/digital TV USB devices
-#
-CONFIG_VIDEO_AU0828=m
-CONFIG_VIDEO_AU0828_V4L2=y
-CONFIG_VIDEO_CX231XX=m
-CONFIG_VIDEO_CX231XX_RC=y
-CONFIG_VIDEO_CX231XX_ALSA=m
-CONFIG_VIDEO_CX231XX_DVB=m
-CONFIG_VIDEO_TM6000=m
-CONFIG_VIDEO_TM6000_ALSA=m
-CONFIG_VIDEO_TM6000_DVB=m
-
-#
-# Digital TV USB devices
-#
-CONFIG_DVB_USB=m
-# CONFIG_DVB_USB_DEBUG is not set
-CONFIG_DVB_USB_A800=m
-CONFIG_DVB_USB_DIBUSB_MB=m
-# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
-CONFIG_DVB_USB_DIBUSB_MC=m
-CONFIG_DVB_USB_DIB0700=m
-CONFIG_DVB_USB_UMT_010=m
-CONFIG_DVB_USB_CXUSB=m
-CONFIG_DVB_USB_M920X=m
-CONFIG_DVB_USB_DIGITV=m
-CONFIG_DVB_USB_VP7045=m
-CONFIG_DVB_USB_VP702X=m
-CONFIG_DVB_USB_GP8PSK=m
-CONFIG_DVB_USB_NOVA_T_USB2=m
-CONFIG_DVB_USB_TTUSB2=m
-CONFIG_DVB_USB_DTT200U=m
-CONFIG_DVB_USB_OPERA1=m
-CONFIG_DVB_USB_AF9005=m
-CONFIG_DVB_USB_AF9005_REMOTE=m
-CONFIG_DVB_USB_PCTV452E=m
-CONFIG_DVB_USB_DW2102=m
-CONFIG_DVB_USB_CINERGY_T2=m
-CONFIG_DVB_USB_DTV5100=m
-CONFIG_DVB_USB_FRIIO=m
-CONFIG_DVB_USB_AZ6027=m
-CONFIG_DVB_USB_TECHNISAT_USB2=m
-CONFIG_DVB_USB_V2=m
-CONFIG_DVB_USB_AF9015=m
-CONFIG_DVB_USB_AF9035=m
-CONFIG_DVB_USB_ANYSEE=m
-CONFIG_DVB_USB_AU6610=m
-CONFIG_DVB_USB_AZ6007=m
-CONFIG_DVB_USB_CE6230=m
-CONFIG_DVB_USB_EC168=m
-CONFIG_DVB_USB_GL861=m
-CONFIG_DVB_USB_IT913X=m
-CONFIG_DVB_USB_LME2510=m
-CONFIG_DVB_USB_MXL111SF=m
-CONFIG_DVB_USB_RTL28XXU=m
-CONFIG_DVB_TTUSB_BUDGET=m
-CONFIG_DVB_TTUSB_DEC=m
-CONFIG_SMS_USB_DRV=m
-CONFIG_DVB_B2C2_FLEXCOP_USB=m
-# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
-
-#
-# Webcam, TV (analog/digital) USB devices
-#
-CONFIG_VIDEO_EM28XX=m
-CONFIG_VIDEO_EM28XX_ALSA=m
-CONFIG_VIDEO_EM28XX_DVB=m
-CONFIG_VIDEO_EM28XX_RC=m
-CONFIG_MEDIA_PCI_SUPPORT=y
-
-#
-# Media capture support
-#
-
-#
-# Media capture/analog TV support
-#
-CONFIG_VIDEO_IVTV=m
-# CONFIG_VIDEO_IVTV_ALSA is not set
-CONFIG_VIDEO_FB_IVTV=m
-# CONFIG_VIDEO_HEXIUM_GEMINI is not set
-# CONFIG_VIDEO_HEXIUM_ORION is not set
-# CONFIG_VIDEO_MXB is not set
-
-#
-# Media capture/analog/hybrid TV support
-#
-CONFIG_VIDEO_CX18=m
-CONFIG_VIDEO_CX18_ALSA=m
-CONFIG_VIDEO_CX23885=m
-CONFIG_MEDIA_ALTERA_CI=m
-# CONFIG_VIDEO_CX25821 is not set
-CONFIG_VIDEO_CX88=m
-CONFIG_VIDEO_CX88_ALSA=m
-CONFIG_VIDEO_CX88_BLACKBIRD=m
-CONFIG_VIDEO_CX88_DVB=m
-CONFIG_VIDEO_CX88_VP3054=m
-CONFIG_VIDEO_CX88_MPEG=m
-CONFIG_VIDEO_BT848=m
-CONFIG_DVB_BT8XX=m
-CONFIG_VIDEO_SAA7134=m
-CONFIG_VIDEO_SAA7134_ALSA=m
-CONFIG_VIDEO_SAA7134_RC=y
-CONFIG_VIDEO_SAA7134_DVB=m
-CONFIG_VIDEO_SAA7164=m
-
-#
-# Media digital TV PCI Adapters
-#
-CONFIG_DVB_AV7110=m
-CONFIG_DVB_AV7110_OSD=y
-CONFIG_DVB_BUDGET_CORE=m
-CONFIG_DVB_BUDGET=m
-CONFIG_DVB_BUDGET_CI=m
-CONFIG_DVB_BUDGET_AV=m
-CONFIG_DVB_BUDGET_PATCH=m
-CONFIG_DVB_B2C2_FLEXCOP_PCI=m
-# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
-CONFIG_DVB_PLUTO2=m
-CONFIG_DVB_DM1105=m
-CONFIG_DVB_PT1=m
-CONFIG_MANTIS_CORE=m
-CONFIG_DVB_MANTIS=m
-CONFIG_DVB_HOPPER=m
-CONFIG_DVB_NGENE=m
-CONFIG_DVB_DDBRIDGE=m
-# CONFIG_V4L_PLATFORM_DRIVERS is not set
-# CONFIG_V4L_MEM2MEM_DRIVERS is not set
-# CONFIG_V4L_TEST_DRIVERS is not set
-
-#
-# Supported MMC/SDIO adapters
-#
-CONFIG_SMS_SDIO_DRV=m
-# CONFIG_MEDIA_PARPORT_SUPPORT is not set
-# CONFIG_RADIO_ADAPTERS is not set
-
-#
-# Supported FireWire (IEEE 1394) Adapters
-#
-CONFIG_DVB_FIREDTV=m
-CONFIG_DVB_FIREDTV_INPUT=y
-CONFIG_MEDIA_COMMON_OPTIONS=y
-
-#
-# common driver options
-#
-CONFIG_VIDEO_CX2341X=m
-CONFIG_VIDEO_BTCX=m
-CONFIG_VIDEO_TVEEPROM=m
-CONFIG_CYPRESS_FIRMWARE=m
-CONFIG_DVB_B2C2_FLEXCOP=m
-CONFIG_VIDEO_SAA7146=m
-CONFIG_VIDEO_SAA7146_VV=m
-CONFIG_SMS_SIANO_MDTV=m
-CONFIG_SMS_SIANO_RC=y
-# CONFIG_SMS_SIANO_DEBUGFS is not set
-
-#
-# Media ancillary drivers (tuners, sensors, i2c, frontends)
-#
-CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
-CONFIG_MEDIA_ATTACH=y
-CONFIG_VIDEO_IR_I2C=m
-
-#
-# Audio decoders, processors and mixers
-#
-CONFIG_VIDEO_TVAUDIO=m
-CONFIG_VIDEO_TDA7432=m
-CONFIG_VIDEO_MSP3400=m
-CONFIG_VIDEO_CS5345=m
-CONFIG_VIDEO_CS53L32A=m
-CONFIG_VIDEO_WM8775=m
-CONFIG_VIDEO_WM8739=m
-CONFIG_VIDEO_VP27SMPX=m
-
-#
-# RDS decoders
-#
-CONFIG_VIDEO_SAA6588=m
-
-#
-# Video decoders
-#
-CONFIG_VIDEO_SAA711X=m
-CONFIG_VIDEO_TVP5150=m
-
-#
-# Video and audio decoders
-#
-CONFIG_VIDEO_SAA717X=m
-CONFIG_VIDEO_CX25840=m
-
-#
-# Video encoders
-#
-CONFIG_VIDEO_SAA7127=m
-
-#
-# Camera sensor devices
-#
-CONFIG_VIDEO_MT9V011=m
-
-#
-# Flash devices
-#
-
-#
-# Video improvement chips
-#
-CONFIG_VIDEO_UPD64031A=m
-CONFIG_VIDEO_UPD64083=m
-
-#
-# Miscelaneous helper chips
-#
-CONFIG_VIDEO_M52790=m
-
-#
-# Sensors used on soc_camera driver
-#
-CONFIG_MEDIA_TUNER=m
-CONFIG_MEDIA_TUNER_SIMPLE=m
-CONFIG_MEDIA_TUNER_TDA8290=m
-CONFIG_MEDIA_TUNER_TDA827X=m
-CONFIG_MEDIA_TUNER_TDA18271=m
-CONFIG_MEDIA_TUNER_TDA9887=m
-CONFIG_MEDIA_TUNER_TEA5761=m
-CONFIG_MEDIA_TUNER_TEA5767=m
-CONFIG_MEDIA_TUNER_MT20XX=m
-CONFIG_MEDIA_TUNER_MT2060=m
-CONFIG_MEDIA_TUNER_MT2063=m
-CONFIG_MEDIA_TUNER_MT2266=m
-CONFIG_MEDIA_TUNER_MT2131=m
-CONFIG_MEDIA_TUNER_QT1010=m
-CONFIG_MEDIA_TUNER_XC2028=m
-CONFIG_MEDIA_TUNER_XC5000=m
-CONFIG_MEDIA_TUNER_XC4000=m
-CONFIG_MEDIA_TUNER_MXL5005S=m
-CONFIG_MEDIA_TUNER_MXL5007T=m
-CONFIG_MEDIA_TUNER_MC44S803=m
-CONFIG_MEDIA_TUNER_MAX2165=m
-CONFIG_MEDIA_TUNER_TDA18218=m
-CONFIG_MEDIA_TUNER_FC0011=m
-CONFIG_MEDIA_TUNER_FC0012=m
-CONFIG_MEDIA_TUNER_FC0013=m
-CONFIG_MEDIA_TUNER_TDA18212=m
-CONFIG_MEDIA_TUNER_E4000=m
-CONFIG_MEDIA_TUNER_FC2580=m
-CONFIG_MEDIA_TUNER_TUA9001=m
-CONFIG_MEDIA_TUNER_IT913X=m
-CONFIG_MEDIA_TUNER_R820T=m
-
-#
-# Multistandard (satellite) frontends
-#
-CONFIG_DVB_STB0899=m
-CONFIG_DVB_STB6100=m
-CONFIG_DVB_STV090x=m
-CONFIG_DVB_STV6110x=m
-
-#
-# Multistandard (cable + terrestrial) frontends
-#
-CONFIG_DVB_DRXK=m
-CONFIG_DVB_TDA18271C2DD=m
-
-#
-# DVB-S (satellite) frontends
-#
-CONFIG_DVB_CX24110=m
-CONFIG_DVB_CX24123=m
-CONFIG_DVB_MT312=m
-CONFIG_DVB_ZL10036=m
-CONFIG_DVB_ZL10039=m
-CONFIG_DVB_S5H1420=m
-CONFIG_DVB_STV0288=m
-CONFIG_DVB_STB6000=m
-CONFIG_DVB_STV0299=m
-CONFIG_DVB_STV6110=m
-CONFIG_DVB_STV0900=m
-CONFIG_DVB_TDA8083=m
-CONFIG_DVB_TDA10086=m
-CONFIG_DVB_TDA8261=m
-CONFIG_DVB_VES1X93=m
-CONFIG_DVB_TUNER_ITD1000=m
-CONFIG_DVB_TUNER_CX24113=m
-CONFIG_DVB_TDA826X=m
-CONFIG_DVB_TUA6100=m
-CONFIG_DVB_CX24116=m
-CONFIG_DVB_SI21XX=m
-CONFIG_DVB_TS2020=m
-CONFIG_DVB_DS3000=m
-CONFIG_DVB_MB86A16=m
-CONFIG_DVB_TDA10071=m
-
-#
-# DVB-T (terrestrial) frontends
-#
-CONFIG_DVB_SP8870=m
-CONFIG_DVB_SP887X=m
-CONFIG_DVB_CX22700=m
-CONFIG_DVB_CX22702=m
-CONFIG_DVB_DRXD=m
-CONFIG_DVB_L64781=m
-CONFIG_DVB_TDA1004X=m
-CONFIG_DVB_NXT6000=m
-CONFIG_DVB_MT352=m
-CONFIG_DVB_ZL10353=m
-CONFIG_DVB_DIB3000MB=m
-CONFIG_DVB_DIB3000MC=m
-CONFIG_DVB_DIB7000M=m
-CONFIG_DVB_DIB7000P=m
-CONFIG_DVB_TDA10048=m
-CONFIG_DVB_AF9013=m
-CONFIG_DVB_EC100=m
-CONFIG_DVB_STV0367=m
-CONFIG_DVB_CXD2820R=m
-CONFIG_DVB_RTL2830=m
-CONFIG_DVB_RTL2832=m
-
-#
-# DVB-C (cable) frontends
-#
-CONFIG_DVB_VES1820=m
-CONFIG_DVB_TDA10021=m
-CONFIG_DVB_TDA10023=m
-CONFIG_DVB_STV0297=m
-
-#
-# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
-#
-CONFIG_DVB_NXT200X=m
-CONFIG_DVB_OR51211=m
-CONFIG_DVB_OR51132=m
-CONFIG_DVB_BCM3510=m
-CONFIG_DVB_LGDT330X=m
-CONFIG_DVB_LGDT3305=m
-CONFIG_DVB_LG2160=m
-CONFIG_DVB_S5H1409=m
-CONFIG_DVB_AU8522=m
-CONFIG_DVB_AU8522_DTV=m
-CONFIG_DVB_AU8522_V4L=m
-CONFIG_DVB_S5H1411=m
-
-#
-# ISDB-T (terrestrial) frontends
-#
-CONFIG_DVB_S921=m
-CONFIG_DVB_DIB8000=m
-CONFIG_DVB_MB86A20S=m
-
-#
-# Digital terrestrial only tuners/PLL
-#
-CONFIG_DVB_PLL=m
-CONFIG_DVB_TUNER_DIB0070=m
-CONFIG_DVB_TUNER_DIB0090=m
-
-#
-# SEC control devices for DVB-S
-#
-CONFIG_DVB_LNBP21=m
-CONFIG_DVB_LNBP22=m
-CONFIG_DVB_ISL6405=m
-CONFIG_DVB_ISL6421=m
-CONFIG_DVB_ISL6423=m
-CONFIG_DVB_A8293=m
-CONFIG_DVB_LGS8GXX=m
-CONFIG_DVB_ATBM8830=m
-CONFIG_DVB_TDA665x=m
-CONFIG_DVB_IX2505V=m
-CONFIG_DVB_IT913X_FE=m
-CONFIG_DVB_M88RS2000=m
-CONFIG_DVB_AF9033=m
-
-#
-# Tools to develop new frontends
-#
-# CONFIG_DVB_DUMMY_FE is not set
-
-#
-# Graphics support
-#
-CONFIG_AGP=y
-CONFIG_VGA_ARB=y
-CONFIG_VGA_ARB_MAX_GPUS=64
-CONFIG_DRM=m
-CONFIG_DRM_DP_AUX_CHARDEV=y
-# CONFIG_DRM_DEBUG_SELFTEST is not set
-CONFIG_DRM_KMS_HELPER=m
-CONFIG_DRM_KMS_FB_HELPER=y
-CONFIG_DRM_FBDEV_EMULATION=y
-CONFIG_DRM_FBDEV_OVERALLOC=100
-CONFIG_DRM_LOAD_EDID_FIRMWARE=y
-# CONFIG_DRM_DP_CEC is not set
-CONFIG_DRM_TTM=m
-CONFIG_DRM_VM=y
-CONFIG_DRM_SCHED=m
-
-#
-# I2C encoder or helper chips
-#
-CONFIG_DRM_I2C_CH7006=m
-CONFIG_DRM_I2C_SIL164=m
-# CONFIG_DRM_I2C_NXP_TDA998X is not set
-# CONFIG_DRM_I2C_NXP_TDA9950 is not set
-CONFIG_DRM_RADEON=m
-# CONFIG_DRM_RADEON_USERPTR is not set
-CONFIG_DRM_AMDGPU=m
-# CONFIG_DRM_AMDGPU_SI is not set
-# CONFIG_DRM_AMDGPU_CIK is not set
-# CONFIG_DRM_AMDGPU_USERPTR is not set
-# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
-
-#
-# ACP (Audio CoProcessor) Configuration
-#
-# CONFIG_DRM_AMD_ACP is not set
-
-#
-# Display Engine Configuration
-#
-CONFIG_DRM_AMD_DC=y
-# CONFIG_DRM_AMD_DC_DCN1_0 is not set
-# CONFIG_DRM_AMD_DC_DCN1_01 is not set
-# CONFIG_DEBUG_KERNEL_DC is not set
-
-#
-# AMD Library routines
-#
-CONFIG_CHASH=m
-# CONFIG_CHASH_STATS is not set
-# CONFIG_CHASH_SELFTEST is not set
-CONFIG_DRM_NOUVEAU=m
-CONFIG_NOUVEAU_DEBUG=5
-CONFIG_NOUVEAU_DEBUG_DEFAULT=3
-CONFIG_NOUVEAU_DEBUG_MMU=y
-CONFIG_DRM_NOUVEAU_BACKLIGHT=y
-CONFIG_DRM_VGEM=m
-# CONFIG_DRM_VKMS is not set
-CONFIG_DRM_UDL=m
-CONFIG_DRM_AST=m
-CONFIG_DRM_MGAG200=m
-CONFIG_DRM_CIRRUS_QEMU=m
-CONFIG_DRM_QXL=m
-CONFIG_DRM_BOCHS=m
-CONFIG_DRM_VIRTIO_GPU=m
-# CONFIG_DRM_LEGACY is not set
-CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
-# CONFIG_DRM_LIB_RANDOM is not set
-CONFIG_VGASTATE=m
-CONFIG_VIDEO_OUTPUT_CONTROL=m
-CONFIG_HDMI=y
-CONFIG_FB=y
-# CONFIG_FIRMWARE_EDID is not set
-# CONFIG_FB_DDC is not set
-# CONFIG_FB_BOOT_VESA_SUPPORT is not set
-CONFIG_FB_CFB_FILLRECT=y
-CONFIG_FB_CFB_COPYAREA=y
-CONFIG_FB_CFB_IMAGEBLIT=y
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-CONFIG_FB_DEFERRED_IO=y
-# CONFIG_FB_SVGALIB is not set
-CONFIG_FB_MACMODES=y
-CONFIG_FB_BACKLIGHT=y
-CONFIG_FB_MODE_HELPERS=y
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-CONFIG_FB_OF=y
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-CONFIG_FB_VGA16=m
-# CONFIG_FB_UVESA is not set
-# CONFIG_FB_S1D13XXX is not set
-CONFIG_FB_NVIDIA=m
-# CONFIG_FB_NVIDIA_I2C is not set
-# CONFIG_FB_NVIDIA_DEBUG is not set
-CONFIG_FB_NVIDIA_BACKLIGHT=y
-# CONFIG_FB_RIVA is not set
-# CONFIG_FB_I740 is not set
-CONFIG_FB_MATROX=y
-# CONFIG_FB_MATROX_MILLENIUM is not set
-# CONFIG_FB_MATROX_MYSTIQUE is not set
-CONFIG_FB_MATROX_G=y
-# CONFIG_FB_MATROX_I2C is not set
-CONFIG_FB_RADEON=m
-# CONFIG_FB_RADEON_I2C is not set
-CONFIG_FB_RADEON_BACKLIGHT=y
-# CONFIG_FB_RADEON_DEBUG is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_TMIO is not set
-# CONFIG_FB_SM501 is not set
-# CONFIG_FB_SMSCUFX is not set
-# CONFIG_FB_UDL is not set
-CONFIG_FB_IBM_GXT4500=y
-# CONFIG_FB_GOLDFISH is not set
-# CONFIG_FB_VIRTUAL is not set
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-# CONFIG_FB_AUO_K190X is not set
-# CONFIG_FB_SIMPLE is not set
-# CONFIG_EXYNOS_VIDEO is not set
-CONFIG_BACKLIGHT_LCD_SUPPORT=y
-CONFIG_LCD_CLASS_DEVICE=m
-CONFIG_LCD_PLATFORM=m
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-# CONFIG_BACKLIGHT_GENERIC is not set
-CONFIG_BACKLIGHT_PWM=m
-# CONFIG_BACKLIGHT_ADP8860 is not set
-# CONFIG_BACKLIGHT_ADP8870 is not set
-# CONFIG_BACKLIGHT_LM3630 is not set
-# CONFIG_BACKLIGHT_LM3639 is not set
-CONFIG_BACKLIGHT_LP855X=m
-CONFIG_LOGO=y
-# CONFIG_LOGO_LINUX_MONO is not set
-# CONFIG_LOGO_LINUX_VGA16 is not set
-CONFIG_LOGO_LINUX_CLUT224=y
-CONFIG_FB_SSD1307=m
-
-#
-# Console display driver support
-#
-CONFIG_VGA_CONSOLE=y
-CONFIG_VGACON_SOFT_SCROLLBACK=y
-CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-CONFIG_SOUND=m
-CONFIG_SOUND_OSS_CORE=y
-CONFIG_SOUND_OSS_CORE_PRECLAIM=y
-CONFIG_SND=m
-CONFIG_SND_TIMER=m
-CONFIG_SND_PCM=m
-CONFIG_SND_HWDEP=m
-CONFIG_SND_SEQ_DEVICE=m
-CONFIG_SND_RAWMIDI=m
-CONFIG_SND_JACK=y
-CONFIG_SND_JACK_INPUT_DEV=y
-CONFIG_SND_OSSEMUL=y
-# CONFIG_SND_MIXER_OSS is not set
-# CONFIG_SND_PCM_OSS is not set
-CONFIG_SND_PCM_TIMER=y
-CONFIG_SND_HRTIMER=m
-CONFIG_SND_DYNAMIC_MINORS=y
-CONFIG_SND_MAX_CARDS=32
-# CONFIG_SND_SUPPORT_OLD_API is not set
-CONFIG_SND_PROC_FS=y
-CONFIG_SND_VERBOSE_PROCFS=y
-CONFIG_SND_VERBOSE_PRINTK=y
-CONFIG_SND_DEBUG=y
-# CONFIG_SND_DEBUG_VERBOSE is not set
-CONFIG_SND_PCM_XRUN_DEBUG=y
-CONFIG_SND_VMASTER=y
-CONFIG_SND_SEQUENCER=m
-CONFIG_SND_SEQ_DUMMY=m
-CONFIG_SND_SEQUENCER_OSS=m
-CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
-CONFIG_SND_SEQ_MIDI_EVENT=m
-CONFIG_SND_SEQ_MIDI=m
-CONFIG_SND_SEQ_MIDI_EMUL=m
-CONFIG_SND_SEQ_VIRMIDI=m
-CONFIG_SND_MPU401_UART=m
-CONFIG_SND_OPL3_LIB=m
-CONFIG_SND_OPL3_LIB_SEQ=m
-# CONFIG_SND_OPL4_LIB_SEQ is not set
-CONFIG_SND_VX_LIB=m
-CONFIG_SND_AC97_CODEC=m
-CONFIG_SND_DRIVERS=y
-CONFIG_SND_DUMMY=m
-CONFIG_SND_ALOOP=m
-CONFIG_SND_VIRMIDI=m
-CONFIG_SND_MTPAV=m
-# CONFIG_SND_MTS64 is not set
-# CONFIG_SND_SERIAL_U16550 is not set
-CONFIG_SND_MPU401=m
-# CONFIG_SND_PORTMAN2X4 is not set
-CONFIG_SND_AC97_POWER_SAVE=y
-CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
-CONFIG_SND_TEA575X=m
-CONFIG_SND_PCI=y
-CONFIG_SND_AD1889=m
-# CONFIG_SND_ALS300 is not set
-# CONFIG_SND_ALS4000 is not set
-CONFIG_SND_ALI5451=m
-CONFIG_SND_ATIIXP=m
-CONFIG_SND_ATIIXP_MODEM=m
-CONFIG_SND_AU8810=m
-CONFIG_SND_AU8820=m
-CONFIG_SND_AU8830=m
-# CONFIG_SND_AW2 is not set
-# CONFIG_SND_AZT3328 is not set
-CONFIG_SND_BT87X=m
-# CONFIG_SND_BT87X_OVERCLOCK is not set
-CONFIG_SND_CA0106=m
-CONFIG_SND_CMIPCI=m
-CONFIG_SND_OXYGEN_LIB=m
-CONFIG_SND_OXYGEN=m
-# CONFIG_SND_CS4281 is not set
-CONFIG_SND_CS46XX=m
-CONFIG_SND_CS46XX_NEW_DSP=y
-CONFIG_SND_CTXFI=m
-CONFIG_SND_DARLA20=m
-CONFIG_SND_GINA20=m
-CONFIG_SND_LAYLA20=m
-CONFIG_SND_DARLA24=m
-CONFIG_SND_GINA24=m
-CONFIG_SND_LAYLA24=m
-CONFIG_SND_MONA=m
-CONFIG_SND_MIA=m
-CONFIG_SND_ECHO3G=m
-CONFIG_SND_INDIGO=m
-CONFIG_SND_INDIGOIO=m
-CONFIG_SND_INDIGODJ=m
-CONFIG_SND_INDIGOIOX=m
-CONFIG_SND_INDIGODJX=m
-CONFIG_SND_EMU10K1=m
-CONFIG_SND_EMU10K1_SEQ=m
-CONFIG_SND_EMU10K1X=m
-CONFIG_SND_ENS1370=m
-CONFIG_SND_ENS1371=m
-# CONFIG_SND_ES1938 is not set
-CONFIG_SND_ES1968=m
-CONFIG_SND_ES1968_INPUT=y
-CONFIG_SND_ES1968_RADIO=y
-# CONFIG_SND_FM801 is not set
-CONFIG_SND_HDSP=m
-CONFIG_SND_HDSPM=m
-CONFIG_SND_ICE1712=m
-CONFIG_SND_ICE1724=m
-CONFIG_SND_INTEL8X0=m
-CONFIG_SND_INTEL8X0M=m
-CONFIG_SND_KORG1212=m
-CONFIG_SND_LOLA=m
-CONFIG_SND_LX6464ES=m
-CONFIG_SND_MAESTRO3=m
-CONFIG_SND_MAESTRO3_INPUT=y
-CONFIG_SND_MIXART=m
-# CONFIG_SND_NM256 is not set
-CONFIG_SND_PCXHR=m
-# CONFIG_SND_RIPTIDE is not set
-CONFIG_SND_RME32=m
-CONFIG_SND_RME96=m
-CONFIG_SND_RME9652=m
-# CONFIG_SND_SONICVIBES is not set
-CONFIG_SND_TRIDENT=m
-CONFIG_SND_VIA82XX=m
-CONFIG_SND_VIA82XX_MODEM=m
-CONFIG_SND_VIRTUOSO=m
-CONFIG_SND_VX222=m
-# CONFIG_SND_YMFPCI is not set
-
-#
-# HD-Audio
-#
-# CONFIG_SND_HDA_INTEL is not set
-CONFIG_SND_HDA_PREALLOC_SIZE=512
-CONFIG_SND_PPC=y
-CONFIG_SND_USB=y
-CONFIG_SND_USB_AUDIO=m
-CONFIG_SND_USB_UA101=m
-CONFIG_SND_USB_USX2Y=m
-CONFIG_SND_USB_CAIAQ=m
-CONFIG_SND_USB_CAIAQ_INPUT=y
-CONFIG_SND_USB_6FIRE=m
-CONFIG_SND_USB_HIFACE=m
-CONFIG_SND_BCD2000=m
-CONFIG_SND_USB_LINE6=m
-CONFIG_SND_USB_POD=m
-CONFIG_SND_USB_PODHD=m
-CONFIG_SND_USB_TONEPORT=m
-CONFIG_SND_USB_VARIAX=m
-CONFIG_SND_FIREWIRE=y
-CONFIG_SND_FIREWIRE_LIB=m
-CONFIG_SND_FIREWIRE_SPEAKERS=m
-CONFIG_SND_ISIGHT=m
-CONFIG_SND_SCS1X=m
-# CONFIG_SND_SOC is not set
-CONFIG_SND_SYNTH_EMUX=m
-# CONFIG_SOUND_PRIME is not set
-CONFIG_AC97_BUS=m
-
-#
-# HID support
-#
-CONFIG_HID=y
-CONFIG_HID_BATTERY_STRENGTH=y
-CONFIG_HIDRAW=y
-CONFIG_UHID=m
-CONFIG_HID_GENERIC=y
-
-#
-# Special HID drivers
-#
-CONFIG_HID_A4TECH=y
-CONFIG_HID_ACRUX=m
-# CONFIG_HID_ACRUX_FF is not set
-CONFIG_HID_APPLE=y
-CONFIG_HID_APPLEIR=m
-CONFIG_HID_AUREAL=m
-CONFIG_HID_BELKIN=y
-CONFIG_HID_CHERRY=y
-CONFIG_HID_CHICONY=y
-CONFIG_HID_PRODIKEYS=m
-CONFIG_HID_CYPRESS=y
-CONFIG_HID_DRAGONRISE=m
-# CONFIG_DRAGONRISE_FF is not set
-# CONFIG_HID_EMS_FF is not set
-CONFIG_HID_ELECOM=m
-CONFIG_HID_EZKEY=y
-CONFIG_HID_HOLTEK=m
-# CONFIG_HOLTEK_FF is not set
-CONFIG_HID_KEYTOUCH=m
-CONFIG_HID_KYE=m
-CONFIG_HID_UCLOGIC=m
-CONFIG_HID_WALTOP=m
-CONFIG_HID_GYRATION=m
-CONFIG_HID_ICADE=m
-CONFIG_HID_TWINHAN=m
-CONFIG_HID_KENSINGTON=y
-CONFIG_HID_LCPOWER=m
-CONFIG_HID_LENOVO_TPKBD=m
-CONFIG_HID_LOGITECH=y
-CONFIG_HID_LOGITECH_DJ=m
-# CONFIG_LOGITECH_FF is not set
-# CONFIG_LOGIRUMBLEPAD2_FF is not set
-# CONFIG_LOGIG940_FF is not set
-# CONFIG_LOGIWHEELS_FF is not set
-CONFIG_HID_MAGICMOUSE=y
-CONFIG_HID_MICROSOFT=y
-CONFIG_HID_MONTEREY=y
-CONFIG_HID_MULTITOUCH=m
-CONFIG_HID_NTRIG=y
-CONFIG_HID_ORTEK=m
-CONFIG_HID_PANTHERLORD=m
-# CONFIG_PANTHERLORD_FF is not set
-CONFIG_HID_PETALYNX=m
-CONFIG_HID_PICOLCD=m
-CONFIG_HID_PICOLCD_FB=y
-CONFIG_HID_PICOLCD_BACKLIGHT=y
-CONFIG_HID_PICOLCD_LCD=y
-CONFIG_HID_PICOLCD_LEDS=y
-CONFIG_HID_PICOLCD_CIR=y
-CONFIG_HID_PLANTRONICS=y
-CONFIG_HID_PRIMAX=m
-CONFIG_HID_PS3REMOTE=m
-CONFIG_HID_ROCCAT=m
-CONFIG_HID_SAITEK=m
-CONFIG_HID_SAMSUNG=m
-CONFIG_HID_SONY=m
-CONFIG_HID_SPEEDLINK=m
-CONFIG_HID_STEELSERIES=m
-CONFIG_HID_SUNPLUS=m
-CONFIG_HID_RMI=m
-CONFIG_HID_GREENASIA=m
-# CONFIG_GREENASIA_FF is not set
-CONFIG_HID_SMARTJOYPLUS=m
-# CONFIG_SMARTJOYPLUS_FF is not set
-CONFIG_HID_TIVO=m
-CONFIG_HID_TOPSEED=m
-CONFIG_HID_THINGM=m
-CONFIG_HID_THRUSTMASTER=m
-# CONFIG_THRUSTMASTER_FF is not set
-CONFIG_HID_WACOM=m
-CONFIG_HID_WIIMOTE=m
-CONFIG_HID_WIIMOTE_EXT=y
-CONFIG_HID_ZEROPLUS=m
-# CONFIG_ZEROPLUS_FF is not set
-CONFIG_HID_ZYDACRON=m
-# CONFIG_HID_SENSOR_HUB is not set
-CONFIG_HID_ALPS=m
-
-#
-# USB HID support
-#
-CONFIG_USB_HID=y
-CONFIG_HID_PID=y
-CONFIG_USB_HIDDEV=y
-
-#
-# I2C HID support
-#
-CONFIG_I2C_HID=m
-CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
-CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-CONFIG_USB_SUPPORT=y
-CONFIG_USB_COMMON=y
-CONFIG_USB_ARCH_HAS_HCD=y
-CONFIG_USB=y
-CONFIG_USB_PCI=y
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-
-#
-# Miscellaneous USB options
-#
-CONFIG_USB_DEFAULT_PERSIST=y
-# CONFIG_USB_DYNAMIC_MINORS is not set
-# CONFIG_USB_OTG is not set
-# CONFIG_USB_OTG_WHITELIST is not set
-# CONFIG_USB_OTG_FSM is not set
-CONFIG_USB_LEDS_TRIGGER_USBPORT=m
-CONFIG_USB_MON=y
-CONFIG_USB_WUSB=m
-CONFIG_USB_WUSB_CBAF=m
-# CONFIG_USB_WUSB_CBAF_DEBUG is not set
-
-#
-# USB Host Controller Drivers
-#
-# CONFIG_USB_C67X00_HCD is not set
-CONFIG_USB_XHCI_HCD=y
-# CONFIG_USB_XHCI_DBGCAP is not set
-CONFIG_USB_XHCI_PCI=y
-# CONFIG_USB_XHCI_PLATFORM is not set
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_ROOT_HUB_TT=y
-CONFIG_USB_EHCI_TT_NEWSCHED=y
-CONFIG_USB_EHCI_PCI=y
-CONFIG_USB_EHCI_HCD_PPC_OF=y
-# CONFIG_USB_EHCI_HCD_PLATFORM is not set
-# CONFIG_USB_OXU210HP_HCD is not set
-# CONFIG_USB_ISP116X_HCD is not set
-# CONFIG_USB_ISP1760_HCD is not set
-# CONFIG_USB_ISP1362_HCD is not set
-# CONFIG_USB_FOTG210_HCD is not set
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
-CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
-CONFIG_USB_OHCI_HCD_PPC_OF=y
-CONFIG_USB_OHCI_HCD_PCI=y
-# CONFIG_USB_OHCI_HCD_PLATFORM is not set
-CONFIG_USB_UHCI_HCD=y
-# CONFIG_USB_U132_HCD is not set
-# CONFIG_USB_SL811_HCD is not set
-# CONFIG_USB_R8A66597_HCD is not set
-# CONFIG_USB_WHCI_HCD is not set
-CONFIG_USB_HWA_HCD=m
-# CONFIG_USB_HCD_BCMA is not set
-# CONFIG_USB_HCD_SSB is not set
-# CONFIG_USB_HCD_TEST_MODE is not set
-
-#
-# USB Device Class drivers
-#
-CONFIG_USB_ACM=m
-CONFIG_USB_PRINTER=m
-CONFIG_USB_WDM=m
-CONFIG_USB_TMC=m
-
-#
-# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
-#
-
-#
-# also be needed; see USB_STORAGE Help for more info
-#
-CONFIG_USB_STORAGE=m
-# CONFIG_USB_STORAGE_DEBUG is not set
-CONFIG_USB_STORAGE_REALTEK=m
-CONFIG_REALTEK_AUTOPM=y
-CONFIG_USB_STORAGE_DATAFAB=m
-CONFIG_USB_STORAGE_FREECOM=m
-# CONFIG_USB_STORAGE_ISD200 is not set
-CONFIG_USB_STORAGE_USBAT=m
-CONFIG_USB_STORAGE_SDDR09=m
-CONFIG_USB_STORAGE_SDDR55=m
-CONFIG_USB_STORAGE_JUMPSHOT=m
-CONFIG_USB_STORAGE_ALAUDA=m
-CONFIG_USB_STORAGE_ONETOUCH=m
-CONFIG_USB_STORAGE_KARMA=m
-CONFIG_USB_STORAGE_CYPRESS_ATACB=m
-CONFIG_USB_STORAGE_ENE_UB6250=m
-CONFIG_USB_UAS=m
-
-#
-# USB Imaging devices
-#
-CONFIG_USB_MDC800=m
-CONFIG_USB_MICROTEK=m
-CONFIG_USBIP_CORE=m
-# CONFIG_USBIP_VHCI_HCD is not set
-# CONFIG_USBIP_HOST is not set
-# CONFIG_USBIP_DEBUG is not set
-# CONFIG_USB_DWC3 is not set
-# CONFIG_USB_CHIPIDEA is not set
-
-#
-# USB port drivers
-#
-CONFIG_USB_USS720=m
-CONFIG_USB_SERIAL=y
-CONFIG_USB_SERIAL_CONSOLE=y
-CONFIG_USB_SERIAL_GENERIC=y
-# CONFIG_USB_SERIAL_SIMPLE is not set
-CONFIG_USB_SERIAL_AIRCABLE=m
-CONFIG_USB_SERIAL_ARK3116=m
-CONFIG_USB_SERIAL_BELKIN=m
-CONFIG_USB_SERIAL_CH341=m
-CONFIG_USB_SERIAL_WHITEHEAT=m
-CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
-CONFIG_USB_SERIAL_CP210X=m
-CONFIG_USB_SERIAL_CYPRESS_M8=m
-CONFIG_USB_SERIAL_EMPEG=m
-CONFIG_USB_SERIAL_FTDI_SIO=m
-CONFIG_USB_SERIAL_VISOR=m
-CONFIG_USB_SERIAL_IPAQ=m
-CONFIG_USB_SERIAL_IR=m
-CONFIG_USB_SERIAL_EDGEPORT=m
-CONFIG_USB_SERIAL_EDGEPORT_TI=m
-# CONFIG_USB_SERIAL_F81232 is not set
-CONFIG_USB_SERIAL_GARMIN=m
-CONFIG_USB_SERIAL_IPW=m
-CONFIG_USB_SERIAL_IUU=m
-CONFIG_USB_SERIAL_KEYSPAN_PDA=m
-CONFIG_USB_SERIAL_KEYSPAN=m
-CONFIG_USB_SERIAL_KLSI=m
-CONFIG_USB_SERIAL_KOBIL_SCT=m
-CONFIG_USB_SERIAL_MCT_U232=m
-# CONFIG_USB_SERIAL_METRO is not set
-CONFIG_USB_SERIAL_MOS7720=m
-CONFIG_USB_SERIAL_MOS7715_PARPORT=y
-CONFIG_USB_SERIAL_MOS7840=m
-# CONFIG_USB_SERIAL_MXUPORT is not set
-CONFIG_USB_SERIAL_NAVMAN=m
-CONFIG_USB_SERIAL_PL2303=m
-CONFIG_USB_SERIAL_OTI6858=m
-CONFIG_USB_SERIAL_QCAUX=m
-CONFIG_USB_SERIAL_QUALCOMM=m
-CONFIG_USB_SERIAL_SPCP8X5=m
-CONFIG_USB_SERIAL_SAFE=m
-CONFIG_USB_SERIAL_SAFE_PADDED=y
-CONFIG_USB_SERIAL_SIERRAWIRELESS=m
-CONFIG_USB_SERIAL_SYMBOL=m
-CONFIG_USB_SERIAL_TI=m
-CONFIG_USB_SERIAL_CYBERJACK=m
-CONFIG_USB_SERIAL_XIRCOM=m
-CONFIG_USB_SERIAL_WWAN=m
-CONFIG_USB_SERIAL_OPTION=m
-CONFIG_USB_SERIAL_OMNINET=m
-CONFIG_USB_SERIAL_OPTICON=m
-CONFIG_USB_SERIAL_XSENS_MT=m
-# CONFIG_USB_SERIAL_WISHBONE is not set
-CONFIG_USB_SERIAL_SSU100=m
-CONFIG_USB_SERIAL_QT2=m
-# CONFIG_USB_SERIAL_UPD78F0730 is not set
-CONFIG_USB_SERIAL_DEBUG=m
-
-#
-# USB Miscellaneous drivers
-#
-CONFIG_USB_EMI62=m
-CONFIG_USB_EMI26=m
-CONFIG_USB_ADUTUX=m
-CONFIG_USB_SEVSEG=m
-# CONFIG_USB_RIO500 is not set
-CONFIG_USB_LEGOTOWER=m
-CONFIG_USB_LCD=m
-# CONFIG_USB_CYPRESS_CY7C63 is not set
-# CONFIG_USB_CYTHERM is not set
-CONFIG_USB_IDMOUSE=m
-CONFIG_USB_FTDI_ELAN=m
-CONFIG_USB_APPLEDISPLAY=m
-CONFIG_USB_SISUSBVGA=m
-CONFIG_USB_SISUSBVGA_CON=y
-CONFIG_USB_LD=m
-# CONFIG_USB_TRANCEVIBRATOR is not set
-CONFIG_USB_IOWARRIOR=m
-# CONFIG_USB_TEST is not set
-# CONFIG_USB_EHSET_TEST_FIXTURE is not set
-CONFIG_USB_ISIGHTFW=m
-# CONFIG_USB_YUREX is not set
-CONFIG_USB_EZUSB_FX2=m
-CONFIG_USB_HSIC_USB3503=m
-# CONFIG_USB_HSIC_USB4604 is not set
-# CONFIG_USB_LINK_LAYER_TEST is not set
-# CONFIG_USB_CHAOSKEY is not set
-CONFIG_USB_ATM=m
-CONFIG_USB_SPEEDTOUCH=m
-CONFIG_USB_CXACRU=m
-CONFIG_USB_UEAGLEATM=m
-CONFIG_USB_XUSBATM=m
-# CONFIG_USB_PHY is not set
-# CONFIG_USB_GADGET is not set
-CONFIG_TYPEC=y
-# CONFIG_TYPEC_TCPM is not set
-CONFIG_TYPEC_UCSI=y
-# CONFIG_TYPEC_TPS6598X is not set
-
-#
-# USB Type-C Multiplexer/DeMultiplexer Switch support
-#
-# CONFIG_TYPEC_MUX_PI3USB30532 is not set
-
-#
-# USB Type-C Alternate Mode drivers
-#
-CONFIG_TYPEC_DP_ALTMODE=y
-# CONFIG_USB_LED_TRIG is not set
-# CONFIG_USB_ULPI_BUS is not set
-CONFIG_UWB=m
-CONFIG_UWB_HWA=m
-CONFIG_UWB_WHCI=m
-CONFIG_UWB_I1480U=m
-CONFIG_MMC=m
-CONFIG_MMC_BLOCK=m
-CONFIG_MMC_BLOCK_MINORS=8
-CONFIG_SDIO_UART=m
-# CONFIG_MMC_TEST is not set
-
-#
-# MMC/SD/SDIO Host Controller Drivers
-#
-# CONFIG_MMC_DEBUG is not set
-CONFIG_MMC_SDHCI=m
-CONFIG_MMC_SDHCI_PCI=m
-CONFIG_MMC_RICOH_MMC=y
-CONFIG_MMC_SDHCI_PLTFM=m
-# CONFIG_MMC_SDHCI_OF_ESDHC is not set
-# CONFIG_MMC_SDHCI_OF_HLWD is not set
-# CONFIG_MMC_SDHCI_CADENCE is not set
-# CONFIG_MMC_SDHCI_F_SDH30 is not set
-# CONFIG_MMC_WBSD is not set
-CONFIG_MMC_TIFM_SD=m
-CONFIG_MMC_CB710=m
-CONFIG_MMC_VIA_SDMMC=m
-CONFIG_MMC_VUB300=m
-CONFIG_MMC_USHC=m
-# CONFIG_MMC_USDHI6ROL0 is not set
-CONFIG_MMC_REALTEK_PCI=m
-CONFIG_MMC_REALTEK_USB=m
-CONFIG_MMC_CQHCI=m
-# CONFIG_MMC_TOSHIBA_PCI is not set
-# CONFIG_MMC_MTK is not set
-CONFIG_MEMSTICK=m
-# CONFIG_MEMSTICK_DEBUG is not set
-
-#
-# MemoryStick drivers
-#
-# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
-CONFIG_MSPRO_BLOCK=m
-
-#
-# MemoryStick Host Controller Drivers
-#
-CONFIG_MEMSTICK_TIFM_MS=m
-CONFIG_MEMSTICK_JMICRON_38X=m
-CONFIG_MEMSTICK_R592=m
-CONFIG_MEMSTICK_REALTEK_PCI=m
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-
-#
-# LED drivers
-#
-CONFIG_LEDS_LM3530=m
-# CONFIG_LEDS_LM3642 is not set
-# CONFIG_LEDS_PCA9532 is not set
-# CONFIG_LEDS_GPIO is not set
-CONFIG_LEDS_LP3944=m
-CONFIG_LEDS_LP55XX_COMMON=m
-CONFIG_LEDS_LP5521=m
-CONFIG_LEDS_LP5523=m
-CONFIG_LEDS_LP5562=m
-# CONFIG_LEDS_PCA955X is not set
-# CONFIG_LEDS_PCA9633 is not set
-# CONFIG_LEDS_PWM is not set
-# CONFIG_LEDS_BD2802 is not set
-CONFIG_LEDS_LT3593=m
-# CONFIG_LEDS_TCA6507 is not set
-# CONFIG_LEDS_LM355x is not set
-# CONFIG_LEDS_OT200 is not set
-CONFIG_LEDS_BLINKM=m
-CONFIG_LEDS_POWERNV=m
-
-#
-# LED Triggers
-#
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_TIMER=m
-CONFIG_LEDS_TRIGGER_ONESHOT=m
-CONFIG_LEDS_TRIGGER_HEARTBEAT=m
-CONFIG_LEDS_TRIGGER_BACKLIGHT=m
-# CONFIG_LEDS_TRIGGER_CPU is not set
-CONFIG_LEDS_TRIGGER_GPIO=m
-CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
-
-#
-# iptables trigger is under Netfilter config (LED target)
-#
-CONFIG_LEDS_TRIGGER_TRANSIENT=m
-CONFIG_LEDS_TRIGGER_CAMERA=m
-# CONFIG_ACCESSIBILITY is not set
-CONFIG_INFINIBAND=m
-CONFIG_INFINIBAND_USER_MAD=m
-CONFIG_INFINIBAND_USER_ACCESS=m
-# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
-CONFIG_INFINIBAND_USER_MEM=y
-CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
-CONFIG_INFINIBAND_ADDR_TRANS=y
-CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
-CONFIG_INFINIBAND_MTHCA=m
-CONFIG_INFINIBAND_MTHCA_DEBUG=y
-CONFIG_INFINIBAND_EHCA=m
-# CONFIG_INFINIBAND_AMSO1100 is not set
-CONFIG_INFINIBAND_CXGB3=m
-# CONFIG_INFINIBAND_CXGB3_DEBUG is not set
-CONFIG_INFINIBAND_CXGB4=m
-CONFIG_INFINIBAND_I40IW=m
-CONFIG_MLX4_INFINIBAND=m
-CONFIG_MLX5_INFINIBAND=m
-CONFIG_INFINIBAND_NES=m
-# CONFIG_INFINIBAND_NES_DEBUG is not set
-CONFIG_INFINIBAND_OCRDMA=m
-CONFIG_INFINIBAND_IPOIB=m
-CONFIG_INFINIBAND_IPOIB_CM=y
-CONFIG_INFINIBAND_IPOIB_DEBUG=y
-# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
-CONFIG_INFINIBAND_SRP=m
-CONFIG_INFINIBAND_SRPT=m
-CONFIG_INFINIBAND_ISER=m
-CONFIG_INFINIBAND_ISERT=m
-CONFIG_RDMA_RXE=m
-CONFIG_INFINIBAND_QEDR=m
-CONFIG_INFINIBAND_BNXT_RE=m
-CONFIG_EDAC=y
-CONFIG_EDAC_LEGACY_SYSFS=y
-CONFIG_EDAC_DEBUG=y
-CONFIG_EDAC_MM_EDAC=m
-CONFIG_EDAC_CPC925=m
-CONFIG_RTC_LIB=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_HCTOSYS=y
-# CONFIG_RTC_SYSTOHC is not set
-CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
-# CONFIG_RTC_DEBUG is not set
-
-#
-# RTC interfaces
-#
-CONFIG_RTC_INTF_SYSFS=y
-CONFIG_RTC_INTF_PROC=y
-CONFIG_RTC_INTF_DEV=y
-# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
-# CONFIG_RTC_DRV_TEST is not set
-
-#
-# I2C RTC drivers
-#
-CONFIG_RTC_DRV_DS1307=m
-CONFIG_RTC_DRV_DS1374=m
-CONFIG_RTC_DRV_DS1672=m
-CONFIG_RTC_DRV_DS3232=m
-CONFIG_RTC_DRV_MAX6900=m
-CONFIG_RTC_DRV_RS5C372=m
-CONFIG_RTC_DRV_ISL1208=m
-CONFIG_RTC_DRV_ISL12022=m
-CONFIG_RTC_DRV_X1205=m
-CONFIG_RTC_DRV_PCF8523=m
-CONFIG_RTC_DRV_PCF8563=m
-CONFIG_RTC_DRV_PCF8583=m
-CONFIG_RTC_DRV_M41T80=m
-CONFIG_RTC_DRV_M41T80_WDT=y
-CONFIG_RTC_DRV_BQ32K=m
-# CONFIG_RTC_DRV_S35390A is not set
-CONFIG_RTC_DRV_FM3130=m
-CONFIG_RTC_DRV_RX8581=m
-CONFIG_RTC_DRV_RX8025=m
-CONFIG_RTC_DRV_EM3027=m
-CONFIG_RTC_DRV_RV3029C2=m
-
-#
-# SPI RTC drivers
-#
-
-#
-# Platform RTC drivers
-#
-CONFIG_RTC_DRV_CMOS=y
-CONFIG_RTC_DRV_DS1286=m
-CONFIG_RTC_DRV_DS1511=m
-CONFIG_RTC_DRV_DS1553=m
-CONFIG_RTC_DRV_DS1742=m
-CONFIG_RTC_DRV_STK17TA8=m
-# CONFIG_RTC_DRV_M48T86 is not set
-CONFIG_RTC_DRV_M48T35=m
-CONFIG_RTC_DRV_M48T59=m
-CONFIG_RTC_DRV_MSM6242=m
-CONFIG_RTC_DRV_BQ4802=m
-CONFIG_RTC_DRV_RP5C01=m
-CONFIG_RTC_DRV_V3020=m
-CONFIG_RTC_DRV_DS2404=m
-CONFIG_RTC_DRV_OPAL=y
-
-#
-# on-CPU RTC drivers
-#
-CONFIG_RTC_DRV_GENERIC=y
-# CONFIG_RTC_DRV_SNVS is not set
-
-#
-# HID Sensor RTC drivers
-#
-# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
-CONFIG_DMADEVICES=y
-CONFIG_DMADEVICES_DEBUG=y
-CONFIG_DMADEVICES_VDEBUG=y
-
-#
-# DMA Devices
-#
-CONFIG_DW_DMAC_CORE=m
-CONFIG_DW_DMAC=m
-# CONFIG_DW_DMAC_PCI is not set
-# CONFIG_DW_DMAC_BIG_ENDIAN_IO is not set
-# CONFIG_IDMA64 is not set
-# CONFIG_TIMB_DMA is not set
-CONFIG_DMA_ENGINE=y
-CONFIG_DMA_OF=y
-
-#
-# DMA Clients
-#
-CONFIG_NET_DMA_RH_KABI=y
-CONFIG_ASYNC_TX_DMA=y
-# CONFIG_DMATEST is not set
-
-#
-# DMABUF options
-#
-CONFIG_SYNC_FILE=y
-# CONFIG_SW_SYNC is not set
-CONFIG_AUXDISPLAY=y
-CONFIG_KS0108=m
-CONFIG_KS0108_PORT=0x378
-CONFIG_KS0108_DELAY=2
-CONFIG_UIO=m
-CONFIG_UIO_CIF=m
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_DMEM_GENIRQ is not set
-CONFIG_UIO_AEC=m
-CONFIG_UIO_SERCOS3=m
-CONFIG_UIO_PCI_GENERIC=m
-# CONFIG_UIO_NETX is not set
-# CONFIG_VFIO_IOMMU_TYPE1 is not set
-CONFIG_VFIO_IOMMU_SPAPR_TCE=m
-CONFIG_VFIO_SPAPR_EEH=m
-CONFIG_VFIO=m
-# CONFIG_VFIO_NOIOMMU is not set
-CONFIG_VFIO_PCI=m
-CONFIG_VFIO_PCI_MMAP=y
-CONFIG_VFIO_PCI_INTX=y
-# CONFIG_VFIO_MDEV is not set
-CONFIG_IRQ_BYPASS_MANAGER=y
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=m
-
-#
-# Virtio drivers
-#
-CONFIG_VIRTIO_PCI=m
-CONFIG_VIRTIO_PCI_LEGACY=y
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-# CONFIG_VIRTIO_MMIO is not set
-
-#
-# Microsoft Hyper-V guest support
-#
-# CONFIG_HYPERV_TSCPAGE is not set
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_W35UND is not set
-# CONFIG_PRISM2_USB is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_ASUS_OLED is not set
-# CONFIG_PANEL is not set
-# CONFIG_R8187SE is not set
-# CONFIG_RTL8192U is not set
-CONFIG_RTLLIB=m
-CONFIG_RTLLIB_CRYPTO_CCMP=m
-CONFIG_RTLLIB_CRYPTO_TKIP=m
-CONFIG_RTLLIB_CRYPTO_WEP=m
-CONFIG_RTL8192E=m
-CONFIG_R8712U=m
-# CONFIG_RTS5139 is not set
-# CONFIG_TRANZPORT is not set
-# CONFIG_IDE_PHISON is not set
-# CONFIG_LINE6_USB is not set
-# CONFIG_USB_SERIAL_QUATECH2 is not set
-# CONFIG_VT6655 is not set
-# CONFIG_VT6656 is not set
-# CONFIG_DX_SEP is not set
-
-#
-# IIO staging drivers
-#
-
-#
-# Accelerometers
-#
-
-#
-# Analog to digital converters
-#
-# CONFIG_AD7291 is not set
-# CONFIG_AD7606 is not set
-# CONFIG_AD799X is not set
-
-#
-# Analog digital bi-direction converters
-#
-# CONFIG_ADT7316 is not set
-
-#
-# Capacitance to digital converters
-#
-# CONFIG_AD7150 is not set
-# CONFIG_AD7152 is not set
-# CONFIG_AD7746 is not set
-
-#
-# Direct Digital Synthesis
-#
-
-#
-# Digital gyroscope sensors
-#
-
-#
-# Network Analyzer, Impedance Converters
-#
-# CONFIG_AD5933 is not set
-
-#
-# Light sensors
-#
-# CONFIG_SENSORS_ISL29018 is not set
-# CONFIG_SENSORS_ISL29028 is not set
-# CONFIG_TSL2583 is not set
-# CONFIG_TSL2x7x is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_SENSORS_HMC5843 is not set
-
-#
-# Active energy metering IC
-#
-# CONFIG_ADE7854 is not set
-
-#
-# Resolver to digital converters
-#
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_PERIODIC_RTC_TRIGGER is not set
-# CONFIG_IIO_GPIO_TRIGGER is not set
-# CONFIG_IIO_SIMPLE_DUMMY is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_CXT1E1 is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_SBE_2T3E3 is not set
-# CONFIG_USB_ENESTORAGE is not set
-# CONFIG_BCM_WIMAX is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_USB_WPAN_HCD is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_CSR_WIFI is not set
-# CONFIG_NET_VENDOR_SILICOM is not set
-# CONFIG_CED1401 is not set
-# CONFIG_DGRP is not set
-CONFIG_FIREWIRE_SERIAL=m
-# CONFIG_ZCACHE is not set
-
-#
-# Hardware Spinlock drivers
-#
-CONFIG_I8253_LOCK=y
-CONFIG_CLKBLD_I8253=y
-# CONFIG_MAILBOX is not set
-CONFIG_IOMMU_API=y
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_IOMMU_DEBUGFS is not set
-CONFIG_OF_IOMMU=y
-CONFIG_SPAPR_TCE_IOMMU=y
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-CONFIG_IIO=y
-CONFIG_IIO_BUFFER=y
-CONFIG_IIO_BUFFER_CB=y
-CONFIG_IIO_KFIFO_BUF=y
-# CONFIG_IIO_CONFIGFS is not set
-CONFIG_IIO_TRIGGER=y
-CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
-# CONFIG_IIO_SW_DEVICE is not set
-# CONFIG_IIO_SW_TRIGGER is not set
-
-#
-# Accelerometers
-#
-# CONFIG_IIO_ST_ACCEL_3AXIS is not set
-
-#
-# Analog to digital converters
-#
-# CONFIG_EXYNOS_ADC is not set
-# CONFIG_MAX1363 is not set
-# CONFIG_TI_ADC081C is not set
-# CONFIG_VIPERBOARD_ADC is not set
-
-#
-# Amplifiers
-#
-
-#
-# Hid Sensor IIO Common
-#
-
-#
-# Digital to analog converters
-#
-# CONFIG_AD5064 is not set
-# CONFIG_AD5380 is not set
-# CONFIG_AD5446 is not set
-# CONFIG_MAX517 is not set
-# CONFIG_MCP4725 is not set
-
-#
-# Frequency Synthesizers DDS/PLL
-#
-
-#
-# Clock Generator/Distribution
-#
-
-#
-# Phase-Locked Loop (PLL) frequency synthesizers
-#
-
-#
-# Digital gyroscope sensors
-#
-# CONFIG_IIO_ST_GYRO_3AXIS is not set
-# CONFIG_ITG3200 is not set
-
-#
-# Inertial measurement units
-#
-# CONFIG_INV_MPU6050_IIO is not set
-
-#
-# Light sensors
-#
-# CONFIG_ADJD_S311 is not set
-# CONFIG_SENSORS_TSL2563 is not set
-# CONFIG_VCNL4000 is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_AK8975 is not set
-# CONFIG_IIO_ST_MAGN_3AXIS is not set
-
-#
-# Inclinometer sensors
-#
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_INTERRUPT_TRIGGER is not set
-# CONFIG_IIO_SYSFS_TRIGGER is not set
-
-#
-# Pressure Sensors
-#
-# CONFIG_IIO_ST_PRESS is not set
-# CONFIG_NTB is not set
-# CONFIG_VME_BUS is not set
-CONFIG_PWM=y
-CONFIG_PWM_SYSFS=y
-CONFIG_IRQCHIP=y
-# CONFIG_IPACK_BUS is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_RAS=y
-CONFIG_LIBNVDIMM=m
-CONFIG_BLK_DEV_PMEM=m
-CONFIG_ND_BLK=m
-CONFIG_ND_CLAIM=y
-CONFIG_ND_BTT=m
-CONFIG_BTT=y
-CONFIG_NVDIMM_KEYS=y
-CONFIG_DAX_DRIVER=y
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-# CONFIG_STM is not set
-# CONFIG_INTEL_TH is not set
-CONFIG_NVMEM=y
-
-#
-# File systems
-#
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=m
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-CONFIG_EXT4_DEBUG=y
-CONFIG_JBD2=m
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=m
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=m
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-CONFIG_XFS_WARN=y
-# CONFIG_XFS_DEBUG is not set
-CONFIG_GFS2_FS=m
-CONFIG_GFS2_FS_LOCKING_DLM=y
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-CONFIG_BTRFS_ASSERT=y
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-CONFIG_QUOTA_DEBUG=y
-CONFIG_QUOTA_TREE=y
-# CONFIG_QFMT_V1 is not set
-CONFIG_QFMT_V2=y
-CONFIG_QUOTACTL=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-CONFIG_FSCACHE_OBJECT_LIST=y
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_JFFS2_FS is not set
-# CONFIG_UBIFS_FS is not set
-# CONFIG_LOGFS is not set
-CONFIG_CRAMFS=m
-CONFIG_SQUASHFS=m
-CONFIG_SQUASHFS_XATTR=y
-CONFIG_SQUASHFS_ZLIB=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_SQUASHFS_XZ=y
-# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
-# CONFIG_SQUASHFS_EMBEDDED is not set
-CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-CONFIG_PSTORE_RAM=m
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-CONFIG_ORE=m
-CONFIG_NETWORK_FILESYSTEMS=y
-CONFIG_NFS_FS=m
-# CONFIG_NFS_V2 is not set
-CONFIG_NFS_V3=m
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=m
-# CONFIG_NFS_SWAP is not set
-CONFIG_NFS_V4_1=y
-CONFIG_NFS_V4_2=y
-CONFIG_PNFS_FILE_LAYOUT=m
-CONFIG_PNFS_BLOCK=m
-CONFIG_PNFS_OBJLAYOUT=m
-CONFIG_PNFS_FLEXFILE_LAYOUT=m
-CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
-# CONFIG_NFS_V4_1_MIGRATION is not set
-CONFIG_NFS_V4_SECURITY_LABEL=y
-CONFIG_NFS_FSCACHE=y
-# CONFIG_NFS_USE_LEGACY_DNS is not set
-CONFIG_NFS_USE_KERNEL_DNS=y
-CONFIG_NFS_DEBUG=y
-CONFIG_NFSD=m
-CONFIG_NFSD_V2_ACL=y
-CONFIG_NFSD_V3=y
-CONFIG_NFSD_V3_ACL=y
-CONFIG_NFSD_V4=y
-CONFIG_NFSD_PNFS=y
-# CONFIG_NFSD_BLOCKLAYOUT is not set
-CONFIG_NFSD_SCSILAYOUT=y
-CONFIG_NFSD_V4_SECURITY_LABEL=y
-CONFIG_NFSD_FAULT_INJECTION=y
-CONFIG_GRACE_PERIOD=m
-CONFIG_LOCKD=m
-CONFIG_LOCKD_V4=y
-CONFIG_NFS_ACL_SUPPORT=m
-CONFIG_NFS_COMMON=y
-CONFIG_SUNRPC=m
-CONFIG_SUNRPC_GSS=m
-CONFIG_SUNRPC_BACKCHANNEL=y
-CONFIG_RPCSEC_GSS_KRB5=m
-CONFIG_SUNRPC_DEBUG=y
-CONFIG_SUNRPC_XPRT_RDMA=m
-CONFIG_CEPH_FS=m
-CONFIG_CEPH_FS_POSIX_ACL=y
-CONFIG_CIFS=m
-CONFIG_CIFS_STATS=y
-# CONFIG_CIFS_STATS2 is not set
-CONFIG_CIFS_WEAK_PW_HASH=y
-CONFIG_CIFS_UPCALL=y
-CONFIG_CIFS_XATTR=y
-CONFIG_CIFS_POSIX=y
-CONFIG_CIFS_ACL=y
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
-CONFIG_CIFS_DFS_UPCALL=y
-# CONFIG_CIFS_SMB311 is not set
-# CONFIG_CIFS_FSCACHE is not set
-# CONFIG_NCP_FS is not set
-# CONFIG_CODA_FS is not set
-# CONFIG_AFS_FS is not set
-CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_737=m
-CONFIG_NLS_CODEPAGE_775=m
-CONFIG_NLS_CODEPAGE_850=m
-CONFIG_NLS_CODEPAGE_852=m
-CONFIG_NLS_CODEPAGE_855=m
-CONFIG_NLS_CODEPAGE_857=m
-CONFIG_NLS_CODEPAGE_860=m
-CONFIG_NLS_CODEPAGE_861=m
-CONFIG_NLS_CODEPAGE_862=m
-CONFIG_NLS_CODEPAGE_863=m
-CONFIG_NLS_CODEPAGE_864=m
-CONFIG_NLS_CODEPAGE_865=m
-CONFIG_NLS_CODEPAGE_866=m
-CONFIG_NLS_CODEPAGE_869=m
-CONFIG_NLS_CODEPAGE_936=m
-CONFIG_NLS_CODEPAGE_950=m
-CONFIG_NLS_CODEPAGE_932=m
-CONFIG_NLS_CODEPAGE_949=m
-CONFIG_NLS_CODEPAGE_874=m
-CONFIG_NLS_ISO8859_8=m
-CONFIG_NLS_CODEPAGE_1250=m
-CONFIG_NLS_CODEPAGE_1251=m
-CONFIG_NLS_ASCII=y
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_ISO8859_2=m
-CONFIG_NLS_ISO8859_3=m
-CONFIG_NLS_ISO8859_4=m
-CONFIG_NLS_ISO8859_5=m
-CONFIG_NLS_ISO8859_6=m
-CONFIG_NLS_ISO8859_7=m
-CONFIG_NLS_ISO8859_9=m
-CONFIG_NLS_ISO8859_13=m
-CONFIG_NLS_ISO8859_14=m
-CONFIG_NLS_ISO8859_15=m
-CONFIG_NLS_KOI8_R=m
-CONFIG_NLS_KOI8_U=m
-CONFIG_NLS_MAC_ROMAN=m
-CONFIG_NLS_MAC_CELTIC=m
-CONFIG_NLS_MAC_CENTEURO=m
-CONFIG_NLS_MAC_CROATIAN=m
-CONFIG_NLS_MAC_CYRILLIC=m
-CONFIG_NLS_MAC_GAELIC=m
-CONFIG_NLS_MAC_GREEK=m
-CONFIG_NLS_MAC_ICELAND=m
-CONFIG_NLS_MAC_INUIT=m
-CONFIG_NLS_MAC_ROMANIAN=m
-CONFIG_NLS_MAC_TURKISH=m
-CONFIG_NLS_UTF8=m
-CONFIG_DLM=m
-CONFIG_DLM_DEBUG=y
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_STRNCPY_FROM_USER=y
-CONFIG_GENERIC_STRNLEN_USER=y
-CONFIG_GENERIC_PCI_IOMAP=y
-CONFIG_GENERIC_IOMAP=y
-CONFIG_GENERIC_IO=y
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=m
-CONFIG_CRC8=m
-CONFIG_RANDOM32_SELFTEST=y
-CONFIG_842_COMPRESS=m
-CONFIG_842_DECOMPRESS=y
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=y
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
-CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
-CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_REED_SOLOMON=m
-CONFIG_REED_SOLOMON_ENC8=y
-CONFIG_REED_SOLOMON_DEC8=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_BTREE=y
-CONFIG_INTERVAL_TREE=y
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_IOMEM=y
-CONFIG_HAS_IOPORT=y
-CONFIG_HAS_DMA=y
-CONFIG_DMA_VIRT_OPS=y
-CONFIG_CHECK_SIGNATURE=y
-CONFIG_CPUMASK_OFFSTACK=y
-CONFIG_CPU_RMAP=y
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-CONFIG_IRQ_POLL=y
-CONFIG_MPILIB=y
-CONFIG_SIGNATURE=y
-CONFIG_OID_REGISTRY=y
-CONFIG_SG_POOL=y
-CONFIG_PARMAN=m
-CONFIG_SBITMAP=y
-
-#
-# Kernel hacking
-#
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=2048
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-CONFIG_PAGE_OWNER=y
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_SHIRQ=y
-CONFIG_LOCKUP_DETECTOR=y
-CONFIG_HARDLOCKUP_DETECTOR=y
-# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
-# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
-# CONFIG_WQ_WATCHDOG is not set
-# CONFIG_PANIC_ON_OOPS is not set
-CONFIG_PANIC_ON_OOPS_VALUE=0
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-CONFIG_DEBUG_OBJECTS=y
-# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
-CONFIG_DEBUG_OBJECTS_FREE=y
-CONFIG_DEBUG_OBJECTS_TIMERS=y
-CONFIG_DEBUG_OBJECTS_WORK=y
-CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
-CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
-CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-CONFIG_DEBUG_KMEMLEAK=y
-CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=20000
-# CONFIG_DEBUG_KMEMLEAK_TEST is not set
-CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-CONFIG_PROVE_LOCKING=y
-CONFIG_LOCK_STAT=y
-CONFIG_DEBUG_RT_MUTEXES=y
-CONFIG_DEBUG_PI_LIST=y
-# CONFIG_RT_MUTEX_TESTER is not set
-CONFIG_DEBUG_SPINLOCK=y
-CONFIG_DEBUG_MUTEXES=y
-CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
-CONFIG_DEBUG_RWSEMS=y
-CONFIG_DEBUG_LOCK_ALLOC=y
-CONFIG_LOCKDEP=y
-# CONFIG_DEBUG_LOCKDEP is not set
-CONFIG_TRACE_IRQFLAGS=y
-CONFIG_DEBUG_ATOMIC_SLEEP=y
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-CONFIG_DEBUG_STACK_USAGE=y
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-CONFIG_DEBUG_VM=y
-# CONFIG_DEBUG_VM_RB is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-CONFIG_TEST_LIST_SORT=y
-CONFIG_DEBUG_SG=y
-CONFIG_DEBUG_NOTIFIERS=y
-CONFIG_DEBUG_CREDENTIALS=y
-
-#
-# RCU Debugging
-#
-CONFIG_PROVE_RCU=y
-# CONFIG_PROVE_RCU_REPEATEDLY is not set
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-CONFIG_DEBUG_PER_CPU_MAPS=y
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-CONFIG_FAULT_INJECTION=y
-CONFIG_FAILSLAB=y
-CONFIG_FAIL_PAGE_ALLOC=y
-CONFIG_FAIL_MAKE_REQUEST=y
-CONFIG_FAIL_IO_TIMEOUT=y
-CONFIG_FAIL_MMC_REQUEST=y
-CONFIG_FAULT_INJECTION_DEBUG_FS=y
-CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y
-CONFIG_LATENCYTOP=y
-CONFIG_PAGE_EXTENSION=y
-CONFIG_DEBUG_PAGEALLOC=y
-CONFIG_WANT_PAGE_DEBUG_FLAGS=y
-# CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT is not set
-CONFIG_PAGE_GUARD=y
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-# CONFIG_FUNCTION_GRAPH_TRACER is not set
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-# CONFIG_STACK_TRACER is not set
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
-# CONFIG_FUNCTION_PROFILER is not set
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_TEST_PARMAN is not set
-# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-CONFIG_DMA_API_DEBUG=y
-CONFIG_ATOMIC64_SELFTEST=y
-# CONFIG_TEST_LIVEPATCH is not set
-CONFIG_ASYNC_RAID6_TEST=m
-# CONFIG_SAMPLES is not set
-CONFIG_HAVE_ARCH_KGDB=y
-CONFIG_KGDB=y
-CONFIG_KGDB_SERIAL_CONSOLE=y
-CONFIG_KGDB_TESTS=y
-# CONFIG_KGDB_TESTS_ON_BOOT is not set
-CONFIG_KGDB_KDB=y
-CONFIG_KDB_KEYBOARD=y
-CONFIG_KDB_CONTINUE_CATASTROPHIC=0
-CONFIG_TEST_STRING_HELPERS=m
-CONFIG_TEST_KSTRTOX=y
-CONFIG_PPC_DISABLE_WERROR=y
-CONFIG_PRINT_STACK_DEPTH=64
-CONFIG_DEBUG_STACKOVERFLOW=y
-# CONFIG_HCALL_STATS is not set
-CONFIG_PPC_EMULATED_STATS=y
-# CONFIG_CODE_PATCHING_SELFTEST is not set
-# CONFIG_FTR_FIXUP_SELFTEST is not set
-CONFIG_MSI_BITMAP_SELFTEST=y
-CONFIG_XMON=y
-# CONFIG_XMON_DEFAULT is not set
-CONFIG_XMON_DISASSEMBLY=y
-CONFIG_DEBUGGER=y
-CONFIG_BOOTX_TEXT=y
-# CONFIG_PPC_EARLY_DEBUG is not set
-CONFIG_STRICT_DEVMEM=y
-# CONFIG_FAIL_IOMMU is not set
-# CONFIG_PPC_DEBUG_RFI is not set
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_KEYS_COMPAT=y
-CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_BIG_KEYS=y
-CONFIG_TRUSTED_KEYS=y
-CONFIG_ENCRYPTED_KEYS=y
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
-CONFIG_SECURITY=y
-CONFIG_SECURITYFS=y
-CONFIG_SECURITY_NETWORK=y
-CONFIG_SECURITY_INFINIBAND=y
-CONFIG_SECURITY_NETWORK_XFRM=y
-CONFIG_SECURITY_PATH=y
-CONFIG_SECURITY_SECURELEVEL=y
-CONFIG_LSM_MMAP_MIN_ADDR=65535
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
-CONFIG_SECURITY_SELINUX=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
-CONFIG_SECURITY_SELINUX_DISABLE=y
-CONFIG_SECURITY_SELINUX_DEVELOP=y
-CONFIG_SECURITY_SELINUX_AVC_STATS=y
-CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
-# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
-# CONFIG_SECURITY_SMACK is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
-CONFIG_SECURITY_YAMA=y
-CONFIG_SECURITY_YAMA_STACKED=y
-CONFIG_INTEGRITY=y
-CONFIG_INTEGRITY_SIGNATURE=y
-CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
-CONFIG_IMA=y
-CONFIG_IMA_MEASURE_PCR_IDX=10
-CONFIG_IMA_AUDIT=y
-CONFIG_IMA_LSM_RULES=y
-CONFIG_IMA_APPRAISE=y
-CONFIG_IMA_TRUSTED_KEYRING=y
-CONFIG_EVM=y
-CONFIG_EVM_HMAC_VERSION=2
-CONFIG_DEFAULT_SECURITY_SELINUX=y
-# CONFIG_DEFAULT_SECURITY_YAMA is not set
-# CONFIG_DEFAULT_SECURITY_DAC is not set
-CONFIG_DEFAULT_SECURITY="selinux"
-CONFIG_XOR_BLOCKS=m
-CONFIG_ASYNC_CORE=m
-CONFIG_ASYNC_MEMCPY=m
-CONFIG_ASYNC_XOR=m
-CONFIG_ASYNC_PQ=m
-CONFIG_ASYNC_RAID6_RECOV=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_ACOMP2=y
-# CONFIG_CRYPTO_RSA is not set
-# CONFIG_CRYPTO_DH is not set
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-# CONFIG_CRYPTO_CRYPTD is not set
-# CONFIG_CRYPTO_MCRYPTD is not set
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRCT10DIF=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-# CONFIG_CRYPTO_SHA1_PPC is not set
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=y
-CONFIG_CRYPTO_842=m
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-CONFIG_CRYPTO_DEV_NX=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=y
-CONFIG_CRYPTO_DEV_VMX=y
-CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m
-CONFIG_CRYPTO_DEV_CHELSIO=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-# CONFIG_PKCS7_MESSAGE_PARSER is not set
-# CONFIG_PPC_CLOCK is not set
-CONFIG_HAVE_KVM_IRQCHIP=y
-CONFIG_HAVE_KVM_IRQFD=y
-CONFIG_HAVE_KVM_EVENTFD=y
-CONFIG_KVM_MMIO=y
-CONFIG_KVM_VFIO=y
-CONFIG_HAVE_KVM_IRQ_BYPASS=y
-CONFIG_VIRTUALIZATION=y
-CONFIG_KVM=y
-CONFIG_KVM_BOOK3S_HANDLER=y
-CONFIG_KVM_BOOK3S_64_HANDLER=y
-CONFIG_KVM_BOOK3S_PR_POSSIBLE=y
-CONFIG_KVM_BOOK3S_HV_POSSIBLE=y
-CONFIG_KVM_BOOK3S_64=m
-CONFIG_KVM_BOOK3S_64_HV=m
-CONFIG_KVM_BOOK3S_64_PR=m
-# CONFIG_KVM_BOOK3S_HV_EXIT_TIMING is not set
-CONFIG_KVM_XICS=y
-CONFIG_HAVE_LIVEPATCH=y
-CONFIG_LIVEPATCH=y
-# CONFIG_RH_KABI_SIZE_ALIGN_CHECKS is not set
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64le.config b/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64le.config
deleted file mode 100644
index 25aff1a..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-ppc64le.config
+++ /dev/null
@@ -1,5656 +0,0 @@
-# powerpc
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/powerpc 3.10.0 Kernel Configuration
-#
-CONFIG_PPC64=y
-
-#
-# Processor support
-#
-CONFIG_PPC_BOOK3S_64=y
-# CONFIG_PPC_BOOK3E_64 is not set
-# CONFIG_POWER7_CPU is not set
-CONFIG_POWER8_CPU=y
-CONFIG_PPC_BOOK3S=y
-CONFIG_POWER3=y
-CONFIG_POWER4=y
-# CONFIG_TUNE_CELL is not set
-CONFIG_PPC_FPU=y
-CONFIG_ALTIVEC=y
-CONFIG_VSX=y
-CONFIG_PPC_ICSWX=y
-# CONFIG_PPC_ICSWX_PID is not set
-# CONFIG_PPC_ICSWX_USE_SIGILL is not set
-CONFIG_PPC_STD_MMU=y
-CONFIG_PPC_STD_MMU_64=y
-CONFIG_PPC_MM_SLICES=y
-CONFIG_PPC_HAVE_PMU_SUPPORT=y
-CONFIG_PPC_PERF_CTRS=y
-CONFIG_SMP=y
-CONFIG_NR_CPUS=2048
-CONFIG_PPC_DOORBELL=y
-# CONFIG_CPU_BIG_ENDIAN is not set
-CONFIG_CPU_LITTLE_ENDIAN=y
-CONFIG_PPC64_BOOT_WRAPPER=y
-CONFIG_64BIT=y
-CONFIG_WORD_SIZE=64
-CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_MMU=y
-CONFIG_ARCH_MMAP_RND_BITS_MAX=28
-CONFIG_ARCH_MMAP_RND_BITS_MIN=14
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=13
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7
-CONFIG_HAVE_SETUP_PER_CPU_AREA=y
-CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
-CONFIG_NR_IRQS=512
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-CONFIG_ARCH_HAS_ILOG2_U32=y
-CONFIG_ARCH_HAS_ILOG2_U64=y
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK=y
-CONFIG_PPC=y
-CONFIG_PPC_BARRIER_NOSPEC=y
-# CONFIG_GENERIC_CSUM is not set
-CONFIG_EARLY_PRINTK=y
-CONFIG_PANIC_TIMEOUT=180
-CONFIG_COMPAT=y
-CONFIG_SYSVIPC_COMPAT=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_ARCH_MAY_HAVE_PC_FDC=y
-CONFIG_PPC_OF=y
-CONFIG_PPC_UDBG_16550=y
-# CONFIG_GENERIC_TBSYNC is not set
-CONFIG_AUDIT_ARCH=y
-CONFIG_GENERIC_BUG=y
-CONFIG_EPAPR_BOOT=y
-# CONFIG_DEFAULT_UIMAGE is not set
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_ARCH_SUSPEND_POSSIBLE=y
-# CONFIG_PPC_DCR_NATIVE is not set
-# CONFIG_PPC_DCR_MMIO is not set
-# CONFIG_PPC_OF_PLATFORM_PCI is not set
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_PPC_EMULATE_SSTEP=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
-CONFIG_AUDIT=y
-CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
-CONFIG_AUDIT_TREE=y
-CONFIG_HAVE_GENERIC_HARDIRQS=y
-
-#
-# IRQ subsystem
-#
-CONFIG_GENERIC_HARDIRQS=y
-CONFIG_GENERIC_IRQ_SHOW=y
-CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
-CONFIG_HARDIRQS_SW_RESEND=y
-CONFIG_IRQ_DOMAIN=y
-# CONFIG_IRQ_DOMAIN_DEBUG is not set
-CONFIG_IRQ_FORCED_THREADING=y
-CONFIG_SPARSE_IRQ=y
-CONFIG_GENERIC_TIME_VSYSCALL_OLD=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-CONFIG_ARCH_HAS_TICK_BROADCAST=y
-CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
-CONFIG_GENERIC_CMOS_UPDATE=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-# CONFIG_NO_HZ_IDLE is not set
-CONFIG_NO_HZ_FULL=y
-# CONFIG_NO_HZ_FULL_ALL is not set
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_BSD_PROCESS_ACCT_V3=y
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_CONTEXT_TRACKING=y
-CONFIG_RCU_USER_QS=y
-# CONFIG_CONTEXT_TRACKING_FORCE is not set
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-# CONFIG_BUILD_BIN2C is not set
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=20
-CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
-CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
-CONFIG_NUMA_BALANCING=y
-CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
-CONFIG_MEMCG=y
-CONFIG_MEMCG_SWAP=y
-CONFIG_MEMCG_SWAP_ENABLED=y
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
-CONFIG_CHECKPOINT_RESTORE=y
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-CONFIG_SCHED_AUTOGROUP=y
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_HAVE_PCSPKR_PLATFORM=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_PCSPKR_PLATFORM=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-CONFIG_USERFAULTFD=y
-CONFIG_PCI_QUIRKS=y
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_OPROFILE=m
-CONFIG_HAVE_OPROFILE=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_ARCH_USE_BUILTIN_BSWAP=y
-CONFIG_KRETPROBES=y
-CONFIG_HAVE_IOREMAP_PROT=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_HW_BREAKPOINT=y
-CONFIG_HAVE_PERF_EVENTS_NMI=y
-CONFIG_HAVE_PERF_REGS=y
-CONFIG_HAVE_PERF_USER_STACK_DUMP=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_HAVE_RCU_TABLE_FREE=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-# CONFIG_CC_STACKPROTECTOR is not set
-CONFIG_HAVE_CONTEXT_TRACKING=y
-CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
-CONFIG_ARCH_MMAP_RND_BITS=14
-CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS=7
-CONFIG_HAVE_RELIABLE_STACKTRACE=y
-CONFIG_CLONE_BACKWARDS=y
-CONFIG_OLD_SIGSUSPEND=y
-CONFIG_COMPAT_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
-CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_SHA1=y
-# CONFIG_MODULE_SIG_SHA224 is not set
-# CONFIG_MODULE_SIG_SHA256 is not set
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha1"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-CONFIG_OSF_PARTITION=y
-# CONFIG_AMIGA_PARTITION is not set
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_MAC_PARTITION=y
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-# CONFIG_LDM_PARTITION is not set
-CONFIG_SGI_PARTITION=y
-# CONFIG_ULTRIX_PARTITION is not set
-CONFIG_SUN_PARTITION=y
-CONFIG_KARMA_PARTITION=y
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_BLOCK_COMPAT=y
-CONFIG_BLK_MQ_PCI=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
-CONFIG_MQ_IOSCHED_DEADLINE=y
-CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PREEMPT_NOTIFIERS=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
-CONFIG_INLINE_READ_UNLOCK=y
-CONFIG_INLINE_READ_UNLOCK_IRQ=y
-CONFIG_INLINE_WRITE_UNLOCK=y
-CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
-CONFIG_MUTEX_SPIN_ON_OWNER=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_FREEZER=y
-CONFIG_PPC_MSI_BITMAP=y
-CONFIG_PPC_XICS=y
-CONFIG_PPC_ICP_NATIVE=y
-CONFIG_PPC_ICP_HV=y
-CONFIG_PPC_ICS_RTAS=y
-CONFIG_PPC_SCOM=y
-CONFIG_SCOM_DEBUGFS=y
-# CONFIG_GE_FPGA is not set
-
-#
-# Platform support
-#
-CONFIG_PPC_POWERNV=y
-CONFIG_OPAL_PRD=m
-CONFIG_PPC_PSERIES=y
-CONFIG_PPC_SPLPAR=y
-CONFIG_PSERIES_MSI=y
-CONFIG_PSERIES_ENERGY=m
-CONFIG_SCANLOG=y
-CONFIG_IO_EVENT_IRQ=y
-CONFIG_LPARCFG=y
-CONFIG_PPC_SMLPAR=y
-CONFIG_CMM=y
-CONFIG_HV_PERF_CTRS=y
-CONFIG_DTL=y
-# CONFIG_PPC_PMAC is not set
-# CONFIG_PPC_MAPLE is not set
-# CONFIG_PPC_PASEMI is not set
-# CONFIG_PPC_PS3 is not set
-# CONFIG_PPC_CELL is not set
-# CONFIG_PPC_CELL_NATIVE is not set
-# CONFIG_PPC_IBM_CELL_BLADE is not set
-# CONFIG_PPC_CELL_QPACE is not set
-# CONFIG_PQ2ADS is not set
-# CONFIG_PPC_WSP is not set
-CONFIG_KVM_GUEST=y
-CONFIG_EPAPR_PARAVIRT=y
-CONFIG_PPC_NATIVE=y
-CONFIG_PPC_OF_BOOT_TRAMPOLINE=y
-# CONFIG_UDBG_RTAS_CONSOLE is not set
-CONFIG_PPC_SMP_MUXED_IPI=y
-# CONFIG_IPIC is not set
-CONFIG_MPIC=y
-# CONFIG_PPC_EPAPR_HV_PIC is not set
-# CONFIG_MPIC_WEIRD is not set
-# CONFIG_MPIC_MSGR is not set
-CONFIG_PPC_I8259=y
-# CONFIG_U3_DART is not set
-CONFIG_PPC_RTAS=y
-CONFIG_RTAS_ERROR_LOGGING=y
-CONFIG_PPC_RTAS_DAEMON=y
-CONFIG_RTAS_PROC=y
-CONFIG_RTAS_FLASH=y
-# CONFIG_MMIO_NVRAM is not set
-# CONFIG_MPIC_U3_HT_IRQS is not set
-CONFIG_IBMVIO=y
-CONFIG_IBMEBUS=y
-CONFIG_EEH=y
-# CONFIG_PPC_MPC106 is not set
-# CONFIG_PPC_970_NAP is not set
-CONFIG_PPC_P7_NAP=y
-CONFIG_PPC_INDIRECT_PIO=y
-
-#
-# CPU Frequency scaling
-#
-CONFIG_CPU_FREQ=y
-CONFIG_CPU_FREQ_GOV_COMMON=y
-CONFIG_CPU_FREQ_STAT=m
-CONFIG_CPU_FREQ_STAT_DETAILS=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
-CONFIG_CPU_FREQ_GOV_POWERSAVE=y
-CONFIG_CPU_FREQ_GOV_USERSPACE=y
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
-CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
-
-#
-# PowerPC CPU frequency scaling drivers
-#
-CONFIG_POWERNV_CPUFREQ=y
-
-#
-# CPUIdle driver
-#
-CONFIG_CPU_IDLE=y
-# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
-# CONFIG_CPU_IDLE_GOV_LADDER is not set
-CONFIG_CPU_IDLE_GOV_MENU=y
-
-#
-# POWERPC CPU Idle Drivers
-#
-CONFIG_PSERIES_CPUIDLE=y
-CONFIG_POWERNV_CPUIDLE=y
-# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
-# CONFIG_FSL_ULI1575 is not set
-CONFIG_SIMPLE_GPIO=y
-
-#
-# Kernel options
-#
-CONFIG_HZ_100=y
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-# CONFIG_HZ_1000 is not set
-CONFIG_HZ=100
-CONFIG_SCHED_HRTICK=y
-# CONFIG_PREEMPT_NONE is not set
-CONFIG_PREEMPT_VOLUNTARY=y
-# CONFIG_PREEMPT is not set
-CONFIG_BINFMT_ELF=y
-CONFIG_COMPAT_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_COREDUMP=y
-CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y
-CONFIG_PPC_TRANSACTIONAL_MEM=y
-# CONFIG_DISABLE_MPROFILE_KERNEL is not set
-CONFIG_MPROFILE_KERNEL=y
-CONFIG_IOMMU_HELPER=y
-CONFIG_SWIOTLB=y
-CONFIG_HOTPLUG_CPU=y
-CONFIG_ARCH_CPU_PROBE_RELEASE=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_HAS_WALK_MEMORY=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_KEXEC=y
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_CRASH_DUMP=y
-CONFIG_FA_DUMP=y
-CONFIG_IRQ_ALL_CPUS=y
-CONFIG_NUMA=y
-CONFIG_NODES_SHIFT=8
-CONFIG_USE_PERCPU_NUMA_NODE_ID=y
-CONFIG_HAVE_MEMORYLESS_NODES=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_SYS_SUPPORTS_HUGETLBFS=y
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_NEED_MULTIPLE_NODES=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_MEMORY_ISOLATION=y
-CONFIG_HAVE_BOOTMEM_INFO_NODE=y
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_MMU_NOTIFIER=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_MEMORY_FAILURE=y
-CONFIG_HWPOISON_INJECT=m
-CONFIG_TRANSPARENT_HUGEPAGE=y
-# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
-CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-CONFIG_FRONTSWAP=y
-CONFIG_CMA=y
-# CONFIG_CMA_DEBUG is not set
-CONFIG_ZSWAP=y
-CONFIG_ZPOOL=y
-CONFIG_ZBUD=y
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-# CONFIG_PERCPU_STATS is not set
-CONFIG_ARCH_MEMORY_PROBE=y
-CONFIG_NODES_SPAN_OTHER_NODES=y
-CONFIG_PPC_HAS_HASH_64K=y
-# CONFIG_PPC_4K_PAGES is not set
-CONFIG_PPC_64K_PAGES=y
-CONFIG_FORCE_MAX_ZONEORDER=9
-CONFIG_PPC_SUBPAGE_PROT=y
-CONFIG_PPC_COPRO_BASE=y
-CONFIG_SCHED_SMT=y
-CONFIG_PPC_DENORMALISATION=y
-# CONFIG_CMDLINE_BOOL is not set
-CONFIG_EXTRA_TARGETS=""
-CONFIG_SUSPEND=y
-CONFIG_SUSPEND_FREEZER=y
-# CONFIG_HIBERNATION is not set
-CONFIG_PM_SLEEP=y
-CONFIG_PM_SLEEP_SMP=y
-# CONFIG_PM_AUTOSLEEP is not set
-# CONFIG_PM_WAKELOCKS is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-# CONFIG_PM_TEST_SUSPEND is not set
-CONFIG_PM_SLEEP_DEBUG=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_SECCOMP=y
-CONFIG_PPC_RTAS_FILTER=y
-CONFIG_ISA_DMA_API=y
-
-#
-# Bus options
-#
-CONFIG_ZONE_DMA=y
-CONFIG_NEED_DMA_MAP_STATE=y
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_GENERIC_ISA_DMA=y
-# CONFIG_PPC_INDIRECT_PCI is not set
-CONFIG_PCI=y
-CONFIG_PCI_DOMAINS=y
-CONFIG_PCI_SYSCALL=y
-CONFIG_PCIEPORTBUS=y
-# CONFIG_HOTPLUG_PCI_PCIE is not set
-CONFIG_PCIEAER=y
-CONFIG_PCIE_ECRC=y
-CONFIG_PCIEAER_INJECT=m
-CONFIG_PCIEASPM=y
-# CONFIG_PCIEASPM_DEBUG is not set
-CONFIG_PCIEASPM_DEFAULT=y
-# CONFIG_PCIEASPM_POWERSAVE is not set
-# CONFIG_PCIEASPM_PERFORMANCE is not set
-CONFIG_PCIE_PME=y
-# CONFIG_PCIE_DPC is not set
-CONFIG_PCI_BUS_ADDR_T_64BIT=y
-CONFIG_PCI_MSI=y
-# CONFIG_PCI_DEBUG is not set
-# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
-CONFIG_PCI_STUB=y
-CONFIG_PCI_ATS=y
-CONFIG_PCI_IOV=y
-CONFIG_PCI_PRI=y
-CONFIG_PCI_PASID=y
-CONFIG_HOTPLUG_PCI=y
-# CONFIG_HOTPLUG_PCI_CPCI is not set
-CONFIG_HOTPLUG_PCI_SHPC=y
-CONFIG_HOTPLUG_PCI_RPA=m
-CONFIG_HOTPLUG_PCI_RPA_DLPAR=m
-CONFIG_PCCARD=y
-# CONFIG_PCMCIA is not set
-CONFIG_CARDBUS=y
-
-#
-# PC-card bridges
-#
-CONFIG_YENTA=m
-CONFIG_YENTA_O2=y
-CONFIG_YENTA_RICOH=y
-CONFIG_YENTA_TI=y
-CONFIG_YENTA_ENE_TUNE=y
-CONFIG_YENTA_TOSHIBA=y
-# CONFIG_HAS_RAPIDIO is not set
-# CONFIG_RAPIDIO is not set
-CONFIG_NONSTATIC_KERNEL=y
-CONFIG_RELOCATABLE=y
-CONFIG_PAGE_OFFSET=0xc000000000000000
-CONFIG_KERNEL_START=0xc000000000000000
-CONFIG_PHYSICAL_START=0x00000000
-CONFIG_ARCH_RANDOM=y
-CONFIG_NET=y
-CONFIG_COMPAT_NETLINK_MESSAGES=y
-CONFIG_NET_INGRESS=y
-CONFIG_NET_EGRESS=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_PACKET_DIAG=m
-CONFIG_UNIX=y
-CONFIG_UNIX_DIAG=m
-CONFIG_XFRM=y
-CONFIG_XFRM_ALGO=y
-CONFIG_XFRM_USER=y
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-CONFIG_XFRM_STATISTICS=y
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_FIB_TRIE_STATS=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-CONFIG_NET_IPGRE_DEMUX=m
-CONFIG_NET_IP_TUNNEL=m
-CONFIG_NET_IPGRE=m
-CONFIG_NET_IPGRE_BROADCAST=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NET_IPVTI=m
-CONFIG_NET_UDP_TUNNEL=m
-# CONFIG_NET_FOU is not set
-# CONFIG_NET_FOU_IP_TUNNELS is not set
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=y
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_INET_UDP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_TCP_CONG_DCTCP=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=m
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_VTI=m
-CONFIG_IPV6_SIT=m
-CONFIG_IPV6_SIT_6RD=y
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_GRE=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-# CONFIG_IPV6_SUBTREES is not set
-CONFIG_IPV6_MROUTE=y
-CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IPV6_PIMSM_V2=y
-CONFIG_NETLABEL=y
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
-CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
-CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=m
-
-#
-# Core Netfilter Configuration
-#
-CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_ACCT=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
-CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_LOG_COMMON=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_ZONES=y
-CONFIG_NF_CONNTRACK_PROCFS=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-CONFIG_NF_CONNTRACK_TIMEOUT=y
-CONFIG_NF_CONNTRACK_TIMESTAMP=y
-CONFIG_NF_CONNTRACK_LABELS=y
-CONFIG_NF_CT_PROTO_DCCP=y
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=y
-CONFIG_NF_CT_PROTO_UDPLITE=y
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-CONFIG_NF_CONNTRACK_SNMP=m
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NF_CT_NETLINK_TIMEOUT=m
-CONFIG_NF_CT_NETLINK_HELPER=m
-CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_NF_NAT_PROTO_DCCP=y
-CONFIG_NF_NAT_PROTO_UDPLITE=y
-CONFIG_NF_NAT_PROTO_SCTP=y
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_REDIRECT=m
-CONFIG_NETFILTER_SYNPROXY=m
-CONFIG_NF_TABLES=m
-CONFIG_NF_TABLES_INET=m
-CONFIG_NFT_EXTHDR=m
-CONFIG_NFT_META=m
-CONFIG_NFT_CT=m
-CONFIG_NFT_RBTREE=m
-CONFIG_NFT_HASH=m
-CONFIG_NFT_COUNTER=m
-CONFIG_NFT_LOG=m
-CONFIG_NFT_LIMIT=m
-CONFIG_NFT_MASQ=m
-CONFIG_NFT_REDIR=m
-CONFIG_NFT_NAT=m
-CONFIG_NFT_QUEUE=m
-CONFIG_NFT_REJECT=m
-CONFIG_NFT_REJECT_INET=m
-CONFIG_NFT_COMPAT=m
-CONFIG_NETFILTER_XTABLES=y
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
-CONFIG_NETFILTER_XT_CONNMARK=m
-CONFIG_NETFILTER_XT_SET=m
-
-#
-# Xtables targets
-#
-CONFIG_NETFILTER_XT_TARGET_AUDIT=m
-CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-CONFIG_NETFILTER_XT_TARGET_CT=m
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-CONFIG_NETFILTER_XT_TARGET_HMARK=m
-CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
-CONFIG_NETFILTER_XT_TARGET_LED=m
-CONFIG_NETFILTER_XT_TARGET_LOG=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_NAT=m
-CONFIG_NETFILTER_XT_TARGET_NETMAP=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
-CONFIG_NETFILTER_XT_TARGET_TEE=m
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
-CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
-CONFIG_NETFILTER_XT_MATCH_BPF=m
-CONFIG_NETFILTER_XT_MATCH_CGROUP=m
-CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
-CONFIG_NETFILTER_XT_MATCH_COMMENT=m
-CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
-CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
-CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
-CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
-CONFIG_NETFILTER_XT_MATCH_CPU=m
-CONFIG_NETFILTER_XT_MATCH_DCCP=m
-CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
-CONFIG_NETFILTER_XT_MATCH_DSCP=m
-CONFIG_NETFILTER_XT_MATCH_ECN=m
-CONFIG_NETFILTER_XT_MATCH_ESP=m
-CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_HELPER=m
-CONFIG_NETFILTER_XT_MATCH_HL=m
-CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
-CONFIG_NETFILTER_XT_MATCH_IPVS=m
-CONFIG_NETFILTER_XT_MATCH_LENGTH=m
-CONFIG_NETFILTER_XT_MATCH_LIMIT=m
-CONFIG_NETFILTER_XT_MATCH_MAC=m
-CONFIG_NETFILTER_XT_MATCH_MARK=m
-CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_NFACCT=m
-CONFIG_NETFILTER_XT_MATCH_OSF=m
-CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
-CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
-CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
-CONFIG_NETFILTER_XT_MATCH_QUOTA=m
-CONFIG_NETFILTER_XT_MATCH_RATEEST=m
-CONFIG_NETFILTER_XT_MATCH_REALM=m
-CONFIG_NETFILTER_XT_MATCH_RECENT=m
-CONFIG_NETFILTER_XT_MATCH_SCTP=m
-CONFIG_NETFILTER_XT_MATCH_SOCKET=m
-CONFIG_NETFILTER_XT_MATCH_STATE=m
-CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
-CONFIG_NETFILTER_XT_MATCH_STRING=m
-CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
-CONFIG_NETFILTER_XT_MATCH_U32=m
-CONFIG_IP_SET=m
-CONFIG_IP_SET_MAX=256
-CONFIG_IP_SET_BITMAP_IP=m
-CONFIG_IP_SET_BITMAP_IPMAC=m
-CONFIG_IP_SET_BITMAP_PORT=m
-CONFIG_IP_SET_HASH_IP=m
-CONFIG_IP_SET_HASH_IPMARK=m
-CONFIG_IP_SET_HASH_IPPORT=m
-CONFIG_IP_SET_HASH_IPPORTIP=m
-CONFIG_IP_SET_HASH_IPPORTNET=m
-CONFIG_IP_SET_HASH_IPMAC=m
-CONFIG_IP_SET_HASH_MAC=m
-CONFIG_IP_SET_HASH_NETPORTNET=m
-CONFIG_IP_SET_HASH_NET=m
-CONFIG_IP_SET_HASH_NETNET=m
-CONFIG_IP_SET_HASH_NETPORT=m
-CONFIG_IP_SET_HASH_NETIFACE=m
-CONFIG_IP_SET_LIST_SET=m
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-# CONFIG_IP_VS_DEBUG is not set
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-CONFIG_IP_VS_PROTO_SCTP=y
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS SH scheduler
-#
-CONFIG_IP_VS_SH_TAB_BITS=8
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-CONFIG_IP_VS_PE_SIP=m
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
-CONFIG_NF_TABLES_IPV4=m
-CONFIG_NFT_CHAIN_ROUTE_IPV4=m
-CONFIG_NFT_REJECT_IPV4=m
-CONFIG_NFT_DUP_IPV4=m
-CONFIG_NF_TABLES_ARP=m
-CONFIG_NF_DUP_IPV4=m
-CONFIG_NF_LOG_IPV4=m
-CONFIG_NF_REJECT_IPV4=m
-CONFIG_NF_NAT_IPV4=m
-CONFIG_NFT_CHAIN_NAT_IPV4=m
-CONFIG_NF_NAT_MASQUERADE_IPV4=m
-CONFIG_NFT_MASQ_IPV4=m
-CONFIG_NFT_REDIR_IPV4=m
-CONFIG_NF_NAT_SNMP_BASIC=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_RPFILTER=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_SYNPROXY=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_IP_NF_NAT=m
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_NF_TABLES_IPV6=m
-CONFIG_NFT_CHAIN_ROUTE_IPV6=m
-CONFIG_NFT_REJECT_IPV6=m
-CONFIG_NFT_DUP_IPV6=m
-CONFIG_NF_DUP_IPV6=m
-CONFIG_NF_REJECT_IPV6=m
-CONFIG_NF_LOG_IPV6=m
-CONFIG_NF_NAT_IPV6=m
-CONFIG_NFT_CHAIN_NAT_IPV6=m
-CONFIG_NF_NAT_MASQUERADE_IPV6=m
-CONFIG_NFT_MASQ_IPV6=m
-CONFIG_NFT_REDIR_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RPFILTER=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_TARGET_SYNPROXY=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-CONFIG_IP6_NF_NAT=m
-CONFIG_IP6_NF_TARGET_MASQUERADE=m
-CONFIG_IP6_NF_TARGET_NPT=m
-CONFIG_NF_TABLES_BRIDGE=m
-CONFIG_NFT_BRIDGE_META=m
-CONFIG_NFT_BRIDGE_REJECT=m
-CONFIG_NF_LOG_BRIDGE=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-CONFIG_NET_SCTPPROBE=m
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
-CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
-CONFIG_SCTP_COOKIE_HMAC_MD5=y
-CONFIG_SCTP_COOKIE_HMAC_SHA1=y
-CONFIG_INET_SCTP_DIAG=m
-# CONFIG_RDS is not set
-# CONFIG_TIPC is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-# CONFIG_ATM_MPOA is not set
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-CONFIG_L2TP=m
-CONFIG_L2TP_DEBUGFS=m
-CONFIG_L2TP_V3=y
-CONFIG_L2TP_IP=m
-CONFIG_L2TP_ETH=m
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_MRP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-CONFIG_BRIDGE_VLAN_FILTERING=y
-CONFIG_HAVE_NET_DSA=y
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_VLAN_8021Q_MVRP=y
-# CONFIG_DECNET is not set
-CONFIG_LLC=m
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_6LOWPAN=m
-# CONFIG_6LOWPAN_DEBUGFS is not set
-CONFIG_6LOWPAN_NHC=m
-CONFIG_6LOWPAN_NHC_DEST=m
-CONFIG_6LOWPAN_NHC_FRAGMENT=m
-CONFIG_6LOWPAN_NHC_HOP=m
-CONFIG_6LOWPAN_NHC_IPV6=m
-CONFIG_6LOWPAN_NHC_MOBILITY=m
-CONFIG_6LOWPAN_NHC_ROUTING=m
-CONFIG_6LOWPAN_NHC_UDP=m
-# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set
-# CONFIG_6LOWPAN_GHC_UDP is not set
-# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_IEEE802154_6LOWPAN=m
-CONFIG_MAC802154=m
-CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
-CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
-CONFIG_NET_SCH_MULTIQ=m
-CONFIG_NET_SCH_RED=m
-CONFIG_NET_SCH_SFB=m
-CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
-CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_CBS=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-CONFIG_NET_SCH_MQPRIO=m
-CONFIG_NET_SCH_CHOKE=m
-CONFIG_NET_SCH_QFQ=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_SCH_FQ=m
-# CONFIG_NET_SCH_HHF is not set
-# CONFIG_NET_SCH_PIE is not set
-CONFIG_NET_SCH_INGRESS=m
-CONFIG_NET_SCH_PLUG=m
-# CONFIG_NET_SCH_DEFAULT is not set
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_CLS_BPF=m
-CONFIG_NET_CLS_FLOWER=m
-CONFIG_NET_CLS_MATCHALL=m
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-# CONFIG_NET_EMATCH_CANID is not set
-CONFIG_NET_EMATCH_IPSET=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_SAMPLE=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-CONFIG_NET_ACT_CSUM=m
-CONFIG_NET_ACT_VLAN=m
-CONFIG_NET_ACT_TUNNEL_KEY=m
-CONFIG_NET_ACT_CONNMARK=m
-CONFIG_NET_ACT_SKBMOD=m
-# CONFIG_NET_ACT_IFE is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_OPENVSWITCH=m
-CONFIG_OPENVSWITCH_GRE=m
-CONFIG_OPENVSWITCH_VXLAN=m
-CONFIG_OPENVSWITCH_GENEVE=m
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
-CONFIG_NET_SWITCHDEV=y
-CONFIG_RPS=y
-CONFIG_RFS_ACCEL=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_HAMRADIO is not set
-CONFIG_CAN=m
-CONFIG_CAN_RAW=m
-CONFIG_CAN_BCM=m
-CONFIG_CAN_GW=m
-
-#
-# CAN Device Drivers
-#
-CONFIG_CAN_VCAN=m
-CONFIG_CAN_SLCAN=m
-CONFIG_CAN_DEV=m
-CONFIG_CAN_CALC_BITTIMING=y
-CONFIG_CAN_LEDS=y
-# CONFIG_PCH_CAN is not set
-# CONFIG_CAN_GRCAN is not set
-# CONFIG_CAN_MSCAN is not set
-CONFIG_CAN_SJA1000=m
-# CONFIG_CAN_SJA1000_ISA is not set
-CONFIG_CAN_SJA1000_PLATFORM=m
-CONFIG_CAN_SJA1000_OF_PLATFORM=m
-CONFIG_CAN_EMS_PCI=m
-CONFIG_CAN_PEAK_PCI=m
-CONFIG_CAN_PEAK_PCIEC=y
-CONFIG_CAN_KVASER_PCI=m
-CONFIG_CAN_PLX_PCI=m
-CONFIG_CAN_C_CAN=m
-CONFIG_CAN_C_CAN_PLATFORM=m
-CONFIG_CAN_C_CAN_PCI=m
-CONFIG_CAN_CC770=m
-# CONFIG_CAN_CC770_ISA is not set
-CONFIG_CAN_CC770_PLATFORM=m
-
-#
-# CAN USB interfaces
-#
-CONFIG_CAN_EMS_USB=m
-CONFIG_CAN_ESD_USB2=m
-CONFIG_CAN_KVASER_USB=m
-CONFIG_CAN_PEAK_USB=m
-CONFIG_CAN_8DEV_USB=m
-CONFIG_CAN_SOFTING=m
-# CONFIG_CAN_DEBUG_DEVICES is not set
-# CONFIG_IRDA is not set
-CONFIG_BT=m
-CONFIG_BT_BREDR=y
-CONFIG_BT_RFCOMM=m
-CONFIG_BT_RFCOMM_TTY=y
-CONFIG_BT_BNEP=m
-CONFIG_BT_BNEP_MC_FILTER=y
-CONFIG_BT_BNEP_PROTO_FILTER=y
-CONFIG_BT_CMTP=m
-CONFIG_BT_HIDP=m
-CONFIG_BT_HS=y
-CONFIG_BT_LE=y
-# CONFIG_BT_6LOWPAN is not set
-# CONFIG_BT_LEDS is not set
-# CONFIG_BT_SELFTEST is not set
-CONFIG_BT_DEBUGFS=y
-
-#
-# Bluetooth device drivers
-#
-CONFIG_BT_INTEL=m
-CONFIG_BT_BCM=m
-CONFIG_BT_RTL=m
-CONFIG_BT_HCIBTUSB=m
-CONFIG_BT_HCIBTUSB_BCM=y
-CONFIG_BT_HCIBTUSB_RTL=y
-CONFIG_BT_HCIBTSDIO=m
-CONFIG_BT_HCIUART=m
-CONFIG_BT_HCIUART_H4=y
-CONFIG_BT_HCIUART_BCSP=y
-CONFIG_BT_HCIUART_ATH3K=y
-CONFIG_BT_HCIUART_LL=y
-CONFIG_BT_HCIUART_3WIRE=y
-# CONFIG_BT_HCIUART_INTEL is not set
-# CONFIG_BT_HCIUART_BCM is not set
-# CONFIG_BT_HCIUART_QCA is not set
-# CONFIG_BT_HCIUART_AG6XX is not set
-# CONFIG_BT_HCIUART_MRVL is not set
-CONFIG_BT_HCIBCM203X=m
-CONFIG_BT_HCIBPA10X=m
-CONFIG_BT_HCIBFUSB=m
-CONFIG_BT_HCIVHCI=m
-CONFIG_BT_MRVL=m
-CONFIG_BT_MRVL_SDIO=m
-CONFIG_BT_ATH3K=m
-# CONFIG_AF_RXRPC is not set
-CONFIG_FIB_RULES=y
-CONFIG_WIRELESS=y
-CONFIG_WIRELESS_EXT=y
-CONFIG_WEXT_CORE=y
-CONFIG_WEXT_PROC=y
-CONFIG_WEXT_PRIV=y
-CONFIG_CFG80211=m
-# CONFIG_NL80211_TESTMODE is not set
-# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
-# CONFIG_CFG80211_REQUIRE_SIGNED_REGDB is not set
-CONFIG_CFG80211_DEFAULT_PS=y
-# CONFIG_CFG80211_DEBUGFS is not set
-CONFIG_CFG80211_CRDA_SUPPORT=y
-CONFIG_CFG80211_WEXT=y
-CONFIG_LIB80211=m
-# CONFIG_LIB80211_DEBUG is not set
-CONFIG_MAC80211=m
-CONFIG_MAC80211_HAS_RC=y
-CONFIG_MAC80211_RC_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
-# CONFIG_MAC80211_MESH is not set
-CONFIG_MAC80211_LEDS=y
-CONFIG_MAC80211_DEBUGFS=y
-# CONFIG_MAC80211_MESSAGE_TRACING is not set
-# CONFIG_MAC80211_DEBUG_MENU is not set
-CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_LEDS=y
-CONFIG_RFKILL_INPUT=y
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-CONFIG_CEPH_LIB=m
-# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
-CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-CONFIG_DST_CACHE=y
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_PAGE_POOL=y
-CONFIG_FAILOVER=m
-CONFIG_HAVE_CBPF_JIT=y
-CONFIG_HAVE_EBPF_JIT=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-CONFIG_WANT_DEV_COREDUMP=y
-CONFIG_DEV_COREDUMP=y
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-# CONFIG_SYS_HYPERVISOR is not set
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-CONFIG_REGMAP=y
-CONFIG_REGMAP_I2C=m
-CONFIG_DMA_SHARED_BUFFER=y
-
-#
-# Bus devices
-#
-CONFIG_CONNECTOR=y
-CONFIG_PROC_EVENTS=y
-CONFIG_MTD=m
-# CONFIG_MTD_TESTS is not set
-# CONFIG_MTD_REDBOOT_PARTS is not set
-# CONFIG_MTD_CMDLINE_PARTS is not set
-CONFIG_MTD_OF_PARTS=m
-# CONFIG_MTD_AR7_PARTS is not set
-
-#
-# User Modules And Translation Layers
-#
-# CONFIG_MTD_BLKDEVS is not set
-# CONFIG_MTD_BLOCK is not set
-# CONFIG_MTD_BLOCK_RO is not set
-# CONFIG_FTL is not set
-# CONFIG_NFTL is not set
-# CONFIG_INFTL is not set
-# CONFIG_RFD_FTL is not set
-# CONFIG_SSFDC is not set
-# CONFIG_SM_FTL is not set
-# CONFIG_MTD_OOPS is not set
-# CONFIG_MTD_SWAP is not set
-
-#
-# RAM/ROM/Flash chip drivers
-#
-# CONFIG_MTD_CFI is not set
-# CONFIG_MTD_JEDECPROBE is not set
-CONFIG_MTD_MAP_BANK_WIDTH_1=y
-CONFIG_MTD_MAP_BANK_WIDTH_2=y
-CONFIG_MTD_MAP_BANK_WIDTH_4=y
-# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
-CONFIG_MTD_CFI_I1=y
-CONFIG_MTD_CFI_I2=y
-# CONFIG_MTD_CFI_I4 is not set
-# CONFIG_MTD_CFI_I8 is not set
-# CONFIG_MTD_RAM is not set
-# CONFIG_MTD_ROM is not set
-# CONFIG_MTD_ABSENT is not set
-
-#
-# Mapping drivers for chip access
-#
-# CONFIG_MTD_COMPLEX_MAPPINGS is not set
-# CONFIG_MTD_INTEL_VR_NOR is not set
-# CONFIG_MTD_PLATRAM is not set
-
-#
-# Self-contained MTD device drivers
-#
-# CONFIG_MTD_PMC551 is not set
-# CONFIG_MTD_SLRAM is not set
-# CONFIG_MTD_PHRAM is not set
-# CONFIG_MTD_MTDRAM is not set
-# CONFIG_MTD_BLOCK2MTD is not set
-CONFIG_MTD_POWERNV_FLASH=m
-
-#
-# Disk-On-Chip Device Drivers
-#
-# CONFIG_MTD_DOCG3 is not set
-# CONFIG_MTD_NAND is not set
-# CONFIG_MTD_ONENAND is not set
-
-#
-# LPDDR flash memory drivers
-#
-# CONFIG_MTD_LPDDR is not set
-CONFIG_MTD_UBI=m
-CONFIG_MTD_UBI_WL_THRESHOLD=4096
-CONFIG_MTD_UBI_BEB_LIMIT=20
-# CONFIG_MTD_UBI_FASTMAP is not set
-# CONFIG_MTD_UBI_GLUEBI is not set
-CONFIG_DTC=y
-CONFIG_OF=y
-
-#
-# Device Tree and Open Firmware support
-#
-CONFIG_PROC_DEVICETREE=y
-# CONFIG_OF_SELFTEST is not set
-CONFIG_OF_FLATTREE=y
-CONFIG_OF_EARLY_FLATTREE=y
-CONFIG_OF_DYNAMIC=y
-CONFIG_OF_ADDRESS=y
-CONFIG_OF_IRQ=y
-CONFIG_OF_DEVICE=y
-CONFIG_OF_NET=y
-CONFIG_OF_MDIO=y
-CONFIG_OF_PCI=y
-CONFIG_OF_PCI_IRQ=y
-CONFIG_OF_MTD=y
-CONFIG_PARPORT=m
-CONFIG_PARPORT_PC=m
-CONFIG_PARPORT_SERIAL=m
-# CONFIG_PARPORT_PC_FIFO is not set
-# CONFIG_PARPORT_PC_SUPERIO is not set
-# CONFIG_PARPORT_GSC is not set
-# CONFIG_PARPORT_AX88796 is not set
-CONFIG_PARPORT_1284=y
-CONFIG_PARPORT_NOT_PC=y
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-# CONFIG_BLK_DEV_FD is not set
-# CONFIG_PARIDE is not set
-# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
-CONFIG_ZRAM=m
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=m
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-CONFIG_BLK_DEV_SX8=m
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=16384
-CONFIG_CDROM_PKTCDVD=m
-CONFIG_CDROM_PKTCDVD_BUFFERS=8
-# CONFIG_CDROM_PKTCDVD_WCACHE is not set
-CONFIG_ATA_OVER_ETH=m
-CONFIG_VIRTIO_BLK=m
-# CONFIG_BLK_DEV_HD is not set
-CONFIG_BLK_DEV_RBD=m
-CONFIG_BLK_DEV_RSXX=m
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_RDMA=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_RDMA=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-CONFIG_SENSORS_LIS3LV02D=m
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_DUMMY_IRQ is not set
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-# CONFIG_SGI_IOC4 is not set
-CONFIG_TIFM_CORE=m
-CONFIG_TIFM_7XX1=m
-# CONFIG_ICS932S401 is not set
-# CONFIG_ATMEL_SSC is not set
-CONFIG_ENCLOSURE_SERVICES=m
-# CONFIG_HP_ILO is not set
-CONFIG_APDS9802ALS=m
-CONFIG_ISL29003=m
-CONFIG_ISL29020=m
-CONFIG_SENSORS_TSL2550=m
-# CONFIG_SENSORS_BH1780 is not set
-CONFIG_SENSORS_BH1770=m
-CONFIG_SENSORS_APDS990X=m
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_BMP085_I2C is not set
-# CONFIG_PCH_PHUB is not set
-# CONFIG_USB_SWITCH_FSA9480 is not set
-# CONFIG_SRAM is not set
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-CONFIG_EEPROM_AT24=m
-CONFIG_EEPROM_LEGACY=m
-CONFIG_EEPROM_MAX6875=m
-CONFIG_EEPROM_93CX6=m
-CONFIG_CB710_CORE=m
-# CONFIG_CB710_DEBUG is not set
-CONFIG_CB710_DEBUG_ASSUMPTIONS=y
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_TI_ST is not set
-CONFIG_SENSORS_LIS3_I2C=m
-
-#
-# Altera FPGA firmware download module
-#
-CONFIG_ALTERA_STAPL=m
-CONFIG_GENWQE=m
-CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=1
-CONFIG_CXL_BASE=y
-CONFIG_CXL_KERNEL_API=y
-CONFIG_CXL_EEH=y
-CONFIG_CXL=m
-CONFIG_HAVE_IDE=y
-# CONFIG_IDE is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=m
-CONFIG_CHR_DEV_ST=m
-CONFIG_CHR_DEV_OSST=m
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-CONFIG_CHR_DEV_SCH=m
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_ATA=y
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_TCP=m
-CONFIG_ISCSI_BOOT_SYSFS=m
-CONFIG_SCSI_CXGB3_ISCSI=m
-CONFIG_SCSI_CXGB4_ISCSI=m
-CONFIG_SCSI_BNX2_ISCSI=m
-CONFIG_SCSI_BNX2X_FCOE=m
-CONFIG_BE2ISCSI=m
-CONFIG_CXLFLASH=m
-# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
-CONFIG_SCSI_HPSA=m
-CONFIG_SCSI_3W_9XXX=m
-CONFIG_SCSI_3W_SAS=m
-# CONFIG_SCSI_ACARD is not set
-CONFIG_SCSI_AACRAID=m
-# CONFIG_SCSI_AIC7XXX is not set
-# CONFIG_SCSI_AIC7XXX_OLD is not set
-CONFIG_SCSI_AIC79XX=m
-CONFIG_AIC79XX_CMDS_PER_DEVICE=4
-CONFIG_AIC79XX_RESET_DELAY_MS=15000
-# CONFIG_AIC79XX_DEBUG_ENABLE is not set
-CONFIG_AIC79XX_DEBUG_MASK=0
-# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
-# CONFIG_SCSI_AIC94XX is not set
-CONFIG_SCSI_MVSAS=m
-# CONFIG_SCSI_MVSAS_DEBUG is not set
-CONFIG_SCSI_MVSAS_TASKLET=y
-CONFIG_SCSI_MVUMI=m
-CONFIG_SCSI_ARCMSR=m
-# CONFIG_MEGARAID_NEWGEN is not set
-# CONFIG_MEGARAID_LEGACY is not set
-CONFIG_MEGARAID_SAS=m
-CONFIG_SCSI_MPT2SAS=m
-CONFIG_SCSI_MPT3SAS=m
-CONFIG_SCSI_MPT2SAS_MAX_SGE=128
-CONFIG_SCSI_MPT3SAS_MAX_SGE=128
-CONFIG_SCSI_SMARTPQI=m
-CONFIG_SCSI_UFSHCD=m
-CONFIG_SCSI_UFSHCD_PCI=m
-# CONFIG_SCSI_UFSHCD_PLATFORM is not set
-CONFIG_SCSI_HPTIOP=m
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-# CONFIG_SCSI_DMX3191D is not set
-# CONFIG_SCSI_EATA is not set
-# CONFIG_SCSI_FUTURE_DOMAIN is not set
-# CONFIG_SCSI_GDTH is not set
-# CONFIG_SCSI_IPS is not set
-CONFIG_SCSI_IBMVSCSI=m
-CONFIG_SCSI_IBMVSCSIS=m
-CONFIG_SCSI_IBMVFC=m
-CONFIG_SCSI_IBMVFC_TRACE=y
-CONFIG_SCSI_INITIO=m
-# CONFIG_SCSI_INIA100 is not set
-# CONFIG_SCSI_PPA is not set
-# CONFIG_SCSI_IMM is not set
-CONFIG_SCSI_STEX=m
-# CONFIG_SCSI_SYM53C8XX_2 is not set
-CONFIG_SCSI_IPR=m
-CONFIG_SCSI_IPR_TRACE=y
-CONFIG_SCSI_IPR_DUMP=y
-# CONFIG_SCSI_QLOGIC_1280 is not set
-CONFIG_SCSI_QLA_FC=m
-CONFIG_TCM_QLA2XXX=m
-# CONFIG_TCM_QLA2XXX_DEBUG is not set
-CONFIG_SCSI_QLA_ISCSI=m
-CONFIG_QEDI=m
-CONFIG_QEDF=m
-CONFIG_SCSI_LPFC=m
-# CONFIG_SCSI_LPFC_DEBUG_FS is not set
-# CONFIG_SCSI_DC395x is not set
-# CONFIG_SCSI_DC390T is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_SCSI_PMCRAID=m
-CONFIG_SCSI_PM8001=m
-CONFIG_SCSI_SRP=m
-CONFIG_SCSI_BFA_FC=m
-CONFIG_SCSI_VIRTIO=m
-# CONFIG_SCSI_CHELSIO_FCOE is not set
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=m
-# CONFIG_ATA_NONSTANDARD is not set
-CONFIG_ATA_VERBOSE_ERROR=y
-CONFIG_SATA_PMP=y
-
-#
-# Controllers with non-SFF native interface
-#
-CONFIG_SATA_AHCI=m
-CONFIG_SATA_AHCI_PLATFORM=m
-# CONFIG_SATA_INIC162X is not set
-CONFIG_SATA_ACARD_AHCI=m
-CONFIG_SATA_SIL24=m
-CONFIG_ATA_SFF=y
-
-#
-# SFF controllers with custom DMA interface
-#
-CONFIG_PDC_ADMA=m
-CONFIG_SATA_QSTOR=m
-CONFIG_SATA_SX4=m
-CONFIG_ATA_BMDMA=y
-
-#
-# SATA SFF controllers with BMDMA
-#
-CONFIG_ATA_PIIX=m
-# CONFIG_SATA_HIGHBANK is not set
-CONFIG_SATA_MV=m
-CONFIG_SATA_NV=m
-CONFIG_SATA_PROMISE=m
-CONFIG_SATA_SIL=m
-CONFIG_SATA_SIS=m
-CONFIG_SATA_SVW=m
-CONFIG_SATA_ULI=m
-CONFIG_SATA_VIA=m
-CONFIG_SATA_VITESSE=m
-
-#
-# PATA SFF controllers with BMDMA
-#
-CONFIG_PATA_ALI=m
-CONFIG_PATA_AMD=m
-CONFIG_PATA_ARASAN_CF=m
-CONFIG_PATA_ARTOP=m
-CONFIG_PATA_ATIIXP=m
-CONFIG_PATA_ATP867X=m
-CONFIG_PATA_CMD64X=m
-# CONFIG_PATA_CS5520 is not set
-# CONFIG_PATA_CS5530 is not set
-CONFIG_PATA_CS5536=m
-# CONFIG_PATA_CYPRESS is not set
-# CONFIG_PATA_EFAR is not set
-CONFIG_PATA_HPT366=m
-CONFIG_PATA_HPT37X=m
-CONFIG_PATA_HPT3X2N=m
-CONFIG_PATA_HPT3X3=m
-# CONFIG_PATA_HPT3X3_DMA is not set
-CONFIG_PATA_IT8213=m
-CONFIG_PATA_IT821X=m
-CONFIG_PATA_JMICRON=m
-CONFIG_PATA_MARVELL=m
-CONFIG_PATA_NETCELL=m
-CONFIG_PATA_NINJA32=m
-# CONFIG_PATA_NS87415 is not set
-CONFIG_PATA_OLDPIIX=m
-# CONFIG_PATA_OPTIDMA is not set
-CONFIG_PATA_PDC2027X=m
-CONFIG_PATA_PDC_OLD=m
-# CONFIG_PATA_RADISYS is not set
-CONFIG_PATA_RDC=m
-# CONFIG_PATA_SC1200 is not set
-CONFIG_PATA_SCH=m
-CONFIG_PATA_SERVERWORKS=m
-CONFIG_PATA_SIL680=m
-CONFIG_PATA_SIS=m
-CONFIG_PATA_TOSHIBA=m
-# CONFIG_PATA_TRIFLEX is not set
-CONFIG_PATA_VIA=m
-# CONFIG_PATA_WINBOND is not set
-
-#
-# PIO-only SFF controllers
-#
-# CONFIG_PATA_CMD640_PCI is not set
-# CONFIG_PATA_MPIIX is not set
-# CONFIG_PATA_NS87410 is not set
-# CONFIG_PATA_OPTI is not set
-CONFIG_PATA_PLATFORM=m
-CONFIG_PATA_OF_PLATFORM=m
-# CONFIG_PATA_RZ1000 is not set
-
-#
-# Generic fallback / legacy drivers
-#
-CONFIG_ATA_GENERIC=m
-# CONFIG_PATA_LEGACY is not set
-CONFIG_MD=y
-CONFIG_BLK_DEV_MD=y
-CONFIG_MD_AUTODETECT=y
-CONFIG_MD_LINEAR=m
-CONFIG_MD_RAID0=m
-CONFIG_MD_RAID1=m
-CONFIG_MD_RAID10=m
-CONFIG_MD_RAID456=m
-# CONFIG_MD_MULTIPATH is not set
-CONFIG_MD_FAULTY=m
-# CONFIG_BCACHE is not set
-CONFIG_BLK_DEV_DM_BUILTIN=y
-CONFIG_BLK_DEV_DM=m
-# CONFIG_DM_MQ_DEFAULT is not set
-CONFIG_DM_DEBUG=y
-CONFIG_DM_BUFIO=m
-# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
-CONFIG_DM_BIO_PRISON=m
-CONFIG_DM_PERSISTENT_DATA=m
-CONFIG_DM_CRYPT=m
-CONFIG_DM_SNAPSHOT=m
-CONFIG_DM_THIN_PROVISIONING=m
-CONFIG_DM_CACHE=m
-CONFIG_DM_CACHE_SMQ=m
-CONFIG_DM_ERA=m
-CONFIG_DM_MIRROR=m
-CONFIG_DM_LOG_USERSPACE=m
-CONFIG_DM_RAID=m
-CONFIG_DM_ZERO=m
-CONFIG_DM_MULTIPATH=m
-CONFIG_DM_MULTIPATH_QL=m
-CONFIG_DM_MULTIPATH_ST=m
-CONFIG_DM_DELAY=m
-CONFIG_DM_UEVENT=y
-CONFIG_DM_FLAKEY=m
-CONFIG_DM_VERITY=m
-CONFIG_DM_SWITCH=m
-CONFIG_DM_LOG_WRITES=m
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_TCM_USER2=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-CONFIG_ISCSI_TARGET_CXGB4=m
-# CONFIG_SBP_TARGET is not set
-CONFIG_FUSION=y
-CONFIG_FUSION_SPI=m
-# CONFIG_FUSION_FC is not set
-CONFIG_FUSION_SAS=m
-CONFIG_FUSION_MAX_SGE=128
-CONFIG_FUSION_CTL=m
-CONFIG_FUSION_LOGGING=y
-
-#
-# IEEE 1394 (FireWire) support
-#
-CONFIG_FIREWIRE=m
-CONFIG_FIREWIRE_OHCI=m
-CONFIG_FIREWIRE_SBP2=m
-CONFIG_FIREWIRE_NET=m
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-CONFIG_MACINTOSH_DRIVERS=y
-CONFIG_MAC_EMUMOUSEBTN=y
-# CONFIG_WINDFARM is not set
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-CONFIG_BONDING=m
-CONFIG_DUMMY=m
-# CONFIG_EQUALIZER is not set
-CONFIG_NET_FC=y
-CONFIG_MII=m
-CONFIG_IFB=m
-CONFIG_NET_TEAM=m
-CONFIG_NET_TEAM_MODE_BROADCAST=m
-CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
-CONFIG_NET_TEAM_MODE_RANDOM=m
-CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
-CONFIG_NET_TEAM_MODE_LOADBALANCE=m
-CONFIG_MACVLAN=m
-CONFIG_MACVTAP=m
-CONFIG_VXLAN=m
-CONFIG_GENEVE=m
-CONFIG_MACSEC=m
-CONFIG_NETCONSOLE=m
-CONFIG_NETCONSOLE_DYNAMIC=y
-CONFIG_NETPOLL=y
-CONFIG_NET_POLL_CONTROLLER=y
-CONFIG_TUN=m
-CONFIG_TUN_VNET_CROSS_LE=y
-CONFIG_VETH=m
-CONFIG_VIRTIO_NET=m
-CONFIG_NLMON=m
-CONFIG_VSOCKMON=m
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_VHOST_NET=m
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST_RING=m
-CONFIG_VHOST=m
-CONFIG_VHOST_CROSS_ENDIAN_LEGACY=y
-
-#
-# Distributed Switch Architecture drivers
-#
-# CONFIG_NET_DSA_MV88E6XXX is not set
-# CONFIG_NET_DSA_MV88E6060 is not set
-# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
-# CONFIG_NET_DSA_MV88E6131 is not set
-# CONFIG_NET_DSA_MV88E6123_61_65 is not set
-CONFIG_ETHERNET=y
-CONFIG_MDIO=m
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
-CONFIG_NET_VENDOR_AMAZON=y
-# CONFIG_ENA_ETHERNET is not set
-CONFIG_NET_VENDOR_AMD=y
-CONFIG_AMD8111_ETH=m
-CONFIG_PCNET32=m
-# CONFIG_AMD_XGBE_HAVE_ECC is not set
-CONFIG_NET_VENDOR_AQUANTIA=y
-CONFIG_NET_VENDOR_ATHEROS=y
-CONFIG_ATL2=m
-CONFIG_ATL1=m
-CONFIG_ATL1E=m
-CONFIG_ATL1C=m
-CONFIG_ALX=m
-CONFIG_NET_CADENCE=y
-CONFIG_ARM_AT91_ETHER=m
-CONFIG_MACB=m
-CONFIG_NET_VENDOR_BROADCOM=y
-CONFIG_B44=m
-CONFIG_B44_PCI_AUTOSELECT=y
-CONFIG_B44_PCICORE_AUTOSELECT=y
-CONFIG_B44_PCI=y
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-CONFIG_TIGON3=m
-CONFIG_TIGON3_HWMON=y
-CONFIG_BNX2X=m
-CONFIG_BNX2X_SRIOV=y
-CONFIG_BNXT=m
-CONFIG_BNXT_SRIOV=y
-CONFIG_BNXT_FLOWER_OFFLOAD=y
-CONFIG_BNXT_DCB=y
-CONFIG_BNXT_HWMON=y
-CONFIG_NET_VENDOR_BROCADE=y
-CONFIG_BNA=m
-CONFIG_NET_CALXEDA_XGMAC=m
-CONFIG_NET_VENDOR_CAVIUM=y
-CONFIG_LIQUIDIO=m
-CONFIG_LIQUIDIO_VF=m
-CONFIG_NET_VENDOR_CHELSIO=y
-# CONFIG_CHELSIO_T1 is not set
-CONFIG_CHELSIO_T3=m
-CONFIG_CHELSIO_T4=m
-# CONFIG_CHELSIO_T4_DCB is not set
-CONFIG_CHELSIO_T4VF=m
-CONFIG_CHELSIO_LIB=m
-CONFIG_NET_VENDOR_CISCO=y
-CONFIG_ENIC=m
-CONFIG_DNET=m
-CONFIG_NET_VENDOR_DEC=y
-CONFIG_NET_TULIP=y
-CONFIG_DE2104X=m
-CONFIG_DE2104X_DSL=0
-CONFIG_TULIP=m
-# CONFIG_TULIP_MWI is not set
-CONFIG_TULIP_MMIO=y
-# CONFIG_TULIP_NAPI is not set
-CONFIG_DE4X5=m
-CONFIG_WINBOND_840=m
-CONFIG_DM9102=m
-CONFIG_ULI526X=m
-CONFIG_PCMCIA_XIRCOM=m
-# CONFIG_NET_VENDOR_DLINK is not set
-CONFIG_NET_VENDOR_EMULEX=y
-CONFIG_BE2NET=m
-CONFIG_BE2NET_HWMON=y
-# CONFIG_NET_VENDOR_EXAR is not set
-CONFIG_NET_VENDOR_GOOGLE=y
-CONFIG_GVE=m
-# CONFIG_NET_VENDOR_HP is not set
-CONFIG_NET_VENDOR_IBM=y
-CONFIG_IBMVETH=m
-# CONFIG_IBM_EMAC_ZMII is not set
-# CONFIG_IBM_EMAC_RGMII is not set
-# CONFIG_IBM_EMAC_TAH is not set
-# CONFIG_IBM_EMAC_EMAC4 is not set
-# CONFIG_IBM_EMAC_NO_FLOW_CTRL is not set
-# CONFIG_IBM_EMAC_MAL_CLR_ICINTSTAT is not set
-# CONFIG_IBM_EMAC_MAL_COMMON_ERR is not set
-CONFIG_EHEA=m
-CONFIG_IBMVNIC=m
-CONFIG_NET_VENDOR_INTEL=y
-# CONFIG_E100 is not set
-CONFIG_E1000=m
-CONFIG_E1000E=m
-CONFIG_IGB=m
-CONFIG_IGB_HWMON=y
-CONFIG_IGBVF=m
-# CONFIG_IXGB is not set
-CONFIG_IXGBE=m
-CONFIG_IXGBE_HWMON=y
-CONFIG_IXGBE_DCB=y
-CONFIG_IXGBEVF=m
-CONFIG_I40E=m
-CONFIG_I40E_VXLAN=y
-CONFIG_I40E_DCB=y
-CONFIG_IAVF=m
-CONFIG_I40EVF=m
-CONFIG_ICE=m
-CONFIG_FM10K=m
-CONFIG_IGC=m
-# CONFIG_NET_VENDOR_I825XX is not set
-# CONFIG_IP1000 is not set
-CONFIG_JME=m
-CONFIG_NET_VENDOR_MARVELL=y
-CONFIG_MVMDIO=m
-CONFIG_SKGE=m
-# CONFIG_SKGE_DEBUG is not set
-CONFIG_SKGE_GENESIS=y
-CONFIG_SKY2=m
-# CONFIG_SKY2_DEBUG is not set
-CONFIG_NET_VENDOR_MELLANOX=y
-CONFIG_MLX4_EN=m
-CONFIG_MLX4_EN_DCB=y
-CONFIG_MLX4_CORE=m
-CONFIG_MLX4_DEBUG=y
-CONFIG_MLX4_CORE_GEN2=y
-CONFIG_MLX5_CORE=m
-# CONFIG_MLX5_FPGA is not set
-CONFIG_MLX5_CORE_EN=y
-CONFIG_MLX5_EN_ARFS=y
-CONFIG_MLX5_EN_RXNFC=y
-CONFIG_MLX5_MPFS=y
-CONFIG_MLX5_ESWITCH=y
-CONFIG_MLX5_CORE_EN_DCB=y
-CONFIG_MLX5_CORE_IPOIB=y
-CONFIG_MLXSW_CORE=m
-CONFIG_MLXSW_CORE_HWMON=y
-CONFIG_MLXSW_CORE_THERMAL=y
-CONFIG_MLXSW_PCI=m
-CONFIG_MLXSW_I2C=m
-CONFIG_MLXSW_SWITCHIB=m
-CONFIG_MLXSW_SWITCHX2=m
-CONFIG_MLXSW_SPECTRUM=m
-CONFIG_MLXSW_SPECTRUM_DCB=y
-CONFIG_MLXSW_MINIMAL=m
-CONFIG_MLXFW=m
-# CONFIG_NET_VENDOR_MICREL is not set
-CONFIG_NET_VENDOR_MYRI=y
-CONFIG_MYRI10GE=m
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
-CONFIG_NET_VENDOR_NETRONOME=y
-CONFIG_NFP=m
-CONFIG_NFP_APP_FLOWER=y
-CONFIG_NFP_APP_ABM_NIC=y
-# CONFIG_NFP_DEBUG is not set
-# CONFIG_NET_VENDOR_NVIDIA is not set
-CONFIG_NET_VENDOR_OKI=y
-# CONFIG_PCH_GBE is not set
-CONFIG_ETHOC=m
-CONFIG_NET_PACKET_ENGINE=y
-# CONFIG_HAMACHI is not set
-# CONFIG_YELLOWFIN is not set
-CONFIG_NET_VENDOR_QLOGIC=y
-CONFIG_QLA3XXX=m
-CONFIG_QLCNIC=m
-CONFIG_QLCNIC_SRIOV=y
-CONFIG_QLCNIC_DCB=y
-# CONFIG_QLCNIC_VXLAN is not set
-CONFIG_QLCNIC_HWMON=y
-CONFIG_QLGE=m
-CONFIG_NETXEN_NIC=m
-CONFIG_QED=m
-CONFIG_QED_LL2=y
-CONFIG_QED_SRIOV=y
-CONFIG_QEDE=m
-CONFIG_QED_RDMA=y
-CONFIG_QED_ISCSI=y
-CONFIG_QED_FCOE=y
-CONFIG_QED_OOO=y
-CONFIG_NET_VENDOR_REALTEK=y
-CONFIG_8139CP=m
-CONFIG_8139TOO=m
-# CONFIG_8139TOO_PIO is not set
-# CONFIG_8139TOO_TUNE_TWISTER is not set
-CONFIG_8139TOO_8129=y
-# CONFIG_8139_OLD_RX_RESET is not set
-CONFIG_R8169=m
-# CONFIG_NET_VENDOR_RDC is not set
-CONFIG_NET_VENDOR_ROCKER=y
-CONFIG_ROCKER=m
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
-CONFIG_NET_VENDOR_SOLARFLARE=y
-CONFIG_SFC=m
-CONFIG_SFC_MTD=y
-CONFIG_SFC_MCDI_MON=y
-CONFIG_SFC_SRIOV=y
-CONFIG_SFC_MCDI_LOGGING=y
-CONFIG_SFC_FALCON=m
-CONFIG_SFC_FALCON_MTD=y
-CONFIG_NET_VENDOR_SMSC=y
-CONFIG_EPIC100=m
-CONFIG_SMSC9420=m
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-CONFIG_NET_VENDOR_TI=y
-CONFIG_TLAN=m
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_NET_VENDOR_WIZNET is not set
-# CONFIG_NET_VENDOR_XILINX is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-CONFIG_PHYLIB=y
-
-#
-# MII PHY device drivers
-#
-CONFIG_AT803X_PHY=m
-CONFIG_AMD_PHY=m
-CONFIG_MARVELL_PHY=m
-CONFIG_DAVICOM_PHY=m
-CONFIG_QSEMI_PHY=m
-CONFIG_LXT_PHY=m
-CONFIG_CICADA_PHY=m
-CONFIG_VITESSE_PHY=m
-CONFIG_SMSC_PHY=m
-CONFIG_BROADCOM_PHY=m
-CONFIG_BCM87XX_PHY=m
-CONFIG_ICPLUS_PHY=m
-CONFIG_REALTEK_PHY=y
-CONFIG_NATIONAL_PHY=m
-CONFIG_STE10XP=m
-CONFIG_LSI_ET1011C_PHY=m
-CONFIG_MICREL_PHY=m
-CONFIG_FIXED_PHY=y
-CONFIG_MDIO_BITBANG=m
-CONFIG_MDIO_GPIO=m
-# CONFIG_MDIO_BUS_MUX_GPIO is not set
-# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
-# CONFIG_PLIP is not set
-CONFIG_PPP=m
-CONFIG_PPP_BSDCOMP=m
-CONFIG_PPP_DEFLATE=m
-CONFIG_PPP_FILTER=y
-CONFIG_PPP_MPPE=m
-CONFIG_PPP_MULTILINK=y
-CONFIG_PPPOATM=m
-CONFIG_PPPOE=m
-CONFIG_PPTP=m
-CONFIG_PPPOL2TP=m
-CONFIG_PPP_ASYNC=m
-CONFIG_PPP_SYNC_TTY=m
-CONFIG_SLIP=m
-CONFIG_SLHC=m
-CONFIG_SLIP_COMPRESSED=y
-CONFIG_SLIP_SMART=y
-# CONFIG_SLIP_MODE_SLIP6 is not set
-CONFIG_USB_NET_DRIVERS=y
-CONFIG_USB_CATC=m
-CONFIG_USB_KAWETH=m
-CONFIG_USB_PEGASUS=m
-CONFIG_USB_RTL8150=m
-CONFIG_USB_RTL8152=m
-# CONFIG_USB_LAN78XX is not set
-CONFIG_USB_USBNET=m
-CONFIG_USB_NET_AX8817X=m
-CONFIG_USB_NET_AX88179_178A=m
-CONFIG_USB_NET_CDCETHER=m
-CONFIG_USB_NET_CDC_EEM=m
-CONFIG_USB_NET_CDC_NCM=m
-CONFIG_USB_NET_HUAWEI_CDC_NCM=m
-CONFIG_USB_NET_CDC_MBIM=m
-CONFIG_USB_NET_DM9601=m
-# CONFIG_USB_NET_SR9700 is not set
-# CONFIG_USB_NET_SR9800 is not set
-CONFIG_USB_NET_SMSC75XX=m
-CONFIG_USB_NET_SMSC95XX=m
-CONFIG_USB_NET_GL620A=m
-CONFIG_USB_NET_NET1080=m
-CONFIG_USB_NET_PLUSB=m
-CONFIG_USB_NET_MCS7830=m
-CONFIG_USB_NET_RNDIS_HOST=m
-CONFIG_USB_NET_CDC_SUBSET_ENABLE=m
-CONFIG_USB_NET_CDC_SUBSET=m
-CONFIG_USB_ALI_M5632=y
-CONFIG_USB_AN2720=y
-CONFIG_USB_BELKIN=y
-CONFIG_USB_ARMLINUX=y
-CONFIG_USB_EPSON2888=y
-CONFIG_USB_KC2190=y
-CONFIG_USB_NET_ZAURUS=m
-CONFIG_USB_NET_CX82310_ETH=m
-CONFIG_USB_NET_KALMIA=m
-CONFIG_USB_NET_QMI_WWAN=m
-CONFIG_USB_HSO=m
-CONFIG_USB_NET_INT51X1=m
-CONFIG_USB_IPHETH=m
-CONFIG_USB_SIERRA_NET=m
-CONFIG_USB_VL600=m
-# CONFIG_USB_NET_CH9200 is not set
-CONFIG_WLAN=y
-# CONFIG_LIBERTAS_THINFIRM is not set
-# CONFIG_AIRO is not set
-# CONFIG_ATMEL is not set
-# CONFIG_AT76C50X_USB is not set
-# CONFIG_PRISM54 is not set
-# CONFIG_USB_ZD1201 is not set
-# CONFIG_USB_NET_RNDIS_WLAN is not set
-# CONFIG_ADM8211 is not set
-CONFIG_MAC80211_HWSIM=m
-CONFIG_ATH_COMMON=m
-CONFIG_WLAN_VENDOR_ATH=y
-# CONFIG_ATH_DEBUG is not set
-# CONFIG_ATH5K is not set
-# CONFIG_ATH5K_PCI is not set
-CONFIG_ATH9K_HW=m
-CONFIG_ATH9K_COMMON=m
-CONFIG_ATH9K_COMMON_DEBUG=y
-CONFIG_ATH9K_BTCOEX_SUPPORT=y
-CONFIG_ATH9K=m
-CONFIG_ATH9K_PCI=y
-CONFIG_ATH9K_AHB=y
-CONFIG_ATH9K_DEBUGFS=y
-# CONFIG_ATH9K_STATION_STATISTICS is not set
-# CONFIG_ATH9K_DYNACK is not set
-CONFIG_ATH9K_WOW=y
-CONFIG_ATH9K_RFKILL=y
-# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
-CONFIG_ATH9K_PCOEM=y
-CONFIG_ATH9K_HTC=m
-# CONFIG_ATH9K_HTC_DEBUGFS is not set
-# CONFIG_ATH9K_HWRNG is not set
-# CONFIG_CARL9170 is not set
-# CONFIG_ATH6KL is not set
-# CONFIG_AR5523 is not set
-CONFIG_WIL6210=m
-CONFIG_WIL6210_ISR_COR=y
-CONFIG_WIL6210_TRACING=y
-CONFIG_WIL6210_DEBUGFS=y
-CONFIG_ATH10K=m
-CONFIG_ATH10K_PCI=m
-# CONFIG_ATH10K_SDIO is not set
-# CONFIG_ATH10K_USB is not set
-# CONFIG_ATH10K_DEBUG is not set
-CONFIG_ATH10K_DEBUGFS=y
-# CONFIG_ATH10K_TRACING is not set
-# CONFIG_B43 is not set
-# CONFIG_B43LEGACY is not set
-CONFIG_WLAN_VENDOR_BROADCOM=y
-CONFIG_BRCMUTIL=m
-CONFIG_BRCMSMAC=m
-CONFIG_BRCMFMAC=m
-CONFIG_BRCMFMAC_PROTO_BCDC=y
-CONFIG_BRCMFMAC_PROTO_MSGBUF=y
-CONFIG_BRCMFMAC_SDIO=y
-CONFIG_BRCMFMAC_USB=y
-CONFIG_BRCMFMAC_PCIE=y
-# CONFIG_BRCM_TRACING is not set
-# CONFIG_BRCMDBG is not set
-# CONFIG_HOSTAP is not set
-# CONFIG_IPW2100 is not set
-# CONFIG_IPW2200 is not set
-CONFIG_WLAN_VENDOR_INTEL=y
-CONFIG_IWLEGACY=m
-CONFIG_IWL4965=m
-CONFIG_IWL3945=m
-
-#
-# iwl3945 / iwl4965 Debugging Options
-#
-CONFIG_IWLEGACY_DEBUG=y
-CONFIG_IWLEGACY_DEBUGFS=y
-CONFIG_IWLWIFI=m
-CONFIG_IWLWIFI_LEDS=y
-CONFIG_IWLDVM=m
-CONFIG_IWLMVM=m
-CONFIG_IWLWIFI_OPMODE_MODULAR=y
-# CONFIG_IWLWIFI_BCAST_FILTERING is not set
-
-#
-# Debugging Options
-#
-# CONFIG_IWLWIFI_DEBUG is not set
-CONFIG_IWLWIFI_DEBUGFS=y
-# CONFIG_IWLWIFI_DEVICE_TRACING is not set
-# CONFIG_LIBERTAS is not set
-CONFIG_WLAN_VENDOR_MARVELL=y
-CONFIG_MWIFIEX=m
-CONFIG_MWIFIEX_SDIO=m
-CONFIG_MWIFIEX_PCIE=m
-CONFIG_MWIFIEX_USB=m
-CONFIG_MWL8K=m
-# CONFIG_HERMES is not set
-# CONFIG_P54_COMMON is not set
-CONFIG_WLAN_VENDOR_RALINK=y
-CONFIG_RT2X00=m
-# CONFIG_RT2400PCI is not set
-# CONFIG_RT2500PCI is not set
-CONFIG_RT61PCI=m
-CONFIG_RT2800PCI=m
-CONFIG_RT2800PCI_RT33XX=y
-CONFIG_RT2800PCI_RT35XX=y
-CONFIG_RT2800PCI_RT53XX=y
-CONFIG_RT2800PCI_RT3290=y
-# CONFIG_RT2500USB is not set
-CONFIG_RT73USB=m
-CONFIG_RT2800USB=m
-CONFIG_RT2800USB_RT33XX=y
-CONFIG_RT2800USB_RT35XX=y
-CONFIG_RT2800USB_RT3573=y
-CONFIG_RT2800USB_RT53XX=y
-CONFIG_RT2800USB_RT55XX=y
-CONFIG_RT2800USB_UNKNOWN=y
-CONFIG_RT2800_LIB=m
-CONFIG_RT2800_LIB_MMIO=m
-CONFIG_RT2X00_LIB_MMIO=m
-CONFIG_RT2X00_LIB_PCI=m
-CONFIG_RT2X00_LIB_USB=m
-CONFIG_RT2X00_LIB=m
-CONFIG_RT2X00_LIB_FIRMWARE=y
-CONFIG_RT2X00_LIB_CRYPTO=y
-CONFIG_RT2X00_LIB_LEDS=y
-CONFIG_RT2X00_LIB_DEBUGFS=y
-# CONFIG_RT2X00_DEBUG is not set
-CONFIG_WLAN_VENDOR_REALTEK=y
-# CONFIG_RTL8180 is not set
-CONFIG_RTL8187=m
-CONFIG_RTL8187_LEDS=y
-CONFIG_RTL_CARDS=m
-CONFIG_RTL8192CE=m
-CONFIG_RTL8192SE=m
-CONFIG_RTL8192DE=m
-CONFIG_RTL8723AE=m
-CONFIG_RTL8723BE=m
-CONFIG_RTL8188EE=m
-CONFIG_RTL8192EE=m
-CONFIG_RTL8821AE=m
-CONFIG_RTL8192CU=m
-CONFIG_RTLWIFI=m
-CONFIG_RTLWIFI_PCI=m
-CONFIG_RTLWIFI_USB=m
-# CONFIG_RTLWIFI_DEBUG is not set
-CONFIG_RTL8192C_COMMON=m
-CONFIG_RTL8723_COMMON=m
-CONFIG_RTLBTCOEXIST=m
-CONFIG_RTW88=m
-CONFIG_RTW88_CORE=m
-CONFIG_RTW88_PCI=m
-CONFIG_RTW88_8822BE=y
-CONFIG_RTW88_8822CE=y
-# CONFIG_RTW88_DEBUG is not set
-# CONFIG_RTW88_DEBUGFS is not set
-# CONFIG_WL_TI is not set
-# CONFIG_ZD1211RW is not set
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-CONFIG_WAN=y
-CONFIG_HDLC=m
-CONFIG_HDLC_RAW=m
-# CONFIG_HDLC_RAW_ETH is not set
-CONFIG_HDLC_CISCO=m
-CONFIG_HDLC_FR=m
-CONFIG_HDLC_PPP=m
-
-#
-# X.25/LAPB support is disabled
-#
-# CONFIG_PCI200SYN is not set
-# CONFIG_WANXL is not set
-# CONFIG_PC300TOO is not set
-# CONFIG_FARSYNC is not set
-# CONFIG_DSCC4 is not set
-CONFIG_DLCI=m
-CONFIG_DLCI_MAX=8
-CONFIG_IEEE802154_DRIVERS=m
-CONFIG_IEEE802154_FAKELB=m
-# CONFIG_IEEE802154_ATUSB is not set
-# CONFIG_VMXNET3 is not set
-CONFIG_NET_FAILOVER=m
-CONFIG_ISDN=y
-CONFIG_ISDN_I4L=m
-CONFIG_ISDN_PPP=y
-CONFIG_ISDN_PPP_VJ=y
-CONFIG_ISDN_MPP=y
-CONFIG_IPPP_FILTER=y
-# CONFIG_ISDN_PPP_BSDCOMP is not set
-CONFIG_ISDN_AUDIO=y
-CONFIG_ISDN_TTY_FAX=y
-
-#
-# ISDN feature submodules
-#
-CONFIG_ISDN_DIVERSION=m
-
-#
-# ISDN4Linux hardware drivers
-#
-
-#
-# Passive cards
-#
-CONFIG_ISDN_DRV_HISAX=m
-
-#
-# D-channel protocol features
-#
-CONFIG_HISAX_EURO=y
-CONFIG_DE_AOC=y
-CONFIG_HISAX_NO_SENDCOMPLETE=y
-CONFIG_HISAX_NO_LLC=y
-CONFIG_HISAX_NO_KEYPAD=y
-CONFIG_HISAX_1TR6=y
-CONFIG_HISAX_NI1=y
-CONFIG_HISAX_MAX_CARDS=8
-
-#
-# HiSax supported cards
-#
-CONFIG_HISAX_16_3=y
-CONFIG_HISAX_S0BOX=y
-CONFIG_HISAX_AVM_A1_PCMCIA=y
-CONFIG_HISAX_ELSA=y
-CONFIG_HISAX_DIEHLDIVA=y
-CONFIG_HISAX_SEDLBAUER=y
-CONFIG_HISAX_NICCY=y
-CONFIG_HISAX_BKM_A4T=y
-CONFIG_HISAX_SCT_QUADRO=y
-CONFIG_HISAX_GAZEL=y
-CONFIG_HISAX_W6692=y
-CONFIG_HISAX_HFC_SX=y
-# CONFIG_HISAX_DEBUG is not set
-
-#
-# HiSax PCMCIA card service modules
-#
-
-#
-# HiSax sub driver modules
-#
-CONFIG_HISAX_ST5481=m
-# CONFIG_HISAX_HFCUSB is not set
-CONFIG_HISAX_HFC4S8S=m
-CONFIG_HISAX_FRITZ_PCIPNP=m
-
-#
-# Active cards
-#
-CONFIG_ISDN_CAPI=m
-CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
-# CONFIG_CAPI_TRACE is not set
-CONFIG_ISDN_CAPI_MIDDLEWARE=y
-CONFIG_ISDN_CAPI_CAPI20=m
-CONFIG_ISDN_CAPI_CAPIDRV=m
-
-#
-# CAPI hardware drivers
-#
-CONFIG_CAPI_AVM=y
-CONFIG_ISDN_DRV_AVMB1_B1PCI=m
-CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
-CONFIG_ISDN_DRV_AVMB1_T1PCI=m
-CONFIG_ISDN_DRV_AVMB1_C4=m
-# CONFIG_CAPI_EICON is not set
-CONFIG_ISDN_DRV_GIGASET=m
-CONFIG_GIGASET_CAPI=y
-# CONFIG_GIGASET_I4L is not set
-# CONFIG_GIGASET_DUMMYLL is not set
-CONFIG_GIGASET_BASE=m
-CONFIG_GIGASET_M105=m
-CONFIG_GIGASET_M101=m
-# CONFIG_GIGASET_DEBUG is not set
-CONFIG_HYSDN=m
-CONFIG_HYSDN_CAPI=y
-CONFIG_MISDN=m
-CONFIG_MISDN_DSP=m
-CONFIG_MISDN_L1OIP=m
-
-#
-# mISDN hardware drivers
-#
-CONFIG_MISDN_HFCPCI=m
-CONFIG_MISDN_HFCMULTI=m
-CONFIG_MISDN_HFCUSB=m
-CONFIG_MISDN_AVMFRITZ=m
-CONFIG_MISDN_SPEEDFAX=m
-CONFIG_MISDN_INFINEON=m
-CONFIG_MISDN_W6692=m
-CONFIG_MISDN_NETJET=m
-CONFIG_MISDN_IPAC=m
-CONFIG_MISDN_ISAR=m
-CONFIG_ISDN_HDLC=m
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-CONFIG_INPUT_LEDS=y
-CONFIG_INPUT_FF_MEMLESS=y
-CONFIG_INPUT_POLLDEV=m
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-CONFIG_INPUT_MOUSEDEV=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
-CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
-# CONFIG_INPUT_JOYDEV is not set
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-CONFIG_INPUT_KEYBOARD=y
-# CONFIG_KEYBOARD_ADP5588 is not set
-# CONFIG_KEYBOARD_ADP5589 is not set
-CONFIG_KEYBOARD_ATKBD=y
-# CONFIG_KEYBOARD_QT1070 is not set
-# CONFIG_KEYBOARD_QT2160 is not set
-# CONFIG_KEYBOARD_LKKBD is not set
-# CONFIG_KEYBOARD_GPIO is not set
-# CONFIG_KEYBOARD_GPIO_POLLED is not set
-# CONFIG_KEYBOARD_TCA6416 is not set
-# CONFIG_KEYBOARD_TCA8418 is not set
-# CONFIG_KEYBOARD_MATRIX is not set
-# CONFIG_KEYBOARD_LM8323 is not set
-# CONFIG_KEYBOARD_LM8333 is not set
-# CONFIG_KEYBOARD_MAX7359 is not set
-# CONFIG_KEYBOARD_MCS is not set
-# CONFIG_KEYBOARD_MPR121 is not set
-# CONFIG_KEYBOARD_NEWTON is not set
-# CONFIG_KEYBOARD_OPENCORES is not set
-# CONFIG_KEYBOARD_STOWAWAY is not set
-# CONFIG_KEYBOARD_SUNKBD is not set
-# CONFIG_KEYBOARD_XTKBD is not set
-CONFIG_INPUT_MOUSE=y
-CONFIG_MOUSE_PS2=y
-CONFIG_MOUSE_PS2_ALPS=y
-CONFIG_MOUSE_PS2_LOGIPS2PP=y
-CONFIG_MOUSE_PS2_SYNAPTICS=y
-CONFIG_MOUSE_PS2_CYPRESS=y
-CONFIG_MOUSE_PS2_TRACKPOINT=y
-CONFIG_MOUSE_PS2_ELANTECH=y
-CONFIG_MOUSE_PS2_SENTELIC=y
-# CONFIG_MOUSE_PS2_TOUCHKIT is not set
-CONFIG_MOUSE_SERIAL=m
-CONFIG_MOUSE_APPLETOUCH=m
-CONFIG_MOUSE_BCM5974=m
-CONFIG_MOUSE_CYAPA=m
-CONFIG_MOUSE_VSXXXAA=m
-# CONFIG_MOUSE_GPIO is not set
-CONFIG_MOUSE_SYNAPTICS_I2C=m
-CONFIG_MOUSE_SYNAPTICS_USB=m
-# CONFIG_INPUT_JOYSTICK is not set
-CONFIG_INPUT_TABLET=y
-CONFIG_TABLET_USB_ACECAD=m
-CONFIG_TABLET_USB_AIPTEK=m
-CONFIG_TABLET_USB_GTCO=m
-# CONFIG_TABLET_USB_HANWANG is not set
-CONFIG_TABLET_USB_KBTAB=m
-CONFIG_TABLET_USB_WACOM=m
-CONFIG_INPUT_TOUCHSCREEN=y
-# CONFIG_TOUCHSCREEN_AD7879 is not set
-# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
-# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_BU21013 is not set
-# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
-# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
-# CONFIG_TOUCHSCREEN_DYNAPRO is not set
-# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
-# CONFIG_TOUCHSCREEN_EETI is not set
-# CONFIG_TOUCHSCREEN_EGALAX is not set
-# CONFIG_TOUCHSCREEN_FUJITSU is not set
-# CONFIG_TOUCHSCREEN_ILI210X is not set
-# CONFIG_TOUCHSCREEN_GUNZE is not set
-CONFIG_TOUCHSCREEN_ELO=m
-CONFIG_TOUCHSCREEN_WACOM_W8001=m
-CONFIG_TOUCHSCREEN_WACOM_I2C=m
-# CONFIG_TOUCHSCREEN_MAX11801 is not set
-# CONFIG_TOUCHSCREEN_MCS5000 is not set
-# CONFIG_TOUCHSCREEN_MMS114 is not set
-# CONFIG_TOUCHSCREEN_MTOUCH is not set
-# CONFIG_TOUCHSCREEN_INEXIO is not set
-# CONFIG_TOUCHSCREEN_MK712 is not set
-# CONFIG_TOUCHSCREEN_PENMOUNT is not set
-# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
-# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
-# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
-# CONFIG_TOUCHSCREEN_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_WM97XX is not set
-# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
-# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
-# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
-# CONFIG_TOUCHSCREEN_TSC2007 is not set
-# CONFIG_TOUCHSCREEN_ST1232 is not set
-# CONFIG_TOUCHSCREEN_TPS6507X is not set
-CONFIG_INPUT_MISC=y
-# CONFIG_INPUT_AD714X is not set
-# CONFIG_INPUT_BMA150 is not set
-# CONFIG_INPUT_PCSPKR is not set
-# CONFIG_INPUT_MMA8450 is not set
-# CONFIG_INPUT_MPU3050 is not set
-# CONFIG_INPUT_GP2A is not set
-# CONFIG_INPUT_GPIO_TILT_POLLED is not set
-CONFIG_INPUT_ATI_REMOTE2=m
-CONFIG_INPUT_KEYSPAN_REMOTE=m
-# CONFIG_INPUT_KXTJ9 is not set
-CONFIG_INPUT_POWERMATE=m
-CONFIG_INPUT_YEALINK=m
-CONFIG_INPUT_CM109=m
-CONFIG_INPUT_UINPUT=m
-# CONFIG_INPUT_PCF8574 is not set
-CONFIG_INPUT_PWM_BEEPER=m
-CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
-# CONFIG_INPUT_ADXL34X is not set
-# CONFIG_INPUT_IMS_PCU is not set
-# CONFIG_INPUT_CMA3000 is not set
-# CONFIG_RMI4_CORE is not set
-
-#
-# Hardware I/O ports
-#
-CONFIG_SERIO=y
-CONFIG_SERIO_I8042=y
-CONFIG_SERIO_SERPORT=y
-# CONFIG_SERIO_PARKBD is not set
-# CONFIG_SERIO_PCIPS2 is not set
-CONFIG_SERIO_LIBPS2=y
-CONFIG_SERIO_RAW=m
-# CONFIG_SERIO_XILINX_XPS_PS2 is not set
-CONFIG_SERIO_ALTERA_PS2=m
-# CONFIG_SERIO_PS2MULT is not set
-CONFIG_SERIO_ARC_PS2=m
-# CONFIG_SERIO_APBPS2 is not set
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_VT_CONSOLE_SLEEP=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_SERIAL_NONSTANDARD=y
-# CONFIG_ROCKETPORT is not set
-CONFIG_CYCLADES=m
-# CONFIG_CYZ_INTR is not set
-# CONFIG_MOXA_INTELLIO is not set
-# CONFIG_MOXA_SMARTIO is not set
-CONFIG_SYNCLINK=m
-CONFIG_SYNCLINKMP=m
-CONFIG_SYNCLINK_GT=m
-CONFIG_NOZOMI=m
-# CONFIG_ISI is not set
-CONFIG_N_HDLC=m
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=y
-# CONFIG_STALDRV is not set
-
-#
-# Serial drivers
-#
-CONFIG_SERIAL_8250=y
-# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_SERIAL_8250_DMA=y
-CONFIG_SERIAL_8250_PCI=y
-CONFIG_SERIAL_8250_NR_UARTS=32
-CONFIG_SERIAL_8250_RUNTIME_UARTS=4
-CONFIG_SERIAL_8250_EXTENDED=y
-CONFIG_SERIAL_8250_MANY_PORTS=y
-CONFIG_SERIAL_8250_SHARE_IRQ=y
-# CONFIG_SERIAL_8250_DETECT_IRQ is not set
-CONFIG_SERIAL_8250_RSA=y
-CONFIG_SERIAL_8250_FSL=y
-# CONFIG_SERIAL_8250_DW is not set
-
-#
-# Non-8250 serial port support
-#
-# CONFIG_SERIAL_KGDB_NMI is not set
-# CONFIG_SERIAL_MFD_HSU is not set
-CONFIG_SERIAL_CORE=y
-CONFIG_SERIAL_CORE_CONSOLE=y
-CONFIG_CONSOLE_POLL=y
-CONFIG_SERIAL_ICOM=m
-CONFIG_SERIAL_JSM=m
-CONFIG_SERIAL_OF_PLATFORM=m
-# CONFIG_SERIAL_SCCNXP is not set
-# CONFIG_SERIAL_TIMBERDALE is not set
-# CONFIG_SERIAL_ALTERA_JTAGUART is not set
-# CONFIG_SERIAL_ALTERA_UART is not set
-# CONFIG_SERIAL_PCH_UART is not set
-# CONFIG_SERIAL_XILINX_PS_UART is not set
-CONFIG_SERIAL_ARC=m
-CONFIG_SERIAL_ARC_NR_PORTS=1
-# CONFIG_SERIAL_RP2 is not set
-CONFIG_PRINTER=m
-# CONFIG_LP_CONSOLE is not set
-CONFIG_PPDEV=m
-CONFIG_HVC_DRIVER=y
-CONFIG_HVC_IRQ=y
-CONFIG_HVC_CONSOLE=y
-# CONFIG_HVC_OLD_HVSI is not set
-CONFIG_HVC_OPAL=y
-CONFIG_HVC_RTAS=y
-# CONFIG_HVC_UDBG is not set
-CONFIG_HVCS=m
-CONFIG_VIRTIO_CONSOLE=m
-CONFIG_IBM_BSR=m
-CONFIG_IPMI_HANDLER=m
-CONFIG_IPMI_PROC_INTERFACE=y
-CONFIG_IPMI_PANIC_EVENT=y
-# CONFIG_IPMI_PANIC_STRING is not set
-CONFIG_IPMI_DEVICE_INTERFACE=m
-CONFIG_IPMI_SI=m
-CONFIG_IPMI_SSIF=m
-CONFIG_IPMI_POWERNV=m
-CONFIG_IPMI_WATCHDOG=m
-CONFIG_IPMI_POWEROFF=m
-CONFIG_HW_RANDOM=y
-CONFIG_HW_RANDOM_TIMERIOMEM=m
-CONFIG_HW_RANDOM_VIRTIO=m
-CONFIG_HW_RANDOM_PSERIES=m
-CONFIG_HW_RANDOM_POWERNV=m
-# CONFIG_R3964 is not set
-# CONFIG_APPLICOM is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-CONFIG_HANGCHECK_TIMER=m
-CONFIG_TCG_TPM=y
-CONFIG_HW_RANDOM_TPM=y
-CONFIG_TCG_TIS_CORE=m
-CONFIG_TCG_TIS=m
-CONFIG_TCG_TIS_I2C_ATMEL=m
-CONFIG_TCG_TIS_I2C_INFINEON=m
-CONFIG_TCG_TIS_I2C_NUVOTON=m
-# CONFIG_TCG_ATMEL is not set
-CONFIG_TCG_IBMVTPM=y
-# CONFIG_TCG_VTPM_PROXY is not set
-CONFIG_TCG_TIS_ST33ZP24=m
-CONFIG_TCG_TIS_ST33ZP24_I2C=m
-CONFIG_DEVPORT=y
-CONFIG_HMC_DRV=m
-
-#
-# I2C support
-#
-CONFIG_I2C=m
-CONFIG_I2C_BOARDINFO=y
-CONFIG_I2C_COMPAT=y
-CONFIG_I2C_CHARDEV=m
-# CONFIG_I2C_MUX is not set
-CONFIG_I2C_HELPER_AUTO=y
-CONFIG_I2C_SMBUS=m
-CONFIG_I2C_ALGOBIT=m
-CONFIG_I2C_ALGOPCA=m
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-# CONFIG_I2C_AMD756 is not set
-# CONFIG_I2C_AMD8111 is not set
-# CONFIG_I2C_I801 is not set
-# CONFIG_I2C_ISCH is not set
-# CONFIG_I2C_PIIX4 is not set
-CONFIG_I2C_NFORCE2=m
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-# CONFIG_I2C_SIS96X is not set
-# CONFIG_I2C_VIA is not set
-# CONFIG_I2C_VIAPRO is not set
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_CBUS_GPIO is not set
-CONFIG_I2C_DESIGNWARE_CORE=m
-CONFIG_I2C_DESIGNWARE_PLATFORM=m
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_EG20T is not set
-# CONFIG_I2C_GPIO is not set
-# CONFIG_I2C_INTEL_MID is not set
-CONFIG_I2C_MPC=m
-# CONFIG_I2C_OCORES is not set
-CONFIG_I2C_PCA_PLATFORM=m
-# CONFIG_I2C_PXA_PCI is not set
-CONFIG_I2C_SIMTEC=m
-# CONFIG_I2C_XILINX is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-CONFIG_I2C_DIOLAN_U2C=m
-CONFIG_I2C_PARPORT=m
-CONFIG_I2C_PARPORT_LIGHT=m
-# CONFIG_I2C_TAOS_EVM is not set
-CONFIG_I2C_TINY_USB=m
-CONFIG_I2C_VIPERBOARD=m
-
-#
-# Other I2C/SMBus bus drivers
-#
-CONFIG_I2C_OPAL=m
-CONFIG_I2C_STUB=m
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-# CONFIG_SPI is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-CONFIG_PPS_CLIENT_PARPORT=m
-CONFIG_PPS_CLIENT_GPIO=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-CONFIG_DP83640_PHY=m
-CONFIG_PTP_1588_CLOCK_PCH=m
-CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
-CONFIG_ARCH_REQUIRE_GPIOLIB=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_DEVRES=y
-CONFIG_OF_GPIO=y
-# CONFIG_DEBUG_GPIO is not set
-CONFIG_GPIO_SYSFS=y
-
-#
-# Memory mapped GPIO drivers:
-#
-# CONFIG_GPIO_GENERIC_PLATFORM is not set
-# CONFIG_GPIO_SCH311X is not set
-# CONFIG_GPIO_TS5500 is not set
-# CONFIG_GPIO_XILINX is not set
-# CONFIG_GPIO_VX855 is not set
-# CONFIG_GPIO_GRGPIO is not set
-
-#
-# I2C GPIO expanders:
-#
-# CONFIG_GPIO_MAX7300 is not set
-# CONFIG_GPIO_MAX732X is not set
-CONFIG_GPIO_PCA953X=m
-CONFIG_GPIO_PCF857X=m
-# CONFIG_GPIO_ADP5588 is not set
-# CONFIG_GPIO_ADNP is not set
-
-#
-# PCI GPIO expanders:
-#
-# CONFIG_GPIO_AMD8111 is not set
-# CONFIG_GPIO_ML_IOH is not set
-# CONFIG_GPIO_RDC321X is not set
-
-#
-# SPI GPIO expanders:
-#
-# CONFIG_GPIO_MCP23S08 is not set
-
-#
-# AC97 GPIO expanders:
-#
-
-#
-# LPC GPIO expanders:
-#
-
-#
-# MODULbus GPIO expanders:
-#
-
-#
-# USB GPIO expanders:
-#
-CONFIG_GPIO_VIPERBOARD=m
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_PDA_POWER is not set
-# CONFIG_GENERIC_ADC_BATTERY is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-# CONFIG_BATTERY_DS2781 is not set
-# CONFIG_BATTERY_DS2782 is not set
-# CONFIG_BATTERY_SBS is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-# CONFIG_BATTERY_MAX17040 is not set
-# CONFIG_BATTERY_MAX17042 is not set
-# CONFIG_CHARGER_MAX8903 is not set
-# CONFIG_CHARGER_LP8727 is not set
-# CONFIG_CHARGER_GPIO is not set
-# CONFIG_CHARGER_BQ2415X is not set
-CONFIG_CHARGER_SMB347=m
-# CONFIG_BATTERY_GOLDFISH is not set
-CONFIG_POWER_RESET=y
-CONFIG_POWER_RESET_GPIO=y
-# CONFIG_POWER_AVS is not set
-# CONFIG_POWERCAP is not set
-CONFIG_HWMON=y
-CONFIG_HWMON_VID=m
-# CONFIG_HWMON_DEBUG_CHIP is not set
-
-#
-# Native drivers
-#
-CONFIG_SENSORS_AD7414=m
-CONFIG_SENSORS_AD7418=m
-CONFIG_SENSORS_ADM1021=m
-CONFIG_SENSORS_ADM1025=m
-CONFIG_SENSORS_ADM1026=m
-CONFIG_SENSORS_ADM1029=m
-CONFIG_SENSORS_ADM1031=m
-CONFIG_SENSORS_ADM9240=m
-CONFIG_SENSORS_ADT7X10=m
-CONFIG_SENSORS_ADT7410=m
-CONFIG_SENSORS_ADT7411=m
-CONFIG_SENSORS_ADT7462=m
-CONFIG_SENSORS_ADT7470=m
-CONFIG_SENSORS_ADT7475=m
-CONFIG_SENSORS_ASC7621=m
-CONFIG_SENSORS_ATXP1=m
-CONFIG_SENSORS_DS620=m
-CONFIG_SENSORS_DS1621=m
-# CONFIG_SENSORS_I5K_AMB is not set
-CONFIG_SENSORS_F75375S=m
-CONFIG_SENSORS_G760A=m
-CONFIG_SENSORS_GL518SM=m
-CONFIG_SENSORS_GL520SM=m
-# CONFIG_SENSORS_GPIO_FAN is not set
-# CONFIG_SENSORS_HIH6130 is not set
-CONFIG_SENSORS_IBMAEM=m
-CONFIG_SENSORS_IBMPEX=m
-CONFIG_SENSORS_IBMPOWERNV=m
-# CONFIG_SENSORS_IIO_HWMON is not set
-CONFIG_SENSORS_JC42=m
-CONFIG_SENSORS_LINEAGE=m
-CONFIG_SENSORS_LM63=m
-CONFIG_SENSORS_LM73=m
-CONFIG_SENSORS_LM75=m
-CONFIG_SENSORS_LM77=m
-CONFIG_SENSORS_LM78=m
-CONFIG_SENSORS_LM80=m
-CONFIG_SENSORS_LM83=m
-CONFIG_SENSORS_LM85=m
-CONFIG_SENSORS_LM87=m
-CONFIG_SENSORS_LM90=m
-CONFIG_SENSORS_LM92=m
-CONFIG_SENSORS_LM93=m
-CONFIG_SENSORS_LTC4151=m
-CONFIG_SENSORS_LTC4215=m
-CONFIG_SENSORS_LTC4245=m
-CONFIG_SENSORS_LTC4261=m
-CONFIG_SENSORS_LM95234=m
-CONFIG_SENSORS_LM95241=m
-CONFIG_SENSORS_LM95245=m
-CONFIG_SENSORS_MAX16065=m
-CONFIG_SENSORS_MAX1619=m
-CONFIG_SENSORS_MAX1668=m
-CONFIG_SENSORS_MAX197=m
-CONFIG_SENSORS_MAX6639=m
-CONFIG_SENSORS_MAX6642=m
-CONFIG_SENSORS_MAX6650=m
-CONFIG_SENSORS_MAX6697=m
-CONFIG_SENSORS_MCP3021=m
-CONFIG_SENSORS_NTC_THERMISTOR=m
-CONFIG_SENSORS_PCF8591=m
-CONFIG_PMBUS=m
-CONFIG_SENSORS_PMBUS=m
-CONFIG_SENSORS_ADM1275=m
-CONFIG_SENSORS_LM25066=m
-CONFIG_SENSORS_LTC2978=m
-CONFIG_SENSORS_MAX16064=m
-CONFIG_SENSORS_MAX34440=m
-CONFIG_SENSORS_MAX8688=m
-CONFIG_SENSORS_UCD9000=m
-CONFIG_SENSORS_UCD9200=m
-CONFIG_SENSORS_ZL6100=m
-CONFIG_SENSORS_SHT15=m
-CONFIG_SENSORS_SHT21=m
-CONFIG_SENSORS_SIS5595=m
-# CONFIG_SENSORS_SMM665 is not set
-CONFIG_SENSORS_EMC1403=m
-# CONFIG_SENSORS_EMC2103 is not set
-CONFIG_SENSORS_EMC6W201=m
-CONFIG_SENSORS_SMSC47M192=m
-# CONFIG_SENSORS_SCH56XX_COMMON is not set
-CONFIG_SENSORS_ADS1015=m
-CONFIG_SENSORS_ADS7828=m
-CONFIG_SENSORS_AMC6821=m
-CONFIG_SENSORS_INA209=m
-CONFIG_SENSORS_INA2XX=m
-CONFIG_SENSORS_THMC50=m
-CONFIG_SENSORS_TMP102=m
-CONFIG_SENSORS_TMP401=m
-CONFIG_SENSORS_TMP421=m
-CONFIG_SENSORS_VIA686A=m
-CONFIG_SENSORS_VT8231=m
-CONFIG_SENSORS_W83781D=m
-CONFIG_SENSORS_W83791D=m
-CONFIG_SENSORS_W83792D=m
-CONFIG_SENSORS_W83793=m
-CONFIG_SENSORS_W83795=m
-# CONFIG_SENSORS_W83795_FANCTRL is not set
-CONFIG_SENSORS_W83L785TS=m
-CONFIG_SENSORS_W83L786NG=m
-CONFIG_THERMAL=y
-CONFIG_THERMAL_HWMON=y
-CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
-# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
-# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
-CONFIG_THERMAL_GOV_FAIR_SHARE=y
-CONFIG_THERMAL_GOV_STEP_WISE=y
-# CONFIG_THERMAL_GOV_USER_SPACE is not set
-# CONFIG_CPU_THERMAL is not set
-# CONFIG_THERMAL_EMULATION is not set
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_CORE=y
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
-CONFIG_WATCHDOG_SYSFS=y
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-CONFIG_ALIM7101_WDT=m
-CONFIG_I6300ESB_WDT=m
-CONFIG_WATCHDOG_RTAS=m
-
-#
-# PCI-based Watchdog Cards
-#
-CONFIG_PCIPCWATCHDOG=m
-CONFIG_WDTPCI=m
-
-#
-# USB-based Watchdog Cards
-#
-CONFIG_USBPCWATCHDOG=m
-
-#
-# Watchdog Pretimeout Governors
-#
-# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-CONFIG_SSB=m
-CONFIG_SSB_SPROM=y
-CONFIG_SSB_PCIHOST_POSSIBLE=y
-CONFIG_SSB_PCIHOST=y
-# CONFIG_SSB_B43_PCI_BRIDGE is not set
-CONFIG_SSB_SDIOHOST_POSSIBLE=y
-CONFIG_SSB_SDIOHOST=y
-# CONFIG_SSB_DEBUG is not set
-CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
-CONFIG_SSB_DRIVER_PCICORE=y
-CONFIG_SSB_DRIVER_GPIO=y
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-CONFIG_BCMA=m
-CONFIG_BCMA_HOST_PCI_POSSIBLE=y
-CONFIG_BCMA_HOST_PCI=y
-# CONFIG_BCMA_HOST_SOC is not set
-CONFIG_BCMA_DRIVER_PCI=y
-CONFIG_BCMA_DRIVER_GMAC_CMN=y
-CONFIG_BCMA_DRIVER_GPIO=y
-# CONFIG_BCMA_DEBUG is not set
-
-#
-# Multifunction device drivers
-#
-CONFIG_MFD_CORE=m
-# CONFIG_MFD_CROS_EC is not set
-# CONFIG_MFD_MC13XXX_I2C is not set
-# CONFIG_HTC_PASIC3 is not set
-# CONFIG_LPC_ICH is not set
-# CONFIG_LPC_SCH is not set
-# CONFIG_MFD_JANZ_CMODIO is not set
-CONFIG_MFD_VIPERBOARD=m
-# CONFIG_MFD_RETU is not set
-# CONFIG_MFD_PCF50633 is not set
-# CONFIG_UCB1400_CORE is not set
-# CONFIG_MFD_RDC321X is not set
-CONFIG_MFD_RTSX_PCI=m
-CONFIG_MFD_RTSX_USB=m
-# CONFIG_MFD_SI476X_CORE is not set
-CONFIG_MFD_SM501=m
-CONFIG_MFD_SM501_GPIO=y
-# CONFIG_ABX500_CORE is not set
-# CONFIG_MFD_SYSCON is not set
-# CONFIG_MFD_TI_AM335X_TSCADC is not set
-# CONFIG_TPS6105X is not set
-# CONFIG_TPS65010 is not set
-# CONFIG_TPS6507X is not set
-# CONFIG_MFD_TPS65217 is not set
-# CONFIG_MFD_TPS65912 is not set
-# CONFIG_MFD_WL1273_CORE is not set
-# CONFIG_MFD_LM3533 is not set
-# CONFIG_MFD_TIMBERDALE is not set
-# CONFIG_MFD_TMIO is not set
-CONFIG_MFD_VX855=m
-# CONFIG_MFD_ARIZONA_I2C is not set
-# CONFIG_REGULATOR is not set
-CONFIG_MEDIA_SUPPORT=m
-
-#
-# Multimedia core support
-#
-CONFIG_MEDIA_CAMERA_SUPPORT=y
-CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
-CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
-CONFIG_MEDIA_RADIO_SUPPORT=y
-CONFIG_MEDIA_RC_SUPPORT=y
-# CONFIG_MEDIA_CONTROLLER is not set
-CONFIG_VIDEO_DEV=m
-CONFIG_VIDEO_V4L2=m
-# CONFIG_VIDEO_ADV_DEBUG is not set
-# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
-CONFIG_VIDEO_TUNER=m
-CONFIG_VIDEOBUF_GEN=m
-CONFIG_VIDEOBUF_DMA_SG=m
-CONFIG_VIDEOBUF_VMALLOC=m
-CONFIG_VIDEOBUF_DVB=m
-CONFIG_VIDEOBUF2_CORE=m
-CONFIG_VIDEOBUF2_MEMOPS=m
-CONFIG_VIDEOBUF2_VMALLOC=m
-# CONFIG_VIDEO_V4L2_INT_DEVICE is not set
-CONFIG_DVB_CORE=m
-CONFIG_DVB_NET=y
-CONFIG_TTPCI_EEPROM=m
-CONFIG_DVB_MAX_ADAPTERS=8
-CONFIG_DVB_DYNAMIC_MINORS=y
-
-#
-# Media drivers
-#
-CONFIG_RC_CORE=m
-CONFIG_RC_MAP=m
-CONFIG_RC_DECODERS=y
-CONFIG_LIRC=m
-CONFIG_IR_LIRC_CODEC=m
-CONFIG_IR_NEC_DECODER=m
-CONFIG_IR_RC5_DECODER=m
-CONFIG_IR_RC6_DECODER=m
-CONFIG_IR_JVC_DECODER=m
-CONFIG_IR_SONY_DECODER=m
-CONFIG_IR_RC5_SZ_DECODER=m
-CONFIG_IR_SANYO_DECODER=m
-CONFIG_IR_MCE_KBD_DECODER=m
-CONFIG_RC_DEVICES=y
-CONFIG_RC_ATI_REMOTE=m
-CONFIG_IR_IMON=m
-CONFIG_IR_MCEUSB=m
-CONFIG_IR_REDRAT3=m
-CONFIG_IR_STREAMZAP=m
-CONFIG_IR_IGUANA=m
-CONFIG_IR_TTUSBIR=m
-# CONFIG_RC_LOOPBACK is not set
-CONFIG_IR_GPIO_CIR=m
-CONFIG_MEDIA_USB_SUPPORT=y
-
-#
-# Webcam devices
-#
-CONFIG_USB_VIDEO_CLASS=m
-CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
-CONFIG_USB_GSPCA=m
-CONFIG_USB_M5602=m
-CONFIG_USB_STV06XX=m
-CONFIG_USB_GL860=m
-CONFIG_USB_GSPCA_BENQ=m
-CONFIG_USB_GSPCA_CONEX=m
-CONFIG_USB_GSPCA_CPIA1=m
-CONFIG_USB_GSPCA_ETOMS=m
-CONFIG_USB_GSPCA_FINEPIX=m
-CONFIG_USB_GSPCA_JEILINJ=m
-CONFIG_USB_GSPCA_JL2005BCD=m
-# CONFIG_USB_GSPCA_KINECT is not set
-CONFIG_USB_GSPCA_KONICA=m
-CONFIG_USB_GSPCA_MARS=m
-CONFIG_USB_GSPCA_MR97310A=m
-CONFIG_USB_GSPCA_NW80X=m
-CONFIG_USB_GSPCA_OV519=m
-CONFIG_USB_GSPCA_OV534=m
-CONFIG_USB_GSPCA_OV534_9=m
-CONFIG_USB_GSPCA_PAC207=m
-CONFIG_USB_GSPCA_PAC7302=m
-CONFIG_USB_GSPCA_PAC7311=m
-CONFIG_USB_GSPCA_SE401=m
-CONFIG_USB_GSPCA_SN9C2028=m
-CONFIG_USB_GSPCA_SN9C20X=m
-CONFIG_USB_GSPCA_SONIXB=m
-CONFIG_USB_GSPCA_SONIXJ=m
-CONFIG_USB_GSPCA_SPCA500=m
-CONFIG_USB_GSPCA_SPCA501=m
-CONFIG_USB_GSPCA_SPCA505=m
-CONFIG_USB_GSPCA_SPCA506=m
-CONFIG_USB_GSPCA_SPCA508=m
-CONFIG_USB_GSPCA_SPCA561=m
-CONFIG_USB_GSPCA_SPCA1528=m
-CONFIG_USB_GSPCA_SQ905=m
-CONFIG_USB_GSPCA_SQ905C=m
-CONFIG_USB_GSPCA_SQ930X=m
-CONFIG_USB_GSPCA_STK014=m
-CONFIG_USB_GSPCA_STV0680=m
-CONFIG_USB_GSPCA_SUNPLUS=m
-CONFIG_USB_GSPCA_T613=m
-CONFIG_USB_GSPCA_TOPRO=m
-CONFIG_USB_GSPCA_TV8532=m
-CONFIG_USB_GSPCA_VC032X=m
-CONFIG_USB_GSPCA_VICAM=m
-CONFIG_USB_GSPCA_XIRLINK_CIT=m
-CONFIG_USB_GSPCA_ZC3XX=m
-CONFIG_USB_PWC=m
-# CONFIG_USB_PWC_DEBUG is not set
-CONFIG_USB_PWC_INPUT_EVDEV=y
-# CONFIG_VIDEO_CPIA2 is not set
-CONFIG_USB_ZR364XX=m
-CONFIG_USB_STKWEBCAM=m
-CONFIG_USB_S2255=m
-# CONFIG_USB_SN9C102 is not set
-
-#
-# Analog TV USB devices
-#
-CONFIG_VIDEO_PVRUSB2=m
-CONFIG_VIDEO_PVRUSB2_SYSFS=y
-CONFIG_VIDEO_PVRUSB2_DVB=y
-# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
-CONFIG_VIDEO_HDPVR=m
-CONFIG_VIDEO_TLG2300=m
-CONFIG_VIDEO_USBVISION=m
-CONFIG_VIDEO_STK1160=m
-CONFIG_VIDEO_STK1160_AC97=y
-
-#
-# Analog/digital TV USB devices
-#
-CONFIG_VIDEO_AU0828=m
-CONFIG_VIDEO_AU0828_V4L2=y
-CONFIG_VIDEO_CX231XX=m
-CONFIG_VIDEO_CX231XX_RC=y
-CONFIG_VIDEO_CX231XX_ALSA=m
-CONFIG_VIDEO_CX231XX_DVB=m
-CONFIG_VIDEO_TM6000=m
-CONFIG_VIDEO_TM6000_ALSA=m
-CONFIG_VIDEO_TM6000_DVB=m
-
-#
-# Digital TV USB devices
-#
-CONFIG_DVB_USB=m
-# CONFIG_DVB_USB_DEBUG is not set
-CONFIG_DVB_USB_A800=m
-CONFIG_DVB_USB_DIBUSB_MB=m
-# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
-CONFIG_DVB_USB_DIBUSB_MC=m
-CONFIG_DVB_USB_DIB0700=m
-CONFIG_DVB_USB_UMT_010=m
-CONFIG_DVB_USB_CXUSB=m
-CONFIG_DVB_USB_M920X=m
-CONFIG_DVB_USB_DIGITV=m
-CONFIG_DVB_USB_VP7045=m
-CONFIG_DVB_USB_VP702X=m
-CONFIG_DVB_USB_GP8PSK=m
-CONFIG_DVB_USB_NOVA_T_USB2=m
-CONFIG_DVB_USB_TTUSB2=m
-CONFIG_DVB_USB_DTT200U=m
-CONFIG_DVB_USB_OPERA1=m
-CONFIG_DVB_USB_AF9005=m
-CONFIG_DVB_USB_AF9005_REMOTE=m
-CONFIG_DVB_USB_PCTV452E=m
-CONFIG_DVB_USB_DW2102=m
-CONFIG_DVB_USB_CINERGY_T2=m
-CONFIG_DVB_USB_DTV5100=m
-CONFIG_DVB_USB_FRIIO=m
-CONFIG_DVB_USB_AZ6027=m
-CONFIG_DVB_USB_TECHNISAT_USB2=m
-CONFIG_DVB_USB_V2=m
-CONFIG_DVB_USB_AF9015=m
-CONFIG_DVB_USB_AF9035=m
-CONFIG_DVB_USB_ANYSEE=m
-CONFIG_DVB_USB_AU6610=m
-CONFIG_DVB_USB_AZ6007=m
-CONFIG_DVB_USB_CE6230=m
-CONFIG_DVB_USB_EC168=m
-CONFIG_DVB_USB_GL861=m
-CONFIG_DVB_USB_IT913X=m
-CONFIG_DVB_USB_LME2510=m
-CONFIG_DVB_USB_MXL111SF=m
-CONFIG_DVB_USB_RTL28XXU=m
-CONFIG_DVB_TTUSB_BUDGET=m
-CONFIG_DVB_TTUSB_DEC=m
-CONFIG_SMS_USB_DRV=m
-CONFIG_DVB_B2C2_FLEXCOP_USB=m
-# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
-
-#
-# Webcam, TV (analog/digital) USB devices
-#
-CONFIG_VIDEO_EM28XX=m
-CONFIG_VIDEO_EM28XX_ALSA=m
-CONFIG_VIDEO_EM28XX_DVB=m
-CONFIG_VIDEO_EM28XX_RC=m
-CONFIG_MEDIA_PCI_SUPPORT=y
-
-#
-# Media capture support
-#
-
-#
-# Media capture/analog TV support
-#
-CONFIG_VIDEO_IVTV=m
-# CONFIG_VIDEO_IVTV_ALSA is not set
-CONFIG_VIDEO_FB_IVTV=m
-# CONFIG_VIDEO_HEXIUM_GEMINI is not set
-# CONFIG_VIDEO_HEXIUM_ORION is not set
-# CONFIG_VIDEO_MXB is not set
-
-#
-# Media capture/analog/hybrid TV support
-#
-CONFIG_VIDEO_CX18=m
-CONFIG_VIDEO_CX18_ALSA=m
-CONFIG_VIDEO_CX23885=m
-CONFIG_MEDIA_ALTERA_CI=m
-# CONFIG_VIDEO_CX25821 is not set
-CONFIG_VIDEO_CX88=m
-CONFIG_VIDEO_CX88_ALSA=m
-CONFIG_VIDEO_CX88_BLACKBIRD=m
-CONFIG_VIDEO_CX88_DVB=m
-CONFIG_VIDEO_CX88_VP3054=m
-CONFIG_VIDEO_CX88_MPEG=m
-CONFIG_VIDEO_BT848=m
-CONFIG_DVB_BT8XX=m
-CONFIG_VIDEO_SAA7134=m
-CONFIG_VIDEO_SAA7134_ALSA=m
-CONFIG_VIDEO_SAA7134_RC=y
-CONFIG_VIDEO_SAA7134_DVB=m
-CONFIG_VIDEO_SAA7164=m
-
-#
-# Media digital TV PCI Adapters
-#
-CONFIG_DVB_AV7110=m
-CONFIG_DVB_AV7110_OSD=y
-CONFIG_DVB_BUDGET_CORE=m
-CONFIG_DVB_BUDGET=m
-CONFIG_DVB_BUDGET_CI=m
-CONFIG_DVB_BUDGET_AV=m
-CONFIG_DVB_BUDGET_PATCH=m
-CONFIG_DVB_B2C2_FLEXCOP_PCI=m
-# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
-CONFIG_DVB_PLUTO2=m
-CONFIG_DVB_DM1105=m
-CONFIG_DVB_PT1=m
-CONFIG_MANTIS_CORE=m
-CONFIG_DVB_MANTIS=m
-CONFIG_DVB_HOPPER=m
-CONFIG_DVB_NGENE=m
-CONFIG_DVB_DDBRIDGE=m
-# CONFIG_V4L_PLATFORM_DRIVERS is not set
-# CONFIG_V4L_MEM2MEM_DRIVERS is not set
-# CONFIG_V4L_TEST_DRIVERS is not set
-
-#
-# Supported MMC/SDIO adapters
-#
-CONFIG_SMS_SDIO_DRV=m
-# CONFIG_MEDIA_PARPORT_SUPPORT is not set
-# CONFIG_RADIO_ADAPTERS is not set
-
-#
-# Supported FireWire (IEEE 1394) Adapters
-#
-CONFIG_DVB_FIREDTV=m
-CONFIG_DVB_FIREDTV_INPUT=y
-CONFIG_MEDIA_COMMON_OPTIONS=y
-
-#
-# common driver options
-#
-CONFIG_VIDEO_CX2341X=m
-CONFIG_VIDEO_BTCX=m
-CONFIG_VIDEO_TVEEPROM=m
-CONFIG_CYPRESS_FIRMWARE=m
-CONFIG_DVB_B2C2_FLEXCOP=m
-CONFIG_VIDEO_SAA7146=m
-CONFIG_VIDEO_SAA7146_VV=m
-CONFIG_SMS_SIANO_MDTV=m
-CONFIG_SMS_SIANO_RC=y
-# CONFIG_SMS_SIANO_DEBUGFS is not set
-
-#
-# Media ancillary drivers (tuners, sensors, i2c, frontends)
-#
-CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
-CONFIG_MEDIA_ATTACH=y
-CONFIG_VIDEO_IR_I2C=m
-
-#
-# Audio decoders, processors and mixers
-#
-CONFIG_VIDEO_TVAUDIO=m
-CONFIG_VIDEO_TDA7432=m
-CONFIG_VIDEO_MSP3400=m
-CONFIG_VIDEO_CS5345=m
-CONFIG_VIDEO_CS53L32A=m
-CONFIG_VIDEO_WM8775=m
-CONFIG_VIDEO_WM8739=m
-CONFIG_VIDEO_VP27SMPX=m
-
-#
-# RDS decoders
-#
-CONFIG_VIDEO_SAA6588=m
-
-#
-# Video decoders
-#
-CONFIG_VIDEO_SAA711X=m
-CONFIG_VIDEO_TVP5150=m
-
-#
-# Video and audio decoders
-#
-CONFIG_VIDEO_SAA717X=m
-CONFIG_VIDEO_CX25840=m
-
-#
-# Video encoders
-#
-CONFIG_VIDEO_SAA7127=m
-
-#
-# Camera sensor devices
-#
-CONFIG_VIDEO_MT9V011=m
-
-#
-# Flash devices
-#
-
-#
-# Video improvement chips
-#
-CONFIG_VIDEO_UPD64031A=m
-CONFIG_VIDEO_UPD64083=m
-
-#
-# Miscelaneous helper chips
-#
-CONFIG_VIDEO_M52790=m
-
-#
-# Sensors used on soc_camera driver
-#
-CONFIG_MEDIA_TUNER=m
-CONFIG_MEDIA_TUNER_SIMPLE=m
-CONFIG_MEDIA_TUNER_TDA8290=m
-CONFIG_MEDIA_TUNER_TDA827X=m
-CONFIG_MEDIA_TUNER_TDA18271=m
-CONFIG_MEDIA_TUNER_TDA9887=m
-CONFIG_MEDIA_TUNER_TEA5761=m
-CONFIG_MEDIA_TUNER_TEA5767=m
-CONFIG_MEDIA_TUNER_MT20XX=m
-CONFIG_MEDIA_TUNER_MT2060=m
-CONFIG_MEDIA_TUNER_MT2063=m
-CONFIG_MEDIA_TUNER_MT2266=m
-CONFIG_MEDIA_TUNER_MT2131=m
-CONFIG_MEDIA_TUNER_QT1010=m
-CONFIG_MEDIA_TUNER_XC2028=m
-CONFIG_MEDIA_TUNER_XC5000=m
-CONFIG_MEDIA_TUNER_XC4000=m
-CONFIG_MEDIA_TUNER_MXL5005S=m
-CONFIG_MEDIA_TUNER_MXL5007T=m
-CONFIG_MEDIA_TUNER_MC44S803=m
-CONFIG_MEDIA_TUNER_MAX2165=m
-CONFIG_MEDIA_TUNER_TDA18218=m
-CONFIG_MEDIA_TUNER_FC0011=m
-CONFIG_MEDIA_TUNER_FC0012=m
-CONFIG_MEDIA_TUNER_FC0013=m
-CONFIG_MEDIA_TUNER_TDA18212=m
-CONFIG_MEDIA_TUNER_E4000=m
-CONFIG_MEDIA_TUNER_FC2580=m
-CONFIG_MEDIA_TUNER_TUA9001=m
-CONFIG_MEDIA_TUNER_IT913X=m
-CONFIG_MEDIA_TUNER_R820T=m
-
-#
-# Multistandard (satellite) frontends
-#
-CONFIG_DVB_STB0899=m
-CONFIG_DVB_STB6100=m
-CONFIG_DVB_STV090x=m
-CONFIG_DVB_STV6110x=m
-
-#
-# Multistandard (cable + terrestrial) frontends
-#
-CONFIG_DVB_DRXK=m
-CONFIG_DVB_TDA18271C2DD=m
-
-#
-# DVB-S (satellite) frontends
-#
-CONFIG_DVB_CX24110=m
-CONFIG_DVB_CX24123=m
-CONFIG_DVB_MT312=m
-CONFIG_DVB_ZL10036=m
-CONFIG_DVB_ZL10039=m
-CONFIG_DVB_S5H1420=m
-CONFIG_DVB_STV0288=m
-CONFIG_DVB_STB6000=m
-CONFIG_DVB_STV0299=m
-CONFIG_DVB_STV6110=m
-CONFIG_DVB_STV0900=m
-CONFIG_DVB_TDA8083=m
-CONFIG_DVB_TDA10086=m
-CONFIG_DVB_TDA8261=m
-CONFIG_DVB_VES1X93=m
-CONFIG_DVB_TUNER_ITD1000=m
-CONFIG_DVB_TUNER_CX24113=m
-CONFIG_DVB_TDA826X=m
-CONFIG_DVB_TUA6100=m
-CONFIG_DVB_CX24116=m
-CONFIG_DVB_SI21XX=m
-CONFIG_DVB_TS2020=m
-CONFIG_DVB_DS3000=m
-CONFIG_DVB_MB86A16=m
-CONFIG_DVB_TDA10071=m
-
-#
-# DVB-T (terrestrial) frontends
-#
-CONFIG_DVB_SP8870=m
-CONFIG_DVB_SP887X=m
-CONFIG_DVB_CX22700=m
-CONFIG_DVB_CX22702=m
-CONFIG_DVB_DRXD=m
-CONFIG_DVB_L64781=m
-CONFIG_DVB_TDA1004X=m
-CONFIG_DVB_NXT6000=m
-CONFIG_DVB_MT352=m
-CONFIG_DVB_ZL10353=m
-CONFIG_DVB_DIB3000MB=m
-CONFIG_DVB_DIB3000MC=m
-CONFIG_DVB_DIB7000M=m
-CONFIG_DVB_DIB7000P=m
-CONFIG_DVB_TDA10048=m
-CONFIG_DVB_AF9013=m
-CONFIG_DVB_EC100=m
-CONFIG_DVB_STV0367=m
-CONFIG_DVB_CXD2820R=m
-CONFIG_DVB_RTL2830=m
-CONFIG_DVB_RTL2832=m
-
-#
-# DVB-C (cable) frontends
-#
-CONFIG_DVB_VES1820=m
-CONFIG_DVB_TDA10021=m
-CONFIG_DVB_TDA10023=m
-CONFIG_DVB_STV0297=m
-
-#
-# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
-#
-CONFIG_DVB_NXT200X=m
-CONFIG_DVB_OR51211=m
-CONFIG_DVB_OR51132=m
-CONFIG_DVB_BCM3510=m
-CONFIG_DVB_LGDT330X=m
-CONFIG_DVB_LGDT3305=m
-CONFIG_DVB_LG2160=m
-CONFIG_DVB_S5H1409=m
-CONFIG_DVB_AU8522=m
-CONFIG_DVB_AU8522_DTV=m
-CONFIG_DVB_AU8522_V4L=m
-CONFIG_DVB_S5H1411=m
-
-#
-# ISDB-T (terrestrial) frontends
-#
-CONFIG_DVB_S921=m
-CONFIG_DVB_DIB8000=m
-CONFIG_DVB_MB86A20S=m
-
-#
-# Digital terrestrial only tuners/PLL
-#
-CONFIG_DVB_PLL=m
-CONFIG_DVB_TUNER_DIB0070=m
-CONFIG_DVB_TUNER_DIB0090=m
-
-#
-# SEC control devices for DVB-S
-#
-CONFIG_DVB_LNBP21=m
-CONFIG_DVB_LNBP22=m
-CONFIG_DVB_ISL6405=m
-CONFIG_DVB_ISL6421=m
-CONFIG_DVB_ISL6423=m
-CONFIG_DVB_A8293=m
-CONFIG_DVB_LGS8GXX=m
-CONFIG_DVB_ATBM8830=m
-CONFIG_DVB_TDA665x=m
-CONFIG_DVB_IX2505V=m
-CONFIG_DVB_IT913X_FE=m
-CONFIG_DVB_M88RS2000=m
-CONFIG_DVB_AF9033=m
-
-#
-# Tools to develop new frontends
-#
-# CONFIG_DVB_DUMMY_FE is not set
-
-#
-# Graphics support
-#
-CONFIG_AGP=y
-CONFIG_VGA_ARB=y
-CONFIG_VGA_ARB_MAX_GPUS=64
-CONFIG_DRM=m
-CONFIG_DRM_DP_AUX_CHARDEV=y
-# CONFIG_DRM_DEBUG_SELFTEST is not set
-CONFIG_DRM_KMS_HELPER=m
-CONFIG_DRM_KMS_FB_HELPER=y
-CONFIG_DRM_FBDEV_EMULATION=y
-CONFIG_DRM_FBDEV_OVERALLOC=100
-CONFIG_DRM_LOAD_EDID_FIRMWARE=y
-# CONFIG_DRM_DP_CEC is not set
-CONFIG_DRM_TTM=m
-CONFIG_DRM_VM=y
-CONFIG_DRM_SCHED=m
-
-#
-# I2C encoder or helper chips
-#
-CONFIG_DRM_I2C_CH7006=m
-CONFIG_DRM_I2C_SIL164=m
-# CONFIG_DRM_I2C_NXP_TDA998X is not set
-# CONFIG_DRM_I2C_NXP_TDA9950 is not set
-CONFIG_DRM_RADEON=m
-# CONFIG_DRM_RADEON_USERPTR is not set
-CONFIG_DRM_AMDGPU=m
-# CONFIG_DRM_AMDGPU_SI is not set
-# CONFIG_DRM_AMDGPU_CIK is not set
-# CONFIG_DRM_AMDGPU_USERPTR is not set
-# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
-
-#
-# ACP (Audio CoProcessor) Configuration
-#
-# CONFIG_DRM_AMD_ACP is not set
-
-#
-# Display Engine Configuration
-#
-CONFIG_DRM_AMD_DC=y
-# CONFIG_DRM_AMD_DC_DCN1_0 is not set
-# CONFIG_DRM_AMD_DC_DCN1_01 is not set
-# CONFIG_DEBUG_KERNEL_DC is not set
-
-#
-# AMD Library routines
-#
-CONFIG_CHASH=m
-# CONFIG_CHASH_STATS is not set
-# CONFIG_CHASH_SELFTEST is not set
-CONFIG_DRM_NOUVEAU=m
-CONFIG_NOUVEAU_DEBUG=5
-CONFIG_NOUVEAU_DEBUG_DEFAULT=3
-# CONFIG_NOUVEAU_DEBUG_MMU is not set
-CONFIG_DRM_NOUVEAU_BACKLIGHT=y
-CONFIG_DRM_VGEM=m
-# CONFIG_DRM_VKMS is not set
-CONFIG_DRM_UDL=m
-CONFIG_DRM_AST=m
-CONFIG_DRM_MGAG200=m
-CONFIG_DRM_CIRRUS_QEMU=m
-CONFIG_DRM_QXL=m
-CONFIG_DRM_BOCHS=m
-CONFIG_DRM_VIRTIO_GPU=m
-# CONFIG_DRM_LEGACY is not set
-CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
-# CONFIG_DRM_LIB_RANDOM is not set
-CONFIG_VGASTATE=m
-CONFIG_VIDEO_OUTPUT_CONTROL=m
-CONFIG_HDMI=y
-CONFIG_FB=y
-# CONFIG_FIRMWARE_EDID is not set
-# CONFIG_FB_DDC is not set
-# CONFIG_FB_BOOT_VESA_SUPPORT is not set
-CONFIG_FB_CFB_FILLRECT=y
-CONFIG_FB_CFB_COPYAREA=y
-CONFIG_FB_CFB_IMAGEBLIT=y
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-CONFIG_FB_DEFERRED_IO=y
-# CONFIG_FB_SVGALIB is not set
-CONFIG_FB_MACMODES=y
-CONFIG_FB_BACKLIGHT=y
-CONFIG_FB_MODE_HELPERS=y
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-CONFIG_FB_OF=y
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-CONFIG_FB_VGA16=m
-# CONFIG_FB_UVESA is not set
-# CONFIG_FB_S1D13XXX is not set
-CONFIG_FB_NVIDIA=m
-# CONFIG_FB_NVIDIA_I2C is not set
-# CONFIG_FB_NVIDIA_DEBUG is not set
-CONFIG_FB_NVIDIA_BACKLIGHT=y
-# CONFIG_FB_RIVA is not set
-# CONFIG_FB_I740 is not set
-CONFIG_FB_MATROX=y
-# CONFIG_FB_MATROX_MILLENIUM is not set
-# CONFIG_FB_MATROX_MYSTIQUE is not set
-CONFIG_FB_MATROX_G=y
-# CONFIG_FB_MATROX_I2C is not set
-CONFIG_FB_RADEON=m
-# CONFIG_FB_RADEON_I2C is not set
-CONFIG_FB_RADEON_BACKLIGHT=y
-# CONFIG_FB_RADEON_DEBUG is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_TMIO is not set
-# CONFIG_FB_SM501 is not set
-# CONFIG_FB_SMSCUFX is not set
-# CONFIG_FB_UDL is not set
-CONFIG_FB_IBM_GXT4500=y
-# CONFIG_FB_GOLDFISH is not set
-# CONFIG_FB_VIRTUAL is not set
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-# CONFIG_FB_AUO_K190X is not set
-# CONFIG_FB_SIMPLE is not set
-# CONFIG_EXYNOS_VIDEO is not set
-CONFIG_BACKLIGHT_LCD_SUPPORT=y
-CONFIG_LCD_CLASS_DEVICE=m
-CONFIG_LCD_PLATFORM=m
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-# CONFIG_BACKLIGHT_GENERIC is not set
-CONFIG_BACKLIGHT_PWM=m
-# CONFIG_BACKLIGHT_ADP8860 is not set
-# CONFIG_BACKLIGHT_ADP8870 is not set
-# CONFIG_BACKLIGHT_LM3630 is not set
-# CONFIG_BACKLIGHT_LM3639 is not set
-CONFIG_BACKLIGHT_LP855X=m
-CONFIG_LOGO=y
-# CONFIG_LOGO_LINUX_MONO is not set
-# CONFIG_LOGO_LINUX_VGA16 is not set
-CONFIG_LOGO_LINUX_CLUT224=y
-CONFIG_FB_SSD1307=m
-
-#
-# Console display driver support
-#
-CONFIG_VGA_CONSOLE=y
-CONFIG_VGACON_SOFT_SCROLLBACK=y
-CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-CONFIG_SOUND=m
-CONFIG_SOUND_OSS_CORE=y
-CONFIG_SOUND_OSS_CORE_PRECLAIM=y
-CONFIG_SND=m
-CONFIG_SND_TIMER=m
-CONFIG_SND_PCM=m
-CONFIG_SND_HWDEP=m
-CONFIG_SND_SEQ_DEVICE=m
-CONFIG_SND_RAWMIDI=m
-CONFIG_SND_JACK=y
-CONFIG_SND_JACK_INPUT_DEV=y
-CONFIG_SND_OSSEMUL=y
-# CONFIG_SND_MIXER_OSS is not set
-# CONFIG_SND_PCM_OSS is not set
-CONFIG_SND_PCM_TIMER=y
-CONFIG_SND_HRTIMER=m
-CONFIG_SND_DYNAMIC_MINORS=y
-CONFIG_SND_MAX_CARDS=32
-# CONFIG_SND_SUPPORT_OLD_API is not set
-CONFIG_SND_PROC_FS=y
-CONFIG_SND_VERBOSE_PROCFS=y
-# CONFIG_SND_VERBOSE_PRINTK is not set
-# CONFIG_SND_DEBUG is not set
-CONFIG_SND_VMASTER=y
-CONFIG_SND_SEQUENCER=m
-CONFIG_SND_SEQ_DUMMY=m
-CONFIG_SND_SEQUENCER_OSS=m
-CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
-CONFIG_SND_SEQ_MIDI_EVENT=m
-CONFIG_SND_SEQ_MIDI=m
-CONFIG_SND_SEQ_MIDI_EMUL=m
-CONFIG_SND_SEQ_VIRMIDI=m
-CONFIG_SND_MPU401_UART=m
-CONFIG_SND_OPL3_LIB=m
-CONFIG_SND_OPL3_LIB_SEQ=m
-# CONFIG_SND_OPL4_LIB_SEQ is not set
-CONFIG_SND_VX_LIB=m
-CONFIG_SND_AC97_CODEC=m
-CONFIG_SND_DRIVERS=y
-CONFIG_SND_DUMMY=m
-CONFIG_SND_ALOOP=m
-CONFIG_SND_VIRMIDI=m
-CONFIG_SND_MTPAV=m
-# CONFIG_SND_MTS64 is not set
-# CONFIG_SND_SERIAL_U16550 is not set
-CONFIG_SND_MPU401=m
-# CONFIG_SND_PORTMAN2X4 is not set
-CONFIG_SND_AC97_POWER_SAVE=y
-CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
-CONFIG_SND_TEA575X=m
-CONFIG_SND_PCI=y
-CONFIG_SND_AD1889=m
-# CONFIG_SND_ALS300 is not set
-# CONFIG_SND_ALS4000 is not set
-CONFIG_SND_ALI5451=m
-CONFIG_SND_ATIIXP=m
-CONFIG_SND_ATIIXP_MODEM=m
-CONFIG_SND_AU8810=m
-CONFIG_SND_AU8820=m
-CONFIG_SND_AU8830=m
-# CONFIG_SND_AW2 is not set
-# CONFIG_SND_AZT3328 is not set
-CONFIG_SND_BT87X=m
-# CONFIG_SND_BT87X_OVERCLOCK is not set
-CONFIG_SND_CA0106=m
-CONFIG_SND_CMIPCI=m
-CONFIG_SND_OXYGEN_LIB=m
-CONFIG_SND_OXYGEN=m
-# CONFIG_SND_CS4281 is not set
-CONFIG_SND_CS46XX=m
-CONFIG_SND_CS46XX_NEW_DSP=y
-CONFIG_SND_CTXFI=m
-CONFIG_SND_DARLA20=m
-CONFIG_SND_GINA20=m
-CONFIG_SND_LAYLA20=m
-CONFIG_SND_DARLA24=m
-CONFIG_SND_GINA24=m
-CONFIG_SND_LAYLA24=m
-CONFIG_SND_MONA=m
-CONFIG_SND_MIA=m
-CONFIG_SND_ECHO3G=m
-CONFIG_SND_INDIGO=m
-CONFIG_SND_INDIGOIO=m
-CONFIG_SND_INDIGODJ=m
-CONFIG_SND_INDIGOIOX=m
-CONFIG_SND_INDIGODJX=m
-CONFIG_SND_EMU10K1=m
-CONFIG_SND_EMU10K1_SEQ=m
-CONFIG_SND_EMU10K1X=m
-CONFIG_SND_ENS1370=m
-CONFIG_SND_ENS1371=m
-# CONFIG_SND_ES1938 is not set
-CONFIG_SND_ES1968=m
-CONFIG_SND_ES1968_INPUT=y
-CONFIG_SND_ES1968_RADIO=y
-# CONFIG_SND_FM801 is not set
-CONFIG_SND_HDSP=m
-CONFIG_SND_HDSPM=m
-CONFIG_SND_ICE1712=m
-CONFIG_SND_ICE1724=m
-CONFIG_SND_INTEL8X0=m
-CONFIG_SND_INTEL8X0M=m
-CONFIG_SND_KORG1212=m
-CONFIG_SND_LOLA=m
-CONFIG_SND_LX6464ES=m
-CONFIG_SND_MAESTRO3=m
-CONFIG_SND_MAESTRO3_INPUT=y
-CONFIG_SND_MIXART=m
-# CONFIG_SND_NM256 is not set
-CONFIG_SND_PCXHR=m
-# CONFIG_SND_RIPTIDE is not set
-CONFIG_SND_RME32=m
-CONFIG_SND_RME96=m
-CONFIG_SND_RME9652=m
-# CONFIG_SND_SONICVIBES is not set
-CONFIG_SND_TRIDENT=m
-CONFIG_SND_VIA82XX=m
-CONFIG_SND_VIA82XX_MODEM=m
-CONFIG_SND_VIRTUOSO=m
-CONFIG_SND_VX222=m
-# CONFIG_SND_YMFPCI is not set
-
-#
-# HD-Audio
-#
-# CONFIG_SND_HDA_INTEL is not set
-CONFIG_SND_HDA_PREALLOC_SIZE=512
-CONFIG_SND_PPC=y
-CONFIG_SND_USB=y
-CONFIG_SND_USB_AUDIO=m
-CONFIG_SND_USB_UA101=m
-CONFIG_SND_USB_USX2Y=m
-CONFIG_SND_USB_CAIAQ=m
-CONFIG_SND_USB_CAIAQ_INPUT=y
-CONFIG_SND_USB_6FIRE=m
-CONFIG_SND_USB_HIFACE=m
-CONFIG_SND_BCD2000=m
-CONFIG_SND_USB_LINE6=m
-CONFIG_SND_USB_POD=m
-CONFIG_SND_USB_PODHD=m
-CONFIG_SND_USB_TONEPORT=m
-CONFIG_SND_USB_VARIAX=m
-CONFIG_SND_FIREWIRE=y
-CONFIG_SND_FIREWIRE_LIB=m
-CONFIG_SND_FIREWIRE_SPEAKERS=m
-CONFIG_SND_ISIGHT=m
-CONFIG_SND_SCS1X=m
-# CONFIG_SND_SOC is not set
-CONFIG_SND_SYNTH_EMUX=m
-# CONFIG_SOUND_PRIME is not set
-CONFIG_AC97_BUS=m
-
-#
-# HID support
-#
-CONFIG_HID=y
-CONFIG_HID_BATTERY_STRENGTH=y
-CONFIG_HIDRAW=y
-CONFIG_UHID=m
-CONFIG_HID_GENERIC=y
-
-#
-# Special HID drivers
-#
-CONFIG_HID_A4TECH=y
-CONFIG_HID_ACRUX=m
-# CONFIG_HID_ACRUX_FF is not set
-CONFIG_HID_APPLE=y
-CONFIG_HID_APPLEIR=m
-CONFIG_HID_AUREAL=m
-CONFIG_HID_BELKIN=y
-CONFIG_HID_CHERRY=y
-CONFIG_HID_CHICONY=y
-CONFIG_HID_PRODIKEYS=m
-CONFIG_HID_CYPRESS=y
-CONFIG_HID_DRAGONRISE=m
-# CONFIG_DRAGONRISE_FF is not set
-# CONFIG_HID_EMS_FF is not set
-CONFIG_HID_ELECOM=m
-CONFIG_HID_EZKEY=y
-CONFIG_HID_HOLTEK=m
-# CONFIG_HOLTEK_FF is not set
-CONFIG_HID_KEYTOUCH=m
-CONFIG_HID_KYE=m
-CONFIG_HID_UCLOGIC=m
-CONFIG_HID_WALTOP=m
-CONFIG_HID_GYRATION=m
-CONFIG_HID_ICADE=m
-CONFIG_HID_TWINHAN=m
-CONFIG_HID_KENSINGTON=y
-CONFIG_HID_LCPOWER=m
-CONFIG_HID_LENOVO_TPKBD=m
-CONFIG_HID_LOGITECH=y
-CONFIG_HID_LOGITECH_DJ=m
-# CONFIG_LOGITECH_FF is not set
-# CONFIG_LOGIRUMBLEPAD2_FF is not set
-# CONFIG_LOGIG940_FF is not set
-# CONFIG_LOGIWHEELS_FF is not set
-CONFIG_HID_MAGICMOUSE=y
-CONFIG_HID_MICROSOFT=y
-CONFIG_HID_MONTEREY=y
-CONFIG_HID_MULTITOUCH=m
-CONFIG_HID_NTRIG=y
-CONFIG_HID_ORTEK=m
-CONFIG_HID_PANTHERLORD=m
-# CONFIG_PANTHERLORD_FF is not set
-CONFIG_HID_PETALYNX=m
-CONFIG_HID_PICOLCD=m
-CONFIG_HID_PICOLCD_FB=y
-CONFIG_HID_PICOLCD_BACKLIGHT=y
-CONFIG_HID_PICOLCD_LCD=y
-CONFIG_HID_PICOLCD_LEDS=y
-CONFIG_HID_PICOLCD_CIR=y
-CONFIG_HID_PLANTRONICS=y
-CONFIG_HID_PRIMAX=m
-CONFIG_HID_PS3REMOTE=m
-CONFIG_HID_ROCCAT=m
-CONFIG_HID_SAITEK=m
-CONFIG_HID_SAMSUNG=m
-CONFIG_HID_SONY=m
-CONFIG_HID_SPEEDLINK=m
-CONFIG_HID_STEELSERIES=m
-CONFIG_HID_SUNPLUS=m
-CONFIG_HID_RMI=m
-CONFIG_HID_GREENASIA=m
-# CONFIG_GREENASIA_FF is not set
-CONFIG_HID_SMARTJOYPLUS=m
-# CONFIG_SMARTJOYPLUS_FF is not set
-CONFIG_HID_TIVO=m
-CONFIG_HID_TOPSEED=m
-CONFIG_HID_THINGM=m
-CONFIG_HID_THRUSTMASTER=m
-# CONFIG_THRUSTMASTER_FF is not set
-CONFIG_HID_WACOM=m
-CONFIG_HID_WIIMOTE=m
-CONFIG_HID_WIIMOTE_EXT=y
-CONFIG_HID_ZEROPLUS=m
-# CONFIG_ZEROPLUS_FF is not set
-CONFIG_HID_ZYDACRON=m
-# CONFIG_HID_SENSOR_HUB is not set
-CONFIG_HID_ALPS=m
-
-#
-# USB HID support
-#
-CONFIG_USB_HID=y
-CONFIG_HID_PID=y
-CONFIG_USB_HIDDEV=y
-
-#
-# I2C HID support
-#
-CONFIG_I2C_HID=m
-CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
-CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-CONFIG_USB_SUPPORT=y
-CONFIG_USB_COMMON=y
-CONFIG_USB_ARCH_HAS_HCD=y
-CONFIG_USB=y
-CONFIG_USB_PCI=y
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-
-#
-# Miscellaneous USB options
-#
-CONFIG_USB_DEFAULT_PERSIST=y
-# CONFIG_USB_DYNAMIC_MINORS is not set
-# CONFIG_USB_OTG is not set
-# CONFIG_USB_OTG_WHITELIST is not set
-# CONFIG_USB_OTG_FSM is not set
-CONFIG_USB_LEDS_TRIGGER_USBPORT=m
-CONFIG_USB_MON=y
-CONFIG_USB_WUSB=m
-CONFIG_USB_WUSB_CBAF=m
-# CONFIG_USB_WUSB_CBAF_DEBUG is not set
-
-#
-# USB Host Controller Drivers
-#
-# CONFIG_USB_C67X00_HCD is not set
-CONFIG_USB_XHCI_HCD=y
-# CONFIG_USB_XHCI_DBGCAP is not set
-CONFIG_USB_XHCI_PCI=y
-# CONFIG_USB_XHCI_PLATFORM is not set
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_ROOT_HUB_TT=y
-CONFIG_USB_EHCI_TT_NEWSCHED=y
-CONFIG_USB_EHCI_PCI=y
-CONFIG_USB_EHCI_HCD_PPC_OF=y
-# CONFIG_USB_EHCI_HCD_PLATFORM is not set
-# CONFIG_USB_OXU210HP_HCD is not set
-# CONFIG_USB_ISP116X_HCD is not set
-# CONFIG_USB_ISP1760_HCD is not set
-# CONFIG_USB_ISP1362_HCD is not set
-# CONFIG_USB_FOTG210_HCD is not set
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
-CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
-CONFIG_USB_OHCI_HCD_PPC_OF=y
-CONFIG_USB_OHCI_HCD_PCI=y
-# CONFIG_USB_OHCI_HCD_PLATFORM is not set
-CONFIG_USB_UHCI_HCD=y
-# CONFIG_USB_U132_HCD is not set
-# CONFIG_USB_SL811_HCD is not set
-# CONFIG_USB_R8A66597_HCD is not set
-# CONFIG_USB_WHCI_HCD is not set
-CONFIG_USB_HWA_HCD=m
-# CONFIG_USB_HCD_BCMA is not set
-# CONFIG_USB_HCD_SSB is not set
-# CONFIG_USB_HCD_TEST_MODE is not set
-
-#
-# USB Device Class drivers
-#
-CONFIG_USB_ACM=m
-CONFIG_USB_PRINTER=m
-CONFIG_USB_WDM=m
-CONFIG_USB_TMC=m
-
-#
-# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
-#
-
-#
-# also be needed; see USB_STORAGE Help for more info
-#
-CONFIG_USB_STORAGE=m
-# CONFIG_USB_STORAGE_DEBUG is not set
-CONFIG_USB_STORAGE_REALTEK=m
-CONFIG_REALTEK_AUTOPM=y
-CONFIG_USB_STORAGE_DATAFAB=m
-CONFIG_USB_STORAGE_FREECOM=m
-# CONFIG_USB_STORAGE_ISD200 is not set
-CONFIG_USB_STORAGE_USBAT=m
-CONFIG_USB_STORAGE_SDDR09=m
-CONFIG_USB_STORAGE_SDDR55=m
-CONFIG_USB_STORAGE_JUMPSHOT=m
-CONFIG_USB_STORAGE_ALAUDA=m
-CONFIG_USB_STORAGE_ONETOUCH=m
-CONFIG_USB_STORAGE_KARMA=m
-CONFIG_USB_STORAGE_CYPRESS_ATACB=m
-CONFIG_USB_STORAGE_ENE_UB6250=m
-CONFIG_USB_UAS=m
-
-#
-# USB Imaging devices
-#
-CONFIG_USB_MDC800=m
-CONFIG_USB_MICROTEK=m
-CONFIG_USBIP_CORE=m
-# CONFIG_USBIP_VHCI_HCD is not set
-# CONFIG_USBIP_HOST is not set
-# CONFIG_USBIP_DEBUG is not set
-# CONFIG_USB_DWC3 is not set
-# CONFIG_USB_CHIPIDEA is not set
-
-#
-# USB port drivers
-#
-CONFIG_USB_USS720=m
-CONFIG_USB_SERIAL=y
-CONFIG_USB_SERIAL_CONSOLE=y
-CONFIG_USB_SERIAL_GENERIC=y
-# CONFIG_USB_SERIAL_SIMPLE is not set
-CONFIG_USB_SERIAL_AIRCABLE=m
-CONFIG_USB_SERIAL_ARK3116=m
-CONFIG_USB_SERIAL_BELKIN=m
-CONFIG_USB_SERIAL_CH341=m
-CONFIG_USB_SERIAL_WHITEHEAT=m
-CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
-CONFIG_USB_SERIAL_CP210X=m
-CONFIG_USB_SERIAL_CYPRESS_M8=m
-CONFIG_USB_SERIAL_EMPEG=m
-CONFIG_USB_SERIAL_FTDI_SIO=m
-CONFIG_USB_SERIAL_VISOR=m
-CONFIG_USB_SERIAL_IPAQ=m
-CONFIG_USB_SERIAL_IR=m
-CONFIG_USB_SERIAL_EDGEPORT=m
-CONFIG_USB_SERIAL_EDGEPORT_TI=m
-# CONFIG_USB_SERIAL_F81232 is not set
-CONFIG_USB_SERIAL_GARMIN=m
-CONFIG_USB_SERIAL_IPW=m
-CONFIG_USB_SERIAL_IUU=m
-CONFIG_USB_SERIAL_KEYSPAN_PDA=m
-CONFIG_USB_SERIAL_KEYSPAN=m
-CONFIG_USB_SERIAL_KLSI=m
-CONFIG_USB_SERIAL_KOBIL_SCT=m
-CONFIG_USB_SERIAL_MCT_U232=m
-# CONFIG_USB_SERIAL_METRO is not set
-CONFIG_USB_SERIAL_MOS7720=m
-CONFIG_USB_SERIAL_MOS7715_PARPORT=y
-CONFIG_USB_SERIAL_MOS7840=m
-# CONFIG_USB_SERIAL_MXUPORT is not set
-CONFIG_USB_SERIAL_NAVMAN=m
-CONFIG_USB_SERIAL_PL2303=m
-CONFIG_USB_SERIAL_OTI6858=m
-CONFIG_USB_SERIAL_QCAUX=m
-CONFIG_USB_SERIAL_QUALCOMM=m
-CONFIG_USB_SERIAL_SPCP8X5=m
-CONFIG_USB_SERIAL_SAFE=m
-CONFIG_USB_SERIAL_SAFE_PADDED=y
-CONFIG_USB_SERIAL_SIERRAWIRELESS=m
-CONFIG_USB_SERIAL_SYMBOL=m
-CONFIG_USB_SERIAL_TI=m
-CONFIG_USB_SERIAL_CYBERJACK=m
-CONFIG_USB_SERIAL_XIRCOM=m
-CONFIG_USB_SERIAL_WWAN=m
-CONFIG_USB_SERIAL_OPTION=m
-CONFIG_USB_SERIAL_OMNINET=m
-CONFIG_USB_SERIAL_OPTICON=m
-CONFIG_USB_SERIAL_XSENS_MT=m
-# CONFIG_USB_SERIAL_WISHBONE is not set
-CONFIG_USB_SERIAL_SSU100=m
-CONFIG_USB_SERIAL_QT2=m
-# CONFIG_USB_SERIAL_UPD78F0730 is not set
-CONFIG_USB_SERIAL_DEBUG=m
-
-#
-# USB Miscellaneous drivers
-#
-CONFIG_USB_EMI62=m
-CONFIG_USB_EMI26=m
-CONFIG_USB_ADUTUX=m
-CONFIG_USB_SEVSEG=m
-# CONFIG_USB_RIO500 is not set
-CONFIG_USB_LEGOTOWER=m
-CONFIG_USB_LCD=m
-# CONFIG_USB_CYPRESS_CY7C63 is not set
-# CONFIG_USB_CYTHERM is not set
-CONFIG_USB_IDMOUSE=m
-CONFIG_USB_FTDI_ELAN=m
-CONFIG_USB_APPLEDISPLAY=m
-CONFIG_USB_SISUSBVGA=m
-CONFIG_USB_SISUSBVGA_CON=y
-CONFIG_USB_LD=m
-# CONFIG_USB_TRANCEVIBRATOR is not set
-CONFIG_USB_IOWARRIOR=m
-# CONFIG_USB_TEST is not set
-# CONFIG_USB_EHSET_TEST_FIXTURE is not set
-CONFIG_USB_ISIGHTFW=m
-# CONFIG_USB_YUREX is not set
-CONFIG_USB_EZUSB_FX2=m
-CONFIG_USB_HSIC_USB3503=m
-# CONFIG_USB_HSIC_USB4604 is not set
-# CONFIG_USB_LINK_LAYER_TEST is not set
-# CONFIG_USB_CHAOSKEY is not set
-CONFIG_USB_ATM=m
-CONFIG_USB_SPEEDTOUCH=m
-CONFIG_USB_CXACRU=m
-CONFIG_USB_UEAGLEATM=m
-CONFIG_USB_XUSBATM=m
-# CONFIG_USB_PHY is not set
-# CONFIG_USB_GADGET is not set
-CONFIG_TYPEC=y
-# CONFIG_TYPEC_TCPM is not set
-CONFIG_TYPEC_UCSI=y
-# CONFIG_TYPEC_TPS6598X is not set
-
-#
-# USB Type-C Multiplexer/DeMultiplexer Switch support
-#
-# CONFIG_TYPEC_MUX_PI3USB30532 is not set
-
-#
-# USB Type-C Alternate Mode drivers
-#
-CONFIG_TYPEC_DP_ALTMODE=y
-# CONFIG_USB_LED_TRIG is not set
-# CONFIG_USB_ULPI_BUS is not set
-CONFIG_UWB=m
-CONFIG_UWB_HWA=m
-CONFIG_UWB_WHCI=m
-CONFIG_UWB_I1480U=m
-CONFIG_MMC=m
-CONFIG_MMC_BLOCK=m
-CONFIG_MMC_BLOCK_MINORS=8
-CONFIG_SDIO_UART=m
-# CONFIG_MMC_TEST is not set
-
-#
-# MMC/SD/SDIO Host Controller Drivers
-#
-# CONFIG_MMC_DEBUG is not set
-CONFIG_MMC_SDHCI=m
-CONFIG_MMC_SDHCI_PCI=m
-CONFIG_MMC_RICOH_MMC=y
-CONFIG_MMC_SDHCI_PLTFM=m
-# CONFIG_MMC_SDHCI_OF_ESDHC is not set
-# CONFIG_MMC_SDHCI_OF_HLWD is not set
-# CONFIG_MMC_SDHCI_CADENCE is not set
-# CONFIG_MMC_SDHCI_F_SDH30 is not set
-# CONFIG_MMC_WBSD is not set
-CONFIG_MMC_TIFM_SD=m
-CONFIG_MMC_CB710=m
-CONFIG_MMC_VIA_SDMMC=m
-CONFIG_MMC_VUB300=m
-CONFIG_MMC_USHC=m
-# CONFIG_MMC_USDHI6ROL0 is not set
-CONFIG_MMC_REALTEK_PCI=m
-CONFIG_MMC_REALTEK_USB=m
-CONFIG_MMC_CQHCI=m
-# CONFIG_MMC_TOSHIBA_PCI is not set
-# CONFIG_MMC_MTK is not set
-CONFIG_MEMSTICK=m
-# CONFIG_MEMSTICK_DEBUG is not set
-
-#
-# MemoryStick drivers
-#
-# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
-CONFIG_MSPRO_BLOCK=m
-
-#
-# MemoryStick Host Controller Drivers
-#
-CONFIG_MEMSTICK_TIFM_MS=m
-CONFIG_MEMSTICK_JMICRON_38X=m
-CONFIG_MEMSTICK_R592=m
-CONFIG_MEMSTICK_REALTEK_PCI=m
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-
-#
-# LED drivers
-#
-CONFIG_LEDS_LM3530=m
-# CONFIG_LEDS_LM3642 is not set
-# CONFIG_LEDS_PCA9532 is not set
-# CONFIG_LEDS_GPIO is not set
-CONFIG_LEDS_LP3944=m
-CONFIG_LEDS_LP55XX_COMMON=m
-CONFIG_LEDS_LP5521=m
-CONFIG_LEDS_LP5523=m
-CONFIG_LEDS_LP5562=m
-# CONFIG_LEDS_PCA955X is not set
-# CONFIG_LEDS_PCA9633 is not set
-# CONFIG_LEDS_PWM is not set
-# CONFIG_LEDS_BD2802 is not set
-CONFIG_LEDS_LT3593=m
-# CONFIG_LEDS_TCA6507 is not set
-# CONFIG_LEDS_LM355x is not set
-# CONFIG_LEDS_OT200 is not set
-CONFIG_LEDS_BLINKM=m
-CONFIG_LEDS_POWERNV=m
-
-#
-# LED Triggers
-#
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_TIMER=m
-CONFIG_LEDS_TRIGGER_ONESHOT=m
-CONFIG_LEDS_TRIGGER_HEARTBEAT=m
-CONFIG_LEDS_TRIGGER_BACKLIGHT=m
-# CONFIG_LEDS_TRIGGER_CPU is not set
-CONFIG_LEDS_TRIGGER_GPIO=m
-CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
-
-#
-# iptables trigger is under Netfilter config (LED target)
-#
-CONFIG_LEDS_TRIGGER_TRANSIENT=m
-CONFIG_LEDS_TRIGGER_CAMERA=m
-# CONFIG_ACCESSIBILITY is not set
-CONFIG_INFINIBAND=m
-CONFIG_INFINIBAND_USER_MAD=m
-CONFIG_INFINIBAND_USER_ACCESS=m
-# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
-CONFIG_INFINIBAND_USER_MEM=y
-CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
-CONFIG_INFINIBAND_ADDR_TRANS=y
-CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
-CONFIG_INFINIBAND_MTHCA=m
-CONFIG_INFINIBAND_MTHCA_DEBUG=y
-CONFIG_INFINIBAND_EHCA=m
-# CONFIG_INFINIBAND_AMSO1100 is not set
-CONFIG_INFINIBAND_CXGB3=m
-# CONFIG_INFINIBAND_CXGB3_DEBUG is not set
-CONFIG_INFINIBAND_CXGB4=m
-CONFIG_INFINIBAND_I40IW=m
-CONFIG_MLX4_INFINIBAND=m
-CONFIG_MLX5_INFINIBAND=m
-CONFIG_INFINIBAND_NES=m
-# CONFIG_INFINIBAND_NES_DEBUG is not set
-CONFIG_INFINIBAND_OCRDMA=m
-CONFIG_INFINIBAND_IPOIB=m
-CONFIG_INFINIBAND_IPOIB_CM=y
-CONFIG_INFINIBAND_IPOIB_DEBUG=y
-# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
-CONFIG_INFINIBAND_SRP=m
-CONFIG_INFINIBAND_SRPT=m
-CONFIG_INFINIBAND_ISER=m
-CONFIG_INFINIBAND_ISERT=m
-CONFIG_RDMA_RXE=m
-CONFIG_INFINIBAND_QEDR=m
-CONFIG_INFINIBAND_BNXT_RE=m
-CONFIG_EDAC=y
-CONFIG_EDAC_LEGACY_SYSFS=y
-# CONFIG_EDAC_DEBUG is not set
-CONFIG_EDAC_MM_EDAC=m
-CONFIG_EDAC_CPC925=m
-CONFIG_RTC_LIB=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_HCTOSYS=y
-# CONFIG_RTC_SYSTOHC is not set
-CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
-# CONFIG_RTC_DEBUG is not set
-
-#
-# RTC interfaces
-#
-CONFIG_RTC_INTF_SYSFS=y
-CONFIG_RTC_INTF_PROC=y
-CONFIG_RTC_INTF_DEV=y
-# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
-# CONFIG_RTC_DRV_TEST is not set
-
-#
-# I2C RTC drivers
-#
-CONFIG_RTC_DRV_DS1307=m
-CONFIG_RTC_DRV_DS1374=m
-CONFIG_RTC_DRV_DS1672=m
-CONFIG_RTC_DRV_DS3232=m
-CONFIG_RTC_DRV_MAX6900=m
-CONFIG_RTC_DRV_RS5C372=m
-CONFIG_RTC_DRV_ISL1208=m
-CONFIG_RTC_DRV_ISL12022=m
-CONFIG_RTC_DRV_X1205=m
-CONFIG_RTC_DRV_PCF8523=m
-CONFIG_RTC_DRV_PCF8563=m
-CONFIG_RTC_DRV_PCF8583=m
-CONFIG_RTC_DRV_M41T80=m
-CONFIG_RTC_DRV_M41T80_WDT=y
-CONFIG_RTC_DRV_BQ32K=m
-# CONFIG_RTC_DRV_S35390A is not set
-CONFIG_RTC_DRV_FM3130=m
-CONFIG_RTC_DRV_RX8581=m
-CONFIG_RTC_DRV_RX8025=m
-CONFIG_RTC_DRV_EM3027=m
-CONFIG_RTC_DRV_RV3029C2=m
-
-#
-# SPI RTC drivers
-#
-
-#
-# Platform RTC drivers
-#
-CONFIG_RTC_DRV_CMOS=y
-CONFIG_RTC_DRV_DS1286=m
-CONFIG_RTC_DRV_DS1511=m
-CONFIG_RTC_DRV_DS1553=m
-CONFIG_RTC_DRV_DS1742=m
-CONFIG_RTC_DRV_STK17TA8=m
-# CONFIG_RTC_DRV_M48T86 is not set
-CONFIG_RTC_DRV_M48T35=m
-CONFIG_RTC_DRV_M48T59=m
-CONFIG_RTC_DRV_MSM6242=m
-CONFIG_RTC_DRV_BQ4802=m
-CONFIG_RTC_DRV_RP5C01=m
-CONFIG_RTC_DRV_V3020=m
-CONFIG_RTC_DRV_DS2404=m
-CONFIG_RTC_DRV_OPAL=y
-
-#
-# on-CPU RTC drivers
-#
-CONFIG_RTC_DRV_GENERIC=y
-# CONFIG_RTC_DRV_SNVS is not set
-
-#
-# HID Sensor RTC drivers
-#
-# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
-CONFIG_DMADEVICES=y
-# CONFIG_DMADEVICES_DEBUG is not set
-
-#
-# DMA Devices
-#
-CONFIG_DW_DMAC_CORE=m
-CONFIG_DW_DMAC=m
-# CONFIG_DW_DMAC_PCI is not set
-# CONFIG_DW_DMAC_BIG_ENDIAN_IO is not set
-# CONFIG_IDMA64 is not set
-# CONFIG_TIMB_DMA is not set
-CONFIG_DMA_ENGINE=y
-CONFIG_DMA_OF=y
-
-#
-# DMA Clients
-#
-CONFIG_NET_DMA_RH_KABI=y
-CONFIG_ASYNC_TX_DMA=y
-# CONFIG_DMATEST is not set
-
-#
-# DMABUF options
-#
-CONFIG_SYNC_FILE=y
-# CONFIG_SW_SYNC is not set
-CONFIG_AUXDISPLAY=y
-CONFIG_KS0108=m
-CONFIG_KS0108_PORT=0x378
-CONFIG_KS0108_DELAY=2
-CONFIG_UIO=m
-CONFIG_UIO_CIF=m
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_DMEM_GENIRQ is not set
-CONFIG_UIO_AEC=m
-CONFIG_UIO_SERCOS3=m
-CONFIG_UIO_PCI_GENERIC=m
-# CONFIG_UIO_NETX is not set
-# CONFIG_VFIO_IOMMU_TYPE1 is not set
-CONFIG_VFIO_IOMMU_SPAPR_TCE=m
-CONFIG_VFIO_SPAPR_EEH=m
-CONFIG_VFIO=m
-# CONFIG_VFIO_NOIOMMU is not set
-CONFIG_VFIO_PCI=m
-CONFIG_VFIO_PCI_MMAP=y
-CONFIG_VFIO_PCI_INTX=y
-# CONFIG_VFIO_MDEV is not set
-CONFIG_IRQ_BYPASS_MANAGER=y
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=m
-
-#
-# Virtio drivers
-#
-CONFIG_VIRTIO_PCI=m
-CONFIG_VIRTIO_PCI_LEGACY=y
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-# CONFIG_VIRTIO_MMIO is not set
-
-#
-# Microsoft Hyper-V guest support
-#
-# CONFIG_HYPERV_TSCPAGE is not set
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_W35UND is not set
-# CONFIG_PRISM2_USB is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_ASUS_OLED is not set
-# CONFIG_PANEL is not set
-# CONFIG_R8187SE is not set
-# CONFIG_RTL8192U is not set
-CONFIG_RTLLIB=m
-CONFIG_RTLLIB_CRYPTO_CCMP=m
-CONFIG_RTLLIB_CRYPTO_TKIP=m
-CONFIG_RTLLIB_CRYPTO_WEP=m
-CONFIG_RTL8192E=m
-CONFIG_R8712U=m
-# CONFIG_RTS5139 is not set
-# CONFIG_TRANZPORT is not set
-# CONFIG_IDE_PHISON is not set
-# CONFIG_LINE6_USB is not set
-# CONFIG_USB_SERIAL_QUATECH2 is not set
-# CONFIG_VT6655 is not set
-# CONFIG_VT6656 is not set
-# CONFIG_DX_SEP is not set
-
-#
-# IIO staging drivers
-#
-
-#
-# Accelerometers
-#
-
-#
-# Analog to digital converters
-#
-# CONFIG_AD7291 is not set
-# CONFIG_AD7606 is not set
-# CONFIG_AD799X is not set
-
-#
-# Analog digital bi-direction converters
-#
-# CONFIG_ADT7316 is not set
-
-#
-# Capacitance to digital converters
-#
-# CONFIG_AD7150 is not set
-# CONFIG_AD7152 is not set
-# CONFIG_AD7746 is not set
-
-#
-# Direct Digital Synthesis
-#
-
-#
-# Digital gyroscope sensors
-#
-
-#
-# Network Analyzer, Impedance Converters
-#
-# CONFIG_AD5933 is not set
-
-#
-# Light sensors
-#
-# CONFIG_SENSORS_ISL29018 is not set
-# CONFIG_SENSORS_ISL29028 is not set
-# CONFIG_TSL2583 is not set
-# CONFIG_TSL2x7x is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_SENSORS_HMC5843 is not set
-
-#
-# Active energy metering IC
-#
-# CONFIG_ADE7854 is not set
-
-#
-# Resolver to digital converters
-#
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_PERIODIC_RTC_TRIGGER is not set
-# CONFIG_IIO_GPIO_TRIGGER is not set
-# CONFIG_IIO_SIMPLE_DUMMY is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_CXT1E1 is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_SBE_2T3E3 is not set
-# CONFIG_USB_ENESTORAGE is not set
-# CONFIG_BCM_WIMAX is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_USB_WPAN_HCD is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_CSR_WIFI is not set
-# CONFIG_NET_VENDOR_SILICOM is not set
-# CONFIG_CED1401 is not set
-# CONFIG_DGRP is not set
-CONFIG_FIREWIRE_SERIAL=m
-# CONFIG_ZCACHE is not set
-
-#
-# Hardware Spinlock drivers
-#
-CONFIG_I8253_LOCK=y
-CONFIG_CLKBLD_I8253=y
-# CONFIG_MAILBOX is not set
-CONFIG_IOMMU_API=y
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_IOMMU_DEBUGFS is not set
-CONFIG_OF_IOMMU=y
-CONFIG_SPAPR_TCE_IOMMU=y
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-CONFIG_IIO=y
-CONFIG_IIO_BUFFER=y
-CONFIG_IIO_BUFFER_CB=y
-CONFIG_IIO_KFIFO_BUF=y
-# CONFIG_IIO_CONFIGFS is not set
-CONFIG_IIO_TRIGGER=y
-CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
-# CONFIG_IIO_SW_DEVICE is not set
-# CONFIG_IIO_SW_TRIGGER is not set
-
-#
-# Accelerometers
-#
-# CONFIG_IIO_ST_ACCEL_3AXIS is not set
-
-#
-# Analog to digital converters
-#
-# CONFIG_EXYNOS_ADC is not set
-# CONFIG_MAX1363 is not set
-# CONFIG_TI_ADC081C is not set
-# CONFIG_VIPERBOARD_ADC is not set
-
-#
-# Amplifiers
-#
-
-#
-# Hid Sensor IIO Common
-#
-
-#
-# Digital to analog converters
-#
-# CONFIG_AD5064 is not set
-# CONFIG_AD5380 is not set
-# CONFIG_AD5446 is not set
-# CONFIG_MAX517 is not set
-# CONFIG_MCP4725 is not set
-
-#
-# Frequency Synthesizers DDS/PLL
-#
-
-#
-# Clock Generator/Distribution
-#
-
-#
-# Phase-Locked Loop (PLL) frequency synthesizers
-#
-
-#
-# Digital gyroscope sensors
-#
-# CONFIG_IIO_ST_GYRO_3AXIS is not set
-# CONFIG_ITG3200 is not set
-
-#
-# Inertial measurement units
-#
-# CONFIG_INV_MPU6050_IIO is not set
-
-#
-# Light sensors
-#
-# CONFIG_ADJD_S311 is not set
-# CONFIG_SENSORS_TSL2563 is not set
-# CONFIG_VCNL4000 is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_AK8975 is not set
-# CONFIG_IIO_ST_MAGN_3AXIS is not set
-
-#
-# Inclinometer sensors
-#
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_INTERRUPT_TRIGGER is not set
-# CONFIG_IIO_SYSFS_TRIGGER is not set
-
-#
-# Pressure Sensors
-#
-# CONFIG_IIO_ST_PRESS is not set
-# CONFIG_NTB is not set
-# CONFIG_VME_BUS is not set
-CONFIG_PWM=y
-CONFIG_PWM_SYSFS=y
-CONFIG_IRQCHIP=y
-# CONFIG_IPACK_BUS is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_RAS=y
-CONFIG_LIBNVDIMM=m
-CONFIG_BLK_DEV_PMEM=m
-CONFIG_ND_BLK=m
-CONFIG_ND_CLAIM=y
-CONFIG_ND_BTT=m
-CONFIG_BTT=y
-CONFIG_NVDIMM_KEYS=y
-CONFIG_DAX_DRIVER=y
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-# CONFIG_STM is not set
-# CONFIG_INTEL_TH is not set
-CONFIG_NVMEM=y
-
-#
-# File systems
-#
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=m
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-# CONFIG_EXT4_DEBUG is not set
-CONFIG_JBD2=m
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=m
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=m
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-# CONFIG_XFS_WARN is not set
-# CONFIG_XFS_DEBUG is not set
-CONFIG_GFS2_FS=m
-CONFIG_GFS2_FS_LOCKING_DLM=y
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-# CONFIG_BTRFS_ASSERT is not set
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-# CONFIG_QUOTA_DEBUG is not set
-CONFIG_QUOTA_TREE=y
-# CONFIG_QFMT_V1 is not set
-CONFIG_QFMT_V2=y
-CONFIG_QUOTACTL=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-# CONFIG_FSCACHE_OBJECT_LIST is not set
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_JFFS2_FS is not set
-# CONFIG_UBIFS_FS is not set
-# CONFIG_LOGFS is not set
-CONFIG_CRAMFS=m
-CONFIG_SQUASHFS=m
-CONFIG_SQUASHFS_XATTR=y
-CONFIG_SQUASHFS_ZLIB=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_SQUASHFS_XZ=y
-# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
-# CONFIG_SQUASHFS_EMBEDDED is not set
-CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-CONFIG_PSTORE_RAM=m
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-CONFIG_ORE=m
-CONFIG_NETWORK_FILESYSTEMS=y
-CONFIG_NFS_FS=m
-# CONFIG_NFS_V2 is not set
-CONFIG_NFS_V3=m
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=m
-# CONFIG_NFS_SWAP is not set
-CONFIG_NFS_V4_1=y
-CONFIG_NFS_V4_2=y
-CONFIG_PNFS_FILE_LAYOUT=m
-CONFIG_PNFS_BLOCK=m
-CONFIG_PNFS_OBJLAYOUT=m
-CONFIG_PNFS_FLEXFILE_LAYOUT=m
-CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
-# CONFIG_NFS_V4_1_MIGRATION is not set
-CONFIG_NFS_V4_SECURITY_LABEL=y
-CONFIG_NFS_FSCACHE=y
-# CONFIG_NFS_USE_LEGACY_DNS is not set
-CONFIG_NFS_USE_KERNEL_DNS=y
-CONFIG_NFS_DEBUG=y
-CONFIG_NFSD=m
-CONFIG_NFSD_V2_ACL=y
-CONFIG_NFSD_V3=y
-CONFIG_NFSD_V3_ACL=y
-CONFIG_NFSD_V4=y
-CONFIG_NFSD_PNFS=y
-# CONFIG_NFSD_BLOCKLAYOUT is not set
-CONFIG_NFSD_SCSILAYOUT=y
-CONFIG_NFSD_V4_SECURITY_LABEL=y
-# CONFIG_NFSD_FAULT_INJECTION is not set
-CONFIG_GRACE_PERIOD=m
-CONFIG_LOCKD=m
-CONFIG_LOCKD_V4=y
-CONFIG_NFS_ACL_SUPPORT=m
-CONFIG_NFS_COMMON=y
-CONFIG_SUNRPC=m
-CONFIG_SUNRPC_GSS=m
-CONFIG_SUNRPC_BACKCHANNEL=y
-CONFIG_RPCSEC_GSS_KRB5=m
-CONFIG_SUNRPC_DEBUG=y
-CONFIG_SUNRPC_XPRT_RDMA=m
-CONFIG_CEPH_FS=m
-CONFIG_CEPH_FS_POSIX_ACL=y
-CONFIG_CIFS=m
-CONFIG_CIFS_STATS=y
-# CONFIG_CIFS_STATS2 is not set
-CONFIG_CIFS_WEAK_PW_HASH=y
-CONFIG_CIFS_UPCALL=y
-CONFIG_CIFS_XATTR=y
-CONFIG_CIFS_POSIX=y
-CONFIG_CIFS_ACL=y
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
-CONFIG_CIFS_DFS_UPCALL=y
-# CONFIG_CIFS_SMB311 is not set
-# CONFIG_CIFS_FSCACHE is not set
-# CONFIG_NCP_FS is not set
-# CONFIG_CODA_FS is not set
-# CONFIG_AFS_FS is not set
-CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_737=m
-CONFIG_NLS_CODEPAGE_775=m
-CONFIG_NLS_CODEPAGE_850=m
-CONFIG_NLS_CODEPAGE_852=m
-CONFIG_NLS_CODEPAGE_855=m
-CONFIG_NLS_CODEPAGE_857=m
-CONFIG_NLS_CODEPAGE_860=m
-CONFIG_NLS_CODEPAGE_861=m
-CONFIG_NLS_CODEPAGE_862=m
-CONFIG_NLS_CODEPAGE_863=m
-CONFIG_NLS_CODEPAGE_864=m
-CONFIG_NLS_CODEPAGE_865=m
-CONFIG_NLS_CODEPAGE_866=m
-CONFIG_NLS_CODEPAGE_869=m
-CONFIG_NLS_CODEPAGE_936=m
-CONFIG_NLS_CODEPAGE_950=m
-CONFIG_NLS_CODEPAGE_932=m
-CONFIG_NLS_CODEPAGE_949=m
-CONFIG_NLS_CODEPAGE_874=m
-CONFIG_NLS_ISO8859_8=m
-CONFIG_NLS_CODEPAGE_1250=m
-CONFIG_NLS_CODEPAGE_1251=m
-CONFIG_NLS_ASCII=y
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_ISO8859_2=m
-CONFIG_NLS_ISO8859_3=m
-CONFIG_NLS_ISO8859_4=m
-CONFIG_NLS_ISO8859_5=m
-CONFIG_NLS_ISO8859_6=m
-CONFIG_NLS_ISO8859_7=m
-CONFIG_NLS_ISO8859_9=m
-CONFIG_NLS_ISO8859_13=m
-CONFIG_NLS_ISO8859_14=m
-CONFIG_NLS_ISO8859_15=m
-CONFIG_NLS_KOI8_R=m
-CONFIG_NLS_KOI8_U=m
-CONFIG_NLS_MAC_ROMAN=m
-CONFIG_NLS_MAC_CELTIC=m
-CONFIG_NLS_MAC_CENTEURO=m
-CONFIG_NLS_MAC_CROATIAN=m
-CONFIG_NLS_MAC_CYRILLIC=m
-CONFIG_NLS_MAC_GAELIC=m
-CONFIG_NLS_MAC_GREEK=m
-CONFIG_NLS_MAC_ICELAND=m
-CONFIG_NLS_MAC_INUIT=m
-CONFIG_NLS_MAC_ROMANIAN=m
-CONFIG_NLS_MAC_TURKISH=m
-CONFIG_NLS_UTF8=m
-CONFIG_DLM=m
-CONFIG_DLM_DEBUG=y
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_STRNCPY_FROM_USER=y
-CONFIG_GENERIC_STRNLEN_USER=y
-CONFIG_GENERIC_PCI_IOMAP=y
-CONFIG_GENERIC_IOMAP=y
-CONFIG_GENERIC_IO=y
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=m
-CONFIG_CRC8=m
-# CONFIG_RANDOM32_SELFTEST is not set
-CONFIG_842_COMPRESS=m
-CONFIG_842_DECOMPRESS=y
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=y
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
-CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
-CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_REED_SOLOMON=m
-CONFIG_REED_SOLOMON_ENC8=y
-CONFIG_REED_SOLOMON_DEC8=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_BTREE=y
-CONFIG_INTERVAL_TREE=y
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_IOMEM=y
-CONFIG_HAS_IOPORT=y
-CONFIG_HAS_DMA=y
-CONFIG_DMA_VIRT_OPS=y
-CONFIG_CHECK_SIGNATURE=y
-CONFIG_CPU_RMAP=y
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-CONFIG_IRQ_POLL=y
-CONFIG_MPILIB=y
-CONFIG_SIGNATURE=y
-CONFIG_OID_REGISTRY=y
-CONFIG_SG_POOL=y
-CONFIG_PARMAN=m
-CONFIG_SBITMAP=y
-
-#
-# Kernel hacking
-#
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=2048
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-CONFIG_PAGE_OWNER=y
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_SHIRQ=y
-CONFIG_LOCKUP_DETECTOR=y
-CONFIG_HARDLOCKUP_DETECTOR=y
-# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
-# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
-# CONFIG_WQ_WATCHDOG is not set
-CONFIG_PANIC_ON_OOPS=y
-CONFIG_PANIC_ON_OOPS_VALUE=1
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-# CONFIG_DEBUG_OBJECTS is not set
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-# CONFIG_DEBUG_KMEMLEAK is not set
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-# CONFIG_PROVE_LOCKING is not set
-# CONFIG_LOCK_STAT is not set
-# CONFIG_DEBUG_RT_MUTEXES is not set
-# CONFIG_RT_MUTEX_TESTER is not set
-# CONFIG_DEBUG_SPINLOCK is not set
-# CONFIG_DEBUG_MUTEXES is not set
-# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
-# CONFIG_DEBUG_RWSEMS is not set
-# CONFIG_DEBUG_LOCK_ALLOC is not set
-# CONFIG_DEBUG_ATOMIC_SLEEP is not set
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-# CONFIG_DEBUG_STACK_USAGE is not set
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-# CONFIG_DEBUG_VM is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-# CONFIG_TEST_LIST_SORT is not set
-# CONFIG_DEBUG_SG is not set
-# CONFIG_DEBUG_NOTIFIERS is not set
-# CONFIG_DEBUG_CREDENTIALS is not set
-
-#
-# RCU Debugging
-#
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-# CONFIG_DEBUG_PER_CPU_MAPS is not set
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-# CONFIG_FAULT_INJECTION is not set
-# CONFIG_LATENCYTOP is not set
-CONFIG_PAGE_EXTENSION=y
-# CONFIG_DEBUG_PAGEALLOC is not set
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-# CONFIG_FUNCTION_GRAPH_TRACER is not set
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-# CONFIG_STACK_TRACER is not set
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
-# CONFIG_FUNCTION_PROFILER is not set
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_TEST_PARMAN is not set
-# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-# CONFIG_DMA_API_DEBUG is not set
-CONFIG_ATOMIC64_SELFTEST=y
-# CONFIG_TEST_LIVEPATCH is not set
-CONFIG_ASYNC_RAID6_TEST=m
-# CONFIG_SAMPLES is not set
-CONFIG_HAVE_ARCH_KGDB=y
-CONFIG_KGDB=y
-CONFIG_KGDB_SERIAL_CONSOLE=y
-CONFIG_KGDB_TESTS=y
-# CONFIG_KGDB_TESTS_ON_BOOT is not set
-CONFIG_KGDB_KDB=y
-CONFIG_KDB_KEYBOARD=y
-CONFIG_KDB_CONTINUE_CATASTROPHIC=0
-# CONFIG_TEST_STRING_HELPERS is not set
-CONFIG_TEST_KSTRTOX=y
-CONFIG_PPC_DISABLE_WERROR=y
-CONFIG_PRINT_STACK_DEPTH=64
-CONFIG_DEBUG_STACKOVERFLOW=y
-# CONFIG_HCALL_STATS is not set
-CONFIG_PPC_EMULATED_STATS=y
-# CONFIG_CODE_PATCHING_SELFTEST is not set
-# CONFIG_FTR_FIXUP_SELFTEST is not set
-CONFIG_MSI_BITMAP_SELFTEST=y
-CONFIG_XMON=y
-# CONFIG_XMON_DEFAULT is not set
-CONFIG_XMON_DISASSEMBLY=y
-CONFIG_DEBUGGER=y
-CONFIG_BOOTX_TEXT=y
-# CONFIG_PPC_EARLY_DEBUG is not set
-CONFIG_STRICT_DEVMEM=y
-# CONFIG_PPC_DEBUG_RFI is not set
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_KEYS_COMPAT=y
-CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_BIG_KEYS=y
-CONFIG_TRUSTED_KEYS=y
-CONFIG_ENCRYPTED_KEYS=y
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
-CONFIG_SECURITY=y
-CONFIG_SECURITYFS=y
-CONFIG_SECURITY_NETWORK=y
-CONFIG_SECURITY_INFINIBAND=y
-CONFIG_SECURITY_NETWORK_XFRM=y
-CONFIG_SECURITY_PATH=y
-CONFIG_SECURITY_SECURELEVEL=y
-CONFIG_LSM_MMAP_MIN_ADDR=65535
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
-CONFIG_SECURITY_SELINUX=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
-CONFIG_SECURITY_SELINUX_DISABLE=y
-CONFIG_SECURITY_SELINUX_DEVELOP=y
-CONFIG_SECURITY_SELINUX_AVC_STATS=y
-CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
-# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
-# CONFIG_SECURITY_SMACK is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
-CONFIG_SECURITY_YAMA=y
-CONFIG_SECURITY_YAMA_STACKED=y
-CONFIG_INTEGRITY=y
-CONFIG_INTEGRITY_SIGNATURE=y
-CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
-CONFIG_IMA=y
-CONFIG_IMA_MEASURE_PCR_IDX=10
-CONFIG_IMA_AUDIT=y
-CONFIG_IMA_LSM_RULES=y
-CONFIG_IMA_APPRAISE=y
-CONFIG_IMA_TRUSTED_KEYRING=y
-CONFIG_EVM=y
-CONFIG_EVM_HMAC_VERSION=2
-CONFIG_DEFAULT_SECURITY_SELINUX=y
-# CONFIG_DEFAULT_SECURITY_YAMA is not set
-# CONFIG_DEFAULT_SECURITY_DAC is not set
-CONFIG_DEFAULT_SECURITY="selinux"
-CONFIG_XOR_BLOCKS=m
-CONFIG_ASYNC_CORE=m
-CONFIG_ASYNC_MEMCPY=m
-CONFIG_ASYNC_XOR=m
-CONFIG_ASYNC_PQ=m
-CONFIG_ASYNC_RAID6_RECOV=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_ACOMP2=y
-# CONFIG_CRYPTO_RSA is not set
-# CONFIG_CRYPTO_DH is not set
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-# CONFIG_CRYPTO_CRYPTD is not set
-# CONFIG_CRYPTO_MCRYPTD is not set
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRCT10DIF=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-# CONFIG_CRYPTO_SHA1_PPC is not set
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=y
-CONFIG_CRYPTO_842=m
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-CONFIG_CRYPTO_DEV_NX=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=y
-CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=y
-CONFIG_CRYPTO_DEV_VMX=y
-CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m
-CONFIG_CRYPTO_DEV_CHELSIO=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-# CONFIG_PKCS7_MESSAGE_PARSER is not set
-# CONFIG_PPC_CLOCK is not set
-CONFIG_HAVE_KVM_IRQCHIP=y
-CONFIG_HAVE_KVM_IRQFD=y
-CONFIG_HAVE_KVM_EVENTFD=y
-CONFIG_KVM_MMIO=y
-CONFIG_KVM_VFIO=y
-CONFIG_HAVE_KVM_IRQ_BYPASS=y
-CONFIG_VIRTUALIZATION=y
-CONFIG_KVM=y
-CONFIG_KVM_BOOK3S_HANDLER=y
-CONFIG_KVM_BOOK3S_64_HANDLER=y
-CONFIG_KVM_BOOK3S_PR_POSSIBLE=y
-CONFIG_KVM_BOOK3S_HV_POSSIBLE=y
-CONFIG_KVM_BOOK3S_64=m
-CONFIG_KVM_BOOK3S_64_HV=m
-CONFIG_KVM_BOOK3S_64_PR=m
-# CONFIG_KVM_BOOK3S_HV_EXIT_TIMING is not set
-CONFIG_KVM_XICS=y
-CONFIG_HAVE_LIVEPATCH=y
-CONFIG_LIVEPATCH=y
-CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x-debug.config b/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x-debug.config
deleted file mode 100644
index 0bc3ea3..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x-debug.config
+++ /dev/null
@@ -1,2856 +0,0 @@
-# s390
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/s390 3.10.0 Kernel Configuration
-#
-CONFIG_ARCH_HAS_MEM_ENCRYPT=y
-CONFIG_MMU=y
-CONFIG_ZONE_DMA=y
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-# CONFIG_ARCH_HAS_ILOG2_U32 is not set
-# CONFIG_ARCH_HAS_ILOG2_U64 is not set
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_GENERIC_BUG=y
-CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_KEXEC=y
-CONFIG_AUDIT_ARCH=y
-CONFIG_NO_IOPORT=y
-# CONFIG_PCI_QUIRKS is not set
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_SWIOTLB=y
-CONFIG_S390=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-CONFIG_BUILDTIME_EXTABLE_SORT=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_HAVE_KERNEL_GZIP=y
-CONFIG_HAVE_KERNEL_BZIP2=y
-CONFIG_HAVE_KERNEL_LZMA=y
-CONFIG_HAVE_KERNEL_XZ=y
-CONFIG_HAVE_KERNEL_LZO=y
-CONFIG_KERNEL_GZIP=y
-# CONFIG_KERNEL_BZIP2 is not set
-# CONFIG_KERNEL_LZMA is not set
-# CONFIG_KERNEL_XZ is not set
-# CONFIG_KERNEL_LZO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
-CONFIG_AUDIT=y
-CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
-CONFIG_AUDIT_TREE=y
-CONFIG_GENERIC_TIME_VSYSCALL=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-CONFIG_NO_HZ_IDLE=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_BSD_PROCESS_ACCT_V3=y
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-# CONFIG_BUILD_BIN2C is not set
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=17
-CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
-CONFIG_MEMCG=y
-CONFIG_MEMCG_SWAP=y
-CONFIG_MEMCG_SWAP_ENABLED=y
-CONFIG_MEMCG_KMEM=y
-# CONFIG_CGROUP_HUGETLB is not set
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-CONFIG_DEBUG_BLK_CGROUP=y
-CONFIG_CHECKPOINT_RESTORE=y
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-CONFIG_SCHED_AUTOGROUP=y
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-# CONFIG_USERFAULTFD is not set
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_OPROFILE=m
-CONFIG_HAVE_OPROFILE=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_KRETPROBES=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
-CONFIG_HAVE_CMPXCHG_LOCAL=y
-CONFIG_HAVE_CMPXCHG_DOUBLE=y
-CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-# CONFIG_CC_STACKPROTECTOR is not set
-CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_CLONE_BACKWARDS2=y
-CONFIG_OLD_SIGSUSPEND3=y
-CONFIG_OLD_SIGACTION=y
-CONFIG_COMPAT_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
-CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_SHA1=y
-# CONFIG_MODULE_SIG_SHA224 is not set
-# CONFIG_MODULE_SIG_SHA256 is not set
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha1"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-# CONFIG_OSF_PARTITION is not set
-CONFIG_AMIGA_PARTITION=y
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_IBM_PARTITION=y
-# CONFIG_MAC_PARTITION is not set
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-# CONFIG_LDM_PARTITION is not set
-# CONFIG_SGI_PARTITION is not set
-# CONFIG_ULTRIX_PARTITION is not set
-# CONFIG_SUN_PARTITION is not set
-CONFIG_KARMA_PARTITION=y
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_BLOCK_COMPAT=y
-CONFIG_BLK_MQ_PCI=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
-CONFIG_MQ_IOSCHED_DEADLINE=y
-CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y
-CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_LOCK=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y
-CONFIG_ARCH_INLINE_READ_TRYLOCK=y
-CONFIG_ARCH_INLINE_READ_LOCK=y
-CONFIG_ARCH_INLINE_READ_LOCK_BH=y
-CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_READ_UNLOCK=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y
-CONFIG_ARCH_INLINE_WRITE_TRYLOCK=y
-CONFIG_ARCH_INLINE_WRITE_LOCK=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y
-CONFIG_UNINLINE_SPIN_UNLOCK=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_FREEZER=y
-CONFIG_HAVE_LIVEPATCH=y
-# CONFIG_LIVEPATCH is not set
-
-#
-# Processor type and features
-#
-CONFIG_HAVE_MARCH_Z900_FEATURES=y
-CONFIG_HAVE_MARCH_Z990_FEATURES=y
-CONFIG_HAVE_MARCH_Z9_109_FEATURES=y
-CONFIG_HAVE_MARCH_Z10_FEATURES=y
-CONFIG_HAVE_MARCH_Z196_FEATURES=y
-# CONFIG_HAVE_MARCH_ZEC12_FEATURES is not set
-# CONFIG_HAVE_MARCH_Z13_FEATURES is not set
-# CONFIG_MARCH_Z900 is not set
-# CONFIG_MARCH_Z990 is not set
-# CONFIG_MARCH_Z9_109 is not set
-# CONFIG_MARCH_Z10 is not set
-CONFIG_MARCH_Z196=y
-# CONFIG_MARCH_ZEC12 is not set
-# CONFIG_MARCH_Z13 is not set
-# CONFIG_MARCH_G5_TUNE is not set
-# CONFIG_MARCH_Z900_TUNE is not set
-# CONFIG_MARCH_Z990_TUNE is not set
-# CONFIG_MARCH_Z9_109_TUNE is not set
-# CONFIG_MARCH_Z10_TUNE is not set
-# CONFIG_MARCH_Z196_TUNE is not set
-CONFIG_MARCH_ZEC12_TUNE=y
-# CONFIG_MARCH_Z13_TUNE is not set
-# CONFIG_TUNE_DEFAULT is not set
-# CONFIG_TUNE_G5 is not set
-# CONFIG_TUNE_Z900 is not set
-# CONFIG_TUNE_Z990 is not set
-# CONFIG_TUNE_Z9_109 is not set
-# CONFIG_TUNE_Z10 is not set
-# CONFIG_TUNE_Z196 is not set
-CONFIG_TUNE_ZEC12=y
-# CONFIG_TUNE_Z13 is not set
-CONFIG_64BIT=y
-CONFIG_COMPAT=y
-CONFIG_SYSVIPC_COMPAT=y
-CONFIG_SMP=y
-CONFIG_NR_CPUS=256
-CONFIG_HOTPLUG_CPU=y
-CONFIG_SCHED_SMT=y
-CONFIG_SCHED_MC=y
-CONFIG_SCHED_BOOK=y
-CONFIG_SCHED_DRAWER=y
-CONFIG_SCHED_TOPOLOGY=y
-CONFIG_PREEMPT_NONE=y
-# CONFIG_PREEMPT_VOLUNTARY is not set
-# CONFIG_PREEMPT is not set
-CONFIG_PREEMPT_COUNT=y
-CONFIG_HZ_100=y
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-# CONFIG_HZ_1000 is not set
-CONFIG_HZ=100
-CONFIG_SCHED_HRTICK=y
-CONFIG_ARCH_RANDOM=y
-# CONFIG_KERNEL_NOBP is not set
-CONFIG_EXPOLINE=y
-# CONFIG_EXPOLINE_OFF is not set
-CONFIG_EXPOLINE_AUTO=y
-# CONFIG_EXPOLINE_FULL is not set
-
-#
-# Memory setup
-#
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_ARCH_HAS_ADD_PAGES=y
-CONFIG_FORCE_MAX_ZONEORDER=9
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_ARCH_DISCARD_MEMBLOCK=y
-CONFIG_MEMORY_ISOLATION=y
-# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_VIRT_TO_BUS=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_TRANSPARENT_HUGEPAGE=y
-CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
-# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-CONFIG_FRONTSWAP=y
-# CONFIG_CMA is not set
-# CONFIG_ZSWAP is not set
-# CONFIG_ZPOOL is not set
-# CONFIG_ZBUD is not set
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-CONFIG_PERCPU_STATS=y
-CONFIG_PACK_STACK=y
-CONFIG_CHECK_STACK=y
-CONFIG_STACK_GUARD=256
-# CONFIG_WARN_DYNAMIC_STACK is not set
-
-#
-# I/O subsystem
-#
-CONFIG_QDIO=m
-CONFIG_PCI=y
-CONFIG_PCI_NR_FUNCTIONS=64
-# CONFIG_PCIEPORTBUS is not set
-CONFIG_PCI_BUS_ADDR_T_64BIT=y
-CONFIG_PCI_MSI=y
-CONFIG_PCI_DEBUG=y
-# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
-# CONFIG_PCI_STUB is not set
-# CONFIG_PCI_IOV is not set
-# CONFIG_PCI_PRI is not set
-# CONFIG_PCI_PASID is not set
-CONFIG_HOTPLUG_PCI=y
-# CONFIG_HOTPLUG_PCI_CPCI is not set
-# CONFIG_HOTPLUG_PCI_SHPC is not set
-CONFIG_HOTPLUG_PCI_S390=y
-CONFIG_PCI_DOMAINS=y
-CONFIG_HAS_IOMEM=y
-CONFIG_IOMMU_HELPER=y
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_NEED_DMA_MAP_STATE=y
-CONFIG_CHSC_SCH=m
-CONFIG_SCM_BUS=y
-CONFIG_EADM_SCH=m
-
-#
-# Dump support
-#
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_CRASH_DUMP=y
-CONFIG_ZFCPDUMP=y
-
-#
-# Executable file formats / Emulations
-#
-CONFIG_BINFMT_ELF=y
-CONFIG_COMPAT_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_COREDUMP=y
-CONFIG_SECCOMP=y
-
-#
-# Power Management
-#
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_HIBERNATE_CALLBACKS=y
-CONFIG_HIBERNATION=y
-CONFIG_ARCH_SAVE_PAGE_KEYS=y
-CONFIG_PM_STD_PARTITION="/dev/jokes"
-CONFIG_PM_SLEEP=y
-CONFIG_PM_SLEEP_SMP=y
-# CONFIG_PM_AUTOSLEEP is not set
-# CONFIG_PM_WAKELOCKS is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-CONFIG_PM_SLEEP_DEBUG=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_NET=y
-CONFIG_NET_INGRESS=y
-CONFIG_NET_EGRESS=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_PACKET_DIAG=m
-CONFIG_UNIX=y
-CONFIG_UNIX_DIAG=m
-CONFIG_XFRM=y
-CONFIG_XFRM_ALGO=y
-CONFIG_XFRM_USER=y
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-CONFIG_XFRM_STATISTICS=y
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_IUCV=y
-CONFIG_AFIUCV=m
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_FIB_TRIE_STATS=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-CONFIG_NET_IPGRE_DEMUX=m
-CONFIG_NET_IP_TUNNEL=m
-CONFIG_NET_IPGRE=m
-CONFIG_NET_IPGRE_BROADCAST=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NET_IPVTI=m
-CONFIG_NET_UDP_TUNNEL=m
-# CONFIG_NET_FOU is not set
-# CONFIG_NET_FOU_IP_TUNNELS is not set
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=y
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_INET_UDP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_TCP_CONG_DCTCP=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=m
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_VTI=m
-CONFIG_IPV6_SIT=m
-CONFIG_IPV6_SIT_6RD=y
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_GRE=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-# CONFIG_IPV6_SUBTREES is not set
-CONFIG_IPV6_MROUTE=y
-CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IPV6_PIMSM_V2=y
-CONFIG_NETLABEL=y
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
-CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
-CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=m
-
-#
-# Core Netfilter Configuration
-#
-CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_ACCT=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
-CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_LOG_COMMON=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_ZONES=y
-CONFIG_NF_CONNTRACK_PROCFS=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-CONFIG_NF_CONNTRACK_TIMEOUT=y
-CONFIG_NF_CONNTRACK_TIMESTAMP=y
-CONFIG_NF_CONNTRACK_LABELS=y
-CONFIG_NF_CT_PROTO_DCCP=y
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=y
-CONFIG_NF_CT_PROTO_UDPLITE=y
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-CONFIG_NF_CONNTRACK_SNMP=m
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NF_CT_NETLINK_TIMEOUT=m
-CONFIG_NF_CT_NETLINK_HELPER=m
-CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_NF_NAT_PROTO_DCCP=y
-CONFIG_NF_NAT_PROTO_UDPLITE=y
-CONFIG_NF_NAT_PROTO_SCTP=y
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_REDIRECT=m
-CONFIG_NETFILTER_SYNPROXY=m
-CONFIG_NF_TABLES=m
-CONFIG_NF_TABLES_INET=m
-CONFIG_NFT_EXTHDR=m
-CONFIG_NFT_META=m
-CONFIG_NFT_CT=m
-CONFIG_NFT_RBTREE=m
-CONFIG_NFT_HASH=m
-CONFIG_NFT_COUNTER=m
-CONFIG_NFT_LOG=m
-CONFIG_NFT_LIMIT=m
-CONFIG_NFT_MASQ=m
-CONFIG_NFT_REDIR=m
-CONFIG_NFT_NAT=m
-CONFIG_NFT_QUEUE=m
-CONFIG_NFT_REJECT=m
-CONFIG_NFT_REJECT_INET=m
-CONFIG_NFT_COMPAT=m
-CONFIG_NETFILTER_XTABLES=y
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
-CONFIG_NETFILTER_XT_CONNMARK=m
-CONFIG_NETFILTER_XT_SET=m
-
-#
-# Xtables targets
-#
-CONFIG_NETFILTER_XT_TARGET_AUDIT=m
-CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-CONFIG_NETFILTER_XT_TARGET_CT=m
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-CONFIG_NETFILTER_XT_TARGET_HMARK=m
-CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
-CONFIG_NETFILTER_XT_TARGET_LOG=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_NAT=m
-CONFIG_NETFILTER_XT_TARGET_NETMAP=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
-CONFIG_NETFILTER_XT_TARGET_TEE=m
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
-CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
-CONFIG_NETFILTER_XT_MATCH_BPF=m
-CONFIG_NETFILTER_XT_MATCH_CGROUP=m
-CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
-CONFIG_NETFILTER_XT_MATCH_COMMENT=m
-CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
-CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
-CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
-CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
-CONFIG_NETFILTER_XT_MATCH_CPU=m
-CONFIG_NETFILTER_XT_MATCH_DCCP=m
-CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
-CONFIG_NETFILTER_XT_MATCH_DSCP=m
-CONFIG_NETFILTER_XT_MATCH_ECN=m
-CONFIG_NETFILTER_XT_MATCH_ESP=m
-CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_HELPER=m
-CONFIG_NETFILTER_XT_MATCH_HL=m
-CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
-CONFIG_NETFILTER_XT_MATCH_IPVS=m
-CONFIG_NETFILTER_XT_MATCH_LENGTH=m
-CONFIG_NETFILTER_XT_MATCH_LIMIT=m
-CONFIG_NETFILTER_XT_MATCH_MAC=m
-CONFIG_NETFILTER_XT_MATCH_MARK=m
-CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_NFACCT=m
-CONFIG_NETFILTER_XT_MATCH_OSF=m
-CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
-CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
-CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
-CONFIG_NETFILTER_XT_MATCH_QUOTA=m
-CONFIG_NETFILTER_XT_MATCH_RATEEST=m
-CONFIG_NETFILTER_XT_MATCH_REALM=m
-CONFIG_NETFILTER_XT_MATCH_RECENT=m
-CONFIG_NETFILTER_XT_MATCH_SCTP=m
-CONFIG_NETFILTER_XT_MATCH_SOCKET=m
-CONFIG_NETFILTER_XT_MATCH_STATE=m
-CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
-CONFIG_NETFILTER_XT_MATCH_STRING=m
-CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
-CONFIG_NETFILTER_XT_MATCH_U32=m
-CONFIG_IP_SET=m
-CONFIG_IP_SET_MAX=256
-CONFIG_IP_SET_BITMAP_IP=m
-CONFIG_IP_SET_BITMAP_IPMAC=m
-CONFIG_IP_SET_BITMAP_PORT=m
-CONFIG_IP_SET_HASH_IP=m
-CONFIG_IP_SET_HASH_IPMARK=m
-CONFIG_IP_SET_HASH_IPPORT=m
-CONFIG_IP_SET_HASH_IPPORTIP=m
-CONFIG_IP_SET_HASH_IPPORTNET=m
-CONFIG_IP_SET_HASH_IPMAC=m
-CONFIG_IP_SET_HASH_MAC=m
-CONFIG_IP_SET_HASH_NETPORTNET=m
-CONFIG_IP_SET_HASH_NET=m
-CONFIG_IP_SET_HASH_NETNET=m
-CONFIG_IP_SET_HASH_NETPORT=m
-CONFIG_IP_SET_HASH_NETIFACE=m
-CONFIG_IP_SET_LIST_SET=m
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-CONFIG_IP_VS_DEBUG=y
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-CONFIG_IP_VS_PROTO_SCTP=y
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS SH scheduler
-#
-CONFIG_IP_VS_SH_TAB_BITS=8
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-CONFIG_IP_VS_PE_SIP=m
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
-CONFIG_NF_TABLES_IPV4=m
-CONFIG_NFT_CHAIN_ROUTE_IPV4=m
-CONFIG_NFT_REJECT_IPV4=m
-CONFIG_NFT_DUP_IPV4=m
-CONFIG_NF_TABLES_ARP=m
-CONFIG_NF_DUP_IPV4=m
-CONFIG_NF_LOG_IPV4=m
-CONFIG_NF_REJECT_IPV4=m
-CONFIG_NF_NAT_IPV4=m
-CONFIG_NFT_CHAIN_NAT_IPV4=m
-CONFIG_NF_NAT_MASQUERADE_IPV4=m
-CONFIG_NFT_MASQ_IPV4=m
-CONFIG_NFT_REDIR_IPV4=m
-CONFIG_NF_NAT_SNMP_BASIC=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_RPFILTER=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_SYNPROXY=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_IP_NF_NAT=m
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_NF_TABLES_IPV6=m
-CONFIG_NFT_CHAIN_ROUTE_IPV6=m
-CONFIG_NFT_REJECT_IPV6=m
-CONFIG_NFT_DUP_IPV6=m
-CONFIG_NF_DUP_IPV6=m
-CONFIG_NF_REJECT_IPV6=m
-CONFIG_NF_LOG_IPV6=m
-CONFIG_NF_NAT_IPV6=m
-CONFIG_NFT_CHAIN_NAT_IPV6=m
-CONFIG_NF_NAT_MASQUERADE_IPV6=m
-CONFIG_NFT_MASQ_IPV6=m
-CONFIG_NFT_REDIR_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RPFILTER=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_TARGET_SYNPROXY=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-CONFIG_IP6_NF_NAT=m
-CONFIG_IP6_NF_TARGET_MASQUERADE=m
-CONFIG_IP6_NF_TARGET_NPT=m
-CONFIG_NF_TABLES_BRIDGE=m
-CONFIG_NFT_BRIDGE_META=m
-CONFIG_NFT_BRIDGE_REJECT=m
-CONFIG_NF_LOG_BRIDGE=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-CONFIG_NET_SCTPPROBE=m
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
-CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
-CONFIG_SCTP_COOKIE_HMAC_MD5=y
-CONFIG_SCTP_COOKIE_HMAC_SHA1=y
-CONFIG_INET_SCTP_DIAG=m
-# CONFIG_RDS is not set
-# CONFIG_TIPC is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-# CONFIG_ATM_MPOA is not set
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-CONFIG_L2TP=m
-CONFIG_L2TP_DEBUGFS=m
-CONFIG_L2TP_V3=y
-CONFIG_L2TP_IP=m
-CONFIG_L2TP_ETH=m
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_MRP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-CONFIG_BRIDGE_VLAN_FILTERING=y
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_VLAN_8021Q_MVRP=y
-# CONFIG_DECNET is not set
-CONFIG_LLC=m
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_6LOWPAN=m
-# CONFIG_6LOWPAN_DEBUGFS is not set
-CONFIG_6LOWPAN_NHC=m
-CONFIG_6LOWPAN_NHC_DEST=m
-CONFIG_6LOWPAN_NHC_FRAGMENT=m
-CONFIG_6LOWPAN_NHC_HOP=m
-CONFIG_6LOWPAN_NHC_IPV6=m
-CONFIG_6LOWPAN_NHC_MOBILITY=m
-CONFIG_6LOWPAN_NHC_ROUTING=m
-CONFIG_6LOWPAN_NHC_UDP=m
-# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set
-# CONFIG_6LOWPAN_GHC_UDP is not set
-# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_IEEE802154_6LOWPAN=m
-CONFIG_MAC802154=m
-CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
-CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
-CONFIG_NET_SCH_MULTIQ=m
-CONFIG_NET_SCH_RED=m
-CONFIG_NET_SCH_SFB=m
-CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
-CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_CBS=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-CONFIG_NET_SCH_MQPRIO=m
-CONFIG_NET_SCH_CHOKE=m
-CONFIG_NET_SCH_QFQ=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_SCH_FQ=m
-# CONFIG_NET_SCH_HHF is not set
-# CONFIG_NET_SCH_PIE is not set
-CONFIG_NET_SCH_INGRESS=m
-CONFIG_NET_SCH_PLUG=m
-# CONFIG_NET_SCH_DEFAULT is not set
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_CLS_BPF=m
-CONFIG_NET_CLS_FLOWER=m
-CONFIG_NET_CLS_MATCHALL=m
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-CONFIG_NET_EMATCH_IPSET=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_SAMPLE=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-CONFIG_NET_ACT_CSUM=m
-CONFIG_NET_ACT_VLAN=m
-CONFIG_NET_ACT_TUNNEL_KEY=m
-CONFIG_NET_ACT_CONNMARK=m
-CONFIG_NET_ACT_SKBMOD=m
-# CONFIG_NET_ACT_IFE is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_OPENVSWITCH=m
-CONFIG_OPENVSWITCH_GRE=m
-CONFIG_OPENVSWITCH_VXLAN=m
-CONFIG_OPENVSWITCH_GENEVE=m
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
-CONFIG_NET_SWITCHDEV=y
-CONFIG_RPS=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_CAN is not set
-# CONFIG_AF_RXRPC is not set
-CONFIG_FIB_RULES=y
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_INPUT=y
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-CONFIG_CEPH_LIB=m
-CONFIG_CEPH_LIB_PRETTYDEBUG=y
-CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-CONFIG_DST_CACHE=y
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_PAGE_POOL=y
-CONFIG_FAILOVER=m
-CONFIG_HAVE_EBPF_JIT=y
-# CONFIG_PCMCIA is not set
-CONFIG_CCW=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-CONFIG_SYS_HYPERVISOR=y
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-CONFIG_DMA_SHARED_BUFFER=y
-
-#
-# Bus devices
-#
-CONFIG_CONNECTOR=y
-CONFIG_PROC_EVENTS=y
-# CONFIG_MTD is not set
-# CONFIG_PARPORT is not set
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-CONFIG_ZRAM=m
-# CONFIG_BLK_CPQ_DA is not set
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=m
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-# CONFIG_BLK_DEV_SX8 is not set
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=16384
-# CONFIG_CDROM_PKTCDVD is not set
-# CONFIG_ATA_OVER_ETH is not set
-
-#
-# S/390 block device drivers
-#
-CONFIG_BLK_DEV_XPRAM=m
-CONFIG_DCSSBLK=m
-CONFIG_DASD=m
-CONFIG_DASD_PROFILE=y
-CONFIG_DASD_ECKD=m
-CONFIG_DASD_FBA=m
-CONFIG_DASD_DIAG=m
-CONFIG_DASD_EER=y
-CONFIG_SCM_BLOCK=m
-CONFIG_SCM_BLOCK_CLUSTER_WRITE=y
-CONFIG_VIRTIO_BLK=m
-CONFIG_BLK_DEV_RBD=m
-# CONFIG_BLK_DEV_RSXX is not set
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_RDMA=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_RDMA=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-# CONFIG_SENSORS_LIS3LV02D is not set
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_DUMMY_IRQ is not set
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-# CONFIG_SGI_IOC4 is not set
-# CONFIG_TIFM_CORE is not set
-# CONFIG_ICS932S401 is not set
-# CONFIG_ATMEL_SSC is not set
-CONFIG_ENCLOSURE_SERVICES=m
-# CONFIG_HP_ILO is not set
-# CONFIG_APDS9802ALS is not set
-# CONFIG_ISL29003 is not set
-# CONFIG_ISL29020 is not set
-# CONFIG_SENSORS_TSL2550 is not set
-# CONFIG_SENSORS_BH1780 is not set
-# CONFIG_SENSORS_BH1770 is not set
-# CONFIG_SENSORS_APDS990X is not set
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_BMP085_I2C is not set
-# CONFIG_PCH_PHUB is not set
-# CONFIG_USB_SWITCH_FSA9480 is not set
-# CONFIG_SRAM is not set
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-# CONFIG_EEPROM_AT24 is not set
-# CONFIG_EEPROM_LEGACY is not set
-# CONFIG_EEPROM_MAX6875 is not set
-# CONFIG_EEPROM_93CX6 is not set
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_SENSORS_LIS3_I2C is not set
-
-#
-# Altera FPGA firmware download module
-#
-# CONFIG_ALTERA_STAPL is not set
-CONFIG_GENWQE=m
-CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0
-# CONFIG_CXL_BASE is not set
-# CONFIG_CXL_KERNEL_API is not set
-# CONFIG_CXL_EEH is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=m
-CONFIG_CHR_DEV_ST=m
-CONFIG_CHR_DEV_OSST=m
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-CONFIG_CHR_DEV_SCH=m
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_TCP=m
-CONFIG_ISCSI_BOOT_SYSFS=m
-# CONFIG_SCSI_CXGB3_ISCSI is not set
-# CONFIG_SCSI_CXGB4_ISCSI is not set
-# CONFIG_SCSI_BNX2_ISCSI is not set
-# CONFIG_SCSI_BNX2X_FCOE is not set
-# CONFIG_BE2ISCSI is not set
-# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
-# CONFIG_SCSI_HPSA is not set
-# CONFIG_SCSI_3W_9XXX is not set
-# CONFIG_SCSI_3W_SAS is not set
-# CONFIG_SCSI_ACARD is not set
-# CONFIG_SCSI_AACRAID is not set
-# CONFIG_SCSI_AIC7XXX is not set
-# CONFIG_SCSI_AIC7XXX_OLD is not set
-# CONFIG_SCSI_AIC79XX is not set
-# CONFIG_SCSI_AIC94XX is not set
-# CONFIG_SCSI_MVSAS is not set
-# CONFIG_SCSI_MVUMI is not set
-# CONFIG_SCSI_DPT_I2O is not set
-# CONFIG_SCSI_ADVANSYS is not set
-# CONFIG_SCSI_ARCMSR is not set
-# CONFIG_MEGARAID_NEWGEN is not set
-# CONFIG_MEGARAID_LEGACY is not set
-# CONFIG_MEGARAID_SAS is not set
-# CONFIG_SCSI_MPT2SAS is not set
-# CONFIG_SCSI_MPT3SAS is not set
-# CONFIG_SCSI_UFSHCD is not set
-# CONFIG_SCSI_HPTIOP is not set
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-# CONFIG_SCSI_DMX3191D is not set
-# CONFIG_SCSI_FUTURE_DOMAIN is not set
-# CONFIG_SCSI_IPS is not set
-# CONFIG_SCSI_INITIO is not set
-# CONFIG_SCSI_INIA100 is not set
-# CONFIG_SCSI_STEX is not set
-# CONFIG_SCSI_SYM53C8XX_2 is not set
-# CONFIG_SCSI_QLOGIC_1280 is not set
-# CONFIG_SCSI_QLA_FC is not set
-# CONFIG_SCSI_QLA_ISCSI is not set
-# CONFIG_SCSI_LPFC is not set
-# CONFIG_SCSI_DC395x is not set
-# CONFIG_SCSI_DC390T is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_ZFCP=m
-# CONFIG_SCSI_PMCRAID is not set
-# CONFIG_SCSI_PM8001 is not set
-# CONFIG_SCSI_SRP is not set
-# CONFIG_SCSI_BFA_FC is not set
-CONFIG_SCSI_VIRTIO=m
-# CONFIG_SCSI_CHELSIO_FCOE is not set
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_MD=y
-CONFIG_BLK_DEV_MD=y
-CONFIG_MD_AUTODETECT=y
-CONFIG_MD_LINEAR=m
-CONFIG_MD_RAID0=m
-CONFIG_MD_RAID1=m
-CONFIG_MD_RAID10=m
-CONFIG_MD_RAID456=m
-# CONFIG_MD_MULTIPATH is not set
-CONFIG_MD_FAULTY=m
-# CONFIG_BCACHE is not set
-CONFIG_BLK_DEV_DM_BUILTIN=y
-CONFIG_BLK_DEV_DM=m
-# CONFIG_DM_MQ_DEFAULT is not set
-CONFIG_DM_DEBUG=y
-CONFIG_DM_BUFIO=m
-# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
-CONFIG_DM_BIO_PRISON=m
-CONFIG_DM_PERSISTENT_DATA=m
-CONFIG_DM_CRYPT=m
-CONFIG_DM_SNAPSHOT=m
-CONFIG_DM_THIN_PROVISIONING=m
-CONFIG_DM_CACHE=m
-CONFIG_DM_CACHE_SMQ=m
-CONFIG_DM_ERA=m
-CONFIG_DM_MIRROR=m
-CONFIG_DM_LOG_USERSPACE=m
-CONFIG_DM_RAID=m
-CONFIG_DM_ZERO=m
-CONFIG_DM_MULTIPATH=m
-CONFIG_DM_MULTIPATH_QL=m
-CONFIG_DM_MULTIPATH_ST=m
-CONFIG_DM_DELAY=m
-CONFIG_DM_UEVENT=y
-CONFIG_DM_FLAKEY=m
-CONFIG_DM_VERITY=m
-CONFIG_DM_SWITCH=m
-CONFIG_DM_LOG_WRITES=m
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_TCM_USER2=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-# CONFIG_FUSION is not set
-
-#
-# IEEE 1394 (FireWire) support
-#
-# CONFIG_FIREWIRE is not set
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-CONFIG_BONDING=m
-CONFIG_DUMMY=m
-# CONFIG_EQUALIZER is not set
-# CONFIG_NET_FC is not set
-# CONFIG_MII is not set
-CONFIG_IFB=m
-CONFIG_NET_TEAM=m
-CONFIG_NET_TEAM_MODE_BROADCAST=m
-CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
-CONFIG_NET_TEAM_MODE_RANDOM=m
-CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
-CONFIG_NET_TEAM_MODE_LOADBALANCE=m
-CONFIG_MACVLAN=m
-CONFIG_MACVTAP=m
-CONFIG_VXLAN=m
-CONFIG_GENEVE=m
-CONFIG_MACSEC=m
-CONFIG_NETCONSOLE=m
-CONFIG_NETCONSOLE_DYNAMIC=y
-CONFIG_NETPOLL=y
-CONFIG_NET_POLL_CONTROLLER=y
-CONFIG_TUN=m
-# CONFIG_TUN_VNET_CROSS_LE is not set
-CONFIG_VETH=m
-CONFIG_VIRTIO_NET=m
-CONFIG_NLMON=m
-CONFIG_VSOCKMON=m
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_VHOST_NET=m
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST_RING=m
-CONFIG_VHOST=m
-# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
-CONFIG_ETHERNET=y
-CONFIG_MDIO=m
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
-CONFIG_NET_VENDOR_AMAZON=y
-# CONFIG_ENA_ETHERNET is not set
-# CONFIG_NET_VENDOR_AMD is not set
-CONFIG_NET_VENDOR_AQUANTIA=y
-# CONFIG_NET_VENDOR_ATHEROS is not set
-# CONFIG_NET_CADENCE is not set
-CONFIG_NET_VENDOR_BROADCOM=y
-# CONFIG_B44 is not set
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-# CONFIG_TIGON3 is not set
-CONFIG_BNX2X=m
-CONFIG_BNXT=m
-CONFIG_BNXT_FLOWER_OFFLOAD=y
-CONFIG_BNXT_DCB=y
-# CONFIG_NET_VENDOR_BROCADE is not set
-# CONFIG_NET_CALXEDA_XGMAC is not set
-CONFIG_NET_VENDOR_CAVIUM=y
-CONFIG_LIQUIDIO=m
-CONFIG_LIQUIDIO_VF=m
-# CONFIG_NET_VENDOR_CHELSIO is not set
-# CONFIG_NET_VENDOR_CISCO is not set
-# CONFIG_DNET is not set
-# CONFIG_NET_VENDOR_DEC is not set
-# CONFIG_NET_VENDOR_DLINK is not set
-# CONFIG_NET_VENDOR_EMULEX is not set
-# CONFIG_NET_VENDOR_EXAR is not set
-CONFIG_NET_VENDOR_GOOGLE=y
-CONFIG_GVE=m
-# CONFIG_NET_VENDOR_HP is not set
-# CONFIG_NET_VENDOR_INTEL is not set
-# CONFIG_IP1000 is not set
-# CONFIG_JME is not set
-# CONFIG_NET_VENDOR_MARVELL is not set
-CONFIG_NET_VENDOR_MELLANOX=y
-CONFIG_MLX4_EN=m
-CONFIG_MLX4_EN_DCB=y
-CONFIG_MLX4_CORE=m
-CONFIG_MLX4_DEBUG=y
-CONFIG_MLX4_CORE_GEN2=y
-CONFIG_MLX5_CORE=m
-# CONFIG_MLX5_FPGA is not set
-CONFIG_MLX5_CORE_EN=y
-CONFIG_MLX5_EN_RXNFC=y
-CONFIG_MLX5_MPFS=y
-CONFIG_MLX5_ESWITCH=y
-CONFIG_MLX5_CORE_EN_DCB=y
-CONFIG_MLX5_CORE_IPOIB=y
-CONFIG_MLXSW_CORE=m
-CONFIG_MLXSW_PCI=m
-# CONFIG_MLXSW_I2C is not set
-CONFIG_MLXSW_SWITCHIB=m
-CONFIG_MLXSW_SWITCHX2=m
-CONFIG_MLXSW_SPECTRUM=m
-CONFIG_MLXSW_SPECTRUM_DCB=y
-CONFIG_MLXFW=m
-# CONFIG_NET_VENDOR_MICREL is not set
-# CONFIG_NET_VENDOR_MYRI is not set
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
-CONFIG_NET_VENDOR_NETRONOME=y
-CONFIG_NFP=m
-CONFIG_NFP_APP_FLOWER=y
-CONFIG_NFP_APP_ABM_NIC=y
-CONFIG_NFP_DEBUG=y
-# CONFIG_NET_VENDOR_NVIDIA is not set
-# CONFIG_NET_VENDOR_OKI is not set
-# CONFIG_ETHOC is not set
-# CONFIG_NET_PACKET_ENGINE is not set
-# CONFIG_NET_VENDOR_QLOGIC is not set
-# CONFIG_NET_VENDOR_REALTEK is not set
-# CONFIG_NET_VENDOR_RDC is not set
-CONFIG_NET_VENDOR_ROCKER=y
-CONFIG_ROCKER=m
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
-CONFIG_NET_VENDOR_SOLARFLARE=y
-# CONFIG_SFC is not set
-# CONFIG_SFC_FALCON is not set
-# CONFIG_NET_VENDOR_SMSC is not set
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-# CONFIG_NET_VENDOR_TI is not set
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_NET_VENDOR_WIZNET is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-# CONFIG_PHYLIB is not set
-# CONFIG_PPP is not set
-# CONFIG_SLIP is not set
-
-#
-# S/390 network device drivers
-#
-CONFIG_LCS=m
-CONFIG_CTCM=m
-# CONFIG_NETIUCV is not set
-CONFIG_SMSGIUCV=m
-CONFIG_SMSGIUCV_EVENT=m
-# CONFIG_CLAW is not set
-CONFIG_QETH=m
-CONFIG_QETH_L2=m
-CONFIG_QETH_L3=m
-CONFIG_QETH_IPV6=y
-CONFIG_CCWGROUP=m
-
-#
-# Host-side USB support is needed for USB Network Adapter support
-#
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-CONFIG_WAN=y
-# CONFIG_LANMEDIA is not set
-CONFIG_HDLC=m
-CONFIG_HDLC_RAW=m
-# CONFIG_HDLC_RAW_ETH is not set
-CONFIG_HDLC_CISCO=m
-CONFIG_HDLC_FR=m
-CONFIG_HDLC_PPP=m
-
-#
-# X.25/LAPB support is disabled
-#
-# CONFIG_PCI200SYN is not set
-# CONFIG_WANXL is not set
-# CONFIG_PC300TOO is not set
-# CONFIG_FARSYNC is not set
-# CONFIG_DSCC4 is not set
-CONFIG_DLCI=m
-CONFIG_DLCI_MAX=8
-CONFIG_IEEE802154_DRIVERS=m
-CONFIG_IEEE802154_FAKELB=m
-# CONFIG_VMXNET3 is not set
-CONFIG_NET_FAILOVER=m
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-# CONFIG_INPUT_FF_MEMLESS is not set
-# CONFIG_INPUT_POLLDEV is not set
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-# CONFIG_INPUT_MOUSEDEV is not set
-# CONFIG_INPUT_JOYDEV is not set
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-# CONFIG_INPUT_KEYBOARD is not set
-# CONFIG_INPUT_MOUSE is not set
-# CONFIG_INPUT_JOYSTICK is not set
-# CONFIG_INPUT_TABLET is not set
-# CONFIG_INPUT_TOUCHSCREEN is not set
-# CONFIG_INPUT_MISC is not set
-# CONFIG_RMI4_CORE is not set
-
-#
-# Hardware I/O ports
-#
-# CONFIG_SERIO is not set
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_VT_CONSOLE_SLEEP=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-# CONFIG_SERIAL_NONSTANDARD is not set
-# CONFIG_NOZOMI is not set
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=m
-CONFIG_HVC_DRIVER=y
-CONFIG_HVC_IUCV=y
-CONFIG_VIRTIO_CONSOLE=y
-# CONFIG_IPMI_HANDLER is not set
-CONFIG_HW_RANDOM=y
-# CONFIG_HW_RANDOM_TIMERIOMEM is not set
-CONFIG_HW_RANDOM_VIRTIO=m
-CONFIG_HW_RANDOM_S390=y
-# CONFIG_R3964 is not set
-# CONFIG_APPLICOM is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-CONFIG_HANGCHECK_TIMER=m
-CONFIG_TCG_TPM=y
-# CONFIG_HW_RANDOM_TPM is not set
-CONFIG_TCG_TIS_I2C_ATMEL=m
-CONFIG_TCG_TIS_I2C_INFINEON=m
-# CONFIG_TCG_TIS_I2C_NUVOTON is not set
-# CONFIG_TCG_VTPM_PROXY is not set
-# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
-CONFIG_DEVPORT=y
-
-#
-# S/390 character device drivers
-#
-CONFIG_TN3270=y
-CONFIG_TN3270_TTY=y
-CONFIG_TN3270_FS=m
-CONFIG_TN3270_CONSOLE=y
-CONFIG_TN3215=y
-CONFIG_TN3215_CONSOLE=y
-CONFIG_CCW_CONSOLE=y
-CONFIG_SCLP_TTY=y
-CONFIG_SCLP_CONSOLE=y
-CONFIG_SCLP_VT220_TTY=y
-CONFIG_SCLP_VT220_CONSOLE=y
-CONFIG_SCLP_CPI=m
-CONFIG_SCLP_ASYNC=m
-CONFIG_HMC_DRV=m
-CONFIG_S390_TAPE=m
-
-#
-# S/390 tape hardware support
-#
-CONFIG_S390_TAPE_34XX=m
-CONFIG_S390_TAPE_3590=m
-CONFIG_VMLOGRDR=m
-CONFIG_VMCP=y
-CONFIG_MONREADER=m
-CONFIG_MONWRITER=m
-CONFIG_S390_VMUR=m
-
-#
-# I2C support
-#
-CONFIG_I2C=m
-CONFIG_I2C_BOARDINFO=y
-# CONFIG_I2C_COMPAT is not set
-# CONFIG_I2C_CHARDEV is not set
-# CONFIG_I2C_MUX is not set
-# CONFIG_I2C_HELPER_AUTO is not set
-
-#
-# I2C Algorithms
-#
-CONFIG_I2C_ALGOBIT=m
-# CONFIG_I2C_ALGOPCF is not set
-# CONFIG_I2C_ALGOPCA is not set
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-# CONFIG_I2C_AMD756 is not set
-# CONFIG_I2C_AMD8111 is not set
-# CONFIG_I2C_I801 is not set
-# CONFIG_I2C_PIIX4 is not set
-# CONFIG_I2C_NFORCE2 is not set
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-# CONFIG_I2C_SIS96X is not set
-# CONFIG_I2C_VIA is not set
-# CONFIG_I2C_VIAPRO is not set
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_EG20T is not set
-# CONFIG_I2C_INTEL_MID is not set
-# CONFIG_I2C_PCA_PLATFORM is not set
-# CONFIG_I2C_PXA_PCI is not set
-# CONFIG_I2C_SIMTEC is not set
-# CONFIG_I2C_XILINX is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-# CONFIG_I2C_TAOS_EVM is not set
-
-#
-# Other I2C/SMBus bus drivers
-#
-# CONFIG_I2C_STUB is not set
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-# CONFIG_SPI is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-
-#
-# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
-#
-# CONFIG_PTP_1588_CLOCK_PCH is not set
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-# CONFIG_BATTERY_DS2781 is not set
-# CONFIG_BATTERY_DS2782 is not set
-# CONFIG_BATTERY_SBS is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-# CONFIG_BATTERY_MAX17040 is not set
-# CONFIG_BATTERY_MAX17042 is not set
-# CONFIG_CHARGER_LP8727 is not set
-# CONFIG_CHARGER_BQ2415X is not set
-# CONFIG_CHARGER_SMB347 is not set
-CONFIG_POWER_RESET=y
-# CONFIG_POWER_AVS is not set
-# CONFIG_POWERCAP is not set
-# CONFIG_HWMON is not set
-# CONFIG_THERMAL is not set
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_CORE=y
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
-CONFIG_WATCHDOG_SYSFS=y
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-# CONFIG_ALIM7101_WDT is not set
-# CONFIG_I6300ESB_WDT is not set
-CONFIG_DIAG288_WATCHDOG=m
-
-#
-# PCI-based Watchdog Cards
-#
-# CONFIG_PCIPCWATCHDOG is not set
-# CONFIG_WDTPCI is not set
-
-#
-# Watchdog Pretimeout Governors
-#
-# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-# CONFIG_SSB is not set
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-# CONFIG_BCMA is not set
-
-#
-# Multifunction device drivers
-#
-# CONFIG_MFD_CORE is not set
-# CONFIG_MFD_CROS_EC is not set
-# CONFIG_MFD_PCF50633 is not set
-# CONFIG_MFD_SI476X_CORE is not set
-# CONFIG_MFD_SM501 is not set
-# CONFIG_ABX500_CORE is not set
-# CONFIG_MFD_SYSCON is not set
-# CONFIG_MFD_TMIO is not set
-# CONFIG_REGULATOR is not set
-# CONFIG_MEDIA_SUPPORT is not set
-
-#
-# Graphics support
-#
-CONFIG_DRM=m
-# CONFIG_DRM_DP_AUX_CHARDEV is not set
-# CONFIG_DRM_DEBUG_SELFTEST is not set
-CONFIG_DRM_KMS_HELPER=m
-CONFIG_DRM_KMS_FB_HELPER=y
-CONFIG_DRM_FBDEV_EMULATION=y
-CONFIG_DRM_FBDEV_OVERALLOC=100
-# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
-# CONFIG_DRM_DP_CEC is not set
-CONFIG_DRM_TTM=m
-
-#
-# I2C encoder or helper chips
-#
-# CONFIG_DRM_I2C_CH7006 is not set
-# CONFIG_DRM_I2C_SIL164 is not set
-# CONFIG_DRM_I2C_NXP_TDA998X is not set
-# CONFIG_DRM_I2C_NXP_TDA9950 is not set
-# CONFIG_DRM_RADEON is not set
-# CONFIG_DRM_AMDGPU is not set
-
-#
-# ACP (Audio CoProcessor) Configuration
-#
-
-#
-# AMD Library routines
-#
-# CONFIG_CHASH is not set
-# CONFIG_DRM_NOUVEAU is not set
-CONFIG_DRM_VGEM=m
-# CONFIG_DRM_VKMS is not set
-# CONFIG_DRM_AST is not set
-# CONFIG_DRM_MGAG200 is not set
-# CONFIG_DRM_CIRRUS_QEMU is not set
-# CONFIG_DRM_QXL is not set
-# CONFIG_DRM_BOCHS is not set
-CONFIG_DRM_VIRTIO_GPU=m
-# CONFIG_DRM_LEGACY is not set
-CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
-# CONFIG_DRM_LIB_RANDOM is not set
-# CONFIG_VGASTATE is not set
-# CONFIG_VIDEO_OUTPUT_CONTROL is not set
-CONFIG_HDMI=y
-CONFIG_FB=y
-# CONFIG_FIRMWARE_EDID is not set
-# CONFIG_FB_DDC is not set
-# CONFIG_FB_BOOT_VESA_SUPPORT is not set
-CONFIG_FB_CFB_FILLRECT=m
-CONFIG_FB_CFB_COPYAREA=m
-CONFIG_FB_CFB_IMAGEBLIT=m
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-CONFIG_FB_DEFERRED_IO=y
-# CONFIG_FB_SVGALIB is not set
-# CONFIG_FB_MACMODES is not set
-# CONFIG_FB_BACKLIGHT is not set
-# CONFIG_FB_MODE_HELPERS is not set
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-# CONFIG_FB_UVESA is not set
-# CONFIG_FB_S1D13XXX is not set
-# CONFIG_FB_NVIDIA is not set
-# CONFIG_FB_RIVA is not set
-# CONFIG_FB_I740 is not set
-# CONFIG_FB_MATROX is not set
-# CONFIG_FB_RADEON is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_GOLDFISH is not set
-# CONFIG_FB_VIRTUAL is not set
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-# CONFIG_FB_AUO_K190X is not set
-# CONFIG_EXYNOS_VIDEO is not set
-# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
-# CONFIG_LOGO is not set
-
-#
-# Console display driver support
-#
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-# CONFIG_SOUND is not set
-
-#
-# HID support
-#
-# CONFIG_HID is not set
-
-#
-# I2C HID support
-#
-# CONFIG_I2C_HID is not set
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-# CONFIG_USB_SUPPORT is not set
-# CONFIG_UWB is not set
-# CONFIG_MMC is not set
-# CONFIG_MEMSTICK is not set
-# CONFIG_NEW_LEDS is not set
-# CONFIG_ACCESSIBILITY is not set
-CONFIG_INFINIBAND=m
-# CONFIG_INFINIBAND_USER_MAD is not set
-CONFIG_INFINIBAND_USER_ACCESS=m
-# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
-CONFIG_INFINIBAND_USER_MEM=y
-# CONFIG_INFINIBAND_ON_DEMAND_PAGING is not set
-CONFIG_INFINIBAND_ADDR_TRANS=y
-CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
-# CONFIG_INFINIBAND_MTHCA is not set
-# CONFIG_INFINIBAND_AMSO1100 is not set
-CONFIG_MLX4_INFINIBAND=m
-CONFIG_MLX5_INFINIBAND=m
-# CONFIG_INFINIBAND_NES is not set
-# CONFIG_INFINIBAND_OCRDMA is not set
-# CONFIG_INFINIBAND_IPOIB is not set
-# CONFIG_INFINIBAND_SRP is not set
-# CONFIG_INFINIBAND_SRPT is not set
-# CONFIG_INFINIBAND_ISER is not set
-# CONFIG_INFINIBAND_ISERT is not set
-CONFIG_RDMA_RXE=m
-CONFIG_INFINIBAND_BNXT_RE=m
-# CONFIG_DMADEVICES is not set
-
-#
-# DMABUF options
-#
-CONFIG_SYNC_FILE=y
-# CONFIG_SW_SYNC is not set
-CONFIG_AUXDISPLAY=y
-CONFIG_UIO=m
-# CONFIG_UIO_CIF is not set
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_DMEM_GENIRQ is not set
-# CONFIG_UIO_AEC is not set
-# CONFIG_UIO_SERCOS3 is not set
-# CONFIG_UIO_PCI_GENERIC is not set
-# CONFIG_UIO_NETX is not set
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=y
-
-#
-# Virtio drivers
-#
-# CONFIG_VIRTIO_PCI is not set
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-# CONFIG_VIRTIO_MMIO is not set
-
-#
-# Microsoft Hyper-V guest support
-#
-# CONFIG_HYPERV_TSCPAGE is not set
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_DX_SEP is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_CXT1E1 is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_SBE_2T3E3 is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_NET_VENDOR_SILICOM is not set
-# CONFIG_DGRP is not set
-# CONFIG_ZCACHE is not set
-
-#
-# Hardware Spinlock drivers
-#
-# CONFIG_MAILBOX is not set
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_IOMMU_DEBUGFS is not set
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-# CONFIG_NTB is not set
-# CONFIG_VME_BUS is not set
-# CONFIG_PWM is not set
-# CONFIG_IPACK_BUS is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_LIBNVDIMM=m
-CONFIG_BLK_DEV_PMEM=m
-CONFIG_ND_BLK=m
-CONFIG_ND_CLAIM=y
-CONFIG_ND_BTT=m
-CONFIG_BTT=y
-CONFIG_NVDIMM_KEYS=y
-CONFIG_DAX_DRIVER=y
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-# CONFIG_STM is not set
-# CONFIG_INTEL_TH is not set
-CONFIG_NVMEM=y
-
-#
-# File systems
-#
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=m
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-CONFIG_EXT4_DEBUG=y
-CONFIG_JBD2=m
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=m
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=m
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-CONFIG_XFS_WARN=y
-# CONFIG_XFS_DEBUG is not set
-CONFIG_GFS2_FS=m
-CONFIG_GFS2_FS_LOCKING_DLM=y
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-CONFIG_BTRFS_ASSERT=y
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_DAX_LIMITED=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-CONFIG_QUOTA_DEBUG=y
-CONFIG_QUOTA_TREE=y
-# CONFIG_QFMT_V1 is not set
-CONFIG_QFMT_V2=y
-CONFIG_QUOTACTL=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-CONFIG_FSCACHE_OBJECT_LIST=y
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_LOGFS is not set
-CONFIG_CRAMFS=m
-CONFIG_SQUASHFS=m
-CONFIG_SQUASHFS_XATTR=y
-CONFIG_SQUASHFS_ZLIB=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_SQUASHFS_XZ=y
-# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
-# CONFIG_SQUASHFS_EMBEDDED is not set
-CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_MINIX_FS_NATIVE_ENDIAN is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-# CONFIG_PSTORE_RAM is not set
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-CONFIG_ORE=m
-CONFIG_NETWORK_FILESYSTEMS=y
-CONFIG_NFS_FS=m
-# CONFIG_NFS_V2 is not set
-CONFIG_NFS_V3=m
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=m
-# CONFIG_NFS_SWAP is not set
-CONFIG_NFS_V4_1=y
-CONFIG_NFS_V4_2=y
-CONFIG_PNFS_FILE_LAYOUT=m
-CONFIG_PNFS_BLOCK=m
-CONFIG_PNFS_OBJLAYOUT=m
-CONFIG_PNFS_FLEXFILE_LAYOUT=m
-CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
-# CONFIG_NFS_V4_1_MIGRATION is not set
-CONFIG_NFS_V4_SECURITY_LABEL=y
-CONFIG_NFS_FSCACHE=y
-# CONFIG_NFS_USE_LEGACY_DNS is not set
-CONFIG_NFS_USE_KERNEL_DNS=y
-CONFIG_NFS_DEBUG=y
-CONFIG_NFSD=m
-CONFIG_NFSD_V2_ACL=y
-CONFIG_NFSD_V3=y
-CONFIG_NFSD_V3_ACL=y
-CONFIG_NFSD_V4=y
-CONFIG_NFSD_PNFS=y
-# CONFIG_NFSD_BLOCKLAYOUT is not set
-CONFIG_NFSD_SCSILAYOUT=y
-CONFIG_NFSD_V4_SECURITY_LABEL=y
-CONFIG_NFSD_FAULT_INJECTION=y
-CONFIG_GRACE_PERIOD=m
-CONFIG_LOCKD=m
-CONFIG_LOCKD_V4=y
-CONFIG_NFS_ACL_SUPPORT=m
-CONFIG_NFS_COMMON=y
-CONFIG_SUNRPC=m
-CONFIG_SUNRPC_GSS=m
-CONFIG_SUNRPC_BACKCHANNEL=y
-CONFIG_RPCSEC_GSS_KRB5=m
-CONFIG_SUNRPC_DEBUG=y
-CONFIG_SUNRPC_XPRT_RDMA=m
-CONFIG_CEPH_FS=m
-CONFIG_CEPH_FS_POSIX_ACL=y
-CONFIG_CIFS=m
-CONFIG_CIFS_STATS=y
-# CONFIG_CIFS_STATS2 is not set
-CONFIG_CIFS_WEAK_PW_HASH=y
-CONFIG_CIFS_UPCALL=y
-CONFIG_CIFS_XATTR=y
-CONFIG_CIFS_POSIX=y
-CONFIG_CIFS_ACL=y
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
-CONFIG_CIFS_DFS_UPCALL=y
-# CONFIG_CIFS_SMB311 is not set
-# CONFIG_CIFS_FSCACHE is not set
-# CONFIG_NCP_FS is not set
-# CONFIG_CODA_FS is not set
-# CONFIG_AFS_FS is not set
-CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_737=m
-CONFIG_NLS_CODEPAGE_775=m
-CONFIG_NLS_CODEPAGE_850=m
-CONFIG_NLS_CODEPAGE_852=m
-CONFIG_NLS_CODEPAGE_855=m
-CONFIG_NLS_CODEPAGE_857=m
-CONFIG_NLS_CODEPAGE_860=m
-CONFIG_NLS_CODEPAGE_861=m
-CONFIG_NLS_CODEPAGE_862=m
-CONFIG_NLS_CODEPAGE_863=m
-CONFIG_NLS_CODEPAGE_864=m
-CONFIG_NLS_CODEPAGE_865=m
-CONFIG_NLS_CODEPAGE_866=m
-CONFIG_NLS_CODEPAGE_869=m
-CONFIG_NLS_CODEPAGE_936=m
-CONFIG_NLS_CODEPAGE_950=m
-CONFIG_NLS_CODEPAGE_932=m
-CONFIG_NLS_CODEPAGE_949=m
-CONFIG_NLS_CODEPAGE_874=m
-CONFIG_NLS_ISO8859_8=m
-CONFIG_NLS_CODEPAGE_1250=m
-CONFIG_NLS_CODEPAGE_1251=m
-CONFIG_NLS_ASCII=y
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_ISO8859_2=m
-CONFIG_NLS_ISO8859_3=m
-CONFIG_NLS_ISO8859_4=m
-CONFIG_NLS_ISO8859_5=m
-CONFIG_NLS_ISO8859_6=m
-CONFIG_NLS_ISO8859_7=m
-CONFIG_NLS_ISO8859_9=m
-CONFIG_NLS_ISO8859_13=m
-CONFIG_NLS_ISO8859_14=m
-CONFIG_NLS_ISO8859_15=m
-CONFIG_NLS_KOI8_R=m
-CONFIG_NLS_KOI8_U=m
-CONFIG_NLS_MAC_ROMAN=m
-CONFIG_NLS_MAC_CELTIC=m
-CONFIG_NLS_MAC_CENTEURO=m
-CONFIG_NLS_MAC_CROATIAN=m
-CONFIG_NLS_MAC_CYRILLIC=m
-CONFIG_NLS_MAC_GAELIC=m
-CONFIG_NLS_MAC_GREEK=m
-CONFIG_NLS_MAC_ICELAND=m
-CONFIG_NLS_MAC_INUIT=m
-CONFIG_NLS_MAC_ROMANIAN=m
-CONFIG_NLS_MAC_TURKISH=m
-CONFIG_NLS_UTF8=m
-CONFIG_DLM=m
-CONFIG_DLM_DEBUG=y
-
-#
-# Kernel hacking
-#
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=1024
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-# CONFIG_PAGE_OWNER is not set
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-# CONFIG_WQ_WATCHDOG is not set
-# CONFIG_PANIC_ON_OOPS is not set
-CONFIG_PANIC_ON_OOPS_VALUE=0
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_PANIC_TIMEOUT=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-CONFIG_DEBUG_OBJECTS=y
-# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
-CONFIG_DEBUG_OBJECTS_FREE=y
-CONFIG_DEBUG_OBJECTS_TIMERS=y
-CONFIG_DEBUG_OBJECTS_WORK=y
-CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
-CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
-CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-CONFIG_DEBUG_KMEMLEAK=y
-CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=20000
-# CONFIG_DEBUG_KMEMLEAK_TEST is not set
-CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-CONFIG_PROVE_LOCKING=y
-CONFIG_LOCK_STAT=y
-CONFIG_DEBUG_RT_MUTEXES=y
-CONFIG_DEBUG_PI_LIST=y
-# CONFIG_RT_MUTEX_TESTER is not set
-CONFIG_DEBUG_SPINLOCK=y
-CONFIG_DEBUG_MUTEXES=y
-CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
-CONFIG_DEBUG_RWSEMS=y
-CONFIG_DEBUG_LOCK_ALLOC=y
-CONFIG_LOCKDEP=y
-# CONFIG_DEBUG_LOCKDEP is not set
-CONFIG_TRACE_IRQFLAGS=y
-CONFIG_DEBUG_ATOMIC_SLEEP=y
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-CONFIG_DEBUG_STACK_USAGE=y
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-CONFIG_DEBUG_VM=y
-# CONFIG_DEBUG_VM_RB is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-CONFIG_TEST_LIST_SORT=y
-CONFIG_DEBUG_SG=y
-CONFIG_DEBUG_NOTIFIERS=y
-CONFIG_DEBUG_CREDENTIALS=y
-
-#
-# RCU Debugging
-#
-CONFIG_PROVE_RCU=y
-# CONFIG_PROVE_RCU_REPEATEDLY is not set
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-CONFIG_DEBUG_PER_CPU_MAPS=y
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-CONFIG_FAULT_INJECTION=y
-CONFIG_FAILSLAB=y
-CONFIG_FAIL_PAGE_ALLOC=y
-CONFIG_FAIL_MAKE_REQUEST=y
-CONFIG_FAIL_IO_TIMEOUT=y
-CONFIG_FAULT_INJECTION_DEBUG_FS=y
-CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y
-CONFIG_LATENCYTOP=y
-CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
-# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
-CONFIG_PAGE_EXTENSION=y
-CONFIG_DEBUG_PAGEALLOC=y
-CONFIG_WANT_PAGE_DEBUG_FLAGS=y
-# CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT is not set
-CONFIG_PAGE_GUARD=y
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_HAVE_C_RECORDMCOUNT=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-CONFIG_FUNCTION_GRAPH_TRACER=y
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-# CONFIG_STACK_TRACER is not set
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
-# CONFIG_FUNCTION_PROFILER is not set
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_TEST_PARMAN is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-CONFIG_DMA_API_DEBUG=y
-CONFIG_ATOMIC64_SELFTEST=y
-CONFIG_ASYNC_RAID6_TEST=m
-# CONFIG_SAMPLES is not set
-CONFIG_TEST_STRING_HELPERS=m
-CONFIG_TEST_KSTRTOX=y
-# CONFIG_STRICT_DEVMEM is not set
-# CONFIG_S390_PTDUMP is not set
-CONFIG_DEBUG_SET_MODULE_RONX=y
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_KEYS_COMPAT=y
-CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_BIG_KEYS=y
-CONFIG_TRUSTED_KEYS=y
-CONFIG_ENCRYPTED_KEYS=y
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
-CONFIG_SECURITY=y
-CONFIG_SECURITYFS=y
-CONFIG_SECURITY_NETWORK=y
-CONFIG_SECURITY_INFINIBAND=y
-CONFIG_SECURITY_NETWORK_XFRM=y
-CONFIG_SECURITY_PATH=y
-CONFIG_SECURITY_SECURELEVEL=y
-CONFIG_LSM_MMAP_MIN_ADDR=65535
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
-CONFIG_SECURITY_SELINUX=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
-CONFIG_SECURITY_SELINUX_DISABLE=y
-CONFIG_SECURITY_SELINUX_DEVELOP=y
-CONFIG_SECURITY_SELINUX_AVC_STATS=y
-CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
-# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
-# CONFIG_SECURITY_SMACK is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
-CONFIG_SECURITY_YAMA=y
-CONFIG_SECURITY_YAMA_STACKED=y
-CONFIG_INTEGRITY=y
-CONFIG_INTEGRITY_SIGNATURE=y
-CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
-CONFIG_IMA=y
-CONFIG_IMA_MEASURE_PCR_IDX=10
-CONFIG_IMA_AUDIT=y
-CONFIG_IMA_LSM_RULES=y
-CONFIG_IMA_APPRAISE=y
-CONFIG_IMA_TRUSTED_KEYRING=y
-CONFIG_EVM=y
-CONFIG_EVM_HMAC_VERSION=2
-CONFIG_DEFAULT_SECURITY_SELINUX=y
-# CONFIG_DEFAULT_SECURITY_YAMA is not set
-# CONFIG_DEFAULT_SECURITY_DAC is not set
-CONFIG_DEFAULT_SECURITY="selinux"
-CONFIG_XOR_BLOCKS=m
-CONFIG_ASYNC_CORE=m
-CONFIG_ASYNC_MEMCPY=m
-CONFIG_ASYNC_XOR=m
-CONFIG_ASYNC_PQ=m
-CONFIG_ASYNC_RAID6_RECOV=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_ACOMP2=y
-# CONFIG_CRYPTO_RSA is not set
-# CONFIG_CRYPTO_DH is not set
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-# CONFIG_CRYPTO_CRYPTD is not set
-# CONFIG_CRYPTO_MCRYPTD is not set
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRCT10DIF=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=m
-# CONFIG_CRYPTO_842 is not set
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-CONFIG_ZCRYPT=m
-CONFIG_ZCRYPT_MULTIDEVNODES=y
-CONFIG_PKEY=m
-CONFIG_CRYPTO_PAES_S390=m
-CONFIG_CRYPTO_SHA1_S390=y
-CONFIG_CRYPTO_SHA256_S390=y
-CONFIG_CRYPTO_SHA512_S390=m
-CONFIG_CRYPTO_DES_S390=m
-CONFIG_CRYPTO_AES_S390=m
-CONFIG_S390_PRNG=m
-CONFIG_CRYPTO_GHASH_S390=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-# CONFIG_PKCS7_MESSAGE_PARSER is not set
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_FIND_FIRST_BIT=y
-CONFIG_GENERIC_IO=y
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=m
-CONFIG_CRC8=m
-CONFIG_RANDOM32_SELFTEST=y
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=m
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
-CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
-CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_DMA=y
-CONFIG_DMA_VIRT_OPS=y
-CONFIG_CPUMASK_OFFSTACK=y
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-CONFIG_IRQ_POLL=y
-CONFIG_MPILIB=y
-CONFIG_SIGNATURE=y
-CONFIG_OID_REGISTRY=y
-CONFIG_SG_POOL=y
-CONFIG_PARMAN=m
-CONFIG_SBITMAP=y
-
-#
-# Virtualization
-#
-CONFIG_PROTECTED_VIRTUALIZATION_GUEST=y
-CONFIG_PFAULT=y
-CONFIG_CMM=m
-CONFIG_CMM_IUCV=y
-CONFIG_APPLDATA_BASE=y
-CONFIG_APPLDATA_MEM=m
-CONFIG_APPLDATA_OS=m
-CONFIG_APPLDATA_NET_SUM=m
-CONFIG_S390_HYPFS_FS=y
-CONFIG_HAVE_KVM=y
-CONFIG_VIRTUALIZATION=y
-# CONFIG_KVM is not set
-CONFIG_S390_GUEST=y
-# CONFIG_S390_GUEST_OLD_TRANSPORT is not set
-# CONFIG_RH_KABI_SIZE_ALIGN_CHECKS is not set
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x-kdump.config b/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x-kdump.config
deleted file mode 100644
index bdc5500..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x-kdump.config
+++ /dev/null
@@ -1,1434 +0,0 @@
-# s390
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/s390 3.10.0 Kernel Configuration
-#
-CONFIG_ARCH_HAS_MEM_ENCRYPT=y
-CONFIG_MMU=y
-CONFIG_ZONE_DMA=y
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-# CONFIG_ARCH_HAS_ILOG2_U32 is not set
-# CONFIG_ARCH_HAS_ILOG2_U64 is not set
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_GENERIC_BUG=y
-CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_KEXEC=y
-CONFIG_AUDIT_ARCH=y
-CONFIG_NO_IOPORT=y
-# CONFIG_PCI_QUIRKS is not set
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_S390=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-CONFIG_BUILDTIME_EXTABLE_SORT=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-CONFIG_LOCALVERSION_AUTO=y
-CONFIG_HAVE_KERNEL_GZIP=y
-CONFIG_HAVE_KERNEL_BZIP2=y
-CONFIG_HAVE_KERNEL_LZMA=y
-CONFIG_HAVE_KERNEL_XZ=y
-CONFIG_HAVE_KERNEL_LZO=y
-CONFIG_KERNEL_GZIP=y
-# CONFIG_KERNEL_BZIP2 is not set
-# CONFIG_KERNEL_LZMA is not set
-# CONFIG_KERNEL_XZ is not set
-# CONFIG_KERNEL_LZO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-# CONFIG_SWAP is not set
-# CONFIG_SYSVIPC is not set
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
-# CONFIG_AUDIT is not set
-CONFIG_GENERIC_TIME_VSYSCALL=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-CONFIG_NO_HZ_IDLE=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y
-# CONFIG_BSD_PROCESS_ACCT is not set
-# CONFIG_TASKSTATS is not set
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-# CONFIG_BUILD_BIN2C is not set
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=16
-CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-# CONFIG_CPUSETS is not set
-CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
-CONFIG_MEMCG=y
-CONFIG_MEMCG_KMEM=y
-# CONFIG_CGROUP_HUGETLB is not set
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
-CONFIG_CHECKPOINT_RESTORE=y
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-# CONFIG_SCHED_AUTOGROUP is not set
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-# CONFIG_RELAY is not set
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE="arch/s390/boot/zfcpdump_initramfs.txt"
-CONFIG_INITRAMFS_ROOT_UID=0
-CONFIG_INITRAMFS_ROOT_GID=0
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
-# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
-CONFIG_INITRAMFS_COMPRESSION_BZIP2=y
-# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
-# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
-# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-# CONFIG_USERFAULTFD is not set
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_OPROFILE=m
-CONFIG_HAVE_OPROFILE=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_KRETPROBES=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
-CONFIG_HAVE_CMPXCHG_LOCAL=y
-CONFIG_HAVE_CMPXCHG_DOUBLE=y
-CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-# CONFIG_CC_STACKPROTECTOR is not set
-CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_CLONE_BACKWARDS2=y
-CONFIG_OLD_SIGSUSPEND3=y
-CONFIG_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
-CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_SHA1=y
-# CONFIG_MODULE_SIG_SHA224 is not set
-# CONFIG_MODULE_SIG_SHA256 is not set
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha1"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-# CONFIG_OSF_PARTITION is not set
-# CONFIG_AMIGA_PARTITION is not set
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_IBM_PARTITION=y
-# CONFIG_MAC_PARTITION is not set
-CONFIG_MSDOS_PARTITION=y
-# CONFIG_BSD_DISKLABEL is not set
-# CONFIG_MINIX_SUBPARTITION is not set
-# CONFIG_SOLARIS_X86_PARTITION is not set
-# CONFIG_UNIXWARE_DISKLABEL is not set
-# CONFIG_LDM_PARTITION is not set
-# CONFIG_SGI_PARTITION is not set
-# CONFIG_ULTRIX_PARTITION is not set
-# CONFIG_SUN_PARTITION is not set
-# CONFIG_KARMA_PARTITION is not set
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
-CONFIG_MQ_IOSCHED_DEADLINE=y
-CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y
-CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_LOCK=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y
-CONFIG_ARCH_INLINE_READ_TRYLOCK=y
-CONFIG_ARCH_INLINE_READ_LOCK=y
-CONFIG_ARCH_INLINE_READ_LOCK_BH=y
-CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_READ_UNLOCK=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y
-CONFIG_ARCH_INLINE_WRITE_TRYLOCK=y
-CONFIG_ARCH_INLINE_WRITE_LOCK=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y
-CONFIG_INLINE_SPIN_TRYLOCK=y
-CONFIG_INLINE_SPIN_TRYLOCK_BH=y
-CONFIG_INLINE_SPIN_LOCK=y
-CONFIG_INLINE_SPIN_LOCK_BH=y
-CONFIG_INLINE_SPIN_LOCK_IRQ=y
-CONFIG_INLINE_SPIN_LOCK_IRQSAVE=y
-CONFIG_INLINE_SPIN_UNLOCK_BH=y
-CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
-CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE=y
-CONFIG_INLINE_READ_TRYLOCK=y
-CONFIG_INLINE_READ_LOCK=y
-CONFIG_INLINE_READ_LOCK_BH=y
-CONFIG_INLINE_READ_LOCK_IRQ=y
-CONFIG_INLINE_READ_LOCK_IRQSAVE=y
-CONFIG_INLINE_READ_UNLOCK=y
-CONFIG_INLINE_READ_UNLOCK_BH=y
-CONFIG_INLINE_READ_UNLOCK_IRQ=y
-CONFIG_INLINE_READ_UNLOCK_IRQRESTORE=y
-CONFIG_INLINE_WRITE_TRYLOCK=y
-CONFIG_INLINE_WRITE_LOCK=y
-CONFIG_INLINE_WRITE_LOCK_BH=y
-CONFIG_INLINE_WRITE_LOCK_IRQ=y
-CONFIG_INLINE_WRITE_LOCK_IRQSAVE=y
-CONFIG_INLINE_WRITE_UNLOCK=y
-CONFIG_INLINE_WRITE_UNLOCK_BH=y
-CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
-CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE=y
-CONFIG_MUTEX_SPIN_ON_OWNER=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_FREEZER=y
-CONFIG_HAVE_LIVEPATCH=y
-# CONFIG_LIVEPATCH is not set
-
-#
-# Processor type and features
-#
-CONFIG_HAVE_MARCH_Z900_FEATURES=y
-CONFIG_HAVE_MARCH_Z990_FEATURES=y
-CONFIG_HAVE_MARCH_Z9_109_FEATURES=y
-CONFIG_HAVE_MARCH_Z10_FEATURES=y
-CONFIG_HAVE_MARCH_Z196_FEATURES=y
-# CONFIG_HAVE_MARCH_ZEC12_FEATURES is not set
-# CONFIG_HAVE_MARCH_Z13_FEATURES is not set
-# CONFIG_MARCH_Z900 is not set
-# CONFIG_MARCH_Z990 is not set
-# CONFIG_MARCH_Z9_109 is not set
-# CONFIG_MARCH_Z10 is not set
-CONFIG_MARCH_Z196=y
-# CONFIG_MARCH_ZEC12 is not set
-# CONFIG_MARCH_Z13 is not set
-# CONFIG_MARCH_G5_TUNE is not set
-# CONFIG_MARCH_Z900_TUNE is not set
-# CONFIG_MARCH_Z990_TUNE is not set
-# CONFIG_MARCH_Z9_109_TUNE is not set
-# CONFIG_MARCH_Z10_TUNE is not set
-# CONFIG_MARCH_Z196_TUNE is not set
-CONFIG_MARCH_ZEC12_TUNE=y
-# CONFIG_MARCH_Z13_TUNE is not set
-# CONFIG_TUNE_DEFAULT is not set
-# CONFIG_TUNE_G5 is not set
-# CONFIG_TUNE_Z900 is not set
-# CONFIG_TUNE_Z990 is not set
-# CONFIG_TUNE_Z9_109 is not set
-# CONFIG_TUNE_Z10 is not set
-# CONFIG_TUNE_Z196 is not set
-CONFIG_TUNE_ZEC12=y
-# CONFIG_TUNE_Z13 is not set
-CONFIG_64BIT=y
-# CONFIG_COMPAT is not set
-CONFIG_SMP=y
-CONFIG_NR_CPUS=32
-# CONFIG_HOTPLUG_CPU is not set
-CONFIG_SCHED_SMT=y
-CONFIG_SCHED_MC=y
-CONFIG_SCHED_BOOK=y
-CONFIG_SCHED_DRAWER=y
-CONFIG_SCHED_TOPOLOGY=y
-CONFIG_PREEMPT_NONE=y
-# CONFIG_PREEMPT_VOLUNTARY is not set
-# CONFIG_PREEMPT is not set
-CONFIG_HZ_100=y
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-# CONFIG_HZ_1000 is not set
-CONFIG_HZ=100
-CONFIG_SCHED_HRTICK=y
-CONFIG_ARCH_RANDOM=y
-# CONFIG_KERNEL_NOBP is not set
-CONFIG_EXPOLINE=y
-# CONFIG_EXPOLINE_OFF is not set
-CONFIG_EXPOLINE_AUTO=y
-# CONFIG_EXPOLINE_FULL is not set
-
-#
-# Memory setup
-#
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_ARCH_HAS_ADD_PAGES=y
-CONFIG_FORCE_MAX_ZONEORDER=9
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_ARCH_DISCARD_MEMBLOCK=y
-CONFIG_MEMORY_ISOLATION=y
-# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_VIRT_TO_BUS=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_TRANSPARENT_HUGEPAGE=y
-CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
-# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-# CONFIG_CMA is not set
-# CONFIG_ZPOOL is not set
-# CONFIG_ZBUD is not set
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-# CONFIG_PERCPU_STATS is not set
-CONFIG_PACK_STACK=y
-# CONFIG_CHECK_STACK is not set
-# CONFIG_WARN_DYNAMIC_STACK is not set
-
-#
-# I/O subsystem
-#
-CONFIG_QDIO=y
-# CONFIG_PCI is not set
-# CONFIG_PCI_DOMAINS is not set
-# CONFIG_HAS_IOMEM is not set
-# CONFIG_IOMMU_HELPER is not set
-# CONFIG_NEED_SG_DMA_LENGTH is not set
-# CONFIG_NEED_DMA_MAP_STATE is not set
-CONFIG_CHSC_SCH=m
-CONFIG_SCM_BUS=y
-CONFIG_EADM_SCH=m
-
-#
-# Dump support
-#
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_CRASH_DUMP=y
-CONFIG_ZFCPDUMP=y
-
-#
-# Executable file formats / Emulations
-#
-CONFIG_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-# CONFIG_BINFMT_MISC is not set
-CONFIG_COREDUMP=y
-CONFIG_SECCOMP=y
-
-#
-# Power Management
-#
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_NET=y
-
-#
-# Networking options
-#
-# CONFIG_PACKET is not set
-# CONFIG_UNIX is not set
-# CONFIG_NET_KEY is not set
-# CONFIG_IUCV is not set
-CONFIG_AFIUCV=m
-# CONFIG_INET is not set
-# CONFIG_NETWORK_SECMARK is not set
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
-# CONFIG_NETFILTER is not set
-CONFIG_ATM=m
-CONFIG_ATM_LANE=m
-# CONFIG_BRIDGE is not set
-# CONFIG_VLAN_8021Q is not set
-# CONFIG_DECNET is not set
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_MAC802154=m
-# CONFIG_NET_SCHED is not set
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
-CONFIG_RPS=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-# CONFIG_NET_PKTGEN is not set
-# CONFIG_CAN is not set
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_INPUT=y
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-# CONFIG_DST_CACHE is not set
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_FAILOVER=m
-CONFIG_HAVE_EBPF_JIT=y
-# CONFIG_PCMCIA is not set
-CONFIG_CCW=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-# CONFIG_SYS_HYPERVISOR is not set
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-# CONFIG_DMA_SHARED_BUFFER is not set
-
-#
-# Bus devices
-#
-# CONFIG_CONNECTOR is not set
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-CONFIG_ZRAM=m
-# CONFIG_BLK_DEV_COW_COMMON is not set
-# CONFIG_BLK_DEV_LOOP is not set
-
-#
-# DRBD disabled because PROC_FS or INET not selected
-#
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-# CONFIG_BLK_DEV_RAM is not set
-# CONFIG_CDROM_PKTCDVD is not set
-# CONFIG_ATA_OVER_ETH is not set
-
-#
-# S/390 block device drivers
-#
-# CONFIG_BLK_DEV_XPRAM is not set
-# CONFIG_DCSSBLK is not set
-# CONFIG_DASD is not set
-CONFIG_SCM_BLOCK=m
-CONFIG_SCM_BLOCK_CLUSTER_WRITE=y
-CONFIG_VIRTIO_BLK=m
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-# CONFIG_SENSORS_LIS3LV02D is not set
-# CONFIG_DUMMY_IRQ is not set
-CONFIG_ENCLOSURE_SERVICES=m
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-# CONFIG_EEPROM_93CX6 is not set
-
-#
-# Texas Instruments shared transport line discipline
-#
-
-#
-# Altera FPGA firmware download module
-#
-# CONFIG_CXL_BASE is not set
-# CONFIG_CXL_KERNEL_API is not set
-# CONFIG_CXL_EEH is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-# CONFIG_RAID_ATTRS is not set
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=y
-# CONFIG_CHR_DEV_ST is not set
-# CONFIG_CHR_DEV_OSST is not set
-# CONFIG_BLK_DEV_SR is not set
-# CONFIG_CHR_DEV_SG is not set
-# CONFIG_CHR_DEV_SCH is not set
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-# CONFIG_SCSI_SPI_ATTRS is not set
-CONFIG_SCSI_FC_ATTRS=y
-# CONFIG_SCSI_ISCSI_ATTRS is not set
-# CONFIG_SCSI_SAS_ATTRS is not set
-# CONFIG_SCSI_SAS_LIBSAS is not set
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_BOOT_SYSFS=m
-# CONFIG_SCSI_UFSHCD is not set
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_SCSI_DEBUG=m
-CONFIG_ZFCP=y
-CONFIG_SCSI_VIRTIO=m
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-# CONFIG_MD is not set
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-# CONFIG_NETDEVICES is not set
-# CONFIG_VHOST_NET is not set
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST=m
-# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-# CONFIG_INPUT_FF_MEMLESS is not set
-# CONFIG_INPUT_POLLDEV is not set
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-# CONFIG_INPUT_MOUSEDEV is not set
-# CONFIG_INPUT_JOYDEV is not set
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-# CONFIG_INPUT_KEYBOARD is not set
-# CONFIG_INPUT_MOUSE is not set
-# CONFIG_INPUT_JOYSTICK is not set
-# CONFIG_INPUT_TABLET is not set
-# CONFIG_INPUT_TOUCHSCREEN is not set
-# CONFIG_INPUT_MISC is not set
-# CONFIG_RMI4_CORE is not set
-
-#
-# Hardware I/O ports
-#
-# CONFIG_SERIO is not set
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=m
-CONFIG_HVC_DRIVER=y
-# CONFIG_HVC_IUCV is not set
-CONFIG_VIRTIO_CONSOLE=y
-CONFIG_HW_RANDOM=y
-CONFIG_HW_RANDOM_VIRTIO=m
-CONFIG_HW_RANDOM_S390=y
-# CONFIG_R3964 is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-# CONFIG_HANGCHECK_TIMER is not set
-
-#
-# S/390 character device drivers
-#
-CONFIG_TN3270=y
-CONFIG_TN3270_TTY=y
-CONFIG_TN3270_FS=y
-CONFIG_TN3270_CONSOLE=y
-CONFIG_TN3215=y
-CONFIG_TN3215_CONSOLE=y
-CONFIG_CCW_CONSOLE=y
-CONFIG_SCLP_TTY=y
-CONFIG_SCLP_CONSOLE=y
-CONFIG_SCLP_VT220_TTY=y
-CONFIG_SCLP_VT220_CONSOLE=y
-# CONFIG_SCLP_CPI is not set
-CONFIG_SCLP_ASYNC=m
-CONFIG_HMC_DRV=m
-# CONFIG_S390_TAPE is not set
-# CONFIG_VMCP is not set
-CONFIG_MONWRITER=m
-CONFIG_S390_VMUR=m
-
-#
-# I2C support
-#
-# CONFIG_I2C is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-
-#
-# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
-#
-# CONFIG_PTP_1588_CLOCK_PCH is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-CONFIG_POWER_RESET=y
-# CONFIG_POWER_AVS is not set
-# CONFIG_POWERCAP is not set
-# CONFIG_THERMAL is not set
-# CONFIG_WATCHDOG is not set
-# CONFIG_REGULATOR is not set
-
-#
-# Graphics support
-#
-
-#
-# Console display driver support
-#
-CONFIG_DUMMY_CONSOLE=y
-
-#
-# HID support
-#
-# CONFIG_HID is not set
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-# CONFIG_MEMSTICK is not set
-# CONFIG_NEW_LEDS is not set
-# CONFIG_ACCESSIBILITY is not set
-# CONFIG_DMADEVICES is not set
-
-#
-# DMABUF options
-#
-# CONFIG_SYNC_FILE is not set
-CONFIG_AUXDISPLAY=y
-# CONFIG_UIO is not set
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=y
-
-#
-# Virtio drivers
-#
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-
-#
-# Microsoft Hyper-V guest support
-#
-# CONFIG_HYPERV_TSCPAGE is not set
-CONFIG_STAGING=y
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_DGRP is not set
-
-#
-# Hardware Spinlock drivers
-#
-# CONFIG_MAILBOX is not set
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_IOMMU_DEBUGFS is not set
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-# CONFIG_PWM is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-# CONFIG_STM is not set
-CONFIG_NVMEM=y
-
-#
-# File systems
-#
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=y
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-# CONFIG_EXT4_DEBUG is not set
-CONFIG_JBD2=y
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=y
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=y
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-# CONFIG_XFS_WARN is not set
-# CONFIG_XFS_DEBUG is not set
-CONFIG_GFS2_FS=m
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-# CONFIG_BTRFS_ASSERT is not set
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-# CONFIG_QUOTA is not set
-# CONFIG_QUOTA_NETLINK_INTERFACE is not set
-CONFIG_QUOTACTL=y
-# CONFIG_AUTOFS4_FS is not set
-# CONFIG_FUSE_FS is not set
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-# CONFIG_FSCACHE_OBJECT_LIST is not set
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-# CONFIG_ISO9660_FS is not set
-# CONFIG_UDF_FS is not set
-
-#
-# DOS/FAT/NT Filesystems
-#
-# CONFIG_MSDOS_FS is not set
-# CONFIG_VFAT_FS is not set
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-# CONFIG_PROC_KCORE is not set
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-# CONFIG_TMPFS is not set
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_LOGFS is not set
-# CONFIG_CRAMFS is not set
-# CONFIG_SQUASHFS is not set
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_MINIX_FS_NATIVE_ENDIAN is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-# CONFIG_NETWORK_FILESYSTEMS is not set
-# CONFIG_NLS is not set
-
-#
-# Kernel hacking
-#
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=1024
-# CONFIG_MAGIC_SYSRQ is not set
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-# CONFIG_PAGE_OWNER is not set
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-# CONFIG_WQ_WATCHDOG is not set
-CONFIG_PANIC_ON_OOPS=y
-CONFIG_PANIC_ON_OOPS_VALUE=1
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_PANIC_TIMEOUT=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-# CONFIG_DEBUG_OBJECTS is not set
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-# CONFIG_DEBUG_KMEMLEAK is not set
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-# CONFIG_PROVE_LOCKING is not set
-# CONFIG_LOCK_STAT is not set
-# CONFIG_DEBUG_RT_MUTEXES is not set
-# CONFIG_RT_MUTEX_TESTER is not set
-# CONFIG_DEBUG_SPINLOCK is not set
-# CONFIG_DEBUG_MUTEXES is not set
-# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
-# CONFIG_DEBUG_RWSEMS is not set
-# CONFIG_DEBUG_LOCK_ALLOC is not set
-# CONFIG_DEBUG_ATOMIC_SLEEP is not set
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-# CONFIG_DEBUG_STACK_USAGE is not set
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-# CONFIG_DEBUG_VM is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-# CONFIG_TEST_LIST_SORT is not set
-# CONFIG_DEBUG_SG is not set
-# CONFIG_DEBUG_NOTIFIERS is not set
-# CONFIG_DEBUG_CREDENTIALS is not set
-
-#
-# RCU Debugging
-#
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-# CONFIG_DEBUG_PER_CPU_MAPS is not set
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-# CONFIG_FAULT_INJECTION is not set
-# CONFIG_LATENCYTOP is not set
-CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
-# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
-# CONFIG_PAGE_EXTENSION is not set
-# CONFIG_DEBUG_PAGEALLOC is not set
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_HAVE_C_RECORDMCOUNT=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-CONFIG_FUNCTION_GRAPH_TRACER=y
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-# CONFIG_STACK_TRACER is not set
-# CONFIG_BLK_DEV_IO_TRACE is not set
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
-# CONFIG_FUNCTION_PROFILER is not set
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-# CONFIG_DMA_API_DEBUG is not set
-CONFIG_ATOMIC64_SELFTEST=y
-# CONFIG_SAMPLES is not set
-# CONFIG_TEST_STRING_HELPERS is not set
-CONFIG_TEST_KSTRTOX=y
-# CONFIG_STRICT_DEVMEM is not set
-# CONFIG_S390_PTDUMP is not set
-CONFIG_DEBUG_SET_MODULE_RONX=y
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_ENCRYPTED_KEYS=m
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
-# CONFIG_SECURITY is not set
-CONFIG_SECURITYFS=y
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
-CONFIG_DEFAULT_SECURITY_DAC=y
-CONFIG_DEFAULT_SECURITY=""
-CONFIG_XOR_BLOCKS=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_ACOMP2=y
-# CONFIG_CRYPTO_RSA is not set
-# CONFIG_CRYPTO_DH is not set
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-# CONFIG_CRYPTO_CRYPTD is not set
-# CONFIG_CRYPTO_MCRYPTD is not set
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRCT10DIF=y
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=m
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=m
-# CONFIG_CRYPTO_842 is not set
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-# CONFIG_ZCRYPT is not set
-CONFIG_CRYPTO_SHA1_S390=y
-CONFIG_CRYPTO_SHA256_S390=y
-CONFIG_CRYPTO_SHA512_S390=m
-CONFIG_CRYPTO_DES_S390=m
-CONFIG_CRYPTO_AES_S390=m
-CONFIG_S390_PRNG=y
-CONFIG_CRYPTO_GHASH_S390=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-# CONFIG_PKCS7_MESSAGE_PARSER is not set
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_FIND_FIRST_BIT=y
-# CONFIG_GENERIC_IO is not set
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=y
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=y
-CONFIG_CRC8=m
-# CONFIG_RANDOM32_SELFTEST is not set
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=m
-CONFIG_LZO_COMPRESS=m
-CONFIG_LZO_DECOMPRESS=y
-CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
-CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_DMA=y
-# CONFIG_DMA_VIRT_OPS is not set
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-# CONFIG_IRQ_POLL is not set
-CONFIG_MPILIB=y
-CONFIG_OID_REGISTRY=y
-CONFIG_SG_POOL=y
-CONFIG_SBITMAP=y
-
-#
-# Virtualization
-#
-CONFIG_PROTECTED_VIRTUALIZATION_GUEST=y
-# CONFIG_PFAULT is not set
-# CONFIG_CMM is not set
-CONFIG_APPLDATA_BASE=y
-CONFIG_APPLDATA_MEM=m
-CONFIG_APPLDATA_OS=m
-CONFIG_APPLDATA_NET_SUM=m
-# CONFIG_S390_HYPFS_FS is not set
-CONFIG_HAVE_KVM=y
-CONFIG_VIRTUALIZATION=y
-# CONFIG_KVM is not set
-CONFIG_S390_GUEST=y
-# CONFIG_S390_GUEST_OLD_TRANSPORT is not set
-CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x.config b/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x.config
deleted file mode 100644
index b75b462..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-s390x.config
+++ /dev/null
@@ -1,2856 +0,0 @@
-# s390
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/s390 3.10.0 Kernel Configuration
-#
-CONFIG_ARCH_HAS_MEM_ENCRYPT=y
-CONFIG_MMU=y
-CONFIG_ZONE_DMA=y
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-# CONFIG_ARCH_HAS_ILOG2_U32 is not set
-# CONFIG_ARCH_HAS_ILOG2_U64 is not set
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_GENERIC_BUG=y
-CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_KEXEC=y
-CONFIG_AUDIT_ARCH=y
-CONFIG_NO_IOPORT=y
-# CONFIG_PCI_QUIRKS is not set
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_SWIOTLB=y
-CONFIG_S390=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-CONFIG_BUILDTIME_EXTABLE_SORT=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_HAVE_KERNEL_GZIP=y
-CONFIG_HAVE_KERNEL_BZIP2=y
-CONFIG_HAVE_KERNEL_LZMA=y
-CONFIG_HAVE_KERNEL_XZ=y
-CONFIG_HAVE_KERNEL_LZO=y
-CONFIG_KERNEL_GZIP=y
-# CONFIG_KERNEL_BZIP2 is not set
-# CONFIG_KERNEL_LZMA is not set
-# CONFIG_KERNEL_XZ is not set
-# CONFIG_KERNEL_LZO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
-CONFIG_AUDIT=y
-CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
-CONFIG_AUDIT_TREE=y
-CONFIG_GENERIC_TIME_VSYSCALL=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-CONFIG_NO_HZ_IDLE=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_BSD_PROCESS_ACCT_V3=y
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-# CONFIG_BUILD_BIN2C is not set
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=17
-CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
-CONFIG_MEMCG=y
-CONFIG_MEMCG_SWAP=y
-CONFIG_MEMCG_SWAP_ENABLED=y
-CONFIG_MEMCG_KMEM=y
-# CONFIG_CGROUP_HUGETLB is not set
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
-CONFIG_CHECKPOINT_RESTORE=y
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-CONFIG_SCHED_AUTOGROUP=y
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-# CONFIG_USERFAULTFD is not set
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_OPROFILE=m
-CONFIG_HAVE_OPROFILE=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_KRETPROBES=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
-CONFIG_HAVE_CMPXCHG_LOCAL=y
-CONFIG_HAVE_CMPXCHG_DOUBLE=y
-CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-# CONFIG_CC_STACKPROTECTOR is not set
-CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_CLONE_BACKWARDS2=y
-CONFIG_OLD_SIGSUSPEND3=y
-CONFIG_OLD_SIGACTION=y
-CONFIG_COMPAT_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
-CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_SHA1=y
-# CONFIG_MODULE_SIG_SHA224 is not set
-# CONFIG_MODULE_SIG_SHA256 is not set
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha1"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-# CONFIG_OSF_PARTITION is not set
-CONFIG_AMIGA_PARTITION=y
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_IBM_PARTITION=y
-# CONFIG_MAC_PARTITION is not set
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-# CONFIG_LDM_PARTITION is not set
-# CONFIG_SGI_PARTITION is not set
-# CONFIG_ULTRIX_PARTITION is not set
-# CONFIG_SUN_PARTITION is not set
-CONFIG_KARMA_PARTITION=y
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_BLOCK_COMPAT=y
-CONFIG_BLK_MQ_PCI=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
-CONFIG_MQ_IOSCHED_DEADLINE=y
-CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y
-CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_LOCK=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y
-CONFIG_ARCH_INLINE_READ_TRYLOCK=y
-CONFIG_ARCH_INLINE_READ_LOCK=y
-CONFIG_ARCH_INLINE_READ_LOCK_BH=y
-CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_READ_UNLOCK=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y
-CONFIG_ARCH_INLINE_WRITE_TRYLOCK=y
-CONFIG_ARCH_INLINE_WRITE_LOCK=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y
-CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y
-CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y
-CONFIG_INLINE_SPIN_TRYLOCK=y
-CONFIG_INLINE_SPIN_TRYLOCK_BH=y
-CONFIG_INLINE_SPIN_LOCK=y
-CONFIG_INLINE_SPIN_LOCK_BH=y
-CONFIG_INLINE_SPIN_LOCK_IRQ=y
-CONFIG_INLINE_SPIN_LOCK_IRQSAVE=y
-CONFIG_INLINE_SPIN_UNLOCK_BH=y
-CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
-CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE=y
-CONFIG_INLINE_READ_TRYLOCK=y
-CONFIG_INLINE_READ_LOCK=y
-CONFIG_INLINE_READ_LOCK_BH=y
-CONFIG_INLINE_READ_LOCK_IRQ=y
-CONFIG_INLINE_READ_LOCK_IRQSAVE=y
-CONFIG_INLINE_READ_UNLOCK=y
-CONFIG_INLINE_READ_UNLOCK_BH=y
-CONFIG_INLINE_READ_UNLOCK_IRQ=y
-CONFIG_INLINE_READ_UNLOCK_IRQRESTORE=y
-CONFIG_INLINE_WRITE_TRYLOCK=y
-CONFIG_INLINE_WRITE_LOCK=y
-CONFIG_INLINE_WRITE_LOCK_BH=y
-CONFIG_INLINE_WRITE_LOCK_IRQ=y
-CONFIG_INLINE_WRITE_LOCK_IRQSAVE=y
-CONFIG_INLINE_WRITE_UNLOCK=y
-CONFIG_INLINE_WRITE_UNLOCK_BH=y
-CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
-CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE=y
-CONFIG_MUTEX_SPIN_ON_OWNER=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_FREEZER=y
-CONFIG_HAVE_LIVEPATCH=y
-# CONFIG_LIVEPATCH is not set
-
-#
-# Processor type and features
-#
-CONFIG_HAVE_MARCH_Z900_FEATURES=y
-CONFIG_HAVE_MARCH_Z990_FEATURES=y
-CONFIG_HAVE_MARCH_Z9_109_FEATURES=y
-CONFIG_HAVE_MARCH_Z10_FEATURES=y
-CONFIG_HAVE_MARCH_Z196_FEATURES=y
-# CONFIG_HAVE_MARCH_ZEC12_FEATURES is not set
-# CONFIG_HAVE_MARCH_Z13_FEATURES is not set
-# CONFIG_MARCH_Z900 is not set
-# CONFIG_MARCH_Z990 is not set
-# CONFIG_MARCH_Z9_109 is not set
-# CONFIG_MARCH_Z10 is not set
-CONFIG_MARCH_Z196=y
-# CONFIG_MARCH_ZEC12 is not set
-# CONFIG_MARCH_Z13 is not set
-# CONFIG_MARCH_G5_TUNE is not set
-# CONFIG_MARCH_Z900_TUNE is not set
-# CONFIG_MARCH_Z990_TUNE is not set
-# CONFIG_MARCH_Z9_109_TUNE is not set
-# CONFIG_MARCH_Z10_TUNE is not set
-# CONFIG_MARCH_Z196_TUNE is not set
-CONFIG_MARCH_ZEC12_TUNE=y
-# CONFIG_MARCH_Z13_TUNE is not set
-# CONFIG_TUNE_DEFAULT is not set
-# CONFIG_TUNE_G5 is not set
-# CONFIG_TUNE_Z900 is not set
-# CONFIG_TUNE_Z990 is not set
-# CONFIG_TUNE_Z9_109 is not set
-# CONFIG_TUNE_Z10 is not set
-# CONFIG_TUNE_Z196 is not set
-CONFIG_TUNE_ZEC12=y
-# CONFIG_TUNE_Z13 is not set
-CONFIG_64BIT=y
-CONFIG_COMPAT=y
-CONFIG_SYSVIPC_COMPAT=y
-CONFIG_SMP=y
-CONFIG_NR_CPUS=256
-CONFIG_HOTPLUG_CPU=y
-CONFIG_SCHED_SMT=y
-CONFIG_SCHED_MC=y
-CONFIG_SCHED_BOOK=y
-CONFIG_SCHED_DRAWER=y
-CONFIG_SCHED_TOPOLOGY=y
-CONFIG_PREEMPT_NONE=y
-# CONFIG_PREEMPT_VOLUNTARY is not set
-# CONFIG_PREEMPT is not set
-CONFIG_HZ_100=y
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-# CONFIG_HZ_1000 is not set
-CONFIG_HZ=100
-CONFIG_SCHED_HRTICK=y
-CONFIG_ARCH_RANDOM=y
-# CONFIG_KERNEL_NOBP is not set
-CONFIG_EXPOLINE=y
-# CONFIG_EXPOLINE_OFF is not set
-CONFIG_EXPOLINE_AUTO=y
-# CONFIG_EXPOLINE_FULL is not set
-
-#
-# Memory setup
-#
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_ARCH_HAS_ADD_PAGES=y
-CONFIG_FORCE_MAX_ZONEORDER=9
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_ARCH_DISCARD_MEMBLOCK=y
-CONFIG_MEMORY_ISOLATION=y
-# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_VIRT_TO_BUS=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_TRANSPARENT_HUGEPAGE=y
-CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
-# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-CONFIG_FRONTSWAP=y
-# CONFIG_CMA is not set
-# CONFIG_ZSWAP is not set
-# CONFIG_ZPOOL is not set
-# CONFIG_ZBUD is not set
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-# CONFIG_PERCPU_STATS is not set
-CONFIG_PACK_STACK=y
-CONFIG_CHECK_STACK=y
-CONFIG_STACK_GUARD=256
-# CONFIG_WARN_DYNAMIC_STACK is not set
-
-#
-# I/O subsystem
-#
-CONFIG_QDIO=m
-CONFIG_PCI=y
-CONFIG_PCI_NR_FUNCTIONS=64
-# CONFIG_PCIEPORTBUS is not set
-CONFIG_PCI_BUS_ADDR_T_64BIT=y
-CONFIG_PCI_MSI=y
-# CONFIG_PCI_DEBUG is not set
-# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
-# CONFIG_PCI_STUB is not set
-# CONFIG_PCI_IOV is not set
-# CONFIG_PCI_PRI is not set
-# CONFIG_PCI_PASID is not set
-CONFIG_HOTPLUG_PCI=y
-# CONFIG_HOTPLUG_PCI_CPCI is not set
-# CONFIG_HOTPLUG_PCI_SHPC is not set
-CONFIG_HOTPLUG_PCI_S390=y
-CONFIG_PCI_DOMAINS=y
-CONFIG_HAS_IOMEM=y
-CONFIG_IOMMU_HELPER=y
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_NEED_DMA_MAP_STATE=y
-CONFIG_CHSC_SCH=m
-CONFIG_SCM_BUS=y
-CONFIG_EADM_SCH=m
-
-#
-# Dump support
-#
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_CRASH_DUMP=y
-CONFIG_ZFCPDUMP=y
-
-#
-# Executable file formats / Emulations
-#
-CONFIG_BINFMT_ELF=y
-CONFIG_COMPAT_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_COREDUMP=y
-CONFIG_SECCOMP=y
-
-#
-# Power Management
-#
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_HIBERNATE_CALLBACKS=y
-CONFIG_HIBERNATION=y
-CONFIG_ARCH_SAVE_PAGE_KEYS=y
-CONFIG_PM_STD_PARTITION="/dev/jokes"
-CONFIG_PM_SLEEP=y
-CONFIG_PM_SLEEP_SMP=y
-# CONFIG_PM_AUTOSLEEP is not set
-# CONFIG_PM_WAKELOCKS is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-CONFIG_PM_SLEEP_DEBUG=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_NET=y
-CONFIG_NET_INGRESS=y
-CONFIG_NET_EGRESS=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_PACKET_DIAG=m
-CONFIG_UNIX=y
-CONFIG_UNIX_DIAG=m
-CONFIG_XFRM=y
-CONFIG_XFRM_ALGO=y
-CONFIG_XFRM_USER=y
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-CONFIG_XFRM_STATISTICS=y
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_IUCV=y
-CONFIG_AFIUCV=m
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_FIB_TRIE_STATS=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-CONFIG_NET_IPGRE_DEMUX=m
-CONFIG_NET_IP_TUNNEL=m
-CONFIG_NET_IPGRE=m
-CONFIG_NET_IPGRE_BROADCAST=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NET_IPVTI=m
-CONFIG_NET_UDP_TUNNEL=m
-# CONFIG_NET_FOU is not set
-# CONFIG_NET_FOU_IP_TUNNELS is not set
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=y
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_INET_UDP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_TCP_CONG_DCTCP=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=m
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_VTI=m
-CONFIG_IPV6_SIT=m
-CONFIG_IPV6_SIT_6RD=y
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_GRE=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-# CONFIG_IPV6_SUBTREES is not set
-CONFIG_IPV6_MROUTE=y
-CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IPV6_PIMSM_V2=y
-CONFIG_NETLABEL=y
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
-CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
-CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=m
-
-#
-# Core Netfilter Configuration
-#
-CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_ACCT=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
-CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_LOG_COMMON=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_ZONES=y
-CONFIG_NF_CONNTRACK_PROCFS=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-CONFIG_NF_CONNTRACK_TIMEOUT=y
-CONFIG_NF_CONNTRACK_TIMESTAMP=y
-CONFIG_NF_CONNTRACK_LABELS=y
-CONFIG_NF_CT_PROTO_DCCP=y
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=y
-CONFIG_NF_CT_PROTO_UDPLITE=y
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-CONFIG_NF_CONNTRACK_SNMP=m
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NF_CT_NETLINK_TIMEOUT=m
-CONFIG_NF_CT_NETLINK_HELPER=m
-CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_NF_NAT_PROTO_DCCP=y
-CONFIG_NF_NAT_PROTO_UDPLITE=y
-CONFIG_NF_NAT_PROTO_SCTP=y
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_REDIRECT=m
-CONFIG_NETFILTER_SYNPROXY=m
-CONFIG_NF_TABLES=m
-CONFIG_NF_TABLES_INET=m
-CONFIG_NFT_EXTHDR=m
-CONFIG_NFT_META=m
-CONFIG_NFT_CT=m
-CONFIG_NFT_RBTREE=m
-CONFIG_NFT_HASH=m
-CONFIG_NFT_COUNTER=m
-CONFIG_NFT_LOG=m
-CONFIG_NFT_LIMIT=m
-CONFIG_NFT_MASQ=m
-CONFIG_NFT_REDIR=m
-CONFIG_NFT_NAT=m
-CONFIG_NFT_QUEUE=m
-CONFIG_NFT_REJECT=m
-CONFIG_NFT_REJECT_INET=m
-CONFIG_NFT_COMPAT=m
-CONFIG_NETFILTER_XTABLES=y
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
-CONFIG_NETFILTER_XT_CONNMARK=m
-CONFIG_NETFILTER_XT_SET=m
-
-#
-# Xtables targets
-#
-CONFIG_NETFILTER_XT_TARGET_AUDIT=m
-CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-CONFIG_NETFILTER_XT_TARGET_CT=m
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-CONFIG_NETFILTER_XT_TARGET_HMARK=m
-CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
-CONFIG_NETFILTER_XT_TARGET_LOG=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_NAT=m
-CONFIG_NETFILTER_XT_TARGET_NETMAP=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
-CONFIG_NETFILTER_XT_TARGET_TEE=m
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
-CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
-CONFIG_NETFILTER_XT_MATCH_BPF=m
-CONFIG_NETFILTER_XT_MATCH_CGROUP=m
-CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
-CONFIG_NETFILTER_XT_MATCH_COMMENT=m
-CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
-CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
-CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
-CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
-CONFIG_NETFILTER_XT_MATCH_CPU=m
-CONFIG_NETFILTER_XT_MATCH_DCCP=m
-CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
-CONFIG_NETFILTER_XT_MATCH_DSCP=m
-CONFIG_NETFILTER_XT_MATCH_ECN=m
-CONFIG_NETFILTER_XT_MATCH_ESP=m
-CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_HELPER=m
-CONFIG_NETFILTER_XT_MATCH_HL=m
-CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
-CONFIG_NETFILTER_XT_MATCH_IPVS=m
-CONFIG_NETFILTER_XT_MATCH_LENGTH=m
-CONFIG_NETFILTER_XT_MATCH_LIMIT=m
-CONFIG_NETFILTER_XT_MATCH_MAC=m
-CONFIG_NETFILTER_XT_MATCH_MARK=m
-CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_NFACCT=m
-CONFIG_NETFILTER_XT_MATCH_OSF=m
-CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
-CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
-CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
-CONFIG_NETFILTER_XT_MATCH_QUOTA=m
-CONFIG_NETFILTER_XT_MATCH_RATEEST=m
-CONFIG_NETFILTER_XT_MATCH_REALM=m
-CONFIG_NETFILTER_XT_MATCH_RECENT=m
-CONFIG_NETFILTER_XT_MATCH_SCTP=m
-CONFIG_NETFILTER_XT_MATCH_SOCKET=m
-CONFIG_NETFILTER_XT_MATCH_STATE=m
-CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
-CONFIG_NETFILTER_XT_MATCH_STRING=m
-CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
-CONFIG_NETFILTER_XT_MATCH_U32=m
-CONFIG_IP_SET=m
-CONFIG_IP_SET_MAX=256
-CONFIG_IP_SET_BITMAP_IP=m
-CONFIG_IP_SET_BITMAP_IPMAC=m
-CONFIG_IP_SET_BITMAP_PORT=m
-CONFIG_IP_SET_HASH_IP=m
-CONFIG_IP_SET_HASH_IPMARK=m
-CONFIG_IP_SET_HASH_IPPORT=m
-CONFIG_IP_SET_HASH_IPPORTIP=m
-CONFIG_IP_SET_HASH_IPPORTNET=m
-CONFIG_IP_SET_HASH_IPMAC=m
-CONFIG_IP_SET_HASH_MAC=m
-CONFIG_IP_SET_HASH_NETPORTNET=m
-CONFIG_IP_SET_HASH_NET=m
-CONFIG_IP_SET_HASH_NETNET=m
-CONFIG_IP_SET_HASH_NETPORT=m
-CONFIG_IP_SET_HASH_NETIFACE=m
-CONFIG_IP_SET_LIST_SET=m
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-# CONFIG_IP_VS_DEBUG is not set
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-CONFIG_IP_VS_PROTO_SCTP=y
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS SH scheduler
-#
-CONFIG_IP_VS_SH_TAB_BITS=8
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-CONFIG_IP_VS_PE_SIP=m
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
-CONFIG_NF_TABLES_IPV4=m
-CONFIG_NFT_CHAIN_ROUTE_IPV4=m
-CONFIG_NFT_REJECT_IPV4=m
-CONFIG_NFT_DUP_IPV4=m
-CONFIG_NF_TABLES_ARP=m
-CONFIG_NF_DUP_IPV4=m
-CONFIG_NF_LOG_IPV4=m
-CONFIG_NF_REJECT_IPV4=m
-CONFIG_NF_NAT_IPV4=m
-CONFIG_NFT_CHAIN_NAT_IPV4=m
-CONFIG_NF_NAT_MASQUERADE_IPV4=m
-CONFIG_NFT_MASQ_IPV4=m
-CONFIG_NFT_REDIR_IPV4=m
-CONFIG_NF_NAT_SNMP_BASIC=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_RPFILTER=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_SYNPROXY=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_IP_NF_NAT=m
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_NF_TABLES_IPV6=m
-CONFIG_NFT_CHAIN_ROUTE_IPV6=m
-CONFIG_NFT_REJECT_IPV6=m
-CONFIG_NFT_DUP_IPV6=m
-CONFIG_NF_DUP_IPV6=m
-CONFIG_NF_REJECT_IPV6=m
-CONFIG_NF_LOG_IPV6=m
-CONFIG_NF_NAT_IPV6=m
-CONFIG_NFT_CHAIN_NAT_IPV6=m
-CONFIG_NF_NAT_MASQUERADE_IPV6=m
-CONFIG_NFT_MASQ_IPV6=m
-CONFIG_NFT_REDIR_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RPFILTER=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_TARGET_SYNPROXY=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-CONFIG_IP6_NF_NAT=m
-CONFIG_IP6_NF_TARGET_MASQUERADE=m
-CONFIG_IP6_NF_TARGET_NPT=m
-CONFIG_NF_TABLES_BRIDGE=m
-CONFIG_NFT_BRIDGE_META=m
-CONFIG_NFT_BRIDGE_REJECT=m
-CONFIG_NF_LOG_BRIDGE=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-CONFIG_NET_SCTPPROBE=m
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
-CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
-CONFIG_SCTP_COOKIE_HMAC_MD5=y
-CONFIG_SCTP_COOKIE_HMAC_SHA1=y
-CONFIG_INET_SCTP_DIAG=m
-# CONFIG_RDS is not set
-# CONFIG_TIPC is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-# CONFIG_ATM_MPOA is not set
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-CONFIG_L2TP=m
-CONFIG_L2TP_DEBUGFS=m
-CONFIG_L2TP_V3=y
-CONFIG_L2TP_IP=m
-CONFIG_L2TP_ETH=m
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_MRP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-CONFIG_BRIDGE_VLAN_FILTERING=y
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_VLAN_8021Q_MVRP=y
-# CONFIG_DECNET is not set
-CONFIG_LLC=m
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_6LOWPAN=m
-# CONFIG_6LOWPAN_DEBUGFS is not set
-CONFIG_6LOWPAN_NHC=m
-CONFIG_6LOWPAN_NHC_DEST=m
-CONFIG_6LOWPAN_NHC_FRAGMENT=m
-CONFIG_6LOWPAN_NHC_HOP=m
-CONFIG_6LOWPAN_NHC_IPV6=m
-CONFIG_6LOWPAN_NHC_MOBILITY=m
-CONFIG_6LOWPAN_NHC_ROUTING=m
-CONFIG_6LOWPAN_NHC_UDP=m
-# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set
-# CONFIG_6LOWPAN_GHC_UDP is not set
-# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_IEEE802154_6LOWPAN=m
-CONFIG_MAC802154=m
-CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
-CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
-CONFIG_NET_SCH_MULTIQ=m
-CONFIG_NET_SCH_RED=m
-CONFIG_NET_SCH_SFB=m
-CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
-CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_CBS=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-CONFIG_NET_SCH_MQPRIO=m
-CONFIG_NET_SCH_CHOKE=m
-CONFIG_NET_SCH_QFQ=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_SCH_FQ=m
-# CONFIG_NET_SCH_HHF is not set
-# CONFIG_NET_SCH_PIE is not set
-CONFIG_NET_SCH_INGRESS=m
-CONFIG_NET_SCH_PLUG=m
-# CONFIG_NET_SCH_DEFAULT is not set
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_CLS_BPF=m
-CONFIG_NET_CLS_FLOWER=m
-CONFIG_NET_CLS_MATCHALL=m
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-CONFIG_NET_EMATCH_IPSET=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_SAMPLE=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-CONFIG_NET_ACT_CSUM=m
-CONFIG_NET_ACT_VLAN=m
-CONFIG_NET_ACT_TUNNEL_KEY=m
-CONFIG_NET_ACT_CONNMARK=m
-CONFIG_NET_ACT_SKBMOD=m
-# CONFIG_NET_ACT_IFE is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_OPENVSWITCH=m
-CONFIG_OPENVSWITCH_GRE=m
-CONFIG_OPENVSWITCH_VXLAN=m
-CONFIG_OPENVSWITCH_GENEVE=m
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
-CONFIG_NET_SWITCHDEV=y
-CONFIG_RPS=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_CAN is not set
-# CONFIG_AF_RXRPC is not set
-CONFIG_FIB_RULES=y
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_INPUT=y
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-CONFIG_CEPH_LIB=m
-# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
-CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-CONFIG_DST_CACHE=y
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_PAGE_POOL=y
-CONFIG_FAILOVER=m
-CONFIG_HAVE_EBPF_JIT=y
-# CONFIG_PCMCIA is not set
-CONFIG_CCW=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-CONFIG_SYS_HYPERVISOR=y
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-CONFIG_DMA_SHARED_BUFFER=y
-
-#
-# Bus devices
-#
-CONFIG_CONNECTOR=y
-CONFIG_PROC_EVENTS=y
-# CONFIG_MTD is not set
-# CONFIG_PARPORT is not set
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-CONFIG_ZRAM=m
-# CONFIG_BLK_CPQ_DA is not set
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=m
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-# CONFIG_BLK_DEV_SX8 is not set
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=16384
-# CONFIG_CDROM_PKTCDVD is not set
-# CONFIG_ATA_OVER_ETH is not set
-
-#
-# S/390 block device drivers
-#
-CONFIG_BLK_DEV_XPRAM=m
-CONFIG_DCSSBLK=m
-CONFIG_DASD=m
-CONFIG_DASD_PROFILE=y
-CONFIG_DASD_ECKD=m
-CONFIG_DASD_FBA=m
-CONFIG_DASD_DIAG=m
-CONFIG_DASD_EER=y
-CONFIG_SCM_BLOCK=m
-CONFIG_SCM_BLOCK_CLUSTER_WRITE=y
-CONFIG_VIRTIO_BLK=m
-CONFIG_BLK_DEV_RBD=m
-# CONFIG_BLK_DEV_RSXX is not set
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_RDMA=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_RDMA=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-# CONFIG_SENSORS_LIS3LV02D is not set
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_DUMMY_IRQ is not set
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-# CONFIG_SGI_IOC4 is not set
-# CONFIG_TIFM_CORE is not set
-# CONFIG_ICS932S401 is not set
-# CONFIG_ATMEL_SSC is not set
-CONFIG_ENCLOSURE_SERVICES=m
-# CONFIG_HP_ILO is not set
-# CONFIG_APDS9802ALS is not set
-# CONFIG_ISL29003 is not set
-# CONFIG_ISL29020 is not set
-# CONFIG_SENSORS_TSL2550 is not set
-# CONFIG_SENSORS_BH1780 is not set
-# CONFIG_SENSORS_BH1770 is not set
-# CONFIG_SENSORS_APDS990X is not set
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_BMP085_I2C is not set
-# CONFIG_PCH_PHUB is not set
-# CONFIG_USB_SWITCH_FSA9480 is not set
-# CONFIG_SRAM is not set
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-# CONFIG_EEPROM_AT24 is not set
-# CONFIG_EEPROM_LEGACY is not set
-# CONFIG_EEPROM_MAX6875 is not set
-# CONFIG_EEPROM_93CX6 is not set
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_SENSORS_LIS3_I2C is not set
-
-#
-# Altera FPGA firmware download module
-#
-# CONFIG_ALTERA_STAPL is not set
-CONFIG_GENWQE=m
-CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0
-# CONFIG_CXL_BASE is not set
-# CONFIG_CXL_KERNEL_API is not set
-# CONFIG_CXL_EEH is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=m
-CONFIG_CHR_DEV_ST=m
-CONFIG_CHR_DEV_OSST=m
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-CONFIG_CHR_DEV_SCH=m
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_TCP=m
-CONFIG_ISCSI_BOOT_SYSFS=m
-# CONFIG_SCSI_CXGB3_ISCSI is not set
-# CONFIG_SCSI_CXGB4_ISCSI is not set
-# CONFIG_SCSI_BNX2_ISCSI is not set
-# CONFIG_SCSI_BNX2X_FCOE is not set
-# CONFIG_BE2ISCSI is not set
-# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
-# CONFIG_SCSI_HPSA is not set
-# CONFIG_SCSI_3W_9XXX is not set
-# CONFIG_SCSI_3W_SAS is not set
-# CONFIG_SCSI_ACARD is not set
-# CONFIG_SCSI_AACRAID is not set
-# CONFIG_SCSI_AIC7XXX is not set
-# CONFIG_SCSI_AIC7XXX_OLD is not set
-# CONFIG_SCSI_AIC79XX is not set
-# CONFIG_SCSI_AIC94XX is not set
-# CONFIG_SCSI_MVSAS is not set
-# CONFIG_SCSI_MVUMI is not set
-# CONFIG_SCSI_DPT_I2O is not set
-# CONFIG_SCSI_ADVANSYS is not set
-# CONFIG_SCSI_ARCMSR is not set
-# CONFIG_MEGARAID_NEWGEN is not set
-# CONFIG_MEGARAID_LEGACY is not set
-# CONFIG_MEGARAID_SAS is not set
-# CONFIG_SCSI_MPT2SAS is not set
-# CONFIG_SCSI_MPT3SAS is not set
-# CONFIG_SCSI_UFSHCD is not set
-# CONFIG_SCSI_HPTIOP is not set
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-# CONFIG_SCSI_DMX3191D is not set
-# CONFIG_SCSI_FUTURE_DOMAIN is not set
-# CONFIG_SCSI_IPS is not set
-# CONFIG_SCSI_INITIO is not set
-# CONFIG_SCSI_INIA100 is not set
-# CONFIG_SCSI_STEX is not set
-# CONFIG_SCSI_SYM53C8XX_2 is not set
-# CONFIG_SCSI_QLOGIC_1280 is not set
-# CONFIG_SCSI_QLA_FC is not set
-# CONFIG_SCSI_QLA_ISCSI is not set
-# CONFIG_SCSI_LPFC is not set
-# CONFIG_SCSI_DC395x is not set
-# CONFIG_SCSI_DC390T is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_ZFCP=m
-# CONFIG_SCSI_PMCRAID is not set
-# CONFIG_SCSI_PM8001 is not set
-# CONFIG_SCSI_SRP is not set
-# CONFIG_SCSI_BFA_FC is not set
-CONFIG_SCSI_VIRTIO=m
-# CONFIG_SCSI_CHELSIO_FCOE is not set
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_MD=y
-CONFIG_BLK_DEV_MD=y
-CONFIG_MD_AUTODETECT=y
-CONFIG_MD_LINEAR=m
-CONFIG_MD_RAID0=m
-CONFIG_MD_RAID1=m
-CONFIG_MD_RAID10=m
-CONFIG_MD_RAID456=m
-# CONFIG_MD_MULTIPATH is not set
-CONFIG_MD_FAULTY=m
-# CONFIG_BCACHE is not set
-CONFIG_BLK_DEV_DM_BUILTIN=y
-CONFIG_BLK_DEV_DM=m
-# CONFIG_DM_MQ_DEFAULT is not set
-CONFIG_DM_DEBUG=y
-CONFIG_DM_BUFIO=m
-# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
-CONFIG_DM_BIO_PRISON=m
-CONFIG_DM_PERSISTENT_DATA=m
-CONFIG_DM_CRYPT=m
-CONFIG_DM_SNAPSHOT=m
-CONFIG_DM_THIN_PROVISIONING=m
-CONFIG_DM_CACHE=m
-CONFIG_DM_CACHE_SMQ=m
-CONFIG_DM_ERA=m
-CONFIG_DM_MIRROR=m
-CONFIG_DM_LOG_USERSPACE=m
-CONFIG_DM_RAID=m
-CONFIG_DM_ZERO=m
-CONFIG_DM_MULTIPATH=m
-CONFIG_DM_MULTIPATH_QL=m
-CONFIG_DM_MULTIPATH_ST=m
-CONFIG_DM_DELAY=m
-CONFIG_DM_UEVENT=y
-CONFIG_DM_FLAKEY=m
-CONFIG_DM_VERITY=m
-CONFIG_DM_SWITCH=m
-CONFIG_DM_LOG_WRITES=m
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_TCM_USER2=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-# CONFIG_FUSION is not set
-
-#
-# IEEE 1394 (FireWire) support
-#
-# CONFIG_FIREWIRE is not set
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-CONFIG_BONDING=m
-CONFIG_DUMMY=m
-# CONFIG_EQUALIZER is not set
-# CONFIG_NET_FC is not set
-# CONFIG_MII is not set
-CONFIG_IFB=m
-CONFIG_NET_TEAM=m
-CONFIG_NET_TEAM_MODE_BROADCAST=m
-CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
-CONFIG_NET_TEAM_MODE_RANDOM=m
-CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
-CONFIG_NET_TEAM_MODE_LOADBALANCE=m
-CONFIG_MACVLAN=m
-CONFIG_MACVTAP=m
-CONFIG_VXLAN=m
-CONFIG_GENEVE=m
-CONFIG_MACSEC=m
-CONFIG_NETCONSOLE=m
-CONFIG_NETCONSOLE_DYNAMIC=y
-CONFIG_NETPOLL=y
-CONFIG_NET_POLL_CONTROLLER=y
-CONFIG_TUN=m
-# CONFIG_TUN_VNET_CROSS_LE is not set
-CONFIG_VETH=m
-CONFIG_VIRTIO_NET=m
-CONFIG_NLMON=m
-CONFIG_VSOCKMON=m
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_VHOST_NET=m
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST_RING=m
-CONFIG_VHOST=m
-# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
-CONFIG_ETHERNET=y
-CONFIG_MDIO=m
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
-CONFIG_NET_VENDOR_AMAZON=y
-# CONFIG_ENA_ETHERNET is not set
-# CONFIG_NET_VENDOR_AMD is not set
-CONFIG_NET_VENDOR_AQUANTIA=y
-# CONFIG_NET_VENDOR_ATHEROS is not set
-# CONFIG_NET_CADENCE is not set
-CONFIG_NET_VENDOR_BROADCOM=y
-# CONFIG_B44 is not set
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-# CONFIG_TIGON3 is not set
-CONFIG_BNX2X=m
-CONFIG_BNXT=m
-CONFIG_BNXT_FLOWER_OFFLOAD=y
-CONFIG_BNXT_DCB=y
-# CONFIG_NET_VENDOR_BROCADE is not set
-# CONFIG_NET_CALXEDA_XGMAC is not set
-CONFIG_NET_VENDOR_CAVIUM=y
-CONFIG_LIQUIDIO=m
-CONFIG_LIQUIDIO_VF=m
-# CONFIG_NET_VENDOR_CHELSIO is not set
-# CONFIG_NET_VENDOR_CISCO is not set
-# CONFIG_DNET is not set
-# CONFIG_NET_VENDOR_DEC is not set
-# CONFIG_NET_VENDOR_DLINK is not set
-# CONFIG_NET_VENDOR_EMULEX is not set
-# CONFIG_NET_VENDOR_EXAR is not set
-CONFIG_NET_VENDOR_GOOGLE=y
-CONFIG_GVE=m
-# CONFIG_NET_VENDOR_HP is not set
-# CONFIG_NET_VENDOR_INTEL is not set
-# CONFIG_IP1000 is not set
-# CONFIG_JME is not set
-# CONFIG_NET_VENDOR_MARVELL is not set
-CONFIG_NET_VENDOR_MELLANOX=y
-CONFIG_MLX4_EN=m
-CONFIG_MLX4_EN_DCB=y
-CONFIG_MLX4_CORE=m
-CONFIG_MLX4_DEBUG=y
-CONFIG_MLX4_CORE_GEN2=y
-CONFIG_MLX5_CORE=m
-# CONFIG_MLX5_FPGA is not set
-CONFIG_MLX5_CORE_EN=y
-CONFIG_MLX5_EN_RXNFC=y
-CONFIG_MLX5_MPFS=y
-CONFIG_MLX5_ESWITCH=y
-CONFIG_MLX5_CORE_EN_DCB=y
-CONFIG_MLX5_CORE_IPOIB=y
-CONFIG_MLXSW_CORE=m
-CONFIG_MLXSW_PCI=m
-# CONFIG_MLXSW_I2C is not set
-CONFIG_MLXSW_SWITCHIB=m
-CONFIG_MLXSW_SWITCHX2=m
-CONFIG_MLXSW_SPECTRUM=m
-CONFIG_MLXSW_SPECTRUM_DCB=y
-CONFIG_MLXFW=m
-# CONFIG_NET_VENDOR_MICREL is not set
-# CONFIG_NET_VENDOR_MYRI is not set
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
-CONFIG_NET_VENDOR_NETRONOME=y
-CONFIG_NFP=m
-CONFIG_NFP_APP_FLOWER=y
-CONFIG_NFP_APP_ABM_NIC=y
-# CONFIG_NFP_DEBUG is not set
-# CONFIG_NET_VENDOR_NVIDIA is not set
-# CONFIG_NET_VENDOR_OKI is not set
-# CONFIG_ETHOC is not set
-# CONFIG_NET_PACKET_ENGINE is not set
-# CONFIG_NET_VENDOR_QLOGIC is not set
-# CONFIG_NET_VENDOR_REALTEK is not set
-# CONFIG_NET_VENDOR_RDC is not set
-CONFIG_NET_VENDOR_ROCKER=y
-CONFIG_ROCKER=m
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
-CONFIG_NET_VENDOR_SOLARFLARE=y
-# CONFIG_SFC is not set
-# CONFIG_SFC_FALCON is not set
-# CONFIG_NET_VENDOR_SMSC is not set
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-# CONFIG_NET_VENDOR_TI is not set
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_NET_VENDOR_WIZNET is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-# CONFIG_PHYLIB is not set
-# CONFIG_PPP is not set
-# CONFIG_SLIP is not set
-
-#
-# S/390 network device drivers
-#
-CONFIG_LCS=m
-CONFIG_CTCM=m
-# CONFIG_NETIUCV is not set
-CONFIG_SMSGIUCV=m
-CONFIG_SMSGIUCV_EVENT=m
-# CONFIG_CLAW is not set
-CONFIG_QETH=m
-CONFIG_QETH_L2=m
-CONFIG_QETH_L3=m
-CONFIG_QETH_IPV6=y
-CONFIG_CCWGROUP=m
-
-#
-# Host-side USB support is needed for USB Network Adapter support
-#
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-CONFIG_WAN=y
-# CONFIG_LANMEDIA is not set
-CONFIG_HDLC=m
-CONFIG_HDLC_RAW=m
-# CONFIG_HDLC_RAW_ETH is not set
-CONFIG_HDLC_CISCO=m
-CONFIG_HDLC_FR=m
-CONFIG_HDLC_PPP=m
-
-#
-# X.25/LAPB support is disabled
-#
-# CONFIG_PCI200SYN is not set
-# CONFIG_WANXL is not set
-# CONFIG_PC300TOO is not set
-# CONFIG_FARSYNC is not set
-# CONFIG_DSCC4 is not set
-CONFIG_DLCI=m
-CONFIG_DLCI_MAX=8
-CONFIG_IEEE802154_DRIVERS=m
-CONFIG_IEEE802154_FAKELB=m
-# CONFIG_VMXNET3 is not set
-CONFIG_NET_FAILOVER=m
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-# CONFIG_INPUT_FF_MEMLESS is not set
-# CONFIG_INPUT_POLLDEV is not set
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-# CONFIG_INPUT_MOUSEDEV is not set
-# CONFIG_INPUT_JOYDEV is not set
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-# CONFIG_INPUT_KEYBOARD is not set
-# CONFIG_INPUT_MOUSE is not set
-# CONFIG_INPUT_JOYSTICK is not set
-# CONFIG_INPUT_TABLET is not set
-# CONFIG_INPUT_TOUCHSCREEN is not set
-# CONFIG_INPUT_MISC is not set
-# CONFIG_RMI4_CORE is not set
-
-#
-# Hardware I/O ports
-#
-# CONFIG_SERIO is not set
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_VT_CONSOLE_SLEEP=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-# CONFIG_SERIAL_NONSTANDARD is not set
-# CONFIG_NOZOMI is not set
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=m
-CONFIG_HVC_DRIVER=y
-CONFIG_HVC_IUCV=y
-CONFIG_VIRTIO_CONSOLE=y
-# CONFIG_IPMI_HANDLER is not set
-CONFIG_HW_RANDOM=y
-# CONFIG_HW_RANDOM_TIMERIOMEM is not set
-CONFIG_HW_RANDOM_VIRTIO=m
-CONFIG_HW_RANDOM_S390=y
-# CONFIG_R3964 is not set
-# CONFIG_APPLICOM is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-CONFIG_HANGCHECK_TIMER=m
-CONFIG_TCG_TPM=y
-# CONFIG_HW_RANDOM_TPM is not set
-CONFIG_TCG_TIS_I2C_ATMEL=m
-CONFIG_TCG_TIS_I2C_INFINEON=m
-# CONFIG_TCG_TIS_I2C_NUVOTON is not set
-# CONFIG_TCG_VTPM_PROXY is not set
-# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
-CONFIG_DEVPORT=y
-
-#
-# S/390 character device drivers
-#
-CONFIG_TN3270=y
-CONFIG_TN3270_TTY=y
-CONFIG_TN3270_FS=m
-CONFIG_TN3270_CONSOLE=y
-CONFIG_TN3215=y
-CONFIG_TN3215_CONSOLE=y
-CONFIG_CCW_CONSOLE=y
-CONFIG_SCLP_TTY=y
-CONFIG_SCLP_CONSOLE=y
-CONFIG_SCLP_VT220_TTY=y
-CONFIG_SCLP_VT220_CONSOLE=y
-CONFIG_SCLP_CPI=m
-CONFIG_SCLP_ASYNC=m
-CONFIG_HMC_DRV=m
-CONFIG_S390_TAPE=m
-
-#
-# S/390 tape hardware support
-#
-CONFIG_S390_TAPE_34XX=m
-CONFIG_S390_TAPE_3590=m
-CONFIG_VMLOGRDR=m
-CONFIG_VMCP=y
-CONFIG_MONREADER=m
-CONFIG_MONWRITER=m
-CONFIG_S390_VMUR=m
-
-#
-# I2C support
-#
-CONFIG_I2C=m
-CONFIG_I2C_BOARDINFO=y
-# CONFIG_I2C_COMPAT is not set
-# CONFIG_I2C_CHARDEV is not set
-# CONFIG_I2C_MUX is not set
-# CONFIG_I2C_HELPER_AUTO is not set
-
-#
-# I2C Algorithms
-#
-CONFIG_I2C_ALGOBIT=m
-# CONFIG_I2C_ALGOPCF is not set
-# CONFIG_I2C_ALGOPCA is not set
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-# CONFIG_I2C_AMD756 is not set
-# CONFIG_I2C_AMD8111 is not set
-# CONFIG_I2C_I801 is not set
-# CONFIG_I2C_PIIX4 is not set
-# CONFIG_I2C_NFORCE2 is not set
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-# CONFIG_I2C_SIS96X is not set
-# CONFIG_I2C_VIA is not set
-# CONFIG_I2C_VIAPRO is not set
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_EG20T is not set
-# CONFIG_I2C_INTEL_MID is not set
-# CONFIG_I2C_PCA_PLATFORM is not set
-# CONFIG_I2C_PXA_PCI is not set
-# CONFIG_I2C_SIMTEC is not set
-# CONFIG_I2C_XILINX is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-# CONFIG_I2C_TAOS_EVM is not set
-
-#
-# Other I2C/SMBus bus drivers
-#
-# CONFIG_I2C_STUB is not set
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-# CONFIG_SPI is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-
-#
-# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
-#
-# CONFIG_PTP_1588_CLOCK_PCH is not set
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-# CONFIG_BATTERY_DS2781 is not set
-# CONFIG_BATTERY_DS2782 is not set
-# CONFIG_BATTERY_SBS is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-# CONFIG_BATTERY_MAX17040 is not set
-# CONFIG_BATTERY_MAX17042 is not set
-# CONFIG_CHARGER_LP8727 is not set
-# CONFIG_CHARGER_BQ2415X is not set
-# CONFIG_CHARGER_SMB347 is not set
-CONFIG_POWER_RESET=y
-# CONFIG_POWER_AVS is not set
-# CONFIG_POWERCAP is not set
-# CONFIG_HWMON is not set
-# CONFIG_THERMAL is not set
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_CORE=y
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
-CONFIG_WATCHDOG_SYSFS=y
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-# CONFIG_ALIM7101_WDT is not set
-# CONFIG_I6300ESB_WDT is not set
-CONFIG_DIAG288_WATCHDOG=m
-
-#
-# PCI-based Watchdog Cards
-#
-# CONFIG_PCIPCWATCHDOG is not set
-# CONFIG_WDTPCI is not set
-
-#
-# Watchdog Pretimeout Governors
-#
-# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-# CONFIG_SSB is not set
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-# CONFIG_BCMA is not set
-
-#
-# Multifunction device drivers
-#
-# CONFIG_MFD_CORE is not set
-# CONFIG_MFD_CROS_EC is not set
-# CONFIG_MFD_PCF50633 is not set
-# CONFIG_MFD_SI476X_CORE is not set
-# CONFIG_MFD_SM501 is not set
-# CONFIG_ABX500_CORE is not set
-# CONFIG_MFD_SYSCON is not set
-# CONFIG_MFD_TMIO is not set
-# CONFIG_REGULATOR is not set
-# CONFIG_MEDIA_SUPPORT is not set
-
-#
-# Graphics support
-#
-CONFIG_DRM=m
-# CONFIG_DRM_DP_AUX_CHARDEV is not set
-# CONFIG_DRM_DEBUG_SELFTEST is not set
-CONFIG_DRM_KMS_HELPER=m
-CONFIG_DRM_KMS_FB_HELPER=y
-CONFIG_DRM_FBDEV_EMULATION=y
-CONFIG_DRM_FBDEV_OVERALLOC=100
-# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
-# CONFIG_DRM_DP_CEC is not set
-CONFIG_DRM_TTM=m
-
-#
-# I2C encoder or helper chips
-#
-# CONFIG_DRM_I2C_CH7006 is not set
-# CONFIG_DRM_I2C_SIL164 is not set
-# CONFIG_DRM_I2C_NXP_TDA998X is not set
-# CONFIG_DRM_I2C_NXP_TDA9950 is not set
-# CONFIG_DRM_RADEON is not set
-# CONFIG_DRM_AMDGPU is not set
-
-#
-# ACP (Audio CoProcessor) Configuration
-#
-
-#
-# AMD Library routines
-#
-# CONFIG_CHASH is not set
-# CONFIG_DRM_NOUVEAU is not set
-CONFIG_DRM_VGEM=m
-# CONFIG_DRM_VKMS is not set
-# CONFIG_DRM_AST is not set
-# CONFIG_DRM_MGAG200 is not set
-# CONFIG_DRM_CIRRUS_QEMU is not set
-# CONFIG_DRM_QXL is not set
-# CONFIG_DRM_BOCHS is not set
-CONFIG_DRM_VIRTIO_GPU=m
-# CONFIG_DRM_LEGACY is not set
-CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
-# CONFIG_DRM_LIB_RANDOM is not set
-# CONFIG_VGASTATE is not set
-# CONFIG_VIDEO_OUTPUT_CONTROL is not set
-CONFIG_HDMI=y
-CONFIG_FB=y
-# CONFIG_FIRMWARE_EDID is not set
-# CONFIG_FB_DDC is not set
-# CONFIG_FB_BOOT_VESA_SUPPORT is not set
-CONFIG_FB_CFB_FILLRECT=m
-CONFIG_FB_CFB_COPYAREA=m
-CONFIG_FB_CFB_IMAGEBLIT=m
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-CONFIG_FB_DEFERRED_IO=y
-# CONFIG_FB_SVGALIB is not set
-# CONFIG_FB_MACMODES is not set
-# CONFIG_FB_BACKLIGHT is not set
-# CONFIG_FB_MODE_HELPERS is not set
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-# CONFIG_FB_UVESA is not set
-# CONFIG_FB_S1D13XXX is not set
-# CONFIG_FB_NVIDIA is not set
-# CONFIG_FB_RIVA is not set
-# CONFIG_FB_I740 is not set
-# CONFIG_FB_MATROX is not set
-# CONFIG_FB_RADEON is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_GOLDFISH is not set
-# CONFIG_FB_VIRTUAL is not set
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-# CONFIG_FB_AUO_K190X is not set
-# CONFIG_EXYNOS_VIDEO is not set
-# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
-# CONFIG_LOGO is not set
-
-#
-# Console display driver support
-#
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-# CONFIG_SOUND is not set
-
-#
-# HID support
-#
-# CONFIG_HID is not set
-
-#
-# I2C HID support
-#
-# CONFIG_I2C_HID is not set
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-# CONFIG_USB_SUPPORT is not set
-# CONFIG_UWB is not set
-# CONFIG_MMC is not set
-# CONFIG_MEMSTICK is not set
-# CONFIG_NEW_LEDS is not set
-# CONFIG_ACCESSIBILITY is not set
-CONFIG_INFINIBAND=m
-# CONFIG_INFINIBAND_USER_MAD is not set
-CONFIG_INFINIBAND_USER_ACCESS=m
-# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
-CONFIG_INFINIBAND_USER_MEM=y
-# CONFIG_INFINIBAND_ON_DEMAND_PAGING is not set
-CONFIG_INFINIBAND_ADDR_TRANS=y
-CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
-# CONFIG_INFINIBAND_MTHCA is not set
-# CONFIG_INFINIBAND_AMSO1100 is not set
-CONFIG_MLX4_INFINIBAND=m
-CONFIG_MLX5_INFINIBAND=m
-# CONFIG_INFINIBAND_NES is not set
-# CONFIG_INFINIBAND_OCRDMA is not set
-# CONFIG_INFINIBAND_IPOIB is not set
-# CONFIG_INFINIBAND_SRP is not set
-# CONFIG_INFINIBAND_SRPT is not set
-# CONFIG_INFINIBAND_ISER is not set
-# CONFIG_INFINIBAND_ISERT is not set
-CONFIG_RDMA_RXE=m
-CONFIG_INFINIBAND_BNXT_RE=m
-# CONFIG_DMADEVICES is not set
-
-#
-# DMABUF options
-#
-CONFIG_SYNC_FILE=y
-# CONFIG_SW_SYNC is not set
-CONFIG_AUXDISPLAY=y
-CONFIG_UIO=m
-# CONFIG_UIO_CIF is not set
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_DMEM_GENIRQ is not set
-# CONFIG_UIO_AEC is not set
-# CONFIG_UIO_SERCOS3 is not set
-# CONFIG_UIO_PCI_GENERIC is not set
-# CONFIG_UIO_NETX is not set
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=y
-
-#
-# Virtio drivers
-#
-# CONFIG_VIRTIO_PCI is not set
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-# CONFIG_VIRTIO_MMIO is not set
-
-#
-# Microsoft Hyper-V guest support
-#
-# CONFIG_HYPERV_TSCPAGE is not set
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_DX_SEP is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_CXT1E1 is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_SBE_2T3E3 is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_NET_VENDOR_SILICOM is not set
-# CONFIG_DGRP is not set
-# CONFIG_ZCACHE is not set
-
-#
-# Hardware Spinlock drivers
-#
-# CONFIG_MAILBOX is not set
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_IOMMU_DEBUGFS is not set
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-# CONFIG_NTB is not set
-# CONFIG_VME_BUS is not set
-# CONFIG_PWM is not set
-# CONFIG_IPACK_BUS is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_LIBNVDIMM=m
-CONFIG_BLK_DEV_PMEM=m
-CONFIG_ND_BLK=m
-CONFIG_ND_CLAIM=y
-CONFIG_ND_BTT=m
-CONFIG_BTT=y
-CONFIG_NVDIMM_KEYS=y
-CONFIG_DAX_DRIVER=y
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-# CONFIG_STM is not set
-# CONFIG_INTEL_TH is not set
-CONFIG_NVMEM=y
-
-#
-# File systems
-#
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=m
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-# CONFIG_EXT4_DEBUG is not set
-CONFIG_JBD2=m
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=m
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=m
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-# CONFIG_XFS_WARN is not set
-# CONFIG_XFS_DEBUG is not set
-CONFIG_GFS2_FS=m
-CONFIG_GFS2_FS_LOCKING_DLM=y
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-# CONFIG_BTRFS_ASSERT is not set
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_DAX_LIMITED=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-# CONFIG_QUOTA_DEBUG is not set
-CONFIG_QUOTA_TREE=y
-# CONFIG_QFMT_V1 is not set
-CONFIG_QFMT_V2=y
-CONFIG_QUOTACTL=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-# CONFIG_FSCACHE_OBJECT_LIST is not set
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_LOGFS is not set
-CONFIG_CRAMFS=m
-CONFIG_SQUASHFS=m
-CONFIG_SQUASHFS_XATTR=y
-CONFIG_SQUASHFS_ZLIB=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_SQUASHFS_XZ=y
-# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
-# CONFIG_SQUASHFS_EMBEDDED is not set
-CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_MINIX_FS_NATIVE_ENDIAN is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-# CONFIG_PSTORE_RAM is not set
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-CONFIG_ORE=m
-CONFIG_NETWORK_FILESYSTEMS=y
-CONFIG_NFS_FS=m
-# CONFIG_NFS_V2 is not set
-CONFIG_NFS_V3=m
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=m
-# CONFIG_NFS_SWAP is not set
-CONFIG_NFS_V4_1=y
-CONFIG_NFS_V4_2=y
-CONFIG_PNFS_FILE_LAYOUT=m
-CONFIG_PNFS_BLOCK=m
-CONFIG_PNFS_OBJLAYOUT=m
-CONFIG_PNFS_FLEXFILE_LAYOUT=m
-CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
-# CONFIG_NFS_V4_1_MIGRATION is not set
-CONFIG_NFS_V4_SECURITY_LABEL=y
-CONFIG_NFS_FSCACHE=y
-# CONFIG_NFS_USE_LEGACY_DNS is not set
-CONFIG_NFS_USE_KERNEL_DNS=y
-CONFIG_NFS_DEBUG=y
-CONFIG_NFSD=m
-CONFIG_NFSD_V2_ACL=y
-CONFIG_NFSD_V3=y
-CONFIG_NFSD_V3_ACL=y
-CONFIG_NFSD_V4=y
-CONFIG_NFSD_PNFS=y
-# CONFIG_NFSD_BLOCKLAYOUT is not set
-CONFIG_NFSD_SCSILAYOUT=y
-CONFIG_NFSD_V4_SECURITY_LABEL=y
-# CONFIG_NFSD_FAULT_INJECTION is not set
-CONFIG_GRACE_PERIOD=m
-CONFIG_LOCKD=m
-CONFIG_LOCKD_V4=y
-CONFIG_NFS_ACL_SUPPORT=m
-CONFIG_NFS_COMMON=y
-CONFIG_SUNRPC=m
-CONFIG_SUNRPC_GSS=m
-CONFIG_SUNRPC_BACKCHANNEL=y
-CONFIG_RPCSEC_GSS_KRB5=m
-CONFIG_SUNRPC_DEBUG=y
-CONFIG_SUNRPC_XPRT_RDMA=m
-CONFIG_CEPH_FS=m
-CONFIG_CEPH_FS_POSIX_ACL=y
-CONFIG_CIFS=m
-CONFIG_CIFS_STATS=y
-# CONFIG_CIFS_STATS2 is not set
-CONFIG_CIFS_WEAK_PW_HASH=y
-CONFIG_CIFS_UPCALL=y
-CONFIG_CIFS_XATTR=y
-CONFIG_CIFS_POSIX=y
-CONFIG_CIFS_ACL=y
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
-CONFIG_CIFS_DFS_UPCALL=y
-# CONFIG_CIFS_SMB311 is not set
-# CONFIG_CIFS_FSCACHE is not set
-# CONFIG_NCP_FS is not set
-# CONFIG_CODA_FS is not set
-# CONFIG_AFS_FS is not set
-CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_CODEPAGE_737=m
-CONFIG_NLS_CODEPAGE_775=m
-CONFIG_NLS_CODEPAGE_850=m
-CONFIG_NLS_CODEPAGE_852=m
-CONFIG_NLS_CODEPAGE_855=m
-CONFIG_NLS_CODEPAGE_857=m
-CONFIG_NLS_CODEPAGE_860=m
-CONFIG_NLS_CODEPAGE_861=m
-CONFIG_NLS_CODEPAGE_862=m
-CONFIG_NLS_CODEPAGE_863=m
-CONFIG_NLS_CODEPAGE_864=m
-CONFIG_NLS_CODEPAGE_865=m
-CONFIG_NLS_CODEPAGE_866=m
-CONFIG_NLS_CODEPAGE_869=m
-CONFIG_NLS_CODEPAGE_936=m
-CONFIG_NLS_CODEPAGE_950=m
-CONFIG_NLS_CODEPAGE_932=m
-CONFIG_NLS_CODEPAGE_949=m
-CONFIG_NLS_CODEPAGE_874=m
-CONFIG_NLS_ISO8859_8=m
-CONFIG_NLS_CODEPAGE_1250=m
-CONFIG_NLS_CODEPAGE_1251=m
-CONFIG_NLS_ASCII=y
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_ISO8859_2=m
-CONFIG_NLS_ISO8859_3=m
-CONFIG_NLS_ISO8859_4=m
-CONFIG_NLS_ISO8859_5=m
-CONFIG_NLS_ISO8859_6=m
-CONFIG_NLS_ISO8859_7=m
-CONFIG_NLS_ISO8859_9=m
-CONFIG_NLS_ISO8859_13=m
-CONFIG_NLS_ISO8859_14=m
-CONFIG_NLS_ISO8859_15=m
-CONFIG_NLS_KOI8_R=m
-CONFIG_NLS_KOI8_U=m
-CONFIG_NLS_MAC_ROMAN=m
-CONFIG_NLS_MAC_CELTIC=m
-CONFIG_NLS_MAC_CENTEURO=m
-CONFIG_NLS_MAC_CROATIAN=m
-CONFIG_NLS_MAC_CYRILLIC=m
-CONFIG_NLS_MAC_GAELIC=m
-CONFIG_NLS_MAC_GREEK=m
-CONFIG_NLS_MAC_ICELAND=m
-CONFIG_NLS_MAC_INUIT=m
-CONFIG_NLS_MAC_ROMANIAN=m
-CONFIG_NLS_MAC_TURKISH=m
-CONFIG_NLS_UTF8=m
-CONFIG_DLM=m
-CONFIG_DLM_DEBUG=y
-
-#
-# Kernel hacking
-#
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=1024
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-# CONFIG_PAGE_OWNER is not set
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-# CONFIG_WQ_WATCHDOG is not set
-CONFIG_PANIC_ON_OOPS=y
-CONFIG_PANIC_ON_OOPS_VALUE=1
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_PANIC_TIMEOUT=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-# CONFIG_DEBUG_OBJECTS is not set
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-# CONFIG_DEBUG_KMEMLEAK is not set
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-# CONFIG_PROVE_LOCKING is not set
-# CONFIG_LOCK_STAT is not set
-# CONFIG_DEBUG_RT_MUTEXES is not set
-# CONFIG_RT_MUTEX_TESTER is not set
-# CONFIG_DEBUG_SPINLOCK is not set
-# CONFIG_DEBUG_MUTEXES is not set
-# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
-# CONFIG_DEBUG_RWSEMS is not set
-# CONFIG_DEBUG_LOCK_ALLOC is not set
-# CONFIG_DEBUG_ATOMIC_SLEEP is not set
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-# CONFIG_DEBUG_STACK_USAGE is not set
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-# CONFIG_DEBUG_VM is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-# CONFIG_TEST_LIST_SORT is not set
-# CONFIG_DEBUG_SG is not set
-# CONFIG_DEBUG_NOTIFIERS is not set
-# CONFIG_DEBUG_CREDENTIALS is not set
-
-#
-# RCU Debugging
-#
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-# CONFIG_DEBUG_PER_CPU_MAPS is not set
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-# CONFIG_FAULT_INJECTION is not set
-# CONFIG_LATENCYTOP is not set
-CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
-# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
-# CONFIG_PAGE_EXTENSION is not set
-# CONFIG_DEBUG_PAGEALLOC is not set
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_HAVE_C_RECORDMCOUNT=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-CONFIG_FUNCTION_GRAPH_TRACER=y
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-# CONFIG_STACK_TRACER is not set
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
-# CONFIG_FUNCTION_PROFILER is not set
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_TEST_PARMAN is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-# CONFIG_DMA_API_DEBUG is not set
-CONFIG_ATOMIC64_SELFTEST=y
-CONFIG_ASYNC_RAID6_TEST=m
-# CONFIG_SAMPLES is not set
-# CONFIG_TEST_STRING_HELPERS is not set
-CONFIG_TEST_KSTRTOX=y
-CONFIG_STRICT_DEVMEM=y
-# CONFIG_S390_PTDUMP is not set
-CONFIG_DEBUG_SET_MODULE_RONX=y
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_KEYS_COMPAT=y
-CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_BIG_KEYS=y
-CONFIG_TRUSTED_KEYS=y
-CONFIG_ENCRYPTED_KEYS=y
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
-CONFIG_SECURITY=y
-CONFIG_SECURITYFS=y
-CONFIG_SECURITY_NETWORK=y
-CONFIG_SECURITY_INFINIBAND=y
-CONFIG_SECURITY_NETWORK_XFRM=y
-CONFIG_SECURITY_PATH=y
-CONFIG_SECURITY_SECURELEVEL=y
-CONFIG_LSM_MMAP_MIN_ADDR=65535
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
-CONFIG_SECURITY_SELINUX=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
-CONFIG_SECURITY_SELINUX_DISABLE=y
-CONFIG_SECURITY_SELINUX_DEVELOP=y
-CONFIG_SECURITY_SELINUX_AVC_STATS=y
-CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
-# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
-# CONFIG_SECURITY_SMACK is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
-CONFIG_SECURITY_YAMA=y
-CONFIG_SECURITY_YAMA_STACKED=y
-CONFIG_INTEGRITY=y
-CONFIG_INTEGRITY_SIGNATURE=y
-CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
-CONFIG_IMA=y
-CONFIG_IMA_MEASURE_PCR_IDX=10
-CONFIG_IMA_AUDIT=y
-CONFIG_IMA_LSM_RULES=y
-CONFIG_IMA_APPRAISE=y
-CONFIG_IMA_TRUSTED_KEYRING=y
-CONFIG_EVM=y
-CONFIG_EVM_HMAC_VERSION=2
-CONFIG_DEFAULT_SECURITY_SELINUX=y
-# CONFIG_DEFAULT_SECURITY_YAMA is not set
-# CONFIG_DEFAULT_SECURITY_DAC is not set
-CONFIG_DEFAULT_SECURITY="selinux"
-CONFIG_XOR_BLOCKS=m
-CONFIG_ASYNC_CORE=m
-CONFIG_ASYNC_MEMCPY=m
-CONFIG_ASYNC_XOR=m
-CONFIG_ASYNC_PQ=m
-CONFIG_ASYNC_RAID6_RECOV=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_ACOMP2=y
-# CONFIG_CRYPTO_RSA is not set
-# CONFIG_CRYPTO_DH is not set
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-# CONFIG_CRYPTO_CRYPTD is not set
-# CONFIG_CRYPTO_MCRYPTD is not set
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRCT10DIF=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=m
-# CONFIG_CRYPTO_842 is not set
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-CONFIG_ZCRYPT=m
-CONFIG_ZCRYPT_MULTIDEVNODES=y
-CONFIG_PKEY=m
-CONFIG_CRYPTO_PAES_S390=m
-CONFIG_CRYPTO_SHA1_S390=y
-CONFIG_CRYPTO_SHA256_S390=y
-CONFIG_CRYPTO_SHA512_S390=m
-CONFIG_CRYPTO_DES_S390=m
-CONFIG_CRYPTO_AES_S390=m
-CONFIG_S390_PRNG=m
-CONFIG_CRYPTO_GHASH_S390=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-# CONFIG_PKCS7_MESSAGE_PARSER is not set
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_FIND_FIRST_BIT=y
-CONFIG_GENERIC_IO=y
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=m
-CONFIG_CRC8=m
-# CONFIG_RANDOM32_SELFTEST is not set
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=m
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
-CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
-CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_DMA=y
-CONFIG_DMA_VIRT_OPS=y
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-CONFIG_IRQ_POLL=y
-CONFIG_MPILIB=y
-CONFIG_SIGNATURE=y
-CONFIG_OID_REGISTRY=y
-CONFIG_SG_POOL=y
-CONFIG_PARMAN=m
-CONFIG_SBITMAP=y
-
-#
-# Virtualization
-#
-CONFIG_PROTECTED_VIRTUALIZATION_GUEST=y
-CONFIG_PFAULT=y
-CONFIG_CMM=m
-CONFIG_CMM_IUCV=y
-CONFIG_APPLDATA_BASE=y
-CONFIG_APPLDATA_MEM=m
-CONFIG_APPLDATA_OS=m
-CONFIG_APPLDATA_NET_SUM=m
-CONFIG_S390_HYPFS_FS=y
-CONFIG_HAVE_KVM=y
-CONFIG_VIRTUALIZATION=y
-# CONFIG_KVM is not set
-CONFIG_S390_GUEST=y
-# CONFIG_S390_GUEST_OLD_TRANSPORT is not set
-CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
diff --git a/kernel-source/thirdparty/SOURCES/kernel-abi-whitelists-1160.tar.bz2 b/kernel-source/thirdparty/SOURCES/kernel-abi-whitelists-1160.tar.bz2
deleted file mode 100644
index 3938428..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-abi-whitelists-1160.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/kernel-source/thirdparty/SOURCES/kernel-kabi-dw-1160.tar.bz2 b/kernel-source/thirdparty/SOURCES/kernel-kabi-dw-1160.tar.bz2
deleted file mode 100644
index 19025d8..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel-kabi-dw-1160.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/kernel-source/thirdparty/SOURCES/kernel.spec b/kernel-source/thirdparty/SOURCES/kernel.spec
deleted file mode 100644
index a99b9be..0000000
--- a/kernel-source/thirdparty/SOURCES/kernel.spec
+++ /dev/null
@@ -1,97683 +0,0 @@
-# We have to override the new %%install behavior because, well... the kernel is special.
-%global __spec_install_pre %{___build_pre}
-
-Summary: The Linux kernel
-
-%define dist .el7
-
-# % define buildid .local
-
-# If there's no unversioned python, select version explicitly,
-# so it's possible to at least do rh-srpm.
-%if 0%{?fedora} >= 29 || 0%{?rhel} >= 8
-%global __python /usr/bin/python3
-%endif
-
-# For a kernel released for public testing, released_kernel should be 1.
-# For internal testing builds during development, it should be 0.
-%global released_kernel 1
-
-%global distro_build 1160
-
-%define rpmversion 3.10.0
-%define pkgrelease 1160.71.1.el7
-
-# allow pkg_release to have configurable %%{?dist} tag
-%define specrelease 1160.71.1%{?dist}
-
-%define pkg_release %{specrelease}%{?buildid}
-
-# The kernel tarball/base version
-%define rheltarball %{rpmversion}-%{pkgrelease}
-
-# What parts do we want to build?  We must build at least one kernel.
-# These are the kernels that are built IF the architecture allows it.
-# All should default to 1 (enabled) and be flipped to 0 (disabled)
-# by later arch-specific checks.
-
-%define _with_kabidupchk 1
-# The following build options are enabled by default.
-# Use either --without <opt> in your rpmbuild command or force values
-# to 0 in here to disable them.
-#
-# kernel
-%define with_default   %{?_without_default:   0} %{?!_without_default:   1}
-# kernel-debug
-%define with_debug     %{?_without_debug:     0} %{?!_without_debug:     1}
-# kernel-doc
-%define with_doc       %{?_without_doc:       0} %{?!_without_doc:       1}
-# kernel-headers
-%define with_headers   %{?_without_headers:   0} %{?!_without_headers:   1}
-# perf
-%define with_perf      %{?_without_perf:      0} %{?!_without_perf:      1}
-# tools
-%define with_tools     %{?_without_tools:     0} %{?!_without_tools:     1}
-# bpf tool
-%define with_bpftool   %{?_without_bpftool:   0} %{?!_without_bpftool:   1}
-# kernel-debuginfo
-%define with_debuginfo %{?_without_debuginfo: 0} %{?!_without_debuginfo: 1}
-# kernel-kdump (only for s390x)
-%define with_kdump     %{?_without_kdump:     0} %{?!_without_kdump:     0}
-# kernel-bootwrapper (for creating zImages from kernel + initrd)
-%define with_bootwrapper %{?_without_bootwrapper: 0} %{?!_without_bootwrapper: 0}
-# kernel-abi-whitelists
-%define with_kernel_abi_whitelists %{?_with_kernel_abi_whitelists: 0} %{?!_with_kernel_abi_whitelists: 1}
-
-# In RHEL, we always want the doc build failing to build to be a failure,
-# which means settings this to false.
-%define doc_build_fail false
-
-# Additional options for user-friendly one-off kernel building:
-#
-# Only build the base kernel (--with baseonly):
-%define with_baseonly  %{?_with_baseonly:     1} %{?!_with_baseonly:     0}
-# Only build the debug kernel (--with dbgonly):
-%define with_dbgonly   %{?_with_dbgonly:      1} %{?!_with_dbgonly:      0}
-
-# Control whether we perform a compat. check against published ABI.
-%define with_kabichk   %{?_without_kabichk:   0} %{?!_without_kabichk:   1}
-
-# Control whether we perform a compat. check against DUP ABI.
-%define with_kabidupchk %{?_with_kabidupchk: 1} %{?!_with_kabidupchk: 0}
-
-# Control whether to run an extensive DWARF based kABI check.
-# Note that this option needs to have baseline setup in SOURCE30.
-%define with_kabidwchk %{?_without_kabidwchk: 0} %{?!_without_kabidwchk: 1}
-
-%define with_kabidw_base %{?_with_kabidw_base: 1} %{?!_with_kabidw_base: 0}
-
-# should we do C=1 builds with sparse
-%define with_sparse    %{?_with_sparse:       1} %{?!_with_sparse:       0}
-
-# Cross compile requested?
-%define with_cross    %{?_with_cross:         1} %{?!_with_cross:        0}
-
-# Control wheter we package git stats for the last commit or not
-%define with_commitstats %{?_with_commitstats: 1} %{?!_with_commitstats: 0}
-
-# Set debugbuildsenabled to 1 for production (build separate debug kernels)
-#  and 0 for rawhide (all kernels are debug kernels).
-# See also 'make debug' and 'make release'. RHEL only ever does 1.
-%define debugbuildsenabled 1
-
-%define with_gcov %{?_with_gcov:1}%{?!_with_gcov:0}
-
-# turn off debug kernel and kabichk for gcov builds
-%if %{with_gcov}
-%define with_debug 0
-%define with_kabichk 0
-%define with_kabidwchk 0
-%endif
-
-# turn off kABI DUP check and DWARF-based check if kABI check is disabled
-%if !%{with_kabichk}
-%define with_kabidupchk 0
-%define with_kabidwchk 0
-%endif
-
-# turn off kABI DWARF-based check if we're generating the base dataset
-%if %{with_kabidw_base}
-%define with_kabidwchk 0
-%endif
-
-%define make_target bzImage
-
-# Kernel Version Release + Arch -> KVRA
-%define KVRA %{version}-%{release}.%{_target_cpu}
-%define hdrarch %{_target_cpu}
-%define asmarch %{_target_cpu}
-%define cross_target %{_target_cpu}
-
-%if !%{debugbuildsenabled}
-%define with_debug 0
-%endif
-
-%if !%{with_debuginfo}
-%define _enable_debug_packages 0
-%endif
-%define debuginfodir /usr/lib/debug
-
-# if requested, only build base kernel
-%if %{with_baseonly}
-%define with_debug 0
-%define with_kdump 0
-%endif
-
-# if requested, only build debug kernel
-%if %{with_dbgonly}
-%define with_default 0
-%define with_kdump 0
-%define with_tools 0
-%define with_perf 0
-%define with_bpftool 0
-%endif
-
-# These arches install vdso/ directories.
-%define vdso_arches %{all_x86} x86_64 ppc ppc64 ppc64le s390 s390x
-
-# Overrides for generic default options
-
-# only build kernel-debug on x86_64, s390x, ppc64 ppc64le
-%ifnarch x86_64 s390x ppc64 ppc64le
-%define with_debug 0
-%endif
-
-%ifnarch x86_64 s390x ppc64 ppc64le
-%define with_bpftool 0
-%endif
-
-# only package docs noarch
-%ifnarch noarch
-%define with_doc 0
-%define with_kernel_abi_whitelists 0
-%endif
-
-# don't build noarch kernels or headers (duh)
-%ifarch noarch
-%define with_default 0
-%define with_headers 0
-%define with_tools 0
-%define with_perf 0
-%define with_bpftool 0
-%define all_arch_configs kernel-%{version}-*.config
-%endif
-
-# sparse blows up on ppc64
-%ifarch ppc64 ppc64le ppc
-%define with_sparse 0
-%endif
-
-# Per-arch tweaks
-
-%ifarch i686
-%define asmarch x86
-%define hdrarch i386
-%endif
-
-%ifarch x86_64
-%define asmarch x86
-%define all_arch_configs kernel-%{version}-x86_64*.config
-%define image_install_path boot
-%define kernel_image arch/x86/boot/bzImage
-%endif
-
-%ifarch ppc
-%define asmarch powerpc
-%define hdrarch powerpc
-%endif
-
-%ifarch ppc64 ppc64le
-%define asmarch powerpc
-%define hdrarch powerpc
-%define all_arch_configs kernel-%{version}-ppc64*.config
-%define image_install_path boot
-%define make_target vmlinux
-%define kernel_image vmlinux
-%define kernel_image_elf 1
-%define with_bootwrapper 1
-%define cross_target powerpc64
-%define kcflags -O3
-%endif
-
-%ifarch s390x
-%define asmarch s390
-%define hdrarch s390
-%define all_arch_configs kernel-%{version}-s390x*.config
-%define image_install_path boot
-%define kernel_image arch/s390/boot/bzImage
-%define with_tools 0
-%define with_kdump 1
-%endif
-
-#cross compile make
-%if %{with_cross}
-%define cross_opts CROSS_COMPILE=%{cross_target}-linux-gnu-
-%define with_perf 0
-%define with_tools 0
-%define with_bpftool 0
-%endif
-
-# Should make listnewconfig fail if there's config options
-# printed out?
-%define listnewconfig_fail 1
-
-# To temporarily exclude an architecture from being built, add it to
-# %%nobuildarches. Do _NOT_ use the ExclusiveArch: line, because if we
-# don't build kernel-headers then the new build system will no longer let
-# us use the previous build of that package -- it'll just be completely AWOL.
-# Which is a BadThing(tm).
-
-# We only build kernel-headers on the following...
-%define nobuildarches i686 s390 ppc
-
-%ifarch %nobuildarches
-%define with_default 0
-%define with_debuginfo 0
-%define with_kdump 0
-%define with_tools 0
-%define with_perf 0
-%define with_bpftool 0
-%define _enable_debug_packages 0
-%endif
-
-# Architectures we build tools/cpupower on
-%define cpupowerarchs x86_64 ppc64 ppc64le
-
-# Architectures where we compress modules
-%ifarch x86_64
-%define zipmodules 1
-%else
-%define zipmodules 0
-%endif
-
-#
-# Three sets of minimum package version requirements in the form of Conflicts:
-# to versions below the minimum
-#
-
-#
-# First the general kernel 2.6 required versions as per
-# Documentation/Changes
-#
-%define kernel_dot_org_conflicts  ppp < 2.4.3-3, isdn4k-utils < 3.2-32, nfs-utils < 1.0.7-12, e2fsprogs < 1.37-4, util-linux < 2.12, jfsutils < 1.1.7-2, reiserfs-utils < 3.6.19-2, xfsprogs < 2.6.13-4, procps < 3.2.5-6.3, oprofile < 0.9.1-2, device-mapper-libs < 1.02.63-2, mdadm < 3.2.1-5
-
-#
-# Then a series of requirements that are distribution specific, either
-# because we add patches for something, or the older versions have
-# problems with the newer kernel or lack certain things that make
-# integration in the distro harder than needed.
-#
-%define package_conflicts initscripts < 7.23, udev < 063-6, iptables < 1.3.2-1, ipw2200-firmware < 2.4, iwl4965-firmware < 228.57.2, selinux-policy-targeted < 3.13.1-201, squashfs-tools < 4.0, wireless-tools < 29-3, xfsprogs < 4.3.0, kmod < 20-9, kexec-tools < 2.0.14-3
-
-# We moved the drm include files into kernel-headers, make sure there's
-# a recent enough libdrm-devel on the system that doesn't have those.
-%define kernel_headers_conflicts libdrm-devel < 2.4.0-0.15
-
-#
-# Packages that need to be installed before the kernel is, because the %%post
-# scripts use them.
-#
-%define kernel_prereq  fileutils, module-init-tools >= 3.16-2, initscripts >= 8.11.1-1, grubby >= 8.28-2
-%define initrd_prereq  dracut >= 033-502
-
-#
-# This macro does requires, provides, conflicts, obsoletes for a kernel package.
-#	%%kernel_reqprovconf <subpackage>
-# It uses any kernel_<subpackage>_conflicts and kernel_<subpackage>_obsoletes
-# macros defined above.
-#
-%define kernel_reqprovconf \
-Provides: kernel = %{rpmversion}-%{pkg_release}\
-Provides: kernel-%{_target_cpu} = %{rpmversion}-%{pkg_release}%{?1:.%{1}}\
-Provides: kernel-drm = 4.3.0\
-Provides: kernel-drm-nouveau = 16\
-Provides: kernel-modeset = 1\
-Provides: kernel-uname-r = %{KVRA}%{?1:.%{1}}\
-Requires(pre): %{kernel_prereq}\
-Requires(pre): %{initrd_prereq}\
-Requires(pre): linux-firmware >= 20190429-72\
-Requires(post): %{_sbindir}/new-kernel-pkg\
-Requires(post): system-release\
-Requires(preun): %{_sbindir}/new-kernel-pkg\
-Conflicts: %{kernel_dot_org_conflicts}\
-Conflicts: %{package_conflicts}\
-%{expand:%%{?kernel%{?1:_%{1}}_conflicts:Conflicts: %%{kernel%{?1:_%{1}}_conflicts}}}\
-%{expand:%%{?kernel%{?1:_%{1}}_obsoletes:Obsoletes: %%{kernel%{?1:_%{1}}_obsoletes}}}\
-%{expand:%%{?kernel%{?1:_%{1}}_provides:Provides: %%{kernel%{?1:_%{1}}_provides}}}\
-# We can't let RPM do the dependencies automatic because it'll then pick up\
-# a correct but undesirable perl dependency from the module headers which\
-# isn't required for the kernel proper to function\
-AutoReq: no\
-AutoProv: yes\
-%{nil}
-
-Name: kernel%{?variant}
-Group: System Environment/Kernel
-License: GPLv2
-URL: http://www.kernel.org/
-Version: %{rpmversion}
-Release: %{pkg_release}
-# DO NOT CHANGE THE 'ExclusiveArch' LINE TO TEMPORARILY EXCLUDE AN ARCHITECTURE BUILD.
-# SET %%nobuildarches (ABOVE) INSTEAD
-ExclusiveArch: noarch i686 x86_64 ppc ppc64 ppc64le s390 s390x
-ExclusiveOS: Linux
-
-%kernel_reqprovconf
-
-#
-# List the packages used during the kernel build
-#
-BuildRequires: module-init-tools, patch >= 2.5.4, bash >= 2.03, sh-utils, tar
-BuildRequires: xz, findutils, gzip, m4, perl, make >= 3.78, diffutils, gawk
-BuildRequires: gcc >= 4.8.5-29, binutils >= 2.25, redhat-rpm-config >= 9.1.0-55
-BuildRequires: hostname, net-tools, bc
-BuildRequires: xmlto, asciidoc
-BuildRequires: openssl
-BuildRequires: hmaccalc
-BuildRequires: python-devel, newt-devel, perl(ExtUtils::Embed)
-%ifarch x86_64
-BuildRequires: pesign >= 0.109-4
-BuildRequires: elfutils-libelf-devel
-%endif
-%if %{with_sparse}
-BuildRequires: sparse >= 0.4.1
-%endif
-%if %{with_perf}
-BuildRequires: elfutils-devel zlib-devel binutils-devel bison
-BuildRequires: audit-libs-devel
-BuildRequires: java-devel
-%ifnarch s390 s390x
-BuildRequires: numactl-devel
-%endif
-%endif
-%if %{with_tools}
-BuildRequires: pciutils-devel gettext ncurses-devel
-%endif
-%if %{with_bpftool}
-BuildRequires: python-docutils
-BuildRequires: zlib-devel binutils-devel
-%endif
-%if %{with_debuginfo}
-# Fancy new debuginfo generation introduced in Fedora 8/RHEL 6.
-# The -r flag to find-debuginfo.sh invokes eu-strip --reloc-debug-sections
-# which reduces the number of relocations in kernel module .ko.debug files and
-# was introduced with rpm 4.9 and elfutils 0.153.
-BuildRequires: rpm-build >= 4.9.0-1, elfutils >= 0.153-1
-%define debuginfo_args --strict-build-id -r
-%endif
-%if %{with_kabidwchk} || %{with_kabidw_base}
-BuildRequires: bison flex
-%endif
-%ifarch s390x
-# required for zfcpdump
-BuildRequires: glibc-static
-%endif
-
-Source0: linux-%{rpmversion}-%{pkgrelease}.tar.xz
-
-Source1: Makefile.common
-
-Source10: sign-modules
-%define modsign_cmd %{SOURCE10}
-Source11: x509.genkey
-Source12: extra_certificates
-%if %{?released_kernel}
-Source13: centos-ca-secureboot.der
-Source14: centossecureboot001.crt
-Source15: centossecurebootca2.der
-Source16: centossecureboot201.crt
-%define pesign_name_0 centossecureboot001
-%define pesign_name_1 centossecureboot201
-%else
-Source13: centos-ca-secureboot.der
-Source14: centossecureboot001.crt
-Source15: centossecurebootca2.der
-Source16: centossecureboot201.crt
-%define pesign_name_0 centossecureboot001
-%define pesign_name_1 centossecureboot201
-%endif
-Source17: centos-ldup.x509
-Source18: centos-kpatch.x509
-
-Source19: check-kabi
-
-Source20: Module.kabi_x86_64
-Source21: Module.kabi_ppc64
-Source22: Module.kabi_ppc64le
-Source23: Module.kabi_s390x
-Source24: Module.kabi_dup_x86_64
-Source25: Module.kabi_dup_ppc64
-Source26: Module.kabi_dup_ppc64le
-Source27: Module.kabi_dup_s390x
-
-Source30: kernel-abi-whitelists-%{distro_build}.tar.bz2
-Source31: kernel-kabi-dw-%{distro_build}.tar.bz2
-
-Source50: kernel-%{version}-x86_64.config
-Source51: kernel-%{version}-x86_64-debug.config
-
-Source60: kernel-%{version}-ppc64.config
-Source61: kernel-%{version}-ppc64-debug.config
-Source62: kernel-%{version}-ppc64le.config
-Source63: kernel-%{version}-ppc64le-debug.config
-
-Source70: kernel-%{version}-s390x.config
-Source71: kernel-%{version}-s390x-debug.config
-Source72: kernel-%{version}-s390x-kdump.config
-
-Source81: find-debuginfo.sh
-
-# Sources for kernel modprobe config files
-Source1000: modprobe-dccp-blacklist.conf
-
-# Sources for kernel-tools
-Source2000: cpupower.service
-Source2001: cpupower.config
-
-# git stats for last commits can be used as source for smart tests
-%if %{with_commitstats}
-Source9999: lastcommit.stat
-%endif
-
-# empty final patch to facilitate testing of kernel patches
-Patch999999: linux-kernel-test.patch
-Patch1000: debrand-single-cpu.patch
-Patch1001: debrand-rh_taint.patch
-Patch1002: debrand-rh-i686-cpu.patch
-
-BuildRoot: %{_tmppath}/kernel-%{KVRA}-root
-
-%description
-The kernel package contains the Linux kernel (vmlinuz), the core of any
-Linux operating system.  The kernel handles the basic functions
-of the operating system: memory allocation, process allocation, device
-input and output, etc.
-
-
-%package doc
-Summary: Various documentation bits found in the kernel source
-Group: Documentation
-AutoReqProv: no
-%description doc
-This package contains documentation files from the kernel
-source. Various bits of information about the Linux kernel and the
-device drivers shipped with it are documented in these files.
-
-You'll want to install this package if you need a reference to the
-options that can be passed to Linux kernel modules at load time.
-
-
-%package headers
-Summary: Header files for the Linux kernel for use by glibc
-Group: Development/System
-Obsoletes: glibc-kernheaders < 3.0-46
-Provides: glibc-kernheaders = 3.0-46
-%description headers
-Kernel-headers includes the C header files that specify the interface
-between the Linux kernel and userspace libraries and programs.  The
-header files define structures and constants that are needed for
-building most standard programs and are also needed for rebuilding the
-glibc package.
-
-%package bootwrapper
-Summary: Boot wrapper files for generating combined kernel + initrd images
-Group: Development/System
-Requires: gzip binutils
-%description bootwrapper
-Kernel-bootwrapper contains the wrapper code which makes bootable "zImage"
-files combining both kernel and initial ramdisk.
-
-%package debuginfo-common-%{_target_cpu}
-Summary: Kernel source files used by %{name}-debuginfo packages
-Group: Development/Debug
-%description debuginfo-common-%{_target_cpu}
-This package is required by %{name}-debuginfo subpackages.
-It provides the kernel source files common to all builds.
-
-%if %{with_perf}
-%package -n perf
-Summary: Performance monitoring for the Linux kernel
-Group: Development/System
-Requires: bzip2
-License: GPLv2
-%description -n perf
-This package contains the perf tool, which enables performance monitoring
-of the Linux kernel.
-
-%package -n perf-debuginfo
-Summary: Debug information for package perf
-Group: Development/Debug
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
-AutoReqProv: no
-%description -n perf-debuginfo
-This package provides debug information for the perf package.
-
-# Note that this pattern only works right to match the .build-id
-# symlinks because of the trailing nonmatching alternation and
-# the leading .*, because of find-debuginfo.sh's buggy handling
-# of matching the pattern against the symlinks file.
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{_bindir}/perf(\.debug)?|.*%%{_libexecdir}/perf-core/.*|.*%%{_libdir}/traceevent/plugins/.*|.*%%{_libdir}/libperf-jvmti.so(\.debug)?|XXX' -o perf-debuginfo.list}
-
-%package -n python-perf
-Summary: Python bindings for apps which will manipulate perf events
-Group: Development/Libraries
-%description -n python-perf
-The python-perf package contains a module that permits applications
-written in the Python programming language to use the interface
-to manipulate perf events.
-
-%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
-
-%package -n python-perf-debuginfo
-Summary: Debug information for package perf python bindings
-Group: Development/Debug
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
-AutoReqProv: no
-%description -n python-perf-debuginfo
-This package provides debug information for the perf python bindings.
-
-# the python_sitearch macro should already be defined from above
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{python_sitearch}/perf.so(\.debug)?|XXX' -o python-perf-debuginfo.list}
-
-
-%endif # with_perf
-
-%if %{with_tools}
-
-%package -n kernel-tools
-Summary: Assortment of tools for the Linux kernel
-Group: Development/System
-License: GPLv2
-Provides:  cpupowerutils = 1:009-0.6.p1
-Obsoletes: cpupowerutils < 1:009-0.6.p1
-Provides:  cpufreq-utils = 1:009-0.6.p1
-Provides:  cpufrequtils = 1:009-0.6.p1
-Obsoletes: cpufreq-utils < 1:009-0.6.p1
-Obsoletes: cpufrequtils < 1:009-0.6.p1
-Obsoletes: cpuspeed < 1:2.0
-Requires: kernel-tools-libs = %{version}-%{release}
-%description -n kernel-tools
-This package contains the tools/ directory from the kernel source
-and the supporting documentation.
-
-%package -n kernel-tools-libs
-Summary: Libraries for the kernels-tools
-Group: Development/System
-License: GPLv2
-%description -n kernel-tools-libs
-This package contains the libraries built from the tools/ directory
-from the kernel source.
-
-%package -n kernel-tools-libs-devel
-Summary: Assortment of tools for the Linux kernel
-Group: Development/System
-License: GPLv2
-Requires: kernel-tools = %{version}-%{release}
-Provides:  cpupowerutils-devel = 1:009-0.6.p1
-Obsoletes: cpupowerutils-devel < 1:009-0.6.p1
-Requires: kernel-tools-libs = %{version}-%{release}
-Provides: kernel-tools-devel
-%description -n kernel-tools-libs-devel
-This package contains the development files for the tools/ directory from
-the kernel source.
-
-%package -n kernel-tools-debuginfo
-Summary: Debug information for package kernel-tools
-Group: Development/Debug
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
-AutoReqProv: no
-%description -n kernel-tools-debuginfo
-This package provides debug information for package kernel-tools.
-
-# Note that this pattern only works right to match the .build-id
-# symlinks because of the trailing nonmatching alternation and
-# the leading .*, because of find-debuginfo.sh's buggy handling
-# of matching the pattern against the symlinks file.
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{_bindir}/centrino-decode(\.debug)?|.*%%{_bindir}/powernow-k8-decode(\.debug)?|.*%%{_bindir}/cpupower(\.debug)?|.*%%{_libdir}/libcpupower.*|.*%%{_libdir}/libcpupower.*|.*%%{_bindir}/turbostat(\.debug)?|.*%%{_bindir}/x86_energy_perf_policy(\.debug)?|.*%%{_bindir}/tmon(\.debug)?|XXX' -o kernel-tools-debuginfo.list}
-
-%endif # with_tools
-
-%if %{with_bpftool}
-
-%package -n bpftool
-Summary: Inspection and simple manipulation of eBPF programs and maps
-License: GPLv2
-%description -n bpftool
-This package contains the bpftool, which allows inspection and simple
-manipulation of eBPF programs and maps.
-
-%package -n bpftool-debuginfo
-Summary: Debug information for package bpftool
-Group: Development/Debug
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
-AutoReqProv: no
-%description -n bpftool-debuginfo
-This package provides debug information for the bpftool package.
-
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{_sbindir}/bpftool(\.debug)?|XXX' -o bpftool-debuginfo.list}
-
-%endif # with_bpftool
-
-%if %{with_gcov}
-%package gcov
-Summary: gcov graph and source files for coverage data collection.
-Group: Development/System
-%description gcov
-kernel-gcov includes the gcov graph and source files for gcov coverage collection.
-%endif
-
-%package -n kernel-abi-whitelists
-Summary: The CentOS Linux kernel ABI symbol whitelists
-Group: System Environment/Kernel
-AutoReqProv: no
-%description -n kernel-abi-whitelists
-The kABI package contains information pertaining to the CentOS
-Linux kernel ABI, including lists of kernel symbols that are needed by
-external Linux kernel modules, and a yum plugin to aid enforcement.
-
-%if %{with_kabidw_base}
-%package kabidw-base
-Summary: The baseline dataset for kABI verification using DWARF data
-Group: System Environment/Kernel
-AutoReqProv: no
-%description kabidw-base
-The kabidw-base package contains data describing the current ABI of the CentOS 
-Linux kernel, suitable for the kabi-dw tool.
-%endif
-
-#
-# This macro creates a kernel-<subpackage>-debuginfo package.
-#	%%kernel_debuginfo_package <subpackage>
-#
-%define kernel_debuginfo_package() \
-%package %{?1:%{1}-}debuginfo\
-Summary: Debug information for package %{name}%{?1:-%{1}}\
-Group: Development/Debug\
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}\
-Provides: %{name}%{?1:-%{1}}-debuginfo-%{_target_cpu} = %{version}-%{release}\
-AutoReqProv: no\
-%description -n %{name}%{?1:-%{1}}-debuginfo\
-This package provides debug information for package %{name}%{?1:-%{1}}.\
-This is required to use SystemTap with %{name}%{?1:-%{1}}-%{KVRA}.\
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '/.*/%%{KVRA}%{?1:\.%{1}}/.*|/.*%%{KVRA}%{?1:\.%{1}}(\.debug)?' -o debuginfo%{?1}.list}\
-%{nil}
-
-#
-# This macro creates a kernel-<subpackage>-devel package.
-#	%%kernel_devel_package <subpackage> <pretty-name>
-#
-%define kernel_devel_package() \
-%package %{?1:%{1}-}devel\
-Summary: Development package for building kernel modules to match the %{?2:%{2} }kernel\
-Group: System Environment/Kernel\
-Provides: kernel%{?1:-%{1}}-devel-%{_target_cpu} = %{version}-%{release}\
-Provides: kernel-devel-%{_target_cpu} = %{version}-%{release}%{?1:.%{1}}\
-Provides: kernel-devel-uname-r = %{KVRA}%{?1:.%{1}}\
-AutoReqProv: no\
-Requires(pre): /usr/bin/find\
-Requires: perl\
-%description -n kernel%{?variant}%{?1:-%{1}}-devel\
-This package provides kernel headers and makefiles sufficient to build modules\
-against the %{?2:%{2} }kernel package.\
-%{nil}
-
-#
-# This macro creates a kernel-<subpackage> and its -devel and -debuginfo too.
-#	%%define variant_summary The Linux kernel compiled for <configuration>
-#	%%kernel_variant_package [-n <pretty-name>] <subpackage>
-#
-%define kernel_variant_package(n:) \
-%package %1\
-Summary: %{variant_summary}\
-Group: System Environment/Kernel\
-%kernel_reqprovconf\
-%{expand:%%kernel_devel_package %1 %{!?-n:%1}%{?-n:%{-n*}}}\
-%{expand:%%kernel_debuginfo_package %1}\
-%{nil}
-
-
-# First the auxiliary packages of the main kernel package.
-%kernel_devel_package
-%kernel_debuginfo_package
-
-
-# Now, each variant package.
-
-%define variant_summary The Linux kernel compiled with extra debugging enabled
-%kernel_variant_package debug
-%description debug
-The kernel package contains the Linux kernel (vmlinuz), the core of any
-Linux operating system.  The kernel handles the basic functions
-of the operating system:  memory allocation, process allocation, device
-input and output, etc.
-
-This variant of the kernel has numerous debugging options enabled.
-It should only be installed when trying to gather additional information
-on kernel bugs, as some of these options impact performance noticably.
-
-%define variant_summary A minimal Linux kernel compiled for crash dumps
-%kernel_variant_package kdump
-%description kdump
-This package includes a kdump version of the Linux kernel. It is
-required only on machines which will use the kexec-based kernel crash dump
-mechanism.
-
-%prep
-# do a few sanity-checks for --with *only builds
-%if %{with_baseonly}
-%if !%{with_default}
-echo "Cannot build --with baseonly, default kernel build is disabled"
-exit 1
-%endif
-%endif
-
-# more sanity checking; do it quietly
-if [ "%{patches}" != "%%{patches}" ] ; then
-  for patch in %{patches} ; do
-    if [ ! -f $patch ] ; then
-      echo "ERROR: Patch  ${patch##/*/}  listed in specfile but is missing"
-      exit 1
-    fi
-  done
-fi 2>/dev/null
-
-patch_command='patch -p1 -F1 -s'
-ApplyPatch()
-{
-  local patch=$1
-  shift
-  if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
-    exit 1
-  fi
-  if ! grep -E "^Patch[0-9]+: $patch\$" %{_specdir}/${RPM_PACKAGE_NAME%%%%%{?variant}}.spec ; then
-    if [ "${patch:0:8}" != "patch-3." ] ; then
-      echo "ERROR: Patch  $patch  not listed as a source patch in specfile"
-      exit 1
-    fi
-  fi 2>/dev/null
-  case "$patch" in
-  *.bz2) bunzip2 < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
-  *.gz) gunzip < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
-  *) $patch_command ${1+"$@"} < "$RPM_SOURCE_DIR/$patch" ;;
-  esac
-}
-
-# don't apply patch if it's empty
-ApplyOptionalPatch()
-{
-  local patch=$1
-  shift
-  if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
-    exit 1
-  fi
-  local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}')
-  if [ "$C" -gt 9 ]; then
-    ApplyPatch $patch ${1+"$@"}
-  fi
-}
-
-%setup -q -n kernel-%{rheltarball} -c
-mv linux-%{rheltarball} linux-%{KVRA}
-cd linux-%{KVRA}
-
-# Drop some necessary files from the source dir into the buildroot
-cp $RPM_SOURCE_DIR/kernel-%{version}-*.config .
-
-ApplyOptionalPatch linux-kernel-test.patch
-ApplyOptionalPatch debrand-single-cpu.patch
-ApplyOptionalPatch debrand-rh_taint.patch
-ApplyOptionalPatch debrand-rh-i686-cpu.patch
-
-# Any further pre-build tree manipulations happen here.
-
-chmod +x scripts/checkpatch.pl
-
-# This Prevents scripts/setlocalversion from mucking with our version numbers.
-touch .scmversion
-
-# only deal with configs if we are going to build for the arch
-%ifnarch %nobuildarches
-
-if [ -L configs ]; then
-	rm -f configs
-	mkdir configs
-fi
-
-# Remove configs not for the buildarch
-for cfg in kernel-%{version}-*.config; do
-  if [ `echo %{all_arch_configs} | grep -c $cfg` -eq 0 ]; then
-    rm -f $cfg
-  fi
-done
-
-%if !%{debugbuildsenabled}
-rm -f kernel-%{version}-*debug.config
-%endif
-
-# enable GCOV kernel config options if gcov is on
-%if %{with_gcov}
-for i in *.config
-do
-  sed -i 's/# CONFIG_GCOV_KERNEL is not set/CONFIG_GCOV_KERNEL=y\nCONFIG_GCOV_PROFILE_ALL=y\n/' $i
-done
-%endif
-
-# now run oldconfig over all the config files
-for i in *.config
-do
-  mv $i .config
-  Arch=`head -1 .config | cut -b 3-`
-  make %{?cross_opts} ARCH=$Arch listnewconfig | grep -E '^CONFIG_' >.newoptions || true
-%if %{listnewconfig_fail}
-  if [ -s .newoptions ]; then
-    cat .newoptions
-    exit 1
-  fi
-%endif
-  rm -f .newoptions
-  make %{?cross_opts} ARCH=$Arch oldnoconfig
-  echo "# $Arch" > configs/$i
-  cat .config >> configs/$i
-done
-# end of kernel config
-%endif
-
-# get rid of unwanted files resulting from patch fuzz
-find . \( -name "*.orig" -o -name "*~" \) -exec rm -f {} \; >/dev/null
-
-# remove unnecessary SCM files
-find . -name .gitignore -exec rm -f {} \; >/dev/null
-
-cd ..
-
-###
-### build
-###
-%build
-
-%if %{with_sparse}
-%define sparse_mflags	C=1
-%endif
-
-%if %{with_debuginfo}
-# This override tweaks the kernel makefiles so that we run debugedit on an
-# object before embedding it.  When we later run find-debuginfo.sh, it will
-# run debugedit again.  The edits it does change the build ID bits embedded
-# in the stripped object, but repeating debugedit is a no-op.  We do it
-# beforehand to get the proper final build ID bits into the embedded image.
-# This affects the vDSO images in vmlinux, and the vmlinux image in bzImage.
-export AFTER_LINK='sh -xc "/usr/lib/rpm/debugedit -b $$RPM_BUILD_DIR -d /usr/src/debug -i $@ > $@.id"'
-%endif
-
-cp_vmlinux()
-{
-  eu-strip --remove-comment -o "$2" "$1"
-}
-
-BuildKernel() {
-    MakeTarget=$1
-    KernelImage=$2
-    Flavour=$3
-    InstallName=${4:-vmlinuz}
-
-    # Pick the right config file for the kernel we're building
-    Config=kernel-%{version}-%{_target_cpu}${Flavour:+-${Flavour}}.config
-    DevelDir=/usr/src/kernels/%{KVRA}${Flavour:+.${Flavour}}
-
-    # When the bootable image is just the ELF kernel, strip it.
-    # We already copy the unstripped file into the debuginfo package.
-    if [ "$KernelImage" = vmlinux ]; then
-      CopyKernel=cp_vmlinux
-    else
-      CopyKernel=cp
-    fi
-
-    KernelVer=%{KVRA}${Flavour:+.${Flavour}}
-    echo BUILDING A KERNEL FOR ${Flavour} %{_target_cpu}...
-
-    # make sure EXTRAVERSION says what we want it to say
-    perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}.%{_target_cpu}${Flavour:+.${Flavour}}/" Makefile
-
-    # and now to start the build process
-
-    make %{?cross_opts} -s mrproper
-
-    cp %{SOURCE11} .	# x509.genkey
-    cp %{SOURCE12} .	# extra_certificates
-    cp %{SOURCE17} .	# rheldup3.x509
-    cp %{SOURCE18} .	# rhelkpatch1.x509
-
-    cp configs/$Config .config
-
-    Arch=`head -1 .config | cut -b 3-`
-    echo USING ARCH=$Arch
-
-%ifarch s390x
-    if [ "$Flavour" == "kdump" ]; then
-        pushd arch/s390/boot
-        gcc -static -o zfcpdump zfcpdump.c
-        popd
-    fi
-%endif
-
-    make -s %{?cross_opts} ARCH=$Arch oldnoconfig >/dev/null
-    make -s %{?cross_opts} ARCH=$Arch V=1 %{?_smp_mflags} KCFLAGS="%{?kcflags}" WITH_GCOV="%{?with_gcov}" $MakeTarget %{?sparse_mflags}
-
-    if [ "$Flavour" != "kdump" ]; then
-        make -s %{?cross_opts} ARCH=$Arch V=1 %{?_smp_mflags} KCFLAGS="%{?kcflags}" WITH_GCOV="%{?with_gcov}" modules %{?sparse_mflags} || exit 1
-    fi
-
-    # Start installing the results
-%if %{with_debuginfo}
-    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/boot
-    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/%{image_install_path}
-%endif
-    mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
-    install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
-    install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
-
-    # We estimate the size of the initramfs because rpm needs to take this size
-    # into consideration when performing disk space calculations. (See bz #530778)
-    dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initramfs-$KernelVer.img bs=1M count=20
-
-    if [ -f arch/$Arch/boot/zImage.stub ]; then
-      cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
-    fi
-# EFI SecureBoot signing, x86_64-only
-%ifarch x86_64
-    %pesign -s -i $KernelImage -o $KernelImage.tmp -a %{SOURCE13} -c %{SOURCE14} -n %{pesign_name_0}
-    %pesign -s -i $KernelImage.tmp -o $KernelImage.signed -a %{SOURCE15} -c %{SOURCE16} -n %{pesign_name_1}
-    rm $KernelImage.tmp
-    mv $KernelImage.signed $KernelImage
-%endif
-    $CopyKernel $KernelImage $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
-    chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
-
-    # hmac sign the kernel for FIPS
-    echo "Creating hmac file: $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac"
-    ls -l $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
-    sha512hmac $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer | sed -e "s,$RPM_BUILD_ROOT,," > $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac;
-
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/kernel
-    if [ "$Flavour" != "kdump" ]; then
-        # Override $(mod-fw) because we don't want it to install any firmware
-        # we'll get it from the linux-firmware package and we don't want conflicts
-        make -s %{?cross_opts} %{?_smp_mflags} ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
-%if %{with_gcov}
-	# install gcov-needed files to $BUILDROOT/$BUILD/...:
-	#   gcov_info->filename is absolute path
-	#   gcno references to sources can use absolute paths (e.g. in out-of-tree builds)
-	#   sysfs symlink targets (set up at compile time) use absolute paths to BUILD dir
-	find . \( -name '*.gcno' -o -name '*.[chS]' \) -exec install -D '{}' "$RPM_BUILD_ROOT/$(pwd)/{}" \;
-%endif
-    fi
-%ifarch %{vdso_arches}
-    make -s %{?cross_opts} ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT vdso_install KERNELRELEASE=$KernelVer
-    if [ ! -s ldconfig-kernel.conf ]; then
-      echo > ldconfig-kernel.conf "\
-# Placeholder file, no vDSO hwcap entries used in this kernel."
-    fi
-    %{__install} -D -m 444 ldconfig-kernel.conf $RPM_BUILD_ROOT/etc/ld.so.conf.d/kernel-$KernelVer.conf
-%endif
-
-    # And save the headers/makefiles etc for building modules against
-    #
-    # This all looks scary, but the end result is supposed to be:
-    # * all arch relevant include/ files
-    # * all Makefile/Kconfig files
-    # * all script/ files
-
-    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
-    # dirs for additional modules per module-init-tools, kbuild/modules.txt
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/extra
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/weak-updates
-    # first copy everything
-    cp --parents `find  -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    if [ -s Module.markers ]; then
-      cp Module.markers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    fi
-
-    # create the kABI metadata for use in packaging
-    # NOTENOTE: the name symvers is used by the rpm backend
-    # NOTENOTE: to discover and run the /usr/lib/rpm/fileattrs/kabi.attr
-    # NOTENOTE: script which dynamically adds exported kernel symbol
-    # NOTENOTE: checksums to the rpm metadata provides list.
-    # NOTENOTE: if you change the symvers name, update the backend too
-    echo "**** GENERATING kernel ABI metadata ****"
-    gzip -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz
-
-%if %{with_kabichk}
-    echo "**** kABI checking is enabled in kernel SPEC file. ****"
-    chmod 0755 $RPM_SOURCE_DIR/check-kabi
-    if [ -e $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour ]; then
-        cp $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
-        $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
-        rm $RPM_BUILD_ROOT/Module.kabi # for now, don't keep it around.
-    else
-        echo "**** NOTE: Cannot find reference Module.kabi file. ****"
-    fi
-%endif
-
-%if %{with_kabidupchk}
-    echo "**** kABI DUP checking is enabled in kernel SPEC file. ****"
-    if [ -e $RPM_SOURCE_DIR/Module.kabi_dup_%{_target_cpu}$Flavour ]; then
-        cp $RPM_SOURCE_DIR/Module.kabi_dup_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
-        $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
-        rm $RPM_BUILD_ROOT/Module.kabi # for now, don't keep it around.
-    else
-        echo "**** NOTE: Cannot find DUP reference Module.kabi file. ****"
-    fi
-%endif
-
-%if %{with_kabidw_base}
-    # Don't build kabi base for debug kernels
-    if [ "$Flavour" != "kdump" -a "$Flavour" != "debug" ]; then
-        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf
-        tar xjvf %{SOURCE31} -C $RPM_BUILD_ROOT/kabi-dwarf
-
-        make -C $RPM_BUILD_ROOT/kabi-dwarf/kabi-dw
-
-        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf/whitelists
-        tar xjvf %{SOURCE30} -C $RPM_BUILD_ROOT/kabi-dwarf/whitelists
-
-        echo "**** GENERATING DWARF-based kABI baseline dataset ****"
-        chmod 0755 $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh
-        $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh generate \
-            "$RPM_BUILD_ROOT/kabi-dwarf/whitelists/kabi-current/kabi_whitelist_%{_target_cpu}" \
-            "$(pwd)" \
-            "$RPM_BUILD_ROOT/kabidw-base/%{_target_cpu}${Flavour:+.${Flavour}}" || :
-
-        rm -rf $RPM_BUILD_ROOT/kabi-dwarf
-    fi
-%endif
-
-%if %{with_kabidwchk}
-    if [ "$Flavour" != "kdump" ]; then
-        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf
-        tar xjvf %{SOURCE31} -C $RPM_BUILD_ROOT/kabi-dwarf
-        if [ -d "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}" ]; then
-            make -C $RPM_BUILD_ROOT/kabi-dwarf/kabi-dw
-
-            mkdir -p $RPM_BUILD_ROOT/kabi-dwarf/whitelists
-            tar xjvf %{SOURCE30} -C $RPM_BUILD_ROOT/kabi-dwarf/whitelists
-
-            echo "**** GENERATING DWARF-based kABI dataset ****"
-            chmod 0755 $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh
-            $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh generate \
-                "$RPM_BUILD_ROOT/kabi-dwarf/whitelists/kabi-current/kabi_whitelist_%{_target_cpu}" \
-                "$(pwd)" \
-                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}.tmp" || :
-
-            echo "**** kABI DWARF-based comparison report ****"
-            $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh compare \
-                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}" \
-                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}.tmp" || :
-            echo "**** End of kABI DWARF-based comparison report ****"
-        else
-            echo "**** Baseline dataset for kABI DWARF-BASED comparison report not found ****"
-        fi
-
-        rm -rf $RPM_BUILD_ROOT/kabi-dwarf
-    fi
-%endif
-
-    # then drop all but the needed Makefiles/Kconfig files
-    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
-    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
-    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
-    cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    if [ -d arch/$Arch/scripts ]; then
-      cp -a arch/$Arch/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/$Arch || :
-    fi
-    if [ -f arch/$Arch/*lds ]; then
-      cp -a arch/$Arch/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%Arch || :
-    fi
-    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
-    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
-%ifarch ppc64 ppc64le
-    cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
-%endif
-    if [ -d arch/%{asmarch}/include ]; then
-      cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
-    fi
-    cp -a include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
-
-    # Files for 'make scripts' to succeed with kernel-devel.
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/security/selinux/include
-    cp -a --parents security/selinux/include/classmap.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp -a --parents security/selinux/include/initial_sid_to_string.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/include/tools
-    cp -a --parents tools/include/tools/be_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp -a --parents tools/include/tools/le_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-
-    # copy objtool for kernel-devel (needed for building external modules)
-    if grep -q CONFIG_STACK_VALIDATION=y .config; then
-      mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/objtool
-      cp -a tools/objtool/objtool $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/objtool
-    fi
-
-    # Make sure the Makefile and version.h have a matching timestamp so that
-    # external modules can be built
-    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/generated/uapi/linux/version.h
-    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/generated/autoconf.h
-    # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
-    cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
-
-%if %{with_debuginfo}
-    if test -s vmlinux.id; then
-      cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id
-    else
-      echo >&2 "*** ERROR *** no vmlinux build ID! ***"
-      exit 1
-    fi
-
-    #
-    # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
-    #
-    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
-    cp vmlinux $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
-%endif
-
-    find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
-
-    # mark modules executable so that strip-to-file can strip them
-    xargs --no-run-if-empty chmod u+x < modnames
-
-    # Generate a list of modules for block and networking.
-
-    grep -F /drivers/ modnames | xargs --no-run-if-empty nm -upA |
-    sed -n 's,^.*/\([^/]*\.ko\):  *U \(.*\)$,\1 \2,p' > drivers.undef
-
-    collect_modules_list()
-    {
-      sed -r -n -e "s/^([^ ]+) \\.?($2)\$/\\1/p" drivers.undef |
-      LC_ALL=C sort -u > $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
-      if [ ! -z "$3" ]; then
-        sed -r -e "/^($3)\$/d" -i $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
-      fi
-    }
-
-    collect_modules_list networking 'register_netdev|ieee80211_register_hw|usbnet_probe|phy_driver_register|rt2x00(pci|usb)_probe|register_netdevice'
-    collect_modules_list block 'ata_scsi_ioctl|scsi_add_host|scsi_add_host_with_dma|blk_alloc_queue|blk_init_queue|register_mtd_blktrans|scsi_esp_register|scsi_register_device_handler|blk_queue_physical_block_size' 'pktcdvd.ko|dm-mod.ko'
-    collect_modules_list drm 'drm_open|drm_init'
-    collect_modules_list modesetting 'drm_crtc_init'
-
-    # detect missing or incorrect license tags
-    rm -f modinfo
-    while read i
-    do
-      echo -n "${i#$RPM_BUILD_ROOT/lib/modules/$KernelVer/} " >> modinfo
-      /sbin/modinfo -l $i >> modinfo
-    done < modnames
-
-    grep -E -v 'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' modinfo && exit 1
-
-    rm -f modinfo modnames
-
-    # Save off the .tmp_versions/ directory.  We'll use it in the
-    # __debug_install_post macro below to sign the right things
-    # Also save the signing keys so we actually sign the modules with the
-    # right key.
-    cp -r .tmp_versions .tmp_versions.sign${Flavour:+.${Flavour}}
-    cp signing_key.priv signing_key.priv.sign${Flavour:+.${Flavour}}
-    cp signing_key.x509 signing_key.x509.sign${Flavour:+.${Flavour}}
-
-    # remove files that will be auto generated by depmod at rpm -i time
-    for i in alias alias.bin builtin.bin ccwmap dep dep.bin ieee1394map inputmap isapnpmap ofmap pcimap seriomap symbols symbols.bin usbmap softdep devname
-    do
-      rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$i
-    done
-
-    # Move the devel headers out of the root file system
-    mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
-    mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
-    ln -sf $DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-
-    install -Dm644 %{SOURCE1000} $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/dccp-blacklist.conf
-
-    # prune junk from kernel-devel
-    find $RPM_BUILD_ROOT/usr/src/kernels -name ".*.cmd" -exec rm -f {} \;
-}
-
-###
-# DO it...
-###
-
-# prepare directories
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT/boot
-mkdir -p $RPM_BUILD_ROOT%{_libexecdir}
-
-cd linux-%{KVRA}
-
-%if %{with_default}
-BuildKernel %make_target %kernel_image
-%endif
-
-%if %{with_debug}
-BuildKernel %make_target %kernel_image debug
-%endif
-
-%if %{with_kdump}
-BuildKernel %make_target %kernel_image kdump
-%endif
-
-%global perf_make make %{?_smp_mflags} -C tools/perf -s V=1 WERROR=0 NO_LIBUNWIND=1 HAVE_CPLUS_DEMANGLE=1 NO_GTK2=1 NO_STRLCPY=1 NO_PERF_READ_VDSO32=1 NO_PERF_READ_VDSOX32=1 prefix=%{_prefix} lib=%{_lib}
-%if %{with_perf}
-# perf
-%{perf_make} all
-%{perf_make} man || %{doc_build_fail}
-%endif
-
-%if %{with_tools}
-%ifarch %{cpupowerarchs}
-# cpupower
-# make sure version-gen.sh is executable.
-chmod +x tools/power/cpupower/utils/version-gen.sh
-make %{?cross_opts} %{?_smp_mflags} -C tools/power/cpupower CPUFREQ_BENCH=false
-%ifarch x86_64
-    pushd tools/power/cpupower/debug/x86_64
-    make %{?_smp_mflags} centrino-decode powernow-k8-decode
-    popd
-%endif
-%ifarch x86_64
-   pushd tools/power/x86/x86_energy_perf_policy/
-   make
-   popd
-   pushd tools/power/x86/turbostat
-   make
-   popd
-%endif #turbostat/x86_energy_perf_policy
-%endif
-pushd tools
-make tmon
-popd
-# build VM tools
-pushd tools/vm/
-make slabinfo page_owner_sort
-popd
-%endif
-
-%if %{with_bpftool}
-pushd tools/bpf/bpftool
-make
-popd
-%endif
-
-%if %{with_doc}
-# Make the HTML and man pages.
-make htmldocs mandocs || %{doc_build_fail}
-
-# sometimes non-world-readable files sneak into the kernel source tree
-chmod -R a=rX Documentation
-find Documentation -type d | xargs chmod u+w
-%endif
-
-# In the modsign case, we do 3 things.  1) We check the "flavour" and hard
-# code the value in the following invocations.  This is somewhat sub-optimal
-# but we're doing this inside of an RPM macro and it isn't as easy as it
-# could be because of that.  2) We restore the .tmp_versions/ directory from
-# the one we saved off in BuildKernel above.  This is to make sure we're
-# signing the modules we actually built/installed in that flavour.  3) We
-# grab the arch and invoke 'make modules_sign' and the mod-extra-sign.sh
-# commands to actually sign the modules.
-#
-# We have to do all of those things _after_ find-debuginfo runs, otherwise
-# that will strip the signature off of the modules.
-#
-# Finally, pick a module at random and check that it's signed and fail the build
-# if it isn't.
-
-%define __modsign_install_post \
-  if [ "%{with_debug}" -ne "0" ]; then \
-    Arch=`head -1 configs/kernel-%{version}-%{_target_cpu}-debug.config | cut -b 3-` \
-    rm -rf .tmp_versions \
-    mv .tmp_versions.sign.debug .tmp_versions \
-    mv signing_key.priv.sign.debug signing_key.priv \
-    mv signing_key.x509.sign.debug signing_key.x509 \
-    %{modsign_cmd} $RPM_BUILD_ROOT/lib/modules/%{KVRA}.debug || exit 1 \
-  fi \
-    if [ "%{with_default}" -ne "0" ]; then \
-    Arch=`head -1 configs/kernel-%{version}-%{_target_cpu}.config | cut -b 3-` \
-    rm -rf .tmp_versions \
-    mv .tmp_versions.sign .tmp_versions \
-    mv signing_key.priv.sign signing_key.priv \
-    mv signing_key.x509.sign signing_key.x509 \
-    %{modsign_cmd} $RPM_BUILD_ROOT/lib/modules/%{KVRA} || exit 1 \
-  fi \
-  if [ "%{zipmodules}" -eq "1" ]; then \
-    find $RPM_BUILD_ROOT/lib/modules/ -type f -name '*.ko' | { NPROC=`nproc`; xargs -r -n16 -P ${NPROC:-1} xz; } \
-  fi \
-%{nil}
-
-###
-### Special hacks for debuginfo subpackages.
-###
-
-# This macro is used by %%install, so we must redefine it before that.
-%define debug_package %{nil}
-
-%if %{with_debuginfo}
-
-%define __debug_install_post \
-  %{SOURCE81} %{?_smp_mflags} %{debuginfo_args} %{_builddir}/%{?buildsubdir}\
-%{nil}
-
-%ifnarch noarch
-%global __debug_package 1
-%files -f debugfiles.list debuginfo-common-%{_target_cpu}
-%defattr(-,root,root)
-%endif
-
-%endif
-
-#
-# Disgusting hack alert! We need to ensure we sign modules *after* all
-# invocations of strip occur, which is in __debug_install_post if
-# find-debuginfo.sh runs, and __os_install_post if not.
-#
-%define __spec_install_post \
-  %{?__debug_package:%{__debug_install_post}}\
-  %{__arch_install_post}\
-  %{__os_install_post}\
-  %{__modsign_install_post}
-
-###
-### install
-###
-
-%install
-
-cd linux-%{KVRA}
-
-%if %{with_doc}
-docdir=$RPM_BUILD_ROOT%{_datadir}/doc/kernel-doc-%{rpmversion}
-man9dir=$RPM_BUILD_ROOT%{_datadir}/man/man9
-
-# copy the source over
-mkdir -p $docdir
-tar -f - --exclude=man --exclude='.*' -c Documentation | tar xf - -C $docdir
-
-# Install man pages for the kernel API.
-mkdir -p $man9dir
-find Documentation/DocBook/man -name '*.9.gz' -print0 |
-xargs -0 --no-run-if-empty %{__install} -m 444 -t $man9dir $m
-ls $man9dir | grep -q '' || > $man9dir/BROKEN
-%endif # with_doc
-
-# We have to do the headers install before the tools install because the
-# kernel headers_install will remove any header files in /usr/include that
-# it doesn't install itself.
-
-%if %{with_headers}
-# Install kernel headers
-make %{?cross_opts} ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
-
-# Do headers_check but don't die if it fails.
-make %{?cross_opts} ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_check > hdrwarnings.txt || :
-if grep -q exist hdrwarnings.txt; then
-   sed s:^$RPM_BUILD_ROOT/usr/include/:: hdrwarnings.txt
-   # Temporarily cause a build failure if header inconsistencies.
-   # exit 1
-fi
-
-find $RPM_BUILD_ROOT/usr/include \( -name .install -o -name .check -o -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
-
-%endif
-
-%if %{with_kernel_abi_whitelists}
-# kabi directory
-INSTALL_KABI_PATH=$RPM_BUILD_ROOT/lib/modules/
-mkdir -p $INSTALL_KABI_PATH
-
-# install kabi releases directories
-tar xjvf %{SOURCE30} -C $INSTALL_KABI_PATH
-%endif  # with_kernel_abi_whitelists
-
-%if %{with_perf}
-# perf tool binary and supporting scripts/binaries
-%{perf_make} DESTDIR=$RPM_BUILD_ROOT install
-# remove the 'trace' symlink.
-rm -f $RPM_BUILD_ROOT/%{_bindir}/trace
-
-# perf-python extension
-%{perf_make} DESTDIR=$RPM_BUILD_ROOT install-python_ext
-
-# perf man pages (note: implicit rpm magic compresses them later)
-%{perf_make} DESTDIR=$RPM_BUILD_ROOT try-install-man || %{doc_build_fail}
-%endif
-
-%if %{with_tools}
-%ifarch %{cpupowerarchs}
-make -C tools/power/cpupower DESTDIR=$RPM_BUILD_ROOT libdir=%{_libdir} mandir=%{_mandir} CPUFREQ_BENCH=false install
-rm -f %{buildroot}%{_libdir}/*.{a,la}
-%find_lang cpupower
-mv cpupower.lang ../
-%ifarch x86_64
-    pushd tools/power/cpupower/debug/x86_64
-    install -m755 centrino-decode %{buildroot}%{_bindir}/centrino-decode
-    install -m755 powernow-k8-decode %{buildroot}%{_bindir}/powernow-k8-decode
-    popd
-%endif
-chmod 0755 %{buildroot}%{_libdir}/libcpupower.so*
-mkdir -p %{buildroot}%{_unitdir} %{buildroot}%{_sysconfdir}/sysconfig
-install -m644 %{SOURCE2000} %{buildroot}%{_unitdir}/cpupower.service
-install -m644 %{SOURCE2001} %{buildroot}%{_sysconfdir}/sysconfig/cpupower
-%ifarch %{ix86} x86_64
-   mkdir -p %{buildroot}%{_mandir}/man8
-   pushd tools/power/x86/x86_energy_perf_policy
-   make DESTDIR=%{buildroot} install
-   popd
-   pushd tools/power/x86/turbostat
-   make DESTDIR=%{buildroot} install
-   popd
-%endif #turbostat/x86_energy_perf_policy
-pushd tools/thermal/tmon
-make INSTALL_ROOT=%{buildroot} install
-popd
-%endif
-# install VM tools
-pushd tools/vm/
-install -m755 slabinfo %{buildroot}%{_bindir}/slabinfo
-install -m755 page_owner_sort %{buildroot}%{_bindir}/page_owner_sort
-popd
-%endif
-
-%if %{with_bpftool}
-pushd tools/bpf/bpftool
-make DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} bash_compdir=%{_sysconfdir}/bash_completion.d/ mandir=%{_mandir} install doc-install
-popd
-%endif
-
-%if %{with_bootwrapper}
-make %{?cross_opts} ARCH=%{hdrarch} DESTDIR=$RPM_BUILD_ROOT bootwrapper_install WRAPPER_OBJDIR=%{_libdir}/kernel-wrapper WRAPPER_DTSDIR=%{_libdir}/kernel-wrapper/dts
-%endif
-
-%if %{with_doc}
-# Red Hat UEFI Secure Boot CA cert, which can be used to authenticate the kernel
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}
-install -m 0644 %{SOURCE13} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca-20140212.cer
-install -m 0644 %{SOURCE15} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca-20200609.cer
-ln -s kernel-signing-ca-20200609.cer $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca.cer
-%endif
-
-# We have to do the headers checksum calculation after the tools install because
-# these might end up installing their own set of headers on top of kernel's
-%if %{with_headers}
-# compute a content hash to export as Provides: kernel-headers-checksum
-HEADERS_CHKSUM=$(export LC_ALL=C; find $RPM_BUILD_ROOT/usr/include -type f -name "*.h" \
-			! -path $RPM_BUILD_ROOT/usr/include/linux/version.h | \
-		 sort | xargs cat | sha1sum - | cut -f 1 -d ' ');
-# export the checksum via usr/include/linux/version.h, so the dynamic
-# find-provides can grab the hash to update it accordingly
-echo "#define KERNEL_HEADERS_CHECKSUM \"$HEADERS_CHKSUM\"" >> $RPM_BUILD_ROOT/usr/include/linux/version.h
-%endif
-
-###
-### clean
-###
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-###
-### scripts
-###
-
-%if %{with_tools}
-%post -n kernel-tools
-/sbin/ldconfig
-
-%postun -n kernel-tools
-/sbin/ldconfig
-%endif
-
-#
-# This macro defines a %%post script for a kernel*-devel package.
-#	%%kernel_devel_post [<subpackage>]
-#
-%define kernel_devel_post() \
-%{expand:%%post %{?1:%{1}-}devel}\
-if [ -f /etc/sysconfig/kernel ]\
-then\
-    . /etc/sysconfig/kernel || exit $?\
-fi\
-if [ "$HARDLINK" != "no" -a -x /usr/sbin/hardlink ]\
-then\
-    (cd /usr/src/kernels/%{KVRA}%{?1:.%{1}} &&\
-     /usr/bin/find . -type f | while read f; do\
-       hardlink -c /usr/src/kernels/*%{?dist}.*/$f $f\
-     done)\
-fi\
-%{nil}
-
-
-# This macro defines a %%posttrans script for a kernel package.
-#	%%kernel_variant_posttrans [<subpackage>]
-# More text can follow to go at the end of this variant's %%post.
-#
-%define kernel_variant_posttrans() \
-%{expand:%%posttrans %{?1}}\
-if [ -x %{_sbindir}/weak-modules ]\
-then\
-    %{_sbindir}/weak-modules --add-kernel %{KVRA}%{?1:.%{1}} || exit $?\
-fi\
-%{_sbindir}/new-kernel-pkg --package kernel%{?-v:-%{-v*}} --mkinitrd --dracut --depmod --install %{KVRA}%{?-v:.%{-v*}} \
-rc=$?\
-if [ $rc != 0 ]; then\
-    %{_sbindir}/new-kernel-pkg --remove %{KVRA}%{?1:.%{1}}\
-    ERROR_MSG="ERROR: installing kernel-%{KVRA}%{?1:.%{1}}: no space left for creating initramfs. Clean up /boot partition and re-run '%{_sbindir}/new-kernel-pkg --package kernel%{?-v:-%{-v*}} --mkinitrd --dracut --depmod --install %{KVRA}%{?-v:.%{-v*}}'"\
-    if [ -e /usr/bin/logger ]; then\
-        /usr/bin/logger -p syslog.warn "\$ERROR_MSG"\
-    else\
-        echo "\$ERROR_MSG" > /dev/kmsg\
-    fi\
-    echo "\$ERROR_MSG"\
-    exit $rc\
-fi\
-%{_sbindir}/new-kernel-pkg --package kernel%{?1:-%{1}} --rpmposttrans %{KVRA}%{?1:.%{1}} || exit $?\
-%{nil}
-
-#
-# This macro defines a %%post script for a kernel package and its devel package.
-#	%%kernel_variant_post [-v <subpackage>] [-r <replace>]
-# More text can follow to go at the end of this variant's %%post.
-#
-%define kernel_variant_post(v:r:) \
-%{expand:%%kernel_devel_post %{?-v*}}\
-%{expand:%%kernel_variant_posttrans %{?-v*}}\
-%{expand:%%post %{?-v*}}\
-%{-r:\
-if [ `uname -i` == "x86_64" ] &&\
-   [ -f /etc/sysconfig/kernel ]; then\
-  /bin/sed -r -i -e 's/^DEFAULTKERNEL=%{-r*}$/DEFAULTKERNEL=kernel%{?-v:-%{-v*}}/' /etc/sysconfig/kernel || exit $?\
-fi}\
-%{nil}
-
-#
-# This macro defines a %%preun script for a kernel package.
-#	%%kernel_variant_preun <subpackage>
-#
-%define kernel_variant_preun() \
-%{expand:%%preun %{?1}}\
-%{_sbindir}/new-kernel-pkg --rminitrd --rmmoddep --remove %{KVRA}%{?1:.%{1}} || exit $?\
-if [ -x %{_sbindir}/weak-modules ]\
-then\
-    %{_sbindir}/weak-modules --remove-kernel %{KVRA}%{?1:.%{1}} || exit $?\
-fi\
-%{nil}
-
-%kernel_variant_preun
-%kernel_variant_post 
-
-%kernel_variant_preun debug
-%kernel_variant_post -v debug
-
-%ifarch s390x
-%postun kdump
-    # Create softlink to latest remaining kdump kernel.
-    # If no more kdump kernel is available, remove softlink.
-    if [ "$(readlink /boot/zfcpdump)" == "/boot/vmlinuz-%{KVRA}.kdump" ]
-    then
-        vmlinuz_next=$(ls /boot/vmlinuz-*.kdump 2> /dev/null | sort | tail -n1)
-        if [ $vmlinuz_next ]
-        then
-            ln -sf $vmlinuz_next /boot/zfcpdump
-        else
-            rm -f /boot/zfcpdump
-        fi
-    fi
-
-%post kdump
-    ln -sf /boot/vmlinuz-%{KVRA}.kdump /boot/zfcpdump
-%endif # s390x
-
-if [ -x /sbin/ldconfig ]
-then
-    /sbin/ldconfig -X || exit $?
-fi
-
-###
-### file lists
-###
-
-%if %{with_headers}
-%files headers
-%defattr(-,root,root)
-/usr/include/*
-%endif
-
-%if %{with_bootwrapper}
-%files bootwrapper
-%defattr(-,root,root)
-/usr/sbin/*
-%{_libdir}/kernel-wrapper
-%endif
-
-# only some architecture builds need kernel-doc
-%if %{with_doc}
-%files doc
-%defattr(-,root,root)
-%{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation/*
-%dir %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation
-%dir %{_datadir}/doc/kernel-doc-%{rpmversion}
-%{_datadir}/man/man9/*
-%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca-20140212.cer
-%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca-20200609.cer
-%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca.cer
-%dir %{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}
-%dir %{_datadir}/doc/kernel-keys
-%endif
-
-%if %{with_kernel_abi_whitelists}
-%files -n kernel-abi-whitelists
-%defattr(-,root,root,-)
-/lib/modules/kabi-*
-%endif
-
-%if %{with_kabidw_base}
-%ifarch x86_64 s390x ppc64 ppc64le
-%files kabidw-base
-%defattr(-,root,root)
-/kabidw-base/%{_target_cpu}/*
-%endif
-%endif
-
-%if %{with_perf}
-%files -n perf
-%defattr(-,root,root)
-%{_bindir}/perf
-%{_libdir}/libperf-jvmti.so
-%dir %{_libexecdir}/perf-core
-%{_libexecdir}/perf-core/*
-%{_libdir}/traceevent
-%{_mandir}/man[1-8]/perf*
-%{_sysconfdir}/bash_completion.d/perf
-%{_datadir}/perf-core/strace/groups
-%{_datadir}/doc/perf-tip/tips.txt
-
-%files -n python-perf
-%defattr(-,root,root)
-%{python_sitearch}
-
-%if %{with_debuginfo}
-%files -f perf-debuginfo.list -n perf-debuginfo
-%defattr(-,root,root)
-
-%files -f python-perf-debuginfo.list -n python-perf-debuginfo
-%defattr(-,root,root)
-%endif
-%endif
-
-%if %{with_tools}
-%files -n kernel-tools -f cpupower.lang
-%defattr(-,root,root)
-%{_bindir}/slabinfo
-%{_bindir}/page_owner_sort
-%ifarch %{cpupowerarchs}
-%{_bindir}/cpupower
-%ifarch x86_64
-%{_bindir}/centrino-decode
-%{_bindir}/powernow-k8-decode
-%endif
-%{_unitdir}/cpupower.service
-%{_mandir}/man[1-8]/cpupower*
-%config(noreplace) %{_sysconfdir}/sysconfig/cpupower
-%ifarch %{ix86} x86_64
-%{_bindir}/x86_energy_perf_policy
-%{_mandir}/man8/x86_energy_perf_policy*
-%{_bindir}/turbostat
-%{_mandir}/man8/turbostat*
-%endif
-%endif
-%{_bindir}/tmon
-%if %{with_debuginfo}
-%files -f kernel-tools-debuginfo.list -n kernel-tools-debuginfo
-%defattr(-,root,root)
-%endif
-
-%ifarch %{cpupowerarchs}
-%files -n kernel-tools-libs
-%defattr(-,root,root)
-%{_libdir}/libcpupower.so.0
-%{_libdir}/libcpupower.so.0.0.0
-
-%files -n kernel-tools-libs-devel
-%defattr(-,root,root)
-%{_libdir}/libcpupower.so
-%{_includedir}/cpufreq.h
-%endif
-
-%endif # with_tools
-
-%if %{with_bpftool}
-%files -n bpftool
-%{_sbindir}/bpftool
-%{_sysconfdir}/bash_completion.d/bpftool
-%{_mandir}/man8/bpftool-cgroup.8.gz
-%{_mandir}/man8/bpftool-map.8.gz
-%{_mandir}/man8/bpftool-prog.8.gz
-%{_mandir}/man8/bpftool.8.gz
-
-%if %{with_debuginfo}
-%files -f bpftool-debuginfo.list -n bpftool-debuginfo
-%defattr(-,root,root)
-%endif
-%endif
-
-%if %{with_gcov}
-%ifarch x86_64 s390x ppc64 ppc64le
-%files gcov
-%defattr(-,root,root)
-%{_builddir}
-%endif
-%endif
-
-# This is %%{image_install_path} on an arch where that includes ELF files,
-# or empty otherwise.
-%define elf_image_install_path %{?kernel_image_elf:%{image_install_path}}
-
-#
-# This macro defines the %%files sections for a kernel package
-# and its devel and debuginfo packages.
-#	%%kernel_variant_files [-k vmlinux] <condition> <subpackage>
-#
-%define kernel_variant_files(k:) \
-%if %{1}\
-%{expand:%%files %{?2}}\
-%defattr(-,root,root)\
-/%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVRA}%{?2:.%{2}}\
-/%{image_install_path}/.vmlinuz-%{KVRA}%{?2:.%{2}}.hmac \
-%attr(600,root,root) /boot/System.map-%{KVRA}%{?2:.%{2}}\
-/boot/symvers-%{KVRA}%{?2:.%{2}}.gz\
-/boot/config-%{KVRA}%{?2:.%{2}}\
-%dir /lib/modules/%{KVRA}%{?2:.%{2}}\
-/lib/modules/%{KVRA}%{?2:.%{2}}/kernel\
-/lib/modules/%{KVRA}%{?2:.%{2}}/build\
-/lib/modules/%{KVRA}%{?2:.%{2}}/source\
-/lib/modules/%{KVRA}%{?2:.%{2}}/extra\
-/lib/modules/%{KVRA}%{?2:.%{2}}/updates\
-/lib/modules/%{KVRA}%{?2:.%{2}}/weak-updates\
-%ifarch %{vdso_arches}\
-/lib/modules/%{KVRA}%{?2:.%{2}}/vdso\
-/etc/ld.so.conf.d/kernel-%{KVRA}%{?2:.%{2}}.conf\
-%endif\
-/lib/modules/%{KVRA}%{?2:.%{2}}/modules.*\
-%ghost %attr(0600, -, -) /boot/initramfs-%{KVRA}%{?2:.%{2}}.img\
-%config(noreplace) %{_sysconfdir}/modprobe.d/dccp-blacklist.conf\
-%{expand:%%files %{?2:%{2}-}devel}\
-%defattr(-,root,root)\
-/usr/src/kernels/%{KVRA}%{?2:.%{2}}\
-%if %{with_debuginfo}\
-%ifnarch noarch\
-%{expand:%%files -f debuginfo%{?2}.list %{?2:%{2}-}debuginfo}\
-%defattr(-,root,root)\
-%endif\
-%endif\
-%endif\
-%{nil}
-
-%kernel_variant_files %{with_default}
-%kernel_variant_files %{with_debug} debug
-%kernel_variant_files %{with_kdump} kdump
-
-%changelog
-* Wed Jun 15 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.71.1.el7]
-- netfilter: nf_tables: disallow non-stateful expression in sets earlier (Phil Sutter) [2093000] {CVE-2022-1966}
-- netfilter: nf_tables: fix memory leak if expr init fails (Phil Sutter) [2093000]
-
-* Tue Jun 14 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.70.1.el7]
-- perf: Fix sys_perf_event_open() race against self (Michael Petlan) [2087954]
-
-* Mon Jun 06 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.69.1.el7]
-- mm: memcg: charge memsw as well in __GFP_NOFAIL case (Rafael Aquini) [2082564]
-
-* Thu May 26 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.68.1.el7]
-- libceph: fix potential use-after-free on linger ping and resends (Ilya Dryomov) [2088025]
-- xfs: use length to balance duplicate bno buffers in perag rb_tree (Brian Foster) [2050464]
-- sock: sock_dequeue_err_skb() needs hard irq safety (Kenneth Yin) [2070408]
-
-* Tue May 17 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.67.1.el7]
-- mm/rmap.c: explicitly reset vma->anon_vma in unlink_anon_vmas() (Rafael Aquini) [1824109 2069962]
-- mm/rmap.c: don't reuse anon_vma if we just want a copy (Rafael Aquini) [1824109 2069962]
-- mm/mmap.c: rb_parent is not necessary in __vma_link_list() (Rafael Aquini) [1824109 2069962]
-- mm/mmap.c: extract __vma_unlink_list() as counterpart for __vma_link_list() (Rafael Aquini) [1824109 2069962]
-- mm/mmap.c: __vma_unlink_prev() is not necessary now (Rafael Aquini) [1824109 2069962]
-- mm/mmap.c: prev could be retrieved from vma->vm_prev (Rafael Aquini) [1824109 2069962]
-
-* Wed Apr 27 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.66.1.el7]
-- net-sysfs: add check for netdevice being present to speed_show (William Zhao) [2055457]
-- CI: Drop baseline runs (Veronika Kabatova)
-- perf/x86/intel: Add more Icelake CPUIDs (Michael Petlan) [2072317]
-- perf vendor events intel: Add Icelake V1.00 event file (Michael Petlan) [2072317]
-- perf vendor events intel: Add core event list for Icelake Server (Michael Petlan) [2072317]
-
-* Wed Apr 13 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.65.1.el7]
-- CI: Remove deprecated option (Veronika Kabatova)
-- RDMA/core: Fix panic when port_pkey_list isn't initialized (Kamal Heib) [2046571]
-
-* Wed Apr 06 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.64.1.el7]
-- cgroup-v1: Require capabilities to set release_agent (Waiman Long) [2052162] {CVE-2022-0492}
-
-* Wed Mar 30 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.63.1.el7]
-- NFSv4: Set the connection timeout to match the lease period (Benjamin Coddington) [2066699]
-- SUNRPC: Allow changing of the TCP timeout parameters on the fly (Benjamin Coddington) [2066699]
-- SUNRPC: Refactor TCP socket timeout code into a helper function (Benjamin Coddington) [2066699]
-- SUNRPC: Remove unused function rpc_get_timeout() (Benjamin Coddington) [2066699]
-- kernel/timer: Fix incorrect assertion in requeue_timers() (Waiman Long) [2048502]
-
-* Wed Mar 23 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.62.1.el7]
-- cifs: fix handling of DFS links where we can not access all components (Ronnie Sahlberg) [1937304]
-- redhat: kernel.spec: install new kernel boot entry in posttrans, not post (Denys Vlasenko) [1893756]
-- [s390] s390/cpumf: Support for CPU Measurement Facility CSVN 7 (Mete Durlu) [2048920]
-- dm table: fix iterate_devices based device capability checks (Mike Snitzer) [2054743]
-- buffer: eliminate the need to call free_more_memory() in __getblk_slow() (Carlos Maiolino) [2030609]
-- buffer: grow_dev_page() should use __GFP_NOFAIL for all cases (Carlos Maiolino) [2030609]
-- buffer: have alloc_page_buffers() use __GFP_NOFAIL (Carlos Maiolino) [2030609]
-- mm: memcg: do not fail __GFP_NOFAIL charges (Rafael Aquini) [2054345]
-- mm: filemap: do not drop action modifier flags from the gfp_mask passed to __add_to_page_cache_locked() (Rafael Aquini) [2054345]
-- Added ZSTREAM=yes to makefile (Lucas Zampieri)
-
-* Mon Mar 07 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.61.1.el7]
-- x86/efi: reset the correct tlb_state when returning from efi_switch_mm() (Rafael Aquini) [2055587]
-
-* Wed Feb 23 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.60.1.el7]
-- svcrdma: Fix leak of svc_rdma_recv_ctxt objects (Benjamin Coddington) [2028740]
-- sunrpc: Remove unneeded pointer dereference (Benjamin Coddington) [2028740]
-- x86/platform/uv: Add more to secondary CPU kdump info (Frank Ramsay) [2042462]
-- [s390] s390/AP: support new dynamic AP bus size limit (Claudio Imbrenda) [1997156]
-- CI: Enable baseline realtime checks (Veronika Kabatova)
-- CI: Rename pipelines to include release names (Veronika Kabatova)
-- RDMA/cma: Do not change route.addr.src_addr.ss_family (Kamal Heib) [2032075] {CVE-2021-4028}
-- fget: clarify and improve __fget_files() implementation (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fget: check that the fd still exists after getting a ref to it (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- net: Set fput_needed iff FDPUT_FPUT is set (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- vfs, fdtable: Add fget_task helper (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs: add fget_many() and fput_many() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs/file.c: __fget() and dup2() atomicity rules (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- vfs: Don't let __fdget_pos() get FMODE_PATH files (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- get rid of fget_light() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- sockfd_lookup_light(): switch to fdget^W^Waway from fget_light (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs: __fget_light() can use __fget() in slow path (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs: factor out common code in fget_light() and fget_raw_light() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs: factor out common code in fget() and fget_raw() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- introduce __fcheck_files() to fix rcu_dereference_check_fdtable(), kill rcu_my_thread_group_empty() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-
-* Wed Feb 16 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.59.1.el7]
-- Revert "Merge: Fix tasks stuck in IO waiting for buffer_head lock" (Rado Vrbovsky) [2030609]
-
-* Tue Feb 08 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.58.1.el7]
-- Bluetooth: fix use-after-free error in lock_sock_nested() (Gopal Tiwari) [2005687]
-- drm/vmwgfx: Fix stale file descriptors on failed usercopy (Dave Airlie) [2047597] {CVE-2022-22942}
-
-* Wed Feb 02 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.57.1.el7]
-- fix regression in "epoll: Keep a reference on files added to the check list" (Carlos Maiolino) [2042760] {CVE-2020-0466}
-- epoll: Keep a reference on files added to the check list (Carlos Maiolino) [2042760] {CVE-2020-0466}
-- drm/i915: Flush TLBs before releasing backing store (Dave Airlie) [2044319] {CVE-2022-0330}
-
-* Fri Jan 28 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.56.1.el7]
-- RDMA/mlx5: Fix access to wrong pointer while performing flush due to error (Kamal Heib) [1984070]
-- af_unix: fix garbage collect vs MSG_PEEK (William Zhao) [2031970] {CVE-2021-0920}
-- selinux: fix race condition when computing ocontext SIDs (Ondrej Mosnacek) [2040196]
-- Bluetooth: fix the erroneous flush_work() order (Chris von Recklinghausen) [1964556] {CVE-2021-3564}
-
-* Tue Jan 18 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.55.1.el7]
-- SUNRPC: Fix null rpc_clnt dereference in rpc_task_queued tracepoint (Benjamin Coddington) [2039508]
-- buffer: eliminate the need to call free_more_memory() in __getblk_slow() (Carlos Maiolino) [2030609]
-- buffer: grow_dev_page() should use __GFP_NOFAIL for all cases (Carlos Maiolino) [2030609]
-- buffer: have alloc_page_buffers() use __GFP_NOFAIL (Carlos Maiolino) [2030609]
-- net: add READ_ONCE() annotation in __skb_wait_for_more_packets() (Sabrina Dubroca) [2033561]
-- efi: Decode IA32/X64 Context Info structure (Aristeu Rozanski) [1950302]
-- efi: Decode IA32/X64 MS Check structure (Aristeu Rozanski) [1950302]
-- efi: Decode additional IA32/X64 Bus Check fields (Aristeu Rozanski) [1950302]
-- efi: Decode IA32/X64 Cache, TLB, and Bus Check structures (Aristeu Rozanski) [1950302]
-- efi: Decode UEFI-defined IA32/X64 Error Structure GUIDs (Aristeu Rozanski) [1950302]
-- efi: Decode IA32/X64 Processor Error Info Structure (Aristeu Rozanski) [1950302]
-- efi: Decode IA32/X64 Processor Error Section (Aristeu Rozanski) [1950302]
-- efi: Fix IA32/X64 Processor Error Record definition (Aristeu Rozanski) [1950302]
-- HID: core: Sanitize event code and type when mapping input (Aristeu Rozanski) [1920848] {CVE-2020-0465}
-
-* Wed Jan 12 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.54.1.el7]
-- block: queue lock must be acquired when iterating over rls (Ming Lei) [2029574]
-- Bluetooth: use correct lock to prevent UAF of hdev object (Chris von Recklinghausen) [1968211] {CVE-2021-3573}
-- xfs: map unwritten blocks in XFS_IOC_{ALLOC,FREE}SP just like fallocate (Carlos Maiolino) [2034857] {CVE-2021-4155}
-
-* Thu Dec 16 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.53.1.el7]
-- fuse: fix live lock in fuse_iget() (Miklos Szeredi) [1952046]
-- fuse: fix bad inode (Miklos Szeredi) [1952046]
-- GFS2: Truncate address space mapping when deleting an inode (Bob Peterson) [1364234]
-- gfs2: Fix gfs2_testbit to use clone bitmaps (Bob Peterson) [1364234]
-- gfs2: clear buf_in_tr when ending a transaction in sweep_bh_for_rgrps (Bob Peterson) [1364234]
-- gfs2: Fix oversight in gfs2_ail1_flush (Bob Peterson) [1364234]
-- gfs2: Additional information when gfs2_ail1_flush withdraws (Bob Peterson) [1364234]
-- gfs2: leaf_dealloc needs to allocate one more revoke (Bob Peterson) [1364234]
-- gfs2: allow journal replay to hold sd_log_flush_lock (Bob Peterson) [1364234]
-- gfs2: don't allow releasepage to free bd still used for revokes (Bob Peterson) [1364234]
-- gfs2: flesh out delayed withdraw for gfs2_log_flush (Bob Peterson) [1364234]
-- gfs2: Do proper error checking for go_sync family of glops functions (Bob Peterson) [1364234]
-- gfs2: drain the ail2 list after io errors (Bob Peterson) [1364234]
-- gfs2: Withdraw in gfs2_ail1_flush if write_cache_pages fails (Bob Peterson) [1364234]
-- gfs2: Do log_flush in gfs2_ail_empty_gl even if ail list is empty (Bob Peterson) [1364234]
-- gfs2: Check for log write errors before telling dlm to unlock (Bob Peterson) [1364234]
-- gfs2: Prepare to withdraw as soon as an IO error occurs in log write (Bob Peterson) [1364234]
-- gfs2: Issue revokes more intelligently (Bob Peterson) [1364234]
-- gfs2: Add verbose option to check_journal_clean (Bob Peterson) [1364234]
-- gfs2: fix infinite loop when checking ail item count before go_inval (Bob Peterson) [1364234]
-- gfs2: Force withdraw to replay journals and wait for it to finish (Bob Peterson) [1364234]
-- gfs2: Allow some glocks to be used during withdraw (Bob Peterson) [1364234]
-- gfs2: move check_journal_clean to util.c for future use (Bob Peterson) [1364234]
-- gfs2: Ignore dlm recovery requests if gfs2 is withdrawn (Bob Peterson) [1364234]
-- gfs2: Only complain the first time an io error occurs in quota or log (Bob Peterson) [1364234]
-- gfs2: log error reform (Bob Peterson) [1364234]
-- gfs2: Rework how rgrp buffer_heads are managed (Bob Peterson) [1364234]
-- gfs2: clear ail1 list when gfs2 withdraws (Bob Peterson) [1364234]
-- gfs2: Introduce concept of a pending withdraw (Bob Peterson) [1364234]
-- gfs2: Return bool from gfs2_assert functions (Bob Peterson) [1364234]
-- gfs2: Turn gfs2_consist into void functions (Bob Peterson) [1364234]
-- gfs2: Remove usused cluster_wide arguments of gfs2_consist functions (Bob Peterson) [1364234]
-- gfs2: Report errors before withdraw (Bob Peterson) [1364234]
-- gfs2: Split gfs2_lm_withdraw into two functions (Bob Peterson) [1364234]
-- gfs2: Fix incorrect variable name (Bob Peterson) [1364234]
-- gfs2: Don't write log headers after file system withdraw (Bob Peterson) [1364234]
-- gfs2: clean up iopen glock mess in gfs2_create_inode (Bob Peterson) [1364234]
-- gfs2: Close timing window with GLF_INVALIDATE_IN_PROGRESS (Bob Peterson) [1364234]
-- gfs2: fix infinite loop in gfs2_ail1_flush on io error (Bob Peterson) [1364234]
-- gfs2: Introduce function gfs2_withdrawn (Bob Peterson) [1364234]
-- gfs2: replace more printk with calls to fs_info and friends (Bob Peterson) [1364234]
-- gfs2: dump fsid when dumping glock problems (Bob Peterson) [1364234]
-- gfs2: simplify gfs2_freeze by removing case (Bob Peterson) [1364234]
-- gfs2: Rename SDF_SHUTDOWN to SDF_WITHDRAWN (Bob Peterson) [1364234]
-- gfs2: Warn when a journal replay overwrites a rgrp with buffers (Bob Peterson) [1364234]
-- gfs2: log which portion of the journal is replayed (Bob Peterson) [1364234]
-- gfs2: slow the deluge of io error messages (Bob Peterson) [1364234]
-- gfs2: Don't withdraw under a spin lock (Bob Peterson) [1364234]
-- GFS2: Clear gl_object when deleting an inode in gfs2_delete_inode (Bob Peterson) [1364234]
-- gfs2: Use fs_* functions instead of pr_* function where we can (Bob Peterson) [1364234]
-- GFS2: Use pr_<level> more consistently (Bob Peterson) [1364234]
-
-* Wed Dec 08 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.52.1.el7]
-- acpi-cpufreq: Honor _PSD table setting on new AMD CPUs (David Arcari) [2019588]
-- x86/cpu/amd: Call init_amd_zn() om Family 19h processors too (David Arcari) [2019218]
-- x86/cpu/AMD: Fix erratum 1076 (CPB bit) (David Arcari) [2019218]
-- i40e: Fix the conditional for i40e_vc_validate_vqs_bitmaps (Stefan Assmann) [1977246]
-- i40e: Fix virtchnl_queue_select bitmap validation (Stefan Assmann) [1977246]
-
-* Wed Nov 24 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.51.1.el7]
-- mm, fs: Fix do_generic_file_read() error return (Carlos Maiolino) [2020857]
-- perf/core: Fix a memory leak in perf_event_parse_addr_filter() (Michael Petlan) [1901932]
-
-* Thu Nov 18 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.50.1.el7]
-- tcp: grow window for OOO packets only for SACK flows (Guillaume Nault) [1990665]
-- scsi: mpt3sas: Fix unlock imbalance (Tomas Henzl) [2006536]
-- pci-hyperv: Fix setting CPU affinity on Azure (Vitaly Kuznetsov) [2019272]
-- media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() (Lucas Zampieri) [1956471] {CVE-2021-42739}
-
-* Tue Nov 09 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.49.1.el7]
-- NFS: Fix interrupted slots by sending a solo SEQUENCE operation (Scott Mayhew) [2007465]
-
-* Wed Nov 03 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.48.1.el7]
-- scsi: qedf: Add check to synchronize abort and flush (Nilesh Javali) [1941766]
-- scsi: ibmvfc: Reinit target retries (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: Avoid move login if fast fail is enabled (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: Handle move login failure (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: Avoid link down on FS9100 canister reboot (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: don't check for failure from mempool_alloc() (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: Use compiler attribute defines instead of __attribute__() (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: fix misdefined reserved field in ibmvfc_fcp_rsp_info (Desnes A. Nunes do Rosario) [1882627]
-
-* Wed Oct 27 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.47.1.el7]
-- PCI: hv: Fix sleep while in non-sleep context when removing child devices from the bus (Mohammed Gamal) [1948961]
-- PCI: hv: Remove bus device removal unused refcount/functions (Mohammed Gamal) [1948961]
-- PCI: hv: Fix a race condition when removing the device (Mohammed Gamal) [1948961]
-- scsi: qla2xxx: Fix use after free in eh_abort path (Nilesh Javali) [1899599]
-
-* Thu Oct 07 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.46.1.el7]
-- RDMA/ucma: Rework ucma_migrate_id() to avoid races with destroy (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/ucma: Fix locking for ctx->events_reported (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/ucma: Fix the locking of ctx->file (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/cma: Add missing locking to rdma_accept() (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/ucma: Add missing locking around rdma_leave_multicast() (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/ucma: Put a lock around every call to the rdma_cm layer (Kamal Heib) [1978075] {CVE-2020-36385}
-- nvme-pci: Unblock reset_work on IO failure (Gopal Tiwari) [1981610]
-- nvme-pci: Don't disable on timeout in reset state (Gopal Tiwari) [1981610]
-- nvme-pci: shutdown on timeout during deletion (Gopal Tiwari) [1981610]
-
-* Fri Sep 24 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.45.1.el7]
-- CI: handle RT branches in a single config (Veronika Kabatova)
-- CI: Drop private CI config (Veronika Kabatova)
-- CI: extend template use (Veronika Kabatova)
-- mm: page_counter: mitigate consequences of a page_counter underflow (Scott Wood) [2000973]
-- KVM: nSVM: always intercept VMLOAD/VMSAVE when nested(CVE-2021-3656) (Jon Maloy) [1985425] {CVE-2021-3656}
-- KVM: x86: Update vCPU's hv_clock before back to guest when tsc_offset is adjusted (Marcelo Tosatti) [1991856]
-- KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl (CVE-2021-3653) (Jon Maloy) [1985408] {CVE-2021-3653}
-- scsi: qedf: Initiate cleanup for ELS commands as well (Nilesh Javali) [1982702]
-
-* Mon Sep 20 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.44.1.el7]
-- fs: dlm: change handling of reconnects (Bob Peterson) [1834878]
-- DLM: fix NULL pointer dereference in send_to_sock() (Bob Peterson) [1834878]
-- DLM: fix to reschedule rwork (Bob Peterson) [1834878]
-- DLM: fix to use sk_callback_lock correctly (Bob Peterson) [1834878]
-- DLM: fix overflow dlm_cb_seq (Bob Peterson) [1834878]
-- DLM: fix conversion deadlock when DLM_LKF_NODLCKWT flag is set (Bob Peterson) [1834878]
-- DLM: use CF_CLOSE flag to stop dlm_send correctly (Bob Peterson) [1834878]
-- DLM: Reanimate CF_WRITE_PENDING flag (Bob Peterson) [1834878]
-- DLM: fix race condition between dlm_recoverd_stop and dlm_recoverd (Bob Peterson) [1834878]
-- DLM: close othercon at send/receive error (Bob Peterson) [1834878]
-- DLM: retry rcom when dlm_wait_function is timed out. (Bob Peterson) [1834878]
-- DLM: fix to use sock_mutex correctly in xxx_accept_from_sock (Bob Peterson) [1834878]
-- DLM: fix race condition between dlm_send and dlm_recv (Bob Peterson) [1834878]
-- DLM: fix double list_del() (Bob Peterson) [1834878]
-- DLM: Eliminate CF_WRITE_PENDING flag (Bob Peterson) [1834878]
-- KVM: do not allow mapping valid but non-reference-counted pages (Jon Maloy) [1975511]
-- vxlan: check return value of gro_cells_init() (Aristeu Rozanski) [1970618]
-- KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow (Jon Maloy) [1988218] {CVE-2021-37576}
-
-* Fri Sep 10 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.43.1.el7]
-- PCI: hv: Add support for protocol 1.3 and support PCI_BUS_RELATIONS2 (Mohammed Gamal) [1984128]
-- PCI: hv: Decouple the func definition in hv_dr_state from VSP message (Mohammed Gamal) [1984128]
-- PCI: hv: Only queue new work items in hv_pci_devices_present() if necessary (Mohammed Gamal) [1984128]
-- i40e: improve locking of mac_filter_hash (Stefan Assmann) [1993850]
-- i40e: always propagate error value in i40e_set_vsi_promisc() (Stefan Assmann) [1993850]
-- i40e: fix return of uninitialized aq_ret in i40e_set_vsi_promisc (Stefan Assmann) [1993850]
-- i40e: Remove scheduling while atomic possibility (Stefan Assmann) [1993850]
-- scsi: lpfc: Fix pt2pt discovery on SLI3 HBAs (Dick Kennedy) [1922479]
-- qed: Disable "MFW indication via attention" SPAM every 5 minutes (Manish Chopra) [1854544]
-- NFS: Fix a performance regression caused by buffered IO locking (Benjamin Coddington) [1995649]
-
-* Tue Aug 31 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.42.2.el7]
-- net_sched: cls_route: remove the right filter from hashtable (Ivan Vecera) [1992926]
-
-* Thu Aug 26 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.42.1.el7]
-- [s390] s390/dasd: fix list corruption of lcu list (Claudio Imbrenda) [1889418]
-- [s390] s390/dasd: fix list corruption of pavgroup group list (Claudio Imbrenda) [1889418]
-- [s390] s390/dasd: prevent inconsistent LCU device data (Claudio Imbrenda) [1889418]
-- [s390] s390/dasd: fix hanging device offline processing (Claudio Imbrenda) [1889418]
-
-* Mon Aug 16 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.41.1.el7]
-- ixgbe: fix warning: sysfs: cannot create duplicate filename (Daniel Vacek) [1915449]
-
-* Thu Aug 05 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.40.1.el7]
-- redhat: ppc64: CONFIG_RTAS_FILTER (Aristeu Rozanski) [1906443] {CVE-2020-27777}
-- powerpc/rtas: Fix typo of ibm,open-errinjct in RTAS filter (Aristeu Rozanski) [1906443] {CVE-2020-27777}
-- powerpc/rtas: Restrict RTAS requests from userspace (Aristeu Rozanski) [1906443] {CVE-2020-27777}
-- IB/mlx5: Fix initializing CQ fragments buffer (Alaa Hleihel) [1962499]
-
-* Wed Jul 28 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.39.1.el7]
-- netfilter: x_tables: fix compat match/target pad out-of-bound write (Florian Westphal) [1980489] {CVE-2021-22555}
-- Revert "be2net: disable bh with spin_lock in be_process_mcc" (Petr Oros) [1971744]
-- futex: futex_requeue can potentially free the pi_state structure twice (Donghai Qiao) [1966856]
-- xfs: sync lazy sb accounting on quiesce of read-only mounts (Carlos Maiolino) [1921551]
-- scsi: lpfc: Fix crash caused by switch reboot (Dick Kennedy) [1897576]
-
-* Thu Jul 22 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.38.1.el7]
-- seq_file: Disallow extremely large seq buffer allocations (Ian Kent) [1975251]
-- memcg, slab: Fix incorrect placement of rcu_head in struct memcg_cache_params (Waiman Long) [1951810]
-- netfilter: x_tables: Use correct memory barriers. (Phil Sutter) [1949087] {CVE-2021-29650}
-- netfilter: nf_nat: don't bug when mapping already exists (Florian Westphal) [1972970]
-- netfilter: don't setup nat info for confirmed ct (Florian Westphal) [1972970]
-
-* Wed Jul 14 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.37.1.el7]
-- bluetooth: eliminate the potential race condition when removing the HCI controller (Gopal Tiwari) [1971457]
-- net: Update window_clamp if SOCK_RCVBUF is set (Balazs Nemeth) [1962196]
-- bpf, x86: Validate computation of branch displacements for x86-64 (Jiri Olsa) [1947249] {CVE-2021-29154}
-- mm: vmalloc: add cond_resched() in __vunmap() (Rafael Aquini) [1896794]
-- mm/vmalloc: __vmalloc_area_node(): avoid 32-bit overflow (Rafael Aquini) [1896794]
-
-* Wed Jul 07 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.36.1.el7]
-- cipso,calipso: resolve a number of problems with the DOI refcounts (Antoine Tenart) [1967720]
-- net: ethernet: mlx4: Fix memory allocation in mlx4_buddy_init() (Alaa Hleihel) [1962406]
-- sched/debug: Fix cgroup_path[] serialization (Waiman Long) [1912221]
-- sched/debug: Reset watchdog on all CPUs while processing sysrq-t (Waiman Long) [1912221]
-- vt: vt_ioctl: fix use-after-free in vt_in_use() (Vladis Dronov) [1872778]
-- vt: vt_ioctl: fix VT_DISALLOCATE freeing in-use virtual console (Vladis Dronov) [1872778]
-- vt: ioctl, switch VT_IS_IN_USE and VT_BUSY to inlines (Vladis Dronov) [1872778]
-- vt: selection, introduce vc_is_sel (Vladis Dronov) [1872778]
-- redhat: genspec: generate changelog entries since last release (Augusto Caringi)
-
-* Tue Jun 29 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.35.1.el7]
-- CI: Merge configuration (Veronika Kabatova)
-- [pci/aer] Work around use-after-free in pcie_do_fatal_recovery() (Al Stone) [1933663]
-- [pci/aer] do not invoke error recovery with non-fatal errors (Al Stone) [1933663]
-
-* Tue Jun 22 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.34.1.el7]
-- futex: remove lockdep_assert_held() in pi_state_update_owner() (Donghai Qiao) [1965495]
-- video: hyperv_fb: Add ratelimit on error message (Mohammed Gamal) [1957803]
-- Drivers: hv: vmbus: Increase wait time for VMbus unload (Mohammed Gamal) [1957803]
-- Drivers: hv: vmbus: Initialize unload_event statically (Mohammed Gamal) [1957803]
-- blk-mq: always allow reserved allocation in hctx_may_queue (Ming Lei) [1926825]
-- s390/pci: fix out of bounds access during irq setup (Philipp Rudo) [1917943]
-- s390/pci: improve irq number check for msix (Philipp Rudo) [1917943]
-
-* Thu Jun 17 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.33.1.el7]
-- CI: Disable result checking for realtime check (Veronika Kabatova)
-- CI: Explicitly disable result checking for private CI (Veronika Kabatova)
-- CI: Rename variable (Veronika Kabatova)
-- mm: memcontrol: switch to rcu protection in drain_all_stock() (Waiman Long) [1957719]
-- sctp: Don't add the shutdown timer if its already been added (Xin Long) [1953052]
-- media: xirlink_cit: add missing descriptor sanity checks (Mark Langsdorf) [1826877] {CVE-2020-11668}
-
-* Wed Jun 09 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.32.1.el7]
-- Bluetooth: verify AMP hci_chan before amp_destroy (Gopal Tiwari) [1962532] {CVE-2021-33034}
-- net: ipv4: route: Fix sending IGMP messages with link address (Hangbin Liu) [1958339]
-- hv_netvsc: remove ndo_poll_controller (Mohammed Gamal) [1953075]
-- Fix double free in nvme_trans_log_temperature (Gopal Tiwari) [1946793]
-- rcu: Call touch_nmi_watchdog() while printing stall warnings (Artem Savkov) [1924688]
-- sched/fair: Use RCU accessors consistently for ->numa_group (Rafael Aquini) [1915635] {CVE-2019-20934}
-- sched/fair: Don't free p->numa_faults with concurrent readers (Rafael Aquini) [1915635] {CVE-2019-20934}
-- sched/numa: Simplify task_numa_compare() (Rafael Aquini) [1915635] {CVE-2019-20934}
-- sched/numa: Fix task_numa_free() lockdep splat (Rafael Aquini) [1915635] {CVE-2019-20934}
-- sched/numa: Move task_numa_free() to __put_task_struct() (Rafael Aquini) [1915635] {CVE-2019-20934}
-- [s390] s390/dasd: fix diag 0x250 inline assembly (Philipp Rudo) [1910395]
-- vsock/vmci: log once the failed queue pair allocation (Stefano Garzarella) [1892237]
-- VMCI: Stop log spew when qp allocation isn't possible (Stefano Garzarella) [1892237]
-
-* Wed May 26 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.31.1.el7]
-- mm/userfaultfd: do not access vma->vm_mm after calling handle_userfault() (Philipp Rudo) [1917840]
-- scsi: qla2xxx: Fix the call trace for flush workqueue (Nilesh Javali) [1937945]
-- futex: Handle faults correctly for PI futexes (Donghai Qiao) [1935108] {CVE-2021-3347}
-- futex: Provide and use pi_state_update_owner() (Donghai Qiao) [1935108] {CVE-2021-3347}
-- futex: Replace pointless printk in fixup_owner() (Donghai Qiao) [1935108] {CVE-2021-3347}
-- futex: Ensure the correct return value from futex_lock_pi() (Donghai Qiao) [1935108] {CVE-2021-3347}
-- scsi: qla2xxx: Remove WARN_ON_ONCE in qla2x00_status_cont_entry() (Nilesh Javali) [1933784]
-- scsi: zfcp: add handling for FCP_RESID_OVER to the fcp ingress path (Philipp Rudo) [1917839]
-- net: netfilter: Avoid deadlock when loading logger backend (Phil Sutter) [1858329]
-- net: netfilter: Link nfnetlink into bzImage (Phil Sutter) [1858329]
-
-* Wed May 19 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.30.1.el7]
-- pf: Prohibit alu ops for pointer types not defining ptr_limit (Jiri Olsa) [1942689] {CVE-2020-27170}
-- bpf: Add sanity check for upper ptr_limit (Jiri Olsa) [1942689] {CVE-2020-27170}
-- bpf: Simplify alu_limit masking for pointer arithmetic (Jiri Olsa) [1942689] {CVE-2020-27170}
-- bpf: Fix off-by-one for area size in creating mask to left (Jiri Olsa) [1942689] {CVE-2020-27170}
-- netxen_nic: fix MSI/MSI-x interrupts (Tony Camuso) [1894274]
-- block: fix use-after-free on cached last_lookup partition (Ming Lei) [1898596]
-- mm: reduce struct page_cgroup overhead when page_owner is not enabled (Rafael Aquini) [1948451]
-- vt: selection, close sel_buffer race (Chris von Recklinghausen) [1831034] {CVE-2020-8648}
-
-* Wed May 12 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.29.1.el7]
-- drm/i915: warn on guc enable about CVE (Dave Airlie) [1935277] {CVE-2020-12362}
-- sched: prevent divide by zero error in scale_rt_power() (Phil Auld) [1910763]
-- x86/efi: reset the correct tlb_state in efi_switch_mm() (Rafael Aquini) [1837531]
-- x86/mm, sched/core: Turn off IRQs in switch_mm() (Rafael Aquini) [1837531]
-- x86/mm, sched/core: Uninline switch_mm() (Rafael Aquini) [1837531]
-- x86/mm: Build arch/x86/mm/tlb.c even on !SMP (Rafael Aquini) [1837531]
-- hpsa: fix regression issue for old controllers (Joseph Szczypek) [1830268]
-- scsi: hpsa: Correct dev cmds outstanding for retried cmds (Joseph Szczypek) [1830268]
-
-* Tue May 04 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.28.1.el7]
-- i40e: acquire VSI pointer only after VF is initialized (Stefan Assmann) [1886003]
-- ACPICA: Store GPE register enable masks upfront (Al Stone) [1883174]
-- netfilter: nf_tables: validate NFTA_SET_TABLE parameter (Phil Sutter) [1873171]
-- sctp: change to hold/put transport for proto_unreach_timer (Xin Long) [1707184]
-
-* Wed Apr 28 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.27.1.el7]
-- video: hyperv: hyperv_fb: Obtain screen resolution from Hyper-V host (Mohammed Gamal) [1941841]
-- Drivers: hv: vmbus: enable VMBus protocol version 5.0 (Mohammed Gamal) [1941841]
-- redhat: Add git suffix to realtime_check merge_tree (Juri Lelli)
-
-* Tue Apr 20 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.26.1.el7]
-- selinux: fix deadlock in security_set_bools() (Ondrej Mosnacek) [1939091]
-- md: fix md io stats accounting broken (Ming Lei) [1927106]
-- redhat: Fix realtime_check for -private (Juri Lelli)
-
-* Tue Apr 13 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.25.1.el7]
-- redhat: Enable CKI RT verification for kernel-private (Juri Lelli)
-- redhat: Enable CKI RT verification (Juri Lelli)
-- RDMA/ipoib: Remove racy Subnet Manager sendonly join checks (Honggang Li) [1922460]
-- net: sched: protect against stack overflow in TC act_mirred (Davide Caratti) [1916682]
-- floppy: check_events callback should not return a negative number (Jay Shin) [1928576]
-- floppy: fix lock_fdc() signal handling (Jay Shin) [1928576]
-- ipv6: clean up anycast when an interface is destroyed (Xin Long) [1917700]
-- virtio_net: fix virtnet_open and virtnet_probe competing for try_fill_recv (Laurent Vivier) [1895319]
-
-* Thu Mar 25 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.24.1.el7]
-- scsi: iscsi: Verify lengths on passthrough PDUs (Chris Leech) [1930826] {CVE-2021-27365}
-- scsi: iscsi: Ensure sysfs attributes are limited to PAGE_SIZE (Chris Leech) [1930849] {CVE-2021-27363}
-- scsi: iscsi: Restrict sessions and handles to admin capabilities (Chris Leech) [1930807] {CVE-2021-27364}
-- redhat: add CI file for kernel-private (Bruno Meneguele)
-
-* Thu Mar 18 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.23.1.el7]
-- tcm_loop: add WQ_MEM_RECLAIM and flush_work (Maurizio Lombardi) [1925652]
-- net/mlx4_en: Handle TX error CQE (Alaa Hleihel) [1925691]
-- net/mlx4_en: Avoid scheduling restart task if it is already running (Alaa Hleihel) [1925691]
-
-* Fri Mar 12 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.22.1.el7]
-- mm: do not stall register_shrinker() (Rafael Aquini) [1926043]
-- sched/rt: Fix PI handling vs. sched_setscheduler() (Phil Auld) [1928082]
-- sched/rt: Simplify pull_rt_task() logic and remove .leaf_rt_rq_list (Phil Auld) [1928082]
-- sched: Queue RT tasks to head when prio drops (Phil Auld) [1928082]
-- sched/core: Use READ_ONCE()/WRITE_ONCE() in move_queued_task()/task_rq_lock() (Phil Auld) [1928082]
-- mmc: block: handle complete_work on separate workqueue (Ming Lei) [1918916]
-- tcp: fix to update snd_wl1 in bulk receiver fast path (Vladis Dronov) [1929804]
-
-* Mon Feb 22 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.21.1.el7]
-- [pinctrl] devicetree: Avoid taking direct reference to device name string (Aristeu Rozanski) [1922902] {CVE-2020-0427}
-- [pinctrl] Delete an error message (Aristeu Rozanski) [1922902] {CVE-2020-0427}
-- [tty] vt: keyboard, reorder user buffer handling in vt_do_kdgkb_ioctl (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] vt: keyboard, rename i to kb_func in vt_do_kdgkb_ioctl (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] vt: keyboard, extend func_buf_lock to readers (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] vt: keyboard, simplify vt_kdgkbsent (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] keyboard, do not speculate on func_table index (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] vt: fix write/write race in ioctl(KDSKBSENT) handler (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [iommu] amd: return error on real irq alloc failure (Jerry Snitselaar) [1918273]
-- [iommu] amd: Set DTE[IntTabLen] to represent 512 IRTEs (Jerry Snitselaar) [1921187]
-- [iommu] amd: Increase interrupt remapping table limit to 512 entries (Jerry Snitselaar) [1921187]
-- [scsi] lpfc: Fix LUN loss after cable pull (Dick Kennedy) [1875961]
-- [scsi] lpfc: Fix NVMe rport deregister and registration during ADISC (Dick Kennedy) [1875961]
-- [scsi] lpfc: Fix ADISC reception terminating login state if a NVME target (Dick Kennedy) [1875961]
-- [netdrv] i40e: revert "i40e: don't report link up for a VF who hasn't enabled queues" (Stefan Assmann) [1901064]
-
-* Thu Feb 18 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.20.1.el7]
-- [md] Set prev_flush_start and flush_bio in an atomic way (Xiao Ni) [1889372]
-- [md] improve variable names in md_flush_request() (Xiao Ni) [1889372]
-- [kernel] timer: Fix potential bug in requeue_timers() (Waiman Long) [1914011]
-- [x86] kvm: reinstate vendor-agnostic check on SPEC_CTRL cpuid bits (Vitaly Kuznetsov) [1890669]
-- [x86] kvm: avoid incorrect writes to host MSR_IA32_SPEC_CTRL (Vitaly Kuznetsov) [1890669]
-- [md] dm-mirror: fix a crash if the underlying block device doesn't have merge_bvec_fn (Mikulas Patocka) [1916407]
-- [gpu] drm/i915: Fix use-after-free when destroying GEM context (Dave Airlie) [1814731] {CVE-2020-7053}
-
-* Tue Feb 09 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.19.1.el7]
-- [kernel] watchdog: use nmi registers snapshot in hardlockup handler (Prarit Bhargava) [1916589]
-- [nvme] nvmet: allow Keep Alive for Discovery controller (Gopal Tiwari) [1910817]
-- [net] netfilter: ctnetlink: add a range check for l3/l4 protonum (Florian Westphal) [1888296] {CVE-2020-25211}
-- [net] icmp: randomize the global rate limiter (Antoine Tenart) [1896515] {CVE-2020-25705}
-
-* Fri Jan 29 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.18.1.el7]
-- [fs] nfs: Fix security label length not being reset (Dave Wysochanski) [1917504]
-- [target] scsi: Fix XCOPY NAA identifier lookup (Maurizio Lombardi) [1900469] {CVE-2020-28374}
-- [ipc] sem.c: fully initialize sem_array before making it visible (Vladis Dronov) [1877264]
-- [netdrv] geneve: add transport ports in route lookup for geneve (Sabrina Dubroca) [1885144] {CVE-2020-25645}
-- [kernel] perf/core: Fix race in the perf_mmap_close() function (Michael Petlan) [1869936] {CVE-2020-14351}
-
-* Mon Jan 25 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.17.1.el7]
-- [x86] kvm: svm: Initialize prev_ga_tag before use ("Dr. David Alan Gilbert") [1909036]
-- [scsi] scsi_dh: fix scheduling while atomic and also missing unlock in error path (Mike Snitzer) [1619147]
-- [video] hyperv_fb: Fix the cache type when mapping the VRAM (Mohammed Gamal) [1908896]
-- [video] hyperv: hyperv_fb: Support deferred IO for Hyper-V frame buffer driver (Mohammed Gamal) [1908896]
-- [scsi] target: iscsi: Fix cmd abort fabric stop race (Maurizio Lombardi) [1784540]
-- [scsi] target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock (Maurizio Lombardi) [1784540]
-- [s390] kernel/uv: handle length extension properly (Claudio Imbrenda) [1899172]
-
-* Tue Jan 19 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.16.1.el7]
-- [tty] Fix ->pgrp locking in tiocspgrp() (Chris von Recklinghausen) [1908193] {CVE-2020-29661}
-- [net] fix struct pid memory leak (Jay Shin) [1901797]
-- [hid] Fix assumption that devices have inputs (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] microsoft: the driver now neeed MEMLESS_FF infrastructure (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] microsoft: Add rumble support for Xbox One S controller (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] microsoft: Convert private data to be a proper struct (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] revert "hid: microsoft: fix invalid rdesc for 3k kbd" (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] input: ignore System Control application usages if not System Controls (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] hid-microsoft: Do the check for the ms usage page per device (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [net] net-sysfs: take the rtnl lock when accessing xps_cpus_map and num_tc (Antoine Tenart) [1903819]
-- [net] net-sysfs: take the rtnl lock when storing xps_cpus (Antoine Tenart) [1903819]
-
-* Mon Jan 11 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.15.1.el7]
-- [fs] ceph: quota: fix null pointer dereference in quota check (Jeff Layton) [1890386]
-- [netdrv] revert "mlx5e: ethtool, Remove unsupported SFP EEPROM high pages query" (Alaa Hleihel) [1896756]
-- [kernel] timekeeping_Force_unsigned_clocksource_to_nanoseconds_conversion (Waiman Long) [1890911]
-- [kernel] exit: Optimize forget_original_parent() for large thread group exiting (Waiman Long) [1872110]
-- [kernel] exit: reparent: call forget_original_parent() under tasklist_lock (Waiman Long) [1872110]
-- [kernel] Disable tasklist_waiters when qrwlock is enabled (Waiman Long) [1872110]
-- [fs] cifs: handle ERRBaduid for SMB1 (Leif Sahlberg) [1847041]
-
-* Mon Dec 21 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.14.1.el7]
-- [fs] nfsd: fix incorrect umasks ("J. Bruce Fields") [1905208]
-- [hv] vmbus: Add timeout to vmbus_wait_for_unload (Mohammed Gamal) [1888979]
-- [scsi] qla2xxx: Fix device loss on 4G and older HBAs (Nilesh Javali) [1889311]
-- [s390] dasd: Fix zero write for FBA devices (Philipp Rudo) [1896839]
-- [net] ipv6: use in6_dev_put in dad timer handler instead of __in6_dev_put (Xin Long) [1809519]
-
-* Mon Dec 14 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.13.1.el7]
-- [s390] zcrypt: Fix ZCRYPT_PERDEV_REQCNT ioctl (Philipp Rudo) [1896826]
-- [block] block/diskstats: more accurate approximation of io_ticks for slow disks (Ming Lei) [1859364]
-- [block] block: delete part_round_stats and switch to less precise counting (Ming Lei) [1859364]
-- [md] dm: simplify start of block stats accounting for bio-based (Ming Lei) [1859364]
-- [block] block/rsxx: use generic io stats accounting functions to simplify io stat accounting (Ming Lei) [1859364]
-- [block] drbd: use generic io stats accounting functions to simplify io stat accounting (Ming Lei) [1859364]
-- [md] md: use generic io stats accounting functions to simplify io stat accounting (Ming Lei) [1859364]
-- [nvme] limit number of IO queues on Dell/Kioxia config (Gopal Tiwari) [1883403]
-- [netdrv] hv_netvsc: make recording RSS hash depend on feature flag (Mohammed Gamal) [1898280]
-- [netdrv] hv_netvsc: record hardware hash in skb (Mohammed Gamal) [1898280]
-- [fs] block: Fix use-after-free in blkdev_get() (Ming Lei) [1902414] {CVE-2020-15436}
-
-* Mon Dec 07 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.12.1.el7]
-- [mm] mmap: relax file size limit for regular files (Rafael Aquini) [1855985]
-- [mm] mmap: introduce sane default mmap limits (Rafael Aquini) [1855985]
-- [of] Move dynamic node fixups out of powerpc and into common code (Laurent Vivier) [1866138]
-- [fs] nfs: Fix double-free in filelayout_alloc_commit_info/filelayout_free_lseg (Benjamin Coddington) [1679980]
-- [hid] HID: hid-plantronics: Re-resend Update to map button for PTT products (Torez Smith) [1769502]
-- [fs] dlm: make posix locks interruptible (Alexander Aring) [1826858]
-
-* Mon Nov 30 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.11.1.el7]
-- [netdrv] hdlc_ppp: add range checks in ppp_cp_parse_cr() (Guillaume Nault) [1882078] {CVE-2020-25643}
-- [fs] ext4: fix potential negative array index in do_split() (Pavel Reichl) [1846164] {CVE-2020-14314}
-- [fs] nfsd: apply umask on fs without ACL support ("J. Bruce Fields") [1870215] {CVE-2020-24394}
-- [kernel] watchdog/core: Remove the park_in_progress obfuscation (Waiman Long) [1860661]
-- [mm] swap_slots: recheck cache->slots_ret under spin_lock_irq() protection (Rafael Aquini) [1862915]
-- [netdrv] ethernet: i40e: Set RX_ONLY mode for unicast promiscuous on VLAN (Stefan Assmann) [1845677]
-- [infiniband] mlx5: Fix use-after-free in dereg_mr() (Alaa Hleihel) [1880184]
-
-* Tue Nov 24 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.10.1.el7]
-- [md] dm-mirror: provide the merge method (Mikulas Patocka) [1890059]
-- [nvme] nvme-rdma: cancel async events before freeing event struct (David Milburn) [1857397]
-- [s390] dasd: Use struct_size() helper (Sterling Alexander) [1886477]
-- [s390] dasd: fix inability to use DASD with DIAG driver (Sterling Alexander) [1886477]
-- [hv] hv_utils: drain the timesync packets on onchannelcallback (Vitaly Kuznetsov) [1884735]
-- [hv] hv_utils: return error if host timesysnc update is stale (Vitaly Kuznetsov) [1884735]
-- [x86] cpu: Re-apply forced caps every time CPU caps are re-read (Herbert Xu) [1886792]
-- [x86] cpu: Factor out application of forced CPU caps (Herbert Xu) [1886792]
-
-* Mon Nov 16 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.9.1.el7]
-- [hv] hv: vmbus: Only notify Hyper-V for die events that are oops (Vitaly Kuznetsov) [1868130]
-- [uapi] include: do not export changes made to struct ip_ct_sctp (Florian Westphal) [1887975]
-- [net] openvswitch: free vport unless register_netdevice() succeeds (Timothy Redaelli) [1869190]
-- [net] openvswitch: do not free vport if register_netdevice() is failed (Timothy Redaelli) [1869190]
-- [kernel] signals: avoid random wakeups in sigsuspend() (Oleg Nesterov) [1704650]
-- [fs] nfs: Fix getxattr kernel panic and memory overflow (Benjamin Coddington) [1880893] {CVE-2020-25212}
-
-* Sun Nov 08 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.8.1.el7]
-- [kernel] sched/fair: Fix RCU stall upon -ENOMEM in sched_create_group() (Kenneth Yin) [1878000]
-- [security] selinux: do not report error on connect(AF_UNSPEC) (Paolo Abeni) [1886305]
-- [kernel] timer: Fix lockup in __run_timers() caused by large jiffies/timer_jiffies delta (Waiman Long) [1849716]
-- [mm] revert "mm/page_alloc: fix memmap_init_zone pageblock alignment" (Artem Savkov) [1878732]
-- [mm] page_alloc: Make paranoid check in move_freepages a VM_BUG_ON (Artem Savkov) [1878732]
-- [nvme] rdma: Avoid double freeing of async event data (Gopal Tiwari) [1878950]
-- [pci] hv: Fix a timing issue which causes kdump to fail occasionally (Mohammed Gamal) [1846667]
-
-* Thu Oct 29 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.7.1.el7]
-- [fs] xfs: fix off-by-one in inode alloc block reservation calculation (Brian Foster) [1857203]
-- [fs] xfs: fix inode allocation block res calculation precedence (Brian Foster) [1857203]
-- [powerpc] powernv/dump: Handle multiple writes to ack attribute (Gustavo Duarte) [1873189]
-- [powerpc] powernv/dump: Fix race while processing OPAL dump (Gustavo Duarte) [1873189]
-- [powerpc] powernv: opal-dump: Use IRQ_HANDLED instead of numbers in interrupt handler (Gustavo Duarte) [1873189]
-- [powerpc] opal_elog: Handle multiple writes to ack attribute (Gustavo Duarte) [1873189]
-- [powerpc] powernv/elog: Fix race while processing OPAL error log event (Gustavo Duarte) [1873189]
-- [powerpc] powernv Adapt opal-elog and opal-dump to new sysfs_remove_file_self (Gustavo Duarte) [1873189]
-- [powerpc] powernv: Fix opal-elog interrupt handler (Gustavo Duarte) [1873189]
-- [net] flow_dissector: switch to siphash (Davide Caratti) [1835614] {CVE-2019-18282}
-- [fs] xfs: fix boundary test in xfs_attr_shortform_verify (Eric Sandeen) [1875317] {CVE-2020-14385}
-- [fs] cifs: make 'nodfs' mount opt a superblock flag (Leif Sahlberg) [1873033]
-- [crypto] crypto: authenc - fix parsing key with misaligned rta_len (Herbert Xu) [1846355] {CVE-2020-10769}
-
-* Wed Oct 21 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.6.1.el7]
-- [net] netfilter: nf_queue: place bridge physports into queue_entry struct (Florian Westphal) [1885682]
-- [net] netfilter: nf_queue: do not release refcouts until nf_reinject is done (Florian Westphal) [1885682]
-- [net] netfilter: nf_queue: make nf_queue_entry_release_refs static (Florian Westphal) [1885682]
-- [net] bluetooth: l2cap: Fix calling sk_filter on non-socket based channel (Gopal Tiwari) [1888253] {CVE-2020-12351}
-- [net] bluetooth: a2mp: Fix not initializing all members (Gopal Tiwari) [1888797] {CVE-2020-12352}
-
-* Thu Oct 15 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.5.1.el7]
-- [x86] x86/PCI: Mark Intel C620 MROMs as having non-compliant BARs (Myron Stowe) [1849223]
-- [kernel] uprobes: Change handle_swbp() to send SIGTRAP with si_code=SI_KERNEL, to fix GDB regression (Oleg Nesterov) [1861396]
-- [video] vgacon: Fix for missing check in scrollback handling (Lyude Paul) [1859468] {CVE-2020-14331}
-- [pci] hv: Retry PCI bus D0 entry on invalid device state (Mohammed Gamal) [1846667]
-- [pci] hv: Fix the PCI HyperV probe failure path to release resource properly (Mohammed Gamal) [1846667]
-- [x86] xen: Add call of speculative_store_bypass_ht_init() to PV paths (Vladis Dronov) [1882468]
-- [powerpc] powerpc/smp: Use nid as fallback for package_id (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc/smp: Add Power9 scheduler topology (Desnes Augusto Nunes do Rosario) [1826306]
-- [kernel] sched: Add a new SD_SHARE_POWERDOMAIN for sched_domain (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] sched, powerpc: Create a dedicated topology table (Desnes Augusto Nunes do Rosario) [1826306]
-- [s390] sched, s390: Create a dedicated topology table (Desnes Augusto Nunes do Rosario) [1826306]
-- [s390] s390/topology: Remove call to update_cpu_masks() (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc/smp: Add cpu_l2_cache_map (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc/smp: Rework CPU topology construction (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc/smp: Use cpu_to_chip_id() to find core siblings (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc, hotplug: Avoid to touch non-existent cpumasks (Desnes Augusto Nunes do Rosario) [1826306]
-
-* Mon Oct 05 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.4.1.el7]
-- [block] virtio-blk: handle block_device_operations callbacks after hot unplug (Stefan Hajnoczi) [1811893]
-- [scsi] Revert "scsi: qla2xxx: Fix crash on qla2x00_mailbox_command" (Nilesh Javali) [1826127]
-- [scsi] scsi: qla2xxx: Fix stale mem access on driver unload (Nilesh Javali) [1826127]
-- [scsi] scsi: qedf: Fix crash when MFW calls for protocol stats while function is still probing (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Keep track of num of pending flogi (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Fix race betwen fipvlan request and response path (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Decrease the LL2 MTU size to 2500 (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Check for module unloading bit before processing link update AEN (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Initiator fails to re-login to switch after link down (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Fix crash during sg_reset (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Stop sending fipvlan request on unload (Nilesh Javali) [1836443]
-- [message] scsi: mptscsih: Fix read sense data size (Tomas Henzl) [1829803]
-- [scsi] scsi: megaraid_sas: Clear affinity hint (Tomas Henzl) [1828312]
-
-* Sun Sep 27 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.3.1.el7]
-- [net] net-sysfs: Call dev_hold always in rx_queue_add_kobject (Hangbin Liu) [1846454] {CVE-2019-20811}
-- [net] net-sysfs: Call dev_hold always in netdev_queue_add_kobject (Hangbin Liu) [1846454] {CVE-2019-20811}
-- [net] net-sysfs: call dev_hold if kobject_init_and_add success (Hangbin Liu) [1846454] {CVE-2019-20811}
-- [netdrv] macvlan: Change status when lower device goes down (Hangbin Liu) [1848950]
-- [netdrv] macvlan: make operstate and carrier more accurate (Hangbin Liu) [1848950]
-- [infiniband] RDMA/ipoib: Fix ABBA deadlock with ipoib_reap_ah() (Kamal Heib) [1858707]
-- [infiniband] RDMA/ipoib: Return void from ipoib_ib_dev_stop() (Kamal Heib) [1858707]
-- [net] tcp: limit sk_write_qlen based on sndbuf size (Florian Westphal) [1847765]
-- [netdrv] net/mlx5e: Modify uplink state on interface up/down (Alaa Hleihel) [1733181]
-- [netdrv] net/mlx5: E-Switch, Disable esw manager vport correctly (Alaa Hleihel) [1733181]
-- [netdrv] net/mlx5: E-Switch, Properly refer to host PF vport as other vport (Alaa Hleihel) [1733181]
-
-* Mon Sep 21 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.2.1.el7]
-- [edac] EDAC/i10nm: Update driver to support different bus number config register offsets (Aristeu Rozanski) [1840276]
-- [edac] EDAC, {skx, i10nm}: Make some configurations CPU model specific (Aristeu Rozanski) [1840276]
-- [net] test nouarg before dereferencing zerocopy pointers (Patrick Talbert) [1862273]
-- [net] packet: copy user buffers before orphan or clone (Patrick Talbert) [1862273]
-- [netdrv] net/mlx5e: Fix deallocation of non-fully init encap entries (Alaa Hleihel) [1874101]
-- [netdrv] net/mlx5e: Allow concurrent creation of encap entries (Alaa Hleihel) [1874101]
-- [netdrv] net/mlx5e: Protect encap hash table with mutex (Alaa Hleihel) [1874101]
-
-* Fri Sep 04 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.1.1.el7]
-- [net] netfilter: conntrack: allow sctp hearbeat after connection re-use (Florian Westphal) [1869751]
-- [scsi] scsi: ses: don't ask for diagnostic pages repeatedly during probe (Maurizio Lombardi) [1855324]
-
-* Tue Aug 18 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1160.el7]
-- [kernel] modsign: Add nomokvarconfig kernel parameter (Lenny Szubowicz) [1867857]
-- [firmware] modsign: Add support for loading certs from the EFI MOK config table (Lenny Szubowicz) [1867857]
-- [kernel] modsign: Move import of MokListRT certs to separate routine (Lenny Szubowicz) [1867857]
-- [kernel] modsign: Avoid spurious error message after last MokListRTn (Lenny Szubowicz) [1867857]
-
-* Thu Aug 06 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1159.el7]
-- [kernel] modsign: Import certificates from optional MokListRT (Lenny Szubowicz) [1862840]
-- [crypto] crypto/pefile: Support multiple signatures in verify_pefile_signature (Lenny Szubowicz) [1862840]
-- [crypto] crypto/pefile: Tolerate other pefile signatures after first (Lenny Szubowicz) [1862840]
-
-* Thu Jul 16 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1158.el7]
-- [redhat] switch secureboot kernel image signing to release keys (Jan Stancek) []
-
-* Wed Jul 15 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1157.el7]
-- [fs] signal: Don't send signals to tasks that don't exist (Vladis Dronov) [1856166]
-
-* Fri Jul 10 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1156.el7]
-- [fs] gfs2: Fix regression due to unwanted gfs2_qa_put (Robert S Peterson) [1798713]
-- [include] signal: Unfairly acquire tasklist_lock in send_sigio() if irq disabled (Waiman Long) [1838799]
-- [fs] signal: Don't take tasklist_lock if PID type is PIDTYPE_PID (Waiman Long) [1838799]
-- [vfio] vfio/pci: Fix SR-IOV VF handling with MMIO blocking (Alex Williamson) [1820632] {CVE-2020-12888}
-
-* Thu Jul 09 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1155.el7]
-- [x86] Revert "x86: respect memory size limiting via mem= parameter" (Joel Savitz) [1851576]
-- [mm] Revert "mm/memory_hotplug.c: only respect mem= parameter during boot stage" (Joel Savitz) [1851576]
-- [fs] nfsd: only WARN once on unmapped errors ("J. Bruce Fields") [1850430]
-- [powerpc] pci/of: Fix OF flags parsing for 64bit BARs (Greg Kurz) [1840114]
-- [fs] cifs: fix NULL dereference in match_prepath (Leif Sahlberg) [1759852]
-
-* Thu Jul 02 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1154.el7]
-- [fs] gfs2: move privileged user check to gfs2_quota_lock_check (Robert S Peterson) [1798713]
-- [fs] gfs2: Fix problems regarding gfs2_qa_get and _put (Robert S Peterson) [1798713]
-- [fs] gfs2: don't call quota_unhold if quotas are not locked (Robert S Peterson) [1798713]
-- [fs] gfs2: Remove unnecessary gfs2_qa_{get, put} pairs (Robert S Peterson) [1798713]
-- [fs] gfs2: Split gfs2_rsqa_delete into gfs2_rs_delete and gfs2_qa_put (Robert S Peterson) [1798713]
-- [fs] gfs2: Change inode qa_data to allow multiple users (Robert S Peterson) [1798713]
-- [fs] gfs2: eliminate gfs2_rsqa_alloc in favor of gfs2_qa_alloc (Robert S Peterson) [1798713]
-- [fs] gfs2: Switch to list_{first,last}_entry (Robert S Peterson) [1798713]
-- [fs] gfs2: Clean up inode initialization and teardown (Robert S Peterson) [1798713]
-- [fs] gfs2: Minor gfs2_alloc_inode cleanup (Robert S Peterson) [1798713]
-- [fs] gfs2: Fix busy-on-umount in gfs2_atomic_open() (Andrew Price) [1812558]
-
-* Sat Jun 27 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1153.el7]
-- [x86] mm: Fix mremap not considering huge pmd devmap (Rafael Aquini) [1843437] {CVE-2020-10757}
-- [mm] mm, dax: check for pmd_none() after split_huge_pmd() (Rafael Aquini) [1843437] {CVE-2020-10757}
-- [mm] mm: mremap: streamline move_page_tables()'s move_huge_pmd() corner case (Rafael Aquini) [1843437] {CVE-2020-10757}
-- [mm] mm: mremap: validate input before taking lock (Rafael Aquini) [1843437] {CVE-2020-10757}
-- [wireless] mwifiex: Fix possible buffer overflows in mwifiex_ret_wmm_get_status() (Jarod Wilson) [1844070] {CVE-2020-12654}
-- [wireless] mwifiex: Fix possible buffer overflows in mwifiex_cmd_append_vsie_tlv() (Jarod Wilson) [1844026] {CVE-2020-12653}
-- [net] netfilter: nf_conntrack_h323: lost .data_len definition for Q.931/ipv6 (Florian Westphal) [1845428]
-
-* Fri Jun 19 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1152.el7]
-- [nvmem] nvmem: properly handle returned value nvmem_reg_read (Vladis Dronov) [1844409]
-- [mailbox] PCC: fix dereference of ERR_PTR (Vladis Dronov) [1844409]
-- [kernel] futex: Unlock hb->lock in futex_wait_requeue_pi() error path (Vladis Dronov) [1844409]
-- [fs] aio: fix inconsistent ring state (Jeff Moyer) [1845326]
-- [vfio] vfio/mdev: make create attribute static (Vladis Dronov) [1837549]
-- [vfio] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Synchronize device create/remove with parent removal (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Avoid creating sysfs remove file on stale device removal (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Improve the create/remove sequence (Vladis Dronov) [1837549]
-- [vfio] treewide: Add SPDX license identifier - Makefile/Kconfig (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Avoid inline get and put parent helpers (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Fix aborting mdev child device removal if one fails (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Follow correct remove sequence (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Avoid masking error code to EBUSY (Vladis Dronov) [1837549]
-- [include] vfio/mdev: Drop redundant extern for exported symbols (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Removed unused kref (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Avoid release parent reference during error path (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Add iommu related member in mdev_device (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: add static modifier to add_mdev_supported_type (Vladis Dronov) [1837549]
-- [vfio] vfio: mdev: make a couple of functions and structure vfio_mdev_driver static (Vladis Dronov) [1837549]
-- [char] tpm/tpm_tis: Free IRQ if probing fails (David Arcari) [1774698]
-- [kernel] audit: fix a memleak caused by auditing load module (Richard Guy Briggs) [1843370]
-- [kernel] audit: fix potential null dereference 'context->module.name' (Richard Guy Briggs) [1843370]
-- [nvme] nvme: limit number of IO queues on Dell/Samsung config (David Milburn) [1837617]
-
-* Thu Jun 18 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1151.el7]
-- [netdrv] qede: Fix multicast mac configuration (Michal Schmidt) [1740064]
-- [scsi] sd_dif: avoid incorrect ref_tag errors on 4K devices larger than 2TB (Ewan Milne) [1833528]
-- [hid] HID: hiddev: do cleanup in failure of opening a device (Torez Smith) [1814257] {CVE-2019-19527}
-- [hid] HID: hiddev: avoid opening a disconnected device (Torez Smith) [1814257] {CVE-2019-19527}
-- [x86] x86: make mul_u64_u64_div_u64() "static inline" (Oleg Nesterov) [1845864]
-- [mm] mm: page_isolation: fix potential warning from user (Rafael Aquini) [1845620]
-- [s390] s390/mm: correct return value of pmd_pfn (Claudio Imbrenda) [1841106]
-- [fs] fs/proc/vmcore.c:mmap_vmcore: skip non-ram pages reported by hypervisors (Lianbo Jiang) [1790799]
-- [kernel] kernel/sysctl.c: ignore out-of-range taint bits introduced via kernel.tainted (Rafael Aquini) [1845356]
-- [documentation] kernel: add panic_on_taint (Rafael Aquini) [1845356]
-- [fs] ext4: Remove unwanted ext4_bread() from ext4_quota_write() (Lukas Czerner) [1845379]
-- [scsi] scsi: sg: add sg_remove_request in sg_write ("Ewan D. Milne") [1840699] {CVE-2020-12770}
-- [fs] fs/binfmt_elf.c: allocate initialized memory in fill_thread_core_info() (Donghai Qiao) [1832062] {CVE-2020-10732}
-
-* Sun Jun 14 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1150.el7]
-- [netdrv] net/mlx5e: Fix handling of compressed CQEs in case of low NAPI budget (Alaa Hleihel) [1845020]
-- [mm] memcg: fix NULL pointer dereference in __mem_cgroup_usage_unregister_event (Waiman Long) [1842715]
-- [mm] memcg: only free spare array when readers are done (Waiman Long) [1842715]
-- [powerpc] powerpc/crashkernel: Take "mem=" option into account (Pingfan Liu) [1751555]
-- [infiniband] IB/ipoib: Fix double free of skb in case of multicast traffic in CM mode (Kamal Heib) [1597952]
-- [security] selinux: properly handle multiple messages in selinux_netlink_send() (Ondrej Mosnacek) [1839650] {CVE-2020-10751}
-- [netdrv] net: ena: Add PCI shutdown handler to allow safe kexec (Bhupesh Sharma) [1841578]
-- [x86] x86/speculation: Support old struct x86_cpu_id & x86_match_cpu() kABI (Waiman Long) [1827188] {CVE-2020-0543}
-- [documentation] x86/speculation: Add Ivy Bridge to affected list (Waiman Long) [1827188] {CVE-2020-0543}
-- [documentation] x86/speculation: Add SRBDS vulnerability and mitigation documentation (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/speculation: Add Special Register Buffer Data Sampling (SRBDS) mitigation (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpu: Add 'table' argument to cpu_matches() (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpu: Add a steppings field to struct x86_cpu_id (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpu/bugs: Convert to new matching macros (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpu: Add consistent CPU match macros (Waiman Long) [1827188] {CVE-2020-0543}
-- [cpufreq] x86/devicetable: Move x86 specific macro out of generic code (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpufeature: Fix various quality problems in the <asm/cpu_device_hd.h> header (Waiman Long) [1827188] {CVE-2020-0543}
-
-* Thu Jun 04 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1149.el7]
-- [mm] mm/memory_hotplug.c: only respect mem= parameter during boot stage (Joel Savitz) [1838795]
-- [netdrv] qed: Reduce the severity of ptp debug message (Manish Chopra) [1703770]
-- [kernel] pid_ns: Sleep in TASK_INTERRUPTIBLE in zap_pid_ns_processes (Jay Shin) [1836620]
-- [fs] gfs2: remove BUG_ON() from gfs2_log_alloc_bio() (Abhijith Das) [1828454]
-- [fs] gfs2: Even more gfs2_find_jhead fixes (Abhijith Das) [1828454]
-- [fs] quota: fix return value in dqget() (Eric Sandeen) [1842761]
-- [fs] proc_sysctl.c: fix potential page fault while unregistering sysctl table (Carlos Maiolino) [1843368]
-- [fs] ext4: fix error handling in ext4_ext_shift_extents (Lukas Czerner) [1843366]
-- [vhost] vhost: Check docket sk_family instead of call getname (Vladis Dronov) [1823302] {CVE-2020-10942}
-- [input] hyperv-keyboard - add module description (Mohammed Gamal) [1842689]
-- [hv] hv: Add a module description line to the hv_vmbus driver (Mohammed Gamal) [1842689]
-- [hid] hyperv: Add a module description line (Mohammed Gamal) [1842689]
-- [x86] sched/cputime: Improve cputime_adjust() (Oleg Nesterov) [1511040]
-- [acpi] ACPI: APEI: call into AER handling regardless of severity (Al Stone) [1737246]
-- [acpi] ACPI: APEI: handle PCIe AER errors in separate function (Al Stone) [1737246]
-- [acpi] ras: acpi/apei: cper: add support for generic data v3 structure (Al Stone) [1737246]
-- [acpi] ACPICA: ACPI 6.1: Updates for the HEST ACPI table (Al Stone) [1737246]
-- [acpi] ACPI / APEI: Switch to use new generic UUID API (Al Stone) [1737246]
-- [x86] x86/efi-bgrt: Quirk for BGRT when memory encryption active (Lenny Szubowicz) [1723477]
-- [scsi] scsi: megaraid_sas: Update driver version to 07.714.04.00-rc1 (Tomas Henzl) [1840550]
-- [scsi] scsi: megaraid_sas: TM command refire leads to controller firmware crash (Tomas Henzl) [1840550]
-- [scsi] scsi: megaraid_sas: Replace undefined MFI_BIG_ENDIAN macro with __BIG_ENDIAN_BITFIELD macro (Tomas Henzl) [1840550]
-- [scsi] scsi: megaraid_sas: Limit device queue depth to controller queue depth (Tomas Henzl) [1840550]
-- [vfio] vfio-pci: Invalidate mmaps and block MMIO access on disabled memory (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio-pci: Fault mmaps to enable vma tracking (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio/type1: Support faulting PFNMAP vmas (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio/type1: Fix VA->PA translation for PFNMAP VMAs in vaddr_get_pfn() (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio/pci: call irq_bypass_unregister_producer() before freeing irq (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio_pci: Enable memory accesses before calling pci_map_rom (Alex Williamson) [1820632] {CVE-2020-12888}
-- [fs] signal: Extend exec_id to 64bits (Chris von Recklinghausen) [1834650] {CVE-2020-12826}
-
-* Wed Jun 03 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1148.el7]
-- [x86] hyper-v: Report crash data in die() when panic_on_oops is set (Mohammed Gamal) [1828450]
-- [hv] x86/hyper-v: Report crash register data when sysctl_record_panic_msg is not set (Mohammed Gamal) [1828450]
-- [x86] hyper-v: Report crash register data or kmsg before running crash kernel (Mohammed Gamal) [1828450]
-- [hv] x86/hyper-v: Trigger crash enlightenment only once during system crash (Mohammed Gamal) [1828450]
-- [hv] x86/hyper-v: Free hv_panic_page when fail to register kmsg dump (Mohammed Gamal) [1828450]
-- [hv] x86/hyper-v: Unload vmbus channel in hv panic callback (Mohammed Gamal) [1828450]
-- [hv] vmbus: Fix the issue with freeing up hv_ctl_table_hdr (Mohammed Gamal) [1828450]
-- [hv] vmus: Fix the check for return value from kmsg get dump buffer (Mohammed Gamal) [1828450]
-- [hv] Send one page worth of kmsg dump over Hyper-V during panic (Mohammed Gamal) [1828450]
-- [x86] kvm: x86: Allow suppressing prints on RDMSR/WRMSR of unhandled MSRs (Vitaly Kuznetsov) [1837412]
-- [fs] ext4: Fix race when checking i_size on direct i/o read (Lukas Czerner) [1506437]
-- [fs] copy_file_range should return ENOSYS not EOPNOTSUPP ("J. Bruce Fields") [1783554]
-- [fs] NFSv4.1 fix incorrect return value in copy_file_range ("J. Bruce Fields") [1783554]
-- [x86] Remove the unsupported check for Intel IceLake (Steve Best) [1841237]
-- [md] md/raid1: release pending accounting for an I/O only after write-behind is also finished (Nigel Croxon) [1792520]
-- [net] gre: fix uninit-value in __iptunnel_pull_header (Guillaume Nault) [1840321]
-- [net] inet: protect against too small mtu values. (Guillaume Nault) [1840321]
-- [net] Fix one possible memleak in ip_setup_cork (Guillaume Nault) [1840321]
-- [net] fix a potential recursive NETDEV_FEAT_CHANGE (Guillaume Nault) [1839130]
-- [net] fix null de-reference of device refcount (Guillaume Nault) [1839130]
-- [net] sch_choke: avoid potential panic in choke_reset() (Davide Caratti) [1839118]
-- [net] net_sched: fix datalen for ematch (Davide Caratti) [1839118]
-- [net] netem: fix error path for corrupted GSO frames (Davide Caratti) [1839118]
-- [net] avoid potential infinite loop in tc_ctl_action() (Davide Caratti) [1839118]
-- [net] net_sched: let qdisc_put() accept NULL pointer (Davide Caratti) [1839118]
-- [net] ipv4: really enforce backoff for redirects (Paolo Abeni) [1832332]
-- [net] ipv4: avoid mixed n_redirects and rate_tokens usage (Paolo Abeni) [1832332]
-- [net] ipv4: use a dedicated counter for icmp_v4 redirect packets (Paolo Abeni) [1832332]
-- [net] ipset: Update byte and packet counters regardless of whether they match (Phil Sutter) [1801366]
-- [net] xfrm: skip rt6i_idev update in xfrm6_dst_ifdown if loopback_idev is gone (Sabrina Dubroca) [1390049]
-
-* Sun May 31 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1147.el7]
-- [nvme] nvme: fix the parameter order for nvme_get_log in nvme_get_fw_slot_info (Gopal Tiwari) [1839991]
-- [fs] pipe: actually allow root to exceed the pipe buffer limits (Jan Stancek) [1839629]
-- [scsi] Revert "scsi: mpt3sas: Don't change the DMA coherent mask after allocations" (Tomas Henzl) [1839128]
-- [scsi] Revert "scsi: mpt3sas: Rename function name is_MSB_are_same" (Tomas Henzl) [1839128]
-- [scsi] Revert "scsi: mpt3sas: Separate out RDPQ allocation to new function" (Tomas Henzl) [1839128]
-- [scsi] Revert "scsi: mpt3sas: Handle RDPQ DMA allocation in same 4G region" (Tomas Henzl) [1839128]
-- [netdrv] net/mlx5e: Avoid duplicating rule destinations (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Extend encap entry with reference counter (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Fix free peer_flow when refcount is 0 (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Extend tc flow struct with reference counter (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Don't make internal use of errno to denote missing neigh (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Fix freeing flow with kfree() and not kvfree() (Alaa Hleihel) [1727593]
-- [drm] drm/nouveau/gr/gp107, gp108: implement workaround for HW hanging during init (Karol Herbst) [1834360 1834356 1833485]
-- [drm] drm/nouveau: workaround runpm fail by disabling PCI power management on certain intel bridges (Karol Herbst) [1834360 1834356 1833485]
-
-* Thu May 28 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1146.el7]
-- [net] revert "rtnetlink: validate IFLA_MTU attribute in rtnl_create_link()" (Jiri Benc) [1839608]
-- [net] ipv6/addrconf: call ipv6_mc_up() for non-Ethernet interface (Davide Caratti) [1838936]
-- [net] ipv6: Handle missing host route in __ipv6_ifa_notify (Davide Caratti) [1838936]
-- [net] ipv6: drop incoming packets having a v4mapped source address (Davide Caratti) [1838936]
-- [net] l2tp: fix infoleak in l2tp_ip6_recvmsg() (Andrea Claudi) [1837546]
-- [net] vti6: Fix memory leak of skb if input policy check fails (Patrick Talbert) [1836160]
-- [net] tcp: prevent bogus FRTO undos with non-SACK flows (Guillaume Nault) [1694860]
-- [scsi] scsi: smartpqi: fix controller lockup observed during force reboot (Don Brace) [1775369]
-- [fs] ext4: fix setting of referenced bit in ext4_es_lookup_extent() (Lukas Czerner) [1663720]
-- [fs] ext4: introduce aging to extent status tree (Lukas Czerner) [1663720]
-- [fs] ext4: cleanup flag definitions for extent status tree (Lukas Czerner) [1663720]
-- [fs] ext4: limit number of scanned extents in status tree shrinker (Lukas Czerner) [1663720]
-- [fs] ext4: move handling of list of shrinkable inodes into extent status code (Lukas Czerner) [1663720]
-- [fs] ext4: change LRU to round-robin in extent status tree shrinker (Lukas Czerner) [1663720]
-- [fs] ext4, jbd2: ensure panic when aborting with zero errno (Lukas Czerner) [1834783]
-- [fs] jbd2: switch to use jbd2_journal_abort() when failed to submit the commit record (Lukas Czerner) [1834783]
-- [fs] jbd2: clear JBD2_ABORT flag before journal_reset to update log tail info when load journal (Lukas Czerner) [1834783]
-- [fs] ext4: fix buffer leak in ext4_xattr_move_to_block() on error path (Lukas Czerner) [1834783]
-- [fs] ext4: fix missing return values checks in ext4_cross_rename (Lukas Czerner) [1836819]
-- [fs] ext4: Fix POSIX ACL leak in ext4_xattr_set_acl (Lukas Czerner) [1543020]
-- [vfio] vfio-pci: Mask cap zero (Alex Williamson) [1838717]
-- [x86] Mark Intel Cooper Lake (CPX) supported (Steve Best) [1773681]
-- [fs] fs/bio-integrity: don't enable integrity for data-less bio (Ming Lei) [1835943]
-- [char] ipmi_si: Only schedule continuously in the thread in maintenance mode (Alexey Klimov) [1837127]
-- [kernel] wait/ptrace: assume __WALL if the child is traced (Oleg Nesterov) [1497808]
-- [mm] mm, hugetlb, soft_offline: save compound page order before page migration (Artem Savkov) [1751589]
-- [fs] fs/hugetlbfs/inode.c: fix hwpoison reserve accounting (Artem Savkov) [1751589]
-- [fs] mm: hwpoison: dissolve in-use hugepage in unrecoverable memory error (Artem Savkov) [1751589]
-- [mm] mm: soft-offline: dissolve free hugepage if soft-offlined (Artem Savkov) [1751589]
-- [mm] mm: hugetlb: soft-offline: dissolve source hugepage after successful migration (Artem Savkov) [1751589]
-- [mm] mm: hwpoison: change PageHWPoison behavior on hugetlb pages (Artem Savkov) [1751589]
-- [mm] mm: hugetlb: prevent reuse of hwpoisoned free hugepages (Artem Savkov) [1751589]
-- [netdrv] net/mlx5: Tidy up and fix reverse christmas ordring (Alaa Hleihel) [1831134]
-- [netdrv] net/mlx5: Expose port speed when possible (Alaa Hleihel) [1831134]
-- [include] net/mlx5: Expose link speed directly (Alaa Hleihel) [1831134]
-- [usb] USB: core: Fix races in character device registration and deregistraion (Torez Smith) [1785065] {CVE-2019-19537}
-- [usb] usb: cdc-acm: make sure a refcount is taken early enough (Torez Smith) [1802548] {CVE-2019-19530}
-- [usb] USB: adutux: fix use-after-free on disconnect (Torez Smith) [1798822] {CVE-2019-19523}
-- [media] media: usb:zr364xx:Fix KASAN:null-ptr-deref Read in zr364xx_vidioc_querycap (Torez Smith) [1795597] {CVE-2019-15217}
-
-* Mon May 25 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1145.el7]
-- [scsi] scsi: qla2xxx: Do not log message when reading port speed via sysfs (Ewan Milne) [1837543]
-- [mm] mm: dmapool: add/remove sysfs file outside of the pool lock lock (Waiman Long) [1836837]
-- [mm] Fix unbalanced mutex in dma_pool_create() (Waiman Long) [1836837]
-- [mm] mm/dmapool.c: remove redundant NULL check for dev in dma_pool_create() (Waiman Long) [1836837]
-- [x86] x86/speculation: Prevent deadlock on ssb_state::lock (Waiman Long) [1836322]
-- [netdrv] can, slip: Protect tty->disc_data in write_wakeup and close with RCU (John Linville) [1805590]
-- [netdrv] slcan: Port write_wakeup deadlock fix from slip (John Linville) [1805590]
-- [fs] ext4: fix support for inode sizes > 1024 bytes (Lukas Czerner) [1817634] {CVE-2019-19767}
-- [fs] ext4: add more paranoia checking in ext4_expand_extra_isize handling (Lukas Czerner) [1817634] {CVE-2019-19767}
-- [fs] ext4: forbid i_extra_isize not divisible by 4 (Lukas Czerner) [1817634] {CVE-2019-19767}
-- [fs] ext4: validate the debug_want_extra_isize mount option at parse time (Lukas Czerner) [1817634] {CVE-2019-19767}
-- [fs] cachefiles: Fix race between read_waiter and read_copier involving op->to_do (Dave Wysochanski) [1829662]
-- [fs] jbd2: Fix possible overflow in jbd2_log_space_left() (Lukas Czerner) [1626092]
-- [media] media: v4l: event: Add subscription to list before calling "add" operation (Jarod Wilson) [1828802] {CVE-2019-9458}
-- [media] media: v4l: event: Prevent freeing event subscriptions while accessed (Jarod Wilson) [1828802] {CVE-2019-9458}
-- [fs] block: Prevent hung_check firing during long sync IO (Ming Lei) [1724345]
-
-* Thu May 21 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1144.el7]
-- [crypto] crypto: user - fix memory leak in crypto_report (Vladis Dronov) [1825132] {CVE-2019-18808 CVE-2019-19062}
-- [crypto] crypto: ccp - Release all allocated memory if sha type is invalid (Vladis Dronov) [1825132] {CVE-2019-18808}
-- [net] xfrm: policy: Fix doulbe free in xfrm_policy_timer (Xin Long) [1836813]
-- [net] xfrm: add the missing verify_sec_ctx_len check in xfrm_add_acquire (Xin Long) [1836813]
-- [net] xfrm: fix uctx len check in verify_sec_ctx_len (Xin Long) [1836813]
-- [net] rtnetlink: validate IFLA_MTU attribute in rtnl_create_link() (Jiri Benc) [1835352]
-- [net] rtnetlink: ndo_dflt_fdb_dump() only work for ARPHRD_ETHER devices (Jiri Benc) [1835352]
-- [net] netlink: fix uninit-value in netlink_sendmsg (Jiri Benc) [1835352]
-- [net] netlink: make sure nladdr has correct size in netlink_connect() (Jiri Benc) [1835352]
-- [net] rtnetlink: fix info leak in RTM_GETSTATS call (Jiri Benc) [1835352]
-- [net] rtnetlink: release net refcnt on error in do_setlink() (Jiri Benc) [1835352]
-- [net] bridge: deny dev_set_mac_address() when unregistering (Hangbin Liu) [1834203]
-- [net] bridge/mdb: remove wrong use of NLM_F_MULTI (Hangbin Liu) [1834203]
-- [net] udp: disable inner UDP checksum offloads in IPsec case (Sabrina Dubroca) [1826244]
-- [net] sctp: Fix SHUTDOWN CTSN Ack in the peer restart case (Xin Long) [1833869]
-- [net] sctp: Fix bundling of SHUTDOWN with COOKIE-ACK (Xin Long) [1833869]
-- [net] sctp: fix possibly using a bad saddr with a given dst (Xin Long) [1833869]
-- [net] sctp: fix refcount bug in sctp_wfree (Xin Long) [1833869]
-- [net] sctp: move the format error check out of __sctp_sf_do_9_1_abort (Xin Long) [1833869]
-- [net] sctp: free cmd->obj.chunk for the unprocessed SCTP_CMD_REPLY (Xin Long) [1833869]
-- [net] sctp: fully initialize v4 addr in some functions (Xin Long) [1833869]
-- [net] sctp: simplify addr copy (Xin Long) [1833869]
-- [net] sctp: cache netns in sctp_ep_common (Xin Long) [1833869]
-- [net] sctp: destroy bucket if failed to bind addr (Xin Long) [1833869]
-- [net] sctp: Fix the link time qualifier of 'sctp_ctrlsock_exit()' (Xin Long) [1833869]
-- [net] netfilter: nat: never update the UDP checksum when it's 0 (Guillaume Nault) [1834278]
-- [net] esp4: add length check for UDP encapsulation (Sabrina Dubroca) [1825155]
-- [net] sit: fix memory leak in sit_init_net() (Andrea Claudi) [1830011] {CVE-2019-16994}
-- [net] sched: cbs: fix NULL dereference in case cbs_init() fails (Davide Caratti) [1830245]
-- [net] netfilter: nf_tables: use-after-free in dynamic operations (Phil Sutter) [1819087]
-- [net] tcp: tcp_v4_err() should be more careful (Marcelo Leitner) [1749964]
-- [net] tcp: remove BUG_ON from tcp_v4_err (Marcelo Leitner) [1749964]
-- [net] tcp: clear icsk_backoff in tcp_write_queue_purge() (Marcelo Leitner) [1749964]
-- [net] psample: fix skb_over_panic (Sabrina Dubroca) [1823251]
-- [net] sched: ensure opts_len <= IP_TUNNEL_OPTS_MAX in act_tunnel_key (Patrick Talbert) [1823691]
-- [netdrv] fjes: Handle workqueue allocation failure (Masayoshi Mizuma) [1830563] {CVE-2019-16231}
-
-* Tue May 19 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1143.el7]
-- [mm] mm: mempolicy: require at least one nodeid for MPOL_PREFERRED (Rafael Aquini) [1834434] {CVE-2020-11565}
-- [fs] fs: avoid softlockups in s_inodes iterators (Jay Shin) [1760145]
-- [scsi] scsi: core: Add DID_ALLOC_FAILURE and DID_MEDIUM_ERROR to hostbyte_table (Maurizio Lombardi) [1832019]
-- [fs] locks: allow filesystems to request that ->setlease be called without i_lock (Jeff Layton) [1830606]
-- [fs] locks: move fasync setup into generic_add_lease (Jeff Layton) [1830606]
-- [fs] revert "[fs] xfs: catch bad stripe alignment configurations" (Carlos Maiolino) [1836292]
-- [scsi] scsi: scsi_debug: num_tgts must be >= 0 (Ewan Milne) [1834998]
-- [scsi] scsi: scsi_debug: Avoid PI being disabled when TPGS is enabled (Ewan Milne) [1834998]
-- [scsi] scsi: scsi_debug: Fix memory leak if LBP enabled and module is unloaded (Ewan Milne) [1834998]
-- [scsi] scsi_debug: check for bigger value first (Ewan Milne) [1834998]
-- [scsi] scsi_debug: vfree is null safe so drop the check (Ewan Milne) [1834998]
-- [scsi] scsi_debug: error message should say scsi_host_alloc not scsi_register (Ewan Milne) [1834998]
-- [fs] xfs: Fix tail rounding in xfs_alloc_file_space() (Bill O'Donnell) [1833223]
-- [fs] ceph: don't drop message if it contains more data than expected (Jeff Layton) [1828340]
-- [fs] ceph: don't error out on larger-than-expected session messages (Jeff Layton) [1828340]
-- [acpi] ACPI: disable BERT by default, add parameter to enable it (Aristeu Rozanski) [1525298]
-- [acpi] ACPI: APEI: Fix possible out-of-bounds access to BERT region (Aristeu Rozanski) [1525298]
-- [acpi] ACPI / sysfs: Extend ACPI sysfs to provide access to boot error region (Aristeu Rozanski) [1525298]
-- [acpi] ACPI: APEI: Fix BERT resources conflict with ACPI NVS area (Aristeu Rozanski) [1525298]
-- [acpi] ACPI / APEI: Add Boot Error Record Table (BERT) support (Aristeu Rozanski) [1525298]
-- [acpi] ACPICA: Restore error table definitions to reduce code differences between Linux and ACPICA upstream (Aristeu Rozanski) [1525298]
-
-* Sat May 16 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1142.el7]
-- [fs] gfs2: Another gfs2_walk_metadata fix (Andreas Grunbacher) [1822230]
-- [fs] ext4: prevent ext4_quota_write() from failing due to ENOSPC (Lukas Czerner) [1068952]
-- [fs] ext4: do not zeroout extents beyond i_disksize (Lukas Czerner) [1834320]
-- [fs] pnfs: Ensure we layoutcommit before revalidating attributes (Benjamin Coddington) [1827647]
-- [fs] nfs: flush data when locking a file to ensure cache coherence for mmap (Scott Mayhew) [1813811]
-- [fs] call fsnotify_sb_delete after evict_inodes (Jay Shin) [1760145]
-- [fs] inode: don't softlockup when evicting inodes (Jay Shin) [1760145]
-- [fs] drop_caches.c: avoid softlockups in drop_pagecache_sb() (Jay Shin) [1760145]
-- [fs] gfs2: More gfs2_find_jhead fixes (Abhijith Das) [1828454]
-- [fs] gfs2: Another gfs2_find_jhead fix (Abhijith Das) [1828454]
-- [fs] nfs: fix mount/umount race in nlmclnt (Jay Shin) [1771205]
-- [fs] nlm_shutdown_hosts_net() cleanup (Jay Shin) [1771205]
-- [scsi] scsi: megaraid: Use true, false for bool variables (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid: make two symbols static in megaraid_sas_base.c (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid: make some symbols static in megaraid_sas_fusion.c (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid: make some symbols static in megaraid_sas_fp.c (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Use scnprintf() for avoiding potential buffer overflow (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: silence a warning (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: fix indentation issue (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Limit the number of retries for the IOCTLs causing firmware fault (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Do not initiate OCR if controller is not in ready state (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Re-Define enum DCMD_RETURN_STATUS (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Do not set HBA Operational if FW is not in operational state (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Do not kill HBA if JBOD Seqence map or RAID map is disabled (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Do not kill host bus adapter, if adapter is already dead (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Update optimal queue depth for SAS and NVMe devices (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Reset adapter if FW is not in READY state after device resume (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Make poll_aen_lock static (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Fix a compilation warning (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Make a bunch of functions static (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Make some functions static (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: remove unused variables 'debugBlk', 'fusion' (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Unique names for MSI-X vectors (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: fix panic on loading firmware crashdump (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: fix spelling mistake "megarid_sas" -> "megaraid_sas" (Tomas Henzl) [1827037]
-- [scsi] scsi: mpt3sas: Disable DIF when prot_mask set to zero (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Handle RDPQ DMA allocation in same 4G region (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Separate out RDPQ allocation to new function (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Rename function name is_MSB_are_same (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Don't change the DMA coherent mask after allocations (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Fix kernel panic observed on soft HBA unplug (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Fix double free in attach error handling (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Use Component img header to get Package ver (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Fix module parameter max_msix_vectors (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Reject NVMe Encap cmnds to unsupported HBA (Tomas Henzl) [1832868]
-- [netdrv] hv_netvsc: Fix error handling in netvsc_set_features() (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Sync offloading features to VF NIC (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Fix IP header checksum for coalesced packets (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Fix rndis_per_packet_info internal field initialization (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Add handler for LRO setting change (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Add support for LRO/RSC in the vSwitch (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Add handlers for ethtool get/set msg level (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Fix the variable sizes in ipsecv2 and rsc offload (Mohammed Gamal) [1821814]
-- [fs] fix mntput/mntput race (Miklos Szeredi) [1828320]
-- [wireless] rtlwifi: prevent memory leak in rtl_usb_probe (Jarod Wilson) [1829847] {CVE-2019-19063}
-- [wireless] iwlwifi: dbg_ini: fix memory leak in alloc_sgtable (Jarod Wilson) [1829375] {CVE-2019-19058}
-- [net] nl80211: fix memory leak in nl80211_get_ftm_responder_stats (Jarod Wilson) [1829289] {CVE-2019-19055}
-- [wireless] iwlwifi: pcie: fix memory leaks in iwl_pcie_ctxt_info_gen3_init (Jarod Wilson) [1829393] {CVE-2019-19059}
-
-* Tue May 12 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1141.el7]
-- [kernel] sched/fair: Scale bandwidth quota and period without losing quota/period ratio precision (Artem Savkov) [1752067]
-- [edac] EDAC: skx_common: downgrade message importance on missing PCI device (Aristeu Rozanski) [1832683]
-- [s390] s390/qdio: consider ERROR buffers for inbound-full condition (Philipp Rudo) [1831791]
-- [s390] s390/ftrace: fix potential crashes when switching tracers (Philipp Rudo) [1813124]
-- [netdrv] ibmvnic: Skip fatal error reset after passive init (Steve Best) [1830992]
-- [scsi] smartpqi: bump driver version (Don Brace) [1822762]
-- [scsi] scsi: smartpqi: add bay identifier (Don Brace) [1822762]
-- [scsi] scsi: smartpqi: add module param to hide vsep (Don Brace) [1822762]
-- [scsi] scsi: bnx2fc: Update the driver version to 2.12.13 (Nilesh Javali) [1709542]
-- [scsi] scsi: bnx2fc: fix boolreturn.cocci warnings (Nilesh Javali) [1709542]
-- [scsi] scsi: bnx2fc: Fix SCSI command completion after cleanup is posted (Nilesh Javali) [1709542]
-- [scsi] scsi: bnx2fc: Process the RQE with CQE in interrupt context (Nilesh Javali) [1709542]
-- [scsi] scsi: qla2xxx: Fix a recently introduced kernel warning (Nilesh Javali) [1828875]
-- [scsi] Fix abort timeouts in CQ Full conditions (Dick Kennedy) [1802654]
-- [input] Input: add safety guards to input_set_keycode() (Chris von Recklinghausen) [1828222] {CVE-2019-20636}
-- [scsi] scsi: libsas: delete sas port if expander discover failed (Tomas Henzl) [1829965] {CVE-2019-15807}
-- [net] netlabel: cope with NULL catmap (Paolo Abeni) [1827240] {CVE-2020-10711}
-
-* Thu May 07 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1140.el7]
-- [netdrv] mlx5: Remove unsupported tag for ConnectX-6 Dx device (Alaa Hleihel) [1829777]
-- [fs] xfs: clear PF_MEMALLOC before exiting xfsaild thread (Brian Foster) [1827910]
-- [fs] gfs2: fix O_EXCL|O_CREAT handling on cold dcache (Andrew Price) [1812558]
-- [fs] nfs: Correct an nfs page array calculation error (Jay Shin) [1824270]
-- [infiniband] RDMA/bnxt_re: Fix stat push into dma buffer on gen p5 devices (Jonathan Toppins) [1828475 1824438]
-- [netdrv] bnxt_en: Fix allocation of zero statistics block size regression (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Allocate the larger per-ring statistics block for 57500 chips (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Expand bnxt_tpa_info struct to support 57500 chips (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Refactor TPA logic (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Add TPA structure definitions for BCM57500 chips (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.89 (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Update firmware interface to 1.10.0.69 (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.47 (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Refactor ethtool ring statistics logic (Jonathan Toppins) [1824438]
-- [block] blk-mq: Put driver tag in blk_mq_dispatch_rq_list() when no budget (Ming Lei) [1825431]
-- [scsi] scsi: fnic: do not queue commands during fwreset (Govindarajulu Varadarajan) [1794150]
-- [scsi] scsi: fnic: fix invalid stack access (Govindarajulu Varadarajan) [1794150]
-- [scsi] scsi: fnic: fix use after free (Govindarajulu Varadarajan) [1794150]
-- [netdrv] enic: prevent waking up stopped tx queues over watchdog reset (Govindarajulu Varadarajan) [1794148]
-- [fs] ceph: use ceph_evict_inode to cleanup inode's resource (Jeff Layton) [1784016]
-- [fs] ceph: fix use-after-free in __ceph_remove_cap() (Jeff Layton) [1784016]
-- [fs] ceph: hold i_ceph_lock when removing caps for freeing inode (Jeff Layton) [1784016]
-- [input] Input: ff-memless - kill timer in destroy() (Chris von Recklinghausen) [1815021] {CVE-2019-19524}
-- [scsi] scsi: qla2xxx: fix a potential NULL pointer dereference ("Ewan D. Milne") [1829246] {CVE-2019-16233}
-
-* Tue May 05 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1139.el7]
-- [fs] nfsd: Fix races between nfsd4_cb_release() and nfsd4_shutdown_callback() ("J. Bruce Fields") [1448750]
-- [fs] nfsd: minor 4.1 callback cleanup ("J. Bruce Fields") [1448750]
-- [fs] nfsd: Don't release the callback slot unless it was actually held (Benjamin Coddington) [1448750]
-- [lib] kobject: don't use WARN for registration failures (Ewan Milne) [1756495]
-- [lib] lib/kobject: Join string literals back (Ewan Milne) [1756495]
-- [scsi] scsi: ibmvfc: Don't send implicit logouts prior to NPIV login (Steve Best) [1828726]
-- [fs] nfs: Serialize O_DIRECT reads and writes (Benjamin Coddington) [1826571]
-- [mm] mm/page_owner: convert page_owner_inited to static key (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: set correct gfp_mask on page_owner (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: fix possible access violation (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: use late_initcall to hook in enabling (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: remove unnecessary stack_trace field (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: correct owner information for early allocated pages (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: keep track of page owners (Rafael Aquini) [1781726]
-- [documentation] Documentation: add new page_owner document (Rafael Aquini) [1781726]
-- [kernel] stacktrace: introduce snprint_stack_trace for buffer output (Rafael Aquini) [1781726]
-
-* Thu Apr 30 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1138.el7]
-- [infiniband] RDMA/bnxt_re: Fix chip number validation Broadcom's Gen P5 series (Jonathan Toppins) [1823679]
-- [scsi] scsi: qla2xxx: Silence fwdump template message (Ewan Milne) [1783191]
-- [scsi] scsi: hpsa: Update driver version (Joseph Szczypek) [1808403]
-- [scsi] scsi: hpsa: correct race condition in offload enabled (Joseph Szczypek) [1808403]
-- [netdrv] bonding: fix active-backup transition after link failure (Jarod Wilson) [1712235]
-- [netdrv] bonding: fix state transition issue in link monitoring (Jarod Wilson) [1712235]
-- [netdrv] bonding: fix potential NULL deref in bond_update_slave_arr (Jarod Wilson) [1712235]
-- [netdrv] bonding: Force slave speed check after link state recovery for 802.3ad (Jarod Wilson) [1712235]
-- [i2c] i2c: core-smbus: prevent stack corruption on read I2C_BLOCK_DATA (Vladis Dronov) [1822641] {CVE-2017-18551}
-- [acpi] ACPI / EC: Ensure lock is acquired before accessing ec struct (Al Stone) [1811132]
-- [x86] x86/mce: Do not log spurious corrected mce errors (Prarit Bhargava) [1797205]
-- [wireless] mwifiex: Fix mem leak in mwifiex_tm_cmd (Jarod Wilson) [1804971] {CVE-2019-20095}
-- [kernel] kernel/module.c: wakeup processes in module_wq on module unload (Prarit Bhargava) [1771939]
-- [acpi] ACPICA: acpi: acpica: fix acpi operand cache leak in nseval.c (Prarit Bhargava) [1790782]
-
-* Mon Apr 27 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1137.el7]
-- [tty] tty/hvc: Use IRQF_SHARED for OPAL hvc consoles (Gustavo Duarte) [1600213]
-- [mm] mm/swap_slots.c: fix race conditions in swap_slots cache init (Rafael Aquini)
-- [block] loop: set PF_MEMALLOC_NOIO for the worker thread (Ming Lei) [1825950]
-- [tty] serial: 8250: drop the printk from serial8250_interrupt() (Prarit Bhargava) [1825049]
-- [net] net: linkwatch: add check for netdevice being present to linkwatch_do_dev (Alaa Hleihel) [1595302]
-
-* Fri Apr 17 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1136.el7]
-- [fs] sunrpc: expiry_time should be seconds not timeval (Benjamin Coddington) [1794055]
-- [nvdimm] Revert "driver boilerplate changes to properly manage device_rh" (Christoph von Recklinghausen) [1823750]
-- [base] call device_rh_free in device_release before driver/class/type release is called (Christoph von Recklinghausen) [1822888]
-- [md] md:md-faulty kernel panic is caused by QUEUE_FLAG_NO_SG_MERGE (Nigel Croxon) [1822462]
-- [firmware] efi: cper: print AER info of PCIe fatal error (Vladis Dronov) [1820646]
-- [scsi] qla2xxx: Update driver version to 10.01.00.22.07.9-k (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix message indicating vectors used by driver (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Move free of fcport out of interrupt context (Nilesh Javali) [1808129]
-- [scsi] qla2xxx: delete all sessions before unregister local nvme port (Nilesh Javali) [1808129]
-- [scsi] qla2xxx: Fix hang when issuing nvme disconnect-all in NPIV (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix a NULL pointer dereference in an error path (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix mtcp dump collection failure (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix RIDA Format-2 (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix stuck login session using prli_pend_timer (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Add a shadow variable to hold disc_state history of fcport (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Use common routine to free fcport struct (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix update_fcport for current_topology (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix fabric scan hang (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Complain if sp->done() is not called from the completion path (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Ignore PORT UPDATE after N2N PLOGI (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Change discovery state before PLOGI (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Initialize free_work before flushing it (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Retry fabric Scan on IOCB queue full (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: initialize fc4_type_priority (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix a dma_pool_free() call (Nilesh Javali) [1808129]
-- [security] selinux: ensure we cleanup the internal AVC counters on error in avc_insert() (Artem Savkov) [1808675]
-- [acpi] ACPICA: Mark acpi_ut_create_internal_object_dbg() memory allocations as non-leaks (Artem Savkov) [1808675]
-- [x86] x86/microcode/AMD: Free unneeded patch before exit from update_cache() (Artem Savkov) [1808675]
-- [mm] memcg: ensure mem_cgroup_idr is updated in a coordinated manner (Aaron Tomlin) [1822405]
-- [mm] mm/page_alloc: increase default min_free_kbytes bound (Joel Savitz) [1704326]
-- [scsi] scsi: lpfc: Fix unexpected error messages during RSCN handling (Dick Kennedy) [1743667]
-- [scsi] scsi: lpfc: Fix discovery failures when target device connectivity bounces (Dick Kennedy) [1743667]
-- [scsi] scsi: lpfc: Fix devices that don't return after devloss followed by rediscovery (Dick Kennedy) [1743667]
-- [scsi] scsi: lpfc: Fix port relogin failure due to GID_FT interaction (Dick Kennedy) [1743667]
-- [video] vgacon: Fix a UAF in vgacon_invert_region (Vladis Dronov) [1818730] {CVE-2020-8647 CVE-2020-8649}
-- [x86] uprobes/x86: Fix detection of 32-bit user mode (Oleg Nesterov) [1804959]
-- [powerpc] module: Handle R_PPC64_ENTRY relocations (Yauheni Kaliuta) [1657540]
-- [scripts] recordmcount.pl: support data in text section on powerpc (Yauheni Kaliuta) [1657540]
-- [powerpc] boot: Request no dynamic linker for boot wrapper (Yauheni Kaliuta) [1657540]
-
-* Wed Apr 15 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1135.el7]
-- [fs] fscache: Fix race in fscache_op_complete() due to split atomic_sub & read (Dave Wysochanski) [1683490]
-- [fs] fscache: Pass the correct cancelled indications to fscache_op_complete() (Dave Wysochanski) [1683490]
-- [char] tpm: ibmvtpm: Wait for buffer to be set before proceeding (Jerry Snitselaar) [1815536]
-- [fs] NFS: Fix a race between mmap() and O_DIRECT (Benjamin Coddington) [1813803]
-- [fs] NFS: Remove a redundant call to unmap_mapping_range() (Benjamin Coddington) [1813803]
-- [fs] NFS: Remove redundant waits for O_DIRECT in fsync() and write_begin() (Benjamin Coddington) [1813803]
-- [fs] NFS: Cleanup nfs_direct_complete() (Benjamin Coddington) [1813803]
-- [fs] NFS: Do not serialise O_DIRECT reads and writes (Benjamin Coddington) [1813803]
-- [fs] NFS: Move buffered I/O locking into nfs_file_write() (Benjamin Coddington) [1813803]
-- [fs] bdi: make inode_to_bdi() inline (Benjamin Coddington) [1813803]
-- [fs] NFS: Remove racy size manipulations in O_DIRECT (Benjamin Coddington) [1813803]
-- [fs] NFS: Don't hold the inode lock across fsync() (Benjamin Coddington) [1813803]
-- [fs] nfs: remove nfs_inode_dio_wait (Benjamin Coddington) [1813803]
-- [fs] nfs: remove nfs4_file_fsync (Benjamin Coddington) [1813803]
-- [fs] NFS: Kill NFS_INO_NFS_INO_FLUSHING: it is a performance killer (Benjamin Coddington) [1813803]
-- [fs] filesystem-dax: Fix dax_layout_busy_page() livelock (Carlos Maiolino) [1817866]
-- [block] blk-mq: fix hang caused by freeze/unfreeze sequence (Ming Lei) [1821718]
-- [fs] ceph: don't NULL terminate virtual xattrs (Jeff Layton) [1717454]
-- [fs] ceph: return -ERANGE if virtual xattr value didn't fit in buffer (Jeff Layton) [1717454]
-- [fs] ceph: make getxattr_cb return ssize_t (Jeff Layton) [1717454]
-- [fs] ceph: use bit flags to define vxattr attributes (Jeff Layton) [1717454]
-- [tty] tty: Prevent ldisc drivers from re-using stale tty fields (Vladis Dronov) [1820031]
-- [powerpc] powerpc64/kexec: Hard disable ftrace before switching to the new kernel (Jerome Marchand) [1731578]
-- [powerpc] powerpc64/ftrace: Delay enabling ftrace on secondary cpus (Jerome Marchand) [1731578]
-- [powerpc] powerpc64/ftrace: Add helpers to hard disable ftrace (Jerome Marchand) [1731578]
-- [powerpc] powerpc64/ftrace: Rearrange #ifdef sections in ftrace.h (Jerome Marchand) [1731578]
-- [powerpc] powerpc64/ftrace: Add a field in paca to disable ftrace in unsafe code paths (Jerome Marchand) [1731578]
-- [powerpc] powerpc/ftrace: Pass the correct stack pointer for DYNAMIC_FTRACE_WITH_REGS (Jerome Marchand) [1731578]
-- [isdn] mISDN: enforce CAP_NET_RAW for raw sockets (Andrea Claudi) [1779474] {CVE-2019-17055}
-- [virtio] virtio-balloon: fix managed page counts when migrating pages between zones (David Hildenbrand) [1780330]
-
-* Thu Apr 09 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1134.el7]
-- [net] netfilter: nf_log: fix uninit read in nf_log_proc_dostring (Phil Sutter) [1770232]
-- [net] netfilter: nf_log: fix error on write NONE to logger choice sysctl (Phil Sutter) [1770232]
-- [net] ethtool: convert large order kmalloc allocations to vzalloc (Davide Caratti) [1786448]
-- [net] l2tp: Allow duplicate session creation with UDP (Guillaume Nault) [1808928]
-- [net] sched: flower: insert new filter to idr after setting its mask (Davide Caratti) [1785141]
-- [net] ipv6: remove printk (Hangbin Liu) [1779533]
-- [net] netfilter: ctnetlink: netns exit must wait for callbacks (Florian Westphal) [1766816]
-- [net] raw: do not report ICMP redirects to user space (Hangbin Liu) [1758386]
-
-* Fri Apr 03 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1133.el7]
-- [powerpc] powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() (Steve Best) [1806629] {CVE-2019-12614}
-- [s390] s390/pci: Recover handle in clp_set_pci_fn() (Philipp Rudo) [1816662]
-- [fs] xfs: fix attr leaf header freemap.size underflow (Bill O'Donnell) [1808671]
-- [block] floppy: check FDC index for errors before assigning it (Ming Lei) [1815403] {CVE-2020-9383}
-- [block] virtio-blk: improve virtqueue error to BLK_STS (Philipp Rudo) [1818001]
-- [block] virtio-blk: fix hw_queue stopped on arbitrary error (Philipp Rudo) [1818001]
-- [s390] dasd: fix endless loop after read unit address configuration (Philipp Rudo) [1816661]
-- [fs] CIFS: Fix NULL-pointer dereference in smb2_push_mandatory_locks (Leif Sahlberg) [1504193]
-- [fs] cifs: Fix cifsInodeInfo lock_sem deadlock when reconnect occurs (Leif Sahlberg) [1504193]
-- [char] ipmi: Fix memory leak in __ipmi_bmc_register (Tony Camuso) [1812836] {CVE-2019-19046}
-- [net] ipvs: Remove noisy debug print from ip_vs_del_service (Alexey Klimov) [1769816]
-
-* Fri Mar 27 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1132.el7]
-- [tools] tools/power turbostat: Support Ice Lake server (Steve Best) [1776508]
-- [nvme] nvme-fc: ensure association_id is cleared regardless of a Disconnect LS (Ewan Milne) [1816752]
-- [nvme] nvme-fc: clarify error messages (Ewan Milne) [1816752]
-- [nvme] nvme-fc: fix module unloads while lports still pending (Ewan Milne) [1816752]
-- [scsi] scsi: sd: Clear sdkp->protection_type if disk is reformatted without PI (Ewan Milne) [1816307]
-- [scsi] scsi: core: Fix a compiler warning triggered by the SCSI logging code (Ewan Milne) [1816307]
-- [scsi] scsi: tracing: Fix handling of TRANSFER LENGTH == 0 for READ(6) and WRITE(6) (Ewan Milne) [1816307]
-- [scsi] scsi: core: scsi_trace: Use get_unaligned_be*() (Ewan Milne) [1816307]
-- [scsi] scsi: core: try to get module before removing device (Ewan Milne) [1816307]
-- [scsi] scsi: scsi_dh_alua: handle RTPG sense code correctly during state transitions (Ewan Milne) [1816307]
-- [scsi] scsi: device_handler: remove VLAs (Ewan Milne) [1816307]
-- [scsi] scsi: scsi_dh: Document alua_rtpg_queue() arguments (Ewan Milne) [1816307]
-- [scsi] scsi: scsi_dh_alua: skip RTPG for devices only supporting active/optimized (Ewan Milne) [1816307]
-- [scsi] scsi: scsi_dh_emc: return success in clariion_std_inquiry() (Ewan Milne) [1816307]
-- [target] scsi: target: iscsi: rename some variables to avoid confusion (Maurizio Lombardi) [1806966]
-- [target] scsi: target: iscsi: tie the challenge length to the hash digest size (Maurizio Lombardi) [1806966]
-- [target] scsi: target: iscsi: CHAP: add support for SHA1, SHA256 and SHA3-256 (Maurizio Lombardi) [1806966]
-- [target] scsi: target: compare full CHAP_A Algorithm strings (Maurizio Lombardi) [1806966]
-- [base] device_release() can call device_rh_free() too (Christoph von Recklinghausen) [1793248]
-- [nvdimm] driver boilerplate changes to properly manage device_rh (Christoph von Recklinghausen) [1793248]
-- [base] Add an interface for certain drivers who manage their own struct device's to disassociate their device_rh's (Christoph von Recklinghausen) [1793248]
-- [base] kfree(dev->device_rh) in device_create_release() (Christoph von Recklinghausen) [1793248]
-- [base] kfree and zero device_rh in device_release() (Christoph von Recklinghausen) [1793248]
-- [input] Revert "Fix device_rh memory leak" (Christoph von Recklinghausen) [1793248]
-- [scsi] Revert "Fix device_rh leak in scsi_alloc_target()" (Christoph von Recklinghausen) [1793248]
-- [scsi] Revert "Fix memory leaks in scsi_alloc_sdev()" (Christoph von Recklinghausen) [1793248]
-- [nvdimm] libnvdimm/security: Consolidate 'security' operations (Jeff Moyer) [1735364]
-- [nvdimm] libnvdimm/security: Tighten scope of nvdimm->busy vs security operations (Jeff Moyer) [1735364]
-- [nvdimm] libnvdimm/security: Introduce a 'frozen' attribute (Jeff Moyer) [1735364]
-- [acpi] libnvdimm/security, acpi/nfit: unify zero-key for all security commands (Jeff Moyer) [1735364]
-- [nvdimm] libnvdimm/security: provide fix for secure-erase to use zero-key (Jeff Moyer) [1735364]
-- [block] block: fix checking return value of blk_mq_init_queue (Maxim Levitsky) [1795777]
-- [bluetooth] Bluetooth: hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in hci_uart_set_proto() (Aristeu Rozanski) [1808803] {CVE-2019-15917}
-
-* Wed Mar 25 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1131.el7]
-- [x86] kvm: x86: clear stale x86_emulate_ctxt->intercept value (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: vmx: check descriptor table exits on instruction emulation (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: nvmx: Check IO instruction VM-exit conditions (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: nvmx: Refactor IO bitmap checks into helper function (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: nvmx: Don't emulate instructions in guest mode (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: x86: Fix kvm_bitmap_or_dest_vcpus() to use irq shorthand (Nitesh Narayan Lal) [1772082]
-- [x86] kvm: x86: Initializing all kvm_lapic_irq fields in ioapic_write_indirect (Nitesh Narayan Lal) [1772082]
-- [virt] kvm: x86: remove set but not used variable 'called' (Nitesh Narayan Lal) [1772082]
-- [x86] kvm: x86: Zero the IOAPIC scan request dest vCPUs bitmap (Nitesh Narayan Lal) [1772082]
-- [x86] kvm: x86: deliver KVM IOAPIC scan request to target vCPUs (Nitesh Narayan Lal) [1772082]
-- [kernel] kvm: remember position in kvm->vcpus array (Nitesh Narayan Lal) [1772082]
-- [x86] kvm: x86: Drop KVM_APIC_SHORT_MASK and KVM_APIC_DEST_MASK (Nitesh Narayan Lal) [1772082]
-- [virt] kvm: introduce kvm_make_vcpus_request_mask() API (Nitesh Narayan Lal) [1772082]
-- [virt] kvm: avoid unused variable warning for UP builds (Nitesh Narayan Lal) [1772082]
-- [kernel] smp, cpumask: Use non-atomic cpumask_{set, clear}_cpu() (Nitesh Narayan Lal) [1772082]
-- [fs] nfs: change sign of nfs_fh length ("J. Bruce Fields") [1813326]
-- [netdrv] ibmvnic: Do not process device remove during device reset (Steve Best) [1813903]
-- [x86] x86/debug: Extend the lower bound of crash kernel low reservations (Pingfan Liu) [1811511]
-- [net] tcp: make tcp_space() aware of socket backlog (Guillaume Nault) [1790840]
-- [net] ipv6_stub: use ip6_dst_lookup_flow instead of ip6_dst_lookup (Sabrina Dubroca) [1774447] {CVE-2020-1749}
-- [net] ipv6: add net argument to ip6_dst_lookup_flow (Sabrina Dubroca) [1774447] {CVE-2020-1749}
-- [net] ipv6: constify ip6_dst_lookup_{flow|tail}() sock arguments (Sabrina Dubroca) [1774447] {CVE-2020-1749}
-- [net] macvlan: return correct error value (Matteo Croce) [1654878]
-- [net] ieee802154: enforce CAP_NET_RAW for raw sockets (Andrea Claudi) [1779494] {CVE-2019-17053}
-- [net] ipv4: fix fnhe usage by non-cached routes (Hangbin Liu) [1788435]
-- [net] route: do not cache fib route info on local routes with oif (Hangbin Liu) [1788435]
-- [net] ip6_tunnel: fix potential NULL pointer dereference (Hangbin Liu) [1767045]
-- [net] net_sched: remove a bogus warning in hfsc (Davide Caratti) [1781323]
-- [netdrv] net/mlx5e: allow TSO on VXLAN over VLAN topologies (Davide Caratti) [1780646]
-
-* Thu Mar 19 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1130.el7]
-- [scsi] scsi: avoid repetitive logging of device offline messages (Nilesh Javali) [1798042]
-- [scsi] qla2xxx: Fix I/Os being passed down when FC device is being deleted (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Fix unbound sleep in fcport delete path (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Fix hang in fcport delete path (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Fix stuck session in GNL (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Correct fcport flags handling (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Remove defer flag to indicate immeadiate port loss (Nilesh Javali) [1798042]
-- [scsi] iscsi: Avoid potential deadlock in iscsi_if_rx func (Oleksandr Natalenko) [1715986]
-- [netdrv] hv/netvsc: Fix NULL dereference at single queue mode fallback (Mohammed Gamal) [1806488]
-- [netdrv] hv/netvsc: fix handling of fallback to single queue mode (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix unwanted rx_table reset (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix tx_table init in rndis_set_subchannel() (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: fix typos in code comments (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix a deadlock by getting rtnl lock earlier in netvsc_probe() (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix hash key value reset after other ops (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Refactor assignments of struct netvsc_device_info (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: split sub-channel setup into async and sync (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix send_table offset in case of a host bug (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Add NetVSP v6 and v6.1 into version negotiation (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix offset usage in netvsc_send_table() (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: simplify receive side calling arguments (Mohammed Gamal) [1806488]
-- [scsi] scsi: ibmvfc: Fix NULL return compiler warning (Steve Best) [1810643]
-- [scsi] scsi: ibmvfc: Avoid loss of all paths during SVC node reboot (Steve Best) [1810643]
-- [s390] s390/vdso: add vdso support for coarse clocks (Philipp Rudo) [1791822]
-- [s390] s390/vdso: remove NULL pointer check from clock_gettime (Philipp Rudo) [1791822]
-- [s390] scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host (Philipp Rudo) [1804807]
-
-* Mon Mar 16 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1129.el7]
-- [tools] perf header: Use last modification time for timestamp (Michael Petlan) [1789947]
-- [tools] perf header: Fix up argument to ctime() (Michael Petlan) [1789947]
-- [hid] HID: multitouch: Add pointstick support for ALPS Touchpad (Benjamin Tissoires) [1672425]
-- [kernel] blktrace: fix dereference after null check (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] blktrace: Protect q->blk_trace with RCU (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] blktrace: fix trace mutex deadlock (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] blktrace: fix unlocked registration of tracepoints (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] blktrace: fix unlocked access to init/start-stop/teardown (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] tracing: Handle NULL formats in hold_module_trace_bprintk_format() (Oleksandr Natalenko) [1811565]
-- [kernel] tracing: Fix trace_printk() to print when not using bprintk() (Oleksandr Natalenko) [1811565]
-- [sound] ALSA: timer: Fix incorrectly assigned timer instance (Jaroslav Kysela) [1798457] {CVE-2019-19807}
-- [x86] kvm: OOB memory write via kvm_dev_ioctl_get_cpuid (CVE-2019-19332) (Philippe Mathieu-Daud) [1783455] {CVE-2019-19332}
-- [x86] kvm: x86: do not reset microcode version on INIT or RESET (Paolo Bonzini) [1801852]
-- [x86] kvm: x86: list MSR_IA32_UCODE_REV as an emulated MSR (Paolo Bonzini) [1801852]
-- [x86] kvm: x86: Allow userspace to define the microcode version (Paolo Bonzini) [1801852]
-
-* Wed Mar 11 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1128.el7]
-- [fs] ceph: only use d_name directly when parent is locked (Jeff Layton) [1699402]
-- [fs] ext4: work around deleting a file with i_nlink == 0 safely (Carlos Maiolino) [1801046]
-- [fs] xfs: attach dquots and reserve quota blocks during unwritten conversion (Carlos Maiolino) [1786005]
-- [fs] Revert "xfs: attach dquots and reserve quota blocks during unwritten conversion" (Carlos Maiolino) [1786005]
-- [md] dm mpath: call clear_request_fn_mpio() in multipath_release_clone() (Mike Snitzer) [1806400]
-- [scsi] scsi: implement .cleanup_rq callback (Mike Snitzer) [1806400]
-- [md] blk-mq: add callback of .cleanup_rq (Mike Snitzer) [1806400]
-- [target] target: call init_timer_on_stack() to initialize login_timer (Maurizio Lombardi) [1810037]
-- [scsi] scsi: megaraid_sas: fixup MSIx interrupt setup during resume (Tomas Henzl) [1807077]
-- [tools] selftests/livepatch: Test interaction with ftrace_enabled (Yannick Cote) [1806653]
-- [tools] selftests/livepatch: Make dynamic debug setup and restore generic (Yannick Cote) [1806653]
-- [kernel] ftrace: Introduce PERMANENT ftrace_ops flag (Yannick Cote) [1806653]
-- [tools] selftests/livepatch: push and pop dynamic debug config (Yannick Cote) [1806653]
-
-* Thu Mar 05 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.5.el7]
-- [scsi] scsi: libsas: fix a race condition when smp task timeout (Tomas Henzl) [1798263] {CVE-2018-20836}
-- [netdrv] can: peak_usb: fix slab info leak (Guillaume Nault) [1787484] {CVE-2019-19534}
-- [fs] xfs: also remove cached ACLs when removing the underlying attr (Carlos Maiolino) [1808676]
-- [fs] direct-io: allow direct writes to empty inodes (Eric Sandeen) [1785657]
-- [x86] x86/spec_ctrl: Make IBPB = IBRS || retpoline (Waiman Long) [1808114]
-- [infiniband] IB/mlx5: Do reverse sequence during device removal (Alaa Hleihel) [1808786]
-- [kernel] kprobes: Allow kprobes coexist with livepatch (Yannick Cote) [1764262]
-- [kernel] kprobes: Replace p with other pointer types (Yannick Cote) [1764262]
-- [scsi] qla2xxx: initialize the check_stop_free pointer (Maurizio Lombardi) [1805682]
-
-* Fri Feb 28 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.4.el7]
-- [fs] gfs2: fix gfs2_find_jhead that returns uninitialized jhead with seq 0 (Abhijith Das) [1794508]
-- [fs] xfs: fix inode fork extent count overflow (Brian Foster) [1751015]
-- [fs] xfs: simplify xfs_idata_realloc (Brian Foster) [1751015]
-- [fs] xfs: remove if_real_bytes (Brian Foster) [1751015]
-- [s390] s390/diag: add tracepoint for diagnose calls (Philipp Rudo) [1805195]
-- [s390] s390/diag: add a statistic for diagnose calls (Philipp Rudo) [1805195]
-- [md] md/raid6: Set R5_ReadError when there is read failure on parity disk (Xiao Ni) [1804569]
-- [md] dm rq: fix checking of dm_dispatch_clone_request's return value (Ming Lei) [1805401]
-- [s390] scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP devices (Philipp Rudo) [1804806]
-- [s390] scsi: zfcp: fix to prevent port_remove with pure auto scan LUNs (only sdevs) (Philipp Rudo) [1804803]
-- [s390] scsi: zfcp: fix missing zfcp_port reference put on -EBUSY from port_remove (Philipp Rudo) [1804805]
-- [s390] scsi: zfcp: fix request object use-after-free in send path causing wrong traces (Philipp Rudo) [1804802]
-- [virt] kvm: fix overflow of zero page refcount with ksm running (Paolo Bonzini) [1790534]
-
-* Tue Feb 25 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.3.el7]
-- [virtio] virtio_ring: fix return code on DMA mapping fails (Philipp Rudo) [1804276]
-- [mm] swiotlb: make panic on mapping failures optional (Philipp Rudo) [1804276]
-- [virtio] virtio_ring: fix unmap of indirect descriptors (Philipp Rudo) [1804276]
-- [virtio] virtio_ring: fix num_free handling in error case (Philipp Rudo) [1804276]
-- [mm] s390/mm: fix dynamic pagetable upgrade for hugetlbfs (Philipp Rudo) [1804173]
-- [s390] s390/qeth: fix potential deadlock on workqueue flush (Philipp Rudo) [1804156]
-- [include] mm, slab: make sure that KMALLOC_MAX_SIZE will fit into MAX_ORDER (Rafael Aquini) [1804092]
-- [include] mm: slb: fix misleading comments (Rafael Aquini) [1804092]
-- [include] slob: Rework #ifdeffery in slab.h (Rafael Aquini) [1804092]
-- [kernel] tracing: Fix possible double free on failure of allocating trace buffer (Jerome Marchand) [1803011] {CVE-2017-18595}
-- [kernel] tracing: Fix crash when it fails to alloc ring buffer (Jerome Marchand) [1803011] {CVE-2017-18595}
-- [mm] x86/mm: In the PTE swapout page reclaim case clear the accessed bit instead of flushing the TLB (Rafael Aquini) [1799224]
-
-* Fri Feb 21 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.2.el7]
-- [mm] mm: thp: use down_read_trylock() in khugepaged to avoid long block (Rafael Aquini) [1261799]
-- [mm] mm: oom: avoid attempting to kill init sharing same memory (Rafael Aquini) [1261799]
-- [mm] mm: oom: fix the wrong task->mm == mm checks in oom_kill_process() (Rafael Aquini) [1261799]
-- [mm] mm: oom: cleanup the "kill sharing same memory" loop (Rafael Aquini) [1261799]
-- [mm] mm: oom: fix potentially killing unrelated process (Rafael Aquini) [1261799]
-- [mm] mm: oom: reverse the order of setting TIF_MEMDIE and sending SIGKILL (Rafael Aquini) [1261799]
-- [mm] mm: oom: make sure that TIF_MEMDIE is set under task_lock (Rafael Aquini) [1261799]
-- [mm] mm: oom: don't count on mm-less current process (Rafael Aquini) [1261799]
-- [mm] mm: oom: kill the insufficient and no longer needed PT_TRACE_EXIT check (Rafael Aquini) [1261799]
-- [mm] mm: oom: don't assume that a coredumping thread will exit soon (Rafael Aquini) [1261799]
-- [netdrv] r8169: fix network stalls due to missing bit TXCFG_AUTO_FIFO (Corinna Vinschen) [1787263]
-- [kernel] audit: CONFIG_CHANGE don't log internal bookkeeping as an event (Richard Guy Briggs) [1777239]
-- [mm] writeback: use |1 instead of +1 to protect against div by zero (Christoph von Recklinghausen) [1801628]
-- [mm] Revert "mm: always flush VMA ranges affected by zap_page_range" (Christoph von Recklinghausen) [1801628]
-- [x86] x86/platform/uv: Account for UV Hubless in is_uvX_hub Ops (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Check EFI Boot to set reboot type (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Decode UVsystab Info (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Add UV Hubbed/Hubless Proc FS Files (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Setup UV functions for Hubless UV (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Add return code to UV BIOS Init function (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Return UV Hubless System Type (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Save OEM_ID from ACPI MADT probe (Frank Ramsay) [1789128]
-- [net] openvswitch: support asymmetric conntrack (Aaron Conole) [1757759]
-
-* Wed Feb 19 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.1.el7]
-- [scsi] scsi: fcoe: fix off by one in eth2fc_speed() (Chris Leech) [1665951]
-- [scsi] scsi: fcoe: provide translation table between Ethernet and FC port speeds (Chris Leech) [1665951]
-- [scsi] fcoe: use defines from ethtool for 20Gbit and 40Gbit speeds (Chris Leech) [1665951]
-- [scsi] smartpqi: bump version (Don Brace) [1795408]
-- [scsi] scsi: smartpqi: fix problem with unique ID for physical device (Don Brace) [1795408]
-- [scsi] scsi: smartpqi: properly set both the DMA mask and the coherent DMA mask (Don Brace) [1795408]
-- [drm] drm/nouveau/kms/gv100-: avoid sending a core update until the first modeset (Ben Skeggs) [1769905]
-- [drm] drm/nouveau/kms/gv100-: move window ownership setup into modesetting path (Ben Skeggs) [1769905]
-- [drm] drm/nouveau/disp/gv100-: halt NV_PDISP_FE_RM_INTR_STAT_CTRL_DISP_ERROR storms (Ben Skeggs) [1769905]
-- [drm] drm/nouveau/sec2/gp102: add missing MODULE_FIRMWAREs (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot/gp10: support newer FW to fix SEC2 failures on some boards (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot: enable loading of versioned LS PMU/SEC2 ACR msgqueue FW (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot: split out FW version-specific LS function pointers (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot: pass max supported FW version to LS load funcs (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/core: support versioned firmware loading (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/core: pass subdev into nvkm_firmware_get, rather than device (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot/gp102-: remove WAR for SEC2 RTOS start bug (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/flcn/gp102-: improve implementation of bind_context() on SEC2/GSP (Ben Skeggs) [1629576]
-- [infiniband] IB/core: Do not notify GID change event of an unregistered device (Kamal Heib) [1707036]
-- [infiniband] IB/core: Let IB core distribute cache update events (Kamal Heib) [1707036]
-- [scsi] lpfc: Fix stack trace when running the debug kernel (Dick Kennedy) [1793410]
-- [mm] mm, sparse: do not swamp log with huge vmemmap allocation failures (Artem Savkov) [1515625]
-- [netdrv] nfp: flower: fix stats id allocation (Pablo Cascon) [1786498]
-- [netdrv] virtio-net: switch to use XPS to choose txq (Lu Lu) [1769479]
-- [vhost] vhost_net: validate sock before trying to put its fd (Vladis Dronov) [1767060]
-- [vhost] vhost_net: stop device during reset owner (Vladis Dronov) [1767060]
-- [vhost] vhost: don't open-code sockfd_put() (Vladis Dronov) [1767060]
-- [netdrv] bnx2x: Prevent ptp_task to be rescheduled indefinitely (Manish Chopra) [1720384]
-- [netdrv] bnx2x: Check if transceiver implements DDM before access (Manish Chopra) [1720384]
-- [netdrv] bnx2x: Add support for detection of P2P event packets (Manish Chopra) [1720384]
-- [netdrv] bnx2x: Replace magic numbers with macro definitions (Manish Chopra) [1720384]
-- [fs] flexfiles: Don't tie up all the rpciod threads in resends (Benjamin Coddington) [1778963]
-
-* Wed Feb 12 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1126.2.el7]
-- [kernel] sched: print_rq(): Don't use tasklist_lock (Phil Auld) [1797429]
-- [kernel] sched: s/do_each_thread/for_each_process_thread/ in debug.c (Phil Auld) [1797429]
-- [kernel] sched/rt: Optimize checking group RT scheduler constraints (Phil Auld) [1726700]
-- [iommu] iommu/iova: Fix tracking of recently failed iova address (Jerry Snitselaar) [1759072]
-- [iommu] iommu/iova: Optimise attempts to allocate iova from 32bit address range (Jerry Snitselaar) [1759072]
-- [mm] memcg: Use a more cacheline efficient ways to sum percpu stats (Waiman Long) [1796920]
-- [mm] memcg: Add preemption point in accumulate_memcg_tree() (Waiman Long) [1796920]
-- [mm] memcg: reduce memcg tree traversals for stats collection (Waiman Long) [1796920]
-- [fs] vfs: show_vfsstat: do not ignore errors from show_devname method (Ian Kent) [1751787]
-- [fs] vfs: make mounts and mountstats honor root dir like mountinfo does (Ian Kent) [1751787]
-- [fs] xfs: bulkstat should copy lastip whenever userspace supplies one (Carlos Maiolino) [1786007]
-- [fs] xfs: attach dquots and reserve quota blocks during unwritten conversion (Carlos Maiolino) [1786005]
-- [fs] cifs: Fix NULL pointer dereference of devname (Leif Sahlberg) [1722592]
-- [x86] hyper-v: make hyperv_init() __init (Vitaly Kuznetsov) [1782192]
-
-* Wed Feb 05 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1126.1.el7]
-- [kernel] tick-sched: Update nohz load even if tick already stopped (Scott Wood) [1694877]
-- [powerpc] powerpc/pseries: safely roll back failed DLPAR cpu add (Desnes Augusto Nunes do Rosario) [1772210]
-- [powerpc] powerpc/pseries: address checkpatch warnings in dlpar_offline_cpu (Desnes Augusto Nunes do Rosario) [1772210]
-- [fs] fs/proc/proc_sysctl.c: Fix a NULL pointer dereference (Vladis Dronov) [1795522] {CVE-2019-20054}
-- [fs] fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links (Vladis Dronov) [1795522] {CVE-2019-20054}
-- [tools] cpupower: mperf_monitor: Update cpupower to use the RDPRU instruction (Janakarajan Natarajan) [1791014]
-- [tools] cpupower: mperf_monitor: Introduce per_cpu_schedule flag (Janakarajan Natarajan) [1791014]
-- [tools] cpupower: Move needs_root variable into a sub-struct (Janakarajan Natarajan) [1791014]
-- [fs] xfs: properly serialise fallocate against AIO+DIO (Carlos Maiolino) [1786004]
-- [fs] xfs: flush removing page cache in xfs_reflink_remap_prep (Carlos Maiolino) [1786004]
-- [edac] EDAC, skx, i10nm: Fix source ID register offset (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i10nm: Check ECC enabling status per channel (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i10nm: Add Intel additional Ice-Lake support (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx, i10nm: Make skx_common.c a pure library (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx_common: Add code to recognise new compound error code (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i10nm: Fix randconfig builds (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i10nm: Add a driver for Intel 10nm server processors (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx_edac: Delete duplicated code (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx_common: Separate common code out from skx_edac (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx: Move debugfs node under EDACs hierarchy (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx: Prepend hex formatting with 0x (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx: Fix function calling order in skx_exit() (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx_edac: Fix logical channel intermediate decoding (Aristeu Rozanski) [1514705]
-- [edac] EDAC, {i7core, sb, skx}_edac: Fix uncorrected error counting (Aristeu Rozanski) [1514705]
-- [edac] EDAC: Correct DIMM capacity unit symbol (Aristeu Rozanski) [1514705]
-- [x86] x86/mce: Add notifier_block forward declaration (Aristeu Rozanski) [1514705]
-- [edac] EDAC: Handle return value of kasprintf() (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i5100: Convert to debugfs wrappers (Aristeu Rozanski) [1514705]
-- [edac] EDAC: Add debugfs wrappers (Aristeu Rozanski) [1514705]
-- [edac] EDAC: Carve out debugfs functionality (Aristeu Rozanski) [1514705]
-- [x86] x86/reboot: Always use NMI fallback when shutdown via reboot vector IPI fails (Grzegorz Halat) [1594848]
-- [scsi] scsi: qla2xxx: Fix unbound NVME response length (Himanshu Madhani) [1788669]
-
-* Thu Jan 30 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1125.1.el7]
-- [netdrv] ixgbevf: Use cached link state instead of re-reading the value for ethtool (Ken Cox) [1794812]
-- [ptp] ptp: free ptp device pin descriptors properly (Vladis Dronov) [1774657]
-- [ptp] ptp: fix the race between the release of ptp_clock and cdev (Vladis Dronov) [1774657]
-- [ptp] ptp: Fix pass zero to ERR_PTR() in ptp_clock_register (Vladis Dronov) [1774657]
-- [ptp] ptp: create "pins" together with the rest of attributes (Vladis Dronov) [1774657]
-- [ptp] ptp: use is_visible method to hide unused attributes (Vladis Dronov) [1774657]
-- [ptp] ptp: use kcalloc when allocating arrays (Vladis Dronov) [1774657]
-- [ptp] ptp: do not explicitly set drvdata in ptp_clock_register() (Vladis Dronov) [1774657]
-- [ptp] drivers/ptp: Fix kernel memory disclosure (Vladis Dronov) [1774657]
-- [ptp] ptp: Fix resource leak in case of error (Vladis Dronov) [1774657]
-- [netdrv] ptp: drivers: set the number of programmable pins (Vladis Dronov) [1774657]
-- [ptp] ptp: expose the programmable pins via sysfs (Vladis Dronov) [1774657]
-- [documentation] ptp: add the pin GET/SETFUNC ioctls to the testptp program (Vladis Dronov) [1774657]
-- [documentation] ptp: Allow selecting trigger/event index in testptp (Vladis Dronov) [1774657]
-- [documentation] ptp: add the PTP_SYS_OFFSET ioctl to the testptp program (Vladis Dronov) [1774657]
-- [fs] mark struct file that had write access grabbed by open() (Miklos Szeredi) [1679829]
-- [fs] fold __get_file_write_access() into its only caller (Miklos Szeredi) [1679829]
-- [powerpc] get rid of DEBUG_WRITECOUNT (Miklos Szeredi) [1679829]
-- [fs] don't bother with {get, put}_write_access() on non-regular files (Miklos Szeredi) [1679829]
-- [fs] gfs2: Use d_materialise_unique instead of d_splice_alias (2) (Andreas Grunbacher) [1784550]
-- [fs] gfs2: gfs2_create_inode(): don't bother with d_splice_alias() (Andreas Grunbacher) [1784550]
-- [fs] gfs2: bugger off early if O_CREAT open finds a directory (Andreas Grunbacher) [1784550]
-- [fs] libceph: fix PG split vs OSD (re)connect race (Ilya Dryomov) [1785656]
-- [scsi] Fix driver intialization failure for sli4 non nvme (Dick Kennedy) [1783899]
-- [netdrv] hv_netvsc: fix race that may miss tx queue wakeup (Mohammed Gamal) [1781322]
-
-* Mon Jan 27 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1124.1.el7]
-- [netdrv] net/ibmvnic: Fix typo in retry check (Steve Best) [1780300]
-- [netdrv] ibmvnic: Serialize device queries (Steve Best) [1780300]
-- [netdrv] ibmvnic: Bound waits for device queries (Steve Best) [1780300]
-- [netdrv] ibmvnic: Terminate waiting device threads after loss of service (Steve Best) [1780300]
-- [netdrv] ibmvnic: Fix completion structure initialization (Steve Best) [1780300]
-- [netdrv] net/ibmvnic: Ignore H_FUNCTION return from H_EOI to tolerate XIVE (Steve Best) [1780300]
-- [powerpc] powerpc/pseries/mobility: use cond_resched when updating device tree (Desnes Augusto Nunes do Rosario) [1759209]
-- [powerpc] powerpc/rtas: allow rescheduling while changing cpu states (Desnes Augusto Nunes do Rosario) [1759209]
-- [base] of: to support binding numa node to specified device in devicetree (Jeff Moyer) [1791883]
-- [s390] s390: wire up sys_renameat2 (Miklos Szeredi) [1773504]
-- [net] ipvs: do not use random local source address for tunnels (Xin Long) [1786676]
-- [misc] mei: me: add cannon point device ids for 4th device (Jerry Snitselaar) [1745139]
-- [misc] mei: me: add cannon point device ids (Jerry Snitselaar) [1745139]
-- [netdrv] bnxt_en: Support all variants of the 5750X chip family (Jonathan Toppins) [1789345]
-
-* Wed Jan 22 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1123.1.el7]
-- [kernel] tick: broadcast-hrtimer: Fix a race in bc_set_next (Vladis Dronov) [1785680]
-- [mm] mremap: remove LATENCY_LIMIT from mremap to reduce the number of TLB shootdowns (Rafael Aquini) [1781325]
-- [x86] x86/CPU: mask X86_CR4_PCIDE from trampoline_cr4_features in clear_in_cr4() too (Vitaly Kuznetsov) [1785626]
-- [scsi] scsi: ibmvfc: fix WARN_ON during event pool release (Desnes Augusto Nunes do Rosario) [1635959]
-- [dma] dma-mapping: relax warning for per-device areas (Desnes Augusto Nunes do Rosario) [1635959]
-- [kernel] sched: Fix schedule_tail() to disable preemption (Phil Auld) [1771094]
-- [virtio] scsi: virtio: Reduce BUG if total_sg > virtqueue size to WARN (Lu Lu) [1625065]
-- [netdrv] vmxnet3: turn off lro when rxcsum is disabled (Neil Horman) [1775367]
-- [x86] x86: respect memory size limiting via mem= parameter (Joel Savitz) [1750253]
-- [x86] sched/topology: Improve load balancing on AMD EPYC systems (Phil Auld) [1505941]
-- [kernel] sched/topology: Fix off by one bug (Phil Auld) [1505941]
-- [s390] s390/idle: fix cpu idle time calculation (Philipp Rudo) [1777505]
-- [vhost] vhost: Fix incorrect allocation size for vq indirect iovec (Eugenio Perez) [1749726]
-
-* Tue Jan 14 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1123.el7]
-- [mm] mm: prevent get_user_pages() from overflowing page refcount (Aristeu Rozanski) [1705005] {CVE-2019-11487}
-- [mm] mm/hugetlb.c: __get_user_pages ignores certain follow_hugetlb_page errors (Aristeu Rozanski) [1705005] {CVE-2019-11487}
-- [fs] CIFS: avoid using MID 0xFFFF (Leif Sahlberg) [1771255]
-- [net] netfilter: xt_TRACE: add explicitly nf_logger_find_get call (Phil Sutter) [1774444]
-- [wireless] rtlwifi: Fix potential overflow on P2P code (Josef Oskera) [1775236] {CVE-2019-17666}
-
-* Tue Jan 07 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1122.el7]
-- [drm] drm/amd/powerplay: use hardware fan control if no powerplay fan table (Lyude Paul) [1729286]
-- [nvme] nvme-fc: fix double-free scenarios on hw queues (Ewan Milne) [1731286]
-- [x86] kvm: vmx: use MSR_IA32_TSX_CTRL to hard-disable TSX on guest that lack it (Paolo Bonzini) [1779768]
-- [x86] kvm: vmx: implement MSR_IA32_TSX_CTRL disable RTM functionality (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm: x86: Mark expected switch fall-throughs (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm: x86: implement MSR_IA32_TSX_CTRL effect on CPUID (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm: x86: do not modify masked bits of shared MSRs (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm: x86: fix presentation of TSX feature in ARCH_CAPABILITIES (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm/x86: Export MDS_NO=0 to guests when TSX is enabled (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [s390] s390/qeth: ensure linear access to packet headers (Philipp Rudo) [1782927]
-- [s390] s390/qeth: guard against runt packets (Philipp Rudo) [1782927]
-- [s390] s390/qeth: consolidate skb allocation (Philipp Rudo) [1782927]
-- [s390] s390/qeth: clean up page frag creation (Philipp Rudo) [1782927]
-- [netdrv] i40e: Fix for persistent lldp support (Stefan Assmann) [1782689]
-
-* Tue Dec 17 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1121.el7]
-- [platform] thinkpad_acpi: Don't yell on unsupported brightness interfaces (Lyude Paul) [1305619]
-- [platform] thinkpad-acpi: fix handle locate for video and query of _BCL (Lyude Paul) [1305619]
-- [s390] kernel: avoid cpu yield in SMT environment (Philipp Rudo) [1777876]
-- [scsi] scsi: qla2xxx: Fix incorrect SFUB length used for Secure Flash Update MB Cmd (Himanshu Madhani) [1783016]
-- [scsi] scsi: qla2xxx: Added support for MPI and PEP regions for ISP28XX (Himanshu Madhani) [1783016]
-- [scsi] scsi: qla2xxx: Correctly retrieve and interpret active flash region (Himanshu Madhani) [1783016]
-- [powerpc] KVM: PPC: Book3S HV: Flush link stack on guest exit to host kernel (Gustavo Duarte) [1777710]
-- [powerpc] powerpc/book3s64: Fix link stack flush on context switch (Gustavo Duarte) [1777710]
-- [powerpc] powerpc/64s: support nospectre_v2 cmdline option (Gustavo Duarte) [1777710]
-- [net] openvswitch: fix flow command message size (Paolo Abeni) [1776578]
-- [block] brd: re-enable __GFP_HIGHMEM in brd_insert_page() (Jeff Moyer) [1781298]
-- [block] brd: remove dax support (Jeff Moyer) [1781298]
-- [nvme] nvme: don't access the inlined bio after nvmet request is completed (Ming Lei) [1631120]
-- [fs] epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() (Miklos Szeredi) [1780128]
-- [nvme] nvme: fix NULL pointer dereference in nvme_init_subsystem (Ewan Milne) [1781316]
-- [nvme] nvme-fabrics: allow duplicate connections to the discovery controller (Ewan Milne) [1781316]
-- [scsi] scsi: bnx2fc: timeout calculation invalid for bnx2fc_eh_abort() (Nilesh Javali) [1772966]
-
-* Thu Dec 12 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1120.el7]
-- [md] raid5: need to set STRIPE_HANDLE for batch head (Xiao Ni) [1774330]
-- [drm] drm/radeon: fix si_enable_smc_cac() failed issue (Dave Airlie) [1780026]
-- [block] block: don't change REQ_NR_BITS (Ming Lei) [1779712]
-
-* Mon Dec 09 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1119.el7]
-- [x86] mm: serialize against gup_fast in pmdp_splitting_flush() (Vitaly Kuznetsov) [1674266]
-- [vhost] vsock: split packets to send using multiple buffers (Stefano Garzarella) [1777349]
-- [md] md/raid10: prevent access of uninitialized resync_pages offset (Nigel Croxon) [1767935]
-- [x86] perf/x86: Modify error message in virtualized environment (Michael Petlan) [1759758]
-- [fs] cifs: Fix infinite loop when using hard mount option (Dave Wysochanski) [1770404]
-- [wireless] mwifiex: Fix heap overflow in mmwifiex_process_tdls_action_frame() (Stanislaw Gruszka) [1776157] {CVE-2019-14901}
-
-* Wed Dec 04 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1118.el7]
-- [net] ipv6: support more tunnel interfaces for EUI64 link-local generation (Guillaume Nault) [1770686]
-- [net] netfilter: masquerade: don't flush all conntracks if only one address deleted on device (Patrick Talbert) [1771396]
-- [net] netfilter: conntrack: resched in nf_ct_iterate_cleanup (Patrick Talbert) [1771396]
-- [net] ipvs: fix buffer overflow with sync daemon and service (Davide Caratti) [1725440]
-- [net] ipvs: fix rtnl_lock lockups caused by start_sync_thread (Davide Caratti) [1725440]
-- [net] ipvs: Pass ipvs not net to make_receive_sock (Davide Caratti) [1725440]
-- [net] ipvs: Pass ipvs not net to make_send_sock (Davide Caratti) [1725440]
-- [net] ipvs: Pass ipvs not net to start_sync_thread (Davide Caratti) [1725440]
-- [net] ipvs: Pass ipvs not net to ip_vs_genl_new_daemon (Davide Caratti) [1725440]
-- [net] ipvs: add sync_maxlen parameter for the sync daemon (Davide Caratti) [1725440]
-- [net] ipvs: call rtnl_lock early (Davide Caratti) [1725440]
-- [net] netfilter: don't use mutex_lock_interruptible() (Davide Caratti) [1725440]
-- [net] ipvs: fix memory leak in ip_vs_ctl.c (Davide Caratti) [1725440]
-- [wireless] mwifiex: fix possible heap overflow in mwifiex_process_country_ie() (Stanislaw Gruszka) [1776206]
-- [scsi] Revert "qla2xxx: Mark NVMe/FC initiator mode usage as technology preview" (Ewan Milne) [1642968]
-
-* Tue Dec 03 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1117.el7]
-- [x86] x86/speculation: Remove unneeded STIBP code (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/speculation: Fix redundant MDS mitigation message (Waiman Long) [1766540] {CVE-2019-11135}
-- [documentation] x86/speculation: Fix incorrect MDS/TAA mitigation status (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/speculation/taa: Fix printing of TAA_MSG_SMT on IBRS_ALL CPUs (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/tsx: Add config options to set tsx=on|off|auto (Waiman Long) [1766540] {CVE-2019-11135}
-- [documentation] x86/speculation/taa: Add documentation for TSX Async Abort (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/tsx: Add "auto" option to the tsx= cmdline parameter (Waiman Long) [1766540] {CVE-2019-11135}
-- [base] x86/speculation/taa: Add sysfs reporting for TSX Async Abort (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/speculation/taa: Add mitigation for TSX Async Abort (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/cpu: Add a "tsx=" cmdline option with TSX disabled by default (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/cpu: Add a helper function x86_read_arch_cap_msr() (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/msr: Add the IA32_TSX_CTRL MSR (Waiman Long) [1766540] {CVE-2019-11135}
-- [documentation] documentation: Add ITLB_MULTIHIT documentation (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: mmu: Recovery of shattered NX large pages (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [virt] kvm: Add helper function for creating VM worker threads (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: mmu: ITLB_MULTIHIT mitigation (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [kernel] cpu/speculation: Uninline and export CPU mitigations helpers (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] cpu: Add Tremont to the cpu vulnerability whitelist (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] Add ITLB_MULTIHIT bug infrastructure (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: vmx, svm: always run with EFER.NXE=1 when shadow paging is active (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: add tracepoints around __direct_map and FNAME(fetch) (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: change kvm_mmu_page_get_gfn BUG_ON to WARN_ON (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: remove now unneeded hugepage gfn adjustment (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: make FNAME(fetch) and __direct_map more similar (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: mmu: Do not release the page inside mmu_set_spte() (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: mmu: Remove unused parameter of __direct_map() (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [virt] kvm: Convert kvm_lock to a mutex (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: mmu: drop vcpu param in gpte_access (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [virt] kvm: x86, powerpc: do not allow clearing largepages debugfs entry (Paolo Bonzini) [1690343] {CVE-2018-12207}
-
-* Mon Dec 02 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1116.el7]
-- [netdrv] net/mlx5: Fix auto group size calculation (Alaa Hleihel) [1769309]
-- [mm] x86/io: add interface to reserve io memtype for a resource range. (v1.1) (Dave Airlie) [1739623]
-- [sound] alsa: emux: Fix potential Spectre v1 vulnerabilities (Jaroslav Kysela) [1672561]
-- [s390] s390/smt: Fix s390 SMT reporting (Josh Poimboeuf) [1764184]
-- [mm] mm: swap: clean up swap readahead (Rafael Aquini) [1725396]
-- [mm] mm: do_swap_page: clean up parameter list passing a pointer to struct vm_fault (Rafael Aquini) [1725396]
-- [mm] mm: __handle_mm_fault: introduce explicit barrier after orig_pte dereference (Rafael Aquini) [1725396]
-- [fs] cachefiles: Fix page leak in cachefiles_read_backing_file while vmscan is active (David Howells) [1765975]
-
-* Wed Nov 27 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1115.el7]
-- [scsi] Fix stack tarce when lpfc driver is unloaded (Dick Kennedy) [1774744]
-- [scsi] qla2xxx: Update driver version (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix partial flash write of MBI (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix device connect issues in P2P configuration (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix a NULL pointer dereference (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix double scsi_done for abort path (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Make qla2x00_abort_srb() again decrease the sp reference count (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix driver unload hang (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix SRB leak on switch command timeout (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix premature timer expiration (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Uninline qla2x00_init_timer() (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Do command completion on abort timeout (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Retry PLOGI on FC-NVMe PRLI failure (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Add error handling for PLOGI ELS passthrough (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Inline the qla2x00_fcport_event_handler() function (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Dual FCP-NVMe target port support (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Use tabs instead of spaces for indentation (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix N2N link up fail (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix N2N link reset (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix a race condition between aborting and completing a SCSI command (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Introduce the function qla2xxx_init_sp() (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Really fix qla2xxx_eh_abort() (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Make qla24xx_async_abort_cmd() static (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Reduce the number of forward declarations (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Remove a superfluous forward declaration (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix stuck login session (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix panic from use after free in qla2x00_async_tm_cmd (Himanshu Madhani) [1731581]
-- [media] cx24116: fix a buffer overflow when checking userspace params (Jarod Wilson) [1737279] {CVE-2015-9289}
-- [scsi] qedf: Initialize rport while creation of vport (Nilesh Javali) [1760746]
-- [fs] Fix the locking in dcache_readdir() and friends (Ondrej Mosnacek) [1510603]
-- [fs] much milder d_walk() race (Ondrej Mosnacek) [1510603]
-- [fs] libfs.c: new helper - next_positive() (Ondrej Mosnacek) [1510603]
-- [fs] dcache_{readdir, dir_lseek}(): don't bother with nested ->d_lock (Ondrej Mosnacek) [1510603]
-- [security] selinuxfs: don't open-code d_genocide() (Ondrej Mosnacek) [1510603]
-- [fs] fs/dcache: Enable automatic reclaim of excess negative dentries (Waiman Long) [1489573]
-- [fs] fs/dcache: Add sysctl parameter negative-dentry-limit as a soft limit on negative dentries (Waiman Long) [1489573]
-- [fs] fs/dcache: Move percpu count updates out of dcache_lru_lock (Waiman Long) [1489573]
-- [fs] fs/dcache: Don't set DCACHE_REFERENCED on dentries when first put into LRU (Waiman Long) [1489573]
-
-* Mon Nov 25 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1114.el7]
-- [kernel] sched/numa: Fix a possible divide-by-zero (Vladis Dronov) [1765959]
-- [x86] x86/boot/64: Round memory hole size up to next PMD page (Frank Ramsay) [1773762]
-- [x86] x86/boot/64: Make level2_kernel_pgt pages invalid outside kernel area (Frank Ramsay) [1773762]
-- [kernel] seccomp: Fix tracer exit notifications during fatal signals (Vladis Dronov) [1770484]
-- [x86] x86/ptrace: run seccomp after ptrace (Vladis Dronov) [1770484]
-- [fs] cifs: Fix retry mid list corruption on reconnects (Dave Wysochanski) [1614201]
-- [fs] cifs: add a warning if we try to to dequeue a deleted mid (Dave Wysochanski) [1614201]
-- [fs] cifs: Fix use after free of a mid_q_entry (Dave Wysochanski) [1614201]
-- [fs] Don't log confusing message on reconnect by default (Dave Wysochanski) [1614201]
-- [fs] ceph: mark Fw cap dirty after splice write (Zheng Yan) [1710751]
-- [fs] cifs: Force reval dentry if LOOKUP_REVAL flag is set (Dave Wysochanski) [1771657]
-- [fs] cifs: Force revalidate inode when dentry is stale (Dave Wysochanski) [1771657]
-- [fs] cifs: Gracefully handle QueryInfo errors during open (Dave Wysochanski) [1771657]
-
-* Fri Nov 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1113.el7]
-- [drm] drm/i915/cmdparser: Fix jump whitelist clearing (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Lower RM timeout to avoid DSI hard hangs (Dave Airlie) [1756816] {CVE-2019-0154}
-- [drm] drm/i915/gen8+: Add RC6 CTX corruption WA (Dave Airlie) [1756816] {CVE-2019-0154}
-- [drm] drm/i915/cmdparser: Ignore Length operands during command matching (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915/cmdparser: Add support for backward jumps (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915/cmdparser: Use explicit goto for error paths (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Add gen9 BCS cmdparsing (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Allow parsing of unsized batches (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Support ro ppgtt mapped cmdparser shadow buffers (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Add support for mandatory cmdparsing (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Remove Master tables from cmdparser (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Disable Secure Batches for gen6+ (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Rename gen7 cmdparser tables (Dave Airlie) [1756883] {CVE-2019-0155}
-- [fs] Fix error code in nfs_lookup_verify_inode() (Benjamin Coddington) [1761957]
-- [scsi] scsi: qla2xxx: Initialized mailbox to prevent driver load failure (Himanshu Madhani) [1770307]
-- [powerpc] powerpc/ptrace: run seccomp after ptrace (Vladis Dronov) [1760294]
-- [s390] s390/ptrace: run seccomp after ptrace (Vladis Dronov) [1760294]
-- [s390] s390/seccomp: fix error return for filtered system calls (Vladis Dronov) [1760294]
-- [netdrv] bnxt_en: flow_offload: offload tunnel decap rules via indirect callbacks (Davide Caratti) [1717422]
-- [x86] cpuidle-haltpoll: vcpu hotplug support (Marcelo Tosatti) [1771849]
-- [x86] kvm: x86: skip populating logical dest map if apic is not sw enabled (Bandan Das) [1738496]
-- [x86] kvm: x86: remove unnecessary recalculate_apic_map (Bandan Das) [1738496]
-- [scsi] scsi: bnx2fc: Handle scope bits when array returns BUSY or TSF (Nilesh Javali) [1750577]
-- [scsi] scsi: bnx2fc: remove set but not used variables 'task', 'port', 'orig_task' (Nilesh Javali) [1750577]
-- [scsi] scsi: bnx2fc: remove set but not used variables 'lport', 'host' (Nilesh Javali) [1750577]
-- [scsi] scsi: bnx2fc: remove set but not used variable 'fh' (Nilesh Javali) [1750577]
-- [scsi] scsi: qedi: Remove WARN_ON from clear task context (Nilesh Javali) [1461697]
-- [scsi] scsi: qedi: Remove WARN_ON for untracked cleanup (Nilesh Javali) [1461697]
-
-* Fri Nov 15 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1112.el7]
-- [scsi] scsi: mpt3sas: change allocation option (Tomas Henzl) [1763796]
-- [md] md: improve handling of bio with REQ_PREFLUSH in md_flush_request() (Xiao Ni) [1752061]
-- [kvm] KVM: x86: switch KVMCLOCK base to monotonic raw clock (Marcelo Tosatti) [1760668]
-- [net] mac80211: Reject malformed SSID elements (Stanislaw Gruszka) [1748266]
-- [net] cfg80211: wext: avoid copying malformed SSIDs (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: change qu with jf devices to use qu configuration (Stanislaw Gruszka) [1748266]
-- [net] mac80211: fix txq null pointer dereference (Stanislaw Gruszka) [1748266]
-- [net] nl80211: fix null pointer dereference (Stanislaw Gruszka) [1748266]
-- [net] cfg80211: initialize on-stack chandefs (Stanislaw Gruszka) [1748266]
-- [net] cfg80211: validate SSID/MBSSID element ordering assumption (Stanislaw Gruszka) [1748266]
-- [net] nl80211: validate beacon head (Stanislaw Gruszka) [1748266]
-- [net] mac80211: keep BHs disabled while calling drv_tx_wake_queue() (Stanislaw Gruszka) [1748266]
-- [net] cfg80211: Purge frame registrations on iftype change (Stanislaw Gruszka) [1748266]
-- [wireless] rtw88: pci: Use DMA sync instead of remapping in RX ISR (Stanislaw Gruszka) [1748266]
-- [wireless] rtw88: pci: Rearrange the memory usage for skb in RX ISR (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: fw: don't send GEO_TX_POWER_LIMIT command to FW version 36 (Stanislaw Gruszka) [1748266]
-- [net] nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds (Stanislaw Gruszka) [1748266]
-- [net] mac80211: Do not send Layer 2 Update frame before authorization (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: assign directly to iwl_trans->cfg in QuZ detection (Stanislaw Gruszka) [1748266]
-- [wireless] mwifiex: Fix three heap overflow at parsing element in cfg80211_ap_settings (Stanislaw Gruszka) [1748266]
-- [net] mac80211: Correctly set noencrypt for PAE frames (Stanislaw Gruszka) [1748266]
-- [net] mac80211: Don't memset RXCB prior to PAE intercept (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: handle switching killer Qu B0 NICs to C0 (Stanislaw Gruszka) [1748266]
-- [net] Revert "cfg80211: fix processing world regdomain when non modular" (Stanislaw Gruszka) [1748266]
-- [net] mac80211: fix possible sta leak (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: fix recognition of QuZ devices (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: don't switch FW to qnj when ax201 is detected (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: fix the byte count table format for 22560 devices (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: mvm: Allow multicast data frames only when associated (Stanislaw Gruszka) [1748266]
-- [netdrv] i40e: initialize ITRN registers with correct values (Stefan Assmann) [1630307]
-- [net] tuntap: synchronize through tfiles array instead of tun->numqueues (Eugenio Perez) [1713616]
-- [net] tuntap: fix use after free during release (Eugenio Perez) [1713616]
-- [net] tun: fix use after free for ptr_array (Eugenio Perez) [1713616]
-- [net] tun/tap: sanitize TUNSETSNDBUF input (Eugenio Perez) [1713616]
-- [block] block: Don't merge requests if integrity flags differ (Ming Lei) [1767605]
-- [block] blk-mq: insert rq with DONTPREP to hctx dispatch list when requeue (Ming Lei) [1767605]
-- [x86] x86/atomic: Fix smp_mb__{before,after}_atomic() (Prarit Bhargava) [1769569]
-- [netdrv] qede: fix NULL pointer deref in __qede_remove() (Manish Chopra) [1766574]
-- [fs] xfs: only trace buffer items if they exist (Brian Foster) [1768722]
-- [nvme] nvme: make fabrics command run on a separate request queue (David Milburn) [1769900]
-- [nvme] nvme: Restart request timers in resetting state (David Milburn) [1769900]
-- [nvme] nvme-rdma: fix possible use-after-free in connect timeout (David Milburn) [1769900]
-- [netdrv] i40e: enable X710 support (Stefan Assmann) [1764987]
-
-* Fri Nov 08 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1111.el7]
-- [md] md: support for queue flag QUEUE_FLAG_NO_SG_MERGE (Nigel Croxon) [1767472]
-- [net] ipv4: Return -ENETUNREACH if we can't create route but saddr is valid (Stefano Brivio) [1633140]
-- [net] ipv6: Rewind hlist offset on interrupted /proc/net/if_inet6 read (Stefano Brivio) [1753480]
-- [net] revert "[net] ipv6: Display all addresses in output of /proc/net/if_inet6" (Stefano Brivio) [1753480]
-- [net] sock: fix lockdep annotation in release_sock (Paolo Abeni) [1753150]
-- [mm] mm-vmstat-reduce-zone-lock-holding-time-by-proc-pagetypeinfo-fix (Waiman Long) [1757943]
-- [mm] mm, vmstat: reduce zone->lock holding time by /proc/pagetypeinfo (Waiman Long) [1757943]
-- [mm] mm, vmstat: hide /proc/pagetypeinfo from normal users (Waiman Long) [1757943]
-
-* Wed Nov 06 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1110.el7]
-- [nvme] nvme-pci: Fix controller freeze wait disabling (David Milburn) [1766279]
-- [net] mac80211: fix kfree() on stack memory in ieee80211_crypto_aes_gmac_decrypt() (Stanislaw Gruszka) [1764510]
-- [md] dm rq: fix handling underlying queue busy (Ming Lei) [1767482]
-
-* Sat Nov 02 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1109.el7]
-- [netdrv] net/mlx5e: Initialize on stack link modes bitmap (Alaa Hleihel) [1764272]
-- [netdrv] net/mlx5e: Fix ethtool self test: link speed (Alaa Hleihel) [1764272]
-- [netdrv] net/mlx5e: ethtool, Avoid setting speed to 56GBASE when autoneg off (Alaa Hleihel) [1764272]
-- [fs] xfs: end sync buffer I/O properly on shutdown error (Brian Foster) [1750602]
-- [fs] xfs: kill __xfs_buf_submit_common() (Brian Foster) [1750602]
-- [fs] xfs: combinesync buffer submission apis (Brian Foster) [1750602]
-- [fs] xfs: lobotomise xfs_trans_read_buf_map() (Brian Foster) [1750602]
-- [fs] cifs: Fix use after free of file info structures (Dave Wysochanski) [1757872]
-- [fs] vfs: Fix EOVERFLOW testing in put_compat_statfs64 (Eric Sandeen) [1758001]
-- [mm] mm, compaction: avoid isolating pinned pages (Rafael Aquini) [1344862]
-- [scsi] scsi: smartpqi: change TMF timeout from 60 to 30 seconds (Don Brace) [1709620]
-- [scsi] scsi: smartpqi: fix LUN reset when fw bkgnd thread is hung (Don Brace) [1709620]
-- [scsi] scsi: smartpqi: add inquiry timeouts (Don Brace) [1709620]
-- [scsi] scsi: smartpqi: increase LUN reset timeout (Don Brace) [1709620]
-- [firmware] x86, efi: never relocate kernel below lowest acceptable address (Kairui Song) [1732737]
-- [powerpc] powerpc: dump kernel log before carrying out fadump or kdump (Desnes Augusto Nunes do Rosario) [1750250]
-- [s390] s390/cpumsf: Check for CPU Measurement sampling (Philipp Rudo) [1765124]
-- [s390] scsi: zfcp: fix reaction on bit error threshold notification (Philipp Rudo) [1765123]
-- [mm] s390/mm: Fix swiotlb for protected virtualization (Philipp Rudo) [1765122]
-
-* Thu Oct 31 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1108.el7]
-- [powerpc] powerpc/pseries: Remove confusing warning message (Gustavo Duarte) [1748306]
-- [powerpc] powerpc/pseries: Call H_BLOCK_REMOVE when supported (Gustavo Duarte) [1748306]
-- [powerpc] powerpc/pseries: Read TLB Block Invalidate Characteristics (Gustavo Duarte) [1748306]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1761978]
-- [scsi] scsi: hpsa: add missing hunks in reset-patch (Joseph Szczypek) [1761978]
-- [tty] TTY: serial_core, add ->install (Kenneth Yin) [1443152]
-- [scsi] scsi: core: Avoid that SCSI device removal through sysfs triggers a deadlock (Ewan Milne) [1734685]
-- [fs] scsi: sysfs: Introduce sysfs_{un, }break_active_protection() (Ewan Milne) [1734685]
-
-* Tue Oct 29 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1107.el7]
-- [x86] x86/kdump: Reserve extra memory when SME or SEV is active (Kairui Song) [1724887]
-- [block] block: fix blk_recount_segments (Ming Lei) [1762459]
-- [nvme] nvme-pci: Fix a race in controller removal (Gopal Tiwari) [1761998]
-- [char] hpet: Fix output of hpet_mmap kernel parameter (Prarit Bhargava) [1764790]
-- [tools] perf tools: Apply new CPU topology sysfs attributes (Jiri Olsa) [1640900]
-- [tools] perf header: Rename "sibling cores" to "sibling sockets" (Jiri Olsa) [1640900]
-- [tools] perf stat: Support per-die aggregation (Jiri Olsa) [1640900]
-- [tools] perf stat: Support 'percore' event qualifier (Jiri Olsa) [1640900]
-- [tools] perf stat: Factor out aggregate counts printing (Jiri Olsa) [1640900]
-- [tools] perf tools: Add a 'percore' event qualifier (Jiri Olsa) [1640900]
-- [tools] perf header: Add die information in CPU topology (Jiri Olsa) [1640900]
-- [tools] perf cpumap: Retrieve die id information (Jiri Olsa) [1640900]
-- [tools] perf tools: Use sysfs__mountpoint() when reading cpu topology (Jiri Olsa) [1640900]
-- [tools] perf tools: Add numa_topology object (Jiri Olsa) [1640900]
-- [tools] perf header: Fix wrong node write in NUMA_TOPOLOGY feature (Jiri Olsa) [1640900]
-- [tools] perf tools: Add cpu_topology object (Jiri Olsa) [1640900]
-- [tools] perf header: Remove unused 'cpu_nr' field from 'struct cpu_topo' (Jiri Olsa) [1640900]
-- [acpi] ACPICA: Increase total number of possible Owner IDs (Frank Ramsay) [1756339]
-- [fs] SMB3: retry on STATUS_INSUFFICIENT_RESOURCES instead of failing write (Leif Sahlberg) [1764567]
-- [netdrv] mark the intel igc driver as tech preview (David Arcari) [1721615]
-- [netdrv] igc: Clean up unused shadow_vfta pointer (David Arcari) [1721615]
-- [netdrv] igc: Add Rx checksum support (David Arcari) [1721615]
-- [netdrv] igc: Add set_rx_mode support (David Arcari) [1721615]
-- [netdrv] igc: Add SCTP CRC checksumming functionality (David Arcari) [1721615]
-- [netdrv] igc: Add tx_csum offload functionality (David Arcari) [1721615]
-- [netdrv] igc: Remove unneeded PCI bus defines (David Arcari) [1721615]
-- [netdrv] igc: Add NVM checksum validation (David Arcari) [1721615]
-- [netdrv] igc: Remove useless forward declaration (David Arcari) [1721615]
-- [netdrv] ethernet: Delete unnecessary checks before the macro call "dev_kfree_skb" (David Arcari) [1721615]
-- [netdrv] igc: Add more SKUs for i225 device (David Arcari) [1721615]
-- [netdrv] igc: Update the MAC reset flow (David Arcari) [1721615]
-- [netdrv] igc: Remove the unused field from a device specification structure (David Arcari) [1721615]
-- [netdrv] igc: Remove the polarity field from a PHY information structure (David Arcari) [1721615]
-- [netdrv] igc: Prefer pcie_capability_read_word() (David Arcari) [1721615]
-- [netdrv] igc: Cleanup the redundant code (David Arcari) [1721615]
-- [netdrv] igc: Add flow control support (David Arcari) [1721615]
-- [netdrv] igc: Remove the obsolete workaround (David Arcari) [1721615]
-- [netdrv] igc: Clean up unused pointers (David Arcari) [1721615]
-- [netdrv] igc: Fix double definitions (David Arcari) [1721615]
-- [netdrv] igb/igc: warn when fatal read failure happens (David Arcari) [1721615]
-- [netdrv] Revert "mark the intel igc driver as tech preview" (David Arcari) [1721615]
-- [md] dm: Use kzalloc for all structs with embedded biosets/mempools (Mike Snitzer) [1766389]
-
-* Fri Oct 25 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1106.el7]
-- [net] sysfs: Fix mem leak in netdev_register_kobject (Stefano Brivio) [1752690] {CVE-2019-15916}
-- [fs] revert "[fs] cifs: use cifsInodeInfo->open_file_lock while iterating to avoid a panic (Dave Wysochanski) [1757872]
-- [fs] revert "[fs] cifs: add spinlock for the openFileList to cifsInodeInfo (Dave Wysochanski) [1757872]
-- [fs] revert "[fs] cifs: add more spinlocks to pretect against races" (Dave Wysochanski) [1757872]
-- [fs] fix inode leaks on d_splice_alias() failure exits (Miklos Szeredi) [1749390]
-- [mm] percpu: remove spurious lock dependency between percpu and sched (Vladis Dronov) [1744633]
-- [mm] percpu: stop printing kernel addresses (Vladis Dronov) [1744633]
-- [mm] percpu: use chunk scan_hint to skip some scanning (Vladis Dronov) [1744633]
-- [mm] percpu: convert chunk hints to be based on pcpu_block_md (Vladis Dronov) [1744633]
-- [mm] percpu: make pcpu_block_md generic (Vladis Dronov) [1744633]
-- [mm] percpu: use block scan_hint to only scan forward (Vladis Dronov) [1744633]
-- [mm] percpu: remember largest area skipped during allocation (Vladis Dronov) [1744633]
-- [mm] percpu: add block level scan_hint (Vladis Dronov) [1744633]
-- [mm] percpu: set PCPU_BITMAP_BLOCK_SIZE to PAGE_SIZE (Vladis Dronov) [1744633]
-- [mm] percpu: relegate chunks unusable when failing small allocations (Vladis Dronov) [1744633]
-- [mm] percpu: manage chunks based on contig_bits instead of free_bytes (Vladis Dronov) [1744633]
-- [mm] percpu: introduce helper to determine if two regions overlap (Vladis Dronov) [1744633]
-- [mm] percpu: do not search past bitmap when allocating an area (Vladis Dronov) [1744633]
-- [mm] percpu: update free path with correct new free region (Vladis Dronov) [1744633]
-- [mm] mm/percpu: add checks for the return value of memblock_alloc*() (Vladis Dronov) [1744633]
-- [mm] percpu: km: no need to consider pcpu_group_offsets (Vladis Dronov) [1744633]
-- [mm] percpu: use nr_groups as check condition (Vladis Dronov) [1744633]
-- [mm] percpu: stop leaking bitmap metadata blocks (Vladis Dronov) [1744633]
-- [fs] /proc/meminfo: add percpu populated pages count (Vladis Dronov) [1744633]
-- [mm] mm: Allow to kill tasks doing pcpu_alloc() and waiting for pcpu_balance_workfn() (Vladis Dronov) [1744633]
-- [mm] percpu: include linux/sched.h for cond_resched() (Vladis Dronov) [1744633]
-- [mm] percpu: add a schedule point in pcpu_balance_workfn() (Vladis Dronov) [1744633]
-- [mm] percpu: fix iteration to prevent skipping over block (Vladis Dronov) [1744633]
-- [mm] percpu: fix starting offset for chunk statistics traversal (Vladis Dronov) [1744633]
-- [mm] percpu: update header to contain bitmap allocator explanation (Vladis Dronov) [1744633]
-- [mm] percpu: update pcpu_find_block_fit to use an iterator (Vladis Dronov) [1744633]
-- [mm] percpu: use metadata blocks to update the chunk contig hint (Vladis Dronov) [1744633]
-- [mm] percpu: update free path to take advantage of contig hints (Vladis Dronov) [1744633]
-- [mm] percpu: update alloc path to only scan if contig hints are broken (Vladis Dronov) [1744633]
-- [mm] percpu: keep track of the best offset for contig hints (Vladis Dronov) [1744633]
-- [mm] percpu: skip chunks if the alloc does not fit in the contig hint (Vladis Dronov) [1744633]
-- [mm] percpu: add first_bit to keep track of the first free in the bitmap (Vladis Dronov) [1744633]
-- [mm] percpu: introduce bitmap metadata blocks (Vladis Dronov) [1744633]
-- [mm] percpu: replace area map allocator with bitmap (Vladis Dronov) [1744633]
-- [mm] percpu: generalize bitmap (un)populated iterators (Vladis Dronov) [1744633]
-- [mm] percpu: increase minimum percpu allocation size and align first regions (Vladis Dronov) [1744633]
-- [mm] percpu: introduce nr_empty_pop_pages to help empty page accounting (Vladis Dronov) [1744633]
-- [mm] percpu: change the number of pages marked in the first_chunk pop bitmap (Vladis Dronov) [1744633]
-- [mm] percpu: combine percpu address checks (Vladis Dronov) [1744633]
-- [mm] percpu: modify base_addr to be region specific (Vladis Dronov) [1744633]
-- [mm] percpu: setup_first_chunk rename schunk/dchunk to chunk (Vladis Dronov) [1744633]
-- [mm] percpu: end chunk area maps page aligned for the populated bitmap (Vladis Dronov) [1744633]
-- [mm] percpu: unify allocation of schunk and dchunk (Vladis Dronov) [1744633]
-- [mm] percpu: setup_first_chunk remove dyn_size and consolidate logic (Vladis Dronov) [1744633]
-- [mm] percpu: remove has_reserved from pcpu_chunk (Vladis Dronov) [1744633]
-- [mm] percpu: introduce start_offset to pcpu_chunk (Vladis Dronov) [1744633]
-- [mm] percpu: setup_first_chunk enforce dynamic region must exist (Vladis Dronov) [1744633]
-- [mm] percpu: update the header comment and pcpu_build_alloc_info comments (Vladis Dronov) [1744633]
-- [mm] percpu: expose pcpu_nr_empty_pop_pages in pcpu_stats (Vladis Dronov) [1744633]
-- [mm] percpu: change the format for percpu_stats output (Vladis Dronov) [1744633]
-- [mm] percpu: pcpu-stats change void buffer to int buffer (Vladis Dronov) [1744633]
-- [mm] percpu: fix static checker warnings in pcpu_destroy_chunk (Vladis Dronov) [1744633]
-- [mm] percpu: fix early calls for spinlock in pcpu_stats (Vladis Dronov) [1744633]
-- [mm] percpu: resolve err may not be initialized in pcpu_alloc (Vladis Dronov) [1744633]
-- [mm] percpu: add tracepoint support for percpu memory (Vladis Dronov) [1744633]
-- [mm] percpu: expose statistics about percpu memory via debugfs (Vladis Dronov) [1744633]
-- [mm] percpu: migrate percpu data structures to internal header (Vladis Dronov) [1744633]
-- [mm] percpu: add missing lockdep_assert_held to func pcpu_free_area (Vladis Dronov) [1744633]
-- [mm] percpu: ensure the requested alignment is power of two (Vladis Dronov) [1744633]
-- [mm] tree wide: use kvfree() than conditional kfree()/vfree() (Vladis Dronov) [1744633]
-- [mm] mm/percpu: use offset_in_page macro (Vladis Dronov) [1744633]
-- [mm] percpu: clean up of schunk->mapassignment in pcpu_setup_first_chunk (Vladis Dronov) [1744633]
-- [mm] mm/percpu.c: fix panic triggered by BUG_ON() falsely (Vladis Dronov) [1744633]
-- [mm] mm/percpu.c: fix potential memory leakage for pcpu_embed_first_chunk() (Vladis Dronov) [1744633]
-- [mm] mm/percpu.c: correct max_distance calculation for pcpu_embed_first_chunk() (Vladis Dronov) [1744633]
-- [mm] mm: percpu: use pr_fmt to prefix output (Vladis Dronov) [1744633]
-- [mm] mm: convert printk(KERN_<LEVEL> to pr_<level> (Vladis Dronov) [1744633]
-- [mm] mm: coalesce split strings (Vladis Dronov) [1744633]
-- [mm] mm: convert pr_warning to pr_warn (Vladis Dronov) [1744633]
-- [mm] percpu: use *pbto print bitmaps including cpumasks and nodemasks (Vladis Dronov) [1744633]
-- [mm] percpu: off by one in BUG_ON() (Vladis Dronov) [1744633]
-- [mm] mm/percpu.c: use memblock apis for early memory allocations (Vladis Dronov) [1744633]
-- [mm] percpu: use VMALLOC_TOTAL instead of VMALLOC_END - VMALLOC_START (Vladis Dronov) [1744633]
-- [mm] percpu: fix bootmem error handling in pcpu_page_first_chunk() (Vladis Dronov) [1744633]
-
-* Tue Oct 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1105.el7]
-- [nvme] nvme: Treat discovery subsystems as unique subsystems (Ewan Milne) [1731579]
-- [scsi] scsi: core: Log SCSI command age with errors (Ewan Milne) [1751716]
-- [security] selinux: fix context string corruption in convert_context() (Ondrej Mosnacek) [1759803]
-- [usb] xhci: Prevent deadlock when xhci adapter breaks during init (Torez Smith) [1710090]
-- [scsi] scsi: core: add new RDAC LENOVO/DE_Series device (Ewan Milne) [1699439]
-- [wireless] Correct strange error in Makefiles for building modules in separate directories (Neil Horman) [1753927]
-- [md] dm snapshot: rework COW throttling to fix deadlock (Mike Snitzer) [1758603]
-- [md] dm snapshot: introduce account_start_copy() and account_end_copy() (Mike Snitzer) [1758603]
-- [drm] i915: Stop reconfiguring our shmemfs mountpoint (Vladis Dronov) [1759980]
-- [kernel] perf/core: Fix perf_event_open() vs. execve() race (Jiri Olsa) [1701620] {CVE-2019-3901}
-
-* Thu Oct 17 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1104.el7]
-- [md] raid5: don't set STRIPE_HANDLE to stripe which is in batch list (Nigel Croxon) [1631765 1750287]
-- [kernel] alarmtimer: Use EOPNOTSUPP instead of ENOTSUPP (Vladis Dronov) [1760639]
-- [kernel] alarmtimer: Remove unused but set variable (Vladis Dronov) [1760639]
-- [x86] efi/x86: do not clean dummy variable in kexec path (Bhupesh Sharma) [1707669]
-- [cpuidle] cpuidle-haltpoll: return -ENODEV on modinit failure (Marcelo Tosatti) [1756843]
-- [x86] perf/x86/amd: Change/fix NMI latency mitigation to use a timestamp (David Arcari) [1730884]
-- [infiniband] RDMA/bnxt_re: Fix stack-out-of-bounds in bnxt_qplib_rcfw_send_message (Selvin Xavier) [1629037]
-- [infiniband] RDMA/bnxt_re: Increase depth of control path command queue (Selvin Xavier) [1629037]
-- [x86] x86/efi/pti: In __load_cr3(), EFI PGD has no shadow (Lenny Szubowicz) [1750767]
-- [char] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable (Prarit Bhargava) [1660800]
-
-* Mon Oct 14 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1103.el7]
-- [fs] xfs: fix missing ILOCK unlock when xfs_setattr_nonsize fails due to EDQUOT (Bill O'Donnell) [1751468]
-- [fs] xfs: Fix deadlock between AGI and AGF with RENAME_WHITEOUT (Brian Foster) [1759117]
-- [fs] binfmt_elf: switch to new creds when switching to new mm (Vladis Dronov) [1700360] {CVE-2019-11190}
-- [fs] revert "[fs] nfsd: Implement the COPY call" ("J. Bruce Fields") [1688067]
-- [fs] fs: do not fall back to splice in copy_file_range ("J. Bruce Fields") [1688067]
-- [fs] proc/sysctl: don't return ENOMEM on lookup when a table is unregistering (Carlos Maiolino) [1752099]
-- [fs] proc: Fix proc_sys_prune_dcache to hold a sb reference (Carlos Maiolino) [1752099]
-- [fs] proc/sysctl: Don't grab i_lock under sysctl_lock. (Carlos Maiolino) [1752099]
-- [fs] proc/sysctl: prune stale dentries during unregistering (Carlos Maiolino) [1752099]
-- [kvm] kvm: x86: always expose VIRT_SSBD to guests (Eduardo Habkost) [1744281]
-- [kvm] kvm: x86: fix reporting of AMD speculation bug CPUID leaf (Eduardo Habkost) [1744281]
-- [md] dm crypt: don't decrease device limits (Mike Snitzer) [1656103]
-- [netdrv] cxgb4: RHEL-only disable device dump (Jonathan Toppins) [1708513]
-- [s390] s390/cmf: set_schib_wait add timeout (Philipp Rudo) [1759508]
-- [s390] s390: add support for IBM z15 machines (Philipp Rudo) [1758627]
-- [tools] perf callchain: Honour the ordering of PERF_CONTEXT_{USER, KERNEL, etc} (Michael Petlan) [1758046]
-- [tools] perf callchain: Stop validating callchains by the max_stack sysctl (Michael Petlan) [1758046]
-- [tools] perf tools: Separate accounting of contexts and real addresses in a stack trace (Michael Petlan) [1758046]
-- [netdrv] net/ibmvnic: prevent more than one thread from running in reset (Steve Best) [1759809]
-- [netdrv] net/ibmvnic: unlock rtnl_lock in reset so linkwatch_event can run (Steve Best) [1759809]
-- [netdrv] ibmvnic: Warn unknown speed message only when carrier is present (Steve Best) [1759809]
-
-* Fri Oct 11 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1102.el7]
-- [netdrv] net/mlx5e: Fix number of vports for ingress ACL configuration (Alaa Hleihel) [1758857]
-- [netdrv] net/mlx5: E-Switch, Split VF and special vports for offloads mode (Alaa Hleihel) [1758857]
-- [rtc] rtc: opal: Fix OPAL RTC driver OPAL_BUSY loops (Alexey Klimov) [1752968]
-- [powerpc] powerpc/powernv: define a standard delay for OPAL_BUSY type retry loops (Alexey Klimov) [1752968]
-- [rtc] rtc-opal: Fix handling of firmware error codes, prevent busy loops (Alexey Klimov) [1752968]
-- [powerpc] powerpc/powernv: Only delay opal_rtc_read() retry when necessary (Alexey Klimov) [1752968]
-- [scsi] lpfc: Fix wrong lockdep assertion (Dick Kennedy) [1752570]
-- [netdrv] iavf: fix MAC address setting for VFs when filter is rejected (Stefan Assmann) [1698052]
-- [netdrv] iavf: allow permanent MAC address to change (Stefan Assmann) [1698052]
-- [x86] x86/stacktrace: Prevent access_ok() warnings in arch_stack_walk_user() (Jerome Marchand) [1757641]
-- [netdrv] i40e: clear __I40E_VIRTCHNL_OP_PENDING on invalid min Tx rate (Stefan Assmann) [1746636]
-- [kernel] timer: don't let base->timer_jiffies go backwards (Jan Stancek) [1752885]
-
-* Sat Oct 05 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1101.el7]
-- [tools] tools/power turbostat: fix buffer overrun (Prarit Bhargava) [1710537]
-- [tools] perf top: Fix global-buffer-overflow issue (Michael Petlan) [1757325]
-- [tools] perf top: Always sample time to satisfy needs of use of ordered queuing (Michael Petlan) [1757325]
-- [infiniband] IB/mad: Fix use-after-free in ib mad completion handling (Kamal Heib) [1748453]
-- [nvme] nvme: introduce NVME_QUIRK_IGNORE_DEV_SUBNQN (David Milburn) [1754940]
-- [netdrv] i40e: Add support for X710 device (Stefan Assmann) [1711843]
-- [watchdog] watchdog: iTCO: Add support for Cannon Lake PCH iTCO (Alexander Beregalov) [1711811]
-- [i2c] i2c: i801: Use iTCO version 6 in Cannon Lake PCH and beyond (Alexander Beregalov) [1711811]
-- [i2c] i2c: i801: Restore the presence state of P2SB PCI device after reading BAR (Alexander Beregalov) [1711811]
-- [tools] perf header: Assign proper ff->ph in perf_event__synthesize_features() (Michael Petlan) [1705531]
-- [kernel] sched/fair: Fix low cpu usage with high throttling by removing expiration of cpu-local slices (Phil Auld) [1752136]
-- [pci] PCI: hv: Avoid use of hv_pci_dev->pci_slot after freeing it (Mohammed Gamal) [1737567]
-- [pci] hv: Use bytes 4 and 5 from instance ID as the PCI domain numbers (Mohammed Gamal) [1634251]
-- [pci] hv: Detect and fix Hyper-V PCI domain number collision (Mohammed Gamal) [1634251]
-- [pci] hv: Serialize the present and eject work items (Mohammed Gamal) [1634251]
-- [scsi] scsi: qla2xxx: Use correct size in call to dma_free_coherent() in qla2400_sp_unmap() (Himanshu Madhani) [1668767]
-- [kernel] kernel/panic.c: Fix TAINT_UNSAFE_SMP comment (Prarit Bhargava) [1731549]
-
-* Tue Oct 01 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1100.el7]
-- [virt] KVM: coalesced_mmio: add bounds checking (Bandan Das) [1746798] {CVE-2019-14821}
-- [iommu] iommu/amd: Flush old domains in kdump kernel (Jerry Snitselaar) [1738735]
-- [iommu] Revert "iommu/amd: Suppress IO_PAGE_FAULTs in kdump kernel" (Jerry Snitselaar) [1738735]
-- [tools] perf script: Fix crash with printing mixed trace point and other events (Michael Petlan) [1741743]
-- [kvm] kvm/x86: Move MSR_IA32_ARCH_CAPABILITIES to array emulated_msrs (Paul Lai) [1708465]
-- [kvm] kvm: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts (Paul Lai) [1708465]
-- [kvm] kvm: vmx: Tell the nested hypervisor to skip L1D flush on vmentry (Paul Lai) [1708465]
-- [kvm] kvm: vmx: support MSR_IA32_ARCH_CAPABILITIES as a feature MSR (Paul Lai) [1708465]
-- [kvm] kvm: x86: Introduce kvm_get_msr_feature() (Paul Lai) [1708465]
-- [kvm] kvm: x86: Add a framework for supporting MSR-based features (Paul Lai) [1708465]
-- [hv] hv: vmbus: Offload the handling of channels to two workqueues (Mohammed Gamal) [1747352]
-- [hv] hv: vmbus: Use cpumask_var_t for on-stack cpu mask (Mohammed Gamal) [1747352]
-- [hv] hv: vmbus: Fix the offer_in_progress in vmbus_process_offer() (Mohammed Gamal) [1747352]
-- [drm] drm/nouveau/kms/nv50-: Don't create MSTMs for eDP connectors (Lyude Paul) [1728383]
-- [x86] x86/acpi: Prevent LAPIC id 0xff from being accounted (David Arcari) [1755008]
-- [x86] perf/x86/intel: Fix spurious NMI on fixed counter (Michael Petlan) [1755134]
-- [x86] perf/x86/intel: Fix race in intel_pmu_disable_event() (Michael Petlan) [1755134]
-
-* Wed Sep 25 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1099.el7]
-- [char] tpm: tpm_try_transmit() refactor error flow (Jerry Snitselaar) [1731225]
-- [powerpc] powerpc/pseries: correctly track irq state in default idle (Steve Best) [1751970]
-- [md] raid5 improve too many read errors msg by adding limits (Nigel Croxon) [1700665]
-- [netdrv] ixgbe: Prevent u8 wrapping of ITR value to something less than 10us (Ken Cox) [1750856]
-- [kernel] sched: Skip double execution of pick_next_task_fair() (Phil Auld) [1750819]
-
-* Mon Sep 23 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1098.el7]
-- [powerpc] powerpc/rtas: use device model APIs and serialization during LPM (Steve Best) [1742885]
-- [nvme] nvme: don't ask blk-mq to handle timed-out request (Ming Lei) [1750202]
-- [block] blk-mq: mark request as REQ_TIMEOUT when .timeout() is called (Ming Lei) [1750202]
-- [block] blk-mq: introduce blk_mq_clear_rq_complete() (Ming Lei) [1750202]
-- [block] blk-mq: remove 'sync' argument from __blk_mq_complete_request() (Ming Lei) [1750202]
-
-* Sat Sep 21 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1097.el7]
-- [tools] perf version: Fix segfault due to missing OPT_END() (Michael Petlan) [1750687]
-- [net] vsock: split dwork to avoid reinitializations (Artem Savkov) [1650408]
-- [fs] fscache: Don't use a constructor function on the slab allocator (David Howells) [1739996]
-- [tools] tools/power turbostat: Fix Haswell Core systems (Prarit Bhargava) [1715723]
-- [netdrv] net/ibmvnic: Fix missing { in __ibmvnic_reset (Steve Best) [1751815]
-- [netdrv] net/ibmvnic: free reset work of removed device from queue (Steve Best) [1751815]
-- [netdrv] ibmvnic: Do not process reset during or after device removal (Steve Best) [1751815]
-- [netdrv] ice: add missing ndo_size (Jonathan Toppins) [1752586]
-- [kernel] tracing: Fix wraparound problems in "uptime" trace clock (Aristeu Rozanski) [1507122]
-- [netdrv] e1000e: add workaround for possible stalled packet (Ken Cox) [1711234 1668912]
-- [scsi] virtio_scsi: support multi hw queue of blk-mq (Ming Lei) [1752305]
-- [drm] drm/edid: Fix a missing-check bug in drm_load_edid_firmware() (Lyude Paul) [1732709] {CVE-2019-12382}
-- [netdrv] e1000e: PCIm function state support (Ken Cox) [1689436]
-
-* Fri Sep 20 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1096.el7]
-- [net] ip_gre: fix parsing gre header in ipgre_err (Guillaume Nault) [1750474]
-- [net] ipip: only increase err_count for some certain type icmp in ipip_err (Guillaume Nault) [1750474]
-- [net] tunnels: Don't apply GRO to multiple layers of encapsulation. (Guillaume Nault) [1750474]
-- [net] ip_tunnel: fix ip tunnel lookup in collect_md mode (Guillaume Nault) [1750474]
-- [net] netfilter: ipset: Fix rename concurrency with listing (Stefano Brivio) [1751322]
-- [net] ipv4: Return error for RTA_VIA attribute (Stefano Brivio) [1751301]
-- [net] netem: fix backlog accounting for corrupted GSO frames (Davide Caratti) [1750670]
-- [net] netem: fix skb length BUG_ON in __skb_to_sgvec (Davide Caratti) [1750670]
-- [net] sched: act_sample: fix psample group handling on overwrite (Davide Caratti) [1750670]
-- [net] sched: don't dereference a->goto_chain to read the chain index (Davide Caratti) [1750670]
-- [net] l2tp: prevent pppol2tp_connect() from creating kernel sockets (Guillaume Nault) [1749931]
-- [net] l2tp: check sockaddr length in pppol2tp_connect() (Guillaume Nault) [1749931]
-- [net] l2tp: do not accept arbitrary sockets (Guillaume Nault) [1749931]
-- [net] l2tp: cast l2tp traffic counter to unsigned (Guillaume Nault) [1749931]
-- [net] l2tp: don't mask errors in pppol2tp_getsockopt() (Guillaume Nault) [1749931]
-- [net] l2tp: don't mask errors in pppol2tp_setsockopt() (Guillaume Nault) [1749931]
-- [net] l2tp: Correctly return -EBADF from pppol2tp_getname. (Guillaume Nault) [1749931]
-- [net] sctp: use transport pf_retrans in sctp_do_8_2_transport_strike (Xin Long) [1750092]
-- [net] sctp: fix the transport error_count check (Xin Long) [1750092]
-- [net] sctp: fix warning "NULL check before some freeing functions is not needed" (Xin Long) [1750092]
-- [net] sctp: change to hold sk after auth shkey is created successfully (Xin Long) [1750092]
-- [net] sctp: Free cookie before we memdup a new one (Xin Long) [1750092]
-- [net] Fix memory leak in sctp_process_init (Xin Long) [1750092]
-- [net] sctp: Check address length before reading address family (Xin Long) [1750092]
-- [net] sctp: initialize _pad of sockaddr_in before copying to user memory (Xin Long) [1750092]
-- [net] sctp: not copy sctp_sock pd_lobby in sctp_copy_descendant (Xin Long) [1750092]
-- [net] sctp: Replace use of sockets_allocated with specified macro. (Xin Long) [1750092]
-- [net] ipv6: fix neighbour resolution with raw socket (Stefano Brivio) [1724586]
-- [net] ipv6: constify rt6_nexthop() (Stefano Brivio) [1724586]
-
-* Thu Sep 19 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1095.el7]
-- [scsi] scsi: fnic: fix msix interrupt allocation (Govindarajulu Varadarajan) [1745053]
-- [scsi] scsi: fnic: print port speed only at driver init or speed change (Govindarajulu Varadarajan) [1745053]
-- [nvme] nvmet: fix setting ns queue's segment boundary (David Milburn) [1741853]
-- [nvme] nvmet: set loop queue's segment boundary mask as PAGE_SIZE - 1 (David Milburn) [1741853]
-- [nvme] nvme: update comment to make the code easier to read (David Milburn) [1741853]
-- [nvme] nvmet: Fix use-after-free bug when a port is removed (David Milburn) [1741853]
-- [nvme] nvmet: return a specified error it subsys_alloc fails (David Milburn) [1741853]
-- [nvme] nvmet: add safety check for subsystem lock during nvmet_ns_changed (David Milburn) [1741853]
-- [nvme] nvmet: use unlikely for req status check (David Milburn) [1741853]
-- [nvme] nvmet: support fabrics sq flow control (David Milburn) [1741853]
-- [nvme] nvme-loop: kill timeout handler (David Milburn) [1741853]
-- [netdrv] i40e: fix retrying in i40e_aq_get_phy_capabilities (Stefan Assmann) [1720236]
-- [netdrv] i40e: Persistent LLDP support (Stefan Assmann) [1720236]
-- [netdrv] i40e: Remove function i40e_update_dcb_config() (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix crash caused by stress setting of VF MAC addresses (Stefan Assmann) [1720236]
-- [netdrv] i40e: reset veb.tc_stats when resetting veb.stats (Stefan Assmann) [1720236]
-- [netdrv] i40e: Update FW API version to 1.9 (Stefan Assmann) [1720236]
-- [netdrv] i40e: Add drop mode parameter to set mac config (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix shifts of signed values (Stefan Assmann) [1720236]
-- [netdrv] i40e: add check on i40e_configure_tx_ring() return value (Stefan Assmann) [1720236]
-- [netdrv] i40e: Check if transceiver implements DDM before access (Stefan Assmann) [1720236]
-- [netdrv] i40e: reduce stack usage in i40e_set_fc (Stefan Assmann) [1720236]
-- [netdrv] i40e: no need to check return value of debugfs_create functions (Stefan Assmann) [1720236]
-- [netdrv] i40e: Remove unicast log when VF is leaving multicast mode (Stefan Assmann) [1720236]
-- [netdrv] i40e: verify string count matches even on early return (Stefan Assmann) [1720236]
-- [netdrv] i40e: Log info when PF is entering and leaving Allmulti mode (Stefan Assmann) [1720236]
-- [netdrv] i40e: Update visual effect for advertised FEC mode (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix code comments (Stefan Assmann) [1720236]
-- [netdrv] i40e: don't report link up for a VF who hasn't enabled queues (Stefan Assmann) [1720236]
-- [netdrv] i40e: Log disable-fw-lldp flag change by ethtool (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix incorrect ethtool statistics veb and veb.tc_ (Stefan Assmann) [1720236]
-- [netdrv] i40e: Use dev_get_drvdata (Stefan Assmann) [1720236]
-- [netdrv] net: Use skb accessors in network drivers (Stefan Assmann) [1720236]
-- [netdrv] i40e/i40e_virtchnl_pf: Use struct_size() in kzalloc() (Stefan Assmann) [1720236]
-- [netdrv] i40e: update copyright string (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix descriptor count manipulation (Stefan Assmann) [1720236]
-- [netdrv] i40e: missing priorities for any QoS traffic (Stefan Assmann) [1720236]
-- [netdrv] i40e: Add log entry while creating or deleting TC0 (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix incorrect function documentation comment (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix for missing "link modes" info in ethtool (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix 'Unknown bps' in dmesg for 2.5Gb/5Gb speeds (Stefan Assmann) [1720236]
-- [netdrv] i40e: mark expected switch fall-through (Stefan Assmann) [1720236]
-- [netdrv] i40e: Missing response checks in driver when starting/stopping FW LLDP (Stefan Assmann) [1720236]
-- [netdrv] i40e: remove duplicate stat calculation for tx_errors (Stefan Assmann) [1720236]
-- [netdrv] i40e: Check if the BAR size is large enough before writing to registers (Stefan Assmann) [1720236]
-- [netdrv] i40e: Missing response checks in driver when starting/stopping FW LLDP (Stefan Assmann) [1720236]
-- [netdrv] i40e: add input validation for virtchnl handlers (Stefan Assmann) [1720236]
-- [netdrv] i40e: Improve AQ log granularity (Stefan Assmann) [1720236]
-- [netdrv] i40e: Add bounds check for charray (Stefan Assmann) [1720236]
-- [netdrv] i40e: Use signed variable (Stefan Assmann) [1720236]
-- [netdrv] i40e: add constraints for accessing veb array (Stefan Assmann) [1720236]
-- [netdrv] i40e: let untrusted VF to create up to 16 VLANs (Stefan Assmann) [1720236]
-- [netdrv] i40e: add functions stubs to support EEE (Stefan Assmann) [1720236]
-- [netdrv] i40e: Check and set the PF driver state first in i40e_ndo_set_vf_mac (Stefan Assmann) [1720236]
-- [netdrv] i40e: Use LLDP ethertype define ETH_P_LLDP (Stefan Assmann) [1720236]
-- [netdrv] i40e: Memory leak in i40e_config_iwarp_qvlist (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix of memory leak and integer truncation in i40e_virtchnl.c (Stefan Assmann) [1720236]
-- [netdrv] i40e: Use struct_size() in kzalloc() (Stefan Assmann) [1720236]
-- [netdrv] i40e: Revert ShadowRAM checksum calculation change (Stefan Assmann) [1720236]
-- [netdrv] i40e: missing input validation on VF message handling by the PF (Stefan Assmann) [1720236]
-- [netdrv] i40e: Add support for X710 B/P & SFP+ cards (Stefan Assmann) [1720236]
-- [netdrv] i40e: Wrong truncation from u16 to u8 (Stefan Assmann) [1720236]
-- [netdrv] i40e: add num_vectors checker in iwarp handler (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix the typo in adding 40GE KR4 mode (Stefan Assmann) [1720236]
-- [netdrv] i40e: Setting VF to VLAN 0 requires restart (Stefan Assmann) [1720236]
-- [netdrv] i40e: add new pci id for X710/XXV710 N3000 cards (Stefan Assmann) [1720236]
-- [netdrv] i40e: VF's promiscuous attribute is not kept (Stefan Assmann) [1720236]
-- [netdrv] i40e: print PCI vendor and device ID during probe (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix misleading message about promisc setting on un-trusted VF (Stefan Assmann) [1720236]
-- [netdrv] i40e: update version number (Stefan Assmann) [1720236]
-- [netdrv] i40e: remove out-of-range comparisons in i40e_validate_cloud_filter (Stefan Assmann) [1720236]
-- [netdrv] i40e: Further implementation of LLDP (Stefan Assmann) [1720236]
-- [netdrv] i40e: Report advertised link modes on 40GBase_LR4, CR4 and fibre (Stefan Assmann) [1720236]
-- [netdrv] i40e: ShadowRAM checksum calculation change (Stefan Assmann) [1720236]
-- [netdrv] i40e: remove error msg when vf with port vlan tries to remove vlan 0 (Stefan Assmann) [1720236]
-- [netdrv] i40e: change behavior on PF in response to MDD event (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix for allowing too many MDD events on VF (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix misleading error message (Stefan Assmann) [1720236]
-- [netdrv] i40e: Able to add up to 16 MAC filters on an untrusted VF (Stefan Assmann) [1720236]
-- [netdrv] i40e: Report advertised link modes on 40GBASE_SR4 (Stefan Assmann) [1720236]
-- [netdrv] i40e: The driver now prints the API version in error message (Stefan Assmann) [1720236]
-- [netdrv] i40e: Changed maximum supported FW API version to 1.8 (Stefan Assmann) [1720236]
-- [netdrv] i40e: Remove misleading messages for untrusted VF (Stefan Assmann) [1720236]
-- [netdrv] i40e: Update i40e_init_dcb to return correct error (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix for 10G ports LED not blinking (Stefan Assmann) [1720236]
-- [netdrv] i40e: save PTP time before a device reset (Stefan Assmann) [1720236]
-- [netdrv] i40e: don't allow changes to HW VLAN stripping on active port VLANs (Stefan Assmann) [1720236]
-- [netdrv] i40e: Queues are reserved despite "Invalid argument" error (Stefan Assmann) [1720236]
-- [netdrv] i40e: move i40e_xsk_umem function (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix i40e_ptp_adjtime when given a negative delta (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix XDP_REDIRECT/XDP xmit ring cleanup race (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix potential RX buffer starvation for AF_XDP (Stefan Assmann) [1720236]
-- [netdrv] net: bpf: remove XDP_QUERY_XSK_UMEM enumerator (Stefan Assmann) [1720236]
-
-* Wed Sep 18 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1094.el7]
-- [scsi] libiscsi: fall back to sendmsg for slab pages (Oleksandr Natalenko) [1720506]
-- [fs] ext4: do not delete unlinked inode from orphan list on failed truncate (Lukas Czerner) [1747387]
-- [fs] ext4: wait for outstanding dio during truncate in nojournal mode (Lukas Czerner) [1747387]
-- [fs] ext4: fix data corruption caused by overlapping unaligned and aligned IO (Lukas Czerner) [1747387]
-- [fs] ext4: actually request zeroing of inode table after grow (Lukas Czerner) [1747387]
-- [fs] jbd2: check superblock mapped prior to committing (Lukas Czerner) [1747387]
-- [fs] ext4: prohibit fstrim in norecovery mode (Lukas Czerner) [1747387]
-- [fs] ext4: cleanup bh release code in ext4_ind_remove_space() (Lukas Czerner) [1747387]
-- [fs] ext4: brelse all indirect buffer in ext4_ind_remove_space() (Lukas Czerner) [1747387]
-- [fs] ext4: report real fs size after failed resize (Lukas Czerner) [1747387]
-- [fs] ext4: add missing brelse() in add_new_gdb_meta_bg() (Lukas Czerner) [1747387]
-- [fs] ext4: add missing brelse() in add_new_gdb_meta_bg() (Lukas Czerner) [1747387]
-- [fs] ext4: avoid panic during forced reboot due to aborted journal (Lukas Czerner) [1747387]
-- [fs] ext4: avoid panic during forced reboot (Lukas Czerner) [1747387]
-- [fs] ext4: fix NULL pointer dereference while journal is aborted (Lukas Czerner) [1747387]
-- [fs] jbd2: fix invalid descriptor block checksum (Lukas Czerner) [1747387]
-- [fs] jbd2: clear dirty flag when revoking a buffer from an older transaction (Lukas Czerner) [1747387]
-- [fs] jbd2: fix deadlock while checkpoint thread waits commit thread to finish (Lukas Czerner) [1747387]
-- [fs] gfs2: Use async glocks for rename (Robert S Peterson) [1677686]
-- [fs] gfs2: create function gfs2_glock_update_hold_time (Robert S Peterson) [1677686]
-- [fs] gfs2: separate holder for rgrps in gfs2_rename (Robert S Peterson) [1677686]
-- [netdrv] net/mlx5e: Support LAG TX port affinity distribution (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5e: Expose new function for TIS destroy loop (Alaa Hleihel) [1724344]
-- [include] net/mlx5: Add lag_tx_port_affinity capability bit (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5e: Re-work TIS creation functions (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5e: Add device out of buffer counter (Alaa Hleihel) [1724344]
-- [include] net/mlx5: Add support for VNIC_ENV internal rq counter (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Fix the order of fc_stats cleanup (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Add flow counter pool (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Add flow counter bulk infrastructure (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Add flow counter bulk allocation hardware bits and command (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Refactor and optimize flow counter bulk query (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Move flow counters data structures from flow steering header (Alaa Hleihel) [1724344]
-- [netdrv] Add missing ndo_size parameter (Jonathan Toppins) [1715376]
-- [nvme] nvme: Revert Simplify metadata setup (David Milburn) [1746946]
-- [scsi] hpsa: bump driver version (Joseph Szczypek) [1741355]
-- [scsi] scsi: hpsa: remove printing internal cdb on tag collision (Joseph Szczypek) [1741355]
-- [scsi] scsi: hpsa: correct scsi command status issue after reset (Joseph Szczypek) [1741355]
-- [vhost] vhost: make sure log_num < in_num (Eugenio Perez) [1750880] {CVE-2019-14835}
-
-* Mon Sep 16 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1093.el7]
-- [wireless] ath9k_htc: use non-QoS NDP for AP probing (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [wireless] wil6210: compile with new cfg80211 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [wireless] rtw88: compile with new mac80211 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [wireless] mac80211: call rate_control_send_low() internally (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [wireless] Backport iwlwifi driver from linux-5.3-rc5 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [net] Backport mac80211 from linux-5.3-rc5 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [net] Backport wireless core from linux-5.3-rc5 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [net] devlink: fix double lock on devlink register dump (Paolo Abeni) [1750664]
-- [net] fix ifindex collision during namespace removal (Paolo Abeni) [1750810]
-- [net] neigh: fix use-after-free read in pneigh_get_next (Paolo Abeni) [1750810]
-- [net] gro: fix use-after-free read in napi_gro_frags() (Paolo Abeni) [1750810]
-- [net] openvswitch: fix csum updates for MPLS actions (Eelco Chaudron) [1749269]
-- [net] bridge: mcast: don't delete permanent entries when fast leave is enabled (Hangbin Liu) [1749658]
-- [net] bridge: delete local fdb on device init failure (Hangbin Liu) [1749658]
-- [net] bridge: stp: don't cache eth dest pointer before skb pull (Hangbin Liu) [1749658]
-- [net] bridge: mcast: fix stale ipv6 hdr pointer when handling v6 query (Hangbin Liu) [1749658]
-- [net] bridge: mcast: fix stale nsrcs pointer in igmp3/mld2 report handling (Hangbin Liu) [1749658]
-- [net] bridge: fix per-port af_packet sockets (Hangbin Liu) [1749658]
-- [net] bridge: multicast: use rcu to access port list from br_multicast_start_querier (Hangbin Liu) [1749658]
-- [net] bridge: Fix ethernet header pointer before check skb forwardable (Hangbin Liu) [1749658]
-- [net] bridge: fix early call to br_stp_change_bridge_id and plug newlink leaks (Hangbin Liu) [1749658]
-- [net] bridge: add vlan_tunnel to bridge port policies (Hangbin Liu) [1749658]
-- [net] bridge: fix returning of vlan range op errors (Hangbin Liu) [1749658]
-- [net] tcp: reset sk_send_head in tcp_write_queue_purge (Marcelo Leitner) [1748358] {CVE-2019-15239}
-- [net] netfilter: nf_log: don't hold nf_log_mutex during user access (Florian Westphal) [1749777]
-- [net] netfilter: nf_queue: augment nfqa_cfg_policy (Florian Westphal) [1749777]
-- [net] netfilter: nf_tables: add missing netlink attrs to policies (Florian Westphal) [1749777]
-- [net] netfilter: IDLETIMER: be syzkaller friendly (Florian Westphal) [1749777]
-- [net] netfilter: x_tables: fix missing timer initialization in xt_LED (Florian Westphal) [1749777]
-- [net] netfilter: xt_RATEEST: acquire xt_rateest_mutex for hash insert (Florian Westphal) [1749777]
-- [net] netfilter: xt_bpf: add overflow checks (Florian Westphal) [1749777]
-- [net] netfilter: x_tables: avoid stack-out-of-bounds read in xt_copy_counters_from_user (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: fix incorrect nf_ct_put during hash resize (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: make it safer when updating ct->status (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: Fix regression in CTA_STATUS processing (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: fix deadlock due to acquire _expect_lock twice (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: drop the incorrect cthelper module request (Florian Westphal) [1749777]
-- [net] netfilter: nfnetlink_queue: reject verdict request from different portid (Florian Westphal) [1749777]
-- [net] nf_conntrack: avoid kernel pointer value leak in slab name (Florian Westphal) [1749777]
-- [net] netfilter: nfnetlink: don't probe module if it exists (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: put back references to master ct and expect objects (Florian Westphal) [1749777]
-- [net] netfilter: xt_socket: fix a stack corruption bug (Florian Westphal) [1749777]
-- [net] ifb: add multiqueue operation (Davide Caratti) [1746626]
-- [net] netfilter: ipset: Copy the right MAC address in bitmap:ip, mac and hash:ip, mac sets (Stefano Brivio) [1723609]
-- [net] netfilter: ipset: Actually allow destination MAC address for hash:ip, mac sets too (Stefano Brivio) [1723609]
-- [net] ipset: Fix memory accounting for hash types on resize (Stefano Brivio) [1711520]
-- [net] uapi: Add 802.11 Preauthentication to if_ether (Ivan Vecera) [1748261]
-
-* Mon Sep 16 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1092.el7]
-- [kernel] sched/core: Use TASK_ON_RQ_MIGRATING in __migrate_swap_task (Phil Auld) [1616140]
-- [kernel] sched/fair: Remove double_lock_balance() from load_balance() (Phil Auld) [1616140]
-- [kernel] sched/fair: Remove double_lock_balance() from active_load_balance_cpu_stop() (Phil Auld) [1616140]
-- [kernel] sched: Remove double_rq_lock() from __migrate_task() (Phil Auld) [1616140]
-- [kernel] sched: Fix CACHE_HOT_BUDY condition (Phil Auld) [1616140]
-- [kernel] sched: Clean up the task_hot() function (Phil Auld) [1616140]
-- [kernel] sched/deadline: Make update_curr_dl() more accurate (Phil Auld) [1616140]
-- [kernel] sched/deadline: Fix the intention to re-evalute tick dependency for offline CPU (Phil Auld) [1616140]
-- [kernel] sched/deadline: Fix switched_from_dl() warning (Phil Auld) [1616140]
-- [kernel] sched/deadline: Fix missing clock update (Phil Auld) [1616140]
-- [kernel] sched/deadline: Fix switching to -deadline (Phil Auld) [1616140]
-- [scsi] scsi: qla2xxx: Fix driver reload for ISP82xx (Himanshu Madhani) [1743185]
-- [scsi] scsi: qla2xxx: Fix flash read for Qlogic ISPs (Himanshu Madhani) [1743185]
-- [scsi] scsi: Ensure SCSI EH wakeup in when host_failed == host_busy (Ewan Milne) [1668869]
-- [netdrv] virtio_net: fix error return code in virtnet_probe() (Eugenio Perez) [1589888]
-- [netdrv] net_failover: fix typo in net_failover_slave_register() (Eugenio Perez) [1589888]
-- [netdrv] net_failover: Use netdev_features_t instead of u32 (Eugenio Perez) [1589888]
-- [documentation] [netdrv] virtio_net: Extend virtio to use VF datapath when available (Eugenio Perez) [1589888]
-- [uapi] [netdrv] virtio_net: Introduce VIRTIO_NET_F_STANDBY feature bit (Eugenio Perez) [1589888]
-- [netdrv] Introduce net_failover driver (Eugenio Perez) [1589888]
-- [net] Introduce generic failover module (Eugenio Perez) [1589888]
-
-* Fri Sep 13 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1091.el7]
-- [sound] ALSA: hda: Initialize power_state field properly (Jaroslav Kysela) [1750735]
-- [fs] userfaultfd_release: always remove uffd flags and clear vm_userfaultfd_ctx (Alex Gladkov) [1749766]
-- [security] KEYS: add missing permission check for request_key() destination (Vladis Dronov) [1543262] {CVE-2017-17807}
-- [security] KEYS: remove unnecessary get/put of explicit dest_keyring (Vladis Dronov) [1543262] {CVE-2017-17807}
-- [security] KEYS: Strip trailing spaces (Vladis Dronov) [1543262] {CVE-2017-17807}
-- [iommu] iommu/amd: Add support for X2APIC IOMMU interrupts (Suravee Suthikulpanit) [1734847]
-- [nvme] nvme-scsi: updating struct nvme_ctrl (Gopal Tiwari) [1749524]
-- [powercap] powercap/intel_rapl: add support for ICX (Steve Best) [1749265]
-- [nvme] nvmet-rdma: fix null dereference under heavy load (David Milburn) [1737251]
-- [nvme] nvmet-rdma: Add unlikely for response allocated check (David Milburn) [1737251]
-- [nvme] nvme-core: Fix extra device_put() call on error path (David Milburn) [1737251]
-- [nvme] nvme: avoid that deleting a controller triggers a circular locking complaint (David Milburn) [1737251]
-- [nvme] nvme: introduce a helper function for controller deletion (David Milburn) [1737251]
-- [nvme] nvme: unexport nvme_delete_ctrl_sync() (David Milburn) [1737251]
-- [nvme] nvme-rdma: fix possible use-after-free in connect error flow (David Milburn) [1737251]
-- [nvme] nvme-rdma: fix a NULL deref when an admin connect times out (David Milburn) [1737251]
-- [nvme] nvme: remove the .stop_ctrl callout (David Milburn) [1737251]
-- [hwtracing] intel_th: pci: Add support for another Lewisburg PCH (Jiri Olsa) [1714483]
-- [md] block: trace completion of all bios (Xiao Ni) [1741466]
-- [md] md/raid1, raid10: add blktrace records when IO is delayed (Xiao Ni) [1741466]
-- [md] md/bitmap: add blktrace event for writes to the bitmap (Xiao Ni) [1741466]
-- [md] md: add block tracing for bio_remapping (Xiao Ni) [1741466]
-- [md] md: add blktrace event for writes to superblock (Xiao Ni) [1741466]
-- [x86] efi/x86: drop task_lock() from efi_switch_mm() (Scott Wood) [1749081]
-- [scsi] scsi: qla2xxx: cleanup trace buffer initialization (Himanshu Madhani) [1749039]
-- [scsi] scsi: qla2xxx: qla2x00_alloc_fw_dump: set ha->eft (Himanshu Madhani) [1749039]
-
-* Tue Sep 10 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1090.el7]
-- [net] inet: switch IP ID generator to siphash (Xin Long) [1733067] {CVE-2019-10638}
-- [lib] siphash: add cryptographically secure PRF (Xin Long) [1733067] {CVE-2019-10638}
-- [fs] dcache: allow word-at-a-time name hashing with big-endian CPUs (Xin Long) [1733067] {CVE-2019-10638}
-- [net] tun: allow positive return values on dev_get_valid_name() call (Xin Long) [1723645] {CVE-2018-7191}
-- [net] tun: call dev_get_valid_name() before register_netdevice() (Xin Long) [1723645] {CVE-2018-7191}
-- [net] xfrm/xfrm_policy: fix dst dev null pointer dereference in collect_md mode (Hangbin Liu) [1725596]
-- [net] ipv4/icmp: fix rt dst dev null pointer dereference (Hangbin Liu) [1725596]
-- [net] ipv6_gre: Fix GRO to work on IPv6 over GRE tap (Hangbin Liu) [1725596]
-- [net] ip6_gre: add ip6 gre and gretap collect_md mode (Hangbin Liu) [1725596]
-- [net] ip6_gre: reload ipv6h in prepare_ip6gre_xmit_ipv6 (Hangbin Liu) [1725596]
-- [net] ip6_gre: Refactor ip6gre xmit codes (Hangbin Liu) [1725596]
-- [net] gre6: use log_ecn_error module parameter in ip6_tnl_rcv() (Hangbin Liu) [1725596]
-- [net] ip6_tunnel: collect_md xmit: Use ip_tunnel_key's provided src address (Hangbin Liu) [1725596]
-- [net] adding missing rcu_read_unlock in ipxip6_rcv (Hangbin Liu) [1725596]
-- [net] ip6_tunnel: fix ip6 tunnel lookup in collect_md mode (Hangbin Liu) [1725596]
-- [net] ip6_tunnel: fix potential issue in __ip6_tnl_rcv (Hangbin Liu) [1725596]
-- [net] ip6_tunnel: add collect_md mode to IPv6 tunnels (Hangbin Liu) [1725596]
-- [net] sched: fold tcf_block_cb_call() into tc_setup_cb_call() (Ivan Vecera) [1660900]
-- [net] sched: Remove egdev mechanism (Ivan Vecera) [1660900]
-- [net] fix IPv6 prefix route residue (Stefano Brivio) [1725990]
-- [net] vxlan: Don't assume linear buffers in error handler (Stefano Brivio) [1720150]
-- [net] geneve: Don't assume linear buffers in error handler (Stefano Brivio) [1720150]
-- [net] ipv6: Return error for RTA_VIA attribute (Stefano Brivio) [1725992]
-- [net] netlink: fix missing newline in the implementation of NL_SET_ERR_MSG (Ivan Vecera) [1724867]
-- [net] Make RX-FCS and HW GRO mutually exclusive (Ivan Vecera) [1745672]
-- [net] Make RX-FCS and LRO mutually exclusive (Ivan Vecera) [1745672]
-- [net] af_unix: split 'u->readlock' into two: 'iolock' and 'bindlock' (Vladis Dronov) [1582552]
-- [net] ppp: Remove direct skb_queue_head list pointer access. (Ivan Vecera) [1746914]
-- [net] fq: support filtering a given tin (Ivan Vecera) [1746900]
-- [net] inet: frags: re-introduce skb coalescing for local delivery (Guillaume Nault) [1632906]
-- [net] fib_rules: Added NLM_F_EXCL support to fib_nl_newrule (Hangbin Liu) [1700691]
-- [net] tun: use socket locks for sk_{attach, detatch}_filter (Paolo Abeni) [1725202]
-- [net] introduce lockdep_is_held and update various places to use it (Paolo Abeni) [1725202]
-- [net] tun, bpf: fix suspicious RCU usage in tun_{attach, detach}_filter (Paolo Abeni) [1725202]
-
-* Mon Sep 09 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1089.el7]
-- [fs] xfs: don't crash on null attr fork xfs_bmapi_read (Bill O'Donnell) [1719096]
-- [fs] gfs2: Clean up freeing struct gfs2_sbd (Robert S Peterson) [1737087]
-- [fs] dlm: Don't swamp the CPU with callbacks queued (Robert S Peterson) [1072066]
-- [fs] fs/proc/proc_sysctl.c: fix the default values of i_uid/i_gid on /proc/sys inodes (Alex Gladkov) [1713642]
-- [fs] dquot: For now explicitly don't support filesystems outside of init_user_ns (Alex Gladkov) [1713642]
-- [security] selinux: allow context mounts on tmpfs, ramfs, devpts within user namespaces (Alex Gladkov) [1713642]
-- [fs] vfs: Use upper filesystem inode in bprm_fill_uid() (Alex Gladkov) [1713642]
-- [fs] vfs: open() with O_CREAT should not create inodes with unknown ids (Alex Gladkov) [1713642]
-- [fs] mount: Prevent MNT_DETACH from disconnecting locked mounts (Alex Gladkov) [1713642]
-- [fs] fs: Update i_[ug]id_(read|write) to translate relative to s_user_ns (Alex Gladkov) [1713642]
-- [fs] quota: Ensure qids map to the filesystem (Alex Gladkov) [1713642]
-- [fs] vfs: Don't create inodes with a uid or gid unknown to the vfs (Alex Gladkov) [1713642]
-- [fs] vfs: Don't modify inodes with a uid or gid unknown to the vfs (Alex Gladkov) [1713642]
-- [fs] cred: Reject inodes with invalid ids in set_create_file_as() (Alex Gladkov) [1713642]
-- [fs] fs: Check for invalid i_uid in may_follow_link() (Alex Gladkov) [1713642]
-- [fs] vfs: Verify acls are valid within superblock's s_user_ns. (Alex Gladkov) [1713642]
-- [fs] userns: Handle -1 in k[ug]id_has_mapping when !CONFIG_USER_NS (Alex Gladkov) [1713642]
-- [fs] fs: Refuse uid/gid changes which don't map into s_user_ns (Alex Gladkov) [1713642]
-- [fs] selinux: Add support for unprivileged mounts from user namespaces (Alex Gladkov) [1713642]
-- [fs] fs: Use correct xattr length (Alex Gladkov) [1713642]
-- [fs] capabilities: Use d_find_any_alias() instead of d_find_alias() (Alex Gladkov) [1713642]
-- [fs] commoncap: Handle memory allocation failure. (Alex Gladkov) [1713642]
-- [fs] evm: Don't update hmacs in user ns mounts (Alex Gladkov) [1713642]
-- [fs] vfs: Don't allow changing the link count of an inode with an invalid uid or gid (Alex Gladkov) [1713642]
-- [fs] namei: permit linking with CAP_FOWNER in userns (Alex Gladkov) [1713642]
-- [fs] fs: Allow superblock owner to replace invalid owners of inodes (Alex Gladkov) [1713642]
-- [fs] fs: Allow superblock owner to access do_remount_sb() (Alex Gladkov) [1713642]
-- [fs] capabilities: Allow privileged user in s_user_ns to set security.* xattrs (Alex Gladkov) [1713642]
-- [fs] fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw filesystems (Alex Gladkov) [1713642]
-- [fs] fuse: Allow fully unprivileged mounts (Alex Gladkov) [1713642]
-- [fs] fuse: Restrict allow_other to the superblock's namespace or a descendant (Alex Gladkov) [1713642]
-- [fs] fuse: Support fuse filesystems outside of init_user_ns (Alex Gladkov) [1713642]
-- [fs] fuse: Fail all requests with invalid uids or gids (Alex Gladkov) [1713642]
-
-* Sun Sep 08 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1088.el7]
-- [sound] ALSA: Replace snd_malloc_pages() and snd_free_pages() with standard helpers, take#2 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: us122l: Use alloc_pages_exact() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Use container_of() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: podhd: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: variax: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: pod: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: sizeof (byte) is always 1, use that fact (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Drop superfluous timer helper function (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Assure canceling delayed work at disconnection (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: toneport: Fix broken usage of timer for delayed execution (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: use dynamic buffers (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Convert timers to use timer_setup() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Update DSD support quirks for Oppo and Rotel (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: DSD auto-detection for Playback Designs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: remove some dead code (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix possible NULL dereference at create_yamaha_midi_quirk() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Clean up check_input_term() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Remove superfluous bLength checks (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Unify the release of usb_mixer_elem_info objects (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Simplify parse_audio_unit() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: More validations of descriptor units (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Check mixer unit bitmap yet more strictly (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Fix memory leak at line6_init_pcm() error path (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix invalid NULL check in snd_emuusb_set_samplerate() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Add implicit fb quirk for Behringer UFX1604 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix a stack buffer overflow bug in check_input_term (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix an OOB bug in parse_audio_mixer_unit (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hiface: fix multiple memory leak bugs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Add Pioneer DDJ-SX3 PCM quirck (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Skip bSynchAddress endpoint check if it is invalid (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: fix PCM device order (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Unify audioformat release code (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: fix a memory leak bug (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix gpf in snd_usb_pipe_sanity_check (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Scarlett Gen 2 mixer interface (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Fix a typo (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Fix wrong altsetting for LINE6_PODHD500_1 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: fix Line6 Helix audio format rates (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix parse of UAC2 Extension Units (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Fix write on zero-sized buffer (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: fix sign unintended sign extension on left shifts (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Sanity checks for each pipe and EP types (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Enable .product_name override for Emagic, Unitor 8 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usx2y: fix a double free bug (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix a memory leak bug (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Handle the error from snd_usb_mixer_apply_create_quirk() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Avoid polluting led_* namespace (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Add quirk for Focusrite Scarlett Solo (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usx2y: Fix potential NULL pointer dereference (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb: Clean up with new procfs helpers (Jaroslav Kysela) [1733130]
-- [sound] ALSA: x86: Avoid passing NULL to memory allocators (Jaroslav Kysela) [1733130]
-- [sound] ALSA: intel_hdmi: Use strlcpy() instead of strncpy() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: intel_hdmi: Use the new non-cached allocation (Jaroslav Kysela) [1733130]
-- [sound] ALSA: intel_hdmi: remove redundant variable cfg_val (Jaroslav Kysela) [1733130]
-- [sound] ALSA: emu10k1: Drop superfluous id-uniquification behavior (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Headphone Mic can't record after S3 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Add a quirk model for fixing Huawei Matebook X right speaker (Jaroslav Kysela) [1733130]
-- [documentation] ALSA: hda/realtek - Add model description for Chrome headset button quirk (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Enable micmute LED for Huawei laptops (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Add support of Zhaoxin controller (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Fix intermittent CORB/RIRB stall on Intel chips (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Enable internal speaker & headset mic of ASUS UX431FL (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add quirk for HP Pavilion 15 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fix overridden device-specific initialization (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Fix potential endless loop at applying quirks (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Blacklist PC beep for Lenovo ThinkCentre M73/93 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Check beep whitelist before assigning in all codecs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/ca0132 - Add new SBZ quirk (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Fixes inverted Conexant GPIO mic mute led (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Define a fallback_pin_fixup_tbl for alc269 family (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Expand pin_match function to match upcoming new tbls (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Drop unsol event handler for Intel HDMI codecs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Add a generic reboot_notify (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Let all conexant codec enter D3 when rebooting (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/sigmatel - remove unused variable 'stac9200_core_init' (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add quirk for HP Envy x360 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Set fifo_size for both playback and capture streams (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Inform too slow responses (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Apply workaround for another AMD chip 1022:1487 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Workaround for crackled sound on AMD controller (1022:1457) (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Don't override global PCM hw info flag (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Show the fatal CORB/RIRB error more clearly (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Add a conexant codec entry to let mute led work (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Don't report spurious jack state changes (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Fix i915 reverse port/pin mapping (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Remove duplicated define (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fixed Headphone Mic can't record on Dell platform (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Simplify snd_hdac_refresh_widgets() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Fix widget_mutex incomplete protection (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Fix race between creating and refreshing sysfs entries (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/ca0132 - remove redundant assignment to variable 'changed' (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Change front mic location for Lenovo M710q (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Add quirks for several Clevo notebook barebones (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - consider eld_valid also in sync_eld_via_acomp() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Add Elkhart Lake PCI ID (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: fix a mask for unsolicited event tags (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/ca0132: Use struct_size() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Use struct_size() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Update headset mode for ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: move polling_mode flag to struct hdac_bus (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: assign polling_mode after azx_bus_init (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Force polling mode on CNL for fixing codec communication (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Set default power save node to 0 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Check headset type by unplug and resume (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fix for Lenovo B50-70 inverted internal microphone bug (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Corrected fixup for System76 Gazelle (gaze14) (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Avoid superfluous COEF EAPD setups (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fixup headphone noise via runtime suspend (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Support low power consumption for ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/intel: add CometLake PCI IDs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Support low power consumption for ALC295 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Consider eld_valid when reporting jack event (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Read the pin sense from register when repolling (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Apply the fixup for ASUS Q325UAR (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Register irq handler after the chip initialization (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - EAPD turn on later (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fixed Dell AIO speaker noise (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add new Dell platform for headset mode (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - add two more pin configuration sets to quirk table (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Add two more machines to the power_save_blacklist (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add quirk for Tuxedo XC 1509 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Move to ACT_INIT state (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset MIC of Acer TravelMate B114-21 with ALC233 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/ca0132 - Simplify alt firmware loading code (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Record the current power state before suspend/resume calls (Jaroslav Kysela) [1733130]
-- [sound] ALSA: aloop: Support S24 sample formats (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Be more restrictive about when a drain is allowed (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Don't allow paritial drain operations on capture streams (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Prevent bypasses of set_params (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Fix regression on compressed capture streams (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Fix stop handling on compressed capture streams (Jaroslav Kysela) [1733130]
-- [sound] ALSA: memalloc: Add fall-through annotation (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: fix incorrect order of dest_client/dest_ports arguments (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Fix potential concurrent access to the deleted pool (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: fix lost wakeup event scenarios in snd_pcm_drain (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Fix refcount_inc() on zero usage (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Break too long mutex context in the write loop (Jaroslav Kysela) [1733130]
-- [sound] ALSA: control: Use struct_size() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: oss: Use struct_size() helper (Jaroslav Kysela) [1733130]
-- [sound] ALSA: core: Don't refer to snd_cards array directly (Jaroslav Kysela) [1733130]
-- [sound] ALSA: core: Fix card races between register and disconnect (Jaroslav Kysela) [1733130]
-- [sound] ALSA: info: Fix racy addition/deletion of nodes (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Correct unlock sequence at snd_seq_client_ioctl_unlock() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Protect racy pool manipulation from OSS sequencer (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Simplify snd_seq_kernel_client_enqueue() helper (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Cover unsubscribe_port() in list_mutex (Jaroslav Kysela) [1733130]
-- [sound] ALSA: Revert "ALSA: seq: Protect in-kernel ioctl calls with mutex" (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Coding style fixes (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Simplify error path in snd_timer_open() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Fix race of get-subscription call vs port-delete ioctls (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Protect in-kernel ioctl calls with mutex (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Align temporary re-locking with irqsave version (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Revert active callback sync check at close (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Fix OOB-reads from strlcpy (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Make snd_timer_close() really kill pending actions (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Check ack_list emptiness instead of bit flag (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Make sure to clear pending ack list (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Unify timer callback process code (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Don't suspend stream in unrecoverable PCM state (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Fix possible OOB access in PCM oss plugins (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: oss: Fix Spectre v1 vulnerability (Jaroslav Kysela) [1733130]
-- [sound] ALSA: rawmidi: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Comment why read blocks when PCM is not running (Jaroslav Kysela) [1733130]
-- [sound] ALSA: PCM: check if ops are defined before suspending PCM (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Revert capture stream behavior change in blocking mode (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: remove a superfluous function declaration (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Fix tight loop of OSS capture stream (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Use the common error path in __snd_pcm_lib_xfer() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Drop unused snd_pcm_substream.file field (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Cleanup snd_pcm_stream_lock() & co (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Remove down_write() hack for snd_pcm_link_rwsem (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: More fine-grained PCM link locking (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Avoid confusing loop in snd_pcm_unlink() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Make PCM linked list consistent while re-grouping (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Call snd_card_unref() inside in_pcm_file() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: prevent potential divide by zero bugs (Jaroslav Kysela) [1733130]
-- [x86] Revert "acpi: Prevent LAPIC id 0xff from being accounted" (David Arcari) [1744829]
-- [x86] x86/CPU: Add more Icelake model numbers (Steve Best) [1711819]
-- [md] raid5-cache: Need to do start() part job after adding journal device (Xiao Ni) [1737707]
-- [md] revert raid5-cache: use bio chaining (Xiao Ni) [1737707]
-
-* Fri Sep 06 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1087.el7]
-- [nvme] nvme-loop: init nvmet_ctrl fatal_err_work when allocate (Ming Lei) [1747135]
-- [block] block: don't call ioc_exit_icq() with the queue lock held for blk-mq (Ming Lei) [1747127]
-- [scsi] scsi: mpt3sas: Update driver version to 31.100.00.00 (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Run SAS DEVICE STATUS CHANGE EVENT from ISR (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Reduce the performance drop (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Handle fault during HBA initialization (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Add sysfs to know supported features (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Support MEMORY MOVE Tool box command (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Allow ioctls to blocked access status NVMe (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Enumerate SES of a managed PCIe switch (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Update MPI headers to 2.6.8 spec (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Gracefully handle online firmware update (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: memset request frame before reusing (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Add support for PCIe Lane margin (Tomas Henzl) [1740501]
-- [wireless] mwifiex: Fix heap overflow in mwifiex_uap_parse_tail_ies() (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Mark expected switch fall-through (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Fix skipped vendor specific IEs (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: fix 802.11n/WPA detection (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Don't abort on small, spec-compliant vendor IEs (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Abort at too short BSS descriptor element (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Fix possible buffer overflows at parsing bss descriptor (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-
-* Wed Sep 04 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1086.el7]
-- [scsi] scsi: scsi_dh_alua: always use a 2 second delay before retrying RTPG (Ewan Milne) [1739159]
-- [scsi] scsi: scsi_dh_alua: Fix possible null-ptr-deref (Ewan Milne) [1739159]
-- [scsi] scsi: scsi_dh_alua: Correct comment for alua_alloc_pg() (Ewan Milne) [1739159]
-- [kernel] genirq: Fix race in register_irq_proc() (Vladis Dronov) [1550998]
-- [scsi] megaraid_sas: remove 'tech preview' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Update driver version to 07.710.50.00 (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add module parameter for FW Async event logging (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Enable msix_load_balance for Invader and later controllers (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Fix calculation of target ID (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Make some symbols static (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Update driver version to 07.710.06.00-rc1 (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Introduce various Aero performance modes (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Use high IOPS queues based on IO workload (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Set affinity for high IOPS reply queues (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Enable coalescing for high IOPS queues (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add support for High IOPS queues (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add support for MPI toolbox commands (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Offload Aero RAID5/6 division calculations to driver (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: RAID1 PCI bandwidth limit algorithm is applicable for only Ventura (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: megaraid_sas: Add check for count returned by HOST_DEVICE_LIST DCMD (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Handle sequence JBOD map failure at driver level (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Don't send FPIO to RL Bypass queue (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: In probe context, retry IOC INIT once if firmware is in fault (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Release Mutex lock before OCR in case of DCMD timeout (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Call disable_irq from process IRQ poll (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Remove few debug counters from IO path (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add 32 bit atomic descriptor support to AERO adapters (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Use struct_size() helper (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Remove unused including <linux/version.h> (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: use DEVICE_ATTR_{RO, RW} (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: use octal permissions instead of constants (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: make max_sectors visible in sys (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: remove set but not used variables 'buff_addr' and 'ci_h' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: remove set but not used variable 'sge_sz' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: remove set but not used variables 'host' and 'wait_time' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: remove set but not used variable 'cur_state' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Update driver version to 07.708.03.00 (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Export RAID map through debugfs (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Fix MSI-X vector print (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add debug prints for device list (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add prints in suspend and resume path (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Print firmware interrupt status (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Print FW fault information (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Export RAID map id through sysfs (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Print BAR information from driver (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Dump system registers for debugging (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Dump system interface regs from sysfs (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add formatting option for megasas_dump (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Enhance internal DCMD timeout prints (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Enhance prints in OCR and TM path (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Load balance completions across all MSI-X (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: IRQ poll to avoid CPU hard lockups (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Block PCI config space access from userspace during OCR (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Rework code around controller reset (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: fw_reset_no_pci_access required for MFI adapters only (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Remove unused variable target_index (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: fix spelling mistake "oustanding" -> "outstanding" (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Make megasas_host_device_list_query() static (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: reduce module load time (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Remove a bunch of set but not used variables (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: driver version update (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Update structures for HOST_DEVICE_LIST DCMD (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add support for DEVICE_LIST DCMD in driver (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Rework device add code in AEN path (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Rework code to get PD and LD list (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Retry reads of outbound_intr_status reg (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: correct an info message (Tomas Henzl) [1736851]
-- [netdrv] hv_netvsc: fix network namespace issues with VF support (Mohammed Gamal) [1741334]
-- [netdrv] hv_netvsc: move VF to same namespace as netvsc device (Mohammed Gamal) [1741334]
-- [netdrv] hv_netvsc: set master device (Mohammed Gamal) [1741334]
-- [s390] s390/protvirt: avoid memory sharing for diag 308 set/store (Philipp Rudo) [1745609]
-- [netdrv] cxgb4: Add MPS refcounting for alloc/free mac filters (Jonathan Toppins) [1444795]
-- [netdrv] cxgb4: Add MPS TCAM refcounting for cxgb4 change mac (Jonathan Toppins) [1444795]
-- [netdrv] cxgb4: Add MPS TCAM refcounting for raw mac filters (Jonathan Toppins) [1444795]
-- [netdrv] cxgb4: Re-work the logic for mps refcounting (Jonathan Toppins) [1444795]
-- [scsi] scsi: libcxgbi: add a check for NULL pointer in cxgbi_check_route() (Jonathan Toppins) [1712130]
-
-* Tue Sep 03 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1085.el7]
-- [net] Add a define for LLDP ethertype (Ivan Vecera) [1745674]
-- [net] netns: provide pure entropy for net_hash_mix() (Paolo Abeni) [1737436] {CVE-2019-10639}
-- [net] macvlan: Support bonding events (Davide Caratti) [1733589]
-- [net] xfrm: fix sa selector validation (Sabrina Dubroca) [1738848]
-- [net] xfrm: Fix xfrm sel prefix length validation (Sabrina Dubroca) [1738848]
-- [net] macsec: fix checksumming after decryption (Sabrina Dubroca) [1738241]
-- [net] macsec: fix use-after-free of skb during RX (Sabrina Dubroca) [1738241]
-- [net] xfrm6: Remove xfrm_tunnel_notifier (Sabrina Dubroca) [1600467]
-- [net] udplite: fix partial checksum initialization (Hangbin Liu) [1734706]
-- [net] iptunnel: NULL pointer deref for ip_md_tunnel_xmit (Hangbin Liu) [1712790]
-- [net] socket: set sock->sk to NULL after calling proto_ops::release() (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] set sk to NULL when af_alg_release (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [net] sched: act_police: fix memory leak in case of invalid control action (Davide Caratti) [1729033]
-- [net] sched: act_police: disallow 'goto chain' on fallback control action (Davide Caratti) [1729033]
-- [net] sched: act_gact: disallow 'goto chain' on fallback control action (Davide Caratti) [1729033]
-- [net] udp: fix handling of CHECKSUM_COMPLETE packets (Davide Caratti) [1657877]
-- [net] ipv4: fix checksum annotation in udp4_csum_init (Davide Caratti) [1657877]
-- [net] ipv6: fix checksum annotation in udp6_csum_init (Davide Caratti) [1657877]
-- [net] add skb_checksum_complete_unset (Davide Caratti) [1657877]
-- [net] netfilter: nf_tables: fix race when create new element in dynset (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: take module reference when starting a batch (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix module unload race (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix flush after rule deletion in the same batch (Florian Westphal) [1711497]
-- [net] netfilter: nft_compat: use-after-free when deleting targets (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix use-after-free when deleting compat expressions (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: don't use position attribute on rule replacement (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix register ordering (Florian Westphal) [1711497]
-- [net] netfilter: nft_set: fix allocation size overflow in privsize callback. (Florian Westphal) [1711497]
-- [net] netfilter: nft_set_hash: add rcu_barrier() in the nft_rhash_destroy() (Florian Westphal) [1711497]
-- [net] netfilter: nft_dynset: continue to next expr if _OP_ADD succeeded (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: destroy the set if fail to add transaction (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix *leak* when expr clone fail (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix a wrong check to skip the inactive rules (Florian Westphal) [1711497]
-
-* Mon Sep 02 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1084.el7]
-- [crypto] api - Clear CRYPTO_ALG_DEAD bit before registering an alg (Vladis Dronov) [1739854]
-- [crypto] gcm - Fix IV buffer size in crypto_gcm_setkey (Vladis Dronov) [1739854]
-- [crypto] skcipher - Fix blkcipher walk OOM crash (Vladis Dronov) [1739854]
-- [crypto] cryptd - initialize child shash_desc on import (Vladis Dronov) [1739854]
-- [crypto] algif_skcipher - Fix race condition in skcipher_check_key (Vladis Dronov) [1739854]
-- [crypto] algif_hash - Fix race condition in hash_check_key (Vladis Dronov) [1739854]
-- [drm] drm/ast: Fixed reboot test may cause system hanged (Dave Airlie) [1739971]
-- [infiniband] RDMA/qedr: Fix the hca_type and hca_rev returned in device attributes (Manish Chopra) [1730480]
-- [netdrv] qed: RDMA - Fix the hw_ver returned in device attributes (Manish Chopra) [1730480]
-- [netdrv] qede: Handle infinite driver spinning for Tx timestamp (Manish Chopra) [1703778]
-- [fs] vfs: close race between getcwd() and d_move() (Miklos Szeredi) [1631631]
-- [net] sunrpc: Fix possible autodisconnect during connect due to old last_used (Dave Wysochanski) [1723537]
-- [netdrv] qed: Add support for Timestamping the unicast PTP packets (Manish Chopra) [1724205]
-- [powercap] powercap/intel_rapl: Support multi-die/package (David Arcari) [1744258]
-- [x86] perf/x86/intel/uncore: Support multi-die/package (David Arcari) [1744257]
-- [x86] perf/x86/intel/rapl: Support multi-die/package (David Arcari) [1744256]
-- [mm] mm/migrate: fix refcount handling when !hugepage_migration_supported() (Gustavo Duarte) [1726983]
-- [netdrv] bnx2x: Fix VF's VLAN reconfiguration in reload (Manish Chopra) [1729072]
-- [s390] s390: use S390_lowcore instead of tmp variable to load cr7 in set_fs (Yauheni Kaliuta) [1724027]
-
-* Tue Aug 27 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1083.el7]
-- [net] Bluetooth: Fix faulty expression for minimum encryption key size check (Gopal Tiwari) [1743085] {CVE-2019-9506}
-- [net] Bluetooth: Fix regression with minimum encryption key size alignment (Gopal Tiwari) [1743085] {CVE-2019-9506}
-- [net] Bluetooth: Align minimum encryption key size for LE and BR/EDR connections (Gopal Tiwari) [1743085] {CVE-2019-9506}
-- [fs] block/bio: Do not zero user pages (Ming Lei) [1724379]
-- [fs] block: Clear kernel memory before copying to user (Ming Lei) [1724379]
-- [firmware] Revert "efi: Disable local interrupts across efi run-time calls" (Lenny Szubowicz) [1729163]
-- [x86] x86/efi: Use efi_switch_mm() rather than manually twiddling with cr3 (Lenny Szubowicz) [1729163]
-- [x86] x86/efi: Replace efi_pgd with efi_mm.pgd (Lenny Szubowicz) [1729163]
-- [x86] efi: Use efi_mm in x86 as well as ARM (Lenny Szubowicz) [1729163]
-- [x86] x86/mm: Remove kernel_unmap_pages_in_pgd() and efi_cleanup_page_tables() (Lenny Szubowicz) [1729163]
-- [x86] x86/efi: Update efi_thunk() to use the the arch_efi_call_virt*() macros (Lenny Szubowicz) [1729163]
-- [tty] vt/fbcon: deinitialize resources in visual_init() after failed memory allocation (Grzegorz Halat) [1688780]
-- [video] fbcon: Fix vc attr at deinit (Grzegorz Halat) [1688780]
-- [tty] vt, get rid of weird source code flow (Grzegorz Halat) [1688780]
-- [tty] vt, remove reduntant check (Grzegorz Halat) [1688780]
-- [netdrv] be2net: eliminate enable field from be_aic_obj (Petr Oros) [1743152]
-- [netdrv] be2net: disable bh with spin_lock in be_process_mcc (Petr Oros) [1743152]
-- [netdrv] be2net: Synchronize be_update_queues with dev_watchdog (Petr Oros) [1743152]
-- [netdrv] be2net: Signal that the device cannot transmit during reconfiguration (Petr Oros) [1743152]
-- [netdrv] be2net: fix link failure after ethtool offline test (Petr Oros) [1743152]
-- [netdrv] be2net: Fix number of Rx queues used for flow hashing (Petr Oros) [1743152]
-- [netdrv] benet: remove broken and unused macro (Petr Oros) [1743152]
-- [netdrv] be2net: don't flip hw_features when VXLANs are added/deleted (Petr Oros) [1743152]
-- [netdrv] be2net: Mark expected switch fall-through (Petr Oros) [1743152]
-- [netdrv] be2net: fix spelling mistake "seqence" -> "sequence" (Petr Oros) [1743152]
-- [netdrv] be2net: Update the driver version to 12.0.0.0 (Petr Oros) [1743152]
-- [netdrv] be2net: gather debug info and reset adapter (only for Lancer) on a tx-timeout (Petr Oros) [1743152]
-- [netdrv] be2net: move rss_flags field in rss_info to ensure proper alignment (Petr Oros) [1743152]
-- [netdrv] be2net: re-order fields in be_error_recovert to avoid hole (Petr Oros) [1743152]
-- [netdrv] be2net: remove unused tx_jiffies field from be_tx_stats (Petr Oros) [1743152]
-- [netdrv] be2net: move txcp field in be_tx_obj to eliminate holes in the struct (Petr Oros) [1743152]
-- [netdrv] be2net: reorder fields in be_eq_obj structure (Petr Oros) [1743152]
-- [netdrv] be2net: remove unused old custom busy-poll fields (Petr Oros) [1743152]
-- [netdrv] be2net: remove unused old AIC info (Petr Oros) [1743152]
-- [netdrv] be2net: Fix error detection logic for BE3 (Petr Oros) [1743152]
-- [netdrv] bnxt_en: Fix ethtool selftest crash under error conditions (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Fix statistics context reservation logic for RDMA driver (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Cap the returned MSIX vectors to the RDMA driver (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Suppress error messages when querying DSCP DCB capabilities (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Disable bus master during PCI shutdown and driver unload (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Add PCI IDs for 57500 series NPAR devices (Jonathan Toppins) [1738655]
-- [netdrv] bnxt_en: Add device IDs 0x1806 and 0x1752 for 57500 devices (Jonathan Toppins) [1738655]
-- [x86] perf/x86: Apply more accurate check on hypervisor platform (Jiri Olsa) [1664851]
-
-* Sun Aug 25 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1082.el7]
-- [netdrv] ibmvnic: Unmap DMA address of TX descriptor buffers after use (Steve Best) [1743636]
-- [hwmon] hwmon/coretemp: Support multi-die/package (David Arcari) [1741952]
-- [x86] topology: fix typo in definition of topology_logical_die_id (David Arcari) [1741952]
-- [nvme] blk-mq: remove blk_mq_complete_request_sync (Ming Lei) [1730922]
-- [nvme] nvme: wait until all completed request's complete fn is called (Ming Lei) [1730922]
-- [nvme] nvme: don't abort completed request in nvme_cancel_request (Ming Lei) [1730922]
-- [block] blk-mq: introduce blk_mq_tagset_wait_completed_request() (Ming Lei) [1730922]
-- [block] blk-mq: introduce blk_mq_request_completed() (Ming Lei) [1730922]
-- [netdrv] gve: account for lack of netdev_xmit_more() definition (RHEL-only) (John Linville) [1728840]
-- [netdrv] gve: account for min_mtu and max_mtu (RHEL-only) (John Linville) [1728840]
-- [netdrv] gve: remove dependencies on 'static_assert' macro definition (RHEL-only) (John Linville) [1728840]
-- [netdrv] gve: Fix case where desc_cnt and data_cnt can get out of sync (John Linville) [1728840]
-- [netdrv] gve: replace kfree with kvfree (John Linville) [1728840]
-- [netdrv] gve: Remove the exporting of gve_probe (John Linville) [1728840]
-- [netdrv] gve: fix unused variable/label warnings (John Linville) [1728840]
-- [netdrv] gve: Fix error return code in gve_alloc_qpls() (John Linville) [1728840]
-- [netdrv] gve: fix -ENOMEM null check on a page allocation (John Linville) [1728840]
-- [netdrv] gve: Fix u64_stats_sync to initialize start (John Linville) [1728840]
-- [netdrv] gve: Add ethtool support (John Linville) [1728840]
-- [netdrv] gve: Add workqueue and reset support (John Linville) [1728840]
-- [netdrv] gve: Add transmit and receive support (John Linville) [1728840]
-- [netdrv] gve: Add basic driver framework for Compute Engine Virtual NIC (John Linville) [1728840]
-- [nvme] nvme-pci: add missing unlock for reset error (David Milburn) [1713065]
-- [nvme] nvme-pci: fix rapid add remove sequence (David Milburn) [1713065]
-- [fs] devpts: Change the owner of /dev/pts/ptmx to the mounter of /dev/pts (Alex Gladkov) [1522992]
-- [mm] coredump: fix race condition between collapse_huge_page() and core dumping (Andrea Arcangeli) [1722987]
-
-* Fri Aug 23 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1081.el7]
-- [crypto] crypto: blkcipher - fix crash flushing dcache in error path (Vladis Dronov) [1741525]
-- [crypto] crypto: remove direct blkcipher_walk dependency on transform (Vladis Dronov) [1741525]
-- [crypto] crypto: user - prevent operating on larval algorithms (Vladis Dronov) [1741525]
-- [x86] fs/proc/vmcore: Enable dumping of encrypted memory when SEV was active (Lianbo Jiang) [1719685]
-- [x86] x86/kexec: Set the C-bit in the identity map page table when SEV is active (Lianbo Jiang) [1719685]
-- [x86] x86/kexec: Do not map kexec area as decrypted when SEV is active (Lianbo Jiang) [1719685]
-- [mm] Revert "mm: Add invalid memory type to memremap_should_map_decrypted()" (Lianbo Jiang) [1719685]
-- [scsi] scsi: bnx2fc: fix bnx2fc_cmd refcount imbalance in send_srr (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: fix bnx2fc_cmd refcount imbalance in send_rec (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Update the driver version to 2.12.10 (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Limit the IO size according to the FW capability (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Do not allow both a cleanup completion and abort completion for the same request (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Separate out completion flags and variables for abort and cleanup (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Only put reference to io_req in bnx2fc_abts_cleanup if cleanup times out (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Redo setting source FCoE MAC (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: fix incorrect cast to u64 on shift operation (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: remove unneeded variable (Nilesh Javali) [1724582]
-- [scsi] scsi: qedi: update driver version to 8.37.0.20 (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: Check targetname while finding boot target information (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: remove set but not used variables 'cdev' and 'udev' (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: remove memset/memcpy to nfunc and use func instead (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: Adjust termination and offload ramrod timers (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: Abort ep termination if offload not scheduled (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: fix spelling mistake "oflload" -> "offload" (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: remove declaration of nvm_image from stack (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: Remove set but not used variable 'cls_sess' (Nilesh Javali) [1724577]
-- [tools] perf bench numa: Fix cpu0 binding (Michael Petlan) [1637662]
-- [powerpc] powerpc/pseries/mobility: rebuild cacheinfo hierarchy post-migration (Desnes Augusto Nunes do Rosario) [1720930]
-- [powerpc] powerpc/pseries/mobility: prevent cpu hotplug during DT update (Desnes Augusto Nunes do Rosario) [1720930]
-- [powerpc] powerpc/cacheinfo: add cacheinfo_teardown, cacheinfo_rebuild (Desnes Augusto Nunes do Rosario) [1720930]
-
-* Thu Aug 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1080.el7]
-- [s390] s390/cpumf: Add extended counter set definitions for model 8561 and 8562 (Philipp Rudo) [1738245]
-- [s390] s390/cpum_cf: Add support for CPU-MF SVN 6 (Philipp Rudo) [1738245]
-- [s390] s390/dasd: fix endless loop after read unit address configuration (Philipp Rudo) [1740654]
-- [cdrom] cdrom: allocate the sense buffer before calling blk_execute_rq (Maurizio Lombardi) [1722505]
-- [netdrv] net/mlx5e: Prevent encap flow counter update async to user query (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Fix matching of speed to PRM link modes (Alaa Hleihel) [1737464]
-- [include] net/mlx5: Fix modify_cq_in alignment (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Use reversed order when unregister devices (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Print a warning when LRO feature is dropped or not allowed (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fix MR registration flow to use UMR properly (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fix RSS Toeplitz setup to be aligned with the HW specification (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Prevent concurrent MR updates during invalidation (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fix clean_mr() to work in the expected order (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Use direct mkey destroy command upon UMR unreg failure (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fix unreg_umr to ignore the mkey state (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: IPoIB, Add error path in mlx5_rdma_setup_rn (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Rx, Fix checksum calculation for new hardware (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: E-Switch, Fix default encap mode (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Report correctly tag matching rendezvous capability (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fixed reporting counters on 2nd port for Dual port RoCE (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Fix mlx5_core_destroy_cq() error flow (Alaa Hleihel) [1737464]
-- [netdrv] mlx5: use RCU lock in mlx5_eq_cq_get() (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: E-Switch, Use correct flags when configuring vlan (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Replace reciprocal_scale in TX select queue function (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Update pci error handler entries and command translation (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Disable rxhash when CQE compress is enabled (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Allocate root ns memory using kzalloc to match kfree (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Avoid double free in fs init error unwinding path (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Fix error handling in mlx5_load() (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: fix csum adjustments caused by RXFCS (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Fix port tunnel GRE entropy control (Alaa Hleihel) [1737464 1721621]
-- [netdrv] net/mlx5e: Allow IPv4 ttl & IPv6 hop_limit rewrite for all L4 protocols (Alaa Hleihel) [1737464 1727577]
-- [netdrv] net/mlx5e: Disallow tc redirect offload cases we don't support (Alaa Hleihel) [1737464 1721626]
-- [netdrv] net/mlx5e: Support ndo_get_phys_port_name for PF under switchdev mode (Alaa Hleihel) [1737464 1721626]
-- [netdrv] net/mlx5e: Expose same physical switch_id for all representors (Alaa Hleihel) [1737464 1721626]
-- [netdrv] net/mlx5e: Support tagged tunnel over bond (Alaa Hleihel) [1721627 1737464 1721625]
-- [netdrv] net/mlx5: Avoid reloading already removed devices (Alaa Hleihel) [1737464 1706083]
-- [netdrv] net/mlx5: E-Switch, Fix double mutex initialization (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Fix possible modify header actions memory leak (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Fix no rewrite fields with the same match (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: reduce stack usage in mlx5_eswitch_termtbl_create (Alaa Hleihel) [1737464 1676558]
-- [netdrv] net/mlx5e: Use termination table for VLAN push actions (Alaa Hleihel) [1737464 1676558]
-- [include] net/mlx5: Introduce termination table bits (Alaa Hleihel) [1737464 1676558]
-- [netdrv] net/mlx5: E-Switch, don't use hardcoded values for FDB prios (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Pass flow steering objects to fs_cmd (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Replace TC VLAN pop with VLAN 0 rewrite in prio tag mode (Alaa Hleihel) [1737464 1676558]
-- [netdrv] net/mlx5e: ACLs for priority tag mode (Alaa Hleihel) [1737464 1676558]
-- [include] net/mlx5: E-Switch: Introduce prio tag mode (Alaa Hleihel) [1737464 1676558]
-- [netdrv] net/mlx5e: Do not rewrite fields with the same match (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Allow VLAN rewrite of prio field with the same match (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Deny VLAN rewrite if there is no VLAN header match (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Use helpers to get headers criteria and value pointers (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: E-Switch, Refactor offloads flow steering init/cleanup (Alaa Hleihel) [1737464]
-- [fs] cifs: Do not reconnect TCP session in add_credits() (Leif Sahlberg) [1588123]
-- [fs] NFSv4: Replace closed stateids with the "invalid special stateid" (Steve Dickson) [1733347]
-- [fs] NFSv4: nfs_set_open_stateid must not trigger state recovery for closed state (Steve Dickson) [1733347]
-- [fs] NFSv4: Check the open stateid when searching for expired state (Steve Dickson) [1733347]
-- [fs] NFSv4: Clean up nfs4_delegreturn_done (Steve Dickson) [1733347]
-- [fs] NFSv4: cleanup nfs4_close_done (Steve Dickson) [1733347]
-- [fs] NFSv4: Retry NFS4ERR_OLD_STATEID errors in layoutreturn (Steve Dickson) [1733347]
-- [fs] pNFS: Retry NFS4ERR_OLD_STATEID errors in layoutreturn-on-close (Steve Dickson) [1733347]
-- [fs] NFSv4: Don't try to CLOSE if the stateid 'other' field has changed (Steve Dickson) [1733347]
-- [fs] NFSv4: Retry CLOSE and DELEGRETURN on NFS4ERR_OLD_STATEID. (Steve Dickson) [1733347]
-- [fs] NFS: Fix a typo in nfs_rename() (Steve Dickson) [1733347]
-- [fs] NFSv4: Fix open create exclusive when the server reboots (Steve Dickson) [1733347]
-- [fs] NFSv4: Add a tracepoint to document open stateid updates (Steve Dickson) [1733347]
-- [fs] NFSv4: Fix OPEN / CLOSE race (Steve Dickson) [1733347]
-- [fs] NFSv4: Place the GETATTR operation before the CLOSE (Steve Dickson) [1733347]
-- [fs] NFS: Retry the CLOSE if the embedded GETATTR is rejected with EACCES (Steve Dickson) [1733347]
-- [fs] NFSv4: Retry the DELEGRETURN if the embedded GETATTR is rejected with EACCES (Steve Dickson) [1733347]
-- [fs] sunrpc: Track writers of the 'channel' file to improve cache_listeners_exist (Dave Wysochanski) [1600616]
-- [fs] sunrpc/cache: handle missing listeners better. (Dave Wysochanski) [1600616]
-
-* Thu Aug 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1079.el7]
-- [block] floppy: fix out-of-bounds read in copy_buffer (Ming Lei) [1735567] {CVE-2019-14283}
-- [bluetooth] Bluetooth: hci_uart: check for missing tty operations (Gopal Tiwari) [1734236] {CVE-2019-10207}
-- [scsi] scsi: qedf: remove set but not used variables (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Update the driver version to 8.37.25.20 (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add return value to log message if scsi_add_host fails (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Print fcport information on wait for upload timeout (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check the return value of start_xmit (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Log message if scsi_add_host fails (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check for fcoe_libfc_config failure (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add comment to display logging levels (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add port_id for fcport into initiate_cleanup debug message (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add LBA to underrun debug messages (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Print scsi_cmd backpointer in good completion path if the command is still being used (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add driver state to 'driver_stats' debugfs node (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Change MSI-X load error message (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: remove memset/memcpy to nfunc and use func instead (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Remove set but not used variable 'fr_len' (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Update the driver version to 8.37.25.19 (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Fix lport may be used uninitialized warning (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Correctly handle refcounting of rdata (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Cleanup rrq_work after QEDF_CMD_OUTSTANDING is cleared (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check for tm_flags instead of cmd_type during cleanup (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add a flag to help debugging io_req which could not be cleaned (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Don't send ABTS for under run scenario (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Don't queue anything if upload is in progress (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check both the FCF and fabric ID before servicing clear virtual link (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: fc_rport_priv reference counting fixes (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add missing return in qedf_scsi_done() (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Wait for upload and link down processing during soft ctx reset (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add additional checks for io_req->sc_cmd validity (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: fixup bit operations (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: fixup locking in qedf_restart_rport() (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: missing kref_put in qedf_xmit() (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check for link state before processing LL2 packets and send fipvlan retries (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add missing fc_disc_init call after allocating lport (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Correct the memory barriers in qedf_ring_doorbell (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Use a separate completion for cleanup commands (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Modify abort and tmf handler to handle edge condition and flush (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Modify flush routine to handle all I/Os and TMF (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Simplify s/g list mapping (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add missing return in qedf_post_io_req() in the fcport offload check (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Correct xid range overlap between offloaded requests and libfc requests (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Do not retry ELS request if qedf_alloc_cmd fails (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: no need to check return value of debugfs_create functions (Nilesh Javali) [1724578]
-- [acpi] nfit/ars: Avoid stale ARS results (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Allow root to busy-poll the ARS state machine (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Introduce scrub_flags (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Remove ars_start_flags (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Attempt short-ARS even in the no_init_ars case (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot (Jeff Moyer) [1690976]
-- [kernel] sched/fair: Fix endless loop in idle_balance() (Phil Auld) [1740941]
-- [kernel] sched/fair: Prevent throttling in early pick_next_task_fair() (Phil Auld) [1740038]
-- [kernel] sched: Check for stop task appearance when balancing happens (Phil Auld) [1740038]
-- [kernel] sched/core: Fix endless loop in pick_next_task() (Phil Auld) [1740038]
-- [kernel] sched/fair: Push down check for high priority class task into idle_balance() (Phil Auld) [1740038]
-- [kernel] sched/rt: Fix picking RT and DL tasks from empty queue (Phil Auld) [1740038]
-
-* Mon Aug 19 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1078.el7]
-- [crypto] vmac - separate tfm and request context (Vladis Dronov) [1733561]
-- [block] block: blk_init_allocated_queue() set q->fq as NULL in the fail case (Ming Lei) [1739327] {CVE-2018-20856}
-- [kvm] KVM: nSVM: Fix nested guest support for PAUSE filtering (Gary Hook) [1670596]
-- [infiniband] RDMA/cxgb4: Report phys_state in query_port (Kamal Heib) [1727961]
-- [net] xprtrdma: Fix use-after-free in rpcrdma_post_recvs (Kamal Heib) [1724178]
-- [infiniband] RDMA/core: Fix race when resolving IP address (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Fill in wc byte_len with IB_WC_RECV_RDMA_WITH_IMM (Kamal Heib) [1724178]
-- [infiniband] ibverbs/rxe: Remove variable self-initialization (Kamal Heib) [1724178]
-- [infiniband] IB/ipoib: Add child to parent list only if device initialized (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: remove redundant assignment to variable ret (Kamal Heib) [1724178]
-- [infiniband] IB/ipoib: Remove memset after vzalloc in ipoib_cm.c (Kamal Heib) [1724178]
-- [infiniband] IB: Remove unneeded memset (Kamal Heib) [1724178]
-- [infiniband] RDMA/srp: Accept again source addresses that do not have a port number (Kamal Heib) [1724178]
-- [infiniband] RDMA/srp: Document srp_parse_in() arguments (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: check for allocation failure in uapi_add_elm() (Kamal Heib) [1724178]
-- [net] svcrdma: Ignore source port when computing DRC hash (Kamal Heib) [1724178]
-- [infiniband] RDMA/ipoib: Allow user space differentiate between valid dev_port (Kamal Heib) [1724178]
-- [infiniband] IB/cm: Reduce dependency on gid attribute ndev check (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Consider skb reserve space based on netdev of GID (Kamal Heib) [1724178]
-- [infiniband] IB/core: Set qp->real_qp before it may be accessed (Kamal Heib) [1724178]
-- [infiniband] RDMA/cm: Remove useless zeroing of static global variable (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Use correct sizing on buffers holding page DMA addresses (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: Allow the compiler to verify declaration and definition consistency (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: Annotate uverbs_request_next_ptr() return value as a __user pointer (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: Add a __user annotation to a pointer (Kamal Heib) [1724178]
-- [infiniband] RDMA/vmw_pvrdma: Skip zeroing device attrs (Kamal Heib) [1724178]
-- [infiniband] IB/iser: remove uninitialized variable len (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Fix slab-out-bounds access which lead to kernel crash later (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Use for_each_sg_page iterator on umem SGL (Kamal Heib) [1724178]
-- [infiniband] IB/iser: Fix dma_nents type definition (Kamal Heib) [1724178]
-- [infiniband] RDMA/core: Verify that memory window type is legal (Kamal Heib) [1724178]
-- [infiniband] RDMA/device: Call ib_cache_release_one() only from ib_device_release() (Kamal Heib) [1724178]
-- [infiniband] RDMA/device: Ensure that security memory is always freed (Kamal Heib) [1724178]
-- [infiniband] IB/core: Don't register each MAD agent for LSM notifier (Kamal Heib) [1724178]
-- [rdma] IB/core: Eliminate a hole in MAD agent struct (Kamal Heib) [1724178]
-- [infiniband] RDMA/cma: Rollback source IP address if failing to acquire device (Kamal Heib) [1724178]
-- [net] xprtrdma: Prevent leak of rpcrdma_rep objects (Kamal Heib) [1724178]
-- [net] xprtrdma: Remove request_module from backchannel (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: Optimize clearing of extra bytes in response (Kamal Heib) [1724178]
-- [rdma] RDMA/core: Remove unused header files mm.h, socket.h, scatterlist.h (Kamal Heib) [1724178]
-
-* Sat Aug 17 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1077.el7]
-- [md] dm thin metadata: check if in fail_io mode when setting needs_check (Mike Snitzer) [1739272]
-- [md] dm log writes: make sure super sector log updates are written in order (Mike Snitzer) [1739272]
-- [md] dm mpath: fix missing call of path selector type->end_io (Mike Snitzer) [1739272]
-- [md] dm delay: fix a crash when invalid device is specified (Mike Snitzer) [1739272]
-- [md] dm ioctl: harden copy_params()'s copy_from_user() from malicious users (Mike Snitzer) [1739272]
-- [md] dm cache metadata: verify cache has blocks in blocks_are_clean_separate_dirty() (Mike Snitzer) [1739272]
-- [md] dm cache: fix resize crash if user doesn't reload cache table (Mike Snitzer) [1739272]
-- [md] dm cache metadata: ignore hints array being too small during resize (Mike Snitzer) [1739272]
-- [md] dm cache metadata: save in-core policy_hint_size to on-disk superblock (Mike Snitzer) [1739272]
-- [crypto] crypto: vmx - ghash: do nosimd fallback manually (Desnes Augusto Nunes do Rosario) [1739765]
-- [crypto] crypto: vmx - Remove overly verbose printk from AES init routines (Desnes Augusto Nunes do Rosario) [1739765]
-- [crypto] powerpc: Create disable_kernel_{fp, altivec, vsx, spe}() (Desnes Augusto Nunes do Rosario) [1739765]
-- [crypto] crypto: vmx - CTR: always increment IV as quadword (Desnes Augusto Nunes do Rosario) [1739765]
-- [crypto] crypto: vmx - fix copy-paste error in CTR mode (Desnes Augusto Nunes do Rosario) [1739765]
-- [fs] udf: Use correct partition reference number for metadata (Eric Sandeen) [1694733]
-- [nvdimm] libnvdimm/namespace: Fix label tracking error (Jeff Moyer) [1699792]
-- [mm] x86/mm: Fix decoy address handling vs 32-bit builds (Jeff Moyer) [1628440]
-- [fs] dax: Don't access a freed inode (Jeff Moyer) [1628440]
-- [fs] dax: Check page->mapping isn't NULL (Jeff Moyer) [1628440]
-- [fs] dax: Avoid losing wakeup in dax_lock_mapping_entry (Jeff Moyer) [1628440]
-- [fs] dax: Fix deadlock in dax_lock_mapping_entry() (Jeff Moyer) [1628440]
-- [dax] device-dax: Add missing address_space_operations (Jeff Moyer) [1628440]
-- [mm] x86/mce: Fix set_mce_nospec() to avoid #GP fault (Jeff Moyer) [1628440]
-- [nvdimm] libnvdimm, pmem: Restore page attributes when clearing errors (Jeff Moyer) [1628440]
-- [x86] x86/memory_failure: Introduce {set, clear}_mce_nospec() (Jeff Moyer) [1628440]
-- [mm] x86/mm/pat: Prepare {reserve, free}_memtype() for "decoy" addresses (Jeff Moyer) [1628440]
-- [mm] mm, memory_failure: Teach memory_failure() about dev_pagemap pages (Jeff Moyer) [1628440]
-- [x86] x86/mm, mm/hwpoison: Don't unconditionally unmap kernel 1:1 pages (Jeff Moyer) [1628440]
-- [x86] x86/mm, mm/hwpoison: Clear PRESENT bit for kernel 1:1 mappings of poison pages (Jeff Moyer) [1628440]
-- [fs] filesystem-dax: Introduce dax_lock_mapping_entry() (Jeff Moyer) [1628440]
-- [mm] mm, memory_failure: Collect mapping size in collect_procs() (Jeff Moyer) [1628440]
-- [mm] mm, madvise_inject_error: Let memory_failure() optionally take a page reference (Jeff Moyer) [1628440]
-- [mm] mm, dev_pagemap: Do not clear ->mapping on final put (Jeff Moyer) [1628440]
-- [mm] mm, madvise_inject_error: Disable MADV_SOFT_OFFLINE for ZONE_DEVICE pages (Jeff Moyer) [1628440]
-- [fs] filesystem-dax: Set page->index (Jeff Moyer) [1628440]
-- [dax] device-dax: Set page->index (Jeff Moyer) [1628440]
-- [dax] device-dax: Enable page_mapping() (Jeff Moyer) [1628440]
-- [dax] pmem: fix device dax reference counting bug (Jeff Moyer) [1699625]
-
-* Fri Aug 16 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1076.el7]
-- [scsi] hpsa: bump revision (Joseph Szczypek) [1722624]
-- [scsi] scsi: hpsa: correct ioaccel2 chaining (Joseph Szczypek) [1722624]
-- [tools] x86/pkeys: add self-tests (Vladis Dronov) [1712587]
-- [x86] x86/pkeys: Properly copy pkey state at fork() (Vladis Dronov) [1712587]
-- [x86] x86: Cleanly separate use of asm-generic/mm_hooks.h (Vladis Dronov) [1712587]
-- [x86] x86/pkeys: Do not special case protection key 0 (Vladis Dronov) [1712587]
-- [mm] x86/pkeys: Override pkey when moving away from PROT_EXEC (Vladis Dronov) [1712587]
-- [mm] x86/mm/pkeys: Fix fill_sig_info_pkey (Vladis Dronov) [1712587]
-- [documentation] x86/pkeys: Update documentation about availability (Vladis Dronov) [1712587]
-- [documentation] x86/mm/pkeys: Fix typo in Documentation/x86/protection-keys.txt (Vladis Dronov) [1712587]
-- [x86] x86/pkeys: Check against max pkey to avoid overflows (Vladis Dronov) [1712587]
-- [include] pkeys: Remove easily triggered WARN (Vladis Dronov) [1712587]
-- [scsi] mpt3sas: remove 'tech preview' (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Use 63-bit DMA addressing on SAS35 HBA (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: support target smid fortask (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: clean up a couple sizeof() uses (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Fix msix load balance on and off settings (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Determine smp affinity on per HBA basis (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Use configured PCIe link speed, not max (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Remove CPU arch check to determine perf_mode (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: use DEVICE_ATTR_{RO, RW} (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: make driver options visible in sys (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Mark expected switch fall-through (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Update driver version to 29.100.00.00 (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Introduce perf_mode module parameter (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Enable interrupt coalescing on high iops (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Affinity high iops queues IRQs to local node (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: save and use MSI-X index for posting RD (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Use high iops queues under some circumstances (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: change _base_get_msix_index prototype (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Add flag high_iops_queues (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Add Atomic RequestDescriptor support on Aero (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: function pointers of request descriptor (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas_ctl: fix double-fetch bug in _ctl_ioctl_main() (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: fix indentation issue (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Fix kernel panic during expander reset (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Update mpt3sas driver version to 28.100.00.00 (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Improve the threshold value and introduce module param (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Load balance to improve performance and avoid soft lockups (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Irq poll to avoid CPU hard lockups (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: simplify interrupt handler (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Fix typo in request_desript_type (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Add missing breaks in switch statements (Tomas Henzl) [1721213]
-- [x86] topology: Create core_cpus and die_cpus sysfs attributes (David Arcari) [1641411]
-- [base] topology: Create package_cpus sysfs attribute (David Arcari) [1641411]
-- [x86] x86/topology: Define topology_logical_die_id() (David Arcari) [1641411]
-- [x86] x86/topology: Define topology_die_id() (David Arcari) [1641411]
-- [base] cpu/topology: Export die_id (David Arcari) [1641411]
-- [x86] x86/topology: Create topology_max_die_per_package() (David Arcari) [1641411]
-- [x86] x86/topology: Add CPUID.1F multi-die/package support (David Arcari) [1641411]
-- [x86] x86/smpboot: Rename match_die() to match_pkg() (David Arcari) [1641411]
-- [documentation] topology: Simplify cputopology.txt formatting and wording (David Arcari) [1641411]
-- [documentation] x86/topology: Fix documentation typo (David Arcari) [1641411]
-
-* Thu Aug 15 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1075.el7]
-- [kernel] sched: Fix race between task_group and sched_task_group (Oleksandr Natalenko) [1738415]
-- [iommu] x86/hyper-v: add msi_setup_irq/msi_alloc_irq stubs to fix x2apic mode (Vitaly Kuznetsov) [1736750]
-- [pci] PCI: hv: Fix a use-after-free bug in hv_eject_device_work() (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Add pci_destroy_slot() in pci_devices_present_work(), if necessary (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Add hv_pci_remove_slots() when we unload the driver (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Fix a memory leak in hv_eject_device_work() (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: support reporting serial number as slot information (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Remove unused reason for refcount handler (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Convert hv_pci_dev.refs from atomic_t to refcount_t (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Remove the bogus test in hv_eject_device_work() (Mohammed Gamal) [1732924]
-- [edac] EDAC, skx: Fix randconfig builds in a better way (Jeff Moyer) [1471701]
-- [edac] EDAC, skx: Fix randconfig builds (Jeff Moyer) [1471701]
-- [edac] EDAC, skx_edac: Add address translation for non-volatile DIMMs (Jeff Moyer) [1471701]
-- [acpi] ACPI/ADXL: Add address translation interface using an ACPI DSM (Jeff Moyer) [1471701]
-- [x86] x86/mce: Add macros for the corrected error count bit field (Jeff Moyer) [1471701]
-- [x86] x86/mce: Use BIT_ULL(x) for bit mask definitions (Jeff Moyer) [1471701]
-- [md] dm snapshot: fix oversights in optional discard support (Mike Snitzer) [1738340]
-- [md] dm snapshot: add optional discard support features (Mike Snitzer) [1738340]
-- [md] dm snapshot: Use fine-grained locking scheme (Mike Snitzer) [1738340]
-- [md] dm snapshot: Make exception tables scalable (Mike Snitzer) [1738340]
-- [md] dm snapshot: Replace mutex with rw semaphore (Mike Snitzer) [1738340]
-- [md] dm snapshot: Don't sleep holding the snapshot lock (Mike Snitzer) [1738340]
-- [include] list_bl: Add hlist_bl_add_before_behind helpers (Mike Snitzer) [1738340]
-- [md] dm snapshot: don't define direct_access if we don't support it (Mike Snitzer) [1738340]
-- [md] dm snapshot: Fix excessive memory usage and workqueue stalls (Mike Snitzer) [1738340]
-- [md] dm snapshot: remove stale FIXME in snapshot_map() (Mike Snitzer) [1738340]
-- [nvme] nvme-fc: Add message when creating new association (Ewan Milne) [1739152]
-- [nvme] nvme-fc: use separate work queue to avoid warning (Ewan Milne) [1739152]
-- [nvme] nvme-fc: correct csn initialization and increments on error (Ewan Milne) [1739152]
-- [nvme] nvmet-fc: use zero-sized array and struct_size() in kzalloc() (Ewan Milne) [1739152]
-- [nvme] nvmet-fc: bring Disconnect into compliance with FC-NVME spec (Ewan Milne) [1739152]
-- [nvme] nvmet-fc: fix issues with targetport assoc_list list walking (Ewan Milne) [1739152]
-- [nvme] nvme-fc: reject reconnect if io queue count is reduced to zero (Ewan Milne) [1739152]
-- [nvme] nvme-fc: initialize nvme_req(rq)->ctrl after calling __nvme_fc_init_request() (Ewan Milne) [1739152]
-- [nvme] nvme-fc: fix request private initialization (Ewan Milne) [1739152]
-- [nvme] nvmet-fc: fix kernel-doc headers (Ewan Milne) [1739152]
-- [nvme] nvme-fc: rework the request initialization code (Ewan Milne) [1739152]
-- [nvme] nvme-fc: introduce struct nvme_fcp_op_w_sgl (Ewan Milne) [1739152]
-- [nvme] nvme-fc: merge init_request methods (Ewan Milne) [1739152]
-- [iommu] iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE (Jerry Snitselaar) [1694181]
-- [netdrv] macvlan: allow setting LRO independently of lower device (Ivan Vecera) [1737236]
-- [fs] gfs2: gfs2_walk_metadata fix (Andreas Grunbacher) [1724362]
-- [fs] gfs2: Inode dirtying fix (Andreas Grunbacher) [1724362]
-- [fs] gfs2: Fix rounding error in gfs2_iomap_page_prepare (Andreas Grunbacher) [1733634 1724362]
-- [fs] gfs2: read journal in large chunks (Abhijith Das) [1655575]
-- [fs] gfs2: add a helper function to get_log_header that can be used elsewhere (Abhijith Das) [1655575]
-- [fs] gfs2: Get rid of gfs2_log_header_in (Abhijith Das) [1655575]
-- [fs] gfs2: changes to gfs2_log_XXX_bio (Abhijith Das) [1655575]
-- [fs] gfs2: add more timing info to journal recovery process (Abhijith Das) [1655575]
-- [fs] gfs2: time journal recovery steps accurately (Abhijith Das) [1655575]
-- [fs] gfs2: Clean up journal extent mapping (Abhijith Das) [1655575]
-- [mm] mm: fix insert_pfn regression (Jeff Moyer) [1739889]
-- [mm] slub: make dead caches discard free slabs immediately (Aristeu Rozanski) [1649189 1507149]
-- [mm] mm: charge/uncharge kmemcg from generic page allocator paths (Aristeu Rozanski) [1649189 1507149]
-- [mm] memcg: do not account memory used for cache creation (Aristeu Rozanski) [1649189 1507149]
-- [mm] memcg: also test for skip accounting at the page allocation level (Aristeu Rozanski) [1649189 1507149]
-- [fs] kmemcg: account certain kmem allocations to memcg (Aristeu Rozanski) [1649189 1507149]
-- [mm] vmalloc: allow to account vmalloc to memcg (Aristeu Rozanski) [1649189 1507149]
-- [mm] slab: add SLAB_ACCOUNT flag (Aristeu Rozanski) [1649189 1507149]
-- [include] memcg: only account kmem allocations marked as __GFP_ACCOUNT (Aristeu Rozanski) [1649189 1507149]
-- [include] mm: get rid of __GFP_KMEMCG (Aristeu Rozanski) [1649189 1507149]
-- [mm] slb: charge slabs to kmemcg explicitly (Aristeu Rozanski) [1649189 1507149]
-
-* Wed Aug 14 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1074.el7]
-- [hid] chicony: add another quirk for PixArt mouse (Oleksandr Natalenko) [1723390]
-- [netdrv] net/mlx4_en: ethtool, Remove unsupported SFP EEPROM high pages query (Alaa Hleihel) [1737465]
-- [netdrv] net/mlx4_core: Change the error print to info print (Alaa Hleihel) [1737465]
-- [infiniband] IB/mlx4: Fix race condition between catas error reset and aliasguid flows (Alaa Hleihel) [1737465]
-- [netdrv] net/mlx4_core: Fix qp mtt size calculation (Alaa Hleihel) [1737465]
-- [netdrv] bnx2x: Prevent load reordering in tx completion processing (Manish Chopra) [1733551]
-- [kernel] audit: add kernel set-up parameter to override default backlog limit (Richard Guy Briggs) [1738634]
-- [fs] fuse: fix "do not use iocb after it may have been freed" backport (Miklos Szeredi) [1731620]
-- [net] sunrpc: fix null-string checks on svc_process trace event (Desnes Augusto Nunes do Rosario) [1733275]
-- [fs] nfs/nfsd/sunrpc: enforce transport requirements for NFSv4 (Desnes Augusto Nunes do Rosario) [1733275]
-- [fs] sunrpc: turn bitfield flags in svc_version into bools (Desnes Augusto Nunes do Rosario) [1733275]
-- [net] sunrpc: Re-purpose trace_svc_process (Desnes Augusto Nunes do Rosario) [1733275]
-- [fs] autofs: add ignore mount option (Ian Kent) [1388149]
-- [fs] aio: get rid of unnecessary locking in aio_read_events_ring (Jeff Moyer) [1720750]
-- [fs] kernfs: don't set dentry->d_fsdata (Carlos Maiolino) [1656062]
-- [fs] kernfs: deal with kernfs_fill_super() failures (Carlos Maiolino) [1656062]
-- [fs] xfs: refactor xfs_buf_log_item reference count handling (Bill O'Donnell) [1583799]
-- [fs] xfs: clean up xfs_trans_brelse() (Bill O'Donnell) [1583799]
-- [fs] xfs: don't unlock invalidated buf on aborted tx commit (Bill O'Donnell) [1583799]
-- [hwtracing] tracing: Pass export pointer as argument to ->write() (Jiri Olsa) [1514700]
-- [hwtracing] stm class: ftrace: Add ftrace-export-over-stm driver (Jiri Olsa) [1514700]
-- [kernel] tracing: Add hook to function tracing for other subsystems to use (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix a module refcount leak in policy creation error path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: heartbeat: Fix whitespace (Jiri Olsa) [1514700]
-- [hwtracing] stm class: p_sys-t: Add support for CLOCKSYNC packets (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Add MIPI SyS-T protocol support (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Switch over to the protocol driver (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Factor out default framing protocol (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Add a helper for writing data packets (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Introduce framing protocol drivers (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Clean up stp_configfs_init (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Clarify configfs root type/operations names (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Rework policy node fallback (Jiri Olsa) [1514700]
-- [hwtracing] stm: fix build error on some arches (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Use vmalloc for the master map (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Make dummy's master/channel ranges configurable (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix a use-after-free (Jiri Olsa) [1514700]
-- [hwtracing] stm: Potential read overflow in stm_char_policy_set_ioctl() (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Fix an off-by-one in attribute store (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Ice Lake PCH support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix resource handling for ACPI glue layer (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix device removal logic (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Use correct device when freeing buffers (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add ACPI glue layer (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Allow forcing host mode through drvdata (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Pick up irq number from resources (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Don't touch switch routing in host mode (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Use correct method of finding hub (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Lewisburg PCH support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Cedar Fork PCH support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Perform time resync on capture start (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add global activate/deactivate callbacks for the glue layers (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Use drvdata for quirks (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Cannon Lake PCH-LP support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Cannon Lake PCH-H support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pti: Support Low Power Path output port type (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Enumerate Low Power Path output port type (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Use the real device in case of IOMMU domain allocation (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Make the switch allocate its subdevices (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Make SOURCE devices children of the root device (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Streamline the subdevice tree accessors (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Output devices without ports don't need assigning (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Enable bus mastering (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: use dev_groups and not dev_attrs for bus_type (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Gemini Lake support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Denverton SOC support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Don't leak module refcount on failure to activate (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Mark sth_stm_packet() with notrace (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: gth: Handle host mode correctly (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Support Host Debugger mode of operation (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Constify subdevices (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Kaby Lake PCH-H support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix a deadlock in modprobing (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Document output device callbacks (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: gth: Fix a source comment (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add runtime power management handling (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Broxton-M SOC support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Release resources on removal (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Set fops::owner to prevent module from unloading (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Hold output driver module reference while capture is active (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Serialize enabling/disabling (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix activating a subdevice without a driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pti: Create sysfs attributes using core driver's facility (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Create sysfs attributes using core driver's facility (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Allow subdevice drivers to bring in own attribute groups (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Handle kstrndup() failure (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pti: Do remove sysfs group on device removal (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Use real device index in the node names (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Set root device's drvdata early (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: sth: Sanitize packet callback's return values (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Release resources on read error (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Fix offset for wrapped block (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Update scratchpad bits according to enabled output activity (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: gth: Remove commented-out code (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Depend on HAS_IOMEM (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Broxton SOC support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Apollo Lake SOC support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: INTEL_TH should depend on HAS_DMA (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Check for NULL instead of ERR_PTR (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix integer mismatch warnings (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add PTI output driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add Memory Storage Unit driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add Software Trace Hub driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add Global Trace Hub driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add pci glue layer for Intel(R) Trace Hub (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add driver infrastructure for Intel(R) Trace Hub devices (Jiri Olsa) [1514700]
-- [hwtracing] stm: Mark the functions of writing STM with notrace (Jiri Olsa) [1514700]
-- [hwtracing] stm dummy: Mark dummy_stm_packet() with notrace (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix device leak in open error path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Add runtime power management handling (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Support devices that override software assigned masters (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Remove unnecessary pointer increment (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix stm device initialization order (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Do not leak the chrdev in error path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Remove a pointless line (Jiri Olsa) [1514700]
-- [hwtracing] stm class: stm_heartbeat: Make nr_devs parameter read-only (Jiri Olsa) [1514700]
-- [hwtracing] stm class: dummy_stm: Make nr_dummies parameter read-only (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix integer boundary checks for master range (Jiri Olsa) [1514700]
-- [hwtracing] stm class: dummy_stm: Add link callback for fault injection (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Plug stm device's unlink callback (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix a race in unlinking (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix unbalanced module/device refcounting (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Guard output assignment against concurrency (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix unlocking braino in the error path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Add heartbeat stm source device (Jiri Olsa) [1514700]
-- [hwtracing] stm class: dummy_stm: Create multiple devices (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Support devices with multiple instances (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Use driver's packet callback return value (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix master deallocation in device unregistering (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Use a signed return type for stm_find_master_chan (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Prevent user-controllable allocations (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix an off-by-one in master array allocation (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix link list locking (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix locking in unbinding policy path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Select CONFIG_SRCU (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Hide STM-specific options if STM is disabled (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Select configfs (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Mark src::link __rcu (Jiri Olsa) [1514700]
-- [hwtracing] stm class: stm_console: Add kernel-console-over-stm driver (Jiri Olsa) [1514700]
-- [hwtracing] stm class: dummy_stm: Add dummy driver for testing stm class (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Introduce an abstraction for System Trace Module devices (Jiri Olsa) [1514700]
-
-* Tue Aug 13 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1073.el7]
-- [scsi] scsi: core: set result when the command cannot be dispatched (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_transport_fc: nvme: display FC-NVMe port roles (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Quiesce warning if device does not report optimal I/O size (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Optimal I/O size should be a multiple of physical block size (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Fix typo in sd_first_printk() (Ewan Milne) [1737602]
-- [scsi] scsi: sd: fix entropy gathering for most rotational disks (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Fix cache_type_store() (Ewan Milne) [1737602]
-- [scsi] scsi: core: Remove scsi_block_when_processing_errors: message (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Contribute to randomness when running rotational device (Ewan Milne) [1737602]
-- [scsi] scsi: st: remove redundant pointer STbuffer (Ewan Milne) [1737602]
-- [scsi] scsi: sg: fix minor memory leak in error path (Ewan Milne) [1737602]
-- [scsi] scsi: core: check for equality of result byte values (Ewan Milne) [1737602]
-- [scsi] scsi: sg: clean up gfp_mask in sg_build_indirect (Ewan Milne) [1737602]
-- [scsi] scsi: core: sanitize++ in progress (Ewan Milne) [1737602]
-- [scsi] scsi: sg: allocate with __GFP_ZERO in sg_build_indirect() (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Defer spinning up drive while SANITIZE is in progress (Ewan Milne) [1737602]
-- [scsi] scsi: core: remove reference to scsi_show_extd_sense() (Ewan Milne) [1737602]
-- [scsi] scsi: core: Make scsi_result_to_blk_status() recognize CONDITION MET (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Remember that READ CAPACITY(16) succeeded (Ewan Milne) [1737602]
-- [scsi] scsi: core: Make SCSI Status CONDITION MET equivalent to GOOD (Ewan Milne) [1737602]
-- [scsi] scsi: core: use blk_mq_requeue_request in __scsi_queue_insert (Ewan Milne) [1737602]
-- [scsi] scsi: core: scsi_get_device_flags_keyed(): Always return device flags (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_devinfo: cleanly zero-pad devinfo strings (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_devinfo: handle non-terminated strings (Ewan Milne) [1737602]
-- [scsi] scsi: st: fix kernel-doc mismatch (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_error: DID_SOFT_ERROR comment clean up (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_error: Handle power-on reset unit attention (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_error: Do not retry illegal function error (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_devinfo: fixup string compare (Ewan Milne) [1737602]
-- [scsi] scsi: update description of logging_level bits (Ewan Milne) [1737602]
-- [scsi] scsi: ILLEGAL REQUEST + ASC==27 => target failure (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_transport_fc: Also check for NOTPRESENT in fc_remote_port_add() (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_transport_fc: set scsi_target_id upon rescan (Ewan Milne) [1737602]
-- [scsi] scsi: sg: fixup infoleak when using SG_GET_REQUEST_TABLE (Ewan Milne) [1737602]
-- [scsi] scsi: scsi-mq: Always unprepare before requeuing a request (Ewan Milne) [1737602]
-- [scsi] scsi: fix comment in scsi_device_set_state() (Ewan Milne) [1737602]
-- [scsi] scsi: st: fix blk_get_queue usage (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_transport_fc: return -EBUSY for deleted vport (Ewan Milne) [1737602]
-- [scsi] scsi: Skip deleted devices in __scsi_device_lookup (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Fix capacity calculation with 32-bit sector_t (Ewan Milne) [1737602]
-- [scsi] scsi: sr: Sanity check returned mode data (Ewan Milne) [1737602]
-- [scsi] scsi: sd: improve TUR handling in sd_check_events (Ewan Milne) [1737602]
-- [scsi] scsi_lib: untangle 0 and BLK_MQ_RQ_QUEUE_OK (Ewan Milne) [1737602]
-- [scsi] scsi: Fix use-after-free (Ewan Milne) [1737602]
-- [scsi] scsi: move function declarations to scsi_priv.h (Ewan Milne) [1737602]
-- [scsi] scsi: blacklist all RDAC devices for BLIST_NO_ULD_ATTACH (Ewan Milne) [1737602]
-- [scsi] SCSI: fix new bug in scsi_dev_info_list string matching (Ewan Milne) [1737602]
-- [scsi] st: clear ILI if Medium Error (Ewan Milne) [1737602]
-- [scsi] scsi-trace: Decode MAINTENANCE_IN and MAINTENANCE_OUT commands (Ewan Milne) [1737602]
-- [scsi] scsi: fc: use get/put_unaligned64 for wwn access (Ewan Milne) [1737602]
-- [scsi] scsi: remove scsi_show_sense_hdr() (Ewan Milne) [1737602]
-- [scsi] scsi: lpfc: Update lpfc version to 12.0.0.13 (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix BFS crash with DIX enabled (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix FDMI fc4type for nvme support (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix fcp_rsp_len checking on lun reset (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix incorrect logical link speed on trunks when links down (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix memory leak in abnormal exit path from lpfc_eq_create (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Rework misleading nvme not supported in firmware message (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix hardlockup in scsi_cmd_iocb_cmpl (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Prevent 'use after free' memory overwrite in nvmet LS handling (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix PT2PT PLOGI collison stopping discovery (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Revert message logging on unsupported topology (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix nvmet target abort cmd matching (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix alloc context on oas lun creations (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Update lpfc version to 12.0.0.12 (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: add check for loss of ndlp when sending RRQ (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: correct rcu unlock issue in lpfc_nvme_info_show (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: resolve lockdep warnings (Dick Kennedy) [1734049]
-- [scsi] lpfc: Add lockdep assertions (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Make lpfc_sli4_oas_verify static (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix a recently introduced compiler warning (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix missing wakeups on abort threads (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Remove unused functions (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Remove set-but-not-used variables (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Move trunk_errmsgfrom a header file into a .c file (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Annotate switch/case fall-through (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix indentation and balance braces (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Declare local functions static (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: avoid uninitialized variable warning (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: change snprintf to scnprintf for possible overflow (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fixup eq_clr_intr references (Dick Kennedy) [1734049]
-- [scsi] scsi: be2iscsi: lpfc: fix typo (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Update Copyright in driver version (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Enhance 6072 log string (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Add loopback testing to trunking mode (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix link speed reporting for 4-link trunk (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix handling of trunk links state reporting (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix protocol support on G6 and G7 adapters (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Correct boot bios information to FDMI registration (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix HDMI2 registration string for symbolic name (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix fc4type information for FDMI (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix FDMI manufacturer attribute value (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix driver crash in target reset handler (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Correct localport timeout duration error (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Convert bootstrap mbx polling from msleep to udelay (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Coordinate adapter error handling with offline handling (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Stop adapter if pci errors detected (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix SLI3 commands being issued on SLI4 devices (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix use-after-free mailbox cmd completion (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix error codes in lpfc_sli4_pci_mem_setup() (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: resolve static checker warning in lpfc_sli4_hba_unset (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Correct __lpfc_sli_issue_iocb_s4 lockdep check (Dick Kennedy) [1734049]
-- [scsi] lpfc: Add lockdep assertions (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: cleanup: Remove excess check on NVME io submit code path (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: cleanup: remove nrport from nvme command structure (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: no need to check return value of debugfs_create functions (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: nvmet: avoid hang / use-after-free when destroying targetport (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: nvme: avoid hang / use-after-free when destroying localport (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: lpfc_sli: Mark expected switch fall-throughs (Dick Kennedy) [1734049]
-
-* Mon Aug 12 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1072.el7]
-- [scsi] qla2xxx: Update driver version to 10.01.00.18.07.8-k (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Reject EH_{abort|device_reset|target_request} (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix Relogin to prevent modifying scan_state flag (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Correct error handling during initialization failures (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix NVMe port discovery after a short device port loss (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use common update-firmware-options routine for ISP27xx+ (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix hang in fcport delete path (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Allow NVMe IO to resume with short cable pull (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix abort timeout race condition (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix different size DMA Alloc/Unmap (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix DMA unmap leak (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Replace vmalloc + memset with vzalloc (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove unnecessary null check (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: move IO flush to the front of NVME rport unregistration (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix NVME cmd and LS cmd timeout race condition (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: on session delete, return nvme cmd (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix kernel crash after disconnecting NVMe devices (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: remove double assignment in qla2x00_update_fcport (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix hardlockup in abort command during driver remove (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Avoid that qlt_send_resp_ctio() corrupts memory (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Complain loudly about reference count underflow (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix race conditions in the code for aborting SCSI commands (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Split the __qla2x00_abort_all_cmds() function (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove a set-but-not-used variable (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use an on-stack completion in qla24xx_control_vp() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Check the size of firmware data structures at compile time (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Pass little-endian values to the firmware (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix use-after-free issues in qla2xxx_qpair_sp_free_dma() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix a qla24xx_enable_msix() error path (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Log the status code if a firmware command fails (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Avoid that Coverity complains about dereferencing a NULL rport pointer (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Avoid that qla2x00_mem_free() crashes if called twice (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Make qla2x00_mem_free() easier to verify (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: NULL check before some freeing functions is not needed (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove the fcport test from qla_nvme_abort_work() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move qla2x00_is_reserved_id() from qla_inline.h into qla_init.c (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move qla2x00_clear_loop_id() from qla_inline.h into qla_init.c (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove a set-but-not-used variable (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Declare qla2x00_find_new_loop_id() static (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move qla2x00_set_reserved_loop_ids() definition (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix a format specifier (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Update two source code comments (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix read offset in qla24xx_load_risc_flash() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move qla2x00_set_fcport_state() from a .h into a .c file (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove two superfluous casts (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove qla_tgt_cmd.data_work and qla_tgt_cmd.data_work_free (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Declare qla24xx_build_scsi_crc_2_iocbs() static (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move the port_state_strdefinition from a .h to a .c file (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Insert spaces where required (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix formatting of pointer types (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Leave a blank line after declarations (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use tabs to indent code (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix FC-AL connection target discovery (Himanshu Madhani) [1729270]
-- [scsi] scsi: tcm_qla2xxx: Minimize #include directives (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Unregister chrdev if module initialization fails (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use get/put_unaligned where appropriate (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Make qla2x00_process_response_queue() easier to read (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Declare local symbols static (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use ARRAY_SIZE() in the definition of QLA_LAST_SPEED (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove a comment that refers to the SCSI host lock (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: fix spelling mistake "alredy" -> "already" (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove useless set memory to zero use memset() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix driver unload when FC-NVMe LUNs are connected (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Cleanup redundant qla2x00_abort_all_cmds during unload (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Set remote port devloss timeout to 0 (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Cleanup fcport memory to prevent leak (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use mutex protection during qla2x00_sysfs_read_fw_dump() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix fw dump corruption (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Further limit FLASH region write access from SysFS (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Disable T10-DIF feature with FC-NVMe during probe (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Increase the max_sgl_segments to 1024 (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Reset the FCF_ASYNC_{SENT|ACTIVE} flags (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Set the qpair in SRB to NULL when SRB is released (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Set the SCSI command result before calling the command done (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Simplify conditional check again (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix a small typo in qla_bsg.c (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Secure flash update support for ISP28XX (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add 28xx flash primary/secondary status/image mechanism (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Simplification of register address used in qla_tmpl.c (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Correction and improvement to fwdt processing (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Update flash read/write routine (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add support for multiple fwdump templates/segments (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Cleanups for NVRAM/Flash read/write path (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Correctly report max/min supported speeds (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add Serdes support for ISP28XX (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add Device ID for ISP28XX (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix routine qla27xx_dump_{mpi|ram}() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove FW default template (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add fw_attr and port_no SysFS node (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: check for kstrtol() failure (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: avoid printf format warning (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix panic in qla_dfs_tgt_counters_show (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add new FW dump template entry types (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix code indentation for qla27xx_fwdt_entry (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move marker request behind QPair (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Prevent SysFS access when chip is down (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add support for setting port speed (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Prevent multiple ADISC commands per session (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Check for FW started flag before aborting (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix unload when NVMe devices are configured (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add First Burst support for FC-NVMe devices (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: remove redundant null check on pointer sess (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move debug messages before sending srb preventing panic (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix fw options handle eh_bus_reset() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Restore FAWWPN of Physical Port only for loop down (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Prevent memory leak for CT req/rsp allocation (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix SRB allocation flag to avoid sleeping in IRQ context (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: allow session delete to finish before create (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: fix fcport null pointer access (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: flush IO on chip reset or sess delete (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix session cleanup hang (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Change default ZIO threshold (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix N2N target discovery with Local loop (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: no need to check return value of debugfs_create functions (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix DMA error when the DIF sg buffer crosses 4GB boundary (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add protection mask module parameters (Himanshu Madhani) [1729270]
-
-* Sat Aug 10 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1071.el7]
-- [kernel] kernel/sysctl.c: fix proc_do_large_bitmap for large input buffers (Eric Sandeen) [1737289]
-- [misc] objtool: Skip checking of dubious files (Josh Poimboeuf) [1710547]
-- [tools] objtool: Disable retpoline-related warnings (Josh Poimboeuf) [1710547]
-- [tools] objtool: Sync instruction decoder (Josh Poimboeuf) [1710547]
-- [kernel] sched/deadline: Correctly handle active 0-lag timers (Phil Auld) [1692252]
-- [kernel] sched/core: Allow __sched_setscheduler() in interrupts when PI is not used (Phil Auld) [1722234]
-- [kernel] sched, dl: Convert switched_{from, to}_dl() / prio_changed_dl() to balance callbacks (Phil Auld) [1722234]
-- [kernel] sched,dl: Remove return value from pull_dl_task() (Phil Auld) [1722234]
-- [kernel] sched, rt: Convert switched_{from, to}_rt() / prio_changed_rt() to balance callbacks (Phil Auld) [1722234]
-- [kernel] sched,rt: Remove return value from pull_rt_task() (Phil Auld) [1722234]
-- [kernel] sched: Allow balance callbacks for check_class_changed() (Phil Auld) [1722234]
-- [kernel] sched: Use replace normalize_task() with __sched_setscheduler() (Phil Auld) [1722234]
-- [kernel] sched: Handle priority boosted tasks proper in setscheduler() (Phil Auld) [1722234]
-- [kernel] sched: Fix broken setscheduler() (Phil Auld) [1722234]
-- [kernel] sched: Consider pi boosting in setscheduler() (Phil Auld) [1722234]
-- [kernel] sched: Replace post_schedule with a balance callback list (Phil Auld) [1722234]
-- [kernel] sched: Guarantee task priority in pick_next_task() (Phil Auld) [1722234]
-- [kernel] sched: Remove some #ifdeffery (Phil Auld) [1722234]
-- [kernel] sched: Clean up idle task SMP logic (Phil Auld) [1722234]
-- [kernel] sched: Fix hotplug task migration (Phil Auld) [1722234]
-- [kernel] sched/fair: Remove idle_balance() declaration in sched.h (Phil Auld) [1722234]
-- [kernel] sched: Push down pre_schedule() and idle_balance() (Phil Auld) [1722234]
-- [kernel] sched/fair: Optimize cgroup pick_next_task_fair() (Phil Auld) [1722234]
-- [kernel] sched/fair: Clean up the __clear_buddies_*() functions (Phil Auld) [1722234]
-- [kernel] sched: Push put_prev_task() into pick_next_task() (Phil Auld) [1722234]
-- [kernel] sched: Move rq->idle_stamp up to the core (Phil Auld) [1722234]
-- [kernel] sched: Fix race in idle_balance() (Phil Auld) [1722234]
-- [kernel] sched: Remove 'cpu' parameter from idle_balance() (Phil Auld) [1722234]
-- [kernel] sched/fair: Reset se-depth when task switched to FAIR (Phil Auld) [1722234]
-- [kernel] sched/fair: Track cgroup depth (Phil Auld) [1722234]
-
-* Fri Aug 09 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1070.el7]
-- [mm] mm/page_idle.c: fix oops because end_pfn is larger than max_pfn (Rafael Aquini) [1730471]
-- [mm] mm/mlock.c: mlockall error for flag MCL_ONFAULT (Rafael Aquini) [1730471]
-- [mm] hugetlb: use same fault hash key for shared and private mappings (Rafael Aquini) [1730471]
-- [mm] hugetlbfs: on restore reserve error path retain subpool reservation (Rafael Aquini) [1730471]
-- [mm] mm/memory.c: fix modifying of page protection by insert_pfn() (Rafael Aquini) [1730471]
-- [mm] mm, swap: bounds check swap_info array accesses to avoid NULL derefs (Rafael Aquini) [1730471]
-- [mm] mm/slub.c: remove an unused addr argument (Rafael Aquini) [1730471]
-- [mm] hugetlbfs: fix races and page leaks during migration (Rafael Aquini) [1730471]
-- [mm] mm, oom: fix use-after-free in oom_kill_process (Rafael Aquini) [1730471]
-- [mm] percpu: convert spin_lock_irq to spin_lock_irqsave (Rafael Aquini) [1730471]
-- [mm] mm/swapfile.c: use kvzalloc for swap_info_struct allocation (Rafael Aquini) [1730471]
-- [mm] hugetlbfs: fix kernel BUG at fs/hugetlbfs/inode.c:444! (Rafael Aquini) [1730471]
-- [mm] mm: Fix warning in insert_pfn() (Rafael Aquini) [1730471]
-- [mm] hugetlbfs: dirty pages as they are added to pagecache (Rafael Aquini) [1730471]
-- [mm] mm/swapfile.c: fix swap_count comment about nonexistent SWAP_HAS_CONT (Rafael Aquini) [1730471]
-- [mm] slab: __GFP_ZERO is incompatible with a constructor (Rafael Aquini) [1730471]
-- [mm] mm: fix the NULL mapping case in __isolate_lru_page() (Rafael Aquini) [1730471]
-- [mm] mm/filemap.c: fix NULL pointer in page_cache_tree_insert() (Rafael Aquini) [1730471]
-- [fs] block_invalidatepage(): only release page if the full page was invalidated (Rafael Aquini) [1730471]
-- [mm] mm/mempolicy.c: avoid use uninitialized preferred_node (Rafael Aquini) [1730471]
-- [mm] mm: pin address_space before dereferencing it while isolating an LRU page (Rafael Aquini) [1730471]
-- [fs] fs/hugetlbfs/inode.c: change put_page/unlock_page order in hugetlbfs_fallocate() (Rafael Aquini) [1730471]
-- [mm] mm: do not rely on preempt_count in print_vma_addr (Rafael Aquini) [1730471]
-- [mm] mm, swap: fix race between swap count continuation operations (Rafael Aquini) [1730471]
-- [mm] mm: meminit: mark init_reserved_page as __meminit (Rafael Aquini) [1730471]
-- [mm] mm/vmstat.c: fix wrong comment (Rafael Aquini) [1730471]
-- [mm] mm, hugetlb: do not allocate non-migrateable gigantic pages from movable zones (Rafael Aquini) [1730471]
-- [mm] mm: always flush VMA ranges affected by zap_page_range (Rafael Aquini) [1730471]
-- [mm] mm/mremap: fail map duplication attempts for private mappings (Rafael Aquini) [1730471]
-- [mm] mm/mmap.c: do not blow on PROT_NONE MAP_FIXED holes in the stack (Rafael Aquini) [1730471]
-- [mm] mm: numa: avoid waiting on freed migrated pages (Rafael Aquini) [1730471]
-- [mm] mm/memory-failure.c: use compound_head() flags for huge pages (Rafael Aquini) [1730471]
-- [fs] fs/block_dev: always invalidate cleancache in invalidate_bdev() (Rafael Aquini) [1730471]
-- [mm] percpu: remove unused chunk_alloc parameter from pcpu_get_pages() (Rafael Aquini) [1730471]
-- [mm] percpu: acquire pcpu_lock when updating pcpu_nr_empty_pop_pages (Rafael Aquini) [1730471]
-- [mm] mm: do not access page->mapping directly on page_endio (Rafael Aquini) [1730471]
-- [mm] mm/page_alloc: fix nodes for reclaim in fast path (Rafael Aquini) [1730471]
-- [mm] mm: alloc_contig_range: allow to specify GFP mask (Rafael Aquini) [1730471]
-- [mm] mm: vmscan: scan dirty pages even in laptop mode (Rafael Aquini) [1730471]
-- [mm] mm/mempolicy.c: do not put mempolicy before using its nodemask (Rafael Aquini) [1730471]
-- [mm] mm: fix set pageblock migratetype in deferred struct page init (Rafael Aquini) [1730471]
-- [mm] mm: delete unnecessary and unsafe init_tlb_ubc() (Rafael Aquini) [1730471]
-- [kernel] mm, mempolicy: task->mempolicy must be NULL before dropping final reference (Rafael Aquini) [1730471]
-- [mm] mm: use phys_addr_t for reserve_bootmem_region() arguments (Rafael Aquini) [1730471]
-- [mm] mm/huge_memory: replace VM_NO_THP VM_BUG_ON with actual VMA check (Rafael Aquini) [1730471]
-- [mm] mm: soft-offline: check return value in second __get_any_page() call (Rafael Aquini) [1730471]
-- [include] include/linux/memblock.h: fix ordering of 'flags' argument in comments (Rafael Aquini) [1730471]
-- [mm] rmap: fix theoretical race between do_wp_page and shrink_active_list (Rafael Aquini) [1730471]
-- [mm] mm/mremap.c: clean up goto just return ERR_PTR (Rafael Aquini) [1730471]
-- [mm] mremap should return -ENOMEM when __vm_enough_memory fail (Rafael Aquini) [1730471]
-- [mm] writeback: fix possible underflow in write bandwidth calculation (Rafael Aquini) [1730471]
-- [mm] writeback: add missing INITIAL_JIFFIES init in global_update_bandwidth() (Rafael Aquini) [1730471]
-- [mm] mm/memory.c: actually remap enough memory (Rafael Aquini) [1730471]
-- [mm] mm/compaction: fix wrong order check in compact_finished() (Rafael Aquini) [1730471]
-- [mm] mm, vmscan: prevent kswapd livelock due to pfmemalloc-throttled process being killed (Rafael Aquini) [1730471]
-- [mm] mm: fix anon_vma_clone() error treatment (Rafael Aquini) [1730471]
-- [mm] mm, thp: fix collapsing of hugepages on madvise (Rafael Aquini) [1730471]
-- [mm] cgroup/kmemleak: add kmemleak_free() for cgroup deallocations (Rafael Aquini) [1730471]
-- [mm] OOM, PM: OOM killed task shouldn't escape PM suspend (Rafael Aquini) [1730471]
-- [mm] mm, compaction: pass gfp mask to compact_control (Rafael Aquini) [1730471]
-- [mm] mm: rename allocflags_to_migratetype for clarity (Rafael Aquini) [1730471]
-- [mm] mm: page_alloc: abort fair zone allocation policy when remotes nodes are encountered (Rafael Aquini) [1730471]
-- [mm] mm: vmscan: only update per-cpu thresholds for online CPU (Rafael Aquini) [1730471]
-- [mm] mm, thp: replace smp_mb after atomic_add by smp_mb__after_atomic (Rafael Aquini) [1730471]
-- [mm] mm, thp: move invariant bug check out of loop in __split_huge_page_map (Rafael Aquini) [1730471]
-- [mm] thp: consolidate assert checks in __split_huge_page() (Rafael Aquini) [1730471]
-- [mm] mm: fix sleeping function warning from __put_anon_vma (Rafael Aquini) [1730471]
-- [mm] mm: cleanup add_to_page_cache_locked() (Rafael Aquini) [1730471]
-- [mm] mm: mempolicy: turn vma_set_policy() into vma_dup_policy() (Rafael Aquini) [1730471]
-- [mm] mm: mempool: update the kmemleak stack trace for mempool allocations (Rafael Aquini) [1618438]
-- [lib] lib: radix-tree: update the kmemleak stack trace for radix tree allocations (Rafael Aquini) [1618438]
-- [mm] mm: kmemleak: introduce kmemleak_update_trace() (Rafael Aquini) [1618438]
-- [mm] mm: kmemleak: use u to print ->checksum (Rafael Aquini) [1618438]
-
-* Thu Aug 08 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1069.el7]
-- [kernel] sched: Reduce contention in update_cfs_rq_blocked_load() (Marcelo Tosatti) [1734515]
-- [x86] cpuidle-haltpoll: disable host side polling when kvm virtualized (Marcelo Tosatti) [1734501]
-- [kvm] kvm: x86: add host poll control msrs (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: add haltpoll governor (Marcelo Tosatti) [1734501]
-- [cpuidle] governors: unify last_state_idx (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: add poll_limit_ns to cpuidle_device structure (Marcelo Tosatti) [1734501]
-- [cpuidle] add cpuidle-haltpoll driver (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Fix default time limit (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Disregard disable idle states (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Revise loop termination condition (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: menu: Fix wakeup statistics updates for polling state (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Avoid invoking local_clock() too often (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Add time limit to poll_idle() (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: Move polling state initialization code to separate file (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: Remove time measurement in poll state (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: Set polling in poll_idle (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: dont call poll_idle_init() for every cpu (Marcelo Tosatti) [1734501]
-- [documentation] Documentation: Add swapgs description to the Spectre v1 documentation (Waiman Long) [1724510]
-- [documentation] Documentation: Add section about CPU vulnerabilities for Spectre (Waiman Long) [1724510]
-- [x86] x86/speculation/swapgs: Exclude ATOMs from speculation through SWAPGS (Waiman Long) [1724510]
-- [x86] x86/speculation: Enable Spectre v1 swapgs mitigations (Waiman Long) [1724510] {CVE-2019-1125}
-- [x86] x86/speculation: Prepare entry code for Spectre v1 swapgs mitigations (Waiman Long) [1724510] {CVE-2019-1125}
-- [x86] x86/feature: Relocate X86_FEATURE_INVPCID_SINGLE (Waiman Long) [1724510] {CVE-2019-1125}
-- [net] ipv4: Fix memory leak in network namespace dismantle (Sabrina Dubroca) [1715925]
-- [net] ipv6: icmp: Updating pmtu for link local route (Guillaume Nault) [1722686]
-- [net] tcp: be more careful in tcp_fragment() (Marcelo Leitner) [1732106]
-- [net] netfilter/ipvs: clear ipvs_property flag when SKB net namespace changed (Davide Caratti) [1724554]
-- [net] sctp: count data bundling sack chunk for outctrlchunks (Xin Long) [1722706]
-- [net] ipv6: fix a lockdep splat (Paolo Abeni) [1725192]
-- [net] check before dereferencing netdev_ops during busy poll (Matteo Croce) [1718118]
-- [net] sched: cls_flower: fix infinite loop in fl_walk() (Davide Caratti) [1712737]
-- [net] sched: act_api: don't go to NULL chains (Davide Caratti) [1712918]
-
-* Wed Aug 07 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1068.el7]
-- [pci] PCI: Probe bridge window attributes once at enumeration-time (Myron Stowe) [1730931]
-- [misc] VMCI: Fix integer overflow in VMCI handle arrays (Cathy Avery) [1729586]
-- [tty] tty/hvc_console: fix console lock ordering with spinlock (Pankaj Gupta) [1561754]
-- [x86] x86/hyperv: Suppress "PCI: Fatal: No config space access function found" (Raghavendra Rao) [1733597]
-- [powerpc] Wire up sys_seccomp(), sys_getrandom() and sys_memfd_create() (Laurent Vivier) [1717952]
-- [s390] virtio/s390: fix race on airq_areas (Thomas Huth) [1642860]
-- [s390] virtio/s390: make airq summary indicators DMA (Hendrik Brueckner) [1642860]
-- [s390] virtio/s390: use DMA memory for ccw I/O and classic notifiers (Hendrik Brueckner) [1642860]
-- [s390] virtio/s390: add indirection to indicators access (Hendrik Brueckner) [1642860]
-- [s390] s390/airq: use DMA memory for adapter interrupts (Hendrik Brueckner) [1642860]
-- [s390] s390/cio: add basic protected virtualization support (Hendrik Brueckner) [1642860]
-- [s390] s390/cio: introduce DMA pools to cio (Hendrik Brueckner) [1642860]
-- [s390] s390/mm: force swiotlb for protected virtualization (Hendrik Brueckner) [1642860]
-- [s390] virtio/s390: DMA support for virtio-ccw (Hendrik Brueckner) [1642860]
-- [s390] virtio/s390: use vring_create_virtqueue (Hendrik Brueckner) [1642860]
-- [s390] s390/virtio: handle find on invalid queue gracefully (Hendrik Brueckner) [1642860]
-- [virtio] virtio: Honour 'may_reduce_num' in vring_create_virtqueue (Hendrik Brueckner) [1642860]
-- [block] virtio-blk: Consider virtio_max_dma_size() for maximum segment size (Hendrik Brueckner) [1642860]
-- [virtio] virtio: Introduce virtio_max_dma_size() (Hendrik Brueckner) [1642860]
-- [dma] dma: Introduce dma_max_mapping_size() (Hendrik Brueckner) [1642860]
-- [lib] swiotlb: Introduce swiotlb_max_mapping_size() (Hendrik Brueckner) [1642860]
-- [x86] kvm: x86: ioapic: Fix level-triggered EOI and IOAPIC reconfigure race (Peter Xu) [1729417]
-- [hv] hv: vmbus: Implement Direct Mode for stimer0 (Vitaly Kuznetsov) [1712344]
-- [x86] kvm: x86: vmx: fix vpid leak (Vitaly Kuznetsov) [1716188]
-- [netdrv] virtio-net: Fix operstate for virtio when no VIRTIO_NET_F_STATUS (Jens Freimann) [1607809]
-- [md] return -ENODEV if rdev has no mddev assigned (Nigel Croxon) [1717767]
-- [linux] sg: remove ->sg_magic member (Gopal Tiwari) [1703366]
-
-* Tue Aug 06 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1067.el7]
-- [documentation] dynamic-debug-howto.txt: update since new wildcard support (Joe Lawrence) [1719948]
-- [lib] dynamic_debug: add wildcard support to filter files/functions/modules (Joe Lawrence) [1719948]
-- [lib] lib/parser.c: add match_wildcard() function (Joe Lawrence) [1719948]
-- [tools] selftests/livepatch: Add functions.sh to TEST_PROGS_EXTENDED (Joe Lawrence) [1719948]
-- [tools] selftests/livepatch: use TEST_PROGS for test scripts (Joe Lawrence) [1719948]
-- [tools] livepatch/selftests: use "$@" to preserve argument list (Joe Lawrence) [1719948]
-- [kernel] livepatch: Module coming and going callbacks can proceed with all listed patches (Joe Lawrence) [1719948]
-- [lib] livepatch: Proper error handling in the shadow variables selftest (Joe Lawrence) [1719948]
-- [lib] livepatch: return -ENOMEM on ptr_id() allocation failure (Joe Lawrence) [1719948]
-- [kernel] livepatch: Introduce klp_for_each_patch macro (Joe Lawrence) [1719948]
-- [kernel] livepatch: core: Return EOPNOTSUPP instead of ENOSYS (Joe Lawrence) [1719948]
-- [samples] livepatch: samples: non static warnings fix (Joe Lawrence) [1719948]
-- [kernel] livepatch: Remove signal sysfs attribute (Joe Lawrence) [1719948]
-- [kernel] livepatch: Send a fake signal periodically (Joe Lawrence) [1719948]
-- [lib] selftests/livepatch: introduce tests (Joe Lawrence) [1719948]
-- [documentation] livepatch: Remove ordering (stacking) of the livepatches (Joe Lawrence) [1719948]
-- [documentation] livepatch: Atomic replace and cumulative patches documentation (Joe Lawrence) [1719948]
-- [kernel] livepatch: Remove Nop structures when unused (Joe Lawrence) [1719948]
-- [kernel] livepatch: Add atomic replace (Joe Lawrence) [1719948]
-- [kernel] livepatch: Use lists to manage patches, objects and functions (Joe Lawrence) [1719948]
-- [samples] livepatch: Simplify API by removing registration step (Joe Lawrence) [1719948]
-- [kernel] livepatch: Don't block the removal of patches loaded after a forced transition (Joe Lawrence) [1719948]
-- [kernel] livepatch: Consolidate klp_free functions (Joe Lawrence) [1719948]
-- [kernel] livepatch: Shuffle klp_enable_patch()/klp_disable_patch() code (Joe Lawrence) [1719948]
-- [kernel] livepatch: Change unsigned long old_addr -> void *old_func in struct klp_func (Joe Lawrence) [1719948]
-- [samples] livepatch: check kzalloc return values (Joe Lawrence) [1719948]
-- [kernel] livepatch: Replace synchronize_sched() with synchronize_rcu() (Joe Lawrence) [1719948]
-- [kernel] livepatch: Validate module/old func name length (Joe Lawrence) [1719948]
-- [kernel] livepatch: Remove reliable stacktrace check in klp_try_switch_task() (Joe Lawrence) [1719948]
-- [documentation] livepatch: Remove not longer valid limitations from the documentation (Joe Lawrence) [1719948]
-- [documentation] Doc: Fix double words in Documentation (Joe Lawrence) [1719948]
-- [documentation] Documentation: livepatch: add section about arch-specific code (Joe Lawrence) [1719948]
-- [documentation] Documentation: livepatch: outline Elf format and requirements for patch modules (Joe Lawrence) [1719948]
-- [ipc] ipc: drop non-RCU allocation (Vladis Dronov) [1733016]
-- [ipc] ipc/util.c: use kvfree() in ipc_rcu_free() (Vladis Dronov) [1733016]
-- [ipc] tree wide: use kvfree() than conditional kfree()/vfree() (Vladis Dronov) [1733016]
-- [ipc] do cyclic id allocation for the ipc object (Waiman Long) [1373519]
-- [ipc] conserve sequence numbers in ipcmni_extend mode (Waiman Long) [1373519]
-- [ipc] allow boot time extension of IPCMNI from 32k to 16M (Waiman Long) [1373519]
-- [ipc] IPCMNI limit check for semmni (Waiman Long) [1373519]
-- [ipc] IPCMNI limit check for msgmni and shmmni (Waiman Long) [1373519]
-- [ipc] util.c: further variable name cleanups (Waiman Long) [1373519]
-- [ipc] reorganize initialization of kern_ipc_perm.seq (Waiman Long) [1373519]
-- [kernel] ipc: Move IPCMNI from ipc.h into ipc/util.h (Waiman Long) [1373519]
-- [ipc] sysvipc: make get_maxid O(1) again (Waiman Long) [1373519]
-- [ipc] sysvipc: properly name ipc_addid() limit parameter (Waiman Long) [1373519]
-- [ipc] sysvipc: unteach ids->next_id for !CHECKPOINT_RESTORE (Waiman Long) [1373519]
-- [ipc] msg: increase MSGMNI, remove scaling (Waiman Long) [1373519]
-- [ipc] always handle a new value of auto_msgmni (Waiman Long) [1373519]
-- [ipc] convert use of typedef ctl_table to struct ctl_table (Waiman Long) [1373519]
-- [ipc] use device_initcall (Waiman Long) [1373519]
-- [ipc] delete seq_max field in struct ipc_ids (Waiman Long) [1373519]
-- [ipc] standardize code comments (Waiman Long) [1373519]
-- [ipc] whitespace cleanup (Waiman Long) [1373519]
-- [ipc] util.c: remove unnecessary work pending test (Waiman Long) [1373519]
-
-* Tue Aug 06 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1066.el7]
-- [fs] nfs: Cleanup if nfs_match_client is interrupted (Benjamin Coddington) [1695710]
-- [fs] nfs: Fix a double unlock from nfs_match, get_client (Benjamin Coddington) [1695710]
-- [fs] nfs: make nfs_match_client killable (Benjamin Coddington) [1695710]
-- [fs] nfsv4.1: Avoid false retries when RPC calls are interrupted (Benjamin Coddington) [1732427]
-- [fs] NFS4.1 handle interrupted slot reuse from ERR_DELAY (Benjamin Coddington) [1732427]
-- [fs] nfsv4.1: Fix the client behaviour on NFS4ERR_SEQ_FALSE_RETRY (Benjamin Coddington) [1732427]
-- [fs] xfs: don't ever put nlink > 0 inodes on the unlinked list (Carlos Maiolino) [1721498]
-- [fs] xfs: Initialize variables in xfs_alloc_get_rec before using them (Carlos Maiolino) [1721498]
-- [fs] xfs: ensure post-EOF zeroing happens after zeroing part of a file (Carlos Maiolino) [1721498]
-- [fs] xfs: don't trip over negative free space in xfs_reserve_blocks (Carlos Maiolino) [1721498]
-- [fs] xfs: allow empty transactions while frozen (Carlos Maiolino) [1721498]
-- [fs] xfs: xfs_iflush_abort() can be called twice on cluster writeback failure (Carlos Maiolino) [1721498]
-- [fs] xfs: More robust inode extent count validation (Carlos Maiolino) [1721498]
-- [fs] xfs: simplify xfs_bmap_punch_delalloc_range (Carlos Maiolino) [1721498]
-- [fs] xfs: update incore per-AG inode count (Carlos Maiolino) [1721498]
-- [fs] xfs: validate btree records on retrieval (Carlos Maiolino) [1721498]
-- [fs] xfs: push corruption -> ESTALE conversion to xfs_nfs_get_inode() (Carlos Maiolino) [1721498]
-- [fs] xfs: verify root inode more thoroughly (Carlos Maiolino) [1721498]
-- [fs] xfs: catch bad stripe alignment configurations (Carlos Maiolino) [1721498]
-- [fs] xfs: don't assert on corrupted unlinked inode list (Carlos Maiolino) [1721498]
-- [fs] xfs: explicitly pass buffer size to xfs_corruption_error (Carlos Maiolino) [1721498]
-- [fs] xfs: don't assert when on-disk btree pointers are garbage (Carlos Maiolino) [1721498]
-- [fs] xfs: strengthen btree pointer checks before use (Carlos Maiolino) [1721498]
-- [fs] xfs: introduce xfs_btree_debug_check_ptr (Carlos Maiolino) [1721498]
-- [fs] xfs: check directory bestfree information in the verifier (Carlos Maiolino) [1721498]
-- [fs] xfs: don't return garbage buffers in xfs_da3_node_read (Carlos Maiolino) [1721498]
-- [fs] xfs: don't ASSERT on short form btree root pointer of zero (Carlos Maiolino) [1721498]
-- [fs] xfs: btree lookup shouldn't ASSERT on empty btree nodes (Carlos Maiolino) [1721498]
-- [fs] xfs: xfs_alloc_get_rec should return EFSCORRUPTED for obvious bnobt corruption (Carlos Maiolino) [1721498]
-- [fs] xfs: remove redundant ASSERT on insufficient bestfree length in _leaf_addname (Carlos Maiolino) [1721498]
-- [fs] xfs: don't assert when reporting on-disk corruption while loading btree (Carlos Maiolino) [1721498]
-- [fs] xfs: verify AGI unlinked list contains valid blocks (Carlos Maiolino) [1721498]
-- [fs] xfs: xfs_rtword_t should be unsigned, not signed (Carlos Maiolino) [1721498]
-- [fs] xfs: fix inobt magic number check (Carlos Maiolino) [1721498]
-- [fs] xfs: fix double ijoin in xfs_inactive_symlink_rmt() (Carlos Maiolino) [1721498]
-- [fs] xfs: don't assert fail with AIL lock held (Carlos Maiolino) [1721498]
-- [fs] xfs: log item flags are racy (Carlos Maiolino) [1721498]
-- [fs] xfs: bmap debugging should never panic the system (Carlos Maiolino) [1721498]
-- [fs] xfs: print specific dqblk that failed verifiers (Carlos Maiolino) [1721498]
-- [fs] xfs: add full xfs_dqblk verifier (Carlos Maiolino) [1721498]
-- [fs] xfs: pass full xfs_dqblk to repair during quotacheck (Carlos Maiolino) [1721498]
-- [fs] xfs: check type in quota verifier during quotacheck (Carlos Maiolino) [1721498]
-- [fs] xfs: remove unused flags arg from xfs_dquot_verify (Carlos Maiolino) [1721498]
-- [fs] xfs: make xfs_buf_incore out of line (Carlos Maiolino) [1721498]
-- [fs] xfs: trace ATTR flags in xattr tracepoints (Carlos Maiolino) [1721498]
-- [fs] xfs: validate allocated inode number (Carlos Maiolino) [1721498]
-- [fs] xfs: fix intent use-after-free on abort (Carlos Maiolino) [1721498]
-- [fs] xfs: Remove "committed" argument of xfs_dir_ialloc (Carlos Maiolino) [1721498]
-- [fs] xfs: do not log/recover swapext extent owner changes for deleted inodes (Carlos Maiolino) [1721498]
-- [fs] xfs: clean up xfs_mount allocation and dynamic initializers (Carlos Maiolino) [1721498]
-- [fs] xfs: remove dead inode version setting code (Carlos Maiolino) [1721498]
-- [fs] xfs: don't accept inode buffers with suspicious unlinked chains (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor inode buffer verifier error logging (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor inode verifier error logging (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor bmap record validation (Carlos Maiolino) [1721498]
-- [fs] xfs: sanity-check the unused space before trying to use it (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor xfs_log_force_lsn (Carlos Maiolino) [1721498]
-- [fs] xfs: don't use XFS_BMAPI_ENTRIRE in xfs_get_blocks (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor xfs_log_force (Carlos Maiolino) [1721498]
-- [fs] xfs: merge _xfs_log_force_lsn and xfs_log_force_lsn (Carlos Maiolino) [1721498]
-- [fs] xfs: merge _xfs_log_force and xfs_log_force (Carlos Maiolino) [1721498]
-- [fs] xfs: remove the unused log_flushed variable in xfs_extent_busy_flush (Carlos Maiolino) [1721498]
-- [fs] xfs: remove an outdated comment for xfs_inode_item_committing (Carlos Maiolino) [1721498]
-- [fs] xfs: remove misleading comment text on xfs_inode_item_unlock (Carlos Maiolino) [1721498]
-- [fs] xfs: shutdown if block allocation overruns tx reservation (Carlos Maiolino) [1721498]
-- [fs] xfs: convert a few more directory asserts to corruption (Carlos Maiolino) [1721498]
-- [fs] xfs: don't iunlock the quota ip when quota block (Carlos Maiolino) [1721498]
-- [fs] xfs: remove unused m_dmevmask from xfs_mount struct (Carlos Maiolino) [1721498]
-- [fs] xfs: fall back to vmalloc when allocation log vector buffers (Carlos Maiolino) [1721498]
-- [fs] xfs: fix potential memory leak in mount option parsing (Carlos Maiolino) [1721498]
-- [fs] xfs: fix u32 type usage in sb validation function (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor inode verifier corruption error printing (Carlos Maiolino) [1721498]
-- [fs] Get rid of xfs_buf_log_item_t typedef (Carlos Maiolino) [1721498]
-- [fs] xfs: fix non-debug build compiler warnings (Carlos Maiolino) [1721498]
-- [fs] xfs: check sb_agblocks and sb_agblklog when validating superblock (Carlos Maiolino) [1721498]
-- [fs] xfs: btree format ifork loader should check for zero numrecs (Carlos Maiolino) [1721498]
-- [fs] xfs: attr leaf verifier needs to check for obviously bad count (Carlos Maiolino) [1721498]
-- [fs] xfs: cancel tx on xfs_defer_finish() error during xattr set/remove (Carlos Maiolino) [1721498]
-- [fs] xfs: destroy mutex pag_ici_reclaim_lock before free (Carlos Maiolino) [1721498]
-- [fs] xfs: change 0xp -> p in print messages (Carlos Maiolino) [1721498]
-- [fs] xfs: clarify units in the failed metadata io message (Carlos Maiolino) [1721498]
-- [fs] xfs: harden directory integrity checks some more (Carlos Maiolino) [1721498]
-- [fs] xfs: dump the first 128 bytes of any corrupt buffer (Carlos Maiolino) [1721498]
-- [fs] xfs: teach error reporting functions to take xfs_failaddr_t (Carlos Maiolino) [1721498]
-- [fs] xfs: standardize quota verification function outputs (Carlos Maiolino) [1721498]
-- [fs] xfs: separate dquot repair into a separate function (Carlos Maiolino) [1721498]
-- [fs] xfs: create a new buf_ops pointer to verify structure metadata (Carlos Maiolino) [1721498]
-- [fs] xfs: fail out of xfs_attr3_leaf_lookup_int if it looks corrupt (Carlos Maiolino) [1721498]
-- [fs] xfs: provide a centralized method for verifying inline fork data (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor short form directory structure verifier function (Carlos Maiolino) [1721498]
-- [fs] xfs: create structure verifier function for short form symlinks (Carlos Maiolino) [1721498]
-- [fs] xfs: create structure verifier function for shortform xattrs (Carlos Maiolino) [1721498]
-- [fs] xfs: optimize inline symlinks (Carlos Maiolino) [1721498]
-- [fs] xfs: verify dinode header first (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor verifier callers to print address of failing check (Carlos Maiolino) [1721498]
-- [fs] xfs: have buffer verifier functions report failing address (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor xfs_verifier_error and xfs_buf_ioerror (Carlos Maiolino) [1721498]
-- [fs] xfs: remove XFS_WANT_CORRUPTED_RETURN from dir3 data verifiers (Carlos Maiolino) [1721498]
-- [fs] xfs: remove XFS_FSB_SANITY_CHECK (Carlos Maiolino) [1721498]
-- [fs] xfs: Show realtime device stats on statfs calls if realtime flags set (Carlos Maiolino) [1721498]
-- [fs] cifs: keep FileInfo handle live during oplock break (Leif Sahlberg) [1733329]
-
-* Mon Aug 05 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1065.el7]
-- [mm] mem-hotplug: fix node spanned pages when we have a node with only ZONE_MOVABLE (Baoquan He) [1694090]
-- [mm] memory-hotplug: fix comments in zone_spanned_pages_in_node() and zone_spanned_pages_in_node() (Baoquan He) [1694090]
-- [mm] mem-hotplug: fix node spanned pages when we have a movable node (Baoquan He) [1694090]
-- [mm] mm: report available pages as "MemTotal" for each NUMA node (Baoquan He) [1694090]
-- [mm] mmap: allow MAP_HUGETLB for hugetlbfs files v2 (Kenneth Yin) [1730100]
-- [s390] s390/protvirt: block kernel command line alteration (Hendrik Brueckner) [1642859]
-- [s390] s390/protvirt: add memory sharing for diag 308 set/store (Hendrik Brueckner) [1642859]
-- [s390] s390/uv: introduce guest side ultravisor code (Hendrik Brueckner) [1642859]
-- [s390] qdio: handle PENDING state for QEBSM devices (Philipp Rudo) [1731511]
-- [s390] qeth: be drop monitor friendly (Philipp Rudo) [1731508]
-- [net] af_iucv: remove GFP_DMA restriction for HiperTransport (Philipp Rudo) [1731510]
-- [netdrv] bnx2x: Disable multi-cos feature (Manish Chopra) [1704157]
-- [netdrv] bnxt_en: Add support for BCM957504 (Jonathan Toppins) [1673791]
-- [net] bluetooth: hidp: fix buffer overflow (Gopal Tiwari) [1723657] {CVE-2019-11884}
-- [scsi] core: use scmd_printk() to print which command timed out (Maurizio Lombardi) [1651706]
-- [cpufreq] pcc-cpufreq: Fail initialization if driver cannot be registered (David Arcari) [1718042]
-- [scsi] target/iblock: Fix overrun in WRITE SAME emulation (Maurizio Lombardi) [1729507]
-- [scsi] iscsi: set auth_protocol back to NULL if CHAP_A value is not supported (Maurizio Lombardi) [1726689]
-- [x86] umip: Make the UMIP activated message generic (David Arcari) [1719999]
-- [x86] umip: Print UMIP line only once (David Arcari) [1719999]
-- [x86] insn-eval: Fix use-after-free access to LDT entry (Rafael Aquini) [1728558] {CVE-2019-13233}
-- [x86] spec_ctrl: Use static_key for IBRS syscall path macros (Waiman Long) [1729548]
-- [powerpc] watchpoint: Restore NV GPRs while returning from exception (Steve Best) [1729856]
-- [powerpc] powerpc/tm: Fix oops on sigreturn on systems without TM (Steve Best) [1732823]
-- [powerpc] rtas: retry when cpu offline races with suspend/migration (Steve Best) [1727049]
-- [netdrv] ibmvnic: Fix unchecked return codes of memory allocations (Steve Best) [1718952]
-- [netdrv] ibmvnic: Refresh device multicast list after reset (Steve Best) [1718952]
-- [netdrv] ibmvnic: Do not close unopened driver during reset (Steve Best) [1718952]
-- [block] fix use-after-free on gendisk (Ming Lei) [1700091]
-- [block] blk-mq: Allow blocking queue tag iter callbacks (Ming Lei) [1665132]
-- [block] blk-mq: sync the update nr_hw_queues with blk_mq_queue_tag_busy_iter (Ming Lei) [1665132]
-- [tools] bpftool: Fix prog dump by tag (Jiri Olsa) [1697240]
-
-* Sat Aug 03 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1064.el7]
-- [ata] libata: remove WARN() for DMA or PIO command without data (David Milburn) [1725328]
-- [netdrv] atl1c: reserve min skb headroom (Florian Westphal) [1531461]
-- [netdrv] ibmvnic: Update carrier state after link state change (Gustavo Duarte) [1711667]
-- [netdrv] net/ibmvnic: Update MAC address settings after adapter reset (Gustavo Duarte) [1711667]
-- [s390] jump_label: replace stop_machine with smp_call_function (Hendrik Brueckner) [1720389 1720387]
-- [s390] zcrypt: Fix wrong dispatching for control domain CPRBs (Hendrik Brueckner) [1720389]
-- [nvme] nvme-rdma: always have a valid trsvcid (David Milburn) [1717536]
-- [nvme] nvme-rdma: use inet_pton_with_scope helper (David Milburn) [1717536]
-- [nvme] nvmet-rdma: use generic inet_pton_with_scope (David Milburn) [1717536]
-- [usb] hso: Fix OOB memory access in hso_probe/hso_get_config_data (Torez Smith) [1689304 1666659] {CVE-2018-19985 CVE-2018-20169}
-- [usb] check usb_get_extra_descriptor for proper size (Torez Smith) [1689304 1666659] {CVE-2018-19985 CVE-2018-20169}
-- [scripts] override locale from environment when running recordmcount.pl (Prarit Bhargava) [1721512]
-- [kernel] cpuset: restore sanity to cpuset_cpus_allowed_fallback() (Joel Savitz) [1721294]
-- [nvme] Fix u32 overflow in the number of namespace list calculation (Gopal Tiwari) [1720378]
-- [target] scsi: tcmu: avoid cmd/qfull timers updated whenever a new cmd comes (Maurizio Lombardi) [1630682]
-- [netdrv] nfp: ensure skb network header is set for packet redirect (Pablo Cascon) [1718900]
-- [kernel] userfaultfd: use RCU to free the task struct when fork fails (Andrea Arcangeli) [1718494]
-- [scsi] sg: protect against races between mmap() and SG_SET_RESERVED_SIZE (Ewan Milne) [1710533]
-- [scsi] sg: recheck MMAP_IO request length with lock held (Ewan Milne) [1710533]
-- [scsi] sg: reset 'res_in_use' after unlinking reserved array (Ewan Milne) [1710533]
-- [scsi] sg: protect accesses to 'reserved' page array (Ewan Milne) [1710533]
-- [net] af_key: do not use GFP_KERNEL in atomic contexts (Vladis Dronov) [1715917]
-- [net] Fix RCU splat in af_key (Vladis Dronov) [1715917]
-- [x86] aesni: initialize gcm(aes) cryptd child's key/authsize (Sabrina Dubroca) [1698551]
-- [block] blk-mq-pci: add a fallback when pci_irq_get_affinity returns NULL (Ming Lei) [1717059]
-- [pci] msi: Don't warn when irq_create_affinity_masks() returns NULL (Ming Lei) [1717059]
-- [lib] rhashtable: Still do rehash when we get EEXIST (Vladis Dronov) [1712450]
-- [kernel] sysctl.c: fix out-of-bounds access when setting file-max (Eric Sandeen) [1693737]
-- [kernel] sysctl: handle overflow for file-max (Eric Sandeen) [1693737]
-- [kernel] sysctl: handle overflow in proc_get_long (Eric Sandeen) [1693737]
-- [x86] perf/x86/intel: Add Tremont core PMU support (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Add Icelake support (Jiri Olsa) [1482406]
-- [x86] perf/x86: Support constraint ranges (Jiri Olsa) [1482406]
-- [x86] perf/x86/lbr: Avoid reading the LBRs when adaptive PEBS handles them (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Support adaptive PEBS v4 (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Fix unwind errors from PEBS entries (mk-II) (Jiri Olsa) [1482406]
-- [kernel] perf: Return empty callchain instead of NULL (Jiri Olsa) [1482406]
-- [kernel] perf: Make perf_callchain function static (Jiri Olsa) [1482406]
-- [x86] perf/x86: Support outputting XMM registers (Jiri Olsa) [1482406]
-- [x86] perf/x86: Fix incorrect PEBS_REGS (Jiri Olsa) [1482406]
-- [x86] perf/x86/kvm: Avoid unnecessary work in guest filtering (Jiri Olsa) [1482406]
-- [x86] cpufeature: Add facility to check for min microcode revisions (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Rename confusing 'freerunning PEBS' API and implementation to 'large PEBS' (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel/ds: Extract code of event update in short period (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Extract memory code PEBS parser for reuse (Jiri Olsa) [1482406]
-
-* Fri Aug 02 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1063.el7]
-- [nvme] nvme-rdma: use dynamic dma mapping per command (David Milburn) [1637693]
-- [nvme] nvme-rdma: remove redundant reference between ib_device and tagset (David Milburn) [1637693]
-- [x86] apic: Fix device hotplug NULL pointer dereference (Prarit Bhargava) [1724644]
-- [fs] coredump: fix the setting of PF_DUMPCORE (Vladis Dronov) [1706150]
-- [fs] cifs: fix parsing of symbolic link error response (Leif Sahlberg) [1672539]
-- [fs] cifs: fix crash in cifs_dfs_do_automount (Leif Sahlberg) [1649907]
-- [fs] gfs2: Check for NULL dev_name on gfs2meta mount (Andrew Price) [1722499]
-- [fs] cifs: do not attempt cifs operation on smb2+ rename error (Leif Sahlberg) [1694201]
-- [fs] cifs: Fix copy_file_range for write on the same file (Leif Sahlberg) [1689108]
-- [fs] cifs: fix panic in smb2_reconnect (Leif Sahlberg) [1702264]
-- [fs] binfmt_misc.c: do not allow offset overflow (Bill O'Donnell) [1708066]
-- [fs] xfs: prohibit fstrim in norecovery mode (Bill O'Donnell) [1697229]
-- [fs] iomap: fix page_done callback for short writes (Andreas Grunbacher) [1724362]
-- [fs] fs: fold __generic_write_end back into generic_write_end (Andreas Grunbacher) [1724362]
-- [fs] iomap: don't mark the inode dirty in iomap_write_end (Andreas Grunbacher) [1724362]
-- [fs] gfs2: Fix iomap write page reclaim deadlock (Andreas Grunbacher) [1724362]
-- [fs] iomap: Add a page_prepare callback (Andreas Grunbacher) [1724362]
-- [fs] iomap: Fix use-after-free error in page_done callback (Andreas Grunbacher) [1724362]
-- [fs] fs: Turn __generic_write_end into a void function (Andreas Grunbacher) [1724362]
-- [fs] iomap: Clean up __generic_write_end calling (Andreas Grunbacher) [1724362]
-- [fs] nfs/pnfs: Bulk destroy of layouts needs to be safe w.r.t. umount (Benjamin Coddington) [1686179]
-- [fs] pnfs: Skip invalid stateids when doing a bulk destroy (Benjamin Coddington) [1686179]
-- [netdrv] mlx4/en_netdev: allow offloading VXLAN over VLAN (Paolo Abeni) [1733671]
-- [scsi] vmw_pscsi: Fix use-after-free in pvscsi_queue_lck() (David Milburn) [1720298]
-- [netdrv] ice: Implement pci_error_handler ops (Jonathan Toppins) [1673159]
-- [netdrv] bnxt_en: Reduce memory usage when running in kdump kernel (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix possible BUG() condition when calling pci_disable_msix() (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix aggregation buffer leak under OOM condition (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Improve NQ reservations (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix uninitialized variable usage in bnxt_rx_pkt() (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix statistics context reservation logic (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Pass correct extended TX port statistics size to firmware (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix possible crash in bnxt_hwrm_ring_free() under error conditions (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Free short FW command HWRM memory in error path in bnxt_init_one() (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Improve multicast address setup logic (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Reset device on RX buffer errors (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Improve RX consumer index validity check (Jonathan Toppins) [1715161]
-- [netdrv] mlx4_en: Fix reporting phy counters (Alaa Hleihel) [1716338]
-- [scsi] avoid leaking shost->bqt on scsi_add_host_with_dma() failure path (Vitaly Kuznetsov) [1702572]
-- [ata] scsi: use host wide tags by default (fixup) (Vitaly Kuznetsov) [1702572]
-- [netdrv] nfp: use kvcalloc() to allocate SW buffer descriptor arrays (Pablo Cascon) [1704203]
-- [kernel] sysctl: Use do_proc_do[u]intvec_conv for bounds-checking (Alex Gladkov) [1597153]
-- [kernel] sysctl: Add missing range check in do_proc_dointvec_minmax_conv (Alex Gladkov) [1597153]
-- [netdrv] mlx5e: Additional check for flow destination comparison (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Fix ethtool rxfh commands when CONFIG_MLX5_EN_RXNFC is disabled (Alaa Hleihel) [1710423]
-- [netdrv] mlx5: Imply MLXFW in mlx5_core (Alaa Hleihel) [1710423]
-- [netdrv] mlx5: Set completion EQs as shared resources (Alaa Hleihel) [1710423]
-- [infiniband] ib/mlx5: Verify DEVX general object type correctly (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Turn on HW tunnel offload in all TIRs (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Take common TIR context settings into a function (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Fix NULL pointer derefernce in set channels error flow (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Fix access to non-existing receive queue (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Move RSS params to a dedicated struct (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Refactor TIR configuration function (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Move modify tirs hash functionality (Alaa Hleihel) [1710423]
-- [infiniband] rdma/mlx5: Do not allow the user to write to the clock page (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: XDP, Fix shifted flag index in RQ bitmap (Alaa Hleihel) [1710423]
-- [infiniband] rdma/mlx5: Initialize roce port info before multiport master init (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: ethtool, Remove unsupported SFP EEPROM high pages query (Alaa Hleihel) [1710423]
-- [infiniband] ib/mlx5: Fix scatter to CQE in DCT QP creation (Alaa Hleihel) [1710423]
-- [acpi] nfit: Fix nfit_intel_shutdown_status() command submission (Jeff Moyer) [1641418]
-- [infiniband] core, ipoib: Do not overreact to SM LID change event (Kamal Heib) [1707873]
-- [netdrv] brcmfmac: add subtype check for event handling in data path (Stanislaw Gruszka) [1704681] {CVE-2019-9503}
-- [netdrv] brcmfmac: assure SSID length from firmware is limited (Stanislaw Gruszka) [1704880] {CVE-2019-9500}
-- [bluetooth] btusb: Add support for Intel bluetooth device 8087:0029 (Gopal Tiwari) [1702163]
-- [bluetooth] btusb: Add support for Intel Bluetooth device 22560 [8087:0026] (Gopal Tiwari) [1702163]
-
-* Thu Jul 18 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1062.el7]
-- [fs] revert "xfs: disable copy_file_range() to avoid broken splice copy" (Eric Sandeen) [1731205]
-
-* Thu Jul 11 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1061.el7]
-- [linux] efi: Disable local interrupts across efi run-time calls (Lenny Szubowicz) [1716252]
-- [net] tcp: refine memory limit test in tcp_fragment() (Florian Westphal) [1723032]
-- [net] tcp: provide TCP_FRAG_IN_WRITE/RTX_QUEUE for tcp_fragment use (Florian Westphal) [1723032]
-
-* Mon Jul 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1060.el7]
-- [char] random: move FIPS continuous test to output functions (Herbert Xu) [1723910]
-- [netdrv] i40e: fix WoL support check (Stefan Assmann) [1720021]
-- [fs] revert "gfs2: Use d_materialise_unique instead of d_splice_alias" (Robert S Peterson) [1677686]
-- [mm] vmpressure: make sure there are no events queued after memcg is offlined (Vratislav Bendel) [1685447]
-- [mm] revert "mm: split page_type out from _mapcount" (David Hildenbrand) [1723689]
-- [mm] huge_memory: make pmd huge before dirty (Rafael Aquini) [1720278]
-- [mm] revert "don't split THP page when MADV_FREE syscall is called" (Rafael Aquini) [1720278]
-- [mm] revert "fix incorrect unlock error path in madvise_free_huge_pmd" (Rafael Aquini) [1720278]
-- [mm] revert "pmd dirty emulation in page fault handler" (Rafael Aquini) [1720278]
-- [mm] revert "thp: fix crash due race in MADV_FREE handling" (Rafael Aquini) [1720278]
-
-* Thu Jun 27 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1059.el7]
-- [scsi] scsi: megaraid_sas: return error when create DMA pool failed (Tomas Henzl) [1712861] {CVE-2019-11810}
-- [fs] cifs: cifs_read_allocate_pages: don't iterate through whole page array on ENOMEM (Leif Sahlberg) [1714220]
-- [fs] cifs: add more spinlocks to pretect against races (Leif Sahlberg) [1580165]
-- [fs] xfs: serialize unaligned dio writes against all other dio writes (Brian Foster) [1699800]
-- [fs] xfs: disable copy_file_range() to avoid broken splice copy (Brian Foster) [1688067]
-- [fs] ext4: check superblock mapped prior to committing (Lukas Czerner) [1721737]
-- [sound] alsa: alsa: hda - do not use ALC255_FIXUP_MIC_MUTE_LED for Huawei laptops (Jaroslav Kysela) [1721867]
-- [sound] alsa: revert "[sound] alsa: hda - Support led audio trigger" (Jaroslav Kysela) [1721867]
-- [mm] memory_hotplug: fix scan_movable_pages() for gigantic hugepages (Rafael Aquini) [1721503]
-- [mm] page_alloc: fix has_unmovable_pages for HugePages (Rafael Aquini) [1721503]
-- [mm] memory_hotplug: check zone_movable in has_unmovable_pages (Rafael Aquini) [1721503]
-- [mm] memory_hotplug: make has_unmovable_pages more robust (Rafael Aquini) [1721503]
-- [kernel] workqueue: Fix NULL pointer dereference (Denys Vlasenko) [1655834]
-
-* Fri Jun 21 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1058.el7]
-- [net] tcp: enforce tcp_min_snd_mss in tcp_mtu_probing() (Florian Westphal) [1719915] {CVE-2019-11479}
-- [net] tcp: add tcp_min_snd_mss sysctl (Florian Westphal) [1719915] {CVE-2019-11479}
-- [net] tcp: limit payload size of sacked skbs (Florian Westphal) [1719595] {CVE-2019-11477}
-- [net] tcp: pass previous skb to tcp_shifted_skb() (Florian Westphal) [1719595] {CVE-2019-11477}
-- [net] tcp: tcp_fragment() should apply sane memory limits (Florian Westphal) [1719850] {CVE-2019-11478}
-- [fs] Revert "Fix default behaviour for empty domains and add domainauto option" (Leif Sahlberg) [1710421]
-- [fs] libceph: handle an empty authorize reply (Ilya Dryomov) [1718305]
-- [scsi] qla2xxx: Mark NVMe/FC initiator mode usage as technology preview (Ewan Milne) [1721655]
-- [nvme] Removing DMA_ATTR_NO_WARN for dma_alloc_attrs (Gopal Tiwari) [1715433]
-- [netdrv] qlcnic: fix Tx descriptor corruption on 82xx devices (Manish Chopra) [1715481]
-- [mm] mincore.c: make mincore() more conservative (Rafael Aquini) [1664199] {CVE-2019-5489}
-- [kernel] pm/hibernate: exclude all PageOffline() pages (David Hildenbrand) [1718771]
-- [hv] hv_balloon: mark inflated pages PG_offline (David Hildenbrand) [1718771]
-- [kernel] kexec: export PG_offline to VMCOREINFO (David Hildenbrand) [1718771]
-- [kernel] mm: convert PG_balloon to PG_offline (David Hildenbrand) [1718771]
-- [kernel] mm: split page_type out from _mapcount (David Hildenbrand) [1718771]
-- [kernel] mm: clean up non-standard page->_mapcount users (David Hildenbrand) [1718771]
-- [kernel] mm: consolidate all page-flags helpers in <linux/page-flags.h> (David Hildenbrand) [1718771]
-- [kernel] mm: page-flags: clean up the page flag test, set, clear macros (David Hildenbrand) [1718771]
-- [kernel] alarmtimer: Prevent overflow for relative nanosleep (Artem Savkov) [1653677] {CVE-2018-13053}
-- [kernel] module.c: Only return -EEXIST for modules that have finished loading part II (Prarit Bhargava) [1704844]
-- [x86] mm: Create an SME workarea in the kernel for early encryption (Lianbo Jiang) [1718348]
-- [x86] mm: Identify the end of the kernel area to be reserved (Lianbo Jiang) [1718348]
-- [x86] kdump: Export the SME mask to vmcoreinfo (Lianbo Jiang) [1718348]
-- [fs] proc/vmcore: Fix i386 build error of missing copy_oldmem_page_encrypted() (Lianbo Jiang) [1718348]
-- [x86] kdump, proc/vmcore: Enable kdumping encrypted memory with SME enabled (Lianbo Jiang) [1718348]
-- [iommu] amd: Remap the IOMMU device table with the memory encryption mask for kdump (Lianbo Jiang) [1718348]
-- [kernel] kexec: Allocate decrypted control pages for kdump if SME is enabled (Lianbo Jiang) [1718348]
-- [x86] ioremap: Add an ioremap_encrypted() helper (Lianbo Jiang) [1718348]
-- [x86] pti: Do not create debugfs for the pti_enabled when SME is active (Lianbo Jiang) [1720997]
-- [x86] resctrl: Prevent NULL pointer dereference when local MBM is disabled (Prarit Bhargava) [1713547]
-- [s390] pkey: Indicate old mkvp only if old and current mkvp are different (Hendrik Brueckner) [1720388]
-- [s390] qdio: clear intparm during shutdown (Hendrik Brueckner) [1720390]
-- [s390] Remove VLAIS in ptff() and clear_table() (Yauheni Kaliuta) [1691710]
-- [s390] remove 31 bit support (Yauheni Kaliuta) [1691710]
-- [s390] timex: fix get_tod_clock_ext() inline assembly (Yauheni Kaliuta) [1691710]
-- [s390] Use for_each_set_bit_inv instead of for_each_set_bit_left (Yauheni Kaliuta) [1691710]
-- [s390] bitops: add for_each_set_bit_inv helper (Yauheni Kaliuta) [1691710]
-- [s390] bitops: rename find_first_bit_left() to find_first_bit_inv() (Yauheni Kaliuta) [1691710]
-- [s390] bitops: use flogr instruction to implement __ffs, ffs, __fls, fls and fls64 (Yauheni Kaliuta) [1691710]
-- [s390] bitops: use generic find bit functions / reimplement _left variant (Yauheni Kaliuta) [1691710]
-- [s390] bitops: remove CONFIG_SMP / simplify non-atomic bitops (Yauheni Kaliuta) [1691710]
-- [s390] bitops: make use of interlocked-access facility 1 instructions (Yauheni Kaliuta) [1691710]
-- [s390] bitops: fix inline assembly constraints (Yauheni Kaliuta) [1691710]
-
-* Fri Jun 14 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1057.el7]
-- [fs] ext4: zero out the unused memory region in the extent tree block (Lukas Czerner) [1715280] {CVE-2019-11833}
-- [fs] revert "lockd: Show pid of lockd for remote locks" (Benjamin Coddington) [1717377]
-- [scsi] qla2xxx: Allow IRQ balance to spread vectors across multiple CPU (Himanshu Madhani) [1713412]
-- [netdrv] i40e: Do not check VF state in i40e_ndo_get_vf_config (Stefan Assmann) [1701191]
-- [netdrv] qed: Backport missing hw ptp config hunks (Manish Chopra) [1712585]
-- [infiniband] rdma/qedr: Fix incorrect device rate (Manish Chopra) [1713577]
-- [watchdog] core: Add watchdog_thresh command line parameter (Prarit Bhargava) [1714612]
-- [x86] kvm: x86: Sync the pending Posted-Interrupts (Peter Xu) [1719525]
-- [x86] kvm: vmx: remove WARN_ON_ONCE in kvm_vcpu_trigger_posted_interrupt (Peter Xu) [1719525]
-
-* Wed Jun 12 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1056.el7]
-- [infiniband] ib/mlx5: Allow modify AV in DCI QP to RTR (Alaa Hleihel) [1714002]
-- [scsi] core: Allow state transitions from OFFLINE to BLOCKED (Ewan Milne) [1631136]
-- [edac] amd64: Set maximum channel layer size depending on family (Gary Hook) [1705210]
-- [edac] amd64: Adjust printed chip select sizes when interleaved (Gary Hook) [1705210]
-- [edac] amd64: Recognize x16 symbol size (Gary Hook) [1705210]
-- [edac] amd64: Support more than two Unified Memory Controllers (Gary Hook) [1705210]
-- [edac] amd64: Use a macro for iterating over Unified Memory Controllers (Gary Hook) [1705210]
-- [edac] amd64: Add Family 17h, models 10h-2fh support (Gary Hook) [1705210]
-- [vhost] vsock: add weight support (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] vhost_net: fix possible infinite loop (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] introduce vhost_exceeds_weight() (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] vhost_net: introduce vhost_exceeds_weight() (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] vhost_net: use packet weight for rx handler, too (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] vhost-net: set packet weight of tx polling to 2 * vq size (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] don't read and process iotlb message with bad lenth (Jason Wang)
-- [vhost] correctly check the return value of translate_desc() in log_used() (Jason Wang) [1657577]
-- [vhost] log dirty page correctly (Jason Wang) [1657577]
-- [vhost] fix OOB in get_rx_bufs() (Jason Wang) [1710182]
-- [vhost] reject zero size iova range (Jason Wang)
-- [vhost] Fix Spectre V1 vulnerability (Jason Wang) [1672554]
-- [vhost] vhost_net: flush batched heads before trying to busy polling (Jason Wang) [1710182]
-- [vhost] vhost_net: batch used ring update in rx (Jason Wang) [1710182]
-- [x86] mark AMD Rome processors supported (David Arcari) [1543509]
-- [x86] microcode: Only load the microcode once on AMD systems (Prarit Bhargava) [1710942]
-
-* Fri Jun 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1055.el7]
-- [thermal] intel_powerclamp: fix truncated kthread name (David Arcari) [1716946]
-
-* Fri Jun 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1054.el7]
-- [pci] Rework pcie_retrain_link() wait loop (Myron Stowe) [1677010]
-- [pci] Work around Pericom PCIe-to-PCI bridge Retrain Link erratum (Myron Stowe) [1677010]
-- [pci] Factor out pcie_retrain_link() function (Myron Stowe) [1677010]
-- [cpufreq] intel_pstate: Ignore turbo active ratio in HWP (David Arcari) [1711969]
-- [fs] vmcore: Add a kernel parameter novmcoredd (Kairui Song) [1705859]
-- [netdrv] bonding/802.3ad: fix slave link initialization transition states (Jarod Wilson) [1702807]
-- [netdrv] rtw88: new Realtek 802.11ac driver (Stanislaw Gruszka) [1487002 1487018]
-- [kernel] bitfield: fix *_encode_bits() (Stanislaw Gruszka) [1487002 1487018]
-- [kernel] Add primitives for manipulating bitfields both in host- and fixed-endian (Stanislaw Gruszka) [1487002 1487018]
-- [netdrv] phy: turn carrier off on phy attach (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add generic Realtek PHY driver (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: load driver for all PHYs with a Realtek OUI (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: fix RTL8201F sysfs name (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: Support RTL8366RB variant (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add missing entry for RTL8211C to mdio_device_id table (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add support for RTL8211C (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add missing entry for RTL8211 to mdio_device_id table (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add support for RTL8211 (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add suspend/resume callbacks for RTL8211B (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: Use the dummy stubs for MMD register access for rtl8211b (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: use new helpers for paged register access (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add utility functions to read/write page addresses (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: use the same indentation for all #defines (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: group all register bit #defines for RTL821x_INER (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: rename RTL821x_INER_INIT to RTL8211B_INER_INIT (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: use the BIT and GENMASK macros (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: fix RTL8211F interrupt mode (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add RTL8201F phy-id and functions (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: rename RTL8211F_PAGE_SELECT to RTL821x_PAGE_SELECT (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: fix enabling of the TX-delay for RTL8211F (Corinna Vinschen) [1706531]
-- [netdrv] phy: add RealTek RTL8211DN phy id (Corinna Vinschen) [1706531]
-- [netdrv] phy: Add support for Realtek RTL8211F (Corinna Vinschen) [1706531]
-- [netdrv] phy: export genphy_config_init() (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: register/unregister multiple drivers properly (Corinna Vinschen) [1706531]
-- [netdrv] phy: Add RTL8201CP phy_driver to realtek (Corinna Vinschen) [1706531]
-- [netdrv] phy: rtl8211: fix interrupt on status link change (Corinna Vinschen) [1706531]
-- [nvme] fix memory leak for power latency tolerance (David Milburn) [1541904]
-- [base] pm / qos: Fix memory leak on resume_latency.notifiers (David Milburn) [1541904]
-- [x86] kvm: x86: use correct privilege level for sgdt/sidt/fxsave/fxrstor access (Paolo Bonzini) [1657358] {CVE-2018-10853}
-- [x86] kvm: x86: pass kvm_vcpu to kvm_read_guest_virt and kvm_write_guest_virt_system (Paolo Bonzini) [1657358] {CVE-2018-10853}
-- [x86] kvm: x86: introduce linear_{read,write}_system (Paolo Bonzini) [1657358] {CVE-2018-10853}
-- [x86] Update stepping values for Whiskey Lake U/Y (David Arcari) [1704810]
-
-* Sat Jun 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1053.el7]
-- [hid] wacom: generic: support LEDs (Benjamin Tissoires) [1710890]
-- [hid] wacom: leds: use the ledclass instead of custom made sysfs files (Benjamin Tissoires) [1710890]
-- [char] ipmi_si: fix use-after-free of resource->name (Tony Camuso) [1714408] {CVE-2019-11811}
-- [fs] gfs2: Use d_materialise_unique instead of d_splice_alias (Robert S Peterson) [1677686]
-- [fs] sunrpc: make visible processing error in bc_svc_process() ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] sunrpc: remove unused xpo_prep_reply_hdr callback ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] sunrpc: remove svc_tcp_bc_class ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] sunrpc: replace svc_serv->sv_bc_xprt by boolean flag ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] sunrpc: use-after-free in svc_process_common() ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] svcauth_gss: Close connection when dropping an incoming message ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [net] bridge: dont send notification when skb->len == 0 in rtnl_bridge_notify (Hangbin Liu) [1714831]
-- [net] tcp: purge write queue in tcp_connect_init() (Marcelo Leitner) [1713051]
-- [net] tcp: fix TCP_REPAIR_QUEUE bound checking (Marcelo Leitner) [1713051]
-- [net] tcp: don't read out-of-bounds opsize (Marcelo Leitner) [1713051]
-- [net] tcp: md5: reject TCP_MD5SIG or TCP_MD5SIG_EXT on established sockets (Marcelo Leitner) [1713051]
-- [net] tcp: fix tcp_mtu_probe() vs highest_sack (Marcelo Leitner) [1713051]
-- [net] tcp: fastopen: fix on syn-data transmit failure (Marcelo Leitner) [1713051]
-- [net] tcp: when rearming RTO, if RTO time is in past then fire RTO ASAP (Marcelo Leitner) [1713051]
-- [net] tcp: eliminate negative reordering in tcp_clean_rtx_queue (Marcelo Leitner) [1713051]
-- [net] tcp: fix wraparound issue in tcp_lp (Marcelo Leitner) [1713051]
-- [net] tcp: account for ts offset only if tsecr not zero (Marcelo Leitner) [1713051]
-- [net] tcp: initialize max window for a new fastopen socket (Marcelo Leitner) [1713051]
-- [net] tcp: consider recv buf for the initial window scale (Marcelo Leitner) [1713051]
-- [net] tcp: refresh skb timestamp at retransmit time (Marcelo Leitner) [1713051]
-- [net] tcp: fix tcpi_segs_in after connection establishment (Marcelo Leitner) [1713051]
-- [net] tcp: beware of alignments in tcp_get_info() (Marcelo Leitner) [1713051]
-- [net] tcp: properly scale window in tcp_v[46]_reqsk_send_ack() (Marcelo Leitner) [1713051]
-- [net] tcp: fix NULL deref in tcp_v4_send_ack() (Marcelo Leitner) [1713051]
-- [net] tcp: md5: fix lockdep annotation (Marcelo Leitner) [1713051]
-- [net] tcp: apply Kern's check on RTTs used for congestion control (Marcelo Leitner) [1713051]
-- [net] tcp: add proper TS val into RST packets (Marcelo Leitner) [1713051]
-- [net] tcp: fix FRTO undo on cumulative ACK of SACKed range (Marcelo Leitner) [1713051]
-- [net] tcp: align tcp_xmit_size_goal() on tcp_tso_autosize() (Marcelo Leitner) [1713051]
-- [net] tcp: fastopen: avoid negative sk_forward_alloc (Marcelo Leitner) [1713051]
-- [net] tcp: fastopen: fix rcv_wup initialization for TFO server on SYN/data (Marcelo Leitner) [1713051]
-- [net] tcp: make sure skb is not shared before using skb_get() (Marcelo Leitner) [1713051]
-- [net] tcp: Do not apply TSO segment limit to non-TSO packets (Marcelo Leitner) [1713051]
-- [net] openvswitch: load and reference the NAT helper. (Flavio Leitner) [1435252]
-- [net] openvswitch: load NAT helper (Flavio Leitner) [1435252]
-- [net] netfilter: introduce nf_conntrack_helper_put helper function (Flavio Leitner) [1435252]
-- [net] netfilter: xt_CT: fix refcnt leak on error path (Flavio Leitner) [1435252]
-- [net] netfilter: nf_nat: register NAT helpers. (Flavio Leitner) [1435252]
-- [net] netfilter: add API to manage NAT helpers. (Flavio Leitner) [1435252]
-- [net] netfilter: use macros to create module aliases. (Flavio Leitner) [1435252]
-- [net] openvswitch: add seqadj extension when NAT is used. (Flavio Leitner) [1435252]
-- [net] netfilter: nf_conntrack_sip: fix wrong memory initialisation (Flavio Leitner) [1435252]
-- [net] netfilter: Add helper array register/unregister functions (Flavio Leitner) [1435252]
-- [net] netfilter: nf_ct_helper: Fix helper unregister count. (Flavio Leitner) [1435252]
-- [net] netfilter: nf_ct_helper: define pr_fmt() (Flavio Leitner) [1435252]
-- [net] ip6_tunnel: be careful when accessing the inner header (Stefano Brivio) [1713294]
-- [net] ip_tunnel: be careful when accessing the inner header (Stefano Brivio) [1713294]
-- [net] ip_tunnel: better validate user provided tunnel names (Stefano Brivio) [1713294]
-- [net] ip_tunnel: fix potential issue in ip_tunnel_rcv (Stefano Brivio) [1713294]
-- [net] gro: Fix GRO flush when receiving a GSO packet. (Paolo Abeni) [1713013]
-- [net] devlink: Fix list access without lock while reading region (Paolo Abeni) [1713013]
-- [net] skb_scrub_packet(): Scrub offload_fwd_mark (Paolo Abeni) [1713013]
-- [net] ethtool: fix a privilege escalation bug (Paolo Abeni) [1713013]
-- [net] skb_segment() should not return NULL (Paolo Abeni) [1713013]
-- [net] fix possible out-of-bound read in skb_network_protocol() (Paolo Abeni) [1713013]
-- [net] flow_dissector: properly cap thoff field (Paolo Abeni) [1713013]
-- [net] ethtool: Initialize buffer when querying device channel settings (Paolo Abeni) [1713013]
-- [net] neighbour: fix crash at dumping device-agnostic proxy entries (Paolo Abeni) [1713013]
-- [net] netlabel: fix out-of-bounds memory accesses (Hangbin Liu) [1712920]
-- [net] ipv4: Fix use-after-free when flushing FIB tables (Hangbin Liu) [1712920]
-- [net] ping: fix a null pointer dereference (Hangbin Liu) [1712920]
-- [net] netfilter: rpfilter: bypass ipv4 lbcast packets with zeronet source (Guillaume Nault) [1704190]
-- [net] sched: act_ipt: fix refcount leak when replace fails (Davide Caratti) [1706791]
-- [net] sched: act_sample: fix divide by zero in the traffic path (Davide Caratti) [1706791]
-- [net] sched: fix ->get helper of the matchall cls (Davide Caratti) [1706791]
-- [net] sched: fix a race condition in tcindex_destroy() (Davide Caratti) [1706791]
-- [net] cls_flower: Remove filter from mask before freeing it (Davide Caratti) [1706791]
-- [net] sched: gred: pass the right attribute to gred_change_table_def() (Davide Caratti) [1706791]
-- [net] sched: act_pedit: fix dump of extended layered op (Davide Caratti) [1706791]
-- [net] sched: cls_api: deal with egdev path only if needed (Davide Caratti) [1706791]
-- [net] sched: fix error path in tcf_proto_create() when modules are not configured (Davide Caratti) [1706791]
-- [net] sched: fq: take care of throttled flows before reuse (Davide Caratti) [1706791]
-- [net] sched actions: fix dumping which requires several messages to user space (Davide Caratti) [1706791]
-- [net] sch_netem: fix skb leak in netem_enqueue() (Davide Caratti) [1706791]
-- [net] sched: Fix update of lastuse in act modules implementing stats_update (Davide Caratti) [1699910 1706791]
-- [net] sched: don't release reference on action overwrite (Davide Caratti) [1706791]
-- [powerpc] mm: move warning from resize_hpt_for_hotplug() (Laurent Vivier) [1693046]
-- [powerpc] pseries: Use pr_xxx() in lpar.c (Laurent Vivier) [1693046]
-- [powerpc] mm: Fix build break with BOOK3S_64=n and MEMORY_HOTPLUG=y (Laurent Vivier) [1693046]
-- [net] vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock (Stefano Garzarella) [1693996]
-- [mm] page_counter: let page_counter_try_charge() return bool (Davide Caratti) [1658641]
-- [kernel] unshare: Unsharing a thread does not require unsharing a vm (Alex Gladkov) [1597991]
-- [x86] kvm: x86: Add AMD's EX_CFG to the list of ignored MSRs (Eduardo Habkost) [1593190]
-- [x86] kvm: x86: Expose CLDEMOTE CPU feature to guest VM (Paul Lai) [1494704]
-
-* Tue May 28 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1052.el7]
-- [security] xattr: use RH_KABI_CONST to avoid security_inode_init_security checksum change (Cestmir Kalina) [1710633]
-- [crypto] hmac: require that the underlying hash algorithm is unkeyed (Neil Horman) [1708078]
-- [tty] Fix low_latency BUG (Aristeu Rozanski) [1710039]
-- [tty] n_tty: Fix termios_rwsem lockdep false positive (Artem Savkov) [1712744]
-- [netdrv] xen/netfront: fix waiting for xenbus state change (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: fix warn message as irq device name has '/' (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: wait xenbus state change when load module manually (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: fix queue name setting (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: Update features after registering netdev (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: Fix mismatched rtnl_unlock (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: Fix race between device setup and open (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: Use static attribute groups for sysfs entries (Vitaly Kuznetsov) [1704435]
-- [x86] kvm: x86: reduce collisions in mmu_page_hash (Radim Krcmar) [1631875]
-- [x86] kvm/mmu: reset MMU context when 32-bit guest switches PAE (Vitaly Kuznetsov) [1703797]
-
-* Fri May 24 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1051.el7]
-- [tools] power turbostat: Increase default buffer size (Prarit Bhargava) [1708539]
-- [md] dm thin metadata: do not write metadata if no changes occurred (Mike Snitzer) [1710051]
-- [md] dm thin metadata: add wrappers for managing write locking of metadata (Mike Snitzer) [1710051]
-- [md] dm thin metadata: check __commit_transaction()'s return (Mike Snitzer) [1710051]
-- [md] dm space map common: zero entire ll_disk (Mike Snitzer) [1710051]
-- [fs] xfs: always rejoin held resources during defer roll (Brian Foster) [1703315]
-- [fs] xfs: automatic dfops inode relogging (Brian Foster) [1703315]
-- [fs] xfs: automatic dfops buffer relogging (Brian Foster) [1703315]
-- [fs] xfs: reset dfops to initial state after finish (Brian Foster) [1703315]
-- [fs] xfs: return from _defer_finish with a clean transaction (Brian Foster) [1703315]
-- [fs] xfs: release new dquot buffer on defer_finish error (Brian Foster) [1703315]
-- [scsi] hpsa: correct static checker issue in reset handler (Joseph Szczypek) [1710594]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1710594]
-- [scsi] hpsa: correct device resets (Joseph Szczypek) [1710594]
-- [scsi] hpsa: do-no-complete-cmds-for-deleted-devices (Joseph Szczypek) [1710594]
-- [scsi] hpsa: wait longer for ptraid commands (Joseph Szczypek) [1710594]
-- [scsi] hpsa: check for tag collision (Joseph Szczypek) [1710594]
-- [scsi] hpsa: use local workqueue instead of system workqueues (Joseph Szczypek) [1710594]
-- [scsi] hpsa: correct simple mode (Joseph Szczypek) [1710594]
-- [scsi] hpsa: bump driver version (Joseph Szczypek) [1710594]
-- [scsi] hpsa: correct device id issues (Joseph Szczypek) [1710594]
-- [scsi] hpsa: check for lv removal (Joseph Szczypek) [1710594]
-- [nvme] lock NS list changes while handling command effects (David Milburn) [1672723]
-- [net] rtnetlink: always put IFLA_LINK for links with a link-netnsid (Sabrina Dubroca) [1705686]
-- [net] rtnetlink: add helpers to dump netnsid information (Sabrina Dubroca) [1705686]
-- [net] rtnetlink: add helper to put master and link ifindexes (Sabrina Dubroca) [1705686]
-- [net] neighbour: fix base_reachable_time(_ms) not effective immediatly when changed (Guillaume Nault) [1708253]
-
-* Tue May 21 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1050.el7]
-- [tools] perf annotate: Fix getting source line failure (Michael Petlan) [1701178]
-- [netdrv] qmi_wwan: apply SET_DTR quirk to Sierra WP7607 (Lubomir Rintel) [1678156]
-- [mm] tlb: Remove tlb_remove_table() non-concurrent condition (Vitaly Kuznetsov) [1448188]
-- [mm] move tlb_table_flush to tlb_flush_mmu_free (Vitaly Kuznetsov) [1448188]
-- [mm] tlb, x86/mm: Support invalidating TLB caches for RCU_TABLE_FREE (Vitaly Kuznetsov) [1448188]
-- [lib] locking/rwsem: Prevent decrement of reader count before increment (Waiman Long) [1708667]
-- [kernel] sched/topology: Introduce NUMA identity node sched domain (Suravee Suthikulpanit) [1566753]
-- [kernel] sched/fair: Do not re-read ->h_load_next during hierarchical load calculation (Phil Auld) [1707397]
-- [x86] livepatch: apply alternatives and paravirt patches after relocations (Artem Savkov) [1706733]
-- [powerpc] cbpf: disable jit (Yauheni Kaliuta) [1700744]
-- [powerpc] numa: document topology_updates_enabled, disable by default (Gustavo Duarte) [1705431]
-- [powerpc] numa: improve control of topology updates (Gustavo Duarte) [1705431]
-
-* Mon May 20 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1049.el7]
-- [x86] spectre: Fix an error message (Waiman Long) [1709296 1690335 1690348 1690358] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation/mds: Fix documentation typo (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] Correct the possible MDS sysfs values (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/mds: Add MDSUM variant to the MDS documentation (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add 'mitigations=' support for MDS (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] s390/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] powerpc/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [kernel] cpu/speculation: Add 'mitigations=' cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/l1tf: Increase l1tf memory limit for Nehalem+ (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spectre: Simplify spectre_v2 command line parsing (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Properly set/clear mds_idle_clear static key (Waiman Long) [1709296 1690358 1690348 1690335 1707292] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Print SMT vulnerable on MSBDS with mitigations off (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Fix comment (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add SMT warning message (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Move arch_smt_update() call to after mitigation decisions (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add mds=full, nosmt cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [kernel] x86/speculation: Remove redundant arch_smt_update() invocation (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Update MDS mitigation status after late microcode load (Waiman Long) [1709296 1690358 1690348 1690335 1710501 1710498] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Add debugfs x86/smt_present file (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Disable automatic enabling of STIBP with SMT on (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] documentation: Add MDS vulnerability documentation (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] documentation: Move L1TF to separate directory (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation/mds: Add mitigation mode VMWERV (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add sysfs reporting for MDS (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add mitigation control for MDS (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation/mds: Conditionally clear CPU buffers on idle entry (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] kvm/vmx: Add MDS protection when L1D Flush is not active (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Clear CPU buffers on exit to user (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation/mds: Add mds_clear_cpu_buffers() (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] kvm: Expose X86_FEATURE_MD_CLEAR to guests (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add BUG_MSBDS_ONLY (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add basic bug infrastructure for MDS (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Consolidate CPU whitelists (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] msr-index: Cleanup bit defines (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] l1tf: Show actual SMT state (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Simplify sysfs report of VMX L1TF vulnerability (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [kernel] x86/speculation: Rework SMT state change (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Disable STIBP when enhanced IBRS is in use (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Move STIPB/IBPB string conditionals out of cpu_show_common() (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Enable cross-hyperthread spectre v2 STIBP mitigation (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spectre_v2: Make spectre_v2_mitigation mode available (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Add X86_FEATURE_USE_IBPB (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Add casting to fix compilation error (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [tools] x86/cpu: Sanitize FAM6_ATOM naming (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] cpufeatures: Add Intel PCONFIG cpufeature (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-
-* Sat May 11 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1048.el7]
-- [net] netfilter: ipset: do not call ipset_nest_end after nla_nest_cancel (Stefano Brivio) [1707191]
-- [net] vxlan: test dev->flags & IFF_UP before calling gro_cells_receive() (Stefano Brivio) [1707190]
-- [net] vxlan: test dev->flags & IFF_UP before calling netif_rx() (Stefano Brivio) [1707190]
-- [net] netfilter: x_tables: initialise match/target check parameter struct (Stefano Brivio) [1707186]
-- [net] netfilter: drop outermost socket lock in getsockopt() (Stefano Brivio) [1707186]
-- [net] netfilter: on sockopt() acquire sock lock only in the required scope (Stefano Brivio) [1707186]
-- [net] xfrm6_tunnel: Fix potential panic when unloading xfrm6_tunnel module (Stefano Brivio) [1707164]
-- [net] ipv6/flowlabel: wait rcu grace period before put_pid() (Stefano Brivio) [1707164]
-- [net] ipv6: sit: reset ip header pointer in ipip6_rcv (Stefano Brivio) [1707164]
-- [net] ipv6: Fix dangling pointer when ipv6 fragment (Stefano Brivio) [1707164]
-- [net] tcp: do not use ipv6 header for ipv4 flow (Stefano Brivio) [1707164]
-- [net] ipv6: tunnels: fix two use-after-free (Stefano Brivio) [1707164]
-- [net] ipv6: explicitly initialize udp6_addr in udp_sock_create6() (Stefano Brivio) [1707164]
-- [net] vti6: remove !skb->ignore_df check from vti6_xmit() (Stefano Brivio) [1707164]
-- [net] vti6: fix PMTU caching and reporting on xmit (Stefano Brivio) [1707164]
-- [net] ip6_tunnel: use the right value for ipv4 min mtu check in ip6_tnl_xmit (Stefano Brivio) [1707164]
-- [net] ipv6: add RTA_TABLE and RTA_PREFSRC to rtm_ipv6_policy (Stefano Brivio) [1707164]
-- [net] route: add missing nla_policy entry for RTA_MARK attribute (Stefano Brivio) [1707164]
-- [net] vti6: better validate user provided tunnel names (Stefano Brivio) [1707164]
-- [net] ip6_tunnel: better validate user provided tunnel names (Stefano Brivio) [1707164]
-- [net] ip6_gre: better validate user provided tunnel names (Stefano Brivio) [1707164]
-- [net] ipv6: sit: better validate user provided tunnel names (Stefano Brivio) [1707164]
-- [net] netfilter: ipv6: fix use-after-free Write in nf_nat_ipv6_manip_pkt (Stefano Brivio) [1707164]
-- [net] ip6_gre: remove the incorrect mtu limit for ipgre tap (Stefano Brivio) [1707164]
-- [net] vti: fix use after free in vti_tunnel_xmit/vti6_tnl_xmit (Stefano Brivio) [1707164]
-- [net] ipv6: fix memory leak with multiple tables during netns destruction (Stefano Brivio) [1707164]
-- [net] ipv6: reset fn->rr_ptr when replacing route (Stefano Brivio) [1707164]
-- [net] ipv6: RTF_PCPU should not be settable from userspace (Stefano Brivio) [1707164]
-- [net] vti6: Don't report path MTU below IPV6_MIN_MTU. (Stefano Brivio) [1707164]
-- [net] mld, igmp: Fix reserved tailroom calculation (Stefano Brivio) [1707164]
-- [net] tcp: prevent fetching dst twice in early demux code (Stefano Brivio) [1707164]
-- [net] ipv6: addrconf: add missing validate_link_af handler (Stefano Brivio) [1707164]
-- [net] test tailroom before appending to linear skb (Stefano Brivio) [1707181]
-- [net] ipv4: fix memory leaks in udp_sendmsg, ping_v4_sendmsg (Paolo Abeni) [1706748]
-- [net] ipv4: fix memory leaks in ip_cmsg_send() callers (Paolo Abeni) [1706748]
-- [net] xfrm6: Fix a offset value for network header in _decode_session6 (Sabrina Dubroca) [1705575]
-- [net] xfrm: Fix transport mode skb control buffer usage. (Sabrina Dubroca) [1705575]
-- [net] xfrm: Use __skb_queue_tail in xfrm_trans_queue (Sabrina Dubroca) [1705575]
-- [net] xfrm6: call kfree_skb when skb is toobig (Sabrina Dubroca) [1705575]
-- [net] xfrm: make local error reporting more robust (Sabrina Dubroca) [1705575]
-- [net] xfrm: Validate address prefix lengths in the xfrm selector. (Sabrina Dubroca) [1705575]
-- [net] xfrm: free skb if nlsk pointer is NULL (Sabrina Dubroca) [1705575]
-- [net] xfrm: fix missing dst_release() after policy blocking lbcast and multicast (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: prevent leaking 2 bytes of kernel memory (Sabrina Dubroca) [1705575]
-- [net] xfrm6: avoid potential infinite loop in _decode_session6() (Sabrina Dubroca) [1705575]
-- [net] xfrm6: Fix transport header offset in _decode_session6. (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: uncoditionally validate esn replay attribute struct (Sabrina Dubroca) [1705575]
-- [net] xfrm: make xfrm_replay_state_esn_len() return unsigned int (Sabrina Dubroca) [1705575]
-- [net] xfrm: Return error on unknown encap_type in init_state (Sabrina Dubroca) [1705575]
-- [net] xfrm: Reinject transport-mode packets through tasklet (Sabrina Dubroca) [1705575]
-- [net] xfrm: Clear sk_dst_cache when applying per-socket policy. (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: fix info leak in build_aevent() (Sabrina Dubroca) [1705575]
-- [net] xfrm: checkpatch errors with space (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: fix info leak in xfrm_notify_sa() (Sabrina Dubroca) [1705575]
-- [net] xfrm: provide correct dst in xfrm_neigh_lookup (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: propagate sec ctx allocation errors (Sabrina Dubroca) [1705575]
-- [net] sctp: avoid running the sctp state machine recursively (Xin Long) [1702176]
-- [net] sched: fix refcnt leak in the error path of tcf_vlan_init() (Davide Caratti) [1706158]
-- [net] sched: act_tunnel_key: fix NULL pointer dereference during init (Davide Caratti) [1706158]
-- [net] sched: act_ipt: check for underflow in __tcf_ipt_init() (Davide Caratti) [1706158]
-- [net] sched: act_tunnel_key: fix NULL dereference when 'goto chain' is used (Davide Caratti) [1706158]
-- [net] sched: act_pedit: fix possible memory leak in tcf_pedit_init() (Davide Caratti) [1706158]
-- [net] sched: act_simple: fix parsing of TCA_DEF_DATA (Davide Caratti) [1706158]
-- [net] cls_flower: Fix incorrect idr release when failing to modify rule (Davide Caratti) [1706158]
-- [net] sched actions: fix refcnt leak in skbmod (Davide Caratti) [1706158]
-- [net] sched actions: fix invalid pointer dereferencing if skbedit flags missing (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of tcf_skbmod_init() (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of __tcf_ipt_init() (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of tcp_pedit_init() (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of tcf_act_police_init() (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of tcf_simp_init() (Davide Caratti) [1706158]
-- [net] sched: fix NULL dereference on the error path of tcf_skbmod_init() (Davide Caratti) [1706158]
-- [net] sched: fix NULL dereference in the error path of tcf_sample_init() (Davide Caratti) [1706158]
-- [net] netfilter: xt_IDLETIMER: add sysfs filename checking routine (Andrea Claudi) [1700745]
-- [net] netfilter: x_tables: add and use xt_check_proc_name (Andrea Claudi) [1700745]
-- [net] netfilter: IDLETIMER: fix lockdep warning (Andrea Claudi) [1700745]
-- [net] netfilter: nat: fix double register in masquerade modules (Andrea Claudi) [1700745]
-- [net] netfilter: add missing error handling code for register functions (Andrea Claudi) [1700745]
-- [net] add LINUX_MIB_PFMEMALLOCDROP counter (Marcelo Leitner) [1696664]
-- [net] netfilter: ipv6: Don't preserve original oif for loopback address (Florian Westphal) [1701496]
-- [net] netfilter: ipv6: Preserve link scope traffic original oif (Florian Westphal) [1701496]
-- [net] netfilter: use skb_to_full_sk in ip6_route_me_harder (Florian Westphal) [1701496]
-- [net] netfilter: Fix potential use after free in ip6_route_me_harder() (Florian Westphal) [1701496]
-- [net] openvswitch: Fix push/pop ethernet validation (Eelco Chaudron) [1700852]
-- [net] bonding: use netpoll_poll_dev() helper (Hangbin Liu) [1694409]
-- [netdrv] nfp: disable netpoll on representors (Hangbin Liu) [1694409]
-- [net] netpoll: do not test NAPI_STATE_SCHED in poll_one_napi() (Hangbin Liu) [1694409]
-- [net] netpoll: make ndo_poll_controller() optional (Hangbin Liu) [1694409]
-- [net] netpoll: Rename netpoll_rx_enable/disable to netpoll_poll_disable/enable (Hangbin Liu) [1694409]
-- [net] netpoll: Move rx enable/disable into __dev_close_many (Hangbin Liu) [1694409]
-- [net] netpoll: remove return value from netpoll_rx_disable() (Hangbin Liu) [1694409]
-- [netdrv] iavf: add missing .ndo_size callback to iavf_netdev_ops (Stefan Assmann) [1707230]
-- [fs] cifs: Accept validate negotiate if server return NT_STATUS_NOT_SUPPORTED (Leif Sahlberg) [1697514]
-- [fs] cifs: fix a crash in flocks_remove_flock when releasing all file locks (Leif Sahlberg) [1527610]
-- [fs] pnfs: Avoid read/modify/write when it is not necessary (Benjamin Coddington) [1680648]
-- [fs] pnfs: Fix potential corruption of page being written (Benjamin Coddington) [1680648]
-- [fs] xfs: zero length symlinks are not valid (Bill O'Donnell) [1503032]
-- [md] batch flush requests. (Xiao Ni) [1576466]
-- [md] revert "md: fix lock contention for flush bios" (Xiao Ni) [1576466]
-- [scsi] Revert "[qla2xxx] Mark NVMe/FC initiator mode usage as technology preview" (Ewan Milne) [1707805]
-- [scsi] qla2xxx: Silence Successful ELS IOCB message (Himanshu Madhani) [1647051]
-- [scsi] qla2xxx: Fix device staying in blocked state (Himanshu Madhani) [1647051]
-- [iommu] amd: Set exclusion range correctly (Jerry Snitselaar) [1702763]
-- [mm] memcontrol: release kmemcg_id only when allocated (Aaron Tomlin) [1593417]
-- [kernel] cpu/hotplug: Create SMT sysfs interface for all arches (Josh Poimboeuf) [1693310]
-- [kernel] cpu/hotplug: Fix "SMT disabled by BIOS" detection for KVM (Josh Poimboeuf) [1693310]
-- [kernel] cpu/hotplug: Fix SMT supported evaluation (Josh Poimboeuf) [1693310]
-- [kernel] sched/smt: Expose sched_smt_present static key (Josh Poimboeuf) [1693310]
-- [kernel] sched/smt: Make sched_smt_present track topology (Josh Poimboeuf) [1693310]
-- [firmware] efi: Don't use spinlocks for efi vars (Waiman Long) [1705743]
-- [firmware] efi: Use a file local lock for efivars (Waiman Long) [1705743]
-- [firmware] efi: Merge boolean flag arguments (Waiman Long) [1705743]
-- [x86] efi: Add nonblocking option to efi_query_variable_store() (Waiman Long) [1705743]
-- [firmware] Do not use WARN_ON(!spin_is_locked()) (Waiman Long) [1705743]
-- [x86] mm, perf: Allow recursive faults from interrupts (Rafael Aquini) [1703167]
-
-* Thu May 09 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1047.el7]
-- [x86] Update stepping values for coffee lake desktop (David Arcari) [1704812]
-- [netdrv] generalize napi_complete_done() (Manish Chopra) [1686861]
-- [makefile] makefile: bump drm backport version (Dave Airlie) [1680275]
-- [gpu] revert "drm/qxl: drop prime import/export callbacks" (Dave Airlie) [1680275]
-- [gpu] drm/i915: Do not enable FEC without DSC (Dave Airlie) [1680275]
-- [gpu] drm/ttm: fix re-init of global structures (Dave Airlie) [1680275]
-- [gpu] revert "drm/virtio: drop prime import/export callbacks" (Dave Airlie) [1680275]
-- [gpu] revert "drm/i915/fbdev: Actually configure untiled displays" (Dave Airlie) [1680275]
-- [gpu] drm/amdgpu/gmc9: fix VM_L2_CNTL3 programming (Dave Airlie) [1680275]
-- [gpu] drm/ttm: fix out-of-bounds read in ttm_put_pages() v2 (Dave Airlie) [1680275]
-- [gpu] drm/amdkfd: use init_mqd function to allocate object for hid_mqd (CI) (Dave Airlie) [1680275]
-- [gpu] drm/nouveau/volt/gf117: fix speedo readout register (Dave Airlie) [1680275]
-- [gpu] drm/amdgpu: psp_ring_destroy cause psp->km_ring.ring_mem NULL (Dave Airlie) [1680275]
-- [gpu] drm/nouveau/debugfs: Fix check of pm_runtime_get_sync failure (Dave Airlie) [1680275]
-- [gpu] drm/udl: use drm_gem_object_put_unlocked (Dave Airlie) [1680275]
-- [gpu] drm/virtio: do NOT reuse resource ids (Dave Airlie) [1680275]
-- [gpu] drm/i915/dp: revert back to max link rate and lane count on eDP (Dave Airlie) [1680275]
-- [gpu] drm/udl: add a release method and delay modeset teardown (Dave Airlie) [1680275]
-- [gpu] drm/i915/gvt: do not deliver a workload if its creation fails (Dave Airlie) [1680275]
-- [gpu] drm/i915/gvt: do not let pin count of shadow mm go negative (Dave Airlie) [1680275]
-- [gpu] drm/dp/mst: Configure no_stop_bit correctly for remote i2c xfers (Dave Airlie) [1680275]
-- [gpu] drm: Reorder set_property_atomic to avoid returning with an active ww_ctx (Dave Airlie) [1680275]
-- [gpu] drm/fb-helper: fix leaks in error path of drm_fb_helper_fbdev_setup (Dave Airlie) [1680275]
-- [gpu] drm/nouveau: Stop using drm_crtc_force_disable (Dave Airlie) [1680275]
-- [gpu] drm: Auto-set allow_fb_modifiers when given modifiers at plane init (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Enable vblank interrupt during CRC capture (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Disconnect mpcc when changing tg (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Don't re-program planes for DPMS changes (Dave Airlie) [1680275]
-- [gpu] drm/sched: Fix entities with 0 rqs (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Clear stream->mode_changed after commit (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Fix reference counting for struct dc_sink (Dave Airlie) [1680275]
-- [gpu] drm/i915/icl: Fix the TRANS_DDI_FUNC_CTL2 bitfield macro (Dave Airlie) [1680275]
-- [gpu] drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check (Dave Airlie) [1680275]
-- [gpu] drm/i915: Mark AML 0x87CA as ULX (Dave Airlie) [1680275]
-- [gpu] drm/vgem: fix use-after-free when drm_gem_handle_create() fails (Dave Airlie) [1680275]
-- [gpu] drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's (Dave Airlie) [1680275]
-- [gpu] drm/vmwgfx: Don't double-free the mode stored in par->set_mode (Dave Airlie) [1680275]
-- [gpu] drm/amdgpu: fix invalid use of change_bit (Dave Airlie) [1680275]
-- [gpu] drm/amd/powerplay: correct power reading on fiji (Dave Airlie) [1680275]
-- [gpu] drm/radeon/evergreen_cs: fix missing break in switch statement (Dave Airlie) [1680275]
-- [gpu] drm/fb-helper: generic: Fix drm_fbdev_client_restore() (Dave Airlie) [1680275]
-- [gpu] drm: Block fb changes for async plane updates (Dave Airlie) [1680275]
-- [drm] disable uncached DMA optimization for ARM and arm64 (Dave Airlie) [1680275]
-
-* Mon May 06 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1046.el7]
-- [netdrv] mlx5: Remove unsupported tag for ConnectX-6 device (Kamal Heib) [1693568]
-- [netdrv] mlx5: Remove unsupported tag for BlueField device (Kamal Heib) [1640590]
-- [md] raid: raid5 preserve the writeback action after the parity check (Nigel Croxon) [1701350]
-- [md] Revert "[md] Don't jump to compute_result state from check_result state" (Nigel Croxon) [1701350]
-- [linux] mm: disable numa migration faults for dax vmas (Jeff Moyer) [1701444]
-- [mm] gup: don't leak pte_devmap references in the gup slow paths (Jeff Moyer) [1698371]
-- [tty] Fix lock order in tty_do_resize() (Aristeu Rozanski) [1684982]
-- [tty] n_tty: Access termios values safely (Aristeu Rozanski) [1684982]
-- [tty] Convert termios_mutex to termios_rwsem (Aristeu Rozanski) [1684982]
-- [kernel] sched/fair: Limit sched_cfs_period_timer() loop to avoid hard lockup (Phil Auld) [1686505]
-- [x86] intel_rdt: Make resctrl a mountpoint (Prarit Bhargava) [1702559]
-
-* Fri May 03 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1045.el7]
-- [netdrv] mac80211_hwsim: Fix possible Spectre-v1 for hwsim_world_regdom_custom (Stanislaw Gruszka) [1639674]
-- [net] nl80211: Fix possible Spectre-v1 for NL80211_TXRATE_HT (Stanislaw Gruszka) [1639674]
-- [net] nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds (Stanislaw Gruszka) [1639674]
-- [netdrv] mac80211_hwsim: fix possible memory leak in hwsim_new_radio_nl() (Stanislaw Gruszka) [1626463]
-- [scsi] csiostor: fix missing data copy in csio_scsi_err_handler() (Arjun Vynipadath) [1696189]
-- [scsi] csiostor: fix calls to dma_set_mask_and_coherent() (Arjun Vynipadath) [1696189]
-- [scsi] csiostor: drop serial_number usage (Arjun Vynipadath) [1696189]
-- [scsi] csiostor: no need to check return value of debugfs_create functions (Arjun Vynipadath) [1696189]
-- [mm] memcontrol: allow to disable kmem accounting for cgroup (Waiman Long) [1673157]
-- [pci] Reset Lenovo ThinkPad P50 nvgpu at boot if necessary (Lyude Paul) [1628644]
-- [pci] Probe for device reset support during enumeration (Lyude Paul) [1628644]
-- [cpufreq] intel_pstate: Also use CPPC nominal_perf for base_frequency (Prarit Bhargava) [1696122]
-- [acpi] cppc: Fix guaranteed performance handling (Prarit Bhargava) [1696122]
-- [powerpc] security: Fix spectre_v2 reporting (Gustavo Duarte) [1694459]
-- [powerpc] fsl: Update Spectre v2 reporting (Gustavo Duarte) [1694459]
-- [powerpc] fsl: Add nospectre_v2 command line argument (Gustavo Duarte) [1694459]
-- [powerpc] fsl: Fix spectre_v2 mitigations reporting (Gustavo Duarte) [1694459]
-- [powerpc] powernv: Query firmware for count cache flush settings (Gustavo Duarte) [1694459]
-- [powerpc] pseries: Query hypervisor for count cache flush settings (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Add support for software count cache flush (Gustavo Duarte) [1694459]
-- [powerpc] Introduce asm-prototypes.h (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Add new security feature flags for count cache flush (Gustavo Duarte) [1694459]
-- [powerpc] asm: Add a patch_site macro & helpers for patching instructions (Gustavo Duarte) [1694459]
-- [powerpc] Add helper to check if offset is within relative branch range (Gustavo Duarte) [1694459]
-- [powerpc] 64: Make meltdown reporting Book3S 64 specific (Gustavo Duarte) [1694459]
-- [powerpc] 64: Call setup_barrier_nospec() from setup_arch() (Gustavo Duarte) [1694459]
-- [powerpc] 64: Add CONFIG_PPC_BARRIER_NOSPEC (Gustavo Duarte) [1694459]
-- [powerpc] 64: Make stf barrier PPC_BOOK3S_64 specific (Gustavo Duarte) [1694459]
-- [powerpc] 64: Disable the speculation barrier from the command line (Gustavo Duarte) [1694459]
-- [powerpc] powerpc64s: Show ori31 availability in spectre_v1 sysfs file not v2 (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Enhance the information in cpu_show_spectre_v1() (Gustavo Duarte) [1694459]
-- [powerpc] 64: Use barrier_nospec in syscall entry (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Enable barrier_nospec based on firmware settings (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Patch barrier_nospec in modules (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Add support for ori barrier_nospec patching (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Add barrier_nospec (Gustavo Duarte) [1694459]
-- [powerpc] reuse asm-generic/barrier.h (Gustavo Duarte) [1694459]
-- [s390] report new CPU capabilities (Hendrik Brueckner) [1690843]
-- [s390] smp: fix CPU hotplug deadlock with CPU rescan (Hendrik Brueckner) [1699797]
-
-* Thu May 02 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1044.el7]
-- [nvme] nvme-rdma: fix timeout handler (David Milburn) [1692548]
-- [cpufreq] intel_pstate: Add Skylake servers support (David Arcari) [1698453]
-- [pci] Lock each enable/disable num_vfs operation in sysfs (Ken Cox) [1698465]
-- [vfio] type1: Limit DMA mappings per container (Alex Williamson) [1695589] {CVE-2019-3882}
-- [hv] vmbus: Check for ring when getting debug info (Mohammed Gamal) [1691916]
-- [hv] vmbus: Return -EINVAL for the sys files for unopened channels (Mohammed Gamal) [1691916]
-- [netdrv] nfp: flower: fix implicit fallthrough warning (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: offload merge flows (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: support stats update for merge flows (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: generate merge flow rule (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: validate merge hint flows (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: handle merge hint messages (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: get flows by host context (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: allow tunnels to output to internal port (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: support fallback packets from internal ports (Pablo Cascon) [1700452]
-- [netdrv] nfp: allow fallback packets from non-reprs (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: allow offloading of matches on 'internal' ports (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: add infastructure for non-repr priv data (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: support multiple memory units for filter offloads (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: turn on recirc and merge hint support in firmware (Pablo Cascon) [1700452]
-- [netdrv] revert ixgbe: Replace GFP_ATOMIC with GFP_KERNEL (Ken Cox) [1692605]
-- [net] bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer (Gopal Tiwari) [1664555] {CVE-2019-3459}
-- [kernel] sched: Make scale_rt_power() deal with backward clocks (Oleksandr Natalenko) [1701115]
-- [s390] dasd: fix panic for failed online processing (Hendrik Brueckner) [1699796]
-
-* Fri Apr 26 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1043.el7]
-- [mm] oom_killer: Add task UID to printed info on an oom kill (Joel Savitz) [1691184]
-- [md] dm cache metadata: Fix loading discard bitset (Mike Snitzer) [1701619]
-- [scsi] arcmsr: call scsi_scan_host at the end of host initialization (Tomas Henzl) [1624367]
-- [scsi] cxgb4i: validate tcp sequence number only if chip version <= T5 (Arjun Vynipadath) [1696187]
-- [scsi] cxgb4i: get pf number from lldi->pf (Arjun Vynipadath) [1696187]
-- [netdrv] cxgb4vf: Call netif_carrier_off properly in pci_probe (Arjun Vynipadath) [1696165]
-- [netdrv] cxgb4vf: Enter debugging mode if FW is inaccessible (Arjun Vynipadath) [1696165]
-- [netdrv] cxgb4vf: Update port information in cxgb4vf_open() (Arjun Vynipadath) [1696165]
-- [netdrv] cxgb4vf: Few more link management changes (Arjun Vynipadath) [1696165]
-- [infiniband] rdma/iw_cxgb4: Always disconnect when QP is transitioning to TERMINATE state (Arjun Vynipadath) [1696185]
-- [infiniband] rdma/cxbg: Use correct sizing on buffers holding page DMA addresses (Arjun Vynipadath) [1696185]
-- [infiniband] cxgb4: kfree mhp after the debug print (Arjun Vynipadath) [1696185]
-- [infiniband] iw_cxgb4: cq/qp mask depends on bar2 pages in a host page (Arjun Vynipadath) [1696185]
-- [infiniband] iw_cxgb4: fix srqidx leak during connection abort (Arjun Vynipadath) [1696185]
-- [infiniband] iw_cxgb4: complete the cached SRQ buffers (Arjun Vynipadath) [1696185]
-- [infiniband] rdma/iw_cxgb4: Drop __GFP_NOFAIL (Arjun Vynipadath) [1696185]
-- [crypto] chelsio - Fixed Traffic Stall (Arjun Vynipadath) [1696191]
-- [crypto] chelsio - Fix passing zero to 'PTR_ERR' warning in chcr_aead_op (Arjun Vynipadath) [1696191]
-- [crypto] chelsio - Inline single pdu only (Arjun Vynipadath) [1696191]
-- [crypto] chelsio - avoid using sa_entry imm (Arjun Vynipadath) [1696191]
-- [linux] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping (Andrea Arcangeli) [1696080] {CVE-2019-3892}
-- [powerpc] Wire renameat2() syscall (Miklos Szeredi) [1624011]
-
-* Wed Apr 24 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1042.el7]
-- [scsi] remove scsi command from the device command list (Ming Lei) [1701086]
-- [block] Make blk_queue_enter() reexamine the DYING flag (Ming Lei) [1701348]
-- [block] wakeup tasks blocked on q->mq_freeze_wq (Ming Lei) [1701348]
-- [netdrv] mlx5-core: Mark ConnectX-6 Dx as unsupported device (Alaa Hleihel) [1685900]
-- [netdrv] mlx5: Update the list of the PCI supported devices (Alaa Hleihel) [1685900]
-- [netdrv] mlx5e: Switch to Toeplitz RSS hash by default (Alaa Hleihel) [1695493]
-- [netdrv] revert "net/mlx5e: Enable reporting checksum unnecessary also for L3 packets" (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Protect against non-uplink representor for encap (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Rx, Check ip headers sanity (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: FPGA, tls, idr remove on flow delete (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: FPGA, tls, hold rcu read lock a bit longer (Alaa Hleihel) [1695493]
-- [infiniband] ib/mlx5: Reset access mask when looping inside page fault handler (Alaa Hleihel) [1695493]
-- [infiniband] ib/mlx5: Compare only index part of a memory window rkey (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Consider tunnel type for encap contexts (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Cleanup attach encap function (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Update xon formula (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Update xoff formula (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: E-Switch, Fix esw manager vport indication for more vport commands (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: ethtool, Allow legacy link-modes configuration via non-extended ptys (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: ethtool, Fix type analysis of advertised link-mode (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Add a lock on tir list (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Add a missing check on idr_find, free buf (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Fix error handling when refreshing TIRs (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Decrease default mr cache size (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Remove redundant assignment (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Fix compilation warning in en_tc.c (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Fix port buffer function documentation format (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Fix compilation warning in eq.c (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Delete unused FPGA QPN variable (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Fix code style issue in mlx driver (Alaa Hleihel) [1695493]
-- [infiniband] revert "ib/mlx5: Fix long EEH recover time with NVMe offloads" (Alaa Hleihel) [1695493]
-- [infiniband] rdma/mlx5: Fix function name typo 'fileds' -> 'fields' (Alaa Hleihel) [1695493]
-- [kernel] mlx5: Fix offsets of ifc reserved fields (Alaa Hleihel) [1695493]
-- [netdrv] mlx4_en: fix spelling mistake: "quiting" -> "quitting" (Alaa Hleihel) [1695493]
-- [netdrv] mlx4_core: Fix several coding style errors (Alaa Hleihel) [1695493]
-- [netdrv] mlx4_core: Fix return codes of unsupported operations (Alaa Hleihel) [1695493]
-- [netdrv] net/mlx5e: Replace TC VLAN pop and push actions with VLAN modify (Alaa Hleihel) [1692777]
-- [netdrv] net/mlx5e: Support VLAN modify action (Alaa Hleihel) [1692777]
-- [netdrv] net/mlx5e: Add VLAN ID rewrite fields (Alaa Hleihel) [1692777]
-- [documentation] cputopology.txt: standardize document format (David Arcari) [1700822]
-- [documentation] docs: Fix a couple typos (David Arcari) [1700822]
-- [documentation] documentation: Update cputopology.txt (David Arcari) [1700822]
-- [documentation] doc: Documentation/cputopology.txt fix typo (David Arcari) [1700822]
-- [documentation] x86/topology: Fix function name in documentation (David Arcari) [1700822]
-- [documentation] x86/topology: Document cpu_llc_id (David Arcari) [1700822]
-- [documentation] x86/documentation: Start documenting x86 topology (David Arcari) [1700822]
-- [hwmon] (coretemp) Simplify package management (David Arcari) [1700822]
-- [powercap] intel_rapl: fix and tidy up error handling (David Arcari) [1700822]
-- [powercap] intel rapl: Convert to hotplug state machine (David Arcari) [1700822]
-- [powercap] intel_rapl: Propagate error code when registration fails (David Arcari) [1700822]
-- [powercap] intel_rapl: Add missing domain data update on hotplug (David Arcari) [1700822]
-- [powercap] rapl: track lead cpu per package (David Arcari) [1700822]
-- [lib] cpumask: Export cpumask_any_but() (David Arcari) [1700822]
-- [x86] Replace cpu_**_mask() with topology_**_cpumask() (David Arcari) [1700822]
-- [x86] perf/amd: Remove need to check "running" bit in NMI handler (David Arcari) [1696764]
-- [x86] perf/amd: Resolve NMI latency issues for active PMCs (David Arcari) [1696764]
-- [x86] perf/amd: Resolve race condition when disabling PMC (David Arcari) [1696764]
-
-* Wed Apr 24 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1041.el7]
-- [fs] ext4: return error code from ext4_mb_good_group() (Lukas Czerner) [1079962]
-- [fs] ext4: try to initialize all groups we can in case of failure on ppc64 (Lukas Czerner) [1079962]
-- [fs] sunrpc: Clean up initialisation of the struct rpc_rqst (Benjamin Coddington) [1674359]
-- [fs] revert "[fs] xfs: use rhashtable to track buffer cache" (Brian Foster) [1658749]
-- [fs] fuse: only invalidate atime in direct read (Miklos Szeredi) [1674557]
-- [fs] fanotify: fix handling of events on child sub-directory (Miklos Szeredi) [1652436]
-- [fs] ovl: copy up inode flags (Miklos Szeredi) [1462393]
-- [fs] ovl: fix decode of dir file handle with multi lower layers (Miklos Szeredi) [1693457]
-- [fs] ovl: fix recursive oi->lock in ovl_link() (Miklos Szeredi) [1693457]
-- [fs] ovl: fix error handling in ovl_verify_set_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: fix format of setxattr debug (Miklos Szeredi) [1693457]
-- [fs] ovl: fix access beyond unterminated strings (Miklos Szeredi) [1693457]
-- [fs] ovl: fix memory leak on unlink of indexed file (Miklos Szeredi) [1693457]
-- [fs] ovl: fix oopses in ovl_fill_super() failure paths (Miklos Szeredi) [1693457]
-- [fs] nfsd: fix leaked file lock with nfs exported overlayfs (Miklos Szeredi) [1693457]
-- [fs] ovl: fix wrong use of impure dir cache in ovl_iterate() (Miklos Szeredi) [1693457]
-- [fs] ovl: use inode_insert5() to hash a newly created inode (Miklos Szeredi) [1693457]
-- [fs] ovl: Pass argument to ovl_get_inode() in a structure (Miklos Szeredi) [1693457]
-- [fs] ovl: set I_CREATING on inode being created (Miklos Szeredi) [1693457]
-- [fs] vfs: don't evict uninitialized inode (Miklos Szeredi) [1693457]
-- [fs] new primitive: discard_new_inode() (Miklos Szeredi) [1693457]
-- [fs] do d_instantiate/unlock_new_inode combinations safely (Miklos Szeredi) [1693457]
-- [fs] udf: fix the udf_iget() vs. udf_new_inode() races (Miklos Szeredi) [1693457]
-- [fs] vfs: factor out inode_insert5() (Miklos Szeredi) [1693457]
-- [fs] ovl: clean up copy-up error paths (Miklos Szeredi) [1693457]
-- [fs] ovl: return EIO on internal error (Miklos Szeredi) [1693457]
-- [fs] ovl: make ovl_create_real() cope with vfs_mkdir() safely (Miklos Szeredi) [1693457]
-- [fs] ovl: create helper ovl_create_temp() (Miklos Szeredi) [1693457]
-- [fs] ovl: return dentry from ovl_create_real() (Miklos Szeredi) [1693457]
-- [fs] ovl: struct cattr cleanups (Miklos Szeredi) [1693457]
-- [fs] ovl: strip debug argument from ovl_do_ helpers (Miklos Szeredi) [1693457]
-- [fs] ovl: remove WARN_ON() real inode attributes mismatch (Miklos Szeredi) [1693457]
-- [fs] ovl: Kconfig documentation fixes (Miklos Szeredi) [1693457]
-- [fs] ovl: update documentation for unionmount-testsuite (Miklos Szeredi) [1693457]
-- [fs] ovl: update documentation w.r.t "xino" feature (Miklos Szeredi) [1693457]
-- [fs] ovl: add support for "xino" mount and config options (Miklos Szeredi) [1693457]
-- [fs] ovl: consistent d_ino for non-samefs with xino (Miklos Szeredi) [1693457]
-- [fs] ovl: consistent i_ino for non-samefs with xino (Miklos Szeredi) [1693457]
-- [fs] ovl: constant st_ino for non-samefs with xino (Miklos Szeredi) [1693457]
-- [fs] ovl: allocate anon bdev per unique lower fs (Miklos Szeredi) [1693457]
-- [fs] ovl: factor out ovl_map_dev_ino() helper (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup ovl_update_time() (Miklos Szeredi) [1693457]
-- [fs] ovl: add WARN_ON() for non-dir redirect cases (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup setting OVL_INDEX (Miklos Szeredi) [1693457]
-- [fs] ovl: set d->is_dir and d->opaque for last path element (Miklos Szeredi) [1693457]
-- [fs] ovl: Do not check for redirect if this is last layer (Miklos Szeredi) [1693457]
-- [fs] ovl: lookup in inode cache first when decoding lower file handle (Miklos Szeredi) [1693457]
-- [fs] ovl: do not try to reconnect a disconnected origin dentry (Miklos Szeredi) [1693457]
-- [fs] ovl: disambiguate ovl_encode_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: set lower layer st_dev only if setting lower st_ino (Miklos Szeredi) [1693457]
-- [fs] ovl: fix lookup with middle layer opaque dir and absolute path redirects (Miklos Szeredi) [1693457]
-- [fs] ovl: Set d->last properly during lookup (Miklos Szeredi) [1693457]
-- [fs] ovl: set i_ino to the value of st_ino for NFS export (Miklos Szeredi) [1693457]
-- [fs] ovl: update Kconfig texts (Miklos Szeredi) [1693457]
-- [fs] ovl: redirect_dir=nofollow should not follow redirect for opaque lower (Miklos Szeredi) [1693457]
-- [fs] ovl: fix ptr_ret.cocci warnings (Miklos Szeredi) [1693457]
-- [fs] ovl: check ERR_PTR() return value from ovl_lookup_real() (Miklos Szeredi) [1693457]
-- [fs] ovl: check lower ancestry on encode of lower dir file handle (Miklos Szeredi) [1693457]
-- [fs] ovl: hash non-dir by lower inode for fsnotify (Miklos Szeredi) [1693457]
-- [fs] nfsd: store stat times in fill_pre_wcc() instead of inode times (Miklos Szeredi) [1693457]
-- [fs] nfsd: encode stat->mtime for getattr instead of inode->i_mtime (Miklos Szeredi) [1693457]
-- [fs] ovl: check ERR_PTR() return value from ovl_encode_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: fix regression in fsnotify of overlay merge dir (Miklos Szeredi) [1693457]
-- [fs] xfs: preserve i_rdev when recycling a reclaimable inode (Miklos Szeredi) [1693457]
-- [fs] ovl: wire up NFS export operations (Miklos Szeredi) [1693457]
-- [fs] ovl: lookup indexed ancestor of lower dir (Miklos Szeredi) [1693457]
-- [fs] ovl: lookup connected ancestor of dir in inode cache (Miklos Szeredi) [1693457]
-- [fs] ovl: hash non-indexed dir by upper inode for NFS export (Miklos Szeredi) [1693457]
-- [fs] ovl: decode pure lower dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode indexed dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode lower file handles of unlinked but open files (Miklos Szeredi) [1693457]
-- [fs] ovl: decode indexed non-dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode lower non-dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: encode lower file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: copy up before encoding non-connectable dir file handle (Miklos Szeredi) [1693457]
-- [fs] ovl: encode non-indexed upper file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode connected upper dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode pure upper file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: encode pure upper file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: document NFS export (Miklos Szeredi) [1693457]
-- [fs] vfs: factor out helpers d_instantiate_anon() and d_alloc_anon() (Miklos Szeredi) [1693457]
-- [fs] ovl: store 'has_upper' and 'opaque' as bit flags (Miklos Szeredi) [1693457]
-- [fs] ovl: copy up of disconnected dentries (Miklos Szeredi) [1693457]
-- [fs] ovl: use d_splice_alias() in place of d_add() in lookup (Miklos Szeredi) [1693457]
-- [fs] ovl: do not pass overlay dentry to ovl_get_inode() (Miklos Szeredi) [1693457]
-- [fs] ovl: factor out ovl_get_index_fh() helper (Miklos Szeredi) [1693457]
-- [fs] ovl: whiteout orphan index entries on mount (Miklos Szeredi) [1693457]
-- [fs] ovl: whiteout index when union nlink drops to zero (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup dir index when dir nlink drops to zero (Miklos Szeredi) [1693457]
-- [fs] ovl: index directories on copy up for NFS export (Miklos Szeredi) [1693457]
-- [fs] ovl: index all non-dir on copy up for NFS export (Miklos Szeredi) [1693457]
-- [fs] ovl: create ovl_need_index() helper (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup temp index entries (Miklos Szeredi) [1693457]
-- [fs] ovl: verify directory index entries on mount (Miklos Szeredi) [1693457]
-- [fs] ovl: verify whiteout index entries on mount (Miklos Szeredi) [1693457]
-- [fs] ovl: use directory index entries for consistency verification (Miklos Szeredi) [1693457]
-- [fs] ovl: unbless lower st_ino of unverified origin (Miklos Szeredi) [1693457]
-- [fs] ovl: verify stored origin fh matches lower dir (Miklos Szeredi) [1693457]
-- [fs] ovl: add support for "nfs_export" configuration (Miklos Szeredi) [1693457]
-- [fs] ovl: update documentation of inodes index feature (Miklos Szeredi) [1693457]
-- [fs] ovl: generalize ovl_verify_origin() and helpers (Miklos Szeredi) [1693457]
-- [fs] ovl: simplify arguments to ovl_check_origin_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: factor out ovl_check_origin_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: store layer index in ovl_layer (Miklos Szeredi) [1693457]
-- [fs] ovl: force r/o mount when index dir creation fails (Miklos Szeredi) [1693457]
-- [fs] ovl: disable index when no xattr support (Miklos Szeredi) [1693457]
-- [fs] ovl: fix inconsistent d_ino for legacy merge dir (Miklos Szeredi) [1693457]
-- [fs] ovl: take mnt_want_write() for removing impure xattr (Miklos Szeredi) [1693457]
-- [fs] ovl: take mnt_want_write() for work/index dir setup (Miklos Szeredi) [1693457]
-- [fs] ovl: fix another overlay: warning prefix (Miklos Szeredi) [1693457]
-- [fs] ovl: take lower dir inode mutex outside upper sb_writers lock (Miklos Szeredi) [1693457]
-- [fs] ovl: fix failure to fsync lower dir (Miklos Szeredi) [1693457]
-- [fs] ovl: hash directory inodes for fsnotify (Miklos Szeredi) [1693457]
-- [fs] ovl: fix overlay: warning prefix (Miklos Szeredi) [1693457]
-- [fs] ovl: Use PTR_ERR_OR_ZERO() (Miklos Szeredi) [1693457]
-- [fs] ovl: Sync upper dirty data when syncing overlayfs (Miklos Szeredi) [1693457]
-- [fs] ovl: update ctx->pos on impure dir iteration (Miklos Szeredi) [1693457]
-- [fs] ovl: Pass ovl_get_nlink() parameters in right order (Miklos Szeredi) [1693457]
-- [fs] ovl: remove unneeded arg from ovl_verify_origin() (Miklos Szeredi) [1693457]
-- [fs] ovl: rename ufs to ofs (Miklos Szeredi) [1693457]
-- [fs] ovl: clean up getting lower layers (Miklos Szeredi) [1693457]
-- [fs] ovl: clean up workdir creation (Miklos Szeredi) [1693457]
-- [fs] ovl: clean up getting upper layer (Miklos Szeredi) [1693457]
-- [fs] ovl: move ovl_get_workdir() and ovl_get_lower_layers() (Miklos Szeredi) [1693457]
-- [fs] ovl: reduce the number of arguments for ovl_workdir_create() (Miklos Szeredi) [1693457]
-- [fs] ovl: change order of setup in ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: factor out ovl_free_fs() helper (Miklos Szeredi) [1693457]
-- [fs] ovl: grab reference to workbasedir early (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_indexdir() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_lower_layers() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_workdir() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_upper() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_lowerstack() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_workpath() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_upperpath() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: use path_put_init() in error paths for ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] vfs: add path_put_init() (Miklos Szeredi) [1693457]
-- [fs] ovl: update cache version of impure parent on rename (Miklos Szeredi) [1693457]
-- [fs] ovl: relax same fs constraint for constant st_ino (Miklos Szeredi) [1693457]
-- [fs] ovl: return anonymous st_dev for lower inodes (Miklos Szeredi) [1693457]
-- [fs] ovl: allocate anonymous devs for lowerdirs (Miklos Szeredi) [1693457]
-- [fs] ovl: re-structure overlay lower layers in-memory (Miklos Szeredi) [1693457]
-- [fs] ovl: move include of ovl_entry.h into overlayfs.h (Miklos Szeredi) [1693457]
-- [fs] ovl: fix rmdir problem on non-merge dir with origin xattr (Miklos Szeredi) [1693457]
-- [fs] ovl: simplify ovl_check_empty_and_clear() (Miklos Szeredi) [1693457]
-- [fs] ovl: no direct iteration for dir with origin xattr (Miklos Szeredi) [1693457]
-- [fs] ovl: fix may_write_real() for overlayfs directories (Miklos Szeredi) [1693457]
-- [fs] ovl: don't allow writing ioctl on lower layer (Miklos Szeredi) [1693457]
-- [fs] ovl: fix relatime for directories (Miklos Szeredi) [1693457]
-- [fs] vfs: add flags to d_real() (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup d_real for negative (Miklos Szeredi) [1693457]
-- [fs] overlayfs, locking: Remove smp_mb__before_spinlock() usage (Miklos Szeredi) [1693457]
-- [fs] ovl: constant d_ino for non-merge dirs (Miklos Szeredi) [1693457]
-- [fs] ovl: constant d_ino across copy up (Miklos Szeredi) [1693457]
-- [fs] ovl: fix readdir error value (Miklos Szeredi) [1693457]
-- [fs] ovl: check snprintf return (Miklos Szeredi) [1693457]
-- [fs] overlayfs: use uuid_t instead of uuid_be (Miklos Szeredi) [1693457]
-- [fs] ovl: check if upperdir fs supports O_TMPFILE (Miklos Szeredi) [1693457]
-- [fs] vfs: create vfs helper vfs_tmpfile() (Miklos Szeredi) [1693457]
-- [fs] iget_locked et.al.: make sure we don't return bad inodes (Miklos Szeredi) [1693457]
-- [fs] ovl: wrappers for ->i_mutex access (Miklos Szeredi) [1693457]
-- [fs] NFSv4.1: Reinitialise sequence results before retransmitting a request (Benjamin Coddington) [1649747]
-- [fs] NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() (Benjamin Coddington) [1649747]
-- [fs] NFS: Fix I/O request leakages (Benjamin Coddington) [1649747]
-- [fs] sunrpc: fix 4 more call sites that were using stack memory with a scatterlist (Benjamin Coddington) [1649747]
-- [fs] xprtrdma: Yet another double DMA-unmap (Benjamin Coddington) [1649747]
-- [fs] SUNRPC: Fix leak of krb5p encode pages (Benjamin Coddington) [1649747]
-- [fs] NFSv4: Don't exit the state manager without clearing NFS4CLNT_MANAGER_RUNNING (Benjamin Coddington) [1649747]
-- [fs] nfs: Fix a missed page unlock after pg_doio() (Benjamin Coddington) [1649747]
-- [fs] NFSv4: Fix a tracepoint Oops in initiate_file_draining() (Benjamin Coddington) [1649747]
-- [fs] NFSv4: Fix a tracepoint Oops in initiate_file_draining() (Benjamin Coddington) [1649747]
-- [fs] NFS: Fix a typo in nfs_init_timeout_values() (Benjamin Coddington) [1649747]
-- [fs] NFSv4/flexfiles: Fix invalid deref in FF_LAYOUT_DEVID_NODE() (Benjamin Coddington) [1649747]
-- [fs] NFS: Add missing encode / decode sequence_maxsz to v4.2 operations (Benjamin Coddington) [1649747]
-- [fs] NFS: Fix a soft lockup in the delegation recovery code (Benjamin Coddington) [1649747]
-- [fs] NFS: Fix an I/O request leakage in nfs_do_recoalesce (Benjamin Coddington) [1649747]
-- [fs] NFSv4.1: Fix the r/wsize checking (Benjamin Coddington) [1649747]
-- [fs] NFSv4.1 fix infinite loop on I/O. (Benjamin Coddington) [1649747]
-- [fs] NFSv4: Fix a sleep in atomic context in nfs4_callback_sequence() (Benjamin Coddington) [1649747]
-- [fs] NFSv4 client live hangs after live data migration recovery (Benjamin Coddington) [1649747]
-- [fs] pnfs/blocklayout: off by one in bl_map_stripe() (Benjamin Coddington) [1649747]
-
-* Thu Apr 18 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1040.el7]
-- [char] ipmi: ipmi_si_hardcode.c: init si_type array to fix a crash (Tony Camuso) [1692236]
-- [char] ipmi_si: Fix crash when using hard-coded device (Tony Camuso) [1692236]
-- [char] ipmi: Remove platform driver overrides and use the id_table (Tony Camuso) [1692236]
-- [netdrv] cxgb4: Don't return EAGAIN when TCAM is full (Arjun Vynipadath) [1696163]
-- [netdrv] libcxgb: fix incorrect ppmax calculation (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: add tcb flags and tcb rpl struct (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: Update 1.23.3.0 as the latest firmware supported (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: Enable outer UDP checksum offload for T6 (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4/cxgb4vf: Fix up netdev->hw_features (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: Export sge_host_page_size to ulds (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: Update 1.22.9.0 as the latest firmware supported (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4/cxgb4vf: Program hash region for {t4/t4vf}_change_mac() (Arjun Vynipadath) [1696163]
-- [net] team: set slave to promisc if team is already in promisc mode (Hangbin Liu) [1693637]
-- [net] revert "netfilter: ensure number of counters is >0 in do_replace()" (Xin Long) [1693963]
-- [net] netfilter: ensure number of counters is >0 in do_replace() (Xin Long) [1693963]
-- [net] vxlan: Don't call gro_cells_destroy() before device is unregistered (Andrea Claudi) [1692498]
-- [net] netfilter: nfnetlink: relax strict multicast group check from netlink_bind (Guillaume Nault) [1689049]
-- [net] netfilter: nfnetlink: fix insufficient validation in nfnetlink_bind (Guillaume Nault) [1689049]
-- [net] sctp: call sctp_auth_init_hmacs() in sctp_sock_migrate() (Xin Long) [1699698 1687639]
-- [net] sctp: move up sctp_auth_init_hmacs() in sctp_endpoint_init() (Xin Long) [1687639]
-- [net] sctp: sctp_sock_migrate() returns error if sctp_bind_addr_dup() fails (Xin Long) [1687639]
-- [net] sctp: don't compare hb_timer expire date before starting it (Xin Long) [1687639]
-- [net] sctp: call gso_reset_checksum when computing checksum in sctp_gso_segment (Xin Long) [1687639]
-- [net] sctp: set chunk transport correctly when it's a new asoc (Xin Long) [1687639]
-- [net] sctp: allocate sctp_sockaddr_entry with kzalloc (Xin Long) [1687639]
-- [net] sctp: initialize sin6_flowinfo for ipv6 addrs in sctp_inet6addr_event (Xin Long) [1687639]
-- [net] sctp: kfree_rcu asoc (Xin Long) [1687639]
-- [net] sctp: not allow to set asoc prsctp_enable by sockopt (Xin Long) [1698691 1687639]
-- [net] sctp: clear the transport of some out_chunk_list chunks in sctp_assoc_rm_peer (Xin Long) [1687639]
-- [net] sctp: fix race on sctp_id2asoc (Xin Long) [1687639]
-- [net] sctp: use the pmtu from the icmp packet to update transport pathmtu (Xin Long) [1687639]
-- [net] sctp: hold transport before accessing its asoc in sctp_transport_get_next (Xin Long) [1687639]
-- [net] sctp: fix the issue that pathmtu may be set lower than MINSEGMENT (Xin Long) [1687639]
-- [net] sctp: not allow transport timeout value less than HZ/5 for hb_timer (Xin Long) [1687639]
-- [net] sctp: remove sctp_chunk_put from fail_mark err path in sctp_ulpevent_make_rcvmsg (Xin Long) [1687639]
-- [net] sctp: delay the authentication for the duplicated cookie-echo chunk (Xin Long) [1687639]
-- [net] sctp: fix the issue that the cookie-ack with auth can't get processed (Xin Long) [1687639]
-- [net] sctp: use the old asoc when making the cookie-ack chunk in dupcook_d (Xin Long) [1687639]
-- [net] sctp: init active key for the new asoc in dupcook_a and dupcook_b (Xin Long) [1687639]
-- [net] sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 (Xin Long) [1687639]
-- [net] sctp: do not leak kernel memory to user space (Xin Long) [1687639]
-- [net] sctp: fix identification of new acks for SFR-CACC (Xin Long) [1687639]
-- [net] sctp: fix the handling of ICMP Frag Needed for too small eTUs (Xin Long) [1687639]
-- [net] sctp: do not retransmit upon FragNeeded if PMTU discovery is disabled (Xin Long) [1687639]
-- [net] tcp: handle inet_csk_reqsk_queue_add() failures (Guillaume Nault) [1664444]
-- [net] tcp/dccp: remove __reqsk_free() from inet_child_forget() (Guillaume Nault) [1664444]
-- [net] tcp/dccp: fix another race at listener dismantle (Guillaume Nault) [1664444]
-- [net] tcp/dccp: fix race at listener dismantle phase (Guillaume Nault) [1664444]
-- [net] openvswitch: Remove padding from packet before L3+ conntrack processing (Eelco Chaudron) [1684518]
-- [s390] cputime: fix incorrect system time (Hendrik Brueckner) [1698825]
-- [x86] platform/uv: Use efi_runtime_lock to serialise BIOS calls (Frank Ramsay) [1677704]
-- [x86] platform/uv: Use efi_enabled() instead of test_bit() (Frank Ramsay) [1677704]
-- [x86] platform/uv: Remove uv_bios_call_reentrant() (Frank Ramsay) [1677704]
-- [x86] platform/uv: Remove unnecessary #ifdef CONFIG_EFI (Frank Ramsay) [1677704]
-
-* Wed Apr 17 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1039.el7]
-- [kernel] modules: Only return -EEXIST for modules that have finished loading (Prarit Bhargava) [1658812]
-- [tools] power turbostat: Add Die column (Steve Best) [1698983]
-- [lib] idr: free the top layer if idr tree has the maximum height (Vladis Dronov) [1698115]
-- [misc] hpilo: Do not claim unsupported hardware (Joseph Szczypek) [1691151]
-- [misc] hpilo: Exclude unsupported device via blacklist (Joseph Szczypek) [1691151]
-- [scsi] scsi_error: Fix sdev->cmd_list usage in scsi_reset_provider() when using SCSI-MQ. (Ewan Milne) [1690686]
-- [nvme] cancel request synchronously (Ming Lei) [1688518]
-- [block] blk-mq: introduce blk_mq_complete_request_sync() (Ming Lei) [1688518]
-- [infiniband] rdma/vmw_pvrdma: Fix memory leak on pvrdma_pci_remove (Kamal Heib) [1698939]
-- [netdrv] ixgbe: extend PTP gettime function to read system clock (Ken Cox) [1697862]
-- [netdrv] mlx5: extend PTP gettime function to read system clock (Alaa Hleihel) [1697861]
-- [netdrv] mlx5: update timecounter at least twice per counter overflow (Alaa Hleihel) [1697861]
-- [netdrv] ibmvnic: Fix netdev feature clobbering during a reset (Steve Best) [1699039]
-- [netdrv] ibmvnic: Enable GRO (Steve Best) [1699039]
-- [net] xfrm: get rid of incorrect WARN (Davide Caratti) [1694585]
-- [net] veth: allow to setup multicast address for veth device (Hangbin Liu) [1572205]
-- [net] ipv4: fix buffer overflow in ip_options_compile() (Davide Caratti) [1694583]
-- [net] nf_tables: Remove TechPreview marker (Phil Sutter) [1671465]
-- [net] ptp: fix Spectre v1 vulnerability (Hangbin Liu) [1672568]
-- [net] sctp: get sctphdr by offset in sctp_compute_cksum (Xin Long) [1677495]
-- [net] sctp: force the params with right types for sctp csum apis (Xin Long) [1677495]
-- [net] route: set the deleted fnhe fnhe_daddr to 0 in ip_del_fnhe to fix a race (Xin Long) [1630136]
-- [net] ppp: fix pppoe_dev deletion condition in pppoe_release() (Guillaume Nault) [1589258]
-- [net] vxlan: Fix GRO cells race condition between receive and link delete (Andrea Claudi) [1687045]
-- [net] ipv6: fallback to full lookup if table lookup is unsuitable (Guillaume Nault) [1535977]
-- [net] ipv6: enforce egress device match in per table nexthop lookups (Guillaume Nault) [1535977]
-- [net] ipv6: Use passed in table for nexthop lookups (Guillaume Nault) [1535977]
-- [net] Fix nexthop lookups (Guillaume Nault) [1535977]
-- [net] ipv4: fix refcount leak in fib_check_nh() (Guillaume Nault) [1535977]
-- [net] Use passed in table for nexthop lookups (Guillaume Nault) [1535977]
-
-* Fri Apr 12 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1038.el7]
-- [tools] power turbostat: Add Icelake support (Steve Best) [1517661]
-- [netdrv] ibmvnic: Fix completion structure initialization (Steve Best) [1697107]
-- [pci] pm: Force devices to D0 in pci_pm_thaw_noirq() (Myron Stowe) [1628800]
-- [pci] pm: Restore the status of PCI devices across hibernation (Myron Stowe) [1628800]
-- [md] dm table: propagate BDI_CAP_STABLE_WRITES to fix sporadic checksum errors (Mike Snitzer) [1693466]
-- [md] dm: disable DISCARD if the underlying storage no longer supports it (Mike Snitzer) [1691930]
-- [message] scsi: mptsas: Fixup device hotplug for VMWare ESXi (Tomas Henzl) [1661906]
-- [nvme] nvmet: ignore EOPNOTSUPP for discard (Ewan Milne) [1524958]
-- [nvme] nvme-pci: fix memory leak on probe failure (David Milburn) [1689008]
-- [nvme] nvme-pci: limit max IO size and segments to avoid high order allocations (David Milburn) [1689008]
-- [powerpc] bpf: Fix generation of load/store DW instructions (Yauheni Kaliuta) [1684367]
-
-* Mon Apr 08 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1037.el7]
-- [fs] task_mmu.c: do not show VmExe bigger than total executable virtual memory (Rafael Aquini) [1690946]
-- [fs] blockdev: Fix livelocks on loop device (Lukas Czerner) [1686149]
-- [fs] ext4: fix crash during online resizing (Lukas Czerner) [1686149]
-- [fs] revert "[fs] Hang/soft lockup in d_invalidate with simultaneous calls" (Benjamin Coddington) [1696374]
-- [fs] revert "[fs] d_invalidate(): unhash immediately" (Benjamin Coddington) [1696374]
-- [fs] revert "[fs] mnt: fix __detach_mounts infinite loop" (Benjamin Coddington) [1696374]
-- [infiniband] ib/hfi1: Failed to drain send queue when QP is put into error state (Alex Estrin) [1695215]
-- [md] Don't jump to compute_result state from check_result state (Nigel Croxon) [1537033]
-- [iommu] amd: Reserve exclusion range in iova-domain (Jerry Snitselaar) [1691196]
-- [mm] thp: relocate flush_cache_range() in migrate_misplaced_transhuge_page() (Andrea Arcangeli) [1636066]
-- [mm] thp: fix mmu_notifier in migrate_misplaced_transhuge_page() (Andrea Arcangeli) [1636066]
-- [mm] thp: fix MADV_DONTNEED vs migrate_misplaced_transhuge_page race condition (Andrea Arcangeli) [1636066]
-- [mm] revert "mm: numa: defer TLB flush for THP migration as long as possible" (Andrea Arcangeli) [1636066]
-- [mm] thp/migration: switch from flush_tlb_range to flush_pmd_tlb_range (Andrea Arcangeli) [1636066]
-- [mm] migrate.c: stabilise page count when migrating transparent hugepages (Andrea Arcangeli) [1636066]
-- [mm] numa: add migrated transhuge pages to LRU the same way as base pages (Andrea Arcangeli) [1636066]
-- [mm] thp: fix MADV_DONTNEED vs. MADV_FREE race (Andrea Arcangeli) [1636066]
-- [powerpc] tm: Add TM Unavailable Exception (Steve Best) [1694778]
-- [powerpc] tm: Add commandline option to disable hardware transactional memory (Steve Best) [1694778]
-
-* Thu Apr 04 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1036.el7]
-- [documentation] Long-running irq handlers can stall RCU grace periods (Jerome Marchand) [1470510]
-- [netdrv] tg3: allow ethtool -p to work for NICs in down state (Jonathan Toppins) [1694928]
-- [netdrv] hv_netvsc: Fix unwanted wakeup after tx_disable (Mohammed Gamal) [1632653]
-- [tools] power turbostat: return the exit status of a command (David Arcari) [1642738]
-- [block] blk-mq: fix IO accounting in case of none io scheduler (Ming Lei) [1669684]
-- [md] dm thin: fix trailing semicolon in __remap_and_issue_shared_cell (Mike Snitzer) [1694179]
-- [md] dm thin: remove needless assignments in cell_error() and error_retry_list() (Mike Snitzer) [1694179]
-- [md] dm thin: add sanity checks to thin-pool and external snapshot creation (Mike Snitzer) [1694179]
-- [md] dm thin: fix bug where bio that overwrites thin block ignores FUA (Mike Snitzer) [1694179]
-- [md] dm thin: fix passdown_double_checking_shared_status() (Mike Snitzer) [1694179]
-- [md] dm thin: bump target version (Mike Snitzer) [1694179]
-- [md] dm thin: send event about thin-pool state change _after_ making it (Mike Snitzer) [1694179]
-- [md] dm thin metadata: fix __udivdi3 undefined on 32-bit (Mike Snitzer) [1694179]
-- [documentation] dm thin: include metadata_low_watermark threshold in pool status (Mike Snitzer) [1694179]
-- [documentation] dm thin: extend thinpool status format string with omitted fields (Mike Snitzer) [1694179]
-- [documentation] dm thin: fixes in thin-provisioning.txt (Mike Snitzer) [1694179]
-- [md] dm block manager: remove redundant unlikely annotation (Mike Snitzer) [1694179]
-- [md] dm: Avoid namespace collision with bitmap API (Mike Snitzer) [1694179]
-- [md] dm thin metadata: THIN_MAX_CONCURRENT_LOCKS should be 6 (Mike Snitzer) [1694179]
-- [x86] mce/amd, edac/mce_amd: Add new error descriptions for some SMCA bank types (Gary Hook) [1685269]
-- [edac] x86/mce/amd, edac/mce_amd: Add new McaTypes for CS, PSP, and SMU units (Gary Hook) [1685269]
-- [edac] x86/mce/amd, edac/mce_amd: Add new MP5, NBIO, and PCIE SMCA bank types (Gary Hook) [1685269]
-- [x86] mce/amd: Fix the thresholding machinery initialization order (Gary Hook) [1685269]
-- [x86] mce/amd: Read MCx_MISC block addresses on any CPU (Gary Hook) [1685269]
-- [x86] mce/amd: Cache SMCA MISC block addresses (Gary Hook) [1685269]
-- [x86] mce/amd: Carve out SMCA get_block_address() code (Gary Hook) [1685269]
-- [x86] mce/amd: Get address from already initialized block (Gary Hook) [1685269]
-- [x86] perf: Disable intel_bts when PTI (Jiri Olsa) [1643565]
-
-* Wed Apr 03 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1035.el7]
-- [fs] xfs: don't overflow xattr listent buffer (Miklos Szeredi) [1693856]
-- [security] selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock ("J. Bruce Fields") [1624848]
-- [fs] ovl: check whiteout in ovl_create_over_whiteout() (Miklos Szeredi) [1662265]
-- [fs] ovl: fix return value from ovl_posix_acl_create() (Miklos Szeredi) [1677705]
-- [fs] ceph: Fix append mode for sync/direct write (Zheng Yan) [1691227]
-- [kernel] bpf: fix inner map masking to prevent oob under speculation (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [kernel] bpf: prevent out of bounds speculation on pointer arithmetic (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [kernel] bpf: restrict unknown scalars of mixed signed bounds for unprivileged (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [kernel] bpf: move {prev_, }insn_idx into verifier env (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [kernel] bpf: Simplify ptr_min_max_vals adjustment (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [s390] pkey: move pckmo subfunction available checks away from module init (Hendrik Brueckner) [1692781]
-- [x86] kvm/hyper-v: avoid spurious pending stimer on vCPU init (Vitaly Kuznetsov) [1687556]
-- [x86] kvm: x86: fix handling of role.cr4_pae and rename it to 'gpte_size' (Vitaly Kuznetsov) [1497611 1565739]
-- [x86] kvm: nvmx: Do not inherit quadrant and invalid for the root shadow EPT (Vitaly Kuznetsov) [1497611 1565739]
-- [x86] kvm/mmu: fix switch between root and guest MMUs (Vitaly Kuznetsov) [1497611 1565739]
-
-* Mon Apr 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1034.el7]
-- [kvm] KVM: x86: work around leak of uninitialized stack contents (Paolo Bonzini) [1671931] {CVE-2019-7222}
-- [linux] perf: Fix a race between ring_buffer_detach() and ring_buffer_attach() (Jiri Olsa) [1589335]
-- [netdrv] iwlwifi: add new card for 9260 series (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: update product name for 9260 and 9560 (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: add new cards for 22560, 9260 and killer series (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: remove support for 9000 A-step devices (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: add new cards for 9560, 9462, 9461 and killer series (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: move common 9000 cfg parameters to common macro (Stanislaw Gruszka) [1641514]
-- [net] sctp: not allow pathmtu to be set greater than INT_MAX (Xin Long) [1653067]
-- [net] sock: consistent handling of extreme SO_SNDBUF/SO_RCVBUF values (Guillaume Nault) [1672321]
-- [net] geneve: correctly handle ipv6.disable module parameter (Jiri Benc) [1677049]
-- [net] neighbour: Avoid writing before skb->head in neigh_hh_output() (Stefano Brivio) [1636831]
-- [net] ipv6: Check available headroom in ip6_xmit() even without options (Stefano Brivio) [1636831]
-- [net] ipv6: fix possible use-after-free in ip6_xmit() (Stefano Brivio) [1636831]
-- [fs] block: fix integrity verificaton on READ bio (Ming Lei) [1689019]
-- [scsi] hpsa: remove timeout from TURs (Joseph Szczypek) [1584334]
-- [nvdimm] libnvdimm/security: Require nvdimm_security_setup_events() to succeed (Jeff Moyer) [1584975]
-- [tools] nfit_test: fix security state pull for nvdimm security nfit_test (Jeff Moyer) [1584975]
-- [nvdimm] libnvdimm/security: Fix nvdimm_security_state() state request selection (Jeff Moyer) [1584975]
-- [acpi] nfit: Remove duplicate set nd_set in acpi_nfit_init_interleave_set() (Jeff Moyer) [1584975]
-- [acpi] nfit: Fix race accessing memdev in nfit_get_smbios_id() (Jeff Moyer) [1584975]
-- [kernel] libnvdimm/dimm: Fix security capability detection for non-Intel NVDIMMs (Jeff Moyer) [1584975]
-- [acpi] nfit: Mark some functions as __maybe_unused (Jeff Moyer) [1584975]
-- [acpi] nfit: delete the function to_acpi_nfit_desc (Jeff Moyer) [1584975]
-- [acpi] nfit: delete the redundant header file (Jeff Moyer) [1584975]
-- [tools] mm, devm_memremap_pages: mark devm_memremap_pages() EXPORT_SYMBOL_GPL (Jeff Moyer) [1584975]
-- [nvdimm] libnvdimm/security: Quiet security operations (Jeff Moyer) [1584975]
-- [documentation] libnvdimm/security: Add documentation for nvdimm security support (Jeff Moyer) [1584975]
-- [tools] testing/nvdimm: add Intel DSM 1.8 support for nfit_test (Jeff Moyer) [1584975]
-- [tools] testing/nvdimm: Add overwrite support for nfit_test (Jeff Moyer) [1584975]
-- [tools] testing/nvdimm: Add test support for Intel nvdimm security DSMs (Jeff Moyer) [1584975]
-- [acpi] nfit, libnvdimm/security: add Intel DSM 1.8 master passphrase support (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm/security: Add security DSM overwrite support (Jeff Moyer) [1584975]
-- [acpi] nfit, libnvdimm: Add support for issue secure erase DSM to Intel nvdimm (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm: Add enable/update passphrase support for Intel nvdimms (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm: Add disable passphrase support to Intel nvdimm (Jeff Moyer) [1584975]
-- [security] keys-encrypted: add nvdimm key format type to encrypted keys (Jeff Moyer) [1584975]
-- [kernel] keys: Export lookup_user_key to external users (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm: Add unlock of nvdimm support for Intel DIMMs (Jeff Moyer) [1584975]
-- [kernel] locking/lockdep: Provide a type check for lock_is_held (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm: Add freeze security support to Intel nvdimm (Jeff Moyer) [1584975]
-- [acpi] nfit, libnvdimm: Introduce nvdimm_security_ops (Jeff Moyer) [1584975]
-- [acpi] nfit, libnvdimm: Store dimm id as a member to struct nvdimm (Jeff Moyer) [1584975]
-- [nvdimm] libnvdimm, namespace: Replace kmemdup() with kstrndup() (Jeff Moyer) [1584975]
-- [acpi] nfit: Adjust annotation for why return 0 if fail to find NFIT at start (Jeff Moyer) [1584975]
-- [nvdimm] libnvdimm, bus: Check id immediately following ida_simple_get (Jeff Moyer) [1584975]
-- [acpi] nfit: Fix user-initiated ARS to be "ARS-long" rather than "ARS-short" (Jeff Moyer) [1612419 1662223]
-- [nvdimm] libnvdimm, pfn: Pad pfn namespaces relative to other regions (Jeff Moyer) [1662226]
-- [tools] testing/nvdimm: Align test resources to 128M (Jeff Moyer) [1662226]
-- [lib] genalloc.c: make the avail variable an atomic_long_t (Jeff Moyer) [1662226]
-- [lib] genalloc.c: start search from start of chunk (Jeff Moyer) [1662226]
-- [lib] genalloc:support memory-allocation with bytes-alignment to genalloc (Jeff Moyer) [1662226]
-- [lib] genalloc.c: add power aligned algorithm (Jeff Moyer) [1662226]
-- [kernel] linux/genalloc.h: spinlock_t needs spinlock_types.h (Jeff Moyer) [1662226]
-- [acpi] nfit: Add support for Intel DSM 1.8 commands (Jeff Moyer) [1584975]
-- [acpi] revert "acpi, nfit: Further restrict userspace ARS start requests" (Jeff Moyer) [1612419 1662223]
-- [acpi] nfit: Fix ARS overflow continuation (Jeff Moyer) [1612419 1662223]
-- [tools] testing/nvdimm: Fix the array size for dimm devices (Jeff Moyer) [1689002]
-- [acpi] nfit: Further restrict userspace ARS start requests (Jeff Moyer) [1612419 1662223]
-- [acpi] nfit: Fix Address Range Scrub completion tracking (Jeff Moyer) [1612419 1662223]
-- [kernel] uapi: ndctl: Remove use of PAGE_SIZE (Jeff Moyer) [1689002]
-- [uapi] libnvdimm, namespace: make min namespace size 4K (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: Populate dirty shutdown data (Jeff Moyer) [1641418]
-- [acpi] nfit: Collect shutdown status (Jeff Moyer) [1641418]
-- [acpi] nfit: Introduce nfit_mem flags (Jeff Moyer) [1641418]
-- [nvdimm] libnvdimm, label: Fix sparse warning (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Use namespace index data to reduce number of label reads needed (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Split label init out from the logic for getting config data (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Remove empty if statement (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Clarify comment in sizeof_namespace_index (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Sanity check labeloff (Jeff Moyer) [1634344 1643313]
-- [nvdimm] libnvdimm, dimm: Maximize label transfer size (Jeff Moyer) [1634344 1643313]
-- [nvdimm] libnvdimm, namespace: Drop the repeat assignment for variable dev->parent (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm, region: Fail badblocks listing for inactive regions (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm, pfn: during init, clear errors in the metadata area (Jeff Moyer) [1641567]
-- [nvdimm] libnvdimm: Set device node in nd_device_register (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm: Hold reference on parent while scheduling async init (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm: remove duplicate include (Jeff Moyer) [1689002]
-- [mm] fix BUG_ON() in vmf_insert_pfn_pud() from VM_MIXEDMAP removal (Jeff Moyer) [1622188]
-- [mm] dax: remove VM_MIXEDMAP for fsdax and device dax (Jeff Moyer) [1622188]
-- [x86] mm: Preserve _PAGE_DEVMAP across mprotect() calls (Jeff Moyer) [1641554]
-- [dax] device-dax: avoid hang on error before devm_memremap_pages() (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: improve emulation of smart injection (Jeff Moyer) [1632007]
-- [dax] super: Do not request a pointer kaddr when not required (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: kaddr and pfn can be NULL to ->direct_access() (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm, pmem: kaddr and pfn can be NULL to ->direct_access() (Jeff Moyer) [1689002]
-- [acpi] nfit: queue issuing of ars when an uc error notification comes in (Jeff Moyer) [1641488]
-- [tools] testing/nvdimm: Fix support for emulating controller temperature (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: Make DSM failure code injection an override (Jeff Moyer) [1632007]
-- [acpi] nfit: Prefer _DSM over _LSR for namespace label reads (Jeff Moyer) [1632007]
-- [nvdimm] libnvdimm: Introduce locked DIMM capacity support (Jeff Moyer) [1632007]
-- [acpi] nfit: Fix bus command validation (Jeff Moyer) [1689002]
-- [acpi] nfit: fix unchecked dereference in acpi_nfit_ctl (Jeff Moyer) [1689002]
-- [acpi] nfit: fix cmd_rc for acpi_nfit_ctl to always return a value (Jeff Moyer) [1689002]
-- [dax] dev-dax: check_vma: ratelimit dev_info-s (Jeff Moyer) [1689002]
-- [dax] Use dax_write_cache* helpers (Jeff Moyer) [1689002]
-- [documentation] acpi, nfit: Remove ecc_unit_size (Jeff Moyer) [1689002]
-- [documentation] acpi: nfit: document sysfs interface (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm: Debug probe times (Jeff Moyer) [1689002]
-- [acpi] nfit: constify *_attribute_group (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: add pfn device dependency (Jeff Moyer) [1689002]
-- [sched] core: Fix TASK_DEAD race in finish_task_switch() (Phil Auld) [1689789]
-- [x86] mce: Handle varying MCA bank counts (David Arcari) [1693352]
-
-* Fri Mar 29 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1033.el7]
-- [netdrv] mark the intel igc driver as tech preview (David Arcari) [1454918]
-- [netdrv] igc: Remove unneeded hw_dbg prints (David Arcari) [1454918]
-- [netdrv] igc: Fix the typo in igc_base.h header definition (David Arcari) [1454918]
-- [netdrv] igc: Add support for the ntuple feature (David Arcari) [1454918]
-- [netdrv] igc: Add support for statistics (David Arcari) [1454918]
-- [netdrv] igc: Extend the ethtool supporting (David Arcari) [1454918]
-- [netdrv] igc: Add multiple receive queues control supporting (David Arcari) [1454918]
-- [netdrv] igc: Use struct_size() helper (David Arcari) [1454918]
-- [netdrv] igc: Add ethtool support (David Arcari) [1454918]
-- [netdrv] igc: Remove the 'igc_get_phy_id_base' method (David Arcari) [1454918]
-- [netdrv] igc: Remove the 'igc_read_mac_addr_base' method (David Arcari) [1454918]
-- [netdrv] igc: Remove unneeded code (David Arcari) [1454918]
-- [netdrv] igc: Remove unused code (David Arcari) [1454918]
-- [netdrv] igc: Fix code redundancy (David Arcari) [1454918]
-- [netdrv] igc: Remove unreachable code from igc_phy.c file (David Arcari) [1454918]
-- [netdrv] igc: Remove obsolete IGC_ERR define (David Arcari) [1454918]
-- [netdrv] intel: consolidate NAPI and NAPI exit (David Arcari) [1454918]
-- [netdrv] igc: Clean up code (David Arcari) [1454918]
-- [netdrv] igc: Tidy up some white space (David Arcari) [1454918]
-- [netdrv] igc: fix error return handling from call to netif_set_real_num_tx_queues (David Arcari) [1454918]
-- [netdrv] igc: Remove set but not used variable 'pci_using_dac' (David Arcari) [1454918]
-- [netdrv] igc: Remove set but not used variables 'ctrl_ext, link_mode' (David Arcari) [1454918]
-- [netdrv] intel-ethernet: software timestamp skbs as late as possible (David Arcari) [1454918]
-- [netdrv] igc: Add watchdog (David Arcari) [1454918]
-- [netdrv] igc: Add setup link functionality (David Arcari) [1454918]
-- [netdrv] igc: Add code for PHY support (David Arcari) [1454918]
-- [netdrv] igc: Add NVM support (David Arcari) [1454918]
-- [netdrv] igc: Add HW initialization code (David Arcari) [1454918]
-- [netdrv] igc: Add transmit and receive fastpath and interrupt handlers (David Arcari) [1454918]
-- [netdrv] igc: Add support for Tx/Rx rings (David Arcari) [1454918]
-- [netdrv] igc: Add interrupt support (David Arcari) [1454918]
-- [netdrv] igc: Add netdev (David Arcari) [1454918]
-- [netdrv] igc: Add support for PF (David Arcari) [1454918]
-- [netdrv] igc: Add skeletal frame for Intel(R) 2.5G Ethernet Controller support (David Arcari) [1454918]
-- [netdrv] ibmvnic: Report actual backing device speed and duplex values (Steve Best) [1691790]
-- [infiniband] rdma/iwcm: Fix string truncation error (Kamal Heib) [1692128]
-- [infiniband] rdma/uverbs: Fix an error flow in ib_uverbs_poll_cq (Kamal Heib) [1692128]
-- [infiniband] rdma/device: Check that the rename is nop under the lock (Kamal Heib) [1692128]
-- [infiniband] rdma/device: Use __ib_device_get_by_name() in ib_device_rename() (Kamal Heib) [1692128]
-- [infiniband] ib/core: Fix potential memory leak while creating MAD agents (Kamal Heib) [1692128]
-- [infiniband] ib/core: Unregister notifier before freeing MAD security (Kamal Heib) [1692128]
-- [infiniband] scsi: rdma/srpt: Fix a credit leak for aborted commands (Kamal Heib) [1692128]
-- [infiniband] scsi: rdma/srpt: Fix handling of TMF submission failure (Kamal Heib) [1692128]
-- [infiniband] ib/ipoib: Make ipoib_intercept_dev_id_attr() static (Kamal Heib) [1692128]
-- [infiniband] ib/core: Destroy QP if XRC QP fails (Kamal Heib) [1692128]
-- [infiniband] ib/core: Declare local functions 'static' (Kamal Heib) [1692128]
-- [infiniband] ib/iser: Pass the correct number of entries for dma mapped SGL (Kamal Heib) [1692128]
-- [infiniband] rdma/ocrdma: Fix out of bounds index check in query pkey (Kamal Heib) [1692128]
-- [infiniband] ib/usnic: Fix out of bounds index check in query pkey (Kamal Heib) [1692128]
-- [net] xprtrdma: Fix ri_max_segs and the result of ro_maxpages (Kamal Heib) [1692128]
-- [rdma] ib/uverbs: fix a typo (Kamal Heib) [1692128]
-- [infiniband] rxe: fix error completion wr_id and qp_num (Kamal Heib) [1692128]
-- [kernel] tracing: Do a WARN_ON() if start_thread() in hwlat is called when thread exists (Jerome Marchand) [1691607]
-- [kernel] ftrace: Add missing check for existing hwlat thread (Jerome Marchand) [1691607]
-- [kernel] tracing: Do not call start/stop() functions when tracing_on does not change (Jerome Marchand) [1691607]
-- [cpufreq] Retry read lock of policy rwsem in show method (Waiman Long) [1628791]
-- [locking] rwsem: Exit read lock slowpath if queue empty & no writer (Waiman Long) [1691099]
-- [documentation] x86/speculation: Add PR_SPEC_DISABLE_NOEXEC (Waiman Long) [1671826]
-- [x86] speculation: Prevent stale SPEC_CTRL msr content (Waiman Long) [1671826]
-- [x86] speculation: Split out TIF update (Waiman Long) [1671826]
-- [x86] speculation: Reorganize speculation control MSRs update (Waiman Long) [1671826]
-- [x86] speculation: Rename SSBD update functions (Waiman Long) [1671826]
-- [x86] process: Optimize TIF checks in __switch_to_xtra() (Waiman Long) [1671826]
-- [tools] tools headers: Synchronize prctl.h ABI header (Waiman Long) [1671826]
-- [x86] gart: Exclude GART aperture from kcore (Kairui Song) [1532150]
-- [x86] gart: Exclude GART aperture from vmcore (Kairui Song) [1532150]
-
-* Thu Mar 28 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1032.el7]
-- [fs] fsnotify: fix ignore mask logic in fsnotify() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: Fix busy inodes during unmount (Miklos Szeredi) [1641065]
-- [fs] fsnotify: let connector point to an abstract object (Miklos Szeredi) [1641065]
-- [fs] fsnotify: pass connp and object type to fsnotify_add_mark() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: use typedef fsnotify_connp_t for brevity (Miklos Szeredi) [1641065]
-- [fs] fsnotify: add fsnotify_add_inode_mark() wrappers (Miklos Szeredi) [1641065]
-- [fs] fanotify: generalize fanotify_should_send_event() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: generalize send_to_group() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: generalize iteration of marks by object type (Miklos Szeredi) [1641065]
-- [fs] fsnotify: introduce marks iteration helpers (Miklos Szeredi) [1641065]
-- [fs] fsnotify: remove redundant arguments to handle_event() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: use type id to identify connector object type (Miklos Szeredi) [1641065]
-- [fs] fsnotify: fix typo in a comment about mark->g_list (Miklos Szeredi) [1641065]
-- [fs] fsnotify: fix ignore mask logic in send_to_group() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: clean up fsnotify() (Miklos Szeredi) [1641065]
-- [fs] dnotify: Handle errors from fsnotify_add_mark_locked() in fcntl_dirnotify() (Miklos Szeredi) [1641065]
-- [fs] fuse: fix leaked aux requests (Miklos Szeredi) [1581904]
-- [fs] fuse: only reuse auxiliary request in fuse_writepage_in_flight() (Miklos Szeredi) [1581904]
-- [fs] fuse: clean up fuse_writepage_in_flight() (Miklos Szeredi) [1581904]
-- [fs] fuse: extract fuse_find_writeback() helper (Miklos Szeredi) [1581904]
-- [fs] fuse: decrement NR_WRITEBACK_TEMP on the right page (Miklos Szeredi) [1581904]
-- [fs] fuse: call pipe_buf_release() under pipe lock (Miklos Szeredi) [1581904]
-- [fs] fuse: handle zero sized retrieve correctly (Miklos Szeredi) [1581904]
-- [fs] fuse: continue to send FUSE_RELEASEDIR when FUSE_OPEN returns ENOSYS (Miklos Szeredi) [1581904]
-- [fs] fuse: fix leaked notify reply (Miklos Szeredi) [1581904]
-- [fs] fuse: add locking to max_background and congestion_threshold changes (Miklos Szeredi) [1581904]
-- [fs] fuse: use READ_ONCE on congestion_threshold and max_background (Miklos Szeredi) [1581904]
-- [fs] fuse: fix blocked_waitq wakeup (Miklos Szeredi) [1581904]
-- [fs] fuse: Add missed unlock_page() to fuse_readpages_fill() (Miklos Szeredi) [1581904]
-- [fs] fuse: Don't access pipe->buffers without pipe_lock() (Miklos Szeredi) [1581904]
-- [fs] fuse: don't keep dead fuse_conn at fuse_fill_super(). (Miklos Szeredi) [1581904]
-- [fs] fuse: fix control dir setup and teardown (Miklos Szeredi) [1581904]
-- [fs] fuse: fix congested state leak on aborted connections (Miklos Szeredi) [1581904]
-- [fs] fuse: Remove the buggy retranslation of pids in fuse_dev_do_read (Miklos Szeredi) [1581904]
-- [fs] fuse: atomic_o_trunc should truncate pagecache (Miklos Szeredi) [1581904]
-- [fs] fuse: fix READDIRPLUS skipping an entry (Miklos Szeredi) [1581904]
-- [fs] fuse: set mapping error in writepage_locked when it fails (Miklos Szeredi) [1581904]
-- [fs] fuse: initialize the flock flag in fuse_file on allocation (Miklos Szeredi) [1581904]
-- [fs] fuse: fix fuse_write_end() if zero bytes were copied (Miklos Szeredi) [1581904]
-- [fs] fuse: listxattr: verify xattr list (Miklos Szeredi) [1581904]
-- [fs] fuse: invalidate dir dentry after chmod (Miklos Szeredi) [1581904]
-- [fs] fuse: fix wrong assignment of ->flags in fuse_send_init() (Miklos Szeredi) [1581904]
-- [fs] fuse: fuse_flush must check mapping->flags for errors (Miklos Szeredi) [1581904]
-- [fs] fuse: fsync() did not return IO errors (Miklos Szeredi) [1581904]
-- [fs] fuse: do not use iocb after it may have been freed (Miklos Szeredi) [1581904]
-- [fs] fuse: break infinite loop in fuse_fill_write_pages() (Miklos Szeredi) [1581904]
-- [fs] fuse: initialize fc->release before calling it (Miklos Szeredi) [1581904]
-- [fs] fuse: set stolen page uptodate (Miklos Szeredi) [1581904]
-- [fs] fuse: notify: don't move pages (Miklos Szeredi) [1581904]
-- [fs] fuse: add FUSE_NO_OPEN_SUPPORT flag to INIT (Miklos Szeredi) [1581904]
-- [fs] fuse: s_time_gran fix (Miklos Szeredi) [1581904]
-- [fs] fuse: release temporary page if fuse_writepage_locked() failed (Miklos Szeredi) [1581904]
-- [fs] fuse: avoid scheduling while atomic (Miklos Szeredi) [1581904]
-- [fs] fuse: clear MS_I_VERSION (Miklos Szeredi) [1581904]
-- [fs] fuse: clear FUSE_I_CTIME_DIRTY flag on setattr (Miklos Szeredi) [1581904]
-- [fs] fuse: trust kernel i_ctime only (Miklos Szeredi) [1581904]
-- [fs] fuse: remove .update_time (Miklos Szeredi) [1581904]
-- [fs] fuse: allow ctime flushing to userspace (Miklos Szeredi) [1581904]
-- [fs] fuse: fuse: add time_gran to INIT_OUT (Miklos Szeredi) [1581904]
-- [fs] fuse: add .write_inode (Miklos Szeredi) [1581904]
-- [fs] fuse: clean up fsync (Miklos Szeredi) [1581904]
-- [fs] fuse: fuse: fallocate: use file_update_time() (Miklos Szeredi) [1581904]
-- [fs] fuse: update mtime on open(O_TRUNC) in atomic_o_trunc mode (Miklos Szeredi) [1581904]
-- [fs] fuse: update mtime on truncate(2) (Miklos Szeredi) [1581904]
-- [fs] fuse: do not use uninitialized i_mode (Miklos Szeredi) [1581904]
-- [fs] fuse: fix mtime update error in fsync (Miklos Szeredi) [1581904]
-- [fs] fuse: check fallocate mode (Miklos Szeredi) [1581904]
-- [fs] fuse: add __exit to fuse_ctl_cleanup (Miklos Szeredi) [1581904]
-- [fs] fuse: Turn writeback cache on (Miklos Szeredi) [1581904]
-- [fs] fuse: Fix O_DIRECT operations vs cached writeback misorder (Miklos Szeredi) [1581904]
-- [fs] fuse: fuse_flush() should wait on writeback (Miklos Szeredi) [1581904]
-- [fs] fuse: Implement write_begin/write_end callbacks (Miklos Szeredi) [1581904]
-- [fs] fuse: restructure fuse_readpage() (Miklos Szeredi) [1581904]
-- [fs] fuse: Flush files on wb close (Miklos Szeredi) [1581904]
-- [fs] fuse: Trust kernel i_mtime only (Miklos Szeredi) [1581904]
-- [fs] fuse: Trust kernel i_size only (Miklos Szeredi) [1581904]
-- [fs] fuse: Connection bit for enabling writeback (Miklos Szeredi) [1581904]
-- [fs] fuse: Prepare to handle short reads (Miklos Szeredi) [1581904]
-- [fs] fuse: Linking file to inode helper (Miklos Szeredi) [1581904]
-- [fs] pipe: kill ->map() and ->unmap() (Miklos Szeredi) [1581904]
-- [fs] fuse/dev: use atomic maps (Miklos Szeredi) [1581904]
-- [fs] fuse: support clients that don't implement 'open' (Miklos Szeredi) [1581904]
-- [fs] fuse: fix SetPageUptodate() condition in STORE (Miklos Szeredi) [1581904]
-- [fs] fuse: fix pipe_buf_operations (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: protect secondary requests from fuse file release (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: update bdi writeout when deleting secondary request (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: crop secondary requests (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: roll back changes if request not found (Miklos Szeredi) [1581904]
-- [fs] vfs: introduce d_instantiate_no_diralias() (Miklos Szeredi) [1581904]
-- [fs] fuse: writepage: skip already in flight (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: handle same page rewrites (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: fix aggregation (Miklos Szeredi) [1581904]
-- [fs] fuse: fix race in fuse_writepages() (Miklos Szeredi) [1581904]
-- [fs] fuse: Implement writepages callback (Miklos Szeredi) [1581904]
-- [fs] fuse: don't BUG on no write file (Miklos Szeredi) [1581904]
-- [fs] fuse: lock page in mkwrite (Miklos Szeredi) [1581904]
-- [fs] fuse: Prepare to handle multiple pages in writeback (Miklos Szeredi) [1581904]
-- [fs] fuse: Getting file for writeback helper (Miklos Szeredi) [1581904]
-- [fs] fuse: readdirplus: fix RCU walk (Miklos Szeredi) [1581904]
-- [fs] mm: use totalram_pages instead of num_physpages at runtime (Miklos Szeredi) [1581904]
-- [fs] fuse: another open-coded file_inode() (Miklos Szeredi) [1581904]
-- [fs] nfsd: Clean up legacy NFS WRITE argument XDR decoders (Kamal Heib) [1680282]
-- [fs] nfsd: cleanup dead codes and values in nfsd_write (Kamal Heib) [1680282]
-- [fs] nfsd: pass an integer for stable type to nfsd_vfs_write (Kamal Heib) [1680282]
-- [fs] nfs: If the VFS sets LOOKUP_REVAL then force a lookup of the dentry (Benjamin Coddington) [1627929]
-- [fs] mnt: fix __detach_mounts infinite loop (Benjamin Coddington) [1627929]
-- [fs] d_invalidate(): unhash immediately (Benjamin Coddington) [1627929]
-- [fs] Hang/soft lockup in d_invalidate with simultaneous calls (Benjamin Coddington) [1627929]
-- [x86] hyperv: Stop suppressing X86_FEATURE_PCID (Vitaly Kuznetsov) [1691421]
-- [x86] hyper-v: fix hyperv.h UAPI header (Vitaly Kuznetsov) [1692492]
-
-* Wed Mar 27 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1031.el7]
-- [fs] ext4: Fix data corruption caused by unaligned direct AIO (Lukas Czerner) [1684780]
-- [sound] alsa/hda: add more quirks for HP Z2 G4 and HP Z240 (Jaroslav Kysela) [1680180]
-- [mm] percpu: add support for __GFP_NOWARN flag (Jiri Olsa) [1690683]
-- [md] It's wrong to add len to sector_nr in raid10 reshape twice (Xiao Ni) [1528466]
-- [scsi] vmw_pvscsi: Return DID_RESET for status SAM_STAT_COMMAND_TERMINATED (Cathy Avery) [1637721]
-- [netdrv] cxgb4vf: Revert force link up behaviour (Arjun Vynipadath) [1629594 1615254]
-- [netdrv] cxgb4: Add VF Link state support (Arjun Vynipadath) [1629594 1615254]
-- [infiniband] ib/ipoib: Fix the use of ndo_change_mtu (Kamal Heib) [1692111]
-- [infiniband] rdmavt: Fix concurrency panics in QP post_send and modify to error (Alex Estrin) [1686441]
-- [infiniband] ib/mlx5: Fix mapping of link-mode to IB width and speed (Alaa Hleihel) [1688717]
-- [infiniband] ib/mlx5: Use mlx5 core to create/destroy a DEVX DCT (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Fix DCT creation bad flow (Alaa Hleihel) [1688717]
-- [infiniband] ib/mlx5: Set correct write permissions for implicit ODP MR (Alaa Hleihel) [1688717]
-- [netdrv] mlx5e: IPoIB, Fix RX checksum statistics update (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Avoid panic when setting vport rate (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Avoid panic when setting vport mac, getting vport config (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Remove redundant lag function to get pf num (Alaa Hleihel) [1688717]
-- [netdrv] mlx5e: Properly get the PF number phys port name ndo (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Consolidate update FTE for all removal changes (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Add a locked flag to node removal functions (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Add modify FTE helper function (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Fix multiple updates of steering rules in parallel (Alaa Hleihel) [1688717]
-- [netdrv] mlx5e: XDP, fix redirect resources availability check (Alaa Hleihel) [1688717]
-- [netdrv] mlx5e: FPGA, fix Innova IPsec TX offload data path performance (Alaa Hleihel) [1688717]
-- [netdrv] mlx4_core: Fix locking in SRIOV mode when switching between events and polling (Alaa Hleihel) [1688717]
-- [netdrv] mlx4_core: Fix reset flow when in command polling mode (Alaa Hleihel) [1688717]
-- [infiniband] ib/{hfi1, qib}: Fix WC.byte_len calculation for UD_SEND_WITH_IMM (Alex Estrin) [1682916]
-- [infiniband] ib/hfi1: Add limit test for RC/UC send via loopback (Alex Estrin) [1682916]
-- [net] bluetooth: hidp: buffer overflow in hidp_process_report (Gopal Tiwari) [1624391] {CVE-2018-9363}
-- [net] sched: act_csum: Fix csum calc for tagged packets (Ivan Vecera) [1676462]
-- [hid] increase maximum global item tag report size to 256 (Tony Camuso) [1517616]
-- [hid] debug: fix the ring buffer implementation (Torez Smith) [1635834] {CVE-2018-9516 CVE-2019-3819}
-- [hid] debug: check length before copy_to_user() (Torez Smith) [1635834] {CVE-2018-9516 CVE-2019-3819}
-- [tools] power turbostat: fix goldmont C-state limit decoding (Prarit Bhargava) [1641714]
-- [tools] power turbostat: consolidate duplicate model numbers (Prarit Bhargava) [1641714]
-- [tools] power turbostat: reduce debug output (Prarit Bhargava) [1641714]
-- [tools] power turbosat: fix AMD APIC-id output (Prarit Bhargava) [1641714]
-- [tools] power turbostat: version 18.07.27 (Prarit Bhargava) [1641714]
-- [tools] power turbostat: Read extended processor family from CPUID (Prarit Bhargava) [1641714]
-- [tools] power turbostat: fix x2apic debug message output file (Prarit Bhargava) [1641714]
-- [tools] power turbostat: fix bogus summary values (Prarit Bhargava) [1641714]
-- [tools] power turbostat: fix -S on UP systems (Prarit Bhargava) [1641714]
-- [tools] power turbostat: version 18.06.20 (Prarit Bhargava) [1641714]
-- [tools] power turbostat: add the missing command line switches (Prarit Bhargava) [1641714]
-- [tools] power turbostat: add single character tokens to help (Prarit Bhargava) [1641714]
-- [tools] power turbostat: alphabetize the help output (Prarit Bhargava) [1641714]
-- [tools] power turbostat: add optional APIC X2APIC columns (Prarit Bhargava) [1641714]
-- [tools] power turbostat: decode cpuid.1.HT (Prarit Bhargava) [1641714]
-- [crypto] qat - move temp buffers off the stack (Neil Horman) [1641143]
-- [crypto] qat - Fix KASAN stack-out-of-bounds bug in adf_probe() (Neil Horman) [1641143]
-- [crypto] qat - Remove VLA usage (Neil Horman) [1641143]
-- [crypto] qat/adf_aer - Replace GFP_ATOMIC with GFP_KERNEL in adf_dev_aer_schedule_reset() (Neil Horman) [1641143]
-- [crypto] treewide: kzalloc_node() -> kcalloc_node() (Neil Horman) [1641143]
-- [crypto] treewide: kzalloc() -> kcalloc() (Neil Horman) [1641143]
-- [crypto] qat - Add MODULE_FIRMWARE for all qat drivers (Neil Horman) [1641143]
-- [crypto] .gitignore: move *-asn1.[ch] patterns to the top-level .gitignore (Neil Horman) [1641143]
-- [crypto] qat - don't leak pointers to authenc keys (Neil Horman) [1641143]
-- [crypto] qat - Make several functions static (Neil Horman) [1641143]
-- [kernel] locking/lockdep: Increase lockdep dependency entries to 40k (Waiman Long) [1600404]
-- [kernel] irq: Implement irqaffinity=driver (Prarit Bhargava) [1632965]
-- [kernel] genirq: Fix null pointer reference in irq_set_affinity_hint() (Prarit Bhargava) [1632965]
-- [kernel] genirq: Remove bogus restriction in irq_move_mask_irq() (Prarit Bhargava) [1632965]
-- [kernel] genirq: Set initial affinity in irq_set_affinity_hint() (Prarit Bhargava) [1632965]
-- [powerpc] pseries/mobility: Extend start/stop topology update scope (Desnes Augusto Nunes do Rosario) [1671799]
-- [powerpc] pseries: Fix unitialized timer reset on migration (Desnes Augusto Nunes do Rosario) [1671799]
-- [acpi] nfit, x86/mce: Validate a MCE's address before using it (Jeff Moyer) [1662229]
-- [acpi] nfit, x86/mce: Handle only uncorrectable machine checks (Jeff Moyer) [1662229]
-- [x86] mce: Make correctable error detection look at the Deferred bit (Jeff Moyer) [1662229]
-- [x86] mm: Unbreak modules that use the DMA API (Gary Hook) [1676613 1662887]
-- [x86] perf/x86: Fixup typo in stub functions (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Fix memory corruption (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Implement support for TSX Force Abort (Waiman Long) [1688878]
-- [x86] Add TSX Force Abort CPUID/MSR (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Generalize dynamic constraint creation (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Make cpuc allocations consistent (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Delay memory deallocation until x86_pmu_dead_cpu() (Waiman Long) [1688878]
-
-* Thu Mar 21 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1030.el7]
-- [netdrv] tg3: Fix vunmap() BUG_ON() triggered from tg3_free_consistent() (Jonathan Toppins) [1673455]
-- [misc] mei: request async autosuspend at the end of enumeration (Artem Savkov) [1676682]
-- [block] blk-mq: fix a hung issue when fsync (Ming Lei) [1674402]
-- [scsi] cxgb4i: add wait_for_completion() (Arjun Vynipadath) [1642436]
-- [scsi] cxgb4i: fix thermal configuration dependencies (Arjun Vynipadath) [1642436]
-- [scsi] cxgb4i: add DCB support for iSCSI connections (Arjun Vynipadath) [1642436]
-- [scsi] cxgbi: Convert timers to use timer_setup() (Arjun Vynipadath) [1642436]
-- [lib] rhashtable: add schedule points (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Documentation tweak (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable.c: use kvzalloc() in bucket_table_alloc() when possible (Christoph von Recklinghausen) [1666812]
-- [kernel] rhashtable: compact struct rhashtable_params (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Do not lower max_elems when max_size is zero (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Cap total number of entries to 2^31 (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: remove insecure_max_entries param (Christoph von Recklinghausen) [1666812]
-- [kernel] rhashtable: remove insecure_elasticity (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Fix RCU dereference annotation in rht_bucket_nested (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Fix use before NULL check in bucket_table_free (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Add nested tables (Christoph von Recklinghausen) [1666812]
-- [kernel] rcu: Fix soft lockup for rcu_nocb_kthread (Christoph von Recklinghausen) [1666812]
-- [firmware] efi: Add pstore variables to the deletion whitelist (Prarit Bhargava) [1303667]
-- [tools] efi: Make efivarfs entries immutable by default (Prarit Bhargava) [1303667]
-- [firmware] efi: Make our variable validation list include the guid (Prarit Bhargava) [1303667]
-- [firmware] efi: Do variable name validation tests in utf8 (Prarit Bhargava) [1303667]
-- [firmware] efivars: Stop passing a struct argument to efivar_validate() (Prarit Bhargava) [1303667]
-- [firmware] efivars: Check size of user object (Prarit Bhargava) [1303667]
-- [firmware] efivars: Use local variables instead of a pointer dereference (Prarit Bhargava) [1303667]
-- [tools] perf top: Move perf_top__reset_sample_counters() to after counts display (Jiri Olsa) [1680074]
-- [tools] perf top: Display slow reader warning when droping samples (Jiri Olsa) [1680074]
-- [tools] perf top: Save and display the drop count stats (Jiri Olsa) [1680074]
-- [tools] perf top: Drop samples which are behind the refresh rate (Jiri Olsa) [1680074]
-- [tools] perf top: Set the 'session_done' volatile variable when exiting (Jiri Olsa) [1680074]
-- [tools] perf top: Use cond variable instead of a lock (Jiri Olsa) [1680074]
-- [tools] perf top: Add processing thread (Jiri Olsa) [1680074]
-- [tools] perf top: Move lost events warning to helpline (Jiri Olsa) [1680074]
-- [tools] perf top: Save and display the lost count stats (Jiri Olsa) [1680074]
-- [tools] perf ordered_events: Add private data member (Jiri Olsa) [1680074]
-- [tools] perf ordered_events: Rework show_progress for __ordered_events__flush (Jiri Olsa) [1680074]
-- [tools] perf vendor events intel: Fix diverse typos (Jiri Olsa) [1680074]
-- [tools] perf stat: Fix CSV mode column output for non-cgroup events (Jiri Olsa) [1680074]
-- [tools] perf stat: Fix shadow stats for clock events (Jiri Olsa) [1680074]
-- [tools] perf symbols: Fix slowness due to -ffunction-section (Jiri Olsa) [1680074]
-- [tools] perf jvmti: Separate jvmti cmlr check (Jiri Olsa) [1680074]
-- [tools] perf vendor events: Add JSON metrics for Cascadelake server (Jiri Olsa) [1680074]
-- [tools] perf vendor events: Add stepping in CPUID string for x86 (Jiri Olsa) [1680074]
-- [tools] perf stat: Use perf_evsel__is_clocki() for clock events (Jiri Olsa) [1680074]
-- [tools] perf pmu: Suppress potential format-truncation warning (Jiri Olsa) [1680074]
-- [tools] perf script: Share code and output format for uregs and iregs output (Jiri Olsa) [1680074]
-- [tools] perf script: Add newline after uregs output (Jiri Olsa) [1680074]
-- [tools] tools build feature: Check if get_current_dir_name() is available (Jiri Olsa) [1680074]
-- [tools] perf tools: Fix crash on synthesizing the unit (Jiri Olsa) [1680074]
-- [tools] perf tools: Do not zero sample_id_all for group members (Jiri Olsa) [1680074]
-- [tools] perf tools: Fix undefined symbol scnprintf in libperf-jvmti.so (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Add MTC and CYC timestamps to debug log (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Add more event information to debug log (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Fix table find when table re-ordered (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add help window (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add Selected branches report (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Fall back to /usr/local/lib/libxed.so (Jiri Olsa) [1680074]
-- [tools] perf top: Display the LBR stats in callchain entry (Jiri Olsa) [1680074]
-- [tools] perf stat: Handle different PMU names with common prefix (Jiri Olsa) [1680074]
-- [tools] perf record: Support weak groups (Jiri Olsa) [1680074]
-- [tools] perf evlist: Move perf_evsel__reset_weak_group into evlist (Jiri Olsa) [1680074]
-- [tools] perf intel-pt/bts: Calculate cpumode for synthesized samples (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Insert callchain context into synthesized callchains (Jiri Olsa) [1680074]
-- [tools] perf tools: Don't clone maps from parent when synthesizing forks (Jiri Olsa) [1680074]
-- [tools] perf top: Start display thread earlier (Jiri Olsa) [1680074]
-- [tools] perf unwind: Take pgoff into account when reporting elf to libdwfl (Jiri Olsa) [1680074]
-- [tools] perf top: Do not use overwrite mode by default (Jiri Olsa) [1680074]
-- [tools] perf top: Allow disabling the overwrite mode (Jiri Olsa) [1680074]
-- [tools] perf trace: Beautify the umount's 'name' argument (Jiri Olsa) [1680074]
-- [tools] perf trace: Consider syscall aliases too (Jiri Olsa) [1680074]
-- [tools] perf trace beauty: Allow syscalls to mask an argument before considering it (Jiri Olsa) [1680074]
-- [tools] perf beauty: Introduce strarray__scnprintf_flags() (Jiri Olsa) [1680074]
-- [tools] perf beauty: Add a generator for MS_ mount/umount's flag constants (Jiri Olsa) [1680074]
-- [tools] perf script: Support total cycles count (Jiri Olsa) [1680074]
-- [tools] perf script: Implement --graph-function (Jiri Olsa) [1680074]
-- [tools] tools script: Add --call-trace and --call-ret-trace (Jiri Olsa) [1680074]
-- [tools] perf script: Make itrace script default to all calls (Jiri Olsa) [1680074]
-- [tools] perf script: Add --insn-trace for instruction decoding (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add All branches report (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add ability to display all the database tables (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add ability to shrink / enlarge font (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add ability to find symbols in the call-graph (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add support for multiple sub-windows (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Rename to exported-sql-viewer.py (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Refactor TreeItem class (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Add data helper functions (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Factor out CallGraphModel from TreeModel (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Remove use of setObjectName() (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Add a class for global data (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Separate the database details into a class (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Make a "Main" function (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Change icon (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Set a minimum window size (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Provide better default column sizes (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Use SPDX license identifier (Jiri Olsa) [1680074]
-- [tools] perf script: Flush output stream after events in verbose mode (Jiri Olsa) [1680074]
-- [tools] perf script: Allow extended console debug output (Jiri Olsa) [1680074]
-- [tools] perf stat: Poll for monitored tasks being alive (Jiri Olsa) [1680074]
-- [tools] perf trace: Drop addr_location refcounts (Jiri Olsa) [1680074]
-- [tools] perf evsel: Mark a evsel as disabled when asking the kernel do disable it (Jiri Olsa) [1680074]
-- [tools] perf evsel: Introduce per event max_events property (Jiri Olsa) [1680074]
-- [tools] perf trace: Introduce --max-events (Jiri Olsa) [1680074]
-- [tools] tools lib subcmd: Introduce OPTION_ULONG (Jiri Olsa) [1680074]
-- [tools] perf symbols: Set PLT entry/header sizes properly on Sparc (Jiri Olsa) [1680074]
-- [tools] perf jitdump: Add Sparc support (Jiri Olsa) [1680074]
-- [tools] perf annotate: Add Sparc support (Jiri Olsa) [1680074]
-- [tools] perf record: Encode -k clockid frequency into Perf trace (Jiri Olsa) [1680074]
-- [tools] perf probe: Support SDT markers having reference counter (semaphore) (Jiri Olsa) [1680074]
-- [tools] perf python: More portable way to make CFLAGS work with clang (Jiri Olsa) [1680074]
-- [tools] perf python: Make clang_has_option() work on Python 3 (Jiri Olsa) [1680074]
-- [tools] perf tools: Free temporary 'sys' string in read_event_files() (Jiri Olsa) [1680074]
-- [tools] perf tools: Avoid double free in read_event_file() (Jiri Olsa) [1680074]
-- [tools] perf tools: Free 'printk' string in parse_ftrace_printk() (Jiri Olsa) [1680074]
-- [tools] perf tools: Cleanup trace-event-info 'tdata' leak (Jiri Olsa) [1680074]
-- [tools] perf strbuf: Match va_{add, copy} with va_end (Jiri Olsa) [1680074]
-- [tools] perf auxtrace: Include missing asm/bitsperlong.h to get BITS_PER_LONG (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Implement decoder flags for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Add decoder flags for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf tools: Improve thread_stack__process() for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf tools: Improve thread_stack__event() for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf db-export: Add trace begin / end branch type variants (Jiri Olsa) [1680074]
-- [tools] perf script: Enhance sample flags for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf script: Print DSO for callindent (Jiri Olsa) [1680074]
-- [tools] perf script: Allow sym and dso without ip, addr (Jiri Olsa) [1680074]
-- [tools] tools lib subcmd: Support overwriting the pager (Jiri Olsa) [1680074]
-- [tools] perf tools: Report itrace options in help (Jiri Olsa) [1680074]
-- [tools] perf help: Add missing subcommand `version` (Jiri Olsa) [1680074]
-- [tools] perf tools: Initialize perf_data_file fd field (Jiri Olsa) [1680074]
-- [tools] perf util: Make copyfile_offset() global (Jiri Olsa) [1680074]
-- [tools] perf tools: Add 'struct perf_mmap' arg to record__write() (Jiri Olsa) [1680074]
-- [tools] perf auxtrace: Pass struct perf_mmap into mmap__read* functions (Jiri Olsa) [1680074]
-- [tools] perf tools: Remove perf_tool from event_op3 (Jiri Olsa) [1680074]
-- [tools] perf tools: Remove perf_tool from event_op2 (Jiri Olsa) [1680074]
-- [tools] tools Adopt PTR_ERR_OR_ZERO from the kernel err.h header (Jiri Olsa) [1680074]
-- [tools] perf ordered_events: Prevent crossing max_alloc_size (Jiri Olsa) [1680074]
-- [tools] perf ordered_events: Add 'struct ordered_events_buffer' layer (Jiri Olsa) [1680074]
-- [tools] perf tests: Fix record+probe_libc_inet_pton.sh without ping's debuginfo (Jiri Olsa) [1680074]
-- [tools] perf map: Turn some pr_warning() to pr_debug() (Jiri Olsa) [1680074]
-- [tools] perf annotate: Handle arm64 move instructions (Jiri Olsa) [1680074]
-- [tools] perf trace beauty: Alias 'umount' to 'umount2' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move the display functions to stat-display.c (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'metric_events' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'walltime_*' data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Propagate 'struct target' arg to sort_aggr_thread() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'no_merge' data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'big_num' data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Do not use the global 'evsel_list' in print functions (Jiri Olsa) [1680074]
-- [tools] perf stat: Move *_aggr_* data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move ru_* data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'print_mixed_hw_group_error' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'print_free_counters_hint' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'null_run' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'walltime_nsecs_stats' pointer to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass 'evlist' to aggr_update_shadow() (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass 'struct perf_stat_config' to first_shadow_cpu() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'metric_only_len' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'run_count' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Use 'evsel->evlist' instead of 'evsel_list' in collect_all_aliases() (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass 'evlist' argument to print functions (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'target' argument to perf_evlist__print_counters() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'unit_width' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'metric_only' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'interval_clear' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move csv_* to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass a 'struct perf_stat_config' argument to global print functions (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass 'struct perf_stat_config' argument to local print functions (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'struct perf_stat_config' argument to perf_evlist__print_counters() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move STAT_RECORD out of perf_evlist__print_counters() (Jiri Olsa) [1680074]
-- [tools] perf stat: Introduce perf_evlist__print_counters() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move perf_stat_synthesize_config() to stat.c (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'perf_event__handler_t' argument to perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'struct perf_evlist' argument to perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'struct perf_tool' argument to perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'struct perf_stat_config' argument to perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Rename 'is_pipe' argument to 'attrs' in perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move create_perf_stat_counter() to stat.c (Jiri Olsa) [1680074]
-- [tools] perf evsel: Introduce perf_evsel__store_ids() (Jiri Olsa) [1680074]
-- [tools] perf tools: Switch 'session' argument to 'evlist' in perf_event__synthesize_attrs() (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'identifier' flag to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Use local config arg for scale in create_perf_stat_counter() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'no_inherit' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'initial_delay' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Use evsel->threads in create_perf_stat_counter() (Jiri Olsa) [1680074]
-- [tools] perf trace: Pass augmented args to the arg formatters when available (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Disallow precise_ip on BTS events (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Add generic branch tracing check to intel_pmu_has_bts() (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Move branch tracing setup to the Intel-specific source file (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Fix regression by default disabling perfmon v4 interrupt handling (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel/uncore: Support CoffeeLake 8th CBOX (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Export mem events only if there's PEBS support (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Add quirk for Goldmont Plus (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Add a separate Arch Perfmon v4 PMI handler (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Factor out common code of PMI handler (Jiri Olsa) [1680074]
-- [kernel] perf: Suppress AUX/OVERWRITE records (Jiri Olsa) [1680074]
-
-* Thu Mar 21 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1029.el7]
-- [netdrv] ibmvnic: Fix non-atomic memory allocation in IRQ context (Desnes Augusto Nunes do Rosario) [1670667]
-- [netdrv] ibmvnic: Convert reset work item mutex to spin lock (Desnes Augusto Nunes do Rosario) [1670667]
-- [netdrv] ixgbe: fix warning: sysfs: cannot create duplicate filename (Ken Cox) [1688296]
-- [sound] alsa: asoc: intel: hdac_hdmi: add Icelake support (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda: hdmi - add Icelake support (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek - Add support headset mode for New DELL WYSE NB (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek - Add support headset mode for DELL WYSE AIO (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek: merge alc_fixup_headset_jack to alc295_fixup_chromebook (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek - Fixed Headset Mic JD not stable (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek: Enable headset MIC of Acer TravelMate X514-51T with ALC255 (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/tegra: avoid build error without CONFIG_PM (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda: Avoid NULL pointer dereference at snd_hdac_stream_start() (Jaroslav Kysela) [1517622]
-- [sound] alsa: pcm: Fix function name in kernel-doc comment (Jaroslav Kysela) [1517622]
-- [security] selinux: always allow mounting submounts (Ondrej Mosnacek) [1077929]
-- [security] selinux: policydb: fix byte order and alignment issues (Ondrej Mosnacek) [1636973]
-- [security] selinux: overhaul sidtab to fix bug and improve performance (Ondrej Mosnacek) [1335986]
-- [security] selinux: use separate table for initial SID lookup (Ondrej Mosnacek) [1335986]
-- [security] selinux: refactor sidtab conversion (Ondrej Mosnacek) [1335986]
-- [kernel] audit: ignore fcaps on umount (Richard Guy Briggs) [1570612]
-- [kernel] audit: more filter PATH records keyed on filesystem magic (Richard Guy Briggs) [1570612]
-- [kernel] audit: filter PATH records keyed on filesystem magic (Richard Guy Briggs) [1382513]
-- [kernel] audit: remove unnecessary semicolon in audit_field_valid() (Richard Guy Briggs) [1382513]
-- [firmware] efi: Fix debugobjects warning on 'efi_rts_work' (Bhupesh Sharma) [1537527]
-- [x86] efi/x86: Handle page faults occurring while running EFI runtime services (Bhupesh Sharma) [1537527]
-- [firmware] efi: Make efi_rts_work accessible to efi page fault handler (Bhupesh Sharma) [1537527]
-- [firmware] efi: Use a work queue to invoke EFI Runtime Services (Bhupesh Sharma) [1537527]
-- [x86] efi/x86: Use non-blocking SetVariable() for efi_delete_dummy_variable() (Bhupesh Sharma) [1537527]
-- [firmware] efi: Replace runtime services spinlock with semaphore (Bhupesh Sharma) [1537527]
-- [firmware] efi/runtime-wrappers: Run UEFI Runtime Services with interrupts enabled (Bhupesh Sharma) [1537527]
-- [firmware] efi: runtime-wrapper: Get rid of the rtc_lock spinlock (Bhupesh Sharma) [1537527]
-- [firmware] efi/runtime-wrappers: Remove out of date comment regarding in_nmi() (Bhupesh Sharma) [1537527]
-- [firmware] efi/runtime-wrappers: Add a nonblocking version of QueryVariableInfo() (Bhupesh Sharma) [1537527]
-- [firmware] efi: Delete the in_nmi() conditional runtime locking (Bhupesh Sharma) [1537527]
-- [firmware] efi: Provide a non-blocking SetVariable() operation (Bhupesh Sharma) [1537527]
-- [firmware] efi: Implement mandatory locking for UEFI Runtime Services (Bhupesh Sharma) [1537527]
-- [iommu] amd: Allow to upgrade page-size (Jerry Snitselaar) [1676307]
-- [iommu] amd: Restart loop if cmpxchg64 succeeded in alloc_pte() (Jerry Snitselaar) [1676307]
-- [iommu] amd: Allow downgrading page-sizes in alloc_pte() (Jerry Snitselaar) [1676307]
-- [iommu] amd: Ignore page-mode 7 in free_sub_pt() (Jerry Snitselaar) [1676307]
-- [iommu] amd: Introduce free_sub_pt() function (Jerry Snitselaar) [1676307]
-- [iommu] amd: Collect page-table pages in freelist (Jerry Snitselaar) [1676307]
-- [mm] memcg, slab: simplify synchronization scheme (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: do not schedule cache destruction when last page goes away (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: separate memcg vs root cache creation paths (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: cleanup memcg cache creation (Aaron Tomlin) [1674401]
-- [mm] memcg: remove KMEM_ACCOUNTED_ACTIVATED flag (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: RCU protect memcg_params for root caches (Aaron Tomlin) [1674401]
-- [mm] slab: do not panic if we fail to create memcg cache (Aaron Tomlin) [1674401]
-- [mm] memcg: get rid of kmem_cache_dup() (Aaron Tomlin) [1674401]
-- [mm] memcg: fix possible NULL deref while traversing memcg_slab_caches list (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: fix barrier usage when accessing memcg_caches (Aaron Tomlin) [1674401]
-- [mm] slab: clean up kmem_cache_create_memcg() error handling (Aaron Tomlin) [1674401]
-- [mm] memcg, kmem: use cache_from_memcg_idx instead of hard code (Aaron Tomlin) [1674401]
-- [mm] memcg, kmem: rename cache_from_memcg to cache_from_memcg_idx (Aaron Tomlin) [1674401]
-- [mm] memcg: make memcg_update_cache_sizes() static (Aaron Tomlin) [1674401]
-- [mm] memcg: fix kmem_account_flags check in memcg_can_account_kmem() (Aaron Tomlin) [1674401]
-- [powerpc] lib: fix book3s/32 boot failure due to code patching (Desnes Augusto Nunes do Rosario) [1637841]
-- [powerpc] Avoid code patching freed init sections (Desnes Augusto Nunes do Rosario) [1637841]
-- [kernel] asm/sections: add helpers to check for section data (Desnes Augusto Nunes do Rosario) [1637841]
-- [powerpc] lib/feature-fixups: use raw_patch_instruction() (Desnes Augusto Nunes do Rosario) [1637841]
-- [powerpc] lib/code-patching: refactor patch_instruction() (Desnes Augusto Nunes do Rosario) [1637841]
-- [powerpc] lib/code-patching: Use alternate map for patch_instruction() (Desnes Augusto Nunes do Rosario) [1637841]
-- [x86] intel_rdt: Show missing resctrl mount options (David Arcari) [1689045]
-- [x86] acpi: Prevent LAPIC id 0xff from being accounted (David Arcari) [1688286]
-
-* Wed Mar 20 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1028.el7]
-- [infiniband] rdma/bnxt_re: fix or'ing of data into an uninitialized struct member (Selvin Xavier) [1643182]
-- [netdrv] rdma/bnxt_en: Enable RDMA driver support for 57500 chip (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Update kernel user abi to pass chip context (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Add extended psn structure for 57500 adapters (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Enable GSI QP support for 57500 series (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Skip backing store allocation for 57500 series (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Add 64bit doorbells for 57500 series (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Add chip context to identify 57500 series (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Query HWRM Interface version from FW (Selvin Xavier) [1643182]
-- [netdrv] qed: Fix iWARP syn packet mac address validation (Manish Chopra) [1682918]
-- [netdrv] qed: Fix iWARP buffer size provided for syn packet processing (Manish Chopra) [1682918]
-- [netdrv] qed: Read device port count from the shmem (Manish Chopra) [1682918]
-- [netdrv] qede: Add missing checks for tunnel enablement (Manish Chopra) [1682918]
-- [netdrv] qede: Add missing ndos initialization for VFs (Manish Chopra) [1682918]
-- [netdrv] qed: Fix EQ full firmware assert (Manish Chopra) [1682918]
-- [netdrv] qed: Consider TX tcs while deriving the max num_queues for PF (Manish Chopra) [1682918]
-- [netdrv] qede: Add ethtool interface for SmartAN query (Manish Chopra) [1682918]
-- [netdrv] qed*: Advance drivers version to 8.37.0.20 (Manish Chopra) [1682918]
-- [netdrv] qed: Add API for SmartAN query (Manish Chopra) [1682918]
-- [netdrv] qede: Fix system crash on configuring channels (Manish Chopra) [1682918]
-- [netdrv] qed: Assign UFP TC value to vlan priority in UFP mode (Manish Chopra) [1682918]
-- [netdrv] qed: fix indentation issue with statements in an if-block (Manish Chopra) [1682918]
-- [netdrv] qed: Change verbosity for coalescing message (Manish Chopra) [1682918]
-- [netdrv] bnx2x: Remove set but not used variable 'mfw_vn' (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Use struct_size() in kzalloc() (Manish Chopra) [1673194]
-- [netdrv] broadcom: Mark expected switch fall-throughs (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Bump up driver version to 1.713.36 (Manish Chopra) [1673194]
-- [netdrv] bnx2x: fix various indentation issues (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Fix NULL pointer dereference in bnx2x_del_all_vlans() on some hw (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Send update-svid ramrod with retry/poll flags enabled (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Enable PTP only on the PF that initializes the port (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Remove configured vlans as part of unload sequence (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Clear fip MAC when fcoe offload support is disabled (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Add storm FW version to ethtool driver query output (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Add MBI version to ethtool driver query output (Manish Chopra) [1673194]
-- [netdrv] remove <net/busy_poll.h> inclusion when not needed (Manish Chopra) [1673194]
-- [netdrv] bnx2x: remove ndo_poll_controller (Manish Chopra) [1673194]
-- [netdrv] ixgbe: fix older devices that do not support IXGBE_MRQC_L3L4TXSWEN (Ken Cox) [1648746]
-- [cpufreq] intel_pstate: Add base_frequency attribute (Prarit Bhargava) [1648208]
-- [acpi] cppc: Add support for guaranteed performance (Prarit Bhargava) [1648208]
-- [idle] intel_idle: add support for Jacobsville (Steve Best) [1481749]
-- [x86] xen/qspinlock: Don't kick CPU if IRQ is not initialized (Vitaly Kuznetsov) [1681468]
-- [xen] grant-table: Use put_page instead of free_page (Vitaly Kuznetsov) [1545022]
-- [iommu] hyper-v: Add Hyper-V stub IOMMU driver (Vitaly Kuznetsov) [1661654]
-- [x86] hyper-v: Set x2apic destination mode to physical when x2apic is available (Vitaly Kuznetsov) [1661654]
-- [x86] hyper-v: Consolidate code for converting cpumask to vpset (Vitaly Kuznetsov) [1661654]
-- [x86] hyper-v: Fix the circular dependency in IPI enlightenment (Vitaly Kuznetsov) [1661654]
-- [pci] hv: Refactor hv_irq_unmask() to use cpumask_to_vpset() (Vitaly Kuznetsov) [1661654]
-- [pci] hv: Replace hv_vp_set with hv_vpset (Vitaly Kuznetsov) [1661654]
-- [pci] hv: Add __aligned(8) to struct retarget_msi_interrupt (Vitaly Kuznetsov) [1661654]
-- [x86] intel_rdt/mba_sc: Feedback loop to dynamically update mem bandwidth (Prarit Bhargava) [1620320]
-- [x86] intel_rdt/mba_sc: Prepare for feedback loop (Prarit Bhargava) [1620320]
-- [x86] intel_rdt/mba_sc: Add schemata support (Prarit Bhargava) [1620320]
-- [x86] intel_rdt/mba_sc: Add initialization support (Prarit Bhargava) [1620320]
-- [x86] intel_rdt/mba_sc: Enable/disable MBA software controller (Prarit Bhargava) [1620320]
-- [documentation] x86/intel_rdt/mba_sc: Documentation for MBA software controller(mba_sc) (Prarit Bhargava) [1620320]
-
-* Wed Mar 20 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1027.el7]
-- [fs] smb3: on kerberos mount if server doesn't specify auth type use krb5 (Leif Sahlberg) [1679395]
-- [fs] nfs: nfs_compare_mount_options always compare auth flavors (Steve Dickson) [1661620]
-- [fs] vfs: fix check for fallocate on active swapfile (Lukas Czerner) [1671293]
-- [fs] fs: prevent doing FALLOC_FL_ZERO_RANGE on append only file (Lukas Czerner) [1671293]
-- [fs] ext4: avoid kernel warning when writing the superblock to a dead device (Lukas Czerner) [1671293]
-- [fs] ext4: missing unlock/put_page() in ext4_try_to_write_inline_data() (Lukas Czerner) [1671293]
-- [fs] ext4: fix possible use after free in ext4_quota_enable (Lukas Czerner) [1671293]
-- [fs] ext4: fix buffer leak in __ext4_read_dirblock() on error path (Lukas Czerner) [1671293]
-- [fs] ext4: release bs.bh before re-using in ext4_xattr_block_find() (Lukas Czerner) [1671293]
-- [fs] ext4: fix possible leak of sbi->s_group_desc_leak in error path (Lukas Czerner) [1671293]
-- [fs] ext4: avoid possible double brelse() in add_new_gdb() on error path (Lukas Czerner) [1671293]
-- [fs] ext4: avoid buffer leak in ext4_orphan_add() after prior errors (Lukas Czerner) [1671293]
-- [fs] ext4: fix possible inode leak in the retry loop of ext4_resize_fs() (Lukas Czerner) [1671293]
-- [fs] ext4: fix missing cleanup if ext4_alloc_flex_bg_array() fails while resizing (Lukas Czerner) [1671293]
-- [fs] ext4: add missing brelse() update_backups()'s error path (Lukas Czerner) [1671293]
-- [fs] ext4: add missing brelse() in set_flexbg_block_bitmap()'s error path (Lukas Czerner) [1671293]
-- [fs] ext4: avoid potential extra brelse in setup_new_flex_group_blocks() (Lukas Czerner) [1671293]
-- [fs] ext4: initialize retries variable in ext4_da_write_inline_data_begin() (Lukas Czerner) [1671293]
-- [fs] ext4, dax: set ext4_dax_aops for dax files (Lukas Czerner) [1671293]
-- [fs] ext4, dax: add ext4_bmap to ext4_dax_aops (Lukas Czerner) [1671293]
-- [fs] ext4: don't mark mmp buffer head dirty (Lukas Czerner) [1671293]
-- [fs] ext4: fix online resizing for bigalloc file systems with a 1k block size (Lukas Czerner) [1671293]
-- [fs] ext4: fix online resize's handling of a too-small final block group (Lukas Czerner) [1671293]
-- [fs] ext4: recalucate superblock checksum after updating free blocks/inodes (Lukas Czerner) [1671293]
-- [fs] ext4: avoid arithemetic overflow that can trigger a BUG (Lukas Czerner) [1671293]
-- [fs] ext4: avoid divide by zero fault when deleting corrupted inline directories (Lukas Czerner) [1671293]
-- [fs] ext4: check to make sure the rename(2)'s destination is not freed (Lukas Czerner) [1671293]
-- [fs] ext4: fix spectre gadget in ext4_mb_regular_allocator() (Lukas Czerner) [1671293]
-- [fs] ext4: limit xattr size to INT_MAX (Lukas Czerner) [1671293]
-- [fs] ext4: check for NUL characters in extended attribute's name (Lukas Czerner) [1671293]
-- [fs] ext4: correctly detect when an xattr value has an invalid size (Lukas Czerner) [1671293]
-- [fs] ext4: Check that external xattr value block is zero (Lukas Czerner) [1671293]
-- [fs] ext4: reset error code in ext4_find_entry in fallback (Lukas Czerner) [1671293]
-- [fs] ext4: fix quota inconsistency during orphan cleanup for read-only mounts (Lukas Czerner) [1671293]
-- [fs] ext4: force revalidation of directory pointer after seekdir(2) (Lukas Czerner) [1671293]
-- [fs] ext4: fix offset overflow on 32-bit archs in ext4_iomap_begin() (Lukas Czerner) [1671293]
-- [fs] jbd2: if the journal is aborted then don't allow update of the log tail (Lukas Czerner) [1671293]
-- [fs] ext4: save error to disk in __ext4_grp_locked_error() (Lukas Czerner) [1671293]
-- [fs] ext4: fix a race in the ext4 shutdown path (Lukas Czerner) [1671293]
-- [fs] ext4: fix crash when a directory's i_size is too small (Lukas Czerner) [1671293]
-- [fs] ext4: fix fdatasync(2) after fallocate(2) operation (Lukas Czerner) [1671293]
-- [fs] ext4: fix incorrect quotaoff if the quota feature is enabled (Lukas Czerner) [1671293]
-- [fs] ext4: fix overflow caused by missing cast in ext4_resize_fs() (Lukas Czerner) [1671293]
-- [fs] ext4: fix fdatasync(2) after extent manipulation operations (Lukas Czerner) [1671293]
-- [fs] ext4: keep existing extra fields when inode expands (Lukas Czerner) [1671293]
-- [fs] ext4: clear lockdep subtype for quota files on quota off (Lukas Czerner) [1671293]
-- [fs] ext4: Set flags on quota files directly (Lukas Czerner) [1671293]
-- [fs] ext4: evict inline data when writing to memory map (Lukas Czerner) [1671293]
-- [fs] ext4: mark inode dirty after converting inline directory (Lukas Czerner) [1671293]
-- [fs] ext4: don't lock buffer in ext4_commit_super if holding spinlock (Lukas Czerner) [1671293]
-- [fs] ext4: clean up error handling when orphan list is corrupted (Lukas Czerner) [1671293]
-- [fs] ext4: fix crashes in dioread_nolock mode (Lukas Czerner) [1671293]
-- [fs] ext4: fix potential integer overflow (Lukas Czerner) [1671293]
-- [fs] dcache: Add negative dentries to LRU tail (Waiman Long) [1466038]
-- [fs] documentation: Fix grammatical error in sysctl/fs.txt & clarify negative dentry (Waiman Long) [1466038]
-- [fs] dcache: Track & report number of negative dentries (Waiman Long) [1466038]
-- [fs] dcache: convert dentry_stat.nr_unused to per-cpu counters (Waiman Long) [1466038]
-- [fs] bump inode and dentry counters to long (Waiman Long) [1466038]
-
-* Tue Mar 19 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1026.el7]
-- [usb] fix the usbfs flag sanitization for control transfers (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: Added support for Gemalto's Cinterion ALASxx WWAN interface (Torez Smith) [1657401]
-- [usb] xhci: pci: Enable Intel USB role mux on Apollo Lake platforms (Torez Smith) [1657401]
-- [usb] roles: intel_xhci: Fix Unbalanced pm_runtime_enable (Torez Smith) [1657401]
-- [usb] cdc-acm: correct counting of UART states in serial state notification (Torez Smith) [1657401]
-- [usb] cdc-acm: do not reset notification buffer index upon urb unlinking (Torez Smith) [1657401]
-- [usb] cdc-acm: fix race between reset and control messaging (Torez Smith) [1657401]
-- [usb] usbip: fix bug: kasan: slab-out-of-bounds in vhci_hub_control() (Torez Smith) [1657401]
-- [netdrv] usb: cancel pending work when unbinding smsc75xx (Torez Smith) [1657401]
-- [usb] xhci-mtk: resume USB3 roothub first (Torez Smith) [1657401]
-- [usb] xhci: Add missing CAS workaround for Intel Sunrise Point xHCI (Torez Smith) [1657401]
-- [usb] cdc_acm: Do not leak URB buffers (Torez Smith) [1657401]
-- [netdrv] smsc95xx: Check for Wake-on-LAN modes (Torez Smith) [1657401]
-- [netdrv] smsc75xx: Check for Wake-on-LAN modes (Torez Smith) [1657401]
-- [netdrv] r8152: Check for supported Wake-on-LAN Modes (Torez Smith) [1657401]
-- [netdrv] sr9800: Check for supported Wake-on-LAN modes (Torez Smith) [1657401]
-- [netdrv] ax88179_178a: Check for supported Wake-on-LAN modes (Torez Smith) [1657401]
-- [netdrv] asix: Check for supported Wake-on-LAN modes (Torez Smith) [1657401]
-- [usb] serial: simple: add Motorola Tetra MTP6550 id (Torez Smith) [1657401]
-- [usb] typec: mux: Take care of driver module reference counting (Torez Smith) [1657401]
-- [usb] core: safely deal with the dynamic quirk lists (Torez Smith) [1657401]
-- [usb] roles: Take care of driver module reference counting (Torez Smith) [1657401]
-- [usb] handle NULL config in usb_find_alt_setting() (Torez Smith) [1657401]
-- [usb] fix error handling in usb_driver_claim_interface() (Torez Smith) [1657401]
-- [usb] remove LPM management from usb_driver_claim_interface() (Torez Smith) [1657401]
-- [usb] usbdevfs: restore warning for nonsensical flags (Torez Smith) [1657401]
-- [usb] usbdevfs: sanitize flags more (Torez Smith) [1657401]
-- [usb] revert "usb: cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt()" (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: set DTR for modems in forced USB2 mode (Torez Smith) [1657401]
-- [usb] serial: option: add two-endpoints device-id flag (Torez Smith) [1657401]
-- [usb] serial: option: improve Quectel EP06 detection (Torez Smith) [1657401]
-- [usb] revert "cdc-acm: implement put_char() and flush_chars()" (Torez Smith) [1657401]
-- [usb] xhci: fix interrupt transfer error happened on MTK platforms (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: Support dynamic config on Quectel EP06 (Torez Smith) [1657401]
-- [usb] cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt() (Torez Smith) [1657401]
-- [usb] misc: uss720: Fix two sleep-in-atomic-context bugs (Torez Smith) [1657401]
-- [usb] Avoid use-after-free by flushing endpoints early in usb_set_interface() (Torez Smith) [1657401]
-- [usb] typec: fix kernel-doc notation warning for typec_match_altmode (Torez Smith) [1657401]
-- [usb] Don't die twice if PCI xhci host is not responding in resume (Torez Smith) [1657401]
-- [usb] uas: add support for more quirk flags (Torez Smith) [1657401]
-- [usb] Add quirk to support DJI CineSSD (Torez Smith) [1657401]
-- [usb] typec: fix kernel-doc parameter warning (Torez Smith) [1657401]
-- [usb] yurex: Check for truncation in yurex_read() (Torez Smith) [1657401]
-- [usb] yurex: Fix buffer over-read in yurex_write() (Torez Smith) [1657401]
-- [usb] xhci: Fix use after free for URB cancellation on a reallocated endpoint (Torez Smith) [1657401]
-- [usb] add quirk for WORLDE Controller KS49 or Prodipe MIDI 49C USB controller (Torez Smith) [1657401]
-- [usb] serial: ti_usb_3410_5052: fix array underflow in completion handler (Torez Smith) [1657401]
-- [usb] serial: io_ti: fix array underflow in completion handler (Torez Smith) [1657401]
-- [netdrv] r8152: disable RX aggregation on new Dell TB16 dock (Torez Smith) [1657401]
-- [netdrv] net/usb/r8152: remove the unneeded variable "ret" in rtl8152_system_suspend (Torez Smith) [1657401]
-- [usb] serial: pl2303: add a new device id for ATEN (Torez Smith) [1657401]
-- [usb] option: add support for DW5821e (Torez Smith) [1657401]
-- [netdrv] usb: sr9700: Replace mdelay() with msleep() in sr9700_bind() (Torez Smith) [1657401]
-- [netdrv] usb: pegasus: Replace mdelay() with msleep() in setup_pegasus_II() (Torez Smith) [1657401]
-- [media] uvcvideo: Handle control pipe protocol STALLs (Torez Smith) [1657401]
-- [media] uvcvideo: Remove a redundant check (Torez Smith) [1657401]
-- [media] uvcvideo: Fix minor spelling (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: fix interface number for DW5821e production firmware (Torez Smith) [1657401]
-- [usb] usbtmc: Add support for 32 bit compat applications (Torez Smith) [1657401]
-- [usb] core: handle hub C_PORT_OVER_CURRENT condition (Torez Smith) [1657401]
-- [usb] usbtmc: Add ioctl for termination character (Torez Smith) [1657401]
-- [usb] usbtmc: Add ioctl for EOM bit (Torez Smith) [1657401]
-- [usb] usbtmc: Add ioctl for trigger (Torez Smith) [1657401]
-- [usb] usbtmc: Add ioctls to set/get usb timeout (Torez Smith) [1657401]
-- [usb] usbtmc: use consistent timeout error (Torez Smith) [1657401]
-- [usb] usbtmc: Support Read Status Byte with SRQ per file (Torez Smith) [1657401]
-- [usb] xhci: Fix memory leak in xhci_endpoint_reset() (Torez Smith) [1657401]
-- [usb] typec: tcpm: Fix sink PDO starting index for PPS APDO selection (Torez Smith) [1657401]
-- [netdrv] usb: asix: replace mii_nway_restart in resume path (Torez Smith) [1657401]
-- [usb] serial: cp210x: make line-speed quantisation data driven (Torez Smith) [1657401]
-- [netdrv] usb: rtl8150: demote allmulti message to dev_dbg() (Torez Smith) [1657401]
-- [netdrv] usb: hso: use swap macro in hso_kick_transmit (Torez Smith) [1657401]
-- [usb] serial: iuu_phoenix: drop redundant input-speed re-encoding (Torez Smith) [1657401]
-- [usb] serial: iuu_phoenix: drop unused driver-data baud rate (Torez Smith) [1657401]
-- [usb] serial: mos7720: remove redundant variables iflag, mask and serial (Torez Smith) [1657401]
-- [usb] cdc_acm: Add quirk for Castles VEGA3000 (Torez Smith) [1657401]
-- [usb] host: ehci-sched: remove redundant pointer dev (Torez Smith) [1657401]
-- [usb] host: whci: remove redundant variable t (Torez Smith) [1657401]
-- [usb] xhci: dbc: remove redundant pointer dbc (Torez Smith) [1657401]
-- [usb] usb-misc: sisusbvga: remove redundant variable modey (Torez Smith) [1657401]
-- [usb] misc: uss720: remove redundant pointer usbdev (Torez Smith) [1657401]
-- [usb] usbip: remove redundant pointer ep (Torez Smith) [1657401]
-- [usb] serial: kl5kusb105: remove KLSI device id (Torez Smith) [1657401]
-- [usb] yurex: fix out-of-bounds uaccess in read handler (Torez Smith) [1657401]
-- [usb] typec: avoid format-overflow warning (Torez Smith) [1657401]
-- [usb] typec: unlock dp->lock on error exit path, and also zero ret if successful (Torez Smith) [1657401]
-- [usb] typec: fix dereference before null check on adev (Torez Smith) [1657401]
-- [usb] usbtest: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] quirks: add delay quirks for Corsair Strafe (Torez Smith) [1657401]
-- [usb] xhci: xhci-mem: off by one in xhci_stream_id_to_ring() (Torez Smith) [1657401]
-- [usb] serial: kobil_sct: add missing version error handling (Torez Smith) [1657401]
-- [usb] serial: kobil_sct: fix modem-status error handling (Torez Smith) [1657401]
-- [usb] serial: mos7840: fix status-register error handling (Torez Smith) [1657401]
-- [usb] serial: keyspan_pda: fix modem-status error handling (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: add support for Quectel EG91 (Torez Smith) [1657401]
-- [usb] serial: cp210x: add another USB ID for Qivicon ZigBee stick (Torez Smith) [1657401]
-- [usb] serial: ch341: fix type promotion bug in ch341_control_in() (Torez Smith) [1657401]
-- [netdrv] smsc75xx: Add workaround for gigabit link up hardware errata (Torez Smith) [1657401]
-- [netdrv] usb: asix: allow optionally getting mac address from device tree (Torez Smith) [1657401]
-- [usb] typec: fsusb302: Drop empty set_current_limit implementation (Torez Smith) [1657401]
-- [usb] mark expected switch fall-throughs (Torez Smith) [1657401]
-- [usb] wusbcore: security: cast sizeof to int for comparison (Torez Smith) [1657401]
-- [usb] typec: tcpm: Support for Alternate Modes (Torez Smith) [1657401]
-- [usb] typec: pi3usb30532: Start using generic state values (Torez Smith) [1657401]
-- [usb] typec: Add driver for DisplayPort alternate mode (Torez Smith) [1657401]
-- [usb] typec: Bus type for alternate modes (Torez Smith) [1657401]
-- [usb] typec: Register a device for every mode (Torez Smith) [1657401]
-- [usb] typec: mux: Get the mux identifier from function parameter (Torez Smith) [1657401]
-- [usb] typec: tcpm: Correctly report power_supply current and voltage for non pd supply (Torez Smith) [1657401]
-- [usb] xhci: dbc: Don't decrement runtime PM counter if DBC is not started (Torez Smith) [1657401]
-- [usb] update for tcpci drivers moving out of staging (Torez Smith) [1657401]
-- [netdrv] usb: Mark expected switch fall-throughs (Torez Smith) [1657401]
-- [usb] typec: function for checking cable plug orientation (Torez Smith) [1657401]
-- [kernel] usb: pd: include kernel.h (Torez Smith) [1657401]
-- [usb] typec: tcpci: move tcpci drivers out of staging (Torez Smith) [1657401]
-- [usb] typec: tcpm: add starting value for drp toggling (Torez Smith) [1657401]
-- [usb] typec: tcpm: support get typec and pd config from device properties (Torez Smith) [1657401]
-- [usb] typec: add API to get typec basic port power and data config (Torez Smith) [1657401]
-- [kernel] usb: typec: add fwnode to tcpc (Torez Smith) [1657401]
-- [usb] typec: tps6598x: Remove VLA usage (Torez Smith) [1657401]
-- [usb] cdc-wdm: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] cdc-wdm: don't enable interrupts in USB-giveback (Torez Smith) [1657401]
-- [usb] legousbtower: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] ldusb: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] iowarrior: remove intr_idx_lock (Torez Smith) [1657401]
-- [usb] adutux: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] wusbcore: remove excessive irqsave (Torez Smith) [1657401]
-- [usb] usb-skeleton: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] usblp: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] usbfs: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] core: use irqsave() in sg_complete() complete callback (Torez Smith) [1657401]
-- [usb] cdc-acm: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] host: ehci-npcm7xx: Fix some error codes in probe (Torez Smith) [1657401]
-- [usb] serial: digi_acceleport: rename tty flag variable (Torez Smith) [1657401]
-- [usb] serial: usb_wwan: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: ti_usb_3410_5052: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: symbolserial: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: sierra: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: sierra: fix potential deadlock at close (Torez Smith) [1657401]
-- [usb] serial: quatech2: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: mos7840: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: mos7720: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: io_ti: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: io_edgeport: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: digi_acceleport: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: cyberjack: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] r8152: napi hangup fix after disconnect (Torez Smith) [1657401]
-- [usb] usb host: Add USB ehci support for nuvoton npcm7xx platform (Torez Smith) [1657401]
-- [usb] cdc-acm: Decrement tty port's refcount if probe() fail (Torez Smith) [1657401]
-- [usb] mon: use ktime_get_real_ts64 instead of getnstimeofday64 (Torez Smith) [1657401]
-- [usb] xhci-hcd: Add get_resuming_ports method (Torez Smith) [1657401]
-- [usb] ehci-hcd: Add get_resuming_ports method (Torez Smith) [1657401]
-- [usb] Report wakeup events on root-hub ports (Torez Smith) [1657401]
-- [usb] typec: tcpm: fix logbuffer index is wrong if _tcpm_log is re-entered (Torez Smith) [1657401]
-- [usb] typec: tcpm: Fix a msecs vs jiffies bug (Torez Smith) [1657401]
-- [usb] cdc_acm: Add quirk for Uniden UBC125 scanner (Torez Smith) [1657401]
-- [usb] typec: ucsi: Fix for incorrect status data issue (Torez Smith) [1657401]
-- [usb] xhci: increase CRS timeout value (Torez Smith) [1657401]
-- [usb] xhci: tegra: fix runtime PM error handling (Torez Smith) [1657401]
-- [usb] xhci: remove the code build warning (Torez Smith) [1657401]
-- [usb] xhci: Fix kernel oops in trace_xhci_free_virt_device (Torez Smith) [1657401]
-- [usb] xhci: Fix perceived dead host due to runtime suspend race with event handler (Torez Smith) [1657401]
-- [usb] serial: cast sizeof() to int when comparing with error code (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: add support for the Dell Wireless 5821e module (Torez Smith) [1657401]
-- [netdrv] usb: rtl8150: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb: r8152: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb: kaweth: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb: hso: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb: cdc-phonet: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb/drivers: Remove useless hrtimer_active check (Torez Smith) [1657401]
-- [usb] serial: cp210x: add CESINEL device ids (Torez Smith) [1657401]
-- [usb] serial: cp210x: add Silicon Labs IDs for Windows Update (Torez Smith) [1657401]
-- [netdrv] cdc_ncm: avoid padding beyond end of skb (Torez Smith) [1657401]
-- [media] uvcvideo: Prevent setting unavailable flags (Torez Smith) [1657401]
-- [netdrv] usb: cdc_mbim: add flag FLAG_SEND_ZLP (Torez Smith) [1657401]
-- [usb] revert "xhci: Reset Renesas uPD72020x USB controller for 32-bit DMA issue" (Torez Smith) [1657401]
-- [usb] xhci: Add quirk to zero 64bit registers on Renesas PCIe controllers (Torez Smith) [1657401]
-- [usb] xhci: Allow more than 32 quirks (Torez Smith) [1657401]
-- [usb] xhci: force all memory allocations to node (Torez Smith) [1657401]
-- [usb] typec: fsusb302: no need to check return value of debugfs_create_dir() (Torez Smith) [1657401]
-- [usb] core: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] ehci-hcd: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] ohci: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] uhci: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] mon: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] typec: tcpm: no need to check return value of debugfs_create_dir() (Torez Smith) [1657401]
-- [usb] hub: Per-port setting to reduce TRSTRCY to 10 ms (Torez Smith) [1657401]
-- [usb] hub: Per-port setting to use old enumeration scheme (Torez Smith) [1657401]
-- [usb] xhci: tegra: Fix runtime PM support (Torez Smith) [1657401]
-- [usb] core: message: remove extra endianness conversion in usb_set_isoch_delay (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: Add Netgear Aircard 779S (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: apply SET_DTR quirk to the SIMCOM shared device ID (Torez Smith) [1657401]
-- [usb] xhci: tegra: Add support for managing powergates (Torez Smith) [1657401]
-- [usb] xhci: tegra: Add runtime PM support (Torez Smith) [1657401]
-- [usb] xhci: tegra: Prepare for adding runtime PM support (Torez Smith) [1657401]
-- [usb] usb-storage: Add compatibility quirk flags for G-Technologies G-Drive (Torez Smith) [1657401]
-- [usb] usb-storage: Add support for FL_ALWAYS_SYNC flag in the UAS driver (Torez Smith) [1657401]
-- [usb] typec: wcove: Remove dependency on HW FSM (Torez Smith) [1657401]
-- [usb] roles: intel_xhci: Enable runtime PM (Torez Smith) [1657401]
-- [usb] typec: fusb302: Fix debugfs issue (Torez Smith) [1657401]
-- [usb] roles: intel_xhci: Always allow user control (Torez Smith) [1657401]
-- [usb] typec: Fix htmldocs warning (Torez Smith) [1657401]
-- [usb] typec: tcpm: Provide fwnode pointer as part of psy_cfg (Torez Smith) [1657401]
-- [usb] xhci: debugfs: add debugfs interface to enable compliance mode for a port (Torez Smith) [1657401]
-- [usb] xhci: debugfs: add usb ports to xhci debugfs (Torez Smith) [1657401]
-- [usb] xhci: xhci-mem: remove port_arrays and the code initializing them (Torez Smith) [1657401]
-- [usb] xhci-mtk: use xhci hub structures to get number of ports in roothubs (Torez Smith) [1657401]
-- [usb] xhci: xhci-hub: use port structure members instead of xhci_get_ports() (Torez Smith) [1657401]
-- [usb] xhci: use port structures instead of port arrays in xhci.c functions (Torez Smith) [1657401]
-- [usb] xhci: change xhci_test_and_clear_bit() to use new port structure (Torez Smith) [1657401]
-- [usb] xhci: change xhci_set_link_state() to work with port structures (Torez Smith) [1657401]
-- [usb] xhci: rename faked_port_index to hcd_portnum (Torez Smith) [1657401]
-- [usb] xhci: xhci-ring: use port structures for port event handler (Torez Smith) [1657401]
-- [usb] xhci: xhci-hub: use new port structures for cas and wake mask functions (Torez Smith) [1657401]
-- [usb] xhci: xhci-hub: use new port structures to get port address instead of port array (Torez Smith) [1657401]
-- [usb] xhci: Add helper to get xhci roothub from hcd (Torez Smith) [1657401]
-- [usb] xhci: set hcd pointers for xhci usb2 and usb3 roothub structures (Torez Smith) [1657401]
-- [usb] xhci: Create new structures to store xhci port information (Torez Smith) [1657401]
-- [usb] xhci: hisilicon: support HiSilicon STB xHCI host controller (Torez Smith) [1657401]
-- [usb] xhci: dbc: Add SPDX identifiers to dbc files (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: clean up flow control management (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: drop unnecessary urb_ variable prefixes (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: use non-underscore fixed types (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: fix IXON/IXOFF mixup (Torez Smith) [1657401]
-- [usb] usbtmc: Remove rigol_quirk (Torez Smith) [1657401]
-- [usb] serial: use tty_port_register_device() (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: fix bad unlock balance during stub_probe() (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: fix NULL-ptr deref and use-after-free errors (Torez Smith) [1657401]
-- [usb] xhci: Fix USB3 NULL pointer dereference at logical disconnect (Torez Smith) [1657401]
-- [usb] revert "usb: host: ehci: Use dma_pool_zalloc()" (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: run rebind from exit when module is removed (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: delete device from busid_table after rebind (Torez Smith) [1657401]
-- [usb] typec: tps6598x: handle block reads separately with plain-I2C adapters (Torez Smith) [1657401]
-- [usb] typec: tcpm: Release the role mux when exiting (Torez Smith) [1657401]
-- [usb] Accept bulk endpoints with 1024-byte maxpacket (Torez Smith) [1657401]
-- [usb] xhci: Fix use-after-free in xhci_free_virt_device (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: do not steal interfaces from class drivers (Torez Smith) [1657401]
-- [usb] serial: visor: handle potential invalid device configuration (Torez Smith) [1657401]
-- [usb] serial: option: adding support for ublox R410M (Torez Smith) [1657401]
-- [usb] serial: option: blacklist unused dwm-158 interfaces (Torez Smith) [1657401]
-- [usb] typec: tcpm: Fix incorrect 'and' operator (Torez Smith) [1657401]
-- [usb] usb-misc: sisusbvga: fix spelling mistake: "asymmeric" -> "asymmetric" (Torez Smith) [1657401]
-- [netdrv] usb: qmi_wwan: add support for ublox R410M PID 0x90b2 (Torez Smith) [1657401]
-- [usb] typec: tcpm: fix compiler warning about stupid things (Torez Smith) [1657401]
-- [usb] typec: tcpm: Add support for sink PPS related messages (Torez Smith) [1657401]
-- [usb] typec: tcpm: Represent source supply through power_supply (Torez Smith) [1657401]
-- [usb] typec: tcpm: Add core support for sink side PPS (Torez Smith) [1657401]
-- [usb] do not reset if a low-speed or full-speed device timed out (Torez Smith) [1657401]
-- [usb] core: hcd: mark expected switch fall-through (Torez Smith) [1657401]
-- [usb] USB 3.2 Add sysfs entries for a usb device rx_lanes and tx_lanes (Torez Smith) [1657401]
-- [usb] show USB 3.2 Dual-lane devices as Gen Xx2 during device enumeration (Torez Smith) [1657401]
-- [usb] set root hub lane counts (Torez Smith) [1657401]
-- [usb] Add support to store lane count used by USB 3.2 (Torez Smith) [1657401]
-- [usb] define HCD_USB32 speed option for hosts that support USB 3.2 dual-lane (Torez Smith) [1657401]
-- [usb] typec: tcpm: remove max_snk_mv/ma/mw (Torez Smith) [1657401]
-- [usb] typec: wcove: remove max_snk_* for sink config (Torez Smith) [1657401]
-- [usb] typec: fusb302: remove max_snk_* for sink config (Torez Smith) [1657401]
-- [usb] typec: tcpm: pdo matching optimization (Torez Smith) [1657401]
-- [usb] hub: Don't wait for connect state at resume for powered-off ports (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: refine probe and disconnect debug msgs to be useful (Torez Smith) [1657401]
-- [usb] storage: Replace mdelay with msleep in init_freecom (Torez Smith) [1657401]
-- [kernel] usb: audio-v2: Correct the comment for struct uac_clock_selector_descriptor (Torez Smith) [1657401]
-- [usb] roles: Fix potential NULL dereference in intel_xhci_usb_probe() (Torez Smith) [1657401]
-- [usb] xhci: Fix Kernel oops in xhci dbgtty (Torez Smith) [1657401]
-- [usb] select USB_COMMON for usb role switch config (Torez Smith) [1657401]
-- [usb] core: Add quirk for HP v222w 16GB Mini (Torez Smith) [1657401]
-- [usb] typec: ucsi: fix tracepoint related build error (Torez Smith) [1657401]
-- [usb] usbip: usbip_event: fix to not print kernel pointer address (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: fix to hold parent lock for device_attach() calls (Torez Smith) [1657401]
-- [usb] usbip: vhci_hcd: Fix usb device and sockfd leaks (Torez Smith) [1657401]
-- [usb] usbip: vhci_hcd: check rhport before using in vhci_hub_control() (Torez Smith) [1657401]
-- [usb] Increment wakeup count on remote wakeup (Torez Smith) [1657401]
-- [usb] host: xhci-plat: Fix clock resource by adding a register clock (Torez Smith) [1657401]
-- [usb] xhci: Fix USB ports for Dell Inspiron 5775 (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: add Wistron Neweb D19Q1 (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: use jtag quirk for Arrow USB Blaster (Torez Smith) [1657401]
-- [usb] serial: cp210x: add ID for NI USB serial console (Torez Smith) [1657401]
-- [usb] serial: simple: add libtransistor console (Torez Smith) [1657401]
-- [netdrv] cdc_ether: flag the Cinterion AHS8 modem by gemalto as WWAN (Torez Smith) [1657401]
-- [usb] revert "usb: serial: ftdi_sio: add Id for Physik Instrumente E-870" (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: add Id for Physik Instrumente E-870 (Torez Smith) [1657401]
-- [netdrv] net-usb: add qmi_wwan if on lte modem wistron neweb d18q1 (Torez Smith) [1657401]
-- [netdrv] usb/qmi_wwan.c: Add USB id for lt4120 modem (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: add BroadMobi BM806U 2020:2033 (Torez Smith) [1657401]
-- [usb] host: Remove the deprecated ATH79 USB host config options (Torez Smith) [1657401]
-- [usb] roles: Fix return value check in intel_xhci_usb_probe() (Torez Smith) [1657401]
-- [documentation] usb: core: Add USB_QUIRK_DELAY_CTRL_MSG to usbcore quirks (Torez Smith) [1657401]
-- [usb] core: Copy parameter string correctly and remove superfluous null check (Torez Smith) [1657401]
-- [usb] announce bcdDevice as well as idVendor, idProduct (Torez Smith) [1657401]
-- [usb] USB:fix USB3 devices behind USB3 hubs not resuming at hibernate thaw (Torez Smith) [1657401]
-- [usb] hub: Reduce warning to notice on power loss (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: add support for Harman FirmwareHubEmulator (Torez Smith) [1657401]
-- [usb] serial: cp210x: add ELDAT Easywave RX09 id (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: add RT Systems VX-8 cable (Torez Smith) [1657401]
-- [usb] typec: driver for Pericom PI3USB30532 Type-C cross switch (Torez Smith) [1657401]
-- [usb] roles: Add Intel xHCI USB role switch driver (Torez Smith) [1657401]
-- [usb] xhci: Add Intel extended cap / otg phy mux handling (Torez Smith) [1657401]
-- [usb] xhci: Add option to get next extended capability in list by passing id = 0 (Torez Smith) [1657401]
-- [usb] typec: tcpm: Use new Type-C switch/mux and usb-role-switch functions (Torez Smith) [1657401]
-- [usb] typec: tcpm: Set USB role switch to device mode when configured as such (Torez Smith) [1657401]
-- [usb] typec: Separate the definitions for data and power roles (Torez Smith) [1657401]
-- [usb] common: Small class for USB role switches (Torez Smith) [1657401]
-- [usb] typec: API for controlling USB Type-C Multiplexers (Torez Smith) [1657401]
-- [usb] core: introduce per-port over-current counters (Torez Smith) [1657401]
-- [usb] misc: uss720: more vendor/product ID's (Torez Smith) [1657401]
-- [usb] core: Add "quirks" parameter for usbcore (Torez Smith) [1657401]
-- [usb] core: urb: Check SSP isoc ep comp descriptor (Torez Smith) [1657401]
-- [usb] serial: option: use mass-storage class define (Torez Smith) [1657401]
-- [usb] serial: option: drop redundant interface-class test (Torez Smith) [1657401]
-- [usb] serial: option: reimplement interface masking (Torez Smith) [1657401]
-- [usb] wusbcore: crypto: Remove VLA usage (Torez Smith) [1657401]
-- [usb] xhci: Show what USB release number the xHC supports from protocol capablity (Torez Smith) [1657401]
-- [usb] xhci: Clear the host side toggle manually when endpoint is soft reset (Torez Smith) [1657401]
-- [usb] xhci: refactor xhci_urb_enqueue a bit with minor changes (Torez Smith) [1657401]
-- [usb] xhci: Don't always run the default stop endpoint command completion handler (Torez Smith) [1657401]
-- [usb] xhci: zero usb device slot_id member when disabling and freeing a xhci slot (Torez Smith) [1657401]
-- [usb] xhci: Remove ep_trb from finish_td() (Torez Smith) [1657401]
-- [usb] xhci: Remove ep_trb from xhci_cleanup_halted_endpoint() (Torez Smith) [1657401]
-- [usb] xhci: Clean up error code in xhci_dbc_tty_register_device() (Torez Smith) [1657401]
-- [netdrv] Remove unnecessary skb_copy_expand OOM messages (Torez Smith) [1657401]
-- [usb] typec: tcpm: fusb302: Do not log an error on -EPROBE_DEFER (Torez Smith) [1657401]
-- [usb] ohci: Fix NULL dereference in HCDs using HCD_LOCAL_MEM (Torez Smith) [1657401]
-- [usb] usbip: vudc: fix null pointer dereference on udc->lock (Torez Smith) [1657401]
-- [usb] typec: Start using ERR_PTR (Torez Smith) [1657401]
-- [usb] host: xhci-mtk: remove custom USB PHY handling (Torez Smith) [1657401]
-- [usb] clarify ACPI spec version and section number for _UPC & _PLD (Torez Smith) [1657401]
-- [usb] Don't disable Latency tolerance Messaging (LTM) before port reset (Torez Smith) [1657401]
-- [usb] adutux: Add waiting in transfer abortion (Torez Smith) [1657401]
-- [usb] typec: Re-use DEFINE_SHOW_ATTRIBUTE() macro (Torez Smith) [1657401]
-- [usb] host: whci: Re-use DEFINE_SHOW_ATTRIBUTE() macro (Torez Smith) [1657401]
-- [kernel] typec: tcpm: Add SDB header for Status message handling (Torez Smith) [1657401]
-- [kernel] typec: tcpm: Add ADO header for Alert message handling (Torez Smith) [1657401]
-- [kernel] typec: tcpm: Add PD Rev 3.0 definitions to PD header (Torez Smith) [1657401]
-- [usb] wusbcore: remove redundant re-assignment to pointer 'dev' (Torez Smith) [1657401]
-- [usb] usbip: Correct maximum value of CONFIG_USBIP_VHCI_HC_PORTS (Torez Smith) [1657401]
-- [usb] usbtest: Remove stack VLA usage (Torez Smith) [1657401]
-- [usb] xhci: Fix front USB ports on ASUS PRIME B350M-A (Torez Smith) [1657401]
-- [usb] usbmon: Read text within supplied buffer size (Torez Smith) [1657401]
-- [netdrv] usb: asix88179_178a: set permanent address once only (Torez Smith) [1657401]
-- [usb] storage: Add JMicron bridge 152d:2567 to unusual_devs.h (Torez Smith) [1657401]
-- [usb] xhci: dbc: Fix lockdep warning (Torez Smith) [1657401]
-- [usb] xhci: fix endpoint context tracer output (Torez Smith) [1657401]
-- [netdrv] cdc_eem: clean up bind error path (Torez Smith) [1657401]
-- [netdrv] kalmia: clean up bind error path (Torez Smith) [1657401]
-- [kernel] usbnet: fix potential deadlock on 32bit hosts (Torez Smith) [1657401]
-- [usb] adutux: Delete a misleading comment (Torez Smith) [1657401]
-- [usb] usb-skeleton: make MODULE_LICENSE and SPDX tag match (Torez Smith) [1657401]
-- [usb] revert "typec: tcpm: Only request matching pdos" (Torez Smith) [1657401]
-- [usb] quirks: add control message delay for 1b1c:1b20 (Torez Smith) [1657401]
-- [usb] uas: fix comparison for error code (Torez Smith) [1657401]
-- [netdrv] usb/kalmia: use ARRAY_SIZE for various array sizing calculations (Torez Smith) [1657401]
-- [netdrv] cdc_ether: flag the Cinterion PLS8 modem by gemalto as WWAN (Torez Smith) [1657401]
-- [video] console: Expand dummy functions for CFI (Torez Smith) [1657401]
-- [usb] console: sisusb2vga: Drop dummy con_font_get() (Torez Smith) [1657401]
-- [netdrv] r8152: fix tx packets accounting (Torez Smith) [1657401]
-- [media] uvcvideo: Use internal kernel integer types (Torez Smith) [1657401]
-- [media] uvcvideo: Apply flags from device to actual properties (Torez Smith) [1657401]
-- [netdrv] smsc75xx: fix smsc75xx_set_features() (Torez Smith) [1657401]
-- [usb] chaoskey: Use kasprintf() over strcpy()/strcat() (Torez Smith) [1657401]
-- [usb] host: ehci: Use dma_pool_zalloc() (Torez Smith) [1657401]
-- [usb] cdc_acm: prevent race at write to acm while system resumes (Torez Smith) [1657401]
-- [usb] Add delay-init quirk for Corsair K70 RGB keyboards (Torez Smith) [1657401]
-- [usb] ohci: Proper handling of ed_rm_list to handle race condition between usb_kill_urb() and finish_unlinks() (Torez Smith) [1657401]
-- [usb] host: ehci: always enable interrupt for qtd completion at test mode (Torez Smith) [1657401]
-- [usb] ldusb: add PIDs for new CASSY devices supported by this driver (Torez Smith) [1657401]
-- [usb] host: ehci: use correct device pointer for dma ops (Torez Smith) [1657401]
-- [usb] usbip: keep usbip_device sockfd state in sync with tcp_socket (Torez Smith) [1657401]
-- [usb] ohci-hcd: Fix race condition caused by ohci_urb_enqueue() and io_watchdog_func() (Torez Smith) [1657401]
-- [usb] serial: option: Add support for Quectel EP06 (Torez Smith) [1657401]
-- [usb] xhci: fix xhci debugfs errors in xhci_stop (Torez Smith) [1657401]
-- [usb] xhci: xhci debugfs device nodes weren't removed after device plugged out (Torez Smith) [1657401]
-- [usb] xhci: Fix xhci debugfs devices node disappearance after hibernation (Torez Smith) [1657401]
-- [usb] xhci: Fix NULL pointer in xhci debugfs (Torez Smith) [1657401]
-- [usb] xhci: Don't print a warning when setting link state for disabled ports (Torez Smith) [1657401]
-- [usb] xhci: workaround for AMD Promontory disabled ports wakeup (Torez Smith) [1657401]
-- [base] base: Unified device connection lookup (Torez Smith) [1657401]
-- [documentation] documentation sysfs-bus-usb: Add rx_lanes and tx_lanes introduced in USB 3.2 (Torez Smith) [1657401]
-
-* Fri Mar 15 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1025.el7]
-- [netdrv] bnxt_en: Drop oversize TX packets to prevent errors (Jonathan Toppins) [1686144]
-- [netdrv] bnxt_en: Fix typo in firmware message timeout logic (Jonathan Toppins) [1686144]
-- [netdrv] bnxt_en: Wait longer for the firmware message response to complete (Jonathan Toppins) [1686144]
-- [netdrv] mlxsw: spectrum_router: Add extack message for RIF and VRF overflow (Ivan Vecera) [1678657]
-- [netdrv] mlxsw: spectrum: router: Add support for address validator notifier (Ivan Vecera) [1678657]
-- [netdrv] enic: fix checksum validation for IPv6 (Govindarajulu Varadarajan) [1631569]
-- [netdrv] cisco: enic: Replace GFP_ATOMIC with GFP_KERNEL (Govindarajulu Varadarajan) [1631569]
-- [netdrv] enic: do not call enic_change_mtu in enic_probe (Govindarajulu Varadarajan) [1631569]
-- [netdrv] use core min/max MTU checking (Govindarajulu Varadarajan) [1631569]
-- [netdrv] enic: handle mtu change for vf properly (Govindarajulu Varadarajan) [1631569]
-- [netdrv] xdp/qede: setup xdp_rxq_info and intro xdp_rxq_info_is_reg (Manish Chopra) [1679753]
-- [netdrv] xdp: make the stack take care of the tear down (Manish Chopra) [1679753]
-- [netdrv] bpf: add meta pointer for direct access (Manish Chopra) [1679753]
-- [netdrv] qede: VF XDP support (Manish Chopra) [1679753]
-- [netdrv] qed: VF XDP support (Manish Chopra) [1679753]
-- [netdrv] qed*: Change maximal number of queues (Manish Chopra) [1679753]
-- [netdrv] qede: Fix XDP memory leak on unload (Manish Chopra) [1679753]
-- [netdrv] qede: Support XDP adjustment of headers (Manish Chopra) [1679753]
-- [netdrv] qede: Add support for ingress headroom (Manish Chopra) [1679753]
-- [netdrv] bpf: add initial bpf tracepoints (Manish Chopra) [1679753]
-- [netdrv] qede: Correct XDP forward unmapping (Manish Chopra) [1679753]
-- [netdrv] bpf, xdp: drop rcu_read_lock from bpf_prog_run_xdp and move to caller (Manish Chopra) [1679753]
-- [netdrv] qede: Add support for XDP_TX (Manish Chopra) [1679753]
-- [netdrv] qede: Add basic XDP support (Manish Chopra) [1679753]
-- [infiniband] hfi1: Close race condition on user context disable and close (Alex Estrin) [1680069]
-- [hid] intel-ish-hid: add MSI interrupt support (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: fixes incorrect error handling (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: Enable Ice Lake mobile (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: using list_head for ipc write queue (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use resource-managed api (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: Enhance API to get ring buffer sizes (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use helper function to search client id (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: ishtp: add helper function for client search (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use helper function to access client buffer (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: ishtp: add helper functions for client buffer operation (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use helper function for private driver data set/get (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: ishtp: add helper function for driver data get/set (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: Enable Sunrise Point-H ish driver (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: tx_buf memory leak on probe/remove (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: Prevent loading of driver on Mehlow (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: remove redundant variable num_frags (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: ipc: register more pm callbacks to support hibernation (Tony Camuso) [1517616]
-- [hid] treewide: devm_kzalloc() -> devm_kcalloc() (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use put_device() instead of kfree() (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: Stop using a static local buffer in get_report() (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: Move header size check to inside the loop (Tony Camuso) [1517616]
-- [scsi] hpsa: add module parameter to disable irq affinity (Joseph Szczypek) [1644420]
-- [iommu] vt-d: Add debugfs support to show context internals (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Add debugfs support for Interrupt remapping (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Add debugfs support to show register contents (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Enable base Intel IOMMU debugfs support (Jerry Snitselaar) [1457023]
-- [kernel] iommu/vt-d: Update register definitions to VT-d 3.0 specification (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Relocate struct/function declarations to its header files (Jerry Snitselaar) [1457023]
-- [iommu] Enable debugfs exposure of IOMMU driver internals (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Handle domain agaw being less than iommu agaw (Jerry Snitselaar) [1686486]
-- [iommu] vt-d: Use memunmap to free memremap (Jerry Snitselaar) [1686486]
-- [iommu] amd/iommu: Fix Guest Virtual APIC Log Tail Address Register (Jerry Snitselaar) [1686486]
-- [iommu] amd: Return devid as alias for ACPI HID devices (Jerry Snitselaar) [1686486]
-- [iommu] amd: make sure TLB to be flushed before IOVA freed (Jerry Snitselaar) [1686486]
-- [iommu] amd: Fix schedule-while-atomic BUG in initialization code (Jerry Snitselaar) [1686486]
-- [iommu] vt-d: Allow to flush more than 4GB of device TLBs (Jerry Snitselaar) [1686486]
-- [iommu] iommu/amd: Fix IOMMU page flush when detach device from a domain (Suravee Suthikulpanit) [1672873]
-- [mm] swap: fix nr_rotate_swap leak in swapon() error case (Rafael Aquini) [1485248]
-- [mm] swap: use page-cluster as max window of VMA based swap readahead (Rafael Aquini) [1485248]
-- [kernel] mm: swap: don't use VMA based swap readahead if HDD is used as swap (Rafael Aquini) [1485248]
-- [mm] swap: add sysfs interface for VMA based swap readahead (Rafael Aquini) [1485248]
-- [mm] swap: VMA based swap readahead (Rafael Aquini) [1485248]
-- [mm] swap: fix swap readahead marking (Rafael Aquini) [1485248]
-- [mm] swap: add swap readahead hit statistics (Rafael Aquini) [1485248]
-- [mm] swap: add a simple detector for inappropriate swapin readahead (Rafael Aquini) [1485248]
-- [block] mtip32xx: fix memory corruption by initializing internal command header (Ming Lei) [1660292]
-- [block] blk-mq: complete req in softirq context in case of single queue (Ming Lei) [1631091]
-- [block] blk-mq: hold tag set lock before reinit queues (Ming Lei) [1638844]
-- [block] revert "blk-mq: fix hctx debugfs entry related race between update hw queues and cpu hotplug" (Ming Lei) [1638844]
-- [fs] cifs: fix for getdents with 4kb buffers (Leif Sahlberg) [1577640]
-- [fs] nfsd: deal with revoked delegations appropriately (Dave Wysochanski) [1552203]
-- [fs] vfs: Allocate anon_inode_inode in anon_inode_init() (Bill O'Donnell) [1504735]
-- [fs] remove now stale label in anon_inode_init() (Bill O'Donnell) [1504735]
-- [fs] Avoid userspace mounting anon_inodefs filesystem (Bill O'Donnell) [1504735]
-- [linux] Break up long walk of wait queue during wakeup (Larry Woodman) [1493845]
-- [kernel] nohz: Fix local_timer_softirq_pending() (Daniel Bristot de Oliveira) [1659332]
-- [kernel] nohz: Prevent a timer interrupt storm in tick_nohz_stop_sched_tick() (Daniel Bristot de Oliveira) [1659332]
-- [powerpc] livepatch: return -ERRNO values in save_stack_trace_tsk_reliable() (Joe Lawrence) [1658435]
-- [powerpc] livepatch: small cleanups in save_stack_trace_tsk_reliable() (Joe Lawrence) [1658435]
-- [powerpc] livepatch: relax reliable stack tracer checks for first-frame (Joe Lawrence) [1658435]
-- [powerpc] 64s: Make reliable stacktrace dependency clearer (Joe Lawrence) [1658435]
-- [powerpc] 64s: Clear on-stack exception marker upon exception return (Joe Lawrence) [1658435]
-- [powerpc] livepatch: Fix build error with kprobes disabled (Joe Lawrence) [1658435]
-- [powercap] intel_rapl: add support for Jacobsville (Steve Best) [1482403]
-- [x86] cpu: Add Atom Tremont (Jacobsville) (Steve Best) [1482403]
-- [powercap] intel_rapl: add Ice Lake mobile (Steve Best) [1483426]
-- [powercap] x86/cpu: Add Icelake model number (Steve Best) [1483426]
-- [s390] qeth: fix use-after-free in error path (Hendrik Brueckner) [1686041]
-- [s390] qeth: cancel close_dev work before removing a card (Hendrik Brueckner) [1686040]
-- [s390] qeth: conclude all event processing before offlining a card (Hendrik Brueckner) [1686039]
-- [s390] qeth: handle failure on workqueue creation (Hendrik Brueckner) [1686042]
-
-* Thu Mar 14 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1024.el7]
-- [netdrv] r8169: remove unneeded mmiowb barriers (Corinna Vinschen) [1646441]
-- [netdrv] revert "r8169: make use of xmit_more and __netdev_sent_queue" (Corinna Vinschen) [1646441]
-- [netdrv] revert "r8169: remove unneeded mmiowb barriers" (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Avoid pointer aliasing (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Load MAC address from device tree if present (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove rtl_wol_pll_power_down (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve WoL handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: enable EEE per default on RTL8168f (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add EEE support for RTL8168f (Corinna Vinschen) [1646441]
-- [netdrv] r8169: enable EEE per default on chip versions from RTL8168g (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add general EEE support for chip versions from RTL8168g (Corinna Vinschen) [1646441]
-- [netdrv] r8169: factor out PHY init sequence adjusting 10M and ALDPS (Corinna Vinschen) [1646441]
-- [netdrv] r8169: factor out disabling ALDPS (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve firmware handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove PCI DAC support (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rx buffer allocation (Corinna Vinschen) [1646441]
-- [netdrv] r8169: factor out getting ether_clk (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace mii_bus member with phy_device member in struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: reset chip synchronously in __rtl8169_resume (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add helpers for locking / unlocking the config registers (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl_pcie_state_l2l3_enable (Corinna Vinschen) [1646441]
-- [netdrv] r8169: initialize task workqueue only once (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded call in pcierr (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove rtl_get_events (Corinna Vinschen) [1646441]
-- [netdrv] r8169: load Realtek PHY driver module before r8169 (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't try to read counters if chip is in a PCI power-save state (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Add support for new Realtek Ethernet (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix WoL device wakeup enable (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve spurious interrupt detection (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix crash if CONFIG_DEBUG_SHIRQ is enabled (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded mmiowb barriers (Corinna Vinschen) [1646441]
-- [netdrv] realtek: Replace synchronize_sched() with synchronize_rcu() (Corinna Vinschen) [1646441]
-- [netdrv] r8169: make use of xmit_more and __netdev_sent_queue (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace macro TX_FRAGS_READY_FOR with a function (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use napi_consume_skb where possible (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify detecting chip versions with same XID (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove default chip versions (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove ancient GCC bug workaround in a second place (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve chip version identification (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify ocp functions (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove workaround for ancient gcc bug (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove manual padding in struct ring_info (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove "not PCI Express" message (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove print_mac_version (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use PCI_VDEVICE macro (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace event_slow with irq_mask (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unused interrupt sources (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use dev_get_drvdata where possible (Corinna Vinschen) [1646441]
-- [netdrv] r8169: merge rtl_irq_enable and rtl_irq_enable_all (Corinna Vinschen) [1646441]
-- [isdn] pci: add USR vendor id and use it in r8169 and w6692 driver (Corinna Vinschen) [1646441]
-- [netdrv] Convert phydev advertize and supported from u32 to link mode (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix broken Wake-on-LAN from S5 (poweroff) (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add support for Byte Queue Limits (Corinna Vinschen) [1646441]
-- [netdrv] r8169: handle all interrupt events in the hard irq handler (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix NAPI handling under high load (Corinna Vinschen) [1646441]
-- [netdrv] r8169: re-enable MSI-X on RTL8168g (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded call to netif_stop_queue in rtl8169_net_suspend (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify rtl8169_set_magic_reg (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Enable MSI-X on RTL8106e (Corinna Vinschen) [1646441]
-- [netdrv] r8169: set RX_MULTI_EN bit in RxConfig for 8168F-family chips (Corinna Vinschen) [1646441]
-- [netdrv] r8169: always autoneg on resume (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Disable clk during suspend / resume (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve a check in rtl_init_one (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl8169_irq_mask_and_ack (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use default watchdog timeout (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix autoneg issue on resume with RTL8168E (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove duplicated RTL8169s PHY initialization steps (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify RTL8169 PHY initialization (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Get and enable optional ether_clk clock (Corinna Vinschen) [1646441]
-- [netdrv] r8169: enable ASPM on RTL8106E (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Align ASPM/CLKREQ setting function with vendor driver (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Clear RTL_FLAG_TASK_*_PENDING when clearing RTL_FLAG_TASK_ENABLED (Corinna Vinschen) [1646441]
-- [netdrv] r8169: set TxConfig register after TX / RX is enabled, just like RxConfig (Corinna Vinschen) [1646441]
-- [kernel] r8169: add support for NCube 8168 network card (Corinna Vinschen) [1646441]
-- [netdrv] r8169: set RxConfig after tx/rx is enabled for RTL8169sb/8110sb devices (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't use MSI-X on RTL8106e (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't use MSI-X on RTL8168g (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't configure max jumbo frame size per chip version (Corinna Vinschen) [1646441]
-- [netdrv] realtek: use core min/max MTU checking (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't configure csum function per chip version (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify interrupt handler (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't include asm headers directly (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove version info (Corinna Vinschen) [1646441]
-- [netdrv] r8169: restore previous behavior to accept BIOS WoL settings (Corinna Vinschen) [1646441]
-- [netdrv] r8169: power down chip in probe (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't read chip phy status register (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove mii_if_info member from struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove rtl8169_set_speed_xmii (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_speed_down / phy_speed_up (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_mii_ioctl (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_ethtool_nway_reset (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_ethtool_(g|s)et_link_ksettings (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace open-coded PHY soft reset with genphy_soft_reset (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_resume/phy_suspend (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add basic phylib support (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix runtime suspend (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove old PHY reset hack (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove TBI 1000BaseX support (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use standard debug output functions (Corinna Vinschen) [1646441]
-- [netdrv] r8169: reject unsupported WoL options (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't check WoL when powering down PHY and interface is down (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve saved_wolopts handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve phy initialization when resuming (Corinna Vinschen) [1646441]
-- [netdrv] r8169: enable ASPM on RTL8168E-VL (Corinna Vinschen) [1646441]
-- [netdrv] r8169: align ASPM entry latency setting with vendor driver (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Reinstate ASPM Support (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Don't disable ASPM in the driver (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Fix netpoll oops (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix network error on resume from suspend (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix powering up RTL8168h (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace get_protocol with vlan_get_protocol (Corinna Vinschen) [1646441]
-- [netdrv] r8169: avoid potentially misaligned access when getting mac address (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve PCI config space access (Corinna Vinschen) [1646441]
-- [netdrv] r8169: drop rtl_generic_op (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace longer if statements with switch statements (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify code by using ranges in switch clauses (Corinna Vinschen) [1646441]
-- [netdrv] r8169: drop member pll_power_ops from struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: merge r810x_pll_power_down/up into r8168_pll_power_down/up (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove 810x_phy_power_up/down (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded check in r8168_pll_power_down (Corinna Vinschen) [1646441]
-- [netdrv] r8169: move common initializations to tp->hw_start (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove calls to rtl_set_rx_mode (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify rtl_hw_start_8169 (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve handling of CPCMD quirk mask (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve CPlusCmd handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace magic number for INTT mask with a constant (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl8169_set_features (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded call to __rtl8169_set_features in rtl_open (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't use netif_info et al before net_device has been registered (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove jumbo_tx_csum from chip config struct (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve pci region handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: drop member txd_version from struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl8169_get_mac_version (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't display tp->mmio_addr address (Corinna Vinschen) [1646441]
-- [netdrv] r8169: drop member opts1_mask from struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: change interrupt handler argument type (Corinna Vinschen) [1646441]
-- [netdrv] r8169: change argument type of counters handling functions (Corinna Vinschen) [1646441]
-- [netdrv] r8169: change hw_start argument type (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove rtl8169_map_to_asic (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace rx_buf_sz with a constant (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded check in rtl8169_rx_fill (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl8169_init_ring (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify rtl8169_alloc_rx_data (Corinna Vinschen) [1646441]
-- [netdrv] r8169: switch to napi_schedule_irqoff (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use constant NAPI_POLL_WAIT (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use skb_copy_to_linear_data in rtl8169_try_rx_copy (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove member align from struct rtl_cfg_info (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unused member features from struct (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace magic numbers with PCI MRRS constant (Corinna Vinschen) [1646441]
-- [uapi] pci: Add two more values for PCIe Max_Read_Request_Size (Corinna Vinschen) [1646441]
-- [netdrv] phy: simplify genphy_config_eee_advert (Ivan Vecera) [1685646]
-- [netdrv] phy: add register modifying helpers returning 1 on change (Ivan Vecera) [1685646]
-- [netdrv] phy: make use of new MMD accessors (Ivan Vecera) [1685646]
-- [kernel] phy: provide full set of accessor functions to MMD registers (Ivan Vecera) [1685646]
-- [netdrv] phy: use unlocked accessors for indirect MMD accesses (Ivan Vecera) [1685646]
-- [netdrv] phy: fix wrong mask to phy_modify() (Ivan Vecera) [1685646]
-- [netdrv] phy: fix wrong masks to phy_modify() (Ivan Vecera) [1685646]
-- [netdrv] phy: Restore phy_resume() locking assumption (Ivan Vecera) [1685646]
-- [netdrv] phy: Fix the issue that netif always links up after resuming (Ivan Vecera) [1685646]
-- [kernel] phy: add helpers for setting/clearing bits in PHY registers (Ivan Vecera) [1685646]
-- [netdrv] phy: Have __phy_modify return 0 on success (Ivan Vecera) [1685646]
-- [netdrv] phy: convert read-modify-write to phy_modify() (Ivan Vecera) [1685646]
-- [netdrv] phy: add phy_modify() accessor (Ivan Vecera) [1685646]
-- [netdrv] phy: add paged phy register accessors (Ivan Vecera) [1685646]
-- [kernel] phy: add unlocked accessors (Ivan Vecera) [1685646]
-- [netdrv] mdiobus: add unlocked accessors (Ivan Vecera) [1685646]
-- [netdrv] phy: fix resume handling (Ivan Vecera) [1685646]
-- [netdrv] phy: Avoid deadlock during phy_error() (Ivan Vecera) [1685646]
-- [netdrv] phy: fix sign type error in genphy_config_eee_advert (Ivan Vecera) [1685646]
-- [netdrv] phy: add an option to disable EEE advertisement (Ivan Vecera) [1685646]
-- [trace] phy: add trace events for mdio accesses (Ivan Vecera) [1685646]
-- [netdrv] phy: Trigger state machine on state change and not polling (Ivan Vecera) [1685646]
-- [netdrv] phy: make some bits preserved while setup forced mode (Ivan Vecera) [1685646]
-- [netdrv] phy: Move PHY PM operations into phy_device (Ivan Vecera) [1685646]
-- [netdrv] phy: Make sure phy_start() always re-enables the phy interrupts (Ivan Vecera) [1685646]
-
-* Thu Mar 14 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1023.el7]
-- [netdrv] nfp: flower: fix cb_ident duplicate in indirect block register (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: ensure TCP flags can be placed in IPv6 frame (Pablo Cascon) [1637991]
-- [netdrv] nfp: convert to DEFINE_SHOW_ATTRIBUTE (Pablo Cascon) [1637991]
-- [netdrv] nfp: report more info when reconfiguration fails (Pablo Cascon) [1637991]
-- [netdrv] nfp: add offset to all TLV parsing errors (Pablo Cascon) [1637991]
-- [netdrv] nfp: add offloads on representors (Pablo Cascon) [1637991]
-- [netdrv] nfp: add locking around representor changes (Pablo Cascon) [1637991]
-- [netdrv] nfp: run don't require Qdiscs on representor netdevs (Pablo Cascon) [1637991]
-- [netdrv] nfp: run representor TX locklessly (Pablo Cascon) [1637991]
-- [netdrv] nfp: avoid oversized TSO headers with metadata prepend (Pablo Cascon) [1637991]
-- [netdrv] nfp: correct descriptor offsets in presence of metadata (Pablo Cascon) [1637991]
-- [netdrv] nfp: move queue variable init (Pablo Cascon) [1637991]
-- [netdrv] nfp: move temporary variables in nfp_net_tx_complete() (Pablo Cascon) [1637991]
-- [netdrv] nfp: copy only the relevant part of the TX descriptor for frags (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: prevent offload if rhashtable insert fails (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: release metadata on offload failure (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: remove unnecessary code in flow lookup (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: remove TC egdev offloads (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: offload tunnel decap rules via indirect TC blocks (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: increase scope of netdev checking functions (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: allow non repr netdev offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: use the new __netdev_tx_sent_queue() BQL optimisation (Pablo Cascon) [1637991]
-- [netdrv] nfp: parse vNIC TLV capabilities at alloc time (Pablo Cascon) [1637991]
-- [netdrv] nfp: pass ctrl_bar pointer to nfp_net_alloc (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: include geneve as supported offload tunnel type (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use geneve and vxlan helpers (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use the common netdev notifier (Pablo Cascon) [1637991]
-- [netdrv] nfp: register a notifier handler in a central location for the device (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: make nfp_fl_lag_changels_event() void (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: don't try to nack device unregister events (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: remove unnecessary iteration over devices (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add ipv6 set flow label and hop limit offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add ipv4 set ttl and tos offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use offsets provided by pedit instead of index for ipv6 (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix multiple keys per pedit action (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix pedit set actions for multiple partial masks (Pablo Cascon) [1637991]
-- [netdrv] nfp: devlink port split support for 1x100G CXP NIC (Pablo Cascon) [1637991]
-- [netdrv] nfp: replace long license headers with SPDX (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use host context count provided by firmware (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use stats array instead of storing stats per flow (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use rhashtable for flow caching (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use rhashtable for flow caching (Pablo Cascon) [1637991]
-- [netdrv] nfp: avoid soft lockups under control message storm (Pablo Cascon) [1637991]
-- [netdrv] nfp: allow apps to request larger MTU on control vNIC (Pablo Cascon) [1637991]
-- [netdrv] nfp: warn on experimental TLV types (Pablo Cascon) [1637991]
-- [netdrv] nfp: remove ndo_poll_controller (Pablo Cascon) [1637991]
-- [netdrv] nfp: provide a better warning when ring allocation fails (Pablo Cascon) [1637991]
-- [netdrv] nfp: report FW vNIC stats in interface stats (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: reject tunnel encap with ipv6 outer headers for offloading (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix vlan match by checking both vlan id and vlan pcp (Pablo Cascon) [1637991]
-- [netdrv] nfp: replace spin_lock_bh with spin_lock in tasklet callback (Pablo Cascon) [1637991]
-- [netdrv] nfp: separate VXLAN and GRE feature handling (Pablo Cascon) [1637991]
-- [netdrv] nfp: validate rtsym accesses fall within the symbol (Pablo Cascon) [1637991]
-- [netdrv] nfp: prefix rtsym error messages with symbol name (Pablo Cascon) [1637991]
-- [netdrv] nfp: fix readq on absolute RTsyms (Pablo Cascon) [1637991]
-- [netdrv] nfp: wait for posted reconfigs when disabling the device (Pablo Cascon) [1637991]
-- [netdrv] nfp: make RTsym users handle absolute symbols correctly (Pablo Cascon) [1637991]
-- [netdrv] nfp: support access to absolute RTsyms (Pablo Cascon) [1637991]
-- [netdrv] nfp: convert all RTsym users to use new read/write helpers (Pablo Cascon) [1637991]
-- [netdrv] nfp: convert existing RTsym helpers to full target decoding (Pablo Cascon) [1637991]
-- [netdrv] nfp: pass cpp_id to nfp_cpp_map_area() (Pablo Cascon) [1637991]
-- [netdrv] nfp: add RTsym access helpers (Pablo Cascon) [1637991]
-- [netdrv] nfp: add basic errors messages to target logic (Pablo Cascon) [1637991]
-- [netdrv] nfp: save the MU locality field offset (Pablo Cascon) [1637991]
-- [netdrv] nfp: add support for indirect HWinfo lookup (Pablo Cascon) [1637991]
-- [netdrv] nfp: interpret extended FW load result codes (Pablo Cascon) [1637991]
-- [netdrv] nfp: attempt FW load from flash (Pablo Cascon) [1637991]
-- [netdrv] nfp: encapsulate NSP command arguments into structs (Pablo Cascon) [1637991]
-- [netdrv] nfp: clean up return types in kdoc comments (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add geneve option match offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add geneve option push action offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: allow matching on ipv4 UDP tunnel tos and ttl (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: set ip tunnel ttl from encap action (Pablo Cascon) [1637991]
-- [netdrv] nfp: fix variable dereferenced before check in nfp_app_ctrl_rx_raw() (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix port metadata conversion bug (Pablo Cascon) [1637991]
-- [netdrv] nfp: allow control message reception on data queues (Pablo Cascon) [1637991]
-- [netdrv] nfp: move repr handling on RX path (Pablo Cascon) [1637991]
-- [netdrv] nfp: protect from theoretical size overflows on HW descriptor ring (Pablo Cascon) [1637991]
-- [netdrv] nfp: restore correct ordering of fields in rx ring structure (Pablo Cascon) [1637991]
-- [netdrv] nfp: don't try to register XDP rxq structures on control queues (Pablo Cascon) [1637991]
-- [netdrv] nfp: don't fail probe on pci_sriov_set_totalvfs() errors (Pablo Cascon) [1637991]
-- [netdrv] nfp: avoid buffer leak when FW communication fails (Pablo Cascon) [1637991]
-- [netdrv] nfp: bring back support for offloading shared blocks (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: ensure dead neighbour entries are not offloaded (Pablo Cascon) [1637991]
-- [netdrv] nfp: add .ndo_init() and .ndo_uninit() callbacks (Pablo Cascon) [1637991]
-- [netdrv] nfp: avoid using getnstimeofday64() (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: enabled offloading of Team LAG (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: offload tos and tunnel flags for ipv4 udp tunnels (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: extract ipv4 udp tunnel ttl from route (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: ignore checksum actions when performing pedit actions (Pablo Cascon) [1637991]
-- [netdrv] nfp: populate bus-info on representors (Pablo Cascon) [1637991]
-- [netdrv] nfp: make use of napi_consume_skb() (Pablo Cascon) [1637991]
-- [netdrv] nfp: implement netpoll ndo (thus enabling netconsole) (Pablo Cascon) [1637991]
-- [netdrv] nfp: fail probe if serial or interface id is missing (Pablo Cascon) [1637991]
-- [netdrv] nfp: expose ring stats of inactive rings via ethtool (Pablo Cascon) [1637991]
-- [netdrv] nfp: stop limiting VFs to 0 (Pablo Cascon) [1637991]
-- [netdrv] nfp: cast sizeof() to int when comparing with error code (Pablo Cascon) [1637991]
-- [netdrv] nfp: reject binding to shared blocks (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix mpls ether type detection (Pablo Cascon) [1637991]
-- [netdrv] nfp: handle cls_flower command default case (Pablo Cascon) [1637991]
-- [netdrv] nfp: remove phys_port_name on flower's vNIC (Pablo Cascon) [1637991]
-- [netdrv] nfp: include all ring counters in interface stats (Pablo Cascon) [1637991]
-- [netdrv] nfp: don't pad strings in nfp_cpp_resource_find() to avoid gcc 8 warning (Pablo Cascon) [1637991]
-- [netdrv] nfp: allow apps to add extra stats to ports (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: report statistics from RED offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: add simple RED offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: add helpers for configuring queue marking levels (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: enable advanced queuing on demand (Pablo Cascon) [1637991]
-- [netdrv] nfp: prefix vNIC phys_port_name with 'n' (Pablo Cascon) [1637991]
-- [netdrv] nfp: return -EOPNOTSUPP from .ndo_get_phys_port_name for VFs (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: compute link aggregation action (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: implement host cmsg handler for LAG (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: monitor and offload LAG groups (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add per repr private data for LAG offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: check for/turn on LAG support in firmware (Pablo Cascon) [1637991]
-- [netdrv] nfp: nfpcore: add rtsym writing function (Pablo Cascon) [1637991]
-- [netdrv] nfp: add ndo_set_mac_address for representors (Pablo Cascon) [1637991]
-- [netdrv] nfp: assign vNIC id as phys_port_name of vNICs which are not ports (Pablo Cascon) [1637991]
-- [netdrv] nfp: use split in naming of PCIe PF ports (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: force Ethternet port up (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: spawn port netdevs (Pablo Cascon) [1637991]
-- [netdrv] nfp: add devlink_eswitch_mode_set callback (Pablo Cascon) [1637991]
-- [netdrv] nfp: add app pointer to port representors (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: create project-specific vNIC structure (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: add initial active buffer management NIC skeleton (Pablo Cascon) [1637991]
-- [netdrv] nfp: core: allow 4-byte aligned accesses to Memory Units (Pablo Cascon) [1637991]
-- [netdrv] nfp: add shared buffer configuration (Pablo Cascon) [1637991]
-- [netdrv] nfp: add support for per-PCI PF mailbox (Pablo Cascon) [1637991]
-- [netdrv] nfp: move rtsym helpers to pf code (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix error path during representor creation (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: ignore duplicate cb requests for same rule (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: support offloading multiple rules with same cookie (Pablo Cascon) [1637991]
-- [netdrv] nfp: print PCIe link bandwidth on probe (Pablo Cascon) [1637991]
-- [netdrv] nfp: reset local locks on init (Pablo Cascon) [1637991]
-
-* Wed Mar 13 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1022.el7]
-- [infiniband] usnic_verbs: fix deadlock (Govindarajulu Varadarajan) [1569216]
-- [infiniband] ib/usnic: Fix locking when unregistering (Govindarajulu Varadarajan) [1569216]
-- [infiniband] ib/usnic: Fix potential deadlock (Govindarajulu Varadarajan) [1569216]
-- [netdrv] ib/mlx5: Fix the locking of SRQ objects in ODP events (Alaa Hleihel) [1683975]
-- [rdma] ib/mlx5: Remove dead code (Alaa Hleihel) [1683975]
-- [infiniband] ib/mlx5: Ranges in implicit ODP MR inherit its write access (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: Return success for PAGE_FAULT_RESUME in internal error state (Alaa Hleihel) [1683975]
-- [infiniband] ib/mlx5: Lock QP during page fault handling (Alaa Hleihel) [1683975]
-- [kernel] mlx5: Enumerate page fault types (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: Add interface to hold and release core resources (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: Release resource on error flow (Alaa Hleihel) [1683975]
-- [infiniband] ib/mlx5: Do not use hw_access_flags for be and CPU data (Alaa Hleihel) [1683975]
-- [infiniband] ib/mlx5: Remove set but not used variable (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Fix GRE key by controlling port tunnel entropy calculation (Alaa Hleihel) [1683975]
-- [kernel] mlx5: Introduce tunnel entropy control in PCMR register (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: Use read-modify-write when changing PCMR register values (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Don't overwrite pedit action when multiple pedit used (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Update hw flows when encap source mac changed (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Use the inner headers to determine tc/pedit offload limitation on decap flows (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Properly set steering match levels for offloaded TC decap rules (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: ethtool, Add ethtool support for 50Gbps per lane link modes (Alaa Hleihel) [1590191]
-- [infiniband] ib/mlx5: Add support for 50Gbps per lane link modes (Alaa Hleihel) [1590191]
-- [netdrv] mlx5: Add support to ext_* fields introduced in Port Type and Speed register (Alaa Hleihel) [1590191]
-- [kernel] mlx5: Add new fields to Port Type and Speed register (Alaa Hleihel) [1590191]
-- [netdrv] mlx5: Refactor queries to speed fields in Port Type and Speed register (Alaa Hleihel) [1590191]
-- [infiniband] ib/mlx5: Add 2X width support to query_port (Alaa Hleihel) [1590191]
-- [infiniband] ib/mlx5: Add HDR speed support to query port (Alaa Hleihel) [1590191]
-- [kernel] ib/mlx5: Report CapabilityMask2 in ib_query_port (Alaa Hleihel) [1590191]
-- [infiniband] ib/core: Add new IB rates (Alaa Hleihel) [1590191]
-- [rdma] ib/core: Add 2X port width (Alaa Hleihel) [1590191]
-- [rdma] ib/core: Add CapabilityMask2 to port attributes (Alaa Hleihel) [1590191]
-- [infiniband] rdma/core: Validate port number in query_pkey verb (Kamal Heib) [1657631]
-- [infiniband] rdma/srp: Propagate ib_post_send() failures to the SCSI mid-layer (Kamal Heib) [1657631]
-- [infiniband] rdma/srpt: Fix a use-after-free in the channel release code (Kamal Heib) [1657631]
-- [net] xprtrdma: Make sure Send CQ is allocated on an existing compvec (Kamal Heib) [1657631]
-- [net] svcrdma: Remove max_sge check at connect time (Kamal Heib) [1674030 1657631]
-- [infiniband] rdma/srp: Rework SCSI device reset handling (Kamal Heib) [1657631]
-- [infiniband] ib/uverbs: Fix OOPs in uverbs_user_mmap_disassociate (Kamal Heib) [1657631]
-- [infiniband] ib/ipoib: Fix for use-after-free in ipoib_cm_tx_start (Kamal Heib) [1657631]
-- [infiniband] ib/uverbs: Fix OOPs upon device disassociation (Kamal Heib) [1657631]
-- [infiniband] rdma/umem: Add missing initialization of owning_mm (Kamal Heib) [1657631]
-- [infiniband] rdma/vmw_pvrdma: Return the correct opcode when creating WR (Kamal Heib) [1667609 1657631]
-- [net] xprtrdma: Double free in rpcrdma_sendctxs_create() (Kamal Heib) [1657631]
-- [infiniband] rdma/nldev: Don't expose unsafe global rkey to regular user (Kamal Heib) [1657631]
-- [infiniband] ib/ipoib: drop useless LIST_HEAD (Kamal Heib) [1657631]
-- [net] xprtrdma: Ensure MRs are DMA-unmapped when posting LOCAL_INV fails (Kamal Heib) [1657631]
-- [infiniband] ib/umad: Avoid destroying device while it is accessed (Kamal Heib) [1657631]
-- [infiniband] ib/umad: Simplify and avoid dynamic allocation of class (Kamal Heib) [1657631]
-- [infiniband] rdma/iwcm: Don't copy past the end of dev_name() string (Kamal Heib) [1657631]
-- [infiniband] ib/rxe: Make counters thread safe (Kamal Heib) [1657631]
-- [infiniband] rdma/core: Delete RoCE GID in hw when corresponding IP is deleted (Kamal Heib) [1657631]
-- [infiniband] rdma/vmw_pvrdma: Use atomic memory allocation in create AH (Kamal Heib) [1657631]
-- [infiniband] ib/rxe: Fix incorrect cache cleanup in error flow (Kamal Heib) [1657631]
-- [rdma] uverbs: Fix typo in string concatenation macro (Kamal Heib) [1657631]
-- [infiniband] rdma/core: Sync unregistration with netlink commands (Kamal Heib) [1657631]
-- [infiniband] ib/mlx5: Fix bad flow upon DEVX mkey creation (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Add support for ODP for DEVX indirection mkey (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Manage indirection mkey upon DEVX flow for ODP (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: DEVX handling for indirection MKEY (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Allow XRC INI usage via verbs in DEVX context (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Allocate the per-port Q counter shared when DEVX is supported (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Use the correct commands for UMEM and UCTX allocation (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Use uid as part of alloc/dealloc transport domain (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Introduce uid as part of alloc/dealloc transport domain (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Allow XRC usage via verbs in DEVX context (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Update the supported DEVX commands (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Enforce DEVX privilege by firmware (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Enable modify and query verbs objects via DEVX (Kamal Heib) [1685803]
-- [infiniband] ib/core: Enable getting an object type from a given uobject (Kamal Heib) [1685803]
-- [infiniband] ib/core: Introduce UVERBS_IDR_ANY_OBJECT (Kamal Heib) [1685803]
-- [infiniband] mlx5: Update mlx5_ifc with DEVX UCTX capabilities bits (Kamal Heib) [1685803]
-- [infiniband] mlx5: Add shared Q counter bits (Kamal Heib) [1685803]
-- [infiniband] rdma/mlx5: Use stages for callback to setup and release DEVX (Kamal Heib) [1685803]
-- [infiniband] rdma/uverbs: Mark ioctl responses with UVERBS_ATTR_F_VALID_OUTPUT (00/15) (Kamal Heib) [1663032]
-- [infiniband] ib/core: uverbs copy to struct or zero helper (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Implement an ioctl that can call write and write_ex handlers (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use only attrs for the write() handler signature (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Do not check the input length on create_cq/qp paths (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use the iterator for ib_uverbs_unmarshall_recv() (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Add a simple iterator interface for reading the command (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Simplify ib_uverbs_ex_query_device (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Fill in the response for IB_USER_VERBS_EX_CMD_MODIFY_QP (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_request() and core for write_ex handlers (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_request() for request copying (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_response() for remaining response copying (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Get rid of the 'callback' scheme in the compat path (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: fix ptr_ret.cocci warnings (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_attr_bundle to pass ucore for write/write_ex (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Remove out_len checks that are now done by the core (Kamal Heib) [1663032]
-- [rdma] uverbs: Use uverbs_attr_bundle to pass udata for ioctl() (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_attr_bundle to pass udata for write (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_attr_bundle to pass udata for write_ex (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Prohibit write() calls with too small buffers (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Add structure size info to write commands (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Do not pass ib_uverbs_file to ioctl methods (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Make write() handlers return 0 on success (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Replace ib_uverbs_file with uverbs_attr_bundle for write (Kamal Heib) [1663032]
-- [uapi] rdma/uverbs: Add missing driver_data (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Check for NULL driver methods for every write call (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Make all the method functions in uverbs_cmd static (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Convert the write interface to use uverbs_api (Kamal Heib) [1663032]
-- [infiniband] rdma/verbs: Store the write/write_ex uapi entry points in the uverbs_api (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Require all objects to have a driver destroy function (Kamal Heib) [1663032]
-- [infiniband] rdma/mlx5: Use the uapi disablement APIs instead of code (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Add helpers to mark uapi functions as unsupported (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Factor out the add/get pattern into a helper (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use a linear list to describe the compiled-in uapi (Kamal Heib) [1663032]
-- [infiniband] rdma/mlx5: Do not generate the uabi specs unconditionally (Kamal Heib) [1663032]
-
-* Tue Mar 12 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1021.el7]
-- [x86] kvm: nvmx: NMI-window and interrupt-window exiting should wake L2 from HLT (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: nsvm: fix switch to guest mmu (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Fix race in emulated page table writes (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx/nsvm: Fix bug which sets vcpu->arch.tsc_offset to L1 tsc_offset (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: reintroduce pte_list_remove, but including mmu_spte_clear_track_bits (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: rename pte_list_remove to __pte_list_remove (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: check if MMU reconfiguration is needed in init_kvm_nested_mmu() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: check if tdp/shadow MMU reconfiguration is needed (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/nvmx: introduce source data cache for kvm_init_shadow_ept_mmu() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: make space for source data caching in struct kvm_mmu (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: get rid of redundant kvm_mmu_setup() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: introduce guest_mmu (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu.c: add kvm_mmu parameter to kvm_mmu_free_roots() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu.c: set get_pdptr hook in kvm_init_shadow_ept_mmu() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: make vcpu->mmu a pointer to the current MMU (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: move vmcs12 EPTP consistency check to check_vmentry_prereqs() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: move host EFER consistency checks to VMFail path (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: return 0 in case kvm_mmu_memory_cache has min number of objects (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Clear reserved bits of #DB exit qualification (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: restore host state in nested_vmx_vmexit for VMFail (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: fix entry with pending interrupt if APICv is enabled (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: hide flexpriority from guest when disabled at the module level (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: check for existence of secondary exec controls before accessing (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Wake blocked vCPU in guest-mode if pending interrupt in virtual APICv (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: don't reset root in kvm_mmu_setup() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/lapic: always disable MMIO interface in x2APIC mode (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix loss of pending IRQ/NMI before entering L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Skip pae_root shadow allocation if tdp enabled (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: Combine flushing remote tlb in mmu_set_spte() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add multi-entry LRU cache for previous CR3s (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Support selectively freeing either current or previous MMU root (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add a root_hpa parameter to kvm_mmu->invlpg() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add ability to skip TLB flush when switching CR3 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Use fast CR3 switch for nested VMX (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Support resetting the MMU context without resetting roots (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add support for fast CR3 switch across different MMU modes (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Introduce KVM_REQ_LOAD_CR3 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Introduce kvm_mmu_calc_root_page_role() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add fast CR3 switch code path (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Avoid taking MMU lock in kvm_mmu_sync_roots if no sync is needed (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Make sync_page() flush remote TLBs once only (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Restore exit qual for VM-entry failure due to MSR loading (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Nested VM-entry prereqs for event inj (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Don't expose private memslots to L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Add guest_mode to kvm_mmu_page_role (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Basic APIC virtualization controls have three settings (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Eliminate APIC access page sharing between L1 and L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Introduce lapic_mode enumeration (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Refactor mmu_free_roots() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: move MSR_IA32_TSC handling to x86.c (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: Properly update 'tsc_offset' to represent the running guest (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] Add check for APIC access address for vmentry of L2 guests (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Do not load EOI-exitmap while running L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: don't configure EPT identity map for unrestricted guest (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Update the exit_qualification access bits while walking an address (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Enforce NMI controls on vmentry of L2 guests (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Don't halt vcpu when L1 is injecting events to L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: shadow more fields that are read/written on every vmexits (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix bug of injecting L2 exception into L1 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm mmu: check pending exception before injecting APF (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: svm: prepare for new bit definition in nested_ctl (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix vmx_check_nested_events() return value in case an event was reinjected to L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: ioapic: Preserve read-only values in the redirection table (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: ioapic: Clear Remote IRR when entry is switched to edge-triggered (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: ioapic: Remove redundant check for Remote IRR in ioapic_set_irq (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: ioapic: Don't fire level irq when Remote IRR set (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix mmu context after VMLAUNCH/VMRESUME failure (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Validate the IA32_BNDCFGS on nested VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: extend usage of RET_MMIO_PF_* constants (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] arch/x86: remove redundant null checks before kmem_cache_destroy (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: cleanup init_rmode_identity_map() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: free_page can handle NULL (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix nested #PF intends to break L1's vmlauch/vmresume (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Handle deferred early VMLAUNCH/VMRESUME failure properly (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Handle VMLAUNCH/VMRESUME failure properly (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Remove nested_vmx_succeed after successful VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: async_pf: Fix #DF due to inject "Page not Present" and "Page Ready" exceptions simultaneously (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Validate the virtual-APIC address on nested VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix trying to cancel vmlauch/vmresume (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: use kvm_event_needs_reinjection (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Fix loss of exception which has not yet been injected (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: fix use of L1 MMIO areas in nested guests (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Avoid guest page table walk when gpa_available is set (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: simplify ept_misconfig (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Disallow illegal IA32_APIC_BASE MSR values (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Bail out immediately if there is no available mmu page (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: validate eptp pointer (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Add support for fast unprotection of nested guest page tables (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: svm: Limit PFERR_NESTED_GUEST_PAGE error_code check to L1 guest (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: fixes to nested virt interrupt injection (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: do not fill vm_exit_intr_error_code in prepare_vmcs12 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Disallow VM-entry in MOV-SS shadow (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: async_pf: Force a nested vmexit if the injected #PF is async_pf (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: async_pf: Add L1 guest async_pf #PF vmexit handler (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Simplify kvm_x86_ops->queue_exception parameter list (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix nested_vmx_check_msr_bitmap_controls (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Validate the I/O bitmaps on nested VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Don't set vmcs12 to "launched" when VMLAUNCH fails (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Validate CR3 target count on nested VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Flush TLB when the APIC-access address changes (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: VMCLEAR should not cause the vCPU to shut down (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Use the hardware provided GPA instead of page walk (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: svm: Use the hardware provided GPA instead of page walk (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: svm: Add support for additional SVM NPF error codes (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: CPUID.01H:EDX.APIC[bit 9] should mirror IA32_APIC_BASE[11] (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fetch VM_INSTRUCTION_ERROR from vmcs02 on vmx->fail (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/x86: Replace smp_mb() with smp_store_mb/release() in the walk_shadow_page_lockless_begin/end() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: coalesce more page zapping in mmu_sync_children (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: move zap/flush to kvm_mmu_get_page (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: invert return value of mmu.sync_page and *kvm_sync_page* (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: cleanup __kvm_sync_page and its callers (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: use kvm_sync_page in kvm_sync_pages (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: move TLB flush out of __kvm_sync_page (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: introduce kvm_mmu_flush_or_zap (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Fix ubsan warnings (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Remove unused parameter parent_pte from kvm_mmu_get_page() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Use for_each_rmap_spte macro instead of pte_list_walk() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Move parent_pte handling from kvm_mmu_get_page() to link_shadow_page() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Move initialization of parent_ptes out from kvm_mmu_alloc_page() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Make mmu_set_spte() return emulate value (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Add helper function to clear a bit in unsync child bitmap (Vitaly Kuznetsov) [1565739 1497611]
-
-* Mon Mar 11 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1020.el7]
-- [scsi] fnic: Remove set but not used variable 'vdev' (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: no need to check return value of debugfs_create functions (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Update fnic driver version to 1.6.0.47 (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Enable fnic devcmd2 interface (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Adding devcmd2 init and posting interfaces (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Add devcmd2 initialization helpers (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: fnic devcmd2 controller definitions (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: fnic devcmd2 interface definitions (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Impose upper limit on max. # of CQs processed per intr (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: RQ enable and then post descriptors (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: delaying vnic dev enable till after req intr (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Warn when calling done for IO not issued to fw (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Failing to queue aborts due to Q full cause terminate driver timeout (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Add port speed stat to fnic debug stats (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: use fnic_lock to guard fnic->state_flags (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: vnic_rq_clean change BUG_ON to WARN_ON (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: change fnic queue depth to 256 (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: support to display 20G port speed (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Use vzalloc (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: fix fnic_scsi_host_{start, end}_tag (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: replace gross legacy tag hack with blk-mq hack (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: switch to generic DMA API (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: fix spelling mistake in fnic stats "Abord" -> "Abort" (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: use kzalloc in fnic_fcoe_process_vlan_resp (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: add a space after p in printf format (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Fix coccinelle warnings (Govindarajulu Varadarajan) [1631570]
-- [scsi] qedi: Add ep_state for login completion on un-reachable targets (Nilesh Javali) [1643540]
-- [scsi] qedi: Update driver version to 8.33.0.21 (Nilesh Javali) [1643540]
-- [scsi] qedi: Move LL2 producer index processing in BH (Nilesh Javali) [1643540]
-- [scsi] qedi: add module param to set ping packet size (Nilesh Javali) [1643540]
-- [scsi] qedi: Add packet filter in light L2 Rx path (Nilesh Javali) [1643540]
-- [scsi] qedi: Check for session online before getting iSCSI TLV data (Nilesh Javali) [1643540]
-- [scsi] qedi: Allocate IRQs based on msix_cnt (Nilesh Javali) [1643540]
-- [scsi] qedi: Replace PAGE_SIZE with QEDI_PAGE_SIZE (Nilesh Javali) [1643540]
-- [scsi] qedi: Use zeroing allocator instead of allocator/memset (Nilesh Javali) [1643540]
-- [scsi] qedi: Fix spelling mistake "OUSTANDING" -> "OUTSTANDING" (Nilesh Javali) [1643540]
-- [scsi] qedi: Cleanup redundant QEDI_PAGE_SIZE macro definition (Nilesh Javali) [1643540]
-- [scsi] qedi: Fix a potential buffer overflow (Nilesh Javali) [1643540]
-- [scsi] qedi: Send driver state to MFW (Nilesh Javali) [1643540]
-- [scsi] qedi: tidy up a size calculation (Nilesh Javali) [1643540]
-- [scsi] qedi: Fix misleading indentation (Nilesh Javali) [1643540]
-- [scsi] treewide: kzalloc() -> kcalloc() (Nilesh Javali) [1643540]
-- [scsi] qedf: NULL check before some freeing functions is not needed (Nilesh Javali) [1643538]
-- [scsi] qedf: Send the driver state to MFW (Nilesh Javali) [1643538]
-- [target] scsi: target: make the pi_prot_format ConfigFS path readable (Maurizio Lombardi) [1684471]
-- [target] scsi: target/iscsi: fix error msg typo when create lio_qr_cache failed (Maurizio Lombardi) [1684471]
-- [target] scsi: target/tcmu: Fix queue_cmd_ring() declaration (Maurizio Lombardi) [1684471]
-- [target] scsi: target: replace fabric_ops.name with fabric_alias (Maurizio Lombardi) [1684471]
-- [target] scsi: target: drop unnecessary get_fabric_name() accessor from fabric_ops (Maurizio Lombardi) [1684471]
-- [target] scsi: target: drop unused pi_prot_format attribute storage (Maurizio Lombardi) [1684471]
-- [target] scsi: target: add emulate_pr backstore attr to toggle PR support (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Avoid that a kernel oops is triggered when COMPARE AND WRITE fails (Maurizio Lombardi) [1684471]
-- [target] scsi: target: Don't request modules that aren't even built (Maurizio Lombardi) [1684471]
-- [target] scsi: target: Set response length for REPORT TARGET PORT GROUPS (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Always call transport_complete_callback() upon failure (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Use sg_alloc_table() instead of open-coding it (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Remove the SCF_COMPARE_AND_WRITE_POST flag (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Remove an unused data member from struct xcopy_pt_cmd (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Fix spelling in two source code comments (Maurizio Lombardi) [1684471]
-- [target] scsi: target: stash sess_err_stats on Data-Out timeout (Maurizio Lombardi) [1684471]
-- [target] scsi: target: split out helper for cxn timeout error stashing (Maurizio Lombardi) [1684471]
-- [target] scsi: target: log NOP ping timeouts as errors (Maurizio Lombardi) [1684471]
-- [target] scsi: target: log Data-Out timeouts as errors (Maurizio Lombardi) [1684471]
-- [target] scsi: target: use ISCSI_IQN_LEN in iscsi_target_stat (Maurizio Lombardi) [1684471]
-- [target] scsi: iscsi: target: fix spelling mistake "entires" -> "entries" (Maurizio Lombardi) [1684471]
-- [target] scsi: iscsi: target: Don't use stack buffer for scatterlist (Maurizio Lombardi) [1684471]
-- [target] scsi: iscsi: target: Fix conn_ops double free (Maurizio Lombardi) [1684471]
-- [vhost] scsi: target: loop, usb, vhost, xen: use target_remove_session (Maurizio Lombardi) [1684471]
-- [target] scsi: tcm_fc: use target_remove_session (Maurizio Lombardi) [1684471]
-- [target] scsi: target: srp, vscsi, sbp, qla: use target_remove_session (Maurizio Lombardi) [1684471]
-- [target] scsi: target: add session removal function (Maurizio Lombardi) [1684471]
-- [infiniband] scsi: target: rename target_alloc_session (Maurizio Lombardi) [1684471]
-- [target] scsi: target: fix __transport_register_session locking (Maurizio Lombardi) [1684471]
-- [scsi] bnx2fc: Fix error handling in probe() (Maurizio Lombardi) [1643544]
-- [scsi] bnx2fc: Fix NULL dereference in error handling (Maurizio Lombardi) [1643544]
-- [scsi] bnx2fc: Remove set but not used variable 'oxid' (Maurizio Lombardi) [1643544]
-- [scsi] bnx2fc_fcoe: Use skb_queue_walk_safe() (Maurizio Lombardi) [1643544]
-- [scsi] bnx2i: remove set but not used variable 'cid_num' (Maurizio Lombardi) [1643546]
-- [scsi] bnx2i: add error handling for ioremap_nocache (Maurizio Lombardi) [1643546]
-- [platform] x86: mxm-wmi: Evaluate wmi method with instance number 0x0 (Prarit Bhargava) [1667232]
-- [platform] x86: asus-wmi: Evaluate wmi method with instance number 0x0 (Prarit Bhargava) [1667232]
-- [platform] x86: acer-wmi: Using zero as first WMI instance number (Prarit Bhargava) [1667232]
-- [char] ipmi: msghandler: Fix potential Spectre v1 vulnerabilities (Tony Camuso) [1642673]
-- [char] ipmi:ssif: Fix handling of multi-part return messages (Tony Camuso) [1642673]
-- [char] ipmi: Replace synchronize_sched() with synchronize_rcu() (Tony Camuso) [1642673]
-- [char] ipmi: Fix timer race with module unload (Tony Camuso) [1642673]
-- [char] ipmi:ssif: Add support for multi-part transmit messages > 2 parts (Tony Camuso) [1642673]
-- [char] ipmi: Free the address list on module cleanup (Tony Camuso) [1642673]
-- [char] ipmi: Don't leave holes in the I2C address list in the ssif driver (Tony Camuso) [1642673]
-- [char] ipmi: Convert pr_xxx() to dev_xxx() in the BT code (Tony Camuso) [1642673]
-- [char] ipmi:dmi: Ignore IPMI SMBIOS entries with a zero base address (Tony Camuso) [1642673]
-- [char] ipmi:dmi: Use pr_fmt in the IPMI DMI code (Tony Camuso) [1642673]
-- [char] ipmi: Change to ktime_get_ts64() (Tony Camuso) [1642673]
-- [char] ipmi_si: fix potential integer overflow on large shift (Tony Camuso) [1642673]
-- [char] ipmi_si_pci: fix NULL device in ipmi_si error message (Tony Camuso) [1642673]
-- [char] ipmi: Convert printk(KERN_<level> to pr_<level>( (Tony Camuso) [1642673]
-- [char] ipmi: Use more common logging styles (Tony Camuso) [1642673]
-- [char] ipmi: msghandler: Add and use pr_fmt and dev_fmt, remove PFX (Tony Camuso) [1642673]
-- [char] pci:ipmi: Move IPMI PCI class id defines to pci_ids.h (Tony Camuso) [1642673]
-- [char] ipmi: Fix NULL pointer dereference in ssif_probe (Tony Camuso) [1642673]
-- [char] ipmi: Fix I2C client removal in the SSIF driver (Tony Camuso) [1642673]
-- [char] ipmi_ssif: Remove duplicate NULL check (Tony Camuso) [1642673]
-- [char] treewide: kzalloc() -> kcalloc() (Tony Camuso) [1642673]
-- [char] ipmi_si: Rename intf_num to si_num (Tony Camuso) [1642673]
-- [char] ipmi_ssif: Get rid of unused intf_num (Tony Camuso) [1642673]
-- [char] ipmi_devintf: Add an error return on invalid ioctls (Tony Camuso) [1642673]
-- [char] ipmi_ssif: Remove usecount handling (Tony Camuso) [1642673]
-- [char] ipmi: Fix some counter issues (Tony Camuso) [1642673]
-- [char] ipmi_devintf: Small lock rework (Tony Camuso) [1642673]
-- [char] ipmi: Clean up some style issues in the message handler (Tony Camuso) [1642673]
-- [char] ipmi: Break up i_ipmi_request (Tony Camuso) [1642673]
-- [char] ipmi:devintf: Clean up some coding style issues (Tony Camuso) [1642673]
-- [char] ipmi: Clean up some debug code (Tony Camuso) [1642673]
-- [char] ipmi:watchdog: Replace printk() with pr_xxx() (Tony Camuso) [1642673]
-- [char] ipmi:watchdog: Rework locking and handling (Tony Camuso) [1642673]
-- [char] ipmi: Add a maintenance mode for IPMB messages (Tony Camuso) [1642673]
-- [char] ipmi: Add a way to tune some timeouts (Tony Camuso) [1642673]
-- [char] ipmi/parisc: Add IPMI chassis poweroff for certain HP PA-RISC and IA-64 servers (Tony Camuso) [1642673]
-- [char] ipmi_ssif: Fix kernel panic at msg_done_handler (Tony Camuso) [1642673]
-- [char] ipmi:pci: Blacklist a Realtek "IPMI" device (Tony Camuso) [1642673]
-- [char] ipmi: Remove ACPI SPMI probing from the system interface driver (Tony Camuso) [1642673]
-- [char] ipmi: Remove ACPI SPMI probing from the SSIF (I2C) driver (Tony Camuso) [1642673]
-- [char] ipmi: missing error code in try_smi_init() (Tony Camuso) [1642673]
-- [char] ipmi: use ARRAY_SIZE for poweroff_functions array sizing calculation (Tony Camuso) [1642673]
-- [char] ipmi: Consolidate cleanup code (Tony Camuso) [1642673]
-- [char] ipmi: Remove some unnecessary initializations (Tony Camuso) [1642673]
-- [char] ipmi: Add or fix SPDX-License-Identifier in all files (Tony Camuso) [1642673]
-- [char] ipmi: Re-use existing macros for built-in properties (Tony Camuso) [1642673]
-- [char] ipmi:pci: Make the PCI defines consistent with normal Linux ones (Tony Camuso) [1642673]
-- [char] ipmi/powernv: Fix error return code in ipmi_powernv_probe() (Tony Camuso) [1642673]
-- [char] ipmi: Clear smi_info->thread to prevent use-after-free during module unload (Tony Camuso) [1642673]
-- [char] ipmi: use correct string length (Tony Camuso) [1642673]
-- [char] ipmi watchdog: fix typo in parameter description (Tony Camuso) [1642673]
-- [char] ipmi_si_platform: Fix typo in parameter description (Tony Camuso) [1642673]
-- [char] treewide: setup_timer() -> timer_setup() (Tony Camuso) [1642673]
-- [gpu] drm/amd/display: don't call dm_pp_ function from an fpu block (Rob Clark) [1655767]
-- [gpu] drm/cirrus: fix connector leak at unload (Rob Clark) [1523670]
-- [gpu] drm: backport from v5.0 (Rob Clark) [1642329 1642325 1641564 1641562 1616387 1642696 1642334 1642335 1655767 1642456 1640933 1633840 1633838 1633835 1519303]
-- [kernel] mutex: Fix w/w mutex deadlock injection (Rob Clark) [1655767]
-- [gpu] mm, drm/i915: mark pinned shmemfs pages as unevictable (Rob Clark) [1655767]
-- [kernel] rcu: Export init_rcu_head() and destroy_rcu_head() to GPL modules (Rob Clark) [1655767]
-- [acpi] acpi / video: Move ACPI_VIDEO_NOTIFY_* defines to acpi/video.h (Rob Clark) [1655767]
-- [kernel] sched/debug: Intruduce task_state_to_char() helper function (Rob Clark) [1655767]
-- [kernel] rcu: Provide grace-period piggybacking API (Rob Clark) [1655767]
-- [kernel] rcu: Export debug_init_rcu_head() and and debug_init_rcu_head() (Rob Clark) [1655767]
-- [kernel] misc: rtsx: rename SG_END macro (Rob Clark) [1655767]
-- [kernel] lib/scatterlist: Add SG_CHAIN and SG_END macros for LSB encodings (Rob Clark) [1655767]
-- [kernel] x86/uaccess, sched/preempt: Verify access_ok() context (Rob Clark) [1655767]
-- [kernel] list: introduce list_bulk_move_tail helper (Rob Clark) [1655767]
-- [kernel] linux/kernel.h: move DIV_ROUND_DOWN_ULL() macro (Rob Clark) [1655767]
-- [kernel] fbdev: Add FBINFO_HIDE_SMEM_START flag (Rob Clark) [1655767]
-- [kernel] linux/bitops.h: introduce BITS_PER_TYPE (Rob Clark) [1655767]
-- [kernel] Move ascii85 functions from i915 to linux/ascii85.h (Rob Clark) [1655767]
-- [sound] alsa: hda: Make audio component support more generic (Rob Clark) [1655767]
-- [sound] alsa: hda/i915: Associate audio component with devres (Rob Clark) [1655767]
-- [drm] i915: Split audio component to a generic type (Rob Clark) [1655767]
-- [kernel] pci: Export pcie_get_speed_cap and pcie_get_width_cap (Rob Clark) [1655767]
-- [kernel] string: drop __must_check from strscpy() and restore strscpy() usages in cgroup (Rob Clark) [1655767]
-- [lib] string: provide strscpy() (Rob Clark) [1655767]
-- [video] fbdev: add remove_conflicting_pci_framebuffers() (Rob Clark) [1655767]
-- [kernel] sched/preempt, mm/fault: Decouple preemption from the page fault logic (Rob Clark) [1655767]
-- [fs] callers of iov_copy_from_user_atomic() don't need pagecache_disable() (Rob Clark) [1655767]
-- [kernel] mm/fault, arch: Use pagefault_disable() to check for disabled pagefaults in the handler (Rob Clark) [1655767]
-- [mm] sched/preempt, mm/fault: Trigger might_sleep() in might_fault() with disabled pagefaults (Rob Clark) [1655767]
-- [kernel] sched/preempt, mm/fault: Count pagefault_disable() levels in pagefault_disabled (Rob Clark) [1655767]
-
-* Sat Mar 09 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1019.el7]
-- [documentation] alsa: fix Documentation/sound/alsa/HD-Audio-Models.txt (Jaroslav Kysela) [1657855]
-- [sound] alsa: opl3: remove redundant pointer opl3 (Jaroslav Kysela) [1657855]
-- [sound] alsa: opl3: Declare common variables properly (Jaroslav Kysela) [1657855]
-- [sound] alsa: Remove empty init and exit (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Nuke snd_pcm_lib_mmap_vmalloc() (Jaroslav Kysela) [1657855]
-- [sound] alsa: Clean up with new procfs helpers (Jaroslav Kysela) [1657855]
-- [sound] alsa: aloop: Reduced duplicated PCM ops definition (Jaroslav Kysela) [1657855]
-- [sound] alsa: ali5451: remove redundant pointer 'codec' (Jaroslav Kysela) [1657855]
-- [sound] alsa: fm801: add error handling for snd_ctl_add (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: add error handling for snd_ctl_add (Jaroslav Kysela) [1657855]
-- [sound] alsa: ctxfi: cthw20k2: Replace mdelay() with msleep() and usleep_range() (Jaroslav Kysela) [1657855]
-- [sound] alsa: ctxfi: use enum type CT_SUM_CTL where appropriate (Jaroslav Kysela) [1657855]
-- [sound] alsa: echoaudio: Drop superfluous macro (Jaroslav Kysela) [1657855]
-- [sound] alsa: echoaudio: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flag (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: Mark expected switch fall-throughs (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: remove redundant variable attn (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: remove redundant assignment to tmp (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda-beep: add SPDX identifiers (Jaroslav Kysela) [1657855]
-- [sound] alsa: ice1712: fix a missing check of snd_i2c_sendbytes (Jaroslav Kysela) [1657855]
-- [sound] alsa: trident: Suppress gcc string warning (Jaroslav Kysela) [1657855]
-- [sound] alsa: license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Jaroslav Kysela) [1657855]
-- [sound] alsa: treewide: Use array_size() in vmalloc() (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: Fix potential Spectre v1 vulnerabilities (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: fix possible info leak to userspace on SNDRV_EMU10K1_IOCTL_INFO (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: Fix missing __force annotation for user/kernel pointer cast (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: fix spelling mistake: "Caputre" -> "Capture" (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs5535audio: Fix invalid endian conversion (Jaroslav Kysela) [1657855]
-- [sound] alsa: alsa:: ctxfi: cthw20k1: Replace mdelay() with msleep() (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs5535audio: remove redundant pointer 'dma' (Jaroslav Kysela) [1657855]
-- [sound] alsa: ca0106: Disable IZD on SB0570 DAC to fix audio pops (Jaroslav Kysela) [1657855]
-- [sound] alsa: au88x0: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs46xx: remove redundant pointer 'ins' (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs46xx: Clean up proc file creations (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs46xx: Potential NULL dereference in probe (Jaroslav Kysela) [1657855]
-- [sound] alsa: au88xx: Add fall-through annotations (Jaroslav Kysela) [1657855]
-- [sound] alsa: atiixp_modem: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: atiixp: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: atiixp: fix fall-through annotations (Jaroslav Kysela) [1657855]
-- [sound] alsa: asihpi: remove redundant variable max_streams (Jaroslav Kysela) [1657855]
-- [sound] alsa: asihpi: clean up indentation, replace spaces with tab (Jaroslav Kysela) [1657855]
-- [sound] alsa: asihpi: Fix PCM format notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: lx6464es: Missing error code in snd_lx6464es_create() (Jaroslav Kysela) [1657855]
-- [sound] alsa: lx6464es: add error handling for pci_ioremap_bar (Jaroslav Kysela) [1657855]
-- [sound] alsa: lola: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: mixart: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: mixart: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: oxygen: initialize spdif_playback_enable to 0 (Jaroslav Kysela) [1657855]
-- [sound] alsa: oxygen: use match_string() helper (Jaroslav Kysela) [1657855]
-- [sound] alsa: virtuoso: add de-emphasis control (Jaroslav Kysela) [1657855]
-- [sound] alsa: riptide: Properly endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: rme9652: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1657855]
-- [sound] alsa: trident: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: sonicvibes: add error handling for snd_ctl_add (Jaroslav Kysela) [1657855]
-- [sound] alsa: sonicvibes: remove redundant pointer 'dir' (Jaroslav Kysela) [1657855]
-- [sound] alsa: vx222: Fix invalid endian conversions (Jaroslav Kysela) [1657855]
-- [sound] alsa: ymfpci: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci: Clean up with new procfs helpers (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Move card id proc creation into info.c (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Minor optimization (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Drop unused snd_info_entry.card field (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Add standard helpers for card proc file entries (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Always register entries recursively (Jaroslav Kysela) [1657855]
-- [sound] alsa: proc: Avoid possible leaks of snd_info_entry objects (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Simplify proc file destruction (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Unify snd_pcm_group initialization (Jaroslav Kysela) [1657855]
-- [sound] alsa: compress: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: opl4: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: emux: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: ac97: Fix incorrect bit shift at AC97-SPSA control write (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci: Remove empty init and exit (Jaroslav Kysela) [1657855]
-- [sound] alsa: rme32: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flag (Jaroslav Kysela) [1657855]
-- [sound] alsa: maestro3: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0m: Register irq handler after register initializations (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0m: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0: Fix fall-through annotations (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0: Use the new non-cached allocation for 440MX workaround (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: ens137x: remove redundant array pcm_devs (Jaroslav Kysela) [1657855]
-- [sound] alsa: ens137x: remove redundant variable result (Jaroslav Kysela) [1657855]
-- [sound] alsa: arch: Mass conversion of smp_mb__*() (Jaroslav Kysela) [1657855]
-- [sound] alsa: bt87x: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add support for new T+A USB DAC (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Cleanup DSD whitelist (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add Opus #3 to quirks for native DSD support (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add quirk for MOTU MicroBook II (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix implicit fb endpoint setup by quirk (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Expose sample resolution through proc interface (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1657855]
-- [sound] alsa: asoc: intel: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Define snd_pcm_lib_preallocate_*() as returning void (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: sound card name from device tree (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Disable PC beep in passthrough on alc285 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Headset microphone support for System76 darp5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable audio jacks of ASUS UX362FA with ALC294 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Reduce click noise on Dell Precision 5820 headphone (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use a common helper for hp pin reference (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix lose hp_pins for disable auto mute (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Apply ALC294 hp init also for S4 resume (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fixed hp_pin no value (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Headset microphone and internal speaker support for System76 oryp5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix build error without CONFIG_PCI (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add quirk for HP EliteBook 840 G5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Use standard device registration for beep (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Proper endian notations for BDL pointers (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Fix implicit PCM format type conversion (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Fix mismatches for register mask and value in hdac controller (Jaroslav Kysela) [1657855]
-- [sound] alsa: don't call skl_init_chip() to reset intel skl soc (Jaroslav Kysela) [1657855]
-- [sound] alsa: enable interrupt after dma buffer initialization (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: export process_unsol_events() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: add driver flag for runtime PM (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: implement runtime suspend/resume (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: remove redundant clock enable API (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: add runtime PM callbacks (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: get clock handles early in probe (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: runtime power management support (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add mute LED support for HP ProBook 470 G5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: program stripe control for codec (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add verbs for stripe control (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: program stripe bits for controller (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add register offset for stripe control (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add api to program stripe control bits (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Fix a mask wrong issue in snd_hdac_stream_start() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix typo for ALC225 model (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Disable headset Mic VREF for headset mode of ALC225 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add unplug function into unplug state of Headset Mode for ALC225 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Support Dell headset mode for New AIO platform (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: clear pending irq handlers (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable the headset mic auto detection for ASUS laptops (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable audio jacks of ASUS UX391UA with ALC294 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add mute LED support for HP EliteBook 840 G4 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add support for Huawei WMI micmute LED (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: fix front speakers on Huawei MBXP (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - make pci_iounmap() call conditional (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable audio jacks of ASUS UX433FN/UX333FA with ALC294 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable audio jacks of ASUS UX533FD with ALC294 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: ALC294 mic and headset-mode fixups for ASUS X542UN (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix the mute LED regresion on Lenovo X1 Carbon (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Enable headset button support for new codec (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add jack button support (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add jack pointer and unsolicited event bits to callback (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fixed headphone issue for ALC700 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Fix mic issue on Acer AIO Veriton Z4860G/Z6860G (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Fix mic issue on Acer AIO Veriton Z4660G (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add support for Acer Aspire C24-860 headset mic (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: ALC286 mic and headset-mode fixups for Acer Aspire U27-880 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/hdmi - Add Tegra186 and Tegra194 support (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra - Probe up to 8 codecs (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix speaker output regression on Thinkpad T570 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add support for AMD Stoney Ridge (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: compatible string as shortname (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Support led audio trigger (Jaroslav Kysela) [1657855]
-- [sound] alsa: update dell-wmi mic-mute registration to new world order (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Support ALC300 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add auto-mute quirk for HP Spectre x360 laptop (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - fix the pop noise on headphone for lenovo laptops (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - fix headset mic detection for MSI MS-B171 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add ASRock N68C-S UCC the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - fix AE-5 pincfg (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add new ZxR quirk (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Call pci_iounmap() instead of iounmap() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add quirk entry for HP Pavilion 15 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Optimize for non-PCI configuration (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix incorrect clearance of thinkpad_acpi hooks (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Actually fix microphone issue (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add 2 more models to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix headphone pin config for ASUS G751 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix input effect controls for desktop cards (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add error checking in ca0132_build_controls() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Clean up patch_ca0132() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix microphone inconsistency issues (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda - Add ASUS G751 quirk model entry (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add quirk for ASUS G751 laptop (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/sigmatel - Disable automute for Elo VuPoint (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Cannot adjust speaker's volume on Dell XPS 27 7760 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR exit commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR 600 ohm gain control (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Remove input select enum for ZxR (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR input/output select commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR DSP post-download commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR init commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add DBpro hda_codec_ops (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR pincfg (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR quirks + new quirk check function (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix surround sound with output effects (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix AE-5 control type (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add AE-5 exit function (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add AE-5 specific controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add input selection commands for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add output set commands for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Clean up ca0132_alt_out_select (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add DSP setup functions for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Merge post-dsp functions + cleanup (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Change firmware name and usage (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add AE-5 regular init setup (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add AE-5 pre-init and ca0113 functions (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Change ca0132_mmio_init for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Set AE-5 bools and select mixer (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add pincfg for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add quirk for Sound BlasterX AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Define new verbs and control params (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: fix unused variable warning (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Fix implicit definition of pci_iomap() on SH (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix cancel_work_sync() stall from jackpoll work (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Clean up jackpoll_ms option handling (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: move hda_codec.h to sound (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Remove substream allocation/free ops (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Use new non-cached allocation for non-snoop mode (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Check the non-cached stream buffers more explicitly (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add exit commands for Recon3D (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Change mixer controls for Recon3D (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add Recon3D input and output select commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add DSP setup defaults for Recon3D (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add Recon3D startup functions and setup (Jaroslav Kysela) [1657855]
-- [sound] alsa: treewide: kzalloc() -> kcalloc() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add bool variable to enable/disable pci region2 mmio (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add Recon3D pincfg (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add quirk ID and enum for Recon3D (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add alt_functions unsolicited response (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Clean up ca0132_init function (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Create mmio gpio function to make code clearer (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add mute LED quirk for HP Spectre x360 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Correct Asrock B85M-ITX power_save blacklist entry (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/hdmi: Use single mutex unlock in error paths (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Sleep for 10ms after entering D3 on Conexant codecs (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Turn CX8200 into D3 as well upon reboot (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix a sparse warning about snd_ctl_elem_iface_t (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Use NULL instead of 0 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Yet another Clevo P950 quirk entry (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add Panasonic CF-SZ6 headset jack quirk (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add mute led support for HP ProBook 455 G5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: use PCI_BASE_CLASS_DISPLAY to replace PCI_CLASS_DISPLAY_VGA (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Update a pci quirk device name (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add Recon3Di quirk for Gigabyte G1.Sniper Z97 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Handle pm failure during hotplug (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/hdmi - Don't fall back to generic when i915 binding fails (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add AZX_DCAPS_PM_RUNTIME for AMD Raven Ridge (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: split snd_hda_codec_new function (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Move in_pm accessors to HDA core (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Kill snd_hda_codec_update_cache() (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC882 & co (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC262 (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC268 (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC259 & co (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC662 & co (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Apply PRE_PROBE fixup after ALC269 codec variant setups (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/via - Use standard verb containers (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/via - Simplify control management (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/via - Rewrite with error goto (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/cirrus - Simplify creation of new controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/conexant - Clean up beep code (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use common helper for creating beep controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use common helper for creating ALC268 beep controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use common GPIO mask for ALC660VD ASUS fixup (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Simplify Dell XPS13 GPIO handling (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Convert some manual GPIO setups (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Simplify mute LED GPIO handling (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Simplify alc885_fixup_macpro_gpio() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Consolidate gpio_data and gpio_led (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add GPIO data update helper (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Manage GPIO bits commonly (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Allow skipping spec->init_amp detection (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add a quirk for FSC ESPRIMO U9210 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: make array ca0132_alt_chmaps static (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Simplify alc269_fixup_hp_line1_mic1_led() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Sanity check of unexpected cap_sync_hook override (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/sigmatel - Use common helper for mic mute LED (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Allow multiple ADCs for mic mute LED controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/conexant - Use the mic-mute LED helper (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use the mic-mute LED helper for HP and others (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Use the common helper for thinkpad_acpi mic mute LED handling (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Move mic mute LED helper to the generic parser (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Force to link down at runtime suspend on ATI/AMD HDMI (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Fix DMic data rate for Alienware M17x R4 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Restore PCM Analog Mic-In2 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Don't test for QUIRK_NONE (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Restore behavior of QUIRK_ALIENWARE (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Delete redundant UNSOL event requests (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Delete pointless assignments to struct auto_pin_cfg fields (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix pop noise on Lenovo P50 & co (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add shutup hint (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add dock and led support for HP ProBook 640 G4 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add dock and led support for HP EliteBook 830 G5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci/hda: Remove unused, broken, header file (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Handle kzalloc() failure in snd_hda_attach_pcm_stream() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Refactor alc269_fixup_hp_mute_led_mic*() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Intel NUC5i7RY to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: Use octal not symbolic permissions (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix runtime PM (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add ASRock H81M-HDS to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Gigabyte P55A-UD3 and Z87-D3HP to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Clevo W35xSS_370SS to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Intel NUC7i3BNB to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/conexant - Add hp-mic-fix model string (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/conexant - Add fixup for HP Z2 G4 workstation (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: constify parameter table for effects (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: merge strings just for printk (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: constify read-only members of string array (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: constify templates for control element set (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: fix array_size.cocci warnings (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: use position offset macro of TLV data (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Clevo P950ER ALC1220 Fixup (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Lenovo C50 All in one to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add new control changes for SBZ + R3Di (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add ca0132_alt_set_vipsource (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add DSP Volume set and New mixers for SBZ + R3Di (Jaroslav Kysela) [1657855]
-- [sound] alsa: scripts/spelling.txt: add "followings" pattern and fix typo instances (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add alt_select_in/out for R3Di + SBZ (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add the ability to set src_id on scp commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add dsp setup + gpio functions for r3di (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add dsp setup related commands for the sbz (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: update core functions for sbz + r3di (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add extra init functions for r3di + sbz (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add extra exit functions for R3Di and SBZ (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add PCI region2 iomap for SBZ (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add pincfg for SBZ + R3Di, add fp hp auto-detect (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: R3Di and SBZ quirk entires + alt firmware loading (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: revert "[sound] pci: hda/ca0132 - use generic parser for some models" (Jaroslav Kysela) [1657855]
-- [sound] alsa: 6fire: remove unused variable card (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: fix check on snd_card_register (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: Add sanity checks for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: Fix invalid stream URBs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: Suppress kernel warning at page allocation failures (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: don't bother with access_ok() in ->dsp_load() (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: don't bother with memdup_user() for 16-byte structure (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Disable the quirk for Nura headset (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix an out-of-bound read in create_composite_quirks (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add vendor and product name for Dell WD19 Dock (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: update quirk for B&W PX to remove microphone (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix multiple definitions in AU0828_DEVICE() macro (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Fix NULL dereference at podhd_disconnect() (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Fix missing initialization before error path (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: add support for POD HD DESKTOP (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Use correct endpoint type for midi output (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Fix leftover URB at error-path during probe (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Add yet more sanity checks for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Add a sanity check for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: make snd_pcm_ops const (Jaroslav Kysela) [1657855]
-- [sound] alsa: hiface: Add sanity checks for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Drop superfluous ifndef (Jaroslav Kysela) [1657855]
-- [sound] alsa: caiaq: Add fall-through annotation (Jaroslav Kysela) [1657855]
-- [sound] alsa: caiaq: Add yet more sanity checks for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: caiaq: Fix stray URB at probe error path (Jaroslav Kysela) [1657855]
-- [sound] alsa: caiaq: Add a sanity check for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: caiaq: audio: use irqsave() in USB's complete callback (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Initial Power Domain support (Jaroslav Kysela) [1657855]
-- [sound] alsa: bcd2000: Add a sanity check for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: add boot quirk for Axe-Fx III (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: fix CM6206 register definitions (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add SMSL D1 to quirks for native DSD support (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Define registers for CM6206 (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: quirks: Replace mdelay() with msleep() and usleep_range() (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add support for Encore mDSD USB DAC (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Generic DSD detection for Thesycon-based implementations (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Remove explicitly listed Mytek devices (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Generic DSD detection for XMOS-based implementations (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: fix spelling mistake "Frequence" -> "Frequency" (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add custom mixer status quirks for RME CC devices (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Declare the common variable in header file (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: remove redundant check on err (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Tidy up logic for Processing Unit min/max values (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Avoid access before bLength check in build_audio_procunit() (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Remove set but not used variable 'first_ch_bits' (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Check mixer unit descriptors more strictly (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Unify virtual type units type to UAC3 values (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-midi: use irqsave() in USB's complete callback (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add native DSD support for Mytek DACs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: remove redundant pointer 'urb' (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Allow changing from a bad sample rate (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Always check descriptor sizes in parser code (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add support for Processing Units in UAC3 (Jaroslav Kysela) [1657855]
-- [uapi] alsa: usb-audio: Add bi-directional terminal types (Jaroslav Kysela) [1657855]
-- [uapi] alsa: usb-audio: Fix parsing descriptor of UAC2 processing unit (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Processing Unit controls parsing in UAC2 (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add support for Selector Units in UAC3 (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Always create the interrupt pipe for the mixer (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add insertion control for UAC3 BADD (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Change in connectors control creation interface (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: uac3: Parse Input Terminal number of channels (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: UAC3 Add support for connector insertion (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: UAC3. Add support for mixer unit (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: mixer: volume quirk for CM102-A+/102S+ (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix invalid use of sizeof in parse_uac_endpoint_attributes() (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Operate UAC3 Power Domains in PCM callbacks (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: AudioStreaming Power Domain parsing (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: stream: fix potential memory leak during uac3 interface parsing (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Use Class Specific EP for UAC3 devices (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Apply rate limit to warning messages in URB complete callback (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Simplify PCM open/close callbacks (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Move autoresume call at the end of open (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix UAF decrement if card has no live interfaces in card.c (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add UAC3 Power Domains to suspend/resume (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Allow non-vmalloc buffer for PCM buffers (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Avoid lowlevel device object (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Follow standard coding style (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: add UAC3 BADD profiles support (Jaroslav Kysela) [1657855]
-- [sound] alsa: memalloc: Add non-cached buffer type (Jaroslav Kysela) [1657855]
-- [sound] alsa: memalloc: Simplify snd_malloc_dev_pages() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: memalloc: Don't align the size to power-of-two (Jaroslav Kysela) [1657855]
-- [sound] alsa: memalloc: Don't exceed over the requested size (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Use standard lower_32_bits() and upper_32_bits() (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: signedness bug in snd_pcm_plug_alloc() (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1657855]
-- [sound] alsa: oss: Use kvzalloc() for local buffer allocations (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Fix starvation on down_write_nonblock() (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Call snd_pcm_unlink() conditionally at closing (Jaroslav Kysela) [1657855]
-- [sound] alsa: control: Fix missing __user annotation (Jaroslav Kysela) [1657855]
-- [sound] alsa: snd_ctl_elem_init_enum_names(): switch to vmemdup_user() (Jaroslav Kysela) [1657855]
-- [sound] alsa: replace_user_tlv(): switch to vmemdup_user() (Jaroslav Kysela) [1657855]
-- [sound] alsa: treewide: Use struct_size() for kmalloc()-family (Jaroslav Kysela) [1657855]
-- [sound] alsa: treewide: kmalloc() -> kmalloc_array() (Jaroslav Kysela) [1657855]
-- [sound] alsa: vmaster: use position offset macro of TLV data (Jaroslav Kysela) [1657855]
-- [uapi] alsa: control: complement TLV macro for db-minmax and db-linear types (Jaroslav Kysela) [1657855]
-- [uapi] alsa: core api: define offsets for TLV items (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Convert timers to use timer_setup() (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: catch invalid timer object creation (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Fix UBSAN warning at SNDRV_TIMER_IOCTL_NEXT_DEVICE ioctl (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Assure timer resolution access always locked (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Simplify timer hw resolution calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Fix pause event notification (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Avoid open-code for getting timer resolution (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Do error checks at creating system ports (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: add error check in snd_seq_system_client_init() (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Drop unused 64bit division macros (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: fix spelling mistake "Unamed" -> "Unnamed" (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Fix leftovers at probe error path (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: A lightweight function to discard pending bytes (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: virmidi: Fix discarding the unsubscribed output (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Remove dead codes (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Minor cleanup of MIDI event parser helpers (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: virmidi: Use READ_ONCE/WRITE_ONCE() macros (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: virmidi: Offload the output event processing (Jaroslav Kysela) [1657855]
-- [sound] alsa: virmidi: Fix too long output trigger loop (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Use no intrruptible mutex_lock (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Fix UBSAN warning at SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT ioctl (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: oss: Use the standard fall-through annotation (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq_oss: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Fix poll() error return (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Initialize allocated buffers (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Use kvmalloc() for buffers (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Minor code refactoring (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Simplify error paths (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Tidy up coding styles (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Update hardware pointer before start capture (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Return 0 when size < start_threshold in capture (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Fix snd_interval_refine first/last with open min/max (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Allow drivers to set R/W wait time (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Use snd_pcm_stop_xrun() for xrun injection (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: trace XRUN event at injection, too (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1657855]
-- [sound] alsa: core: Assure control device to be registered at last (Jaroslav Kysela) [1657855]
-- [sound] alsa: control: fix a redundant-copy issue (Jaroslav Kysela) [1657855]
-- [sound] alsa: compress: Remove empty init and exit (Jaroslav Kysela) [1657855]
-- [sound] alsa: soc-compress: add support to snd_compr_set_runtime_buffer() (Jaroslav Kysela) [1657855]
-- [sound] alsa: compress: make use of runtime buffer for copy (Jaroslav Kysela) [1657855]
-- [sound] alsa: control: Consolidate helpers for adding and replacing ctl elements (Jaroslav Kysela) [1657855]
-- [sound] alsa: control: Fix race between adding and removing a user element (Jaroslav Kysela) [1657855]
-- [mm] alsa: new primitive: vmemdup_user() (Jaroslav Kysela) [1657855]
-
-* Fri Mar 08 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1018.el7]
-- [net] tuntap: fix multiqueue rx (Guillaume Nault) [1683025]
-- [net] netfilter: ipset: List timing out entries with "timeout 1" instead of zero (Stefano Brivio) [1684645]
-- [net] netfilter: nf_tables: bump set->ndeact on set flush (Stefano Brivio) [1576465]
-- [net] netfilter: nf_tables: deconstify walk callback function (Stefano Brivio) [1576465]
-- [net] netfilter: nf_tables: support for set flushing (Phil Sutter) [1576465]
-- [net] netfilter: nft_set: introduce nft_{hash, rbtree}_deactivate_one() (Phil Sutter) [1576465]
-- [net] netfilter: nf_tables: constify struct nft_ctx * parameter in nft_trans_alloc() (Phil Sutter) [1576465]
-- [net] ipv6: Display all addresses in output of /proc/net/if_inet6 (Stefano Brivio) [1661408]
-- [net] ip6mr: Fix potential Spectre v1 vulnerability (Stefano Brivio) [1666396]
-- [net] ipv4: Fix potential Spectre v1 vulnerability (Stefano Brivio) [1666396]
-- [net] sched: fix qdisc->running lockdep annotations (Paolo Abeni) [1680442]
-- [net] netfilter: ipset: fix ip_set_byindex function (Stefano Brivio) [1680426]
-- [net] netfilter: ipset: actually allow allowable CIDR 0 in hash:net, port, net (Stefano Brivio) [1680426]
-- [net] netfilter: ipset: Introduction of new commands and protocol version 7 (Stefano Brivio) [1680426]
-- [net] pktgen: Fix fall-through annotation (Ivan Vecera) [1680139]
-- [net] pktgen: convert safe uses of strncpy() to strcpy() to avoid string truncation warning (Ivan Vecera) [1680139]
-- [net] treewide: Use array_size() in vzalloc_node() (Ivan Vecera) [1680139]
-- [net] pktgen: Fix memory leak in pktgen_if_write (Ivan Vecera) [1680139]
-- [net] pktgen: use dynamic allocation for debug print buffer (Ivan Vecera) [1680139]
-- [net] pktgen: Remove VLA usage (Ivan Vecera) [1680139]
-- [net] pktgen: Clean read user supplied flag mess (Ivan Vecera) [1680139]
-- [net] pktgen: Remove brute-force printing of flags (Ivan Vecera) [1680139]
-- [net] pktgen: Add behaviour flags macro to generate flags/names (Ivan Vecera) [1680139]
-- [net] pktgen: Add missing !flag parameters (Ivan Vecera) [1680139]
-- [net] documentation/pktgen: Clearify how-to use pktgen samples (Ivan Vecera) [1680139]
-- [net] pktgen: document 32-bit timestamp overflow (Ivan Vecera) [1680139]
-- [net] pktgen: do not abuse IN6_ADDR_HSIZE (Ivan Vecera) [1680139]
-- [net] samples/pktgen: remove remaining old pktgen sample scripts (Ivan Vecera) [1680139]
-- [net] samples/pktgen: update sample03, no need for clones when bursting (Ivan Vecera) [1680139]
-- [net] samples/pktgen: add script pktgen_sample06_numa_awared_queue_irq_affinity.sh (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Add some helper functions (Ivan Vecera) [1680139]
-- [net] pktgen: Specify the index of first thread (Ivan Vecera) [1680139]
-- [net] pktgen: Specify num packets per thread (Ivan Vecera) [1680139]
-- [net] samples: Add an IPv6 '-6' option to the pktgen scripts (Ivan Vecera) [1680139]
-- [net] pktgen: remove sample script pktgen.conf-1-1-rdos (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample05_flow_per_thread.sh (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample04_many_flows.sh (Ivan Vecera) [1680139]
-- [net] pktgen: remove rcu locking in pktgen_change_name() (Ivan Vecera) [1680139]
-- [net] xfrm: fix a race in xfrm_state_lookup_byspi (Ivan Vecera) [1680139]
-- [net] samples: pktgen mode samples/tests for qdisc layer (Ivan Vecera) [1680139]
-- [net] pktgen: support injecting packets for qdisc testing (Ivan Vecera) [1680139]
-- [net] pktgen: Call destroy_hrtimer_on_stack() (Ivan Vecera) [1680139]
-- [kernel] timer: Export destroy_hrtimer_on_stack() (Ivan Vecera) [1680139]
-- [net] documentation: networking: fix spelling mistakes (Ivan Vecera) [1680139]
-- [net] pktgen: don't abuse current->state in pktgen_thread_worker() (Ivan Vecera) [1680139]
-- [net] pktgen: Remove unused 'allocated_skbs' field (Ivan Vecera) [1680139]
-- [net] pktgen: kill the "Wait for kthread_stop" code in pktgen_thread_worker() (Ivan Vecera) [1680139]
-- [net] pktgen: remove one sparse error (Ivan Vecera) [1680139]
-- [net] pktgen: add benchmark script pktgen_bench_xmit_mode_netif_receive.sh (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample03_burst_single_flow.sh (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample02_multiqueue.sh (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample01_simple.sh (Ivan Vecera) [1680139]
-- [net] pktgen: new pktgen helper functions for samples scripts (Ivan Vecera) [1680139]
-- [net] pktgen: make /proc/net/pktgen/pgctrl report fail on invalid input (Ivan Vecera) [1680139]
-- [net] pktgen: document ability to add same device to several threads (Ivan Vecera) [1680139]
-- [net] pktgen: doc were missing several config options (Ivan Vecera) [1680139]
-- [net] pktgen: adjust spacing in proc file interface output (Ivan Vecera) [1680139]
-- [net] pktgen: remove obsolete "max_before_softirq" from pktgen doc (Ivan Vecera) [1680139]
-- [net] pktgen: fix packet generation (Ivan Vecera) [1680139]
-- [net] pktgen: introduce xmit_mode '<start_xmit|netif_receive>' (Ivan Vecera) [1680139]
-- [net] pktgen: adjust flag NO_TIMESTAMP to be more pktgen compliant (Ivan Vecera) [1680139]
-- [net] pktgen: Correct documentation of module name and command (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Show the results rather than just commenting where they are (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Trap SIGINT (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Use bash as interpreter (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Remove setting of obsolete max_before_softirq parameter (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Correct comments about the thread config (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Delete unused function pg() (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Add sample scripts for pktgen facility (Ivan Vecera) [1680139]
-- [net] pktgen: Fix grammar errors and some poor wording in documentation (Ivan Vecera) [1680139]
-- [net] pktgen: Delete the original date from documentation (Ivan Vecera) [1680139]
-- [net] spelling fixes (Ivan Vecera) [1680139]
-- [net] pktgen: Deletion of an unnecessary check before the function call "proc_remove" (Ivan Vecera) [1680139]
-- [net] pktgen: Convert pr_warning to pr_warn (Ivan Vecera) [1680139]
-- [net] pktgen: remove unnecessary break after goto (Ivan Vecera) [1680139]
-- [net] pktgen: RCU-ify "if_list" to remove lock in next_to_run() (Ivan Vecera) [1680139]
-- [net] pktgen: avoid expensive set_current_state() call in loop (Ivan Vecera) [1680139]
-- [net] pktgen: document tuning for max NIC performance (Ivan Vecera) [1680139]
-- [net] pktgen: Use seq_puts() where seq_printf() is not needed (Ivan Vecera) [1680139]
-- [net] pktgen: be friendly to LLTX devices (Ivan Vecera) [1680139]
-- [net] pktgen: fix xmit test for BQL enabled devices (Ivan Vecera) [1680139]
-- [net] pktgen: document all supported flags (Ivan Vecera) [1680139]
-- [net] pktgen: simplify error handling in pgctrl_write() (Ivan Vecera) [1680139]
-- [net] pktgen: fix out-of-bounds access in pgctrl_write() (Ivan Vecera) [1680139]
-- [net] pktgen: Use ether_addr_copy (Ivan Vecera) [1680139]
-- [net] {xfrm, pktgen} Fix compiling error when CONFIG_XFRM is not set (Ivan Vecera) [1680139]
-- [net] pktgen_dst_metrics[] can be static (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Document IPsec usage in pktgen.txt (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Show spi value properly when ipsec turned on (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Introduce xfrm_state_lookup_byspi for pktgen (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Construct skb dst for tunnel mode transformation (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Using "pgset spi xxx" to spedifiy SA for a given flow (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Add statistics counting when transforming (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Correct xfrm state lock usage when transforming (Ivan Vecera) [1680139]
-- [net] pktgen: Use ip_send_check() to compute checksum (Ivan Vecera) [1680139]
-- [net] ethtool: Added support for 50Gbps per lane link modes (Ivan Vecera) [1679751]
-- [net] sched: Fix for duplicate class dump (Phil Sutter) [1631177]
-- [net] netlink: ensure to loop over all netns in genlmsg_multicast_allns() (Phil Sutter) [1607306]
-- [net] ipv6: addrconf: break critical section in addrconf_verify_rtnl() (Ivan Vecera) [1678649]
-- [net] ipv6: addrconf: fix a lockdep splat (Ivan Vecera) [1678649]
-- [net] ipv6: Make inet6addr_validator a blocking notifier (Ivan Vecera) [1678649]
-- [net] ipv6: addrconf: cleanup locking in ipv6_add_addr (Ivan Vecera) [1678649]
-- [net] Ipvlan should return an error when an address is already in use. (Ivan Vecera) [1678649]
-- [net] sched: cls_flower: validate nested enc_opts_policy to avoid warning (Ivan Vecera) [1672341]
-- [net] sched: allow flower to match tunnel options (Ivan Vecera) [1672341]
-- [net] flow_dissector: allow dissection of tunnel options from metadata (Ivan Vecera) [1672341]
-- [net] dim: Update DIM start sample after each DIM iteration (Petr Oros) [1672279]
-- [net] ipv6: fib6_rules should return exact return value (Lorenzo Bianconi) [1592059]
-- [net] fib_rules: fix suppressor names and default values (Lorenzo Bianconi) [1592059]
-- [net] fib_rules: add .suppress operation (Lorenzo Bianconi) [1592059]
-
-* Fri Mar 08 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1017.el7]
-- [tools] power turbostat: fix show/hide issues resulting from mis-merge (Prarit Bhargava) [1678566]
-- [i2c] i801: Add support for Intel Ice Lake (David Arcari) [1684364]
-- [vfio] pci: Mask buggy SR-IOV VF INTx support (Myron Stowe) [1640882]
-- [scsi] core: introduce force_blk_mq (Ewan Milne) [1659146]
-- [scsi] revert "lpfc: use dma_set_mask_and_coherent" (Dick Kennedy) [1673678]
-- [md] raid1: don't clear bitmap bits on interrupted recovery (Xiao Ni) [1677312]
-- [md] dm cache: add support for discard passdown to the origin device (Mike Snitzer) [1628378]
-- [kernel] rcu: Don't wake rcuc/X kthreads on NOCB CPUs (Daniel Bristot de Oliveira) [1626129]
-- [nvme] fix subsystem multiple controllers support check (David Milburn) [1624860 1679493]
-- [nvme] expose subsys attribute to sysfs (David Milburn) [1624860 1679493]
-- [nvme] track subsystems (David Milburn) [1624860 1679493]
-- [mm] mm: migrate: don't rely on __PageMovable() of newpage after unlocking it (David Hildenbrand) [1665989]
-- [security] xattr: Constify ->name member of "struct xattr" (Aaron Tomlin) [1607307]
-- [char] tpm/tpm_crb: Avoid unaligned reads in crb_recv() (Jerry Snitselaar) [1642703 1679366]
-- [char] tpm: don't print error message in tpm_transmit_cmd when tpm still testing (Jerry Snitselaar) [1663298 1679366]
-- [char] tpm: tpm_i2c_nuvoton: use correct command duration for TPM 2.x (Jerry Snitselaar) [1642348 1679366]
-- [char] tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated (Jerry Snitselaar) [1679366]
-- [char] tpm: fix response size validation in tpm_get_random() (Jerry Snitselaar) [1679366]
-- [char] tpm: replace TPM_TRANSMIT_RAW with TPM_TRANSMIT_NESTED (Jerry Snitselaar) [1679366]
-- [char] tpm: Convert tpm_find_get_ops() to use tpm_default_chip() (Jerry Snitselaar) [1679366]
-- [char] tpm: Implement tpm_default_chip() to find a TPM chip (Jerry Snitselaar) [1679366]
-- [char] tpm: rename tpm_chip_find_get() to tpm_find_get_ops() (Jerry Snitselaar) [1679366]
-- [char] tpm: Return the actual size when receiving an unsupported command (Jerry Snitselaar) [1679366]
-- [char] tpm: separate cmd_ready/go_idle from runtime_pm (Jerry Snitselaar) [1642703 1671142 1679366]
-- [char] tpm: migrate tpm2_get_random() to use struct tpm_buf (Jerry Snitselaar) [1679366]
-- [char] tpm: migrate tpm2_get_tpm_pt() to use struct tpm_buf (Jerry Snitselaar) [1679366]
-- [char] tpm: migrate tpm2_probe() to use struct tpm_buf (Jerry Snitselaar) [1679366]
-- [char] tpm: migrate tpm2_shutdown() to use struct tpm_buf (Jerry Snitselaar) [1679366]
-- [char] tpm: reduce polling time to usecs for even finer granularity (Jerry Snitselaar) [1642704 1642345 1679366]
-- [char] tpm: fix use after free in tpm2_load_context() (Jerry Snitselaar) [1679366]
-- [char] tpm: reduce poll sleep time in tpm_transmit() (Jerry Snitselaar) [1642704 1642345 1679366]
-- [char] tpm: tpm_crb: relinquish locality on error path (Jerry Snitselaar) [1642703 1679366]
-- [char] tpm: Add explicit endianness cast (Jerry Snitselaar) [1679366]
-- [char] tpm: st33zp24: remove redundant null check on chip (Jerry Snitselaar) [1679366]
-- [char] tpm: move the delay_msec increment after sleep in tpm_transmit() (Jerry Snitselaar) [1679366]
-- [block] virtio-blk: modernize sysfs attribute creation (Ming Lei) [1635708]
-- [block] zram: register default groups with device_add_disk() (Ming Lei) [1635708]
-- [block] aoe: register default groups with device_add_disk() (Ming Lei) [1635708]
-- [nvme] register ns_id attributes as default sysfs groups (Ming Lei) [1635708]
-- [block] genhd: add 'groups' argument to device_add_disk (Ming Lei) [1635708]
-- [mm] fix MADV_[FREE|DONTNEED] TLB flush miss problem (Aaron Tomlin) [1677343]
-- [mm] mm: make tlb_flush_pending global (Aaron Tomlin) [1677343]
-- [mm] refactor TLB gathering API (Aaron Tomlin) [1677343]
-- [mm] mm: migrate: fix barriers around tlb_flush_pending (Aaron Tomlin) [1677343]
-- [mm] mm: migrate: prevent racy access to tlb_flush_pending (Aaron Tomlin) [1677343]
-- [mm] mprotect: flush TLB if potentially racing with a parallel reclaim leaving stale TLB entries (Aaron Tomlin) [1677343]
-- [mm] fix mprotect() behaviour on VM_LOCKED VMAs (Aaron Tomlin) [1677343]
-- [mm] mm: update mmu_gather range correctly (Aaron Tomlin) [1677343]
-- [mm] mmu_gather: move minimal range calculations into generic code (Aaron Tomlin) [1677343]
-- [mm] split 'tlb_flush_mmu()' into tlb flushing and memory freeing parts (Aaron Tomlin) [1677343]
-- [s390] mm: introduce ptep_flush_lazy helper (Aaron Tomlin) [1677343]
-- [powerpc] slb: Force a full SLB flush when we insert for a bad EA (Desnes Augusto Nunes do Rosario) [1590853]
-- [powerpc] Only disable HAVE_EFFICIENT_UNALIGNED_ACCESS on POWER7 little endian (Yauheni Kaliuta) [1659731]
-- [powerpc] Fix bad inline asm constraint in create_zero_mask() (Yauheni Kaliuta) [1657284]
-- [edac] x86/mce/amd, edac/mce_amd: Enumerate Reserved SMCA bank type (David Arcari) [1676301]
-- [x86] mce/amd: Pass the bank number to smca_get_bank_type() (David Arcari) [1676301]
-- [x86] mce/amd: Define a function to get SMCA bank type (David Arcari) [1676301]
-- [x86] mce/amd: Allow any CPU to initialize the smca_banks array (David Arcari) [1676301]
-- [x86] mce/amd: Carve out SMCA bank configuration (David Arcari) [1676301]
-- [x86] mce: Convert threshold_bank.cpus from atomic_t to refcount_t (David Arcari) [1676301]
-- [x86] ras/amd: Make sysfs names of banks more user-friendly (David Arcari) [1676301]
-- [x86] mce/amd: Make the init code more robust (David Arcari) [1676301]
-- [x86] ras: Hide SMCA bank names (David Arcari) [1676301]
-- [x86] cpu: avoid crash in get_cpu_cache_id() (David Arcari) [1626279]
-
-* Thu Mar 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1016.el7]
-- [netdrv] cxgb4: Mask out interrupts that are not enabled (Arjun Vynipadath) [1678729]
-- [netdrv] ice: fix overlong string, update stats output (Jonathan Toppins) [1684149]
-- [netdrv] ice: Fix for FC get rx/tx pause params (Jonathan Toppins) [1684149]
-- [netdrv] ice: use absolute vector ID for VFs (Jonathan Toppins) [1684149]
-- [netdrv] ice: check for a leaf node presence (Jonathan Toppins) [1684149]
-- [netdrv] ice: flush Tx pipe on disable queue timeout (Jonathan Toppins) [1684149]
-- [netdrv] ice: clear VF ARQLEN register on reset (Jonathan Toppins) [1684149]
-- [netdrv] ice: don't spam VFs with link messages (Jonathan Toppins) [1684149]
-- [netdrv] ice: only use the VF for ICE_VSI_VF in ice_vsi_release (Jonathan Toppins) [1684149]
-- [netdrv] ice: fix numeric overflow warning (Jonathan Toppins) [1684149]
-- [netdrv] ice: fix issue where host reboots on unload when iommu=on (Jonathan Toppins) [1684149]
-- [netdrv] ice: fix ice_remove_rule_internal vsi_list handling (Jonathan Toppins) [1684149]
-- [netdrv] ice: fix stack hogs from struct ice_vsi_ctx structures (Jonathan Toppins) [1684149]
-- [netdrv] ice: sizeof(<type>) should be avoided (Jonathan Toppins) [1684149]
-- [netdrv] ice: Fix added in VSI supported nodes calc (Jonathan Toppins) [1684149]
-- [netdrv] ice: Fix the calculation of ICE_MAX_MTU (Jonathan Toppins) [1684149]
-- [netdrv] ixgbevf: update driver version for RHEL7.7 (Ken Cox) [1637723]
-- [netdrv] xfrm: prefer secpath_set over secpath_dup (Ken Cox) [1637723]
-- [netdrv] intel: use secpath helpers in more places (Ken Cox) [1637723]
-- [netdrv] ixgbevf: add support for software timestamps (Ken Cox) [1637723]
-- [netdrv] ixgbe/ixgbevf: fix XFRM_ALGO dependency (Ken Cox) [1637723]
-- [netdrv] ixgbevf: off by one in ixgbevf_ipsec_tx() (Ken Cox) [1637723]
-- [netdrv] ixgbevf: fix msglen for ipsec mbx messages (Ken Cox) [1637723]
-- [netdrv] ixgbevf: remove ndo_poll_controller (Ken Cox) [1637723]
-- [netdrv] ixgbevf: enable VF IPsec offload operations (Ken Cox) [1637723]
-- [netdrv] ixgbevf: add VF IPsec offload code (Ken Cox) [1637723]
-- [netdrv] ixgbevf: add defines for IPsec offload request (Ken Cox) [1637723]
-- [netdrv] ixgbevf: VF2VF TCP RSS (Ken Cox) [1637723]
-- [netdrv] treewide: Use array_size() in vmalloc() (Ken Cox) [1637723]
-- [netdrv] ixgbevf: fix possible race in the reset subtask (Ken Cox) [1637723]
-- [netdrv] ixgbevf: Fix coexistence of malicious driver detection with XDP (Ken Cox) [1637723]
-- [netdrv] ixgbevf: fix MAC address changes through ixgbevf_set_mac() (Ken Cox) [1637723]
-- [netdrv] ixgbevf: fix ixgbevf_xmit_frame()'s return type (Ken Cox) [1637723]
-- [netdrv] ixgbevf: ensure xdp_ring resources are free'd on error exit (Ken Cox) [1637723]
-- [netdrv] ixgbevf: Add support for meta data (Ken Cox) [1637723]
-- [netdrv] ixgbevf: do not print registers to dmesg in ixgbevf_get_regs (Ken Cox) [1637723]
-- [netdrv] ixgbe: update driver version for RHEL7.7 (Ken Cox) [1637718]
-- [netdrv] xfrm: prefer secpath_set over secpath_dup (Ken Cox) [1637718]
-- [netdrv] intel: use secpath helpers in more places (Ken Cox) [1637718]
-- [netdrv] ixgbe/ixgbevf: fix XFRM_ALGO dependency (Ken Cox) [1637718]
-- [netdrv] ixgbe: use mii_bus to handle MII related ioctls (Ken Cox) [1637718]
-- [netdrv] ixgbe: register a mdiobus (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix race when the VF driver does a reset (Ken Cox) [1637718]
-- [netdrv] ixgbe: recognize 1000BaseLX SFP modules as 1Gbps (Ken Cox) [1637718]
-- [netdrv] ixgbe: Replace synchronize_sched() with synchronize_rcu() (Ken Cox) [1637718]
-- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Ken Cox) [1637718]
-- [netdrv] ixgbe: allow IPsec Tx offload in VEPA mode (Ken Cox) [1637718]
-- [netdrv] ixgbe: don't clear_bit on xdp_ring->state if xdp_ring is null (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix MAC anti-spoofing filter after VFLR (Ken Cox) [1637718]
-- [netdrv] remove <net/busy_poll.h> inclusion when not needed (Ken Cox) [1637718]
-- [netdrv] ixgbe: check return value of napi_complete_done() (Ken Cox) [1637718]
-- [netdrv] ixgbe: add AF_XDP zero-copy Tx support (Ken Cox) [1637718]
-- [netdrv] ixgbe: move common Tx functions to ixgbe_txrx_common.h (Ken Cox) [1637718]
-- [netdrv] ixgbe: add AF_XDP zero-copy Rx support (Ken Cox) [1637718]
-- [netdrv] ixgbe: move common Rx functions to ixgbe_txrx_common.h (Ken Cox) [1637718]
-- [netdrv] ixgbe: added Rx/Tx ring disable/enable functions (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix crash with VFs and flow director on interface flap (Ken Cox) [1637718]
-- [netdrv] ixgbe: remove redundant function ixgbe_fw_recovery_mode() (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix ixgbe TX hangs with XDP_TX beyond queue limit (Ken Cox) [1637718]
-- [netdrv] ixgbe: remove ndo_poll_controller (Ken Cox) [1637718]
-- [netdrv] intel-ethernet: use correct module license (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix the return value for unsupported VF offload (Ken Cox) [1637718]
-- [netdrv] ixgbe: disallow IPsec Tx offload when in SR-IOV mode (Ken Cox) [1637718]
-- [netdrv] ixgbe: add VF IPsec offload request message handling (Ken Cox) [1637718]
-- [netdrv] ixgbe: add VF IPsec offload enable flag (Ken Cox) [1637718]
-- [netdrv] ixgbe: add VF IPsec management (Ken Cox) [1637718]
-- [netdrv] ixgbe: prep IPsec constants for later use (Ken Cox) [1637718]
-- [netdrv] ixgbe: reload IPsec IP table after sa tables (Ken Cox) [1637718]
-- [netdrv] ixgbe: don't clear IPsec sa counters on HW clearing (Ken Cox) [1637718]
-- [netdrv] ixgbe: firmware recovery mode (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix driver behaviour after issuing VFLR (Ken Cox) [1637718]
-- [netdrv] ixgbe: Prevent unsupported configurations with XDP (Ken Cox) [1637718]
-- [netdrv] ixgbe: Replace GFP_ATOMIC with GFP_KERNEL (Ken Cox) [1637718]
-- [netdrv] ixgbe: Refactor queue disable logic to take completion time into account (Ken Cox) [1637718]
-- [netdrv] ixgbe: Reorder Tx/Rx shutdown to reduce time needed to stop device (Ken Cox) [1637718]
-- [netdrv] ixgbe: add ipsec security registers into ethtool register dump (Ken Cox) [1637718]
-- [netdrv] ixgbe: Do not allow LRO or MTU change with XDP (Ken Cox) [1637718]
-- [netdrv] ixgbe: Off by one in ixgbe_ipsec_tx() (Ken Cox) [1637718]
-- [netdrv] ixgbe: Be more careful when modifying MAC filters (Ken Cox) [1637718]
-- [netdrv] ixgbe: split XDP_TX tail and XDP_REDIRECT map flushing (Ken Cox) [1637718]
-- [netdrv] treewide: Use array_size() in vmalloc() (Ken Cox) [1637718]
-- [netdrv] treewide: kzalloc() -> kcalloc() (Ken Cox) [1637718]
-- [netdrv] treewide: kmalloc() -> kmalloc_array() (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix bit definitions and add support for testing for ipsec support (Ken Cox) [1637718]
-- [netdrv] ixgbe: Avoid loopback and fix boolean logic in ipsec_stop_data (Ken Cox) [1637718]
-- [netdrv] ixgbe: Move ipsec init function to before reset call (Ken Cox) [1637718]
-- [netdrv] ixgbe: Use CONFIG_XFRM_OFFLOAD instead of CONFIG_XFRM (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix setting of TC configuration for macvlan case (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix broken ipsec Rx with proper cast on spi (Ken Cox) [1637718]
-- [netdrv] ixgbe: check ipsec ip addr against mgmt filters (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix possible race in reset subtask (Ken Cox) [1637718]
-- [netdrv] ixgbe: introduce a helper to simplify code (Ken Cox) [1637718]
-- [netdrv] ixgbe: implement flush flag for ndo_xdp_xmit (Ken Cox) [1637718]
-- [netdrv] xdp: add flags argument to ndo_xdp_xmit API (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix parsing of TC actions for HW offload (Ken Cox) [1637718]
-- [netdrv] xdp: change ndo_xdp_xmit API to support bulking (Ken Cox) [1637718]
-- [netdrv] revert "ixgbe: release lock for the duration of ixgbe_suspend_close()" (Ken Cox) [1637718]
-- [netdrv] ixgbe: release lock for the duration of ixgbe_suspend_close() (Ken Cox) [1637718]
-- [netdrv] xdp: rhashtable with allocator ID to pointer mapping (Ken Cox) [1637718]
-- [netdrv] xdp: transition into using xdp_frame for ndo_xdp_xmit (Ken Cox) [1637718]
-- [netdrv] xdp: transition into using xdp_frame for return API (Ken Cox) [1637718]
-- [netdrv] ixgbe: use xdp_return_frame API (Ken Cox) [1637718]
-- [netdrv] ixgbe: use tc_cls_can_offload_and_chain0() (Ken Cox) [1637718]
-- [netdrv] bpf, ixgbe: add meta data support (Ken Cox) [1637718]
-- [netdrv] bpf: add meta pointer for direct access (Ken Cox) [1637718]
-- [netdrv] ixgbe: use return codes from ndo_xdp_xmit that are distinguishable (Ken Cox) [1637718]
-- [netdrv] ixgbe: change ndo_xdp_xmit return code on xmit errors (Ken Cox) [1637718]
-- [netdrv] xdp: Add batching support to redirect map (Ken Cox) [1637718]
-- [netdrv] ixgbe: add initial support for xdp redirect (Ken Cox) [1637718]
-- [netdrv] ixgbe: Use pcie_flr() instead of duplicating it (Ken Cox) [1637718]
-- [netdrv] ixgbe: use kzalloc for allocating one thing (Ken Cox) [1637718]
-
-* Thu Mar 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1015.el7]
-- [iommu] iova: Make rcache flush optional on IOVA allocation failure (Jerry Snitselaar) [1615865]
-- [iommu] iova: Don't try to copy anchor nodes (Jerry Snitselaar) [1615865]
-- [iommu] iova: Try harder to allocate from rcache magazine (Jerry Snitselaar) [1615865]
-- [iommu] iova: Make rcache limit_pfn handling more robust (Jerry Snitselaar) [1615865]
-- [iommu] iova: Simplify domain destruction (Jerry Snitselaar) [1615865]
-- [iommu] iova: Simplify cached node logic (Jerry Snitselaar) [1615865]
-- [iommu] iova: Add rbtree anchor node (Jerry Snitselaar) [1615865]
-- [iommu] iova: Make dma_32bit_pfn implicit (Jerry Snitselaar) [1615865]
-- [iommu] iova: Extend rbtree node caching (Jerry Snitselaar) [1615865]
-- [iommu] iova: Optimise the padding calculation (Jerry Snitselaar) [1615865]
-- [iommu] iova: Optimise rbtree searching (Jerry Snitselaar) [1615865]
-- [iommu] iova: Consolidate code for adding new node to iovad domain rbtree (Jerry Snitselaar) [1615865]
-- [iommu] iova: Use rb_entry() (Jerry Snitselaar) [1615865]
-- [iommu] iova: Extend cached node lookup condition (Jerry Snitselaar) [1615865]
-- [kernel] iommu/iova: Fix compile error with CONFIG_IOMMU_IOVA=m (Jerry Snitselaar) [1615865]
-- [kernel] iommu: Add dummy implementations for !IOMMU_IOVA (Jerry Snitselaar) [1615865]
-- [pinctrl] intel: Add Intel Cedar Fork PCH pin controller support (Steve Best) [1482430]
-- [i2c] ismt: Add support for Intel Cedar Fork (Steve Best) [1482430]
-- [i2c] i801: Add support for Intel Cedar Fork (Steve Best) [1482430]
-- [scsi] scsi: smartpqi_init: fix boolean expression in pqi_device_remove_start (Don Brace) [1678479]
-- [cpufreq] intel_pstate: Register when ACPI PCCH is present (Prarit Bhargava) [1671693]
-- [linux] cpuset: Fix potential deadlock w/ set_mems_allowed (Waiman Long) [1679033]
-- [linux] audit: Add new syscalls to the perm=w filter (Richard Guy Briggs) [1642315]
-- [fs] autofs: add strictexpire mount option (Ian Kent) [1653208]
-- [fs] autofs: change catatonic setting to a bit flag (Ian Kent) [1653208]
-- [fs] autofs: simplify parse_options() function call (Ian Kent) [1653208]
-- [fs] autofs: add AUTOFS_EXP_FORCED flag (Ian Kent) [1653208]
-- [fs] autofs: make expire flags usage consistent with v5 params (Ian Kent) [1653208]
-- [fs] autofs: make autofs_expire_indirect() static (Ian Kent) [1653208]
-- [fs] autofs: make autofs_expire_direct() static (Ian Kent) [1653208]
-- [fs] autofs: fix clearing AUTOFS_EXP_LEAVES in autofs_expire_indirect() (Ian Kent) [1653208]
-- [fs] autofs: fix inconsistent use of now variable (Ian Kent) [1653208]
-- [fs] autofs: fix directory and symlink access (Ian Kent) [1580099]
-- [fs] autofs: fix slab out of bounds read in getname_kernel() (Ian Kent) [1657106]
-- [fs] quota: Properly return errors from dquot_writeback_dquots() (Lukas Czerner) [1680638]
-- [fs] quota: Fix race between dqput() and dquot_scan_active() (Lukas Czerner) [1680638]
-- [fs] xfs: perform file write checks before splice write (Brian Foster) [1677592]
-- [fs] xfs: print dangling delalloc extents (Brian Foster) [1677592]
-- [fs] devpts: Make devpts_kill_sb safe if fsi is NULL (Bill O'Donnell) [1662232]
-- [fs] fs: fix guard_bio_eod to check for real EOD errors (Carlos Maiolino) [1673853]
-- [fs] ext4: fix dir_nlink behaviour (Lukas Czerner) [1631374]
-- [fs] xfs: fix f_ffree value for statfs when project quota is set (Bill O'Donnell) [1665990]
-- [fs] xfs: don't screw up direct writes when freesp is fragmented (Brian Foster) [1667523]
-- [fs] cifs: check ntwrk_buf_start for NULL before dereferencing it (Leif Sahlberg) [1021460]
-- [fs] smb2: fix missing files in root share directory listing (Leif Sahlberg) [1607192]
-- [infiniband] IB/hfi1: Remove overly conservative VM_EXEC flag check (Alex Estrin) [1677757]
-- [netdrv] cnic: remove redundant pointer req and variable func (Maurizio Lombardi) [1643542]
-- [netdrv] cnic: tidy up a size calculation (Maurizio Lombardi) [1643542]
-- [netdrv] ibmveth: Do not process frames after calling napi_reschedule (Steve Best) [1683171]
-- [netdrv] cxgb4: Add new T6 PCI device ids 0x608b (Arjun Vynipadath) [1642475]
-- [netdrv] mlxsw: spectrum_switchdev: Do not leak RIFs when removing bridge (Ivan Vecera) [1667381]
-- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Neil Horman) [1670626]
-- [netdrv] vmxnet3: Replace msleep(1) with usleep_range() (Neil Horman) [1670626]
-- [netdrv] vmxnet3: use DMA memory barriers where required (Neil Horman) [1670626]
-- [netdrv] vmxnet3: set the DMA mask before the first DMA map operation (Neil Horman) [1670626]
-- [net] netfilter: nf_tables: fix nft_pktinfo initialization (Paolo Abeni) [1673138]
-- [net] ip6_gre: Request headroom in __gre6_xmit() (Jiri Benc) [1485785]
-- [net] api: fix compatibility of linux/in.h with netinet/in.h (Guillaume Nault) [1672242]
-- [net] netfilter: nf_nat: skip nat clash resolution for same-origin entries (Florian Westphal) [1648965]
-- [net] netfilter: nf_conntrack: resolve clash for matching conntracks (Florian Westphal) [1648965]
-- [net] netfilter: conntrack: skip clash resolution if nat is in place (Florian Westphal) [1648965]
-- [net] netfilter: conntrack: introduce clash resolution on insertion race (Florian Westphal) [1648965]
-- [net] netfilter: conntrack: fix race between confirmation and flush (Florian Westphal) [1648965]
-- [net] netfilter: conntrack: introduce nf_ct_acct_update() (Florian Westphal) [1648965]
-- [net] sched: act_tunnel_key: Don't dump dst port if it wasn't set (Ivan Vecera) [1660903]
-- [net] sched: act_tunnel_key: Allow key-less tunnels (Ivan Vecera) [1660903]
-- [net] tun: implement carrier change (Guillaume Nault) [1665389]
-- [net] netfilter: ipset: Make invalid MAC address checks consistent (Stefano Brivio) [1607252]
-- [net] netfilter: ipset: Allow matching on destination MAC address for mac and ipmac sets (Stefano Brivio) [1607252]
-- [net] igmp: Allow user-space configuration of igmp unsolicited report interval (Hangbin Liu) [1663941]
-- [net] igmp: Don't flush routing cache when force_igmp_version is modified (Hangbin Liu) [1663941]
-- [net] sysfs: Fix memory leak in XPS configuration (Paolo Abeni) [1623813]
-- [net] Fix a bug in removing queues from XPS map (Paolo Abeni) [1623813]
-- [net] Add support for XPS with QoS via traffic classes (Paolo Abeni) [1623813]
-- [net] Refactor removal of queues from XPS map and apply on num_tc changes (Paolo Abeni) [1623813]
-- [net] use *pb[l] to print bitmaps including cpumasks and nodemasks (Paolo Abeni) [1623813]
-- [powerpc] pseries: fix "of: error: Bad of_node_put() on /cpus" during DLPAR (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: Fix of_node_put() underflow during DLPAR remove (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: Fix phandle extraction for dynamic nodes (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] sysfs: Fix reference leak of cpu device_nodes present at boot (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: Fix parent_dn reference leak in add_dt_node() (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: remove dlpar_attach_node dependency on full path (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: re-use code from of_helpers module (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: extract of_helpers module (Desnes Augusto Nunes do Rosario) [1674261]
-- [x86] signals: Fix lower/upper bound reporting in compat siginfo (Rui Wang) [1573854]
-- [x86] signals: Add missing signal_compat code for x86 features (Rui Wang) [1573854]
-
-* Fri Mar 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1014.el7]
-- [netdrv] ice: add const qualifier to mac_addr parameter (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for new PHY types (Jonathan Toppins) [1454916]
-- [netdrv] ice: Offload SCTP checksum (Jonathan Toppins) [1454916]
-- [netdrv] ice: Allow for software timestamping (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement getting and setting ethtool coalesce (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for adaptive interrupt moderation (Jonathan Toppins) [1454916]
-- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move aggregator list into ice_hw instance (Jonathan Toppins) [1454916]
-- [netdrv] ice: Rework queue management code for reuse (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add ethtool private flag to make forcing link down optional (Jonathan Toppins) [1454916]
-- [netdrv] ice: Set physical link up/down when an interface is set up/down (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement support for normal get_eeprom[_len] ethtool ops (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add ethtool set_phys_id handler (Jonathan Toppins) [1454916]
-- [netdrv] ice: Configure RSS LUT and HASH KEY in rebuild path (Jonathan Toppins) [1454916]
-- [netdrv] ice: Refactor a few Tx scheduler functions (Jonathan Toppins) [1454916]
-- [netdrv] ice: Do not enable NAPI on q_vectors that have no rings (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix possible NULL pointer de-reference (Jonathan Toppins) [1454916]
-- [netdrv] ice: Use Tx|Rx in comments (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cosmetic formatting changes (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cleanup short function signatures (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cleanup ice_tx_timeout() (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix return value from NAPI poll (Jonathan Toppins) [1454916]
-- [netdrv] ice: Constify global structures that can/should be (Jonathan Toppins) [1454916]
-- [netdrv] ice: Do not set LAN_EN for MAC-VLAN filters (Jonathan Toppins) [1454916]
-- [netdrv] ice: Pass the return value of ice_init_def_sw_recp() (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cleanup duplicate control queue code (Jonathan Toppins) [1454916]
-- [netdrv] ice: Do autoneg based on VSI state (Jonathan Toppins) [1454916]
-- [netdrv] ice: Remove ICE_MAX_TXQ_PER_TXQG check when configuring Tx queue (Jonathan Toppins) [1454916]
-- [netdrv] ice: Destroy scheduler tree in reset path (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix to make VLAN priority tagged traffic to appear on all TCs (Jonathan Toppins) [1454916]
-- [netdrv] ice: Call pci_disable_sriov before stopping queues for VF (Jonathan Toppins) [1454916]
-- [netdrv] ice: Increase Rx queue disable timeout (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix NVM mask defines (Jonathan Toppins) [1454916]
-- [netdrv] ice: Avoid nested RTNL locking in ice_dis_vsi (Jonathan Toppins) [1454916]
-- [netdrv] ice: Calculate guaranteed VSIs per function and use it (Jonathan Toppins) [1454916]
-- [netdrv] ice: Remove node before releasing VSI (Jonathan Toppins) [1454916]
-- [netdrv] ice: Check for q_vector when stopping rings (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix debug print in ice_tx_timeout (Jonathan Toppins) [1454916]
-- [netdrv] ice: Change req_speeds to be u16 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix the bytecount sent to netdev_tx_sent_queue (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix tx_timeout in PF driver (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix napi delete calls for remove (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix typo in error message (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix flags for port VLAN (Jonathan Toppins) [1454916]
-- [netdrv] ice: Remove duplicate addition of VLANs in replay path (Jonathan Toppins) [1454916]
-- [netdrv] ice: Free VSI contexts during for unload (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix dead device link issue with flow control (Jonathan Toppins) [1454916]
-- [netdrv] ice: Check for reset in progress during remove (Jonathan Toppins) [1454916]
-- [netdrv] ice: Set carrier state and start/stop queues in rebuild (Jonathan Toppins) [1454916]
-- [netdrv] ice: Poll for link status change (Jonathan Toppins) [1454916]
-- [netdrv] ice: Allocate VF interrupts and set queue map (Jonathan Toppins) [1454916]
-- [netdrv] ice: Introduce ice_dev_onetime_setup (Jonathan Toppins) [1454916]
-- [netdrv] ice: Use capability count returned by the firmware (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update expected FW version (Jonathan Toppins) [1454916]
-- [netdrv] ice: Change device ID define names to align with branding string (Jonathan Toppins) [1454916]
-- [netdrv] ice: Make ice_msix_clean_rings static (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update version string (Jonathan Toppins) [1454916]
-- [netdrv] ice: Use the right function to enable/disable VSI (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add more flexibility on how we assign an ITR index (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix potential null pointer issues (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add code to go from ICE_FWD_TO_VSI_LIST to ICE_FWD_TO_VSI (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix forward to queue group logic (Jonathan Toppins) [1454916]
-- [netdrv] ice: Extend malicious operations detection logic (Jonathan Toppins) [1454916]
-- [netdrv] ice: Notify VF of link status change (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement virtchnl commands for AVF support (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add handlers for VF netdevice operations (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for VF reset events (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update VSI and queue management code to handle VF VSI (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add handler to configure SR-IOV (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support to detect SR-IOV capability and mailbox queues (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix error on driver remove (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for dynamic interrupt moderation (Jonathan Toppins) [1454916]
-- [netdrv] ice: Align ice_reset_req enum values to hardware reset values (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement ethtool hook for RSS switch (Jonathan Toppins) [1454916]
-- [netdrv] ice: Split irq_tracker into sw_irq_tracker and hw_irq_tracker (Jonathan Toppins) [1454916]
-- [netdrv] ice: Check for actual link state of port after reset (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement VSI replay framework (Jonathan Toppins) [1454916]
-- [netdrv] ice: Expand use of VSI handles part 2/2 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Expand use of VSI handles part 1/2 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Change pf state behavior to protect reset path (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 7/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 6/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 5/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 4/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 3/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 2/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 1/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: fix changing of ring descriptor size (ethtool -G) (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update to capabilities admin queue command (Jonathan Toppins) [1454916]
-- [netdrv] ice: Query the Tx scheduler node before adding it (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update comment for ice_fltr_mgmt_list_entry (Jonathan Toppins) [1454916]
-- [netdrv] ice: update fw version check logic (Jonathan Toppins) [1454916]
-- [netdrv] ice: update branding strings and supported device ids (Jonathan Toppins) [1454916]
-- [netdrv] ice: replace unnecessary memcpy with direct assignment (Jonathan Toppins) [1454916]
-- [netdrv] ice: use [sr]q.count when checking if queue is initialized (Jonathan Toppins) [1454916]
-- [netdrv] ice: remove ndo_poll_controller (Jonathan Toppins) [1454916]
-- [netdrv] intel-ethernet: use correct module license (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix and update driver version string (Jonathan Toppins) [1454916]
-- [netdrv] ice: Introduce SERVICE_DIS flag and service routine functions (Jonathan Toppins) [1454916]
-- [netdrv] ice: Enable VSI Rx/Tx pruning only when VLAN 0 is active (Jonathan Toppins) [1454916]
-- [netdrv] ice: Enable firmware logging during device initialization (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement ice_bridge_getlink and ice_bridge_setlink (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for Tx hang, Tx timeout and malicious driver detection (Jonathan Toppins) [1454916]
-- [netdrv] ice: Clean up register file (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement handlers for ethtool PHY/link operations (Jonathan Toppins) [1454916]
-- [netdrv] ice: Refactor VSI allocation, deletion and rebuild flow (Jonathan Toppins) [1454916]
-- [netdrv] ice: Refactor switch rule management structures and functions (Jonathan Toppins) [1454916]
-- [netdrv] ice: Code optimization for ice_fill_sw_rule() (Jonathan Toppins) [1454916]
-- [netdrv] ice: Prevent control queue operations during reset (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update request resource command to latest specification (Jonathan Toppins) [1454916]
-- [netdrv] ice: Updates to Tx scheduler code (Jonathan Toppins) [1454916]
-- [netdrv] ice: Rework flex descriptor programming (Jonathan Toppins) [1454916]
-- [netdrv] ice: Trivial formatting fixes (Jonathan Toppins) [1454916]
-- [netdrv] ice: Change struct members from bool to u8 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix potential return of uninitialized value (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix a few null pointer dereference issues (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update to interrupts enabled in OICR (Jonathan Toppins) [1454916]
-- [netdrv] ice: Set VLAN flags correctly (Jonathan Toppins) [1454916]
-- [netdrv] ice: Use order_base_2 to calculate higher power of 2 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix bugs in control queue processing (Jonathan Toppins) [1454916]
-- [netdrv] ice: Clean control queues only when they are initialized (Jonathan Toppins) [1454916]
-- [netdrv] ice: Report stats for allocated queues via ethtool stats (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cleanup magic number (Jonathan Toppins) [1454916]
-- [netdrv] ice: Remove unnecessary node owner check (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix multiple static analyser warnings (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update NVM AQ command functions (Jonathan Toppins) [1454916]
-- [netdrv] ice: Set rq_last_status when cleaning rq (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix insufficient memory issue in ice_aq_manage_mac_read (Jonathan Toppins) [1454916]
-- [netdrv] ice: Do not check INTEVENT bit for OICR interrupts (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix incorrect comment for action type (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix initialization for num_nodes_added (Jonathan Toppins) [1454916]
-- [netdrv] ice: Bug fixes in ethtool code (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix error return code in ice_init_hw() (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement filter sync, NDO operations and bump version (Jonathan Toppins) [1454916]
-- [netdrv] ice: Support link events, reset and rebuild (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update Tx scheduler tree for VSI multi-Tx queue support (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add stats and ethtool support (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for VLANs and offloads (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement transmit and NAPI support (Jonathan Toppins) [1454916]
-- [netdrv] ice: Configure VSIs for Tx/Rx (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for switch filter programming (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for VSI allocation and deallocation (Jonathan Toppins) [1454916]
-- [netdrv] ice: Initialize PF and setup miscellaneous interrupt (Jonathan Toppins) [1454916]
-- [netdrv] ice: Get MAC/PHY/link info and scheduler topology (Jonathan Toppins) [1454916]
-- [netdrv] ice: Get switch config, scheduler config and device capabilities (Jonathan Toppins) [1454916]
-- [netdrv] ice: Start hardware initialization (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for control queues (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add basic driver framework for Intel(R) E800 Series (Jonathan Toppins) [1454916]
-
-* Fri Mar 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1013.el7]
-- [infiniband] ib/mlx5: Make mlx5_ib_stage_odp_cleanup() static (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx4: Fix using wrong function to destroy sqp AHs under SRIOV (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Fix check for supported user flags when creating a QP (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Declare local functions 'static' (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Don't override existing ip_protocol (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move to use common phys port names for vport representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Allow MAC invalidation while spoofchk is ON (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Take lock with IRQs disabled to avoid deadlock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix wrong private flag usage causing checksum disable (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Reuse fold sw stats in representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix wrong (zero) TX drop counter indication for representor (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Present the representors SW stats when state is not opened (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Separate between ethtool and netdev software stats folding (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: Add masking for a few queries on HCA caps (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Force CHECKSUM_UNNECESSARY for short ethernet frames (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Signedness bug in UVERBS_HANDLER() (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix long EEH recover time with NVMe offloads (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx4: Remove unneeded NULL check (Alaa Hleihel) [1642498]
-- [kernel] rdma/mlx5: Delete declaration of already removed function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix wrong error code return on FEC query failure (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: drop useless LIST_HEAD (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Delete unreachable handle_atomic code by simplifying SW completion (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Continue driver initialization despite debugfs failure (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Enable TX on a DEVX flow table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix cb_ident duplicate in indirect block register (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix LAG requirement when CONFIG_MLX5_ESWITCH is off (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix query_nic_sys_image_guid() error during init (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support tunnel encap over tagged Ethernet (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Support VLAN encap ETH header generation (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Re-order route and encap header memory allocation (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Tunnel encap ETH header helper function (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Fail attempt to offload e-switch TC encap flows with vlan on underlay (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Tunnel routing output devs helper function (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Fail attempt to offload e-switch TC flows with egress upper devices (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Handle LAG FW commands failure gracefully (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Make RoCE and SR-IOV LAG modes explicit (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Rename mlx5_lag_is_bonded() to __mlx5_lag_is_active() (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Allow co-enablement of uplink LAG and SRIOV (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Allow/disallow LAG according to pre-req only (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Adjustments for the activate LAG logic to run under sriov (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: Duplicate offloaded TC eswitch rules under uplink LAG (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: Offload TC e-switch rules with egress LAG device (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: In case of LAG, one switch parent id is used for all representors (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: Enhance flow counter scheme for offloaded TC eswitch rules (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: Infrastructure for duplicated offloading of TC flows (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: E-Switch, Add peer miss rules (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Introduce inter-device communication mechanism (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Fold the modify lag code into function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add lag affinity info to log (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Split the activate lag function into two routines (Alaa Hleihel) [1642498]
-- [kernel] mlx5: E-Switch, Introduce flow counter affinity (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Make EQE access methods inline (Alaa Hleihel) [1642498]
-- [infiniband] {net, ib}/mlx5: Move Page fault EQ and ODP logic to RDMA (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Generic EQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Different EQ types (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use multi threaded workqueue for page fault handling (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Privatize eq_table and friends (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, irq_info and rmap belong to eq_table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Create all EQs in one place (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Move all EQ logic to eq.c (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Remove redundant completion EQ list lock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, No need to store eq index as a field (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Remove unused fields and structures (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Use the right place to store/read IRQ affinity hint (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support multiple encapsulations for a TC flow (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Allow association of a flow to multiple encaps (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Change parse attr struct to accommodate multiple tunnel infos (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Support header rewrite actions with remote port mirroring (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Replace the split logic with extended destination (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Annul encap action ordering requirement (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Move flow attr reformat action bit to per dest flags (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Refactor eswitch flow attr for destination specific properties (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5: E-Switch, Rename esw attr mirror count field (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5: Consider encapsulation properties when comparing destinations (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5: Support extended destination format in flow steering command (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5: E-Switch, Change vhca id valid bool field to bit flag (Alaa Hleihel) [1642383 1642498]
-- [kernel] mlx5: Introduce extended destination fields (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Add GRE protocol offloading (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Move TC tunnel offloading code to separate source file (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Branch according to classified tunnel type (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Refactor VXLAN tunnel decap offloading code (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Refactor VXLAN tunnel encap offloading code (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Replace egdev with indirect block notifications (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Propagate the filter's net device to mlx5e structures (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Provide the TC filter netdev as parameter to flower callbacks (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Support TC indirect block notifications for eswitch uplink reprs (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Store eswitch uplink representor state on a dedicated struct (Alaa Hleihel) [1642362 1642498]
-- [kernel] mlx5: Revise gre and nvgre key formats (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Remove the false indication of software timestamping support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Typo fix in del_sw_hw_rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Fix wrong early return in receive queue poll (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Cancel DIM work on close SQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove unused UDP GSO remaining counter (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid encap flows deletion attempt the 1st time a neigh is resolved (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Properly initialize flow attributes for slow path eswitch rule deletion (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid overriding the user provided priority for offloaded tc rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Err if asked to mirror a goto chain tc eswitch rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Verify MPWQE stride size is in range (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix default amount of channels for VF representors (Alaa Hleihel) [1642498]
-- [kernel] mlx5: E-Switch, Fix fdb cap bits swap (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Block DEVX umem from the non applicable cases (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix implicit ODP interrupted page fault (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: fix get_ip_proto() (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: Correctly set PFC param if global pause is turned off (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Fix build break when CONFIG_INET is off (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Change min MTU size to ETH_MIN_MTU (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx5: Initialize return variable in case pagefault was skipped (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix page fault handling for MW (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Skip non-ODP MR when handling a page fault (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Avoid load failure due to unknown link width (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix XRC QP support after introducing extended atomic (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Fix fence type for IB_WR_LOCAL_INV WR (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix failing ethtool query on FEC query error (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Removed unnecessary warnings in FEC caps query (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix wrong field name in FEC related functions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix a bug in turning off FEC policy in unsupported speeds (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix selftest for small MTUs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, verify received packet size in Linear Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Apply the correct check for supporting TC esw rules split (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Adjust to max number of channles when re-attaching (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Always use the match level enum when parsing TC rule match (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Claim TC hw offloads support only under a proper build config (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Don't match on vlan non-existence if ethertype is wildcarded (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Reset QP after channels are closed (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: IPSec, Fix the SA context hash key (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Fix XRC SRQ umem valid bits (Alaa Hleihel) [1642498]
-- [netdrv] mlx4: Fix UBSAN warning of signed integer overflow (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Fix uninitialized variable compilation warning (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Zero out lkey field in SW2HW_MPT fw command (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx5: Allocate enough space for the FDB sub-namespaces (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Added 'raw_errors_laneX' fields to ethtool statistics (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Added "per_lane_error_counters" cap bit to PCAM (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool driver callback for query/set FEC policy (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add port FEC get/set functions (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add FEC fields to Port Phy Link Mode (PPLM) reg (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Remove counter from idr after removing it from list (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Take fs_counters dellist before addlist (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Refactor fragmented buffer struct fields and init flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support offloading tc priorities and chains for eswitch flows (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use a slow path rule instead if vxlan neighbour isn't available (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Enable setting goto slow path chain action (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid duplicated code for tc offloads add/del fdb rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: For TC offloads, always add new flow instead of appending the actions (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add a no-append flow insertion mode (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Add chains and priorities (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Have explicit API to delete fwd rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Split FDB fast path prio to multiple namespaces (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add cap bits for multi fdb encap (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Split TC add rule path for nic vs e-switch (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Change return type of tc add flow functions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use flow counter IDs and not the wrapping cache object (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Get counters for offloaded flows from callers (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add support for extended atomic operations (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Allow scatter to CQE without global signaled WRs (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Verify that driver supports user flags (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Support scatter to CQE for DC transport type (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Expose DC scatter to CQE capability bit (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix MR cache initialization (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Add support for flow tag to raw create flow (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove extraneous error check (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Verify DEVX object type (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Do not ignore netdevice TX/RX queues number (Alaa Hleihel) [1576416 1642498]
-- [netdrv] mlx5e: Initialize all netdev common structures in one place (Alaa Hleihel) [1576416 1642498]
-- [netdrv] mlx5e: Always initialize update stats delayed work (Alaa Hleihel) [1576416 1642498]
-- [netdrv] mlx5e: Gather common netdev init/cleanup functionality in one place (Alaa Hleihel) [1576416 1642498]
-- [netdrv] mlx5e: Add new counter for aRFS rule insertion failures (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add extack messages for TC offload failures (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: E-Switch, Add extack messages to devlink callbacks (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Cache the system image guid (Alaa Hleihel) [1624551 1642498]
-- [netdrv] mlx5e: Allow reporting of checksum unnecessary (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Enable reporting checksum unnecessary also for L3 packets (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add ethtool control of ring params to VF representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Enable multi-queue and RSS for VF representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Expose ethtool rss key size / indirection table functions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Expose function for building RSS params (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Provide explicit directive if to create inner indirect tirs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Provide flow dest when creating vport rx rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Extract creation of rep's default flow rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Enable stateless offloads for VF representor netdevs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Change VF representors' RQ type (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, Support masks for l3/l4 filters (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Enable DEVX on IB (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Enable DEVX white list commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Manage device uid for DEVX white list commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Expose RAW QP device handles to user space (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove superfluous version print (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set valid umem bit on DEVX (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of TD commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of XRCD commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of CQ creation (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid upon PD allocation (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of RQT commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of TIS commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of TIR commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of MCG commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of DCT commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of SRQ commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of SQ commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of RQ commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of QP creation (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Use uid as part of PD commands (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Update mlx5_ifc with DEVX UID bits (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Set uid as part of DCT commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Set uid as part of SRQ commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Set uid as part of SQ commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Set uid as part of RQ commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Set uid as part of QP commands (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Set uid as part of CQ commands (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Enable vport loopback when user context or QP mandate (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Allow creating RAW ethernet QP with loopback support (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Refactor transport domain bookkeeping logic (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Rename incorrect naming in IFC file (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Use rdma_user_mmap_io (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Allow transition of DCI QP to reset (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Allow creating a matcher for a NIC TX flow table (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add NIC TX namespace when getting a flow table (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add flow actions support to raw create flow (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Refactor raw flow creation (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Don't overwrite action if already set (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Refactor flow action parsing to be more generic (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable attaching packet reformat action to steering flows (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable reformat on NIC RX if supported (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable attaching DECAP action to steering flows (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable decap and packet reformat on flow tables (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable attaching modify header to steering flows (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add NIC TX steering support (Alaa Hleihel) [1641361 1642498]
-- [infiniband] ib/mlx5: Don't hold spin lock while checking device state (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: don't set CHECKSUM_COMPLETE on SCTP packets (Alaa Hleihel) [1467290 1642498]
-- [netdrv] mlx5e: Set ECN for received packets using CQE indication (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Replace PTP clock lock from RW lock to seq lock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move Q counters allocation and drop RQ to init_rx (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move mlx5e_priv_flags into en_ethtool.c (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add flow counters idr (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Store flow counters in a list (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add new list to store deleted flow counters (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Change flow counters addlist type to single linked list (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Extend packet reformat verbs (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add new flow action verb - packet reformat (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/uverbs: Add generic function to fill in flow action object (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add a new flow action verb - modify header (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5e: Make function mlx5i_grp_sw_update_stats() static (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Use priv stats in completion rx flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Add ndo stats support for IPoIB child devices (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Add ndo stats support for IPoIB netdevices (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Initialize max_opened_tc in mlx5i_init flow (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Export packet reformat alloc/dealloc functions (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Pass a namespace for packet reformat ID allocation (Alaa Hleihel) [1641361 1642498]
-- [kernel] mlx5: Expose new packet reformat capabilities (Alaa Hleihel) [1641361 1642498]
-- [netdrv] {net, rdma}/mlx5: Rename encap to reformat packet (Alaa Hleihel) [1641361 1642498]
-- [kernel] mlx5: Move header encap type to IFC header file (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Break encap/decap into two separated flow table creation flags (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Add support for more namespaces when allocating modify header (Alaa Hleihel) [1641361 1642498]
-- [kernel] mlx5: Export modify header alloc/dealloc functions (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Add proper NIC TX steering flow tables support (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Cleanup flow namespace getter switch logic (Alaa Hleihel) [1641361 1642498]
-- [infiniband] ib/mlx5: Change TX affinity assignment in RoCE LAG mode (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add memic command opcode to command checker (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Fix atomic_mode enum values (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_en: use __netdev_tx_sent_queue() (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: add a missing <net/ip.h> include (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Add port and TID to MAD debug print (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Enable debug print of SMPs (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Use minimal rx and tx ring sizes on kdump kernel (Alaa Hleihel) [1641912 1524728 1642498]
-- [infiniband] rdma: Fix dependencies for rdma_user_mmap_io (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Remove unnecessary parentheses (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Use rdma_user_mmap_io (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx5: WQ, fixes for fragmented WQ buffers API (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5: Take only bit 24-26 of wqe.pftype_wq for page fault type (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix memory leak when setting fpga ipsec caps (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Unmap DMA addr from HCA before IOMMU (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Set vlan masks for all offloaded TC rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Fix out of bound access when setting vport rate (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid unbounded peer devices when unpairing TC hairpin rules (Alaa Hleihel) [1624551 1642498]
-- [infiniband] ib/mlx5: Destroy the DEVX object upon error flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: remove ndo_poll_controller (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, Read capabilities only when it is safe (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Check for SQ and not RQ state when modifying hairpin SQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix read from coherent memory (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix possible deadlock from lockdep when adding fte to fg (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, fix udp source port value (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Check for error in mlx5_attach_interface (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Consider PCI domain in search for next dev (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix not releasing read lock when adding flow rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Fix memory leak when creating switchdev mode FDB tables (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Use u16 for Work Queue buffer strides offset (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use u16 for Work Queue buffer fragment size (Alaa Hleihel) [1641348 1642498]
-- [netdrv] mlx5: Fix debugfs cleanup in the device init/remove flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix use-after-free in self-healing flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix SQ offset in QPs with small RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Delete unneeded function argument (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix leaking stack memory to userspace (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Improve argument name for add flow API (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Reorganize the makefile (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: clock.c depends on CONFIG_PTP_1588_CLOCK (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: vxlan.c depends on CONFIG_VXLAN (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move flow steering declarations into en/fs.h (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add CONFIG_MLX5_EN_ARFS for accelerated flow steering support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add CONFIG_MLX5_EN_RXNFC for ethtool rx nfc (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, move ethtool callbacks (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, l4 proto support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, ip6 support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering flow parsing refactoring (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering flow validation refactoring (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Reduce command polling interval (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Unexport functions that need not be exported (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Remove unused mlx5_query_vport_admin_state (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Remove unused argument when creating legacy FDB (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Rename modify/query_vport state related enums (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Use max_num_eqs for calculation of required MSIX vectors (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Fix shift overflow in mlx5_ib_create_wq (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Mark expected switch fall-throughs (Alaa Hleihel) [1642498]
-- [netdrv] mellanox: fix the dport endianness in call of __inet6_lookup_established() (Alaa Hleihel) [1642498]
-- [infiniband] ib/uverbs: Use uverbs_alloc for allocations (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix uninitialized variable (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: handle DMA mapping error case for XDP redirect (Alaa Hleihel) [1642498]
-- [infiniband] ib/uverbs: Add UVERBS_ATTR_FLAGS_IN to the specs language (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Issue direct lookup on vxlan ports by vport representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, move vxlan logic to core driver (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, add sync lock for add/del vxlan port (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, return values for add/del port (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, rename from mlx5e to mlx5 (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, rename struct mlx5e_vxlan to mlx5_vxlan_port (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, move netdev only logic to en_main.c (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, add direct delete function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, cleanup an unused member in vxlan work (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, replace ports radix-tree with hash table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, check maximum number of UDP ports (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, reflect 4789 UDP port default addition to software database (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Use function to access sq_dma object in fifo (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Move DB fields in TXQ-SQ struct (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Prefetch the xdp_frame data area (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add support for XDP_REDIRECT in device-out side (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Re-order fields of struct mlx5e_xdpsq (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Refactor XDP counters (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Make XDP xmit functions more generic (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add counter for XDP redirect in RX (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move XDP related code into new XDP files (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Restrict the combination of large MTU and XDP (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Gather all XDP pre-requisite checks in a single function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Do not recycle RX pages in interface down flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Replace call to MPWQE free with dealloc in interface down flow (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: avoid excessive warning msgs when creating VFs on 2nd port (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Offload TC matching on tos/ttl for ip tunnels (Alaa Hleihel) [1641360 1642498]
-- [netdrv] mlx5e: Support setup of tos and ttl for tunnel key TC action offload (Alaa Hleihel) [1641360 1642498]
-- [netdrv] mlx5e: Use ttl from route lookup on tc encap offload only if needed (Alaa Hleihel) [1641360 1642498]
-- [infiniband] ib/mlx5: Enable driver uapi commands for flow steering (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add support for a flow table destination for driver flow steering (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Support adding flow steering rule by raw description (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Introduce driver create and destroy flow methods (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Introduce flow steering matcher uapi object (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add support for flow table destination number (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add forward compatible support for the FTE match data (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use PARTIAL_GSO for UDP segmentation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support offloading double vlan push/pop tc actions (Alaa Hleihel) [1642344 1642498]
-- [netdrv] mlx5e: Refactor tc vlan push/pop actions offloading (Alaa Hleihel) [1642344 1642498]
-- [netdrv] mlx5e: Support offloading tc double vlan headers match (Alaa Hleihel) [1642344 1642498]
-- [netdrv] mlx5e: Remove redundant WARN when we cannot find neigh entry (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, Add debug prints (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, Enable tracing (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, parse traces and kernel tracing support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, events handling (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, register log buffer memory key (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, create trace buffer and copy strings database (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, implement tracer logic (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove set but not used variables (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix tristate and description for MLX5 module (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Better return types for CQE API (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use ERR_CAST() instead of coding it (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add missing SET_DRIVER_VERSION command translation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add XRQ commands definitions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add core support for double vlan push/pop steering action (Alaa Hleihel) [1642344 1642498]
-- [kernel] mlx5: Expose MPEGC (Management PCIe General Configuration) structures (Alaa Hleihel) [1642498]
-- [kernel] mlx5: FW tracer, add hardware structures (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPsec, fix byte count in CQE (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Accel, add common metadata functions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, build TLS netdev from capabilities (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, add software statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, add Innova TLS rx data path (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, add innova rx support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Accel, add TLS rx offload routines (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, refactor variable names (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Check that supplied blue flame index doesn't overflow (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Melt consecutive calls to alloc_bfreg() in one call (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: fix uaccess beyond "count" in debugfs read/write handlers (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use 2-factor allocator calls (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Honor cnt_set_id_valid flag instead of set_id (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove unused port number parameter (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: fix uaccess beyond "count" in debugfs read/write handlers (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Expose dump and fill memory key (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add hardware definitions for dump_fill_mkey (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Limit scope of dump_fill_mkey function (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix GRE flow specification (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Remove set-but-not-used variables (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Don't leak UARs in case of free fails (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add counter for total num of NOP operations (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add counter for MPWQE filler strides (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add channel events counter (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add a counter for congested UMRs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add NAPI statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add XDP_TX completions statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add TX completions statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Use existing WQ local variable (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Convert large order kzalloc allocations to kvzalloc (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add UDP GSO remaining counter (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add UDP GSO support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Rate limit errors in command interface (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Support RoCE ICRC encapsulated error counter (Alaa Hleihel) [1641357 1642498]
-- [kernel] mlx5: Add RoCE RX ICRC encapsulated counter (Alaa Hleihel) [1641357 1642498]
-- [infiniband] rdma/mlx5: Refactor transport domain checks (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Expose DEVX tree (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add DEVX query EQN support (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add DEVX support for memory registration (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add support for DEVX query UAR (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add DEVX support for modify and query commands (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add obj create and destroy functionality (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add support for DEVX general command (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Introduce DEVX (Alaa Hleihel) [1641355 1642498]
-- [kernel] mlx5: Expose DEVX specification (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Prevent warns in dmesg upon firmware commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: Fix warnings during boot on driverinit param set failures (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: remove ndo_poll_controller (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Use cpumask_available for eq->affinity_mask (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Ensure that maximal send/receive SGE less than supported by HW (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4/en_rx: Mark expected switch fall-throughs (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4/mcg: Mark expected switch fall-throughs (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Use 4K pages for kernel QP's WQE buffer (Alaa Hleihel) [1647741 1641912 1642498]
-- [netdrv] mlx4_core: Allow MTTs starting at any index (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Use devlink region_snapshot parameter (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Add Crdump FW snapshot support (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Add health buffer address capability (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Add support for devlink reload and load driverinit values (Alaa Hleihel) [1641912 1641358 1642498]
-- [netdrv] mlx4: Add mlx4 initial parameters table and register it (Alaa Hleihel) [1641912 1641358 1642498]
-- [infiniband] ib/mlx4: Test port number before querying type (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Create slave AH's directly (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx5e: Cleanup of dcbnl related fields (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix QP fragmented buffer allocation (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5: Fix 'DON'T_TRAP' functionality (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, UBSAN fix undefined behavior in mlx5_eswitch_mode (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Don't allow aRFS for encapsulated packets (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix quota counting in aRFS expire flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Adjust clock overflow work period (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Refine ets validation function (Alaa Hleihel) [1613971 1642498]
-- [infiniband] rdma/mlx5: Fix memory leak in mlx5_ib_create_srq() error path (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix command interface race in polling mode (Alaa Hleihel) [1669506 1642498]
-- [netdrv] mlx5: Fix incorrect raw command length parsing (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix wrong size allocation for QoS ETC TC regitster (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Avoid dealing with vport representors if not being e-switch manager (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix return value check in flow_counters_set_data() (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix memory leak in mlx5_ib_create_flow (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Update SPDX tags to show proper license (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: fix error return code in mlx5e_alloc_rq() (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Make function mlx5e_change_rep_mtu() static (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Make function mlx5_fpga_tls_send_teardown_cmd() static (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add counters read support (Alaa Hleihel) [1641352 1642498]
-- [infiniband] ib/mlx5: Add flow counters read support (Alaa Hleihel) [1641352 1642498]
-- [infiniband] ib/mlx5: Add flow counters binding support (Alaa Hleihel) [1641352 1642498]
-- [infiniband] ib/mlx5: Add counters create and destroy support (Alaa Hleihel) [1641352 1642498]
-- [kernel] mlx5: Export flow counter related API (Alaa Hleihel) [1641352 1642498]
-- [netdrv] mlx5: Use flow counter pointer as input to the query function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Separate cachelines of xmit and completion stats (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Always prefer Linear SKB configuration (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Enhance legacy Receive Queue memory scheme (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Use cyclic WQ in legacy RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Split WQ objects for different RQ types (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Remove HW LRO support in legacy RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Dedicate a function for copying SKB header (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Generalise function of SKB frag addition (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Generalise name of non-linear SKB head size (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Obsolete maintaining local copies of skb->len/data (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5: FPGA, Handle QP error event (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Increase aRFS flow tables size (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove redundant active_channels indication (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPOIB, Add a missing skb_pull (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5e: IPOIB, Fix overflowing SQ WQE memset (Alaa Hleihel) [1641354 1642498]
-- [infiniband] rdma/mlx5: Don't check return value of zap_vma_ptes() (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add FPGA QP error event (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add temperature warning event to log (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Get the number of offloaded TC rules from the correct table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Call DMA unmap with the right size (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Properly initialize dma direction on fpga conn send (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Abort FPGA init if the device reports no QP capability (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, print SBU identification on init (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Add device name (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Add doxygen for access type enum (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Introduce a new mini-CQE format (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Refactor CQE compression response (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Exposing a new mini-CQE format (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: fix TLS dependency (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Present SW stats when state is not opened (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid reset netdev stats on configuration changes (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Introducing new statistics rwlock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move phy link down events counter out of SW stats (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use order-0 allocations for all WQ types (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5i: Use compilation flag in IPOIB header (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5e: TX, Use actual WQE size for SQ edge fill (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5e: Use WQ API functions instead of direct fields access (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5e: Split offloaded eswitch TC rules for port mirroring (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Parse mirroring action for offloaded TC eswitch flows (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-switch, Create a second level FDB flow table (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add cap bits for flow table destination in FDB table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Reorganize and rename fdb flow tables (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Receive buffer support for DCBX (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Receive buffer configuration (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: PPTB and PBMC register firmware command support (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add pbmc and pptb in the port_access_reg_cap_mask (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move port speed code from en_ethtool.c to en/port.c (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fetch soft WQE's on fatal error state (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove debug prints of VMA pointers (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add HW vport counters to representor ethtool stats (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Offload TC eswitch rules for VFs belonging to different PFs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Explicitly set source e-switch in offloaded TC rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add source e-switch owner (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Explicitly set destination e-switch in FDB rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add destination e-switch owner (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Properly handle a vport destination when setting FTE (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add merged e-switch cap (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Expose MPLS related tunneling offloads (Alaa Hleihel) [1641351 1642498]
-- [infiniband] ib/mlx5: Add support for MPLS flow specification (Alaa Hleihel) [1641351 1642498]
-- [infiniband] ib/mlx5: Add support for GRE flow specification (Alaa Hleihel) [1641351 1642498]
-- [infiniband] ib/mlx5: Use 'kvfree()' for memory allocated by 'kvzalloc()' (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Eswitch, Use 'kvfree()' for memory allocated by 'kvzalloc()' (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Vport, Use 'kvfree()' for memory allocated by 'kvzalloc()' (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove MLX5E_TEST_BIT macro (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use test bit in en accel xmit flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use __set_bit for adaptive-moderation bit in RQ state (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Report all channels with min RX WQEs timeout (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support offloaded TC flows with no matches on headers (Alaa Hleihel) [1618427 1642498]
-- [netdrv] mlx5e: Get the required HW match level while parsing TC flow matches (Alaa Hleihel) [1618427 1642498]
-- [netdrv] mlx5e: Properly order min inline mode setup while parsing TC matches (Alaa Hleihel) [1618427 1642498]
-- [netdrv] mlx5e: Use local actions var while processing offloaded TC flow actions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Return success when TC offloaded fdb actions parsed ok (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid redundant zeroing of offloaded TC flow attributes (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Clean static checker complaints on TC offload and VF reps code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove double defined DMAC header re-write element (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use u8 instead of int for LRO number of segments (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Skip redundant checks when providing NUD lastuse feedback (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove redundant vport context vlan update (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: fix spelling mistake: "modfiy" -> "modify" (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Cleanup unused field in Work Queue parameters (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix dump_command mailbox length printed (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Refactor num of blocks in mailbox calculation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Decrease level of prints about non-existent MKEY (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, Add error statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, Add Innova TLS TX offload data path (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, Add Innova TLS TX support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Accel, Add TLS tx offload interface (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move defines out of ipsec code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Enable adaptive-TX moderation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: use page_pool for xdp_return_frame call (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: register a memory model when XDP is enabled (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: basic XDP_REDIRECT forward support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: remove some extraneous spaces in indentations (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: Save the qpn from the input modifier in RST2INIT wrapper (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Don't reuse RX page when XDP is set (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Fix an error handling path in 'mlx4_ib_rereg_user_mr()' (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Remove unnecessary parentheses (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: restore optimal ICM memory allocation (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Don't crash machine if zap_vma_ptes() fails (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Discard unknown SQP work requests (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Catch FW<->SW misalignment without machine crash (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Mark user MR as writable if actual virtual memory is writable (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Use msi_x module param to limit num of MSI-X irqs (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Add PCI calls for suspend/resume (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Report driver version to FW (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: optimizes get_fixed_ipv6_csum() (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Don't bother using skb_tx_hash in mlx4_en_select_queue (Alaa Hleihel) [1641912 1642498]
-- [netdrv] bpf: make mlx4 compatible w/ bpf_xdp_adjust_tail (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx5: IPSec, Fix a race between concurrent sandbox QP commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: When RXFCS is set, add FCS data into checksum calculation (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Fix build break when CONFIG_SMP=n (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Err if asked to offload TC match on frag being first (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Include VF RDMA stats in vport statistics (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Use proper spec flow label type (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Don't assume that medium blueFlame register exists (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: fix spelling mistake: "loobpack" -> "loopback" (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Properly check return value of mlx5_get_uars_page (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix represent correct netdevice in dual port RoCE (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Use unlimited rate when static rate is not supported (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Protect from shift operand overflow (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Fix multiple NULL-ptr deref errors in rereg_mr flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Properly deal with flow counters when deleting rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Avoid cleaning flow steering table twice during error flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Use correct counter in dma_map error flow (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Fix mlx5_get_vector_affinity function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: DCBNL fix min inline header size for dscp (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Allow offloading ipv4 header re-write for icmp (Alaa Hleihel) [1676550 1642498]
-- [infiniband] mlx5: fix build errors when INFINIBAND_USER_ACCESS=m (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: remove duplicate header file (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Device memory mr registration support (Alaa Hleihel) [1641349 1642498]
-- [infiniband] mlx5: Mkey creation command adjustments (Alaa Hleihel) [1641349 1642498]
-- [infiniband] ib/mlx5: Device memory support in mlx5_ib (Alaa Hleihel) [1641349 1642498]
-- [kernel] mlx5: Query device memory capabilities (Alaa Hleihel) [1641349 1642498]
-- [infiniband] ib/mlx5: Add ability to hash by IPSEC_SPI when creating a TIR (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add information for querying IPsec capabilities (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add IPsec support for egress and ingress (Alaa Hleihel) [1642498]
-- [kernel] {net,ib}/mlx5: Add ipsec helper (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add modify_flow_action_esp verb (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add implementation for create and destroy action_xfrm (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Initialize the parsing tree root without the help of uverbs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use pcie_bandwidth_available() to compute bandwidth (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Report PCIe link properties with pcie_print_link_status() (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Set EQE based as default TX interrupt moderation mode (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Recycle buffer of UMR WQEs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Keep single pre-initialized UMR WQE per RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove page_ref bulking in Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support XDP over Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Refactor RQ XDP_TX indication (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use linear SKB in Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use inline MTTs in UMR WQEs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Do not busy-wait for UMR completion in Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Code movements in RX UMR WQE post (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Derive Striding RQ size from MTU (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Fix spelling mistake (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Eliminate query xsrq dead code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use eq ptr from cq (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Recover Send Queue (SQ) from error state (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Dump xmit error completions (Alaa Hleihel) [1642498]
-- [infiniband] mlx5: Move dump error CQE function out of mlx5_ib for code sharing (Alaa Hleihel) [1642498]
-- [netdrv] mlx5_{ib, core}: Add query SQ state helper function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move all TX timeout logic to be under state lock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove unused max inline related code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add ethtool priv-flag for Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Do not reset Receive Queue params on every type change (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove rq_headroom field from params (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove RQ MPWQE fields from params (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use no-offset function in skb header copy (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Separate dma base address and offset in dma_sync call (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove unused define MLX5_MPWRQ_STRIDES_PER_PAGE (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Disable Striding RQ when PCI is slower than link (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Unify slow PCI heuristic (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add VLAN offload features to hw_enc_features (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add a helper macro in set features ndo (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Make choose LRO timeout function static (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove redundant check in get ethtool stats (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Protect from command bit overflow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Use same source for offloaded actions check (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add interface down dropped packets statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add packet dropped while vport down statistics (Alaa Hleihel) [1641346 1642498]
-- [netdrv] mlx5e: Add vnic steering drop statistics (Alaa Hleihel) [1641346 1642498]
-- [kernel] mlx5: Add support for QUERY_VNIC_ENV command (Alaa Hleihel) [1641346 1642498]
-- [netdrv] mlx5e: PFC stall prevention support (Alaa Hleihel) [1642498]
-- [kernel] mlx5e: Expose PFC stall prevention counters (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix use-after-free (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Remove call to ida_pre_get (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Packet packing enhancement for RAW QP (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Packet pacing enhancement (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Simplify clean and destroy MR calls (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Guard ODP specific assignments with specific CONFIG (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Unify error flows in rereg MR failure paths (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Return proper value for not-supported command (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Protect from NULL pointer derefence (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Maintain a single emergency page (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Only synchronize RCU once when removing mkeys (Alaa Hleihel) [1642498]
-- [kernel] ib/mlx5: Expose more priorities for bypass namespace (Alaa Hleihel) [1641347 1642498]
-- [infiniband] rdma/mlx5: Fix NULL dereference while accessing XRC_TGT QPs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix wrongly assigned CQ reference counter (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: IPSec, Add support for ESN (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Added common function for to_ipsec_sa_entry (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add flow-steering commands for FPGA IPSec implementation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Refactor accel IPSec code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Added required metadata capability for ipsec (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Export ipsec capabilities (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: IPSec, Add command V2 support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPSec, Add support for ESP trailer removal by hardware (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: IPSec, Generalize sandbox QP commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Flow steering cmd interface should get the fte when deleting (Alaa Hleihel) [1642498]
-- [kernel] {net, ib}/mlx5: Add flow steering helpers (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add empty egress namespace to flow steering core (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add shim layer between fs and cmd (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA and IPSec initialization to be before flow steering (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Removed not need synchronize_rcu (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fixed sleeping inside atomic context (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Wait for FPGA command responses with a timeout (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fixed compilation issue when CONFIG_MLX5_ACCEL is disabled (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Removed not used parameters (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Refactor QP type check to be as early as possible (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Disable self loopback check when in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [netdrv] mlx5: E-Switch, Reload IB interface when switching devlink modes (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Add proper representors support (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: E-Switch, Add rule to forward traffic to vport (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Don't expose MR cache in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: When in switchdev mode, expose only raw packet capabilities (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Listen to netdev register/unresiter events in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Add match on vport when in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Allocate flow DB only on PF IB device (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Add basic regiser/unregister representors code (Alaa Hleihel) [1641347 1642498]
-- [kernel] mlx5: E-Switch, Add definition of IB representor (Alaa Hleihel) [1641347 1642498]
-- [netdrv] mlx5: E-Switch, Optimize HW steering tables in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [netdrv] mlx5: E-Switch, Increase number of FTEs in FDB in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [netdrv] mlx5e: Eliminate build warnings on no previous prototype (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Implement fragmented completion queue (CQ) (Alaa Hleihel) [1641348 1642498]
-- [kernel] mlx5: Remove redundant EQ API exports (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Move CQ completion and event forwarding logic to eq.c (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: CQ hold/put API (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ add/del CQ API (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add missing likely/unlikely hints to cq events (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: CQ Database per EQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: fix error return code in mlx5e_alloc_rq() (Alaa Hleihel) [1642498]
-- [netdrv] xdp/mlx5: setup xdp_rxq_info (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: allocate ICM memory in page size chunks (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Fix irq-unsafe spinlock usage (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: fix spelling mistake: "Inrerface" -> "Interface" and rephrase message (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Fix error handling in mlx4_init_port_info (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Fix an error handling path in 'mlx4_en_init_netdev()' (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Verify coalescing parameters are in range (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Fix integer overflow when calculating optimal MTT size (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: fix spelling mistake: "failedi" -> "failed" (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Add missed RSS hash inner header flag (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Check for egress flow steering (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Report PCIe link properties with pcie_print_link_status() (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: CHECKSUM_COMPLETE support for fragments (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Eliminate duplicate barriers on weakly-ordered archs (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Add Scatter FCS support over WQ creation (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Report TSO capabilities (Alaa Hleihel) [1641912 1642498]
-- [infiniband] mlx4_ib: zero out struct ib_pd when allocating (Alaa Hleihel) [1520335 1641912 1642498]
-- [infiniband] mlx4_ib: set user mr attributes in struct ib_mr (Alaa Hleihel) [1520335 1641912 1642498]
-- [netdrv] mlx4_en: try to use high order pages for RX rings (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: RX csum, pre-define enabled protocols for IP status masking (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Combine checks of end-cases in RX completion function (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Remove unnecessary warn print in reset config (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Add physical RX/TX bytes/packets counters (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: setup xdp_rxq_info (Alaa Hleihel) [1641912 1642498]
-- [netdrv] revert "mlx5e: Avoid reset netdev stats on configuration changes" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: Present SW stats when state is not opened" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: IPoIB, Initialize max_opened_tc in mlx5i_init flow" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: IPoIB, Add ndo stats support for IPoIB netdevices" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: IPoIB, Add ndo stats support for IPoIB child devices" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: IPoIB, Use priv stats in completion rx flow" (Alaa Hleihel) [1642498]
-- [net] sched: register callbacks for indirect tc block binds (Ivan Vecera) [1657872]
-- [net] add netif_is_geneve() (Petr Oros) [1671092]
-- [kernel] overflow.h: Add arithmetic shift helper (Petr Oros) [1671092]
-- [kernel] cpumask: Add helper cpumask_available() (Petr Oros) [1671092]
-
-* Thu Feb 28 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1012.el7]
-- [tools] perf tools: Stop fallbacking to kallsyms for vdso symbols lookup (Jiri Olsa) [1680072]
-- [tools] perf tools: Pass build flags to traceevent build (Jiri Olsa) [1680072]
-- [tools] perf report: Don't crash on invalid inline debug information (Jiri Olsa) [1680072]
-- [tools] perf cpu_map: Align cpu map synthesized events properly (Jiri Olsa) [1680072]
-- [tools] perf tools: Fix use of alternatives to find JDIR (Jiri Olsa) [1680072]
-- [tools] perf evsel: Store ids for events with their own cpus perf_event__synthesize_event_update_cpus (Jiri Olsa) [1680072]
-- [tools] perf vendor events intel: Fix wrong filter_band* values for uncore events (Jiri Olsa) [1680072]
-- [tools] revert "perf tools: Fix PMU term format max value calculation" (Jiri Olsa) [1680072]
-- [tools] perf record: Use unmapped IP for inline callchain cursors (Jiri Olsa) [1680072]
-- [tools] perf python: Use -Wno-redundant-decls to build with PYTHON=python3 (Jiri Olsa) [1680072]
-- [tools] perf report: Don't try to map ip to invalid map (Jiri Olsa) [1680072]
-- [tools] perf script python: Fix export-to-sqlite.py sample columns (Jiri Olsa) [1680072]
-- [tools] perf script python: Fix export-to-postgresql.py occasional failure (Jiri Olsa) [1680072]
-- [tools] perf tools: Fix maps__find_symbol_by_name() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Fix parsing aarch64 branch instructions after objdump update (Jiri Olsa) [1680072]
-- [tools] perf probe powerpc: Ignore SyS symbols irrespective of endianness (Jiri Olsa) [1680072]
-- [tools] perf event-parse: Use fixed size string for comms (Jiri Olsa) [1680072]
-- [tools] perf util: Fix bad memory access in trace info (Jiri Olsa) [1680072]
-- [tools] perf evsel: Fix potential null pointer dereference in perf_evsel__new_idx() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Properly interpret indirect call (Jiri Olsa) [1680072]
-- [tools] perf tools: Remove ext from struct kmod_path (Jiri Olsa) [1680072]
-- [tools] perf tools: Add gzip_is_compressed function (Jiri Olsa) [1680072]
-- [tools] perf tools: Add lzma_is_compressed function (Jiri Olsa) [1680072]
-- [tools] perf tools: Add is_compressed callback to compressions array (Jiri Olsa) [1680072]
-- [tools] perf tools: Move the temp file processing into decompress_kmodule (Jiri Olsa) [1680072]
-- [tools] perf tools: Use compression id in decompress_kmodule() (Jiri Olsa) [1680072]
-- [tools] perf tools: Store compression id into struct dso (Jiri Olsa) [1680072]
-- [tools] perf tools: Add compression id into 'struct kmod_path' (Jiri Olsa) [1680072]
-- [tools] perf tools: Make is_supported_compression() static (Jiri Olsa) [1680072]
-- [tools] perf tools: Make decompress_to_file() function static (Jiri Olsa) [1680072]
-- [tools] perf tools: Get rid of dso__needs_decompress() call in __open_dso() (Jiri Olsa) [1680072]
-- [tools] perf tools: Get rid of dso__needs_decompress() call in symbol__disassemble() (Jiri Olsa) [1680072]
-- [tools] perf tools: Get rid of dso__needs_decompress() call in read_object_code() (Jiri Olsa) [1680072]
-- [tools] perf parser: Improve error message for PMU address filters (Jiri Olsa) [1680072]
-- [tools] perf tools: Disable parallelism for 'make clean' (Jiri Olsa) [1680072]
-- [tools] perf auxtrace: Fix queue resize (Jiri Olsa) [1680072]
-- [tools] perf python: Remove -mcet and -fcf-protection when building with clang (Jiri Olsa) [1680072]
-- [tools] perf tools: Make check-headers.sh check based on kernel dir (Jiri Olsa) [1680072]
-- [tools] perf tools: Fix check-headers.sh AND list path of execution (Jiri Olsa) [1680072]
-- [tools] perf report: Add --percent-type option (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add --percent-type option (Jiri Olsa) [1680072]
-- [tools] perf annotate: Display percent type in stdio output (Jiri Olsa) [1680072]
-- [tools] perf annotate: Make local period the default percent type (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add support to toggle percent type (Jiri Olsa) [1680072]
-- [tools] perf annotate: Pass browser percent_type in annotate_browser__calc_percent() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Pass 'struct annotation_options' to map_symbol__annotation_dump() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Pass struct annotation_options to symbol__calc_lines() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add percent_type to struct annotation_options (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add PERCENT_PERIOD_GLOBAL percent value (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add PERCENT_PERIOD_LOCAL percent value (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add PERCENT_HITS_GLOBAL percent value (Jiri Olsa) [1680072]
-- [tools] perf annotate: Switch struct annotation_data::percent to array (Jiri Olsa) [1680072]
-- [tools] perf annotate: Loop group events directly in annotation__calc_percent() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Rename hist to sym_hist in annotation__calc_percent (Jiri Olsa) [1680072]
-- [tools] perf annotate: Rename local sample variables to data (Jiri Olsa) [1680072]
-- [tools] perf annotate: Rename struct annotation_line::samples* to data* (Jiri Olsa) [1680072]
-- [tools] perf annotate: Get rid of annotation__scnprintf_samples_period() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Make annotation_line__max_percent static (Jiri Olsa) [1680072]
-- [tools] perf annotate: Make symbol__annotate_fprintf2() local (Jiri Olsa) [1680072]
-- [tools] perf tools: Drop unneeded bitmap_zero() calls (Jiri Olsa) [1680072]
-- [tools] perf trace: Use perf_evsel__sc_tp_{uint, ptr} for "id"/"args" handling syscalls:* events (Jiri Olsa) [1680072]
-- [tools] perf trace: Setup struct syscall_tp for syscalls:sys_{enter, exit}_NAME events (Jiri Olsa) [1680072]
-- [tools] perf trace: Rename some syscall_tp methods to raw_syscall (Jiri Olsa) [1680072]
-- [tools] perf trace: Allow setting up a syscall_tp struct without a format_field (Jiri Olsa) [1680072]
-- [tools] perf trace: Use beautifiers on syscalls:sys_enter_ handlers (Jiri Olsa) [1680072]
-- [tools] perf trace: Associate vfs_getname()'ed pathname with fd returned from 'openat' (Jiri Olsa) [1680072]
-- [tools] introduce test_and_clear_bit (Jiri Olsa) [1680072]
-- [tools] perf trace: Do not require --no-syscalls to suppress strace like output (Jiri Olsa) [1680072]
-- [tools] perf tools: Allow overriding MAX_NR_CPUS at compile time (Jiri Olsa) [1680072]
-- [tools] perf bpf: Show better message when failing to load an object (Jiri Olsa) [1680072]
-- [tools] perf list: Unify metric group description format with PMU event description (Jiri Olsa) [1680072]
-- [tools] perf c2c report: Fix crash for empty browser (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix indexing when invoking subtests (Jiri Olsa) [1680072]
-- [tools] perf trace: Beautify the AF_INET & AF_INET6 'socket' syscall 'protocol' args (Jiri Olsa) [1680072]
-- [tools] perf trace beauty: Add beautifiers for 'socket''s 'protocol' arg (Jiri Olsa) [1680072]
-- [tools] perf trace beauty: Do not print NULL strarray entries (Jiri Olsa) [1680072]
-- [tools] perf beauty: Add a generator for IPPROTO_ socket's protocol constants (Jiri Olsa) [1680072]
-- [tools] tools include uapi: Grab a copy of linux/in.h (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix complex event name parsing (Jiri Olsa) [1680072]
-- [tools] perf evlist: Fix error out while applying initial delay and LBR (Jiri Olsa) [1680072]
-- [tools] perf test: Fix subtest number when showing results (Jiri Olsa) [1680072]
-- [tools] perf stat: Get rid of extra clock display function (Jiri Olsa) [1680072]
-- [tools] perf tools: Use perf_evsel__match instead of open coded equivalent (Jiri Olsa) [1680072]
-- [tools] perf tools: Fix struct comm_str removal crash (Jiri Olsa) [1680072]
-- [tools] perf machine: Use last_match threads cache only in single thread mode (Jiri Olsa) [1680072]
-- [tools] perf machine: Add threads__set_last_match function (Jiri Olsa) [1680072]
-- [tools] perf machine: Add threads__get_last_match function (Jiri Olsa) [1680072]
-- [tools] perf tools: Synthesize GROUP_DESC feature in pipe mode (Jiri Olsa) [1680072]
-- [tools] perf script: Show correct offsets for DWARF-based unwinding (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix record+probe_libc_inet_pton.sh when event exists (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix record+probe_libc_inet_pton.sh to ensure cleanups (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix record+probe_libc_inet_pton.sh for powerpc64 (Jiri Olsa) [1680072]
-- [tools] perf powerpc: Fix callchain ip filtering when return address is in a register (Jiri Olsa) [1680072]
-- [tools] perf powerpc: Fix callchain ip filtering (Jiri Olsa) [1680072]
-- [tools] perf list: Add missing documentation for --desc and --debug options (Jiri Olsa) [1680072]
-- [tools] perf stat: Add transaction flag (-T) support for s390 (Jiri Olsa) [1680072]
-- [tools] perf json: Add s390 transaction counter definition (Jiri Olsa) [1680072]
-- [tools] perf list: Add s390 support for detailed PMU event description (Jiri Olsa) [1680072]
-- [tools] perf hists: Clarify callchain disabling when available (Jiri Olsa) [1680072]
-- [tools] perf tests: Check that complex event name is parsed correctly (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel/uncore: Fix PCI BDF address of M3UPI on SKX (Jiri Olsa) [1680072]
-- [kernel] perf/ring_buffer: Prevent concurent ring buffer access (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel/uncore: Use boot_cpu_data.phys_proc_id instead of hardcorded physical package ID 0 (Jiri Olsa) [1680072]
-- [kernel] perf/core: Fix perf_pmu_unregister() locking (Jiri Olsa) [1680072]
-- [kernel] perf/core: Add sanity check to deal with pinned event failure (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel: Add support/quirk for the MISPREDICT bit on Knights Landing CPUs (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel: Support Extended PEBS for Goldmont Plus (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel/ds: Handle PEBS overflow for fixed counters (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel: Support PEBS on fixed counters (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel: Introduce PMU flag for Extended PEBS (Jiri Olsa) [1680072]
-- [kernel] perf, tools: Use correct articles in comments (Jiri Olsa) [1680072]
-
-* Thu Feb 28 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1011.el7]
-- [netdrv] intel: consolidate NAPI and NAPI exit (Stefan Assmann) [1637738]
-- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Stefan Assmann) [1637738]
-- [netdrv] remove <net/busy_poll.h> inclusion when not needed (Stefan Assmann) [1637738]
-- [netdrv] iavf: fix a typo (Stefan Assmann) [1637738]
-- [netdrv] intel-ethernet: use correct module license (Stefan Assmann) [1637738]
-- [netdrv] i40evf: remove ndo_poll_controller (Stefan Assmann) [1637738]
-- [netdrv] iavf: finish renaming files to iavf (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename most of i40e strings (Stefan Assmann) [1637738]
-- [netdrv] iavf: tracing infrastructure rename (Stefan Assmann) [1637738]
-- [netdrv] iavf: replace i40e_debug with iavf version (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename i40e_hw to iavf_hw (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename I40E_ADMINQ_DESC (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename device ID defines (Stefan Assmann) [1637738]
-- [netdrv] iavf: remove references to old names (Stefan Assmann) [1637738]
-- [netdrv] iavf: move i40evf files to new name (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename i40e_status to iavf_status (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename functions and structs to new name (Stefan Assmann) [1637738]
-- [netdrv] iavf: diet and reformat (Stefan Assmann) [1637738]
-- [netdrv] intel-ethernet: rename i40evf to iavf (Stefan Assmann) [1637738]
-- [netdrv] i40e(vf): remove i40e_ethtool_stats.h header file (Stefan Assmann) [1637738]
-- [netdrv] i40evf: Don't enable vlan stripping when rx offload is turned on (Stefan Assmann) [1637738]
-- [netdrv] i40evf: set IFF_UNICAST_FLT flag for the VF (Stefan Assmann) [1637738]
-- [netdrv] i40evf: Validate the number of queues a PF sends (Stefan Assmann) [1637738]
-- [netdrv] i40evf: Change a VF mac without reloading the VF driver (Stefan Assmann) [1637738]
-- [netdrv] i40evf: update ethtool stats code and use helper functions (Stefan Assmann) [1637738]
-- [netdrv] i40e: Add AQ command for rearrange NVM structure (Stefan Assmann) [1637738]
-- [netdrv] i40e: Add additional return code to i40e_asq_send_command (Stefan Assmann) [1637738]
-- [netdrv] i40e/i40evf: remove redundant functions i40evf_aq_{set/get}_phy_register (Stefan Assmann) [1637738]
-- [netdrv] intel: Convert timers to use timer_setup() (Stefan Assmann) [1637738]
-- [netdrv] cls_flower: fix error values for commands not supported by drivers (Stefan Assmann) [1637738]
-- [netdrv] i40e: clean up several indentation issues (Stefan Assmann) [1637726]
-- [netdrv] i40e: increase indentation (Stefan Assmann) [1637726]
-- [netdrv] i40e: update version number (Stefan Assmann) [1637726]
-- [netdrv] i40e: remove debugfs tx_timeout support (Stefan Assmann) [1637726]
-- [netdrv] i40e: check queue pairs num in config queues handler (Stefan Assmann) [1637726]
-- [netdrv] i40e: Change unmatched function types (Stefan Assmann) [1637726]
-- [netdrv] i40e: Add support FEC configuration for Fortville 25G (Stefan Assmann) [1637726]
-- [netdrv] i40e: Limiting RSS queues to CPUs (Stefan Assmann) [1637726]
-- [netdrv] i40e: Remove umem from VSI (Stefan Assmann) [1637726]
-- [netdrv] i40e: extend PTP gettime function to read system clock (Stefan Assmann) [1637726]
-- [netdrv] i40e: define proper net_device::neigh_priv_len (Stefan Assmann) [1637726]
-- [netdrv] i40e: DRY rx_ptype handling code (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix VLAN.TCI == 0 RX HW offload (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix mac filter delete when setting mac address (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix kerneldoc for xsk methods (Stefan Assmann) [1637726]
-- [netdrv] i40e: Fix deletion of MAC filters (Stefan Assmann) [1637726]
-- [netdrv] intel: consolidate NAPI and NAPI exit (Stefan Assmann) [1637726]
-- [netdrv] i40e: prevent overlapping tx_timeout recover (Stefan Assmann) [1637726]
-- [netdrv] i40e: suppress bogus error message (Stefan Assmann) [1637726]
-- [netdrv] i40e: Use correct shift for VLAN priority (Stefan Assmann) [1637726]
-- [netdrv] i40e: always set ks->base.speed in i40e_get_settings_link_up (Stefan Assmann) [1637726]
-- [netdrv] i40e: don't restart nway if autoneg not supported (Stefan Assmann) [1637726]
-- [netdrv] i40e: Allow disabling FW LLDP on X722 devices (Stefan Assmann) [1637726]
-- [netdrv] i40e: update driver version (Stefan Assmann) [1637726]
-- [netdrv] i40e: Protect access to VF control methods (Stefan Assmann) [1637726]
-- [netdrv] i40e: Replace strncpy with strlcpy to ensure null termination (Stefan Assmann) [1637726]
-- [netdrv] i40e: Add capability flag for stopping FW LLDP (Stefan Assmann) [1637726]
-- [netdrv] i40e: Use a local variable for readability (Stefan Assmann) [1637726]
-- [netdrv] i40e: Replace spin_is_locked() with lockdep (Stefan Assmann) [1637726]
-- [netdrv] i40e: enable NETIF_F_NTUPLE and NETIF_F_HW_TC at driver load (Stefan Assmann) [1637726]
-- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Stefan Assmann) [1637726]
-- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Stefan Assmann) [1637726]
-- [netdrv] remove <net/busy_poll.h> inclusion when not needed (Stefan Assmann) [1637726]
-- [netdrv] i40e: Remove unnecessary print statement (Stefan Assmann) [1637726]
-- [netdrv] i40e: Use proper enum in i40e_ndo_set_vf_link_state (Stefan Assmann) [1637726]
-- [netdrv] i40e: disallow changing the number of descriptors when AF_XDP is on (Stefan Assmann) [1637726]
-- [netdrv] i40e: clean zero-copy XDP Rx ring on shutdown/reset (Stefan Assmann) [1637726]
-- [netdrv] i40e: clean zero-copy XDP Tx ring on shutdown/reset (Stefan Assmann) [1637726]
-- [netdrv] i40e: Remove unused msglen parameter from virtchnl functions (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix double 'NIC Link is Down' messages (Stefan Assmann) [1637726]
-- [netdrv] i40e: add a helper function to validate a VF based on the vf id (Stefan Assmann) [1637726]
-- [netdrv] i40e: use declared variables for pf and hw (Stefan Assmann) [1637726]
-- [netdrv] i40e: Unset promiscuous settings on VF reset (Stefan Assmann) [1637726]
-- [netdrv] i40e: Fix VF's link state notification (Stefan Assmann) [1637726]
-- [netdrv] intel-ethernet: use correct module license (Stefan Assmann) [1637726]
-- [netdrv] i40e(vf): remove i40e_ethtool_stats.h header file (Stefan Assmann) [1637726]
-- [netdrv] xsk: i40e: get rid of useless struct xdp_umem_props (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix possible compiler warning in xsk TX path (Stefan Assmann) [1637726]
-- [netdrv] i40e: add AF_XDP zero-copy Tx support (Stefan Assmann) [1637726]
-- [netdrv] i40e: move common Tx functions to i40e_txrx_common.h (Stefan Assmann) [1637726]
-- [netdrv] i40e: add AF_XDP zero-copy Rx support (Stefan Assmann) [1637726]
-- [netdrv] i40e: move common Rx functions to i40e_txrx_common.h (Stefan Assmann) [1637726]
-- [netdrv] i40e: refactor Rx path for re-use (Stefan Assmann) [1637726]
-- [netdrv] i40e: added queue pair disable/enable functions (Stefan Assmann) [1637726]
-- [netdrv] i40e: hold the rtnl lock on clearing interrupt scheme (Stefan Assmann) [1637726]
-- [netdrv] i40e: Check and correct speed values for link on open (Stefan Assmann) [1637726]
-- [netdrv] i40e: report correct statistics when XDP is enabled (Stefan Assmann) [1637726]
-- [netdrv] i40e: static analysis report from community (Stefan Assmann) [1637726]
-- [netdrv] i40e: use correct length for strncpy (Stefan Assmann) [1637726]
-- [netdrv] i40evf: Change a VF mac without reloading the VF driver (Stefan Assmann) [1637726]
-- [netdrv] i40e: move ethtool stats boiler plate code to i40e_ethtool_stats.h (Stefan Assmann) [1637726]
-- [netdrv] i40e: convert queue stats to i40e_stats array (Stefan Assmann) [1637726]
-- [netdrv] i40e_txrx: mark expected switch fall-through (Stefan Assmann) [1637726]
-- [netdrv] i40e_main: mark expected switch fall-through (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix i40e_add_queue_stats data pointer update (Stefan Assmann) [1637726]
-- [netdrv] i40e: Add AQ command for rearrange NVM structure (Stefan Assmann) [1637726]
-- [netdrv] i40e: Add additional return code to i40e_asq_send_command (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix warning about shadowed ring parameter (Stefan Assmann) [1637726]
-- [netdrv] i40e: remove unnecessary i variable causing -Wshadow warning (Stefan Assmann) [1637726]
-- [netdrv] i40e: convert priority flow control stats to use helpers (Stefan Assmann) [1637726]
-- [netdrv] i40e: convert VEB TC stats to use an i40e_stats array (Stefan Assmann) [1637726]
-- [netdrv] i40e: Set fec_config when forcing link state (Stefan Assmann) [1637726]
-- [netdrv] i40e: add helper to copy statistic values into ethtool buffer (Stefan Assmann) [1637726]
-- [netdrv] i40e: add helper function for copying strings from stat arrays (Stefan Assmann) [1637726]
-- [netdrv] i40e: split XDP_TX tail and XDP_REDIRECT map flushing (Stefan Assmann) [1637726]
-- [netdrv] cls_flower: fix error values for commands not supported by drivers (Stefan Assmann) [1637726]
-- [netdrv] Convert random_ether_addr to eth_random_addr (Stefan Assmann) [1637726]
-- [netdrv] bpf, xdp, i40e: fix i40e_build_skb skb reserve and truesize (Stefan Assmann) [1637726]
-- [netdrv] i40e: remove ndo_xdp_flush call i40e_xdp_flush (Stefan Assmann) [1637726]
-- [netdrv] i40e: implement flush flag for ndo_xdp_xmit (Stefan Assmann) [1637726]
-- [netdrv] xdp: add flags argument to ndo_xdp_xmit API (Stefan Assmann) [1637726]
-- [netdrv] bpf, i40e: add meta data support (Stefan Assmann) [1637726]
-- [netdrv] bpf: add meta pointer for direct access (Stefan Assmann) [1637726]
-- [netdrv] xdp: change ndo_xdp_xmit API to support bulking (Stefan Assmann) [1637726]
-- [infiniband] rdma: Cleanup undesired pd->uobject usage (Stefan Assmann) [1642292]
-- [infiniband] i40iw: remove support for ib_get_vector_affinity (Stefan Assmann) [1642292]
-- [infiniband] i40iw: remove use of VLAN_TAG_PRESENT (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40iw: Fix incorrect iterator type (Stefan Assmann) [1642292]
-- [infiniband] nfiniband: i40iw, nes: don't use wall time for TCP sequence numbers (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40w: Hold read semaphore while looking after VMA (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Reorganize acquire/release of locks in i40iw_manage_apbvt (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40iw: Avoid panic when reading back the IRQ affinity hint (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40iw: Avoid reference leaks when processing the AEQ (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40iw: Avoid panic when objects are being created and destroyed (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Fix memory leak in error path of create QP (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Extend port reuse support for listeners (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Replace GFP_ATOMIC with GFP_KERNEL in i40iw_l2param_change (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Replace GFP_ATOMIC with GFP_KERNEL in i40iw_make_listen_node (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Replace GFP_ATOMIC with GFP_KERNEL in i40iw_add_mqh_4 (Stefan Assmann) [1642292]
-
-* Fri Feb 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1010.el7]
-- [tools] perf tools: Fix tracing_path_mount proper path (Jiri Olsa) [1672893]
-- [tools] perf tools: Use python-config --includes rather than --cflags (Jiri Olsa) [1672893]
-- [tools] perf script python: Fix dict reference counting (Jiri Olsa) [1672893]
-- [tools] perf stat: Fix --interval_clear option (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix compilation errors on gcc8 (Jiri Olsa) [1672893]
-- [tools] perf test shell: Prevent temporary editor files from being considered test scripts (Jiri Olsa) [1672893]
-- [tools] perf llvm-utils: Remove bashism from kernel include fetch script (Jiri Olsa) [1672893]
-- [tools] perf test shell: Make perf's inet_pton test more portable (Jiri Olsa) [1672893]
-- [tools] perf test shell: Replace '|&' with '2>&1 |' to work with more shells (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to EventClass.py (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to sched-migration.py (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to Util.py (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to SchedGui.py (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to Core.py (Jiri Olsa) [1672893]
-- [tools] perf tools: Generate a Python script compatible with Python 2 and 3 (Jiri Olsa) [1672893]
-- [tools] build: Use HOSTLDFLAGS with fixdep (Jiri Olsa) [1672893]
-- [tools] build: Fixup host c flags (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix crash caused by accessing feat_ops[HEADER_LAST_FEATURE] (Jiri Olsa) [1672893]
-- [tools] perf script: Add missing output fields in a hint (Jiri Olsa) [1672893]
-- [tools] perf script: Fix crash because of missing evsel->priv (Jiri Olsa) [1672893]
-- [tools] perf stat: Remove duplicate event counting (Jiri Olsa) [1672893]
-- [tools] perf alias: Rebuild alias expression string to make it comparable (Jiri Olsa) [1672893]
-- [tools] perf alias: Remove trailing newline when reading sysfs files (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix a clang 7.0 compilation error (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix packet decoding of CYC packets (Jiri Olsa) [1672893]
-- [tools] perf tests: Add valid callback for parse-events test (Jiri Olsa) [1672893]
-- [tools] perf tests: Add event parsing error handling to parse events test (Jiri Olsa) [1672893]
-- [tools] perf report powerpc: Fix crash if callchain is empty (Jiri Olsa) [1672893]
-- [tools] perf test session topology: Fix test on s390 (Jiri Olsa) [1672893]
-- [tools] perf record: Support s390 random socket_id assignment (Jiri Olsa) [1672893]
-- [tools] perf script: Show hw-cache events (Jiri Olsa) [1672893]
-- [tools] perf c2c: Keep struct hist_entry at the end of struct c2c_hist_entry (Jiri Olsa) [1672893]
-- [tools] perf stat: Add event parsing error handling to add_default_attributes (Jiri Olsa) [1672893]
-- [tools] perf stat: Allow to specify specific metric column len (Jiri Olsa) [1672893]
-- [tools] perf stat: Fix metric column header display alignment (Jiri Olsa) [1672893]
-- [tools] perf stat: Use only color_fprintf call in print_metric_only (Jiri Olsa) [1672893]
-- [tools] perf stat: Add --interval-clear option (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix error index for pmu event parser (Jiri Olsa) [1672893]
-- [tools] perf hists: Reimplement hists__has_callchains() (Jiri Olsa) [1672893]
-- [tools] perf hists browser gtk: Use hist_entry__has_callchains() (Jiri Olsa) [1672893]
-- [tools] perf hists: Make hist_entry__has_callchains() work with 'perf c2c' (Jiri Olsa) [1672893]
-- [tools] perf hists: Save the callchain_size in struct hist_entry (Jiri Olsa) [1672893]
-- [tools] perf script python: Add dict fields introduction to Documentation (Jiri Olsa) [1672893]
-- [tools] perf script python: Add more PMU fields to event handler dict (Jiri Olsa) [1672893]
-- [tools] perf script python: Move dsoname code to a new function (Jiri Olsa) [1672893]
-- [tools] perf symbols: Add BSS symbols when reading from /proc/kallsyms (Jiri Olsa) [1672893]
-- [tools] perf annnotate: Make __symbol__inc_addr_samples handle src->histograms == NULL (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix "Unexpected indirect branch" error (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix MTC timing after overflow (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix decoding to accept CBR between FUP and corresponding TIP (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix sync_switch INTEL_PT_SS_NOT_TRACING (Jiri Olsa) [1672893]
-- [tools] perf script powerpc: Python script for hypervisor call statistics (Jiri Olsa) [1672893]
-- [tools] perf test record+probe_libc_inet_pton: Ask 'nm' for dynamic symbols (Jiri Olsa) [1672893]
-- [tools] perf map: Consider PTI entry trampolines in rip_2objdump() (Jiri Olsa) [1672893]
-- [tools] perf test code-reading: Fix perf_env setup for PTI entry trampolines (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix pmu events parsing rule (Jiri Olsa) [1672893]
-- [tools] perf stat: Display user and system time (Jiri Olsa) [1672893]
-- [tools] perf record: Enable arbitrary event names thru name= modifier (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix symbol and object code resolution for vdso32 and vdsox32 (Jiri Olsa) [1672893]
-- [tools] perf tests kmod-path: Add tests for vdso32 and vdsox32 (Jiri Olsa) [1672893]
-- [tools] perf hists: Check if a hist_entry has callchains before using them (Jiri Olsa) [1672893]
-- [tools] perf hists: Introduce hist_entry__has_callchain() method (Jiri Olsa) [1672893]
-- [tools] perf sched: Use sched->show_callchain where appropriate (Jiri Olsa) [1672893]
-- [tools] perf script: Check if evsel has callchains before trying to use it (Jiri Olsa) [1672893]
-- [tools] perf evsel: Add has_callchain() helper to make code more compact/clear (Jiri Olsa) [1672893]
-- [tools] perf report: No need to have report_callchain_help as a global (Jiri Olsa) [1672893]
-- [tools] perf test: Use header file util/debug.h (Jiri Olsa) [1672893]
-- [tools] perf annotate: Move objdump_path to struct annotation_options (Jiri Olsa) [1672893]
-- [tools] perf hists browser: Pass annotation_options from tool to browser (Jiri Olsa) [1672893]
-- [tools] perf annotate: Move disassembler_style global to annotation_options (Jiri Olsa) [1672893]
-- [tools] perf annotate: Adopt anotation options from symbol_conf (Jiri Olsa) [1672893]
-- [tools] perf annotate: Pass annotation_options to symbol__annotate() (Jiri Olsa) [1672893]
-- [tools] perf srcline: Make hist_entry srcline helper consistent with map's (Jiri Olsa) [1672893]
-- [tools] perf sort: Introduce addr_map_symbol__srcline() to make code more compact (Jiri Olsa) [1672893]
-- [tools] perf srcline: Introduce map__srcline() to make code more compact (Jiri Olsa) [1672893]
-- [tools] perf annotate stdio: Use annotation_options consistently (Jiri Olsa) [1672893]
-- [tools] perf annotate: Add comment about annotated_src->nr_histograms (Jiri Olsa) [1672893]
-- [tools] perf tools: Ditch the symbol_conf.nr_events global (Jiri Olsa) [1672893]
-- [tools] perf annotate: Replace symbol__alloc_hists() with symbol__hists() (Jiri Olsa) [1672893]
-- [tools] perf annotate: Stop using symbol_conf.nr_events global in symbol__hists() (Jiri Olsa) [1672893]
-- [tools] perf annotate: Introduce symbol__cycle_hists() (Jiri Olsa) [1672893]
-- [tools] perf annotate: Introduce symbol__hists() (Jiri Olsa) [1672893]
-- [tools] perf annotate: __symbol__inc_addr_samples() needs just annotated_source (Jiri Olsa) [1672893]
-- [tools] perf annotate: Introduce annotated_source__alloc_histograms (Jiri Olsa) [1672893]
-- [tools] perf annotate: Introduce constructor/destructor for annotated_source (Jiri Olsa) [1672893]
-- [tools] perf annotate: Split allocation of annotated_source struct (Jiri Olsa) [1672893]
-- [tools] perf annotate: __symbol__acount_cycles doesn't need notes (Jiri Olsa) [1672893]
-- [tools] perf annotate: Pass perf_evsel instead of just evsel->idx (Jiri Olsa) [1672893]
-- [tools] perf tools: No need to check if the argument to __get() function is NULL (Jiri Olsa) [1672893]
-- [tools] perf cgroup: Make evlist__find_cgroup() more compact (Jiri Olsa) [1672893]
-- [tools] perf probe: Use return of map__get() to make code more compact (Jiri Olsa) [1672893]
-- [tools] perf tools: Remove dead quote.[ch] code (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Amend the offset of sections that remap kernel text (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Copy x86 PTI entry trampoline sections (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Get rid of kernel_map (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Iterate phdrs (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Layout sections (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Calculate offset from phnum (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Keep a count of phdrs (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Keep phdr data in a list (Jiri Olsa) [1672893]
-- [tools] perf annotate: Show group event string for stdio (Jiri Olsa) [1672893]
-- [tools] perf machine: Synthesize and process mmap events for x86 PTI entry trampolines (Jiri Olsa) [1672893]
-- [tools] perf machine: Create maps for x86 PTI entry trampolines (Jiri Olsa) [1672893]
-- [tools] perf machine: Allow for extra kernel maps (Jiri Olsa) [1672893]
-- [tools] perf machine: Fix map_groups__split_kallsyms() for entry trampoline symbols (Jiri Olsa) [1672893]
-- [tools] perf machine: Workaround missing maps for x86 PTI entry trampolines (Jiri Olsa) [1672893]
-- [tools] perf machine: Add nr_cpus_avail() (Jiri Olsa) [1672893]
-- [tools] perf annotate: Support '--group' option (Jiri Olsa) [1672893]
-- [tools] perf report: Use perf_evlist__force_leader to support '--group' (Jiri Olsa) [1672893]
-- [tools] perf evlist: Introduce force_leader() method (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix kernel_start for PTI on x86 (Jiri Olsa) [1672893]
-- [tools] perf machine: Add machine__is() to identify machine arch (Jiri Olsa) [1672893]
-- [tools] perf annotate: Create hotkey 'c' to show min/max cycles (Jiri Olsa) [1672893]
-- [tools] perf annotate: Record the min/max cycles (Jiri Olsa) [1672893]
-- [tools] perf script: Show symbol offsets by default (Jiri Olsa) [1672893]
-- [tools] perf script: Show virtual addresses instead of offsets (Jiri Olsa) [1672893]
-- [tools] perf tools: Read the cache line size lazily (Jiri Olsa) [1672893]
-- [tools] tools include compiler-gcc: Add __pure attribute helper (Jiri Olsa) [1672893]
-- [tools] tools lib api fs tracing_path: Make tracing_events_path private (Jiri Olsa) [1672893]
-- [tools] tools lib api fs tracing_path: Introduce opendir() method (Jiri Olsa) [1672893]
-- [tools] perf parse-events: Use get/put_events_file() (Jiri Olsa) [1672893]
-- [tools] perf tools: Reuse the path to the tracepoint /events/ directory (Jiri Olsa) [1672893]
-- [tools] tools lib api fs tracing_path: Introduce get/put_events_file() helpers (Jiri Olsa) [1672893]
-- [tools] tools lib api: Unexport 'tracing_path' variable (Jiri Olsa) [1672893]
-- [tools] tools lib api: The tracing_mnt variable doesn't need to be global (Jiri Olsa) [1672893]
-- [tools] perf config: Call perf_config__init() lazily (Jiri Olsa) [1672893]
-- [tools] perf tools: Use the "_stest" symbol to identify the kernel map when loading kcore (Jiri Olsa) [1672893]
-- [tools] perf buildid-cache: Warn --purge-all failures (Jiri Olsa) [1672893]
-- [tools] perf tests parse-events: Add intel_pt parse test (Jiri Olsa) [1672893]
-- [tools] perf machine: Ditch find_kernel_function variants (Jiri Olsa) [1672893]
-- [tools] perf tools: fix spelling mistake: "builid" -> "buildid" (Jiri Olsa) [1672893]
-- [tools] perf symbols: Move split_kallsyms to struct map_groups (Jiri Olsa) [1672893]
-- [tools] perf symbols: kallsyms__delta() needs the kmap, not the map (Jiri Olsa) [1672893]
-- [tools] perf symbols: Remove unused dso__load_all_kallsyms() 'map' parameter (Jiri Olsa) [1672893]
-- [tools] perf symbols: Split kernel symbol processing from dso__load_sym() (Jiri Olsa) [1672893]
-- [tools] perf symbols: Remove needless goto (Jiri Olsa) [1672893]
-- [tools] perf symbols: Unify symbol maps (Jiri Olsa) [1672893]
-- [tools] perf symbols: Use map->prot in place of type==MAP__FUNCTION (Jiri Olsa) [1672893]
-- [tools] perf map: Use map->prot in place of type==MAP__FUNCTION (Jiri Olsa) [1672893]
-- [tools] perf symbols: Use symbol type instead of map->type (Jiri Olsa) [1672893]
-- [tools] perf symbols: No need to special case MAP__FUNCTION in fixup (Jiri Olsa) [1672893]
-- [tools] perf sort: Use mmap->prot on "dcacheline" formatting (Jiri Olsa) [1672893]
-- [tools] perf machine: Set PROT_EXEC for executable PERF_RECORD_MMAP records (Jiri Olsa) [1672893]
-- [tools] perf symbols: Store the ELF symbol type in the symbol struct (Jiri Olsa) [1672893]
-- [tools] perf map: Remove map_type arg from map_groups__find() (Jiri Olsa) [1672893]
-- [tools] perf thread: Make thread__find_map() search all maps (Jiri Olsa) [1672893]
-- [tools] perf thread: Ditch __thread__find_symbol() (Jiri Olsa) [1672893]
-- [tools] perf machine: Use machine__find_kernel_function() instead of open coded version (Jiri Olsa) [1672893]
-- [tools] perf thread: Remove addr_type arg from thread__find_cpumode_addr_location() (Jiri Olsa) [1672893]
-- [tools] perf symbols: Remove map_type arg from dso__find_symbol() (Jiri Olsa) [1672893]
-- [tools] perf map: Remove enum_type arg to map_groups__first() (Jiri Olsa) [1672893]
-- [tools] perf symbols: Unexport symbol_type__is_a() (Jiri Olsa) [1672893]
-- [tools] perf tools: Use kallsyms__is_function() (Jiri Olsa) [1672893]
-- [tools] tools lib symbols: Introduce kallsyms__is_function() (Jiri Olsa) [1672893]
-- [tools] perf symbols: Shorten dso__(first|last)_symbol() (Jiri Olsa) [1672893]
-- [tools] perf ui stdio: Use map_groups__fprintf() (Jiri Olsa) [1672893]
-- [tools] perf map: Shorten map_groups__find() signature (Jiri Olsa) [1672893]
-- [tools] perf tests vmlinux-kallsyms: Use map__for_each_symbol() instead of open coded equivalent (Jiri Olsa) [1672893]
-- [tools] perf tests vmlinux-kallsyms: Use machine__find_kernel_function(_by_name) (Jiri Olsa) [1672893]
-- [tools] perf machine: Remove needless map_type from machine__load_vmlinux_path() (Jiri Olsa) [1672893]
-- [tools] perf machine: Shorten machine__load_kallsyms() signature (Jiri Olsa) [1672893]
-- [tools] perf machine: Introduce machine__kernel_maps() (Jiri Olsa) [1672893]
-- [tools] perf documentation: Support for asciidoctor (Jiri Olsa) [1672893]
-- [tools] perf map: Shorten map_groups__find_by_name() signature (Jiri Olsa) [1672893]
-- [tools] perf thread: Make thread__find_symbol() return the symbol searched (Jiri Olsa) [1672893]
-- [tools] perf thread: Make thread__find_map() return the map (Jiri Olsa) [1672893]
-- [tools] perf script: Use thread__find_symbol() instead of ad-hoc equivalent (Jiri Olsa) [1672893]
-- [tools] perf thread: Introduce thread__find_symbol() (Jiri Olsa) [1672893]
-- [tools] perf tests: Let 'perf test list' display subtests (Jiri Olsa) [1672893]
-- [tools] perf thread: Introduce thread__find_map() (Jiri Olsa) [1672893]
-- [tools] perf map: Introduce map__has_symbols() (Jiri Olsa) [1672893]
-- [tools] perf dso: Add dso__has_symbols() method (Jiri Olsa) [1672893]
-- [tools] perf symbols: Use __map__is_kernel() instead of ad-hoc equivalent code (Jiri Olsa) [1672893]
-- [tools] perf top: Use __map__is_kernel() (Jiri Olsa) [1672893]
-- [tools] perf stat: Display length strings of each run for --table option (Jiri Olsa) [1672893]
-- [tools] perf stat: Add --table option to display time of each run (Jiri Olsa) [1672893]
-- [tools] perf stat: Display time in precision based on std deviation (Jiri Olsa) [1672893]
-- [tools] perf check-headers.sh: Add support to check 2 independent files (Jiri Olsa) [1672893]
-- [tools] perf check-headers.sh: Simplify arguments passing (Jiri Olsa) [1672893]
-- [tools] perf buildid-cache: Support --purge-all option (Jiri Olsa) [1672893]
-- [tools] perf buildid-cache: Support --list option (Jiri Olsa) [1672893]
-- [tools] perf tools intel-pt-decoder: Update insn.h from the kernel sources (Jiri Olsa) [1672893]
-- [tools] perf trace beauty prctl: Default header_dir to cwd to work without parms (Jiri Olsa) [1672893]
-- [x86] perf/x86/intel/uncore: Fix hardcoded index of Broadwell extra PCI devices (Jiri Olsa) [1672893]
-- [kernel] perf/core: Move inline keyword at the beginning of declaration (Jiri Olsa) [1672893]
-- [kernel] perf/core: Move the inline keyword at the beginning of the function declaration (Jiri Olsa) [1672893]
-- [kernel] perf/core: Fix group scheduling with mixed hw and sw events (Jiri Olsa) [1672893]
-- [netdrv] ena: update driver version from 2.0.2 to 2.0.3 (John Linville) [1677008]
-- [netdrv] ena: fix race between link up and device initalization (John Linville) [1677008]
-- [netdrv] igb: Bump version number (Corinna Vinschen) [1637731]
-- [netdrv] revert "igb: reduce CPU0 latency when updating statistics" (Corinna Vinschen) [1637731]
-- [netdrv] igb: Fix an issue that PME is not enabled during runtime suspend (Corinna Vinschen) [1637731]
-- [netdrv] igb: Change RXPBSIZE size when setting Qav mode (Corinna Vinschen) [1637731]
-- [netdrv] igb: reduce CPU0 latency when updating statistics (Corinna Vinschen) [1637731]
-- [netdrv] igb: fix uninitialized variables (Corinna Vinschen) [1637731]
-- [netdrv] intel: consolidate NAPI and NAPI exit (Corinna Vinschen) [1637731]
-- [netdrv] igb: Fix format with line continuation whitespace (Corinna Vinschen) [1637731]
-- [netdrv] igb: extend PTP gettime function to read system clock (Corinna Vinschen) [1637731]
-- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Corinna Vinschen) [1637731]
-- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Corinna Vinschen) [1637731]
-- [netdrv] igb: shorten maximum PHC timecounter update interval (Corinna Vinschen) [1637731]
-- [netdrv] igb: shorten maximum PHC timecounter update interval (Corinna Vinschen) [1637731]
-- [netdrv] igb: remove ndo_poll_controller (Corinna Vinschen) [1637731]
-- [netdrv] intel-ethernet: use correct module license (Corinna Vinschen) [1637731]
-- [netdrv] igb: Replace mdelay() with msleep() in igb_integrated_phy_loopback() (Corinna Vinschen) [1637731]
-- [netdrv] igb: Replace GFP_ATOMIC with GFP_KERNEL in igb_sw_init() (Corinna Vinschen) [1637731]
-- [netdrv] igb: Use an advanced ctx descriptor for launchtime (Corinna Vinschen) [1637731]
-- [netdrv] igb: e1000_phy: Mark expected switch fall-through (Corinna Vinschen) [1637731]
-- [netdrv] igb: e1000_82575: Mark expected switch fall-through (Corinna Vinschen) [1637731]
-- [netdrv] igb_main: Mark expected switch fall-throughs (Corinna Vinschen) [1637731]
-- [netdrv] igb: Remove unnecessary include of <linux/pci-aspm.h> (Corinna Vinschen) [1637731]
-- [netdrv] igb: Use dma_wmb() instead of wmb() before doorbell writes (Corinna Vinschen) [1637731]
-- [netdrv] igb: Add support for ETF offload (Corinna Vinschen) [1637731]
-- [netdrv] igb: Only call skb_tx_timestamp after descriptors are ready (Corinna Vinschen) [1637731]
-- [netdrv] igb: Refactor igb_offload_cbs() (Corinna Vinschen) [1637731]
-- [netdrv] igb: Only change Tx arbitration when CBS is on (Corinna Vinschen) [1637731]
-- [netdrv] igb: Refactor igb_configure_cbs() (Corinna Vinschen) [1637731]
-- [netdrv] cls_flower: fix error values for commands not supported by drivers (Corinna Vinschen) [1637731]
-- [netdrv] treewide: Use array_size() in vmalloc() (Corinna Vinschen) [1637731]
-- [netdrv] treewide: kzalloc() -> kcalloc() (Corinna Vinschen) [1637731]
-- [netdrv] treewide: kmalloc() -> kmalloc_array() (Corinna Vinschen) [1637731]
-- [netdrv] igb: Wait 10ms just once after TX queues reset (Corinna Vinschen) [1637731]
-- [netdrv] igb: Clear TSICR interrupts together with ICR (Corinna Vinschen) [1637731]
-- [netdrv] qed: Fix stack out of bounds bug (Manish Chopra) [1643532]
-- [netdrv] qed: Fix system crash in ll2 xmit (Manish Chopra) [1643532]
-- [netdrv] qed: Fix VF probe failure while FLR (Manish Chopra) [1643532]
-- [netdrv] qed: Fix LACP pdu drops for VFs (Manish Chopra) [1643532]
-- [netdrv] qed: Fix bug in tx promiscuous mode settings (Manish Chopra) [1643532]
-- [netdrv] qede: Error recovery process (Manish Chopra) [1643532]
-- [netdrv] qed: Add infrastructure for error detection and recovery (Manish Chopra) [1643532]
-- [netdrv] qed: Revise load sequence to avoid PCI errors (Manish Chopra) [1643532]
-- [netdrv] qed: Fix qed_ll2_post_rx_buffer_notify_fw() by adding a write memory barrier (Manish Chopra) [1643532]
-- [kernel] qed: Fix qed_chain_set_prod() for PBL chains with non power of 2 page count (Manish Chopra) [1643532]
-- [infiniband] qedr: Potential null ptr dereference of qp (Manish Chopra) [1643532]
-- [netdrv] qed: Fix an error code qed_ll2_start_xmit() (Manish Chopra) [1643532]
-- [netdrv] qed: Fix command number mismatch between driver and the mfw (Manish Chopra) [1643532]
-- [infiniband] ib/{mlx5, ocrdma, qedr, rxe}: Omit port validation from IB verbs (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "Dispalying" -> "Displaying" (Manish Chopra) [1643532]
-- [netdrv] qede: Register l2 queues with doorbell overflow recovery mechanism (Manish Chopra) [1643532]
-- [kernel] qed: Expose the doorbell overflow recovery mechanism to the protocol drivers (Manish Chopra) [1643532]
-- [netdrv] qed: Register light L2 queues with doorbell overflow recovery mechanism (Manish Chopra) [1643532]
-- [netdrv] qed: Register slowpath queue doorbell with doorbell overflow recovery mechanism (Manish Chopra) [1643532]
-- [netdrv] qed: Use the doorbell overflow recovery mechanism in case of doorbell overflow (Manish Chopra) [1643532]
-- [netdrv] qed: Add doorbell overflow recovery mechanism (Manish Chopra) [1643532]
-- [netdrv] qede - Add a statistic for a case where driver drops tx packet due to memory allocation failure (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "attnetion" -> "attention" (Manish Chopra) [1643532]
-- [netdrv] qed: Add support for MBI upgrade over MFW (Manish Chopra) [1643532]
-- [netdrv] qede: Update link status only when interface is ready (Manish Chopra) [1643532]
-- [netdrv] qede: Simplify the usage of qede-flags (Manish Chopra) [1643532]
-- [netdrv] qed: Display port_id in the UFP debug messages (Manish Chopra) [1643532]
-- [netdrv] qed: Fix QM getters to always return a valid pq (Manish Chopra) [1643532]
-- [netdrv] qed: Fix bitmap_weight() check (Manish Chopra) [1643532]
-- [netdrv] net/ethernet/qlogic/qed/qed_rdma.h: fix typo (Manish Chopra) [1643532]
-- [netdrv] qed: Fix reading wrong value in loop condition (Manish Chopra) [1643532]
-- [netdrv] qed: Fix rdma_info structure allocation (Manish Chopra) [1643532]
-- [netdrv] qed: Fix overriding offload_tc by protocols without APP TLV (Manish Chopra) [1643532]
-- [netdrv] qed: Fix PTT leak in qed_drain() (Manish Chopra) [1643532]
-- [netdrv] qed: Fix potential memory corruption (Manish Chopra) [1643532]
-- [netdrv] qed: Fix SPQ entries not returned to pool in error flows (Manish Chopra) [1643532]
-- [netdrv] qed: Fix blocking/unlimited SPQ entries leak (Manish Chopra) [1643532]
-- [netdrv] qed: Fix memory/entry leak in qed_init_sp_request() (Manish Chopra) [1643532]
-- [netdrv] qed: fix link config error handling (Manish Chopra) [1643532]
-- [netdrv] qed: Fix static checker warning (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "transcevier" -> "transceiver" (Manish Chopra) [1643532]
-- [netdrv] qed: Prevent link getting down in case of autoneg-off (Manish Chopra) [1643532]
-- [netdrv] qede: Check available link modes before link set from ethtool (Manish Chopra) [1643532]
-- [netdrv] qed: Add supported link and advertise link to display in ethtool (Manish Chopra) [1643532]
-- [netdrv] qed: Added supported transceiver modes, speed capability and board config to HSI (Manish Chopra) [1643532]
-- [netdrv] qed: Align local and global PTT to propagate through the APIs (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "Ireelevant" -> "Irrelevant" (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid implicit enum conversion in qed_ooo_submit_tx_buffers (Manish Chopra) [1643532]
-- [kernel] rdma/qedr: Remove enumerated type qed_roce_ll2_tx_dest (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "b_cb_registred" -> "b_cb_registered" (Manish Chopra) [1643532]
-- [netdrv] qed: Remove set but not used variable 'p_archipelago' (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid implicit enum conversion in qed_iwarp_parse_rx_pkt (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid constant logical operation warning in qed_vf_pf_acquire (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid implicit enum conversion in qed_roce_mode_to_flavor (Manish Chopra) [1643532]
-- [netdrv] qed: Fix mask parameter in qed_vf_prep_tunn_req_tlv (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid implicit enum conversion in qed_set_tunn_cls_info (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "toogle" -> "toggle" (Manish Chopra) [1643532]
-- [netdrv] qed: list usage cleanup (Manish Chopra) [1643532]
-- [netdrv] qede: Use FIELD_SIZEOF directly instead of reimplementing its function (Manish Chopra) [1643532]
-- [netdrv] qed: remove duplicated include from qed_cxt.c (Manish Chopra) [1643532]
-- [netdrv] qed*: Utilize FW 8.37.7.0 (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: remove set but not used variable 'ctx' (Manish Chopra) [1643532]
-- [netdrv] qed: Lower the severity of a dcbx log message (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "comparsion" -> "comparison" (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid sending mailbox commands when MFW is not responsive (Manish Chopra) [1643532]
-- [netdrv] qed: Prevent a possible deadlock during driver load and unload (Manish Chopra) [1643532]
-- [netdrv] qed: Wait for MCP halt and resume commands to take place (Manish Chopra) [1643532]
-- [netdrv] qed: Wait for ready indication before rereading the shmem (Manish Chopra) [1643532]
-- [infiniband] qedr: Add user space support for SRQ (Manish Chopra) [1643532]
-- [infiniband] qedr: Add support for kernel mode SRQ's (Manish Chopra) [1643532]
-- [infiniband] qedr: Add wrapping generic structure for qpidr and adjust idr routines (Manish Chopra) [1643532]
-- [netdrv] qed/qede: qede_setup_tc() can be static (Manish Chopra) [1643532]
-- [netdrv] qede: Ingress tc flower offload (drop action) support (Manish Chopra) [1643532]
-- [netdrv] qede: Add destination ip based flow profile (Manish Chopra) [1643532]
-- [netdrv] qed/qede: Multi CoS support (Manish Chopra) [1643532]
-- [netdrv] qed: qed_dev: Mark expected switch fall-throughs (Manish Chopra) [1643532]
-- [netdrv] qed: Add Multi-TC RoCE support (Manish Chopra) [1643532]
-- [netdrv] qed: Add a flag which indicates if offload TC is set (Manish Chopra) [1643532]
-- [netdrv] qed: Add DCBX API - qed_dcbx_get_priority_tc() (Manish Chopra) [1643532]
-- [netdrv] qed: Make some functions static (Manish Chopra) [1643532]
-- [netdrv] qed: remove redundant functions qed_get_cm_pq_idx_rl (Manish Chopra) [1643532]
-- [netdrv] qed: remove redundant functions qed_set_gft_event_id_cm_hdr (Manish Chopra) [1643532]
-- [netdrv] qed: Correct Multicast API to reflect existence of 256 approximate buckets (Manish Chopra) [1643532]
-- [netdrv] qed: Fix possible race for the link state value (Manish Chopra) [1643532]
-- [netdrv] qede: Add driver callbacks for eeprom module query (Manish Chopra) [1643532]
-- [netdrv] qed: Add qed APIs for PHY module query (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "successffuly" -> "successfully" (Manish Chopra) [1643532]
-- [netdrv] qed: off by one in qed_parse_mcp_trace_buf() (Manish Chopra) [1643532]
-- [netdrv] qed: remove redundant pointer 'name' (Manish Chopra) [1643532]
-- [netdrv] qede: Adverstise software timestamp caps when PHC is not available (Manish Chopra) [1643532]
-- [netdrv] qed: Fix use of incorrect size in memcpy call (Manish Chopra) [1643532]
-- [netdrv] qed: Fix setting of incorrect eswitch mode (Manish Chopra) [1643532]
-- [netdrv] qed: Limit msix vectors in kdump kernel to the minimum required count (Manish Chopra) [1643532]
-- [netdrv] qed: Do not advertise DCBX_LLD_MANAGED capability (Manish Chopra) [1643532]
-- [netdrv] qed: Add sanity check for SIMD fastpath handler (Manish Chopra) [1643532]
-- [netdrv] qed: Fix possible memory leak in Rx error path handling (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Fix NULL pointer dereference when running over iWARP without RDMA-CM (Manish Chopra) [1643532]
-- [netdrv] qed*: Utilize FW 8.37.2.0 (Manish Chopra) [1643532]
-- [netdrv] qed: use dma_zalloc_coherent instead of allocator/memset (Manish Chopra) [1643532]
-- [netdrv] qed: Add srq core support for RoCE and iWARP (Manish Chopra) [1643532]
-- [netdrv] qed*: Add link change count value to ethtool statistics display (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: fix spelling mistake: "adrresses" -> "addresses" (Manish Chopra) [1643532]
-- [netdrv] qed*: Support drop action classification (Manish Chopra) [1643532]
-- [netdrv] qede: Support flow classification to the VFs (Manish Chopra) [1643532]
-- [netdrv] qed*: Support other classification modes (Manish Chopra) [1643532]
-- [netdrv] qede: Validate unsupported configurations (Manish Chopra) [1643532]
-- [netdrv] qede: Refactor ethtool rx classification flow (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Fix doorbell bar mapping for dpi > 1 (Manish Chopra) [1643532]
-- [netdrv] qed: Fix mask for physical address in ILT entry (Manish Chopra) [1643532]
-- [netdrv] qede: Add build_skb() support (Manish Chopra) [1643532]
-- [netdrv] qed: Fix LL2 race during connection terminate (Manish Chopra) [1643532]
-- [netdrv] qed: Fix possibility of list corruption during rmmod flows (Manish Chopra) [1643532]
-- [netdrv] qed: LL2 flush isles when connection is closed (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake: "taskelt" -> "tasklet" (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake: "offloded" -> "offloaded" (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: fix spelling mistake: "failes" -> "fails" (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake: "checksumed" -> "checksummed" (Manish Chopra) [1643532]
-- [netdrv] qed: Fix copying 2 strings (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Fix wmb usage in qedr (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Zero stack memory before copying to user space (Manish Chopra) [1643532]
-- [infiniband] qedr: fix spelling mistake: "hanlde" -> "handle" (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: eliminate duplicate barriers on weakly-ordered archs (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Use pci_enable_atomic_ops_to_root() (Manish Chopra) [1643532]
-
-* Thu Feb 21 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1009.el7]
-- [netdrv] ibmvnic: Update driver queues after change in ring size support (Steve Best) [1674253]
-- [netdrv] ibmvnic: Fix RX queue buffer cleanup (Steve Best) [1674253]
-- [kernel] mm: Introduce kvcalloc() (Petr Oros) [1672317]
-- [scsi] qla2xxx: Use complete switch scan for RSCN events (Himanshu Madhani) [1655965]
-- [scsi] lpfc: Fix lpfc_wwn_set return code check (Dick Kennedy) [1672749]
-- [edac] amd64: Add Family 17h, models 10h-2fh support (Gary Hook) [1670608]
-- [acpi] apci / watchdog: enable acpi_watchdog_uses_rtc (David Arcari) [1663637]
-- [watchdog] hpwdt: Update driver version (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Do not claim unsupported hardware (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Exclude via blacklist (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Disable PreTimeout when Timeout is smaller (Joseph Szczypek) [1665272]
-- [documentation] watchdog: hpwdt: Update Driver Documentation (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Update version number (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Module paramerter alias (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Display module parameters (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Claim NMI from iLO (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Initialize pretimeout from module parameter (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Update driver version (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Add dynamic debug (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Programable Pretimeout NMI (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: remove allow_kdump module parameter (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Modify to use watchdog core (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Update nmi_panic message (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Update Module info and copyright (Joseph Szczypek) [1665272]
-- [documentation] documentation: hpwdt: fix selftests related file refs (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Get rid of MODULE_ALIAS_MISCDEV statements (Joseph Szczypek) [1665272]
-- [netdrv] cross-tree: phase out dma_zalloc_coherent() (David Arcari) [1637730]
-- [netdrv] intel: consolidate NAPI and NAPI exit (David Arcari) [1637730]
-- [netdrv] e1000e: allow non-monotonic SYSTIM readings (David Arcari) [1483933 1637730]
-- [netdrv] intel-ethernet: use correct module license (David Arcari) [1637730]
-- [netdrv] treewide: kzalloc() -> kcalloc() (David Arcari) [1637730]
-- [netdrv] treewide: kmalloc() -> kmalloc_array() (David Arcari) [1637730]
-- [netdrv] intel: Cleanup the copyright/license headers (David Arcari) [1637730]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (David Arcari) [1637730]
-- [netdrv] ptp: e1000e: use helpers for converting ns to timespec (David Arcari) [1637730]
-- [netdrv] ptp: e1000e: convert to the 64 bit get/set time methods (David Arcari) [1637730]
-- [fs] proc/stat: Make the interrupt statistics more efficient (Waiman Long) [1676003]
-- [kernel] genirq: Avoid summation loops for /proc/stat (Waiman Long) [1676003]
-- [s390] zcrypt: fix specification exception on z196 during ap probe (Hendrik Brueckner) [1669535]
-- [s390] dasd: fix handling of internal requests (Hendrik Brueckner) [1667196]
-
-* Wed Feb 20 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1008.el7]
-- [net] vsock/virtio: reset connected sockets on device removal (Stefano Garzarella) [1609699]
-- [net] vsock/virtio: fix kernel panic after device hot-unplug (Stefano Garzarella) [1609699]
-- [netdrv] netxen: fix a missing check and an uninitialized use (Tony Camuso) [1548159]
-- [netdrv] qlogic: netxen: remove ndo_poll_controller (Tony Camuso) [1548159]
-- [netdrv] netxen_nic: Mark expected switch fall-throughs (Tony Camuso) [1548159]
-- [netdrv] qlogic: netxen: remove various redundant variables (Tony Camuso) [1548159]
-- [netdrv] Use octal not symbolic permissions (Tony Camuso) [1548159]
-- [kernel] io: change writeX_relaxed() to remove barriers (Petr Oros) [1668778]
-- [kernel] io: change readX_relaxed() to remove barriers (Petr Oros) [1668778]
-- [kernel] io: change inX() to have their own IO barrier overrides (Petr Oros) [1668778]
-- [kernel] io: change outX() to have their own IO barrier overrides (Petr Oros) [1668778]
-- [kernel] io: define stronger ordering for the default writeX() implementation (Petr Oros) [1668778]
-- [kernel] io: define stronger ordering for the default readX() implementation (Petr Oros) [1668778]
-- [kernel] io: define several IO & PIO barrier types for the asm-generic version (Petr Oros) [1668778]
-- [char] /dev/mem: Use more consistent data types (Petr Oros) [1668778]
-- [kernel] asm-generic/io.h: Implement generic {read, write}s*() (Petr Oros) [1668778]
-- [kernel] asm-generic/io.h: Reconcile I/O accessor overrides (Petr Oros) [1668778]
-- [platform] x86: intel_pmc_core: convert to DEFINE_SHOW_ATTRIBUTE (David Arcari) [1658079]
-- [platform] x86: intel_pmc_core: Decode Snoop / Non Snoop LTR (David Arcari) [1658079]
-- [platform] x86: intel_pmc_core: Fix LTR IGNORE Max offset (David Arcari) [1658079]
-- [platform] x86: intel_pmc_core: Show Latency Tolerance info (David Arcari) [1658079]
-- [platform] x86: intel_pmc: Convert to use SPDX identifier (David Arcari) [1658079]
-- [platform] x86: intel_pmc_core: Add CNP SLPS0 debug registers (David Arcari) [1658079]
-- [infiniband] ib/hfi1: Close VNIC sdma_progress sleep window (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Unreserve a reserved request when it is completed (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Consider LMC in 16B/bypass ingress packet check (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Incorrect sizing of sge for PIO will OOPs (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Limit VNIC use of SDMA engines to the available count (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Correctly process FECN and BECN in packets (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Ignore LNI errors before DC8051 transitions to Polling state (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Dump pio info for non-user send contexts (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix a latency issue for small messages (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix an out-of-bounds access in get_hw_stats (Alex Estrin) [1637242]
-- [infiniband] ib/qib: Fix an error code in qib_sdma_verbs_send() (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Move ruc_loopback to rdmavt (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Move send completion logic to rdmavt (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Move copy SGE logic into rdmavt (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Use VL15 for SM packets (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add mtu check for operational data VLs (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add static trace for iowait (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Prepare resource waits for dual leg (Alex Estrin) [1637242]
-- [infiniband] ib/rdmavt: Rename check_send_wqe as setup_wqe (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Error path MAD response size is incorrect (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Move UnsupportedVL bits definitions to the correct header (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: set_intr_bits uses incorrect source for register modification (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Missing return value in error path for user sdma (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Right size user_sdma sequence numbers and related variables (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove race conditions in user_sdma send path (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Eliminate races in the SDMA send error path (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Schedule multi RC/UC packets instead of posting (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Move URGENT IRQ enable to hfi1_rcvctrl() (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Rework the IRQ API to be more flexible (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: PCIe bus width retry (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Make the MSIx resource allocation a bit more flexible (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Prepare for new HFI1 MSIx API (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Get the hfi1_devdata structure as early as possible (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: tune_pcie_caps is arbitrarily placed, poorly (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove duplicated defines (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Rework file list in Makefile (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix destroy_qp hang after a link down (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix context recovery when PBC has an UnsupportedVL (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Invalid user input can result in crash (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix SL array bounds check (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Invalid NUMA node information can cause a divide by zero (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Suppress a compiler warning (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove incorrect call to do_interrupt callback (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Set in_use_ctxts bits for user ctxts only (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix incorrect mixing of ERR_PTR and NULL return values (Alex Estrin) [1637242]
-- [rdma] rdma/opa_addr.h: Fix an endianness issue (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove INTx support and simplify MSIx usage (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Reorg ctxtdata and rightsize fields (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove caches of chip CSRs (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove unused/writeonly devdata fields (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Rightsize ctxt_eager_bufs fields (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove rcvctrl from ctxtdata (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove rcvhdrq_size (Alex Estrin) [1637242]
-- [rdma] ib/rdmavt, ib/hfi1: Create device dependent s_flags (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove rcvhdrsize (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Move rhf_offset from devdata to ctxtdata (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Move normal functions from hfi1_devdata to const array (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix comment on default hdr entry size (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Rename exp_lock to exp_mutex (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add bypass register defines and replace blind constants (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove unused variable (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Ensure VL index is within bounds (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix user context tail allocation for DMA_RTAIL (Alex Estrin) [1637242]
-- [infiniband] ib/{rdmavt, hfi1}: Change hrtimer add to use pinned version (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Set port number for errorinfo MAD response (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Cleanup of exp_rcv (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add 16B Management Packet trace support (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add support for 16B Management Packets (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Define 16B Management Packets (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Move logic to allocate receive WQE into rdmavt (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, rdmavt, qib}: Implement CQ completion vector support (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Create common functions for affinity CPU mask operations (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Read CCE Revision register to verify the device is responsive (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib}: Add handling of kernel restart (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Reorder incorrect send context disable (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Return correct value for device state (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix fault injection init/exit issues (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Complete check for locally terminated smp (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Return actual error value from program_rcvarray() (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Prevent LNI hang when LCB can't obtain lanes (Alex Estrin) [1637242]
-
-* Tue Feb 19 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1007.el7]
-- [netdrv] bnxt_en: Disable interrupts when allocating CP rings or NQs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix context memory allocation (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix ring checking logic on 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Adjust default RX coalescing ticks to 10 us (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Support for 64-bit flow handle (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Increase context memory allocations on 57500 chips for RDMA (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Add Level 2 context memory paging support (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Enhance bnxt_alloc_ring()/bnxt_free_ring() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add support for 2nd firmware message channel (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Introduce bnxt_get_hwrm_resp_addr & bnxt_get_hwrm_seq_id routines (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Avoid arithmetic on void * pointer (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Use macros for firmware message doorbell offsets (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Set hwrm_intr_seq_id value to its inverted value (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.33 (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix ethtool self-test loopback (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: query force speeds before disabling autoneg mode (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not free port statistics buffer when device is down (Jonathan Toppins) [1471632 1643317]
-- [netdrv] bnxt_en: Save ring statistics before reset (Jonathan Toppins) [1471632 1643317]
-- [netdrv] bnxt_en: Return linux standard errors in bnxt_ethtool.c (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Don't set ETS on unused TCs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add ethtool -S priority counters (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add SR-IOV support for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Disable MSIX before re-reserving NQs/CMPL rings (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Reserve 1 stat_ctx for RDMA driver (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not modify max_stat_ctxs after RDMA driver requests/frees stat_ctxs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: get rid of num_stat_ctxs variable (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add bnxt_get_avail_cp_rings_for_en() helper function (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Store the maximum NQs available on the PF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt: remove printing of hwrm message (Jonathan Toppins) [1642057 1643317]
-- [netdrv] bnxt_en: Fix _bnxt_get_max_rings() for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Fix NQ/CP rings accounting on the new 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Keep track of reserved IRQs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix CNP CoS queue regression (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix filling time in bnxt_fill_coredump_record() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add software "missed_irqs" counter (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Workaround occasional TX timeout on 57500 A0 (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Disable RDMA support on the 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Fix rx_l4_csum_errors counter on 57500 devices (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Fix RSS context allocation (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Copy and paste bug in extended tx_stats (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add PCI ID for BCM57508 device (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Add new NAPI poll function for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Refactor bnxt_poll_work() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add coalescing setup for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Use bnxt_cp_ring_info struct pointer as parameter for RX path (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add RSS support for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Increase RSS context array count and skip ring groups on 57500 chips (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Allocate/Free CP rings for 57500 series chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Modify bnxt_ring_alloc_send_msg() to support 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Add helper functions to get firmware CP ring ID (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Allocate completion ring structures for 57500 series chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Modify the ring reservation functions for 57500 series chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Adjust MSIX and ring groups for 57500 series chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Re-structure doorbells (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add 57500 new chip ID and basic structures (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Configure context memory on new devices (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Check context memory requirements from firmware (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add new flags to setup new page table PTE bits on newer devices (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Refactor bnxt_ring_struct (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update interrupt coalescing logic (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add maximum extended request length fw message support (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add additional extended port statistics (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.3 (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Remove unnecessary unsigned integer comparison and initialize variable (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: get the reduced max_irqs by the ones used by RDMA (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: free hwrm resources, if driver probe fails (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix enables field in HWRM_QUEUE_COS2BW_CFG request (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix VNIC reservations on the PF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add a driver specific gre_ver_check devlink parameter (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Use msix_vec_per_pf_max and msix_vec_per_pf_min devlink params (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: return proper error when FW returns HWRM_ERR_CODE_RESOURCE_ACCESS_DENIED (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Use ignore_ari devlink parameter (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix TX timeout during netpoll (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: don't try to offload VLAN 'modify' action (Jonathan Toppins) [1643317]
-- [netdrv] bnxt: Fix a uninitialized variable warning (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix VF mac address regression (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: remove set but not used variable 'addr_type' (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not adjust max_cp_rings by the ones used by RDMA (Jonathan Toppins) [1635842 1643317]
-- [netdrv] bnxt_en: Clean up unused functions (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix firmware signaled resource change logic in open (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: remove set but not used variable 'rx_stats' (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: take coredump_record structure off stack (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: avoid string overflow for record->system_name (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix strcpy() warnings in bnxt_ethtool.c (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not use the CNP CoS queue for networking traffic (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add DCBNL DSCP application protocol support (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add hwmon sysfs support to read temperature (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Notify firmware about IF state changes (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Move firmware related flags to a new fw_cap field in struct bnxt (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add BNXT_NEW_RM() macro (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add support for ethtool get dump (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update RSS setup and GRO-HW logic according to the latest spec (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add new VF resource allocation strategy mode (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add PHY retry logic (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add external loopback test to ethtool selftest (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Adjust timer based on ethtool stats-block-usecs settings (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update firmware interface version to 1.9.2.25 (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: combine 'else if' and 'else' into single branch (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: remove redundant debug register dma mem allocation (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix for system hang if request_irq fails (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not modify max IRQ count after RDMA driver requests/frees IRQs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Support clearing of the IFF_BROADCAST flag (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Always set output parameters in bnxt_get_max_rings() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix inconsistent BNXT_FLAG_AGG_RINGS logic (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix the vlan_tci exact match check (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add bnxt_en initial params table and register it (Jonathan Toppins) [1643317]
-- [netdrv] bnxt: simplify cls_flower command switch and handle default case (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Report PCIe link properties with pcie_print_link_status() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Always forward VF MAC address to the PF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Read phy eeprom A2h address only when optical diagnostics is supported (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Check unsupported speeds in bnxt_update_link() on PF only (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix firmware message delay loop regression (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Reserve rings at driver open if none was reserved at probe time (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Reserve RSS and L2 contexts for VF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Don't reserve rings on VF when min rings were not provisioned by PF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Reserve rings in bnxt_set_channels() if device is down (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: add debugfs support for DIM (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: reduce timeout on initial HWRM calls (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Increase RING_IDLE minimum threshold to 50 (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not allow VF to read EEPROM (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Display function level rx/tx_discard_pkts via ethtool (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Simplify ring alloc/free error messages (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not set firmware time from VF driver on older firmware (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Check the lengths of encapsulated firmware responses (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Remap TC to hardware queues when configuring PFC (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add TC to hardware QoS queue mapping logic (Jonathan Toppins) [1643317]
-- [netdrv] bpf: make bnxt compatible w/ bpf_xdp_adjust_tail (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add extended port statistics support (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Include additional hardware port statistics in ethtool -S (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Use a dedicated VNIC mode for RDMA (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Adjust default rings for multi-port NICs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Eliminate duplicate barriers on weakly-ordered archs (Jonathan Toppins) [1643317]
-- [netdrv] xdp: make the stack take care of the tear down (Jonathan Toppins) [1643317]
-- [nvme] nvmet-rdma: fix response use after free (David Milburn) [1642873 1642670 1641542]
-- [nvme] validate controller state before rescheduling keep alive (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: fix surprise removal (David Milburn) [1642873 1642670 1641542]
-- [nvme] Free ctrl device name on init failure (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fc: resolve io failures during connect (David Milburn) [1642873 1642670 1641542]
-- [nvme] revert "nvmet-rdma: use a private workqueue for delete" (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fabrics: move controller options matching to fabrics (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: fix hot removal during error handling (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-fcloop: suppress a compiler warning (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-core: make implicit seed truncation explicit (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fc: fix kernel-doc headers (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: declare local symbols static (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: use strlcpy() instead of strcpy() (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: fix nvme_suspend_queue() kernel-doc header (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-core: rework a NQN copying operation (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: check for timeout in nvme_rdma_wait_for_cm() (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: use strcmp() instead of strncmp() for subsystem lookup (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: remove unreachable code (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: use a private workqueue for delete (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme_fc: add 'nvme_discovery' sysfs attribute to fc transport device (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet_fc: support target port removal with nvmet layer (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fc: fix for a minor typos (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: remove redundant module prefix (David Milburn) [1642873 1642670 1641542]
-- [nvme] fix typo in nvme_identify_ns_descs (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: fix possible bogus dereference under heavy load (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fcloop: Fix dropped LS's to removed target port (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fabrics: fix ctrl_loss_tmo < 0 to reconnect forever (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: keep a port pointer in nvmet_ctrl (David Milburn) [1642873 1642670 1641542]
-- [nvme] simplify the API for getting log pages (David Milburn) [1642873 1642670 1641542]
-- [kernel] nvme.h: add support for the log specific field (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: don't use uuid_le type (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: centralize admin/io queue teardown sequence (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: centralize controller setup sequence (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: unquiesce queues when deleting the controller (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: mark expected switch fall-through (David Milburn) [1642873 1642670 1641542]
-- [nvme] cache struct nvme_ctrl reference to struct nvme_request (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-loop: merge init_request methods (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: add an error flow for post_recv failures (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: add unlikely check in the fast path (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: support max(16KB, PAGE_SIZE) inline data (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: support up to 4 segments of inline data (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: add commands supported and effects log page (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: fixup crash on NULL device path (David Milburn) [1642873 1642670 1641542]
-- [nvme] don't enable AEN if not supported (David Milburn) [1642873 1642670 1641542]
-- [nvme] ensure forward progress during Admin passthru (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: reset keep alive timer in controller enable (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: don't override opts->queue_size (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: fix possible double free condition when failing to create a controller (David Milburn) [1642873 1642670 1641542]
-- [nvme] don't rely on the changed namespace list log (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: free smart-log buffer after use (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: fix error flow during mapping request data (David Milburn) [1642873 1642670 1641542]
-- [nvme] cleanup double shift issue (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: make CMB SQ mod-param read-only (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: remove HMB teardown on reset (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: queue creation fixes (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: remove unnecessary completion doorbell check (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: remove unnecessary nested locking (David Milburn) [1642873 1642670 1641542]
-- [nvme] use the changed namespaces list log to clear ns data changed AENs (David Milburn) [1642873 1642670 1641542]
-- [nvme] mark nvme_queue_scan static (David Milburn) [1642873 1642670 1641542]
-- [nvme] submit AEN event configuration on startup (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: mask pending AENs (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: add AEN configuration support (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: implement the changed namespaces log (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: split log page implementation (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: add a new nvmet_zero_sgl helper (David Milburn) [1642873 1642670 1641542]
-- [kernel] nvme.h: add AEN configuration symbols (David Milburn) [1642873 1642670 1641542]
-- [kernel] nvme.h: add the changed namespace list log (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme.h: untangle AEN notice definitions (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-loop: add support for multiple ports (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: simplify __nvme_submit_cmd (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: Rate limit the nvme timeout warnings (David Milburn) [1642873 1642670 1641542]
-- [nvme] fixup memory leak in nvme_init_identify() (David Milburn) [1642873 1642670 1641542]
-- [nvme] fix KASAN warning when parsing host nqn (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: remove duplicate NULL initialization for req->ns (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: make a few error messages more generic (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: Fix AER reset handling (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: set nvmeq->cq_vector after alloc cq/sq (David Milburn) [1642873 1642670 1641542]
-- [nvme] host: core: fix precedence of ternary operator (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: fix race between poll and IRQ completions (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: drop IRQ disabling on submission queue lock (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: split the nvme queue lock into submission and completion locks (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: handle completions outside of the queue lock (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: move ->cq_vector == -1 check outside of ->q_lock (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: remove cq check after submission (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: simplify nvme_cqe_valid (David Milburn) [1642873 1642670 1641542]
-- [nvme] mark the result argument to nvme_complete_async_event volatile (David Milburn) [1642873 1642670 1641542]
-- [nvme] pci: Sync controller reset for AER slot_reset (David Milburn) [1642873 1642670 1641542]
-- [nvme] pci: Hold controller reference during async probe (David Milburn) [1642873 1642670 1641542]
-- [nvme] pci: Use async_schedule for initial reset work (David Milburn) [1642873 1642670 1641542]
-- [nvme] Add Quirk Delay before CHK RDY for Seagate Nytro Flash Storage (David Milburn) [1642873 1642670 1641542]
-- [nvme] fc: provide a descriptive error (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: filter newlines from user input (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: return all zeroed buffer when we can't find an active namespace (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: correctly check for target keyed sgl support (David Milburn) [1642873 1642670 1641542]
-- [nvme] don't hold nvmf_transports_rwsem for more than transport lookups (David Milburn) [1642873 1642670 1641542]
-- [nvme] add quirk to force medium priority for SQ creation (David Milburn) [1642873 1642670 1641542]
-- [nvme] Fix sync controller reset return (David Milburn) [1642873 1642670 1641542]
-- [netdrv] sfc: initialise found bitmap in efx_ef10_mtd_probe (Jarod Wilson) [1658087]
-- [netdrv] ibmvnic: Add ethtool private flag for driver-defined queue limits (Steve Best) [1671762]
-- [netdrv] ibmvnic: Introduce driver limits for ring sizes (Steve Best) [1671762]
-- [netdrv] ibmvnic: Increase maximum queue size limit (Steve Best) [1671762]
-- [kernel] tracing: Quiet gcc warning about maybe unused link variable (Artem Savkov) [1605060]
-- [kernel] tracing/kprobes: Fix trace_probe flags on enable_trace_kprobe() failure (Artem Savkov) [1605060]
-
-* Sun Feb 17 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1006.el7]
-- [kvm] KVM: nVMX: unconditionally cancel preemption timer in free_nested (Paolo Bonzini) [1671906] {CVE-2019-7221}
-- [kvm] kvm: fix kvm_ioctl_create_device() reference counting (Paolo Bonzini) [1671923] {CVE-2019-6974}
-- [target] scsi: target: iscsi: cxgbit: add missing spin_lock_init() (Arjun Vynipadath) [1642435]
-- [target] scsi: target: iscsi: cxgbit: fix csk leak (Arjun Vynipadath) [1642435]
-- [target] scsi: target: iscsi: cxgbit: fix csk leak (Arjun Vynipadath) [1642435]
-- [target] scsi: target: iscsi: cxgbit: use pr_debug() instead of pr_info() (Arjun Vynipadath) [1642435]
-- [x86] mm/fault: Allow stack access below rsp (Waiman Long) [1651416]
-- [md] raid5: fix data corruption of replacements after originals dropped (Nigel Croxon) [1636944]
-- [md] remove a bogus comment (Nigel Croxon) [1636944]
-- [md] r5cache: remove redundant pointer bio (Nigel Croxon) [1636944]
-- [md] raid10: fix that replacement cannot complete recovery after reassemble (Nigel Croxon) [1636944]
-- [md] fix memleak for mempool (Nigel Croxon) [1636944 1527943 1576466 1599780]
-- [md] Memory leak when flush bio size is zero (Nigel Croxon) [1636944 1527943 1576466 1599780]
-- [md] fix lock contention for flush bios (Nigel Croxon) [1636944 1527943 1576466 1599780]
-- [xen] xenbus driver must not accept invalid transaction ids (Vitaly Kuznetsov) [1663266]
-- [xen] xenbus: fix deadlock on writes to /proc/xen/xenbus (Vitaly Kuznetsov) [1663266]
-- [xen] xenbus: don't look up transaction IDs for ordinary writes (Vitaly Kuznetsov) [1663266]
-- [xen] xenbus: don't BUG() on user mode induced condition (Vitaly Kuznetsov) [1663266]
-- [xen] xenbus: Add proper handling of XS_ERROR from Xenbus for transactions (Vitaly Kuznetsov) [1663266]
-- [xen] fix potential integer overflow in queue_reply (Vitaly Kuznetsov) [1663266]
-
-* Sat Feb 16 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1005.el7]
-- [tools] perf tools: Fix perf.data format description of NRCPUS header (Jiri Olsa) [1672651]
-- [tools] perf script python: Add addr into perf sample dict (Jiri Olsa) [1672651]
-- [tools] perf data: Update documentation section on cpu topology (Jiri Olsa) [1672651]
-- [tools] perf bpf: Fix NULL return handling in bpf__prepare_load() (Jiri Olsa) [1672651]
-- [tools] Add IS_ERR_OR_NULL to err.h (Jiri Olsa) [1672651]
-- [tools] perf test: "Session topology" dumps core on s390 (Jiri Olsa) [1672651]
-- [tools] perf parse-events: Handle uncore event aliases in small groups properly (Jiri Olsa) [1672651]
-- [tools] perf tools: Add missing newline when parsing empty BPF proggie (Jiri Olsa) [1672651]
-- [tools] perf annotate: Display all available events on --stdio (Jiri Olsa) [1672651]
-- [tools] perf test: "probe libc's inet_pton" fails on s390 due to missing inline (Jiri Olsa) [1672651]
-- [tools] revert "perf pmu: Fix pmu events parsing rule" (Jiri Olsa) [1672651]
-- [tools] perf vendor events intel: Remove duplicated entry for westmereep-dp in mapfile.csv (Jiri Olsa) [1672651]
-- [tools] perf bench numa: Fix typo in options (Jiri Olsa) [1672651]
-- [tools] perf stat: Fix duplicate PMU name for interval print (Jiri Olsa) [1672651]
-- [tools] perf evsel: Only fall back group read for leader (Jiri Olsa) [1672651]
-- [tools] perf stat: Print out hint for mixed PMU group error (Jiri Olsa) [1672651]
-- [tools] perf pmu: Fix core PMU alias list for X86 platform (Jiri Olsa) [1672651]
-- [tools] perf record: Fix s390 undefined record__auxtrace_init() return value (Jiri Olsa) [1672651]
-- [tools] perf mem: Document incorrect and missing options (Jiri Olsa) [1672651]
-- [tools] perf evsel: Disable write_backward for leader sampling group events (Jiri Olsa) [1672651]
-- [tools] perf pmu: Fix pmu events parsing rule (Jiri Olsa) [1672651]
-- [tools] perf stat: Keep the / modifier separator in fallback (Jiri Olsa) [1672651]
-- [tools] perf list: Remove s390 specific strcmp_cpuid_cmp function (Jiri Olsa) [1672651]
-- [tools] perf machine: Set main kernel end address properly (Jiri Olsa) [1672651]
-- [tools] perf test bpf: Fixup BPF test using epoll_pwait syscall function probe (Jiri Olsa) [1672651]
-- [tools] perf tests mmap: Show which tracepoint is failing (Jiri Olsa) [1672651]
-- [tools] perf tools: Add '\n' at the end of parse-options error messages (Jiri Olsa) [1672651]
-- [tools] perf record: Remove suggestion to enable APIC (Jiri Olsa) [1672651]
-- [tools] perf record: Remove misleading error suggestion (Jiri Olsa) [1672651]
-- [tools] perf hists browser: Clarify top/report browser help (Jiri Olsa) [1672651]
-- [tools] perf mem: Allow all record/report options (Jiri Olsa) [1672651]
-- [tools] perf trace: Support MAP_FIXED_NOREPLACE (Jiri Olsa) [1672651]
-- [kernel] perf: Return proper values for user stack errors (Jiri Olsa) [1672651]
-- [tools] perf list: Add s390 support for detailed/verbose PMU event description (Jiri Olsa) [1672651]
-- [tools] perf script: Extend misc field decoding with switch out event type (Jiri Olsa) [1672651]
-- [tools] perf report: Extend raw dump (-D) out with switch out event type (Jiri Olsa) [1672651]
-- [tools] perf annotate: Handle variables in 'sub', 'or' and many other instructions (Jiri Olsa) [1672651]
-- [tools] perf annotate: Allow setting the offset level in .perfconfig (Jiri Olsa) [1672651]
-- [tools] perf report: Fix switching to another perf.data file (Jiri Olsa) [1672651]
-- [tools] perf record: Change warning for missing sysfs entry to debug (Jiri Olsa) [1672651]
-- [tools] perf sched: Fix documentation for timehist (Jiri Olsa) [1672651]
-- [tools] perf version: Print status for syscall_table (Jiri Olsa) [1672651]
-- [tools] perf tools: Rename HAVE_SYSCALL_TABLE to HAVE_SYSCALL_TABLE_SUPPORT (Jiri Olsa) [1672651]
-- [tools] perf script: Use HAVE_LIBXXX_SUPPORT to replace NO_LIBXXX (Jiri Olsa) [1672651]
-- [tools] perf tests bpf: Remove unused ptrace.h include from LLVM test (Jiri Olsa) [1672651]
-- [tools] perf jvmti: Give hints about package names needed to build (Jiri Olsa) [1672651]
-- [tools] perf annotate browser: Allow showing offsets in more than just jump targets (Jiri Olsa) [1672651]
-- [tools] perf annotate: Allow showing offsets in more than just jump targets (Jiri Olsa) [1672651]
-- [tools] perf tests: Run dwarf unwind test on arm32 (Jiri Olsa) [1672651]
-- [tools] tools headers: Restore READ_ONCE() C++ compatibility (Jiri Olsa) [1672651]
-- [tools] perf stat: Enable 1ms interval for printing event counters values (Jiri Olsa) [1672651]
-- [tools] perf tests clang: Fix function name for clang IR test (Jiri Olsa) [1672651]
-- [tools] perf clang: Add support for recent clang versions (Jiri Olsa) [1672651]
-- [tools] perf tools: Fix perf builds with clang support (Jiri Olsa) [1672651]
-- [tools] perf tools: No need to include namespaces.h in util.h (Jiri Olsa) [1672651]
-- [tools] perf hists browser: Show extra_title_lines in the 'D' debug hotkey (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Make auxtrace_queues__add_buffer() do CPU filtering (Jiri Olsa) [1672651]
-- [tools] perf report: Remove duplicated 'samples' in lost samples warning (Jiri Olsa) [1672651]
-- [tools] perf ui browser: Fixup cleaning unused lines at the bottom (Jiri Olsa) [1672651]
-- [tools] perf annotate browser: Fixup vertical line separating metrics from instructions (Jiri Olsa) [1672651]
-- [tools] perf annotate: Show group details on the title line (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Make auxtrace_queues__add_buffer() allocate struct buffer (Jiri Olsa) [1672651]
-- [tools] perf trace: Remove redundant ')' (Jiri Olsa) [1672651]
-- [tools] perf annotate stdio2: Print more descriptive event information header (Jiri Olsa) [1672651]
-- [tools] perf annotate browser: Show extra title line with event information (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce annotation__scnprintf_samples_period() method (Jiri Olsa) [1672651]
-- [tools] perf ui browser: Move the extra title lines from the hists browser (Jiri Olsa) [1672651]
-- [tools] perf hists: Move hists__scnprintf_title() away from the TUI code (Jiri Olsa) [1672651]
-- [tools] perf hists: Introduce hists__scnprint_title() (Jiri Olsa) [1672651]
-- [tools] perf hists browser: Rename perf_evsel_browser_title to a more descriptive name (Jiri Olsa) [1672651]
-- [tools] perf version: Add man page (Jiri Olsa) [1672651]
-- [tools] perf tools: Add 'perf -vv' as an alias to 'perf version --build-options' (Jiri Olsa) [1672651]
-- [tools] perf version: Print the compiled-in status of libraries (Jiri Olsa) [1672651]
-- [tools] perf config: Rename to HAVE_DWARF_GETLOCATIONS_SUPPORT (Jiri Olsa) [1672651]
-- [tools] perf config: Add some new -DHAVE_XXX to CFLAGS (Jiri Olsa) [1672651]
-- [tools] tools Add config.h header file (Jiri Olsa) [1672651]
-- [tools] perf trace: Show only failing syscalls (Jiri Olsa) [1672651]
-- [tools] perf tools: Add a "dso_size" sort order (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM z14 (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM z13 (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM zEC12 zBC12 (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM z196 (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM z10EC z10BC (Jiri Olsa) [1672651]
-- [tools] perf build: Fix check-headers.sh opts assignment (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use absolute addresses to calculate jump target offsets (Jiri Olsa) [1672651]
-- [tools] perf annotate: Defer searching for comma in raw line till it is needed (Jiri Olsa) [1672651]
-- [tools] perf annotate: Support jumping from one function to another (Jiri Olsa) [1672651]
-- [tools] perf annotate: Add "_local" to jump/offset validation routines (Jiri Olsa) [1672651]
-- [tools] perf python: Reference Py_None before returning it (Jiri Olsa) [1672651]
-- [tools] perf annotate: Mark jumps to outher functions with the call arrow (Jiri Olsa) [1672651]
-- [tools] perf annotate: Pass function descriptor to its instruction parsing routines (Jiri Olsa) [1672651]
-- [tools] perf annotate: No need to calculate notes->start twice (Jiri Olsa) [1672651]
-- [tools] perf annotate browser: Add 'P' hotkey to dump annotation to file (Jiri Olsa) [1672651]
-- [tools] perf report: Introduce --ignore-vmlinux command line option (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce --ignore-vmlinux command line option (Jiri Olsa) [1672651]
-- [tools] perf annotate: Add function header to --stdio2 (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use the default annotation options for --stdio2 (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move the default annotate options to the library (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce the --stdio2 output mode (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce annotation_line__filter() (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use a ops table for annotation_line__write() (Jiri Olsa) [1672651]
-- [tools] perf annotate: Finish the generalization of annotate_browser__write() (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce annotation_line__print_start() out of TUI code (Jiri Olsa) [1672651]
-- [tools] perf ui browser: Add vprintf() method (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce annotation_line__max_percent() (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce symbol__annotate2 method (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce init_column_widths() method out of TUI code (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move update_column_widths() to the generic lib (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move the column widths from the TUI to generic lib (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce set_offsets() method out of TUI code (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move nr_{asm_}entries to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move 'start' to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate: Nuke struct browser_line (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move mark_jump_targets from the TUI to the annotation library (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move nr_jumps to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move jumps_percent_color to ui_browser (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move max_jump_sources to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate tui: Add browser__annotation() helper (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move pcnt_with() to the annotation library (Jiri Olsa) [1672651]
-- [tools] perf annotate: Stop using a global config struct (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move nr_events from annotate_browser to annotation struct (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move compute_ipc() to annotation library (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move annotation_line array from TUI to generic code (Jiri Olsa) [1672651]
-- [tools] perf annotate tui: Move have_cycles to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate tui: Use annotate_browser__cycles_width() mroe (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move cycles/IPC formatting width constants outside TUI (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move annotation_options out of the TUI browser (Jiri Olsa) [1672651]
-- [tools] perf unwind: Report error from dwfl_attach_state (Jiri Olsa) [1672651]
-- [tools] perf probe: Use right type to access array elements (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use ops->target.name when available for unresolved call targets (Jiri Olsa) [1672651]
-- [tools] perf top: Document --ignore-vmlinux (Jiri Olsa) [1672651]
-- [tools] perf tools: Fix python extension build for gcc 8 (Jiri Olsa) [1672651]
-- [tools] perf tools: Fix snprint warnings for gcc 8 (Jiri Olsa) [1672651]
-- [tools] perf debug: Avoid setting 'quiet' to 'true' unnecessarily (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Update POWER9 events (Jiri Olsa) [1672651]
-- [tools] perf report: Support forced leader feature in pipe mode (Jiri Olsa) [1672651]
-- [tools] perf record: Synthesize features before events in pipe mode (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use asprintf when formatting objdump command line (Jiri Olsa) [1672651]
-- [tools] perf machine: Fix mmap name setup (Jiri Olsa) [1672651]
-- [tools] perf stat: Make function perf_stat_evsel_id_init static (Jiri Olsa) [1672651]
-- [tools] perf llvm: Display eBPF compiling command in debug output (Jiri Olsa) [1672651]
-- [tools] perf top: Fix top.call-graph config option reading (Jiri Olsa) [1672651]
-- [tools] perf record: Avoid duplicate call of perf_default_config() (Jiri Olsa) [1672651]
-- [tools] perf unwind: Unwind with libdw doesn't take symfs into account (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Enable JSON events for ThunderX2 B0 (Jiri Olsa) [1672651]
-- [tools] perf report: Show zero counters as well in 'perf report --stat' (Jiri Olsa) [1672651]
-- [tools] perf stat: Fix core dump when flag T is used (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: add HiSilicon hip08 JSON file (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: fixup A53 to use recommended events (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Fixup ThunderX2 to use recommended events (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Add armv8-recommended.json (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Add support for arch standard events (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Relocate Cortex A53 JSONs to arm subdirectory (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Relocate ThunderX2 JSON to cavium subdirectory (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Add support for pmu events vendor subdirectory (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Drop support for unused topic directories (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Fix error code in json_events() (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Drop incomplete multiple mapfile support (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Add cacheline address count column (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Add span header over cacheline data (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Display node for cacheline address (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Call calc_width() only for displayed entries (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Make calc_width work with struct c2c_hist_entry (Jiri Olsa) [1672651]
-- [tools] perf c2c record: Record physical addresses in samples (Jiri Olsa) [1672651]
-- [tools] perf tests: Add mem2node object test (Jiri Olsa) [1672651]
-- [tools] perf tools: Add mem2node object (Jiri Olsa) [1672651]
-- [tools] perf env: Free memory nodes data (Jiri Olsa) [1672651]
-- [tools] perf tools: Update quipper information (Jiri Olsa) [1672651]
-- [tools] add WARN_ON_ONCE (Jiri Olsa) [1672651]
-- [tools] perf annotate: Handle s390 PC relative load and store instruction (Jiri Olsa) [1672651]
-- [tools] perf annotate: Support to display the IPC/Cycle in TUI mode (Jiri Olsa) [1672651]
-- [tools] perf report: Provide libtraceevent with a kernel symbol resolver (Jiri Olsa) [1672651]
-- [tools] perf build: Force llvm/clang test compile output to .make.output (Jiri Olsa) [1672651]
-- [tools] perf build: Add llvm/clang make targets to FILES (Jiri Olsa) [1672651]
-- [tools] perf build: Add llvm/clang/cxx make tests into FEATURE_TESTS_EXTRA (Jiri Olsa) [1672651]
-- [tools] perf tools: Update tags with .cpp files (Jiri Olsa) [1672651]
-- [tools] perf tools: Add MEM_TOPOLOGY feature to perf data file (Jiri Olsa) [1672651]
-- [tools] perf c2c: Use mem_info refcnt logic (Jiri Olsa) [1672651]
-- [tools] perf tools: Add refcnt into struct mem_info (Jiri Olsa) [1672651]
-- [tools] perf record: Remove progname from struct record (Jiri Olsa) [1672651]
-- [tools] perf record: Move machine variable down the function (Jiri Olsa) [1672651]
-- [tools] perf report: Display perf.data header info (Jiri Olsa) [1672651]
-- [tools] perf report: Fix the output for stdio events list (Jiri Olsa) [1672651]
-- [tools] perf annotate: Fix s390 target function disassembly (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Adjust overlap-checking to support sampling mode (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Remove a check for sampling mode (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Tidy old_buffer handling in intel_pt_get_trace() (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Get rid of intel_pt_use_buffer_pid_tid() (Jiri Olsa) [1672651]
-- [tools] perf intel-pt/bts: In auxtrace_record__init_intel() evlist is never NULL (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Fix timestamp following overflow (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Fix error recovery from missing TIP packet (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Fix sync_switch (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Fix overlap detection to identify consecutive buffers correctly (Jiri Olsa) [1672651]
-- [tools] perf pmu: Auto-merge PMU events created by prefix or glob match (Jiri Olsa) [1672651]
-- [tools] perf pmu: Display pmu name when printing unmerged events in stat (Jiri Olsa) [1672651]
-- [tools] perf pmu: Support wildcards on pmu name in dynamic pmu events (Jiri Olsa) [1672651]
-- [tools] perf tools: Correct title markers for asciidoctor (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Make auxtrace_queues__add_buffer() return buffer_ptr (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Rename some buffer-queuing functions (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Add missing parameters from kernel-doc comments (Jiri Olsa) [1672651]
-- [tools] perf trace: Support setting cgroups as targets (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Make the cgroup name be const char * (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Add evlist__add_default_cgroup() (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Add evlist__findnew_cgroup() (Jiri Olsa) [1672651]
-- [tools] perf record: Combine some auxtrace initialization into a single function (Jiri Olsa) [1672651]
-- [tools] perf sched map: Re-annotate shortname if thread comm changed (Jiri Olsa) [1672651]
-- [tools] perf sched: Move thread::shortname to thread_runtime (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Introduce cgroup__new() out of open coded equivalent (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Introduce find_cgroup() method (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Introduce cgroup__get() (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Rename close_cgroup() to cgroup__put() (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Introduce cgroup__delete() (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Rename 'struct cgroup_sel' to 'struct cgroup' (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Remove misplaced __maybe_unused (Jiri Olsa) [1672651]
-- [tools] perf annotate: Find 'call' instruction target symbol at parsing time (Jiri Olsa) [1672651]
-- [tools] perf record: Throttle user defined frequencies to the maximum allowed (Jiri Olsa) [1672651]
-- [tools] perf top: Allow asking for the maximum allowed sample rate (Jiri Olsa) [1672651]
-- [tools] perf top browser: Show sample_freq in browser title line (Jiri Olsa) [1672651]
-- [tools] perf record: Allow asking for the maximum allowed sample rate (Jiri Olsa) [1672651]
-- [tools] perf stat: Ignore error thread when enabling system-wide --per-thread (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Simplify arguments when tracking multiple events (Jiri Olsa) [1672651]
-- [tools] perf stat: Use xyarray dimensions to iterate fds (Jiri Olsa) [1672651]
-- [tools] perf tools: Add Python 3 support (Jiri Olsa) [1672651]
-- [tools] perf python: Make twatch.py work with both python2 and python3 (Jiri Olsa) [1672651]
-- [tools] perf ftrace: Append an EOL when write tracing files (Jiri Olsa) [1672651]
-- [tools] perf machine: Fix paranoid check in machine__set_kernel_mmap() (Jiri Olsa) [1672651]
-- [tools] perf s390: Fix reading cpuid model information (Jiri Olsa) [1672651]
-- [tools] perf test: Fix test case 23 for s390 z/VM or KVM guests (Jiri Olsa) [1672651]
-- [tools] perf cpuid: Introduce a platform specific cpuid compare function (Jiri Olsa) [1672651]
-- [tools] perf annotate: Scan cpuid for s390 and save machine type (Jiri Olsa) [1672651]
-- [tools] perf record: Provide detailed information on s390 CPU (Jiri Olsa) [1672651]
-- [tools] perf trace powerpc: Use generated syscall table (Jiri Olsa) [1672651]
-- [tools] perf powerpc: Generate system call table from asm/unistd.h (Jiri Olsa) [1672651]
-- [tools] tools include powerpc: Grab a copy of arch/powerpc/include/uapi/asm/unistd.h (Jiri Olsa) [1672651]
-- [tools] perf report: Fix memory corruption in --branch-history mode --branch-history (Jiri Olsa) [1672651]
-- [tools] perf report: Fix wrong jump arrow (Jiri Olsa) [1672651]
-- [tools] perf report: Fix description for --mem-mode (Jiri Olsa) [1672651]
-- [tools] perf mem: Document a missing option (Jiri Olsa) [1672651]
-- [tools] perf kmem: Document a missing option & an argument (Jiri Olsa) [1672651]
-- [tools] perf annotate: Add missing arguments in Man page (Jiri Olsa) [1672651]
-- [tools] perf tools: Use target->per_thread and target->system_wide flags (Jiri Olsa) [1672651]
-- [tools] perf tools: Do not create kernel maps in sample__resolve() (Jiri Olsa) [1672651]
-- [tools] perf machine: Remove machine__load_kallsyms() (Jiri Olsa) [1672651]
-- [tools] perf machine: Don't search for active kernel start in __machine__create_kernel_maps (Jiri Olsa) [1672651]
-- [tools] perf machine: Generalize machine__set_kernel_mmap() (Jiri Olsa) [1672651]
-- [tools] perf machine: Move kernel mmap name into struct machine (Jiri Olsa) [1672651]
-- [tools] perf machine: Free root_dir in machine__init() error path (Jiri Olsa) [1672651]
-- [tools] tools lib symbol: Skip non-address kallsyms line (Jiri Olsa) [1672651]
-- [tools] perf stat: Add support to print counts after a period of time (Jiri Olsa) [1672651]
-- [tools] perf stat: Add support to print counts for fixed times (Jiri Olsa) [1672651]
-- [tools] perf report: Add support to display group output for non group events (Jiri Olsa) [1672651]
-- [tools] perf report: Ask for ordered events for --tasks option (Jiri Olsa) [1672651]
-- [tools] perf tools: Fix comment for sort__* compare functions (Jiri Olsa) [1672651]
-- [tools] perf tests: Fix dwarf unwind for stripped binaries (Jiri Olsa) [1672651]
-- [tools] tools lib api fs: Add sysfs__read_xll function (Jiri Olsa) [1672651]
-- [tools] tools lib api fs: Add filename__read_xll function (Jiri Olsa) [1672651]
-- [tools] perf script: Add --show-round-event to display PERF_RECORD_FINISHED_ROUND (Jiri Olsa) [1672651]
-- [tools] perf record: Put new line after target override warning (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Don't enable freeze-on-smi for PerfMon V1 (Jiri Olsa) [1672651]
-- [tools] perf/core: Store context switch out type in PERF_RECORD_SWITCH[_CPU_WIDE] (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel/uncore: Fix SBOX support for Broadwell CPUs (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel/uncore: Revert "Remove SBOX support for Broadwell server" (Jiri Olsa) [1672651]
-- [kernel] perf/core: Need CAP_SYS_ADMIN to create k/uprobe with perf_event_open() (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Move regs->flags EXACT bit init (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Add Cannon Lake support for RAPL profiling (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Fix PMU read for auto-reload (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel/ds: Introduce ->read() function for auto-reload events and flush the PEBS buffer there (Jiri Olsa) [1672651]
-- [x86] perf/x86: Introduce a ->read() callback in 'struct x86_pmu' (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Fix event update for auto-reload (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Properly save/restore the PMU state in the NMI handler (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Fix large period handling on Broadwell CPUs (Jiri Olsa) [1672651]
-
-* Thu Feb 14 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1004.el7]
-- [fs] xfs: don't allow insert-range to shift extents past the maximum offset (Brian Foster) [1613405]
-- [fs] xfs: prevent creating negative-sized file via INSERT_RANGE (Brian Foster) [1613405]
-- [fs] xfs: fix s_maxbytes overflow problems (Brian Foster) [1613405]
-- [fs] xfs: quota: fix missed destroy of qi_tree_lock (Brian Foster) [1613405]
-- [fs] xfs: move xfs_iext_insert tracepoint to report useful information (Brian Foster) [1613405]
-- [fs] xfs: hold xfs_buf locked between shortform->leaf conversion and the addition of an attribute (Brian Foster) [1613405]
-- [fs] xfs: add the ability to join a held buffer to a defer_ops (Brian Foster) [1613405]
-- [fs] xfs: make iomap_begin functions trim iomaps consistently (Brian Foster) [1613405]
-- [fs] xfs: remove "no-allocation" reservations for file creations (Brian Foster) [1613405]
-- [fs] fs: xfs: remove duplicate includes (Brian Foster) [1613405]
-- [fs] xfs: remove unused parameter from xfs_writepage_map (Brian Foster) [1613405]
-- [fs] xfs: ubsan fixes (Brian Foster) [1613405]
-- [fs] xfs: fix leaks on corruption errors in xfs_bmap.c (Brian Foster) [1613405]
-- [fs] xfs: log recovery should replay deferred ops in order (Brian Foster) [1613405]
-- [fs] xfs: always free inline data before resetting inode fork during ifree (Brian Foster) [1613405]
-- [fs] xfs: abstract out dev_t conversions (Brian Foster) [1613405]
-- [fs] xfs: fix memory leak in xfs_iext_free_last_leaf (Brian Foster) [1613405]
-- [fs] xfs: fix type usage (Brian Foster) [1613405]
-- [fs] xfs: fix forgotten rcu read unlock when skipping inode reclaim (Brian Foster) [1613405]
-- [fs] xfs: on failed mount, force-reclaim inodes after unmounting quota controls (Brian Foster) [1613405]
-- [fs] xfs: remove u_int* type usage (Brian Foster) [1613405]
-- [fs] xfs: handle zero entries case in xfs_iext_rebalance_leaf (Brian Foster) [1613405]
-- [fs] xfs: add comments documenting the rebalance algorithm (Brian Foster) [1613405]
-- [fs] xfs: trivial indentation fixup for xfs_iext_remove_node (Brian Foster) [1613405]
-- [fs] xfs: remove a superflous assignment in xfs_iext_remove_node (Brian Foster) [1613405]
-- [fs] xfs: add some comments to xfs_iext_insert/xfs_iext_insert_node (Brian Foster) [1613405]
-- [fs] xfs: fix number of records handling in xfs_iext_split_leaf (Brian Foster) [1613405]
-- [fs] fs/xfs: Remove NULL check before kmem_cache_destroy (Brian Foster) [1613405]
-- [fs] xfs: mark xlog_verify_dest_ptr STATIC (Brian Foster) [1613405]
-- [fs] xfs: mark xlog_recover_check_summary STATIC (Brian Foster) [1613405]
-- [fs] xfs: mark xfs_btree_check_lblock and xfs_btree_check_ptr static (Brian Foster) [1613405]
-- [fs] xfs: remove unreachable error injection code in xfs_qm_dqget (Brian Foster) [1613405]
-- [fs] xfs: remove unused debug counts for xfs_lock_inodes (Brian Foster) [1613405]
-- [fs] xfs: mark xfs_errortag_ktype static (Brian Foster) [1613405]
-- [fs] xfs: always define STATIC to static noinline (Brian Foster) [1613405]
-- [fs] xfs: move xfs_bmbt_irec and xfs_exntst_t to xfs_types.h (Brian Foster) [1613405]
-- [fs] xfs: pass struct xfs_bmbt_irec to xfs_bmbt_validate_extent (Brian Foster) [1613405]
-- [fs] xfs: remove the nr_extents argument to xfs_iext_remove (Brian Foster) [1613405]
-- [fs] xfs: remove the nr_extents argument to xfs_iext_insert (Brian Foster) [1613405]
-- [fs] xfs: use a b+tree for the in-core extent list (Brian Foster) [1613405]
-- [fs] xfs: allow unaligned extent records in xfs_bmbt_disk_set_all (Brian Foster) [1613405]
-- [fs] xfs: remove support for inlining data/extents into the inode fork (Brian Foster) [1613405]
-- [fs] xfs: introduce the xfs_iext_cursor abstraction (Brian Foster) [1613405]
-- [fs] xfs: iterate over extents in xfs_bmap_extents_to_btree (Brian Foster) [1613405]
-- [fs] xfs: iterate over extents in xfs_iextents_copy (Brian Foster) [1613405]
-- [fs] xfs: pass an on-disk extent to xfs_bmbt_validate_extent (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_collapse_extents (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_del_extent_* (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_add_extent_unwritten_real (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_add_extent_hole_real (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_add_extent_hole_delay (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: remove a duplicate assignment in xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: don't create overlapping extents in xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: convert remaining xfs_sb_version_... checks to bool (Brian Foster) [1613405]
-- [fs] xfs: move error injection tags into their own file (Brian Foster) [1613405]
-- [fs] xfs: remove inode log format typedef (Brian Foster) [1613405]
-- [fs] xfs: remove redundant assignment to variable bit (Brian Foster) [1613405]
-- [fs] xfs: fix unused variable warning in xfs_buf_set_ref() (Brian Foster) [1613405]
-- [fs] xfs: abort dir/attr btree operation if btree is obviously weird (Brian Foster) [1613405]
-- [fs] xfs: refactor extended attribute list operation (Brian Foster) [1613405]
-- [fs] xfs: drain the buffer LRU on mount (Brian Foster) [1613405]
-- [fs] xfs: fix log block underflow during recovery cycle verification (Brian Foster) [1613405]
-- [fs] xfs: more robust recovery xlog buffer validation (Brian Foster) [1613405]
-- [fs] xfs: add a new xfs_iext_lookup_extent_before helper (Brian Foster) [1613405]
-- [fs] xfs: merge xfs_bmap_read_extents into xfs_iread_extents (Brian Foster) [1613405]
-- [fs] xfs: add asserts for the mmap lock in xfs_{insert, collapse}_file_space (Brian Foster) [1613405]
-- [fs] xfs: rewrite xfs_bmap_first_unused to make better use of xfs_iext_get_extent (Brian Foster) [1613405]
-- [fs] xfs: don't rely on extent indices in xfs_bmap_insert_extents (Brian Foster) [1613405]
-- [fs] xfs: don't rely on extent indices in xfs_bmap_collapse_extents (Brian Foster) [1613405]
-- [fs] xfs: update got in xfs_bmap_shift_update_extent (Brian Foster) [1613405]
-- [fs] xfs: remove xfs_bmse_shift_one (Brian Foster) [1613405]
-- [fs] xfs: split xfs_bmap_shift_extents (Brian Foster) [1613405]
-- [fs] xfs: remove XFS_BMAP_MAX_SHIFT_EXTENTS (Brian Foster) [1613405]
-- [fs] xfs: inline xfs_shift_file_space into callers (Brian Foster) [1613405]
-- [fs] xfs: remove if_rdev (Brian Foster) [1613405]
-- [fs] xfs: remove the never fully implemented UUID fork format (Brian Foster) [1613405]
-- [fs] xfs: remove XFS_BMAP_TRACE_EXLIST (Brian Foster) [1613405]
-- [fs] xfs: move pre/post-bmap tracing into xfs_iext_update_extent (Brian Foster) [1613405]
-- [fs] xfs: remove post-bmap tracing in xfs_bmap_local_to_extents (Brian Foster) [1613405]
-- [fs] xfs: make better use of the 'state' variable in xfs_bmap_del_extent_real (Brian Foster) [1613405]
-- [fs] xfs: add a xfs_bmap_fork_to_state helper (Brian Foster) [1613405]
-- [fs] xfs: create inode pointer verifiers (Brian Foster) [1613405]
-- [fs] xfs: refactor btree block header checking functions (Brian Foster) [1613405]
-- [fs] xfs: refactor btree pointer checks (Brian Foster) [1613405]
-- [fs] xfs: create block pointer check functions (Brian Foster) [1613405]
-- [fs] xfs: return a distinct error code value for IGET_INCORE cache misses (Brian Foster) [1613405]
-- [fs] xfs: buffer lru reference count error injection tag (Brian Foster) [1613405]
-- [fs] xfs: fail if xattr inactivation hits a hole (Brian Foster) [1613405]
-- [fs] xfs: check kthread_should_stop() after the setting of task state (Brian Foster) [1613405]
-- [fs] xfs: remove xfs_bmbt_get_state (Brian Foster) [1613405]
-- [fs] xfs: remove all xfs_bmbt_set_* helpers except for xfs_bmbt_set_all (Brian Foster) [1613405]
-- [fs] xfs: replace xfs_bmbt_lookup_ge with xfs_bmbt_lookup_first (Brian Foster) [1613405]
-- [fs] xfs: pass a struct xfs_bmbt_irec to xfs_bmbt_lookup_eq (Brian Foster) [1613405]
-- [fs] xfs: pass a struct xfs_bmbt_irec to xfs_bmbt_update (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bmap_add_extent_unwritten_real (Brian Foster) [1613405]
-- [fs] xfs: refactor delalloc accounting in xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bmap_add_extent_hole_real (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bmap_add_extent_hole_delay (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_del_extent_real (Brian Foster) [1613405]
-- [fs] xfs: use the state defines in xfs_bmap_del_extent_real (Brian Foster) [1613405]
-- [fs] xfs: use correct state defines in xfs_bmap_del_extent_{cow, delay} (Brian Foster) [1613405]
-- [fs] xfs: move some more code into xfs_bmap_del_extent_real (Brian Foster) [1613405]
-- [fs] xfs: use xfs_bmap_del_extent_delay for the data fork as well (Brian Foster) [1613405]
-- [fs] xfs: rename bno to end in __xfs_bunmapi (Brian Foster) [1613405]
-- [fs] xfs: don't set XFS_BTCUR_BPRV_WASDEL in xfs_bunmapi (Brian Foster) [1613405]
-- [fs] xfs: use xfs_iext_get_extent instead of open coding it (Brian Foster) [1613405]
-- [fs] xfs: fix incorrect extent state in xfs_bmap_add_extent_unwritten_real (Brian Foster) [1613405]
-- [fs] xfs: simplify the xfs_getbmap interface (Brian Foster) [1613405]
-- [fs] xfs: rewrite getbmap using the xfs_iext_* helpers (Brian Foster) [1613405]
-- [fs] xfs: fix bmv_count confusion w/ shared extents (Brian Foster) [1613405]
-- [fs] xfs: teach get_bmapx about shared extents and the CoW fork (Brian Foster) [1613405]
-- [fs] xfs: cancel dirty pages on invalidation (Brian Foster) [1613405]
-- [fs] xfs: handle error if xfs_btree_get_bufs fails (Brian Foster) [1613405]
-- [fs] xfs: Fix bool initialization/comparison (Brian Foster) [1613405]
-- [fs] xfs: move more RT specific code under CONFIG_XFS_RT (Brian Foster) [1613405]
-- [fs] xfs: Don't log uninitialised fields in inode structures (Brian Foster) [1613405]
-- [fs] xfs: update i_size after unwritten conversion in dio completion (Brian Foster) [1613405]
-- [fs] xfs: remove redundant re-initialization of total_nr_pages (Brian Foster) [1613405]
-- [fs] xfs: Output warning message when discard option was enabled even though the device does not support discard (Brian Foster) [1613405]
-- [fs] xfs: kill meaningless variable 'zero' (Brian Foster) [1613405]
-- [fs] fs/xfs: Use pS printk format for direct addresses (Brian Foster) [1613405]
-- [fs] xfs: XFS_IS_REALTIME_INODE() should be false if no rt device present (Brian Foster) [1613405]
-- [fs] xfs: use kmem_free to free return value of kmem_zalloc (Brian Foster) [1613405]
-- [fs] xfs: open code end_buffer_async_write in xfs_finish_page_writeback (Brian Foster) [1613405]
-- [fs] xfs: fix compiler warnings (Brian Foster) [1613405]
-- [fs] xfs: fix incorrect log_flushed on fsync (Brian Foster) [1613405]
-- [fs] xfs: replace xfs_qm_get_rtblks with a direct call to xfs_bmap_count_leaves (Brian Foster) [1613405]
-- [fs] xfs: rewrite xfs_bmap_count_leaves using xfs_iext_get_extent (Brian Foster) [1613405]
-- [fs] xfs: use xfs_iext_*_extent helpers in xfs_bmap_split_extent_at (Brian Foster) [1613405]
-- [fs] xfs: add missing bmap cancel calls in error paths (Brian Foster) [1613405]
-- [fs] xfs: use xfs_iext_*_extent helpers in xfs_bmap_shift_extents (Brian Foster) [1613405]
-- [fs] xfs: move some code around inside xfs_bmap_shift_extents (Brian Foster) [1613405]
-- [fs] xfs: use xfs_iext_get_extent in xfs_bmap_first_unused (Brian Foster) [1613405]
-- [fs] xfs: switch xfs_bmap_local_to_extents to use xfs_iext_insert (Brian Foster) [1613405]
-- [fs] xfs: add a xfs_iext_update_extent helper (Brian Foster) [1613405]
-- [fs] xfs: relog dirty buffers during swapext bmbt owner change (Brian Foster) [1613405]
-- [fs] xfs: disallow marking previously dirty buffers as ordered (Brian Foster) [1613405]
-- [fs] xfs: move bmbt owner change to last step of extent swap (Brian Foster) [1613405]
-- [fs] xfs: skip bmbt block ino validation during owner change (Brian Foster) [1613405]
-- [fs] xfs: don't log dirty ranges for ordered buffers (Brian Foster) [1613405]
-- [fs] xfs: refactor buffer logging into buffer dirtying helper (Brian Foster) [1613405]
-- [fs] xfs: ordered buffer log items are never formatted (Brian Foster) [1613405]
-- [fs] xfs: remove unnecessary dirty bli format check for ordered bufs (Brian Foster) [1613405]
-- [fs] xfs: open-code xfs_buf_item_dirty() (Brian Foster) [1613405]
-- [fs] xfs: remove the ip argument to xfs_defer_finish (Brian Foster) [1613405]
-- [fs] xfs: rename xfs_defer_join to xfs_defer_ijoin (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_trans_roll (Brian Foster) [1613405]
-- [fs] xfs: check for race with xfs_reclaim_inode() in xfs_ifree_cluster() (Brian Foster) [1613405]
-- [fs] xfs: add log recovery tracepoint for head/tail (Brian Foster) [1613405]
-- [fs] xfs: handle -EFSCORRUPTED during head/tail verification (Brian Foster) [1613405]
-- [fs] xfs: add log item pinning error injection tag (Brian Foster) [1613405]
-- [fs] xfs: fix log recovery corruption error due to tail overwrite (Brian Foster) [1613405]
-- [fs] xfs: always verify the log tail during recovery (Brian Foster) [1613405]
-- [fs] xfs: fix recovery failure when log record header wraps log end (Brian Foster) [1613405]
-- [fs] buffer: set errors in mapping at the time that the error occurs (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bunmapi_cow (Brian Foster) [1613405]
-- [fs] xfs: provide helper for counting extents from if_bytes (Brian Foster) [1613405]
-- [fs] xfs: don't reserve blocks for right shift transactions (Brian Foster) [1613405]
-- [fs] xfs: xfs_shift_file_space can be static (Brian Foster) [1613405]
-- [fs] xfs: Add support FALLOC_FL_INSERT_RANGE for fallocate (Brian Foster) [1613405]
-- [fs] fs: Add support FALLOC_FL_INSERT_RANGE for fallocate (Brian Foster) [1613405]
-
-* Wed Feb 13 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1003.el7]
-- [nvdimm] libnvdimm, pmem: Fix badblocks population for 'raw' namespaces (Frank Ramsay) [1672302]
-- [scsi] qla2xxx: Add new FC-NVMe enable BIT to enable FC-NVMe feature (Himanshu Madhani) [1671570]
-- [kernel] fs: handle kABI breakage regarding IMA enablement on s390x and ppc64 arches (Bruno Eduardo de Oliveira Meneguele) [1636601]
-- [s390] scsi: zfcp: fix posting too many status read buffers leading to adapter shutdown (Hendrik Brueckner) [1665154]
-- [crypto] chelsio - remove set but not used variables 'adap' (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - check set_msg_len overflow in generate_b0 (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - Fix wrong error counter increments (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - Reset counters on cxgb4 Detach (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - Handle PCI shutdown event (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - cleanup:send addr as value in function argument (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - Use same value for both channel in single WR (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - remove set but not used variable 'kctx_len' (Arjun Vynipadath) [1642432]
-- [crypto] chelsio: use skb_sec_path helper (Arjun Vynipadath) [1642432]
-- [crypto] chcr - ESN for Inline IPSec Tx (Arjun Vynipadath) [1642432]
-- [crypto] chcr - small packet Tx stalls the queue (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - clean up various indentation issues (Arjun Vynipadath) [1642432]
-
-* Sat Feb 09 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1002.el7]
-- [net] ptp: uapi: change _IOW to IOWR in PTP_SYS_OFFSET_EXTENDED definition (Hangbin Liu) [1643974]
-- [net] ptp: check that rsv field is zero in struct ptp_sys_offset_extended (Hangbin Liu) [1643974]
-- [net] ptp: deprecate gettime64() in favor of gettimex64() (Hangbin Liu) [1643974]
-- [net] ptp: add PTP_SYS_OFFSET_EXTENDED ioctl (Hangbin Liu) [1643974]
-- [net] ptp: check gettime64 return code in PTP_SYS_OFFSET ioctl (Hangbin Liu) [1643974]
-- [net] ptp: reorder declarations in ptp_ioctl() (Hangbin Liu) [1643974]
-- [net] Add netif_is_vxlan() (Ivan Vecera) [1668019]
-- [net] vxlan: Export address checking functions (Ivan Vecera) [1668019]
-- [net] vxlan: Remove duplicated include from vxlan.h (Ivan Vecera) [1668019]
-- [net] sched: refactor flower walk to iterate over idr (Ivan Vecera) [1655892 1614816]
-- [net] sched: cls_flower: allocate mask dynamically in fl_change() (Ivan Vecera) [1666481]
-- [net] sched: cls_flower: Remove old entries from rhashtable (Ivan Vecera) [1666481]
-- [net] sched: cls_flower: Reject duplicated rules also under skip_sw (Ivan Vecera) [1666481]
-- [net] cls_flower: fix use after free in flower S/W path (Ivan Vecera) [1666481]
-- [net] cls_flower: Fix comparing of old filter mask with new filter (Ivan Vecera) [1666481]
-- [net] cls_flower: Fix missing free of rhashtable (Ivan Vecera) [1666481]
-- [net] net_sched: switch to rcu_work (Ivan Vecera) [1666481]
-- [net] cls_flower: Support multiple masks per priority (Ivan Vecera) [1666481]
-- [kernel] rcu, workqueue: Implement rcu_work (Ivan Vecera) [1666481]
-- [net] cls_bpf: don't decrement net's refcount when offload fails (Ivan Vecera) [1666481]
-- [net] cls_bpf: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1666481]
-- [net] bpf, cls: consolidate prog deletion path (Ivan Vecera) [1666481]
-
-* Fri Feb 08 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1001.el7]
-- [drm] drm/nouveau/kms/nv50-: also flush fb writes when rewinding push buffer (Ben Skeggs) [1669098]
-- [netdrv] net: ena: allow the driver to work with small number of msix vectors (John Linville) [1645282]
-- [netdrv] net/ena: switch to pci_alloc_irq_vectors (John Linville) [1645282]
-- [infiniband] RDMA/mthca: Clear QP objects during their allocation (Honggang Li) [1669490]
-- [nvme] nvme-rdma: fix possible double free of controller async event buffer (David Milburn) [1659532]
-- [nvme] nvme-rdma: fix possible free of a non-allocated async event buffer (David Milburn) [1659532]
-- [nvme] nvme-rdma: stop admin queue before freeing it (David Milburn) [1659532]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1641108]
-- [scsi] hpsa: switch to generic DMA API (Joseph Szczypek) [1641108]
-- [scsi] hpsa: treewide: treewide: kzalloc() -> kcalloc() (Joseph Szczypek) [1641108]
-- [scsi] hpsa: treewide: kmalloc() -> kmalloc_array() (Joseph Szczypek) [1641108]
-- [gpu] qxl: Make sure qxl_cursor memory is pinned (Gerd Hoffmann) [1600344]
-- [gpu] qxl: Remove unused qxl_bo_pin arguments (Gerd Hoffmann) [1600344]
-- [gpu] qxl: No need for NULL check before calling qxl_bo_unref() (Gerd Hoffmann) [1600344]
-- [scsi] mpt3sas: remove support for Andromeda (Tomas Henzl) [1667370]
-- [scsi] mpt3sas: mark Aero controllers as tech preview (Tomas Henzl) [1660791]
-- [scsi] megaraid_sas: mark Aero controllers as tech preview (Tomas Henzl) [1660289]
-- [scsi] megaraid: fix out-of-bound array accesses (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: driver version update (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: Use 63-bit DMA addressing (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: add retry logic in megasas_readl (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: changes to function prototypes (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: Introduce new Aero adapter type (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: Fix Ventura series based checks (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: NULL check before some freeing functions is not needed (Tomas Henzl) [1660289]
-- [scsi] mpt3sas: mpt3sas_scsih: Mark expected switch fall-through (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: fix memory ordering on 64bit writes (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: Update driver version to 27.101.00.00 (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: Replace readl with ioc->base_readl (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: Add separate function for aero doorbell reads (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: Introduce flag for aero based controllers (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: fix spelling mistake "manufaucturing" -> "manufacturing" (Tomas Henzl) [1660791]
-- [scsi] be2iscsi: fix spelling mistake "Retreiving" -> "Retrieving" (Maurizio Lombardi) [1642657]
-- [scsi] be2iscsi: remove unused variable dmsg (Maurizio Lombardi) [1642657]
-- [scsi] be2iscsi: Update copyright (Maurizio Lombardi) [1642657]
-- [scsi] be2iscsi: Include null char in SET_HOST_DATA (Maurizio Lombardi) [1642657]
-- [scsi] be2iscsi: Use kasprintf (Maurizio Lombardi) [1642657]
-- [s390] setup: set control program code via diag 318 (Thomas Huth) [1642855]
-- [uapi] rdma: uapi: Add missing header files to Kbuild file (Kamal Heib) [1669949]
-
-* Thu Feb 07 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1000.el7]
-- [infiniband] iw_cxgb4: Check for send WR also while posting write with completion WR (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/iw_cxgb4: Fix the unchecked ep dereference (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: Remove a set-but-not-used variable (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: only reconnect with MPAv1 if the peer aborts (Arjun Vynipadath) [1642419]
-- [infiniband] hw/cxgb4/qp.c: Use dma_zalloc_coherent (Arjun Vynipadath) [1642419]
-- [infiniband] cxgb4: use __vlan_hwaccel helpers (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: Use proper enumerated type in c4iw_bar2_addrs (Arjun Vynipadath) [1642419]
-- [infiniband] pci: Remove pci_unmap_addr() wrappers for DMA API (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: remove redundant null pointer check before kfree_skb (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: only allow 1 flush on user qps (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: pass window scale in flowc work request (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: Support FW write completion WR (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: RDMA write with immediate support (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: fix some info leaks (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: Simplify a structure initialization (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: Fix SRQ endianness annotations (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: Restore the dropped uninitialized_var (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: remove duplicate memcpy() in c4iw_create_listen() (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: add INFINIBAND_ADDR_TRANS dependency (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: provide detailed driver-specific MR information (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: provide detailed driver-specific CQ information (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: provide detailed provider-specific CM_ID information (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: remove wr_id attributes (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: fix uninitialized variable warnings (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: dump detailed driver-specific QP information (Arjun Vynipadath) [1597594 1642419]
-- [netdrv] cxgb4/cxgb4vf: Link management changes (Arjun Vynipadath) [1642434 1642412]
-- [netdrv] cxgb4/l2t: Use struct_size() in kvzalloc() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix various indentation issues (Arjun Vynipadath) [1642412]
-- [netdrv] chelsio: Add a missing check on cudg_get_buffer (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove DEFINE_SIMPLE_DEBUGFS_FILE() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: number of VFs supported is not always 16 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove set but not used variables 'multitrc, speed' (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: use new fw interface to get the VIN and smt index (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/cxgb4vf: Fix mac_hlist initialization and free (Arjun Vynipadath) [1642434 1642412]
-- [netdrv] cxgb4: free mac_hlist properly (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Remove SGE_HOST_PAGE_SIZE dependency on page size (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix thermal zone build error (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4vf: fix memleak in mac_hlist initialization (Arjun Vynipadath) [1642434]
-- [netdrv] cxgb4vf: free mac_hlist properly (Arjun Vynipadath) [1642434]
-- [netdrv] cxgb4: Add new T6 PCI device ids 0x608a (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix the error path of cxgb4_uld_register() (Arjun Vynipadath) [1642412]
-- [netdrv] crypto: chelsio - Update ntx queue received from cxgb4 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix thermal configuration dependencies (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add thermal zone support (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: use FW_PORT_ACTION_L1_CFG32 for 32 bit capability (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove the unneeded locks (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Use proper enum in IEEE_FAUX_SYNC (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Use proper enum in cxgb4_dcb_handle_fw_update (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove duplicated include from cxgb4_main.c (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: update supported DCB version (Arjun Vynipadath) [1668570 1642412]
-- [netdrv] cxgb4: add per rx-queue counter for packet errors (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Fix endianness issue in t4_fwcache() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix abort_req_rss6 struct (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove redundant assignment to vlan_cmd.dropnovlan_fm (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: impose mandatory VLAN usage when non-zero TAG ID (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect hardware queue descriptors (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: when max_tx_rate is 0 disable tx rate limiting (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add new T5 PCI device ids 0x50af and 0x50b0 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove set but not used variable 'spd' (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: add support to display DCB info (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/t4_hw: mark expected switch fall-throughs (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/l2t: Mark expected switch fall-through (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: mk_act_open_req() buggers ->{local, peer}_ip on big-endian hosts (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix endian to test F_FW_PORT_CMD_DCBXDIS32 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: print ULD queue information managed by LLD (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: move Tx/Rx free pages collection to common code (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect number of free PSTRUCT page pointers (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: display number of rx and tx pages free (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect ASIC LA dumps from ULP TX (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: expose stats fetched from firmware via debugfs (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove stats fetched from firmware (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: specify IQTYPE in fw_iq_cmd (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Fix the condition to check if the card is T5 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add support to read actual provisioned resources (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add new T5 PCI device id 0x50ae (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add flag tc_flower_initialized (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: convert flower table to use rhashtable (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: when disabling dcb set txq dcb priority to 0 (Arjun Vynipadath) [1668570 1642412]
-- [netdrv] chelsio: Use zeroing memory allocator instead of allocator/memset (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Report PCIe link properties with pcie_print_link_status() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: clean up init_one (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add new T6 device ids (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect SGE PF/VF queue map (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: update LE-TCAM collection for T6 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: add tc flower match support for tunnel VNI (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect hardware dump in second kernel (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add new T5 device id (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: add new T5 device id's (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4vf: display pause settings (Arjun Vynipadath) [1642434]
-- [netdrv] cxgb4: LLD driver changes to support TLS (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Inline TLS FW Interface (Arjun Vynipadath) [1642412]
-- [netdrv] libcxgb: replace vmalloc and memset with vzalloc (Arjun Vynipadath) [1642412]
-- [netdrv] libcxgb, cxgb4: use __skb_put_zero to simplfy code (Arjun Vynipadath) [1642412]
-- [netdrv] libcxgb: make skb_put & friends return void pointers (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: kmalloc() -> kmalloc_array() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: kzalloc() -> kcalloc() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: kzalloc_node() -> kcalloc_node() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/cxgb4vf: Use octal not symbolic permissions (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: use tc_cls_can_offload_and_chain0() (Arjun Vynipadath) [1642412]
-- [netdrv] locking/atomics: coccinelle/cxgb4: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE() (Arjun Vynipadath) [1642412]
-- [netdrv] convert clip_entry.refcnt from atomic_t to refcount_t (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4vf: make a couple of functions static (Arjun Vynipadath) [1642434]
-- [netdrv] cxgb4: Update comment for min_mtu (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/cxgb4vf: use net core MTU range checking in more drivers (Arjun Vynipadath) [1642434 1642412]
-
-* Mon Feb 04 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-999.el7]
-- [fs] xfs: fix error handling in xfs_bmap_extents_to_btree (Bill O'Donnell) [1602037] {CVE-2018-13095}
-- [fs] xfs: fix a null pointer dereference in xfs_bmap_extents_to_btree (Bill O'Donnell) [1602037] {CVE-2018-13095}
-- [fs] xfs: set format back to extents if xfs_bmap_extents_to_btree (Bill O'Donnell) [1602037] {CVE-2018-13095}
-- [fs] Enable CONFIG_PROC_VMCORE_DEVICE_DUMP by default (Kairui Song) [1642463]
-- [fs] vmcore: move get_vmcore_size out of __init (Kairui Song) [1642463]
-- [fs] vmcore: append device dumps to vmcore as elf notes (Kairui Song) [1642463]
-- [fs] vmcore: add API to collect hardware dump in second kernel (Kairui Song) [1642463]
-- [fs] cifs: connect to servername instead of IP for IPC$ share (Leif Sahlberg) [1647844]
-- [fs] autofs: improve ioctl sbi checks (Ian Kent) [1657103]
-- [fs] revert "[fs] nfs: Don't write back further requests if there is a pending write error" (Benjamin Coddington) [1656674]
-- [documentation] proc.txt: Add 2 missing fields for /proc/<pid>/status (Joel Savitz) [1607437]
-- [fs] sunrpc: Prevent duplicate XID allocation (Kamal Heib) [1662113]
-- [fs] lockd: Show pid of lockd for remote locks (Benjamin Coddington) [1644574]
-- [fs] xfs: don't call xfs_da_shrink_inode with NULL bp (Bill O'Donnell) [1601938] {CVE-2018-13094}
-- [fs] xfs: validate cached inodes are free when allocated (Bill O'Donnell) [1601780] {CVE-2018-13093}
-- [fs] nfs: Fix dentry revalidation on NFSv4 lookup ("J. Bruce Fields") [1648482]
-- [fs] rbd: avoid corruption on partially completed bios (Ilya Dryomov) [1613493]
-- [fs] NFSv4.0 fix client reference leak in callback (Steve Dickson) [1593255]
-
-* Sat Feb 02 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-998.el7]
-- [net] ipv6: suppress sparse warnings in IP6_ECN_set_ce() (Davide Caratti) [1657877]
-- [net] ipv6: update skb->csum when CE mark is propagated (Davide Caratti) [1657877]
-- [net] xfrm6: Fix IPv6 ECN decapsulation (Davide Caratti) [1657877]
-- [net] tcp: make new names of tcp isn generation functions available to drivers (Florian Westphal) [1658272]
-- [net] core: add __netdev_sent_queue as variant of __netdev_tx_sent_queue (Ivan Vecera) [1660907]
-- [net] netfilter: xt_socket: check sk before checking for netns. (Flavio Leitner) [1554261]
-- [net] skbuff: preserve sock reference when scrubbing the skb. (Flavio Leitner) [1554261]
-- [net] netfilter: check if the socket netns is correct. (Flavio Leitner) [1554261]
-- [net] netfilter: nf_tables: use hook state from xt_action_param structure (Flavio Leitner) [1554261]
-- [net] netfilter: Pass net into nf_xfrm_me_harder (Flavio Leitner) [1554261]
-- [net] netfilter: nf_conntrack: Add a struct net parameter to l4_pkt_to_tuple (Flavio Leitner) [1554261]
-- [net] netfilter: x_tables: move hook state into xt_action_param structure (Flavio Leitner) [1554261]
-- [net] netfilter: x_tables: fix cgroup matching on non-full sks (Flavio Leitner) [1554261]
-- [net] netfilter: Pass net to nf_dup_ipv4 and nf_dup_ipv6 (Flavio Leitner) [1554261]
-- [net] netfilter: nf_tables: Use pkt->net instead of computing net from the passed net_devices (Flavio Leitner) [1554261]
-- [net] netfilter: nf_tables: Pass struct net in nft_pktinfo (Flavio Leitner) [1554261]
-- [net] net_sched: em_meta: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] ipvs: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] netfilter: use skb_to_full_sk in ip_route_me_harder (Flavio Leitner) [1554261]
-- [net] use skb_to_full_sk() in skb_update_prio() (Flavio Leitner) [1554261]
-- [net] sched: cls_flow: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] netfilter: xt_owner: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] netfilter: nft_meta: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] xfrm: take care of request sockets (Flavio Leitner) [1554261]
-- [net] inet: constify ip_route_output_flow() socket argument (Flavio Leitner) [1554261]
-- [net] add skb_to_full_sk() helper and use it in selinux_netlbl_skbuff_setsid() (Flavio Leitner) [1554261]
-- [net] netfilter: x_tables: Use par->net instead of computing from the passed net devices (Flavio Leitner) [1554261]
-- [net] netfilter: x_tables: Pass struct net in xt_action_param (Flavio Leitner) [1554261]
-- [net] netfilter: ebtables: Simplify the arguments to ebt_do_table (Flavio Leitner) [1554261]
-- [net] netfilter: Store net in nf_hook_state (Flavio Leitner) [1554261]
-- [net] netfilter: Per network namespace netfilter hooks. (Flavio Leitner) [1554261]
-- [net] netfilter: don't pull include/linux/netfilter.h from netns headers (Flavio Leitner) [1554261]
-- [net] include missing headers in net/net_namespace.h (Flavio Leitner) [1554261]
-- [net] netfilter: nat: limit port clash resolution attempts (Florian Westphal) [1654777]
-- [net] netfilter: nat: remove l4 protocol port rovers (Florian Westphal) [1654777]
-- [net] netfilter: nat: cope with negative port range (Florian Westphal) [1654777]
-- [net] gro_cell: add napi_disable in gro_cells_destroy (Lorenzo Bianconi) [1656047]
-- [net] add napi_if_scheduled_mark_missed (Petr Oros) [1647135]
-- [net] ethtool: don't allow disabling queues with umem installed (Petr Oros) [1647135]
-- [net] xsk: add a simple buffer reuse queue (Petr Oros) [1647135]
-- [net] xsk: i40e: get rid of useless struct xdp_umem_props (Petr Oros) [1647135]
-- [net] xsk: expose xdp_umem_get_{data, dma} to drivers (Petr Oros) [1647135]
-- [net] xsk: fix potential race in SKB TX completion code (Petr Oros) [1647135]
-- [net] xsk: Fix umem fill/completion queue mmap on 32-bit (Petr Oros) [1647135]
-- [net] xsk: wire upp Tx zero-copy functions (Petr Oros) [1647135]
-- [net] xsk: add zero-copy support for Rx (Petr Oros) [1647135]
-- [net] xsk: introduce xdp_umem_page (Petr Oros) [1647135]
-- [net] xsk: moved struct xdp_umem definition (Petr Oros) [1647135]
-- [net] xsk: new descriptor addressing scheme (Petr Oros) [1647135]
-- [net] xsk: remove explicit ring structure from uapi (Petr Oros) [1647135]
-- [net] xsk: fill hole in struct sockaddr_xdp (Petr Oros) [1647135]
-- [net] xsk: clean up SPDX headers (Petr Oros) [1647135]
-- [net] xsk: statistics support (Petr Oros) [1647135]
-- [net] xsk: add Tx queue setup and mmap support (Petr Oros) [1647135]
-- [net] xsk: add umem completion queue support and mmap (Petr Oros) [1647135]
-- [net] bpf: introduce new bpf AF_XDP map type BPF_MAP_TYPE_XSKMAP (Petr Oros) [1647135]
-- [net] xsk: add Rx receive functions and poll support (Petr Oros) [1647135]
-- [net] xsk: add support for bind for Rx (Petr Oros) [1647135]
-- [net] xsk: add Rx queue setup and mmap support (Petr Oros) [1647135]
-- [net] xsk: add umem fill queue support and mmap (Petr Oros) [1647135]
-- [net] xsk: add user memory registration support sockopt (Petr Oros) [1647135]
-- [net] added netdevice operation for Tx (Petr Oros) [1647135]
-- [net] xdp: export xdp_rxq_info_unreg_mem_model (Petr Oros) [1647135]
-- [net] xdp: added bpf_netdev_command XDP_{QUERY, SETUP}_XSK_UMEM (Petr Oros) [1647135]
-- [net] xdp: add MEM_TYPE_ZERO_COPY (Petr Oros) [1647135]
-- [net] xdp: don't make drivers report attachment mode (Petr Oros) [1647135]
-- [net] xdp: add flags argument to ndo_xdp_xmit API (Petr Oros) [1647135]
-- [net] xdp: change ndo_xdp_xmit API to support bulking (Petr Oros) [1647135]
-- [net] xdp: transition into using xdp_frame for ndo_xdp_xmit (Petr Oros) [1647135]
-- [net] xdp: generic XDP handling of xdp_rxq_info (Petr Oros) [1647135]
-- [net] xdp: introduce xdp_return_frame_rx_napi (Petr Oros) [1647135]
-- [net] bpf: add meta pointer for direct access (Petr Oros) [1647135]
-- [net] sched: cls_flower: Support matching on ip tos and ttl for tunnels (Ivan Vecera) [1653404]
-- flow_dissector: Dissect tos and ttl from the tunnel info (Ivan Vecera) [1653404]
-- [net] sched: tunnel_key: Allow to set tos and ttl for tc based ip tunnels (Ivan Vecera) [1653404]
-- [net] flow_dissector: dissect tunnel info outside __skb_flow_dissect() (Ivan Vecera) [1653404]
-- [net] flow_dissector: dissect tunnel info (Ivan Vecera) [1653404]
-- [net] dst: Make skb parameter of skb{metadata_dst, tunnel_info}() const (Ivan Vecera) [1653404]
-- [net] sched: act_tunnel_key: fix memory leak in case of action replace (Ivan Vecera) [1656312]
-- [net] sched: fix NULL dereference in the error path of tunnel_key_init() (Ivan Vecera) [1656312]
-- [net] sched: properly cancel netlink dump on failure (Ivan Vecera) [1656312]
-- [net] sched: fix memory leak in act_tunnel_key_init() (Ivan Vecera) [1656312]
-- [net] sched: add tunnel option support to act_tunnel_key (Ivan Vecera) [1656312]
-- [net] check tunnel option type in tunnel flags (Ivan Vecera) [1656312]
-- [net] ip_tunnel, bpf: ip_tunnel_info_opts_{get, set} depends on CONFIG_INET (Ivan Vecera) [1656312]
-- [net] sched: act_tunnel_key: add extended ack support (Ivan Vecera) [1656312]
-- [net] netlink: implement RHEL specific implementation of NL_SET_ERR_MSG* (Ivan Vecera) [1656312]
-- [net] sched: act_tunnel_key: disambiguate metadata dst error cases (Ivan Vecera) [1656312]
-
-* Sat Feb 02 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-997.el7]
-- [netdrv] fm10k: bump driver version to match out-of-tree release (Neil Horman) [1637728]
-- [netdrv] fm10k: add missing device IDs to the upstream driver (Neil Horman) [1637728]
-- [netdrv] fm10k: ensure completer aborts are marked as non-fatal after a resume (Neil Horman) [1637728]
-- [netdrv] fm10k: fix SM mailbox full condition (Neil Horman) [1637728]
-- [netdrv] pci/aer: Remove pci_cleanup_aer_uncorrect_error_status() calls (Neil Horman) [1637728]
-- [netdrv] fm10k: remove ndo_poll_controller (Neil Horman) [1637728]
-- [netdrv] intel-ethernet: use correct module license (Neil Horman) [1637728]
-- [netdrv] fm10k: don't protect fm10k_queue_mac_request by fm10k_host_mbx_ready (Neil Horman) [1637728]
-- [netdrv] fm10k: warn if the stat size is unknown (Neil Horman) [1637728]
-- [netdrv] fm10k: use macro to avoid passing the array and size separately (Neil Horman) [1637728]
-- [netdrv] fm10k: use variadic arguments to fm10k_add_stat_strings (Neil Horman) [1637728]
-- [netdrv] fm10k: reduce duplicate fm10k_stat macro code (Neil Horman) [1637728]
-- [netdrv] fm10k: setup VLANs for l2 accelerated macvlan interfaces (Neil Horman) [1637728]
-- [netdrv] intel: Cleanup the copyright/license headers (Neil Horman) [1637728]
-- [netdrv] ixgbe/fm10k: Only support macvlan offload for types that support destination filtering (Neil Horman) [1637728]
-- [netdrv] ixgbe/fm10k: Drop tracking stats for macvlan broadcast/multicast (Neil Horman) [1637728]
-- [netdrv] macvlan: Use software path for offloaded local, broadcast, and multicast traffic (Neil Horman) [1637728]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Neil Horman) [1637728]
-- [netdrv] fm10k: bump version number (Neil Horman) [1637728]
-- [netdrv] fm10k: fix incorrect warning for function prototype (Neil Horman) [1637728]
-- [netdrv] fm10k: fix function doxygen comments (Neil Horman) [1637728]
-- [netdrv] fm10k: clarify action when updating the VLAN table (Neil Horman) [1637728]
-- [netdrv] fm10k: correct typo in fm10k_pf.c (Neil Horman) [1637728]
-- [netdrv] fm10k: don't assume VLAN 1 is enabled (Neil Horman) [1637728]
-- [netdrv] fm10k: stop adding VLAN 0 to the VLAN table (Neil Horman) [1637728]
-- [netdrv] fm10k: fix "failed to kill vid" message for VF (Neil Horman) [1637728]
-- [netdrv] fm10k: cleanup unnecessary parenthesis in fm10k_iov.c (Neil Horman) [1637728]
-- [netdrv] fm10k: Fix configuration for macvlan offload (Neil Horman) [1637728]
-- [netdrv] fm10k: mark PM functions as __maybe_unused (Neil Horman) [1637728]
-- [netdrv] ixgbe/fm10k: Record macvlan stats instead of Rx queue for macvlan offloaded rings (Neil Horman) [1637728]
-- [netdrv] bonding: count master 3ad stats separately (Jarod Wilson) [1657393]
-- [netdrv] bonding: add support for xstats and export 3ad stats (Jarod Wilson) [1657393]
-- [netdrv] bonding: add 3ad stats (Jarod Wilson) [1657393]
-- [netdrv] bonding: 3ad: remove bond_3ad_rx_indication's length argument (Jarod Wilson) [1657393]
-- [netdrv] bonding: adjust style of bond_3ad_rx_indication (Jarod Wilson) [1657393]
-- [netdrv] bonding: fix indentation issues, remove extra spaces (Jarod Wilson) [1657393]
-- [netdrv] bonding: Give bond_set_dev_addr() a return value (Jarod Wilson) [1657393]
-- [netdrv] bonding: convert to DEFINE_SHOW_ATTRIBUTE (Jarod Wilson) [1657393]
-- [netdrv] bonding: fix 802.3ad state sent to partner when unbinding slave (Jarod Wilson) [1657393]
-- [netdrv] bonding: fix length of actor system (Jarod Wilson) [1657393]
-- [netdrv] bonding: fix warning message (Jarod Wilson) [1657393]
-- [netdrv] bonding: avoid possible dead-lock (Jarod Wilson) [1657393]
-- [netdrv] bonding: pass link-local packets to bonding master also (Jarod Wilson) [1657393]
-- [netdrv] bonding: don't cast const buf in sysfs store (Jarod Wilson) [1657393]
-- [netdrv] sfc: suppress duplicate nvmem partition types in efx_ef10_mtd_probe (Jarod Wilson) [1658087]
-- [netdrv] sfc: extend MTD support for newer hardware (Jarod Wilson) [1671494 1658087]
-- [netdrv] sfc: phase out dma_zalloc_coherent() (Jarod Wilson) [1658087]
-- [netdrv] sfc: Replace spin_is_locked() with lockdep (Jarod Wilson) [1658087]
-- [netdrv] sfc: use the new __netdev_tx_sent_queue BQL optimisation (Jarod Wilson) [1658087]
-- [netdrv] sfc: add missing NVRAM partition types for EF10 (Jarod Wilson) [1658087]
-- [netdrv] sfc-falcon: remove ndo_poll_controller (Jarod Wilson) [1658087]
-- [netdrv] sfc: remove ndo_poll_controller (Jarod Wilson) [1658087]
-- [netdrv] sfc: falcon: mark expected switch fall-through (Jarod Wilson) [1658087]
-- [infiniband] rdma/bnxt_re: Avoid accessing the device structure after it is freed (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix system hang when registration with L2 driver fails (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Avoid resource leak in case the NQ registration fails (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Wait for delayed work to finish before device removal (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Limit max_pkey to 16 bit value (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix qp async event reporting (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Report out of sequence hw counters (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Expose rx discards and drop counters (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Prevent driver crash due to NULL pointer in error message print (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Drop L2 async events silently (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Avoid NULL check after accessing the pointer (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Remove the unnecessary version macro definition (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix recursive lock warning in debug kernel (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Add missing spin lock initialization (Selvin Xavier) [1637067]
-- [infiniband] bnxt_re: Fix couple of memory leaks that could lead to IOMMU call traces (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: qplib: add and use #define dev_fmt(fmt) "qplib: " fmt (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Modify a fall-through annotation (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix a bunch of off by one bugs in qplib_fp.c (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix a couple off by one bugs (Selvin Xavier) [1637067]
-- [scsi] csiostor: fix NULL pointer dereference in csio_vport_set_state() (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: fix incorrect dma device in case of vport (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: switch to generic DMA API (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: use pci_zalloc_consistent (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: fix incorrect port capabilities (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: add a check for NULL pointer after kmalloc() (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: update ingress pack and pad boundary value (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: kzalloc() -> kcalloc() (Arjun Vynipadath) [1642433]
-- [scsi] smartpqi: correct nr_hw_queues (Don Brace) [1641112]
-- [scsi] smartpqi: call pqi_free_interrupts() in pqi_shutdown() (Don Brace) [1641112]
-- [scsi] smartpqi: fix build warnings (Don Brace) [1641112]
-- [scsi] smartpqi: update driver version (Don Brace) [1641112]
-- [scsi] smartpqi: add ofa support (Don Brace) [1641112]
-- [scsi] smartpqi: increase fw status register read timeout (Don Brace) [1641112]
-- [scsi] smartpqi: bump driver version (Don Brace) [1641112]
-- [scsi] smartpqi: add smp_utils support (Don Brace) [1641112]
-- [scsi] smartpqi: correct lun reset issues (Don Brace) [1641112]
-- [scsi] smartpqi: correct volume status (Don Brace) [1641112]
-- [scsi] smartpqi: do not offline disks for transient did no connect conditions (Don Brace) [1641112]
-- [scsi] smartpqi: allow for larger raid maps (Don Brace) [1641112]
-- [scsi] smartpqi: check for null device pointers (Don Brace) [1641112]
-- [scsi] smartpqi: add support for huawei controllers (Don Brace) [1641112]
-- [scsi] smartpqi: enhance numa node detection (Don Brace) [1641112]
-- [scsi] smartpqi: wake up drives after os resumes from suspend (Don Brace) [1641112]
-- [scsi] smartpqi: fix disk name mount point (Don Brace) [1641112]
-- [scsi] smartpqi: add h3c ssid (Don Brace) [1641112]
-- [scsi] smartpqi: add sysfs attributes (Don Brace) [1641112]
-- [scsi] smartpqi: refactor sending controller raid requests (Don Brace) [1641112]
-- [scsi] smartpqi: turn off lun data caching for ptraid (Don Brace) [1641112]
-- [scsi] smartpqi: correct host serial num for ssa (Don Brace) [1641112]
-- [scsi] smartpqi: add no_write_same for logical volumes (Don Brace) [1641112]
-- [scsi] smartpqi: Add retries for device reset (Don Brace) [1641112]
-- [scsi] smartpqi: add support for PQI Config Table handshake (Don Brace) [1641112]
-- [scsi] smartpqi: fully convert to the generic DMA API (Don Brace) [1641112]
-- [scsi] smartpqi: bump driver version to 1.1.4-130 (Don Brace) [1641112]
-- [scsi] smartpqi: add inspur advantech ids (Don Brace) [1641112]
-- [scsi] smartpqi: improve error checking for sync requests (Don Brace) [1641112]
-- [scsi] smartpqi: improve handling for sync requests (Don Brace) [1641112]
-- [scsi] smartpqi: cleanup interrupt management (Don Brace) [1641112]
-- [scsi] smartpqi: switch to pci_alloc_irq_vectors (Don Brace) [1641112]
-- [block] blk-mq: align set->cmd_size to cache line size (Ming Lei) [1655199]
-- [scsi] isci: initialize shost fully before calling scsi_add_host() (Ming Lei) [1655199]
-
-* Thu Jan 31 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-996.el7]
-- [kernel] tick/nohz: Prevent bogus softirq pending warning (Phil Auld) [1664535]
-- [acpi] nfit: Fix command-supported detection (Charles Rose) [1665811]
-- [acpi] nfit: Block function zero DSMs (Charles Rose) [1665811]
-- [powerpc] bpf, ppc64, jit: fix overlooked trace variants (Yauheni Kaliuta) [1655371]
-- [edac] Drop per-memory controller buses (Aristeu Rozanski) [1630288 1641038]
-- [edac] Dont add devices under /sys/bus/edac (Aristeu Rozanski) [1630288 1641038]
-- [edac] Expose per-DIMM error counts in sysfs (Aristeu Rozanski) [1614516]
-- [edac] Increment correct counter in edac_inc_ue_error() (Aristeu Rozanski) [1614516]
-- [kernel] locking/rwsem: Fix (possible) missed wakeup (Waiman Long) [1547078]
-- [kernel] futex: Fix (possible) missed wakeup (Waiman Long) [1547078]
-- [kernel] futex: Use smp_store_release() in mark_wake_futex() (Waiman Long) [1547078]
-- [kernel] sched/wake_q: Fix wakeup ordering for wake_q (Waiman Long) [1547078]
-- [kernel] sched/wake_q: Document wake_q_add() (Waiman Long) [1547078]
-- [linux] ptr_ring: wrap back ->producer in __ptr_ring_swap_queue() (Ivan Vecera) [1668470]
-- [linux] ptr_ring: prevent integer overflow when calculating size (Ivan Vecera) [1668470]
-- [linux] ptr_ring: try vmalloc() when kmalloc() fails (Ivan Vecera) [1668470]
-- [linux] ptr_ring: fail early if queue occupies more than KMALLOC_MAX_SIZE (Ivan Vecera) [1668470]
-- [linux] ptr_ring: prevent queue load/store tearing (Ivan Vecera) [1668470]
-- [linux] ptr_ring: disallow lockless __ptr_ring_full (Ivan Vecera) [1668470]
-- [linux] ptr_ring: READ/WRITE_ONCE for __ptr_ring_empty (Ivan Vecera) [1668470]
-- [linux] ptr_ring: clean up documentation (Ivan Vecera) [1668470]
-- [linux] ptr_ring: keep consumer_head valid at all times (Ivan Vecera) [1668470]
-- [linux] ptr_ring: document usage around __ptr_ring_peek (Ivan Vecera) [1668470]
-- [linux] ptr_ring: add barriers (Ivan Vecera) [1668470]
-- [linux] ptr_ring: use kmalloc_array() (Ivan Vecera) [1668470]
-- [iommu] amd: Unmap all mapped pages in error path of map_sg (Jerry Snitselaar) [1666488]
-- [iommu] amd: Call free_iova_fast with pfn in map_sg (Jerry Snitselaar) [1666488]
-- [x86] efi-bgrt: Replace early_memremap() with memremap() (Lenny Szubowicz) [1481667]
-- [x86] efi-bgrt: Replace ioremap() with early_memremap() (Lenny Szubowicz) [1481667]
-- [powerpc] topology: Get topology for shared processors at boot (Diego Domingos) [1665071]
-- [powerpc] tm: Unset MSR[TS] if not recheckpointing (Gustavo Duarte) [1664837]
-- [s390] sclp: Allow to request adapter reset (Hendrik Brueckner) [1640682]
-- [s390] pci: add report_error attribute (Hendrik Brueckner) [1640682]
-- [s390] sclp: add error notification command (Hendrik Brueckner) [1640682]
-- [s390] sclp: move pci related commands to separate file (Hendrik Brueckner) [1640682]
-- [s390] fs: sysfs: don't pass count == 0 to bin file readers (Hendrik Brueckner) [1641030]
-- [s390] crypto: Enhance paes cipher to accept variable length key material (Hendrik Brueckner) [1641030]
-- [s390] pkey: Introduce new API for transforming key blobs (Hendrik Brueckner) [1641030]
-- [s390] pkey: Introduce new API for random protected key verification (Hendrik Brueckner) [1641030]
-- [s390] pkey: Add sysfs attributes to emit secure key blobs (Hendrik Brueckner) [1641030]
-- [s390] pkey: Add sysfs attributes to emit protected key blobs (Hendrik Brueckner) [1641030]
-- [s390] pkey: Define protected key blob format (Hendrik Brueckner) [1641030]
-- [s390] pkey: Introduce new API for random protected key generation (Hendrik Brueckner) [1641030]
-- [s390] configs: enable CONFIG_ZCRYPT_MULTIDEVNODES on s390 (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: fix broken zcrypt_send_cprb in-kernel api function (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: multiple zcrypt device nodes support (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: enable AP bus scan without a valid default domain (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: remove VLA usage from the AP bus (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: hex string mask improvements for apmask and aqmask (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: AP bus support for alternate driver(s) (Hendrik Brueckner) [1641030]
-
-* Thu Jan 31 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-995.el7]
-- [infiniband] rdma/uverbs: Get rid of ucontext->tgid (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Avoid synchronize_srcu in the ODP MR destruction path (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Handle a half-complete start/end sequence (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Get rid of per_mm->notifier_count (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Use umem->owning_mm inside ODP (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Move all the ODP related stuff out of ucontext and into per_mm (Kamal Heib) [1655923]
-- [infiniband] ib/core: Fix oops in netdev_next_upper_dev_rcu() (Kamal Heib) [1655923]
-- [infiniband] ib/umem: Set correct address to the invalidation function (Kamal Heib) [1655923]
-- [infiniband] iser: set sector for ambiguous mr status errors (Kamal Heib) [1655923]
-- [infiniband] rdma/rdmavt: Fix rvt_create_ah function signature (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Add GIDs while changing MAC addr only for registered ndev (Kamal Heib) [1655923]
-- [infiniband] rdma/drivers: Use core provided API for registering device attributes (Kamal Heib) [1655923]
-- [infiniband] rdma/bnxt_re: Fix system crash during RDMA resource initialization (Kamal Heib) [1655923]
-- [net] svcrdma: Remove try_module_get from backchannel (Kamal Heib) [1655923]
-- [net] svcrdma: Remove ->release_rqst call in bc reply handler (Kamal Heib) [1655923]
-- [net] svcrdma: Reduce max_send_sges (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Fix comment for hw stats init for port == 0 (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Refactor ib_register_device() function (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Fix unwinding flow in case of error to register device (Kamal Heib) [1655923]
-- [infiniband] ib_srp: Remove WARN_ON in srp_terminate_io() (Kamal Heib) [1655923]
-- [rdma] core: Allow existing drivers to set one sysfs group per device (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: Remove unnecessary enum values (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Increase total number of RDMA ports across all devices (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Rename ports_parent to ports_kobj (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Do not expose unsupported counters (Kamal Heib) [1655923]
-- [infiniband] ib/mlx4: Refer to the device kobject instead of ports_parent (Kamal Heib) [1655923]
-- [infiniband] rdma/nldev: Allow IB device rename through RDMA netlink (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/core: Implement IB device rename function (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/core: Annotate timeout as unsigned long (Kamal Heib) [1655923]
-- [rdma] core: Align multiple functions to kernel coding style (Kamal Heib) [1655923]
-- [infiniband] rdma/cma: Remove unused timeout_ms parameter from cma_resolve_iw_route() (Kamal Heib) [1655923]
-- [infiniband] rdma/cm: Respect returned status of cm_init_av_by_path (Kamal Heib) [1655923]
-- [infiniband] ib/ipoib: Clear IPCB before icmp_send (Kamal Heib) [1655923]
-- [infiniband] rdma/restrack: Protect from reentry to resource return path (Kamal Heib) [1655923]
-- [infiniband] rdma/netdev: Fix netlink support in IPoIB (Kamal Heib) [1659075 1655923]
-- [netdrv] rdma/netdev: Hoist alloc_netdev_mqs out of the driver (Kamal Heib) [1659075 1655923]
-- [infiniband] rdma/restrack: Release task struct which was hold by CM_ID object (Kamal Heib) [1655923]
-- [infiniband] rdma/restrack: Consolidate task name updates in one place (Kamal Heib) [1655923]
-- [rdma] restrack: Un-inline set task implementation (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Check error status of rdma_find_ndev_for_src_ip_rcu (Kamal Heib) [1655923]
-- [rdma] netlink: Simplify netlink listener existence check (Kamal Heib) [1655923]
-- [infiniband] rdma: Remove unused parameter from ib_modify_qp_is_ok() (Kamal Heib) [1655923]
-- [infiniband] rdma/rxe: Remove unused addr_same() (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: avoid srq memory leak (Kamal Heib) [1655923]
-- [infiniband] ib/mthca: Fix error return code in __mthca_init_one() (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Fix RCU annotation for radix slot deference (Kamal Heib) [1655923]
-- [infiniband] rdma: Fix building with CONFIG_MMU=n (Kamal Heib) [1655923]
-- [net] xprtrdma: Clean up xprt_rdma_disconnect_inject (Kamal Heib) [1655923]
-- [net] xprtrdma: Add documenting comments (Kamal Heib) [1655923]
-- [net] xprtrdma: Report when there were zero posted Receives (Kamal Heib) [1655923]
-- [net] xprtrdma: Move rb_flags initialization (Kamal Heib) [1655923]
-- [net] xprtrdma: Don't disable BH's in backchannel server (Kamal Heib) [1655923]
-- [net] xprtrdma: Remove memory address of "ep" from an error message (Kamal Heib) [1655923]
-- [net] xprtrdma: Rename rpcrdma_qp_async_error_upcall (Kamal Heib) [1655923]
-- [net] xprtrdma: Simplify RPC wake-ups on connect (Kamal Heib) [1655923]
-- [net] xprtrdma: Re-organize the switch() in rpcrdma_conn_upcall (Kamal Heib) [1655923]
-- [net] xprtrdma: Eliminate "connstate" variable from rpcrdma_conn_upcall() (Kamal Heib) [1655923]
-- [net] xprtrdma: Conventional variable names in rpcrdma_conn_upcall (Kamal Heib) [1655923]
-- [net] xprtrdma: Rename rpcrdma_conn_upcall (Kamal Heib) [1655923]
-- [net] sunrpc: Report connect_time in seconds (Kamal Heib) [1655923]
-- [net] sunrpc: Fix connect metrics (Kamal Heib) [1655923]
-- [trace] xprtrdma: Name MR trace events consistently (Kamal Heib) [1655923]
-- [net] xprtrdma: Explicitly resetting MRs is no longer necessary (Kamal Heib) [1655923]
-- [net] xprtrdma: Create more MRs at a time (Kamal Heib) [1655923]
-- [net] xprtrdma: Reset credit grant properly after a disconnect (Kamal Heib) [1655923]
-- [net] xprtrdma: xprt_release_rqst_cong is called outside of transport_lock (Kamal Heib) [1655923]
-- [infiniband] rdma/cma: Introduce and use cma_ib_acquire_dev() (Kamal Heib) [1655923]
-- [infiniband] rdma/cma: Introduce and use cma_acquire_dev_by_src_ip() (Kamal Heib) [1655923]
-- [infiniband] rdma/cma: Allow accepting requests for multi port rdma device (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: replace kvfree with vfree (Kamal Heib) [1655923]
-- [infiniband] ib/iser: Fix possible NULL deref at iser_inv_desc() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Acquire and release mmap_sem on page range (Kamal Heib) [1655923]
-- [infiniband] ib/sa: simplify return code logic for ib_nl_send_msg() (Kamal Heib) [1655923]
-- [infiniband] ib/mthca: remove redundant inner check of mdev->mthca_flags (Kamal Heib) [1655923]
-- [infiniband] ib/mthca: switch to pci_alloc_irq_vectors (Kamal Heib) [1655923]
-- [infiniband] rdma/ulp: Use dev_name instead of ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/drivers: Use dev_name instead of ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/core: Use dev_name instead of ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] networking: make skb_put & friends return void pointers (Kamal Heib) [1655923]
-- [infiniband] rdma/drivers: Use dev_err/dbg/etc instead of pr_* + ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/core: Use dev_err/dbg/etc instead of pr_* + ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma: Fully setup the device name in ib_register_device (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/umem: Fix potential addition overflow (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Minor optimizations (Kamal Heib) [1655923]
-- [infiniband] ib/usnic: fix spelling mistake "unvalid" -> "invalid" (Kamal Heib) [1655923]
-- [infiniband] ib/nes: Remove unnecessary parentheses (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Get rid of struct ib_umem.odp_data (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Make ib_umem_odp into a sub structure of ib_umem (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Use ib_umem_odp in all function signatures connected to ODP (Kamal Heib) [1655923]
-- [infiniband] rdma/usnic: Do not use ucontext->tgid (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Do not use current->tgid to track the mm_struct (Kamal Heib) [1655923]
-- [infiniband] rdma/ucontext: Get rid of the old disassociate flow (Kamal Heib) [1655923]
-- [infiniband] rdma/ucontext: Add a core API for mmaping driver IO memory (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Fix error unwind in ib_uverbs_add_one (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Properly return the error code of rdma_set_src_addr_rcu (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Remove is_closed from ib_uverbs_file (Kamal Heib) [1655923]
-- [rdma] ib/rxe: Revise the ib_wr_opcode enum (Kamal Heib) [1655923]
-- [rdma] Remove duplicated include from ib_addr.h (Kamal Heib) [1655923]
-- [infiniband] ib/ipoib: Log sysfs 'dev_id' accesses from userspace (Kamal Heib) [1655923]
-- [infiniband] ib/ipoib: Use dev_port to expose network interface port numbers (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Consider net ns of gid attribute for RoCE (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Introduce rdma_read_gid_attr_ndev_rcu() to check GID attribute (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Simplify roce_resolve_route_from_path() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Protect against changing dst->dev during destination resolve (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Refer to network type instead of device type (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Use common code flow for IPv4/6 for addr resolve (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Rename rdma_copy_addr to rdma_copy_src_l2_addr (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Introduce and use rdma_set_src_addr() between IPv4 and IPv6 (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Let protocol specific function typecast sockaddr structure (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Avoid unnecessary sa_family overwrite (Kamal Heib) [1655923]
-- [infiniband] RDMA/core Introduce and use rdma_find_ndev_for_src_ip_rcu (Kamal Heib) [1655923]
-- [infiniband] remove redundant condition check before debugfs_remove (Kamal Heib) [1655923]
-- [rdma] uverbs: Move flow resources initialization (Kamal Heib) [1655923]
-- [infiniband] ib/uverbs: Add IDRs array attribute type to ioctl() interface (Kamal Heib) [1655923]
-- [rdma] core: Document QP @event_handler function (Kamal Heib) [1655923]
-- [rdma] core: Document CM @event_handler function (Kamal Heib) [1655923]
-- [infiniband] nes: Use skb_peek_next() and skb_queue_walk() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Assign device ifindex before publishing the device (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Restore lockdep check while downgrading lock (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Define client_data_lock as rwlock instead of spinlock (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Use simpler spin lock irq API from blocking context (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Remove context entries from list while unregistering device (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Use simplified list_for_each (Kamal Heib) [1655923]
-- [infiniband] rdma/core: No need to protect kfree with spin lock and semaphore (Kamal Heib) [1655923]
-- [infiniband] rdma/{cma, core}: Avoid callback on rdma_addr_cancel() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Rate limit MAD error messages (Kamal Heib) [1655923]
-- [infiniband] ib/ipoib: Ensure that MTU isn't less than minimum permitted (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Fail early if unsupported QP is provided (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Use device.groups to initialize device attributes (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Use cdev_device_add() instead of cdev_add() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Depend on device_add() to add device attributes (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Replace open-coded variant of get_device (Kamal Heib) [1655923]
-- [rdma] uverbs: Declare closing variable as boolean (Kamal Heib) [1655923]
-- [infiniband] rdma/nes: Delete impossible debug prints (Kamal Heib) [1655923]
-- [infiniband] ib/srp: Remove unnecessary unlikely() (Kamal Heib) [1655923]
-- [infiniband] ib/core: Add an unbound WQ type to the new CQ API (Kamal Heib) [1655923]
-- [rdma] uverbs: Add generic function to fill in flow action object (Kamal Heib) [1655923]
-- [rdma] uverbs: Add UVERBS_ATTR_CONST_IN to the specs language (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: fixes for rdma read retry (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: avoid back-to-back retries (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: fix for duplicate request processing and ack psns (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Refactor lookup memory function (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Avoid NULL check when search is successful (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Change pool state enums to capital letters (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Replace spinlock with rwlock (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Simplify rxe_find_route() to avoid GID query for netdev (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: remove redudant qpn check (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: vary the source udp port for receive scaling (Kamal Heib) [1655923]
-- [infiniband] Replace usnic_ib_netdev_event_to_string() with netdev_cmd_to_name() (Kamal Heib) [1655923]
-- [kernel] mm: add new mmget() helper (Kamal Heib) [1655923]
-- [kernel] mm: add new mmgrab() helper (Kamal Heib) [1655923]
-
-* Thu Jan 31 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-994.el7]
-- [pci] Extending pci=resource_alignment to specify device/vendor IDs (Masaki Kimura) [1640874]
-- [edac] sb_edac: Fix signedness bugs in *_get_ha() functions (Aristeu Rozanski) [1641576]
-- [edac] sb_edac: Fix reporting for patrol scrubber errors (Aristeu Rozanski) [1641576]
-- [netdrv] bnx2x: Provide VF link status in ndo_get_vf_config (Jonathan Toppins) [1643534]
-- [netdrv] bnx2x: Ignore bandwidth attention in single function mode (Jonathan Toppins) [1643534]
-- [netdrv] bnx2x: Add VF spoof-checking configuration (Jonathan Toppins) [1522586 1643534]
-- [netdrv] bnx2x: Mark expected switch fall-throughs (Jonathan Toppins) [1643534]
-- [netdrv] bnx2x: Assign unique DMAE channel number for FW DMAE transactions (Jonathan Toppins) [1484987 1643534]
-- [watchdog] simplify getting .drvdata (David Arcari) [1666393]
-- [acpi] acpi / watchdog: Prefer iTCO_wdt always when WDAT table uses RTC SRAM (David Arcari) [1666393]
-- [acpi] acpi / watchdog: Prefer iTCO_wdt on Lenovo Z50-70 (David Arcari) [1666393]
-- [acpi] acpi / watchdog: properly initialize resources (David Arcari) [1666393]
-- [acpi] acpi / watchdog: Fix init failure with overlapping register regions (David Arcari) [1666393]
-- [acpi] acpi / watchdog: Print out error number when device creation fails (David Arcari) [1666393]
-
-* Fri Jan 18 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-993.el7]
-- [fs] userfaultfd: clear flag if remap event not enabled (Peter Xu) [1658039]
-- [fs] proc: report no_new_privs state (Joel Savitz) [1665508]
-- [fs] gfs2: take jdata unstuff into account in do_grow (Robert S Peterson) [1660550]
-- [fs] proc: restrict kernel stack dumps to root (Joe Lawrence) [1638194] {CVE-2018-17972}
-- [fs] proc: use "unsigned int" for /proc/*/stack (Joe Lawrence) [1638194] {CVE-2018-17972}
-- [fs] xfs: use sync buffer I/O for sync delwri queue submission (Brian Foster) [1570022]
-- [fs] xfs: refactor buffer submission into a common helper (Brian Foster) [1570022]
-- [vhost] vsock: fix reset orphans race with close timeout (Stefan Hajnoczi) [1660954]
-- [vhost] vsock: fix vhost vsock cid hashing inconsistent (Stefan Hajnoczi) [1623776] {CVE-2018-14625}
-- [vhost] vsock: fix use-after-free in network stack callers (Stefan Hajnoczi) [1623776] {CVE-2018-14625}
-- [vhost] vsock: fix uninitialized vhost_vsock->guest_cid (Stefan Hajnoczi) [1623776] {CVE-2018-14625}
-- [lib] string_helpers.c: fix infinite loop in string_get_size() (Ewan Milne) [1660565]
-- [misc] vmci: Resource wildcard match fixed (Vitaly Kuznetsov) [1557261]
-- [misc] vmci: Doorbell create and destroy fixes (Vitaly Kuznetsov) [1557261]
-- [misc] genwqe: Fix size check (Steve Best) [1658761]
-- [md] dax: fix missing stripe_dax_memcpy_toiovecend typo (Benjamin Coddington) [1635818]
-- [block] blk-mq: fix updating tags depth (Ming Lei) [1610940]
-- [block] really disable runtime-pm for blk-mq (Ming Lei) [1610225]
-- [include] gso: Add UDP GSO facade (Alaa Hleihel) [1653440]
-- [nvme] rdma: fix double freeing of async event data (David Milburn) [1655786]
-- [scsi] storvsc: Fix a race in sub-channel creation that can cause panic (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: set callbacks on open (Mohammed Gamal) [1562041]
-- [hv] vmbus: fix subchannel removal (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: defer opening vmbus until first use (Mohammed Gamal) [1562041]
-- [hv] vmbus: split ring buffer allocation from open (Mohammed Gamal) [1562041]
-- [hv] vmbus: pass channel to hv_process_channel_removal (Mohammed Gamal) [1562041]
-- [hv] vmbus: Reset the channel callback in vmbus_onoffer_rescind() (Mohammed Gamal) [1562041]
-- [uio] hv_uio_generic: map ringbuffer phys addr (Mohammed Gamal) [1562041]
-- [uio] introduce UIO_MEM_IOVA (Mohammed Gamal) [1562041]
-- [hv] vmbus: add driver_override support (Mohammed Gamal) [1562041]
-- [hv] vmbus: keep pointer to ring buffer page (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: drop #ifdef DEBUG (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: increase size of receive and send buffers (Mohammed Gamal) [1562041]
-- [uio] add SPDX license tags (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: fix subchannel ring mmap (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: use correct channel in isr (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: make ring buffer attribute for primary channel (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: set size of ring buffer attribute (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: support sub-channels (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: fix new type mismatch warnings (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: fix type mismatch warnings (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: add rescind support (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: check that host supports monitor page (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: create send and receive buffers (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: use ISR callback method (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: use standard mmap for resources (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: fix configuration comments (Mohammed Gamal) [1562041]
-- [x86] Mark AMD EPYC guests as supported (David Arcari) [1664507]
-- [x86] tsc: Make calibration refinement more robust (David Arcari) [1656745]
-- [s390] qeth: utilize virtual MAC for Layer2 OSD devices (Hendrik Brueckner) [1640649]
-
-* Wed Jan 16 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-992.el7]
-- [lib] scsi: klist: Make it safe to use klists in atomic context (Kamal Heib) [1655920]
-- [infiniband] rdma/ucma: Fix Spectre v1 vulnerability (Kamal Heib) [1655920]
-- [infiniband] ib/ucm: Fix Spectre v1 vulnerability (Kamal Heib) [1655920]
-- [infiniband] Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Set right entry state before releasing reference (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Free uapi on destroy (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Fix validity check for modify QP (Kamal Heib) [1655920]
-- [infiniband] ib/srp: Avoid that sg_reset -d ${srp_device} triggers an infinite loop (Kamal Heib) [1655920]
-- [infiniband] ucma: fix a use-after-free in ucma_resolve_ip() (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Atomically flush and mark closed the comp event queue (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Protect cma dev list with lock (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Fix error cleanup path of ib_uverbs_add_one() (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Avoid a race condition between start_xmit and cm_rep_handler (Kamal Heib) [1655920]
-- [infiniband] ib/core: Release object lock if destroy failed (Kamal Heib) [1655920]
-- [infiniband] rdma/ucma: check fd type in ucma_migrate_id() (Kamal Heib) [1655920]
-- [infiniband] ib/ucm: fix UCM link error (Kamal Heib) [1655920]
-- [infiniband] ib/core: Change filter function return type from int to bool (Kamal Heib) [1655920]
-- [infiniband] ib/core: Update GID entries for netdevice whose mac address changes (Kamal Heib) [1655920]
-- [infiniband] ib/core: Add default GIDs of the bond master netdev (Kamal Heib) [1655920]
-- [infiniband] ib/core: Consider adding default GIDs of bond device (Kamal Heib) [1655920]
-- [infiniband] ib/core: Delete lower netdevice default GID entries in bonding scenario (Kamal Heib) [1655920]
-- [infiniband] ib/core: Avoid confusing del_netdev_default_ips (Kamal Heib) [1655920]
-- [infiniband] ib/core: Add comment for change upper netevent handling (Kamal Heib) [1655920]
-- [infiniband] ib/ucm: Fix compiling ucm.c (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not check for device disassociation during ioctl (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Remove struct uverbs_root_spec and all supporting code (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Use uverbs_api to unmarshal ioctl commands (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Use uverbs_alloc for allocations (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Add a simple allocator to uverbs_attr_bundle (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Remove the ib_uverbs_attr pointer from each attr (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Provide implementation private memory for the uverbs_attr_bundle (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Use uverbs_api to manage the object type inside the uobject (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Build the specs into a radix tree at runtime (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Have the core code create the uverbs_root_spec (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Fix reading of 32 bit flags (Kamal Heib) [1655920]
-- [net] rpc: remove unneeded variable 'ret' in rdma_listen_handler (Kamal Heib) [1655920]
-- [net] svcrdma: Clean up Read chunk path (Kamal Heib) [1655920]
-- [net] svcrdma: Avoid releasing a page in svc_xprt_release() (Kamal Heib) [1655920]
-- [net] sunrpc: remove redundant variables 'checksumlen', 'blocksize' and 'data' (Kamal Heib) [1655920]
-- [net] xprtrdma: Fix disconnect regression (Kamal Heib) [1655920]
-- [infiniband] rdma/rxe: Set wqe->status correctly if an unexpected response is received (Kamal Heib) [1655920]
-- [infiniband] ib/ucm: Initialize sgid request GID attribute pointer (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Consolidate checking of the proposed child interface (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Maintain the child_intfs list from ndo_init/uninit (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Do not remove child devices from within the ndo_uninit (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Get rid of the sysfs_mutex (Kamal Heib) [1655920]
-- [infiniband] rdma/netdev: Use priv_destructor for netdev cleanup (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Move init code to ndo_init (Kamal Heib) [1655920]
-- [infiniband] use core MTU range checking in misc drivers (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Move all uninit code into ndo_uninit (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Use cancel_delayed_work_sync for neigh-clean task (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Get rid of IPOIB_FLAG_GOING_DOWN (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Set ah valid flag in multicast send flow (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Allow all DESTROY commands to succeed after disassociate (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not block disassociate during write() (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not pass struct ib_device to the ioctl methods (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not pass struct ib_device to the write based methods (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Lower the test for ongoing disassociation (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Allow uobject allocation to work concurrently with disassociate (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Allow RDMA_REMOVE_DESTROY to work concurrently with disassociate (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Convert 'bool exclusive' into an enum (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Consolidate uobject destruction (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Make the write path destroy methods use the same flow as ioctl (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Remove rdma_explicit_destroy() from the ioctl methods (Kamal Heib) [1655920]
-- [infiniband] rdma: Fix return code check in rdma_set_cq_moderation (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Prefix _ib to IB/RoCE specific functions (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Simplify gid type check in cma_acquire_dev() (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Avoid holding lock while initializing fields on stack (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Return bool instead of int (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Get rid of 1 bit boolean (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Constify path record, ib_cm_event, listen_id pointers (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Constify dst_addr argument (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Simplify rdma_resolve_addr() error flow (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Initialize resource type in __rdma_create_id() (Kamal Heib) [1655920]
-- [infiniband] rdma/providers: Remove pointless functions (Kamal Heib) [1655920]
-- [infiniband] i40iw: Implement get_vector_affinity API (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Check for verbs callbacks before using them (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Remove {create, destroy}_ah from mandatory verbs (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Fix check for return code from ib_create_srq (Kamal Heib) [1655920]
-- [infiniband] rdma/providers: Fix return value from create_srq callbacks (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Add UVERBS_ATTR_FLAGS_IN to the specs language (Kamal Heib) [1655920]
-- [rdma] core and ulps: Declare ib_post_send() and ib_post_recv() arguments const (Kamal Heib) [1655920]
-- [infiniband] ib/mlx5, ib_post_send(), ib_wr_reg_sig_mr: Do not modify the 'wr' argument (Kamal Heib) [1655920]
-- [infiniband] ib/mlx5: Add support for drain SQ & RQ (Kamal Heib) [1655920]
-- [infiniband] ib/mlx4: Add support for drain SQ & RQ (Kamal Heib) [1655920]
-- [infiniband] rdma/cxgb4: Add support for kernel mode SRQ's (Kamal Heib) [1655920]
-- [infiniband] rdma/cxgb4: Make c4iw_poll_cq_one() easier to analyze (Kamal Heib) [1655920]
-- [infiniband] rdma/cxgb4: Add support for srq functions & structs (Kamal Heib) [1655920]
-- [infiniband] rdma/cxgb4: Add support for 64Byte cqes (Kamal Heib) [1655920]
-- [infiniband] rdma: Constify the argument of the work request conversion functions (Kamal Heib) [1655920]
-- [infiniband] ib/mlx5: posting klm/mtt list inline in the send queue for reg_wr (Kamal Heib) [1655920]
-- [infiniband] ib/iser: Inline two work request conversion functions (Kamal Heib) [1655920]
-- [rdma] ib/cache: Restore compatibility for ib_query_gid (Kamal Heib) [1655920]
-- [infiniband] rdma/usnic: Suppress a compiler warning (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Do not ignore net namespace for unbound cm_id (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Consider netdevice for RoCE ports (Kamal Heib) [1655920]
-- [infiniband] ib/core: Introduce and use sgid_attr in CM requests (Kamal Heib) [1655920]
-- [infiniband] ib/usnic: usnic should not select INFINIBAND_USER_ACCESS (Kamal Heib) [1655920]
-- [infiniband] ib/core: Remove extra parentheses (Kamal Heib) [1655920]
-- [infiniband] rdma/ocrdma: Suppress a compiler warning (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Fix locking around struct ib_uverbs_file ucontext (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Move the FD uobj type struct file allocation to alloc_commit (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Always propagate errors from rdma_alloc_commit_uobject() (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Rework the locking for cleaning up the ucontext (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Revise and clarify the rwsem and uobjects_lock (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Clarify and revise uverbs_close_fd (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Revise the placement of get/puts on uobject (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Clarify the kref'ing ordering for alloc_commit (Kamal Heib) [1655920]
-- [rdma] ib/uverbs: Handle IDR and FD types without truncation (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Get rid of null_obj_type (Kamal Heib) [1655920]
-- [net] xprtrdma: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [net] rds: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [net] rds: Remove two WARN_ON() statements (Kamal Heib) [1655920]
-- [net] 9p: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [nvme] nvmet-rdma: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [nvme] nvme-rdma: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/srpt: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/srp: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/isert: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/iser: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [rdma] ib/core: Allow ULPs to specify NULL as the third ib_post_(send|recv|srq_recv)() argument (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: Drop QP0 silently (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Fix error return code in ipoib_dev_init() (Kamal Heib) [1655920]
-- [infiniband] ib: Support ib_flow creation in drivers (Kamal Heib) [1655920]
-- [rdma] ib/uverbs: Move ib_access_flags and ib_read_counters_flags to uapi (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Remove cma_multicast->igmp_joined (Kamal Heib) [1655920]
-- [infiniband] rdma/umem: Refactor exit paths in ib_umem_get (Kamal Heib) [1655920]
-- [infiniband] rdma/umem: Don't hold mmap_sem for too long (Kamal Heib) [1655920]
-- [infiniband] ib/srpt: Fix srpt_cm_req_recv() error path (2/2) (Kamal Heib) [1655920]
-- [infiniband] ib/srpt: Fix srpt_cm_req_recv() error path (1/2) (Kamal Heib) [1655920]
-- [infiniband] rdma/ocrdma: Make ocrdma_destroy_qp() easier to analyze (Kamal Heib) [1655920]
-- [infiniband] rdma/nes: Avoid complaints about unused variables (Kamal Heib) [1655920]
-- [rdma] ib: Enable uverbs_destroy_def_handler to be used by drivers (Kamal Heib) [1655920]
-- [infiniband] ib_srpt: use kvmalloc to allocate ring pointers (Kamal Heib) [1655920]
-- [uapi] ib/uverbs: Pass IB_UVERBS_QPF_GRH_REQUIRED to user space (Kamal Heib) [1655920]
-- [infiniband] rdma: Validate grh_required when handling AVs (Kamal Heib) [1655920]
-- [infiniband] rdma/hfi1: Move grh_required into update_sm_ah (Kamal Heib) [1655920]
-- [uapi] rdma: Fix storage of PortInfo CapabilityMask in the kernel (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Fix return code from ipoib_cm_dev_init (Kamal Heib) [1655920]
-- [infiniband] ib/core: Simplify check for RoCE route resolve (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not use uverbs_cmd_mask in the ioctl path (Kamal Heib) [1655920]
-- [infiniband] rdma/rw: Fix rdma_rw_ctx_signature_init() kernel-doc header (Kamal Heib) [1655920]
-- [infiniband] rdma/rxe: Simplify the error handling code in rxe_create_ah() (Kamal Heib) [1655920]
-- [infiniband] ib/iser: Remove set-but-not-used variables (Kamal Heib) [1655920]
-- [infiniband] rdma/ocrdma: Remove a set-but-not-used variable (Kamal Heib) [1655920]
-- [infiniband] ib/nes: Fix a compiler warning (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Remove set-but-not-used variables (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Remove ib_find_cached_gid() and ib_find_cached_gid_by_port() (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Fix use of sizeof() (Kamal Heib) [1655920]
-- [infiniband] networking: make skb_push & __skb_push return void pointers (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Prefer unsigned int to bare use of unsigned (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Use min_t() macro instead of min() (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Remove unused and erroneous msg sequence encoding (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Replace ib_ucq_object uverbs_file with the one in ib_uobject (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Remove ib_uobject_file (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Tidy up remaining references to ucontext (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Replace file->ucontext with file in uverbs_cmd.c (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Replace ib_ucontext with ib_uverbs_file in core function calls (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Move non driver related elements from ib_ucontext to ib_ufile (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Add a uobj_perform_destroy helper (Kamal Heib) [1655920]
-- [rdma] uverbs: Combine MIN_SZ_OR_ZERO with UVERBS_ATTR_STRUCT (Kamal Heib) [1655920]
-- [rdma] uverbs: Use UVERBS_ATTR_MIN_SIZE correctly and uniformly (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Remove UA_FLAGS (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Get rid of the & in method specifications (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Simplify UVERBS_OBJECT and _TREE family of macros (Kamal Heib) [1655920]
-- [rdma] uverbs: Simplify method definition macros (Kamal Heib) [1655920]
-- [rdma] uverbs: Simplify UVERBS_ATTR family of macros (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Split UVERBS_ATTR_FLOW_ACTION_ESP_HANDLE (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Store the specs_root in the struct ib_uverbs_device (Kamal Heib) [1655920]
-- [infiniband] ib/core: type promotion bug in rdma_rw_init_one_mr() (Kamal Heib) [1655920]
-- [infiniband] ib_srpt: Fix a use-after-free in __srpt_close_all_ch() (Kamal Heib) [1655920]
-- [infiniband] ib_srpt: Fix a use-after-free in srpt_close_ch() (Kamal Heib) [1655920]
-- [infiniband] ib/srp: Remove driver version and release data information (Kamal Heib) [1655920]
-- [infiniband] ib: Improve uverbs_cleanup_ucontext algorithm (Kamal Heib) [1655920]
-- [infiniband] ib/iser: set can_queue earlier to allow setting higher queue depth (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: don't clear the tx queue on every transfer (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Remove now useless rcu_lock in dst_fetch_ha (Kamal Heib) [1655920]
-- [infiniband] rdma/vmw_pvrdma: Delete unused function (Kamal Heib) [1655920]
-- [infiniband] ib/core: Check for rdma_protocol_ib only after validating port_num (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Remove redundant check (Kamal Heib) [1655920]
-- [infiniband] rdma/umem: Don't check for a negative return value of dma_map_sg_attrs() (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Don't overwrite NULL pointer with ZERO_SIZE_PTR (Kamal Heib) [1655920]
-- [infiniband] rdma/verbs: Drop kernel variant of destroy_flow (Kamal Heib) [1655920]
-- [infiniband] rdma/verbs: Drop kernel variant of create_flow (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Check existence of create_flow callback (Kamal Heib) [1655920]
-- [infiniband] ib/usnic: Update with bug fixes from core code (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Remove unused ib cache functions (Kamal Heib) [1655920]
-- [infiniband] ib/mlx4: Use GID attribute from ah attribute (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Use sgid_attr from the AV (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Replace members of sa_path_rec with 'struct sgid_attr *' (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Pass the sgid_attr through various events (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Keep track of the sgid_attr that created the cm id (Kamal Heib) [1655920]
-- [infiniband] ib: Make init_ah_attr_grh_fields set sgid_attr (Kamal Heib) [1655920]
-- [infiniband] ib: Make ib_init_ah_from_mcmember set sgid_attr (Kamal Heib) [1655920]
-- [infiniband] ib: Make ib_init_ah_attr_from_wc set sgid_attr (Kamal Heib) [1655920]
-- [infiniband] ib/core: Free GID table entry during GID deletion (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Consider net namespace while leaving multicast group (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Delete type and id from uverbs_obj_attr (Kamal Heib) [1655920]
-- [infiniband] ib/core: Expose ib_ucontext from a given ib_uverbs_file (Kamal Heib) [1655920]
-- [rdma] ib/core: Introduce DECLARE_UVERBS_GLOBAL_METHODS (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Allow an empty namespace in ioctl() framework (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Add a macro to define a type with no kernel known size (Kamal Heib) [1655920]
-- [rdma] ib/uverbs: Add PTR_IN attributes that are allocated/copied automatically (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Refactor uverbs_finalize_objects (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Export uverbs idr and fd types (Kamal Heib) [1655920]
-- [infiniband] ib/core: add max_send_sge and max_recv_sge attributes (Kamal Heib) [1645162 1655920]
-- [infiniband] ib/rxe: avoid unnecessary NULL check (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: support for 802.1q VLAN on the listener (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: increase max MR limit (Kamal Heib) [1655920]
-- [infiniband] ib/mad: Use IDR for agent IDs (Kamal Heib) [1655920]
-- [infiniband] rdma: Convert drivers to use the AH's sgid_attr in post_wr paths (Kamal Heib) [1655920]
-- [infiniband] rdma: Hold the sgid_attr inside the struct ib_ah/qp (Kamal Heib) [1655920]
-- [infiniband] rdma: Convert drivers to use sgid_attr instead of sgid_index (Kamal Heib) [1655920]
-- [infiniband] ib{cm, core}: Introduce and use ah_attr copy, move, replace APIs (Kamal Heib) [1655920]
-- [infiniband] ib/core: Tidy ib_resolve_eth_dmac (Kamal Heib) [1655920]
-- [infiniband] ib/core: Add a sgid_attr pointer to struct rdma_ah_attr (Kamal Heib) [1655920]
-- [infiniband] ib: Ensure that all rdma_ah_attr's are zero initialized (Kamal Heib) [1655920]
-- [infiniband] ib/mad: Agent registration is process context only (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: Do not hide uABI stuff in memcpy (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Refactor flow_resources_alloc() function (Kamal Heib) [1655920]
-- [infiniband] rdma/nldev: Return port capability flag for IB only (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: Use rdma GID API (Kamal Heib) [1655920]
-- [infiniband] ib: Replace ib_query_gid/ib_get_cached_gid with rdma_query_gid (Kamal Heib) [1655920]
-- [infiniband] ib/core: Make rdma_find_gid_by_filter support all protocols (Kamal Heib) [1655920]
-- [infiniband] ib/core: Provide rdma_ versions of the gid cache API (Kamal Heib) [1655920]
-- [infiniband] ib/core: Replace ib_query_gid with rdma_get_gid_attr (Kamal Heib) [1655920]
-- [infiniband] ib/core: Introduce GID attribute get, put and hold APIs (Kamal Heib) [1655920]
-- [infiniband] rdma: Use GID from the ib_gid_attr during the add_gid() callback (Kamal Heib) [1655920]
-- [infiniband] ib/core: Introduce GID entry reference counts (Kamal Heib) [1655920]
-- [infiniband] ib/core: Store default GID property per-table instead of per-entry (Kamal Heib) [1655920]
-- [infiniband] ib/core: Do not set the gid type when reserving default entries (Kamal Heib) [1655920]
-- [kernel] genirq: Introduce helper function irq_data_get_affinity_mask() (Ivan Vecera) [1658269]
-
-* Mon Jan 14 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-991.el7]
-- [scsi] ibmvscsi: set max_lun to 32 (Laurent Vivier) [1662237]
-- [scsi] ibmvscsi: display default value for max_id, max_lun and max_channel. (Laurent Vivier) [1662237]
-- [netdrv] hv_netvsc: Fix a network regression after ifdown/ifup (Mohammed Gamal) [1661632]
-- [netdrv] net/ibmvnic: Fix RTNL deadlock during device reset (Diego Domingos) [1648824 1648822]
-- [netdrv] net/ibmnvic: Fix deadlock problem in reset (Diego Domingos) [1648824 1648822]
-- [net] Add netif_is_gretap()/netif_is_ip6gretap() (Petr Oros) [1660901]
-- [net] Set sk_prot_creator when cloning sockets to the right proto (Andrea Claudi) [1657352] {CVE-2018-9568}
-- [net] devlink: Add helper function for safely copy string param (Petr Oros) [1653433]
-- [net] devlink: Fix param cmode driverinit for string type (Petr Oros) [1653433]
-- [net] devlink: Fix param set handling for string type (Petr Oros) [1653433]
-- [net] devlink: Add generic parameter msix_vec_per_pf_min (Petr Oros) [1653433]
-- [net] devlink: Add generic parameter msix_vec_per_pf_max (Petr Oros) [1653433]
-- [net] devlink: Add generic parameter ignore_ari (Petr Oros) [1653433]
-- [net] devlink: double free in devlink_resource_fill() (Petr Oros) [1653433]
-- [net] devlink: Add generic parameters region_snapshot (Petr Oros) [1653433]
-- [net] devlink: Add support for region snapshot read command (Petr Oros) [1653433]
-- [net] devlink: Add support for region snapshot delete command (Petr Oros) [1653433]
-- [net] devlink: Extend the support querying for region snapshot IDs (Petr Oros) [1653433]
-- [net] devlink: Add support for region get command (Petr Oros) [1653433]
-- [net] devlink: Add support for creating region snapshots (Petr Oros) [1653433]
-- [net] devlink: Add callback to query for snapshot id before snapshot create (Petr Oros) [1653433]
-- [net] devlink: Add support for creating and destroying regions (Petr Oros) [1653433]
-- [net] devlink: fix incorrect return statement (Petr Oros) [1653433]
-- [net] devlink: Add enable_sriov boolean generic parameter (Petr Oros) [1653433]
-- [net] devlink: Add generic parameters internal_err_reset and max_macs (Petr Oros) [1653433]
-- [net] devlink: Add devlink notifications support for params (Petr Oros) [1653433]
-- [net] devlink: Add support for get/set driverinit value (Petr Oros) [1653433]
-- [net] devlink: Add param set command (Petr Oros) [1653433]
-- [net] devlink: Add param get command (Petr Oros) [1653433]
-- [net] devlink: Add devlink_param register and unregister (Petr Oros) [1653433]
-- [net] remove unnecessary genlmsg_cancel() calls (Petr Oros) [1657816]
-- [net] devlink: don't take instance lock around eswitch mode set (Petr Oros) [1657816]
-- [net] devlink: introduce a helper to generate physical port names (Petr Oros) [1657816]
-- [net] devlink: extend attrs_set for setting port flavours (Petr Oros) [1657816]
-- [net] devlink: introduce devlink_port_attrs_set (Petr Oros) [1657816]
-- [net] devlink: Remove redundant free on error path (Petr Oros) [1657816]
-- [net] devlink: Change dpipe/resource get privileges (Petr Oros) [1657816]
-- [net] devlink: Maintain consistency in mac field name (Petr Oros) [1657816]
-- [net] fix race on decreasing number of TX queues (Erez Alfasi) [1658679]
-- [net] 8021q: move vlan offload registrations into vlan_core (Hangbin Liu) [1657650]
-- [net] ethtool: Add WAKE_FILTER and RX_CLS_FLOW_WAKE (Ivan Vecera) [1657886]
-- [netdrv] virtchnl: Whitespace and parenthesis cleanup (Ivan Vecera) [1658270]
-- [netdrv] virtchnl: use u8 type for a field in the virtchnl_filter struct (Ivan Vecera) [1658270]
-- [netdrv] virtchnl: Added support to exchange additional speed values (Ivan Vecera) [1658270]
-- [netdrv] i40e: Update status codes (Ivan Vecera) [1658270]
-- [netdrv] virtchnl: Fix off by one error (Ivan Vecera) [1658270]
-- [netdrv] virtchnl: white space and reorder (Ivan Vecera) [1658270]
-- [net] return NULL if metadata_dst allocation fails in metadata_dst_alloc (Lorenzo Bianconi) [1656697]
-- [net] act_sample: get rid of tcf_sample_cleanup_rcu() (Davide Caratti) [1654950]
-- [net] sched: act_sample: fix NULL dereference in the data path (Davide Caratti) [1654950]
-- [net] Make NETDEV_XXX commands enum { } (Ivan Vecera) [1654965]
-
-* Thu Jan 10 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-990.el7]
-- [scsi] csiostor: remove flush_scheduled_work() (Arjun Vynipadath) [1660882]
-- [scsi] lpfc: Update lpfc version to 12.0.0.10 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Adding ability to reset chip via pci bus reset (Dick Kennedy) [1642905]
-- [scsi] lpfc: Add log messages to aid in debugging fc4type discovery issues (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix discovery failure when PLOGI is defered (Dick Kennedy) [1642905]
-- [scsi] lpfc: update fault value on successful trunk events (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct MDS loopback diagnostics support (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix link state reporting for trunking when adapter is offline (Dick Kennedy) [1642905]
-- [scsi] lpfc: Enable Management features for IF_TYPE=6 (Dick Kennedy) [1658750 1642905]
-- [scsi] revert "scsi: lpfc: ls_rjt erroneus FLOGIs" (Dick Kennedy) [1642905]
-- [scsi] lpfc: update driver version to 12.0.0.9 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix dif and first burst use in write commands (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix driver release of fw-logging buffers (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct topology type reporting on G7 adapters (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct code setting non existent bits in sli4 ABORT WQE (Dick Kennedy) [1642905]
-- [scsi] lpfc: Defer LS_ACC to FLOGI on point to point logins (Dick Kennedy) [1642905]
-- [scsi] lpfc: ls_rjt erroneus FLOGIs (Dick Kennedy) [1642905]
-- [scsi] lpfc: rport port swap discovery issue (Dick Kennedy) [1642905]
-- [scsi] lpfc: Cap NPIV vports to 256 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix kernel Oops due to null pring pointers (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix a duplicate 0711 log message number (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix discovery failures during port failovers with lots of vports (Dick Kennedy) [1642905]
-- [scsi] lpfc: refactor mailbox structure context fields (Dick Kennedy) [1642905]
-- [scsi] lpfc: update manufacturer attribute to reflect Broadcom (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix panic when FW-log buffsize is not initialized (Dick Kennedy) [1642905]
-- [scsi] lpfc: Use dma_zalloc_coherent (Dick Kennedy) [1642905]
-- [scsi] lpfc: use dma_set_mask_and_coherent (Dick Kennedy) [1642905]
-- [scsi] lpfc: update driver version to 12.0.0.8 (Dick Kennedy) [1642905]
-- [scsi] lpfc: add Trunking support (Dick Kennedy) [1642905]
-- [scsi] lpfc: Implement GID_PT on Nameserver query to support faster failover (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct loss of fc4 type on remote port address change (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix odd recovery in duplicate FLOGIs in point-to-point (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct LCB RJT handling (Dick Kennedy) [1642905]
-- [scsi] lpfc: fcoe: Fix link down issue after 1000+ link bounces (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct errors accessing fw log (Dick Kennedy) [1642905]
-- [scsi] lpfc: Reset link or adapter instead of doing infinite nameserver PLOGI retry (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix LOGO/PLOGI handling when triggerd by ABTS Timeout event (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix lpfc_sli4_read_config return value check (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct speeds on SFP swap (Dick Kennedy) [1642905]
-- [scsi] lpfc: Remove set but not used variables 'tgtp' (Dick Kennedy) [1642905]
-- [scsi] lpfc: Remove set but not used variable 'psli' (Dick Kennedy) [1642905]
-- [scsi] lpfc: Remove set but not used variables 'fc_hdr' and 'hw_page_size' (Dick Kennedy) [1642905]
-- [scsi] lpfc: fix spelling mistake "Resrouce" -> "Resource" (Dick Kennedy) [1642905]
-- [scsi] lpfc: Synchronize access to remoteport via rport (Dick Kennedy) [1642905]
-- [scsi] lpfc: Remove set but not used variable 'sgl_size' (Dick Kennedy) [1642905]
-- [scsi] lpfc: update driver version to 12.0.0.7 (Dick Kennedy) [1642905]
-- [scsi] lpfc: add support to retrieve firmware logs (Dick Kennedy) [1642905]
-- [scsi] lpfc: reduce locking when updating statistics (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix errors in log messages (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct invalid EQ doorbell write on if_type=6 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct irq handling via locks when taking adapter offline (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct soft lockup when running mds diagnostics (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct race with abort on completion path (Dick Kennedy) [1642905]
-- [scsi] lpfc: Raise nvme defaults to support a larger io and more connectivity (Dick Kennedy) [1642905]
-- [scsi] lpfc: raise sg count for nvme to use available sg resources (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix GFT_ID and PRLI logic for RSCN (Dick Kennedy) [1642905]
-- [scsi] lpfc: remove an unnecessary NULL check (Dick Kennedy) [1642905]
-- [scsi] lpfc: Default fdmi_on to on (Dick Kennedy) [1642905]
-- [scsi] lpfc: update driver version to 12.0.0.6 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Limit tracking of tgt queue depth in fast path (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix sysfs Speed value on CNA ports (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix ELS abort on SLI-3 adapters (Dick Kennedy) [1642905]
-- [s390] Add ebpf support (Jiri Olsa) [1657679]
-
-* Wed Jan 09 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-989.el7]
-- [md] Add split counter for raid1 write request in the right place (Xiao Ni) [1659951]
-- [block] blk-mq: punt failed direct issue to dispatch list (Ming Lei) [1656654]
-- [block] blk-mq: fix corruption with direct issue (Ming Lei) [1656654]
-- [xen] manage: Poweroff forcefully if user-space is not yet up. (Vitaly Kuznetsov) [1658196]
-- [mm] mincore: add hwpoison page handle (Waiman Long) [1661268]
-- [mm] hugetlb: filter out hugetlb pages if HUGEPAGE migration is not supported (Baoquan He) [1601867]
-- [mm] page_alloc: fail has_unmovable_pages when seeing reserved pages (Baoquan He) [1601867]
-- [mm] distinguish CMA and MOVABLE isolation in has_unmovable_pages() (Baoquan He) [1601867]
-- [mm] page_isolation: make set/unset_migratetype_isolate() file-local (Baoquan He) [1601867]
-- [mm] soft-offline: don't free target page in successful page migration (Baoquan He) [1601867]
-- [mm] memory_hotplug.c: check start_pfn in test_pages_in_a_zone() (Baoquan He) [1601867]
-- [mm] memory_hotplug: is_mem_section_removable() can return bool (Baoquan He) [1601867]
-- [base] base/memory.c: prohibit offlining of memory blocks with missing sections (Baoquan He) [1601867]
-- [mm] drop migrate type checks from has_unmovable_pages (Baoquan He) [1601867]
-- [x86] platform/uv: Add adjustable set memory block size function (Baoquan He) [1601867]
-- [mm] memory_hotplug: remove timeout from __offline_memory (Baoquan He) [1601867]
-- [mm] memory_hotplug: do not fail offlining too early (Baoquan He) [1601867]
-- [x86] mm/memory_hotplug: determine block size based on the end of boot memory (Baoquan He) [1601867]
-- [x86] mm: Streamline and restore probe_memory_block_size() (Baoquan He) [1601867]
-- [x86] mm: Use 2GB memory block size on large-memory x86-64 systems (Baoquan He) [1601867]
-- [x86] mm: probe memory block size for generic x86 64bit (Baoquan He) [1601867]
-- [x86] revert platform/uv: Add adjustable set memory block size function (Baoquan He) [1601867]
-- [x86] redhat: configs: enable CONFIG_NUMA_EMU (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Fix uniform-split numa emulation (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Introduce uniform split capability (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Fix emulated-to-physical node mapping (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Recalculate numa_nodes_parsed from emulated nodes (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Assign physnode_mask directly from numa_nodes_parsed (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Refine the calculation of max_emu_nid and dfl_phys_nid (Rafael Aquini) [1641417]
-
-* Mon Jan 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-988.el7]
-- [tools] perf tools: Fix trigger class trigger_on() (Jiri Olsa) [1641373]
-- [tools] perf auxtrace: Prevent decoding when --no-itrace (Jiri Olsa) [1641373]
-- [tools] perf stat: Fix CVS output format for non-supported counters (Jiri Olsa) [1641373]
-- [tools] perf record: Fix crash in pipe mode (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Be more robust when drawing jump arrows (Jiri Olsa) [1641373]
-- [tools] perf top: Fix annoying fallback message on older kernels (Jiri Olsa) [1641373]
-- [tools] perf kallsyms: Fix the usage on the man page (Jiri Olsa) [1641373]
-- [tools] perf s390: Rework system call table creation by using syscall.tbl (Jiri Olsa) [1641373]
-- [tools] perf s390: Grab a copy of arch/s390/kernel/syscall/syscall.tbl (Jiri Olsa) [1641373]
-- [tools] perf data: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf tools: Substitute yet another strtoull() (Jiri Olsa) [1641373]
-- [tools] perf vendor events aarch64: Add JSON metrics for ARM Cortex-A53 Processor (Jiri Olsa) [1641373]
-- [tools] perf tools: Add trace/beauty/generated/ into .gitignore (Jiri Olsa) [1641373]
-- [tools] perf record: Fix period option handling (Jiri Olsa) [1641373]
-- [tools] perf evsel: Fix period/freq terms setup (Jiri Olsa) [1641373]
-- [tools] perf trace beauty flock: Move to separate object file (Jiri Olsa) [1641373]
-- [tools] perf evlist: Remove fcntl.h from evlist.h (Jiri Olsa) [1641373]
-- [tools] perf trace beauty futex: Beautify FUTEX_BITSET_MATCH_ANY (Jiri Olsa) [1641373]
-- [tools] perf trace: Do not print from time delta for interrupted syscall lines (Jiri Olsa) [1641373]
-- [tools] perf trace: Add --print-sample (Jiri Olsa) [1641373]
-- [tools] perf bpf: Remove misplaced __maybe_unused attribute (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update IvyTown files to V20 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update IvyBridge files to V20 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update BroadwellDE events to V7 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update SkylakeX events to V1.06 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Skylake events to V36 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Silvermont events to V14 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update IvyTown events to V20 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update IvyBridge events to V20 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update HaswellX events to V19 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Haswell events to V27 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Goldmont events to V12 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update BroadwellX events to V13 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Broadwell events to V22 (Jiri Olsa) [1641373]
-- [tools] perf trace: Remove audit-libs dependency if syscall tables are present (Jiri Olsa) [1641373]
-- [tools] perf trace: Obtain errno strings by using arch_syscalls__strerrno() (Jiri Olsa) [1641373]
-- [tools] perf util: Introduce architecture specific errno/name mapping (Jiri Olsa) [1641373]
-- [tools] tools include asm-generic: Grab errno.h and errno-base.h (Jiri Olsa) [1641373]
-- [tools] tools include arch: Grab a copy of errno.h for arch's supported by perf (Jiri Olsa) [1641373]
-- [tools] perf build: Display EXTRA features for VF=1 build (Jiri Olsa) [1641373]
-- [tools] perf symbols: Using O_CLOEXEC in do_open (Jiri Olsa) [1641373]
-- [tools] perf tools: Move conditional O_CLOEXEC to util.h (Jiri Olsa) [1641373]
-- [tools] perf bpf: Don't warn about unavailability of builtin clang, just fallback (Jiri Olsa) [1641373]
-- [tools] perf tools: Use ui__error() for reporting --fields errors (Jiri Olsa) [1641373]
-- [tools] perf tools: Get rid of unused 'swapped' parameter from perf_event__synthesize_sample() (Jiri Olsa) [1641373]
-- [tools] perf evsel: Ensure reserved member of PERF_SAMPLE_CPU is zero in perf_event__synthesize_sample() (Jiri Olsa) [1641373]
-- [tools] perf intel-pt/bts: Do not swap when synthesizing samples (Jiri Olsa) [1641373]
-- [tools] perf record: Fix failed memory allocation for get_cpuid_str (Jiri Olsa) [1641373]
-- [tools] perf script: Remove the time slices number limitation (Jiri Olsa) [1641373]
-- [tools] perf report: Remove the time slices number limitation (Jiri Olsa) [1641373]
-- [tools] perf util: Allocate time slices buffer according to number of comma (Jiri Olsa) [1641373]
-- [tools] perf report: Add an indication of what time slices are used (Jiri Olsa) [1641373]
-- [tools] perf util: Support no index time percent slice (Jiri Olsa) [1641373]
-- [tools] perf util: Improve error checking for time percent input (Jiri Olsa) [1641373]
-- [tools] perf script: Improve error msg when no first/last sample time found (Jiri Olsa) [1641373]
-- [tools] perf report: Improve error msg when no first/last sample time found (Jiri Olsa) [1641373]
-- [tools] perf callchains: Ask for PERF_RECORD_MMAP for data mmaps for DWARF unwinding (Jiri Olsa) [1641373]
-- [tools] perf trace: Setup DWARF callchains for non-syscall events when --max-stack is used (Jiri Olsa) [1641373]
-- [tools] perf unwind: Do not look just at the global callchain_param.record_mode (Jiri Olsa) [1641373]
-- [tools] perf callchain: Fix attr.sample_max_stack setting (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Fix get_field_str() for dynamic strings (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Fix missing break in FALSE case of pevent_filter_clear_trivial() (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Add UL suffix to MISSING_EVENTS (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Use asprintf when possible (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Show contents (in hex) of data of unrecognized type records (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Handle new pointer processing of bprint strings (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Simplify pointer print logic and fix pF (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Print value of unknown symbolic fields (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Show value of flags that have not been parsed (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Fix bad force_token escape sequence (Jiri Olsa) [1641373]
-- [tools] perf trace: Fix setting of --call-graph/--max-stack for non-syscall events (Jiri Olsa) [1641373]
-- [tools] perf evsel: Check if callchain is enabled before setting it up (Jiri Olsa) [1641373]
-- [tools] perf tools: Fix copyfile_offset update of output offset (Jiri Olsa) [1641373]
-- [tools] perf trace: No need to set PERF_SAMPLE_IDENTIFIER explicitely (Jiri Olsa) [1641373]
-- [tools] perf script python: Add script to profile and resolve physical mem type (Jiri Olsa) [1641373]
-- [tools] perf evlist: Remove trailing semicolon (Jiri Olsa) [1641373]
-- [tools] perf evsel: Fix incorrect handling of type _TERM_DRV_CFG (Jiri Olsa) [1641373]
-- [tools] perf report: Introduce --mmaps (Jiri Olsa) [1641373]
-- [tools] perf report: Add --tasks option to display monitored tasks (Jiri Olsa) [1641373]
-- [tools] perf trace: Beautify 'gettid' syscall result (Jiri Olsa) [1641373]
-- [tools] perf report: Add --stats option to display quick data statistics (Jiri Olsa) [1641373]
-- [tools] perf tools: Make the tool's warning messages optional (Jiri Olsa) [1641373]
-- [tools] perf script: Add support to display lost events (Jiri Olsa) [1641373]
-- [tools] perf script: Add support to display sample misc field (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable LIBBABELTRACE by default (Jiri Olsa) [1641373]
-- [tools] perf script: Support time percent and multiple time ranges (Jiri Olsa) [1641373]
-- [tools] perf report: Support time percent and multiple time ranges (Jiri Olsa) [1641373]
-- [tools] perf tools: Create function to perform multiple time range checking (Jiri Olsa) [1641373]
-- [tools] perf tools: Create function to parse time percent (Jiri Olsa) [1641373]
-- [tools] perf record: Record the first and last sample time in the header (Jiri Olsa) [1641373]
-- [tools] perf header: Add infrastructure to record first and last sample time (Jiri Olsa) [1641373]
-- [tools] perf report: Fix a no annotate browser displayed issue (Jiri Olsa) [1641373]
-- [tools] perf report: Fix a wrong offset issue when using /proc/kcore (Jiri Olsa) [1641373]
-- [tools] perf tools: Fix compile error with libunwind x86 (Jiri Olsa) [1641373]
-- [tools] perf test bpf: Hook on epoll_pwait() (Jiri Olsa) [1641373]
-- [tools] perf tests bpf: Use SyS_epoll_wait alias (Jiri Olsa) [1641373]
-- [tools] perf test bpf: Use designated struct field initializers (Jiri Olsa) [1641373]
-- [tools] perf tools: Remove string.h, unistd.h and sys/stat.h from util.h (Jiri Olsa) [1641373]
-- [tools] perf test: Add libbpf pinning test (Jiri Olsa) [1641373]
-- [tools] perf test: Check environment before start real BPF test (Jiri Olsa) [1641373]
-- [tools] perf test bpf: Use epoll_wait() instead of epoll_pwait() (Jiri Olsa) [1641373]
-- [tools] perf test: Remove "test" and similar strings from test descriptions (Jiri Olsa) [1641373]
-- [tools] perf test: Print result for each BPF subtest (Jiri Olsa) [1641373]
-- [tools] perf test bpf: Improve message about expected samples (Jiri Olsa) [1641373]
-- [tools] perf test: Fix 'perf test BPF' when it fails to find a suitable vmlinux (Jiri Olsa) [1641373]
-- [tools] perf tools: Auto-complete for events with ':' (Jiri Olsa) [1641373]
-- [tools] perf tools: Return all events as auto-completions after comma (Jiri Olsa) [1641373]
-- [tools] perf tool: Improve bash command line auto-complete for multiple events with comma (Jiri Olsa) [1641373]
-- [tools] perf probe arm64: Fix symbol fixup issues due to ELF type (Jiri Olsa) [1641373]
-- [tools] perf evsel: Enable ignore_missing_thread for pid option (Jiri Olsa) [1641373]
-- [tools] perf s390: Always build with -fPIC (Jiri Olsa) [1641373]
-- [tools] revert "perf s390: Always build with -fPIC" (Jiri Olsa) [1641373]
-- [tools] perf probe: Support escaped character in parser (Jiri Olsa) [1641373]
-- [tools] perf string: Add {strdup, strpbrk}_esc() (Jiri Olsa) [1641373]
-- [tools] perf probe: Find versioned symbols from map (Jiri Olsa) [1641373]
-- [tools] perf probe: Add __return suffix for return events (Jiri Olsa) [1641373]
-- [tools] perf probe: Cut off the version suffix from event name (Jiri Olsa) [1641373]
-- [tools] perf probe: Add warning message if there is unexpected event name (Jiri Olsa) [1641373]
-- [tools] perf env: Adopt perf_env__arch() from the annotate code (Jiri Olsa) [1641373]
-- [tools] perf annotate: Use perf_env when obtaining the arch name (Jiri Olsa) [1641373]
-- [tools] perf annotate: Get the cpuid from evsel->evlist->env in symbol__annotate() (Jiri Olsa) [1641373]
-- [tools] perf trace: Use generated syscall table on s390 too (Jiri Olsa) [1641373]
-- [tools] perf s390: Generate system call table from asm/unistd.h (Jiri Olsa) [1641373]
-- [tools] perf perf: Remove duplicate includes (Jiri Olsa) [1641373]
-- [tools] perf test: Handle properly readdir DT_UNKNOWN (Jiri Olsa) [1641373]
-- [tools] perf utils: Move is_directory() to path.h (Jiri Olsa) [1641373]
-- [tools] perf stat: Resort '--per-thread' result (Jiri Olsa) [1641373]
-- [tools] perf stat: Remove --per-thread pid/tid limitation (Jiri Olsa) [1641373]
-- [tools] perf thread_map: Enumerate all threads from /proc (Jiri Olsa) [1641373]
-- [tools] perf stat: Update or print per-thread stats (Jiri Olsa) [1641373]
-- [tools] perf stat: Allocate shadow stats buffer for threads (Jiri Olsa) [1641373]
-- [tools] perf stat: Remove a set of shadow stats static variables (Jiri Olsa) [1641373]
-- [tools] perf stat: Print per-thread shadow stats (Jiri Olsa) [1641373]
-- [tools] perf stat: Update per-thread shadow stats (Jiri Olsa) [1641373]
-- [tools] perf stat: Create the runtime_stat init/exit function (Jiri Olsa) [1641373]
-- [tools] perf stat: Extend rbtree to support per-thread shadow stats (Jiri Olsa) [1641373]
-- [tools] perf stat: Define a structure for per-thread shadow stats (Jiri Olsa) [1641373]
-- [tools] perf report: Set browser mode right before setup_browser() (Jiri Olsa) [1641373]
-- [tools] perf c2c: Add a tip about cacheline events (Jiri Olsa) [1641373]
-- [tools] perf pmu: Add check for valid cpuid in perf_pmu__find_map() (Jiri Olsa) [1641373]
-- [tools] perf vendor events arm64: Add ThunderX2 implementation defined pmu core events (Jiri Olsa) [1641373]
-- [tools] perf tools arm64: Add support for get_cpuid_str function (Jiri Olsa) [1641373]
-- [tools] perf pmu: Pass pmu as a parameter to get_cpuid_str() (Jiri Olsa) [1641373]
-- [tools] perf s390: Always build with -fPIC (Jiri Olsa) [1641373]
-- [tools] perf thread_map: Add method to map all threads in the system (Jiri Olsa) [1641373]
-- [tools] perf stat: Add rbtree node_delete op (Jiri Olsa) [1641373]
-- [tools] perf rblist: Create rblist__exit() function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Fix objdump comment parsing for Intel mov dissassembly (Jiri Olsa) [1641373]
-- [tools] perf annotate: Fix unnecessary memory allocation for s390x (Jiri Olsa) [1641373]
-- [tools] perf bench futex: Sync waker threads (Jiri Olsa) [1641373]
-- [tools] tools build feature: Check if pthread_barrier_t is available (Jiri Olsa) [1641373]
-- [tools] perf bench futex: Use cpumaps (Jiri Olsa) [1641373]
-- [tools] perf intel-pt: Improve build messages for files that differ from the kernel (Jiri Olsa) [1641373]
-- [tools] perf report: Fix -D output for user metadata events (Jiri Olsa) [1641373]
-- [tools] perf buildid-cache: Document for Node.js USDT (Jiri Olsa) [1641373]
-- [tools] perf script: Allow computing 'perf stat' style metrics (Jiri Olsa) [1641373]
-- [tools] perf record: Synthesize thread map and cpu map (Jiri Olsa) [1641373]
-- [tools] perf record: Synthesize unit/scale/... in event update (Jiri Olsa) [1641373]
-- [tools] perf test: Disable test cases 19 and 20 on s390x (Jiri Olsa) [1641373]
-- [tools] tools headers: Follow the upstream UAPI header version 100 differ from the kernel (Jiri Olsa) [1641373]
-- [tools] perf tools: Move symbol__calc_percent() call to outside symbol__disassemble() (Jiri Olsa) [1641373]
-- [tools] perf tools: Change (symbol|annotation)__calc_percent return type to void (Jiri Olsa) [1641373]
-- [tools] perf top: Fix crash when annotating symbol (Jiri Olsa) [1641373]
-- [tools] perf callchain: Reset cursor arg instead of callchain_cursor (Jiri Olsa) [1641373]
-- [tools] perf buildid-cache: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf evlist: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf sched: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf timechart: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf trace: Document missing option, colons (Jiri Olsa) [1641373]
-- [tools] perf inject: Document missing options (Jiri Olsa) [1641373]
-- [tools] perf lock: Document missing options (Jiri Olsa) [1641373]
-- [tools] perf evsel: Say which PMU Hardware event doesn't support sampling/overflow-interrupts (Jiri Olsa) [1641373]
-- [tools] perf c2c: Fix spelling mistakes in browser help text (Jiri Olsa) [1641373]
-- [tools] perf top: Remove a duplicate word (Jiri Olsa) [1641373]
-- [tools] perf top: Document missing options (Jiri Olsa) [1641373]
-- [tools] perf script: Allow printing period for non freq mode groups (Jiri Olsa) [1641373]
-- [tools] perf tools: Document some missing perf.data headers (Jiri Olsa) [1641373]
-- [tools] perf buildid-cache: Update help text for purge command (Jiri Olsa) [1641373]
-- [tools] perf tests: Add missing WRITE_ASS for new fields of perf_event_attr (Jiri Olsa) [1641373]
-- [tools] perf evsel: Enable type checking for perf_evsel_config_term types (Jiri Olsa) [1641373]
-- [tools] perf annotate: Align source and offset lines (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Add disasm_line__write function (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Use struct annotation_line in browser top (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Use struct annotation_line in find functions (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Use struct annotation_line in browser_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Change offsets to struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Change selection to struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Rename disasm_line__browser to browser_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Rename struct browser_disasm_line to browser_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Do not pass nr_events in disasm_rb_tree__insert (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Use samples data from struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate: Factor annotation_line__print from disasm_line__print (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line__print function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Remove struct source_line (Jiri Olsa) [1641373]
-- [tools] perf annotate: Remove disasm__calc_percent function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Remove disasm__calc_percent() from annotate_browser__calc_percent() (Jiri Olsa) [1641373]
-- [tools] perf annotate: Remove disasm__calc_percent() from disasm_line__print() (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add symbol__calc_lines function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add symbol__calc_percent function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add samples into struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotated_source__purge function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line__(new|delete) functions (Jiri Olsa) [1641373]
-- [tools] perf annotate: Move rb_node to struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line__add function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line__next function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add evsel into struct annotation_line_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add offset/line/line_nr into struct annotate_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add map into struct annotate_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add arch into struct annotate_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add struct annotate_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add symbol__annotate function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Move ipc/cycles into annotation_line struct (Jiri Olsa) [1641373]
-- [tools] perf annotate: Move line/offset into annotation_line struct (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line struct (Jiri Olsa) [1641373]
-- [tools] perf clang: Compile BPF script using builtin clang support (Jiri Olsa) [1641373]
-- [tools] perf clang: Support compile IR to BPF object and add testcase (Jiri Olsa) [1641373]
-- [tools] perf clang: Update test case to use real BPF script (Jiri Olsa) [1641373]
-- [tools] perf clang: Allow passing CFLAGS to builtin clang (Jiri Olsa) [1641373]
-- [tools] perf clang: Use real file system for #include (Jiri Olsa) [1641373]
-- [tools] perf clang: Add builtin clang support ant test case (Jiri Olsa) [1641373]
-- [tools] perf llvm: Extract helpers in llvm-utils.c (Jiri Olsa) [1641373]
-- [tools] perf bpf: fix typo: "ehough" -> "enough" (Jiri Olsa) [1641373]
-- [tools] perf bpf: Support BPF program attach to tracepoints (Jiri Olsa) [1641373]
-- [tools] perf bpf: Rename bpf__foreach_tev() to bpf__foreach_event() (Jiri Olsa) [1641373]
-- [tools] perf llvm: Allow dump llvm output object file using llvm.dump-obj (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Rename bpf_map__get_fd() to bpf_map__fd() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Use IS_ERR() reporting macros with bpf_map__get_def() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Rename bpf_map__get_name() to bpf_map__name() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Use IS_ERR() reporting macros with bpf_map__get_private() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Add libbpf_get_error() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Remove _get_ from non-refcount method names (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Make bpf_program__get_private() use IS_ERR() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Rename set_private() to set_priv() (Jiri Olsa) [1641373]
-- [tools] perf bpf: Automatically create bpf-output event __bpf_stdout__ (Jiri Olsa) [1641373]
-- [tools] perf bpf: Clone bpf stdout events in multiple bpf scripts (Jiri Olsa) [1641373]
-- [tools] perf tools: Introduce bpf-output event (Jiri Olsa) [1641373]
-- [tools] perf tools: Apply tracepoint event definition options to BPF script (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable indices setting syntax for BPF map (Jiri Olsa) [1641373]
-- [tools] perf tools: Support setting different slots in a BPF map separately (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable passing event to BPF object (Jiri Olsa) [1641373]
-- [tools] perf record: Apply config to BPF objects before recording (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable BPF object configure syntax (Jiri Olsa) [1641373]
-- [tools] tools Adopt strstarts() from the kernel (Jiri Olsa) [1641373]
-- [tools] perf bpf: Rename bpf_prog_priv__clear() to clear_prog_priv() (Jiri Olsa) [1641373]
-- [tools] perf test: Add libbpf relocation checker (Jiri Olsa) [1641373]
-- [tools] perf build: Use FEATURE-DUMP in bpf subproject (Jiri Olsa) [1641373]
-- [tools] perf tools: Make perf depend on libbpf (Jiri Olsa) [1641373]
-- [tools] perf mmap: Simplify perf_mmap__read_init() (Jiri Olsa) [1641373]
-- [tools] perf mmap: Simplify perf_mmap__read_event() (Jiri Olsa) [1641373]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for bpf (Jiri Olsa) [1641373]
-- [tools] perf evlist: Remove 'overwrite' parameter from perf_evlist__mmap (Jiri Olsa) [1641373]
-- [tools] perf bpf: Add API to set values to map entries in a bpf object (Jiri Olsa) [1641373]
-- [tools] perf bpf: Rename bpf config to program config (Jiri Olsa) [1641373]
-- [tools] perf test: Print result for each LLVM subtest (Jiri Olsa) [1641373]
-- [tools] perf bpf: Use same BPF program if arguments are identical (Jiri Olsa) [1641373]
-- [tools] perf test: Test the BPF prologue adding infrastructure (Jiri Olsa) [1641373]
-- [tools] perf bpf: Generate prologue for BPF programs (Jiri Olsa) [1641373]
-- [tools] perf bpf: Add prologue for BPF programs for fetching arguments (Jiri Olsa) [1641373]
-- [tools] perf bpf: Allow BPF program config probing options (Jiri Olsa) [1641373]
-- [tools] perf bpf: Allow attaching BPF programs to modules symbols (Jiri Olsa) [1641373]
-- [tools] perf bpf: Allow BPF program attach to uprobe events (Jiri Olsa) [1641373]
-- [tools] perf test: Fix build of BPF and LLVM on older glibc libraries (Jiri Olsa) [1641373]
-- [tools] perf evsel: Do not use globals in config() (Jiri Olsa) [1641373]
-- [tools] perf test: Add 'perf test BPF' (Jiri Olsa) [1641373]
-- [tools] perf test: enhance the llvm tests: add kbuild test (Jiri Olsa) [1641373]
-- [tools] perf test: enhance the llvm test: update basic BPF test program (Jiri Olsa) [1641373]
-- [tools] perf tools: Make fetch_kernel_version() publicly available (Jiri Olsa) [1641373]
-- [tools] perf llvm: Pass LINUX_VERSION_CODE to BPF program when compiling (Jiri Olsa) [1641373]
-- [tools] perf llvm: Pass number of configured CPUs to clang compiler (Jiri Olsa) [1641373]
-- [tools] perf bpf: Mute libbpf when '-v' not set (Jiri Olsa) [1641373]
-- [tools] perf test: Keep test result clean if '-v' not set (Jiri Olsa) [1641373]
-- [tools] perf bpf: Improve BPF related error messages (Jiri Olsa) [1641373]
-- [tools] bpf tools: Improve libbpf error reporting (Jiri Olsa) [1641373]
-- [tools] perf tools: Compile scriptlets to BPF objects when passing '.c' to --event (Jiri Olsa) [1641373]
-- [tools] perf bpf: Attach eBPF filter to perf event (Jiri Olsa) [1641373]
-- [tools] perf bpf: Collect perf_evsel in BPF object files (Jiri Olsa) [1641373]
-- [tools] perf tools: Load eBPF object into kernel (Jiri Olsa) [1641373]
-- [tools] perf tools: Include errno.h where needed (Jiri Olsa) [1641373]
-- [tools] perf tools: Create probe points for BPF programs (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable passing bpf object file to --event (Jiri Olsa) [1641373]
-- [tools] perf ebpf: Add the libbpf glue (Jiri Olsa) [1641373]
-- [tools] bpf tools: New API to get name from a BPF object (Jiri Olsa) [1641373]
-- [tools] perf tests: Add LLVM test for eBPF on-the-fly compiling (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel: Fix linear IP of PEBS real_ip on Haswell and later CPUs (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel/uncore: Fix multi-domain PCI CHA enumeration bug on Skylake servers (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel/uncore: Add missing filter constraint for SKX CHA event (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel: Don't accidentally clear high bits in bdw_limit_period() (Jiri Olsa) [1641373]
-- [kernel] perf/core: Fix ctx_event_type in ctx_resched() (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel/uncore: Fix Skylake UPI event format (Jiri Olsa) [1641373]
-- [x86] events/intel/ds: Add PERF_SAMPLE_PERIOD into PEBS_FREERUNNING_FLAGS (Jiri Olsa) [1641373]
-- [kernel] perf: Export perf_event_update_userpage (Jiri Olsa) [1641373]
-- [tools] perf: Update PERF_RECORD_MISC_* comment for perf_event_header::misc bit 13 (Jiri Olsa) [1641373]
-- [tools] perf: Add sample_id to PERF_RECORD_ITRACE_START event comment (Jiri Olsa) [1641373]
-- [kernel] perf: Allocate context task_ctx_data for child event (Jiri Olsa) [1641373]
-
-* Fri Jan 04 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-987.el7]
-- [kernel] bpf: 32-bit RSH verification must truncate input before the ALU op (Jiri Olsa) [1641388] {CVE-2018-18445}
-- [tools] s390: Disable stress tests (Jiri Olsa) [1657679]
-- [tools] bpf selftest/s390x: Disable test that crosses prog size limit (Jiri Olsa) [1657679]
-- [tools] bpf selftest/s390x: disable bpf-to-bpf call tests (Jiri Olsa) [1657679]
-- [s390] wire up bpf syscall (Jiri Olsa) [1657679]
-- [s390] bpf, s390: fix potential memleak when later bpf_jit_prog fails (Jiri Olsa) [1657679]
-- [s390] bpf, s390x: remove obsolete exception handling from div/mod (Jiri Olsa) [1657679]
-- [s390] bpf: fix net.core.bpf_jit_enable race (Jiri Olsa) [1657679]
-- [s390] bpf, s390x: do not reload skb pointers in non-skb context (Jiri Olsa) [1657679]
-- [s390] bpf: take advantage of stack_depth tracking (Jiri Olsa) [1657679]
-- [s390] bpf, s390x: implement jiting of BPF_J{LT, LE, SLT, SLE} (Jiri Olsa) [1657679]
-- [s390] bpf, s390: fix jit branch offset related to ldimm64 (Jiri Olsa) [1657679]
-- [s390] bpf: Add jited_len to struct bpf_prog (Jiri Olsa) [1657679]
-- [s390] bpf: free up BPF_JMP | BPF_CALL | BPF_X opcode (Jiri Olsa) [1657679]
-- [s390] bpf: make jited programs visible in traces (Jiri Olsa) [1657679]
-- [s390] bpf: remove redundant check for non-null image (Jiri Olsa) [1657679]
-- [kernel] bpf: fix unlocking of jited image when module ronx not set (Jiri Olsa) [1657679]
-- [s390] bpf: fix recache skb->data/hlen for skb_vlan_push/pop (Jiri Olsa) [1657679]
-- [s390] bpf: reduce maximum program size to 64 KB (Jiri Olsa) [1657679]
-- [s390] bpf, s390: add support for constant blinding (Jiri Olsa) [1657679]
-- [s390] bpf: Enable build of trace_bpf* objects (Jiri Olsa) [1657679]
-- [s390] bpf: prepare bpf_int_jit_compile/bpf_prog_select_runtime apis (Jiri Olsa) [1657679]
-- [s390] bpf: remove stubs for cBPF from arch code (Jiri Olsa) [1657679]
-- [s390] bpf: Additional changes to compile trace_bpf_jit* (Jiri Olsa) [1657679]
-- [s390] bpf: Add v4.5 trace_bpf_jit.h (Jiri Olsa) [1657679]
-- [s390] bpf: Add v4.5 trace_bpf_jit_comp.c (Jiri Olsa) [1657679]
-- [s390] bpf: Add v4.5 trace_bpf_jit.S (Jiri Olsa) [1657679]
-- [s390] claim efficient unaligned access (Jiri Olsa) [1657679]
-- [kernel] printk/cache: mark printk_once test variable __read_mostly (Jiri Olsa) [1657679]
-- [scsi] lpfc: do not set queue->page_count to 0 if pc_sli4_params.wqpcnt is invalid (Ewan Milne) [1657981]
-
-* Thu Jan 03 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-986.el7]
-- [scsi] qla2xxx: Update driver version to 10.00.00.12.07.7-k (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix for FC-NVMe discovery for NPIV port (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix NPIV handling for FC-NVMe (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Enable FC-NVME on NPIV ports (Himanshu Madhani) [1628301]
-- [scsi] revert "scsi: qla2xxx: Fix NVMe Target discovery" (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Timeouts occur on surprise removal of QLogic adapter (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Initialize port speed to avoid setting lower speed (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix a typo in MODULE_PARM_DESC (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove two arguments from qlafx00_error_entry() (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Make sure that qlafx00_ioctl_iosb_entry() initializes 'res' (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove a set-but-not-used variable (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Make qla2x00_sysfs_write_nvram() easier to analyze (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Declare local functions 'static' (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Improve several kernel-doc headers (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Modify fall-through annotations (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: fully convert to the generic DMA API (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Simplify conditional check (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove unnecessary self assignment (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Return switch command on a timeout (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move log messages before issuing command to firmware (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix for double free of SRB structure (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix recursive mailbox timeout (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix driver hang when FC-NVMe LUNs are configured (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix re-using LoopID when handle is in use (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix duplicate switch database entries (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix NVMe Target discovery (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix NVMe session hang on unload (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: don't allow negative thresholds (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix comment in MODULE_PARM_DESC in qla2xxx (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove set but not used variable 'ptr_dma' (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: fix typo "CT-PASSTRHU" -> "CT-PASSTHRU" (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix double increment of switch scan retry count (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix duplicate switch's Nport ID entries (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove stale debug trace message from tcm_qla2xxx (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix premature command free (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Reject bsg request if chip is down (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: shutdown chip if reset fail (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix stuck session in PLOGI state (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix early srb free on abort (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add mode control for each physical port (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix race condition for resource cleanup (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix dropped srb resource (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix port speed display on chip reset (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Check for Register disconnect (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Increase abort timeout value (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Allow FC-NVMe underrun to be handled by transport (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move ABTS code behind qpair (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove stale ADISC_DONE event (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix Remote port registration (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove ASYNC GIDPN switch command (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Reduce holding sess_lock to prevent CPU lock-up (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move {get|rel}_sp to base_qpair struct (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add support for ZIO6 interrupt threshold (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix out of order Termination and ABTS response (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add logic to detect ABTS hang and response completion (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add appropriate debug info for invalid RX_ID (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix deadlock between ATIO and HW lock (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Serialize mailbox request (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Terminate Plogi/PRLI if WWN is 0 (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Defer chip reset until target mode is enabled (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix iIDMA error (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove all rports if fabric scan retry fails (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Force fw cleanup on ADISC error (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Turn off IOCB timeout timer on IOCB completion (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Decrement login retry count for only plogi (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move rport registration out of internal work_list (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove redundant check for fcport deletion (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Update rscn_rcvd field to more meaningful scan_needed (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Use correct qpair for ABTS/CMD (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix incorrect port speed being set for FC adapters (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix process response queue for ISP26XX and above (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Migrate NVME N2N handling into state machine (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Save frame payload size from ICB (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix stalled relogin (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix race between switch cmd completion and timeout (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix Management Server NPort handle reservation logic (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Flush mailbox commands on chip reset (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix unintended Logout (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix session state stuck in Get Port DB (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix redundant fc_rport registration (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Silent erroneous message (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Prevent sysfs access when chip is down (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add longer window for chip reset (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix login retry count (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix N2N link re-connect (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Cleanup for N2N code (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: remove irq save in qla2x00_poll() (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: remove the unused tcm_qla2xxx_cmd_wq (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix TMF and Multi-Queue config (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Convert QLA_TGT_ABTS to TARGET_SCF_LOOKUP_LUN_FROM_TAG (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Prevent relogin loop by removing stale code (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Use predefined get_datalen_for_atio() inline function (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix Inquiry command being dropped in Target mode (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move GPSC and GFPNID out of session management (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Reduce redundant ADISC command for RSCNs (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Delete session for nport id change (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix Rport and session state getting out of sync (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix sending ADISC command for login (Himanshu Madhani) [1628301]
-- [scsi] megaraid_sas_fusion: Mark expected switch fall-through (Tomas Henzl) [1642946]
-- [scsi] megaraid: megaraid_sas_base: Mark expected switch fall-through (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Add support for MegaRAID Aero controllers (Tomas Henzl) [1649386]
-- [scsi] megaraid_sas: Update driver version (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: modify max supported lds related print (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: remove unused macro (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: increase timeout for IOC INIT to 180seconds (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Remove double endian conversion (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Re-use max_mfi_cmds to calculate queue sizes (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Rename scratch_pad registers (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Remove spin lock for dpc operation (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: optimize raid context access in IO path (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fail init if heartbeat timer fails (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: For SRIOV, do not set STOP_ADP bit (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fix combined reply queue mode detection (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fix module parameter description (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fix goto labels in error handling (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: enable intx only if msix request fails (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Update copyright information (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Add check for reset adapter bit (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fix msleep granularity (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Add support for FW snap dump (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Add watchdog thread to detect Firmware fault (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: switch to generic DMA API (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: fix a missing-check bug (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Support FW provided TM timeout values (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Return immediately from wait_for_adapter_operational after kill adapter (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Update controller info during resume (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Do not do Kill adapter if GET_CTRL_INFO times out (Tomas Henzl) [1642946]
-- [scsi] treewide: kzalloc() -> kcalloc() (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: fix spelling mistake: "disbale" -> "disable" (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Do not log an error if FW successfully initializes (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: whitespace only (Tomas Henzl) [1642946]
-
-* Fri Dec 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-985.el7]
-- [nvme] nvme-pci: move nvme_kill_queues to nvme_remove_dead_ctrl (David Milburn) [1632440]
-
-* Wed Dec 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-984.el7]
-- [gpu] drm/dp_mst: Check if primary mstb is null (Lyude Paul) [1624580]
-- [input] psmouse: fix button reporting for basic protocols (Benjamin Tissoires) [1658669]
-- [input] psmouse: add support for 2nd wheel on A4Tech Dual-Scroll wheel mice (Benjamin Tissoires) [1658669]
-- [kernel] hrtimer: Allow hrtimer::function() to free the timer (Waiman Long) [1616251]
-- [kernel] hrtimer: Fix hrtimer_is_queued() hole (Waiman Long) [1616251]
-- [kernel] hrtimer: Remove HRTIMER_STATE_MIGRATE (Waiman Long) [1616251]
-- [kernel] hrtimer: Keep pointer to first timer and simplify __remove_hrtimer() (Waiman Long) [1616251]
-- [kernel] hrtimer: Use cpu_base->active_base for hotpath iterators (Waiman Long) [1616251]
-- [kernel] hrtimer: Update active_bases before calling hrtimer_force_reprogram() (Waiman Long) [1616251]
-- [kernel] seqlock: Better document raw_write_seqcount_latch() (Waiman Long) [1616251]
-- [kernel] seqcount: Introduce raw_write_seqcount_barrier() (Waiman Long) [1616251]
-- [kernel] seqcount: Rename write_seqcount_barrier() (Waiman Long) [1616251]
-- [kernel] lockdep: Revert lockdep check in raw_seqcount_begin() (Waiman Long) [1616251]
-- [kernel] seqlock: Use raw_ prefix instead of _no_lockdep (Waiman Long) [1616251]
-- [net] seqcount: Add lockdep functionality to seqcount/seqlock structures (Waiman Long) [1616251]
-- [x86] spec_ctrl: Don't report the use of retpoline on Skylake as vulnerable (Waiman Long) [1653428]
-
-* Wed Dec 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-983.el7]
-- [net] page_pool: Fix inconsistent lock state warning (Ivan Vecera) [1657001]
-- [net] xdp: allow page_pool as an allocator type in xdp_return_frame (Ivan Vecera) [1657001]
-- [net] page_pool: refurbish version of page_pool code (Ivan Vecera) [1657001]
-- [net] af_iucv: fix skb handling on HiperTransport xmit error (Hendrik Brueckner) [1644390]
-- [net] af_iucv: drop inbound packets with invalid flags (Hendrik Brueckner) [1644390]
-- [net] sched: cls_flower: Use correct inline function for assignment of vlan tpid (Ivan Vecera) [1653394]
-- [net] sched: flower: Fix null pointer dereference when run tc vlan command (Ivan Vecera) [1653394]
-- [net] sched: flower: Add supprt for matching on QinQ vlan headers (Ivan Vecera) [1653394]
-- [net] sched: flower: Dump the ethertype encapsulated in vlan (Ivan Vecera) [1653394]
-- [net] flow_dissector: Add support for QinQ dissection (Ivan Vecera) [1653394]
-- [net] sched: flower: Add support for matching on vlan ethertype (Ivan Vecera) [1653394]
-- [net] flow_dissector: Save vlan ethertype from headers (Ivan Vecera) [1653394]
-- [net] flow_dissector: Add limit for number of headers to dissect (Ivan Vecera) [1653394]
-- [net] flow_dissector: Cleanup control flow (Ivan Vecera) [1653394]
-- [net] do not abort bulk send on BQL status (Ivan Vecera) [1653881]
-- [net] bql: add __netdev_tx_sent_queue() (Ivan Vecera) [1653881]
-- [net] add documentation for BQL helpers (Ivan Vecera) [1653881]
-- [net] team: no need to do team_notify_peers or team_mcast_rejoin when disabling port (Hangbin Liu) [1651933]
-- [net] netfilter: nf_tables: fix oob access (Florian Westphal) [1628910]
-- [net] xfrm: policy: init locks early (Herbert Xu) [1641866]
-- [net] vlan: add support for tunnel offload (Davide Caratti) [1626213]
-- [net] vlan: Keep NETIF_F_HW_CSUM similar to other software devices (Davide Caratti) [1626213]
-- [net] core: make function ___gnet_stats_copy_basic() static (Eelco Chaudron) [1636891]
-- [net] sched: Add hardware specific counters to TC actions (Eelco Chaudron) [1636891]
-- [net] core: Add new basic hardware counter (Eelco Chaudron) [1636891]
-- [fs] sunrpc: safely reallow resvport min/max inversion (Steve Dickson) [1622167]
-- [fs] sunrpc: Prevent resvport min/max inversion via sysfs and module parameter (Steve Dickson) [1622167]
-- [fs] sunrpc: Prevent resvport min/max inversion via sysctl (Steve Dickson) [1622167]
-- [fs] sunrpc: Fix reserved port range calculation (Steve Dickson) [1622167]
-- [fs] fuse: don't need GETATTR after every READ (Miklos Szeredi) [1648781]
-- [fs] fuse: don't invalidate attrs when not using atime (Miklos Szeredi) [1648781]
-- [fs] Don't log expected error on DFS referral request (Leif Sahlberg) [1594377]
-- [fs] sunrpc: correct the computation for page_ptr when truncating (Frank Sorenson) [1640370]
-- [fs] revert "[fs] sunrpc: Ensure we always close the socket after a connection shuts down" (Dave Wysochanski) [1657399]
-
-* Tue Dec 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-982.el7]
-- [infiniband] rdma/uverbs: Expand primary and alt AV port checks (Kamal Heib) [1655897]
-- [infiniband] rdma/uverbs: Don't fail in creation of multiple flows (Kamal Heib) [1655897]
-- [infiniband] rdma/uverbs: Fix slab-out-of-bounds in ib_uverbs_ex_create_flow (Kamal Heib) [1655897]
-- [infiniband] rdma/uverbs: Protect from attempts to create flows on unsupported QP (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: Fix missing completion for mem_reg work requests (Kamal Heib) [1655897]
-- [infiniband] rdma/core: Save kernel caller name when creating CQ using ib_create_cq() (Kamal Heib) [1655897]
-- [rdma] Convert infiniband uverbs to struct_size (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Fix ordering of ucontext check in ib_uverbs_write (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: avoid double kfree skb (Kamal Heib) [1655897]
-- [net] svcrdma: Fix incorrect return value/type in svc_rdma_post_recvs (Kamal Heib) [1655897]
-- [rdma] restrack: Change SPDX tag to properly reflect license (Kamal Heib) [1655897]
-- [infiniband] fix a possible use-after-free bug (Kamal Heib) [1615040 1655897]
-- [infiniband] ib/isert: fix T10-pi check mask setting (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Add support for flow counters (Kamal Heib) [1655897]
-- [rdma] ib/core: Add support for flow counters (Kamal Heib) [1655897]
-- [infiniband] ib/core: Support passing uhw for create_flow (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Add read counters support (Kamal Heib) [1655897]
-- [rdma] ib/core: Introduce counters read verb (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Add create/destroy counters support (Kamal Heib) [1655897]
-- [rdma] ib/core: Introduce counters object and its create/destroy (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Add an ib_uobject getter to ioctl() infrastructure (Kamal Heib) [1655897]
-- [net] xprtrdma: Remove transfertypes array (Kamal Heib) [1655897]
-- [net] xprtrdma: Add trace_xprtrdma_dma_map(mr) (Kamal Heib) [1655897]
-- [net] xprtrdma: Wait on empty sendctx queue (Kamal Heib) [1655897]
-- [net] xprtrdma: Move common wait_for_buffer_space call to parent function (Kamal Heib) [1655897]
-- [net] xprtrdma: Return -ENOBUFS when no pages are available (Kamal Heib) [1655897]
-- [infiniband] rdma/mad: Convert BUG_ONs to error flows (Kamal Heib) [1655897]
-- [infiniband] rdma/mad: Delete inaccessible BUG_ON (Kamal Heib) [1655897]
-- [infiniband] rdma/cma: Ignore unknown event (Kamal Heib) [1655897]
-- [infiniband] rdma/cm: Abort loop in case of CM dequeue (Kamal Heib) [1655897]
-- [infiniband] rdma/uverbs: Hoist the common process of disassociate_ucontext into ib core (Kamal Heib) [1655897]
-- [infiniband] rdma/core: Remove indirection through ib_cache_setup() (Kamal Heib) [1655897]
-- [rdma] ib/core: Make testing MR flags for writability a static inline function (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: avoid unnecessary export (Kamal Heib) [1655897]
-- [infiniband] ib/core: Introduce and use rdma_gid_table() (Kamal Heib) [1655897]
-- [infiniband] ib/core: Reduce the places that use zgid (Kamal Heib) [1655897]
-- [infiniband] rdma/ucm: Mark UCM interface as BROKEN (Kamal Heib) [1655897]
-- [infiniband] ib/core: Remove duplicate declaration of gid_cache_wq (Kamal Heib) [1655897]
-- [infiniband] rdma/ipoib: drop skb on path record lookup failure (Kamal Heib) [1655897]
-- [infiniband] rdma/cma: add rdma_iw_cm_id() and rdma_res_to_id() helpers (Kamal Heib) [1655897]
-- [infiniband] rdma/ipoib: Update paths on CLIENT_REREG/SM_CHANGE events (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: avoid calling WARN_ON_ONCE twice (Kamal Heib) [1655897]
-- [infiniband] ib/ipoib: replace local_irq_disable() with proper locking (Kamal Heib) [1655897]
-- [rdma] ib/uverbs: Introduce a MPLS steering match filter (Kamal Heib) [1655897]
-- [uapi] ib/uverbs: Expose MPLS flow spec to the user-kernel ABI header (Kamal Heib) [1655897]
-- [rdma] ib/uverbs: Introduce a GRE steering match filter (Kamal Heib) [1655897]
-- [uapi] ib/uverbs: Expose GRE flow spec to the user-kernel ABI header (Kamal Heib) [1655897]
-- [infiniband] ib/cm: Store and restore ah_attr during CM message processing (Kamal Heib) [1655897]
-- [infiniband] ib/cm: Store and restore ah_attr during LAP msg processing (Kamal Heib) [1655897]
-- [infiniband] ib/cm: Avoid AV ah_attr overwriting during LAP message handling (Kamal Heib) [1655897]
-- [infiniband] ib/core: Remove redundant return (Kamal Heib) [1655897]
-- [infiniband] rdma/nldev: remove mr iova attribute (Kamal Heib) [1596624 1655897]
-- [uapi] rdma/uapi: Fix uapi breakage (Kamal Heib) [1655897]
-- [infiniband] ib: Fix RDMA_RXE and INFINIBAND_RDMAVT dependencies for DMA_VIRT_OPS (Kamal Heib) [1655897]
-- [net] svcrdma: Persistently allocate and DMA-map Send buffers (Kamal Heib) [1655897]
-- [net] svcrdma: Simplify svc_rdma_send() (Kamal Heib) [1655897]
-- [net] svcrdma: Remove post_send_wr (Kamal Heib) [1655897]
-- [net] svcrdma: Don't overrun the SGE array in svc_rdma_send_ctxt (Kamal Heib) [1655897]
-- [net] svcrdma: Introduce svc_rdma_send_ctxt (Kamal Heib) [1655897]
-- [net] svcrdma: Clean up Send SGE accounting (Kamal Heib) [1655897]
-- [net] svcrdma: Refactor svc_rdma_dma_map_buf (Kamal Heib) [1655897]
-- [net] svcrdma: Allocate recv_ctxt's on CPU handling Receives (Kamal Heib) [1655897]
-- [net] svcrdma: Persistently allocate and DMA-map Receive buffers (Kamal Heib) [1655897]
-- [net] svcrdma: Preserve Receive buffer until svc_rdma_sendto (Kamal Heib) [1655897]
-- [net] svcrdma: Simplify svc_rdma_recv_ctxt_put (Kamal Heib) [1655897]
-- [net] svcrdma: Remove sc_rq_depth (Kamal Heib) [1655897]
-- [net] svcrdma: Introduce svc_rdma_recv_ctxt (Kamal Heib) [1655897]
-- [trace] svcrdma: Trace key RDMA API events (Kamal Heib) [1655897]
-- [trace] svcrdma: Trace key RPC/RDMA protocol events (Kamal Heib) [1655897]
-- [net] xprtrdma: Prepare RPC/RDMA includes for server-side trace points (Kamal Heib) [1655897]
-- [net] svcrdma: Use passed-in net namespace when creating RDMA listener (Kamal Heib) [1655897]
-- [net] svcrdma: Add proper SPDX tags for NetApp-contributed source (Kamal Heib) [1655897]
-- [infiniband] ib/core: Reuse gid_table_release_one() in table allocation failure (Kamal Heib) [1655897]
-- [infiniband] ib/core: Make gid_table_reserve_default() return void (Kamal Heib) [1655897]
-- [net] xprtrdma: Make rpcrdma_sendctx_put_locked() a static function (Kamal Heib) [1655897]
-- [net] xprtrdma: Remove rpcrdma_buffer_get_rep_locked() (Kamal Heib) [1655897]
-- [net] xprtrdma: Remove rpcrdma_buffer_get_req_locked() (Kamal Heib) [1655897]
-- [net] xprtrdma: Remove rpcrdma_ep_{post_recv, post_extra_recv} (Kamal Heib) [1655897]
-- [net] xprtrdma: Move Receive posting to Receive handler (Kamal Heib) [1655897]
-- [trace] xprtrdma: Clean up Receive trace points (Kamal Heib) [1655897]
-- [net] xprtrdma: Make rpc_rqst part of rpcrdma_req (Kamal Heib) [1655897]
-- [net] xprtrdma: Introduce ->alloc_slot call-out for xprtrdma (Kamal Heib) [1655897]
-- [net] sunrpc: Add a ->free_slot transport callout (Kamal Heib) [1655897]
-- [net] xprtrdma: Fix max_send_wr computation (Kamal Heib) [1655897]
-- [net] xprtrdma: Create transport's CM ID in the correct network namespace (Kamal Heib) [1655897]
-- [net] xprtrdma: Try to fail quickly if proto=rdma (Kamal Heib) [1655897]
-- [net] xprtrdma: Add proper SPDX tags for NetApp-contributed source (Kamal Heib) [1655897]
-- [infiniband] rdma/nldev: helper functions to add driver attributes (Kamal Heib) [1596624 1655897]
-- [infiniband] rdma/nldev: add driver-specific resource tracking (Kamal Heib) [1596624 1655897]
-- [infiniband] rdma/nldev: Add explicit pad attribute (Kamal Heib) [1596624 1655897]
-- [infiniband] ib/cxgb4: use skb_put_zero()/__skb_put_zero (Kamal Heib) [1655897]
-- [infiniband] ib/core: Use CONFIG_SECURITY_INFINIBAND to compile out security code (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: remove unused function variable (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: change rxe_set_mtu function type to void (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: Change rxe_rcv to return void (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: replace refcount_inc with skb_get (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: optimize the function duplicate_request (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: make rxe_release_udp_tunnel static (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: avoid export symbols (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: make the variable static (Kamal Heib) [1655897]
-- [infiniband] rdma/rdma_cm: Delete rdma_addr_client (Kamal Heib) [1655897]
-- [infiniband] rdma/rdma_cm: Make rdma_addr_cancel into a fence (Kamal Heib) [1655897]
-- [infiniband] rdma/rdma_cm: Remove process_req and timer sorting (Kamal Heib) [1655897]
-- [net] sunrpc: Initialize rpc_rqst outside of xprt->reserve_lock (Kamal Heib) [1655897]
-- [net] sunrpc: Make num_reqs a non-atomic integer (Kamal Heib) [1655897]
-- [net] sunrpc: Make slot allocation more reliable (Kamal Heib) [1655897]
-- [net] treewide: Use array_size() in vzalloc_node() (Kamal Heib) [1655897]
-- [infiniband] treewide: Use array_size() in vzalloc() (Kamal Heib) [1655897]
-- [infiniband] treewide: kzalloc_node() -> kcalloc_node() (Kamal Heib) [1655897]
-- [infiniband] treewide: kzalloc() -> kcalloc() (Kamal Heib) [1655897]
-- [infiniband] treewide: kmalloc() -> kmalloc_array() (Kamal Heib) [1655897]
-- [infiniband] treewide: Use struct_size() for kmalloc()-family (Kamal Heib) [1655897]
-
-* Tue Dec 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-981.el7]
-- [pci] Add "PCIe" to pcie_print_link_status() messages (Eelco Chaudron) [1654186]
-- [pci] Check for PCIe Link downtraining (Eelco Chaudron) [1654186]
-- [tty] wipe buffer if not echoing data (Artem Savkov) [1644050]
-- [tty] wipe buffer (Artem Savkov) [1644050]
-- [tty] add rwsem to close race between copy_from_read_buf calls and reset_buffer_flags (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Fix stall at n_tty_receive_char_special() (Christoph von Recklinghausen) [1649343]
-- [tty] audit: Fix audit source (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Fix auditing support for cannonical mode (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Fix 4096-byte canonical reads (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Remove read_cnt (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Don't wrap input buffer indices at buffer size (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Get read_cnt through accessor (Christoph von Recklinghausen) [1649343]
-- [tty] Deprecate ldisc .chars_in_buffer() method (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Split n_tty_chars_in_buffer() for reader-only interface (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Line copy to user buffer in canonical mode (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Factor canonical mode copy from n_tty_read() (Christoph von Recklinghausen) [1649343]
-- [tty] Make ldisc input flow control concurrency-friendly (Christoph von Recklinghausen) [1649343]
-- [tty] Simplify tty buffer/ldisc interface with helper function (Christoph von Recklinghausen) [1649343]
-- [pinctrl] sunrisepoint: Align GPIO number space with Windows (Steve Best) [1653546]
-- [kernel] workqueue: remove keventd_up() (Artem Savkov) [1637827]
-- [lib] debugobj, workqueue: remove keventd_up() usage (Artem Savkov) [1637827]
-- [mm] slab, workqueue: remove keventd_up() usage (Artem Savkov) [1637827]
-- [tty] workqueue: remove keventd_up() usage (Artem Savkov) [1637827]
-- [x86] mce, workqueue: remove keventd_up() usage (Artem Savkov) [1637827]
-- [kernel] workqueue: make workqueue available early during boot (Artem Savkov) [1637827]
-- [kernel] sched, nohz: Exclude isolated cores from load balancing (Phil Auld) [1653437]
-- [kernel] sched: Factor out the on_null_domain() checks in trigger_load_balance() (Phil Auld) [1653437]
-- [kernel] sched: Pass 'struct rq' to on_null_domain() (Phil Auld) [1653437]
-- [kernel] nohz: Fix missing tick reprogram when interrupting an inline softirq (Phil Auld) [1618798]
-- [x86] cpufeatures: Enumerate cldemote instruction (Steve Best) [1482765]
-- [x86] Mark Intel Apollo Lake supported (David Arcari) [1571340]
-
-* Tue Dec 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-980.el7]
-- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Corinna Vinschen) [1654839]
-- [netdrv] igbvf: Replace spin_is_locked() with lockdep (Corinna Vinschen) [1654839]
-- [netdrv] intel-ethernet: use correct module license (Corinna Vinschen) [1654839]
-- [netdrv] igbvf: netdev: Mark expected switch fall-through (Corinna Vinschen) [1654839]
-- [net] geneve, vxlan: Don't set exceptions if skb->len < mtu (Xin Long) [1639235]
-- [net] geneve, vxlan: Don't check skb_dst() twice (Xin Long) [1639235]
-- [net] geneve: cleanup hard coded value for Ethernet header length (Xin Long) [1639235]
-- [net] don't call update_pmtu unconditionally (Xin Long) [1639235]
-- [net] geneve: update skb dst pmtu on tx path (Xin Long) [1639235]
-- [net] vxlan: update skb dst pmtu on tx path (Xin Long) [1639235]
-- [net] unix: properly re-increment inflight counter of GC discarded candidates (Xin Long) [1639008]
-- [net] ipv4: don't let PMTU updates increase route MTU (Sabrina Dubroca) [1601814]
-- [net] ipv4: rate limit updating of next hop exceptions with same pmtu (Sabrina Dubroca) [1601814]
-- [net] ipv4: update fnhe_pmtu when first hop's MTU changes (Sabrina Dubroca) [1601814]
-- [net] dcb: Add dcbnl buffer attribute (Ivan Vecera) [1647161]
-- [net] ethtool: Add support for configuring PFC stall prevention in ethtool (Ivan Vecera) [1647488]
-- [net] igmp: fix incorrect unsolicit report count after link down and up (Hangbin Liu) [1623359]
-- [net] igmp: fix incorrect unsolicit report count when join group (Hangbin Liu) [1623359]
-- [net] igmp: make function __ip_mc_inc_group() static (Hangbin Liu) [1623359]
-- [net] igmp: Reduce Unsolicited report interval to 1s when using IGMPv3 (Hangbin Liu) [1623359]
-- [net] tcp: do not restart timewait timer on rst reception (Florian Westphal) [1623889]
-- [net] pppoe: take ->needed_headroom of lower device into account on xmit (Florian Westphal) [1643335]
-- [net] sock_diag: Fix spectre v1 gadget in __sock_diag_cmd() (Paolo Abeni) [1639772]
-
-* Mon Dec 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-979.el7]
-- [kernel] mm: clear __GFP_FS when PF_MEMALLOC_NOIO is set (Rafael Aquini) [1657714]
-- [mm] mempolicy: clean up __GFP_THISNODE confusion in policy_zonelist (Rafael Aquini) [1613081]
-- [mm] Use overflow helpers in kmalloc_array*() (Waiman Long) [1651847]
-- [mm] faster kmalloc_array(), kcalloc() (Waiman Long) [1651847]
-- [mfd] intel-lpss: Add Ice Lake PCI IDs (Steve Best) [1483480]
-- [mmc] sdhci-pci: Add support for Intel ICP (Gopal Tiwari) [1483495]
-- [ata] libata: whitelist all SAMSUNG MZ7KM* solid-state disks (David Milburn) [1652215]
-- [scsi] libiscsi: Allow sd_shutdown on bad transport (Chris Leech) [1630979]
-- [scsi] mpt3sas: Display message on Configurable secure HBA (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Add support for Aero controllers (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Bump driver version to 27.100.00.00 (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Fix driver modifying persistent data in Manufacturing page11 (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Don't modify EEDPTagMode field setting on SAS3.5 HBA devices (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Fix Sync cache command failure during driver unload (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Call sas_remove_host before removing the target devices (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Refactor mpt3sas_wait_for_ioc function (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Separate out mpt3sas_wait_for_ioc (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Added new #define variable IOC_OPERATIONAL_WAIT_COUNT (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Update MPI headers to support Aero controllers (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: switch to generic DMA API (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Remove unnecessary parentheses and simplify null checks (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Use dma_pool_zalloc (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Remove unused macro MPT3SAS_FMT (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: remove remaining use of MPT3SAS_FMT (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Convert logging uses with MPT3SAS_FMT without logging levels (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Remove KERN_WARNING from panic uses (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Convert logging uses with MPT3SAS_FMT and reply_q_name to s: (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Convert mlsleading uses of pr_<level> with MPT3SAS_FMT (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Convert uses of pr_<level> with MPT3SAS_FMT to ioc_<level> (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Add ioc_<level> logging macros (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Improve kernel-doc headers (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Split _base_reset_handler(), mpt3sas_scsih_reset_handler() and mpt3sas_ctl_reset_handler() (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Fix a race condition in mpt3sas_base_hard_reset_handler() (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Introduce struct mpt3sas_nvme_cmd (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Annotate switch/case fall-through (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Remove set-but-not-used variables (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Fix indentation (Tomas Henzl) [1642370]
-- [scsi] scripts/spelling.txt: add "overwritting" pattern and fix typo instances (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Update driver version "26.100.00.00" (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: As per MPI-spec, use combined reply queue for SAS3.5 controllers when HBA supports more than 16 MSI-x vectors (Tomas Henzl) [1649288]
-- [scsi] mpt3sas: Fix, False timeout prints for ioctl and other internal commands during controller reset (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Don't access the structure after decrementing it's instance reference count (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Incorrect command status was set/marked as not used (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Don't abort I/Os issued to NVMe drives while processing Async Broadcast primitive event (Tomas Henzl) [1642370]
-
-* Fri Dec 14 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-978.el7]
-- [netdrv] aquantia: fix rx checksum offload bits (Igor Russkikh) [1648333]
-- [netdrv] aquantia: allow rx checksum offload configuration (Igor Russkikh) [1648333]
-- [netdrv] aquantia: invalid checksumm offload implementation (Igor Russkikh) [1648333]
-- [netdrv] aquantia: fixed enable unicast on 32 macvlan (Igor Russkikh) [1648333]
-- [netdrv] aquantia: fix potential IOMMU fault after driver unbind (Igor Russkikh) [1648333]
-- [netdrv] aquantia: synchronized flow control between mac/phy (Igor Russkikh) [1648333]
-- [netdrv] aquantia: remove some redundant variable initializations (Igor Russkikh) [1648333]
-- [netdrv] aquantia: fix hw_atl_utils_fw_upload_dwords (Igor Russkikh) [1648333]
-- [netdrv] aquantia: Make some functions static (Igor Russkikh) [1648333]
-- [netdrv] aquantia: Implement rx/tx flow control ethtools callback (Igor Russkikh) [1648333]
-- [netdrv] aquantia: Improve adapter init/deinit logic (Igor Russkikh) [1648333]
-- [netdrv] ena: update driver version from 2.0.1 to 2.0.2 (John Linville) [1633418]
-- [netdrv] ena: fix crash during ena_remove() (John Linville) [1633418]
-- [netdrv] ena: fix crash during failed resume from hibernation (John Linville) [1633418]
-- [netdrv] ena: enable Low Latency Queues (John Linville) [1633418]
-- [netdrv] ena: Fix Kconfig dependency on X86 (John Linville) [1633418]
-- [netdrv] ena: fix indentations in ena_defs for better readability (John Linville) [1633418]
-- [netdrv] ena: update driver version to 2.0.1 (John Linville) [1633418]
-- [netdrv] ena: remove redundant parameter in ena_com_admin_init() (John Linville) [1633418]
-- [netdrv] ena: change rx copybreak default to reduce kernel memory pressure (John Linville) [1633418]
-- [netdrv] ena: limit refill Rx threshold to 256 to avoid latency issues (John Linville) [1633418]
-- [netdrv] ena: explicit casting and initialization, and clearer error handling (John Linville) [1633418]
-- [netdrv] ena: use CSUM_CHECKED device indication to report skb's checksum status (John Linville) [1633418]
-- [netdrv] ena: add functions for handling Low Latency Queues in ena_netdev (John Linville) [1633418]
-- [netdrv] ena: add functions for handling Low Latency Queues in ena_com (John Linville) [1633418]
-- [netdrv] ena: introduce Low Latency Queues data structures according to ENA spec (John Linville) [1633418]
-- [netdrv] ena: complete host info to match latest ENA spec (John Linville) [1633418]
-- [netdrv] ena: minor performance improvement (John Linville) [1633418]
-- [netdrv] ena: fix auto casting to boolean (John Linville) [1633418]
-- [netdrv] ena: fix NULL dereference due to untimely napi initialization (John Linville) [1633418]
-- [netdrv] ena: fix rare bug when failed restart/resume is followed by driver removal (John Linville) [1633418]
-- [netdrv] ena: fix warning in rmmod caused by double iounmap (John Linville) [1633418]
-- [netdrv] ena: remove ndo_poll_controller (John Linville) [1633418]
-- [netdrv] ena: fix incorrect usage of memory barriers (John Linville) [1633418]
-- [netdrv] ena: fix missing calls to READ_ONCE (John Linville) [1633418]
-- [netdrv] ena: fix missing lock during device destruction (John Linville) [1633418]
-- [netdrv] ena: fix potential double ena_destroy_device() (John Linville) [1633418]
-- [netdrv] ena: fix device destruction to gracefully free resources (John Linville) [1633418]
-- [netdrv] ena: fix driver when PAGE_SIZE == 64kB (John Linville) [1633418]
-- [netdrv] ena: fix surprise unplug NULL dereference kernel crash (John Linville) [1633418]
-- [netdrv] ena: Fix use of uninitialized DMA address bits field (John Linville) [1633418]
-- [netdrv] ena: Eliminate duplicate barriers on weakly-ordered archs (John Linville) [1633418]
-- [thunderbolt] Add Intel as copyright holder (Jarod Wilson) [1588927]
-- [thunderbolt] Convert rest of the driver files to use SPDX identifier (Jarod Wilson) [1588927]
-- [thunderbolt] Print connected devices (Jarod Wilson) [1588927]
-- [thunderbolt] Make the driver less verbose (Jarod Wilson) [1588927]
-- [thunderbolt] Remove a meaningless NULL pointer check before dma_pool_destroy (Jarod Wilson) [1588927]
-- [thunderbolt] Initialize after IOMMUs (Jarod Wilson) [1588927]
-- [thunderbolt] Do not handle ICM events after domain is stopped (Jarod Wilson) [1588927]
-- [thunderbolt] Add support for runtime PM (Jarod Wilson) [1588927]
-- [thunderbolt] Remove redundant variable 'approved' (Jarod Wilson) [1588927]
-- [thunderbolt] Use correct ICM commands in system suspend (Jarod Wilson) [1588927]
-- [thunderbolt] No need to take tb->lock in domain suspend/complete (Jarod Wilson) [1588927]
-- [thunderbolt] Do not unnecessarily call ICM get route (Jarod Wilson) [1588927]
-- [thunderbolt] Use 64-bit DMA mask if supported by the platform (Jarod Wilson) [1588927]
-- [thunderbolt] Fix small typo in variable name (Jarod Wilson) [1588927]
-
-* Wed Dec 12 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-977.el7]
-- [pinctrl] intel: Add Ice Lake PCH pin controller support (Steve Best) [1483412]
-- [fs] mm: /proc/pid/pagemap: hide swap entries from unprivileged users (Joe Lawrence) [1522595]
-- [fs] mm, pagemap: fix swap offset value for PMD migration entry (Joe Lawrence) [1522595]
-- [tools] pagemap: add mmap-exclusive bit for marking pages mapped only here (Joe Lawrence) [1522595]
-- [fs] pagemap: hide physical addresses from non-privileged users (Joe Lawrence) [1522595]
-- [fs] pagemap: rework hugetlb and thp report (Joe Lawrence) [1522595]
-- [tools] pagemap: switch to the new format and do some cleanup (Joe Lawrence) [1522595]
-- [tools] vm/page-types.c: support KPF_SOFTDIRTY bit (Joe Lawrence) [1522595]
-- [fs] mm: softdirty: unmapped addresses between VMAs are clean (Joe Lawrence) [1522595]
-- [fs] mm: softdirty: addresses before VMAs in PTE holes aren't softdirty (Joe Lawrence) [1522595]
-- [fs] mm: softdirty: respect VM_SOFTDIRTY in PTE holes (Joe Lawrence) [1522595]
-- [fs] pagemap: check permissions and capabilities at open time (Joe Lawrence) [1522595]
-- [fs] pagemap: do not leak physical addresses to non-privileged userspace (Joe Lawrence) [1522595]
-- [pci] shpchp: Separate existence of SHPC and permission to use it (Myron Stowe) [1633873]
-- [pci] shpchp: Manage SHPC unconditionally on non-ACPI systems (Myron Stowe) [1633873]
-- [pci] shpchp: Fix AMD POGO identification (Myron Stowe) [1633873]
-- [s390] qeth: fix length check in SNMP processing (Hendrik Brueckner) [1656015]
-- [s390] qeth: report 25Gbit link speed (Hendrik Brueckner) [1640651]
-- [s390] qeth: use LINK_MODE_* to report the link characteristics (Hendrik Brueckner) [1640651]
-- [s390] qeth: convert to ETHTOOL_GLINKSETTINGS API (Hendrik Brueckner) [1640651]
-- [s390] qeth: clean up qeth_set_ecmd_adv_sup() (Hendrik Brueckner) [1640651]
-- [s390] qeth: sanitize strings in debug messages (Hendrik Brueckner) [1652059]
-- [s390] qeth: remove outdated portname debug msg (Hendrik Brueckner) [1652059]
-- [s390] qeth: Fix potential array overrun in cmd/rc lookup (Hendrik Brueckner) [1652051]
-- [s390] qeth_core_mpc: Use ARRAY_SIZE instead of reimplementing its function (Hendrik Brueckner) [1652051]
-- [s390] kdump: Make elfcorehdr size calculation ABI compliant (Hendrik Brueckner) [1656017]
-- [s390] kdump: Fix elfcorehdr size calculation (Hendrik Brueckner) [1656017]
-
-* Tue Dec 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-976.el7]
-- [fs] userfaultfd: check VM_MAYWRITE was set after verifying the uffd is registered (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [netdrv] phy: add phy_speed_down and phy_speed_up (Ivan Vecera) [1655590]
-- [netdrv] phy: add helper phy_config_aneg (Ivan Vecera) [1655590]
-- [netdrv] phy: fix flag masking in __set_phy_supported (Ivan Vecera) [1655590]
-- [netdrv] phy: allow scanning busses with missing phys (Ivan Vecera) [1655590]
-- [netdrv] phy: remove parameter new_link from phy_mac_interrupt() (Ivan Vecera) [1655590]
-- [kernel] phy: core: use genphy version of callbacks read_status and config_aneg per default (Ivan Vecera) [1655590]
-- [net] ethtool: remove error check for legacy setting transceiver type (Ivan Vecera) [1655590]
-- [netdrv] phy: Keep reporting transceiver type (Ivan Vecera) [1655590]
-- [uapi] ethtool: Add back transceiver type (Ivan Vecera) [1655590]
-- [kernel] phy: Remove trailing semicolon in macro definition (Ivan Vecera) [1655590]
-- [netdrv] phy: hook up clause 45 autonegotiation restart (Ivan Vecera) [1655590]
-- [netdrv] phy: avoid genphy_aneg_done() for PHYs without clause 22 support (Ivan Vecera) [1655590]
-- [netdrv] phy: add 802.3 clause 45 support to phylib (Ivan Vecera) [1655590]
-- [netdrv] phy: test the right variable in phy_write_mmd() (Ivan Vecera) [1655590]
-- [netdrv] phy: restart phy autonegotiation after EEE advertisment change (Ivan Vecera) [1655590]
-- [netdrv] phy: avoid setting unsupported EEE advertisments (Ivan Vecera) [1655590]
-- [netdrv] phy: clean up mmd_phy_indirect() (Ivan Vecera) [1655590]
-- [netdrv] phy: remove the indirect MMD read/write methods (Ivan Vecera) [1655590]
-- [netdrv] phy: switch remaining users to phy_(read|write)_mmd() (Ivan Vecera) [1655590]
-- [netdrv] phy: make phy_(read|write)_mmd() generic MMD accessors (Ivan Vecera) [1655590]
-- [netdrv] phy: move phy MMD accessors to phy-core.c (Ivan Vecera) [1655590]
-- [netdrv] phy: Add missing driver check in phy_aneg_done() (Ivan Vecera) [1655590]
-- [netdrv] phy: Check phydev->drv (Ivan Vecera) [1655590]
-- [netdrv] phy: Fix PHY unbind crash (Ivan Vecera) [1655590]
-- [netdrv] phy: Add phy_ethtool_nway_reset (Ivan Vecera) [1655590]
-- [netdrv] phy: add phy_ethtool_{get|set}_link_ksettings (Ivan Vecera) [1655590]
-- [netdrv] mdio_bus: Fix MDIO bus scanning in __mdiobus_register() (Ivan Vecera) [1655590]
-- [netdrv] phylib: don't return NULL from get_phy_device() (Ivan Vecera) [1655590]
-- [netdrv] phy: add generic function to support ksetting support (Ivan Vecera) [1655590]
-- [netdrv] phy: Add API for {un}registering an mdio device to a bus (Ivan Vecera) [1655590]
-- [netdrv] phy: Add an mdio_device structure (Ivan Vecera) [1655590]
-- [netdrv] phy: Centralise print about attached phy (Ivan Vecera) [1655590]
-- [netdrv] phy: phy_{read|write}_mmd_indirect: get addr from phydev (Ivan Vecera) [1655590]
-- [netdrv] phy: add phydev_name() wrapper (Ivan Vecera) [1655590]
-- [kernel] phy: Add phydev_err() and phydev_dbg() macros (Ivan Vecera) [1655590]
-- [kernel] phy: Consistently use addr for address on an MII bus (Ivan Vecera) [1655590]
-- [netdrv] phylib: Add phy_set_max_speed helper (Ivan Vecera) [1655590]
-- [netdrv] phy: add locking to phy_read_mmd_indirect()/phy_write_mmd_indirect() (Ivan Vecera) [1655590]
-- [netdrv] phy: Support setting polarity in marvell phy driver (Ivan Vecera) [1655590]
-- [netdrv] phy: Pass mdix ethtool setting through to phy driver (Ivan Vecera) [1655590]
-- [netdrv] phy: avoid suspending twice a PHY (Ivan Vecera) [1655590]
-- [netdrv] phy: keep track of the PHY suspend state (Ivan Vecera) [1655590]
-- [netdrv] phy: utilize phy_suspend and phy_resume (Ivan Vecera) [1655590]
-- [netdrv] phy: Invalidate LP advertising flags when restarting or disabling AN (Ivan Vecera) [1655590]
-- [netdrv] phy: fix EEE checks inside the phy_init_eee (Ivan Vecera) [1655590]
-- [netdrv] phy: allow phy_init_eee() to work with internal PHYs (Ivan Vecera) [1655590]
-- [kernel] phy: export phy_{read,write}_mmd_indirect (Ivan Vecera) [1655590]
-- [netdrv] libphy: Add phy specific function to access mmd phy registers (Ivan Vecera) [1655590]
-- [netdrv] phy: export phy_suspend and phy_resume (Ivan Vecera) [1655590]
-- [netdrv] phy: fix uninitalized ethtool_wolinfo in phy_suspend (Ivan Vecera) [1655590]
-- [netdrv] phy: move PHY software reset to genphy_soft_reset (Ivan Vecera) [1655590]
-- [netdrv] phy: update port type for MoCA PHYs (Ivan Vecera) [1655590]
-- [kernel] phy: add MoCA PHY type (Ivan Vecera) [1655590]
-- [netdrv] phy: report link partner features through ethtool (Ivan Vecera) [1655590]
-- [kernel] phy: breakdown PHY_*_FEATURES defines (Ivan Vecera) [1655590]
-
-* Mon Dec 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-975.el7]
-- [scsi] scsi_transport_srp: Fix shost to rport translation (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Fix uverbs_attr_get_obj (Kamal Heib) [1641363]
-- [infiniband] nvmet, rxe: defer ip datagram sending to tasklet (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Fix kernel crash during MR deregistration flow (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Prevent reregistration of DM_MR to regular MR (Kamal Heib) [1641363]
-- [infiniband] ib: make INFINIBAND_ADDR_TRANS configurable (Kamal Heib) [1641363]
-- [infiniband] ib_srp: depend on INFINIBAND_ADDR_TRANS (Kamal Heib) [1641363]
-- [infiniband] ib_srpt: depend on INFINIBAND_ADDR_TRANS (Kamal Heib) [1641363]
-- [infiniband] ib/core: Fix deleting default GIDs when changing mac adddress (Kamal Heib) [1641363]
-- [infiniband] ib/core: Fix to avoid deleting IPv6 look alike default GIDs (Kamal Heib) [1641363]
-- [infiniband] ib/core: Don't allow default GID addition at non reseved slots (Kamal Heib) [1641363]
-- [infiniband] rdma/ucma: Check for a cm_id->device in all user calls that need it (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add missing braces in anonymous union initializers (Kamal Heib) [1641363]
-- [infiniband] rdma/ucma: ucma_context reference leak in error path (Kamal Heib) [1641363]
-- [net] sunrpc: Make RTT measurement more precise (Send) (Kamal Heib) [1641363]
-- [net] xprtrdma: Move creation of rl_rdmabuf to rpcrdma_create_req (Kamal Heib) [1641363]
-- [net] xprtrdma: Chain Send to FastReg WRs (Kamal Heib) [1641363]
-- [kernel] xprtrdma: "Support" call-only RPCs (Kamal Heib) [1641363]
-- [net] xprtrdma: Reduce number of MRs created by rpcrdma_mrs_create (Kamal Heib) [1641363]
-- [net] xprtrdma: ->send_request returns -EAGAIN when there are no free MRs (Kamal Heib) [1641363]
-- [net] xprtrdma: Remove xprt-specific connect cookie (Kamal Heib) [1641363]
-- [net] xprtrdma: Remove arbitrary limit on initiator depth (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add device memory registration ioctl support (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add alloc/free dm uverbs ioctl support (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add device memory capabilities reporting (Kamal Heib) [1641363]
-- [uapi] ib/uverbs: Expose device memory capabilities to user (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: Removed GID add/del dummy routines (Kamal Heib) [1641363]
-- [uapi] ib/uverbs: Introduce ESP steering match filter (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add modify ESP flow_action (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Introduce egress flow steering (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add action_handle flow steering specification (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add flow_action create and destroy verbs (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Refactor kern_spec_to_ib_spec_filter (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add enum attribute type to ioctl() interface (Kamal Heib) [1641363]
-- [rdma] Use ib_gid_attr during GID modification (Kamal Heib) [1641363]
-- [infiniband] ib/providers: Avoid null netdev check for RoCE (Kamal Heib) [1641363]
-- [infiniband] ib/providers: Avoid zero GID check for RoCE (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refactor GID modify code for RoCE (Kamal Heib) [1641363]
-- [infiniband] ib/core: Simplify ib_query_gid to always refer to cache (Kamal Heib) [1641363]
-- [infiniband] rdma/providers: Simplify query_gid callback of RoCE providers (Kamal Heib) [1641363]
-- [infiniband] ib/qedr: Remove GID add/del dummy routines (Kamal Heib) [1641363]
-- [rdma] core: Update query_gid documentation for HCA drivers (Kamal Heib) [1641363]
-- [infiniband] rdma/mlx5: Fix definition of mlx5_ib_create_qp_resp (Kamal Heib) [1641363]
-- [trace] sunrpc: Save remote presentation address in svc_xprt for trace events (Kamal Heib) [1641363]
-- [trace] sunrpc: Move trace_svc_xprt_dequeue() (Kamal Heib) [1641363]
-- [trace] sunrpc: Simplify trace_svc_recv (Kamal Heib) [1641363]
-- [net] svc: Simplify ->xpo_secure_port (Kamal Heib) [1641363]
-- [infiniband] ib/ocrdma_hw: Remove redundant checks and goto labels (Kamal Heib) [1641363]
-- [infiniband] ib/ipoib: Delete unused struct (Kamal Heib) [1641363]
-- [rdma] cma: Move rdma_cm_state to cma_priv.h (Kamal Heib) [1641363]
-- [infiniband] ib/addr: Constify dst_entry pointer (Kamal Heib) [1641363]
-- [infiniband] rdma: Use u64_to_user_ptr everywhere (Kamal Heib) [1641363]
-- [infiniband] rdma/nldev: Provide netdevice name and index (Kamal Heib) [1596624 1641363]
-- [infiniband] ib/rxe: optimize mcast recv process (Kamal Heib) [1641363]
-- [infiniband] rdma/cma: Add rdma_port_space to UAPI (Kamal Heib) [1596624 1641363]
-- [rdma] cma: remove RDMA_PS_SDP (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refer to RoCE port property to decide building cache (Kamal Heib) [1641363]
-- [infiniband] ib/core: Search GID only for IB link layer (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refer to RoCE port property instead of GID table property (Kamal Heib) [1641363]
-- [infiniband] ib/core: Generate GID change event regardless of RoCE GID table property (Kamal Heib) [1641363]
-- [infiniband] ib/cm: Block processing alternate path handling RoCE Rx cm messages (Kamal Heib) [1641363]
-- [infiniband] ib/core: Protect against concurrent access to hardware stats (Kamal Heib) [1641363]
-- [uapi] ib/uverbs: UAPI pointers should use __aligned_u64 type (Kamal Heib) [1641363]
-- [uapi] rdma/ocrdma: Fix structure layout for ocrdma_alloc_pd (Kamal Heib) [1641363]
-- [rdma] ib/cma: Resolve route only while receiving CM requests (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refer to RoCE port property instead of GID table property (Kamal Heib) [1641363]
-- [infiniband] rdma/restrack: Remove ambiguity in resource track clean logic (Kamal Heib) [1641363]
-- [lib] bug: define the "cut here" string in a single place (Kamal Heib) [1641363]
-- [uapi] rdma/cxgb3: Use structs to describe the uABI instead of opencoding (Kamal Heib) [1641363]
-- [net] svcrdma: Clean up rdma_build_arg_xdr (Kamal Heib) [1641363]
-- [net] svcrdma: Consult max_qp_init_rd_atom when accepting connections (Kamal Heib) [1641363]
-- [net] svcrdma: Use pr_err to report Receive errors (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Enable ioctl() uAPI by default for new verbs (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Add macros to simplify adding driver specific attributes (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Move ioctl path of create_cq and destroy_cq to a new file (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Expose parsing tree of all common objects to providers (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Safely extend existing attributes (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Enable compact representation of uverbs_attr_spec (Kamal Heib) [1641363]
-- [uapi] ib/uverbs: Extend uverbs_ioctl header with driver_id (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Move to new headers and make naming consistent (Kamal Heib) [1641363]
-- [infiniband] ib/srp: Disallow duplicate RDMA/CM connections (Kamal Heib) [1641363]
-- [rdma] ib/core: Remove unimplemented ib_peek_cq (Kamal Heib) [1641363]
-- [infiniband] ib/core: Use rdma_is_port_valid() (Kamal Heib) [1641363]
-- [uapi] rdma/bnxt: Fix structure layout for bnxt_re_pd_resp (Kamal Heib) [1641363]
-- [infiniband] ib/core: Set speed string to SDR for invalid active rates (Kamal Heib) [1641363]
-- [infiniband] rdma/restrack: Don't rely on uninitialized variable in restrack_add flow (Kamal Heib) [1596624 1641363]
-- [uapi] rdma/mlx4: Move flag constants to uapi header (Kamal Heib) [1641363]
-- [rdma] ib/core: Move rdma_addr_find_l2_eth_by_grh to core_priv.h (Kamal Heib) [1641363]
-- [infiniband] ib/cm: Introduce and use helper function to get cm_port from path (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refactor ib_init_ah_attr_from_path() for RoCE (Kamal Heib) [1641363]
-- [infiniband] ib/cm: Add and use a helper function to add cm_id's to the port list (Kamal Heib) [1641363]
-- [infiniband] ib/ocrdma: Removed GID add/del null routines (Kamal Heib) [1641363]
-- [infiniband] ib/core: Remove rdma_resolve_ip_route() as exported symbol (Kamal Heib) [1641363]
-- [infiniband] ib/cma: Use rdma_protocol_roce() and remove cma_protocol_roce_dev_port() (Kamal Heib) [1641363]
-- [infiniband] ib/core: Honor return status of ib_init_ah_from_mcmember() (Kamal Heib) [1641363]
-- [infiniband] ib/{core, ipoib}: Simplify ib_find_gid() for unused ndev (Kamal Heib) [1641363]
-- [infiniband] infiniband/ulp/srpt/ib_srpt.c: fix build with gcc-4.4.4 (Kamal Heib) [1641363]
-- [infiniband] infiniband/core/verbs.c: fix build with gcc-4.4.4 (Kamal Heib) [1641363]
-- [infiniband] rdma_rxe: make rxe work over 802.1q VLAN devices (Kamal Heib) [1641363]
-- [infiniband] rdma/verbs: Simplify modify QP check (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/pvrdma: Properly annotate QP states (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Ensure validity of current QP state value (Kamal Heib) [1641363]
-- [infiniband] ib: remove duplicate header files (Kamal Heib) [1641363]
-- [infiniband] rdma/nldev: provide detailed PD information (Kamal Heib) [1641363]
-- [infiniband] rdma/nldev: provide detailed MR information (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/nldev: provide detailed CQ information (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/nldev: provide detailed CM_ID information (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/cm: move rdma_id_private to cma_priv.h (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/nldev: common resource dumpit function (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/restrack: clean up res_to_dev() (Kamal Heib) [1596624 1641363]
-- [infiniband] ib/rxe: change the function rxe_init_device_param type (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: remove unnecessary rxe in rxe_send (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: remove unnecessary skb_clone (Kamal Heib) [1641363]
-- [infiniband] ib/srpt: Add RDMA/CM support (Kamal Heib) [1641363]
-- [infiniband] ib/srp: Use the IB_DEVICE_SG_GAPS_REG HCA feature if supported (Kamal Heib) [1641363]
-- [infiniband] remove redundant assignment to pointer 'rdi' (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: Remove unused variable (char *rxe_qp_state_name[]) (Kamal Heib) [1641363]
-- [infiniband] ib/srp: Use pIS instead of inet_ntop() (Kamal Heib) [1641363]
-- [infiniband] revert "ib/srp: Avoid that a cable pull can trigger a kernel crash" (Kamal Heib) [1641363]
-- [infiniband] rdma/iwpm: Delete an error message for a failed memory allocation in iwpm_create_nlmsg() (Kamal Heib) [1641363]
-- [infiniband] ib/usnic: Delete an error message for a failed memory allocation in usnic_transport_init() (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Tidy uverbs_uobject_add (Kamal Heib) [1641363]
-- [infiniband] rdma/verbs: Return proper error code for not supported system call (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Reduce number of command header flags checks (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Replace user's types with kernel's types (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Refactor the header validation logic (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Copy ex_hdr outside of SRCU read lock (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Move uncontext check before SRCU read lock (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Properly check command supported mask (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Refactor command header processing (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Unify return values of not supported command (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Return not supported error code for unsupported commands (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Fail as early as possible if not enough header data was provided (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Refactor flags checks and update return value (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Update sizeof users (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Convert command mask validity check function to be bool (Kamal Heib) [1641363]
-- [net] sunrpc: Improve ordering of transport processing (Kamal Heib) [1641363]
-- [trace] sunrpc: Fix parsing failure in trace points with XIDs (Kamal Heib) [1641363]
-- [trace] sunrpc: Fix tracepoint storage issues with svc_recv and svc_rqst_status (Kamal Heib) [1641363]
-- [trace] sunrpc: Don't allocate a full sockaddr_storage for tracing (Kamal Heib) [1641363]
-- [trace] sunrpc: fix tracepoint warning: unknown op '->' (Kamal Heib) [1641363]
-
-* Fri Dec 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-974.el7]
-- [fs] flexfiles: enforce per-mirror stateid only for v4 DSes (Steve Dickson) [1652850]
-- [fs] flexfiles: use per-mirror specified stateid for IO (Steve Dickson) [1652850]
-- [fs] nfsv4.x: fix lock recovery during delegation recall (Steve Dickson) [1634086]
-- [fs] nfs4: flex_file: ignore synthetic uid/gid for tightly coupled DSes (Steve Dickson) [1643694]
-- [fs] libceph: fall back to sendmsg for slab pages (Ilya Dryomov) [1647460]
-- [fs] cifs: Fix autonegotiate security settings mismatch (Leif Sahlberg) [1650148]
-- [fs] nfsd: COPY and CLONE operations require the saved filehandle to be set (Scott Mayhew) [1645353]
-- [fs] dlm: Fix Fix saving of NULL callbacks (Robert S Peterson) [1638017]
-- [fs] move the call of __d_drop(anon) into __d_materialise_unique(dentry, anon) (Zheng Yan) [1627001]
-- [fs] dcache: d_splice_alias should ignore DCACHE_DISCONNECTED (Zheng Yan) [1627001]
-- [fs] dcache: d_splice_alias should detect loops (Zheng Yan) [1627001]
-- [fs] dcache: d_splice_alias mustn't create directory aliases (Zheng Yan) [1627001]
-- [fs] dcache: close d_move race in d_splice_alias (Zheng Yan) [1627001]
-- [fs] dcache: move d_splice_alias (Zheng Yan) [1627001]
-- [fs] dcache: don't clear DCACHE_DISCONNECTED too early (Zheng Yan) [1627001]
-- [fs] dcache: Don't set DISCONNECTED on "pseudo filesystem" dentries (Zheng Yan) [1627001]
-- [fs] dcache: use IS_ROOT to decide where dentry is hashed (Zheng Yan) [1627001]
-- [fs] gfs2: Fix iomap buffer head reference counting bug (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fix iomap buffered write support for journaled files (2) (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fix iomap buffered write support for journaled files (Andreas Grunbacher) [1637147]
-- [fs] gfs2: gfs2_extent_length cleanup (Andreas Grunbacher) [1637147]
-- [fs] gfs2: iomap buffered write support (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Further iomap cleanups (Andreas Grunbacher) [1637147]
-- [fs] iomap: move IOMAP_F_BOUNDARY to gfs2 (Andreas Grunbacher) [1637147]
-- [fs] iomap: inline data should be an iomap type, not a flag (Andreas Grunbacher) [1637147]
-- [fs] iomap: add private pointer to struct iomap (Andreas Grunbacher) [1637147]
-- [fs] iomap: add a page_done callback (Andreas Grunbacher) [1637147]
-- [fs] iomap: generic inline data handling (Andreas Grunbacher) [1637147]
-- [fs] iomap: mark newly allocated buffer heads as new (Andreas Grunbacher) [1637147]
-- [fs] fs: factor out a __generic_write_end helper (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Iomap cleanups and improvements (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Remove ordered write mode handling from gfs2_trans_add_data (Andreas Grunbacher) [1637147]
-- [fs] gfs2: gfs2_stuffed_write_end cleanup (Andreas Grunbacher) [1637147]
-- [fs] gfs2: hole_size improvement (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Remove sdp->sd_jheightsize (Andreas Grunbacher) [1637147]
-- [fs] gfs2: gfs2_iomap_end tracepoint: log block address (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fix metadata read-ahead during truncate (2) (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Check for the end of metadata in punch_hole (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fixes to "Implement iomap for block_map" (2) (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fixes to "Implement iomap for block_map" (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Minor gfs2_page_add_databufs cleanup (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Add gfs2_max_stuffed_size (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Typo fixes (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Implement fallocate(FALLOC_FL_PUNCH_HOLE) (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Turn trunc_dealloc into punch_hole (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Generalize truncate code (Andreas Grunbacher) [1637147]
-- [fs] Turn gfs2_block_truncate_page into gfs2_block_zero_range (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Improve non-recursive delete algorithm (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fix metadata read-ahead during truncate (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Remove minor gfs2_journaled_truncate inefficiencies (Andreas Grunbacher) [1637147]
-- [fs] gfs2: truncate: Remove unnecessary oldsize parameters (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Clean up trunc_start error path (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Remove pointless BUG_ON (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Add gfs2_blk2rgrpd comment and fix incorrect use (Andreas Grunbacher) [1637147]
-- [fs] gfs2: use ->invalidatepage() length argument (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Switch to invalidatepage_range (Andreas Grunbacher) [1637147]
-- [fs] GFS2: Merge ordered and writeback writepage (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Put bitmap buffers in put_super (Andreas Grunbacher) [1643581 1637147]
-- [fs] cifs: fix return value for cifs_listxattr (Leif Sahlberg) [1247871]
-- [fs] cifs: smb2ops: Fix listxattr() when there are no EAs (Leif Sahlberg) [1247871]
-- [uapi] Fix SPDX tags for files referring to the 'OpenIB.org' license (Ivan Vecera) [1653376]
-- [uapi] tls: RX path for ktls (Ivan Vecera) [1653376]
-- [uapi] fix linux/tls.h userspace compilation error (Ivan Vecera) [1653376]
-- [uapi] license cleanup: add SPDX license identifier to uapi header files with a license (Ivan Vecera) [1653376]
-- [uapi] tls: kernel TLS support (Ivan Vecera) [1653376]
-- [kernel] stop_machine: Atomically queue and wake stopper threads (Phil Auld) [1557061]
-- [kernel] stop_machine: Disable preemption after queueing stopper threads (Phil Auld) [1557061]
-- [kernel] stop_machine: Disable preemption when waking two stopper threads (Phil Auld) [1557061]
-- [kernel] stop_machine, sched: Fix migrate_swap() vs. active_balance() deadlock (Phil Auld) [1557061]
-- [kernel] stop_machine: Make cpu_stop_queue_work() and stop_one_cpu_nowait() return bool (Phil Auld) [1557061]
-- [kernel] cpuset: Fix a backport error in update_nodemasks_hier() (Waiman Long) [1584689]
-- [x86] Treat R_X86_64_PLT32 as R_X86_64_PC32 (Yauheni Kaliuta) [1654807]
-
-* Thu Dec 06 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-973.el7]
-- [nvme] flush namespace scanning work just before removing namespaces (Ewan Milne) [1622487]
-- [hwmon] (nct6775) Fix potential Spectre v1 (Dean Nelson) [1639223]
-- [mm] page-writeback.c: fix range_cyclic writeback vs writepages deadlock (Brian Foster) [1591574]
-- [mm] madvise(madv_dodump): allow hugetlbfs pages (Jamie Bainbridge) [1641227]
-- [mm] memcontrol: factor out reclaim iterator loading and updating (Aristeu Rozanski) [1595932]
-- [kernel] locking/lockdep: Fix debug_locks off performance problem (Waiman Long) [1451547]
-- [kernel] locking/lockdep: Make class->ops a percpu counter and move it under CONFIG_DEBUG_LOCKDEP=y (Waiman Long) [1451547]
-- [kernel] locking/lockdep: Add a faster path in __lock_release() (Waiman Long) [1451547]
-- [x86] locking/x86: Use LOCK ADD for smp_mb() instead of MFENCE (Waiman Long) [1522387]
-- [x86] locking/x86: Drop a comment left over from X86_OOSTORE (Waiman Long) [1522387]
-- [x86] locking/x86: Add cc clobber for ADDL (Waiman Long) [1522387]
-- [x86] reuse asm-generic/barrier.h (Waiman Long) [1522387]
-- [x86] locking, arch: use WRITE_ONCE()/READ_ONCE() in smp_store_release()/smp_load_acquire() (Waiman Long) [1522387]
-- [x86] locking/arch: Rename set_mb() to smp_store_mb() (Waiman Long) [1522387]
-- [kernel] locking/arch: Add WRITE_ONCE() to set_mb() (Waiman Long) [1522387]
-- [x86] cpufeatures: Enumerate MOVDIR64B instruction (Steve Best) [1482755]
-- [x86] cpufeatures: Enumerate MOVDIRI instruction (Steve Best) [1482755]
-
-* Tue Dec 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-972.el7]
-- [tools] cpupower: Fix coredump on VMWare (Prarit Bhargava) [1626505]
-- [tools] cpupower: Fix AMD Family 0x17 msr_pstate size (Prarit Bhargava) [1626505]
-- [netdrv] tg3: Add PHY reset for 5717/5719/5720 in change ring and flow control paths (Steve Best) [1654699]
-- [pci] Match Root Port's MPS to endpoint's MPSS as necessary (Myron Stowe) [1524000]
-- [pci] Skip MPS logic for Virtual Functions (VFs) (Myron Stowe) [1524000]
-- [kernel] sched/fair: Fix bandwidth timer clock drift condition (Lauro Ramos Venancio) [1617975]
-- [mm] mremap: properly flush TLB before releasing the page (Rafael Aquini) [1649634] {CVE-2018-18281}
-- [mm] ipc: use private shmem or hugetlbfs inodes for shm segments (Ondrej Mosnacek) [1613056]
-- [security] selinux: fix mprotect PROT_EXEC regression caused by mm change (Ondrej Mosnacek) [1613056]
-- [x86] syscall: Fix ARRAY_INDEX_NOSPEC_SYSCALL data leak (Josh Poimboeuf) [1608424]
-- [x86] kvm: vmx: re-add ple_gap module parameter (Gary Hook) [1652933]
-
-* Fri Nov 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-971.el7]
-- [net] ip_tunnel: don't force DF when MTU is locked (Stefano Brivio) [1511372]
-- [net] geneve: ICMP error lookup handler (Stefano Brivio) [1511372]
-- [net] vxlan: ICMP error lookup handler (Stefano Brivio) [1511372]
-- [net] udp: Handle ICMP errors for tunnels with same destination port on both endpoints (Stefano Brivio) [1511372]
-- [net] ipv6/ndisc: Preserve IPv6 control buffer if protocol error handlers are called (Stefano Brivio) [1511372]
-- [net] sctp: update dst pmtu with the correct daddr (Xin Long) [1627270]
-- [net] sctp: check policy more carefully when getting pr status (Xin Long) [1637876]
-- [net] sctp: get pr_assoc and pr_stream all status with SCTP_PR_SCTP_ALL instead (Xin Long) [1637876]
-- [net] packet: fix a race in packet_bind() and packet_notifier() (Andrea Claudi) [1643681] {CVE-2018-18559}
-- [net] ipv6: rate-limit probes for neighbourless routes (Sabrina Dubroca) [1637821]
-- [net] ipv6: Re-arrange code in rt6_probe() (Sabrina Dubroca) [1637821]
-- [pci] Add pcie_print_link_status() to log link speed and whether it's limited (Myron Stowe) [1647773]
-- [pci] Add pcie_bandwidth_available() to compute bandwidth available to device (Myron Stowe) [1647773]
-- [pci] Add pcie_bandwidth_capable() to compute max supported link bandwidth (Myron Stowe) [1647773]
-- [pci] Add pcie_get_width_cap() to find max supported link width (Myron Stowe) [1647773]
-- [pci] Add pcie_get_speed_cap() to find max supported link speed (Myron Stowe) [1647773]
-- [pci] Add decoding for 16 GT/s link speed (Myron Stowe) [1647773]
-- [pci] Add sysfs max_link_speed/width, current_link_speed/width, etc (Myron Stowe) [1647773]
-- [mm] userfaultfd: allow get_mempolicy(MPOL_F_NODE|MPOL_F_ADDR) to trigger userfaults (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: shmem: uffdio_copy: set the page dirty if VM_WRITE is not set (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: shmem: add i_size checks (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: shmem/hugetlbfs: only allow to register VM_MAYWRITE vmas (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: shmem: allocate anonymous memory for MAP_PRIVATE shmem (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: use ENOENT instead of EFAULT if the atomic copy user fails (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd: disable irqs when taking the waitqueue lock (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd.c: remove redundant pointer uwq (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd: remove uffd flags from vma->vm_flags if UFFD_EVENT_FORK fails (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd: hugetlbfs: fix userfaultfd_huge_must_wait() pte access (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: prevent non-cooperative events vs mcopy_atomic races (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd: convert to use anon_inode_getfd() (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] mm, userfaultfd, thp: avoid waiting when PMD under THP migration (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [ata] ahci: Add PCI ids for Intel Bay Trail, Cherry Trail and Apollo Lake AHCI (David Arcari) [1643272]
-- [mfd] intel-lpss: Remove left over variable (David Arcari) [1643267]
-- [mfd] lpc_ich: Enable watchdog on Intel Apollo Lake PCH (David Arcari) [1643267]
-- [mfd] lpc_ich: Add support for Intel Apollo Lake SoC (David Arcari) [1643267]
-- [mfd] intel-lpss: Add default I2C device properties for Apollo Lake (David Arcari) [1643267]
-- [mfd] intel-lpss: Pass I2C configuration via properties on BXT (David Arcari) [1643267]
-- [mfd] lpss: Add Broxton ACPI IDs (David Arcari) [1643267]
-- [tools] selftests/powerpc: Move get_auxv_entry() into utils.c (Diego Domingos) [1632258]
-- [tools] selftests/powerpc: Add support for skipping tests (Diego Domingos) [1632258]
-- [tools] selftests: Add support files for powerpc tests (Diego Domingos) [1632258]
-- [hwmon] k10temp: Add support for AMD family 17h, model 30h CPUs (Gary Hook) [1643292]
-- [x86] amd_nb: Add PCI device IDs for family 17h, model 30h (Gary Hook) [1643292]
-- [x86] amd_nb: Add support for newer PCI topologies (Gary Hook) [1643292]
-- [hwmon] k10temp, x86/amd_nb: Consolidate shared device IDs (Gary Hook) [1643292]
-- [hwmon] (k10temp) Use API function to access System Management Network (Gary Hook) [1643292]
-- [x86] amd_nb: Add support for Raven Ridge CPUs (Gary Hook) [1643292]
-- [hwmon] (k10temp) Add support for AMD Ryzen w/ Vega graphics (Gary Hook) [1643292]
-- [hwmon] (k10temp) Add temperature offset for Ryzen 2700X (Gary Hook) [1643292]
-- [x86] cpu/amd: Apply the Erratum 688 fix when the BIOS doesn't (Gary Hook) [1643292]
-- [x86] pm: Set IRQCHIP_SKIP_SET_WAKE for IOAPIC IRQ chip objects (David Arcari) [1650250]
-
-* Thu Nov 29 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-970.el7]
-- [cdrom] fix improper type cast, which can leat to information leak (Maurizio Lombardi) [1652054]
-- [cdrom] Fix info leak/OOB read in cdrom_ioctl_drive_status (Maurizio Lombardi) [1628161] {CVE-2018-16658}
-- [net] rtnetlink: give a user socket to get_target_net() (Jiri Benc) [1630694] {CVE-2018-14646}
-- [net] Add variants of capable for use on on sockets (Jiri Benc) [1630694] {CVE-2018-14646}
-- [crypto] chelsio: Fix memory corruption in DMA Mapped buffers (Arjun Vynipadath) [1647732]
-- [gpu] drm/i915/gvt: changed DDI mode emulation type (Paul Lai) [1615476]
-- [gpu] drm/i915/gvt: fix a bug of partially write ggtt enties (Paul Lai) [1540520]
-- [i2c] i801: fix DNV's SMBCTRL register offset (David Arcari) [1628860]
-- [i2c] i801: Add support for Intel Broxton (David Arcari) [1651721]
-- [md] raid1: panic because of using freed memory (Xiao Ni) [1632575 1582673]
-- [md] Simplify ternary operations (Xiao Ni) [1627563]
-- [scsi] libfc: retry PRLI if we cannot analyse the payload (Chris Leech) [1631130]
-- [scsi] libfc: Do not drop down to FLOGI for fc_rport_login() (Chris Leech) [1625721]
-- [scsi] libfc: Do not login if the port is already started (Chris Leech) [1625721]
-- [scsi] libfc: don't advance state machine for incoming FLOGI (Chris Leech) [1625721]
-- [kernel] ring-buffer: Fix polling on trace_pipe (Jerome Marchand) [1647443]
-- [x86] acpi/cstate: Make APCI C1 FFH MWAIT C-state description vendor-neutral (Laura Abbott) [1627566]
-- [x86] tsc: Mark Intel ATOM_GOLDMONT TSC reliable (David Arcari) [1651718]
-- [x86] cpu/vmware: Do not trace vmware_sched_clock() (Vitaly Kuznetsov) [1650271]
-- [powerpc] fadump: re-register firmware-assisted dump if already registered (Steve Best) [1652864]
-
-* Thu Nov 29 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-969.el7]
-- [lib] locking/rwsem: Make owner store task pointer of last owning reader (Waiman Long) [1563798]
-- [lib] locking/rwsem: Add a new RWSEM_ANONYMOUSLY_OWNED flag (Waiman Long) [1563798]
-- [kernel] locking/rwsem: Fix up_read_non_owner() warning with DEBUG_RWSEMS (Waiman Long) [1563798]
-- [lib] locking/kconfig: Restructure the lock debugging menu (Waiman Long) [1563798]
-- [lib] locking/kconfig: Add LOCK_DEBUGGING_SUPPORT to make it more readable (Waiman Long) [1563798]
-- [lib] locking/rwsem: Add DEBUG_RWSEMS to look for lock/unlock mismatches (Waiman Long) [1563798]
-- [net] macsec: let the administrator set UP state even if lowerdev is down (Sabrina Dubroca) [1626004]
-- [net] macsec: update operstate when lower device changes (Sabrina Dubroca) [1626004]
-- [net] ipv6: check skb->protocol before lookup for nexthop (Hangbin Liu) [1615196]
-- [net] cls_matchall: fix tcf_unbind_filter missing (Hangbin Liu) [1614130]
-- [net] l2tp: pass tunnel pointer to ->session_create() (Andrea Claudi) [1637904] {CVE-2018-9517}
-- [net] rtnetlink: Add dump all for netconf (Paolo Abeni) [1634216]
-- [net] be careful with zero len iov (Paolo Abeni) [1622337]
-- [net] ipv6 Use get_hash_from_flowi6 for rt6 hash (Sabrina Dubroca) [1625454]
-- [powerpc] powernv/opal: Use standard interrupts property when available (Gustavo Duarte) [1577105]
-- [powerpc] powernv: process all OPAL event interrupts with kopald (Gustavo Duarte) [1577105]
-- [powerpc] opal: Wake up kopald polling thread before waiting for events (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Fix opal_event_shutdown() called with interrupts disabled (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Make opal_event_shutdown() callable from IRQ context (Gustavo Duarte) [1577105]
-- [powerpc] opal-irqchip: Use interrupt names if present (Gustavo Duarte) [1577105]
-- [powerpc] xics: Properly set Edge/Level type and enable resend (Gustavo Duarte) [1577105]
-- [powerpc] opal-irqchip: Fix deadlock introduced by "Fix double endian conversion" (Gustavo Duarte) [1577105]
-- [powerpc] opal-irqchip: Fix double endian conversion (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Increase opal-irqchip initcall priority (Gustavo Duarte) [1577105]
-- [powerpc] opal: Remove events notifier (Gustavo Duarte) [1577105]
-- [powerpc] powernv/opal-dump: Convert to irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/elog: Convert elog to opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/opal: Convert opal message events to opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/eeh: Update the EEH code to use the opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] hvc: Convert to using interrupts instead of opal events (Gustavo Duarte) [1577105]
-- [powerpc] ipmi/powernv: Convert to irq event interface (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Reorder OPAL subsystem initialisation (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Add a virtual irqchip for opal events (Gustavo Duarte) [1577105]
-- [powerpc] irqdomain: Relax failure path on setting up mappings (Gustavo Duarte) [1577105]
-- [powerpc] numa: Skip onlining a offline node in kdump path (Steve Best) [1650254]
-- [powerpc] tm: Fix stack pointer corruption in __tm_recheckpoint() (Steve Best) [1650247]
-- [powerpc] pseries/mm: call H_BLOCK_REMOVE (Steve Best) [1650255]
-- [powerpc] pseries/mm: factorize PTE slot computation (Steve Best) [1650255]
-- [powerpc] pseries/mm: Introducing FW_FEATURE_BLOCK_REMOVE (Steve Best) [1650255]
-- [powerpc] rtas: Fix a potential race between CPU-Offline & Migration (Steve Best) [1650249]
-- [powerpc] pseries: Disable CPU hotplug across migrations (Steve Best) [1650249]
-
-* Wed Nov 28 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-968.el7]
-- [tools] bpftool: fold hex keyword in command help (Jiri Olsa) [1640092]
-- [tools] bpftool: change time format for program 'loaded at:' information (Jiri Olsa) [1640092]
-- [tools] bpftool: make it easier to feed hex bytes to bpftool (Jiri Olsa) [1640092]
-- [tools] bpftool: Adjust to new print_bpf_insn interface (Jiri Olsa) [1640092]
-- [tools] bpftool: fix potential format truncation (Jiri Olsa) [1640092]
-- [tools] bpftool: fix dependency file path (Jiri Olsa) [1640092]
-- [tools] bpftool: add support for quotations in batch files (Jiri Olsa) [1640092]
-- [tools] bpftool: read from stdin when batch file name is "-" (Jiri Olsa) [1640092]
-- [tools] bpftool: support continuation lines in batch files (Jiri Olsa) [1640092]
-- [tools] bpftool: support comments in batch files (Jiri Olsa) [1640092]
-- [tools] bpftool: add bash completion for CFG dump (Jiri Olsa) [1640092]
-- [tools] bpftool: new command-line option and documentation for 'visual' (Jiri Olsa) [1640092]
-- [tools] bpftool: generate .dot graph from CFG information (Jiri Olsa) [1640092]
-- [tools] bpftool: add out edges for each basic-block (Jiri Olsa) [1640092]
-- [tools] bpftool: partition basic-block for each function in the CFG (Jiri Olsa) [1640092]
-- [tools] bpftool: detect sub-programs from the eBPF sequence (Jiri Olsa) [1640092]
-- [tools] bpftool: factor out xlated dump related code into separate file (Jiri Olsa) [1640092]
-- [tools] bpftool: remove unnecessary 'if' to reduce indentation (Jiri Olsa) [1640092]
-- [kernel] bpf/verifier: disallow pointer subtraction (Jiri Olsa) [1640092]
-- [kernel] bpf: use per htab salt for bucket hash (Jiri Olsa) [1640092]
-- [kernel] bpf/verifier: introduce BPF_PTR_TO_MAP_VALUE (Jiri Olsa) [1640092]
-- [kernel] bpf: add ability to charge bpf maps memory dynamically (Jiri Olsa) [1640092]
-- [tools] bpf: verifier: MOV64 don't mark dst reg unbounded (Jiri Olsa) [1640092]
-- [kernel] bpf: bpf_prog_array_alloc() should return a generic non-rcu pointer (Jiri Olsa) [1640092]
-- [kernel] bpf: don't leave partial mangled prog in jit_subprogs error path (Jiri Olsa) [1640092]
-- [kernel] bpf: hash map: decrement counter on error (Jiri Olsa) [1640092]
-- [kernel] bpf: fix panic in prog load calls cleanup (Jiri Olsa) [1640092]
-- [tools] bpf: reject passing modified ctx to helper functions (Jiri Olsa) [1640092]
-- [kernel] bpf: fix context access in tracing progs on 32 bit archs (Jiri Olsa) [1640092]
-- [kernel] bpf: avoid retpoline for lookup/update/delete calls on maps (Jiri Olsa) [1640092]
-- [kernel] bpf: show prog and map id in fdinfo (Jiri Olsa) [1640092]
-- [kernel] bpf: fixup error message from gpl helpers on license mismatch (Jiri Olsa) [1640092]
-- [kernel] bpf: bpf_prog_array_copy() should return -ENOENT if exclude_prog not found (Jiri Olsa) [1640092]
-- [kernel] bpf: avoid -Wmaybe-uninitialized warning (Jiri Olsa) [1640092]
-- [kernel] perf/core: add perf_get_event() to return perf_event given a struct file (Jiri Olsa) [1640092]
-- [kernel] bpf: get JITed image lengths of functions via syscall (Jiri Olsa) [1640092]
-- [kernel] bpf: fix multi-function JITed dump obtained via syscall (Jiri Olsa) [1640092]
-- [kernel] bpf: get kernel symbol addresses via syscall (Jiri Olsa) [1640092]
-- [kernel] bpf: support 64-bit offsets for bpf function calls (Jiri Olsa) [1640092]
-- [kernel] bpf: add __printf verification to bpf_verifier_vlog (Jiri Olsa) [1640092]
-- [kernel] bpf: enable stackmap with build_id in nmi context (Jiri Olsa) [1640092]
-- [kernel] bpf: fix references to free_bpf_prog_info() in comments (Jiri Olsa) [1640092]
-- [kernel] bpf: export bpf_event_output() (Jiri Olsa) [1640092]
-- [kernel] bpf: add faked "ending" subprog (Jiri Olsa) [1640092]
-- [kernel] bpf: centre subprog information fields (Jiri Olsa) [1640092]
-- [kernel] bpf: unify main prog and subprog (Jiri Olsa) [1640092]
-- [x86] bpf: Clean up non-standard comments, to make the code more readable (Jiri Olsa) [1640092]
-- [kernel] bpf/verifier: improve register value range tracking with ARSH (Jiri Olsa) [1640092]
-- [kernel] bpf: remove never-hit branches in verifier adjust_scalar_min_max_vals (Jiri Olsa) [1640092]
-- [kernel] bpf/verifier: refine retval R0 state for bpf_get_stack helper (Jiri Olsa) [1640092]
-- [kernel] bpf: add bpf_get_stack helper (Jiri Olsa) [1640092]
-- [kernel] bpf: change prototype for stack_map_get_build_id_offset (Jiri Olsa) [1640092]
-- [kernel] bpf: Add bpf_verifier_vlog() and bpf_verifier_log_needed() (Jiri Olsa) [1640092]
-- [kernel] bpf: Remove struct bpf_verifier_env argument from print_bpf_insn (Jiri Olsa) [1640092]
-- [kernel] bpf: add new jited info fields in bpf_dev_offload and bpf_prog_info (Jiri Olsa) [1640092]
-- [kernel] bpf: fix kallsyms handling for subprogs (Jiri Olsa) [1640092]
-- [kernel] bpf_obj_do_pin(): switch to vfs_mkobj(), quit abusing ->mknod() (Jiri Olsa) [1640092]
-- [kernel] new primitive: vfs_mkobj() (Jiri Olsa) [1640092]
-- [kernel] bpf: add a bpf_override_function helper (Jiri Olsa) [1640092]
-- [net] bpf: make jited programs visible in traces (Jiri Olsa) [1640092]
-- [kernel] bpf: add support for sys_enter_* and sys_exit_* tracepoints (Jiri Olsa) [1640092]
-- [kernel] tracing/kprobes: Avoid perf_trace_buf_*() if ->perf_events is empty (Jiri Olsa) [1640092]
-- [kernel] seqlock: Introduce raw_read_seqcount_latch() (Jiri Olsa) [1640092]
-- [kernel] rbtree: include rcu.h (Jiri Olsa) [1640092]
-- [kernel] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Jiri Olsa) [1640092]
-- [kernel] rbtree: Implement generic latch_tree (Jiri Olsa) [1640092]
-- [kernel] rcu: Move lockless_dereference() out of rcupdate.h (Jiri Olsa) [1640092]
-- [powerpc] bpf, ppc64: fix unexpected r0=0 exit path inside bpf_xadd (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc64: add JIT support for multi-function programs (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc64: pad function address loads with NOPs (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf, ppc64: fix out of bounds access in tail call (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf, ppc64: remove obsolete exception handling from div/mod (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: fix net.core.bpf_jit_enable race (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf, ppc64: do not reload skb pointers in non-skb context (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: take advantage of stack_depth tracking in powerpc JIT (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Use memset32() to pre-fill traps in BPF page(s) (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf, ppc64: implement jiting of BPF_J{LT, LE, SLT, SLE} (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: Add jited_len to struct bpf_prog (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: free up BPF_JMP | BPF_CALL | BPF_X opcode (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: trace_bpf_jit_comp64.c: remove stubs for cBPF from arch code (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Introduce __PPC_SH64() (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Flush the entire JIT buffer (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Remove redundant check for non-null image (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Add support for bpf constant blinding (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Implement support for tail calls (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Introduce accessors for using the tmp local stack space (Yauheni Kaliuta) [1637441]
-- [powerpc] Wire up sys_bpf() syscall (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: finish porting ebpf to trace_ part of RHEL (Yauheni Kaliuta) [1637441]
-- [kernel] bpf: linux/bpf.h needs linux/numa.h (Yauheni Kaliuta) [1637441]
-- [powerpc] ebpf/jit: Implement JIT compiler for extended BPF (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf/jit: Introduce rotate immediate instructions (Yauheni Kaliuta) [1637441]
-- [powerpc] ppc: bpf: add reqired opcodes for ppc32 (Yauheni Kaliuta) [1637441]
-- [powerpc] add PPC_INST_LBZ opcode (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf/jit: add function descriptor for PPC64v1 abi only (Yauheni Kaliuta) [1637441]
-- [powerpc] Define and use PPC64_ELF_ABI_v2/v1 (Yauheni Kaliuta) [1637441]
-
-* Thu Nov 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-967.el7]
-- [scsi] mpt3sas: Swap I/O memory read value back to cpu endianness (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Add an I/O barrier (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Fix calltrace observed while running IO & reset (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Update driver version "25.100.00.00" (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix possible memory leak (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: For NVME device, issue a protocol level reset (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Update MPI Headers (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Report Firmware Package Version from HBA Driver (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Cache enclosure pages during enclosure add (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Allow processing of events during driver unload (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Increase event log buffer to support 24 port HBA's (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Added support for SAS Device Discovery Error Event (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Enhanced handling of Sense Buffer (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Optimize I/O memory consumption in driver (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Lockless access for chain buffers (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Pre-allocate RDPQ Array at driver boot time (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Bug fix for big endian systems (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix spelling mistake: "disbale" -> "disable" (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Do not mark fw_event workqueue as WQ_MEM_RECLAIM (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: clarify mmio pointer types (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce function to clone mpi reply (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce function to clone mpi request (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce Base function for cloning (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce API to get BAR0 mapped buffer address (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Configure reply post queue depth, DMA and sgl tablesize (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Add PCI device ID for Andromeda (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: wait for and flush running commands on shutdown/unload (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix oops in error handlers after shutdown/unload (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: make function _get_st_from_smid static (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: lockless command submission (Tomas Henzl) [1513855]
-- [virtio_scsi] use cmd_size (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: simplify _wait_for_commands_to_complete() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: simplify mpt3sas_scsi_issue_tm() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: simplify task management functions (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: always use first reserved smid for ioctl passthrough (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: check command status before attempting abort (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce mpt3sas_get_st_from_smid() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: open-code _scsih_scsi_lookup_get() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: separate out _base_recovery_check() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: use list_splice_init() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: set default value for cb_idx (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Proper handling of set/clear of "ATA command pending" flag (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Remove unused variable requeue_event (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Replace PCI pool old API (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: remove a stray KERN_INFO (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: cleanup _scsih_pcie_enumeration_event() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix dma_addr_t casts (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Update mpt3sas driver version (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Fix sparse warnings (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Fix nvme drives checking for tlr (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: NVMe drive support for BTDHMAPPING ioctl command and log info (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Add-Task-management-debug-info-for-NVMe-drives (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: scan and add nvme device after controller reset (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Set NVMe device queue depth as 128 (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Handle NVMe PCIe device related events generated from firmware (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: API's to remove nvme drive from sml (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: API 's to support NVMe drive addition to SML (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Added support for nvme encapsulated request message (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: SGL to PRP Translation for I/Os to NVMe devices (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Recognize and act on iopriority info (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Add nvme device support in slave alloc, target alloc and probe (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix an out of bound write (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: switch to pci_alloc_irq_vectors (Tomas Henzl) [1513855]
-
-* Mon Nov 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-966.el7]
-- [kernel] sched/cputime: Accumulate vtime on top of nsec clocksource (Yauheni Kaliuta) [1436351]
-- [kernel] sched/cputime: Move the vtime task fields to their own struct (Yauheni Kaliuta) [1436351]
-- [kernel] sched/cputime: Rename vtime fields (Yauheni Kaliuta) [1436351]
-- [kernel] sched/cputime: Always set tsk->vtime_snap_whence after accounting vtime (Yauheni Kaliuta) [1436351]
-- [kernel] timer/sysclt: Restrict timer migration sysctl values to 0 and 1 (Phil Auld) [1619473]
-- [mm] slub: extend slub debug to handle multiple slabs (Aaron Tomlin) [1650336]
-- [mm] slub: relax CMPXCHG consistency restrictions (Aaron Tomlin) [1650102]
-- [mm] slub: convert SLAB_DEBUG_FREE to SLAB_CONSISTENCY_CHECKS (Aaron Tomlin) [1650102]
-- [mm] slub: fix/clean free_debug_processing return paths (Aaron Tomlin) [1650102]
-- [mm] slub: drop lock at the end of free_debug_processing (Aaron Tomlin) [1650102]
-- [fs] nfsdv4: use export cache flushtime for changeid on V4ROOT objects ("J. Bruce Fields") [1637101 1570022]
-- [fs] Add some missing debug fields in server and tcon structs (Leif Sahlberg) [1588912]
-- [fs] nfsv4: Fix _nfs4_do_setlk() (Benjamin Coddington) [1468559]
-- [fs] nfsv4: Don't add a new lock on an interrupted wait for LOCK (Benjamin Coddington) [1468559]
-- [fs] don't carry MAY_OPEN in op->acc_mode (Prarit Bhargava) [1590228]
-- [fs] allow open(dir, O_TMPFILE|..., 0) with mode 0 (Prarit Bhargava) [1590228]
-- [fs] sunrpc: Change rpc_print_iostats to rpc_clnt_show_stats and handle rpc_clnt clones (Dave Wysochanski) [1255395]
-- [fs] sunrpc: Add _add_rpc_iostats() to add rpc_iostats metrics (Dave Wysochanski) [1255395]
-- [fs] sunrpc: add _print_rpc_iostats() to output metrics for one RPC op (Dave Wysochanski) [1255395]
-- [x86] Mark Intel Cascade Lake supported (Steve Best) [1639980]
-
-* Wed Nov 14 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-965.el7]
-- [vfio] spapr: Fix missing mutex unlock when creating a window (David Gibson) [1612677]
-- [vfio] spapr_tce: Set window when adding additional groups to container (David Gibson) [1612677]
-- [vfio] spapr_tce: Check kzalloc() return when preregistering memory (David Gibson) [1612677]
-- [vfio] powerpc/mm/iommu, vfio/spapr: Put pages on VFIO container shutdown (David Gibson) [1612677]
-- [vfio] spapr: Reference mm in tce_container (David Gibson) [1612677]
-- [vfio] spapr: Postpone allocation of userspace version of TCE table (David Gibson) [1612677]
-- [vfio] powerpc/iommu: Stop using @current in mm_iommu_xxx (David Gibson) [1612677]
-- [vfio] spapr: Postpone default window creation (David Gibson) [1612677]
-- [vfio] spapr: Add a helper to create default DMA window (David Gibson) [1612677]
-- [vfio] vfio_iommu_spapr_tce: Remove unneeded iommu_group_get_iommudata (David Gibson) [1612677]
-- [powerpc] iommu: Pass mm_struct to init/cleanup helpers (David Gibson) [1612677]
-- [powerpc] powernv/ioda: Fix endianness when reading TCEs (David Gibson) [1612677]
-- [gpu] drm/i915: Add short HPD IRQ storm detection for non-MST systems (Lyude Paul) [1608704]
-- [gpu] drm/i915: Clarify flow for disabling IRQs on storms (Lyude Paul) [1608704]
-- [gpu] drm/i915: Fix threshold check in intel_hpd_irq_storm_detect() (Lyude Paul) [1608704]
-- [gpu] drm/i915: Fix NULL deref when re-enabling HPD IRQs on systems with MST (Lyude Paul) [1608704]
-- [gpu] drm/i915: Fix possible race in intel_dp_add_mst_connector() (Lyude Paul) [1608704]
-- [netdrv] treewide: devm_kzalloc() -> devm_kcalloc() (Ivan Vecera) [1647141]
-- [pci] iov: Add pci_sriov_configure_simple() (Ivan Vecera) [1647141]
-
-* Fri Nov 09 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-964.el7]
-- [security] Make [un]register_lsm_notifier() null ops if !selinux_enabled (Don Dutile) [1621072]
-- [iommu] amd: Clear memory encryption mask from physical address (Gary Hook) [1643293]
-- [watchdog] itco_wdt: Remove unused hooks (David Arcari) [1645537]
-- [watchdog] itco_wdt: Drop option vendorsupport=2 (David Arcari) [1645537]
-- [watchdog] itco_wdt: Add PMC specific noreboot update api (David Arcari) [1645537]
-- [watchdog] itco_wdt: cleanup set/unset no_reboot_bit functions (David Arcari) [1645537]
-- [watchdog] itco_wdt: Replace shutdown function with call to watchdog_stop_on_reboot (David Arcari) [1645537]
-- [watchdog] itco_wdt: Simplify module init function (David Arcari) [1645537]
-- [watchdog] itco_wdt: Use pdev for platform device and pci_dev for pci device (David Arcari) [1645537]
-- [watchdog] itco_wdt: Use device managed resources (David Arcari) [1645537]
-- [watchdog] itco_wdt: Use allocated data structures (David Arcari) [1645537]
-- [watchdog] itco_wdt: constify iTCO_wdt_pm structure (David Arcari) [1645537]
-- [watchdog] pm / watchdog: itco: stop watchdog during system suspend (David Arcari) [1645537]
-- [watchdog] drop owner assignment from platform_drivers (David Arcari) [1645537]
-- [watchdog] itco-wdt: handle 5th variation for Apollo Lake (David Arcari) [1645537]
-- [watchdog] fix checkpatch warnings and error (David Arcari) [1645537]
-- [watchdog] use dev_get_platdata() (David Arcari) [1645537]
-- [pinctrl] broxton: Convert unsigned to unsigned int (David Arcari) [1643270]
-- [pinctrl] intel: Convert to use SPDX identifier (David Arcari) [1643270]
-- [pinctrl] broxton: No need to take pointer of a pointer (David Arcari) [1643270]
-- [pinctrl] broxton: Rename apl-pinctrl driver (David Arcari) [1643270]
-- [pinctrl] broxton: Use correct PADCFGLOCK offset (David Arcari) [1643270]
-- [pinctrl] broxton: enable platform device in the absence of ACPI enumeration (David Arcari) [1643270]
-- [pinctrl] intel: fix bug of register offset calculation (David Arcari) [1643270]
-- [pinctrl] intel: Add Intel Broxton pin controller support (David Arcari) [1643270]
-- [x86] cpu: Add workaround for MONITOR instruction erratum on Goldmont based CPUs (David Arcari) [1594329]
-
-* Thu Nov 08 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-963.el7]
-- [netdrv] bonding/802.3ad: fix link_failure_count tracking (Jarod Wilson) [1641660]
-- [gpu] drm/i915/gvt: fix cleanup sequence in intel_gvt_clean_device (Paul Lai) [1599461]
-- [block] nvme: do not require GENERIC_HARDIRQ interfaces on s390 (Hendrik Brueckner) [1637637]
-- [kernel] edac: Raise the maximum number of memory controllers (Aristeu Rozanski) [1633763]
-- [nvme] nvme-pci: add a memory barrier to nvme_dbbuf_update_and_check_event (David Milburn) [1630481]
-- [md] raid5-cache: disable reshape completely (Nigel Croxon) [1358592]
-- [block] floppy: Do not copy a kernel pointer to user memory in FDGETPRM ioctl (Sanskriti Sharma) [1555420] {CVE-2018-7755}
-- [fs] kernel: proc: add cond_resched to /proc/kpage* read/write loop (Rafael Aquini) [1560020]
-- [fs] kernel: proc: export idle flag via kpageflags (Rafael Aquini) [1560020]
-- [mm] introduce idle page tracking (Rafael Aquini) [1560020]
-- [mm] bring back /sys/kernel/mm (Rafael Aquini) [1560020]
-- [mm] vmscan: get rid of throttle_vm_writeout (Rafael Aquini) [1641801]
-- [mm] vmscan: don't trigger congestion wait on dirty-but-not-writeout pages (Rafael Aquini) [1563411]
-- [mm] vmscan: avoid throttling reclaim for loop-back nfsd threads (Rafael Aquini) [1563411]
-- [mm] vmscan: unlock page while waiting on writeback (Rafael Aquini) [1563411]
-- [mm] vmscan: remove remains of kswapd-managed zone->all_unreclaimable (Rafael Aquini) [1563411]
-- [mm] vmscan: fix do_try_to_free_pages() livelock (Rafael Aquini) [1563411]
-- [mm] vmscan: use DIV_ROUND_UP for calculation of zone's balance_gap and correct comments (Rafael Aquini) [1563411]
-
-* Wed Nov 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-962.el7]
-- [documentation] proc.txt: Adding 'HardwareCorrupted' field and description (Prashant Dhamdhere) [1626099]
-- [gpu] drm/i915/query: Protect tainted function pointer lookup (Rob Clark) [1639677]
-- [gpu] drm/amdgpu/pm: Fix potential Spectre v1 (Rob Clark) [1639677]
-- [gpu] drm/i915/kvmgt: Fix potential Spectre v1 (Rob Clark) [1639677]
-- [tty] vt_ioctl: fix potential Spectre v1 (Prarit Bhargava) [1639191]
-- [mailbox] pcc: handle parse error (David Arcari) [1616195]
-- [scsi] vmw-pvscsi: return DID_BUS_BUSY for adapter-initated aborts (Neil Horman) [1613541]
-- [block] badblocks: fix wrong return value in badblocks_set if badblocks are disabled (Xiao Ni) [1476097]
-- [iommu] vt-d: Fix iotlb psi missing for mappings (Peter Xu) [1623856]
-- [iommu] vt-d: Introduce __mapping_notify_one() (Peter Xu) [1623856]
-- [pci] hv: Disable/enable IRQs rather than BH in hv_compose_msi_msg() (Mohammed Gamal) [1636237]
-- [pci] hv: Do not wait forever on a device that has disappeared (Mohammed Gamal) [1636237]
-- [pci] hv: Fix 2 hang issues in hv_compose_msi_msg() (Mohammed Gamal) [1636237]
-- [pci] hv: Do not sleep in compose_msi_msg() (Mohammed Gamal) [1636237]
-- [kernel] module: fix ddebug_remove_module() (Artem Savkov) [1497613]
-- [pinctrl] cannonlake: Fix HOSTSW_OWN register offset of H variant (Benjamin Tissoires) [1609926 1544041]
-- [pinctrl] cannonlake: Fix gpio base for GPP-E (Benjamin Tissoires) [1609926 1544041]
-- [pinctrl] cannonlake: Fix community ordering for H variant (Benjamin Tissoires) [1609926 1544041]
-- [pinctrl] intel: Do pin translation in other GPIO operations as well (Benjamin Tissoires) [1609926 1544041]
-- [pinctrl] intel: Implement intel_gpio_get_direction callback (Benjamin Tissoires) [1609926 1544041]
-- [platform] x86: dell-smbios-wmi: Correct a memory leak (Jarod Wilson) [1640399]
-- [powerpc] pseries: Fix of_node_put() underflow during reconfig remove (Steve Best) [1619714]
-- [powerpc] tm: Avoid possible userspace r1 corruption on reclaim (Desnes Augusto Nunes do Rosario) [1635307]
-- [powerpc] tm: Fix userspace r13 corruption (Desnes Augusto Nunes do Rosario) [1635307]
-- [powerpc] tm: Avoid SLB faults in treclaim/trecheckpoint when RI=0 (Desnes Augusto Nunes do Rosario) [1635307]
-- [x86] microcode: Update the new microcode revision unconditionally (Prarit Bhargava) [1599273]
-- [x86] microcode: Make sure boot_cpu_data.microcode is up-to-date (Prarit Bhargava) [1599273]
-- [x86] kprobes: Use 5-byte NOP when the code might be modified by ftrace (Josh Poimboeuf) [1577050]
-
-* Mon Nov 05 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-961.el7]
-- [powerpc] kvm: book3s hv: Snapshot timebase offset on guest entry (Laurent Vivier) [1627090]
-- [powerpc] kvm: book3s hv: Remove vcpu->arch.dec usage (Laurent Vivier) [1627090]
-- [x86] kvm: x86: ensure all MSRs can always be KVM_GET/SET_MSR'd (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: #GP when guest attempts to write MCi_STATUS register w/o 0 (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/hyper-v: inject #GP only when invalid SINTx vector is unmasked (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/hyper-v: remove stale entries from vec_bitmap/auto_eoi_bitmap on vector change (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: hyperv: avoid livelock in oneshot SynIC timers (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: hyperv: add KVM_CAP_HYPERV_SYNIC2 (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: Add kvm_vcpu_get_idx to get vcpu index in kvm->vcpus (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: fix NULL deref in vcpu_scan_ioapic (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: use delivery to self in hyperv synic (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: hyperv: make function static to avoid compiling warning (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: hyper-v: do not do hypercall userspace exits if SynIC is disabled (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V VMBus hypercall userspace exit (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Reject Hyper-V hypercall continuation (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V SynIC timers tracepoints (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V SynIC tracepoints (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Update SynIC timers on guest entry only (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Skip SynIC vector check for QEMU side (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V fix SynIC timer disabling condition (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Reorg stimer_expiration() to better control timer restart (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V unify stimer_start() and stimer_restart() (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Drop stimer_stop() function (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V timers fix incorrect logical operation (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Remove Hyper-V SynIC timer stopping (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V SynIC timers (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V SynIC message slot pending clearing at SINT ack (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Added Hyper-V vcpu_to_hv_vcpu()/hv_vcpu_to_vcpu() helpers (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Rearrange func's declarations inside Hyper-V header (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V kvm exit (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V synthetic interrupt controller (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: split ioapic-handled and EOI exit bitmaps (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/irqchip: kvm_arch_irq_routing_update renaming split (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: lapic: stop advertising DIRECTED_EOI when in-kernel IOAPIC is in use (Vitaly Kuznetsov) [1452546]
-
-* Mon Nov 05 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-960.el7]
-- [scsi] ipr: System hung while dlpar adding primary ipr adapter back (Diego Domingos) [1631781]
-- [scsi] qedi: Initialize the stats mutex lock (Chad Dupuis) [1633638]
-- [netdrv] ibmvnic: Include missing return code checks in reset function (Steve Best) [1633343]
-- [netdrv] qed: Add support for virtual link (Chad Dupuis) [1638178]
-- [netdrv] qed: Add missing device config for RoCE EDPM in UFP mode (Chad Dupuis) [1631593]
-- [netdrv] qed: Do not add VLAN 0 tag to untagged frames in multi-function mode (Chad Dupuis) [1631593]
-- [netdrv] qed: Fix populating the invalid stag value in multi function mode (Chad Dupuis) [1631593]
-- [s390] crypto: Fix return code checking in cbc_paes_crypt() (Philipp Rudo) [1633354]
-- [s390] qeth: use vzalloc for QUERY OAT buffer (Hendrik Brueckner) [1629864]
-- [s390] qdio: reset old sbal_state flags (Hendrik Brueckner) [1629868]
-- [s390] facilites: use stfle_fac_list array size for MAX_FACILITY_BIT (Hendrik Brueckner) [1628088]
-- [s390] qdio: simplify math in get_*_buffer_frontier() (Prashant Dhamdhere) [1600542]
-- [s390] keyboard: sanitize array index in do_kdsk_ioctl (Steve Best) [1639295]
-- [x86] mark amd rome as unsupported (David Arcari) [1638504]
-- [x86] paravirt: Fix some warning messages (Prarit Bhargava) [1626417] {CVE-2018-15594}
-- [x86] paravirt: Fix spectre-v2 mitigations for paravirt guests (Prarit Bhargava) [1626417] {CVE-2018-15594}
-
-* Wed Oct 31 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-959.el7]
-- [netdrv] qed: Fix link flap issue due to mismatching EEE capabilities (Chad Dupuis) [1636398]
-- [netdrv] qed: Fix shmem structure inconsistency between driver and the mfw (Chad Dupuis) [1634156]
-- [netdrv] qede: Add driver support for 20G link speed (Chad Dupuis) [1635470]
-- [netdrv] Add driver support for 20G link speed (Chad Dupuis) [1635470]
-- [vhost] vhost_net: keep private_data and rx_ring synced (Wei Xu) [1465912]
-- [vhost] vhost_net: initialize rx_ring in vhost_net_open() (Wei Xu) [1465912]
-- [netdrv] tap: free skb if flags error (Wei Xu) [1465912]
-- [netdrv] tun: free skb in early errors (Wei Xu) [1465912]
-- [vhost] fix skb leak in handle_rx() (Wei Xu) [1465912]
-- [vhost] vhost_net: try batch dequing from skb array (Wei Xu) [1465912]
-- [netdrv] tap: support receiving skb from msg_control (Wei Xu) [1465912]
-- [netdrv] tun: support receiving skb through msg_control (Wei Xu) [1465912]
-- [kernel] tap: export skb_array (Wei Xu) [1465912]
-- [kernel] tun: export skb_array (Wei Xu) [1465912]
-- [kernel] skb_array: introduce batch dequeuing (Wei Xu) [1465912]
-- [kernel] ptr_ring: introduce batch dequeuing (Wei Xu) [1465912]
-- [kernel] skb_array: introduce skb_array_unconsume (Wei Xu) [1465912]
-- [kernel] ptr_ring: add ptr_ring_unconsume (Wei Xu) [1465912]
-- [kernel] ptr_ring: batch ring zeroing (Wei Xu) [1465912]
-- [netdrv] nfp: don't depend on eth_tbl being available (Pablo Cascon) [1592881]
-- [netdrv] nfp: fix memory leak on FW load error (Pablo Cascon) [1592881]
-- [netdrv] nfp: add hwmon support (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: allow zero-length capabilities (Pablo Cascon) [1592881]
-- [netdrv] nfp: print a message when mutex wait is interrupted (Pablo Cascon) [1592881]
-- [netdrv] nfp: ignore signals when communicating with management FW (Pablo Cascon) [1592881]
-- [netdrv] nfp: use full 40 bits of the NSP buffer address (Pablo Cascon) [1592881]
-- [netdrv] nfp: add a separate counter for packets with CHECKSUM_COMPLETE (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: improve wrong FW response warnings (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add support for bpf_get_prandom_u32() (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add support for atomic add of unknown values (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: expose command delay slots (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add basic support for atomic adds (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add map deletes from the datapath (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add map updates from the datapath (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add helper for basic map call checks (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add helper for validating stack pointers (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: rename map_lookup_stack() to map_call_stack_common() (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: detect packet reads could be cached, enable the optimisation (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: support unaligned read offset (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: read from packet data cache for PTR_TO_PACKET (Pablo Cascon) [1592881]
-- [netdrv] nfp: flower: implement ip fragmentation match offload (Pablo Cascon) [1592881]
-- [netdrv] nfp: flower: refactor shared ip header in match offload (Pablo Cascon) [1592881]
-- [netdrv] Use octal not symbolic permissions (Pablo Cascon) [1592881]
-- [netdrv] nfp: advertise firmware for mixed 10G/25G mode (Pablo Cascon) [1592881]
-- [netdrv] nfp: add Makefiles to all directories (Pablo Cascon) [1592881]
-- [netdrv] nfp: flower: implement tcp flag match offload (Pablo Cascon) [1592881]
-- [netdrv] nfp: standardize FW header whitespace (Pablo Cascon) [1592881]
-- [netdrv] nfp: use tc_cls_can_offload_and_chain0() (Pablo Cascon) [1592881]
-- [netdrv] nfp: setup xdp_rxq_info (Pablo Cascon) [1592881]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Pablo Cascon) [1592881]
-
-* Tue Oct 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-958.el7]
-- [target] scsi: iscsi: Use bin2hex instead of a re-implementation (Maurizio Lombardi) [1627034] {CVE-2018-14633}
-- [target] scsi: iscsi: Use hex2bin instead of a re-implementation (Maurizio Lombardi) [1627034] {CVE-2018-14633}
-- [net] 8021q: create device with all possible features in wanted_features (Davide Caratti) [1640645]
-- [kernel] sched/fair: Fix throttle_list starvation with low CFS quota (Phil Auld) [1601153]
-- [kernel] cpuset: use trialcs->mems_allowed as a temp variable (Aristeu Rozanski) [1613248]
-- [kernel] cpuset: fix a warning when clearing configured masks in old hierarchy (Aristeu Rozanski) [1613248]
-- [kernel] cpuset: initialize effective masks when clone_children is enabled (Aristeu Rozanski) [1613248]
-- [mm] memcontrol: fix high scheduling latency source in mem_cgroup_reparent_charges (Andrea Arcangeli) [1632898]
-- [x86] boot: Fix kexec booting failure in the SEV bit detection code (Kairui Song) [1628828]
-- [x86] efi: Only load initrd above 4g on second try (Lenny Szubowicz) [1608955]
-- [x86] efi: Support initrd loaded above 4G (Lenny Szubowicz) [1608955]
-- [x86] efi: Generalize handle_ramdisks() and rename to handle_cmdline_files() (Lenny Szubowicz) [1608955]
-
-* Thu Oct 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-957.el7]
-- [mm] mlock: avoid increase mm->locked_vm on mlock() when already mlock2(, MLOCK_ONFAULT) (Rafael Aquini) [1633059]
-
-* Wed Oct 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-956.el7]
-- [block] blk-mq: fix hctx debugfs entry related race between update hw queues and cpu hotplug (Ming Lei) [1619988]
-- [nvme] nvme-pci: unquiesce dead controller queues (Ming Lei) [1632424]
-
-* Wed Oct 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-955.el7]
-- [netdrv] net/mlx5e: IPoIB, Set the netdevice sw mtu in ipoib enhanced flow (Alaa Hleihel) [1633652]
-- [netdrv] net/mlx5e: Fix traffic between VF and representor (Alaa Hleihel) [1633652]
-- [mm] vmscan: do not loop on too_many_isolated for ever (Waiman Long) [1632050]
-
-* Mon Sep 24 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-954.el7]
-- [fs] exec: Limit arg stack to at most 75 of _STK_LIM (Yauheni Kaliuta) [1625991] {CVE-2018-14634}
-- [fs] exec: account for argv/envp pointers (Yauheni Kaliuta) [1625991] {CVE-2018-14634}
-- [kernel] revert "sched/topology: Introduce NUMA identity node sched domain" (Gustavo Duarte) [1620031]
-- [powerpc] revert "powernv: Add a virtual irqchip for opal events" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv: Reorder OPAL subsystem initialisation" (Gustavo Duarte) [1617966]
-- [char] revert "ipmi/powernv: Convert to irq event interface" (Gustavo Duarte) [1617966]
-- [tty] revert "hvc: Convert to using interrupts instead of opal events" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv/eeh: Update the EEH code to use the opal irq domain" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv/opal: Convert opal message events to opal irq domain" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv/elog: Convert elog to opal irq domain" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv/opal-dump: Convert to irq domain" (Gustavo Duarte) [1617966]
-- [powerpc] revert "opal: Remove events notifier" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv: Increase opal-irqchip initcall priority" (Gustavo Duarte) [1617966]
-- [powerpc] revert "opal-irqchip: Fix double endian conversion" (Gustavo Duarte) [1617966]
-- [powerpc] revert "opal-irqchip: Fix deadlock introduced by "Fix double endian conversion"" (Gustavo Duarte) [1617966]
-- [sound] alsa: hda/realtek - two more lenovo models need fixup of MIC_LOCATION (Jaroslav Kysela) [1611958]
-- [sound] alsa: hda/realtek - Fix the problem of two front mics on more machines (Jaroslav Kysela) [1611958]
-- [sound] alsa: hda/realtek - Enable mic-mute hotkey for several Lenovo AIOs (Jaroslav Kysela) [1611958]
-
-* Fri Sep 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-953.el7]
-- [cdrom] information leak in cdrom_ioctl_media_changed() (Sanskriti Sharma) [1578207] {CVE-2018-10940}
-- [mm] mlock: remove lru_add_drain_all() (Oleksandr Natalenko) [1624765]
-- [block] blk-mq: fix race between updating nr_hw_queues and switching io sched (Ming Lei) [1619988]
-- [block] blk-mq: avoid to map CPU into stale hw queue (Ming Lei) [1619988]
-- [block] blk-mq: fix sysfs inflight counter (Ming Lei) [1548261]
-- [block] blk-mq: count allocated but not started requests in iostats inflight (Ming Lei) [1548261]
-- [block] fix a crash caused by wrong API (Ming Lei) [1548261]
-- [block] blk-mq: enable checking two part inflight counts at the same time (Ming Lei) [1548261]
-- [block] blk-mq: provide internal in-flight variant (Ming Lei) [1548261]
-- [block] make part_in_flight() take an array of two ints (Ming Lei) [1548261]
-- [block] pass in queue to inflight accounting (Ming Lei) [1548261]
-- [x86] Mark Intel Cascade Lake supported (Steve Best) [1584343]
-
-* Tue Sep 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-952.el7]
-- [netdrv] mlx5e: IPoIB, Use priv stats in completion rx flow (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: IPoIB, Add ndo stats support for IPoIB child devices (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: IPoIB, Add ndo stats support for IPoIB netdevices (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: IPoIB, Initialize max_opened_tc in mlx5i_init flow (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: Present SW stats when state is not opened (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: Avoid reset netdev stats on configuration changes (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: Use bool as return type for mlx5e_xdp_handle (Alaa Hleihel) [1618609]
-- [netdrv] net: aquantia: memory corruption on jumbo frames (Igor Russkikh) [1628238]
-- [kernel] revert "platform/uv: Add adjustable set memory block size function" (Baoquan He) [1625143]
-- [x86] revert "mm: probe memory block size for generic x86 64bit" (Baoquan He) [1625143]
-- [x86] revert "mm: Use 2GB memory block size on large-memory x86-64 systems" (Baoquan He) [1625143]
-- [x86] revert "mm: Streamline and restore probe_memory_block_size()" (Baoquan He) [1625143]
-- [x86] revert "mm/memory_hotplug: determine block size based on the end of boot memory" (Baoquan He) [1625143]
-- [mm] revert "memory_hotplug: do not fail offlining too early" (Baoquan He) [1625143]
-- [mm] revert "memory_hotplug: remove timeout from __offline_memory" (Baoquan He) [1625143]
-- [kernel] revert "x86/platform/uv: Add adjustable set memory block size function" (Baoquan He) [1625143]
-
-* Mon Sep 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-951.el7]
-- [fs] fanotify: fix logic of events on child (Miklos Szeredi) [1597738]
-- [fs] cifs: add a check for session expiry (Leif Sahlberg) [1626358]
-- [fs] xfs: completely disable per-inode DAX behavior (Eric Sandeen) [1623150]
-- [fs] fs: get_rock_ridge_filename(): handle malformed NM entries (Bill O'Donnell) [1340778] {CVE-2016-4913}
-- [md] fix 'allow faster resync only on non-rotational media' underneath dm (Nigel Croxon) [1561162]
-- [md] Revert "allow faster resync only on non-rotational media" (Nigel Croxon) [1561162]
-- [mm] madvise: fix madvise() infinite loop under special circumstances (Rafael Aquini) [1552982] {CVE-2017-18208}
-- [infiniband] srpt: Support HCAs with more than two ports (Don Dutile) [1616192]
-- [infiniband] overflow.h: Add allocation size calculation helpers (Don Dutile) [1616192]
-- [net] ip_tunnel: clean the GSO bits properly (Flavio Leitner) [1607907]
-- [kernel] revert cpuset: fix a warning when clearing configured masks in old hierarchy (Aristeu Rozanski) [1626943]
-- [s390] sclp: Change SCLP console default buffer-full behavior (Hendrik Brueckner) [1625350]
-- [x86] kvm: Take out __exit annotation in vmx_exit() (Waiman Long) [1626560]
-- [x86] mark coffeelake-s 8+2 as supported (David Arcari) [1575457]
-- [x86] kvm: vmx: fixes for vmentry_l1d_flush module parameter (Marcelo Tosatti) [1619602]
-- [x86] speculation: Use ARCH_CAPABILITIES to skip L1D flush on vmentry (Marcelo Tosatti) [1619602]
-
-* Sat Sep 15 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-950.el7]
-- [kernel] posix-timer: Properly check sigevent->sigev_notify (Phil Auld) [1613711] {CVE-2017-18344}
-- [sound] alsa: rawmidi: Change resized buffers atomically (Denys Vlasenko) [1593087] {CVE-2018-10902}
-- [fs] Fix up non-directory creation in SGID directories (Miklos Szeredi) [1600953] {CVE-2018-13405}
-- [fs] pnfs: Layoutreturn must free the layout after the layout-private data (Scott Mayhew) [1625517]
-- [fs] sunrpc: Ensure we always close the socket after a connection shuts down (Steve Dickson) [1614950]
-- [fs] xfs: remove filestream item xfs_inode reference (Brian Foster) [1518623]
-- [mm] set IORESOURCE_SYSTEM_RAM to system RAM to fix memory hot-add failure (Larry Woodman) [1628349]
-- [firmware] efivars: Protect DataSize and Data in efivar_entry.var (Lenny Szubowicz) [1597868]
-
-* Fri Sep 14 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-949.el7]
-- [scsi] libsas: fix memory leak in sas_smp_get_phy_events() (Tomas Henzl) [1558582] {CVE-2018-7757}
-- [vhost] fix info leak due to uninitialized memory (Jason Wang) [1573705] {CVE-2018-1118}
-- [pci] Fix calculation of bridge window's size and alignment (Myron Stowe) [1623800]
-- [md] dm thin metadata: try to avoid ever aborting transactions (Mike Snitzer) [1614151]
-- [crypto] api: fix finding algorithm currently being tested (Herbert Xu) [1618701]
-- [sound] alsa: hda/realtek: Fix HP Headset Mic can't record (Jaroslav Kysela) [1622721]
-- [sound] alsa: hda/realtek - Fixup for HP x360 laptops with B&O speakers (Jaroslav Kysela) [1622721]
-- [sound] alsa: hda/realtek - Fixup mute led on HP Spectre x360 (Jaroslav Kysela) [1622721]
-- [target] scsi: tcmu: use u64 for dev_size (Xiubo Li) [1603363]
-- [target] scsi: tcmu: use match_int for dev params (Xiubo Li) [1603363]
-- [target] scsi: tcmu: do not set max_blocks if data_bitmap has been setup (Xiubo Li) [1603363]
-- [target] scsi: tcmu: unmap if dev is configured (Xiubo Li) [1603363]
-- [target] scsi: tcmu: check if dev is configured before block/reset (Xiubo Li) [1603363]
-- [target] scsi: tcmu: use lio core se_device configuration helper (Xiubo Li) [1603363]
-- [target] scsi: target: add helper to check if dev is configured (Xiubo Li) [1603363]
-- [target] scsi: tcmu: initialize list head (Xiubo Li) [1603363]
-- [target] scsi: target_core_user: fix double unlock (Xiubo Li) [1603363]
-- [s390] arch: Set IORESOURCE_SYSTEM_RAM flag for resources (Gary Hook) [1627889]
-- [x86] efi-bgrt: Switch all pr_err() to pr_notice() for invalid BGRT (Lenny Szubowicz) [1464241]
-- [x86] efi/bgrt: Don't ignore the BGRT if the 'valid' bit is 0 (Lenny Szubowicz) [1464241]
-- [x86] efi: Preface all print statements with efi* tag (Lenny Szubowicz) [1464241]
-- [x86] efi-bgrt: Switch pr_err() to pr_debug() for invalid BGRT (Lenny Szubowicz) [1464241]
-- [x86] efi-bgrt: Add error handling; inform the user when ignoring the BGRT (Lenny Szubowicz) [1464241]
-- [x86] efi: Check status field to validate BGRT header (Lenny Szubowicz) [1464241]
-
-* Tue Sep 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-948.el7]
-- [gpu] drm/nouveau/drm/nouveau: Don't forget to cancel hpd_work on suspend/unload (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/drm/nouveau: Prevent handling ACPI HPD events too early (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau: Fix deadlocks in nouveau_connector_detect() (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/drm/nouveau: Use pm_runtime_get_noresume() in connector_detect() (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/drm/nouveau: Fix deadlock with fb_helper with async RPM requests (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau: Remove duplicate poll_enable() in pmops_runtime_suspend() (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/drm/nouveau: Fix bogus drm_kms_helper_poll_enable() placement (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau: Reset MST branching unit before enabling (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau: Only write DP_MSTM_CTRL when needed (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/kms/nv50-: ensure window updates are submitted when flushing mst disables (Lyude Paul) [1597881 1571927]
-- [vfio] vfio-pci: Disable binding to PFs with SR-IOV enabled (Alex Williamson) [1583487]
-- [mm] partially revert: remove per-zone hashtable of bitlock waitqueues (Jeff Moyer) [1623980]
-- [security] selinux: mark unsupported policy capabilities as reserved (Paul Moore) [1600850]
-- [x86] intel_rdt: Fix MBA resource initialization (Prarit Bhargava) [1610239]
-
-* Mon Sep 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-947.el7]
-- [net] ip: process in-order fragments efficiently (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] ipv6: defrag: drop non-last frags smaller than min mtu (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] ip: use rb trees for IP frag queue (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] revert ipv4: use skb coalescing in defragmentation (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] modify skb_rbtree_purge to return the truesize of all purged skbs (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] ip: discard IPv4 datagrams with overlapping segments (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] speed up skb_rbtree_purge() (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] avoid skb_warn_bad_offload on IS_ERR (Andrea Claudi) [1624702]
-- [net] ipv4: fix incorrectly registered callback for sysctl_fib_multipath_hash_policy (Ivan Vecera) [1624356]
-- [net] ipset: list:set: Decrease refcount synchronously on deletion and replace (Stefano Brivio) [1593732]
-- [netdrv] cfg80211: let's wmm_rule be part of reg_rule structure (Stanislaw Gruszka) [1620108]
-- [netdrv] nl80211: Add wmm rule attribute to NL80211_CMD_GET_WIPHY dump command (Stanislaw Gruszka) [1620108]
-- [netdrv] iwlwifi: mvm: remove division by size of sizeof(struct ieee80211_wmm_rule) (Stanislaw Gruszka) [1620108]
-- [hv] vmbus: don't return values for uninitalized channels (Vitaly Kuznetsov) [1615500]
-- [md] dm raid: bump target version, update comments and documentation (Mike Snitzer) [1573988]
-- [md] dm raid: fix RAID leg rebuild errors (Mike Snitzer) [1573988]
-- [md] dm raid: fix rebuild of specific devices by updating superblock (Mike Snitzer) [1626094]
-- [md] dm raid: fix stripe adding reshape deadlock (Mike Snitzer) [1613039 1514539]
-- [md] dm raid: fix reshape race on small devices (Mike Snitzer) [1573988 1586123]
-- [acpi] acpica: reference counts: increase max to 0x4000 for large servers (Frank Ramsay) [1618758]
-- [gpu] drm/i915/cfl: Add a new CFL PCI ID (Rob Clark) [1533336]
-- [gpu] drm/i915/aml: Introducing Amber Lake platform (Rob Clark) [1533336]
-- [gpu] drm/i915/whl: Introducing Whiskey Lake platform (Rob Clark) [1533336]
-- [gpu] drm/nouveau/kms/nv50-: allocate push buffers in vidmem on pascal (Ben Skeggs) [1584963]
-- [gpu] drm/nouveau/fb/gp100-: disable address remapper (Ben Skeggs) [1584963]
-- [mm] kernel error swap_info_get: Bad swap offset entry (Mikulas Patocka) [1622747]
-- [s390] detect etoken facility (Hendrik Brueckner) [1625349]
-- [s390] lib: use expoline for all bcr instructions (Hendrik Brueckner) [1625349]
-- [x86] spec_ctrl: Don't turn off IBRS on idle with enhanced IBRS (Waiman Long) [1614143]
-- [x86] speculation: Support Enhanced IBRS on future CPUs (Waiman Long) [1614143]
-
-* Mon Sep 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-946.el7]
-- [netdrv] qed: Add new TLV to request PF to update MAC in bulletin board (Harish Patil) [1460150]
-- [netdrv] qed: use trust mode to allow VF to override forced MAC (Harish Patil) [1460150]
-- [netdrv] hv_netvsc: Fix napi reschedule while receive completion is busy (Mohammed Gamal) [1614503]
-- [netdrv] hv_netvsc: remove unneeded netvsc_napi_complete_done() (Mohammed Gamal) [1614503]
-- [scsi] qedi: Add the CRC size within iSCSI NVM image (Chad Dupuis) [1611573]
-- [char] ipmi: Move BT capabilities detection to the detect call (Frank Ramsay) [1618778]
-- [x86] kvm: update master clock before computing kvmclock_offset (Marcelo Tosatti) [1594034]
-
-* Fri Sep 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-945.el7]
-- [samples] bpf: Additional changes (Jiri Olsa) [1619721]
-- [samples] bpf: Add v4.16 sources (Jiri Olsa) [1619721]
-- [tools] perf python: Fix pyrf_evlist__read_on_cpu() interface (Jiri Olsa) [1620774]
-- [tools] perf mmap: Store real cpu number in 'struct perf_mmap' (Jiri Olsa) [1620774]
-- [netdrv] cxgb4: update 1.20.8.0 as the latest firmware supported (Arjun Vynipadath) [1622551]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1622551]
-- [netdrv] mlx5e: Fix null pointer access when setting MTU of vport representor (Erez Alfasi) [1625195]
-- [netdrv] mlx5e: Support configurable MTU for vport representors (Erez Alfasi) [1625195]
-- [netdrv] mlx5e: Save MTU in channels params (Erez Alfasi) [1625195]
-- [netdrv] be2net: Fix memory leak in be_cmd_get_profile_config() (Petr Oros) [1625703]
-- [netdrv] virtio-net: set netdevice mtu correctly (Mohammed Gamal) [1610416]
-- [netdrv] i40e: Prevent deleting MAC address from VF when set by PF (Stefan Assmann) [1614161]
-- [netdrv] i40evf: cancel workqueue sync for adminq when a VF is removed (Stefan Assmann) [1615829]
-- [netdrv] i40e: Fix for Tx timeouts when interface is brought up if DCB is enabled (Stefan Assmann) [1616149]
-- [netdrv] i40e: fix condition of WARN_ONCE for stat strings (Stefan Assmann) [1609173]
-- [uio] Revert "use request_threaded_irq instead" (Xiubo Li) [1560418]
-- [fs] seq_file: fix out-of-bounds read (Paolo Abeni) [1620002]
-- [md] RAID10 BUG_ON in raise_barrier when force is true and conf->barrier is 0 (Nigel Croxon) [1530776]
-- [md] allow faster resync only on non-rotational media (Nigel Croxon) [1561162]
-- [nvdimm] libnvdimm: fix ars_status output length calculation (Jeff Moyer) [1616304]
-- [cpufreq] Fix possible circular locking dependency (Waiman Long) [1529668]
-- [mm] memcg: delay memcg id freeing (Aristeu Rozanski) [1607249]
-- [mm] mlock: fix mlock accounting (Rafael Aquini) [1610652]
-- [mm] page-writeback: check-before-clear PageReclaim (Rafael Aquini) [1588002]
-- [mm] migrate: check-before-clear PageSwapCache (Rafael Aquini) [1588002]
-- [mm] mempolicy: fix crashes from mbind() merging vmas (Rafael Aquini) [1588002]
-- [x86] apic: Future-proof the TSC_DEADLINE quirk for SKX (Steve Best) [1624090]
-
-* Tue Sep 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-944.el7]
-- [net] ipvs: Fix panic due to non-linear skb (Davide Caratti) [1623088]
-- [net] ipv4: remove BUG_ON() from fib_compute_spec_dst (Lorenzo Bianconi) [1496779]
-- [net] ipv6: fix cleanup ordering for ip6_mr failure (Xin Long) [1622218]
-- [net] ipv6: reorder icmpv6_init() and ip6_mr_init() (Xin Long) [1622218]
-- [x86] subject: x86/efi: Access EFI MMIO data as unencrypted when SEV is active (Gary Hook) [1361286]
-- [x86] boot: Fix boot failure when SMP MP-table is based at 0 (Gary Hook) [1361286]
-- [x86] resource: Fix resource_size.cocci warnings (Gary Hook) [1361286]
-- [x86] kvm: Clear encryption attribute when SEV is active (Gary Hook) [1361286]
-- [x86] kvm: Decrypt shared per-cpu variables when SEV is active (Gary Hook) [1361286]
-- [kernel] percpu: Introduce DEFINE_PER_CPU_DECRYPTED (Gary Hook) [1361286]
-- [x86] Add support for changing memory encryption attribute in early boot (Gary Hook) [1361286]
-- [x86] io: Unroll string I/O when SEV is active (Gary Hook) [1361286]
-- [x86] boot: Add early boot support when running with SEV active (Gary Hook) [1361286]
-- [x86] mm: Add DMA support for SEV memory encryption (Gary Hook) [1361286]
-- [x86] mm, resource: Use PAGE_KERNEL protection for ioremap of memory pages (Gary Hook) [1361286]
-- [kernel] resource: Provide resource struct in resource walk callback (Gary Hook) [1361286]
-- [kernel] resource: Consolidate resource walking code (Gary Hook) [1361286]
-- [x86] efi: Access EFI data as encrypted when SEV is active (Gary Hook) [1361286]
-- [x86] mm: Include SEV for encryption memory attribute changes (Gary Hook) [1361286]
-- [x86] mm: Use encrypted access of boot related data with SEV (Gary Hook) [1361286]
-- [x86] mm: Add Secure Encrypted Virtualization (SEV) support (Gary Hook) [1361286]
-- [documentation] x86: Add AMD Secure Encrypted Virtualization (SEV) description (Gary Hook) [1361286]
-- [x86] mm: Remove unnecessary TLB flush for SME in-place encryption (Gary Hook) [1361286]
-- [x86] kexec: Remove walk_iomem_res() call with GART type (Gary Hook) [1361286]
-- [kernel] resource: Change walk_system_ram() to use System RAM type (Gary Hook) [1361286]
-- [kernel] kexec: Set IORESOURCE_SYSTEM_RAM for System RAM (Gary Hook) [1361286]
-- [x86] arch: Set IORESOURCE_SYSTEM_RAM flag for System RAM (Gary Hook) [1361286]
-- [x86] Set System RAM type and descriptor (Gary Hook) [1361286]
-- [kernel] resource: Handle resource flags properly (Gary Hook) [1361286]
-- [kernel] resource: Add System RAM resource type (Gary Hook) [1361286]
-
-* Mon Sep 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-943.el7]
-- [fs] timerfd: Protect the might cancel mechanism proper (Bill O'Donnell) [1485407] {CVE-2017-10661}
-- [fs] exec.c: Add missing 'audit_bprm()' call in 'exec_binprm()' (Bhupesh Sharma) [1496408]
-- [fs] gfs2: Don't set GFS2_RDF_UPTODATE when the lvb is updated (Robert S Peterson) [1600142]
-- [fs] gfs2: improve debug information when lvb mismatches are found (Robert S Peterson) [1600142]
-- [fs] gfs2: fix memory leak in rgrp lvbs (Robert S Peterson) [1600142]
-- [fs] gfs2: cleanup: call gfs2_rgrp_ondisk2lvb from gfs2_rgrp_out (Robert S Peterson) [1600142]
-- [fs] gfs2: Fix MAGIC check in LVBs (Robert S Peterson) [1600142]
-- [fs] gfs2: Do not reset flags on active reservations (Robert S Peterson) [1600142]
-- [fs] cifs: Fix stack out-of-bounds in smb(2, 3)_create_lease_buf() (Leif Sahlberg) [1598755]
-- [fs] cifs: store the leaseKey in the fid on SMB2_open (Leif Sahlberg) [1598755]
-- [fs] nfsd: further refinement of content of /proc/fs/nfsd/versions (Steve Dickson) [1614603]
-- [fs] nfsd: fix configuration of supported minor versions (Steve Dickson) [1614603]
-- [fs] nfsd: Fix display of the version string (Steve Dickson) [1614603]
-- [fs] nfsd: correctly range-check v4.x minor version when setting versions (Steve Dickson) [1614603]
-- [fs] ext4: Close race between direct IO and ext4_break_layouts() (Eric Sandeen) [1616301]
-- [fs] xfs: Close race between direct IO and xfs_break_layouts() (Eric Sandeen) [1616301]
-- [fs] ext4: handle layout changes to pinned DAX mappings (Eric Sandeen) [1614153]
-- [fs] dax: dax_layout_busy_page() warn on !exceptional (Eric Sandeen) [1614153]
-- [gpu] makefile: bump drm backport version (Rob Clark) [1600569]
-- [gpu] drm/nouveau/gem: off by one bugs in nouveau_gem_pushbuf_reloc_apply() (Rob Clark) [1600569]
-- [gpu] amd/dc/dce100: On dce100, set clocks to 0 on suspend (Rob Clark) [1600569]
-- [gpu] drm/amdgpu: fix swapped emit_ib_size in vce3 (Rob Clark) [1600569]
-- [gpu] drm/amd/powerplay: correct vega12 thermal support as true (Rob Clark) [1600569]
-- [gpu] drm/atomic: Initialize variables in drm_atomic_helper_async_check() to make gcc happy (Rob Clark) [1600569]
-- [gpu] drm/atomic: Check old_plane_state->crtc in drm_atomic_helper_async_check() (Rob Clark) [1600569]
-- [gpu] drm/amdgpu: Avoid reclaim while holding locks taken in MMU notifier (Rob Clark) [1600569]
-- [gpu] drm/dp/mst: Fix off-by-one typo when dump payload table (Rob Clark) [1600569]
-- [gpu] drm/atomic-helper: Drop plane->fb references only for drm_atomic_helper_shutdown() (Rob Clark) [1600569]
-- [gpu] drm/gma500: fix psb_intel_lvds_mode_valid()'s return type (Rob Clark) [1600569]
-- [gpu] drm/atomic: Handling the case when setting old crtc for plane (Rob Clark) [1600569]
-- [gpu] drm/amd/display: Fix dim display on DCE11 (Rob Clark) [1600569]
-- [gpu] drm/amdgpu: Remove VRAM from shared bo domains (Rob Clark) [1600569]
-- [gpu] drm/radeon: fix mode_valid's return type (Rob Clark) [1600569]
-- [gpu] drm/amd/display: remove need of modeset flag for overlay planes (V2) (Rob Clark) [1600569]
-- [gpu] drm/amd/display: Do not program interrupt status on disabled crtc (Rob Clark) [1600569]
-- [gpu] drm/amd/powerplay: Set higher SCLK&MCLK frequency than dpm7 in OD (v2) (Rob Clark) [1600569]
-- [gpu] drm/i915/glk: Add Quirk for GLK NUC HDMI port issues (Rob Clark) [1600569]
-- [gpu] drm/nouveau: Set DRIVER_ATOMIC cap earlier to fix debugfs (Rob Clark) [1600569]
-- [gpu] drm/nouveau/drm/nouveau: Fix runtime PM leak in nv50_disp_atomic_commit() (Rob Clark) [1600569]
-- [gpu] drm/nouveau: Avoid looping through fake MST connectors (Rob Clark) [1600569]
-- [gpu] drm/nouveau: Use drm_connector_list_iter_* for iterating connectors (Rob Clark) [1600569]
-- [gpu] drm/nouveau: Remove bogus crtc check in pmops_runtime_idle (Rob Clark) [1600569]
-- [gpu] revert "drm/amd/display: Don't return ddc result and read_bytes in same return value" (Rob Clark) [1600569]
-- [gpu] drm/i915: Fix hotplug irq ack on i965/g4x (Rob Clark) [1600569]
-- [gpu] drm/amdgpu: Reserve VM root shared fence slot for command submission (v3) (Rob Clark) [1600569]
-- [x86] unwind: Ensure stack grows down (Josh Poimboeuf) [1609717]
-
-* Fri Aug 31 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-942.el7]
-- [mm] fix devmem_is_allowed() for sub-page System RAM intersections (Joe Lawrence) [1524322]
-- [pci] Delay after FLR of Intel DC P3700 NVMe (Alex Williamson) [1592654]
-- [pci] Disable Samsung SM961/PM961 NVMe before FLR (Alex Williamson) [1542494]
-- [pci] Export pcie_has_flr() (Alex Williamson) [1592654 1542494]
-- [nvdimm] libnvdimm: Export max available extent (Jeff Moyer) [1611761]
-- [nvdimm] libnvdimm: Use max contiguous area for namespace size (Jeff Moyer) [1611761]
-- [mm] ipc/shm.c add ->pagesize function to shm_vm_ops (Jeff Moyer) [1609834]
-- [kernel] mm: disallow mappings that conflict for devm_memremap_pages() (Jeff Moyer) [1616044]
-- [kernel] memremap: fix softlockup reports at teardown (Jeff Moyer) [1616187]
-- [kernel] memremap: add scheduling point to devm_memremap_pages (Jeff Moyer) [1616187]
-- [mm] page_alloc: add scheduling point to memmap_init_zone (Jeff Moyer) [1616187]
-- [mm] memory_hotplug: add scheduling point to __add_pages (Jeff Moyer) [1616187]
-- [acpi] nfit: Fix scrub idle detection (Jeff Moyer) [1616041]
-- [x86] asm/memcpy_mcsafe: Fix copy_to_user_mcsafe() exception handling (Jeff Moyer) [1608674]
-- [nvdimm] libnvdimm, pmem: Fix memcpy_mcsafe() return code handling in nsio_rw_bytes() (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: advertise a write cache for nfit_test (Jeff Moyer) [1608674]
-- [tools] x86, nfit_test: Add unit test for memcpy_mcsafe() (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: fix missing newline in nfit_test_dimm 'handle' attribute (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: support nfit_test_dimm attributes under nfit_test.1 (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: allow custom error code injection (Jeff Moyer) [1608674]
-- [tools] libnvdimm, testing: update the default smart ctrl_temperature (Jeff Moyer) [1608674]
-- [tools] libnvdimm, testing: Add emulation for smart injection commands (Jeff Moyer) [1608674]
-- [tools] nfit_test: prevent parsing error of nfit_test.0 (Jeff Moyer) [1608674]
-- [tools] nfit_test: fix buffer overrun, add sanity check (Jeff Moyer) [1608674]
-- [tools] nfit_test: improve structure offset handling (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: force nfit_test to depend on instrumented modules (Jeff Moyer) [1608674]
-- [tools] libnvdimm/nfit_test: adding support for unit testing enable LSS status (Jeff Moyer) [1612421]
-- [tools] libnvdimm/nfit_test: add firmware download emulation (Jeff Moyer) [1612420]
-- [kernel] jiffies: add time comparison functions for 64 bit jiffies (Jeff Moyer) [1612420]
-- [tools] testing/nvdimm: smart alarm/threshold control (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: unit test clear-error commands (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: stricter bounds checking for error injection commands (Jeff Moyer) [1608674]
-- [tools] nfit_test: when clearing poison, also remove badrange entries (Jeff Moyer) [1608674]
-- [tools] nfit_test: add error injection DSMs (Jeff Moyer) [1612417]
-- [nvdimm] pmem: Switch to copy_to_iter_mcsafe() (Jeff Moyer) [1608674]
-- [fs] dax: Report bytes remaining in dax_iomap_actor() (Jeff Moyer) [1608674]
-- [lib] uio, lib: Fix CONFIG_ARCH_HAS_UACCESS_MCSAFE compilation (Jeff Moyer) [1608674]
-- [net] x86/asm/memcpy_mcsafe: Define copy_to_iter_mcsafe() (Jeff Moyer) [1608674]
-- [x86] asm/memcpy_mcsafe: Add write-protection-fault handling (Jeff Moyer) [1608674]
-- [x86] asm/memcpy_mcsafe: Return bytes remaining (Jeff Moyer) [1608674]
-- [x86] asm/memcpy_mcsafe: Add labels for __memcpy_mcsafe() write fault handling (Jeff Moyer) [1608674]
-- [x86] asm/memcpy_mcsafe: Remove loop unrolling (Jeff Moyer) [1608674]
-- [net] dax: Introduce a ->copy_to_iter dax operation (Jeff Moyer) [1608674]
-- [kernel] dax: remove default copy_from_iter fallback (Jeff Moyer) [1539264]
-- [fs] filesystem-dax: convert to dax_copy_from_iter() (Jeff Moyer) [1608674]
-- [md] dm log writes: record metadata flag for better flags record (Jeff Moyer) [1539264]
-- [md] dax, dm: allow device-mapper to operate without dax support (Jeff Moyer) [1539264]
-- [md] dm log writes: fix max length used for kstrndup (Jeff Moyer) [1539264]
-- [md] dm log writes: add support for DAX (Jeff Moyer) [1539264]
-- [md] dm log writes: add support for inline data buffers (Jeff Moyer) [1539264]
-- [md] dm log writes: fix >512b sectorsize support (Jeff Moyer) [1539264]
-- [md] dm log writes: don't use all the cpu while waiting to log blocks (Jeff Moyer) [1539264]
-- [md] dm log writes: fix check of kthread_run() return value (Jeff Moyer) [1539264]
-- [md] dm log writes: fix bug with too large bios (Jeff Moyer) [1539264]
-- [md] dm log writes: move IO accounting earlier to fix error path (Jeff Moyer) [1539264]
-- [md] dm log writes: use ULL suffix for 64-bit constants (Jeff Moyer) [1539264]
-- [md] dm: add log writes target (Jeff Moyer) [1539264]
-- [md] dm: add ->copy_from_iter() dax operation support (Jeff Moyer) [1539264]
-- [powerpc] fadump: cleanup crash memory ranges support (Gustavo Duarte) [1621969]
-- [powerpc] fadump: merge adjacent memory ranges to reduce PT_LOAD segements (Gustavo Duarte) [1621969]
-- [powerpc] fadump: handle crash memory ranges array index overflow (Gustavo Duarte) [1621969]
-- [powerpc] fadump: Unregister fadump on kexec down path (Gustavo Duarte) [1621969]
-- [powerpc] fadump: Return error when fadump registration fails (Gustavo Duarte) [1621969]
-- [powerpc] iommu: Do not call PageTransHuge() on tail pages (David Gibson) [1594347]
-- [powerpc] kvm: book3s hv: Migrate pinned pages out of CMA (David Gibson) [1594347]
-
-* Fri Aug 31 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-941.el7]
-- [tools] power turbostat: Allow for broken ACPI LPIT tables (Prarit Bhargava) [1614083]
-- [base] pm/runtime: Avoid false-positive warnings from might_sleep_if() (Paul Lai) [1615223]
-- [md] dm thin: stop no_space_timeout worker when switching to write-mode (Mike Snitzer) [1620251]
-- [netdrv] mlx5e: Only allow offloading decap egress (egdev) flows (Erez Alfasi) [1619641]
-- [netdrv] mlx5-core: Mark unsupported devices (Don Dutile) [1621824 1621810]
-- [netdrv] bnx2x: disable GSO where gso_size is too big for hardware (Jonathan Toppins) [1546760] {CVE-2018-1000026}
-- [net] create skb_gso_validate_mac_len() (Jonathan Toppins) [1546760] {CVE-2018-1000026}
-- [scsi] target: iscsi: cxgbit: fix max iso npdu calculation (Arjun Vynipadath) [1613307]
-- [scsi] csiostor: update csio_get_flash_params() (Arjun Vynipadath) [1613307]
-- [scsi] lpfc: Correct MDS diag and nvmet configuration (Dick Kennedy) [1616104]
-- [qla2xxx] Mark NVMe/FC initiator mode usage as technology preview (Ewan Milne) [1620258]
-- [nvme-fc] Take NVMe/FC initiator out of technology preview (Ewan Milne) [1620258]
-- [mm] inode: avoid softlockup in prune_icache_sb (Andrea Arcangeli) [1610560]
-- [mm] compaction: reschedule immediately if need_resched() is set (Andrea Arcangeli) [1610560]
-- [mm] compaction: properly signal and act upon lock and need_sched() contention (Andrea Arcangeli) [1610560]
-- [mm] compaction: cleanup isolate_freepages() (Andrea Arcangeli) [1610560]
-- [mm] compaction: encapsulate defer reset logic (Andrea Arcangeli) [1610560]
-- [mm] compaction.c: periodically schedule when freeing pages (Andrea Arcangeli) [1610560]
-- [powerpc] powernv/pci: Work around races in PCI bridge enabling (Gustavo Duarte) [1620041]
-- [powerpc] kdump: Handle crashkernel memory reservation failure (Pingfan Liu) [1621945]
-- [powerpc] ftrace: Match dot symbols when searching functions on ppc64 (Jerome Marchand) [1613136]
-- [x86] entry/64: Restore TRACE_IRQS_IRETQ in paranoid_exit (Scott Wood) [1561777]
-
-* Tue Aug 28 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-940.el7]
-- [net] sched: Fix missing res info when create new tc_index filter (Hangbin Liu) [1607687]
-- [net] sched: fix NULL pointer dereference when delete tcindex filter (Hangbin Liu) [1607687]
-- [net] dev: advertise the new ifindex when the netns iface changes (Michael Cambria) [1584287]
-- [net] dev: always advertise the new nsid when the netns iface changes (Michael Cambria) [1584287]
-- [net] Zero ifla_vf_info in rtnl_fill_vfinfo() (Hangbin Liu) [1614178]
-- [net] udpv6: Fix the checksum computation when HW checksum does not apply (Xin Long) [1619793]
-- [net] tc: ensure that offloading callback is called for MQPRIO qdisc (Ivan Vecera) [1618579]
-- [thunderbolt] move tb3 to full support status (Jarod Wilson) [1620372]
-- [kernel] x86/platform/uv: Add adjustable set memory block size function (Baoquan He) [1601867]
-- [mm] memory_hotplug: remove timeout from __offline_memory (Baoquan He) [1601867]
-- [mm] memory_hotplug: do not fail offlining too early (Baoquan He) [1601867]
-- [x86] mm/memory_hotplug: determine block size based on the end of boot memory (Baoquan He) [1601867]
-- [x86] mm: Streamline and restore probe_memory_block_size() (Baoquan He) [1601867]
-- [x86] mm: Use 2GB memory block size on large-memory x86-64 systems (Baoquan He) [1601867]
-- [x86] mm: probe memory block size for generic x86 64bit (Baoquan He) [1601867]
-- [x86] revert platform/uv: Add adjustable set memory block size function (Baoquan He) [1601867]
-
-* Mon Aug 27 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-939.el7]
-- [nvme] rdma: Fix command completion race at error recovery (David Milburn) [1610641]
-- [infiniband] revert vmw_pvrdma: Call ib_umem_release on destroy QP path (Don Dutile) [1618625]
-- [infiniband] iw_cxgb4: correctly enforce the max reg_mr depth (Arjun Vynipadath) [1613317]
-- [netdrv] net: aquantia: Fix IFF_ALLMULTI flag functionality (Igor Russkikh) [1608762]
-- [uio] fix possible circular locking dependency (Xiubo Li) [1613195]
-- [tools] power turbostat: Fix logical node enumeration to allow for non-sequential physical nodes (Prarit Bhargava) [1612902]
-- [tools] bpf selftest: Disable unsupported verifier tests (Jiri Olsa) [1615222]
-- [tools] bpf: fix panic due to oob in bpf_prog_test_run_skb (Jiri Olsa) [1615222]
-- [net] bpf: Align packet data properly in program testing framework (Jiri Olsa) [1615222]
-- [net] bpf: Do not dereference user pointer in bpf_test_finish() (Jiri Olsa) [1615222]
-- [tools] bpf: migrate ebpf ld_abs/ld_ind tests to test_verifier (Jiri Olsa) [1615222]
-- [tools] bpf: add verifier tests for accesses to map values (Jiri Olsa) [1615222]
-- [kernel] bpf: allow map helpers access to map values directly (Jiri Olsa) [1615222]
-- [kernel] cpuset: fix a warning when clearing configured masks in old hierarchy (Aristeu Rozanski) [1613248]
-- [kernel] percpu_ref: Update doc to dissuade users from depending on internal RCU grace periods (Prarit Bhargava) [1603603]
-- [kernel] percpu: READ_ONCE() now implies smp_read_barrier_depends() (Prarit Bhargava) [1603603]
-- [kernel] locking/barriers: Add implicit smp_read_barrier_depends() to READ_ONCE() (Prarit Bhargava) [1603603]
-- [kernel] compiler, atomics, kasan: Provide READ_ONCE_NOCHECK() (Prarit Bhargava) [1603603]
-- [kernel] percpu-refcount: init ->confirm_switch member properly (Prarit Bhargava) [1603603]
-- [kernel] percpu, locking: revert ("percpu: Replace smp_read_barrier_depends() with lockless_dereference()") (Prarit Bhargava) [1603603]
-- [x86] microcode: Allow late microcode loading with SMT disabled (Josh Poimboeuf) [1614515]
-- [x86] intel_rdt: Enable CMT and MBM on new Skylake stepping (Jiri Olsa) [1517736]
-
-* Tue Aug 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-938.el7]
-- [netdrv] mlx5e: Properly check if hairpin is possible between two functions (Alaa Hleihel) [1611567]
-- [netdrv] bnx2x: Fix invalid memory access in rss hash config path (Jonathan Toppins) [1615290]
-- [netdrv] iwlwifi: pcie: compare with number of IRQs requested for, not number of CPUs (Stanislaw Gruszka) [1616290]
-- [netdrv] ibmvnic: Update firmware error reporting with cause string (Steve Best) [1614652]
-- [netdrv] ibmvnic: Remove code to request error information (Steve Best) [1614652]
-- [scsi] fcoe: hold disc_mutex when traversing rport lists (Chris Leech) [1608481]
-- [scsi] libfc: hold disc_mutex in fc_disc_stop_rports() (Chris Leech) [1608481]
-- [scsi] libfc: fixup lockdep annotations (Chris Leech) [1608481]
-- [scsi] libfc: fixup 'sleeping function called from invalid context' (Chris Leech) [1608481]
-- [scsi] libfc: Add lockdep annotations (Chris Leech) [1608481]
-- [scsi] libiscsi: fix possible NULL pointer dereference in case of TMF (Chris Leech) [1613262]
-- [scsi] qla2xxx: Fix memory leak for allocating abort IOCB (Himanshu Madhani) [1609890]
-- [scsi] hpsa: correct enclosure sas address (Joseph Szczypek) [1613021]
-- [scsi] lpfc: Remove lpfc_enable_pbde as module parameter (Dick Kennedy) [1613975]
-- [scsi] lpfc: Fix list corruption on the completion queue (Dick Kennedy) [1554777]
-- [scsi] lpfc: Fix driver crash when re-registering NVME rports (Dick Kennedy) [1613955]
-- [scsi] lpfc: Correct LCB ACCept payload (Dick Kennedy) [1613959]
-- [x86] boot/kaslr: Skip specified number of 1GB huge pages when doing physical randomization (KASLR) (Baoquan He) [1451428]
-- [x86] boot/kaslr: Add two new functions for 1GB huge pages handling (Baoquan He) [1451428]
-- [x86] platform/uv: Add kernel parameter to set memory block size (Frank Ramsay) [1595892]
-- [x86] platform/uv: Use new set memory block size function (Frank Ramsay) [1595892]
-- [x86] platform/uv: Add adjustable set memory block size function (Frank Ramsay) [1595892]
-
-* Mon Aug 20 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-937.el7]
-- [fs] dax: use __pagevec_lookup in dax_layout_busy_page (Eric Sandeen) [1505291]
-- [fs] cifs: Fix slab-out-of-bounds in send_set_info() on SMB2 ACE setting (Leif Sahlberg) [1598765]
-- [fs] libceph: weaken sizeof check in ceph_x_verify_authorizer_reply() (Ilya Dryomov) [1614858]
-- [fs] libceph: check authorizer reply/challenge length before reading (Ilya Dryomov) [1614858]
-- [fs] libceph: implement CEPHX_V2 calculation mode (Ilya Dryomov) [1614858]
-- [fs] libceph: add authorizer challenge (Ilya Dryomov) [1614858]
-- [fs] libceph: factor out encrypt_authorizer() (Ilya Dryomov) [1614858]
-- [fs] libceph: factor out __ceph_x_decrypt() (Ilya Dryomov) [1614858]
-- [fs] libceph: factor out __prepare_write_connect() (Ilya Dryomov) [1614858]
-- [fs] libceph: store ceph_auth_handshake pointer in ceph_connection (Ilya Dryomov) [1614858]
-- [fs] nfsv4.0: Remove transport protocol name from non-UCS client ID (Steve Dickson) [1592911]
-- [fs] nfsv4.0: Remove cl_ipaddr from non-UCS client ID (Steve Dickson) [1592911]
-- [fs] aio: properly check iovec sizes (Jeff Moyer) [1337518] {CVE-2015-8830}
-- [fs] cifs: fix up section mismatch (Jeff Moyer) [1609877]
-- [fs] skip LAYOUTRETURN if layout is invalid (Steve Dickson) [1589995]
-- [fs] gfs2: Special-case rindex for gfs2_grow (Andreas Grunbacher) [1608687]
-- [fs] ext4: Fix WARN_ON_ONCE in ext4_commit_super() (Lukas Czerner) [1596766]
-- [fs] cachefiles: Wait rather than BUG'ing on Unexpected object collision (David Howells) [1356390]
-- [fs] cachefiles: Fix missing clear of the CACHEFILES_OBJECT_ACTIVE flag (David Howells) [1356390]
-- [fs] fscache: Fix reference overput in fscache_attach_object() error handling (David Howells) [1356390]
-- [fs] cachefiles: Fix refcounting bug in backing-file read monitoring (David Howells) [1356390]
-- [fs] fscache: Allow cancelled operations to be enqueued (David Howells) [1356390]
-- [fs] ext4: avoid running out of journal credits when appending to an inline file (Lukas Czerner) [1609759] {CVE-2018-10883}
-- [fs] jbd2: don't mark block as modified if the handle is out of credits (Lukas Czerner) [1609759] {CVE-2018-10883}
-- [fs] ext4: check for allocation block validity with block group locked (Lukas Czerner) [1597702]
-- [fs] ext4: fix check to prevent initializing reserved inodes (Lukas Czerner) [1597702]
-- [fs] ext4: fix false negatives *and* false positives in ext4_check_descriptors() (Lukas Czerner) [1597702]
-- [fs] ext4: add more mount time checks of the superblock (Lukas Czerner) [1597702]
-- [fs] ext4: fix bitmap position validation (Lukas Czerner) [1597702]
-- [fs] ext4: add more inode number paranoia checks (Lukas Czerner) [1597702]
-- [fs] ext4: clear i_data in ext4_inode_info when removing inline data (Lukas Czerner) [1597702]
-- [fs] ext4: include the illegal physical block in the bad map ext4_error msg (Lukas Czerner) [1597702]
-- [fs] ext4: verify the depth of extent tree in ext4_find_extent() (Lukas Czerner) [1597702]
-- [fs] ext4: only look at the bg_flags field if it is valid (Lukas Czerner) [1597702]
-- [fs] ext4: don't update checksum of new initialized bitmaps (Lukas Czerner) [1597702]
-- [fs] ext4: add validity checks for bitmap block numbers (Lukas Czerner) [1597702]
-- [fs] ext4: make sure bitmaps and the inode table don't overlap with bg descriptors (Lukas Czerner) [1597702]
-- [fs] ext4: always check block group bounds in ext4_init_block_bitmap() (Lukas Czerner) [1597702]
-- [fs] ext4: always verify the magic number in xattr blocks (Lukas Czerner) [1597702]
-- [fs] ext4: add corruption check in ext4_xattr_set_entry() (Lukas Czerner) [1597702]
-- [net] netlink: make sure -EBUSY won't escape from netlink_insert (Davide Caratti) [1608701]
-- [net] netfilter: nf_conntrack: don't resize NULL or freed hashtable (Davide Caratti) [1601662]
-- [net] ethtool: Ensure new ring parameters are within bounds during SRINGPARAM (Ivan Vecera) [1608318]
-- [net] ipv6: make DAD fail with enhanced DAD when nonce length differs (Jarod Wilson) [1608002]
-- [net] ipv6: allow userspace to add IFA_F_OPTIMISTIC addresses (Jarod Wilson) [1608002]
-- [net] ipv6: send unsolicited NA after DAD (Jarod Wilson) [1608002]
-- [net] ipv6: display hw address of source machine during ipv6 DAD failure (Jarod Wilson) [1608002]
-- [net] ipv6: send NS for DAD when link operationally up (Jarod Wilson) [1608002]
-- [net] ipv6: avoid dad-failures for addresses with NODAD (Jarod Wilson) [1608002]
-- [net] ipv6: send unsolicited NA if enabled for all interfaces (Jarod Wilson) [1608002]
-- [net] ipv6: send unsolicited NA on admin up (Jarod Wilson) [1608002]
-- [net] ipv6: addrconf: fix generation of new temporary addresses (Jarod Wilson) [1608002]
-- [net] ipv6: addrconf: Implemented enhanced DAD (RFC7527) (Jarod Wilson) [1608002]
-
-* Fri Aug 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-936.el7]
-- [usb] typec: ucsi: Increase command completion timeout value (Torez Smith) [1575838]
-- [cpufreq] Fix policy restore in suspend/resume (Prarit Bhargava) [1600240]
-- [netdrv] cxgb4: Add missing ndo_size param to mgmtm net_device_ops struct (Arjun Vynipadath) [1614152]
-- [netdrv] i40e: Remove duplicated prepare call in i40e_shutdown (Stefan Assmann) [1488477]
-- [netdrv] sfc: fix backport of replace asynchronous filter operations (Jarod Wilson) [1607726]
-- [netdrv] igb: Remove superfluous reset to PHY and page 0 selection (Corinna Vinschen) [1611610]
-- [netdrv] mlx5e: Set port trust mode to PCP as default (Alaa Hleihel) [1610866]
-- [netdrv] iwlwifi: add more card IDs for 9000 series (Stanislaw Gruszka) [1607982]
-- [netdrv] iwlwifi: add a bunch of new 9000 PCI IDs (Stanislaw Gruszka) [1607982]
-- [netdrv] iwlwifi: add shared clock PHY config flag for some devices (Stanislaw Gruszka) [1607982]
-- [vfio] pci: Make IGD support a configurable option (Alex Williamson) [1590513]
-- [md] dm cache metadata: set dirty on all cache blocks after a crash (Mike Snitzer) [1592944]
-- [md] dm snapshot: improve performance by switching out_of_order_list to rbtree (Mike Snitzer) [1611822]
-- [md] dm kcopyd: avoid softlockup in run_complete_job (Mike Snitzer) [1611822]
-- [md] dm snapshot: use mutex instead of rw_semaphore (Mike Snitzer) [1611822]
-- [firmware] dcdbas: Add support for WSMT ACPI table (Charles Rose) [1524003]
-- [firmware] dma-api: dcdbas: update DMA mask handing (Charles Rose) [1524003]
-- [acpi] acpica: tables: Add WSMT support (Charles Rose) [1524003]
-- [s390] qeth: don't clobber buffer on async TX completion (Hendrik Brueckner) [1613970]
-- [powerpc] pseries: Fix CONFIG_NUMA=n build (Gustavo Duarte) [1544437]
-- [powerpc] pseries: Add empty update_numa_cpu_lookup_table() for NUMA=n (Gustavo Duarte) [1544437]
-- [powerpc] pseries: Fix build break for SPLPAR=n and CPU hotplug (Gustavo Duarte) [1544437]
-- [powerpc] numa: Invalidate numa_cpu_lookup_table on cpu remove (Gustavo Duarte) [1544437]
-- [powerpc] vphn: Fix numa update end-loop bug (Gustavo Duarte) [1544437]
-- [powerpc] hotplug: Improve responsiveness of hotplug change (Gustavo Duarte) [1544437]
-- [powerpc] vphn: Improve recognition of PRRN/VPHN (Gustavo Duarte) [1544437]
-- [powerpc] vphn: Update CPU topology when VPHN enabled (Gustavo Duarte) [1544437]
-
-* Fri Aug 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-935.el7]
-- [x86] umip: Print a warning into the syslog if UMIP-protected instructions are used (Gopal Tiwari) [1456572]
-- [x86] umip: Identify the STR and SLDT instructions (Gopal Tiwari) [1456572]
-- [x86] umip: Print a line in the boot log that UMIP has been enabled (Gopal Tiwari) [1456572]
-- [x86] umip: Select X86_INTEL_UMIP by default (Gopal Tiwari) [1456572]
-- [tools] selftests/x86: Add tests for the STR and SLDT instructions (Gopal Tiwari) [1456572]
-- [tools] selftests/x86: Add tests for User-Mode Instruction Prevention (Gopal Tiwari) [1456572]
-- [x86] traps: Fix up general protection faults caused by UMIP (Gopal Tiwari) [1456572]
-- [x86] umip: Enable User-Mode Instruction Prevention at runtime (Gopal Tiwari) [1456572]
-- [x86] umip: Force a page fault when unable to copy emulated result to user (Gopal Tiwari) [1456572]
-- [x86] umip: Add emulation code for UMIP instructions (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add support to resolve 16-bit address encodings (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Handle 32-bit address encodings in virtual-8086 mode (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add wrapper function for 32 and 64-bit addresses (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add support to resolve 32-bit address encodings (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Compute linear address in several utility functions (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Extend get_seg_base_addr() to also obtain segment limit (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Incorporate segment base in linear address computation (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Indicate a 32-bit displacement if ModRM.mod is 0 and ModRM.rm is 101b (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add function to get default params of code segment (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add utility functions to get segment descriptor base address and limit (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add utility function to get segment descriptor (Gopal Tiwari) [1456572]
-- [kernel] sched/core: Idle_task_exit() shouldn't use switch_mm_irqs_off() (Gopal Tiwari) [1456572]
-- [kernel] sched/core: Add switch_mm_irqs_off() and use it in the scheduler (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add utility functions to get segment selector (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add utility function to identify string instructions (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add a utility function to get register offsets (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Do not BUG on invalid register type (Gopal Tiwari) [1456572]
-- [x86] mpx, x86/insn: Relocate insn util functions to a new insn-eval file (Gopal Tiwari) [1456572]
-- [x86] mpx: Fix off-by-one comparison with nr_registers (Gopal Tiwari) [1456572]
-- [x86] mpx: Do not use SIB.base if its value is 101b and ModRM.mod = 0 (Gopal Tiwari) [1456572]
-- [x86] mpx: Do not use SIB.index if its value is 100b and ModRM.mod is not 11b (Gopal Tiwari) [1456572]
-- [x86] mpx: Use signed variables to compute effective addresses (Gopal Tiwari) [1456572]
-- [x86] ptrace, x86: Make user_64bit_mode() available to 32-bit builds (Gopal Tiwari) [1456572]
-- [x86] mpx: Simplify handling of errors when computing linear addresses (Gopal Tiwari) [1456572]
-- [x86] uprobes/x86: Use existing definitions for segment override prefixes (Gopal Tiwari) [1456572]
-- [x86] boot: Relocate definition of the initial state of CR0 (Gopal Tiwari) [1456572]
-- [x86] mm: Relocate page fault error codes to traps.h (Gopal Tiwari) [1456572]
-- [x86] pkeys: Add fault handling for PF_PK page fault bit (Gopal Tiwari) [1456572]
-- [x86] entry: Use SYSCALL_DEFINE() macros for sys_modify_ldt() (Gopal Tiwari) [1456572]
-- [x86] ldt/64: Refresh DS and ES when modify_ldt changes an entry (Gopal Tiwari) [1456572]
-- [x86] ldt: Make all size computations unsigned (Gopal Tiwari) [1456572]
-- [x86] ldt: Make a size argument unsigned (Gopal Tiwari) [1456572]
-- [x86] mpx: Fix instruction decoder condition (Gopal Tiwari) [1456572]
-- [tools] selftests/x86: Add a fork() to entry_from_vm86 to catch fork bugs (Gopal Tiwari) [1456572]
-- [x86] ldt: Fix small LDT allocation for Xen (Gopal Tiwari) [1456572]
-- [x86] ldt: Correct LDT access in single stepping logic (Gopal Tiwari) [1456572]
-- [x86] ldt: Print the real LDT base address (Gopal Tiwari) [1456572]
-- [x86] ldt: Make modify_ldt synchronous (Gopal Tiwari) [1456572]
-- [x86] espfix: Make it possible to disable 16-bit support (Gopal Tiwari) [1456572]
-- [tools] selftests/x86/vm86: Fix entry_from_vm86 test on 64-bit kernels (Gopal Tiwari) [1456572]
-- [tools] x86/selftests, x86/vm86: Improve entry_from_vm86 selftest (Gopal Tiwari) [1456572]
-- [tools] x86/asm/entry/32, selftests: Add a selftest for kernel entries from VM86 mode (Gopal Tiwari) [1456572]
-- [tools] selftest, x86: fix incorrect comment (Gopal Tiwari) [1456572]
-- [tools] selftests, x86: Rework x86 target architecture detection (Gopal Tiwari) [1456572]
-- [tools] selftests, x86: Remove useless run_tests rule (Gopal Tiwari) [1456572]
-- [tools] selftests/x86: install tests (Gopal Tiwari) [1456572]
-- [tools] selftest/x86: have no dependency on all when cross building (Gopal Tiwari) [1456572]
-- [tools] selftest/x86: build both bitnesses (Gopal Tiwari) [1456572]
-- [tools] x86, selftests: Add single_step_syscall test (Gopal Tiwari) [1456572]
-- [tools] x86, selftests: Add sigreturn selftest (Gopal Tiwari) [1456572]
-- [x86] skip check for spurious faults for non-present faults (Gopal Tiwari) [1456572]
-
-* Wed Aug 15 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-934.el7]
-- [kernel] tracing/kprobe: Release kprobe print_fmt properly (Jiri Olsa) [1597984]
-- [kernel] perf/core: Fix perf_uprobe_init() (Jiri Olsa) [1597984]
-- [kernel] perf/core: Fix perf_kprobe_init() (Jiri Olsa) [1597984]
-- [kernel] perf/core: Implement the 'perf_uprobe' PMU (Jiri Olsa) [1597984]
-- [kernel] perf/core: Implement the 'perf_kprobe' PMU (Jiri Olsa) [1597984]
-- [kernel] tracing: Make alloc_rh_data/destroy_rh_data public (Jiri Olsa) [1597984]
-- [kernel] perf/core: prepare perf_event.h for new types: 'perf_kprobe' and 'perf_uprobe' (Jiri Olsa) [1597984]
-- [kernel] perf, bpf: Add BPF support to all perf_event types (Jiri Olsa) [1597984]
-- [tools] bpftool: Add RHEL7 related note to bpftool-cgroup man page (Jiri Olsa) [1593026]
-- [tools] Update bpf uapi headers (Jiri Olsa) [1593026]
-- [kernel] tracing: Fix possible out of bounds memory access when parsing enums (Jiri Olsa) [1593026]
-- [kernel] bpf: remove tracepoints from bpf core (Jiri Olsa) [1593026]
-- [kernel] bpf/tracing: fix a deadlock in perf_event_detach_bpf_prog (Jiri Olsa) [1593026]
-- [kernel] bpf: fix bpf_prog_array_copy_to_user warning from perf event prog query (Jiri Olsa) [1593026]
-- [kernel] bpf: set maximum number of attached progs to 64 for a single perf tp (Jiri Olsa) [1593026]
-- [kernel] bpf: avoid rcu_dereference inside bpf_event_mutex lock region (Jiri Olsa) [1593026]
-- [kernel] bpf: fix bpf_prog_array_copy_to_user() issues (Jiri Olsa) [1593026]
-- [kernel] bpf/tracing: fix kernel/events/core.c compilation error (Jiri Olsa) [1593026]
-- [kernel] bpf/tracing: allow user space to query prog array on the same tp (Jiri Olsa) [1593026]
-- [kernel] bpf: introduce BPF_PROG_QUERY command (Jiri Olsa) [1593026]
-- [kernel] bpf: permit multiple bpf attachments for a single perf event (Jiri Olsa) [1593026]
-- [kernel] bpf: use the same condition in perf event set/free bpf handler (Jiri Olsa) [1593026]
-- [kernel] perf, bpf: minimize the size of perf_trace_() tracepoint handler (Jiri Olsa) [1593026]
-- [trace] perf, bpf: allow bpf programs attach to tracepoints (Jiri Olsa) [1593026]
-- [trace] tracing/perf: Avoid perf_trace_buf_*() in perf_trace_##call() when possible (Jiri Olsa) [1593026]
-- [kernel] bpf: multi program support for cgroup+bpf (Jiri Olsa) [1593026]
-- [kernel] bpf: implement syscall command BPF_MAP_GET_NEXT_KEY for stacktrace map (Jiri Olsa) [1593026]
-- [kernel] bpf: extend stackmap to save binary_build_id+offset instead of address (Jiri Olsa) [1593026]
-- [kernel] bpf: use array_index_nospec in find_prog_type (Jiri Olsa) [1593026]
-- [kernel] bpf: fix possible spectre-v1 in find_and_alloc_map() (Jiri Olsa) [1593026]
-- [kernel] bpf/syscall: fix warning defined but not used (Jiri Olsa) [1593026]
-- [kernel] bpf: Check attach type at prog load time (Jiri Olsa) [1593026]
-- [kernel] bpf: offload: rename the ifindex field (Jiri Olsa) [1593026]
-- [kernel] bpf: offload: add infrastructure for loading programs for a specific netdev (Jiri Olsa) [1593026]
-- [kernel] bpf: fix truncated jump targets on heavy expansions (Jiri Olsa) [1593026]
-- [kernel] bpf: follow idr code convention (Jiri Olsa) [1593026]
-- [kernel] bpf: Prevent memory disambiguation attack (Jiri Olsa) [1593026]
-- [kernel] bpf: properly enforce index mask to prevent out-of-bounds speculation (Jiri Olsa) [1593026]
-- [kernel] bpf: Rename bpf_verifer_log (Jiri Olsa) [1593026]
-- [kernel] bpf: reconcile bpf_tail_call and stack_depth (Jiri Olsa) [1593026]
-- [kernel] bpf: export whether tail call has jited owner (Jiri Olsa) [1593026]
-- [net] bpf: get rid of pure_initcall dependency to enable jits (Jiri Olsa) [1593026]
-- [kernel] bpf: fix cb access in socket filter programs on tail calls (Jiri Olsa) [1593026]
-- [kernel] bpf: dev_map_alloc() shouldn't return NULL (Jiri Olsa) [1593026]
-- [kernel] bpf: remove tail_call and get_stackid helper declarations from bpf.h (Jiri Olsa) [1593026]
-- [kernel] bpf: update the comment about the length of analysis (Jiri Olsa) [1593026]
-- [kernel] bpf: Use correct #ifdef controller for trace_call_bpf() (Jiri Olsa) [1593026]
-- [kernel] bpf: comment why dots in filenames under BPF virtual FS are not allowed (Jiri Olsa) [1593026]
-- [kernel] bpf: avoid false sharing of map refcount with max_entries (Jiri Olsa) [1593026]
-- [kernel] perf, bpf: fix conditional call to bpf_overflow_handler (Jiri Olsa) [1593026]
-- [kernel] bpf: fix mlock precharge on arraymaps (Jiri Olsa) [1593026]
-- [kernel] bpf: add schedule points in percpu arrays management (Jiri Olsa) [1593026]
-- [kernel] bpf: fix numa_node validation (Jiri Olsa) [1593026]
-- [kernel] bpf: fix lockdep splat (Jiri Olsa) [1593026]
-- [tools] bpf: add test for the verifier equal logic bug (Jiri Olsa) [1593026]
-- [kernel] trace/bpf: remove helper bpf_perf_prog_read_value from tracepoint type programs (Jiri Olsa) [1593026]
-
-* Sat Aug 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-933.el7]
-- [kernel] cpu/hotplug: Fix 'online' sysfs entry with 'nosmt' (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: Enable 'nosmt' as late as possible (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: detect SMT disabled by BIOS (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [documentation] l1tf: fix typos (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: remove extra newline in 'vmentry_l1d_flush' sysfs file (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: initialize the vmx_l1d_flush_pages' content (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] x86/speculation/l1tf: Unbreak !__HAVE_ARCH_PFN_MODIFY_ALLOWED architectures (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [documentation] add section about cpu vulnerabilities (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] bugs, kvm: introduce boot-time control of l1tf mitigations (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: set cpu_smt_not_supported early (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: expose smt control init function (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: allow runtime control of l1d flush (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: serialize l1d flush parameter setter (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: add static key for flush always (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: move l1tf setup function (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: handle ept disabled state proper (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: drop l1tf msr list approach (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] litf: introduce vmx status variable (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] bugs: make cpu_show_common() static (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] bugs: concentrate bug reporting into a separate function (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: online siblings when smt control is turned on (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: use msr save list for ia32_flush_cmd if required (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: extend add_atomic_switch_msr() to allow vmenter only msrs (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: separate the vmx autoload guest/host number accounting (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: add find_msr() helper function (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: split the vmx msr load structures to have an host/guest numbers (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: x86: mitigation for l1 cache terminal fault vulnerabilities, part 3 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] x86/kvm: warn user if kvm is loaded smt and l1tf cpu bug being present (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: boot ht siblings at least once, part 2 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] speculation/l1tf: fix typo in l1tf mitigation string (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [mm] x86, l1tf: protect _page_file ptes against speculation (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/hotplug: boot ht siblings at least once (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: boot ht siblings at least once (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] revert "x86/apic: ignore secondary threads if nosmt=force" (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] speculation/l1tf: fix up pte->pfn conversion for pae (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] speculation/l1tf: protect pae swap entries against l1tf (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/amd: move topoext reenablement before reading smp_num_siblings (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] speculation/l1tf: extend 64bit swap file size limit (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/amd: remove the pointless detect_ht() call (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] bugs: move the l1tf function and define pr_fmt properly (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: provide knobs to control smt, part 2 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] topology: provide topology_smt_supported() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] smp: provide topology_is_primary_thread(), part 2 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] apic: ignore secondary threads if nosmt=force (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/amd: evaluate smp_num_siblings early (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/amd: do not check cpuid max ext level before parsing smp info (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/intel: evaluate smp_num_siblings early (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/topology: provide detect_extended_topology_early() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/common: provide detect_ht_early() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu: remove the pointless cpu printout (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: provide knobs to control smt (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: split do_cpu_down() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] smp: provide topology_is_primary_thread() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: fix build for config_numa_balancing=n (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] [x86] [kernel] x86, l1tf: sync with latest l1tf patches (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: protect _page_numa ptes and pmds against speculation (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [mm] l1tf: disallow non privileged high mmio prot_none mappings (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: report if too much memory for l1tf workaround (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [mm] x86, l1tf: limit swap file size to max_pa/2 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] x86, l1tf: add sysfs reporting for l1tf (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: make sure the first page is always reserved (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: protect prot_none ptes against speculation (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: Protect swap entries against L1TF (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: Increase 32bit PAE __PHYSICAL_PAGE_MASK (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] mm: fix swap entry comment and macro (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] spec_ctrl: sync with upstream cpu_set_bug_bits() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] add support for l1d flush msr (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: mitigation for L1 cache terminal fault vulnerabilities (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-
-* Sat Aug 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-932.el7]
-- [powerpc] add missing barrier_nospec() in __get_user64_nocheck() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] rme9652: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] hdspm: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] asihpi: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] opl3: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] hda: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] seq: oss: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] seq: oss: Fix unbalanced use lock for synth MIDI device (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [net] atm: Fix potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] time: Protect posix clock array access against speculation (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] sys.c: fix potential Spectre v1 issue (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] autogroup: Fix possible Spectre-v1 indexing for sched_prio_to_weight (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] core: Fix possible Spectre-v1 indexing for ->aux_pages (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [ipc] sem: mitigate semnum index against spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] control: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [usb] vhci_sysfs: fix potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [media] dvb_ca_en50221: prevent using slot_info for Spectre attacs (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [media] dvb_ca_en50221: sanity check slot number from userspace (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [atm] zatm: Fix potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] kvm: Update spectre-v1 mitigation (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] kvm: Add memory barrier on vmcs field lookup (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] perf/msr: Fix possible Spectre-v1 indexing in the MSR driver (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] perf: Fix possible Spectre-v1 indexing for x86_pmu::event_map() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] perf: Fix possible Spectre-v1 indexing for hw_perf_event cache_* (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [net] nl80211: Sanitize array index in parse_txq_params (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] vfs, fdtable: Prevent bounds-check bypass via speculative execution (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] syscall: Sanitize syscall table de-references under speculation (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [powerpc] Use barrier_nospec in copy_from_user() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Introduce barrier_nospec for other arches (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] Introduce barrier_nospec (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] spectre_v1: Disable compiler optimizations over array_index_mask_nospec() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] Implement array_index_mask_nospec (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [Documentation] Document array_index_nospec (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Include <asm/barrier.h> dependency (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Allow index argument to have const-qualified type (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Kill array_index_nospec_mask_check() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Move array_index_nospec() parameter checking into separate macro (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] array_index_nospec: Sanitize speculative array de-references (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] uaccess: Use __uaccess_begin_nospec() and uaccess_try_nospec (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] always enable eager FPU by default on non-AMD processors (Paolo Bonzini) [1589048] {CVE-2018-3665}
-- [net] tcp: add tcp_ooo_try_coalesce() helper (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: call tcp_drop() from tcp_data_queue_ofo() (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: detect malicious patterns in tcp_collapse_ofo_queue() (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: avoid collapses in tcp_prune_queue() if possible (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: free batches of packets in tcp_prune_ofo_queue() (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] add rb_to_skb() and other rb tree helpers (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: fix a stale ooo_last_skb after a replace (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: use an RB tree for ooo receive queue (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: refine tcp_prune_ofo_queue() to not drop all packets (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: increment sk_drops for dropped rx packets (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [netdrv] iwlwifi: api: Add geographic profile information to MCC_UPDATE_CMD (Stanislaw Gruszka) [1591601]
-- [net] mac80211: limit wmm params to comply with ETSI requirements (Stanislaw Gruszka) [1591601]
-- [netdrv] iwlwifi: mvm: query regdb for wmm rule if needed (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fix NULL pointer derference when querying regdb (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fix spelling mistake: "uknown" -> "unknown" (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: Call reg_notifier for self managed hints (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fix possible memory leak in regdb_query_country() (Stanislaw Gruszka) [1591601]
-- [net] regulatory: Rename confusing 'country IE' in log output (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: Add API to allow querying regdb for wmm_rule (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: don't require RTNL held for regdomain reads (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: read wmm rules from regulatory database (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fully initialize old channel for event (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: initialize regulatory keys/database later (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fix CFG80211_EXTRA_REGDB_KEYDIR typo (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: implement regdb signature checking (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: reg: remove support for built-in regdb (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: support reloading regulatory database (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: support loading regulatory database as firmware (Stanislaw Gruszka) [1591601]
-- [hid] revert "input: fix confusion on conflicting mappings" (Tony Camuso) [1610273]
-- [fs] lock: show locks taken by processes from another pidns (Jeff Layton) [1605096]
-- [fs] lock: skip lock owner pid translation in case we are in init_pid_ns (Jeff Layton) [1605096]
-- [mm] swap: divide-by-zero when zero length swap file on ssd (Joe Lawrence) [1608965]
-- [mm] swap: warn when a swap area overflows the maximum size (Joe Lawrence) [1608965]
-- [mm] kvfree the swap cluster info if the swap file is unsatisfactory (Joe Lawrence) [1608965]
-
-* Tue Jul 31 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-931.el7]
-- [nvme] nvmet-fc: fix target sgl list on large transfers (Ewan Milne) [1608612]
-- [kernel] tick/sched: Do not mess with an enqueued hrtimer (Prarit Bhargava) [1573486]
-- [gpu] qxl: hook monitors_config updates into crtc, not encoder (Gerd Hoffmann) [1544322]
-- [gpu] qxl: move qxl_send_monitors_config() (Gerd Hoffmann) [1544322]
-- [gpu] qxl: remove qxl_io_log() (Gerd Hoffmann) [1544322]
-- [netdrv] mlxsw: spectrum_switchdev: Fix port_vlan refcounting (Ivan Vecera) [1609339]
-- [netdrv] cxgb4: Added missing break in ndo_udp_tunnel_(add/del) (Arjun Vynipadath) [1608354]
-- [netdrv] atlantic: remove tech preview from driver (David Arcari) [1451438]
-- [netdrv] ibmvnic: Fix error recovery on login failure (Steve Best) [1609814]
-- [netdrv] ibmvnic: Revise RX/TX queue error messages (Steve Best) [1609814]
-- [netdrv] bonding: set default miimon value for non-arp modes if not set (Jarod Wilson) [1588874 1578995 1607939]
-- [netdrv] bonding: re-evaluate force_primary when the primary slave name changes (Jarod Wilson) [1607939]
-- [netdrv] include hash policy in LAG changeupper info (Jarod Wilson) [1607939]
-- [netdrv] bonding: introduce link change helper (Jarod Wilson) [1607939]
-- [netdrv] bonding: allow use of tx hashing in balance-alb (Jarod Wilson) [1607939]
-- [netdrv] bonding: use common mac addr checks (Jarod Wilson) [1607939]
-- [netdrv] bonding: don't queue up extraneous rlb updates (Jarod Wilson) [1607939]
-- [netdrv] bonding: use the skb_get/set_queue_mapping (Jarod Wilson) [1607939]
-- [netdrv] bonding: replace the return value type (Jarod Wilson) [1607939]
-- [netdrv] bonding: do not allow rlb updates to invalid mac (Jarod Wilson) [1607939]
-- [netdrv] bonding: do not set slave_dev npinfo before slave_enable_netpoll in bond_enslave (Jarod Wilson) [1607939]
-- [netdrv] Use octal not symbolic permissions (Jarod Wilson) [1607939]
-- [netdrv] bonding: Replace mac address parsing (Jarod Wilson) [1607939]
-- [netdrv] bonding: use nla_get_u64 to extract the value for IFLA_BOND_AD_ACTOR_SYSTEM (Jarod Wilson) [1607939]
-- [netdrv] bonding: Convert multiple netdev_info messages to netdev_dbg (Jarod Wilson) [1607939]
-- [netdrv] bonding: manual clean code which call skb_put_(data:zero) (Jarod Wilson) [1607939]
-- [netdrv] bonding: make skb_put & friends return void pointers (Jarod Wilson) [1607939]
-- [netdrv] bonding: use skb_put_data() (Jarod Wilson) [1607939]
-- [netdrv] bonding: fix wq initialization for links created via netlink (Jarod Wilson) [1607939]
-- [netdrv] bonding: initialize work-queues during creation of bond (Jarod Wilson) [1607939]
-- [netdrv] bonding: restructure arp-monitor (Jarod Wilson) [1607939]
-- [netdrv] bonding: Flip to the new dev walk API (Jarod Wilson) [1607939]
-- [netdrv] bonding: use new api ethtool_(get|set)_link_ksettings (Jarod Wilson) [1607939]
-- [netdrv] bonding: Remove deprecated create_singlethread_workqueue (Jarod Wilson) [1607939]
-- [netdrv] bonding: use return instead of goto (Jarod Wilson) [1607939]
-- [netdrv] bonding: Return correct error code (Jarod Wilson) [1607939]
-- [netdrv] bonding: 3ad: allow to set ad_actor settings while the bond is up (Jarod Wilson) [1607939]
-- [netdrv] bonding: 3ad: apply ad_actor settings changes immediately (Jarod Wilson) [1607939]
-- [netdrv] bonding: add slave device name for debug (Jarod Wilson) [1607939]
-- [netdrv] bonding: Send ALB learning packets using the right source (Jarod Wilson) [1607939]
-- [powerpc] powernv/ioda2: Fix calculation for memory allocated for TCE table (Laurent Vivier) [1577922]
-- [x86] mark whiskey-lake processor supported (David Arcari) [1533335]
-
-* Mon Jul 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-930.el7]
-- [uio] fix crash after the device is unregistered (Xiubo Li) [1560418]
-- [uio] change to use the mutex lock instead of the spin lock (Xiubo Li) [1560418]
-- [uio] use request_threaded_irq instead (Xiubo Li) [1560418]
-- [uio] Prevent device destruction while fds are open (Xiubo Li) [1560418]
-- [uio] Reduce return paths from uio_write() (Xiubo Li) [1560418]
-- [uio] fix incorrect memory leak cleanup (Xiubo Li) [1560418]
-- [uio] add missing error codes (Xiubo Li) [1560418]
-- [uio] fix false positive __might_sleep warning splat (Xiubo Li) [1560418]
-- [uio] Destroy uio_idr on module exit (Xiubo Li) [1560418]
-- [uio] don't free irq that was not requested (Xiubo Li) [1560418]
-- [uio] support memory sizes larger than 32 bits (Xiubo Li) [1560418]
-- [uio] we cannot mmap unaligned page contents (Xiubo Li) [1560418]
-- [uio] Pass pointers to virt_to_page(), not integers (Xiubo Li) [1560418]
-- [uio] fix memory leak (Xiubo Li) [1560418]
-- [uio] Request/free irq separate from dev lifecycle (Xiubo Li) [1560418]
-- [uio] Simplify uio error path by using devres functions (Xiubo Li) [1560418]
-- [kernel] makefile: bump drm backport version (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Dynamically probe for ATIF handle (v2) (Rob Clark) [1590914]
-- [gpu] drm/amdgpu: Add amdgpu_atpx_get_dhandle() (Rob Clark) [1590914]
-- [gpu] drm/udl: fix display corruption of the last line (Rob Clark) [1600556]
-- [gpu] drm: Use kvzalloc for allocating blob property memory (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Make struct amdgpu_atif private to amdgpu_acpi.c (Rob Clark) [1600556]
-- [gpu] drm/i915: Enable provoking vertex fix on Gen9 systems (Rob Clark) [1600556]
-- [gpu] drm/i915: Turn off g4x DP port in .post_disable() (Rob Clark) [1600556]
-- [gpu] drm/i915: Disallow interlaced modes on g4x DP outputs (Rob Clark) [1600556]
-- [gpu] drm/i915: Fix PIPESTAT irq ack on i965/g4x (Rob Clark) [1600556]
-- [gpu] drm/i915: Allow DBLSCAN user modes with eDP/LVDS/DSI (Rob Clark) [1600556]
-- [gpu] drm/amd/display: release spinlock before committing updates to stream (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: GPU vs CPU page size fixes in amdgpu_vm_bo_split_mapping (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Update pin_size values before unpinning BO (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Make amdgpu_vram_mgr_bo_invisible_size always accurate (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Refactor amdgpu_vram_mgr_bo_invisible_size helper (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Use kvmalloc_array for allocating VRAM manager nodes array (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Don't default to DC support for Kaveri and older (Rob Clark) [1600556]
-- [gpu] drm/qxl: Call qxl_bo_unref outside atomic context (Rob Clark) [1600556]
-- [gpu] drm/i915/dp: Send DPCD ON for MST before phy_up (Rob Clark) [1600556]
-- [gpu] drm/amd/display: Clear connector's edid pointer (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: fix clear_all and replace handling in the VM (v2) (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: fix the missed vcn fw version report (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Add APU support in vi_set_vce_clocks (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Add APU support in vi_set_uvd_clocks (Rob Clark) [1600556]
-- [gpu] drm/amd/display: Update color props when modeset is required (Rob Clark) [1600556]
-- [gpu] drm/amd/display: Make atomic-check validate underscan changes (Rob Clark) [1600556]
-- [gpu] drm/amd/display: Fix BUG_ON during CRTC atomic check update (Rob Clark) [1600556]
-- [gpu] drm/psr: Fix missed entry in PSR setup time table (Rob Clark) [1600556]
-- [gpu] drm/i915/lvds: Move acpi lid notification registration to registration phase (Rob Clark) [1600556]
-- [gpu] drm/i915: Disable LVDS on Radiant P845 (Rob Clark) [1600556]
-- [gpu] drm/ttm: fix backport problem with invalid dma attr (Rob Clark) [1588147]
-- [sound] asoc: add snd_soc_component_cache_sync() (Prarit Bhargava) [1597102]
-- [sound] asoc: add missing snd_soc_component_set_jack (Prarit Bhargava) [1597102]
-- [kernel] device property: Define type of PROPERTY_ENRTY_*() macros (Prarit Bhargava) [1597102]
-- [edac] sb_edac: Add support for systems with segmented PCI buses (Aristeu Rozanski) [1600649]
-- [edac] sb_edac: Fix out of bound writes during DIMM configuration on KNL (Aristeu Rozanski) [1600649]
-- [pci] Increase VPD access timeout to 125ms (Myron Stowe) [1608510]
-- [firmware] dell_rbu: make firmware payload memory uncachable (Charles Rose) [1563410]
-- [block] blk-mq: fail the request in case issue failure (Ming Lei) [1599682]
-- [block] blk-mq-debugfs: Add names for recently added flags (Ming Lei) [1588286]
-- [block] blk-mq-debugfs: Add 'kick' operation (Ming Lei) [1588286]
-- [block] blk-mq-debugfs: Show busy requests (Ming Lei) [1588286]
-- [block] blk-mq-debugfs: Show requeue list (Ming Lei) [1588286]
-- [block] blk-mq-debugfs: Show atomic request flags (Ming Lei) [1588286]
-- [scsi] ibmvfc: Avoid unnecessary port relogin (Steve Best) [1605080]
-- [nvdimm] linvdimm, pmem: Preserve read-only setting for pmem devices (Jeff Moyer) [1600496]
-- [nvdimm] fix btt partition scanning on boot (Jeff Moyer) [1600496]
-- [nvme] if_ready checks to fail io to deleting controller (Ewan Milne) [1598017]
-- [nvmet-fc] move tech preview warning to nvmet_fc_register_targetport call (Ewan Milne) [1608947]
-- [nvme-fc] move tech preview warning to nvme_fc_register_localport call (Ewan Milne) [1608947]
-- [scsi] qla2xxx: Return error when TMF returns (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix ISP recovery on unload (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix driver unload by shutting down chip (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix NPIV deletion by calling wait_for_sess_deletion (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix unintialized List head crash (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix NULL pointer dereference for fcport search (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Spinlock recursion in qla_target (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix crash on qla2x00_mailbox_command (Himanshu Madhani) [1599351]
-- [netdrv] qed: Fix reading stale configuration information (Chad Dupuis) [1608063]
-- [netdrv] cxgb4: do not return DUPLEX_UNKNOWN when link is down (Arjun Vynipadath) [1603055]
-- [netdrv] rhmaintainers: update bnx2x driver maintainer (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Fix receiving tx-timeout in error or recovery state (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: use the right constant (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Collect the device debug information during Tx timeout (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Eliminate duplicate barriers on weakly-ordered archs (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Replace doorbell barrier() with wmb() (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: fix spelling mistake: "registeration" -> "registration" (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Deprecate pci_get_bus_and_slot() (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Replace WARN_ONCE with netdev_WARN_ONCE (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Use NETIF_F_GRO_HW (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: fix slowpath null crash (Jonathan Toppins) [1548146]
-- [net] ipv6: flush nd cache on IFF_NOARP change (Michael Cambria) [1599964]
-- [net] ip6_tunnel: allow ip6gre dev mtu to be set below 1280 (Michael Cambria) [1607669]
-- [net] multicast: do not restore deleted record source filter mode to new one (Hangbin Liu) [1586321]
-- [net] multicast: remove useless parameter for group add (Hangbin Liu) [1586321]
-- [net] ipv6/mcast: init as INCLUDE when join SSM INCLUDE group (Hangbin Liu) [1586321]
-- [net] ipv4/igmp: init group mode as INCLUDE when join source group (Hangbin Liu) [1586321]
-- [net] ipv6: mcast: fix unsolicited report interval after receiving querys (Hangbin Liu) [1586321]
-- [net] ipv6: refactor ipv6_dev_mc_inc() (Hangbin Liu) [1586321]
-- [x86] microcode/amd: Do not load when running on a hypervisor (Vitaly Kuznetsov) [1607899]
-
-* Mon Jul 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-929.el7]
-- [iio] hid-sensor-magn-3d: Add support for rotation from north (Tony Camuso) [1559170]
-- [iio] hid: Fix hid_report_len usage (Tony Camuso) [1559170]
-- [iio] hid: core: Fix size as type u32 (Tony Camuso) [1559170]
-- [iio] hid-sensor-hub: Implement batch mode (Tony Camuso) [1559170]
-- [iio] hid-sensor-trigger: Change get poll value function order to avoid sensor properties losing after resume from S3 (Tony Camuso) [1559170]
-- [iio] hid-sensor: Store restore poll and hysteresis on S3 (Tony Camuso) [1559170]
-- [iio] accel: hid-sensor-accel-3d: Add timestamp (Tony Camuso) [1559170]
-- [iio] hid-sensor: Fix unbalanced pm_runtime_enable error (Tony Camuso) [1559170]
-- [iio] buffer: Introduced a function to assign the buffer specific attrs (Tony Camuso) [1559170]
-- [iio] hid: sensor-hub: Move the memset to sensor_hub_get_feature() (Tony Camuso) [1559170]
-- [iio] magnetometer: separate the values of attributes based on their usage type for HID compass sensor (Tony Camuso) [1559170]
-- [iio] hid: hid-sensor-hub: clear memory to avoid random data (Tony Camuso) [1559170]
-- [iio] inkern: add helpers to query available values from channels (Tony Camuso) [1559170]
-- [iio] core: add a callback to allow drivers to provide _available attributes (Tony Camuso) [1559170]
-- [iio] drop IIO_ST macro (Tony Camuso) [1559170]
-- [iio] hid-sensors: Increase the precision of scale to fix wrong reading interpretation (Tony Camuso) [1559170]
-- [iio] fix pressure data output unit in hid-sensor-attributes (Tony Camuso) [1559170]
-- [iio] orientation: hid-sensor-rotation: Add PM function (fix non working driver) (Tony Camuso) [1559170]
-- [iio] hid-sensor-attributes: Check sample_frequency/hysteresis write data legitimacy (Tony Camuso) [1559170]
-- [iio] hid: hid-dr: add input mapping for axis selection (Tony Camuso) [1559170]
-- [iio] Implement counter channel type and info constants (Tony Camuso) [1559170]
-- [kernel] iio: add IIO_ATTR_(RO, WO, RW) and IIO_DEVICE_ATTR_(RO, WO, RW) macros (Tony Camuso) [1559170]
-- [iio] Declare event_attrs field of iio_info structure as const (Tony Camuso) [1559170]
-- [iio] inkern: add iio_read_channel_offset helper (Tony Camuso) [1559170]
-- [iio] trigger: Add helper function to verify that a trigger belongs to the same device (Tony Camuso) [1559170]
-- [iio] Use kmalloc_array() in iio_scan_mask_set() (Tony Camuso) [1559170]
-- [iio] trigger: helpers to determine own trigger (Tony Camuso) [1559170]
-- [iio] ensure ret is initialized to zero before entering do loop (Tony Camuso) [1559170]
-- [iio] add resource managed triggered buffer init helpers (Tony Camuso) [1559170]
-- [iio] trigger: add resource managed (un)register (Tony Camuso) [1559170]
-- [iio] Add resource managed APIs devm_iio_channel_(get, release) in devres (Tony Camuso) [1559170]
-- [iio] hid-sensors: avoid unused function warning (Tony Camuso) [1559170]
-- [iio] hid-sensors: use asynchronous resume (Tony Camuso) [1559170]
-- [iio] fix sched WARNING "do not call blocking ops when !TASK_RUNNING" (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Add ISH quirk (Tony Camuso) [1559170]
-- [iio] buffer-dma: Use ARRAY_SIZE in for loop range (Tony Camuso) [1559170]
-- [iio] Refuse to register triggers with duplicate names (Tony Camuso) [1559170]
-- [iio] Fix error handling in iio_trigger_attach_poll_func (Tony Camuso) [1559170]
-- [iio] electricalconductivity: add IIO_ELECTRICALCONDUCTIVITY type (Tony Camuso) [1559170]
-- [iio] triggers: Make trigger ops structure explicitly non optional (Tony Camuso) [1559170]
-- [iio] Add support for creating IIO devices via configfs (Tony Camuso) [1559170]
-- [iio] core: mounting matrix support (Tony Camuso) [1559170]
-- [iio] core: Add devm_ APIs for iio_channel_(get, release)_all (Tony Camuso) [1559170]
-- [iio] core: Add devm_ APIs for iio_channel_(get, release) (Tony Camuso) [1559170]
-- [iio] common: hid-sensors: use tab for indention (Tony Camuso) [1559170]
-- [hid] simplify implement() a bit (Tony Camuso) [1559170]
-- [iio] Add channel for UV index (Tony Camuso) [1559170]
-- [iio] buffer: add missing descriptions in iio_buffer_access_funcs (Tony Camuso) [1559170]
-- [iio] fix config watermark initial value (Tony Camuso) [1559170]
-- [hid] uhid.c: check write() bitness using in_compat_syscall (Tony Camuso) [1559170]
-- [iio] core: implement iio_device_(claim|release)_direct_mode() (Tony Camuso) [1559170]
-- [iio] Fix typos in the struct iio_event_spec documentation comments (Tony Camuso) [1559170]
-- [iio] buffer-dmaengine: Use dmaengine_terminate_sync() (Tony Camuso) [1559170]
-- [iio] Add helper function for calculating scan index storage size (Tony Camuso) [1559170]
-- [iio] ph: add IIO_PH channel type (Tony Camuso) [1559170]
-- [iio] inkern: fix a NULL dereference on error (Tony Camuso) [1559170]
-- [iio] core: fix ptr_ret.cocci warnings (Tony Camuso) [1559170]
-- [iio] Make IIO value formating function globally available (Tony Camuso) [1559170]
-- [iio] inkern.c Use list_for_each_entry_safe (Tony Camuso) [1559170]
-- [iio] configfs: Introduce iio/configfs.h to provide a location for the configfs_subsystem (Tony Camuso) [1559170]
-- [iio] trigger: Introduce IIO hrtimer based trigger (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO software triggers (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO configfs support (Tony Camuso) [1559170]
-- [iio] configfs: allow dynamic group creation (Tony Camuso) [1559170]
-- [hid] enable hid device to suspend/resume asynchronously (Tony Camuso) [1559170]
-- [usb] quirks: Apply ALWAYS_POLL to all ELAN devices (Tony Camuso) [1559170]
-- [hid] debug: improve hid_debug_event() (Tony Camuso) [1559170]
-- [iio] fix some warning messages (Tony Camuso) [1559170]
-- [hid] core: use scnprintf in modalias_show() (Tony Camuso) [1559170]
-- [hid] Make report_descriptor available for all devices (Tony Camuso) [1559170]
-- [hid] convert bus code to use dev_groups (Tony Camuso) [1559170]
-- [iio] Add buffer enable/disable callbacks (Tony Camuso) [1559170]
-- [iio] Add support for indicating fixed watermarks (Tony Camuso) [1559170]
-- [iio] Add a DMAengine framework based buffer (Tony Camuso) [1559170]
-- [iio] Add generic DMA buffer infrastructure (Tony Camuso) [1559170]
-- [iio] iio_buffer_init(): Only set watermark if not already set (Tony Camuso) [1559170]
-- [iio] Set device watermark based on watermark of all attached buffers (Tony Camuso) [1559170]
-- [iio] resistance: add IIO_RESISTANCE channel type (Tony Camuso) [1559170]
-- [iio] chemical: Add IIO_CONCENTRATION channel type (Tony Camuso) [1559170]
-- [iio] Support triggered events (Tony Camuso) [1559170]
-- [iio] percolate error if event fd fails (Tony Camuso) [1559170]
-- [iio] Move generic buffer implementations to sub-directory (Tony Camuso) [1559170]
-- [iio] Move callback buffer to its own module (Tony Camuso) [1559170]
-- [iio] event: Remove negative error code from iio_event_poll (Tony Camuso) [1559170]
-- [iio] industrialio-buffer: Fix iio_buffer_poll return value (Tony Camuso) [1559170]
-- [kernel] iio: Add inverse unit conversion macros (Tony Camuso) [1559170]
-- [iio] trigger: Add missing fields in kernel docs (Tony Camuso) [1559170]
-- [iio] declare struct to fix warning (Tony Camuso) [1559170]
-- [kernel] iio: Add missing kernel doc field (Tony Camuso) [1559170]
-- [kernel] iio: Fix function parameter name in kernel doc (Tony Camuso) [1559170]
-- [iio] event: Add missing fields in kernel docs (Tony Camuso) [1559170]
-- [iio] buffer: Fix kernel docs warnings (Tony Camuso) [1559170]
-- [iio] core: Add function params for kernel docs (Tony Camuso) [1559170]
-- [iio] Fix parameters in iio_triggered_buffer_setup (Tony Camuso) [1559170]
-- [iio] allow userspace to flush the hwfifo with non-blocking reads (Tony Camuso) [1559170]
-- [iio] Add missing modifier names to core (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-prox: Fit assignment in one line (Tony Camuso) [1559170]
-- [iio] hid-sensor: Fix suspend/resume delay (Tony Camuso) [1559170]
-- [iio] Require strict scan mask matching in hardware mode (Tony Camuso) [1559170]
-- [iio] Specify supported modes for buffers (Tony Camuso) [1559170]
-- [iio] Always compute masklength (Tony Camuso) [1559170]
-- [iio] buffer: remove unneeded test (Tony Camuso) [1559170]
-- [iio] core: add high pass filter attributes (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Leave device in sane state on error (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Split enable and disable path into helper functions (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Verify configuration before starting to apply it (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Perform request_update() only for new buffers (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Slightly refactor scan mask memory management (Tony Camuso) [1559170]
-- [iio] Replace printk in __iio_update_buffers with dev_dbg (Tony Camuso) [1559170]
-- [iio] Add I/Q modifiers (Tony Camuso) [1559170]
-- [iio] pressure: hid-sensor-press: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] orientation: hid-sensor-rotation: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] orientation: hid-sensor-incl-3d: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-als.c: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] gyro: hid-sensor-gyro-3d: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] accel: hid-sensor-accel-3d: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-prox: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Fix debug lock warning (Tony Camuso) [1559170]
-- [iio] hid-sensor-press: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-rotation: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-incl-3d: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-prox: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-als: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_OVERSAMPLING_RATIO (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_CALIBEMISSIVITY (Tony Camuso) [1559170]
-- [iio] kfifo: Set update_needed to false only if a buffer was allocated (Tony Camuso) [1559170]
-- [iio] pressure: hid-sensor-press: Fix modifier (Tony Camuso) [1559170]
-- [iio] add support for hardware fifo (Tony Camuso) [1559170]
-- [iio] add watermark logic to iio read and poll (Tony Camuso) [1559170]
-- [iio] sca3000: hide stufftoread logic (Tony Camuso) [1559170]
-- [iio] hid: hid-sensor-hub: Fix sparse warning (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix attribute read for logical usage id (Tony Camuso) [1559170]
-- [iio] core: Fix double free (Tony Camuso) [1559170]
-- [iio] Move iio userspace applications out of staging (Tony Camuso) [1559170]
-- [hid] microsoft: Add ID for NE7K wireless keyboard (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Enhance feature report set API (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Enhance get feature report API (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Extend API for async reads (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Add support for application collection (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Allow parallel synchronous reads (Tony Camuso) [1559170]
-- [hid] sensor-hub: correct dyn_callback_lock IRQ-safe change (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Correct documentation (Tony Camuso) [1559170]
-- [iio] Export userspace IIO headers (Tony Camuso) [1559170]
-- [iio] buffer: refactor buffer attributes setup (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_DEBOUNCE_COUNT and _TIME (Tony Camuso) [1559170]
-- [iio] core: Remove IIO_EV_TYPE_INSTANCE (Tony Camuso) [1559170]
-- [iio] core: Introduce CHANGE event type (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_CALIBWEIGHT (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_VELOCITY and IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z (Tony Camuso) [1559170]
-- [documentation] Add ABI documentation for offset and scaled humidity (Tony Camuso) [1559170]
-- [iio] core: Introduce DISTANCE channel type (Tony Camuso) [1559170]
-- [iio] core: Introduce ENERGY channel type (Tony Camuso) [1559170]
-- [iio] hid-sensor-press: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-incl-3d: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-prox: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-als: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid_sensor_hub: Common PM functions (Tony Camuso) [1559170]
-- [iio] industrialio-event: Fix typo 's/dynically/dynamically/' (Tony Camuso) [1559170]
-- [iio] Add new operating mode for non triggered sw buffers (Tony Camuso) [1559170]
-- [iio] Deselect IIO_TRIGGER for IIO_KFIFO_BUF (Tony Camuso) [1559170]
-- [iio] kconfig: use bool instead of boolean for type definition attributes (Tony Camuso) [1559170]
-- [hid] input: fix confusion on conflicting mappings (Tony Camuso) [1559170]
-- [iio] buffer: fix custom buffer attributes copy (Tony Camuso) [1559170]
-- [iio] ensure scan index is unique at device register (Tony Camuso) [1559170]
-- [iio] inkern: add out of range error message (Tony Camuso) [1559170]
-- [iio] iio: Fix iio_channel_read return if channel havn't info (Tony Camuso) [1559170]
-- [iio] light: Annotate Kconfig entry with module name information (Tony Camuso) [1559170]
-- [iio] accel: Annotate Kconfig entries with module name information (Tony Camuso) [1559170]
-- [iio] trigger: Add a blank line after declarations (Tony Camuso) [1559170]
-- [iio] trigger: fix sysfs name on list mutex (Tony Camuso) [1559170]
-- [iio] core: Get rid of misleading comment (Tony Camuso) [1559170]
-- [iio] kfifo: Add resource management devm_iio_kfifo_allocate/free (Tony Camuso) [1559170]
-- [iio] kfifo: Remove unused argument in iio_kfifo_allocate (Tony Camuso) [1559170]
-- [iio] consumer.h: Fix scale factor in function comment (Tony Camuso) [1559170]
-- [iio] buffer: Drop get_length callback (Tony Camuso) [1559170]
-- [iio] buffer: Make length attribute read only for buffers without set_length (Tony Camuso) [1559170]
-- [iio] buffer: Allocate standard attributes in the core (Tony Camuso) [1559170]
-- [iio] buffer: Move iio_buffer_alloc_sysfs and iio_buffer_free_sysfs (Tony Camuso) [1559170]
-- [iio] Remove get_bytes_per_datum() from iio_buffer_access_funcs (Tony Camuso) [1559170]
-- [iio] Move buffer registration to the core (Tony Camuso) [1559170]
-- [iio] Unexport iio_scan_mask_set() (Tony Camuso) [1559170]
-- [iio] inkern: add iio_write_channel_raw (Tony Camuso) [1559170]
-- [iio] common: remove unnecessary sizeof(u8) (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_CALIBHEIGHT (Tony Camuso) [1559170]
-- [iio] core: Introduce STEPS channel, ENABLE mask and INSTANCE event (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_EV_DIR_NONE (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_ACTIVITY channel (Tony Camuso) [1559170]
-- [iio] time: Expose get_monotonic_coarse64() for in-kernel uses (Tony Camuso) [1559170]
-- [iio] maintainers: Add IIO include files (Tony Camuso) [1559170]
-- [iio] Fix IIO_EVENT_CODE_EXTRACT_DIR bit mask (Tony Camuso) [1559170]
-- [hid] input: Fix TransducerSerialNumber implementation (Tony Camuso) [1559170]
-- [iio] inkern: Add of_xlate function to struct iio_info (Tony Camuso) [1559170]
-- [hid] input: force generic axis to be mapped to their user space axis (Tony Camuso) [1559170]
-- [iio] hid_sensor_hub: Fix indio_dev->trig assignment (Tony Camuso) [1559170]
-- [iio] trigger: modify return value for iio_trigger_get (Tony Camuso) [1559170]
-- [iio] inkern: fix overwritten -EPROBE_DEFER in of_iio_channel_get_by_name (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: use devm_ functions consistently (Tony Camuso) [1559170]
-- [iio] buffer: Wrong sized allocation of demux table elements (Tony Camuso) [1559170]
-- [iio] buffer: Coalesce adjacent demux table entries (Tony Camuso) [1559170]
-- [iio] buffer: Use roundup() instead of open-coding it (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Fix build warning (Tony Camuso) [1559170]
-- [iio] Use ktime_get_real_ns() (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Scan for usage attributes before setting up iio channels (Tony Camuso) [1559170]
-- [iio] buffer: Fix demux table creation (Tony Camuso) [1559170]
-- [iio] types: Added support for rotation from north usage attributes (Tony Camuso) [1559170]
-- [iio] core : events ABI for specifying period (Tony Camuso) [1559170]
-- [iio] core: Handle error when mask type is not separate (Tony Camuso) [1559170]
-- [iio] hid-sensors: make hid_sensor_get_reporting_interval static (Tony Camuso) [1559170]
-- [iio] hid-sensors: Fix compilation warning (Tony Camuso) [1559170]
-- [iio] hid-sensor-prox: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-als: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-press: Fix return values (Tony Camuso) [1559170]
-- [hid] sensor-hub: fix potential memory leak (Tony Camuso) [1559170]
-- [iio] of_iio_channel_get_by_name() returns non-null pointers for error legs (Tony Camuso) [1559170]
-- [iio] Remove timestamp argument from iio_trigger_poll() and iio_trigger_poll_chained() (Tony Camuso) [1559170]
-- [iio] triggers: interrupt trigger - move out of staging (Tony Camuso) [1559170]
-- [hid] sensor-hub: make dyn_callback_lock IRQ-safe (Tony Camuso) [1559170]
-- [iio] hid-sensors: Get feature report from sensor hub after changing power state (Tony Camuso) [1559170]
-- [iio] hid-sensors: Set default unit of measure for report interval (Tony Camuso) [1559170]
-- [iio] always select ANON_INODES (Tony Camuso) [1559170]
-- [iio] hid-sensors: typo leads to potential forever loop (Tony Camuso) [1559170]
-- [iio] hid-sensors: proximity: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: pressure: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: pressure: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: inclinometer 3d: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: inclinometer 3d: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: gyro 3d: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: gyro 3d : adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: compass 3d: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: compass 3d: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: als: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: als: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: Add API to power on/off (Tony Camuso) [1559170]
-- [iio] hid-sensors: Add api to get poll value (Tony Camuso) [1559170]
-- [iio] hid-sensors: accelerometer 3d: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: accelerometer 3d: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: Convert units and exponent (Tony Camuso) [1559170]
-- [iio] Add TEMP_AMBIENT and TEMP_OBJECT channel modifiers (Tony Camuso) [1559170]
-- [iio] hid-sensors: Added device rotation support (Tony Camuso) [1559170]
-- [iio] core: Add quaternion modifier (Tony Camuso) [1559170]
-- [iio] core: Modify scan element type (Tony Camuso) [1559170]
-- [iio] core: Introduce read_raw_multi (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix sleeping function called from invalid context (Tony Camuso) [1559170]
-- [iio] querying buffer scan_mask should return 0/1 (Tony Camuso) [1559170]
-- [iio] core: Fix bug in length of event info_mask and catch unhandled bits set in masks (Tony Camuso) [1559170]
-- [iio] inkern: add iio_read_channel_average_raw (Tony Camuso) [1559170]
-- [iio] event: Fix and cleanup locking (Tony Camuso) [1559170]
-- [iio] hid-sensors: Added Pressure Sensor driver (Tony Camuso) [1559170]
-- [iio] pressure: Add STMicroelectronics pressures driver (Tony Camuso) [1559170]
-- [iio] hid-sensors: Added Proximity Sensor Driver (Tony Camuso) [1559170]
-- [iio] Avoid unnecessary kasprintf (Tony Camuso) [1559170]
-- [iio] Don't include extended name in shared attributes (Tony Camuso) [1559170]
-- [iio] iio get rid of unneccessary error_ret (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Processing for duplicate physical ids (Tony Camuso) [1559170]
-- [iio] hid-sensor-hub: Remove hard coded indexes (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Add selector api (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: quirk for STM Sensor hub (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Fix buggy report descriptors (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix duplicate sysfs entry error (Tony Camuso) [1559170]
-- [iio] Remove support for the legacy event config interface (Tony Camuso) [1559170]
-- [iio] hid-sensors: Added Inclinometer 3D (Tony Camuso) [1559170]
-- [iio] Add support for humidity sensors (Tony Camuso) [1559170]
-- [iio] trigger: Convert to use ATTRIBUTE_GROUPS (Tony Camuso) [1559170]
-- [iio] Add support for blocking IO on buffers (Tony Camuso) [1559170]
-- [iio] kfifo_buf: Implement data_available() callback (Tony Camuso) [1559170]
-- [iio] Add data_available callback for buffers (Tony Camuso) [1559170]
-- [iio] hid-sensors: Fix power and report state (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Add logical min and max (Tony Camuso) [1559170]
-- [iio] Minor kerneldoc fix for iio_trigger_write_current() (Tony Camuso) [1559170]
-- [iio] core: Move kernel doc to the right location (Tony Camuso) [1559170]
-- [iio] core: Implement devm_iio_device_(register, unregister) (Tony Camuso) [1559170]
-- [iio] hid-sensors: magnetometer : Add sensitivity (Tony Camuso) [1559170]
-- [iio] hid-sensors: light/als : Add sensitivity (Tony Camuso) [1559170]
-- [iio] hid-sensors: gyro : Add sensitivity (Tony Camuso) [1559170]
-- [iio] hid-sensors: accelerometer: Add sensitivity (Tony Camuso) [1559170]
-- [iio] hid_sensors: fix crash during trigger unregister (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix report size (Tony Camuso) [1559170]
-- [iio] core: Add misssing braces (Tony Camuso) [1559170]
-- [iio] core: Use pr_err instead of printk (Tony Camuso) [1559170]
-- [iio] Remove unused iio_sw_buffer_preenable() (Tony Camuso) [1559170]
-- [iio] triggered-buffer: Remove redundant call to iio_sw_buffer_preenable() (Tony Camuso) [1559170]
-- [iio] Update buffer's bytes per datum after updating the scan mask (Tony Camuso) [1559170]
-- [iio] buffer: Free active scan mask in iio_disable_all_buffers() (Tony Camuso) [1559170]
-- [iio] kfifo: Set update_needed to false after allocating a new buffer (Tony Camuso) [1559170]
-- [iio] kfifo: Empty buffer on update (Tony Camuso) [1559170]
-- [iio] kfifo: Protect against concurrent access from userspace (Tony Camuso) [1559170]
-- [iio] kfifo: Fix memory leak (Tony Camuso) [1559170]
-- [iio] buffer: Ignore noop requests for iio_update_buffers() (Tony Camuso) [1559170]
-- [iio] Add a hysteresis event info attribute (Tony Camuso) [1559170]
-- [iio] Extend the event config interface (Tony Camuso) [1559170]
-- [iio] Factor IIO value formating into its own function (Tony Camuso) [1559170]
-- [iio] Add a helper to free a list of IIO device attributes (Tony Camuso) [1559170]
-- [iio] buffer: Add proper locking for iio_update_buffers() (Tony Camuso) [1559170]
-- [iio] Wakeup poll and blocking reads when the device is unregistered (Tony Camuso) [1559170]
-- [iio] Return -ENODEV for file operations if the device has been unregistered (Tony Camuso) [1559170]
-- [iio] Add reference counting for buffers (Tony Camuso) [1559170]
-- [iio] call sensor hub open close function (Tony Camuso) [1559170]
-- [hid] Delay opening HID device (Tony Camuso) [1559170]
-- [iio] Remove debugfs entries in iio_device_unregister() (Tony Camuso) [1559170]
-- [iio] st_sensors: Use iio_push_to_buffers_with_timestamp() (Tony Camuso) [1559170]
-- [iio] Prevent race between IIO chardev opening and IIO device free (Tony Camuso) [1559170]
-- [iio] Pass scan mask as unsigned long (Tony Camuso) [1559170]
-- [iio] Stop sampling when the device is removed (Tony Camuso) [1559170]
-- [iio] Fix crash when scan_bytes is computed with active_scan_mask == NULL (Tony Camuso) [1559170]
-- [iio] fix: Keep a reference to the IIO device for open file descriptors (Tony Camuso) [1559170]
-- [iio] buffer_cb: Add missing iio_buffer_init() (Tony Camuso) [1559170]
-- [iio] Add iio_push_buffers_with_timestamp() helper (Tony Camuso) [1559170]
-- [iio] Minor cleanups of industrialio-buffer (Tony Camuso) [1559170]
-- [iio] iio_device_add_event_sysfs() bugfix (Tony Camuso) [1559170]
-- [iio] use anon_inode_getfd() with O_CLOEXEC flag (Tony Camuso) [1559170]
-- [iio] kfifo_buf: Use wake_up_interruptible_poll() (Tony Camuso) [1559170]
-- [iio] Remove unnecessary casts for iio_push_to_buffers() (Tony Camuso) [1559170]
-- [iio] iio_push_to_buffers(): Change type of 'data' to const void arch block configs COPYING CREDITS crypto Documentation drivers firmware fs include init ipc Kbuild Kconfig kernel lib MAINTAINERS (Tony Camuso) [1559170]
-- [iio] buffer: Simplify iio_buffer_is_active() (Tony Camuso) [1559170]
-- [iio] buffer_cb: Constify iio_cb_access (Tony Camuso) [1559170]
-- [iio] add info_mask_(shared_by_dir/shared_by_all) (Tony Camuso) [1559170]
-- [iio] drop info_mask from struct iio_dev (Tony Camuso) [1559170]
-- [iio] refactor info mask and ext_info attribute creation (Tony Camuso) [1559170]
-- [iio] Add INT_TIME (integration time) channel info attribute (Tony Camuso) [1559170]
-- [hid] move HID_REPORT_TYPES closer to the report-definitions (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: move to devm_kzalloc (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: change kmalloc + memcpy by kmemdup (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix indentation accross the code (Tony Camuso) [1559170]
-- [iio] Remove trailing ; from function definitions (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix style of comments (Tony Camuso) [1559170]
-- [iio] trigger: implement devm_iio_trigger_alloc/devm_iio_triger_free (Tony Camuso) [1559170]
-- [iio] Fix documentation of devm_iio_device_free() (Tony Camuso) [1559170]
-- [iio] core: Avoid double minus in sysfs output (Tony Camuso) [1559170]
-- [iio] core: implement devm_iio_device_alloc/devm_iio_device_free (Tony Camuso) [1559170]
-- [iio] Remove unnecessary _write_raw_get_fmt() in several hid-sensor drivers (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: Use devm_iio_device_alloc (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-als: Use devm_iio_device_alloc (Tony Camuso) [1559170]
-- [iio] magnetometer: hid-sensor-magn-3d: Use devm_iio_device_alloc (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: Use devm_iio_device_alloc (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: add module alias for autoload (Tony Camuso) [1559170]
-- [iio] hid-sensor-als: add module alias for autoload (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: add module alias for autoload (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: add module alias for autoload (Tony Camuso) [1559170]
-- [documentation] devres: add IIO device alloc/free functions to list (Tony Camuso) [1559170]
-- [iio] trigger: Fix use_count race condition (Tony Camuso) [1559170]
-- [iio] trigger: sysfs Move out of staging (Tony Camuso) [1559170]
-- [iio] buffer: cleanup messages in iio_update_buffers() (Tony Camuso) [1559170]
-- [hid] revert "hid-sensor-hub: fix report size" (Tony Camuso) [1559170]
-- [hid] revert "hid-sensor-hub: Add ISH quirk" (Tony Camuso) [1559170]
-- [iio] revert "iio: call sensor hub open close function" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid_sensors: fix crash during trigger unregister" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Fix power and report state" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor-hub: Remove hard coded indexes" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Add API to power on/off" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Get feature report from sensor hub after changing power state" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid_sensor_hub: Fix indio_dev->trig assignment" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid_sensor_hub: Common PM functions" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Add api to get poll value" (Tony Camuso) [1559170]
-- [hid] revert "hid-sensor-hub: Enhance get feature report API" (Tony Camuso) [1559170]
-- [iio] revert "hid-sensor-hub: Enhance feature report set API" (Tony Camuso) [1559170]
-- [iio] revert "hid-sensor: Fix suspend/resume delay" (Tony Camuso) [1559170]
-- [iio] revert "iio: common: hid-sensors: use tab for indention" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: use asynchronous resume" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: avoid unused function warning" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor-trigger: Change get poll value function order to avoid sensor properties losing after resume from S3" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Set default unit of measure for report interval" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor: Store restore poll and hysteresis on S3" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor: Fix unbalanced pm_runtime_enable error" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor-hub: Implement batch mode" (Tony Camuso) [1559170]
-
-* Fri Jul 27 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-928.el7]
-- [vfio] Use get_user_pages_longterm correctly (Jeff Moyer) [1585133]
-- [vfio] disable filesystem-dax page pinning (Jeff Moyer) [1585133]
-- [md] dm, dax: Make sure dm_dax_flush() is called if device supports it (Jeff Moyer) [1601078]
-- [md] dm: prevent DAX mounts if not supported (Jeff Moyer) [1568240]
-- [md] dm: set QUEUE_FLAG_DAX accordingly in dm_table_set_restrictions() (Jeff Moyer) [1568240]
-- [md] dax: check for QUEUE_FLAG_DAX in bdev_dax_supported() (Jeff Moyer) [1568240]
-- [nvdimm] pmem: only set QUEUE_FLAG_DAX for fsdax mode (Jeff Moyer) [1568240]
-- [dax] change bdev_dax_supported() to support boolean returns (Jeff Moyer) [1568240]
-- [fs] allow per-device dax status checking for filesystems (Jeff Moyer) [1568240]
-- [nvdimm] libnvdimm, pmem: Do not flush power-fail protected CPU caches (Jeff Moyer) [1594344]
-- [nvdimm] libnvdimm, pmem: Unconditionally deep flush on *sync (Jeff Moyer) [1594344]
-- [kernel] memremap: Remove stale devres_free() call (Jeff Moyer) [1505291]
-- [kernel] mm: Fix devm_memremap_pages() collision handling (Jeff Moyer) [1505291]
-- [kernel] dax: fix vma_is_fsdax() helper (Jeff Moyer) [1505291]
-- [kernel] sched/wait: Improve __var_waitqueue() code generation (Jeff Moyer) [1505291]
-- [x86] memremap: fix altmap accounting at free (Jeff Moyer) [1505291]
-- [fs] xfs, dax: introduce xfs_break_dax_layouts() (Jeff Moyer) [1505291]
-- [fs] xfs: prepare xfs_break_layouts() for another layout type (Jeff Moyer) [1505291]
-- [fs] xfs: prepare xfs_break_layouts() to be called with XFS_MMAPLOCK_EXCL (Jeff Moyer) [1505291]
-- [fs] mm, dax: handle layout changes to pinned dax mappings (Jeff Moyer) [1505291]
-- [x86] mm: fix __gup_device_huge vs unmap (Jeff Moyer) [1505291]
-- [mm] introduce MEMORY_DEVICE_FS_DAX and CONFIG_DEV_PAGEMAP_OPS (Jeff Moyer) [1505291]
-- [kernel] memremap: split devm_memremap_pages() and memremap() infrastructure (Jeff Moyer) [1505291]
-- [kernel] memremap: merge find_dev_pagemap into get_dev_pagemap (Jeff Moyer) [1505291]
-- [nvdimm] memremap: change devm_memremap_pages interface to use struct dev_pagemap (Jeff Moyer) [1505291]
-- [mm] memremap: drop private struct page_map (Jeff Moyer) [1505291]
-- [kernel] memremap: simplify duplicate region handling in devm_memremap_pages (Jeff Moyer) [1505291]
-- [kernel] memremap: remove to_vmem_altmap (Jeff Moyer) [1505291]
-- [kernel] mm: optimize dev_pagemap reference counting around get_dev_pagemap (Jeff Moyer) [1505291]
-- [kernel] mm: move get_dev_pagemap out of line (Jeff Moyer) [1505291]
-- [mm] merge vmem_altmap_alloc into altmap_alloc_block_buf (Jeff Moyer) [1505291]
-- [mm] split altmap memory map allocation from normal case (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to memmap_init_zone (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to vmemmap_free (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to arch_remove_memory and __remove_pages (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to vmemmap_populate (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to arch_add_memory and __add_pages (Jeff Moyer) [1505291]
-- [kernel] memremap: provide stubs for vmem_altmap_offset and vmem_altmap_free (Jeff Moyer) [1505291]
-- [infiniband] ib/core: disable memory registration of filesystem-dax vmas (Jeff Moyer) [1585135]
-- [media] v4l2: disable filesystem-dax mapping support (Jeff Moyer) [1585135]
-- [media] mm: fail get_vaddr_frames() for filesystem-dax mappings (Jeff Moyer) [1585135]
-- [mm] introduce get_user_pages_longterm (Jeff Moyer) [1505291]
-- [kernel] sched/wait: Introduce wait_var_event() (Jeff Moyer) [1505291]
-- [mm] remove unused variable in memory hotplug (Jeff Moyer) [1505291]
-- [mm] remove per-zone hashtable of bitlock waitqueues (Jeff Moyer) [1505291]
-- [tools] powerpc: Fix DSCR inheritance over fork() (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add gitignore file for the new DSCR tests (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add thread based stress test for DSCR sysfs interfaces (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for all DSCR sysfs interfaces (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for DSCR inheritence across fork & exec (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for DSCR value inheritence across fork (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for DSCR SPR numbers (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for explicitly changing DSCR value (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for system wide DSCR default (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Rename TARGETS in powerpc selftests makefile (Desnes Augusto Nunes do Rosario) [1601315]
-- [documentation] powerpc/dscr: Add documentation for DSCR support (Desnes Augusto Nunes do Rosario) [1601315]
-- [powerpc] dscr: Add some in-code documentation (Desnes Augusto Nunes do Rosario) [1601315]
-- [powerpc] kernel: Rename PACA_DSCR to PACA_DSCR_DEFAULT (Desnes Augusto Nunes do Rosario) [1601315]
-- [powerpc] kernel: Remove the unused extern dscr_default (Desnes Augusto Nunes do Rosario) [1601315]
-- [powerpc] Fix handling of DSCR related facility unavailable exception (Desnes Augusto Nunes do Rosario) [1601315]
-- [iommu] amd: Add support for IOMMU XT mode (Suravee Suthikulpanit) [1596723]
-- [iommu] amd: Add support for higher 64-bit IOMMU Control Register (Suravee Suthikulpanit) [1596723]
-- [x86] irq_remapping: Move irq remapping mode enum (Suravee Suthikulpanit) [1596723]
-- [x86] cpu/amd: Fix LLC ID bit-shift calculation (Suravee Suthikulpanit) [1543815]
-- [x86] cpu/amd: Derive CPU topology from CPUID function 0xB when available (Suravee Suthikulpanit) [1543815]
-- [x86] cpu: Modify detect_extended_topology() to return result (Suravee Suthikulpanit) [1543815]
-- [x86] cpu/amd: Calculate last level cache ID from number of sharing threads (Suravee Suthikulpanit) [1543815]
-- [x86] cpu: Rename intel_cacheinfo.c to cacheinfo.c (Suravee Suthikulpanit) [1543815]
-- [x86] kvm: nvmx: fix guest CR4 loading when emulating L2 to L1 exit ("Dr. David Alan Gilbert") [1603753]
-
-* Wed Jul 25 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-927.el7]
-- [input] elantech: fix V4 report decoding for module with middle key (Benjamin Tissoires) [1599622]
-- [input] elantech: enable middle button of touchpads on ThinkPad P52 (Benjamin Tissoires) [1599622]
-- [hid] logitech-dj: prevent false errors to be shown (Benjamin Tissoires) [1375230]
-- [char] crash driver: update for CONFIG_HARDENED_USERCOPY (Dave Anderson) [1602876]
-- [i2c] i801: Do not create iTCO watchdog when WDAT table exists (David Arcari) [1607816]
-- [target] scsi: tcmu: Don't pass KERN_ERR to pr_err (Xiubo Li) [1560418]
-- [target] scsi: target: remove target_find_device (Xiubo Li) [1560418]
-- [target] scsi: tcmu: add module wide block/reset_netlink support (Xiubo Li) [1560418]
-- [target] scsi: tcmu: simplify nl interface (Xiubo Li) [1560418]
-- [target] scsi: tcmu: track nl commands (Xiubo Li) [1560418]
-- [target] scsi: tcmu: delete unused __wait (Xiubo Li) [1560418]
-- [block] blk-mq: issue directly if hw queue isn't busy in case of 'none' (Ming Lei) [1599682]
-- [netdrv] xen-netfront: Fix hang on device removal (Vitaly Kuznetsov) [1595557]
-- [net] skbuff: Unconditionally copy pfmemalloc in __skb_clone() (Stefano Brivio) [1597706]
-- [net] Don't copy pfmemalloc flag in __copy_skb_header() (Stefano Brivio) [1597706]
-- [net] ipv4: be more aggressive when probing alternative gateways (Michael Cambria) [1524463]
-- [net] tcp: add RCU protection to ipv6 opt dereference (Paolo Abeni) [1353274]
-- [net] xfrm: Fix stack-out-of-bounds read on socket policy lookup (Ravi Aysola) [1499471]
-- [net] xfrm: Don't use sk_family for socket policy lookups (Ravi Aysola) [1499471]
-- [kernel] uapi: mark wmi.h to be included in kernel-headers (Jarod Wilson) [1517197]
-- [kernel] sched/debug: fix schedstats-induced sched domain corruption (Josh Poimboeuf) [1602345]
-- [s390] zcrypt: Support up to 256 crypto adapters (Hendrik Brueckner) [1568734]
-- [s390] qdio: don't retry EQBS after CCQ 96 (Hendrik Brueckner) [1603168]
-- [s390] qeth: fix error handling in adapter command callbacks (Hendrik Brueckner) [1603170]
-- [x86] perf: read the FREEZE_WHILE_SMM bit during boot (David Arcari) [1566249]
-- [x86] kvm: Don't use pvqspinlock code if only 1 vCPU (Waiman Long) [1602155]
-- [x86] acpi: Use proper macro for invalid node (Prarit Bhargava) [1576245]
-- [x86] acpi: Fix bug in associating hot-added CPUs with corresponding NUMA node (Prarit Bhargava) [1576245]
-- [x86] bugs: Switch the selection of mitigation from CPU vendor to CPU features (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs: Add AMD's SPEC_CTRL MSR usage (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs: Add AMD's variant of SSB_NO (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Fix VM guest SSBD problems (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Eliminate TIF_SSBD checks in IBRS on/off functions (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Disable SSBD update from scheduler if not user settable (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Make ssbd_enabled writtable (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Remove thread_info check in __wrmsr_on_cpu() (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Write per-thread SSBD state to spec_ctrl_pcp (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Add a read-only ssbd_enabled debugfs file (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs/intel: Set proper CPU features and setup RDS (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] kvm/vmx: Emulate MSR_IA32_ARCH_CAPABILITIES (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] kvm: svm: Implement VIRT_SPEC_CTRL support for SSBD (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation, kvm: Implement support for VIRT_SPEC_CTRL/LS_CFG (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs: Rework spec_ctrl base and mask logic (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Rework SPEC_CTRL update after late microcode loading (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Make sync_all_cpus_ibrs() write spec_ctrl_pcp value (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs: Unify x86_spec_ctrl_(set_guest, restore_host) (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Rework speculative_store_bypass_update() (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Add virtualized speculative store bypass disable support (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs, kvm: Extend speculation control for VIRT_SPEC_CTRL (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] kvm: Rename KVM SPEC_CTRL MSR functions to match upstream (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Handle HT correctly on AMD (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] cpufeatures: Add FEATURE_ZEN (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] cpufeatures: Disentangle SSBD enumeration (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] cpufeatures: Disentangle MSR_SPEC_CTRL enumeration from IBRS (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Use synthetic bits for IBRS/IBPB/STIBP (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] documentation/spec_ctrl: Do some minor cleanups (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Make "seccomp" the default mode for Speculative Store Bypass (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] seccomp: Move speculation migitation control to arch code (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] seccomp: Add filter flag to opt-out of SSB mitigation (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] seccomp: Use PR_SPEC_FORCE_DISABLE (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] prctl: Add force disable speculation (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spectre_v2: No mitigation if CPU not affected and no command override (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] pti: Do not enable PTI on CPUs which are not vulnerable to Meltdown (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bug: Add X86_BUG_CPU_MELTDOWN and X86_BUG_SPECTRE_V(12) (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] pti: Rename CONFIG_KAISER to CONFIG_PAGE_TABLE_ISOLATION (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Sync up naming of SPEC_CTRL MSR bits with upstream (Waiman Long) [1584569] {CVE-2018-3639}
-
-* Thu Jul 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-926.el7]
-- [acpi] osl: speedup grace period in acpi_os_map_cleanup (Jeff Moyer) [1533059]
-- [kernel] ftrace/rcu: Do not trace debug_lockdep_rcu_enabled() (Scott Wood) [1600018]
-- [mm] Support binding swap device to a node (Larry Woodman) [1485167]
-- [input] leds: fix out of bound access (Oleksandr Natalenko) [1598667]
-- [input] leds: skip unnamed LEDs (Oleksandr Natalenko) [1598667]
-- [block] blk-mq: dequeue request one by one from sw queue if hctx is busy (Ming Lei) [1597068]
-- [block] blk-mq: don't queue more if we get a busy return (Ming Lei) [1597068]
-- [block] blk-mq: only attempt to merge bio if there is rq in sw queue (Ming Lei) [1597068]
-- [block] blk-mq: use list_splice_tail_init() to insert requests (Ming Lei) [1597068]
-- [netdrv] cxgb4: Add FORCE_PAUSE bit to 32 bit port caps (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: fix offset in collecting TX rate limit info (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: Check for kvzalloc allocation failure (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4/cxgb4vf: link management changes for new SFP (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: do L1 config when module is inserted (Arjun Vynipadath) [1595084]
-- [scsi] cxgb4: change the port capability bits definition (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: Correct ntuple mask validation for hash filters (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: fix the wrong conversion of Mbps to Kbps (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: copy mbox log size to PF0-3 adap instances (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: zero the HMA memory (Arjun Vynipadath) [1595084]
-- [netdrv] mlx5: Fix required capability for manipulating MPFS (Alaa Hleihel) [1595687]
-- [netdrv] mlx5: E-Switch, Disallow vlan/spoofcheck setup if not being esw manager (Alaa Hleihel) [1595687]
-- [netdrv] mlx5e: Avoid dealing with vport representors if not being e-switch manager (Alaa Hleihel) [1595687]
-- [netdrv] mlx5: E-Switch, Avoid setup attempt if not being e-switch manager (Alaa Hleihel) [1595687]
-- [netdrv] mlx5: E-Switch, Move representors definition to a global scope (Alaa Hleihel) [1595687]
-- [netdrv] mlx5: E-Switch, Add callback to get representor device (Alaa Hleihel) [1595687]
-- [net] mlx5e: Don't attempt to dereference the ppriv struct if not being eswitch manager (Alaa Hleihel) [1592306]
-- [scsi] qedi: Add get_generic_tlv_data handler (Chad Dupuis) [1590824]
-- [scsi] qedi: Add support for populating ethernet TLVs (Chad Dupuis) [1590824]
-- [scsi] qedf: Add get_generic_tlv_data handler (Chad Dupuis) [1590824]
-- [scsi] qedf: Add support for populating ethernet TLVs (Chad Dupuis) [1590824]
-- [netdrv] qede: Add support for populating ethernet TLVs (Chad Dupuis) [1590824]
-- [netdrv] qed: Add driver infrastucture for handling mfw requests (Chad Dupuis) [1590824]
-- [netdrv] qed: Add support for processing iscsi tlv request (Chad Dupuis) [1590824]
-- [netdrv] qed: Add support for processing fcoe tlv request (Chad Dupuis) [1590824]
-- [netdrv] qed: Add support for tlv request processing (Chad Dupuis) [1590824]
-- [netdrv] qed: Add MFW interfaces for TLV request support (Chad Dupuis) [1590824]
-- [netdrv] qed: Fix use of incorrect shmem address (Chad Dupuis) [1590780]
-- [netdrv] qed: Fix shared memory inconsistency between driver and the MFW (Chad Dupuis) [1590780]
-- [netdrv] qed: Add support for Unified Fabric Port (Chad Dupuis) [1590780]
-- [netdrv] qed: Add support for multi function mode with 802.1ad tagging (Chad Dupuis) [1590780]
-- [netdrv] qed: Remove unused data member 'is_mf_default' (Chad Dupuis) [1590780]
-- [netdrv] qed*: Refactor mf_mode to consist of bits (Chad Dupuis) [1590780]
-
-* Tue Jul 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-925.el7]
-- [netdrv] net: aquantia: vlan unicast address list correct handling (Igor Russkikh) [1597734]
-- [netdrv] cxgb4: assume flash part size to be 4MB, if it can't be determined (Arjun Vynipadath) [1600473]
-- [netdrv] cxgb4: Support ethtool private flags (Arjun Vynipadath) [1529064]
-- [netdrv] cxgb4: Add support for FW_ETH_TX_PKT_VM_WR (Arjun Vynipadath) [1529064]
-- [netdrv] sfc: hold filter_sem consistently during reset (Jarod Wilson) [1597152]
-- [netdrv] sfc: avoid recursive use of the filter_sem (Jarod Wilson) [1597152]
-- [netdrv] sfc: correctly initialise filter rwsem for farch (Jarod Wilson) [1597152]
-- [netdrv] sfc: make function efx_rps_hash_bucket static (Jarod Wilson) [1597152]
-- [net] ipv4: reset fnhe_mtu_locked after cache route flushed (Sabrina Dubroca) [1599762]
-- [net] ipv6: token: allow for clearing the current device token (Michael Cambria) [1593094]
-- [net] dccp: do not send reset to already closed sockets (Stefano Brivio) [1598368]
-- [net] ip6_tunnel: get the min mtu properly in ip6_tnl_xmit (Xin Long) [1597115]
-- [net] ipv6: fix tunnel error handling (Xin Long) [1597122]
-- [netdrv] veth: Be more robust on network device creation when no attributes (William Townsend) [1546072]
-- [net] netlink: reset network header before passing to taps (William Townsend) [1543506]
-- [net] ipv6: fix NULL dereference in ip6_route_dev_notify() (Stefano Brivio) [1595097]
-- [net] core: remove WARN_ON from skb_try_coalesce (Florian Westphal) [1569664]
-- [net] tcp: Add mark for TIMEWAIT sockets (Ravi Aysola) [1576990]
-- [tools] perf mmap: Be consistent when checking for an unmaped ring buffer (Jiri Olsa) [1514635]
-- [tools] perf mmap: Fix accessing unmapped mmap in perf_mmap__read_done() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Discard head in overwrite_rb_find_range() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Simplify perf_mmap__read_init() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Simplify perf_mmap__read_event() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Simplify perf_mmap__consume() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Use stored 'overwrite' in perf_mmap__consume() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Use the stored data in perf_mmap__read_event() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Use the stored scope data in perf_mmap__push() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Store mmap scope in struct perf_mmap() (Jiri Olsa) [1514635]
-- [tools] perf evlist: Store 'overwrite' in struct perf_mmap (Jiri Olsa) [1514635]
-- [tools] perf mmap: Discard legacy interfaces for mmap read forward (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for task-exit (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for switch-tracking (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for sw-clock (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for time-to-tsc (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for perf-record (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for tp fields (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for mmap-basic (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for "keep tracking" test (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for 'code reading' test (Jiri Olsa) [1514635]
-- [tools] perf python: Switch to new perf_mmap__read_event() interface (Jiri Olsa) [1514635]
-- [tools] perf trace: Switch to new perf_mmap__read_event() interface (Jiri Olsa) [1514635]
-- [tools] perf kvm: Switch to new perf_mmap__read_event() interface (Jiri Olsa) [1514635]
-- [tools] perf top: Check the latency of perf_top__mmap_read() (Jiri Olsa) [1514635]
-- [tools] perf top: Switch default mode to overwrite mode (Jiri Olsa) [1514635]
-- [tools] perf top: Remove lost events checking (Jiri Olsa) [1514635]
-- [tools] perf hists browser: Add parameter to disable lost event warning (Jiri Olsa) [1514635]
-- [tools] perf top: Add overwrite fall back (Jiri Olsa) [1514635]
-- [tools] perf evsel: Expose the perf_missing_features struct (Jiri Olsa) [1514635]
-- [tools] perf top: Check per-event overwrite term (Jiri Olsa) [1514635]
-- [tools] perf mmap: Discard legacy interface for mmap read (Jiri Olsa) [1514635]
-- [tools] perf test: Update mmap read functions for backward-ring-buffer test (Jiri Olsa) [1514635]
-- [tools] perf mmap: Introduce perf_mmap__read_event() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Introduce perf_mmap__read_done() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Discard 'prev' in perf_mmap__read() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Add new return value logic for perf_mmap__read_init() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Introduce perf_mmap__read_init() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Cleanup perf_mmap__push() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Recalculate size for overwrite mode (Jiri Olsa) [1514635]
-- [tools] perf evlist: Remove stale mmap read for backward (Jiri Olsa) [1514635]
-- [tools] perf tools: Rename 'backward' to 'overwrite' in evlist, mmap and record (Jiri Olsa) [1514635]
-- [tools] perf mmap: Don't discard prev in backward mode (Jiri Olsa) [1514635]
-- [tools] perf mmap: Fix perf backward recording (Jiri Olsa) [1514635]
-- [tools] perf mmap: Remove overwrite and check_messup from mmap read (Jiri Olsa) [1514635]
-- [tools] perf mmap: Remove overwrite from arguments list of perf_mmap__push (Jiri Olsa) [1514635]
-- [tools] perf evlist: Remove evlist->overwrite (Jiri Olsa) [1514635]
-- [tools] perf evlist: Remove 'overwrite' parameter from perf_evlist__mmap_ex (Jiri Olsa) [1514635]
-- [tools] perf evlist: Remove 'overwrite' parameter from perf_evlist__mmap (Jiri Olsa) [1514635]
-- [tools] perf tests: Set evlist of test__task_exit() to !overwrite (Jiri Olsa) [1514635]
-- [tools] perf tests: Set evlist of test__basic_mmap() to !overwrite (Jiri Olsa) [1514635]
-- [tools] perf tests: Set evlist of test__sw_clock_freq() to !overwrite (Jiri Olsa) [1514635]
-- [tools] perf tests: Set evlist of test__backward_ring_buffer() to !overwrite (Jiri Olsa) [1514635]
-
-* Mon Jul 16 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-924.el7]
-- [scsi] qla2xxx: Fix kernel crash due to late workqueue allocation (Himanshu Madhani) [1588915]
-- [nvme] nvme-fc: release io queues to allow fast fail (Ewan Milne) [1594926]
-- [nvme] move init of keep_alive work item to controller initialization (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: fix and refine state checks in __nvmf_check_ready (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: handle the admin-only case properly in nvmf_check_ready (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: refactor queue ready check (Ewan Milne) [1594926]
-- [nvme] nvme-fc: fix nulling of queue data on reconnect (Ewan Milne) [1594926]
-- [nvme] nvme-fc: remove reinit_request routine (Ewan Milne) [1594926]
-- [nvme] nvme-fc: change controllers first connect to use reconnect path (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: allow internal passthrough command on deleting controllers (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: allow duplicate connections to the discovery controller (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: centralize discovery controller defaults (Ewan Milne) [1594926]
-
-* Mon Jul 16 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-923.el7]
-- [security] selinux: bpf: Add addtional check for bpf object file receive (Jiri Olsa) [1593027]
-- [security] bpf: Add LSM hooks for bpf object related syscall (Jiri Olsa) [1593027]
-- [security] selinux: bpf: Add selinux check for eBPF syscall operations (Jiri Olsa) [1593027]
-- [fs] gfs2: Fix recovery issues for spectators (Robert S Peterson) [1511551]
-- [fs] lockd: lost rollback of set_grace_period() in lockd_down_net() (Scott Mayhew) [1598208]
-- [fs] lockd: double unregister of inetaddr notifiers (Scott Mayhew) [1598212]
-- [fs] mount: copy the port field into the cloned nfs_server structure (Steve Dickson) [1465259]
-- [fs] xfs: catch inode allocation state mismatch corruption (Carlos Maiolino) [1549127]
-- [fs] nfsd: don't advertise a SCSI layout for an unsupported request_queue (Benjamin Coddington) [1592284]
-- [fs] nfsd: Check queue type before submitting a SCSI request (Benjamin Coddington) [1592284]
-- [fs] block: Introduce queue flag QUEUE_FLAG_SCSI_PASSTHROUGH (Benjamin Coddington) [1592284]
-- [fs] pnfs: Always free the session slot on error in nfs4_layoutget_handle_exception (Steve Dickson) [1599853]
-- [fs] nfs: Remove nfs4_wait_for_completion_rpc_task() (Steve Dickson) [1599853]
-- [fs] nfs: Fix inconsistent indentation in nfs4proc.c (Steve Dickson) [1599853]
-- [acpi] numa: fix pxm to online numa node associations (Jeff Moyer) [1559290 1515085]
-- [dax] device-dax: allow MAP_SYNC to succeed (Jeff Moyer) [1568236 1515085]
-- [fs] rhel: get rid of FS_HAS_FO_EXTEND (Jeff Moyer) [1568236]
-- [kernel] rhel: switch get_fo_extend over to using the registered ops (Jeff Moyer) [1598279 1520492 1568236]
-- [fs] rhel: have file systems register their fo_extend structs (Jeff Moyer) [1568236]
-- [fs] rhel: add a file_operations_extend registration function (Jeff Moyer) [1568236]
-- [nvdimm] libnvdimm, dimm: handle EACCES failures from label reads (Jeff Moyer) [1585093 1515085]
-- [acpi] nfit, address-range-scrub: add module option to skip initial ars (Jeff Moyer) [1539278 1515085]
-- [acpi] nfit, address-range-scrub: rework and simplify ARS state machine (Jeff Moyer) [1539278 1515085]
-- [acpi] nfit, address-range-scrub: determine one platform max_ars value (Jeff Moyer) [1539278 1515085]
-- [nvdimm] libnvdimm, region: quiet region probe (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: use a safe lookup for dimm device name (Jeff Moyer) [1585106]
-- [nvdimm] libnvdimm, dimm: fix dpa reservation vs uninitialized label area (Jeff Moyer) [1515085]
-- [dax] device-dax: implement ->pagesize() for smaps to report MMUPageSize (Jeff Moyer) [1526251 1515085]
-- [mm] hugetlbfs: introduce ->pagesize() to vm_operations_struct (Jeff Moyer) [1526251 1515085]
-- [acpi] nfit, address-range-scrub: introduce nfit_spa->ars_state (Jeff Moyer) [1539278 1515085]
-- [nvdimm] libnvdimm: add an api to cast a 'struct nd_region' to its 'struct device' (Jeff Moyer) [1539278 1515085]
-- [acpi] nfit, address-range-scrub: fix scrub in-progress reporting (Jeff Moyer) [1539278 1515085]
-- [s390] dax: introduce CONFIG_DAX_DRIVER (Jeff Moyer) [1515085]
-- [dax] device-dax: Tell kbuild DEV_DAX_PMEM depends on DEV_DAX (Jeff Moyer) [1515085]
-- [acpi] nfit: fix region registration vs block-data-window ranges (Jeff Moyer) [1539278 1515085]
-- [acpi] nfit: rework NVDIMM leaf method detection (Jeff Moyer) [1585117 1515085]
-- [acpi] nfit: skip region registration for incomplete control regions (Jeff Moyer) [1585111 1515085]
-- [nvdimm] libnvdimm, label: change nvdimm_num_label_slots per UEFI 2.7 (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, label: change min label storage size per UEFI 2.7 (Jeff Moyer) [1515085]
-- [dax] device-dax: use module_nd_driver (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, pmem: use module_nd_driver (Jeff Moyer) [1515085]
-- [kernel] libnvdimm: provide module_nd_driver wrapper (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm: remove redundant assignment to pointer 'dev' (Jeff Moyer) [1515085]
-- [dax] device-dax: remove redundant __func__ in dev_dbg (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm: remove redundant __func__ in dev_dbg (Jeff Moyer) [1515085]
-- [acpi] nfit: remove redundant __func__ in dev_dbg (Jeff Moyer) [1515085]
-- [dax] ->direct_access does not sleep anymore (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: remove redundant initialization of 'nd_mapping' (Jeff Moyer) [1515085]
-- [acpi] nfit: fix register dimm error handling (Jeff Moyer) [1515085]
-- [dax] device-dax: Fix trailing semicolon (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, dax: fix 1GB-aligned namespaces vs physical misalignment (Jeff Moyer) [1526926 1515085]
-- [nvdimm] libnvdimm, pfn: fix start_pad handling for aligned namespaces (Jeff Moyer) [1515085]
-- [tools] nfit, libnvdimm: deprecate the generic SMART ioctl (Jeff Moyer) [1515085]
-- [acpi] nfit: fix health event notification (Jeff Moyer) [1526927 1515085]
-- [dax] fix general protection fault in dax_alloc_inode (Jeff Moyer) [1515085]
-- [dax] stop requiring a live device for dax_flush() (Jeff Moyer) [1515085]
-- [dax] quiet bdev_dax_supported() (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, badrange: remove a WARN for list_empty (Jeff Moyer) [1515085]
-- [tools] libnvdimm: move poison list functions to a new 'badrange' file (Jeff Moyer) [1515085]
-- [dax] dev/dax: fix uninitialized variable build warning (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: make a couple of functions static (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm: introduce 'flags' attribute for DIMM 'lock' and 'alias' status (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: fix label initialization to use valid seq numbers (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, pfn: make 'resource' attribute only readable by root (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: make 'resource' attribute only readable by root (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, region : make 'resource' attribute only readable by root (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, dimm: clear 'locked' status on successful DIMM enable (Jeff Moyer) [1515085]
-- [x86] libnvdimm, pmem: remove global pmem api (Jeff Moyer) [1515085]
-- [x86] libnvdimm, pmem: move arch_invalidate_pmem() to libnvdimm (Jeff Moyer) [1515085]
-- [scsi] qla2xxx: Fix inconsistent DMA mem alloc/free (Himanshu Madhani) [1596344]
-- [scsi] lpfc: Revise copyright for new company language (Dick Kennedy) [1595381]
-- [scsi] lpfc: update driver version to 12.0.0.5 (Dick Kennedy) [1595381]
-- [scsi] lpfc: devloss timeout race condition caused null pointer reference (Dick Kennedy) [1595381]
-- [scsi] lpfc: Fix NVME Target crash in defer rcv logic (Dick Kennedy) [1595381]
-- [scsi] lpfc: Support duration field in Link Cable Beacon V1 command (Dick Kennedy) [1595381]
-- [scsi] lpfc: Make PBDE optimizations configurable (Dick Kennedy) [1595381]
-- [scsi] lpfc: Fix abort error path for NVMET (Dick Kennedy) [1595381]
-- [scsi] lpfc: Fix panic if driver unloaded when port is offline (Dick Kennedy) [1595381]
-- [scsi] lpfc: Fix driver not setting dpp bits correctly in doorbell word (Dick Kennedy) [1595381]
-- [scsi] lpfc: Add Buffer overflow check, when nvme_info larger than PAGE_SIZE (Dick Kennedy) [1595381]
-- [kernel] sched/topology: Introduce NUMA identity node sched domain (Suravee Suthikulpanit) [1566753]
-- [x86] handle node hole when initializing numa_meminfo (Larry Woodman) [1598086]
-- [mm] make memblock_overlaps_region() return bool (Larry Woodman) [1598086]
-
-* Fri Jul 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-922.el7]
-- [md] raid10 set default value for max_sectors (Nigel Croxon) [1494474]
-- [md] raid10: ignore discard error (Nigel Croxon) [1494474]
-- [md] raid5: Assigning NULL to sh->batch_head before testing bit R5_Overlap of a stripe (Nigel Croxon) [1494474]
-- [md] raid1: add error handling of read error from FailFast device (Nigel Croxon) [1494474]
-- [md] fix NULL dereference of mddev->pers in remove_and_add_spares() (Nigel Croxon) [1494474]
-- [md] raid10: check bio in r10buf_pool_free to void NULL pointer dereference (Nigel Croxon) [1494474]
-- [md] raid1: exit sync request if MD_RECOVERY_INTR is set (Nigel Croxon) [1494474]
-- [md] raid1: fix NULL pointer dereference (Nigel Croxon) [1494474]
-- [md] fix a potential deadlock of raid5/raid10 reshape (Nigel Croxon) [1494474]
-- [md] raid5: avoid string overflow warning (Nigel Croxon) [1494474]
-- [md] md raid10: fix NULL deference in handle_write_completed() (Nigel Croxon) [1494474]
-- [md] only allow remove_and_add_spares when no sync_thread running (Nigel Croxon) [1494474]
-- [md] document lifetime of internal rdev pointer (Nigel Croxon) [1494474]
-- [md] fix md_write_start() deadlock w/o metadata devices (Nigel Croxon) [1494474]
-- [md] Free bioset when md_run fails (Nigel Croxon) [1494474]
-- [md] md-multipath: Use seq_putc() in multipath_status() (Nigel Croxon) [1494474]
-- [md] raid5: simplify uninitialization of shrinker (Nigel Croxon) [1494474]
-- [md] r5cache: print more info of log recovery (Nigel Croxon) [1494474]
-- [md] raid1, raid10: silence warning about wait-within-wait (Nigel Croxon) [1494474]
-- [md] introduce new personality funciton start() (Nigel Croxon) [1494474]
-- [md] raid1/10: add missed blk plug (Nigel Croxon) [1494474]
-- [md] r5cache: move mddev_lock() out of r5c_journal_mode_set() (Nigel Croxon) [1494474]
-- [md] raid5: correct degraded calculation in raid5_error (Nigel Croxon) [1494474]
-- [md] release allocated bitset sync_set (Nigel Croxon) [1494474]
-- [md] bitmap: clear BITMAP_WRITE_ERROR bit before writing it to sb (Nigel Croxon) [1494474]
-- [md] be cautious about using ->curr_resync_completed for ->recovery_offset (Nigel Croxon) [1494474]
-- [md] don't check MD_SB_CHANGE_CLEAN in md_allow_write (Nigel Croxon) [1494474]
-- [md] remove redundant variable q (Nigel Croxon) [1494474]
-- [md] use lockdep_assert_held (Nigel Croxon) [1494474]
-- [md] remove special meaning of ->quiesce(.., 2) (Nigel Croxon) [1494474]
-- [md] forbid a RAID5 from having both a bitmap and a journal (Nigel Croxon) [1494474]
-- [md] raid5: Set R5_Expanded on parity devices as well as data (Nigel Croxon) [1494474]
-- [md] raid10: remove a couple of redundant variables and initializations (Nigel Croxon) [1494474]
-- [md] rename some md/ files to have an "md-" prefix (Nigel Croxon) [1494474]
-- [md] raid10: remove VLAIS (Nigel Croxon) [1494474]
-- [md] bitmap: revert a patch (Nigel Croxon) [1494474]
-- [md] always set THREAD_WAKEUP and wake up wqueue if thread existed (Nigel Croxon) [1494474]
-- [md] raid5: cap worker count (Nigel Croxon) [1494474]
-- [md] raid5: remove raid5_build_block (Nigel Croxon) [1494474]
-- [md] r5cache: call mddev_lock/unlock() in r5c_journal_mode_show (Nigel Croxon) [1494474]
-- [md] replace seq_release_private with seq_release (Nigel Croxon) [1494474]
-- [md] raid1/10: reset bio allocated from mempool (Nigel Croxon) [1494474]
-- [md] raid5: release/flush io in raid5_do_work() (Nigel Croxon) [1494474]
-- [md] bitmap: copy correct data for bitmap super (Nigel Croxon) [1494474]
-- [md] r5cache: fix io_unit handling in r5l_log_endio() (Nigel Croxon) [1494474]
-- [md] r5cache: call mddev_lock/unlock() in r5c_journal_mode_set (Nigel Croxon) [1494474]
-- [md] fix warnning for UP case (Nigel Croxon) [1494474]
-- [md] remove 'idx' from 'struct resync_pages' (Nigel Croxon) [1494474]
-- [md] bitmap: don't read page from device with Bitmap_sync (Nigel Croxon) [1494474]
-- [md] fix sleep in atomic (Nigel Croxon) [1494474]
-- [md] fix a null dereference (Nigel Croxon) [1494474]
-- [md] use a separate bio_set for synchronous IO. (Nigel Croxon) [1494474]
-- [md] fail if mddev->bio_set can't be created (Nigel Croxon) [1494474]
-- [md] change the initialization value for a spare device spot to MD_DISK_ROLE_SPARE (Nigel Croxon) [1494474]
-- [md] raid1: remove unused bio in sync_request_write (Nigel Croxon) [1494474]
-- [md] raid10: fix FailFast test for wrong device (Nigel Croxon) [1494474]
-- [md] make bio mergeable (Nigel Croxon) [1494474]
-- [md] namespace private helper names (Nigel Croxon) [1494474]
-- [md] report sector of stripes with check mismatches (Nigel Croxon) [1494474]
-- [md] uuid debug statement now in processor byte order (Nigel Croxon) [1494474]
-- [md] r5cache: handle sync with data in write back cache (Nigel Croxon) [1494474]
-- [md] r5cache: gracefully handle journal device errors for writeback mode (Nigel Croxon) [1494474]
-- [md] raid1/10: avoid unnecessary locking (Nigel Croxon) [1494474]
-- [md] raid5-cache: in r5l_do_submit_io(), submit io->split_bio first (Nigel Croxon) [1494474]
-- [md] raid5: make use of spin_lock_irq over local_irq_disable + spin_lock (Nigel Croxon) [1494474]
-- [md] raid10: skip spare disk as 'first' disk (Nigel Croxon) [1494474]
-- [md] clear WantReplacement once disk is removed (Nigel Croxon) [1494474]
-- [md] raid10: wait up frozen array in handle_write_completed (Nigel Croxon) [1494474]
-- [md] support disabling of create-on-open semantics (Nigel Croxon) [1494474]
-- [md] allow creation of mdNNN arrays via md_mod/parameters/new_array (Nigel Croxon) [1494474]
-- [md] raid1: factor out flush_bio_list() (Nigel Croxon) [1494474]
-- [md] raid1: abort delayed writes when device fails (Nigel Croxon) [1494474]
-- [md] raid10: abort delayed writes when device fails (Nigel Croxon) [1494474]
-- [md] raid1: avoid reusing a resync bio after error handling (Nigel Croxon) [1494474]
-- [md] MD_CLOSING needs to be cleared after called md_set_readonly or do_md_stop (Nigel Croxon) [1494474]
-- [md] raid10: reset the 'first' at the end of loop (Nigel Croxon) [1494474]
-- [md] raid6: Fix anomily when recovering a single device in RAID6 (Nigel Croxon) [1494474]
-- [md] update slab_cache before releasing new stripes when stripes resizing (Nigel Croxon) [1494474]
-- [md] raid1: kill warning on powerpc_pseries (Nigel Croxon) [1494474]
-- [md] raid5-cache: fix payload endianness problem in raid5-cache (Nigel Croxon) [1494474]
-- [md] raid10: avoid direct access to bvec table in handle_reshape_read_error (Nigel Croxon) [1494474]
-- [md] raid10: retrieve page from preallocated resync page array (Nigel Croxon) [1494474]
-- [md] raid10: don't use bio's vec table to manage resync pages (Nigel Croxon) [1494474]
-- [md] raid10: refactor code of read reshape's .bi_end_io (Nigel Croxon) [1494474]
-- [md] raid1: use bio helper in process_checks() (Nigel Croxon) [1494474]
-- [md] raid1: retrieve page from pre-allocated resync page array (Nigel Croxon) [1494474]
-- [md] raid1: don't use bio's vec table to manage resync pages (Nigel Croxon) [1494474]
-- [md] raid1: simplify r1buf_pool_free() (Nigel Croxon) [1494474]
-- [md] prepare for managing resync I/O pages in clean way (Nigel Croxon) [1494474]
-- [md] move two macros into md.h (Nigel Croxon) [1494474]
-- [md] fix several trivial typos in comments (Nigel Croxon) [1494474]
-- [md] raid10: refactor some codes from raid10 write request (Nigel Croxon) [1494474]
-- [md] raid10: stop using bi_phys_segments (Nigel Croxon) [1494474]
-- [md] revert md/raid5: limit request size according to implementation limits (Nigel Croxon) [1494474]
-- [md] raid5: remove over-loading of ->bi_phys_segments (Nigel Croxon) [1494474]
-- [md] raid5: use bio_inc_remaining() instead of repurposing bi_phys_segments as a counter (Nigel Croxon) [1494474]
-- [md] raid5: call bio_endio() directly rather than queueing for later (Nigel Croxon) [1494474]
-- [md] md rhel-only: Fix backport errors for ff875738 (Nigel Croxon) [1494474]
-- [md] raid5: simplfy delaying of writes while metadata is updated (Nigel Croxon) [1494474]
-- [md] r5cache: generate R5LOG_PAYLOAD_FLUSH (Nigel Croxon) [1494474]
-- [md] r5cache: handle R5LOG_PAYLOAD_FLUSH in recovery (Nigel Croxon) [1494474]
-- [md] add doc for raid5-cache (Nigel Croxon) [1494474]
-- [md] r5cache: improve recovery with read ahead page pool (Nigel Croxon) [1494474]
-- [md] raid5: sort bios (Nigel Croxon) [1494474]
-- [md] raid5-cache: bump flush stripe batch size (Nigel Croxon) [1494474]
-- [md] raid5: prioritize stripes for writeback (Nigel Croxon) [1494474]
-- [md] raid1: fix a trivial typo in comments (Nigel Croxon) [1494474]
-- [md] r5cache: fix set_syndrome_sources() for data in cache (Nigel Croxon) [1494474]
-- [md] fix super_offset endianness in super_1_rdev_size_change (Nigel Croxon) [1494474]
-- [md] don't impose the MD_SB_DISKS limit on arrays without metadata (Nigel Croxon) [1494474]
-- [md] move funcs from pers->resize to update_size (Nigel Croxon) [1494474]
-- [md] delete dead code (Nigel Croxon) [1494474]
-- [md] raid10: submit bio directly to replacement disk (Nigel Croxon) [1494474]
-- [md] linear: shutup lockdep warnning (Nigel Croxon) [1494474]
-- [md] raid5: Don't reinvent the wheel but use existing llist API (Nigel Croxon) [1494474]
-- [md] disable WRITE SAME if it fails in underlayer disks (Nigel Croxon) [1494474]
-- [md] raid5-cache: exclude reclaiming stripes in reclaim check (Nigel Croxon) [1494474]
-- [md] raid5-cache: stripe reclaim only counts valid stripes (Nigel Croxon) [1494474]
-- [md] ensure md devices are freed before module is unloaded (Nigel Croxon) [1494474]
-- [md] r5cache: improve journal device efficiency (Nigel Croxon) [1494474]
-- [md] r5cache: enable chunk_aligned_read with write back cache (Nigel Croxon) [1494474]
-- [md] raid5-cache: suspend reclaim thread instead of shutdown (Nigel Croxon) [1494474]
-- [md] raid5: only dispatch IO from raid5d for harddisk raid (Nigel Croxon) [1494474]
-- [md] md linear: fix a race between linear_add() and linear_congested() (Nigel Croxon) [1494474]
-- [md] r5cache: shift complex rmw from read path to write path (Nigel Croxon) [1494474]
-- [md] r5cache: flush data only stripes in r5l_recovery_log() (Nigel Croxon) [1494474]
-- [md] raid5: move comment of fetch_block to right location (Nigel Croxon) [1494474]
-- [md] r5cache: read data into orig_page for prexor of cached data (Nigel Croxon) [1494474]
-- [md] raid5-cache: delete meaningless code (Nigel Croxon) [1494474]
-- [md] r5cache: fix spelling mistake on "recoverying" (Nigel Croxon) [1494474]
-- [md] r5cache: assign conf->log before r5l_load_log() (Nigel Croxon) [1494474]
-- [md] r5cache: simplify handling of sh->log_start in recovery (Nigel Croxon) [1494474]
-- [md] raid5-cache: removes unnecessary write-through mode judgments (Nigel Croxon) [1494474]
-- [md] raid10: Refactor raid10_make_request (Nigel Croxon) [1494474]
-- [md] r5cache: handle FLUSH and FUA (Nigel Croxon) [1494474]
-- [md] raid5-cache: use bio chaining (Nigel Croxon) [1494474]
-
-* Fri Jul 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-921.el7]
-- [media] uvcvideo: Support realtek's UVC 1.5 device (Jarod Wilson) [1561502]
-- [crypto] chelsio: Remove separate buffer used for DMA map B0 block in CCM (Arjun Vynipadath) [1595086]
-- [crypto] chelsio - Send IV as Immediate for cipher algo (Arjun Vynipadath) [1595086]
-- [crypto] chelsio: request to HW should wrap (Arjun Vynipadath) [1595086]
-- [infiniband] iw_cxgb4: always set iw_cm_id.provider_data (Arjun Vynipadath) [1595085]
-- [infiniband] iw_cxgb4: Fix an error handling path in 'c4iw_get_dma_mr()' (Arjun Vynipadath) [1595085]
-- [infiniband] iw_cxgb4: Atomically flush per QP HW CQEs (Arjun Vynipadath) [1595085]
-- [infiniband] rdma/cxgb4: release hw resources on device removal (Arjun Vynipadath) [1595085]
-- [netdrv] bnxt_en: adding PCI ID for SMARTNIC VF support (Jonathan Toppins) [1520611]
-- [netdrv] bnxt_en: Add PCIe device ID for bcm58804 (Jonathan Toppins) [1520611]
-- [netdrv] bnxt: Add PCIe device IDs for bcm58802/bcm58808 (Jonathan Toppins) [1520611]
-- [mm] shm_mnt is as longterm as it gets (Aaron Tomlin) [1597314]
-- [block] blk-throttle: check stats_cpu before reading it from sysfs (Ming Lei) [1567748]
-- [block] do not use interruptible wait anywhere (Ming Lei) [1580045]
-- [md] dm thin: remove merge_bvec hooks (Mike Snitzer) [1595898]
-- [md] dm thin: handle running out of data space vs concurrent discard (Mike Snitzer) [1563697]
-- [md] dm thin metadata: remove needless work from __commit_transaction (Mike Snitzer) [1563697]
-- [kernel] ftrace: Fix compilation warning about control_ops_free (Gustavo Duarte) [1597877]
-- [kernel] alarmtimer: Do not signal SIGEV_NONE timers (Oleg Nesterov) [1524333]
-- [x86] kvm: svm: Implement pause loop exit logic in SVM (Gary Hook) [1563718]
-- [x86] kvm: svm: Add pause filter threshold (Gary Hook) [1563718]
-- [x86] kvm: vmx: Bring the common code to header file (Gary Hook) [1563718]
-- [x86] kvm: vmx: Remove ple_window_actual_max (Gary Hook) [1563718]
-- [x86] kvm: vmx: Fix the module parameters for vmx (Gary Hook) [1563718]
-- [s390] qeth: fix IPA command submission race (Hendrik Brueckner) [1594197]
-- [s390] qeth: don't dump control cmd twice (Hendrik Brueckner) [1594197]
-- [s390] qeth: fix SETIP command handling (Hendrik Brueckner) [1594197]
-- [s390] archrandom: Rework arch random implementation (Hendrik Brueckner) [1594181]
-- [s390] archrandom: Reconsider s390 arch random implementation (Hendrik Brueckner) [1594181]
-- [s390] scsi: zfcp: fix missing REC trigger trace on enqueue without ERP thread (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing REC trigger trace for all objects in ERP_FAILED (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing REC trigger trace on terminate_rport_io for ERP_FAILED (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing REC trigger trace on terminate_rport_io early return (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix misleading REC trigger trace where erp_action setup failed (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing SCSI trace for retry of abort / scsi_eh TMF (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing SCSI trace for result of eh_host_reset_handler (Hendrik Brueckner) [1594204]
-
-* Thu Jul 12 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-920.el7]
-- [tools] objtool, perf: Fix GCC 8 -Wrestrict error (Yauheni Kaliuta) [1593432]
-- [tools] give up on gcc ilog2() constant optimizations (Yauheni Kaliuta) [1593432]
-- [tools] include: Include missing headers for fls() and types in linux/log2.h (Yauheni Kaliuta) [1593432]
-- [tools] lib/subcmd/pager.c: do not alias select() params (Yauheni Kaliuta) [1593432]
-- [scsi] ipr: Format HCAM overlay ID 0x41 (Desnes Augusto Nunes do Rosario) [1591660]
-- [scsi] ipr: new IOASC update (Desnes Augusto Nunes do Rosario) [1591660]
-- [scsi] qla2xxx: Mask off Scope bits in retry delay (Himanshu Madhani) [1588132]
-- [scsi] aacraid: Fix PD performance regression over incorrect qd being set (Raghava Aditya Renukunta) [1595401]
-- [mm] add param that allows bootline control of hardened usercopy (Christoph von Recklinghausen) [1592517]
-- [fs] vfs/proc/kcore, x86/mm/kcore: Fix SMAP fault when dumping vsyscall user page (Christoph von Recklinghausen) [1562140]
-- [char] /dev/mem: Avoid overwriting "err" in read_mem() (Christoph von Recklinghausen) [1562140]
-- [fs] proc/kcore.c: use probe_kernel_read() instead of memcpy() (Christoph von Recklinghausen) [1562140]
-- [char] /dev/mem: Add bounce buffer for copy-out (Christoph von Recklinghausen) [1562140]
-- [fs] proc/kcore.c: Add bounce buffer for ktext data (Christoph von Recklinghausen) [1562140]
-- [fs] proc/kcore.c: Make bounce buffer global for read (Christoph von Recklinghausen) [1562140]
-- [mm] usercopy: Move enum for arch_within_stack_frames() (Christoph von Recklinghausen) [1562140]
-- [mm] usercopy: remove page-spanning test for now (Christoph von Recklinghausen) [1562140]
-- [mm] usercopy: fix overlap check for kernel text (Christoph von Recklinghausen) [1562140]
-- [security] HAVE_ARCH_HARDENED_USERCOPY is unconditional now (Christoph von Recklinghausen) [1562140]
-- [mm] SLUB hardened usercopy support (Christoph von Recklinghausen) [1562140]
-- [mm] SLAB hardened usercopy support (Christoph von Recklinghausen) [1562140]
-- [s390] uaccess: Enable hardened usercopy (Christoph von Recklinghausen) [1562140]
-- [powerpc] uaccess: Enable hardened usercopy (Christoph von Recklinghausen) [1562140]
-- [x86] uaccess: Enable hardened usercopy (Christoph von Recklinghausen) [1562140]
-- [security] Make the hardened user-copy code depend on having a hardened allocator (Christoph von Recklinghausen) [1562140]
-- [security] Grammar (Christoph von Recklinghausen) [1562140]
-- [mm] Hardened usercopy (Christoph von Recklinghausen) [1562140]
-- [x86] mm: Implement stack frame object validation (Christoph von Recklinghausen) [1562140]
-- [kernel] mm: Add is_migrate_cma_page (Christoph von Recklinghausen) [1562140]
-- [mm] slub: support left redzone (Christoph von Recklinghausen) [1562140]
-- [mm] slub: avoid duplicate creation on the first object (Christoph von Recklinghausen) [1562140]
-- [nvdimm] libnvdimm, btt: Fix an incompatibility in the log layout (Jeff Moyer) [1526905]
-- [nvdimm] libnvdimm, btt: add a couple of missing kernel-doc lines (Jeff Moyer) [1526905]
-- [kernel] hrtimer: Allow concurrent hrtimer_start() for self restarting timers (Oleksandr Natalenko) [1574387]
-- [pci] pciehp: Always enable occupied slot on probe (Myron Stowe) [1597948]
-- [firmware] dmi_scan: Always show system identification string (Prarit Bhargava) [1596711]
-- [infiniband] vmw_pvrdma: Release netdev when vmxnet3 module is removed (Neil Horman) [1588358]
-- [netdrv] r8169: fix mac address change (Corinna Vinschen) [1598112]
-- [netdrv] nfp: flower: free dst_entry in route table (Pablo Cascon) [1592928]
-- [netdrv] enic: do not overwrite error code (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: initialize enic->rfs_h.lock in enic_probe (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: fix UDP rss bits (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: set DMA mask to 47 bit (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: drop IP proto check for vxlan tunnel delete (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: fix boolreturn.cocci warnings (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: set IG desc cache flag in open (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: enable rq before updating rq descriptors (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: set UDP rss flag (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: Check if hw supports multi wq with vxlan offload (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: Add vxlan offload support for IPv6 pkts (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: Check inner ip proto for pseudo header csum (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: add wq clean up budget (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: add sw timestamp support (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: Add support for 'ethtool -g/-G' (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: reset fetch index (Govindarajulu Varadarajan) [1532337]
-- [x86] perf/x86/intel/uncore: Clean up client IMC uncore (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Expose uncore_pmu_event*() functions (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Support IIO free-running counters on SKX (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Add infrastructure for free running counters (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Add new data structures for free running counters (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Correct fixed counter index check in generic code (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Correct fixed counter index check for NHM (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Introduce customized event_read() for client IMC uncore (Prarit Bhargava) [1514639]
-- [s390] pci: support multiple IRQ actions per MSI (Hendrik Brueckner) [1532560]
-- [s390] pci: do not report the relative IRQ number (Hendrik Brueckner) [1532560]
-- [s390] pci: avoid an MSI vector number of zero (Hendrik Brueckner) [1532560]
-- [s390] zcrypt: Fix CCA and EP11 CPRB processing failure memory leak (Hendrik Brueckner) [1594180]
-- [s390] qeth: when thread completes, wake up all waiters (Hendrik Brueckner) [1594198]
-- [s390] qeth: free netdevice when removing a card (Hendrik Brueckner) [1596110]
-- [s390] scsi: zfcp: fix infinite iteration on ERP ready list (Hendrik Brueckner) [1594206]
-- [s390] qeth: lock read device while queueing next buffer (Hendrik Brueckner) [1594207]
-- [s390] qdio: don't merge ERROR output buffers (Hendrik Brueckner) [1594208]
-
-* Wed Jul 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-919.el7]
-- [scripts] kbuild: de-duplicate fixdep usage (Yauheni Kaliuta) [1596301]
-- [scripts] kbuild: suppress annoying ... is up to date. message (Yauheni Kaliuta) [1596301]
-- [scripts] kbuild: Fix handling of backslashes in *.cmd files (Yauheni Kaliuta) [1596301]
-- [tools] perf list: Add support for PERF_COUNT_SW_BPF_OUT (Jiri Olsa) [1596329]
-- [fs] atomic_open(): fix the handling of create_error (Robert S Peterson) [1596155]
-- [kernel] handle suicide on late failure exits in execve() in search_binary_handler() (Bhupesh Sharma) [1496408]
-- [kernel] exec: cleanup the CONFIG_MODULES logic (Bhupesh Sharma) [1496408]
-- [fs] exec: kill ->load_binary != NULL check in search_binary_handler() (Bhupesh Sharma) [1496408]
-- [fs] exec: move allow_write_access/fput to exec_binprm() (Bhupesh Sharma) [1496408]
-- [fs] exec: proc_exec_connector() should be called only once (Bhupesh Sharma) [1496408]
-- [fs] exec: kill "int depth" in search_binary_handler() (Bhupesh Sharma) [1496408]
-- [fs] exec: introduce exec_binprm() for "depth == 0" code (Bhupesh Sharma) [1496408]
-- [fs] nfsv4: Fix a typo in nfs41_sequence_process (Steve Dickson) [1596713]
-- [fs] nfsv4: revert commit 5f83d86cf531d ("nfsv4.x: Fix wraparound issues..") (Steve Dickson) [1596713]
-- [fs] fs: don't scan the inode cache before SB_BORN is set (Bill O'Donnell) [1591800]
-- [fs] xfs: clear sb->s_fs_info on mount failure (Bill O'Donnell) [1591800]
-- [fs] xfs: add mount delay debug option (Bill O'Donnell) [1591800]
-- [fs] race of nfsd inetaddr notifiers vs nn->nfsd_serv change ("J. Bruce Fields") [1509323]
-- [fs] nfds: avoid gettimeofday for nfssvc_boot time ("J. Bruce Fields") [1509323]
-- [fs] race of lockd inetaddr notifiers vs nlmsvc_rqst change ("J. Bruce Fields") [1509323]
-- [hid] wacom: Correct logical maximum Y for 2nd-gen Intuos Pro large (Benjamin Tissoires) [1591499]
-- [netdrv] nfp: flower: remove headroom from max MTU calculation (Pablo Cascon) [1566474]
-- [netdrv] nfp: flower: offload phys port MTU change (Pablo Cascon) [1566474]
-- [netdrv] nfp: modify app MTU setting callbacks (Pablo Cascon) [1566474]
-- [netdrv] nfp: flower: set tunnel ttl value to net default (Pablo Cascon) [1586158]
-- [audio] alsa: Remove deprecated snd_card_create() (Jaroslav Kysela) [1591914]
-- [audio] alsa: media: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: mips: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: isa: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: firewire: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: arm: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: au1x00: convert to platform device (Jaroslav Kysela) [1591914]
-- [audio] alsa: parisc: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: pcmcia: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: ppc: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: sh: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: sparc: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: spi: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: hid: prodikeys: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: line6: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: usb: gadget: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [powerpc] fadump: Do not use hugepages when fadump is active (Gustavo Duarte) [1559113]
-- [powerpc] fadump: exclude memory holes while reserving memory in second kernel (Gustavo Duarte) [1559113]
-- [x86] mce: Save microcode revision in machine check records (Prarit Bhargava) [1568242]
-
-* Mon Jul 02 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-918.el7]
-- [netdrv] mlxsw: spectrum: Forbid creation of VLAN 1 over port/LAG (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Fix an error handling path in 'mlxsw_core_bus_device_register()' (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Do not remove mrouter port from MDB's ports list (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Don't use resource ID of 0 (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Pass mlxsw_core as arg of mlxsw_sp_kvdl_resources_register() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: Move "resources_query_enable" out of mlxsw_config_profile (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: Move "used_kvd_sizes" check to mlxsw_pci_config_profile (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Fix arg name of MLXSW_CORE_RES_VALID and MLXSW_CORE_RES_GET (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: remove kvd_hash_granularity from config profile struct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Change KVD linear parts from list to array (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: Fix handling of resource_size_param (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Fix flex actions header ifndef define construct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Fix initialization of struct mlxsw_sp_span_parms (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Handle MTU change of GRE netdevs (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Move mlxsw_sp_rif_ipip_lb_op() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add support for auto-negotiation disable mode (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Update the supported firmware to version 13.1620.192 (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Do not invalidate already invalid ACL groups (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Adapt ACL configuration to new firmware versions (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Reserved field in mbox profile shouldn't be set (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: pci: Set mbox dma addresses to zero when not used (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_buffers: Set a minimum quota for CPU port traffic (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Don't depend on ip_gre and ip6_gre (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move mlxsw_sp_span_gretap4_route() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Prevent duplicate mirrors (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Fix gact_ok offloading (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Check success of FDB add operation (Ivan Vecera) [1520304]
-- [netdrv] spectrum: Reference count VLAN entries (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Treat IPv6 unregistered multicast as broadcast (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Fix flex keys scratchpad offset conflict (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: prio: Handle graft command (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: prio: Delete child qdiscs when removing bands (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Update sch_prio stats to include sch_red related drops (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Update backlog handling of a child qdiscs (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Collect stats for sch_red based on priomap (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Add priority map per qdisc (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add priority counters (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Support qdisc per tclass (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Support mirror to ip6gretap (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Support mirror to gretap (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: Move a mirroring check to mlxsw_sp_span_entry_create (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: Handle config changes pertinent to SPAN (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Generalize SPAN support (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Keep mirror netdev in mlxsw_sp_span_entry (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Extract mlxsw_sp_span_entry_(de, )configure() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Initialize span_entry.id eagerly (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: span: Remove span_entry by span_id (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Extend mlxsw_reg_mpat_pack() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add SPAN encapsulation to MPAT register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Support decoding IPv6 tunnel addresses (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Extract mlxsw_sp_l3addr_is_zero (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: avoid uninitialized variable warning (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: use div_u64() for 64-bit division (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Allow port enslavement to a VLAN-unaware bridge (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: Add support for per part occupancy (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: Add support for dynamic partition set (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: Add support for linear division resources (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Do not unconditionally clear route offload indication (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move SPAN code to separate module (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Drop struct span_entry.used (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Fix a coding style nit (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Distinguish between IPv4/6 tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Add a forgotten include (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Fix error path in mlxsw_sp_vr_create (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: use tc_cls_can_offload_and_chain0() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Don't log an error on missing neighbor (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Remove unnecessary prefix lengths from LPM tree (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Pass FIB node to LPM tree unlink function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Use the nodes list as indication for empty FIB (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Add support for mirror action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Extend mlxsw_afa_ops for counter index and implement for Spectrum (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Extend and export SPAN API (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Add support for mirroring action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Make counter index allocated inside the action append (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Convert fwd_entry_ref list to be generic per-block resource list (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Extend mlxsw_afa_ops for counter index and implement for Spectrum (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Free LPM tree upon failure (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Upper-bound supported FW version (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Pass mlxsw_sp_port down to ruleset bind/unbind ops (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Implement TC block sharing (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Don't store netdev and ingress for ruleset unbind (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Reshuffle code around mlxsw_sp_acl_ruleset_create/destroy (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Make function mlxsw_sp_kvdl_part_occ() static (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Make function mlxsw_sp_qdisc_prio_unoffload static (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: documentation: Add resources ABI documentation (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Add support for reload (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: pci: Add support for getting resource through devlink (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add support for getting kvdl occupancy (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_dpipe: Connect dpipe tables to resources (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Register KVD resources with devlink (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: pci: Add support for performing bus reset (Ivan Vecera) [1520304]
-- [netdrv] sched: red: don't reset the backlog on every stat dump (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Support stats for PRIO qdisc (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Support PRIO qdisc offload (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Configure default routing priority (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: add rdpm register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Add support for IPv6 non-equal-cost multipath (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Remove qdisc before setting a new one (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Create a generic replace function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Create a generic destroy function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Add an ops struct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Unite all handle checks (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Add tclass number to the mlxsw_sp_qdisc (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Make the clean stats function to be for RED only (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Clean qdisc statistics structs (Ivan Vecera) [1520304]
-- [netdrv] sch: red: Change offloaded xstats to be incremental (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Move qdisc's declarations to its designated file (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Fix typo in firmware upgrade message (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_qdisc: Don't use variable array in mlxsw_sp_tclass_congestion_enable (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: pci: Wait after reset before accessing HW (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Relax sanity checks during enslavement (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Fix NULL pointer deref (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Remove batch neighbour deletion causing FW bug (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Disable MAC learning for ovs port (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: handle NETIF_F_HW_TC changes correctly (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Update nexthop RIF on update (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Handle encap to demoted tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Demote tunnels on VRF migration (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Offload decap only for up tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Do not try to create non-existing ports during unsplit (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Add batch neighbour deletion (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Update minimum firmware version to 13.1530.152 (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support general qdisc stats (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support RED xstats (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Collect tclass related stats periodically (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add ext and tc-cong counter groups (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support RED qdisc offload (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add cwtp & cwtpm registers (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Handle down of tunnel underlay (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Handle underlay device change (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Handle NETDEV_CHANGE on L3 tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support IPIP underlay VRF migration (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Onload conflicting tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Fix saddr deduction in mlxsw_sp_ipip_entry_create() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Generalize __mlxsw_sp_ipip_entry_update_tunnel() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Extract __mlxsw_sp_ipip_entry_update_tunnel() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Propagate extack for tunnel events (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_ipip_entry_ol_up_event() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Make mlxsw_sp_netdevice_ipip_ol_up_event() void (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_ipip_entry_ol_down_event() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Split accessor functions (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move mlxsw_sp_ipip_netdev_(s, d)addr(, 4)() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_netdevice_ipip_can_offload() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Rename IPIP-related netdevice handlers (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Update multipath hash parameters upon netevents (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Align multipath hash parameters with kernel's (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add Router ECMP Configuration Register Version 2 (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Properly name netevent work struct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Embed netevent notifier block in router struct (Ivan Vecera) [1520304]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: i2c: Fix buffer increment counter for write transaction (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add high and low temperature thresholds (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Return extack message on abort due to fib rules (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Avoid magic number in PPCNT (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Change stats cache to be local (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr_tcam: Include the mr_tcam header file (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr: Make the function mlxsw_sp_mr_dev_vif_lookup static (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr: Fix various endianness issues (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add another partition to KVD linear (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Increase number of linear entries (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Populate adjacency entries according to weights (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Prepare for large adjacency groups (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Store weight in nexthop struct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add ability to query KVDL allocation size (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Better represent KVDL partitions (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_dpipe: Add adjacency group size (Ivan Vecera) [1520304]
-- [netdrv] spectrum: Convert fib event handlers to use container_of on info arg (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Drop refcounting of IPIP entries (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support IPIP overlay VRF migration (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support decap-only IP-in-IP tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Move mlxsw_sp_netdev_ipip_type() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move netdevice NB to struct mlxsw_sp (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Support bridge mrouter notifications (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Add support for router port in SMID entries (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: router: Export the mlxsw_sp_router_port function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Propagate extack further for bridge enslavements (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add extack for VLAN enslavements (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add extack messages for enslave failures (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add missing error code on allocation failure (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Fix check for IS_ERR() instead of NULL (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr: Support trap-and-forward routes (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr_tcam: Add trap-and-forward multicast route (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add trap for multicast trap-and-forward routes (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: acl: Introduce ACL trap and forward action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Drop a redundant condition (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Fix a typo (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: fix uninitialized value in err (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: router: Don't ignore IPMR notifications (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Notify multicast router on RIF MTU changes (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Add multicast routes notification handling functionality (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: router: Squash the default route table to main (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add the multicast routing hardware logic (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add the multicast routing offloading logic (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_flower: Offload "ok" termination action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Propagate errors from mlxsw_afa_block_jump/continue (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Consider mrouter status for mdb changes (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Remove mrouter flood in mdb flush (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Update the mdb of mrouter port change (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Flood all mc packets to mrouter ports (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Flush the mdb when a port is being removed (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Flood mc when mc is disabled by user flag (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Use generic mc flood function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Disable mdb when mc is disabled (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Don't write mids to the HW when mc is disabled (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Break mid deletion into two function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Attach mid id allocation to HW write (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Break smid write function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Save mids list per bridge device (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Remove reference count from mid (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Add a ports bitmap to the mid db (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Change mc_router to mrouter (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add multicast router traps and trap groups (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Export RIF dev access function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Configure RIF to forward IPv4 multicast packets by default (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add Router Rules Copy Register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add the Router Multicast Forwarding Table Version 2 register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: resources: Add multicast ERIF list entries resource (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add the Router Interface Group Version 2 register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add The Router TCAM Allocation register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Rename the flexible action set length field (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: acl: Change trap ACL action to get the trap_id as a parameter (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: acl: Introduce mcrouter ACL action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move ACL flexible actions instance to spectrum (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Change init order (Ivan Vecera) [1520304]
-- [net] sched: prio: Delete child qdiscs when removing bands (Ivan Vecera) [1585281]
-- [net] sched: prio: Add offload ability for grafting a child (Ivan Vecera) [1585281]
-- [net] sched: Don't warn on missmatching qlen and backlog for offloaded qdiscs (Ivan Vecera) [1585281]
-- [net] netfilter: nf_tables: reject hook configuration updates on existing chains (Ravi Aysola) [1373102]
-- [net] netfilter: nf_tables: introduce nft_chain_parse_hook() (Ravi Aysola) [1373102]
-- [net] ip_tunnel: restore binding to ifaces with a large mtu (Ivan Vecera) [1585284]
-- [net] ip_tunnel: Emit events for post-register MTU changes (Ivan Vecera) [1585284]
-- [net] ipv4: lock mtu in fnhe when received PMTU < net.ipv4.route.min_pmtu (Sabrina Dubroca) [1508392]
-- [net] route: Refactor rtable initialization (Sabrina Dubroca) [1508392]
-- [net] route: remove unsed variable in __mkroute_input (Sabrina Dubroca) [1508392]
-- [net] ipmr: properly check rhltable_init() return value (Ivan Vecera) [1584232]
-- [net] ipv4: ipmr: Don't forward packets already forwarded by hardware (Ivan Vecera) [1584232]
-- [net] ipv4: ipmr: Add the parent ID field to VIF struct (Ivan Vecera) [1584232]
-- [net] skbuff: Add the offload_mr_fwd_mark field (Ivan Vecera) [1584232]
-- [net] mroute: Check if rule is a default rule (Ivan Vecera) [1584232]
-- [net] ipmr: Add MFC offload indication (Ivan Vecera) [1584232]
-- [net] ipmr: Send FIB notifications on MFC and VIF entries (Ivan Vecera) [1584232]
-- [net] ipmr: Add FIB notification access functions (Ivan Vecera) [1584232]
-- [net] ipmr: Add reference count to MFC entries (Ivan Vecera) [1584232]
-- [net] fib: notifier: Add VIF add and delete event types (Ivan Vecera) [1584232]
-- [net] ipmr: improve hash scalability (Ivan Vecera) [1584232]
-- [net] ipmr, ip6mr: fix scheduling while atomic and a deadlock with ipmr_get_route (Ivan Vecera) [1584232]
-- [net] ipmr, ip6mr: return lastuse relative to now (Ivan Vecera) [1584232]
-- [net] net: ipmr/ip6mr: update lastuse on entry change (Ivan Vecera) [1584232]
-- [net] net: ipmr/ip6mr: add support for keeping an entry age (Ivan Vecera) [1584232]
-- [net] ipmr/ip6mr: Initialize the last assert time of mfc entries (Ivan Vecera) [1584232]
-- [net] ipmr: add mfc newroute/delroute netlink support (Ivan Vecera) [1584232]
-- [net] ipmr: fix setsockopt error return (Ivan Vecera) [1584232]
-- [net] ipmr: move pimsm_enabled to pim.h and rename (Ivan Vecera) [1584232]
-- [net] ipmr: move struct mr_table and VIF_EXISTS to mroute.h (Ivan Vecera) [1584232]
-- [net] ipmr: adjust mroute.h style and drop extern (Ivan Vecera) [1584232]
-- [net] ipmr: remove unused MFC_NOTIFY flag and make the flags enum (Ivan Vecera) [1584232]
-- [net] remove unnecessary mroute.h includes (Ivan Vecera) [1584232]
-- [net] ipmr, ip6mr: fix vif/tunnel failure race condition (Ivan Vecera) [1584232]
-- [net] ipmr: factor out common vif init code (Ivan Vecera) [1584232]
-- [net] ipmr: rearrange and cleanup setsockopt (Ivan Vecera) [1584232]
-- [net] ipmr: drop ip_mr_init() mrt_cachep null check as we'll panic if it fails (Ivan Vecera) [1584232]
-- [net] ipmr: drop an instance of CONFIG_IP_MROUTE_MULTIPLE_TABLES (Ivan Vecera) [1584232]
-- [net] ipmr: make ip_mroute_getsockopt more understandable (Ivan Vecera) [1584232]
-- [net] ipmr: fix code and comment style (Ivan Vecera) [1584232]
-- [net] ipmr: remove some pimsm ifdefs and simplify (Ivan Vecera) [1584232]
-- [net] ipmr: always define mroute_reg_vif_num (Ivan Vecera) [1584232]
-- [net] ipmr: move the tbl id check in ipmr_new_table (Ivan Vecera) [1584232]
-- [net] ipmr: fix static mfc/dev leaks on table destruction (Ivan Vecera) [1584232]
-- [net] ipmr: fix possible race resulting from improper usage of IP_INC_STATS_BH() in preemptible context (Ivan Vecera) [1584232]
-- [net] ipv4: Only compute net once in ipmr_forward_finish (Ivan Vecera) [1584232]
-- [net] ipv4: Don't recompute net in ipmr_queue_xmit (Ivan Vecera) [1584232]
-- [net] ipmr, ip6mr: call ip6mr_free_table() on failure path (Ivan Vecera) [1584232]
-- [net] ipmr: Replace comma with semicolon (Ivan Vecera) [1584232]
-- [net] ipmr: fix mfc notification flags (Ivan Vecera) [1584232]
-- [net] ipmr: change the prototype of ip_mr_forward() (Ivan Vecera) [1584232]
-- [netdrv] tun: send netlink notification when the device is modified (Ravi Aysola) [1277457]
-- [netdrv] tun: set the flags before registering the netdevice (Ravi Aysola) [1277457]
-- [netdrv] tun: export flags, uid, gid, queue information over netlink (Ravi Aysola) [1277457]
-
-* Mon Jul 02 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-917.el7]
-- [hwmon] (core) Order include files alphabetically (David Arcari) [1593277]
-- [hwmon] (core) Add basic pwm attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add fan attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add energy and humidity attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add power attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add current attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add voltage attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) New hwmon registration API (David Arcari) [1593277]
-- [infiniband] rdma/cma: Do not query GID during QP state transition to RTR (Don Dutile) [1593879]
-- [infiniband] ib/core: Make ib_mad_client_id atomic (Don Dutile) [1593879]
-- [infiniband] ib/rxe: avoid double kfree_skb (Don Dutile) [1593879]
-- [infiniband] ib/rxe: add RXE_START_MASK for rxe_opcode IB_OPCODE_RC_SEND_ONLY_INV (Don Dutile) [1593879]
-- [infiniband] ib/core: Honor port_num while resolving GID for IB link layer (Don Dutile) [1593879]
-- [infiniband] ib/umem: Use the correct mm during ib_umem_release (Don Dutile) [1593879]
-- [infiniband] rdma/ucma: Allow resolving address w/o specifying source address (Don Dutile) [1593879]
-- [infiniband] rdma/core: Avoid that ib_drain_qp() triggers an out-of-bounds stack access (Don Dutile) [1593879]
-- [infiniband] rdma/ucma: Don't allow setting RDMA_OPTION_IB_PATH without an RDMA device (Don Dutile) [1593879]
-- [net] xprtrdma: Fix list corruption / DMAR errors during MR recovery (Don Dutile) [1593879]
-- [net] xprtrdma: Fix corner cases when handling device removal (Don Dutile) [1593879]
-- [infiniband] ib/core: Fix error code for invalid GID entry (Don Dutile) [1593879]
-- [infiniband] rdma/iwpm: fix memory leak on map_info (Don Dutile) [1593879]
-- [infiniband] ib/ipoib: fix ipoib_start_xmit()'s return type (Don Dutile) [1593879]
-- [infiniband] ib/nes: fix nes_netdev_start_xmit()'s return type (Don Dutile) [1593879]
-- [infiniband] rdma/cma: Fix use after destroy access to net namespace for IPoIB (Don Dutile) [1593879]
-- [infiniband] ib/uverbs: Fix validating mandatory attributes (Don Dutile) [1593879]
-- [infiniband] ib/rxe: Fix for oops in rxe_register_device on ppc64le arch (Don Dutile) [1593879]
-- [rdma] ib/core: Fix comments of GID query functions (Don Dutile) [1593879]
-- [infiniband] ib/srp: Fix IPv6 address parsing (Don Dutile) [1593879]
-- [infiniband] ib/srpt: Fix an out-of-bounds stack access in srpt_zerolength_write() (Don Dutile) [1593879]
-- [infiniband] rdma/rxe: Fix an out-of-bounds read (Don Dutile) [1593879]
-- [infiniband] ib/srp: Fix srp_abort() (Don Dutile) [1593879]
-- [infiniband] ib/srp: Fix completion vector assignment algorithm (Don Dutile) [1593879]
-- [edac] amd64_edac: Fix reporting of Chip Select sizes on Fam17h (Charles Rose) [1592978]
-- [iommu] vt-d: Don't print the failure message when booting non-kdump kernel (Baoquan He) [1489397]
-- [mmc] Adding cmd_type REQ_TYPE_DRV_PRIV to mmc code path (Gopal Tiwari) [1456570]
-- [scsi] Revert 2nd application of "Fix a memory leak in scsi_host_dev_release()" (Prarit Bhargava) [1595049]
-- [block] blk-mq: reinit q->tag_set_list entry only after grace period (Ming Lei) [1584534]
-- [block] blk-mq: avoid starving tag allocation after allocating process migrates (Ming Lei) [1581220]
-- [block] blk-mq: update nr_requests when switching to 'none' scheduler (Ming Lei) [1585526]
-- [block] blk-mq: fix nr_requests wrong value when modify it from sysfs (Ming Lei) [1548251]
-- [kernel] cgroup: kill css_id (Aristeu Rozanski) [1470325]
-- [mm] memcontrol: fix cgroup creation failure after many small jobs (Aristeu Rozanski) [1470325]
-- [kernel] tracing/uprobes: Move argument fetching to uprobe_dispatcher() (Jiri Olsa) [1434115]
-- [kernel] tracing/uprobes: Rename uprobe_(trace, perf)_print() functions (Jiri Olsa) [1434115]
-- [kernel] tracing/uprobes: Fetch args before reserving a ring buffer (Jiri Olsa) [1434115]
-- [kernel] tracing/probes: Integrate duplicate set_print_fmt() (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Move common functions to trace_probe.h (Jiri Olsa) [1434115]
-- [kernel] tracing/uprobes: Convert to struct trace_probe (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Factor out struct trace_probe (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Remove unnecessary checking of trace_probe_is_enabled (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Turn trace_probe->files into list_head (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Kill probe_enable_lock (Jiri Olsa) [1434115]
-- [x86] mce: Check for alternate indication of machine check recovery on Skylake (Prarit Bhargava) [1588918]
-
-* Wed Jun 27 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-916.el7]
-- [tools] perf bench: Fix numa report output code (Jiri Olsa) [1533988]
-- [perf] core: Fix use-after-free in uprobe_perf_close() (Oleg Nesterov) [1567950]
-- [char] ipmi:ssif: Check dev before setting drvdata (Vitaly Kuznetsov) [1581620]
-- [pci] Revert location change of pci_(read, write)_config_(byte, word, dword) routines (Myron Stowe) [1591044]
-- [scsi] csiostor: Add a soft dep on cxgb4 driver (Arjun Vynipadath) [1584003]
-- [scsi] storvsc: Avoid allocating memory for temp cpumasks (Cathy Avery) [1588454]
-- [gpu] drm/nouveau/kms/nv50-: cursors always use core channel vram ctxdma (Lyude Paul) [1591026]
-- [gpu] drm/amdgpu: Count disabled CRTCs in commit tail earlier (Lyude Paul) [1583854]
-- [gpu] drm/amdgpu: Grab/put runtime PM references in atomic_commit_tail() (Lyude Paul) [1583854]
-- [netdrv] nfp: flower: split and limit cmsg skb lists (Pablo Cascon) [1574532]
-- [netdrv] nfp: flower: move route ack control messages out of the workqueue (Pablo Cascon) [1574532]
-- [mm] mempolicy: fix use after free when calling get_mempolicy (Augusto Caringi) [1576755] {CVE-2018-10675}
-- [kernel] locking: Introduce smp_mb__after_spinlock() (Waiman Long) [1496574]
-- [kernel] bpf: Set default value for bpf_jit_harden (Jiri Olsa) [1569058]
-- [x86] kvm: Update cpuid properly when CR4.OSXAVE or CR4.PKE is changed (Wei Huang) [1447267]
-
-* Fri Jun 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-915.el7]
-- [infiniband] i40iw: Use correct address in dst_neigh_lookup for IPv6 (Stefan Assmann) [1592574]
-- [netdrv] qede: Fix ref-cnt usage count (Chad Dupuis) [1574847]
-- [netdrv] r8169: fix setting driver_data after register_netdev (Corinna Vinschen) [1540595]
-- [netdrv] r8169: add helper tp_to_dev (Corinna Vinschen) [1540595]
-- [netdrv] r8169: change type of argument in rtl_disable/enable_clock_request (Corinna Vinschen) [1540595]
-- [netdrv] r8169: change type of first argument in rtl_tx_performance_tweak (Corinna Vinschen) [1540595]
-- [netdrv] r8169: simplify rtl_set_mac_address (Corinna Vinschen) [1540595]
-- [netdrv] r8169: switch to device-managed functions in probe (part 2) (Corinna Vinschen) [1540595]
-- [netdrv] r8169: Dereference MMIO address immediately before use (Corinna Vinschen) [1540595]
-- [netdrv] r8169: fix interrupt number after adding support for MSI-X interrupts (Corinna Vinschen) [1540595]
-- [netdrv] r8169: convert remaining feature flag and remove enum features (Corinna Vinschen) [1540595]
-- [netdrv] r8169: improve interrupt handling (Corinna Vinschen) [1540595]
-- [netdrv] r8169: simplify and improve check for dash (Corinna Vinschen) [1540595]
-- [netdrv] r8169: disable WOL per default (Corinna Vinschen) [1540595]
-- [netdrv] r8169: remove not needed PHY soft reset in rtl8168e_2_hw_phy_config (Corinna Vinschen) [1540595]
-- [netdrv] r8169: remove some WOL-related dead code (Corinna Vinschen) [1540595]
-- [netdrv] r8169: fix RTL8168EP take too long to complete driver initialization (Corinna Vinschen) [1540595]
-- [netdrv] r8169: fix memory corruption on retrieval of hardware statistics (Corinna Vinschen) [1540595]
-- [netdrv] r8169: improve runtime pm in general and suspend unused ports (Corinna Vinschen) [1540595]
-- [netdrv] r8169: improve runtime pm in rtl8169_check_link_status (Corinna Vinschen) [1540595]
-- [netdrv] r8169: remove unneeded rpm ops in rtl_shutdown (Corinna Vinschen) [1540595]
-- [netdrv] r8169: remove netif_napi_del in probe error path (Corinna Vinschen) [1540595]
-- [netdrv] r8169: switch to device-managed functions in probe (Corinna Vinschen) [1540595]
-- [netdrv] realtek: r8169: implement set_link_ksettings() (Corinna Vinschen) [1540595]
-- [netdrv] r8169: use same RTL8111EVL green settings as in vendor driver (Corinna Vinschen) [1540595]
-- [netdrv] r8169: fix RTL8111EVL EEE and green settings (Corinna Vinschen) [1540595]
-- [netdrv] realtek: r8169: remove redundant assignment to giga_ctrl (Corinna Vinschen) [1540595]
-- [netdrv] r8169: Add support for interrupt coalesce tuning (ethtool -C) (Corinna Vinschen) [1540595]
-- [netdrv] realtek: Convert timers to use timer_setup() (Corinna Vinschen) [1540595]
-- [netdrv] r8169: only enable PCI wakeups when WOL is active (Corinna Vinschen) [1540595]
-- [netdrv] r8169: Be drop monitor friendly (Corinna Vinschen) [1540595]
-- [netdrv] r8169: Do not increment tx_dropped in TX ring cleaning (Corinna Vinschen) [1540595]
-- [netdrv] r8169: replace init_timer with setup_timer (Corinna Vinschen) [1540595]
-- [netdrv] mii, smsc: Make mii_ethtool_get_link_ksettings and smc_netdev_get_ecmd return void (Corinna Vinschen) [1540595]
-- [netdrv] realtek: r8169: use new api ethtool_get|set_link_ksettings (Corinna Vinschen) [1540595]
-- [netdrv] generalize napi_complete_done() (Corinna Vinschen) [1540595]
-- [netdrv] i40evf: Fix a hardware reset support in VF driver (Stefan Assmann) [1518089]
-- [netdrv] i40evf: remove MAX_QUEUES and just use I40EVF_MAX_REQ_QUEUES (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Fix client header define (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Fix turning TSO, GSO and GRO on after (Stefan Assmann) [1518089]
-- [netdrv] i40e: fix reading LLDP configuration (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: cleanup incorrect function doxygen comments (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Replace GFP_ATOMIC with GFP_KERNEL in i40evf_add_vlan (Stefan Assmann) [1518089]
-- [netdrv] intel: Cleanup the copyright/license headers (Stefan Assmann) [1518089]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Stefan Assmann) [1518089]
-- [netdrv] i40evf: remove flags that are never used (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Reorder configure_clsflower to avoid deadlock on error (Stefan Assmann) [1518089]
-- [netdrv] i40evf/i40evf_main: Fix variable assignment in i40evf_parse_cls_flower (Stefan Assmann) [1518089]
-- [netdrv] i40evf: remove redundant array comparisons to 0 checks (Stefan Assmann) [1518089]
-- [netdrv] i40evf: pass struct virtchnl_filter by reference rather than by value (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: use SW variables for hang detection (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Fix double locking the same resource (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Add support to apply cloud filters (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Add support to configure bw via tc tool (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Alloc queues for ADq on VF (Stefan Assmann) [1518089]
-- [netdrv] i40evf: add ndo_setup_tc callback to i40evf (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Fix link up issue when queues are disabled (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Make VF reset warning message more clear (Stefan Assmann) [1518089]
-- [netdrv] i40evf: use __dev_(um)c_sync routines in set_rx_mode (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Use an iterator of the same type as the list (Stefan Assmann) [1518089]
-- [netdrv] i40evf: use GFP_ATOMIC under spin lock (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Add support for new mechanism of updating adaptive ITR (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Split container ITR into current_itr and target_itr (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Correctly populate rxitr_idx and txitr_idx (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Use usec value instead of reg value for ITR defines (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Don't bother setting the CLEARPBA bit (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Clean-up of bits related to using q_vector->reg_idx (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Clean up logic for adaptive ITR (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Only track one ITR setting per ring instead of Tx/Rx (Stefan Assmann) [1518089]
-- [netdrv] i40e: fix typo in function description (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Update DESC_NEEDED value to reflect larger value (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Record ITR register location in the q_vector (Stefan Assmann) [1518089]
-- [netdrv] i40e: cleanup unnecessary parens (Stefan Assmann) [1518089]
-- [netdrv] i40e: Display LLDP information on vSphere Web Client (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Use ring pointers to clean up _set_itr_per_queue (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Allow turning off offloads when the VF has VLAN set (Stefan Assmann) [1518089]
-- [netdrv] i40e: Add returning AQ critical error to SW (Stefan Assmann) [1518089]
-- [netdrv] i40evf: ignore link up if not running (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Detect and recover hung queue scenario (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Don't schedule reset_task when device is being removed (Stefan Assmann) [1518089]
-- [netdrv] i40evf: remove flush_scheduled_work call in i40evf_remove (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Enable NVMUpdate to retrieve AdminQ and add preservation flags for NVM update (Stefan Assmann) [1518089]
-- [netdrv] i40e: track id can be 0 (Stefan Assmann) [1518089]
-- [netdrv] i40e: change ppp name to ddp (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Drop i40evf_fire_sw_int as it is prone to races (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Clean-up flags for promisc mode to avoid high polling rate (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Do not clear MSI-X PBA manually (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Bump driver versions (Stefan Assmann) [1518089]
-- [netdrv] i40evf: hold the critical task bit lock while opening (Stefan Assmann) [1518089]
-- [netdrv] i40evf: release bit locks in reverse order (Stefan Assmann) [1518089]
-- [netdrv] i40evf: use spinlock to protect (mac|vlan)_filter_list (Stefan Assmann) [1518089]
-- [netdrv] i40evf: don't rely on netif_running() outside rtnl_lock() (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Account for frags split over multiple descriptors in check linearize (Stefan Assmann) [1518089]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Stefan Assmann) [1518089]
-- [netdrv] i40e: Enable cloud filters via tc-flower (Stefan Assmann) [1518089]
-- [netdrv] i40e: Admin queue definitions for cloud filters (Stefan Assmann) [1518089]
-- [netdrv] i40e: Add new PHY types for 25G AOC and ACC support (Stefan Assmann) [1518089]
-- [netdrv] i40e: use the more traditional 'i' loop variable (Stefan Assmann) [1518088]
-- [netdrv] i40e: add function doc headers for ethtool stats functions (Stefan Assmann) [1518088]
-- [netdrv] i40e: update data pointer directly when copying to the buffer (Stefan Assmann) [1518088]
-- [netdrv] i40e: fold prefix strings directly into stat names (Stefan Assmann) [1518088]
-- [netdrv] i40e: use WARN_ONCE to replace the commented BUG_ON size check (Stefan Assmann) [1518088]
-- [netdrv] i40e: split i40e_get_strings() into smaller functions (Stefan Assmann) [1518088]
-- [netdrv] i40e: always return all queue stat strings (Stefan Assmann) [1518088]
-- [netdrv] i40e: always return VEB stat strings (Stefan Assmann) [1518088]
-- [netdrv] i40e: free skb after clearing lock in ptp_stop (Stefan Assmann) [1518088]
-- [netdrv] i40e: separate hw_features from runtime changing flags (Stefan Assmann) [1518088]
-- [netdrv] i40evf: Fix a hardware reset support in VF driver (Stefan Assmann) [1518088]
-- [netdrv] i40e: free the skb after clearing the bitlock (Stefan Assmann) [1518088]
-- [netdrv] i40e: cleanup wording in a header comment (Stefan Assmann) [1518088]
-- [netdrv] i40e: add tx_busy to ethtool stats (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix recalculation of MSI-X vectors for VMDq (Stefan Assmann) [1518088]
-- [netdrv] i40e: cleanup whitespace for some ethtool stat definitions (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove duplicate pfc stats (Stefan Assmann) [1518088]
-- [netdrv] i40e: calculate ethtool stats size in a separate function (Stefan Assmann) [1518088]
-- [netdrv] i40e: use pI4b instead of byte swapping before dev_err (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: take into account queue map from vf when handling queues (Stefan Assmann) [1518088]
-- [netdrv] i40e: avoid overflow in i40e_ptp_adjfreq() (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix multiple issues with UDP tunnel offload filter configuration (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add advertising 10G LR mode (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix reading LLDP configuration (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: cleanup incorrect function doxygen comments (Stefan Assmann) [1518088]
-- [netdrv] intel: Cleanup the copyright/license headers (Stefan Assmann) [1518088]
-- [netdrv] xdp: transition into using xdp_frame for ndo_xdp_xmit (Stefan Assmann) [1518088]
-- [netdrv] xdp: transition into using xdp_frame for return API (Stefan Assmann) [1518088]
-- [netdrv] i40e: add support for XDP_REDIRECT (Stefan Assmann) [1518088]
-- [netdrv] i40e: tweak page counting for XDP_REDIRECT (Stefan Assmann) [1518088]
-- [netdrv] i40e: convert to use generic xdp_frame and xdp_return_frame API (Stefan Assmann) [1518088]
-- [netdrv] i40e: re-number feature flags to remove gaps (Stefan Assmann) [1518088]
-- [netdrv] i40e: stop using cmpxchg flow in i40e_set_priv_flags() (Stefan Assmann) [1518088]
-- [netdrv] i40e: hold the RTNL lock while changing interrupt schemes (Stefan Assmann) [1518088]
-- [netdrv] i40e: move client flags into state bits (Stefan Assmann) [1518088]
-- [netdrv] i40e: move I40E_FLAG_TEMP_LINK_POLLING to state field (Stefan Assmann) [1518088]
-- [netdrv] i40e: move AUTO_DISABLED flags into the state field (Stefan Assmann) [1518088]
-- [netdrv] i40e: move I40E_FLAG_UDP_FILTER_SYNC to the state field (Stefan Assmann) [1518088]
-- [netdrv] i40e: move I40E_FLAG_FILTER_SYNC to a state bit (Stefan Assmann) [1518088]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix the polling mechanism of GLGEN_RSTAT.DEVSTATE (Stefan Assmann) [1518088]
-- [netdrv] i40e: Prevent setting link speed on I40E_DEV_ID_25G_B (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix incorrect return types (Stefan Assmann) [1518088]
-- [netdrv] i40e: add doxygen comment for new mode parameter (Stefan Assmann) [1518088]
-- [netdrv] i40e: Prevent setting link speed on KX_X722 (Stefan Assmann) [1518088]
-- [netdrv] i40e: Properly check allowed advertisement capabilities (Stefan Assmann) [1518088]
-- [netdrv] i40e: restore TCPv4 input set when re-enabling ATR (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix for wrong partition id calculation on OCP mezz cards (Stefan Assmann) [1518088]
-- [netdrv] i40e: factor out re-enable functions for ATR and SB (Stefan Assmann) [1518088]
-- [netdrv] i40e: track filter type statistics when deleting invalid filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix permission check for VF MAC filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: Cleanup i40e_vlan_rx_register (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove i40e_fcoe files (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove some stray indenting (Stefan Assmann) [1518088]
-- [netdrv] i40e: check that pointer VSI is not null before dereferencing it (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: use SW variables for hang detection (Stefan Assmann) [1518088]
-- [netdrv] i40e: link_down_on_close private flag support (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add and delete cloud filter (Stefan Assmann) [1518088]
-- [netdrv] i40e: Service request to configure bandwidth for ADq on a VF (Stefan Assmann) [1518088]
-- [netdrv] i40e: Delete queue channel for ADq on VF (Stefan Assmann) [1518088]
-- [netdrv] i40e: Enable ADq and create queue channel/s on VF (Stefan Assmann) [1518088]
-- [netdrv] i40e: i40e: Change ethtool check from MAC to HW flag (Stefan Assmann) [1518088]
-- [netdrv] i40e: do not force filter failure in overflow promiscuous (Stefan Assmann) [1518088]
-- [netdrv] i40e: refactor promisc_changed in i40e_sync_vsi_filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: broadcast filters can trigger overflow promiscuous (Stefan Assmann) [1518088]
-- [netdrv] i40e: don't leak memory addresses (Stefan Assmann) [1518088]
-- [netdrv] i40e: Make local function i40e_get_link_speed static (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Add support for new mechanism of updating adaptive ITR (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Split container ITR into current_itr and target_itr (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Use usec value instead of reg value for ITR defines (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Don't bother setting the CLEARPBA bit (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Clean-up of bits related to using q_vector->reg_idx (Stefan Assmann) [1518088]
-- [netdrv] i40e: use changed_flags to check I40E_FLAG_DISABLE_FW_LLDP (Stefan Assmann) [1518088]
-- [netdrv] i40e: Warn when setting link-down-on-close while in MFP (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add delay after EMP reset for firmware to recover (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Clean up logic for adaptive ITR (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Only track one ITR setting per ring instead of Tx/Rx (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix typo in function description (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix the number of queues available to be mapped for use (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Update DESC_NEEDED value to reflect larger value (Stefan Assmann) [1518088]
-- [netdrv] i40e: Do not allow use more TC queue pairs than MSI-X vectors exist (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Record ITR register location in the q_vector (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix reported mask for ntuple filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: disallow programming multiple filters with same criteria (Stefan Assmann) [1518088]
-- [netdrv] i40e: program fragmented IPv4 filter input set (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix kdump failure (Stefan Assmann) [1518088]
-- [netdrv] i40e: cleanup unnecessary parens (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix FW_LLDP flag on init (Stefan Assmann) [1518088]
-- [netdrv] i40e: Implement an ethtool private flag to stop LLDP in FW (Stefan Assmann) [1518088]
-- [netdrv] i40e: change flags to use 64 bits (Stefan Assmann) [1518088]
-- [netdrv] i40e: Display LLDP information on vSphere Web Client (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Use ring pointers to clean up _set_itr_per_queue (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix for adding multiple ethtool filters on the same location (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add returning AQ critical error to SW (Stefan Assmann) [1518088]
-- [netdrv] i40e: use tc_cls_can_offload_and_chain0() (Stefan Assmann) [1518088]
-- [netdrv] i40e: flower: check if TC offload is enabled on a netdev (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix channel addition in reset flow (Stefan Assmann) [1518088]
-- [netdrv] i40e: Delete an error message for a failed memory allocation in i40e_init_interrupt_scheme() (Stefan Assmann) [1518088]
-- [netdrv] i40e: Disable iWARP VSI PETCP_ENA flag on netdev down events (Stefan Assmann) [1518088]
-- [netdrv] i40e: simplify pointer dereferences (Stefan Assmann) [1518088]
-- [netdrv] i40e: check for invalid DCB config (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Detect and recover hung queue scenario (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix for blinking activity instead of link LEDs (Stefan Assmann) [1518088]
-- [netdrv] i40e: avoid divide by zero (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Enable NVMUpdate to retrieve AdminQ and add preservation flags for NVM update (Stefan Assmann) [1518088]
-- [netdrv] i40e: track id can be 0 (Stefan Assmann) [1518088]
-- [netdrv] i40e: change ppp name to ddp (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove redundant initialization of read_size (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Bump driver versions (Stefan Assmann) [1518088]
-- [netdrv] i40e: add helper conversion function for link_speed (Stefan Assmann) [1518088]
-- [netdrv] i40e: update VFs of link state after GET_VF_RESOURCES (Stefan Assmann) [1518088]
-- [netdrv] i40e: display priority_xon and priority_xoff stats (Stefan Assmann) [1518088]
-- [netdrv] i40e: flower: Fix return value for unsupported offload (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Account for frags split over multiple descriptors in check linearize (Stefan Assmann) [1518088]
-- [netdrv] i40e: Remove UDP support for big buffer (Stefan Assmann) [1518088]
-- [netdrv] i40e: setup xdp_rxq_info (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix reporting incorrect error codes (Stefan Assmann) [1518088]
-- [netdrv] i40e/virtchnl: fix application of sizeof to pointer (Stefan Assmann) [1518088]
-- [netdrv] i40e: Remove limit of 64 max queues per channel (Stefan Assmann) [1518088]
-- [netdrv] i40e: Enable cloud filters via tc-flower (Stefan Assmann) [1518088]
-- [netdrv] i40e: Clean up of cloud filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: Admin queue definitions for cloud filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: Cloud filter mode for set_switch_config command (Stefan Assmann) [1518088]
-- [netdrv] i40e: Map TCs with the VSI seids (Stefan Assmann) [1518088]
-- [netdrv] i40e: mark PM functions as __maybe_unused (Stefan Assmann) [1518088]
-- [netdrv] intel: Convert timers to use timer_setup() (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix u64 division usage (Stefan Assmann) [1518088]
-- [netdrv] i40e: convert i40e_set_link_ksettings to new API (Stefan Assmann) [1518088]
-- [netdrv] i40e: rename 'change' variable to 'autoneg_changed' (Stefan Assmann) [1518088]
-- [netdrv] i40e: convert i40e_get_settings_link_up to new API (Stefan Assmann) [1518088]
-- [netdrv] i40e: convert i40e_phy_type_to_ethtool to new API (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add new PHY types for 25G AOC and ACC support (Stefan Assmann) [1518088]
-- [netdrv] i40e: group autoneg PHY types together (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix whitespace issues in i40e_ethtool.c (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix comment typo (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix i40e_phy_type_to_ethtool function header (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix clearing link masks in i40e_get_link_ksettings (Stefan Assmann) [1518088]
-- [netdrv] i40e: add function header for i40e_get_rxfh (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove ifdef SPEED_25000 (Stefan Assmann) [1518088]
-- [netdrv] i40e: rename 'cmd' variables in ethtool interface (Stefan Assmann) [1518088]
-- [netdrv] i40e: make const array patterns static, reduces object code size (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add support setting TC max bandwidth rates (Stefan Assmann) [1518088]
-- [netdrv] i40e: Refactor VF BW rate limiting (Stefan Assmann) [1518088]
-- [netdrv] i40e: Enable 'channel' mode in mqprio for TC configs (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add infrastructure for queue channel support (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add macro for PF reset bit (Stefan Assmann) [1518088]
-- [netdrv] locking/atomics: coccinelle/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE() (Stefan Assmann) [1518088]
-- [netdrv] i40e: report BPF prog id during XDP_QUERY_PROG (Stefan Assmann) [1518088]
-- [netdrv] i40e: add support for XDP_TX action (Stefan Assmann) [1518088]
-- [netdrv] i40e: add XDP support for pass and drop actions (Stefan Assmann) [1518088]
-- [net] sctp: make use of pre-calculated len (Xin Long) [1590162]
-- [net] sctp: add a ceiling to optlen in some sockopts (Xin Long) [1590162]
-- [net] sctp: GFP_ATOMIC is not needed in sctp_setsockopt_events (Xin Long) [1590162]
-- [net] vti6: Change minimum MTU to IPV4_MIN_MTU, vti6 can carry IPv4 too (Ravi Aysola) [1576491]
-- [net] ifb: fix packets checksum (Jamie Bainbridge) [1571027]
-- [net] ipv4: Avoid crashing in ip_error (Lorenzo Bianconi) [1589069]
-- [net] act_mirred: get rid of tcfm_ifindex from struct tcf_mirred (Ivan Vecera) [1583607]
-- [net] netfilter: ipv4: fix NULL dereference (Ivan Vecera) [1586215]
-- [net] ipv4: Namespaceify ip_default_ttl sysctl knob (Ivan Vecera) [1586215]
-- [net] devlink: convert occ_get op to separate registration (Ivan Vecera) [1584825]
-- [net] devlink: Remove top_hierarchy arg for DEVLINK disabled path (Ivan Vecera) [1584825]
-- [net] devlink: Remove top_hierarchy arg to devlink_resource_register (Ivan Vecera) [1584825]
-- [net] devlink: Fix handling of resource_size_param (Ivan Vecera) [1584825]
-- [net] devlink: Fix resource coverity errors (Ivan Vecera) [1584825]
-- [net] devlink: Compare to size_new in case of resource child validation (Ivan Vecera) [1584825]
-- [net] devlink: Perform cleanup of resource_set cb (Ivan Vecera) [1584825]
-- [net] devlink: Move size validation to core (Ivan Vecera) [1584825]
-- [net] devlink: fix memory leak on 'resource' (Ivan Vecera) [1584825]
-- [net] devlink: Make some functions static (Ivan Vecera) [1584825]
-- [net] devlink: Add relation between dpipe and resource (Ivan Vecera) [1584825]
-- [net] devlink: Add support for reload (Ivan Vecera) [1584825]
-- [net] devlink: Add support for resource abstraction (Ivan Vecera) [1584825]
-- [net] devlink: Add per devlink instance lock (Ivan Vecera) [1584825]
-- [net] devlink: remove unused priv_size (Ivan Vecera) [1584825]
-- [net] ipv6: fix IPV6_PKTINFO with v4 mapped (Hangbin Liu) [1582550]
-- [net] ipv6: honor IPV6_PKTINFO with v4 mapped addresses on sendmsg (Hangbin Liu) [1582550]
-- [net] openvswitch: Don't swap table in nlattr_set() after OVS_ATTR_NESTED is found (Stefano Brivio) [1567613]
-- [net] Fix NETDEV_CHANGE notifier usage causing spurious arp flush (Xin Long) [1571615]
-- [vhost] Fix vhost_copy_to_user() (Hangbin Liu) [1551292]
-- [vhost] return bool from *_access_ok() functions (Hangbin Liu) [1551292]
-- [vhost] fix vhost_vq_access_ok() log check (Hangbin Liu) [1551292]
-- [vhost] correctly remove wait queue during poll failure (Hangbin Liu) [1551292]
-- [vhost] fix vhost ioctl signature to build with clang (Hangbin Liu) [1551292]
-- [vhost] validate log when IOTLB is enabled (Hangbin Liu) [1551292]
-- [vhost] do not try to access device IOTLB when not initialized (Hangbin Liu) [1551292]
-- [vhost] use mutex_lock_nested() in vhost_dev_lock_vqs() (Hangbin Liu) [1551292]
-- [net] xfrm: Fix memory leak of aead algorithm name (Herbert Xu) [1544367]
-- [net] bonding: process the err returned by dev_set_allmulti properly in bond_enslave (Xin Long) [1558481]
-- [net] bonding: move dev_mc_sync after master_upper_dev_link in bond_enslave (Xin Long) [1558481]
-- [net] bonding: fix the err path for dev hwaddr sync in bond_enslave (Xin Long) [1558481]
-- [net] 8021q: Fix one possible panic caused by BUG_ON in free_netdev (Hangbin Liu) [1535385]
-- [net] ip_gre: fix IFLA_MTU ignored on NEWLINK (Xin Long) [1488484]
-
-* Fri Jun 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-914.el7]
-- [target] tcmu: fix crash when removing the tcmu device (Xiubo Li) [1559232]
-- [target] tcmu: Recalculate the tcmu_cmd size to save cmd area memories (Xiubo Li) [1559232]
-- [target] tcmu: fix cmd user after free (Xiubo Li) [1559232]
-- [target] tcmu: allow userspace to reset ring (Xiubo Li) [1559232]
-- [target] target core: add device action configfs files (Xiubo Li) [1559232]
-- [target] add SAM_STAT_BUSY sense reason (Xiubo Li) [1559232]
-- [target] tcmu: fix error return code in tcmu_configure_device() (Xiubo Li) [1559232]
-- [target] target_core_user: add cmd id to broken ring message (Xiubo Li) [1559232]
-- [target] tcmu: don't block submitting context for block waits (Xiubo Li) [1559232]
-- [target] tcmu: simplify dbi thresh handling (Xiubo Li) [1559232]
-- [target] tcmu: fix free block calculation (Xiubo Li) [1559232]
-- [target] tcmu: prep queue_cmd_ring to be used by unmap wq (Xiubo Li) [1559232]
-- [target] tcmu: remove commands_lock (Xiubo Li) [1559232]
-- [target] tcmu: move expired command completion to unmap thread (Xiubo Li) [1559232]
-- [target] tcmu: fix page addr in tcmu_flush_dcache_range (Xiubo Li) [1559232]
-- [target] tcmu: Add a missing unlock on an error path (Xiubo Li) [1559232]
-- [target] tcmu: Fix some memory corruption (Xiubo Li) [1559232]
-- [target] tcmu: fix double se_cmd completion (Xiubo Li) [1559232]
-- [target] tcmu: Use macro to call container_of in tcmu_cmd_time_out_show (Xiubo Li) [1559232]
-- [target] tcmu: free old string on reconfig (Xiubo Li) [1559232]
-- [target] tcmu: Fix dev_config_store (Xiubo Li) [1559232]
-- [target] revert "tcmu: use idr for se_device dev index" (Xiubo Li) [1559232]
-- [target] tcmu: fix multiple uio open/close sequences (Xiubo Li) [1559232]
-- [target] tcmu: drop configured check in destroy (Xiubo Li) [1559232]
-- [target] tcmu: make array tcmu_attrib_attrs static const (Xiubo Li) [1559232]
-- [target] tcmu: Make dev_config configurable (Xiubo Li) [1559232]
-- [target] Support emulate_write_cache (Xiubo Li) [1559232]
-- [target] tcmu: fix error resetting qfull_time_out to default (Xiubo Li) [1559232]
-- [target] Add netlink command reply supported option for each device (Xiubo Li) [1559232]
-- [target] tcmu: fix crash during device removal (Xiubo Li) [1559232]
-- [target] tcmu: Fix trailing semicolon (Xiubo Li) [1559232]
-- [target] tcmu: clean up the scatter helper (Xiubo Li) [1559232]
-- [target] tcmu: clean up the code and with one small fix (Xiubo Li) [1559232]
-- [target] tcmu: simplify scatter_data_area error handling (Xiubo Li) [1559232]
-- [target] tcmu: Fix possbile memory leak / OOPs when recalculating cmd base size (Xiubo Li) [1559232]
-- [target] tcmu: release blocks for partially setup cmds (Xiubo Li) [1559232]
-- [target] tcmu: prevent corruption when invalid data page requested (Xiubo Li) [1559232]
-- [target] tcmu: allow global max blocks to be settable (Xiubo Li) [1559232]
-- [target] tcmu: fix unmap thread race (Xiubo Li) [1559232]
-- [target] tcmu: split unmap_thread_fn (Xiubo Li) [1559232]
-- [target] tcmu: merge common block release code (Xiubo Li) [1559232]
-- [target] tcmu: Fix possible to/from address overflow when doing the memcpy (Xiubo Li) [1559232]
-- [target] tcmu: Fix module removal due to stuck unmap_thread thread again (Xiubo Li) [1559232]
-- [target] tcmu: fix module removal due to stuck thread (Xiubo Li) [1559232]
-- [target] tcmu: Add global data block pool support (Xiubo Li) [1559232]
-- [target] tcmu: Add dynamic growing data area feature support (Xiubo Li) [1559232]
-- [target] tcmu: Skip Data-Out blocks before gathering Data-In buffer for BIDI case (Xiubo Li) [1559232]
-- [target] tcmu: Fix possible overwrite of t_data_sg's last iov[] (Xiubo Li) [1559232]
-- [virtio] virtio_pci: support enabling VFs (Paul Lai) [1584251]
-- [x86] kvm: add support for UMIP (Paul Lai) [1457461]
-- [x86] cpufeature: Add User-Mode Instruction Prevention definitions (Paul Lai) [1457461]
-- [x86] kvm: Expose new cpu features to guest (Paul Lai) [1494668]
-- [x86] cpufeatures: Enable new SSE/AVX/AVX512 CPU features (Paul Lai) [1494668]
-- [edac] skx_edac: Detect non-volatile DIMMs (Aristeu Rozanski) [1588177]
-- [firmware] dmi: Add function to look up a handle and return DIMM size (Aristeu Rozanski) [1588177]
-- [acpi] nfit: Add function to look up nvdimm device and provide SMBIOS handle (Aristeu Rozanski) [1588177]
-- [edac] Add new memory type for non-volatile DIMMs (Aristeu Rozanski) [1588177]
-- [edac] Drop duplicated array of strings for memory type names (Aristeu Rozanski) [1588177]
-- [tools] nfit_test Make private definitions to command emulation (Jeff Moyer) [1517757]
-- [uapi] libnvdimm: clean up command definitions (Jeff Moyer) [1517757]
-- [tools] nfit-test: Add platform cap support from ACPI 6.2a to test (Jeff Moyer) [1517757]
-- [nvdimm] libnvdimm, nfit: fix persistence domain reporting (Jeff Moyer) [1517757]
-- [nvdimm] libnvdimm, region: hide persistence_domain when unknown (Jeff Moyer) [1517757]
-- [nvdimm] libnvdimm: re-enable deep flush for pmem devices via fsync() (Jeff Moyer) [1517757]
-- [nvdimm] libnvdimm: expose platform persistence attribute for nd_region (Jeff Moyer) [1517757]
-- [kernel] acpi: nfit: add persistent memory control flag for nd_region (Jeff Moyer) [1517757]
-- [kernel] acpi: nfit: Add support for detect platform CPU cache flush on power loss (Jeff Moyer) [1517757]
-- [acpi] acpica: acpi 6.0a: Changes to the NFIT ACPI table (Jeff Moyer) [1517757]
-- [kernel] libnvdimm, pmem: disable dax flushing when pmem is fronting a volatile region (Jeff Moyer) [1517757]
-- [fs] proc: fix showing locks in /proc/pid/fdinfo/X (Adrian Reber) [1515811]
-- [fs] fix parallelism for rpc tasks (Steve Dickson) [1476875]
-- [fs] xfs: fix string handling in label get/set functions (Eric Sandeen) [1322930]
-- [fs] xfs: use xfs_trans_getsb in xfs_sync_sb_buf (Eric Sandeen) [1322930]
-- [fs] xfs: implement online get/set fs label (Eric Sandeen) [1322930]
-- [fs] xfs: move growfs core to libxfs (partial) (Eric Sandeen) [1322930]
-- [fs] xfs: one-shot cached buffers (Eric Sandeen) [1322930]
-- [fs] fs: copy BTRFS_IOC_[SG]ET_FSLABEL to vfs (Eric Sandeen) [1322930]
-- [scsi] smartpqi: update driver version (Don Brace) [1524694]
-- [scsi] smartpqi: fix critical ARM issue reading PQI index registers (Don Brace) [1524694]
-- [scsi] smartpqi: workaround fw bug for oq deletion (Don Brace) [1524694]
-- [scsi] smartpqi: add in new supported controllers (Don Brace) [1524694]
-- [scsi] smartpqi: allow static build ("built-in") (Don Brace) [1524694]
-- [scsi] smartpqi: Convert timers to use timer_setup() (Don Brace) [1524694]
-
-* Fri Jun 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-913.el7]
-- [tools] bpf selftest: Disable unprivilidged user tests (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Disable unsupported verifier tests (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Disable unsupported maps tests (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Disable unsupported object tests (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Add missing instructions (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Additional changes to compile bpf selftest (Jiri Olsa) [1311586]
-- [tools] bpf: fix broken BPF selftest build (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Add v4.16 sources (Jiri Olsa) [1311586]
-- [tools] bpftool: Display license GPL compatible in prog show/list (Jiri Olsa) [1311586]
-- [tools] bpftool: silence 'missing initializer' warnings (Jiri Olsa) [1311586]
-- [tools] bpftool: Additional changes to compile bpftool (Jiri Olsa) [1311586]
-- [tools] bpftool: Add v4.16 sources (Jiri Olsa) [1311586]
-- [tools] libbpf: Additional changes to compile libbpf (Jiri Olsa) [1311586]
-- [tools] libbpf: Add v4.16 sources (Jiri Olsa) [1311586]
-- [tools] Enable bpf feature check (Jiri Olsa) [1311586]
-- [tools] Update filter.h header (Jiri Olsa) [1311586]
-- [tools] Update perf_event.h uapi header (Jiri Olsa) [1311586]
-- [tools] Update bpf uapi headers (Jiri Olsa) [1311586]
-- [kernel] bpf: Add tech preview taint for syscall (Jiri Olsa) [1311586]
-- [kernel] bpf: Disable non root access to BPF (Jiri Olsa) [1311586]
-- [s390] Ignore bpf syscall (Jiri Olsa) [1311586]
-- [kernel] bpf: enable bpf syscall on x64 and i386 (Jiri Olsa) [1311586]
-- [uapi] bpf: Add missing functions (Jiri Olsa) [1311586]
-- [kernel] bpf: Allow additional program types for testing (Jiri Olsa) [1311586]
-- [kernel] bpf: Limit the prog types in syscall (Jiri Olsa) [1311586]
-- [kernel] bpf: Add gpl_compatible flag to struct bpf_prog_info (Jiri Olsa) [1311586]
-- [x86] bpf, x64: fix memleak when not converging on calls (Jiri Olsa) [1311586]
-- [x86] bpf, x64: fix memleak when not converging after image (Jiri Olsa) [1311586]
-- [x86] bpf, x64: fix JIT emission for dead code (Jiri Olsa) [1311586]
-- [x86] bpf, x64: increase number of passes (Jiri Olsa) [1311586]
-- [kernel] bpf: allow xadd only on aligned memory (Jiri Olsa) [1311586]
-- [kernel] bpf: fix rcu lockdep warning for lpm_trie map_free callback (Jiri Olsa) [1311586]
-- [x86] bpf, x64: remove bpf_flush_icache (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save 5 bytes in prologue when ebpf insns came from cbpf (Jiri Olsa) [1311586]
-- [kernel] bpf: provide helper that indicates eBPF was migrated (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save few bytes when mul is in alu32 (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save several bytes when mul dest is r0/r3 anyway (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save several bytes by using mov over movabsq when possible (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save one byte per shl/shr/sar when imm is 1 (Jiri Olsa) [1311586]
-- [x86] bpf, x64: implement retpoline for tail call (Jiri Olsa) [1311586]
-- [kernel] bpf: Remove unused callee_saved array (Jiri Olsa) [1311586]
-- [kernel] bpf: fix memory leak in lpm_trie map_free callback function (Jiri Olsa) [1311586]
-- [kernel] bpf: fix kernel page fault in lpm map trie_get_next_key (Jiri Olsa) [1311586]
-- [x86] bpf, x86_64: remove obsolete exception handling from div/mod (Jiri Olsa) [1311586]
-- [kernel] bpf: fix subprog verifier bypass by div/mod by 0 exception (Jiri Olsa) [1311586]
-- [kernel] bpf: make unknown opcode handling more robust (Jiri Olsa) [1311586]
-- [kernel] bpf: improve dead code sanitizing (Jiri Olsa) [1311586]
-- [kernel] bpf: Use the IS_FD_ARRAY() macro in map_update_elem() (Jiri Olsa) [1311586]
-- [kernel] bpf: fix incorrect kmalloc usage in lpm_trie MAP_GET_NEXT_KEY rcu region (Jiri Olsa) [1311586]
-- [kernel] bpf: add upper complexity limit to verifier log (Jiri Olsa) [1311586]
-- [x86] bpf, x86: small optimization in alu ops with imm (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: detect misconfigured mem, size argument pair (Jiri Olsa) [1311586]
-- [kernel] bpf: implement MAP_GET_NEXT_KEY command for LPM_TRIE map (Jiri Olsa) [1311586]
-- [kernel] bpf: arraymap: use bpf_map_init_from_attr() (Jiri Olsa) [1311586]
-- [kernel] bpf: arraymap: move checks out of alloc function (Jiri Olsa) [1311586]
-- [kernel] bpf: mark dst unknown on inconsistent (s, u)bounds adjustments (Jiri Olsa) [1311586]
-- [kernel] bpf: reject stores into ctx via st and xadd (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper for copying attrs to struct bpf_map (Jiri Olsa) [1311586]
-- [kernel] bpf: hashtab: move checks out of alloc function (Jiri Olsa) [1311586]
-- [kernel] bpf: hashtab: move attribute validation before allocation (Jiri Olsa) [1311586]
-- [kernel] bpf: add map_alloc_check callback (Jiri Olsa) [1311586]
-- [kernel] bpf: fix 32-bit divide by zero (Jiri Olsa) [1311586]
-- [kernel] bpf: fix divides by zero (Jiri Olsa) [1311586]
-- [kernel] bpf: Add merge fixes (Jiri Olsa) [1311586]
-- [kernel] bpf, array: fix overflow in max_entries and undefined behavior in index_mask (Jiri Olsa) [1311586]
-- [kernel] bpf: arsh is not supported in 32 bit alu thus reject it (Jiri Olsa) [1311586]
-- [kernel] bpf: fix spelling mistake: "obusing" -> "abusing" (Jiri Olsa) [1311586]
-- [kernel] bpf: export function to write into verifier log buffer (Jiri Olsa) [1311586]
-- [net] bpf: introduce BPF_JIT_ALWAYS_ON config (Jiri Olsa) [1311586]
-- [kernel] bpf: prevent out-of-bounds speculation (Jiri Olsa) [1311586]
-- [kernel] bpf: fix verifier GPF in kmalloc failure path (Jiri Olsa) [1311586]
-- [kernel] bpf: fix max call depth check (Jiri Olsa) [1311586]
-- [kernel] bpf: fix maximum stack depth tracking logic (Jiri Olsa) [1311586]
-- [kernel] bpf: fix stacksafe exploration when comparing states (Jiri Olsa) [1311586]
-- [kernel] bpf: allow for correlation of maps and helpers in dump (Jiri Olsa) [1311586]
-- [kernel] bpf: do not allow root to mangle valid pointers (Jiri Olsa) [1311586]
-- [kernel] bpf: fix integer overflows (Jiri Olsa) [1311586]
-- [kernel] bpf: don't prune branches when a scalar is replaced with a pointer (Jiri Olsa) [1311586]
-- [kernel] bpf: force strict alignment checks for stack pointers (Jiri Olsa) [1311586]
-- [kernel] bpf: fix missing error return in check_stack_boundary() (Jiri Olsa) [1311586]
-- [kernel] bpf: fix 32-bit ALU op verification (Jiri Olsa) [1311586]
-- [kernel] bpf: fix incorrect tracking of register size truncation (Jiri Olsa) [1311586]
-- [kernel] bpf: fix incorrect sign extension in check_alu_op() (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: fix bounds calculation on BPF_RSH (Jiri Olsa) [1311586]
-- [kernel] bpf: make function skip_callee static and return NULL rather than 0 (Jiri Olsa) [1311586]
-- [kernel] bpf: x64: add JIT support for multi-function programs (Jiri Olsa) [1311586]
-- [kernel] bpf: fix net.core.bpf_jit_enable race (Jiri Olsa) [1311586]
-- [kernel] bpf: add support for bpf_call to interpreter (Jiri Olsa) [1311586]
-- [kernel] bpf: teach verifier to recognize zero initialized stack (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce function calls (verification) (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce function calls (function boundaries) (Jiri Olsa) [1311586]
-- [kernel] bpf: add schedule points to map alloc/free (Jiri Olsa) [1311586]
-- [s390] bpf: correct broken uapi for BPF_PROG_TYPE_PERF_EVENT program type (Jiri Olsa) [1311586]
-- [kernel] bpf: correct broken uapi for BPF_PROG_TYPE_PERF_EVENT program type (Jiri Olsa) [1311586]
-- [kernel] bpf: cleanup register_is_null() (Jiri Olsa) [1311586]
-- [kernel] bpf: improve JEQ/JNE path walking (Jiri Olsa) [1311586]
-- [kernel] bpf: improve verifier liveness marks (Jiri Olsa) [1311586]
-- [kernel] bpf: don't mark FP reg as uninit (Jiri Olsa) [1311586]
-- [kernel] bpf: print liveness info to verifier log (Jiri Olsa) [1311586]
-- [kernel] bpf: fix stack state printing in verifier log (Jiri Olsa) [1311586]
-- [kernel] bpf: fix branch pruning logic (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce ARG_PTR_TO_MEM_OR_NULL (Jiri Olsa) [1311586]
-- [kernel] bpf: change bpf_perf_event_output arg5 type to ARG_CONST_SIZE_OR_ZERO (Jiri Olsa) [1311586]
-- [kernel] bpf: change bpf_probe_read_str arg2 type to ARG_CONST_SIZE_OR_ZERO (Jiri Olsa) [1311586]
-- [kernel] bpf: remove explicit handling of 0 for arg2 in bpf_probe_read (Jiri Olsa) [1311586]
-- [kernel] bpf: change helper bpf_probe_read arg2 type to ARG_CONST_SIZE_OR_ZERO (Jiri Olsa) [1311586]
-- [kernel] bpf: improve verifier ARG_CONST_SIZE_OR_ZERO semantics (Jiri Olsa) [1311586]
-- [kernel] bpf: offload: add infrastructure for loading programs for a specific netdev (Jiri Olsa) [1311586]
-- [kernel] bpf: fix verifier NULL pointer dereference (Jiri Olsa) [1311586]
-- [kernel] bpf: fix out-of-bounds access warning in bpf_check (Jiri Olsa) [1311586]
-- [kernel] bpf: also improve pattern matches for meta access (Jiri Olsa) [1311586]
-- [kernel] bpf: minor cleanups after merge (Jiri Olsa) [1311586]
-- [kernel] bpf: fix verifier memory leaks (Jiri Olsa) [1311586]
-- [kernel] bpf: reduce verifier memory consumption (Jiri Olsa) [1311586]
-- [kernel] bpf: fix off by one for range markings with L(T, E) patterns (Jiri Olsa) [1311586]
-- [security] bpf: Add LSM hooks for bpf object related syscall (Jiri Olsa) [1311586]
-- [kernel] bpf: Add file mode configuration into bpf maps (Jiri Olsa) [1311586]
-- [kernel] bpf: require CAP_NET_ADMIN when using devmap (Jiri Olsa) [1311586]
-- [kernel] bpf: do not test for PCPU_MIN_UNIT_SIZE before percpu allocations (Jiri Olsa) [1311586]
-- [kernel] bpf: move knowledge about post-translation offsets out of verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: remove the verifier ops from program structure (Jiri Olsa) [1311586]
-- [kernel] bpf: Add sched cls/act type (Jiri Olsa) [1311586]
-- [kernel] bpf: Add socket filter type (Jiri Olsa) [1311586]
-- [kernel] bpf: split verifier and program ops (Jiri Olsa) [1311586]
-- [kernel] bpf: disallow arithmetic operations on context pointer (Jiri Olsa) [1311586]
-- [kernel] bpf: verifier: set reg_type on context accesses in second pass (Jiri Olsa) [1311586]
-- [kernel] bpf: wire in data and data_end for cls_act_bpf (Jiri Olsa) [1311586]
-- [kernel] bpf: write back the verifier log buffer as it gets filled (Jiri Olsa) [1311586]
-- [kernel] bpf: move instruction printing into a separate file (Jiri Olsa) [1311586]
-- [kernel] bpf: move global verifier log into verifier environment (Jiri Olsa) [1311586]
-- [uapi] bpf: Use char in prog and map name (Jiri Olsa) [1311586]
-- [kernel] netfilter: xt_bpf: Fix XT_BPF_MODE_FD_PINNED mode of 'xt_bpf_info_v1' (Jiri Olsa) [1311586]
-- [kernel] bpf: Change bpf_obj_name_cpy() to better ensure map's name is init by 0 (Jiri Olsa) [1311586]
-- [kernel] bpf: fix liveness marking (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper bpf_perf_prog_read_value (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper bpf_perf_event_read_value for perf event array map (Jiri Olsa) [1311586]
-- [kernel] bpf: perf event change needed for subsequent bpf helpers (Jiri Olsa) [1311586]
-- [kernel] bpf: enforce return code for cgroup-bpf programs (Jiri Olsa) [1311586]
-- [kernel] bpf: fix bpf_tail_call() x64 JIT (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: improve disassembly of BPF_NEG instructions (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: improve disassembly of BPF_END instructions (Jiri Olsa) [1311586]
-- [kernel] bpf: add meta pointer for direct access (Jiri Olsa) [1311586]
-- [kernel] bpf: Optimize lpm trie delete (Jiri Olsa) [1311586]
-- [kernel] bpf: do not disable/enable BH in bpf_map_free_id() (Jiri Olsa) [1311586]
-- [kernel] bpf: Implement map_delete_elem for BPF_MAP_TYPE_LPM_TRIE (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: reject BPF_ALU64|BPF_END (Jiri Olsa) [1311586]
-- [kernel] bpf: Only set node->ref = 1 if it has not been set (Jiri Olsa) [1311586]
-- [kernel] bpf: Inline LRU map lookup (Jiri Olsa) [1311586]
-- [x86] bpf_jit: small optimization in emit_bpf_tail_call() (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: document liveness analysis (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: remove varlen_map_value_access flag (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: when pruning a branch, ignore its write marks (Jiri Olsa) [1311586]
-- [kernel] bpf: inline map in map lookup functions for array and htab (Jiri Olsa) [1311586]
-- [kernel] bpf: make htab inlining more robust wrt assumptions (Jiri Olsa) [1311586]
-- [kernel] bpf: fix map value attribute for hash of maps (Jiri Olsa) [1311586]
-- [kernel] bpf: fix liveness propagation to parent in spilled stack slots (Jiri Olsa) [1311586]
-- [kernel] bpf: devmap: remove unnecessary value size check (Jiri Olsa) [1311586]
-- [kernel] bpf: export bpf_prog_inc_not_zero (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: track liveness for pruning (Jiri Olsa) [1311586]
-- [kernel] bpf: enable BPF_J(LT, LE, SLT, SLE) opcodes in verifier (Jiri Olsa) [1311586]
-- [x86] bpf, x86: implement jiting of BPF_J(LT, LE, SLT, SLE) (Jiri Olsa) [1311586]
-- [kernel] bpf: add BPF_J(LT, LE, SLT, SLE) instructions (Jiri Olsa) [1311586]
-- [kernel] bpf: Extend check_uarg_tail_zero() checks (Jiri Olsa) [1311586]
-- [kernel] bpf: Move check_uarg_tail_zero() upward (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: increase complexity limit to 128k (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: more concise register state logs for constant var_off (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: track signed and unsigned min/max values (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: rework value tracking (Jiri Olsa) [1311586]
-- [kernel] bpf: fix bpf_prog_get_info_by_fd to dump correct xlated_prog_len (Jiri Olsa) [1311586]
-- [kernel] bpf: don't indicate success when copy_from_user fails (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: fix min/max handling in BPF_SUB (Jiri Olsa) [1311586]
-- [kernel] bpf: fix mixed signed/unsigned derived min/max value bounds (Jiri Olsa) [1311586]
-- [kernel] bpf: Implement show_options (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: add additional patterns to evaluate_reg_imm_alu (Jiri Olsa) [1311586]
-- [kernel] bpf: simplify narrower ctx access (Jiri Olsa) [1311586]
-- [uapi] bpf: BPF support for sock_ops (Jiri Olsa) [1311586]
-- [kernel] bpf: don't open-code memdup_user() (Jiri Olsa) [1311586]
-- [kernel] bpf: prevent leaking pointer via xadd on unpriviledged (Jiri Olsa) [1311586]
-- [kernel] bpf: Fix out-of-bound access on interpreters() (Jiri Olsa) [1311586]
-- [kernel] bpf: Add syscall lookup support for fd array and htab (Jiri Olsa) [1311586]
-- [kernel] bpf: possibly avoid extra masking for narrower load in verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: permits narrower load from bpf program context fields (Jiri Olsa) [1311586]
-- [kernel] bpf: reset id on spilled regs in clear_all_pkt_pointers (Jiri Olsa) [1311586]
-- [kernel] bpf: reset id on CONST_IMM transition (Jiri Olsa) [1311586]
-- [kernel] bpf: don't check spilled reg state for non-STACK_SPILLed type slots (Jiri Olsa) [1311586]
-- [uapi] bpf: update perf event helper functions documentation (Jiri Olsa) [1311586]
-- [kernel] perf, bpf: Add BPF support to all perf_event types (Jiri Olsa) [1311586]
-- [kernel] bpf: Remove the capability check for cgroup skb eBPF program (Jiri Olsa) [1311586]
-- [x86] bpf: take advantage of stack_depth tracking in x64 JIT (Jiri Olsa) [1311586]
-- [x86] bpf: change x86 JITed program stack layout (Jiri Olsa) [1311586]
-- [kernel] bpf: use different interpreter depending on required stack size (Jiri Olsa) [1311586]
-- [kernel] bpf: teach verifier to track stack depth (Jiri Olsa) [1311586]
-- [kernel] bpf: split bpf core interpreter (Jiri Olsa) [1311586]
-- [kernel] bpf: free up BPF_JMP | BPF_CALL | BPF_X opcode (Jiri Olsa) [1311586]
-- [kernel] bpf: fix wrong exposure of map_flags into fdinfo for lpm (Jiri Olsa) [1311586]
-- [kernel] bpf: properly reset caller saved regs after helper call and ld_abs/ind (Jiri Olsa) [1311586]
-- [kernel] bpf: fix incorrect pruning decision when alignment must be tracked (Jiri Olsa) [1311586]
-- [kernel] Make IP alignment calulations clearer (Jiri Olsa) [1311586]
-- [kernel] bpf: Handle multiple variable additions into packet pointers in verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: encapsulate verifier log state into a structure (Jiri Olsa) [1311586]
-- [kernel] bpf: adjust verifier heuristics (Jiri Olsa) [1311586]
-- [kernel] bpf: Add map_name to bpf_map_info (Jiri Olsa) [1311586]
-- [kernel] bpf: Allow selecting numa node during map creation (Jiri Olsa) [1311586]
-- [kernel] bpf: add devmap, a map for storing net device references (Jiri Olsa) [1311586]
-- [kernel] bpf: Add name, load_time, uid and map_ids to bpf_prog_info (Jiri Olsa) [1311586]
-- [kernel] bpf: Add strict alignment flag for BPF_PROG_LOAD (Jiri Olsa) [1311586]
-- [kernel] bpf: Do per-instruction state dumping in verifier when log_level > 1 (Jiri Olsa) [1311586]
-- [kernel] bpf: Track alignment of register values in the verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_OBJ_GET_INFO_BY_FD (Jiri Olsa) [1311586]
-- [kernel] bpf: Add jited_len to struct bpf_prog (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_MAP_GET_FD_BY_ID (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_PROG_GET_FD_BY_ID (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_(PROG|MAP)_GET_NEXT_ID command (Jiri Olsa) [1311586]
-- [kernel] bpf: Introduce bpf_map ID (Jiri Olsa) [1311586]
-- [kernel] bpf: Introduce bpf_prog ID (Jiri Olsa) [1311586]
-- [kernel] bpf: don't let ldimm64 leak map addresses on unprivileged (Jiri Olsa) [1311586]
-- [kernel] bpf: enhance verifier to understand stack pointer arithmetic (Jiri Olsa) [1311586]
-- [x86] bpf, x86_64/arm64: remove old ldimm64 artifacts from jits (Jiri Olsa) [1311586]
-- [kernel] bpf: map_get_next_key to return first key on NULL (Jiri Olsa) [1311586]
-- [kernel] bpf: lru: Lower the PERCPU_NR_SCANS from 16 to 4 (Jiri Olsa) [1311586]
-- [kernel] bpf: remove struct bpf_map_type_list (Jiri Olsa) [1311586]
-- [kernel] bpf: remove struct bpf_prog_type_list (Jiri Olsa) [1311586]
-- [kernel] bpf: reference may_access_skb() from __bpf_prog_run() (Jiri Olsa) [1311586]
-- [net] bpf: introduce BPF_PROG_TEST_RUN command (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: fix rejection of unaligned access checks for map_value_adj (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: fix alu ops against map_value(, _adj) register types (Jiri Olsa) [1311586]
-- [kernel] bpf: improve verifier packet range checks (Jiri Olsa) [1311586]
-- [kernel] bpf: Add hash of maps support (Jiri Olsa) [1311586]
-- [kernel] bpf: Add array of maps support (Jiri Olsa) [1311586]
-- [kernel] bpf: Fix and simplifications on inline map lookup (Jiri Olsa) [1311586]
-- [kernel] bpf: fix hashmap extra_elems logic (Jiri Olsa) [1311586]
-- [kernel] bpf: inline htab_map_lookup_elem() (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper inlining infra and optimize map_array lookup (Jiri Olsa) [1311586]
-- [kernel] bpf: adjust insn_aux_data when patching insns (Jiri Olsa) [1311586]
-- [kernel] bpf: refactor fixup_bpf_calls() (Jiri Olsa) [1311586]
-- [kernel] bpf: move fixup_bpf_calls() function (Jiri Olsa) [1311586]
-- [kernel] bpf: convert htab map to hlist_nulls (Jiri Olsa) [1311586]
-- [kernel] bpf: fix struct htab_elem layout (Jiri Olsa) [1311586]
-- [kernel] bpf: add get_next_key callback to LPM map (Jiri Olsa) [1311586]
-- [kernel] bpf: fix spelling mistake: "proccessed" -> "processed" (Jiri Olsa) [1311586]
-- [kernel] bpf: remove stubs for cBPF from arch code (Jiri Olsa) [1311586]
-- [kernel] bpf: reduce compiler warnings by adding fallthrough comments (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_F_ALLOW_OVERRIDE flag (Jiri Olsa) [1311586]
-- [kernel] bpf, lpm: fix overflows in trie_alloc checks (Jiri Olsa) [1311586]
-- [kernel] bpf: enable verifier to add 0 to packet ptr (Jiri Olsa) [1311586]
-- [kernel] bpf: add initial bpf tracepoints (Jiri Olsa) [1311586]
-- [kernel] trace: add variant without spacing in trace_print_hex_seq (Jiri Olsa) [1311586]
-- [kernel] bpf: enable verifier to better track const alu ops (Jiri Olsa) [1311586]
-- [kernel] bpf, lpm: fix kfree of im_node in trie_update_elem (Jiri Olsa) [1311586]
-- [kernel] bpf: add a longest prefix match trie map implementation (Jiri Olsa) [1311586]
-- [kernel] bpf: add bpf_probe_read_str helper (Jiri Olsa) [1311586]
-- [kernel] bpf: don't trigger OOM killer under pressure with map alloc (Jiri Olsa) [1311586]
-- [kernel] bpf, trace: make ctx access checks more robust (Jiri Olsa) [1311586]
-- [kernel] bpf: rework prog_digest into prog_tag (Jiri Olsa) [1311586]
-- [kernel] bpf: allow b/h/w/dw access for bpf's cb in ctx (Jiri Olsa) [1311586]
-- [kernel] bpf: pass original insn directly to convert_ctx_access (Jiri Olsa) [1311586]
-- [kernel] bpf: do not use KMALLOC_SHIFT_MAX (Jiri Olsa) [1311586]
-- [kernel] bpf: Make unnecessarily global functions static (Jiri Olsa) [1311586]
-- [kernel] bpf: Remove unused but set variable in __bpf_lru_list_shrink_inactive() (Jiri Olsa) [1311586]
-- [kernel] bpf: rename ARG_PTR_TO_STACK (Jiri Olsa) [1311586]
-- [kernel] bpf: allow helpers access to variable memory (Jiri Olsa) [1311586]
-- [kernel] bpf: allow adjusted map element values to spill (Jiri Olsa) [1311586]
-- [kernel] bpf: allow helpers access to map element values (Jiri Olsa) [1311586]
-- [kernel] bpf: split check_mem_access logic for map values (Jiri Olsa) [1311586]
-- [x86] bpf: change back to orig prog on too many passes (Jiri Olsa) [1311586]
-- [kernel] bpf: fix mark_reg_unknown_value for spilled regs on map value marking (Jiri Olsa) [1311586]
-- [kernel] bpf: fix overflow in prog accounting (Jiri Olsa) [1311586]
-- [kernel] bpf: dynamically allocate digest scratch buffer (Jiri Olsa) [1311586]
-- [kernel] bpf: add prog_digest and expose it via fdinfo/netlink (Jiri Olsa) [1311586]
-- [kernel] bpf: fix regression on verifier pruning wrt map lookups (Jiri Olsa) [1311586]
-- [kernel] bpf: fix state equivalence (Jiri Olsa) [1311586]
-- [kernel] bpf: fix loading of BPF_MAXINSNS sized programs (Jiri Olsa) [1311586]
-- [kernel] bpf: Preserve const register type on const OR alu ops (Jiri Olsa) [1311586]
-- [uapi] bpf: Add new cgroup attach type to enable sock modifications (Jiri Olsa) [1311586]
-- [kernel] bpf: BPF for lightweight tunnel infrastructure (Jiri Olsa) [1311586]
-- [kernel] bpf: fix states equal logic for varlen access (Jiri Olsa) [1311586]
-- [kernel] bpf: allow for mount options to specify permissions (Jiri Olsa) [1311586]
-- [kernel] bpf: add owner_prog_type and accounted mem to array map's fdinfo (Jiri Olsa) [1311586]
-- [kernel] bpf: add __must_check attributes to refcount manipulating helpers (Jiri Olsa) [1311586]
-- [kernel] bpf: fix range arithmetic for bpf map access (Jiri Olsa) [1311586]
-- [kernel] bpf: Fix compilation warning in __bpf_lru_list_rotate_inactive (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_MAP_TYPE_LRU_PERCPU_HASH (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_MAP_TYPE_LRU_HASH (Jiri Olsa) [1311586]
-- [kernel] bpf: Refactor codes handling percpu map (Jiri Olsa) [1311586]
-- [kernel] bpf: Add percpu LRU list (Jiri Olsa) [1311586]
-- [kernel] bpf: LRU List (Jiri Olsa) [1311586]
-- [kernel] bpf: Use u64_to_user_ptr() (Jiri Olsa) [1311586]
-- [kernel] bpf: Remove unused but set variables (Jiri Olsa) [1311586]
-- [kernel] bpf: fix map not being uncharged during map creation failure (Jiri Olsa) [1311586]
-- [kernel] bpf: fix htab map destruction when extra reserve is in use (Jiri Olsa) [1311586]
-- [kernel] bpf: Print function name in addition to function id (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper for retrieving current numa node id (Jiri Olsa) [1311586]
-- [kernel] bpf: Detect identical PTR_TO_MAP_VALUE_OR_NULL registers (Jiri Olsa) [1311586]
-- [kernel] bpf: allow access into map value arrays (Jiri Olsa) [1311586]
-- [kernel] bpf: clean up put_cpu_var usage (Jiri Olsa) [1311586]
-- [kernel] bpf: Set register type according to is_valid_access() (Jiri Olsa) [1311586]
-- [kernel] bpf: recognize 64bit immediate loads as consts (Jiri Olsa) [1311586]
-- [kernel] bpf: enable non-core use of the verfier (Jiri Olsa) [1311586]
-- [kernel] bpf: expose internal verfier structures (Jiri Olsa) [1311586]
-- [kernel] bpf: don't (ab)use instructions to store state (Jiri Olsa) [1311586]
-- [kernel] bpf: direct packet write and access for helpers for clsact progs (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: enforce larger zero range for pkt on overloading stack buffs (Jiri Olsa) [1311586]
-- [kernel] bpf: fix range propagation on direct packet access (Jiri Olsa) [1311586]
-- [kernel] bpf: fix method of PTR_TO_PACKET reg id generation (Jiri Olsa) [1311586]
-- [kernel] bpf: add BPF_CALL_x macros for declaring helpers (Jiri Olsa) [1311586]
-- [kernel] bpf: add BPF_SIZEOF and BPF_FIELD_SIZEOF macros (Jiri Olsa) [1311586]
-- [kernel] bpf: minor cleanups in helpers (Jiri Olsa) [1311586]
-- [kernel] bpf: drop unnecessary context cast from BPF_PROG_RUN (Jiri Olsa) [1311586]
-- [kernel] perf, bpf: add perf events core support for BPF_PROG_TYPE_PERF_EVENT programs (Jiri Olsa) [1311586]
-- [kernel] bpf: perf_event progs should only use preallocated maps (Jiri Olsa) [1311586]
-- [kernel] bpf: support 8-byte metafield access (Jiri Olsa) [1311586]
-- [kernel] bpf: allow bpf_get_prandom_u32() to be used in tracing (Jiri Olsa) [1311586]
-- [kernel] bpf: allow helpers access the packet directly (Jiri Olsa) [1311586]
-- [kernel] bpf: restore behavior of bpf_map_update_elem (Jiri Olsa) [1311586]
-- [kernel] bpf: Add bpf_probe_write_user BPF helper to be called in tracers (Jiri Olsa) [1311586]
-- [kernel] bpf, events: fix offset in skb copy handler (Jiri Olsa) [1311586]
-- [kernel] bpf: fix implicit declaration of bpf_prog_add (Jiri Olsa) [1311586]
-- [kernel] bpf: enable direct packet data write for xdp progs (Jiri Olsa) [1311586]
-- [kernel] bpf: add bpf_prog_add api for bulk prog refcnt (Jiri Olsa) [1311586]
-- [kernel] cgroup: bpf: Add BPF_MAP_TYPE_CGROUP_ARRAY (Jiri Olsa) [1311586]
-- [kernel] trace/bpf_trace.c: work around gcc-4.4.4 anon union initialization bug (Jiri Olsa) [1311586]
-- [kernel] bpf: bpf_event_entry_gen's alloc needs to be in atomic context (Jiri Olsa) [1311586]
-- [kernel] bpf: avoid stack copy and use skb ctx for event output (Jiri Olsa) [1311586]
-- [kernel] bpf, perf: split bpf_perf_event_output (Jiri Olsa) [1311586]
-- [kernel] perf, events: add non-linear data support for raw records (Jiri Olsa) [1311586]
-- [kernel] bpf: make inode code explicitly non-modular (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce bpf_get_current_task() helper (Jiri Olsa) [1311586]
-- [kernel] bpf: refactor bpf_prog_get and type check into helper (Jiri Olsa) [1311586]
-- [kernel] bpf: generally move prog destruction to RCU deferral (Jiri Olsa) [1311586]
-- [kernel] bpf: don't use raw processor id in generic helper (Jiri Olsa) [1311586]
-- [kernel] bpf, trace: add BPF_F_CURRENT_CPU flag for bpf_perf_event_read (Jiri Olsa) [1311586]
-- [kernel] bpf: minor cleanups on fd maps and helpers (Jiri Olsa) [1311586]
-- [kernel] bpf, perf: delay release of BPF prog after grace period (Jiri Olsa) [1311586]
-- [kernel] bpf, maps: flush own entries on perf map release (Jiri Olsa) [1311586]
-- [kernel] bpf, maps: extend map_fd_get_ptr arguments (Jiri Olsa) [1311586]
-- [kernel] bpf, maps: add release callback (Jiri Olsa) [1311586]
-- [kernel] bpf: fix matching of data/data_end in verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: teach verifier to recognize imm += ptr pattern (Jiri Olsa) [1311586]
-- [kernel] bpf: support decreasing order in direct packet access (Jiri Olsa) [1311586]
-- [kernel] bpf: direct packet access (Jiri Olsa) [1311586]
-- [kernel] bpf: fix missing header inclusion (Jiri Olsa) [1311586]
-- [kernel] bpf: rather use get_random_int for randomizations (Jiri Olsa) [1311586]
-- [net] bpf: split HAVE_BPF_JIT into cBPF and eBPF variant (Jiri Olsa) [1311586]
-- [x86] bpf, x86: add support for constant blinding (Jiri Olsa) [1311586]
-- [net] bpf: add generic constant blinding for use in jits (Jiri Olsa) [1311586]
-- [kernel] bpf: prepare bpf_int_jit_compile/bpf_prog_select_runtime apis (Jiri Olsa) [1311586]
-- [kernel] bpf: add bpf_patch_insn_single helper (Jiri Olsa) [1311586]
-- [x86] bpf, x86/arm64: remove useless checks on prog (Jiri Olsa) [1311586]
-- [kernel] bpf: minor cleanups in ebpf code (Jiri Olsa) [1311586]
-- [kernel] bpf: improve verifier state equivalence (Jiri Olsa) [1311586]
-- [kernel] bpf: cleanup verifier code (Jiri Olsa) [1311586]
-- [kernel] bpf: fix check_map_func_compatibility logic (Jiri Olsa) [1311586]
-- [kernel] bpf: fix refcnt overflow (Jiri Olsa) [1311586]
-- [kernel] bpf: fix double-fdput in replace_map_fd_with_map_ptr() (Jiri Olsa) [1311586]
-- [kernel] bpf: add event output helper for notifications/sampling/logging (Jiri Olsa) [1311586]
-- [kernel] bpf, trace: add BPF_F_CURRENT_CPU flag for bpf_perf_event_output (Jiri Olsa) [1311586]
-- [kernel] bpf: convert relevant helper args to ARG_PTR_TO_RAW_STACK (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: add ARG_PTR_TO_RAW_STACK type (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: add bpf_call_arg_meta for passing meta data (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: reject invalid LD_ABS | BPF_DW instruction (Jiri Olsa) [1311586]
-- [kernel] bpf: simplify verifier register state assignments (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: further improve search pruning (Jiri Olsa) [1311586]
-- [kernel] bpf: sanitize bpf tracepoint access (Jiri Olsa) [1311586]
-- [kernel] bpf: support bpf_get_stackid() and bpf_perf_event_output() in tracepoint programs (Jiri Olsa) [1311586]
-- [kernel] bpf: reject invalid names right in ->lookup() (Jiri Olsa) [1311586]
-- [kernel] bpf: add missing map_flags to bpf_map_show_fdinfo (Jiri Olsa) [1311586]
-- [kernel] bpf: avoid copying junk bytes in bpf_get_current_comm() (Jiri Olsa) [1311586]
-- [kernel] bpf: bpf_stackmap_copy depends on CONFIG_PERF_EVENTS (Jiri Olsa) [1311586]
-- [kernel] bpf: convert stackmap to pre-allocation (Jiri Olsa) [1311586]
-- [kernel] bpf: check for reserved flag bits in array and stack maps (Jiri Olsa) [1311586]
-- [kernel] bpf: pre-allocate hash map elements (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce percpu_freelist (Jiri Olsa) [1311586]
-- [kernel] bpf: prevent kprobe+bpf deadlocks (Jiri Olsa) [1311586]
-- [kernel] bpf: Mark __bpf_prog_run() stack frame as non-standard (Jiri Olsa) [1311586]
-- [kernel] bpf: add new arg_type that allows for 0 sized stack buffer (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_MAP_TYPE_STACK_TRACE (Jiri Olsa) [1311586]
-- [kernel] bpf: grab rcu read lock for bpf_percpu_hash_update (Jiri Olsa) [1311586]
-- [kernel] bpf: add lookup/update support for per-cpu hash and array maps (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_MAP_TYPE_PERCPU_ARRAY map (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_MAP_TYPE_PERCPU_HASH map (Jiri Olsa) [1311586]
-- [kernel] bpf: add BPF_PROG_ATTACH and BPF_PROG_DETACH commands (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Create stack frames in bpf_jit.S (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Annotate callable functions (Jiri Olsa) [1311586]
-- [kernel] bpf: Enable code compilation (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_PROG_TYPE_PERF_EVENT program type (Jiri Olsa) [1311586]
-- [kernel] bpf: register BPF_PROG_TYPE_TRACEPOINT program type (Jiri Olsa) [1311586]
-- [kernel] bpf: add support for sys_enter_* and sys_exit_* tracepoints (Jiri Olsa) [1311586]
-- [kernel] tracing/syscall: Avoid perf_trace_buf_*() if sys_data->perf_events is empty (Jiri Olsa) [1311586]
-- [kernel] perf, bpf: allow bpf programs attach to tracepoints (Jiri Olsa) [1311586]
-- [kernel] bpf_trace: Make dependent on PERF_EVENTS (Jiri Olsa) [1311586]
-- [kernel] tracing, perf: Implement BPF programs attached to uprobes (Jiri Olsa) [1311586]
-- [kernel] perf: Fix race in BPF program unregister (Jiri Olsa) [1311586]
-- [kernel] tracing, perf: Implement BPF programs attached to kprobes (Jiri Olsa) [1311586]
-- [kernel] kernel tracing: Add struct ftrace_event_data (Jiri Olsa) [1311586]
-- [kernel] tracing: Add kprobe flag (Jiri Olsa) [1311586]
-- [trace] tracepoint: Use struct pointer instead of name hash for reg/unreg tracepoints (Jiri Olsa) [1311586]
-- [trace] perf: remove unused __addr variable (Jiri Olsa) [1311586]
-- [kernel] bpf: Add CONFIG_BPF_EVENTS into Kconfig (Jiri Olsa) [1311586]
-- [net] bpf: split eBPF out of NET (Jiri Olsa) [1311586]
-- [uapi] filter: move common defines into bpf_common.h (Jiri Olsa) [1311586]
-- [uapi] filter: split filter.h and expose eBPF to user space (Jiri Olsa) [1311586]
-- [uapi] bpf: add support for persistent maps/progs (Jiri Olsa) [1311586]
-- [uapi] bpf: Sync enum bpf_func_id with v4.5 code (Jiri Olsa) [1311586]
-- [uapi] bpf: Sync enums to v4.5 code in uapi bpf.h (Jiri Olsa) [1311586]
-- [uapi] bpf: Add bpf load syscall header bits (Jiri Olsa) [1311586]
-- [kernel] filter: move load_pointer() into filter.h (Jiri Olsa) [1311586]
-- [kernel] bpf: Adding filter block macros (Jiri Olsa) [1311586]
-- [uapi] bpf: Add missing macros to filter.h/bpf.h (Jiri Olsa) [1311586]
-- [kernel] bpf: consolidate JIT binary allocator (Jiri Olsa) [1311586]
-- [kernel] bpf: make eBPF interpreter images read-only (Jiri Olsa) [1311586]
-- [kernel] bpf: Sync struct bpf_prog with v4.5 code and add related declarations (Jiri Olsa) [1311586]
-- [kernel] bpf: fix missing header inclusion (Jiri Olsa) [1311586]
-- [kernel] bpf: split state from prandom_u32() and consolidate c/eBPF prngs (Jiri Olsa) [1311586]
-- [kernel] bpf: Sync needed bpf.h structs with v4.5 code (Jiri Olsa) [1311586]
-- [kernel] bpf: Add convert_ctx_access callback (Jiri Olsa) [1311586]
-- [kernel] bpf: Add verifier prototypes for helper functions (Jiri Olsa) [1311586]
-- [kernel] bpf: Add missing members to enum bpf_arg_type (Jiri Olsa) [1311586]
-- [kernel] bpf: verifier (add verifier core) (Jiri Olsa) [1311586]
-- [kernel] bpf: Split functions under CONFIG_BPF_SYSCALL in bpf.h (Jiri Olsa) [1311586]
-- [kernel] bpf: Make the bpf_prog_array_map more generic (Jiri Olsa) [1311586]
-- [kernel] bpf: allow bpf programs to tail-call other bpf programs (Jiri Olsa) [1311586]
-- [uapi] bpf: add 'flags' attribute to BPF_MAP_UPDATE_ELEM command (Jiri Olsa) [1311586]
-- [kernel] filter: make register naming more comprehensible (Jiri Olsa) [1311586]
-- [uapi] bpf: introduce bpf_perf_event_output() helper (Jiri Olsa) [1311586]
-- [kernel] perf, bpf: Add BPF support to all perf_event types (Jiri Olsa) [1311586]
-- [kernel] bpf: Add trace_bpf* jit functions (Jiri Olsa) [1311586]
-- [kernel] perf/bpf: Convert perf_event_array to use struct file (Jiri Olsa) [1311586]
-- [mm] maccess.c: actually return -EFAULT from strncpy_from_unsafe (Jiri Olsa) [1311586]
-- [mm] lib: move strncpy_from_unsafe() into mm/maccess.c (Jiri Olsa) [1311586]
-- [lib] introduce strncpy_from_unsafe() (Jiri Olsa) [1311586]
-- [kernel] bpf, inode: disallow userns mounts (Jiri Olsa) [1311586]
-- [kernel] bpf: Use mount_nodev not mount_ns to mount the bpf filesystem (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Change sk_load prefix to trace_sk_load for jit (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Additional changes for trace_bpf_jit.S (Jiri Olsa) [1311586]
-- [x86] bpf: Additional changes for trace_bpf_jit_comp.c (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Add v4.5 trace_bpf_jit.S (Jiri Olsa) [1311586]
-- [x86] bpf: Add v4.5 trace_bpf_jit_comp.c (Jiri Olsa) [1311586]
-- [netdrv] bpf: Additional changes for network drivers (Jiri Olsa) [1311586]
-- [kernel] bpf: Additional changes for core.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Additional changes for bpf_trace.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Additional changes for syscall.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 Makefile (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 inode.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 bpf_trace.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 arraymap.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 hashtab.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 helpers.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 verifier.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 syscall.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 core.c (Jiri Olsa) [1311586]
-- [uapi] bpf: Fix BPF_PROG_TYPE_XDP enum (Jiri Olsa) [1311586]
-- [kernel] /proc/module: fix building without kallsyms (Jiri Olsa) [1311586]
-- [kernel] /proc/module: use the same logic as /proc/kallsyms for address exposure (Jiri Olsa) [1311586]
-- [lib] random32: add prandom_init_once helper for own rngs (Jiri Olsa) [1311586]
-- [lib] random32: add prandom_seed_full_state helper (Jiri Olsa) [1311586]
-
-* Fri Jun 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-912.el7]
-- [fs] bio: fix __bio_map_user_iov() (Ming Lei) [1548263]
-- [fs] xfs: detect agfl count corruption and reset agfl (Brian Foster) [1569471]
-- [fs] ext4: remove i_ioend_count (Marco Benatto) [1561142]
-- [fs] nfsd: fix potential use-after-free in nfsd4_decode_getdeviceinfo (Scott Mayhew) [1573426]
-- [fs] xfs: don't fail when converting shortform attr to long form during ATTR_REPLACE (Carlos Maiolino) [1590625]
-- [fs] Fix 16-byte memory leak in gssp_accept_sec_context_upcall (Dave Wysochanski) [1579804]
-- [fs] nfsv4: Fix possible 1-byte stack overflow in nfs_idmap_read_and_verify_message (Dave Wysochanski) [1567623]
-- [fs] dax: remove extra put_dax call (Eric Sandeen) [1588686]
-- [fs] cifs: return error on invalid value written to cifsFYI (Leif Sahlberg) [1539617]
-- [fs] cifs: show the "w" bit for writeable /proc/fs/cifs/* files (Leif Sahlberg) [1539612]
-- [fs] dcache.c: add cond_resched() in shrink_dentry_list() (Aaron Tomlin) [1584693]
-- [fs] fs, dax: use page->mapping to warn if truncate collides with a busy page (Eric Sandeen) [1515087]
-- [fs] ext4, dax: introduce ext4_dax_aops (Eric Sandeen) [1515087]
-- [fs] xfs, dax: introduce xfs_dax_aops (Eric Sandeen) [1515087]
-- [fs] block, dax: remove dead code in blkdev_writepages() (Eric Sandeen) [1515087]
-- [fs] fs, dax: prepare for dax-specific address_space_operations (Eric Sandeen) [1515087]
-- [fs] dax: store pfns in the radix (Eric Sandeen) [1515087]
-- [fs] dax: require 'struct page' by default for filesystem dax (Eric Sandeen) [1515087]
-- [fs] mm, dax: introduce pfn_t_special() (Eric Sandeen) [1515087]
-- [fs] fs/dax.c: release PMD lock even when there is no PMD support in DAX (Eric Sandeen) [1515087]
-- [fs] ext4: auto disable dax instead of failing mount (Eric Sandeen) [1515087]
-- [fs] ext4: fix ENOSPC handling in DAX page fault handler (Eric Sandeen) [1515087]
-- [fs] dax: pass detailed error code from dax_iomap_fault() (Eric Sandeen) [1515087]
-- [fs] dax: fix PMD faults on zero-length files (Eric Sandeen) [1515087]
-- [fs] fs, dax: unify IOMAP_F_DIRTY read vs write handling policy in the dax core (Eric Sandeen) [1515087]
-- [fs] xfs: validate bdev support for DAX inode flag (Eric Sandeen) [1515087]
-- [fs] dax: use PG_PMD_COLOUR instead of open coding (Eric Sandeen) [1515087]
-- [fs] dax: explain how read(2)/write(2) addresses are validated (Eric Sandeen) [1515087]
-- [fs] tools headers: Syncronize mman.h ABI header (Eric Sandeen) [1471784]
-- [fs] xfs: support for synchronous DAX faults (Eric Sandeen) [1471784]
-- [fs] xfs: Implement xfs_filemap_pfn_mkwrite() using __xfs_filemap_fault() (Eric Sandeen) [1471784]
-- [fs] ext4: Support for synchronous DAX faults (Eric Sandeen) [1471784]
-- [fs] ext4: Simplify error handling in ext4_dax_huge_fault() (Eric Sandeen) [1471784]
-- [fs] dax: Implement dax_finish_sync_fault() (Eric Sandeen) [1471784]
-- [fs] dax, iomap: Add support for synchronous faults (Eric Sandeen) [1471784]
-- [fs] mm: Handle 0 flags in _calc_vm_trans() macro (Eric Sandeen) [1471784]
-- [fs] mm: Define MAP_SYNC and VM_SYNC flags (Eric Sandeen) [1471784]
-- [fs] dax: Allow tuning whether dax_insert_mapping_entry() (Eric Sandeen) [1471784]
-- [fs] dax: Allow dax_iomap_fault() to return pfn (Eric Sandeen) [1471784]
-- [fs] dax: Fix comment describing dax_iomap_fault() (Eric Sandeen) [1471784]
-- [fs] dax: Inline dax_pmd_insert_mapping() into the callsite (Eric Sandeen) [1471784]
-- [fs] dax: Inline dax_insert_mapping() into the callsite (Eric Sandeen) [1471784]
-- [fs] dax: initialize variable pfn before using it (Eric Sandeen) [1471784]
-- [fs] dax: Create local variable for vmf->flags & FAULT_FLAG_WRITE test (Eric Sandeen) [1471784]
-- [fs] dax: Create local variable for VMA in dax_iomap_pte_fault() (Eric Sandeen) [1471784]
-- [fs] dax: Factor out getting of pfn out of iomap (Eric Sandeen) [1471784]
-- [fs] dax: Simplify arguments of dax_insert_mapping() (Eric Sandeen) [1471784]
-- [fs] mm: Remove VM_FAULT_HWPOISON_LARGE_MASK (Eric Sandeen) [1471784]
-- [fs] mm: introduce MAP_SHARED_VALIDATE, a mechanism to safely define new mmap flags (Eric Sandeen) [1471784]
-- [fs] xfs: consolidate the various page fault handlers (Eric Sandeen) [1471784]
-- [fs] iomap: return VM_FAULT_* codes from iomap_page_mkwrite (Eric Sandeen) [1471784]
-- [fs] Remove VM_FOP_EXTEND mm flag (Eric Sandeen) [1471784]
-- [fs] dax: move all DAX radix tree defs to fs/dax.c (Eric Sandeen) [1492001]
-- [mm] dax: remove DAX code from page_cache_tree_insert() (Eric Sandeen) [1492001]
-- [fs] dax: use common 4k zero page for dax mmap reads (Eric Sandeen) [1492001]
-- [fs] dax: relocate some dax functions (Eric Sandeen) [1492001]
-- [mm] add vm_insert_mixed_mkwrite() (Eric Sandeen) [1492001]
-- [fs] libceph: fix legacy layout decode with pool 0 (Zheng Yan) [1585072]
-- [fs] rbd: destroy header_oloc in rbd_dev_release() (Zheng Yan) [1585072]
-- [fs] libceph: handle non-empty dest in ceph_{oloc, oid}_copy() (Zheng Yan) [1585072]
-- [fs] ceph: rados pool namespace support (Zheng Yan) [1585072]
-- [fs] libceph: make sure redirect does not change namespace (Zheng Yan) [1585072]
-- [fs] libceph: rados pool namespace support (Zheng Yan) [1585072]
-- [fs] libceph: using kfree_rcu() to simplify the code (Zheng Yan) [1585072]
-- [fs] libceph: introduce reference counted string (Zheng Yan) [1585072]
-- [fs] sunrpc: avoid warning in gss_key_timeout (Benjamin Coddington) [1418807]
-- [fs] sunrpc: Update RPCBIND_MAXNETIDLEN (Benjamin Coddington) [1418807]
-- [fs] NFS: Don't drop CB requests with invalid principals (Benjamin Coddington) [1418807]
-- [fs] NFSv4.1: nfs4_fl_prepare_ds must be careful about reporting success. (Benjamin Coddington) [1418807]
-- [fs] NFSv4: Also ask for attributes when downgrading to a READ-only state (Benjamin Coddington) [1418807]
-- [fs] NFSv4: Fix the underestimation of delegation XDR space reservation (Benjamin Coddington) [1418807]
-- [fs] NFSv4: Fix double frees in nfs4_test_session_trunk() (Benjamin Coddington) [1418807]
-- [fs] NFS: Fix NFSv2 security settings (Benjamin Coddington) [1418807]
-- [fs] NFSv4/pnfs: Fix an infinite layoutget loop (Benjamin Coddington) [1418807]
-- [fs] nfs: system crashes after NFS4ERR_MOVED recovery (Benjamin Coddington) [1418807]
-- [fs] xprtrdma: Fix latency regression on NUMA NFS/RDMA clients (Benjamin Coddington) [1418807]
-- [fs] pNFS: Prevent the layout header refcount going to zero in pnfs_roc() (Benjamin Coddington) [1418807]
-- [fs] NFS: Fix an incorrect type in struct nfs_direct_req (Benjamin Coddington) [1418807]
-- [fs] NFS: reject request for id_legacy key without auxdata (Benjamin Coddington) [1418807]
-- [fs] NFS: Add a cond_resched() to nfs_commit_release_pages() (Benjamin Coddington) [1418807]
-- [fs] SUNRPC: Fix a race in the receive code path (Benjamin Coddington) [1418807]
-- [fs] NFS: Fix typo in nomigration mount option (Benjamin Coddington) [1418807]
-- [fs] nfs: Fix ugly referral attributes (Benjamin Coddington) [1418807]
-- [fs] NFS: Avoid RCU usage in tracepoints (Benjamin Coddington) [1418807]
-- [fs] NFS: revalidate "." etc correctly on "open". (Benjamin Coddington) [1418807]
-- [fs] NFS: Fix uninitialized rpc_wait_queue (Benjamin Coddington) [1418807]
-- [fs] net: sunrpc: svcsock: fix NULL-pointer exception (Benjamin Coddington) [1418807]
-- [fs] NFSv4: Fix EXCHANGE_ID corrupt verifier issue (Benjamin Coddington) [1418807]
-- [fs] NFS: invalidate file size when taking a lock. (Benjamin Coddington) [1418807]
-- [fs] sunrpc: use constant time memory comparison for mac (Benjamin Coddington) [1418807]
-- [fs] NFS: only invalidate dentrys that are clearly invalid. (Benjamin Coddington) [1418807]
-- [fs] pNFS/flexfiles: Check the result of nfs4_pnfs_ds_connect (Benjamin Coddington) [1418807]
-- [fs] svcrpc: fix oops in absence of krb5 module (Benjamin Coddington) [1418807]
-- [fs] nfs: Fix "Don't increment lock sequence ID after NFS4ERR_MOVED" (Benjamin Coddington) [1418807]
-- [fs] SUNRPC: cleanup ida information when removing sunrpc module (Benjamin Coddington) [1418807]
-- [fs] nfs: Don't increment lock sequence ID after NFS4ERR_MOVED (Benjamin Coddington) [1418807]
-- [fs] NFSv4.x: hide array-bounds warning (Benjamin Coddington) [1418807]
-- [fs] NFSv4.1: work around -Wmaybe-uninitialized warning (Benjamin Coddington) [1418807]
-- [fs] sunrpc: fix write space race causing stalls (Benjamin Coddington) [1418807]
-- [fs] NFSv4.x: Fix a refcount leak in nfs_callback_up_net (Benjamin Coddington) [1418807]
-- [fs] sunrpc: Fix bit count when setting hashtable size to power-of-two (Benjamin Coddington) [1418807]
-- [fs] sunrpc: fix stripping of padded MIC tokens (Benjamin Coddington) [1418807]
-- [fs] nfs: fix nfs_size_to_loff_t (Benjamin Coddington) [1418807]
-- [fs] xfs: enhance dinode verifier (Bill O'Donnell) [1574948] {CVE-2018-10322}
-- [fs] xfs: move inode fork verifiers to xfs_dinode_verify (Bill O'Donnell) [1574948] {CVE-2018-10322}
-- [fs] ext4: fix hole length detection in ext4_ind_map_blocks() (Lukas Czerner) [1578707]
-- [fs] ext4: fix interaction between i_size, fallocate, and delalloc after a crash (Lukas Czerner) [1591697]
-- [fs] ext4: fix fencepost error in check for inode count overflow during resize (Lukas Czerner) [1591696]
-- [fs] ext4: do not update s_last_mounted of a frozen fs (Lukas Czerner) [1570889]
-- [fs] ext4: factor out helper ext4_sample_last_mounted() (Lukas Czerner) [1570889]
-- [fs] vfs: add the sb_start_intwrite_trylock() helper (Lukas Czerner) [1570889]
-- [fs] ext4: update mtime in ext4_punch_hole even if no blocks are released (Lukas Czerner) [1496545]
-- [fs] ext4: fail ext4_iget for root directory if unallocated (Lukas Czerner) [1569885] {CVE-2018-1092}
-- [fs] ext4: don't allow r/w mounts if metadata blocks overlap the superblock (Lukas Czerner) [1564561] {CVE-2018-1094}
-- [fs] ext4: set h_journal if there is a failure starting a reserved handle (Lukas Czerner) [1569527]
-- [fs] jbd2: fix use after free in jbd2_journal_start_reserved() (Lukas Czerner) [1442044]
-
-* Thu Jun 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-911.el7]
-- [tools] power turbostat: update version number (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Add Node in output (Prarit Bhargava) [1454489]
-- [tools] power turbostat: add node information into turbostat calculations (Prarit Bhargava) [1454489]
-- [tools] power turbostat: remove num_ from cpu_topology struct (Prarit Bhargava) [1454489]
-- [tools] power turbostat: rename num_cores_per_pkg to num_cores_per_node (Prarit Bhargava) [1454489]
-- [tools] power turbostat: track thread ID in cpu_topology (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Calculate additional node information for a package (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Fix node and siblings lookup data (Prarit Bhargava) [1454489]
-- [tools] power turbostat: set max_num_cpus equal to the cpumask length (Prarit Bhargava) [1454489]
-- [tools] power turbostat: if --num_iterations, print for specific number of iterations (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Add Cannon Lake support (Prarit Bhargava) [1454489]
-- [tools] power turbostat: delete duplicate #defines (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Correct SNB_C1/C3_AUTO_UNDEMOTE defines (Prarit Bhargava) [1454489]
-- [tools] power turbostat: add POLL and POLL column (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Fix --hide Pkpc10 (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Build-in "Low Power Idle" counters support (Prarit Bhargava) [1454489]
-- [tools] power turbostat: a small C-states dump readability immprovement (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Don't make man pages executable (Prarit Bhargava) [1454489]
-- [tools] power turbostat: remove blank lines (Prarit Bhargava) [1454489]
-- [tools] power turbostat: dump BDX, SKX automatic C-state conversion bit (Prarit Bhargava) [1454489]
-- [tools] power turbostat: do not hard-code 25MHz crystal on SKX (Prarit Bhargava) [1454489]
-- [tools] power turbostat: fix possible sprintf buffer overflow (Prarit Bhargava) [1454489]
-- [tools] power turbostat: fix MSR_IA32_MISC_ENABLE MWAIT printout (Prarit Bhargava) [1454489]
-- [tools] power turbostat: fix printing on input (Prarit Bhargava) [1454489]
-- [tools] power turbostat: end current interval upon newline input (Prarit Bhargava) [1454489]
-- [tools] power turbostat: on sigusr1: sample, print and continue (Prarit Bhargava) [1454489]
-- [tools] power turbostat: on sigint: sample, print and exit (Prarit Bhargava) [1454489]
-- [tools] power turbostat: add --enable Time_Of_Day_Seconds (Prarit Bhargava) [1454489]
-- [tools] power turbostat: fix Skylake Xeon package C-state display (Prarit Bhargava) [1454489]
-- [ipc] msg: introduce msgctl(MSG_STAT_ANY) (Joe Lawrence) [1579402]
-- [ipc] sem: introduce semctl(SEM_STAT_ANY) (Joe Lawrence) [1579402]
-- [ipc] shm: introduce shmctl(SHM_STAT_ANY) (Joe Lawrence) [1579402]
-- [char] random: Wake up writers when random pools are zapped (Herbert Xu) [1458419]
-- [crypto] af_alg: Forbid bind(2) when nokey child sockets are present (Herbert Xu) [1555199]
-- [crypto] af_alg: Allow af_af_alg_release_parent to be called on nokey path (Herbert Xu) [1555199]
-- [kernel] seccomp: Sysctl to configure actions that are allowed to be logged (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Operation for checking if an action is available (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Sysctl to display available actions (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Switch from atomic_t to recount_t (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Clean up core dump logic (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Only dump core when single-threaded (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: dump core when using SECCOMP_RET_KILL (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: remove 2-phase API (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Refactor the filter callback and the API (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Remove nr parameter from secure_computing (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] audit: force seccomp event logging to honor the audit_enabled flag (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [pinctrl] cannonlake: Align GPIO number space with Windows (David Arcari) [1567849]
-- [pinctrl] intel: Allow custom GPIO base for pad groups (David Arcari) [1567849]
-- [pinctrl] intel: Make offset to interrupt status register configurable (David Arcari) [1567849]
-- [x86] kexec/64: Use gbpages for identity mappings if available (Pingfan Liu) [1503400]
-- [x86] mm: Add support for gbpages to kernel_ident_mapping_init() (Pingfan Liu) [1503400]
-- [x86] kvm: mmu: consider host cache mode in MMIO page check (Jeff Moyer) [1539279]
-- [x86] mm/pat: Export pat_enabled() (Jeff Moyer) [1539279]
-- [x86] mm: add a function to check if a pfn is UC/UC-/WC (Jeff Moyer) [1539279]
-- [x86] kvm: fix LAPIC timer drift when guest uses periodic mode ("Dr. David Alan Gilbert") [1584775]
-- [x86] kvm: remove APIC Timer periodic/oneshot spikes ("Dr. David Alan Gilbert") [1584775]
-- [powerpc] opal-irqchip: Fix deadlock introduced by "Fix double endian conversion" (Gustavo Duarte) [1577105]
-- [powerpc] opal-irqchip: Fix double endian conversion (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Increase opal-irqchip initcall priority (Gustavo Duarte) [1577105]
-- [powerpc] opal: Remove events notifier (Gustavo Duarte) [1577105]
-- [powerpc] powernv/opal-dump: Convert to irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/elog: Convert elog to opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/opal: Convert opal message events to opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/eeh: Update the EEH code to use the opal irq domain (Gustavo Duarte) [1577105]
-- [tty] hvc: Convert to using interrupts instead of opal events (Gustavo Duarte) [1577105]
-- [char] ipmi/powernv: Convert to irq event interface (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Reorder OPAL subsystem initialisation (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Add a virtual irqchip for opal events (Gustavo Duarte) [1577105]
-- [scripts] redhat: fix kABI for -mprofile-kernel (Josh Poimboeuf) [1578960]
-- [kernel] redhat: fix kABI for dynamic ftrace on powerpc (Josh Poimboeuf) [1578960]
-- [samples] livepatch: Allow to call a custom callback when freeing shadow variables (Josh Poimboeuf) [1578960]
-- [samples] livepatch: Initialize shadow variables safely by a custom callback (Josh Poimboeuf) [1578960]
-- [samples] livepatch: Remove immediate feature (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Fix livepatch stack access (Josh Poimboeuf) [1578960]
-- [scripts] ftrace: allow architectures to specify ftrace compile options (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: send a fake signal to all blocking tasks (powerpc bits) (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch/powerpc: add TIF_PATCH_PENDING thread flag (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Implement reliable stack tracing for the consistency model (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Add live patching support on ppc64le (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Add livepatch stack to struct thread_info (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Add livepatch header (Josh Poimboeuf) [1578960]
-- [kernel] ftrace: Make ftrace_location_range() global (Josh Poimboeuf) [1578960]
-- [powerpc] ftrace: Add Kconfig & Make glue for mprofile-kernel (Josh Poimboeuf) [1578960]
-- [powerpc] modules: Improve restore_r2() error message (Josh Poimboeuf) [1578960]
-- [powerpc] modules: Don't try to restore r2 after a sibling call (Josh Poimboeuf) [1578960]
-- [powerpc] modules: Never restore r2 for a mprofile-kernel style mcount() call (Josh Poimboeuf) [1578960]
-- [powerpc] ftrace: Add support for -mprofile-kernel ftrace ABI (Josh Poimboeuf) [1578960]
-- [powerpc] Use pr_fmt in module loader code (Josh Poimboeuf) [1578960]
-- [powerpc] modules: Add REL24 relocation support of livepatch symbols (Josh Poimboeuf) [1578960]
-- [powerpc] ftrace: Use $(CC_FLAGS_FTRACE) when disabling ftrace (Josh Poimboeuf) [1578960]
-- [powerpc] ftrace: Use generic ftrace_modify_all_code() (Josh Poimboeuf) [1578960]
-- [powerpc] module: Create a special stub for ftrace_caller() (Josh Poimboeuf) [1578960]
-- [powerpc] module: Mark module stubs with a magic value (Josh Poimboeuf) [1578960]
-- [powerpc] module: Only try to generate the ftrace_caller() stub once (Josh Poimboeuf) [1578960]
-- [powerpc] Create a helper for getting the kernel toc value (Josh Poimboeuf) [1578960]
-
-* Thu Jun 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-910.el7]
-- [netdrv] virtio_net: fix adding vids on big-endian (Laurent Vivier) [1585566]
-- [netdrv] mlx5e: Ignore attempts to offload multiple times a TC flow (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Use shared table for offloaded TC eswitch flows (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Prepare for shared table to keep TC eswitch flows (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Add ingress/egress indication for offloaded TC flows (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Offload tc vlan push/pop using HW action (Alaa Hleihel) [1588530]
-- [netdrv] mlx5: Add core support for vlan push/pop steering action (Alaa Hleihel) [1588530]
-- [netdrv] mlx5: Embed mlx5_flow_act into fs_fte (Alaa Hleihel) [1588530]
-- [netdrv] net, ib/mlx5: Add has_tag to mlx5_flow_act (Alaa Hleihel) [1588530]
-- [netdrv] ib/mlx5: Pass mlx5_flow_act struct instead of multiple arguments (Alaa Hleihel) [1588530]
-- [netdrv] mlx5: use tc_cls_can_offload_and_chain0() (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: hide an unused variable (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: E-Switch, Move send-to-vport rule struct to en_rep (Alaa Hleihel) [1591249]
-- [netdrv] mlx5: E-Switch, Create generic header struct to be used by representors (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Move ethernet representors data into separate struct (Alaa Hleihel) [1591249]
-- [netdrv] mlx5: E-Switch, Simplify representor load/unload callback API (Alaa Hleihel) [1591249]
-- [netdrv] Bump version for RHEL-7.6 (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Add XDP queue stats reporting (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Delay tail write for XDP packets (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Add support for XDP_TX action (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Add XDP support for pass and drop actions (Ken Cox) [1520661 1518094]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: fix unused variable warning (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: remove redundant initialization of variable 'dma' (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add build_skb support (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: break out Rx buffer page management (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: allocate the rings as part of q_vector (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: make sure all frames fit minimum size requirements (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add support for padding packet (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: setup queue counts (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add support for using order 1 pages to receive large frames (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add ethtool private flag for legacy Rx (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: use page_address offset from page (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: use ARRAY_SIZE for various array sizing calculations (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: don't bother clearing tx_buffer_info in ixgbevf_clean_tx_ring() (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: improve performance and reduce size of ixgbevf_tx_map() (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: clear rx_buffer_info in configure instead of clean (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add counters for Rx page allocations (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: update code to better handle incrementing page count (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add support for DMA_ATTR_SKIP_CPU_SYNC/WEAK_ORDERING (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: use length to determine if descriptor is done (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: only DMA sync frame length (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add function for checking if we can reuse page (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Fix kernel-doc format warnings (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: remove redundant setting of xcast_mode (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Use smp_rmb rather than read_barrier_depends (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbe: Initialize 64-bit stats seqcounts (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbe: force VF to grab new MAC on driver reload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe/ixgbevf: Free IRQ when PCI error recovery removes the device (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: cleanup sparse warnings (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix memory leak on ipsec allocation (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: return error on unsupported SFP module when resetting (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] intel: Cleanup the copyright/license headers (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe/fm10k: Drop tracking stats for macvlan broadcast/multicast (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Drop support for macvlan specific unicast lists (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] Use octal not symbolic permissions (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: tweak page counting for XDP_REDIRECT (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: enable TSO with IPsec offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: no need for esp trailer if GSO (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: remove unneeded ipsec test in TX path (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: no need for ipsec csum feature check (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix read-modify-write in x550 phy setup (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add status reg reads to ixgbe_check_remove (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix disabling hide VLAN on VF reset (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Add receive length error counter (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: remove unneeded ipsec state free callback (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix ipsec trailer length (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: check for 128-bit authentication (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: prevent ptp_rx_hang from running when in FILTER_ALL mode (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Avoid to write the RETA table when unnecessary (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: remove redundant initialization of 'pool' (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] Bump version number for RHEL-7.6 (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: don't set RXDCTL.RLPML for 82599 (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix && vs || typo (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add support for reporting 5G link speed (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Don't report unsupported timestamping filters for X550 (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: use ARRAY_SIZE for array sizing calculation on array buf (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: register ipsec offload with the xfrm subsystem (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: ipsec offload stats (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: process the Tx ipsec offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: process the Rx ipsec offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: restore offloaded SAs after a reset (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add ipsec offload add and remove SA (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add ipsec data structures (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add ipsec engine start and stop routines (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add ipsec register access routines (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: clean up ipsec defines (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix kernel-doc format warnings (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix handling of macvlan Tx offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: avoid bringing rings up/down as macvlans are added/removed (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Do not manipulate macvlan Tx queues when performing macvlan offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe/fm10k: Record macvlan stats instead of Rx queue for macvlan offloaded rings (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Don't assume dev->num_tc is equal to hardware TC config (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Default to 1 pool always being allocated (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Assume provided MAC filter has been verified by macvlan (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Drop l2_accel_priv data pointer from ring struct (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Use ring values to test for Tx pending (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix limitations on macvlan so we can support up to 63 offloaded devices (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: deleting dfwd stations out of order can cause null ptr deref (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: There is no need to update num_rx_pools in L2 fwd offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Add support for macvlan offload RSS on X550 and clean-up pool handling (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Perform reinit any time number of VFs change (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix for unused variable warning with certain config (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix interaction between SR-IOV and macvlan offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Remove an obsolete comment about ITR (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: extend firmware version support (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: advertise highest capable link speed (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: remove unused enum latency_range (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: enable multicast on shutdown for WOL (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: setup xdp_rxq_info (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix skb list corruption on Power systems (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] bpf: rename ndo_xdp to ndo_bpf (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix Tx map failure path (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] intel: Convert timers to use timer_setup() (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix crash when injecting AER after failed reset (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Update adaptive ITR algorithm (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix the FWSM.PT check in ixgbe_mng_present() (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix use of uninitialized padding (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add counter for times Rx pages gets allocated, not recycled (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: split Tx/Rx ring clearing for ethtool loopback test (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add error checks when initializing the PHY (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: restore normal RSS after last macvlan offload is removed (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: declare ixgbe_mac_operations structures as const (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Clear SWFW_SYNC register during init (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: incorrect XDP ring accounting in ethtool tx_frame param (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Use new PCI_DEV_FLAGS_NO_RELAXED_ORDERING flag (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix masking of bits read from IXGBE_VXLANCTRL register (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: NULL xdp_tx rings on resource cleanup (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] bpf: ixgbe: Report bpf_prog ID during XDP_QUERY_PROG (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: delay tail write to every 'n' packets (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add support for XDP_TX action (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add XDP support for pass and drop actions (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix build err, num_rx_queues is only available with CONFIG_RPS (Ken Cox) [1520658 1515550 1519654 1518092]
-
-* Wed Jun 20 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-909.el7]
-- [infiniband] iser: Do not reduce max_sectors (Alaa Hleihel) [1484104]
-- [kernel] rdma: Change all uapi headers to use __aligned_u64 instead of __u64 (Don Dutile) [1573883]
-- [kernel] rdma: Do not used __packed in uapi headers (Don Dutile) [1573883]
-- [infiniband] rdma/rxe: Fix uABI structure layouts for 32/64 compat (Don Dutile) [1573883]
-- [infiniband] rxe: Do not use 'struct sockaddr' in a uapi header (Don Dutile) [1573883]
-- [infiniband] rdma/rxe: Use structs to describe the uABI instead of opencoding (Don Dutile) [1573883]
-- [infiniband] rdma/rxe: Get rid of confusing udata parameter to rxe_cq_chk_attr (Don Dutile) [1573883]
-- [kernel] rdma/mlx4: Fix uABI structure layouts for 32/64 compat (Don Dutile) [1573883]
-- [infiniband] ib/mlx4: Move mlx4_uverbs_ex_query_device_resp to uapi/ (Don Dutile) [1573883]
-- [kernel] rdma/qedr: Fix uABI structure layouts for 32/64 compat (Don Dutile) [1573883]
-- [infiniband] rdma/ucma: Fix uABI structure layouts for 32/64 compat (Don Dutile) [1573883]
-- [kernel] rdma: Remove minor pahole differences between 32/64 (Don Dutile) [1573883]
-- [netdrv] e1000e: Ignore TSYNCRXCTL when getting I219 clock attributes (David Arcari) [1589302]
-- [netdrv] wil6210: missing length check in wmi_set_ie (Stanislaw Gruszka) [1590841] {CVE-2018-5848}
-- [netdrv] ethernet: Use octal not symbolic permissions (Ken Cox) [1548145]
-- [netdrv] bnx2: remove redundant initializations of pointers txr and rxr (Ken Cox) [1548145]
-- [netdrv] treewide: setup_timer() -> timer_setup() (Ken Cox) [1548145]
-- [netdrv] aquantia: driver should correctly declare vlan_features bits (Igor Russkikh) [1542881]
-- [netdrv] net: aquantia: fix unsigned numvecs comparison with less than zero (Igor Russkikh) [1586233]
-- [netdrv] net: aquantia: Limit number of vectors to actually allocated irqs (Igor Russkikh) [1586233]
-- [netdrv] cxgb4: do not fail vf instatiation in slave mode (Arjun Vynipadath) [1555206]
-- [netdrv] cxgb4/cxgb4vf: Notify link changes to OS-dependent code (Arjun Vynipadath) [1577743]
-- [netdrv] cxgb4: copy the length of cpl_tx_pkt_core to fw_wr (Arjun Vynipadath) [1579351]
-- [netdrv] cxgb4: avoid schedule while atomic (Arjun Vynipadath) [1579351]
-- [netdrv] cxgb4: enable inner header checksum calculation (Arjun Vynipadath) [1579351]
-- [netdrv] cxgb4: Fix (vxlan/geneve)_port initialization (Arjun Vynipadath) [1579351]
-- [netdrv] remove AMD xgbe mark_hardware_unsupported quirk (David Arcari) [1589397]
-- [netdrv] amd-xgbe: mark driver as tech preview (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Improve SFP 100Mbps auto-negotiation (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Update the BelFuse quirk to support SGMII (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Advertise FEC support with the KR re-driver (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Always attempt link training in KR mode (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add ethtool show/set channels support (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Prepare for ethtool set-channel support (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add ethtool show/set ring parameter support (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add ethtool support to retrieve SFP module info (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Remove field that indicates SFP diagnostic support (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Remove use of comm_owned field (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Read and save the port property registers during probe (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fix debug output of max channel counts (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Only use the SFP supported transceiver signals (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Improve KR auto-negotiation and training (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add pre/post auto-negotiation phy hooks (David Arcari) [1589397]
-- [netdrv] Use octal not symbolic permissions (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Restore PCI interrupt enablement setting on resume (David Arcari) [1589397]
-- [netdrv] amd-xgbe: fix comparison to bitshift when dealing with a mask (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Get rid of custom hex_dump_to_buffer() (David Arcari) [1589397]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (David Arcari) [1589397]
-- [netdrv] amd: Convert timers to use timer_setup() (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Interrupt summary bits are h/w version dependent (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add additional ethtool statistics (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add support for VXLAN offload capabilities (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Convert to using the new link mode settings (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add per queue Tx and Rx statistics (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add hardware features debug output (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Optimize DMA channel interrupt enablement (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add additional dynamic debug messages (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add support to handle device renaming (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Update TSO packet statistics accuracy (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Be sure driver shuts down cleanly on module removal (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Set the MII control width for the MAC interface (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Set the MDIO mode for 10000Base-T configuration (David Arcari) [1589397]
-- [netdrv] add missing interrupt.h include (David Arcari) [1589397]
-- [netdrv] amd-xgbe: fix spelling mistake: "avialable" -> "available" (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Adjust register settings to improve performance (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Simplify the burst length settings (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Prepare for more fine grained cache coherency controls (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add NUMA affinity support for IRQ hints (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add NUMA affinity support for memory allocations (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Re-issue interrupt if interrupt status not cleared (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Limit the I2C error messages that are output (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fixes for working with PHYs that support 2.5GbE (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Handle return code from software reset function (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Prevent looping forever if timestamp update fails (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add a check for an skb in the timestamp path (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Use the proper register during PTP initialization (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fix SFP PHY supported/advertised settings (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Simplify mailbox interface rate change code (David Arcari) [1589397]
-- [netdrv] amd-xgbe: use PAGE_ALLOC_COSTLY_ORDER in xgbe_map_rx_buffer (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fix the ECC-related bit position definitions (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fix jumbo MTU processing on newer hardware (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Enable IRQs only if napi_complete_done() is true (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Don't overwrite SFP PHY mod_absent settings (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Be sure to set MDIO modes on device (re)start (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Stop the PHY before releasing interrupts (David Arcari) [1589397]
-- [netdrv] amd-xgbe: use centralized core mtu check (David Arcari) [1589397]
-- [netdrv] use net core MTU range checking in more drivers (David Arcari) [1589397]
-- [netdrv] configs: enable build of amd xgbe network driver (David Arcari) [1589397]
-- [netdrv] intel: Cleanup the copyright/license headers (Corinna Vinschen) [1518106]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Corinna Vinschen) [1518106]
-- [netdrv] igbvf: Use smp_rmb rather than read_barrier_depends (Corinna Vinschen) [1518106]
-- [netdrv] intel: Cleanup the copyright/license headers (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add support for adding offloaded clsflower filters (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add the skeletons for tc-flower offloading (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add MAC address support for ethtool nftuple filters (Corinna Vinschen) [1518105]
-- [netdrv] igb: Enable nfc filters to specify MAC addresses (Corinna Vinschen) [1518105]
-- [netdrv] igb: Allow filters to be added for the local MAC address (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add support for enabling queue steering in filters (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add support for MAC address filters specifying source addresses (Corinna Vinschen) [1518105]
-- [netdrv] igb: Enable the hardware traffic class feature bit for igb models (Corinna Vinschen) [1518105]
-- [netdrv] igb: Fix queue selection on MAC filters on i210 (Corinna Vinschen) [1518105]
-- [netdrv] igb: Fix not adding filter elements to the list (Corinna Vinschen) [1518105]
-- [netdrv] igb: Fix the transmission mode of queue 0 for Qav mode (Corinna Vinschen) [1518105]
-- [netdrv] Use octal not symbolic permissions (Corinna Vinschen) [1518105]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Corinna Vinschen) [1518105]
-- [netdrv] igb: Fix a test with HWTSTAMP_TX_ON (Corinna Vinschen) [1518105]
-- [netdrv] igb: Do not call netif_device_detach() when PCIe link goes missing (Corinna Vinschen) [1518105]
-- [netdrv] igb: Clear TXSTMP when ptp_tx_work() is timeout (Corinna Vinschen) [1518105]
-- [netdrv] igb: Delete an error message for a failed memory allocation in igb_enable_sriov() (Corinna Vinschen) [1518105]
-- [netdrv] igb: Free IRQs when device is hotplugged (Corinna Vinschen) [1518105]
-- [netdrv] igb: Clarify idleslope config constraints (Corinna Vinschen) [1518105]
-- [netdrv] igb: add function to get maximum RSS queues (Corinna Vinschen) [1518105]
-- [netdrv] igb: Allow to remove administratively set MAC on VFs (Corinna Vinschen) [1518105]
-- [netdrv] net_sch: cbs: Change TC_SETUP_CBS to TC_SETUP_QDISC_CBS (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add support for CBS offload (Corinna Vinschen) [1518105]
-- [netdrv] locking/atomics: coccinelle/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE() (Corinna Vinschen) [1518105]
-- [netdrv] intel: Convert timers to use timer_setup() (Corinna Vinschen) [1518105]
-
-* Wed Jun 20 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-908.el7]
-- [pci] Allow release of resources that were never assigned (Rob Clark) [1519691 1515623 1566644]
-- [gpu] drm/nouveau/gr/gf100-: insert some WFIs during gr init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/clk: Use list_for_each_entry_from_reverse (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: fix temp/pwm visibility, skip hwmon when no sensors exist (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: fix nouveau_dsm_get_client_id()'s return type (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: fix mode_valid's return type (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/ce/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/dma/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/therm/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/pmu/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fault/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/bar/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/mmu/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/ltc/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fb/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/imem/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/tmr/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/bus/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/mc/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fuse/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/i2c/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gpio/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/ibus/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/top/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/devinit/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/bios/pll: limits table 5.0 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/bios/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/pci/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/core: recognise gv100 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/core: increase maximum number of copy engines to 9 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: initial overlay support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/gk104-: add support for (XA)2R10G10B10 formats (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/gk104-: support additional cursor sizes (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: separate blocklinear vs linear pitch (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: handle degamma LUT from window channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: plane updates don't always require image_set() (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: store window visibility in state (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: simplify swap interval handling (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: decouple window state changes, and update method submisssion (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: simplify tracking of channel interlocks (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: determine MST support from DP Info Table (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: extend window image data for stereo/planar formats (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: move drm format->hw conversion into common code (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: unify set/clr masks (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: allow specification of valid heads for a window (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: split base implementation by hardware class (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: split core implementation by hardware class (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: split each resource type into their own source files (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50: abstract OR interfaces so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50: handle SetControlOutputResource from head (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: abstract head interfaces so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50: modify core allocation so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: modify base allocation so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: modify cursor allocation so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: modify overlay allocation so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: move fb ctxdma tracking into windows (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: fix i2c-over-aux on anx9805 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: move code underneath dispnv50/ (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms: move display class instantiation to library (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/drm/nv50-: remove allocation of sw class (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: no need to create ctxdma for push buffers on fermi and up (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: remove fence wait code from deferred client work handler (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gem: tie deferred unmapping of buffers to VMA fence completion (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gem: attach fences to VMAs to track GPU usage (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gem: lookup VMAs for buffers referenced by pushbuf ioctl (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gp102-: setup stencil zbc (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gp100-: use correct registers for zbc colour/depth setup (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gp100-: fix attrib cb setup (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gp100-: fix pagepool setup (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-gm10x: update register lists (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: swap bundle and pagepool (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: calculate and use sm mapping table (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: port zcull tile mapping calculations from NVGPU (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: port tile mapping calculations from NVGPU (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise trap_mp (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: add missing reset sequence before golden context init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: delete duplicated grctx init code (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: update r408840 where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: update 419a3c where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r418e94 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r419e00 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: update 419eb0 where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: note missing 418800 modifications (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-gf119: update 419cb8 where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: support firmware-provided bundle/method everywhere (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise tpc_mask + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r419f78 + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise gpc_tpc_nr (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r406500 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise dist_skip_table + improve algorithm (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-gf119: modify max_ways_evict where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise alpha_beta_tables + improve algorithms (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise rop_mapping (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r4060a8 + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise tpc_per_gpc (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise sm_id/tpc_nr (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise patch_ltc, noting missing init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: support firmware-provided sw_ctx everywhere (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: delete duplicated init code (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_400054 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: apply be exception fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_shader_exceptions (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_504430 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_tex_hww_esr (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_ppc_exceptions (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_419c9c + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_419eb4 + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_419cc0 + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_sked_hww_esr (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_40601c (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_ds_hww_esr_2 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_fecs_exceptions + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100: write 0x400124 during init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_swdx_pes_mask (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: implement another chunk of bios-provided init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_rop_active_fbps (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_num_active_ltcs (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_zcull (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_vsc_stream_master (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_bios (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: support clkgate_pack everywhere (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r405a14 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: support firmware-provided sw_nonctx everywhere (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_gpc_mmu + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gp100-: force individual channels into a channel group (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gm107-: write instance address in channel runlist entry (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk208-: write pbdma timeout regs during initialisation (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk110-: support writing channel group runlist entries (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: poll for runlist update completion (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: add interfaces to support different runlist layouts (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: simplify definition of channel classes (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: require explicit runlist selection for channel allocation (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: support querying engines available on each runlist (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: allow fault recovery code to be called by other subdevs (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: accept engine contexts for CE3 and up (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo: support channel count query (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/device: support querying available engines of a specific type (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/device: implement a generic method to query device-specific properties (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: pass nvkm_memory objects for channel push buffers (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: add channel interfaces to control error interrupts (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: add channel interfaces to determine the user area (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: merge handling of pio and dma channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definiton of core channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definition of cursor channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definition of base channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definition of overlay immediate channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definition of overlay channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: replace user object with engine pointer in channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: initialise from the engine, rather than the user object (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: fetch mask of available piors during oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: fetch mask of available sors during oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: fetch mask of available dacs during oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: fetch mask of available heads during oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: delay subunit construction until oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fb/gm200-: fix overwriting of big page setting (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fb/gf100-: bump size of mmu debug buffers to match big page size (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fault/gp100: implement replayable fault buffer initialisation (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fault: add infrastructure to support fault buffers (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/mc/gp100-: route fault buffer interrupts to FAULT (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/core: define FAULT subdev (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/secboot: remove VLA usage (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: nouveau: use larger buffer in nvif_vmm_map (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm: backport from v4.17-rc7 (Rob Clark) [1519691 1515623 1523966 1520590 1515620 1515612 1519677 1519297 1517646]
-- [gpu] debugfs: Add debugfs_create_ulong() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] vfio: Simplify capability helper (Rob Clark) [1519691 1515623 1566644]
-- [gpu] vfio/pci: Intel IGD OpRegion support (Rob Clark) [1519691 1515623 1566644]
-- [gpu] vfio: ABI for mdev display dma-buf operation (Rob Clark) [1519691 1515623 1566644]
-- [gpu] x86/early-quirks: replace the magical increment start values (Rob Clark) [1519691 1515623 1566644]
-- [gpu] x86/early-quirks: export the stolen region as a resource (Rob Clark) [1519691 1515623 1566644]
-- [gpu] x86/early-quirks: Extend Intel graphics stolen memory placement to 64bit (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lib/scatterlist: Introduce and export __sg_alloc_table_from_pages (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lockdep: Introduce lock_acquire_exclusive()/shared() helper macros (Rob Clark) [1519691 1515623 1566644]
-- [gpu] ext4: avoid Y2038 overflow in recently_deleted() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] sched/nohz: Fix overflow error in scheduler_tick_max_deferment() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/task.h> (Rob Clark) [1519691 1515623 1566644]
-- [gpu] ratelimit: extend to print suppressed messages on release (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lib/string.c: add multibyte memset functions (Rob Clark) [1519691 1515623 1566644]
-- [gpu] x86/platform/intel/iosf_mbi: Add unlocked PMIC bus access notifier unregister (Rob Clark) [1519691 1515623 1566644]
-- [gpu] stddef.h: Introduce sizeof_field() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] pci: Add pci_enable_atomic_ops_to_root() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] pci: Add pci_resize_resource() for resizing BARs (Rob Clark) [1519691 1515623 1566644]
-- [gpu] pci: Add resizable BAR infrastructure (Rob Clark) [1519691 1515623 1566644]
-- [gpu] pci: Add PCI resource type mask #define (Rob Clark) [1519691 1515623 1566644]
-- [gpu] math64, timers: Fix 32bit mul_u64_u32_shr() and friends (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lib/scatterlist: Avoid potential scatterlist entry overflow (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lib/scatterlist: Fix offset type in sg_alloc_table_from_pages (Rob Clark) [1519691 1515623 1566644]
-
-* Mon Jun 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-907.el7]
-- [documentation] media: make symlink path relative (Bruno Eduardo de Oliveira Meneguele) [1128571]
-- [netdrv] bnxt_en: Add support for ndo_set_vf_trust (Jonathan Toppins) [1449512]
-- [security] selinux: kasan: slab-out-of-bounds in xattr_getsecurity (Paul Moore) [1584307]
-- [ipc] shm.c: add split function to shm_vm_ops (Desnes Augusto Nunes do Rosario) [1586152]
-- [pci] hv: Make sure the bus domain is really unique (Vitaly Kuznetsov) [1551091]
-- [acpi] pci: pci_link: Allow the absence of _PRS and change log level (Al Stone) [1574308]
-- [acpi] acpica: Recognize the _OSI string "Windows 2017.2" (Jarod Wilson) [1495223]
-- [acpi] acpica: Recognize the Windows 10 version 1607 and 1703 OSI strings (Jarod Wilson) [1495223]
-- [thunderbolt] Handle NULL boot ACL entries properly (Jarod Wilson) [1495223]
-- [thunderbolt] Prevent crash when ICM firmware is not running (Jarod Wilson) [1495223]
-- [pci] Improve "partially hidden behind bridge" log message (Jarod Wilson) [1495223]
-- [pci] Improve pci_scan_bridge() and pci_scan_bridge_extend() doc (Jarod Wilson) [1495223]
-- [pci] Move resource distribution for single bridge outside loop (Jarod Wilson) [1495223]
-- [pci] Account for all bridges on bus when distributing bus numbers (Jarod Wilson) [1495223]
-- [pci] acpi / hotplug / pci: Drop unnecessary parentheses (Jarod Wilson) [1495223]
-- [pci] acpi / hotplug / pci: Mark stale PCI devices disconnected (Jarod Wilson) [1495223]
-- [pci] acpi / hotplug / pci: Don't scan bridges managed by native hotplug (Jarod Wilson) [1495223]
-- [pci] hotplug: Add hotplug_is_native() (Jarod Wilson) [1495223]
-- [pci] shpchp: Add shpchp_is_native() (Jarod Wilson) [1495223]
-- [pci] shpchp: Use dev_printk() for OSHP-related messages (Jarod Wilson) [1495223]
-- [pci] shpchp: Remove get_hp_hw_control_from_firmware() wrapper (Jarod Wilson) [1495223]
-- [pci] shpchp: Remove acpi_get_hp_hw_control_from_firmware() flags (Jarod Wilson) [1495223]
-- [pci] shpchp: Rely on previous _OSC results (Jarod Wilson) [1495223]
-- [pci] shpchp: Request SHPC control via _OSC when adding host bridge (Jarod Wilson) [1495223]
-- [pci] shpchp: Convert SHPC to be builtin only (Jarod Wilson) [1495223]
-- [pci] pciehp: Make pciehp_is_native() stricter (Jarod Wilson) [1495223]
-- [pci] pciehp: Rename host->native_hotplug to host->native_pcie_hotplug (Jarod Wilson) [1495223]
-- [pci] pciehp: Request control of native hotplug only if supported (Jarod Wilson) [1495223]
-- [pci] pciehp: Clear Presence Detect and Data Link Layer Status Changed on resume (Jarod Wilson) [1495223]
-- [pci] portdrv: Rename and reverse sense of pcie_ports_auto (Jarod Wilson) [1495223]
-- [pci] portdrv: Remove unnecessary "pcie_ports=auto" parameter (Jarod Wilson) [1495223]
-- [pci] portdrv: Encapsulate pcie_ports_auto inside the port driver (Jarod Wilson) [1495223]
-- [pci] portdrv: Remove unnecessary include of <linux/pci-aspm.h> (Jarod Wilson) [1495223]
-- [pci] portdrv: Simplify PCIe feature permission checking (Jarod Wilson) [1495223]
-- [pci] portdrv: Disable port driver in compat mode (Jarod Wilson) [1495223]
-- [x86] pci/acpi: Fix regression caused by commit 4d6b4e69a245 (Jarod Wilson) [1495223]
-- [x86] pci/acpi: Use common interface to support PCI host bridge (Jarod Wilson) [1495223]
-- [x86] acpi/pci: Reset acpi_root_dev->domain to 0 when pci_ignore_seg is set (Jarod Wilson) [1495223]
-- [acpi] Add interface acpi_pci_root_create() (Jarod Wilson) [1495223]
-- [acpi] pci: Enhance ACPI core to support sparse IO space (Jarod Wilson) [1495223]
-- [pci] acpi / hotplug / pci: Check presence of slot itself in get_slot_status() (Jarod Wilson) [1495223]
-- [pci] Add wrappers for dev_printk() (Jarod Wilson) [1495223]
-- [tools] perf tests: Use arch__compare_symbol_names to compare symbols (Jiri Olsa) [1441815]
-- [tools] perf evsel: Fix swap for samples with raw data (Jiri Olsa) [1458228]
-- [tools] perf report: Fix regression when decoding intel_pt traces (Jiri Olsa) [1458228]
-- [tools] perf tools: Optimize sample parsing for ordered events (Jiri Olsa) [1458228]
-- [tools] perf ordered_events: Pass timestamp arg in perf_session__queue_event (Jiri Olsa) [1458228]
-- [tools] perf evlist: Add perf_evlist__parse_sample_timestamp function (Jiri Olsa) [1458228]
-- [tools] perf evsel: Centralize perf_sample initialization (Jiri Olsa) [1458228]
-- [kernel] sched/sysctl: Check user input value of sysctl_sched_time_avg (Lauro Ramos Venancio) [1579131]
-- [kernel] sched/deadline: Add documentation about GRUB reclaiming (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Reclaim bandwidth not used by dl tasks (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Base GRUB reclaiming on the inactive utilization (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Track the "total rq utilization" too (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Make GRUB a task's flag (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Do not reclaim the whole CPU bandwidth (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Implement GRUB accounting (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Fix the update of the total -deadline utilization (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Improve the tracking of active utilization (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Track the active utilization (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Remove useless parameter from setup_new_dl_entity() (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/core: Fix remote wakeups (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/fair: Prepare to fix fairness problems on migration (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/core: Kill sched_class::task_waking to clean up the migration logic (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/fair: Prepare to fix fairness problems on migration (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/fair: Move record_wakee() (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/core: Fix task and run queue sched_info::run_delay inconsistencies (Lauro Ramos Venancio) [1425563]
-- [kernel] sched: Teach scheduler to understand TASK_ON_RQ_MIGRATING state (Lauro Ramos Venancio) [1425563]
-- [kernel] sched: Add wrapper for checking task_struct::on_rq (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/debug: Fix SCHED_WARN_ON() to return a value on !CONFIG_SCHED_DEBUG as well (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/debug: Add SCHED_WARN_ON() (Lauro Ramos Venancio) [1425563]
-- [vfio] mdev: Re-order sysfs attribute creation (Alex Williamson) [1578258]
-- [vfio] mdev: Check globally for duplicate devices (Alex Williamson) [1578258]
-- [scsi] balance out autopm get/put calls in scsi_sysfs_add_sdev() (Eda Zhou) [1585794]
-- [scsi] use device_remove_file_self() instead of device_schedule_callback() (Eda Zhou) [1585794]
-- [nvme] allow duplicate controller if prior controller being deleted (Ewan Milne) [1584753]
-- [nvme] nvmet-fc: increase LS buffer count per fc port (Ewan Milne) [1584753]
-- [nvme] nvme-fabrics: remove unnecessary controller subnqn validation (Ewan Milne) [1584753]
-- [nvme] nvme-fc: remove setting DNR on exception conditions (Ewan Milne) [1584753]
-- [nvme] nvmet: switch loopback target state to connecting when resetting (Ewan Milne) [1584753]
-- [nvme] fix potential memory leak in option parsing (Ewan Milne) [1584753]
-- [nvme] expand nvmf_check_if_ready checks (Ewan Milne) [1584753]
-- [mm] compaction: release zone irqlock in isolate_freepages_block (Andrea Arcangeli) [1582793]
-- [mm] compaction: change the timing to check to drop the spinlock (Andrea Arcangeli) [1582793]
-- [fs] proc: do not access cmdline nor environ from file-backed areas (Oleg Nesterov) [1576338] {CVE-2018-1120}
-- [mm] replace access_process_vm() write parameter with gup_flags (Oleg Nesterov) [1576338]
-- [mm] replace access_remote_vm() write parameter with gup_flags (Oleg Nesterov) [1576338]
-- [mm] introduce get_user_pages_remote_flags() for __access_remote_vm() (Oleg Nesterov) [1576338]
-- [mm] replace __access_remote_vm() write parameter with gup_flags (Oleg Nesterov) [1576338]
-- [scsi] libsas: direct call probe and destruct (Tomas Henzl) [1560189] {CVE-2017-18232}
-- [x86] add _TIF_UPROBE to _TIF_DO_NOTIFY_MASK (Oleg Nesterov) [1579521]
-
-* Fri Jun 15 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-906.el7]
-- [infiniband] rdma/bnxt_re: Fix broken RoCE driver due to recent L2 driver changes (Jonathan Toppins) [1526120]
-- [kernel] dim: Support adaptive TX moderation (Jonathan Toppins) [1526120]
-- [kernel] dim: Rename *_get_profile() functions to *_get_rx_moderation() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Fix NULL pointer dereference at bnxt_free_irq() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Need to include RDMA rings in bnxt_check_rings() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Support max-mtu with VF-reps (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Ignore src port field in decap filter nodes (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: do not allow wildcard matches for L2 flows (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Fix ethtool -x crash when device is down (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add ULP calls to stop and restart IRQs (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Reserve completion rings and MSIX for bnxt_re RDMA driver (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Refactor bnxt_need_reserve_rings() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add IRQ remapping logic (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Change IRQ assignment for RDMA driver (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Improve ring allocation logic (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: fix clear flags in ethtool reset handling (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Check max_tx_scheduler_inputs value from firmware (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Update firmware interface to 1.9.1.15 (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Improve resource accounting for SRIOV (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Improve valid bit checking in firmware response message (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Check valid VNIC ID in bnxt_hwrm_vnic_set_tpa() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: close & open NIC, only when the interface is in running state (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Return standard Linux error codes for hwrm flow cmds (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Fix regressions when setting up MQPRIO TX rings (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Pass complete VLAN TCI to the stack (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Remove unwanted ovs-offload messages in some conditions (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Fix vnic accounting in the bnxt_check_rings() path (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Refactor the functions to reserve hardware rings (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: cleanup DIM work on device shutdown (Jonathan Toppins) [1526120]
-- [netdrv] bnxt: use tc_cls_can_offload_and_chain0() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add cache line size setting to optimize performance (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Forward VF MAC address to the PF (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add BCM5745X NPAR device IDs (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Expand bnxt_check_rings() to check all resources (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Implement new method for the PF to assign SRIOV resources (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Reserve resources for RFS (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Implement new method to reserve rings (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Set initial default RX and TX ring numbers the same in combined mode (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add the new firmware API to query hardware resources (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Refactor hardware resource data structures (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Restore MSIX after disabling SRIOV (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Refactor bnxt_close_nic() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Update firmware interface to 1.9.0 (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: don't update cpr->rx_bytes with uninitialized length len (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: add support for software dynamic interrupt moderation (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: setup xdp_rxq_info (Jonathan Toppins) [1526120]
-- [netdrv] broadcom: Use zeroing memory allocator than allocator/memset (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Use NETIF_F_GRO_HW (Jonathan Toppins) [1526120]
-- [netdrv] bnxt: delete some unreachable code (Jonathan Toppins) [1526120]
-- [kernel] dim: Fix fixpoint divide exception in net_dim_stats_compare (Jonathan Toppins) [1526120]
-- [net] Rename NETEVENT_MULTIPATH_HASH_UPDATE (Ivan Vecera) [1585245]
-- [net] ipv4: Send a netevent whenever multipath hash policy is changed (Ivan Vecera) [1585245]
-- [net] sched: fix tc_u_common lookup (Ivan Vecera) [1584592]
-- [net] sched: don't set q pointer for shared blocks (Ivan Vecera) [1584592]
-- [net] sched: silence uninitialized parent variable warning in tc_dump_tfilter (Ivan Vecera) [1584592]
-- [net] sched: allow ingress and clsact qdiscs to share filter blocks (Ivan Vecera) [1584592]
-- [net] sched: introduce ingress/egress block index attributes for qdisc (Ivan Vecera) [1584592]
-- [net] sched: use block index as a handle instead of qdisc when block is shared (Ivan Vecera) [1584592]
-- [net] sched: keep track of offloaded filters and check tc offload feature (Ivan Vecera) [1584592]
-- [net] sched: remove classid and q fields from tcf_proto (Ivan Vecera) [1584592]
-- [net] sched: remove handle propagation down to the drivers (Ivan Vecera) [1584592]
-- [net] sched: introduce block mechanism to handle netif_keep_dst calls (Ivan Vecera) [1584592]
-- [net] sched: avoid usage of tp->q in tcf_classify (Ivan Vecera) [1584592]
-- [net] sched: introduce shared filter blocks infrastructure (Ivan Vecera) [1584592]
-- [net] sched: introduce support for multiple filter chain pointers registration (Ivan Vecera) [1584592]
-- [net] sched: prio: work around gcc-4.4.4 union initializer issues (Ivan Vecera) [1584297]
-- [net] sched: prio: Add offload ability to PRIO qdisc (Ivan Vecera) [1584297]
-- [net] sched: red: avoid hashing NULL child (Ivan Vecera) [1583702]
-- [net] sched: red: don't reset the backlog on every stat dump (Ivan Vecera) [1583702]
-- [net] sched: red: Change the name of the stats struct to be generic (Ivan Vecera) [1583702]
-- [net] sched: red: Avoid illegal values (Ivan Vecera) [1583702]
-- [net] sched: Move offload check till after dump call (Ivan Vecera) [1583702]
-- [net] sched: red: Fix the new offload indication (Ivan Vecera) [1583702]
-- [net] sched: Remove TC_RED_OFFLOADED from uapi (Ivan Vecera) [1583702]
-- [net] sched: Move to new offload indication in RED (Ivan Vecera) [1583702]
-- [net] sched: Add TCA_HW_OFFLOAD (Ivan Vecera) [1583702]
-- [net] sched: red: work around gcc-4.4.4 anon union initializer issue (Ivan Vecera) [1583702]
-- [net] sched: mqprio: Change TC_SETUP_MQPRIO to TC_SETUP_QDISC_MQPRIO (Ivan Vecera) [1583702]
-- [net] sched: red: Add offload ability to RED qdisc (Ivan Vecera) [1583702]
-- [net] ip_tunnel: Rename & publish init_tunnel_flow (Ivan Vecera) [1585256]
-- [net] gre: Add is_gretap_dev, is_ip6gretap_dev (Ivan Vecera) [1585256]
-- [net] bridge: Export bridge multicast router state (Ivan Vecera) [1585206]
-- [net] bridge: Notify on bridge device mrouter state changes (Ivan Vecera) [1585206]
-- [net] vsock: set POLLOUT | POLLWRNORM for TCP_CLOSING (Stefan Hajnoczi) [1534473]
-- [net] xdp: move struct xdp_buff from filter.h to xdp.h (Neil Horman) [1569087]
-- [net] xdp: transition into using xdp_frame for return API (Neil Horman) [1569087]
-- [net] xdp: introduce a new xdp_frame type (Neil Horman) [1569087]
-- [net] xdp: introduce xdp_return_frame API and use in cpumap (Neil Horman) [1569087]
-- [net] xdp: setup xdp_rxq_info and intro xdp_rxq_info_is_reg (Neil Horman) [1569087]
-- [net] xdp: Add batching support to redirect map (Neil Horman) [1569087]
-- [net] xdp: add trace event for xdp redirect (Neil Horman) [1569087]
-- [net] xdp: add bpf_redirect helper function (Neil Horman) [1569087]
-- [net] ipv6: addrconf: don't evaluate keep_addr_on_down twice (Ivan Vecera) [1500871]
-- [net] ipv6: addrconf: increment ifp refcount before ipv6_del_addr() (Ivan Vecera) [1500871]
-- [net] ipv6: Regenerate host route according to node pointer upon interface up (Ivan Vecera) [1500871]
-- [net] ipv6: Do not duplicate DAD on link up (Ivan Vecera) [1500871]
-- [net] ipv6: regenerate host route if moved to gc list (Ivan Vecera) [1500871]
-- [net] ipv6: Fix idev->addr_list corruption (Ivan Vecera) [1500871]
-- [net] ipv6: use list_move instead of list_del/list_add (Ivan Vecera) [1500871]
-- [net] ipv6: Do not keep IPv6 addresses when IPv6 is disabled (Ivan Vecera) [1500871]
-- [net] ipv6: Always leave anycast and multicast groups on link down (Ivan Vecera) [1500871]
-- [net] ipv6: Delete host routes on an ifdown (Ivan Vecera) [1500871]
-- [net] ipv6: Do not keep linklocal and loopback addresses (Ivan Vecera) [1500871]
-- [net] ipv6: Fix refcnt on host routes (Ivan Vecera) [1500871]
-- [net] ipv6/l3mdev: Move host route on saved address if necessary (Ivan Vecera) [1500871]
-- [net] ipv6: Make address flushing on ifdown optional (Ivan Vecera) [1500871]
-- [net] bridge: check brport attr show in brport_show (Xin Long) [1540810]
-
-* Wed Jun 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-905.el7]
-- [misc] vmware balloon: Treat init like reset (Cathy Avery) [1540110]
-- [kernel] pidns: Don't have unshare(CLONE_NEWPID) imply CLONE_THREAD (Oleg Nesterov) [1577745]
-- [md] dm crypt: allow unaligned bv_offset (Mike Snitzer) [1571803]
-- [md] dm crypt: reject sector_size feature if device length is not aligned to it (Mike Snitzer) [1571803]
-- [md] dm crypt: use shifts instead of sector_div (Mike Snitzer) [1571803]
-- [md] dm crypt: optionally support larger encryption sector size (Mike Snitzer) [1571803]
-- [md] dm crypt: factor out crypt_ctr_optional (Mike Snitzer) [1571803]
-- [md] avoid NULL dereference to queue pointer (Ming Lei) [1581845]
-- [scsi] aacraid: Correct hba_send to include iu_type (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Insure command thread is not recursively stopped (Raghava Aditya Renukunta) [1519664]
-- [scsi] treewide: Fix typos in printk (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Auto detect INTx or MSIx mode during sync cmd processing (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Preserve MSIX mode in the OMR register (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Implement DropIO sync command (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: fix shutdown crash when init fails (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Delay for rescan worker needs to be 10 seconds (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Get correct lun count (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: remove redundant setting of variable c (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix driver oops with dead battery (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Update driver version to 50877 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove AAC_HIDE_DISK check in queue command (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove unused rescan variable (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Skip schedule rescan in case of kdump (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix hang while scanning in eh recovery (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Reschedule host scan in case of failure (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Use hotplug handling function in place of scsi_scan_host (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Block concurrent hotplug event handling (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Merge adapter setup with resolve luns (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Refactor resolve luns code and scsi functions (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Added macros to help loop through known buses and targets (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Process hba and container hot plug events in single function (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Merge func to get container information (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add helper function to set queue depth (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Save bmic phy information for each phy (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Create helper functions to get lun info (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Move function around to match existing code (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Untangle targets setup from report phy luns (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add target setup helper function (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Refactor and rename to make mirror existing changes (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Change phy luns function to use common bmic function (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Create bmic submission function from bmic identify (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Move code to wait for IO completion to shutdown func (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Refactor reset_host store function (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Allow reset_host sysfs var to recover Panicked Fw (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix ioctl reset hang (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Do not remove offlined devices (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix hang in kdump (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Do not attempt abort when Fw panicked (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix udev inquiry race condition (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix I/O drop during reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: remove unused variable managed_request_id (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Prevent crash in case of free interrupt during scsi EH path (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Perform initialization reset only once (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Check for PCI state of device in a generic way (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix controller initialization failure (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add a small delay after IOP reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: error: testing array offset 'bus' after use (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix 2T+ drives on SmartIOC-2000 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: report -ENOMEM to upper layer from aac_convert_sgraw2() (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: get rid of one level of indentation (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: fix indentation errors (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix command send race condition (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix out of bounds in aac_get_name_resp (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: complete all commands during bus reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: add fib flag to mark scsi command callback (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: enable sending of TMFs from aac_hba_send() (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: use aac_tmf_callback for reset fib (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: split off device, target, and bus reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: split off host reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: split off functions to generate reset FIB (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: reading out of bounds (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Don't copy uninitialized stack memory to userspace (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: fix leak of data from stack back to userspace (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Update driver version to 50834 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove reference to Series-9 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add reset debugging statements (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Enable ctrl reset for both hba and arc (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Make sure ioctl returns on controller reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Use correct function to get ctrl health (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Rework aac_src_restart (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Rework SOFT reset code (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add periodic checks to see IOP reset status (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Rework IOP reset (Raghava Aditya Renukunta) [1519664]
-- [qscsi] aacraid: Using single reset mask for IOP reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Print ctrl status before eh reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Log count info of scsi cmds before reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Change wait time for fib completion (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove reset support from check_health (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Set correct Queue Depth for HBA1000 RAW disks (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Added 32 and 64 queue depth for arc natives (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix DMAR issues with iommu=pt (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove __GFP_DMA for raw srb memory (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: pci_alloc_consistent() failures on ARM64 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: fix PCI error recovery path (Raghava Aditya Renukunta) [1519664]
-- [mm] thp: fix crash due race in MADV_FREE handling (Rafael Aquini) [1562137]
-- [mm] pmd dirty emulation in page fault handler (Rafael Aquini) [1562137]
-- [mm] fix incorrect unlock error path in madvise_free_huge_pmd (Rafael Aquini) [1562137]
-- [mm] don't split THP page when MADV_FREE syscall is called (Rafael Aquini) [1562137]
-- [mm] ksm: mark stable page dirty (Rafael Aquini) [1562137]
-- [mm] move lazily freed pages to inactive list (Rafael Aquini) [1562137]
-- [mm] rename deactivate_page to deactivate_file_page (Rafael Aquini) [1562137]
-- [mm] page migration fix PageMlocked on migrated pages (Rafael Aquini) [1562137]
-- [mm] madvise: fail with ENOMEM when splitting vma will hit max_map_count (Rafael Aquini) [1562137]
-- [mm] madvise: free swp_entry in madvise_free (Rafael Aquini) [1562137]
-- [mm] madvise: fix freeing of locked page with MADV_FREE (Rafael Aquini) [1562137]
-- [mm] madvise: support madvise(MADV_FREE) (Rafael Aquini) [1562137]
-- [mm] move max_map_count bits into mm.h (Rafael Aquini) [1562137]
-- [mm] pagewalk: fix the comment for test_walk (Rafael Aquini) [1562137]
-- [mm] pagewalk: prevent positive return value of walk_page_test() from being passed to callers (Rafael Aquini) [1562137]
-- [mm] pagewalk: fix misbehavior of walk_page_range for vma(VM_PFNMAP) (Rafael Aquini) [1562137]
-- [mm] pagewalk: add walk_page_vma() (Rafael Aquini) [1562137]
-- [mm] pagewalk: improve vma handling (Rafael Aquini) [1562137]
-- [mm] pagewalk: call pte_hole() for VM_PFNMAP during walk_page_range (Rafael Aquini) [1562137]
-- [mm] rmap: use rmap_walk() in page_mkclean() (Rafael Aquini) [1562137]
-- [mm] rmap: use rmap_walk() in page_referenced() (Rafael Aquini) [1562137]
-- [mm] rmap: use rmap_walk() in try_to_munlock() (Rafael Aquini) [1562137]
-- [mm] rmap: use rmap_walk() in try_to_unmap() (Rafael Aquini) [1562137]
-- [mm] rmap: extend rmap_walk_xxx() to cope with different cases (Rafael Aquini) [1562137]
-- [mm] rmap: make rmap_walk to get the rmap_walk_control argument (Rafael Aquini) [1562137]
-- [mm] rmap: factor lock function out of rmap_walk_anon() (Rafael Aquini) [1562137]
-- [mm] rmap: factor nonlinear handling out of try_to_unmap_file() (Rafael Aquini) [1562137]
-- [x86] pti: Fix kexec warning on debug kernel (Waiman Long) [1539424]
-- [x86] spec_ctrl: Fix late microcode problem with AMD (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: Clean up entry code & remove unused APIs (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: Mask off SPEC_CTRL MSR bits that are managed by kernel (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: add support for SSBD to RHEL IBRS entry/exit macros (Waiman Long) [1566905] {CVE-2018-3639}
-- [fs] proc: Use underscores for SSBD in 'status' (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] bugs: Rename _RDS to _SSBD (Waiman Long) [1566905] {CVE-2018-3639}
-- [kernel] seccomp: Enable speculation flaw mitigations (Waiman Long) [1566905] {CVE-2018-3639}
-- [fs] proc: Provide details on speculation flaw mitigations (Waiman Long) [1566905] {CVE-2018-3639}
-- [kernel] nospec: Allow getting/setting on non-current task (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] speculation: Add prctl for Speculative Store Bypass mitigation (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] process: Allow runtime control of Speculative Store Bypass (Waiman Long) [1566905] {CVE-2018-3639}
-- [kernel] prctl: Add speculation control prctls (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] kvm/vmx: Expose SPEC_CTRL Bit(2) to the guest (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] bugs/amd: Add support to disable RDS on Fam(15, 16, 17)h if requested (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: Sync up RDS setting with IBRS code (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] bugs: Provide boot parameters for the spec_store_bypass_disable mitigation (Waiman Long) [1566905] {CVE-2018-3639}
-- [base] x86/bugs: Expose /sys/../spec_store_bypass (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] bugs: Read SPEC_CTRL MSR during boot and re-use (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: Use separate PCP variables for IBRS entry and exit (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] cpufeatures: Make CPU bugs sticky (Waiman Long) [1566905] {CVE-2018-3639}
-- [s390] scsi: zfcp: add port speed capabilities (Hendrik Brueckner) [1519355]
-
-* Wed Jun 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-904.el7]
-- [mmc] block: blk-mq: Potential NULL deref on mmc_blk_alloc_req() failure (Gopal Tiwari) [1456570]
-- [mmc] cqhci: Ensure macro parameters are wrapped in parentheses (Gopal Tiwari) [1456570]
-- [mmc] core: Remove code no longer needed after the switch to blk-mq (Gopal Tiwari) [1456570]
-- [mmc] block: Remove code no longer needed after the switch to blk-mq (Gopal Tiwari) [1456570]
-- [mmc] core: Remove option not to use blk-mq (Gopal Tiwari) [1456570]
-- [mmc] mmc_test: Ensure command queue is disabled for testing (Gopal Tiwari) [1456570]
-- [mmc] core: Ensure cmd_completion is initialized (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Add support for ACPI HID of AMD Controller with HS400 (Gopal Tiwari) [1456570]
-- [mmc] mmc_test: use ktime_get_ts64 for timestamps (Gopal Tiwari) [1456570]
-- [mmc] block: make function mmc_cqe_issue_type static (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: fix boolreturn.cocci warnings (Gopal Tiwari) [1456570]
-- [mmc] mmc_test: Do not use mmc_start_areq() anymore (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: Stop using legacy recovery (Gopal Tiwari) [1456570]
-- [mmc] block: Reduce polling timeout from 10 minutes to 10 seconds (Gopal Tiwari) [1456570]
-- [mmc] block: Add timeout_clks when calculating timeout (Gopal Tiwari) [1456570]
-- [mmc] block: Check for transfer state in card_busy_detect() (Gopal Tiwari) [1456570]
-- [mmc] block: Check the timeout correctly in card_busy_detect() (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: Check error bits and save the exception bit when polling card busy (Gopal Tiwari) [1456570]
-- [mmc] block: Make card_busy_detect() accumulate all response error bits (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: Separate card polling from recovery (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: Add support for direct completion (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Add CQHCI support for Intel GLK (Gopal Tiwari) [1456570]
-- [mmc] cqhci: support for command queue enabled host (Gopal Tiwari) [1456570]
-- [mmc] block: Add CQE support (Gopal Tiwari) [1456570]
-- [mmc] block: Add blk-mq support (Gopal Tiwari) [1456570]
-- [mmc] core: Add parameter use_blk_mq (Gopal Tiwari) [1456570]
-- [mmc] block: Add error-handling comments (Gopal Tiwari) [1456570]
-- [mmc] core: Make mmc_pre_req() and mmc_post_req() available (Gopal Tiwari) [1456570]
-- [mmc] block: Simplify cleaning up the queue (Gopal Tiwari) [1456570]
-- [mmc] block: No need to export mmc_cleanup_queue() (Gopal Tiwari) [1456570]
-- [mmc] core: use usleep_range rather than HZ magic in mmc_delay() (Gopal Tiwari) [1456570]
-- [mmc] slot-gpio: call gpiod_to_irq() only when MMC_CAP_NEEDS_POLL is unset (Gopal Tiwari) [1456570]
-- [mmc] core: properly init drv_type (Gopal Tiwari) [1456570]
-- [mmc] core: prepend 0x to OCR entry in sysfs (Gopal Tiwari) [1456570]
-- [mmc] core: prepend 0x to pre_eol_info entry in sysfs (Gopal Tiwari) [1456570]
-- [mmc] block: Ensure that debugfs files are removed (Gopal Tiwari) [1456570]
-- [mmc] core: Do not leave the block driver in a suspended state (Gopal Tiwari) [1456570]
-- [mmc] block: Check return value of blk_get_request() (Gopal Tiwari) [1456570]
-- [mmc] block: Fix missing blk_put_request() (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Let devices define their own private data (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Tidy Intel slot probe functions into one (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Use helper function acpi_device_uid() (Gopal Tiwari) [1456570]
-- [mmc] sdhci: catch all errors when getting regulators (Gopal Tiwari) [1456570]
-- [mmc] core: export emmc revision (Gopal Tiwari) [1456570]
-- [mmc] kconfig: Enable CONFIG_MMC_SDHCI_IO_ACCESSORS (Gopal Tiwari) [1456570]
-- [mmc] sd: Fix signal voltage when there is no power cycle (Gopal Tiwari) [1456570]
-- [mmc] core: Factor out mmc_host_set_uhs_voltage() (Gopal Tiwari) [1456570]
-- [mmc] core: Export a few functions needed for blkmq support (Gopal Tiwari) [1456570]
-- [mmc] block: Factor out mmc_setup_queue() (Gopal Tiwari) [1456570]
-- [mmc] arm: 7805/1: mm: change max*pfn (Gopal Tiwari) [1456570]
-- [mmc] arm: 7797/1: mmc: Use dma_max_pfn(dev) (Gopal Tiwari) [1456570]
-- [mmc] block: Prepare CQE data (Gopal Tiwari) [1456570]
-- [mmc] block: Use local variables in mmc_blk_data_prep() (Gopal Tiwari) [1456570]
-- [mmc] mmc: Enable CQE's (Gopal Tiwari) [1456570]
-- [mmc] mmc: Enable Command Queuing (Gopal Tiwari) [1456570]
-- [mmc] core: Add support for handling CQE requests (Gopal Tiwari) [1456570]
-- [mmc] core: Introduce host claiming by context (Gopal Tiwari) [1456570]
-- [mmc] core: Remove unnecessary host claim (Gopal Tiwari) [1456570]
-- [mmc] block: Fix bug when removing RPMB chardev (Gopal Tiwari) [1456570]
-- [mmc] block: Delete mmc_access_rpmb() (Gopal Tiwari) [1456570]
-- [mmc] block: Convert RPMB to a character device (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Add support for Intel CDF (Gopal Tiwari) [1456570]
-- [mmc] Delete bounce buffer handling (Gopal Tiwari) [1456570]
-- [mmc] core: add driver strength selection when selecting hs400es (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Fix voltage switch for some Intel host controllers (Gopal Tiwari) [1456570]
-- [mmc] host: fix typo after MMC_DEBUG move (Gopal Tiwari) [1456570]
-- [mmc] block: Fix incorrectly initialized requests (Gopal Tiwari) [1456570]
-- [mmc] block: cast a informative log for no devidx available (Gopal Tiwari) [1456570]
-- [mmc] sdhci: Add quirk to indicate MMC_RSP_136 has CRC (Gopal Tiwari) [1456570]
-- [mmc] sdhci: Tidy reading 136-bit responses (Gopal Tiwari) [1456570]
-- [mmc] block: Reparametrize mmc_blk_ioctl_(multi)_cmd() (Gopal Tiwari) [1456570]
-- [mmc] block: Refactor mmc_blk_part_switch() (Gopal Tiwari) [1456570]
-- [mmc] block: Move duplicate check (Gopal Tiwari) [1456570]
-- [mmc] debugfs: Move block debugfs into block module (Gopal Tiwari) [1456570]
-- [mmc] ops: export mmc_get_status() (Gopal Tiwari) [1456570]
-- [mmc] block: Anonymize the drv op data pointer (Gopal Tiwari) [1456570]
-- [mmc] test: reduce stack usage in mmc_test_nonblock_transfer (Gopal Tiwari) [1456570]
-- [mmc] sdhci: fix SDHCI_QUIRK_NO_HISPD_BIT handling (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: use generic sdhci_set_bus_width() (Gopal Tiwari) [1456570]
-- [mmc] sdhci: key 8BITBUS bit off MMC_CAP_8_BIT_DATA (Gopal Tiwari) [1456570]
-- [mmc] core: Turn off CQE before sending commands (Gopal Tiwari) [1456570]
-- [mmc] host: Add CQE interface (Gopal Tiwari) [1456570]
-- [mmc] core: Add members to (Gopal Tiwari) [1456570]
-- [mmc] core: Add mmc_retune_hold_now() (Gopal Tiwari) [1456570]
-- [mmc] core: Remove unused MMC_CAP2_PACKED_CMD (Gopal Tiwari) [1456570]
-- [mmc] sdhci: add sdma_boundary member to struct sdhci_host (Gopal Tiwari) [1456570]
-- [mmc] sdhci: constify sdhci_pltfm_data structures (Gopal Tiwari) [1456570]
-- [mmc] core: remove the check of mmc_card_blockaddr for SD cards (Gopal Tiwari) [1456570]
-- [mmc] sdhci: ignore restoring the I/O state if MMC_POWER_OFF (Gopal Tiwari) [1456570]
-- [mmc] core: correct taac parameter according to the specification (Gopal Tiwari) [1456570]
-- [mmc] vub300: constify mmc_host_ops structures (Gopal Tiwari) [1456570]
-- [mmc] sdhci: pci: Fix up power if device has ACPI companion (Gopal Tiwari) [1456570]
-- [mmc] sdhci: acpi: Use new method to get ACPI companion (Gopal Tiwari) [1456570]
-- [mmc] Convert to using pOF instead of full_name (Gopal Tiwari) [1456570]
-- [mmc] Remove HIGHMEM dependency from mmc-spi driver (Gopal Tiwari) [1456570]
-- [mmc] host: via-sdmmc: constify pci_device_id (Gopal Tiwari) [1456570]
-- [mmc] sdhci: remove CONFIG_MMC_DEBUG from the driver (Gopal Tiwari) [1456570]
-- [mmc] kconfig: downgrade CONFIG_MMC_DEBUG for host drivers only (Gopal Tiwari) [1456570]
-- [mmc] core: turn the pr_info under CONFIG_MMC_DEBUG into pr_debug (Gopal Tiwari) [1456570]
-- [mmc] core: always check the length of sglist with total data size (Gopal Tiwari) [1456570]
-- [mmc] core: remove check of host->removed for rescan routine (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: remove unused struct sdhci_host variable (Gopal Tiwari) [1456570]
-- [mmc] block: remove unused struct mmc_card *card (Gopal Tiwari) [1456570]
-- [mmc] block: prevent propagating R1_OUT_OF_RANGE for open-ending mode (Gopal Tiwari) [1456570]
-- [mmc] block: fix lockdep splat when removing mmc_block module (Gopal Tiwari) [1456570]
-- [mmc] mmc: correct the logic for setting HS400ES signal voltage (Gopal Tiwari) [1456570]
-- [mmc] block: bypass the queue even if usage is present for hotplug (Gopal Tiwari) [1456570]
-- [mmc] block: Prevent new req entering queue after its cleanup (Gopal Tiwari) [1456570]
-- [mmc] block: Let MMC_IOC_MULTI_CMD return zero again for zero entries (Gopal Tiwari) [1456570]
-- [mmc] block: Initialize ret in mmc_blk_issue_drv_op() for MMC_DRV_OP_IOCTL (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Workaround conflict with PCI wifi on GPD Win handheld (Gopal Tiwari) [1456570]
-- [mmc] block: remove a call to blk_queue_bounce_limit (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Enable card detect wake for Intel BYT-related SD controllers (Gopal Tiwari) [1456570]
-- [mmc] slot-gpio: Add support to enable irq wake on cd_irq (Gopal Tiwari) [1456570]
-- [mmc] core: Remove MMC_CAP2_HC_ERASE_SZ (Gopal Tiwari) [1456570]
-- [mmc] core: for data errors, take response of stop cmd into account (Gopal Tiwari) [1456570]
-- [mmc] core: check also R1 response for stop commands (Gopal Tiwari) [1456570]
-- [mmc] core: Clarify code for sending CSD (Gopal Tiwari) [1456570]
-- [mmc] core: Drop mmc_all_send_cid() and use mmc_send_cxd_native() instead (Gopal Tiwari) [1456570]
-- [mmc] core: Re-factor code for sending CID (Gopal Tiwari) [1456570]
-- [mmc] core: Remove redundant code in mmc_send_cid() (Gopal Tiwari) [1456570]
-- [mmc] core: Make mmc_can_reset() static (Gopal Tiwari) [1456570]
-- [mmc] core: Move mmc_flush_cache() from core.c to mmc_ops.c (Gopal Tiwari) [1456570]
-- [mmc] core: Move mmc_interrupt_hpi() from core.c to mmc_ops.c (Gopal Tiwari) [1456570]
-- [mmc] core: Move mmc bkops functions from core.c to mmc_ops.c (Gopal Tiwari) [1456570]
-- [mmc] core: Don't export some eMMC specific functions from core.c (Gopal Tiwari) [1456570]
-- [mmc] sdio: Keep card runtime resumed while adding function devices (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Remove unneeded acpi_bus_get_status() call (Gopal Tiwari) [1456570]
-- [mmc] block: Use __mmc_send_status() and drop get_card_status() (Gopal Tiwari) [1456570]
-- [mmc] block: Move boot partition locking into a driver op (Gopal Tiwari) [1456570]
-- [mmc] block: Move DRV OP issue function (Gopal Tiwari) [1456570]
-- [mmc] block: Tag DRV_OPs with a driver operation type (Gopal Tiwari) [1456570]
-- [mmc] block: remove req back pointer (Gopal Tiwari) [1456570]
-- [mmc] core: Delete error messages for failed memory allocations (Gopal Tiwari) [1456570]
-- [mmc] block: move multi-ioctl() to use block layer (Gopal Tiwari) [1456570]
-- [mmc] block: move single ioctl() commands to block requests (Gopal Tiwari) [1456570]
-- [mmc] block: Tag is_rpmb as bool (Gopal Tiwari) [1456570]
-- [mmc] core: Allocate per-request data using the block layer core (Gopal Tiwari) [1456570]
-- [mmc] core: Delete bounce buffer Kconfig option (Gopal Tiwari) [1456570]
-- [mmc] sdio: Add API to manage SDIO IRQs from a workqueue (Gopal Tiwari) [1456570]
-- [mmc] core: Prevent processing SDIO IRQs when none is claimed (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Use ACPI DSM to get driver strength for some Intel devices (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Don't re-tune with runtime pm for some Intel devices (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Let devices define their own private data (Gopal Tiwari) [1456570]
-- [kernel] blk-mq: update ->init_request and ->exit_request prototypes (Gopal Tiwari) [1456570]
-- [mmc] block: allow specifying (Gopal Tiwari) [1456570]
-- [mmc] acpi: bus: add stub (Gopal Tiwari) [1456570]
-- [mmc] block: allocate request (Gopal Tiwari) [1456570]
-- [lib] sd, mmc, virtio_blk, string_helpers: fix block size units (Gopal Tiwari) [1456570]
-- [mmc] blk-mq: make mq_ops a const pointer (Gopal Tiwari) [1456570]
-- [mmc] asm-generic: io: implement (Gopal Tiwari) [1456570]
-
-* Tue Jun 12 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-903.el7]
-- [crypto] salsa20: fix blkcipher_walk API usage (Bruno Eduardo de Oliveira Meneguele) [1543981] {CVE-2017-17805}
-- [crypto] algif_skcipher: Load TX SG list after waiting (Bruno Eduardo de Oliveira Meneguele) [1541875] {CVE-2017-13215}
-- [crypto] api - Keep failed instances alive (Herbert Xu) [1466244]
-- [crypto] add missing crypto module aliases (Herbert Xu) [1357080]
-- [crypto] rsa: Add Makefile dependencies to fix parallel builds (Herbert Xu) [1542374]
-- [crypto] cryptd: Add helpers to check whether a tfm is queued (Herbert Xu) [1579195]
-- [crypto] cryptd: Fix AEAD request context corruption (Herbert Xu) [1579195]
-- [security] let security modules use PTRACE_MODE_* with bitmasks (Joe Lawrence) [1574784]
-- [edac] sb_edac: Dont create a second memory controller if HA1 is not present (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Classify memory mirroring modes (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Avoid creating SOCK memory controller (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Bump driver version and do some cleanups (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Check if ECC enabled when at least one DIMM is present (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Drop NUM_CHANNELS from 8 back to 4 (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Carve out dimm-populating loop (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Fix mod_name (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Assign EDAC memory controller per h/w controller (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Dont use "Socket#" in the memory controller name (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Classify PCI-IDs by topology (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Get rid of ->show_interleave_mode() (Aristeu Rozanski) [1483004 1483026]
-- [edac] i7core, sb_edac: Dont return NOTIFY_BAD from mce_decoder callback (Aristeu Rozanski) [1483004 1483026]
-- [hid] input: Fix accessing freed memory during device disconnect (Aristeu Rozanski) [1576936]
-- [hid] input: Fix NULL pointer dereference when power_supply_register fails (Aristeu Rozanski) [1576936]
-- [scsi] sr: get/drop reference to device in revalidate and check_events (Ming Lei) [1583908]
-- [md] submit splitted bio via generic_make_request (Ming Lei) [1567865]
-- [md] Don't split write discard/same/erase bio in md linear/faulty/multipath (Ming Lei) [1567865]
-- [iommu] amd: Take into account that alloc_dev_data() may return NULL (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Fix scatterlist offset handling (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Clear Page Request Overflow fault bit (Jerry Snitselaar) [1483811]
-- [iommu] vt-d: Don't register bus-notifier under dmar_global_lock (Jerry Snitselaar) [1583770]
-- [iommu] amd: Finish TLB flush in amd_iommu_unmap() (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Prevent VMD child devices from being remapping targets (Jerry Snitselaar) [1583770]
-- [iommu] Make iommu_bus_notifier return NOTIFY_DONE rather than error code (Jerry Snitselaar) [1583770]
-- [iommu] amd: Fix incorrect error handling in amd_iommu_bind_pasid() (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Flush the IOTLB to get rid of the initial kdump mappings (Jerry Snitselaar) [1583770]
-- [iommu] iommu/amd: Clean up iommu_pc_get_set_reg() (Jerry Snitselaar) [1583770]
-- [iommu] amd: Fix error code path in early_amd_iommu_init() (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Fix NULL pointer dereference in device_to_iommu (Jerry Snitselaar) [1583770]
-- [mm] move_ptes: check pte dirty after its removal (Christoph von Recklinghausen) [1490234]
-- [mm] mremap: fix race between mremap() and page cleanning (Christoph von Recklinghausen) [1490234]
-- [mm] slab_common: fix the check for duplicate slab names (Alaa Hleihel) [1533918]
-- [mm] slab_common: Do not check for duplicate slab names (Alaa Hleihel) [1533918]
-- [x86] microcode: Make the late update update_lock a raw lock for RT (Scott Wood) [1581193]
-- [powerpc] signals: Discard transaction state from signal frames (Steve Best) [1586153]
-- [powerpc] kdump: Fix powernv build break when KEXEC_CORE=n (Desnes Augusto Nunes do Rosario) [1559434]
-- [powerpc] powernv/kdump: Fix cases where the kdump kernel can get HMI's (Desnes Augusto Nunes do Rosario) [1559434]
-- [powerpc] pseries: enable CPU hotplug interrupt source and sysfs (Laurent Vivier) [1532968]
-- [powerpc] pseries: Enable kernel CPU dlpar from sysfs (Laurent Vivier) [1532968]
-- [powerpc] pseries: Add CPU dlpar add functionality (Laurent Vivier) [1532968]
-- [powerpc] pseries: Add CPU dlpar remove functionality (Laurent Vivier) [1532968]
-- [powerpc] pseries: Update CPU hotplug error recovery (Laurent Vivier) [1532968]
-- [powerpc] pseries: Factor out common cpu hotplug code (Laurent Vivier) [1532968]
-- [i2c] i2c-core: Fix compilation on s390x (Thomas Huth) [1570090]
-- [s390] cmpxchg: use compiler builtins (Thomas Huth) [1570090]
-- [s390] 32bit: fix cmpxchg64 (Thomas Huth) [1570090]
-- [kernel] vgacon: dummy implementation for vgacon_text_force (Thomas Huth) [1570090]
-- [s390] setup: enable display support for KVM guest (Thomas Huth) [1570090]
-- [s390] char: Rename EBCDIC keymap variables (Thomas Huth) [1570090]
-- [video] kconfig: Remove HAS_IOMEM dependency for Graphics support (Thomas Huth) [1570090]
-- [video] console: Disable VGA text console support on cris (Thomas Huth) [1570090]
-- [s390] pci: handle insufficient resources during dma tlb flush (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: make lazy flush independent from the tlb_refresh bit (Hendrik Brueckner) [1539025]
-- [s390] pci: fix dma address calculation in map_sg (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: improve lazy flush for unmap (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: split dma_update_trans (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: improve map_sg (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: simplify dma address calculation (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: remove dma address range check (Hendrik Brueckner) [1539025]
-- [s390] use expoline thunks in the BPF JIT (Hendrik Brueckner) [1583564]
-- [s390] remove indirect branch from do_softirq_own_stack (Hendrik Brueckner) [1583564]
-- [s390] move spectre sysfs attribute code (Hendrik Brueckner) [1583564]
-- [s390] kernel: use expoline for indirect branches (Hendrik Brueckner) [1583564]
-- [s390] ftrace: use expoline for indirect branches (Hendrik Brueckner) [1583564]
-- [s390] lib: use expoline for indirect branches (Hendrik Brueckner) [1583564]
-- [s390] move expoline assembler macros to a header (Hendrik Brueckner) [1583564]
-- [s390] correct module section names for expoline code revert (Hendrik Brueckner) [1583564]
-- [s390] add assembler macros for CPU alternatives (Hendrik Brueckner) [1583564]
-- [s390] ftrace: optimize mcount code (Hendrik Brueckner) [1583564]
-
-* Fri Jun 08 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-902.el7]
-- [fs] svcrpc: don't leak contexts on PROC_DESTROY (Dave Wysochanski) [1487722]
-- [fs] ceph: don't set read_ahead_kb to 0 by default (Ilya Dryomov) [1579539]
-- [fs] ext4: protect i_disksize update by i_data_sem in direct write path (Lukas Czerner) [1571735]
-- [fs] ext4: update i_disksize if direct write past ondisk size (Lukas Czerner) [1554212]
-- [fs] xfs: Correctly invert xfs_buftarg LRU isolation logic (Brian Foster) [1548378]
-- [fs] ceph: fix rsize/wsize capping in ceph_direct_read_write() (Ilya Dryomov) [1580500]
-- [fs] ceph: check if mds create snaprealm when setting quota (Ilya Dryomov) [1580500]
-- [fs] rbd: notrim map option (Ilya Dryomov) [1580500]
-- [fs] ceph: always update atime/mtime/ctime for new inode (Ilya Dryomov) [1580500]
-- [fs] rbd: support timeout in rbd_wait_state_locked() (Ilya Dryomov) [1580500]
-- [fs] rbd: refactor rbd_wait_state_locked() (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: report root dir quota usage in statfs (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: add counter for snaprealms with quota (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: cache inode pointer in ceph_snap_realm (Ilya Dryomov) [1580500]
-- [fs] ceph: fix root quota realm check (Ilya Dryomov) [1580500]
-- [fs] ceph: don't check quota for snap inode (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: update MDS when max_bytes is approaching (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: support for ceph.quota.max_bytes (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: don't allow cross-quota renames (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: support for ceph.quota.max_files (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: add initial infrastructure to support cephfs quotas (Ilya Dryomov) [1580500]
-- [fs] rbd: remove VLA usage (Ilya Dryomov) [1580500]
-- [fs] rbd: fix spelling mistake: "reregisteration" -> "reregistration" (Ilya Dryomov) [1580500]
-- [fs] ceph: rename function drop_leases() to a more descriptive name (Ilya Dryomov) [1580500]
-- [fs] ceph: fix invalid point dereference for error case in mdsc destroy (Ilya Dryomov) [1580500]
-- [fs] ceph: return proper bool type to caller instead of pointer (Ilya Dryomov) [1580500]
-- [fs] ceph: optimize memory usage (Ilya Dryomov) [1580500]
-- [fs] ceph: optimize mds session register (Ilya Dryomov) [1580500]
-- [fs] libceph, ceph: add __init attribution to init funcitons (Ilya Dryomov) [1580500]
-- [fs] ceph: filter out used flags when printing unused open flags (Ilya Dryomov) [1580500]
-- [fs] ceph: don't wait on writeback when there is no more dirty pages (Ilya Dryomov) [1580500]
-- [fs] ceph: invalidate pages that beyond EOF in ceph_writepages_start() (Ilya Dryomov) [1580500]
-- [fs] ceph: mark the cap cache as unreclaimable (Ilya Dryomov) [1580500]
-- [fs] ceph: change variable name to follow common rule (Ilya Dryomov) [1580500]
-- [fs] ceph: optimizing cap reservation (Ilya Dryomov) [1580500]
-- [fs] ceph: release unreserved caps if having enough available caps (Ilya Dryomov) [1580500]
-- [fs] ceph: optimizing cap allocation (Ilya Dryomov) [1580500]
-- [fs] ceph: adding protection for showing cap reservation info (Ilya Dryomov) [1580500]
-- [fs] libceph: adding missing message types to ceph_msg_type_name() (Ilya Dryomov) [1580500]
-- [fs] rbd: get the latest osdmap when using an existing client (Ilya Dryomov) [1580500]
-- [fs] rbd: move rbd_get_client() below rbd_put_client() (Ilya Dryomov) [1580500]
-- [fs] rbd: remove redundant declaration of rbd_spec_put() (Ilya Dryomov) [1580500]
-- [fs] libceph: fix misjudgement of maximum monitor number (Ilya Dryomov) [1580500]
-- [fs] libceph, ceph: change permission for readonly debugfs entries (Ilya Dryomov) [1580500]
-- [fs] ceph: add newline to end of debug message format (Ilya Dryomov) [1580500]
-- [fs] libceph, ceph: change ceph_calc_file_object_mapping() signature (Ilya Dryomov) [1580500]
-- [fs] libceph: eliminate overflows in ceph_calc_file_object_mapping() (Ilya Dryomov) [1580500]
-- [fs] libceph: define new ceph_file_layout structure (Ilya Dryomov) [1580500]
-- [fs] rbd: set max_segment_size to UINT_MAX (Ilya Dryomov) [1580500]
-- [fs] ceph: fix dentry leak when failing to init debugfs (Ilya Dryomov) [1580500]
-- [fs] libceph, ceph: avoid memory leak when specifying same option several times (Ilya Dryomov) [1580500]
-- [fs] ceph: flush dirty caps of unlinked inode ASAP (Ilya Dryomov) [1580500]
-- [fs] ceph: improving efficiency of syncfs (Ilya Dryomov) [1580500]
-- [fs] libceph: check kstrndup() return value (Ilya Dryomov) [1580500]
-- [fs] ceph: try to allocate enough memory for reserved caps (Ilya Dryomov) [1580500]
-- [fs] ceph: fix race of queuing delayed caps (Ilya Dryomov) [1580500]
-- [fs] ceph: delete unreachable code in ceph_check_caps() (Ilya Dryomov) [1580500]
-- [fs] ceph: limit rate of cap import/export error messages (Ilya Dryomov) [1580500]
-- [fs] ceph: fix incorrect snaprealm when adding caps (Ilya Dryomov) [1580500]
-- [fs] ceph: fix un-balanced fsc->writeback_count update (Ilya Dryomov) [1580500]
-- [fs] ceph: track read contexts in ceph_file_info (Ilya Dryomov) [1580500]
-- [fs] ceph: avoid dereferencing invalid pointer during cached readdir (Ilya Dryomov) [1580500]
-- [fs] ceph: use atomic_t for ceph_inode_info::i_shared_gen (Ilya Dryomov) [1580500]
-- [fs] ceph: cleanup traceless reply handling for rename (Ilya Dryomov) [1580500]
-- [fs] ceph: voluntarily drop Fx cap for readdir request (Ilya Dryomov) [1580500]
-- [fs] ceph: properly drop caps for setattr request (Ilya Dryomov) [1580500]
-- [fs] ceph: voluntarily drop Lx cap for link/rename requests (Ilya Dryomov) [1580500]
-- [fs] ceph: voluntarily drop Ax cap for requests that create new inode (Ilya Dryomov) [1580500]
-- [fs] rbd: whitelist RBD_FEATURE_OPERATIONS feature bit (Ilya Dryomov) [1580500]
-- [fs] rbd: don't NULL out ->obj_request in rbd_img_obj_parent_read_full() (Ilya Dryomov) [1580500]
-- [fs] rbd: use kmem_cache_zalloc() in rbd_img_request_create() (Ilya Dryomov) [1580500]
-- [fs] rbd: obj_request->completion is unused (Ilya Dryomov) [1580500]
-- [fs] rbd: set max_segments to USHRT_MAX (Ilya Dryomov) [1580500]
-- [fs] rbd: reacquire lock should update lock owner client id (Ilya Dryomov) [1580500]
-- [fs] ceph: drop negative child dentries before try pruning inode's alias (Ilya Dryomov) [1580500]
-- [fs] rbd: default to single-major device number scheme (Ilya Dryomov) [1580500]
-- [fs] libceph: don't WARN() if user tries to add invalid key (Ilya Dryomov) [1580500]
-- [fs] rbd: set discard_alignment to zero (Ilya Dryomov) [1580500]
-- [fs] ceph: silence sparse endianness warning in encode_caps_cb (Ilya Dryomov) [1580500]
-- [fs] ceph: remove the bump of i_version (Ilya Dryomov) [1580500]
-- [fs] ceph: present consistent fsid, regardless of arch endianness (Ilya Dryomov) [1580500]
-- [fs] ceph: clean up spinlocking and list handling around cleanup_cap_releases() (Ilya Dryomov) [1580500]
-- [fs] rbd: get rid of rbd_mapping::read_only (Ilya Dryomov) [1580500]
-- [fs] rbd: fix and simplify rbd_ioctl_set_ro() (Ilya Dryomov) [1580500]
-- [fs] ceph: remove unused and redundant variable dropping (Ilya Dryomov) [1580500]
-- [fs] ceph: mark expected switch fall-throughs (Ilya Dryomov) [1580500]
-- [fs] ceph: -EINVAL on decoding failure in ceph_mdsc_handle_fsmap() (Ilya Dryomov) [1580500]
-- [fs] ceph: disable cached readdir after dropping positive dentry (Ilya Dryomov) [1580500]
-- [fs] ceph: fix bool initialization/comparison (Ilya Dryomov) [1580500]
-- [fs] ceph: handle 'session get evicted while there are file locks' (Ilya Dryomov) [1580500]
-- [fs] ceph: optimize flock encoding during reconnect (Ilya Dryomov) [1580500]
-- [fs] ceph: move spinlocking into ceph_encode_locks_to_buffer and ceph_count_locks (Ilya Dryomov) [1580500]
-- [fs] ceph: make lock_to_ceph_filelock() static (Ilya Dryomov) [1580500]
-- [fs] ceph: keep auth cap when inode has flocks or posix locks (Ilya Dryomov) [1580500]
-- [fs] ceph: use get_user_pages_fast() (Ilya Dryomov) [1580500]
-- [fs] ceph: properly queue cap snap for newly created snap realm (Ilya Dryomov) [1580500]
-- [fs] ceph: wait on writeback after writing snapshot data (Ilya Dryomov) [1580500]
-- [fs] ceph: fix capsnap dirty pages accounting (Ilya Dryomov) [1580500]
-- [fs] ceph: ignore wbc->range_(start, end) when write back snapshot data (Ilya Dryomov) [1580500]
-- [fs] ceph: fix "range cyclic" mode writepages (Ilya Dryomov) [1580500]
-- [fs] ceph: cleanup local variables in ceph_writepages_start() (Ilya Dryomov) [1580500]
-- [fs] ceph: optimize pagevec iterating in ceph_writepages_start() (Ilya Dryomov) [1580500]
-- [fs] ceph: make writepage_nounlock() invalidate page that beyonds EOF (Ilya Dryomov) [1580500]
-- [fs] ceph: properly get capsnap's size in get_oldest_context() (Ilya Dryomov) [1580500]
-- [fs] ceph: queue cap snap only when snap realm's context changes (Ilya Dryomov) [1580500]
-- [fs] ceph: remove stale check in ceph_invalidatepage() (Ilya Dryomov) [1580500]
-- [fs] ceph: handle race between vmtruncate and queuing cap snap (Ilya Dryomov) [1580500]
-- [fs] xfs: don't leak quotacheck dquots when cow recovery (Brian Foster) [1579873]
-- [fs] xfs: fix inobt inode allocation search optimization (Brian Foster) [1579873]
-- [fs] xfs: Fix per-inode DAX flag inheritance (Brian Foster) [1579873]
-- [fs] xfs: fix multi-AG deadlock in xfs_bunmapi (Brian Foster) [1579873]
-- [fs] xfs: check that dir block entries don't off the end of the buffer (Brian Foster) [1579873]
-- [fs] xfs: fix quotacheck dquot id overflow infinite loop (Brian Foster) [1579873]
-- [fs] xfs: check _btree_check_block value (Brian Foster) [1579873]
-- [fs] Revert "xfs: grab dquots without taking the ilock" (Brian Foster) [1579873]
-- [fs] xfs: assert locking precondition in xfs_readlink_bmap_ilocked (Brian Foster) [1579873]
-- [fs] xfs: assert locking precondition in xfs_attr_list_int_ilocked (Brian Foster) [1579873]
-- [fs] xfs: fixup xfs_attr_get_ilocked (Brian Foster) [1579873]
-- [fs] xfs: don't crash on unexpected holes in dir/attr btrees (Brian Foster) [1579873]
-- [fs] xfs: rename MAXPATHLEN to XFS_SYMLINK_MAXLEN (Brian Foster) [1579873]
-- [fs] xfs: Check for m_errortag initialization in xfs_errortag_test (Brian Foster) [1579873]
-- [fs] xfs: grab dquots without taking the ilock (Brian Foster) [1579873]
-- [fs] xfs: fix semicolon.cocci warnings (Brian Foster) [1579873]
-- [fs] xfs: replace log_badcrc_factor knob with error injection tag (Brian Foster) [1579873]
-- [fs] xfs: convert drop_writes to use the errortag mechanism (Brian Foster) [1579873]
-- [fs] xfs: remove unneeded parameter from XFS_TEST_ERROR (Brian Foster) [1579873]
-- [fs] xfs: expose errortag knobs via sysfs (Brian Foster) [1579873]
-- [fs] xfs: make errortag a per-mountpoint structure (Brian Foster) [1579873]
-- [fs] xfs: free uncommitted transactions during log recovery (Brian Foster) [1579873]
-- [fs] xfs: allow reading of already-locked remote symbolic link (Brian Foster) [1579873]
-- [fs] xfs: pass along transaction context when reading xattr block buffers (Brian Foster) [1579873]
-- [fs] xfs: pass along transaction context when reading directory block buffers (Brian Foster) [1579873]
-- [fs] xfs: return the hash value of a leaf1 directory block (Brian Foster) [1579873]
-- [fs] xfs: refactor the ifork block counting function (Brian Foster) [1579873]
-- [fs] xfs: make _bmap_count_blocks consistent wrt delalloc extent behavior (Brian Foster) [1579873]
-- [fs] xfs: check if an inode is cached and allocated (Brian Foster) [1579873]
-- [fs] xfs: export _inobt_btrec_to_irec and _ialloc_cluster_alignment for scrub (Brian Foster) [1579873]
-- [fs] xfs: export various function for the online scrubber (Brian Foster) [1579873]
-- [fs] xfs: always compile the btree inorder check functions (Brian Foster) [1579873]
-- [fs] xfs: remove double-underscore integer types (Brian Foster) [1579873]
-- [fs] xfs: avoid harmless gcc-7 warnings (Brian Foster) [1579873]
-- [fs] xfs: remove lsn relevant fields from xfs_trans structure and its users (Brian Foster) [1579873]
-- [fs] xfs: remove XFS_HSIZE (Brian Foster) [1579873]
-- [fs] xfs: define fatal assert build time tunable (Brian Foster) [1579873]
-- [fs] xfs: define bug_on_assert debug mode sysfs tunable (Brian Foster) [1579873]
-- [fs] xfs: refactor dir2 leaf readahead shadow buffer cleverness (Brian Foster) [1579873]
-- [fs] xfs: push buffer of flush locked dquot to avoid quotacheck deadlock (Brian Foster) [1579873]
-- [fs] xfs: use the common helper uuid_is_null() (Brian Foster) [1579873]
-- [fs] xfs: remove uuid_getnodeuniq and xfs_uu_t (Brian Foster) [1579873]
-- [fs] xfs: don't allow bmap on rt files (Brian Foster) [1579873]
-- [fs] xfs: fix spurious spin_is_locked() assert failures on non-smp kernels (Brian Foster) [1579873]
-- [fs] xfs: fix unaligned access in xfs_btree_visit_blocks (Brian Foster) [1579873]
-- [fs] xfs: fix warnings about unused stack variables (Brian Foster) [1579873]
-- [fs] xfs: BMAPX shouldn't barf on inline-format directories (Brian Foster) [1579873]
-- [fs] xfs: fix indlen accounting error on partial delalloc conversion (Brian Foster) [1579873]
-- [fs] xfs: fix use-after-free in xfs_finish_page_writeback (Brian Foster) [1579873]
-- [fs] xfs: publish UUID in struct super_block (Brian Foster) [1579873]
-- [fs] xfs: Allow user to kill fstrim process (Brian Foster) [1579873]
-- [fs] xfs: better log intent item refcount checking (Brian Foster) [1579873]
-- [fs] xfs: fix up quotacheck buffer list error handling (Brian Foster) [1579873]
-- [fs] xfs: don't use bool values in trace buffers (Brian Foster) [1579873]
-- [fs] xfs: corruption needs to respect endianess too! (Brian Foster) [1579873]
-- [fs] xfs: simplify validation of the unwritten extent bit (Brian Foster) [1579873]
-- [fs] xfs: remove unused values from xfs_exntst_t (Brian Foster) [1579873]
-- [fs] xfs: remove the unused XFS_MAXLINK_1 define (Brian Foster) [1579873]
-- [fs] xfs: more do_div cleanups (Brian Foster) [1579873]
-- [fs] xfs: remove use of do_div with 32-bit dividend in quota (Brian Foster) [1579873]
-- [fs] xfs: remove the trailing newline used in the fmt parameter of TP_printk (Brian Foster) [1579873]
-- [fs] xfs: prevent multi-fsb dir readahead from reading random blocks (Brian Foster) [1579873]
-- [fs] xfs: pass individual arguments to xfs_bmap_add_extent_hole_real (Brian Foster) [1579873]
-- [fs] xfs: remove custom do_div implementations (Brian Foster) [1579873]
-- [fs] xfs: simplify xfs_calc_dquots_per_chunk (Brian Foster) [1579873]
-- [fs] xfs: fold __xfs_trans_roll into xfs_trans_roll (Brian Foster) [1579873]
-- [fs] xfs: fix over-copying of getbmap parameters from userspace (Brian Foster) [1579873]
-- [fs] xfs: Remove obsolete declaration of xfs_buf_get_empty (Brian Foster) [1579873]
-- [fs] xfs: fix up inode validation failure message (Brian Foster) [1579873]
-- [fs] xfs: fix kernel memory exposure problems (Brian Foster) [1579873]
-- [fs] xfs: remove kmem_zalloc_greedy (Brian Foster) [1579873]
-- [fs] xfs: Use xfs_icluster_size_fsb() to calculate inode alignment mask (Brian Foster) [1579873]
-- [fs] xfs: fix and streamline error handling in xfs_end_io (Brian Foster) [1579873]
-- [fs] xfs: remove XFS_ALLOCTYPE_ANY_AG and XFS_ALLOCTYPE_START_AG (Brian Foster) [1579873]
-- [fs] xfs: simplify xfs_rtallocate_extent (Brian Foster) [1579873]
-- [fs] xfs: tune down agno asserts in the bmap code (Brian Foster) [1579873]
-- [fs] xfs: Use xfs_icluster_size_fsb() to calculate inode chunk alignment (Brian Foster) [1579873]
-- [fs] xfs: fix len comparison in xfs_extent_busy_trim (Brian Foster) [1579873]
-- [fs] xfs: improve busy extent sorting (Brian Foster) [1579873]
-- [fs] xfs: improve handling of busy extents in the low-level allocator (Brian Foster) [1579873]
-- [fs] xfs: don't fail xfs_extent_busy allocation (Brian Foster) [1579873]
-- [fs] xfs: correct null checks and error processing in xfs_initialize_perag (Brian Foster) [1579873]
-- [fs] xfs: introduce xfs_aligned_fsb_count (Brian Foster) [1579873]
-- [fs] xfs: allow unwritten extents in the CoW fork (Brian Foster) [1579873]
-- [fs] xfs: verify free block header fields (Brian Foster) [1579873]
-- [fs] xfs: check for obviously bad level values in the bmbt root (Brian Foster) [1579873]
-- [fs] xfs: filter out obviously bad btree pointers (Brian Foster) [1579873]
-- [fs] xfs: fail _dir_open when readahead fails (Brian Foster) [1579873]
-- [fs] xfs: fix toctou race when locking an inode to access the data map (Brian Foster) [1579873]
-- [fs] xfs: remove unused full argument from bmap (Brian Foster) [1579873]
-- [fs] xfs: remove unused struct declarations (Brian Foster) [1579873]
-- [fs] xfs: remove boilerplate around xfs_btree_init_block (Brian Foster) [1579873]
-- [fs] xfs: make xfs_btree_magic more generic (Brian Foster) [1579873]
-- [fs] xfs: glean crc status from mp not flags in xfs_btree_init_block_int (Brian Foster) [1579873]
-- [fs] xfs: prevent quotacheck from overloading inode lru (Brian Foster) [1579873]
-- [fs] xfs: extsize hints are not unlikely in xfs_bmap_btalloc (Brian Foster) [1579873]
-- [fs] xfs: verify dirblocklog correctly (Brian Foster) [1579873]
-- [fs] xfs: fix COW writeback race (Brian Foster) [1579873]
-- [fs] xfs: fix xfs_mode_to_ftype() prototype (Brian Foster) [1579873]
-- [fs] xfs: don't rely on ->total in xfs_alloc_space_available (Brian Foster) [1579873]
-- [fs] xfs: adjust allocation length in xfs_alloc_space_available (Brian Foster) [1579873]
-- [fs] xfs: fix bogus minleft manipulations (Brian Foster) [1579873]
-- [fs] xfs: bump up reserved blocks in xfs_alloc_set_aside (Brian Foster) [1579873]
-- [fs] xfs: nuke unused tracepoint definitions (Brian Foster) [1579873]
-- [fs] xfs: Always flush caches when integrity is required (Brian Foster) [1579873]
-- [fs] xfs: use rhashtable to track buffer cache (Brian Foster) [1579873]
-- [fs] xfs: optimise CRC updates (Brian Foster) [1579873]
-- [fs] xfs: make xfs btree stats less huge (Brian Foster) [1579873]
-- [fs] xfs: error out if trying to add attrs and anextents > 0 (Brian Foster) [1579873]
-- [fs] xfs: don't crash if reading a directory results in an unexpected hole (Brian Foster) [1579873]
-- [fs] xfs: complain if we don't get nextents bmap records (Brian Foster) [1579873]
-- [fs] xfs: check for bogus values in btree block headers (Brian Foster) [1579873]
-- [fs] xfs: forbid AG btrees with level == 0 (Brian Foster) [1579873]
-- [fs] xfs: several xattr functions can be void (Brian Foster) [1579873]
-- [fs] xfs: Move AGI buffer type setting to xfs_read_agi (Brian Foster) [1579873]
-- [fs] xfs: pass post-eof speculative prealloc blocks to bmapi (Brian Foster) [1579873]
-- [fs] xfs: track preallocation separately in xfs_bmapi_reserve_delalloc() (Brian Foster) [1579873]
-- [fs] fs: xfs: libxfs: constify xfs_nameops structures (Brian Foster) [1579873]
-- [fs] fs: xfs: xfs_icreate_item: constify xfs_item_ops structure (Brian Foster) [1579873]
-- [fs] xfs: add XBF_XBF_NO_IOACCT to buf trace output (Brian Foster) [1579873]
-- [fs] xfs: remove NULLEXTNUM (Brian Foster) [1579873]
-- [fs] xfs: remove xfs_bmap_search_extents (Brian Foster) [1579873]
-- [fs] xfs: use new extent lookup helpers xfs_file_iomap_begin_delay (Brian Foster) [1579873]
-- [fs] xfs: remove prev argument to xfs_bmapi_reserve_delalloc (Brian Foster) [1579873]
-- [fs] xfs: use new extent lookup helpers in __xfs_bunmapi (Brian Foster) [1579873]
-- [fs] xfs: use new extent lookup helpers in xfs_bmapi_write (Brian Foster) [1579873]
-- [fs] xfs: use new extent lookup helpers in xfs_bmapi_read (Brian Foster) [1579873]
-- [fs] xfs: cleanup xfs_bmap_last_before (Brian Foster) [1579873]
-- [fs] xfs: check return value of _trans_reserve_quota_nblks (Brian Foster) [1579873]
-- [fs] xfs: move dir_ino_validate declaration per xfsprogs (Brian Foster) [1579873]
-- [fs] libxfs: clean up _dir2_data_freescan (Brian Foster) [1579873]
-- [fs] libxfs: fix xfs_attr_shortform_bytesfit declaration (Brian Foster) [1579873]
-- [fs] libxfs: fix whitespace problems (Brian Foster) [1579873]
-- [fs] libxfs: synchronize dinode_verify with userspace (Brian Foster) [1579873]
-- [fs] libxfs: convert ushort to unsigned short (Brian Foster) [1579873]
-- [fs] xfs: rmap btree requires more reserved free space (Brian Foster) [1579873]
-- [fs] cifs: avoid a kmalloc in smb2_send_recv/SendReceive2 for the common case (Leif Sahlberg) [1582973]
-- [fs] cifs: remove small_smb2_init (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_lease_ack (Leif Sahlberg) [1582973]
-- [fs] cifs: remove unused variable from SMB2_read (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_oplock_break we get from server (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_query_info_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_query_directory_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_set_info_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2 read/write requests (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_lock_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_flush_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_create_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_sess_setup_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_tree_connect_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_echo_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_ioctl_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_close_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_tree_disconnect_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_logoff_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_negotiate_req (Leif Sahlberg) [1582973]
-- [fs] cifs: Add smb2_send_recv (Leif Sahlberg) [1582973]
-
-* Thu Jun 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-901.el7]
-- [target] iscsi: avoid NULL dereference in CHAP auth error path (Maurizio Lombardi) [1585081]
-- [iscsi-target] Fix non-immediate TMR reference leak (Maurizio Lombardi) [1585081]
-- [iscsi-target] Make TASK_REASSIGN use proper se_cmd->cmd_kref (Maurizio Lombardi) [1585081]
-- [target] Avoid early CMD_T_PRE_EXECUTE failures during ABORT_TASK (Maurizio Lombardi) [1585081]
-- [target] Fix quiese during transport_write_pending_qf endless loop (Maurizio Lombardi) [1585081]
-- [target] Fix caw_sem leak in transport_generic_request_failure (Maurizio Lombardi) [1585081]
-- [target] Fix QUEUE_FULL + SCSI task attribute handling (Maurizio Lombardi) [1585081]
-- [iSCSI-target] Use common error handling code in iscsi_decode_text_input() (Maurizio Lombardi) [1585081]
-- [target] iscsi: Detect conn_cmd_list corruption early (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix a race condition in iscsit_add_reject_from_cmd() (Maurizio Lombardi) [1585081]
-- [target] iscsi: Modify iscsit_do_crypto_hash_buf() prototype (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix endianness in an error message (Maurizio Lombardi) [1585081]
-- [target] iscsi: Use min() in iscsit_dump_data_payload() instead of open-coding it (Maurizio Lombardi) [1585081]
-- [target] iscsi: Define OFFLOAD_BUF_SIZE once (Maurizio Lombardi) [1585081]
-- [target] Inline transport_put_cmd() (Maurizio Lombardi) [1585081]
-- [target] Suppress gcc 7 fallthrough warnings (Maurizio Lombardi) [1585081]
-- [target] Move a declaration of a global variable into a header file (Maurizio Lombardi) [1585081]
-- [iscsi-target] fix memory leak in iscsit_release_discovery_tpg() (Maurizio Lombardi) [1585081]
-- [iscsi-target] fix memory leak in lio_target_tiqn_addtpg() (Maurizio Lombardi) [1585081]
-- [target] fix condition return in core_pr_dump_initiator_port() (Maurizio Lombardi) [1585081]
-- [target] fix match_token option in target_core_configfs.c (Maurizio Lombardi) [1585081]
-- [target] add sense code INSUFFICIENT REGISTRATION RESOURCES (Maurizio Lombardi) [1585081]
-- [target] fix double unmap data sg in core_scsi3_emulate_pro_register_and_move() (Maurizio Lombardi) [1585081]
-- [target] fix buffer offset in core_scsi3_pri_read_full_status (Maurizio Lombardi) [1585081]
-- [target] fix null pointer regression in core_tmr_drain_tmr_list (Maurizio Lombardi) [1585081]
-- [target] file: Do not return error for UNMAP if length is zero (Maurizio Lombardi) [1585081]
-- [target] Fix node_acl demo-mode + uncached dynamic shutdown regression (Maurizio Lombardi) [1585081]
-- [iscsi-target] Add login_keys_workaround attribute for non RFC initiators (Maurizio Lombardi) [1585081]
-- [target] Fix return sense reason in target_scsi3_emulate_pr_out (Maurizio Lombardi) [1585081]
-- [target] Fix cmd size for PR-OUT in passthrough_parse_cdb (Maurizio Lombardi) [1585081]
-- [target] Use macro for WRITE_VERIFY_32 operation codes (Maurizio Lombardi) [1585081]
-- [target] make device_mutex and device_list static (Maurizio Lombardi) [1585081]
-- [target] remove g_device_list (Maurizio Lombardi) [1585081]
-- [xcopy] loop over devices using idr helper (Maurizio Lombardi) [1585081]
-- [target] add helper to iterate over devices (Maurizio Lombardi) [1585081]
-- [target] add helper to find se_device by dev_index (Maurizio Lombardi) [1585081]
-- [target] use idr for se_device dev index (Maurizio Lombardi) [1585081]
-- [target] Fix COMPARE_AND_WRITE caw_sem leak during se_cmd quiesce (Maurizio Lombardi) [1585081]
-- [target] iscsi: Remove dead code from iscsit_process_scsi_cmd() (Maurizio Lombardi) [1585081]
-- [target] iscsi: Simplify iscsit_free_cmd() (Maurizio Lombardi) [1585081]
-- [target] iscsi: Remove second argument of __iscsit_free_cmd() (Maurizio Lombardi) [1585081]
-- [target] tcm_loop: Make TMF processing slightly faster (Maurizio Lombardi) [1585081]
-- [target] tcm_loop: Use target_submit_tmr() instead of open-coding this function (Maurizio Lombardi) [1585081]
-- [target] tcm_loop: Replace a waitqueue and a counter by a completion (Maurizio Lombardi) [1585081]
-- [target] tcm_loop: Merge struct tcm_loop_cmd and struct tcm_loop_tmr (Maurizio Lombardi) [1585081]
-- [target] Introduce a function that shows the command state (Maurizio Lombardi) [1585081]
-- [iscsi-target] Kill left-over iscsi_target_do_cleanup (Maurizio Lombardi) [1585081]
-- [target] Fix a deadlock between the XCOPY code and iSCSI session shutdown (Maurizio Lombardi) [1585081]
-- [target] Use get/put_unaligned_be*() instead of open coding these functions (Maurizio Lombardi) [1585081]
-- [target] Fix transport_init_se_cmd() (Maurizio Lombardi) [1585081]
-- [target] Remove se_device.dev_list (Maurizio Lombardi) [1585081]
-- [target] Use symbolic value for WRITE_VERIFY_16 (Maurizio Lombardi) [1585081]
-- [target] Add TARGET_SCF_LOOKUP_LUN_FROM_TAG support for ABORT_TASK (Maurizio Lombardi) [1585081]
-- [target] Add support for TMR percpu reference counting (Maurizio Lombardi) [1585081]
-- [target] reject COMPARE_AND_WRITE if emulate_caw is not set (Maurizio Lombardi) [1585081]
-- [iscsi-target] Avoid holding ->tpg_state_lock during param update (Maurizio Lombardi) [1585081]
-- [target] configfs: Kill se_lun->lun_link_magic (Maurizio Lombardi) [1585081]
-- [target] configfs: Kill se_device->dev_link_magic (Maurizio Lombardi) [1585081]
-- [target] remove dead code (Maurizio Lombardi) [1585081]
-- [net] target: introduce __skb_put_(zero, data, u8) (Maurizio Lombardi) [1585081]
-- [networking] target: make skb_push & __skb_push return void pointers (Maurizio Lombardi) [1585081]
-- [networking] target: make skb_put & friends return void pointers (Maurizio Lombardi) [1585081]
-- [iscsi-target] Reject immediate data underflow larger than SCSI transfer length (Maurizio Lombardi) [1585081]
-- [iscsi-target] Fix delayed logout processing greater than SECONDS_FOR_LOGOUT_COMP (Maurizio Lombardi) [1585081]
-- [target] Fix kref->refcount underflow in transport_cmd_finish_abort (Maurizio Lombardi) [1585081]
-- [target] Re-add check to reject control WRITEs with overflow data (Maurizio Lombardi) [1585081]
-- [target] Revert "Fix VERIFY and WRITE VERIFY command parsing" (Maurizio Lombardi) [1585081]
-- [target] fileio: Fix zero-length READ and WRITE handling (Maurizio Lombardi) [1585081]
-- [target] Don't force session reset if queue_depth does not change (Maurizio Lombardi) [1585081]
-- [target] Fix compare_and_write_callback handling for non GOOD status (Maurizio Lombardi) [1585081]
-- [target] fixup error message in target_tg_pt_gp_tg_pt_gp_id_store() (Maurizio Lombardi) [1585081]
-- [target] fixup error message in target_tg_pt_gp_alua_access_type_store() (Maurizio Lombardi) [1585081]
-- [target] Add WRITE_VERIFY_16 (Maurizio Lombardi) [1585081]
-- [target] Use kmalloc_array() in transport_kmap_data_sg() (Maurizio Lombardi) [1585081]
-- [target] Use kmalloc_array() in compare_and_write_callback() (Maurizio Lombardi) [1585081]
-- [target] Improve size determinations in two functions (Maurizio Lombardi) [1585081]
-- [target] Delete error messages for failed memory allocations (Maurizio Lombardi) [1585081]
-- [target] Use kcalloc() in two functions (Maurizio Lombardi) [1585081]
-- [iscsi-target] Improve size determinations in four functions (Maurizio Lombardi) [1585081]
-- [iscsi-target] Delete error messages for failed memory allocations (Maurizio Lombardi) [1585081]
-- [iscsi-target] Use kcalloc() in iscsit_allocate_iovecs() (Maurizio Lombardi) [1585081]
-- [tcm] make pi data verification configurable (Maurizio Lombardi) [1585081]
-- [target] Fix VERIFY and WRITE VERIFY command parsing (Maurizio Lombardi) [1585081]
-- [target] pr: update PR out action code table (Maurizio Lombardi) [1585081]
-- [target] iblock: convert iblock_req.pending from atomic_t to refcount_t (Maurizio Lombardi) [1585081]
-- [iscsi-target] use generic inet_pton_with_scope (Maurizio Lombardi) [1585081]
-- [iscsi-target] Drop work-around for legacy GlobalSAN initiator (Maurizio Lombardi) [1585081]
-- [iscsi-target] Fix early login failure statistics misses (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix iSCSI task reassignment handling (Maurizio Lombardi) [1585081]
-- [target] iscsi: Introduce a helper function for TMF translation (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix spelling of "reallegiance" (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix spelling of "perform" (Maurizio Lombardi) [1585081]
-- [iscsi-target] fix spelling mistake "Unsolicitied" -> "Unsolicited" (Maurizio Lombardi) [1585081]
-- [iscsi-target] graceful disconnect on invalid mapping to iovec (Maurizio Lombardi) [1585081]
-- [target] Avoid mappedlun symlink creation during lun shutdown (Maurizio Lombardi) [1585081]
-- [target] Drop pointless tfo->check_stop_free check (Maurizio Lombardi) [1585081]
-- [target] Fix VERIFY_16 handling in sbc_parse_cdb (Maurizio Lombardi) [1585081]
-- [target] pscsi: Fix TYPE_TAPE + TYPE_MEDIMUM_CHANGER export (Maurizio Lombardi) [1585081]
-- [target] Add counters for ABORT_TASK success + failure (Maurizio Lombardi) [1585081]
-- [target] Fix NULL dereference during LUN lookup + active I/O shutdown (Maurizio Lombardi) [1585081]
-- [target] Delete tmr from list before processing (Maurizio Lombardi) [1585081]
-- [target] Fix handling of aborted failed commands (Maurizio Lombardi) [1585081]
-- [target] Remove command flag CMD_T_DEV_ACTIVE (Maurizio Lombardi) [1585081]
-- [target] Remove command flag CMD_T_BUSY (Maurizio Lombardi) [1585081]
-- [target] Move session check from target_put_sess_cmd() into target_release_cmd_kref() (Maurizio Lombardi) [1585081]
-- [target] Inline transport_cmd_check_stop() (Maurizio Lombardi) [1585081]
-- [target] Remove an overly chatty debug message (Maurizio Lombardi) [1585081]
-- [target] Stop execution if CMD_T_STOP has been set (Maurizio Lombardi) [1585081]
-- [target] Correct transport_wait_for_tasks() documentation (Maurizio Lombardi) [1585081]
-- [target] Make core_tmr_abort_task() consider all commands (Maurizio Lombardi) [1585081]
-- [target] Remove se_tmr_req.tmr_lun (Maurizio Lombardi) [1585081]
-- [target] Fix COMPARE_AND_WRITE ref leak for non GOOD status (Maurizio Lombardi) [1585081]
-- [target] Fix multi-session dynamic se_node_acl double free OOPs (Maurizio Lombardi) [1585081]
-- [target] Fix early transport_generic_handle_tmr abort scenario (Maurizio Lombardi) [1585081]
-- [target] Use correct SCSI status during EXTENDED_COPY exception (Maurizio Lombardi) [1585081]
-- [target] Don't BUG_ON during NodeACL dynamic -> explicit conversion (Maurizio Lombardi) [1585081]
-- [target] support XCOPY requests without parameters (Maurizio Lombardi) [1585081]
-- [target] check for XCOPY parameter truncation (Maurizio Lombardi) [1585081]
-- [target] use XCOPY segment descriptor CSCD IDs (Maurizio Lombardi) [1585081]
-- [target] check XCOPY segment descriptor CSCD IDs (Maurizio Lombardi) [1585081]
-- [target] simplify XCOPY wwn->se_dev lookup helper (Maurizio Lombardi) [1585081]
-- [target] return UNSUPPORTED TARGET/SEGMENT DESC TYPE CODE sense (Maurizio Lombardi) [1585081]
-- [target] bounds check XCOPY total descriptor list length (Maurizio Lombardi) [1585081]
-- [target] bounds check XCOPY segment descriptor list (Maurizio Lombardi) [1585081]
-- [target] use XCOPY TOO MANY TARGET DESCRIPTORS sense (Maurizio Lombardi) [1585081]
-- [target] add XCOPY target/segment desc sense codes (Maurizio Lombardi) [1585081]
-- [target] Fix spelling mistake and unwrap multi-line text (Maurizio Lombardi) [1585081]
-- [target] user: Add an #include directive (Maurizio Lombardi) [1585081]
-- [sbp-target] Add an #include directive (Maurizio Lombardi) [1585081]
-- [sbp-target] Fix second argument of percpu_ida_alloc() (Maurizio Lombardi) [1585081]
-- [target] user: Fix a data type in tcmu_queue_cmd() (Maurizio Lombardi) [1585081]
-- [target] avoid accessing .bi_vcnt directly (Maurizio Lombardi) [1585081]
-- [target] tcm_fc: use CPU affinity for responses (Maurizio Lombardi) [1585081]
-- [target] tcm_fc: Update debugging statements to match libfc usage (Maurizio Lombardi) [1585081]
-- [target] tcm_fc: return detailed error in ft_sess_create() (Maurizio Lombardi) [1585081]
-- [target] tcm_fc: print command pointer in debug message (Maurizio Lombardi) [1585081]
-- [target] fix potential race window in target_sess_cmd_list_waiting() (Maurizio Lombardi) [1585081]
-- [target] Revert "Fix residual overflow handling in target_complete_cmd_with_length" (Maurizio Lombardi) [1585081]
-- [target] Don't override EXTENDED_COPY xcopy_pt_cmd SCSI status code (Maurizio Lombardi) [1585081]
-- [target] Make EXTENDED_COPY 0xe4 failure return COPY TARGET DEVICE NOT REACHABLE (Maurizio Lombardi) [1585081]
-- [target] fix spelling mistake: "limitiation" -> "limitation" (Maurizio Lombardi) [1585081]
-- [target] Fix residual overflow handling in target_complete_cmd_with_length (Maurizio Lombardi) [1585081]
-- [tcm_fc] set and unset FCP_SPPF_TARG_FCN (Maurizio Lombardi) [1585081]
-- [target] Fix ordered task CHECK_CONDITION early exception handling (Maurizio Lombardi) [1585081]
-- [target] Fix ordered task target_setup_cmd_from_cdb exception hang (Maurizio Lombardi) [1585081]
-- [target] Fix max_unmap_lba_count calc overflow (Maurizio Lombardi) [1585081]
-- [target] need_to_release is always false, remove redundant check and kfree (Maurizio Lombardi) [1585081]
-- [target] make close_session optional (Maurizio Lombardi) [1585081]
-- [target] make ->shutdown_session optional (Maurizio Lombardi) [1585081]
-- [target] remove acl_stop (Maurizio Lombardi) [1585081]
-- [target] consolidate and fix session shutdown (Maurizio Lombardi) [1585081]
-- [scsi] lpfc: update driver version to 12.0.0.4 (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix port initialization failure (Dick Kennedy) [1584377]
-- [scsi] lpfc: Don't return internal MBXERR_ERROR code from probe function (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix 16gb hbas failing cq create (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix crash in blk_mq layer when executing modprobe -r lpfc (Dick Kennedy) [1584377]
-- [scsi] lpfc: correct oversubscription of nvme io requests for an adapter (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix MDS diagnostics failure (Rx < Tx) (Dick Kennedy) [1584377]
-- [scsi] lpfc: fix spelling mistakes: "mabilbox" and "maibox" (Dick Kennedy) [1584377]
-- [scsi] lpfc: Comment cleanup regarding Broadcom copyright header (Dick Kennedy) [1584377]
-- [scsi] lpfc: update driver version to 12.0.0.3 (Dick Kennedy) [1584377]
-- [scsi] lpfc: Enhance log messages when reporting CQE errors (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix up log messages and stats counters in IO submit code path (Dick Kennedy) [1584377]
-- [scsi] lpfc: Driver NVME load fails when CPU cnt > WQ resource cnt (Dick Kennedy) [1584377]
-- [scsi] lpfc: Handle new link fault code returned by adapter firmware (Dick Kennedy) [1584377]
-- [scsi] lpfc: Correct fw download error message (Dick Kennedy) [1584377]
-- [scsi] lpfc: enhance LE data structure copies to hardware (Dick Kennedy) [1584377]
-- [scsi] lpfc: Change IO submit return to EBUSY if remote port is recovering (Dick Kennedy) [1584377]
-- [scsi] qla2xxx: Remove stale debug value for login_retry flag (Himanshu Madhani) [1578880]
-- [scsi] qla2xxx: Fix setting lower transfer speed if GPSC fails (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Update driver version to 10.00.00.06.07.6-k (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Correct setting of SAM_STAT_CHECK_CONDITION (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: correctly shift host byte (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix race condition between iocb timeout and initialisation (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix small memory leak in qla2x00_probe_one on probe failure (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fx00 copypaste typo (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fix error message on <qla2400 (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix Async GPN_FT for FCP and FC-NVMe scan (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Cleanup code to improve FC-NVMe error handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix FC-NVMe IO abort during driver reset (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix retry for PRLI RJT with reason of BUSY (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove nvme_done_list (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Return busy if rport going away (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix n2n_ae flag to prevent dev_loss on PDB change (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add FC-NVMe abort processing (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add changes for devloss timeout in driver (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Set IIDMA and fcport state before qla_nvme_register_remote() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove unneeded message and minor cleanup for FC-NVMe (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Restore ZIO threshold setting (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fix spelling mistake: "existant" -> "existent" (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use dma_pool_zalloc() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix function argument descriptions (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove unused symbols (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use p for printing pointers (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove FC_NO_LOOP_ID for FCP and FC-NVMe Discovery (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix crashes in qla2x00_probe_one on probe failure (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix FC-NVMe LUN discovery (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: ensure async flags are reset correctly (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: do not check login_state if no loop id is assigned (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fixup locking for session deletion (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix incorrect handle for abort IOCB (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix double free bug after firmware timeout (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Prevent relogin trigger from sending too many commands (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix a locking imbalance in qlt_24xx_handle_els() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Avoid triggering undefined behavior in qla2x00_mbx_completion() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add XCB counters to debugfs (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix queue ID for async abort with Multiqueue (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix warning for code intentation in __qla24xx_handle_gpdb_event() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix warning during port_name debug print (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix warning in qla2x00_async_iocb_timeout() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix recursion while sending terminate exchange (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: remove redundant assignment of d (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use zeroing allocator rather than allocator/memset (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Serialize session free in qlt_free_session_done (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Serialize session deletion by using work_lock (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove unused argument from qlt_schedule_sess_for_deletion() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Prevent multiple active discovery commands per session (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add retry limit for fabric scan logic (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Delay loop id allocation at login (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Increase verbosity of debug messages logged (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Allow relogin and session creation after reset (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add ability to use GPNFT/GNNFT for RSCN handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Properly extract ADISC error codes (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix GPNFT/GNNFT error handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove session creation redundant code (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Migrate switch registration commands away from mailbox interface (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix login state machine freeze (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Reduce trace noise for Async Events (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Reduce the use of terminate exchange (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add lock protection around host lookup (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add option for use reserve exch for ELS (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add switch command to simplify fabric discovery (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use known NPort ID for Management Server login (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Tweak resource count dump (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix session cleanup for N2N (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Allow target mode to accept PRLI in dual mode (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Don't call dma_free_coherent with IRQ disabled (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add ability to send PRLO (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use shadow register for ISP27XX (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Enable ATIO interrupt handshake for ISP27XX (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Move work element processing out of DPC thread (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Replace GPDB with async ADISC command (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix Firmware dump size for Extended login and Exchange Offload (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Chip reset uses wrong lock during IO flush (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add boundary checks for exchanges to be offloaded (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use chip reset to bring down laser on unload (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use IOCB path to submit Control VP MBX command (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix NULL pointer access for fcport structure (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix smatch warning in qla25xx_delete_ rsp|req _que (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: remove duplicate includes (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Suppress gcc 7 fall-through warnings (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix memory leak in dual/target mode (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix system crash in qlt_plogi_ack_unref (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove aborting ELS IOCB call issued as part of timeout (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Clear loop id after delete (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix scan state field for fcport (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Replace fcport alloc with qla2x00_alloc_fcport (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix abort command deadlock due to spinlock (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix PRLI state check (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix Relogin being triggered too fast (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Relogin to target port on a cable swap (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Recheck session state after RSCN (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix NPIV host cleanup in target mode (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix login state machine stuck at GPDB (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Serialize GPNID for multiple RSCN (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Retry switch command on time out (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix re-login for Nport Handle in use (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Move session delete to driver work queue (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix gpnid error processing (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix system crash for Notify ack timeout handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Suppress a kernel complaint in qla_init_base_qpair() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use ql2xnvmeenable to enable Q-Pair for FC-NVMe (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Cocci spatch "pool_zalloc-simple" (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Query FC4 type during RSCN processing (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Changes to support N2N logins (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Allow MBC_GET_PORT_DATABASE to query and save the port states (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add ATIO-Q processing for INTx mode (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Reinstate module parameter ql2xenablemsix (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Clear fc4f_nvme flag (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add LR distance support from nvram bit (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add support for minimum link speed (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: add missing includes for qla_isr (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: remove use of FC-specific error codes (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix WWPN/WWNN in debug message (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add command completion for error path (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix remoteport disconnect for FC-NVMe (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Simpify unregistration of FC-NVMe local/remote ports (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Added change to enable ZIO for FC-NVMe devices (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Move function prototype to correct header (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Cleanup FC-NVMe code (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix NVMe entry_type for iocb packet on BE system (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: avoid unused-function warning (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fix a bunch of typos and spelling mistakes (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use FC-NVMe FC4 type for FDMI registration (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Send FC4 type NVMe to the management server (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Move #include qla_nvme.h to fix compile errors on RHEL 7 (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add FC-NVMe F/W initialization and transport registration (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add FC-NVMe command handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add FC-NVMe port discovery and PRLI handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix oops in qla2x00_probe_one error path (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Allow SCSI-MQ to be enabled selectively (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix incorrect tcm_qla2xxx_free_cmd use during TMR ABORT (v2) (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Revert "qla2xxx: Fix incorrect tcm_qla2xxx_free_cmd use during TMR ABORT" (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix incorrect tcm_qla2xxx_free_cmd use during TMR ABORT (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix a recently introduced memory leak (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix Regression introduced by pci_alloc_irq_vectors_affinity call (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Cleaned up queue configuration code (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: remove irq_affinity_notifier (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fix MSI-X vector affinity (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Utilize pci_alloc_irq_vectors/pci_free_irq_vectors calls (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove cpumask variable for qla2xxx_create_qpair() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Avoid double completion of abort command (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix NULL pointer crash due to active timer for ABTS (Himanshu Madhani) [1547714]
-
-* Wed Jun 06 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-900.el7]
-- [sound] alsa: asoc: config: update the rhel configurations for the recent changes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: do not use regmap_get_device() in rt5663_irq() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7219: change CONFIG_COMMON_CLK to CONFIG_COMMON_CLK_DA7219 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add missing includes for linux/module.h (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Hide local_irq_disable/enable() and local_irqsave/restore() (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: audio-v3: add BADD-specific values (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: mixer: make string parsing independent of mixer_build state (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: Only get AudioControl header for UAC1 class (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: stream: refactor uac3 audio interface parsing (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: stream: refactor uac1/2 audio interface parsing (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: stream: move audioformat alloc/init into separate function (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Clean up mixer element list traverse (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: acpi: add new fields for SOF support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: Add helper to find codec_dai from dai_name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add snd_soc_component_xxx_bias_level() (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq_file: Introduce DEFINE_SHOW_ATTRIBUTE() helper macro (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: recover system clock when device changes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: change FVCO maximum threshold (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: condition for clock disable (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: move key irq after jd done (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: codecs: add const to snd_soc_codec_driver structures (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: TDM support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: leave Class D gain at chip default (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: rename controls to match DAPM controls (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: new driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Enforce CONFIG_SND_DYNAMIC_MINORS for HDMI/DP codec (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Add missing cable lock to ctl API callbacks (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Mark paused device as inactive (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Fix access to not-yet-ready substream via cable (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Sync stale timer before release (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Fix racy hw constraints adjustment (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Fix inconsistent format due to incomplete rule (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Release cable upon open error path (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Give proper vendor/product name for Dell WD15 Dock (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add a quirck for B&W PX headphones (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add a quirk for Nura's first gen headset (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Allow to override the longname string (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add "Keep Interface" control (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add keep_iface flag (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Avoid superfluous usb_set_interface() calls (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Initialize Dell Dock playback volumes (Jaroslav Kysela) [1535427]
-- [sound] alsa: cs46xx: fix spelling mistake: "amplifer" -> "amplifier" (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/ca0132: fix build failure when a local macro is defined (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix incorrect usage of IS_REACHABLE() (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix races at MIDI encoding in snd_virmidi_output_trigger() (Jaroslav Kysela) [1535427]
-- [sound] alsa: vmaster: Propagate slave error (Jaroslav Kysela) [1535427]
-- [sound] alsa: vmaster: Zero-clear ctl before calling slave get (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix structure definition for X32 ABI (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Check PCM state at xfern compat ioctl (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: include linux/module.h as needed (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: add nau8824 sound card (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Not being able to find the codec ACPI-dev is an error (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: Add Playback DAI for fixup (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: Enable mclk and ssp sclk early for rt5663 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: Enable mclk and ssp sclk early (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Fix setting of SSP parameters in Kabylake machine driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Enable tdm slots for max98927 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use rtd->codec on Intel/haswell (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_rt5645: Analog Mic support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: don't use codec anymore (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Select RCCLK on init() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Change defaults to enable jack-detect, analog mics (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Add quirk for the VIOS LTH17 laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Add support for Bay Trail CR / SSP0 using boards (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Add new IN2_HS_IN3 input map and a quirk using it (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Rename IN3_MAP to IN1_HS_IN3_MAP (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Drop snd_soc_dai_set_bclk_ratio() call (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Configure PLL1 before using it (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Add quirk micbias OVCD configuration (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Only create jack if we have a jack-detect source (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Actually honor the DMIC_EN quirk if specified (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Pass jack-src info via device-properties (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr-rt5651: add support for Line In (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr-rt5651: enable MinnowBoard Turbot quirks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr-rt5651: add quirk for IN3P which may also be used (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: fix Kiano DMI quirk (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: byt: Fix quirk for KIANO laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: byt: Introduce new map for dual mics (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: byt: Enable IN2 map quirk for a KIANO laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: soc: intel: byt: Introduce new custom IN2 map (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcht_es8316: remove useless code (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: acpi: remove hard-coded i2c-device name length (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcht_es8316: fix HID handling (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: board: Add BE DAI link for WoV and update DAPM machine map (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: sn95031: remove dead makefile about sn95031 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: sn95031: remove this code (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: remove mfld_machine (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kconfig: drop boiler plate text from config items (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kconfig: add some comments for if symbols (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: align/fix SKL/BXT/KBL Kconfigs (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: align Kconfig configurations for HiFi2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: align Kconfig dependencies for Haswell/Broadwell (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kconfig: Simplify-clarify ACPI/PCI dependencies (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Fix Kconfig with top-level selector (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: improve SND_SOC_INTEL_MACH dependencies (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Add help text for SND_SOC_INTEL_SST_TOPLEVEL (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: improve DMADEVICES dependency (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: fix Kconfig dependencies (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Add depends on X86 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: clarify Kconfig dependencies (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: reorder boards Kconfig by chronological order (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: add SOF firmare/topology file information (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Remove second shim read in register_poll (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: remove redundant variable dma_dev_name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Change kern log level to avoid unwanted messages (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Refine skl widget type check (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: remove second duplicated assignment to pointer 'res' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add dynamic module id support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Optimize UUID handling to fill pin info (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Decrease loglevel for topology loading (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: fix swapped order of function arguments dir and pin_index (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix descriptions for exported function args (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix uuid_module memory leak in failure case (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: make function skl_clk_round_rate static (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Re-order some code to silence a warning (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add extended I2S config blob support in Clock driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Do not check dev_type for dmic link type (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Check for NHLT ACPI header signature (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix typo (Jaroslav Kysela) [1535427]
-- [sound] asoc: intel: skylake: Add ssp clock driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: move machine drivers to dedicated KConfig (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Modify skl_dsp_set_dma_control API arguments (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Disable clock and power gating during FW/LIB download (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Ensure dai and dailink registration happens in sequence (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add channel map in updown mixer module IPC (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix updown mixer module format (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Request IRQ late only after all context are initialized (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Handle return value of platform_get_irq (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Free streams on suspend, re-alloc on resume (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Fix error-code check in sst_pause_stream() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Fix some style (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Fix the return value of 'sst_send_byte_stream_mrfld()' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Kill BUG_ON() usage (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Add sst_realloc_stream() function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Remove unused STREAM_DECODE and STREAM_RESET states (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Remove unnecessary sst_init_stream() function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Remove 2 unused members from stream_info struct (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Use kvzalloc() for suspend buffers (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: move all ACPI match tables to common module (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: common: use c99 syntax for ACPI/machine tables (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: atom: Remove unneeded linux/miscdevice.h include (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: atom: use cht_bsw_max98090 for Baytrail Chromebooks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5670: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: move ACPI common code out of Intel/sst tree (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcht_da7213: cosmetic fixes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_rt5672: fix card name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_rt5672: use actual HID in suspend/resume (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5670: add set_bclk_ratio in dai ops (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5670: refactor DMI quirks and fix Dell Venue settings (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Rewrite jack-type detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Add rt5651_jack_inserted() helper (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable Platform Clock during jack-type detect (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable sticky mode for OVCD (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Allow specifying the OVCD scale-factor through a device-property (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Allow specifying over-current threshold through a device-property (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Configure jack-detect source through a device-property (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Make rt5651_apply_properties() private (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Always keep OVCD enabled (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Only configure OVCD once at set_jack time (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable LDO and micbias1 supplies for jack-type detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Remove "JD Power" dapm supply (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Only configure LDO voltage once at boot (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Remove programming of PWR regs before force_bias_level() call (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Do not modify jd and PLL power bits from set_bias_level() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Do not modify the LDO voltage control bits from set_bias_level() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Fix bias_level confusion (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Remove is_sys_clk_from_pll() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Add rt5651_apply_properties() helper function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Use standard component set_jack callback (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Move 2 functions higher up in rt5651.c (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Move all jack-detect initialization to rt5651_set_jack_detect (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Remove unused rt5651_platform_data (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Fix regcache sync errors on resume (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: byt: Add headset jack (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable JD1_1 quirk for KIANO laptopt (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Rework quirk logic (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable jack detection on JD* pins (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Convert rt5651 micbias1 to a supply widget (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5640: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: remove hard-coded compressed dailinks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: fix off-by-one dailink id (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: use helper to get codec_dai (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090: remove useless code, align with ChromeOS driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090: add gpio-based jack detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090_ti: Fix jack initialization (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090: add support for Baytrail (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090: Fix I2S config + unused code (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: add MCLK, quirks and cleanups (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr-rt5651: fix capture routes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5640: cosmetic fixes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5640: simplify MCLK quirk tests (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: use devm_clk_get() unconditionally (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Fix uninitialized calibration value (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Fix rt5514_spi_burst_read() buffer passing (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Add the missing register in the readable table (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: codecs: make snd_soc_platform_driver const (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: only enable wakeup when fully initialized (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Add the sanity check for the driver_data in the resume function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: mark PM functions as __maybe_unused (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: check irq status to schedule data copy in resume function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Voice wakeup support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: Let the buf_size to align with period_bytes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: The ACPI also should use the function rt5514_parse_dp() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Make sure the DMIC delay will be happened after normal SUPPLY widgets power on (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: The DSP clock can be calibrated by the other clock source (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Revert Hotword Model control (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: check irq status to schedule data copy (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt298: don't turn off HV and VREF if headset is detected (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt286: don't turn off HV and VREF if headset is detected (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rl6231: remove never matched if condition (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rl6231: get better PLL parameters (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rl6231: make arrays div and pd static const, reduces object code size (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98927: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use codec hw_write on max98927 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98927: Added max98927_dai_tdm_slot function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98927: Added support for DSP_A and DSP_B format (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98357a: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Fix build (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi : Ensuring proper setting of output widget power state (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7219: make structure da7219_dai_clks_ops static (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7219: clkdev_drop usage depends on CONFIG_COMMON_CLK (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7219: Add common clock usage for providing DAI clks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi/nau8825/rt286/rt298/rt5663/da7219: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl_rt5663_max98927: Map BTN_0 to KEY_PLAYPAUSE (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Headset button support in kabylake machine driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: fix jack name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix jack name format substitution (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl_rt5663_rt5514_max98927: Map BTN_0 to KEY_PLAYPAUSE (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: Modify map for Headset Playback to fix pop-noise (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: fix issue that pop noise when start capture (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: improve crosstalk measurement protection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: improve semaphore control (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: set clear_irq when imm IRQ happened (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: disable crosstalk by default (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98090: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98090: reduce verbosity on PLL unlock (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: ssm2518: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: ssm4567: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: ts3a227e: Map BTN_0 to KEY_PLAYPAUSE (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: ts3a227e: add acpi table (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Fix the wrong result of the first jack detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Check the JD status in the button pushing (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Delay and retry reading rt5663 ID register (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Add the function of impedance sensing (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Change the dev getting function in rt5663_irq (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Add vendor id for Cannonlake HDMI codec (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: keep DAI driver pointer in private data (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Remove redundant assignments (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Refresh sysfs during hdmi device probe (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: clean up hdac_device variable names (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: clean up hdac_ext_device variable names (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: introduce macro to access HDMI private data (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Fix possible memory leak on parse and map nid failure (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Fix possible NULL pointer dereference (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Fix static checker warning for sprintf usage (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: es8316: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dmic: don't use codec anymore (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dmic: Add optional wakeup delay (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dmic: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dmic: Fix check of return value from read of 'num-channels' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: codecs: dmic: Make number of channels configurable (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7213: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7213: Improve a size determination in da7213_i2c_probe() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7213: Delete an error message for a failed memory allocation in da7213_fw_to_pdata() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7213: add support for DSP modes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645/rt5677: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_rt5645: cosmetic fixes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: add fallback case for jack detection support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: add micbias power control select (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: change micbias widget type to supply (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: add platform data for the Teclast X80 Pro tablet (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: cleanup DMI matching code (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: set in2_diff flag for GPD win and pocket devices (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: Set card long_name for GPD win / pocket (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: reset RT5645_AD_DA_MIXER at probe (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: Wait for 400msec before concluding on value of RT5645_VENDOR_ID2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: remove unexisting route on new rt5645 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: Make a few struct const (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bdw-rt5677: Switch to devm_acpi_dev_add_driver_gpios() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Parse vendor tokens to build A-State table (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Add Kabylake Dialog+Maxim machine driver entry (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Make local functions static (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: initialize return value properly (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix missing sentinel in sst_acpi_mach (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Parse nhlt and register clock device (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Find module id from UUID for bind params (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add BE DAI for WoV usecase (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Disable clock gating during firmware and library download (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Configure DSP clock source (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use rtd->codec on intel/skylake (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add dai load ops for dais from topology (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add flag to check to register FE dais from topology (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix potential NULL pointer dereference (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: haswell: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: baytrail: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: atom: make sst_platform_compr_ops const (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: atom: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-utils: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-utils: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-utils: add const to dummy_codec (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Check widget kcontrols before deref (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Fix bugs of freeing soc topology (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: fix some tiny memory leaks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Check widget kcontrols before deref (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: create TLV data for dapm widgets (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Fix kcontrol name string handling (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Fix a potential memory leak in 'soc_tplg_dapm_widget_denum_create()' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Fix a potential NULL pointer dereference in 'soc_tplg_dapm_widget_denum_create()' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: change mask in snd_soc_get/put_volsw_sx to unsigned int (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-io: Fix snd_soc_component_update_bits_legacy (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add Component level .read/.write (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add snd_soc_component_read32 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-dapm: Use empty struct initializer (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: add support to pinctrl dapm (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: fix debugfs read using path->connected (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: mark 'snd_soc_dapm_free_kcontrol' as static (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: add initialization for w_param_text pointer (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: Avoid creating kcontrol for params (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: Make snd_soc_dapm_add/del_routes use runtime mutex subclass (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: Refactor the code in snd_soc_dapm_new_pcm (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: fix error path in snd_soc_dapm_new_pcm (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: compress: Fixup error messages (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: compress: Remove some extraneous blank lines (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: compress: Correct handling of copy callback (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use rtd->codec on snd_soc_new_compress() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has snd_compr_ops (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-pcm: don't call flush_delayed_work() many times in soc_pcm_private_free() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: pcm: improve debug output for DPCM BE searching (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-pcm: rename .pmdown_time to .use_pmdown_time for Component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has snd_pcm_ops (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: remove unneeded dai->driver->ops check (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: remove rtd->platform checck (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use rtd->codec on soc_dev_attr_is_visible() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: core: Fix typo roup->group (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: use DEFINE_SHOW_ATTRIBUTE() to decrease code duplication (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: use seq_file to dump the contents of dai_list, platform_list and codec_list (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: add missing EXPORT_SYMBOL_GPL() for snd_soc_rtdcom_lookup (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: snd_soc_rtdcom_lookup() cares component driver name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add null_snd_soc_ops and reduce NULL ops check (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-pcm: check symmetry after hw_params (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: remove error due to probe deferral (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: remove rtd NULL check on soc_free_pcm_runtime() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: add missing EXPORT_SYMBOL_GPL() for snd_soc_disconnect_sync (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add snd_soc_disconnect_sync() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: soc_probe_dai() code simplification (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: fix build warning in soc-core.c (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: remove unneeded dai->driver check (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has non_legacy_dai_naming (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: care Codec <-> Codec case by non_legacy_dai_naming (Jaroslav Kysela) [1535427]
-- [sound] alsa: soc-core: don't call kfree() for component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: remove unnecessary message from snd_soc_register_component() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has endianness (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has pmdown_time (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add Component level set_bias_level (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add Component level pcm_new/pcm_free v2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: pcm: Sync delayed work before releasing resources (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: add snd_soc_add_component() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: add component lookup functions (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: remove dai_drv from snd_soc_component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: Add snd_soc_of_put_dai_link_codecs() helper function (Jaroslav Kysela) [1535427]
-- [sound] alsa: synth: emux: soundfont.c: Cleaning up memory leak (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Delete two error messages for a failed memory allocation in snd_emux_create_port() (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Adjust four checks for null pointers (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Improve a size determination in two functions (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Adjust one function call together with a variable assignment (Jaroslav Kysela) [1535427]
-- [sound] alsa: synth: use designated initializers (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: constify nrpn_conv_table structures (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: remove unused redundant variable p2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: stop if copy_from_user() fails (Jaroslav Kysela) [1535427]
-- [sound] alsa: synth: Fix conflicting OSS device registration on AWE32 (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Fix mutex deadlock in OSS emulation (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: adc3: Fix channel mapping conversion for ADC3 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sanity checks for invalid EPs (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: add more quirks for DSD interfaces (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Integrate native DSD support for ITF-USB based DACs (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: FIX native DSD support for TEAC UD-501 DAC (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add native DSD support for Luxman DA-06 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add native DSD support for TEAC UD-301 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: move audioformat quirks to quirks.c (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: add more device quirks for USB DSD devices (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add native DSD support for Esoteric D-05X (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: support new Amanero Combo384 firmware version (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add native DSD support for Pro-Ject Pre Box S2 Digital (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Apply vendor ID matching for sample rate quirk (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sample rate quirk for Plantronics P610 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sample rate quirk for Plantronics C310/C520-M (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Support changing input on Sound Blaster E1 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Skip broken EU on Dell dock USB-audio (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sanity checks in UAC3 clock parsers (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: More strict sanity checks for clock parsers (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Refactor clock finder helpers (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sanity checks in v2 clock parsers (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: add implicit fb quirk for Axe-Fx III (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: simplify set_sync_ep_implicit_fb_quirk (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: add implicit fb quirk for Behringer UFX1204 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix missing endian conversion (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix forgotten conversion of control query functions (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: fix memory leak on cval (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: update clock valid control (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: UAC2 jack detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix UAC2 get_ctl request with a RANGE attribute (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Proper fallback at get_term_name() (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix the missing ctl name suffix at parsing SU (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add check return value for usb_string() (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix out-of-bound error (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix potential out-of-bound access at parsing SU (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sanity checks to FE parser (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: uac1: Invalidate ctl on interrupt (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Kill stray URB at exiting (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: silence a static checker warning (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: fix uac control query argument (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: initial USB Audio Device Class 3.0 support (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Change the semantics of the enable option (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Check out-of-bounds access by corrupted buffer descriptor (Jaroslav Kysela) [1535427]
-- [sound] alsa: x86: Make CONFIG_SND_X86 bool (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Skip jack and others for non-existing PCM streams (Jaroslav Kysela) [1535427]
-- [sound] alsa: ad1889: Replace mdelay with usleep_range in snd_ad1889_ac97_ready (Jaroslav Kysela) [1535427]
-- [sound] alsa: ad1889: Replace mdelay with usleep_range in snd_ad1889_init (Jaroslav Kysela) [1535427]
-- [sound] alsa: asihpi: clean up a couple of build warnings (Jaroslav Kysela) [1535427]
-- [sound] alsa: asihpi: fix a potential double-fetch bug when copying puhm (Jaroslav Kysela) [1535427]
-- [sound] alsa: au88x0: remove redundant assignment of variable i (Jaroslav Kysela) [1535427]
-- [sound] alsa: echoaudio: remove redundant initialization of pointer 'pipe' (Jaroslav Kysela) [1535427]
-- [sound] alsa: revert "alsa: echoaudio: purge contradictions between dimension matrix members and total number of members" (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: use dma_set_mask_and_coherent() (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: Reduce GFP_ATOMIC allocation (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: add a IOMMU workaround (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: make sure synth DMA pages are allocated with DMA functions (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: add optional debug printouts with DMA addresses (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: remove reserved_page (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Sanity check of access to SPDIF controls array (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - change the location for one of two front mics (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Update ALC255 depop optimize (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add some fixes for ALC233 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Use a macro for snd_array iteration loops (Jaroslav Kysela) [1535427]
-- [sound] alsa: ice1712: define i2c eeprom addr to header file (Jaroslav Kysela) [1535427]
-- [sound] alsa: ice1724: Fix resume issues with Prodigy 7.1 HiFi (Jaroslav Kysela) [1535427]
-- [sound] alsa: ice1712: replace strcpy() with strlcpy() (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek: Add headset mic support for Intel NUC Skull Canyon (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - fix headset mic problem for Dell machines with alc236 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Add model string for Intel reference board quirk (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add support for ALC1220 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix ALC275 no sound issue (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add support for ALC236/ALC3204 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - adjust the location of one mic (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - set PINCFG_HEADSET_MIC to parse_flags (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix speaker no sound after system resume (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix Dell headset Mic can't record (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Always immediately update mute LED with pin VREF (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Make dock sound work on ThinkPad L570 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix dock line-out volume on Dell Precision 7520 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek: Limit mic boost on T480 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add headset mode support for Dell laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add support headset mode for DELL WYSE (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix pincfg at resume on Lenovo T470 dock (Jaroslav Kysela) [1548055 1535427]
-- [sound] alsa: hda/realtek: PCI quirk for Fujitsu U7x7 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add headset mode support for Dell laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Reduce the suspend time consumption for ALC256 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - update ALC215 depop optimize (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Support headset mode for ALC215/ALC285/ALC289 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Use IS_REACHABLE() for dependency on input (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Apply headphone noise quirk for another Dell XPS 13 variant (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - update ALC225 depop optimize (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Clean up ALC299 init code (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix missing COEF init for ALC225/295/299 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - change the location for one mic on a Lenovo machine (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - fix headset mic detection issue on a Dell machine (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix Dell AIO LineOut issue (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - New codec support for ALC257 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Add vendor id for Cannonlake HDMI codec (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - program ICT bits to support HBR audio (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: add dock and led support for HP ProBook 640 G2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: add dock and led support for HP EliteBook 820 G3 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Add MIC_NO_PRESENCE fixup for 2 HP machines (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Apply the existing quirk to iMac 14, 1 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/ca0132 - use ARRAY_SIZE (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - New VIA controller suppor no-snoop path (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Force polling mode on CFL for fixing codec communication (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Add Icelake PCI ID (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Revert power_save option default value (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Add a power_save blacklist (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Add Raven PCI ID (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - silence uninitialized variable warning in activate_amp_in() (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Make use of core codec functions to sync power state (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix yet remaining issue with vmaster 0dB initialization (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix incorrect TLV callback check introduced during set_fs() removal (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Fix too short HDMI/DP chmap reporting (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Drop useless WARN_ON() (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Copying sync power state helper to core (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Avoid racy recreation of widget kobjects (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Add missing error checks in OSS emulation plugin builder (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix endless loop for XRUN recovery in OSS emulation (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix mutex unbalance in OSS emulation ioctls (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: potential uninitialized return values (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Return -EBUSY for OSS ioctls changing busy streams (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Avoid potential races between OSS ioctls and read/write (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix UAF in snd_pcm_oss_get_formats() (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Use ERESTARTSYS instead of EINTR in OSS emulation (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Allow aborting mutex lock at OSS read/write loops (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Abort properly at pending signal in OSS read/write loops (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix OSS sysex delivery in OSS emulation (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Remove spurious WARN_ON() at timer check (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix copy_from_user() call inside lock (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Process queue tempo/ppq change in a shot (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Enable 'use' locking in all configurations (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix possible UAF in snd_seq_check_queue() (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Clear client entry before deleting else at closing (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Remove superfluous snd_seq_queue_client_leave_cells() call (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: More protection for concurrent write and ioctl races (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Don't allow resizing pool in use (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix racy pool initializations (Jaroslav Kysela) [1550169 1535427] {CVE-2018-7566}
-- [sound] alsa: seq: Fix nested rwsem annotation for lockdep splat (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Add sanity check for user-space pointer delivery (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Use krealloc() for resizing the rules array (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Remove yet superfluous WARN_ON() (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Set config update bits only when really changed (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Remove incorrect snd_BUG_ON() usages (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: update tstamp only if audio_tstamp changed (Jaroslav Kysela) [1535427]
-- [sound] alsa: core: Report audio_tstamp in snd_pcm_sync_ptr (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Return negative delays from SNDRV_PCM_IOCTL_DELAY (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Unify delay calculation in snd_pcm_status() and snd_pcm_delay() (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Clean up with snd_pcm_avail() and snd_pcm_hw_avail() helpers (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Remove WARN_ON() at snd_pcm_hw_params() error (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Use dma_bytes as size parameter in dma_mmap_coherent() (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Remove VLA usage (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix trailing semicolon (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Workaround for weird PulseAudio behavior on rewind error (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: remove redundant variable runtime (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix UAF at PCM release via PCM timer access (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: prevent UAF in snd_pcm_info (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Forcibly stop at disconnect callback (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Don't call register and disconnect callbacks for internal PCM (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: add SNDRV_PCM_FORMAT_(S,U)20 (Jaroslav Kysela) [1535427]
-- [sound] alsa: rawmidi: Avoid racy info ioctl via ctl device (Jaroslav Kysela) [1535427]
-- [sound] alsa: rawmidi: Fix missing input substream checks in compat ioctls (Jaroslav Kysela) [1535427]
-- [sound] alsa: timer: Remove kernel warning at compat ioctl error paths (Jaroslav Kysela) [1535427]
-- [sound] alsa: timer: Add missing mutex lock for compat ioctls (Jaroslav Kysela) [1535427]
-- [sound] alsa: fix kernel-doc build warning (Jaroslav Kysela) [1535427]
-- [sound] alsa: Use scnprintf() instead of snprintf() for show (Jaroslav Kysela) [1535427]
-- [sound] alsa: add snd_card_disconnect_sync() (Jaroslav Kysela) [1535427]
-- [sound] alsa: info: Use kvzalloc() for a temporary write buffer (Jaroslav Kysela) [1535427]
-- [sound] alsa: snd_hwdep_dsp_load(): don't bother with access_ok() (Jaroslav Kysela) [1535427]
-- [sound] alsa: timer: Limit max instances per timer (Jaroslav Kysela) [1535427]
-- [sound] alsa: hrtimer: make hrtimer_hw const and __initconst (Jaroslav Kysela) [1535427]
-- [sound] alsa: control: Fix a bunch of whitespace errors (Jaroslav Kysela) [1535427]
-- [sound] alsa: control: Fix memory corruption risk in snd_ctl_elem_read (Jaroslav Kysela) [1535427]
-
-* Wed Jun 06 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-899.el7]
-- [char] tpm: fix race condition in tpm_common_write() (Jerry Snitselaar) [1584435]
-- [mailbox] pcc: erroneous error message when parsing ACPI PCCT (Al Stone) [1568211]
-- [mailbox] pcc: Support HW-Reduced Communication Subspace type 2 (Al Stone) [1568211]
-- [kernel] acpica: acpi 6.1: Support for new PCCT subtable (Al Stone) [1568211]
-- [mailbox] pcc: fix channel calculation in get_pcc_channel() (Al Stone) [1568211]
-- [mailbox] pcc: Don't access an unmapped memory address space (Al Stone) [1568211]
-- [mailbox] pcc: optimized pcc_send_data (Al Stone) [1568211]
-- [mailbox] Restructure and simplify PCC mailbox code (Al Stone) [1568211]
-- [hid] hidraw: fix power sequence when closing device (Benjamin Tissoires) [1573282]
-- [hid] hidraw: fix warning destroying hidraw device files after parent (Benjamin Tissoires) [1573282]
-- [hid] hidraw: close underlying device at removal of last reader (Benjamin Tissoires) [1573282]
-- [hid] hidraw: Add spinlock in struct hidraw to protect list (Benjamin Tissoires) [1573282]
-- [hid] hidraw: fix improper mutex release (Benjamin Tissoires) [1573282]
-- [pci] Make error code types consistent in pci_{read, write}_config (Myron Stowe) [1523998]
-- [pci] Improve __pci_read_base() robustness (Myron Stowe) [1523998]
-- [pci] Short-circuit pci_device_is_present() for disconnected devices (Myron Stowe) [1523998]
-- [pci] msi: Skip disabling disconnected devices (Myron Stowe) [1523998]
-- [pci] Don't attempt config access to disconnected devices (Myron Stowe) [1523998]
-- [pci] Export PCI device config accessors (Myron Stowe) [1523998]
-- [pci] Use helper functions to access fields in struct msi_desc (Myron Stowe) [1523998]
-- [watchdog] acpi / watchdog: Fix off-by-one error at resource assignment (David Arcari) [1576173]
-- [watchdog] document watchdog_init_timeout() wdd parameter (David Arcari) [1576173]
-- [watchdog] watchdog_dev: mark expected switch fall-through (David Arcari) [1576173]
-- [watchdog] Fix kref imbalance seen if handle_boot_enabled=0 (David Arcari) [1576173]
-- [watchdog] Fix potential kref imbalance when opening watchdog (David Arcari) [1576173]
-- [whatchdog] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (David Arcari) [1576173]
-- [watchdog] introduce watchdog_worker_should_ping helper (David Arcari) [1576173]
-- [watchdog] core: add option to avoid early handling of watchdog (David Arcari) [1576173]
-- [watchdog] Introduce watchdog_stop_on_unregister helper (David Arcari) [1576173]
-- [watchdog] wdat_wdt: Ping the watchdog on resume (David Arcari) [1576173]
-- [watchdog] pretimeout: add pretimeout_available_governors attribute (David Arcari) [1576173]
-- [watchdog] pretimeout: add option to select a pretimeout governor in runtime (David Arcari) [1576173]
-- [watchdog] pretimeout: add panic pretimeout governor (David Arcari) [1576173]
-- [watchdog] pretimeout: add noop pretimeout governor (David Arcari) [1576173]
-- [watchdog] add watchdog pretimeout governor framework (David Arcari) [1576173]
-- [watchdog] wdat_wdt: Fix warning for using 0 as NULL (David Arcari) [1576173]
-- [watchdog] wdat_wdt: fix return value check in wdat_wdt_probe() (David Arcari) [1576173]
-- [watchdog] add pretimeout support to the core (David Arcari) [1576173]
-- [kernel] acpi / watchdog: Add support for WDAT hardware watchdog (David Arcari) [1576173]
-- [watchdog] core: Fix devres_alloc() allocation size (David Arcari) [1576173]
-- [watchdog] core: Clear WDOG_HW_RUNNING before calling the stop function (David Arcari) [1576173]
-- [watchdog] core: Fix error handling of watchdog_dev_init() (David Arcari) [1576173]
-- [watchdog] Implement status function in watchdog core (David Arcari) [1576173]
-- [watchdog] change watchdog_need_worker logic (David Arcari) [1576173]
-- [kernel] watchdog: Improve description of min_hw_heartbeat_ms (David Arcari) [1576173]
-- [watchdog] skip min and max timeout validity check when max_hw_heartbeat_ms is defined (David Arcari) [1576173]
-- [watchdog] Add a device managed API for watchdog_register_device() (David Arcari) [1576173]
-- [watchdog] core: Fix circular locking dependency (David Arcari) [1576173]
-- [watchdog] core: fix trivial typo in a comment (David Arcari) [1576173]
-- [watchdog] Ensure that wdd is not dereferenced if NULL (David Arcari) [1576173]
-- [watchdog] Add support for minimum time between heartbeats (David Arcari) [1576173]
-- [watchdog] Make stop function optional (David Arcari) [1576173]
-- [watchdog] Introduce WDOG_HW_RUNNING flag (David Arcari) [1576173]
-- [watchdog] Introduce hardware maximum heartbeat in watchdog core (David Arcari) [1576173]
-- [watchdog] Make set_timeout function optional (David Arcari) [1576173]
-- [watchdog] Drop pointer to watchdog device from struct watchdog_device (David Arcari) [1576173]
-- [watchdog] Add support for creating driver specific sysfs attributes (David Arcari) [1576173]
-- [kernel] watchdog: kill unref/ref ops (David Arcari) [1576173]
-- [hwmon] (sch56xx) Drop watchdog driver data reference count callbacks (David Arcari) [1576173]
-- [watchdog] Separate and maintain variables based on variable lifetime (David Arcari) [1576173]
-- [watchdog] diag288: Stop re-using watchdog core internal flags (David Arcari) [1576173]
-- [watchdog] Create watchdog device in watchdog_dev.c (David Arcari) [1576173]
-- [watchdog] core: add reboot notifier support (David Arcari) [1576173]
-- [kernel] watchdog: add units for timeout values in kerneldoc (David Arcari) [1576173]
-- [kernel] watchdog: fix some typos (David Arcari) [1576173]
-- [watchdog] core: propagate ping error code to the user space (David Arcari) [1576173]
-- [watchdog] watchdog_dev: Use single variable name for struct watchdog_device (David Arcari) [1576173]
-- [kernel] watchdog: Always evaluate new timeout against min_timeout (David Arcari) [1576173]
-- [watchdog] watchdog_dev: Use device tree alias for naming watchdogs (David Arcari) [1576173]
-- [watchdog] watchdog_core: Add watchdog registration deferral mechanism (David Arcari) [1576173]
-- [kernel] watchdog: simplify definitions of WATCHDOG_NOWAYOUT(_INIT_STATUS)? (David Arcari) [1576173]
-- [kernel] pm / sleep: Add macro to define common noirq system PM callbacks (David Arcari) [1576173]
-- [watchdog] core: Make dt "timeout-sec" property work on drivers w/out min/max (David Arcari) [1576173]
-- [watchdog] watchdog_core: Fix a trivial typo (David Arcari) [1576173]
-- [watchdog] core: don't try to stop device if not running (David Arcari) [1576173]
-- [kernel] kprobes: Propagate error from disarm_kprobe_ftrace() (Josh Poimboeuf) [1342875]
-- [kernel] kprobes: Propagate error from arm_kprobe_ftrace() (Josh Poimboeuf) [1342875]
-- [kernel] kprobes: makes kprobes/enabled works correctly for optimized kprobes (Josh Poimboeuf) [1342875]
-- [kernel] kprobes: set kprobes_all_disarmed earlier to enable re-optimization (Josh Poimboeuf) [1342875]
-- [mm] initialize pages on demand during boot (Masayoshi Mizuma) [1496330]
-- [mm] split deferred_init_range into initializing and freeing parts (Masayoshi Mizuma) [1496330]
-- [x86] topology: Update the 'cpu cores' field in /proc/cpuinfo correctly across CPU hotplug operations (Prarit Bhargava) [1582023]
-- [x86] get_user: Use pointer masking to limit speculation (Josh Poimboeuf) [1572653]
-- [x86] uaccess: Use __uaccess_begin_nospec() and uaccess_try_nospec (Josh Poimboeuf) [1572653]
-- [x86] Introduce __uaccess_begin_nospec() and uaccess_try_nospec (Josh Poimboeuf) [1572653]
-- [x86] locking/barriers: Add nospec_barrier() (Josh Poimboeuf) [1572653]
-- [x86] usercopy: Replace open coded stac/clac with __uaccess_(begin, end) (Josh Poimboeuf) [1572653]
-- [x86] reorganize SMAP handling in user space accesses (Josh Poimboeuf) [1572653]
-- [x86] uaccess: Tell the compiler that uaccess is unlikely to fault (Josh Poimboeuf) [1572653]
-- [x86] uaccess: fix sparse errors (Josh Poimboeuf) [1572653]
-- [powerpc] 64s: Move the data access exception out-of-line (Mauricio Oliveira) [1581036] {CVE-2018-3639}
-- [powerpc] 64s: Move the hdecrementer exception out-of-line (Mauricio Oliveira) [1581036] {CVE-2018-3639}
-- [powerpc] 64s: Move the decrementer exception out-of-line (Mauricio Oliveira) [1581036] {CVE-2018-3639}
-- [powerpc] 64s: Add support for a store forwarding barrier at kernel entry/exit (Mauricio Oliveira) [1581036] {CVE-2018-3639}
-- [s390] cpum_sf: ensure sample frequency of perf event attributes is non-zero (Hendrik Brueckner) [1582261]
-- [s390] qdio: fix access to uninitialized qdio_q fields (Hendrik Brueckner) [1582262]
-- [s390] dasd: fix failing path verification (Hendrik Brueckner) [1582260]
-- [s390] kdump: System memory overlap during standalone kdump (Hendrik Brueckner) [1582263]
-
-* Tue Jun 05 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-898.el7]
-- [infiniband] i40iw: Remove pre-production workaround for resource profile 1 (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Tear-down connection after CQP Modify QP failure (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Refactor of driver generated AEs (Stefan Assmann) [1576526]
-- [uapi] rdma/i40iw: Move uapi header to uapi (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: include linux/irq.h (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Improve CM node lookup time on connection setup (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Refactor handling of txpend list (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Free IEQ resources (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove setting of rem_addr.len (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove limit on re-posting AEQ entries to HW (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Zero-out consumer key on allocate stag for FMR (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove extra call to i40iw_est_sd() (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Replace mdelay with msleep in i40iw_wait_pe_ready (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Change accelerated flag to bool (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Notify user of established connection after QP in RTS (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Move MPA request event for loopback after connect (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Correct ARP index mask (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Do not free sqbuf when event is I40IW_TIMER_TYPE_CLOSE (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Allocate a sdbuf per CQP WQE (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Fix the connection ORD value for loopback (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Validate correct IRD/ORD connection parameters (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Ignore LLP_DOUBT_REACHABILITY AE (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Fix sequence number for the first partial FPDU (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Selectively teardown QPs on IP addr change event (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Add notifier for network device events (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Correct Q1/XF object count equation (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Use utility function roundup_pow_of_two() (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Set MAX_IRD_SIZE to 64 (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Reinitialize add_sd_cnt (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Use sqsize to initialize cqp_requests elements (Stefan Assmann) [1576526]
-- [infiniband] i40iw: remove unused 'timeval' struct member (Stefan Assmann) [1576526]
-- [infiniband] i40w: Remove garbage at end of INFINIBAND_I40IW Kconfig section (Stefan Assmann) [1576526]
-- [infiniband] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Move cqp_cmd_head init to CQP initialization (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove UDA QP from QoS list if creation fails (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Clear CQP Head/Tail during initialization (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Refactor queue depth calculation (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Reinitialize IEQ on MTU change (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Move ceq_valid to i40iw_sc_dev structure (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Account for IPv6 header when setting MSS (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove unused structures (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Move exception_lan_queue to VSI structure (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove unused static_rsrc from i40iw_create_qp_info (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Ignore AE source field in AEQE for some AEs (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Cleanup AE processing (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Convert timers to use timer_setup() (part 2) (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Convert timers to use timer_setup() (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Remove a set-but-not-used variable (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Suppress gcc 7 fall-through complaints (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Fix a race condition (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Do not allow posting WR after QP is flushed (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Do not generate CQE for RTR on QP flush (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Do not retransmit MPA request after it is ACKed (Stefan Assmann) [1576526]
-- [infiniband] i40iw: delete some stray tabs (Stefan Assmann) [1576526]
-- [netdrv] qede: Do not drop rx-checksum invalidated packets (Harish Patil) [1558328]
-- [netdrv] sfc: stop the TX queue before pushing new buffers (Jarod Wilson) [1547443]
-- [netdrv] sfc: fix ARFS expiry check on EF10 (Jarod Wilson) [1547443]
-- [netdrv] sfc: Use filter index rather than ID for rps_flow_id table (Jarod Wilson) [1547443]
-- [netdrv] sfc: ARFS filter IDs (Jarod Wilson) [1547443]
-- [netdrv] sfc: set and clear interrupt affinity hints (Jarod Wilson) [1547443]
-- [netdrv] sfc: check RSS is active for filter insert (Jarod Wilson) [1547443]
-- [netdrv] sfc: limit ARFS workitems in flight per channel (Jarod Wilson) [1547443]
-- [netdrv] sfc: pass the correctly bogus filter_id to rps_may_expire_flow() (Jarod Wilson) [1547443]
-- [netdrv] sfc: insert ARFS filters with replace_equal=true (Jarod Wilson) [1547443]
-- [netdrv] sfc: remove ctpio_dmabuf_start from stats (Jarod Wilson) [1547443]
-- [netdrv] sfc: Convert timers to use timer_setup() (Jarod Wilson) [1547443]
-- [netdrv] ibmvnic: Only do H_EOI for mobility events (Steve Best) [1583095]
-- [netdrv] ibmvnic: Fix partial success login retries (Steve Best) [1583095]
-- [netdrv] ibmvnic: Introduce hard reset recovery (Steve Best) [1583095]
-- [netdrv] ibmvnic: Set resetting state at earliest possible point (Steve Best) [1583095]
-- [netdrv] ibmvnic: Create separate initialization routine for resets (Steve Best) [1583095]
-- [netdrv] ibmvnic: Handle error case when setting link state (Steve Best) [1583095]
-- [netdrv] ibmvnic: Return error code if init interrupted by transport event (Steve Best) [1583095]
-- [netdrv] ibmvnic: Check CRQ command return codes (Steve Best) [1583095]
-- [netdrv] ibmvnic: Introduce active CRQ state (Steve Best) [1583095]
-- [netdrv] ibmvnic: Mark NAPI flag as disabled when released (Steve Best) [1583095]
-- [netdrv] virtchnl: Add filter data structures (Ivan Vecera) [1579466]
-- [netdrv] virtchnl: Add a macro to check the size of a union (Ivan Vecera) [1579466]
-- [netdrv] virtchnl: Add virtchl structures to support queue channels (Ivan Vecera) [1579466]
-- [net] xfrm4: Remove xfrm_tunnel_notifier (Herbert Xu) [1530476]
-- [net] export netdev_txq_to_tc to allow sch_mqprio to compile as module (Ivan Vecera) [1579358]
-- [net] sched: Identify hardware traffic classes using classid (Ivan Vecera) [1579358]
-- [net] mqprio: Reserve last 32 classid values for HW traffic classes and misc IDs (Ivan Vecera) [1579358]
-- [net] Add sysfs value to determine queue traffic class (Ivan Vecera) [1579358]
-- [net] Move functions for configuring traffic classes out of inline headers (Ivan Vecera) [1579358]
-- [net] pkt_cls: add new tc cls helper to check offload flag and chain index (Ivan Vecera) [1579263]
-- [net] ipv4: Fix graylist symbol change when edit fib_table (Hangbin Liu) [1511351]
-- [net] vlan: Pass ethtool get_ts_info queries to real device (Hangbin Liu) [1520356]
-- [net] vlan: Pass SIOC(SG)HWTSTAMP ioctls to real device (Hangbin Liu) [1520356]
-- [net] nf_reset: also clear nfctinfo bits (Florian Westphal) [1572983]
-- [net] vxlan: add ttl inherit support (Hangbin Liu) [1512782]
-
-* Fri Jun 01 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-897.el7]
-- [usb] typec: wcove: fix the sink capabilities (Torez Smith) [1540721]
-- [usb] sparc, leon: Select USB_UHCI_BIG_ENDIAN_(MMIO, DESC) (Torez Smith) [1540721]
-- [usb] Move USB_UHCI_BIG_ENDIAN_* out of USB_SUPPORT (Torez Smith) [1540721]
-- [usb] r8152: set rx mode early when linking on (Torez Smith) [1540721]
-- [usb] r8152: fix wrong checksum status for received IPv4 packets (Torez Smith) [1540721]
-- [usb] lan78xx: remove redundant initialization of pointer 'phydev' (Torez Smith) [1540721]
-- [usb] qmi_wwan: Add support for Quectel EP06 (Torez Smith) [1540721]
-- [usb] serial: keyspan: Drop firmware Kconfig options (Torez Smith) [1540721]
-- [usb] serial: pl2303: new device id for Chilitag (Torez Smith) [1540721]
-- [usb] misc: fix up some remaining DEVICE_ATTR() usages (Torez Smith) [1540721]
-- [usb] atm: fix up some remaining DEVICE_ATTR() usage (Torez Smith) [1540721]
-- [usb] move many drivers to use DEVICE_ATTR_WO (Torez Smith) [1540721]
-- [usb] move many drivers to use DEVICE_ATTR_RO (Torez Smith) [1540721]
-- [usb] move many drivers to use DEVICE_ATTR_RW (Torez Smith) [1540721]
-- [usb] misc: chaoskey: Use true and false for boolean values (Torez Smith) [1540721]
-- [usb] storage: remove old wording about how to submit a change (Torez Smith) [1540721]
-- [usb] storage: remove invalid URL from drivers (Torez Smith) [1540721]
-- [usb] usbnet: silence an unnecessary warning (Torez Smith) [1540721]
-- [usb] serial: remove redundant initializations of 'mos_parport' (Torez Smith) [1540721]
-- [usb] usbip: vhci_hcd: update 'status' file header and format (Torez Smith) [1540721]
-- [usb] serial: simple: add Motorola Tetra driver (Torez Smith) [1540721]
-- [usb] cdc-acm: apply quirk for card reader (Torez Smith) [1540721]
-- [usb] option: Add support for FS040U modem (Torez Smith) [1540721]
-- [usb] r8152: disable RX aggregation on Dell TB16 dock (Torez Smith) [1540721]
-- [usb] uhci: Add clk support to uhci-platform (Torez Smith) [1540721]
-- [usb] lan78xx: Fix failure in USB Full Speed (Torez Smith) [1540721]
-- [usb] uas: unconditionally bring back host after reset (Torez Smith) [1540721]
-- [usb] cdc-acm: Do not log urb submission errors on disconnect (Torez Smith) [1540721]
-- [usb] xhci-mtk: fix semicolon.cocci warnings (Torez Smith) [1540721]
-- [usb] misc: usb3503: make sure reset is low for at least 100us (Torez Smith) [1540721]
-- [usb] uas: ignore UAS for Norelsys NS1068(X) chips (Torez Smith) [1540721]
-- [usb] xhci-mtk: supports remote wakeup for mt2712 with two xHCI IPs (Torez Smith) [1540721]
-- [usb] clarify USB_DT_USB_SSP_CAP_SIZE(ssac) definition (Torez Smith) [1540721]
-- [usb] fix usbmon BUG trigger (Torez Smith) [1540721]
-- [usb] serial: ark3116: move TIOCGSERIAL ioctl case to function (Torez Smith) [1540721]
-- [usb] serial: ark3116: remove dummy TIOCSSERIAL ioctl (Torez Smith) [1540721]
-- [usb] usbip: vudc_tx: fix v_send_ret_submit() vulnerability to null xfer buffer (Torez Smith) [1540721]
-- [usb] usbip: remove kernel addresses from usb device and urb debug msgs (Torez Smith) [1540721]
-- [usb] usbip: fix vudc_rx: harden CMD_SUBMIT path to handle malicious input (Torez Smith) [1540721]
-- [usb] usbip: vhci: fix spelling mistake: "synchronuously" -> "synchronously" (Torez Smith) [1540721]
-- [usb] usbip: remove useless call in usbip_recv (Torez Smith) [1540721]
-- [usb] host: Use zeroing memory allocator rather than allocator/memset (Torez Smith) [1540721]
-- [usb] serial: cp210x: add new device ID ELV ALC 8xxx (Torez Smith) [1540721]
-- [usb] media: uvcvideo: Use ktime_t for stats (Torez Smith) [1540721]
-- [usb] usb: qmi_wwan: add support for YUGA CLM920-NC5 PID 0x9625 (Torez Smith) [1540721]
-- [usb] serial: cp210x: add IDs for LifeScan OneTouch Verio IQ (Torez Smith) [1540721]
-- [usb] xhci: Add XHCI_TRUST_TX_LENGTH for Renesas uPD720201 (Torez Smith) [1540721]
-- [usb] xhci: Fix use-after-free in xhci debugfs (Torez Smith) [1540721]
-- [usb] xhci: Fix xhci debugfs NULL pointer dereference in resume from hibernate (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: add id for Airbus DS P8GR (Torez Smith) [1540721]
-- [usb] pd: fix the offset for SVID specific commands (Torez Smith) [1540721]
-- [usb] Add device quirk for Logitech HD Pro Webcam C925e (Torez Smith) [1540721]
-- [usb] add RESET_RESUME for ELSA MicroLink 56K (Torez Smith) [1540721]
-- [usb] usbip: stub_rx: fix static checker warning on unnecessary checks (Torez Smith) [1540721]
-- [usb] usbip: prevent leaking socket pointer address in messages (Torez Smith) [1540721]
-- [usb] usbip: stub: stop printing kernel pointer addresses in messages (Torez Smith) [1540721]
-- [usb] usbip: vhci: stop printing kernel pointer addresses in messages (Torez Smith) [1540721]
-- [usb] Fix off by one in type-specific length check of BOS SSP capability (Torez Smith) [1531359 1540721]
-- [usb] serial: option: adding support for YUGA CLM920-NC5 (Torez Smith) [1540721]
-- [usb] usbtest: Add TEST 29, toggle sync, Clear toggle between bulk writes (Torez Smith) [1540721]
-- [usb] core: add support for USB_REQ_SET_ISOCH_DELAY (Torez Smith) [1540721]
-- [usb] qmi_wwan: set FLAG_SEND_ZLP to avoid network initiated disconnect (Torez Smith) [1540721]
-- [usb] usb: qmi_wwan: add Telit ME910 PID 0x1101 support (Torez Smith) [1540721]
-- [usb] serial: qcserial: add Sierra Wireless EM7565 (Torez Smith) [1540721]
-- [usb] serial: option: add support for Telit ME910 PID 0x1101 (Torez Smith) [1540721]
-- [usb] serial: io_edgeport: fix possible sleep-in-atomic (Torez Smith) [1540721]
-- [usb] qmi_wwan: add Sierra EM7565 1199:9091 (Torez Smith) [1540721]
-- [usb] revert "usb: core: only clean up what we allocated" (Torez Smith) [1540721]
-- [usb] xhci: make function xhci_dbc_free_req static (Torez Smith) [1540721]
-- [usb] xhci: fixup incorrect memset size parameter when clearing up DbC on exit (Torez Smith) [1540721]
-- [usb] remove the URB_NO_FSBR flag (Torez Smith) [1540721]
-- [usb] core: only clean up what we allocated (Torez Smith) [1540721]
-- [usb] xhci: fix TDS for MTK xHCI1.1 (Torez Smith) [1540721]
-- [usb] xhci: Don't add a virt_dev to the devs array before it's fully allocated (Torez Smith) [1540721]
-- [usb] xhci: add port status tracing for Get Hub Status requests (Torez Smith) [1540721]
-- [usb] xhci: add port status tracing for Get Port Status hub requests (Torez Smith) [1540721]
-- [usb] xhci: allow imod-interval to be configurable (Torez Smith) [1540721]
-- [usb] xhci: Cleanup printk debug message for ERST (Torez Smith) [1540721]
-- [usb] xhci: Cleanup printk debug message for registers (Torez Smith) [1540721]
-- [usb] xhci: Add DbC support in xHCI driver (Torez Smith) [1540721 1493823]
-- [usb] xhci: Make some static functions global (Torez Smith) [1540721]
-- [usb] xhci: remove unnecessary boolean parameter from xhci_alloc_command (Torez Smith) [1540721]
-- [usb] xhci: add helper to allocate command with input context (Torez Smith) [1540721]
-- [usb] xhci: remove unused variable ep_ring (Torez Smith) [1540721]
-- [usb] xhci: remove unused variable urb_priv (Torez Smith) [1540721]
-- [usb] xhci: remove unused variable ep (Torez Smith) [1540721]
-- [usb] xhci: remove unused variable last_freed_endpoint (Torez Smith) [1540721]
-- [usb] media: uvcvideo: Mark buffer error where overflow (Torez Smith) [1540721]
-- [usb] usbip: fix stub_send_ret_submit() vulnerability to null transfer_buffer (Torez Smith) [1540721]
-- [usb] usbip: prevent vhci_hcd driver from leaking a socket pointer address (Torez Smith) [1540721]
-- [usb] usbip: fix stub_rx: harden CMD_SUBMIT path to handle malicious input (Torez Smith) [1540721]
-- [usb] usbip: fix stub_rx: get_pipe() to validate endpoint number (Torez Smith) [1540721]
-- [usb] media: uvcvideo: Remove duplicate & operation (Torez Smith) [1540721]
-- [usb] uas and storage: Add US_FL_BROKEN_FUA for another JMicron JMS567 ID (Torez Smith) [1540721]
-- [usb] usbnet: fix alignment for frames with no ethernet header (Torez Smith) [1540721]
-- [usb] typec: tcpm: Only request matching pdos (Torez Smith) [1540721]
-- [usb] typec: tcpm: Validate source and sink caps (Torez Smith) [1540721]
-- [usb] early: Correct the endpoint type value for bulk in endpoint (Torez Smith) [1540721]
-- [usb] uas: Remove US_FL_NO_ATA_1X unusual device entries for Seagate devices (Torez Smith) [1540721]
-- [usb] storage: Remove obsolete "FIXME" (Torez Smith) [1540721]
-- [usb] typec: remove duplicate includes (Torez Smith) [1540721]
-- [usb] core: Fix logging messages with spurious periods after newlines (Torez Smith) [1540721]
-- [usb] xhci: fix panic in xhci_free_virt_devices_depth_first (Torez Smith) [1540721]
-- [usb] xhci: Don't show incorrect WARN message about events for empty rings (Torez Smith) [1554051 1540721]
-- [usb] usbip: Fix USB device hang due to wrong enabling of scatter-gather (Torez Smith) [1540721]
-- [usb] uas: Always apply US_FL_NO_ATA_1X quirk to Seagate devices (Torez Smith) [1540721]
-- [usb] quirks: Add no-lpm quirk for KY-688 USB 3.1 Type-C Hub (Torez Smith) [1540721]
-- [usb] hub: Cycle HUB power when initialization fails (Torez Smith) [1540721]
-- [usb] core: Add type-specific length check of BOS descriptors (Torez Smith) [1531359 1540721]
-- [usb] host: fix incorrect updating of offset (Torez Smith) [1540721]
-- [usb] ulpi: fix bus-node lookup (Torez Smith) [1540721]
-- [usb] usbfs: Filter flags passed in from user space (Torez Smith) [1540721]
-- [usb] add user selectable option for the whole USB Type-C Support (Torez Smith) [1540721]
-- [usb] of: clean up device-node helper (Torez Smith) [1540721]
-- [usb] ledtrig-usbport: fix of-node leak (Torez Smith) [1540721]
-- [usb] add device-tree support for interfaces (Torez Smith) [1540721]
-- [usb] typec: tcpm: fusb302: Resolve out of order messaging events (Torez Smith) [1540721]
-- [usb] typec: fusb302: Use dev_err during probe (Torez Smith) [1540721]
-- [usb] usbip: fix spelling mistake: "synchronuously" -> "synchronously" (Torez Smith) [1540721]
-- [usb] host: whci: remove redundant variable t (Torez Smith) [1540721]
-- [usb] core: lower log level when device is not able to deal with string (Torez Smith) [1540721]
-- [usb] serial: usb_debug: add new USB device id (Torez Smith) [1540721]
-- [usb] serial: ark3116: clean up return values of register accessors (Torez Smith) [1540721]
-- [usb] serial: iuu_phoenix: remove redundant assignment of DIV to itself (Torez Smith) [1540721]
-- [usb] serial: option: add Quectel BG96 id (Torez Smith) [1540721]
-- [usb] treewide: setup_timer() -> timer_setup() (Torez Smith) [1540721]
-- [usb] treewide: init_timer() -> setup_timer() (Torez Smith) [1540721]
-- [usb] au0828: Add timer to restart TS stream if no data arrives on bulk endpoint (Torez Smith) [1540721]
-- [usb] qmi_wwan: add Quectel BG96 2c7c:0296 (Torez Smith) [1540721]
-- [usb] usbnet: ipheth: fix potential null pointer dereference in ipheth_carrier_set (Torez Smith) [1540721]
-- [usb] usb: hso.c: remove unneeded DRIVER_LICENSE #define (Torez Smith) [1540721]
-- [usb] cdc_ncm: GetNtbFormat endian fix (Torez Smith) [1540721]
-- [usb] usbnet: ipheth: prevent TX queue timeouts when device not ready (Torez Smith) [1540721]
-- [usb] usbfs: compute urb->actual_length for isochronous (Torez Smith) [1540721]
-- [usb] core: message: remember to reset 'ret' to 0 when necessary (Torez Smith) [1540721]
-- [usb] usb: asix: fill null-ptr-deref in asix_suspend (Torez Smith) [1540721]
-- [usb] revert "net: usb: asix: fill null-ptr-deref in asix_suspend" (Torez Smith) [1540721]
-- [usb] qmi_wwan: Add missing skb_reset_mac_header-call (Torez Smith) [1540721]
-- [usb] qmi_wwan: fix divide by 0 on bad descriptors (Torez Smith) [1540721]
-- [usb] cdc_ether: fix divide by 0 on bad descriptors (Torez Smith) [1540721]
-- [usb] typec: Remove remaining redundant license text (Torez Smith) [1540721]
-- [usb] typec: add SPDX identifiers to some files (Torez Smith) [1540721]
-- [usb] host: xhci-debugfs: add SPDX lines (Torez Smith) [1540721]
-- [usb] add SPDX identifiers to all remaining Makefiles (Torez Smith) [1540721]
-- [usb] adutux: remove redundant variable minor (Torez Smith) [1540721]
-- [usb] core: add a new usb_get_ptm_status() helper (Torez Smith) [1540721]
-- [usb] core: add a 'type' parameter to usb_get_status() (Torez Smith) [1540721]
-- [usb] core: introduce a new usb_get_std_status() helper (Torez Smith) [1540721]
-- [usb] core: rename usb_get_status() 'type' argument to 'recip' (Torez Smith) [1540721]
-- [usb] core: add Status Type definitions (Torez Smith) [1540721]
-- [usb] host: ehci: Remove redundant license text (Torez Smith) [1540721]
-- [usb] host: whci: Remove redundant license text (Torez Smith) [1540721]
-- [usb] host: xhci: Remove redundant license text (Torez Smith) [1540721]
-- [usb] early: Remove redundant license text (Torez Smith) [1540721]
-- [usb] typec: Remove redundant license text (Torez Smith) [1540721]
-- [usb] usbip: Remove redundant license text (Torez Smith) [1540721]
-- [usb] wusbcore: Remove redundant license text (Torez Smith) [1540721]
-- [usb] usbip: use monotonic timestamps (Torez Smith) [1540721]
-- [usb] usbip: fix off-by-one frame number calculation (Torez Smith) [1540721]
-- [usb] serial: Change DbC debug device binding ID (Torez Smith) [1540721]
-- [usb] early: Use new USB product ID and strings for DbC device (Torez Smith) [1540721]
-- [usb] usb: asix: fill null-ptr-deref in asix_suspend (Torez Smith) [1540721]
-- [usb] Add delay-init quirk for Corsair K70 LUX keyboards (Torez Smith) [1540721]
-- [usb] serial: fix module-license macros (Torez Smith) [1540721]
-- [usb] common: Remove redundant license text (Torez Smith) [1540721]
-- [usb] usb-skeleton: Remove redundant license text (Torez Smith) [1540721]
-- [usb] core: Remove redundant license text (Torez Smith) [1540721]
-- [usb] image: Remove redundant license text (Torez Smith) [1540721]
-- [usb] class: Remove redundant license text (Torez Smith) [1540721]
-- [usb] atm: Remove redundant license text (Torez Smith) [1540721]
-- [usb] misc: Remove redundant license text (Torez Smith) [1540721]
-- [usb] storage: Remove redundant license text (Torez Smith) [1540721]
-- [usb] serial: Remove redundant license text (Torez Smith) [1540721]
-- [usb] add SPDX identifiers to all remaining files in usb/ (Torez Smith) [1540721]
-- [usb] core: move existing SPDX tags to top of the file (Torez Smith) [1540721]
-- [usb] xhci: tegra: use time64_t for printing timestamp (Torez Smith) [1540721]
-- [usb] license cleanup: add SPDX license identifier to uapi header files with a license (Torez Smith) [1540721]
-- [usb] license cleanup: add SPDX license identifier to uapi header files with no license (Torez Smith) [1540721]
-- [usb] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Torez Smith) [1540721]
-- [usb] usbtest: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] kconfig: clarify use of USB_PCI (Torez Smith) [1540721]
-- [usb] host: pci-quirks: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: xhci-hub: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: ehci-hcd: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: ohci-hcd: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: xhci-mem: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: xhci: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] image: mdc800: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] core: urb: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] storage: uas: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] usbip: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] usb-storage: make use of srb local variable (Torez Smith) [1540721]
-- [usb] typec: tps6598x: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] wusbcore: Use put_unaligned_le32 (Torez Smith) [1540721]
-- [usb] wusbcore: wa-xfer: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] hso: remove redundant unused variable dev (Torez Smith) [1540721]
-- [usb] serial: qcserial: add pid/vid for Sierra Wireless EM7355 fw update (Torez Smith) [1540721]
-- [usb] serial: kobil_sct: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] storage: sddr55: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] atm: cxacru: mark expected switch fall-throughs (Torez Smith) [1540721]
-- [usb] class: usbtmc: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] xhci-mtk: fix ptr_ret.cocci warnings (Torez Smith) [1540721]
-- [usb] cdc_ether: flag the Huawei ME906/ME909 as WWAN (Torez Smith) [1540721]
-- [usb] net/usb: add device id for TP-LINK UE300 USB 3.0 Ethernet (Torez Smith) [1540721]
-- [usb] Force disconnect Huawei 4G modem during suspend (Torez Smith) [1540721]
-- [usb] host: modify description for MTK xHCI config (Torez Smith) [1540721]
-- [usb] xhci-mtk: add optional mcu and dma bus clocks (Torez Smith) [1540721]
-- [usb] xhci-mtk: remove dummy wakeup debounce clocks (Torez Smith) [1540721]
-- [usb] xhci-mtk: support option to disable usb3 ports (Torez Smith) [1540721]
-- [usb] xhci-mtk: check clock stability of U3_MAC (Torez Smith) [1540721]
-- [usb] xhci-mtk: use ports count from xhci in xhci_mtk_sch_init() (Torez Smith) [1540721]
-- [usb] xhci-mtk: use dma_set_mask_and_coherent() in probe function (Torez Smith) [1540721]
-- [usb] misc: usbtest: remove duplicate & operation (Torez Smith) [1540721]
-- [usb] hub: Allow reset retry for USB2 devices on connect bounce (Torez Smith) [1540721]
-- [usb] core: fix out-of-bounds access bug in usb_get_bos_descriptor() (Torez Smith) [1540721]
-- [usb] usb: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] usb/usbnet: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] Apply hardware LPM attributes to 3.1 device (Torez Smith) [1540721]
-- [usb] quirks: add quirk for WORLDE MINI MIDI keyboard (Torez Smith) [1540721]
-- [usb] xhci: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] typec: wcove: fix uninitialized usbc_irq1 and usbc_irq2 (Torez Smith) [1540721]
-- [usb] typec: tcpm: reset the port on removal (Torez Smith) [1540721]
-- [usb] cdc_acm: Add quirk for Elatec TWN3 (Torez Smith) [1540721]
-- [usb] devio: revert "usb: devio: Don't corrupt user memory" (Torez Smith) [1540721]
-- [usb] xhci: Handle error condition in xhci_stop_device() (Torez Smith) [1540721]
-- [usb] xhci: Reset halted endpoint if trb is noop (Torez Smith) [1540721]
-- [usb] xhci: Cleanup current_cmd in xhci_cleanup_command_queue() (Torez Smith) [1540721]
-- [usb] serial: metro-usb: add MS7820 device id (Torez Smith) [1540721]
-- [usb] serial: drop unused core USB driver (Torez Smith) [1540721]
-- [usb] serial: metro-usb: add missing interrupt-out endpoint check (Torez Smith) [1540721]
-- [usb] serial: metro-usb: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: metro-usb: stop I/O after failed open (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: simplify init-session logic (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: clean up init-session messages (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: drop unused timer initialisation (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: fix memory leak on probe errors (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: fix I/O after failed probe and remove (Torez Smith) [1540721]
-- [usb] core: Add a helper function to check the validity of EP type in URB (Torez Smith) [1540721]
-- [usb] usbtest: fix NULL pointer dereference (Torez Smith) [1540721]
-- [usb] misc: usbtest: Fix overflow in usbtest_do_ioctl() (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] cdc_ether: flag the u-blox TOBY-L2 and SARA-U2 as wwan (Torez Smith) [1540721]
-- [usb] serial: console: fix use-after-free after failed setup (Torez Smith) [1540721]
-- [usb] serial: console: fix use-after-free on disconnect (Torez Smith) [1540721]
-- [usb] xhci: trace slot context when calling xhci_configure_endpoint() (Torez Smith) [1540721]
-- [usb] xhci: allow TRACE to work with EVENT ring dequeue (Torez Smith) [1540721]
-- [usb] xhci: reduce device initiated resume time variance (Torez Smith) [1540721]
-- [usb] xhci: Handle USB transaction error on address command (Torez Smith) [1540721]
-- [usb] xhci: Remove xhci->mutex from xhci_alloc_dev() (Torez Smith) [1540721]
-- [usb] xhci: Return error when host is dead in xhci_disable_slot() (Torez Smith) [1540721]
-- [usb] xhci: Fix memory leak when xhci_disable_slot() returns error (Torez Smith) [1540721]
-- [usb] xhci: Fix potential memory leak in xhci_disable_slot() (Torez Smith) [1540721]
-- [usb] xhci: Disable slot even when virt-dev is null (Torez Smith) [1540721]
-- [usb] xhci: Add debugfs interface for xHCI driver (Torez Smith) [1540721]
-- [usb] xhci: add port speed ID to portsc tracing (Torez Smith) [1540721]
-- [usb] host: xhci support option to disable the xHCI USB2 HW LPM (Torez Smith) [1540721]
-- [usb] usb: speedtch: use setup_timer() helper (Torez Smith) [1540721]
-- [usb] usb: atm: cxacru: use setup_timer() helper (Torez Smith) [1540721]
-- [usb] usb: hcd: use setup_timer() helper (Torez Smith) [1540721]
-- [usb] typec: driver for TI TPS6598x USB Power Delivery controllers (Torez Smith) [1540721]
-- [usb] typec: wcove: start using tcpm for USB PD support (Torez Smith) [1540721]
-- [usb] rndis_host: support Novatel Verizon USB730L (Torez Smith) [1540721]
-- [usb] serial: qcserial: add Dell DW5818, DW5819 (Torez Smith) [1540721]
-- [usb] r8152: add Linksys USB3GIGV1 id (Torez Smith) [1540721]
-- [usb] cdc-wdm: ignore -EPIPE from GetEncapsulatedResponse (Torez Smith) [1540721]
-- [usb] devio: Don't corrupt user memory (Torez Smith) [1540721]
-- [usb] devio: Prevent integer overflow in proc_do_submiturb() (Torez Smith) [1540721]
-- [net] Remove useless function skb_header_release (Torez Smith) [1540721]
-- [usb] uas: fix bug in handling of alternate settings (Torez Smith) [1540721]
-- [usb] usb-storage: unusual_devs entry to fix write-access regression for Seagate external drives (Torez Smith) [1540721]
-- [usb] usb-storage: fix bogus hardware error messages for ATA pass-thru devices (Torez Smith) [1540721]
-- [usb] usb: catc: use setup_timer() helper (Torez Smith) [1540721]
-- [usb] lan78xx: Use default values loaded from EEPROM/OTP after reset (Torez Smith) [1540721]
-- [usb] lan78xx: Allow EEPROM write for less than MAX_EEPROM_SIZE (Torez Smith) [1540721]
-- [usb] lan78xx: Fix for eeprom read/write when device auto suspend (Torez Smith) [1540721]
-- [usb] core: harden cdc_parse_cdc_header (Torez Smith) [1540721]
-- [usb] fix out-of-bounds in usb_set_configuration (Torez Smith) [1540721]
-- [usb] serial: cp210x: add support for ELV TFD500 (Torez Smith) [1540721]
-- [usb] revert "xhci: Limit USB2 port wake support for AMD Promontory hosts" (Torez Smith) [1540721]
-- [usb] xhci: Fix sleeping with spin_lock_irq() held in ASmedia 1042A workaround (Torez Smith) [1540721]
-- [usb] xhci: fix wrong endpoint ESIT value shown in tracing (Torez Smith) [1540721]
-- [usb] pci-quirks.c: Corrected timeout values used in handshake (Torez Smith) [1540721]
-- [usb] xhci: fix finding correct bus_state structure for USB 3.1 hosts (Torez Smith) [1540721]
-- [usb] xhci: Free the right ring in xhci_add_endpoint() (Torez Smith) [1540721]
-- [usb] storage: make const arrays static, reduces object code size (Torez Smith) [1540721]
-- [usb] typec: tcpm: Rewrite comparison to NULL pointer (Torez Smith) [1540721]
-- [usb] Increase quirk delay for USB devices (Torez Smith) [1540721]
-- [usb] typec: fusb302: Move out of staging (Torez Smith) [1540721]
-- [usb] typec: tcpm: Move out of staging (Torez Smith) [1540721]
-- [usb] serial: option: add support for TP-Link LTE module (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: add id for Cypress WICED dev board (Torez Smith) [1540721]
-- [usb] smsc95xx: Configure pause time to 0xffff when tx flow control enabled (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: make vhci_hc_driver const (Torez Smith) [1540721]
-- [usb] phy: Avoid unchecked dereference warning (Torez Smith) [1540721]
-- [usb] xhci-mtk: add generic compatible string (Torez Smith) [1540721]
-- [usb] usbip: auto retry for concurrent attach (Torez Smith) [1540721]
-- [usb] serial: option: simplify 3 D-Link device entries (Torez Smith) [1540721]
-- [usb] serial: option: add support for D-Link DWM-157 C1 (Torez Smith) [1540721]
-- [usb] core: usbport: fix "bug: key not in .data" when lockdep is enabled (Torez Smith) [1540721]
-- [usb] cdc_ncm: flag the u-blox TOBY-L4 as wwan (Torez Smith) [1540721]
-- [usb] Add device quirk for Logitech HD Pro Webcam C920-C (Torez Smith) [1540721]
-- [usb] misc: lvstest: add entry to place port in compliance mode (Torez Smith) [1540721]
-- [usb] xhci: Support enabling of compliance mode for xhci 1.1 (Torez Smith) [1540721]
-- [usb] xhci: Fix regression when ATI chipsets detected (Torez Smith) [1540721]
-- [usb] quirks: add delay init quirk for Corsair Strafe RGB keyboard (Torez Smith) [1540721]
-- [usb] common: use of_property_read_bool() (Torez Smith) [1540721]
-- [usb] core: constify vm_operations_struct (Torez Smith) [1540721]
-- [usb] misc: ftdi-elan: fix duplicated code for different branches (Torez Smith) [1540721]
-- [usb] core: Avoid race of async_completed() w/ usbdev_release() (Torez Smith) [1540721]
-- [usb] make device_type const (Torez Smith) [1540721]
-- [usb] scsi: uas: move eh_bus_reset_handler to eh_device_reset_handler (Torez Smith) [1540721]
-- [usb] xhci: rework bus_resume and check ports are suspended before resuming them (Torez Smith) [1540721]
-- [usb] Increase root hub reset signaling time to prevent retry (Torez Smith) [1540721]
-- [usb] xhci: add port status tracing (Torez Smith) [1540721]
-- [usb] xhci: rename temp and temp1 variables (Torez Smith) [1540721]
-- [usb] xhci: Add port status decoder for tracing purposes (Torez Smith) [1540721]
-- [usb] xhci: add definitions for all port link states (Torez Smith) [1540721]
-- [usb] phy: Add USB charger support (Torez Smith) [1540721]
-- [usb] uapi: usb: Introduce USB charger type and state definition (Torez Smith) [1540721]
-- [usb] serial: pl2303: add new ATEN device id (Torez Smith) [1540721]
-- [usb] quirks: Add no-lpm quirk for Moshi USB to Ethernet Adapter (Torez Smith) [1540721]
-- [usb] Check for dropped connection before switching to full speed (Torez Smith) [1540721]
-- [usb] xhci: Add quirk for Certain failing HP keyboard on reset after resume (Torez Smith) [1540721]
-- [usb] atm: ueagle-atm: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] usbtmc: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] wusbcore: dev-sysfs: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] wusbcore: wusbhc: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] wusbcore: cbaf: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] usbsevseg: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] hcd: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] atm: make atmdev_ops const (Torez Smith) [1540721]
-- [usb] speedtch: constify usb_device_id (Torez Smith) [1540721]
-- [usb] hwa-hc: constify usb_device_id (Torez Smith) [1540721]
-- [usb] qmi_wwan: fix NULL deref on disconnect (Torez Smith) [1540721]
-- [usb] usb: rtl8150: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: r8152: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: kaweth: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: ipheth: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: cdc-phonet: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: catc: constify usb_device_id and fix space before '[' error (Torez Smith) [1540721]
-- [usb] asix: Fix small memory leak in ax88772_unbind() (Torez Smith) [1540721]
-- [usb] asix: Ensure asix_rx_fixup_info members are all reset (Torez Smith) [1540721]
-- [usb] asix: Add rx->ax_skb = NULL after usbnet_skb_return() (Torez Smith) [1540721]
-- [usb] qmi_wwan: add D-Link DWM-222 device ID (Torez Smith) [1540721]
-- [usb] lan78xx: Fix to handle hard_header_len update (Torez Smith) [1540721]
-- [usb] lan78xx: USB fast connect/disconnect crash fix (Torez Smith) [1540721]
-- [usb] xhci: Reset Renesas uPD72020x USB controller for 32-bit DMA issue (Torez Smith) [1540721]
-- [usb] pci: Add pci_reset_function_locked() (Torez Smith) [1540721]
-- [usb] serial: option: add D-Link DWM-222 device ID (Torez Smith) [1540721]
-- [usb] whci-hcd: constify hc_driver structures (Torez Smith) [1540721]
-- [usb] hwa: constify hc_driver structures (Torez Smith) [1540721]
-- [usb] core: unlink urbs from the tail of the endpoint's urb_list (Torez Smith) [1540721]
-- [usb] usb-storage: fix deadlock involving host lock and scsi_done (Torez Smith) [1540721]
-- [usb] uas: Add US_FL_IGNORE_RESIDUE for Initio Corporation INIC-3069 (Torez Smith) [1540721]
-- [usb] hcd: Mark secondary HCD as dead if the primary one died (Torez Smith) [1540721]
-- [usb] core: hub: controller driver name may be NULL (Torez Smith) [1540721]
-- [usb] Convert to using pOF instead of full_name (Torez Smith) [1540721]
-- [usb] atm: remove unneeded MODULE_VERSION() usage (Torez Smith) [1540721]
-- [usb] cdc-wdm: remove unneeded DRIVER_VERSION define (Torez Smith) [1540721]
-- [usb] microtek: remove unneeded DRIVER_VERSION macro (Torez Smith) [1540721]
-- [usb] realtek_cr: remove unneeded MODULE_VERSION() usage (Torez Smith) [1540721]
-- [usb] usbip: remove unneeded MODULE_VERSION() usage (Torez Smith) [1540721]
-- [usb] misc: remove unneeded MODULE_VERSION() usage (Torez Smith) [1540721]
-- [usb] xhci: fix memleak in xhci_run() (Torez Smith) [1540721]
-- [usb] xhci: fix spinlock recursion for USB2 test mode (Torez Smith) [1540721]
-- [usb] xhci: fix 20000ms port resume timeout (Torez Smith) [1540721]
-- [usb] xhci: Issue stop EP command only when the EP state is running (Torez Smith) [1540721]
-- [usb] xhci: Fix NULL pointer dereference when cleaning up streams for removed host (Torez Smith) [1540721]
-- [usb] cdc_ncm: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] usb: audio: specify exact endiannes of descriptors (Torez Smith) [1540721]
-- [usb] atm: ueagle-atm: fix spelling mistake: "submition" -> "submission" (Torez Smith) [1540721]
-- [usb] misc: ftdi-elan: compress return logic into one line (Torez Smith) [1540721]
-- [usb] misc: sisusbvga: compress return logic into one line (Torez Smith) [1540721]
-- [usb] storage: return on error to avoid a null pointer dereference (Torez Smith) [1540721]
-- [usb] cdc-acm: add device-id for quirky printer (Torez Smith) [1540721]
-- [usb] serial: cp210x: add support for Qivicon USB ZigBee dongle (Torez Smith) [1540721]
-- [usb] smsc95xx: use ethtool_op_get_ts_info() (Torez Smith) [1540721]
-- [usb] cdc_ncm: Set NTB format again after altsetting switch for Huawei devices (Torez Smith) [1540721]
-- [usb] serial: safe_serial: move __inline__ before return type (Torez Smith) [1540721]
-- [usb] cdc_mbim: apply "NDP to end" quirk to HP lt4132 (Torez Smith) [1540721]
-- [usb] cdc_ncm: Reduce memory use when kernel memory low (Torez Smith) [1540721]
-- [usb] usbdevfs: get rid of field-by-field copyin (Torez Smith) [1540721]
-- [usb] Add USB quirk for HVR-950q to avoid intermittent device resets (Torez Smith) [1540721]
-- [usb] usb hub_probe: rework ugly goto-into-compound-statement (Torez Smith) [1540721]
-- [usb] serial: cp210x: add ID for CEL EM3588 USB ZigBee stick (Torez Smith) [1540721]
-- [usb] usb: asix88179_178a: Add support for the Belkin B2B128 (Torez Smith) [1540721]
-- [usb] usbip: Fix uninitialized variable bug in vhci (Torez Smith) [1540721]
-- [usb] core: read USB ports from DT in the usbport LED trigger driver (Torez Smith) [1540721]
-- [usb] r8152: correct the definition (Torez Smith) [1540721]
-- [usb] serial: propagate late probe errors (Torez Smith) [1540721]
-- [usb] serial: refactor port endpoint setup (Torez Smith) [1540721]
-- [usb] manual clean code which call skb_put_(data:zero) (Torez Smith) [1540721]
-- [usb] replace more place to skb_put_(data:zero) (Torez Smith) [1540721]
-- [usb] introduce __skb_put_(zero, data, u8) (Torez Smith) [1540721]
-- [usb] xhci: Limit USB2 port wake support for AMD Promontory hosts (Torez Smith) [1540721]
-- [usb] mfd: intel_soc_pmic_bxtwc: Use chained IRQs for second level IRQ chips (Torez Smith) [1540721]
-- [usb] networking: add and use skb_put_u8() (Torez Smith) [1540721]
-- [usb] networking: make skb_push & __skb_push return void pointers (Torez Smith) [1540721]
-- [usb] networking: introduce and use skb_put_data() (Torez Smith) [1540721]
-- [usb] networking: convert many more places to skb_put_zero() (Torez Smith) [1540721]
-- [usb] r8152: move calling delay_autosuspend function (Torez Smith) [1540721]
-- [usb] r8152: split rtl8152_resume function (Torez Smith) [1540721]
-- [usb] xhci: cleanup finish_td() skip option (Torez Smith) [1540721]
-- [usb] xhci: cleanup virtual endoint structure, remove stopped_stream (Torez Smith) [1540721]
-- [usb] xhci: handle transfer events without TRB pointer (Torez Smith) [1540721]
-- [usb] xhci: support calling cleanup_halted_endpoint with soft retry (Torez Smith) [1540721]
-- [usb] xhci: Add support for endpoint soft reset (Torez Smith) [1540721]
-- [usb] xhci: refactor transfer event errors and completion codes (Torez Smith) [1540721]
-- [usb] xhci: remove endpoint ring cache (Torez Smith) [1540721]
-- [usb] Avoid unnecessary LPM enabling and disabling during suspend and resume (Torez Smith) [1540721]
-- [usb] r8152: add byte_enable for ocp_read_word function (Torez Smith) [1540721]
-- [usb] r8152: support RTL8153B (Torez Smith) [1540721]
-- [usb] r8152: support new chip 8050 (Torez Smith) [1540721]
-- [usb] usb / pci / pm: Allow the PCI core to do the resume cleanup (Torez Smith) [1540721]
-- [usb] serial: qcserial: new Sierra Wireless EM7305 device ID (Torez Smith) [1540721]
-- [usb] serial: option: add two Longcheer device ids (Torez Smith) [1540721]
-- [usb] qmi_wwan: new Telewell and Sierra device IDs (Torez Smith) [1540721]
-- [usb] r8152: give the device version (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: remove broken alt-speed handling (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: simplify TIOCSSERIAL flag logic (Torez Smith) [1540721]
-- [usb] of: fix root-hub device-tree node handling (Torez Smith) [1540721]
-- [usb] of: document reference taken by child-lookup helper (Torez Smith) [1540721]
-- [usb] core: fix device node leak (Torez Smith) [1540721]
-- [usb] misc: usbsevseg: Use sysfs_match_string() helper (Torez Smith) [1540721]
-- [usb] early: Remove trace_printk() callers in xhci-dbc (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Clean up the code by adding a new macro (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Add USB3 port status bits (Torez Smith) [1540721]
-- [usb] usbip: Add USB_SPEED_SUPER as valid arg (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Add USB3 SuperSpeed support (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Set the vhci structure up to work (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Rework vhci_hcd_init (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Move VHCI platform device into vhci struct (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Add vhci struct (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Rename function names to reflect their struct names (Torez Smith) [1540721]
-- [usb] Fix typo in the definition of Endpoint(out)Request (Torez Smith) [1540721]
-- [usb] usbip: set buffer pointers to NULL after free (Torez Smith) [1540721]
-- [usb] add usbfs ioctl to retrieve the connection speed (Torez Smith) [1540721]
-- [usb] serial: qcserial: expose methods for modem control (Torez Smith) [1540721]
-- [usb] usbip: convert to use DRIVER_ATTR_RW (Torez Smith) [1540721]
-- [usb] xhci: ASMedia ASM1042A chipset need shorts TX quirk (Torez Smith) [1540721]
-- [usb] xhci: Fix USB 3.1 supported protocol parsing (Torez Smith) [1540721]
-- [usb] r8152: replace napi_complete with napi_complete_done (Torez Smith) [1540721]
-- [usb] r8152: avoid rx queue more than 1000 packets (Torez Smith) [1540721]
-- [usb] r8152: check if disabling ALDPS is finished (Torez Smith) [1540721]
-- [usb] r8152: move the initialization to reset_resume function (Torez Smith) [1540721]
-- [usb] r8152: move the default coalesce setting for RTL8153 (Torez Smith) [1540721]
-- [usb] r8152: adjust U2P3 for RTL8153 (Torez Smith) [1540721]
-- [usb] r8152: adjust rtl8153_runtime_enable function (Torez Smith) [1540721]
-- [usb] r8152: move the setting of rx aggregation (Torez Smith) [1540721]
-- [usb] r8152: adjust the settings about MAC clock speed down for RTL8153 (Torez Smith) [1540721]
-- [usb] r8152: adjust lpm settings for RTL8153 (Torez Smith) [1540721]
-- [usb] r8152: add r8153_phy_status function (Torez Smith) [1540721]
-- [usb] Fix inconsistent teardown and release of private netdev state (Torez Smith) [1540721]
-- [usb] mii, smsc: Make mii_ethtool_get_link_ksettings and smc_netdev_get_ecmd return void (Torez Smith) [1540721]
-- [usb] Make use of ktime_* comparison functions (Torez Smith) [1540721]
-- [usb] xhci: Add helper to get hardware dequeue pointer for stopped rings (Torez Smith) [1540721]
-- [usb] xhci: Add stream id to xhci_dequeue_state structure (Torez Smith) [1540721]
-- [usb] xhci: Find out where an endpoint or stream stopped from its context (Torez Smith) [1540721]
-- [usb] optimize acpi companion search for usb port devices (Torez Smith) [1540721]
-- [usb] xhci: remove unused stopped_td pointer (Torez Smith) [1540721]
-- [usb] serial: upd78f0730: make constants static (Torez Smith) [1540721]
-- [usb] uhci: Add support for Aspeed BMC SoCs (Torez Smith) [1540721]
-- [usb] cdc-ether: divorce initialisation with a filter reset and a generic method (Torez Smith) [1540721]
-- [usb] smsc95xx: Support only IPv4 TCP/UDP csum offload (Torez Smith) [1540721]
-- [usb] uvcvideo: annotate a switch fall through (Torez Smith) [1540721]
-- [usb] media annotate fall-through (Torez Smith) [1540721]
-- [usb] net1080: Remove unused function nc_dump_ttl() (Torez Smith) [1540721]
-- [usb] r8152: Remove unused function usb_ocp_read() (Torez Smith) [1540721]
-- [usb] qmi_wwan: add another Lenovo EM74xx device ID (Torez Smith) [1540721]
-- [usb] ene_usb6250: turn off the Removable flag (Torez Smith) [1540721]
-- [usb] ene_usb6250: remove subroutine duplication (Torez Smith) [1540721]
-- [usb] ene_usb6250: implement REQUEST SENSE (Torez Smith) [1540721]
-- [usb] ene_usb6250: fix SCSI residue overwriting (Torez Smith) [1540721]
-- [usb] ene_usb6250: fix first command execution (Torez Smith) [1540721]
-- [usb] xhci: Fix command ring stop regression in 4.11 (Torez Smith) [1540721]
-- [usb] xhci: remove GFP_DMA flag from allocation (Torez Smith) [1540721]
-- [usb] xhci: fix lock-inversion problem (Torez Smith) [1540721]
-- [usb] host: xhci-ring: don't need to clear interrupt pending for MSI enabled hcd (Torez Smith) [1540721]
-- [usb] host: xhci-mem: allocate zeroed Scratchpad Buffer (Torez Smith) [1540721]
-- [usb] xhci: apply PME_STUCK_QUIRK and MISSING_CAS quirk for Denverton (Torez Smith) [1540721]
-- [usb] xhci: trace URB before giving it back instead of after (Torez Smith) [1540721]
-- [usb] serial: qcserial: add more Lenovo EM74xx device IDs (Torez Smith) [1540721]
-- [usb] iowarrior: use memdup_user (Torez Smith) [1540721]
-- [usb] host: remove unnecessary null check (Torez Smith) [1540721]
-- [usb] core: Check URB setup_packet and transfer_buffer sanity (Torez Smith) [1540721]
-- [usb] cdc-wdm: use memdup_user (Torez Smith) [1540721]
-- [usb] host: xhci: use max-port define (Torez Smith) [1540721]
-- [usb] hub: fix SS max number of ports (Torez Smith) [1540721]
-- [usb] hub: fix non-SS hub-descriptor handling (Torez Smith) [1540721]
-- [usb] hub: fix SS hub-descriptor handling (Torez Smith) [1540721]
-- [usb] usbip: fix nonconforming hub descriptor (Torez Smith) [1540721]
-- [usb] core: fix potential memory leak in error path during hcd creation (Torez Smith) [1540721]
-- [usb] iowarrior: fix info ioctl on big-endian hosts (Torez Smith) [1540721]
-- [usb] chaoskey: fix Alea quirk on big-endian hosts (Torez Smith) [1540721]
-- [usb] sisusb_con: fix coccinelle warning (Torez Smith) [1540721]
-- [usb] misc: legousbtower: Fix memory leak (Torez Smith) [1540721]
-- [usb] core: replace p with pK (Torez Smith) [1540721]
-- [usb] ene_usb6250: fix DMA to the stack (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: add Olimex ARM-USB-TINY(H) PIDs (Torez Smith) [1540721]
-- [usb] serial: io_ti: fix div-by-zero in set_termios (Torez Smith) [1540721]
-- [usb] serial: mct_u232: fix big-endian baud-rate handling (Torez Smith) [1540721]
-- [usb] serial: ir-usb: fix big-endian baud-rate debug printk (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: fix setting latency for unprivileged users (Torez Smith) [1540721]
-- [usb] serial: option: add Telit ME910 support (Torez Smith) [1540721]
-- [usb] ch9200: add missing USB-descriptor endianness conversions (Torez Smith) [1540721]
-- [usb] cdc_ncm: Fix TX zero padding (Torez Smith) [1540721]
-- [usb] usb: qmi_wwan: add Telit ME910 support (Torez Smith) [1540721]
-- [usb] host: xhci: remove #ifdef around PM functions (Torez Smith) [1540721]
-- [usb] misc: legousbtower: Fix buffers on stack (Torez Smith) [1540721]
-- [usb] revert "cdc-wdm: fix "out-of-sync" due to missing notifications" (Torez Smith) [1494216 1540721]
-- [usb] storage: e-mail update in usb/storage/unusual_devs.h (Torez Smith) [1540721]
-- [usb] host: xhci: print correct command ring address (Torez Smith) [1540721]
-- [usb] host: xhci: delete sp_dma_buffers for scratchpad (Torez Smith) [1540721]
-- [usb] host: xhci: using correct specification chapter reference for DCBAAP (Torez Smith) [1540721]
-- [usb] xhci: switch to pci_alloc_irq_vectors (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: add device ID for Microsemi/Arrow SF2PLUS Dev Kit (Torez Smith) [1540721]
-- [usb] serial: constify static arrays (Torez Smith) [1540721]
-- [usb] fix some references for /proc/bus/usb (Torez Smith) [1540721]
-- [usb] xhci: use correct flags for spin_lock_irqrestore() when setting port power (Torez Smith) [1540721]
-- [usb] smsc95xx: Add comments to the registers definition (Torez Smith) [1540721]
-- [usb] get rid of some ReST doc build errors (Torez Smith) [1540721]
-- [usb] otg-fsm: Prevent build warning "VDBG" redefined (Torez Smith) [1540721]
-- [usb] uvcvideo: Don't record timespec_sub (Torez Smith) [1540721]
-- [usb] uvcvideo: Fix empty packet statistic (Torez Smith) [1540721]
-- [usb] serial: quatech2: drop redundant tty_buffer_request_room (Torez Smith) [1540721]
-- [usb] serial: iuu_phoenix: drop excessive sanity checks (Torez Smith) [1540721]
-- [usb] xhci: bInterval quirk for TI TUSB73x0 (Torez Smith) [1540721]
-- [usb] xhci: refine xhci_decode_trb() (Torez Smith) [1540721]
-- [usb] xhci: fix link trb decoding (Torez Smith) [1540721]
-- [usb] xhci: remove xhci_dbg_ctx() (Torez Smith) [1540721]
-- [usb] xhci: remove xhci_debug_trb() (Torez Smith) [1540721]
-- [usb] xhci: remove ring debugging code (Torez Smith) [1540721]
-- [usb] xhci: remove enq_updates and deq_updates from ring (Torez Smith) [1540721]
-- [usb] xhci: remove error messages for failed memory allocation (Torez Smith) [1540721]
-- [usb] xhci: make several functions static (Torez Smith) [1540721]
-- [usb] xhci: remove xhci_dbg_ep_rings() (Torez Smith) [1540721]
-- [usb] xhci: add xhci_log_ring trace events (Torez Smith) [1540721]
-- [usb] xhci: Rework how we handle unresponsive or hoptlug removed hosts (Torez Smith) [1540721]
-- [usb] xhci: Do not halt the host until both HCD have disconnected their devices (Torez Smith) [1540721]
-- [usb] xhci: add slot and endpoint numbers to debug messages in handle_tx_event (Torez Smith) [1540721]
-- [usb] host: xhci: fix up Control Transfer TRB decoder (Torez Smith) [1540721]
-- [usb] host: xhci: add Slot and EP Context tracers (Torez Smith) [1540721]
-- [usb] host: xhci: extract xhci_slot_state_string() (Torez Smith) [1540721]
-- [usb] host: xhci: print device slot from URB tracers (Torez Smith) [1540721]
-- [usb] xhci: Add port test modes support for usb2 (Torez Smith) [1540721]
-- [usb] xhci: Expose xhci_start() function (Torez Smith) [1540721]
-- [usb] xhci: Add helper function xhci_disable_slot() (Torez Smith) [1540721]
-- [usb] xhci: Add helper function xhci_set_power_on() (Torez Smith) [1540721]
-- [usb] xhci: clear EINT bit in status correctly (Torez Smith) [1540721]
-- [usb] usbip: Remove unnecessary get_vdev() (Torez Smith) [1540721]
-- [usb] misc: refactor code (Torez Smith) [1540721]
-- [usb] misc: add missing continue in switch (Torez Smith) [1540721]
-- [usb] hcd: use correct device pointer for dma ops (Torez Smith) [1540721]
-- [usb] usbnet: pegasus: Use net_device_stats from struct net_device (Torez Smith) [1540721]
-- [usb] usbnet: kaweth: Use net_device_stats from struct net_device (Torez Smith) [1540721]
-- [usb] usbnet: Remove unused driver_name variable (Torez Smith) [1540721]
-- [usb] usbnet: support 64bit stats (Torez Smith) [1540721]
-- [usb] cdc-acm: remove unused element of struct acm (Torez Smith) [1540721]
-- [usb] cdc-acm: log message for serial state notification (Torez Smith) [1540721]
-- [usb] cdc-acm: reassemble fragmented notifications (Torez Smith) [1540721]
-- [usb] cdc-acm: fix possible invalid access when processing notification (Torez Smith) [1540721]
-- [usb] serial: drop obsolete open-race workaround (Torez Smith) [1540721]
-- [usb] serial: drop termios-flag debugging (Torez Smith) [1540721]
-- [usb] Proper handling of Race Condition when two USB class drivers try to call init_usb_class simultaneously (Torez Smith) [1540721]
-- [usb] usbtmc: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] lvstest: tighten endpoint sanity check (Torez Smith) [1540721]
-- [usb] serial: visor: clean up treo endpoint hack (Torez Smith) [1540721]
-- [usb] serial: visor: clean up clie_5 endpoint hack (Torez Smith) [1540721]
-- [usb] serial: visor: drop redundant calc_num_ports callback (Torez Smith) [1540721]
-- [usb] serial: ti_usb_3410_5052: always require a bulk-out endpoint (Torez Smith) [1540721]
-- [usb] serial: omninet: use generic write implementation (Torez Smith) [1540721]
-- [usb] serial: omninet: clean up port setup (Torez Smith) [1540721]
-- [usb] serial: mos7840: clean up endpoint sanity check (Torez Smith) [1540721]
-- [usb] serial: mos7720: always require an interrupt endpoint (Torez Smith) [1540721]
-- [usb] serial: mos7720: clean up mcs7715 port setup (Torez Smith) [1540721]
-- [usb] serial: io_ti: drop redundant read-urb check (Torez Smith) [1540721]
-- [usb] serial: io_ti: verify interrupt endpoint at probe (Torez Smith) [1540721]
-- [usb] serial: io_ti: always require a bulk-out endpoint (Torez Smith) [1540721]
-- [usb] serial: io_ti: use calc_num_endpoints to verify endpoints (Torez Smith) [1540721]
-- [usb] serial: ipaq: always register a single port (Torez Smith) [1540721]
-- [usb] serial: ipaq: use calc_num_endpoints to verify endpoints (Torez Smith) [1540721]
-- [usb] serial: aircable: use calc_num_endpoints to verify endpoints (Torez Smith) [1540721]
-- [usb] serial: pl2303: clean up legacy endpoint hack (Torez Smith) [1540721]
-- [usb] serial: move pl2303 hack out of usb-serial core (Torez Smith) [1540721]
-- [usb] serial: relax generic driver bulk-endpoint requirement (Torez Smith) [1540721]
-- [usb] serial: add calc_num_ports callback to generic driver (Torez Smith) [1540721]
-- [usb] serial: add probe callback to generic driver (Torez Smith) [1540721]
-- [usb] serial: allow subdrivers to modify port-endpoint mapping (Torez Smith) [1540721]
-- [usb] usb: qmi_wwan: add qmap mux protocol support (Torez Smith) [1540721]
-- [usb] core: fix up kerneldoc comment (Torez Smith) [1540721]
-- [usb] usblp: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] storage: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] cdc-acm: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] usb-skeleton: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] yurex: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] uss720: add debug endpoint-type check (Torez Smith) [1540721]
-- [usb] usblcd: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] legousbtower: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] ldusb: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] iowarrior: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] idmouse: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] ftdi-elan: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] chaoskey: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] appledisplay: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] adutux: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] adutux: fix up error paths (Torez Smith) [1540721]
-- [usb] adutux: drop redundant sanity check (Torez Smith) [1540721]
-- [usb] core: add helpers to retrieve endpoints in reverse order (Torez Smith) [1540721]
-- [usb] core: add helpers to retrieve endpoints (Torez Smith) [1540721]
-- [usb] ehci: use bus->sysdev for DMA configuration (Torez Smith) [1540721]
-- [usb] xhci: use bus->sysdev for DMA configuration (Torez Smith) [1540721]
-- [usb] separate out sysdev pointer from usb_bus (Torez Smith) [1540721]
-- [usb] hub: Do not attempt to autosuspend disconnected devices (Torez Smith) [1540721]
-- [usb] hub: Fix error loop seen after hub communication errors (Torez Smith) [1540721]
-- [usb] lan78xx: update for phy_(read|write)_mmd_indirect() removal (Torez Smith) [1540721]
-- [usb] usb: pegasus: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] r8152: check hw version first (Torez Smith) [1540721]
-- [usb] usb: usb: remove old api ethtool_(get|set)_settings (Torez Smith) [1540721]
-- [usb] usb: asix: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: sr9700: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: smsc75xx: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: sierra_net: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: mcs7830: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: dm9601: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: cdc_ncm: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: sr9800: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: smsc95xx: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: usbnet: add new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] serial: Add DBC debug device support to usb_debug (Torez Smith) [1540721]
-- [usb] early: Add driver for xhci debug capability (Torez Smith) [1540721]
-- [usb] host: Allow to build ehci orion with mvebu SoCs (Torez Smith) [1540721]
-- [usb] misc: sisusb_con: fix coccinelle warning (Torez Smith) [1540721]
-- [usb] storage: karma: remove useless variable (Torez Smith) [1540721]
-- [usb] misc: ldusb: changed '*' location to fit coding Style (Torez Smith) [1540721]
-- [usb] misc: ldusb: Added Space after ', ' to fit the coding style (Torez Smith) [1540721]
-- [usb] misc: ldusb: fixed decimal permission coding issue (Torez Smith) [1540721]
-- [usb] misc: remove unnecessary code (Torez Smith) [1540721]
-- [usb] of: add functions to bind a companion controller (Torez Smith) [1540721]
-- [usb] add CONFIG_USB_PCI for system have both PCI HW and non-PCI based USB HW (Torez Smith) [1540721]
-- [usb] r8152: simply the arguments (Torez Smith) [1540721]
-- [usb] serial: whiteheat: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: symbolserial: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: spcp8x5: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: pl2303: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: oti6858: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: opticon: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: omninet: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: mos7720: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: kobil_sct: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: keyspan_pda: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: iuu_phoenix: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: io_edgeport: simplify and tighten endpoint check (Torez Smith) [1540721]
-- [usb] serial: digi_acceleport: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: cyberjack: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: ark3116: simplify endpoint sanity check (Torez Smith) [1540721]
-- [usb] serial: add endpoint sanity check to core (Torez Smith) [1540721]
-- [usb] serial: replace runtime overflow check (Torez Smith) [1540721]
-- [usb] serial: allow up to 16 ports per device (Torez Smith) [1540721]
-- [usb] serial: refactor and clean up endpoint handling (Torez Smith) [1540721]
-- [usb] serial: clean up endpoint and port-counter types (Torez Smith) [1540721]
-- [usb] serial: clean up probe error paths (Torez Smith) [1540721]
-- [usb] host: Remove remaining pci_pool in comments (Torez Smith) [1540721]
-- [usb] misc: lvs: fix race condition in disconnect handling (Torez Smith) [1540721]
-- [usb] misc: remove unnecessary code (Torez Smith) [1540721]
-- [usb] atm: remove unnecessary code (Torez Smith) [1540721]
-- [usb] usb: rtl8150: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: r8152: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: catc: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: asix88179_178a: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: allow other bases for "event_char" (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: only allow valid event_char values (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: only allow valid latency timer values (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: detect BM chip with iSerialNumber bug (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: don't access latency timer on old chips (Torez Smith) [1540721]
-- [usb] hcd: move controller wakeup setting initialization to individual driver (Torez Smith) [1540721]
-- [usb] usb: early: remove unused code (Torez Smith) [1540721]
-- [usb] treewide: remove redundant #include <linux/kconfig.h> (Torez Smith) [1540721]
-- [usb] early/ehci-dbgp: make it explicitly non-modular (Torez Smith) [1540721]
-- [usb] ehci-dbgp: drop dead code (Torez Smith) [1540721]
-- [usb] driver core: add helper to reuse a device-tree node (Torez Smith) [1540721]
-- [usb] device: introduce per device dma_pfn_offset (Torez Smith) [1540721]
-- [usb] core: setup dma_pfn_offset for USB devices and, interfaces (Torez Smith) [1540721]
-
-* Wed May 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-896.el7]
-- [documentation] Better document the hardlockup_panic sysctl (Scott Wood) [1500127]
-- [documentation] Add document of L2_CDP command line parameter (Xiaolong Wang) [1526254]
-- [documentation] Add document of rdt command line options (Xiaolong Wang) [1526254]
-- [documentation] x86/intel_rdt: Add L2CDP support in documentation (Xiaolong Wang) [1526254]
-- [documentation] x86/intel_rdt: Update documentation (Xiaolong Wang) [1526254]
-- [kernel] signals: Use hrtimer for sigtimedwait() (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Minimize nohz off overhead (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Reduce timer migration overhead if disabled (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Remove code redundancy while calling get_nohz_timer_target() (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Use timer->base for flag checks (Daniel Bristot de Oliveira) [1568294]
-- [kernel] tracing: timer: Add deferrable flag to timer_start (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Remove FIFO "guarantee" (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timers: Sanitize catchup_timer_jiffies() usage (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Kick dynticks targets on mod_timer*() calls (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Spare IPI when deferrable timer is queued on idle remote targets (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Put usleep_range into the __sched section (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Remove pointless return value of do_usleep_range() (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Further simplify the SMP and HOTPLUG logic (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Don't initialize 'tvec_base' on hotplug (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0 (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Allocate per-cpu tvec_base's statically (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Use variable head instead of &work_list in __run_timers() (Daniel Bristot de Oliveira) [1568294]
-- [linux] fsnotify: Fix fsnotify_mark_connector race (Miklos Szeredi) [1569921]
-- [nvme] nvme-pci: Separate IO and admin queue IRQ vectors (Ming Lei) [1568817]
-- [block] blk-mq: Allow PCI vector offset for mapping queues (Ming Lei) [1568817]
-- [block] blk-mq: order getting budget and driver tag (Ming Lei) [1568817]
-- [block] blk-mq: Avoid that submitting a bio concurrently with device removal triggers a crash (Ming Lei) [1568817]
-- [block] Fix a race between request queue removal and the block cgroup controller (Ming Lei) [1568817]
-- [block] Fix a race between the cgroup code and request queue initialization (Ming Lei) [1568817]
-- [block] Add 'lock' as third argument to blk_alloc_queue_node() (Ming Lei) [1568817]
-- [block] simplify blk_init_allocated_queue (Ming Lei) [1568817]
-- [mmc] block: Delete gendisk before cleaning up the request queue (Ming Lei) [1568817]
-- [block] zram: Delete gendisk before cleaning up the request queue (Ming Lei) [1568817]
-- [lib] sbitmap: use test_and_set_bit_lock()/clear_bit_unlock() (Ming Lei) [1568817]
-- [block] clear ctx pending bit under ctx lock (Ming Lei) [1568817]
-- [block] blk-mq: introduce BLK_STS_DEV_RESOURCE (Ming Lei) [1568817]
-- [block] blk-mq: Avoid that blk_mq_delay_run_hw_queue() introduces unintended delays (Ming Lei) [1568817]
-- [block] add kblock_mod_delayed_work_on() (Ming Lei) [1568817]
-- [block] blk-mq: remove blk_mq_delay_queue() (Ming Lei) [1568817]
-- [block] blk-mq: Rename blk_mq_request_direct_issue() into blk_mq_request_issue_directly() (Ming Lei) [1568817]
-- [block] blk-mq: don't dispatch request in blk_mq_request_direct_issue if queue is busy (Ming Lei) [1568817]
-- [block] blk-mq-sched: remove unused 'can_block' arg from blk_mq_sched_insert_request (Ming Lei) [1568817]
-- [md] blk-mq: improve DM's blk-mq IO merging via blk_insert_cloned_request feedback (Ming Lei) [1568817]
-- [block] blk-mq: factor out a few helpers from __blk_mq_try_issue_directly (Ming Lei) [1568817]
-- [block] blk-mq: Reduce the number of if-statements in blk_mq_mark_tag_wait() (Ming Lei) [1568817]
-- [block] blk-mq: Add locking annotations to hctx_lock() and hctx_unlock() (Ming Lei) [1568817]
-- [block] blk-mq: silence false positive warnings in hctx_unlock() (Ming Lei) [1568817]
-- [block] blk-mq: move hctx lock/unlock into a helper (Ming Lei) [1568817]
-- [acpi] osi: Add OEM _OSI strings to disable NVidia RTD3 (Jaroslav Kysela) [1581391]
-- [platform] x86: intel_pmc_core: Special case for Coffeelake (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add CannonLake PCH support (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Read base address from LPIT (Scott Wood) [1445478]
-- [acpi] acpi / lpit: Export lpit_read_residency_count_address() (Scott Wood) [1445478]
-- [acpi] lpit: Add Low Power Idle Table (LPIT) support (Scott Wood) [1445478]
-- [acpi] acpica: Add support for LPIT table (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Remove unused header file (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Convert to ICPU macro (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Substitute PCI with CPUID enumeration (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Refactor debugfs entries (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Fix file permission warnings (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Change driver to a module (Scott Wood) [1445478]
-- [platform] x86: Drop duplicate dependencies on X86 (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Fix kernel doc for pmc_dev (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Remove unused variable (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Remove unused EXPORTED API (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Make the driver PCH family agnostic (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: fix out-of-bounds accesses on stack (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add KBL CPUID support (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add LTR IGNORE debug feature (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add MPHY PLL clock gating status (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: ModPhy core lanes pg status (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add PCH IP Power Gating Status (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Fix PWRMBASE mask and mmio reg len (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: avoid boot time warning for !CONFIG_DEBUGFS_FS (Scott Wood) [1445478]
-- [platform] intel_pmc_core: Convert to DEFINE_SIMPLE_ATTRIBUTE (Scott Wood) [1445478]
-- [platform] x86/pmc_core: Use Intel family name macros for pmc_core driver (Scott Wood) [1445478]
-- [platform] x86: Add PMC Driver for Intel Core SoC (Scott Wood) [1445478]
-- [kernel] userfaultfd: register uapi generic syscall (Rafael Aquini) [1560024]
-- [x86] membarrier: fix up sys_membarrier registration number (Rafael Aquini) [1560024]
-- [x86] pci: vmd: Assign vector zero to all bridges (Myron Stowe) [1515090]
-- [x86] pci: vmd: Move SRCU cleanup after bus, child device removal (Myron Stowe) [1515090]
-- [x86] pci: vmd: correct comment: VMD domains start at 0x10000, not 0x1000 (Myron Stowe) [1515090]
-- [x86] pci: host: Mark PCIe/PCI (MSI) cascade ISR as IRQF_NO_THREAD (Myron Stowe) [1515090]
-- [x86] pci: vmd: Fix suspend handlers defined-but-not-used warning (Myron Stowe) [1515090]
-- [x86] pci: vmd: Use SRCU as a local RCU to prevent delaying global RCU (Myron Stowe) [1515090]
-- [x86] pci: vmd: Remove unnecessary pci_set_drvdata() (Myron Stowe) [1515090]
-- [x86] pci: vmd: Eliminate index member from IRQ list (Myron Stowe) [1515090]
-- [x86] pci: vmd: Eliminate vmd_vector member from list type (Myron Stowe) [1515090]
-- [x86] pci: vmd: Convert to use pci_alloc_irq_vectors() API (Myron Stowe) [1515090]
-- [x86] pci: vmd: Allocate IRQ lists with correct MSI-X count (Myron Stowe) [1515090]
-- [powerpc] io: implement dummy relaxed accessor macros for writes (Ivan Vecera) [1582192]
-
-* Tue May 29 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-895.el7]
-- [netdrv] ibmvnic: Fix statistics buffers memory leak (Steve Best) [1580589]
-- [netdrv] ibmvnic: Fix non-fatal firmware error reset (Steve Best) [1580589]
-- [netdrv] ibmvnic: Free coherent DMA memory if FW map failed (Steve Best) [1580589]
-- [netdrv] fm10k: Use smp_rmb rather than read_barrier_depends (Neil Horman) [1518116]
-- [netdrv] intel: Convert timers to use timer_setup() (Neil Horman) [1518116]
-- [netdrv] fm10k: prefer s and __func__ for diagnostic prints (Neil Horman) [1518116]
-- [netdrv] fm10k: Fix misuse of net_ratelimit() (Neil Horman) [1518116]
-- [netdrv] fm10k: bump version number (Neil Horman) [1518116]
-- [netdrv] fm10k: use the MAC/VLAN queue for VF<->PF MAC/VLAN requests (Neil Horman) [1518116]
-- [netdrv] fm10k: introduce a message queue for MAC/VLAN messages (Neil Horman) [1518116]
-- [netdrv] fm10k: use generic PM hooks instead of legacy PCIe power hooks (Neil Horman) [1518116]
-- [netdrv] fm10k: use spinlock to implement mailbox lock (Neil Horman) [1518116]
-- [netdrv] fm10k: prepare_for_reset() when we lose PCIe Link (Neil Horman) [1518116]
-- [netdrv] fm10k: prevent race condition of __FM10K_SERVICE_SCHED (Neil Horman) [1518116]
-- [netdrv] fm10k: move fm10k_prepare_for_reset and fm10k_handle_reset (Neil Horman) [1518116]
-- [netdrv] fm10k: avoid divide by zero in rare cases when device is resetting (Neil Horman) [1518116]
-- [netdrv] fm10k: don't loop while resetting VFs due to VFLR event (Neil Horman) [1518116]
-- [netdrv] fm10k: simplify reading PFVFLRE register (Neil Horman) [1518116]
-- [netdrv] fm10k: avoid needless delay when loading driver (Neil Horman) [1518116]
-- [netdrv] fm10k: add missing fall through comment (Neil Horman) [1518116]
-- [netdrv] fm10k: avoid possible truncation of q_vector->name (Neil Horman) [1518116]
-- [netdrv] fm10k: fix typos on fall through comments (Neil Horman) [1518116]
-- [netdrv] fm10k: stop spurious link down messages when Tx FIFO is full (Neil Horman) [1518116]
-- [netdrv] fm10k: Use seq_putc() in fm10k_dbg_desc_break() (Neil Horman) [1518116]
-- [netdrv] fm10k: reschedule service event if we stall the PF<->SM mailbox (Neil Horman) [1518116]
-- [netdrv] fm10k: ensure we process SM mbx when processing VF mbx (Neil Horman) [1518116]
-- [netdrv] fm10k: use netdev_rss_key_fill() helper (Neil Horman) [1518116]
-- [netdrv] nfp: bpf: fix check of program max insn count (John Linville) [1557410]
-- [netdrv] nfp: populate MODULE_VERSION (John Linville) [1557410]
-- [netdrv] nfp: limit the number of TSO segments (John Linville) [1557410]
-- [netdrv] nfp: forbid disabling hw-tc-offload on representors while offload active (John Linville) [1557410]
-- [netdrv] nfp: don't advertise hw-tc-offload on non-port netdevs (John Linville) [1557410]
-- [netdrv] nfp: bpf: require ETH table (John Linville) [1557410]
-- [netdrv] nfp: bpf: fix immed relocation for larger offsets (John Linville) [1557410]
-- [netdrv] nfp: fix kdoc warnings on nested structures (John Linville) [1557410]
-- [netdrv] nfp: fix TLV offset calculation (John Linville) [1557410]
-- [netdrv] nfp: fix error return code in nfp_pci_probe() (John Linville) [1557410]
-- [netdrv] nfp: fix fw dump handling of absolute rtsym size (John Linville) [1557410]
-- [netdrv] nfp: bpf: use extack support to improve debugging (John Linville) [1557410]
-- [netdrv] nfp: bpf: plumb extack into functions related to XDP offload (John Linville) [1557410]
-- [netdrv] nfp: bpf: disable all ctrl vNIC capabilities (John Linville) [1557410]
-- [netdrv] nfp: allow apps to disable ctrl vNIC capabilities (John Linville) [1557410]
-- [netdrv] nfp: split reading capabilities out of nfp_net_init() (John Linville) [1557410]
-- [netdrv] nfp: read mailbox address from TLV caps (John Linville) [1557410]
-- [netdrv] nfp: read ME frequency from vNIC ctrl memory (John Linville) [1557410]
-- [netdrv] nfp: add TLV capabilities to the BAR (John Linville) [1557410]
-- [netdrv] nfp: improve app not found message (John Linville) [1557410]
-- [netdrv] nfp: protect each repr pointer individually with RCU (John Linville) [1557410]
-- [netdrv] nfp: add nfp_reprs_get_locked() helper (John Linville) [1557410]
-- [netdrv] nfp: register devlink after app is created (John Linville) [1557410]
-- [netdrv] nfp: release global resources only on the remove path (John Linville) [1557410]
-- [netdrv] nfp: core: make scalar CPP helpers fail on short accesses (John Linville) [1557410]
-- [netdrv] nfp: bpf: add short busy wait for FW replies (John Linville) [1557410]
-- [netdrv] bpf: offload: allow array map offload (John Linville) [1557410]
-- [netdrv] nfp: bpf: set new jit info fields (John Linville) [1557410]
-- [netdrv] nfp: bpf: reject program on instructions unknown to the JIT compiler (John Linville) [1557410]
-- [netdrv] nfp: bpf: print map lookup problems into verifier log (John Linville) [1557410]
-- [netdrv] nfp: bpf: implement bpf map offload (John Linville) [1557410]
-- [netdrv] nfp: bpf: add support for reading map memory (John Linville) [1557410]
-- [netdrv] nfp: bpf: add verification and codegen for map lookups (John Linville) [1557410]
-- [netdrv] nfp: bpf: add helpers for updating immediate instructions (John Linville) [1557410]
-- [netdrv] nfp: bpf: parse function call and map capabilities (John Linville) [1557410]
-- [netdrv] nfp: bpf: implement helpers for FW map ops (John Linville) [1557410]
-- [netdrv] nfp: bpf: add basic control channel communication (John Linville) [1557410]
-- [netdrv] nfp: bpf: add map data structure (John Linville) [1557410]
-- [netdrv] bpf: rename bpf_dev_offload -> bpf_prog_offload (John Linville) [1557410]
-- [netdrv] nfp: bpf: reuse verifier log for debug messages (John Linville) [1557410]
-- [netdrv] nfp: bpf: add signed jump insns (John Linville) [1557410]
-- [netdrv] nfp: hand over to BPF offload app at coarser granularity (John Linville) [1557410]
-- [netdrv] nfp: bpf: use a large constant in unresolved branches (John Linville) [1557410]
-- [netdrv] nfp: bpf: don't depend on high order allocations for program image (John Linville) [1557410]
-- [netdrv] nfp: bpf: relocate jump targets just before the load (John Linville) [1557410]
-- [netdrv] nfp: bpf: add helpers for modifying branch addresses (John Linville) [1557410]
-- [netdrv] nfp: bpf: move jump resolution to jit.c (John Linville) [1557410]
-- [netdrv] nfp: bpf: allow disabling TC offloads when XDP active (John Linville) [1557410]
-- [netdrv] nfp: bpf: don't allow changing MTU above BPF offload limit when active (John Linville) [1557410]
-- [netdrv] nfp: bpf: round up the size of the stack (John Linville) [1557410]
-- [netdrv] nfp: fix incumbent kdoc warnings (John Linville) [1557410]
-- [netdrv] nfp: add basic multicast filtering (John Linville) [1557410]
-- [netdrv] nfp: flower: implement the PORT_REIFY message (John Linville) [1557410]
-- [netdrv] nfp: add repr_preclean callback (John Linville) [1557410]
-- [netdrv] nfp: flower: obtain repr link state only from firmware (John Linville) [1557410]
-- [netdrv] bpf: offload: allow netdev to disappear while verifier is running (John Linville) [1557410]
-- [netdrv] nfp: bpf: allocate vNIC priv for keeping track of the offloaded program (John Linville) [1557410]
-- [netdrv] nfp: flower: compile Geneve encap actions (John Linville) [1557410]
-- [netdrv] nfp: flower: compile Geneve match fields (John Linville) [1557410]
-- [netdrv] nfp: flower: read extra feature support from fw (John Linville) [1557410]
-- [netdrv] nfp: flower: remove unused tun_mask variable (John Linville) [1557410]
-- [netdrv] nfp: set flags in the correct member of netdev_bpf (John Linville) [1557410]
-- [netdrv] nfp: bpf: correct printk formats for size_t (John Linville) [1557410]
-- [netdrv] nfp: bpf: optimize the adjust_head calls in trivial cases (John Linville) [1557410]
-- [netdrv] nfp: bpf: add basic support for adjust head call (John Linville) [1557410]
-- [netdrv] nfp: bpf: prepare for call support (John Linville) [1557410]
-- [netdrv] nfp: bpf: prepare for parsing BPF FW capabilities (John Linville) [1557410]
-- [netdrv] nfp: add nfp_cpp_area_size() accessor (John Linville) [1557410]
-- [netdrv] nfp: debug dump - decrease endian conversions (John Linville) [1557410]
-- [netdrv] nfp: flower: remove unused defines (John Linville) [1557410]
-- [netdrv] nfp: flower: remove dead code paths (John Linville) [1557410]
-- [netdrv] nfp: flower: do not assume mac/mpls matches (John Linville) [1557410]
-- [netdrv] xdp: make the stack take care of the tear down (John Linville) [1557410]
-- [netdrv] xdp: report flags program was installed with on query (John Linville) [1557410]
-- [netdrv] nfp: bpf: detect load/store sequences lowered from memory copy (John Linville) [1557410]
-- [netdrv] nfp: bpf: implement memory bulk copy for length bigger than 32-bytes (John Linville) [1557410]
-- [netdrv] nfp: bpf: implement memory bulk copy for length within 32-bytes (John Linville) [1557410]
-- [netdrv] nfp: bpf: factor out is_mbpf_load & is_mbpf_store (John Linville) [1557410]
-- [netdrv] nfp: bpf: encode indirect commands (John Linville) [1557410]
-- [netdrv] nfp: bpf: correct the encoding for No-Dest immed (John Linville) [1557410]
-- [netdrv] nfp: bpf: relax source operands check (John Linville) [1557410]
-- [netdrv] nfp: bpf: don't do ld/shifts combination if shifts are jump destination (John Linville) [1557410]
-- [netdrv] nfp: bpf: don't do ld/mask combination if mask is jump destination (John Linville) [1557410]
-- [netdrv] nfp: bpf: flag jump destination to guide insn combine optimizations (John Linville) [1557410]
-- [netdrv] nfp: bpf: record jump destination to simplify jump fixup (John Linville) [1557410]
-- [netdrv] nfp: bpf: support backward jump (John Linville) [1557410]
-- [netdrv] nfp: fix old kdoc issues (John Linville) [1557410]
-- [netdrv] nfp: remove unneeded RHEL-specific block comments (John Linville) [1557410]
-- [netdrv] nfp: use the correct index for link speed table (John Linville) [1545903]
-- [netdrv] nfp: always unmask aux interrupts at init (John Linville) [1545903]
-- [netdrv] nfp: bpf: keep track of the offloaded program (John Linville) [1545903]
-- [netdrv] cls_bpf: fix offload assumptions after callback conversion (John Linville) [1545903]
-- [netdrv] nfp: flower: add missing kdoc (John Linville) [1545903]
-- [netdrv] bpf: offload: move offload device validation out to the drivers (John Linville) [1545903]
-- [netdrv] nfp: remove false positive offloads in flower vxlan (John Linville) [1545903]
-- [netdrv] nfp: register flower reprs for egress dev offload (John Linville) [1545903]
-- [netdrv] mm: remove __GFP_COLD (John Linville) [1545903]
-- [netdrv] nfp flower action: Modified to use VLAN helper functions (John Linville) [1545903]
-- [netdrv] nfp: bpf: move to new BPF program offload infrastructure (John Linville) [1545903]
-- [netdrv] nfp: bpf: move translation prepare to offload.c (John Linville) [1545903]
-- [netdrv] nfp: bpf: move program prepare and free into offload.c (John Linville) [1545903]
-- [netdrv] nfp: bpf: require seamless reload for program replace (John Linville) [1545903]
-- [netdrv] nfp: bpf: refactor offload logic (John Linville) [1545903]
-- [netdrv] nfp: bpf: remove unnecessary include of nfp_net.h (John Linville) [1545903]
-- [netdrv] nfp: bpf: remove the register renumbering leftovers (John Linville) [1545903]
-- [netdrv] nfp: bpf: drop support for cls_bpf with legacy actions (John Linville) [1545903]
-- [netdrv] nfp: improve defines for constants in ethtool (John Linville) [1545903]
-- [netdrv] nfp: use a counter instead of log message for allocation failures (John Linville) [1545903]
-- [netdrv] nfp: switch to dev_alloc_page() (John Linville) [1545903]
-- [netdrv] nfp: bpf: fall back to core NIC app if BPF not selected (John Linville) [1545903]
-- [netdrv] nfp: reorganize the app table (John Linville) [1545903]
-- [netdrv] nfp: bpf: reject TC offload if XDP loaded (John Linville) [1545903]
-- [netdrv] nfp: flower: app should use struct nfp_repr (John Linville) [1545903]
-- [netdrv] nfp: bpf: support (BPF_ALU | BPF_ALU64) | BPF_NEG (John Linville) [1545903]
-- [netdrv] nfp: bpf: rename ALU_OP_NEG to ALU_OP_NOT (John Linville) [1545903]
-- [netdrv] sched: move the can_offload check from binding phase to rule insertion phase (John Linville) [1545903]
-- [netdrv] bpf: reduce verifier memory consumption (John Linville) [1545903]
-- [netdrv] nfp: inform the VF driver needs to be restarted after changing the MAC (John Linville) [1545903]
-- [netdrv] netronome: Convert timers to use timer_setup() (John Linville) [1545903]
-- [netdrv] nfp: bpf: optimize mov64 a little (John Linville) [1545903]
-- [netdrv] nfp: bpf: support stack accesses via non-constant pointers (John Linville) [1545903]
-- [netdrv] nfp: bpf: support accessing the stack beyond 64 bytes (John Linville) [1545903]
-- [netdrv] nfp: bpf: allow stack accesses via modified stack registers (John Linville) [1545903]
-- [netdrv] nfp: bpf: optimize the RMW for stack accesses (John Linville) [1545903]
-- [netdrv] nfp: bpf: add stack read support (John Linville) [1545903]
-- [netdrv] nfp: bpf: add stack write support (John Linville) [1545903]
-- [netdrv] nfp: bpf: refactor nfp_bpf_check_ptr() (John Linville) [1545903]
-- [netdrv] nfp: bpf: add helper for emitting nops (John Linville) [1545903]
-- [netdrv] nfp: use struct fields for 8 bit-wide access (John Linville) [1545903]
-- [netdrv] sched: avoid ndo_setup_tc calls for TC_SETUP_CLS* (John Linville) [1545903]
-- [netdrv] nfp: bpf: Convert ndo_setup_tc offloads to block callbacks (John Linville) [1545903]
-- [netdrv] nfp: flower: Convert ndo_setup_tc offloads to block callbacks (John Linville) [1545903]
-- [netdrv] nfp: Explicitly include linux/bug.h (John Linville) [1545903]
-- [netdrv] nfp: bpf: support direct packet access in TC (John Linville) [1545903]
-- [netdrv] nfp: bpf: direct packet access - write (John Linville) [1545903]
-- [netdrv] nfp: bpf: add support for direct packet access - read (John Linville) [1545903]
-- [netdrv] nfp: bpf: separate I/O from checks for legacy data load (John Linville) [1545903]
-- [netdrv] nfp: bpf: fix context accesses (John Linville) [1545903]
-- [netdrv] nfp: bpf: support BPF offload only on little endian (John Linville) [1545903]
-- [netdrv] nfp: bpf: implement byte swap instruction (John Linville) [1545903]
-- [netdrv] nfp: bpf: add mov helper (John Linville) [1545903]
-- [netdrv] nfp: bpf: fix compare instructions (John Linville) [1545903]
-- [netdrv] nfp: bpf: add missing return in jne_imm optimization (John Linville) [1545903]
-- [netdrv] nfp: bpf: reorder arguments to emit_ld_field_any() (John Linville) [1545903]
-- [netdrv] nfp: bpf: pass dst register to ld_field instruction (John Linville) [1545903]
-- [netdrv] nfp: bpf: byte swap the instructions (John Linville) [1545903]
-- [netdrv] nfp: bpf: pad code with valid nops (John Linville) [1545903]
-- [netdrv] nfp: bpf: calculate code store ECC (John Linville) [1545903]
-- [netdrv] nfp: bpf: move to datapath ABI version 2 (John Linville) [1545903]
-- [netdrv] nfp: bpf: encode extended LM pointer operands (John Linville) [1545903]
-- [netdrv] nfp: bpf: encode LMEM accesses (John Linville) [1545903]
-- [netdrv] nfp: add more white space to the instruction defines (John Linville) [1545903]
-- [netdrv] nfp: bpf: remove packet marking support (John Linville) [1545903]
-- [netdrv] nfp: bpf: remove register rename (John Linville) [1545903]
-- [netdrv] nfp: bpf: encode all 64bit shifts (John Linville) [1545903]
-- [netdrv] nfp: bpf: move software reg helpers and cmd table out of translator (John Linville) [1545903]
-- [netdrv] nfp: bpf: use the power of sparse to check we encode registers right (John Linville) [1545903]
-- [netdrv] nfp: bpf: lift the single-port limitation (John Linville) [1545903]
-- [netdrv] bpf, nfp: add meta data support (John Linville) [1545903]
-- [netdrv] bpf: add meta pointer for direct access (John Linville) [1545903]
-- [netdrv] nfp: don't reuse pointers in ring dumping (John Linville) [1545903]
-- [netdrv] bpf, nfp: implement jiting of BPF_J(LT,LE) (John Linville) [1545903]
-- [netdrv] bpf/verifier: rework value tracking (John Linville) [1545903]
-- [netdrv] Use octal not symbolic permissions (Ivan Vecera) [1530139]
-- [netdrv] emulex/benet: Constify *be_misconfig_evt_port_state (Ivan Vecera) [1530139]
-- [netdrv] be2net: Handle transmit completion errors in Lancer (Ivan Vecera) [1530139]
-- [netdrv] be2net: Fix HW stall issue in Lancer (Ivan Vecera) [1530139]
-- [netdrv] be2net: remove redundant initialization of 'head' and pointer txq (Ivan Vecera) [1530139]
-- [netdrv] be2net: networking block comments don't use an empty /* line (Ivan Vecera) [1530139]
-- [netdrv] be2net: use ARRAY_SIZE for array sizing calculation on array cmd_priv_map (Ivan Vecera) [1530139]
-- [netdrv] locking/atomics: coccinelle/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE() (Ivan Vecera) [1530139]
-- [infiniband] qib: Fix DMA api warning with debug kernel (Alex Estrin) [1573761]
-- [infiniband] isert: Fix for lib/dma_debug check_sync warning (Don Dutile) [1573752]
-- [infiniband] ib/hfi1: Use after free race condition in send context error path (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1: Fix memory leak in exception path in get_irq_affinity() (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1, rdmavt: Fix memory leak in hfi1_alloc_devdata() upon failure (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1: Fix NULL pointer dereference when invalid num_vls is used (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1: Fix loss of BECN with AHG (Alex Estrin) [1580114]
-- [infiniband] IB/hfi1 Use correct type for num_user_context (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1: Fix handling of FECN marked multicast packet (Alex Estrin) [1580114]
-
-* Mon May 28 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-894.el7]
-- [net] netfilter: ipset: Use is_zero_ether_addr instead of static and memcmp (Stefano Brivio) [1557599]
-- [net] netfilter: xt_set: use pr ratelimiting (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix wraparound in hash:*net* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Missing nfnl_lock()/nfnl_unlock() is added to ip_set_net_exit() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix "don't update counters" mode when counters used at the matching (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: use swap macro instead of _manually_ swapping values (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: add resched points during set listing (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: use nfnl_mutex_is_locked (Stefano Brivio) [1557599]
-- [net] netfilter: mark expected switch fall-throughs (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: deduplicate prefixlen maps (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix sparse warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Compress return logic (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix adding an IPv4 range containing more than 2^31 addresses (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: ipset list may return wrong member count for set with timeout (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: remove unused function __ip_set_get_netlink (Stefano Brivio) [1557599]
-- [net] netfilter: Remove exceptional & on function name (Stefano Brivio) [1557599]
-- [net] netfilter: Remove unnecessary cast on void pointer (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Null pointer exception in ipset list:set (Stefano Brivio) [1557599]
-- [net] netfilter: sometimes valid entries in hash:* types of sets were evicted (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: hash: fix boolreturn.cocci warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: use setup_timer() and mod_timer() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: hash:ipmac type support added to ipset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix reported memory size for hash:* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Collapse same condition body to a single one (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Make struct htype per ipset family (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Optimize hash creation routine (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Make sure element data size is a multiple of u32 (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Make NLEN compile time constant for hash types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Simplify mtype_expire() for hash types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Remove redundant mtype_expire() arguments (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Count non-static extension memory for userspace (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add element count to all set types header (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add element count to hash headers (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Regroup ip_set_put_extensions and add extern (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Separate memsize calculation code into dedicated function (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Split extensions into separate files (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use kmalloc() in comment extension helper (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Improve skbinfo get/init helpers (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Headers file cleanup (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Mark some helper args as const (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Remove extra whitespaces in ip_set.h (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check IPSET_ATTR_ETHER netlink attribute length (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix set:list type crash when flush/dump set in parallel (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: allow a 0 netmask with hash_netiface type (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix hash type expire: release empty hash bucket block (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix hash:* type expiration (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix extension alignment (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix sleeping memory allocation in atomic context (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fixing unnamed union init (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Out of bound access in hash:net* types fixed (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix coding styles reported by checkpatch.pl (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Introduce RCU locking in list type (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Introduce RCU locking in hash:* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Introduce RCU locking in bitmap:* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Prepare the ipset core to use RCU at set level (Stefano Brivio) [1557599]
-- [net] netfilter: ipset Remove rbtree from hash:net, iface (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix parallel resizing and listing of the same set (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix cidr handling for hash:*net* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check CIDR value only when attribute is given (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Make sure we always return line number on batch (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Permit CIDR equal to the host address CIDR in IPv6 (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check extensions attributes before getting extensions (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use SET_WITH_*() helpers to test set extensions (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use MSEC_PER_SEC consistently (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: deinline ip_set_put_extensions() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use better include files in xt_set.c (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Improve preprocessor macros checks (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix hashing for ipv6 sets (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix ext_*() macros (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check for comment netlink attribute length (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Return bool values instead of int (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use HOST_MASK literal to represent host address CIDR len (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check IPSET_ATTR_PORT only once (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Return ipset error instead of bool (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Preprocessor directices cleanup (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: No need to make nomatch bitfield (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Properly calculate extensions offsets and total length (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: make ip_set_get_ip*_port to use skb_network_offset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Give a better name to a macro in ip_set_core.c (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix sparse warning (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: fix boolreturn.cocci warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Explicitly add padding elements to hash:net, net and hash:net, port, net (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Simplify cidr handling for hash:*net* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Indicate when /0 networks are supported (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Alignment problem between 64bit kernel 32bit userspace (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support updating extensions when the set is full (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: small potential read beyond the end of buffer (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: off by one in ip_set_nfnl_get_byindex() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: hash:mac type added to ipset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: send nonzero skbinfo extensions only (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension support to SET target (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension kernel support for the list set type (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension kernel support for the hash set types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension kernel support for the bitmap set types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension kernel support in the ipset core (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix static checker warning in ip_set_core.c (Stefano Brivio) [1557599]
-- [net] netfilter: Convert pr_warning to pr_warn (Stefano Brivio) [1557599]
-- [net] netfilter: fix errors in printk (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix warn: integer overflows 'sizeof(*map) + size * set->dsize' (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Resolve missing-field-initializer warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: netnet, netportnet: Fix value range support for IPv4 (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Removed invalid IPSET_ATTR_MARKMASK validation (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: add forceadd kernel support for hash set types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Prepare the kernel for create option flags when no extension is needed (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: kernel: uapi: fix MARKMASK attr ABI breakage (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: add markmask for hash:ip, mark data type (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: add hash:ip, mark data type to ipset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add hash: fix coccinelle warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Follow manual page behavior for SET target on list:set (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: rename nfnl_dereference()/nfnl_set() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: use rbtree postorder iteration instead of opencoding (Stefano Brivio) [1557599]
-- [net] netfilter: Fix typo in Kconfig (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: fix incorret comparison in hash_netnet4_data_equal() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: remove duplicate define (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix memory allocation for bitmap:port (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: The unnamed union initialization may lead to compilation error (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use netlink callback dump args only (Stefano Brivio) [1557599]
-- [net] netfilter: Fix common typo in "identify" (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add hash:net, port, net module to kernel (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use a common function at listing the extensions (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: For set:list types, replaced elements must be zeroed out (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix hash resizing with comments (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support comments in hash-type ipsets (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support comments in the list-type ipset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support comments in bitmap-type ipsets (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support comments for ipset entries in the core (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add hash:net, net module to kernel (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Kconfig: ipset needs NETFILTER_NETLINK (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: list:set: make sure all elements are checked by the gc (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support extensions which need a per data destroy function (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Generalize extensions support (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Move extension data to set structure (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Rename extension offset ids to extension ids (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Prepare ipset to support multiple networks for hash types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Introduce new operation to get both setname and family (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support package fragments for IPv4 protos without ports (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use fix sized type for timeout in the extension part (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix "may be used uninitialized" warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix sparse warnings due to missing rcu annotations (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Sparse warning about shadowed variable fixed (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Don't call ip_nest_end needlessly in the error path (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Validate the set family and not the set type family at swapping (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Consistent userspace testing with nomatch flag (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Skip really non-first fragments for IPv6 when getting port/protocol (Stefano Brivio) [1557599]
-- [net] tcp_memcontrol: remove dead per-memcg count of allocated sockets (Davide Caratti) [1554191]
-- [net] tcp_memcontrol: remove bogus hierarchy pressure propagation (Davide Caratti) [1554191]
-- [net] tcp_memcontrol: properly detect ancestor socket pressure (Davide Caratti) [1554191]
-- [net] sched: fix tc_u_common lookup (Ivan Vecera) [1572720]
-- [net] sched: fix panic when updating miniq (b, q)stats (Ivan Vecera) [1572720]
-- [net] sched: no need to free qdisc in RCU callback (Ivan Vecera) [1572720]
-- [net] sched: fix a missing rcu barrier in mini_qdisc_pair_swap() (Ivan Vecera) [1572720]
-- [net] sched: fix possible null pointer deref in tcf_block_put (Ivan Vecera) [1572720]
-- [net] sched: fix static key imbalance in case of ingress/clsact_init error (Ivan Vecera) [1572720]
-- [net] sched: fix clsact init error path (Ivan Vecera) [1572720]
-- [net] core: introduce mini_Qdisc and eliminate usage of tp->q for clsact fastpath (Ivan Vecera) [1572720]
-- [net] sched: introduce chain_head_change callback (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: use bitwise & rather than logical && on n->flags (Ivan Vecera) [1572720]
-- [net] sched: check NULL in tcf_block_put() (Ivan Vecera) [1572720]
-- [net] sched: move block offload unbind after all chains are flushed (Ivan Vecera) [1572720]
-- [netdrv] nfp: bpf: reject TC offload if XDP loaded (Ivan Vecera) [1572720]
-- [netdrv] nfp: flower: app should use struct nfp_repr (Ivan Vecera) [1572720]
-- [net] sched: remove ndo_setup_tc check from tc_can_offload (Ivan Vecera) [1572720]
-- [net] sched: remove tc_can_offload check from egdev call (Ivan Vecera) [1572720]
-- [net] sched: move the can_offload check from binding phase to rule insertion phase (Ivan Vecera) [1572720]
-- [net] sched: remove unused tc_should_offload helper (Ivan Vecera) [1572720]
-- [net] sched: remove unused is_classid_clsact_ingress/egress helpers (Ivan Vecera) [1572720]
-- [net] sched: remove unused classid field from tc_cls_common_offload (Ivan Vecera) [1572720]
-- [net] sched: avoid ndo_setup_tc calls for TC_SETUP_CLS* (Ivan Vecera) [1572720]
-- [netdrv] nfp: bpf: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] nfp: flower: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] mlx5e_rep: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] ixgbe: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] cxgb4: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] bnxt: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] mlx5e: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] mlxsw: spectrum: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: call block callbacks for offload (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: swap u32_remove_hw_knode and u32_remove_hw_hnode (Ivan Vecera) [1572720]
-- [net] sched: cls_matchall: call block callbacks for offload (Ivan Vecera) [1572720]
-- [net] sched: use tc_setup_cb_call to call per-block callbacks (Ivan Vecera) [1572720]
-- [net] sched: introduce per-block callbacks (Ivan Vecera) [1572720]
-- [net] sched: use extended variants of block_get/put in ingress and clsact qdiscs (Ivan Vecera) [1572720]
-- [net] sched: add block bind/unbind notif. and extended block_get/put (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: use hash_ptr() for tc_u_hash (Ivan Vecera) [1572720]
-- [net] sched: propagate q and parent from caller down to tcf_fill_node (Ivan Vecera) [1572720]
-- [net] sched: use tcf_block_q helper to get q pointer for sch_tree_lock (Ivan Vecera) [1572720]
-- [net] sched: tcindex, fw, flow: use tcf_block_q helper to get struct Qdisc (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: use block instead of q in tc_u_common (Ivan Vecera) [1572720]
-- [net] sched: ematch: obtain net pointer from blocks (Ivan Vecera) [1572720]
-- [net] sched: teach tcf_bind/unbind_filter to use block->q (Ivan Vecera) [1572720]
-- [net] sched: introduce tcf_block_q and tcf_block_dev helpers (Ivan Vecera) [1572720]
-- [net] sched: store net pointer in block and introduce qdisc_net helper (Ivan Vecera) [1572720]
-- [net] sched: store Qdisc pointer in struct block (Ivan Vecera) [1572720]
-- [scsi] export 'wwid' to sysfs (Eda Zhou) [1577281]
-- [iscsi-target] Fix iscsi_np reset hung task during parallel delete (Maurizio Lombardi) [1579217]
-- [scsi] qedf: Update copyright for 2018 (Chad Dupuis) [1566547]
-- [scsi] qedf: Add more defensive checks for concurrent error conditions (Chad Dupuis) [1566547]
-- [scsi] qedf: Set the UNLOADING flag when removing a vport (Chad Dupuis) [1566547]
-- [scsi] qedf: Add additional checks when restarting an rport due to ABTS timeout (Chad Dupuis) [1566547]
-- [scsi] qedf: If qed fails to enable MSI-X fail PCI probe (Chad Dupuis) [1566547]
-- [scsi] qedf: Honor default_prio module parameter even if DCBX does not converge (Chad Dupuis) [1566547]
-- [scsi] qedf: Improve firmware debug dump handling (Chad Dupuis) [1566547]
-- [scsi] qedf: Remove setting DCBX pending during soft context reset (Chad Dupuis) [1566547]
-- [scsi] qedf: Add task id to kref_get_unless_zero() debug messages when flushing requests (Chad Dupuis) [1566547]
-- [scsi] qedf: Check if link is already up when receiving a link up event from qed (Chad Dupuis) [1566547]
-- [scsi] qedf: Return request as DID_NO_CONNECT if MSI-X is not enabled (Chad Dupuis) [1566547]
-- [scsi] qedf: Release RRQ reference correctly when RRQ command times out (Chad Dupuis) [1566547]
-- [scsi] qedf: Honor priority from DCBX FCoE App tag (Chad Dupuis) [1566547]
-- [scsi] qedf: Add dcbx_not_wait module parameter so we won't wait for DCBX convergence to start discovery (Chad Dupuis) [1566547]
-- [scsi] qedf: Sanity check FCoE/FIP priority value to make sure it's between 0 and 7 (Chad Dupuis) [1566547]
-- [scsi] qedf: Add check for offload before flushing I/Os for target (Chad Dupuis) [1566547]
-- [scsi] qedf: Fix VLAN display when printing sent FIP frames (Chad Dupuis) [1566547]
-- [scsi] qedf: Add missing skb frees in error path (Chad Dupuis) [1566547]
-- [scsi] qedf: Increase the number of default FIP VLAN request retries to 60 (Chad Dupuis) [1566547]
-- [scsi] qedf: Synchronize rport restarts when multiple ELS commands time out (Chad Dupuis) [1566547]
-- [scsi] qedf: fix LTO-enabled build (Chad Dupuis) [1566547]
-- [scsi] qedf: remove redundant initialization of 'fcport' (Chad Dupuis) [1566547]
-- [scsi] qedf: Fix error return code in __qedf_probe() (Chad Dupuis) [1566547]
-- [scsi] qedi: Fix kernel crash during port toggle (Chad Dupuis) [1566549]
-- [scsi] qedi: fix build regression (Chad Dupuis) [1566549]
-- [scsi] qedi: fix building with LTO (Chad Dupuis) [1566549]
-- [scsi] qedi: Cleanup local str variable (Chad Dupuis) [1566549]
-- [scsi] qedi: Fix truncation of CHAP name and secret (Chad Dupuis) [1566549]
-- [x86] microcode: Load microcode on all cpus (Prarit Bhargava) [1568249]
-
-* Thu May 24 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-893.el7]
-- [fs] nfsd: restrict rd_maxcount to svc_max_payload in nfsd_encode_readdir (Scott Mayhew) [1574361]
-- [fs] nfsd: make nfsd4_scsi_identify_device retry with a larger buffer (Scott Mayhew) [1570969]
-- [fs] cifs: do not allow creating sockets except with SMB1 posix exensions (Leif Sahlberg) [1453123]
-- [fs] NFSv4.1: Fix up replays of interrupted requests (Steve Dickson) [1575768]
-- [fs] NFS: Make trace_nfs4_setup_sequence() available to NFS v4.0 (Steve Dickson) [1575768]
-- [fs] NFS: Merge the remaining setup_sequence functions (Steve Dickson) [1575768]
-- [fs] NFS: Check if the slot table is draining from nfs4_setup_sequence() (Steve Dickson) [1575768]
-- [fs] NFS: Handle setup sequence task rescheduling in a single place (Steve Dickson) [1575768]
-- [fs] NFS: Lock the slot table from a single place during setup sequence (Steve Dickson) [1575768]
-- [fs] NFS: Move slot-already-allocated check into nfs_setup_sequence() (Steve Dickson) [1575768]
-- [fs] NFS: Create a single nfs4_setup_sequence() function (Steve Dickson) [1575768]
-- [fs] NFS: Use nfs4_setup_sequence() everywhere (Steve Dickson) [1575768]
-- [fs] NFS: Change nfs4_setup_sequence() to take an nfs_client structure (Steve Dickson) [1575768]
-- [fs] NFS: Change nfs4_get_session() to take an nfs_client structure (Steve Dickson) [1575768]
-- [fs] NFS: Move nfs4_get_session() into nfs4_session.h (Steve Dickson) [1575768]
-- [fs] xfs: don't use ioends for direct write completions (Brian Foster) [1578943]
-- [fs] xfs: move misplaced error check in direct write completion (Brian Foster) [1578943]
-- [fs] SMB3: Validate negotiate request must always be signed (Leif Sahlberg) [1578183]
-- [fs] SMB: fix validate negotiate info uninitialised memory use (Leif Sahlberg) [1578183]
-- [fs] SMB: fix leak of validate negotiate info response buffer (Leif Sahlberg) [1578183]
-- [fs] CIFS: Fix NULL pointer deref on SMB2_tcon() failure (Leif Sahlberg) [1578183]
-- [fs] CIFS: do not send invalid input buffer on QUERY_INFO requests (Leif Sahlberg) [1578183]
-- [fs] cifs: Select all required crypto modules (Leif Sahlberg) [1578183]
-- [fs] CIFS: SMBD: Fix the definition for SMB2_CHANNEL_RDMA_V1_INVALIDATE (Leif Sahlberg) [1578183]
-- [fs] cifs: handle large EA requests more gracefully in smb2+ (Leif Sahlberg) [1578183]
-- [fs] SMB: Validate negotiate (to protect against downgrade) even if signing off (Leif Sahlberg) [1578183]
-- [fs] cifs: release auth_key.response for reconnect (Leif Sahlberg) [1578183]
-- [fs] CIFS: make arrays static const, reduces object code size (Leif Sahlberg) [1578183]
-- [fs] Update version of cifs module (Leif Sahlberg) [1578183]
-- [fs] cifs: hide unused functions (Leif Sahlberg) [1578183]
-- [fs] libceph: validate con->state at the top of try_write() (Ilya Dryomov) [1573126]
-- [fs] libceph: reschedule a tick in finish_hunting() (Ilya Dryomov) [1573126]
-- [fs] libceph: un-backoff on tick when we have a authenticated session (Ilya Dryomov) [1573126]
-- [crypto] testmgr - Allow leading zeros in RSA (Neil Horman) [1546163]
-- [crypto] testmgr - Fix incorrect values in PKCS#1 test vector (Neil Horman) [1546163]
-- [crypto] testmgr - add testvector for pkcs1pad(rsa) (Neil Horman) [1546163]
-- [crypto] hmac - add hmac IPAD/OPAD constant (Neil Horman) [1546163]
-- [crypto] qat - reduce stack size with KASAN (Neil Horman) [1546163]
-- [crypto] dh - Remove pointless checks for NULL 'p' and 'g' (Neil Horman) [1546163]
-- [crypto] qat - Clean up error handling in qat_dh_set_secret() (Neil Horman) [1546163]
-- [crypto] qat - mark expected switch fall-throughs in qat_uclo (Neil Horman) [1546163]
-- [crypto] qat - remove unused and redundant pointer vf_info (Neil Horman) [1546163]
-- [crypto] qat - pr_err() strings should end with newlines (Neil Horman) [1546163]
-- [crypto] qat - fix spelling mistake: "runing" -> "running" (Neil Horman) [1546163]
-- [crypto] qat - Use IPAD/OPAD constant (Neil Horman) [1546163]
-- [crypto] qat - use pcie_flr instead of duplicating it (Neil Horman) [1546163]
-- [netdrv] liquidio: bump up driver version to 1.7.2 to match newer NIC firmware (Felix Manlunas) [1548518]
-- [netdrv] liquidio: monitor all of Octeon's cores in watchdog thread (Felix Manlunas) [1548518]
-- [netdrv] liquidio: support use of ethtool to set link speed of CN23XX-225 cards (Felix Manlunas) [1548518]
-- [netdrv] liquidio vf: indicate that disabling rx vlan offload is not allowed (Felix Manlunas) [1535336 1548518]
-- [netdrv] liquidio: fix spelling mistake: "mac_tx_multi_collison" -> "mac_tx_multi_collision" (Felix Manlunas) [1548518]
-- [netdrv] liquidio: enhanced ethtool --set-channels feature (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function setup_glists to lio_core.c (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common definition octnic_gather to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function delete_glists to lio_core.c (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function list_delete_head to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function if_cfg_callback to lio_core.c (Felix Manlunas) [1548518]
-- [netdrv] liquidio: add support for ndo_get_stats64 instead of ndo_get_stats (Felix Manlunas) [1522697 1548518]
-- [netdrv] liquidio: move a couple of functions to lio_core.c (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Swap VF representor Tx and Rx statistics (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Added ndo_get_vf_stats support (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Enhanced ethtool stats (Felix Manlunas) [1548518]
-- [netdrv] liquidio: clean up Makefile for simpler composite object handling (Felix Manlunas) [1548518]
-- [netdrv] liquidio: prevent rx queues from getting stalled (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Prioritize control messages (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed duplicate Tx queue status check (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Renamed txqs_start to start_txqs (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Renamed txqs_stop to stop_txqs (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Renamed txqs_wake to wake_txqs (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Function call skb_iq for deriving queue from skb (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed one line function wake_q (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed one line function stop_q (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed netif_is_multiqueue check (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed start_txq function (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed one line function stop_txq (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function skb_iq to to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function txqs_start to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function txqs_wake to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function txqs_stop to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Added support for trusted VF (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Simplified napi poll (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Add support for liquidio 10GBase-T NIC (Felix Manlunas) [1548518]
-- [netdrv] liquidio: fix ndo_change_mtu to always return correct status to the caller (Felix Manlunas) [1548518]
-- [netdrv] liquidio: avoid doing useless work (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Resolved mbox read issue while reading more than one 64bit data (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Corrected Rx bytes counting (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Use zeroing memory allocator than allocator/memset (Felix Manlunas) [1548518]
-- [netdrv] liquidio: fix incorrect indentation of assignment statement (Felix Manlunas) [1548518]
-- [netdrv] mm: remove __GFP_COLD (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Missing error code in liquidio_init_nic_module() (Felix Manlunas) [1548518]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Felix Manlunas) [1548518]
-- [netdrv] vmxnet3: fix incorrect dereference when rxvlan is disabled (Neil Horman) [1570942]
-- [netdrv] hv_netvsc: Fix net device attach on older Windows hosts (Mohammed Gamal) [1569948]
-
-* Thu May 24 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-892.el7]
-- [documentation] dm thin: update Documentation to clarify when read_only is valid (Mike Snitzer) [1570199]
-- [lib] dma-debug: fix memory leak in debug_dma_alloc_coherent (Don Dutile) [1535622]
-- [lib] dma-debug.c: fix incorrect pfn calculation (Don Dutile) [1535622]
-- [lib] dma-debug.c: make locking work for RT (Don Dutile) [1535622]
-- [lib] dma-debug: use offset_in_page() macro (Don Dutile) [1535622]
-- [lib] dma-debug: add comment for failed to check map error (Don Dutile) [1535622]
-- [lib] dma-api: Teach the "DMA-from-stack" check about vmapped stacks (Don Dutile) [1535622]
-- [lib] rhel-only: Add null function for task_stack_vm_area() to simplify backports (Don Dutile) [1535622]
-- [lib] dma-debug: track bucket lock state for static checkers (Don Dutile) [1535622]
-- [lib] dma-debug: avoid spinlock recursion when disabling dma-debug (Don Dutile) [1535622]
-- [lib] dma-debug: switch check from _text to _stext (Don Dutile) [1535622]
-- [lib] dma-debug: check nents in dma_sync_sg* (Don Dutile) [1535622]
-- [lib] dma-debug: skip debug_dma_assert_idle() when disabled (Don Dutile) [1535622]
-- [lib] dma-debug: fix bucket_find_contain() (Don Dutile) [1535622]
-- [lib] dma-debug: modify check_for_stack output (Don Dutile) [1535622]
-- [mm] mlock: include VM_MIXEDMAP flag in the VM_SPECIAL list to avoid m(un)locking (Rafael Aquini) [1560030]
-- [mm] mlock: fix mlock count can not decrease in race condition (Rafael Aquini) [1560030]
-- [mm] mlock: add mlock flags to enable VM_LOCKONFAULT usage (Rafael Aquini) [1560030]
-- [mm] mlock: introduce VM_LOCKONFAULT (Rafael Aquini) [1560030]
-- [mm] mlock: wire up mlock2 system call on powerpc (Rafael Aquini) [1560030]
-- [mm] mlock: wire up mlock2 system call on s390 (Rafael Aquini) [1560030]
-- [mm] mlock: add new mlock2 system call (Rafael Aquini) [1560030]
-- [mm] mlock: refactor mlock, munlock, and munlockall code (Rafael Aquini) [1560030]
-- [mm] mlock: use offset_in_page macro (Rafael Aquini) [1560030]
-- [mm] mlock: reorganize mlockall() return values and remove goto-out label (Rafael Aquini) [1560030]
-- [mm] extract code to fault in a page from __get_user_pages() (Rafael Aquini) [1560030]
-- [mm] move mm_populate()-related code to mm/gup.c (Rafael Aquini) [1560030]
-- [mm] move gup() -> posix mlock() error conversion out of __mm_populate (Rafael Aquini) [1560030]
-- [mm] rename __mlock_vma_pages_range() to populate_vma_page_range() (Rafael Aquini) [1560030]
-- [mm] rename FOLL_MLOCK to FOLL_POPULATE (Rafael Aquini) [1560030]
-- [mm] mlock: reorder can_do_mlock to fix audit denial (Rafael Aquini) [1560030]
-- [mm] mlock: prepare params outside critical region (Rafael Aquini) [1560030]
-- [mm] mlock: place preemption point in do_mlockall() loop (Rafael Aquini) [1560030]
-- [mm] munlock: fix potential race with THP page split (Rafael Aquini) [1560030]
-- [mm] munlock: fix deadlock in __munlock_pagevec() (Rafael Aquini) [1560030]
-- [mm] munlock: fix a bug where THP tail page is encountered (Rafael Aquini) [1560030]
-- [mm] munlock: prevent walking off the end of a pagetable in no-pmd configuration (Rafael Aquini) [1560030]
-- [mm] munlock: manual pte walk in fast path instead of follow_page_mask() (Rafael Aquini) [1560030]
-- [mm] munlock: remove redundant get_page/put_page pair on the fast path (Rafael Aquini) [1560030]
-- [mm] munlock: bypass per-cpu pvec for putback_lru_page (Rafael Aquini) [1560030]
-- [mm] munlock: batch NR_MLOCK zone state updates (Rafael Aquini) [1560030]
-- [mm] munlock: batch non-THP page isolation and munlock+putback using pagevec (Rafael Aquini) [1560030]
-- [mm] munlock: remove unnecessary call to lru_add_drain() (Rafael Aquini) [1560030]
-- [watchdog] hpwdt: bump driver version (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: Claim NMIs generated by iLO5 (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: condition early return of NMI handler on iLO5 (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: Remove legacy NMI sourcing (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: fix unused variable warning (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: Check source of NMI (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: SMBIOS check (Joseph Szczypek) [1555073]
-- [kernel] sched/debug: Adjust newlines for better alignment (Joe Lawrence) [1505239]
-- [kernel] sched/debug: Fix per-task line continuation for console output (Joe Lawrence) [1505239]
-- [x86] sched: Allow topologies where NUMA nodes share an LLC (Prarit Bhargava) [1572441]
-- [s390] sthyi: add s390_sthyi system call (Hendrik Brueckner) [1519343]
-- [s390] sthyi: add cache to store hypervisor info (Hendrik Brueckner) [1519343]
-- [s390] sthyi: reorganize sthyi implementation (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: sthyi: fix sthyi inline assembly (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Fix STHYI buffer alignment for diag224 (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Limit sthyi execution (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Add sthyi emulation (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Extend diag 204 fields (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Add operation exception interception handler (Hendrik Brueckner) [1519343]
-- [s390] Make diag224 public (Hendrik Brueckner) [1519343]
-- [s390] Make cpc_name accessible (Hendrik Brueckner) [1519343]
-- [s390] hypfs: Move diag implementation and data definitions (Hendrik Brueckner) [1519343]
-
-* Mon May 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-891.el7]
-- [block] update chunk_sectors in blk_stack_limits() (Ming Lei) [1565727]
-- [misc] mei: me: allow runtime pm for platform with D0i3 (Prarit Bhargava) [1537419]
-- [netdrv] qede: Fix gfp flags sent to rdma event node allocation (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix l2 initializations over iWARP personality (Chad Dupuis) [1548140]
-- [netdrv] qed: Add configuration information to register dump and debug data (Chad Dupuis) [1548140]
-- [netdrv] qed: Delete unused parameter p_ptt from mcp APIs (Chad Dupuis) [1548140]
-- [netdrv] qede: Ethtool flash update support (Chad Dupuis) [1548140]
-- [netdrv] qed: Adapter flash update support (Chad Dupuis) [1548140]
-- [netdrv] qed: Add APIs for flash access (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix PTT entry leak in the selftest error flow (Chad Dupuis) [1548140]
-- [netdrv] qed: Populate nvm image attribute shadow (Chad Dupuis) [1548140]
-- [netdrv] qed*: Utilize FW 8.33.11.0 (Chad Dupuis) [1548140]
-- [netdrv] qede: Fix barrier usage after tx doorbell write (Chad Dupuis) [1548140]
-- [netdrv] qed: Use true and false for boolean values (Chad Dupuis) [1548140]
-- [netdrv] qede: fix spelling mistake: "registeration" -> "registration" (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix QP state initialization race (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix rc initialization on CNQ allocation failure (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: fix QP's ack timeout configuration (Chad Dupuis) [1548140]
-- [netdrv] qede: Fix qedr link update (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix non TCP packets should be dropped on iWARP ll2 connection (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix MPA unalign flow in case header is split across two packets (Chad Dupuis) [1548140]
-- [netdrv] qed: Use after free in qed_rdma_free() (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix iWARP write and send with immediate (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix kernel panic when running fio over NFSoRDMA (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix iWARP connect with port mapper (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix ipv6 destination address resolution (Chad Dupuis) [1548140]
-- [netdrv] qlogic/qed: Constify *pkt_type_str (Chad Dupuis) [1548140]
-- [netdrv] qed: code indent should use tabs where possible (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: lower print level of flushed CQEs (Chad Dupuis) [1548140]
-- [netdrv] qed: Remove reserveration of dpi for kernel (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix potential use-after-free in qed_spq_post() (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix endian problems around imm_data (Chad Dupuis) [1548140]
-- [netdrv] qed: Use zeroing memory allocator than allocator/memset (Chad Dupuis) [1548140]
-- [netdrv] qed*: Advance drivers' version to 8.33.0.20 (Chad Dupuis) [1548140]
-- [netdrv] qed*: Utilize FW 8.33.1.0 (Chad Dupuis) [1548140]
-- [netdrv] scsi: qedi: Remove comparison of u16 idx with zero (Chad Dupuis) [1548140]
-- [netdrv] qed*: HSI renaming for different types of HW (Chad Dupuis) [1548140]
-- [netdrv] qed*: Refactoring and rearranging FW API with no functional impact (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Use zeroing memory allocator than allocator/memset (Chad Dupuis) [1548140]
-- [netdrv] qede: Use NETIF_F_GRO_HW (Chad Dupuis) [1548140]
-- [netdrv] net/ethernet/qlogic/qed: Fix __qed_spq_block() ordering (Chad Dupuis) [1548140]
-- [netdrv] qed: use kzalloc instead of kmalloc and memset (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix iWARP out of order flow (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Remove set-but-not-used variables (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Annotate iomem pointers correctly (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Declare local functions static (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Use NULL instead of 0 to represent a pointer (Chad Dupuis) [1548140]
-- [netdrv] qed: Add iWARP support for fpdu spanned over more than two tcp packets (Chad Dupuis) [1548140]
-- [netdrv] qed: Add support for MPA header being split over two tcp packets (Chad Dupuis) [1548140]
-- [netdrv] qed: Add support for freeing two ll2 buffers for corner cases (Chad Dupuis) [1548140]
-- [netdrv] qed: Add unaligned and packed packet processing (Chad Dupuis) [1548140]
-- [netdrv] qed: Add mpa buffer descriptors for storing and processing mpa fpdus (Chad Dupuis) [1548140]
-- [netdrv] qed: Add ll2 connection for processing unaligned MPA packets (Chad Dupuis) [1548140]
-- [netdrv] qed: Add LL2 slowpath handling (Chad Dupuis) [1548140]
-- [netdrv] qed: Add the source of a packet sent on an iWARP ll2 connection (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix initialization of ll2 offload feature (Chad Dupuis) [1548140]
-- [netdrv] qed: Add ll2 option for dropping a tx packet (Chad Dupuis) [1548140]
-- [netdrv] qed: Add ll2 ability of opening a secondary queue (Chad Dupuis) [1548140]
-- [netdrv] qed: Add ll2 option to limit the number of bds per packet (Chad Dupuis) [1548140]
-- [netdrv] qed: Delete redundant check on dcb_app priority (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix rdma_type initialization (Chad Dupuis) [1548140]
-- [netdrv] qed: iWARP - Add check for errors on a SYN packet (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix maximum number of CQs for iWARP (Chad Dupuis) [1548140]
-- [netdrv] qed: Add iWARP out of order support (Chad Dupuis) [1548140]
-- [netdrv] qed: Add iWARP enablement support (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: fix build error without ipv6 (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Missing error code in qedr_init_user_queue() (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add support for iWARP in user space (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add iWARP connection management functions (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add iWARP connection management qp related callbacks (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add support for read with invalidate, supported in iWARP (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add iWARP support in existing verbs (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add support for registering an iWARP device (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Rename the qedr_cm file as a preparation for iWARP support (Chad Dupuis) [1548140]
-- [infiniband] iw_cxgb4: Change error/warn prints to pr_debug (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: Add ib_device->get_netdev support (Arjun Vynipadath) [1523154]
-- [uapi] rdma/cxgb4: Use structs to describe the uABI instead of opencoding (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: initialize ib_mr fields for user mrs (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: print mapped ports correctly (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Add a sanity check in process_work() (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: make pointer reg_workq static (Arjun Vynipadath) [1523154]
-- [infiniband] cxgb4: use ktime_get for timestamps (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Annotate r2 and stag as __be32 (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Declare stag as __be32 (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Convert timers to use timer_setup() (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Remove a set-but-not-used variable (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Suppress gcc 7 fall-through complaints (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Remove the obsolete kernel module option 'c4iw_debug' (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Fix indentation (Arjun Vynipadath) [1523154]
-- [infiniband] ib/cxgb3, cxgb4: Remove unneeded config dependencies (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: fix misuse of integer variable (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: Use dsgl by default (Arjun Vynipadath) [1427035 1523154]
-- [infiniband] iw_cxgb4: introduce __skb_put_(zero, data, u8) (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: make skb_push & __skb_push return void pointers (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: make skb_put & friends return void pointers (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: convert many more places to skb_put_zero() (Arjun Vynipadath) [1523154]
-
-* Fri May 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-890.el7]
-- [char] tpm_tis: verify locality released before returning from release_locality (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: fix intermittent failure with self tests (Jerry Snitselaar) [1578136]
-- [char] tpm: add retry logic (Jerry Snitselaar) [1578136]
-- [char] tpm: self test failure should not cause suspend to fail (Jerry Snitselaar) [1578136]
-- [char] tpm2: add longer timeouts for creation commands (Jerry Snitselaar) [1578136]
-- [char] tpm_crb: use __le64 annotated variable for response buffer address (Jerry Snitselaar) [1578136]
-- [char] tpm: fix buffer type in tpm_transmit_cmd (Jerry Snitselaar) [1578136]
-- [char] tpm: tpm-interface: fix tpm_transmit/_cmd kdoc (Jerry Snitselaar) [1578136]
-- [kernel] tpm: cmd_ready command can be issued only after granting locality (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: Introduce flag TPM_TRANSMIT_RAW (Jerry Snitselaar) [1578136]
-- [char] tpm: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1578136]
-- [char] tpm: st33zp24: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1578136]
-- [char] tpm_i2c_infineon: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1578136]
-- [char] tpm_i2c_nuvoton: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1578136]
-- [char] tpm_tis: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: remove unused variables (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: remove unused data fields from I2C and OF device ID tables (Jerry Snitselaar) [1578136]
-- [char] tpm: only attempt to disable the LPC CLKRUN if is already enabled (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: follow coding style for variable declaration in tpm_tis_core_init() (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: delete the TPM_TIS_CLK_ENABLE flag (Jerry Snitselaar) [1515099 1578136]
-- [kernel] tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd() (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm_tis: Move ilb_base_addr to tpm_tis_data (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm2-cmd: allow more attempts for selftest execution (Jerry Snitselaar) [1578136]
-- [char] tpm: return a TPM_RC_COMMAND_CODE response if command is not implemented (Jerry Snitselaar) [1578136]
-- [char] tpm: Move Linux RNG connection to hwrng (Jerry Snitselaar) [1578136]
-- [security] tpm: use struct tpm_chip for tpm_chip_find_get() (Jerry Snitselaar) [1578136]
-- [char] tpm: use idr_find(), not idr_find_slowpath() (Jerry Snitselaar) [1578136]
-- [kernel] tpm: add event log format version (Jerry Snitselaar) [1578136]
-- [char] tpm: rename event log provider files (Jerry Snitselaar) [1578136]
-- [kernel] tpm: move tpm_eventlog.h outside of drivers folder (Jerry Snitselaar) [1578136]
-- [char] tpm: use tpm_msleep() value as max delay (Jerry Snitselaar) [1578136]
-- [char] tpm: reduce tpm polling delay in tpm_tis_core (Jerry Snitselaar) [1578136 1515099]
-- [char] tpm: move wait_for_tpm_stat() to respective driver files (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm, tpm_tis: use ARRAY_SIZE() to define TPM_HID_USR_IDX (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: fix duplicate inline declaration specifier (Jerry Snitselaar) [1578136]
-- [char] tpm: fix type of a local variables in tpm_tis_spi.c (Jerry Snitselaar) [1578136]
-- [char] tpm: fix type of a local variable in tpm2_map_command() (Jerry Snitselaar) [1578136]
-- [char] tpm: fix type of a local variable in tpm2_get_cc_attrs_tbl() (Jerry Snitselaar) [1578136]
-- [char] tpm-dev-common: Reject too short writes (Jerry Snitselaar) [1578136]
-- [char] tpm: React correctly to RC_TESTING from TPM 2.0 self tests (Jerry Snitselaar) [1578136]
-- [char] tpm: Use dynamic delay to wait for TPM 2.0 self test result (Jerry Snitselaar) [1578136]
-- [char] tpm: Trigger only missing TPM 2.0 self tests (Jerry Snitselaar) [1578136]
-- [char] tpm_tis_spi: Use DMA-safe memory for SPI transfers (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm/tpm_crb: Use start method value from ACPI table directly (Jerry Snitselaar) [1578136]
-- [char] tpm: constify transmit data pointers (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm_tis: make array cmd_getticks static const to shrink object code size (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: migrate pubek_show to struct tpm_buf (Jerry Snitselaar) [1578136]
-- [char] tpm: ibmvtpm: simplify crq initialization and document crq format (Jerry Snitselaar) [1578136]
-- [char] tpm: replace msleep() with usleep_range() in TPM 1.2/2.0 generic drivers (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: tpm_crb: constify acpi_device_id (Jerry Snitselaar) [1578136]
-- [char] tpm: vtpm: constify vio_device_id (Jerry Snitselaar) [1578136]
-- [iommu] vt-d: Make use of iova deferred flushing (Jerry Snitselaar) [1519117]
-- [iommu] iova: Add flush timer (Jerry Snitselaar) [1519117]
-- [iommu] iova: Add locking to Flush-Queues (Jerry Snitselaar) [1519117]
-- [iommu] iova: Add flush counters to Flush-Queue implementation (Jerry Snitselaar) [1519117]
-- [iommu] iova: Implement Flush-Queue ring buffer (Jerry Snitselaar) [1519117]
-- [iommu] iova: Add flush-queue data structures (Jerry Snitselaar) [1519117]
-- [iommu] iova: Sort out rbtree limit_pfn handling (Jerry Snitselaar) [1519117]
-- [iommu] iova: Fix underflow bug in __alloc_and_insert_iova_range (Jerry Snitselaar) [1519117]
-- [iommu] vt-d: avoid dev iotlb logic for domains with no dev iotlbs (Jerry Snitselaar) [1519117]
-- [s390] qeth: on channel error, reject further cmd requests (Hendrik Brueckner) [1561974]
-- [s390] qeth: repair SBAL elements calculation (Hendrik Brueckner) [1559000]
-- [s390] dasd: Add discard support for FBA devices (Hendrik Brueckner) [1519354]
-- [s390] dasd: Define often used variable (Hendrik Brueckner) [1519354]
-- [s390] dasd: Make setting queue_max_segments more explicit (Hendrik Brueckner) [1519354]
-- [s390] dasd: fix performance drop (Hendrik Brueckner) [1519354]
-- [s390] dasd: mark DASD devices as non rotational (Hendrik Brueckner) [1519354]
-- [s390] dasd: Make raw I/O usable without prefix support (Hendrik Brueckner) [1519353]
-- [s390] dasd: Rename dasd_raw_build_cp() (Hendrik Brueckner) [1519353]
-- [s390] dasd: Refactor prefix_LRE() and related functions (Hendrik Brueckner) [1519353]
-- [s390] dasd: remove casts to dasd_*_private (Hendrik Brueckner) [1519353]
-- [s390] dasd: enable raw_track_access reads without direct I/O (Hendrik Brueckner) [1519353]
-- [s390] cpum_cf: rename IBM z13/z14 counter names (Hendrik Brueckner) [1519345]
-- [s390] add support for IBM z14 Model ZR1 (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: correct counter number of LAST_HOST_TRANSLATIONS (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: add hardware counter support for IBM z14 (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: correct variable naming (cleanup) (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: add IBM z13 counter event names (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: add support for the MT-diagnostic counter set (z13) (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: cleanup event/counter validation (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: update counter numbers to ecctr limits (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: Fix missing cpu hotplug notifier transition (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: Corrected return code for unauthorized counter sets (Hendrik Brueckner) [1519345]
-- [platform] x86: intel-vbtn: Reset wakeup capable flag on removal (Scott Wood) [1524975]
-- [platform] x86: intel-vbtn: Only activate tablet mode switch on 2-in-1's (Scott Wood) [1524975]
-- [platform] x86: intel-vbtn: Replace License by SPDX identifier (Scott Wood) [1524975]
-- [platform] x86: intel-vbtn: Remove redundant inclusions (Scott Wood) [1524975]
-- [platform] x86: intel-vbtn: Support tablet mode switch (Scott Wood) [1524975]
-- [platform] intel-hid: support KEY_ROTATE_LOCK_TOGGLE (Scott Wood) [1445055]
-- [platform] intel-hid: clean up and sort header files (Scott Wood) [1445055]
-- [platform] x86: intel-hid: Reset wakeup capable flag on removal (Scott Wood) [1445055]
-- [platform] intel-hid: add a DMI quirk to support Wacom MobileStudio Pro (Scott Wood) [1445055]
-- [platform] x86: intel-hid: Power button suspend on Dell Latitude 7275 (Scott Wood) [1445055]
-- [platform] x86: intel-hid: reduce unnecessary messages for normal users (Scott Wood) [1445055]
-- [platform] x86: intel-hid: Add missing ->thaw callback (Scott Wood) [1445055]
-- [platform] x86: intel-hid: do not set parents of input devices explicitly (Scott Wood) [1445055]
-- [platform] x86: intel-hid: remove redundant set_bit() call (Scott Wood) [1445055]
-- [platform] x86: intel-hid: use devm_input_allocate_device() for HID events input device (Scott Wood) [1445055]
-- [platform] x86: intel-hid: make intel_hid_set_enable() take a boolean argument (Scott Wood) [1445055]
-- [platform] x86: intel-hid: simplify enabling/disabling HID events (Scott Wood) [1445055]
-- [platform] x86: intel-hid: Support 5 button array (Scott Wood) [1445055]
-- [x86] kvm: Fix loss of pending INIT due to race (Radim Krcmar) [1569473]
-- [x86] microcode: Fix CPU synchronization routine (Prarit Bhargava) [1568249]
-- [x86] microcode: Attempt late loading only when new microcode is present (Prarit Bhargava) [1568249]
-- [x86] microcode: Synchronize late microcode loading (Prarit Bhargava) [1568249]
-- [x86] microcode: Request microcode on the BSP (Prarit Bhargava) [1568249]
-- [x86] microcode: Do not upload microcode if CPUs are offline (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Writeback and invalidate caches before updating microcode (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Check microcode revision before updating sibling threads (Prarit Bhargava) [1568249]
-- [x86] microcode: Get rid of struct apply_microcode_ctx (Prarit Bhargava) [1568249]
-- [x86] cpu: Add a microcode loader callback (Prarit Bhargava) [1568249]
-- [x86] microcode: Propagate return value from updating functions (Prarit Bhargava) [1568249]
-- [x86] microcode/amd: Change load_microcode_amd()'s param to bool to fix preemptibility bug (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Add a helper which gives the microcode revision (Prarit Bhargava) [1568249]
-- [x86] cpu: Add native CPUID variants returning a single datum (Prarit Bhargava) [1568249]
-- [x86] microcode/amd: Move private inlines to .c and mark local functions static (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Simplify generic_load_microcode() (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Do not issue microcode updates messages on each CPU (Prarit Bhargava) [1568249]
-
-* Thu May 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-889.el7]
-- [netdrv] sfc: fix flow type handling for RSS filters (Jarod Wilson) [1547443]
-- [netdrv] sfc: protect list of RSS contexts under a mutex (Jarod Wilson) [1547443]
-- [netdrv] sfc: return a better error if filter insertion collides with MC reboot (Jarod Wilson) [1547443]
-- [netdrv] sfc: use a semaphore to lock farch filters too (Jarod Wilson) [1547443]
-- [netdrv] sfc: give ef10 its own rwsem in the filter table instead of filter_lock (Jarod Wilson) [1547443]
-- [netdrv] sfc: replace asynchronous filter operations (Jarod Wilson) [1547443]
-- [netdrv] sfc: Use octal not symbolic permissions (Jarod Wilson) [1547443]
-- [netdrv] sfc: support FEC configuration through ethtool (Jarod Wilson) [1547443]
-- [netdrv] sfc: update MCDI protocol headers (Jarod Wilson) [1547443]
-- [netdrv] sfc: support RSS spreading of ethtool ntuple filters (Jarod Wilson) [1547443]
-- [netdrv] sfc: falcon: remove duplicated bit-wise or of LOOPBACK_SGMII (Jarod Wilson) [1547443]
-- [netdrv] sfc: mark some unexported symbols as static (Jarod Wilson) [1547443]
-- [netdrv] sfc: add suffix to large constant in ptp (Jarod Wilson) [1547443]
-- [netdrv] sfc: support Medford2 frequency adjustment format (Jarod Wilson) [1547443]
-- [netdrv] sfc: support second + quarter ns time format for receive datapath (Jarod Wilson) [1547443]
-- [netdrv] sfc: support separate PTP and general timestamping (Jarod Wilson) [1547443]
-- [netdrv] sfc: simplify RX datapath timestamping (Jarod Wilson) [1547443]
-- [netdrv] sfc: only advertise TX timestamping if we have the license for it (Jarod Wilson) [1547443]
-- [netdrv] sfc: on 8000 series use TX queues for TX timestamps (Jarod Wilson) [1547443]
-- [netdrv] sfc: MAC TX timestamp handling on the 8000 series (Jarod Wilson) [1547443]
-- [netdrv] sfc: only enable TX timestamping if the adapter is licensed for it (Jarod Wilson) [1547443]
-- [netdrv] sfc: use main datapath for HW timestamps if available (Jarod Wilson) [1547443]
-- [netdrv] sfc: add function to determine which TX timestamping method to use (Jarod Wilson) [1547443]
-- [netdrv] sfc: handle TX timestamps in the normal data path (Jarod Wilson) [1547443]
-- [netdrv] sfc: remove tx and MCDI handling from NAPI budget consideration (Jarod Wilson) [1547443]
-- [netdrv] mdio: add mdio45_ethtool_ksettings_get (Jarod Wilson) [1547443]
-- [netdrv] sfc: add bits for 25/50/100G supported/advertised speeds (Jarod Wilson) [1547443]
-- [netdrv] sfc: support the ethtool ksettings API properly so that 25/50/100G works (Jarod Wilson) [1547443]
-- [netdrv] sfc: basic MCDI mapping of 25/50/100G link speeds (Jarod Wilson) [1547443]
-- [netdrv] sfc: expose CTPIO stats on NICs that support them (Jarod Wilson) [1547443]
-- [netdrv] sfc: expose FEC stats on Medford2 (Jarod Wilson) [1547443]
-- [netdrv] sfc: support variable number of MAC stats (Jarod Wilson) [1547443]
-- [netdrv] sfc: update MCDI protocol headers (Jarod Wilson) [1547443]
-- [netdrv] sfc: populate the timer reload field (Jarod Wilson) [1547443]
-- [netdrv] sfc: update EF10 register definitions (Jarod Wilson) [1547443]
-- [netdrv] sfc: improve PTP error reporting (Jarod Wilson) [1547443]
-- [netdrv] sfc: add Medford2 (SFC9250) PCI Device IDs (Jarod Wilson) [1547443]
-- [netdrv] sfc: support VI strides other than 8k (Jarod Wilson) [1547443]
-- [netdrv] sfc: make mem_bar a function rather than a constant (Jarod Wilson) [1547443]
-- [netdrv] sfc: pass valid pointers from efx_enqueue_unwind (Jarod Wilson) [1547443]
-- [netdrv] sfc: falcon: use new api ethtool_(get|set)_link_ksetting (Jarod Wilson) [1547443]
-- [netdrv] sfc: use new api ethtool_(get|set)_link_ksettings (Jarod Wilson) [1547443]
-- [netdrv] sfc: Track RPS flow IDs per channel instead of per function (Jarod Wilson) [1547443]
-- [netdrv] sfc: use flow dissector helpers for aRFS (Jarod Wilson) [1547443]
-- [netdrv] mlx4_core: Fix memory leak while delete slave's resources (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Fix mixed PFC and Global pause user control requests (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Include GID type when deleting GIDs from HW table under RoCE (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Fix corruption of RoCEv2 IPv4 GIDs (Erez Alfasi) [1520295]
-- [netdrv] ib/mlx4: Fix incorrectly releasing steerable UD QPs when have only ETH ports (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Align behavior of set ring size flow via ethtool (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Add support to RSS hash for inner headers (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Change default QoS settings (Erez Alfasi) [1520295]
-- [netdrv] mlx4_core: Cleanup FMR unmapping flow (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: RX csum, reorder branches (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: RX csum, remove redundant branches and checks (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Remove unused ibpd parameter (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Potential buffer overflow in _mlx4_set_path() (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Fix mlx4_ib_alloc_mr error flow (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Add CQ moderation capability to query_device (Erez Alfasi) [1520295 1520339]
-- [infiniband] ib/mlx4: Exposing modify CQ callback to uverbs layer (Erez Alfasi) [1520295]
-- [netdrv] mlx4: Use Kconfig flag to remove support of old gen2 Mellanox devices (Erez Alfasi) [1520295]
-- [netdrv] mlx4: convert mlx4_srq.refcount from atomic_t to refcount_t (Erez Alfasi) [1520295]
-- [netdrv] mlx4: convert mlx4_qp.refcount from atomic_t to refcount_t (Erez Alfasi) [1520295]
-- [netdrv] mlx4: convert mlx4_cq.refcount from atomic_t to refcount_t (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Suppress gcc 7 fall-through complaints (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: XDP_TX, assign constant values of TX descs on ring creaion (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Obsolete call to generic write_desc in XDP xmit flow (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Replace netdev parameter with priv in XDP xmit function (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Increase number of default RX rings (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Limit the number of RX rings (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Limit the number of TX rings (Erez Alfasi) [1520295]
-- [netdrv] mlx4: use setup_timer() helper (Erez Alfasi) [1520295]
-- [netdrv] mlx4: add XDP missing code (Erez Alfasi) [1563806]
-- [kernel] ib/mlx5: Respect new UMR capabilities (Alaa Hleihel) [1520297 1573661]
-- [infiniband] ib/mlx5: Enable ECN capable bits for UD RoCE v2 QPs (Alaa Hleihel) [1520297 1573661]
-- [netdrv] mlx5e: Sync netdev vxlan ports at open (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Avoid using the ipv6 stub in the TC offload neigh update path (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix memory usage issues in offloading TC flows (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix traffic being dropped on VF representor (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Verify coalescing parameters in range (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Make eswitch support to depend on switchdev (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Use 32 bits to store VF representor SQ number (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Don't override vport admin link state in switchdev mode (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Don't clean uninitialized UMR resources (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Fix cleanup order on unload (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Fix crash while accessing garbage pointer and freed memory (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Fix integer overflows in mlx5_ib_create_srq (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Fix out-of-bounds read in create_raw_packet_qp_rq (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Fix integer overflow while resizing CQ (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Fix an error code in __mlx5_ib_modify_qp() (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: When not in dual port RoCE mode, use provided port as native (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx: Set slid to zero in Ethernet completion struct (Alaa Hleihel) [1520297]
-- [netdrv] net, ib/mlx5: Raise fatal IB event when sys error occurs (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Avoid passing an invalid QP type to firmware (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Fix incorrect size of klms in the memory region (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix error handling when adding flow rules (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Fix drop counters use before creation (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Add header re-write to the checks for conflicting actions (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Use 128B cacheline size for 128B or larger cachelines (Alaa Hleihel) [1554070 1520297]
-- [netdrv] mlx5e: Specify numa node when allocating drop rq (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Return error if prio is specified when offloading eswitch vlan push (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Address static checker warnings on non-constant initializers (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Verify inline header size do not exceed SKB linear size (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix loopback self test when GRO is off (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix TCP checksum in LRO buffers (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: increase async EQ to avoid EQ overrun (Alaa Hleihel) [1520297]
-- [kernel] mlx5: fix mlx5_get_vector_affinity to start from completion vector 0 (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: IPoIB, Fix copy-paste bug in flow steering refactoring (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Avoid memory leak in case of XRCD dealloc failure (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add likely to the common RX checksum flow (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Extend the stats group API to have update_stats() (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Merge per priority stats groups (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add per-channel counters infrastructure, use it upon TX timeout (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Poll event queue upon TX timeout before performing full channels recovery (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add Event Queue meta data info for TX timeout logs (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Print delta since last transmit per SQ upon TX timeout (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Set hairpin queue size (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Enable setting hairpin queue size (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add RSS support for hairpin (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Vectorize the low level core hairpin object (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Enlarge the NIC TC offload steering prio to support two levels (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Refactor RSS related objects and code (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Set per priority hairpin pairs (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Use vhca id as the hairpin peer identifier (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Remove redundant allocation warning print (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix trailing semicolon (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Mmap the HCA's clock info to user-space (Alaa Hleihel) [1520297]
-- [uapi] mlx5e: Add clock info page to mlx5 core devices (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: remove redundant assignment of mdev (Alaa Hleihel) [1520297]
-- [kernel] dim: Fix int overflow (Alaa Hleihel) [1520297]
-- [kernel] dim: use struct net_dim_sample as arg to net_dim (Alaa Hleihel) [1520297]
-- [kernel] mlx5e: Move dynamic interrupt coalescing code to linux (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Change Mellanox references in DIM code (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Move generic functions to new file (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Move AM logic enums (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Remove rq references in mlx5e_rx_am (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Move interrupt moderation forward declarations (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Move interrupt moderation structs to new file (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Remove redundant checks in set_ringparam (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: E-switch, Add steering drop counters (Alaa Hleihel) [1520297 1467098]
-- [netdrv] mlx5e: IPoIB, Fix spelling mistake "functionts" -> "functions" (Alaa Hleihel) [1520334 1520297]
-- [netdrv] mlx5e: IPoIB, Add ethtool support to get child time stamping parameters (Alaa Hleihel) [1520334 1520297]
-- [netdrv] mlx5e: IPoIB, Add PTP ioctl support for child interface (Alaa Hleihel) [1520334 1520297]
-- [netdrv] mlx5e: IPoIB, Use correct timestamp in child receive flow (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Support offloading TC NIC hairpin flows (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Basic setup of hairpin object (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Hairpin pair core object setup (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Add hairpin definitions to the FW API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Replace WARN_ONCE with netdev_WARN_ONCE (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Set num_vhca_ports capability (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Don't advertise RAW QP support in dual port mode (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Route MADs for dual port RoCE (Alaa Hleihel) [1520297]
-- [kernel] net, ib/mlx5: Change set_roce_gid to take a port number (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Update counter implementation for dual port RoCE (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Change debugfs to have per port contents (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Implement dual port functionality in query routines (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move IB event processing onto a workqueue (Alaa Hleihel) [1520297]
-- [rdma] net, ib/mlx5: Manage port association for multiport RoCE (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Make netdev notifications multiport capable (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Reduce the use of num_port capability (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Set software owner ID during init HCA (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Fix race for multiple RoCE enable (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Add support for DC target QP (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Add support for DC Initiator QP (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Handle type IB_QPT_DRIVER when creating a QP (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Enable DC transport (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Add DCT command interface (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move locks initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move loopback initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move hardware counters initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move ODP initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move RoCE/ETH initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Create profile infrastructure to add and remove stages (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Separate ingress/egress namespaces for each vport (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix ingress/egress naming mistake (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: E-Switch, Use the name of static array instead of its address (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Enable QP creation with a given blue flame index (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Expose dynamic mmap allocation (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Extend UAR stuff to support dynamic allocation (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Report inner RSS capability (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Create a dedicated send to vport rule deletion function (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Move mlx5e only logic outside E-Switch (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Refactor load/unload of representors (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Refactor vport representors initialization (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: revisit -Wmaybe-uninitialized warning (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Fix out-of-bound access while querying AH (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Remove timestamp set from netdevice open flow (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Update ptp_clock_event foreach PPS event (Alaa Hleihel) [1554076 1520297]
-- [netdrv] mlx5e: Don't override netdev features field unless in error flow (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Check support before TC swap in ETS init (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add error print in ETS init (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Keep updating ethtool statistics when the interface is down (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix error handling in load one (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix mlx5_get_uars_page to return error code (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix memory leak in bad flow of mlx5_alloc_irq_vectors (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Fix get vector affinity helper function (Alaa Hleihel) [1520297]
-- [netdrv] net, ib/mlx5: Don't disable local loopback multicast traffic when needed (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Fix congestion counters in LAG mode (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix misspelling in the error message and comment (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix defaulting RX ring size when not needed (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix features check of IPv6 traffic (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Fix rate limit packet pacing naming and struct (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: FPGA, return -EINVAL if size is zero (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Add CQ moderation capability to query_device (Alaa Hleihel) [1520297 1520337]
-- [kernel] ib/mlx5: Exposing modify CQ callback to uverbs layer (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Fix ABI alignment to 64 bit (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Add PCI write end padding support (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: CHECKSUM_COMPLETE offload for VLAN/QinQ packets (Alaa Hleihel) [1520297 1464870]
-- [netdrv] mlx5e: Add VLAN offloads statistics (Alaa Hleihel) [1520297 1464870]
-- [kernel] mlx5e: Add 802.1ad VLAN insertion support (Alaa Hleihel) [1520297 1464870]
-- [netdrv] mlx5e: Add 802.1ad VLAN filter steering rules (Alaa Hleihel) [1520297 1464870]
-- [netdrv] mlx5e: Declare bitmap using kernel macro (Alaa Hleihel) [1520297 1464870]
-- [netdrv] mlx5e: Enable CQE based moderation on TX CQ (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: IPoIB, Add inner TTC table to IPoIB flow steering (Alaa Hleihel) [1520334 1520297]
-- [netdrv] mlx5: Initialize destination_flow struct to 0 (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Enlarge the NIC TC offload table size (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: DCBNL, Add debug messages log (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add support for ethtool msglvl support (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Support DSCP trust state to Ethernet's IP packet on SQ (Alaa Hleihel) [1520297 1460717]
-- [netdrv] mlx5e: Add dcbnl dscp to priority support (Alaa Hleihel) [1520297]
-- [kernel] mlx5: QPTS and QPDPM register firmware command support (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Add MLX5_SET16 and MLX5_GET16 (Alaa Hleihel) [1520297]
-- [kernel] mlx5: QCAM register firmware command support (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch channels counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch ipsec counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch pme counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch per prio pfc counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch per prio traffic counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch pcie counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch ethernet extended counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch physical statistical counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch RFC 2819 counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch RFC 2863 counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch IEEE 802.3 counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch vport counters to use the stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch Q counters to use the stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Introduce stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mellanox: Convert timers to use timer_setup() (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Add support for RSS on the inner packet (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Add tunneling offloads support (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Update tunnel offloads bits (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Support padded 128B CQE feature (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Support 128B CQE compression feature (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Add 128B CQE compression and padding HW bits (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Allow creation of a multi-packet RQ (Alaa Hleihel) [1520297 1386762]
-- [uapi] ib/mlx5: Expose multi-packet RQ capabilities (Alaa Hleihel) [1520297 1386762]
-- [netdrv] mlx5: convert fs_node.refcount from atomic_t to refcount_t (Alaa Hleihel) [1520297]
-- [kernel] mlx5: convert mlx5_cq.refcount from atomic_t to refcount_t (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Use ARRAY_SIZE (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Remove a set-but-not-used variable (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Suppress gcc 7 fall-through complaints (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5:: pr_err() and mlx5_ib_dbg() strings should end with newlines (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Remove redundant unlikely() (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: use setup_timer() helper (Alaa Hleihel) [1520297]
-- [net] af_iucv: enable control sends in case of SEND_SHUTDOWN (Hendrik Brueckner) [1559003]
-- [net] core: Add drop counters to VF statistics (Ivan Vecera) [1574474]
-- [net] dcb: Add dscp to priority selector type (Ivan Vecera) [1574474]
-- [net] ipv6: fix a potential use after free in ip6_offload.c (Sabrina Dubroca) [1569898]
-- [net] ipv6: send netlink notifications for manually configured addresses (Lorenzo Bianconi) [1484434]
-- [net] documentation: ip-sysctl.txt: clarify disable_ipv6 (Lorenzo Bianconi) [1550648]
-- [net] ipv6: do not set routes if disable_ipv6 has been enabled (Lorenzo Bianconi) [1550648]
-- [net] sctp: handle two v4 addrs comparison in sctp_inet6_cmp_addr (Xin Long) [1564850]
-- [net] sctp: do not check port in sctp_inet6_cmp_addr (Xin Long) [1564850]
-- [net] team: fix netconsole setup over team (Xin Long) [1567270]
-- [net] dccp: check sk for closed state in dccp_sendmsg() (Stefano Brivio) [1571268] {CVE-2018-1130}
-- [net] ipv6: dccp: add missing bind_conflict to dccp_ipv6_mapped (Stefano Brivio) [1571268] {CVE-2018-1130}
-- [net] ethtool: extend RXNFC API to support RSS spreading of filter matches (Ivan Vecera) [1563726]
-- [net] bpf: add bpf_prog_sub (Neil Horman) [1553106]
-- [net] bpf: rename netdev_xdp to netdev_bpf (Neil Horman) [1553106]
-- [net] xdp: base API for new XDP rx-queue info concept (Neil Horman) [1553106]
-- [net] bpf: rename ndo_xdp to ndo_bpf (Neil Horman) [1553106]
-- [net] team: move dev_mc_sync after master_upper_dev_link in team_port_add (Xin Long) [1558195]
-- [net] team: Fix double free in error path (Xin Long) [1558195]
-- [net] team: fall back to hash if table entry is empty (Xin Long) [1558195]
-- [net] team: use a larger struct for mac address (Xin Long) [1558195]
-- [net] ipv6: Reflect MTU changes on PMTU of exceptions for MTU-less routes (Stefano Brivio) [1541270]
-
-* Wed May 16 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-888.el7]
-- [kernel] perf/core: Optimize perf_rotate_context() event scheduling (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix tree based event rotation (Jiri Olsa) [1482996]
-- [kernel] perf/core: Simpify perf_event_groups_for_each() (Jiri Olsa) [1482996]
-- [kernel] perf/core: Optimize ctx_sched_out() (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix event schedule order (Jiri Olsa) [1482996]
-- [kernel] perf/core: Cleanup the rb-tree code (Jiri Olsa) [1482996]
-- [kernel] perf/cor: Use RB trees for pinned/flexible groups (Jiri Olsa) [1482996]
-- [kernel] perf/core: Rewrite event timekeeping (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix perf_event_read() (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix crash in perf_event_read() (Jiri Olsa) [1482996]
-- [kernel] perf/bpf: extend the perf_event_read_local() interface, a.k.a. "bpf: perf event change needed for subsequent bpf helpers" (Jiri Olsa) [1482996]
-- [kernel] perf, bpf: Add BPF support to all perf_event types (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix perf_output_read_group() (Jiri Olsa) [1482996]
-- [tools] perf test: Adapt test case record+probe_libc_inet_pton.sh for s390 (Jiri Olsa) [1570591]
-- [tools] perf test: Fix exit code for record+probe_libc_inet_pton.sh (Jiri Olsa) [1570591]
-- [tools] perf tests: Rename trace+probe_libc_inet_pton to record+probe_libc_inet_pton (Jiri Olsa) [1570591]
-- [tools] perf tests: Switch trace+probe_libc_inet_pton to use record (Jiri Olsa) [1570591]
-- [tools] perf tests shell lib: Use a wildcard to remove the vfs_getname probe (Jiri Olsa) [1570591]
-- [tools] perf test: Fix test case inet_pton to accept inlines (Jiri Olsa) [1570591]
-- [tools] perf test: Fix test trace+probe_libc_inet_pton.sh for s390x (Jiri Olsa) [1570591]
-- [tools] perf test shell: Fix check open filename arg using 'perf trace' (Jiri Olsa) [1570591]
-- [tools] tools arch s390: Do not include header files from the kernel sources (Jiri Olsa) [1570591]
-- [tools] perf jvmti: Generate correct debug information for inlined code (Jiri Olsa) [1570591]
-- [tools] perf tools: Fix up build in hardened environments (Jiri Olsa) [1570591]
-- [tools] perf tools: Use shell function for perl cflags retrieval (Jiri Olsa) [1570591]
-- [tools] x86/decoder: Fix and update the opcodes map (Jiri Olsa) [1570591]
-- [tools] perf: Convert ACCESS_ONCE() to READ_ONCE() (Jiri Olsa) [1570591]
-- [tools] lib/traceevent/parse-filter.c: clean up clang build warning (Jiri Olsa) [1570591]
-- [tools] s390/perf: add perf register support for floating-point registers (Jiri Olsa) [1570591]
-- [tools] s390/perf: define common DWARF register string table (Jiri Olsa) [1570591]
-- [tools] s390/perf: add support for perf_regs and libdw (Jiri Olsa) [1570591]
-- [tools] s390/perf: add callback to perf to enable using AUX buffer (Jiri Olsa) [1570591]
-- [tools] perf intel-pt: Bring instruction decoder files into line with the kernel (Jiri Olsa) [1570591]
-- [tools] perf test: Fix test 21 for s390x (Jiri Olsa) [1570591]
-- [tools] perf bench numa: Fixup discontiguous/sparse numa nodes (Jiri Olsa) [1570591]
-- [tools] perf top: Use signal interface for SIGWINCH handler (Jiri Olsa) [1570591]
-- [tools] perf top: Fix window dimensions change handling (Jiri Olsa) [1570591]
-- [tools] perf top: Ignore kptr_restrict when not sampling the kernel (Jiri Olsa) [1570591]
-- [tools] perf record: Ignore kptr_restrict when not sampling the kernel (Jiri Olsa) [1570591]
-- [tools] perf report: Ignore kptr_restrict when not sampling the kernel (Jiri Olsa) [1570591]
-- [tools] perf evlist: Add helper to check if attr.exclude_kernel is set in all evsels (Jiri Olsa) [1570591]
-- [tools] perf test shell: Fix test case probe libc's inet_pton on s390x (Jiri Olsa) [1570591]
-- [tools] perf test shell: Fix check open filename arg using 'perf trace' on s390x (Jiri Olsa) [1570591]
-- [tools] perf annotate: Do not truncate instruction names at 6 chars (Jiri Olsa) [1570591]
-- [tools] perf help: Fix a bug during strstart() conversion (Jiri Olsa) [1570591]
-- [tools] perf machine: Guard against NULL in machine__exit() (Jiri Olsa) [1570591]
-- [tools] perf script: Fix --per-event-dump for auxtrace synth evsels (Jiri Olsa) [1570591]
-- [tools] perf evsel: Fix up leftover perf_evsel_stat usage via evsel->priv (Jiri Olsa) [1570591]
-- [tools] perf trace: Fix an exit code of trace__symbols_init (Jiri Olsa) [1570591]
-- [tools] perf record: Fix -c/-F options for cpu event aliases (Jiri Olsa) [1570591]
-- [tools] perf record: Generate PERF_RECORD_(MMAP, COMM, EXEC) with --delay (Jiri Olsa) [1570591]
-- [tools] perf evlist: Set the correct idx when adding dummy events (Jiri Olsa) [1570591]
-- [tools] perf srcline: Show correct function name for srcline of callchains (Jiri Olsa) [1570591]
-- [tools] perf srcline: Fix memory leak in addr2inlines() (Jiri Olsa) [1570591]
-- [tools] perf trace beauty: Implement pid_fd beautifier (Jiri Olsa) [1570591]
-- [tools] perf callchain: Fix double mapping al->addr for children without self period (Jiri Olsa) [1570591]
-- [tools] perf stat: Make --per-thread update shadow stats to show metrics (Jiri Olsa) [1570591]
-- [tools] perf stat: Move the shadow stats scale computation in perf_stat__update_shadow_stats (Jiri Olsa) [1570591]
-- [tools] perf tools: Add perf_data_file__write function (Jiri Olsa) [1570591]
-- [tools] perf tools: Add struct perf_data_file (Jiri Olsa) [1570591]
-- [tools] perf tools: Rename struct perf_data_file to perf_data (Jiri Olsa) [1570591]
-- [tools] perf script: Print information about per-event-dump files (Jiri Olsa) [1570591]
-- [tools] perf trace beauty prctl: Generate 'option' string table from kernel headers (Jiri Olsa) [1570591]
-- [tools] tools include uapi: Grab a copy of linux/prctl.h (Jiri Olsa) [1570591]
-- [tools] perf script: Allow creating per-event dump files (Jiri Olsa) [1570591]
-- [tools] perf evsel: Restore evsel->priv as a tool private area (Jiri Olsa) [1570591]
-- [tools] perf script: Use event_format__fprintf() (Jiri Olsa) [1570591]
-- [tools] perf script: Use pr_debug where appropriate (Jiri Olsa) [1570591]
-- [tools] perf script: Add a few missing conversions to fprintf style (Jiri Olsa) [1570591]
-- [tools] perf util: Enable handling of inlined frames by default (Jiri Olsa) [1570591]
-- [tools] perf report: Use srcline from callchain for hist entries (Jiri Olsa) [1570591]
-- [tools] perf report: Cache srclines for callchain nodes (Jiri Olsa) [1570591]
-- [tools] perf report: Cache failed lookups of inlined frames (Jiri Olsa) [1570591]
-- [tools] perf report: Properly handle branch count in match_chain() (Jiri Olsa) [1570591]
-- [tools] perf report: Compare symbol name for inlined frames when sorting (Jiri Olsa) [1570591]
-- [tools] perf callchain: Compare symbol name for inlined frames when matching (Jiri Olsa) [1570591]
-- [tools] perf script: Mark inlined frames and do not print DSO for them (Jiri Olsa) [1570591]
-- [tools] perf callchain: Mark inlined frames in output by " (inlined)" suffix (Jiri Olsa) [1570591]
-- [tools] perf report: Fall-back to function name comparison for -g srcline (Jiri Olsa) [1570591]
-- [tools] perf callchain: Create real callchain entries for inlined frames (Jiri Olsa) [1570591]
-- [tools] perf callchain: Refactor inline_list to store srcline string directly (Jiri Olsa) [1570591]
-- [tools] perf callchain: Refactor inline_list to operate on symbols (Jiri Olsa) [1570591]
-- [tools] perf callchain: Store srcline in callchain_cursor_node (Jiri Olsa) [1570591]
-- [tools] perf report: Remove code to handle inline frames from browsers (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add Goldmont Plus V1 event file (Jiri Olsa) [1570591]
-- [tools] perf kmem: Perform some cleanup if '--time' is given an invalid value (Jiri Olsa) [1570591]
-- [tools] perf script: Fix error handling path (Jiri Olsa) [1570591]
-- [tools] perf script: Use fprintf like printing uniformly (Jiri Olsa) [1570591]
-- [tools] perf tools: Introduce binary__fprintf() (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Fix incorrect cmask syntax for some Intel metrics (Jiri Olsa) [1570591]
-- [tools] perf tools: Do not check ABI headers in a detached tarball build (Jiri Olsa) [1570591]
-- [tools] perf annotate: Remove arch::cpuid_parse callback (Jiri Olsa) [1570591]
-- [tools] perf list: Fix group description in the man page (Jiri Olsa) [1570591]
-- [tools] perf mmap: Adopt push method from builtin-record.c (Jiri Olsa) [1570591]
-- [tools] perf record: Make record__mmap_read generic (Jiri Olsa) [1570591]
-- [tools] perf mmap: Move perf_mmap and methods to separate mmap.(ch) files (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Skylake Server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Skylake (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Sandy Bridge (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for JakeTown (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for IvyTown (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for IvyBridge (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Haswell Server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Haswell (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Broadwell Server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Broadwell (Jiri Olsa) [1570591]
-- [tools] perf top: Add option to set the number of thread for event synthesize (Jiri Olsa) [1570591]
-- [tools] perf top: Implement multithreading for perf_event__synthesize_threads (Jiri Olsa) [1570591]
-- [tools] perf tools: Lock to protect comm_str rb tree (Jiri Olsa) [1570591]
-- [tools] perf tools: Lock to protect namespaces and comm list (Jiri Olsa) [1570591]
-- [tools] perf tools: Provide mutex wrappers for pthreads rwlocks (Jiri Olsa) [1570591]
-- [tools] perf trace beauty madvise: Generate 'behavior' string table from kernel headers (Jiri Olsa) [1570591]
-- [tools] perf tests: Remove Intel CQM perf test (Jiri Olsa) [1570591]
-- [tools] perf stat: Fix adding multiple event groups (Jiri Olsa) [1570591]
-- [tools] perf tools: Fix leaking rec_argv in error cases (Jiri Olsa) [1570591]
-- [tools] perf pmu: Improve error messages for missing PMUs (Jiri Olsa) [1570591]
-- [tools] perf machine: Optimize a bit the machine__findnew_thread() methods (Jiri Olsa) [1570591]
-- [tools] perf machine: Use hashtable for machine threads (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Skylake server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Broadwell DE (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Broadwell Server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Haswell EP (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Ivy Town (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Haswell (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Ivy Bridge (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Sandy Bridge EP (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Sandy Bridge (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Skylake (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Broadwell (Jiri Olsa) [1570591]
-- [tools] perf stat: Fall weak group back even for EBADF (Jiri Olsa) [1570591]
-- [tools] perf tools: Make copyfile_offset() static (Jiri Olsa) [1570591]
-- [tools] perf config: Allow creating empty config set for config file autogeneration (Jiri Olsa) [1570591]
-- [tools] perf config: Write a config file just once (Jiri Olsa) [1570591]
-- [tools] perf tools: Use scandir() to replace readdir() (Jiri Olsa) [1570591]
-- [tools] perf ui progress: Add size info into progress bar (Jiri Olsa) [1570591]
-- [tools] perf ui progress: Add ui specific init function (Jiri Olsa) [1570591]
-- [tools] perf tools: Add python-clean target (Jiri Olsa) [1570591]
-- [tools] perf script: Support user regs (Jiri Olsa) [1570591]
-- [tools] perf record: Support direct --user-regs arguments (Jiri Olsa) [1570591]
-- [tools] perf stat: Update walltime_nsecs_stats in interval mode (Jiri Olsa) [1570591]
-- [tools] perf stat: Hide internal duration_time counter (Jiri Olsa) [1570591]
-- [tools] perf stat: Support duration_time for metrics (Jiri Olsa) [1570591]
-- [tools] perf stat: Don't use ctx for saved values lookup (Jiri Olsa) [1570591]
-- [tools] perf list: Add metric groups to perf list (Jiri Olsa) [1570591]
-- [tools] perf stat: Support JSON metrics in perf stat (Jiri Olsa) [1570591]
-- [tools] perf stat: Print generic metric header even for failed expressions (Jiri Olsa) [1570591]
-- [tools] perf stat: Factor out generic metric printing (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Support metric_group and no event name in JSON parser (Jiri Olsa) [1570591]
-- [tools] perf tools: Support weak groups in 'perf stat' (Jiri Olsa) [1570591]
-- [tools] perf sched timehist: Add pid and tid options (Jiri Olsa) [1570591]
-- [x86] perf/x86/intel: Plug memory leak in intel_pmu_init() (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix ctx::mutex deadlock (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix another perf, trace, cpuhp lock inversion (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix lock inversion between perf, trace, cpuhp (Jiri Olsa) [1570591]
-- [x86] perf/x86/rapl: Fix Haswell and Broadwell server RAPL event (Jiri Olsa) [1570591]
-- [uapi] perf/core: Add PERF_AUX_FLAG_COLLISION to report colliding samples (Jiri Olsa) [1570591]
-- [kernel] perf/core: Export AUX buffer helpers to modules (Jiri Olsa) [1570591]
-- [kernel] perf/core: Remove wrong barrier (Jiri Olsa) [1570591]
-- [kernel] perf/core: Make sure to update ctx time before using it (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix __perf_read_group_add() locking (Jiri Olsa) [1570591]
-- [kernel] perf/core: Update ctx time before detaching events (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix perf_event_read_value() locking (Jiri Olsa) [1570591]
-- [x86] perf/x86: Enable free running PEBS for REGS_USER/INTR (Jiri Olsa) [1570591]
-- [x86] perf/x86/intel: Hide TSX events when RTM is not supported (Jiri Olsa) [1570591]
-
-* Mon May 14 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-887.el7]
-- [fs] nfs41: do not return ENOMEM on LAYOUTUNAVAILABLE (Scott Mayhew) [1574002]
-- [fs] vfs: Return -ENXIO for negative SEEK_HOLE / SEEK_DATA offsets (Benjamin Coddington) [1572522]
-- [fs] nfs: Set FATTR4_WORD0_TYPE for . and .. entries (Scott Mayhew) [1562236]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Increase timeout by 1 sec for non-RAID fastpath IOs (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Use zeroing memory allocator than allocator/memset (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: fix selection of reply queue (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: switch to pci_alloc_irq_vectors (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: fix error handle in megasas_probe_one (Tomas Henzl) [1513838]
-- [scsi] megaraid: Use dma_pool_zalloc() (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: NVMe passthrough command support (Tomas Henzl) [1513838]
-- [scsi] megaraid: use ktime_get_real for firmware time (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: re-work DCMD refire code (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Expose fw_cmds_outstanding through sysfs (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Selectively apply stream detection based on IO type (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Update LD map after populating drv_map driver map copy (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Use megasas_wait_for_adapter_operational to detect controller state in IOCTL path (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Avoid firing DCMDs while OCR is in progress (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: unload flag should be set after scsi_remove_host is called (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Error handling for invalid ldcount provided by firmware in RAID map (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Reset ldio_outstanding in megasas_resume (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Return the DCMD status from megasas_get_seq_num (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: memset IOC INIT frame using correct size (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: zero out IOC INIT and stream detection memory (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: fix spelling mistake: "thershold" -> "threshold" (Tomas Henzl) [1513838]
-- [scsi] megaraid: Remove redundant code in megasas_alloc_cmds (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Add support for 64bit consistent DMA (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Do not limit queue_depth to 1k in non-RDPQ mode (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Retry with reduced queue depth when alloc fails for higher QD (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Incorrect processing of IOCTL frames for SMP/STP commands (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Move controller memory allocations and DMA mask settings from probe to megasas_init_fw (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Move initialization of instance parameters inside newly created function megasas_init_ctrl_params (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: remove instance->ctrl_info (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Pre-allocate frequently used DMA buffers (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Create separate functions for allocating and freeing controller DMA buffers (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Create separate functions to allocate ctrl memory (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: reduce size of fusion_context and use kmalloc for allocation (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: replace is_ventura with adapter_type checks (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Remove redundant checks for ctrl_context (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: replace instance->ctrl_context checks with instance->adapter_type (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Add support for Crusader controllers (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: use adapter_type for all gen controllers (Tomas Henzl) [1513838]
-- [scsi] hpsa: cleanup whitespace (Joseph Szczypek) [1524691]
-- [scsi] hpsa: Use DEVICE_ATTR_RO (Joseph Szczypek) [1524691]
-- [scsi] hpsa: fix selection of reply queue (Joseph Szczypek) [1524691]
-- [scsi] hpsa: use designated initializers (Joseph Szczypek) [1524691]
-- [scsi] hpsa: free irq on q indexed by h->intr_mode and not i (Joseph Szczypek) [1524691]
-- [scsi] hpsa: use pci_alloc_irq_vectors and automatic irq affinity (Joseph Szczypek) [1524691]
-- [scsi] hpsa: Use vsnprintf extension phN (Joseph Szczypek) [1524691]
-- [scsi] hpsa: drop unneeded newline (Joseph Szczypek) [1524691]
-- [scsi] hpsa: remove an unnecessary NULL check (Joseph Szczypek) [1524691]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1524691]
-- [scsi] hpsa: add enclosure logical identifier (Joseph Szczypek) [1524691]
-- [scsi] hpsa: reduce warning messages on device removal (Joseph Szczypek) [1524691]
-- [scsi] hpsa: update queue depth for externals (Joseph Szczypek) [1524691]
-- [scsi] hpsa: update discovery polling (Joseph Szczypek) [1524691]
-- [scsi] hpsa: add controller checkpoint (Joseph Szczypek) [1524691]
-- [scsi] hpsa: clear tmpdevice in scan thread (Joseph Szczypek) [1524691]
-- [scsi] hpsa: cleanup sas_phy structures in sysfs when unloading (Joseph Szczypek) [1524691]
-- [scsi] hpsa: destroy sas transport properties before scsi_host (Joseph Szczypek) [1524691]
-- [scsi] hpsa: Fix configured_logical_drive_count check (Joseph Szczypek) [1524691]
-- [scsi] hpsa: remove the smp_handler stub (Joseph Szczypek) [1524691]
-- [scsi] csiostor: remove redundant assignment to pointer 'ln' (Arjun Vynipadath) [1523193]
-- [scsi] csiostor: fix spelling mistake: Couldnt -> Couldn't (Arjun Vynipadath) [1523193]
-- [scsi] csiostor: remove unneeded DRIVER_LICENSE #define (Arjun Vynipadath) [1523193]
-- [scsi] csiostor: Convert timers to use timer_setup() (Arjun Vynipadath) [1523193]
-- [linux] libata: enable host-wide tags (Ewan Milne) [1491014]
-- [ata] libata: remove ATA_FLAG_LOWTAG (Ewan Milne) [1491014]
-- [ata] Add a new flag to destinguish sas controller (Ewan Milne) [1491014]
-- [ata] libata: make sata_sil24 use fifo tag allocator (Ewan Milne) [1491014]
-- [ata] libata: move sas ata tag allocation to libata-scsi.c (Ewan Milne) [1491014]
-- [ata] libata: use blk taging (Ewan Milne) [1491014]
-- [nvme] Use admin command effects for admin commands (David Milburn) [1515584]
-- [nvme] nvmet: fix space padding in serial number (David Milburn) [1515584]
-- [nvme] nvme-pci: Remove unused queue parameter (David Milburn) [1515584]
-- [nvme] nvme-pci: Skip queue deletion if there are no queues (David Milburn) [1515584]
-- [nvme] target: fix buffer overflow (David Milburn) [1515584]
-- [nvme] don't send keep-alives to the discovery controller (David Milburn) [1515584]
-- [nvme] unexport nvme_start_keep_alive (David Milburn) [1515584]
-- [nvme] nvme-loop: fix kernel oops in case of unhandled command (David Milburn) [1560383 1515584]
-- [nvme] enforce 64bit offset for nvme_get_log_ext fn (David Milburn) [1515584]
-- [nvme] make nvme_get_log_ext non-static (David Milburn) [1515584]
-- [nvme] nvmet: constify struct nvmet_fabrics_ops (David Milburn) [1515584]
-- [nvme] nvmet: refactor configfs transport type handling (David Milburn) [1515584]
-- [nvme] nvmet: move device_uuid configfs attr definition to suitable place (David Milburn) [1515584]
-- [nvme] Add .stop_ctrl to nvme ctrl ops (David Milburn) [1515584]
-- [nvme] nvme-rdma: Allow DELETING state change failure in error_recovery (David Milburn) [1515584]
-- [nvme] nvme-rdma: Don't flush delete_wq by default during remove_one (David Milburn) [1515584]
-- [nvme] nvmet-rdma: Don't flush system_wq by default during remove_one (David Milburn) [1515584]
-- [nvme] nvmet-rdma: Fix use after free in nvmet_rdma_cm_handler() (David Milburn) [1515584]
-- [nvme] nvmet-rdma: Remove unused queue state (David Milburn) [1515584]
-- [nvme] nvmet_fc: prevent new io rqsts in possible isr completions (David Milburn) [1515584]
-- [nvme] nvme_fc: on remoteport reuse, set new nport_id and role (David Milburn) [1515584]
-- [nvme] nvme_fc: fix abort race on teardown with lld reject (David Milburn) [1515584]
-- [nvme] nvme_fc: io timeout should defer abort to ctrl reset (David Milburn) [1515584]
-- [nvme] nvme_fc: fix ctrl create failures racing with workq items (David Milburn) [1515584]
-- [nvme] nvme-pci: disable APST for Samsung NVMe SSD 960 EVO + ASUS PRIME Z370-A (David Milburn) [1515584]
-- [nvme] centralize ctrl removal prints (David Milburn) [1515584]
-- [nvme] nvme-pci: Add .get_address ctrl callback (David Milburn) [1515584]
-- [nvme] implement log page low/high offset and dwords (David Milburn) [1515584]
-- [nvme] change namespaces_mutext to namespaces_rwsem (David Milburn) [1515584]
-- [nvme] fix the dangerous reference of namespaces list (David Milburn) [1515584]
-- [nvme] nvme-pci: quiesce IO queues prior to disabling device HMB accesses (David Milburn) [1515584]
-- [nvme] use define instead of magic value for identify size (David Milburn) [1515584]
-- [nvme] nvme_fc: rework sqsize handling (David Milburn) [1515584]
-- [nvme] nvme-fabrics: Ignore nr_io_queues option for discovery controllers (David Milburn) [1515584]
-- [nvme] nvme-pci: Fix nvme queue cleanup if IRQ setup fails (David Milburn) [1515584]
-- [nvme] nvme-fabrics: don't check for non-NULL module in nvmf_register_transport (David Milburn) [1515584]
-- [nvme] nvme-rdma: fix sysfs invoked reset_ctrl error flow (David Milburn) [1515584]
-- [nvme] nvme-pci: Fix timeouts in connecting state (David Milburn) [1515584]
-- [nvme] nvme-pci: Remap CMB SQ entries on every controller reset (David Milburn) [1515584]
-- [nvme] fix the deadlock in nvme_update_formats (David Milburn) [1515584]
-- [nvme] Don't use a stack buffer for keep-alive command (David Milburn) [1515584]
-- [nvme] nvme_fc: cleanup io completion (David Milburn) [1515584]
-- [nvme] nvme_fc: correct abort race condition on resets (David Milburn) [1515584]
-- [nvme] delete NVME_CTRL_LIVE --> NVME_CTRL_CONNECTING transition (David Milburn) [1515584]
-- [nvme] nvme-rdma: use NVME_CTRL_CONNECTING state to mark init process (David Milburn) [1515584]
-- [nvme] rename NVME_CTRL_RECONNECTING state to NVME_CTRL_CONNECTING (David Milburn) [1515584]
-- [nvme] nvme-pci: introduce RECONNECTING state to mark initializing procedure (David Milburn) [1515584]
-- [nvme] nvme-rdma: remove redundant boolean for inline_data (David Milburn) [1515584]
-- [nvme] don't free uuid pointer before printing it (David Milburn) [1515584]
-- [nvme] nvme-pci: Suspend queues after deleting them (David Milburn) [1515584]
-- [nvme] nvme-pci: Fix queue double allocations (David Milburn) [1515584]
-- [nvme] nvme-pci: clean up SMBSZ bit definitions (David Milburn) [1515584]
-- [nvme] nvme-pci: clean up CMB initialization (David Milburn) [1515584]
-- [nvme] nvmet: release a ns reference in nvmet_req_uninit if needed (David Milburn) [1515584]
-- [nvme] nvme-fabrics: fix memory leak when parsing host ID option (David Milburn) [1515584]
-- [nvme] fix comment typos in nvme_create_io_queues (David Milburn) [1515584]
-- [nvme] host delete_work and reset_work on separate workqueues (David Milburn) [1515584]
-- [nvme] nvme-pci: allocate device queues storage space at probe (David Milburn) [1515584]
-- [nvme] allocate nvme_queue in correct node (David Milburn) [1515584]
-- [nvme] take refcount on transport module (David Milburn) [1515584]
-- [nvme] nvme-pci: fix NULL pointer reference in nvme_alloc_ns (David Milburn) [1515584]
-- [nvme] modify the debug level for setting shutdown timeout (David Milburn) [1515584]
-- [nvme] nvme-pci: don't open-code nvme_reset_ctrl (David Milburn) [1515584]
-- [nvme] nvmet: rearrange nvmet_ctrl_free() (David Milburn) [1515584]
-- [nvme] nvmet: fix error flow in nvmet_alloc_ctrl() (David Milburn) [1515584]
-- [nvme] nvme-pci: remove an unnecessary initialization in HMB code (David Milburn) [1515584]
-- [nvme] nvme-fabrics: protect against module unload during create_ctrl (David Milburn) [1515584]
-- [nvme] nvmet-fc: cleanup nvmet add_port/remove_port (David Milburn) [1515584]
-- [nvme] nvme_fcloop: refactor host/target io job access (David Milburn) [1515584]
-- [nvme] nvme_fcloop: rework to remove xxx_IN_ISR feature flags (David Milburn) [1515584]
-- [nvme] nvme_fcloop: disassocate local port structs (David Milburn) [1515584]
-- [nvme] nvme_fcloop: fix abort race condition (David Milburn) [1515584]
-- [nvme] nvmet: lower log level for each queue creation (David Milburn) [1515584]
-- [nvme] nvmet-rdma: lowering log level for chatty debug messages (David Milburn) [1515584]
-- [nvme] nvmet-rdma: removed queue cleanup from module exit (David Milburn) [1515584]
-- [s390] zcrypt: Fix wrong comparison leading to strange load balancing (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: Introduce QACT support for AP bus devices (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: Enable special header file flag for AU CPRP (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: CEX6S exploitation (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: externalize AP queue interrupt control (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: externalize AP config info query (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: externalize test AP queue (Hendrik Brueckner) [1375258]
-- [s390] crypto: add s390 platform specific aes gcm support (Hendrik Brueckner) [1375263]
-- [s390] crypto: add inline assembly for KMA instruction to cpacf.h (Hendrik Brueckner) [1375263]
-- [s390] cpacf: Introduce kma instruction (Hendrik Brueckner) [1375263]
-- [s390] cpacf: query instructions use unique parameters for compatibility with KMA (Hendrik Brueckner) [1375263]
-
-* Fri May 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-886.el7]
-- [gpu] drm/nouveau: Fix deadlock in nv50_mstm_register_connector() (Lyude Paul) [1571927]
-- [netdrv] vmxnet3: segCnt can be 1 for LRO packets (Neil Horman) [1426680]
-- [netdrv] bnxt_en: Fix memory fault in bnxt_ethtool_init() (Jonathan Toppins) [1573936]
-- [uapi] input: Fix KEY_BRIGHTNESS_MIN definition (Prarit Bhargava) [1571274]
-- [acpi] acpi_pad: Fix memory leak in power saving threads (Lenny Szubowicz) [1542660]
-- [block] kyber: fix domain token leak during requeue (Ming Lei) [1548238]
-- [block] blk-mq: don't call io sched's .requeue_request when requeueing rq to ->dispatch (Ming Lei) [1548238]
-- [block] kyber: fix another domain token wait queue hang (Ming Lei) [1548238]
-- [block] kyber: fix hang on domain token wait queue (Ming Lei) [1548238]
-- [block] mq-deadline: add 'deadline' as a name alias (Ming Lei) [1548253]
-- [block] elevator: allow name aliases (Ming Lei) [1548253]
-- [block] elevator: mark parameter of elevator_aux_find() as const (Ming Lei) [1548253]
-- [block] elevator: move elevator_aux_find() to front of the file (Ming Lei) [1548253]
-- [block] blk-mq: quiesce queue before freeing queue (Ming Lei) [1548236]
-- [mm] hwpoison: disable memory error handling on 1GB hugepage (Aristeu Rozanski) [1525701]
-- [mm] hwpoison: call shake_page() after try_to_unmap() for mlocked page (Aristeu Rozanski) [1525701]
-- [mm] hwpoison: call shake_page() unconditionally (Aristeu Rozanski) [1525701]
-- [mm] madvise: pass return code of memory_failure() to userspace (Aristeu Rozanski) [1525701]
-- [mm] hwpoison: fix traversal of hugetlbfs pages to avoid printk flood (Aristeu Rozanski) [1525701]
-- [mm] hwpoison.c: fix held reference count after unpoisoning empty zero page (Aristeu Rozanski) [1525701]
-- [kernel] jump_label: Disable jump labels in __exit code (Josh Poimboeuf) [1541287]
-- [kernel] jump_label: Explicitly disable jump labels in __init code (Josh Poimboeuf) [1541287]
-- [kernel] sched: Enable SCHED_DEADLINE (Lauro Ramos Venancio) [1344565]
-- [s390] correct nospec auto detection init order (Hendrik Brueckner) [1558325]
-- [s390] add sysfs attributes for spectre (Hendrik Brueckner) [1558325]
-- [s390] report spectre mitigation via syslog (Hendrik Brueckner) [1558325]
-- [s390] add automatic detection of the spectre defense (Hendrik Brueckner) [1558325]
-- [s390] move nobp parameter functions to nospec-branch.c (Hendrik Brueckner) [1558325]
-- [s390] do not bypass BPENTER for interrupt system calls (Hendrik Brueckner) [1558325]
-- [s390] Replace IS_ENABLED(EXPOLINE_*) with IS_ENABLED(CONFIG_EXPOLINE_*) (Hendrik Brueckner) [1558325]
-- [s390] introduce execute-trampolines for branches (Hendrik Brueckner) [1558325]
-- [s390] run user space and KVM guests with modified branch prediction (Hendrik Brueckner) [1558325]
-- [s390] add optimized array_index_mask_nospec (Hendrik Brueckner) [1558325]
-- [s390] entry.s: fix spurious zeroing of r0 (Hendrik Brueckner) [1558325]
-- [s390] scrub registers on kernel entry and KVM exit (Hendrik Brueckner) [1558325]
-- [s390] align and prepare spectre mitigation for upstream commits (Hendrik Brueckner) [1558325]
-- [s390] alternative: use a copy of the facility bit mask (Hendrik Brueckner) [1558325]
-- [s390] crypto: Adjust s390 aes and paes cipher priorities (Hendrik Brueckner) [1569511]
-- [s390] cio: update chpid descriptor after resource accessibility event (Hendrik Brueckner) [1574467]
-- [s390] dasd: fix IO error for newly defined devices (Hendrik Brueckner) [1574454]
-- [s390] uprobes: implement arch_uretprobe_is_alive() (Hendrik Brueckner) [1574009]
-- [s390] dasd: configurable IFCC handling (Hendrik Brueckner) [1548504]
-- [x86] spec_ctrl: Always clear SPEC_CTRL MSRs when disabling IBRS (Waiman Long) [1574730]
-- [kernel] perf/hwbp: Simplify the perf-hwbp code, fix documentation (Eugene Syromiatnikov) [1569874] {CVE-2018-1000199}
-- [x86] kvm: fix icebp instruction handling (Paolo Bonzini) [1566837] {CVE-2018-1087}
-- [x86] entry/64: Don't use IST entry for #BP stack (Paolo Bonzini) [1567074] {CVE-2018-8897}
-
-* Tue May 08 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-885.el7]
-- [scsi] storvsc: Select channel based on available percentage of ring buffer to write (Cathy Avery) [1568513]
-- [kernel] scsi: vmbus: Add function to report available ring buffer to write in total ring size percentage (Cathy Avery) [1568513]
-- [scsi] storsvc: don't set a bounce limit (Cathy Avery) [1568513]
-- [netdrv] netvsc: Use the vmbus function to calculate ring buffer percentage (Cathy Avery) [1568513]
-- [scsi] storvsc: Set up correct queue depth values for IDE devices (Cathy Avery) [1568513]
-- [scsi] storvsc: Spread interrupts when picking a channel for I/O requests (Cathy Avery) [1568513]
-- [scsi] storvsc: Increase cmd_per_lun for higher speed devices (Cathy Avery) [1568513]
-- [scsi] storvsc: missing error code in storvsc_probe() (Cathy Avery) [1568513]
-- [scsi] cxgb4i: silence overflow warning in t4_uld_rx_handler() (Arjun Vynipadath) [1523190]
-- [scsi] cxgb4i: make skb_push & __skb_push return void pointers (Arjun Vynipadath) [1523190]
-- [scsi] iscsi: respond to netlink with unicast when appropriate (Chris Leech) [1330865]
-- [scsi] bnx2fc: Fix check in SCSI completion handler for timed out request (Chad Dupuis) [1566553]
-- [scsi] bnx2fc: fix spelling mistake: "Couldnt" -> "Couldn't" (Chad Dupuis) [1566553]
-- [scsi] bnx2i: Use zeroing allocator rather than allocator/memset (Chad Dupuis) [1566556]
-- [scsi] bnx2i: bnx2i_hwi: use swap macro in bnx2i_send_iscsi_nopout (Chad Dupuis) [1566556]
-- [scsi] bnx2i: Clean up unused pointers in bnx2i_hwi (Chad Dupuis) [1566556]
-- [scsi] cdrom: do not call check_disk_change() inside cdrom_open() (Maurizio Lombardi) [1538362]
-- [scsi] lpfc: update driver version to 12.0.0.2 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Correct missing remoteport registration during link bounces (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix NULL pointer reference when resetting adapter (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix nvme remoteport registration race conditions (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix driver not recovering NVME rports during target link faults (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix WQ/CQ creation for older asic's (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix NULL pointer access in lpfc_nvme_info_show (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix lingering lpfc_wq resource after driver unload (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix Abort request WQ selection (Dick Kennedy) [1519548]
-- [scsi] lpfc: Enlarge nvmet asynchronous receive buffer counts (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add per io channel NVME IO statistics (Dick Kennedy) [1519548]
-- [scsi] lpfc: Correct target queue depth application changes (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix multiple PRLI completion error path (Dick Kennedy) [1519548]
-- [scsi] lpfc: make several unions static, fix non-ANSI prototype (Dick Kennedy) [1519548]
-- [scsi] scsi_transport_fc: fix typos on 64/128 GBit define names (Dick Kennedy) [1519548]
-- [scsi] scsi_transport_fc: add 64GBIT and 128GBIT port speed definitions (Dick Kennedy) [1519548]
-- [scsi] lpfc: Change Copyright of 12.0.0.1 modified files to 2018 (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 12.0.0.1 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Memory allocation error during driver start-up on power8 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix mailbox wait for POST_SGL mbox command (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix SCSI lun discovery when port configured for both SCSI and NVME (Dick Kennedy) [1519548]
-- [scsi] lpfc: Streamline NVME Targe6t WQE setup (Dick Kennedy) [1519548]
-- [scsi] lpfc: Streamline NVME Initiator WQE setup (Dick Kennedy) [1519548]
-- [scsi] lpfc: Code cleanup for 128byte wqe data type (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix NVME Initiator FirstBurst (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add missing unlock in WQ full logic (Dick Kennedy) [1519548]
-- [scsi] lpfc: use __raw_writeX on DPP copies (Dick Kennedy) [1519548]
-- [scsi] lpfc: Change Copyright of 12.0.0.0 modified files to 2018 (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 12.0.0.0 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Work around NVME cmd iu SGL type (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix nvme embedded io length on new hardware (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add embedded data pointers for enhanced performance (Dick Kennedy) [1519548]
-- [scsi] lpfc: Enable fw download on if_type=6 devices (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add if_type=6 support for cycling valid bits (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add 64G link speed support (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add PCI Ids for if_type=6 hardware (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add push-to-adapter support to sli4 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add SLI-4 if_type=6 support to the code base (Dick Kennedy) [1519548]
-- [scsi] lpfc: Rework sli4 doorbell infrastructure (Dick Kennedy) [1519548]
-- [scsi] lpfc: Rework lpfc to allow different sli4 cq and eq handlers (Dick Kennedy) [1519548]
-- [scsi] lpfc: Update 11.4.0.7 modified files for 2018 Copyright (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 11.4.0.7 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix nonrecovery of NVME controller after cable swap (Dick Kennedy) [1519548]
-- [scsi] lpfc: Treat SCSI Write operation Underruns as an error (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix header inclusion in lpfc_nvmet (Dick Kennedy) [1519548]
-- [scsi] lpfc: Validate adapter support for SRIU option (Dick Kennedy) [1519548]
-- [scsi] lpfc: Indicate CONF support in NVMe PRLI (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix issue_lip if link is disabled (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix soft lockup in lpfc worker thread during LIP testing (Dick Kennedy) [1519548]
-- [scsi] lpfc: Allow set of maximum outstanding SCSI cmd limit for a target (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix RQ empty firmware trap (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix IO failure during hba reset testing with nvme io (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix PRLI handling when topology type changes (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add WQ Full Logic for NVME Target (Dick Kennedy) [1519548]
-- [scsi] lpfc: correct debug counters for abort (Dick Kennedy) [1519548]
-- [scsi] lpfc: move placement of target destroy on driver detach (Dick Kennedy) [1519548]
-- [scsi] lpfc: Increase CQ and WQ sizes for SCSI (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix frequency of Release WQE CQEs (Dick Kennedy) [1519548]
-- [scsi] lpfc: fix a couple of minor indentation issues (Dick Kennedy) [1519548]
-- [scsi] lpfc: don't dereference localport before it has been null checked (Dick Kennedy) [1519548]
-- [scsi] lpfc: correct sg_seg_cnt attribute min vs default (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 11.4.0.6 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Beef up stat counters for debug (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix infinite wait when driver unregisters a remote NVME port (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix issues connecting with nvme initiator (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix SCSI LUN discovery when SCSI and NVME enabled (Dick Kennedy) [1519548]
-- [scsi] lpfc: Increase SCSI CQ and WQ sizes (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix receive PRLI handling (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix -EOVERFLOW behavior for NVMET and defer_rcv (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix random heartbeat timeouts during heavy IO (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 11.4.0.5 (Dick Kennedy) [1519548]
-- [scsi] lpfc: small sg cnt cleanup (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix driver handling of nvme resources during unload (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix crash during driver unload with running nvme traffic (Dick Kennedy) [1519548]
-- [scsi] lpfc: Correct driver deregistrations with host nvme transport (Dick Kennedy) [1519548]
-- [scsi] lpfc: correct port registrations with nvme_fc (Dick Kennedy) [1519548]
-- [scsi] lpfc: Adjust default value of lpfc_nvmet_mrq (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix display for debugfs queInfo (Dick Kennedy) [1519548]
-- [scsi] lpfc: Raise maximum NVME sg list size for 256 elements (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix NVME LS abort_xri (Dick Kennedy) [1519548]
-- [scsi] lpfc: Handle XRI_ABORTED_CQE in soft IRQ (Dick Kennedy) [1519548]
-- [scsi] lpfc: Expand WQE capability of every NVME hardware queue (Dick Kennedy) [1519548]
-
-* Mon May 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-884.el7]
-- [char] ipmi: retain ipmi_si for ipmi platform_device.name (Tony Camuso) [1567691]
-- [char] ipmi: Fix some error cleanup issues (Tony Camuso) [1573197]
-- [char] ipmi_si: Fix error handling of platform device (Tony Camuso) [1573197]
-- [input] elantech - add new icbody type 15 (Benjamin Tissoires) [1565527]
-- [input] elantech - make arrays debounce_packet static, reduces object code size (Benjamin Tissoires) [1565527]
-- [input] elantech - constify attribute_group structures (Benjamin Tissoires) [1565527]
-- [input] elantech - add Fujitsu Lifebook E546/E557 to force crc_enabled (Benjamin Tissoires) [1565527]
-- [input] elantech - force relative mode on a certain module (Benjamin Tissoires) [1565527]
-- [input] elantech - add Fujitsu Lifebook E547 to force crc_enabled (Benjamin Tissoires) [1565527]
-- [input] elantech - add Fujitsu Lifebook E556 to force crc_enabled (Benjamin Tissoires) [1565527]
-- [input] elantech - force needed quirks on Fujitsu H760 (Benjamin Tissoires) [1565527]
-- [input] elantech - fix Lenovo version typo (Benjamin Tissoires) [1565527]
-- [input] elantech - fix debug dump of the current packet (Benjamin Tissoires) [1565527]
-- [input] elantech - add more IC body types to the list (Benjamin Tissoires) [1565527]
-- [input] psmouse - use same format for secondary devices as for primary (Benjamin Tissoires) [1565527]
-- [input] elantech - mark protocols v2 and v3 as semi-mt (Benjamin Tissoires) [1565527]
-- [input] elantech - add Fujitsu Lifebook U745 to force crc_enabled (Benjamin Tissoires) [1565527]
-- [input] elantech - add special check for fw_version 0x470f01 touchpad (Benjamin Tissoires) [1565527]
-- [input] elantech - force resolution of 31 u/mm (Benjamin Tissoires) [1565527]
-- [input] elantech - add new icbody type (Benjamin Tissoires) [1565527]
-- [input] elantech - fix detection of touchpads where the revision matches a known rate (Benjamin Tissoires) [1565527]
-- [input] synaptics - add Lenovo 80 series ids to SMBus (Benjamin Tissoires) [1554926]
-- [input] trackpoint - combine calls to ps2_command() (Benjamin Tissoires) [1554926]
-- [input] libps2 - relax command byte ACK handling (Benjamin Tissoires) [1554926]
-- [kernel] input: libps2 - use BIT() for bitmask constants (Benjamin Tissoires) [1554926]
-- [input] libps2 - support retransmission of command data (Benjamin Tissoires) [1554926]
-- [input] libps2 - add debugging statements (Benjamin Tissoires) [1554926]
-- [input] psmouse - move sliced command implementation to libps2 (Benjamin Tissoires) [1554926]
-- [input] libps2 - use u8 for byte data (Benjamin Tissoires) [1554926]
-- [input] libps2 - fix switch statement formatting (Benjamin Tissoires) [1554926]
-- [input] psmouse - clean up code (Benjamin Tissoires) [1554926]
-- [input] psmouse - create helper for reporting standard buttons/motion (Benjamin Tissoires) [1554926]
-- [input] trackpoint - only expose supported controls for Elan, ALPS and NXP (Benjamin Tissoires) [1554926]
-- [input] psmouse - expose drift duration for IBM trackpoints (Benjamin Tissoires) [1554926]
-- [input] trackpoint - force 3 buttons if 0 button is reported (Benjamin Tissoires) [1554926]
-- [input] trackpoint - add new trackpoint firmware ID (Benjamin Tissoires) [1554926]
-- [input] trackpoint - assume 3 buttons when buttons detection fails (Benjamin Tissoires) [1554926]
-- [input] mouse - use local variables consistently (Benjamin Tissoires) [1554926]
-- [input] synaptics - use BIT() and GENMASK() macros (Benjamin Tissoires) [1554926]
-- [input] synaptics - add synaptics_query_int() (Benjamin Tissoires) [1554926]
-- [input] psmouse - fix data race in __ps2_command (Benjamin Tissoires) [1554926]
-- [input] psmouse - add small delay for IBM trackpoint pass-through mode (Benjamin Tissoires) [1554926]
-- [input] synaptics - prevent top button pad from creating smbus device (Benjamin Tissoires) [1554926]
-- [input] psmouse - fix Synaptics detection when protocol is disabled (Benjamin Tissoires) [1554926]
-- [input] synaptics - disable kernel tracking on SMBus devices (Benjamin Tissoires) [1554926]
-- [input] synaptics - fix device info appearing different on reconnect (Benjamin Tissoires) [1554926]
-- [input] synaptics - keep PS/2 around when RMI4_SMB is not enabled (Benjamin Tissoires) [1554926]
-- [input] synaptics - clear device info before filling in (Benjamin Tissoires) [1554926]
-- [input] psmouse - fix cleaning up SMBus companions (Benjamin Tissoires) [1554926]
-- [input] synaptics - add support for Intertouch devices (Benjamin Tissoires) [1554926]
-- [input] psmouse - add support for SMBus companions (Benjamin Tissoires) [1554926]
-- [input] psmouse - introduce notion of SMBus companions (Benjamin Tissoires) [1554926]
-- [input] psmouse - store pointer to current protocol (Benjamin Tissoires) [1554926]
-- [input] psmouse - implement fast reconnect option (Benjamin Tissoires) [1554926]
-- [input] serio - add fast reconnect option (Benjamin Tissoires) [1554926]
-- [input] synaptics - split device info into a separate structure (Benjamin Tissoires) [1554926]
-- [input] synaptics - do not mix logical and bitwise operations (Benjamin Tissoires) [1554926]
-- [input] synaptics - use SERIO_OOB_DATA to handle trackstick buttons (Benjamin Tissoires) [1554926]
-- [input] synaptics - dump ext10 capabilities as well (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - log when we create a guest serio port (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - unmask F03 interrupts when port is opened (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - do not delete interrupt memory too early (Benjamin Tissoires) [1554926]
-- [input] synaptics_rmi4 - remove unneeded MODULE_VERSION() usage (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - RMI4 can also use SMBUS version 3 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - limit the range of what GPIOs are buttons (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - constify attribute_group structures in F01 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - register F03 port as pass-through serio (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - change F12 clip to inactive border debug (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - use dev_driver_string when registering interrupt (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - when registering sensors do not call them "drivers" (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - cleanup SMbus mapping handling (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix endianness issue in SMBus transport (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix handling failures from rmi_enable_sensor (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - prevent null pointer dereference in f30 (Benjamin Tissoires) [1554926]
-- [input] rmi4 - f30: detect INPUT_PROP_BUTTONPAD from the button count (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - forward upper mechanical buttons to PS/2 guest (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - clean up F30 implementation (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix error return code in rmi_probe_interrupts() (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add rmi_find_function() (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add sysfs interfaces for hardware IDs (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix reversed conditions in enable/disable_irq_wake (Benjamin Tissoires) [1554926]
-- [input] constify device_type structures (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - use local variables consistently (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - correctly swap clip values if axes are swapped (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove redundant null check on rmi_dev (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - use Kconfig "if" to express dependency (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - select 'SERIO' when needed (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix F03 build error when serio is module (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix debug for sensor clip (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - store the attn data in the driver (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - allow to add attention data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - f03 - grab data passed by transport device (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for F03 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - have only one struct platform data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove EXPORT_SYMBOL_GPL for internal functions (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add rmi_enable/disable_irq (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove unused fields in struct rmi_driver_data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add SMBus support (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - set the ABS_MT_TOOL_TYPE bit to report tool type (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for controlling dribble packets in F12 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add parameters for dribble packets and palm detect gesture (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - handle incomplete input data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - move IRQ handling to rmi_driver (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add a couple of debug lines (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - factor out functions from probe (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - stop scanning PDT after two empty pages (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix register descriptor subpacket map construction (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - do not check for NULL when calling of_node_put() (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix maximum size check for F12 control register 8 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - use the RMI_F11_REL_BYTES define in rmi_f11_rel_pos_report (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove unneeded variable (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove pointer to rmi_function in f12_data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix spelling in defines (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove check of Non-NULL array (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - using logical instead of bitwise AND (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for F30 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for F12 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for 2D sensors and F11 (Benjamin Tissoires) [1554926]
-- [uapi] input: synaptics-rmi4 - add support for Synaptics RMI4 devices (Benjamin Tissoires) [1554926]
-- [uapi] input: psmouse - add a custom serio protocol to send extra information (Benjamin Tissoires) [1554926]
-- [input] psmouse - limit protocols that we try on passthrough ports (Benjamin Tissoires) [1554926]
-- [input] psmouse - factor out common protocol probing code (Benjamin Tissoires) [1554926]
-- [input] psmouse - clean up Cypress probe (Benjamin Tissoires) [1554926]
-- [input] psmouse - move protocol descriptions around (Benjamin Tissoires) [1554926]
-- [input] psmouse - fix comment style (Benjamin Tissoires) [1554926]
-- [input] psmouse - use switch statement in psmouse_process_byte() (Benjamin Tissoires) [1554926]
-- [input] psmouse - use IS_ENABLED instead of homegrown code (Benjamin Tissoires) [1554926]
-- [kernel] genirq: Add irq_get_trigger_type() to get IRQ flags (Benjamin Tissoires) [1554926]
-- [uapi] input: add MT_TOOL_PALM (Benjamin Tissoires) [1554926]
-- [input] MT - add support for balanced slot assignment (Benjamin Tissoires) [1554926]
-- [i2c] i801: Restore configuration at shutdown (Benjamin Tissoires) [1554926]
-- [i2c] i801: Save register SMBSLVCMD value only once (Benjamin Tissoires) [1554926]
-- [i2c] do not enable fall back to Host Notify by default (Benjamin Tissoires) [1554926]
-- [i2c] use an IRQ to report Host Notify events, not alert (Benjamin Tissoires) [1554926]
-- [i2c] i801: remove SMBNTFDDAT reads as they always seem to return 0 (Benjamin Tissoires) [1554926]
-- [i2c] i801: use the BIT() macro for FEATURES_* also (Benjamin Tissoires) [1554926]
-- [i2c] i801: use BIT() macro for bits definition (Benjamin Tissoires) [1554926]
-- [i2c] i801: minor formatting issues (Benjamin Tissoires) [1554926]
-- [i2c] i801: store and restore the SLVCMD register at load and unload (Benjamin Tissoires) [1554926]
-- [i2c] i2c-smbus: fix i2c_handle_smbus_host_notify documentation (Benjamin Tissoires) [1554926]
-- [i2c] i801: add support of Host Notify (Benjamin Tissoires) [1554926]
-- [uapi] i2c: smbus: add SMBus Host Notify support (Benjamin Tissoires) [1554926]
-- [i2c] add a protocol parameter to the alert callback (Benjamin Tissoires) [1554926]
-- [crypto] chelsio - Remove unwanted initialization (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - don't leak pointers to authenc keys (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Remove declaration of static function from header (Arjun Vynipadath) [1523191]
-- [crypto] chelsio -Split Hash requests for large scatter gather list (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix iv passed in fallback path for rfc3686 (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Update IV before sending request to HW (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Use kernel round function to align lengths (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - no csum offload for ipsec path (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Make function aead_ccm_validate_input static (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix indentation warning (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Remove dst sg size zero check (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Add authenc versions of ctr and sha (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix IV updated in XTS operation (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - check for sg null (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix Indentation (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - fix a type cast error (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Use GCM IV size constant (Arjun Vynipadath) [1523191]
-- [crypto] gcm - add GCM IV size constant (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - select CRYPTO_GF128MUL (Arjun Vynipadath) [1523191]
-- [crypto] chcr: ensure cntrl is initialized to fix bit-wise or'ing of garabage data (Arjun Vynipadath) [1523191]
-- [crypto] chcr: remove unused variables net_device, pi, adap and cntrl (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - make arrays sgl_ent_len and dsgl_ent_len static (Arjun Vynipadath) [1523191]
-- [crypto] chcr: Add support for Inline IPSec (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix an error code in chcr_hash_dma_map() (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - remove redundant assignments to reqctx and dst_size (Arjun Vynipadath) [1523191]
-- [crypto] chcr - Replace _manual_ swap with swap macro (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - pr_err() strings should end with newlines (Arjun Vynipadath) [1523191]
-- [net] vsock: make af_vsock.ko removable again (Stefan Hajnoczi) [1559688]
-
-* Fri May 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-883.el7]
-- [target] cxgbit: call neigh_event_send() to update MAC address (Arjun Vynipadath) [1523189]
-- [base] fix memory leak for ata_link_init (David Milburn) [1474183]
-- [fs] freeing unlinked file indefinitely delayed (Carlos Maiolino) [1248862]
-- [mm] tmpfs: fix shmem_evict_inode() warnings on i_blocks (Christoph von Recklinghausen) [1537382]
-- [hv] add SPDX license id to Kconfig (Mohammed Gamal) [1551622]
-- [hv] add SPDX license to trace (Mohammed Gamal) [1551622]
-- [hv] vmbus: do not mark HV_PCIE as perf_device (Mohammed Gamal) [1551622]
-- [hv] vmbus: respect what we get from hv_get_synint_state() (Mohammed Gamal) [1551622]
-- [hv] hv_balloon: trace post_status (Mohammed Gamal) [1551622]
-- [hv] hv_balloon: fix bugs in num_pages_onlined accounting (Mohammed Gamal) [1551622]
-- [hv] hv_balloon: simplify hv_online_page()/hv_page_online_one() (Mohammed Gamal) [1551622]
-- [hv] hv_balloon: fix printk loglevel (Mohammed Gamal) [1551622]
-- [hv] hv_vmbus: Correct the stale comments regarding cpu affinity (Mohammed Gamal) [1551622]
-- [hv] Synthetic typo correction (Mohammed Gamal) [1551622]
-- [hv] hyper-v: use GFP_KERNEL for hv_context.hv_numa_map (Mohammed Gamal) [1551622]
-- [hv] hv: vmbus: Fix ring buffer signaling (Mohammed Gamal) [1551622]
-- [hv] vmbus: add monitor_id and subchannel_id to sysfs per channel (Mohammed Gamal) [1551622]
-- [hv] vmbus: make channel attributes static (Mohammed Gamal) [1551622]
-- [hv] vmbus: unregister device_obj->channels_kset (Mohammed Gamal) [1551622]
-- [hv] vmbus: Remove x86-isms from arch independent drivers (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace channel events (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_send_tl_connect_request() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_release_relid() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_negotiate_version() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_teardown_gpadl() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_establish_gpadl() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_close_internal() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_open() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_request_offers() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_onversion_response() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_ongpadl_torndown() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_ongpadl_created() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_onopen_result() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_onoffer_rescind() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_onoffer() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_on_message() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_on_msg_dpc() (Mohammed Gamal) [1551622]
-- [hv] hv: vmbus: Expose per-channel interrupts and events counters (Mohammed Gamal) [1551622]
-- [hv] vmbus: Make panic reporting to be more useful (Mohammed Gamal) [1551622]
-- [hv] vmbus: initialize reserved fields in messages (Mohammed Gamal) [1551622]
-- [hv] vmbus: add per-channel sysfs info (Mohammed Gamal) [1551622]
-- [hv] hv: fcopy: restore correct transfer length (Mohammed Gamal) [1551622]
-- [hv] hv: kvp: Use MAX_ADAPTER_ID_SIZE for translating adapter id (Mohammed Gamal) [1551622]
-- [hv] hv: balloon: Show the max dynamic memory assigned (Mohammed Gamal) [1551622]
-- [hv] hv: balloon: Initialize last_post_time on startup (Mohammed Gamal) [1551622]
-- [hv] hv: balloon: Correctly update onlined page count (Mohammed Gamal) [1551622]
-- [hv] vmbus: add prefetch to ring buffer iterator (Mohammed Gamal) [1551622]
-- [hv] vmbus: more host signalling avoidance (Mohammed Gamal) [1551622]
-- [hv] vmbus: eliminate duplicate cached index (Mohammed Gamal) [1551622]
-- [hv] vmbus: refactor hv_signal_on_read (Mohammed Gamal) [1551622]
-- [hv] vmbus: simplify hv_ringbuffer_read (Mohammed Gamal) [1551622]
-- [gpu] drm/amdgpu: Fix deadlock on runtime suspend (Lyude Paul) [1563957]
-- [gpu] drm/radeon: Fix deadlock on runtime suspend (Lyude Paul) [1563957]
-- [gpu] drm/nouveau: Fix deadlock on runtime suspend (Lyude Paul) [1563957]
-- [gpu] drm: Allow determining if current task is output poll worker (Lyude Paul) [1563957]
-- [gpu] workqueue: Allow retrieval of current task's work struct (1/5) (Lyude Paul) [1563957]
-- [acpi] nfit: add 'Enable Latch System Shutdown Status' command support (Jeff Moyer) [1507717]
-- [acpi] nfit: add support for NVDIMM_FAMILY_INTEL v1.6 DSMs (Jeff Moyer) [1507717]
-- [acpi] nfit: hide unknown commands from nmemX/commands (Jeff Moyer) [1507717]
-- [tools] nfit: nfit_test supports translate SPA (Jeff Moyer) [1507717]
-- [acpi] nfit: Enable to show what feature is supported via ND_CMD_CALL for nfit_test (Jeff Moyer) [1507717]
-- [x86] kpti/kexec: fix wrong page address in clear_page (Dave Young) [1571162]
-- [x86] perf/intel/uncore: Add event constraint for BDX PCU (Prarit Bhargava) [1567782]
-- [x86] intel_rdt: Fix potential deadlock during resctrl mount (Jiri Olsa) [1483009]
-- [x86] intel_rdt: Fix potential deadlock during resctrl unmount (Jiri Olsa) [1483009]
-- [x86] intel_rdt: Fix incorrect returned value when creating rdgroup sub-directory in resctrl file system (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add command line parameter to control L2_CDP (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Enable L2 CDP in MSR IA32_L2_QOS_CFG (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add two new resources for L2 Code and Data Prioritization (CDP) (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Enumerate L2 Code and Data Prioritization (CDP) feature (Jiri Olsa) [1509785]
-- [documentation] x86/intel_rdt: Add documentation for "info/last_cmd_status" (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Fix a silent failure when writing zero value schemata (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Initialize bitmask of shareable resource if CDP enabled (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Remove redundant assignment (Jiri Olsa) [1509785]
-- [x86] intel_rdt/cqm: Make integer rmid_limbo_count static (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add diagnostics when making directories (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add diagnostics when writing the cpus file (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add diagnostics when writing the tasks file (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add diagnostics when writing the schemata file (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add framework for better RDT UI diagnostics (Jiri Olsa) [1509785]
-- [x86] vmware: set cpu capabilities during platform initialization (Vitaly Kuznetsov) [1507027]
-- [x86] vmware: Remove duplicate inclusion of asm/timer.h (Vitaly Kuznetsov) [1507027]
-- [x86] vmware: Add paravirt sched clock (Vitaly Kuznetsov) [1507027]
-- [x86] vmware: Add basic paravirt ops support (Vitaly Kuznetsov) [1507027]
-- [x86] vmware: Read tsc_khz only once at boot time (Vitaly Kuznetsov) [1507027]
-- [powerpc] pseries: Fix cpu hotplug crash with memoryless nodes (Serhii Popovych) [1507765]
-- [powerpc] numa: Ensure nodes initialized for hotplug (Serhii Popovych) [1507765]
-- [powerpc] numa: Use ibm, max-associativity-domains to discover possible nodes (Serhii Popovych) [1507765]
-- [powerpc] mm: Allow memory hotplug into an offline node (Serhii Popovych) [1507765]
-- [powerpc] mm: allow memory hotplug into a memoryless node (Serhii Popovych) [1507765]
-- [powerpc] numa: Reset node_possible_map to only node_online_map (Serhii Popovych) [1507765]
-
-* Fri May 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-882.el7]
-- [netdrv] ibmvnic: Clean actual number of RX or TX pools (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Clear pending interrupt after device reset (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Define vnic_login_client_data name field as unsized array (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Do not reset CRQ for Mobility driver resets (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Fix failover case for non-redundant configuration (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Fix reset scheduler error handling (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Zero used TX descriptor counter on reset (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Fix DMA mapping mistakes (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] cxgb4vf: Forcefully link up virtual interfaces (Arjun Vynipadath) [1523185]
-- [netdrv] cxgb4vf: Use dev_consume_skb_any() in place of consume_skb() (Arjun Vynipadath) [1523185]
-- [netdrv] cxgb4: Support firmware rdma write completion work request (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Support firmware rdma write with immediate work request (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support to query HW SRQ parameters (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support to initialise/read SRQ entries (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Adds CPL support for Shared Receive Queues (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: notify fatal error to uld drivers (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: copy vlan_id in ndo_get_vf_config (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4/cxgb4vf: add support for ndo_set_vf_vlan (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support for Inline IPSec Tx (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support for ethtool i2c dump (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: fix error return code in adap_init0() (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: fix missing break in switch and indent return statements (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: support new ISSI flash parts (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: depend on firmware event for link status (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Setup FW queues before registering netdev (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Fix queue free path of ULD drivers (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4/cxgb4vf: check fw caps to set link mode mask (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: do not display 50Gbps as unsupported speed (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: increase max tx rate limit to 100 Gbps (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: do not set needs_free_netdev for mgmt dev's (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: copy adap index to PF0-3 adapter instances (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add TP Congestion map entry for single-port (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: remove dead code when allocating filter (Arjun Vynipadath) [1523151]
-- [pci] cxgb4: Extend T3 PCI quirk to T4+ devices (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: free up resources of pf 0-3 (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Fix error handling path in 'init_one()' (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: avoid memcpy beyond end of source buffer (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: IPv6 filter takes 2 tids (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: restructure VF mgmt code (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Fix FW flash errors (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Check alignment constraint for T6 (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: use CLIP with LIP6 on T6 for TCAM filters (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4/cxgb4vf: support for XLAUI Port Type (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: display VNI correctly (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: add new T5 and T6 device id's (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Report tid start range correctly for T6 (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Simplify PCIe Completion Timeout setting (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support for new flash parts (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add HMA support (Arjun Vynipadath) [1523207 1523151]
-- [netdrv] cxgb4: add geneve offload support for T6 (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: implement ndo_features_check (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: add support for vxlan segmentation offload (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: implement udp tunnel callbacks (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: add data structures to support vxlan (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: speed up on-chip memory read (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: rework on-chip memory read (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: fix trailing zero in CIM LA dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: use backdoor access to collect dumps when firmware crashed (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: fix incorrect condition for using firmware LDST commands (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: reset FW_OK flag on firmware crash (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: properly initialize variables (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: enable ZLIB_DEFLATE when building cxgb4 (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: use zlib deflate to compress firmware dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: update dump collection logic to use compression (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect TX rate limit info in UP CIM logs (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect PCIe configuration logs (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect egress and ingress SGE queue contexts (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: skip TX and RX payload regions in memory dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect HMA memory dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: RSS table is 4k for T6 (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect MC memory dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect on-chip memory information (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect vpd info directly from hardware (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect SGE queue context dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect LE-TCAM dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect hardware misc dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect hardware scheduler dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect PBT tables dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect MPS-TCAM dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect TID info dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect RSS dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect CIM queue configuration dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect hardware LA dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: fix overflow in collecting IBQ and OBQ dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect IBQ and OBQ dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect hardware module dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect TP dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: update API for TP indirect register access (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect firmware mbox and device log dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect on-chip memory dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect register dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: implement ethtool dump data operations (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: make symbol pedits static (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: fix endianness for vlan value in cxgb4_tc_flower (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: set filter type to 1 for ETH_P_IPV6 (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: fix error return code in cxgb4_set_hash_filter() (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to create hash-filters via tc-flower offload (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] chelsio/cxgb*: Convert timers to use timer_setup() (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to retrieve stats for hash filters (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to delete hash filter (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to create hash filters (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: initialize hash-filter configuration (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: save additional filter tuple field shifts in tp_params (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower support for L3/L4 rewrite (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: introduce fw_filter2_wr to prepare for L3/L4 rewrite support (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower support for ETH-SMAC rewrite (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: introduce SMT ops to prepare for SMAC rewrite support (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower support for ETH-DMAC rewrite (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower support for action PASS (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower match support for vlan (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower match support for TOS (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: make function ch_flower_stats_cb, fixes warning (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: fetch stats for offloaded tc flower flows (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to offload action vlan (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add basic tc flower offload support (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower offload skeleton (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: Fix conversion of (dev_)kfree_skb to dev_kfree/consume_skb_any (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Initialize FR_NSMR_TPTE_WR support properly (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: introduce __skb_put_(zero, data, u8) (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: make skb_put & friends return void pointers (Arjun Vynipadath) [1523151]
-- [lib] dql: dql_queued() should write first to reduce bus transactions (William Townsend) [1489665]
-- [net] sched: introduce helper to identify gact pass action (Ivan Vecera) [1570155]
-- [net] sched: cls_flower: Add support to handle first frag as match field (Davide Caratti) [1559804]
-- [net] eth: add devm version of alloc_etherdev_mqs function (Ivan Vecera) [1568001]
-- [net] eth: Fix sysfs_format_mac() code duplication (Ivan Vecera) [1568001]
-- [net] sched: Set the net-device for egress device instance (Ivan Vecera) [1557539]
-- [net] sched: Fix actions list corruption when adding offloaded tc flows (Ivan Vecera) [1557539]
-- [net] sched: remove unused tcf_exts_get_dev helper and cls_flower->egress_dev (Ivan Vecera) [1557539]
-- [net] sched: convert cls_flower->egress_dev users to tc_setup_cb_egdev infra (Ivan Vecera) [1557539]
-- [net] sched: introduce per-egress action device callbacks (Ivan Vecera) [1557539]
-- [net] sched: make tc_action_ops->get_dev return dev and avoid passing net (Ivan Vecera) [1557539]
-- [net] ipvs: skb_orphan in case of forwarding (William Townsend) [1554193]
-- [net] ipv4: add support for ECMP hash policy choice (Hangbin Liu) [1511351]
-- [net] ipv4: eliminate endianness warnings in ip_fib.h (Hangbin Liu) [1511351]
-- [net] Refactor path selection in __ip_route_output_key_hash (Hangbin Liu) [1511351]
-- [net] ipv4: consider TOS in fib_select_default (Hangbin Liu) [1511351]
-- [net] ipv4: fib_select_default should match the prefix (Hangbin Liu) [1511351]
-- [net] l2tp: fix negative assignment to unsigned int (Hangbin Liu) [1527251]
-- [net] l2tp: cleanup: remove redundant condition (Hangbin Liu) [1527251]
-- [net] l2tp: netlink: l2tp_nl_tunnel_send: set UDP6 checksum flags (Hangbin Liu) [1527251]
-- [net] l2tp: only set L2TP_ATTR_UDP_CSUM if AF_INET (Hangbin Liu) [1527251]
-- [net] l2tp: change L2TP_ATTR_UDP_ZERO_CSUM6_(RX, TX) attribute types (Hangbin Liu) [1527251]
-- [net] sched: cbs: Change TC_SETUP_CBS to TC_SETUP_QDISC_CBS (Ivan Vecera) [1557250]
-- [net] sched: Add support for HW offloading for CBS (Ivan Vecera) [1557250]
-- [net] sched: Introduce Credit Based Shaper (CBS) qdisc (Ivan Vecera) [1557250]
-- [net] sched: Add select_queue() class_ops for mqprio (Ivan Vecera) [1557250]
-- [net] sched: Change behavior of mq select_queue() (Ivan Vecera) [1557250]
-- [net] sched: Check for null dev_queue on create flow (Ivan Vecera) [1557250]
-
-* Thu May 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-881.el7]
-- [infiniband] rdma/bnxt_re: report vlan_id and sl in qp1 recv completion (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: use BIT_ULL() for 64-bit bit masks (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: qplib_fp: fix pointer cast (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix the ib_reg failure cleanup (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix incorrect DB offset calculation (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Unconditionly fence non wire memory operations (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Unpin SQ and RQ memory if QP create fails (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Disable atomic capability on bnxt_re adapters (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Use common error handling code in bnxt_qplib_alloc_dpi_tbl() (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Delete two error messages for a failed memory allocation in bnxt_qplib_alloc_dpi_tbl() (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix an error code in bnxt_qplib_create_srq() (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix static checker warning (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Add SRQ support for Broadcom adapters (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: expose detailed stats retrieved from HW (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Add support for MRs with Huge pages (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Enable RoCE on virtual functions (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: report RoCE device support at info level (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Use zeroing memory allocator than allocator/memset (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Remove redundant bnxt_qplib_disable_nq() call (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Remove unused vlan_tag variable (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Implement the shutdown hook of the L2-RoCE driver interface (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix incorrect usage of test_bit() (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Remove set-but-not-used variables (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Suppress gcc 7 fall-through complaints (Selvin Xavier) [1550629]
-- [infiniband] ib/hfi1: Convert kzalloc_node and kcalloc to use kcalloc_node (Alex Estrin) [1501293 1483561]
-- [infiniband] hw/qib/qib_init.c: use kmalloc_array_node() (Alex Estrin) [1483561 1501293]
-- [infiniband] sw/rdmavt/qp.c: use kmalloc_array_node() (Alex Estrin) [1501293 1483561]
-- [infiniband] Remove now-redundant smp_read_barrier_depends() (Alex Estrin) [1501293 1483561]
-- [infiniband] rdmavt: Fix synchronization around percpu_ref (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/qib: remove qib_keys.c (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/qib: Cleanup qib_set_part_key() with direct returns (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/qib: remove redundant setting of any in for-loop (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/qib: Remove remaining code related to writing the EEPROM (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/qib: convert timers to use timer_setup() (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/hfi1: Add 16B rcvhdr trace support (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Show fault stats in both TX and RX directions (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove blind constants from 16B update (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Convert PortXmitWait/PortVLXmitWait counters to flit times (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Do not override given pcie_pset value (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Optimize process_receive_ib() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unnecessary fecn and becn fields (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Look up ibport using a pointer in receive path (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Optimize packet type comparison using 9B and bypass code paths (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Compute BTH only for RDMA_WRITE_LAST/SEND_LAST packet (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove dependence on qp->s_hdrwords (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix for potential refcount leak in hfi1_open_file() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix for early release of sdma context (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Re-order IRQ cleanup to address driver cleanup race (Alex Estrin) [1501293 1483561]
-- [infiniband] fix ulp/opa_vnic/opa_vnic_vema.c kernel-doc notation (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Add trace for RNRNAK timer (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1, qib: Fix a concurrency issue with device name in logging (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Allocate CQ memory on the correct node (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix infinite loop in 8051 command error path (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Use correct numa node for SRQ allocation (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt, hfi1, qib: Remove get_card_name() downcall (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt, hfi1, qib: Self determine driver name (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: No need to cancel RNRNAK retry timer when it is running (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add RQ/SRQ information to QP stats (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Change slid arg in ingress_pkey_table_fail to 32bit (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi: Only read capability registers if the capability exists (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Use 4096 for default active MTU in query_qp (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Handle initial value of 0 for CCTI setting (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Send 'reboot' as planned down remote reason (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Prohibit invalid Init to Armed state transition (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Do not allocate PIO send contexts for VNIC (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unnecessary if check (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix a wrapping test to insure the correct timeout (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove wrapper function in mmu_rb (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Reduce 8051 command timeout (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Take advantage of kvzalloc_node in sdma initialization (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Don't modify num_user_contexts module parameter (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Insure int mask for in-kernel receive contexts is clear (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add tx_opcode_stats like the opcode_stats (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Validate PKEY for incoming GSI MAD packets (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Return actual operational VLs in port info query (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Convert timers to use timer_setup() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Convert timers to use timer_setup() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add MODULE_FIRMWARE statements (Alex Estrin) [1501293 1483561 1469811]
-- [infiniband] ib/hfi1: Set hdr_type when tx req is allocated (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Correct unnecessary acquisition of HW mutex (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix serdes loopback set-up (Alex Estrin) [1501293 1483561]
-- [infiniband] rdma/rdmavt: Suppress gcc 7 fall-through complaints (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Define hfi1_handle_cnp_tbl() once (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove set-but-not-used variables (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Suppress gcc 7 fall-through complaints (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Correct issues with read-mostly and send size cache lines (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Prevent LNI out of sync by resetting host interface version (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix output trace issues from 16B change (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor reset_ctxt() IOCTL (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor get_user() IOCTLs (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor hfi_user_exp_rcv_invalid() IOCTLs (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor hfi_user_exp_rcv_clear() IOCTLs (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor hfi_user_exp_rcv_setup() IOCTL (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor get_base_info (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix parenthesis alignment issues (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor get_ctxt_info (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor assign_ctxt() IOCTL (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add a safe wrapper for _rcd_get_by_index (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Extend input hdr tracing for packet type (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unused hfi1_cpulist variables (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Inline common calculation (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unnecessary error messages on alloc failures (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unused link_default variable (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Set default_desc1 just one time (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove the debug trace message in pin_sdma_pages() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Convert the macro AHG_HEADER_SET into an inline function (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add new state complete decodes for LNI failures (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Add routing control information (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Properly set vesw port status (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Properly clear Mac Table Digest (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Properly return the total MACs in UC MAC list (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Allow reset of MAC address (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Set POD value for Ethernet MTU (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Mark unused Ethernet MTU fields as reserved (Alex Estrin) [1501293 1483561]
-- [netdrv] cnic: Fix an error handling path in 'cnic_alloc_bnx2x_resc()' (Chad Dupuis) [1566552]
-- [netdrv] mlx5e: Add missing XDP hunks (Alaa Hleihel) [1563805]
-- [netdrv] ena: fix error handling in ena_down() sequence (John Linville) [1555249]
-- [netdrv] ena: unmask MSI-X only after device initialization is completed (John Linville) [1555249]
-- [netdrv] ena: increase ena driver version to 1.5.0 (John Linville) [1555249]
-- [netdrv] ena: add detection and recovery mechanism for handling missed/misrouted MSI-X (John Linville) [1555249]
-- [netdrv] ena: fix race condition between device reset and link up setup (John Linville) [1555249]
-- [netdrv] ena: increase ena driver version to 1.3.0 (John Linville) [1555249]
-- [netdrv] ena: add new admin define for future support of IPv6 RSS (John Linville) [1555249]
-- [netdrv] ena: add statistics for missed tx packets (John Linville) [1555249]
-- [netdrv] ena: add power management ops to the ENA driver (John Linville) [1555249]
-- [netdrv] ena: remove legacy suspend suspend/resume support (John Linville) [1555249]
-- [netdrv] ena: improve ENA driver boot time (John Linville) [1555249]
-- [netdrv] ena: fix wrong max Tx/Rx queues on ethtool (John Linville) [1555249]
-- [netdrv] ena: fix rare kernel crash when bar memory remap fails (John Linville) [1555249]
-- [netdrv] ena: reduce the severity of some printouts (John Linville) [1555249]
-- [netdrv] ena: Remove redundant unlikely() (John Linville) [1555249]
-- [netdrv] aquantia: Regression on reset with 1.x firmware (David Arcari) [1570787]
-- [netdrv] aquantia: Make function hw_atl_utils_mpi_set_speed() static (David Arcari) [1570787]
-- [netdrv] aquantia: oops when shutdown on already stopped device (David Arcari) [1570787]
-- [netdrv] aquantia: Implement pci shutdown callback (David Arcari) [1570787]
-- [netdrv] aquantia: treewide: setup_timer() -> timer_setup() (David Arcari) [1570787]
-
-* Wed May 02 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-880.el7]
-- [tools] perf trace: Call machine__exit() at exit (Jiri Olsa) [1540862]
-- [tools] perf symbols: Fix memory corruption because of zero length symbols (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel/bts: Fix exclusive event reference leak (Jiri Olsa) [1540862]
-- [tools] perf test shell trace+probe_libc_inet_pton.sh: Be compatible with Debian/Ubuntu (Jiri Olsa) [1540862]
-- [tools] perf xyarray: Fix wrong processing when closing evsel fd (Jiri Olsa) [1540862]
-- [tools] perf record: Fix documentation for a inexistent option '-l' (Jiri Olsa) [1540862]
-- [tools] perf hists: Add extra integrity checks to fmt_free() (Jiri Olsa) [1540862]
-- [tools] perf hists: Fix crash in perf_hpp__reset_output_field() (Jiri Olsa) [1540862]
-- [tools] perf pmu: Unbreak perf record for arm/arm64 with events with explicit PMU (Jiri Olsa) [1540862]
-- [tools] perf script: Add missing separator for "-F ip, brstack" (and brstackoff) (Jiri Olsa) [1540862]
-- [tools] perf test: Fix vmlinux failure on s390x part 2 (Jiri Olsa) [1540862]
-- [tools] perf test: Fix vmlinux failure on s390x (Jiri Olsa) [1540862]
-- [tools] perf tools: Fix syscalltbl build failure (Jiri Olsa) [1540862]
-- [tools] perf report: Fix debug messages with --call-graph option (Jiri Olsa) [1540862]
-- [tools] perf evsel: Fix attr.exclude_kernel setting for default cycles:p (Jiri Olsa) [1540862]
-- [tools] perf tools: Get all of tools/(arch, include)/ in the MANIFEST (Jiri Olsa) [1540862]
-- [tools] perf stat: Wait for the correct child (Jiri Olsa) [1540862]
-- [tools] perf tools: Support running perf binaries with a dash in their name (Jiri Olsa) [1540862]
-- [tools] perf config: Check not only section->from_system_config but also item's (Jiri Olsa) [1540862]
-- [tools] perf ui progress: Fix progress update (Jiri Olsa) [1540862]
-- [tools] perf ui progress: Make sure we always define step value (Jiri Olsa) [1540862]
-- [tools] perf tools: Open perf.data with O_CLOEXEC flag (Jiri Olsa) [1540862]
-- [tools] tools lib api: Fix make DEBUG=1 build (Jiri Olsa) [1540862]
-- [tools] perf tests: Fix compile when libunwind's unwind.h is available (Jiri Olsa) [1540862]
-- [tools] tools include linux: Guard against redefinition of some macros (Jiri Olsa) [1540862]
-- [tools] perf annotate browser: Help for cycling thru hottest instructions with TAB/shift+TAB (Jiri Olsa) [1540862]
-- [tools] perf stat: Only auto-merge events that are PMU aliases (Jiri Olsa) [1540862]
-- [tools] perf intel-pt: Fix syntax in documentation of config option (Jiri Olsa) [1540862]
-- [tools] perf trace: Support syscall name globbing (Jiri Olsa) [1540862]
-- [tools] perf syscalltbl: Support glob matching on syscall names (Jiri Olsa) [1540862]
-- [tools] perf report: Calculate the average cycles of iterations (Jiri Olsa) [1540862]
-- [tools] perf symbols: Fix plt entry calculation for ARM and AARCH64 (Jiri Olsa) [1540862]
-- [tools] perf probe: Fix kprobe blacklist checking condition (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Beautify pkey_(alloc, free, mprotect) arguments (Jiri Olsa) [1540862]
-- [tools] perf tools: Pass full path of FEATURES_DUMP (Jiri Olsa) [1540862]
-- [tools] perf tools: Robustify detection of clang binary (Jiri Olsa) [1540862]
-- [tools] tools lib: Allow external definition of CC, AR and LD (Jiri Olsa) [1540862]
-- [tools] perf tools: Allow external definition of flex and bison binary names (Jiri Olsa) [1540862]
-- [tools] tools build tests: Don't hardcode gcc name (Jiri Olsa) [1540862]
-- [tools] perf report: Group stat values on global event id (Jiri Olsa) [1540862]
-- [tools] perf values: Zero value buffers (Jiri Olsa) [1540862]
-- [tools] perf values: Fix allocation check (Jiri Olsa) [1540862]
-- [tools] perf values: Fix thread index bug (Jiri Olsa) [1540862]
-- [tools] perf report: Add dump_read function (Jiri Olsa) [1540862]
-- [tools] perf record: Set read_format for inherit_stat (Jiri Olsa) [1540862]
-- [tools] perf tools: Fix static build with newer toolchains (Jiri Olsa) [1540862]
-- [tools] perf stat: Fix path to PMU formats in documentation (Jiri Olsa) [1540862]
-- [tools] perf tools: Fix static linking with libunwind (Jiri Olsa) [1540862]
-- [tools] perf tools: Fix static linking with libdw from elfutils (Jiri Olsa) [1540862]
-- [tools] perf: Fix documentation for sysctls perf_event_paranoid and perf_event_mlock_kb (Jiri Olsa) [1540862]
-- [tools] perf tools: Really install manpages via 'make install-man' (Jiri Olsa) [1540862]
-- [tools] perf vendor events: Add Skylake server uncore event list (Jiri Olsa) [1540862]
-- [tools] perf vendor events: Add core event list for Skylake Server (Jiri Olsa) [1540862]
-- [tools] perf tools: Dedup events in expression parsing (Jiri Olsa) [1540862]
-- [tools] perf tools: Increase maximum number of events in expressions (Jiri Olsa) [1540862]
-- [tools] perf tools: Expression parser enhancements for metrics (Jiri Olsa) [1540862]
-- [tools] perf tools: Add utility function to detect SMT status (Jiri Olsa) [1540862]
-- [tools] perf evsel: Fix buffer overflow while freeing events (Jiri Olsa) [1540862]
-- [tools] perf xyarray: Save max_x, max_y (Jiri Olsa) [1540862]
-- [tools] perf annotate browser: Circulate percent, total-period and nr-samples view (Jiri Olsa) [1540862]
-- [tools] perf annotate browser: Support --show-nr-samples option (Jiri Olsa) [1540862]
-- [tools] perf annotate: Document --show-total-period option (Jiri Olsa) [1540862]
-- [tools] perf annotate stdio: Support --show-nr-samples option (Jiri Olsa) [1540862]
-- [tools] perf tools: Use default CPUINFO_PROC where it fits (Jiri Olsa) [1540862]
-- [tools] perf tools: Remove unused cpu_relax() macros (Jiri Olsa) [1540862]
-- [tools] perf events parse: Rename parse_events_parse arguments (Jiri Olsa) [1540862]
-- [tools] perf events parse: Use just one parse events state struct (Jiri Olsa) [1540862]
-- [tools] perf events parse: Rename parsing state struct to clearer name (Jiri Olsa) [1540862]
-- [tools] perf events parse: Remove some needless local variables (Jiri Olsa) [1540862]
-- [tools] perf trace: Fix off by one string allocation problem (Jiri Olsa) [1540862]
-- [tools] perf jevents: Support FCMask and PortMask (Jiri Olsa) [1540862]
-- [tools] perf test shell: Replace '|&' with '2>&1 |' to work with more shells (Jiri Olsa) [1540862]
-- [tools] perf script python: Add support for sqlite3 to call-graph-from-sql.py (Jiri Olsa) [1540862]
-- [tools] perf script python: Rename call-graph-from-postgresql.py to call-graph-from-sql.py (Jiri Olsa) [1540862]
-- [tools] perf script python: Add support for exporting to sqlite3 (Jiri Olsa) [1540862]
-- [tools] perf scripts python: Fix query in call-graph-from-postgresql.py (Jiri Olsa) [1540862]
-- [tools] perf scripts python: Fix missing call_path_id in export-to-postgresql script (Jiri Olsa) [1540862]
-- [tools] perf test shell vfs_getname: Skip for tools built with NO_LIBDWARF=1 (Jiri Olsa) [1540862]
-- [tools] perf test shell: Check if 'perf probe' is available, skip tests if not (Jiri Olsa) [1540862]
-- [tools] perf tests shell: Remove duplicate skip_if_no_debuginfo() function (Jiri Olsa) [1540862]
-- [tools] perf test shell: Add uprobes + backtrace ping test (Jiri Olsa) [1540862]
-- [tools] perf report: Fix module symbol adjustment for s390x (Jiri Olsa) [1540862]
-- [tools] perf srcline: Do not consider empty files as valid srclines (Jiri Olsa) [1540862]
-- [tools] perf util: Take elf_name as const string in dso__demangle_sym (Jiri Olsa) [1540862]
-- [tools] perf test shell: Add test using vfs_getname + 'perf trace' (Jiri Olsa) [1540862]
-- [tools] perf test shell: Add test using probe:vfs_getname and verifying results (Jiri Olsa) [1540862]
-- [tools] perf test shell: Move vfs_getname probe function to lib (Jiri Olsa) [1540862]
-- [tools] perf test shell: Install shell tests (Jiri Olsa) [1540862]
-- [tools] perf test shell: Add 'probe_vfs_getname' shell test (Jiri Olsa) [1540862]
-- [tools] perf test: Make 'list' use same filtering code as main 'perf test' (Jiri Olsa) [1540862]
-- [tools] perf test: Add infrastructure to run shell based tests (Jiri Olsa) [1540862]
-- [tools] perf test: Add 'struct test *' to the test functions (Jiri Olsa) [1540862]
-- [tools] perf test: Print result for each LLVM subtest (Jiri Olsa) [1540862]
-- [tools] perf test: Make 'list' subcommand match main 'perf test' numbering/matching (Jiri Olsa) [1540862]
-- [tools] perf tools: Add missing newline to expr parser error messages (Jiri Olsa) [1540862]
-- [tools] perf stat: Fix saved values rbtree lookup (Jiri Olsa) [1540862]
-- [tools] perf trace beautify ioctl: Beautify perf ioctl's 'cmd' arg (Jiri Olsa) [1540862]
-- [tools] perf trace beautify ioctl: Beautify vhost virtio ioctl's 'cmd' arg (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of linux/vhost.h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty ioctl: Pass _IOC_DIR to the per _IOC_TYPE scnprintf (Jiri Olsa) [1540862]
-- [tools] perf trace beautify ioctl: Beautify KVM ioctl's 'cmd' arg (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of linux/kvm.h (Jiri Olsa) [1540862]
-- [tools] perf trace beautify ioctl: Beautify sound ioctl's 'cmd' arg (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of sound/asound.h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty ioctl: Beautify DRM ioctl cmds (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab copies of drm/(drm, i915_drm).h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty ioctl: Improve 'cmd' beautifier (Jiri Olsa) [1540862]
-- [tools] tools perf: Do not check spaces/blank lines when checking header file copy drift (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of asm-generic/ioctls.h (Jiri Olsa) [1540862]
-- [tools] perf build: Clarify header version warning message (Jiri Olsa) [1540862]
-- [tools] perf data: Add doc when no conversion support compiled (Jiri Olsa) [1540862]
-- [tools] perf data: Add mmap(2) events to CTF conversion (Jiri Olsa) [1540862]
-- [tools] perf data: Add callchain to CTF conversion (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Set appropriate column width for period/percent (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Fix column header when toggling period/percent (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Clarify calculation of column header widths (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Fix --show-total-period (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Use sym_hist_entry in disasm_line_samples (Jiri Olsa) [1540862]
-- [tools] perf annotate: Fix storing per line sym_hist_entry (Jiri Olsa) [1540862]
-- [tools] perf annotate stdio: Set enough columns for --show-total-period (Jiri Olsa) [1540862]
-- [tools] perf sort: Use default sort if evlist is empty (Jiri Olsa) [1540862]
-- [tools] perf annotate: Do not overwrite perf_sample->weight (Jiri Olsa) [1540862]
-- [tools] perf stat: Use group read for event groups (Jiri Olsa) [1540862]
-- [tools] perf evsel: Add read_counter() (Jiri Olsa) [1540862]
-- [tools] perf tools: Add perf_evsel__read_size function (Jiri Olsa) [1540862]
-- [tools] perf tools: Add tools/include/uapi/asm-generic/fcntl.h to the MANIFEST (Jiri Olsa) [1540862]
-- [tools] perf annotate stdio: Fix column header when using --show-total-period (Jiri Olsa) [1540862]
-- [tools] perf jevents: Make build fail on JSON parse error (Jiri Olsa) [1540862]
-- [tools] perf report: Tag branch type/flag on "to" and tag cycles on "from" (Jiri Olsa) [1540862]
-- [tools] perf report: Make --branch-history work without callgraphs(-g) option in perf record (Jiri Olsa) [1540862]
-- [tools] perf script python: Generate hooks with additional argument (Jiri Olsa) [1540862]
-- [tools] perf script python: Add perf_sample dict to tracepoint handlers (Jiri Olsa) [1540862]
-- [tools] perf script python: Add sample_read to dict (Jiri Olsa) [1540862]
-- [tools] perf script python: Refactor creation of perf sample dict (Jiri Olsa) [1540862]
-- [tools] perf script python: Allocate memory only if handler exists (Jiri Olsa) [1540862]
-- [tools] perf script: Remove some bogus error handling (Jiri Olsa) [1540862]
-- [tools] perf top: Support lookup of symbols in other mount namespaces (Jiri Olsa) [1540862]
-- [tools] perf evsel: Add verbose output for sys_perf_event_open fallback (Jiri Olsa) [1540862]
-- [tools] perf jvmti: Fix linker error when libelf config is disabled (Jiri Olsa) [1540862]
-- [tools] perf annotate: Process tracing data in pipe mode (Jiri Olsa) [1540862]
-- [tools] perf tools: Add EXCLUDE_EXTLIBS and EXTRA_PERFLIBS to makefile (Jiri Olsa) [1540862]
-- [tools] perf cgroup: Fix refcount usage (Jiri Olsa) [1540862]
-- [tools] perf report: Fix kernel symbol adjustment for s390x (Jiri Olsa) [1540862]
-- [tools] perf annotate stdio: Fix --show-total-period (Jiri Olsa) [1540862]
-- [tools] perf annotate: Do not overwrite sample->period (Jiri Olsa) [1540862]
-- [tools] perf annotate: Store the sample period in each histogram bucket (Jiri Olsa) [1540862]
-- [tools] perf hists: Pass perf_sample to __symbol__inc_addr_samples() (Jiri Olsa) [1540862]
-- [tools] perf annotate: Rename 'sum' to 'nr_samples' in struct sym_hist (Jiri Olsa) [1540862]
-- [tools] perf annotate: Introduce struct sym_hist_entry (Jiri Olsa) [1540862]
-- [tools] tools lib: Update copy of strtobool from the kernel sources (Jiri Olsa) [1540862]
-- [tools] tools Adopt strstarts() from the kernel (Jiri Olsa) [1540862]
-- [tools] perf trace: Filter out 'sshd' in the tracer ancestry in syswide tracing (Jiri Olsa) [1540862]
-- [tools] perf trace: Introduce filter_loop_pids() (Jiri Olsa) [1540862]
-- [tools] perf trace beauty clone: Suppress unused args according to 'flags' arg (Jiri Olsa) [1540862]
-- [tools] perf trace beauty clone: Beautify syscall arguments (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of linux/sched.h (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow specifying names to syscall arguments formatters (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow specifying number of syscall args for tracepointless syscalls (Jiri Olsa) [1540862]
-- [tools] perf trace: Ditch __syscall__arg_val() variant, not needed anymore (Jiri Olsa) [1540862]
-- [tools] perf trace: Use the syscall_fmt formatters without a tracepoint (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow allocating sc->arg_fmt even without the syscall tracepoint (Jiri Olsa) [1540862]
-- [tools] perf trace beauty mmap: Ignore 'fd' and 'offset' args for MAP_ANONYMOUS (Jiri Olsa) [1540862]
-- [tools] perf trace: Add missing ' = ' in the default formatting of syscall returns (Jiri Olsa) [1540862]
-- [tools] perf intel-pt: Always set no branch for dummy event (Jiri Olsa) [1540862]
-- [tools] perf intel-pt: Set no_aux_samples for the tracking event (Jiri Olsa) [1540862]
-- [tools] perf report: Show branch type in callchain entry (Jiri Olsa) [1540862]
-- [tools] perf report: Show branch type statistics for stdio mode (Jiri Olsa) [1540862]
-- [tools] perf util: Create branch.c/.h for common branch functions (Jiri Olsa) [1540862]
-- [tools] perf report: Refactor the branch info printing code (Jiri Olsa) [1540862]
-- [tools] perf record: Create a new option save_type in --branch-filter (Jiri Olsa) [1540862]
-- [tools] perf header: Add event desc to pipe-mode header (Jiri Olsa) [1540862]
-- [tools] perf tools: Add feature header record to pipe-mode (Jiri Olsa) [1540862]
-- [tools] perf tool: Add show_feature_header to perf_tool (Jiri Olsa) [1540862]
-- [tools] perf header: Change FEAT_OP* macros (Jiri Olsa) [1540862]
-- [tools] perf header: Add a buffer to struct feat_fd (Jiri Olsa) [1540862]
-- [tools] perf header: Make write_pmu_mappings pipe-mode friendly (Jiri Olsa) [1540862]
-- [tools] perf header: Use struct feat_fd in read header records (Jiri Olsa) [1540862]
-- [tools] perf header: Don't pass struct perf_file_section to process_##_feat (Jiri Olsa) [1540862]
-- [tools] perf header: Use struct feat_fd to process header records (Jiri Olsa) [1540862]
-- [tools] perf header: Use struct feat_fd for print (Jiri Olsa) [1540862]
-- [tools] perf header: Add struct feat_fd for write (Jiri Olsa) [1540862]
-- [tools] perf header: Revamp do_write() (Jiri Olsa) [1540862]
-- [tools] perf util: Add const modifier to buf in "writen" function (Jiri Olsa) [1540862]
-- [tools] perf header: Fail on write_padded error (Jiri Olsa) [1540862]
-- [tools] perf header: Add PROCESS_STR_FUN macro (Jiri Olsa) [1540862]
-- [tools] perf header: Encapsulate read and swap (Jiri Olsa) [1540862]
-- [tools] perf report: Enable finding kernel inline functions (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Simplify syscall return formatting (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify the 'arg' for DUPFD (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Do not suppress 'cmd' when zero, should be DUPFD (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow syscall arg formatters to request non suppression of zeros (Jiri Olsa) [1540862]
-- [tools] perf trace: Group per syscall arg formatter info into one struct (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify F_GETLEASE and F_SETLEASE arg/return (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export strarray for use in per-object beautifiers (Jiri Olsa) [1540862]
-- [tools] perf test sdt: Handle realpath() failure (Jiri Olsa) [1540862]
-- [tools] perf record: Do not ask for precise_ip with --no-samples (Jiri Olsa) [1540862]
-- [tools] perf evlist: Allow asking for max precise_ip in add_default() (Jiri Olsa) [1540862]
-- [tools] perf evsel: Allow asking for max precise_ip in new_cycles() (Jiri Olsa) [1540862]
-- [tools] tools build: Add test for setns() (Jiri Olsa) [1540862]
-- [tools] tools include uapi x86: Grab a copy of unistd.h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify F_GETOWN and F_SETOWN (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export the pid beautifier for use in more places (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Augment the return of F_DUPFD(_CLOEXEC) (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export the fd beautifier for use in more places (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Give syscall return beautifier more context (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify F_(GS)ETFD arg/return value (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl flags: Beautify F_SETFL arg (Jiri Olsa) [1540862]
-- [tools] perf trace beauty open flags: Move RDRW to the start of the output (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify F_GETFL return value (Jiri Olsa) [1540862]
-- [tools] perf trace beauty open flags: Do not depend on the system's O_LARGEFILE define (Jiri Olsa) [1540862]
-- [tools] perf trace beauty open flags: Support O_TMPFILE and O_NOFOLLOW (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow syscall_arg beautifiers to set a different return formatter (Jiri Olsa) [1540862]
-- [tools] perf beauty open: Detach the syscall_arg agnostic bits from the flags formatter (Jiri Olsa) [1540862]
-- [tools] perf trace: Beautify new write hint fcntl commands (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Basic 'arg' beautifier (Jiri Olsa) [1540862]
-- [tools] tools include uapi asm-generic: Grab a copy of fcntl.h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Introduce syscall arg beautifier for long integers (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export the "int" and "hex" syscall arg formatters (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Allow accessing syscall args values in a syscall arg formatter (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Mask ignored fcntl 'arg' parameter (Jiri Olsa) [1540862]
-- [tools] perf trace: Only build tools/perf/trace/beauty/ when building 'perf trace' (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export the strarrays scnprintf method (Jiri Olsa) [1540862]
-- [tools] Update uapi/linux/fcntl.h copy from the kernel (Jiri Olsa) [1540862]
-- [tools] perf trace: Beautify linux specific fcntl commands (Jiri Olsa) [1540862]
-- [tools] perf trace: Remove F_ from some of the fcntl command strings (Jiri Olsa) [1540862]
-- [tools] perf annotate: Implement visual marker for macro fusion (Jiri Olsa) [1540862]
-- [tools] perf annotate: Check for fused instructions (Jiri Olsa) [1540862]
-- [kernel] perf/core: Fix cgroup time when scheduling descendants (Jiri Olsa) [1540862]
-- [tools] perf callchain: Compare dsos (as well) for CCKEY_FUNCTION (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel/uncore: Correct num_boxes for IIO and IRP (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel/rapl: Add missing CPU IDs (Jiri Olsa) [1540862]
-- [x86] perf/x86/msr: Add missing CPU IDs (Jiri Olsa) [1540862]
-- [kernel] perf/aux: Only update ->aux_wakeup in non-overwrite mode (Jiri Olsa) [1540862]
-- [x86] perf/x86: Fix caps/ for !Intel (Jiri Olsa) [1540862]
-- [kernel] perf/core, pt, bts: Get rid of itrace_started (Jiri Olsa) [1540862]
-- [x86] perf/x86: Export some PMU attributes in caps/ directory (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel: Print LBR support statement after validation (Jiri Olsa) [1540862]
-- [x86] perf/x86: Only show format attributes when supported (Jiri Olsa) [1540862]
-- [kernel] tracing, perf: Adjust code layout in get_recursion_context() (Jiri Olsa) [1540862]
-- [kernel] perf/aux: Ensure aux_wakeup represents most recent wakeup index (Jiri Olsa) [1540862]
-- [kernel] perf/aux: Make aux_(head, wakeup) ring_buffer members long (Jiri Olsa) [1540862]
-- [kernel] perf/core: Reduce context switch overhead (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel: Record branch type (Jiri Olsa) [1540862]
-- [x86] perf/x86: Move perf_event_intel_lbr.c ........ => x86/events/intel/lbr.c (Jiri Olsa) [1540862]
-- [tools] perf/core: Define the common branch type classification (Jiri Olsa) [1540862]
-
-* Mon Apr 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-879.el7]
-- [mm] hugetlb.c: clean up VM_WARN usage (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [linux] include/linux/mmdebug.h: fix VM_WARN(_*)() with CONFIG_DEBUG_VM=n (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [fs] hugetlbfs: check for pgoff value overflow v3 fix fix (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [fs] hugetlbfs: check for pgoff value overflow v3 (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [fs] hugetlbfs: check for pgoff value overflow (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [linux] include/linux/mmdebug.h: add VM_WARN_ONCE() (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [linux] include/linux/mmdebug.h: add VM_WARN which maps to WARN() (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [fs] Force log to disk before reading the AGF during a fstrim (Carlos Maiolino) [1248862]
-- [fs] gfs2: Remove inodes from ordered write list in gfs2_write_inode() (Abhijith Das) [1511599]
-- [fs] nfs: advance nfs_entry cookie only after decoding completes successfully (Frank Sorenson) [1468015]
-- [fs] gfs2: Zero out fallocated blocks in fallocate_chunk (Andreas Grunbacher) [1561016]
-- [fs] xprtrdma: Instrument allocation/release of rpcrdma_req/rep objects (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points to instrument QP and CQ access upcalls (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points in the client-side backchannel code paths (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points for connect events (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points to instrument MR allocation and recovery (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points to instrument memory invalidation (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points in reply decoder path (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points to instrument memory registration (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points in the RPC Reply handler paths (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points in RPC Call transmit paths (Benjamin Coddington) [1559349]
-- [fs] rpcrdma: infrastructure for static trace points in rpcrdma.ko (Benjamin Coddington) [1559349]
-- [fs] rdma/ib: Add trace point macros to display human-readable values (Benjamin Coddington) [1559349]
-- [fs] tracing: Add TRACE_DEFINE_ENUM() macro to map enums to their values (Benjamin Coddington) [1559349]
-- [fs] tracing: Give system name a pointer (Benjamin Coddington) [1559349]
-- [netdrv] hv_netvsc: Pass net_device parameter to revoke and teardown functions (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Ensure correct teardown message sequence order (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Split netvsc_revoke_buf() and netvsc_teardown_gpadl() (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Use Windows version instead of NVSP version on GPAD teardown (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Clean up extra parameter from rndis_filter_receive_data() (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: enable multicast if necessary (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Add range checking for rx packet offset and length (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Fix the return status in RX path (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: common detach logic (Mohammed Gamal) [1526392 1551625]
-- [netdrv] hv_netvsc: change GPAD teardown order on older versions (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: use RCU to fix concurrent rx and queue changes (Mohammed Gamal) [1551625 1526392]
-- [netdrv] hv_netvsc: disable NAPI before channel close (Mohammed Gamal) [1551625 1526392]
-- [netdrv] revert "hv_netvsc: Split netvsc_revoke_buf() and netvsc_teardown_gpadl()" (Mohammed Gamal) [1551625]
-- [netdrv] revert "hv_netvsc: Change GPADL teardown order according to Hyper-V version" (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: pass netvsc_device to rndis halt (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix locking during VF setup (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix locking for rx_mode (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: avoid repeated updates of packet filter (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix filter flags (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: propagate rx filters to VF (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: filter multicast/broadcast (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: defer queue selection to VF (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: use napi_schedule_irqoff (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix race in napi poll when rescheduling (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: cancel subchannel setup before halting device (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix error unwind handling if vmbus_open fails (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: only wake transmit queue if link is up (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: avoid retry on send during shutdown (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Use the num_online_cpus() for channel limit (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: empty current transmit aggregation if flow blocked (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: remove open_cnt reference count (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: pass netvsc_device to receive callback (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: simplify function args in receive status path (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: track memory allocation failures in ethtool stats (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: copy_to_send buf can be void (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: optimize initialization of RNDIS header (Mohammed Gamal) [1551625]
-- [kernel] vmbus: make hv_get_ringbuffer_availbytes local (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: use reciprocal divide to speed up percent calculation (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: replace divide with mask when computing padding (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: don't need local xmit_more (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: drop unused macros (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Set tx_table to equal weight after subchannels open (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Add initialization of tx_table in netvsc_device_add() (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Rename tx_send_table to tx_table (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Rename ind_table to rx_table (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Add ethtool handler to set and get TCP hash levels (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Change the hash level variable to bit flags (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: report stop_queue and wake_queue (Mohammed Gamal) [1551625]
-- [mm] fork: introduce MADV_WIPEONFORK (Rafael Aquini) [1476297]
-- [x86] mpx: make mpx depend on x86-64 to free up VMA flag (Rafael Aquini) [1476297]
-- [x86] membarrier: provide core serializing command (Rafael Aquini) [1560024]
-- [kernel] membarrier: provide core serializing command, *_SYNC_CORE (Rafael Aquini) [1560024]
-- [x86] locking: implement sync_core_before_usermode() (Rafael Aquini) [1560024]
-- [kernel] locking: Introduce sync_core_before_usermode() (Rafael Aquini) [1560024]
-- [kernel] membarrier: provide GLOBAL_EXPEDITED command (Rafael Aquini) [1560024]
-- [kernel] sched: Introduce task_rcu_dereference() and try_get_task_struct() (Rafael Aquini) [1560024]
-- [powerpc] membarrier: skip memory barrier in switch_mm() (Rafael Aquini) [1560024]
-- [powerpc] wire up sys_membarrier() (Rafael Aquini) [1560024]
-- [s390] allocate sys_membarrier system call number (Rafael Aquini) [1560024]
-- [kernel] membarrier: document scheduler barrier requirements (Rafael Aquini) [1560024]
-- [kernel] membarrier: disable preemption when calling smp_call_function_many() (Rafael Aquini) [1560024]
-- [kernel] membarrier: provide register expedited private command (Rafael Aquini) [1560024]
-- [kernel] membarrier: provide expedited private command (Rafael Aquini) [1560024]
-- [kernel] membarrier: disable sys_membarrier when nohz_full is enabled (Rafael Aquini) [1560024]
-- [kernel] membarrier: system-wide memory barrier (Rafael Aquini) [1560024]
-
-* Wed Apr 25 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-878.el7]
-- [hwmon] (k10temp) Only apply temperature offset if result is positive (David Arcari) [1446653]
-- [hwmon] (k10temp) Add temperature offset for Ryzen 1900X (David Arcari) [1446653]
-- [hwmon] (k10temp) Correct model name for Ryzen 1600X (David Arcari) [1446653]
-- [hwmon] (k10temp) Add support for temperature offsets (David Arcari) [1446653]
-- [hwmon] (k10temp) Add support for family 17h (David Arcari) [1446653]
-- [hwmon] (k10temp) Move chip specific code into probe function (David Arcari) [1446653]
-- [hwmon] (k10temp) use permission-specific DEVICE_ATTR variants (David Arcari) [1446653]
-- [hwmon] (k10temp) Remove duplicate pci-id define (David Arcari) [1446653]
-- [tools] wmi: fix cross-compile var clobbering (Jarod Wilson) [1517197]
-- [tools] wmi: add a sample for dell smbios communication over WMI (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Removed duplicates in DMI whitelist (Jarod Wilson) [1517197]
-- [platform] x86: Fix dell driver init order (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Link all dell-smbios-* modules together (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Rename dell-smbios source to dell-smbios-base (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Correct some style warnings (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Correct notation for filtering (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: fix string overflow (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Removed duplicates in DMI whitelist (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: fix kbd_get_state's request value (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Allocate buffer on heap rather than globally (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Add 2-in-1 devices to the DMI whitelist (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: make some local functions static (Jarod Wilson) [1517197]
-- [platform] x86: dell-wmi: check for kmalloc() errors (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Use bool in struct quirk_entry for true/false fields (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Fix keyboard max lighting for Dell Latitude E6410 (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: fix error return code in dell_init() (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-wmi: Disable userspace interface if missing hotfix (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Allocate buffer before rfkill use (Jarod Wilson) [1517197]
-- [platform] x86: dell-*wmi*: Relay failed initial probe to dependent drivers (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-wmi: release mutex lock on WMI call failure (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-wmi: introduce userspace interface (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Add filtering support (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-smm: test for WSMT (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-wmi: Add new WMI dispatcher driver (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Introduce dispatcher for SMM calls (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Add a sysfs interface for SMBIOS tokens (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: only run if proper oem string is detected (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Add pr_fmt definition to driver (Jarod Wilson) [1517197]
-- [platform] x86: dell-*: Add a generic dell-laptop notifier chain (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Fix bogus keyboard backlight sysfs interface (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Refactor kbd_led_triggers_store() (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Add Latitude 7480 and others to the DMI whitelist (Jarod Wilson) [1517197]
-- [pci] irq: Add pci_request_irq() and pci_free_irq() helpers (Ivan Vecera) [1568010]
-- [linux] genirq: Return the IRQ name from free_irq() (Ivan Vecera) [1568010]
-- [kernel] genirq: Fix indentation in remove_irq() (Ivan Vecera) [1568010]
-- [kernel] genirq: Prevent chip buslock deadlock (Ivan Vecera) [1568010]
-- [target] Re-add missing SCF_ACK_KREF assignment in (Mike Christie) [1561851]
-- [powerpc] dma: Fix memory leak (Prarit Bhargava) [1564602]
-- [of] fix memory leak related to safe_name() (Prarit Bhargava) [1564602]
-- [scsi] Fix a memory leak in scsi_host_dev_release() (Prarit Bhargava) [1564602]
-- [powerpc] kmemleak: Do not scan the DART table (Prarit Bhargava) [1564602]
-- [powerpc] mm: Free string after creating kmem cache (Prarit Bhargava) [1564602]
-- [powerpc] msi: Free the bitmap if it was slab allocated (Prarit Bhargava) [1564602]
-- [net] sched: actions: return explicit error when tunnel_key mode is not specified (Davide Caratti) [1554907]
-- [net] ipv6: the entire IPv6 header chain must fit the first fragment (Paolo Abeni) [1559964]
-- [net] ipv4: fix NULL dereference in free_fib_info_rcu() (Florian Westphal) [1535373]
-- [net] ipv4: add reference counting to metrics (Florian Westphal) [1535373]
-- [net] mqprio: fix potential null pointer dereference on opt (Ivan Vecera) [1557527]
-- [net] mqprio: Introduce new hardware offload mode and shaper in mqprio (Ivan Vecera) [1557527]
-- [lib] rhashtable: Fix rhlist duplicates insertion (Xin Long) [1559106]
-- [net] ipv6: fix access to non-linear packet in ndisc_fill_redirect_hdr_option() (Lorenzo Bianconi) [1533773]
-- [net] ip_gre: clear feature flags when incompatible o_flags are set (Lorenzo Bianconi) [1489629]
-- [net] ip_gre: add the support for i/o_flags update via ioctl (Lorenzo Bianconi) [1489629]
-- [net] ip_gre: add the support for i/o_flags update via netlink (Lorenzo Bianconi) [1489629]
-- [net] ip6_tunnel: update mtu properly for ARPHRD_ETHER tunnel device in tx path (Xin Long) [1527291]
-- [net] tcp/dccp: Re-arm TIME_WAIT reaping hangman timer if thread slot quota is exceeded (Stefano Brivio) [1533771]
-
-* Mon Apr 23 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-877.el7]
-- [nvme] nvme-fcloop: avoid possible uninitialized variable warning (David Milburn) [1519689]
-- [nvme] check hw sectors before setting chunk sectors (David Milburn) [1519689]
-- [nvme] call blk_integrity_unregister after queue is cleaned up (David Milburn) [1519689]
-- [nvme] nvme-pci: fix NULL pointer dereference in nvme_free_host_mem() (David Milburn) [1519689]
-- [nvme] nvme-rdma: fix memory leak during queue allocation (David Milburn) [1519689]
-- [nvme] nvme-fc: don't use bit masks for set/test_bit() numbers (David Milburn) [1519689]
-- [nvme] nvme-pci: add quirk for delay before CHK RDY for WDC SN200 (David Milburn) [1519689]
-- [nvme] nvmet-fc: correct ref counting error when deferred rcv used (David Milburn) [1519689]
-- [nvme] nvme-pci: avoid hmb desc array idx out-of-bound when hmmaxd set (David Milburn) [1519689]
-- [nvme] nvme-pci: disable APST on Samsung SSD 960 EVO + ASUS PRIME B350M-A (David Milburn) [1519689]
-- [nvme] nvmet_fc: fix better length checking (David Milburn) [1519689]
-- [nvme] nvmet: better data length validation (David Milburn) [1519689]
-- [nvme] send uevent for some asynchronous events (David Milburn) [1519689]
-- [nvme] unexport starting async event work (David Milburn) [1519689]
-- [nvme] remove handling of multiple AEN requests (David Milburn) [1519689]
-- [nvme] nvme-fc: remove unused "queue_size" field (David Milburn) [1519689]
-- [nvme] centralize AEN defines (David Milburn) [1519689]
-- [nvme] nvmet: remove redundant local variable (David Milburn) [1519689]
-- [nvme] nvmet: remove redundant memset if failed to get_smart_log failed (David Milburn) [1519689]
-- [nvme] fix eui_show() print format (David Milburn) [1519689]
-- [nvme] compare NQN string with right size (David Milburn) [1519689]
-- [nvme] nvmet: fix comment typos in admin-cmd.c (David Milburn) [1519689]
-- [nvme] nvme-rdma: fix nvme_rdma_create_queue_ib error flow (David Milburn) [1519689]
-- [nvme] nvmet-rdma: update queue list during ib_device removal (David Milburn) [1519689]
-- [nvme] check admin passthru command effects (David Milburn) [1519689]
-- [nvme] factor get log into a helper (David Milburn) [1519689]
-- [nvme] comment typo fixed in clearing AER (David Milburn) [1519689]
-- [nvme] Remove unused headers (David Milburn) [1519689]
-- [nvme] flush reset_work before safely continuing with delete operation (David Milburn) [1519689]
-- [nvme] nvme-rdma: reuse nvme_delete_ctrl when reconnect attempts expire (David Milburn) [1519689]
-- [nvme] consolidate common code from ->reset_work (David Milburn) [1519689]
-- [nvme] nvme-rdma: remove nvme_rdma_remove_ctrl (David Milburn) [1519689]
-- [nvme] move controller deletion to common code (David Milburn) [1519689]
-- [nvme] check for a live controller in nvme_dev_open (David Milburn) [1519689]
-- [nvme] get rid of nvme_ctrl_list (David Milburn) [1519689]
-- [nvme] switch controller refcounting to use struct device (David Milburn) [1519689]
-- [nvme] kobject: Export kobject_get_unless_zero() (David Milburn) [1519689]
-- [nvme] simplify nvme_open (David Milburn) [1519689]
-- [nvme] use kref_get_unless_zero in nvme_find_get_ns (David Milburn) [1519689]
-- [nvme] nvme-rdma: Add debug message when reaches timeout (David Milburn) [1519689]
-- [nvme] nvme-rdma: align nvme_rdma_device structure (David Milburn) [1519689]
-- [nvme] use ida_simple_(get,remove) for the controller instance (David Milburn) [1519689]
-- [nvme] nvmet: Change max_nsid in subsystem due to ns_disable if needed (David Milburn) [1519689]
-- [nvme] nvme-loop: Add BLK_MQ_F_NO_SCHED flag to admin tag set (David Milburn) [1519689]
-- [nvme] nvme-fc: Add BLK_MQ_F_NO_SCHED flag to admin tag set (David Milburn) [1519689]
-- [nvme] nvme-rdma: Add BLK_MQ_F_NO_SCHED flag to admin tag set (David Milburn) [1519689]
-- [nvme] nvme-pci: fix typos in comments (David Milburn) [1519689]
-- [nvme] nvme-rdma: stop controller reset if the controller is deleting (David Milburn) [1519689]
-- [nvme] nvme-rdma: change queue flag semantics DELETING -> ALLOCATED (David Milburn) [1519689]
-- [nvme] nvme-rdma: teardown admin/io queues once on error recovery (David Milburn) [1519689]
-- [nvme] nvme-rdma: move assignment to declaration (David Milburn) [1519689]
-- [nvme] nvme-rdma: fix wrong logging message (David Milburn) [1519689]
-- [nvme] nvme-rdma: pass tagset to directly nvme_rdma_free_tagset (David Milburn) [1519689]
-- [nvme] nvme-fabrics: request transport module (David Milburn) [1519689]
-- [nvme] use menu Kconfig interface (David Milburn) [1519689]
-- [nvme] nvme-rdma: Fix error status return in tagset allocation failure (David Milburn) [1519689]
-- [nvme] nvme-rdma: Fix possible double free in reconnect flow (David Milburn) [1519689]
-- [nvme] nvme-pci: Use PCI bus address for data/queues in CMB (David Milburn) [1519689]
-- [nvme] fix visibility of "uuid" ns attribute (David Milburn) [1519689]
-- [nvme] nvme-rdma: give up reconnect if state change fails (David Milburn) [1519689]
-- [nvme] nvme-core: Use nvme_wq to queue async events and fw activation (David Milburn) [1519689]
-- [nvme] nvmet: add support for reporting the host identifier (David Milburn) [1519689]
-- [nvme] factor metadata handling out of __nvme_submit_user_cmd (David Milburn) [1519689]
-- [nvme] allow calling nvme_change_ctrl_state from irq context (David Milburn) [1519689]
-- [nvme] honor RTD3 Entry Latency for shutdowns (David Milburn) [1519689]
-- [nvme] nvme-rdma: Use unlikely macro in the fast path (David Milburn) [1519689]
-- [nvme] rename AMS symbolic constants to fit specification (David Milburn) [1519689]
-- [nvme] add symbolic constants for CC identifiers (David Milburn) [1519689]
-- [nvme] fix identify namespace logging (David Milburn) [1519689]
-- [nvme] nvme-fabrics: log a warning if hostid is invalid (David Milburn) [1519689]
-- [nvme] nvme-rdma: call ops->reg_read64 instead of nvmf_reg_read64 (David Milburn) [1519689]
-- [nvme] nvme-rdma: cleanup error path in controller reset (David Milburn) [1519689]
-- [nvme] nvme-rdma: introduce nvme_rdma_start_queue (David Milburn) [1519689]
-- [nvme] nvme-rdma: rename nvme_rdma_init_queue to nvme_rdma_alloc_queue (David Milburn) [1519689]
-- [nvme] nvme-rdma: stop queues instead of simply flipping their state (David Milburn) [1519689]
-- [nvme] nvme-rdma: introduce configure/destroy io queues (David Milburn) [1519689]
-- [nvme] nvme-rdma: reuse configure/destroy_admin_queue (David Milburn) [1519689]
-- [nvme] nvme-rdma: don't free tagset on resets (David Milburn) [1519689]
-- [nvme] nvmet: use NVME_NSID_ALL (David Milburn) [1519689]
-- [nvme] nvme-rdma: disable the controller on resets (David Milburn) [1519689]
-- [nvme] nvme-rdma: move tagset allocation to a dedicated routine (David Milburn) [1519689]
-- [nvme] Add admin_tagset pointer to nvme_ctrl (David Milburn) [1519689]
-- [nvme] nvme-rdma: move nvme_rdma_configure_admin_queue code location (David Milburn) [1519689]
-- [nvme] nvme-rdma: remove NVME_RDMA_MAX_SEGMENT_SIZE (David Milburn) [1519689]
-- [nvme] nvmet: fix the return error code of target if host is not allowed (David Milburn) [1519689]
-- [nvme] add support for NVMe 1.3 Timestamp Feature (David Milburn) [1519689]
-- [nvme] define NVME_NSID_ALL (David Milburn) [1519689]
-- [nvme] add support for FW activation without reset (David Milburn) [1519689]
-- [nvme] nvmet-rdma: remove redundant empty device add callout (David Milburn) [1519689]
-- [nvme] nvme-rdma: remove redundant empty device add callout (David Milburn) [1519689]
-- [nvme] nvme-fabrics: Allow 0 as KATO value (David Milburn) [1519689]
-- [nvme] nvme-pci: initialize queue memory before interrupts (David Milburn) [1519689]
-- [nvme] nvme-pci: implement the HMB entry number and size limitations (David Milburn) [1519689]
-- [nvme] nvme-pci: propagate (some) errors from host memory buffer setup (David Milburn) [1519689]
-- [nvme] nvme-pci: use appropriate initial chunk size for HMB allocation (David Milburn) [1519689]
-- [nvme] nvme-pci: fix host memory buffer allocation fallback (David Milburn) [1519689]
-- [nvme] pci: serialize pci resets (David Milburn) [1543698]
-
-* Mon Apr 23 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-876.el7]
-- [net] svcrdma: Fix Read chunk round-up (Don Dutile) [1549856]
-- [net] xprtrdma: Fix BUG after a device removal (Don Dutile) [1549856]
-- [net] xprtrdma: Fix calculation of ri_max_send_sges (Don Dutile) [1549856]
-- [net] xprtrdma: Correct some documenting comments (Don Dutile) [1549856]
-- [net] xprtrdma: Fix "bytes registered" accounting (Don Dutile) [1549856]
-- [net] svcrdma: Post Receives in the Receive completion handler (Don Dutile) [1549856]
-- [net] xprtrdma: Introduce rpcrdma_mw_unmap_and_put (Don Dutile) [1549856]
-- [net] xprtrdma: Remove usage of "mw" (Don Dutile) [1549856]
-- [net] xprtrdma: Replace all usage of "frmr" with "frwr" (Don Dutile) [1549856]
-- [net] xprtrdma: Don't clear RPC_BC_PA_IN_USE on pre-allocated rpc_rqst's (Don Dutile) [1549856]
-- [net] xprtrdma: Split xprt_rdma_send_request (Don Dutile) [1549856]
-- [net] xprtrdma: buf_free not called for CB replies (Don Dutile) [1549856]
-- [net] xprtrdma: Move unmap-safe logic to rpcrdma_marshal_req (Don Dutile) [1549856]
-- [net] xprtrdma: Support IPv6 in xprt_rdma_set_port (Don Dutile) [1549856]
-- [net] xprtrdma: Remove another sockaddr_storage field (cdata::addr) (Don Dutile) [1549856]
-- [net] xprtrdma: Initialize the xprt address string array earlier (Don Dutile) [1549856]
-- [net] xprtrdma: Remove unused padding variables (Don Dutile) [1549856]
-- [net] xprtrdma: Remove ri_reminv_expected (Don Dutile) [1549856]
-- [net] xprtrdma: Per-mode handling for Remote Invalidation (Don Dutile) [1549856]
-- [net] xprtrdma: Eliminate unnecessary lock cycle in xprt_rdma_send_request (Don Dutile) [1549856]
-- [net] xprtrdma: Fix backchannel allocation of extra rpcrdma_reps (Don Dutile) [1549856]
-- [net] xprtrdma: Fix buffer leak after transport set up failure (Don Dutile) [1549856]
-- [infiniband] ib/rxe: remove redudant parameter in rxe_av_fill_ip_info (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: change the function rxe_av_fill_ip_info to void (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: change the function to void from int (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: remove unnecessary parameter in rxe_av_to_attr (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: change the function to void from int (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: remove redudant parameter in function (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: Change RDMA_RXE kconfig to use select (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Fix rxe_qp_cleanup() (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Fix a race condition in rxe_requester() (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Fix a race condition related to the QP error state (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: remove unnecessary skb_clone in xmit (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: add the static type to the variable (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Remove useless EXPORT_SYMBOL (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: Avoid passing unused index pointer which is optional (Don Dutile) [1520302 1549856]
-- [infiniband] ib/mthca: remove mthca_user.h (Don Dutile) [1549856]
-- [infiniband] ib/mthca: Fix gup usage in mthca_map_user_db() (Don Dutile) [1549856]
-- [infiniband] ib/mthca: Use zeroing memory allocator than allocator/memset (Don Dutile) [1549856]
-- [infiniband] ib/ocrdma: Use zeroing memory allocator than allocator/memset (Don Dutile) [1549856]
-- [infiniband] rdma/ocrdma: Fix permissions for OCRDMA_RESET_STATS (Don Dutile) [1549856]
-- [infiniband] ib/ocrdma: Remove unneeded conversions to bool (Don Dutile) [1549856]
-- [infiniband] nes: Change accelerated flag to bool (Don Dutile) [1549856]
-- [infiniband] nes: remove unused 'timeval' struct member (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Fix usage of user response structures in ABI file (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Use zeroing memory allocator than allocator/memset (Don Dutile) [1549856]
-- [uapi] rdma/vmw_pvrdma: Remove usage of BIT() from UAPI header (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Use refcount_t instead of atomic_t (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Use more specific sizeof in kcalloc (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Clarify QP and CQ is_kernel logic (Don Dutile) [1549856]
-- [uapi] rdma/vmw_pvrdma: Add UAR SRQ macros in ABI header file (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Do not re-calculate npages (Don Dutile) [1549856]
-- [infiniband] ib/iser: Combine substrings for three messages (Don Dutile) [1549856]
-- [infiniband] ib/iser: Delete an unnecessary variable initialisation in iser_send_data_out() (Don Dutile) [1549856]
-- [infiniband] ib/iser: Delete an error message for a failed memory allocation in iser_send_data_out() (Don Dutile) [1549856]
-- [infiniband] ib/srp: Add target_can_queue login parameter (Don Dutile) [1549856]
-- [scsi] ib/srp: Add RDMA/CM support (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Move the code for parsing struct ib_cm_req_event_param (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Preparations for adding RDMA/CM support (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Don't allow reordering of commands on wait list (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Fix a race condition related to wait list processing (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Fix login-related race conditions (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Log all zero-length writes and completions (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Simplify srpt_close_session() (Don Dutile) [1549856]
-- [infiniband] rdma/srpt: Fix RCU debug build error (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Rework multi-channel support (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Use the source GID as session name (Don Dutile) [1549856]
-- [infiniband] ib/srpt: One target per port (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Add P_Key support (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Rework srpt_disconnect_ch_sync() (Don Dutile) [1549856]
-- [infiniband] rdma/srpt: Fix RCU debug build error (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Make it safe to use RCU for srpt_device.rch_list (Don Dutile) [1549856]
-- [infiniband] ib/srp: Refactor srp_send_req() (Don Dutile) [1549856]
-- [infiniband] ib/srp: Improve path record query error message (Don Dutile) [1549856]
-- [infiniband] ib/srp: Use kstrtoull() instead of simple_strtoull() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Micro-optimize I/O context state manipulation (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Inline srpt_get_cmd_state() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Introduce srpt_format_guid() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Fix ACL lookup during login (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Reduce frequency of receive failure messages (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Convert a warning into a debug message (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Use the IPv6 format for GIDs in log messages (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Verify port numbers in srpt_event_handler() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Reduce the severity level of a log message (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Rename a local variable, a member variable and a constant (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Document all structure members in ib_srpt.h (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Fix kernel-doc warnings in ib_srpt.c (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Remove an unused structure member (Don Dutile) [1549856]
-- [infiniband] ib/srp: replace custom implementation of hex2bin() (Don Dutile) [1549856]
-- [infiniband] ib/ipoib: Do not warn if IPoIB debugfs doesn't exist (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Fix for potential no-carrier state (Don Dutile) [1520300 1549856 1548474]
-- [infiniband] ib/ipoib: Update pathrec field if not valid record (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Avoid memory leak if the SA returns a different DGID (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Warn when one port fails to initialize (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Replace printk with pr_warn (Don Dutile) [1520300 1549856]
-- [rdma] ucma: Introduce safer rdma_addr_size() variants (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Check that device exists prior to accessing it (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Check that device is connected prior to access it (Don Dutile) [1549856]
-- [infiniband] rdma/rdma_cm: Fix use after free race with process_one_req (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Correct option size check using optlen (Don Dutile) [1549856]
-- [infiniband] rdma/restrack: Move restrack_clean to be symmetrical to restrack_init (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Ensure that CM_ID exists prior to access it (Don Dutile) [1549856]
-- [rdma] verbs: Remove restrack entry from XRCD structure (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Fix use-after-free access in ucma_close (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Check AF family prior resolving address (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Don't allow join attempts for unsupported AF family (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Fix access to non-initialized CM_ID object (Don Dutile) [1549856]
-- [infiniband] rdma/core: Do not use invalid destination in determining port reuse (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Check that user doesn't overflow QP state (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Limit possible option size (Don Dutile) [1549856]
-- [infiniband] ib/core: Fix possible crash to access NULL netdev (Don Dutile) [1549856]
-- [infiniband] rdma/core: Reduce poll batch for direct cq polling (Don Dutile) [1549856]
-- [infiniband] ib/core : Add null pointer check in addr_resolve (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Fix kernel panic while using XRC_TGT QP type (Don Dutile) [1549856]
-- [infiniband] rdma/restrack: don't use uaccess_kernel() (Don Dutile) [1549856]
-- [infiniband] rdma/verbs: Check existence of function prior to accessing it (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Sanitize user entered port numbers prior to access it (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Fix circular locking dependency (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Fix bad unlock balance in ib_uverbs_close_xrcd (Don Dutile) [1549856]
-- [infiniband] rdma/restrack: Increment CQ restrack object before committing (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Protect from command mask overflow (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Fix unbalanced unlock on error path for rdma_explicit_destroy (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Improve lockdep_check (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Protect from races between lookup and destroy of uobjects (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Hold the uobj write lock after allocate (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Fix possible oops with duplicate ioctl attributes (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Add ioctl support for 32bit processes (Don Dutile) [1549856]
-- [uapi] ib/uverbs: Use __aligned_u64 for uapi headers (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Fix method merging in uverbs_ioctl_merge (Don Dutile) [1549856]
-- [rdma] ib/uverbs: Use u64_to_user_ptr() not a union (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Use inline data transfer for UHW_IN (Don Dutile) [1549856]
-- [rdma] ib/uverbs: Always use the attribute size provided by the user (Don Dutile) [1549856]
-- [rdma] restrack: Remove unimplemented XRCD object (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Use the standard kConfig format for experimental (Don Dutile) [1549856]
-- [infiniband] ib: Update references to libibverbs (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid a potential OOPs for an unused optional parameter (Don Dutile) [1549856]
-- [rdma] ib/core: Map iWarp AH type to undefined in rdma_ah_find_type (Don Dutile) [1549856]
-- [infiniband] rdma/nldev: missing error code in nldev_res_get_doit() (Don Dutile) [1549856]
-- [uapi] rdma/netlink: Hide unimplemented NLDEV commands (Don Dutile) [1549856]
-- [uapi] rdma/nldev: Provide detailed QP information (Don Dutile) [1549856]
-- [uapi] rdma/nldev: Provide global resource utilization (Don Dutile) [1549856]
-- [infiniband] rdma/core: Add resource tracking for create and destroy PDs (Don Dutile) [1549856]
-- [infiniband] rdma/core: Add resource tracking for create and destroy CQs (Don Dutile) [1549856]
-- [infiniband] rdma/core: Add resource tracking for create and destroy QPs (Don Dutile) [1549856]
-- [rdma] restrack: Add general infrastructure to track RDMA resources (Don Dutile) [1549856]
-- [rdma] core: Save kernel caller name when creating PD and CQ objects (Don Dutile) [1549856]
-- [rdma] core: Use the MODNAME instead of the function name for pd callers (Don Dutile) [1549856]
-- [uapi] rdma: Move enum ib_cq_creation_flags to uapi headers (Don Dutile) [1549856]
-- [infiniband] rdma/cm: Fix access to uninitialized variable (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Use existing netif_is_bond_master function (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid SGID attributes query while converting GID from OPA to IB (Don Dutile) [1549856]
-- [infiniband] ib/umad: Fix use of unprotected device pointer (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Use an unambiguous errno for method not supported (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Update RoCE multicast routines to use net namespace (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Update cma_validate_port to honor net namespace (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Refactor to access multiple fields of rdma_dev_addr (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Check existence of netdevice during port validation (Don Dutile) [1549856]
-- [rdma] core: Simplify rdma_addr_get_sgid() to not support RoCE (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Use rdma cm API to query GID (Don Dutile) [1549856]
-- [rdma] cma: Introduce API to read GIDs for multiple transports (Don Dutile) [1549856]
-- [infiniband] ib/cq: Don't force IB_POLL_DIRECT poll context for ib_process_cq_direct (Don Dutile) [1549856]
-- [infiniband] ib/core: postpone WR initialization during queue drain (Don Dutile) [1549856]
-- [infiniband] ib/cma: use strlcpy() instead of strncpy() (Don Dutile) [1549856]
-- [rdma] core: Clarify rdma_ah_find_type (Don Dutile) [1549856]
-- [rdma] ib/core: Fix ib_wc structure size to remain in 64 bytes boundary (Don Dutile) [1549856]
-- [uapi] rdma: Mark imm_data as be32 in the verbs uapi header (Don Dutile) [1549856]
-- [infiniband] ib/core: Limit DMAC resolution to RoCE Connected QPs (Don Dutile) [1549856]
-- [infiniband] ib/core: Attempt DMAC resolution for only RoCE (Don Dutile) [1549856]
-- [infiniband] ib/core: Limit DMAC resolution to userspace QPs (Don Dutile) [1549856]
-- [infiniband] ib/core: Perform modify QP on real one (Don Dutile) [1549856]
-- [infiniband] fix sw/rdmavt/* kernel-doc notation (Don Dutile) [1549856]
-- [infiniband] fix core/fmr_pool.c kernel-doc notation (Don Dutile) [1549856]
-- [infiniband] fix core/verbs.c kernel-doc notation (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Fix rdma_cm path querying for RoCE (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Fix rdma_cm raw IB path setting for RoCE (Don Dutile) [1549856]
-- [rdma] cma, ucma: Simplify and rename rdma_set_ib_paths (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Provide a function to set RoCE path record L2 parameters (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Use the right net namespace for the rdma_cm_id (Don Dutile) [1549856]
-- [infiniband] ib/core: Increase number of char device minors (Don Dutile) [1549856]
-- [infiniband] ib/core: Remove the locking for character device bitmaps (Don Dutile) [1549856]
-- [infiniband] ib/core: Change roce_rescan_device to return void (Don Dutile) [1549856]
-- [rdma] ib/core: Introduce driver QP type (Don Dutile) [1549856]
-- [infiniband] rdma/core: Add encode/decode FDR/EDR rates (Don Dutile) [1549856]
-- [infiniband] ib/core: Fix two kernel warnings triggered by rxe registration (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Mark end of CMA ID messages (Don Dutile) [1549856]
-- [infiniband] rdma/nldev: Refactor setting the nldev handle to a common function (Don Dutile) [1549856]
-- [infiniband] rdma/core: Replace open-coded variant of put_device (Don Dutile) [1549856]
-- [infiniband] rdma/netlink: Simplify code of autoload modules (Don Dutile) [1549856]
-- [infiniband] drop unknown function from core_priv.h (Don Dutile) [1549856]
-- [infiniband] ib/core: Make sure that PSN does not overflow (Don Dutile) [1549856]
-- [infiniband] ib/core: Use rdma_cap_opa_mad to check for OPA (Don Dutile) [1549856]
-- [rdma] ib/sa: Check dlid before SA agent queries for ClassPortInfo (Don Dutile) [1549856]
-- [infiniband] remove duplicate includes (Don Dutile) [1549856]
-- [infiniband] ib/cm: Refactor to avoid setting path record software only fields (Don Dutile) [1549856]
-- [rdma] ib/core, umad, cm: Rename ib_init_ah_from_wc to ib_init_ah_attr_from_wc (Don Dutile) [1549856]
-- [rdma] ib/core, cm, cma, ipoib: Rename ib_init_ah_from_path to ib_init_ah_attr_from_path (Don Dutile) [1549856]
-- [infiniband] ib/cm: Fix sleeping while spin lock is held (Don Dutile) [1549856]
-- [infiniband] ib/cm: Handle address handle attribute init error (Don Dutile) [1549856]
-- [infiniband] ib/cm, umad: Handle av init error (Don Dutile) [1549856]
-- [rdma] ib/core, ipoib: Simplify ib_find_gid to search only for IB link layer (Don Dutile) [1549856]
-- [infiniband] rdma/core: Avoid copying ifindex twice (Don Dutile) [1549856]
-- [rdma] core, cma: Simplify rdma_translate_ip (Don Dutile) [1549856]
-- [rdma] ib/core: Removed unused function (Don Dutile) [1549856]
-- [infiniband] rdma/core: Avoid redundant memcpy in rdma_addr_find_l2_eth_by_grh (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid exporting module internal ib_find_gid_by_filter() (Don Dutile) [1549856]
-- [infiniband] ib/core: Refactor to avoid unnecessary check on GID lookup miss (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid unnecessary type cast (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Introduce and use helper functions to init work (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Avoid setting path record type twice (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Simplify netdev check (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Set default GID type as RoCE when resolving RoCE route (Don Dutile) [1549856]
-- [infiniband] ib/umem: Fix use of npages/nmap fields (Don Dutile) [1549856]
-- [infiniband] ib/cm: Add debug prints to ib_cm (Don Dutile) [1549856]
-- [infiniband] ib/core: Fix memory leak in cm_req_handler error flows (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Use correct size when writing netlink stats (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid exporting module internal function (Don Dutile) [1549856]
-- [infiniband] ib/core: Depend on IPv6 stack to resolve link local address for RoCEv2 (Don Dutile) [1549856]
-- [rdma] ib/core/cm: Fix generating a return AH for RoCEE (Don Dutile) [1549856]
-- [infiniband] rdma/iwpm: Fix uninitialized error code in iwpm_send_mapinfo() (Don Dutile) [1549856]
-- [infiniband] ib/core: Use PTR_ERR_OR_ZERO() (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Use refcount_dec_and_test to avoid warning (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Call ib_umem_release on destroy QP path (Don Dutile) [1549856]
-- [uapi] rdma/vmw_pvrdma: Add shared receive queue support (Don Dutile) [1549856]
-- [net] xprtrdma: Spread reply processing over more CPUs (Don Dutile) [1549856]
-- [net] xprtrdma: Update copyright notices (Don Dutile) [1549856]
-- [net] xprtrdma: Remove include for linux/prefetch.h (Don Dutile) [1549856]
-- [net] rpcrdma: Remove C structure definitions of XDR data items (Don Dutile) [1549856]
-- [net] xprtrdma: Put Send CQ in IB_POLL_WORKQUEUE mode (Don Dutile) [1549856]
-- [net] xprtrdma: Remove atomic send completion counting (Don Dutile) [1549856]
-- [net] xprtrdma: RPC completion should wait for Send completion (Don Dutile) [1549856]
-- [net] xprtrdma: Refactor rpcrdma_deferred_completion (Don Dutile) [1549856]
-- [net] xprtrdma: Add a field of bit flags to struct rpcrdma_req (Don Dutile) [1549856]
-- [net] xprtrdma: Add data structure to manage RDMA Send arguments (Don Dutile) [1549856]
-- [kernel] asm-generic: guard smp_store_release/load_acquire (Don Dutile) [1549856]
-- [kernel] arch: conditionally define smp_(mb,rmb,wmb) (Don Dutile) [1549856]
-- [net] xprtrdma: "Unoptimize" rpcrdma_prepare_hdr_sge() (Don Dutile) [1549856]
-- [net] xprtrdma: Change return value of rpcrdma_prepare_send_sges() (Don Dutile) [1549856]
-- [net] xprtrdma: Fix error handling in rpcrdma_prepare_msg_sges() (Don Dutile) [1549856]
-- [net] xprtrdma: Clean up SGE accounting in rpcrdma_prepare_msg_sges() (Don Dutile) [1549856]
-- [net] xprtrdma: Decode credits field in rpcrdma_reply_handler (Don Dutile) [1549856]
-- [net] xprtrdma: Invoke rpcrdma_reply_handler directly from RECV completion (Don Dutile) [1549856]
-- [net] xprtrdma: Refactor rpcrdma_reply_handler some more (Don Dutile) [1549856]
-- [net] xprtrdma: Move decoded header fields into rpcrdma_rep (Don Dutile) [1549856]
-- [net] xprtrdma: Throw away reply when version is unrecognized (Don Dutile) [1549856]
-- [net] svcrdma: Enqueue after setting XPT_CLOSE in completion handlers (Don Dutile) [1549856]
-- [net] svcrdma: Preserve CB send buffer across retransmits (Don Dutile) [1549856]
-- [net] xprtrdma: Remove ro_unmap_safe (Don Dutile) [1549856]
-- [net] xprtrdma: Use ro_unmap_sync in xprt_rdma_send_request (Don Dutile) [1549856]
-- [net] xprtrdma: Don't defer fencing an async RPC's chunks (Don Dutile) [1549856]
-- [infiniband] rdma/usnic: Instantiate data structures once (Don Dutile) [1549856]
-- [infiniband] rdma/usnic: Remove a set-but-not-used variable (Don Dutile) [1549856]
-- [infiniband] rdma/usnic: Make the compiler check declaration consistency during compilation (Don Dutile) [1549856]
-- [infiniband] ib/ocrdma_hw: remove unnecessary code in ocrdma_mbx_dealloc_lkey (Don Dutile) [1549856]
-- [infiniband] rdma/ocrdma: Remove set-but-not-used variables (Don Dutile) [1549856]
-- [infiniband] rdma/ocrdma: Suppress gcc 7 fall-through complaints (Don Dutile) [1549856]
-- [infiniband] rdma/ocrdma: Use NULL instead of 0 to represent a pointer (Don Dutile) [1549856]
-- [infiniband] ib/nes: Fix a race condition in nes_inetaddr_event() (Don Dutile) [1549856]
-- [infiniband] ib/ocrdma: pr_err() strings should end with newlines (Don Dutile) [1549856]
-- [infiniband] ib/nes: Remove set-but-not-used variables (Don Dutile) [1549856]
-- [infiniband] ib/nes: Suppress gcc 7 fall-through complaints (Don Dutile) [1549856]
-- [infiniband] ib/nes: Fix indentation (Don Dutile) [1549856]
-- [infiniband] ib/mthca: Fix indentation (Don Dutile) [1549856]
-- [infiniband] ib/rxe: don't crash, if allocation of crc algorithm failed (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: Convert timers to use timer_setup() (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Suppress gcc 7 fall-through complaints (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: put the pool on allocation failure (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: check for allocation failure on elem (Don Dutile) [1520302 1549856]
-- [infiniband] ib/srpt: Disable RDMA access by the initiator (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Ensure that modifying the use_srq configfs attribute works (Don Dutile) [1549856 1557122]
-- [infiniband] ib/srpt: Wait until channel release has finished during module unload (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Introduce srpt_disconnect_ch_sync() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Introduce helper functions for SRQ allocation and freeing (Don Dutile) [1549856 1557122]
-- [infiniband] ib/srpt: Post receive work requests after qp transition to INIT state (Don Dutile) [1549856]
-- [infiniband] ib/srp: Make CM timeout dependent on subnet timeout (Don Dutile) [1549856]
-- [infiniband] ib/srp: Cache global rkey (Don Dutile) [1549856]
-- [infiniband] ib/srp: Remove second argument of srp_destroy_qp() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Change default behavior from using SRQ to using RC (Don Dutile) [1549856 1557122]
-- [target] ib/srpt: Accept GUIDs as port names (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Report login failures only once (Don Dutile) [1549856]
-- [infiniband] ib_srpt: Convert to target_alloc_session usage (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Cache global L_Key (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Limit the send and receive queue sizes to what the HCA supports (Don Dutile) [1549856]
-- [infiniband] rdma/isert: Suppress gcc 7 fall-through complaints (Don Dutile) [1549856]
-- [infiniband] ib/ipoib: Fix lockdep issue found on ipoib_ib_dev_heavy_flush (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Restore MM behavior in case of tx_ring allocation failure (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib, iser: Consistent print format of vendor error (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Remove device when one port fails to init (Don Dutile) [1520300 1549856]
-- [infiniband] rdma/netlink: Fix locking around __ib_get_device_by_index (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Fix race condition in neigh creation (Don Dutile) [1520300 1549856]
-- [infiniband] ib/uverbs: Fix command checking as part of ib_uverbs_ex_modify_qp() (Don Dutile) [1549856]
-- [infiniband] ib/core: Init subsys if compiled to vmlinuz-core (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Make sure that PSN is not over max allowed (Don Dutile) [1549856]
-- [infiniband] ib: INFINIBAND should depend on HAS_DMA (Don Dutile) [1549856]
-- [rdma] core: Rename kernel modify_cq to better describe its usage (Don Dutile) [1549856]
-- [uapi] ib/uverbs: Add CQ moderation capability to query_device (Don Dutile) [1549856]
-- [uapi] ib/uverbs: Allow CQ moderation with modify CQ (Don Dutile) [1549856]
-- [rdma] core: Make function rdma_copy_addr return void (Don Dutile) [1549856]
-- [infiniband] rdma/core: avoid uninitialized variable warning in create_udata (Don Dutile) [1549856]
-- [rdma] ib/core: Add PCI write end padding flags for WQ and QP (Don Dutile) [1549856]
-- [rdma] umem: Avoid partial declaration of non-static function (Don Dutile) [1549856]
-- [rdma] ib/core: Fix calculation of maximum RoCE MTU (Don Dutile) [1549856]
-- [infiniband] ib/core: Fix unable to change lifespan entry for hw_counters (Don Dutile) [1549856]
-- [rdma] ib: Let ib_core resolve destination mac address (Don Dutile) [1549856]
-- [rdma] ib/core: Introduce and use rdma_create_user_ah (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Make the code in ib_uverbs_cmd_verbs() less confusing (Don Dutile) [1549856]
-- [infiniband] rdma/iwcm: Remove a set-but-not-used variable (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Avoid triggering undefined behavior (Don Dutile) [1549856]
-- [infiniband] ib/cm: Suppress gcc 7 fall-through complaints (Don Dutile) [1549856]
-- [rdma] ib/core: Fix endianness annotation in rdma_is_multicast_addr() (Don Dutile) [1549856]
-- [infiniband] ib/core: remove redundant check on prot_sg_cnt (Don Dutile) [1549856]
-- [rdma] ib/core: Simplify sa_path_set_(sd)lid() calls (Don Dutile) [1549856]
-- [infiniband] add MMU dependency for user_mem (Don Dutile) [1549856]
-- [infiniband] rdma/nes: Convert timers to use timer_setup() (Don Dutile) [1549856]
-- [kernel] timer: Prepare to change timer callback argument type (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: clean up INIT_UDATA() macro usage (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: clean up INIT_UDATA_BUF_OR_NULL usage (Don Dutile) [1549856]
-- [infiniband] ib: Move PCI dependency from root KConfig to HW's KConfigs (Don Dutile) [1549856]
-- [infiniband] ib/core: fix spelling mistake: "aceess" -> "access" (Don Dutile) [1549856]
-
-* Sun Apr 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-875.el7]
-- [thunderbolt] Add support for Intel Titan Ridge (Jarod Wilson) [1495244]
-- [infiniband] mlx5: Set the default active rate and width to QDR and 4X (Honggang Li) [1554535]
-- [netdrv] thunderbolt: Run disconnect flow asynchronously when logout is received (Jarod Wilson) [1495229]
-- [netdrv] thunderbolt: Tear down connection properly on suspend (Jarod Wilson) [1495229]
-- [netdrv] thunderbolt: Stop using zero to mean no valid DMA mapping (Jarod Wilson) [1495229]
-- [netdrv] thunderbolt: Clear finished Tx frame bus address in tbnet_tx_callback() (Jarod Wilson) [1495229]
-- [netdrv] thunderbolt: Right shifting to zero bug in tbnet_handle_packet() (Jarod Wilson) [1495229]
-- [netdrv] Add support for networking over Thunderbolt cable (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Introduce USB only (SL4) security level (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add support for preboot ACL (Jarod Wilson) [1495229]
-- [thunderbolt] Add 'boot' attribute for devices (Jarod Wilson) [1495229]
-- [thunderbolt] Move driver ready handling to struct icm (Jarod Wilson) [1495229]
-- [thunderbolt] Add constant for approval timeout (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add tb_xdomain_find_by_route() (Jarod Wilson) [1495229]
-- [thunderbolt] Add tb_switch_find_by_route() (Jarod Wilson) [1495229]
-- [thunderbolt] Add tb_switch_get() (Jarod Wilson) [1495229]
-- [thunderbolt] Correct function name in kernel-doc comment (Jarod Wilson) [1495229]
-- [thunderbolt] Factor common ICM add and update operations out (Jarod Wilson) [1495229]
-- [thunderbolt] Handle rejected Thunderbolt devices (Jarod Wilson) [1495229]
-- [thunderbolt] Wait a bit longer for ICM to authenticate the active NVM (Jarod Wilson) [1495229]
-- [thunderbolt] Wait a bit longer for root switch config space (Jarod Wilson) [1495229]
-- [thunderbolt] Do not overwrite error code when domain adding fails (Jarod Wilson) [1495229]
-- [thunderbolt] Handle connecting device in place of host properly (Jarod Wilson) [1495229]
-- [thunderbolt] Serialize PCIe tunnel creation with PCI rescan (Jarod Wilson) [1495229]
-- [thunderbolt] Resume control channel after hibernation image is created (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add function to retrieve DMA device for the ring (Jarod Wilson) [1495229]
-- [thunderbolt] Mask ring interrupt properly when polling starts (Jarod Wilson) [1495229]
-- [thunderbolt] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Jarod Wilson) [1495229]
-- [thunderbolt] Drop sequence number check from tb_xdomain_match() (Jarod Wilson) [1495229]
-- [thunderbolt] Fix a couple right shifting to zero bugs (Jarod Wilson) [1495229]
-- [thunderbolt] Initialize Thunderbolt bus earlier (Jarod Wilson) [1495229]
-- [thunderbolt] Allocate ring HopID automatically if requested (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add polling mode for rings (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Use spinlock in NHI serialization (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Use spinlock in ring serialization (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Move ring descriptor flags to thunderbolt.h (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Export ring handling functions to modules (Jarod Wilson) [1495229]
-- [thunderbolt] Add support for frame mode (Jarod Wilson) [1495229]
-- [thunderbolt] Configure interrupt throttling for all interrupts (Jarod Wilson) [1495229]
-- [thunderbolt] Add support for XDomain discovery protocol (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Move tb_switch_phy_port_from_link() to thunderbolt.h (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Move thunderbolt domain structure to thunderbolt.h (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Move enum tb_cfg_pkg_type to thunderbolt.h (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add support for XDomain properties (Jarod Wilson) [1495229]
-- [thunderbolt] Remove __packed from ICM message structures (Jarod Wilson) [1495229]
-- [kernel] byteorder: Move (cpu_to_be32, be32_to_cpu)_array() from Thunderbolt to core (Jarod Wilson) [1495229]
-- [platform] x86: intel-wmi-thunderbolt: Silence error cases (Jarod Wilson) [1495229]
-- [platform] x86: Add driver to force WMI Thunderbolt controller power status (Jarod Wilson) [1495229]
-- [documentation] thunderbolt: Add documentation how Thunderbolt bus can be used (Jarod Wilson) [1495229]
-- [netdrv] ibmvnic: Do not notify peers on parameter change resets (Desnes Augusto Nunes do Rosario) [1566205]
-- [netdrv] ibmvnic: Handle all login error conditions (Desnes Augusto Nunes do Rosario) [1566205]
-- [netdrv] e1000: Replace WARN_ONCE with netdev_WARN_ONCE (David Arcari) [1562064]
-- [netdrv] e1000: fix disabling already-disabled warning (David Arcari) [1562064]
-- [netdrv] e1000: Fix off-by-one in debug message (David Arcari) [1562064]
-- [netdrv] e1000: avoid null pointer dereference on invalid stat type (David Arcari) [1562064]
-- [netdrv] e1000: fix race condition between e1000_down() and e1000_watchdog (David Arcari) [1562064]
-- [netdrv] networking: introduce and use skb_put_data() (David Arcari) [1562064]
-- [netdrv] e1000: Omit private ndo_get_stats function (David Arcari) [1562064]
-- [netdrv] e1000: use new API ethtool_(get|set)_link_ksettings (David Arcari) [1562064]
-- [netdrv] e1000: use disable_hardirq() for e1000_netpoll() (David Arcari) [1562064]
-- [netdrv] intel: use core min/max MTU checking (David Arcari) [1562064]
-- [netdrv] e1000: call ndo_stop() instead of dev_close() when running offline selftest (David Arcari) [1562064]
-- [kernel] genirq: Provide disable_hardirq() (David Arcari) [1562064]
-- [netdrv] atlantic: fix spelling error in Kconfig file (David Arcari) [1546765]
-- [netdrv] atlantic: re-enabled mark_tech_preview (David Arcari) [1546765]
-- [netdrv] aquantia: driver version bump (David Arcari) [1546765]
-- [netdrv] aquantia: Allow live mac address changes (David Arcari) [1540028 1546765]
-- [netdrv] aquantia: Add tx clean budget and valid budget handling logic (David Arcari) [1546765]
-- [netdrv] aquantia: Change inefficient wait loop on fw data reads (David Arcari) [1546765]
-- [netdrv] aquantia: Fix a regression with reset on old firmware (David Arcari) [1546765]
-- [netdrv] aquantia: Fix hardware reset when SPI may rarely hangup (David Arcari) [1546765]
-- [netdrv] aquantia: Fix error handling in aq_pci_probe() (David Arcari) [1546765]
-- [netdrv] aquantia: make symbol hw_atl_boards static (David Arcari) [1546765]
-- [netdrv] aquantia: Fix error return code in aq_pci_probe() (David Arcari) [1546765]
-- [netdrv] aquantia: bump driver version to match aquantia internal numbering (David Arcari) [1546765]
-- [netdrv] aquantia: Report correct mediatype via ethtool (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce global AQC hardware reset sequence (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce support for new firmware on AQC cards (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce firmware ops callbacks (David Arcari) [1546765]
-- [netdrv] aquantia: Change confusing no_ff_addr to more meaningful name (David Arcari) [1546765]
-- [netdrv] aquantia: Remove create/destroy from hw ops (David Arcari) [1546765]
-- [netdrv] aquantia: Cleanup pci functions module (David Arcari) [1546765]
-- [netdrv] aquantia: Convert hw and caps structures to const static pointers (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce new AQC devices and capabilities (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce new device ids and constants (David Arcari) [1546765]
-- [netdrv] aquantia: Fix internal stats calculation on rx (David Arcari) [1546765]
-- [netdrv] aquantia: Prepend hw access functions declarations with prefix (David Arcari) [1546765]
-- [netdrv] aquantia: Fix register definitions to linux style (David Arcari) [1546765]
-- [netdrv] aquantia: Eliminate aq_nic structure abstraction (David Arcari) [1546765]
-- [netdrv] aquantia: Simplify dependencies between pci modules (David Arcari) [1546765]
-- [netdrv] aquantia: Add const qualifiers for hardware ops tables (David Arcari) [1546765]
-- [netdrv] aquantia: Remove duplicate hardware descriptors declarations (David Arcari) [1546765]
-- [netdrv] aquantia: Cleanup hardware access modules (David Arcari) [1546765]
-- [netdrv] aquantia: Cleanup status flags accesses (David Arcari) [1546765]
-- [netdrv] aquantia: Eliminate AQ_DIMOF, replace with ARRAY_SIZE (David Arcari) [1546765]
-- [netdrv] aquantia: Limit number of MSIX irqs to the number of cpus (David Arcari) [1546765]
-- [netdrv] aquantia: call set_irq_affinity_hint before free_irq (David Arcari) [1546765]
-- [netdrv] aquantia: switch to pci_alloc_irq_vectors (David Arcari) [1546765]
-- [netdrv] aquantia: atlantic: remove tech preview (David Arcari) [1546765]
-- [security] selinux: add a map permission check for mmap (Paul Moore) [1458535]
-- [security] selinux: fix bug in conditional rules handling (Paul Moore) [1518352]
-- [security] selinux: ioctl_has_perm should be static (Paul Moore) [1518352]
-- [security] selinux: extended permissions for ioctls (Paul Moore) [1518352]
-- [security] add ioctl specific auditing to lsm_audit (Paul Moore) [1518352]
-- [security] selinux: remove unnecessary pointer reassignment (Paul Moore) [1518352]
-- [security] selinux: report permissive mode in avc: denied messages (Paul Moore) [1518352]
-- [crypto] cryptd: Add cryptd_max_cpu_qlen module parameter (Bruno Eduardo de Oliveira Meneguele) [1503626]
-- [crypto] aesni: Add support for 192 & 256 bit keys to AESNI RFC4106 (Bruno Eduardo de Oliveira Meneguele) [1568167]
-- [crypto] api: Only abort operations on fatal signal (Herbert Xu) [1397353]
-- [crypto] testmgr: Enable DH/ECDH in FIPS mode (Herbert Xu) [1523367]
-- [crypto] algif_hash: Fix result clobbering in recvmsg (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif_hash: Fix NULL hash crash with shash (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif_hash - Handle NULL hashes correctly (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif_hash: wait for crypto_ahash_init() to complete (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [net] crypto: algif - add and use sock_kzfree_s() instead of memzero_explicit() (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [net] Trap attempts to call sock_kfree_s() with a NULL pointer (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif - zeroize IV buffer (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif - zeroize message digest buffer (Bruno Eduardo de Oliveira Meneguele) [1548921]
-
-* Fri Apr 20 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-874.el7]
-- [pci] cnb: Add pcim_set_mwi(), a device-managed pci_set_mwi() (Ivan Vecera) [1567972]
-- [pci] acpi: Bail early in acpi_pci_add_bus() if there is no ACPI handle (Mohammed Gamal) [1539534]
-- [acpi] processor: Set default C1 idle state description (Prarit Bhargava) [1557603]
-- [hv] vmbus: Fix a rescind issue (Eduardo Otubo) [1518498]
-- [linux] slab.h: add kmalloc_array_node() and kcalloc_node() (Ivan Vecera) [1557630]
-- [iommu] amd: Limit the IOVA page range to the specified addresses (Gary Hook) [1546889]
-- [crypto] dh - Fix double free of ctx->p (Prarit Bhargava) [1562514]
-- [crypto] dh - fix memleak in setkey (Prarit Bhargava) [1562514]
-- [tty] vt: Fix the memory leak in visual_init (Prarit Bhargava) [1562514]
-- [video] fbcon: Fix memory leak in fbcon_exit() (Prarit Bhargava) [1562514]
-- [video] fbcon: Fix memory leak in con2fb_release_oldinfo() (Prarit Bhargava) [1562514]
-- [kernel] pm / sleep: Fix memory leak in pm_vt_switch_unregister() (Prarit Bhargava) [1562514]
-- [video] Release efifb's colormap in efifb_destroy() (Prarit Bhargava) [1562514]
-- [scsi] Fix memory leaks in scsi_alloc_sdev() (Prarit Bhargava) [1564749]
-- [of] platform: Do not reallocate device_rh (Prarit Bhargava) [1564749]
-- [scsi] Fix device_rh leak in scsi_alloc_target() (Prarit Bhargava) [1564749]
-- [md] dm: remove fmode_t argument from .prepare_ioctl hook (Mike Snitzer) [1562960]
-- [md] dm: hold DM table for duration of ioctl rather than use blkdev_get (Mike Snitzer) [1562960]
-- [block] blk-mq: quiesce queue during switching io sched and updating nr_requests (Ming Lei) [1566314]
-- [block] blk-mq: only run the hardware queue if IO is pending (Ming Lei) [1566314]
-- [block] don't call blk_mq_quiesce_queue() after queue is frozen (Ming Lei) [1566314]
-- [nvme] Fix a race condition related to stopping queues (Ming Lei) [1566314]
-- [firmware] fw_cfg: write vmcoreinfo details (Marc-Andre Lureau) [1533367]
-- [kernel] crash: export paddr_vmcoreinfo_note() (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: add DMA register (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: add a public uapi header (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: handle fw_cfg_read_blob() error (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: remove inline from fw_cfg_read_blob() (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: fix sparse warnings around FW_CFG_FILE_DIR read (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: fix sparse warning reading FW_CFG_ID (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: fix sparse warnings with fw_cfg_file (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: fix sparse warnings in fw_cfg_sel_endianness() (Marc-Andre Lureau) [1533367]
-- [firmware] revert "fw_cfg: add DMA register" (Marc-Andre Lureau) [1533367]
-- [firmware] revert "fw_cfg: do DMA read operation" (Marc-Andre Lureau) [1533367]
-- [firmware] revert "fw_cfg: write vmcoreinfo details" (Marc-Andre Lureau) [1533367]
-- [powerpc] kvm: book3s pr: Allow access to unprivileged MMCR2 register (Laurent Vivier) [1464913]
-- [powerpc] System reset avoid interleaving oops using die synchronisation (Mauricio Oliveira) [1564126]
-- [powerpc] Do not send system reset request through the oops path (Mauricio Oliveira) [1564126]
-- [powerpc] crash: Remove the test for cpu_online in the IPI callback (Mauricio Oliveira) [1564126]
-- [powerpc] pseries: Restore default security feature flags on setup (Mauricio Oliveira) [1561787]
-- [powerpc] Move default security feature flags (Mauricio Oliveira) [1561787]
-- [powerpc] pseries: Fix clearing of security feature flags (Mauricio Oliveira) [1561787]
-- [powerpc] 64s: Wire up cpu_show_spectre_v2() (Mauricio Oliveira) [1561787]
-- [powerpc] 64s: Wire up cpu_show_spectre_v1() (Mauricio Oliveira) [1561787]
-- [powerpc] pseries: Use the security flags in pseries_setup_rfi_flush() (Mauricio Oliveira) [1561787]
-- [powerpc] powernv: Use the security flags in pnv_setup_rfi_flush() (Mauricio Oliveira) [1561787]
-- [powerpc] 64s: Enhance the information in cpu_show_meltdown() (Mauricio Oliveira) [1561787]
-- [powerpc] 64s: Move cpu_show_meltdown() (Mauricio Oliveira) [1561787]
-- [powerpc] powernv: Set or clear security feature flags (Mauricio Oliveira) [1561787]
-- [powerpc] pseries: Set or clear security feature flags (Mauricio Oliveira) [1561787]
-- [powerpc] Add security feature flags for Spectre/Meltdown (Mauricio Oliveira) [1561787]
-- [powerpc] pseries: Add new H_GET_CPU_CHARACTERISTICS flags (Mauricio Oliveira) [1561787]
-- [powerpc] lib: seq: Add seq_buf_printf() (Mauricio Oliveira) [1561787]
-- [powerpc] rfi-flush: Call setup_rfi_flush() after LPM migration (Mauricio Oliveira) [1561785]
-- [powerpc] rfi-flush: Differentiate enabled and patched flush types (Mauricio Oliveira) [1561785]
-- [powerpc] rfi-flush: Always enable fallback flush on pseries (Mauricio Oliveira) [1561785]
-- [powerpc] rfi-flush: Make it possible to call setup_rfi_flush() again (Mauricio Oliveira) [1561785]
-- [powerpc] rfi-flush: Move the logic to avoid a redo into the debugfs code (Mauricio Oliveira) [1561785]
-- [powerpc] msi: Fix race condition in tearing down MSI interrupts (David Milburn) [1549680]
-- [x86] platform/uv: Fix critical UV MMR address error (Frank Ramsay) [1562945]
-
-* Thu Apr 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-873.el7]
-- [mmc] core: Export API to allow hosts to get the card address (Gopal Tiwari) [1549495]
-- [mmc] sdio: Fix sdio wait busy implement limitation (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Control the delay between tuning commands (Gopal Tiwari) [1549495]
-- [mmc] core: add proper be32 annotation (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Export sdhci_enable_sdio_irq() from sdhci.c (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Export sdhci_start_signal_voltage_switch() in sdhci.c (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Export sdhci_set_ios() from sdhci.c (Gopal Tiwari) [1549495]
-- [mmc] core: refactor mmc_request_done() (Gopal Tiwari) [1549495]
-- [mmc] core: refactor asynchronous request finalization (Gopal Tiwari) [1549495]
-- [mmc] core: move some code in mmc_start_areq() (Gopal Tiwari) [1549495]
-- [mmc] core: Factor out mrq preparation from mmc_start_request() (Gopal Tiwari) [1549495]
-- [mmc] core: Factor out debug prints from mmc_start_request() (Gopal Tiwari) [1549495]
-- [mmc] block: Factor out data preparation (Gopal Tiwari) [1549495]
-- [mmc] block: Change mmc_apply_rel_rw() to get block address from the request (Gopal Tiwari) [1549495]
-- [mmc] block: Disable Command Queue while RPMB is used (Gopal Tiwari) [1549495]
-- [mmc] mmc_test: Disable Command Queue while mmc_test is used (Gopal Tiwari) [1549495]
-- [mmc] Add functions to enable / disable the Command Queue (Gopal Tiwari) [1549495]
-- [mmc] queue: Share mmc request array between partitions (Gopal Tiwari) [1549495]
-- [mmc] block: Introduce queue semantics (Gopal Tiwari) [1549495]
-- [mmc] block: Use local var for mqrq_cur (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Set MMC_CAP_AGGRESSIVE_PM for BYT-related Intel controllers (Gopal Tiwari) [1549495]
-- [mmc] sdhci-acpi: Set MMC_CAP_AGGRESSIVE_PM for BYT-related Intel controllers (Gopal Tiwari) [1549495]
-- [mmc] sdhci: clarify the get_timeout_clock callback (Gopal Tiwari) [1549495]
-- [mmc] sdio: improve mmc_io_rw_extended (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Add runtime suspend/resume callbacks (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Let suspend/resume callbacks replace default callbacks (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Conditionally compile pm sleep functions (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Do not use suspend/resume callbacks with runtime pm (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Let devices define how to add the host (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Add CQE support (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Factor out sdhci_set_default_irqs (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Add sdhci_cleanup_host (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Get rid of 'extern' in header file (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Export sdhci_dumpregs (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Improve register dump print format (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Use sdhci_readl() not readl() in sdhci_dumpregs() (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Add response register to register dump (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Improve debug print format (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Reduce spin lock usage in sdhci_execute_tuning (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Do not use spin lock in set_ios paths (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Let drivers decide whether to use mmc_retune_needed() with pm (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Optimize delay loops (Gopal Tiwari) [1549495]
-- [mmc] core: simplify return code (Gopal Tiwari) [1549495]
-- [mmc] core: guard dereference of optional parameter (Gopal Tiwari) [1549495]
-- [mmc] sdio: fix alignment issue in struct sdio_func (Gopal Tiwari) [1549495]
-- [mmc] remove the discard_zeroes_data flag (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Disable runtime pm when the sdio_irq is enabled (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Do not disable interrupts in sdhci_intel_set_power (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Do not disable interrupts while waiting for clock (Gopal Tiwari) [1549495]
-- [mmc] ushc: fix NULL-deref at probe (Gopal Tiwari) [1549495]
-- [mmc] core: mmc_blk_rw_cmd_err - remove unused variable (Gopal Tiwari) [1549495]
-- [mmc] block: Fix cmd error reset failure path (Gopal Tiwari) [1549495]
-- [mmc] block: Fix is_waiting_last_req set incorrectly (Gopal Tiwari) [1549495]
-- [mmc] core: Fix access to HS400-ES devices (Gopal Tiwari) [1549495]
-- [mmc] core: add mmc prefix for blk_fixups (Gopal Tiwari) [1549495]
-- [mmc] core: move all quirks together into quirks.h (Gopal Tiwari) [1549495]
-- [mmc] core: improve the quirks for sdio devices (Gopal Tiwari) [1549495]
-- [mmc] core: move some sdio IDs out of quirks file (Gopal Tiwari) [1549495]
-- [mmc] core: change quirks.c to be a header file (Gopal Tiwari) [1549495]
-- [mmc] Adding AUTO_BKOPS_EN bit set for Auto BKOPS support (Gopal Tiwari) [1549495]
-- [mmc] MAN_BKOPS_EN inverse debug message logic (Gopal Tiwari) [1549495]
-- [mmc] core: start to break apart mmc_start_areq() (Gopal Tiwari) [1549495]
-- [mmc] block: respect bool returned from blk_end_request() (Gopal Tiwari) [1549495]
-- [mmc] block: return errorcode from mmc_sd_num_wr_blocks() (Gopal Tiwari) [1549495]
-- [mmc] queue: turn queue flags into bools (Gopal Tiwari) [1549495]
-- [mmc] block: rename mmc_active to areq (Gopal Tiwari) [1549495]
-- [mmc] block: refactor mmc_blk_rw_try_restart() (Gopal Tiwari) [1549495]
-- [mmc] core: rename mmc_start_req() to *areq() (Gopal Tiwari) [1549495]
-- [mmc] block: rename rqc and req (Gopal Tiwari) [1549495]
-- [mmc] block: inline the command abort and start new goto:s (Gopal Tiwari) [1549495]
-- [mmc] core: switch to ida_simple_ functions in block.c (Gopal Tiwari) [1549495]
-- [mmc] core/mmci: restore pre/post_req behaviour (Gopal Tiwari) [1549495]
-- [mmc] core: fix error path in mmc_host_alloc (Gopal Tiwari) [1549495]
-- [mmc] core: simplify ida handling (Gopal Tiwari) [1549495]
-- [mmc] core: Extend mmc_of_parse() to check for mmc-ddr-3_3v (Gopal Tiwari) [1549495]
-- [mmc] core: Invent MMC_CAP_3_3V_DDR (Gopal Tiwari) [1549495]
-- [mmc] core: Rename __mmc_set_signal_voltage() to mmc_set_signal_voltage() (Gopal Tiwari) [1549495]
-- [mmc] core: Clarify usage of mmc_set_signal_voltage() (Gopal Tiwari) [1549495]
-- [mmc] core: Remove redundant code in mmc_set_signal_voltage() (Gopal Tiwari) [1549495]
-- [mmc] block: stop passing around pointless return values (Gopal Tiwari) [1549495]
-- [mmc] block: introduce new_areq and old_areq (Gopal Tiwari) [1549495]
-- [mmc] block: inline command abortions (Gopal Tiwari) [1549495]
-- [mmc] block: do not assign mq_rq when aborting command (Gopal Tiwari) [1549495]
-- [mmc] block: break out mmc_blk_rw_start_new() (Gopal Tiwari) [1549495]
-- [mmc] block: break out mmc_blk_rw_cmd_abort() (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Clear SDHCI_HS400_TUNING flag after platform_execute_tuning (Gopal Tiwari) [1549495]
-- [mmc] sdhci-acpi: support deferred probe (Gopal Tiwari) [1549495]
-- [mmc] core: Move public functions from host.h to private headers (Gopal Tiwari) [1549495]
-- [mmc] core: Move public functions from card.h to private headers (Gopal Tiwari) [1549495]
-- [mmc] vub300: Don't use mmc_card_present() when validating for inserted card (Gopal Tiwari) [1549495]
-- [mmc] core: Move public functions from core.h to private headers (Gopal Tiwari) [1549495]
-- [mmc] core: First step in cleaning up private mmc header files (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Add support for HS200 tuning mode on AMD, eMMC-4.5.1 (Gopal Tiwari) [1549495]
-- [mmc] sdio: don't use rocr to check if the card could support UHS mode (Gopal Tiwari) [1549495]
-- [mmc] sdio: Factor out retry init card helper function (Gopal Tiwari) [1549495]
-- [mmc] core: Use kmalloc_array() in mmc_alloc_sg() (Gopal Tiwari) [1549495]
-- [mmc] slot-gpio: Don't override con_id when request descriptor (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Remove unused member cd_con_id (Gopal Tiwari) [1549495]
-- [mmc] host: Include interrupt.h in mmc host drivers that depends on it (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Include leds.h (Gopal Tiwari) [1549495]
-- [mmc] sdhci-cadence: Include mmc.h (Gopal Tiwari) [1549495]
-- [mmc] use empty initializer list to zero-clear structures (Gopal Tiwari) [1549495]
-- [mmc] block: Replace "goto retry" by a proper do / while loop (Gopal Tiwari) [1549495]
-- [mmc] block: Avoid uninitialized warning in mmc_blk_issue_discard_rq() (Gopal Tiwari) [1549495]
-- [mmc] core: Export device lifetime information through sysfs (Gopal Tiwari) [1549495]
-
-* Thu Apr 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-872.el7]
-- [tools] cpupower: Fix cpupower working when cpu0 is offline (Gustavo Duarte) [1545301]
-- [tools] perf vendor events powerpc: Update POWER9 events (Gustavo Duarte) [1544754]
-- [tools] perf test powerpc: Fix 'Object code reading' test (Steve Best) [1544705]
-- [tools] perf test: Add test case for PERF_SAMPLE_PHYS_ADDR (Jiri Olsa) [1545923]
-- [tools] perf script: Support physical address (Jiri Olsa) [1545923]
-- [tools] perf mem: Support physical address (Jiri Olsa) [1545923]
-- [tools] perf sort: Add sort option for physical address (Jiri Olsa) [1545923]
-- [tools] perf tools: Support new sample type for physical address (Jiri Olsa) [1545923]
-- [kernel] perf/core, x86: Add PERF_SAMPLE_PHYS_ADDR (Jiri Olsa) [1545923]
-- [tools] perf symbols: Accept zero as the kernel base address (Jiri Olsa) [1532861]
-- [tools] perf annotate: Fix broken arrow at row 0 connecting jmp instruction to its target (Jiri Olsa) [1532861]
-- [tools] perf evsel: State in the default event name if attr.exclude_kernel is set (Jiri Olsa) [1532861]
-- [tools] perf evsel: Fix attr.exclude_kernel setting for default cycles:p (Jiri Olsa) [1532861]
-- [tools] perf unwind: Do not fail due to missing unwind support (Jiri Olsa) [1532861]
-- [tools] perf evsel: Set attr.exclude_kernel when probing max attr.precise_ip (Jiri Olsa) [1532861]
-- [tools] perf auxtrace: Add CPU filter support (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Do not use TSC packets for calculating CPU cycles to TSC (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Update documentation to include new ptwrite and power events (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add example script for power events and PTWRITE (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Synthesize new power and "ptwrite" events (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Move code in intel_pt_synth_events() to simplify attr setting (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Factor out intel_pt_set_event_name() (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Tidy messages into called function intel_pt_synth_event() (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Tidy Intel PT evsel lookup into separate function (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Join needlessly wrapped lines (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Remove unused instructions_sample_period (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Factor out common code synthesizing event samples (Jiri Olsa) [1532861]
-- [tools] perf script: Add synthesized Intel PT power and ptwrite events (Jiri Olsa) [1532861]
-- [tools] perf script: Add 'synth' field for synthesized event payloads (Jiri Olsa) [1532861]
-- [tools] perf auxtrace: Add itrace option to output power events (Jiri Olsa) [1532861]
-- [tools] perf auxtrace: Add itrace option to output ptwrite events (Jiri Olsa) [1532861]
-- [tools] tools Add byte-swapping macros to kernel.h (Jiri Olsa) [1532861]
-- [tools] perf script: Add 'synth' event type for synthesized events (Jiri Olsa) [1532861]
-- [tools] x86/insn: perf tools: Add new ptwrite instruction (Jiri Olsa) [1532861]
-- [tools] perf jit: fix typo: "incalid" -> "invalid" (Jiri Olsa) [1532861]
-- [tools] perf tools: Kill die() (Jiri Olsa) [1532861]
-- [tools] perf config: Do not die when parsing u64 or int config values (Jiri Olsa) [1532861]
-- [tools] perf tools: Replace error() with pr_err() (Jiri Olsa) [1532861]
-- [tools] perf tools: Remove warning() (Jiri Olsa) [1532861]
-- [tools] perf event-parse: Use pr_warning() (Jiri Olsa) [1532861]
-- [tools] perf config: Use pr_warning() (Jiri Olsa) [1532861]
-- [tools] perf help: Use pr_warning() (Jiri Olsa) [1532861]
-- [tools] perf help: Elliminate dup code for reporting (Jiri Olsa) [1532861]
-- [tools] perf help: Introduce exec_failed() to avoid code duplication (Jiri Olsa) [1532861]
-- [tools] perf script: Fix message because field list option is -F not -f (Jiri Olsa) [1532861]
-- [tools] perf tools: Fix message because cpu list option is -C not -c (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Fix transactions_sample_type (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Remove redundant initial_skip checks (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add decoder support for CBR events (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add reserved byte to CBR packet payload (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add decoder support for ptwrite and power event packets (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add documentation for new config terms (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add default config for pass-through branch enable (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Allow decoding with branch tracing disabled (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add missing __fallthrough (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Clear FUP flag on error (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Use FUP always when scanning for an IP (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Ensure never to set 'last_ip' when packet 'count' is zero (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Fix last_ip usage (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Ensure IP is zero when state is INTEL_PT_STATE_NO_IP (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Fix missing stack clear (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Improve sample timestamp (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Move decoder error setting into one condition (Jiri Olsa) [1532861]
-- [tools] perf tools: Remove unused _ALL_SOURCE define (Jiri Olsa) [1532861]
-- [tools] perf evsel: Adopt find_process() (Jiri Olsa) [1532861]
-- [tools] perf config: Refactor the code using 'ret' variable in cmd_config() (Jiri Olsa) [1532861]
-- [tools] perf config: Check error cases of (show_spec, set)_config() (Jiri Olsa) [1532861]
-- [tools] perf ftrace: Add -D option for depth filter (Jiri Olsa) [1532861]
-- [tools] perf ftrace: Add option for function filtering (Jiri Olsa) [1532861]
-- [tools] perf ftrace: Move setup_pager before opening trace_pipe (Jiri Olsa) [1532861]
-- [tools] perf ftrace: Show error message when fails to set ftrace files (Jiri Olsa) [1532861]
-- [tools] perf script: Support -F brstackoff, dso (Jiri Olsa) [1532861]
-- [tools] perf script: Support -F brstack, dso and brstacksym, dso (Jiri Olsa) [1532861]
-- [tools] perf annotate: Return arch from symbol__disassemble() and save it in browser (Jiri Olsa) [1532861]
-- [tools] perf intel-pt/bts: Remove unused SAMPLE_SIZE defines and bts priv array (Jiri Olsa) [1532861]
-- [tools] Adopt __aligned from kernel sources (Jiri Olsa) [1532861]
-- [tools] Adopt __packed from kernel sources (Jiri Olsa) [1532861]
-- [tools] Adopt noinline from kernel sources (Jiri Olsa) [1532861]
-- [tools] perf tools: Use __maybe_unused consistently (Jiri Olsa) [1532861]
-- [tools] Adopt __scanf from kernel sources (Jiri Olsa) [1532861]
-- [tools] Adopt __printf from kernel sources (Jiri Olsa) [1532861]
-- [tools] Adopt __noreturn from kernel sources (Jiri Olsa) [1532861]
-- [tools] perf script: Allow adding and removing fields (Jiri Olsa) [1532861]
-- [tools] perf config: Invert an if statement to reduce nesting in cmd_config() (Jiri Olsa) [1532861]
-- [tools] perf annotate browser: Display titles in left frame (Jiri Olsa) [1532861]
-- [tools] perf report: Remove unnecessary check in annotate_browser_write() (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix potential double-fetch bug (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix group (cpu, task) validation (Jiri Olsa) [1532861]
-- [x86] Constify attribute_group structures (Jiri Olsa) [1532861]
-- [x86] Mark various structures and functions as 'static' (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix time on IOC_ENABLE (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix missing marker for skx_uncore_cha_extra_regs (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix SKX CHA event extra regs (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Remove invalid Skylake server CHA filter field (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix Skylake server CHA LLC_LOOKUP event umask (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix Skylake server PCU PMU event format (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix Skylake UPI PMU event masks (Jiri Olsa) [1532861]
-- [x86] perf/x86: Shut up false-positive -Wmaybe-uninitialized warning (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel: Add proper condition to run sched_task callbacks (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix locking for children siblings group read (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix scheduling regression of pinned groups (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel: Fix debug_store reset field for freq events (Jiri Olsa) [1532861]
-- [x86] perf: Drop EXPORT of perf_check_microcode (Jiri Olsa) [1532861]
-- [kernel] perf/core: Remove unused perf_cgroup_event_cgrp_time() function (Jiri Olsa) [1532861]
-- [kernel] perf/core: Correct event creation with PERF_FORMAT_GROUP (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix error handling in perf_event_alloc() (Jiri Olsa) [1532861]
-- [kernel] perf/core: Remove some dead code (Jiri Olsa) [1532861]
-
-* Mon Apr 16 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-871.el7]
-- [block] virtio_blk: print capacity at probe time (Stefan Hajnoczi) [1530625]
-- [block] virtio_blk: fix incorrect message when disk is resized (Stefan Hajnoczi) [1530625]
-- [ata] libata: Fix memory leak of device_rh struct (Prarit Bhargava) [1563011]
-- [block] blk-mq: Only register debugfs attributes for blk-mq queues (Ming Lei) [1563601]
-- [x86] spec_ctrl: disable IBRS in idle, part 2 (Josh Poimboeuf) [1558668]
-- [x86] intel_rdt/cqm: Prevent use after free (Prarit Bhargava) [1527073]
-- [x86] platform/uv: Fix GAM Range Table entries less than 1GB (Frank Ramsay) [1549252]
-- [x86] kvm: lapic: Fixup LDR on load in x2apic ("Dr. David Alan Gilbert") [1502591]
-- [x86] kvm: lapic: Split out x2apic ldr calculation ("Dr. David Alan Gilbert") [1502591]
-- [x86] powercap: rapl: Add support for Cannon Lake (David Arcari) [1456702]
-- [x86] cpu: Add Cannonlake to Intel family (David Arcari) [1456702]
-- [fs] pNFS/flexfiles: Ensure we have enough buffer for layoutreturn (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Remove a redundant parameter in ff_layout_encode_ioerr() (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Support sending layoutstats in layoutreturn (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Minor refactoring before adding iostats to layoutreturn (Scott Mayhew) [1540784]
-- [fs] NFS: Fix up read of mirror stats (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Clean up layoutstats (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Refactor encoding of the layoutreturn payload (Scott Mayhew) [1540784]
-- [fs] pNFS: Add a layoutreturn callback to performa layout-private setup (Scott Mayhew) [1540784]
-- [fs] pNFS: Allow layout drivers to manage private data in struct nfs4_layoutreturn (Scott Mayhew) [1540784]
-- [fs] NFSv4: Add a generic structure for managing layout-private information (Scott Mayhew) [1540784]
-- [fs] pnfs/blocklayout: RHEL remove tech preview warning for SCSI layout (Benjamin Coddington) [1563319]
-- [fs] pnfs/blocklayout: Add module alias for LAYOUT4_SCSI (Benjamin Coddington) [1563319]
-- [fs] pnfs/blocklayout: Ensure disk address in block device map (Benjamin Coddington) [1446141]
-- [fs] pnfs/blocklayout: pnfs_block_dev_map uses bytes, not sectors (Benjamin Coddington) [1446141]
-- [fs] pnfs/blocklayout: handle transient devices (Benjamin Coddington) [1446141]
-- [fs] pnfs/blocklayout: set PNFS_LAYOUTRETURN_ON_ERROR (Benjamin Coddington) [1446141]
-- [fs] vfs: Remove incorrect debugging WARN in prepend_path (Frank Sorenson) [1481732]
-- [fs] xfs: fix transaction allocation deadlock in IO path (Eric Sandeen) [1551111]
-- [fs] fs: Teach path_connected to handle nfs filesystems with multiple roots ("Eric W. Biederman") [1560817]
-- [fs] gfs2: Dirty source inode during rename (Andreas Grunbacher) [1505548]
-- [fs] cifs: don't log STATUS_NOT_FOUND errors for DFS (Leif Sahlberg) [1530304]
-- [fs] cifs: dump IPC tcon in debug proc file (Leif Sahlberg) [1530304]
-- [fs] cifs: use tcon_ipc instead of use_ipc parameter of SMB2_ioctl (Leif Sahlberg) [1530304]
-- [fs] cifs: make IPC a regular tcon (Leif Sahlberg) [1530304]
-- [fs] gfs2: Ignore trunc_dealloc requests that require more height (Robert S Peterson) [1541698]
-- [fs] gfs2: clear journal live bit in gfs2_log_flush (Robert S Peterson) [1541698]
-- [fs] eventpoll: fix uninitialized variable in epoll_ctl (Paul Moore) [1553256]
-- [net] off by one in inet6_pton() (Ivan Vecera) [1551750]
-- [net] vti6: Keep set MTU on link creation or change, validate it (Stefano Brivio) [1557268]
-- [net] ipv4: raise IP_MAX_MTU to theoretical limit (Stefano Brivio) [1557268]
-- [net] vti6: Properly adjust vti6 MTU from MTU of lower device (Stefano Brivio) [1557265]
-- [net] ip6_vti: adjust vti mtu according to mtu of lower device (Stefano Brivio) [1557265]
-- [net] vti4: Don't override MTU passed on link creation via IFLA_MTU (Stefano Brivio) [1557259]
-- [net] ip_tunnel: Clamp MTU to bounds on new link (Stefano Brivio) [1557259]
-- [net] xfrm: policy: check policy direction value (Bruno Eduardo de Oliveira Meneguele) [1479421] {CVE-2017-11600}
-- [net] ipv4: Allow unprivileged users to use per net sysctls (Florian Westphal) [1533405]
-- [net] ethtool: add ethtool_intersect_link_masks (Ivan Vecera) [1560668]
-- [net] ethtool: Add macro to clear a link mode setting (Ivan Vecera) [1560668]
-- [net] sock_diag: request _diag module only when the family or proto has been registered (Xin Long) [1544898]
-- [net] docs: segmentation-offloads.txt: add SCTP info (Xin Long) [1554767]
-- [net] gso: validate gso_type in GSO handlers (Xin Long) [1554767]
-- [net] sctp: Fix a big endian bug in sctp_diag_dump() (Xin Long) [1554767]
-- [net] sctp: add pr_debug for tracking asocs not found (Xin Long) [1554767]
-- [net] sctp: fix dst refcnt leak in sctp_v4_get_dst (Xin Long) [1554767]
-- [net] sctp: fix dst refcnt leak in sctp_v6_get_dst() (Xin Long) [1554767]
-- [net] sctp: do not allow the v4 socket to bind a v4mapped v6 address (Xin Long) [1554767]
-- [net] sctp: return error if the asoc has been peeled off in sctp_wait_for_sndbuf (Xin Long) [1554767]
-- [net] sctp: do not abandon the other frags in unsent outq if one msg has outstanding frags (Xin Long) [1554767]
-- [net] sctp: abandon the whole msg if one part of a fragmented message is abandoned (Xin Long) [1554767]
-- [net] sctp: only update outstanding_bytes for transmitted queue when doing prsctp_prune (Xin Long) [1554767]
-- [net] sctp: set frag_point in sctp_setsockopt_maxseg correctly (Xin Long) [1554767]
-- [net] sctp: Always set scope_id in sctp_inet6_skb_msgname (Xin Long) [1554767]
-- [net] sctp: use the right sk after waking up from wait_buf sleep (Xin Long) [1554767]
-- [net] sctp: do not free asoc when it is already dead in sctp_sendmsg (Xin Long) [1554767]
-- [net] sctp: fix a type cast warnings that causes a_rwnd gets the wrong value (Xin Long) [1554767]
-- [net] sctp: full support for ipv6 ip_nonlocal_bind & IP_FREEBIND (Xin Long) [1554767]
-- [net] sctp: add the missing sock_owned_by_user check in sctp_icmp_redirect (Xin Long) [1554767]
-- [net] sctp: do not mark sk dumped when inet_sctp_diag_fill returns err (Xin Long) [1554767]
-- [net] sctp: fix an use-after-free issue in sctp_sock_dump (Xin Long) [1554767]
-- [net] sctp: potential read out of bounds in sctp_ulpevent_type_enabled() (Xin Long) [1554767]
-- [net] sctp: fully initialize the IPv6 address in sctp_v6_to_addr() (Xin Long) [1554767]
-- [net] sctp: fix the check for _sctp_walk_params and _sctp_walk_errors (Xin Long) [1554767]
-- [net] sctp: don't dereference ptr before leaving _sctp_walk_(params, errors) (Xin Long) [1554767]
-- [net] sctp: set the value of flowi6_oif to sk_bound_dev_if to make sctp_v6_get_dst to find the correct route entry (Xin Long) [1554767]
-- [net] sctp: Add peeloff-flags socket option (Xin Long) [1554767]
-- [net] sctp: use get_unused_fd_flags(0) instead of get_unused_fd() (Xin Long) [1554767]
-- [net] sctp: adjust ssthresh when transport is idle (Xin Long) [1554767]
-- [net] sctp: adjust cwnd increase in Congestion Avoidance phase (Xin Long) [1554767]
-- [net] sctp: allow increasing cwnd regardless of ctsn moving or not (Xin Long) [1554767]
-- [net] sctp: update order of adjustments of partial_bytes_acked and cwnd (Xin Long) [1554767]
-- [net] sctp: uncork the old asoc before changing to the new one (Xin Long) [1554767]
-- [net] sctp: fix recursive locking warning in sctp_do_peeloff (Xin Long) [1554767]
-- [net] sctp: listen on the sock only when it's state is listening or closed (Xin Long) [1554767]
-- [net] sctp: out_qlen should be updated when pruning unsent queue (Xin Long) [1554767]
-- [net] netfilter: nf_nat_sctp: fix ICMP packet to be dropped accidently (Xin Long) [1554767]
-- [net] sctp: flush out queue once assoc state falls into SHUTDOWN_PENDING (Xin Long) [1554767]
-- [net] avoid skb_warn_bad_offload false positives on UFO (Davide Caratti) [1544920]
-- [net] skb_needs_check() accepts CHECKSUM_NONE for tx (Davide Caratti) [1544920]
-- [net] reduce skb_warn_bad_offload() noise (Davide Caratti) [1544920]
-- [net] remove open-coded skb_cow_head (Davide Caratti) [1544920]
-- [net] netfilter: nf_tables: fix inconsistent element expiration calculation (Florian Westphal) [1542802]
-- [net] netfilter: nft_dynset: fix element timeout for HZ != 1000 (Florian Westphal) [1542802]
-- [net] No line break on netdev_WARN* formatting (David Arcari) [1554418]
-- [net] Fix netdev_WARN_ONCE macro (David Arcari) [1554418]
-- [net] Introduce netdev_*_once functions (David Arcari) [1554418]
-- [net] print net_device reg_state in netdev_* unless it's registered (David Arcari) [1554418]
-- [net] ipv4: initialize flowi4_flags before calling fib_lookup() (Sabrina Dubroca) [1529263]
-- [net] ipv4: initialize flow flags in input path (Sabrina Dubroca) [1529263]
-- [net] sctp: verify size of a new chunk in _sctp_make_chunk() (Stefano Brivio) [1551906] {CVE-2018-5803}
-- [net] arp: flush arp cache on IFF_NOARP change (Sabrina Dubroca) [1544440]
-- [net] openvswitch: do not propagate headroom updates to internal port (Paolo Abeni) [1356643]
-- [net] fib_semantics: Don't match route with mismatching tclassid (Stefano Brivio) [1544949]
-
-* Fri Apr 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-870.el7]
-- [thunderbolt] tb: fix use after free in tb_activate_pcie_devices (Jeremy McNicoll) [1547702]
-- [netdrv] igb: add VF trust infrastructure (Corinna Vinschen) [1528195]
-- [netdrv] xen-netfront: transmit fully GSO-sized packets (Mohammed Gamal) [1554622]
-- [netdrv] hv_netvsc: Fix the TX/RX buffer default sizes (Mohammed Gamal) [1519187]
-- [netdrv] e1000e: Fix link check race condition (David Arcari) [1539749]
-- [netdrv] revert e1000e: Separate signaling for link check/link up (David Arcari) [1539749]
-- [netdrv] e1000e: allocate ring descriptors with dma_zalloc_coherent (David Arcari) [1518111]
-- [netdrv] e1000e: Fix check_for_link return value with autoneg off (David Arcari) [1518111]
-- [netdrv] e1000e: Avoid missed interrupts following ICR read (David Arcari) [1518111]
-- [netdrv] e1000e: Fix queue interrupt re-raising in Other interrupt (David Arcari) [1518111]
-- [netdrv] partial revert "e1000e: Avoid receiver overrun interrupt bursts" (David Arcari) [1518111]
-- [netdrv] e1000e: Remove Other from EIAC (David Arcari) [1518111]
-- [netdrv] e1000e: Avoid receiver overrun interrupt bursts (David Arcari) [1518111]
-- [netdrv] e1000e: Alert the user that C-states will be disabled by enabling jumbo frames (David Arcari) [1518111]
-- [netdrv] e1000e: Set HTHRESH when PTHRESH is used (David Arcari) [1518111]
-- [netdrv] e1000e: Cleanup to fix checkpatch missing blank lines (David Arcari) [1518111]
-- [netdrv] ibmvnic: Disable irqs before exiting reset from closed state (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Potential NULL dereference in clean_one_tx_pool() (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Remove unused TSO resources in TX pool structure (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update TX pool cleaning routine (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Improve TX buffer accounting (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update TX and TX completion routines (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update TX pool initialization routine (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update release TX pool routine (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update and clean up reset TX pool routine (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Generalize TX pool structure (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Fix reset return from closed state (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Fix recent errata commit (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Handle TSO backing device errata (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Pad small packets to minimum MTU size (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Account for VLAN header length in TX buffers (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Account for VLAN tag in L2 Header descriptor (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Do not disable device during failover or partition migration (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Reorganize device close (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Clean up device close (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Do not attempt to login if RX or TX queues are not allocated (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Report queue stops and restarts as debug output (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Harden TX/RX pool cleaning (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Allocate statistics buffers during probe (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Fix TX descriptor tracking again (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Split counters for scrq/pools/napi (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Fix TX descriptor tracking (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Correct goto target for tx irq initialization failure (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Allocate max queues stats buffers (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Make napi usage dynamic (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Free and re-allocate scrqs when tx/rx scrqs change (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Move active sub-crq count settings (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Rename active queue count variables (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Check for NULL skb's in NAPI poll routine (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Keep track of supplementary TX descriptors (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] qed: Free reserved MR tid (Harish Patil) [1554217]
-- [netdrv] qed: Free RoCE ILT Memory on rmmod qedr (Harish Patil) [1554217]
-- [netdrv] tg3: Add Macronix NVRAM support (Jonathan Toppins) [1526123]
-- [netdrv] tg3: Enable PHY reset in MTU change path for 5720 (Jonathan Toppins) [1526123]
-- [netdrv] tg3: Add workaround to restrict 5762 MRRS to 2048 (Jonathan Toppins) [1526123]
-- [netdrv] tg3: Update copyright (Jonathan Toppins) [1526123]
-- [netdrv] vmxnet3: use correct flag to indicate LRO feature (Neil Horman) [1558685]
-- [netdrv] vmxnet3: avoid xmit reset due to a race in vmxnet3 (Neil Horman) [1558685]
-- [netdrv] vmxnet3: prepare for version 3 changes (Neil Horman) [1532362]
-- [netdrv] vmxnet3: increase default rx ring sizes (Neil Horman) [1532362]
-- [netdrv] vmxnet3: avoid format strint overflow warning (Neil Horman) [1532362]
-- [netdrv] vmxnet3: add receive data ring support (Neil Horman) [1532362]
-- [netdrv] vmxnet3: allow variable length transmit data ring buffer (Neil Horman) [1532362]
-- [netdrv] nfp: implement firmware flashing (Pablo Cascon) [1545768]
-- [netdrv] nfp: extend NSP infrastructure for configurable timeouts (Pablo Cascon) [1545768]
-- [netdrv] nfp: make use of MAC reinit (Pablo Cascon) [1545768]
-
-* Thu Apr 12 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-869.el7]
-- [platform] x86: thinkpad_acpi: suppress warning about palm detection (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: Accept flat mode for type 4 multi mode status (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: Implement tablet mode using GMMS method$ (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: add mapping for new hotkeys (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: guard generic hotkey case (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: Adding new hotkey ID for Lenovo thinkpad (Benjamin Berg) [1557298]
-- [platform] x86: dell-wmi: Add an event created by Dell Latitude 5495 (Jarod Wilson) [1526317]
-- [platform] x86: dell-*wmi*: Relay failed initial probe to dependent drivers (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi-descriptor: check if memory was allocated (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi-descriptor: split WMI descriptor into it's own driver (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: don't check length returned (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: clean up wmi descriptor check (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: increase severity of some failures (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Do not match on descriptor GUID modalias (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Update dell_wmi_check_descriptor_buffer() to new model (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Fix driver interface version query (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Convert to the WMI bus infrastructure (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Add a better description for "stealth mode" (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Add a comment explaining the 0xb2 magic number (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: remove sparse_keymap_free() calls (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi-aio: remove sparse_keymap_free() calls (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Add events created by Dell Rugged 2-in-1s (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Adjust wifi catcher to emit KEY_WLAN (Jarod Wilson) [1526317]
-- [platform] x86: wmi: Fix misuse of vsprintf extension pULL (Jarod Wilson) [1562200]
-- [platform] x86: wmi: fix off-by-one write in wmi_dev_probe() (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Call acpi_wmi_init() later (Jarod Wilson) [1562200]
-- [platform] x86: wmi: release mutex on module acquistion failure (Jarod Wilson) [1562200]
-- [platform] x86: dell-smbios-wmi: introduce userspace interface (Jarod Wilson) [1562200]
-- [platform] x86: dell-smbios: Prefix class/select with cmd_ (Jarod Wilson) [1562200]
-- [platform] x86: wmi: create userspace interface for drivers (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Don't allow drivers to get each other's GUID (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Add new method wmidev_evaluate_method (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Destroy on cleanup rather than unregister (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Cleanup exit routine in reverse order of init (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Sort include list (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Fix check for method instance number (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Fix error handling in acpi_wmi_init() (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Fix printing info about WDG structure (Jarod Wilson) [1562200]
-- [platform] x86: wmi*: Add recent copyright statements (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Require query for data blocks, rename writable to setable (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Add an interface for subdrivers to access sibling devices (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Bind the platform device, not the ACPI node (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Add a new interface to read block data (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Incorporate acpi_install_notify_handler (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Instantiate all devices before adding them (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Probe data objects for read and write capabilities (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Split devices into types and add basic sysfs attributes (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Fix error handling when creating devices (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Turn WMI into a bus driver (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Track wmi devices per ACPI device (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Clean up acpi_wmi_add (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Pass the acpi_device through to parse_wdg (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Drop "Mapper (un)loaded" messages (Jarod Wilson) [1562200]
-- [platform] platform/x86/wmi.c: use generic UUID library (Jarod Wilson) [1562200]
-- [platform] wmi: Remove private pUL implementation (Jarod Wilson) [1562200]
-- [platform] wmi: Use bool function return values of true/false not 1/0 (Jarod Wilson) [1562200]
-- [platform] x86/wmi: delete unused wmi_data_lock mutex causing gcc warning (Jarod Wilson) [1562200]
-- [platform] wmi: Remove unnecessary null test (Jarod Wilson) [1562200]
-- [kernel] init.h: Update initcall_sync variants to fix build errors (Jarod Wilson) [1562200]
-- [platform] acpi: Clean up inclusions of ACPI header files (Jarod Wilson) [1562200]
-- [platform] x86, wmi fix modalias_show return values (Jarod Wilson) [1562200]
-- [platform] wmi: convert acpi_get_handle() to acpi_has_method() (Jarod Wilson) [1562200]
-- [platform] wmi: convert acpi_evaluate_object() to acpi_execute_simple_method() (Jarod Wilson) [1562200]
-- [platform] wmi: parse_wdg() should return kernel error codes (Jarod Wilson) [1562200]
-- [platform] x86: wmi: convert class code to use dev_groups (Jarod Wilson) [1562200]
-- [pci] Add device disconnected state (Myron Stowe) [1517629]
-- [pci] pciehp: Do not clear Presence Detect Changed during initialization (Myron Stowe) [1517629]
-- [pci] Distribute available resources to hotplug-capable bridges (Myron Stowe) [1517629]
-- [pci] Distribute available buses to hotplug-capable bridges (Myron Stowe) [1517629]
-- [pci] Do not allocate more buses than available in parent (Myron Stowe) [1517629]
-- [pci] Open-code the two pass loop when scanning bridges (Myron Stowe) [1517629]
-- [pci] Move pci_hp_add_bridge() to pci/probe.c (Myron Stowe) [1517629]
-- [pci] Add for_each_pci_bridge() helper (Myron Stowe) [1517629]
-- [char] ipmi_si: fix crash on parisc (Tony Camuso) [1541533]
-- [char] ipmi_si: Fix oops with PCI devices (Tony Camuso) [1541533]
-- [char] ipmi: Stop timers before cleaning up the module (Tony Camuso) [1541533]
-- [char] ipmi: get rid of pointless access_ok() (Tony Camuso) [1541533]
-- [char] ipmi_si: Delete an error message for a failed memory allocation in try_smi_init() (Tony Camuso) [1541533]
-- [char] ipmi_si: fix memory leak on new_smi (Tony Camuso) [1541533]
-- [char] ipmi: remove redundant initialization of bmc (Tony Camuso) [1541533]
-- [char] ipmi: pr_err() strings should end with newlines (Tony Camuso) [1541533]
-- [char] ipmi: Clean up some print operations (Tony Camuso) [1541533]
-- [char] ipmi: Make the DMI probe into a generic platform probe (Tony Camuso) [1541533]
-- [char] ipmi: Make the IPMI proc interface configurable (Tony Camuso) [1541533]
-- [char] ipmi_ssif: Add device attrs for the things in proc (Tony Camuso) [1541533]
-- [char] ipmi_si: Add device attrs for the things in proc (Tony Camuso) [1541533]
-- [char] driver core: add device_(add|remove)_group() helpers (Tony Camuso) [1541533]
-- [char] driver core: make device_(add|remove)_groups() public (Tony Camuso) [1541533]
-- [char] ipmi_si: remove ipmi_smi_alloc() function (Tony Camuso) [1541533]
-- [char] ipmi_si: Move port and mem I/O handling to their own files (Tony Camuso) [1541533]
-- [char] ipmi_si: Get rid of unused spacing and port fields (Tony Camuso) [1541533]
-- [char] ipmi_si: Move PARISC handling to another file (Tony Camuso) [1541533]
-- [char] ipmi_si: Move PCI setup to another file (Tony Camuso) [1541533]
-- [char] ipmi_si: Move platform device handling to another file (Tony Camuso) [1541533]
-- [char] ipmi_si: Move hardcode handling to a separate file (Tony Camuso) [1541533]
-- [char] ipmi_si: Move the hotmod handling to another file (Tony Camuso) [1541533]
-- [char] ipmi_si: Change ipmi_si_add_smi() to take just I/O info (Tony Camuso) [1541533]
-- [char] ipmi_si: Move io setup into io structure (Tony Camuso) [1541533]
-- [char] ipmi_si: Move irq setup handling into the io struct (Tony Camuso) [1541533]
-- [char] ipmi_si: Move some platform data into the io structure (Tony Camuso) [1541533]
-- [char] ipmi_si: Rename function to add smi, make it global (Tony Camuso) [1541533]
-- [char] ipmi: Convert DMI handling over to a platform device (Tony Camuso) [1541533]
-- [char] ipmi: Create a platform device for a DMI-specified IPMI interface (Tony Camuso) [1541533]
-- [char] ipmi: Convert IPMI GUID over to Linux guid_t (Tony Camuso) [1541533]
-- [char] ipmi: Rescan channel list on BMC changes (Tony Camuso) [1541533]
-- [char] ipmi: Move lun and address out of channel struct (Tony Camuso) [1541533]
-- [char] ipmi: Retry BMC registration on a failure (Tony Camuso) [1541533]
-- [char] ipmi: Rework device id and guid handling to catch changing BMCs (Tony Camuso) [1541533]
-- [char] ipmi: Use a temporary BMC for an interface (Tony Camuso) [1541533]
-- [char] ipmi: Dynamically fetch GUID periodically (Tony Camuso) [1541533]
-- [char] ipmi: Always fetch the guid through ipmi_get_device_id() (Tony Camuso) [1541533]
-- [char] ipmi: allow dynamic BMC version information (Tony Camuso) [1541533]
-- [char] ipmi: Don't use BMC product/dev ids in the BMC name (Tony Camuso) [1541533]
-- [char] ipmi: Make ipmi_demangle_device_id more generic (Tony Camuso) [1541533]
-- [char] ipmi: Add a reference from BMC devices to their interfaces (Tony Camuso) [1541533]
-- [char] ipmi: Get the device id through a function (Tony Camuso) [1541533]
-- [char] ipmi: Fix printing the BMC guid (Tony Camuso) [1541533]
-- [char] ipmi: Rework BMC registration (Tony Camuso) [1541533]
-- [char] ipmi: Fix issues with BMC refcounts (Tony Camuso) [1541533]
-- [char] ipmi: Check that the device type is BMC when scanning device (Tony Camuso) [1541533]
-- [char] ipmi: Move bmc find routing to below bmc device type (Tony Camuso) [1541533]
-- [char] ipmi: Fix getting the GUID data (Tony Camuso) [1541533]
-- [char] ipmi: make ipmi_poweroff_handler const (Tony Camuso) [1541533]
-- [char] ipmi: make ipmi_usr_hndl const (Tony Camuso) [1541533]
-- [char] ipmi: Make IPMI panic strings always available (Tony Camuso) [1541533]
-- [char] ipmi: fix unsigned long underflow (Tony Camuso) [1541533]
-- [char] ipmi: eliminate misleading print info when being probed via ACPI (Tony Camuso) [1541533]
-
-* Tue Apr 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-868.el7]
-- [fs] ext4: Fix data exposure after failed AIO DIO (Carlos Maiolino) [1347126]
-- [fs] direct-io: always call ->end_io if non-NULL (Carlos Maiolino) [1347126]
-- [fs] nfsd: special case truncates some more ("J. Bruce Fields") [1554627]
-- [fs] nfsd: minor nfsd_setattr cleanup ("J. Bruce Fields") [1554627]
-- [fs] Add missing structs and defines from recent SMB3.1.1 documentation (Leif Sahlberg) [1555078]
-- [fs] Fix encryption labels and lengths for SMB3.1.1 (Leif Sahlberg) [1555078]
-- [fs] smb3: Don't ignore O_SYNC/O_DSYNC and O_DIRECT flags (Leif Sahlberg) [1555078]
-- [fs] Update session and share information displayed for debugging SMB2/SMB3 (Leif Sahlberg) [1555078]
-- [fs] smb3: Warn user if trying to sign connection that authenticated as guest (Leif Sahlberg) [1555078]
-- [fs] smb3: Fix endian warning (Leif Sahlberg) [1555078]
-- [fs] Fix SMB3.1.1 guest authentication to Samba (Leif Sahlberg) [1555078]
-- [fs] smb3: Enable encryption for SMB3.1.1 (Leif Sahlberg) [1555078]
-- [fs] cifs: Clean up unused variables in smb2pdu.c (Leif Sahlberg) [1555076]
-- [fs] cifs: Display SMB2 error codes in the hex format (Leif Sahlberg) [1555076]
-- [fs] cifs: set oparms.create_options rather than or'ing in CREATE_OPEN_BACKUP_INTENT (Leif Sahlberg) [1555076]
-- [fs] cifs: Do not modify mid entry after submitting I/O in cifs_call_async (Leif Sahlberg) [1555076]
-- [fs] cifs: add SFM mapping for 0x01-0x1F (Leif Sahlberg) [1555076]
-- [fs] cifs: hide unused functions (Leif Sahlberg) [1555076]
-- [fs] cifs: set mapping error when page writeback fails in writepage or launder_pages (Leif Sahlberg) [1555076]
-- [fs] smb3: Add support for multidialect negotiate (SMB2.1 and later) (Leif Sahlberg) [1471950]
-- [fs] Fix warning messages when mounting to older servers (Leif Sahlberg) [1471950]
-- [fs] Improve security, move default dialect to SMB3 from old CIFS (Leif Sahlberg) [1471950]
-- [fs] Remove ifdef since SMB3 (and later) now STRONGLY preferred (Leif Sahlberg) [1471950]
-- [fs] cifs: add CONFIG_CIFS_DEBUG_KEYS to dump encryption keys (Leif Sahlberg) [1471950]
-- [fs] ext4: fix null pointer dereference on sbi (Jeff Moyer) [1526252]
-- [fs] dax: fix FS_DAX=n BLOCK=y compilation (Jeff Moyer) [1526252]
-- [fs] ext4: perform dax_device lookup at mount (Jeff Moyer) [1526252]
-- [fs] xfs: perform dax_device lookup at mount (Jeff Moyer) [1526252]
-- [fs] dax: introduce a fs_dax_get_by_bdev() helper (Jeff Moyer) [1526252]
-- [fs] dax, xfs, ext4: compile out iomap-dax paths in the FS_DAX=n case (Jeff Moyer) [1526252]
-- [fs] remove the pmem_dax_ops->flush abstraction (Jeff Moyer) [1471712]
-- [fs] dax, libnvdimm: remove wb_cache_pmem() indirection (Jeff Moyer) [1471712]
-- [fs] dax: replace clear_pmem() with open coded memset + dax_ops->flush (Jeff Moyer) [1471712]
-- [fs] dax: convert to dax_flush() (Jeff Moyer) [1471712]
-- [fs] libnvdimm, pmem: export a cache control attribute (Jeff Moyer) [1471712]
-- [fs] dm: add ->flush() dax operation support (Jeff Moyer) [1471712]
-- [fs] nfsd: remove blocked locks on client teardown (Scott Mayhew) [1504058]
-- [fs] xfs: Properly retry failed dquot items in case of error during buffer writeback (Carlos Maiolino) [1559410]
-- [fs] gfs2: fix flock panic issue (Robert S Peterson) [1551852]
-- [fs] gfs2: Prevent stopping kthreads twice in gfs2_make_fs_ro (Andreas Grunbacher) [1538344]
-- [fs] gfs2: Fix and clean up (GET,SET)FLAGS ioctl (Andreas Grunbacher) [1505875]
-- [nvme-fc] correct hang in nvme_ns_remove() (Ewan Milne) [1549232]
-- [nvme-fc] fix rogue admin cmds stalling teardown (Ewan Milne) [1549232]
-- [nvme-loop] check if queue is ready in queue_rq (Ewan Milne) [1549232]
-- [nvme-fc] check if queue is ready in queue_rq (Ewan Milne) [1549232]
-- [nvme-fabrics] introduce init command check for a queue that is not alive (Ewan Milne) [1549232]
-- [nvme-rdma] fix possible hang when issuing commands during ctrl removal (Ewan Milne) [1549232]
-- [nvme-rdma] fix merge error (Ewan Milne) [1549232]
-- [nvme-pci] quiesce/unquiesce admin_q instead of start/stop its hw queues (Ewan Milne) [1549232]
-- [nvme-loop] quiesce/unquiesce admin_q instead of start/stop its hw queues (Ewan Milne) [1549232]
-- [nvme-fc] quiesce/unquiesce admin_q instead of start/stop its hw queues (Ewan Milne) [1549232]
-- [nvme-rdma] quiesce/unquiesce admin_q instead of start/stop its hw queues (Ewan Milne) [1549232]
-- [blk-mq] Make it safe to quiesce and unquiesce from an interrupt handler (Ewan Milne) [1549232]
-- [blk-mq] clarify dispatch may not be drained/blocked by stopping queue (Ewan Milne) [1549232]
-- [blk-mq] don't stop queue for quiescing (Ewan Milne) [1549232]
-- [blk-mq] update comments on blk_mq_quiesce_queue() (Ewan Milne) [1549232]
-- [blk-mq] use QUEUE_FLAG_QUIESCED to quiesce queue (Ewan Milne) [1549232]
-- [blk-mq] use the introduced blk_mq_unquiesce_queue() (Ewan Milne) [1549232]
-- [blk-mq] introduce blk_mq_unquiesce_queue (Ewan Milne) [1549232]
-- [blk-mq] introduce blk_mq_quiesce_queue_nowait() (Ewan Milne) [1549232]
-- [blk-mq] move blk_mq_quiesce_queue() into include/linux/blk-mq.h (Ewan Milne) [1549232]
-- [scsi] lpfc: Fix regression error message displayed on boot (Dick Kennedy) [1550900]
-- [scsi] mpt3sas: Bump mpt3sas driver version to v16.100.01.00 (Tomas Henzl) [1545041]
-- [scsi] mpt3sas: Do not use 32-bit atomic request descriptor for Ventura controllers (Tomas Henzl) [1545041]
-- [scsi] megaraid_sas: driver version 07.702.06.00-rh3 (Tomas Henzl) [1544697]
-- [scsi] megaraid_sas: Do not use 32-bit atomic request descriptor for Ventura controllers (Tomas Henzl) [1544697]
-
-* Tue Apr 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-867.el7]
-- [net] ipv4: avoid unused variable warning for sysctl (Sabrina Dubroca) [1541250]
-- [net] ipv4: don't allow setting net.ipv4.route.min_pmtu below 68 (Sabrina Dubroca) [1541250]
-- [net] l2tp: make datapath resilient to packet loss when sequence numbers enabled (Davide Caratti) [1527799]
-- [net] l2tp: make datapath sequence number support RFC-compliant (Davide Caratti) [1527799]
-- [net] l2tp: do data sequence number handling in a separate func (Davide Caratti) [1527799]
-- [net] ipv4: Do not cache routing failures due to disabled forwarding (Lorenzo Bianconi) [1520244]
-- [net] ipv4: removed redundant conditional (Lorenzo Bianconi) [1520244]
-- [net] sit: fix IFLA_MTU ignored on NEWLINK (Xin Long) [1548318]
-- [net] ip6_tunnel: fix IFLA_MTU ignored on NEWLINK (Xin Long) [1549440]
-- [net] ip6_gre: process toobig in a better way (Xin Long) [1523075]
-- [net] ip6_gre: add the process for redirect in ip6gre_err (Xin Long) [1523075]
-- [net] ip6_gre: only increase err_count for some certain type icmpv6 in ip6gre_err (Xin Long) [1523075]
-- [net] ip6_gre: fix ip6gre_err() invalid reads (Xin Long) [1523075]
-- [net] ip6_tunnel: clean up ip4ip6 and ip6ip6's err_handlers (Xin Long) [1523077]
-- [net] ip6_tunnel: process toobig in a better way (Xin Long) [1523077]
-- [net] ip6_tunnel: add the process for redirect in ip6_tnl_err (Xin Long) [1523077]
-- [net] ip6_gre: init dev->mtu and dev->hard_header_len correctly (Stefano Brivio) [1548317]
-- [net] netfilter: nft_reject: restrict to INPUT/FORWARD/OUTPUT (Davide Caratti) [1549967]
-- [net] route: also update fnhe_genid when updating a route cache (Xin Long) [1523073]
-- [net] route: update fnhe_expires for redirect when the fnhe exists (Xin Long) [1523073]
-- [net] sctp: use right member as the param of list_for_each_entry (Xin Long) [1483445]
-- [net] sctp: reset owner sk for data chunks on out queues when migrating a sock (Xin Long) [1483445]
-- [net] gro: avoid reorders (Ivan Vecera) [1554456]
-- [net] Clarify dev_weight documentation for LRO and GRO_HW (Ivan Vecera) [1554456]
-- [net] Introduce NETIF_F_GRO_HW (Ivan Vecera) [1554456]
-- [net] mii, smsc: Make mii_ethtool_get_link_ksettings and smc_netdev_get_ecmd return void (Ivan Vecera) [1554965]
-- [net] mii: report 0 for unknown lp_advertising (Ivan Vecera) [1554965]
-- [net] mii: add generic function to support ksetting support (Ivan Vecera) [1554965]
-- [net] xfrm: fix stack access out of bounds with CONFIG_XFRM_SUB_POLICY (Sabrina Dubroca) [1551382]
-- [net] xfrm: xfrm_policy: silence compiler warning (Sabrina Dubroca) [1551382]
-- [net] xfrm: xfrm_policy: fix inline not at beginning of declaration (Sabrina Dubroca) [1551382]
-- [net] utils: generic inet_pton_with_scope helper (Ivan Vecera) [1551750]
-- [lib] kobject: Export kobj_ns_grab_current() and kobj_ns_drop() (Ivan Vecera) [1551750]
-- [lib] kobject: move EXPORT_SYMBOL() macros next to corresponding definitions (Ivan Vecera) [1551750]
-- [net] sctp: do not peel off an assoc from one netns to another one (Xin Long) [1520256]
-- [net] sctp: do not pr_err for the duplicated node in transport rhlist (Xin Long) [1541893]
-
-* Thu Apr 05 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-866.el7]
-- [net] ipsec: Fix aborted xfrm policy dump crash (Bruno Eduardo de Oliveira Meneguele) [1517290] {CVE-2017-16939}
-- [net] Mark TC HW offloading as Tech Preview (Ivan Vecera) [1503123]
-- [net] netfilter: ebtables: fix erroneous reject of last rule (Florian Westphal) [1552370] {CVE-2018-1068}
-- [net] netfilter: ebtables: CONFIG_COMPAT: don't trust userland offsets (Florian Westphal) [1552370] {CVE-2018-1068}
-- [net] netfilter: bridge: ebt_among: add more missing match size checks (Florian Westphal) [1552370] {CVE-2018-1068}
-- [net] netfilter: bridge: ebt_among: add missing match size checks (Florian Westphal) [1552370] {CVE-2018-1068}
-- [block] loop: fix concurrent lo_open/lo_release (Joe Lawrence) [1541228] {CVE-2018-5344}
-- [iscsi-target] Fix panic when adding second TCP connection to iSCSI session (Maurizio Lombardi) [1544670]
-- [md] dm: fix dropped return code from dm_get_bdev_for_ioctl (Mike Snitzer) [1562962]
-- [x86] kexec/64: Clear control page after PGD init (Waiman Long) [1540061]
-- [x86] pti: Rework the UEFI data corruption fix (Waiman Long) [1540061]
-
-* Tue Apr 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-865.el7]
-- [gpu] drm/i915/glk: IPC linetime watermark workaround for GLK (Lyude Paul) [1548651]
-- [gpu] drm/i915/cfl: Remove alpha support protection (Rob Clark) [1464911]
-- [gpu] drm/i915/cnl: Map VBT DDC Pin to BSpec DDC Pin (Rob Clark) [1464911]
-- [gpu] drm/i915: Add retries for LSPCON detection (Rob Clark) [1464911]
-- [gpu] drm/i915: Don't give up waiting on INVALID_MODE (Rob Clark) [1464911]
-- [netdrv] i40e: fix incorrect UP-TC mapping (Stefan Assmann) [1558159]
-- [pci] hv: Use effective affinity mask (Vitaly Kuznetsov) [1555239]
-- [nvme] pci: Fix EEH failure on ppc (Mauricio Oliveira) [1558499]
-- [iommu] amd: Add NULL sanity check for struct irq_2_irte.ir_data (Suravee Suthikulpanit) [1542697]
-
-* Fri Mar 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-864.el7]
-- [sound] hda: Fix a wrong FIXUP for alc289 on Dell machines (Jaroslav Kysela) [1548969]
-- [sound] hda: Fix headset mic detection problem for two Dell machines (Jaroslav Kysela) [1548969]
-- [sound] alsa: x86: Fix potential crash at error path (Jaroslav Kysela) [1551742]
-- [sound] alsa: x86: Fix missing spinlock and mutex initializations (Jaroslav Kysela) [1551742]
-- [sound] alsa: x86: hdmi: Add single_port option for compatible behavior (Jaroslav Kysela) [1551742]
-- [sound] alsa: x86: fix error return code in hdmi_lpe_audio_probe() (Jaroslav Kysela) [1551742]
-- [hid] wacom: Fix reporting of touch toggle (WACOM_HID_WD_MUTE_DEVICE) events (Benjamin Tissoires) [1551776]
-- [hid] wacom: generic: Send BTN_STYLUS3 when both barrel switches are set (Benjamin Tissoires) [1551783]
-- [hid] wacom: generic: Recognize WACOM_HID_WD_PEN as a type of pen collection (Benjamin Tissoires) [1551776]
-- [crypto] chelsio: Fix src buffer dma length (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: Move DMA un/mapping to chcr from lld cxgb4 driver (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: Remove unused parameter (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: Remove allocation of sg list to implement 2K limit of dsgl header (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: introduce __skb_put_zero() (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: make skb_put & friends return void pointers (Arjun Vynipadath) [1548047]
-- [infiniband] rdma/bnxt_re: Avoid Hard lockup during error CQE processing (Selvin Xavier) [1549453]
-- [infiniband] rdma/bnxt_re: Add helper functions to handle async FW events (Selvin Xavier) [1549453]
-- [infiniband] rdma/bnxt_re: Synchronize destroy_qp with poll_cq (Selvin Xavier) [1538833]
-- [infiniband] rdma/bnxt_re: Avoid system hang during device (Selvin Xavier) [1547353]
-- [infiniband] rdma/bnxt_re: Fix system crash during load/unload (Selvin Xavier) [1547353]
-- [netdrv] i40e: Close client on suspend and restore client MSIx on resume (Stefan Assmann) [1538847]
-- [scsi] csiostor: add support for 32 bit port capabilities (Arjun Vynipadath) [1526163]
-- [netdrv] cxgb4/cxgbvf: Handle 32-bit fw port capabilities (Arjun Vynipadath) [1526163]
-- [netdrv] cxgb4vf: define get_fecparam ethtool callback (Arjun Vynipadath) [1526163]
-- [netdrv] cxgb4: ethtool forward error correction management support (Arjun Vynipadath) [1526163]
-- [netdrv] cxgb4: core hardware/firmware support for Forward Error Correction on a link (Arjun Vynipadath) [1526163]
-
-* Fri Mar 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-863.el7]
-- [fs] nfs: Fix unstable write completion (Scott Mayhew) [1544647]
-- [md] support to split big bio (Ming Lei) [1557434]
-- [block] introduce bio_split2() and bio_pair2_release() (Ming Lei) [1557434]
-- [nvme] fixup nvme_sysfs_delete() (David Milburn) [1543716 1451772 1440470]
-- [nvme] rdma: Use mr pool (David Milburn) [1547273]
-- [nvme] rdma: Check remotely invalidated rkey matches our expected rkey (David Milburn) [1547273]
-- [nvme] rdma: wait for local invalidation before completing a request (David Milburn) [1547273]
-- [nvme] rdma: don't complete requests before a send work request has completed (David Milburn) [1547273]
-- [nvme] rdma: don't suppress send completions (David Milburn) [1547273]
-- [xen] fix booting ballooned down hvm guest (Vitaly Kuznetsov) [1529437]
-- [powerpc] tm: Flush TM only if CPU has TM feature (David Gibson) [1544676] {CVE-2018-1091}
-- [powerpc] powernv: Support firmware disable of RFI flush (Mauricio Oliveira) [1553927]
-- [powerpc] pseries: Support firmware disable of RFI flush (Mauricio Oliveira) [1553927]
-- [powerpc] pseries: Add H_GET_CPU_CHARACTERISTICS flags & wrapper (Mauricio Oliveira) [1553927]
-- [x86] smpboot: Fix uncore_pci_remove() indexing bug when hot-removing a physical CPU (Prarit Bhargava) [1527731]
-- [x86] kvm: Fix device passthrough when SME is active (Suravee Suthikulpanit) [1557911]
-- [x86] apic: Set up through-local-APIC mode on the boot CPU if 'noapic' specified (Baoquan He) [1526411]
-- [x86] apic: Remove the (now) unused disable_IO_APIC() function (Baoquan He) [1521003]
-- [x86] apic: Fix restoring boot IRQ mode in reboot and kexec/kdump (Baoquan He) [1521003]
-- [x86] apic: Split disable_IO_APIC() into two functions to fix CONFIG_KEXEC_JUMP=y (Baoquan He) [1521003]
-- [x86] apic: Split out restore_boot_irq_mode() from disable_IO_APIC() (Baoquan He) [1521003]
-- [x86] tsc: Fix erroneous TSC rate on Skylake Xeon (Prarit Bhargava) [1466058]
-- [x86] tsc: Print tsc_khz, when it differs from cpu_khz (Prarit Bhargava) [1466058]
-- [x86] tsc: Future-proof native_calibrate_tsc() (Prarit Bhargava) [1466058]
-
-* Wed Mar 21 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-862.el7]
-- [netdrv] i40e: Fix attach VF to VM issue (Stefan Assmann) [1528123]
-- [netdrv] ixgbevf: Add check for ixgbe_mbox_api_13 to ixgbevf_probe when setting max_mtu (Ken Cox) [1556696]
-- [md] dm btree: fix serious bug in btree_split_beneath() (Mike Snitzer) [1557849]
-- [x86] pti: Disable PTI user page table update in EFI virtual mode (Waiman Long) [1540061]
-
-* Wed Mar 14 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-861.el7]
-- [netdrv] tg3: prevent scheduling while atomic splat (Jonathan Toppins) [1554590]
-- [nvme] validate admin queue before unquiesce (David Milburn) [1549733]
-
-* Tue Mar 06 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-860.el7]
-- [acpi] sbshc: remove raw pointer from printk() message (Baoquan He) [1547009] {CVE-2018-5750}
-- [fs] gfs2: fixes to "implement iomap for block_map" (Andreas Grunbacher) [1542594]
-- [x86] kvm: svm: disable virtual GIF and VMLOAD/VMSAVE (Paolo Bonzini) [1552090]
-
-* Mon Mar 05 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-859.el7]
-- [media] v4l2-compat-ioctl32.c: refactor compat ioctl32 logic fixup (Jarod Wilson) [1548430] {CVE-2017-13166}
-- [kernel] futex: Prevent overflow by strengthen input validation (Joe Lawrence) [1547585] {CVE-2018-6927}
-- [fs] Revert dcache_readdir back to ->readdir() ("Eric W. Biederman") [1525541]
-- [md] dm-raid: fix incorrect sync_ratio when degraded (Mike Snitzer) [1547979]
-- [mm] page_alloc: fix memmap_init_zone pageblock alignment (Daniel Vacek) [1525121]
-- [mm] revert kvmalloc: stress the vmalloc path in the debugging kernel (Jeff Moyer) [1550094]
-- [powerpc] 64s: Allow control of RFI flush via debugfs (Mauricio Oliveira) [1543067]
-- [powerpc] 64s: Improve RFI L1-D cache flush fallback (Mauricio Oliveira) [1543067]
-- [powerpc] 64s: Wire up cpu_show_meltdown() (Mauricio Oliveira) [1543067]
-- [x86] kvm: vmx: Cache IA32_DEBUGCTL in memory (Paolo Bonzini) [1537379]
-- [x86] spec_ctrl: avoid rmb() on full retpoline kernels (Paolo Bonzini) [1537379]
-- [x86] spec_ctrl: replace boot_cpu_has with a static key for IBRS checks (Paolo Bonzini) [1537379]
-- [x86] spec_ctrl: actually use static key for retpolines (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: optimize IBRS handling at vmenter/vmexit (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: mark RDMSR path as unlikely (Paolo Bonzini) [1537379]
-- [x86] kvm: use native_read_msr to read SPEC_CTRL (Paolo Bonzini) [1537379]
-- [x86] kvm/nvmx: Set the CPU_BASED_USE_MSR_BITMAPS if we have a valid L02 MSR bitmap (Paolo Bonzini) [1537379]
-- [x86] nvmx: Properly set spec_ctrl and pred_cmd before merging MSRs (Paolo Bonzini) [1537379]
-- [x86] kvm/vmx: Allow direct access to MSR_IA32_SPEC_CTRL (Paolo Bonzini) [1537379]
-- [x86] kvm: Add IBPB support (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: make MSR bitmaps per-VCPU (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: Do not disable intercepts for BNDCFGS (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: introduce alloc_loaded_vmcs (Paolo Bonzini) [1537379]
-- [x86] kvm: nvmx: Eliminate vmcs02 pool (Paolo Bonzini) [1537379]
-- [x86] kvm: nvmx: single function for switching between vmcs (Paolo Bonzini) [1537379]
-- [x86] kvm: Update the reverse_cpuid list to include CPUID_7_EDX (Paolo Bonzini) [1537379]
-- [x86] cpuid: Fix up "virtual" IBRS/IBPB/STIBP feature bits on Intel (Paolo Bonzini) [1537379]
-- [x86] cpufeatures: Clean up Spectre v2 related CPUID flags (Paolo Bonzini) [1537379]
-- [x86] cpufeatures: Add Intel feature bits for Speculation Control (Paolo Bonzini) [1537379]
-- [x86] cpufeatures: Add AMD feature bits for Speculation Control (Paolo Bonzini) [1537379]
-- [x86] cpufeatures: Add CPUID_7_EDX CPUID leaf (Paolo Bonzini) [1537379]
-- [x86] cpu: Fill in feature word 13, CPUID_8000_0008_EBX (Paolo Bonzini) [1537379]
-
-* Tue Feb 27 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-858.el7]
-- [tools] revert perf: Fix swap for samples with raw data (Jiri Olsa) [1458228]
-- [netdrv] ibmvnic: Fix early release of login buffer (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Clean RX pool buffers during device close (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Free RX socket buffer in case of adapter error (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Fix NAPI structures memory leak (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Fix login buffer memory leaks (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Wait until reset is complete to set carrier on (Desnes Augusto Nunes do Rosario) [1545578]
-- [block] disable runtime-pm for blk-mq (Ming Lei) [1548269]
-- [mm] revert memcontrol: fix cgroup creation failure after many small jobs (Aristeu Rozanski) [1548593 1517028]
-- [mm] revert cgroup: kill css_id (Aristeu Rozanski) [1548593 1517028]
-
-* Mon Feb 26 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-857.el7]
-- [media] v4l2-compat-ioctl32.c: refactor compat ioctl32 logic (Jarod Wilson) [1548430] {CVE-2017-13166}
-- [sound] alsa: seq: Fix use-after-free at creating a port (CVE-2017-15265) (Jaroslav Kysela) [1503381] {CVE-2017-15265}
-- [gpu] drm/radeon: insist on 32-bit DMA for Cedar on PPC64/PPC64LE (Rob Clark) [1546022]
-- [edac] disable only ghes_edac by default (Aristeu Rozanski) [1543078]
-- [edac] ghes: Model a single, logical memory controller (Aristeu Rozanski) [1543078]
-- [fs] cifs: release cifs root_cred after exit_cifs (Leif Sahlberg) [1525874]
-- [fs] gfs2: Fix fallocate chunk size (Andreas Grunbacher) [1545329]
-- [fs] gfs2: Fixes to "Implement iomap for block_map" (Andreas Grunbacher) [1542594]
-- [fs] gfs2: Clean up (lookup,fillup)_metapath (Andreas Grunbacher) [1542594]
-- [fs] iomap: warn on zero-length mappings (Andreas Grunbacher) [1542594]
-- [md] raid0: remove blank line printk from dump_zones() (John Pittman) [1534272]
-- [md] dm: use blkdev_get rather than bdgrab when issuing pass-through ioctl (Mike Snitzer) [1513037]
-- [mm] kvmalloc: stress the vmalloc path in the debugging kernel (Mikulas Patocka) [1523567]
-- [mm] fs: rework do_invalidatepage (Eric Sandeen) [1546079]
-- [net] netfilter: fix NULL ptr dereference in nf_send_reset() (Paolo Abeni) [1546148]
-
-* Sun Feb 25 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-856.el7]
-- [infiniband] ipoib: Add ipoib_enhanced module parameter (Slava Shwartsman) [1533013]
-- [netdrv] ibmvnic: Remove skb->protocol checks in ibmvnic_xmit (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: Reset long term map ID counter (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: queue reset when CRQ gets closed during reset (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: Ensure that buffers are NULL after free (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: Fix rx queue cleanup for non-fatal resets (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: fix empty firmware version and errors cleanup (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: fix firmware version when no firmware level has been provided by the VIOS server (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] mlx5e: Fix offloading of E-Switch TC pedit actions (Slava Shwartsman) [1545640]
-- [netdrv] qed: Correct setting the number of completion queues for FCoE functions (Chad Dupuis) [1542188]
-- [netdrv] ixgbe: fix crash in build_skb Rx code path (Ken Cox) [1520428]
-- [netdrv] tg3: APE heartbeat changes (Jonathan Toppins) [1546217]
-- [powerpc] pseries/vio: Dispose of virq mapping on vdevice unregister (Gustavo Duarte) [1544009]
-- [s390] qeth: fix underestimated count of buffer elements (Hendrik Brueckner) [1544698]
-- [x86] kvm: fix singlestepping over syscall (Paolo Bonzini) [1464481] {CVE-2017-7518}
-- [x86] paravirt: fix kabi breakage in pv_mmu_ops (Jeff Moyer) [1546027]
-- [x86] uaccess: introduce copy_from_iter_flushcache for pmem / cache-bypass operations (Jeff Moyer) [1471678]
-
-* Tue Feb 20 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-855.el7]
-- [crypto] algif_skcipher: Remove custom release parent function (Bruno Eduardo de Oliveira Meneguele) [1529441]
-- [crypto] algif_hash: Remove custom release parent function (Bruno Eduardo de Oliveira Meneguele) [1537376]
-- [mailbox] pcc: Drop uninformative output during boot (Kazuhito Hagio) [1515571]
-- [edac] skx_edac: Fix detection of single-rank DIMMs (Aristeu Rozanski) [1482248]
-- [md] free unused memory after bitmap resize (Nigel Croxon) [1532767]
-- [fs] sunrpc: ensure correct error is reported by xs_tcp_setup_socket() (Steve Dickson) [1536582]
-- [fs] Revert "fixing infinite OPEN loop in 4.0 stateid recovery" (Steve Dickson) [1542191]
-- [scsi] use 'scsi_device_from_queue()' for scsi_dh (Mike Snitzer) [1546212]
-- [scsi] dh: add a common helper to get a scsi_device from a request_queue (Mike Snitzer) [1546212]
-- [scsi] qedi: Drop cqe response during connection recovery (Chad Dupuis) [1543503]
-- [scsi] qedi: Fix a possible sleep-in-atomic bug in qedi_process_tmf_resp (Chad Dupuis) [1543503]
-- [scsi] qla4xxx: skip error recovery in case of register disconnect (Himanshu Madhani) [1541766]
-- [x86] spectre: fix the kernel build without CONFIG_RETPOLINE (Josh Poimboeuf) [1543939]
-
-* Mon Feb 19 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-854.el7]
-- [tools] perf: Fix swap for samples with raw data (Jiri Olsa) [1458228]
-- [alsa] hda/realtek: Enable Thinkpad Dock device for ALC298 platform (Jaroslav Kysela) [1469623]
-- [crypto] rng: prevent entry into drbg test path from algif_rng (Bruno Eduardo de Oliveira Meneguele) [1485815]
-- [net] macvtap: add namespace support to the sysfs device class (Davide Caratti) [1544499]
-- [net] sched: cls_u32: fix cls_u32 on filter replace (Ivan Vecera) [1542013]
-- [net] netfilter: xt_TCPMSS: add more sanity tests on tcph->doff (Florian Westphal) [1543088] {CVE-2017-18017}
-
-* Thu Feb 15 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-853.el7]
-- [sound] alsa: seq: Make ioctls race-free (CVE-2018-1000004) (Jaroslav Kysela) [1537203] {CVE-2018-1000004}
-- [gpu] drm/i915/gvt: move write protect handler out of mmio emulation function (Paul Lai) [1525419]
-- [gpu] drm/i915/gvt: Factor intel_vgpu_page_track (Paul Lai) [1525419]
-- [fs] xfs: eliminate duplicate icreate tx reservation functions (Brian Foster) [1397653]
-- [fs] xfs: refactor inode chunk alloc/free tx reservation (Brian Foster) [1397653]
-- [fs] xfs: include an allocfree res for inobt modifications (Brian Foster) [1397653]
-- [fs] xfs: truncate transaction does not modify the inobt (Brian Foster) [1397653]
-- [fs] xfs: fix up agi unlinked list reservations (Brian Foster) [1397653]
-- [fs] xfs: include inobt buffers in ifree tx log reservation (Brian Foster) [1397653]
-- [fs] xfs: print transaction log reservation on overrun (Brian Foster) [1397653]
-- [fs] xfs: dump transaction usage details on log reservation overrun (Brian Foster) [1397653]
-- [fs] xfs: refactor xlog_cil_insert_items() to facilitate transaction dump (Brian Foster) [1397653]
-- [fs] xfs: separate shutdown from ticket reservation print helper (Brian Foster) [1397653]
-- [s390] gs: add compat regset for the guarded storage broadcast control block (Hendrik Brueckner) [1537067]
-- [x86] intel_rdt/cqm: avoid negative static key counts (Joe Lawrence) [1524901]
-- [x86] efi: Fix boot crash by always mapping boot service regions into new EFI page tables (Lenny Szubowicz) [1535243]
-
-* Wed Feb 14 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-852.el7]
-- [netdrv] bnxt_en: Fix the 'Invalid VF' id check in bnxt_vf_ndo_prep routine (Jonathan Toppins) [1532863]
-- [netdrv] bnxt_en: Fix population of flow_type in bnxt_hwrm_cfa_flow_alloc() (Jonathan Toppins) [1532863]
-- [netdrv] bnxt_en: Fix sources of spurious netpoll warnings (Jonathan Toppins) [1532863]
-- [mm] memcg, slab: do not destroy children caches if parent has aliases (Aristeu Rozanski) [1502818]
-- [mm] memcg, slab: fix races in per-memcg cache creation/destruction (Aristeu Rozanski) [1502818]
-- [mm] memcg, slab: clean up memcg cache initialization/destruction (Aristeu Rozanski) [1502818]
-- [mm] memcg, slab: kmem_cache_create_memcg(): fix memleak on fail path (Aristeu Rozanski) [1502818]
-- [block] Invalidate cache on discard v2 (Ming Lei) [1515920]
-- [x86] mm: Fix use-after-free of ldt_struct (Oleg Nesterov) [1543352] {CVE-2017-17053}
-
-* Mon Feb 12 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-851.el7]
-- [kernel] acct.c: fix the acct->needcheck check in check_free_space() (Oleg Nesterov) [1520791]
-- [mm] pm/hibernate: touch NMI watchdog when creating snapshot (Aristeu Rozanski) [1487022]
-- [mm] userfaultfd: clear the vma->vm_userfaultfd_ctx if UFFD_EVENT_FORK fails (Andrea Arcangeli) [1531285]
-- [block] blk-mq: Take tagset lock when updating hw queues (Ming Lei) [1528644]
-- [kernel] genirq/affinity: avoid deadlock in pci_alloc_irq_vectors_affinity (Ming Lei) [1528644]
-- [block] blk-mq: avoid IO hang during CPU hotplug by freezing queues in order (Ming Lei) [1528644]
-- [nvme] kick requeue list when requeueing a request instead of when starting the queues (Ming Lei) [1528644]
-- [scsi] dual scan thread bug fix (Ewan Milne) [1509331]
-- [scsi] fix our current target reap infrastructure (Ewan Milne) [1509331]
-- [s390] crypto: fix aes/paes Kconfig dependeny (Hendrik Brueckner) [1538139]
-- [s390] mm: fix BUG_ON in crst_table_upgrade (Hendrik Brueckner) [1500580]
-- [x86] paravirt: Remove 'noreplace-paravirt' cmdline option (Josh Poimboeuf) [1538911]
-- [x86] microcode/amd: Add support for fam17h microcode loading (Suravee Suthikulpanit) [1540104]
-- [x86] Use __nostackprotect for sme_encrypt_kernel (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Encrypt the initrd earlier for BSP microcode update (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Prepare sme_encrypt_kernel() for PAGE aligned encryption (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Centralize PMD flags in sme_encrypt_kernel() (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Use a struct to reduce parameters for SME PGD mapping (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Clean up register saving in the __enc_copy() assembly code (Suravee Suthikulpanit) [1540104]
-
-* Sat Feb 10 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-850.el7]
-- [crypto] chelsio - Check error code with IS_ERR macro (Arjun Vynipadath) [1542351]
-- [crypto] chelsio - Use x8_ble gf multiplication to calculate IV (Arjun Vynipadath) [1542351]
-- [crypto] gf128mul - The x8_ble multiplication functions (Arjun Vynipadath) [1542351]
-- [crypto] gf128mul - rename the byte overflow tables (Arjun Vynipadath) [1542351]
-- [crypto] gf128mul - remove xx() macro (Arjun Vynipadath) [1542351]
-- [crypto] chelsio - Fix memory leak (Arjun Vynipadath) [1542351]
-- [scsi] libcxgbi: use GFP_ATOMIC in cxgbi_conn_alloc_pdu() (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: remove the stid on listen create failure (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: when flushing, complete all wrs in a chain (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: reflect the original WR opcode in drain cqes (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: Only validate the MSN for successful completions (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: only insert drain cqes if wq is flushed (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: put ep reference in pass_accept_req() (Arjun Vynipadath) [1541085]
-- [netdrv] be2net: restore properly promisc mode after queues reconfiguration (Ivan Vecera) [1535897]
-- [netdrv] ixgbe: Set DMA attributes individually (Ken Cox) [1536455]
-- [netdrv] iwlwifi: mvm: fix security bug in PN checking (Stanislaw Gruszka) [1538028]
-- [netdrv] ibmvnic: Wait for device response when changing MAC (Desnes Augusto Nunes do Rosario) [1540838]
-- [netdrv] ibmvnic: Don't handle RX interrupts when not up (Desnes Augusto Nunes do Rosario) [1532345]
-- [netdrv] ibmvnic: Fix pending MAC address changes (Desnes Augusto Nunes do Rosario) [1535368]
-- [netdrv] ibmvnic: Include header descriptor support for ARP packets (Desnes Augusto Nunes do Rosario) [1529748]
-- [netdrv] ibmvnic: Increase maximum number of RX/TX queues (Desnes Augusto Nunes do Rosario) [1529748]
-- [netdrv] ibmvnic: Rename IBMVNIC_MAX_TX_QUEUES to IBMVNIC_MAX_QUEUES (Desnes Augusto Nunes do Rosario) [1529748]
-- [net] cls_u32: fix use after free in u32_destroy_key() (Paolo Abeni) [1540821]
-- [net] properly release sk_frag.page (Lorenzo Bianconi) [1535775]
-- [net] netlink: Add netns check on taps (William Townsend) [1538738] {CVE-2017-17449}
-- [net] netfilter: xt_osf: Add missing permission checks (Florian Westphal) [1539230] {CVE-2017-17448}
-- [net] netfilter: nfnetlink_cthelper: Add missing permission checks (Florian Westphal) [1539230] {CVE-2017-17448}
-
-* Fri Feb 09 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-849.el7]
-- [tools] perf vendor events powerpc: Remove duplicate events (Mauricio Oliveira) [1521091]
-- [tools] perf vendor events powerpc: Update POWER9 events (Mauricio Oliveira) [1521091]
-- [thermal] doc change updates expected cur_state behavior (Brad Peters) [1211434]
-- [hid] Add PCI ID for Cannon Lake and Coffee Lake (Brad Peters) [1530141]
-- [edac] sb_edac: Fix missing DIMM sysfs entries with KNL SNC2/SNC4 mode (Aristeu Rozanski) [1536995]
-- [fs] sysfs: Use only return value from is_visible for the file mode (Jeff Moyer) [1533361]
-- [fs] nfsd: auth: Fix gid sorting when rootsquash enabled (Thiago Becker) [1516978]
-- [block] silently forbid sending any ioctl to a partition (Paolo Bonzini) [1438809]
-- [mm] fix collision between DAX PMD and PTEs (Jeff Moyer) [1528957]
-- [mm] always enable thp for dax mappings (Jeff Moyer) [1472025]
-- [mm] improve readability of transparent_hugepage_enabled() (Jeff Moyer) [1472025]
-- [acpi] acpi, nfit: validate commands against the device type (Al Stone) [1471819]
-- [acpi] acpi, nfit: add support for the _LSI, _LSR, and _LSW label methods (Al Stone) [1471819]
-
-* Fri Feb 09 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-848.el7]
-- [kernel] lockdep: Increase MAX_STACK_TRACE_ENTRIES for debug kernel (Waiman Long) [1532959]
-- [kernel] make groups_sort calling a responsibility group_info allocators (Thiago Becker) [1516978]
-- [kernel] watchdog: Prevent false positives with turbo modes (Jiri Olsa) [1493859]
-- [netdrv] xen-netfront: enable device after manual module load (Eduardo Otubo) [1472220]
-- [netdrv] ibmvnic: Fix IPv6 packet descriptors (Gustavo Duarte) [1536746]
-- [netdrv] ibmvnic: Fix IP offload control buffer (Gustavo Duarte) [1536746]
-- [netdrv] bnxt_en: Don't print Link speed -1 no longer supported messages (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Uninitialized variable in bnxt_tc_parse_actions() (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Need to unconditionally shut down RoCE in bnxt_shutdown (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: wildcard smac while creating tunnel decap filter (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: fix dst/src fid for vxlan encap/decap actions (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Fix a variable scoping in bnxt_hwrm_do_send_msg() (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Add ETH_RESET_AP support (Jonathan Toppins) [1522743]
-- [netdrv] net: ethtool: add support for reset of AP inside NIC interface (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Fix an error handling path in 'bnxt_get_module_eeprom()' (Jonathan Toppins) [1522743]
-- [powerpc] kvm: book3s: Provide information about hardware/firmware CVE workarounds (Serhii Popovych) [1532077] {CVE-2017-5754}
-- [powerpc] powernv/pci: Enable 64-bit devices to access >4GB DMA space (Mauricio Oliveira) [1506259]
-- [powerpc] powernv/pci: Add helper to check if a PE has a single vendor (Mauricio Oliveira) [1506259]
-- [x86] kvm: svm: Fix up enable_smi_window due to out-of-order backport (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Enable Virtual GIF feature (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Add Virtual GIF feature definition (Suravee Suthikulpanit) [1135003]
-- [x86] cpufeature,kvm/svm: Rename (shorten) the new virtualized VMSAVE/VMLOAD CPUID flag (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Enable Virtual VMLOAD VMSAVE feature (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Add Virtual VMLOAD VMSAVE feature definition (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Rename lbr_ctl field in the vmcb control area (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Prepare for new bit definition in lbr_ctl (Suravee Suthikulpanit) [1135003]
-- [x86] fpu: Use early_param() for clearcpuid (Scott Wood) [1539423]
-
-* Tue Feb 06 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-847.el7]
-- [dma-buf] fix reservation_object_wait_timeout_rcu once more v2 (Lyude Paul) [1535631]
-- [fs] nfsd: fix panic in posix_unblock_lock called from nfs4_laundromat (Dave Wysochanski) [1539866]
-- [fs] xfs: validate sb_logsunit is a multiple of the fs blocksize (Bill O'Donnell) [1538495]
-- [fs] nfsv4: always set NFS_LOCK_LOST when a lock is lost (Steve Dickson) [1540324]
-- [scsi] qla2xxx: Update driver version (Himanshu Madhani) [1524717]
-- [scsi] qla2xxx: Fix memory corruption during hba reset test (Himanshu Madhani) [1524717]
-- [scsi] qla2xxx: Fix logo flag for qlt_free_session_done() (Himanshu Madhani) [1524717]
-- [scsi] qla2xxx: Reset the logo flag, after target re-login (Himanshu Madhani) [1524717]
-- [block] dm: fix incomplete request_queue initialization (Mike Snitzer) [1517771]
-- [block] allow gendisk's request_queue registration to be deferred (Mike Snitzer) [1517771]
-- [block] Protect less code with sysfs_lock in blk_(un,) register_queue() (Mike Snitzer) [1517771]
-- [block] properly protect the 'queue' kobj in blk_unregister_queue (Mike Snitzer) [1517771]
-
-* Tue Feb 06 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-846.el7]
-- [infiniband] iser-target: avoid reinitializing rdma contexts for isert commands (Don Dutile) [1540434]
-- [netdrv] nfp: implement ethtool FEC mode settings (John Linville) [1519199]
-- [netdrv] nfp: add helpers for FEC support (John Linville) [1519199]
-- [netdrv] nfp: add get/set link settings ndos to representors (John Linville) [1519199]
-- [netdrv] nfp: resync repr state when port table sync (John Linville) [1519199]
-- [netdrv] nfp: refactor nfp_app_reprs_set (John Linville) [1519199]
-- [netdrv] nfp: don't depend on compiler constant propagation (John Linville) [1519199]
-- [netdrv] vmxnet3: repair memory leak (Neil Horman) [1525354]
-- [cpufreq] governor: Serialize governor callbacks (David Arcari) [1538572]
-- [cpufreq] governor: split cpufreq_governor_dbs() (David Arcari) [1538572]
-- [cpufreq] governor: register notifier from cs_init() (David Arcari) [1538572]
-- [cpufreq] intel_pstate: Remove use of get_target_pstate_use_cpu_load(() (Prarit Bhargava) [1537502]
-- [cpufreq] revert intel_pstate: Use load-based P-state selection more widely (Prarit Bhargava) [1537502]
-- [cpufreq] Fix intel_pstate driver (Prarit Bhargava) [1537502]
-- [x86] fpu: Fix get_xsave_addr() behavior under virtualization ("Dr. David Alan Gilbert") [1534309]
-- [x86] kvm: fix usage of uninit spinlock in avic_vm_destroy() (Wei Huang) [1537402]
-- [x86] KVM: Fix CPUID function for word 6 (80000001_ECX) (Wei Huang) [1533358]
-- [kernel] print kdump kernel loaded status in stack dump (Lianbo Jiang) [1535754]
-- [kernel] kexec: add a kexec_crash_loaded() function (Lianbo Jiang) [1535754]
-
-* Mon Feb 05 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-845.el7]
-- [watchdog] hpwdt: remove indirect call in watchdog/hpwdt.c (Josh Poimboeuf) [1535644]
-- [kernel] x86/spec_ctrl: cleanup __ptrace_may_access (Josh Poimboeuf) [1535644]
-- [x86] bugs: Drop one "mitigation" from dmesg (Josh Poimboeuf) [1535644]
-- [x86] kvm: vmx: Make indirect call speculation safe (Josh Poimboeuf) [1535644]
-- [x86] kvm: x86: Make indirect calls in emulator speculation safe (Josh Poimboeuf) [1535644]
-- [x86] retpoline: Optimize inline assembler for vmexit_fill_RSB (Josh Poimboeuf) [1535644]
-- [x86] mce: Make machine check speculation protected (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: fix ptrace IBPB optimization (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: Avoid returns in IBRS-disabled regions (Josh Poimboeuf) [1535644]
-- [x86] spectre/meltdown: avoid the vulnerability directory to weaken kernel security (Josh Poimboeuf) [1535644]
-- [x86] unwind: fix livepatch regression with CALL_NOSPEC macro (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: Document retpolines and ibrs_enabled=3 (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: upgrade GCC retpoline warning to an error (Josh Poimboeuf) [1535644]
-- [x86] Use IBRS for firmware update path (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: stuff RSB on context switch with SMEP enabled (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: enforce sane combinations of IBRS and retpoline (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: use upstream RSB stuffing function (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: add ibrs_enabled=3 (ibrs_user) (Josh Poimboeuf) [1535644]
-- [kernel] x86/jump_label: warn on failed jump label patch (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: detect unretpolined modules (Josh Poimboeuf) [1535644]
-- [x86] retpoline: Add LFENCE to the retpoline/RSB filling RSB macros (Josh Poimboeuf) [1535644]
-- [x86] retpoline: Fill return stack buffer on vmexit (Josh Poimboeuf) [1535644]
-- [x86] retpoline/xen: Convert Xen hypercall indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline/hyperv: Convert assembler indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline/ftrace: Convert ftrace assembler indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline/entry: Convert entry assembler indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline/crypto: Convert crypto assembler indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline: Add initial retpoline support (Josh Poimboeuf) [1535644]
-- [x86] jump_label: add asm support for static keys (Josh Poimboeuf) [1535644]
-- [x86] asm: Make asm/alternative.h safe from assembly (Josh Poimboeuf) [1535644]
-- [tools] objtool: Support new GCC 6 switch jump table pattern (Josh Poimboeuf) [1535644]
-- [tools] objtool: Detect jumps to retpoline thunks (Josh Poimboeuf) [1535644]
-- [x86] spectre: Add boot time option to select Spectre v2 mitigation (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: print features changed by microcode loading (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: refactor the init and microcode loading paths (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: move initialization of X86_FEATURE_IBPB_SUPPORT (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove SPEC_CTRL_PCP_IBPB bit (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove ibrs_enabled variable (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: add ibp_disabled variable (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: add X86_FEATURE_IBP_DISABLE (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove IBP disable for AMD model 0x16 (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove performance measurements from documentation (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: make ipbp_enabled read-only (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove ibpb_enabled=2 mode (Josh Poimboeuf) [1535644]
-- [x86] cpu: Implement CPU vulnerabilites sysfs functions (Josh Poimboeuf) [1535644]
-- [base] sysfs/cpu: Add vulnerability folder (Josh Poimboeuf) [1535644]
-- [x86] cpu: Merge bugs.c and bugs_64.c (Josh Poimboeuf) [1535644]
-
-* Fri Feb 02 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-844.el7]
-- [tools] perf record: Fix wrong size in perf_record_mmap for last kernel module (Jiri Olsa) [1509073]
-- [testmgr] disable ECDH and DH in FIPS mode (Bruno Eduardo de Oliveira Meneguele) [1523357]
-- [kernel] cpumask: Fix cpumask leak in partition_sched_domains() (Joe Lawrence) [1534918]
-- [kernel] pm / hibernate: Restore processor state before using per-CPU variables (Prarit Bhargava) [1418896]
-- [x86] power/64: Fix hibernation return address corruption (Prarit Bhargava) [1418896]
-- [x86] pti/mm: Fix trampoline stack problem with XEN PV (Andrea Arcangeli) [1533542]
-- [x86] mm: Rework wbinvd, hlt operation in stop_this_cpu() (Suravee Suthikulpanit) [1522676]
-- [mm] swap: zswap: maybe_preload & refactoring (Jerome Marchand) [1532517]
-- [mm] ksm: add cond_resched() to the rmap_walks (Rafael Aquini) [1519517]
-- [mm] mprotect: add a cond_resched() inside change_pmd_range() (Rafael Aquini) [1519517]
-- [infiniband] rdma/bnxt_re: Fix the RoCE firmware version reported (Selvin Xavier) [1538406]
-- [netdrv] cxgb4: fix possible deadlock (Arjun Vynipadath) [1439204]
-- [netdrv] hv_netvsc: Fix the receive buffer size limit (Vitaly Kuznetsov) [1532169]
-- [netdrv] nfp: flower: vxlan: ensure no sleep in atomic context (John Linville) [1537927]
-- [netdrv] nfp: flower: prioritize stats updates (John Linville) [1537141]
-- [net] Fix double free and memory corruption in get_net_ns_by_id() (Aristeu Rozanski) [1531551] {CVE-2017-15129}
-
-* Wed Jan 31 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-843.el7]
-- [media] xc2028: avoid use after free (Torez Smith) [1402893] {CVE-2016-7913}
-- [kernel] module: avoid ifdefs for sig_enforce declaration (Bruno Eduardo de Oliveira Meneguele) [1531454]
-- [fs] sysfs: Do not warn about missing kernfs_node if kobj is not active (Vivek Goyal) [1534568]
-- [md] not clear ->safemode for external metadata array (Xiao Ni) [1526283]
-- [md] always clear ->safemode when md_check_recovery gets the mddev lock (Xiao Ni) [1526283]
-- [block] blk-mq: don't allow write on attributes of .seq_ops (Ming Lei) [1535949]
-- [scsi] lpfc: Fix SCSI io host reset causing kernel crash (Dick Kennedy) [1530120]
-- [scsi] lpfc: FLOGI failures are reported when connected to a private loop (Dick Kennedy) [1532307]
-- [scsi] qla2xxx: Fix NULL pointer crash due to probe failure (Himanshu Madhani) [1525810]
-- [scsi] core: check for device state in __scsi_remove_target() (Ewan Milne) [1537459]
-- [scsi] fixup kernel warning during rmmod() (Ewan Milne) [1537459]
-- [nvme] rdma: fix concurrent reset and reconnect (David Milburn) [1517602]
-- [nvdimm] btt: fix uninitialized err_lock (Jeff Moyer) [1524775]
-- [tools] testing/nvdimm: fix nfit_test buffer overflow (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: fix nfit_test shutdown crash (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: make iset cookie predictable (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: support for sub-dividing a pmem region (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: fix allocation range for mock flush hint tables (Jeff Moyer) [1375501]
-
-* Tue Jan 30 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-842.el7]
-- [crypto] aesni: add wrapper for generic gcm(aes) (Sabrina Dubroca) [1525527]
-- [crypto] aesni: fix typo in generic_gcmaes_decrypt (Sabrina Dubroca) [1525527]
-- [infiniband] iser-target: Fix possible use-after-free in connection establishment error (Don Dutile) [1519131]
-- [netdrv] hv_netvsc: Change GPADL teardown order according to Hyper-V version (Mohammed Gamal) [1529436]
-- [netdrv] hv_netvsc: Split netvsc_revoke_buf() and netvsc_teardown_gpadl() (Mohammed Gamal) [1529436]
-- [netdrv] cxgb4vf: Fix SGE FL buffer initialization logic for 64K pages (Arjun Vynipadath) [1538425]
-- [netdrv] bnxt_en: export a common switchdev PARENT_ID for all reps of an adapter (Jonathan Toppins) [1536308]
-- [netdrv] ibmvnic: Allocate and request vpd in init_resources (Gustavo Duarte) [1537433]
-- [netdrv] ibmvnic: Revert to previous mtu when unsupported value requested (Gustavo Duarte) [1537433]
-- [netdrv] ibmvnic: Modify buffer size and number of queues on failover (Gustavo Duarte) [1537433]
-- [netdrv] revert mlx5: Expose command polling interface (Don Dutile) [1533670]
-- [netdrv] revert mlx5: Add fast unload support in shutdown flow (Don Dutile) [1533670]
-- [net] ipv4: fib: Fix metrics match when deleting a route (Phil Sutter) [1526442]
-- [net] sched: fix use-after-free in tcf_block_put_ext (Ivan Vecera) [1533034]
-- [net] sched: get rid of rcu_barrier() in tcf_block_put_ext() (Ivan Vecera) [1533034]
-- [net] use for_each_netdev_safe() in rtnl_group_changelink() (Lorenzo Bianconi) [1523618]
-- [net] openvswitch: Fix pop_vlan action for double tagged frames (Eric Garver) [1522739]
-- [net] openvswitch: fix list corruption on force commit (Eric Garver) [1531680]
-- [net] tcp: Split BUG_ON() in tcp_tso_should_defer() into two assertions (Stefano Brivio) [1532373]
-- [net] ethtool: add support for forward error correction modes (Ivan Vecera) [1530634]
-- [net] vxlan: restore dev->mtu setting based on lower device (Stefano Brivio) [1520310]
-- [net] xfrm: add UDP encapsulation port in migrate message (Bruno Eduardo de Oliveira Meneguele) [1460790]
-- [net] xfrm: extend MIGRATE with UDP encapsulation port (Bruno Eduardo de Oliveira Meneguele) [1460790]
-- [net] xfrm: fix state migration copy replay sequence numbers (Bruno Eduardo de Oliveira Meneguele) [1460790]
-- [net] xfrm: Cleanup error handling of xfrm_state_clone (Bruno Eduardo de Oliveira Meneguele) [1460790]
-- [net] xfrm: checkpatch errors with foo * bar (Bruno Eduardo de Oliveira Meneguele) [1460790]
-
-* Mon Jan 29 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-841.el7]
-- [gpu] drm/vmwgfx: fix memory corruption with legacy/sou connectors (Rob Clark) [1525872]
-- [gpu] drm/nouveau/disp/gf119: add missing drive vfunc ptr (Rob Clark) [1532388]
-- [gpu] drm/i915: Apply Display WA #1183 on skl, kbl, and cfl (Rob Clark) [1532388]
-- [gpu] drm/i915: Disable DC states around GMBUS on GLK (Rob Clark) [1532388]
-- [gpu] drm/i915/skl+: debugfs entry to control IPC (Rob Clark) [1532388]
-- [gpu] drm/i915/bxt+: Enable IPC support (Rob Clark) [1532388]
-- [gpu] drm/i915/gen9+: Add has_ipc flag in device info structure (Rob Clark) [1532388]
-- [gpu] drm/i915/gen10: Calculate and enable transition WM (Rob Clark) [1532388]
-- [gpu] drm/i915/skl+: Optimize WM calculation (Rob Clark) [1532388]
-- [gpu] drm/i915: Fixed point fixed16 wrapper cleanup (Rob Clark) [1532388]
-- [gpu] drm/i915: Flush pending GTT writes before unbinding (Rob Clark) [1532388]
-- [gpu] drm: Add retries for lspcon mode detection (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: bypass lru touch for KIQ ring submission (Rob Clark) [1532388]
-- [gpu] drm/i915: Fix vblank timestamp/frame counter jumps on gen2 (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Use unsigned ring indices in amdgpu_queue_mgr_map (Rob Clark) [1532388]
-- [gpu] drm/i915: Prevent zero length "index" write (Rob Clark) [1532388]
-- [gpu] drm/i915: Don't try indexed reads to alternate slave addresses (Rob Clark) [1532388]
-- [gpu] drm/i915/gvt: Correct ADDR_4K/2M/1G_MASK definition (Rob Clark) [1532388]
-- [gpu] drm/i915/fbdev: Serialise early hotplug events with async fbdev config (Rob Clark) [1532388]
-- [gpu] drm/i915: Re-register PMIC bus access notifier on runtime resume (Rob Clark) [1532388]
-- [gpu] drm/i915: Fix false-positive assert_rpm_wakelock_held in i915_pmic_bus_access_notifier v2 (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Set adev->vcn.irq.num_types for VCN (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: move UVD/VCE and VCN structure out from union (Rob Clark) [1532388]
-- [gpu] drm/edid: Don't send non-zero YQ in AVI infoframe for HDMI 1.x sinks (Rob Clark) [1532388]
-- [gpu] drm/fb_helper: Disable all crtc's when initial setup fails (Rob Clark) [1532388]
-- [gpu] drm/amd/pp: fix typecast error in powerplay (Rob Clark) [1532388]
-- [gpu] drm/ttm: once more fix ttm_buffer_object_transfer (Rob Clark) [1532388]
-- [gpu] drm/radeon: fix atombios on big endian (Rob Clark) [1532388]
-- [gpu] drm/vblank: Tune drm_crtc_accurate_vblank_count() WARN down to a debug (Rob Clark) [1532388]
-- [gpu] drm/vblank: Fix flip event vblank count (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Remove check which is not valid for certain VBIOS (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Properly allocate VM invalidate eng v2 (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: fix error handling in amdgpu_bo_do_create (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: correct reference clock value on vega10 (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Potential uninitialized variable in amdgpu_vm_update_directories() (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: potential uninitialized variable in amdgpu_vce_ring_parse_cs() (Rob Clark) [1532388]
-- [gpu] revert "drm/radeon: dont switch vt on suspend" (Rob Clark) [1532388]
-- [x86] gpu: add CFL to early quirks (Rob Clark) [1532388]
-- [x86] gpu: CNL uses the same GMS values as SKL (Rob Clark) [1532388]
-- [x86] gpu: GLK uses the same GMS values as SKL (Rob Clark) [1532388]
-
-* Mon Jan 29 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-840.el7]
-- [i2c] designware: Find bus speed from ACPI (Gopal Tiwari) [1456705]
-- [i2c] core: Add function for finding the bus speed from ACPI, take 2 (Gopal Tiwari) [1456705]
-- [i2c] core: Cleanup I2C ACPI namespace, take 2 (Gopal Tiwari) [1456705]
-- [i2c] designware: Enable high speed mode (Gopal Tiwari) [1456705]
-- [i2c] designware: set the common config before the if else (Gopal Tiwari) [1456705]
-- [i2c] designware: Enable fast mode plus (Gopal Tiwari) [1456705]
-- [i2c] designware: get fast plus and high speed *CNT configuration (Gopal Tiwari) [1456705]
-- [i2c] designware: Move clk_freq into struct dw_i2c_dev (Gopal Tiwari) [1456705]
-- [i2c] i2c / acpi: add support for ACPI reconfigure notifications (Gopal Tiwari) [1456705]
-- [acpi] add support for ACPI reconfiguration notifiers (Gopal Tiwari) [1456705]
-- [acpi] scan: fix enumeration (visited) flags for bus rescans (Gopal Tiwari) [1456705]
-- [i2c] use pr_fmt in the core (Gopal Tiwari) [1456705]
-- [i2c] print more info when acpi_i2c_space_handler() fails (Gopal Tiwari) [1456705]
-- [i2c] add error message when obtaining idr fails (Gopal Tiwari) [1456705]
-- [i2c] improve error messages in i2c_register_adapter() (Gopal Tiwari) [1456705]
-- [i2c] cleanup i2c_register_adapter() by refactoring recovery init (Gopal Tiwari) [1456705]
-- [i2c] free idr when sanity checks in i2c_register_adapter() fail (Gopal Tiwari) [1456705]
-- [i2c] designware-pci: Make bus number allocation robust (Gopal Tiwari) [1456705]
-- [i2c] only check scl functions when using generic recovery (Gopal Tiwari) [1456705]
-- [i2c] let I2C masters ignore their children for PM (Gopal Tiwari) [1456705]
-- [i2c] core: use new 8 bit address helper function (Gopal Tiwari) [1456705]
-- [kernel] i2c: introduce helper function to get 8 bit address from a message (Gopal Tiwari) [1456705]
-- [i2c] immediately mark ourselves as registered (Gopal Tiwari) [1456705]
-- [i2c] do not use internal data from driver core (Gopal Tiwari) [1456705]
-- [i2c] Add generic support passing secondary devices addresses (Gopal Tiwari) [1456705]
-- [i2c] always enable RuntimePM for the adapter device (Gopal Tiwari) [1456705]
-- [i2c] i2c / acpi: Rework I2C device scanning (Gopal Tiwari) [1456705]
-- [i2c] core: Add support for best effort block read emulation (Gopal Tiwari) [1456705]
-- [i2c] doc: dt: describe generic bindings (Gopal Tiwari) [1456705]
-- [i2c] slave: print warning if slave flag not set (Gopal Tiwari) [1456705]
-- [i2c] support 10 bit and slave (Gopal Tiwari) [1456705]
-- [i2c] core: add and export of_get_i2c_adapter_by_node() interface (Gopal Tiwari) [1456705]
-- [i2c] core: manage i2c bus device refcount in i2c_get/put_adapter (Gopal Tiwari) [1456705]
-- [i2c] fix leaked device refcount on of_find_i2c_* error path (Gopal Tiwari) [1456705]
-- [i2c] take address space into account when checking for used addresses (Gopal Tiwari) [1456705]
-- [i2c] make address check indpendent from client struct (Gopal Tiwari) [1456705]
-- [i2c] rename address check functions (Gopal Tiwari) [1456705]
-- [i2c] core: only use set_scl for bus recovery after calling prepare_recovery (Gopal Tiwari) [1456705]
-- [i2c] core: Reduce stack size of acpi_i2c_space_handler() (Gopal Tiwari) [1456705]
-- [i2c] check for proper length of the reg property (Gopal Tiwari) [1456705]
-- [i2c] core: fix typo in comment (Gopal Tiwari) [1456705]
-- [i2c] apply address offset for slaves, too (Gopal Tiwari) [1456705]
-- [kernel] i2c: add a flag to mark clients as slaves (Gopal Tiwari) [1456705]
-- [i2c] slave: add error messages to slave core (Gopal Tiwari) [1456705]
-- [i2c] Mark adapter devices with pm_runtime_no_callbacks (Gopal Tiwari) [1456705]
-- [i2c] core: Export bus recovery functions (Gopal Tiwari) [1456705]
-- [i2c] change input parameter to i2c_adapter for prepare/unprepare_recovery (Gopal Tiwari) [1456705]
-- [i2c] documentation: i2c: describe the new slave mode (Gopal Tiwari) [1456705]
-- [i2c] clarify comments about the dev_released completion (Gopal Tiwari) [1456705]
-- [i2c] Only include slave support if selected (Gopal Tiwari) [1456705]
-- [i2c] designware: Do not calculate SCL timing parameters needlessly (Gopal Tiwari) [1456705]
-- [i2c] simplify boilerplate code for attribute groups (Gopal Tiwari) [1456705]
-- [i2c] do not try to load modules for of-registered devices (Gopal Tiwari) [1456705]
-- [i2c] acpi: Pick the first address if device has multiple (Gopal Tiwari) [1456705]
-- [i2c] Remove support for legacy PM (Gopal Tiwari) [1456705]
-- [i2c] core changes for slave support (Gopal Tiwari) [1456705]
-- [i2c] acpi: remove unneeded variable initialization (Gopal Tiwari) [1456705]
-- [i2c] acpi: Fix NULL Pointer dereference (Gopal Tiwari) [1456705]
-- [i2c] move acpi code back into the core (Gopal Tiwari) [1456705]
-- [i2c] add debug info when class instantiation was dropped (Gopal Tiwari) [1456705]
-- [i2c] acpi: Clean up I2C ACPI code and Add CONFIG_I2C_ACPI config (Gopal Tiwari) [1456705]
-- [i2c] acpi: Add i2c ACPI operation region support (Gopal Tiwari) [1456705]
-- [i2c] Add message transfer tracepoints for SMBUS (ver 2) (Gopal Tiwari) [1456705]
-- [i2c] Add message transfer tracepoints for I2C (Gopal Tiwari) [1456705]
-- [i2c] add deprecation warning for class based instantiation (Gopal Tiwari) [1456705]
-- [i2c] Use stable dev_name for ACPI enumerated I2C slaves (Gopal Tiwari) [1456705]
-- [i2c] attach/detach I2C client device to the ACPI power domain (Gopal Tiwari) [1456705]
-- [acpi] pm: allow child devices to ignore parent power state (Gopal Tiwari) [1456705]
-- [i2c] Not all adapters have a parent (Gopal Tiwari) [1456705]
-- [i2c] Remove redundant 'driver' field from the i2c_client struct (Gopal Tiwari) [1456705]
-- [media] core: Don't use i2c_client->driver (Gopal Tiwari) [1456705]
-- [acpi] pm: Make messages in acpi_device_set_power() print device names (Gopal Tiwari) [1456705]
-
-* Mon Jan 29 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-839.el7]
-- [powerpc] pseries: Make RAS IRQ explicitly dependent on DLPAR WQ (Serhii Popovych) [1533857]
-- [s390] cpuinfo: show facilities as reported by stfle (Hendrik Brueckner) [1535082]
-- [x86] locking/qspinlock: Fix kabi problem in a non-KVM/XEN VM (Waiman Long) [1533529]
-- [x86] platform/uv: Mark tsc_check_sync as an init function (Frank Ramsay) [1526066]
-- [x86] platform/uv: Add check of TSC state set by UV BIOS (Frank Ramsay) [1526066]
-- [x86] tsc: Provide a means to disable TSC ART (Frank Ramsay) [1526066]
-- [x86] tsc: Drastically reduce the number of firmware bug warnings (Frank Ramsay) [1526066]
-- [x86] tsc: Skip TSC test and error messages if already unstable (Frank Ramsay) [1526066]
-- [x86] tsc: Add option that TSC on Socket 0 being non-zero is valid (Frank Ramsay) [1526066]
-- [x86] tsc: Remove the TSC_ADJUST clamp (Frank Ramsay) [1526066]
-- [crypto] chcr - Avoid algo allocation in softirq (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Select device in Round Robin fashion (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Ensure Destination sg entry size less than 2k (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Add debug counters (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Add ctr mode and process large sg entries for cipher (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Avoid changing request structure (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Return correct error code (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix fallback key setting (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Pass lcb bit setting to firmware (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix error handling related to 'chcr_alloc_shash' (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Add fallback for AEAD algos (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Set hmac_ctrl bit to use HW register HMAC_CFG 456 (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Increase priority of AEAD algos (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix Smatch Complaint (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix wrong typecasting (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Change algo priority (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Change cra_flags for cipher algos (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Use cipher instead of Block Cipher in gcm setkey (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix key length for RFC4106 (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix panic on dma_unmap_sg (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Add AEAD algos (Arjun Vynipadath) [1458315]
-- [crypto] aead - move aead_request_cast helper to aead.h (Arjun Vynipadath) [1458315]
-- [crypto] scatterwalk - Add scatterwalk_ffwd helper (Arjun Vynipadath) [1458315]
-- [netdrv] iwlwifi: pcie: fix DMA memory mapping / unmapping (Stanislaw Gruszka) [1501882]
-- [netdrv] ath10k: fix build errors with !CONFIG_PM (Stanislaw Gruszka) [1501882]
-- [netdrv] ath10k: fix core PCI suspend when WoWLAN is supported but disabled (Stanislaw Gruszka) [1501882]
-- [netdrv] ath9k: fix tx99 potential info leak (Stanislaw Gruszka) [1501882]
-- [netdrv] i40e: don't remove netdev->dev_addr when syncing uc list (Stefan Assmann) [1469354]
-- [netdrv] cxgb3: assign port id to net_device->dev_port (Arjun Vynipadath) [1530123]
-- [netdrv] bnx2x: Improve reliability in case of nested PCI errors (Michal Schmidt) [1529860]
-
-* Fri Jan 26 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-838.el7]
-- [thermal] initialize thermal zone device correctly (Lenny Szubowicz) [1487411]
-- [net] bluetooth: Prevent stack info leak from the EFS element (Gopal Tiwari) [1519633] {CVE-2017-1000410}
-- [tools] cpupower: fix potential memory leak (Prarit Bhargava) [1422951]
-- [tools] cpupower: bench: parse.c: fix several resource leaks (Prarit Bhargava) [1422951]
-- [usb] core: prevent malicious bNumInterfaces overflow (Torez Smith) [1536886] {CVE-2017-17558}
-- [misc] genwqe: Take R/W permissions into account when dealing with memory pages (Gustavo Duarte) [1528752]
-- [md] Call wait_barrier twice when underlaying device is blocked (Xiao Ni) [1527875]
-- [ata] ahci: Add Intel Cannon Lake PCH-H PCI ID (David Milburn) [1533333 1457266]
-- [block] elevator: lookup mq vs non-mq elevators (Ming Lei) [1526859]
-- [block] elevator: remove redundant warnings on IO scheduler switch (Ming Lei) [1526859]
-- [block] blk-mq: set mq-deadline as default scheduler for single queue device (Ming Lei) [1154525]
-- [nvme] dm mpath: backport blk_path_error() (Mike Snitzer) [1535615]
-- [nvme] fabrics: initialize default host->id in nvmf_host_default() (Ewan Milne) [1533963]
-- [nvme] fabrics: generate spec-compliant UUID NQNs (Ewan Milne) [1533963]
-- [scsi] lpfc: Fix ndlp ref count for pt2pt mode issue RSCN (Dick Kennedy) [1532295]
-- [scsi] lpfc: Linux LPFC driver does not process all RSCNs (Dick Kennedy) [1532295]
-- [scsi] lpfc: Driver fails to detect direct attach storage array (Dick Kennedy) [1532303]
-- [fs] gfs2: Use rhashtable walk interface in glock_hash_walk (Andreas Grunbacher) [1526134]
-- [fs] gfs2: Glock dump performance regression fix (Andreas Grunbacher) [1526134]
-- [fs] rhashtable: Add rhastable_walk_peek (Andreas Grunbacher) [1526134]
-- [fs] nfs: commit direct writes even if they fail partially (Benjamin Coddington) [1132610]
-- [fs] simple_xattr: permit 0-size extended attributes (Miklos Szeredi) [1532490]
-- [fs] xfs: don't change inode mode if ACL update fails (Bill O'Donnell) [1480671]
-- [fs] pnfs: fix nfs_direct_req ref leak when i/o falls back to the mds (Scott Mayhew) [1519649]
-
-* Tue Jan 23 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-837.el7]
-- [mm] cgroup: kill css_id (Aristeu Rozanski) [1470325]
-- [mm] memcontrol: fix cgroup creation failure after many small jobs (Aristeu Rozanski) [1470325]
-- [mm] device-dax: implement ->split() to catch invalid munmap attempts (Jeff Moyer) [1523344]
-- [mm] mm, hugetlbfs: introduce ->split() to vm_operations_struct (Jeff Moyer) [1523344]
-- [mm] move split_huge_page_pud/pmd sanity checks under the pte lock (Jeff Moyer) [1523344]
-- [mm] filemap: get rid of radix tree gfp mask for pagecache_get_page (Yasuyuki Kobayashi) [1469247]
-- [iommu] vt-d: Use domain instead of cache fetching (Peter Xu) [1531367]
-- [nvme] rdma: don't fully stop the controller in error recovery (David Milburn) [1532621]
-- [fs] don't call file_pos_write() if vfs_read/write(, v) fails (Ivan Vecera) [1534483]
-- [x86] syscall: int80 must not clobber r12-15 (Oleg Nesterov) [1531686]
-- [x86] syscall: change ia32_syscall() to create the full register frame in ia32_do_call() (Oleg Nesterov) [1531686]
-- [x86] KVM: VMX: remove I/O port 0x80 bypass on Intel hosts (Radim Krcmar) [1520349] {CVE-2017-1000407}
-- [kernel] livepatch: add locking to force and signal functions (Joe Lawrence) [1522957]
-- [kernel] livepatch: force transition to finish (Joe Lawrence) [1522957]
-- [kernel] livepatch: send a fake signal to all blocking tasks (Joe Lawrence) [1522957]
-- [infiniband] hfi1: Prevent a NULL dereference (Alex Estrin) [1535166]
-- [infiniband] qib: Fix comparison error with qperf compare/swap test (Alex Estrin) [1526145 1520402]
-- [infiniband] cm: Change sgid to IB GID when handling CM request (Alex Estrin) [1526145 1520402]
-- [infiniband] hfi1: Mask the path bits with the LMC for 16B RC Acks (Alex Estrin) [1526145 1520402]
-
-* Mon Jan 22 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-836.el7]
-- [x86] platform/uv/bau: Replace hard-coded values with MMR definitions (Frank Ramsay) [1535031]
-- [x86] platform/uv: Fix UV4A BAU MMRs (Frank Ramsay) [1535031]
-- [x86] platform/uv: Fix GAM MMR references in the UV x2apic code (Frank Ramsay) [1535031]
-- [x86] platform/uv: Fix GAM MMR changes in UV4A (Frank Ramsay) [1535031]
-- [x86] platform/uv: Add references to access fixed UV4A HUB MMRs (Frank Ramsay) [1535031]
-- [x86] platform/uv: Fix UV4A support on new Intel Processors (Frank Ramsay) [1535031]
-- [x86] platform/uv: Update uv_mmrs.h to prepare for UV4A fixes (Frank Ramsay) [1535031]
-- [md] dm raid: use rs_is_raid*() (Heinz Mauelshagen) [1388632]
-- [md] dm raid: simplify rs_get_progress() (Heinz Mauelshagen) [1388632]
-- [md] dm raid: ensure 'a' chars during reshape (Heinz Mauelshagen) [1388632]
-- [md] dm raid: avoid keeping raid set frozen (Heinz Mauelshagen) [1388632 1514215]
-- [md] dm raid: validate current raid sets redundancy (Heinz Mauelshagen) [1388632 1514500]
-- [md] dm-raid: bump target version to reflect numerous fixes (Heinz Mauelshagen) [1388632 1514215]
-- [md] dm raid: small cleanup and remove unsed struct raid_set member (Heinz Mauelshagen) [1388632]
-- [md] dm raid: fix rs_get_progress() synchronization state_ratio (Heinz Mauelshagen) [1388632 1508070]
-- [md] dm raid: avoid passing array_in_sync variable to raid_status() callees (Heinz Mauelshagen) [1388632]
-- [md] dm raid: display a consistent copy of the MD status via raid_status() (Heinz Mauelshagen) [1388632]
-- [md] dm raid: fix raid_resume() to keep raid set frozen as needed (Heinz Mauelshagen) [1388632]
-- [md] dm raid: add component device size checks to avoid runtime failure (Heinz Mauelshagen) [1388632]
-- [md] dm raid: fix raid set size revalidation (Heinz Mauelshagen) [1388632]
-- [md] dm raid: correct resizing state relative to reshape space in ctr (Heinz Mauelshagen) [1388632]
-- [md] dm raid: consume sizes after md_finish_reshape() completes changing them (Heinz Mauelshagen) [1388632]
-- [md] dm raid: fix deadlock caused by premature md_stop_writes() (Heinz Mauelshagen) [1388632 1514215]
-- [md] dm raid: add raid4_5_6 journal write-back support via journal_mode option (Heinz Mauelshagen) [1388632]
-- [tools] power turbostat: Make turbostat quiet by default (Prarit Bhargava) [1531825]
-- [acpi] battery: Fix doubly added battery on system suspend (Lenny Szubowicz) [1518210]
-
-* Mon Jan 22 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-835.el7]
-- [md] limit mdstat resync progress to max_sectors (Nigel Croxon) [1520449]
-- [mailbox] acpi/pcc: Use pr_debug() for debug messages in pcc_init() (Prarit Bhargava) [1529885]
-- [bluetooth] btusb: Update firmware filename for Intel 9x60 and later (Gopal Tiwari) [1530359]
-- [alsa] hda/realtek: Fix ALC700 family no sound issue (Jaroslav Kysela) [1520733]
-- [pci] Create SR-IOV virtfn/physfn links before attaching driver (Kamal Heib) [1416270]
-- [powercap] rapl: handle missing MSRs (Xiaolong Wang) [1369918]
-- [powercap] rapl: add package reference per domain (Xiaolong Wang) [1369918]
-- [powercap] rapl: reduce ipi calls (Xiaolong Wang) [1369918]
-- [block] blk-mq: fix kernel oops in blk_mq_tag_idle() (Ming Lei) [1517640]
-- [block] blk-mq: make sure the variable of 'blk_mq_aux_ops' is per variable of 'blk_mq_ops' (Ming Lei) [1525468]
-- [usb] core: Don't print a warning if interface driver rebind is deferred at resume (Jerry Snitselaar) [1459718]
-- [input] serio: drop warnings in case of EPROBE_DEFER from serio_find_driver() (Jerry Snitselaar) [1459718]
-- [base] bus: don't warn on deferred probe (Jerry Snitselaar) [1459718]
-- [kernel] stop using 'pK' for /proc/kallsyms pointer values (Lenny Szubowicz) [1532366]
-- [kernel] kallsyms.c: use __seq_open_private() (Lenny Szubowicz) [1532366]
-- [kernel] perf/core: Change the default paranoia level to 2 (Lenny Szubowicz) [1532366]
-- [powerpc] kvm: book3s hv: Always flush TLB in kvmppc_alloc_reset_hpt() (David Gibson) [1528958]
-- [s390] sclp: single increment assignment control (Hendrik Brueckner) [1456517]
-
-* Fri Jan 19 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-834.el7]
-- [infiniband] ib/mlx5: Fix mlx5_ib_alloc_mr error flow (Kamal Heib) [1534242]
-- [infiniband] ib/mlx5: Serialize access to the VMA list (Kamal Heib) [1534242]
-- [netdrv] mlx5: Stay in polling mode when command EQ destroy fails (Kamal Heib) [1534242]
-- [kernel] mlx5: Cleanup IRQs in case of unload failure (Kamal Heib) [1534242]
-- [netdrv] mlx5: Fix steering memory leak (Kamal Heib) [1534242]
-- [netdrv] mlx5: Fix error flow in CREATE_QP command (Kamal Heib) [1534242]
-- [netdrv] mlx5e: Prevent possible races in VXLAN control flow (Kamal Heib) [1533796]
-- [netdrv] mlx5e: Add refcount to VXLAN structure (Kamal Heib) [1533796]
-- [netdrv] mlx5e: Fix possible deadlock of VXLAN lock (Kamal Heib) [1533796]
-- [netdrv] mlx5e: Fix ETS BW check (Kamal Heib) [1532746]
-- [netdrv] revert "mlx5: move affinity hints assignments to generic code" (Kamal Heib) [1532632]
-- [infiniband] rdma/bnxt_re: Make room for mapping HW contexts beyond 32 entries (Selvin Xavier) [1532770]
-- [infiniband] core: Verify that QP is security enabled in create and destroy (Kamal Heib) [1533205]
-- [infiniband] ipoib: Fix for notify send CQ failure messages (Don Dutile) [1528386]
-- [infiniband] rdma/vmw_pvrdma: Avoid use after free due to QP/CQ/SRQ destroy (Don Dutile) [1531668]
-- [infiniband] rdma/vmw_pvrdma: Call ib_umem_release on destroy QP path (Don Dutile) [1531668]
-- [infiniband] iw_cxgb4: only clear the ARMED bit if a notification is needed (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: atomically flush the qp (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: only call the cq comp_handler when the cq is armed (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: Fix possible circular dependency locking warning (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: remove BUG_ON() usage (Arjun Vynipadath) [1526289]
-- [infiniband] rdma/cxgb4: Protect from possible dereference (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: add referencing to wait objects (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: allocate wait object for each ep object (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: allocate wait object for each qp object (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: allocate wait object for each cq object (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: allocate wait object for each memory object (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: change pr_debug to appropriate log level (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: Remove __func__ parameter from pr_debug() (Arjun Vynipadath) [1526289]
-- [infiniband] cxgb4: Remove some dead code (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: drop listen destroy replies if no ep found (Arjun Vynipadath) [1526289]
-- [infiniband] cxgb4: Convert PDBG to pr_debug the second (Arjun Vynipadath) [1526289]
-- [infiniband] cxgb4: Convert PDBG to pr_debug (Arjun Vynipadath) [1526289]
-- [netdrv] mlxsw: spectrum_dpipe: Fix entries dump of the adjacency table (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for controlling nexthop counters (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for adjacency table dump (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum: Add support for setting counters on nexthops (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: reg: Add support for counters on RATR (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add initial support for the router adjacency table (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add helpers for nexthop access (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Use helper to check for last neighbor (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Keep nexthops in a linked list (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: Add fields for mlxsw's meta header for adjacency table (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Fix indentation in header description (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for controlling IPv6 neighbor counters (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add support for setting counters on IPv6 neighbors (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for IPv6 host table dump (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Make host entry fill handler more generic (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add IPv6 neighbor access helper (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add IPv6 host table initial support (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Export IPv6 link local address check helper (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Fix host table dump (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum: compile-in dpipe support only if devlink is enabled (Ivan Vecera) [1521104]
-- [scripts] kbuild: Allow to specify composite modules with modname-m (Ivan Vecera) [1521104]
-- [scripts] kbuild: handle multi-objs dependency appropriately (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for controlling neighbor counters (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for IPv4 host table dump (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add support for setting counters on neighbors (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: reg: Make flow counter set type enum to be shared (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add IPv4 host table initial support (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Fix label name (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add helpers for neighbor access (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Fix erif table op name space (Ivan Vecera) [1521104]
-
-* Fri Jan 19 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-833.el7]
-- [thunderbolt] Mark TB3 as tech_preview (Jeremy McNicoll) [1172010]
-- [acpi] introduce a function to find the first physical device (Jeremy McNicoll) [1172010]
-- [acpi] create empty dmi_table (Jeremy McNicoll) [1172010]
-- [acpi] acpi / scan: Enable GPEs before scanning the namespace (Jeremy McNicoll) [1172010]
-- [acpi] acpica: Make it possible to enable runtime GPEs earlier (Jeremy McNicoll) [1172010]
-- [acpi] acpica: Dispatch active GPEs at init time (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: include linux/err.h from header (Jeremy McNicoll) [1172010]
-- [acpi] acpi / sysfs: Provide quirk mechanism to prevent GPE flooding (Jeremy McNicoll) [1172010]
-- [kernel] efi: Add device path parser (Jeremy McNicoll) [1172010]
-- [kernel] acpi / bus: Make acpi_get_first_physical_node() public (Jeremy McNicoll) [1172010]
-- [acpi] acpica: events: Introduce acpi_mask_gpe() to implement GPE masking mechanism (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: core: remove regmap dependency (Jeremy McNicoll) [1172010]
-- [kernel] device property: don't bother the drivers with struct property_set (Jeremy McNicoll) [1172010]
-- [acpi] acpi / osi: Collect _OSI handling into one single file (Jeremy McNicoll) [1172010]
-- [acpi] acpi / osi: Cleanup _OSI("Linux") related code before introducing new support (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: Add backwards compatibility support for older EEPROM drivers (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: Add flag to export NVMEM to root only (Jeremy McNicoll) [1172010]
-- [lib] ucs2_string: Add ucs2 -> utf8 helper functions (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: Add a simple NVMEM framework for consumers (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: Add a simple NVMEM framework for nvmem providers (Jeremy McNicoll) [1172010]
-- [acpi] acpica: events: Add support to return both enable/status register values for GPE and fixed event (Jeremy McNicoll) [1172010]
-- [acpi] acpica: events: Cleanup GPE dispatcher type obtaining code (Jeremy McNicoll) [1172010]
-- [acpi] acpica: Save current masks of enabled GPEs after enable register writes (Jeremy McNicoll) [1172010]
-- [acpi] Support _OSI("Darwin") correctly (Jeremy McNicoll) [1172010]
-- [pci] Suspend/resume quirks for Apple thunderbolt (Jeremy McNicoll) [1172010]
-- [kernel] pci: Add pci_fixup_suspend_late quirk pass (Jeremy McNicoll) [1172010]
-- [acpi] acpica: fix divergences of the commit - acpica: Expose OSI version (Jeremy McNicoll) [1172010]
-- [acpi] acpica: Add acpi_update_interfaces() public interface (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix reset response_type (Jeremy McNicoll) [1172010]
-- [thunderbolt] Allow clearing the key (Jeremy McNicoll) [1172010]
-- [thunderbolt] Make key root-only accessible (Jeremy McNicoll) [1172010]
-- [thunderbolt] Remove superfluous check (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not enumerate more ports from DROM than the controller has (Jeremy McNicoll) [1172010]
-- [thunderbolt] icm: Ignore mailbox errors in icm_suspend() (Jeremy McNicoll) [1172010]
-- [thunderbolt] use uuid_t instead of uuid_be (Jeremy McNicoll) [1172010]
-- [thunderbolt] Correct access permissions for active NVM contents (Jeremy McNicoll) [1172010]
-- [thunderbolt] fix spelling mistake: "missmatch" -> "mismatch" (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for host and device NVM firmware upgrade (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for Internal Connection Manager (ICM) (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not touch the hardware if the NHI is gone on resume (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for DMA configuration based mailbox (Jeremy McNicoll) [1172010]
-- [thunderbolt] Store Thunderbolt generation in the switch structure (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for NHI mailbox (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add new Thunderbolt PCI IDs (Jeremy McNicoll) [1172010]
-- [thunderbolt] Rework control channel to be more reliable (Jeremy McNicoll) [1172010]
-- [thunderbolt] Let the connection manager handle all notifications (Jeremy McNicoll) [1172010]
-- [thunderbolt] Expose make_header() to other files (Jeremy McNicoll) [1172010]
-- [thunderbolt] Expose get_route() to other files (Jeremy McNicoll) [1172010]
-- [thunderbolt] Move control channel messages to tb_msgs.h (Jeremy McNicoll) [1172010]
-- [thunderbolt] Read vendor and device name from DROM (Jeremy McNicoll) [1172010]
-- [thunderbolt] Refactor and fix parsing of port drom entries (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not fail if DROM data CRC32 is invalid (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fail switch adding operation if reading DROM fails (Jeremy McNicoll) [1172010]
-- [thunderbolt] Convert switch to a device (Jeremy McNicoll) [1172010]
-- [thunderbolt] Introduce thunderbolt bus and connection manager (Jeremy McNicoll) [1172010]
-- [thunderbolt] Allow passing NULL to tb_ctl_free() (Jeremy McNicoll) [1172010]
-- [thunderbolt] Rework capability handling (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add MSI-X support (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not warn about newer DROM versions (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not try to read UID if DROM offset is read as 0 (Jeremy McNicoll) [1172010]
-- [thunderbolt] No need to read UID of the root switch on resume (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use const buffer pointer in write operations (Jeremy McNicoll) [1172010]
-- [thunderbolt] Macro rename (Jeremy McNicoll) [1172010]
-- [thunderbolt] Compile on x86 only (Jeremy McNicoll) [1172010]
-- [thunderbolt] efi: Fix Kconfig dependencies harder (Jeremy McNicoll) [1172010]
-- [thunderbolt] efi: Fix Kconfig dependencies (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use Device ROM retrieved from EFI (Jeremy McNicoll) [1172010]
-- [thunderbolt] Don't declare Falcon Ridge unsupported (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for INTEL_FALCON_RIDGE_2C controller (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix double free of drom buffer (Jeremy McNicoll) [1172010]
-- [thunderbolt] Support 1st gen Light Ridge controller (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix typos and magic number (Jeremy McNicoll) [1172010]
-- [kernel] pci: Add Intel Thunderbolt device IDs (Jeremy McNicoll) [1172010]
-- [thunderbolt] Allow loading of module on recent Apple MacBooks with thunderbolt 2 controller (Jeremy McNicoll) [1172010]
-- [thunderbolt] Clear hops before overwriting (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use kcalloc (Jeremy McNicoll) [1172010]
-- [thunderbolt] Correct the size argument to devm_kzalloc (Jeremy McNicoll) [1172010]
-- [thunderbolt] select CRC32 in Kconfig (Jeremy McNicoll) [1172010]
-- [thunderbolt] Make tb_eeprom_get_drom_offset static (Jeremy McNicoll) [1172010]
-- [thunderbolt] Make enum tb_drom_entry_type unsigned (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix header declaration of tb_find_cap (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add casts to prevent endianness warnings (Jeremy McNicoll) [1172010]
-- [thunderbolt] fix format string for size_t (Jeremy McNicoll) [1172010]
-- [thunderbolt] add PCI dependency (Jeremy McNicoll) [1172010]
-- [thunderbolt] Staticize nhi_ids (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use NULL instead of 0 in nhi.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use NULL instead of 0 in ctl.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use NULL instead of 0 in switch.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix build error in switch.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix build error in eeprom.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix nontrivial endpoint devices (Jeremy McNicoll) [1172010]
-- [thunderbolt] Read port configuration from eeprom (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add suspend/hibernate support (Jeremy McNicoll) [1172010]
-- [thunderbolt] Read switch uid from EEPROM (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for simple pci tunnels (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add path setup code (Jeremy McNicoll) [1172010]
-- [thunderbolt] Handle hotplug events (Jeremy McNicoll) [1172010]
-- [thunderbolt] Scan for downstream switches (Jeremy McNicoll) [1172010]
-- [thunderbolt] Enable plug events (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add thunderbolt capability handling (Jeremy McNicoll) [1172010]
-- [thunderbolt] Initialize root switch and ports (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add tb_regs.h (Jeremy McNicoll) [1172010]
-- [thunderbolt] Setup control channel (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add control channel interface (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add initial cactus ridge NHI support (Jeremy McNicoll) [1172010]
-
-* Fri Jan 19 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-832.el7]
-- [x86] x86: vdso: use __pvclock_read_cycles (Prarit Bhargava) [1516321]
-- [x86] x86/vdso/pvclock: Protect STABLE check with the seqcount (Prarit Bhargava) [1516321]
-- [x86] x86, vdso, pvclock: Simplify and speed up the vdso pvclock reader (Prarit Bhargava) [1516321]
-- [x86] fpu: Make XSAVE check the base CPUID features before enabling (Scott Wood) [1457543]
-- [kernel] bitops: Add clear/set_bit32() to linux/bitops.h (Scott Wood) [1457543]
-- [x86] fpu: Remove the explicit clearing of XSAVE dependent features (Scott Wood) [1457543]
-- [x86] cpuid: Prevent out of bound access in do_clear_cpu_cap() (Scott Wood) [1457543]
-- [x86] fpu: Parse clearcpuid= as early XSAVE argument (Scott Wood) [1457543]
-- [x86] cpuid: Add generic table for CPUID dependencies (Scott Wood) [1457543]
-- [x86] Don't rely on VMWare emulating PAT MSR correctly (Cathy Avery) [1528577]
-- [x86] efifb: Add support for 64-bit frame buffer addresses (Rob Clark) [1529100]
-- [x86] mm: Change cachemode exports to non-gpl (Alex Williamson) [1528122]
-- [scsi] qla2xxx: Defer processing of GS IOCB calls (Himanshu Madhani) [1527540]
-- [scsi] qedf: Limit number of CQs (Chad Dupuis) [1525916]
-- [scsi] libcxgbi: simplify task->hdr allocation for mgmt cmds (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: fix skb use after free (Arjun Vynipadath) [1526290]
-- [scsi] cxgb4i: fix Tx skb leak (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: in case of vlan pass 0 as ifindex to find route (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: remove redundant check and close on csk (Arjun Vynipadath) [1526290]
-- [scsi] cxgb4i: call neigh_event_send() to update MAC address (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: use ndev->ifindex to find route (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: add check for valid cxgbi_task_data (Arjun Vynipadath) [1526290]
-- [scsi] storvsc: Fix scsi_cmd error assignments in storvsc_handle_error (Cathy Avery) [1502601]
-- [scsi] storvsc: Avoid excessive host scan on controller change (Cathy Avery) [1502601]
-- [scsi] storvsc: Allow only one remove lun work item to be issued per lun (Cathy Avery) [1502601]
-- [platform] x86: intel-vbtn: Simplify autorelease logic (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: support panel front button (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: support KEY_ROTATE_LOCK_TOGGLE (Scott Wood) [1445052]
-- [uapi] input: add KEY_ROTATE_LOCK_TOGGLE (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: Support separate press/release events (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: support SW_TABLET_MODE (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: reduce unnecessary messages for normal users (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: match power button on press rather than release (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: add volume up and down (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: Switch to use devm_input_allocate_device (Scott Wood) [1445052]
-- [platform] x86: Use ACPI_FAILURE at appropriate places (Scott Wood) [1445052]
-- [platform] intel-vbtn: new driver for Intel Virtual Button (Scott Wood) [1445052]
-
-* Wed Jan 17 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-831.el7]
-- [target] cxgbit: Abort the TCP connection in case of data out timeout (Arjun Vynipadath) [1526291]
-- [netdrv] net/mlx4_en: Fill all counters under one call of stats lock (Kamal Heib) [1525610]
-- [netdrv] net/mlx4_core: Fix wrong calculation of free counters (Kamal Heib) [1525610]
-- [netdrv] net/mlx4_en: Fix selftest for small MTUs (Kamal Heib) [1525610]
-- [infiniband] ib/mlx4: Increase maximal message size under UD QP (Kamal Heib) [1525610]
-- [netdrv] net/mlx4_en: Use __force to fix a sparse warning in TX datapath (Kamal Heib) [1525610]
-- [netdrv] net/mlx4_core: Fix cast warning in fw.c (Kamal Heib) [1525610]
-- [netdrv] net/mlx4: Fix endianness issue in qp context params (Kamal Heib) [1525610]
-- [netdrv] aquantia: Increment driver version (David Arcari) [1500365]
-- [netdrv] aquantia: Fix typo in ethtool statistics names (David Arcari) [1500365]
-- [netdrv] aquantia: Update hw counters on hw init (David Arcari) [1500365]
-- [netdrv] aquantia: Improve link state and statistics check interval callback (David Arcari) [1500365]
-- [netdrv] aquantia: Fill in multicast counter in ndev stats from hardware (David Arcari) [1500365]
-- [netdrv] aquantia: Fill ndev stat couters from hardware (David Arcari) [1500365]
-- [netdrv] aquantia: Extend stat counters to 64bit values (David Arcari) [1500365]
-- [netdrv] aquantia: Fix hardware DMA stream overload on large MRRS (David Arcari) [1500365]
-- [netdrv] aquantia: Fix actual speed capabilities reporting (David Arcari) [1500365]
-- [netdrv] aquantia: Make local functions static (David Arcari) [1500365]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1526288]
-- [netdrv] cxgb4: do DCB state reset in couple of places (Arjun Vynipadath) [1526288]
-- [netdrv] cxgb4: avoid stall while shutting down the adapter (Arjun Vynipadath) [1526288]
-- [scsi] csiostor: enable PCIe relaxed ordering if supported (Arjun Vynipadath) [1526951]
-- [netdrv] cxgb4: Use new PCI_DEV_FLAGS_NO_RELAXED_ORDERING flag (Arjun Vynipadath) [1526951]
-- [netdrv] cxgb4vf: Use new PCI_DEV_FLAGS_NO_RELAXED_ORDERING flag (Arjun Vynipadath) [1526951]
-- [netdrv] add .ndo_size to struct i40evf_netdev_ops (Stefan Assmann) [1520869]
-- [netdrv] revert e1000e: Avoid receiver overrun interrupt bursts (David Arcari) [1520875]
-- [netdrv] tg3: Fix rx hang on MTU change with 5717/5719 (Jonathan Toppins) [1528017]
-- [netdrv] mlx4_en: Fix the use of ndo_change_mtu (Kamal Heib) [1528820]
-- [netdrv] mlx5e: Fix the use of ndo_change_mtu (Kamal Heib) [1522612]
-- [infiniband] mlx5: Fix RoCE Address Path fields (Kamal Heib) [1525603]
-- [infiniband] mlx5: Assign send CQ and recv CQ of UMR QP (Kamal Heib) [1525603]
-- [netdrv] mlx5e: Add rollback on add VLAN failure (Kamal Heib) [1525603]
-- [netdrv] mlx5e: Rename VLAN related variables and functions (Kamal Heib) [1525603]
-- [netdrv] nfp: fix port stats for mac representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: fix vlan receive MAC statistics typo (Jonathan Toppins) [1518337]
-- [netdrv] nfp: output control messages to trace_devlink_hwmsg() (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add set tcp and udp header action flower offload (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add set ipv6 source and destination address (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add set ipv4 header action flower offload (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add set ethernet header action flower offload (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add IPv6 ttl and tos match offloading support (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add IPv4 ttl and tos match offloading support (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add mpls match offloading support (Jonathan Toppins) [1468286]
-- [netdrv] nfp: flower vxlan neighbour keep-alive (Jonathan Toppins) [1468286]
-- [netdrv] nfp: flower vxlan neighbour offload (Jonathan Toppins) [1468286]
-- [netdrv] nfp: offload vxlan IPv4 endpoints of flower rules (Jonathan Toppins) [1468286]
-- [netdrv] nfp: offload flower vxlan endpoint MAC addresses (Jonathan Toppins) [1468286]
-- [netdrv] nfp: compile flower vxlan tunnel set actions (Jonathan Toppins) [1468286]
-- [netdrv] nfp: compile flower vxlan tunnel metadata match fields (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add helper to get flower cmsg length (Jonathan Toppins) [1468286]
-- [netdrv] nfp: wait for the NSP resource to appear on boot (Jonathan Toppins) [1468286]
-- [netdrv] nfp: wait for board state before talking to the NSP (Jonathan Toppins) [1468286]
-- [netdrv] nfp: build the flower offload by default (Jonathan Toppins) [1468286]
-- [netdrv] nfp: be drop monitor friendly (Jonathan Toppins) [1468286]
-- [netdrv] nfp: move the start/stop app callbacks back (Jonathan Toppins) [1468286]
-- [netdrv] nfp: flower: base lifetime of representors on existence of lower vNIC (Jonathan Toppins) [1468286]
-- [netdrv] nfp: separate app vNIC init/clean from alloc/free (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add basic SR-IOV ndo functions to representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add basic SR-IOV ndo functions (Jonathan Toppins) [1468286]
-- [netdrv] nfp: fix copy paste in names and messages regarding vNICs (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add ethtool statistics for representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add pointer to vNIC config memory to nfp_port structure (Jonathan Toppins) [1468286]
-- [netdrv] nfp: report MAC statistics in ethtool (Jonathan Toppins) [1468286]
-- [netdrv] nfp: store pointer to MAC statistics in nfp_port (Jonathan Toppins) [1468286]
-- [netdrv] nfp: split software and hardware vNIC statistics (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add helper for printing ethtool strings (Jonathan Toppins) [1468286]
-- [netdrv] nfp: don't report standard netdev statistics in ethtool (Jonathan Toppins) [1468286]
-- [netdrv] nfp: allow retreiving management FW logs on representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: provide ethtool_drvinfo on representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: link basic ethtool ops to representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: process control messages in workqueue in flower app (Jonathan Toppins) [1468286]
-- [netdrv] nfp: send control message when MAC representors are created (Jonathan Toppins) [1468286]
-- [netdrv] nfp: only use direct firmware requests (Jonathan Toppins) [1468286]
-- [kernel] firmware: define a facade for request_firmware_direct() (Jonathan Toppins) [1468286]
-- [base] firmware loader: simplify holding module for request_firmware (Jonathan Toppins) [1468286]
-- [netdrv] nfp: look for firmware image by device serial number and PCI name (Jonathan Toppins) [1468286]
-- [netdrv] nfp: remove the probe deferral when FW not present (Jonathan Toppins) [1468286]
-- [netdrv] nfp: set config bit (ifup/ifdown) on netdev open/close (Jonathan Toppins) [1468286]
-- [netdrv] igb: Use smp_rmb rather than read_barrier_depends (Corinna Vinschen) [1533447]
-- [netdrv] igb: Fix TX map failure path (Corinna Vinschen) [1533447]
-- [netdrv] igb: check memory allocation failure (Corinna Vinschen) [1533447]
-- [netdrv] e1000e: Fix e1000_check_for_copper_link_ich8lan return value (David Arcari) [1532240]
-- [netdrv] e1000e: fix the use of magic numbers for buffer overrun issue (David Arcari) [1532240]
-
-* Mon Jan 15 2018 Rafael Aquini <aquini@redhat.com> [3.10.0-830.el7]
-- [crypto] cryptd: Add cryptd_max_cpu_qlen module parameter (Jon Maxwell) [1522991]
-- [netdrv] revert "include linux/if.h, linux/ip.h and linux/in6.h" (Ivan Vecera) [1525606]
-- [netdrv] mlxsw: include explicitly linux/if.h to avoid build failure (Ivan Vecera) [1525606]
-- [x86] hyper-v: do kaiser_add_mapping() for HVCLOCK_TSC_PAGE (Vitaly Kuznetsov) [1533184]
-- [x86] spec_ctrl: move vmexit rmb in the last branch before IBRS (Andrea Arcangeli) [1533250]
-- [x86] spec_ctrl: satisfy the barrier like semantics of IBRS (Andrea Arcangeli) [1533250]
-- [s390] add ppa to system call and program check path (Jon Masters) [1532708]
-- [s390] spinlock: add gmb memory barrier (Jon Masters) [1532708]
-- [s390] introduce CPU alternatives (Jon Masters) [1532708]
-- [powerpc] spinlock: add gmb memory barrier (Mauricio Oliveira) [1531710]
-- [powerpc] Prevent Meltdown attack with L1-D$ flush (Mauricio Oliveira) [1531710]
-
-* Tue Jan 09 2018 Rafael Aquini <aquini@redhat.com> [3.10.0-829.el7]
-- [kernel] locking/barriers: prevent speculative execution based on Coverity scan results (Josh Poimboeuf) [1519786] {CVE-2017-5753}
-- [kernel] x86/spec_ctrl: don't call ptrace_has_cap in the IBPB ctx switch optimization (Andrea Arcangeli) [1531362]
-- [x86] kaiser/efi: unbreak tboot (Andrea Arcangeli) [1531851]
-- [x86] cpuidle_idle_call: fix double local_irq_enable() (Andrea Arcangeli) [1528420]
-- [x86] x86/kaiser/efi: unbreak EFI old_memmap (Andrea Arcangeli) [1531559]
-- [x86] kvm: x86: fix RSM when PCID is non-zero (Paolo Bonzini) [1530711]
-- [x86] x86/smpboot: Do not use smp_num_siblings in __max_logical_packages calculation (Prarit Bhargava) [1519503]
-- [x86] x86/topology: Add topology_max_smt_threads() (Prarit Bhargava) [1519503]
-- [net] ipv6: fix a potential deadlock in do_ipv6_setsockopt() (Hangbin Liu) [1527255]
-- [net] ipv4: fix a potential deadlock in mcast getsockopt() path (Hangbin Liu) [1527255]
-- [net] xfrm: fix null pointer dereference on state and tmpl sort (Sabrina Dubroca) [1522665]
-- [net] sit: update frag_off info (Hangbin Liu) [1518472]
-- [lib] idr_ext: Refactor idr_alloc_ext(), remove cast from idr_get_next_ext() (Ivan Vecera) [1509477]
-- [net] netfilter: uapi: correct UNTRACKED conntrack state bit number (Florian Westphal) [1526883]
-- [net] preserve behavior of ether_setup and allocate_etherdev_mqs (Ivan Vecera) [1527175]
-- [net] remove MTU limits for dummy and ifb device (Ivan Vecera) [1527175]
-- [net] dummy: expend mtu range for dummy device (Ivan Vecera) [1527175]
-- [net] remove MTU limits on a few ether_setup callers (Ivan Vecera) [1527175]
-- [net] dccp: use-after-free in DCCP code (Stefano Brivio) [1526271] {CVE-2017-8824}
-- [crypto] aesni: fix ivsize for generic gcm(aes) (Sabrina Dubroca) [1523032]
-- [net] ipv6: set all.accept_dad to 0 by default (Florian Westphal) [1515785]
-- [net] vsock: Don't set sk_state to TCP_CLOSE before testing it (Stefano Brivio) [1524204]
-- [net] devlink: Fix devlink_dpipe_table_register() stub signature. (Ivan Vecera) [1521093]
-- [net] devlink: Add IPv6 header for dpipe (Ivan Vecera) [1521093]
-- [net] devlink: Move dpipe entry clear function into devlink (Ivan Vecera) [1521093]
-- [net] devlink: Add support for dynamic table size (Ivan Vecera) [1521093]
-- [net] devlink: Add IPv4 header for dpipe (Ivan Vecera) [1521093]
-- [net] devlink: Add Ethernet header for dpipe (Ivan Vecera) [1521093]
-- [net] geneve: only configure or fill UDP_ZERO_CSUM6_RX/TX info when CONFIG_IPV6 (Hangbin Liu) [1520210]
-- [net] geneve: fix fill_info when link down (Hangbin Liu) [1520210]
-- [net] sched: cbq: create block for q->link.block (Eelco Chaudron) [1515911]
-- [net] netfilter: ipset: Fix race between dump and swap (Davide Caratti) [1488131]
-- [net] netfilter: ipset: fix race condition in ipset save, swap and delete (Davide Caratti) [1488131]
-- [net] netfilter: ipset: Make sure listing doesn't grab a set which is just being destroyed. (Davide Caratti) [1487985]
-
-* Mon Jan 08 2018 Rafael Aquini <aquini@redhat.com> [3.10.0-828.el7]
-- [fs] mnt: Take unprivileged use of the mntns out of tech preview ("Eric W. Biederman") [1487751]
-- [fs] mnt: Make may_detach_mounts one-way and use it in copy_mnt_ns ("Eric W. Biederman") [1487751]
-- [fs] selftests/capabilities: Fix the test_execve test ("Eric W. Biederman") [1487751]
-- [fs] mnt: Make propagate_umount less slow for overlapping mount propagation trees ("Eric W. Biederman") [1487751]
-- [fs] mnt: In propgate_umount handle visiting mounts in any order ("Eric W. Biederman") [1487751]
-- [fs] mnt: In umount propagation reparent in a separate pass ("Eric W. Biederman") [1487751]
-- [fs] don't forget to put old mntns in mntns_install ("Eric W. Biederman") [1487751]
-- [fs] make sure that mntns_install() doesn't end up with referral for root ("Eric W. Biederman") [1487751]
-- [fs] path_init(): don't bother with checking MAY_EXEC for LOOKUP_ROOT ("Eric W. Biederman") [1487751]
-- [fs] make sure that fchdir() won't accept referral points, etc ("Eric W. Biederman") [1487751]
-- [fs] mnt: Tuck mounts under others instead of creating shadow/side mounts ("Eric W. Biederman") [1487751]
-- [fs] Better permission checking for submounts ("Eric W. Biederman") [1487751]
-- [fs] reorganize do_make_slave() ("Eric W. Biederman") [1487751]
-- [fs] namespace.c: constify struct path passed to a bunch of primitives ("Eric W. Biederman") [1487751]
-- [fs] Constify path_is_under()'s arguments ("Eric W. Biederman") [1487751]
-- [fs] namespace.c: path_is_under can be boolean ("Eric W. Biederman") [1487751]
-- [fs] mnt: Add a per mount namespace limit on the number of mounts ("Eric W. Biederman") [1487751]
-- [fs] Treat foreign mounts as nosuid ("Eric W. Biederman") [1487751]
-- [fs] Limit file caps to the user namespace of the super block ("Eric W. Biederman") [1487751]
-- [fs] userns: Remove the now unnecessary FS_USERNS_DEV_MOUNT flag ("Eric W. Biederman") [1487751]
-- [fs] userns: Remove implicit MNT_NODEV fragility ("Eric W. Biederman") [1487751]
-- [fs] mnt: Simplify mount_too_revealing ("Eric W. Biederman") [1487751]
-- [fs] vfs: Generalize filesystem nodev handling ("Eric W. Biederman") [1487751]
-- [fs] ipc/mqueue: The mqueue filesystem should never contain executables ("Eric W. Biederman") [1487751]
-- [fs] kernfs: The cgroup filesystem also benefits from SB_I_NOEXEC ("Eric W. Biederman") [1487751]
-- [fs] mnt: Move the FS_USERNS_MOUNT check into sget_userns ("Eric W. Biederman") [1487751]
-- [fs] Add user namespace member to struct super_block ("Eric W. Biederman") [1487751]
-- [fs] proc: Convert proc_mount to use mount_ns ("Eric W. Biederman") [1487751]
-- [fs] vfs: Pass data, ns, and ns->userns to mount_ns ("Eric W. Biederman") [1487751]
-- [fs] mnt: Refactor fs_fully_visible into mount_too_revealing ("Eric W. Biederman") [1487751]
-- [fs] mnt: Account for MS_RDONLY in fs_fully_visible ("Eric W. Biederman") [1487751]
-- [fs] mnt: fs_fully_visible test the proper mount for MNT_LOCKED ("Eric W. Biederman") [1487751]
-- [fs] mnt: If fs_fully_visible fails call put_filesystem ("Eric W. Biederman") [1487751]
-- [fs] saner calling conventions for copy_mount_options() ("Eric W. Biederman") [1487751]
-- [fs] locks: Don't allow mounts in user namespaces to enable mandatory locking ("Eric W. Biederman") [1487751]
-- [fs] locks: Allow disabling mandatory locking at compile time ("Eric W. Biederman") [1487751]
-- [fs] mnt: fs_fully_visible enforce noexec and nosuid if !SB_I_NOEXEC ("Eric W. Biederman") [1487751]
-- [fs] vfs: Commit to never having exectuables on proc and sysfs ("Eric W. Biederman") [1487751]
-- [fs] mnt: Update fs_fully_visible to test for permanently empty directories ("Eric W. Biederman") [1487751]
-- [fs] sysctl: Allow creating permanently empty directories that serve as mountpoints ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Create mountpoints with sysfs_create_mount_point ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Add support for permanently empty directories to serve as mount points ("Eric W. Biederman") [1487751]
-- [fs] kernfs: Add support for always empty directories ("Eric W. Biederman") [1487751]
-- [fs] proc: Fix unbalanced hard link numbers ("Eric W. Biederman") [1487751]
-- [fs] proc: Allow creating permanently empty directories that serve as mount points ("Eric W. Biederman") [1487751]
-- [fs] gut proc_register() a bit ("Eric W. Biederman") [1487751]
-- [fs] Add helper functions for permanently empty directories ("Eric W. Biederman") [1487751]
-- [fs] vfs: Ignore unlocked mounts in fs_fully_visible ("Eric W. Biederman") [1487751]
-- [fs] mnt: Modify fs_fully_visible to deal with locked ro nodev and atime ("Eric W. Biederman") [1487751]
-- [fs] mnt: Refactor the logic for mounting sysfs and proc in a user namespace ("Eric W. Biederman") [1487751]
-- [fs] new helper: __legitimize_mnt() ("Eric W. Biederman") [1487751]
-- [fs] mnt: Fix fs_fully_visible to verify the root directory is visible ("Eric W. Biederman") [1487751]
-- [fs] namespace: convert devname allocation to kstrdup_const ("Eric W. Biederman") [1487751]
-- [fs] mnt: Carefully set CL_UNPRIVILEGED in clone_mnt ("Eric W. Biederman") [1487751]
-- [fs] umount: Disallow unprivileged mount force ("Eric W. Biederman") [1487751]
-- [fs] mnt: Implicitly add MNT_NODEV on remount when it was implicitly added by mount ("Eric W. Biederman") [1487751]
-- [fs] vfs: move getname() from callers to do_mount() ("Eric W. Biederman") [1487751]
-- [fs] namespace: suppress 'may be used uninitialized' warnings ("Eric W. Biederman") [1487751]
-- [fs] mnt: Change the default remount atime from relatime to the existing value ("Eric W. Biederman") [1487751]
-- [fs] mnt: Correct permission checks in do_remount ("Eric W. Biederman") [1487751]
-- [fs] mnt: Move the test for MNT_LOCK_READONLY from change_mount_flags into do_remount ("Eric W. Biederman") [1487751]
-- [fs] mnt: Only change user settable mount flags in remount ("Eric W. Biederman") [1487751]
-- [fs] vfs: Fix a regression in mounting proc ("Eric W. Biederman") [1487751]
-- [fs] fs_is_visible only needs namespace_sem held shared ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix warning when creating a sysfs group without attributes ("Eric W. Biederman") [1487751]
-- [fs] exit: proc: don't try to flush /proc/tgid/task/tgid ("Eric W. Biederman") [1487751]
-- [fs] proc: Have net show up under /proc/<tgid>/task/<tid> ("Eric W. Biederman") [1487751]
-- [fs] kobject: fix NULL pointer derefernce in kobj_child_ns_ops ("Eric W. Biederman") [1487751]
-- [fs] kernfs: don't depend on d_find_any_alias() when generating notifications ("Eric W. Biederman") [1487751]
-- [fs] kernfs: Now that kernfs has been rebuilt reenable INTEL_RDT ("Eric W. Biederman") [1487751]
-- [fs] kernfs: kernfs_notify() must be useable from non-sleepable contexts ("Eric W. Biederman") [1487751]
-- [fs] kernfs: introduce kernfs_pin_sb() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: move the last knowledge of sysfs out from kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix attribute_group bin file path on removal ("Eric W. Biederman") [1487751]
-- [fs] sysfs.h: don't return a void-valued expression in sysfs_remove_file ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make sure read buffer is zeroed ("Eric W. Biederman") [1487751]
-- [fs] kernfs, sysfs, cgroup: restrict extra perm check on open to sysfs ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add back missing error check in kernfs_fop_mmap() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix a subdir count leak ("Eric W. Biederman") [1487751]
-- [fs] kernfs: make kernfs_notify() trigger inotify events too ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_root->supers list ("Eric W. Biederman") [1487751]
-- [fs] kernfs: protect lazy kernfs_iattrs allocation with mutex ("Eric W. Biederman") [1487751]
-- [fs] kernfs: cache atomic_write_len in kernfs_open_file ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix off by one error ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix namespace refcnt leak ("Eric W. Biederman") [1487751]
-- [fs] sysfs: create bin_attributes under the requested group ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix kernfs_node_from_dentry() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix hash calculation in kernfs_rename_ns() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add CONFIG_KERNFS ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kobject: add sysfs wrapper for kernfs_enable_ns() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_get_parent(), kernfs_name/path() and friends ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_node_from_dentry(), kernfs_root_from_sb() and kernfs_rename() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add kernfs_open_file->priv ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_ops->atomic_write_len ("Eric W. Biederman") [1487751]
-- [fs] kernfs: allow nodes to be created in the deactivated state ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add missing kernfs_active() checks in directory operations ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_syscall_ops->remount_fs() and ->show_options() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: rename kernfs_dir_ops to kernfs_syscall_ops ("Eric W. Biederman") [1487751]
-- [fs] kernfs: invoke dir_ops while holding active ref of the target node ("Eric W. Biederman") [1487751]
-- [fs] kernfs, sysfs, driver-core: implement kernfs_remove_self() and its wrappers ("Eric W. Biederman") [1487751]
-- [fs] kernfs: remove KERNFS_REMOVED ("Eric W. Biederman") [1487751]
-- [fs] kernfs: remove KERNFS_ACTIVE_REF and add kernfs_lockdep() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: remove kernfs_addrm_cxt ("Eric W. Biederman") [1487751]
-- [fs] kernfs: invoke kernfs_unmap_bin_file() directly from kernfs_deactivate() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: restructure removal path to fix possible premature return ("Eric W. Biederman") [1487751]
-- [fs] kernfs: replace kernfs_node->u.completion with kernfs_root->deactivate_waitq ("Eric W. Biederman") [1487751]
-- [fs] kernfs: make kernfs_deactivate() honor KERNFS_LOCKDEP flag ("Eric W. Biederman") [1487751]
-- [fs] fix "queues" uevent between network namespaces ("Eric W. Biederman") [1487751]
-- [fs] kernfs: associate a new kernfs_node with its parent on creation ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add struct dentry declaration in kernfs.h ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix get_active failure handling in kernfs_seq_*() ("Eric W. Biederman") [1487751]
-- [fs] kobject: Fix source code comment spelling ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add kernfs_dir_ops ("Eric W. Biederman") [1487751]
-- [fs] kernfs: allow negative dentries ("Eric W. Biederman") [1487751]
-- [fs] kernfs: update kernfs_rename_ns() to consider KERNFS_STATIC_NAME ("Eric W. Biederman") [1487751]
-- [fs] kernfs: mark static names with KERNFS_STATIC_NAME ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add REMOVED check to create and rename paths ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add @mode to kernfs_create_dir[_ns]() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs/kernfs/ in internal functions and whatever is left ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs/kernfs/ in global variables ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs/kernfs/ in constants ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs/kernfs/ in various data structures ("Eric W. Biederman") [1487751]
-- [fs] kernfs: drop s_ prefix from kernfs_node members ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs_dirent/kernfs_node/ and rename its friends accordingly ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix use-after-free in sysfs_kill_sb() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: bail early from kernfs_file_mmap() to avoid spurious lockdep warning ("Eric W. Biederman") [1487751]
-- [fs] kobject: fix memory leak in kobject_set_name_vargs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: remove duplicated include from file.c ("Eric W. Biederman") [1487751]
-- [fs] kobject: remove kset from sysfs immediately in kset_unregister() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement "trusted.*" xattr support ("Eric W. Biederman") [1487751]
-- [fs] kernfs: update sysfs_init_inode_attrs() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: remove cross inclusions of internal headers ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: implement kernfs_ns_enabled() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: make sysfs_dirent definition public ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move mount core code to fs/kernfs/mount.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare mount path for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: make super_blocks bind to different kernfs_roots ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: make inode number ida per kernfs_root ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Update __compat_only_sysfs_link_entry_to_kobj to it's upstream form ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: implement kernfs_create/destroy_root() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce sysfs_root_sd ("Eric W. Biederman") [1487751]
-- [fs] Don't return 0 from get_anon_bdev ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: no need to kern_mount() sysfs from sysfs_init() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: make sysfs_super_info->ns const ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: drop unused params from sysfs_fill_super() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move symlink core code to fs/kernfs/symlink.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move file core code to fs/kernfs/file.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move dir core code to fs/kernfs/dir.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move inode code to fs/kernfs/inode.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move internal decls to fs/kernfs/kernfs-internal.h ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs[_find_and]_get() and kernfs_put() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: revamp sysfs_dirent active_ref lockdep annotation ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: reorganize SYSFS_* constants ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_notify() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: add kernfs_ops->seq_{start|next|stop}() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: remove sysfs_add_one() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_create_file[_ns]() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: remove SYSFS_KOBJ_BIN_ATTR ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: add sysfs_dirent->s_attr.size ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_ops ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move sysfs_open_file to linux/kernfs.h ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare open, release, poll paths for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare mmap path for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare write path for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare read path for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_create_dir[_ns]() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: replace sysfs_dirent->s_dir.kobj and ->s_attr.[bin_]attr with ->priv ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_setattr() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_rename[_ns]() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_create_link() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_remove[_by_name[_ns]]() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: add skeletons for kernfs ("Eric W. Biederman") [1487751]
-- [fs] kernfs: Temporarily remove kernfs the change from sysfs to kernfs can be replayed ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make __sysfs_add_one() fail if the parent isn't a directory ("Eric W. Biederman") [1487751]
-- [fs] sysfs: drop kobj_ns_type handling, take #2 ("Eric W. Biederman") [1487751]
-- [fs] revert "sysfs: handle duplicate removal attempts in sysfs_remove_group()" ("Eric W. Biederman") [1487751]
-- [fs] sysfs: use a separate locking class for open files depending on mmap ("Eric W. Biederman") [1487751]
-- [fs] sysfs: handle duplicate removal attempts in sysfs_remove_group() ("Eric W. Biederman") [1487751]
-- [fs] revert "sysfs: drop kobj_ns_type handling" ("Eric W. Biederman") [1487751]
-- [fs] sysfs: rename sysfs_assoc_lock and explain what it's about ("Eric W. Biederman") [1487751]
-- [fs] sysfs: use generic_file_llseek() for sysfs_file_operations ("Eric W. Biederman") [1487751]
-- [fs] sysfs: return correct error code on unimplemented mmap() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: separate out dup filename warning into a separate function ("Eric W. Biederman") [1487751]
-- [fs] sysfs: move sysfs_hash_and_remove() to fs/sysfs/dir.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove unused sysfs_get_dentry() prototype ("Eric W. Biederman") [1487751]
-- [fs] sysfs: honor bin_attr.attr.ignore_lockdep ("Eric W. Biederman") [1487751]
-- [fs] sysfs: merge sysfs_elem_bin_attr into sysfs_elem_attr ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix sysfs_write_file for bin file ("Eric W. Biederman") [1487751]
-- [fs] sysfs/bin: Fix size handling overflow for bin_attribute ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make sysfs_file_ops() follow ignore_lockdep flag ("Eric W. Biederman") [1487751]
-- [fs] sysfs: merge regular and bin file handling ("Eric W. Biederman") [1487751]
-- [fs] sysfs: prepare open path for unified regular / bin file handling ("Eric W. Biederman") [1487751]
-- [fs] sysfs: copy bin mmap support from fs/sysfs/bin.c to fs/sysfs/file.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs: add sysfs_bin_read() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: prepare path write for unified regular / bin file handling ("Eric W. Biederman") [1487751]
-- [fs] sysfs: collapse fs/sysfs/bin.c::fill_read() into read() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: skip bin_buffer->buffer while reading ("Eric W. Biederman") [1487751]
-- [fs] sysfs: use seq_file when reading regular files ("Eric W. Biederman") [1487751]
-- [fs] sysfs: use transient write buffer ("Eric W. Biederman") [1487751]
-- [fs] sysfs: add sysfs_open_file->sd and ->file ("Eric W. Biederman") [1487751]
-- [fs] sysfs: rename sysfs_buffer to sysfs_open_file ("Eric W. Biederman") [1487751]
-- [fs] sysfs: add sysfs_open_file_mutex ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove sysfs_buffer->ops ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove sysfs_buffer->needs_read_fill ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove unused sysfs_buffer->pos ("Eric W. Biederman") [1487751]
-- [fs] sysfs: introduce [__]sysfs_remove() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make __sysfs_remove_dir() recursive ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove sysfs_addrm_cxt->parent_sd ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Allow mounting without CONFIG_NET ("Eric W. Biederman") [1487751]
-- [fs] sysfs: @name comes before @ns ("Eric W. Biederman") [1487751]
-- [fs] sysfs: clean up sysfs_get_dirent() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: drop kobj_ns_type handling ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Remove namespace handling from __compat_only_sysfs_link_entry_to_kobj ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove ktype->namespace() invocations in symlink code ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove ktype->namespace() invocations in directory code ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make attr namespace interface less convoluted ("Eric W. Biederman") [1487751]
-- [fs] sysfs: drop semicolon from to_sysfs_dirent() definition ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Restrict mounting sysfs ("Eric W. Biederman") [1487751]
-- [fs] userns: Better restrictions on when proc and sysfs can be mounted ("Eric W. Biederman") [1487751]
-- [fs] sysfs.h: remove attr_name() macro ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix up minor coding style issues in sysfs.h ("Eric W. Biederman") [1487751]
-- [fs] sysfs: sysfs.h: fix coding style issues ("Eric W. Biederman") [1487751]
-- [fs] sysfs: file.c: fix up broken string warnings ("Eric W. Biederman") [1487751]
-- [fs] sysfs: dir.c: fix up odd do/while indentation ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix up uaccess.h coding style warnings ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix up 80 column coding style issues ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix up space coding style issues ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove trailing whitespace ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix placement of EXPORT_SYMBOL() ("Eric W. Biederman") [1487751]
-- [fs] sysfs.h: fix __BIN_ATTR_RW() ("Eric W. Biederman") [1487751]
-- [fs] convert sysfs ("Eric W. Biederman") [1487751]
-- [fs] kobject: sanitize argument for format string ("Eric W. Biederman") [1487751]
-- [fs] sysfs_notify is only possible on file attributes ("Eric W. Biederman") [1487751]
-- [fs] sysfs: kill sysfs_sb declaration in fs/sysfs/inode.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs: sysfs_link_sibling(): fix typo in comment ("Eric W. Biederman") [1487751]
-- [fs] overlayfs: Replace vfs_readdir with iterate_dir ("Eric W. Biederman") [1487751]
-- [fs] vfs: delete vfs_readdir function declaration ("Eric W. Biederman") [1487751]
-- [fs] switch dcache_readdir() users to ->iterate() ("Eric W. Biederman") [1487751]
-- [fs] introduce ->iterate(), ctx->pos, dir_emit() ("Eric W. Biederman") [1487751]
-- [fs] introduce iterate_dir() and dir_context ("Eric W. Biederman") [1487751]
-- [fs] powerpc/pci: Reorder pci bus/bridge unregistration during PHB removal ("Eric W. Biederman") [1487751]
-- [fs] scsi: mpt: Move scsi_remove_host() out of mptscsih_remove_host() ("Eric W. Biederman") [1487751]
-- [fs] scsi: sas: move scsi_remove_host call into sas_remove_host ("Eric W. Biederman") [1487751]
-- [fs] scsi_transport_sas: move bsg destructor into sas_rphy_remove ("Eric W. Biederman") [1487751]
-
-* Fri Jan 05 2018 Rafael Aquini <aquini@redhat.com> [3.10.0-827.el7]
-- [x86] entry: Invoke TRACE_IRQS_IRETQ in paranoid_userspace_restore_all (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] cpu: fix get_scattered_cpu_leaf for IBPB feature (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: show added cpuid flags in /proc/cpuinfo after late microcode update (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: svm: spec_ctrl at vmexit needs per-cpu areas functional (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: init_tss is supposed to go in the PAGE_ALIGNED per-cpu section (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: Eliminate redundnat FEATURE Not Present messages (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: skip IBRS/CR3 restore when paranoid exception returns to userland (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: set IBRS during resume from RAM if ibrs_enabled is 2 (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: allow use_ibp_disable only if both SPEC_CTRL and IBPB_SUPPORT are missing (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: Documentation spec_ctrl.txt (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: remove irqs_disabled() check from intel_idle() (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: use enum when setting ibrs/ibpb_enabled (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: undo speculation barrier for ibrs_enabled and noibrs_cmdline (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: introduce ibpb_enabled = 2 for IBPB instead of IBRS (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: introduce SPEC_CTRL_PCP_ONLY_IBPB (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: cleanup s/flush/sync/ naming when sending IPIs (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: set IBRS during CPU init if in ibrs_enabled == 2 (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: use IBRS_ENABLED instead of 1 (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: allow the IBP disable feature to be toggled at runtime (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: always initialize save_reg in ENABLE_IBRS_SAVE_AND_CLOBBER (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: ibrs_enabled() is expected to return > 1 (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: issue a __spec_ctrl_ibpb if a credential check isn't possible (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] ibpb: don't optimize spec_cntrl_ibpb on PREEMPT_RCU (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: clear registers after 32bit syscall stackframe is setup (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: reload spec_ctrl cpuid in all microcode load paths (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: Prevent unwanted speculation without IBRS (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Remove trampoline check from paranoid entry path (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Fix paranoid_exit() trampoline clobber (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Simplify trampoline stack restore code (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: remove SPEC_CTRL_DEBUG code (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: add noibrs noibpb boot options (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] syscall: Clear unused extra registers on 32-bit compatible syscall entrance (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: cleanup unnecessary ptregscall_common function (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: CLEAR_EXTRA_REGS and extra regs save/restore (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] syscall: Clear unused extra registers on syscall entrance (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: rescan cpuid after a late microcode update (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: add debugfs ibrs_enabled ibpb_enabled (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: consolidate the spec control boot detection (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm/spec_ctrl: allow IBRS to stay enabled in host userland (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: add debug aid to test the entry code without microcode (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: move stuff_RSB in spec_ctrl.h (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Stuff RSB for entry to kernel for non-SMEP platform (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Only set IBPB when the new thread cannot ptrace current thread (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Set IBPB upon context switch (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] idle: Disable IBRS when offlining cpu and re-enable on wakeup (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] idle: Disable IBRS entering idle and enable it on wakeup (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: implement spec ctrl C methods (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: save IBRS MSR value in save_paranoid for NMI (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] enter: Use IBRS on syscall and interrupts (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: swap rdx with rsi for nmi nesting detection (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: spec_ctrl_pcp and kaiser_enabled_pcp in same cachline (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: use per-cpu knob instead of ALTERNATIVES for ibpb and ibrs (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] enter: MACROS to set/clear IBRS and set IBPB (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: x86: add SPEC_CTRL to MSR and CPUID lists (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: svm: add MSR_IA32_SPEC_CTRL and MSR_IA32_PRED_CMD (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] svm: Set IBPB when running a different VCPU (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: vmx: add MSR_IA32_SPEC_CTRL and MSR_IA32_PRED_CMD (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: vmx: Set IBPB when running a different VCPU (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: x86: clear registers on VM exit (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: Pad RSB on VM transition (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] cpu/amd: Control indirect branch predictor when SPEC_CTRL not available (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] feature: Report presence of IBPB and IBRS control (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] feature: Enable the x86 feature to control Speculation (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [tools] objtool: Don't print 'call dest' warnings for ignored functions (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [fs] udf: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [kernel] fs: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [kernel] userns: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [scsi] qla2xxx: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [netdrv] p54: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [netdrv] carl9170: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [media] uvcvideo: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] cpu/amd: Remove now unused definition of MFENCE_RDTSC feature (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] cpu/amd: Make the LFENCE instruction serialized (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [kernel] locking/barriers: introduce new memory barrier gmb() (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: consider the init_mm.pgd a kaiser pgd (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: convert userland visible "kpti" name to "pti" (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: __load_cr3 in resume from RAM after kernel gs has been restored (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: fix pgd freeing in error path (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: disable global pages by default with KAISER (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] revert "x86/mm/kaiser: Disable global pages by default with KAISER" (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: Replace kaiser with kpti to sync with upstream (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add "kaiser" and "nokaiser" boot options (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map the trace idt tables in userland shadow pgd (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: fix RESTORE_CR3 crash in kaiser_stop_machine (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [security] x86/mm/kaiser: use stop_machine for enable/disable knob (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: use atomic ops to poison/unpoison user pagetables (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: use invpcid to flush the two kaiser PCID AISD (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: use two PCID ASIDs optimize the TLB during enter/exit kernel (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: stop patching flush_tlb_single (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: use PCID feature to make user and kernel switches faster (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: If INVPCID is available, use it to flush global mappings (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/64: Fix reboot interaction with CR4.PCIDE (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/64: Initialize CR4.PCIDE early (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Add a 'noinvpcid' boot option to turn off INVPCID (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Add the 'nopcid' boot option to turn off PCID (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: validate trampoline stack (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Move SYSENTER_stack to the beginning of struct tss_struct (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [kernel] x86/mm/kaiser: isolate the user mapped per cpu areas (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: selective boot time defaults (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: handle call to xen_pv_domain() on PREEMPT_RT (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser/xen: Dynamically disable KAISER when running under Xen PV (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [security] x86/mm/kaiser: add Kconfig (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: avoid false positives during non-kaiser pgd updates (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: Respect disabled CPU features (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: trampoline stack comments (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: stack trampoline (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: remove paravirt clock warning (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: re-enable vsyscalls (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: allow to build KAISER with KASRL (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: allow KAISER to be enabled/disabled at runtime (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: un-poison PGDs at runtime (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add a function to check for KAISER being enabled (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add debugfs file to turn KAISER on/off at runtime (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: disable native VSYSCALL (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map virtually-addressed performance monitoring buffers (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map debug IDT tables (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add kprobes text section (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map trace interrupt entry (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map entry stack per-cpu areas (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map dynamically-allocated LDTs (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: make sure static PGDs are 8k in size (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: allow NX poison to be set in p4d/pgd (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: unmap kernel from userspace page tables (core patch) (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: mark per-cpu data structures required for entry/exit (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: introduce user-mapped per-cpu areas (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add cr3 switches to entry code (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: remove scratch registers (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: prepare assembly for entry/exit CR3 switching (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: Disable global pages by default with KAISER (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Document X86_CR4_PGE toggling behavior (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/tlb: Make CR4-based TLB flushes more robust (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Do not set _PAGE_USER for init_mm page tables (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] increase robusteness of bad_iret fixup handler (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] perf/x86/intel/uncore: Fix memory leaks on allocation failures (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [mm] fix bad rss-counter if remap_file_pages raced migration (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-
-* Thu Dec 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-826.el7]
-- [tty] serial: 8250_pci: Add Amazon PCI serial device ID (Vitaly Kuznetsov) [1527545]
-- [tools] perf vendor events: Use more flexible pattern matching for CPU identification for mapfile.csv (Jiri Olsa) [1523766]
-- [tools] perf vendor events powerpc: remove suffix in mapfile (Jiri Olsa) [1523766]
-- [tools] perf vendor events: Add POWER9 PVRs to mapfile (Jiri Olsa) [1523766]
-- [tools] perf vendor events: Add POWER9 PMU events (Jiri Olsa) [1523766]
-- [tools] perf pmu-events: Support additional POWER8+ PVR in mapfile (Jiri Olsa) [1523766]
-- [tools] perf pmu: Extract function to get JSON alias map (Jiri Olsa) [1523766]
-- [tools] perf pmu: Add helper function is_pmu_core to detect PMU CORE devices (Jiri Olsa) [1523766]
-- [powerpc] Fix /proc/cpuinfo revision for POWER9 DD2 (David Gibson) [1526339]
-- [cpufreq] intel_pstate: Add support for Gemini Lake (Steve Best) [1456555]
-- [cpufreq] intel_pstate: Broxton support (Steve Best) [1456555]
-- [security] ima: log message to module appraisal error (Bruno Eduardo de Oliveira Meneguele) [1469473]
-- [security] ima: check signature enforcement against cmdline param instead of CONFIG (Bruno Eduardo de Oliveira Meneguele) [1469473]
-- [kernel] module: export module signature enforcement status (Bruno Eduardo de Oliveira Meneguele) [1469473]
-- [firmware] fw_cfg: write vmcoreinfo details (Baoquan He) [1493125]
-- [firmware] fw_cfg: do DMA read operation (Baoquan He) [1493125]
-- [firmware] fw_cfg: add DMA register (Baoquan He) [1493125]
-- [firmware] fw_cfg: fix driver remove (Baoquan He) [1493125]
-- [firmware] fw_cfg: fix the command line module name (Baoquan He) [1493125]
-- [firmware] qemu_fw_cfg.c: potential unintialized variable (Baoquan He) [1493125]
-- [firmware] qemu_fw_cfg.c: hold ACPI global lock during device access (Baoquan He) [1493125]
-- [firmware] qemu_fw_cfg: don't leak kobj on init error (Baoquan He) [1493125]
-- [firmware] fw_cfg register offsets on supported architectures only (Baoquan He) [1493125]
-- [firmware] qemu_fw_cfg.c: fix typo FW_CFG_DATA_OFF (Baoquan He) [1493125]
-- [firmware] create directory hierarchy for sysfs fw_cfg entries (Baoquan He) [1493125]
-- [firmware] introduce sysfs driver for QEMU's fw_cfg device (Baoquan He) [1493125]
-- [acpi] acpi / platform: provide default DMA mask (Baoquan He) [1493125]
-- [infiniband] ib/mlx4: Add contig support for control objects (Kamal Heib) [1520141]
-- [infiniband] ib/mlx4: Use optimal numbers of MTT entries (Kamal Heib) [1520141]
-- [infiniband] ib/mlx4: Fix RSS's QPC attributes assignments (Kamal Heib) [1520141]
-- [infiniband] ib/mlx4: Add report for RSS capabilities by vendor channel (Kamal Heib) [1520141]
-- [infiniband] rdma/netlink: Fix general protection fault (Don Dutile) [1523865]
-- [infiniband] ib/mlx4: Fix RSS hash fields restrictions (Don Dutile) [1523865]
-- [infiniband] ib/core: Don't enforce PKey security on SMI MADs (Don Dutile) [1523865]
-- [infiniband] ib/core: Bound check alternate path port number (Don Dutile) [1523865]
-
-* Tue Dec 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-825.el7]
-- [scsi] lpfc: Fix crash after bad bar setup on driver attachment (Dick Kennedy) [1441965]
-- [fs] cifs: fix NULL deref in SMB2_read (Leif Sahlberg) [1508380]
-- [fs] nfs: don't wait on commit in nfs_commit_inode() if there were no commit requests (Scott Mayhew) [1514371]
-- [fs] cifs: check rsp for NULL before dereferencing in SMB2_open (Leif Sahlberg) [1516680]
-- [fs] nfs: fix a deadlock in nfs client initialization (Scott Mayhew) [1506382]
-- [fs] nfsv4.0: Fix a lock leak in nfs40_walk_client_list (Scott Mayhew) [1506382]
-- [fs] nfs: Create a common nfs4_match_client() function (Scott Mayhew) [1506382]
-- [fs] blktrace: use existing disk debugfs directory (Eric Sandeen) [1521092]
-- [fs] debugfs: add debugfs_lookup() (Eric Sandeen) [1521092]
-- [x86] mm: revert x86_64 and arm64 ELF_ET_DYN_BASE base changes (Bhupesh Sharma) [1432288]
-- [fs] binfmt_elf: safely increment argv pointers (Bhupesh Sharma) [1432288]
-- [powerpc] move ELF_ET_DYN_BASE to 4GB / 4MB (Bhupesh Sharma) [1432288]
-- [x86] binfmt_elf: use ELF_ET_DYN_BASE only for PIE (Bhupesh Sharma) [1432288]
-- [netdrv] iwlwifi: mvm: support version 7 of the SCAN_REQ_UMAC FW command (Stanislaw Gruszka) [1525027]
-- [netdrv] mac80211_hwsim: Fix memory leak in hwsim_new_radio_nl() (Stanislaw Gruszka) [1501882]
-- [netdrv] brcmfmac: change driver unbind order of the sdio function devices (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: mvm: enable RX offloading with TKIP and WEP (Stanislaw Gruszka) [1516644 1501882]
-- [netdrv] iwlwifi: mvm: fix packet injection (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add new cards for 9260 and 22000 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: mvm: flush queue before deleting ROC (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: mvm: don't use transmit queue hang detection when it is not possible (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: mvm: mark MIC stripped MPDUs (Stanislaw Gruszka) [1516644 1501882]
-- [netdrv] iwlwifi: fix PCI IDs and configuration mapping for 9000 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add new cards for 8260 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add new cards for 8265 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add new cards for a000 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: pcie: sort IDs for the 9000 series for easier comparisons (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add a new a000 device (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: fix wrong struct for a000 device (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: fix firmware names for 9000 and A000 series hw (Stanislaw Gruszka) [1501882]
-- [netdrv] rtlwifi: fix uninitialized rtlhal->last_suspend_sec time (Stanislaw Gruszka) [1501882]
-- [netdrv] rtlwifi: rtl8192ee: Fix memory leak when loading firmware (Stanislaw Gruszka) [1501882]
-- [netdrv] rt2x00usb: mark device removed when get ENOENT usb error (Stanislaw Gruszka) [1501882]
-
-* Thu Dec 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-824.el7]
-- [netdrv] liquidio: do not consider packets dropped by network stack as driver Rx dropped (Felix Manlunas) [1510590]
-- [netdrv] liquidio: Fix an issue with multiple switchdev enable disables (Felix Manlunas) [1510590]
-- [netdrv] liquidio: bump up driver version to 1.7.0 to match newer NIC firmware (Felix Manlunas) [1510590]
-- [netdrv] liquidio: synchronize VF representor names with NIC firmware (Felix Manlunas) [1510590]
-- [netdrv] liquidio: remove redundant setting of inst_processed to zero (Felix Manlunas) [1510590]
-- [netdrv] liquidio: Configure switchdev with devlink (Felix Manlunas) [1510590]
-- [netdrv] liquidio: switchdev support for LiquidIO NIC (Felix Manlunas) [1510590]
-- [netdrv] liquidio: get rid of false alarm "Unknown cmd 27" in dmesg (Felix Manlunas) [1510590]
-- [netdrv] liquidio: fix kernel panic in VF driver (Felix Manlunas) [1506085 1510590]
-- [netdrv] liquidio: xmit_more support (Felix Manlunas) [1510590]
-- [netdrv] liquidio: deprecate 1-bit flag indicating watchdog kernel thread is running (Felix Manlunas) [1510590]
-- [netdrv] liquidio: pass date and time info to NIC firmware (Felix Manlunas) [1510590]
-- [netdrv] liquidio: fix timespec64_to_ns typo (Felix Manlunas) [1510590]
-- [netdrv] liquidio: mark expected switch fall-through in octeon_destroy_resources (Felix Manlunas) [1510590]
-- [netdrv] liquidio: remove unnecessary NULL check before kfree in delete_glists (Felix Manlunas) [1510590]
-- [netdrv] liquidio: update module parameter fw_type to reflect firmware type loaded (Felix Manlunas) [1510590]
-- [netdrv] liquidio: verify firmware version when auto-loaded from flash (Felix Manlunas) [1510590]
-- [netdrv] liquidio: allow override of firmware present in flash (Felix Manlunas) [1510590]
-- [netdrv] nfp: fix XPB register reads in debug dump (John Linville) [1525879]
-- [netdrv] nfp: fix absolute rtsym handling in debug dump (John Linville) [1525879]
-- [netdrv] nfp: flower: improve hashing of flows (John Linville) [1525600]
-- [netdrv] nfp: flower: restore RTNL locking around representor updates (John Linville) [1525600]
-- [netdrv] nfp: process MTU updates from firmware flower app (John Linville) [1525600]
-- [netdrv] nfp: process control messages in workqueue in flower app (John Linville) [1525600]
-- [netdrv] nfp: dump indirect ME CSRs (John Linville) [1520411]
-- [netdrv] nfp: dump CPP, XPB and direct ME CSRs (John Linville) [1520411]
-- [netdrv] nfp: dump firmware name (John Linville) [1520411]
-- [netdrv] nfp: dump single hwinfo field by key (John Linville) [1520411]
-- [netdrv] nfp: dump all hwinfo (John Linville) [1520411]
-- [netdrv] nfp: dump rtsyms (John Linville) [1520411]
-- [netdrv] nfp: dumpspec TLV traversal (John Linville) [1520411]
-- [netdrv] nfp: dump prolog (John Linville) [1520411]
-- [netdrv] nfp: load debug dump spec (John Linville) [1520411]
-- [netdrv] nfp: debug dump ethtool ops (John Linville) [1520411]
-- [netdrv] qede: Configure UDP ports in local context (Don Dutile) [1462432]
-- [netdrv] qede: Move all UDP port notifiers to single function (Don Dutile) [1462432]
-
-* Wed Dec 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-823.el7]
-- [i2c] revert I2C updates changeset (Gopal Tiwari) [1456705]
-- [misc] rtsx: Fix symbol clashes (Daniel Bristot de Oliveira) [1457800]
-- [misc] rtsx: Add support for RTS5260 (Daniel Bristot de Oliveira) [1457800]
-- [misc] mfd: rtsx: Do retry when DMA transfer error (Daniel Bristot de Oliveira) [1457800]
-- [misc] mfd: rts5249: Add support for RTS5250S power saving (Daniel Bristot de Oliveira) [1457800]
-- [scsi] run queue if SCSI device queue isn't ready and queue is idle (Ming Lei) [1523029]
-- [hwmon] ntc_thermistor: Fix dependencies (Gopal Tiwari) [1524404]
-- [block] drain queue before waiting for q_usage_counter becoming zero (Ming Lei) [1523022]
-- [target] tcmu: reconfigure netlink attr changes (Maurizio Lombardi) [1507794]
-- [target] tcmu: Make dev_size configurable via userspace (Maurizio Lombardi) [1507794]
-- [target] tcmu: allow max block and global max blocks to be settable (Mike Christie) [1480721 1480434]
-- [target] return SAM_STAT_TASK_SET_FULL for TCM_OUT_OF_RESOURCES (Mike Christie) [1480721 1480434]
-- [target] tcmu: fix crash when removing the tcmu device (Mike Christie) [1480721 1480434]
-- [target] tcmu: make ring buffer timer configurable (Mike Christie) [1480721 1480434]
-- [target] tcmu: Use sense_reason_t in tcmu_queue_cmd_ring (Mike Christie) [1480721 1480434]
-- [target] tcmu: sync up configfs attr setup (Mike Christie) [1507794 1480721 1480434]
-- [target] tcmu: Fix possbile memory leak / OOPs when recalculating cmd base size (Mike Christie) [1480721 1480434]
-- [target] tcmu: Fix flushing cmd entry dcache page (Mike Christie) [1480721 1480434]
-- [target] tcmu: Recalculate the tcmu_cmd size to save cmd area memories (Mike Christie) [1480721 1480434]
-- [target] tcmu: add io size helpers (Mike Christie) [1480721 1480434]
-- [netdrv] cxgb4: add new T6 pci device id's (Arjun Vynipadath) [1515315]
-- [netdrv] cxgb4: add new T5 pci device id's (Arjun Vynipadath) [1515315]
-- [netdrv] cxgb4: add new T6 pci device id's (Arjun Vynipadath) [1515315]
-- [netdrv] cxgb4: add new T5 pci device id's (Arjun Vynipadath) [1515315]
-- [netdrv] cxgb4: add new T5 pci device id's (Arjun Vynipadath) [1515315]
-
-* Wed Dec 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-822.el7]
-- [fs] ovl: don't follow redirects if redirect_dir=off (Miklos Szeredi) [1485392]
-- [fs] ovl: Put upperdentry if ovl_check_origin() fails (Miklos Szeredi) [1485392]
-- [fs] ovl: lockdep annotate of nested OVL_I(inode)->lock (Miklos Szeredi) [1485392]
-- [fs] ovl: do not cleanup unsupported index entries (Miklos Szeredi) [1485392]
-- [fs] ovl: handle ENOENT on index lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: fix EIO from lookup of non-indexed upper (Miklos Szeredi) [1485392]
-- [fs] ovl: Return -ENOMEM if an allocation fails ovl_lookup() (Miklos Szeredi) [1485392]
-- [fs] ovl: add NULL check in ovl_alloc_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: fix regression caused by exclusive upper/work dir protection (Miklos Szeredi) [1485392]
-- [fs] ovl: fix missing unlock_rename() in ovl_do_copy_up() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix dentry leak in ovl_indexdir_cleanup() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix dput() of ERR_PTR in ovl_cleanup_index() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix error value printed in ovl_lookup_index() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix false positive ESTALE on lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: check for bad and whiteout index on lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: do not cleanup directory and whiteout index entries (Miklos Szeredi) [1485392]
-- [fs] ovl: fix xattr get and set with selinux (Miklos Szeredi) [1485392]
-- [fs] ovl: remove unneeded check for IS_ERR() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix origin verification of index dir (Miklos Szeredi) [1485392]
-- [fs] ovl: mark parent impure on ovl_link() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix random return value on mount (Miklos Szeredi) [1485392]
-- [fs] ovl: mark parent impure and restore timestamp on ovl_link_up() (Miklos Szeredi) [1485392]
-- [fs] ovl: document copying layers restrictions with inodes index (Miklos Szeredi) [1485392]
-- [fs] ovl: cleanup orphan index entries (Miklos Szeredi) [1485392]
-- [fs] ovl: persistent overlay inode nlink for indexed inodes (Miklos Szeredi) [1485392]
-- [fs] ovl: implement index dir copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: move copy up lock out (Miklos Szeredi) [1485392]
-- [fs] ovl: rearrange copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: add flag for upper in ovl_entry (Miklos Szeredi) [1485392]
-- [fs] ovl: use struct copy_up_ctx as function argument (Miklos Szeredi) [1485392]
-- [fs] ovl: base tmpfile in workdir too (Miklos Szeredi) [1485392]
-- [fs] ovl: factor out ovl_copy_up_inode() helper (Miklos Szeredi) [1485392]
-- [fs] ovl: extract helper to get temp file in copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: defer upper dir lock to tempfile link (Miklos Szeredi) [1485392]
-- [fs] ovl: hash overlay non-dir inodes by copy up origin (Miklos Szeredi) [1485392]
-- [fs] ovl: cleanup bad and stale index entries on mount (Miklos Szeredi) [1485392]
-- [fs] ovl: lookup index entry for copy up origin (Miklos Szeredi) [1485392]
-- [fs] ovl: verify index dir matches upper dir (Miklos Szeredi) [1485392]
-- [fs] ovl: verify upper root dir matches lower root dir (Miklos Szeredi) [1485392]
-- [fs] ovl: introduce the inodes index dir feature (Miklos Szeredi) [1485392]
-- [fs] ovl: generalize ovl_create_workdir() (Miklos Szeredi) [1485392]
-- [fs] ovl: relax same fs constrain for ovl_check_origin() (Miklos Szeredi) [1485392]
-- [fs] ovl: get exclusive ownership on upper/work dirs (Miklos Szeredi) [1485392]
-- [fs] vfs: introduce inode 'inuse' lock (Miklos Szeredi) [1485392]
-- [fs] ovl: move cache and version to ovl_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: use ovl_inode mutex to synchronize concurrent copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: move impure to ovl_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: move redirect to ovl_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: move __upperdentry to ovl_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: compare inodes (Miklos Szeredi) [1485392]
-- [fs] ovl: use i_private only as a key (Miklos Szeredi) [1485392]
-- [fs] ovl: simplify getting inode (Miklos Szeredi) [1485392]
-- [fs] ovl: allocate an ovl_inode struct (Miklos Szeredi) [1485392]
-- [fs] ovl: fix nlink leak in ovl_rename() (Miklos Szeredi) [1485392]
-- [fs] ovl: don't set origin on broken lower hardlink (Miklos Szeredi) [1485392]
-- [fs] ovl: copy-up: don't unlock between lookup and link (Miklos Szeredi) [1485392]
-- [fs] tmpfs: generate random sb->s_uuid (Miklos Szeredi) [1485392]
-- [fs] ovl: filter trusted xattr for non-admin (Miklos Szeredi) [1485392]
-- [fs] ovl: mark upper merge dir with type origin entries "impure" (Miklos Szeredi) [1485392]
-- [fs] ovl: mark upper dir with type origin entries "impure" (Miklos Szeredi) [1485392]
-- [fs] ovl: remove unused arg from ovl_lookup_temp() (Miklos Szeredi) [1485392]
-- [fs] ovl: handle rename when upper doesn't support xattr (Miklos Szeredi) [1485392]
-- [fs] ovl: don't fail copy-up if upper doesn't support xattr (Miklos Szeredi) [1485392]
-- [fs] ovl: check on mount time if upper fs supports setting xattr (Miklos Szeredi) [1485392]
-- [fs] ovl: fix creds leak in copy up error path (Miklos Szeredi) [1485392]
-- [fs] ovl: select EXPORTFS (Miklos Szeredi) [1485392]
-- [fs] ovl: update documentation w.r.t. constant inode numbers (Miklos Szeredi) [1485392]
-- [fs] ovl: persistent inode numbers for upper hardlinks (Miklos Szeredi) [1485392]
-- [fs] ovl: merge getattr for dir and nondir (Miklos Szeredi) [1485392]
-- [fs] ovl: constant st_ino/st_dev across copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: persistent inode number for directories (Miklos Szeredi) [1485392]
-- [fs] ovl: set the ORIGIN type flag (Miklos Szeredi) [1485392]
-- [fs] ovl: lookup non-dir copy-up-origin by file handle (Miklos Szeredi) [1485392]
-- [fs] ovl: use an auxiliary var for overlay root entry (Miklos Szeredi) [1485392]
-- [fs] ovl: store file handle of lower inode on copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: check if all layers are on the same fs (Miklos Szeredi) [1485392]
-- [fs] ovl: do not set overlay.opaque on non-dir create (Miklos Szeredi) [1485392]
-- [fs] ovl: check IS_APPEND() on real upper inode (Miklos Szeredi) [1485392]
-- [fs] vfs: ftruncate check IS_APPEND() on real upper inode (Miklos Szeredi) [1485392]
-- [fs] ovl: Use designated initializers (Miklos Szeredi) [1485392]
-- [fs] ovl: lockdep annotate of nested stacked overlayfs inode lock (Miklos Szeredi) [1485392]
-- [fs] ovl: drop CAP_SYS_RESOURCE from saved mounter's credentials (Miklos Szeredi) [1485392]
-- [fs] ovl: properly implement sync_filesystem() (Miklos Szeredi) [1485392]
-- [fs] ovl: concurrent copy up of regular files (Miklos Szeredi) [1485392]
-- [fs] ovl: introduce copy up waitqueue (Miklos Szeredi) [1485392]
-- [fs] ovl: copy up regular file using O_TMPFILE (Miklos Szeredi) [1485392]
-- [fs] ovl: rearrange code in ovl_copy_up_locked() (Miklos Szeredi) [1485392]
-- [fs] ovl: check if upperdir fs supports O_TMPFILE (Miklos Szeredi) [1485392]
-- [fs] ovl: fix possible use after free on redirect dir lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: fix reStructuredText syntax errors in documentation (Miklos Szeredi) [1485392]
-- [fs] ovl: fix return value of ovl_fill_super (Miklos Szeredi) [1485392]
-- [fs] ovl: clean up kstat usage (Miklos Szeredi) [1485392]
-- [fs] ovl: fold ovl_copy_up_truncate() into ovl_copy_up() (Miklos Szeredi) [1485392]
-- [fs] ovl: create directories inside merged parent opaque (Miklos Szeredi) [1485392]
-- [fs] ovl: opaque cleanup (Miklos Szeredi) [1485392]
-- [fs] ovl: show redirect_dir mount option (Miklos Szeredi) [1485392]
-- [fs] ovl: allow setting max size of redirect (Miklos Szeredi) [1485392]
-- [fs] ovl: allow redirect_dir to default to "on" (Miklos Szeredi) [1485392]
-- [fs] ovl: check for emptiness of redirect dir (Miklos Szeredi) [1485392]
-- [fs] ovl: redirect on rename-dir (Miklos Szeredi) [1485392]
-- [fs] ovl: lookup redirects (Miklos Szeredi) [1485392]
-- [fs] ovl: consolidate lookup for underlying layers (Miklos Szeredi) [1485392]
-- [fs] ovl: fix nested overlayfs mount (Miklos Szeredi) [1485392]
-- [fs] ovl: check namelen (Miklos Szeredi) [1485392]
-- [fs] ovl: split super.c (Miklos Szeredi) [1485392]
-- [fs] ovl: use d_is_dir() (Miklos Szeredi) [1485392]
-- [fs] ovl: simplify lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: check lower existence of rename target (Miklos Szeredi) [1485392]
-- [fs] ovl: rename: simplify handling of lower/merged directory (Miklos Szeredi) [1485392]
-- [fs] ovl: get rid of PURE type (Miklos Szeredi) [1485392]
-- [fs] ovl: check lower existence when removing (Miklos Szeredi) [1485392]
-- [fs] ovl: add ovl_dentry_is_whiteout() (Miklos Szeredi) [1485392]
-- [fs] ovl: don't check sticky (Miklos Szeredi) [1485392]
-- [fs] ovl: don't check rename to self (Miklos Szeredi) [1485392]
-- [fs] ovl: treat special files like a regular fs (Miklos Szeredi) [1485392]
-- [fs] ovl: rename ovl_rename2() to ovl_rename() (Miklos Szeredi) [1485392]
-- [fs] ovl: use vfs_clone_file_range() for copy up if possible (Miklos Szeredi) [1485392]
-- [fs] Revert "ovl: get_write_access() in truncate" (Miklos Szeredi) [1485392]
-- [fs] ovl: update doc (Miklos Szeredi) [1485392]
-- [fs] vfs: fix vfs_clone_file_range() for overlayfs files (Miklos Szeredi) [1485392]
-- [fs] vfs: wire up compat ioctl for CLONE/CLONE_RANGE (Miklos Szeredi) [1485392]
-- [fs] vfs: allow vfs_clone_file_range() across mount points (Miklos Szeredi) [1485392]
-- [fs] Revert "vfs: rename: check backing inode being equal" (Miklos Szeredi) [1485392]
-- [fs] overlayfs: VFS: (Scripted) Convert S_ISLNK/DIR/REG(dentry->d_inode) to d_is_*(dentry) (Miklos Szeredi) [1485392]
-- [fs] overlayfs: Fix setting IOP_XATTR flag (Miklos Szeredi) [1485392]
-- [fs] allow O_TMPFILE to work with O_WRONLY (Carlos Maiolino) [1428677]
-- [fs] autofs - revert: take more care to not update last_used on path walk (Ian Kent) [1489542]
-
-* Wed Dec 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-821.el7]
-- [scsi] qla2xxx: Revert Add FC-NVMe port discovery and PRLI handling (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add FC-NVMe command handling (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add FC-NVMe F/W initialization and transport registration (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Send FC4 type NVMe to the management server (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Use FC-NVMe FC4 type for FDMI registration (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert fix a bunch of typos and spelling mistakes (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert avoid unused-function warning (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Fix NVMe entry_type for iocb packet on BE system (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Cleanup FC-NVMe code (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Move function prototype to correct header (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Added change to enable ZIO for FC-NVMe devices (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Simpify unregistration of FC-NVMe local/remote ports (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Fix remoteport disconnect for FC-NVMe (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert remove use of FC-specific error codes (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add command completion for error path (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Fix WWPN/WWNN in debug message (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert add missing includes for qla_isr (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Clear fc4f_nvme flag (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add support for minimum link speed (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add LR distance support from nvram bit (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Reset the logo flag, after target re-login (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Allow SCSI-MQ to be enabled selectively (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Move #include qla_nvme.h to fix compile errors on RHEL 7 (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Update driver version to 10.00.00.00.07.5-k (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add module param ql2xenablemsix (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add ATIO-Q processing for INTx mode (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Allow MBC_GET_PORT_DATABASE to query and save the port states (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Changes to support N2N logins (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Use ql2xnvmeenable to enable Q-Pair for FC-NVMe (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Query FC4 type during RSCN processing (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Update driver version to 10.00.00.02.07.5-k (Ewan Milne) [1511452]
-
-* Sat Dec 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-820.el7]
-- [infiniband] ib/hfi1: Fix incorrect available receive user context count (Don Dutile) [1520270 1452831]
-- [infiniband] ib/opa-vnic: used RHEL extended struct for min/max_mtu params (Don Dutile) [1520270 1452831]
-- [infiniband] ib/core: Fix use workqueue without WQ_MEM_RECLAIM (Don Dutile) [1523349]
-- [infiniband] ib/core: Avoid crash on pkey enforcement failed in received MADs (Don Dutile) [1523349]
-- [infiniband] ib/srp: Avoid that a cable pull can trigger a kernel crash (Don Dutile) [1523349]
-- [infiniband] ib/cm: Fix memory corruption in handling CM request (Don Dutile) [1523349]
-- [infiniband] ib/srpt: Do not accept invalid initiator port names (Don Dutile) [1523349]
-- [infiniband] ib/hfi1: Initialize bth1 in 16B rc ack builder (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Allow MgmtAllowed on B2B setups (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Race condition between user notification and driver state (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Allow meta version 4 for platform configuration (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Add parsing for platform configuration format version 4 (Alex Estrin) [1519368]
-- [infiniband] ib/core: Use __be32 for LIDs in opa_is_extended_lid (Alex Estrin) [1519368]
-- [infiniband] ib/core: Do not warn on lid conversions for OPA (Alex Estrin) [1519368]
-- [infiniband] ib/core: Convert OPA AH to IB for Extended LIDs only (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Do not warn on lid conversions for OPA (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Mask out A bit from psn trace (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Eliminate allocation while atomic (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Mask upper 16Bits of Extended LID prior to rvt_cq_entry (Alex Estrin) [1519368]
-- [infiniband] ib/rdmavt: Don't wait for resources in QP reset (Alex Estrin) [1519368]
-- [scsi] hpsa: bump driver version to 3.4.20-0-RH2 (Joseph Szczypek) [1516538]
-- [scsi] hpsa: correct logical volume removal (Joseph Szczypek) [1516538]
-- [scsi] hpsa: correct smart path enabled (Joseph Szczypek) [1516538]
-- [scsi] hpsa: change timeout for internal cmds (Joseph Szczypek) [1516538]
-- [nvme] nvme-fc: remove double put reference if admin connect fails (Ewan Milne) [1520954]
-- [char] ipmi: Prefer ACPI system interfaces over SMBIOS ones (Frank Ramsay) [1517935]
-- [x86] Mark Cascade Lake as unsupported (David Arcari) [1519949]
-- [md] fix deadlock error in recent patch (Nigel Croxon) [1506338]
-- [md] raid1: prevent freeze_array/wait_all_barriers deadlock (Nigel Croxon) [1506338]
-- [md] fix test in md_write_start() (Nigel Croxon) [1506338]
-- [md] allow metadata update while suspending (Nigel Croxon) [1506338]
-- [md] use mddev_suspend/resume instead of ->quiesce() (Nigel Croxon) [1506338]
-- [md] move suspend_hi/lo handling into core md code (Nigel Croxon) [1506338]
-- [md] don't call bitmap_create() while array is quiesced (Nigel Croxon) [1506338]
-- [md] always hold reconfig_mutex when calling mddev_suspend() (Nigel Croxon) [1506338]
-- [md] dm-raid: fix a race condition in request handling (Nigel Croxon) [1506338]
-- [md] fix a race condition for flush request handling (Nigel Croxon) [1506338]
-- [md] separate request handling (Nigel Croxon) [1506338]
-- [md] fix deadlock between mddev_suspend() and md_write_start() (Nigel Croxon) [1506338]
-- [md] initialise ->writes_pending in personality modules (Nigel Croxon) [1506338]
-- [md] use per-cpu counter for writes_pending (Nigel Croxon) [1506338]
-- [md] raid5: use md_write_start to count stripes, not bios (Nigel Croxon) [1506338]
-- [md] close a race with setting mddev->in_sync (Nigel Croxon) [1506338]
-- [md] factor out set_in_sync() (Nigel Croxon) [1506338]
-- [md] raid5: don't test ->writes_pending in raid5_remove_disk (Nigel Croxon) [1506338]
-- [md] fix relationship between wait_barrier and allow_barrier (Nigel Croxon) [1506338]
-- [md] mddev->writes_pending is incorrect (Nigel Croxon) [1506338]
-
-* Sat Dec 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-819.el7]
-- [hid] intel-ish-hid: Enable Gemini Lake ish driver (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Enable Cannon Lake ish driver (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: use dev_groups and not dev_attrs for bus_type (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: enable compile testing (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: fix format string for size_t (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: clarify locking in client code (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: fix potential uninitialized data usage (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: constify device_type structure (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc: check FW status to distinguish ISH resume paths (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: format 32-bit integers with X (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: add printf attribute to print_log() (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Remove unneeded linux/miscdevice.h include (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: use pUL for uuid formatting (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Fix potential race condition (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc: use msleep_interrupt() for wait (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc: change timed_wait_for_timeout() to be a function (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc: remove unused macro (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: initialize ts_format.reserved (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: request_irq failure (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Fix driver reinit failure (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Move DMA disable code to new function (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: consolidate ish wake up operation (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Fix !CONFIG_PM build warning (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: Remove duplicated include from bus.c (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: Use kzalloc instead of kmalloc/memset (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: Convert list_for_each to entry variant (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: use module_pci_driver to simplify the code (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: use list_move_tail instead of list_del/list_add_tail (Gopal Tiwari) [1475903]
-- [hid] maintainers: Add Intel ISH (Gopal Tiwari) [1475903]
-- [hid] hid-sensor-hub: Add ISH quirk (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor-hub: Implement batch mode (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor: Fix unbalanced pm_runtime_enable error (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor: Store restore poll and hysteresis on S3 (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Set default unit of measure for report interval (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor-trigger: Change get poll value function order to avoid sensor properties losing after resume from S3 (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: avoid unused function warning (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: use asynchronous resume (Gopal Tiwari) [1475903]
-- [hid] iio: common: hid-sensors: use tab for indention (Gopal Tiwari) [1475903]
-- [hid] hid-sensor: Fix suspend/resume delay (Gopal Tiwari) [1475903]
-- [hid] hid-sensor-hub: Enhance feature report set API (Gopal Tiwari) [1475903]
-- [hid] hid-sensor-hub: Enhance get feature report API (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Add api to get poll value (Gopal Tiwari) [1475903]
-- [hid] iio: hid_sensor_hub: Common PM functions (Gopal Tiwari) [1475903]
-- [hid] iio: hid_sensor_hub: Fix indio_dev->trig assignment (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Get feature report from sensor hub after changing power state (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Add API to power on/off (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor-hub: Remove hard coded indexes (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Fix power and report state (Gopal Tiwari) [1475903]
-- [hid] iio: hid_sensors: fix crash during trigger unregister (Gopal Tiwari) [1475903]
-- [hid] iio: call sensor hub open close function (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ISH HID client driver (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc layer (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: ISH Transport layer (Gopal Tiwari) [1475903]
-- [hid] documentation: hid: Intel ISH HID document (Gopal Tiwari) [1475903]
-- [hid] sensor: fix attributes in HID sensor interface (Gopal Tiwari) [1475903]
-- [hid] sensor: Custom and Generic sensor support (Gopal Tiwari) [1475903]
-- [gpu] drm/ttm: Always and only destroy bo->ttm_resv in ttm_bo_release_list (Lyude Paul) [1522929]
-- [gpu] drm/amdgpu: reserve root PD while releasing it (Lyude Paul) [1522929]
-- [gpu] dma-buf: make reservation_object_copy_fences rcu save (Lyude Paul) [1522929]
-- [gpu] drm/ttm: fix ttm_bo_cleanup_refs_or_queue once more (Lyude Paul) [1522929]
-- [gpu] drm/i915: avoid division by zero on cnl_calc_wrpll_link (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Do not add an extra page for precaution in the Gen10 LRC size (Rob Clark) [1520639]
-- [gpu] drm/i915: avoid potential uninitialized variable use (Rob Clark) [1520639]
-- [gpu] drm/i915/glk, cnl: Implement WaDisableScalarClockGating (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Add support slice/subslice/eu configs (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Add Gen10 LRC size (Rob Clark) [1520639]
-- [gpu] drm/i915/cnp: display wa #1179: WaHardHangonHotPlug (Rob Clark) [1520639]
-- [gpu] drm/i915: Shrink cnl_ddi_buf_trans (Rob Clark) [1520639]
-- [gpu] drm/i915/cnp: Don't touch other PCH clock gating bits (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Change the macro name to DPLL_CFGCR0_DCO_FRACTION_SHIFT (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Extend WM workaround with IPC for CNL (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaThrottleEUPerfToAvoidTDBackPressure:cnl(pre-prod) (Rob Clark) [1520639]
-- [gpu] drm/i915: Display WA #1133 WaFbcSkipSegments:cnl, glk (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Allow the reg_read ioctl to read the RCS TIMESTAMP register (Rob Clark) [1520639]
-- [gpu] drm/i915/cnp: wa 1181: Fix Backlight issue (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Fix DP max voltage (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Fix DDI hdmi level selection (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Move ddi buf trans related functions up (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Move voltage check into ddi buf trans functions (Rob Clark) [1520639]
-- [gpu] drm/i915: Enable voltage swing before enabling DDI_BUF_CTL (Rob Clark) [1520639]
-- [gpu] drm/i915: Align vswing sequences with old ddi buffer registers (Rob Clark) [1520639]
-- [gpu] drm/i915: decouple gen9 and gen10 dp signal levels (Rob Clark) [1520639]
-- [gpu] drm/i915: Introduce intel_ddi_dp_level (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Avoid ioremap_wc on Cannonlake as well (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaDisableI2mCycleOnWRPort (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WA FtrEnableFastAnisoL1BankingFix (Rob Clark) [1520639]
-- [gpu] drm/i915: Stop using long platform names on clock gating functions (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: don't hardcode DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaForceContextSaveRestoreNonCoherent (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaPushConstantDereferenceHoldDisable (Rob Clark) [1520639]
-- [gpu] drm/i915/cfl: Coffee Lake works on Kaby Lake PCH (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: extract cnl_set_procmon_ref_values (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: simplify cnl_procmon_values handling (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Apply large line width optimization (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaDisableEnhancedSBEVertexCaching (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Add WaDisableReplayBufferBankArbitrationOptimization (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Introduce initial Cannonlake Workarounds (Rob Clark) [1520639]
-
-* Fri Dec 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-818.el7]
-- [net] ipv6: fib: Provide offload indication using nexthop flags (Ivan Vecera) [1519937]
-- [net] vxlan: fix the issue that neigh proxy blocks all icmpv6 packets (Lorenzo Bianconi) [1512250]
-- [net] netfilter: ipset: Fix allocation size of prefixes storage for hash:net, iface.t sets (Stefano Brivio) [1517397]
-- [net] gso: fix payload length when gso_size is zero (Lorenzo Bianconi) [1503996]
-- [net] ip6_gre: update dst pmtu if dev mtu has been updated by toobig in __gre6_xmit (Paolo Abeni) [1508318]
-- [net] ip6_gre: ip6gre_tap device should keep dst (Paolo Abeni) [1508318]
-- [net] ip_gre: ipgre_tap device should keep dst (Paolo Abeni) [1508318]
-- [net] tun: do not arm flow_gc_timer in tun_flow_init() (Hangbin Liu) [1510281]
-- [net] tun: avoid extra timer schedule in tun_flow_cleanup() (Hangbin Liu) [1510281]
-- [net] tun: do not block BH again in tun_flow_cleanup() (Hangbin Liu) [1510281]
-- [net] tun: Turn tun_flow_init() into void fn (Hangbin Liu) [1510281]
-- [net] route: Use ipv4_mtu instead of raw rt_pmtu (Davide Caratti) [1477041]
-- [net] ipv4: Don't increase PMTU with Datagram Too Big message (Davide Caratti) [1477041]
-- [net] tcp: limit GSO packets to half cwnd (Davide Caratti) [1477041]
-- [net] sched: crash on blocks with goto chain action (Ivan Vecera) [1513639]
-- [net] sched: fix crash when deleting secondary chains (Ivan Vecera) [1513639]
-- [net] cls_u32: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_tcindex: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_rsvp: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_route: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_matchall: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_fw: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_flower: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_flow: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_cgroup: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_bpf: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_basic: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] net_sched: introduce tcf_exts_get_net() and tcf_exts_put_net() (Ivan Vecera) [1513639]
-- [net] net_sched: acquire RTNL in tc_action_net_exit() (Ivan Vecera) [1513639]
-- [tools] tc-testing: fix arg to ip command: -s -> -n (Ivan Vecera) [1513639]
-- [net] net_sched: remove tcf_block_put_deferred() (Ivan Vecera) [1513639]
-- [tools] selftests: Introduce a new test case to tc testsuite (Ivan Vecera) [1513639]
-- [tools] selftests: Introduce a new script to generate tc batch file (Ivan Vecera) [1513639]
-- [tools] tc-testing: add test for testing ife type (Ivan Vecera) [1513639]
-- [tools] selftests: Introduce tc testsuite (Ivan Vecera) [1513639]
-- [net] net_sched: fix call_rcu() race on act_sample module removal (Ivan Vecera) [1513639]
-- [net] net_sched: add rtnl assertion to tcf_exts_destroy() (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in tcindex filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in rsvp filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in route filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in u32 filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in matchall filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in fw filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in flower filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in flow filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in cgroup filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in bpf filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in basic filter (Ivan Vecera) [1513639]
-- [net] net_sched: introduce a workqueue for RCU callbacks of tc filter (Ivan Vecera) [1513639]
-- [net] vsock: add sock_diag interface (Stefano Brivio) [1470203]
-
-* Fri Dec 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-817.el7]
-- [mm] devm_memremap_pages: use multi-order radix for ZONE_DEVICE lookups (Jeff Moyer) [1489187]
-- [nvdimm] libnvdimm: fix SMART Health DSM payload definition (Jeff Moyer) [1457571]
-- [nvdimm] libnvdimm, namespace: fix btt claim class crash (Jeff Moyer) [1493833]
-- [nvdimm] libnvdimm, btt: fix format string warnings (Jeff Moyer) [1493833]
-- [nvdimm] libnvdimm, nfit: move the check on nd_reserved2 to the endpoint (Jeff Moyer) [1455961]
-- [acpi] libnvdimm, nfit: export an 'ecc_unit_size' sysfs attribute (Jeff Moyer) [1489186]
-- [nvdimm] libnvdimm, btt: check memory allocation failure (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm, label: fix index block size calculation (Jeff Moyer) [1457567]
-- [acpi] nfit: Fix COMPLETION_INITIALIZER_ONSTACK() abuse (Jeff Moyer) [1455958]
-- [nvdimm] libnvdimm, pfn, dax: limit namespace alignments to the supported set (Jeff Moyer) [1472049]
-- [nvdimm] libnvdimm, pfn, dax: show supported dax/pfn region alignments in sysfs (Jeff Moyer) [1472049]
-- [nvdimm] libnvdimm: rename nd_sector_size_{show, store} to nd_size_select_{show, store} (Jeff Moyer) [1472049]
-- [acpi] nfit: cleanup long de-reference chains in acpi_nfit_init_interleave_set (Jeff Moyer) [1471684]
-- [nvdimm] nfit, libnvdimm, region: export 'position' in mapping info (Jeff Moyer) [1508785]
-- [nvdimm] libnvdimm, btt: clean up warning and error messages (Jeff Moyer) [1493833]
-- [nvdimm] libnvdimm: fix integer overflow static analysis warning (Jeff Moyer) [1457567]
-- [dax] convert to bitmask for flags (Jeff Moyer) [1457555]
-- [kernel] dax, pmem: introduce an optional 'flush' dax_operation (Jeff Moyer) [1457556]
-- [nvdimm] libnvdimm, btt: rework error clearing (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm: fix potential deadlock while clearing errors (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm, btt: cache sector_size in arena_info (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm, btt: ensure that flags were also unchanged during a map_read (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm, btt: refactor map entry operations with macros (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm, btt: fix a missed NVDIMM_IO_ATOMIC case in the write path (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm: fix the clear-error check in nsio_rw_bytes (Jeff Moyer) [1471792]
-- [nvdimm] libnvdimm, btt: fix btt_rw_page not returning errors (Jeff Moyer) [1471795]
-- [nvdimm] acpi, nfit: quiet invalid block-aperture-region warnings (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, btt: BTT updates for UEFI 2.7 format (Jeff Moyer) [1472028 1457567]
-- [nvdimm] libnvdimm, nfit: enable support for volatile ranges (Jeff Moyer) [1455961]
-- [nvdimm] libnvdimm, pmem: fix persistence warning (Jeff Moyer) [1465367]
-- [nvdimm] libnvdimm: Stop using HPAGE_SIZE (Jeff Moyer) [1472049]
-- [dax] device-dax: fix 'passing zero to ERR_PTR()' warning (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm: fix badblock range handling of ARS range (Jeff Moyer) [1475473 1492054]
-- [nvdimm] libnvdimm, namespace: record 'lbasize' for pmem namespaces (Jeff Moyer) [1457567]
-- [nvdimm] acpi/nfit: Issue Start ARS to retrieve existing records (Jeff Moyer) [1457571]
-- [nvdimm] libnvdimm: New ACPI 6.2 DSM functions (Jeff Moyer) [1508785]
-- [acpi] nfit: Show bus_dsm_mask in sysfs (Jeff Moyer) [1508785]
-- [nvdimm] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru (Jeff Moyer) [1508785]
-- [nvdimm] acpi, nfit: Enable DSM pass thru for root functions (Jeff Moyer) [1508785]
-- [nvdimm] libnvdimm: passthru functions clear to send (Jeff Moyer) [1508785]
-- [nvdimm] libnvdimm, btt: convert some info messages to warn/err (Jeff Moyer) [1493833]
-- [nvdimm] libnvdimm, region, pmem: fix 'badblocks' sysfs_get_dirent() reference lifetime (Jeff Moyer) [1457571]
-- [acpi] nfit: Add support of NVDIMM memory error notification in ACPI 6.2 (Jeff Moyer) [1457571]
-- [nvdimm] libnvdimm, pmem: Add sysfs notifications to badblocks (Jeff Moyer) [1457571]
-- [nvdimm] libnvdimm, label: switch to using v1.2 labels by default (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: add address abstraction identifiers (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: add v1.2 label checksum support (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: update 'nlabel' and 'position' handling for local namespaces (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: populate 'isetcookie' for blk-aperture namespaces (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: populate the type_guid property for v1.2 namespaces (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: honor the lba size specified in v1.2 labels (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: add v1.2 interleave-set-cookie algorithm (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: add v1.2 nvdimm label definitions (Jeff Moyer) [1457567]
-- [kernel] uuid: Take const on input of uuid_is_null() and guid_is_null() (Jeff Moyer) [1457567]
-- [kernel] acpi, nfit: Switch to use new generic UUID API (Jeff Moyer) [1457567]
-- [lib] uuid: hoist uuid_is_null() helper from libnvdimm (Jeff Moyer) [1457567]
-- [lib] uuid: don't export guid_index and uuid_index (Jeff Moyer) [1457567]
-- [lib] uuid: hoist helpers uuid_equal() and uuid_copy() from xfs (Jeff Moyer) [1457567]
-- [fs] xfs: use uuid_be to implement the uuid_t type (Jeff Moyer) [1457567]
-- [fs] xfs: use uuid_copy() helper to abstract uuid_t (Jeff Moyer) [1457567]
-- [lib] uuid: rename uuid types (Jeff Moyer) [1457567]
-- [nvdimm] uuid: remove uuid_be defintions from the uapi header (Jeff Moyer) [1457567]
-- [block] badblocks: fix overlapping check for clearing (Jeff Moyer) [1504042]
-- [block] badblocks: badblocks_set/clear update unacked_exist (Jeff Moyer) [1504042]
-- [dax] device-dax: fix sysfs duplicate warnings (Jeff Moyer) [1492048]
-- [dax] device-dax: fix 'dax' device filesystem inode destruction crash (Jeff Moyer) [1457559]
-- [acpi] nfit: Fix the memory error check in nfit_handle_mce() (Jeff Moyer) [1471692]
-- [x86] mce: Export memory_error() (Jeff Moyer) [1471692]
-- [dax] fix false CONFIG_BLOCK dependency (Jeff Moyer) [1457559]
-- [fs] filesystem-dax: fix broken __dax_zero_page_range() conversion (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm, btt: ensure that initializing metadata clears poison (Jeff Moyer) [1472053]
-- [nvdimm] libnvdimm: add an atomic vs process context flag to rw_bytes (Jeff Moyer) [1472053]
-- [dax] device-dax: kill NR_DEV_DAX (Jeff Moyer) [1457559]
-- [kernel] block, dax: move "select DAX" from BLOCK to FS_DAX (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm, pfn: fix 'npfns' vs section alignment (Jeff Moyer) [1472049]
-- [nvdimm] libnvdimm: handle locked label storage areas (Jeff Moyer) [1457557]
-- [nvdimm] libnvdimm: convert NDD_ flags to use bitops, introduce NDD_LOCKED (Jeff Moyer) [1457557]
-- [fs] block, dax: use correct format string in bdev_dax_supported (Jeff Moyer) [1457559]
-- [dax] device-dax: fix sysfs attribute deadlock (Jeff Moyer) [1472044]
-- [nvdimm] libnvdimm: restore "libnvdimm: band aid btt vs clear poison locking" (Jeff Moyer) [1472053]
-- [nvdimm] libnvdimm: fix nvdimm_bus_lock() vs device_lock() ordering (Jeff Moyer) [1472042]
-- [nvdimm] libnvdimm: rework region badblocks clearing (Jeff Moyer) [1457560]
-- [nvdimm] libnvdimm: fix clear poison locking with spinlock and GFP_NOWAIT allocation (Jeff Moyer) [1472053]
-- [acpi] nfit: kill ACPI_NFIT_DEBUG (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm: fix clear length of nvdimm_forget_poison() (Jeff Moyer) [1457560]
-- [nvdimm] libnvdimm: add support for clear poison list and badblocks for device dax (Jeff Moyer) [1457560]
-- [nvdimm] libnvdimm, pmem: fix a NULL pointer BUG in nd_pmem_notify (Jeff Moyer) [1472038]
-- [nvdimm] libnvdimm, region: sysfs trigger for nvdimm_flush() (Jeff Moyer) [1457556]
-- [nvdimm] libnvdimm: Add 'resource' sysfs attribute to regions (Jeff Moyer) [1457560]
-- [nvdimm] libnvdimm: add mechanism to publish badblocks at the region level (Jeff Moyer) [1457560]
-- [block] hide badblocks attribute by default (Jeff Moyer) [1471822]
-- [nvdimm] libnvdimm: fix phys_addr for nvdimm_clear_poison (Jeff Moyer) [1457560]
-- [kernel] x86, dax, pmem: remove indirection around memcpy_from_pmem() (Jeff Moyer) [1457559]
-- [kernel] block: remove block_device_operations ->direct_access() (Jeff Moyer) [1457559]
-- [kernel] block, dax: convert bdev_dax_supported() to dax_direct_access() (Jeff Moyer) [1457559]
-- [kernel] filesystem-dax: convert to dax_direct_access() (Jeff Moyer) [1457559]
-- [kernel] ext2, ext4, xfs: retrieve dax_device for iomap operations (Jeff Moyer) [1457559]
-- [kernel] dm: teach dm-targets to use a dax_device + dax_operations (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm, region: fix flush hint detection crash (Jeff Moyer) [1457559]
-- [kernel] dm: add dax_device and dax_operations support (Jeff Moyer) [1457559]
-- [md] dm: introduce upstream's cleanup_mapped_device() (Mike Snitzer) [1457559]
-- [kernel] dax: introduce dax_direct_access() (Jeff Moyer) [1457559]
-- [s390] dcssblk: add dax_operations support (Jeff Moyer) [1457559]
-- [block] brd: fix uninitialized use of brd->dax_dev (Jeff Moyer) [1457559]
-- [block] brd: add dax_operations support (Jeff Moyer) [1457559]
-- [powerpc] axon_ram: add dax_operations support (Jeff Moyer) [1457559]
-- [tools] pmem: add dax_operations support (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm: use devm_add_action_or_reset() (Jeff Moyer) [1457559]
-- [nvdimm] dax: introduce dax_operations (Jeff Moyer) [1457559]
-- [nvdimm] dax: add a facility to lookup a dax device by 'host' device name (Jeff Moyer) [1457559]
-- [x86] mce: Make the MCE notifier a blocking one (Jeff Moyer) [1471692]
-- [tools] acpi, nfit: fix module unload vs workqueue shutdown race (Jeff Moyer) [1472037]
-- [acpi] nfit: limit ->flush_probe() to initialization work (Jeff Moyer) [1472037]
-- [acpi] nfit: collate health state flags (Jeff Moyer) [1457555]
-- [acpi] nfit: support "map failed" dimms (Jeff Moyer) [1457555]
-- [acpi] nfit: add support for acpi 6.1 dimm state flags (Jeff Moyer) [1457555]
-- [acpi] nfit: remove unnecessary newline (Jeff Moyer) [1455958]
-- [acpi] nfit: allow specifying a default DSM family (Jeff Moyer) [1455958]
-- [acpi] nfit: allow override of built-in bitmasks for nvdimm DSMs (Jeff Moyer) [1455958]
-- [acpi] nfit, libnvdimm: fix interleave set cookie calculation (64-bit comparison) (Jeff Moyer) [1471684]
-- [nvdimm] nfit, libnvdimm: fix interleave set cookie calculation (Jeff Moyer) [1471684]
-- [tools] testing/nvdimm: test acpi 6.1 health state flags (Jeff Moyer) [1457555]
-- [tools] testing/nvdimm: dynamic label support (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: add manufacturing_{date|location} dimm properties (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: add virtual ramdisk range (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: test get_config_size DSM failures (Jeff Moyer) [1375501]
-- [nvdimm] revert "libnvdimm: band aid btt vs clear poison locking" (Jeff Moyer) [1472053]
-- [tools] dax: refactor dax-fs into a generic provider of 'struct dax_device' instances (Jeff Moyer) [1457559]
-- [dax] device-dax: rename 'dax_dev' to 'dev_dax' (Jeff Moyer) [1457559]
-- [dax] device-dax: improve fault handler debug output (Jeff Moyer) [1457559]
-- [tools] device-dax, tools/testing/nvdimm: enable device-dax with mock resources (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm: band aid btt vs clear poison locking (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm: fix reconfig_mutex, mmap_sem, and jbd2_handle lockdep splat (Jeff Moyer) [1471676]
-- [nvdimm] libnvdimm: fix blk free space accounting (Jeff Moyer) [1471683]
-- [dax] device-dax: utilize new cdev_device_add helper function (Jeff Moyer) [1457559]
-- [dax] device-dax: fix cdev leak (Jeff Moyer) [1457559]
-- [edac] x86/ras, edac, acpi: Assign MCE notifier handlers a priority (Jeff Moyer) [1471692]
-- [x86] mce: Dump MCE to dmesg if no consumers (Jeff Moyer) [1471692]
-
-* Fri Dec 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-816.el7]
-- [input] Fix device_rh memory leak (Prarit Bhargava) [1510344]
-- [gpu] drm/i915/gvt: Add support for PCIe extended configuration space (Paul Lai) [1458032]
-- [gpu] drm/i915/gvt: Add emulation for BAR2 (aperture) with normal file RW approach (Paul Lai) [1458032]
-- [gpu] drm/i915/kvmgt: Sanitize PCI bar emulation (Paul Lai) [1458032]
-- [pci] Move config space size macros to pci_regs.h (Paul Lai) [1458032]
-- [kernel] memremap: don't modify flags (Paul Lai) [1458032]
-- [virt] kvm: eventfd: fix NULL deref irqbypass consumer (Radim Krcmar) [1417618]
-- [net] vsock: fix outdated sk_state value in hvs_release() (Cathy Avery) [1505839]
-- [hv] hv_sock: add locking in the open/close/release code paths (Cathy Avery) [1505839]
-- [hv] vmbus: hvsock: add proper sync for vmbus_hvsock_device_unregister() (Cathy Avery) [1505839]
-- [mm] revert "memcontrol: fix cgroup creation failure after many small jobs" (Rafael Aquini) [1510790]
-- [mm] revert "cgroup: kill css_id" (Rafael Aquini) [1510790]
-- [fs] ext4: fix fault handling when mounted with -o dax,ro (Eric Sandeen) [1488468]
-- [s390] disassembler: increase show_code buffer size (Hendrik Brueckner) [1516667]
-- [s390] disassembler: add missing end marker for e7 table (Hendrik Brueckner) [1520837]
-- [s390] qeth: unbreak OSM and OSN support (Hendrik Brueckner) [1519447]
-- [s390] qeth: handle sysfs error during initialization (Hendrik Brueckner) [1519447]
-- [netdrv] mlxsw: spectrum: Fix error return code in mlxsw_sp_port_create() (Ivan Vecera) [1521069]
-- [netdrv] mlxsw: spectrum_router: Configure TIGCR on init (Ivan Vecera) [1521069]
-- [netdrv] mlxsw: reg: Add Tunneling IPinIP General Configuration Register (Ivan Vecera) [1521069]
-- [netdrv] mlxsw: core: Fix possible deadlock (Ivan Vecera) [1521069]
-- [netdrv] nfp: inherit the max_mtu from the PF netdev (John Linville) [1515619]
-- [netdrv] nfp: fix flower offload metadata flag usage (John Linville) [1518327]
-- [netdrv] nfp: refuse offloading filters that redirects to upper devices (John Linville) [1519464]
-- [netdrv] nfp: handle page allocation failures (John Linville) [1519464]
-- [netdrv] nfp: fix ethtool stats gather retry (John Linville) [1519464]
-- [netdrv] nfp: add whitelist of supported flow dissector (John Linville) [1519464]
-- [powerpc] kvm: ppc: book3s hv: Fix use after free in case of multiple resize requests (Serhii Popovych) [1516238]
-- [powerpc] kvm: ppc: book3s hv: Drop prepare_done from struct kvm_resize_hpt (Serhii Popovych) [1516238]
-- [powerpc] kvm: ppc: book3s hv: Check for kmalloc errors in ioctl (Serhii Popovych) [1516238]
-- [infiniband] rdma/bnxt_re: Set QP state in case of response completion errors (Jonathan Toppins) [1516610]
-- [infiniband] rdma/bnxt_re: Flush CQ notification Work Queue before destroying QP (Jonathan Toppins) [1516610]
-- [infiniband] rdma/bnxt_re: synchronize poll_cq and req_notify_cq verbs (Jonathan Toppins) [1516610]
-- [infiniband] bnxt_re: fix a crash in qp error event processing (Jonathan Toppins) [1515709]
-- [infiniband] bnxt_re: changing the ip address shouldn't affect new connections (Jonathan Toppins) [1515770]
-- [infiniband] rdma/bnxt_re: Add memory barriers when processing CQ/EQ entries (Jonathan Toppins) [1515777]
-
-* Thu Dec 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-815.el7]
-- [netdrv] mlx5e: IPoIB, Modify rdma netdev allocate and free to support PKEY (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Add PKEY child interface ethtool ops (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Add PKEY child interface ndos (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Add PKEY child interface nic profile (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Use hash-table to map between QPN to child netdev (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Support for setting PKEY index to underlay QP (Kamal Heib) [1517570 1456694]
-- [netdrv] ib/ipoib: Add ability to set PKEY index to lower device driver (Kamal Heib) [1517570 1456694]
-- [netdrv] ib/ipoib: Grab rtnl lock on heavy flush when calling ndo_open/stop (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5: Support for attaching multiple underlay QPs to root flow table (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Move underlay QP init/uninit to separate functions (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5: PTP code migration to driver core section (Kamal Heib) [1456694]
-- [netdrv] mlx5: File renaming towards ptp core implementation (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add FGs and FTEs memory pool (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Allocate FTE object without lock (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Support multiple updates of steering rules in parallel (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Replace fs_node mutex with reader/writer semaphore (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Refactor FTE and FG creation code (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Export building of matched flow groups list (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Move the entry index allocator to flow group (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Avoid NULL pointer dereference on steering cleanup (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Fix creating a new FTE when an existing but full FTE exists (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Increase Striding RQ minimum size limit to 4 multi-packet WQEs (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Set page to null in case dma mapping fails (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix napi poll with zero budget (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Stop NAPI when irq balancer changes affinity (Kamal Heib) [1456694]
-- [netdrv] mlx5: Cancel health poll before sending panic teardown command (Kamal Heib) [1456694]
-- [netdrv] mlx5: Loop over temp list to release delay events (Kamal Heib) [1456694]
-- [netdrv] mlx5e/core/en_fs: fix pointer dereference after free in mlx5e_execute_l2_action (Kamal Heib) [1456694]
-- [netdrv] mlx5e: DCBNL, Implement tc with ets type and zero bandwidth (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Properly deal with encap flows add/del under neigh update (Kamal Heib) [1456694]
-- [netdrv] mlx5: Delay events till mlx5 interface's add complete for pci resume (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix health work queue spin lock to IRQ safe (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix wrong indentation in enable SRIOV code (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix static checker warning on steering tracepoints code (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix calculated checksum offloads counters (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Don't add/remove 802.1ad rules when changing 802.1Q VLAN filter (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Print netdev features correctly in error message (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Check encap entry state when offloading tunneled flows (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Disallow TC offloading of unsupported match/action combinations (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix erroneous freeing of encap header buffer (Kamal Heib) [1456694]
-- [netdrv] mlx5: Check device capability for maximum flow counters (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix FPGA capability location (Kamal Heib) [1456694]
-- [netdrv] mlx5e: IPoIB, Fix access to invalid memory address (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Distribute RSS table among all RX rings (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use kernel's mechanism to avoid missing NAPIs (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Slightly increase RX page-cache size (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Don't recycle page if moved to far NUMA (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Remove unnecessary fields in ICO SQ (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Type-specific optimizations for RX post WQEs function (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Non-atomic RQ state indicator for UMR WQE in progress (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Non-atomic indicator for ring enabled state (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Refactor data-path lro header function (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Early-return on empty completion queues (Kamal Heib) [1456694]
-- [netdrv] mlx5e: NAPI busy-poll when UMR post is in progress (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Small enhancements for RX MPWQE allocation and free (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use memset to init skbs_frags array to zeros (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Remove unnecessary wqe_sz field from RQ buffer (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Replace multiplication by stride size with a shift (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Reorganize struct mlx5e_rq (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Support RSS for GRE tunneled packets (Kamal Heib) [1467198 1456694]
-- [netdrv] mlx5e: Support TSO and TX checksum offloads for GRE tunnels (Kamal Heib) [1467198 1456694]
-- [netdrv] mlx5e: Use IP version matching to classify IP traffic (Kamal Heib) [1467198 1456694]
-- [netdrv] mlx5e: make mlx5e_profile const (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add tracepoints (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add hash table for flow groups in flow table (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add hash table to search FTEs in a flow-group (Kamal Heib) [1456694]
-- [netdrv] mlx5: Don't store reserved part in FTEs and FGs (Kamal Heib) [1456694]
-- [netdrv] mlx5: Convert linear search for free index to ida (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix wrong code indentation in conditional statement (Kamal Heib) [1456694]
-- [netdrv] mlx5: Remove a leftover unused variable (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add a blank line after declarations V2 (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use size_t to store byte offset in statistics descriptors (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use kernel types instead of uint*_t in ethtool callbacks (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Place constants on the right side of comparisons (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Avoid using multiple blank lines (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Properly indent within conditional statements (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add a blank line after declarations (Kamal Heib) [1456694]
-- [netdrv] mlx5: Avoid blank lines after/before open/close brace (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add outbound PCI buffer overflow counter (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5e: Add RX buffer fullness counters (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5: Add RX buffer fullness counters infrastructure (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5e: Add PCIe outbound stalls counters (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5: Add PCIe outbound stalls counters infrastructure (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5e: IPoIB, Add support for get_link_ksettings in ethtool (Kamal Heib) [1456694]
-- [netdrv] mlx5e: IPoIB, Fix driver name retrieved by ethtool (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Send PAOS command on interface up/down (Kamal Heib) [1456694]
-- [netdrv] mlx5: ensure 0 is returned when vport is zero (Kamal Heib) [1456694]
-- [netdrv] mlx5: remove unnecessary pci_set_drvdata() (Kamal Heib) [1456694]
-- [netdrv] mlx5: Increase the maximum flow counters supported (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix counter list hardware structure (Kamal Heib) [1456694]
-- [netdrv] mlx5: Delay events till ib registration ends (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add CONFIG_MLX5_ESWITCH Kconfig (Kamal Heib) [1456694]
-- [netdrv] mlx5: Separate between E-Switch and MPFS (Kamal Heib) [1456694]
-- [netdrv] mlx5: Unify vport manager capability check (Kamal Heib) [1456694]
-- [netdrv] mlx5e: NIC netdev init flow cleanup (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Rearrange netdevice ops structures (Kamal Heib) [1456694]
-- [netdrv] mlx5: fix spelling mistake: "alloated" -> "allocated" (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Enable local loopback in loopback selftest (Kamal Heib) [1456684 1456694]
-- [netdrv] mlx5e: Fix CQ moderation mode not set properly (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix inline header size for small packets (Kamal Heib) [1456694]
-- [netdrv] mlx5: E-Switch, Unload the representors in the correct order (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Properly resolve TC offloaded ipv6 vxlan tunnel source address (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Don't override user RSS upon set channels (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix dangling page pointer on DMA mapping error (Kamal Heib) [1456694]
-- [netdrv] mlx5: Remove the flag MLX5_INTERFACE_STATE_SHUTDOWN (Kamal Heib) [1456694]
-- [netdrv] mlx5: Skip mlx5_unload_one if mlx5_load_one fails (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix arm SRQ command for ISSI version 0 (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix DCB_CAP_ATTR_DCBX capability for DCBNL getcap (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Check for qos capability in dcbnl_initialize (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix mlx5_add_flow_rules call with correct num of dests (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Schedule overflow check work to mlx5e workqueue (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix wrong delay calculation for overflow check scheduling (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add missing support for PTP_CLK_REQ_PPS request (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Change 1PPS out scheme (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix broken disable 1PPS flow (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add field select to MTPPS register (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix mlx5_ifc_mtpps_reg_bits structure size (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix outer_header_zero() check size (Kamal Heib) [1456694]
-- [netdrv] mlx5e: IPoIB, Modify add/remove underlay QPN flows (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix command bad flow on command entry allocation failure (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix command completion after timeout access invalid structure (Kamal Heib) [1456694]
-- [netdrv] mlx5: Consider tx_enabled in all modes on remap (Kamal Heib) [1456694]
-- [netdrv] mlx5: Clean SRIOV eswitch resources upon VF creation failure (Kamal Heib) [1456694]
-- [netdrv] mlx5: IPSec, fix 64-bit division correctly (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5e: Initialize CEE's getpermhwaddr address buffer to 0xff (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add Makefiles for subdirectories (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Build wq.o even if MLX5_CORE_EN is not selected (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Fix datatype mismatch (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, make mlx5_fpga_device_brb static (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: IPSec, Fix 64-bit division on 32-bit builds (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Add missing include in lib/gid.c (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: fix memcpy limit? (Kamal Heib) [1456694]
-- [netdrv] mlx5: fix spelling mistake: "Allodating" -> "Allocating" (Kamal Heib) [1456694]
-- [netdrv] mlx5e: IPSec, Add IPSec ethtool stats (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5e: IPSec, Add Innova IPSec offload TX data path (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5e: IPSec, Add Innova IPSec offload RX data path (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Accel, Add IPSec acceleration interface (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Add SBU infrastructure (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Add SBU bypass and reset flows (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Add high-speed connection routines (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Add FW commands for FPGA QPs (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Move FPGA init/cleanup to init_once (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Add QP WQ support (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Make get_cqe routine not ethernet-specific (Kamal Heib) [1456677 1456694]
-- [netdrv] ib/mlx5: Respect mlx5_core reserved GIDs (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Add support for multiple RoCE enable (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Add reserved-gids support (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Set interface flags before cleanup in unload_one (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5e: Fix TX carrier errors report in get stats ndo (Kamal Heib) [1456694]
-- [netdrv] mlx5: Cancel delayed recovery work when unloading the driver (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix driver load error flow when firmware is stuck (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use device ID defines (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix offset of hca cap reserved field (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add header re-write offloading of IPv6 hop-limit (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Use macro for TC header re-write offload field mapping (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Offload TC matching on ip ttl (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Relocate the TC match on ip tos offload code section (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Introduce RX Page-Reuse (Kamal Heib) [1460489 1456694]
-- [netdrv] mlx5e: Enhance RX SKB headroom logic (Kamal Heib) [1460489 1456694]
-- [netdrv] mlx5e: Build SKB with exact frag_size (Kamal Heib) [1460489 1456694]
-- [netdrv] mlx5e: Support bpf_xdp_adjust_head() (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add fast unload support in shutdown flow (Kamal Heib) [1456670 1456694]
-- [netdrv] mlx5: Expose command polling interface (Kamal Heib) [1456670 1456694]
-- [netdrv] mlx5e: Optimize update stats work (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Move and optimize query out of buffer function (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Reduce number of heap allocated buffers for update stats (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Rename physical symbol errors counter (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix typo in warning if CQ moderation is not supported (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use function to map aRFS into traffic type (Kamal Heib) [1456694]
-- [netdrv] mlx5: Undo LAG upon request to create virtual functions (Kamal Heib) [1456694]
-- [netdrv] mlx5: Avoid space after casting (Kamal Heib) [1456694]
-- [netdrv] mlx5: Align to match opening parenthesis (Kamal Heib) [1456694]
-- [netdrv] mlx5: Avoid blank lines before/after closing/opening braces (Kamal Heib) [1456694]
-- [netdrv] mlx5: Avoid using multiple blank lines (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix some spelling mistakes (Kamal Heib) [1456694]
-- [netdrv] mlx5: Update eqe_type_str() event names (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fill advertised and supported port data from Hardware info (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add support for reading connector type from PTYS (Kamal Heib) [1456694]
-- [netdrv] mlx5: Update flow table commands layout (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Support header re-write of partial fields in TC pedit offload (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Use modify header ID cache for offloaded TC NIC flows (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Use modify header ID cache for offloaded TC E-Switch flows (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Add cache for HW modify header IDs (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Use short attribute form when adding/deleting offloaded TC flows (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Offload TC matching on ip tos / traffic-class (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Offload TC matching on tcp flags (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Remove TC header re-write offloading of ip tos (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Fix warnings around parsing of TC pedit actions (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Properly enforce disallowing of partial field re-write offload (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Allow TC csum offload if applied together with pedit action (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Add offloading of NIC TC pedit (header re-write) actions (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Add parsing of TC pedit actions to HW format (Kamal Heib) [1456687 1456694]
-
-* Thu Dec 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-814.el7]
-- [i2c] introduce helper function to get 8 bit address from a message (Gopal Tiwari) [1456705]
-- [i2c] add a flag to mark clients as slaves (Gopal Tiwari) [1456705]
-- [i2c] acpi / scan: fix enumeration (visited) flags for bus rescans (Gopal Tiwari) [1456705]
-- [i2c] acpi: add support for ACPI reconfiguration notifiers (Gopal Tiwari) [1456705]
-- [i2c] acpi / pm: allow child devices to ignore parent power state (Gopal Tiwari) [1456705]
-- [i2c] designware: Find bus speed from ACPI (Gopal Tiwari) [1456705]
-- [i2c] acpi / pm: Make messages in acpi_device_set_power() print device names (Gopal Tiwari) [1456705]
-- [i2c] designware: Enable high speed mode (Gopal Tiwari) [1456705]
-- [i2c] designware: set the common config before the if else (Gopal Tiwari) [1456705]
-- [i2c] designware: Enable fast mode plus (Gopal Tiwari) [1456705]
-- [i2c] designware: get fast plus and high speed *CNT configuration (Gopal Tiwari) [1456705]
-- [i2c] designware: Move clk_freq into struct dw_i2c_dev (Gopal Tiwari) [1456705]
-- [i2c] designware-pci: Make bus number allocation robust (Gopal Tiwari) [1456705]
-- [i2c] designware: Do not calculate SCL timing parameters needlessly (Gopal Tiwari) [1456705]
-- [i2c] core: fix NULL pointer dereference under race condition (Gopal Tiwari) [1456705]
-- [i2c] export i2c_adapter_depth() (Gopal Tiwari) [1456705]
-- [i2c] core: Add function for finding the bus speed from ACPI, take 2 (Gopal Tiwari) [1456705]
-- [i2c] core: Cleanup I2C ACPI namespace, take 2 (Gopal Tiwari) [1456705]
-- [i2c] use pr_fmt in the core (Gopal Tiwari) [1456705]
-- [i2c] print more info when acpi_i2c_space_handler() fails (Gopal Tiwari) [1456705]
-- [i2c] add error message when obtaining idr fails (Gopal Tiwari) [1456705]
-- [i2c] improve error messages in i2c_register_adapter() (Gopal Tiwari) [1456705]
-- [i2c] cleanup i2c_register_adapter() by refactoring recovery init (Gopal Tiwari) [1456705]
-- [i2c] free idr when sanity checks in i2c_register_adapter() fail (Gopal Tiwari) [1456705]
-- [i2c] i2c / acpi: add support for ACPI reconfigure notifications (Gopal Tiwari) [1456705]
-- [i2c] Add generic support passing secondary devices addresses (Gopal Tiwari) [1456705]
-- [i2c] only check scl functions when using generic recovery (Gopal Tiwari) [1456705]
-- [i2c] allow adapter drivers to override the adapter locking (Gopal Tiwari) [1456705]
-- [i2c] let I2C masters ignore their children for PM (Gopal Tiwari) [1456705]
-- [i2c] core: use new 8 bit address helper function (Gopal Tiwari) [1456705]
-- [i2c] immediately mark ourselves as registered (Gopal Tiwari) [1456705]
-- [i2c] do not use internal data from driver core (Gopal Tiwari) [1456705]
-- [i2c] always enable RuntimePM for the adapter device (Gopal Tiwari) [1456705]
-- [i2c] i2c / acpi: Rework I2C device scanning (Gopal Tiwari) [1456705]
-- [i2c] core: Add support for best effort block read emulation (Gopal Tiwari) [1456705]
-- [i2c] slave: print warning if slave flag not set (Gopal Tiwari) [1456705]
-- [i2c] support 10 bit and slave addresses in sysfs 'new_device' (Gopal Tiwari) [1456705]
-- [i2c] take address space into account when checking for used addresses (Gopal Tiwari) [1456705]
-- [i2c] make address check indpendent from client struct (Gopal Tiwari) [1456705]
-- [i2c] rename address check functions (Gopal Tiwari) [1456705]
-- [i2c] apply address offset for slaves, too (Gopal Tiwari) [1456705]
-- [i2c] core: add and export of_get_i2c_adapter_by_node() interface (Gopal Tiwari) [1456705]
-- [i2c] core: manage i2c bus device refcount in i2c_[get|put]_adapter (Gopal Tiwari) [1456705]
-- [i2c] fix leaked device refcount on of_find_i2c_* error path (Gopal Tiwari) [1456705]
-- [i2c] core: only use set_scl for bus recovery after calling prepare_recovery (Gopal Tiwari) [1456705]
-- [i2c] core: Reduce stack size of acpi_i2c_space_handler() (Gopal Tiwari) [1456705]
-- [i2c] core: fix typo in comment (Gopal Tiwari) [1456705]
-- [i2c] check for proper length of the reg property (Gopal Tiwari) [1456705]
-- [i2c] slave: add error messages to slave core (Gopal Tiwari) [1456705]
-- [i2c] Mark adapter devices with pm_runtime_no_callbacks (Gopal Tiwari) [1456705]
-- [i2c] core: Export bus recovery functions (Gopal Tiwari) [1456705]
-- [i2c] change input parameter to i2c_adapter for prepare/unprepare_recovery (Gopal Tiwari) [1456705]
-- [i2c] clarify comments about the dev_released completion (Gopal Tiwari) [1456705]
-- [i2c] Only include slave support if selected (Gopal Tiwari) [1456705]
-- [i2c] do not try to load modules for of-registered devices (Gopal Tiwari) [1456705]
-- [i2c] simplify boilerplate code for attribute groups (Gopal Tiwari) [1456705]
-- [i2c] acpi: Pick the first address if device has multiple (Gopal Tiwari) [1456705]
-- [i2c] Remove support for legacy PM (Gopal Tiwari) [1456705]
-- [i2c] core changes for slave support (Gopal Tiwari) [1456705]
-- [i2c] acpi: remove unneeded variable initialization (Gopal Tiwari) [1456705]
-- [i2c] acpi: Fix NULL Pointer dereference (Gopal Tiwari) [1456705]
-- [i2c] move acpi code back into the core (Gopal Tiwari) [1456705]
-- [i2c] add debug info when class instantiation was dropped (Gopal Tiwari) [1456705]
-- [i2c] acpi: Clean up I2C ACPI code and Add CONFIG_I2C_ACPI config (Gopal Tiwari) [1456705]
-- [i2c] acpi: Add i2c ACPI operation region support (Gopal Tiwari) [1456705]
-- [i2c] Add message transfer tracepoints for SMBUS [ver #2] (Gopal Tiwari) [1456705]
-- [i2c] Add message transfer tracepoints for I2C (Gopal Tiwari) [1456705]
-- [i2c] add deprecation warning for class based instantiation (Gopal Tiwari) [1456705]
-- [i2c] Use stable dev_name for ACPI enumerated I2C slaves (Gopal Tiwari) [1456705]
-- [i2c] attach/detach I2C client device to the ACPI power domain (Gopal Tiwari) [1456705]
-- [i2c] Not all adapters have a parent (Gopal Tiwari) [1456705]
-- [i2c] Remove redundant 'driver' field from the i2c_client struct (Gopal Tiwari) [1456705]
-- [i2c] dt: describe generic bindings (Gopal Tiwari) [1456705]
-- [i2c] documentation: i2c: describe the new slave mode (Gopal Tiwari) [1456705]
-- [i2c] media: core: Don't use i2c_client->driver (Gopal Tiwari) [1456705]
-
-* Thu Dec 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-813.el7]
-- [scsi] cxlflash: Fix vlun resize failure in the shrink path (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Avoid double mutex unlock (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove unnecessary existence check (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fix an error handling path in 'cxlflash_disk_attach()' (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: return -EFAULT if copy_from_user() fails (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update debug prints in reset handlers (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update send_tmf() parameters (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Avoid double free of character device (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update TMF command processing (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove zeroing of private command data (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support WS16 unmap (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support AFU debug (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support LUN provisioning (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Refactor AFU capability checking (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Introduce host ioctl support (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Separate AFU internal command handling from AFU sync specifics (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Create character device to provide host management interface (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Add scsi command abort handler (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Flush pending commands in cleanup path (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Track pending scsi commands in each hardware queue (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Handle AFU sync failures (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Schedule asynchronous reset of the host (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Reset hardware queue context via specified register (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update cxlflash_afu_sync() to return errno (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Combine the send queue locks (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Select IRQ_POLL (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Introduce hardware queue steering (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Add hardware queues attribute (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support multiple hardware queues (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Improve asynchronous interrupt processing (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fix warnings/errors (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fix power-of-two validations (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove unnecessary DMA mapping (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fence EEH during probe (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support up to 4 ports (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: SISlite updates to support 4 ports (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Hide FC internals behind common access routine (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove port configuration assumptions (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support dynamic number of FC ports (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update sysfs helper routines to pass config structure (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Implement IRQ polling for RRQ processing (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Serialize RRQ access and support offlevel processing (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Separate RRQ processing from the RRQ interrupt handler (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Enable PCI device ID for future IBM CXL Flash AFU (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Cleanup prints (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support SQ Command Mode (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Refactor context reset to share reset logic (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Migrate scsi command pointer to AFU command (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Migrate IOARRIN specific routines to function pointers (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Cleanup queuecommand() (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Cleanup send_tmf() (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove AFU command lock (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Wait for active AFU commands to timeout upon tear down (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove private command pool (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Use cmd_size for private commands (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Allocate memory instead of using command pool for AFU sync (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove unused buffer from AFU command (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Set sg_tablesize to 1 instead of SG_NONE (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fix context reference tracking on detach (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Refactor WWPN setup (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update documentation (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove adapter file descriptor cache (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Transition to application close model (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Add kref to context (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Cache owning adapter within context (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Avoid mutex when destroying context (Gustavo Duarte) [1456494]
-- [scsi] maintainers: Update cxlflash maintainers (Gustavo Duarte) [1456494]
-
-* Wed Dec 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-812.el7]
-- [x86] mm: fix get_user_pages() vs device-dax pud mappings (Luiz Capitulino) [1516984]
-- [x86] revert "fix get_user_pages() vs device-dax pud mappings" (Luiz Capitulino) [1516984]
-- [ata] libata: sata_down_spd_limit should return if driver has not recorded sstatus speed (David Milburn) [1457140]
-- [infiniband] ib/mlx5: use kvmalloc_array for mlx5_ib_wq (Don Dutile) [1511159]
-- [infiniband] ib/mlx4: use kvmalloc_array to allocate wrid (Don Dutile) [1511159]
-- [security] treewide: use kv[mz]alloc* rather than opencoded variants (Don Dutile) [1511159]
-- [security] keys: use kvfree() in add_key (Don Dutile) [1511159]
-- [kernel] wait: fix bit_waitqueue() to allow the use of vmalloc'd memory (Mike Snitzer) [1511159]
-- [net] use kvmalloc with __GFP_REPEAT rather than open coded variant (Don Dutile) [1511159]
-- [lib] rhashtable.c: simplify a strange allocation pattern (Don Dutile) [1511159]
-- [md] dm: allocate struct mapped_device with kvzalloc (Mike Snitzer) [1511159]
-- [md] dm ioctl: restore __GFP_HIGH in copy_params() (Don Dutile) [1511159]
-- [mm] swap: use kvzalloc to allocate some swap data structures (Don Dutile) [1511159]
-- [md] dm-ioctl.c: use kvmalloc rather than opencoded variant (Don Dutile) [1511159]
-- [fs] select: add vmalloc fallback for select(2) (Don Dutile) [1511159]
-- [fs] xattr.c: zero out memory copied to userspace in getxattr (Don Dutile) [1511159]
-- [fs] xattr: Use kvfree() (Don Dutile) [1511159]
-- [mm] support __GFP_REPEAT in kvmalloc_node for >32kB (Don Dutile) [1511159]
-- [mm] vmalloc: properly track vmalloc users (Don Dutile) [1511159]
-- [kernel] mm: introduce kv[mz]alloc helpers (Don Dutile) [1511159]
-- [kernel] locking/pvqspinlock: Implement hybrid PV queued/unfair locks (Waiman Long) [1511001]
-- [kernel] locking/qspinlock: Improve readability (Waiman Long) [1511001]
-- [kernel] locking/pvqspinlock: Move lock stealing count tracking code into pv_queued_spin_steal_lock() (Waiman Long) [1511001]
-- [kernel] tracing: Call clear_boot_tracer() at lateinit_sync (Jerome Marchand) [1477115]
-- [virtio] virtio_balloon: fix increment of vb->num_pfns in fill_balloon() (Andrew Jones) [1517280]
-- [virtio] virtio_balloon: fix deadlock on OOM (Andrew Jones) [1517280]
-- [netdrv] i40evf: Use smp_rmb rather than read_barrier_depends (Stefan Assmann) [1517143]
-- [netdrv] i40e: Use smp_rmb rather than read_barrier_depends (Stefan Assmann) [1517143]
-- [netdrv] i40e: restore promiscuous after reset (Stefan Assmann) [1517143]
-- [netdrv] i40evf: fix client notify of l2 params (Stefan Assmann) [1517143]
-- [netdrv] i40e: Fix FLR reset timeout issue (Stefan Assmann) [1517143]
-- [netdrv] i40e: fix the calculation of VFs mac addresses (Stefan Assmann) [1517143]
-- [netdrv] i40e: Fix for NUP NVM image downgrade failure (Stefan Assmann) [1517143]
-- [netdrv] i40e/i40evf: revert "i40e/i40evf: bump tail only in multiples of 8" (Stefan Assmann) [1517143]
-- [netdrv] i40e: only redistribute MSI-X vectors when needed (Stefan Assmann) [1517143]
-- [netdrv] i40e: Add programming descriptors to cleaned_count (Stefan Assmann) [1517143]
-- [netdrv] i40e: Fix incorrect use of tx_itr_setting when checking for Rx ITR setup (Stefan Assmann) [1517143]
-- [netdrv] virtchnl: Add pad fields to a couple of structures (Stefan Assmann) [1517143]
-- [netdrv] i40e/i40evf: rename vf_offload_flags to vf_cap_flags in struct virtchnl_vf_resource (Stefan Assmann) [1517143]
-- [netdrv] xen-netfront: remove warning when unloading module (Eduardo Otubo) [1472220]
-- [infiniband] ib/core: Only enforce security for InfiniBand (Don Dutile) [1515295]
-- [infiniband] ib/core: Only maintain real QPs in the security lists (Don Dutile) [1515295]
-- [infiniband] ib/core: Avoid unnecessary return value check (Don Dutile) [1515295]
-
-* Wed Dec 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-811.el7]
-- [gpu] drm/i915: Deconstruct struct sgt_dma initialiser (Rob Clark) [1512612]
-- [uapi] drm/i915: Reject unknown syncobj flags (Rob Clark) [1512612]
-- [gpu] drm/vmwgfx: Fix Ubuntu 17.10 Wayland black screen issue (Rob Clark) [1512612]
-- [gpu] drm/vmwgfx: constify vmw_fence_ops (Rob Clark) [1512612]
-- [gpu] drm/amdgpu: allow harvesting check for Polaris VCE (Rob Clark) [1512612]
-- [gpu] drm/amdgpu: return -ENOENT from uvd 6.0 early init for harvesting (Rob Clark) [1512612]
-- [gpu] drm/i915: Check incoming alignment for unfenced buffers (on i915gm) (Rob Clark) [1512612]
-- [gpu] drm/i915: Hold rcu_read_lock when iterating over the radixtree (vma idr) (Rob Clark) [1512612]
-- [gpu] drm/i915: Hold rcu_read_lock when iterating over the radixtree (objects) (Rob Clark) [1512612]
-- [gpu] drm/i915/edp: read edp display control registers unconditionally (Rob Clark) [1512612]
-- [gpu] drm/i915: Do not rely on wm preservation for ILK watermarks (Rob Clark) [1512612]
-- [gpu] drm/i915: Cancel the modeset retry work during modeset cleanup (Rob Clark) [1512612]
-- [gpu] drm/nouveau/kms/nv50: use the correct state for base channel notifier setup (Rob Clark) [1512612]
-- [gpu] drm/i915/gvt: Adding ACTHD mmio read handler (Rob Clark) [1512612]
-- [gpu] drm/i915/gvt: Extract mmio_read_from_hw() common function (Rob Clark) [1512612]
-- [gpu] drm/i915/gvt: Refine MMIO_RING_F() (Rob Clark) [1512612]
-- [gpu] drm/i915/gvt: properly check per_ctx bb valid state (Rob Clark) [1512612]
-- [gpu] drm/i915/perf: fix perf enable/disable ioctls with 32bits userspace (Rob Clark) [1512612]
-- [gpu] drm/amd/amdgpu: Remove workaround check for UVD6 on APUs (Rob Clark) [1512612]
-- [gpu] drm/amd/powerplay: fix uninitialized variable (Rob Clark) [1512612]
-- [gpu] drm/i915: Use a mask when applying WaProgramL3SqcReg1Default (Rob Clark) [1512612]
-- [gpu] drm/i915: Report -EFAULT before pwrite fast path into shmemfs (Rob Clark) [1512612]
-- [gpu] drm/i915/cnl: Fix PLL initialization for HDMI (Rob Clark) [1512612]
-- [gpu] drm/i915/cnl: Fix PLL mapping (Rob Clark) [1512612]
-- [gpu] drm/i915: Use bdw_ddi_translations_fdi for Broadwell (Rob Clark) [1512612]
-- [gpu] drm/i915: Fix eviction when the GGTT is idle but full (Rob Clark) [1512612]
-- [gpu] revert "drm/amdgpu: discard commands of killed processes" (Rob Clark) [1512612]
-- [gpu] drm/nouveau/fbcon: fix oops without fbdev emulation (Rob Clark) [1512612]
-- [gpu] drm/nouveau/kms/nv50: fix oops during DP IRQ handling on non-MST boards (Rob Clark) [1512612]
-- [gpu] drm/nouveau/bsp/g92: disable by default (Rob Clark) [1512612]
-- [gpu] drm/nouveau/mmu: flush tlbs before deleting page tables (Rob Clark) [1512612]
-- [gpu] drm/i915/bios: parse DDI ports also for CHV for HDMI DDC pin and DP AUX channel (Rob Clark) [1512612]
-- [gpu] drm/i915: Read timings from the correct transcoder in intel_crtc_mode_get() (Rob Clark) [1512612]
-- [gpu] drm/i915: Order two completing nop_submit_request (Rob Clark) [1512612]
-- [gpu] drm/i915: Silence compiler warning for hsw_power_well_enable() (Rob Clark) [1512612]
-- [gpu] drm/i915: Use crtc_state_is_legacy_gamma in intel_color_check (Rob Clark) [1512612]
-- [gpu] drm/i915/edp: Increase the T12 delay quirk to 1300ms (Rob Clark) [1512612]
-- [gpu] drm/i915/edp: Get the Panel Power Off timestamp after panel is off (Rob Clark) [1512612]
-- [gpu] drm/amdgpu: fix placement flags in amdgpu_ttm_bind (Rob Clark) [1512612]
-- [gpu] drm/atomic: Unref duplicated drm_atomic_state in drm_atomic_helper_resume() (Rob Clark) [1512612]
-- [drm] qxl: alloc & use shadow for dumb buffers (Rob Clark) [1512097]
-- [drm] qxl: replace QXL_INFO with DRM_DEBUG_DRIVER (Rob Clark) [1512097]
-
-* Tue Dec 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-810.el7]
-- [fs] dcache.c: avoid soft-lockup in dput() (Miklos Szeredi) [1431297]
-- [fs] dealing with the rest of shrink_dentry_list() livelock (Miklos Szeredi) [1431297]
-- [fs] dcache: add missing lockdep annotation (Miklos Szeredi) [1431297]
-- [fs] shrink_dentry_list(): take parent's ->d_lock earlier (Miklos Szeredi) [1431297]
-- [fs] expand dentry_kill(dentry, 0) in shrink_dentry_list() (Miklos Szeredi) [1431297]
-- [fs] split dentry_kill() (Miklos Szeredi) [1431297]
-- [fs] fold d_kill() and d_free() (Miklos Szeredi) [1431297]
-- [fs] fold try_prune_one_dentry() (Miklos Szeredi) [1431297]
-- [fs] fanotify: fix fsnotify_prepare_user_wait() failure (Miklos Szeredi) [1372260]
-- [fs] fsnotify: fix pinning group in fsnotify_prepare_user_wait() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: pin both inode and vfsmount mark (Miklos Szeredi) [1372260]
-- [fs] fsnotify: clean up fsnotify_prepare/finish_user_wait() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: make dnotify_fsnotify_ops const (Miklos Szeredi) [1372260]
-- [fs] maintainers: Update entries for notification subsystem (Miklos Szeredi) [1372260]
-- [fs] audit: Receive unmount event (Miklos Szeredi) [1372260]
-- [fs] audit: Fix use after free in audit_remove_watch_rule() (Miklos Szeredi) [1372260]
-- [fs] fanotify: don't expose EOPENSTALE to userspace (Miklos Szeredi) [1372260]
-- [fs] fsnotify: remove a stray unlock (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move ->free_mark callback to fsnotify_ops (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Add group pointer in fsnotify_init_mark() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Drop inode_mark.c (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove fsnotify_find_{inode|vfsmount}_mark() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove fsnotify_detach_group_marks() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Rename fsnotify_clear_marks_by_group_flags() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Inline fsnotify_clear_{inode|vfsmount}_mark_group() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove fsnotify_recalc_{inode|vfsmount}_mask() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove fsnotify_set_mark_{, ignored_}mask_locked() (Miklos Szeredi) [1372260]
-- [fs] fanotify: Release SRCU lock when waiting for userspace response (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Pass fsnotify_iter_info into handle_event handler (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Provide framework for dropping SRCU lock in ->handle_event (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove special handling of mark destruction on group shutdown (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Detach mark from object list when last reference is dropped (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move queueing of mark for destruction into fsnotify_put_mark() (Miklos Szeredi) [1372260]
-- [fs] inotify: Do not drop mark reference under idr_lock (Miklos Szeredi) [1372260]
-- [fs] fanotify: fix up KABI breakage due to mnt_fsnotify_marks type change (Miklos Szeredi) [1372260]
-- [fs] fanotify: fix up KABI breakage due to i_fsnotify_marks type change (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Free fsnotify_mark_connector when there is no mark attached (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Lock object list with connector lock (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove useless list deletion and comment (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Avoid double locking in fsnotify_detach_from_object() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove indirection from fsnotify_detach_mark() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Determine lock in fsnotify_destroy_marks() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move locking into fsnotify_find_mark() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move locking into fsnotify_recalc_mask() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move fsnotify_destroy_marks() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove indirection from mark list addition (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Make fsnotify_mark_connector hold inode reference (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move object pointer to fsnotify_mark_connector (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move mark list head from object into dedicated structure (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Update comments (Miklos Szeredi) [1372260]
-- [fs] audit_tree: Use mark flags to check whether mark is alive (Miklos Szeredi) [1372260]
-- [fs] audit: Abstract hash key handling (Miklos Szeredi) [1372260]
-- [fs] fanotify: Move recalculation of inode / vfsmount mask under mark_mutex (Miklos Szeredi) [1372260]
-- [fs] inotify: Remove inode pointers from debug messages (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove unnecessary tests when showing fdinfo (Miklos Szeredi) [1372260]
-- [fs] fanotify: simplify the code of fanotify_merge (Miklos Szeredi) [1372260]
-- [fs] trim fsnotify hooks a bit (Miklos Szeredi) [1372260]
-- [fs] undo "fs: allow d_instantiate to be called with negative parent dentry" (Miklos Szeredi) [1372260]
-- [fs] untangle fsnotify_d_instantiate() a bit (Miklos Szeredi) [1372260]
-- [fs] sysctl: check for UINT_MAX before unsigned int min/max (Joe Lawrence) [1488518]
-- [fs] pipe: add proc_dopipe_max_size() to safely assign pipe_max_size (Joe Lawrence) [1488518]
-- [fs] pipe: avoid round_pipe_size() nr_pages overflow on 32-bit (Joe Lawrence) [1488518]
-- [fs] pipe: match pipe_max_size data type with procfs (Joe Lawrence) [1488518]
-- [fs] sysctl: add unsigned int range support (Joe Lawrence) [1488518]
-- [fs] sysctl: simplify unsigned int support (Joe Lawrence) [1488518]
-- [fs] sysctl: fold sysctl_writes_strict checks into helper (Joe Lawrence) [1488518]
-- [fs] sysctl: kdoc'ify sysctl_writes_strict (Joe Lawrence) [1488518]
-- [fs] sysctl: fix lax sysctl_check_table() sanity check (Joe Lawrence) [1488518]
-- [fs] sysctl: don't print negative flag for proc_douintvec (Joe Lawrence) [1488518]
-- [fs] sysctl: add sanity check for proc_douintvec (Joe Lawrence) [1488518]
-- [fs] sysctl: handle error writing UINT_MAX to u32 fields (Joe Lawrence) [1488518]
-- [fs] sysctl: enable strict writes (Joe Lawrence) [1488518]
-- [fs] sysctl: allow for strict write position handling (Joe Lawrence) [1488518]
-- [fs] sysctl: refactor sysctl string writing logic (Joe Lawrence) [1488518]
-- [fs] sysctl: clean up char buffer arguments (Joe Lawrence) [1488518]
-- [fs] pipe: cap initial pipe capacity according to pipe-max-size limit (Joe Lawrence) [1478268]
-- [fs] pipe: make account_pipe_buffers() return a value, and use it (Joe Lawrence) [1478268]
-- [fs] pipe: fix limit checking in alloc_pipe_info() (Joe Lawrence) [1478268]
-- [fs] pipe: simplify logic in alloc_pipe_info() (Joe Lawrence) [1478268]
-- [fs] pipe: fix limit checking in pipe_set_size() (Joe Lawrence) [1478268]
-- [fs] pipe: refactor argument for account_pipe_buffers() (Joe Lawrence) [1478268]
-- [fs] pipe: move limit checking logic into pipe_set_size() (Joe Lawrence) [1478268]
-- [fs] pipe: relocate round_pipe_size() above pipe_set_size() (Joe Lawrence) [1478268]
-
-* Tue Dec 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-809.el7]
-- [block] wake up all tasks blocked in get_request() (Ming Lei) [1491296]
-- [block] blk-mq: Avoid that request queue removal can trigger list corruption (Ming Lei) [1491296]
-- [block] scsi: Make SCSI quiesce and resume work reliably (Ming Lei) [1491296]
-- [block] Add the QUEUE_FLAG_PREEMPT_ONLY request queue flag (Ming Lei) [1491296]
-- [block] ide, scsi: Tell the block layer at request allocation time about preempt requests (Ming Lei) [1491296]
-- [block] Introduce BLK_MQ_REQ_PREEMPT (Ming Lei) [1491296]
-- [block] Introduce blk_get_request_flags() (Ming Lei) [1491296]
-- [block] Make q_usage_counter also track legacy requests (Ming Lei) [1491296]
-- [block] blk-mq: don't allocate driver tag upfront for flush rq (Ming Lei) [1471956]
-- [block] blk-mq: move blk_mq_put_driver_tag*() into blk-mq.h (Ming Lei) [1471956]
-- [block] blk-mq-sched: decide how to handle flush rq via RQF_FLUSH_SEQ (Ming Lei) [1471956]
-- [block] blk-flush: use blk_mq_request_bypass_insert() (Ming Lei) [1471956]
-- [block] pass 'run_queue' to blk_mq_request_bypass_insert (Ming Lei) [1471956]
-- [block] blk-flush: don't run queue for requests bypassing flush (Ming Lei) [1471956]
-- [block] blk-mq: put the driver tag of nxt rq before first one is requeued (Ming Lei) [1471956]
-- [block] directly insert blk-mq request from blk_insert_cloned_request() (Ming Lei) [1471956]
-- [block] blk-mq: improve tag waiting setup for non-shared tags (Ming Lei) [1471956]
-- [block] blk-mq: fix issue with shared tag queue re-running (Ming Lei) [1471956]
-- [block] blk-mq: put driver tag if dispatch budget can't be got (Ming Lei) [1471956]
-- [block] blk-mq: don't handle failure in .get_budget (Ming Lei) [1471956]
-- [block] scsi: don't get target/host busy_count in scsi_mq_get_budget() (Ming Lei) [1471956]
-- [block] blk-mq: don't restart queue when .get_budget returns BLK_STS_RESOURCE (Ming Lei) [1471956]
-- [block] scsi: implement .get_budget and .put_budget for blk-mq (Ming Lei) [1471956]
-- [block] scsi: allow passing in null rq to scsi_prep_state_check() (Ming Lei) [1471956]
-- [block] blk-mq-sched: improve dispatching from sw queue (Ming Lei) [1471956]
-- [block] blk-mq: introduce .get_budget and .put_budget in blk_mq_ops (Ming Lei) [1471956]
-- [block] kyber: check if there are requests in ctx in kyber_has_work() (Ming Lei) [1471956]
-- [block] sbitmap: introduce __sbitmap_for_each_set() (Ming Lei) [1471956]
-- [block] blk-mq-sched: move actual dispatching into one helper (Ming Lei) [1471956]
-- [block] blk-mq-sched: dispatch from scheduler IFF progress is made in ->dispatch (Ming Lei) [1471956]
-- [block] blk-mq: move .map_queues into aux_ops (Ming Lei) [1471956]
-- [block] blk-mq: move .reinit_request into aux_ops (Ming Lei) [1471956]
-- [block] blk-mq: introduce blk_mq_aux_ops (Ming Lei) [1471956]
-- [block] blk-mq: allocate space of 'request_aux' for flush rq (Ming Lei) [1471956]
-
-* Tue Dec 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-808.el7]
-- [x86] Mark Intel Gemini Lake supported (Steve Best) [1471103]
-- [x86] cpufeature: Add feature bit for Intel's Silicon Debug CPUID bit (Mohammed Gamal) [1517830]
-- [x86] x86/entry: add a few missing unwinder annotations (Josh Poimboeuf) [1518139]
-- [x86] x86/unwind: fix interrupt unwinding (Josh Poimboeuf) [1518139]
-- [x86] x86/dumpstack: Handle NULL stack pointer in show_trace_log_lvl() (Josh Poimboeuf) [1518139]
-- [x86] kvm: vmx: Fix vmx->nested freeing when no SMI handler (Ladi Prosek) [1488203]
-- [x86] kvm: svm: detect opening of SMI window using STGI intercept (Ladi Prosek) [1488203]
-- [x86] kvm: nsvm: fix SMI injection in guest mode (Ladi Prosek) [1488203]
-- [x86] kvm: nsvm: refactor nested_svm_vmrun (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: fix SMI injection in guest mode (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: set IDTR and GDTR limits when loading L1 host state (Ladi Prosek) [1488203]
-- [x86] kvm: x86: introduce ISA specific smi_allowed callback (Ladi Prosek) [1488203]
-- [x86] kvm: x86: introduce ISA specific SMM entry/exit callbacks (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: Refactor nested_vmx_run() (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: Split VMCS checks from nested_vmx_run() (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: Refactor nested_get_vmcs12_pages() (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: Prepare for checkpointing L2 state (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: fix instruction skipping during emulated vm-entry (Ladi Prosek) [1488203]
-- [x86] kvm: vmx: Move skip_emulated_instruction out of nested_vmx_check_vmcs12 (Ladi Prosek) [1488203]
-- [fs] ext4: Switch to iomap for SEEK_HOLE / SEEK_DATA (Bill O'Donnell) [1469359]
-- [fs] Do not defer completion for fs without FS_HAS_DIO_IODONE2 (Lukas Czerner) [1518054]
-- [fs] xfs: truncate pagecache before writeback in xfs_setattr_size() (Bill O'Donnell) [1516604]
-- [fs] more bio_map_user_iov() leak fixes (Ming Lei) [1503592] {CVE-2017-12190}
-- [fs] fix unbalanced page refcounting in bio_map_user_iov (Ming Lei) [1503592] {CVE-2017-12190}
-- [x86] kvm: svm: obey guest PAT (Suravee Suthikulpanit) [1478185]
-- [pci] pciehp: Fix race condition handling surprise link down (Myron Stowe) [1435819]
-- [crypto] shash - Fix has_key setting (Herbert Xu) [1505817]
-- [netdrv] ibmvnic: fix dma_mapping_error call (Desnes Augusto Nunes do Rosario) [1515843]
-- [netdrv] ibmvnic: Feature implementation of Vital Product Data (VPD) for the ibmvnic driver (Desnes Augusto Nunes do Rosario) [1515843]
-- [kernel] kbuild: Fix tar-pkg with relative $(objtree) (Don Zickus) [1518298]
-- [kernel] mm: cma: fix incorrect type conversion for size during dma allocation (Chris von Recklinghausen) [1495406] {CVE-2017-9725}
-- [kernel] mm: Sanitize 'move_pages()' permission checks (Chris von Recklinghausen) [1499610] {CVE-2017-14140}
-- [kernel] ptrace: use fsuid, fsgid, effective creds for fs access checks (Chris von Recklinghausen) [1499610] {CVE-2017-14140}
-- [kernel] __ptrace_may_access() should not deny sub-threads (Chris von Recklinghausen) [1499610] {CVE-2017-14140}
-- [kernel] x86/mm/32: Enable full randomization on i386 and X86_32 (Bhupesh Sharma) [1495406] {CVE-2017-9725}
-- [powerpc] kvm: ppc: book3s hv: Fix host crash on changing HPT size (David Gibson) [1512780]
-- [powerpc] kvm: ppc: book3s hv: Fix exclusion between HPT resizing and other HPT updates (Serhii Popovych) [1512780 1510771]
-- [powerpc] pseries: Report DLPAR capabilities (Gustavo Duarte) [1182019]
-
-* Fri Dec 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-807.el7]
-- [infiniband] bnxt_re: Don't issue cmd to delete GID for QP1 GID entry before the QP is destroyed (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Fix memory leak in FRMR path (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Remove RTNL lock dependency in bnxt_re_query_port (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Fix race between the netdev register and unregister events (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Free up devices in module_exit path (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Fix compare and swap atomic operands (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Stop issuing further cmds to FW once a cmd times out (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Fix update of qplib_qp.mtu when modified (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: remove unnecessary call to memset (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Implement the alloc/get_hw_stats callback (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Allocate multiple notification queues (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: fix spelling mistake: "Deallocte" -> "Deallocate" (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Allow posting when QPs are in error (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Add vlan tag for untagged RoCE traffic when PFC is configured (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Delete unsupported modify_port function (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fix the value reported for local ack delay (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Report MISSED_EVENTS in req_notify_cq (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fix return value of poll routine (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Enable atomics only if host bios supports (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Specify RDMA component when allocating stats context (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fixed the max_rd_atomic support for initiator and destination QP (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Report supported value to IB stack in query_device (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Do not free the ctx_tbl entry if delete GID fails (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fix WQE Size posted to HW to prevent it from throwing error (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Free doorbell page index (DPI) during dealloc ucontext (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: checking for NULL instead of IS_ERR() (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Remove FMR support (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fix RQE posting logic (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Add HW workaround for avoiding stall for UD QPs (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Dereg MR in FW before freeing the fast_reg_page_list (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: HW workarounds for handling specific conditions (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fixing the Control path command and response handling (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Use IS_ERR_OR_NULL where appropriate (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: remove redundant initialization of rc to zero (Don Dutile) [1384857]
-
-* Fri Dec 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-806.el7]
-- [netdrv] revert "ath10k: fix napi_poll budget overflow" (Stanislaw Gruszka) [1501877]
-- [netdrv] ath10k: rebuild crypto header in rx data frames (Stanislaw Gruszka) [1501877]
-- [net] mac80211: don't compare TKIP TX MIC key in reinstall (Stanislaw Gruszka) [1501877]
-- [net] mac80211: validate user rate mask before configuring driver (Stanislaw Gruszka) [1501877]
-- [net] cfg80211: fix connect/disconnect edge cases (Stanislaw Gruszka) [1501877]
-- [net] mac80211: use constant time comparison with keys (Stanislaw Gruszka) [1501877]
-- [net] nl80211: Define policy for packet pattern attributes (Stanislaw Gruszka) [1501877]
-- [net] mac80211: accept key reinstall without changing anything (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: nvm: set the correct offsets to 3168 series (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: nvm-parse: unify channel flags printing (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: return -ENODATA when reading the temperature (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: stop dbgc recording before stopping DMA (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: do not print security error in monitor mode (Stanislaw Gruszka) [1501877]
-- [netdrv] brcmsmac: make some local variables 'static const' to reduce (Stanislaw Gruszka) [1501877]
-- [netdrv] brcmfmac: Add check for short event packets (Stanislaw Gruszka) [1501877]
-- [netdrv] rtlwifi: rtl8821ae: Fix connection lost problem (Stanislaw Gruszka) [1501877]
-- [netdrv] ath10k: mark PM functions as __maybe_unused (Stanislaw Gruszka) [1501877]
-- [netdrv] brcmfmac: setup passive scan if requested by user-space (Stanislaw Gruszka) [1501877]
-- [netdrv] brcmfmac: add length check in brcmf_cfg80211_escan_handler() (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: fix reorder buffer for 9000 devices (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: set status before calling (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: initialize status in (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: handle FIF_ALLMULTI when setting multicast (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: use IWL_HCMD_NOCOPY for MCAST_FILTER_CMD (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: wake the correct mac80211 queue (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: change state when queueing agg start work (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: send all non-bufferable frames on the probe (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: Flush non STA TX queues (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: fix wowlan resume failed to load INIT ucode (Stanislaw Gruszka) [1501877]
-- [netdrv] mac80211: fix STA_SLOW_THRESHOLD htmldocs failure (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport mac80211_hwsim driver from linux-4.14-rc2 (Stanislaw Gruszka) [1486746 1477495]
-- [netdrv] Backport brcmsmac driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport brcmfmac driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport rtlwifi driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport rtl8187 driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport mwl8k driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport marvell driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport carl9170 driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport wil6210 driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport ath10k driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport ath9k driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport iwlegacy driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport iwlwifi driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495 1486992 1486999]
-- [netdrv] Backport rt2x00 driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport mac80211 from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport wireless core from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-
-* Fri Dec 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-805.el7]
-- [kernel] Enable -Werror also for s390 builds in the main Makefile (Thomas Huth) [1500170]
-- [kernel] crash_core: Fix warning about CRASH_CORE_NOTE_BYTES redefinition (Thomas Huth) [1500170]
-- [kernel] time/timekeeping: Work around false positive GCC warning (Thomas Huth) [1500170]
-- [kernel] module: Fix downstream-only compiler warning in find_module_sections() (Thomas Huth) [1500170]
-- [security] selinux: security_load_policy: Silence frame-larger-than warning (Thomas Huth) [1500170]
-- [s390] Wire up seccomp syscall (Thomas Huth) [1500170]
-- [s390] kernel/ptrace: Move NT_S390_GS_CB/BC hunks to right table (Thomas Huth) [1500170]
-- [pci] msi: Silence compiler warning about unused variable on s390x (Thomas Huth) [1500170]
-- [fs] gfs2/dir: avoid uninitialized variable warning (Thomas Huth) [1500170]
-- [fs] mpage.c: fix mpage_writepage() for pages with buffers (Eric Sandeen) [1476389]
-- [fs] nfsd: Incoming xdr_bufs may have content in tail buffer (Steve Dickson) [1515992]
-- [hv] hv_netvsc: hide warnings about uninitialized/missing rndis device (Vitaly Kuznetsov) [1516618]
-- [hv] hv_netvsc: netvsc_teardown_gpadl() split (Vitaly Kuznetsov) [1516618]
-- [hv] vmbus: Fix bugs in rescind handling (Vitaly Kuznetsov) [1516618]
-- [hv] vmbus: Fix rescind handling issues (Vitaly Kuznetsov) [1516618]
-- [hv] hv_netvsc: preserve hw_features on mtu/channels/ringparam changes (Vitaly Kuznetsov) [1513264]
-- [usb] xhci: Identify USB 3.1 capable hosts by their port protocol capability (Torez Smith) [1456724]
-- [scsi] bnx2fc: Fix hung task messages when a cleanup response is not received during abort (Chad Dupuis) [1515346]
-- [block] nvme-pci: avoid dereference of symbol from unloaded module (Ming Lei) [1508298]
-- [block] Fix a race between blk_cleanup_queue() and timeout handling (Ming Lei) [1513725]
-- [block] blk-mq-tag: check for NULL rq when iterating tags (Ming Lei) [1513419]
-- [infiniband] vmw_pvrdma: switch to pci_alloc_irq_vectors (Don Dutile) [1454965]
-- [infiniband] ib/ipoib: Change number of TX wqe to 64 (Honggang Li) [1445667]
-- [infiniband] ib/ipoib: Use NAPI in UD/TX flows (Honggang Li) [1445667]
-- [infiniband] ib/ipoib: Get rid of the tx_outstanding variable in all modes (Honggang Li) [1445667]
-- [infiniband] ib/ipoib: Convert timers to use timer_setup() (Honggang Li) [1445667]
-
-* Thu Nov 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-804.el7]
-- [netdrv] bnxt_re: add MAY_USE_DEVLINK dependency (Jonathan Toppins) [1459659]
-- [netdrv] rdma/bnxt_re: add DCB dependency (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix IRQ coalescing regression (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: fix typo in bnxt_set_coalesce (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix randconfig build errors (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: alloc tc_info{} struct only when tc flower is enabled (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: query cfa flow stats periodically to compute 'lastused' attribute (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add hwrm FW cmds for cfa_encap_record and decap_filter (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add support for Flower based vxlan encap/decap offload (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Refactor and simplify coalescing code (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Reorganize the coalescing parameters (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add ethtool reset method (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Check maximum supported MTU from firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Optimize .ndo_set_mac_address() for VFs (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Get firmware package version one time (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Check for zero length value in bnxt_get_nvram_item() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Update firmware interface to 1.8.3.1 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: Move generic devlink code to new file (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix possible corruption in DCB parameters from firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix possible corrupted NVRAM parameters from firmware response (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix VF resource checking (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix VF PCIe link speed and width logic (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Don't use rtnl lock to protect link change logic in workqueue (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Improve VF/PF link change logic (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: don't consider building bnxt_tc.o if option not enabled (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Remove redundant unlikely() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: use setup_timer() helper (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: check for ingress qdisc in flower offload (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add a dummy definition for bnxt_vf_rep_get_fid() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add code to query TC flower offload stats (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add TC flower offload flow_alloc/free FW cmds (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: bnxt: add TC flower filter offload support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: fix clearing devlink ptr from bnxt struct (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Reduce default rings on multi-port cards (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Improve -ENOMEM logic in NAPI poll loop (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: initialize board_info values with proper enums (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: assign CPU affinity hints to bnxt_en IRQs (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Improve tx ring reservation logic (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.8.1.4 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Do not setup MAC address in bnxt_hwrm_func_qcaps() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Free MSIX vectors when unregistering the device from bnxt_re (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix .ndo_setup_tc() to include XDP rings (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: fix spelling mistake: "swtichdev" -> "switchdev" (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: fix switchdev port naming for external-port-rep and vf-reps (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: use SWITCHDEV_SET_OPS() for setting vf_rep_switchdev_ops (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: include bnxt_vfr.c code under CONFIG_BNXT_SRIOV switch (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: fix unused variable warnings (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: fix unsigned comparsion with 0 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Use SWITCHDEV_SET_OPS() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add support for port_attr_get and and get_phys_port_name (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add vf-rep RX/TX and netdev implementation (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add support to enable VF-representors (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Set ETS min_bw parameter for older firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Report firmware DCBX agent (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Allow the user to set ethtool stats-block-usecs to 0 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add bnxt_get_num_stats() to centrally get the number of ethtool stats (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Implement ndo_bridge_{get|set}link methods (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Retrieve the hardware bridge mode from the firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Update firmware interface spec to 1.8.0 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix SRIOV on big-endian architecture (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix bug in ethtool -L (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix race conditions in .ndo_get_stats64() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix netpoll handling (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add missing logic to handle TPA end error conditions (Jonathan Toppins) [1459659]
-- [netdrv] bpf: bnxt: Report bpf_prog ID during XDP_QUERY_PROG (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix xmit_more with BQL (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Pass in sh parameter to bnxt_set_dflt_rings() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Implement xmit_more (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Optimize doorbell write operations for newer chips (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add additional chip ID definitions (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add a callback to inform RDMA driver during PCI shutdown (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add PCI IDs for BCM57454 VF devices (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Support for Short Firmware Message (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Restrict a PF in Multi-Host mode from changing port PHY configuration (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add 100G link speed reporting for BCM57454 ASIC in ethtool (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Pass DCB RoCE app priority to firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Use short TX BDs for the XDP TX ring (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add interrupt test to ethtool -t selftest (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add PHY loopback to ethtool self-test (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add ethtool mac loopback self test (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add basic ethtool -t selftest support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add suspend/resume callbacks (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add ethtool set_wol method (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add ethtool get_wol method (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add pci shutdown method (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add basic WoL infrastructure (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix DMA unmapping of the RX buffers in XDP mode during shutdown (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Added PCI IDs for BCM57452 and BCM57454 ASICs (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add hardware NTUPLE filter for encapsulated packets (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix ethtool -l pre-set max combined channel (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add support for XDP_TX action (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add basic XDP support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Refactor tx completion path (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add a set of TX rings to support XDP (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add tx ring mapping logic (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Centralize logic to reserve rings (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Use event bit map in RX path (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add RX page mode support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Parameterize RX buffer offsets (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add bp->rx_dir field for rx buffer DMA direction (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Don't use DEFINE_DMA_UNMAP_ADDR to store DMA address in RX path (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Refactor rx SKB function (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add IPV6 hardware RFS support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Use napi_complete_done() (Jonathan Toppins) [1459659]
-- [netdrv] broadcom: use core min/max MTU checking (Jonathan Toppins) [1459659]
-
-* Thu Nov 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-803.el7]
-- [netdrv] nfp: convert to use .ndo_setup_tc_rh (John Linville) [1454760 1454745]
-- [netdrv] nfp: enable CONFIG_NFP_APP_FLOWER (John Linville) [1454745 1454760]
-- [netdrv] nfp: double free on error in probe (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove incorrect mask check for vlan matching (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix supported key layers calculation (John Linville) [1454760 1454745]
-- [netdrv] nfp: fix unchecked flow dissector use (John Linville) [1454745 1454760]
-- [netdrv] nfp: TX time stamp packets before HW doorbell is rung (John Linville) [1454760 1454745]
-- [netdrv] nfp: avoid buffer leak when representor is missing (John Linville) [1454760 1454745]
-- [netdrv] nfp: make sure representors are destroyed before their lower netdev (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't hold PF lock while enabling SR-IOV (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix infinite loop on umapping cleanup (John Linville) [1454745 1454760]
-- [netdrv] nfp: do not update MTU from BH in flower app (John Linville) [1454745 1454760]
-- [netdrv] nfp: Initialize RX and TX ring 64-bit stats seqcounts (John Linville) [1454760 1454745]
-- [netdrv] nfp: freeing the wrong variable (John Linville) [1454745 1454760]
-- [netdrv] nfp: flower: add missing clean up call to avoid memory leaks (John Linville) [1454745 1454760]
-- [netdrv] nfp: default to chained metadata prepend format (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove legacy MAC address lookup (John Linville) [1454745 1454760]
-- [netdrv] nfp: improve order of interfaces in breakout mode (John Linville) [1454745 1454760]
-- [netdrv] nfp: add control message passing capabilities to flower offloads (John Linville) [1454745 1454760]
-- [netdrv] nfp: add a stats handler for flower offloads (John Linville) [1454745 1454760]
-- [netdrv] nfp: add metadata to each flow offload (John Linville) [1454745 1454760]
-- [netdrv] nfp: add basic action capabilities to flower offloads (John Linville) [1454760 1454745]
-- [netdrv] nfp: extend flower matching capabilities (John Linville) [1454745 1454760]
-- [netdrv] nfp: extend flower add flow offload (John Linville) [1454745 1454760]
-- [netdrv] nfp: provide infrastructure for offloading flower based TC filters (John Linville) [1454760 1454745]
-- [netdrv] nfp: add phys_switch_id support (John Linville) [1454760 1454745]
-- [netdrv] nfp: flower: add Kconfig for flower app (John Linville) [1454760 1454745]
-- [netdrv] nfp: allocate a private workqueue for driver work (John Linville) [1454745 1454760]
-- [netdrv] nfp: reorder SR-IOV config and nfp_app SR-IOV callbacks (John Linville) [1454745 1454760]
-- [netdrv] nfp: handle SR-IOV already enabled when driver is probing (John Linville) [1454745 1454760]
-- [netdrv] nfp: wire get_phys_port_name on representors (John Linville) [1454745 1454760]
-- [netdrv] nfp: allow converting representor's netdev into nfp_port (John Linville) [1454745 1454760]
-- [netdrv] nfp: move representors' struct net_device_ops to shared code (John Linville) [1454760 1454745]
-- [netdrv] nfp: make the representor get stats app-independent (John Linville) [1454760 1454745]
-- [netdrv] nfp: spawn nfp_ports for PF and VF ports (John Linville) [1454745 1454760]
-- [netdrv] nfp: add nfp_app cleanup callback and make flower use it (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove unused nfp_cpp_area_check_range() (John Linville) [1454745 1454760]
-- [netdrv] nfp: add helper for mapping runtime symbols (John Linville) [1454745 1454760]
-- [netdrv] nfp: move area mapping helper into nfpcore (John Linville) [1454745 1454760]
-- [netdrv] nfp: explicitly check if application FW is loaded (John Linville) [1454745 1454760]
-- [netdrv] nfp: add VF and PF representors to flower app (John Linville) [1454745 1454760]
-- [netdrv] nfp: add flower app (John Linville) [1454760 1454745]
-- [netdrv] nfp: add support for control messages for flower app (John Linville) [1454760 1454745]
-- [netdrv] nfp: add support for tx/rx with metadata portid (John Linville) [1454760 1454745]
-- [netdrv] nfp: provide nfp_port to of nfp_net_get_mac_addr() (John Linville) [1454745 1454760]
-- [netdrv] nfp: app callbacks for SRIOV (John Linville) [1454745 1454760]
-- [netdrv] nfp: add stats and xmit helpers for representors (John Linville) [1454760 1454745]
-- [netdrv] nfp: general representor implementation (John Linville) [1454760 1454745]
-- [netdrv] nfp: map mac_stats and vf_cfg BARs (John Linville) [1454745 1454760]
-- [netdrv] nfp: move physical port init into a helper (John Linville) [1454745 1454760]
-- [netdrv] nfp: devlink add support for getting eswitch mode (John Linville) [1454745 1454760]
-- [netdrv] nfp: xdp: report if program is offloaded (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add support for XDP_FLAGS_HW_MODE (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: release the reference on offloaded programs (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: don't offload XDP programs in DRV_MODE (John Linville) [1454760 1454745]
-- [netdrv] nfp: xdp: move driver XDP setup into a separate function (John Linville) [1454760 1454745]
-- [netdrv] nfp: add VLAN filtering support (John Linville) [1454760 1454745]
-- [netdrv] bpf: nfp: Report bpf_prog ID during XDP_QUERY_PROG (John Linville) [1454760 1454745]
-- [netdrv] nfp: report application FW build name in ethtool -i (John Linville) [1454760 1454745]
-- [netdrv] nfp: keep MIP object around (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove automatic caching of HWInfo (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove automatic caching of RTsym table (John Linville) [1454745 1454760]
-- [netdrv] nfp: make sure to cancel port refresh on the error path (John Linville) [1454745 1454760]
-- [netdrv] nfp: advertise support for NFD ABI 0.5 (John Linville) [1454745 1454760]
-- [netdrv] nfp: create control vNICs and wire up rx/tx (John Linville) [1454760 1454745]
-- [netdrv] nfp: allow non-equal distribution of IRQs (John Linville) [1454745 1454760]
-- [netdrv] nfp: slice the netdev spawning function (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't clutter init code passing fw_ver around (John Linville) [1454745 1454760]
-- [netdrv] nfp: map all queue controllers at once (John Linville) [1454745 1454760]
-- [netdrv] nfp: make vNIC ctrl memory mapping function reusable (John Linville) [1454745 1454760]
-- [netdrv] nfp: add control vNIC datapath (John Linville) [1454760 1454745]
-- [netdrv] nfp: prepare config and enable for working without netdevs (John Linville) [1454760 1454745]
-- [netdrv] nfp: allow allocation and initialization of netdev-less vNICs (John Linville) [1454760 1454745]
-- [netdrv] nfp: make sure debug accesses don't depend on netdevs (John Linville) [1454745 1454760]
-- [netdrv] nfp: prepare print macros for use without netdev (John Linville) [1454745 1454760]
-- [netdrv] nfp: move nfp_net_vecs_init() (John Linville) [1454745 1454760]
-- [netdrv] nfp: reuse ring free code on close (John Linville) [1454760 1454745]
-- [netdrv] nfp: split out the allocation part of open (John Linville) [1454760 1454745]
-- [netdrv] nfp: reorder open and close functions (John Linville) [1454760 1454745]
-- [netdrv] nfp: move basic eBPF stats to app-specific code (John Linville) [1454760 1454745]
-- [netdrv] nfp: move bpf offload code to the BPF app (John Linville) [1454760 1454745]
-- [netdrv] nfp: move eBPF offload files to BPF app directory (John Linville) [1454760 1454745]
-- [netdrv] nfp: report app name in ethtool -i (John Linville) [1454760 1454745]
-- [netdrv] nfp: move port init to apps (John Linville) [1454760 1454745]
-- [netdrv] nfp: turn reading PCIe RTsym parameters into a helper (John Linville) [1454745 1454760]
-- [netdrv] nfp: add missing fall through statements (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't keep count for free buffers delayed kick (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't add ring size to index calculations (John Linville) [1454760 1454745]
-- [netdrv] nfp: fix print format for ring pointers in ring dumps (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't wait for resources indefinitely (John Linville) [1454745 1454760]
-- [netdrv] nfp: support variable NSP response lengths (John Linville) [1454745 1454760]
-- [netdrv] nfp: shorten CPP core probe logs (John Linville) [1454745 1454760]
-- [netdrv] nfp: support long reads and writes with the cpp helpers (John Linville) [1454760 1454745]
-- [netdrv] nfp: only try to get to PCIe ctrl memory if BARs are wide enough (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't set aux pointers if ioremap failed (John Linville) [1454760 1454745]
-- [netdrv] nfp: set driver VF limit (John Linville) [1454745 1454760]
-- [netdrv] nfp: add set_mac_address support while the interface is up (John Linville) [1454760 1454745]
-- [netdrv] nfp: add MAY_USE_DEVLINK dependency (John Linville) [1454745 1454760]
-- [netdrv] nfp: support port splitting via devlink (John Linville) [1454745 1454760]
-- [netdrv] nfp: calculate total port lanes for split (John Linville) [1454745 1454760]
-- [netdrv] nfp: register ports as devlink ports (John Linville) [1454745 1454760]
-- [netdrv] nfp: add helper for cleaning up vNICs (John Linville) [1454745 1454760]
-- [netdrv] nfp: add devlink support (John Linville) [1454745 1454760]
-- [netdrv] nfp: move mutex init out of net code (John Linville) [1454745 1454760]
-- [netdrv] nfp: refresh port state before reporting autonegotiation (John Linville) [1454745 1454760]
-- [netdrv] nfp: mark port state as stale if update failed (John Linville) [1454745 1454760]
-- [netdrv] nfp: mark port state as stale after reconfig (John Linville) [1454745 1454760]
-- [netdrv] nfp: provide linking on port structures (John Linville) [1454745 1454760]
-- [netdrv] nfp: move refresh tracking into the port structure (John Linville) [1454745 1454760]
-- [netdrv] nfp: update port state in place (John Linville) [1454745 1454760]
-- [netdrv] nfp: introduce nfp_port (John Linville) [1454760 1454745]
-- [netdrv] nfp: disallow mixing vNICs with and without NSP port entry (John Linville) [1454745 1454760]
-- [netdrv] nfp: introduce very minimal nfp_app (John Linville) [1454745 1454760]
-- [netdrv] nfp: add nfp_net_pf_free_vnic() function (John Linville) [1454745 1454760]
-- [netdrv] nfp: rename netdev/port to vNIC (John Linville) [1454760 1454745]
-- [netdrv] nfp: make nfp_net alloc/init/cleanup/free not depend on netdevs (John Linville) [1454760 1454745]
-- [netdrv] nfp: add nfp_cppcore_pcie_unit() helper (John Linville) [1454745 1454760]
-- [netdrv] nfp: eliminate an if statement in calculation of completed frames (John Linville) [1454760 1454745]
-- [netdrv] nfp: add a helper for wrapping descriptor index (John Linville) [1454760 1454745]
-- [netdrv] nfp: complete the XDP TX ring only when it's full (John Linville) [1454760 1454745]
-- [netdrv] nfp: add CHECKSUM_COMPLETE support (John Linville) [1454760 1454745]
-- [netdrv] nfp: version independent support for chained RSS metadata (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't assume RSS and IRQ moderation are always enabled (John Linville) [1454745 1454760]
-- [netdrv] nfp: support LSO2 capability (John Linville) [1454760 1454745]
-- [netdrv] nfp: rename l4_offset in struct nfp_net_tx_desc to lso_hdrlen (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't enable TSO on the device when disabled (John Linville) [1454745 1454760]
-- [netdrv] nfp: provide 256 bytes of XDP headroom in all configurations (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't completely refuse to work with old flashes (John Linville) [1454745 1454760]
-- [netdrv] nfp: avoid reading TX queue indexes from the device (John Linville) [1454760 1454745]
-- [netdrv] nfp: do simple XDP TX buffer recycling (John Linville) [1454760 1454745]
-- [netdrv] nfp: drop rx_ring param from buffer allocation (John Linville) [1454760 1454745]
-- [netdrv] nfp: replace -ENOTSUPP with -EOPNOTSUPP (John Linville) [1454760 1454745]
-- [netdrv] nfp: remove the refresh of all ports optimization (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix free list buffer size reporting (John Linville) [1454760 1454745]
-- [netdrv] nfp: add NSP routine to get static information (John Linville) [1454745 1454760]
-- [netdrv] nfp: parse metadata prepend before XDP runs (John Linville) [1454745 1454760]
-- [netdrv] nfp: make use of the DMA_ATTR_SKIP_CPU_SYNC attr (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't dereference a null nn->eth_port to print a warning (John Linville) [1454745 1454760]
-- [netdrv] nfp: add support for .set_link_ksettings() (John Linville) [1454745 1454760]
-- [netdrv] nfp: NSP backend for link configuration operations (John Linville) [1454745 1454760]
-- [netdrv] nfp: add extended error messages (John Linville) [1454745 1454760]
-- [netdrv] nfp: turn NSP port entry into a union (John Linville) [1454745 1454760]
-- [netdrv] nfp: allow multi-stage NSP configuration (John Linville) [1454745 1454760]
-- [netdrv] nfp: separate high level and low level NSP headers (John Linville) [1454760 1454745]
-- [netdrv] nfp: report port type in ethtool (John Linville) [1454745 1454760]
-- [netdrv] nfp: report auto-negotiation in ethtool (John Linville) [1454745 1454760]
-- [netdrv] nfp: report link speed from NSP (John Linville) [1454745 1454760]
-- [netdrv] nfp: add port state refresh (John Linville) [1454745 1454760]
-- [netdrv] nfp: track link state changes (John Linville) [1454745 1454760]
-- [netdrv] nfp: add mutex protection for the port list (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't spawn netdevs for reconfigured ports (John Linville) [1454745 1454760]
-- [netdrv] nfp: add support for .get_link_ksettings() (John Linville) [1454760 1454745]
-- [netdrv] nfp: disable FW on reconfiguration errors (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove defensive checks around ndo_open()/ndo_close() (John Linville) [1454745 1454760]
-- [netdrv] nfp: flush xmit_more on error paths (John Linville) [1454760 1454745]
-- [netdrv] nfp: remove RX queue pointers (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't use netdev_warn() before netdev is registered (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix nfp_cpp_read()/nfp_cpp_write() error paths (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix invalid area detection (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't ignore return value of wait_event_interruptible (John Linville) [1454745 1454760]
-- [netdrv] nfp: correct return codes when msleep gets interrupted (John Linville) [1454745 1454760]
-- [netdrv] nfp: lock area cache earlier (John Linville) [1454745 1454760]
-- [netdrv] nfp: document expected locking in the core (John Linville) [1454745 1454760]
-- [netdrv] nfp: move mutex code out of nfp_cppcore.c (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove cpp mutex cache (John Linville) [1454745 1454760]
-- [netdrv] nfp: fail graciously when someone tries to grab global lock (John Linville) [1454745 1454760]
-- [netdrv] nfp: disallow sharing mutexes on the same machine (John Linville) [1454745 1454760]
-- [netdrv] nfp: add support for xdp_adjust_head() (John Linville) [1454760 1454745]
-- [netdrv] nfp: prepare metadata handling for xdp_adjust_head() (John Linville) [1454760 1454745]
-- [netdrv] nfp: reorganize pkt_off variable (John Linville) [1454760 1454745]
-- [netdrv] nfp: validate rx offset from the BAR and size down it's field (John Linville) [1454760 1454745]
-- [netdrv] nfp: store dma direction in data path structure (John Linville) [1454760 1454745]
-- [netdrv] nfp: switch to using data path structures for reconfiguration (John Linville) [1454760 1454745]
-- [netdrv] nfp: use dp to carry xdp_prog at reconfig time (John Linville) [1454760 1454745]
-- [netdrv] nfp: use dp to carry mtu at reconfig time (John Linville) [1454760 1454745]
-- [netdrv] nfp: use dp to carry fl_bufsz at reconfig time (John Linville) [1454760 1454745]
-- [netdrv] nfp: use dp to carry number of stack tx rings and vectors (John Linville) [1454760 1454745]
-- [netdrv] nfp: pass new data path to ring reconfig (John Linville) [1454760 1454745]
-- [netdrv] nfp: move control BAR pointer into data path structure (John Linville) [1454745 1454760]
-- [netdrv] nfp: separate data path information from the reset of adapter structure (John Linville) [1454760 1454745]
-- [netdrv] nfp: prevent theoretical buffer overrun in nfp_eth_read_ports (John Linville) [1454745 1454760]
-- [netdrv] nfp: add metadata format bit (John Linville) [1454760 1454745]
-- [netdrv] nfp: avoid rearming the interrupts when in busy poll (John Linville) [1454760 1454745]
-- [netdrv] nfp: store device pointer for the fastpath (John Linville) [1454760 1454745]
-- [netdrv] nfp: reorder variables in nfp_net_tx() (John Linville) [1454745 1454760]
-- [netdrv] nfp: move more ring debug info to debugfs (John Linville) [1454760 1454745]
-- [netdrv] nfp: implement .ndo_get_phys_port_name() (John Linville) [1454760 1454745]
-- [netdrv] nfp: add support for reporting CRC32 hash function (John Linville) [1454760 1454745]
-- [netdrv] nfp: fix potential use after free on xdp prog (John Linville) [1454760 1454745]
-- [netdrv] nfp: correct DMA direction in XDP DMA sync (John Linville) [1454760 1454745]
-- [netdrv] nfp: Use PCI_DEVICE_ID_NETRONOME_NFP* defines (John Linville) [1454760 1454745]
-- [netdrv] bpf: add initial bpf tracepoints (John Linville) [1454760 1454745]
-- [netdrv] bpf, xdp: drop rcu_read_lock from bpf_prog_run_xdp and move to caller (John Linville) [1454760 1454745]
-- [netdrv] bpf: drop unnecessary context cast from BPF_PROG_RUN (John Linville) [1454760 1454745]
-- [netdrv] nfp: add support for offload of XDP programs (John Linville) [1454760 1454745]
-- [netdrv] nfp: remove unnecessary parameters from nfp_net_bpf_offload() (John Linville) [1454760 1454745]
-- [netdrv] nfp: add XDP support in the driver (John Linville) [1454760 1454745]
-- [netdrv] sched: tc_mirred: Rename public predicates 'is_tcf_mirred_redirect' and 'is_tcf_mirred_mirror' (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: zero extend 4 byte context loads (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: improve handling for disabled BPF syscall (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add offload of TC direct action mode (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add support for legacy redirect action (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add packet marking support (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: allow offloaded filters to update stats (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add hardware bpf offload (John Linville) [1454760 1454745]
-- [netdrv] nfp: add BPF to NFP code translator (John Linville) [1454760 1454745]
-- [netdrv] nfp: use centralized net_device min/max MTU checking (John Linville) [1454760 1454745]
-
-* Thu Nov 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-802.el7]
-- [netdrv] mlxsw: spectrum_router: Avoid expensive lookup during route removal (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Track RIF of IPIP next hops (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Move VRF refcounting (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Only handle IPv4 and IPv6 events (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Prevent mirred-related crash on removal (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Fix EEPROM access in case of SFP/SFP+ (Ivan Vecera) [1486860]
-- [netdrv] uapi/linux/if_tunnel.h: include linux/if.h, linux/ip.h and linux/in6.h (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support GRE tunnels (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add loopback accessors (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Register for IPIP_DECAP_ERROR trap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Use existing decap route (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support IPv4 underlay decap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support IPv6 overlay encap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support IPv4 overlay encap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Make nexthops typed (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_rt6_is_gateway() (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_fi_is_gateway() (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Introduce loopback RIFs (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support FID-less RIFs (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add mlxsw_sp_ipip_ops (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Publish mlxsw_sp_l3proto (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Give mlxsw_reg_ratr_pack a type parameter (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Extract mlxsw_reg_ritr_mac_pack() (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Routing Tunnel Decap Properties Register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add mlxsw_reg_ralue_act_ip2me_tun_pack() (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Move enum mlxsw_reg_ratr_trap_id (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RATR to support IP-in-IP tunnels (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RITR to support loopback device (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Set abort trap in all virtual routers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Forbid linking to devices that have uppers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Offload goto_chain termination action (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_acl: Provide helper to lookup ruleset (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_acl: Allow to get group_id value for a ruleset (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Offload multichain TC rules (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Fix mrouter flag update (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Use correct config option (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add support for nexthop group consolidation for IPv6 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Prepare nexthop group's hash table for IPv6 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Use one LPM tree for all virtual routers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Pass argument explicitly (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Return void from deletion functions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: make mlxsw_config_profile const (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Release multicast groups during fini (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Don't warn about valid situations (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't ignore IPv6 notifications (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Abort on source-specific routes (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Add support for route replace (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Add support for IPv6 routes addition / deletion (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Sanitize IPv6 FIB rules (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Demultiplex FIB event based on family (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Refresh offload indication upon group refresh (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't check state when refreshing offload indication (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Provide offload indication using nexthop flags (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: core: Use correct EMAD transaction ID in debug message (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Simplify a piece of code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Clarify a piece of code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Simplify a piece of code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg.h: Namespace IP2ME registers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Update specification of reg_ritr_type (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix a typo (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg.h: Fix a typo (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_acl: Fix a typo (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix build when IPv6 isn't enabled (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't batch neighbour deletion (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't offload routes next in list (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Update prefix count for IPv6 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Rename functions to add / delete a FIB entry (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Drop unnecessary parameter (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Mark IPv4 specific function accordingly (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Create IPv4 specific entry struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Set abort trap for IPv6 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Allow IPv6 routes to be programmed (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RALUE register with IPv6 support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Extend virtual routers with IPv6 support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Make FIB node retrieval family agnostic (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't create FIB node during lookup (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't assume neighbour type (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Set activity interval according to both neighbour tables (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Periodically dump active IPv6 neighbours (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RAUHTD register with IPv6 support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Reflect IPv6 neighbours to the device (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RAUHT register with IPv6 support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Configure RIFs based on IPv6 addresses (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Flood unregistered multicast packets to router (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for IPv6 traps (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Enable IPv6 on router interfaces (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Enable IPv6 router (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Improve IPv6 unregistered multicast flooding (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for IPv6 MLDv1/2 traps (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Trap IPv4 packets with Router Alert option (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Mark packets trapped in router (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Add support for ip tos (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add tos to the ipv4 acl block (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: acl: Add ip tos acl element (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Add support for ip ttl (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add ttl to the ipv4 acl block (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: acl: Add ip ttl acl element (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Check status of memory allocation (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Remove unused variable (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix use-after-free in route replace (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add missing rollback (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix NULL pointer dereference (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for access cable info via ethtool (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add MCIA register for cable info access (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Pass port argument to module mapping functions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Simplify port split flow (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Mark only first LPM tree as reserved (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Remove support for bridge bypass FDB add/del (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Add support for learning FDB through notification (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Change switchdev notifier API (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Remove support for bypass bridge port attributes/vlan set (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Add support for querying supported bridge flags (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Remove support for bridge FDB learning sync (Ivan Vecera) [1486860]
-- [netdrv] spectrum_flower: Implement gact trap TC action offload (Ivan Vecera) [1486860]
-- [netdrv] acl: Introduce ACL trap action (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Introduce ACL trap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: pci: Fix size of trap_id field in CQE (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Align RIF index allocation with existing code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Fix typo inside enumeration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Tidy up header file (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Rename the firmware file (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Implement the ethtool flash_device callback (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add bridge dependency for spectrum (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: add helper for updating statistics on all actions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Implement common RIF core (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Implement common FID core (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Determine VR first when creating RIF (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Flood packets to router after RIF creation (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Destroy RIF only based on its struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Configure RIFs based on RIF struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Extend the RIF struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Allocate RIF prior to its configuration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Allocate FID prior to RIF configuration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Replace vPorts with Port-VLAN (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Don't create FIDs upon creation of VLAN uppers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Don't lose bridge port device during enslavement (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Replace vPorts with Port-VLAN (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Change signature of FID leave function (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Introduce Port-VLAN structure (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Set port's mode according to FID mappings (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Adjust RIF configuration for new firmware versions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Validate firmware revision on init (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: core: Create the mlxsw_fw_rev struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add the needed callbacks for mlxfw integration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Management Component Data Access register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Management Component Control register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Management Component Query Information register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Add support for tcp flags (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add acl block containing tcp flags for ipv4 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: acl: Add tcp flags acl element (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Avoid possible NULL pointer dereference (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_dpipe: Fix sparse warnings (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix rif counter freeing routine (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_dpipe: Fix incorrect entry index (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Default ports to non-virtual mode (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Move PVID code to appropriate place (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Don't batch learning operations (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Don't batch STP operations (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Don't batch VLAN operations (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Remove redundant check (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Initialize RIFs in a separate function (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Move FIB notification block to router struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Move RIFs array to its rightful place (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Reduce scope of bridge struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Reduce scope of router struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_buffer: Reduce scope of shared buffer struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Simplify VRF enslavement (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add FID miss trap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Allow ports to work under OVS master (Ivan Vecera) [1486860]
-- [netdrv] add netif_is_ovs_port helper (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Teach mlxsw_sp_port_vlan_set to accept any vlan range (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Set dummy FID before forward action (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add dummy FID initialization (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Implement action to set FID (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Fix indent in mlxsw_sp_netdevice_port_upper_event (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: convert to pci_alloc_irq_vectors (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add Support for erif table entries access (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add rif helper functions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Support for counters on router interfaces (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Router Interface Counter Register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add definition for egress rif table (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add placeholder for dpipe (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add counter fields to RITR register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_kvdl: Cosmetic kvdl allocator API change (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Query cell size from firmware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Refactor port buffer configuration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_buffers: Query shared buffer size from firmware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Query maximum number of ports from firmware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Query number of LPM trees from firmware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Remove debugfs interface (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: fix swapped order of arguments packets and bytes (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Cosmetic naming change (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't abort on l3mdev rules (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add support for VRFs on top of bridges (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add support for VRFs (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't destroy RIF if L3 slave (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Associate RIFs with correct VR (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Fix SPVMLR max record count (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Fix SPVM max record count (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for TC flower offload statistics (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for counters on TCAM entries (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for Policing and Counting action block (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add periodic ACL rule activity update (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for direct rule access (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_acl_tcam: Add support for retrieving TCAM entry activity (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for generic flow counter allocation (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Monitoring General Purpose Counter Set register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for counter allocator (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Make abort mechanism VR-aware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Explicitly Associate RIFs with VRs (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Refactor virtual router handling (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Simplify LPM tree allocation (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Place RIF related code with router code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Allow more route types to be programmed (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Destroy RIFs based on last removed address (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Associate PVID vPort with appropriate netdev (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Don't assume upper device's type (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Sanitize bridge's upper devices (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for flower matches on VLAN ID, PCP (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for vlan modify TC action (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: pci: Remove unused bit (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Fix helper function and port variable names (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Change ipv6 unregistered mc table (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Update mc_disabled flag by switchdev attr (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Extend port_orig_get for bridge devices (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add an option to flood mc by mc_router_port (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Separate bc and mc floods (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Change max vfid (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Make port flood update more generic (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Break flood set func to be per table (Ivan Vecera) [1486860]
-- [netdrv] mellanox: switchx2: use new api ethtool_{get|set}_link_ksettings (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: add psample dependency for spectrum (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Fix HTGT register length (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add packet sample offloading support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: add the Monitoring Packet Sampling Configuration Register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: cmd: Fix API name comments for event-queues (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Fix mlxsw_i2c_write return value (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Adjust placement of FIB abort warning (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: use net core MTU range checking in more drivers (Ivan Vecera) [1486860]
-
-* Thu Nov 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-801.el7]
-- [x86] mm: Unbreak modules that rely on external PAGE_KERNEL availability (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Perform a single memremap() of efi memmap (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Mark any EFI boot services areas as encrypted before freeing (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add invalid memory type to memremap_should_map_decrypted() (Suravee Suthikulpanit) [1361287]
-- [x86] Use FIXMAP_PAGE_NOCACHE in set_fixmap_nocache() (Suravee Suthikulpanit) [1361287]
-- [x86] serial/8250/8250_early: Use set_fixmap_io in serial driver (Suravee Suthikulpanit) [1361287]
-- [x86] realmode: Fix decryption of trampoline area (Suravee Suthikulpanit) [1361287]
-- [x86] iommu/amd: Do not disable SWIOTLB if SME is active (Suravee Suthikulpanit) [1361287]
-- [x86] kvm/x86: Avoid clearing the C-bit in rsvd_bits() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Make the SME mask a u64 (Suravee Suthikulpanit) [1361287]
-- [x86] xen: do not use _PAGE_IOMAP PTE flag for I/O mappings (Suravee Suthikulpanit) [1361287]
-- [x86] xen: do not use _PAGE_IOMAP in xen_remap_domain_mfn_range() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Fix SME encryption stack ptr handling (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Fix regression with huge pages on PAE (Suravee Suthikulpanit) [1361287]
-- [x86] Enable PAT to use cache mode translation tables (Suravee Suthikulpanit) [1361287]
-- [x86] acpi, x86/mm: Remove encryption mask from ACPI page protection type (Suravee Suthikulpanit) [1361287]
-- [x86] mm, kexec: Fix memory corruption with SME on successive kexecs (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to make use of Secure Memory Encryption (Suravee Suthikulpanit) [1361287]
-- [kernel] compiler-gcc.h: Introduce __nostackprotector function attribute (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Add early cmdline parsing for options with arguments (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Pass in size to early cmdline parsing (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Simplify early command line parsing (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Fix early command-line parsing when partial word matches (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Fix early command-line parsing when matching at end (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to encrypt the kernel in-place (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Use proper encryption attributes with /dev/mem (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Clean up types in xlate_dev_mem_ptr() some more (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Clean up types in xlate_dev_mem_ptr() (Suravee Suthikulpanit) [1361287]
-- [x86] xen/x86: Remove SME feature in PV guests (Suravee Suthikulpanit) [1361287]
-- [x86] mm, kexec: Allow kexec to be used with SME (Suravee Suthikulpanit) [1361287]
-- [x86] kvm/x86/svm: Support Secure Memory Encryption within KVM (Suravee Suthikulpanit) [1361287]
-- [x86] drm, fbdev: Do not specify encrypted memory for video mappings (Suravee Suthikulpanit) [1361287]
-- [x86] boot/realmode: Check for memory encryption on the APs (Suravee Suthikulpanit) [1361287]
-- [x86] iommu/amd: Allow the AMD IOMMU to work with memory encryption (Suravee Suthikulpanit) [1361287]
-- [x86] cpu/amd: Make the microcode level available earlier in the boot (Suravee Suthikulpanit) [1361287]
-- [x86] swiotlb: Add warnings for use of bounce buffers with SME (Suravee Suthikulpanit) [1361287]
-- [x86] swiotlb: Add memory encryption support (Suravee Suthikulpanit) [1361287]
-- [x86] arch/x86/kernel/pci-dma.c: fix dma_generic_alloc_coherent() when CONFIG_DMA_CMA is enabled (Suravee Suthikulpanit) [1361287]
-- [x86] dma-mapping: fix GFP_ATOMIC macro usage (Suravee Suthikulpanit) [1361287]
-- [x86] realmode: Decrypt trampoline area if memory encryption is active (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support for changing the memory encryption attribute (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to access persistent memory in the clear (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Use memremap() to map the MPF and MPC data (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to access boot related data in the clear (Suravee Suthikulpanit) [1361287]
-- [x86] memremap: add arch specific hook for MEMREMAP_WB mappings (Suravee Suthikulpanit) [1361287]
-- [x86] memremap: check pfn validity before passing to pfn_to_page() (Suravee Suthikulpanit) [1361287]
-- [x86] memremap: add MEMREMAP_WC flag (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Update EFI pagetable creation to work with SME (Suravee Suthikulpanit) [1361287]
-- [x86] mm/pat: Don't implicitly allow _PAGE_RW in kernel_map_pages_in_pgd() (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Update efi_mem_type() to return an error rather than 0 (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Add an EFI table address match function (Suravee Suthikulpanit) [1361287]
-- [x86] boot/e820: Add support to determine the E820 type of an address (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Insure that boot memory areas are mapped properly (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support for early encryption/decryption of memory (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Extend early_memremap() support with additional attrs (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add SME support for read_cr3_pa() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Provide general kernel support for memory encryption (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in memtype related functions (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in setting page attributes (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in arch/x86/mm/init_64.c (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in track_pfn_remap() and track_pfn_insert() (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in mm/ioremap.c (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in mm/iomap_32.c (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in asm/pgtable.h (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Simplify p[g4um]d_page() macros (Suravee Suthikulpanit) [1361287]
-- [x86] asm: Move PUD_PAGE macros to page_types.h (Suravee Suthikulpanit) [1361287]
-- [x86] asm: Add pud/pmd mask interfaces to handle large PAT bit (Suravee Suthikulpanit) [1361287]
-- [x86] asm: Fix pud/pmd interfaces to handle large PAT bit (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to enable SME in early boot processing (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Split read_cr3() into read_cr3_pa() and __read_cr3() (Suravee Suthikulpanit) [1361287]
-- [x86] init: Clear 'init_level4_pgt' earlier (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Micro-optimize reset_early_page_tables() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Remove phys_to_virt() usage in ioremap() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add Secure Memory Encryption (SME) support (Suravee Suthikulpanit) [1361287]
-- [x86] cpu/amd: Handle SME reduction in physical address size (Suravee Suthikulpanit) [1361287]
-- [x86] cpu/amd: Add the Secure Memory Encryption CPU feature (Suravee Suthikulpanit) [1361287]
-- [x86] mpparse, x86/acpi, x86/pci, x86/dmi, sfi: Use memremap() for RAM mappings (Suravee Suthikulpanit) [1361287]
-- [x86] mm/pat: Set write-protect cache mode for full PAT support (Suravee Suthikulpanit) [1361287]
-- [x86] cpu/amd: Document AMD Secure Memory Encryption (SME) (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Add NV memory attribute (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Put __startup_64() into .head.text (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Rewrite startup_64() in C (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Simplify kernel load address alignment check (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Use 'push' instead of 'call' in start_cpu() (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Optimize fixmap page fixup (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Use defines for page size (Suravee Suthikulpanit) [1361287]
-- [x86] head: Remove useless zeroed word (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Remove flush_tlb() and flush_tlb_current_task() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Audit and remove any unnecessary uses of module.h (Suravee Suthikulpanit) [1361287]
-- [x86] asm: Make sure verify_cpu() has a good stack (Suravee Suthikulpanit) [1361287]
-
-* Wed Nov 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-800.el7]
-- [net] ipv4: fib: Only flush FIB aliases belonging to currently flushed table (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Dump tables during registration to FIB chain (Ivan Vecera) [1500886]
-- [net] Add module reference to FIB notifiers (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Add helpers to hold / drop a reference on rt6_info (Ivan Vecera) [1500886]
-- [net] ipv6: Regenerate host route according to node pointer upon loopback up (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Unlink replaced routes from their nodes (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Don't assume only nodes hold a reference on routes (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Add offload indication to routes (Ivan Vecera) [1500886]
-- [net] ipv6: fib_rules: Dump rules during registration to FIB chain (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Add in-kernel notifications for route add / delete (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Add FIB notifiers callbacks (Ivan Vecera) [1500886]
-- [net] ipv6: fib_rules: Check if rule is a default rule (Ivan Vecera) [1500886]
-- [net] fib_rules: Implement notification logic in core (Ivan Vecera) [1500886]
-- [net] rocker: Ignore address families other than IPv4 (Ivan Vecera) [1500886]
-- [net] mlxsw: spectrum_router: Ignore address families other than IPv4 (Ivan Vecera) [1500886]
-- [net] core: Make the FIB notification chain generic (Ivan Vecera) [1500886]
-- [net] ipv4: fib: Set offload indication according to nexthop flags (Ivan Vecera) [1500886]
-- [net] ipv4: fib_rules: Dump FIB rules when registering FIB notifier (Ivan Vecera) [1500886]
-- [net] ipv4: fib_rules: Add notifier info to FIB rules notifications (Ivan Vecera) [1500886]
-- [net] ipv4: fib_rules: Check if rule is a default rule (Ivan Vecera) [1500886]
-- [net] ipv4: fib: Remove redundant argument (Ivan Vecera) [1500886]
-- [net] ipv4: fib: Move FIB notification code to a separate file (Ivan Vecera) [1500886]
-- [net] netfilter: conntrack: fix race between nf_conntrack proc read and hash resize (Matteo Croce) [1487465]
-- [net] netfilter: conntrack: fix lookup race during hash resize (Matteo Croce) [1487465]
-- [net] netfilter: conntrack: move generation seqcnt out of netns_ct (Matteo Croce) [1487465]
-- [net] netfilter: nf_tables: fix mismatch in big-endian system (lorenzo bianconi) [1451551]
-- [net] xdp: Build a facade of the driver facing xdp code to ease backports (Neil Horman) [1510502]
-
-* Mon Nov 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-799.el7]
-- [fs] ext4: Don't clear SGID when inheriting ACLs (Lukas Czerner) [1473480]
-- [fs] ext4: preserve i_mode if __ext4_set_acl() fails (Lukas Czerner) [1473480]
-- [fs] Avoid invalidation in interrupt context in dio_complete() (Lukas Czerner) [1457517]
-- [fs] Fix page cache inconsistency when mixing buffered and AIO DIO (Lukas Czerner) [1457517]
-- [fs] nfs: revert "nfs: Move the flock open mode check into nfs_flock()" (Benjamin Coddington) [1497225]
-- [fs] xfs: trim writepage mapping to within eof (Brian Foster) [1472081]
-- [fs] gfs2: Add calls to gfs2_holder_uninit in two error handlers (Andreas Grunbacher) [1505889]
-- [fs] ext4: fix data corruption for mmap writes (Lukas Czerner) [1461267]
-- [fs] gfs2: Implement SEEK_HOLE / SEEK_DATA via iomap (Andreas Grunbacher) [1132508]
-- [fs] gfs2: Switch fiemap implementation to use iomap (Andreas Grunbacher) [1132508]
-- [fs] gfs2: Implement iomap for block_map (Andreas Grunbacher) [1132508]
-- [fs] gfs2: Make height info part of metapath (Andreas Grunbacher) [1132508]
-- [fs] gfs2: Clarify gfs2_block_map (Andreas Grunbacher) [1132508]
-- [fs] iomap: Add IOMAP_F_DATA_INLINE flag (Andreas Grunbacher) [1132508]
-- [fs] iomap: Switch from blkno to disk offset (Andreas Grunbacher) [1132508]
-- [fs] xfs: fix contiguous dquot chunk iteration livelock (Bill O'Donnell) [1469359]
-- [fs] vfs: in iomap seek_{hole, data}, return -ENXIO for negative offsets (Bill O'Donnell) [1469359]
-- [fs] xfs: Switch to iomap for SEEK_HOLE / SEEK_DATA (Bill O'Donnell) [1469359]
-- [fs] xfs: rewrite xfs_dq_get_next_id using xfs_iext_lookup_extent (Bill O'Donnell) [1469359]
-- [fs] vfs: Add iomap_seek_hole and iomap_seek_data helpers (Bill O'Donnell) [1469359]
-- [fs] vfs: Add page_cache_seek_hole_data helper (Bill O'Donnell) [1469359]
-- [fs] xfs: new inode extent list lookup helpers (Bill O'Donnell) [1469359]
-- [fs] xfs: provide helper for counting extents from if_bytes (Bill O'Donnell) [1469359]
-- [fs] xfs: wait on new inodes during quotaoff dquot release (Bill O'Donnell) [1429193]
-- [fs] xfs: update ag iterator to support wait on new inodes (Bill O'Donnell) [1429193]
-- [fs] xfs: support ability to wait on new inodes (Bill O'Donnell) [1429193]
-- [fs] ext4: prevent data corruption with inline data + DAX (Eric Sandeen) [1493850]
-- [fs] ext4: prevent data corruption with journaling + DAX (Eric Sandeen) [1493850]
-- [fs] ext4: add ext4_should_use_dax() (Eric Sandeen) [1493850]
-- [fs] rbd: use GFP_NOIO for parent stat and data requests (Ilya Dryomov) [1510600]
-- [fs] ceph: unlock dangling spinlock in try_flush_caps() (Ilya Dryomov) [1510600]
-- [fs] kabi: Adjust O_TMPFILE support to use kABI safe struct inode_operations_wrapper (Carlos Maiolino) [1428677]
-- [fs] xfs: initialize default acls for ->tmpfile() (Carlos Maiolino) [1428677]
-- [fs] xfs: add O_TMPFILE support (Carlos Maiolino) [1428677]
-- [fs] ext[34]: fix double put in tmpfile (Carlos Maiolino) [1428677]
-- [fs] ext4: fix a BUG when opening a file with O_TMPFILE flag (Carlos Maiolino) [1428677]
-- [fs] ext4: ->tmpfile() support (Carlos Maiolino) [1428677]
-- [fs] Fix file mode for O_TMPFILE (Carlos Maiolino) [1428677]
-- [fs] path_openat(): fix double fput() (Carlos Maiolino) [1428677]
-- [fs] allow build_open_flags() to return an error (Carlos Maiolino) [1428677]
-- [fs] Safer ABI for O_TMPFILE (Carlos Maiolino) [1428677]
-- [fs] Allow do_tmpfile set I_LINKABLE inode state (Carlos Maiolino) [1428677]
-- [fs] Implement O_TMPFILE (Carlos Maiolino) [1428677]
-- [fs] fuse: allow server to run in different pid_ns (Miklos Szeredi) [1438767]
-- [fs] fuse: Add support for pid namespaces (Miklos Szeredi) [1438767]
-- [fs] cifs: fix oplock break deadlocks (Leif Sahlberg) [1513280]
-- [fs] cifs: Fix some return values in case of error in 'crypt_message' (Leif Sahlberg) [1513280]
-- [fs] cifs: Improve readdir verbosity (Leif Sahlberg) [1513280]
-- [fs] cifs: transport: Use time_after for time comparison (Leif Sahlberg) [1513280]
-- [fs] smb2: Fix share type handling (Leif Sahlberg) [1513280]
-- [fs] cifs: cifsacl: Use a temporary ops variable to reduce code length (Leif Sahlberg) [1513280]
-- [fs] Don't delay freeing mids when blocked on slow socket write of request (Leif Sahlberg) [1513280]
-- [fs] cifs: silence lockdep splat in cifs_relock_file() (Leif Sahlberg) [1513280]
-- [fs] cifs: add misssing SFM mapping for doublequote (Leif Sahlberg) [1513280]
-- [fs] cifs: fix CIFS_IOC_GET_MNT_INFO oops (Leif Sahlberg) [1513280]
-- [fs] cifs: fix mapping of SFM_SPACE and SFM_PERIOD (Leif Sahlberg) [1513280]
-- [fs] cifs: fix CIFS_ENUMERATE_SNAPSHOTS oops (Leif Sahlberg) [1513280]
-- [fs] cifs: fix leak in FSCTL_ENUM_SNAPS response handling (Leif Sahlberg) [1513280]
-- [fs] cifs: fix IPv6 link local, with scope id, address parsing (Leif Sahlberg) [1513280]
-- [fs] cifs: small underflow in cnvrtDosUnixTm() (Leif Sahlberg) [1513280]
-- [fs] cifs: don't check for failure from mempool_alloc() (Leif Sahlberg) [1513280]
-
-* Fri Nov 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-798.el7]
-- [net] rtnetlink: fix missing size for IFLA_IF_NETNSID (Jiri Benc) [1497774]
-- [net] rtnetlink: use netnsid to query interface (Jiri Benc) [1497774]
-- [net] openvswitch: reliable interface indentification in port dumps (Jiri Benc) [1497774]
-- [net] export peernet2id_alloc (Jiri Benc) [1497774]
-- [net] rtnetlink: advertise the new nsid when the netns iface changes (Jiri Benc) [1497774]
-- [net] rtnelink: Move link dump consistency check out of the loop (Jiri Benc) [1497774]
-- [net] rtnetlink: Improve handling of failures on link and route dumps (Jiri Benc) [1497774]
-- [net] openvswitch: Fix an error handling path in 'ovs_nla_init_match_and_action()' (Jiri Benc) [1497774]
-- [net] openvswitch: fix skb_panic due to the incorrect actions attrlen (Jiri Benc) [1497774]
-- [net] openvswitch: Remove unnecessary newlines from OVS_NLERR uses (Jiri Benc) [1497774]
-- [net] openvswitch: fix potential out of bound access in parse_ct (Jiri Benc) [1497774]
-- [net] openvswitch: Optimize operations for OvS flow_stats (Jiri Benc) [1497774]
-- [net] openvswitch: Optimize updating for OvS flow_stats (Jiri Benc) [1497774]
-- [net] openvswitch: Fix for force/commit action failures (Jiri Benc) [1497774]
-- [net] openvswitch: fix mis-ordered comment lines for ovs_skb_cb (Jiri Benc) [1497774]
-- [net] openvswitch: Avoid using stack larger than 1024 (Jiri Benc) [1497774]
-- [net] openvswitch: warn about missing first netlink attribute (Jiri Benc) [1497774]
-- [net] openvswitch: Add eventmask support to CT action (Jiri Benc) [1497774]
-- [net] openvswitch: Typo fix (Jiri Benc) [1497774]
-- [net] openvswitch: Delete conntrack entry clashing with an expectation (Jiri Benc) [1497774]
-- [net] openvswitch: Fix ovs_flow_key_update() (Jiri Benc) [1497774]
-- [net] openvswitch: Fix refcount leak on force commit (Jiri Benc) [1497774]
-- [net] openvswitch: Refactor sample and recirc actions implementation (Jiri Benc) [1497774]
-- [net] openvswitch: Optimize sample action for the clone use cases (Jiri Benc) [1497774]
-- [net] openvswitch: Refactor recirc key allocation (Jiri Benc) [1497774]
-- [net] openvswitch: Deferred fifo API change (Jiri Benc) [1497774]
-- [net] openvswitch: Add missing case OVS_TUNNEL_KEY_ATTR_PAD (Jiri Benc) [1497774]
-- [net] openvswitch: Set the ipv6 source tunnel key address attribute correctly (Jiri Benc) [1497774]
-- [net] openvswitch: actions: fixed a brace coding style warning (Jiri Benc) [1497774]
-- [net] openvswitch: Set event bit after initializing labels (Jiri Benc) [1497774]
-- [net] openvswitch: Set internal device max mtu to ETH_MAX_MTU (Jiri Benc) [1497774]
-- [net] openvswitch: Pack struct sw_flow_key (Jiri Benc) [1497774]
-- [net] openvswitch: Add force commit (Jiri Benc) [1497774]
-- [net] openvswitch: Add original direction conntrack tuple to sw_flow_key (Jiri Benc) [1497774]
-- [net] openvswitch: Inherit master's labels (Jiri Benc) [1497774]
-- [net] openvswitch: Refactor labels initialization (Jiri Benc) [1497774]
-- [net] openvswitch: Simplify labels length logic (Jiri Benc) [1497774]
-- [net] openvswitch: Unionize ovs_key_ct_label with a u32 array (Jiri Benc) [1497774]
-- [net] openvswitch: Do not trigger events for unconfirmed connections (Jiri Benc) [1497774]
-- [net] openvswitch: Simplify do_execute_actions() (Jiri Benc) [1497774]
-- [net] openvswitch: upcall: Fix vlan handling (Jiri Benc) [1497774]
-- [net] openvswitch: Add a missing break statement (Jiri Benc) [1497774]
-- [net] openvswitch: allow L3 netdev ports (Jiri Benc) [1497774]
-- [net] openvswitch: add Ethernet push and pop actions (Jiri Benc) [1497774]
-- [net] openvswitch: netlink: support L3 packets (Jiri Benc) [1497774]
-- [net] openvswitch: add processing of L3 packets (Jiri Benc) [1497774]
-- [net] openvswitch: support MPLS push and pop for L3 packets (Jiri Benc) [1497774]
-- [net] openvswitch: pass mac_proto to ovs_vport_send (Jiri Benc) [1497774]
-- [net] openvswitch: add mac_proto field to the flow key (Jiri Benc) [1497774]
-- [net] openvswitch: use hard_header_len instead of hardcoded ETH_HLEN (Jiri Benc) [1497774]
-- [net] openvswitch: use core MTU range checking in core net infra (Jiri Benc) [1497774]
-- [net] openvswitch: remove unnecessary EXPORT_SYMBOLs (Jiri Benc) [1497774]
-- [net] openvswitch: remove unused functions (Jiri Benc) [1497774]
-- [net] openvswitch: use alias for genetlink family names (Jiri Benc) [1497774]
-- [net] openvswitch: 802.1ad uapi changes (Jiri Benc) [1497774]
-- [net] openvswitch: Free tmpl with tmpl_free (Jiri Benc) [1497774]
-- [net] openvswitch: use __u32 from linux/types.h (Jiri Benc) [1497774]
-- [net] openvswitch: Only set mark and labels with a commit flag (Jiri Benc) [1497774]
-- [net] openvswitch: Set mark and labels before confirming (Jiri Benc) [1497774]
-- [net] openvswitch: Add packet len info to upcall (Jiri Benc) [1497774]
-- [net] openvswitch: Add packet truncation support (Jiri Benc) [1497774]
-- [net] ip_tunnels: define IP_TUNNEL_OPTS_MAX and use it (Jiri Benc) [1497774]
-- [net] oenvswitch: Change pseudohdr argument of inet_proto_csum_replace* to be a bool (Jiri Benc) [1497774]
-- [net] openvswitch: remove extraneous include (Jiri Benc) [1497774]
-- [net] ipv6: orphan skbs in reassembly unit (Jiri Benc) [1497774]
-- [net] netfilter: conntrack: remove unused netns_ct member (Jiri Benc) [1497774]
-- [net] netfilter: conntrack: avoid excess memory allocation (Jiri Benc) [1497774]
-- [net] netfilter: conntrack: support a fixed size of 128 distinct labels (Jiri Benc) [1497774]
-- [net] netfilter: connlabels: move helpers to xt_connlabel (Jiri Benc) [1497774]
-- [net] openvswitch: correctly fragment packet with mpls headers (Jiri Benc) [1497774]
-- [net] openvswitch: use mpls_hdr (Jiri Benc) [1497774]
-- [net] mpls: move mpls_hdr to a common location (Jiri Benc) [1497774]
-- [net] openvswitch: mpls: set network header correctly on key extract (Jiri Benc) [1497774]
-- [net] veth: Set features for MPLS (Jiri Benc) [1497774]
-- [net] mpls: Fixups for GSO (Jiri Benc) [1497774]
-- [net] mpls: Allow mpls_gso and mpls_router to be built as modules (Jiri Benc) [1497774]
-- [net] mpls: spelling: s/conceved/conceived/, s/as/a/ (Jiri Benc) [1497774]
-- [net] mpls: Refactor how the mpls module is built (Jiri Benc) [1497774]
-- [net] Remove MPLS GSO feature (Jiri Benc) [1497774]
-- [net] mpls: Allow mpls_gso to be built as module (Jiri Benc) [1497774]
-- [net] mpls: Fix mpls_gso handler (Jiri Benc) [1497774]
-- [net] genetlink: Make family a signed integer (Jiri Benc) [1497774]
-- [net] genetlink: Fix generic netlink family unregister (Jiri Benc) [1497774]
-- [net] genetlink: fix counting regression on ctrl_dumpfamily() (Jiri Benc) [1497774]
-- [net] genetlink: fix error return code in genl_register_family() (Jiri Benc) [1497774]
-- [net] genetlink: use idr to track families (Jiri Benc) [1497774]
-- [kernel] kabi: add RH_KABI_CONST (Jiri Benc) [1497774]
-- [net] genetlink: statically initialize families (Jiri Benc) [1497774]
-- [net] drop_monitor: fix the value of maxattr (Jiri Benc) [1497774]
-- [net] genetlink: no longer support using static family IDs (Jiri Benc) [1497774]
-- [net] genetlink: introduce and use genl_family_attrbuf() (Jiri Benc) [1497774]
-- [net] nfnetlink: remove nfnetlink_alloc_skb (Jiri Benc) [1497774]
-- [net] revert "genl: Add genlmsg_new_unicast() for unicast message allocation" (Jiri Benc) [1497774]
-- [net] openvswitch: revert: "Enable memory mapped Netlink i/o" (Jiri Benc) [1497774]
-- [net] netlink: remove mmapped netlink support (Jiri Benc) [1497774]
-- [net] genetlink: simplify genl_notify (Jiri Benc) [1497774]
-- [net] genetlink: synchronize socket closing and family removal (Jiri Benc) [1497774]
-- [net] genetlink: document parallel_ops (Jiri Benc) [1497774]
-- [net] netlink: call unbind when releasing socket (Jiri Benc) [1497774]
-- [net] netlink: update listeners directly when removing socket (Jiri Benc) [1497774]
-- [net] netlink: rename netlink_unbind() to netlink_undo_bind() (Jiri Benc) [1497774]
-- [net] netlink: implement unbind to netlink_setsockopt NETLINK_DROP_MEMBERSHIP (Jiri Benc) [1497774]
-
-* Wed Nov 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-797.el7]
-- [md] dm bufio: fix integer overflow when limiting maximum cache size (Mike Snitzer) [1512096]
-- [md] dm: clear all discard attributes in queue_limits when discards are disabled (Mike Snitzer) [1512096]
-- [md] dm: do not set 'discards_supported' in targets that do not need it (Mike Snitzer) [1512096]
-- [md] dm: discard support requires all targets in a table support discards (Mike Snitzer) [1512096]
-- [md] dm mpath: remove annoying message of 'blk_get_request() returned -11' (Mike Snitzer) [1512096]
-- [md] dm space map metadata: use ARRAY_SIZE (Mike Snitzer) [1512096]
-- [md] dm: small cleanup in dm_get_md() (Mike Snitzer) [1512096]
-- [md] dm: fix race between dm_get_from_kobject() and __dm_destroy() (Mike Snitzer) [1512096]
-- [md] dm cache: lift common migration preparation code to alloc_migration() (Mike Snitzer) [1512096]
-- [md] dm cache: remove usused deferred_cells member from struct cache (Mike Snitzer) [1512096]
-- [md] dm cache policy smq: allocate cache blocks in order (Mike Snitzer) [1512096]
-- [md] dm cache policy smq: change max background work from 10240 to 4096 blocks (Mike Snitzer) [1512096]
-- [md] dm cache background tracker: limit amount of background work that may be issued at once (Mike Snitzer) [1512096]
-- [md] dm cache policy smq: take origin idle status into account when queuing writebacks (Mike Snitzer) [1512096]
-- [md] dm cache policy smq: handle races with queuing background_work (Mike Snitzer) [1512096]
-- [md] dm cache: pass cache structure to mode functions (Mike Snitzer) [1512096]
-- [md] dm cache: fix race condition in the writeback mode overwrite_bio optimisation (Mike Snitzer) [1512095]
-- [md] dm raid: fix panic when attempting to force a raid to sync (Mike Snitzer) [1512096]
-- [x86] x86/smpboot: Fix __max_logical_packages estimate (Prarit Bhargava) [1474709]
-- [x86] x86/topology: Avoid wasting 128k for package id array (Prarit Bhargava) [1474709]
-- [x86] perf/x86/intel/uncore: Cache logical pkg id in uncore driver (Prarit Bhargava) [1474709]
-- [x86] kvm: mmu: always terminate page walks at level 1 (Paolo Bonzini) [1500381] {CVE-2017-12188}
-- [x86] kvm: nvmx: update last_nonleaf_level when initializing nested EPT (Paolo Bonzini) [1500381] {CVE-2017-12188}
-- [net] act_tunnel_key: fix NULL pointer dereference in tunnel_key_release() (Davide Caratti) [1511309]
-- [net] act_tunnel_key: fix wrong pointer dereference in tcf_idr_create() (Davide Caratti) [1511309]
-- [net] packet: in packet_do_bind, test fanout with bind_lock held (Hangbin Liu) [1505429] {CVE-2017-15649}
-- [net] packet: hold bind lock when rebinding to fanout hook (Hangbin Liu) [1505429] {CVE-2017-15649}
-- [net] packet: Do not call fanout_release from atomic contexts (Hangbin Liu) [1505429] {CVE-2017-15649}
-- [net] packet: fix races in fanout_add() (Hangbin Liu) [1505429] {CVE-2017-15649}
-- [net] bonding: remove rtmsg_ifinfo called after bond_lower_state_changed (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_CHANGELOWERSTATE event process back to rtnetlink_event (Stefano Brivio) [1505975]
-- [net] bonding: remove rtmsg_ifinfo called in bond_master_upper_dev_link (Stefano Brivio) [1505975]
-- [net] rtnetlink: do not set notification for tx_queue_len in do_setlink (Stefano Brivio) [1505975]
-- [net] rtnetlink: check DO_SETLINK_NOTIFY correctly in do_setlink (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_CHANGEUPPER event process back in rtnetlink_event (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_POST_TYPE_CHANGE event process back in rtnetlink_event (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_CHANGE_TX_QUEUE_LEN event process back in rtnetlink_event (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_CHANGEMTU event process back in rtnetlink_event (Stefano Brivio) [1505975]
-- [net] revert "rtnetlink: Do not generate notifications for CHANGEADDR event" (Stefano Brivio) [1505975]
-- [net] rtnetlink: use the new rtnl_get_event() interface (Vlad Yasevich) [1438106]
-- [net] rtnl: Add support for netdev event to link messages (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for NETDEV_CHANGE_TX_QUEUE_LEN event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for NETDEV_CHANGEUPPER event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for CHANGELOWERSTATE event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for PRECHANGEUPPER event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for POST_TYPE_CHANGE event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for CHANGEADDR event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notification for UDP_TUNNEL_PUSH_INFO (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for MTU events (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Convert rtnetlink_event to white list (Vlad Yasevich) [1438106]
-- [crypto] rsa: Disable fips admission of rsa crypto (Neil Horman) [1475478]
-- [crypto] testmgr - add test cases for CRC32 (Neil Horman) [1475478]
-- [crypto] Add missing chunk from addition of zlib tests (Neil Horman) [1475478]
-- [crypto] acomp - update testmgr with support for acomp (Neil Horman) [1475478]
-- [crypto] qat - avoid an uninitialized variable warning (Neil Horman) [1475478]
-- [crypto] qat - comply with crypto_akcipher_maxsize() (Neil Horman) [1475478]
-- [crypto] qat - comply with crypto_kpp_maxsize() (Neil Horman) [1475478]
-- [crypto] testmgr - fix !x==y confusion (Neil Horman) [1475478]
-- [crypto] scomp - add support for deflate rfc1950 (zlib) (Neil Horman) [1475478]
-- [crypto] scomp - allow registration of multiple scomps (Neil Horman) [1475478]
-- [crypto] acomp - allow registration of multiple acomps (Neil Horman) [1475478]
-- [crypto] kpp - constify buffer passed to crypto_kpp_set_secret() (Neil Horman) [1475478]
-- [crypto] qat - increase number of supported devices (Neil Horman) [1475478]
-- [crypto] qat - modify format of dev top level debugfs entries (Neil Horman) [1475478]
-- [crypto] qat - replace hardcoded BIT(0) in vf_isr (Neil Horman) [1475478]
-- [crypto] qat - fix comments describing adf_disable_sriov() (Neil Horman) [1475478]
-- [crypto] qat - fix indentation (Neil Horman) [1475478]
-- [crypto] acomp - add support for deflate via scomp (Neil Horman) [1475478]
-- [crypto] acomp - add driver-side scomp interface (Neil Horman) [1475478]
-- [crypto] acomp - add asynchronous compression api (Neil Horman) [1475478]
-- [kernel] audit: Record fanotify access control decisions (Steve Grubb) [1451872]
-
-* Tue Nov 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-796.el7]
-- [fs] vfs: fix softlockup in shrink_dcache_for_umount() (Miklos Szeredi) [1471875]
-- [fs] cifs: check MaxPathNameComponentLength != 0 before using it (Leif Sahlberg) [1484619]
-- [fs] cifs: remove endian related sparse warning (Leif Sahlberg) [1484619]
-- [fs] cifs: return ENAMETOOLONG for overlong names in cifs_open()/cifs_lookup() (Leif Sahlberg) [1484619]
-- [fs] dlm: Eliminate CF_CONNECT_PENDING flag (Robert S Peterson) [1498538]
-- [fs] dlm: use sock_create_lite inside tcp_accept_from_sock (Robert S Peterson) [1498538]
-- [fs] dlm: Fix saving of NULL callbacks (Robert S Peterson) [1498538]
-- [pci] Detach driver before procfs & sysfs teardown on device remove (Alex Williamson) [1447196]
-- [hid] wacom: switch Dell canvas into highres mode (Benjamin Tissoires) [1507821]
-- [x86] module: Detect and skip invalid relocations (Josh Poimboeuf) [1512763]
-- [x86] kvm: svm: add support for RDTSCP (Eduardo Habkost) [1511805]
-- [x86] tsc: Force TSC_ADJUST register to value >= zero (Prarit Bhargava) [1497055]
-- [x86] tsc: Validate cpumask pointer before accessing it (Prarit Bhargava) [1497055]
-- [x86] tsc: Try to adjust TSC if sync test fails (Prarit Bhargava) [1497055]
-- [x86] tsc: Prepare warp test for TSC adjustment (Prarit Bhargava) [1497055]
-- [x86] tsc: Move sync cleanup to a safe place (Prarit Bhargava) [1497055]
-- [x86] tsc: Sync test only for the first cpu in a package (Prarit Bhargava) [1497055]
-- [x86] tsc: Verify TSC_ADJUST from idle (Prarit Bhargava) [1497055]
-- [x86] tsc: Store and check TSC ADJUST MSR (Prarit Bhargava) [1497055]
-- [x86] tsc: Detect random warps (Prarit Bhargava) [1497055]
-- [s390] noexec: execute kexec datamover without DAT (Hendrik Brueckner) [1513893]
-- [s390] fix transactional execution control register handling (Hendrik Brueckner) [1513894]
-- [nvme] update timeout module parameter type (David Milburn) [1507889]
-- [virt] kvm: make pid available for uevents without debugfs (Paolo Bonzini) [1469484]
-- [virt] revert "kvm: introduce guest count uevent" (Paolo Bonzini) [1469484]
-- [virt] kvm: trigger uevents when creating or destroying a VM (Paolo Bonzini) [1469484]
-- [netdrv] bonding: fix slave stuck in BOND_LINK_FAIL state (Jarod Wilson) [1500430 1496837 1493777]
-- [netdrv] bonding: discard lowest hash bit for 802.3ad layer 3+4 (Jarod Wilson) [1493777]
-- [netdrv] bonding: speed/duplex update at NETDEV_UP event (Jarod Wilson) [1493777]
-- [netdrv] e1000e: Be drop monitor friendly (David Arcari) [1505547]
-- [netdrv] e1000e: apply burst mode settings only on default (David Arcari) [1505547]
-- [netdrv] e1000e: fix buffer overrun while the I219 is processing DMA transactions (David Arcari) [1505547]
-- [netdrv] e1000e: Avoid receiver overrun interrupt bursts (David Arcari) [1505547]
-- [netdrv] e1000e: Separate signaling for link check/link up (David Arcari) [1505547]
-- [netdrv] e1000e: Fix return value test (David Arcari) [1505547]
-- [netdrv] e1000e: Fix wrong comment related to link detection (David Arcari) [1505547]
-- [netdrv] e1000e: Fix error path in link detection (David Arcari) [1505547]
-- [netdrv] e1000e: use setup_timer() helper (David Arcari) [1505547]
-- [netdrv] ibmvnic: Add vnic client data to login buffer (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Set state UP (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Fix failover error path for non-fatal resets (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Update reset infrastructure to support tunable parameters (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Let users change net device features (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Enable TSO support (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Enable scatter-gather support (Gustavo Duarte) [1508849]
-
-* Tue Nov 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-795.el7]
-- [mm] huge pagecache: mmap_sem is unlocked when truncation splits pmd (Eric Sandeen) [1514874]
-- [mm] thp: skip file huge pmd on copy_huge_pmd() (Jeff Moyer) [1513722]
-- [mm] fix memory leak in copy_huge_pmd() (Jeff Moyer) [1513722]
-- [mm] dax: fix DAX PMD pgoff usage (Jeff Moyer) [1513605]
-- [kernel] fix device-dax pud write-faults triggered by get_user_pages() (Larry Woodman) [1457572 1457561]
-- [dax] explicitly set noop_backing_dev_info (Larry Woodman) [1457572 1457561]
-- [tools] fix mock pmem_direct_access() implementation (Larry Woodman) [1457572 1457561]
-- [x86] Remove paravirt ops pmd_update[_defer] and pte_update_defer (Larry Woodman) [1457572 1457561]
-- [dax] switch to srcu, fix rcu_read_lock() vs pte allocation (Larry Woodman) [1471656 1457572 1457561]
-- [mm] fix cache mode tracking in vm_insert_mixed() (Larry Woodman) [1457572 1457561]
-- [kernel] fix cache mode of dax pmd mappings (Larry Woodman) [1457572 1457561]
-- [mm] update with WRITE_ONCE/READ_ONCE (Larry Woodman) [1457572 1457561]
-- [kernel] do not hint for NUMA balancing on VM_MIXEDMAP mappings (Larry Woodman) [1457572 1457561]
-- [mm] skip VM_HUGETLB and VM_MIXEDMAP VMA for lazy mbind (Larry Woodman) [1457572 1457561]
-- [x86] Honour passed pgprot in track_pfn_insert() and track_pfn_remap() (Larry Woodman) [1457572 1457561]
-- [dax] revert "rhel: device-dax: only support page-sized faults" (Larry Woodman) [1457572 1457561]
-- [x86] fix get_user_pages() vs device-dax pud mappings (Larry Woodman) [1457572 1457561]
-- [dax] fix pud fault fallback handling (Larry Woodman) [1457572 1457561]
-- [dax] fix pmd/pte fault fallback handling (Larry Woodman) [1457572 1457561]
-- [mm] replace FAULT_FLAG_SIZE with parameter to huge_fault (Larry Woodman) [1457572 1457561]
-- [dax] Support for transparent PUD pages for device DAX (Larry Woodman) [1457572 1457561]
-- [mm] dd support for PUD-sized transparent hugepages (Larry Woodman) [1457572 1457561]
-- [mm] change ->pmd_fault to ->huge_fault (Larry Woodman) [1457572 1457561]
-- [mm] change pmd_fault() to take only vmf parameter (Larry Woodman) [1457572 1457561]
-- [mm] make pmd_fault() and friends be the same as fault() (Larry Woodman) [1457572 1457561]
-- [mm] join struct fault_env and vm_fault (Larry Woodman) [1457572 1457561]
-- [mm] do not pass mm_struct into handle_mm_fault (Larry Woodman) [1457572 1457561]
-
-* Tue Nov 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-794.el7]
-- [security] keys: trusted: fix writing past end of buffer in trusted_read() (David Howells) [1509152 1503242]
-- [security] keys: return full count in keyring_read() if buffer is too small (David Howells) [1509152 1503242]
-- [lib] assoc_array: Fix a buggy node-splitting case (David Howells) [1503242 1501286] {CVE-2017-1219}
-- [security] keys: load key flags and expiry time atomically in proc_keys_show() (David Howells) [1503242]
-- [security] keys: Load key expiry time atomically in keyring_search_iterator() (David Howells) [1503242]
-- [security] keys: load key flags and expiry time atomically in key_validate() (David Howells) [1503242]
-- [security] keys: don't let add_key() update an uninstantiated key (David Howells) [1503242]
-- [security] keys: Fix race between updating and finding a negative key (David Howells) [1503242]
-- [security] keys: encrypted: fix dereference of NULL user_key_payload (David Howells) [1503242]
-- [security] keys: big_key: Use key preparsing (David Howells) [1503242]
-- [security] keys: properly zero out sensitive key material in big_key (David Howells) [1503242]
-- [security] keys: use kmemdup() in request_key_auth_new() (David Howells) [1503242]
-- [security] keys: reset parent each time before searching key_user_tree (David Howells) [1503242]
-- [security] keys: prevent KEYCTL_READ on negative key (David Howells) [1503242 1498371]
-- [security] keys: prevent creating a different user's keyrings (David Howells) [1503242]
-- [security] keys: fix writing past end of user-supplied buffer in keyring_read() (David Howells) [1503242]
-- [security] keys: fix key refcount leak in keyctl_read_key() (David Howells) [1503242]
-- [security] keys: fix key refcount leak in keyctl_assume_authority() (David Howells) [1503242]
-- [security] keys: don't revoke uninstantiated key in request_key_auth_new() (David Howells) [1503242]
-- [security] keys: fix cred refcount leak in request_key_auth_new() (David Howells) [1503242]
-- [lib] oid_registry.c: x.509: fix the buffer overflow in the utility function for OID string (David Howells) [1503242]
-- [crypto] crypto : asymmetric_keys : verify_pefile:zero memory content before freeing (David Howells) [1503242]
-- [security] keys: sanitize key structs before freeing (David Howells) [1503242]
-- [security] keys: trusted: sanitize all key material (David Howells) [1503242]
-- [security] keys: encrypted: sanitize all key material (David Howells) [1503242]
-- [security] keys: user_defined: sanitize key payloads (David Howells) [1503242]
-- [security] keys: sanitize add_key() and keyctl() key payloads (David Howells) [1503242]
-- [security] keys: fix freeing uninitialized memory in key_update() (David Howells) [1503242]
-- [security] keys: encrypted: use constant-time HMAC comparison (David Howells) [1503242]
-- [crypto] hash - Add helpers to zero stack request/descriptor (David Howells) [1503242]
-- [security] keys: encrypted: fix race causing incorrect HMAC calculations (David Howells) [1503242]
-- [security] keys: Fix stale key registration at error path (David Howells) [1503242]
-- [security] keys: encrypted: fix buffer overread in valid_master_desc() (David Howells) [1503242]
-- [security] keys: put keyring if install_session_keyring_to_cred() fails (David Howells) [1503242]
-- [security] keys: Delete an error message for a failed memory allocation in get_derived_key() (David Howells) [1503242]
-- [security] use READ_ONCE instead of deprecated ACCESS_ONCE (David Howells) [1503242]
-- [security] keys: add CONFIG_KEYS_COMPAT to Kconfig (David Howells) [1503242]
-- [crypto] pkcs#7: pkcs7_validate_trust(): initialize the _trusted output argument (David Howells) [1503242]
-- [crypto] x.509: Handle midnight alternative notation in GeneralizedTime (David Howells) [1503242]
-- [crypto] x.509: Support leap seconds (David Howells) [1503242]
-- [crypto] x.509: Fix leap year handling again (David Howells) [1503242]
-- [crypto] x.509: Fix the time validation [ver #2] (David Howells) [1503242]
-- [crypto] pkcs#7: Improve and export the X.509 ASN.1 time object decoder (David Howells) [1503242]
-- [crypto] asymmetric_keys - Fix unaligned access in x509_get_sig_params() (David Howells) [1503242]
-- [crypto] pkcs7 - Fix unaligned access in pkcs7_verify() (David Howells) [1503242]
-- [crypto] pkcs#7: Handle PKCS#7 messages that contain no X.509 certs (David Howells) [1503242]
-- [crypto] pkcs#7: Better handling of unsupported crypto (David Howells) [1503242]
-- [crypto] keys: Set pr_fmt() in asymmetric key signature handling (David Howells) [1503242]
-- [crypto] keys: Fix public_key asymmetric key subtype name (David Howells) [1503242]
-- [crypto] rsa: Don't select non-existent symbol (David Howells) [1503242]
-- [crypto] keys: The RSA public key algorithm needs to select MPILIB (David Howells) [1503242]
-- [security] ima: provide support for arbitrary hash algorithms (David Howells) [1503242]
-- [security] keys: fix dereferencing NULL payload with nonzero length (David Howells) [1464851]
-- [security] keys: Fix handling of stored error in a negatively instantiated user key (David Howells) [1466457 1411622] {CVE-2015-8539 CVE-2017-7472}
-- [security] keys: fix keyctl_set_reqkey_keyring() to not leak thread keyrings (David Howells) [1466457 1450158] {CVE-2015-8539 CVE-2017-7472}
-- [security] keys: Differentiate uses of rcu_dereference_key() and user_key_payload() (David Howells) [1466457] {CVE-2015-8539 CVE-2017-7472}
-- [security] keys: Use memzero_explicit() for secret data (David Howells) [1466457] {CVE-2015-8539 CVE-2017-7472}
-- [security] keys: Fix an error code in request_master_key() (David Howells) [1466457] {CVE-2015-8539 CVE-2017-7472}
-
-* Mon Nov 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-793.el7]
-- [fs] writeback: fix a subtle race condition in I_DIRTY clearing (Eric Sandeen) [1492058]
-- [fs] ext4: fix data corruption with EXT4_GET_BLOCKS_ZERO (Eric Sandeen) [1492058]
-- [fs] dax: fix deadlock due to misaligned PMD faults (Eric Sandeen) [1492040]
-- [fs] fs/dax.c: fix inefficiency in dax_writeback_mapping_range() (Eric Sandeen) [1492058]
-- [fs] dax: fix race between colliding PMD & PTE entries (Eric Sandeen) [1492052]
-- [fs] dax: fix PMD data corruption when fault races with write (Eric Sandeen) [1492051]
-- [fs] dax: fix data corruption when fault races with write (Eric Sandeen) [1492051]
-- [fs] ext4: return to starting transaction in ext4_dax_huge_fault() (Eric Sandeen) [1492051]
-- [fs] mm: fix data corruption due to stale mmap reads (Eric Sandeen) [1492051]
-- [fs] Revert "block: use DAX for partition table reads" (Eric Sandeen) [1492058]
-- [fs] dax: prevent invalidation of mapped DAX entries (Eric Sandeen) [1492051]
-- [fs] dax: fix radix tree insertion race (Eric Sandeen) [1473838]
-- [fs] mm,fs,dax: mark dax_iomap_pmd_fault as const (Eric Sandeen) [1492058]
-- [fs] iomap: constify struct iomap_ops (Eric Sandeen) [1492058]
-- [fs] dax: fix build warnings with FS_DAX and !FS_IOMAP (Eric Sandeen) [1492058]
-- [fs] ext4: Add select for CONFIG_FS_IOMAP (Eric Sandeen) [1492058]
-- [mm] dax: wrprotect pmd_t in dax_mapping_entry_mkclean (Larry Woodman) [1457572]
-- [mm] add follow_pte_pmd() (Larry Woodman) [1457572]
-- [mm] x86/include/asm/pgtable.h: add pmd_[dirty|mkclean] for THP (Larry Woodman) [1457572]
-- [mm] mincore: add support for DAX huge page mappings (Larry Woodman) [1457572]
-- [mm] ext2/4, xfs: call thp_get_unmapped_area() for pmd mappings (Larry Woodman) [1457572]
-- [mm] thp, dax: add thp_get_unmapped_area for pmd mappings (Larry Woodman) [1457572]
-- [mm] dax: re-enable dax pmd mappings (Larry Woodman) [1457572 1383493]
-- [mm] allow GFP_{FS, IO} for page_cache_read page cache allocation (Larry Woodman) [1457572 1383493]
-- [mm] fix compilation issues is DAX PMD code (Larry Woodman) [1457572 1383493]
-- [mm] mm, x86: get_user_pages() for dax mappings (Larry Woodman) [1457572 1383493]
-- [mm] mm, dax: dax-pmd vs thp-pmd vs hugetlbfs-pmd (Larry Woodman) [1457572 1383493]
-- [mm] dax: add tracepoint to dax_insert_mapping() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoint to dax_writeback_one() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_writeback_mapping_range() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_load_hole() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_pfn_mkwrite() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_iomap_pte_fault() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] ext4: Simplify DAX fault path (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: Call ->iomap_begin without entry lock during dax fault (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: Finish fault completely when loading holes (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: Avoid page invalidation races and unnecessary radix tree traversals (Larry Woodman) [1457569 1383493 1457572]
-- [mm] Invalidate DAX radix tree entries only if appropriate (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_pmd_insert_mapping() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_pmd_load_hole() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: update MAINTAINERS entries for FS DAX (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoint infrastructure, PMD tracing (Larry Woodman) [1457569 1383493 1457572]
-- [mm] tracing: add __print_flags_u64() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: clear dirty entry tags on cache flush (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: protect PTE modification on WP fault by radix tree entry lock (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: make cache flushing protected by entry lock (Larry Woodman) [1457569 1383493 1457572]
-- [mm] export follow_pte() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] change return values of finish_mkwrite_fault() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] provide helper for finishing mkwrite faults (Larry Woodman) [1457569 1383493 1457572]
-- [mm] pass vm_fault structure into do_page_mkwrite() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] move handling of COW faults into DAX code (Larry Woodman) [1457569 1383493 1457572]
-- [mm] allow full handling of COW faults in ->fault handlers (Larry Woodman) [1457569 1383493 1457572]
-- [mm] factor out functionality to finish page faults (Larry Woodman) [1457569 1383493 1457572]
-- [mm] extend struct vm_fault (Larry Woodman) [1457569 1383493 1457572]
-
-* Mon Nov 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-792.el7]
-- [tools] revert "tools/power turbostat: stop migrating, unless '-m'" (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update version number (Prarit Bhargava) [1514290]
-- [tools] power turbostat: decode MSR_IA32_MISC_ENABLE only on Intel (Prarit Bhargava) [1514290]
-- [tools] power turbostat: stop migrating, unless '-m' (Prarit Bhargava) [1514290]
-- [tools] power turbostat: if --debug, print sampling overhead (Prarit Bhargava) [1514290]
-- [tools] power turbostat: hide SKL counters, when not requested (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update version number (Prarit Bhargava) [1514290]
-- [tools] power turbostat: fix impossibly large CPUc1 value (Prarit Bhargava) [1514290]
-- [tools] power turbostat: turbostat.8 add missing column definitions (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update HWP dump to decimal from hex (Prarit Bhargava) [1514290]
-- [tools] power turbostat: enable package THERM_INTERRUPT dump (Prarit Bhargava) [1514290]
-- [tools] power turbostat: show missing Core and GFX power on SKL and KBL (Prarit Bhargava) [1514290]
-- [tools] power turbostat: bugfix: GFXMHz column not changing (Prarit Bhargava) [1514290]
-- [tools] power turbostat: version 17.02.24 (Prarit Bhargava) [1514290]
-- [tools] power turbostat: bugfix: --add u32 was printed as u64 (Prarit Bhargava) [1514290]
-- [tools] power turbostat: show error on exec (Prarit Bhargava) [1514290]
-- [tools] power turbostat: dump p-state software config (Prarit Bhargava) [1514290]
-- [tools] power turbostat: show package number, even without --debug (Prarit Bhargava) [1514290]
-- [tools] power turbostat: support "--hide C1" etc (Prarit Bhargava) [1514290]
-- [tools] power turbostat: move --Package and --processor into the --cpu option (Prarit Bhargava) [1514290]
-- [tools] power turbostat: turbostat.8 update (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update --list feature (Prarit Bhargava) [1514290]
-- [tools] power turbostat: use wide columns to display large numbers (Prarit Bhargava) [1514290]
-- [tools] power turbostat: Add --list option to show available header names (Prarit Bhargava) [1514290]
-- [tools] power turbostat: fix zero IRQ count shown in one-shot command mode (Prarit Bhargava) [1514290]
-- [tools] power turbostat: add --cpu parameter (Prarit Bhargava) [1514290]
-- [tools] power turbostat: print sysfs C-state stats (Prarit Bhargava) [1514290]
-- [tools] power turbostat: extend --add option to accept /sys path (Prarit Bhargava) [1514290]
-- [tools] power turbostat: skip unused counters on BDX (Prarit Bhargava) [1514290]
-- [tools] power turbostat: fix decoding for GLM, DNV, SKX turbo-ratio limits (Prarit Bhargava) [1514290]
-- [tools] power turbostat: skip unused counters on SKX (Prarit Bhargava) [1514290]
-- [tools] turbostat: Move functions to correct location (Prarit Bhargava) [1514290]
-- [tools] power turbostat: use tsc_tweak everwhere it is needed (Prarit Bhargava) [1514290]
-- [tools] power turbostat: Baytrail c-state support (Prarit Bhargava) [1514290]
-- [tools] power turbostat: print system config, unless --quiet (Prarit Bhargava) [1514290]
-- [tools] power turbostat: decode MSR_MISC_FEATURE_CONTROL (Prarit Bhargava) [1514290]
-- [tools] power turbostat: decode CPUID(6).TURBO (Prarit Bhargava) [1514290]
-- [x86] x86 msr_index.h: Define MSR_MISC_FEATURE_CONTROL (Prarit Bhargava) [1514290]
-- [tools] power turbostat: dump Atom P-states correctly (Prarit Bhargava) [1514290]
-- [x86] x86 msr-index.h: Define Atom specific core ratio MSR locations (Prarit Bhargava) [1514290]
-- [tools] power turbostat: add precision to --debug frequency output (Prarit Bhargava) [1514290]
-- [tools] power turbostat: use new name for MSR_PKG_CST_CONFIG_CONTROL (Prarit Bhargava) [1514290]
-- [x86] msr-index.h: Define MSR_PKG_CST_CONFIG_CONTROL (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update MSR_PKG_CST_CONFIG_CONTROL decoding (Prarit Bhargava) [1514290]
-- [tools] power turbostat: decode Baytrail CC6 and MC6 demotion configuration (Prarit Bhargava) [1514290]
-- [tools] power turbostat: BYT does not have MSR_MISC_PWR_MGMT (Prarit Bhargava) [1514290]
-- [powercap] x86/cpu: Rename Merrifield2 to Moorefield (Prarit Bhargava) [1514290]
-- [tools] power turbostat: Display HWP OOB status (Prarit Bhargava) [1514290]
-- [tools] power turbostat: Replace MSR_NHM_TURBO_RATIO_LIMIT (Prarit Bhargava) [1514290]
-
-* Mon Nov 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-791.el7]
-- [infiniband] rdma/nldev: Enforce device index check for port callback (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: OOPs in rdma_nl_rcv_msg() from misinterpreted flag (Don Dutile) [1499364 1462433]
-- [infiniband] rdma/qedr: Parse vlan priority as sl (Don Dutile) [1499364 1462433]
-- [infiniband] rdma/qedr: Parse VLAN ID correctly and ignore the value of zero (Don Dutile) [1499364 1462433 1456694]
-- [infiniband] ib/mlx5: Fix label order in error path handling (Don Dutile) [1499364 1456694]
-- [infiniband] rdma/iwpm: Properly mark end of NL messages (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Unsuccessful PCIe caps tuning should not fail driver load (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: On error, fix use after free during user context setup (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Return correct value in general interrupt handler (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Check eeprom config partition validity (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Only reset QSFP after link up and turn off AOC TX (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Turn off AOC TX after offline substates (Don Dutile) [1499364 1452789 1456694]
-- [infiniband] ib/mlx5: Fix NULL deference on mlx5_ib_update_xlt failure (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Simplify mlx5_ib_cont_pages (Don Dutile) [1499364 1456694 1456699]
-- [infiniband] ib/ipoib: Fix inconsistency with free_netdev and free_rdma_netdev (Don Dutile) [1499364 1456699]
-- [infiniband] ib/ipoib: Fix sysfs Pkey create<->remove possible deadlock (Don Dutile) [1499364 1456699]
-- [infiniband] ib: Correct MR length field to be 64-bit (Don Dutile) [1499364]
-- [infiniband] ib/core: Fix qp_sec use after free access (Don Dutile) [1499364]
-- [infiniband] ib/core: Fix typo in the name of the tag-matching cap struct (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Fix reporting correct opcodes for completion (Don Dutile) [1499364 1454965 1456694]
-- [infiniband] ib/mlx5: fix debugfs cleanup (Don Dutile) [1499364 1456694]
-- [infiniband] ib/ocrdma: fix incorrect fall-through on switch statement (Don Dutile) [1499364 1456699]
-- [infiniband] ib/ipoib: Suppress the retry related completion errors (Don Dutile) [1499364 1456699]
-- [infiniband] ib/core: Fix for core panic (Don Dutile) [1499364 1462433]
-- [netdrv] qed: remove unnecessary call to memset (Don Dutile) [1499364 1462433 1456692]
-- [infiniband] ib/mlx4: fix sprintf format warning (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/netlink: clean up message validity array initializer (Don Dutile) [1499364]
-- [infiniband] rdam/netlink: Fix out-of-bound access while checking message validity (Don Dutile) [1499364]
-- [net] xprtrdma: Use xprt_pin_rqst in rpcrdma_reply_handler (Don Dutile) [1499364]
-- [net] sunrpc: fix a list corruption issue in xprt_release() (Don Dutile) [1499364]
-- [net] sunrpc: Add a separate spinlock to protect the RPC request receive list (Don Dutile) [1499364]
-- [net] sunrpc: Don't hold the transport lock across socket copy operations (Don Dutile) [1499364]
-- [net] sunrpc: Fix up socket autodisconnect (Don Dutile) [1499364]
-- [net] svcrdma: Estimate Send Queue depth properly (Don Dutile) [1499364]
-- [infiniband] rdma core: Add rdma_rw_mr_payload() (Don Dutile) [1499364]
-- [net] svcrdma: Limit RQ depth (Don Dutile) [1499364]
-- [net] svcrdma: Populate tail iovec when receiving (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: Use ARRAY_SIZE macro (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: fix incorrect size allocation for dev->caps.spec_qps (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: fix memory leaks on error exit path (Don Dutile) [1499364 1456692]
-- [infiniband] ib/core: Expose ioctl interface through experimental Kconfig (Don Dutile) [1499364]
-- [infiniband] ib/core: Assign root to all drivers (Don Dutile) [1499364]
-- [infiniband] ib/core: Add completion queue (cq) object actions (Don Dutile) [1499364]
-- [infiniband] ib/core: Add legacy driver's user-data (Don Dutile) [1499364]
-- [infiniband] ib/core: Export ioctl enum types to user-space (Don Dutile) [1499364]
-- [infiniband] ib/core: Explicitly destroy an object while keeping uobject (Don Dutile) [1499364]
-- [infiniband] ib/core: Add macros for declaring methods and attributes (Don Dutile) [1499364]
-- [infiniband] ib/core: Add uverbs merge trees functionality (Don Dutile) [1499364]
-- [infiniband] ib/core: Add DEVICE object and root tree structure (Don Dutile) [1499364]
-- [infiniband] ib/core: Declare an object instead of declaring only type attributes (Don Dutile) [1499364]
-- [infiniband] ib/core: Add new ioctl interface (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Fix a signedness (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Report network header type in WC (Don Dutile) [1499364 1454965]
-- [infiniband] ib/core: Add might_sleep() annotation to ib_init_ah_from_wc() (Don Dutile) [1499364]
-- [infiniband] ib/cm: Fix sleeping in atomic when RoCE is used (Don Dutile) [1499364 1462433]
-- [netdrv] qed: fix spelling mistake: "calescing" -> "coalescing" (Don Dutile) [1499364 1462433]
-- [infiniband] ib/core: Add support to finalize objects in one transaction (Don Dutile) [1499364]
-- [infiniband] ib/core: Add a generic way to execute an operation on a uobject (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4: Add user mac FW update support (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: Fix misplaced brackets of sizeof (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: Make explicit conversion to 64bit value (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: Dynamically allocate structs at mlx4_slave_cap (Don Dutile) [1499364 1456692]
-- [infiniband] documentation: Hardware tag matching (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Support IB_SRQT_TM (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Add XRQ support (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fill XRQ capabilities (Don Dutile) [1499364 1456694]
-- [infiniband] ib/uverbs: Expose XRQ capabilities (Don Dutile) [1499364]
-- [infiniband] ib/uverbs: Add new SRQ type IB_SRQT_TM (Don Dutile) [1499364]
-- [infiniband] ib/uverbs: Add XRQ creation parameter to UAPI (Don Dutile) [1499364]
-- [infiniband] ib/core: Add new SRQ type IB_SRQT_TM (Don Dutile) [1499364]
-- [infiniband] ib/core: Separate CQ handle in SRQ context (Don Dutile) [1499364]
-- [infiniband] ib/core: Add XRQ capabilities (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Update HW layout definitions (Don Dutile) [1499364 1456694 1456704]
-- [infiniband] ib/rxe: Handle NETDEV_CHANGE events (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Avoid ICRC errors by copying into the skb first (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Another fix for broken receive queue draining (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Remove unneeded initialization in prepare6() (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Fix up rxe_qp_cleanup() (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Add dst_clone() in prepare_ipv6_hdr() (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Fix destination cache for IPv6 (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Fix up the responder's find_resources() function (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Remove dangling prototype (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Disable completion upcalls when a CQ is destroyed (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Move refcounting earlier in rxe_send() (Don Dutile) [1499364 1456704 1452789 1451799]
-- [infiniband] ib/rdmavt: Handle dereg of inuse MRs properly (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: Convert qp_stats debugfs interface to use new iterator API (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Convert qp_stats debugfs interface to use new iterator API (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Convert hfi1_error_port_qps() to use new QP iterator (Don Dutile) [1499364 1452789]
-- [infiniband] ib/rdmavt: Add QP iterator API for QPs (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use accessor to determine ring size (Don Dutile) [1499364 1452789]
-- [infiniband] ib/qib: Stricter bounds checking for copy to buffer (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hif1: Remove static tracing from SDMA hot path (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Acquire QSFP cable information on loopback (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: constify vm_operations_struct (Don Dutile) [1499364 1452789]
-- [infiniband] ib/usnic: check for allocation failure (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add opcode states to qp_stats (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add received request info to qp_stats (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix whitespace alignment issue for MAD (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Move structure and MACRO definitions in user_sdma.c to user_sdma.h (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Move structure definitions from user_exp_rcv.c to user_exp_rcv.h (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove duplicate definitions of num_user_pages() function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix the bail out code in pin_vector_pages() function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Clean up pin_vector_pages() function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Clean up user_sdma_send_pkts() function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Clean up hfi1_user_exp_rcv_setup function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Improve local kmem_cache_alloc performance (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Ratelimit prints from sdma_interrupt (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: Stricter bounds checking for copy and array access (Don Dutile) [1499364 1451799]
-- [infiniband] ib/qib: Remove unnecessary memory allocation for boardname (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/{qib, hfi1}: Avoid flow control testing for RDMA write operation (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/rdmavt: Use rvt_put_swqe() in rvt_clear_mr_ref() (Don Dutile) [1499364 1451799 1456694]
-- [infiniband] ib/mlx5: Report mlx5 enhanced multi packet WQE capability (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Allow posting multi packet send WQEs if hardware supports (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add support for multi underlay QP (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fix integer overflow when page_shift == 31 (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fix memory leak in clean_mr error path (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Decouple MR allocation and population flows (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Enable UMR for MRs created with reg_create (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Expose software parsing for Raw Ethernet QP (Don Dutile) [1499364 1456694 1462433]
-- [infiniband] rdma/qedr: fix spelling mistake: "invlaid" -> "invalid" (Don Dutile) [1499364 1462433]
-- [infiniband] ib: Avoid ib_modify_port() failure for RoCE devices (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Update device query parameters and port caps (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Add RoCEv2 support (Don Dutile) [1499364 1454965 1456699]
-- [infiniband] ib/ipoib: Enable ioctl for to IPoIB rdma netdevs (Don Dutile) [1499364 1456699]
-- [infiniband] rdma/nes: Remove zeroed parameter from port query callback (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mlx4: Properly annotate link layer variable (Don Dutile) [1499364 1456692 1456694]
-- [infiniband] rdma/mlx5: Limit scope of get vector affinity local function (Don Dutile) [1499364 1456694 1456704]
-- [infiniband] ib/rxe: Make rxe_counter_name static (Don Dutile) [1499364 1456704 1456699]
-- [infiniband] ib/ipoib: Sync between remove_one to sysfs calls that use rtnl_lock (Don Dutile) [1499364 1456699 1456692]
-- [infiniband] ib/mlx4: Check that reserved fields in mlx4_ib_create_qp_rss are zero (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Remove redundant attribute in mlx4_ib_create_qp_rss struct (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Fix struct mlx4_ib_create_wq alignment (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Fix RSS QP type in creation verb (Don Dutile) [1499364 1456692 1456694]
-- [infiniband] ib/mlx5: Add necessary delay drop assignment (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fix some spelling mistakes (Don Dutile) [1499364 1456694 1456692]
-- [infiniband] ib/mlx4: Fix some spelling mistakes (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mthca: Make explicit conversion to 64bit value (Don Dutile) [1499364]
-- [infiniband] rdma/usnic: Fix remove address space warning (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mlx4: Remove gfp_mask argument from acquire_group call (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/core: Refactor get link layer wrapper (Don Dutile) [1499364]
-- [infiniband] rdma/core: Delete BUG() from unreachable flow (Don Dutile) [1499364]
-- [infiniband] core: Cleanup device capability enum (Don Dutile) [1499364]
-- [infiniband] (core, ulp): Convert register/unregister event handler to be void (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mlx4: Fix create qp command alignment (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mlx4: Don't use uninitialized variable (Don Dutile) [1499364 1456692]
-- [infiniband] ib/uverbs: Introduce and use helper functions to copy ah attributes (Don Dutile) [1499364]
-- [infiniband] ib/cma: Fix erroneous validation of supported default GID type (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: make mlx4_profile const (Don Dutile) [1499364 1456692]
-- [infiniband] Autoload netlink client modules (Don Dutile) [1499364]
-- [infiniband] rdma: Allow demand loading of NETLINK_RDMA (Don Dutile) [1499364]
-- [infiniband] rdma: Fix return value check for ib_get_eth_speed() (Don Dutile) [1499364]
-- [net] xprtrdma: Re-arrange struct rx_stats (Don Dutile) [1499364 1454965]
-- [infiniband] ib/pvrdma: Remove unused function (Don Dutile) [1499364 1454965 1452789]
-- [infiniband] ib/hfi1: Add kernel receive context info to debugfs (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove HFI1_VERBS_31BIT_PSN option (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove pstate from hfi1_pportdata (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Stricter bounds checking of MAD trap index (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Load fallback platform configuration per HFI device (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add flag for platform config scratch register read (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Document phys port state bits not used in IB (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Check xchg returned value for queuing link down entry (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: fix spelling mistake: "Maximim" -> "Maximum" (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Enable RDMA_CAP_OPA_AH in hfi driver to support extended LIDs (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Enhance PIO/SDMA send for 16B (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add 16B RC/UC support (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/rdmavt, hfi1, qib: Enhance rdmavt and hfi1 to use 32 bit lids (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Add 16B trace support (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add 16B UD support (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Determine 9B/16B L2 header type based on Address handle (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add support to process 16B header errors (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add support to send 16B bypass packets (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add support to receive 16B bypass packets (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/rdmavt, hfi1, qib: Modify check_ah() to account for extended LIDs (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hf1: User context locking is inconsistent (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Protect context array set/clear with spinlock (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use host_link_state to read state when DC is shut down (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove lstate from hfi1_pportdata (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove pmtu from the QP structure (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Revert egress pkey check enforcement (Don Dutile) [1499364 1452789]
-- [infiniband] ib/core: Fix input len in multiple user verbs (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Replace PCI pool old API (Don Dutile) [1499364 1456694 1456692]
-- [netdrv] mlx4: Replace PCI pool old API (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mthca: Replace PCI pool old API (Don Dutile) [1499364 1452789]
-- [infiniband] Add OPA extended LID support (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: add const to bin_attribute structures (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: add const to bin_attribute structures (Don Dutile) [1499364 1451799]
-- [infiniband] infiniband: avoid overflow warning (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Remove unneeded check (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Convert pr_info to pr_warn (Don Dutile) [1499364 1456704 1454965]
-- [infiniband] pvrdma: constify pci_device_id (Don Dutile) [1499364 1454965]
-- [infiniband] nes: constify pci_device_id (Don Dutile) [1499364]
-- [infiniband] mthca: constify pci_device_id (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: fix spelling mistake in variable name continious (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: fix spelling mistake: "failng" -> "failing" (Don Dutile) [1499364 1451799]
-- [infiniband] iwcm: Don't allocate iwcm workqueue with WQ_MEM_RECLAIM (Don Dutile) [1499364]
-- [infiniband] cm: Don't allocate ib_cm workqueue with WQ_MEM_RECLAIM (Don Dutile) [1499364]
-- [infiniband] rdma/core: make ib_device.add method optional (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4: fix spelling mistake: "availible" -> "available" (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4: sizeof style usage (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4: remove unnecessary pci_set_drvdata() (Don Dutile) [1499364 1456692]
-- [net] xprtrdma: Remove imul instructions from chunk list encoders (Don Dutile) [1499364]
-- [net] xprtrdma: Remove imul instructions from rpcrdma_convert_iovs() (Don Dutile) [1499364]
-- [netdrv] Change Kconfig description (Don Dutile) [1499364]
-- [netdrv] Allow Mellanox switch devices to be configured if only I2C bus is set (Don Dutile) [1499364]
-- [net] xprtrdma: Clean up rpcrdma_bc_marshal_reply() (Don Dutile) [1499364]
-- [net] xprtrdma: Harden chunk list encoding against send buffer overflow (Don Dutile) [1499364]
-- [net] xprtrdma: Set up an xdr_stream in rpcrdma_marshal_req() (Don Dutile) [1499364]
-- [net] xprtrdma: Remove rpclen from rpcrdma_marshal_req (Don Dutile) [1499364]
-- [net] xprtrdma: Clean up rpcrdma_marshal_req() synopsis (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Export node_type (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Provide port state and physical link state (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Export LID mask control (LMC) (Don Dutile) [1499364]
-- [infiniband] rdma/netink: Export lids and sm_lids (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Advertise IB subnet prefix (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Export node_guid and sys_image_guid (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Export FW version (Don Dutile) [1499364]
-- [infiniband] Simplify get firmware interface (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Expose device and port capability masks (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Implement nldev port doit callback (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Add nldev port dumpit implementation (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Add nldev device doit implementation (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Implement nldev device dumpit calback (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Add nldev initialization flows (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Add netlink device definitions to UAPI (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Update copyright (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Convert LS to doit callback (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Reduce indirection access to cb_table (Don Dutile) [1499364]
-- [infiniband] netlink: Add and implement doit netlink callback (Don Dutile) [1499364]
-- [infiniband] core: Add and expose static device index (Don Dutile) [1499364]
-- [infiniband] rdma/core: Add iterator over ib_devices (Don Dutile) [1499364]
-- [infiniband] netlink: Rename netlink callback struct (Don Dutile) [1499364]
-- [infiniband] netlink: Simplify and rename ibnl_chk_listeners (Don Dutile) [1499364]
-- [infiniband] netlink: Rename and remove redundant parameter from ibnl_multicast (Don Dutile) [1499364]
-- [infiniband] netlink: Rename and remove redundant parameter from ibnl_unicast* (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Simplify the put_msg and put_attr (Don Dutile) [1499364]
-- [infiniband] netlink: Add flag to consolidate common handling (Don Dutile) [1499364]
-- [infiniband] rdma/iwcm: Remove extra EXPORT_SYMBOLS (Don Dutile) [1499364]
-- [infiniband] rdma/iwcm: Remove useless check of netlink client validity (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Avoid double pass for RDMA netlink messages (Don Dutile) [1499364]
-- [infiniband] netlink: Remove redundant owner option for netlink callbacks (Don Dutile) [1499364]
-- [infiniband] netlink: Remove netlink clients infrastructure (Don Dutile) [1499364]
-- [infiniband] core: Add wait/retry version of ibnl_unicast (Don Dutile) [1499364 1456694]
-- [infiniband] mlx5: support ->get_vector_affinity (Don Dutile) [1499364 1456694]
-- [infiniband] core: expose affinity mappings per completion vector (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: move affinity hints assignments to generic code (Don Dutile) [1499364 1456694]
-- [kernel] pci: add an API to get node from vector (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5e: don't assume anything on the irq affinity mappings of the device (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: convert to generic pci_alloc_irq_vectors (Don Dutile) [1499364 1456694]
-- [infiniband] ib/cm: Set appropriate slid and dlid when handling CM request (Don Dutile) [1499364]
-- [infiniband] ib/cm: Create appropriate path records when handling CM request (Don Dutile) [1499364]
-- [infiniband] ib/cm: Add OPA Path record support to CM (Don Dutile) [1499364]
-- [infiniband] ib/core: Change wc.slid from 16 to 32 bits (Don Dutile) [1499364]
-- [infiniband] ib/core: Change port_attr.sm_lid from 16 to 32 bits (Don Dutile) [1499364]
-- [infiniband] ib/core: Change port_attr.lid size from 16 to 32 bits (Don Dutile) [1499364]
-- [infiniband] ib/mad: Change slid in RMPP recv from 16 to 32 bits (Don Dutile) [1499364 1456699]
-- [infiniband] ib/ipoib: Increase local_lid to 32 bits (Don Dutile) [1499364 1456699]
-- [infiniband] ib/srpt: Increase lid and sm_lid to 32 bits (Don Dutile) [1499364]
-- [infiniband] ib/core: Convert ah_attr from OPA to IB when copying to user (Don Dutile) [1499364]
-- [net] xprtrdma: Clean up XDR decoding in rpcrdma_update_granted_credits() (Don Dutile) [1499364]
-- [net] xprtrdma: Remove rpcrdma_rep::rr_len (Don Dutile) [1499364]
-- [net] xprtrdma: Remove opcode check in Receive completion handler (Don Dutile) [1499364]
-- [net] xprtrdma: Replace rpcrdma_count_chunks() (Don Dutile) [1499364]
-- [net] sunrpc: Add generic helpers for xdr_stream encode/decode (Don Dutile) [1499364]
-- [net] xprtrdma: Refactor rpcrdma_reply_handler() (Don Dutile) [1499364]
-- [net] xprtrdma: Harden backchannel call decoding (Don Dutile) [1499364]
-- [net] xprtrdma: Add xdr_init_decode to rpcrdma_reply_handler() (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Always perform offline transition (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Prevent link down request double queuing (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Create workqueue for link events (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/{rdmavt, hfi1, qib}: Fix panic with post receive and SGE compression (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Disambiguate corruption and uninitialized error cases (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Only set fd pointer when base context is completely initialized (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Do not enable disabled port on cable insert (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Harden state transition to Armed and Active (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Split copy_to_user data copy for better security (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Verify port data VLs credits on transition to Armed (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Move saving PCI values to a separate function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix initialization failure for debug firmware (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix code consistency for if/else blocks in chip.c (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Send MAD traps until repressed (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Pass the context pointer rather than the index (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use context pointer rather than context index (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Size rcd array index correctly and consistently (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove unused user context data members (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Assign context does not clean up file descriptor correctly on error (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Serve the most starved iowait entry first (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix bar0 mapping to use write combining (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Check return values from PCI config API calls (Don Dutile) [1499364 1452789]
-- [infiniband] ib/cma: Fix default RoCE type setting (Don Dutile) [1499364 1462433]
-- [infiniband] rdma/qedr: notify user application of supported WIDs (Don Dutile) [1499364 1462433]
-- [infiniband] rdma/qedr: notify user application if DPM is supported (Don Dutile) [1499364 1462433]
-- [netdrv] qed: enhanced per queue max coalesce value (Don Dutile) [1499364 1462433]
-- [netdrv] qed: Read per queue coalesce from hardware (Don Dutile) [1499364 1462433]
-- [netdrv] qed: Add support for vf coalesce configuration (Don Dutile) [1499364 1462433]
-- [netdrv] qede: Add ethtool support for Energy efficient ethernet (Don Dutile) [1499364 1462433]
-- [netdrv] qed: Add support for Energy efficient ethernet (Don Dutile) [1499364 1462433]
-- [netdrv] qed/qede: Add setter APIs support for RX flow classification (Don Dutile) [1499364 1462433]
-- [netdrv] qede: Add getter APIs support for RX flow classification (Don Dutile) [1499364 1462433 1456692]
-- [netdrv] mlx4_en: remove unnecessary error check (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_en: remove unnecessary returned value (Don Dutile) [1499364 1456692 1452789]
-- [infiniband] ib/hfi1: Add receiving queue info to qp_stats (Don Dutile) [1499364 1452789 1456692]
-- [infiniband] ib/mlx4: Expose RSS capabilities (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Add support for RSS QP (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Add support for WQ indirection table related verbs (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Add support for WQ related verbs (Don Dutile) [1499364 1456692]
-- [infiniband] (ib, net)/mlx4: Add resource utilization support (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Add inline-receive support (Don Dutile) [1499364 1456692 1456694]
-- [infiniband] ib/mlx5: Expose extended error counters (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fix cached MR allocation flow (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Report RX checksum capabilities for IPoIB (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Report enhanced capabilities for IPoIB (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add multicast flow steering support for underlay QP (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add support for QP with a given source QPN (Don Dutile) [1499364 1456694]
-- [infiniband] ib/uverbs: Enable QP creation with a given source QP number (Don Dutile) [1499364]
-- [infiniband] ib/core: Enable QP creation with a given source QP number (Don Dutile) [1499364]
-- [infiniband] ib/core: Add support for RoCEv2 multicast (Don Dutile) [1499364]
-- [infiniband] ib/core: Set RoCEv2 MGID according to spec (Don Dutile) [1499364]
-- [infiniband] ib/core: Fix the validations of a multicast LID in attach or detach operations (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add delay drop configuration and statistics (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add support to dropless RQ (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Introduce general notification event (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Introduce set delay drop command (Don Dutile) [1499364 1456694]
-- [infiniband] ib/core: Introduce delay drop for a WQ (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Restore IB guid/policy for virtual functions (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add debug control parameters for congestion control (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Change logic for dispatching IB events for port state (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add raw ethernet local loopback support (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Add raw ethernet local loopback firmware command (Don Dutile) [1499364 1456694]
-- [infiniband] rdma: Remove useless MODULE_VERSION (Don Dutile) [1499364]
-- [infiniband] ib/core: Add generic function to extract IB speed from netdev (Don Dutile) [1499364]
-- [infiniband] ib/usnic: Implement get_netdev hook (Don Dutile) [1499364 1451799]
-- [infiniband] ib/qib: remove duplicate code (Don Dutile) [1499364 1451799]
-- [infiniband] ib/cma: Set default gid type to RoCEv2 (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Constify static rxe_vm_ops (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Use __func__ to print function's name (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Use DEVICE_ATTR_RO macro to show parent field (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Prefer 'unsigned int' to bare use of 'unsigned' (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Use "foo *bar" instead of "foo * bar" (Don Dutile) [1499364 1456704 1452789]
-- [infiniband] ib/hfi1: Handle missing magic values in config file (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Resolve kernel panics by reference counting receive contexts (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Initialize TID lists to avoid crash on cleanup (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: Replace deprecated pci functions with new API (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Add traces for TID operations (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use a template for tid reg/unreg (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove reading platform configuration from EFI variable (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Create common expected receive verbs/PSM code (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Set proper logging levels on QSFP cable error events (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix DC 8051 host info flag array (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1, qib: Do not send QKey trap for UD qps (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Modify handling of physical link state by Host Driver (Don Dutile) [1499364 1452789]
-- [infiniband] ib/core: Allow QP state transition from reset to error (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add error checking for buffer overrun in OPA aggregate (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove subtraction of uninitialized value (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use QPN mask to avoid overflow (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix spelling mistake in linkdown reason (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/rdmavt: Remove duplicated functions (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Fix up sdma_init function comment (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Reclassify type of messages printed for platform config logic (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove atomic SDMA_REQ_HAS_ERROR bit operation (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove atomic SDMA_REQ_SEND_DONE bit operation (Don Dutile) [1499364 1452831 1451799 1452789]
-- [infiniband] ib/core, rdmavt, hfi1, opa-vnic: Send OPA cap_mask3 in trap (Don Dutile) [1499364 1452831 1451799 1452789]
-- [infiniband] ib/hfi1: Replace deprecated pci functions with new API (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Name function prototype parameters for affinity module (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Optimize cachelines for user SDMA request structure (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Don't remove RB entry when not needed (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/rdmavt: Compress adjacent SGEs in rvt_lkey_ok() (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Setup common IB fields in hfi1_packet struct (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Separate input/output header tracing (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add functions to parse BTH/IB headers (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove unused mk_qpn function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove unnecessary initialization from tx request (Don Dutile) [1499364 1452789]
-- [net] sunrpc: Allow xprt->ops->timer method to sleep (Don Dutile) [1499364]
-
-* Mon Nov 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-790.el7]
-- [x86] mce/amd: Always give panic severity for UC errors in kernel context (Suravee Suthikulpanit) [1493197]
-- [x86] acpi/cstate: Allow ACPI C1 FFH MWAIT use on AMD systems (Suravee Suthikulpanit) [1508650]
-- [x86] kvm: x86: don't print warning messages for unimplemented msrs (Bandan Das) [1297021]
-- [s390] scsi: zfcp: fix erp_action use-before-initialize in REC action trace (Hendrik Brueckner) [1503935]
-- [scsi] sd: Do not override max_sectors_kb sysfs setting (Ewan Milne) [1507941]
-- [scsi] lpfc: Fix hard lock up NMI in els timeout handling (Dick Kennedy) [1503933]
-- [scsi] lpfc: Fix a precedence bug in lpfc_nvme_io_cmd_wqe_cmpl() (Dick Kennedy) [1513061]
-- [nvme] fixup wwid_show() check for null_uuid (David Milburn) [1513142]
-- [nvme] lpfc: tie in to new dev_loss_tmo interface in nvme transport (David Milburn) [1508583]
-- [nvme] nvme-fc: decouple ns references from lldd references (David Milburn) [1508583]
-- [nvme] nvme-fc: fix localport resume using stale values (David Milburn) [1508583]
-- [nvme] nvmet: fix fatal_err_work deadlock (David Milburn) [1508583]
-- [nvme] nvme-fc: add dev_loss_tmo timeout and remoteport resume support (David Milburn) [1508583]
-- [nvme] allow controller RESETTING to RECONNECTING transition (David Milburn) [1508583]
-- [nvme] nvme-fc: check connectivity before initiating reconnects (David Milburn) [1508583]
-- [nvme] nvme-fc: add a dev_loss_tmo field to the remoteport (David Milburn) [1508583]
-- [nvme] nvme-fc: change ctlr state assignments during reset/reconnect (David Milburn) [1508583]
-- [nvme] nvme-fc: merge __nvme_fc_schedule_delete_work into __nvme_fc_del_ctrl (David Milburn) [1508583]
-- [nvme] nvme-fc: avoid workqueue flush stalls (David Milburn) [1508583]
-- [iommu] amd: Free already flushed ring-buffer entries before full-check (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Remove amd_iommu_disabled check from amd_iommu_detect() (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Free IOMMU resources when disabled on command line (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Set global pointers to NULL after freeing them (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Check for error states first in iommu_go_to_state() (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add new init-state IOMMU_CMDLINE_DISABLED (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Rename free_on_init_error() (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Suppress IO_PAGE_FAULTs in kdump kernel (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Remove queue_release() function (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add per-domain timer to flush per-cpu queues (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add flush counters to struct dma_ops_domain (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add locking to per-domain flush-queue (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Make use of the per-domain flush queue (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add per-domain flush-queue data structures (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Rip out old queue flushing code (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Reduce delay waiting for command buffer space (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Reduce amount of MMIO when submitting commands (Suravee Suthikulpanit) [1508644]
-- [netdrv] qlcnic: remove redundant zero check on retries counter (Harish Patil) [1479140]
-- [netdrv] qlcnic: add const to bin_attribute structure (Harish Patil) [1479140]
-- [netdrv] qlcnic: remove unnecessary static in qlcnic_dump_fw() (Harish Patil) [1479140]
-- [netdrv] qlcnic: Fix tunnel offload for 82xx adapters (Harish Patil) [1479140]
-- [netdrv] qlcnic: Fix a sleep-in-atomic bug in qlcnic_82xx_hw_write_wx_2M and qlcnic_82xx_hw_read_wx_2M (Harish Patil) [1479140]
-- [netdrv] qlcnic: Update version to 5.3.66 (Harish Patil) [1479140]
-- [netdrv] qlcnic: Fix link configuration with autoneg disabled (Harish Patil) [1479140]
-- [netdrv] qlcnic: fix unchecked return value (Harish Patil) [1479140]
-- [netdrv] qlogic: qlcnic_sysfs: constify bin_attribute structures (Harish Patil) [1479140]
-- [netdrv] qlogic: qlcnic: use new api ethtool_{get|set}_link_ksettings (Harish Patil) [1479140]
-- [netdrv] qlcnic: Fix a memory leak in error handling path (Harish Patil) [1479140]
-- [netdrv] generalize napi_complete_done() (Harish Patil) [1479140]
-- [netdrv] qlogic: use core min/max MTU checking (Harish Patil) [1479140]
-
-* Fri Nov 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-789.el7]
-- [infiniband] ib/hfi1: update to new mmu_notifier semantic (Don Dutile) [1499363 1452789]
-- [infiniband] ib/umem: update to new mmu_notifier semantic (Don Dutile) [1499363]
-- [infiniband] ib/mlx5: Always return success for RoCE modify port (Don Dutile) [1499363 1456694]
-- [infiniband] ib/mlx5: Fix Raw Packet QP event handler assignment (Don Dutile) [1499363 1456694]
-- [infiniband] ib/core: Avoid accessing non-allocated memory when inferring port type (Don Dutile) [1499363]
-- [netdrv] mlx4_core: Enable 4K UAR if SRIOV module parameter is not enabled (Don Dutile) [1499363 1456692]
-- [infiniband] ib/uverbs: Fix NULL pointer dereference during device removal (Don Dutile) [1499363]
-- [infiniband] ib/core: Protect sysfs entry on ib_unregister_device (Don Dutile) [1499363]
-- [infiniband] rdma/vmw_pvrdma: Report CQ missed events (Don Dutile) [1499363 1454965]
-- [netdrv] qed: Fix a memory allocation failure test in 'qed_mcp_cmd_init()' (Don Dutile) [1499363 1462433]
-- [netdrv] rdma/mlx5: Fix existence check for extended address vector (Don Dutile) [1499363 1456694]
-- [infiniband] ib/uverbs: Fix device cleanup (Don Dutile) [1499363]
-- [infiniband] rdma/uverbs: Prevent leak of reserved field (Don Dutile) [1499363]
-- [infiniband] ib/core: Fix race condition in resolving IP to MAC (Don Dutile) [1499363]
-- [netdrv] mlx4_core: Fixes missing capability bit in flags2 capability dump (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_core: Fix namespace misalignment in QinQ VST support commit (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_core: Fix sl_to_vl_change bit offset in flags2 dump (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Fix wrong indication of Wake-on-LAN (WoL) support (Don Dutile) [1499363 1456692]
-- [infiniband] ib/ipoib: Notify on modify QP failure only when relevant (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Remove double pointer assigning (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Clean error paths in add port (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Add get statistics support to SRIOV VF (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Add multicast packets statistics (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Set IPOIB_NEIGH_TBL_FLUSH after flushed completion initialization (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Prevent setting negative values to max_nonsrq_conn_qp (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Make sure no in-flight joins while leaving that mcast (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Use cancel_delayed_work_sync when needed (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Fix race between light events and interface restart (Don Dutile) [1499363 1456699]
-- [infiniband] rdma/core: Initialize port_num in qp_attr (Don Dutile) [1499363]
-- [infiniband] rdma/uverbs: Fix the check for port number (Don Dutile) [1499363]
-- [infiniband] ib/cma: Fix reference count leak when no ipv4 addresses are set (Don Dutile) [1499363]
-- [infiniband] rdma/iser: don't send an rkey if all data is written as immadiate-data (Don Dutile) [1499363]
-- [infiniband] rxe: fix broken receive queue draining (Don Dutile) [1499363]
-- [infiniband] rdma/qedr: Prevent memory overrun in verbs' user responses (Don Dutile) [1499363 1462433]
-- [infiniband] ib/mlx4: Fix CM REQ retries in paravirt mode (Don Dutile) [1499363 1456692]
-- [infiniband] ib/rdmavt: Setting of QP timeout can overflow jiffies computation (Don Dutile) [1499363 1452789]
-- [infiniband] ib/core: Fix sparse warnings (Don Dutile) [1499363]
-- [infiniband] ib/mlx5: Fix a warning message (Don Dutile) [1499363 1456694]
-- [infiniband] rdma/ocrdma: Fix error codes in ocrdma_create_srq() (Don Dutile) [1499363]
-- [infiniband] rdma/ocrdma: Fix an error code in ocrdma_alloc_pd() (Don Dutile) [1499363]
-- [infiniband] ib/ipoib: Fix error code in ipoib_add_port() (Don Dutile) [1499363 1456699]
-- [infiniband] ib/rxe: Set dma_mask and coherent_dma_mask (Don Dutile) [1499363 1456704]
-- [infiniband] ib/rxe: Fix kernel panic from skb destructor (Don Dutile) [1499363 1456704]
-- [infiniband] ib/ipoib: Let lower driver handle get_stats64 call (Don Dutile) [1499363 1456699]
-- [infiniband] ib/core: Add ordered workqueue for RoCE GID management (Don Dutile) [1499363]
-- [infiniband] ib/mlx5: Clean mr_cache debugfs in case of failure (Don Dutile) [1499363 1456694]
-- [infiniband] ib/core: Remove NOIO QP create flag (Don Dutile) [1499363]
-- [netdrv] {net, ib}/mlx4: Remove gfp flags argument (Don Dutile) [1499363 1456692]
-- [infiniband] ib/{rdmavt, qib, hfi1}: Remove gfp flags argument (Don Dutile) [1499363 1452789]
-- [infiniband] ib/ipoib: Convert IPoIB to memalloc_noio_* calls (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Forward MTU change to driver below (Don Dutile) [1499363 1456699]
-- [infiniband] ib: Convert msleep below 20ms to usleep_range (Don Dutile) [1499363]
-- [infiniband] ib/uverbs: Make use of ib_modify_qp variant to avoid resolving DMAC (Don Dutile) [1499363]
-- [infiniband] ib/core: Introduce modify QP operation with udata (Don Dutile) [1499363]
-- [infiniband] ib/core: Don't resolve IP address to the loopback device (Don Dutile) [1499363]
-- [infiniband] ib/core: Namespace is mandatory input for address resolution (Don Dutile) [1499363]
-- [infiniband] ib/iser: Fix connection teardown race condition (Don Dutile) [1499363]
-- [infiniband] rdma/core: Document confusing code (Don Dutile) [1499363]
-- [infiniband] mlx5: Avoid that mlx5_ib_sg_to_klms() overflows the klms[] array (Don Dutile) [1499363 1456694]
-- [infiniband] ib/hfi1: Ensure dd->gi_mask can not be overflowed (Don Dutile) [1499363 1452789]
-- [netdrv] mlx4_en: remove unnecessary returned value check (Don Dutile) [1499363 1456692]
-- [net] xprtrdma: Fix documenting comments in frwr_ops.c (Don Dutile) [1499363]
-- [net] xprtrdma: Replace PAGE_MASK with offset_in_page() (Don Dutile) [1499363]
-- [net] xprtrdma: FMR does not need list_del_init() (Don Dutile) [1499363]
-- [net] xprtrdma: Demote "connect" log messages (Don Dutile) [1499363]
-- [net] xprtrdma: Don't defer MR recovery if ro_map fails (Don Dutile) [1499363]
-- [net] xprtrdma: Fix FRWR invalidation error recovery (Don Dutile) [1499363]
-- [net] xprtrdma: Fix client lock-up after application signal fires (Don Dutile) [1499363]
-- [net] xprtrdma: Rename rpcrdma_req::rl_free (Don Dutile) [1499363]
-- [net] xprtrdma: Pass only the list of registered MRs to ro_unmap_sync (Don Dutile) [1499363]
-- [net] xprtrdma: Pre-mark remotely invalidated MRs (Don Dutile) [1499363]
-- [net] xprtrdma: On invalidation failure, remove MWs from rl_registered (Don Dutile) [1499363]
-- [net] svcrdma: fix an incorrect check on -E2BIG and -EINVAL (Don Dutile) [1499363]
-- [infiniband] ib/rxe: do not copy extra stack memory to skb (Don Dutile) [1499363]
-- [net] svcrdma: Remove svc_rdma_chunk_ctxt::cc_dir field (Don Dutile) [1499363]
-- [net] svcrdma: use offset_in_page() macro (Don Dutile) [1499363]
-- [net] svcrdma: Clean up after converting svc_rdma_recvfrom to rdma_rw API (Don Dutile) [1499363]
-- [net] svcrdma: Clean-up svc_rdma_unmap_dma (Don Dutile) [1499363]
-- [net] svcrdma: Remove frmr cache (Don Dutile) [1499363]
-- [net] svcrdma: Remove unused Read completion handlers (Don Dutile) [1499363]
-- [net] svcrdma: Properly compute .len and .buflen for received RPC Calls (Don Dutile) [1499363]
-- [net] svcrdma: Use generic RDMA R/W API in RPC Call path (Don Dutile) [1499363]
-- [net] svcrdma: Clean up svc_rdma_build_read_chunk() (Don Dutile) [1499363]
-- [net] svcrdma: Add recvfrom helpers to svc_rdma_rw.c (Don Dutile) [1499363]
-- [netdrv] qed: Fix printk option passed when printing ipv6 addresses (Don Dutile) [1499363 1462433]
-- [infiniband] ib/iser: Handle lack of memory management extentions correctly (Don Dutile) [1499363]
-- [infiniband] iser-target: Avoid isert_conn->cm_id dereference in isert_login_recv_done (Don Dutile) [1499363]
-- [infiniband] ib/srpt: Make a debug statement in srpt_abort_cmd() more informative (Don Dutile) [1499363]
-- [infiniband] ib/core, opa_vnic, hfi1, mlx5: Properly free rdma_netdev (Don Dutile) [1499363]
-- [infiniband] rdma/uverbs: Check port number supplied by user verbs cmds (Don Dutile) [1499363]
-- [netdrv] mlx4_en: make mlx4_log_num_mgm_entry_size static (Don Dutile) [1499363 1456692]
-- [netdrv] qed: Add iWARP support for physical queue allocation (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Add iWARP protocol support in context allocation (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP CM add error handling (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP implement disconnect flows (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP CM add active side connect (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP CM add passive side connect (Don Dutile) [1499363 1462435]
-- [netdrv] qed: initialize ll2_syn_handle at start of function (Don Dutile) [1499363 1462433]
-- [netdrv] qed: iWARP CM add listener functions and initial SYN processing (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP CM - setup a ll2 connection for handling SYN packets (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Add iWARP support in ll2 connections (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Rename some ll2 related defines (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Implement iWARP initialization, teardown and qp operations (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Introduce iWARP personality (Don Dutile) [1499363 1462435]
-- [netdrv] mlx4_en: Do not allocate redundant TX queues when TC is disabled (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Add dynamic variable to hold the number of user priorities (UP) (Don Dutile) [1499363 1456692]
-- [infiniband] ib/opa_vnic: Use spinlock instead of mutex for stats_lock (Don Dutile) [1499363 1452831]
-- [infiniband] ib/opa_vnic: Use GFP_ATOMIC while sending trap (Don Dutile) [1499363 1452831]
-- [netdrv] mlx4: fix spelling mistake: "enforcment" -> "enforcement" (Don Dutile) [1499363 1456692]
-- [net] svcrdma: Don't account for Receive queue "starvation" (Don Dutile) [1499363]
-- [net] svcrdma: Improve Reply chunk sanity checking (Don Dutile) [1499363]
-- [net] svcrdma: Improve Write chunk sanity checking (Don Dutile) [1499363]
-- [net] svcrdma: Improve Read chunk sanity checking (Don Dutile) [1499363]
-- [net] svcrdma: Remove svc_rdma_marshal.c (Don Dutile) [1499363]
-- [net] svcrdma: Avoid Send Queue overflow (Don Dutile) [1499363]
-- [net] svcrdma: Squelch disconnection messages (Don Dutile) [1499363]
-- [netdrv] mlx5e: IPSec, Innova IPSec offload infrastructure (Don Dutile) [1499363 1456694]
-- [netdrv] mlx4: fix spelling mistake: "coalesing" -> "coalescing" (Don Dutile) [1499363 1456692]
-- [netdrv] mlx5e: IPoIB, Support the flash device ethtool callback (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5e: Support the flash device ethtool callback (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5: Add mlxfw callbacks (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5: Add helper functions to set/query MCC/MCDA/MCQI registers (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5: Enhance MCAM reg to allow query on access reg support (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5: Add MCC (Management Component Control) register definitions (Don Dutile) [1499363 1466367]
-- [netdrv] qed*: Rename qed_roce_if.h to qed_rdma_if.h (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Split rdma content between qed_rdma and qed_roce (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Duplicate qed_roce.[ch] to qed_rdma.[ch] (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Cleanup qed_roce before duplicating it (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Fix compilation without QED_RDMA (Don Dutile) [1499363 1462433]
-- [netdrv] qed: SPQ async callback registration (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Wait for resources before FUNC_CLOSE (Don Dutile) [1499363 1462433]
-- [netdrv] qed*: Set rdma generic functions prefix (Don Dutile) [1499363 1462433]
-- [netdrv] qed*: qede_roce.[ch] -> qede_rdma.[ch] (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Disable RoCE dpm when DCBx change occurs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: RoCE EDPM to honor PFC (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Chain support for external PBL (Don Dutile) [1499363 1462433]
-- [netdrv] mlx5e: IPoIB, Add ioctl support to IPoIB device driver (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Add PTP support to IPoIB device driver (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Get more TX statistics (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Handle change_mtu (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: Use hard_mtu as part of the mlx5e_priv struct (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Change parameters default values (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: Add new profile function update_carrier (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Add ethtool support (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: Prevent PFC call for non ethernet ports (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Move to a separate directory (Don Dutile) [1499363 1385325]
-- [netdrv] mlx4_en: Refactor mlx4_en_free_tx_desc (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Replace TXBB_SIZE multiplications with shift operations (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Increase default TX ring size (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Improve stack xmit function (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Improve transmit CQ polling (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Improve receive data-path (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Optimized single ring steering (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Remove unused argument in TX datapath function (Don Dutile) [1499363 1456692]
-- [netdrv] qed: Fix an off by one bug (Don Dutile) [1499363 1462433]
-- [infiniband] ib: nes: convert to use DRIVER_ATTR_RW (Don Dutile) [1499363 1462433]
-- [netdrv] qed: add qed_int_sb_init() stub function (Don Dutile) [1499363 1462433]
-- [netdrv] qed: collect GSI port statistics (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Call rx_release_cb() when flushing LL2 (Don Dutile) [1499363 1462433]
-- [netdrv] qed: No need for LL2 frags indication (Don Dutile) [1499363 1462433]
-- [netdrv] qed*: LL2 callback operations (Don Dutile) [1499363 1462433]
-- [netdrv] qed: LL2 code relocations (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Cleaner seperation of LL2 inputs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Revise ll2 Rx completion (Don Dutile) [1499363 1462433]
-- [netdrv] qed: LL2 to use packed information for tx (Don Dutile) [1499363 1462433]
-- [netdrv] mlx5e: Remove limitation of single NIC offloaded TC action per rule (Don Dutile) [1499363 1456694]
-- [infiniband] ib/mlx4: Bump driver version (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Bump driver version (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_core: Bump driver version (Don Dutile) [1499363 1456692]
-- [netdrv] qed: VFs to try utilizing the doorbell bar (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Multiple qzone queues for VFs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: IOV db support multiple queues per qzone (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Make VF legacy a bitfield (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Assign a unique per-queue index to queue-cid (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Pass vf_params when creating a queue-cid (Don Dutile) [1499363 1462433]
-- [netdrv] qed*: L2 interface to use the SB structures directly (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Create L2 queue database (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Add bitmaps for VF CIDs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Add support for changing iSCSI mac (Don Dutile) [1499363 1462433]
-- [netdrv] qed: No need to reset SBs on IOV init (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Reset IGU CAM to default on init (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Hold a single array for SBs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Provide auxiliary for getting free VF SB (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Remove assumption on SB order in IGU (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Encapsulate interrupt counters in struct (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Add aux. function translating sb_id -> igu_sb_id (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Distinguish between sb_id and igu_sb_id (Don Dutile) [1499363]
-- [netdrv] qed: IGU read revised (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Minor refactoring in interrupt code (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Make qed_int_cau_conf_pi() static (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Cache alignemnt padding to match host (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Mask parities after occurance (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Print multi-bit attentions properly (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Diffrentiate adapter-specific attentions (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Get rid of the attention-arrays (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Support dynamic s-tag change (Don Dutile) [1499363 1462433]
-- [netdrv] qed: QL41xxx VF MSI-x table (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Don't inherit RoCE DCBx for V2 (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Correct DCBx update scheme (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Add missing static/local dcbx info (Don Dutile) [1499363 1462433]
-- [netdrv] mlxfw: Properly handle dependancy with non-loadable mlx5 (Don Dutile) [1499363 1466367]
-- [netdrv] mlxfw: Make the module selectable (Don Dutile) [1499363 1466367]
-- [netdrv] mlxfw: fix a NULL dereference (Don Dutile) [1499363 1466367]
-- [netdrv] mlxfw: remove redundant goto on error check (Don Dutile) [1499363 1466367]
-- [netdrv] mlxfw: select CONFIG_XZ_DEC (Don Dutile) [1499363 1466367]
-- [netdrv] Add the mlxfw module for Mellanox firmware flash process (Don Dutile) [1499363 1466367]
-- [netdrv] qed: Replace set_id() api with set_name() (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Log probe of PCI device (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Provide MBI information in dev_info (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Enable RoCE parser searching on fp init (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Flush slowpath tasklet on stop (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Remove BB_A0 references (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Drop the 's' from num_ports_in_engines (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Log incorrectly installed board (Don Dutile) [1499363 1462433]
-- [netdrv] qed: !main_ptt for tunnel configuration (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Align DP_ERR style with other DP macros (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Fix sparse warnings (Don Dutile) [1499363 1462433]
-- [netdrv] update drivers to handle HWTSTAMP_FILTER_NTP_ALL (Don Dutile) [1499363]
-- [netdrv] qede: Support 1G advertisment (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Fix setting of Management bitfields (Don Dutile) [1499363 1462433]
-- [netdrv] qede: qedr closure after setting state (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Correct print in iscsi error-flow (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Revise alloc/setup/free flow (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Free previous connections when releasing iSCSI (Don Dutile) [1499363]
-- [netdrv] qede: Don't use an internal MAC field (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Add missing Status-block free (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Honor user request for Tx buffers (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Allow WoL to activate by default (Don Dutile) [1499363]
-- [netdrv] mlx5e: Fix possible memory leak (Don Dutile) [1499363 1456694]
-- [netdrv] qed: Remove unused including <linux/version.h> (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Utilize FW 8.20.0.0 (Don Dutile) [1499363 1462433]
-- [infiniband] ib/mlx5: Bump driver version (Don Dutile) [1499363 1456694]
-- [netdrv] mlx5: Bump driver version (Don Dutile) [1499363 1456694]
-- [netdrv] mlx5: FPGA, Add basic support for Innova (Don Dutile) [1499363 1456672]
-- [netdrv] mlx5: Introduce trigger_health_work function (Don Dutile) [1499363 1456694]
-- [netdrv] mlx5: Update the list of the PCI supported devices (Don Dutile) [1499363 1456690]
-- [netdrv] {net, ib}/mlx5: Replace mlx5_vzalloc with kvzalloc (Don Dutile) [1499363 1456694]
-- [infiniband] ib/core: Fix static analysis warning in ib_policy_change_task (Don Dutile) [1499363 1464478]
-- [infiniband] ib/core: Fix uninitialized variable use in check_qp_port_pkey_settings (Don Dutile) [1499363 1464478]
-- [security] selinux: Add a cache for quicker retreival of PKey SIDs (Don Dutile) [1499363 1464478]
-- [security] selinux: Add IB Port SMP access vector (Don Dutile) [1499363 1464478]
-- [security] selinux: Implement Infiniband PKey "Access" access vector (Don Dutile) [1499363 1464478]
-- [security] selinux: Allocate and free infiniband security hooks (Don Dutile) [1499363 1464478]
-- [security] selinux: Create policydb version for Infiniband support (Don Dutile) [1499363 1464478]
-- [infiniband] ib/core: Enforce security on management datagrams (Don Dutile) [1499363 1464478]
-- [security] selinux lsm ib/core: Implement LSM notification system (Don Dutile) [1499363 1464478]
-- [infiniband] ib/core: Enforce PKey security on QPs (Don Dutile) [1499363 1464478]
-- [infiniband] ib/core: IB cache enhancements to support Infiniband security (Don Dutile) [1499363 1464478]
-- [security] selinux: Update policy version to support constraints info (Don Dutile) [1499363 1464478]
-
-* Fri Nov 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-788.el7]
-- [infiniband] i40iw: Fix port number for query QP (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Add missing memory barriers (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Add support for port reuse on active side connections (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Add missing VLAN priority (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Call i40iw_cm_disconn on modify QP to disconnect (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Prevent multiple netdev event notifier registrations (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fail open if there are no available MSI-X vectors (Stefan Assmann) [1466401]
-- [infiniband] i40iw: make some structures const (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: Remove unused argument (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Improve CQP timeout logic (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fix potential fcn_id_array out of bounds (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Use correct alignment for CQ0 memory (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fix typecast of tcp_seq_num (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Correct variable names (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fix parsing of query/commit FPM buffers (Stefan Assmann) [1466401]
-- [infiniband] i40iw: fix spelling mistake: "allloc_buf" -> "alloc_buf" (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fixes for static checker warnings (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Simplify code (Stefan Assmann) [1466401]
-- [infiniband] ib/i40iw: Fix error code in i40iw_create_cq() (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Free QP PBLEs when the QP is destroyed (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Avoid memory leak of CQP request objects (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Update list correctly (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Add missing memory barrier (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Free QP resources on CQP destroy QP failure (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Release cm_id ref on PCI function reset (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Utilize iwdev->reset during PCI function reset (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Do not poll CCQ after it is destroyed (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fix order of cleanup in close (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: fix duplicated code for different branches (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: Fix device initialization error path (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: ACK MPA Reject frame (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: Don't set 0-length FULPDU RTR indication control flag (Stefan Assmann) [1466401]
-- [infiniband] ib/i40iw: use setup_timer (Stefan Assmann) [1466401]
-
-* Thu Nov 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-787.el7]
-- [scsi] remove various unused blist flags (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: remove synchronous STPG support (Mike Snitzer) [1499107]
-- [scsi] scsi_devinfo: remove synchronous ALUA for NETAPP devices (Mike Snitzer) [1499107]
-- [scsi] scsi_dh: move .rescan to an auxiliary structure (Mike Snitzer) [1499107]
-- [scsi] scsi_dh: fix RHEL7 kABI breakage (Mike Snitzer) [1475380]
-- [scsi] revert: scsi: handle more device handler setup/teardown in common code (Mike Snitzer) [1475380]
-- [scsi] Add scsi_vpd_tpg_id() (Mike Snitzer) [1475380]
-- [scsi] Add scsi_vpd_lun_id() (Mike Snitzer) [1475380]
-- [scsi] scsi_dh_alua: Warn if the first argument of alua_rtpg_queue() is NULL (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Ensure that alua_activate() calls the completion function (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Check scsi_device_get() return value (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Fix RCU annotations (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Fix a reference counting bug (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: fix missing kref_put() in alua_rtpg_work() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Fix memory leak in alua_rtpg() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: do not fail for unknown VPD identification (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: uninitialized variable in alua_rtpg() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Declare local functions static (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Update version to 2.0 (Mike Snitzer) [1499107]
-- [scsi] scsi_dh: add 'rescan' callback (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Send TEST UNIT READY to poll for transitioning (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: update all port states (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Recheck state on unit attention (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Add new blacklist flag 'BLIST_SYNC_ALUA' (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Allow workqueue to run synchronously (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Use workqueue for RTPG (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: remove 'rel_port' from alua_dh_data structure (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: move optimize_stpg evaluation (Mike Snitzer) [1499107]
-- [scsi] revert commit a8e5a2d593cb ("[scsi] scsi_dh_alua: ALUA handler attach should succeed while TPG is transitioning") (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: simplify alua_initialize() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use unique device id (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Use separate alua_port_group structure (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: allocate RTPG buffer separately (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: switch to scsi_execute_req_flags() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: call alua_rtpg() if stpg fails (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Make stpg synchronous (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: separate out alua_stpg() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Pass buffer as function argument (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Remove stale variables (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use scsi_vpd_tpg_id() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: simplify sense code handling (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: rework alua_check_tpgs() to return the tpgs mode (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use unaligned access macros (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use flag for RTPG extended header (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: fixup description of stpg_endio() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: return standard SCSI return codes in submit_rtpg (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use standard logging functions (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: sanitze sense code handling (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: improved logging (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Use vpd_pg83 information (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Disable ALUA handling for non-disk devices (Mike Snitzer) [1499107]
-- [scsi] fix device handler detach oops (Mike Snitzer) [1499107]
-- [scsi] handle more device handler setup_teardown in common code (Mike Snitzer) [1499107]
-- [scsi] device handlers must have attach and detach methods (Mike Snitzer) [1499107]
-- [scsi] remove struct scsi_dh_devlist (Mike Snitzer) [1499107]
-- [scsi] use container_of to get at device handler private data (Mike Snitzer) [1499107]
-- [scsi] scsi_dh: get module reference outside of device handler (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_hp_sw: fix return value on failed allocation (Mike Snitzer) [1499107]
-- [scsi] revert "scsi_dh_alua: Fix memory leak in alua_bus_attach()" (Mike Snitzer) [1499107]
-
-* Thu Nov 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-786.el7]
-- [pinctrl] intel: Read back TX buffer state (Xiaolong Wang) [1511744]
-- [pinctrl] intel: Add Intel Denverton pin controller support (Xiaolong Wang) [1384731]
-- [net] revert "net: use lib/percpu_counter API for fragmentation mem accounting" (Jesper Brouer) [1508499]
-- [net] inet_diag: Fix up addresses in v4-mapped SYN-RECV TCP pseudo sockets (Stefano Brivio) [1372520]
-- [net] netfilter: nf_ct_sip: allow tab character in SIP headers (Davide Caratti) [1461348]
-- [net] netfilter: nf_ct_sip: correct allowed characters in Call-ID SIP header (Davide Caratti) [1461348]
-- [net] netfilter: nf_ct_sip: correct parsing of continuation lines in SIP headers (Davide Caratti) [1461348]
-- [net] ipvs: update real-server binding of outgoing connections in SIP-pe (Davide Caratti) [1461348]
-- [net] ipvs: make drop_entry protection effective for SIP-pe (Davide Caratti) [1461348]
-- [net] ipvs: don't alter conntrack in OPS mode (Davide Caratti) [1461348]
-- [net] ipvs: optimize release of connections in OPS mode (Davide Caratti) [1461348]
-- [net] ipvs: handle connections started by real-servers (Davide Caratti) [1461348]
-- [net] ipvs: rerouting to local clients is not needed anymore (Davide Caratti) [1461348]
-- [net] ipv4: Namespecify the tcp_keepalive_intvl sysctl knob (Hangbin Liu) [1476667]
-- [net] ipv4: Namespecify tcp_keepalive_probes sysctl knob (Hangbin Liu) [1476667]
-- [net] ipv4: Namespaceify tcp_keepalive_time sysctl knob (Hangbin Liu) [1476667]
-- [mm] mm/memory_hotplug: define find_{smallest|biggest}_section_pfn as unsigned long (Yasuaki Ishimatsu) [1500440]
-- [mm] mm/memory_hotplug: change pfn_to_section_nr/section_nr_to_pfn macro to inline function (Yasuaki Ishimatsu) [1500440]
-- [mm] filemap: don't plant shadow entries without radix tree node (Waiman Long) [1509891]
-- [mm] Fix panic due to NULL pointer dereference in __memcg_kmem_get_cache() (Larry Woodman) [1490495]
-- [usb] xhci: set missing SuperSpeedPlus Link Protocol bit in roothub descriptor (Torez Smith) [1496645]
-- [drm] i915: Add interface to reserve fence registers for vGPU (Paul Lai) [1449711]
-- [drm] i915/gvt: Fix GPU hang after reusing vGPU instance across different guest OS (Paul Lai) [1458689]
-- [pci] pci/msi: Ignore affinity if pre/post vector count is more than min_vecs (Myron Stowe) [1509390]
-- [pci] pci/msi: fix the pci_alloc_irq_vectors_affinity stub (Myron Stowe) [1509390]
-- [virt] vfio/pci: Virtualize Maximum Read Request Size (Alex Williamson) [1499021]
-- [virt] vfio/pci: Virtualize Maximum Payload Size (Alex Williamson) [1499021]
-- [virt] vfio: Stall vfio_del_group_dev() for container group detach (Alex Williamson) [1499022]
-- [virt] vfio: fix noiommu vfio_iommu_group_get reference count (Alex Williamson) [1499022]
-- [virt] vfio/pci: Fix handling of RC integrated endpoint PCIe capability size (Alex Williamson) [1499022]
-- [virt] vfio/pci: Use pci_try_reset_function() on initial open (Alex Williamson) [1499022]
-- [virt] vfio: Remove unnecessary uses of vfio_container.group_lock (Alex Williamson) [1499022]
-- [virt] vfio: New external user group/file match (Alex Williamson) [1499022]
-- [virt] kvm-vfio: Decouple only when we match a group (Alex Williamson) [1499022]
-- [virt] vfio: Fix group release deadlock (Alex Williamson) [1499022]
-- [virt] vfio: fix a typo in comment of function vfio_pin_pages (Alex Williamson) [1499022]
-- [scsi] virtio_scsi: let host do exception handling (Paolo Bonzini) [1501309]
-- [edac] skx_edac: Handle systems with segmented PCI busses (Yasuyuki Kobayashi) [1492511 1500572]
-- [block] loop: Add PF_LESS_THROTTLE to block/loop device thread (Ming Lei) [1511107]
-- [crypto] x86/sha1 - Fix reads beyond the number of blocks passed (Herbert Xu) [1469200]
-- [netdrv] sfc: remove redundant variable start (Jarod Wilson) [1479400]
-- [netdrv] sfc: don't warn on successful change of MAC (Jarod Wilson) [1479400]
-- [netdrv] sfc: support rx-fcs and rx-all (Jarod Wilson) [1479400]
-- [kernel] percpu-refcount: support synchronous switch to atomic mode (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: allow operation mode switching operations to be called concurrently (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: restructure operation mode switching (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: unify staggered atomic switching wait behavior (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: reorganize __percpu_ref_switch_to_atomic() and relocate percpu_ref_switch_to_atomic() (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: remove unnecessary RCU grace period for staggered atomic switching confirmation (Prarit Bhargava) [1511619]
-
-* Wed Nov 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-785.el7]
-- [netdrv] mlx5e: Avoid doing a cleanup call if the profile doesn't have it (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Properly check applicability of devlink eswitch commands (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Fix min inline value for VF rep SQs (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Fix timestamping capabilities reporting (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Wait for FW readiness before initializing command interface (Don Dutile) [1456694 1499362]
-- [infiniband] ib/ipoib: Fix memory leak in create child syscall (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Fix access to un-initialized napi struct (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Delete napi in device uninit default (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Limit call to free rdma_netdev for capable devices (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Fix memory leaks for child interfaces priv (Don Dutile) [1456699 1499362]
-- [infiniband] rxe: Fix a sleep-in-atomic bug in post_one_send (Don Dutile) [1456704 1499362]
-- [infiniband] rdma/qedr: Add 64KB PAGE_SIZE support to user-space queues (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: Initialize byte_len in WC of READ and SEND commands (Don Dutile) [1462433 1499362]
-- [netdrv] qed: fix dump of context data (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5: Enable 4K UAR only when page size is bigger than 4K (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Fix wrong indications in DIM due to counter wraparound (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Added BW check for DIM decision mechanism (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Remove several module events out of ethtool stats (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Continue health polling until it is explicitly stopped (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Fix create vport flow table flow (Don Dutile) [1385325 1499362]
-- [netdrv] mlx4: Check if Granular QoS per VF has been enabled before updating QP qos_vport (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: Fix the check in attaching steering rules (Don Dutile) [1456692 1499362]
-- [infiniband] rdma/sa: Fix kernel panic in CMA request handler flow (Don Dutile) [1499362]
-- [infiniband] rdma/umem: Fix missing mmap_sem in get umem ODP call (Don Dutile) [1499362]
-- [infiniband] rdma/core: not to set page dirty bit if it's already set (Don Dutile) [1499362]
-- [infiniband] rdma/uverbs: Declare local function static and add brackets to sizeof (Don Dutile) [1499362]
-- [infiniband] rdma/netlink: Reduce exposure of RDMA netlink functions (Don Dutile) [1499362]
-- [infiniband] rdma/srp: Fix NULL deref at srp_destroy_qp() (Don Dutile) [1499362]
-- [infiniband] rdma/ipoib: Limit the ipoib_dev_uninit_default scope (Don Dutile) [1456699 1499362]
-- [infiniband] rdma/ipoib: Replace netdev_priv with ipoib_priv for ipoib_get_link_ksettings (Don Dutile) [1456699 1499362]
-- [infiniband] rdma/qedr: add null check before pointer dereference (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/mlx5: set UMR wqe fence according to HCA cap (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Define interface bits for fencing UMR wqe (Don Dutile) [1456694 1499362]
-- [infiniband] rdma/mlx4: Fix MAD tunneling when SRIOV is enabled (Don Dutile) [1456692 1499362]
-- [infiniband] rdma/hfi1: change PCI bar addr assignments to Linux API functions (Don Dutile) [1452789 1499362]
-- [infiniband] rdma/hfi1: fix array termination by appending NULL to attr array (Don Dutile) [1452789 1499362]
-- [infiniband] rdma/nes: ACK MPA Reply frame (Don Dutile) [1499362]
-- [infiniband] rdma/nes: Don't set 0-length FULPDU RTR indication control flag (Don Dutile) [1499362]
-- [netdrv] mlx5: avoid build warning for uniprocessor (Don Dutile) [1456694 1499362]
-- [net] xprtrdma: Delete an error message for a failed memory allocation in xprt_rdma_bc_setup() (Don Dutile) [1499362]
-- [netdrv] mlx5: fix bug reading rss_hash_type from CQE (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: IPoIB, handle RX packet correctly (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: Use the correct delete call on offloaded TC encap entry detach (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5e: add CONFIG_INET dependency (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Fix uninitialized data in aRFS infrastructure (Don Dutile) [1462433 1499362]
-- [netdrv] mlx4_core: Use min3 to select number of MSI-X vectors (Don Dutile) [1456692 1499362]
-- [netdrv] mlx5: Use underlay QPN from the root name space (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: IPoIB, Only support regular RQ for now (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: Fix setup TC ndo (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Fix ethtool pause support and advertise reporting (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Use the correct pause values for ethtool advertising (Don Dutile) [1456694 1499362]
-- [uapi] smc_diag.h: fix include from userland (Don Dutile) [1499362]
-- [uapi] includes linux/types.h before exporting files (Don Dutile) [1499362]
-- [netdrv] qede: Split PF/VF ndos (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct doorbell configuration for !4Kb pages (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Tell QM the number of tasks (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Fix VF removal sequence (Don Dutile) [1462433 1499362]
-- [netdrv] mlx4_core: Reduce harmless SRIOV error message to debug level (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4_en: Avoid adding steering rules with invalid ring (Don Dutile) [1456692 1499362]
-- [kernel] treewide: spelling: correct diffrent[iate] and banlance typos (Don Dutile) [1499362]
-- [infiniband] ib/srpt: Avoid that aborting a command triggers a kernel warning (Don Dutile) [1499362]
-- [infiniband] ib/srpt: Fix abort handling (Don Dutile) [1499362]
-- [infiniband] rxe: expose num_possible_cpus() cnum_comp_vectors (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Update caller's CRC for RXE_MEM_TYPE_DMA memory type (Don Dutile) [1456704 1499362]
-- [infiniband] ib/hfi1: Clean up on context initialization failure (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix an assign/ordering issue with shared context IDs (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Clean up context initialization (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Correctly clear the pkey (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Search shared contexts on the opened device, not all devices (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Remove atomic operations for SDMA_REQ_HAVE_AHG bit (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Use filedata rather than filepointer (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Name function prototype parameters (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix a subcontext memory leak (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Return an error on memory allocation failure (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Adjust default eager_buffer_size to 8MB (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Get rid of divide when setting the tx request header (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix yield logic in send engine (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1, ib/rdmavt: Move r_adefered to r_lock cache line (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix checks for Offline transient state (Don Dutile) [1452789 1499362]
-- [netdrv] mlx5: Enable IPoIB acceleration (Don Dutile) [1456694 1499362]
-- [netdrv] qede: Fix possible misconfiguration of advertised autoneg value (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Fix overriding of supported autoneg value (Don Dutile) [1462433 1499362]
-- [netdrv] qed*: Fix possible overflow for status block id field (Don Dutile) [1462433 1499362]
-- [netdrv] qed*: Fix issues in the ptp filter config implementation (Don Dutile) [1462433 1499362]
-- [netdrv] qede: Fix concurrency issue in PTP Tx path processing (Don Dutile) [1462433 1499362]
-- [infiniband] ib/ocrdma: fix out of bounds access to local buffer (Don Dutile) [1499362]
-- [infiniband] ib/mlx4: Fix incorrect order of formal and actual parameters (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Change flush logic so it adheres to the variable name (Don Dutile) [1456692 1499362]
-- [infiniband] mlx5: Fix mlx5_ib_map_mr_sg mr length (Don Dutile) [1456694 1499362]
-- [infiniband] ib/rxe: Don't clamp residual length to mtu (Don Dutile) [1456704 1499362]
-- [infiniband] ib/sa: Add support to query OPA path records (Don Dutile) [1499362]
-- [infiniband] ib/sa: Add OPA path record type (Don Dutile) [1499362]
-- [infiniband] ib/sa: Add OPA addr header (Don Dutile) [1499362]
-- [infiniband] ib/sa: Split struct sa_path_rec based on IB and ROCE specific fields (Don Dutile) [1499362]
-- [infiniband] ib/sa: Introduce path record specific types (Don Dutile) [1499362]
-- [infiniband] ib/sa: Rename ib_sa_path_rec to sa_path_rec (Don Dutile) [1499362]
-- [infiniband] ib/cm: Add braces when using sizeof (Don Dutile) [1499362]
-- [infiniband] ib/core: Define 'opa' rdma_ah_attr type (Don Dutile) [1499362]
-- [infiniband] ib/core: Define 'ib' and 'roce' rdma_ah_attr types (Don Dutile) [1499362]
-- [infiniband] ib/core: Use rdma_ah_attr accessor functions (Don Dutile) [1499362]
-- [infiniband] ib/core: Add accessor functions for rdma_ah_attr fields (Don Dutile) [1499362]
-- [infiniband] ib/pvrdma: Rename ib_ah_attr related functions (Don Dutile) [1454965 1499362]
-- [infiniband] ib/mthca: Rename to_ib_ah_attr to to_rdma_ah_attr (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Rename to_ib_ah_attr to to_rdma_ah_attr (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx4: Rename to_ib_ah_attr to to_rdma_ah_attr (Don Dutile) [1456692 1499362]
-- [infiniband] ib/core: Rename ib_destroy_ah to rdma_destroy_ah (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename ib_query_ah to rdma_query_ah (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename ib_modify_ah to rdma_modify_ah (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename ib_create_ah to rdma_create_ah (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename struct ib_ah_attr to rdma_ah_attr (Don Dutile) [1499362]
-- [infiniband] ib/rxe: Initialize ib_ah_attr during query_ah (Don Dutile) [1456704 1499362]
-- [infiniband] ib/core: Check for global flag when using ah_attr (Don Dutile) [1499362]
-- [infiniband] ib/core: Add braces when using sizeof (Don Dutile) [1499362]
-- [infiniband] ib/ipoib: Remove 'else' when the 'if' has a return (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ocrdma: Add identifier names to function definitions (Don Dutile) [1499362]
-- [netdrv] qed: Prevent warning without CONFIG_RFS_ACCEL (Don Dutile) [1462433 1499362]
-- [netdrv] qed: output the DPM status and WID count (Don Dutile) [1462433 1499362]
-- [netdrv] qed: align DPI configuration to HW requirements (Don Dutile) [1462433 1499362]
-- [netdrv] qed: verify RoCE resource bitmaps are released (Don Dutile) [1462433 1499362]
-- [netdrv] qed: add error handling flow to TID deregistratin posting failure (Don Dutile) [1462433 1499362]
-- [netdrv] qed: remove unused SQ error state (Don Dutile) [1462433 1499362]
-- [netdrv] qed: configure the RoCE max message size (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Unlock on error in qed_vf_pf_acquire() (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5: E-Switch, Avoid redundant memory allocation (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Disable HW LRO when PCI is slower than link on striding RQ (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Use u8 as ownership type in mlx5e_get_cqe() (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Use prefetchw when a write is to follow (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Optimize poll ICOSQ completion queue (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Act on delay probe time updates (Don Dutile) [1456687 1499362]
-- [kernel] [netdrv] mlx5e: Update neighbour 'used' state using HW flow rules counters (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Add support to neighbour update flow (Don Dutile) [1499362 1456687]
-- [netdrv] mlx5e: Add neighbour hash table to the representors (Don Dutile) [1456687 1499362]
-- [net] add addrconf.h to ip6_route.h (Don Dutile) [1499362]
-- [kernel] locking/refcount: Remove the half-implemented refcount_sub() API (Don Dutile) [1499362]
-- [lib] locking/refcount: Create unchecked atomic_t implementation (Don Dutile) [1499362]
-- [lib] refcount: change EXPORT_SYMBOL markings (Don Dutile) [1499362]
-- [lib] locking/refcount: Add refcount_t API kernel-doc comments (Don Dutile) [1499362 1456687]
-- [lib] locking/refcounts: Change WARN() to WARN_ONCE() (Don Dutile) [1499362 1456687]
-- [kernel] locking/refcounts: Add missing kernel.h header to have UINT_MAX defined (Don Dutile) [1456687 1499362]
-- [lib] locking/refcounts: Out-of-line everything (Don Dutile) [1456687 1499362]
-- [lib] refcount_t: Introduce a special purpose refcount type (Don Dutile) [1456687 1499362]
-- [kernel] locking/atomics: Add _{acquire|release|relaxed}() variants of some atomic operations (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Read neigh parameters with proper locking (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Use flag to properly monitor a flow rule offloading state (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Remove output device parameter from create encap header helpers definition (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Move the encap entry structure from the eswitch header (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Remove encap entry pointer from the eswitch flow attributes (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Extendable vport representor netdev private data (Don Dutile) [1499362 1456694]
-- [infiniband] ib/sa: Add support to query opa classport info (Don Dutile) [1499362]
-- [trace] iommu: Remove pci.h include from trace/events/iommu.h (Don Dutile) [1499362]
-- [infiniband] ib/core: Move opa_class_port_info definition to header file (Don Dutile) [1499362]
-- [infiniband] ib/core: Add rdma_cap_opa_ah to expose opa address handles (Don Dutile) [1499362]
-- [infiniband] ib/sa: Modify SA to implicitly cache Class Port info (Don Dutile) [1499362]
-- [infiniband] ib/sa: Move functions update_sm_ah() and ib_sa_event() (Don Dutile) [1499362]
-- [infiniband] ib/sa: Remove unwanted braces (Don Dutile) [1499362]
-- [infiniband] ib/sa: Add braces when using sizeof (Don Dutile) [1499362]
-- [infiniband] ib/sa: Fix lines longer than 80 columns (Don Dutile) [1499362]
-- [infiniband] ib/hfi1: Use bool in process_ecn (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi: Protect against writable mmap (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix unbalanced braces around else (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Convert Lx to llx (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix misspelling in comment (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Permanently enable P_Key checking in HFI (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Cache neighbor secure data after link up (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Adjust high temperature warning for QSFP cable (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix softlockup issue (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Use defines from common headers (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Add functions to parse 9B headers (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Rename hdr2sc to hfi1_9B_get_sc5 (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Return SC2VL mappings to FM with VL15 instead of ILLEGAL_VL (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Validate the TID count before using it (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt/hfi1/qib: Use the MGID and MLID for multicast addressing (Don Dutile) [1452789 1499362]
-- [infiniband] ib/core: For multicast functions, verify that LIDs are multicast LIDs (Don Dutile) [1499362]
-- [infiniband] ib/hfi1: Correct MulticastMask/CollectiveMask info to SMA output (Don Dutile) [1452789 1499362]
-- [infiniband] ib/core: If the MGID/MLID pair is not on the list return an error (Don Dutile) [1499362]
-- [infiniband] ib/qib: use setup_timer (Don Dutile) [1499362]
-- [infiniband] ib/nes: use setup_timer (Don Dutile) [1499362]
-- [infiniband] ib/nes: Fix incorrect type in assignment (Don Dutile) [1499362]
-- [infiniband] ib/usnic: Simplify the code to balance loc/unlock calls (Don Dutile) [1499362]
-- [infiniband] ib/usnic: Explicitly include usnic headers (Don Dutile) [1499362]
-- [infiniband] ib/core: Mark local uverbs_std_types functions to be static (Don Dutile) [1499362]
-- [infiniband] ib/rxe: fix typo: "algorithmi" -> "algorithm" (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rdmavt: restore IRQs on error path in rvt_create_ah() (Don Dutile) [1452789 1499362]
-- [infiniband] rdma/qedr: add support for send+invalidate in poll CQ (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: destroy CQ only after HW releases it (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: enhance destroy flow for GSI QP (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: properly check atomic capabilities (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: reset access control when registering a MR (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Acquire/release ptt_ptp lock when enabling/disabling PTP (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Remove the un-needed ptp header file (Don Dutile) [1462433 1499362]
-- [netdrv] qede: Add support for PTP resource locking (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Add support for PTP resource locking (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Add support for MFW resource locking (Don Dutile) [1462433 1499362]
-- [net] svcrdma: Clean out old XDR encoders (Don Dutile) [1499362]
-- [net] svcrdma: Remove the req_map cache (Don Dutile) [1499362]
-- [net] svcrdma: Remove unused RDMA Write completion handler (Don Dutile) [1499362]
-- [net] svcrdma: Reduce size of sge array in struct svc_rdma_op_ctxt (Don Dutile) [1499362]
-- [net] svcrdma: Clean up RPC-over-RDMA backchannel reply processing (Don Dutile) [1499362]
-- [net] svcrdma: Report Write/Reply chunk overruns (Don Dutile) [1499362]
-- [net] svcrdma: Clean up RDMA_ERROR path (Don Dutile) [1499362]
-- [net] svcrdma: Use rdma_rw API in RPC reply path (Don Dutile) [1499362]
-- [net] svcrdma: Introduce local rdma_rw API helpers (Don Dutile) [1499362]
-- [net] svcrdma: Clean up svc_rdma_get_inv_rkey() (Don Dutile) [1499362]
-- [net] svcrdma: Add helper to save pages under I/O (Don Dutile) [1499362]
-- [net] svcrdma: Eliminate RPCRDMA_SQ_DEPTH_MULT (Don Dutile) [1499362]
-- [net] svcrdma: Add svc_rdma_map_reply_hdr() (Don Dutile) [1499362]
-- [net] svcrdma: Move send_wr to svc_rdma_op_ctxt (Don Dutile) [1499362]
-- [net] xprtrdma: Remove rpcrdma_buffer::rb_pool (Don Dutile) [1499362]
-- [net] xprtrdma: Squelch ENOBUFS warnings (Don Dutile) [1499362]
-- [net] xprtrdma: Annotate receive workqueue (Don Dutile) [1499362]
-- [net] xprtrdma: Revert commit d0f36c46deea (Don Dutile) [1499362]
-- [net] xprtrdma: Restore transport after device removal (Don Dutile) [1499362]
-- [net] xprtrdma: Refactor rpcrdma_ep_connect (Don Dutile) [1499362]
-- [net] xprtrdma: Support unplugging an HCA from under an NFS mount (Don Dutile) [1499362]
-- [net] xprtrdma: Use same device when mapping or syncing DMA buffers (Don Dutile) [1499362]
-- [net] xprtrdma: Refactor rpcrdma_ia_open() (Don Dutile) [1499362]
-- [net] xprtrdma: Detect unreachable NFS/RDMA servers more reliably (Don Dutile) [1499362]
-- [net] sunrpc: Export xprt_force_disconnect() (Don Dutile) [1499362]
-- [net] xprtrdma: Cancel refresh worker during buffer shutdown (Don Dutile) [1499362]
-- [infiniband] ib/vmw_pvrdma: Spare annotate imm_data (Don Dutile) [1454965 1499362]
-- [infiniband] ib/mlx5: Add ODP support to MW (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Extract page fault code (Don Dutile) [1456694 1499362]
-- [infiniband] ib/umem: Add support to huge ODP (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Add contiguous ODP support (Don Dutile) [1456694 1499362]
-- [infiniband] ib/umem: Add contiguous ODP support (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Decrease verbosity level of ODP errors (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Fix implicit MR GC (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Fix UMR size calculation (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Fix function updating xlt emergency path (Don Dutile) [1456694 1499362]
-- [infiniband] ib: Replace ib_umem page_size by page_shift (Don Dutile) [1499362]
-- [infiniband] ib/hfi1: Use pcie_flr() instead of duplicating it (Don Dutile) [1452789 1499362]
-- [kernel] pci: Export pcie_flr() (Don Dutile) [1452789 1499362]
-- [infiniband] ib/core: change the return type to void (Don Dutile) [1499362]
-- [infiniband] ib/hfi: Fix up comments in engine mapping (Don Dutile) [1452789 1499362]
-- [infiniband] uverbs: Fix integer overflows (Don Dutile) [1499362]
-- [infiniband] {net, ib}/{rxe, usnic}: Utilize generic mac to eui32 function (Don Dutile) [1456704 1499362]
-- [infiniband] ib/usnic: Remove unused functions (Don Dutile) [1499362]
-- [infiniband] ib/iser: fix spelling mistake: "unexepected" -> "unexpected" (Don Dutile) [1499362]
-- [netdrv] qed: fix invalid use of sizeof in qed_alloc_qm_data() (Don Dutile) [1462433 1499362]
-- [netdrv] qed - VF tunnelling support [VXLAN/GENEVE/GRE] (Don Dutile) [1462433 1499362]
-- [netdrv] qed/qede: Add UDP ports in bulletin board (Don Dutile) [1462433 1499362]
-- [netdrv] qede: Disable tunnel offloads for non offloaded UDP ports (Don Dutile) [1462433 1499362]
-- [netdrv] qed/qede: Enable tunnel offloads based on hw configuration (Don Dutile) [1462433 1499362]
-- [netdrv] qed: refactor tunnelling - API/Structs (Don Dutile) [1462433 1499362]
-- [kernel] [netdrv] qed: Add support for static dcbx (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Support dcbnl IEEE selector field (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Add additional DCBx debug messages (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Separate RoCE DCBx support for V2 (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Cleanup DCBx unnecessary parameters (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5: fix warning about missing prototype (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: hide unused functions (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: E-Switch, Add control for encapsulation (Don Dutile) [1499362]
-- [netdrv] mlx5: E-Switch, Refactor fast path FDB table creation in switchdev mode (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Add support for active_width and active_speed in RoCE (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Set mlx5_query_roce_port's return value to void (Don Dutile) [1456694 1499362]
-- [infiniband] ib/core: Add HDR speed enum (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Set correct SL in completion for RoCE (Don Dutile) [1456694 1499362]
-- [infiniband] ib/cma: Send MRA for reply messages (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Support congestion related counters (Don Dutile) [1456663 1499362]
-- [infiniband] ib/mthca: Check validity of output parameter pointer (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Add drop flow steering rule support (Don Dutile) [1456687 1499362]
-- [infiniband] ib/core: Introduce drop flow specification (Don Dutile) [1456687 1499362]
-- [infiniband] ib/mlx5: Use IP version matching to classify IP traffic (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Add inner spec and IPv6 validation in user's flow attribute list (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Fix wrong use of kfree at bad flow in create_cq_user (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Enlarge autogroup flow table (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Check supported flow table size (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Change vma from shared to private (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Take write semaphore when changing the vma struct (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx4: Change vma from shared to private (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Take write semaphore when changing the vma struct (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Reduce SRIOV multicast cleanup warning message to debug level (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Fix ib device initialization error flow (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Support RAW Ethernet when RoCE is disabled (Don Dutile) [1456692 1499362]
-- [infiniband] ib/core: Fix sysfs registration error flow (Don Dutile) [1499362]
-- [infiniband] ib/core: Fix kernel crash during fail to initialize device (Don Dutile) [1499362]
-- [infiniband] ib/ipoib: Fix deadlock between ipoib_stop and mcast join flow (Don Dutile) [1456699 1499362]
-- [infiniband] ib/rxe: Cache dst in QP instead of getting it for each send (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Offload CRC calculation when possible (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Do not export module's private function (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Avoid accessing timers for non RC QPs (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Add port protocol stats (Don Dutile) [1456664 1499362]
-- [netdrv] mlx5e: IPoIB, Fix error handling in mlx5_rdma_netdev_alloc() (Don Dutile) [1385325 1499362]
-- [infiniband] ib/hfi1: Coding style improvement (make sizeof use safer) (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Remove intermediate var in hfi1_user_sdma_alloc_queues() (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Use kcalloc() in hfi1_user_sdma_alloc_queues() (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Use kcalloc() in hfi1_user_exp_rcv_init() (Don Dutile) [1452789 1499362]
-- [netdrv] qede: allocate enough data for ->arfs_fltr_bmap (Don Dutile) [1462433 1499362]
-- [infiniband] cxgb3: Convert PDBG to pr_debug (Don Dutile) [1499362]
-- [net] locking/atomic, kref: Add kref_read() (Don Dutile) [1499362]
-- [infiniband] cxgb3: Use more common logging style (Don Dutile) [1499362]
-- [infiniband] ib/ipoib: Support acceleration options callbacks (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Use defined function for netdev_priv function (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Rename qpn to be dqpn in ipoib_send and post_send functions (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Separate control from HW operation on ipoib_open/stop ndo (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Separate control and data related initializations (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Introduce RDMA netdev interface and IPoIB structs (Don Dutile) [1456699 1499362]
-- [infiniband] ib/hfi1: VNIC SDMA support (Don Dutile) [1452831 1499362]
-- [infiniband] ib/hfi1: Virtual Network Interface Controller (VNIC) HW support (Don Dutile) [1452831 1499362]
-- [netdrv] mlx4: suppress 'may be used uninitialized' warning (Don Dutile) [1456692 1499362]
-- [infiniband] ib/hfi1: OPA_VNIC RDMA netdev support (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: VNIC Ethernet Management Agent (VEMA) function (Don Dutile) [1499362]
-- [infiniband] ib/opa-vnic: VNIC Ethernet Management Agent (VEMA) interface (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: VNIC MAC table support (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: VNIC statistics support (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: VNIC Ethernet Management (EM) structure definitions (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: Virtual Network Interface Controller (VNIC) netdev (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: Virtual Network Interface Controller (VNIC) interface (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: RDMA NETDEV interface (Don Dutile) [1452831 1499362]
-- [infiniband] rdma/uverbs: Initialize cq_context appropriately (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename uverbs event file structure (Don Dutile) [1499362]
-- [infiniband] ib/core: Don't use is_async in event files to infer events size (Don Dutile) [1499362]
-- [infiniband] ib/core: A small refactor in destroy WQ handler (Don Dutile) [1499362]
-- [infiniband] ib/core: Nullify ib_uobject during allocation (Don Dutile) [1499362]
-- [infiniband] ib/core: Don't pass the lock state to _rdma_remove_commit_uobject (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename write flag to exclusive in rdma_core (Don Dutile) [1499362]
-- [netdrv] qede: Add aRFS support (Don Dutile) [1462433 1499362]
-- [netdrv] qed: aRFS infrastructure support (Don Dutile) [1462433 1499362]
-- [infiniband] hw/mlx5: Add New bit to check over QP creation (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: E-switch vport manager is valid for ethernet only (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, RX handler (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: RX handlers per netdev profile (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, Xmit flow (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: Xmit flow break down (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, Underlay QP (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, Basic netdev ndos open/close (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, TX TIS creation (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, RSS flow steering tables (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, RX steering RSS RQTs and TIRs (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, Add netdevice profile skeleton (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: More generic netdev management API (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5: Enable flow-steering for IB link (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5: Refactor create flow table method to accept underlay QP (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5: Add IPoIB enhanced offloads bits to mlx5_ifc (Don Dutile) [1385325 1499362]
-- [netdrv] cxgb3: Use net_device_stats from struct net_device (Don Dutile) [1499362]
-- [netdrv] qede: Add support for ingress headroom (Don Dutile) [1462433 1499362]
-- [netdrv] qede: Update receive statistic once per NAPI (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5e: Set default RX moderation parameters on driver load (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Reuse alloc cq code for all CQs allocation (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Show board id in ethtool driver information (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Change FW sub_minor display to 4 zeros padding (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Make mlx5e_modify_rqs_vsd a static function (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Add support for RXFCS feature flag (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Update the list of the PCI supported devices (Don Dutile) [1481607 1499362]
-- [netdrv] qed: Make OOO archipelagos into an array (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Provide iSCSI statistics to management (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Add missing stat for new isles (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Don't close the OUT_EN during init (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Configure cacheline size in HW (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Don't use main-ptt in unrelated flows (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Warn PTT usage by wrong hw-function (Don Dutile) [1462433 1499362]
-- [netdrv] mlx4: trust shinfo->gso_segs (Don Dutile) [1456692 1499362]
-- [netdrv] qed: fix missing break in OOO_LB_TC case (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5e: fix build error without CONFIG_SYSFS (Don Dutile) [1456694 1499362]
-- [infiniband] ib/hfi1: Eliminate synchronize_rcu() in mr delete (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Add transmit fault injection feature (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Add receive fault injection feature (Don Dutile) [1452789 1499362]
-- [lib] fault-inject: add ratelimit option (Don Dutile) [1499362]
-- [infiniband] ib/hfi1: Ensure VL index is within bounds (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt: Avoid reseting wqe send_flags in unreserve (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt, ib/hfi1: Fix timer migration regressions (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Add a patch value to the firmware version string (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Check for QSFP presence before attempting reads (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Check device id early during init (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt: Add swqe completion trace (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt: Add tracing for cq entry and poll (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt: Add additional fields to post send trace (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt, ib/hfi1, ib/qib: Make wc opcode translation driver dependent (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: NULL pointer dereference when freeing rhashtable (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Cache registers during state change (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Race hazard avoidance in user SDMA driver (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Force logical link down (Don Dutile) [1452789 1499362]
-- [infiniband] ib/ipoib: ibx: failed to create mcg debug file (Don Dutile) [1456699 1499362]
-- [infiniband] ib/core: Change completion channel to use the reworked objects schema (Don Dutile) [1499362]
-- [infiniband] ib/core: Add support for fd objects (Don Dutile) [1499362]
-- [infiniband] ib/core: Add lock to multicast handlers (Don Dutile) [1499362]
-- [infiniband] ib/core: Change idr objects to use the new schema (Don Dutile) [1499362]
-- [infiniband] ib/core: Add idr based standard types (Don Dutile) [1499362]
-- [infiniband] ib/core: Add support for idr types (Don Dutile) [1499362]
-- [infiniband] ib/core: Refactor idr to be per uverbs_file (Don Dutile) [1499362]
-- [netdrv] qed: Add a missing error code (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Manage with less memory regions for RoCE (Don Dutile) [1462433 1499362]
-- [netdrv] qed: RoCE doesn't need to use SRC (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct TM ILT lines in presence of VFs (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Fix TM block ILT allocation (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Revise QM cofiguration (Don Dutile) [1462433 1499362]
-- [netdrv] ethernet/mellanox/mlx5/core/en_ethtool.c: fix build with gcc-4.4.4 (Don Dutile) [1499362]
-- [netdrv] ethernet/mellanox/mlx5/core/en_main.c: fix build with gcc-4.4.4 (Don Dutile) [1456694 1499362]
-- [net] add explicit interrupt.h includes (Don Dutile) [1499362]
-- [netdrv] qed: Use BDQ resource for storage protocols (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Utilize resource-lock based scheme (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Support management-based resource locking (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Send pf-flr as part of initialization (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Move to new load request scheme (Don Dutile) [1462433 1499362]
-- [netdrv] qed: hw_init() to receive parameter-struct (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct HW stop flow (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5e: Add offloading of E-Switch TC pedit (header re-write) actions (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5: Introduce alloc/dealloc modify header context commands (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5: Introduce modify header structures, commands and steering action definitions (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5: Reorder few command cases to reflect their natural order (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5: Add helper to initialize a flow steering actions struct instance (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Properly deal with resource cleanup when adding TC flow fails (Don Dutile) [1499362 1456687]
-- [netdrv] mlx5e: Add intermediate struct for TC flow parsing attributes (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Add NIC attributes for offloaded TC flows (Don Dutile) [1499362]
-- [netdrv] mlx5e: Add prefix for e-switch offloaded TC flow attributes (Don Dutile) [1499362 1456687]
-- [netdrv] mlx5e: Fail safe mtu and lro setting (Don Dutile) [1499362 1456659]
-- [netdrv] mlx5e: Fail safe tc setup (Don Dutile) [1499362 1456659]
-- [netdrv] mlx5e: Fail safe cqe compressing/moderation mode setting (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Fail safe ethtool settings (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Introduce switch channels (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Minimize mlx5e_{open/close}_locked (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: CQ and RQ don't need priv pointer (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Isolate open_channels from priv->params (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Split open/close channels to stages (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Refactor refresh TIRs (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Redirect RQT refactoring (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Introduce mlx5e_channels (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Set netdev->rx_cpu_rmap on netdev creation (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Set SQ max rate on mlx5e_open_txqsq rather on open_channel (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Different SQ types (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Generalize SQ create/modify/destroy functions (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Proper names for SQ/RQ/CQ functions (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Generalize tx helper functions for different SQ types (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Move mlx5e_rq struct declaration (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: XDP TX forwarding support (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Single bfreg (UAR) for all mlx5e SQs and netdevs (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Xmit, no write combining (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Use dma_rmb rather than rmb in CQE fetch routine (Don Dutile) [1456694 1499362]
-- [netdrv] qed: Reserve VF feature before PF (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Don't waste SBs unused by RoCE (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Reduce verbosity of unimplemented MFW messages (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct endian order of MAC passed to MFW (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Pass src/dst sizes when interacting with MFW (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Revise MFW command locking (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Always publish VF link from leading hwfn (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Raise verbosity of Malicious VF indications (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Make qed_iov_mark_vf_flr() return bool (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Deprecate VF multiple queue-stop (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Uniform IOV queue validation (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct default VF coalescing configuration (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Set HW-channel to ready before ACKing VF (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Clean VF malicious indication when disabling IOV (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Increase verbosity of VF -> PF errors (Don Dutile) [1462433 1499362]
-- [infiniband] utilize the new cdev_set_parent function (Don Dutile) [1499362]
-- [infiniband] ib/ucm: utilize new cdev_device_add helper function (Don Dutile) [1499362]
-- [kernel] chardev: add helper function to register char devs with a struct device (Don Dutile) [1499362]
-- [netdrv] mlx4: remove duplicate code in mlx4_en_process_rx_cq() (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: make validate_loopback() more generic (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: factorize page_address() calls (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: do not access rx_desc from mlx4_en_process_rx_cq() (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: add rx_alloc_pages counter in ethtool -S (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: add page recycling in receive path (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: use order-0 pages for RX (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: removal of frag_sizes[] (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: reduce rx ring page_cache size (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: rx_headroom is a per port attribute (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: get rid of frag_prefix_size (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: remove order field from mlx4_en_frag_info (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: dma_dir is a mlx4_en_priv attribute (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: xdp: Reserve headroom for receiving packet when XDP prog is active (Don Dutile) [1456692 1499362]
-- [netdrv] mellanox: use core min/max MTU checking (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4_en: use napi_complete_done() return value (Don Dutile) [1456692 1499362]
-- [infiniband] ib/rxe: double free on error (Don Dutile) [1499362]
-- [infiniband] ib/rxe: Suppress sparse warnings (Don Dutile) [1456704 1499362]
-- [infiniband] ib/bnxt_re: Fix frame stack compilation warning (Don Dutile) [1384857 1499362]
-- [net] xprtrdma: fix double include of module.h (Don Dutile) [1499362]
-- [infiniband] vmw_pvrdma: fix [un]register_netdevice_notifier (Don Dutile) [1454965 1499362]
-
-* Tue Nov 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-784.el7]
-- [x86] intel_rdt: Turn off most RDT features on Skylake (Jiri Olsa) [1486121]
-- [x86] intel_rdt: Add command line options for resource director technology (Jiri Olsa) [1486121]
-- [x86] intel_rdt: Move special case code for Haswell to a quirk function (Jiri Olsa) [1486121]
-- [x86] intel_rdt: Remove redundant ternary operator on return (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Improve limbo list processing (Jiri Olsa) [1457533]
-- [x86] intel_rdt/mbm: Fix MBM overflow handler during CPU hotplug (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Modify the intel_pqr_state for better performance (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Clear the default RMID during hotcpu (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Show bitmask of shareable resource with other executing units (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Documentation for resctrl based RDT Monitoring (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Fix a typo in Documentation (Jiri Olsa) [1457533]
-- [x86] documentation, x86, resctrl: Recommend locking for resctrlfs (Jiri Olsa) [1457533]
-- [x86] intel_rdt/mbm: Handle counter overflow (Jiri Olsa) [1457533]
-- [x86] intel_rdt/mbm: Add mbm counter initialization (Jiri Olsa) [1457533]
-- [x86] intel_rdt/mbm: Basic counting of MBM events (total and local) (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add CPU hotplug support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add sched_in support (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Introduce rdt_enable_key for scheduling (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add mount,umount support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add rmdir support (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Separate the ctrl bits from rmdir (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add mon_data (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Prepare for RDT monitor data support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add cpus file support (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Prepare to add RDT monitor cpus file support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add tasks file support (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Change closid type from int to u32 (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add mkdir support for RDT monitoring (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Prepare for RDT monitoring mkdir support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add info files for RDT monitoring (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Simplify info and base file lists (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add RMID (Resource monitoring ID) management (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add RDT monitoring initialization (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Make rdt_resources_all more readable (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Cleanup namespace to support RDT monitoring (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Mark rdt_root and closid_alloc as static (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Change file names to accommodate RDT monitor code (Jiri Olsa) [1457533]
-- [x86] maintainers: Add maintainer for Intel RDT resource allocation (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Introduce a common compile option for RDT (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Select KERNFS when enabling INTEL_RDT_A (Jiri Olsa) [1457533]
-- [x86] perf/cqm: Wipe out perf based cqm (Jiri Olsa) [1457533]
-- [x86] documentation, x86: Intel Memory bandwidth allocation (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Fix memory leak on mount failure (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Return error for incorrect resource names in schemata (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Trim whitespace while parsing schemata input (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Fix padding when resource is enabled via mount (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Get rid of anon union (Jiri Olsa) [1379551]
-- [x86] intel_rdt/mba: Add schemata file support for MBA (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Make schemata file parsers resource specific (Jiri Olsa) [1379551]
-- [x86] intel_rdt/mba: Add info directory files for Memory Bandwidth Allocation (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Make information files resource specific (Jiri Olsa) [1379551]
-- [x86] intel_rdt/mba: Add primary support for Memory Bandwidth Allocation (MBA) (Jiri Olsa) [1379551]
-- [x86] intel_rdt/mba: Memory bandwith allocation feature detect (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Add resource specific msr update function (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Move CBM specific data into a struct (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Cleanup namespace to support multiple resource types (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Organize code properly (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Init padding only if a device exists (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Add cpus_list rdtgroup file (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Cleanup kernel-doc (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Update schemata read to show data in tabular format (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Implement "update" mode when writing schemata file (Jiri Olsa) [1379551]
-- [kernel] tracing/kprobes: Allow to create probe with a module name starting with a digit (Jiri Olsa) [1422117]
-- [kernel] trace/kprobes: Allow return probes with offsets and absolute addresses (Jiri Olsa) [1422117]
-
-* Tue Nov 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-783.el7]
-- [netdrv] ibmvnic: Fix calculation of number of TX header descriptors (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: generalize napi_complete_done() (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: constify vio_device_id (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Correct 'unused variable' warning in build (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Add netdev_dbg output for debugging (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Clean up resources on probe failure (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Report rx buffer return codes as netdev_dbg (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Implement .get_channels (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Implement .get_ringparam (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Convert vnic server reported statistics to cpu endian (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Implement per-queue statistics reporting (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Initialize SCRQ's during login renegotiation (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Check for transport event on driver resume (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix assignment of RX/TX IRQ's (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Correct return code checking for ibmvnic_init during probe (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix error handling when registering long-term-mapped buffers (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix incorrectly defined ibmvnic_request_map_rsp structure (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Return from ibmvnic_resume if not in VNIC_OPEN state (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: driver initialization for kdump/kexec (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Exit polling routine correctly during adapter reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove VNIC_CLOSING check from pending_scrq (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Sanitize entire SCRQ buffer on reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Ensure that TX queues are disabled in __ibmvnic_close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Activate disabled RX buffer pools on reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove netdev notify for failover resets (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Client-initiated failover (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Return failure on attempted mtu change (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove module author mailing address (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Reset sub-crqs during driver reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Reset tx/rx pools on driver reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Reset the CRQ queue during driver reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Check adapter state during ibmvnic_poll (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Deactivate RX pool buffer replenishment on H_CLOSED (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Halt TX and report carrier off on H_CLOSED return code (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Non-fatal error handling (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix cleanup of SKB's on driver close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Send gratuitous arp on reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Handle failover after failed init crq (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Track state of adapter napis (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: fix missing unlock on error in __ibmvnic_reset() (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move queue restarting in ibmvnic_tx_complete (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Record SKB RX queue during poll (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Continue skb processing after skb completion error (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Check for driver reset first in ibmvnic_xmit (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Wait for any pending scrqs entries at driver close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Clean up tx pools when closing (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Whitespace correction in release_rx_pools (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Delete napi's when releasing driver resources (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Updated reset handling (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Replace is_closed with state field (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move resource initialization to its own routine (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move initialization of sub crqs to ibmvnic_init (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Split initialization of scrqs to its own routine (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Free skb's in cases of failure in transmit (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Validate napi exist before disabling them (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Add set_link_state routine for setting adapter link state (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move initialization of the stats token to ibmvnic_open (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Only retrieve error info if present (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Insert header on VLAN tagged received frame (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Set real number of rx queues (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove unused bouce buffer (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Allocate zero-filled memory for sub crqs (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Disable irq prior to close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Correct crq and resource releasing (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove inflight list (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Do not disable IRQ after scheduling tasklet (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fixup atomic API usage (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Unmap longer term buffer before free (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix ibmvnic_change_mac_addr struct format (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Report errors when failing to release sub-crqs (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Cleanup failure path in ibmvnic_open (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Create init/release routines for stats token (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Merge the two release_sub_crq_queue routines (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Create init and release routines for the rx pool (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Create init and release routines for the tx pool (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Create init and release routines for the bounce buffer (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Update main crq initialization and release (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove debugfs support (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove unused net_stats member from struct ibmvnic_adapter (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Correct ibmvnic handling of device open/close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move ibmvnic adapter intialization to its own routine (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move login to its own routine (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move login and queue negotiation into ibmvnic_open (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Free tx/rx scrq pointer array when releasing sub-crqs (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Allocate number of rx/tx buffers agreed on by firmware (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix overflowing firmware/hardware TX queue (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Make CRQ interrupt tasklet wait for all capabilities crqs (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Use common counter for capabilities checks (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Handle processing of CRQ messages in a tasklet (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix endian errors in error reporting output (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix endian error when requesting device capabilities (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix initial MTU settings (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Call napi_disable instead of napi_enable in failure path (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Initialize completion variables before starting work (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: use new api ethtool_{get|set}_link_ksettings (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: drop duplicate header seq_file.h (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix size of debugfs name buffer (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: use net core MTU range checking (Gustavo Duarte) [1391561]
-
-* Mon Nov 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-782.el7]
-- [fs] gfs2: Take inode off order_write list when setting jdata flag (Robert S Peterson) [1492678]
-- [fs] gfs2: flush the log and all pages for jdata as we do for WB_SYNC_ALL (Robert S Peterson) [1492678]
-- [fs] gfs2: Move log buffer accounting to transaction (Robert S Peterson) [1492678]
-- [fs] gfs2: Move log buffer lists into transaction (Robert S Peterson) [1492678]
-- [fs] gfs2: Fix use-after-free race when calling gfs2_remove_from_ail (Robert S Peterson) [1492678]
-- [fs] gfs2: aggressively issue revokes in gfs2_log_flush (Robert S Peterson) [1492678]
-- [fs] xfs: reinit btree pointer on attr tree inactivation walk (Carlos Maiolino) [1469296]
-- [fs] xfs: toggle readonly state around xfs_log_mount_finish (Eric Sandeen) [1395978]
-- [fs] xfs: write unmount record for ro mounts (Eric Sandeen) [1395978]
-- [netdrv] xen-netfront: reset skb network header before checksum (Vitaly Kuznetsov) [1487854]
-- [netdrv] xen-netfront: add support for IPv6 offloads (Vitaly Kuznetsov) [1487854]
-- [netdrv] xen-netfront: use new skb_checksum_setup function (Vitaly Kuznetsov) [1487854]
-- [net] consolidate duplicate code is skb_checksum_setup() helpers (Vitaly Kuznetsov) [1487854]
-- [net] add skb_checksum_setup (Vitaly Kuznetsov) [1487854]
-- [xen] xen-netback: handle IPv6 TCP GSO packets from the guest (Vitaly Kuznetsov) [1487854]
-- [x86] x86/vmware: Skip timer_irq_works() check on VMware (Vitaly Kuznetsov) [1507026 1507025]
-- [x86] x86/vmware: Skip lapic calibration on VMware (Vitaly Kuznetsov) [1507026 1507025]
-- [scsi] ipr: Set no_report_opcodes for RAID arrays (Gustavo Duarte) [1456498]
-- [scsi] ipr: Fix scsi-mq lockdep issue (Gustavo Duarte) [1456498]
-- [s390] mm: fix write access check in gup_huge_pmd() (Hendrik Brueckner) [1506126]
-- [s390] cpcmd, vmcp: avoid GFP_DMA allocations (Hendrik Brueckner) [1496111]
-- [powerpc] hotplug-mem: Fix missing endian conversion of aa_index (Serhii Popovych) [1508331]
-- [security] Introduce v3 namespaced file capabilities ("Eric W. Biederman") [1467386]
-- [security] selinux: Perform both commoncap and selinux xattr checks ("Eric W. Biederman") [1467386]
-
-* Fri Nov 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-781.el7]
-- [mm] userfaultfd: provide pid in userfault msg - add feat union (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: provide pid in userfault msg (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: add feature to request for a signal delivery (Andrea Arcangeli) [1476833]
-- [mm] fs/userfaultfd.c: drop dead code (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: report UFFDIO_ZEROPAGE as available for shmem VMAs (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: shmem: wire up shmem_mfill_zeropage_pte (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: mcopy_atomic: introduce mfill_atomic_pte helper (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: shmem: add shmem_mfill_zeropage_pte for userfaultfd support (Andrea Arcangeli) [1476833]
-- [mm] shmem: introduce shmem_inode_acct_block (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: non-cooperative: notify about unmap of destination during mremap (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: non-cooperative: closing the uffd without triggering SIGBUS (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: non-cooperative: flush event_wqh at release time (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: replace ENOSPC with ESRCH in case mm has gone during copy/zeropage (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd_zeropage: return -ENOSPC in case mm has gone (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: hugetlbfs: prevent UFFDIO_COPY to fill beyond the end of i_size (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: non-cooperative: fix fork use after free (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: hugetlbfs: remove superfluous page unlock in VM_SHARED case (Andrea Arcangeli) [1476833]
-- [mm] zram, ppc64: enable zram on ppc64 (Jerome Marchand) [1441166]
-- [mm] mm/zsmalloc: simplify zs_max_alloc_size handling (Jerome Marchand) [1441166]
-- [kernel] cpuset: Allow v2 behavior in v1 cgroup (Waiman Long) [947004]
-- [kernel] cgroup: Add mount flag to enable cpuset to use v2 behavior in v1 cgroup (Waiman Long) [947004]
-- [kernel] cpuset: fix the WARN_ON() in update_nodemasks_hier() (Waiman Long) [947004]
-- [kernel] cpuset: export effective masks to userspace (Waiman Long) [947004]
-- [kernel] cpuset: allow writing offlined masks to cpuset.cpus/mems (Waiman Long) [947004]
-- [kernel] cpuset: enable onlined cpu/node in effective masks (Waiman Long) [947004]
-- [kernel] cpuset: refactor cpuset_hotplug_update_tasks() (Waiman Long) [947004]
-- [kernel] cpuset: make cs->{cpus, mems}_allowed as user-configured masks (Waiman Long) [947004]
-- [kernel] cpuset: apply cs->effective_{cpus,mems} (Waiman Long) [947004]
-- [kernel] cpuset: initialize top_cpuset's configured masks at mount (Waiman Long) [947004]
-- [kernel] cpuset: use effective cpumask to build sched domains (Waiman Long) [947004]
-- [kernel] cpuset: inherit ancestor's masks if effective_{cpus, mems} becomes empty (Waiman Long) [947004]
-- [kernel] cpuset: update cs->effective_{cpus, mems} when config changes (Waiman Long) [947004]
-- [kernel] cpuset: update cpuset->effective_{cpus, mems} at hotplug (Waiman Long) [947004]
-- [kernel] cpuset: add cs->effective_cpus and cs->effective_mems (Waiman Long) [947004]
-- [kernel] cpuset: Add a dummy cgroup_on_dfl() function (Waiman Long) [947004]
-- [kernel] cpuset: fix a regression in validating config change (Waiman Long) [947004]
-- [kernel] cpuset: rename @cont to @cgrp (Waiman Long) [947004]
-- [kernel] cpuset: fix to migrate mm correctly in a corner case (Waiman Long) [947004]
-- [kernel] cpuset: allow to move tasks to empty cpusets (Waiman Long) [947004]
-- [kernel] cpuset: allow to keep tasks in empty cpusets (Waiman Long) [947004]
-- [kernel] cpuset: introduce effective_{cpumask|nodemask}_cpuset() (Waiman Long) [947004]
-- [kernel] cpuset: record old_mems_allowed in struct cpuset (Waiman Long) [947004]
-- [kernel] cpuset: remove async hotplug propagation work (Waiman Long) [947004]
-- [kernel] cpuset: let hotplug propagation work wait for task attaching (Waiman Long) [947004]
-- [kernel] cpuset: re-structure update_cpumask() a bit (Waiman Long) [947004]
-- [kernel] cpuset: remove cpuset_test_cpumask() (Waiman Long) [947004]
-- [kernel] cpuset: remove unnecessary variable in cpuset_attach() (Waiman Long) [947004]
-- [kernel] cpuset: cleanup guarantee_online_{cpus|mems}() (Waiman Long) [947004]
-- [kernel] cpuset: remove redundant check in cpuset_cpus_allowed_fallback() (Waiman Long) [947004]
-
-* Fri Nov 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-780.el7]
-- [fs] xfs: add support for superblock writeback list (Brian Foster) [1497235]
-- [fs] fs/fs-writeback.c: add a new writeback list for sync (Brian Foster) [1497235]
-- [fs] inode: rename i_wb_list to i_io_list (Brian Foster) [1497235]
-- [fs] sync: serialise per-superblock sync operations (Brian Foster) [1497235]
-- [fs] inode: convert inode_sb_list_lock to per-sb (Brian Foster) [1497235]
-- [fs] xfs: use iomap new flag for newly allocated delalloc blocks (Brian Foster) [1479473]
-- [fs] xfs: Honor FALLOC_FL_KEEP_SIZE when punching ends of files (Brian Foster) [1479473]
-- [fs] xfs: resurrect debug mode drop buffered writes mechanism (Brian Foster) [1479473]
-- [fs] xfs: clear delalloc and cache on buffered write failure (Brian Foster) [1479473]
-- [fs] xfs: defer should abort intent items if the trans roll fails (Brian Foster) [1479473]
-- [fs] xfs: add xfs_trim_extent (Brian Foster) [1479473]
-- [fs] libxfs: v3 inodes are only valid on crc-enabled filesystems (Brian Foster) [1479473]
-- [fs] xfs: unset MS_ACTIVE if mount fails (Brian Foster) [1479473]
-- [fs] xfs: don't take the IOLOCK exclusive for direct I/O page invalidation (Brian Foster) [1479473]
-- [fs] xfs: add some 'static' annotations (Brian Foster) [1479473]
-- [fs] xfs: refactor swapext code (Brian Foster) [1479473]
-- [fs] xfs: various swapext cleanups (Brian Foster) [1479473]
-- [fs] xfs: return work remaining at the end of a bunmapi operation (Brian Foster) [1479473]
-- [fs] xfs: update atime before I/O in xfs_file_dio_aio_read (Brian Foster) [1479473]
-- [fs] xfs: remote attribute blocks aren't really userdata (Brian Foster) [1479473]
-- [fs] xfs: Propagate dentry down to inode_change_ok() (Brian Foster) [1479473]
-- [fs] xfs: defer should allow ->finish_item to request a new transaction (Brian Foster) [1479473]
-- [fs] xfs: count the blocks in a btree (Brian Foster) [1479473]
-- [fs] xfs: create a standard btree size calculator code (Brian Foster) [1479473]
-- [fs] xfs: track log done items directly in the deferred pending work item (Brian Foster) [1479473]
-- [fs] xfs: don't log the entire end of the AGF (Brian Foster) [1479473]
-- [fs] xfs: don't perform lookups on zero-height btrees (Brian Foster) [1479473]
-- [fs] xfs: fix bogus space reservation in xfs_iomap_write_allocate (Brian Foster) [1479473]
-- [fs] xfs: move (and rename) the deferred bmap-free tracepoints (Brian Foster) [1479473]
-- [fs] xfs: collapse single use static functions (Brian Foster) [1479473]
-- [fs] xfs: remove unnecessary parentheses from log redo item recovery functions (Brian Foster) [1479473]
-- [fs] xfs: remove unnecesary lshift/rshift key initialization (Brian Foster) [1479473]
-- [fs] xfs: add tracepoints and error injection for deferred extent freeing (Brian Foster) [1479473]
-- [fs] xfs: refactor redo intent item processing (Brian Foster) [1479473]
-- [fs] xfs: rename flist/free_list to dfops (Brian Foster) [1479473]
-- [fs] xfs: change xfs_bmap_{finish, cancel, init, free} -> xfs_defer_* (Brian Foster) [1479473]
-- [fs] xfs: rework xfs_bmap_free callers to use xfs_defer_ops (Brian Foster) [1479473]
-- [fs] xfs: enable the xfs_defer mechanism to process extents to free (Brian Foster) [1479473]
-- [fs] xfs: clean up typedef usage in the EFI/EFD handling code (Brian Foster) [1479473]
-- [fs] xfs: add tracepoints for the deferred ops mechanism (Brian Foster) [1479473]
-- [fs] xfs: move deferred operations into a separate file (Brian Foster) [1479473]
-- [fs] xfs: refactor btree owner change into a separate visit-blocks function (Brian Foster) [1479473]
-- [fs] xfs: add function pointers for get/update keys to the btree (Brian Foster) [1479473]
-- [fs] xfs: during btree split, save new block key & ptr for future insertion (Brian Foster) [1479473]
-- [fs] xfs: set *stat=1 after iroot realloc (Brian Foster) [1479473]
-- [fs] xfs: fix locking of the rt bitmap/summary inodes (Brian Foster) [1479473]
-- [fs] xfs: fix attr shortform structure alignment on cris (Brian Foster) [1479473]
-- [fs] xfs: remove EXPERIMENTAL tag from sparse inode feature (Brian Foster) [1479473]
-- [fs] libxfs: directory node splitting does not have an extra block (Brian Foster) [1479473]
-- [fs] xfs: remove dax code from object file when disabled (Brian Foster) [1479473]
-- [fs] xfs: remove __arch_pack (Brian Foster) [1479473]
-- [fs] xfs: kill xfs_dir2_inou_t (Brian Foster) [1479473]
-- [fs] xfs: kill xfs_dir2_sf_off_t (Brian Foster) [1479473]
-- [fs] xfs: remove the magic numbers in xfs_btree_block-related len macros (Brian Foster) [1479473]
-- [fs] xfs: indentation fix in xfs_btree_get_iroot() (Brian Foster) [1479473]
-- [fs] xfs: don't allow negative error tags (Brian Foster) [1479473]
-- [fs] xfs: refactor btree maxlevels computation (Brian Foster) [1479473]
-- [fs] xfs: convert list of extents to free into a regular list (Brian Foster) [1479473]
-- [fs] xfs: separate freelist fixing into a separate helper (Brian Foster) [1479473]
-- [fs] xfs: rearrange xfs_bmap_add_free parameters (Brian Foster) [1479473]
-- [fs] xfs: check for a valid error_tag in errortag_add (Brian Foster) [1479473]
-- [fs] xfs: enable buffer deadlock postmortem diagnosis via ftrace (Brian Foster) [1479473]
-- [fs] xfs: check offsets of variable length structures (Brian Foster) [1479473]
-- [fs] xfs: refactor xfs_reserve_blocks() to handle ENOSPC correctly (Brian Foster) [1479473]
-- [fs] xfs: reduce lock hold times in buffer writeback (Brian Foster) [1479473]
-- [fs] xfs: define XFS_IOC_FREEZE even if FIFREEZE is defined (Brian Foster) [1479473]
-- [fs] xfs: make several functions static (Brian Foster) [1479473]
-- [fs] xfs: remove spurious shutdown type check from xfs_bmap_finish() (Brian Foster) [1479473]
-
-* Fri Nov 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-779.el7]
-- [fs] xfs: report zeroed or not correctly in xfs_zero_range() (Eric Sandeen) [1496513]
-- [fs] iomap: fix integer truncation issues in the zeroing and dirtying helpers (Eric Sandeen) [1496513]
-- [fs] xfs: disable per-inode DAX flag (Eric Sandeen) [1496513]
-- [fs] xfs: actually report xattr extents via iomap (Eric Sandeen) [1496513]
-- [fs] mm, fs: check for fatal signals in do_generic_file_read() (Eric Sandeen) [1496513]
-- [fs] fs: break out of iomap_file_buffered_write on fatal signals (Eric Sandeen) [1496513]
-- [fs] dax: Fix sleep in atomic contex in grab_mapping_entry() (Eric Sandeen) [1496513]
-- [fs] dax: rip out get_block based IO support (Eric Sandeen) [1496513]
-- [fs] ext4: rip out DAX handling from direct IO path (Eric Sandeen) [1496513]
-- [fs] ext4: convert DAX faults to iomap infrastructure (Eric Sandeen) [1496513]
-- [fs] ext4: avoid split extents for DAX writes (Eric Sandeen) [1496513]
-- [fs] ext4: DAX iomap write support (Eric Sandeen) [1496513]
-- [fs] ext4: use iomap for zeroing blocks in DAX mode (Eric Sandeen) [1496513]
-- [fs] ext4: factor out checks from ext4_file_write_iter() (Eric Sandeen) [1496513]
-- [fs] ext4: convert DAX reads to iomap infrastructure (Eric Sandeen) [1496513]
-- [fs] dax: Introduce IOMAP_FAULT flag (Eric Sandeen) [1496513]
-- [fs] xfs: use struct iomap based DAX PMD fault path (Eric Sandeen) [1496513]
-- [fs] dax: add struct iomap based DAX PMD support (Eric Sandeen) [1496513]
-- [fs] dax: dax_iomap_fault() needs to call iomap_end() (Eric Sandeen) [1496513]
-- [fs] dax: add dax_iomap_sector() helper function (Eric Sandeen) [1496513]
-- [fs] dax: correct dax iomap code namespace (Eric Sandeen) [1496513]
-- [fs] xfs: use iomap to implement DAX (Eric Sandeen) [1496513]
-- [fs] xfs: refactor xfs_setfilesize (Eric Sandeen) [1496513]
-- [fs] xfs: take the ilock shared if possible in xfs_file_iomap_begin (Eric Sandeen) [1496513]
-- [fs] dax: provide an iomap based fault handler (Eric Sandeen) [1496513]
-- [fs] dax: provide an iomap based dax read/write path (Eric Sandeen) [1496513]
-- [fs] fs: Do to trim high file position bits in iomap_page_mkwrite_actor (Eric Sandeen) [1496513]
-- [fs] iomap: add IOMAP_REPORT (Eric Sandeen) [1496513]
-- [fs] iomap: expose iomap_apply outside iomap.c (Eric Sandeen) [1496513]
-- [fs] iomap: add IOMAP_F_NEW flag (Eric Sandeen) [1496513]
-- [fs] xfs: Add buffered IO support back to get_block for splice (Eric Sandeen) [1496513]
-- [fs] xfs: rewrite and optimize the delalloc write path (Eric Sandeen) [1496513]
-- [fs] xfs: make xfs_inode_set_eofblocks_tag cheaper for the common case (Eric Sandeen) [1496513]
-- [fs] xfs: factor our a helper to calculate the EOF alignment (Eric Sandeen) [1496513]
-- [fs] xfs: move xfs_bmbt_to_iomap up (Eric Sandeen) [1496513]
-- [fs] iomap: add a flag to report shared extents (Eric Sandeen) [1496513]
-- [fs] fs: add iomap_file_dirty (Eric Sandeen) [1496513]
-- [fs] iomap: don't set FIEMAP_EXTENT_MERGED for extent based filesystems (Eric Sandeen) [1496513]
-- [fs] xfs: (re-)implement FIEMAP_FLAG_XATTR (Eric Sandeen) [1496513]
-- [fs] xfs: simplify xfs_file_iomap_begin (Eric Sandeen) [1496513]
-- [fs] iomap: mark ->iomap_end as optional (Eric Sandeen) [1496513]
-- [fs] iomap: prepare iomap_fiemap for attribute mappings (Eric Sandeen) [1496513]
-- [fs] iomap: fiemap should honor the FIEMAP_FLAG_SYNC flag (Eric Sandeen) [1496513]
-- [fs] xfs: kill xfs_zero_remaining_bytes (Eric Sandeen) [1496513]
-- [fs] xfs: split xfs_free_file_space in manageable pieces (Eric Sandeen) [1496513]
-- [fs] xfs: use xfs_zero_range in xfs_zero_eof (Eric Sandeen) [1496513]
-- [fs] xfs: handle 64-bit length in xfs_iozero (Eric Sandeen) [1496513]
-- [fs] xfs: use iomap infrastructure for DAX zeroing (Eric Sandeen) [1496513]
-- [fs] xfs: use iomap fiemap implementation (Eric Sandeen) [1496513]
-- [fs] xfs: implement iomap based buffered write path (Eric Sandeen) [1496513]
-- [fs] xfs: reorder zeroing and flushing sequence in truncate (Eric Sandeen) [1496513]
-- [fs] xfs: make xfs_bmbt_to_iomap available outside of xfs_pnfs.c (Eric Sandeen) [1496513]
-- [fs] fs: iomap based fiemap implementation (Eric Sandeen) [1496513]
-- [fs] fs: support DAX based iomap zeroing (Eric Sandeen) [1496513]
-- [fs] fs: introduce iomap infrastructure (Eric Sandeen) [1496513]
-- [fs] fs: move struct iomap from exportfs.h to a separate header (Eric Sandeen) [1496513]
-- [fs] block_dev: remove DAX leftovers (Eric Sandeen) [1496513]
-- [fs] block: remove BLK_DEV_DAX config option (Eric Sandeen) [1496513]
-
-* Thu Nov 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-778.el7]
-- [kernel] livepatch: __klp_disable_patch() should never be called for disabled patches (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Correctly call klp_post_unpatch_callback() in error paths (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add transition notices (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: move transition "complete" notice into klp_complete_transition() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add (un)patch callbacks (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Add more checks for FTRACE_FL_DISABLED in processing ip records (Josh Poimboeuf) [1430637]
-- [x86] stacktrace: Avoid recording save_stack_trace() wrappers (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Remove raw stack dump (Josh Poimboeuf) [1430637]
-- [x86] unwind: Fix oprofile module link error (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Fix show_stack() task pointer regression (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Remove dump_trace() and related callbacks (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Convert show_trace_log_lvl() to use the new unwinder (Josh Poimboeuf) [1430637]
-- [x86] oprofile/x86: Convert x86_backtrace() to use the new unwinder (Josh Poimboeuf) [1430637]
-- [x86] stacktrace: Convert save_stack_trace_*() to use the new unwinder (Josh Poimboeuf) [1430637]
-- [x86] perf/x86: Convert perf_callchain_kernel() to use the new unwinder (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Remove NULL task pointer convention (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Remove unnecessary stack pointer arguments (Josh Poimboeuf) [1430637]
-- [x86] oprofile/x86: Add regs->ip to oprofile trace (Josh Poimboeuf) [1430637]
-- [x86] perf/x86: Check perf_callchain_store() error (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: unpatch all klp_objects if klp_module_coming fails (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Small shadow variable documentation fixes (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: __klp_shadow_get_or_alloc() is local to shadow.c (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: introduce shadow variable API (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Fix interrupt and exception stack boundary checks (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Fix stacking of patches with respect to RCU (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Make livepatch dependent on !TRIM_UNUSED_KSYMS (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Reduce the time of finding module symbols (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add missing printk newlines (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Cancel transition a safe way for immediate patches (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: make klp_mutex proper part of API (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: allow removal of a disabled patch (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add /proc/<pid>/patch_state (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: change to a per-task consistency model (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: store function sizes (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: use kstrtobool() in enabled_store() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: move patching functions into patch.c (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: remove unnecessary object loaded check (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: separate enabled and patched states (Josh Poimboeuf) [1430637]
-- [kernel] livepatch/x86: add TIF_PATCH_PENDING thread flag (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: create temporary klp_update_patch_state() stub (Josh Poimboeuf) [1430637]
-- [x86] x86/entry: define _TIF_ALLWORK_MASK flags explicitly (Josh Poimboeuf) [1430637]
-- [kernel] stacktrace/x86: add function for detecting reliable stack traces (Josh Poimboeuf) [1430637]
-- [x86] x86/unwind: update unwinder for livepatch (Josh Poimboeuf) [1430637]
-- [kernel] x86/entry: annotate entry code call locations for livepatch unwinder (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: doc: remove the limitation for schedule() patching (Josh Poimboeuf) [1430637]
-- [kernel] documentation/livepatch: Fix stale link to gmame (Josh Poimboeuf) [1430637]
-- [x86] x86/boot: Move the _stext marker to before the boot code (Josh Poimboeuf) [1430637]
-- [x86] x86/boot/64: Put a real return address on the idle task stack (Josh Poimboeuf) [1430637]
-- [x86] x86/boot/64: Use a common function for starting CPUs (Josh Poimboeuf) [1430637]
-- [x86] x86/unwind: Add new unwind interface and implementations (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Add recursion checking for all stacks (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Add support for unwinding empty IRQ stacks (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Add get_stack_info() interface (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Simplify in_exception_stack() (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Allow preemption in show_stack_log_lvl() and dump_trace() (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Add get_stack_pointer() and get_frame_pointer() (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Make printk_stack_address() more generally useful (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack/ftrace: Don't print unreliable addresses in print_context_stack_bp() (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack/ftrace: Mark function graph handler function as unreliable (Josh Poimboeuf) [1430637]
-- [x86] ftrace/x86: Implement HAVE_FUNCTION_GRAPH_RET_ADDR_PTR (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack/ftrace: Convert dump_trace() callbacks to use ftrace_graph_ret_addr() (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Add ftrace_graph_ret_addr() stack unwinding helpers (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Add return address pointer to ftrace_ret_stack (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Remove CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST from config (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Only allocate the ret_stack 'fp' field when needed (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Remove 64-byte gap at end of irq stack (Josh Poimboeuf) [1430637]
-- [kernel] x86/dumpstack: Remove extra brackets around "<EOE>" (Josh Poimboeuf) [1430637]
-- [kernel] x86/asm/head: Rename 'stack_start' -> 'initial_stack' (Josh Poimboeuf) [1430637]
-- [kernel] x86/dumpstack: Remove show_trace() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: use arch_klp_init_object_loaded() to finish arch-specific tasks (Josh Poimboeuf) [1430637]
-- [kernel] x86/dumpstack: Try harder to get a call trace on stack overflow (Josh Poimboeuf) [1430637]
-- [kernel] x86/dumpstack: Honor supplied @regs arg (Josh Poimboeuf) [1430637]
-- [kernel] x86: avoid avoid passing around 'thread_info' in stack dumping code (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: make object/func-walking helpers more robust (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Add some basic livepatch documentation (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: robustify klp_register_patch() API error checking (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Allow architectures to specify an alternate ftrace location (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: reuse module loader code to write relocations (Josh Poimboeuf) [1430637]
-- [kernel] module: preserve Elf information for livepatch modules (Josh Poimboeuf) [1430637]
-- [kernel] elf: add livepatch-specific Elf constants (Josh Poimboeuf) [1430637]
-- [kernel] sscanf: implement basic character sets (Josh Poimboeuf) [1430637]
-- [kernel] livepatch/module: remove livepatch module notifier (Josh Poimboeuf) [1430637]
-- [kernel] modules: split part of complete_formation() into prepare_coming_module() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Fix the error message about unresolvable ambiguity (Josh Poimboeuf) [1430637]
-- [kernel] klp: remove CONFIG_LIVEPATCH dependency from klp headers (Josh Poimboeuf) [1430637]
-- [kernel] klp: remove superfluous errors in asm/livepatch.h (Josh Poimboeuf) [1430637]
-- [kernel] perf: generalize perf_callchain (Josh Poimboeuf) [1430637]
-- [kernel] ftrace/module: remove ftrace module notifier (Josh Poimboeuf) [1430637]
-- [kernel] ftrace/module: Call clean up function when module init fails early (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: change the error message in asm/livepatch.h header files (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Fix the race between ftrace and insmod (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Add infrastructure for delayed enabling of module functions (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Cleanup of global variables ftrace_new_pgs and ftrace_update_cnt (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Cleanup module page permission changes (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: function, sympos scheme in livepatch sysfs directory (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add sympos as disambiguator field to klp_reloc (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add old_sympos as disambiguator field to klp_func (Josh Poimboeuf) [1430637]
-- [kernel] module: Add module_{enable,disable}_ro() (Josh Poimboeuf) [1430637]
-- [kernel] module: Use the same logic for setting and unsetting RO/NX (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: x86: fix relocation computation with kASLR (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Fix crash with !CONFIG_DEBUG_SET_MODULE_RONX (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Improve error handling in klp_disable_func() (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Format MCOUNT_ADDR address as type unsigned long (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add module locking around kallsyms calls (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: annotate klp_init() with __init (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: introduce patch/func-walking helpers (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: make kobject in klp_object statically allocated (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Prevent patch inconsistencies if the coming module notifier fails (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: match return value to function signature (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: x86: make kASLR logic more accurate (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add support on s390 (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Fix subtle race with coming and going modules (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: remove unnecessary call to klp_find_object_module() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: fix RCU usage in klp_find_external_symbol() (Josh Poimboeuf) [1430637]
-- [kernel] x86/kernel: Fix output of show_stack_log_lvl() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: RCU protect struct klp_func all the time when used in klp_ftrace_handler() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: remove extern specifier from header files (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: fix format string in kobject_init_and_add() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: simplify disable error path (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add missing newline to error message (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: rename config to CONFIG_LIVEPATCH (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: fix uninitialized return value (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: support for repatching a function (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: enforce patch stacking semantics (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: fix deferred module patching order (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: handle ancient compilers with more grace (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: kconfig: use bool instead of boolean (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: samples: fix usage example comments (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: use FTRACE_OPS_FL_IPMODIFY (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: move x86 specific ftrace handler code to arch/x86 (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: samples: add sample live patching module (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: kernel: add support for live patching (Josh Poimboeuf) [1430637]
-- [kernel] powerpc/ftrace: simplify prepare_ftrace_return (Josh Poimboeuf) [1430637]
-- [kernel] x86: Fix dumpstack_64 irq stack handling (Josh Poimboeuf) [1430637]
-- [kernel] x86: Fix dumpstack_64 to keep state of "used" variable in loop (Josh Poimboeuf) [1430637]
-- [kernel] x86: Clean up dumpstack_64.c code (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Fix printk_address for direct addresses (Josh Poimboeuf) [1430637]
-- [kernel] s390/ftrace: prepare_ftrace_return() function call order (Josh Poimboeuf) [1430637]
-- [x86] revert "dumpstack: Remove raw stack dump" (Josh Poimboeuf) [1430637]
-
-* Thu Nov 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-777.el7]
-- [usb] xhci: Bad Ethernet performance plugged in ASM1042A host (Torez Smith) [1459020]
-- [usb] lib/string: add sysfs_match_string helper (Torez Smith) [1456565]
-- [usb] typec: include linux/device.h in ucsi.h (Torez Smith) [1456565]
-- [usb] typec: ucsi: Add ACPI driver (Torez Smith) [1456565]
-- [usb] typec: Add support for UCSI interface (Torez Smith) [1456565]
-- [usb] typec: Add a sysfs node to manage port type (Torez Smith) [1456565]
-- [usb] typec: update partner power delivery support with opmode (Torez Smith) [1456565]
-- [usb] typec: Don't prevent using constant typec_mode_desc initializers (Torez Smith) [1456565]
-- [usb] typec: add driver for Intel Whiskey Cove PMIC USB Type-C PHY (Torez Smith) [1456565]
-- [usb] USB Type-C connector class (Torez Smith) [1456565]
-- [usb] usb-storage: enable use of host wide tags for UAS driver (Torez Smith) [1435752]
-- [usb] hso: register netdev later to avoid a race condition (Torez Smith) [1435752]
-- [usb] hso: fix module unloading (Torez Smith) [1435752]
-- [usb] plusb: Add support for PL-27A1 (Torez Smith) [1435752]
-- [usb] kaweth: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] ch9200: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] lan78xx: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] sr9700: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] cx82310_eth: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] smsc75xx: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] smsc95xx: Use skb_cow_head to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] qmi_wwan: add QMI_QUIRK_SET_DTR for Telit PID 0x1201 (Torez Smith) [1435752]
-- [usb] usbnet: make sure no NULL pointer is passed through (Torez Smith) [1435752]
-- [usb] r8152: The Microsoft Surface docks also use R8152 v2 (Torez Smith) [1435752]
-- [usb] xhci: Manually give back cancelled URB if we can't queue it for cancel (Torez Smith) [1435752]
-- [usb] xhci: Set URB actual length for stopped control transfers (Torez Smith) [1435752]
-- [usb] fix linked-list corruption in rh_call_control() (Torez Smith) [1435752]
-- [usb] r8152: prevent the driver from transmitting packets with carrier off (Torez Smith) [1435752]
-- [usb] r8152: fix the rx early size of RTL8153 (Torez Smith) [1435752]
-- [usb] r8152: set the RMS of RTL8153 according to the mtu (Torez Smith) [1435752]
-- [usb] qmi_wwan: Add USB IDs for MDM6600 modem on Motorola Droid 4 (Torez Smith) [1435752]
-- [usb] qmi_wwan: add Dell DW5811e (Torez Smith) [1435752]
-- [usb] r8152: fix the list rx_done may be used without initialization (Torez Smith) [1435752]
-- [usb] serial: qcserial: add Dell DW5811e (Torez Smith) [1435752]
-- [usb] hub: Fix crash after failure to read BOS descriptor (Torez Smith) [1435752]
-- [usb] usbtmc: fix probe error path (Torez Smith) [1435752]
-- [usb] usbtmc: add missing endpoint sanity check (Torez Smith) [1435752]
-- [usb] serial: option: add Quectel UC15, UC20, EC21, and EC25 modems (Torez Smith) [1435752]
-- [usb] usb-core: Add LINEAR_FRAME_INTR_BINTERVAL USB quirk (Torez Smith) [1435752]
-- [usb] wusbcore: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] uss720: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] lvtest: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] idmouse: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] scripts/spelling.txt: add "disble(d)" pattern and fix typo instances (Torez Smith) [1435752]
-- [usb] host: xhci-dbg: HCIVERSION should be a binary number (Torez Smith) [1435752]
-- [usb] xhci: remove dummy extra_priv_size for size of xhci_hcd struct (Torez Smith) [1435752]
-- [usb] xhci-mtk: check hcc_params after adding primary hcd (Torez Smith) [1435752]
-- [usb] usb-storage: Add ignore-residue quirk for Initio INIC-3619 (Torez Smith) [1435752]
-- [usb] iowarrior: fix NULL-deref in write (Torez Smith) [1435752]
-- [usb] iowarrior: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] serial: safe_serial: fix information leak in completion handler (Torez Smith) [1435752]
-- [usb] serial: io_ti: fix information leak in completion handler (Torez Smith) [1435752]
-- [usb] serial: omninet: drop open callback (Torez Smith) [1435752]
-- [usb] serial: omninet: fix reference leaks at open (Torez Smith) [1435752]
-- [usb] serial: io_ti: fix NULL-deref in interrupt callback (Torez Smith) [1435752]
-- [usb] serial: digi_acceleport: fix OOB-event processing (Torez Smith) [1435752]
-- [usb] asix_devices: fix missing return code check on call to asix_write_medium_mode (Torez Smith) [1435752]
-- [usb] cdc-wdm: remove logically dead code (Torez Smith) [1435752]
-- [usb] serial: keyspan: drop header file (Torez Smith) [1435752]
-- [usb] serial: io_edgeport: drop io-tables header file (Torez Smith) [1435752]
-- [usb] misc: usbtest: remove redundant check on retval < 0 (Torez Smith) [1435752]
-- [usb] serial: upd78f0730: sort device ids (Torez Smith) [1435752]
-- [usb] serial: upd78f0730: add ID for EVAL-ADXL362Z (Torez Smith) [1435752]
-- [usb] lan78xx: fix build errors when linux/phy*.h is removed from dsa.h (Torez Smith) [1435752]
-- [usb] ohci-hub: fix typo in dbg_port macro (Torez Smith) [1435752]
-- [usb] serial: mos7840: fix another NULL-deref at open (Torez Smith) [1435752]
-- [usb] serial: console: clean up sanity checks (Torez Smith) [1435752]
-- [usb] serial: metro-usb: drop redundant URB reinitialisation (Torez Smith) [1435752]
-- [usb] serial: metro-usb: drop function-tracing debugging (Torez Smith) [1435752]
-- [usb] serial: metro-usb: drop redundant URB unlink (Torez Smith) [1435752]
-- [usb] serial: metro-usb: drop unused interrupt-out callback (Torez Smith) [1435752]
-- [usb] xhci-mtk: make the reference clock optional (Torez Smith) [1435752]
-- [usb] usb-misc: sisusbvga: remove dead code (Torez Smith) [1435752]
-- [usb] serial: sierra: fix bogus alternate-setting assumption (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: fix line-status over-reporting (Torez Smith) [1435752]
-- [usb] serial: cp210x: add new IDs for GE Bx50v3 boards (Torez Smith) [1435752]
-- [usb] misc: adutux: remove redundant error check on copy_to_user return code (Torez Smith) [1435752]
-- [usb] serial: keyspan_pda: fix receive sanity checks (Torez Smith) [1435752]
-- [usb] serial: digi_acceleport: fix incomplete rx sanity check (Torez Smith) [1435752]
-- [usb] serial: digi_acceleport: fix OOB data sanity check (Torez Smith) [1435752]
-- [usb] serial: ark3116: use port device for info and error messages (Torez Smith) [1435752]
-- [usb] serial: ark3116: remove redundant interrupt-urb check (Torez Smith) [1435752]
-- [usb] serial: ark3116: fix endpoint-check return value (Torez Smith) [1435752]
-- [usb] uvcvideo: (cosmetic) Remove a superfluous assignment (Torez Smith) [1435752]
-- [usb] cdc-acm: fix TIOCGSERIAL flags (Torez Smith) [1435752]
-- [usb] serial: add uPD78F0730 USB to Serial Adaptor Driver (Torez Smith) [1435752]
-- [usb] serial: drop unused ASYNC flags (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: clean up ioctl handler (Torez Smith) [1435752]
-- [usb] r8152: fix the wrong spelling (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: fix extreme low-latency setting (Torez Smith) [1435752]
-- [usb] xhci: refactor xhci_urb_enqueue (Torez Smith) [1435752]
-- [usb] xhci: simplify how we store TDs in urb private data (Torez Smith) [1435752]
-- [usb] xhci: Rename variables related to transfer descritpors (Torez Smith) [1435752]
-- [usb] xhci: rename size variable to num_tds (Torez Smith) [1435752]
-- [usb] host: xhci: add xhci_virt_device tracer (Torez Smith) [1435752]
-- [usb] host: xhci: remove newline from tracer (Torez Smith) [1435752]
-- [usb] host: xhci: convert several if() to a single switch statement (Torez Smith) [1435752]
-- [usb] host: xhci: add urb_enqueue/dequeue/giveback tracers (Torez Smith) [1435752]
-- [usb] host: xhci: make a generic TRB tracer (Torez Smith) [1435752]
-- [usb] host: xhci: combine event TRB completion debugging messages (Torez Smith) [1435752]
-- [usb] host: xhci: convert to list_for_each_entry_safe() (Torez Smith) [1435752]
-- [usb] xhci: use the trb_to_noop() helper for command trbs (Torez Smith) [1435752]
-- [usb] xhci: Introduce helper to turn one TRB into a no-op (Torez Smith) [1435752]
-- [usb] host: xhci: unconditionally call xhci_unmap_td_bounce_buffer() (Torez Smith) [1435752]
-- [usb] host: xhci: check for a valid ring when unmapping bounce buffer (Torez Smith) [1435752]
-- [usb] host: xhci: remove bogus __releases()/__acquires() annotation (Torez Smith) [1435752]
-- [usb] host: xhci: introduce xhci_td_cleanup() (Torez Smith) [1435752]
-- [usb] host: xhci: reorder variable definitions (Torez Smith) [1435752]
-- [usb] host: xhci: use slightly better list helpers (Torez Smith) [1435752]
-- [usb] host: xhci: remove unneded semicolon (Torez Smith) [1435752]
-- [usb] host: xhci: simplify irq handler return (Torez Smith) [1435752]
-- [usb] host: xhci: rename completion codes to match spec (Torez Smith) [1435752]
-- [usb] host: xhci: print HCIVERSION on debug (Torez Smith) [1435752]
-- [usb] host: xhci: change pre-increments to post-increments (Torez Smith) [1435752]
-- [usb] xhci: remove unnecessary return in xhci_pci_setup() (Torez Smith) [1435752]
-- [usb] xhci: use list_is_singular for cmd_list (Torez Smith) [1435752]
-- [usb] xhci: avoid unnecessary calculation (Torez Smith) [1435752]
-- [usb] xhci: remove unnecessary assignment (Torez Smith) [1435752]
-- [usb] xhci: add quirk flag for broken PED bits (Torez Smith) [1435752]
-- [usb] xhci: Put warning message on a single line (Torez Smith) [1435752]
-- [usb] host: xhci: Remove unused 'addr_64' variable in xhci_hcd structure (Torez Smith) [1435752]
-- [usb] xhci: remove unnecessary second abort try (Torez Smith) [1435752]
-- [usb] xhci: remove unnecessary check for pending timer (Torez Smith) [1435752]
-- [usb] xhci: detect stop endpoint race using pending timer instead of counter (Torez Smith) [1435752]
-- [usb] xhci: rename EP_HALT_PENDING to EP_STOP_CMD_PENDING (Torez Smith) [1435752]
-- [usb] xhci: simplify if statement to make it more readable (Torez Smith) [1435752]
-- [usb] storage: sddr09: Remove a set-but-not-used variable (Torez Smith) [1435752]
-- [usb] ulpi: Support device discovery via DT (Torez Smith) [1435752]
-- [usb] xhci-mtk: add reference clock (Torez Smith) [1435752]
-- [usb] hcd: initialize hcd->flags to 0 when rm hcd (Torez Smith) [1435752]
-- [usb] storage: ene_ub6250: remove unused variable (Torez Smith) [1435752]
-- [usb] core: update comments for send message functions (Torez Smith) [1435752]
-- [usb] serial: opticon: fix CTS retrieval at open (Torez Smith) [1435752]
-- [usb] serial: ti_usb_3410_5052: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: ssu100: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: spcp8x5: fix modem-status handling (Torez Smith) [1435752]
-- [usb] serial: quatech2: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: pl2303: fix line-setting error handling (Torez Smith) [1435752]
-- [usb] serial: mos7840: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: mos7720: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: mct_u232: fix modem-status error handling (Torez Smith) [1435752]
-- [usb] serial: iuu_phoenix: remove unused buffer from open (Torez Smith) [1435752]
-- [usb] serial: io_edgeport: fix descriptor error handling (Torez Smith) [1435752]
-- [usb] serial: io_edgeport: fix epic-descriptor handling (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: fix latency-timer error handling (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: fix modem-status error handling (Torez Smith) [1435752]
-- [usb] serial: ark3116: fix open error handling (Torez Smith) [1435752]
-- [usb] serial: ark3116: fix register-accessor error handling (Torez Smith) [1435752]
-- [usb] serial: kl5kusb105: remove unused termios structure (Torez Smith) [1435752]
-- [usb] serial: kl5kusb105: clean up struct definition (Torez Smith) [1435752]
-- [usb] serial: kl5kusb105: remove dead code (Torez Smith) [1435752]
-- [usb] serial: kl5kusb105: make logging less verbose (Torez Smith) [1435752]
-- [usb] serial: ch341: change initial line-control settings (Torez Smith) [1435752]
-- [usb] serial: ch341: rename LCR variable in set_termios (Torez Smith) [1435752]
-- [usb] serial: ch341: rename modem-status register (Torez Smith) [1435752]
-- [usb] serial: ch341: rename shadow modem-control register (Torez Smith) [1435752]
-- [usb] serial: ch341: clean up control debug messages (Torez Smith) [1435752]
-- [usb] serial: ch341: fix modem-status handling (Torez Smith) [1435752]
-- [usb] serial: cypress_m8: remove unused variable (Torez Smith) [1435752]
-- [usb] locking/atomic, kref: Avoid more abuse (Torez Smith) [1435752]
-- [usb] cdc-ether: usbnet_cdc_zte_status() can be static (Torez Smith) [1435752]
-- [usb] Increase usbfs transfer limit (Torez Smith) [1435752]
-- [usb] make the MTK XHCI driver compile for older MIPS SoCs (Torez Smith) [1435752]
-- [usb] Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Torez Smith) [1435752]
-- [usb] treewide: remove redundant #include <linux/kconfig.h> (Torez Smith) [1435752]
-- [usb] Skip auto handoff for TI and RENESAS usb controllers (Torez Smith) [1435752]
-- [usb] xhci: Fix race related to abort operation (Torez Smith) [1435752]
-- [usb] xhci: Use delayed_work instead of timer for command timeout (Torez Smith) [1435752]
-- [usb] tty: vt, cleanup and document con_scroll (Torez Smith) [1435752]
-- [usb] r8152: reset the bmu (Torez Smith) [1435752]
-- [usb] uas: remove can_queue set in host template (Torez Smith) [1435752]
-- [usb] scsi: rename SCSI_MAX_{SG, SG_CHAIN}_SEGMENTS (Torez Smith) [1435752]
-- [usb] uas: Limit qdepth at the scsi-host level (Torez Smith) [1435752]
-- [usb] uas: Fix slave queue_depth not being set (Torez Smith) [1435752]
-- [usb] usb-storage: Fix scsi-sd failure "Invalid field in cdb" for USB adapter JMicron (Torez Smith) [1435752]
-- [usb] scsi: use host wide tags by default (Torez Smith) [1435752]
-- [usb] scsi: always assign block layer tags if enabled (Torez Smith) [1435752]
-
-* Wed Nov 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-776.el7]
-- [netdrv] i40e/i40evf: don't trust VF to reset itself (Stefan Assmann) [1454890]
-- [netdrv] i40e: Retry AQC GetPhyAbilities to overcome I2CRead hangs (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: bundle more descriptors when allocating buffers (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: bump tail only in multiples of 8 (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: always set the CLEARPBA flag when re-enabling interrupts (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: fix incorrect default ITR values on driver load (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix mac filter removal timing issue (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: organize and re-number feature flags (Stefan Assmann) [1454890]
-- [netdrv] i40evf: enable support for VF VLAN tag stripping control (Stefan Assmann) [1454890]
-- [netdrv] i40e: Display error message if module does not meet thermal requirements (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: use DECLARE_BITMAP for state (Stefan Assmann) [1454890]
-- [netdrv] i40e: redfine I40E_PHY_TYPE_MAX (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: spread CPU affinity hints across online CPUs only (Stefan Assmann) [1454890]
-- [netdrv] i40e: Stop dropping 802.1ad tags - eth proto 0x88a8 (Stefan Assmann) [1454890]
-- [netdrv] i40e: make i40evf_map_rings_to_vectors void (Stefan Assmann) [1454890]
-- [netdrv] i40evf: Enable VF to request an alternate queue allocation (Stefan Assmann) [1454890]
-- [netdrv] i40e: use admin queue for setting LEDs behavior (Stefan Assmann) [1454890]
-- [netdrv] i40e: Add support for 'ethtool -m' (Stefan Assmann) [1454890]
-- [netdrv] i40e: Fix reporting of supported link modes (Stefan Assmann) [1454890]
-- [netdrv] i40e: refactor FW version checking (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix ring to vector mapping (Stefan Assmann) [1454890]
-- [netdrv] i40e: shutdown all IRQs and disable MSI-X when suspended (Stefan Assmann) [1454890]
-- [netdrv] i40evf: lower message level (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: rename bytes_per_int to bytes_per_usec (Stefan Assmann) [1454890]
-- [netdrv] i40evf: use setup_timer() helper (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: avoid dynamic ITR updates when polling or low packet rate (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: remove ULTRA latency mode (Stefan Assmann) [1454890]
-- [netdrv] i40e: invert logic for checking incorrect cpu vs irq affinity (Stefan Assmann) [1454890]
-- [netdrv] i40e: initialize our affinity_mask based on cpu_possible_mask (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: support for VF VLAN tag stripping control (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix possible snprintf truncation of q_vector->name (Stefan Assmann) [1454890]
-- [netdrv] i40e: prevent snprintf format specifier truncation (Stefan Assmann) [1454890]
-- [netdrv] i40e: Store the requested FEC information (Stefan Assmann) [1454890]
-- [netdrv] i40evf: use netdev variable in reset task (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: use cmpxchg64 when updating private flags in ethtool (Stefan Assmann) [1454890]
-- [netdrv] i40e: separate hw_features from runtime changing flags (Stefan Assmann) [1454890]
-- [netdrv] i40evf: prevent VF close returning before state transitions to DOWN (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: adjust packet size to account for double VLANs (Stefan Assmann) [1454890]
-- [netdrv] i40evf: remove unnecessary __packed (Stefan Assmann) [1454890]
-- [netdrv] i40evf: Use le32_to_cpu before evaluating HW desc fields (Stefan Assmann) [1454890]
-- [netdrv] i40evf: add some missing includes (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: remove mismatched type warnings (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: update WOL and I40E_AQC_ADDR_VALID_MASK flags (Stefan Assmann) [1454890]
-- [netdrv] i40evf: assign num_active_queues inside i40evf_alloc_queues (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: proper update of the page_offset field (Stefan Assmann) [1454890]
-- [netdrv] i40evf: Add support for Adaptive Virtual Function (Stefan Assmann) [1454890]
-- [netdrv] virtchnl: finish conversion to virtchnl interface (Stefan Assmann) [1454890]
-- [netdrv] i40evf/virtchnl: whitespace cleanups (Stefan Assmann) [1454890]
-- [netdrv] virtchnl: rename i40e to generic virtchnl (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: create and use new unified header file (Stefan Assmann) [1454890]
-- [netdrv] i40evf: drop i40e_type.h include (Stefan Assmann) [1454890]
-- [netdrv] i40evf: disable unused flags (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix merge error in older patch (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix duplicate lines (Stefan Assmann) [1454890]
-- [netdrv] i40evf: hide unused variable (Stefan Assmann) [1454890]
-- [netdrv] i40evf: allocate queues before we setup the interrupts and q_vectors (Stefan Assmann) [1454890]
-- [netdrv] i40evf: remove I40E_FLAG_FDIR_ATR_ENABLED (Stefan Assmann) [1454890]
-- [netdrv] i40evf: remove needless min_t() on num_online_cpus()*2 (Stefan Assmann) [1454890]
-- [netdrv] i40e: use DECLARE_BITMAP for state fields (Stefan Assmann) [1454890]
-- [netdrv] i40e: separate PF and VSI state flags (Stefan Assmann) [1454890]
-- [netdrv] i40e: remove unnecessary msleep() delay in i40e_free_vfs (Stefan Assmann) [1454890]
-- [netdrv] i40e: remove I40E_FLAG_IN_NETPOLL entirely (Stefan Assmann) [1454890]
-- [netdrv] i40e: new AQ commands (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add tracepoints (Stefan Assmann) [1454890]
-- [netdrv] i40e: Fix support for flow director programming status (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Remove VF Rx csum offload for tunneled packets (Stefan Assmann) [1454890]
-- [netdrv] i40evf: Use net_device_stats from struct net_device (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Use build_skb to build frames (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add support for padding start of frames (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add support for using order 1 pages with a 3K buffer (Stefan Assmann) [1454890]
-- [netdrv] i40e: remove I40E_FLAG_NEED_LINK_UPDATE (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add capability exchange for outer checksum (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Change the way we limit the maximum frame size for Rx (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add legacy-rx private flag to allow fallback to old Rx flow (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Break i40e_fetch_rx_buffer up to allow for reuse of frag code (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Pull out code for cleaning up Rx buffers (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Pull code for grabbing and syncing rx_buffer from fetch_buffer (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Use length to determine if descriptor is done (Stefan Assmann) [1454890]
-- [netdrv] i40e: use register for XL722 control register read/write (Stefan Assmann) [1454890]
-- [netdrv] i40evf: enforce descriptor write-back mechanism for VF (Stefan Assmann) [1454890]
-- [netdrv] i40evf: dereference VSI after VSI has been null checked (Stefan Assmann) [1454890]
-- [netdrv] i40e: Drop FCoE code from core driver files (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Clean-up process_skb_fields (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Fix use after free in Rx cleanup path (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Update code to better handle incrementing page count (Stefan Assmann) [1454890]
-- [netdrv] i40evf: use new api ethtool_{get|set}_link_ksettings (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Change version from 1.6.27 to 2.1.7 (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add support for mapping pages with DMA attributes (Stefan Assmann) [1454890]
-- [netdrv] i40evf: add client interface (Stefan Assmann) [1454890]
-- [netdrv] intel: use core min/max MTU checking (Stefan Assmann) [1454890]
-
-* Wed Nov 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-775.el7]
-- [netdrv] i40e/i40evf: don't trust VF to reset itself (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix link reporting (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix memory leak related filter programming status (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix comment about locking for __i40e_read_nvm_word() (Stefan Assmann) [1454892]
-- [netdrv] i40e: Avoid some useless variables and initializers in NVM functions (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix a typo (Stefan Assmann) [1454892]
-- [netdrv] i40e: use a local variable instead of calculating multiple times (Stefan Assmann) [1454892]
-- [netdrv] i40e: Retry AQC GetPhyAbilities to overcome I2CRead hangs (Stefan Assmann) [1454892]
-- [netdrv] i40e: add check for return from find_first_bit call (Stefan Assmann) [1454892]
-- [netdrv] i40e: allow XPS with QoS enabled (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: bundle more descriptors when allocating buffers (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: bump tail only in multiples of 8 (Stefan Assmann) [1454892]
-- [netdrv] i40e: reduce lrxqthresh from 2 to 1 (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: always set the CLEARPBA flag when re-enabling interrupts (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: fix incorrect default ITR values on driver load (Stefan Assmann) [1454892]
-- [netdrv] i40e: use the safe hash table iterator when deleting mac filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix flags declaration (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: organize and re-number feature flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: ignore skb->xmit_more when deciding to set RS bit (Stefan Assmann) [1454892]
-- [netdrv] i40e: do not enter PHY debug mode while setting LEDs behaviour (Stefan Assmann) [1454892]
-- [netdrv] i40e: implement split PCI error reset handler (Stefan Assmann) [1454892]
-- [netdrv] i40e: Properly maintain flow director filters list (Stefan Assmann) [1454892]
-- [netdrv] i40e: Display error message if module does not meet thermal requirements (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix merge error (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: use DECLARE_BITMAP for state (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix incorrect register definition (Stefan Assmann) [1454892]
-- [netdrv] i40e: redfine I40E_PHY_TYPE_MAX (Stefan Assmann) [1454892]
-- [netdrv] i40e: re-enable PTP L4 capabilities for XL710 if FW >6.0 (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: spread CPU affinity hints across online CPUs only (Stefan Assmann) [1454892]
-- [netdrv] i40e: add private flag to control source pruning (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix a typo in i40e_pf documentation (Stefan Assmann) [1454892]
-- [netdrv] i40e: Stop dropping 802.1ad tags - eth proto 0x88a8 (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix client notify of VF reset (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix handling of vf_states variable (Stefan Assmann) [1454892]
-- [netdrv] i40e: ensure reset occurs when disabling VF (Stefan Assmann) [1454892]
-- [netdrv] i40e: make use of i40e_vc_disable_vf (Stefan Assmann) [1454892]
-- [netdrv] i40e: drop i40e_pf *pf from i40e_vc_disable_vf() (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't hold spinlock while resetting VF (Stefan Assmann) [1454892]
-- [netdrv] i40e: use admin queue for setting LEDs behavior (Stefan Assmann) [1454892]
-- [netdrv] i40e: Add support for 'ethtool -m' (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix reporting of supported link modes (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix a potential NULL pointer dereference (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove logically dead code (Stefan Assmann) [1454892]
-- [netdrv] i40e: limit lan queue count in large CPU count machine (Stefan Assmann) [1454892]
-- [netdrv] i40e: refactor FW version checking (Stefan Assmann) [1454892]
-- [netdrv] i40e: Enable VF to negotiate number of allocated queues (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: Add compile time static asserts to validate structure sizes (Stefan Assmann) [1454892]
-- [netdrv] i40e: shutdown all IRQs and disable MSI-X when suspended (Stefan Assmann) [1454892]
-- [netdrv] i40e: prevent service task from running while we're suspended (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't clear suspended state until we finish resuming (Stefan Assmann) [1454892]
-- [netdrv] i40e: use newer generic PM support instead of legacy PM callbacks (Stefan Assmann) [1454892]
-- [netdrv] i40e: use separate state bit for miscellaneous IRQ setup (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix for flow director counters not wrapping as expected (Stefan Assmann) [1454892]
-- [netdrv] i40e: relax warning message in case of version mismatch (Stefan Assmann) [1454892]
-- [netdrv] i40e: simplify member variable accesses (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix link down message when interface is brought up (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix unqualified module message while bringing link up (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: rename bytes_per_int to bytes_per_usec (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: avoid dynamic ITR updates when polling or low packet rate (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: remove ULTRA latency mode (Stefan Assmann) [1454892]
-- [netdrv] i40e: invert logic for checking incorrect cpu vs irq affinity (Stefan Assmann) [1454892]
-- [netdrv] i40e: initialize our affinity_mask based on cpu_possible_mask (Stefan Assmann) [1454892]
-- [netdrv] i40e: move enabling icr0 into i40e_update_enable_itr (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove workaround for resetting XPS (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix for unused value issue found by static analysis (Stefan Assmann) [1454892]
-- [netdrv] i40e: 25G FEC status improvements (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: support for VF VLAN tag stripping control (Stefan Assmann) [1454892]
-- [netdrv] i40e: force VMDQ device name truncation (Stefan Assmann) [1454892]
-- [netdrv] i40e: Use correct flag to enable egress traffic for unicast promisc (Stefan Assmann) [1454892]
-- [netdrv] i40e: prevent snprintf format specifier truncation (Stefan Assmann) [1454892]
-- [netdrv] i40e: Store the requested FEC information (Stefan Assmann) [1454892]
-- [netdrv] i40e: Update state variable for adminq subtask (Stefan Assmann) [1454892]
-- [netdrv] i40e: synchronize nvmupdate command and adminq subtask (Stefan Assmann) [1454892]
-- [netdrv] i40e: prevent changing ITR if adaptive-rx/tx enabled (Stefan Assmann) [1454892]
-- [netdrv] i40e: move check for avoiding VID=0 filters into i40e_vsi_add_vlan (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: use cmpxchg64 when updating private flags in ethtool (Stefan Assmann) [1454892]
-- [netdrv] i40e: Detect ATR HW Evict NVM issue and disable the feature (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove workaround for Open Firmware MAC address (Stefan Assmann) [1454892]
-- [netdrv] i40e: separate hw_features from runtime changing flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix a bug with VMDq RSS queue allocation (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: adjust packet size to account for double VLANs (Stefan Assmann) [1454892]
-- [netdrv] i40e: Initialize 64-bit statistics TX ring seqcount (Stefan Assmann) [1454892]
-- [netdrv] i40e: handle setting administratively set MAC address back to zero (Stefan Assmann) [1454892]
-- [netdrv] i40e: display correct UDP tunnel type name (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: remove mismatched type warnings (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: make IPv6 ATR code clearer (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix odd formatting and indent (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix up 32 bit timespec references (Stefan Assmann) [1454892]
-- [netdrv] i40e: Handle admin Q timeout when releasing NVM (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove WQ_UNBOUND and the task limit of our workqueue (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix for trace found with S4 state (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix incorrect variable assignment (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't hold RTNL lock for the entire reset (Stefan Assmann) [1454892]
-- [netdrv] i40e: Handle PE_CRITERR properly with IWARP enabled (Stefan Assmann) [1454892]
-- [netdrv] i40e: clear only cause_ena bit (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix disabling overflow promiscuous mode (Stefan Assmann) [1454892]
-- [netdrv] i40e: Add support for OEM firmware version (Stefan Assmann) [1454892]
-- [netdrv] i40e: genericize the partition bandwidth control (Stefan Assmann) [1454892]
-- [netdrv] i40e: Add message for unsupported MFP mode (Stefan Assmann) [1454892]
-- [netdrv] i40e: Support firmware CEE DCB UP to TC map re-definition (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix potential out of bound array access (Stefan Assmann) [1454892]
-- [netdrv] i40e: comment that udp_port must be in host byte order (Stefan Assmann) [1454892]
-- [netdrv] i40e: use dev_dbg instead of dev_info when warning about missing routine (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: update WOL and I40E_AQC_ADDR_VALID_MASK flags (Stefan Assmann) [1454892]
-- [netdrv] networking: make skb_put & friends return void pointers (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix a sleep-in-atomic bug (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix handling of HW ATR eviction (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: proper update of the page_offset field (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix state flags for bit set and clean operations of PF (Stefan Assmann) [1454892]
-- [netdrv] i40e/virtchnl: move function to virtchnl (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: finish conversion to virtchnl interface (Stefan Assmann) [1454892]
-- [netdrv] i40evf/virtchnl: whitespace cleanups (Stefan Assmann) [1454892]
-- [netdrv] i40e/virtchnl: refactor code for validate checks (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: convert to new macros (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: move some code to core driver (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: rename i40e to generic virtchnl (Stefan Assmann) [1454892]
-- [netdrv] i40e: use new unified virtchnl header file (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: create and use new unified header file (Stefan Assmann) [1454892]
-- [netdrv] i40e: Check for memory allocation failure (Stefan Assmann) [1454892]
-- [netdrv] i40e: check for Tx timestamp timeouts during watchdog (Stefan Assmann) [1454892]
-- [netdrv] i40e: use pf data structure directly in i40e_ptp_rx_hang (Stefan Assmann) [1454892]
-- [netdrv] i40e: add statistic indicating number of skipped Tx timestamps (Stefan Assmann) [1454892]
-- [netdrv] i40e: avoid permanent lock of *_PTP_TX_IN_PROGRESS (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix race condition with PTP_TX_IN_PROGRESS bits (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove hw_disabled_flags in favor of using separate flag bits (Stefan Assmann) [1454892]
-- [netdrv] i40e: use DECLARE_BITMAP for state fields (Stefan Assmann) [1454892]
-- [netdrv] i40e: separate PF and VSI state flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove unnecessary msleep() delay in i40e_free_vfs (Stefan Assmann) [1454892]
-- [netdrv] i40e: amortize wait time when disabling lots of VFs (Stefan Assmann) [1454892]
-- [netdrv] i40e: Reprogram port offloads after reset (Stefan Assmann) [1454892]
-- [netdrv] i40e: rename index to port to avoid confusion (Stefan Assmann) [1454892]
-- [netdrv] i40e: make use of i40e_reset_all_vfs when initializing new VFs (Stefan Assmann) [1454892]
-- [netdrv] i40e: properly spell I40E_VF_STATE_* flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: use i40e_stop_rings_no_wait to implement PORT_SUSPENDED state (Stefan Assmann) [1454892]
-- [netdrv] i40e: reset all VFs in parallel when rebuilding PF (Stefan Assmann) [1454892]
-- [netdrv] i40e: split some code in i40e_reset_vf into helpers (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix CONFIG_BUSY checks in i40e_set_settings function (Stefan Assmann) [1454892]
-- [netdrv] i40e: factor out queue control from i40e_vsi_control_(tx|rx) (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't hold RTNL lock while waiting for VF reset to finish (Stefan Assmann) [1454892]
-- [netdrv] i40e: new AQ commands (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add tracepoints (Stefan Assmann) [1454892]
-- [netdrv] i40e: dump VF information in debugfs (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix support for flow director programming status (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Use build_skb to build frames (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add support for padding start of frames (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add support for using order 1 pages with a 3K buffer (Stefan Assmann) [1454892]
-- [netdrv] i40e: clean up historic deprecated flag definitions (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove I40E_FLAG_NEED_LINK_UPDATE (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove extraneous loop in i40e_vsi_wait_queues_disabled (Stefan Assmann) [1454892]
-- [netdrv] i40e: allow look-up of MAC address from Open Firmware or IDPROM (Stefan Assmann) [1454892]
-- [netdrv] i40e: Simplify i40e_detect_recover_hung_queue logic (Stefan Assmann) [1454892]
-- [netdrv] i40e: Decrease the scope of rtnl lock (Stefan Assmann) [1454892]
-- [netdrv] i40e: Swap use of pf->flags and pf->hw_disabled_flags for ATR Eviction (Stefan Assmann) [1454892]
-- [netdrv] i40e: update error message when trying to add invalid filters (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add capability exchange for outer checksum (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix for queue timing delays (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Change the way we limit the maximum frame size for Rx (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add legacy-rx private flag to allow fallback to old Rx flow (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Break i40e_fetch_rx_buffer up to allow for reuse of frag code (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Pull out code for cleaning up Rx buffers (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Pull code for grabbing and syncing rx_buffer from fetch_buffer (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Use length to determine if descriptor is done (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove FDIR_REQUIRES_REINIT driver flag (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove a useless goto statement (Stefan Assmann) [1454892]
-- [netdrv] i40e: Check for new arq elements before leaving the adminq subtask loop (Stefan Assmann) [1454892]
-- [netdrv] i40e: use register for XL722 control register read/write (Stefan Assmann) [1454892]
-- [netdrv] i40e: Clean up handling of private flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: Drop FCoE code that always evaluates to false or 0 (Stefan Assmann) [1454892]
-- [netdrv] i40e: Drop FCoE code from core driver files (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Clean-up process_skb_fields (Stefan Assmann) [1454892]
-- [netdrv] i40e: removed no longer needed delays (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fixed race conditions in VF reset (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Fix use after free in Rx cleanup path (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix configuration of RSS table with DCB (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Update code to better handle incrementing page count (Stefan Assmann) [1454892]
-- [netdrv] i40e: make use of hlist_for_each_entry_continue (Stefan Assmann) [1454892]
-- [netdrv] i40e: add support for SCTPv4 FDir filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: implement support for flexible word payload (Stefan Assmann) [1454892]
-- [netdrv] i40e: add parsing of flexible filter fields from userdef (Stefan Assmann) [1454892]
-- [netdrv] i40e: partition the ring_cookie to get VF index (Stefan Assmann) [1454892]
-- [netdrv] i40e: allow changing input set for ntuple filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: restore default input set for each flow type (Stefan Assmann) [1454892]
-- [netdrv] i40e: check current configured input set when adding ntuple filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: correctly honor the mask fields for ETHTOOL_SRXCLSRLINS (Stefan Assmann) [1454892]
-- [netdrv] i40e: always remove old filter when adding new FDir filter (Stefan Assmann) [1454892]
-- [netdrv] i40e: explicitly fail on extended MAC field for ethtool_rx_flow_spec (Stefan Assmann) [1454892]
-- [netdrv] i40e: add counters for UDP/IPv4 and IPv4 filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't re-enable ATR when flushing filters if SB has TCP4/IPv4 rules (Stefan Assmann) [1454892]
-- [netdrv] i40e: reset fd_tcp_rule count when restoring filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove redundant check for fd_tcp_rule when restoring filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: exit ATR mode only when adding TCP/IPv4 filter succeeds (Stefan Assmann) [1454892]
-- [netdrv] i40e: return immediately when failing to add fdir filter (Stefan Assmann) [1454892]
-- [netdrv] i40e: rework exit flow of i40e_add_fdir_ethtool (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't use arrays for (src|dst)_ip (Stefan Assmann) [1454892]
-- [netdrv] i40e: send correct port number to AdminQ when enabling UDP tunnels (Stefan Assmann) [1454892]
-- [netdrv] i40e: use new api ethtool_{get|set}_link_ksettings (Stefan Assmann) [1454892]
-- [netdrv] i40e: rename auto_disable_flags to hw_disabled_flags (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Change version from 1.6.27 to 2.1.7 (Stefan Assmann) [1454892]
-- [netdrv] i40e: Allow untrusted VFs to have more filters (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add support for mapping pages with DMA attributes (Stefan Assmann) [1454892]
-- [netdrv] i40e: Clarify steps in MAC/VLAN filters initialization routine (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix ethtool to get EEPROM data from X722 interface (Stefan Assmann) [1454892]
-- [netdrv] intel: use core min/max MTU checking (Stefan Assmann) [1454892]
-
-* Tue Nov 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-774.el7]
-- [net] rename ndo_setup_tc callback and remove it from kABI (Ivan Vecera) [1445420]
-- [net] sched: avoid matching qdisc with zero handle (Ivan Vecera) [1445420]
-- [net] sched: cls_flower: Set egress_dev mark when calling into the HW driver (Ivan Vecera) [1445420]
-- [net] net_sched: remove cls_flower idr on failure (Ivan Vecera) [1445420]
-- [net] sched: don't use GFP_KERNEL under spin lock (Ivan Vecera) [1445420]
-- [net] sched: fix use-after-free in tcf_action_destroy and tcf_del_walker (Ivan Vecera) [1445420]
-- [net] sched: Change act_api and act_xxx modules to use IDR (Ivan Vecera) [1445420]
-- [net] sched: Change cls_flower to use IDR (Ivan Vecera) [1445420]
-- [lib] idr: implement extended variant of idr (Ivan Vecera) [1445420]
-- [lib] idr: fix NULL pointer dereference when ida_remove(unallocated_id) (Ivan Vecera) [1445420]
-- [lib] idr: fix unexpected ID-removal when idr_remove(unallocated_id) (Ivan Vecera) [1445420]
-- [lib] idr: fix overflow bug during maximum ID calculation at maximum height (Ivan Vecera) [1445420]
-- [net] net_sched: fix order of queue length updates in qdisc_replace() (Ivan Vecera) [1445420]
-- [net] sched: hfsc: fix curve activation in hfsc_change_class() (Ivan Vecera) [1445420]
-- [net] net_sched: always reset qdisc backlog in qdisc_reset() (Ivan Vecera) [1445420]
-- [net] net_sched: gen_estimator: fix scaling error in bytes/packets samples (Ivan Vecera) [1445420]
-- [net] net_sched: carefully handle tcf_block_put() (Ivan Vecera) [1445420]
-- [net] net_sched: fix reference counting of tc filter chain (Ivan Vecera) [1445420]
-- [net] net_sched: get rid of tcfa_rcu (Ivan Vecera) [1445420]
-- [net] sched: fix pointer check in gen_handle (Ivan Vecera) [1445420]
-- [net] sched: fix memleak for chain zero (Ivan Vecera) [1445420]
-- [net] sched: Use __qdisc_drop instead of kfree_skb in sch_prio and sch_qfq (Ivan Vecera) [1445420]
-- [net] net_sched: add reverse binding for tc class (Ivan Vecera) [1445420]
-- [net] sch_tbf: fix two null pointer dereferences on init failure (Ivan Vecera) [1445420]
-- [net] sch_sfq: fix null pointer dereference on init failure (Ivan Vecera) [1445420]
-- [net] sch_netem: avoid null pointer deref on init failure (Ivan Vecera) [1445420]
-- [net] sch_fq_codel: avoid double free on init failure (Ivan Vecera) [1445420]
-- [net] sch_cbq: fix null pointer dereferences on init failure (Ivan Vecera) [1445420]
-- [net] sch_hfsc: fix null pointer deref and double free on init failure (Ivan Vecera) [1445420]
-- [net] sch_hhf: fix null pointer dereference on init failure (Ivan Vecera) [1445420]
-- [net] sch_multiq: fix double free on init failure (Ivan Vecera) [1445420]
-- [net] sch_htb: fix crash on init failure (Ivan Vecera) [1445420]
-- [net] act_ife: use registered ife_type as fallback (Ivan Vecera) [1445420]
-- [net] if_ether: add forces ife lfb type (Ivan Vecera) [1445420]
-- [net] sched: sfq: drop packets after root qdisc lock is released (Ivan Vecera) [1445420]
-- [net] net_sched: fix a refcount_t issue with noop_qdisc (Ivan Vecera) [1445420]
-- [net] net_sched: kill u32_node pointer in Qdisc (Ivan Vecera) [1445420]
-- [net] net_sched: remove tc class reference counting (Ivan Vecera) [1445420]
-- [net] net_sched: introduce tclass_del_notify() (Ivan Vecera) [1445420]
-- [net] net_sched: get rid of more forward declarations (Ivan Vecera) [1445420]
-- [net] sched: add couple of goto_chain helpers (Ivan Vecera) [1445420]
-- [net] sched: don't do tcf_chain_flush from tcf_chain_destroy (Ivan Vecera) [1445420]
-- [net] sched: fix use after free when tcf_chain_destroy is called multiple times (Ivan Vecera) [1445420]
-- [net] sched: Fix the logic error to decide the ingress qdisc (Ivan Vecera) [1445420]
-- [net] sched: fix p_filter_chain check in tcf_chain_flush (Ivan Vecera) [1445420]
-- [net] sched: Add the invalid handle check in qdisc_class_find (Ivan Vecera) [1445420]
-- [net] sched: fix NULL pointer dereference when action calls some targets (Ivan Vecera) [1445420]
-- [net] sched: cls_flower: fix ndo_setup_tc type for stats call (Ivan Vecera) [1445420]
-- [net] qdisc: add tracepoint qdisc:qdisc_dequeue for dequeued SKBs (Ivan Vecera) [1445420]
-- [net] sched: hfsc: opencode trivial set_active() and set_passive() (Ivan Vecera) [1445420]
-- [net] net_sched: call qlen_notify only if child qdisc is empty (Ivan Vecera) [1445420]
-- [net] net_sched: remove warning from qdisc_hash_add (Ivan Vecera) [1445420]
-- [net] sched: sfq: update hierarchical backlog when drop packet (Ivan Vecera) [1445420]
-- [net] net_sched: reset pointers to tcf blocks in classful qdiscs' destructors (Ivan Vecera) [1445420]
-- [net] sched: hfsc: allocate tcf block for hfsc root class (Ivan Vecera) [1445420]
-- [net] sched: remove cops->tcf_cl_offload (Ivan Vecera) [1445420]
-- [net] sched: use newly added classid identity helpers (Ivan Vecera) [1445420]
-- [net] sched: propagate classid down to offload drivers (Ivan Vecera) [1445420]
-- [net] sched: Add helpers to identify classids (Ivan Vecera) [1445420]
-- [net] sched: set xt_tgchk_param par.nft_compat as 0 in ipt_init_target (Ivan Vecera) [1445420]
-- [net] sched: set xt_tgchk_param par.net properly in ipt_init_target (Ivan Vecera) [1445420]
-- [net] net_sched: get rid of some forward declarations (Ivan Vecera) [1445420]
-- [net] sched: get rid of struct tc_to_netdev (Ivan Vecera) [1445420]
-- [net] sched: change return value of ndo_setup_tc for driver supporting mqprio only (Ivan Vecera) [1445420]
-- [net] sched: move prio into cls_common (Ivan Vecera) [1445420]
-- [net] sched: push cls related args into cls_common structure (Ivan Vecera) [1445420]
-- [netdrv] mlxsw: spectrum: rename cls arg in matchall processing (Ivan Vecera) [1445420]
-- [netdrv] mlxsw: spectrum: push cls_flower and cls_matchall setup_tc processing into separate functions (Ivan Vecera) [1445420]
-- [netdrv] mlx5e_rep: push cls_flower setup_tc processing into a separate function (Ivan Vecera) [1445420]
-- [netdrv] mlx5e: push cls_flower and mqprio setup_tc processing into separate functions (Ivan Vecera) [1445420]
-- [netdrv] ixgbe: push cls_u32 and mqprio setup_tc processing into separate functions (Ivan Vecera) [1445420]
-- [netdrv] cxgb4: push cls_u32 setup_tc processing into a separate function (Ivan Vecera) [1445420]
-- [net] sched: make egress_dev flag part of flower offload struct (Ivan Vecera) [1445420]
-- [net] sched: rename TC_SETUP_MATCHALL to TC_SETUP_CLSMATCHALL (Ivan Vecera) [1445420]
-- [net] sched: make type an argument for ndo_setup_tc (Ivan Vecera) [1445420]
-- [net] net_sched: use void pointer for filter handle (Ivan Vecera) [1445420]
-- [net] net_sched: refactor notification code for RTM_DELTFILTER (Ivan Vecera) [1445420]
-- [net] sched: avoid atomic swap in tcf_exts_change (Ivan Vecera) [1445420]
-- [net] sched: cls_u32: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_route: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_flow: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_cgroup: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_bpf: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_basic: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_matchall: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_fw: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_flower: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_fw: rename fw_change_attrs function (Ivan Vecera) [1445420]
-- [net] sched: cls_bpf: rename cls_bpf_modify_existing function (Ivan Vecera) [1445420]
-- [net] sched: use tcf_exts_has_actions instead of exts->nr_actions (Ivan Vecera) [1445420]
-- [net] sched: remove check for number of actions in tcf_exts_exec (Ivan Vecera) [1445420]
-- [net] sched: fix return value of tcf_exts_exec (Ivan Vecera) [1445420]
-- [net] sched: remove redundant helpers tcf_exts_is_predicative and tcf_exts_is_available (Ivan Vecera) [1445420]
-- [net] sched: use tcf_exts_has_actions in tcf_exts_exec (Ivan Vecera) [1445420]
-- [net] sched: change names of action number helpers to be aligned with the rest (Ivan Vecera) [1445420]
-- [net] sched: remove unneeded tcf_em_tree_change (Ivan Vecera) [1445420]
-- [net] sched: sch_atm: use Qdisc_class_common structure (Ivan Vecera) [1445420]
-- [net] sched: actions: add time filter for action dumping (Ivan Vecera) [1445420]
-- [net] sched: actions: dump more than TCA_ACT_MAX_PRIO actions per batch (Ivan Vecera) [1445420]
-- [net] sched: actions: Use proper root attribute table for actions (Ivan Vecera) [1445420]
-- [net] netlink: Add new type NLA_BITFIELD32 (Ivan Vecera) [1445420]
-- [net] sched: actions: rename act_get_notify() to tcf_get_notify() (Ivan Vecera) [1445420]
-- [net] sched: Fix one possible panic when no destroy callback (Ivan Vecera) [1445420]
-- [net] sched: act_tunnel_key: make UDP checksum configurable (Ivan Vecera) [1445420]
-- [net] sched: act_tunnel_key: request UDP checksum by default (Ivan Vecera) [1445420]
-- [net] act_pedit: fix an error code (Ivan Vecera) [1445420]
-- [net] net_sched: move tcf_lock down after gen_replace_estimator() (Ivan Vecera) [1445420]
-- [net] propagate tc filter chain index down the ndo_setup_tc call (Ivan Vecera) [1445420]
-- [net] sched: introduce helper to identify gact trap action (Ivan Vecera) [1445420]
-- [net] sched: introduce a TRAP control action (Ivan Vecera) [1445420]
-- [net] sched: select cls when cls_act is enabled (Ivan Vecera) [1445420]
-- [net] sched: cls_flower: add support for matching on ip tos and ttl (Ivan Vecera) [1445420]
-- [net] sched: add helper for updating statistics on all actions (Ivan Vecera) [1445420]
-- [net] net_sched: only create filter chains for new filters/actions (Ivan Vecera) [1445420]
-- [net] sched: flower: add support for matching on tcp flags (Ivan Vecera) [1445420]
-- [net] sched: cls_api: make reclassify return all the way back to the original tp (Ivan Vecera) [1445420]
-- [net] sched: cls_matchall: fix null pointer dereference (Ivan Vecera) [1445420]
-- [net] sched: fix filter flushing (Ivan Vecera) [1445420]
-- [net] sched: properly assign RCU pointer in tcf_chain_tp_insert/remove (Ivan Vecera) [1445420]
-- [net] sched: add termination action to allow goto chain (Ivan Vecera) [1445420]
-- [net] sched: push tp down to action init (Ivan Vecera) [1445420]
-- [net] sched: introduce multichain support for filters (Ivan Vecera) [1445420]
-- [net] sched: push chain dump to a separate function (Ivan Vecera) [1445420]
-- [net] sched: introduce helpers to work with filter chains (Ivan Vecera) [1445420]
-- [net] sched: move TC_H_MAJ macro call into tcf_auto_prio (Ivan Vecera) [1445420]
-- [net] sched: replace nprio by a bool to make the function more readable (Ivan Vecera) [1445420]
-- [net] sched: rename tcf_destroy_chain helper (Ivan Vecera) [1445420]
-- [net] sched: introduce tcf block infractructure (Ivan Vecera) [1445420]
-- [net] sched: move tc_classify function to cls_api.c (Ivan Vecera) [1445420]
-- [net] fix compile error in skb_orphan_partial() (Ivan Vecera) [1445420]
-- [net] netem: fix skb_orphan_partial() (Ivan Vecera) [1445420]
-- [net] sched: optimize class dumps (Ivan Vecera) [1445420]
-- [net] sched: act_csum: Add accessors for offloading drivers (Ivan Vecera) [1445420]
-- [net] sched: remove redundant null check on head (Ivan Vecera) [1445420]
-- [net] sched: add helpers to handle extended actions (Ivan Vecera) [1445420]
-- [net] flower: check unused bits in MPLS fields (Ivan Vecera) [1445420]
-- [net] sched: actions: Complete the JUMPX opcode (Ivan Vecera) [1445420]
-- [net] cls_flower: add support for matching MPLS fields (v2) (Ivan Vecera) [1445420]
-- [net] net_sched: remove useless NULL to tp->root (Ivan Vecera) [1445420]
-- [net] net_sched: move the empty tp check from ->destroy() to ->delete() (Ivan Vecera) [1445420]
-- [net] allow configuring default qdisc (Ivan Vecera) [1445420]
-- [net] net_sched: check noop_qdisc before qdisc_hash_add() (Ivan Vecera) [1445420]
-- [net] sched: choke: remove some dead code (Ivan Vecera) [1445420]
-- [net] net_sched: use setup_deferrable_timer (Ivan Vecera) [1445420]
-- [net] sched: choke: remove dead filter classify code (Ivan Vecera) [1445420]
-- [net] sched: act_csum: don't mangle TCP and UDP GSO packets (Ivan Vecera) [1445420]
-- [net] sch_dsmark: fix invalid skb_cow() usage (Ivan Vecera) [1445420]
-- [net] sched: fq_codel: Avoid set-but-unused variable (Ivan Vecera) [1445420]
-- [net] sched: act_ife: Staticfy find_decode_metaid() (Ivan Vecera) [1445420]
-- [net] mqprio: Modify mqprio to pass user parameters via ndo_setup_tc (Ivan Vecera) [1445420]
-- [net] mqprio: Change handling of hw u8 to allow for multiple hardware offload modes (Ivan Vecera) [1445420]
-- [net] replace callings of .ndo_setup_tc by wrapper (Ivan Vecera) [1445420]
-- [net] netem: apply correct delay when rate throttling (Ivan Vecera) [1445420]
-- [net] sch_tbf: Remove bogus semicolon in if() conditional. (Ivan Vecera) [1445420]
-- [net] act_connmark: avoid crashing on malformed nlattrs with null parms (Ivan Vecera) [1445420]
-- [net] sched: make default fifo qdiscs appear in the dump (Ivan Vecera) [1445420]
-- [net] sched: act_skbmod: remove unneeded rcu_read_unlock in tcf_skbmod_dump (Ivan Vecera) [1445420]
-- [net] sched: actions: decrement module reference count after table flush. (Ivan Vecera) [1445420]
-- [net] pkt_sched: Remove useless qdisc_stab_lock (Ivan Vecera) [1445420]
-- [net] sched: cls_u32: Reflect HW offload status (Ivan Vecera) [1445420]
-- [net] sched: have stub for tcf_destroy_chain in case NET_CLS is not configured (Ivan Vecera) [1445420]
-- [net] sched: Fix accidental removal of errout goto (Ivan Vecera) [1445420]
-- [net] net_sched: fix error recovery at qdisc creation (Ivan Vecera) [1445420]
-- [net] sched: check negative err value to safe one level of indent (Ivan Vecera) [1445420]
-- [net] sched: add missing curly braces in else branch in tc_ctl_tfilter (Ivan Vecera) [1445420]
-- [net] sched: move err set right before goto errout in tc_ctl_tfilter (Ivan Vecera) [1445420]
-- [net] sched: push TC filter protocol creation into a separate function (Ivan Vecera) [1445420]
-- [net] sched: move tcf_proto_destroy and tcf_destroy_chain helpers into cls_api (Ivan Vecera) [1445420]
-- [net] sched: rename tcf_destroy to tcf_destroy_proto (Ivan Vecera) [1445420]
-- [net] act_pedit: Introduce 'add' operation (Ivan Vecera) [1445420]
-- [net] act_pedit: Support using offset relative to the conventional network headers (Ivan Vecera) [1445420]
-- [net] sched: act_mirred: remove duplicated include from act_mirred.c (Ivan Vecera) [1445420]
-- [net] sched: act_ife: Change to use ife module (Ivan Vecera) [1445420]
-- [net] Introduce ife encapsulation module (Ivan Vecera) [1445420]
-- [net] sched: act_ife: Unexport ife_tlv_meta_encode (Ivan Vecera) [1445420]
-- [net] sched: act_psample: Remove unnecessary ASSERT_RTNL (Ivan Vecera) [1445420]
-- [net] sched: act_sample: Fix error path in init (Ivan Vecera) [1445420]
-- [net] sched: Introduce sample tc action (Ivan Vecera) [1445420]
-- [net] Introduce psample, a new genetlink channel for packet sampling (Ivan Vecera) [1445420]
-- [net] sched: Add accessor functions to pedit keys for offloading drivers (Ivan Vecera) [1445420]
-- [net] fq_codel: Avoid regenerating skb flow hash unless necessary (Ivan Vecera) [1445420]
-- [net] sched: actions: fix refcnt when GETing of action after bind (Ivan Vecera) [1445420]
-- [net] sched: act_csum: compute crc32c on SCTP packets (Ivan Vecera) [1445420]
-- [net] sched: Kconfig: select LIBCRC32C if NET_ACT_CSUM is selected (Ivan Vecera) [1445420]
-- [net] cls_u32: don't bother explicitly initializing ->divisor to zero (Ivan Vecera) [1445420]
-- [net] tc: convert tc_at to tc_at_ingress (Ivan Vecera) [1445420]
-- [net] tc: convert tc_verd to integer bitfields (Ivan Vecera) [1445420]
-- [net] tc: extract skip classify bit from tc_verd (Ivan Vecera) [1445420]
-- [net] tc: make MAX_RECLASSIFY_LOOP local (Ivan Vecera) [1445420]
-- [net] tc: remove unused tc_verd fields (Ivan Vecera) [1445420]
-- [net] dev_weight: TX/RX orthogonality (Ivan Vecera) [1445420]
-- [net] sched: fix soft lockup in tc_classify (Ivan Vecera) [1445420]
-- [net] net_sched: sch_netem: use rb_entry() (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: use rb_entry() (Ivan Vecera) [1445420]
-- [net] net_sched: gen_estimator: complete rewrite of rate estimators (Ivan Vecera) [1445420]
-- [net] uapi: export tc_skbmod.h (Ivan Vecera) [1445420]
-- [net] net_sched: gen_estimator: account for timer drifts (Ivan Vecera) [1445420]
-- [net] sched: pedit: make sure that offset is valid (Ivan Vecera) [1445420]
-- [net] sched: Export tc_tunnel_key so its UAPI accessible (Ivan Vecera) [1445420]
-- [net] bpf: reuse dev_is_mac_header_xmit for redirect (Ivan Vecera) [1445420]
-- [net] sched: filters: fix filter handle ID in tfilter_notify_chain() (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: use hash_ptr() (Ivan Vecera) [1445420]
-- [net] sched: filters: pass netlink message flags in event notification (Ivan Vecera) [1445420]
-- [net] tc_act: Remove tcf_act macro (Ivan Vecera) [1445420]
-- [net] qdisc: catch misconfig of attaching qdisc to tx_queue_len zero device (Ivan Vecera) [1445420]
-- [net] qdisc: IFF_NO_QUEUE drivers should use consistent TX queue len (Ivan Vecera) [1445420]
-- [net] make default TX queue length a defined constant (Ivan Vecera) [1445420]
-- [net] net_sched: actions: use nla_parse_nested() (Ivan Vecera) [1445420]
-- [net] sched: filters: fix notification of filter delete with proper handle (Ivan Vecera) [1445420]
-- [net] skbedit: allow the user to specify bitmask for mark (Ivan Vecera) [1445420]
-- [net] sch_htb: do not report fake rate estimators (Ivan Vecera) [1445420]
-- [net] sched: em_meta: Fix 'meta vlan' to correctly recognize zero VID frames (Ivan Vecera) [1445420]
-- [net] sched: act_mirred: Implement ingress actions (Ivan Vecera) [1445420]
-- [net] sched: act_mirred: Refactor detection whether dev needs xmit at mac header (Ivan Vecera) [1445420]
-- [net] sched: act_mirred: Rename tcfm_ok_push to tcfm_mac_header_xmit and make it a bool (Ivan Vecera) [1445420]
-- [net] net_sched: reorder pernet ops and act ops registrations (Ivan Vecera) [1445420]
-- [net] net_sched: do not broadcast RTM_GETTFILTER result (Ivan Vecera) [1445420]
-- [net] skbuff: Limit skb_vlan_pop/push() to expect skb->data at mac header (Ivan Vecera) [1445420]
-- [net] sched: act_vlan: Push skb->data to mac_header prior calling skb_vlan_*() functions (Ivan Vecera) [1445420]
-- [net] sched: pkt_cls: change tc actions order to be as the user sets (Ivan Vecera) [1445420]
-- [net] act_ife: Fix false encoding (Ivan Vecera) [1445420]
-- [net] act_ife: Fix external mac header on encode (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: account for schedule/timers drifts (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: add low_rate_threshold parameter (Ivan Vecera) [1445420]
-- [net] sched: actions: fix GETing actions (Ivan Vecera) [1445420]
-- [net] sched: act_vlan: Introduce TCA_VLAN_ACT_MODIFY vlan action (Ivan Vecera) [1445420]
-- [net] skbuff: Export __skb_vlan_pop (Ivan Vecera) [1445420]
-- [net] net_sched: check NULL on error path in route4_change() (Ivan Vecera) [1445420]
-- [net] sched: actions police: peg drop stats for conforming traffic (Ivan Vecera) [1445420]
-- [net] sched: ife action: Introduce skb tcindex metadata encap decap (Ivan Vecera) [1445420]
-- [net] sched: ife action: add 16 bit helpers (Ivan Vecera) [1445420]
-- [net] sched: add and use qdisc_skb_head helpers (Ivan Vecera) [1445420]
-- [net] sched: replace __skb_dequeue with __qdisc_dequeue_head (Ivan Vecera) [1445420]
-- [net] sched: remove qdisc arg from __qdisc_dequeue_head (Ivan Vecera) [1445420]
-- [net] sched: don't use skb queue helpers (Ivan Vecera) [1445420]
-- [net] pie: use qdisc_dequeue_head wrapper (Ivan Vecera) [1445420]
-- [net] pkt_sched: fq: use proper locking in fq_dump_stats() (Ivan Vecera) [1445420]
-- [net] net_sched: Introduce skbmod action (Ivan Vecera) [1445420]
-- [net] sched: use IS_ENABLED() instead of checking for built-in or module (Ivan Vecera) [1445420]
-- [net] minor optimization in qdisc_qstats_cpu_drop() (Ivan Vecera) [1445420]
-- [net] qdisc: fix a module refcount leak in qdisc_create_dflt() (Ivan Vecera) [1445420]
-- [net] sched: fix encoding to use real length (Ivan Vecera) [1445420]
-- [net] net_sched: properly handle failure case of tcf_exts_init() (Ivan Vecera) [1445420]
-- [net] sched: avoid duplicates in qdisc dump (Ivan Vecera) [1445420]
-- [net] sched: fix handling of singleton qdiscs with qdisc_hash (Ivan Vecera) [1445420]
-- [net] net_sched: allow flushing tc police actions (Ivan Vecera) [1445420]
-- [net] net_sched: unify the init logic for act_police (Ivan Vecera) [1445420]
-- [net] net_sched: convert tcf_exts from list to pointer array (Ivan Vecera) [1445420]
-- [net] net_sched: remove an unnecessary list_del() (Ivan Vecera) [1445420]
-- [net] net_sched: remove the leftover cleanup_a() (Ivan Vecera) [1445420]
-- [net] fix up a few missing hashtable.h conflict resolutions (Ivan Vecera) [1445420]
-- [net] sched: convert qdisc linked list to hashtable (Ivan Vecera) [1445420]
-- [net] resolve symbol conflicts with generic hashtable.h (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: remove unused cl_myfadj (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: keep fsc and virtual times in sync; fix an old bug (Ivan Vecera) [1445420]
-- [net] net_sched: get rid of struct tcf_common (Ivan Vecera) [1445420]
-- [net] net_sched: move tc_action into tcf_common (Ivan Vecera) [1445420]
-- [net] sched: sch_htb: clamp xstats tokens to fit into 32-bit int (Ivan Vecera) [1445420]
-- [net] hfsc: reduce hfsc_sched to 14 cachelines (Ivan Vecera) [1445420]
-- [net] sched: actions: skbedit convert to use more modern nla_put_xxx (Ivan Vecera) [1445420]
-- [net] sched: actions: skbedit add support for mod-ing skb pkt_type (Ivan Vecera) [1445420]
-- [net] simplify and make pkt_type_ok() available for other users (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: anchor virtual curve at proper vt in hfsc_change_fsc() (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: go passive after vt update (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: remove leftover dlist and droplist (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: add unlikely() in qdisc_peek_len() (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: handle corner cases where head may change invalidating calculated deadline (Ivan Vecera) [1445420]
-- [net] net_sched: netem: do not call qdisc_drop() with a NULL skb (Ivan Vecera) [1445420]
-- [net] net_sched: generalize bulk dequeue (Ivan Vecera) [1445420]
-- [net] net_sched: sch_htb: export class backlog in dumps (Ivan Vecera) [1445420]
-- [net] net_sched: fq_codel: cache skb->truesize into skb->cb (Ivan Vecera) [1445420]
-- [net] net_sched: drop packets after root qdisc lock is released (Ivan Vecera) [1445420]
-- [net] act_ife: acquire ife_mod_lock before reading ifeoplist (Ivan Vecera) [1445420]
-- [net] act_ife: only acquire tcf_lock for existing actions (Ivan Vecera) [1445420]
-- [net] htb: call qdisc_root with rcu read lock held (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_pie: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_netem: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_htb: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_hhf: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: fq_codel: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_codel: defer skb freeing in codel_change() (Ivan Vecera) [1445420]
-- [net] net_sched: sch_choke: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: add the ability to defer skb freeing (Ivan Vecera) [1445420]
-- [net] net sched actions: bug fix dumping actions directly didnt produce NLMSG_DONE (Ivan Vecera) [1445420]
-- [net] net_sched: make tcf_hash_check() boolean (Ivan Vecera) [1445420]
-- [net] act_ipt: fix a bind refcnt leak (Ivan Vecera) [1445420]
-- [net] net_sched: prio: insure proper transactional behavior (Ivan Vecera) [1445420]
-- [net] act_police: rename tcf_act_police_locate() to tcf_act_police_init() (Ivan Vecera) [1445420]
-- [net] net_sched: remove internal use of TC_POLICE_* (Ivan Vecera) [1445420]
-- [net] net_sched: prio: properly report out of memory errors (Ivan Vecera) [1445420]
-- [net] sched: remove NET_XMIT_POLICED (Ivan Vecera) [1445420]
-- [net] net_sched: remove generic throttled management (Ivan Vecera) [1445420]
-- [net] net_sched: netem: remove qdisc_is_throttled() use (Ivan Vecera) [1445420]
-- [net] net_sched: cbq: remove a flaky use of qdisc_is_throttled() (Ivan Vecera) [1445420]
-- [net] net_sched: sch_plug: use a private throttled status (Ivan Vecera) [1445420]
-- [net] sched: fix qdisc->running lockdep annotations (Ivan Vecera) [1445420]
-- [net] sched: place state, next_sched and gso_skb in same cacheline again (Ivan Vecera) [1445420]
-- [net] sched: remove qdisc->drop (Ivan Vecera) [1445420]
-- [net] sched: remove qdisc_rehape_fail (Ivan Vecera) [1445420]
-- [net] cbq: remove TCA_CBQ_POLICE support (Ivan Vecera) [1445420]
-- [net] cbq: remove TCA_CBQ_OVL_STRATEGY support (Ivan Vecera) [1445420]
-- [net] qfq: don't leak skb if kzalloc fails (Ivan Vecera) [1445420]
-- [net] cls_u32: be more strict about skip-sw flag for knodes (Ivan Vecera) [1445420]
-- [net] cls_u32: catch all hardware offload errors (Ivan Vecera) [1445420]
-- [net] sched: fix missing doc annotations (Ivan Vecera) [1445420]
-- [net] net_sched: add missing paddattr description (Ivan Vecera) [1445420]
-- [net] sched: fix tc_should_offload for specific clsact classes (Ivan Vecera) [1445420]
-- [net] act_police: fix a crash during removal (Ivan Vecera) [1445420]
-- [net] sched: do not acquire qdisc spinlock in qdisc/class stats dump (Ivan Vecera) [1445420]
-- [net] net_sched: transform qdisc running bit into a seqcount (Ivan Vecera) [1445420]
-- [net] cls_u32: fix error code for invalid flags (Ivan Vecera) [1445420]
-- [net] net_sched: avoid too many hrtimer_start() calls (Ivan Vecera) [1445420]
-- [net] also make sch_handle_egress() drop monitor ready (Ivan Vecera) [1445420]
-- [net] net sched: ife action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: skbedit action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: simple action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: mirred action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: ipt action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: vlan action fix late binding (Ivan Vecera) [1445420]
-- [net] export tc ife uapi header (Ivan Vecera) [1445420]
-- [net] make sch_handle_ingress() drop monitor ready (Ivan Vecera) [1445420]
-- [net] add __sock_wfree() helper (Ivan Vecera) [1445420]
-- [net] sched: align nlattr properly when needed (Ivan Vecera) [1445420]
-- [net] qdisc: constify meta_type_ops structures (Ivan Vecera) [1445420]
-- [net] net_sched: fix a memory leak in tc action (Ivan Vecera) [1445420]
-- [net] net_sched: dsmark: use qdisc_dequeue_peeked() (Ivan Vecera) [1445420]
-- [net] act_ife: fix a typo in kmemdup() parameters (Ivan Vecera) [1445420]
-- [net] sched: use pfifo_fast for non real queues (Ivan Vecera) [1445420]
-- [net] sch_mqprio: Fix build with older gcc. (Ivan Vecera) [1445420]
-- [net] Support to encoding decoding skb prio on IFE action (Ivan Vecera) [1445420]
-- [net] Support to encoding decoding skb mark on IFE action (Ivan Vecera) [1445420]
-- [net] introduce IFE action (Ivan Vecera) [1445420]
-- [net] net_sched: update hierarchical backlog too (Ivan Vecera) [1445420]
-- [net] net_sched: add network namespace support for tc actions (Ivan Vecera) [1445420]
-- [net] net_sched: prepare tcf_hashinfo_destroy() for netns support (Ivan Vecera) [1445420]
-- [net] bpf: try harder on clones when writing into skb (Ivan Vecera) [1445420]
-- [net] net_sched: Improve readability of filter processing (Ivan Vecera) [1445420]
-- [net] net_sched fix: reclassification needs to consider ether protocol changes (Ivan Vecera) [1445420]
-- [net] pack tc_cls_u32_knode struct slighter better (Ivan Vecera) [1445420]
-- [net] net_sched: drr: check for NULL pointer in drr_dequeue (Ivan Vecera) [1445420]
-- [kernel] timer: add setup_deferrable_timer macro (Ivan Vecera) [1445420]
-- [net] sched: add clsact qdisc (Ivan Vecera) [1445420]
-- [net] sched: add skb_at_tc_ingress helper (Ivan Vecera) [1445420]
-- [net] net_sched: make qdisc_tree_decrease_qlen() work for non mq (Ivan Vecera) [1445420]
-- [net] net_sched: fix qdisc_tree_decrease_qlen() races (Ivan Vecera) [1445420]
-- [net] sched: kill dead code in sch_choke.c (Ivan Vecera) [1445420]
-- [net] sch_hhf: fix return value of hhf_drop() (Ivan Vecera) [1445420]
-- [net] sched: make sch_blackhole.c explicitly non-modular (Ivan Vecera) [1445420]
-- [net] act_mirred: always release tcf hash (Ivan Vecera) [1445420]
-- [net] revert "net_sched: move tp->root allocation into fw_init()" (Ivan Vecera) [1445420]
-- [net] act_connmark: Remember the struct net instead of guessing it. (Ivan Vecera) [1445420]
-- [net] sch_dsmark: improve memory locality (Ivan Vecera) [1445420]
-- [net] sched: don't break line in tc_classify loop notification (Ivan Vecera) [1445420]
-- [net] sched: consolidate tc_classify{, _compat} (Ivan Vecera) [1445420]
-- [net] net_sched: convert rsvp to call tcf_exts_destroy from rcu callback (Ivan Vecera) [1445420]
-- [net] net_sched: convert tcindex to call tcf_exts_destroy from rcu callback (Ivan Vecera) [1445420]
-- [net] net_sched: make tcf_hash_destroy() static (Ivan Vecera) [1445420]
-- [net] netfilter: nf_conntrack: add direction support for zones (Ivan Vecera) [1445420]
-- [net] act_mirred: avoid calling tcf_hash_release() when binding (Ivan Vecera) [1445420]
-- [net] sch_choke: drop all packets in queue during reset (Ivan Vecera) [1445420]
-- [net] sch_plug: purge buffered packets during reset (Ivan Vecera) [1445420]
-- [net] net_sched: fix a use-after-free in sfq (Ivan Vecera) [1445420]
-- [net] pkt_sched: sch_qfq: remove unused member of struct qfq_sched (Ivan Vecera) [1445420]
-- [net] net_sched: gen_estimator: extend pps limit (Ivan Vecera) [1445420]
-- [net] sched: Simplify em_ipset_match (Ivan Vecera) [1445420]
-- [net] pkt_sched: sch_qfq: remove redundant -if- control statement (Ivan Vecera) [1445420]
-- [net] sched: pkt_cls: remove unused macros from uapi (Ivan Vecera) [1445420]
-- [net] dev: reduce both ingress hook ifdefs (Ivan Vecera) [1445420]
-- [net] add CONFIG_NET_INGRESS to enable ingress filtering (Ivan Vecera) [1445420]
-- [net] sched: deprecate enqueue_root() (Ivan Vecera) [1445420]
-- [net] net_sched: gred: use correct backlog value in WRED mode (Ivan Vecera) [1445420]
-- [net] sched: Call skb_get_hash_perturb in sch_hhf (Ivan Vecera) [1445420]
-- [net] sched: act_connmark: don't zap skb->nfct (Ivan Vecera) [1445420]
-- [net] net_sched: move tp->root allocation into fw_init() (Ivan Vecera) [1445420]
-- [net] net_sched: move tp->root allocation into route4_init() (Ivan Vecera) [1445420]
-- [net] sched: export tc_connmark.h so it is uapi accessible (Ivan Vecera) [1445420]
-- [net] Remove state argument from skb_find_text() (Ivan Vecera) [1445420]
-- [net] ematch: Fix auto-loading of ematch modules. (Ivan Vecera) [1445420]
-- [net] gen_stats.c: Duplicate xstats buffer for later use (Ivan Vecera) [1445420]
-- [net] act_connmark: fix dependencies better (Ivan Vecera) [1445420]
-- [net] cls_basic: return from walking on match in basic_get (Ivan Vecera) [1445420]
-- [net] cls_bpf: fix auto generation of per list handles (Ivan Vecera) [1445420]
-- [net] cls_bpf: fix size mismatch on filter preparation (Ivan Vecera) [1445420]
-- [net] act_connmark: Add missing dependency on NF_CONNTRACK_MARK (Ivan Vecera) [1445420]
-- [net] sched: Introduce connmark action (Ivan Vecera) [1445420]
-- [net] sched: sch_teql: Remove unused function (Ivan Vecera) [1445420]
-- [net] skbuff: don't zero tc members when freeing skb (Ivan Vecera) [1445420]
-- [net] kconfig: use bool instead of boolean for type definition attributes (Ivan Vecera) [1445420]
-- [net] Update old iproute2 and Xen Remus links (Ivan Vecera) [1445420]
-- [net] tc_act: export uapi header file (Ivan Vecera) [1445420]
-- [net] sched: fix act file names in header comment (Ivan Vecera) [1445420]
-- [net] add rbnode to struct sk_buff (Ivan Vecera) [1445420]
-- [net] sch_pie: schedule the timer after all init succeed (Ivan Vecera) [1445420]
-- [net] net_sched: restore qdisc quota fairness limits after bulk dequeue (Ivan Vecera) [1445420]
-- [net] ematch: Fix early ending of inverted containers. (Ivan Vecera) [1445420]
-- [net] sched: implement qstat helper routines (Ivan Vecera) [1445420]
-- [net] ematch: Fix matching of inverted containers. (Ivan Vecera) [1445420]
-- [net] sched: fix compile warning in cls_u32 (Ivan Vecera) [1445420]
-- [net] sched: cls_u32: rcu can not be last node (Ivan Vecera) [1445420]
-- [net] sched: use __skb_queue_head_init() where applicable (Ivan Vecera) [1445420]
-- [net] net_sched: sfq: remove unused macro (Ivan Vecera) [1445420]
-- [net] netfilter: xt_string: Remove unnecessary initialization of struct ts_state (Ivan Vecera) [1445420]
-- [net] cbq: now_rt removal (Ivan Vecera) [1445420]
-- [net] cbq: incorrectly low bandwidth setting blocks limited traffic (Ivan Vecera) [1445420]
-- [net] net_sched: remove exceptional & on function name (Ivan Vecera) [1445420]
-- [net] net_sched: cancel nest attribute on failure in tcf_exts_dump() (Ivan Vecera) [1445420]
-- [net] em_canid: remove useless statements from em_canid_change (Ivan Vecera) [1445420]
-- [net] net_sched: drr: warn when qdisc is not work conserving (Ivan Vecera) [1445420]
-- [net] use the new API kvfree() (Ivan Vecera) [1445420]
-- [net] sch_hhf: fix comparison of qlen and limit (Ivan Vecera) [1445420]
-- [net] sched: lock imbalance in hhf qdisc (Ivan Vecera) [1445420]
-- [net] Allow tc changes in user namespaces (Ivan Vecera) [1445420]
-- [net] net_sched: return nla_nest_end() instead of skb->len (Ivan Vecera) [1445420]
-- [net] sch_tbf: Remove holes in struct tbf_sched_data. (Ivan Vecera) [1445420]
-- [net] sch_netem: replace magic numbers with enumerate in get_loss_clg (Ivan Vecera) [1445420]
-- [net] sch_netem: replace magic numbers with enumerate in GE model (Ivan Vecera) [1445420]
-- [net] sch_netem: change some func's param from "struct Qdisc *" to "struct netem_sched_data *" (Ivan Vecera) [1445420]
-- [net] sch_netem: return errcode before setting params (Ivan Vecera) [1445420]
-- [net] sched: Cleanup PIE comments (Ivan Vecera) [1445420]
-- [net] add and use skb_gso_transport_seglen() (Ivan Vecera) [1445420]
-- [net] sch_netem: replace magic numbers with enumerate (Ivan Vecera) [1445420]
-- [net] net_sched: act: pick a different type for act_xt (Ivan Vecera) [1445420]
-- [net] replace macros net_random and net_srandom with direct calls to prandom (Ivan Vecera) [1445420]
-- [net] hhf qdisc: fix jiffies-time conversion. (Ivan Vecera) [1445420]
-- [net] pkt_sched: PIE AQM scheme (Ivan Vecera) [1445420]
-- [net] sch: fix the typo in register_qdisc() (Ivan Vecera) [1445420]
-- [net] hhf: make qdisc ops static (Ivan Vecera) [1445420]
-- [net] sch_dsmark: use correct func name in print messages (Ivan Vecera) [1445420]
-- [net] sch_htb: use /* comments (Ivan Vecera) [1445420]
-- [net] net_sched: replace pr_warning with pr_warn (Ivan Vecera) [1445420]
-- [net] sch_cbq: remove unnecessary null pointer check (Ivan Vecera) [1445420]
-- [net] act_police: remove unnecessary null pointer check (Ivan Vecera) [1445420]
-- [net] qdisc: hhf: Heavy-Hitter Filter (HHF) qdisc (Ivan Vecera) [1445420]
-- [net] sch_htb: remove unnecessary NULL pointer judgment (Ivan Vecera) [1445420]
-- [net] net_sched: expand control flow of macro SKIP_NONLOCAL (Ivan Vecera) [1445420]
-- [net] net_sched: sfq: put sfq_unlink in a do - while loop (Ivan Vecera) [1445420]
-- [net] net_sched: add space around '>' and before '(' (Ivan Vecera) [1445420]
-- [net] net_sched: cls_bpf: use tabs to do indent (Ivan Vecera) [1445420]
-- [net] sched: htb: fix the calculation of quantum (Ivan Vecera) [1445420]
-- [net] Fix FSF address in file headers (Ivan Vecera) [1445420]
-- [net] include/net/: Fix FSF address in file headers (Ivan Vecera) [1445420]
-- [net] netem: fix loss 4 state model (Ivan Vecera) [1445420]
-- [net] netem: markov loss model transition fix (Ivan Vecera) [1445420]
-- [net] netem: free skb's in tree on reset (Ivan Vecera) [1445420]
-- [net] tc: export tc_defact.h to userspace (Ivan Vecera) [1445420]
-- [net] qdisc: basic classifier - remove unnecessary initialization (Ivan Vecera) [1445420]
-- [net] qdisc: meta return ENOMEM on alloc failure (Ivan Vecera) [1445420]
-- [net] netem: Introduce skb_orphan_partial() helper (Ivan Vecera) [1445420]
-- [net] pkt_sched: sch_qfq: remove forward declaration of qfq_update_agg_ts (Ivan Vecera) [1445420]
-- [net] pkt_sched: sch_qfq: improve efficiency of make_eligible (Ivan Vecera) [1445420]
-- [net] sched: Add __GFP_NOWARN to k.alloc calls with v.alloc fallbacks (Ivan Vecera) [1445420]
-- [net] kabi: prepare protection for struct Qdisc (Ivan Vecera) [1445420]
-- [net] kabi: remove RH_KABI_ macros from sch_generic.h (Ivan Vecera) [1445420]
-- [net] kabi: use different sch_generic.h for checksums generation (Ivan Vecera) [1445420]
-- [net] kabi: introduce shadow sch_generic.h for generating correct checksums (Ivan Vecera) [1445420]
-
-* Tue Nov 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-773.el7]
-- [fs] nfs: RPC_MAX_AUTH_SIZE is in bytes ("J. Bruce Fields") [1495321]
-- [fs] gfs2: Support negative atimes (Andreas Grunbacher) [1505849]
-- [fs] gfs2: Update ctime in setflags ioctl (Andreas Grunbacher) [1505822]
-- [fs] gfs2: Fix xattr fsync (Andreas Grunbacher) [1505552]
-- [fs] locks: Remove fl_nspid and use fs-specific l_pid for remote locks (Benjamin Coddington) [1449486]
-- [fs] locks: Filter /proc/locks output on proc pid ns (Benjamin Coddington) [1449486]
-- [fs] Make file credentials available to the seqfile interfaces (Benjamin Coddington) [1449486]
-- [fs] locks: Use allocation rather than the stack in fcntl_getlk() (Benjamin Coddington) [1449486]
-- [fs] locks: pass kernel struct flock to fcntl_getlk/setlk (Benjamin Coddington) [1449486]
-- [x86] perf/x86: Fix incorrect use of do_div() in NMI warning (Prarit Bhargava) [1501587]
-- [iommu] amd: don't sleep in invalid context (Jerry Snitselaar) [1505837]
-- [block] blktrace: Fix potential deadlock between delete & sysfs ops (Waiman Long) [1351904]
-- [video] video/logo: tidyup fb_logo_late_init initcall timing (Rob Clark) [1509707]
-- [video] video/logo: prevent use of logos after they have been freed (Rob Clark) [1509707]
-- [video] fbdev: Nuke FBINFO_MODULE (Rob Clark) [1509707]
-- [netdrv] xen-netfront, xen-netback: Use correct minimum MTU values (Mohammed Gamal) [1502554]
-- [netdrv] use core MTU range checking in virt drivers (Mohammed Gamal) [1502554 1497228]
-- [netdrv] cxgb3: Check and handle the dma mapping errors (Arjun Vynipadath) [1459387 953400]
-- [netdrv] amd: fix pci device ids (Prarit Bhargava) [1486046]
-- [kernel] module_device_table: fix some callsites (Prarit Bhargava) [1486046]
-- [kernel] module: fix types of device tables aliases (Prarit Bhargava) [1486046]
-- [kernel] module: remove MODULE_GENERIC_TABLE (Prarit Bhargava) [1486046]
-- [kernel] module: allow multiple calls to MODULE_DEVICE_TABLE() per module (Prarit Bhargava) [1486046]
-- [kernel] sched/topology: Fix memory leak in __sdt_alloc() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Simplify sched_group_mask() usage (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Rewrite get_group() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched: Use cached value of span instead of calling sched_domain_span() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched: Fix memory leakage in build_sched_groups() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Add a few comments (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Fix overlapping sched_group_capacity (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Small cleanup (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Fix overlapping sched_group_mask (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Remove FORCE_SD_OVERLAP (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Move comment about asymmetric node setups (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Optimize build_group_mask() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Verify the first group matches the child domain (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Simplify build_overlap_sched_groups() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Fix building of overlapping sched-groups (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/fair, cpumask: Export for_each_cpu_wrap() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Refactor function build_overlap_sched_groups() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched: Rename a misleading variable in build_overlap_sched_groups() (Lauro Ramos Venancio) [1373534]
-- [powerpc] uprobes: Implement arch_uretprobe_is_alive() (Gustavo Duarte) [1357435]
-- [security] capabilities: fix logic for effective root or real root (Richard Guy Briggs) [1465626]
-
-* Mon Nov 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-772.el7]
-- [md] raid5-ppl: check recovery_offset when performing ppl recovery (Nigel Croxon) [1455932]
-- [md] raid5-ppl: don't resync after rebuild (Nigel Croxon) [1455932]
-- [md] raid5: preserve STRIPE_ON_UNPLUG_LIST in break_stripe_batch_list (Nigel Croxon) [1455932]
-- [md] raid5: fix a race condition in stripe batch (Nigel Croxon) [1455932]
-- [md] bitmap: disable bitmap_resize for file-backed bitmaps (Nigel Croxon) [1455932]
-- [md] raid5-ppl: Recovery support for multiple partial partiy logs (Nigel Croxon) [1455932]
-- [md] Runtime support for multiple ppls (Nigel Croxon) [1455932]
-- [md] cleanup mddev flag clear for takeover (Nigel Croxon) [1455932]
-- [md] notify about new spare disk in the container (Nigel Croxon) [1455932]
-- [md] raid5: add thread_group worker async_tx_issue_pending_all (Nigel Croxon) [1455932]
-- [md] Raid5 should update rdev->sectors after reshape (Nigel Croxon) [1455932]
-- [md] don't use flush_signals in userspace processes (Nigel Croxon) [1455932]
-- [md] md0: optimize raid0 discard handling (Nigel Croxon) [1455932]
-- [md] don't return -EAGAIN in md_allow_write for external metadata arrays (Nigel Croxon) [1455932]
-- [md] raid5-ppl: use a single mempool for ppl_io_unit and header_page (Nigel Croxon) [1455932]
-- [md] raid5-ppl: partial parity calculation optimization (Nigel Croxon) [1455932]
-- [md] raid5-ppl: use resize_stripes() when enabling or disabling ppl (Nigel Croxon) [1455932]
-- [md] raid5: use consistency_policy to remove journal feature (Nigel Croxon) [1455932]
-- [md] raid5-ppl: move no_mem_stripes to struct ppl_conf (Nigel Croxon) [1455932]
-- [md] add raid4/5/6 journal mode switching API (Nigel Croxon) [1455932]
-- [md] raid1: stop using bi_phys_segment (Nigel Croxon) [1455932]
-- [md] raid1, raid10: move rXbio accounting closer to allocation (Nigel Croxon) [1455932]
-- [md] r5cache: disable write back for degraded array (Nigel Croxon) [1455932]
-- [md] revert "fix suspend/write deadlock" (Nigel Croxon) [1455932]
-- [md] revert "fix single core deadlock" (Nigel Croxon) [1455932]
-
-* Fri Nov 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-771.el7]
-- [scsi] megaraid_sas: driver version 07.702.06.00-rh2 (Tomas Henzl) [1506606]
-- [scsi] megaraid_sas: Resize MFA frame used for IOC INIT to 4k (Tomas Henzl) [1506606]
-- [scsi] megaraid_sas: Update current host time to FW during IOC Init (Tomas Henzl) [1506606]
-- [nvme] nvme-fc: remove NVME_FC_MAX_SEGMENTS (Ewan Milne) [1508065]
-- [nvme] nvme-fc: add support for duplicate_connect option (Ewan Milne) [1508065]
-- [nvme] nvme-rdma: add support for duplicate_connect option (Ewan Milne) [1508065]
-- [nvme] nvme-fabrics: fixup "nvme: add helper to compare options to controller" (Ewan Milne) [1508065]
-- [nvme] add helper to compare options to controller (Ewan Milne) [1508065]
-- [nvme] add duplicate_connect option (Ewan Milne) [1508065]
-- [nvme] nvme-fabrics: fixup "nvme: add hostid token to fabric options" (Ewan Milne) [1508065]
-- [nvme] add hostid token to fabric options (Ewan Milne) [1508065]
-- [nvme] nvme-fc: fix backporting error (Ewan Milne) [1508065]
-- [scsi] mpt3sas: Bump mpt3sas driver version to v16.100.00.00 (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Adding support for SAS3616 HBA device (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fix possibility of using invalid Enclosure Handle for SAS device after host reset (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Display chassis slot information of the drive (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Updated MPI headers to v2.00.48 (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fix IO error occurs on pulling out a drive from RAID1 volume created on two SATA drive (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fix removal and addition of vSES device during host reset (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Reduce memory footprint in kdump kernel (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fixed memory leaks in driver (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Processing of Cable Exception events (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: remove redundant copy_from_user in _ctl_getiocinfo (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: fix pr_info message continuation (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fix memory allocation failure test in 'mpt3sas_base_attach()' (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: fix format overflow warning (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Replace PCI pool old API (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: remove redundant wmb (Tomas Henzl) [1458161]
-- [scsi] libfc: fix a deadlock in fc_rport_work (Govindarajulu Varadarajan) [1507105]
-- [scsi] libfc: Fixup disc_mutex handling (Govindarajulu Varadarajan) [1507105]
-- [scsi] fcoe: Stop fc_rport_priv structure leak (Govindarajulu Varadarajan) [1507105]
-- [scsi] libfc: Update rport reference counting (Govindarajulu Varadarajan) [1507105]
-
-* Fri Nov 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-770.el7]
-- [net] ipv6: remove from fib tree aged out RTF_CACHE dst (Paolo Abeni) [1412920]
-- [net] netfilter: allow logging from non-init namespaces (Stefano Brivio) [1506324]
-- [net] openvswitch: add ct_clear action (Eric Garver) [1501415]
-- [net] geneve: Fix function matching VNI and tunnel ID on big-endian (Jakub Sitnicki) [1467288]
-- [net] geneve: maximum value of VNI cannot be used (Jakub Sitnicki) [1467288]
-- [net] geneve: add missing rx stats accounting (Jakub Sitnicki) [1467288]
-- [net] geneve: fix needed_headroom and max_mtu for collect_metadata (Jakub Sitnicki) [1467288]
-- [net] geneve: fix fill_info when using collect_metadata (Jakub Sitnicki) [1467288]
-- [net] geneve: fix incorrect setting of UDP checksum flag (Jakub Sitnicki) [1467288]
-- [net] geneve: lock RCU on TX path (Jakub Sitnicki) [1467288]
-- [net] geneve: fix ip_hdr_len reserved for geneve6 tunnel (Jakub Sitnicki) [1467288]
-- [net] geneve: Optimize geneve device lookup (Jakub Sitnicki) [1467288]
-- [net] geneve: Remove redundant socket checks (Jakub Sitnicki) [1467288]
-- [net] geneve: Merge ipv4 and ipv6 geneve_build_skb() (Jakub Sitnicki) [1467288]
-- [net] geneve: Unify LWT and netdev handling (Jakub Sitnicki) [1467288]
-- [net] geneve: avoid using stale geneve socket (Jakub Sitnicki) [1467288]
-- [net] geneve: use core MTU range checking in core net infra (Jakub Sitnicki) [1467288]
-- [net] devlink: Prevent port_type_set() callback when it's not needed (Ivan Vecera) [1497105]
-- [net] devlink: rename devlink_eswitch_fill to devlink_nl_eswitch_fill (Eelco Chaudron) [1497105]
-- [net] devlink: use nla_put_failure goto label instead of out (Eelco Chaudron) [1497105]
-- [net] devlink: allow to fillup eswitch attrs even if mode_get op does not exist (Eelco Chaudron) [1497105]
-- [net] devlink: fix potential memort leak (Eelco Chaudron) [1497105]
-- [net] devlink: fix return value check in devlink_dpipe_header_put() (Eelco Chaudron) [1497105]
-- [net] devlink: Support for pipeline debug (dpipe) (Eelco Chaudron) [1497105]
-- [net] devlink: Add E-Switch encapsulation control (Eelco Chaudron) [1497105]
-- [net] devlink: fix the name of eswitch commands (Eelco Chaudron) [1497105]
-- [crypto] aesni: add generic gcm(aes) (Sabrina Dubroca) [1493112]
-- [crypto] scatterwalk: Remove unnecessary BUG in scatterwalk_start (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make AVX2 AES-GCM work with all valid auth_tag_len (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make AVX2 AES-GCM work with any aadlen (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make AVX AES-GCM work with all valid auth_tag_len (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make AVX AES-GCM work with any aadlen (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make non-AVX AES-GCM work with all valid auth_tag_len (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make non-AVX AES-GCM work with any aadlen (Sabrina Dubroca) [1493112]
-- [crypto] aesni: fix build on x86 (32bit) (Sabrina Dubroca) [1493112]
-- [crypto] aesni: AVX and AVX2 version of AESNI-GCM encode and decode (Sabrina Dubroca) [1493112]
-- [net] vsock: always call vsock_init_tables() (Stefano Brivio) [1470203]
-- [tools] vsock: add tools/testing/vsock/vsock_diag_test (Stefano Brivio) [1470203]
-- [net] vsock: add sock_diag interface (Stefano Brivio) [1470203]
-- [net] vsock: use TCP state constants for sk_state (Stefano Brivio) [1470203]
-- [net] vsock: move __vsock_in_bound/connected_table() to af_vsock.h (Stefano Brivio) [1470203]
-- [net] vsock: export socket tables for sock_diag interface (Stefano Brivio) [1470203]
-
-* Fri Nov 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-769.el7]
-- [drm] upstream sync to v4.14-rc4 (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [sound] alsa: x86: Register multiple PCM devices for the LPE audio card (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [sound] drm/i915: Clean up the LPE audio platform data (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [sound] drm/i915: Remove hdmi_connected from LPE audio pdata (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [sound] drm/i915: Replace tmds_clock_speed and link_rate with just ls_clock (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [drm] upstream sync to v4.13 (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [kernel] workqueue: Provide destroy_delayed_work_on_stack() (Rob Clark) [1470097]
-- [lib] bitmap: add alignment offset for bitmap_find_next_zero_area() (Rob Clark) [1470097]
-- [x86] platform/intel/iosf_mbi: Add a PMIC bus access notifier (Rob Clark) [1470097]
-- [x86] platform/intel/iosf_mbi: Add a mutex for P-Unit access (Rob Clark) [1470097]
-- [x86] platform/iosf_mbi: Source cleanup (Rob Clark) [1470097]
-- [x86] platform/iosf_mbi: Move to dedicated folder (Rob Clark) [1470097]
-- [x86] platform/intel/iosf: Add debugfs config option for IOSF (Rob Clark) [1470097]
-- [x86] platform/intel/iosf: Add Braswell PCI ID (Rob Clark) [1470097]
-- [x86] iosf: Add debugfs support (Rob Clark) [1470097]
-- [kernel] workqueue: declare system_highpri_wq (Rob Clark) [1470097]
-- [kernel] linux/kernel.h: Add ALIGN_DOWN macro (Rob Clark) [1470097]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <uapi/linux/sched/types.h> (Rob Clark) [1470097]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/clock.h> (Rob Clark) [1470097]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/mm.h> (Rob Clark) [1470097]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/signal.h> (Rob Clark) [1470097]
-- [kernel] pci: Recognize Thunderbolt devices (Rob Clark) [1470097]
-- [kernel] locking/atomic, kref: Add kref_read() (Rob Clark) [1470097]
-- [dma] dma-buf: avoid scheduling on fence status query v2 (Rob Clark) [1478422]
-
-* Thu Nov 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-768.el7]
-- [acpi] ghes: invert logic for enabling GHES (Aristeu Rozanski) [1451916]
-- [edac] Fix PAGES_TO_MiB macro misuse (Aristeu Rozanski) [1451916]
-- [edac] ghes_edac: Remove redundant memory_type array (Aristeu Rozanski) [1451916]
-- [edac] ghes_edac: Use snprintf() to silence a static checker warning (Aristeu Rozanski) [1451916]
-- [x86] x86: kvm: use alternatives for VMCALL vs. VMMCALL if kernel text is read-only (Rafael Aquini) [1048983]
-- [x86] x86: cpufeature: Fix AMD AVIC bit (Rafael Aquini) [1048983]
-- [mm] configs: Enable DEBUG_PAGEALLOC on debug kernels (Waiman Long) [1481847]
-- [mm] s390: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] powerpc: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] x86/mm: Disable 1GB direct mappings when disabling 2MB mappings (Waiman Long) [1481847]
-- [mm] x86: also use debug_pagealloc_enabled() for free_init_pages (Waiman Long) [1481847]
-- [mm] x86: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] x86/mm/pat: Make split_page_count() check for empty levels to fix /proc/meminfo output (Waiman Long) [1481847]
-- [mm] sound: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] vmalloc: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] slub: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] slab: clean up DEBUG_PAGEALLOC processing code (Waiman Long) [1481847]
-- [mm] debug_pagealloc: ask users for default setting of debug_pagealloc (Waiman Long) [1481847]
-- [mm] debug-pagealloc: make debug-pagealloc boottime configurable (Waiman Long) [1481847]
-- [mm] debug-pagealloc: prepare boottime configurable on/off (Waiman Long) [1481847]
-- [mm] page_ext: resurrect struct page extending code for debugging (Waiman Long) [1481847]
-- [mm] debug-pagealloc: cleanup page guard code (Waiman Long) [1481847]
-- [mm] debug-pagealloc: correct freepage accounting and order resetting (Waiman Long) [1481847]
-- [scsi] scsi_dh_alua: Fix memory leak in alua_bus_attach() (Waiman Long) [1448308]
-- [kernel] module: Fix memory leakage of module_ext structure (Waiman Long) [1448308]
-- [kernel] debugobjects: Make kmemleak ignore debug objects (Waiman Long) [1452625 1448308]
-- [kernel] s390/kexec: consolidate crash_map/unmap_reserved_pages() and arch_kexec_protect(unprotect)_crashkres() (Xunlei Pang) [1486982]
-- [kernel] kexec: do a cleanup for function kexec_load (Xunlei Pang) [1486982]
-- [kernel] kexec: make a pair of map/unmap reserved pages in error path (Xunlei Pang) [1486982]
-- [kernel] kexec: provide arch_kexec_protect(unprotect)_crashkres() (Xunlei Pang) [1486982]
-- [kernel] kexec: introduce a protection mechanism for the crashkernel reserved memory (Xunlei Pang) [1486982]
-- [kernel] ptrace: fix wait_on_bit(JOBCTL_TRAPPING_BIT) on big endian machines (Oleg Nesterov) [1481590]
-
-* Thu Nov 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-767.el7]
-- [fs] nfsv4.2: fix size storage for nfs42_proc_copy (Steve Dickson) [1468276]
-- [fs] nfsv4.1: Fix a race where CB_NOTIFY_LOCK fails to wake a waiter (Benjamin Coddington) [1476344]
-- [fs] xfs: Capture state of the right inode in xfs_iflush_done (Carlos Maiolino) [1352385]
-- [fs] xfs: Properly retry failed inode items in case of error during buffer writeback (Carlos Maiolino) [1352385]
-- [fs] xfs: Add infrastructure needed for error propagation during buffer IO failure (Carlos Maiolino) [1352385]
-- [fs] xfs: remove xfs_trans_ail_delete_bulk (Carlos Maiolino) [1352385]
-- [fs] smb3: Work around mount failure when using SMB3 dialect to Macs (Leif Sahlberg) [1506433]
-- [fs] Set unicode flag on cifs echo request to avoid Mac error (Leif Sahlberg) [1506433]
-- [mm] filemap: fix mapping->nrpages double accounting in fuse (Waiman Long) [1493455]
-- [mm] Using BUG_ON() as an assert() is _never_ acceptable (Waiman Long) [1493455]
-- [mm] fix deadlock when using dm-thin on loopback device (Mikulas Patocka) [1382654]
-- [mm] memcg, slab: never try to merge memcg caches (Aristeu Rozanski) [1442618]
-- [x86] boot/kaslr: Work around firmware bugs by excluding EFI_BOOT_SERVICES_* and EFI_LOADER_* from KASLR's choice (Kazuhito Hagio) [1458129]
-- [net] netfilter: x_tables: don't use seqlock when fetching old counters (Florian Westphal) [1503702]
-- [net] netfilter: x_tables: make xt_replace_table wait until old rules are not used anymore (Florian Westphal) [1503702]
-- [edac] edac, skx_edac: Fix non static symbol warnings (Aristeu Rozanski) [1482253]
-- [edac] edac, ie31200: Add Intel Kaby Lake CPU support (Aristeu Rozanski) [1482253]
-- [edac] edac, ie31200_edac: Add Skylake support (Aristeu Rozanski) [1482253]
-- [tools] perf scripting python: Add ppc64le to audit uname list (Gustavo Duarte) [1487498]
-- [sound] alsa: hda: Abort capability probe on invalid capability (Jaroslav Kysela) [1456631]
-- [sound] alsa: hda: Abort capability probe at invalid register read (Jaroslav Kysela) [1456631]
-- [virtio] virtio-balloon: coding format cleanup (David Hildenbrand) [1503473]
-- [virtio] virtio-balloon: deflate via a page list (David Hildenbrand) [1503473]
-- [virtio] virtio_balloon: disable VIOMMU support (David Hildenbrand) [1503473]
-- [virtio] allow drivers to validate features (David Hildenbrand) [1503473]
-- [netdrv] aquantia: Bad udp rate on default interrupt coalescing (David Arcari) [1505539]
-- [netdrv] aquantia: Enable coalescing management via ethtool interface (David Arcari) [1505539]
-- [netdrv] aquantia: mmio unmap was not performed on driver removal (David Arcari) [1505539]
-- [netdrv] aquantia: Fixed transient link up/down/up notification (David Arcari) [1505539]
-- [netdrv] aquantia: Add queue restarts stats counter (David Arcari) [1505539]
-- [netdrv] aquantia: Reset nic statistics on interface up/down (David Arcari) [1505539]
-- [kernel] sched: Move h_load calculation to task_h_load() (Lauro Ramos Venancio) [1460641]
-- [powerpc] mm/hugetlb: Filter out hugepage size not supported by page table layout (Steve Best) [1495748]
-
-* Wed Nov 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-766.el7]
-- [hid] wacom: Always increment hdev refcount within wacom_get_hdev_data (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Clear ABS_MISC when tool leaves proximity (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Send MSC_SERIAL and ABS_MISC when leaving prox (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Correct coordinate system of touchring and pen twist (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Properly report negative values from Intuos Pro 2 Bluetooth (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: leds: Dont try to control the EKRs read-only LEDs (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: bits shifted too much for 9th and 10th buttons (Aristeu Rozanski) [1475409 1462363]
-- [hid] hid_wacom: revert hid_wacom: temporaly disable power_supply usage from driver (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Do not completely map WACOM_HID_WD_TOUCHRINGSTATUS usage (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Improve generic name generation (Aristeu Rozanski) [1475409 1462363]
-- [hid] introduce hid_is_using_ll_driver (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Remove comparison of u8 mode with zero and simplify (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: fix mistake in printk (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Refactor generic battery handling (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Add ability to provide explicit battery status info (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Report AES battery information (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Ignore HID_DG_BATTERYSTRENTH == 0 (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Scale battery capacity measurements to percentages (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Have wacom_tpc_irq guard against possible NULL dereference (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Override incorrect logical maximum contact identifier (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Treat HID_DG_TOOLSERIALNUMBER as unsigned (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Move wacom_remote_irq and wacom_remote_status_irq (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: sync pad events only for actual packets (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Bamboo One Medium does not have touch (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: call _query_tablet_data() for BAMBOO_TOUCH (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Dont add ghost interface as shared data (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Wacom mouse is only provided for opaque tablets (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: dont manually release resources for the EKR (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Correct Intuos Pro 2 resolution (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: support touch on/off softkey (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: add mode change touch key (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: add 3 tablet touch keys (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Bluetooth IRQ for Intuos Pro should handle prox/range (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: dont apply generic settings to old devices (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Fix poor prox handling in wacom_pl_irq (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: support generic touch switch (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: add vendor defined touch (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: add support for touchring (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: remove input_event_flag (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Support 2nd-gen Intuos Pros Bluetooth classic interface (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Move WAC_CMD_* into wacom_wac.h (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Enable HID_GENERIC codepath for Bluetooth devices (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: do not attempt to switch mode while in probe (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: remove warning while disconnecting devices (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: release the resources before leaving despite devm (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Fix sibling detection regression (Aristeu Rozanski) [1475409 1462363]
-- [hid] remove use of DRIVER_LICENSE (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Dont sync input on empty input packets (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Pad supports more than buttons (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Send data only when the interface is defined (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Dont return a value for wacom_wac_event (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Declare tool ID 0x84a as an Intuos eraser (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Dont clear bits unintentionally (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Extend pad support (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for battery status on pen and pad interfaces (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Introduce pad support (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for sensor offsets (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Fix sensor outbounds and redefine as offsets from each edge (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Support tool ID and additional tool types (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Read and internally use corrected Intuos tool IDs (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for vendor-defined "Sense" usage (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for vendor-defined "Fingerwheel" usage (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for vendor-defined "Distance" usage (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Support and use Custom HID mode and usages (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for height, tilt, and twist usages (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Strip off excessive name prefixing (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Detect and correct descriptors missing HID_DG_BARRELSWITCH2 (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Refactor button-to-key translation into function (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Have WACOM_PEN_FIELD and WACOM_FINGER_FIELD recgonize more fields (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Update vendor-defined usage names to better match standards (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: fix return value of get_property (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Fix possible NULL pointer dereference on early uevent (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Fix NULL pointer dereference during bq27x00_battery probe (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Increment power supply use counter when obtaining references (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Add power_supply_put for decrementing device reference counter (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: switch battery to devres (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Change ownership from driver to core (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Add API for safe access of power supply function attrs (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Move run-time configuration to separate structure (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Add driver private data (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Move of_node out of the #ifdef CONFIG_OF (Aristeu Rozanski) [1475409 1462363]
-
-* Tue Oct 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-765.el7]
-- [s390] hwrng: remember rng chosen by user (Hendrik Brueckner) [1375266]
-- [s390] hwrng: use rng source with best quality (Hendrik Brueckner) [1375266]
-- [s390] trng: Introduce s390 TRNG device driver (Hendrik Brueckner) [1375266]
-- [s390] crypto: Provide s390 specific arch random functionality (Hendrik Brueckner) [1375266]
-- [s390] crypto: Add new subfunctions to the cpacf PRNO function (Hendrik Brueckner) [1375266]
-- [s390] crypto: Renaming PPNO to PRNO (Hendrik Brueckner) [1375266]
-- [s390] qeth: use diag26c to get MAC address on L2 (Hendrik Brueckner) [1479463]
-- [s390] diag: add diag26c support (Hendrik Brueckner) [1479463]
-- [s390] qeth: no ETH header for outbound AF_IUCV (Hendrik Brueckner) [1479461]
-- [s390] qeth: size calculation outbound buffers (Hendrik Brueckner) [1479461]
-- [s390] qdio: clear DSCI prior to scanning multiple input queues (Hendrik Brueckner) [1467954]
-- [s390] pageattr: handle numpages parameter correctly (Hendrik Brueckner) [1489742]
-- [s390] pageattr: avoid unnecessary page table splitting (Hendrik Brueckner) [1489742]
-- [s390] add no-execute support (Hendrik Brueckner) [1489742]
-- [s390] mm: align swapper_pg_dir to 16k (Hendrik Brueckner) [1489742]
-- [s390] vmem: simplify vmem code for read-only mappings (Hendrik Brueckner) [1489742]
-- [s390] pageattr: allow kernel page table splitting (Hendrik Brueckner) [1489742]
-- [s390] pgtable: make pmd and pud helper functions available (Hendrik Brueckner) [1489742]
-- [s390] mm: always use PAGE_KERNEL when mapping pages (Hendrik Brueckner) [1489742]
-- [s390] vmem: introduce and use SEGMENT_KERNEL and REGION3_KERNEL (Hendrik Brueckner) [1489742]
-- [s390] vmem: align segment and region tables to 16k (Hendrik Brueckner) [1489742]
-- [s390] pgtable: introduce and use generic csp inline asm (Hendrik Brueckner) [1489742]
-- [s390] pageattr: do a single TLB flush for change_page_attr (Hendrik Brueckner) [1489742]
-- [s390] mm: make use of ipte range facility (Hendrik Brueckner) [1489742]
-- [s390] mm: remove change bit override support (Hendrik Brueckner) [1489742]
-- [s390] mm: implement dirty bits for large segment table entries (Hendrik Brueckner) [1489742]
-- [s390] s390/ptrace: guarded storage regset for the current task (Hendrik Brueckner) [1375261]
-- [s390] s390/gs: add regset for the guarded storage broadcast control block (Hendrik Brueckner) [1375261]
-- [s390] add a system call for guarded storage (Hendrik Brueckner) [1375261]
-- [s390] s390/3270: fix allocation of tty3270_screen structure (Daniel Vacek) [1495587]
-- [s390] s390/3270: fix use after free of tty3270_screen structure (Daniel Vacek) [1495587]
-- [s390] s390/3270: fix return value check in tty3270_resize_work() (Daniel Vacek) [1495587]
-
-* Tue Oct 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-764.el7]
-- [net] netfilter: ipset: pernet ops must be unregistered last (Florian Westphal) [1505215]
-- [net] ipvs: fix ipv6 route unreach panic (Davide Caratti) [1503766]
-- [net] macsec: add genl family module alias (Sabrina Dubroca) [1467335]
-- [net] macsec: double accounting of dropped rx/tx packets (Sabrina Dubroca) [1467335]
-- [net] macsec: fix validation failed in asynchronous operation. (Sabrina Dubroca) [1467335]
-- [net] macsec: remove first zero and add attribute name in comments (Sabrina Dubroca) [1467335]
-- [net] macsec: Fix header length if SCI is added if explicitly disabled (Sabrina Dubroca) [1467335]
-- [net] macsec: use core MTU range checking in core net infra (Sabrina Dubroca) [1467335]
-- [net] macsec: set network devtype (Sabrina Dubroca) [1467335]
-- [net] macsec: enable GRO and RPS on macsec devices (Sabrina Dubroca) [1467335]
-- [net] gro_cells: gro_cells_receive now return error code (Sabrina Dubroca) [1467335]
-- [net] bridge: switchdev: Use an helper to clear forward mark (Ivan Vecera) [1500896]
-- [net] bridge: switchdev: Clear forward mark when transmitting packet (Ivan Vecera) [1500896]
-- [net] bridge: add tracepoint in br_fdb_update (Ivan Vecera) [1500896]
-- [net] bridge: fdb add and delete tracepoints (Ivan Vecera) [1500896]
-- [net] bridge: check for null fdb->dst before notifying switchdev drivers (Ivan Vecera) [1500896]
-- [net] bridge: fix dest lookup when vlan proto doesn't match (Ivan Vecera) [1500896]
-- [net] bridge: mdb: fix leak on complete_info ptr on fail path (Ivan Vecera) [1500896]
-- [net] bridge: allow ext learned entries to change ports (Ivan Vecera) [1500896]
-- [net] bridge: constify attribute_group structures. (Ivan Vecera) [1500896]
-- [net] bridge: Receive notification about successful FDB offload (Ivan Vecera) [1500896]
-- [net] bridge: Add support for notifying devices about FDB add/del (Ivan Vecera) [1500896]
-- [net] switchdev: Change notifier chain to be atomic (Ivan Vecera) [1500896]
-- [net] bridge: Add support for calling FDB external learning under rcu (Ivan Vecera) [1500896]
-- [net] bridge: Add support for offloading port attributes (Ivan Vecera) [1500896]
-- [net] switchdev: Add support for querying supported bridge flags by hardware (Ivan Vecera) [1500896]
-- [net] bridge: fix a null pointer dereference in br_afspec (Ivan Vecera) [1500896]
-- [net] bridge: Export multicast enabled state (Ivan Vecera) [1500896]
-- [net] bridge: Export VLAN filtering state (Ivan Vecera) [1500896]
-- [net] bridge: netlink: account for IFLA_BRPORT_{B, M}CAST_FLOOD size and policy (Ivan Vecera) [1500896]
-- [net] bridge: Fix improper taking over HW learned FDB (Ivan Vecera) [1500896]
-- [net] bridge: add per-port broadcast flood flag (Ivan Vecera) [1500896]
-- [net] bridge: notify on hw fdb takeover (Ivan Vecera) [1500896]
-- [net] bridge: allow to add externally learned entries from user-space (Ivan Vecera) [1500896]
-- [net] bridge: allow SW learn to take over HW fdb entries (Ivan Vecera) [1500896]
-- [net] bridge: resolve a false alarm of lockdep (Ivan Vecera) [1500896]
-- [net] bridge: Fix error path in nbp_vlan_init (Ivan Vecera) [1500896]
-- [net] bridge: don't indicate expiry on NTF_EXT_LEARNED fdb entries (Ivan Vecera) [1500896]
-- [net] bridge: vlan_tunnel: explicitly reset metadata attrs to NULL on failure (Ivan Vecera) [1500896]
-- [net] bridge: fdb: converge fdb_delete_by functions into one (Ivan Vecera) [1500896]
-- [net] bridge: fdb: add proper lock checks in searching functions (Ivan Vecera) [1500896]
-- [net] bridge: fdb: converge fdb searching functions into one (Ivan Vecera) [1500896]
-- [net] switchdev: bridge: Offload mc router ports (Ivan Vecera) [1500896]
-- [net] bridge: mcast: Merge the mc router ports deletions to one function (Ivan Vecera) [1500896]
-- [net] switchdev: bridge: Offload multicast disabled (Ivan Vecera) [1500896]
-- [net] bridge: vlan tunnel id info range fill size calc cleanups (Ivan Vecera) [1500896]
-- [net] bridge: avoid unnecessary read of jiffies (Ivan Vecera) [1500896]
-- [net] bridge: remove unnecessary check for vtbegin in br_fill_vlan_tinfo_range (Ivan Vecera) [1500896]
-- [net] bridge: tunnel: fix attribute checks in br_parse_vlan_tunnel_info (Ivan Vecera) [1500896]
-- [net] bridge: remove redundant check to see if err is set (Ivan Vecera) [1500896]
-- [net] bridge: fdb: write to used and updated at most once per jiffy (Ivan Vecera) [1500896]
-- [net] bridge: move write-heavy fdb members in their own cache line (Ivan Vecera) [1500896]
-- [net] bridge: move to workqueue gc (Ivan Vecera) [1500896]
-- [net] bridge: modify bridge and port to have often accessed fields in one cache line (Ivan Vecera) [1500896]
-- [net] bridge: vlan dst_metadata hooks in ingress and egress paths (Ivan Vecera) [1500896]
-- [net] bridge: per vlan dst_metadata netlink support (Ivan Vecera) [1500896]
-- [net] bridge: uapi: add per vlan tunnel info (Ivan Vecera) [1500896]
-- [net] bridge: move maybe_deliver_addr() inside #ifdef (Ivan Vecera) [1500896]
-- [net] bridge: multicast to unicast (Ivan Vecera) [1500896]
-- [net] bridge: sparse fixes in br_ip6_multicast_alloc_query() (Ivan Vecera) [1500896]
-- [net] bridge: Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Ivan Vecera) [1500896]
-- [net] bridge: shorten ageing time on topology change (Ivan Vecera) [1500896]
-- [net] bridge: add helper to set topology change (Ivan Vecera) [1500896]
-- [net] bridge: add helper to offload ageing time (Ivan Vecera) [1500896]
-- [net] bridge: mcast: add MLDv2 querier support (Ivan Vecera) [1500896]
-- [net] bridge: mcast: add IGMPv3 query support (Ivan Vecera) [1500896]
-- [net] switchdev: Remove redundant variable (Ivan Vecera) [1500896]
-- [net] bridge: use core MTU range checking in core net infra (Ivan Vecera) [1500896]
-- [net] netfilter: nf_tables: set pktinfo->thoff at AH header if found (Stefano Brivio) [1358624]
-- [net] nf_log: Report attempt to load conflicting logger (Stefano Brivio) [1349358]
-- [net] arp: fixed -Wuninitialized compiler warning (Eric Garver) [1450205]
-- [net] arp: always override existing neigh entries with gratuitous ARP (Eric Garver) [1450205]
-- [net] arp: postpone addr_type calculation to as late as possible (Eric Garver) [1450205]
-- [net] arp: decompose is_garp logic into a separate function (Eric Garver) [1450205]
-- [net] arp: fixed error in a comment (Eric Garver) [1450205]
-- [net] neighbour: update neigh timestamps iff update is effective (Eric Garver) [1450205]
-- [net] arp: honour gratuitous ARP _replies_ (Eric Garver) [1450205]
-- [net] ipv4: arp: update neighbour address when a gratuitous arp is received and arp_accept is set (Eric Garver) [1450205]
-- [net] vxlan: factor out VXLAN-GPE next protocol (Jiri Benc) [1467280]
-- [net] ether: add NSH ethertype (Jiri Benc) [1467280]
-- [net] vxlan: fix remcsum when GRO on and CHECKSUM_PARTIAL boundary is outer UDP (Jiri Benc) [1467280]
-- [net] geneve/vxlan: offload ports on register/unregister events (Jiri Benc) [1308630 1467280]
-- [net] geneve/vxlan: add support for NETDEV_UDP_TUNNEL_DROP_INFO (Jiri Benc) [1308630 1467280]
-- [net] call udp_tunnel_get_rx_info when NETIF_F_RX_UDP_TUNNEL_PORT is toggled (Jiri Benc) [1308630 1467280]
-- [net] add infrastructure to un-offload UDP tunnel port (Jiri Benc) [1308630 1467280]
-- [net] check UDP tunnel RX port offload feature before calling tunnel ndo ndo (Jiri Benc) [1308630 1467280]
-- [net] add new netdevice feature for offload of RX port for UDP tunnels (Jiri Benc) [1308630 1467280]
-- [net] vxlan: correctly set vxlan->net when creating the device in a netns (Jiri Benc) [1467280]
-- [net] vxlan: fix incorrect nlattr access in MTU check (Jiri Benc) [1467280]
-- [net] vxlan: allow multiple VXLANs with same VNI for IPv6 link-local addresses (Jiri Benc) [1467280]
-- [net] vxlan: fix snooping for link-local IPv6 addresses (Jiri Benc) [1467280]
-- [net] vxlan: check valid combinations of address scopes (Jiri Benc) [1467280]
-- [net] vxlan: improve validation of address family configuration (Jiri Benc) [1467280]
-- [net] vxlan: get rid of redundant vxlan_dev.flags (Jiri Benc) [1467280]
-- [net] vxlan: refactor verification and application of configuration (Jiri Benc) [1467280]
-- [net] vxlan: dont migrate permanent fdb entries during learn (Jiri Benc) [1467280]
-- [net] vxlan: use a more suitable function when assigning NULL (Jiri Benc) [1467280]
-- [net] vxlan: fix ND proxy when skb doesn't have transport header offset (Jiri Benc) [1467280]
-- [net] vxlan: vxlan dev should inherit lowerdev's gso_max_size (Jiri Benc) [1467280]
-- [net] vxlan: don't age NTF_EXT_LEARNED fdb entries (Jiri Benc) [1467280]
-- [net] vxlan: fix ovs support (Jiri Benc) [1467280]
-- [net] vxlan: use appropriate family on L3 miss (Jiri Benc) [1467280]
-- [net] vxlan: lock RCU on TX path (Jiri Benc) [1467280]
-- [net] vxlan: don't allow overwrite of config src addr (Jiri Benc) [1467280]
-- [net] vxlan: correctly validate VXLAN ID against VXLAN_N_VID (Jiri Benc) [1467280]
-- [net] vxlan: remove unused variable saddr in neigh_reduce (Jiri Benc) [1467280]
-- [net] vxlan: add changelink support (Jiri Benc) [1467280]
-- [net] vxlan: remove vni zero check and drop for COLLECT_METADATA (Jiri Benc) [1467280]
-- [net] vxlan: support fdb and learning in COLLECT_METADATA mode (Jiri Benc) [1467280]
-- [net] ip_tunnels: new IP_TUNNEL_INFO_BRIDGE flag for ip_tunnel_info mode (Jiri Benc) [1467280]
-- [net] vxlan: do not age static remote mac entries (Jiri Benc) [1467280]
-- [net] vxlan: don't flush static fdb entries on admin down (Jiri Benc) [1467280]
-- [net] vxlan: preserve type of dst_port parm for encap_bypass_if_local() (Jiri Benc) [1467280]
-- [net] vxlan: fix byte order of vxlan-gpe port number (Jiri Benc) [1467280]
-- [net] vxlan: Set ports in flow key when doing route lookups (Jiri Benc) [1467280]
-- [net] vxlan: fix a potential issue when create a new vxlan fdb entry (Jiri Benc) [1467280]
-- [net] vxlan: Fix uninitialized variable warnings (Jiri Benc) [1467280]
-- [net] vxlan: remove unsed vxlan_dev_dst_port() (Jiri Benc) [1467280]
-- [net] vxlan: simplify vxlan xmit (Jiri Benc) [1467280]
-- [net] vxlan: simplify RTF_LOCAL handling (Jiri Benc) [1467280]
-- [net] vxlan: improve vxlan route lookup checks (Jiri Benc) [1467280]
-- [net] vxlan: simplify exception handling (Jiri Benc) [1467280]
-- [net] vxlan: avoid checking socket multiple times (Jiri Benc) [1467280]
-- [net] vxlan: avoid vlan processing in vxlan device (Jiri Benc) [1467280]
-- [net] vxlan: hide unused local variable (Jiri Benc) [1467280]
-- [net] vxlan: avoid using stale vxlan socket (Jiri Benc) [1467280]
-- [net] vxlan: use core MTU range checking in core net infra (Jiri Benc) [1467280]
-- [net] vxlan: Update tx_errors statistics if vxlan_build_skb return err (Jiri Benc) [1467280]
-- [net] vxlan: call peernet2id() in fdb notification (Jiri Benc) [1467280]
-- [net] vxlan: remove the useless header file protocol.h (Jiri Benc) [1467280]
-- [net] vxlan: lwt: Fix vxlan local traffic (Jiri Benc) [1467280]
-- [net] vxlan: lwt: Use source ip address during route lookup (Jiri Benc) [1467280]
-- [net] fixup comments after "Future-proof tunnel offload handlers" (Jiri Benc) [1467280]
-- [net] vxlan/geneve: Remove deprecated tunnel specific UDP offload functions (Jiri Benc) [1467280]
-- [netdrv] fm10k: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Jiri Benc) [1467280]
-- [net] ipv6: fix net.ipv6.conf.all.accept_dad behaviour for real (Matteo Croce) [1334439]
-- [net] ipv6: fix net.ipv6.conf.all interface DAD handlers (Matteo Croce) [1334439]
-- [net] ipv6: addrconf: Fix recursive spin lock call (Matteo Croce) [1334439]
-- [net] ipv6: Add a sysctl to make optimistic addresses useful candidates (Matteo Croce) [1334439]
-
-* Mon Oct 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-763.el7]
-- [hid] i2c-hid: Limit reads to wMaxInputLength bytes for input events (Benjamin Tissoires) [1452237]
-- [hid] multitouch: do not blindly set EV_KEY or EV_ABS bits (Benjamin Tissoires) [1452237]
-- [hid] multitouch: optimize the sticky fingers timer (Benjamin Tissoires) [1452237]
-- [hid] multitouch: fix rare Win 8 cases when the touch up event gets missing (Benjamin Tissoires) [1452237]
-- [hid] multitouch: use BIT macro (Benjamin Tissoires) [1452237]
-- [hid] multitouch: Support PTP Stick and Touchpad device (Benjamin Tissoires) [1452237]
-- [hid] multitouch: change for touch height/width (Benjamin Tissoires) [1452237]
-- [hid] multitouch: fix LG Melfas touchscreen (Benjamin Tissoires) [1452237]
-- [hid] multitouch: do not retrieve all reports for all devices (Benjamin Tissoires) [1452237]
-- [hid] multitouch: handle external buttons for Precision Touchpads (Benjamin Tissoires) [1452237]
-- [hid] multitouch: enable palm rejection for Windows Precision Touchpad (Benjamin Tissoires) [1452237]
-- [hid] input: automatically set EV_ABS bit in input_set_abs_params (Benjamin Tissoires) [1452237]
-- [hid] revert "hid: multitouch: enable palm rejection if device implements confidence usage" (Benjamin Tissoires) [1452237]
-- [hid] multitouch: Add MT_QUIRK_NOT_SEEN_MEANS_UP to Surface Pro 3 (Benjamin Tissoires) [1452237]
-- [hid] alps: fix multitouch cursor issue (Benjamin Tissoires) [1489630]
-- [hid] alps: fix error return code in alps_input_configured() (Benjamin Tissoires) [1489630]
-- [hid] alps: fix stick device not working after resume (Benjamin Tissoires) [1489630]
-- [hid] alps: Fix memory leak (Benjamin Tissoires) [1489630]
-- [hid] alps: a few cleanups (Benjamin Tissoires) [1489630]
-- [hid] alps: pass correct sizes to hid_hw_raw_request() (Benjamin Tissoires) [1489630]
-- [hid] alps: struct u1_dev *priv is internal to the driver (Benjamin Tissoires) [1489630]
-- [hid] alps: match alps devices in core (Benjamin Tissoires) [1489630]
-- [hid] add Alps I2C HID Touchpad-Stick support (Benjamin Tissoires) [1489630]
-- [hid] i2c: Call acpi_device_fix_up_power for ACPI-enumerated devices (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: move header file out of I2C realm (Benjamin Tissoires) [1452237 1489630]
-- [hid] remove initial reading of reports at connect (Benjamin Tissoires) [1411429]
-- [hid] i2c-hid: Add sleep between POWER ON and RESET (Benjamin Tissoires) [1452237 1489630]
-- [hid] fix missing irq field (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: fix build (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Disable IRQ before freeing buffers (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: force the IRQ level trigger only when not set (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: add a simple quirk to fix device defects (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: set power sleep before shutdown (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c_hid: enable i2c-hid devices to suspend/resume asynchronously (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: fix OOB write in i2c_hid_set_or_send_report() (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Add hid-over-i2c name to i2c id table (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Prevent sending reports from racing with device reset (Benjamin Tissoires) [1452237 1489630]
-- [hid] Drop owner assignment from i2c_driver (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Fill in physical device providing HID functionality (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Do not set the ACPI companion field in the HID device (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: fix harmless test_bit() issue (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: The interrupt should be level sensitive (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Do not free buffers in i2c_hid_stop() (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: prevent buffer overflow in early IRQ (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: fix race condition reading reports (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: print the correct data in dbg msg (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: hid report descriptor retrieval changes (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: don't push static constants on stack for *ph (Benjamin Tissoires) [1452237 1489630]
-- [hid] acpi / i2c-hid: replace open-coded _DSM code with helper functions (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Stop querying for init reports (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: convert acpi_evaluate_object() to acpi_evaluate_integer() (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: use correct type for ACPI _DSM parameter (Benjamin Tissoires) [1452237 1489630]
-
-* Mon Oct 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-762.el7]
-- [x86] perf/x86/msr: Merge fixes (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Add missing Intel models (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Use Intel family macros for MSR events code (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Fix SMI overflow (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Add AMD PTSC (Performance Time-Stamp Counter) support (Jiri Olsa) [1457458]
-- [x86] perf/x86: Move perf_event_msr.c .............. => x86/events/msr.c (Jiri Olsa) [1457458]
-- [x86] arch/x86/kernel/cpu/perf_event_msr.c: use sign_extend64() for sign extension (Jiri Olsa) [1457458]
-- [x86] perf/x86: Change test_aperfmperf() and test_intel() to static (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Fix the MSR driver build (Jiri Olsa) [1457458]
-- [x86] perf/x86: Fix MSR PMU driver (Jiri Olsa) [1457458]
-- [x86] perf/x86: Add an MSR PMU driver (Jiri Olsa) [1457458]
-- [x86] perf stat: Add support to measure SMI cost (Jiri Olsa) [1457458]
-- [x86] tools lib api fs: Add sysfs__write_int function (Jiri Olsa) [1457458]
-- [x86] perf/x86: Add sysfs entry to freeze counters on SMI (Jiri Olsa) [1457458]
-- [tools] perf tests attr: Make hw events optional (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix group stat tests (Jiri Olsa) [1308907]
-- [tools] perf test attr: Fix ignored test case result (Jiri Olsa) [1308907]
-- [tools] perf test attr: Fix python error on empty result (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix task term values (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Add optional term (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix stat sample_type setup (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix precise_ip setup (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix sample_period setup (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix cpu test disabled term setup (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Add proper return values (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix no-delay test (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix record dwarf test (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Add 1s for exclude_kernel and task base bits (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Rename compare_data to data_equal (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Make compare_data global (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Add test_attr__ready function (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Do not store failed events (Jiri Olsa) [1308907]
-- [tools] perf tests: Add platform dependency to test 15 (Jiri Olsa) [1308907]
-
-* Mon Oct 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-761.el7]
-- [block] fix warning when I/O elevator is changed as request_queue is being removed (Ming Lei) [1492441]
-- [block] warn if sharing request queue across gendisks (Ming Lei) [1492441]
-- [block] move .issue_stat from request to request_aux (Ming Lei) [1458104]
-- [block] disable blk-stat (Ming Lei) [1458104]
-- [block] blk-mq: use rq_aux()->internal_tag (Ming Lei) [1458104]
-- [block] blk-mq: introduce request_aux (Ming Lei) [1458104]
-- [block] blk-tag: don't touch .internal_tag (Ming Lei) [1458104]
-- [block] configs: add CONFIG_BLK_DEBUG_FS (Ming Lei) [1458104]
-- [block] configs: add CONFIG_MQ_IOSCHED_KYBER (Ming Lei) [1458104]
-- [block] configs: add CONFIG_MQ_IOSCHED_DEADLINE (Ming Lei) [1458104]
-- [block] blk-mq-sched: mark_tech_preview on mq-deadline and kyber (Ming Lei) [1458104]
-- [block] blk-mq: fix another kabi warning (Ming Lei) [1458104]
-- [block] blk-mq: fix kabi warning (Ming Lei) [1458104]
-- [block] avoid to break kabi for blk-mq io scheduler backporting (Ming Lei) [1458104]
-- [block] call elevator callback via aux->ops (Ming Lei) [1458104]
-- [block] kyber: pass mq callback to aux->ops.mq (Ming Lei) [1458104]
-- [block] mq-deadline: pass mq callback to aux->ops.mq (Ming Lei) [1458104]
-- [block] cfq: pass new callback to aux->ops.sq (Ming Lei) [1458104]
-- [block] introduce elevator_type_aux for fixing kabi violation (Ming Lei) [1458104]
-- [block] blk-mq: use RH_KABI_EXTEND for sched_data and sched_tags (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: remove poll_stat (Ming Lei) [1458104]
-- [block] scsi_error: fix nasty allocating request on stack (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: fix device sched directory for default scheduler (Ming Lei) [1458104]
-- [block] mq-deadline: add debugfs attributes (Ming Lei) [1458104]
-- [block] kyber: add debugfs attributes (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: allow schedulers to register debugfs attributes (Ming Lei) [1458104]
-- [block] blk-mq: untangle debugfs and sysfs (Ming Lei) [1458104]
-- [block] blk-mq: move debugfs declarations to a separate header file (Ming Lei) [1458104]
-- [block] blk-mq: Do not invoke queue operations on a dead queue (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: get rid of a bunch of boilerplate (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: rename hw queue directories from <n> to hctx<n> (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: don't open code strstrip() (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: error on long write to queue "state" file (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: clean up flag definitions (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: separate flags with | (Ming Lei) [1458104]
-- [block] blk-mq: Show operation, cmd_flags and rq_flags names (Ming Lei) [1458104]
-- [block] blk-mq: Make blk_flags_show() callers append a newline character (Ming Lei) [1458104]
-- [block] blk-mq: Move the "state" debugfs attribute one level down (Ming Lei) [1458104]
-- [block] blk-mq: Unregister debugfs attributes earlier (Ming Lei) [1458104]
-- [block] blk-mq: Only unregister hctxs for which registration succeeded (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: Rename functions for registering and unregistering the mq directory (Ming Lei) [1458104]
-- [block] blk-mq: Let blk_mq_debugfs_register() look up the queue name (Ming Lei) [1458104]
-- [block] blk-mq: Register <dev>/queue/mq after having registered <dev>/queue (Ming Lei) [1458104]
-- [block] blk-mq: register device instead of disk (Ming Lei) [1458104]
-- [block] blk-mq: Show symbolic names for hctx state and flags (Ming Lei) [1458104]
-- [block] blk-mq: Export queue state through /sys/kernel/debug/block/*/state (Ming Lei) [1458104]
-- [block] mq-deadline: Enable auto-loading when built as module (Ming Lei) [1458104]
-- [block] add code to track actual device queue depth (Ming Lei) [1458104]
-- [block] blk-mq: merge bio into sw queue before plugging (Ming Lei) [1458104 1154525]
-- [block] blk-mq: ensure that bd->last is always set correctly (Ming Lei) [1458104]
-- [block] blk-mq: fix performance regression with shared tags (Ming Lei) [1458104]
-- [block] blk-mq: Restart a single queue if tag sets are shared (Ming Lei) [1458104]
-- [block] blk-mq: Make it safe to use RCU to iterate over blk_mq_tag_set.tag_list (Ming Lei) [1458104]
-- [block] mtip32xx: avoid to read HOST_CAP from HW in .queue_rq() (Ming Lei) [1458104]
-- [block] blk-mq-sched: fix performance regression of mq-deadline (Ming Lei) [1458104]
-- [block] blk-stat: convert blk-stat bucket callback to signed (Ming Lei) [1458104]
-- [block] blk-mq: introduce Kyber multiqueue I/O scheduler (Ming Lei) [1458104]
-- [block] blk-mq-sched: make completed_request() callback more useful (Ming Lei) [1458104]
-- [block] blk-mq: export helpers (Ming Lei) [1458104]
-- [block] blk-mq: add shallow depth option for blk_mq_get_tag() (Ming Lei) [1458104]
-- [block] sbitmap: add sbitmap_get_shallow() operation (Ming Lei) [1458104]
-- [block] scsi: add new scsi-command flag for tagged commands (Ming Lei) [1458104]
-- [block] blk-mq: fix leak of q->stats (Ming Lei) [1458104]
-- [block] fix stacked driver stats init and free (Ming Lei) [1458104]
-- [block] blk-stat: convert to callback-based statistics reporting (Ming Lei) [1458104]
-- [block] blk-stat: move BLK_RQ_STAT_BATCH definition to blk-stat.c (Ming Lei) [1458104]
-- [block] blk-stat: use READ and WRITE instead of BLK_STAT_{READ, WRITE} (Ming Lei) [1458104]
-- [block] blk-stat: fix blk_stat_sum() if all samples are batched (Ming Lei) [1458104]
-- [block] blk-mq: move debugfs_remove() of disk dir to blk_release_queue() (Ming Lei) [1458104]
-- [block] use same block debugfs directory for blk-mq and blktrace (Ming Lei) [1458104]
-- [block] blktrace: make do_blk_trace_setup() static (Ming Lei) [1458104]
-- [block] fix debugfs config conditional in struct request_queue (Ming Lei) [1458104]
-- [block] blk-mq-debug: Introduce debugfs_create_files() (Ming Lei) [1458104]
-- [block] blk-mq-debug: Make show() operations interruptible (Ming Lei) [1458104]
-- [block] blk-mq-debug: Avoid that sparse complains about req_flags_t usage (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: Add missing __acquires() / __releases() annotations (Ming Lei) [1458104]
-- [block] blk-mq: fix debugfs compilation issues (Ming Lei) [1458104]
-- [block] blk-mq: move hctx and ctx counters from sysfs to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: move hctx io_poll, stats, and dispatched from sysfs to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: add tags and sched_tags bitmaps to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: move tags and sched_tags info from sysfs to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: export software queue pending map to debugfs (Ming Lei) [1458104]
-- [block] sbitmap: add helpers for dumping to a seq_file (Ming Lei) [1458104]
-- [block] blk-mq: add extra request information to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: move hctx->dispatch and ctx->rq_list from sysfs to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: add hctx->{state,flags} to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: create debugfs directory tree (Ming Lei) [1458104]
-- [block] blk-stat: fix a few cases of missing batch flushing (Ming Lei) [1458104]
-- [block] blk-stat: fix a typo (Ming Lei) [1458104]
-- [block] add scalable completion tracking of requests (Ming Lei) [1458104]
-- [block] mtip32xx: convert internal command issue to block IO path (Ming Lei) [1458104]
-- [block] mtip32xx: abstract out "are any commands active" helper (Ming Lei) [1458104]
-- [block] mtip32xx: kill atomic argument to mtip_quiesce_io() (Ming Lei) [1458104]
-- [block] mtip32xx: get rid of 'atomic' argument to mtip_exec_internal_command() (Ming Lei) [1458104]
-- [block] mtip32xx: use runtime tag to initialize command header (Ming Lei) [1458104]
-- [block] blk-mq: fix direct issue (Ming Lei) [1458104]
-- [block] blk-mq: pass correct hctx to blk_mq_try_issue_directly (Ming Lei) [1458104]
-- [block] get rid of blk-mq default scheduler choice Kconfig entries (Ming Lei) [1458104]
-- [block] blk-mq: Fix preempt count imbalance (Ming Lei) [1458104]
-- [block] blk-mq: fix schedule-while-atomic with scheduler attached (Ming Lei) [1458104]
-- [block] blk-mq: use true instead of 1 for blk_mq_queue_data.last (Ming Lei) [1458104]
-- [block] blk-mq: make driver tag failure path easier to follow (Ming Lei) [1458104]
-- [block] blk-mq-sched: provide hooks for initializing hardware queue data (Ming Lei) [1458104]
-- [block] blk-mq-sched: separate mark hctx and queue restart operations (Ming Lei) [1458104]
-- [block] blk-mq: use sbq wait queues instead of restart for driver tags (Ming Lei) [1458104]
-- [block] blk-mq: fix schedule-under-preempt for blocking drivers (Ming Lei) [1458104]
-- [block] block-mq: don't re-queue if we get a queue error (Ming Lei) [1458104]
-- [block] blk-mq: streamline blk_mq_make_request (Ming Lei) [1458104]
-- [block] blk-mq: split the plug and sync cases in blk_mq_make_request (Ming Lei) [1458104]
-- [block] blk-mq: improve blk_mq_try_issue_directly (Ming Lei) [1458104]
-- [block] blk-mq: merge mq and sq make_request instances (Ming Lei) [1458104]
-- [block] deal with stale req count of plug list (Ming Lei) [1458104]
-- [block] blk-mq: remove BLK_MQ_F_DEFER_ISSUE (Ming Lei) [1458104]
-- [block] blk-mq: immediately dispatch big size request (Ming Lei) [1458104]
-- [block] immediately dispatch big size request (Ming Lei) [1458104]
-- [block] blk-mq: remap queues when adding/removing hardware queues (Ming Lei) [1458104]
-- [block] blk-mq-sched: fix crash in switch error path (Ming Lei) [1458104]
-- [block] blk-mq-sched: set up scheduler tags when bringing up new queues (Ming Lei) [1458104]
-- [block] blk-mq-sched: refactor scheduler initialization (Ming Lei) [1458104]
-- [block] blk-mq: use the right hctx when getting a driver tag fails (Ming Lei) [1458104]
-- [block] blk-mq: errors in did_work calculation (Ming Lei) [1458104]
-- [block] do not put mq context in blk_mq_alloc_request_hctx (Ming Lei) [1458104]
-- [block] blk-mq-sched: don't run the queue async from blk_mq_try_issue_directly() (Ming Lei) [1458104]
-- [block] blk-mq: move update of tags->rqs to __blk_mq_alloc_request() (Ming Lei) [1458104]
-- [block] blk-mq: kill blk_mq_set_alloc_data() (Ming Lei) [1458104]
-- [block] blk-mq: make blk_mq_alloc_request_hctx() allocate a scheduler request (Ming Lei) [1458104]
-- [block] blk-mq-sched: Allocate sched reserved tags as specified in the original queue tagset (Ming Lei) [1458104]
-- [block] don't defer flushes on blk-mq + scheduling (Ming Lei) [1458104]
-- [block] blk-mq-sched: ask scheduler for work, if we failed dispatching leftovers (Ming Lei) [1458104]
-- [block] blk-mq: don't special case flush inserts for blk-mq-sched (Ming Lei) [1458104]
-- [block] blk-mq-sched: don't add flushes to the head of requeue queue (Ming Lei) [1458104]
-- [block] blk-mq: have blk_mq_dispatch_rq_list() return if we queued IO or not (Ming Lei) [1458104]
-- [block] do not allow updates through sysfs until registration completes (Ming Lei) [1458104]
-- [block] blk-mq-sched: don't hold queue_lock when calling exit_icq (Ming Lei) [1458104]
-- [block] set make_request_fn manually in blk_mq_update_nr_hw_queues (Ming Lei) [1458104]
-- [block] blk-mq: pass bio to blk_mq_sched_get_rq_priv (Ming Lei) [1458104]
-- [block] move req_set_nomerge to blk.h (Ming Lei) [1458104]
-- [block] factor out req_set_nomerge (Ming Lei) [1458104]
-- [block] blk-mq-sched: (un)register elevator when (un)registering queue (Ming Lei) [1458104]
-- [block] free merged request in the caller (Ming Lei) [1458104]
-- [block] blk-mq-sched: bypass the scheduler for flushes entirely (Ming Lei) [1458104]
-- [block] blk-merge: return the merged request (Ming Lei) [1458104]
-- [block] elevator: fix loading wrong elevator type for blk-mq devices (Ming Lei) [1458104]
-- [block] blk-mq: don't fail allocating driver tag for stopped hw queue (Ming Lei) [1458104]
-- [block] blk-mq-sched: add flush insertion into blk_mq_sched_insert_request() (Ming Lei) [1458104]
-- [block] blk-mq-sched: change ->dispatch_requests() to ->dispatch_request() (Ming Lei) [1458104]
-- [block] blk-mq-sched: fix starvation for multiple hardware queues and shared tags (Ming Lei) [1458104]
-- [block] blk-mq: release driver tag on a requeue event (Ming Lei) [1458104]
-- [block] blk-mq: fix potential race in queue restart and driver tag allocation (Ming Lei) [1458104]
-- [block] blk-mq: improve scheduler queue sync/async running (Ming Lei) [1458104]
-- [block] blk-mq-sched: check for successful allocation before assigning tag (Ming Lei) [1458104]
-- [block] blk-mq: don't lose flags passed in to blk_mq_alloc_request() (Ming Lei) [1458104]
-- [block] blk-mq: only apply active queue tag throttling for driver tags (Ming Lei) [1458104]
-- [block] blk-mq: allow resize of scheduler requests (Ming Lei) [1458104]
-- [block] blk-mq: stop hardware queue in blk_mq_delay_queue() (Ming Lei) [1458104]
-- [block] blk-mq-tag: remove redundant check for 'data->hctx' being non-NULL (Ming Lei) [1458104]
-- [block] elevator: fix unnecessary put of elevator in failure case (Ming Lei) [1458104]
-- [block] blk-cgroup: don't quiesce the queue on policy activate/deactivate (Ming Lei) [1458104]
-- [block] sbitmap: fix wakeup hang after sbq resize (Ming Lei) [1458104]
-- [block] sbitmap: use smp_mb__after_atomic() in sbq_wake_up() (Ming Lei) [1458104]
-- [block] blk-cgroup: ensure that we clear the stop bit on quiesced queues (Ming Lei) [1458104]
-- [block] blk-mq-sched: allow setting of default IO scheduler (Ming Lei) [1458104]
-- [block] mq-deadline: add blk-mq adaptation of the deadline IO scheduler (Ming Lei) [1458104]
-- [block] blk-mq-sched: add framework for MQ capable IO schedulers (Ming Lei) [1458104]
-- [block] blk-mq: split tag ->rqs[] into two (Ming Lei) [1458104]
-- [block] blk-mq: abstract out helpers for allocating/freeing tag maps (Ming Lei) [1458104]
-- [block] blk-mq-tag: cleanup the normal/reserved tag allocation (Ming Lei) [1458104]
-- [block] blk-mq: export some helpers we need to the scheduling framework (Ming Lei) [1458104]
-- [block] blk-mq: un-export blk_mq_free_hctx_request() (Ming Lei) [1458104]
-- [block] move rq_ioc() to blk.h (Ming Lei) [1458104]
-- [block] move existing elevator ops to union (Ming Lei) [1458104]
-- [block] blk-flush: run the queue when inserting blk-mq flush (Ming Lei) [1458104]
-- [block] elevator: make the rqhash helpers exported (Ming Lei) [1458104]
-- [block] blk-mq: abstract out blk_mq_dispatch_rq_list() helper (Ming Lei) [1458104]
-- [block] cfq-iosched: fix the setting of IOPS mode on SSDs (Ming Lei) [1458104]
-- [block] Make CFQ default to IOPS mode on SSDs (Ming Lei) [1458104]
-- [block] do not merge requests without consulting with io scheduler (Ming Lei) [1458104]
-- [block] blk-mq: get rid of confusing blk_map_ctx structure (Ming Lei) [1458104]
-- [block] blk-mq: remove non-blocking pass in blk_mq_map_request (Ming Lei) [1458104]
-- [block] blk-mq: get rid of manual run of queue with __blk_mq_run_hw_queue() (Ming Lei) [1458104]
-- [block] sbitmap: initialize weight to zero (Ming Lei) [1458104]
-- [block] sbitmap: don't update the allocation hint on clear after resize (Ming Lei) [1458104]
-- [block] sbitmap: re-initialize allocation hints after resize (Ming Lei) [1458104]
-- [block] sbitmap: randomize initial alloc_hint values (Ming Lei) [1458104]
-- [block] sbitmap: push alloc policy into sbitmap_queue (Ming Lei) [1458104]
-- [block] sbitmap: push per-cpu last_tag into sbitmap_queue (Ming Lei) [1458104]
-- [block] sbitmap: allocate wait queues on a specific node (Ming Lei) [1458104]
-- [block] blk-mq: abstract tag allocation out into sbitmap library (Ming Lei) [1458104]
-- [block] blk-mq: add tag allocation policy (Ming Lei) [1458104]
-- [block] support different tag allocation policy (Ming Lei) [1458104]
-- [block] revert "blk-mq-tag: fix wakeup hang after tag resize" (Ming Lei) [1458104]
-
-* Fri Oct 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-760.el7]
-- [scsi] fnic: do not call host reset from command abort (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: fix format string overflow warning (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: changing queue command to return result DID_IMM_RETRY when rport is init (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: correct speed display and add support for 25, 40 and 100G (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: added timestamp reporting in fnic debug stats (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Zero io_cmpl_skip on fw reset completion (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Adding debug IO and Abort latency counter to fnic stats (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Adding Check Condition counter to misc fnicstats (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Avoid false out-of-order detection for aborted command (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Fix for "Number of Active IOs" in fnicstats becoming negative (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: minor cleanup in fnic_fcpio_itmf_cmpl_handler, removing else case (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Ratelimit printks to avoid flooding when vlan is not set by the switch.i (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: switch to pci_alloc_irq_vectors (Govindarajulu Varadarajan) [1448553]
-- [nvme] nvme-fabrics: Convert nvmf_transports_mutex to an rwsem (Ewan Milne) [1503181]
-- [nvme] nvme-fc: retry initial controller connections 3 times (Ewan Milne) [1503181]
-- [nvme] nvme-fc: fix iowait hang (Ewan Milne) [1503181]
-- [nvme] nvmet: synchronize sqhd update (Ewan Milne) [1503181]
-- [nvme] nvme-fc: correct io timeout behavior (Ewan Milne) [1503181]
-- [nvme] nvme-fc: correct io termination handling (Ewan Milne) [1503181]
-- [nvme] nvme-fc: move remote port get/put/free location (Ewan Milne) [1503181]
-- [nvme] nvme-fc: create fc class and transport device (Ewan Milne) [1503181]
-- [nvme] nvme-fc: add uevent for auto-connect (Ewan Milne) [1503181]
-- [nvme] nvmet: bump NVMET_NR_QUEUES to 128 (Ewan Milne) [1503181]
-- [nvme] nvme-fcloop: fix port deletes and callbacks (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: sync header templates with comments (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: ensure target queue id within range (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: on port remove call put outside lock (Ewan Milne) [1503181]
-- [nvme] fix sqhd reference when admin queue connect fails (Ewan Milne) [1503181]
-- [nvme] nvmet: implement valid sqhd values in completions (Ewan Milne) [1503181]
-- [nvme] allow timed-out ios to retry (Ewan Milne) [1503181]
-- [nvme] stop aer posting if controller state not live (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: fix failing max io queue connections (Ewan Milne) [1503181]
-- [nvme] nvme-fc: use transport-specific sgl format (Ewan Milne) [1503181]
-- [nvme] nvme: add transport SGL definitions (Ewan Milne) [1503181]
-- [nvme] remove FC transport-specific error values (Ewan Milne) [1503181]
-- [scsi] qla2xxx: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [scsi] lpfc: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [nvme] nvmet-fcloop: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [nvme] nvme-fc: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: simplify sg list handling (Ewan Milne) [1503181]
-- [nvme] nvme-fc: Reattach to localports on re-registration (Ewan Milne) [1503181]
-- [nvme] nvmet-fcloop: remove ALL_OPTS define (Ewan Milne) [1503181]
-- [scsi] sd: Implement blacklist option for WRITE SAME w/ UNMAP (Ewan Milne) [1462594]
-
-* Thu Oct 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-759.el7]
-- [x86] dumpstack: Remove raw stack dump (Scott Wood) [1479560]
-- [x86] kvm: hyperv: fix locking of struct kvm_hv fields (Ladi Prosek) [1504524]
-- [x86] kvm: document lock orders (Ladi Prosek) [1504524]
-- [x86] kvm: x86: Hyper-V tsc page setup (Ladi Prosek) [1504524]
-- [x86] kvm: x86: always fill in vcpu->arch.hv_clock (Ladi Prosek) [1504524]
-- [x86] kvm/x86: Hyper-V internal helper to read MSR HV_X64_MSR_TIME_REF_COUNT (Ladi Prosek) [1504524]
-- [x86] mm: add page_cache_get_speculative() protection when .flush_tlb_others is overridden (Vitaly Kuznetsov) [1465471]
-- [x86] mm: add IPIs to pmdp_invalidate() when .flush_tlb_others is overridden (Vitaly Kuznetsov) [1465471]
-- [x86] hyperv: Fix hypercalls with extended CPU ranges for TLB flushing (Vitaly Kuznetsov) [1465471]
-- [x86] hyperv: Don't use percpu areas for pcpu_flush/pcpu_flush_ex structures (Vitaly Kuznetsov) [1465471]
-- [x86] hyperv: Clear vCPU banks between calls to avoid flushing unneeded vCPUs (Vitaly Kuznetsov) [1465471]
-- [x86] tracing/hyper-v: Trace hyperv_mmu_flush_tlb_others() (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Support extended CPU ranges for TLB flush hypercalls (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Use hypercall for remote TLB flush (Vitaly Kuznetsov) [1465471]
-- [x86] mm: Enable RCU based page table freeing (CONFIG_HAVE_RCU_TABLE_FREE=y) (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Globalize vp_index (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Implement rep hypercalls (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Use fast hypercall for HVCALL_SIGNAL_EVENT (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Introduce fast hypercall implementation (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Make hv_do_hypercall() inline (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Include hyperv/ only when CONFIG_HYPERV is set (Vitaly Kuznetsov) [1465471]
-- [x86] hv: Issue explicit EOI when autoeoi is not enabled (Vitaly Kuznetsov) [1465471]
-- [x86] hyperv: fix warning about missing prototype (Vitaly Kuznetsov) [1465471]
-- [x86] vmbus: remove no longer used signal_policy (Vitaly Kuznetsov) [1465471]
-- [x86] kvm/x86: Rename Hyper-V long spin wait hypercall (Vitaly Kuznetsov) [1465471]
-- [x86] hv: Move VMBus hypercall codes into Hyper-V UAPI header (Vitaly Kuznetsov) [1465471]
-
-* Thu Oct 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-758.el7]
-- [pinctrl] intel: Add Intel Gemini Lake pin controller support (Steve Best) [1457198]
-- [char] Do not disable driver and bus shutdown hook when class shutdown hook is set (Jerry Snitselaar) [1500155]
-- [char] tpm: Issue a TPM2_Shutdown for TPM2 devices (Jerry Snitselaar) [1500155]
-- [drivers] Add "shutdown" to "struct class" (Jerry Snitselaar) [1500155]
-- [kernel] rh_taint: Add management approval to documentation (Prarit Bhargava) [1505972]
-- [kernel] cgroup: kill css_id (Aristeu Rozanski) [1470325]
-- [mm] memcontrol: fix cgroup creation failure after many small jobs (Aristeu Rozanski) [1470325]
-- [mm] memcg: fix thresholds for 32b architectures (Waiman Long) [1487852]
-- [mm] hmm: synchronize hmm with upstream (Jerome Glisse) [1470733]
-- [nvme] revert "kick requeue list when requeueing a request instead of when starting the queues" (David Milburn) [1504584]
-- [nvme] nvmet: preserve controller serial number between reboots (David Milburn) [1480179]
-- [nvme] fix uninitialized prp2 value on small transfers (David Milburn) [1493707]
-- [netdrv] tun: add device name(iff) field to proc fdinfo entry (John Linville) [1503209]
-- [netdrv] tg3: use setup_timer() helper (Jonathan Toppins) [1459662]
-- [netdrv] tg3: clean up redundant initialization of tnapi (Jonathan Toppins) [1459662]
-- [netdrv] tg3: Be drop monitor friendly (Jonathan Toppins) [1459662]
-- [netdrv] tg3: Add the ability to conditionally build w/ HWMON (Jonathan Toppins) [1459662]
-- [netdrv] enic: use setup_timer() helper (Stefan Assmann) [1448560]
-- [netdrv] enic: use setup_timer() helper (Stefan Assmann) [1448560]
-- [netdrv] cisco: enic: Fic an error handling path in 'vnic_dev_init_devcmd2()' (Stefan Assmann) [1448560]
-- [netdrv] enic: Fix format truncation warning (Stefan Assmann) [1448560]
-- [netdrv] enic: unmask intr only when napi is complete (Stefan Assmann) [1448560]
-- [security] selinux: Generalize support for NNP/nosuid SELinux domain transitions (Paul Moore) [1480521]
-- [security] selinux: allow per-file labeling for cgroupfs (Paul Moore) [1429573]
-- [security] selinux: wrap cgroup seclabel support with its own policy capability (Paul Moore) [1429573]
-- [security] selinux: allow changing labels for cgroupfs (Paul Moore) [1429573]
-- [security] selinux: renumber the superblock options (Paul Moore) [1429573]
-- [security] selinux: rename SE_SBLABELSUPP to SBLABEL_MNT (Paul Moore) [1429573]
-
-* Wed Oct 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-757.el7]
-- [bluetooth] Add support for Intel Bluetooth device 9460/9560 [8087:0aaa] (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add protocol check to hci_uart_tx_wakeup() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add protocol check to hci_uart_dequeue() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add protocol check to hci_uart_send_frame() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add missing clear HCI_UART_PROTO_READY (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Ensure hu->hdev set to NULL before freeing hdev (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add missing return in hci_uart_init_work() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_uart: remove unused hci_uart_init_tty (Gopal Tiwari) [1457085]
-- [bluetooth] hci_uart: add support for word alignment (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: remove unnecessary wakeup interrupt number sanity check (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: disable platform wakeup interrupt in suspend failure path (Gopal Tiwari) [1457085]
-- [bluetooth] hci_intel: add missing tty-device sanity check (Gopal Tiwari) [1457085]
-- [bluetooth] hci_bcm: add missing tty-device sanity check (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: cleanup code in return from btmrvl_sdio_suspend() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_bcm: Support platform enumeration (Gopal Tiwari) [1457085]
-- [bluetooth] btrtl: Change message for missing config file (Gopal Tiwari) [1457085]
-- [bluetooth] Added support for Rivet Networks Killer 1535 (Gopal Tiwari) [1457085]
-- [bluetooth] hci_intel: Add support Intel Bluetooth device 9160/9260 for UART (Gopal Tiwari) [1457085]
-- [bluetooth] hci_intel: Fix firmware file name to use hw_variant (Gopal Tiwari) [1457085]
-- [bluetooth] btusb: Add support for Intel Bluetooth devices 9160/9260 [8087:0025] (Gopal Tiwari) [1457085]
-- [bluetooth] Use switch statement for Intel hardware variants (Gopal Tiwari) [1457085]
-- [bluetooth] bluecard: use setup_timer (Gopal Tiwari) [1457085]
-- [bluetooth] hci_bcm: Fix clock (un)prepare (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: fix spelling mistake: "unregester" -> "unregister" (Gopal Tiwari) [1457085]
-- [bluetooth] btqcomsmd: fix compile-test dependency (Gopal Tiwari) [1457085]
-- [bluetooth] hci_qca: fix spelling mistake: "Spurrious" -> "Spurious" (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: fix spelling mistake: "caibration" -> "calibration" (Gopal Tiwari) [1457085]
-- [bluetooth] btqcomsmd: Allow driver to build if COMPILE_TEST is enabled (Gopal Tiwari) [1457085]
-- [bluetooth] Add another AR3012 04ca:3018 device (Gopal Tiwari) [1457085]
-- [bluetooth] hci_bcm: Add support for BCM2E95 and BCM2E96 (Gopal Tiwari) [1457085]
-- [bluetooth] btbcm: Add a delay for module reset (Gopal Tiwari) [1457085]
-- [bluetooth] btusb: Add support for 413c:8143 (Gopal Tiwari) [1457085]
-- [bluetooth] btusb: Use an error label for error paths (Gopal Tiwari) [1457085]
-- [bluetooth] btqcomsmd: Fix module autoload (Gopal Tiwari) [1457085]
-- [bluetooth] btusb: add support for 0bb4:0306 (Gopal Tiwari) [1457085]
-
-* Wed Oct 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-756.el7]
-- [md] dm ioctl: fix alignment of event number in the device list (Mike Snitzer) [1475380]
-- [md] dm raid: fix incorrect status output at the end of a "recover" process (Mike Snitzer) [1492250]
-- [md] dm ioctl: constify ioctl lookup table (Mike Snitzer) [1492250]
-- [md] dm: constify argument arrays (Mike Snitzer) [1492250]
-- [md] dm rq: do not update rq partially in each ending bio (Mike Snitzer) [1492250]
-- [md] dm rq: make dm-sq requeuing behavior consistent with dm-mq behavior (Mike Snitzer) [1492250]
-- [md] dm mpath: do not lock up a CPU with requeuing activity (Mike Snitzer) [1492250]
-- [md] dm raid: avoid mddev->suspended access (Mike Snitzer) [1492250]
-- [md] dm raid: fix activation check in validate_raid_redundancy() (Mike Snitzer) [1492250]
-- [md] dm raid: remove WARN_ON() in raid10_md_layout_to_format() (Mike Snitzer) [1492250]
-- [md] dm raid: stop using BUG() in __rdev_sectors() (Mike Snitzer) [1492250]
-- [md] dm: fix printk() rate limiting code (Mike Snitzer) [1492250]
-- [md] dm: convert DM printk macros to pr_<level> macros (Mike Snitzer) [1492250]
-- [md] dm bio prison: use rb_entry() rather than container_of() (Mike Snitzer) [1492250]
-- [md] dm ioctl: report event number in DM_LIST_DEVICES (Mike Snitzer) [1475380]
-- [md] dm ioctl: add a new DM_DEV_ARM_POLL ioctl (Mike Snitzer) [1475380]
-- [md] dm: add basic support for using the select or poll function (Mike Snitzer) [1475380]
-- [md] dm thin: do not queue freed thin mapping for next stage processing (Mike Snitzer) [1492250]
-- [md] dm bufio: make the parameter 'retain_bytes' unsigned long (Mike Snitzer) [1492250]
-- [md] dm bufio: check new buffer allocation watermark every 30 seconds (Mike Snitzer) [1492250]
-- [md] dm bufio: avoid a possible ABBA deadlock (Mike Snitzer) [1492250]
-- [md] dm mpath: make it easier to detect unintended I_O request flushes (Mike Snitzer) [1492250]
-- [md] dm mpath: cleanup QUEUE_IF_NO_PATH bit manipulation by introducing assign_bit() (Mike Snitzer) [1492250]
-- [md] dm mpath: micro-optimize the hot path relative to MPATHF_QUEUE_IF_NO_PATH (Mike Snitzer) [1492250]
-- [md] dm: introduce enum dm_queue_mode to cleanup related code (Mike Snitzer) [1492250]
-- [md] dm mpath: verify __pg_init_all_paths locking assumptions at runtime (Mike Snitzer) [1492250]
-- [md] dm: verify suspend_locking assumptions at runtime (Mike Snitzer) [1492250]
-- [md] dm rq: check blk_mq_register_dev() return value in dm_mq_init_request_queue() (Mike Snitzer) [1492250]
-- [md] dm mpath: delay requeuing while path initialization is in progress (Mike Snitzer) [1492250]
-- [md] dm mpath: avoid that path removal can trigger an infinite loop (Mike Snitzer) [1492250]
-- [md] dm mpath: split and rename activate_path() to prepare for its expanded use (Mike Snitzer) [1492250]
-- [md] dm ioctl: prevent stack leak in dm ioctl call (Mike Snitzer) [1492250]
-- [md] dm ioctl: remove double parentheses (Mike Snitzer) [1492250]
-- [md] dm: remove dummy dm_table definition (Mike Snitzer) [1492250]
-- [md] dm table: replace while loops with for loops (Mike Snitzer) [1492250]
-- [md] dm raid: select the Kconfig option CONFIG_MD_RAID0 (Mike Snitzer) [1492250]
-- [md] dm crypt: replace custom implementation of hex2bin() (Mike Snitzer) [1492250]
-- [md] dm crypt: remove obsolete references to per-CPU state (Mike Snitzer) [1492250]
-- [md] dm crypt: use WQ_HIGHPRI for the IO and crypt workqueues (Mike Snitzer) [1492250]
-- [md] dm block manager: remove an unused argument from dm_block_manager_create() (Mike Snitzer) [1492250]
-
-* Wed Oct 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-755.el7]
-- [net] udp: fix bcast packet reception (Paolo Abeni) [1493238]
-- [net] udp: perform source validation for mcast early demux (Paolo Abeni) [1493238]
-- [net] ipv4: early demux can return an error code (Paolo Abeni) [1493238]
-- [net] ipv6: expose RFC4191 route preference via rtnetlink (Hangbin Liu) [1500463]
-- [net] check type when freeing metadata dst (Paolo Abeni) [1497116]
-- [net] store port/representator id in metadata_dst (Paolo Abeni) [1497116]
-- [net] tcp: avoid fragmenting peculiar skbs in SACK (Hangbin Liu) [1499039]
-- [net] handle NAPI_GRO_FREE_STOLEN_HEAD case also in napi_frags_finish() (Hangbin Liu) [1469357]
-- [net] Drop secpath on free after gro merge (Hangbin Liu) [1469357]
-- [net] adjust skb->truesize in ___pskb_trim() (Hangbin Liu) [1469357]
-- [net] tcp: do not underestimate skb->truesize in tcp_trim_head() (Hangbin Liu) [1469357]
-- [net] skb_condense() can also deal with empty skbs (Hangbin Liu) [1469357]
-- [net] udp: under rx pressure, try to condense skbs (Hangbin Liu) [1469357]
-- [drm] i915: Revert "don't rcu-sync from shrinker" (Waiman Long) [1488956]
-- [kernel] cpu/hotplug: Disable prove_locking for cpu_hotplug.mutex (Waiman Long) [1488956]
-- [kernel] rcu: Eliminate deadlock between CPU hotplug and expedited grace periods (Waiman Long) [1488956]
-- [powerpc] kvm: ppc: book3s hv: Prevent double-free on HPT resize commit path (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Advertise availablity of HPT resizing on KVM HV (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: KVM-HV HPT resizing implementation (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Outline of KVM-HV HPT resizing implementation (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Create kvmppc_unmap_hpte_helper() (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Allow KVM_PPC_ALLOCATE_HTAB ioctl() to change HPT size (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Split HPT allocation from activation (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Don't store values derivable from HPT order (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Gather HPT related variables into sub-structure (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Rename kvm_alloc_hpt() for clarity (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: HPT resizing documentation and reserved numbers (David Gibson) [1305400]
-
-* Wed Oct 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-754.el7]
-- [x86] kvm: mmu: fix permission_fault() (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: use ept a/d in vmcs02 iff used in vmcs12 (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: fix AD condition when handling EPT violation (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Don't use INVVPID when EPT is enabled (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: allow A/D bits to be disabled in an mmu (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: make spte mmio mask more explicit (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: dead code thanks to access tracking (Paolo Bonzini) [1469685]
-- [x86] mmu: don't pass *kvm to spte_write_protect and spte_*_dirty (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: fix EPT permissions as reported in exit qualification (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: off by one in vmx_write_pml_buffer() (Paolo Bonzini) [1469685]
-- [x86] nvmx: Advertise PML to L1 hypervisor (Paolo Bonzini) [1469685]
-- [x86] nvmx: Implement emulated Page Modification Logging (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: Add a hook for arch specific dirty logging emulation (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: support EPT accessed/dirty bits (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: MMU support for EPT accessed/dirty bits (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: remove bogus check for invalid EPT violation (Paolo Bonzini) [1469685]
-- [x86] vmx: refine validity check for guest linear address (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Verify that restored PTE has needed perms in fast page fault (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Move pgtbl walk inside retry loop in fast_page_fault (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Update comment in mark_spte_for_access_track (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Set SPTE_SPECIAL_MASK within mmu.c (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Rename EPT_VIOLATION_READ/WRITE/INSTR constants (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Lockless access tracking for Intel CPUs without EPT A bits (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Do not use bit 63 for tracking special SPTEs (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Introduce a no-tracking version of mmu_spte_update (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: Fix typos (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Refactor accessed/dirty checks in mmu_spte_update/clear (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Fast Page Fault path retries (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Use symbolic constants for EPT Violation Exit Qualifications (Paolo Bonzini) [1469685]
-- [x86] kvm: hyperv: support HV_X64_MSR_TSC_FREQUENCY and HV_X64_MSR_APIC_FREQUENCY (Paolo Bonzini) [1469685]
-- [x86] kvm/x86: Hyper-V HV_X64_MSR_VP_RUNTIME support (Paolo Bonzini) [1469685]
-- [x86] kvm/x86: Hyper-V HV_X64_MSR_VP_INDEX export for QEMU (Paolo Bonzini) [1469685]
-- [x86] kvm/x86: Hyper-V HV_X64_MSR_RESET msr (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: speedup update_permission_bitmask (Paolo Bonzini) [1469685]
-- [x86] doc: add "an user" pattern and fix typo instances (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Correct a VMX instruction error code for VMPTRLD (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Don't validate disabled secondary controls (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Shadow "high" parts of shadowed 64-bit VMCS fields (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Check memory operand to INVVPID (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Raise #UD on unsupported RDSEED (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Raise #UD on unsupported RDRAND (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: cache secondary exec controls (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: use general helpers for some cpuid manipulation (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: generalize guest_cpuid_has_ helpers (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: X86_FEATURE_NRIPS is not scattered anymore (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: allow host to access guest MSR_IA32_BNDCFGS (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Check value written to IA32_BNDCFGS (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: Guest BNDCFGS requires guest MPX support (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: INVPCID support (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: don't flush VMCS12 during VMXOFF or VCPU teardown (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: do not pin the VMCS12 (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Refactor handle_vmptrld() (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: mark vmcs12 pages dirty on L2 exit (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix interrupt window request with "Acknowledge interrupt on exit" (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: support RDRAND and RDSEED exiting (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: add missing exit reasons (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix posted intr delivery when vcpu is in guest mode (Paolo Bonzini) [1469685]
-- [x86] irq: Define a global vector for nested posted interrupts (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: vmx_complete_nested_posted_interrupt() can't fail (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: kmap() can't fail (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: remove unused field (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix loss of L2's NMI blocking state (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: track NMI blocking state separately for each VMCS (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Fix invalid guest state detection after task-switch emulation (Paolo Bonzini) [1469685]
-- [x86] kvm: async_pf: avoid async pf injection when in guest mode (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: we support 1GB EPT pages (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: keep preemption timer enabled during L2 execution (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: introduce vm_{entry, exit}_control_reset_shadow (Paolo Bonzini) [1469685]
-- [x86] revert "kvm: nested vmx: disable perf cpuid reporting" (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix exception injection (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Don't enable EPT A/D feature if EPT feature is disabled (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: fix nested EPT detection (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Fix enable VPID conditions (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix nested VPID vmx exec control (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: reset nested_run_pending if the vCPU is going to be reset (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix pending events injection (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: do not warn when MSR bitmap address is not backed (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: advertise support for ept execute only (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: track read permission explicitly for shadow EPT page tables (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: don't set the present bit unconditionally (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: remove is_present_gpte() (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: extend the is_present check to 32 bits (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Consolidate BUG_ON checks for reverse-mapped sptes (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Remove is_rmap_spte() and use is_shadow_present_pte() (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Rename spte_is_locklessly_modifiable() (Paolo Bonzini) [1469685]
-
-* Tue Oct 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-753.el7]
-- [scsi] be2iscsi: Update driver version (Chris Leech) [1457833]
-- [scsi] be2iscsi: Remove A-circumflex character in copyright marking (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix misc static analysis errors (Chris Leech) [1457833]
-- [scsi] be2iscsi: Add cmd to set host data (Chris Leech) [1457833]
-- [scsi] be2iscsi: Modify IOCTL to fetch user configured IQN (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix _get_initname buffer overflow (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix _modify_eq_delay buffer overflow (Chris Leech) [1457833]
-- [scsi] be2iscsi: Free msi_name and disable HW intr (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix return value in mgmt_open_connection (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix boot flags in sysfs (Chris Leech) [1457833]
-- [scsi] be2iscsi: Replace PCI pool old API (Chris Leech) [1457833]
-- [scsi] be2iscsi: switch to pci_alloc_irq_vectors (Chris Leech) [1457833]
-- [scsi] be2iscsi: Update driver version (Chris Leech) [1457833]
-- [scsi] be2iscsi: Update Copyright (Chris Leech) [1457833]
-- [scsi] be2iscsi: Check size before copying ASYNC handle (Chris Leech) [1457833]
-- [scsi] be2iscsi: Remove free_list for ASYNC handles (Chris Leech) [1457833]
-- [scsi] be2iscsi: Use num_cons field in Rx CQE (Chris Leech) [1457833]
-- [scsi] be2iscsi: Increase HDQ default queue size (Chris Leech) [1457833]
-- [scsi] qla2xxx: Update driver version to 10.00.00.02.07.5-k (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Query FC4 type during RSCN processing (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Use ql2xnvmeenable to enable Q-Pair for FC-NVMe (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Changes to support N2N logins (Chad Dupuis) [1316281]
-- [scsi] qla2xxx: Allow MBC_GET_PORT_DATABASE to query and save the port states (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add ATIO-Q processing for INTx mode (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add module param ql2xenablemsix (Chad Dupuis) [1316281]
-- [scsi] qla2xxx: Update driver version to 10.00.00.00.07.5-k (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Move #include qla_nvme.h to fix compile errors on RHEL 7 (Chad Dupuis) [1316281]
-- [scsi] qla2xxx: Allow SCSI-MQ to be enabled selectively (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Reset the logo flag, after target re-login (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add LR distance support from nvram bit (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add support for minimum link speed (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Clear fc4f_nvme flag (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: add missing includes for qla_isr (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Fix WWPN/WWNN in debug message (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add command completion for error path (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Fix remoteport disconnect for FC-NVMe (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Simpify unregistration of FC-NVMe local/remote ports (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Added change to enable ZIO for FC-NVMe devices (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Move function prototype to correct header (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Cleanup FC-NVMe code (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Fix NVMe entry_type for iocb packet on BE system (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: avoid unused-function warning (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: fix a bunch of typos and spelling mistakes (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Use FC-NVMe FC4 type for FDMI registration (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Send FC4 type NVMe to the management server (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add FC-NVMe F/W initialization and transport registration (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add FC-NVMe command handling (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add FC-NVMe port discovery and PRLI handling (Himanshu Madhani) [1316281]
-- [target] iscsi-target: Set session_fall_back_to_erl0 when forcing reinstatement (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Always wait for kthread_should_stop() before kthread exit (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Fix initial login PDU asynchronous socket close OOPs (Maurizio Lombardi) [1366062]
-- [target] target/iscsi: Fix indentation in iscsi_target_start_negotiation() (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Fix early sk_data_ready LOGIN_FLAGS_READY race (Maurizio Lombardi) [1366062]
-- [target] Fix missing complete during ABORT_TASK + CMD_T_FABRIC_STOP (Maurizio Lombardi) [1366062]
-- [target] target/iscsi: Fix double free in lio_target_tiqn_addtpg() (Maurizio Lombardi) [1366062]
-- [target] Fix race between iscsi-target connection shutdown + ABORT_TASK (Maurizio Lombardi) [1366062]
-- [target] Fix missing complete during ABORT_TASK + CMD_T_FABRIC_STOP (Maurizio Lombardi) [1366062]
-- [target] configfs: make configfs compatible with new API (Maurizio Lombardi) [1366062]
-- [target] allow ALUA setup for some passthrough backends (Maurizio Lombardi) [1366062]
-- [target] tcmu: Allow cmd_time_out to be set to zero (disabled) (Maurizio Lombardi) [1366062]
-- [target] target/user: PGR Support (Maurizio Lombardi) [1366062]
-- [target] tcmu: Convert cmd_time_out into backend device attribute (Maurizio Lombardi) [1366062]
-- [target] export lio pgr/alua support as device attr (Maurizio Lombardi) [1366062]
-- [target] add a new add_wwn_groups fabrics method (Maurizio Lombardi) [1366062]
-- [target] initialize the nacl base CIT begfore init_nodeacl (Maurizio Lombardi) [1366062]
-- [target] remove ->fabric_cleanup_nodeacl (Maurizio Lombardi) [1366062]
-- [target] ib_srpt: Convert acl lookup to modern get_initiator_node_acl usage (Maurizio Lombardi) [1366062]
-- [target] configfs: switch ->default groups to a linked list (Maurizio Lombardi) [1366062]
-- [target] Fix target_release_cmd_kref shutdown comp leak (Maurizio Lombardi) [1366062]
-- [target] Avoid DataIN transfers for non-GOOD SAM status (Maurizio Lombardi) [1366062]
-- [target] Remove enum transport_lunflags_table (Maurizio Lombardi) [1366062]
-- [target] target/iblock: pass WRITE_SAME to device if possible (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: Convert to TARGET_SCF_ACK_KREF I/O + TMR krefs (Maurizio Lombardi) [1366062]
-- [target] sbp-target: Convert to TARGET_SCF_ACK_KREF I/O krefs (Maurizio Lombardi) [1366062]
-- [target] sbp-target: Conversion to percpu_ida tag pre-allocation (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: Convert to target_alloc_session usage (Maurizio Lombardi) [1366062]
-- [target] Convert demo-mode only drivers to target_alloc_session (Maurizio Lombardi) [1366062]
-- [target] Add target_alloc_session() helper function (Maurizio Lombardi) [1366062]
-- [target] Drop incorrect ABORT_TASK put for completed commands (Maurizio Lombardi) [1366062]
-- [target] target/transport: add flag to indicate CPU Affinity is observed (Maurizio Lombardi) [1366062]
-- [target] Fix incorrect unmap_zeroes_data_store return (Maurizio Lombardi) [1366062]
-- [target] Drop legacy se_cmd->task_stop_comp + REQUEST_STOP usage (Maurizio Lombardi) [1366062]
-- [target] Fix race with SCF_SEND_DELAYED_TAS handling (Maurizio Lombardi) [1366062]
-- [target] Fix remote-port TMR ABORT + se_cmd fabric stop (Maurizio Lombardi) [1366062]
-- [target] Fix TAS handling for multi-session se_node_acls (Maurizio Lombardi) [1366062]
-- [target] Fix LUN_RESET active TMR descriptor handling (Maurizio Lombardi) [1366062]
-- [target] Fix LUN_RESET active I/O handling for ACK_KREF (Maurizio Lombardi) [1366062]
-- [target] Fix WRITE_SAME/DISCARD conversion to linux 512b sectors (Maurizio Lombardi) [1366062]
-- [target] Obtain se_node_acl->acl_kref during get_initiator_node_acl (Maurizio Lombardi) [1366062]
-- [target] Convert ACL change queue_depth se_session reference usage (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Fix potential dead-lock during node acl delete (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: Convert acl lookup to modern get_initiator_node_acl usage (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: Wait for command completion before freeing a session (Maurizio Lombardi) [1366062]
-- [target] Fix a memory leak in target_dev_lba_map_store() (Maurizio Lombardi) [1366062]
-- [target] Support aborting tasks with a 64-bit tag (Maurizio Lombardi) [1366062]
-- [target] Remove an unused variable (Maurizio Lombardi) [1366062]
-- [target] Fix indentation in target_core_configfs.c (Maurizio Lombardi) [1366062]
-- [target] target/fcoe: Add tag support to tcm_fc (Maurizio Lombardi) [1366062]
-- [target] qla2xxx: Add selective command queuing (Maurizio Lombardi) [1366062]
-- [target] use offset_in_page macro (Maurizio Lombardi) [1366062]
-- [target] fix deprecated attribute names in dmesg (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Add LBPRZ attribute + control CDB emulation (Maurizio Lombardi) [1366062]
-- [target] sbp-target: Remove a superfluous forward declaration (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Fix indentation + spelling + unreachable code (Maurizio Lombardi) [1366062]
-- [target] Fix spelling + remove set-but-not-used variables (Maurizio Lombardi) [1366062]
-- [kernel] configfs: Drop unused parameter from configfs_undepend_item() (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: Show address of tpg in configfs (Maurizio Lombardi) [1366062]
-- [target] fix COMPARE_AND_WRITE non zero SGL offset data corruption (Maurizio Lombardi) [1366062]
-- [target] Invoke release_cmd() callback without holding a spinlock (Maurizio Lombardi) [1366062]
-- [target] Fix race for SCF_COMPARE_AND_WRITE_POST checking (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: return -ENOMEM instead of -1 in case of failed kmalloc() (Maurizio Lombardi) [1366062]
-- [target] use per-attribute show and store methods (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Avoid OFMarker + IFMarker negotiation (Maurizio Lombardi) [1366062]
-- [target] Make TCM_WRITE_PROTECT failure honor D_SENSE bit (Maurizio Lombardi) [1366062]
-- [target] Fix target_sense_desc_format NULL pointer dereference (Maurizio Lombardi) [1366062]
-- [target] Propigate backend read-only to core_tpg_add_lun (Maurizio Lombardi) [1366062]
-- [target] Fix PR registration + APTPL RCU conversion regression (Maurizio Lombardi) [1366062]
-- [target] Remove no-op conditional (Maurizio Lombardi) [1366062]
-- [target] Fix max_cmd_sn increment w/o cmdsn mutex regressions (Maurizio Lombardi) [1366062]
-- [target] Attach EXTENDED_COPY local I/O descriptors to xcopy_pt_sess (Maurizio Lombardi) [1366062]
-- [target] target/qla2xxx: Honor max_data_sg_nents I/O transfer limit (Maurizio Lombardi) [1366062]
-- [target] Drop iSCSI use of mutex around max_cmd_sn increment (Maurizio Lombardi) [1366062]
-- [target] Drop unlikely before IS_ERR(_OR_NULL) (Maurizio Lombardi) [1366062]
-- [target] Shrink struct se_cmd by rearranging fields (Maurizio Lombardi) [1366062]
-- [target] Remove cmd->se_ordered_id (unused except debug log lines) (Maurizio Lombardi) [1366062]
-- [target] add support for START_STOP_UNIT SCSI opcode (Maurizio Lombardi) [1366062]
-- [target] improve unsupported opcode message (Maurizio Lombardi) [1366062]
-- [target] allow underflow/overflow for PR OUT etc. commands (Maurizio Lombardi) [1366062]
-- [target] remove initiatorname field in se_acl_lun (Maurizio Lombardi) [1366062]
-- [target] remove unused lun_flags field from se_lun (Maurizio Lombardi) [1366062]
-- [target] Return descriptor format sense data in case the LU spans 64bit sectors (Maurizio Lombardi) [1366062]
-- [target] Return ABORTED_COMMAND sense key for PI errors (Maurizio Lombardi) [1366062]
-- [target] Split transport_send_check_condition_and_sense() (Maurizio Lombardi) [1366062]
-- [target] Inline transport_get_sense_codes() (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: Send I_T_NEXUS_LOSS_OCCURRED UA (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: Remove SAS vestigies (Maurizio Lombardi) [1366062]
-- [target] target/rd: always chain S/G list (Maurizio Lombardi) [1366062]
-- [target] Fix handling of small allocation lengths in REPORT LUNS (Maurizio Lombardi) [1366062]
-- [target] REPORT LUNS should return LUN 0 even for dynamic ACLs (Maurizio Lombardi) [1366062]
-- [target] target/iscsi: Fix double free of a TUR followed by a solicited NOPOUT (Maurizio Lombardi) [1366062]
-- [target] Perform RCU callback barrier before backend/fabric unload (Maurizio Lombardi) [1366062]
-- [target] target/configfs: handle match_int() errors (Maurizio Lombardi) [1366062]
-- [target] Do not return 0 from aptpl and alua configfs store functions (Maurizio Lombardi) [1366062]
-- [target] Indicate success if writing 0 to pi_prot_type (Maurizio Lombardi) [1366062]
-- [target] target/rd: Set ramdisk as non rotational device (Maurizio Lombardi) [1366062]
-- [target] Add extra TYPE_DISK + protection checks for INQUIRY SPT (Maurizio Lombardi) [1366062]
-- [target] target/spc: Set SPT correctly in Extended INQUIRY Data VPD page (Maurizio Lombardi) [1366062]
-- [target] target/pr: Fix possible uninitialized variable usage (Maurizio Lombardi) [1366062]
-- [target] Bump core version to v5.0 (Maurizio Lombardi) [1366062]
-- [target] remove target_core_configfs.h (Maurizio Lombardi) [1366062]
-- [target] remove unused TARGET_CORE_CONFIG_ROOT define (Maurizio Lombardi) [1366062]
-- [target] consolidate version defines (Maurizio Lombardi) [1366062]
-- [target] implement WRITE_SAME with UNMAP bit using ->execute_unmap (Maurizio Lombardi) [1366062]
-- [target] simplify UNMAP handling (Maurizio Lombardi) [1366062]
-- [target] replace se_cmd->execute_rw with a protocol_data field (Maurizio Lombardi) [1366062]
-- [target] Send UA when changing LUN inventory (Maurizio Lombardi) [1366062]
-- [target] Send UA upon LUN RESET tmr completion (Maurizio Lombardi) [1366062]
-- [target] Send UA on ALUA target port group change (Maurizio Lombardi) [1366062]
-- [target] Convert se_lun->lun_deve_lock to normal spinlock (Maurizio Lombardi) [1366062]
-- [target] use 'se_dev_entry' when allocating UAs (Maurizio Lombardi) [1366062]
-- [target] Remove 'ua_nacl' pointer from se_ua structure (Maurizio Lombardi) [1366062]
-- [target] Remove TARGET_MAX_LUNS_PER_TRANSPORT (Maurizio Lombardi) [1366062]
-- [target] use 64-bit LUNs (Maurizio Lombardi) [1366062]
-- [target] Drop duplicate + unused se_dev_check_wce (Maurizio Lombardi) [1366062]
-- [target] Drop unnecessary core_tpg_register TFO parameter (Maurizio Lombardi) [1366062]
-- [target] Drop se_lun->lun_active for existing percpu lun_ref (Maurizio Lombardi) [1366062]
-- [target] Drop lun_sep_lock for se_lun->lun_se_dev RCU usage (Maurizio Lombardi) [1366062]
-- [target] Subsume se_port + t10_alua_tg_pt_gp_member into se_lun (Maurizio Lombardi) [1366062]
-- [target] Simplify LUN shutdown code (Maurizio Lombardi) [1366062]
-- [target] simplify backend attribute implementation (Maurizio Lombardi) [1366062]
-- [target] consolidate backend attribute implementations (Maurizio Lombardi) [1366062]
-- [target] simplify backend driver registration (Maurizio Lombardi) [1366062]
-- [target] Drop left-over se_lun->lun_status (Maurizio Lombardi) [1366062]
-- [target] Only reset specific dynamic entries during lun_group creation (Maurizio Lombardi) [1366062]
-- [target] Drop unused se_lun->lun_acl_list (Maurizio Lombardi) [1366062]
-- [target] Convert core_tpg_deregister to use list splice (Maurizio Lombardi) [1366062]
-- [target] Convert se_tpg->acl_node_lock to ->acl_node_mutex (Maurizio Lombardi) [1366062]
-- [target] Convert se_portal_group->tpg_lun_list to RCU hlist (Maurizio Lombardi) [1366062]
-- [target] target/pr: cleanup core_scsi3_pr_seq_non_holder (Maurizio Lombardi) [1366062]
-- [target] target/pr: Change alloc_registration to avoid pr_reg_tg_pt_lun (Maurizio Lombardi) [1366062]
-- [target] target/pr: Use atomic bitop for se_dev_entry->deve_flags reservation check (Maurizio Lombardi) [1366062]
-- [target] Convert se_node_acl->device_list to RCU hlist (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: fix variable name typo in iscsi_check_acceptor_state() (Maurizio Lombardi) [1366062]
-- [target] fix a log message in se_dev_set_emulate_rest_reord() (Maurizio Lombardi) [1366062]
-- [target] remove ->put_session method (Maurizio Lombardi) [1366062]
-- [target] target_core_configfs.h is not needed in fabric drivers (Maurizio Lombardi) [1366062]
-- [target] remove struct target_fabric_configfs_template (Maurizio Lombardi) [1366062]
-- [target] put struct target_fabric_configfs on a diet (Maurizio Lombardi) [1366062]
-- [target] don't copy fabric ops (Maurizio Lombardi) [1366062]
-- [target] Remove set-but-not-used-variables (Maurizio Lombardi) [1366062]
-- [target] Move task tag into struct se_cmd + support 64-bit tags (Maurizio Lombardi) [1366062]
-- [target] move transport ID handling to the core (Maurizio Lombardi) [1366062]
-- [lib] introduce crc_t10dif_update() (Maurizio Lombardi) [1366062]
-- [target] remove the get_fabric_proto_ident method (Maurizio Lombardi) [1366062]
-- [target] change core_tpg_register prototype (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: stop using se_tpg_fabric_ptr (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: stop using se_tpg_fabric_ptr (Maurizio Lombardi) [1366062]
-- [target] target/iscsi: stop using se_tpg_fabric_ptr (Maurizio Lombardi) [1366062]
-- [target] handle odd SG mapping for data transfer memory (Maurizio Lombardi) [1366062]
-- [target] Fix inconsistent address passed to kunmap_atomic() in sbc_dif_copy_prot() (Maurizio Lombardi) [1366062]
-- [target] move node ACL allocation to core code (Maurizio Lombardi) [1366062]
-- [target] refactor node ACL allocation (Maurizio Lombardi) [1366062]
-- [target] refactor init/drop_nodeacl methods (Maurizio Lombardi) [1366062]
-- [target] make the tpg_get_default_depth method optional (Maurizio Lombardi) [1366062]
-- [target] sbp_target: remove struct sbp_nacl (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: remove struct tcm_loop_nacl (Maurizio Lombardi) [1366062]
-- [target] target/transport: Always initialize bidi fields in se_cmd (Maurizio Lombardi) [1366062]
-- [target] target/loop: Enable VARLEN CDB support (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: remove support for obsolete markers (Maurizio Lombardi) [1366062]
-- [target] fix DPO and FUA bit checks (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Fix sbc_dif_verify inconsistent map/unmap (Maurizio Lombardi) [1366062]
-- [target] target/file: Remove fd_prot bounce buffer (Maurizio Lombardi) [1366062]
-- [target] Merge sbc_verify_dif_read|write (Maurizio Lombardi) [1366062]
-- [target] use kvfree() in session alloc and free (Maurizio Lombardi) [1366062]
-- [target] Correct a comment (Maurizio Lombardi) [1366062]
-- [target] Move passthrough CDB parsing into a common function (Maurizio Lombardi) [1366062]
-- [target] Fix se_tpg_tfo->tf_subsys regression + remove tf_subsystem (Maurizio Lombardi) [1366062]
-- [target] Drop signal_pending checks after interruptible lock acquire (Maurizio Lombardi) [1366062]
-- [target] Add missing parentheses (Maurizio Lombardi) [1366062]
-- [target] Fix bidi command handling (Maurizio Lombardi) [1366062]
-- [target] iscsi: fix minor memory leak (Maurizio Lombardi) [1366062]
-- [target] Make core_tmr_abort_task() skip TMFs (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Update sbc_dif_generate pr_debug output (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Make internal DIF emulation honor ->prot_checks (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Return INVALID_CDB_FIELD if DIF + sess_prot_type disabled (Maurizio Lombardi) [1366062]
-- [target] Ensure sess_prot_type is saved across session restart (Maurizio Lombardi) [1366062]
-- [target] target/rd: Don't pass incomplete scatterlist entries to sbc_dif_verify_* (Maurizio Lombardi) [1366062]
-- [target] Remove the unused flag SCF_ACK_KREF (Maurizio Lombardi) [1366062]
-- [target] simplify the target template registration API (Maurizio Lombardi) [1366062]
-- [target] Update fabric_ops to latest code (Maurizio Lombardi) [1366062]
-- [target] replace strict_strtoul() with kstrtoul() (Maurizio Lombardi) [1366062]
-- [target] simplify target_xcopy_init_pt_lun (Maurizio Lombardi) [1366062]
-- [target] remove the unused SCF_CMD_XCOPY_PASSTHROUGH flag (Maurizio Lombardi) [1366062]
-- [target] target/rd: reduce code duplication in rd_execute_rw() (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: fixup tpgt string to integer conversion (Maurizio Lombardi) [1366062]
-- [target] iscsi/iser-target: Add fabric_prot_type attribute support (Maurizio Lombardi) [1366062]
-- [target] loopback: Add fabric_prot_type attribute support (Maurizio Lombardi) [1366062]
-- [target] target/rd: Add checks for backend DIF emulation (Maurizio Lombardi) [1366062]
-- [target] target/iblock: Add checks for backend DIF emulation (Maurizio Lombardi) [1366062]
-- [target] target/file: Add checks for backend DIF emulation (Maurizio Lombardi) [1366062]
-- [target] Add internal READ_INSERT support (Maurizio Lombardi) [1366062]
-- [target] Move cmd->prot_op check into target_read_prot_action (Maurizio Lombardi) [1366062]
-- [target] Add internal WRITE_STRIP support (Maurizio Lombardi) [1366062]
-- [target] Move cmd->prot_op check into target_write_prot_action (Maurizio Lombardi) [1366062]
-- [target] Update SPC/SBC emulation for sess_prot_type (Maurizio Lombardi) [1366062]
-- [target] Add protected fabric + unprotected device support (Maurizio Lombardi) [1366062]
-- [target] Convert DIF emulation to use cmd->prot_type (Maurizio Lombardi) [1366062]
-- [target] add missing sense_reason_t annotations (Maurizio Lombardi) [1366062]
-- [target] add __releases annotation to target_release_cmd_kref (Maurizio Lombardi) [1366062]
-- [target] mark tcm_loop_primary static (Maurizio Lombardi) [1366062]
-- [target] move external declarations to a headers (Maurizio Lombardi) [1366062]
-- [target] Better handling of AllRegistrants reservations (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Drop legacy iscsi_target_tq.c logic (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: don't export static symbol (Maurizio Lombardi) [1366062]
-- [target] Convert fabric module autoload failures to pr_debug (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Expose per endpoint dynamic_sessions attribute (Maurizio Lombardi) [1366062]
-- [target] Add target_show_dynamic_sessions attribute helper (Maurizio Lombardi) [1366062]
-
-* Tue Oct 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-752.el7]
-- [kernel] radix-tree: RHEL-only kABI patch (Larry Woodman) [1383492]
-- [kernel] radix-tree tests: properly initialize mutex (Larry Woodman) [1383492]
-- [kernel] radix-tree tests: add iteration test (Larry Woodman) [1383492]
-- [kernel] radix tree: fix sibling entry handling in radix_tree_descend() (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: Test radix_tree_replace_slot() for multiorder entries (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix comment about "exceptional" bits (Larry Woodman) [1383492]
-- [kernel] tools/testing/radix-tree/linux/gfp.h: fix bitrotted value (Larry Woodman) [1383492]
-- [kernel] radix-tree: implement radix_tree_maybe_preload_order() (Larry Woodman) [1383492]
-- [kernel] testing/radix-tree: fix a macro expansion bug (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix radix_tree_iter_retry() for tagged iterators (Larry Woodman) [1383492]
-- [kernel] radix-tree: free up the bottom bit of exceptional entries for reuse (Larry Woodman) [1383492]
-- [kernel] radix-tree: make radix_tree_descend() more useful (Larry Woodman) [1383492]
-- [kernel] radix-tree: introduce radix_tree_replace_clear_tags() (Larry Woodman) [1383492]
-- [kernel] radix-tree: tidy up __radix_tree_create() (Larry Woodman) [1383492]
-- [kernel] radix-tree: tidy up range_tag_if_tagged (Larry Woodman) [1383492]
-- [kernel] radix-tree: tidy up next_chunk (Larry Woodman) [1383492]
-- [kernel] radix-tree: change naming conventions in radix_tree_shrink (Larry Woodman) [1383492]
-- [kernel] radix-tree: rename radix_tree_is_indirect_ptr() (Larry Woodman) [1383492]
-- [kernel] radix-tree: rename indirect_to_ptr() to entry_to_node() (Larry Woodman) [1383492]
-- [kernel] radix-tree: rename ptr_to_indirect() to node_to_entry() (Larry Woodman) [1383492]
-- [kernel] radix-tree: rename INDIRECT_PTR to INTERNAL_NODE (Larry Woodman) [1383492]
-- [kernel] radix-tree: remove root->height (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: remove dependencies on height (Larry Woodman) [1383492]
-- [kernel] radix-tree: remove a use of root->height from delete_node (Larry Woodman) [1383492]
-- [kernel] radix-tree: replace node->height with node->shift (Larry Woodman) [1383492]
-- [kernel] radix-tree: split node->path into offset and height (Larry Woodman) [1383492]
-- [kernel] radix-tree: miscellaneous fixes (Larry Woodman) [1383492]
-- [kernel] radix-tree: add copyright statements (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix radix_tree_dump() for multi-order entries (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix radix_tree_range_tag_if_tagged() for multiorder entries (Larry Woodman) [1383492]
-- [kernel] radix-tree: add test for radix_tree_locate_item() (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite radix_tree_locate_item (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix radix_tree_create for sibling entries (Larry Woodman) [1383492]
-- [kernel] radix-tree test suite: add multi-order tag test (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite radix_tree_tag_get (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite radix_tree_tag_clear (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite radix_tree_tag_set (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: multi-order iteration test (Larry Woodman) [1383492]
-- [kernel] radix-tree: add support for multi-order iterating (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix multiorder BUG_ON in radix_tree_insert (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite __radix_tree_lookup (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix several shrinking bugs with multiorder entries (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: start adding multiorder tests (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix extending the tree for multi-order entries at offset 0 (Larry Woodman) [1383492]
-- [kernel] radix-tree: introduce radix_tree_load_root() (Larry Woodman) [1383492]
-- [kernel] radix-tree: remove restriction on multi-order entries (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix deleting a multi-order entry through an alias (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix sibling entry insertion (Larry Woodman) [1383492]
-- [kernel] radix-tree: add missing sibling entry functionality (Larry Woodman) [1383492]
-- [kernel] radix-tree: introduce CONFIG_RADIX_TREE_MULTIORDER (Larry Woodman) [1383492]
-- [kernel] radix-tree: remove unused looping macros (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: rebuild when headers change (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: keep regression test runs short (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: allow testing other fan-out values (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: add tests for radix_tree_locate_item() (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: fix build (Larry Woodman) [1383492]
-- [kernel] radix-tree: introduce radix_tree_empty (Larry Woodman) [1383492]
-- [kernel] radix-tree tests: add test for radix_tree_iter_next (Larry Woodman) [1383492]
-- [kernel] radix-tree tests: add regression3 test (Larry Woodman) [1383492]
-- [kernel] radix-tree, shmem: introduce radix_tree_iter_next() (Larry Woodman) [1383492]
-- [kernel] radix_tree: add radix_tree_dump (Larry Woodman) [1383492]
-- [kernel] radix_tree: add support for multi-order entries (Larry Woodman) [1383492]
-- [kernel] radix_tree: loop based on shift count, not height (Larry Woodman) [1383492]
-- [kernel] radix_tree: tag all internal tree nodes as indirect pointers (Larry Woodman) [1383492]
-- [kernel] radix tree test harness (Larry Woodman) [1383492]
-- [kernel] radix-tree: add an explicit of bitops.h (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix oops after radix_tree_iter_retry (Larry Woodman) [1383492]
-- [kernel] linux/radix-tree.h: fix error in docs about locks (Larry Woodman) [1383492]
-- [kernel] radix-tree: replace preallocated node array with linked list (Larry Woodman) [1383492]
-- [kernel] lib/radix-tree.c: change to simpler include (Larry Woodman) [1383492]
-- [kernel] lib/radix-tree.c: kernel-doc warning fix (Larry Woodman) [1383492]
-- [kernel] mm: replace __get_cpu_var uses with this_cpu_ptr (Larry Woodman) [1383492]
-- [kernel] lib/radix-tree.c: swapoff tmpfs radix_tree: remember to rcu_read_unlock (Larry Woodman) [1383492]
-
-* Tue Oct 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-751.el7]
-- [powerpc] perf: Cleanup of PM_BR_CMPL vs. PM_BRU_CMPL in Power9 event list (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add PM_LD_MISS_L1 and PM_BR_2PATH to power9 event list (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Factor out PPMU_ONLY_COUNT_RUN check code from power8 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Update default sdar_mode value for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add POWER9 alternate PM_RUN_CYC and PM_RUN_INST_CMPL events (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix SDAR_MODE value for continous sampling on Power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix branch event code for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix oops when kthread execs user process (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix Power9 test_adder fields (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add Power8 mem_access event to sysfs (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Support to export SIERs bit in Power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Support to export SIERs bit in Power8 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Support to export MMCRA[TEC*] field to userspace (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Export memory hierarchy info to user space (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Handle sdar_mode for marked event in power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix perf_get_data_addr() for power9 DD1 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: use is_kernel_addr macro in perf_get_misc_flags() (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Avoid FAB_*_MATCH checks for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add restrictions to PMC5 in power9 DD1 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Use Instruction Counter value (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Use PM_INST_DISP for generic instructions sample (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add alternative event table and function for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add PM_INST_DISP event to Power9 event list (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Factor out event_alternative function (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Use MSR to report privilege level on P9 DD1 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix PM_BRU_CMPL event code for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: macros for power9 format encoding (Mauricio Oliveira) [1494439]
-- [powerpc] perf: power9 raw event format encoding (Mauricio Oliveira) [1494439]
-- [powerpc] perf: update attribute_group data structure (Mauricio Oliveira) [1494439]
-- [powerpc] perf: factor out the event format field (Mauricio Oliveira) [1494439]
-- [powerpc] sparse: Make a bunch of things static (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix incorrect event codes in power9-event-list (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Export Power9 generic and cache events to sysfs (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Power9 PMU support (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add power9 event list macros for generic and cache events (Mauricio Oliveira) [1494439]
-- [powerpc] perf: factor out power8 pmu functions (Mauricio Oliveira) [1494439]
-- [powerpc] perf: factor out power8 pmu macros and defines (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix ABIv2 kernel backtraces (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Clear all MMCR settings before calling compute_mmcr() (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Replace raw event hex values with #defines (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix misleading comment in pmao_restore_workaround() (Mauricio Oliveira) [1494439]
-- [powerpc] perf/hv-gpci: Increase request buffer size (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Remove PPMU_HAS_SSLOT flag for Power8 (Mauricio Oliveira) [1494439]
-- [powerpc] perf/powerpc: Add support for PERF_SAMPLE_BRANCH_CALL (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Change type of the bhrb_users variable (Mauricio Oliveira) [1494439]
-- [powerpc] book3s: Add a cpu table entry for different POWER9 revs (Mauricio Oliveira) [1494439]
-- [powerpc] Add POWER9 cputable entry (Mauricio Oliveira) [1494439]
-- [powerpc] Add HWCAP bits for Power9 (Mauricio Oliveira) [1494439]
-- [powerpc] Use defines for __init_tlb_power[78] (Mauricio Oliveira) [1494439]
-- [powerpc] book3s: Fix flush_tlb cpu_spec hook to take a generic argument (Mauricio Oliveira) [1494439]
-
-* Tue Oct 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-750.el7]
-- [s390] virtio/s390: deprecate old transport (Thomas Huth) [1495285]
-- [s390] virtio: change virtio_feature_desc:features type to __le32 (Thomas Huth) [1495285]
-- [s390] virtio/s390: virtio: constify virtio_config_ops structures (Thomas Huth) [1495285]
-- [s390] virtio/s390: add missing \n to end of dev_err message (Thomas Huth) [1495285]
-- [s390] virtio/s390: support READ_STATUS command for virtio-ccw (Thomas Huth) [1495285]
-- [s390] virtio: make ccw explicitly non-modular (Thomas Huth) [1495285]
-- [s390] virtio/s390: size of SET_IND payload (Thomas Huth) [1495285]
-- [s390] virtio/s390: use dev_to_virtio (Thomas Huth) [1495285]
-- [s390] virtio: make find_vqs() checkpatch.pl-friendly [s390x part] (Thomas Huth) [1495285]
-- [s390] virtio/s390: handle error values in irb (Thomas Huth) [1495285]
-- [s390] virtio/s390: handle failures of READ_VQ_CONF ccw (Thomas Huth) [1495285]
-- [s390] virtio/s390: rename s390/kvm -> drivers/s390/virtio (Thomas Huth) [1495285]
-- [s390] kvm: s390: virtio-ccw: don't overwrite config space values (Thomas Huth) [1495285]
-- [s390] kvm: s390: virtio_ccw: remove unused variable (Thomas Huth) [1495285]
-- [s390] s390/crypt: use the correct module alias for paes_s390 (Hendrik Brueckner) [1380348]
-- [s390] s390/crypt: fix missing unlock in ctr_paes_crypt on error path (Hendrik Brueckner) [1380348]
-- [s390] s390/crypt: Add protected key AES module (Hendrik Brueckner) [1380348]
-- [iommu] vt-d: Tylersburg isoch identity map check is done too late (Jerry Snitselaar) [1457037]
-- [pinctrl] pinctrl/amd: save pin registers over suspend/resume (Prarit Bhargava) [1499279]
-- [pinctrl] pinctrl: amd: fix error return code in amd_gpio_probe() (Prarit Bhargava) [1499279]
-- [pinctrl] pinctrl/amd: Use regular interrupt instead of chained (Prarit Bhargava) [1499279]
-- [pinctrl] pinctrl/amd: Update contact information for AMD pinctrl/amd (Prarit Bhargava) [1499279]
-- [pinctrl] pinctrl: amd: make use of raw_spinlock variants (Prarit Bhargava) [1499279]
-- [cpufreq] Fix suspend/resume (Prarit Bhargava) [1499802]
-
-* Mon Oct 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-749.el7]
-- [iommu] kvm: svm: Add irqchip_split() checks before enabling AVIC (Jerry Snitselaar) [1484757]
-- [iommu] kvm: Add struct kvm_vcpu pointer parameter to get_enable_apicv() (Jerry Snitselaar) [1484757]
-- [iommu] kvm: svm: Refactor AVIC vcpu initialization into avic_init_vcpu() (Jerry Snitselaar) [1484757]
-- [iommu] amd: Check if domain is NULL in get_domain() and return -EBUSY (Jerry Snitselaar) [1062729]
-- [iommu] amd: Fix section mismatch warning (Jerry Snitselaar) [1062729]
-- [iommu] amd: Fix compiler warning in copy_device_table() (Jerry Snitselaar) [1062729]
-- [iommu] amd: Disable iommu only if amd_iommu=off is specified (Jerry Snitselaar) [1062729]
-- [iommu] amd: Disable IOMMUs at boot if they are enabled (Jerry Snitselaar) [1062729]
-- [iommu] amd: Don't copy GCR3 table root pointer (Jerry Snitselaar) [1062729]
-- [iommu] amd: Allocate memory below 4G for dev table if translation pre-enabled (Jerry Snitselaar) [1062729]
-- [iommu] amd: Use is_attach_deferred call-back (Jerry Snitselaar) [1062729]
-- [iommu] Add is_attach_deferred call-back to iommu-ops (Jerry Snitselaar) [1062729]
-- [iommu] amd: Do sanity check for address translation and irq remap of old dev table entry (Jerry Snitselaar) [1062729]
-- [iommu] amd: Copy old trans table from old kernel (Jerry Snitselaar) [1062729]
-- [iommu] amd: Add function copy_dev_tables() (Jerry Snitselaar) [1062729]
-- [iommu] amd: Define bit fields for DTE particularly (Jerry Snitselaar) [1062729]
-- [iommu] amd: Add several helper functions (Jerry Snitselaar) [1062729]
-- [iommu] amd: Detect pre enabled translation (Jerry Snitselaar) [1062729]
-- [iommu] amd: Enable ga_log_intr when enabling guest_mode (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix interrupt remapping when disable guest_mode (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix IOMMU lookup for SR-IOV Virtual Functions (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Make sure RMRRs are mapped before domain goes public (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Split up get_domain_for_dev function (Jerry Snitselaar) [1499325]
-- [iommu] kvm: svm: fix unsigned compare less than zero comparison (Jerry Snitselaar) [1133711]
-- [iommu] svm: Implements update_pi_irte hook to setup posted interrupt (Jerry Snitselaar) [1133711]
-- [iommu] svm: Introduce AMD IOMMU avic_ga_log_notifier (Jerry Snitselaar) [1133711]
-- [iommu] svm: Introduces AVIC per-VM ID (Jerry Snitselaar) [1133711]
-- [iommu] kvm: Provide function for VCPU lookup by id (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix the left value check of cmd buffer (Jerry Snitselaar) [1411581]
-- [iommu] amd: Missing error code in amd_iommu_init_device() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix group refcounting (Jerry Snitselaar) [1411581]
-- [iommu] amd: Tell kmemleak about the irq_remap_table (Jerry Snitselaar) [1411581]
-- [iommu] Allow taking a reference on a group directly (Jerry Snitselaar) [1411581]
-- [iommu] Use irte_ops->set_affinity() function hook (Jerry Snitselaar) [1411581]
-- [iommu] Handle 32 and 128-bit interrupt remapping table entry (Jerry Snitselaar) [1411581]
-- [iommu] amd: Enable vAPIC interrupt remapping mode by default (Jerry Snitselaar) [1411581]
-- [iommu] amd: Implements irq_set_vcpu_affinity() hook to setup vapic mode for pass-through devices (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduce amd_iommu_update_ga() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Adding GALOG interrupt handler (Jerry Snitselaar) [1411581]
-- [iommu] amd: Detect and initialize guest vAPIC log (Jerry Snitselaar) [1411581]
-- [iommu] amd: Add support for multiple IRTE formats (Jerry Snitselaar) [1411581]
-- [iommu] x86/irq: Add struct amd_ir_data pointer in struct irq_2_irte (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduce interrupt remapping ops structure (Jerry Snitselaar) [1411581]
-- [iommu] amd: Move and introduce new IRTE-related unions and structures (Jerry Snitselaar) [1411581]
-- [iommu] amd: Detect and enable guest vAPIC support (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix boot warning when device 00:00.0 is not iommu covered (Jerry Snitselaar) [1411581]
-- [iommu] amd: Adding Extended Feature Register check for PC support (Jerry Snitselaar) [1411581]
-- [iommu] amd: No need to wait iommu completion if no dte irq entry change (Jerry Snitselaar) [1411581]
-- [iommu] amd: Free domain id when free a domain of struct dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use standard bitmap operation to set bitmap (Jerry Snitselaar) [1411581]
-- [iommu] amd: Clean up the cmpxchg64 invocation (Jerry Snitselaar) [1411581]
-- [iommu] amd: Don't put completion-wait semaphore on stack (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove AMD_IOMMU_STATS (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix non static symbol warning (Jerry Snitselaar) [1411581]
-- [iommu] Simplify and fix ida handling (Jerry Snitselaar) [1499325]
-- [iommu] Simplify init function (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Remove unnecassary qi clflushes (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Don't reject NTB devices due to scope mismatch (Jerry Snitselaar) [1499325]
-- [iommu] amd: Initialize dma-ops domains with 3-level page-table (Jerry Snitselaar) [1411581]
-- [iommu] amd: Update Alias-DTE in update_device_table() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use container_of to get dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush iova queue before releasing dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Handle IOMMU_DOMAIN_DMA in ops->domain_free call-back (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use dev_data->domain in get_domain() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Optimize map_sg and unmap_sg (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduce dir2prot() helper (Jerry Snitselaar) [1411581]
-- [iommu] amd: Implement timeout to flush unmap queues (Jerry Snitselaar) [1411581]
-- [iommu] amd: Implement flush queue (Jerry Snitselaar) [1411581]
-- [iommu] amd: Allow NULL pointer parameter for domain_flush_complete() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Set up data structures for flush queue (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove align-parameter from __map_single() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove other remains of old address allocator (Jerry Snitselaar) [1411581]
-- [iommu] amd: Make use of the generic IOVA allocator (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove special mapping code for dma_ops path (Jerry Snitselaar) [1411581]
-- [iommu] amd: Pass gfp-flags to iommu_map_page() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Implement apply_dm_region call-back (Jerry Snitselaar) [1411581]
-- [iommu] amd: Create a list of reserved iova addresses (Jerry Snitselaar) [1411581]
-- [iommu] amd: Allocate iova_domain for dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Select IOMMU_IOVA for AMD IOMMU (Jerry Snitselaar) [1499325]
-- [iommu] Add apply_dm_region call-back to iommu-ops (Jerry Snitselaar) [1411581]
-- [iommu] remove unused priv field from struct iommu_ops (Jerry Snitselaar) [1411581]
-- [iommu] Add MMIO mapping type (Jerry Snitselaar) [1411581]
-- [iommu] provide of_xlate pointer unconditionally (Jerry Snitselaar) [1411581]
-- [iommu] Update struct iommu_ops comments (Jerry Snitselaar) [1411581]
-- [iommu] amd: Init unity mappings only for dma_ops domains (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove create_workqueue (Jerry Snitselaar) [1411581]
-- [iommu] amd: Set AMD iommu callbacks for platform bus driver (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix infinite loop in free_all_cpu_cached_iovas (Jerry Snitselaar) [1499325]
-- [iommu] amd: Initialize devid variable before using it (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix overflow of iommu->domains array (Jerry Snitselaar) [1499325]
-- [iommu] iova: Disable preemption around use of this_cpu_ptr() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Enable QI on all IOMMUs before setting root entry (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Use per-cpu IOVA caching (Jerry Snitselaar) [1499325]
-- [iommu] iova: introduce per-cpu caching to iova allocation (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: change intel-iommu to use IOVA frame numbers (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: only unmap mapped entries (Jerry Snitselaar) [1499325]
-- [iommu] intel-iommu: integrate DMA CMA (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: correct flush_unmaps pfn usage (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: per-cpu deferred invalidation queues (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: refactoring of deferred flush entries (Jerry Snitselaar) [1499325]
-- [iommu] amd: Remove statistics code (Jerry Snitselaar) [1411581]
-- [iommu] amd: Don't use IS_ERR_VALUE to check integer values (Jerry Snitselaar) [1411581]
-- [iommu] amd: Signedness bug in acpihid_device_group() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Set AMD iommu callbacks for amba bus (Jerry Snitselaar) [1411581]
-- [iommu] amd: Manage iommu_group for ACPI HID devices (Jerry Snitselaar) [1411581]
-- [iommu] amd: Add iommu support for ACPI HID devices (Jerry Snitselaar) [1411581]
-- [iommu] acpi: Add acpi_device_uid() for convenience (Jerry Snitselaar) [1411581]
-- [iommu] amd: Make call-sites of get_device_id aware of its return value (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduces ivrs_acpihid kernel parameter (Jerry Snitselaar) [1411581]
-- [iommu] amd: Add new map for storing IVHD dev entry type HID (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix checking of pci dma aliases (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use the most comprehensive IVHD type that the driver can support (Jerry Snitselaar) [1411581]
-- [iommu] amd: Modify ivhd_header structure to support type 11h and 40h (Jerry Snitselaar) [1411581]
-- [iommu] Allow selecting page sizes per domain (Jerry Snitselaar) [1411581]
-- [iommu] x86/vt-d: Fix comment for dma_pte_free_pagetable() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Improve fault handler error messages (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Ratelimit fault handler (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Silence an uninitialized variable warning (Jerry Snitselaar) [1499325]
-- [iommu] Don't overwrite domain pointer when there is no default_domain (Jerry Snitselaar) [1499325]
-- [iommu] Fix second argument of trace_map() to report correct paddr (Jerry Snitselaar) [1499325]
-- [iommu] amd: Make a symbol static (Jerry Snitselaar) [1411581]
-- [iommu] perf/x86/amd: Add IOMMU Performance Counter resource management (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Use BUS_NOTIFY_REMOVED_DEVICE in hotplug path (Jerry Snitselaar) [1499325]
-- [iommu] amd: Detach device from domain before removal (Jerry Snitselaar) [1411581]
-- [iommu] amd: Apply workaround for ATS write permission check (Jerry Snitselaar) [1411581]
-- [iommu] amd: Correct the wrong setting of alias DTE in do_attach (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix 64-bit accesses to 32-bit DMAR_GSTS_REG (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Fix up error handling in alloc_iommu (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Check the return value of iommu_device_create() (Jerry Snitselaar) [1499325]
-- [iommu] amd: Preallocate dma_ops apertures based on dma_mask (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use trylock to aquire bitmap_lock (Jerry Snitselaar) [1411581]
-- [iommu] amd: Make dma_ops_domain->next_index percpu (Jerry Snitselaar) [1411581]
-- [iommu] amd: Relax locking in dma_ops path (Jerry Snitselaar) [1411581]
-- [iommu] amd: Initialize new aperture range before making it visible (Jerry Snitselaar) [1411581]
-- [iommu] amd: Build io page-tables with cmpxchg64 (Jerry Snitselaar) [1411581]
-- [iommu] amd: Allocate new aperture ranges in dma_ops_alloc_addresses (Jerry Snitselaar) [1411581]
-- [iommu] amd: Optimize dma_ops_free_addresses (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove need_flush from struct dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Iterate over all aperture ranges in dma_ops_area_alloc (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush iommu tlb in dma_ops_free_addresses (Jerry Snitselaar) [1411581]
-- [iommu] amd: Rename dma_ops_domain->next_address to next_index (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove 'start' parameter from dma_ops_area_alloc (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush iommu tlb in dma_ops_aperture_alloc() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Retry address allocation within one aperture (Jerry Snitselaar) [1411581]
-- [iommu] amd: Move aperture_range.offset to another cache-line (Jerry Snitselaar) [1411581]
-- [iommu] amd: Add dma_ops_aperture_alloc() function (Jerry Snitselaar) [1411581]
-- [iommu] amd: Pass correct shift to iommu_area_alloc() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush the IOMMU TLB before the addresses are freed (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush IOMMU TLB on __map_single error path (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduce bitmap_lock in struct aperture_range (Jerry Snitselaar) [1411581]
-- [iommu] amd: Move 'struct dma_ops_domain' definition to amd_iommu.c (Jerry Snitselaar) [1411581]
-- [iommu] amd: Warn only once on unexpected pte value (Jerry Snitselaar) [1411581]
-- [iommu] amd: Constify mmu_notifier_ops structures (Jerry Snitselaar) [1411581]
-- [iommu] amd: Cleanup error handling in do_fault() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Do proper access checking before calling handle_mm_fault() (Jerry Snitselaar) [1411581]
-- [iommu] Move default domain allocation to iommu_group_get_for_dev() (Jerry Snitselaar) [1499325]
-- [iommu] Remove is_pci_dev() fall-back from iommu_group_get_for_dev (Jerry Snitselaar) [1499325]
-- [iommu] Add device_group call-back to x86 iommu drivers (Jerry Snitselaar) [1411581]
-- [iommu] Add generic_device_group() function (Jerry Snitselaar) [1411581]
-- [iommu] Export and rename iommu_group_get_for_pci_dev() (Jerry Snitselaar) [1411581]
-- [iommu] Revive device_group iommu-ops call-back (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove find_last_devid_on_pci() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove first/last_device handling (Jerry Snitselaar) [1411581]
-- [iommu] amd: Initialize amd_iommu_last_bdf for DEV_ALL (Jerry Snitselaar) [1411581]
-- [iommu] amd: Cleanup buffer allocation (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove cmd_buf_size and evt_buf_size from struct amd_iommu (Jerry Snitselaar) [1411581]
-- [iommu] amd: Align DTE flag definitions (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove old alias handling code (Jerry Snitselaar) [1411581]
-- [iommu] amd: Set alias DTE in do_attach/do_detach (Jerry Snitselaar) [1411581]
-- [iommu] amd: WARN when __[attach|detach]_device are called with irqs enabled (Jerry Snitselaar) [1411581]
-- [iommu] amd: Don't disable IRQs in __detach_device (Jerry Snitselaar) [1411581]
-- [iommu] amd: Do not iterate over alias-list in __[attach|detach]_device (Jerry Snitselaar) [1411581]
-- [iommu] amd: Do not BUG_ON in __detach_device() (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix return value check of parse_ioapics_under_ir() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Propagate error-value from ir_parse_ioapic_hpet_scope() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Adjust the return value of the parse_ioapics_under_ir (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Fix ATSR handling for Root-Complex integrated endpoints (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Switch from ioremap_cache to memremap (Jerry Snitselaar) [1499325]
-- [iommu] amd: Don't clear DTE flags when modifying it (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix BUG when faulting a PROT_NONE VMA (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix NULL pointer deref on device detach (Jerry Snitselaar) [1411581]
-- [iommu] amd: Prevent binding other PCI drivers to IOMMU PCI devices (Jerry Snitselaar) [1411581]
-- [iommu] amd: Drop null test before destroy functions (Jerry Snitselaar) [1411581]
-- [iommu] amd: Return positive value in amd_iommu_detect() (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix memory leak in dmar_insert_one_dev_info() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Access iomem correctly (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Make two functions static (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Use BUG_ON instead of if () BUG() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Return false instead of 0 in irq_remapping_cap() (Jerry Snitselaar) [1499325]
-- [iommu] amd: Use BUG_ON instead of if () BUG() (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Report domain usage in sysfs (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Avoid format string leaks into iommu_device_create (Jerry Snitselaar) [1499325]
-- [iommu] Make the iova library a module (Jerry Snitselaar) [1411581]
-- [iommu] iova: Export symbols (Jerry Snitselaar) [1411581]
-- [iommu] iova: Move iova cache management to the iova library (Jerry Snitselaar) [1411581]
-- [iommu] iova: Avoid over-allocating when size-aligned (Jerry Snitselaar) [1499325]
-
-* Mon Oct 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-748.el7]
-- [netdrv] igbvf: convert msleep to mdelay in atomic context (Corinna Vinschen) [1454905]
-- [netdrv] igbvf: after mailbox write, wait for reply (Corinna Vinschen) [1454905]
-- [netdrv] igbvf: add lock around mailbox ops (Corinna Vinschen) [1454905]
-- [netdrv] igbvf: Use net_device_stats from struct net_device (Corinna Vinschen) [1454905]
-- [netdrv] igb/igbvf: Add VF MAC filter request capabilities (Corinna Vinschen) [1454905]
-- [netdrv] igbvf: use new API ethtool_{get|set}_link_ksettings (Corinna Vinschen) [1454905]
-- [netdrv] intel: use core min/max MTU checking (Corinna Vinschen) [1454905]
-- [netdrv] igb: do not drop PF mailbox lock after read of VF message (Corinna Vinschen) [1454902]
-- [netdrv] igb: expose mailbox unlock method (Corinna Vinschen) [1454902]
-- [netdrv] igb: add argument names to mailbox op function declarations (Corinna Vinschen) [1454902]
-- [netdrv] igb: Remove incorrect "unexpected SYS WRAP" log message (Corinna Vinschen) [1454902]
-- [netdrv] igb: protect TX timestamping from API misuse (Corinna Vinschen) [1454902]
-- [netdrv] igb: Fix error of RX network flow classification (Corinna Vinschen) [1454902]
-- [netdrv] igb: make a few local functions static (Corinna Vinschen) [1454902]
-- [netdrv] igb: Remove useless argument (Corinna Vinschen) [1454902]
-- [netdrv] igb: check for Tx timestamp timeouts during watchdog (Corinna Vinschen) [1454902]
-- [netdrv] igb: add statistic indicating number of skipped Tx timestamps (Corinna Vinschen) [1454902]
-- [netdrv] igb: avoid permanent lock of *_PTP_TX_IN_PROGRESS (Corinna Vinschen) [1454902]
-- [netdrv] igb: fix race condition with PTP_TX_IN_PROGRESS bits (Corinna Vinschen) [1454902]
-- [netdrv] igb: mark PM functions as __maybe_unused (Corinna Vinschen) [1454902]
-- [netdrv] igb: Explicitly select page 0 at initialization (Corinna Vinschen) [1454902]
-- [netdrv] igb: Enable reading of wake up packet (Corinna Vinschen) [1454902]
-- [netdrv] igb/igbvf: Add VF MAC filter request capabilities (Corinna Vinschen) [1454902]
-- [netdrv] igb: improve MAC filter handling (Corinna Vinschen) [1454902]
-- [netdrv] igb: use new API ethtool_{get|set}_link_ksettings (Corinna Vinschen) [1454902]
-- [netdrv] igb/ixgbe: Fix typo in igb_build_skb and/or ixgbe_build_skb code comment (Corinna Vinschen) [1454902]
-- [netdrv] igb: Re-add support for build_skb in igb (Corinna Vinschen) [1454902]
-- [netdrv] igb: Break out Rx buffer page management (Corinna Vinschen) [1454902]
-- [netdrv] igb: Add support for padding packet (Corinna Vinschen) [1454902]
-- [netdrv] igb: Add support for using order 1 pages to receive large frames (Corinna Vinschen) [1454902]
-- [netdrv] igb: Add support for ethtool private flag to allow use of legacy Rx (Corinna Vinschen) [1454902]
-- [netdrv] igb: Use page_address offset from page instead of masking virtual address (Corinna Vinschen) [1454902]
-- [netdrv] igb: Only sync size of expected frame in ethtool testing (Corinna Vinschen) [1454902]
-- [netdrv] igb: Limit maximum frame Rx based on MTU (Corinna Vinschen) [1454902]
-- [netdrv] igb: Don't bother clearing Tx buffer_info in igb_clean_tx_ring (Corinna Vinschen) [1454902]
-- [netdrv] igb: Clear Rx buffer_info in configure instead of clean (Corinna Vinschen) [1454902]
-- [netdrv] igb: Use length to determine if descriptor is done (Corinna Vinschen) [1454902]
-- [netdrv] igb: Add support for DMA_ATTR_WEAK_ORDERING (Corinna Vinschen) [1454902]
-- [netdrv] scripts/spelling.txt: add "overwritting" pattern and fix typo instances (Corinna Vinschen) [1454902]
-- [netdrv] mm: rename __page_frag functions to __page_frag_cache, drop order from drain (Corinna Vinschen) [1454902]
-- [netdrv] igb: update code to better handle incrementing page count (Corinna Vinschen) [1454902]
-- [netdrv] igb: update driver to make use of DMA_ATTR_SKIP_CPU_SYNC (Corinna Vinschen) [1454902]
-- [netdrv] ptp: igb: Use the high resolution frequency method (Corinna Vinschen) [1454902]
-- [netdrv] intel: use core min/max MTU checking (Corinna Vinschen) [1454902]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-747.el7]
-- [netdrv] netxen_nic: netxen_netdev_ops fields for MTU range checking (Tony Camuso) [1457478]
-- [netdrv] qlogic: make device_attribute const (Tony Camuso) [1457478]
-- [netdrv] netxen: fix incorrect loop counter decrement (Tony Camuso) [1457478]
-- [netdrv] netxen_nic: Remove unused pointer hdr in netxen_setup_minidump() (Tony Camuso) [1457478]
-- [netdrv] netxen_nic: set rcode to the return status from the call to netxen_issue_cmd (Tony Camuso) [1457478]
-- [netdrv] netxen_nic: remove redundant check if retries is zero (Tony Camuso) [1457478]
-- [netdrv] qlogic: netxen: constify bin_attribute structures (Tony Camuso) [1457478]
-- [netdrv] qlogic: netxen: use new api ethtool_{get|set}_link_ksettings (Tony Camuso) [1457478]
-- [netdrv] generalize napi_complete_done() (Tony Camuso) [1457478]
-- [netdrv] use net core MTU range checking in more drivers (Tony Camuso) [1457478]
-- [netdrv] be2net: fix TSO6/GSO issue causing TX-stall on Lancer/BEx (Ivan Vecera) [1449601]
-- [netdrv] benet: fix set but not used warning (Ivan Vecera) [1449601]
-- [netdrv] benet: Use time_before_eq for time comparison (Ivan Vecera) [1449601]
-- [netdrv] ethernet: use net core MTU range checking in more drivers (Ivan Vecera) [1449601]
-- [netdrv] bnx2x: Use pci_ari_enabled() instead of local copy (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: use setup_timer() helper (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: use core min/max MTU checking (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: fix format overflow warning (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: make a couple of const arrays static (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Don't log mc removal needlessly (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: fix pf2vf bulletin DMA mapping leak (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Fix Multi-Cos (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Remove open coded carrier check (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: spelling: correct diffrent[iate] and banlance typos (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Get rid of useless temporary variable (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Reuse bnx2x_null_format_ver() (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Replace custom scnprintf() (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: fix spelling mistake in macros HW_INTERRUT_ASSERT_SET_* (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: fix typos in comment (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: generalize napi_complete_done() (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: switch to napi_complete_done() (Michal Schmidt) [1479145]
-- [netdrv] intel: use core min/max MTU checking (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Bump version number (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Resolve warnings for -Wimplicit-fallthrough (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Resolve truncation warning for q_vector->name (Ken Cox) [1454899]
-- [netdrv] ixgbe/ixgbevf: Enables TSO for MPLS encapsulated packets (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Check for RSS key before setting value (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Fix errors in retrieving RETA and RSS from PF (Ken Cox) [1454899]
-- [netdrv] ixgbevf: fix size of queue stats length (Ken Cox) [1454899]
-- [netdrv] ixgbevf: use new api ethtool_{get|set}_link_ksettings (Ken Cox) [1454899]
-- [netdrv] ixgbevf: get rid of custom busy polling code (Ken Cox) [1454899]
-- [netdrv] ixgbe: Return error when getting PHY address if PHY access is not supported (Ken Cox) [1372079]
-- [netdrv] i40e: use cpumask_copy instead of direct assignment (Stefano Brivio) [1483724]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-746.el7]
-- [x86] kvm: nvmx: Don't allow L2 to access the hardware CR8 (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: do not use KVM_REQ_EVENT for APICv interrupt injection (Paolo Bonzini) [1498473]
-- [x86] kvm/x86: update the comment of memory barrier in the vcpu_enter_guest() (Paolo Bonzini) [1498473]
-- [x86] kvm/x86: Call smp_wmb() before increasing tlbs_dirty (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: do not scan IRR twice on APICv vmentry (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: move sync_pir_to_irr from apic_find_highest_irr to callers (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: preparatory changes for APICv cleanups (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: avoid atomic operations on APICv vmentry (Paolo Bonzini) [1498473]
-- [x86] kvm: nvmx: move nested events check to kvm_vcpu_running (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: do not scan IRR when delivering an interrupt (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: do not set KVM_REQ_EVENT unnecessarily on PPR update (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: remove unnecessary KVM_REQ_EVENT on PPR update (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: speed up TPR below threshold vmexits (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: add VCPU stat for KVM_REQ_EVENT processing (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: clear pending interrupts on KVM_SET_LAPIC (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: make hwapic_isr_update and hwapic_irr_update look the same (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: Fix reentrancy issues with preempt notifiers (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: Fix lapic timer injection delay (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: reorganize restart_apic_timer (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: reorganize start_hv_timer (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: Fix preempt the preemption timer cancel (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: make function static to avoid compiling warning (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: use ktime_get instead of seeking the hrtimer_clock_base (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: add APIC Timer periodic/oneshot mode VMX preemption timer support (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: rename start/cancel_hv_tscdeadline to start/cancel_hv_timer (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: introduce kvm_get_lapic_target_expiration_tsc() (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: guarantee the timer is in tsc-deadline mode (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: extract start_sw_period() to handle periodic/oneshot mode (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: adjust preemption timer correctly when goes TSC backward (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: fix access preemption timer stuff even if kernel_irqchip=off (Paolo Bonzini) [1498473]
-- [x86] kvm: nvmx: avoid incorrect preemption timer vmexit in nested guest (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: fix missed cancellation of TSC deadline timer (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: introduce cancel_hv_tscdeadline (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: fix underflow in TSC deadline calculation (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: hook preemption timer support (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: support using the vmx preemption timer for tsc deadline timer (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: separate start_sw_tscdeadline from start_apic_timer (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: make backwards_tsc_observed a per-VM variable (Paolo Bonzini) [1498473]
-- [x86] kvm: Introduce kvm_write_guest_offset_cached() (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: Fix residual mmio emulation request to userspace (Paolo Bonzini) [1498473]
-- [x86] kvm: mmu: Fix softlockup due to mmu_lock is held too long (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: use list_last_entry (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: Fix load damaged SSEx MXCSR register (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: fix maintaining of kvm_clock stability on guest CPU hotplug (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: remaster kvm_write_tsc code (Paolo Bonzini) [1498473]
-- [x86] kvm: nvmx: Disallow userspace-injected exceptions in guest mode (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: fix user triggerable warning in kvm_apic_accept_events() (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: cleanup the page tracking SRCU instance (Paolo Bonzini) [1498473]
-- [x86] kvm/x86: Avoid async PF to end RCU read-side critical section early in PREEMPT=n kernel (Paolo Bonzini) [1498473]
-- [x86] kvm/x86: Handle async PF in RCU read-side critical sections (Paolo Bonzini) [1498473]
-- [x86] kvm: async_pf: make rcu irq exit if not triggered from idle task (Paolo Bonzini) [1498473]
-- [x86] kvm: async_pf: fix rcu_irq_enter() with irqs enabled (Paolo Bonzini) [1498473]
-- [x86] kvm, powerpc: Serialize wq active checks in ops->vcpu_kick (Paolo Bonzini) [1498473]
-- [x86] kvm: Serialize wq active checks in kvm_vcpu_wake_up() (Paolo Bonzini) [1498473]
-- [x86] kvm,async_pf: Use swq_has_sleeper() (Paolo Bonzini) [1498473]
-- [x86] sched/wait: Add swq_has_sleeper() (Paolo Bonzini) [1498473]
-- [x86] kvm, x86: Fix apf_task_wake_one() wq serialization (Paolo Bonzini) [1498473]
-- [x86] kvm,lapic: Justify use of swait_active() (Paolo Bonzini) [1498473]
-- [x86] sched/wait: Remove the lockless swait_active() check in swake_up*() (Paolo Bonzini) [1498473]
-- [x86] kvm, rt: change async pagefault code locking for PREEMPT_RT (Paolo Bonzini) [1498473]
-- [x86] kvm: Use simple waitqueue for vcpu->wq (Paolo Bonzini) [1498473]
-- [x86] wait.[ch]: Introduce the simple waitqueue (swait) implementation (Paolo Bonzini) [1498473]
-- [x86] iommu/vt-d: Add a command line parameter for VT-d posted-interrupts (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: simplify and fix vmx_vcpu_pi_load (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: avoid double list add with VT-d posted interrupts (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: extract __pi_post_block (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: rename vmx_pre/post_block to pi_pre/post_block (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: do not change SN bit in vmx_update_pi_irte() (Paolo Bonzini) [1498473]
-- [x86] fix hot-unplug races in VT-d posted interrupt patches (Paolo Bonzini) [1498473]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-745.el7]
-- [net] xfrm: move xfrm_garbage_collect out of xfrm_policy_flush (Paul Moore) [1453103]
-- [net] l2tp: initialise session's refcount before making it reachable (Sabrina Dubroca) [1492006]
-- [net] l2tp: fix race condition in l2tp_tunnel_delete (Sabrina Dubroca) [1492006]
-- [net] l2tp: prevent creation of sessions on terminated tunnels (Sabrina Dubroca) [1492006]
-- [net] l2tp: fix duplicate session creation (Sabrina Dubroca) [1492006]
-- [net] l2tp: fix race in l2tp_recv_common() (Sabrina Dubroca) [1492006]
-- [net] ipv6: do not set sk_destruct in IPV6_ADDRFORM sockopt (Xin Long) [1499475]
-- [net] use is_vlan_dev() helper function (Ivan Vecera) [1500976]
-- [net] constify netif_is_* helpers net_device param (Ivan Vecera) [1500976]
-- [net] hyper-v: hv_sock mark as Tech Preview (Cathy Avery) [1485358]
-- [netdrv] vmbus: don't acquire the mutex in vmbus_hvsock_device_unregister() (Cathy Avery) [1485358]
-- [net] hv_sock: implements Hyper-V transport for Virtual Sockets (AF_VSOCK) (Cathy Avery) [1485358]
-- [net] sk_buff: remove support for csum_bad in sk_buff (Sabrina Dubroca) [1497092]
-- [net] switchdev: add SET_SWITCHDEV_OPS helper (Jiri Benc) [1497085]
-- [net] introduce __skb_put_[zero, data, u8] (Jiri Benc) [1497085]
-- [net] add and use skb_put_u8() (Jiri Benc) [1497085]
-- [net] make skb_push & __skb_push return void pointers (Jiri Benc) [1497085]
-- [net] make skb_pull & friends return void pointers (Jiri Benc) [1497085]
-- [net] make skb_put & friends return void pointers (Jiri Benc) [1497085]
-- [net] pktgen: use reset to set mac header (Jiri Benc) [1497085]
-- [net] move pskb_put() to core code (Jiri Benc) [1497085]
-- [net] introduce and use skb_put_data() (Jiri Benc) [1497085]
-- [net] convert many more places to skb_put_zero() (Jiri Benc) [1497085]
-- [net] skbuff: make skb_put_zero() return void (Jiri Benc) [1497085]
-- [net] skbuff: introduce skb_put_zero() (Jiri Benc) [1497085]
-- [net] ether: MAC address helpers (Jiri Benc) [1497085]
-- [kernel] params: Add module param type 'ullong' (Jiri Benc) [1497085]
-- [kernel] params: improve standard definitions (Jiri Benc) [1497085]
-- [kernel] params: fix handling of signed integer types (Jiri Benc) [1497085]
-- [kernel] replace strict_strto*() with kstrto*() (Jiri Benc) [1497085]
-- [net] flow_dissector: add support for dissection of misc ip header fields (Jonathan Toppins) [1497129]
-- [net] flow_dissector: add support for dissection of tcp flags (Jonathan Toppins) [1497129]
-- [net] flow_dissector: add mpls support (v2) (Jonathan Toppins) [1497129]
-- [net] flow_dissector: correct size of storage for ARP (Jonathan Toppins) [1497129]
-- [net] flow_dissector: Move GRE dissection into a separate function (Jonathan Toppins) [1497129]
-- [net] flow_dissector: rename "proto again" goto label (Jonathan Toppins) [1497129]
-- [net] flow_dissector: Fix GRE header error path (Jonathan Toppins) [1497129]
-- [net] flow_dissector: Move MPLS dissection into a separate function (Jonathan Toppins) [1497129]
-- [net] flow_dissector: Move ARP dissection into a separate function (Jonathan Toppins) [1497129]
-- [net] tcp: __tcp_hdrlen() helper (Jonathan Toppins) [1497129]
-- [net] tun: handle register_netdevice() failures properly (Sabrina Dubroca) [1497100]
-- [net] mac80211: free netdev on dev_alloc_name() error (Sabrina Dubroca) [1497100]
-- [net] Fix inconsistent teardown and release of private netdev state (Sabrina Dubroca) [1497100]
-- [net] vsock: Add virtio vsock vsockmon hooks (Stefano Brivio) [1470219]
-- [net] vsock: Add vsockmon device (Stefano Brivio) [1470219]
-- [net] vsock: Add vsockmon tap functions (Stefano Brivio) [1470219]
-- [net] ethtool: add CRC32 as an RSS hash function (Ivan Vecera) [1481580]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-744.el7]
-- [s390] pkey: Introduce new API for secure key verification (Hendrik Brueckner) [1380349]
-- [s390] pkey: Fix wrong handling of secure key with old MKVP (Hendrik Brueckner) [1380349]
-- [s390] pkey: Introduce pkey kernel module (Hendrik Brueckner) [1380349]
-- [s390] crypto: Add PCKMO inline function (Hendrik Brueckner) [1380349]
-- [s390] crypto: simplify CPACF encryption / decryption functions (Hendrik Brueckner) [1380349]
-- [s390] crypto: cpacf function detection (Hendrik Brueckner) [1380349]
-- [s390] crypto: simplify init / exit functions (Hendrik Brueckner) [1380349]
-- [s390] crypto: simplify return code handling (Hendrik Brueckner) [1380349]
-- [s390] crypto: cleanup cpacf function codes (Hendrik Brueckner) [1380349]
-- [s390] crypto: allow to query all known cpacf functions (Hendrik Brueckner) [1380349]
-- [s390] crypto: cleanup and move the header with the cpacf definitions (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix missing newlines at some debug feature messages (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Add some debug messages on failure (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Removed unneeded debug feature directory creation (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: tracepoint definitions for zcrypt device driver (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Rework ap init in case of out of range domain param (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Rework debug feature invocations (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix blocking queue device after unbind/bind (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: export additional symbols (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Enable request count reset for cards and queues (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: use spin_lock_bh for all queue locks and unlocks (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: get rid of variable length arrays (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: add missing memory clobber to ap_qci inline assembly (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix ap_max_domain_id for older machine types (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Correct function bits for CEX2x and CEX3x cards (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fixed attrition of AP adapters and domains (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Introduce new zcrypt device status API (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: add multi domain support (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Introduce workload balancing (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: get rid of ap_poll_requests (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: header for the AP inline assmblies (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: simplify message type handling (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Move the ap bus into kernel (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix zcrypt suspend/resume behavior (Hendrik Brueckner) [1380349]
-- [s390] crypto: use basic blocks for ap bus inline assemblies (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix cryptographic device id in kernel messages (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix AP queue handling if queue is full (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix initialisation when zcrypt is built-in (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix kernel crash on systems without AP bus support (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: use system work queue for ap_scan_bus (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: remove support for PCICC and PCICA cards (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: introduce state machine for the AP bus (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: use explicit return code for flushed requests (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: cleanup AP bus timer code (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: fix suspend/resume of AP bus devices (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: fix memory leak with ap configuration data (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: remove duplicate low level functions (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: enable odd RSA modulus sizes in CRT format (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: enable s390 hwrng to seed kernel entropy (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix invalid domain handling during ap module unload (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: fixed ap poll timer behavior (Hendrik Brueckner) [1380349]
-- [s390] ap_bus: remove 31 bit support (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fixed possible race condition in zcrypt module handling (Hendrik Brueckner) [1380349]
-- [s390] ap_bus: Make modules parameters visible in sysfs (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: add length check for aligned data to avoid overflow in msg-type 6 (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: additional check to avoid overflow in msg-type 6 requests (Hendrik Brueckner) [1380349]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-743.el7]
-- [fs] nfsd: Fix general protection fault in release_lock_stateid() ("J. Bruce Fields") [1500815]
-- [fs] nfs/filelayout: fix oops when freeing filelayout segment (Steve Dickson) [1463784]
-- [fs] nfs/filelayout: Fix racy setting of fl->dsaddr in filelayout_check_deviceid() (Steve Dickson) [1463784]
-- [fs] nfs/filelayout: fix NULL pointer dereference in fl_pnfs_update_layout() (Steve Dickson) [1463784]
-- [fs] nfs/filelayout: call GETDEVICEINFO after pnfs_layout_process completes (Steve Dickson) [1463784]
-- [fs] NFS store nfs4_deviceid in struct nfs4_filelayout_segment (Steve Dickson) [1463784]
-- [fs] nfs: flexfilelayout: remove v3-only data server limitation (Scott Mayhew) [1495198]
-- [mm] mm, hugetlb: use pte_present() instead of pmd_present() in follow_huge_pmd() (Rafael Aquini) [1472460]
-- [mm] fix invalid node in alloc_migrate_target() (Rafael Aquini) [1472460]
-- [mm] add !pte_present() check on existing hugetlb_entry callbacks (Rafael Aquini) [1472460]
-- [mm] fs/proc/meminfo.c: include cma info in proc/meminfo (Serhii Popovych) [1430990]
-- [mm] cma: split cma-reserved in dmesg log (Serhii Popovych) [1430990]
-- [lib] swiotlb: ensure that page-sized mappings are page-aligned (Stanislaw Gruszka) [1487054]
-- [sound] alsa - fix saa7134-alsa module unload oops (Jaroslav Kysela) [1474569]
-- [block] blk-mq: map all HWQ also in hyperthreaded system (Ming Lei) [1489737]
-- [x86] pinctrl: intel: Add Intel Lewisburg GPIO support (Prarit Bhargava) [1490513]
-- [x86] apic: Update TSC_DEADLINE quirk with additional SKX stepping (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Silence "FW_BUG TSC_DEADLINE disabled due to Errata" on hypervisors (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Silence "FW_BUG TSC_DEADLINE disabled due to Errata" on CPUs without the feature (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Add TSC_DEADLINE quirk due to errata (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Change the lapic name in deadline mode (Vitaly Kuznetsov) [1503160]
-- [x86] timers/apic: Fix imprecise timer interrupts by eliminating TSC clockevents frequency roundoff error (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Serialize LVTT and TSC_DEADLINE writes (Vitaly Kuznetsov) [1503160]
-- [x86] kaslr: Enable KASLR by default (Baoquan He) [1491226]
-- [x86] x86/boot/kaslr: Prefer mirrored memory regions for the kernel physical address (Baoquan He) [1446684]
-- [x86] efi: Introduce efi_early_memdesc_ptr to get pointer to memmap descriptor (Baoquan He) [1446684]
-- [x86] x86/boot/kaslr: Rename process_e820_entry() into process_mem_region() (Baoquan He) [1446684]
-- [x86] x86/boot/kaslr: Switch to pass struct mem_vector to process_e820_entry() (Baoquan He) [1446684]
-- [x86] x86/boot/kaslr: Wrap e820 entries walking code into new function process_e820_entries() (Baoquan He) [1446684]
-- [x86] ftrace/x86: Set ftrace_stub to weak to prevent gcc from using short jumps to it (Jerome Marchand) [1502872]
-- [x86] pci: vmd: Free up IRQs on suspend path (Myron Stowe) [1498945]
-- [x86] x86/intel_idle: add Gemini Lake support (Steve Best) [1464886]
-- [x86] intel_idle: add BXT support (Steve Best) [1464886]
-- [mfd] intel-lpss: Add Intel Gemini Lake PCI IDs (Steve Best) [1457134]
-- [mfd] lpss: Add PCI IDs for Intel Broxton B-Step platform (Steve Best) [1457134]
-- [mfd] lpss: Add Intel Broxton PCI IDs (Steve Best) [1457134]
-- [kernel] audit: add ambient capabilities to CAPSET and BPRM_FCAPS records (Richard Guy Briggs) [1465614]
-- [kernel] audit: remove unnecessary curly braces from switch/case statements (Richard Guy Briggs) [1465614]
-- [kernel] sched: add macros to define bitops for task atomic flags (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: Replace BUG(!spin_is_locked()) with assert_spin_lock (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] sched: fix confusing PFA_NO_NEW_PRIVS constant (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: implement SECCOMP_FILTER_FLAG_TSYNC (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: allow mode setting across threads (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: introduce writer locking (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: split filter prep from check and apply (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] sched: move no_new_privs into new atomic flags (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: add "seccomp" syscall (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: split mode setting routines (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: extract check/assign mode helpers (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: create internal mode-setting function (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] maintainers: create seccomp entry (Bruno Eduardo de Oliveira Meneguele) [1458278]
-
-* Thu Oct 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-742.el7]
-- [net] netfilter: xtables: add scheduling opportunity in get_counters (Florian Westphal) [1485515]
-- [net] netfilter: x_tables: pack percpu counter allocations (Florian Westphal) [1485515]
-- [net] netfilter: x_tables: pass xt_counters struct to counter allocator (Florian Westphal) [1485515]
-- [net] netfilter: x_tables: pass xt_counters struct instead of packet counter (Florian Westphal) [1485515]
-- [net] sched: cls_matchall: fix crash when used with classful qdisc (Davide Caratti) [1460213]
-- [net] Define SCM_TIMESTAMPING_PKTINFO on all architectures (Hangbin Liu) [1421164]
-- [net] ethernet: update drivers to make both SW and HW TX timestamps (Hangbin Liu) [1421164]
-- [net] allow simultaneous SW and HW transmit timestamping (Hangbin Liu) [1421164]
-- [net] add new control message for incoming HW-timestamped packets (Hangbin Liu) [1421164]
-- [net] add function to retrieve original skb device using NAPI ID (Hangbin Liu) [1421164]
-- [net] tcp: fix SCM_TIMESTAMPING_OPT_STATS for normal skbs (Hangbin Liu) [1421164]
-- [net] skbuff: Introduce skb_mac_offset() (Hangbin Liu) [1421164]
-- [net] ip6_tunnel: do not allow loading ip6_tunnel if ipv6 is disabled in cmdline (Xin Long) [1491091]
-- [net] ip6_gre: skb_push ipv6hdr before packing the header in ip6gre_header (Xin Long) [1491105]
-- [net] ipv6: avoid unregistering inet6_dev for loopback (Hangbin Liu) [1491465]
-- [net] ipv4: do metrics match when looking up and deleting a route (Xin Long) [1475642]
-- [net] udp: force symbol checksum change for lookup functions (Paolo Abeni) [1444980]
-- [net] udp: inuse checks can quit early for reuseport (Paolo Abeni) [1444980]
-- [net] udp reuseport: fix packet of same flow hashed to different socket (Paolo Abeni) [1444980]
-- [net] soreuseport: Resolve merge conflict for v4/v6 ordering fix (Paolo Abeni) [1444980]
-- [net] revert: "udp_offload: put sk before returning" (Paolo Abeni) [1444980]
-- [net] udp: no longer use SLAB_DESTROY_BY_RCU (Paolo Abeni) [1444980]
-- [net] add SOCK_RCU_FREE socket flag (Paolo Abeni) [1444980]
-- [net] sock: introduce sk_destruct() (Paolo Abeni) [1444980]
-- [net] soreuseport: fix ordering for mixed v4/v6 sockets (Paolo Abeni) [1444980]
-- [net] soreuseport: fix NULL ptr dereference SO_REUSEPORT after bind (Paolo Abeni) [1444980]
-- [net] udp: fix potential infinite loop in SO_REUSEPORT logic (Paolo Abeni) [1444980]
-- [net] soreuseport: fast reuseport UDP socket selection (Paolo Abeni) [1444980]
-- [net] soreuseport: define reuseport groups (Paolo Abeni) [1444980]
-- [net] udp6: Drop SCORE2_MAX optimization in socket lookup (Paolo Abeni) [1444980]
-- [net] udp: Neaten and reduce size of compute_score functions (Paolo Abeni) [1444980]
-- [net] udp: Neaten function pointer calls and add braces (Paolo Abeni) [1444980]
-- [net] udp: remove blank line between set and test (Paolo Abeni) [1444980]
-- [net] udp: remove else after return (Paolo Abeni) [1444980]
-
-* Thu Oct 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-741.el7]
-- [sound] alsa: SoC - codecs - regmap fix (Jaroslav Kysela) [1463624]
-- [sound] alsa: SoC - codecs - fix the  of header files (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: uapi: Add new tokens for module common data (Jaroslav Kysela) [1463624]
-- [sound] alsa: SoC - Intel SST Haswell - add missing trace header file (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: add const to snd_soc_codec_driver structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: Add DMI match for Geminilake reference platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: disable IRQ when jack is NULL (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix jack type detect error (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt298 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: Add DMI match for Broxton-P reference platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix null deref on acpi driver data (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix capture doesn't work at some cases (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: reset AD dilter is there is no MCLK (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: Don't enable IRQ in i2c_probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: enable IRQ for jack detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix remove unnedded clk setting (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix wrong setting of gpio2_en (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: Make rt298_index_def const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: correct index default value (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: set register non-volatile by default (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rl6347a: Clean up unneeded inclusion of header files (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: remove meanless pr_info (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop owner assignment from i2c_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add rt298 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Allow bespoke configuration post widget creation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: make function stub static (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: fix boot warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Constify reg_default tables (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmi: Mark all struct dmi_system_id instances const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: constify gpio_chip structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Constify snd_soc_dai_ops variables (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: add const to snd_soc_codec_driver structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: reset dma_offset at hw_params (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add the sanity checks of the buffer related address (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Support the DSP recording continuously after the hotwording triggered (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514-spi: Remove unneeded linux/miscdevice.h include (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Remove superfluous linux/kthread.h inclusion (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514-spi: Convert to use devm_* API (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Fix the issue that the variable dereferenced before checking (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Guard Hotword Model bytes loading (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: expose Hotword Model control (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: make array rt5514_dai static (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Eliminate the noise in the ASRC case (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Use the IS_ENABLED to supports the module build (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: constify acpi_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add the I2S ASRC support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Support the TDM docking mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: constify snd_soc_dai_ops structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Move the auto disable DSP function to set_bias_level() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add ACPI match ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add more width and channels support in the TDM mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: fix gcc-7 warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Unconfuse the rt5514 at probe / resume time (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Avoid relying on uninitialized "val" value (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Mark rt5514_i2c_driver as static (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add the DMIC initial delay to wait it ready (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: make the volume TLV to match the units 0.01dB (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5514 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add the MCLK handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: add rt5514 SPI driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: add rt5514 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Changed device property read function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Modified DAPM widget and map to enable/disable VI sense path (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Added PM suspend and resume function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Modified chip default register values (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Added missing \n to end of dev_err messages (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Updated volatile register list (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove cache_bypass from snd_soc_codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add support for Maxim Integrated MAX98927 Amplifier (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Add delay for jack plug in (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Fine tune for the headphone output pop sound (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Seprate the DC offset between headphone and headset (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Add the delay time to correct the calibration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: constify acpi_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Correct the mixer switch setting and remove redundant routing path (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Modify the default value for ASRC function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: constify snd_soc_dai_ops structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Add the manual offset field to compensate the DC offset (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: add in missing loop counter to avoid infinite loop (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Modify the power sequence for reducing the pop sound (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Optimize the Jack Type detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Update the calibration funciton (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Update the HW default values based on the shipping version (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Check the JD status in the resume function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Fix the IRQ issue (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: rename rt5668 as rt5663 v2 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add jd function for rt5663 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: fix a debug statement (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: fix platform_no_drv_owner.cocci warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: fix sparse warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: refine error handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add rt5663 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add es8316 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Update driver to use device_property* FW functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Fix incorrect usage of bitwise '&' operator for SRM check (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: add ACPI support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on da7213 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Improve 32KHz mode PLL locking (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Refactor sysclk(), pll() functions to improve handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Improve driver efficiency with regards to MCLK usage (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Default to 64 BCLKs per WCLK to support all formats (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Allow PLL disable/bypass when using 32KHz sysclk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Update PLL ranges to improve locking at frequency boundary (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Default PC counter to free-running when DAI disabled (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Add checking of SRM lock status before enabling DAI (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Add DAI DAPM event to control DAI clocks (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Add support to handle mclk data provided to driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Add DT support to codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop owner assignment from i2c_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Replace direct snd_soc_codec dapm field access (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Move bias level update to the core (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add snd_soc_kcontrol_codec() helper function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec: Simplify ASoC probe code (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Use SOC_ENUM_SINGLE_DECL() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Use params_width() rather than memory format (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Fix setting dmic_samplephase and dmic_clk_rate (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: Add da7213 codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98090: remove superflous check for 'micbias' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop owner assignment from i2c_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: spi: Drop owner assignment from spi_drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Revise the wrong name in the header file (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Remove never used variables (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Refactor code to avoid comparison unsigned >= 0 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Hide platform data in the module sources (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Move platform code to board file (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Introduce proper table for ACPI enumeration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add OF device ID table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add ACPI support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5677 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: use gpiochip data pointer (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Avoid duplicate the same test in each switch case (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: set PLL_CTRL2 non-volatile (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Reconfigure PLL1 after resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: use 'active low' logic for reset pin (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Avoid the pop sound that comes from the filter power (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Allow arbitrary block read/write via SPI (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fix rt5677 spi driver build (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add function "rl6231_get_pre_div" to correct the dmic clock calculation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Return error if devm_gpiod_get_optional return ERR_PTR (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Remove NULL test for desc before gpiod_set_value_cansleep call (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Switch to use unified device property API (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Switch to use descriptor-based gpiod API (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Include gpio driver header (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Prefix hexadecimal ID register value with 0x in error print (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace direct snd_soc_codec dapm field access (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add reset-gpio dts option (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add DMIC ASRC detect function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: add i2s asrc clk src selection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fixed wrong DMIC ref clock (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Move bias level update to the core (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Route all bias level updates through the core (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: add register patch for PLL (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: add API to select ASRC clock source (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Keep the LDO2 powered while used in the suspend mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the chip type to distinguish the setting of the clock source (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Correct the routing paths of that after IF1/2 DACx Mux (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fix SPI dependency (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace w->codec snd_soc_dapm_to_codec(w->dapm) (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the slot_width "25" support in the TDM mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Use the regmap functions instead of the snd_soc functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Modify the behavior that updates the PLL parameter (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the MICBIAS VDD setting in the platform data (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Adjust the routing of "PLL1" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the ASRC support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Revise the filter powers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fixed rt5677_dsp_vad_put rt5677_dsp_vad_get panic (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: make volume TLV closer to reality (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Fix the issue that the regmap_range "rt5677_ranges" cannot be accessed (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Set the slow charge of the vref in the end of the power sequences (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Follow the gpio naming rule to rename the irq function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Align the reg_default table with tab character (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Modify the default value of the MX-8E[4] for ASRC function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add TDM channel mux in DAC side of IF1 and IF2 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Use specific r/w function for DSP mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Minor coding style and typo fix (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add TDM channel mapping function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: rt5677_irq_init() can be static (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: add GPIO IRQ support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fix build when kernel compiled without GPIOLIB support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Print more information if setting DAI clock failed (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Support DSP function for VAD application (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add option to configure gpio as floating/pullup/pulldown (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add dts properties for input/output differential configuration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add a configuration option for LDO2_POW pin (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add sidetone function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the TDM function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Remove return value checking for gpiochip_remove() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the GPIO function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add DMIC2 clock selection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Remove the redundant definition in head file (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: correct mismatch widget name (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Modify the voltage level in the BIAS OFF stage (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Convert to use rl6231_pll_calc (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add a PMD case to MICBIAS1 event (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace the string "Gain" to "Volume" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace the string "source" to "Source" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace the string "micbias1" to "MICBIAS1" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Remove unneeded goto in rt5677_i2c_probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Convert to use rl6231_calc_dmic_clk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Convert to use rl6231_get_clk_info (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Convert to use module_i2c_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add RT5677 CODEC driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Fix HP detection procedure for all MCLK frequencies (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Connect output enable register to DAIOUT (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Improve pop/click performance for sensitive HPs (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: fix inappropriate condition statement (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Disable AAD if codec is not a wake-up source (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Reset codec gracefully, if still active (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Support HP detect procedure when MCLK not present (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: software reset codec at probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on da7219 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Make more efficient use of MCLK within driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Convert driver to use generic device/fwnode functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7129: Add missing of acpi.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Add initial ACPI id for device (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Disallow unsupported 32KHz clock setting in set_dai_sysclk() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Update PLL ranges and dividers to improve locking (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Correct BCLK inversion for DSP DAI format mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Add regmap patch to support old silicon (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Remove support for 32KHz PLL mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Add support for 1.6V micbias level (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Remove internal LDO features of codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Update REFERENCES reg default, in-line with HW (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Disable regulators on probe() failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Fix Sidetone to work regardless of DAI capture (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Use logical instead of bitwise OR for boolean expression (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Fix da7219->alc_en state when enabling ALC (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Improve error checking of mclk enable/disable (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Use of_match_ptr() when assigning match table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Improve error handling for regulator supplies (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: Add da7219 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: correct typo of semaphore comment (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: change crosstalk-bypass property to bool type (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: debug message of crosstalk bypass (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: make crosstalk function optional (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: fix jack type detection issue after resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: default value for property (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: automatic BCLK and LRC divde in master mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: rt286: add Thinkpad Helix 2 to force_combo_jack_table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5640: Add "10EC3276" ACPI ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5640: use msleep() for long delays (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5640: move DAC2 Power to rt5640_dapm_widgets (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: set high voltage for capless power (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: Add jack detection workaround for MINIX Z83-4 based devices (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: make rt5645_platform_data const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5645: add quirks for Asus T100HA (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: Add quirk override by module option (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: enable speaker protection features (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: del btn_check_timer on remove (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: Add jack detection workaround for GPD Win (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: add inv_jd1_1 flag (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: rename jd_invert flag in platform data (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: read jd1_1 status for jd detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: Add OF device ID table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: fix error handling for gpio detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: add ACPI ID 10EC3270 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5670: add jack detection quirk for Dell Venue 5585 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: add symmetric_rates flag (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: merge ADC L/R Mux (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: fix incompatible pointer type of set_sysclk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: move set_sysclk to codec level (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: remove duplicate route (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: fix wrong audio route (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5670: fix jd mode for Lenovo Miix 2 10 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5670: add Thinkpad Tablet 10 quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5670: add quirk for Lenovo Thinkpad 10 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5651: remove unexisting Muxes (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: ssm4567: Add OF device ID table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add the vendor nid for Geminilake HDMI (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: constify snd_soc_dai_ops structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Update sig_bits based on converter capability (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: don't update the iterator in pcm list remove (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: avoid reference to invalid variable of the pin list (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add device id for Geminilake (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add machine pin widget for each port (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Use ASoC jack instead of snd_jack (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add support for multiple ports to a PCM (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Configure pin verbs for MST (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Handle MST pin jack detection at boot/resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add MST verb support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add support to handle MST capable pin (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Begin to add support for DP Multi-stream audio (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Move channel info from pin to PCM structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Register widget event handlers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: use audio component framework to read ELD (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Enable pin and converter in prepare (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec: use enable pin to control dmic start and stop (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec: add DT support in dmic codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-utils: make snd_soc_platform_driver const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: show index in debug when adding DAPM routes (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Dont free template strings whilst they are in use (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: rephrase deferred binding warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Fix usage of SND_SOC_TPLG_INDEX_ALL during load (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: remove unused 'err' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: dapm: Add new widget type for constructing DAPM graphs on DSPs (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Allow bespoke configuration post widget creation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: use j for internal loop counter (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Fix to store enum text values (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: do not close shared backend dailink (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: jack: Manage gpios via devres (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: jack: fix snd_soc_codec_set_jack return error (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: dapm: handle probe deferrals (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: dapm: fix some pointer error handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: device property: Fix usecount for of_graph_get_port_parent() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: snd_soc_unregister_component() unregister all component (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: use snd_soc_component_get_dapm() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add a sanity check before using dai driver name (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: Allow searching dai driver name in snd_soc_find_dai (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add Component level set_jack (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add Component level set_pll (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add Component level set_sysclk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove duplicate definition of dapm_routes/num_dapm_routes (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove duplicate definition of dapm_widgets/num_dapm_widgets (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove duplicate definition of controls/num_controls (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: use snd_soc_rtdcom_add() and convert to consistent operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: add snd_soc_rtdcom_xxx() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: bunch up bit field for snd_soc_pcm_runtime (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove snd_soc_platform_trigger() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove .bespoke_trigger from snd_soc_platform_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove .delay from snd_soc_platform_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Introduce SOC_SINGLE_S8_TLV() macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove snd_soc_pcm_set/get_drvdata() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: jack - check status of GPIO-based pins on resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: jack: add snd_soc_codec_set_jack (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-pcm: Remove unused 'debugfs_dpcm_state' entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove cache_bypass from snd_soc_codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove duplicate mutex_unlock from snd_soc_unregister_component() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: rename "cmpnt" to "component" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: Use IS_ERR_OR_NULL() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: Remove unneeded dentry member from snd_soc_codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: fix pcm-creation regression (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: fix semicolon.cocci warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop invalid DMI fields when setting card long name from DMI info (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add snd_soc_get_dai_id() function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Provide a dummy wrapper of snd_soc_set_dmi_name() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: verify Sound Card normality (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: core: remove pointless auxiliary from snd_soc_component (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: don't dereference NULL pcm_{new,free} (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add space around '=' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop unnecessary debugfs ifdef (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove OF adjusting for snd_soc_of_parse_card_name (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove OF adjusting for snd_soc_of_parse_audio_prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove OF adjusting for snd_soc_of_parse_audio_simple_widgets (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove OF adjusting for snd_soc_of_parse_audio_routing (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: core: add optional pcm_new callback for DAI driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: core: Add API to use DMI name in sound card long name (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Fixup some small kernel-doc typos (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add Component level pcm_new/pcm_free (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Fix use-after-free at card unregistration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: enable "dai-format" on snd_soc_of_parse_daifmt() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: compress: Set reasonable compress id string (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: compress: Delete error messages for a failed memory allocation in snd_soc_new_compress() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: compress: Derive substream from stream based on direction (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add IPC to configure the copier secondary pins (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add map for Maxim IV Feedback (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add jack port initialize in kbl machine drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add MST route change to kbl machine drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Update module id in pin connections (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Parse and update module config structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Populate module data from topology manifest (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add driver structures to be filled from topology manifest (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Commonize parsing of format tokens (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Parse multiple manifest data blocks (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix uninitialized return (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix DSP core ref count for init failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to free correct dev id in free_irq (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to free resources for dsp_init failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to free dsp resource on ipc_init failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: Fix GPIO headset detection regression (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Remove superfluous snd_soc_jack_free_gpios() call (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Headset button support in kabylake machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Enabling ASRC for RT5663 codec on kabylake platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl_rt5663_rt5514_max98927: Add rt5514 spi dailink (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: medfield: Delete an error message for a failed memory allocation in snd_mfld_mc_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: constify snd_compr_codec_caps structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: make skl_dsp_fw_ops const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: make snd_pcm_hw_constraint_list const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: make snd_soc_platform_driver const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: constify pci_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: add pci id for cnl (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: add dsp ops for cannonlake (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: Add sst library functions for cnl platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: Unstatify common ipc functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Move platform specific init to platform dsp_init() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: Add cnl dsp functions and registers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add dsp cores management (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Use num_core to allocate instead of macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add num of cores in dsp ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add map for new DAIs for Multi-Playback & Echo Ref (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add DAI links for Multi-Playback & Echo-reference (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add new FEs for Multi-Playback & Echo-Reference (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Use correct nuvoton codec ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix potential null pointer dereference (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove return check for skl_codec_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Remove code loader reference in cleanup (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Reset the controller in probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Enabling 4 slot IV feedback for max98927 on Kabylake platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Use MCLK instead of BLCK as the sysclock for RT5514 codec on kabylake platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Enabling ASRC for RT5663 codec on kabylake platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake RT5663 machine driver entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake machine driver for RT5663 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: board: Fix missing sentinel for bxt_board_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix missing sentinels in sst_acpi_mach (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: board: Add Geminilake platform support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: board: Remove .owner initialization in bxt_rt298 driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: fix type in debug message (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix default dma_buffer_size (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove driver debugfs exit (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: explicitly add the headers sst-dsp.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add support to read firmware registers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add sram address to sst_addr structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Debugfs facility to dump module config (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add debugfs support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht_bsw_rt5672: 19.2MHz clock for Baytrail platforms (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Move codec sysclk config to codec_init function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: skl_rt286: Add deepbuffer dai link (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix dma buffer size calculation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add deep buffer support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake RT5663+RT5514+MAX98927 machine driver entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Convert all sst_codecs data definition to c99 style (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake machine driver for RT5514, RT5663 and MAX98927 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: byt-max98090: Add GPIO ACPI mapping table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skl: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: byt: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: add machine driver for BYT/CHT + ES8316 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: boards: Add 4-channel DMIC fixup (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add enum control for mic selection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add mic-select module type (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: Delete sst_shim_regs64; saved regs are never used (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake RT5663+MAX98927 machine driver entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake Realtek Maxim machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Improve machine driver selection based on quirk data (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Move quirk to identify correct machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Create a helper to search for matching machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Convert skl machine data to C99 style (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Convert atom machine data to C99 style (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Support for multiple data blocks (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to parse consecutive string tkns in manifest (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix IPC rx_list corruption (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: Remove unused function sst_restore_shim64() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: cht_bsw_max98090_ti: Remove unused function cht_get_codec_dai() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: fix spelling mistake: "allocationf" -> "allocation" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: localize variable without external linkage (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix typo for token d0i3 caps (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Move i915 registration to worker thread (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Return negative error code (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix unused variable warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: fix uninitialized pointer use (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add loadable module support on KBL platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Modify load_lib_ipc arguments for a nowait version (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Register dsp_fw_ops for kabylake (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Modify arguments to reuse module transfer function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Commonize library load (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Move sst common initialization to a helper function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: bytcr_rt5640: log quirk configuration errors (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: bytcr_rt5640: Fix a typo and quirk parameter type (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Fix PM and non-atomic crash in bytcr drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: bytcr_rt5640: Allow quirk set via module option (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Call snd_soc_set_dmi_name() unconditionally (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix a couple user after free bugs (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Uninitialized variable in probe_codec() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: update Thinkpad 10 quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add support for deferred DSP module bind (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: fix spelling mistake: "Timout" -> "Timeout" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix module state after unbind and delete (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix DMA position reporting for capture stream (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Rearrangement of code to cleanup SKL SST library (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: remove hard coded ACPI path (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove redundant vmixer handler (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Don't unload module when in use (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add 16-bit constraint to FE bxt_rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Use the sig_bits to define dai bps capability (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: remove unused variable data and associated code (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Don't print FW version repeatedly (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Update bxt_da7219_max98357a to add a new (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix parameter overwrite for KPB Module (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix module load when module size > DMA buffer size (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove get dsp_ops in cleanup routine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Disable notifications at boot after DSP FW init (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove BE prepare ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Reload the firmware in case of D3 failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Update DSP core state in D0 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Disable interrupt when DSP is in D3 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix not to stop src pipe in pre pmd event handler (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to delete DSP pipe after stopping pipe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Enable bytcht_nocodec machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: boards: add card for MinnowBoardMax/Up I2S access (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: enable BYT/CHT+DA7213 machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: add machine driver for BYT/CHT + DA7213 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: code cleanup for pin fixup limitation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: use a helper macro to rounding-up calculation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: fix invalid memory access due to wrong reference of pointer (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: optimize ROM init retries (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Store the FW/Library context at boot (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bdw-rt5677: Use devm_gpiod_get() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: fix spelling mistake: "allocationf" -> "allocation" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Add jack port initialize in bxt_rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add Geminlake IDs (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Check device type to get endpoint configuration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Add jack port initialize in da7219_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add jack port initialize in nau88l25_ssm4567 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add jack port initialize in nau88l25_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add jack port initialize in rt286 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Create ASoC jack for hdmi in bxt_da7219_max98357 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Create ASoC jack for hdmi in bxt_rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Create ASoC jack for hdmi in nau88l25_ssm4567 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Create ASoC jack for hdmi in skl_nau88l25_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Create ASoC jack for hdmi in rt286 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add route change to nau88l25_ssm4567 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add route change to nau88l25_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Add route change to rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Report Platform ID info from NHLT (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: add channel map support in bxt_da7219_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Add route change to da7219_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add route change to rt286 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: add channel map support in rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: cht-bsw-rt5645: fix unused variable compiler warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht-bsw-rt5645: fix DAI formats (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: add support for ALC3270 codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht-bsw-rt5645: select ASRC source based on routing quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht-bsw-rt5645: add quirks for SSP0/AIF1/AIF2 routing (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: baytrail: add quirk for Lenovo Thinkpad 10 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht_bsw_rt5645: harden ACPI device detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: add machine driver for baytrail-rt5645 hardware (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: add support for RT5648 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: add support for Realtek 5651 on Cherrytrail (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: Add HP Pavilion x2 10-p000 machine entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht_bsw_rt5645: add Baytrail MCLK support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: fix frame polarity (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: boards: remove .pm_ops in all Atom/DPCM machine drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: Configure media_loop1 and sprot_loop in stereo (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Use set_tdm_slot to set the dma channel (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: boards: Remove ignore_suspend for WoV streams (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: set the resume point to LPIB (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Don't reset pass-through pipe in BE prepare (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Use DMI name for sound card long name in Broadwell machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: remove ignored dependencies (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: select DW_DMAC_CORE since it's mandatory (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: rename SND_SST_MFLD_PLATFORM to SND_SST_ATOM_HIFI2_PLATFORM (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: remove redundant select SND_SOC_INTEL_SST (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Use DSP poll API to poll FW status (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: common: Update dsp register poll implementation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Clean up manifest info (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bytcr_rt5640: quirks for Insyde devices (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Removed unused skl_get_format() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add helper function to setup host/link dma (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Configure DMA in PRE_PMD handler of Mixer (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Update link_index and format in pipe params (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: remove unused 'ret_val' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: remove unused 'msg_high' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: remove unused 'ops' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: remove unused 'ret' (Jaroslav Kysela) [1463624]
-- [sound] alsa: revert "[sound] alsa: dmaengine: dw: pass platform data via struct dw_dma_chip" (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: export probe()/remove() and Co to users (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: some Intel devices has no memcpy support (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: define DW_DMA_MAX_NR_MASTERS (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: amend description of dma_dev field (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: split dma-dw.h to platform and private parts (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: move private definitions to regs.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: move dw_dmac.h to where it belongs to (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: pci: add ID for WildcatPoint PCH (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: use dw_dmac autoconfiguration in PCI driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: always export dw_dma_{en,dis}able (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: add PCI IDs for Braswell DMAs (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: remove DEFINE_PCI_DEVICE_TABLE macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: convert to use SET_LATE_SYSTEM_SLEEP_PM_OPS (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: Add suspend and resume handling for PCI mode DW_DMAC (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: add a PCI ID for Intel Haswell SoC (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: add PCI part of the driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: introduce dw_dma_on() helper (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: move clock operations to platform.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: introduce generic filter function (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: apply both HS interfaces and remove slave_id usage (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: convert dw_dma_slave to use explicit HS interfaces (Jaroslav Kysela) [1463624]
-- [sound] alsa: avr32: at32ap700x: don't rely on default DMA masters (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: don't perform DMA when dmaengine_submit is called (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: add debug message to dwc_dostart_first_queued (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: introduce dwc_dostart_first_queued() helper (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: check return code of dma_async_device_register() (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: fix regression in dw_probe() function (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: enable clock before access (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: went back to plain {request,free}_irq() calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: allocate memory in two stages in probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: remove leftovers in the comment blocks (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: use pad instead of casting dma_addr_t (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: join split up messages (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: fix style of multiline comment (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: use DMA_COMPLETE for dma completion status (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: return DMA_PAUSED only if cookie status is DMA_IN_PROGRESS (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: return DMA_SUCCESS immediately from device_tx_status() (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: allow shared interrupts (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: improve comparison with ~0 (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: split driver to library part and platform code (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: move dw_dmac driver to an own directory (Jaroslav Kysela) [1463624]
-- [sound] alsa: gpio: acpi: Add managed variant of acpi_dev_add_driver_gpios() (Jaroslav Kysela) [1463624]
-- [sound] alsa: acpi / gpio: Driver GPIO mappings for ACPI GPIOs (Jaroslav Kysela) [1463624]
-- [sound] alsa: regmap: Mark reg_defaults in regmap_multi_reg_write as const (Jaroslav Kysela) [1463624]
-- [sound] alsa: regmap: new API regmap_multi_reg_write() definition (Jaroslav Kysela) [1463624]
-- [sound] alsa: device property: Add function to search for named child of device (Jaroslav Kysela) [1463624]
-- [sound] alsa: of_graph: add of_graph_get_endpoint_count() (Jaroslav Kysela) [1463624]
-- [sound] alsa: of_graph: add of_graph_get_port_parent() (Jaroslav Kysela) [1463624]
-- [sound] alsa: of_graph: add of_graph_get_remote_endpoint() (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: introduce of_graph_get_remote_node (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: errno.h in of_graph.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: fix a build error to of_graph_get_endpoint_by_regs function (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: add helper for getting endpoint node of specific identifiers (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: Explicitly linux/types.h in of_graph.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: Add of_graph_get_port_by_id function (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: Add for_each_endpoint_of_node helper macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: Fix of_graph_parse_endpoint stub for !CONFIG_OF builds (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: move common endpoint parsing to of (Jaroslav Kysela) [1463624]
-- [sound] alsa: v4l: of: Remove struct v4l2_of_endpoint remote field (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: move graph helpers from media/v4l2-core to of (Jaroslav Kysela) [1463624]
-- [sound] alsa: v4l: of: Return an int in v4l2_of_parse_endpoint() (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Avoid MST pipe handling for LPE audio (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Remove the unused pending_notify from LPE platform data (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Stop pretending to mask/unmask LPE audio interrupts (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Split snd_intelhad into card and PCM specific structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Prepare LPE audio ctls for multiple PCMs (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Clear the pdata.notify_lpe_audio pointer before teardown (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Fix runtime PM for LPE audio (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't enable runtime PM as default (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Use runtime PM autosuspend (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't bail out from PCM ops when disconnected (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Minor code rearrangement (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Stop the stream when buffer is processed after disconnection (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Avoid register accesses during disconnection (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't return an error from chmap ctl at disconnected (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix memory leak in had_build_channel_allocation_map() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Use snd_pcm_stop_xrun() for connection / disconnection paths (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Implement jack control (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused stream.running field (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Handle reset at prepare callback (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Support S16 format (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Support S32 format (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Allow no-period-wakeup setup (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Allow single period PCM operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't pass SNDRV_PCM_INFO_BATCH flag (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Cache AUD_CONFIG register value (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Rearrange defines (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: mark hdmi suspend/resume functions as __maybe_unused (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix driver name string overflow (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Rename had_enable_audio_int() to had_ack_irqs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop suspicious U24 format support (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Refactor PCM process engine (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Unify local function prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Minor cleanup of reset buffer procedure (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't check connection in lowlevel accessors (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Explicit specify 32bit DMA (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Rename drv_status to connected (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Yet more tidy-up and clean-ups (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Simplify comments (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Set CA bits for DisplayPort too (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Create ELD control element (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Clean up unused defines and inclusions (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Reduce redundant register field names (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Use the standard ELD bytes definitions (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Move stream status into pcm_stream_info (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Implement runtime PM (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Properly manage PCM substream lifetype (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused fields from pcm_stream_info (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop redundant had_stream_pvt (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop superfluous state field (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop flag_underrun field (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix racy access to chmap (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove superfluous irqsave flags (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Constfy tables (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove _v[12] suffices (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Tidy up codes (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop had_get_hwstate() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove superfluous check at resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix sleep-in-atomic via i915 notification (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop superfluous PCM private_free (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused fields from snd_intelhad struct (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove indirect call of snd_pcm_period_elapsed() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix for CONFIG_PM=n (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Replace pr_xxx() with dev_xxx() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fold intel_hdmi_audio_if.c into main file (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Flatten two abstraction layers (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused hdmi_audio_query() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Call snd_card_register() at the end (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Embed snd_intelhad into snd_card (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Move dma_mask debug print into intel_hdmi_lpe_audio.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused hw_silence field (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Move the global underrun_count to struct snd_intelhad (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop the global platform device reference (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix possible stale interrupt calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Fix use after free in lpe_audio_platdev_destroy() (Jaroslav Kysela) [1463624]
-- [sound] alsa: gpu: drm: i915l intel_lpe_audio: Fix kerneldoc comments (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Pass platform device to LPE audio notifier (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Pass pipe to LPE audio notification (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: add DisplayPort amp unmute for LPE audio mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: add DP support in LPE audio mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Add support for audio driver notifications (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: setup bridge for HDMI LPE audio driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Handle the error from hdmi_audio_probe() properly (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Use config base depending on the pipe (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: fix resource_size.cocci warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused mid_hdmi_audio_is_busy() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Call event callback directly (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop useless mutex at probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Pass snd_intelhad object to helpers (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop snd_intel_had_interface indirect calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Replace indirect query_ops with direct calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Replace indirect register ops with direct calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't set PCM state to DISCONNECTED (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: hdmi: fix returnvar.cocci warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop indirect calls of had_ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove v1 ops and structs (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: intel_hdmi: add definitions and logic for DP audio (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: hdmi: continue playback even when display resolution changes (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: hdmi: Add audio support for BYT and CHT (Jaroslav Kysela) [1463624]
-- [sound] alsa: add Intel HDMI LPE audio driver for BYT/CHT-T (Jaroslav Kysela) [1463624]
-- [sound] alsa: 6fire: Use common error handling code in usb6fire_chip_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: usx2y: Use common error handling code in submit_urbs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: us122l: Use common error handling code in us122l_create_card() (Jaroslav Kysela) [1463624]
-- [sound] alsa: usx2y: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-midi: Use common error handling code in __snd_usbmidi_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Add delay quirk for H650e/Jabra 550a USB headsets (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: add DSD support for new Amanero PID (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: don't retry snd_usb_ctl_msg after timeout (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Add mute TLV for playback volumes on C-Media devices (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Apply sample rate quirk to Sennheiser headset (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: caiaq: audio: Delete two error messages for a failed memory allocation in alloc_urbs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: Delete an error message for a failed memory allocation in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: usx2y: Delete an error message for a failed memory allocation in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: line6: remove unnecessary initialization to PODHD500X (Jaroslav Kysela) [1463624]
-- [sound] alsa: line6: add support for POD HD500X (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: Avoid VLA in mixer_us16x08.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: Fix a typo in Tascam US-16x08 mixer element (Jaroslav Kysela) [1463624]
-- [sound] alsa: revert "alsa: usb-audio: purge needless variable length array" (Jaroslav Kysela) [1463624]
-- [sound] alsa: us122l: enable compile testing (Jaroslav Kysela) [1463624]
-- [sound] alsa: us122l: clean up US144 handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: fix Amanero Combo384 quirk on big-endian hosts (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: replace /proc/bus/usb by /dev/bus/usb (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Fake also USB device id when alias is given (Jaroslav Kysela) [1463624]
-- [sound] alsa: lib/vsprintf.c: remove Z support (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Tidy up mixer_us16x08.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Fix memory leak and corruption in mixer_us16x08.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: purge needless variable length array (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: localize function without external linkage (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: localize one-referrer variable (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Tascam US-16x08 DSP mixer quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Implement mic-mute LED mode enum (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - rename dell_led_set_func to dell_micmute_led_set_func (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - use dell_micmute_led_set() instead of dell_app_wmi_led_set() (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda_intel: add card number to irq description (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Remove superfluous header inclusions (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/ca0132 - Fix memory leak at error path (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix forget to free resource in error handling code path in hda_codec_driver_probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Enable jack detection function for Intel ALC700 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix regression of hdmi eld control created based on invalid pcm (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add stereo mic quirk for Lenovo G50-70 (17aa:3978) (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Fix pincfg for Dell XPS 13 9370 (Jaroslav Kysela) [1463624]
-- [sound] alsa: 6fire: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Add Cannonlake PCI ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix speaker output from VAIO VPCL14M1R (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add mute led support for HP ProBook 440 G4 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - No loopback on ALC225/ALC295 codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Update headset mode for ALC225 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Update headset mode for ALC298 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add missing NVIDIA GPU codec IDs to patch table (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add hdmi id for a Geminilake variant (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - New codec device ID for ALC1220 (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Protect call to dma_mmap_coherent() by check for HAS_DMA (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - change the location for one of two front microphones (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix unbalance of i915 module refcount (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Remove GPIO_MASK (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Fix typo of pincfg for Dell quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - New codecs support for ALC215/ALC285/ALC289 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Remove ALC285 device ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix doubly initialization of i915 component (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: constify attribute_group structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Support Dell headset mode for ALC3271 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Minor code refactoring for Intel HDMI codec parsers (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Bind with i915 component before codec binding (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Skip card registration when no codec is found (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix endless loop of codec configure (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - set input_path bitmap to zero after moving it to new place (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - There is no loopback mixer in the ALC234/274/294 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Add default procedure for suspend and resume state (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Support headset mode for ALC234/ALC274/ALC294 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix potential race at unregistration and unsol events (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add AZX_DRIVER_SKL for simplification (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Apply quirks to Broxton-T, too (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Add ALC256 HP depop function (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add Coffelake PCI ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Reorder ALC269 ASUS quirk entries (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek: Fix mic and headset jack sense on Asus X705UD (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix applying MSI dual-codec mobo quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - apply STAC_9200_DELL_M22 quirk for Dell Latitude D430 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Provide dual-codecs model option for a few Realtek codecs (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Apply dual-codec quirk for MSI Z270-Gaming mobo (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl3: Kill unused set_fs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix a typo in comment (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Remove the use of set_fs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Remove the generic bind ctl helpers (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Move bind-mixer switch codes to generic parser (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix cpu lockup when stopping the cmd dmas (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add mute led support for HP EliteBook 840 G3 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add HP ZBook 15u G3 Conexant CX20724 GPIO mute leds (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Move common haswell init to a helper (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - add DP MST audio support (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Add Geminilake id to SKL_PLUS (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Allow to enable/disable vmaster build explicitly (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - set intel audio clock to a proper value (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - add more ML register definitions (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Improved position reporting on SKL+ (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Move SKL+ vendor specific register definitions to hda_register.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Avoid tricky macros (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/ca0132: Limit values for chip addresses to 32-bit (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix LLCH register read (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/ca0132: Remove double parentheses (Jaroslav Kysela) [1463624]
-- [sound] alsa: platform/x86: dell-laptop: import dell_micmute_led_set() from leds/dell-led.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Add Geminilake HDMI codec ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add Geminilake PCI ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: check stream decoupled register state (Jaroslav Kysela) [1463624]
-- [sound] alsa: Fix forgotten dependency fix for tristate OSS sequencer kconfig (Jaroslav Kysela) [1463624]
-- [sound] alsa: emux: Fix/cleanup old ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1463624]
-- [sound] alsa: atmel: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1463624]
-- [sound] alsa: atmel_abdac: clk_round_rate() can return a zero upon error (Jaroslav Kysela) [1463624]
-- [sound] alsa: atmel: Fix possible array overflow (Jaroslav Kysela) [1463624]
-- [sound] alsa: oxygen: xonar dg(x): make model_xonar_dg const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asihpi: Kill BUG_ON() usages (Jaroslav Kysela) [1463624]
-- [sound] alsa: ymfpci: Use common error handling code in snd_ymfpci_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ymfpci: Use common error handling code in snd_card_ymfpci_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: hdspm: Use common error handling code in snd_hdspm_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Use common code in hdsp_get_iobox_version() (Jaroslav Kysela) [1463624]
-- [sound] alsa: maestro3: Use common error handling code in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: Remove null check before kfree (Jaroslav Kysela) [1463624]
-- [sound] alsa: asihpi: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: vx: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl3: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: cmipci: Use common error handling code in snd_cmipci_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: Use common error handling code in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcsp: Use common error handling code in snd_card_pcsp_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: Add support for STAudio ADCIII (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: Fix forgotten user-copy conversion in init code (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Use common error handling code in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: mpu401: Adjust four checks for null pointers (Jaroslav Kysela) [1463624]
-- [sound] alsa: mpu401: Use common error handling code in snd_mpu401_uart_new() (Jaroslav Kysela) [1463624]
-- [sound] alsa: mpu401: Delete an error message for a failed memory allocation in snd_mpu401_uart_new() (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl3: Delete an error message for a failed memory allocation in snd_opl3_new() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ca0106: Delete an error message for a failed memory allocation in snd_ca0106_pcm_open_capture_channel() (Jaroslav Kysela) [1463624]
-- [sound] alsa: mixart: Delete an error message for a failed memory allocation in snd_mixart_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcxhr: Delete an error message for a failed memory allocation in pcxhr_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Adjust seven checks for null pointers (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Improve eight size determinations (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Delete an error message for a failed memory allocation in snd_hdspm_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Adjust five checks for null pointers (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Use common error handling code in snd_rme96_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Delete two error messages for a failed memory allocation in snd_rme96_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: trident: Delete an error message for a failed memory allocation in snd_trident_tlb_alloc() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcxhr: fix string overflow warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: fix format overflow warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: mixart: fix string overflow warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: fm801: Initialize chip after IRQ handler is registered (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl4: Move inline before return type (Jaroslav Kysela) [1463624]
-- [sound] alsa: synth: Select snd-emux-synth explicitly (Jaroslav Kysela) [1463624]
-- [sound] alsa: vx: vx_pcm: constify vx_pcm_playback_ops and vx_pcm_capture_ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: alsa : pcsp: pcsp_lib: constify snd_pcsp_playback_ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme32: Deliver indirect-PCM transfer error (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: Deliver indirect-PCM transfer error (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs46xx: Deliver indirect-PCM transfer error (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: Get rid of set_fs() usage (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs4281: Fix the leftover comment (Jaroslav Kysela) [1463624]
-- [sound] alsa: ak411x: Use array instead of offsetof() (Jaroslav Kysela) [1463624]
-- [sound] alsa: vx222: Use container_of() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ali5451: fix spelling mistake in "ali_capture_preapre" (Jaroslav Kysela) [1463624]
-- [sound] alsa: oxygen: simply setting of the shortname for Xonar DG cards (Jaroslav Kysela) [1463624]
-- [sound] alsa: au88x0: avoid theoretical uninitialized access (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: Fix the incorrect check of dma_set_mask() call (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: Fallback DMA mask to 32bit (Jaroslav Kysela) [1463624]
-- [sound] alsa: vx: remove 'out of memory' message (Jaroslav Kysela) [1463624]
-- [sound] alsa: scripts/spelling.txt: add "overwriten" pattern and fix typo instances (Jaroslav Kysela) [1463624]
-- [sound] alsa: scripts/spelling.txt: add "an union" pattern and fix typo instances (Jaroslav Kysela) [1463624]
-- [sound] alsa: scripts/spelling.txt: add "swith" pattern and fix typo instances (Jaroslav Kysela) [1463624]
-- [sound] alsa: nm256: constify snd_ac97_res_table (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: make hw structures const (Jaroslav Kysela) [1463624]
-- [sound] alsa: intel8x0: constify ac97_pcm structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: atiixp: constify ac97_pcm structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pci: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: mpu401: constify pnp_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: make snd_kcontrol_new const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcxhr: make snd_kcontrol_new const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pci: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: ymfpci: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: trident: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: riptide: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcxhr: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: mixart: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: lx6464es: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: lola: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs5535audio: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: korg1212: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs46xx: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: ca0106: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: aw2: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: trident: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: sis7019: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: intel8x0m: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: intel8x0: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: echoaudio: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: au88x0: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: ali5451: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usbusx2y: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: us122l: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: ua101: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: snd-usb-caiaq: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: bcd2000: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: add const to snd_akm4xxx structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: add const to snd_ak4xxx_private structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: constify pci_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: via82xx: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: sonicvibes: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: hdspm: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: hdsp: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme32: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: nm256: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: intel8x0: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1724: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: es1938: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: ens137x: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: fm801: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs46xx: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: cmipci: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: bt87x: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: azt3328: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: au88x0: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: atiixp: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: ali5451: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: mixart: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs46xx: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-line6: constify snd_kcontrol_new strucutre array (Jaroslav Kysela) [1463624]
-- [sound] alsa: line6: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: pci: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: constify snd_emux_operators structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: cage TLV_DB_RANGE_HEAD in kernel land because it was obsoleted (Jaroslav Kysela) [1463624]
-- [sound] alsa: rename TLV-related macros so that they're friendly to user applications (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: move layout of TLV payload to UAPI header (Jaroslav Kysela) [1463624]
-- [sound] alsa: topology: Export ID types for TLV controls (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Fix negative appl_ptr handling in pcm-indirect helpers (Jaroslav Kysela) [1463624]
-- [sound] alsa: doc: Fix enum snd_jack_types comments (Jaroslav Kysela) [1463624]
-- [sound] alsa: compress: fix documentation errors (Jaroslav Kysela) [1463624]
-- [sound] alsa: memalloc.h - fix wrong truncation of dma_addr_t (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: probe events when parameters are changed actually (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add tracepoints for final selection process of hardware parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Skip ack callback without actual appl_ptr update (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add 'applptr' event of tracepoint (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: unify codes to operate application-side position on PCM buffer (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: localize snd_pcm_hw_params_choose() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add local header file for snd-pcm module (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Remove unused functions declaration (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Remove unused SNDRV_PCM_IOCTL1_{FALSE,TRUE} defines (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: fix the comments that refers to kernel-doc (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Use static inline for snd_pcm_lib_alloc_vmalloc_buffer() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Fix kerneldoc for params_*() functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Convert params_*() with static inline functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Define dummy snd_pcm_suspend() for CONFIG_PM=n (Jaroslav Kysela) [1463624]
-- [sound] alsa: Use IS_ENABLED() in common headers (Jaroslav Kysela) [1463624]
-- [sound] alsa: compress: Remove unused variable (Jaroslav Kysela) [1463624]
-- [sound] alsa: hwdep: prevent a harmless shift wrapping bug (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Cancel pending autoload work at unbinding device (Jaroslav Kysela) [1463624]
-- [sound] alsa: core: Use pS printk format for direct addresses (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Unify ioctl functions for playback and capture streams (Jaroslav Kysela) [1463624]
-- [sound] alsa: Get rid of card power_lock (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Fix power lock unbalance via OSS emulation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Correct broken procfs set up (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: TLV data is unavailable at initial state of user-defined element set (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: queue TLV event for a set of user-defined element (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: delegate TLV eventing to each driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Adjust nine function calls together with a variable assignment (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Use common error handling code in _snd_pcm_new() (Jaroslav Kysela) [1463624]
-- [sound] alsa: core: Fix unexpected error at replacing user TLV (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: use counting semaphore as write lock for ELEM_WRITE operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: code refactoring for ELEM_READ/ELEM_WRITE operations (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: queue events within locking of controls_rwsem for ELEM_WRITE operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: 2nd attempt at fixing race creating a queue (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Fix CONFIG_SND_SEQ_MIDI dependency (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: code refactoring for TLV request handler to user element set (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: code refactoring TLV ioctl handler (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: obsolete user_ctl_lock (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: use counting semaphore as write lock for TLV write/command operations (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: queue events within locking of controls_rwsem for TLV operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Simplify check for dma_mmap_coherent() availability (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: constify attribute_group structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Disable only control mmap for explicit appl_ptr sync (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Add an ioctl to specify the supported protocol version (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Add the explicit appl_ptr sync support (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Fix possible inconsistent appl_ptr update via mmap (Jaroslav Kysela) [1463624]
-- [sound] alsa: core: Follow standard EXPORT_SYMBOL() declarations (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Follow standard EXPORT_SYMBOL() declarations (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Follow standard EXPORT_SYMBOL() declarations (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Don't treat NULL chmap as a fatal error (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: remove SNDRV_PCM_IOCTL1_INFO internal command (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Use common PCM_RUNTIME_CHECK() for sanity checks (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Preprocess PAUSED or SUSPENDED stream before PREPARE (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Allow dropping stream directly after resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Apply power lock globally to common ioctls (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Clean up SNDRV_PCM_IOCTL_PAUSE code (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use s instead of c for format of PCM buffer tracepoints (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Allow the modular sequencer registration (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: return error immediately for parameters handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Reorganize kconfig and build (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Allow the tristate build of OSS emulation (Jaroslav Kysela) [1463624]
-- [sound] alsa: Make CONFIG_SND_OSSEMUL user-selectable (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use friendly name for id of PCM substream in trace print (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: move fixup of info flag after selecting single parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: calculate non-mask/non-interval parameters always when possible (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use helper functions to refer parameters as constants (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add comment about application of rule to PCM parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use helper functions to check whether parameters are determined (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: adaption of code formatting (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: remove function local variable with alternative evaluation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use goto statement instead of while statement to reduce indentation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add a helper function to apply parameter rules (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add a helper function to constrain interval-type parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add a helper function to constrain mask-type parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: obsolete RULES_DEBUG local macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: enable parameter tracepoints only when CONFIG_SND_DEBUG is enabled (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: tracepoints for refining PCM parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Build OSS writev/readv helpers conditionally (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Kill set_fs() in PCM OSS layer (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Direct in-kernel read/write support (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Simplify snd_pcm_playback_silence() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Unify read/write loop (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: More unification of PCM transfer codes (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Call directly the common read/write helpers (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Shuffle codes (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Check PCM state by a common helper function (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Drop the old copy and silence ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: hdsp: Convert to the new PCM ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Convert to the new PCM ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Convert to the new PCM ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme32: Convert to the new PCM copy ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: korg1212: Convert to the new PCM ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: nm256: Convert to new PCM copy ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: es1938: Convert to the new PCM copy ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: dummy: Convert to new PCM copy ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Introduce copy_user, copy_kernel and fill_silence ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: pcm_local.h and remove some extraneous tabs (Jaroslav Kysela) [1463624]
-- [sound] alsa: declare snd_kcontrol_new structures as const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Call ack() whenever appl_ptr is updated (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: remove entry limitation for list operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Remove set_fs() in PCM core code (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: Simplify snd_ctl_elem_list() implementation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Simplify forward/rewind codes (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Use a common helper for PCM state check and hwsync (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm/oss: mark snd_pcm_plug_slave_format arg as const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use "do {} while (0)" for empty macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: constify function local and read-only table (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm/oss: refer to parameters instead of copying to reduce usage of kernel stack (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use helper function to refer parameter as read-only (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add const qualifier for read-only table for sampling rate (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl4: Use IS_REACHABLE() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Build pcm notifier code conditionally (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Don't break snd_use_lock_sync() loop by timeout (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Fix race during FIFO resize (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Fix racy cell insertions during snd_seq_pool_done() (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Fix link corruption by event error handling (Jaroslav Kysela) [1463624]
-
-* Thu Oct 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-740.el7]
-- [scsi] qla2xxx: Move initialization of work element earlier (Himanshu Madhani) [1500417]
-- [scsi] qla2xxx: Fix uninitialized work element (Himanshu Madhani) [1500417]
-- [scsi] lpfc: change version to 11.4.0.4 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: correct nvme sg segment count check (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix oops of nvme host during driver unload (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Extend RDP support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Ensure io aborts interlocked with the target (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix secure firmware updates (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash in lpfc_nvme_fcp_io_submit during LIP (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Disable NPIV support if NVME is enabled (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix oops if nvmet_fc_register_targetport fails (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Revise NVME module parameter descriptions for better clarity (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Set missing abort context (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Reduce log spew on controller reconnects (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix FCP hba_wqidx assignment (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Move CQ processing to a soft IRQ (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Make ktime sampling more accurate (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: PLOGI failures during NPIV testing (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix warning messages when NVME_TARGET_FC not defined (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix lpfc nvme host rejecting IO with Not Ready message (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash receiving ELS while detaching driver (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix pci hot plug crash in list_add call (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix pci hot plug crash in timer management routines (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Cocci spatch "pool_zalloc-simple" (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove redundant null check on eqe (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: use proper format string for dma_addr_t (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: avoid false-positive gcc-8 warning (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: avoid an unused function warning (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: lpfc version bump 11.4.0.3 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix "integer constant too large" error on 32bit archs (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add Buffer to Buffer credit recovery support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove console log clutter (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix bad sgl reposting after 2nd adapter reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme target failure after 2nd adapter reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix relative offset error on large nvmet target ios (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix MRQ > 1 context list handling (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Limit amount of work processed in IRQ (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Correct issues with FAWWN and FDISCs (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVME PRLI handling during RSCN (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash in lpfc nvmet when fc port is reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix duplicate NVME rport entries and namespaces (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix handling of FCP and NVME FC4 types in Pt2Pt topology (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Correct return error codes to align with nvme_fc transport (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: convert info messages to standard messages (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix oops when NVME Target is discovered in a nonNVME environment (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix rediscovery on switch blade pull (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix loop mode target discovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix plogi collision that causes illegal state transition (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove useless code in lpfc_sli4_bsg_link_diag_test (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Replace PCI pool old API (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: support nvmet_fc defer_rcv callback (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: don't double count abort errors (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: spin_lock_irq() is not nestable (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix refcount error on node list (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme io stoppage after link bounce (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: update to revision to 11.4.0.1 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Driver responds LS_RJT to Beacon Off ELS - Linux (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash in lpfc_sli_ringtxcmpl_put when nvmet gets an abort request (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash doing IO with resets (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash after firmware flash when IO is running (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix SLI3 drivers attempting NVME ELS commands (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Break up IO ctx list into a separate get and put list (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Reduce time spent in IRQ for received NVME commands (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Vport creation is failing with "Link Down" error (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme_info sysfs output to be consistent (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix system panic when express lane enabled (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: update to revision to 11.4.0.0 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add auto EQ delay logic (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix defects reported by Coverity Scan (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix vports not logging into target (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix PRLI retry handling when target rejects it (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix System panic after loading the driver (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash on powering off BFS VM with passthrough device (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix return value of board_mode store routine in case of online failure (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix counters so outstandng NVME IO count is accurate (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix Port going offline after multiple resets (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvmet node ref count handling (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix Lun Priority level shown as NA (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add changes to assist in NVMET debugging (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme port role handling in sysfs and debugfs handlers (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix transition nvme-i rport handling to nport only (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add nvme initiator devloss support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: make a couple of functions static (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix spelling mistake "entrys" -> "entries" (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: debugfs: get rid of pointless access_ok() (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: prevent potential null pointer dereference (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Avoid NULL pointer dereference in lpfc_els_abort() (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvmet_fc: fix format string (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] nvmet-fc: remove target cpu scheduling flag (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix build issue if NVME_FC_TARGET is not defined (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NULL pointer dereference during PCI error recovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: update version to 11.2.0.14 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add MDS Diagnostic support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVMEI's handling of NVMET's PRLI response attributes (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Cleanup entry_repost settings on SLI4 queues (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix debugfs root inode "lpfc" not getting deleted on driver unload (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVME I+T not registering NVME as a supported FC4 type (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Added recovery logic for running out of NVMET IO context resources (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Separate NVMET RQ buffer posting from IO resources SGL/iocbq/context (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Separate NVMET data buffer pool fir ELS/CT (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NMI watchdog assertions when running nvmet IOPS tests (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVMEI driver not decrementing counter causing bad rport state (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvmet RQ resource needs for large block writes (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Adding additional stats counters for nvme (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix system crash when port is reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix used-RPI accounting problem (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: ensure els_wq is being checked before destroying it (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: double lock typo in lpfc_ns_rsp() (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: lpfc_get_wwpn at wrong offset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix memory corruption of the lpfc_ncmd->list pointers (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: revison 11.2.0.12 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Update ABORT processing for NVMET (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix implicit logo and RSCN handling for NVMET (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add Fabric assigned WWN support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix max_sgl_segments settings for NVME / NVMET (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash after issuing lip reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix driver load issues when MRQ=8 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Remove hba lock from NVMET issue WQE (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] Fix nvme initiator handling when not enabled (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix driver usage of 128B WQEs when WQ_CREATE is V1 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix driver unload/reload operation (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix PRLI ACC rsp for NVME (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix extra line print in rqpair debug print (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Remove NULL ptr check before kfree (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Remove unused defines for NVME PostBuf (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix spelling in comments (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add debug messages for nvme/fcp resource allocation (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix log message in completion path (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix rejected nvme LS Req (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme unregister port timeout (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Standardize nvme SGL segment count (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] nvmet_fc: Rework target side abort handling (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] nvmet_fc: add req_release to lldd api (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] nvmet_fc: add target feature flags for upcall isr contexts (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix potential buffer overflow (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix building without debugfs support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix PT2PT PRLI reject (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc version bump for rhel7.5 nvme to 11.2.0.11 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Finalize Kconfig options for nvme (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Rework lpfc Kconfig for NVME options (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: add missing Kconfig NVME dependencies (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: replace init_timer by setup_timer (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: code cleanups in NVME initiator discovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: use div_u64 for 64-bit division (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: code cleanups in NVME initiator base (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove dead sli3 nvme code (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: correct double print (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Rename LPFC_MAX_EQ_DELAY to LPFC_MAX_EQ_DELAY_EQID_CNT (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: add NVME exchange aborts (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme allocation bug on failed nvme_fc_register_localport (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix IO submission if WQ is full (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVME CMD IU byte swapped word 1 problem (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix RCTL value on NVME LS request and response (Dick Kennedy) [1385844 1461977 1387768]
-- [lpfc] Fix crash during Hardware error recovery on SLI3 adapters (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix missing spin_unlock on sql_list_lock (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: don't dereference dma_buf-&gt; iocbq before null check (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: sanity check hrq is null before dereferencing it (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove redundant assignment of sgel (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] Update lpfc version to 11.2.0.8 for rhel7.5 with NVME support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Update copyrights (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: NVME: Target: Add debugfs support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: NVME: Target: bind to nvmet_fc api (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Target: Merge into FC discovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Target: Receive buffer updates (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Target: Base modifications (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Initiator: Add debugfs support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Initiator: bind to nvme_fc api (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Initiator: Merge into FC discovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Initiator: Base modifications (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: refactor debugfs queue dump routines (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: refactor debugfs queue prints (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: minor code cleanups (Dick Kennedy) [1385844 1461977 1387768]
-
-* Wed Oct 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-739.el7]
-- [infiniband] lx5e: Fix race in mlx5e_sw_stats and mlx5e_vport_stats (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Fix ETHTOOL_GRXCLSRLALL handling (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Fix small packet threshold (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix UAR memory leak (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Make sure the FW max encap size is enough for ipv6 tunnels (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Make sure the FW max encap size is enough for ipv4 tunnels (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix driver load bad flow when having fw initializing timeout (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix issue in populating the PFC config paramters (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix possible system hang in the dcbnl-getdcbx() path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix sending an invalid PFC error mask to MFW (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix possible error in populating max_tc field (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: set XPT_CONG_CTRL flag for bc xprt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/qib: fix false-postive maybe-uninitialized warning (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cq: Don't process more than the given budget (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: increment msn only when completing a request (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] uapi: fix rdma/mlx5-abi.h userspace compilation errors (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Update documentation link (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/ocrdma: fix a type issue in ocrdma_put_pd_num() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/vmw_pvrdma: Activate device on link up (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/vmw_pvrdma: Dont hardcode QP header page (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/vmw_pvrdma: Cleanup unused variables (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] Fix alignment of mmap cookies to support VIPT caching (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Protect against self-requeue of a cq work item (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Avoid supporting udp tunnel port ndo for VF reps (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Use the proper UAPI values when offloading TC vlan actions (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] xprtrdma: Squelch kbuild sparse complaint (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix interrupt flags on Rx LL2 (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Prevent creation of too-big u32-chains (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: add IPV6 dependency (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Don't use attention PTT for configuring BW (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix race with multiple VFs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] sunrpc: flag transports as having congestion control (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_en: Use __skb_fill_page_desc() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4: Change ENOTSUPP to EOPNOTSUPP (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma_cm: fail iwarp accepts w/o connection params (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed*: Fix link indication race (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Don't allocate SBs using main PTT (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qede: Prevent index problems in loopback test (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Reflect PF link when initializing VF (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qede: Free netdevice only after stoping slowpath (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qede: Initialize lock and slowpath workqueue early (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Reserve doorbell BAR space for present CPUs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Read queue state before releasing buffer (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Release CQ resource under lock on failure (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx4: fix potential divide by 0 in mlx4_en_auto_moderation() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/srp: Drain the send queue before destroying a QP (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Add support for draining IB_POLL_DIRECT completion queues (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/srp: Improve an error path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/srp: Make a diagnostic message more informative (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/srp: Document locking conventions (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/qedr: Fix some error handling (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/vmw_pvrdma: Expose vendor error to ULPs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: use size_t for passing array length (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Remove redudant label (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: remove the unnecessary memory free (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Code reuse with memdup_copy (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, qib, rdmavt: Move AETH defines to rdma/ib_hdrs.h (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Add rvt_rnr_tbl_to_usec function (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Do not set physical link state if DC is in the shutdown state (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Modify logging frequency of DCC errors (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rdmavt, ib/hfi1, ib/qib: Correct ack count for passive (RTR) QPs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/qib: Updates to use rdmavt's SGE helper routines (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, rdmavt: Move SGE state helper routines into rdmavt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, rdmavt: Update copy_sge to use boolean arguments (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/qib: Use new rdmavt timers (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Use new rdmavt timers (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rdmavt: Adding timer logic to rdmavt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, qib, rdmavt: Move AETH credit functions into rdmavt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, qib, rdmavt: Move two IB event functions into rdmavt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Check upper-case EFI variables (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Reduce oversized fields in struct hfi1_packet (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Add additional fields to qp_stats (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Allocate context data on memory node (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rdmavt: Use per-CPU reference count for MRs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Access hfi1_ibport through rcd pointer (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Correct error calldown locking (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Use static CTLE with Preset 6 for integrated HFIs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Ensure read of producer s_head is correct (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Correct defered count after processing qp_wait_list (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: use setup_timer to simplify the code (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/iser: Protect completion context active_qps update (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx4: do not fire tasklet unless necessary (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qede: Add driver support for PTP (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Add infrastructure for PTP support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx4: do not use rwlock in fast path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Destination and source addr families must match (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Add default RoCE TOS to CMA configfs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Remove pointer casting from void to net_device (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix configuration of port capabilities (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix blue flame buffer size calculation (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx4: Remove unused variable from function declaration (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib: Query ports via the core instead of direct into the driver (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib: Add protocol for USNIC (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx4: Support raw packet protocol (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Support raw packet protocol (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Add raw packet protocol (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add implicit MR support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Expose MR cache for mlx5_ib (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add null_mkey access (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/umem: Indicate that process is being terminated (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/umem: Update on demand page (ODP) support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Add implicit MR flag (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add port counter support for Receive WQs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Expose Q counters groups only if they are supported by FW (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Remove deprecated module parameter (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Assign DSCP for R-RoCE QPs Address Path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Avoid SMP MADs from VFs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add additional checks before processing MADs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Return error for unsupported signature type (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix out-of-bound access (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rhel-only: Add CONFIG_INFINIBAND_BNXT_RE (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/bnxt_re: fix for "bnxt_en: Update to firmware interface spec 1.7.0." (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/bnxt_re: Add bnxt_re driver build support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/bnxt_re: Add bnxt_re RoCE driver (Don Dutile) [1456687 1456667 1409099 1386645 1385649 1385309]
-- [infiniband] xprtrdma: Refactor management of mw_list field (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] xprtrdma: Handle stale connection rejection (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] xprtrdma: Properly recover FRWRs with in-flight FASTREG WRs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] sunrpc: fix build errors when linux/phy*.h is removed from sa.h (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Poll CQs in "workqueue" mode (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Combine list fields in struct svc_rdma_op_ctxt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Remove unused sc_dto_q field (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Clean up backchannel send header encoding (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Clean up RPC-over-RDMA Call header decoder (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Clean up RPC-over-RDMA Reply header encoder (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Another sendto chunk list parsing update (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: fix another maybe-uninitialized false-positive (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_en: fix a condition (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Bring back bfreg uar map dedicated pointer (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Tx, no inline copy on ConnectX-5 (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: TX WQE update (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Configure cache line size for start and end padding (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix static checker warnings (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] cxgb4: get rid of custom busy poll code (Don Dutile) [1456687 1456667 1409099 1386645 1385649 1385309]
-- [infiniband] lx4_en: Check the enabling pptx/pprx flags in SET_PORT wrapper flow (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_en: Check the enabling mtu flag in SET_PORT wrapper flow (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_en: Pass user MTU value to Firmware at set port command (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_core: Get num_tc using netdev_get_num_tc (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_core: Add resource alloc/dealloc debugging (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_core: Device revision support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4: Replace ENOSYS with better fitting error codes (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Add inline function to validate port (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Fix reversed test (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Remove the unnecessary error check (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/qib: Remove empty function (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: create struct ib_port_cache (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: function interface change (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Allow port reuse for rdma_id (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Add debug messages to error flows (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Remove unnecessary returned value check (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/isert: fix spelling mistake: "teminating" -> "terminating" (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mad: Add port_num to error message (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/vmw_pvrdma: Remove unused qp_type (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Fix typo in comment (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: CQE compression control code reuse (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Reduce memory consumption on kdump kernel (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Enable Eth VFs to query their min-inline value for user-space (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Push min-inline mode resolution helper into the core (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Add support for setting VF min rate (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Support SRIOV TC encapsulation offloads for IPv6 tunnels (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Maximize ip tunnel key usage on the TC offloading path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Use the full tunnel key info for encapsulation offload house-keeping (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: TC ipv4 tunnel encap offload cosmetic changes (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Add TC offloads matching on IPv6 encapsulation headers (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Use exact encap header size for the FW input buffer (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4: use rb_entry() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx4: support __GFP_MEMALLOC for rx (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Receive s-tagged packets in promiscuous mode (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Add support to s-tag in mlx5 firmware interface (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix version printout in case of health issue (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Remove information print after attempt to load mlx5_ib module (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Replace memset with eth_zero_addr (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/cma: use cached port state when bind loopback (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/cma: resolve to first active ib port (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: export ib_get_cached_port_state (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: add port state cache (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Change list_del to list_del_init in the tx object (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Replace list_del of the neigh->list with list_del_init (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Use debug prints instead of warnings in RNR WC status (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Add detailed error message to dev_queue_xmit call (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: rtnl_unlock can not come after free_netdev (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Fix deadlock between rmmod and set_mode (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Fix deadlock over vlan_mutex (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Set device connection mode only when needed (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: When given an invalid UD MTU, give debug msg (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/ocrdma: Replace BUG() with BUG_ON() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Fix incorrect structure packing for booleans (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/qedr: restructure functions that create/destroy QPs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/qib: use rb_entry() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/hfi1: drop pci_link_reset() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/qib: drop qib_pci_link_reset() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/nes: use designated initializers (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Fix an skb leak (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Fix reference leaks in memory key invalidation code (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Fix a MR reference leak in check_rkey() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Generate a completion for all failed work requests (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Introduce functions for queue draining (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Add a runtime check in alloc_index() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Issue warnings once (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Let the compiler check the type of the cleanup functions (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Enable type checking on SKB_TO_PKT() and PKT_TO_SKB() arguments (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Remove superfluous casts (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Remove an unused variable and an unused argument (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Remove an unused function (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Constify the pool name (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma: Adding ethertype ETH_P_IBOE (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Unify style of IOCTL commands (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Rename RDMA magic number (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Move HFI1 IOCTL declarations to common file (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/hfi1: Avoid redeclaration error (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Move legacy MAD IOCTL declarations to common file (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Commonize RDMA IOCTL declarations location (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Activate support for 4K UARs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Support 4k UAR for libmlx5 (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Allow future extension of libmlx5 input data (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Use blue flame register allocator in mlx5_ib (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Add interface to get reference to a UAR (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Introduce blue flame register allocator (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix retrieval of index to first hi class bfreg (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx5: Fix naming convention with respect to UARs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix error handling order in create_kernel_qp (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix kernel to user leak prevention logic (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Improve MR check (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add ODP atomics support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] {net,ib}/mlx5: Refactor page fault handling (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Update PAGE_FAULT_RESUME layout (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add MR cache for large UMR regions (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add support for big MRs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Refactor UMR post send format (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Support new MR features (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add helper mlx5_ib_post_send_wait (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Reorder code in query device command (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix offset naming for reserved fields in hca_cap_bits (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed*: Add support for ndo_set_vf_trust (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-
-* Tue Oct 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-738.el7]
-- [kernel] audit: ensure that 'audit=1' actually enables audit for PID 1 (Paul Moore) [1487352]
-- [tools] perf c2c: Fix remote HITM detection for Skylake (Jiri Olsa) [1485994]
-- [tools] perf test: Add test cases for new data source encoding (Jiri Olsa) [1485994]
-- [tools] perf tools: Add support for printing new mem_info encodings (Jiri Olsa) [1485994]
-- [uapi] perf/x86: Fix data source decoding for Skylake (Jiri Olsa) [1485994]
-- [x86] perf/x86: Move Nehalem PEBS code to flag (Jiri Olsa) [1485994]
-- [x86] kvm: x86: Fix potential preemption when get the current kvmclock timestamp (Marcelo Tosatti) [1496522]
-- [x86] kvm: x86: remove irq disablement around KVM_SET_CLOCK/KVM_GET_CLOCK (Marcelo Tosatti) [1496522]
-- [x86] nmi: Use raw lock (Scott Wood) [1465546]
-- [dma] s390, ppc: Remove dma_supported for s390 and powerpc (Don Dutile) [1499440]
-- [s390] Cleanup arch/s390/Kconfig DMA_ATTRS (Don Dutile) [1499440]
-- [s390] qdio: avoid reschedule of outbound tasklet once killed (Hendrik Brueckner) [1499699]
-- [s390] lib: export udelay_simple for systemtap (Hendrik Brueckner) [1499014]
-- [scsi] csiostor: fail probe if fw does not support FCoE (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: update module version (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: add check for supported fw version (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Avoid content leaks and casts (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: add support for Chelsio T6 adapters (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: fix use after free in csio_hw_use_fwconfig() (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Fix completion usage (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: fix an error code in csio_hw_init() (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Use firmware version from cxgb4/t4fw_version.h (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: T5 Firmware fix and cleanup (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Removed file csio_hw_t4.c (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Remove T4 FCoE Support (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: fix sparse warnings (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: firmware upgrade fix (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Use pci_enable_msix_range() instead of pci_enable_msix() (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Remove superfluous call to pci_disable_msix() (Arjun Vynipadath) [1458318]
-- [char] ipmi:ssif: Add missing unlock in error branch (Tony Camuso) [1457807]
-- [char] ipmi: constify bmc_dev_attr_group and bmc_device_type (Tony Camuso) [1457807]
-- [char] ipmi: get rid of field-by-field __get_user() (Tony Camuso) [1457807]
-- [char] ipmi: get COMPAT_IPMICTL_RECEIVE_MSG in sync with the native one (Tony Camuso) [1457807]
-- [char] ipmi:ssif: Use i2c_adapter_id instead of adapter->nr (Tony Camuso) [1457807]
-- [char] ipmi: Use the proper default value for register size in ACPI (Tony Camuso) [1457807]
-- [char] ipmi_ssif: remove redundant null check on array client->adapter->name (Tony Camuso) [1457807]
-- [char] ipmi: Pick up slave address from SMBIOS on an ACPI device (Tony Camuso) [1457807]
-- [char] ipmi/watchdog: fix watchdog timeout set on reboot (Tony Camuso) [1457807]
-- [char] ipmi_ssif: unlock on allocation failure (Tony Camuso) [1457807]
-- [char] ipmi/watchdog: fix wdog hang on panic waiting for ipmi response (Tony Camuso) [1457807]
-- [char] ipmi_si: use smi_num for init_name (Tony Camuso) [1457807]
-- [char] Move platform device creation earlier in the initialization (Tony Camuso) [1457807]
-- [char] ipmi: bt-bmc: Add ast2500 compatible string (Tony Camuso) [1457807]
-- [char] ipmi/bt-bmc: change compatible node to 'aspeed, ast2400-ibt-bmc' (Tony Camuso) [1457807]
-- [char] ipmi_ssif: use setup_timer (Tony Camuso) [1457807]
-- [char] ipmi: Fix kernel panic at ipmi_ssif_thread() (Tony Camuso) [1457807]
-- [char] ipmi_si: Clean up printks (Tony Camuso) [1457807]
-- [mm] page_cgroup: Fix Kernel bug during boot with memory cgroups enabled (Larry Woodman) [1483747]
-- [fs] ext4: fix off-by-one on max nr_pages in ext4_find_unwritten_pgoff() (Bill O'Donnell) [1458728]
-- [fs] flexfiles: fix leak of nfs4_ff_ds_version arrays (Steve Dickson) [1496533]
-- [fs] nfs: Fix 2 use after free issues in the I/O code (Steve Dickson) [1496506]
-- [fs] pnfs: Use the standard I/O stateid when calling LAYOUTGET (Steve Dickson) [1496503]
-- [fs] nfsv4: Use correct inode in _nfs4_opendata_to_nfs4_state() (Steve Dickson) [1496500]
-- [fs] nfsv4.1: Fix a race in nfs4_proc_layoutget (Steve Dickson) [1478509]
-- [fs] nfsv4: fix a reference leak caused WARNING messages (Steve Dickson) [1478507]
-- [fs] nfsv4: Fix an rcu lock leak (Steve Dickson) [1478505]
-- [fs] nfs: Don't write back further requests if there is a pending write error (Steve Dickson) [1478486]
-- [fs] nfs: flexfiles: fix kernel OOPS if MDS returns unsupported DS type (Steve Dickson) [1478511]
-- [fs] pnfs/flexfiles: Handle expired layout segments in ff_layout_initiate_commit() (Steve Dickson) [1478511]
-- [fs] nfs: Fix another COMMIT race in pNFS (Steve Dickson) [1478511]
-- [fs] nfs: Fix a COMMIT race in pNFS (Steve Dickson) [1478511]
-- [fs] pnfs: Ensure we commit the layout if it has been invalidated (Steve Dickson) [1478487]
-- [fs] flexfiles: Fix up the ff_layout_write_pagelist failure path (Steve Dickson) [1478487]
-- [fs] PNFS for stateid errors retry against MDS first (Steve Dickson) [1458863]
-- [fs] PNFS fix EACCESS on commit to DS handling (Steve Dickson) [1458863]
-- [fs] PNFS fix fallback to MDS if got error on commit to DS (Steve Dickson) [1458863]
-- [fs] pnfs: Fix a deadlock when coalescing writes and returning the layout (Steve Dickson) [1478500]
-- [fs] pnfs: Don't clear the layout return info if there are segments to return (Steve Dickson) [1478500]
-
-* Fri Oct 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-737.el7]
-- [nvme] fix the definition of the doorbell buffer config support bit (David Milburn) [1454365 1456486 1457880]
-- [nvme] pci: use dma memory for the host memory buffer descriptors (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: default MR page size to 4k (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: set cqe_seen on polled completions (David Milburn) [1457880 1456486 1454365]
-- [nvme] fabrics: fix reporting of unrecognized options (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: eliminate incorrect static markers on local variables (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: correct use after free on list teardown (David Milburn) [1457880 1456486 1454365]
-- [nvme] don't overwrite identify sn/fr with 0-bytes (David Milburn) [1457880 1456486 1454365]
-- [nvme] fix nvme reset command timeout handling (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: fix CMB sysfs file removal in reset path (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add defer_req callback for deferment of cmd buffer return (David Milburn) [1457880 1456486 1454365]
-- [nvme] strip trailing 0-bytes in wwid_show (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: fix HMB size calculation (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: revise TRADDR parsing (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: address target disconnect race conditions in fcp io submit (David Milburn) [1457880 1456486 1454365]
-- [nvme] fabrics commands should use the fctype field for data direction (David Milburn) [1457880 1456486 1454365]
-- [nvme] also provide a UUID in the WWID sysfs attribute (David Milburn) [1457880 1456486 1454365]
-- [nvme] don't report 0-bytes in serial number (David Milburn) [1457880 1456486 1454365]
-- [nvme] Move serial number from controller to subsystem (David Milburn) [1457880 1456486 1454365]
-- [nvme] prefix version configfs file with attr (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Fix an error handling path in 'nvme_probe()' (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Remove nvme_setup_prps BUG_ON (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix byte swapping in nvmet_fc_ls_create_association (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: add module parameter for io queue depth (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: compile warnings in nvme_alloc_host_mem() (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Accept variable pad lengths on Create Association LS (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: revise Create Association descriptor length (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: unconditionally recycle the request mr (David Milburn) [1457880 1456486 1454365]
-- [nvme] split nvme_uninit_ctrl into stop and uninit (David Milburn) [1457880 1456486 1454365]
-- [nvme] kick requeue list when requeueing a request instead of when starting the queues (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: remove race conditions from IB signalling (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: use blk_mq_delay_run_hw_queue instead of open-coding it (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: update tagset nr_hw_queues after queues reinit (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: update tagset nr_hw_queues after reconnecting/resetting (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: update tagset nr_hw_queues after reconnecting/resetting (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: don't override opts->nr_io_queues (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: rename to nvme_pci_configure_admin_queue (David Milburn) [1457880 1456486 1454365]
-- [nvme] move ctrl cap to struct nvme_ctrl (David Milburn) [1457880 1456486 1454365]
-- [nvme] move queue_count to the nvme_ctrl (David Milburn) [1457880 1456486 1454365]
-- [nvme] Quirks for PM1725 controllers (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: register ib_client to not deadlock in device removal (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix error recovery on link down (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix crashes on bad opcodes (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Fix crash when nvme controller connection fails (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: replace ioabort msleep loop with completion (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix double calls to nvme_cleanup_cmd() (David Milburn) [1457880 1456486 1454365]
-- [nvme] fabrics: verify that a controller returns the correct NQN (David Milburn) [1457880 1456486 1454365]
-- [nvme] simplify nvme_dev_attrs_are_visible (David Milburn) [1457880 1456486 1454365]
-- [nvme] read the subsystem NQN from Identify Controller (David Milburn) [1457880 1454365 1456486]
-- [nvme] remove a misleading comment on struct nvme_ns (David Milburn) [1457880 1456486 1454365]
-- [nvme] explicitly disable APST on quirked devices (David Milburn) [1389600]
-- [nvme] use a single NVME_AQ_DEPTH and relax it to 32 (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: factor out the cqe reading mechanics from __nvme_process_cq (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: factor out cqe handling into a dedicated routine (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Introduce nvme_ring_cq_doorbell (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Fix stuck nvme reset (David Milburn) [1457880 1456486 1454365]
-- [nvme] implement NS Optimal IO Boundary from 1.3 Spec (David Milburn) [1457880 1456486 1454365]
-- [nvme] no need to wait for the reset when keepalive fails (David Milburn) [1457880 1456486 1454365]
-- [nvme] move reset workqueue handling to common code (David Milburn) [1454365 1456486 1457880]
-- [nvme] pci: Remove watchdog timer (David Milburn) [1457880 1456486 1454365]
-- [nvme] move protection information check into nvme_setup_rw (David Milburn) [1457880 1456486 1454365]
-- [nvme] mark shutdown_timeout static (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: fix error code in nvme_rdma_create_ctrl() (David Milburn) [1457880 1456486 1454365]
-- [nvme] fabrics: keep track of nvmet connect error status (David Milburn) [1457880 1456486 1454365]
-- [nvme] add fields into identify controller data structure (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Remove a set-but-not-used variable (David Milburn) [1457880 1456486 1454365]
-- [nvme] use ctrl->device consistently for logging (David Milburn) [1457880 1456486 1454365]
-- [nvme] allow overriding the NVMe VS via configfs (David Milburn) [1457880 1456486 1454365]
-- [nvme] add uuid field to nvme_ns and populate via configfs (David Milburn) [1451199]
-- [nvme] implement namespace identify descriptor list (David Milburn) [1451199]
-- [nvme] provide UUID value to userspace (David Milburn) [1451199]
-- [nvme] get list of namespace descriptors (David Milburn) [1451199]
-- [nvme] rename uuid to nguid in nvme_ns (David Milburn) [1451199]
-- [nvme] introduce NVMe Namespace Identification Descriptor structures (David Milburn) [1457880 1456486 1454365]
-- [nvme] use NVME_IDENTIFY_DATA_SIZE (David Milburn) [1457880 1456486 1454365]
-- [nvme] [lib] add sg_zero_buffer() helper (David Milburn) [1457880 1456486 1454365]
-- [nvme] nvme-pci: remove redundant includes (David Milburn) [1454365 1456486 1457880]
-- [nvme] nvme-pci: remap BAR0 to cover admin CQ doorbell for large stride (David Milburn) [1457880 1456486 1454365]
-- [nvme] move nr_reconnects to nvme_ctrl (David Milburn) [1457880 1456486 1454365]
-- [nvme] queue ns scanning and async request from nvme_wq (David Milburn) [1457880 1456486 1454365]
-- [nvme] Move transports to use nvme-core workqueue (David Milburn) [1457880 1456486 1454365]
-- [nvme] Don't allow to reset a reconnecting controller (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Get rid of CONNECTED state (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: rework rdma connection establishment error path (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: make nvme_rdma_(create|destroy)_queue_ib symmetrical (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Make queue flags bit numbers and not shifts (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: get rid of unused ctrl lock (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: get rid of unused controller lock (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: implement host memory buffer support (David Milburn) [1454365 1456486 1457880]
-- [nvme] [kernel] dma-mapping: introduce the DMA_ATTR_NO_WARN attribute (David Milburn) [1457880 1456486 1454365]
-- [nvme] save hmpre and hmmin in struct nvme_ctrl (David Milburn) [1457880 1456486 1454365]
-- [nvme] add dword 12 - 15 fields to struct nvme_features (David Milburn) [1457880 1456486 1454365]
-- [nvme] add struct nvme_host_mem_buf_desc and HMB flags (David Milburn) [1457880 1456486 1454365]
-- [nvme] relax APST default max latency to 100ms (David Milburn) [1389600]
-- [nvme] only consider exit latency when choosing useful non-op power states (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix missing put reference on controller create failure (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: on lldd/transport io error, terminate association (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: fast fail incoming requests while we reconnect (David Milburn) [1468743]
-- [nvme] pci: fix multiple ctrl removal scheduling (David Milburn) [1454365 1456486 1457880]
-- [nvme] fix hang in remove path (David Milburn) [1457880 1456486 1454365]
-- [nvme] Quirk APST on Intel 600P/P3100 devices (David Milburn) [1389600]
-- [nvme] replace is_flags field in nvme_ctrl_ops with a flags field (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: consistencly use ctrl->device for logging (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: remove extra controller reference taken on reconnect (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: correct nvme status set on abort (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: set logging level on resets/deletes (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: revise comment on teardown (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Support ctrl_loss_tmo (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: get rid of local reconnect_delay (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: support devices with queue size < 32 (David Milburn) [1457880 1456486 1454365]
-- [nvme] release the sq ref on rdma read errors (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: remove target cpu scheduling flag (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: stop queues on error detection (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: require target or discovery role for fc-nvme targets (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: correct port role bits (David Milburn) [1457880 1456486 1454365]
-- [nvme] unmap CMB and remove sysfs file in reset path (David Milburn) [1457880 1456486 1454365]
-- [nvme] scsi: remove nvme_trans_security_protocol (David Milburn) [1457880 1456486 1454365]
-- [nvme] scsi: Consider LBA format in IO splitting calculation (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: avoid memory corruption caused by calling nvmf_free_options() twice (David Milburn) [1457880 1456486 1454365]
-- [nvme] Add nvme_core.force_apst to ignore the NO_APST quirk (David Milburn) [1389600]
-- [nvme] Display raw APST configuration via DYNAMIC_DEBUG (David Milburn) [1389600]
-- [nvme] Fix APST comment (David Milburn) [1389600]
-- [nvme] fcloop: mark two symbols static (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: properly endian swap sq_head (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: mark the sqhd field as __le16 (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix endianess annoations for nvmet_fc_format_rsp_hdr (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: mark nvmet_fc_handle_fcp_rqst static (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: mark two symbols static (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add controller reset support (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add aen abort to teardown (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix command id check (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Change traddr field separator to a colon (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Add ls aborts on remote port teardown (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Move LS's to rport (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add missing reference in add_port (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Rework target side abort handling (David Milburn) [1457880 1456486 1454365]
-- [nvme] fcloop: split job struct from transport for req_release (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add req_release to lldd api (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add target feature flags for upcall isr contexts (David Milburn) [1457880 1456486 1454365]
-- [nvme] convert from kmap to nvmet_copy_from_sgl (David Milburn) [1457880 1456486 1454365]
-- [nvme] improve performance for virtual NVMe devices (David Milburn) [1454365 1456486 1457880]
-- [nvme] pci: Don't set reserved SQ create flags (David Milburn) [1457880 1456486 1454365]
-- [nvme] Quirk APST off on THNSF5256GPUK TOSHIBA (David Milburn) [1389600]
-- [nvme] Adjust the Samsung APST quirk (David Milburn) [1389600]
-- [nvme] make nvme_error_status private (David Milburn) [1457880 1456486 1454365]
-- [nvme] split nvme status from block req->errors (David Milburn) [1454365 1456486 1457880]
-- [nvme] fc: fix status code handling in nvme_fc_fcpio_done (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Fix sqsize wrong assignment based on ctrl MQES capability (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Fix sqsize wrong assignment based on ctrl MQES capability (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: Fix sqsize wrong assignment based on ctrl MQES capability (David Milburn) [1457880 1456486 1454365]
-- [nvme] move the retries count to struct nvme_request (David Milburn) [1454365 1456486 1457880]
-- [nvme] mark nvme_max_retries static (David Milburn) [1457880 1456486 1454365]
-- [nvme] cleanup nvme_req_needs_retry (David Milburn) [1457880 1456486 1454365]
-- [nvme] move ->retries setup to nvme_setup_cmd (David Milburn) [1457880 1456486 1454365]
-- [nvme] factor request completion code into a common helper (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: drop ctrl for all command completions (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: increment request retries counter before requeuing (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: increment request retries counter before requeuing (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: increment request retries counter before requeuing (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Clean up host fcpio done status handling (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Clear SG list to avoid double frees (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: correct LS validation (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Sync NVME LS reject reasons with spec (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Add check of status_code in ERSP_IU (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Sync FC-NVME header with standard (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: retrieve iod from the cqe command_id (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: remove unneeded (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix module_init (theoretical) error path (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: fix module_init (theoretical) error path (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: fix module_init (theoretical) error path (David Milburn) [1457880 1456486 1454365]
-- [nvme] use symbolic constants for log identifiers (David Milburn) [1457880 1456486 1454365]
-- [nvme] Introduced helper routine for controller status check (David Milburn) [1457880 1456486 1454365]
-- [nvme] fixed avoided printing nvmet: twice in error logs (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: remove some code duplication (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Give some more grace for rdma connection establishment (David Milburn) [1457880 1456486 1454365]
-- [nvme] fix byte swap in nvmet_parse_io_cmd (David Milburn) [1457880 1456486 1454365]
-- [nvme] add missing byte swap in nvmet_get_smart_log (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: handle cpu unplug when re-establishing the controller (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: handle cpu unplug when re-establishing the controller (David Milburn) [1457880 1456486 1454365]
-- [nvme] confirm sq percpu has scheduled and switched to atomic (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: fix a possible use-after-free when destroying the admin queue (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: add support for host_traddr (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Fix error handling (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: use nvme cm status helper (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: move nvme cm status helper to .h file (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: use rdma connection reject helper functions (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: don't bother to validate ioccsz and iorcsz (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: No special case for queue busy on IO (David Milburn) [1457880 1456486 1454365]
-- [nvme] core: Fix race kicking freed request_queue (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Disable on removal when disconnected (David Milburn) [1457880 1456486 1454365]
-- [nvme] Enable autonomous power state transitions (David Milburn) [1457880 1456486 1454365]
-- [nvme] [base] pm/qos: Export dev_pm_qos_update_user_latency_tolerance (David Milburn) [1457880 1456486 1454365]
-- [nvme] [base] pm/qos: Fix writing 'auto' to pm_qos_latency_tolerance_us (David Milburn) [1457880 1456486 1454365]
-- [nvme] [base] pm/qos: Improve sysfs pm_qos_latency_tolerance validation (David Milburn) [1457880 1456486 1454365]
-- [nvme] Add a quirk mechanism that uses identify_ctrl (David Milburn) [1454365 1456486 1457880]
-- [nvme] make nvmf_register_transport require a create_ctrl callback (David Milburn) [1457880 1456486 1454365]
-- [nvme] Use CNS as 8-bit field and avoid endianness conversion (David Milburn) [1457880 1456486 1454365]
-- [nvme] add semicolon in nvme_command setting (David Milburn) [1457880 1456486 1454365]
-- [nvme] fix build with gcc-4.4.4 (David Milburn) [1457880 1456486 1454365]
-- [nvme] avoid dereferencing nvmet_req (David Milburn) [1457880 1456486 1454365]
-- [nvme] Make controller state visible via sysfs (David Milburn) [1457880 1456486 1454365]
-- [nvme] Make cntlid globally unique (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: cleanup of abort flag processing in fcp_op_done (David Milburn) [1457880 1456486 1454365]
-- [nvme] admin-cmd: fix spelling mistake: Counld -> Could (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Don't mark IOD as aborted if abort wasn't sent (David Milburn) [1457880 1456486 1454365]
-- [nvme] scsi: don't rely on BLK_MAX_CDB (David Milburn) [1457880 1456486 1454365]
-
-* Thu Oct 12 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-736.el7]
-- [s390] pci: correct hotplug related issues (Hendrik Brueckner) [1486403]
-- [s390] pci: recognize name clashes with uids (Hendrik Brueckner) [1486403]
-- [s390] pci: provide more debug information (Hendrik Brueckner) [1486403]
-- [s390] pci: fix handling of PEC 306 (Hendrik Brueckner) [1486403]
-- [s390] pci: improve pci hotplug (Hendrik Brueckner) [1486403]
-- [s390] pci: introduce clp_get_state (Hendrik Brueckner) [1486403]
-- [s390] pci: improve error handling during fmb (de)registration (Hendrik Brueckner) [1486403]
-- [s390] pci: improve unreg_ioat error handling (Hendrik Brueckner) [1486403]
-- [s390] pci: improve error handling during interrupt deregistration (Hendrik Brueckner) [1486403]
-- [s390] pci: don't cleanup in arch_setup_msi_irqs (Hendrik Brueckner) [1486403]
-- [s390] scsi: zfcp: trace HBA FSF response by default on dismiss or timedout late response (Hendrik Brueckner) [1494576]
-- [s390] scsi: zfcp: fix payload with full FCP_RSP IU in SCSI trace records (Hendrik Brueckner) [1494576]
-- [s390] scsi: zfcp: fix missing trace records for early returns in TMF eh handlers (Hendrik Brueckner) [1494576]
-- [s390] scsi: zfcp: fix passing fsf_req to SCSI trace on TMF to correlate with HBA (Hendrik Brueckner) [1494576]
-- [s390] scsi: zfcp: fix capping of unsuccessful GPN_FT SAN response trace records (Hendrik Brueckner) [1494576]
-- [media] stk1160: Remove '.' from Kconfig (Prarit Bhargava) [1498552]
-- [scripts] kconfig: Regenerate *.c_shipped files after previous changes (Prarit Bhargava) [1498552]
-- [scripts] kconfig: Introduce the "imply" keyword (Prarit Bhargava) [1498552]
-- [scripts] kconfig: Regenerate shipped zconf.{hash, lex}.c files (Prarit Bhargava) [1498552]
-- [scripts] kconfig: warn of unhandled characters in Kconfig commands (Prarit Bhargava) [1498552]
-- [scripts] kconfig: allow use of relations other than (in)equality (Prarit Bhargava) [1498552]
-- [scripts] kconfig: re-generate *.c_shipped files after previous change (Prarit Bhargava) [1498552]
-- [scripts] kconfig: don't silently ignore unhandled characters (Prarit Bhargava) [1498552]
-- [scripts] kbuild: trivial - use tabs for code indent where possible (Prarit Bhargava) [1498552]
-- [scripts] kconfig: make allnoconfig disable options behind EMBEDDED and EXPERT (Prarit Bhargava) [1498552]
-- [scripts] kconfig: remove unused definition from scanner (Prarit Bhargava) [1498552]
-- [scripts] kconfig: regenerate bison parser (Prarit Bhargava) [1498552]
-- [scripts] kconfig: do not special-case 'MODULES' symbol (Prarit Bhargava) [1498552]
-- [kernel] modules: do not depend on kconfig to set 'modules' option to symbol MODULES (Prarit Bhargava) [1498552]
-- [acpi] acpi / dptf: move int340x_thermal.c to the DPTF folder (Prarit Bhargava) [1496811]
-- [acpi] acpi / dptf: Add DPTF power participant driver (Prarit Bhargava) [1496811]
-- [scsi] storvsc: fix memory leak on ring buffer busy (Cathy Avery) [1469095]
-- [scsi] storvsc: use default I/O timeout handler for FC devices (Cathy Avery) [1469095]
-- [scsi] storvsc: remove unnecessary channel inbound lock (Cathy Avery) [1469095]
-- [scsi] storvsc: use in place iterator function (Cathy Avery) [1469095]
-- [scsi] storvsc: Add support for FC rport (Cathy Avery) [1469095]
-- [scsi] scsi_transport_fc: Add dummy initiator role to rport (Cathy Avery) [1469095]
-- [scsi] storvsc: remove return at end of void function (Cathy Avery) [1469095]
-- [tools] perf bench: Copy kernel files needed to build mem{cpy, set} x86_64 benchmarks (Jeff Moyer) [1437205]
-- [x86] mce: Fix copy/paste error in exception table entries (Jeff Moyer) [1437205]
-- [x86] mce: Improve memcpy_mcsafe() (Jeff Moyer) [1437205]
-- [x86] mm, x86/mce: Fix return type/value for memcpy_mcsafe() (Jeff Moyer) [1437205]
-- [x86] mm, x86/mce: Add memcpy_mcsafe() (Jeff Moyer) [1437205]
-- [x86] mce: Check for faults tagged in EXTABLE_CLASS_FAULT exception table entries (Jeff Moyer) [1437205]
-- [x86] mce: Add PCI quirks to identify Xeons with machine check recovery (Jeff Moyer) [1437205]
-- [x86] x86/cpufeature: Carve out X86_FEATURE_* (Jeff Moyer) [1437205]
-- [x86] x86/headers: Don't asm/processor.h in asm/atomic.h (Jeff Moyer) [1437205]
-- [kernel] jump_label: remove bug.h, atomic.h dependencies for HAVE_JUMP_LABEL (Jeff Moyer) [1437205]
-- [x86] x86/mm: add mcsafe exception table mechanism (Jeff Moyer) [1437205]
-- [tools] perf bench mem: Prepare the x86-64 build for upstream memcpy_mcsafe() changes (Jeff Moyer) [1437205]
-- [pci] dpc: Add local struct device pointers (Myron Stowe) [1499031]
-- [pci] dpc: Add eDPC support (Myron Stowe) [1499031]
-- [pci] dpc: Fix control register setting (Myron Stowe) [1499031]
-- [pci] dpc: Skip DPC event if device is not present (Myron Stowe) [1499031]
-- [pci] dpc: Wait for Root Port busy to clear (Myron Stowe) [1499031]
-- [pci] dpc: Decode extended reasons (Myron Stowe) [1499031]
-- [pci] Make DPC explicitly non-modular (Myron Stowe) [1499031]
-- [pci] Remove DPC tristate module option (Myron Stowe) [1499031]
-- [pci] Bind DPC to Root Ports as well as Downstream Ports (Myron Stowe) [1499031]
-- [pci] Fix whitespace in struct dpc_dev (Myron Stowe) [1499031]
-- [pci] Convert Downstream Port Containment driver to use devm_* functions (Myron Stowe) [1499031]
-- [security] selinux: fix double free in selinux_parse_opts_str() (Paul Moore) [1456843]
-- [s390] report new vector facilities (Hendrik Brueckner) [1375265]
-- [s390] scsi: zfcp: fix queuecommand for scsi_eh commands when DIX enabled (Hendrik Brueckner) [1494577]
-- [s390] qeth: fix L3 next-hop in xmit qeth hdr (Hendrik Brueckner) [1490787]
-- [ata] libata: Fix device_rh removal warning (Prarit Bhargava) [1455942]
-- [i2c] i801: Add support for Intel Gemini Lake (Steve Best) [1457268]
-- [tools] power turbostat: initial Gemini Lake SOC support (Steve Best) [1465246]
-- [powercap] intel_rapl: Add support for Gemini Lake (Steve Best) [1464887]
-
-* Wed Oct 11 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-735.el7]
-- [fs] ext4: in ext4_seek_{hole, data}, return -ENXIO for negative offsets (Bill O'Donnell) [1494317]
-- [fs] cifs: show 'soft' in the mount options for hard mounts (Leif Sahlberg) [1490774]
-- [fs] cifs: Reconnect expired SMB sessions (Leif Sahlberg) [1477052]
-- [fs] nfsd: give out fewer session slots as limit approaches (Dave Wysochanski) [1492234]
-- [fs] nfsd: increase DRC cache limit (Dave Wysochanski) [1492234]
-- [fs] ext4: fix off-by-in loop termination in ext4_find_unwritten_pgoff() (Bill O'Donnell) [1469363]
-- [fs] ext4: fix SEEK_HOLE (Bill O'Donnell) [1469363]
-- [netdrv] atlantic: fix iommu errors (David Arcari) [1490698]
-- [netdrv] aquantia: Fix transient invalid link down/up indications (David Arcari) [1452077]
-- [netdrv] aquantia: Fix Tx queue hangups (David Arcari) [1452077]
-- [netdrv] aquantia: use centralized core mtu check (David Arcari) [1452077]
-- [netdrv] aquantia: Setup max_mtu in ndev to enable jumbo frames (David Arcari) [1452077]
-- [netdrv] aquantia: set net_device mtu when mtu is changed (David Arcari) [1452077]
-- [netdrv] aquantia: Fixes for aq_ndev_change_mtu (David Arcari) [1452077]
-- [netdrv] aquantia: Show info message if bad firmware version detected (David Arcari) [1452077]
-- [netdrv] aquantia: Fix for multicast filter handling (David Arcari) [1452077]
-- [netdrv] aquantia: Fix for incorrect speed index (David Arcari) [1452077]
-- [netdrv] aquantia: Workaround for HW checksum bug (David Arcari) [1452077]
-- [netdrv] aquantia: Fix for number of RSS queues (David Arcari) [1452077]
-- [netdrv] aquantia: Extra spinlocks removed (David Arcari) [1452077]
-- [netdrv] aquantia: atlantic: remove declaration of hw_atl_utils_hw_set_power (David Arcari) [1452077]
-- [netdrv] aquantia: remove redundant checks on error status (David Arcari) [1452077]
-- [netdrv] intel: use core min/max MTU checking (David Arcari) [1454906]
-- [netdrv] e1000e: Initial Support for IceLake (David Arcari) [1454906]
-- [netdrv] e1000e: add check on e1e_wphy() return value (David Arcari) [1454906]
-- [netdrv] e1000e: Undo e1000e_pm_freeze if __e1000_shutdown fails (David Arcari) [1454906]
-- [netdrv] e1000e: add statistic indicating number of skipped Tx timestamps (David Arcari) [1454906]
-- [netdrv] e1000e: fix race condition around skb_tstamp_tx() (David Arcari) [1454906]
-- [netdrv] update drivers to make both SW and HW TX timestamps (David Arcari) [1454906]
-- [netdrv] e1000e: fix PTP on e1000_pch_lpt variants (David Arcari) [1454906]
-- [netdrv] sfc: don't try and read ef10 data on non-ef10 NIC (Jarod Wilson) [1479400]
-- [netdrv] sfc: Add ethtool -m support for QSFP modules (Jarod Wilson) [1479400]
-- [netdrv] sfc: don't read beyond unicast address list (Jarod Wilson) [1474250 1479400]
-- [netdrv] sfc: correct comment on efx_mcdi_process_event (Jarod Wilson) [1479400]
-- [netdrv] sfc: change Unknown MCDI event message to print full event (Jarod Wilson) [1479400]
-- [netdrv] sfc: fix attempt to translate invalid filter ID (Jarod Wilson) [1479400]
-- [netdrv] sfc: Fix MCDI command size for filter operations (Jarod Wilson) [1449449 1479400]
-- [netdrv] sfc: remove duplicate up_write on VF filter_sem (Jarod Wilson) [1479400]
-- [netdrv] sfc: revert changes to NIC revision numbers (Jarod Wilson) [1479400]
-- [netdrv] sfc: don't rearm interrupts if busy polling (Jarod Wilson) [1479400]
-- [netdrv] sfc: use core min/max MTU checking (Jarod Wilson) [1479400]
-- [scsi] cxgb4i: assign rxqs in round robin mode (Arjun Vynipadath) [1458307]
-- [scsi] cxgbi: fix build with EXTRA_CFLAGS (Arjun Vynipadath) [1458307]
-- [scsi] cxgb4i: Call into recently added cxgb4 ipv6 api (Arjun Vynipadath) [1458307]
-- [iscsi] target: fix invalid flags in text response (Arjun Vynipadath) [1458312]
-- [iscsi] target: fix memory leak in iscsit_setup_text_cmd() (Arjun Vynipadath) [1458312]
-- [iscsi] cxgbit: add missing __kfree_skb() (Arjun Vynipadath) [1458312]
-- [iscsi] cxgbit: fix sg_nents calculation (Arjun Vynipadath) [1458312]
-- [iscsi] cxgbit: Add an #include directive (Arjun Vynipadath) [1458312]
-- [infiniband] iw_cxgb4: don't use WR keys/addrs for 0 byte reads (Arjun Vynipadath) [1458304]
-- [infiniband] cxgb4: Fix error codes in c4iw_create_cq() (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Fix memory leaks during module exit (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/iw_cxgb4: Avoid touch after free error in ARP failure handlers (Arjun Vynipadath) [1458304]
-- [infiniband] iw_cxgb4: check return value of alloc_skb (Arjun Vynipadath) [1458304]
-- [infiniband] cxgb4: Use more common logging style (Arjun Vynipadath) [1458304]
-- [infiniband] iw_cxgb4: clean up send_connect() (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Use AF_INET for sin_family field (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Handle NET_XMIT return codes (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Wake up waiters after flushing the qp (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Limit MRs to < 8GB for T4/T5 devices (Arjun Vynipadath) [1458304]
-
-* Wed Oct 11 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-734.el7]
-- [netdrv] ixgbe: Disable flow control for XFI (Ken Cox) [1452423]
-- [netdrv] ixgbe: Do not support flow control autonegotiation for X553 (Ken Cox) [1452423]
-- [netdrv] ixgbe: Update NW_MNG_IF_SEL support for X553 (Ken Cox) [1452423]
-- [netdrv] ixgbe: Enable LASI interrupts for X552 devices (Ken Cox) [1452423]
-- [netdrv] ixgbe: Ensure MAC filter was added before setting MACVLAN (Ken Cox) [1452423]
-- [netdrv] ixgbe: pci_set_drvdata must be called before register_netdev (Ken Cox) [1452423]
-- [netdrv] ixgbe: Resolve cppcheck format string warning (Ken Cox) [1452423]
-- [netdrv] ixgbe: fix writes to PFQDE (Ken Cox) [1452423]
-- [netdrv] ixgbe: Bump version number (Ken Cox) [1452423]
-- [netdrv] ixgbe: check for Tx timestamp timeouts during watchdog (Ken Cox) [1452423]
-- [netdrv] ixgbe: add statistic indicating number of skipped Tx timestamps (Ken Cox) [1452423]
-- [netdrv] ixgbe: avoid permanent lock of *_PTP_TX_IN_PROGRESS (Ken Cox) [1452423]
-- [netdrv] ixgbe: fix race condition with PTP_TX_IN_PROGRESS bits (Ken Cox) [1452423]
-- [netdrv] ixgbe: Resolve warnings for -Wimplicit-fallthrough (Ken Cox) [1452423]
-- [netdrv] ixgbe: Resolve truncation warning for q_vector->name (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add error checking to setting VF MAC (Ken Cox) [1452423]
-- [netdrv] ixgbe: Correct thermal sensor event check (Ken Cox) [1452423]
-- [netdrv] ixgbe: enable L3/L4 filtering for Tx switched packets (Ken Cox) [1452423]
-- [netdrv] ixgbe: Remove MAC X550EM_X 1Gbase-t led_[on|off] support (Ken Cox) [1452423]
-- [netdrv] ixgbe: initialize u64_stats_sync structures early at ixgbe_probe (Ken Cox) [1452423]
-- [netdrv] ixgbe/ixgbevf: Enables TSO for MPLS encapsulated packets (Ken Cox) [1452423]
-- [netdrv] ixgbe: Check for RSS key before setting value (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add 1000Base-T device based on X550EM_X MAC (Ken Cox) [1452905 1452423]
-- [netdrv] ixgbe: Allow setting zero MAC address for VF (Ken Cox) [1452423]
-- [netdrv] ixgbe: clean macvlan MAC filter table on VF reset (Ken Cox) [1452423]
-- [netdrv] ixgbe: Acquire PHY semaphore before device reset (Ken Cox) [1452423]
-- [netdrv] ixgbe: Fix output from ixgbe_dump (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add support for maximum headroom when using build_skb (Ken Cox) [1452423]
-- [netdrv] ixgbe: add check for VETO bit when configuring link for KR (Ken Cox) [1452423]
-- [netdrv] ixgbe: Remove unused define (Ken Cox) [1452423]
-- [netdrv] ixgbe: do not use adapter->num_vfs when setting VFs via module parameter (Ken Cox) [1452423]
-- [netdrv] ixgbe: return early instead of wrap block in if statement (Ken Cox) [1452423]
-- [netdrv] ixgbe: move num_vfs_macvlans allocation into separate function (Ken Cox) [1452423]
-- [netdrv] ixgbe: add default setup_link for x550em_a MAC type (Ken Cox) [1452423]
-- [netdrv] ixgbe: list X553 backplane speeds correctly (Ken Cox) [1452908 1452423]
-- [netdrv] ixgbe: Add X552 XFI backplane support (Ken Cox) [1452908 1452423]
-- [netdrv] ixgbe: Complete support for X553 sgmii (Ken Cox) [1452908 1452423]
-- [netdrv] ixgbe: Remove driver config for KX4 PHY (Ken Cox) [1452423]
-- [netdrv] ixgbe: Remove pr_cont uses (Ken Cox) [1452423]
-- [netdrv] ixgbe: Avoid Tx hang by not allowing more than the number of VFs supported (Ken Cox) [1452423]
-- [netdrv] igb/ixgbe: Fix typo in igb_build_skb and/or ixgbe_build_skb code comment (Ken Cox) [1452423]
-- [netdrv] intel: ixgbe: use new api ethtool_{get|set}_link_ksettings (Ken Cox) [1452423]
-- [netdrv] ixgbe: Limit use of 2K buffers on architectures with 256B or larger cache lines (Ken Cox) [1452423]
-- [netdrv] ixgbe: update the rss key on h/w, when ethtool ask for it (Ken Cox) [1452423]
-- [netdrv] scripts/spelling.txt: add "applys" pattern and fix typo instances (Ken Cox) [1452423]
-- [netdrv] ixgbe: Don't bother clearing buffer memory for descriptor rings (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add support for build_skb (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add private flag to control buffer mode (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add support for padding packet (Ken Cox) [1452423]
-- [netdrv] ixgbe: Break out Rx buffer page management (Ken Cox) [1452423]
-- [netdrv] ixgbe: Use length to determine if descriptor is done (Ken Cox) [1452423]
-- [netdrv] ixgbe: Make use of order 1 pages and 3K buffers independent of FCoE (Ken Cox) [1452423]
-- [netdrv] ixgbe: Update code to better handle incrementing page count (Ken Cox) [1452423]
-- [netdrv] ixgbe: Update driver to make use of DMA attributes in Rx path (Ken Cox) [1452423]
-- [netdrv] ixgbe: Only DMA sync frame length (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add function for checking to see if we can reuse page (Ken Cox) [1452423]
-- [netdrv] ixgbe: prefix Data Center Bridge ops struct (Ken Cox) [1452423]
-- [netdrv] ixgbe: Support 2.5Gb and 5Gb speed (Ken Cox) [1452423]
-- [netdrv] ixgbe: get rid of custom busy polling code (Ken Cox) [1452423]
-- [netdrv] ixgbe: Flip to the new dev walk API (Ken Cox) [1452423]
-- [netdrv] intel: use core min/max MTU checking (Ken Cox) [1452423]
-- [netdrv] ixgbe: Error handler for duplicate filter locations in hardware for cls_u32 offloads (Ken Cox) [1452423]
-- [netdrv] ixgbe: Fix deleting link filters for cls_u32 offloads (Ken Cox) [1452423]
-- [netdrv] ixgbe: Match on multiple headers for cls_u32 offloads (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add support for redirect action to cls_u32 offloads (Ken Cox) [1452423]
-- [netdrv] ixgbe: Extend cls_u32 offload to support UDP headers (Ken Cox) [1452423]
-- [netdrv] ixgbe: Fix cls_u32 offload support for L4 ports (Ken Cox) [1452423]
-- [netdrv] ixgbe: Fix cls_u32 offload support for fields with masks (Ken Cox) [1452423]
-- [netdrv] ixgbe: fix error handling in TC cls_u32 offload routines (Ken Cox) [1452423]
-- [netdrv] cls_u32: move TC offload feature bit into cls_u32 offload logic (Ken Cox) [1452423]
-- [netdrv] ixgbe: abort with cls u32 divisor groups greater than 1 (Ken Cox) [1452423]
-- [netdrv] ixgbe: add support for tc_u32 offload (Ken Cox) [1452423]
-- [netdrv] ixgbe: limit combined total of macvlan and SR-IOV VFs (Ken Cox) [1452423]
-- [netdrv] bnx2: use setup_timer() helper (Ken Cox) [1479143]
-- [netdrv] generalize napi_complete_done() (Ken Cox) [1479143]
-- [netdrv] bnx2: use READ_ONCE() instead of barrier() (Ken Cox) [1479143]
-- [netdrv] bnx2: use new api ethtool_{get|set}_link_ksettings (Ken Cox) [1479143]
-- [netdrv] bnx2: Wait for in-flight DMA to complete at probe stage (Ken Cox) [1374594 1479143]
-- [netdrv] bnx2: RHEL only patch to use new min/max MTU code without breaking KABI (Ken Cox) [1479143]
-- [netdrv] ethernet/broadcom: use core min/max MTU checking (Ken Cox) [1479143]
-
-* Tue Oct 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-733.el7]
-- [fs] ceph: fix __choose_mds() for LSSNAP request (Ilya Dryomov) [1489426]
-- [fs] ceph: avoid panic in create_session_open_msg() if utsname() returns NULL (Ilya Dryomov) [1489426]
-- [fs] libceph: don't allow bidirectional swap of pg-upmap-items (Ilya Dryomov) [1489426]
-- [fs] ceph: stop on-going cached readdir if mds revokes FILE_SHARED cap (Ilya Dryomov) [1489426]
-- [fs] ceph: fix message order check in handle_cap_export() (Ilya Dryomov) [1489426]
-- [fs] ceph: fix NULL pointer dereference in ceph_flush_snaps() (Ilya Dryomov) [1489426]
-- [fs] ceph: adjust 36 checks for NULL pointers (Ilya Dryomov) [1489426]
-- [fs] ceph: delete an unnecessary return statement in update_dentry_lease() (Ilya Dryomov) [1489426]
-- [fs] ceph: ENOMEM pr_err in __get_or_create_frag() is redundant (Ilya Dryomov) [1489426]
-- [fs] ceph: check negative offsets in ceph_llseek() (Ilya Dryomov) [1489426]
-- [fs] ceph: more accurate statfs (Ilya Dryomov) [1489426]
-- [fs] ceph: properly set snap follows for cap reconnect (Ilya Dryomov) [1489426]
-- [fs] ceph: don't use CEPH_OSD_FLAG_ORDERSNAP (Ilya Dryomov) [1489426]
-- [fs] ceph: include snapc in debug message of write (Ilya Dryomov) [1489426]
-- [fs] ceph: make sure flushsnap messages are sent in proper order (Ilya Dryomov) [1489426]
-- [fs] ceph: fix -EOLDSNAPC handling (Ilya Dryomov) [1489426]
-- [fs] ceph: send LSSNAP request to auth mds of directory inode (Ilya Dryomov) [1489426]
-- [fs] ceph: cleanup ceph_readdir_prepopulate() (Ilya Dryomov) [1489426]
-- [fs] ceph: new cap message flags indicate if there is pending capsnap (Ilya Dryomov) [1489426]
-- [fs] ceph: nuke startsync op (Ilya Dryomov) [1489426]
-- [fs] rbd: silence bogus uninitialized use warning in rbd_acquire_lock() (Ilya Dryomov) [1489426]
-- [fs] ceph: validate correctness of some mount options (Ilya Dryomov) [1489426]
-- [fs] ceph: limit osd write size (Ilya Dryomov) [1489426]
-- [fs] ceph: limit osd read size to CEPH_MSG_MAX_DATA_LEN (Ilya Dryomov) [1489426]
-- [fs] ceph: remove unused cap_release_safety mount option (Ilya Dryomov) [1489426]
-- [fs] libceph: make RECOVERY_DELETES feature create a new interval (Ilya Dryomov) [1489426]
-- [fs] libceph: upmap semantic changes (Ilya Dryomov) [1489426]
-- [fs] crush: assume weight_set != null imples weight_set_size > 0 (Ilya Dryomov) [1489426]
-- [fs] libceph: fallback for when there isn't a pool-specific choose_arg (Ilya Dryomov) [1489426]
-- [fs] libceph: don't call ->reencode_message() more than once per message (Ilya Dryomov) [1489426]
-- [fs] libceph: make encode_request_*() work with r_mempool requests (Ilya Dryomov) [1489426]
-- [fs] libceph: potential NULL dereference in ceph_msg_data_create() (Ilya Dryomov) [1489426]
-- [fs] ceph: fix race in concurrent readdir (Ilya Dryomov) [1489426]
-- [fs] libceph: don't call encode_request_finish() on MOSDBackoff messages (Ilya Dryomov) [1489426]
-- [fs] libceph: use alloc_pg_mapping() in __decode_pg_upmap_items() (Ilya Dryomov) [1489426]
-- [fs] libceph: set -EINVAL in one place in crush_decode() (Ilya Dryomov) [1489426]
-- [fs] libceph: NULL deref on osdmap_apply_incremental() error path (Ilya Dryomov) [1489426]
-- [fs] libceph: fix old style declaration warnings (Ilya Dryomov) [1489426]
-- [fs] libceph: advertise support for NEW_OSDOP_ENCODING and SERVER_LUMINOUS (Ilya Dryomov) [1489426]
-- [fs] libceph: osd_state is 32 bits wide in luminous (Ilya Dryomov) [1489426]
-- [fs] crush: remove an obsolete comment (Ilya Dryomov) [1489426]
-- [fs] crush: crush_init_workspace starts with struct crush_work (Ilya Dryomov) [1489426]
-- [fs] libceph, crush: per-pool crush_choose_arg_map for crush_do_rule() (Ilya Dryomov) [1489426]
-- [fs] crush: implement weight and id overrides for straw2 (Ilya Dryomov) [1489426]
-- [fs] libceph: apply_upmap() (Ilya Dryomov) [1489426]
-- [fs] libceph: compute actual pgid in ceph_pg_to_up_acting_osds() (Ilya Dryomov) [1489426]
-- [fs] libceph: pg_upmap[_items] infrastructure (Ilya Dryomov) [1489426]
-- [fs] libceph: ceph_decode_skip_* helpers (Ilya Dryomov) [1489426]
-- [fs] libceph: kill __{insert, lookup, remove}_pg_mapping() (Ilya Dryomov) [1489426]
-- [fs] libceph: introduce and switch to decode_pg_mapping() (Ilya Dryomov) [1489426]
-- [fs] libceph: don't pass pgid by value (Ilya Dryomov) [1489426]
-- [fs] libceph: respect RADOS_BACKOFF backoffs (Ilya Dryomov) [1489426]
-- [fs] libceph: make DEFINE_RB_* helpers more general (Ilya Dryomov) [1489426]
-- [fs] libceph: avoid unnecessary pi lookups in calc_target() (Ilya Dryomov) [1489426]
-- [fs] libceph: use target pi for calc_target() calculations (Ilya Dryomov) [1489426]
-- [fs] libceph: always populate t->target_{oid, oloc} in calc_target() (Ilya Dryomov) [1489426]
-- [fs] libceph: make sure need_resend targets reflect latest map (Ilya Dryomov) [1489426]
-- [fs] libceph: delete from need_resend_linger before check_linger_pool_dne() (Ilya Dryomov) [1489426]
-- [fs] libceph: resend on PG splits if OSD has RESEND_ON_SPLIT (Ilya Dryomov) [1489426]
-- [fs] libceph: drop need_resend from calc_target() (Ilya Dryomov) [1489426]
-- [fs] libceph: MOSDOp v8 encoding (actual spgid + full hash) (Ilya Dryomov) [1489426]
-- [fs] libceph: ceph_connection_operations::reencode_message() method (Ilya Dryomov) [1489426]
-- [fs] libceph: encode_{pgid,oloc}() helpers (Ilya Dryomov) [1489426]
-- [fs] libceph: introduce ceph_spg, ceph_pg_to_primary_shard() (Ilya Dryomov) [1489426]
-- [fs] libceph: new pi->last_force_request_resend (Ilya Dryomov) [1489426]
-- [fs] libceph: fold [l]req->last_force_resend into ceph_osd_request_target (Ilya Dryomov) [1489426]
-- [fs] libceph: support SERVER_JEWEL feature bits (Ilya Dryomov) [1489426]
-- [fs] libceph: advertise support for OSD_POOLRESEND (Ilya Dryomov) [1489426]
-- [fs] libceph: handle non-empty dest in ceph_{oloc, oid}_copy() (Ilya Dryomov) [1489426]
-- [fs] libceph: new features macros (Ilya Dryomov) [1489426]
-- [fs] libceph: remove ceph_sanitize_features() workaround (Ilya Dryomov) [1489426]
-- [fs] ceph: update ceph_dentry_info::lease_session when necessary (Ilya Dryomov) [1489426]
-- [fs] ceph: avoid accessing freeing inode in ceph_check_delayed_caps() (Ilya Dryomov) [1489426]
-- [fs] ceph: avoid invalid memory dereference in the middle of umount (Ilya Dryomov) [1489426]
-- [fs] ceph: getattr before read on ceph.* xattrs (Ilya Dryomov) [1489426]
-- [fs] ceph: don't re-send interrupted flock request (Ilya Dryomov) [1489426]
-- [fs] ceph: cleanup writepage_nounlock() (Ilya Dryomov) [1489426]
-- [fs] ceph: redirty page when writepage_nounlock() skips unwritable page (Ilya Dryomov) [1489426]
-- [fs] ceph: remove useless page->mapping check in writepage_nounlock() (Ilya Dryomov) [1489426]
-- [fs] ceph: update the 'approaching max_size' code (Ilya Dryomov) [1489426]
-- [fs] ceph: re-request max size after importing caps (Ilya Dryomov) [1489426]
-- [fs] ceph: unify inode i_ctime update (Ilya Dryomov) [1489426]
-- [fs] ceph: check i_nlink while converting a file handle to dentry (Ilya Dryomov) [1489426]
-- [fs] ceph: check that the new inode size is within limits in ceph_fallocate() (Ilya Dryomov) [1489426]
-- [fs] libceph: cleanup old messages according to reconnect seq (Ilya Dryomov) [1489426]
-- [fs] libceph: NULL deref on crush_decode() error path (Ilya Dryomov) [1489426]
-- [fs] libceph: fix error handling in process_one_ticket() (Ilya Dryomov) [1489426]
-- [fs] libceph: validate blob_struct_v in process_one_ticket() (Ilya Dryomov) [1489426]
-- [fs] libceph: drop version variable from ceph_monmap_decode() (Ilya Dryomov) [1489426]
-- [fs] libceph: make ceph_msg_data_advance() return void (Ilya Dryomov) [1489426]
-- [fs] libceph: use kbasename() and kill ceph_file_part() (Ilya Dryomov) [1489426]
-
-* Mon Oct 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-732.el7]
-- [netdrv] liquidio: fix build errors when CONFIG_DYNAMIC_DEBUG=y and both PF and VF drivers are built as loadable modules (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix crash in presence of zeroed-out base address regs (Felix Manlunas) [1451436]
-- [netdrv] liquidio: show NIC's U-Boot version in a dev_info() message (Felix Manlunas) [1451436]
-- [netdrv] liquidio: change manner of detecting whether or not NIC firmware is loaded (Felix Manlunas) [1451436]
-- [netdrv] liquidio: make VF driver notify NIC firmware of MTU change (Felix Manlunas) [1451436]
-- [netdrv] liquidio: move macro definition to a proper place (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix use of pf in pass-through mode in a virtual machine (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove support for deprecated f/w cmd OCTNET_CMD_RESET_PF (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix Smatch error (Felix Manlunas) [1451436]
-- [netdrv] liquidio: with embedded f/w, issue droq credits before enablement (Felix Manlunas) [1451436]
-- [netdrv] liquidio: with embedded f/w, don't reload f/w, issue pf flr at exit (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix spelling mistake: "interuupt" -> "interrupt" (Felix Manlunas) [1451436]
-- [netdrv] liquidio: update VF's netdev->extended->max_mtu if there's a change in PF's MTU (Felix Manlunas) [1451436]
-- [netdrv] liquidio: added support for ethtool --set-channels feature (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved octeon_setup_interrupt to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_legacy_intr_handler to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_msix_intr_handler to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix issues with fw_type module parameter (Felix Manlunas) [1451436]
-- [netdrv] liquidio: added support for ethtool --set-ring feature (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_setup_io_queues to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_napi_poll to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_napi_drv_callback to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_push_packet to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved octeon_setup_droq to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved update_txq_status to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved wait_for_pending_requests to octeon_network.h (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix duplicated code for different branches (Felix Manlunas) [1451436]
-- [netdrv] liquidio: update debug console logging mechanism (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved ptp_enable to octeon_device structure (Felix Manlunas) [1451436]
-- [netdrv] liquidio: removed check for queue size alignment (Felix Manlunas) [1451436]
-- [netdrv] liquidio: rx/tx queue cleanup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: napi cleanup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix misspelled firmware image filenames (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix wrong info about vf rx/tx ring parameters reported to ethtool (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved console_bitmask module param to lio_main.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: add missing strings in oct_dev_state_str array (Felix Manlunas) [1451436]
-- [netdrv] liquidio: set sriov_totalvfs correctly (Felix Manlunas) [1451436]
-- [netdrv] liquidio: bump up driver version to match newer NIC firmware (Felix Manlunas) [1451436]
-- [netdrv] liquidio: cleanup: removed cryptic and misleading macro (Felix Manlunas) [1451436]
-- [netdrv] liquidio: standardization: use min_t instead of custom macro (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix implicit irq include causing build failures (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lio_main: remove unnecessary static in setup_io_queues() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lio_vf_main: remove unnecessary static in setup_io_queues() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lowmem: init allocated memory to 0 (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lowmem: do not dereference null ptr (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lowmem: init allocated memory to 0 (Felix Manlunas) [1451436]
-- [netdrv] liquidio: support new firmware statistic fw_err_pki (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix possible eeprom format string overflow (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix bug in soft reset failure detection (Felix Manlunas) [1451436]
-- [netdrv] liquidio: stop using huge static buffer, save 4096k in .data (Felix Manlunas) [1451436]
-- [netdrv] liquidio: replace info-pointer mode with buffer-pointer-only mode (Felix Manlunas) [1451436]
-- [netdrv] liquidio: implement vlan filter enable and disable (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix VF driver off-by-one bug when setting ethtool -C ethX rx-frames (Felix Manlunas) [1451436]
-- [netdrv] liquidio: disallow enabling firmware debug from a VF (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Fix checkpatch errors with references crossing single line (Felix Manlunas) [1451436]
-- [netdrv] liquidio: VF interrupt initialization cleanup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix inaccurate count of napi-processed rx packets reported to Octeon (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix rare pci_driver.probe failure of VF driver (Felix Manlunas) [1451436]
-- [netdrv] liquidio: handle HWTSTAMP_FILTER_NTP_ALL (Felix Manlunas) [1451436]
-- [netdrv] liquidio: make the spinlock octeon_devices_lock static (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix PF falsely indicating success at setting MAC address of a nonexistent VF (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix insmod failure when multiple NICs are plugged in (Felix Manlunas) [1451436]
-- [netdrv] liquidio: silence a locking static checker warning (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove unnecessary variable assignment (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix VF incorrectly indicating that it successfully set its VLAN (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix Octeon core watchdog timeout false alarm (Felix Manlunas) [1451436]
-- [netdrv] liquidio: clear the correct memory (Felix Manlunas) [1451436]
-- [netdrv] liquidio: add explicit interrupt.h includes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: refactor interrupt moderation code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: do not reset Octeon if NIC firmware was preloaded (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix tx completions in napi poll (Felix Manlunas) [1451436]
-- [netdrv] liquidio: allocate RX buffers in OOM conditions in PF and VF (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix Coverity scan errors (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix for vf mac addr command sent to nic firmware (Felix Manlunas) [1451436]
-- [netdrv] liquidio: add debug error messages to report command timeout (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove duplicate code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix wrong information about link modes reported to ethtool (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use meaningful names for IRQs (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove/replace invalid code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: optimize DMA in NUMA systems (Felix Manlunas) [1451436]
-- [netdrv] liquidio: add support for XPS (Felix Manlunas) [1451436]
-- [netdrv] liquidio: improve UDP TX performance (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix build errors when linux/phy*.h is removed from dsa.h (Felix Manlunas) [1451436]
-- [netdrv] liquidio: do not dereference pointer if it's NULL (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix for iq and droq cnts going negative (Felix Manlunas) [1451436]
-- [netdrv] liquidio: generalize napi_complete_done() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Avoid accessing skb after submitting to input queue (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Remove usage of net_device last_rx member (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use fallback for selecting txq (Felix Manlunas) [1451436]
-- [netdrv] liquidio vf: reduce load time of module (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove unnecessary code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: store the L4 hash of rx packets in skb (Felix Manlunas) [1451436]
-- [netdrv] liquidio: simplify octeon_flush_iq() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix wrong information about channels reported to ethtool (Felix Manlunas) [1451436]
-- [netdrv] liquidio vf: fix incorrect struct being used (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove PTP support in 23XX adapters (Felix Manlunas) [1451436]
-- [netdrv] liquidio: optimize reads from Octeon PCI console (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF error handling (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF timestamp (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF ethtool stats (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF vxlan (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF vlan support (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF rx data and ctl path (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF TX buffers (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF xmit (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF scatter gather lists (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF mac address (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF link status (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF offload features (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF init and destroy (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF interrupt (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF mailbox (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: init VF softcommand queues (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF register access (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF queue setup (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF config setup (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF registration (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF register definitions (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: bitwise vs logical AND typo (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: fix for new check patch errors (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: copyrights changes and alignment (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: code cleanup (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: device states (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF related operations (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: mailbox interrupt processing (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: Mailbox support (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: sysfs VF config support (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: HW config for VF support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use core min/max MTU checking (Felix Manlunas) [1451436]
-- [netdrv] liquidio: cn23xx: fix a loop timeout (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX pause frame support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX napi support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX health monitoring (Felix Manlunas) [1451436]
-- [netdrv] liquidio: ethtool and led control support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX octeon3 instruction (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX IQ access (Felix Manlunas) [1451436]
-- [netdrv] liquidio: RX control commands (Felix Manlunas) [1451436]
-- [netdrv] liquidio: link and control commands (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX firmware download (Felix Manlunas) [1451436]
-- [netdrv] liquidio: MSIX support for CN23XX (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX queue manipulation (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX register setup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX device init and sriov config (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX queue definitions (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX register definitions (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Common enable irq function (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Firmware version management (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Consolidate common functionality (Felix Manlunas) [1451436]
-- [netdrv] liquidio: declare liquidio_set_rxcsum_command static (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Response header changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Remove redundant code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Droq validation (Felix Manlunas) [1451436]
-- [netdrv] liquidio: MTU limits (Felix Manlunas) [1451436]
-- [netdrv] liquidio: free resources during shutdown (Felix Manlunas) [1451436]
-- [netdrv] liquidio: iq/oq limits (Felix Manlunas) [1451436]
-- [netdrv] liquidio: softcommand delay (Felix Manlunas) [1451436]
-- [netdrv] liquidio: IQ synchronization (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Macro replacements (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Vxlan support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove unused including <linux/version.h> (Felix Manlunas) [1451436]
-- [netdrv] liquidio: ddr timeout (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Support priv flag (Felix Manlunas) [1451436]
-- [netdrv] liquidio: ptp info (Felix Manlunas) [1451436]
-- [netdrv] liquidio: New xaui info (Felix Manlunas) [1451436]
-- [netdrv] liquidio: New statistics support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: tx rx interrupt moderation (Felix Manlunas) [1451436]
-- [netdrv] liquidio: chip reset changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: New unload state (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Firmware image download (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Napi rx/tx traffic (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Vlan filtering (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Vlan offloads changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: soft command buffer limits (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Introduce new octeon2/3 header (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Replace ifidx for FW commands (Felix Manlunas) [1451436]
-- [netdrv] liquidio: New driver FW command structure (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Consider PTP for packet size calculations (Felix Manlunas) [1451436]
-- [netdrv] liquidio: RX desc alloc changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: RX queue alloc changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Scatter gather list per IQ (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Host queue mapping changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Avoid double free during soft command (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: Remove deprecated create_workqueue (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: request_manager: Remove create_workqueue (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: response_manager: Remove create_workqueue (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use kmemdup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: replace netdev->trans_start update with helper (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: fix check for in progress flag (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: Return correct error code (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: use helpers ns_to_timespec64() (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: constify pci_error_handlers structures (Felix Manlunas) [1451436]
-- [netdrv] liquidio: get rid of unnecessary initializations in .get_drvinfo() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use kzalloc in setup_glist() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Delete unnecessary checks before the function call "vfree" (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix some error handling in lio_set_phys_id() (Felix Manlunas) [1451436]
-- [netdrv] Modify liquidio Kconfig for crc lib (Felix Manlunas) [1451436]
-- [netdrv] Fix Cavium liquidio build related errors and warnings (Felix Manlunas) [1451436]
-- [netdrv] reference new cavium directory in Makefile and Kconfig (Felix Manlunas) [1451436]
-- [netdrv] Add support of Cavium liquidio ethernet adapters (Felix Manlunas) [1451436]
-- [kernel] pci: Add Cavium PCI vendor id (Felix Manlunas) [1451436]
-
-* Mon Oct 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-731.el7]
-- [char] tpm: do not suspend/resume if power stays on (Jerry Snitselaar) [1456939]
-- [char] tpm: use tpm2_pcr_read() in tpm2_do_selftest() (Jerry Snitselaar) [1456939]
-- [char] tpm: use tpm_buf functions in tpm2_pcr_read() (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: make ilb_base_addr static (Jerry Snitselaar) [1456939]
-- [char] tpm: consolidate the TPM startup code (Jerry Snitselaar) [1456939]
-- [char] tpm: Enable CLKRUN protocol for Braswell systems (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_crb: fix priv->cmd_size initialisation (Jerry Snitselaar) [1456939]
-- [char] tpm: fix a kernel memory leak in tpm-sysfs.c (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_atmel: remove unnecessary NULL check (Jerry Snitselaar) [1456939]
-- [char] tpm: vtpm_proxy: Prevent userspace from sending driver command (Jerry Snitselaar) [1456939]
-- [char] tpm: vtpm_proxy: Implement request_locality function (Jerry Snitselaar) [1456939]
-- [char] tpm: vtpm_proxy: Suppress error logging when in closed state (Jerry Snitselaar) [1456939]
-- [char] tpm, tpmrm: Mark tpmrm_write as static (Jerry Snitselaar) [1456939]
-- [char] tpm: remove struct tpm_pcrextend_in (Jerry Snitselaar) [1456939]
-- [char] tpm, tpm_infineon: remove useless snprintf() calls (Jerry Snitselaar) [1456939]
-- [char] tpm: fix byte order related arithmetic inconsistency in tpm_getcap() (Jerry Snitselaar) [1456939]
-- [char] tpm: Apply a sane minimum adapterlimit value for retransmission (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Consolidate the platform and acpi probe flow (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Use platform_get_irq (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Fix IRQ autoprobing when using platform_device (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: convert to using locality callbacks (Jerry Snitselaar) [1456939]
-- [char] tpm: move TPM 1.2 code of tpm_pcr_extend() to tpm1_pcr_extend() (Jerry Snitselaar) [1456939]
-- [char] tpm: move endianness conversion of ordinals to tpm_input_header (Jerry Snitselaar) [1456939]
-- [char] tpm: move endianness conversion of TPM_TAG_RQU_COMMAND to tpm_input_header (Jerry Snitselaar) [1456939]
-- [char] acpica: Add header support for TPM2 table changes (Jerry Snitselaar) [1456939]
-- [char] tpm: Fix reference count to main device (Jerry Snitselaar) [1456939]
-- [char] tpm: fix handling of the TPM 2.0 event logs (Jerry Snitselaar) [1456939]
-- [char] tpm_crb: remove a cruft constant (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_crb: Enable TPM CRB interface for ARM64 (Jerry Snitselaar) [1456939]
-- [char] acpica: Update TPM2 ACPI table (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_crb: fix unused warnings on suspend/resume functions (Jerry Snitselaar) [1456939]
-- [char] tpm: add sleep only for retry in i2c_nuvoton_write_status() (Jerry Snitselaar) [1456939]
-- [char] vtpm: Fix missing NULL check (Jerry Snitselaar) [1456939]
-- [char] tpm2: add session handle context saving and restoring to the space code (Jerry Snitselaar) [1456939]
-- [char] tpm: expose spaces via a device link /dev/tpmrm<n> (Jerry Snitselaar) [1456939]
-- [char] tpm: split out tpm-dev.c into tpm-dev.c and tpm-common-dev.c (Jerry Snitselaar) [1456939]
-- [char] tpm: infrastructure for TPM spaces (Jerry Snitselaar) [1456939]
-- [char] tpm: validate TPM 2.0 commands (Jerry Snitselaar) [1456939]
-- [char] tpm: export tpm2_flush_context_cmd (Jerry Snitselaar) [1456939]
-- [char] tpm: move length validation to tpm_transmit() (Jerry Snitselaar) [1456939]
-- [char] tpm: select CONFIG_CRYPTO (Jerry Snitselaar) [1456939]
-- [char] tpm: msleep() delays - replace with usleep_range() in i2c nuvoton driver (Jerry Snitselaar) [1456939]
-- [char] tpm_tis_core: Choose appropriate timeout for reading burstcount (Jerry Snitselaar) [1456939]
-- [char] tpm: declare tpm2_get_pcr_allocation() as static (Jerry Snitselaar) [1456939]
-- [char] tpm: Fix expected number of response bytes of TPM1.2 PCR Extend (Jerry Snitselaar) [1456939]
-- [char] tpm: fix misspelled "facilitate" in module parameter description (Jerry Snitselaar) [1456939]
-- [char] tpm: silence an array overflow warning (Jerry Snitselaar) [1456939]
-- [char] tpm: fix the type of owned field in cap_t (Jerry Snitselaar) [1456939]
-- [char] tpm: add securityfs support for TPM 2.0 firmware event log (Jerry Snitselaar) [1456939]
-- [char] tpm: enhance read_log_of() to support Physical TPM event log (Jerry Snitselaar) [1456939]
-- [char] tpm: enhance TPM 2.0 PCR extend to support multiple banks (Jerry Snitselaar) [1456939]
-- [char] tpm: implement TPM 2.0 capability to get active PCR banks (Jerry Snitselaar) [1456939]
-- [char] tpm: fix RC value check in tpm2_seal_trusted (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: fix iTPM probe via probe_itpm() function (Jerry Snitselaar) [1456939]
-- [char] tpm: Begin the process to deprecate user_read_timer (Jerry Snitselaar) [1456939]
-- [char] tpm: remove tpm_read_index and tpm_write_index from tpm.h (Jerry Snitselaar) [1456939]
-- [char] tpm: Check size of response before accessing data (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: use default timeout value if chip reports it as zero (Jerry Snitselaar) [1456939]
-- [char] tpm: Do not print an error message when doing TPM auto startup (Jerry Snitselaar) [1456939]
-- [char] tpm, tpm_crb: Handle 64-bit resource in crb_check_resource() (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_tis_spi: drop duplicate header module.h (Jerry Snitselaar) [1456939]
-- [char] tpm/st33zp24: Remove unneeded linux/miscdevice.h include (Jerry Snitselaar) [1456939]
-- [char] tpm/vtpm: fix kdoc warnings (Jerry Snitselaar) [1456939]
-- [char] tmp: use pdev for parent device in tpm_chip_alloc (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm2-chip: fix kdoc errors (Jerry Snitselaar) [1456939]
-- [char] tpm: add kdoc for tpm_transmit and tpm_transmit_cmd (Jerry Snitselaar) [1456939]
-- [char] tpm: adjust return value of tpm_read_log (Jerry Snitselaar) [1456939]
-- [char] tpm: vtpm_proxy: conditionally call tpm_chip_unregister (Jerry Snitselaar) [1456939]
-- [char] tpm: Fix handling of missing event log (Jerry Snitselaar) [1456939]
-- [char] tpm: Check the bios_dir entry for NULL before accessing it (Jerry Snitselaar) [1456939]
-- [char] tpm: return -ENODEV if np is not set (Jerry Snitselaar) [1456939]
-- [char] tpm: cleanup of printk error messages (Jerry Snitselaar) [1456939]
-- [char] tpm: replace of_find_node_by_name() with dev of_node property (Jerry Snitselaar) [1456939]
-- [char] tpm: redefine read_log() to handle ACPI/OF at runtime (Jerry Snitselaar) [1456939]
-- [char] tpm: fix the missing .owner in tpm_bios_measurements_ops (Jerry Snitselaar) [1456939]
-- [char] tpm: have event log use the tpm_chip (Jerry Snitselaar) [1456939]
-- [char] tpm: drop tpm1_chip_register(/unregister) (Jerry Snitselaar) [1456939]
-- [char] tpm: replace dynamically allocated bios_dir with a static array (Jerry Snitselaar) [1456939]
-- [char] tpm: replace symbolic permission with octal for securityfs files (Jerry Snitselaar) [1456939]
-- [char] tpm: fix kerneldoc tpm2_unseal_trusted name typo (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Allow tpm_tis to be bound using DT (Jerry Snitselaar) [1456939]
-- [char] tpm, tpm_vtpm_proxy: add kdoc comments for VTPM_PROXY_IOC_NEW_DEV (Jerry Snitselaar) [1456939]
-- [char] tpm: define a generic open() method for ascii & bios measurements (Jerry Snitselaar) [1456939]
-- [char] documentation: tpm: add the Physical TPM device tree binding documentation (Jerry Snitselaar) [1456939]
-- [char] documentation: tpm: add the IBM Virtual TPM device tree binding documentation (Jerry Snitselaar) [1456939]
-- [char] tpm: Get rid of TPM_CHIP_FLAG_REGISTERED (Jerry Snitselaar) [1456939]
-- [char] tpm tis: Do not print timeout messages twice (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Check return values from get_burstcount (Jerry Snitselaar) [1456939]
-- [char] tpm: place kdoc just above tpm_pcr_extend (Jerry Snitselaar) [1456939]
-- [char] tpm: sanitize constant expressions (Jerry Snitselaar) [1456939]
-- [char] tpm: Clean up reading of timeout and duration capabilities (Jerry Snitselaar) [1456939]
-- [char] tpm: Check return code of wait_for_tpm_stat (Jerry Snitselaar) [1456939]
-- [char] ima: the reason for TPM-bypass mode (Jerry Snitselaar) [1456939]
-
-* Fri Oct 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-730.el7]
-- [scsi] bnx2fc: Plug CPU hotplug race (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: remove obsolete bnx2fc_eh_host_reset() definition (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Update version number to 2.11.8 (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Make rport_terminate_io callback a NOOP (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: If IO is still in cleanup then do not return to SCSI layer (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Adjust bnx2fc_npiv_create_vports for WWNNs from NVRAM that are zero (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Update copyright for 2017 (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Check for connection offload before sending RRQ (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Add filters to the non-offload FCoE receive path (Maurizio Lombardi) [1461963]
-- [scsi] smartpqi: update driver version (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup raid map warning message (Don Brace) [1457414]
-- [scsi] smartpqi: update controller ids (Don Brace) [1457414]
-- [scsi] smartpqi: remove the smp_handler stub (Don Brace) [1457414]
-- [scsi] smartpqi: change driver version to 1.1.2-125 (Don Brace) [1457414]
-- [scsi] smartpqi: add in new controller ids (Don Brace) [1457414]
-- [scsi] smartpqi: update kexec and power down support (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup doorbell register usage (Don Brace) [1457414]
-- [scsi] smartpqi: update pqi passthru ioctl (Don Brace) [1457414]
-- [scsi] smartpqi: enhance BMIC cache flush (Don Brace) [1457414]
-- [scsi] smartpqi: add pqi reset quiesce support (Don Brace) [1457414]
-- [scsi] smartpqi: remove sanitize_inquiry_string (Don Brace) [1457414]
-- [scsi] smartpqi: limit transfer length to 1MB (Don Brace) [1457414]
-- [scsi] smartpqi: mark PM functions as __maybe_unused (Don Brace) [1457414]
-- [scsi] smartpqi: bump driver version (Don Brace) [1457414]
-- [scsi] smartpqi: remove writeq/readq function definitions (Don Brace) [1457414]
-- [scsi] smartpqi: add module parameters (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup list initialization (Don Brace) [1457414]
-- [scsi] smartpqi: add raid level show (Don Brace) [1457414]
-- [scsi] smartpqi: make ioaccel references consistent (Don Brace) [1457414]
-- [scsi] smartpqi: enhance device add and remove messages (Don Brace) [1457414]
-- [scsi] smartpqi: update timeout on admin commands (Don Brace) [1457414]
-- [scsi] smartpqi: map more raid errors to SCSI errors (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup controller branding (Don Brace) [1457414]
-- [scsi] smartpqi: update rescan worker (Don Brace) [1457414]
-- [scsi] smartpqi: update device offline (Don Brace) [1457414]
-- [scsi] smartpqi: correct aio error path (Don Brace) [1457414]
-- [scsi] smartpqi: add lockup action (Don Brace) [1457414]
-- [scsi] smartpqi: remove qdepth calculations for logical volumes (Don Brace) [1457414]
-- [scsi] smartpqi: change return value for LUN reset operations (Don Brace) [1457414]
-- [scsi] smartpqi: add ptraid support (Don Brace) [1457414]
-- [scsi] smartpqi: update copyright (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup messages (Don Brace) [1457414]
-- [scsi] smartpqi: add new PCI device IDs (Don Brace) [1457414]
-- [scsi] smartpqi: minor driver cleanup (Don Brace) [1457414]
-- [scsi] smartpqi: correct BMIC identify physical drive (Don Brace) [1457414]
-- [scsi] smartpqi: eliminate redundant error messages (Don Brace) [1457414]
-- [scsi] smartpqi: make pdev pointer names consistent (Don Brace) [1457414]
-- [scsi] smartpqi: add pqi_wait_for_completion_io (Don Brace) [1457414]
-- [scsi] smartpqi: correct bdma hw bug (Don Brace) [1457414]
-- [scsi] smartpqi: add heartbeat check (Don Brace) [1457414]
-- [scsi] smartpqi: add suspend and resume support (Don Brace) [1457414]
-- [scsi] smartpqi: enhance resets (Don Brace) [1457414]
-- [scsi] smartpqi: add supporting events (Don Brace) [1457414]
-- [scsi] smartpqi: add in controller checkpoint for controller lockups (Don Brace) [1457414]
-- [scsi] smartpqi: set pci completion timeout (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup interrupt management (Don Brace) [1457414]
-- [scsi] smartpqi: correct remove scsi devices (Don Brace) [1457414]
-- [scsi] smartpqi: raid bypass lba calculation fix (Don Brace) [1457414]
-- [scsi] bnx2i: missing error code in bnx2i_ep_connect() (Maurizio Lombardi) [1461965]
-- [scsi] qla2xxx: Update driver version to 9.00.00.00.07.5-k (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix an integer overflow in sysfs code (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix slow mem alloc behind lock (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Do not call abort handler function during chip reset (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Ability to process multiple SGEs in Command SGL for CT passthrough commands (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Skip zero queue count entry during FW dump capture (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Increase ql2xmaxqdepth to 64 (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Enable Async TMF processing (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Cleanup NPIV host in target mode during config teardown (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove potential macro parameter side-effect in ql_dump_regs() (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Print correct mailbox registers in failed summary (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix task mgmt handling for NPIV (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Allow SNS fabric login to be retried (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add timeout ability to wait_for_sess_deletion() (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Move logging default mask to execute once only (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use sp->free instead of hard coded call (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Prevent sp->free null/uninitialized pointer dereference (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add ability to autodetect SFP type (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use fabric name for Get Port Speed command (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Change ha->wq max_active value to default (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove extra register read (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix NPIV host enable after chip reset (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use BIT_6 to acquire FAWWPN from switch (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Handle PCIe error for driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Update fw_started flags at qpair creation (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix target multiqueue configuration (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: fix spelling mistake of variable sfp_additonal_info (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: use dma_mapping_error to check map errors (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix system crash while triggering FW dump (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Off by one in qlt_ctio_to_cmd() (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix crash due to NULL pointer dereference of ctx (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Protect access to qpair members with qpair->qp_lock (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Include Exchange offload/Extended Login into FW dump (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Move target stat counters from vha to qpair (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove datasegs_per_cmd and datasegs_per_cont field (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove unused tgt_enable_64bit_addr flag (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add debug logging routine for qpair (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add function call to qpair for door bell (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: use shadow register for ISP27XX (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: move fields from qla_hw_data to qla_qpair (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add fw_started flags to qpair (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix mailbox failure while deleting Queue pairs (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Enable Target Multi Queue (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Preparation for Target MQ (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Combine Active command arrays (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: don't include <generated/utsrelease.h> (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix compile warning (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: remove redundant null check on tgt (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove extra register read (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove unused irq_cmd_count field (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Accelerate SCSI BUSY status generation in target mode (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove redundant wait when target is stopped (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add ql2xiniexchg parameter (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Turn on FW option for exchange check (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Cleanup debug message IDs (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Change scsi host lookup method (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix name server relogin (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Convert 32-bit LUN usage to 64-bit (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use flag PFLG_DISCONNECTED (Himanshu Madhani) [1460030]
-- [scsi] tcm_qla2xxx: Do not allow aborted cmd to advance (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix path recovery (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Retain loop test for fwdump length exceeding buffer length (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Replace usage of spin_lock with spin_lock_irqsave (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Allow ABTS, PURX, RIDA on ATIOQ for ISP83XX/27XX (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove an unused structure member (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix crash due to mismatch mumber of Q-pair creation for Multi queue (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix NULL pointer access due to redundant fc_host_port_name call (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix recursive loop during target mode configuration for ISP25XX leaving system unresponsive (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: don't disable a not previously enabled PCI device (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: remove some redundant pointer assignments (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix delayed response to command for loop mode/direct connect (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add DebugFS node to display Port Database (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Only allow operational MBX to proceed during RESET (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use IOCB interface to submit non-critical MBX (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add async new target notification (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Export DIF stats via debugfs (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Improve T10-DIF/PI handling in driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Allow relogin to proceed if remote login did not finish (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix sess_lock & hardware_lock lock order problem (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix inadequate lock protection for ABTS (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix request queue corruption (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix memory leak for abts processing (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix ql_dump_buffer (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: fix spelling mistake: "seperator" -> "separator" (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix response queue count for Target mode (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix a warning reported by the "smatch" static checker (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Avoid using variable-length arrays (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Simplify usage of SRB structure in driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Improve RSCN handling in driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove unused reverse_ini_mode (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add Dual mode support in the driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add framework for async fabric discovery (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Track I-T nexus as single fc_port struct (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use d_id instead of s_id for more clarity (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove direct access of scsi_status field in se_cmd (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Properly initialize IO statistics (Himanshu Madhani) [1460030]
-- [scsi] hpsa: fix spelling mistake: "encrypytion" -> "encryption" (Joseph Szczypek) [1457412]
-
-* Fri Oct 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-729.el7]
-- [netdrv] cxgb4: ptp_clock_register() returns error pointers (Arjun Vynipadath) [1466404]
-- [netdrv] cxgb4: Support for get_ts_info ethtool method (Arjun Vynipadath) [1466404]
-- [netdrv] cxgb4: Add PTP Hardware Clock (PHC) support (Arjun Vynipadath) [1466404]
-- [netdrv] cxgb4: time stamping interface for PTP (Arjun Vynipadath) [1466404]
-- [netdrv] cxgb4: fix memory leak (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix pause frame count in t4_get_port_stats (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Ignore MPS_TX_INT_CAUSE Bubble for T6 (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix stack out-of-bounds read due to wrong size to t4_record_mbox() (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Clear On FLASH config file after a FW upgrade (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: display serial config and vpd versions (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Update register ranges of T4/T5/T6 adapters (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Use Firmware params to get buffer-group map (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Update T6 Buffer Group and Channel Mappings (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: add new T6 pci device id's (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: fix memory leak in init_one() (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix tids count for ipv6 offload connection (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: implement ndo_set_vf_rate() (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: fix incorrect cim_la output for T6 (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: FW upgrade fixes (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: keep carrier off before registering netdev (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: add new T5 pci device id (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: add new T5 pci device id (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Remove redundant code in t4_uld_clean_up() (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Add new T5 and T6 pci device id's (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Update proper netdev stats for rx drops (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: hide unused warnings (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Remove redundant memset before memcpy (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix misleading packet/frame count stats (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Support compressed error vector for T6 (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: mark cxgb_setup_tc() static (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix missing initialization of win0_lock (Arjun Vynipadath) [1458296]
-
-* Fri Oct 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-728.el7]
-- [mfd] intel-lpss: Add Intel Cannonlake PCI IDs (David Arcari) [1457647]
-- [clk] fractional-divider: support for divider bypassing (David Arcari) [1457647]
-- [i2c] i801: Add support for Intel Cannon Lake (David Arcari) [1457647]
-- [i2c] i801: sort IDs alphabetically (David Arcari) [1457647]
-- [i2c] i801: Cleanup Intel Kaby Lake support (David Arcari) [1457647]
-- [vt] fix Scroll Lock LED trigger name (Benjamin Tissoires) [1470932 1256895]
-- [vt] keyboard: define LED triggers for VT keyboard lock states (Benjamin Tissoires) [1470932 1256895]
-- [vt] keyboard: define LED triggers for VT LED states (Benjamin Tissoires) [1470932 1256895]
-- [input] export LEDs as class devices in sysfs (Benjamin Tissoires) [1470932 1256895]
-- [edac] pnd2: Properly toggle hidden state for P2SB PCI device (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Build in a minimal sideband driver for Apollo Lake (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Conditionally unhide/hide the P2SB PCI device to read BAR (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Mask off the lower four bits of a BAR (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Fix Apollo Lake DIMM detection (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Make function sbi_send() static (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Return proper error value from apl_rd_reg() (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2_edac: Fix reported DIMM number (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2_edac: Fix !EDAC_DEBUG build (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2_edac: Add new EDAC driver for Intel SoC platforms (Aristeu Rozanski) [1479627 1273769]
-- [kernel] rh_taint: Document functions (Prarit Bhargava) [1489896]
-- [cpufreq] revert "intel_pstate: skip scheduler hook when in "performance" mode" (Prarit Bhargava) [1497253]
-
-* Thu Oct 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-727.el7]
-- [fs] nfsv4: Fix memory and state leak in _nfs4_open_and_get_state (Steve Dickson) [1478450]
-- [fs] nfsv4: Fix a hang in OPEN related to server reboot (Steve Dickson) [1478458]
-- [fs] flexfiles: never nfs4_mark_deviceid_unavailable (Steve Dickson) [1478456]
-- [fs] flexfiles: If the layout is invalid, it must be updated before retrying (Steve Dickson) [1478454]
-- [fs] pnfs: Fix a reference leak in _pnfs_return_layout (Steve Dickson) [1478449]
-- [fs] nfsv4.1: Fix a deadlock in layoutget (Steve Dickson) [1478447]
-- [fs] nfsv4: Fix client recovery when server reboots multiple times (Steve Dickson) [1478443]
-- [fs] flexfiles: delete deviceid, don't mark inactive (Steve Dickson) [1478439]
-- [fs] flexfiles: Fix ff_layout_add_ds_error_locked() (Steve Dickson) [1478438]
-- [fs] pnfs: Release NFS_LAYOUT_RETURN when invalidating the layout stateid (Steve Dickson) [1478431]
-- [fs] pnfs: Fix use after free issues in pnfs_do_read() (Steve Dickson) [1478460]
-- [fs] pnfs: Ensure we check layout segment validity in the pg_init() callback (Steve Dickson) [1478460]
-- [fs] cifs: store results of cifs_reopen_file to avoid infinite wait (Leif Sahlberg) [1496637]
-- [fs] cifs: remove bad_network_name flag (Leif Sahlberg) [1496637]
-- [fs] cifs: reconnect thread reschedule itself (Leif Sahlberg) [1496637]
-- [fs] cifs: handle guest access errors to Windows shares (Leif Sahlberg) [1496637]
-- [fs] Reset TreeId to zero on SMB2 TREE_CONNECT (Leif Sahlberg) [1496637]
-- [fs] cifs: Fix build failure with smb2 (Leif Sahlberg) [1496637]
-- [fs] cifs: Fix maximum SMB2 header size (Leif Sahlberg) [1484099]
-- [fs] cifs: Add support for writing attributes on SMB2+ (Leif Sahlberg) [1110709]
-- [fs] cifs: Add support for reading attributes on SMB2+ (Leif Sahlberg) [1110709]
-- [fs] cifs: Use smb 2 - 3 and cifsacl mount options setacl function (Leif Sahlberg) [1110709]
-- [fs] cifs: prototype declaration and definition to set acl for smb 2 - 3 and cifsacl mount options (Leif Sahlberg) [1110709]
-- [fs] cifs: Use smb 2 - 3 and cifsacl mount options getacl functions (Leif Sahlberg) [1110709]
-- [fs] cifs: prototype declaration and definition for smb 2 - 3 and cifsacl mount options (Leif Sahlberg) [1110709]
-- [fs] Minor cleanup of xattr query function (Leif Sahlberg) [1110709]
-- [fs] cifs: implement get_dfs_refer for SMB2+ (Leif Sahlberg) [1481303]
-- [fs] cifs: use DFS pathnames in SMB2+ Create requests (Leif Sahlberg) [1481303]
-- [fs] cifs: set signing flag in SMB2+ TreeConnect if needed (Leif Sahlberg) [1481303]
-- [fs] cifs: let ses->ipc_tid hold smb2 TreeIds (Leif Sahlberg) [1481303]
-- [fs] cifs: add use_ipc flag to SMB2_ioctl() (Leif Sahlberg) [1481303]
-- [fs] cifs: add build_path_from_dentry_optional_prefix() (Leif Sahlberg) [1481303]
-- [fs] cifs: move DFS response parsing out of SMB1 code (Leif Sahlberg) [1481303]
-- [fs] cifs: Fix null pointer deref during read resp processing (Leif Sahlberg) [1403319]
-- [fs] cifs: Handle mismatched open calls (Leif Sahlberg) [1403319]
-- [fs] revert "cifs: Fix null pointer deref during read resp processing" (Leif Sahlberg) [1403319]
-
-* Thu Oct 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-726.el7]
-- [x86] perf/x86/intel: Add Goldmont Plus CPU PMU support (Jiri Olsa) [1464895]
-- [x86] x86/mce: Enable PPIN for Knights Landing/Mill (Scott Wood) [1440834]
-- [x86] x86/mce: Include the PPIN in MCE records when available (Scott Wood) [1440834]
-- [x86] xen/vcpu: Handle xen_vcpu_setup() failure at boot (Vitaly Kuznetsov) [1482594]
-- [x86] xen/vcpu: Handle xen_vcpu_setup() failure in hotplug (Vitaly Kuznetsov) [1482594]
-- [x86] xen/pvh*: Support > 32 VCPUs at domain restore (Vitaly Kuznetsov) [1482594]
-- [x86] xen/vcpu: Simplify xen_vcpu related code (Vitaly Kuznetsov) [1482594]
-- [x86] xen: globalize have_vcpu_info_placement (Vitaly Kuznetsov) [1482594]
-- [xen] grant: Implement an grant frame array struct (Vitaly Kuznetsov) [1482876]
-- [xen] grant-table: Refactor gnttab_init (Vitaly Kuznetsov) [1482876]
-- [xen] grants: Remove gnttab_max_grant_frames dependency on gnttab_init (Vitaly Kuznetsov) [1482876]
-- [xen] Grant table address, xen_hvm_resume_frames, is a phys_addr not a pfn (Vitaly Kuznetsov) [1482876]
-- [misc] mei: drop amthif internal client (Jeremy McNicoll) [1457532]
-- [misc] mei: replace callback structures used as list head by list_head (Jeremy McNicoll) [1457532]
-- [misc] mei: drop unreachable code in mei_start (Jeremy McNicoll) [1457532]
-- [misc] mei: validate the message header only in first fragment (Jeremy McNicoll) [1457532]
-- [misc] mei: hw: fix a spelling mistake (Jeremy McNicoll) [1457532]
-- [misc] mei: make mei_cl_bus_rescan static (Jeremy McNicoll) [1457532]
-- [misc] mei: implement fsync (Jeremy McNicoll) [1457532]
-- [misc] mei: bus: elminate variable length arrays (Jeremy McNicoll) [1457532]
-- [misc] mei: hbm: remove variable length arrays (Jeremy McNicoll) [1457532]
-- [misc] mei: add pci driver ops shutdown handler (Jeremy McNicoll) [1457532]
-
-* Wed Oct 04 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-725.el7]
-- [fs] nfsv4: Fix up mirror allocation (Scott Mayhew) [1483654]
-- [fs] xfs: bad assertion for delalloc an extent that start at i_size (Carlos Maiolino) [1449075]
-- [fs] pnfs: Force a retry of LAYOUTGET if the stateid doesn't match our cache (Steve Dickson) [1477346]
-- [fs] nfsv4: Don't check file access when reclaiming state (Steve Dickson) [1477353]
-- [fs] pnfs: Don't mark the layout as freed if the last lseg is marked for return (Steve Dickson) [1477353]
-- [fs] pnfs: Sync the layout state bits in pnfs_cache_lseg_for_layoutreturn (Steve Dickson) [1477353]
-- [fs] pnfs: Fix bugs in _pnfs_return_layout (Steve Dickson) [1477353]
-- [fs] pnfs: Clear all layout segment state in pnfs_mark_layout_stateid_invalid (Steve Dickson) [1477353]
-- [fs] pnfs: Prevent unnecessary layoutreturns after delegreturn (Steve Dickson) [1477353]
-- [fs] pnfs: Enable layoutreturn operation for return-on-close (Steve Dickson) [1477353]
-- [fs] nfsv4: Add encode/decode of the layoutreturn op in OPEN_DOWNGRADE (Steve Dickson) [1477353]
-- [fs] pnfs: Clean up - add a helper to initialise struct layoutreturn_args (Steve Dickson) [1477353]
-- [fs] nfsv4: Add encode/decode of the layoutreturn op in DELEGRETURN (Steve Dickson) [1477353]
-- [fs] nfsv4: Add encode/decode of the layoutreturn op in CLOSE (Steve Dickson) [1477353]
-- [fs] nfsv4: Fix missing operation accounting in NFS4_dec_delegreturn_sz (Steve Dickson) [1477353]
-- [fs] pnfs: Don't mark layout segments invalid on layoutreturn in pnfs_roc (Steve Dickson) [1477353]
-- [fs] pnfs: Get rid of unnecessary layout parameter in encode_layoutreturn callback (Steve Dickson) [1477353]
-- [fs] nfsv4: Ignore LAYOUTRETURN result if the layout doesn't match or is invalid (Steve Dickson) [1477353]
-- [fs] pnfs: Skip checking for return-on-close if the layout is invalid (Steve Dickson) [1477353]
-- [fs] pnfs: Fix race in pnfs_wait_on_layoutreturn (Steve Dickson) [1477353]
-- [fs] pnfs: Remove spurious wake up in pnfs_layout_remove_lseg() (Steve Dickson) [1477353]
-- [fs] pnfs: Do not free layout segments that are marked for return (Steve Dickson) [1477353]
-- [fs] pnfs: On error, do not send LAYOUTGET until the LAYOUTRETURN has completed (Steve Dickson) [1477353]
-- [fs] pnfs: Delay getting the layout header in CB_LAYOUTRECALL handlers (Steve Dickson) [1477353]
-- [fs] nfsv4: Don't ask for the change attribute when reclaiming state (Steve Dickson) [1477353]
-- [fs] pnfs: Clear NFS_LAYOUT_RETURN_REQUESTED when invalidating the layout stateid (Steve Dickson) [1477353]
-- [fs] pnfs: Don't clear the layout stateid if a layout return is outstanding (Steve Dickson) [1477353]
-- [fs] nfs: nfs_prime_dcache must validate the filename (Steve Dickson) [1477353]
-- [fs] nfsv4: Optimise away forced revalidation when we know the attributes are OK (Steve Dickson) [1477353]
-- [fs] nfsv4: Don't request close-to-open attribute when holding a delegation (Steve Dickson) [1477353]
-- [fs] nfsv4: Don't request a GETATTR on open_downgrade (Steve Dickson) [1477353]
-- [fs] nfsv4: If recovery failed for a specific open stateid, then don't retry (Steve Dickson) [1477336]
-- [fs] nfsv4.1: Even if the stateid is OK, we may need to recover the open modes (Steve Dickson) [1477336]
-- [fs] nfsv4: Fix retry issues with nfs41_test/free_stateid (Steve Dickson) [1477336]
-- [fs] nfsv4: Open state recovery must account for file permission changes (Steve Dickson) [1477336]
-- [fs] nfsv4: nfs4_copy_delegation_stateid() must fail if the delegation is invalid (Steve Dickson) [1477336]
-- [fs] nfsv4: Mark the lock and open stateids as invalid after freeing them (Steve Dickson) [1477336]
-- [fs] nfsv4: Don't test open_stateid unless it is set (Steve Dickson) [1477336]
-- [fs] nfs: Always call nfs_inode_find_state_and_recover() when revoking a delegation (Steve Dickson) [1477336]
-- [fs] nfsv4: Don't report revoked delegations as valid in nfs_have_delegation() (Steve Dickson) [1477336]
-
-* Wed Oct 04 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-724.el7]
-- [mm] swap: Remove WARN_ON_ONCE() in free_swap_slot() (Jerome Marchand) [1400689]
-- [mm] swap: don't BUG_ON() due to uninitialized swap slot cache (Jerome Marchand) [1400689]
-- [mm] swapfile.c: fix swap space leak in error path of swap_free_entries() (Jerome Marchand) [1400689]
-- [mm] swap: Fix a race in free_swap_and_cache() (Jerome Marchand) [1400689]
-- [mm] swap: skip readahead only when swap slot cache is enabled (Jerome Marchand) [1400689]
-- [mm] swap: enable swap slots cache usage (Jerome Marchand) [1400689]
-- [mm] swap: add cache for swap slots allocation (Jerome Marchand) [1400689]
-- [mm] swap: free swap slots in batch (Jerome Marchand) [1400689]
-- [mm] swap: allocate swap slots in batches (Jerome Marchand) [1400689]
-- [mm] swap: skip readahead for unreferenced swap slots (Jerome Marchand) [1400689]
-- [mm] swap: split swap cache into 64MB trunks (Jerome Marchand) [1400689]
-- [mm] swap: add cluster lock (Jerome Marchand) [1400689]
-- [mm] swap: fix kernel message in swap_info_get() (Jerome Marchand) [1400689]
-- [mm] don't use radix tree writeback tags for pages in swap cache (Jerome Marchand) [1400689]
-- [mm] swap: add swap_cluster_list (Jerome Marchand) [1400689]
-- [mm] swap: make cluster allocation per-cpu (Jerome Marchand) [1400689]
-- [mm] swap: fix races exposed by swap discard (Jerome Marchand) [1400689]
-- [mm] swap: make swap discard async (Jerome Marchand) [1400689]
-- [mm] swap: change block allocation algorithm for SSD (Jerome Marchand) [1400689]
-- [mmc] mmc: sdhci-pci: Add support for Intel CNP (David Arcari) [1457650]
-- [mmc] mmc: sdhci-pci: Use macros in pci_ids definition (David Arcari) [1457650]
-- [mmc] mmc: sdhci-pci: Move a function to avoid later forward declaration (David Arcari) [1457650]
-- [netdrv] bonding: use ETH_MAX_MTU as max mtu (Jarod Wilson) [1493777]
-- [netdrv] bonding: fix tlb_dynamic_lb default value (Jarod Wilson) [1493777]
-- [netdrv] bonding: Fix transmit load balancing in balance-alb mode if specified by sysfs (Jarod Wilson) [1493777 1492980]
-- [netdrv] bonding: ratelimit failed speed/duplex update warning (Jarod Wilson) [1493777]
-- [netdrv] bonding: require speed/duplex only for 802.3ad, alb and tlb (Jarod Wilson) [1493777]
-- [netdrv] bonding: constify attribute_group structures (Jarod Wilson) [1493777]
-- [netdrv] bonding: warn user when 802.3ad speed is unknown (Jarod Wilson) [1493777]
-- [netdrv] bonding: fix 802.3ad support for 14G speed (Jarod Wilson) [1493777]
-- [netdrv] bonding: Prevent duplicate userspace notification (Jarod Wilson) [1493777]
-- [netdrv] bonding: Don't update slave->link until ready to commit (Jarod Wilson) [1493777]
-- [netdrv] bonding: check nla_put_be32 return value (Jarod Wilson) [1493777]
-- [netdrv] bonding: deliver link-local packets with skb->dev set to link that packets arrived on (Jarod Wilson) [1493777]
-- [netdrv] bonding: trivial: style fixes (Jarod Wilson) [1493777]
-- [netdrv] add definition of ETH_MAX_MTU (Jarod Wilson) [1493777 1480542]
-
-* Tue Oct 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-723.el7]
-- [netdrv] hv_netvsc: Fix the real number of queues of non-vRSS cases (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: make const array ver_list static, reduces object code size (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: fix send buffer failure on MTU change (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: increase default receive buffer size (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: avoid unnecessary wakeups on subchannel creation (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: fix deadlock on hotplug (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Fix the channel limit in netvsc_set_rxfh() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Simplify the limit check in netvsc_set_channels() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Simplify num_chn checking in rndis_filter_device_add() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Clean up an unused parameter in rndis_filter_set_rss_param() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: allow driver to be removed even if VF is present (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: cleanup datapath switch (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix deadlock betwen link status and removal (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Fix rndis_filter_close error during netvsc_remove (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Add ethtool handler to set and get UDP hash levels (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Clean up unused parameter from netvsc_get_rss_hash_opts() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Clean up unused parameter from netvsc_get_hash() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] vmbus: remove unused vmbus_sendpacket_ctl (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] vmbus: remove unused vmubs_sendpacket_pagebuffer_ctl (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] vmbus: remove unused vmbus_sendpacket_multipagebuffer (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: keep track of some non-fatal overload conditions (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: allow controlling send/recv buffer size (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove unnecessary check for NULL hdr (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove unnecessary cast of void pointer (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: whitespace cleanup (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: no need to allocate send/receive on numa node (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: check error return when restoring channels and mtu (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: propagate MAC address change to VF slave (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: don't signal host twice if empty (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: delay setup of VF device (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: make sure and unregister datapath (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix rtnl deadlock on unregister of vf (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: transparent VF management (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hyperv: netvsc: Neaten netvsc_send_pkt by using a temporary (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: signal host if receive ring is emptied (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix error unwind on device setup failure (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: optimize receive completions (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove unnecessary indirection of page_buffer (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: don't print pointer value in error message (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix warnings reported by lockdep (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix return value for set_channels (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove no longer used max_num_rss queues (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: rtnetlink.h (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix netvsc_set_channels (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: prefetch the first incoming ring element (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: Remove redundant use of ipv6_hdr() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove bogus rtnl_unlock (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix ptr_ret.cocci warnings (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: add rtnl annotations in rndis (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: save pointer to parent netvsc_device in channel table (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: need rcu_derefence when accessing internal device info (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: use ERR_PTR to avoid dereference issues (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: change logic for change mtu and set_queues (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: change order of steps in setting queues (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: add some rtnl_dereference annotations (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: force link update after MTU change (Vitaly Kuznetsov) [1474300 1477784]
-
-* Tue Oct 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-722.el7]
-- [rdma] ib/core: Restore I/O MMU, s390 and powerpc support (Don Dutile) [1494648]
-- [rdma] ib/rxe, ib/rdmavt: Use dma_virt_ops instead of duplicating it (Don Dutile) [1494648]
-- [lib] dma-virt: remove dma_supported and mapping_error methods (Don Dutile) [1494648]
-- [rdma] ib/core: Remove ib_device.dma_device (Don Dutile) [1494648]
-- [nvme] nvme-rdma: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/srpt: Modify a debug statement (Don Dutile) [1494648]
-- [infiniband] ib/ipath: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/ehca: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/srp: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/iser: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/ipoib: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/rxe: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/vmw_pvrdma: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/rxe: Remove a pointless indirection layer (Don Dutile) [1494648]
-- [infiniband] ib/usnic: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/qib: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/qedr: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/ocrdma: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/nes: Remove a superfluous assignment statement (Don Dutile) [1494648]
-- [infiniband] ib/mthca: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/mlx5: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/mlx4: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/i40iw: Remove a superfluous assignment statement (Don Dutile) [1494648]
-- [infiniband] ib/hfi1: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/cxgb4: Set dev.parent instead of dma_device (Don Dutile) [1494648]
-- [infiniband] ib/cxgb3: Set dev.parent instead of dma_device (Don Dutile) [1494648]
-- [infiniband] ib/core: Use dev.parent instead of dma_device (Don Dutile) [1494648]
-- [infiniband] ib/core: Initialize ib_device.dev.parent earlier (Don Dutile) [1494648]
-- [infiniband] ib/qib: Remove DMA mapping code (Don Dutile) [1494648]
-- [infiniband] ib/hf1: Remove DMA mapping code (Don Dutile) [1494648]
-- [net] ib/core: Change the type of an ib_dma_alloc_coherent() argument (Don Dutile) [1494648]
-- [rdma] ib/core: Remove ib_dma_*map_single_attrs() (Don Dutile) [1494648]
-- [lib] dma-virt: Add dma_virt_ops (Don Dutile) [1494648]
-- [kernel] treewide: Consolidate get_dma_ops() implementations (Don Dutile) [1494648]
-- [kernel] treewide: Consolidate set_dma_ops() implementations (Don Dutile) [1494648]
-- [iommu] treewide: Move dma_ops from struct dev_archdata into struct device (Don Dutile) [1494648]
-- [kernel] dma: add calls for dma_map_page_attrs and dma_unmap_page_attrs (Don Dutile) [1494648]
-- [kernel] dma-mapping.h: preserve unmap info for CONFIG_DMA_API_DEBUG (Don Dutile) [1494648]
-- [kernel] dma-mapping: add dma_{map,unmap}_resource (Don Dutile) [1494648]
-- [lib] dma-debug: add support for resource mappings (Don Dutile) [1494648]
-- [lib] dma-debug: Fix dma_debug_entry offset calculation (Don Dutile) [1494648]
-- [lib] dma-debug: prevent early callers from crashing (Don Dutile) [1494648]
-- [lib] dma-debug: introduce dma_debug_disabled (Don Dutile) [1494648]
-- [lib] dma debug: account for cachelines and read-only mappings in overlap tracking (Don Dutile) [1494648]
-- [lib] dma-debug: fix overlap detection (Don Dutile) [1494648]
-- [mm] dma-debug: introduce debug_dma_assert_idle() (Don Dutile) [1494648]
-- [kernel] dma-mapping: add {map, unmap}_resource to dma_map_ops (Don Dutile) [1494648]
-- [kernel] dma-mapping: avoid oops when parameter cpu_addr is null (Don Dutile) [1494648]
-- [kernel] dma-mapping: use offset_in_page macro (Don Dutile) [1494648]
-- [kernel] dma-mapping: always provide the dma_map_ops based implementation (Don Dutile) [1494648]
-- [kernel] dma-mapping: tidy up dma_parms default handling (Don Dutile) [1494648]
-- [kernel] dma-mapping: Clarify output of dma_map_sg (Don Dutile) [1494648]
-- [kernel] dma-mapping: consolidate dma_set_mask (Don Dutile) [1494648]
-- [kernel] dma-mapping: consolidate dma_supported (Don Dutile) [1494648]
-- [kernel] dma-mapping: cosolidate dma_mapping_error (Don Dutile) [1494648]
-- [kernel] dma-mapping: consolidate dma_{alloc, free}_noncoherent (Don Dutile) [1494648]
-- [x86] dma-mapping: Fix arch_dma_alloc_attrs() oops with NULL dev (Don Dutile) [1494648]
-- [x86] pci/dma: Fix gfp flags for coherent DMA memory allocation (Don Dutile) [1494648]
-- [kernel] dma-mapping: consolidate dma_{alloc, free}_{attrs, coherent} (Don Dutile) [1494648]
-- [kernel] arm: 7795/1: mm: dma-mapping: Add dma_max_pfn(dev) helper function (Don Dutile) [1494648]
-- [s390] Use bool function return values of true/false not 1/0 (Don Dutile) [1494648]
-- [s390] Implement dma_{alloc,free}_attrs() (Don Dutile) [1494648]
-- [s390] dma: remove gratuitous brackets (Don Dutile) [1494648]
-- [x86] Deinline dma_free_attrs() (Don Dutile) [1494648]
-- [x86] Deinline dma_alloc_attrs() (Don Dutile) [1494648]
-- [of] platform: Allocate rh extension to device struct earlier (Don Dutile) [1494648]
-
-* Mon Oct 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-721.el7]
-- [netdrv] netvsc: fix race on sub channel creation (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Initialize 64-bit stats seqcount (Mohammed Gamal) [1465469]
-- [netdrv] revert "netvsc: optimize calculation of number of slots" (Mohammed Gamal) [1465469]
-- [netdrv] hv_netvsc: Fix the carrier state error when data path is off (Mohammed Gamal) [1465469]
-- [netdrv] hv_netvsc: Remove unnecessary var link_state from struct netvsc_device_info (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: don't access netdev->num_rx_queues directly (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fold in get_outbound_net_device (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: pass net_device to netvsc_init_buf and netvsc_connect_vsp (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: mark error cases as unlikely (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use typed pointer for internal state (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use hv_get_bytes_to_read (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: optimize calculation of number of slots (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: move filter setting to rndis_device (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix net poll mode (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix rcu dereference warning from ethtool (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Add #include's for csum_* function declarations (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: make sure napi enabled before vmbus_open (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix calculation of available send sections (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix use after free on module removal (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Deal with rescinded channels correctly (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix RCU warning in get_stats (Mohammed Gamal) [1465469]
-- [netdrv] hv_netvsc: Exclude non-TCP port numbers from vRSS hashing (Mohammed Gamal) [1465469]
-- [netdrv] hv_netvsc: Fix the queue index computation in forwarding case (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use napi_consume_skb (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Initialize all channel related state prior to opening the channel (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix dereference before null check errors (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Properly initialize the return value (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Fix a bug in sub-channel handling (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix and cleanup rndis_filter_set_packet_filter (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: eliminate unnecessary skb == NULL checks (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use refcount_t for keeping track of sub channels (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: remove unnecessary lock on shutdown (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: uses RCU instead of removal flag (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use RCU to protect inner device structure (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: change max channel calculation (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: handle offline mtu and channel change (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix NAPI performance regression (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: remove unused #define (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: add comments about callback's and NAPI (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: avoid race with callback (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix hang on netvsc module removal (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: need napi scheduled during removal (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: handle select_queue when device is being removed (Mohammed Gamal) [1465469]
-- [netdrv] hyperv: use new api ethtool_{get|set}_link_ksettings (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: replace netdev_alloc_skb_ip_align with napi_alloc_skb (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: enable GRO (Mohammed Gamal) [1465469 1408651]
-- [netdrv] netvsc: implement NAPI (Mohammed Gamal) [1465469]
-- [kernel] vmbus: introduce in-place packet iterator (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: don't overload variable in same function (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix use-after-free in netvsc_change_mtu() (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix typo on statistics (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: call netif_receive_skb (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: simplify get next send section (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: report per-channel stats in ethtool statistics (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: account for packets/bytes transmitted after completion (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: eliminate per-device outstanding send counter (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: simplify rndis_filter_remove (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: don't pass void * to internal device_add (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: optimize receive path (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: group all per-channel state together (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: remove unused variables (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: enhance transmit select_queue (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: allow get/set of RSS indirection table (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: allow more flexible setting of number of channels (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: add ethtool ops to get/set RSS key (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: report rss field values (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: report number of rx queues in ethtool (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: negotiate checksum and segmentation parameters (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: remove no longer needed receive staging buffers (Mohammed Gamal) [1465469]
-
-* Fri Sep 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-720.el7]
-- [mm] introduce dedicated WQ_MEM_RECLAIM workqueue to do lru_add_drain_all (Waiman Long) [1476040]
-- [mfd] lpc_ich: Add support for Intel Bay Trail SoC (David Arcari) [1491814]
-- [xen] xen: don't copy bogus duplicate entries into kernel page tables (Vitaly Kuznetsov) [1487754]
-- [xen] xen/pvh: MMU changes for PVH (Vitaly Kuznetsov) [1487754]
-- [tty] serial: 8250_pnp: Enable PNP_CONSOLE for console ports (Prarit Bhargava) [1489468]
-- [tty] pnp: Allow console to override ACPI device sleep (Prarit Bhargava) [1489468]
-- [tty] tty: serial: 8250_core: provide a function to export uart_8250_port (Prarit Bhargava) [1489468]
-- [tty] serial: Move "uart_console" def to core header file (Prarit Bhargava) [1489468]
-- [pci] Allow PCI express root ports to find themselves (Myron Stowe) [1492839]
-- [pci] fix oops when try to find Root Port for a PCI device (Myron Stowe) [1492839]
-- [pci] Disable Relaxed Ordering for some Intel processors (Myron Stowe) [1492839]
-- [pci] Disable PCIe Relaxed Ordering if unsupported (Myron Stowe) [1492839]
-- [x86] x86/hyperv: Read TSC frequency from a synthetic MSR (Vitaly Kuznetsov) [1457866]
-- [x86] x86/hyperv: Handle unknown NMIs on one CPU when unknown_nmi_panic (Vitaly Kuznetsov) [1457866]
-- [x86] x86/mm/kaslr: Do not adapt the size of the direct mapping section for SGI UV system (Baoquan He) [1457046]
-- [x86] x86/uv: Introduce a helper function to check UV system at earlier stage (Baoquan He) [1457046]
-- [x86] amd: Limit cpu_core_id fixup to families older than F17h (Suravee Suthikulpanit) [1477397]
-- [x86] cpu/amd: Fix Zen SMT topology (Suravee Suthikulpanit) [1477397]
-- [x86] cpu/amd: Bring back Compute Unit ID (Suravee Suthikulpanit) [1477397]
-- [x86] cpu/amd: Fix Bulldozer topology (Suravee Suthikulpanit) [1477397]
-- [x86] cpu/amd: Clean up cpu_llc_id assignment per topology feature (Suravee Suthikulpanit) [1477397]
-- [x86] cpu: Get rid of compute_unit_id (Suravee Suthikulpanit) [1477397]
-- [x86] kvm: vmx: Do not BUG() on out-of-bounds guest IRQ (Paolo Bonzini) [1490781] {CVE-2017-1000}
-- [sound] alsa: timer: Use common error handling code in alsa_timer_init() (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Adjust a condition check in snd_timer_resolution() (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Follow standard EXPORT_SYMBOL() declarations (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Wrap with spinlock for queue access (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Improve user queue reallocation (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Fix missing queue indices reset at SNDRV_TIMER_IOCTL_SELECT (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Fix race between read and ioctl (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Info leak in snd_timer_user_tinterrupt() (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: remove some dead code (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Reject user params with too small ticks (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [kernel] procfs: treat parked tasks as sleeping for task state (Joe Lawrence) [1488504]
-- [kernel] rcutree: Fix panic_on_rcu_stall() (Pratyush Anand) [1490673]
-- [netdrv] mlx5: Avoid using pending command interface slots (Don Dutile) [1463367]
-- [powerpc] perf: Fix book3s kernel to userspace backtraces (Gustavo Duarte) [1492669]
-
-* Thu Sep 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-719.el7]
-- [tools] perf probe: Fix probe definition for inlined functions (Jiri Olsa) [1480522]
-- [tools] perf unwind: Report module before querying isactivation in dwfl unwind (Jiri Olsa) [1480522]
-- [tools] perf tools: Fix build with ARCH=x86_64 (Jiri Olsa) [1480522]
-- [tools] perf clang: Update test case to use real BPF script (Jiri Olsa) [1480522]
-- [tools] perf evsel: Fix probing of precise_ip level for default cycles event (Jiri Olsa) [1480522]
-- [tools] perf symbols: Kill dso__build_id_is_kmod() (Jiri Olsa) [1480522]
-- [tools] perf symbols: Keep DSO->symtab_type after decompress (Jiri Olsa) [1480522]
-- [tools] perf tests: Decompress kernel module before objdump (Jiri Olsa) [1480522]
-- [tools] perf tools: Consolidate error path in __open_dso() (Jiri Olsa) [1480522]
-- [tools] perf tools: Decompress kernel module when reading DSO data (Jiri Olsa) [1480522]
-- [tools] perf annotate: Use dso__decompress_kmodule_path() (Jiri Olsa) [1480522]
-- [tools] perf tools: Introduce dso__decompress_kmodule_{fd, path} (Jiri Olsa) [1480522]
-- [tools] perf tools: Fix a memory leak in __open_dso() (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix symbolic link of build-id cache (Jiri Olsa) [1480522]
-- [tools] perf script python: Remove dups in documentation examples (Jiri Olsa) [1480522]
-- [tools] perf script python: Updated trace_unhandled() signature (Jiri Olsa) [1480522]
-- [tools] perf script python: Fix wrong code snippets in documentation (Jiri Olsa) [1480522]
-- [tools] perf script: Fix documentation errors (Jiri Olsa) [1480522]
-- [tools] perf script: Fix outdated comment for perf-trace-python (Jiri Olsa) [1480522]
-- [tools] perf probe: Fix examples section of documentation (Jiri Olsa) [1480522]
-- [tools] perf annotate: Add missing powerpc triplet (Jiri Olsa) [1480522]
-- [tools] perf symbols: Use correct filename for compressed modules in build-id cache (Jiri Olsa) [1480522]
-- [tools] perf symbols: Set module info when build-id event found (Jiri Olsa) [1480522]
-- [tools] perf header: Set proper module name when build-id event found (Jiri Olsa) [1480522]
-- [tools] perf stat: Only print NMI watchdog hint when enabled (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix branch instruction with multiple operands (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix failure when filename has special chars (Jiri Olsa) [1480522]
-- [tools] perf tools: Put caller above callee in --children mode (Jiri Olsa) [1480522]
-- [tools] perf report: Do not drop last inlined frame (Jiri Olsa) [1480522]
-- [tools] perf report: Always honor callchain order for inlined nodes (Jiri Olsa) [1480522]
-- [tools] perf script: Add --inline option for debugging (Jiri Olsa) [1480522]
-- [tools] perf report: Fix off-by-one for non-activation frames (Jiri Olsa) [1480522]
-- [tools] perf report: Fix memory leak in addr2line when called by addr2inlines (Jiri Olsa) [1480522]
-- [tools] perf report: Don't crash on invalid maps in `-g srcline` mode (Jiri Olsa) [1480522]
-- [tools] tools build: Fixup sched_getcpu feature test (Jiri Olsa) [1480522]
-- [tools] perf tests kmod-path: Don't fail if compressed modules aren't supported (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix AArch64 comment char (Jiri Olsa) [1480522]
-- [tools] perf tools: Fix spelling mistakes (Jiri Olsa) [1480522]
-- [tools] perf config: Refactor a duplicated code for obtaining config file name (Jiri Olsa) [1480522]
-- [tools] perf symbols: Allow user probes on versioned symbols (Jiri Olsa) [1480522]
-- [tools] tools lib string: Adopt prefixcmp() from perf and subcmd (Jiri Olsa) [1480522]
-- [tools] perf units: Move parse_tag_value() to units.[ch] (Jiri Olsa) [1480522]
-- [tools] perf ui gtk: Move gtk .so name to the only place where it is used (Jiri Olsa) [1480522]
-- [tools] perf tools: Move HAS_BOOL define to where perl headers are used (Jiri Olsa) [1480522]
-- [tools] perf memswap: Split the byteswap memory range wrappers from util.[ch] (Jiri Olsa) [1480522]
-- [tools] perf tools: Move event prototypes from util.h to event.h (Jiri Olsa) [1480522]
-- [tools] perf buildid: Move prototypes from util.h to build-id.h (Jiri Olsa) [1480522]
-- [tools] powerpc/perf: Define big-endian version of perf_mem_data_src (Jiri Olsa) [1480522]
-- [tools] treewide: Fix typos in printk (Jiri Olsa) [1480522]
-- [tools] perf tools: Fix the code to strip command name (Jiri Olsa) [1480522]
-- [tools] perf tools: Use just forward declarations for struct thread where possible (Jiri Olsa) [1480522]
-- [tools] perf tools: Add the right header to obtain PERF_ALIGN() (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove poll.h and wait.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove string.h, unistd.h and sys/stat.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove stale prototypes from builtin.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove string.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove sys/ioctl.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove a few more needless includes from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Include sys/param.h where needed (Jiri Olsa) [1480522]
-- [tools] perf callchain: Move callchain specific routines from util.[ch] (Jiri Olsa) [1480522]
-- [tools] perf tools: Add compress.h for the *_decompress_to_file() headers (Jiri Olsa) [1480522]
-- [tools] perf mem: Fix display of data source snoop indication (Jiri Olsa) [1480522]
-- [tools] perf debug: Move dump_stack() and sighandler_dump_stack() to debug.h (Jiri Olsa) [1480522]
-- [tools] perf kvm: Make function only used by 'perf kvm' static (Jiri Olsa) [1480522]
-- [tools] perf tools: Move timestamp routines from util.h to time-utils.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Move units conversion/formatting routines to separate object (Jiri Olsa) [1480522]
-- [tools] perf tools: Add signal.h to places using its definitions (Jiri Olsa) [1480522]
-- [tools] perf unwind: Provide only forward declarations for pointer types (Jiri Olsa) [1480522]
-- [tools] perf tools: Ditch unused strchrnul() reimplementation (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove regex.h and fnmatch.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove include dirent.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove misplaced __maybe_unused in some functions (Jiri Olsa) [1480522]
-- [tools] perf tools: Use api/fs/tracing_path.h where needed (Jiri Olsa) [1480522]
-- [tools] perf tools: No need to include bitops.h in util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Move path related functions to util/path.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Don't include terminal handling headers in util.h (Jiri Olsa) [1480522]
-- [tools] perf str{filter, list}: Disentangle headers (Jiri Olsa) [1480522]
-- [tools] perf tools: Include errno.h where needed (Jiri Olsa) [1480522]
-- [tools] perf tools: Move extra string util functions to util/string2.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Move srcline definitions to separate header (Jiri Olsa) [1480522]
-- [tools] perf tools: Move print_binary definitions to separate files (Jiri Olsa) [1480522]
-- [tools] tools include: Include missing headers for fls() and types in linux/log2.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Move sane ctype stuff from util.h to sane_ctype.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Ditch unused PATH_SEP, STRIP_EXTENSION (Jiri Olsa) [1480522]
-- [tools] perf tools: Replace STR() calls with __stringify() (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove PRI[xu] macros from perf.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Including missing inttypes.h header (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove unused macros from util.h (Jiri Olsa) [1480522]
-- [tools] tools include: Drop ARRAY_SIZE() definition from linux/hashtable.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Add include <linux/kernel.h> where ARRAY_SIZE() is used (Jiri Olsa) [1480522]
-- [tools] objtool: Drop ARRAY_SIZE() definition, tools/include/linux/kernel.h has it now (Jiri Olsa) [1480522]
-- [tools] tools include: Move ARRAY_SIZE() to linux/kernel.h (Jiri Olsa) [1480522]
-- [tools] tools include: Adopt __same_type() and __must_be_array() from the kernel (Jiri Olsa) [1480522]
-- [tools] tools include: Introduce linux/bug.h, from the kernel sources (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove FLEX_ARRAY definition (Jiri Olsa) [1480522]
-- [tools] perf unwind arm64: Add missing errno.h header (Jiri Olsa) [1480522]
-- [tools] revert "perf tools: Fix include of linux/mman.h" (Jiri Olsa) [1480522]
-- [tools] perf util: Hint missing file when tool tips fail to load (Jiri Olsa) [1480522]
-- [tools] tools build: Fix feature detection redefinion of build flags (Jiri Olsa) [1480522]
-- [tools] perf tools: Disable JVMTI if no ELF support available (Jiri Olsa) [1480522]
-- [tools] perf trace: Add usage of --no-syscalls in man page (Jiri Olsa) [1480522]
-- [tools] perf stat: Fix bug in handling events in error state (Jiri Olsa) [1480522]
-- [tools] perf tools: Pass PYTHON config to feature detection (Jiri Olsa) [1480522]
-- [tools] perf annotate: Use stripped line instead of raw disassemble line (Jiri Olsa) [1480522]
-- [tools] perf annotate: Refactor the code to parse disassemble lines with {l, r}trim() (Jiri Olsa) [1480522]
-- [tools] perf tools: Do not print missing features in pipe-mode (Jiri Olsa) [1480522]
-- [tools] perf session: Don't rely on evlist in pipe mode (Jiri Olsa) [1480522]
-- [tools] perf annotate: Process attr and build_id records (Jiri Olsa) [1480522]
-- [tools] perf tools: Describe pipe mode in perf.data-file-fomat.txt (Jiri Olsa) [1480522]
-- [tools] perf inject: Copy events when reordering events in pipe mode (Jiri Olsa) [1480522]
-- [tools] perf inject: Don't proceed if perf_session__process_event() fails (Jiri Olsa) [1480522]
-- [tools] perf annotate s390: Implement jump types for perf annotate (Jiri Olsa) [1480522]
-- [tools] perf string: Simplify ltrim() implementation (Jiri Olsa) [1480522]
-- [tools] perf tools: Refactor the code to strip command name with {l, r}trim() (Jiri Olsa) [1480522]
-- [tools] perf pmu: Refactor wordwrap() with ltrim() (Jiri Olsa) [1480522]
-- [tools] perf ui browser: Refactor the code to parse color configs with ltrim() (Jiri Olsa) [1480522]
-- [tools] perf stat: Refactor the code to strip csv output with ltrim() (Jiri Olsa) [1480522]
-- [tools] perf evsel: Return exact sub event which failed with EPERM for wildcards (Jiri Olsa) [1480522]
-- [tools] perf script: Use strtok_r() when parsing output field list (Jiri Olsa) [1480522]
-- [tools] perf callchains: Switch from strtok() to strtok_r() when parsing options (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix missing number of samples for source_line_samples (Jiri Olsa) [1480522]
-- [tools] perf tools: Don't die on a print function (Jiri Olsa) [1480522]
-- [tools] perf tools: Handle allocation failures gracefully (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove die() call (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add missing space in json descriptions (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore_arb JSON support (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Skylake client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Broadwell client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Haswell client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Ivy Bridge client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Sandy Bridge client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add missing UNC_M_DCLOCKTICKS for Broadwell DE uncore (Jiri Olsa) [1480522]
-- [tools] perf sdt powerpc: Add argument support (Jiri Olsa) [1480522]
-- [tools] perf trace: Beautify statx syscall 'flag' and 'mask' arguments (Jiri Olsa) [1480522]
-- [tools] perf tools: Do not fail in case of empty HOME env variable (Jiri Olsa) [1480522]
-- [tools] tools include uapi: Grab copies of stat.h and fcntl.h (Jiri Olsa) [1480522]
-- [tools] perf utils: fix spelling mistake: "Invalud" -> "Invalid" (Jiri Olsa) [1480522]
-- [tools] perf trace: Handle unpaired raw_syscalls:sys_exit event (Jiri Olsa) [1480522]
-- [tools] perf report: Drop cycles 0 for LBR print (Jiri Olsa) [1480522]
-- [tools] perf/sdt/x86: Move OP parser to tools/perf/arch/x86/ (Jiri Olsa) [1480522]
-- [tools] perf/sdt/x86: Add renaming logic for (missing) 8 bit registers (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove support for command aliases (Jiri Olsa) [1480522]
-- [tools] perf utils: Readlink /proc/self/exe to find the perf binary (Jiri Olsa) [1480522]
-- [tools] perf utils: Null terminate buf in read_ftrace_printk() (Jiri Olsa) [1480522]
-- [tools] perf utils: use sizeof(buf) - 1 in readlink() call (Jiri Olsa) [1480522]
-- [tools] perf tests: Do not assume that readlink() returns a null terminated string (Jiri Olsa) [1480522]
-- [tools] perf test: Add a test case for SDT event (Jiri Olsa) [1480522]
-- [tools] perf buildid: Do not assume that readlink() returns a null terminated string (Jiri Olsa) [1480522]
-- [tools] perf buildid: Do not update SDT cache with null filename (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix a bug of division by zero when calculating percent (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix a bug following symbolic link of a build-id file (Jiri Olsa) [1480522]
-- [tools] perf report: Enable sorting by srcline as key (Jiri Olsa) [1480522]
-- [tools] perf report: Show inline stack for browser mode (Jiri Olsa) [1480522]
-- [tools] perf report: Show inline stack for stdio mode (Jiri Olsa) [1480522]
-- [tools] perf report: Introduce --inline option (Jiri Olsa) [1480522]
-- [tools] perf report: Find the inline stack for a given address (Jiri Olsa) [1480522]
-- [tools] perf report: Refactor common code in srcline.c (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove unused 'prefix' from builtin functions (Jiri Olsa) [1480522]
-- [tools] perf list sdt: Show option in man page (Jiri Olsa) [1480522]
-- [tools] perf auxtrace: Fix no_size logic in addr_filter__resolve_kernel_syms() (Jiri Olsa) [1480522]
-- [tools] perf trace: Fixup thread refcounting (Jiri Olsa) [1480522]
-- [tools] perf trace: Fix up error path indentation (Jiri Olsa) [1480522]
-- [tools] perf trace: Check for vfs_getname.pathname length (Jiri Olsa) [1480522]
-- [tools] perf list: Move extra details printing to new option (Jiri Olsa) [1480522]
-- [tools] perf pmu: Add support for MetricName JSON attribute (Jiri Olsa) [1480522]
-- [tools] perf list: Support printing MetricExpr with --debug (Jiri Olsa) [1480522]
-- [tools] perf stat: Output JSON MetricExpr metric (Jiri Olsa) [1480522]
-- [tools] perf pmu: Support MetricExpr header in JSON event list (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Update Intel uncore JSON event files (Jiri Olsa) [1480522]
-- [tools] perf tools: Add a simple expression parser for JSON (Jiri Olsa) [1480522]
-- [tools] perf pmu: Special case uncore_ prefix (Jiri Olsa) [1480522]
-- [tools] perf pmu: Expand PMU events by prefix match (Jiri Olsa) [1480522]
-- [tools] perf tools: Factor out PMU matching in parser (Jiri Olsa) [1480522]
-- [tools] perf stat: Handle partially bad results with merging (Jiri Olsa) [1480522]
-- [tools] perf stat: Collapse identically named events (Jiri Olsa) [1480522]
-- [tools] perf stat: Factor out callback for collecting event values (Jiri Olsa) [1480522]
-- [tools] perf annotate: Add comment clarifying how the source code line is parsed (Jiri Olsa) [1480522]
-- [tools] perf annotate: More exactly grep -v of the objdump command (Jiri Olsa) [1480522]
-- [tools] perf sdt x86: Add renaming logic for rNN and other registers (Jiri Olsa) [1480522]
-- [tools] perf probe: Add sdt probes arguments into the uprobe cmd string (Jiri Olsa) [1480522]
-- [tools] perf sdt: Add scanning of sdt probes arguments (Jiri Olsa) [1480522]
-- [tools] perf probe: Return errno when not hitting any event (Jiri Olsa) [1480522]
-- [tools] perf probe: Change MAX_CMDLEN (Jiri Olsa) [1480522]
-- [tools] tools headers: Sync {tools/, }arch/powerpc/include/uapi/asm/kvm.h (Jiri Olsa) [1480522]
-- [tools] perf probe: Fix concat_probe_trace_events (Jiri Olsa) [1480522]
-- [tools] perf stat: Correct --no-aggr description (Jiri Olsa) [1480522]
-- [tools] perf tools: Handle partial AUX records and print a warning (Jiri Olsa) [1480522]
-- [tools] tools include: Sync {, tools/}include/uapi/linux/perf_event.h (Jiri Olsa) [1480522]
-- [tools] tools lib api fs: Introduce sysfs__read_bool (Jiri Olsa) [1480522]
-- [tools] perf timechart: Use OPT_PARENT for common options (Jiri Olsa) [1480522]
-- [tools] perf lock: Make 'f' part of the common 'lock_options' (Jiri Olsa) [1480522]
-- [tools] perf lock: Subcommands should include common options (Jiri Olsa) [1480522]
-- [tools] perf script: Add 'brstackinsn' for branch stacks (Jiri Olsa) [1480522]
-- [tools] perf tools: Make perf_event__synthesize_mmap_events() scale (Jiri Olsa) [1480522]
-- [tools] perf probe: Introduce util func is_sdt_event() (Jiri Olsa) [1480522]
-- [tools] perf powerpc: Choose local entry point with kretprobes (Jiri Olsa) [1480522]
-- [tools] perf kretprobes: Offset from reloc_sym if kernel supports it (Jiri Olsa) [1480522]
-- [tools] perf probe: Factor out the ftrace README scanning (Jiri Olsa) [1480522]
-- [tools] perf sched timehist: Add --next option (Jiri Olsa) [1480522]
-- [tools] perf hists browser: Fix typo in function switch_data_file (Jiri Olsa) [1480522]
-- [tools] perf report: Document +field style argument support for --field option (Jiri Olsa) [1480522]
-- [tools] perf sort: Fix segfault with basic block 'cycles' sort dimension (Jiri Olsa) [1480522]
-- [tools] perf tools: Ignore generated files pmu-events/{jevents, pmu-events.c} for git (Jiri Olsa) [1480522]
-- [tools] perf tools: Missing c2c command in command-list (Jiri Olsa) [1480522]
-- [tools] perf c2c: Fix display bug when using pipe (Jiri Olsa) [1480522]
-- [tools] perf c2c: Clarify help message of --stats option (Jiri Olsa) [1480522]
-- [tools] perf report: Hide tip message when -q option is given (Jiri Olsa) [1480522]
-- [tools] tools build: Use the same CC for feature detection and actual build (Jiri Olsa) [1480522]
-- [tools] perf bench futex: Fix build on musl + clang (Jiri Olsa) [1480522]
-- [tools] perf bench futex: Use __maybe_unused (Jiri Olsa) [1480522]
-- [tools] tools build: Add test for sched_getcpu() (Jiri Olsa) [1480522]
-- [tools] perf tools: Force uncore events to system wide monitoring (Jiri Olsa) [1480522]
-- [tools] perf intel-pt/bts: Add missing initialization (Jiri Olsa) [1480522]
-- [tools] perf probe: Generalize probe event file open routine (Jiri Olsa) [1480522]
-- [tools] perf ftrace: Use pager for displaying result (Jiri Olsa) [1480522]
-- [tools] perf ftrace: Add support for -a and -C option (Jiri Olsa) [1480522]
-- [tools] perf cpumap: Introduce cpu_map__snprint_mask() (Jiri Olsa) [1480522]
-- [tools] perf ftrace: Add support for --pid option (Jiri Olsa) [1480522]
-- [tools] perf tools: Allow sorting by symbol size (Jiri Olsa) [1480522]
-- [tools] perf evlist: Clarify a bit the use of perf_mmap->refcnt (Jiri Olsa) [1480522]
-- [tools] perf thread_map: Convert thread_map.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf thread: convert thread.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf evlist: Convert perf_map.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf map: Convert map_groups.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf map: Convert map.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf dso: Convert dso.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf comm: Convert comm_str.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf cpumap: Convert cpu_map.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf cgroup: Convert cgroup_sel.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] tools include: Adopt kernel's refcount.h (Jiri Olsa) [1480522]
-- [tools] tools include: Add UINT_MAX def to kernel.h (Jiri Olsa) [1480522]
-- [tools] tools include: Provide gcc based cmpxchg fallback for !x86 (Jiri Olsa) [1480522]
-- [tools] tools include: Introduce atomic_cmpxchg_{relaxed, release}() (Jiri Olsa) [1480522]
-- [tools] tools arch x86: Introduce atomic_cmpxchg() (Jiri Olsa) [1480522]
-- [tools] tools arch x86: Include asm/cmpxchg.h (Jiri Olsa) [1480522]
-- [tools] tools include: Adopt __compiletime_error (Jiri Olsa) [1480522]
-- [tools] perf stat: Issue a HW watchdog disable hint (Jiri Olsa) [1480522]
-- [tools] perf vendor events: Add mapping for KnightsMill PMU events (Jiri Olsa) [1480522]
-- [x86] perf/x86/intel: Add 1G DTLB load/store miss support for SKL (Jiri Olsa) [1480522]
-- [kernel] perf/aux: Correct return code of rb_alloc_aux() if !has_aux(ev) (Jiri Olsa) [1480522]
-- [kernel] perf/callchain: Force USER_DS when invoking perf_callchain_user() (Jiri Olsa) [1480522]
-- [x86] perf/x86: Fix Broadwell-EP DRAM RAPL events (Jiri Olsa) [1480522]
-- [x86] perf/x86: Fix spurious NMI with PEBS Load Latency event (Jiri Olsa) [1480522]
-- [x86] perf/x86/intel/pt: Allow the disabling of branch tracing (Jiri Olsa) [1480522]
-- [x86] perf/x86/intel/pt: Handle VMX better (Jiri Olsa) [1480522]
-- [kernel] perf/core: Add a flag for partial AUX records (Jiri Olsa) [1480522]
-- [kernel] perf/core: Keep AUX flags in the output handle (Jiri Olsa) [1480522]
-- [x86] perf/x86: Add Top Down events to Intel Goldmont (Jiri Olsa) [1480522]
-
-* Thu Sep 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-718.el7]
-- [x86] kvm, pkeys: do not use PKRU value in vcpu->arch.guest_fpu.state (Paul Lai) [1387360]
-- [x86] kvm: x86: simplify handling of PKRU (Paul Lai) [1387360]
-- [x86] kvm: x86: block guest protection keys unless the host has them enabled (Paul Lai) [1387360]
-- [x86] kvm, pkeys: expose CPUID/CR4 to guest (Paul Lai) [1387360]
-- [x86] kvm, pkeys: add pkeys support for permission_fault (Paul Lai) [1387360]
-- [x86] kvm, pkeys: introduce pkru_mask to cache conditions (Paul Lai) [1387360]
-- [x86] kvm, pkeys: save/restore PKRU when guest/host switches (Paul Lai) [1387360]
-- [x86] kvm, pkeys: add pkeys support for xsave state (Paul Lai) [1387360]
-- [x86] kvm, pkeys: disable pkeys for guests in non-paging mode (Paul Lai) [1387360]
-- [x86] kvm: x86: remove magic number with enum cpuid_leafs (Paul Lai) [1387360]
-- [x86] kvm: mmu: return page fault error code from permission_fault (Paul Lai) [1387360]
-- [kernel] s390/mm: simplify arch_get_unmapped_area[_topdown] (Adrian Reber) [1466682]
-- [kernel] s390/mm: make TASK_SIZE independent from the number of page table levels (Adrian Reber) [1466682]
-- [kernel] s390: wire up separate socketcalls system calls (Adrian Reber) [1466682]
-- [kernel] s390: wire up memfd_create syscall (Adrian Reber) [1466682]
-- [kernel] s390/gup: handle zero nr_pages case correctly (Adrian Reber) [1466682]
-- [kernel] s390: TASK_SIZE for kernel threads (Adrian Reber) [1466682]
-- [netdrv] ena: implement RHEL7.5 version of change_mtu (John Linville) [1478896]
-- [netdrv] ena: update ena driver to version 1.2.0 (John Linville) [1478896]
-- [netdrv] ena: update driver's rx drop statistics (John Linville) [1478896]
-- [netdrv] ena: use lower_32_bits()/upper_32_bits() to split dma address (John Linville) [1478896]
-- [netdrv] ena: separate skb allocation to dedicated function (John Linville) [1478896]
-- [netdrv] ena: use napi_schedule_irqoff when possible (John Linville) [1478896]
-- [netdrv] ena: add support for out of order rx buffers refill (John Linville) [1478896]
-- [netdrv] ena: add reset reason for each device FLR (John Linville) [1478896]
-- [netdrv] ena: change sizeof() argument to be the type pointer (John Linville) [1478896]
-- [netdrv] ena: add hardware hints capability to the driver (John Linville) [1478896]
-- [netdrv] ena: change return value for unsupported features unsupported return value (John Linville) [1478896]
-- [netdrv] ena: update ena driver to version 1.1.7 (John Linville) [1478896]
-- [netdrv] ena: bug fix in lost tx packets detection mechanism (John Linville) [1478896]
-- [netdrv] ena: disable admin msix while working in polling mode (John Linville) [1478896]
-- [netdrv] ena: fix theoretical Rx hang on low memory systems (John Linville) [1478896]
-- [netdrv] ena: add missing unmap bars on device removal (John Linville) [1478896]
-- [netdrv] ena: fix race condition between submit and completion admin command (John Linville) [1478896]
-- [netdrv] ena: add missing return when ena_com_get_io_handlers() fails (John Linville) [1478896]
-- [netdrv] ena: fix bug that might cause hang after consecutive open/close interface (John Linville) [1478896]
-- [netdrv] ena: fix rare uncompleted admin command false alarm (John Linville) [1478896]
-- [netdrv] ena: remove superfluous check in ena_remove() (John Linville) [1478896]
-- [netdrv] ena: update driver version to 1.1.2 (John Linville) [1478896]
-- [netdrv] ena: change condition for host attribute configuration (John Linville) [1478896]
-- [netdrv] ena: change driver's default timeouts (John Linville) [1478896]
-- [netdrv] ena: reduce the severity of ena printouts (John Linville) [1478896]
-- [netdrv] ena: use READ_ONCE to access completion descriptors (John Linville) [1478896]
-- [netdrv] ena: fix potential access to freed memory during device reset (John Linville) [1478896]
-- [netdrv] ena: refactor ena_get_stats64 to be atomic context safe (John Linville) [1478896]
-- [netdrv] ena: fix NULL dereference when removing the driver after device reset failed (John Linville) [1478896]
-- [netdrv] ena: fix RSS default hash configuration (John Linville) [1478896]
-- [netdrv] ena: fix ethtool RSS flow configuration (John Linville) [1478896]
-- [netdrv] ena: fix queues number calculation (John Linville) [1478896]
-- [netdrv] ena: remove ntuple filter support from device feature list (John Linville) [1478896]
-- [netdrv] ena: use setup_timer() and mod_timer() (John Linville) [1478896]
-
-* Thu Sep 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-717.el7]
-- [fs] vfs: clear remainder of 'full_fds_bits' in dup_fd() (Mateusz Guzik) [1462034]
-- [fs] vfs: Fix pathological performance case for __alloc_fd() (Mateusz Guzik) [1462034]
-- [fs] vfs: conditionally clear close-on-exec flag (Mateusz Guzik) [1462034]
-- [fs] file.c: don't acquire files->file_lock in fd_install() (Mateusz Guzik) [1462034]
-- [fs] gfs2: Fix debugfs glocks dump (Andreas Grunbacher) [1493067]
-- [fs] gfs2: Replace rhashtable_walk_init with rhashtable_walk_enter (Andreas Grunbacher) [1493067]
-- [fs] gfs2: Deduplicate gfs2_{glocks,glstats}_open (Andreas Grunbacher) [1493067]
-- [net] remove explicit do_softirq() from busy_poll_stop() (Ivan Vecera) [1489406]
-- [net] Busy polling should ignore sender CPUs (Ivan Vecera) [1489406]
-- [net] solve a NAPI race (Ivan Vecera) [1489406]
-- [net] napi_watchdog() can use napi_schedule_irqoff() (Ivan Vecera) [1489406]
-- [net] remove __napi_complete() (Ivan Vecera) [1489406]
-- [net] netpoll: more efficient locking (Ivan Vecera) [1489406]
-- [net] busy-poll: return busypolling status to drivers (Ivan Vecera) [1489406]
-- [net] busy-poll: remove need_resched() from sk_can_busy_loop() (Ivan Vecera) [1489406]
-- [net] busy-poll: allow preemption in sk_busy_loop() (Ivan Vecera) [1489406]
-- [net] netpoll: Drop budget parameter from NAPI polling call hierarchy (Ivan Vecera) [1489406]
-- [net] netpoll: Close race condition between poll_one_napi and napi_disable (Ivan Vecera) [1489406]
-- [net] ip6_gre: update mtu properly in ip6gre_err (Xin Long) [1487475]
-- [net] sctp: fix missing wake ups in some situations (Marcelo Leitner) [1442784]
-- [net] tcp: don't annotate mark on control socket from tcp_v6_send_response() (Matteo Croce) [1469857]
-- [net] netfilter: use fwmark_reflect in nf_send_reset (Matteo Croce) [1469857]
-- [net] tcp: fix mark propagation with fwmark_reflect enabled (Matteo Croce) [1469857]
-- [net] Documentation: Add missing descriptions for fwmark_reflect for ipv4 and ipv6 (Matteo Croce) [1469857]
-- [net] ipv6: data of fwmark_reflect sysctl needs to be updated on netns construction (Matteo Croce) [1469857]
-- [net] Use fwmark reflection in PMTU discovery (Matteo Croce) [1469857]
-- [net] add a sysctl to reflect the fwmark on replies (Matteo Croce) [1469857]
-- [net] team: fix memory leaks (Matteo Croce) [1448266]
-- [net] ipv6: accept 64k - 1 packet length in ip6_find_1stfragopt() (Stefano Brivio) [1477010] {CVE-2017-7542}
-- [net] ipv6: avoid overflow of offset in ip6_find_1stfragopt (Sabrina Dubroca) [1477010] {CVE-2017-7542}
-- [scsi] ses: Fix wrong page error (Maurizio Lombardi) [1380720]
-- [scsi] ses: make page2 support optional (Maurizio Lombardi) [1380720]
-- [scsi] ses: Fixup error message 'failed to get diagnostic page 0xffffffea' (Maurizio Lombardi) [1380720]
-- [scsi] ses: check return code from ses_recv_diag() (Maurizio Lombardi) [1380720]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: call megasas_dump_frame with correct IO frame size (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: modified few prints in OCR and IOC INIT path (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: replace internal FALSE/TRUE definitions with false/true (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Return pended IOCTLs with cmd_status MFI_STAT_WRONG_STATE in case adapter is dead (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: use vmalloc for crash dump buffers and driver's local RAID map (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Use SMID for Task abort case only (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Check valid aen class range to avoid kernel panic (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Fix endianness issues in DCMD handling (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Do not re-fire shutdown DCMD after OCR (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Call megasas_complete_cmd_dpc_fusion every 1 second while there are pending commands (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Use synchronize_irq in target reset case (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: set minimum value of resetwaittime to be 1 secs (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: mismatch of allocated MFI frame size and length exposed in MFI MPT pass through command (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: fix allocate instance->pd_info twice (Tomas Henzl) [1458133]
-- [scsi] megaraid: remove DRIVER_ATTR() usage (Tomas Henzl) [1458133]
-- [scsi] megaraid: Replace PCI pool old API (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: fix memleak in megasas_alloc_cmdlist_fusion (Tomas Henzl) [1458133]
-- [scsi] megaraid: remove expensive inline from megasas_return_cmd (Tomas Henzl) [1458133]
-- [scsi] qedi: off by one in qedi_get_cmd_from_tid() (Chad Dupuis) [1461962]
-- [scsi] qedi: Limit number for CQ queues (Chad Dupuis) [1461962]
-- [scsi] qedi: Fix return code in qedi_ep_connect() (Chad Dupuis) [1461962]
-- [scsi] qedi: Add ISCSI_BOOT_SYSFS to Kconfig (Chad Dupuis) [1461962]
-- [scsi] qedi: fix another spelling mistake: "alloction" -> "allocation" (Chad Dupuis) [1461962]
-- [scsi] qedf: drop bus reset handler (Chad Dupuis) [1461960]
-- [scsi] qedf: Update driver version to 8.20.5.0 (Chad Dupuis) [1461960]
-- [scsi] qedf: Fix up modinfo parameter name for 'debug' in modinfo output (Chad Dupuis) [1461960]
-- [scsi] qedf: Covert single-threaded workqueues to regular workqueues (Chad Dupuis) [1461960]
-- [scsi] qedf: Corrent VLAN tag insertion in fallback VLAN case (Chad Dupuis) [1461960]
-- [scsi] qedf: Use granted MAC from the FCF for the FCoE source address if it is available (Chad Dupuis) [1461960]
-- [scsi] qedf: Set WWNN and WWPN based on values from qed (Chad Dupuis) [1461960]
-- [scsi] qedf: fix spelling mistake: "offlading" -> "offloading" (Chad Dupuis) [1461960]
-- [scsi] qedf: Merge a few quoted strings split across lines (Chad Dupuis) [1461960]
-- [scsi] qedf: Use 'dma_zalloc_coherent' to reduce code verbosity (Chad Dupuis) [1461960]
-- [scsi] qedf: Fix a return value in case of error in 'qedf_alloc_global_queues' (Chad Dupuis) [1461960]
-- [scsi] qedf: Check if sense buffer has been allocated during completion (Chad Dupuis) [1461960]
-- [scsi] qedf: Update version number to 8.18.22.0 (Chad Dupuis) [1461960]
-- [scsi] qedf: Add change_queue_depth member to scsi_host_template() (Chad Dupuis) [1461960]
-- [scsi] qedf: Change cmd_per_lun in scsi_host_template to 32 to increase performance (Chad Dupuis) [1461960]
-- [scsi] qedf: Move some prints to a debug level so they do not print when no debugging is enabled (Chad Dupuis) [1461960]
-- [scsi] qedf: Fixup unnecessary parantheses around test_bit operations (Chad Dupuis) [1461960]
-- [scsi] qedf: Add non-offload receive filters (Chad Dupuis) [1461960]
-- [scsi] qedf: Add bus_reset No-op (Chad Dupuis) [1461960]
-- [scsi] qedf: Use same logic for SCSI host reset and FC lip_reset (Chad Dupuis) [1461960]
-- [scsi] qedf: Set qed logging level to QED_LEVEL_NOTICE (Chad Dupuis) [1461960]
-- [scsi] qedf: Add fka_period SCSI host attribute to show fip keep alive period (Chad Dupuis) [1461960]
-- [scsi] qedf: Check that fcport is offloaded before dereferencing pointers in initiate_abts|cleanup (Chad Dupuis) [1461960]
-- [scsi] qedf: Look at all descriptors when processing a clear virtual link (Chad Dupuis) [1461960]
-- [scsi] qedf: Honor qed_ops->common->set_fp_int() return code (Chad Dupuis) [1461960]
-- [scsi] qedf: Update copyright to 2017 (Chad Dupuis) [1461960]
-- [scsi] qedf: Enable basic FDMI information (Chad Dupuis) [1461960]
-- [scsi] qedf: Avoid reading past end of buffer (Chad Dupuis) [1461960]
-- [scsi] qedf: Cleanup the type of io_log->op (Chad Dupuis) [1461960]
-- [scsi] qedf: properly update arguments position in function call (Chad Dupuis) [1461960]
-- [scsi] qedi: qedf: Use designated initializers (Chad Dupuis) [1461960]
-- [scsi] qedf: Fix crash due to unsolicited FIP VLAN response (Chad Dupuis) [1461960]
-- [scsi] qedf: Use vsprintf extension pad (Chad Dupuis) [1461960]
-
-* Wed Sep 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-716.el7]
-- [block] blk_mq: linux/blk-mq.h does not include all the headers it depends on (Ming Lei) [1389540 1458104]
-- [block] blk-mq: kill unused blk_mq_create_mq_map() (Ming Lei) [1389540 1458104]
-- [kernel] blk-mq: get rid of the cpumask in struct blk_mq_tags (Ming Lei) [1389540 1458104]
-- [nvme] remove the post_scan callout (Ming Lei) [1389540]
-- [nvme] switch to use pci_alloc_irq_vectors (Ming Lei) [1389540]
-- [kernel] blk-mq: provide a default queue mapping for PCI device (Ming Lei) [1389540 1458104]
-- [kernel] blk-mq: remove ->map_queue (Ming Lei) [1389540 1458104]
-- [block] blk-mq: really fix plug list flushing for nomerge queues (Ming Lei) [1389540 1458104]
-- [block] fix plug list flushing for nomerge queues (Ming Lei) [1389540 1458104]
-- [block] blk-mq: free hctx->ctxs in queue's release handler (Ming Lei) [1389540 1458104]
-- [kernel] blk-mq: fix iteration of busy bitmap (Ming Lei) [1389540 1458104]
-- [block] blk-mq: reduce unnecessary software queue looping (Ming Lei) [1389540 1458104]
-- [kernel] genirq/affinity: Fix calculating vectors to assign (Ming Lei) [1389540]
-- [kernel] irq/affinity: Fix extra vecs calculation (Ming Lei) [1389540]
-- [kernel] irq/affinity: Fix CPU spread for unbalanced nodes (Ming Lei) [1389540]
-- [pci] msi: Update MSI/MSI-X bits in PCIEBUS-HOWTO (Ming Lei) [1389540]
-- [pci] msi: Document pci_alloc_irq_vectors(), deprecate pci_enable_msi() (Ming Lei) [1389540]
-- [pci] msi: Return -ENOSPC if pci_enable_msi_range() can't get enough vectors (Ming Lei) [1389540]
-- [pci] portdrv: Use pci_irq_alloc_vectors() (Ming Lei) [1389540]
-- [pci] msi: Check that we have a legacy interrupt line before using it (Ming Lei) [1389540]
-- [pci] msi: Return failure when msix_setup_entries() fails (Ming Lei) [1389540]
-- [netdrv] amd-xgbe: Update PCI support to use new IRQ functions (Ming Lei) [1389540]
-- [pci] msi: Fix msi_capability_init() kernel-doc warnings (Ming Lei) [1389540]
-- [pci] msi: Don't apply affinity if there aren't enough vectors left (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Fix node generation from cpumask (Ming Lei) [1389540]
-- [pci] msi: Check for NULL affinity mask in pci_irq_get_affinity() (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Use default affinity mask for reserved vectors (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Take reserved vectors into account when spreading irqs (Ming Lei) [1389540]
-- [kernel] pci: Remove the irq_affinity mask from struct pci_dev (Ming Lei) [1389540]
-- [kernel] pci/msi: Provide pci_alloc_irq_vectors_affinity() (Ming Lei) [1389540]
-- [pci] msi: Propagate IRQ affinity description through the MSI code (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Handle pre/post vectors in irq_create_affinity_masks() (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Handle pre/post vectors in irq_calc_affinity_vectors() (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Introduce struct irq_affinity (Ming Lei) [1389540]
-- [pci] doc: Add missing parameter for msi_setup (Ming Lei) [1389540]
-- [kernel] pci/msi: Retrieve affinity for a vector (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Remove old irq spread infrastructure (Ming Lei) [1389540]
-- [kernel] genirq/msi: Switch to new irq spreading infrastructure (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Provide smarter irq spreading infrastructure (Ming Lei) [1389540]
-- [kernel] genirq/msi: Add cpumask allocation to alloc_msi_entry (Ming Lei) [1389540]
-- [pci] Call pci_intx() when using legacy interrupts in pci_alloc_irq_vectors() (Ming Lei) [1389540]
-- [kernel] pci: Use positive flags in pci_alloc_irq_vectors() (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Use get/put_online_cpus around cpumask operations (Ming Lei) [1389540]
-- [kernel] pci: Spread interrupt vectors in pci_alloc_irq_vectors() (Ming Lei) [1389540]
-- [kernel] pci: Provide sensible IRQ vector alloc/free routines (Ming Lei) [1389540]
-- [pci] Make the "entries" argument to pci_enable_msix() optional (Ming Lei) [1389540]
-- [pci] Switch msix_program_entries() to use pci_msix_desc_addr() (Ming Lei) [1389540]
-- [pci] Add pci_msix_desc_addr() helper (Ming Lei) [1389540]
-- [kernel] genirq: Add a helper to spread an affinity mask for MSI/MSI-X vectors (Ming Lei) [1389540]
-- [kernel] genirq/msi: Make use of affinity aware allocations (Ming Lei) [1389540]
-- [kernel] genirq: introduce _affinity version of irq_alloc_hwirq (Ming Lei) [1389540]
-- [kernel] genirq: Use affinity hint in irqdesc allocation (Ming Lei) [1389540]
-- [kernel] genirq: Add affinity hint to irq allocation (Ming Lei) [1389540]
-- [kernel] genirq: Introduce IRQD_AFFINITY_MANAGED flag (Ming Lei) [1389540]
-- [kernel] genirq: Provide and use __irq_can_set_affinity() (Ming Lei) [1389540]
-
-* Fri Sep 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-715.el7]
-- [fs] pnfs: Fix a deadlock between read resends and layoutreturn (Steve Dickson) [1477350]
-- [fs] pnfs: Ensure LAYOUTGET and LAYOUTRETURN are properly serialised (Steve Dickson) [1477343]
-- [fs] nfsv4.1: Fix regression in callback retry handling (Steve Dickson) [1477306]
-- [fs] nfsv4: Ensure we don't re-test revoked and freed stateids (Dave Wysochanski) [1459733]
-- [fs] nfsd: Limit end of page list when decoding NFSv4 WRITE ("J. Bruce Fields") [1485509]
-- [fs] xfs: stop searching for free slots in an inode chunk when there are none (Carlos Maiolino) [1472639]
-- [fs] xfs: remove bli from AIL before release on transaction abort (Bill O'Donnell) [1428663]
-- [fs] xfs: release bli from transaction properly on fs shutdown (Bill O'Donnell) [1428663]
-- [fs] gfs2: Fix non-recursive truncate bug (Robert S Peterson) [1486061]
-- [fs] ext4: drop the EXT4_STATE_DELALLOC_RESERVED flag (Lukas Czerner) [1433215]
-- [fs] ext4: prepare to drop EXT4_STATE_DELALLOC_RESERVED (Lukas Czerner) [1433215]
-- [fs] ext4: pass allocation_request struct to ext4_(alloc, splice)_branch (Lukas Czerner) [1433215]
-- [fs] cifs: Fix null pointer deref during read resp processing (Sachin Prabhu) [1429710]
-- [fs] cifs: Fix possible use after free in demultiplex thread (Sachin Prabhu) [1429710]
-- [fs] cifs: Allow to switch on encryption with seal mount option (Sachin Prabhu) [1429710]
-- [fs] cifs: RHEL 7 Changes to replace bvec iter (Sachin Prabhu) [1429710]
-- [fs] cifs: Add capability to decrypt big read responses (Sachin Prabhu) [1429710]
-- [fs] cifs: Add a modified cifs_read_page_from_socket() (Sachin Prabhu) [1429710]
-- [fs] cifs: RHEL 7 Changes to replace kvec iter (Sachin Prabhu) [1429710]
-- [fs] cifs: Decrypt and process small encrypted packets (Sachin Prabhu) [1429710]
-- [fs] cifs: Add copy into pages callback for a read operation (Sachin Prabhu) [1429710]
-- [fs] cifs: Add mid handle callback (Sachin Prabhu) [1429710]
-- [fs] cifs: Add transform header handling callbacks (Sachin Prabhu) [1429710]
-- [fs] cifs: RHEL 7 modifications for aead differences (Sachin Prabhu) [1429710]
-- [fs] cifs: Encrypt SMB3 requests before sending (Sachin Prabhu) [1429710]
-- [fs] cifs: Enable encryption during session setup phase (Sachin Prabhu) [1429710]
-- [fs] cifs: Add capability to transform requests before sending (Sachin Prabhu) [1429710]
-- [fs] cifs: Separate RFC1001 length processing for SMB2 read (Sachin Prabhu) [1429710]
-- [fs] cifs: Separate SMB2 sync header processing (Sachin Prabhu) [1429710]
-- [fs] cifs: Send RFC1001 length in a separate iov (Sachin Prabhu) [1429710]
-- [fs] cifs: Make send_cancel take rqst as argument (Sachin Prabhu) [1429710]
-- [fs] cifs: Make SendReceive2() takes resp iov (Sachin Prabhu) [1429710]
-- [fs] cifs: Separate SMB2 header structure (Sachin Prabhu) [1429710]
-- [fs] cifs: Add soft dependencies (Sachin Prabhu) [1429710]
-- [fs] cifs: Only select the required crypto modules (Sachin Prabhu) [1429710]
-- [fs] cifs: Simplify SMB2 and SMB311 dependencies (Sachin Prabhu) [1429710]
-- [fs] Fix default behaviour for empty domains and add domainauto option (Sachin Prabhu) [1429710]
-- [fs] cifs: use 16phN for formatting md5 sum (Sachin Prabhu) [1429710]
-- [fs] cifs_readv_receive: use cifs_read_from_socket() (Sachin Prabhu) [1429710]
-- [fs] cifs: merge the hash calculation helpers (Sachin Prabhu) [1429710]
-- [fs] cifs: Check for timeout on Negotiate stage (Leif Sahlberg) [1426555]
-- [fs] cifs: Fix df output for users with quota limits (Leif Sahlberg) [1464155]
-
-* Thu Sep 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-714.el7]
-- [infiniband] ib/vmw_pvrdma: Fix incorrect cleanup on pvrdma_pci_probe error path (Don Dutile) [1454965]
-- [infiniband] ib/vmw_pvrdma: Don't leak info from alloc_ucontext (Don Dutile) [1454965]
-- [kernel] vmxnet3: Move PCI Id to pci_ids.h (Don Dutile) [1454965]
-- [pinctrl] intel: Add Intel Cannon Lake PCH-H pin controller support (David Arcari) [1457654]
-- [pinctrl] intel: Add Intel Cannon Lake PCH pin controller support (David Arcari) [1457654]
-- [pinctrl] intel: Make it possible to specify mode per pin in a group (David Arcari) [1457654]
-- [pinctrl] intel: Add support for variable size pad groups (David Arcari) [1457654]
-- [pinctrl] intel: unlock on error in intel_config_set_pull() (David Arcari) [1457654]
-- [pinctrl] intel: Add support for 1k additional pull-down (David Arcari) [1457654]
-- [pinctrl] intel: Add support for hardware debouncer (David Arcari) [1457654]
-- [kernel] pinctrl / gpio: Introduce .set_config() callback for GPIO chips (David Arcari) [1457654]
-- [kernel] pinctrl: Allow configuration of pins from gpiolib based drivers (David Arcari) [1457654]
-- [vhost] vhost_net: correctly check tx avail during rx busy polling (Jason Wang) [1487551]
-- [tools] power/cpupower: allow running without cpu0 (Prarit Bhargava) [1375782]
-- [xen] balloon: don't online new memory initially (Vitaly Kuznetsov) [1490770]
-- [kernel] audit: unswing cap_* fields in PATH records (Richard Guy Briggs) [1465558]
-- [kernel] module: keep percpu symbols in module's symtab (Joe Lawrence) [1451907]
-- [security] selinux: remove AVC init audit log message (Richard Guy Briggs) [1465625]
-
-* Thu Sep 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-713.el7]
-- [s390] syscalls: Fix out of bounds arguments access (Jiri Olsa) [1436323]
-- [x86] ras/therm_throt: Do not log a fake MCE for thermal events (Prarit Bhargava) [1465345]
-- [x86] early_ioremap: Increase FIX_BTMAPS_SLOTS to 8 (Lenny Szubowicz) [1487221]
-- [pci] Identify Enhanced Allocation (EA) BAR Equivalent resources in sysfs (Myron Stowe) [1489540]
-- [pci] Use cached copy of PCI_EXP_SLTCAP_HPC bit (Myron Stowe) [1489540]
-- [pci] Supply CPU physical address (not bus address) to iomem_is_exclusive() (Myron Stowe) [1489540]
-- [pci] Add Downstream Port Containment driver (Myron Stowe) [1489540]
-- [pci] Add Downstream Port Containment portdrv service type (Myron Stowe) [1489540]
-- [pci] Widen portdrv service type from 4 bits to 8 bits (Myron Stowe) [1489540]
-- [pci] Fix spelling errors (Myron Stowe) [1489540]
-- [pci] pci: acpiphp_ibm: Avoid uninitialized variable reference (Myron Stowe) [1489540]
-- [pci] pci: Refine PCI support check in pcibios_init() (Myron Stowe) [1489540]
-- [netdrv] fm10k: do not enqueue mailbox when host not ready (Neil Horman) [1454908]
-- [netdrv] fm10k: disable receive queue when configuring ring (Neil Horman) [1454908]
-- [netdrv] fm10k: update function header comment for fm10k_get_stats64 (Neil Horman) [1454908]
-- [netdrv] fm10k: allow service task to reschedule itself (Neil Horman) [1454908]
-- [netdrv] fm10k: future-proof state bitmaps using DECLARE_BITMAP (Neil Horman) [1454908]
-- [netdrv] fm10k: use a BITMAP for flags to avoid race conditions (Neil Horman) [1454908]
-- [netdrv] fm10k: correctly check if interface is removed (Neil Horman) [1454908]
-- [netdrv] fm10k: remove FM10K_FLAG_DEBUG_STATS (Neil Horman) [1454908]
-- [netdrv] fm10k: report the receive timestamp in FM10K_CB(skb)->tstamp (Neil Horman) [1454908]
-- [netdrv] fm10k: Limit dma sync of RX buffers to actual packet size (Neil Horman) [1454908]
-- [netdrv] fm10k: bump version number (Neil Horman) [1454908]
-- [netdrv] fm10k: do not clear global mailbox interrupt bits (Neil Horman) [1454908]
-- [netdrv] fm10k: request reset when mbx->state changes (Neil Horman) [1454908]
-- [netdrv] fm10k: remove extraneous variable definition in fm10k_ethtool.c (Neil Horman) [1454908]
-- [netdrv] fm10k-shared: use mac-> instead of hw->mac (Neil Horman) [1454908]
-- [netdrv] i40e: point wb_desc at the nvm_wb_desc during i40e_read_nvm_aq (Stefan Assmann) [1484232]
-- [netdrv] i40e: avoid NVM acquire deadlock during NVM update (Stefan Assmann) [1484232]
-- [netdrv] cxgb4vf: Initialize mdio_addr before using it (Arjun Vynipadath) [1458299]
-- [target] fix SAM_STAT_BUSY/TASK_SET_FULL handling (Mike Christie) [1480052]
-- [target] do not require a transport_complete for SCF_TRANSPORT_TASK_SENSE (Mike Christie) [1412979]
-- [tcmu] fix sense handling during completion (Mike Christie) [1412979]
-- [tcmu] target: add helper to copy sense to se_cmd buffer (Mike Christie) [1412979]
-- [tcmu] export alua support in configfs (Mike Christie) [1469773]
-- [net] l2cap: prevent stack overflow on incoming bluetooth packet (Neil Horman) [1489789] {CVE-2017-1000251}
-- [lib] rbtree: Make lockless searches non-fatal (Waiman Long) [1472994]
-
-* Wed Sep 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-712.el7]
-- [cpufreq] intel_pstate: Correct the busy calculation for KNL (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix ratio setting for min_perf_pct (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: constify attribute_group structures (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: skip scheduler hook when in "performance" mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Remove max/min fractions to limit performance (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid division by 0 in min_perf_pct_min() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: use updated msr-index.h HWP.EPP values (Prarit Bhargava) [1465349]
-- [x86] msr-index.h: define HWP.EPP values (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Eliminate intel_pstate_get_min_max() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not walk policy->cpus (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Drop struct cpu_defaults (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Modify check in intel_pstate_update_status() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Drop driver_registered variable (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Skip unnecessary PID resets on init (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Set HWP sampling interval once (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clean up intel_pstate_busy_pid_reset() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fold intel_pstate_reset_all_pid() into the caller (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Initialize pid_params statically (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Drop pointless initialization of PID parameters (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Eliminate struct perf_limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid transient updates of cpuinfo.max_freq (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Active mode P-state limits rework (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use load-based P-state selection more widely (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Support HWP processors in all operation modes (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix policy data management in passive mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: One set of global limits in active mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid percentages in limits-related computations (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Correct frequency setting in the HWP mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Update pid_params.sample_rate_ns in pid_param_set() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Drop redundant wrapper function (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not reinit performance limits in ->setpolicy (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix intel_pstate_verify_policy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix global settings in active mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid triggering cpu_frequency tracepoint unnecessarily (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix intel_cpufreq_verify_policy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not use performance_limits in passive mode (Prarit Bhargava) [1465349]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/cpufreq.h> (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix limits issue with operation mode switching (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Calculate guaranteed performance for HWP (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Make HWP limits compatible with legacy (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Lower frequency than expected under no_turbo (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Operation mode control from sysfs (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Expose global sysfs attributes upfront (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix sysfs limits enforcement for performance policy (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Always keep all limits settings in sync (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use locking in intel_cpufreq_verify_policy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use locking in intel_pstate_resume() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not expose PID parameters in passive mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Support for energy performance hints with HWP (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Add locking around HWP requests (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: fix intel_pstate_exit_perf_limits() prototype (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Set EPP/EPB to 0 in performance mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: increase precision of performance limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: round up min_perf limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Generic governors support (Prarit Bhargava) [1465349]
-- [kernel] cpufreq: Support for fast frequency switching (Prarit Bhargava) [1465349]
-- [cpufreq] acpi-cpufreq: Make read and write operations more efficient (Prarit Bhargava) [1465349]
-- [cpufreq] Introduce cpufreq_start_governor() (Prarit Bhargava) [1465349]
-- [cpufreq] Rename __cpufreq_governor() to cpufreq_governor() (Prarit Bhargava) [1465349]
-- [acpi] cpufreq: intel_pstate: Request P-states control from SMM if needed (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use CPU load based algorithm for PM_MOBILE (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: protect limits variable (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Reduce impact due to rounding error (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Per CPU P-State limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Always set max P-state in performance mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Set P-state upfront in performance mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Remove PID debugfs when not used (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix struct pstate_adjust_policy kerneldoc (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clarify comment in get_target_pstate_use_performance() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Add more out-of-band IDs (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Check cpuid for MSR_HWP_INTERRUPT (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Update cpu_frequency tracepoint every time (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: clean remnant struct element (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix MSR_CONFIG_TDP_x addressing in core_get_max_pstate() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Replace MSR_NHM_TURBO_RATIO_LIMIT (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Declare pid_params/pstate_funcs/hwp_active __read_mostly (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix incorrect placement of __initdata (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not clear utilization update hooks on policy changes (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Adjust _PSS[0] freqeuency if needed (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix ->set_policy() interface for no_turbo (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Downgrade print level for _PPC (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Simplify conditional in intel_pstate_set_policy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clean up get_target_pstate_use_performance() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use sample.core_avg_perf in get_avg_pstate() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clarify average performance computation (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid unnecessary synchronize_sched() during initialization (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clean up intel_pstate_get() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Ignore _PPC processing under HWP (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix intel_pstate_get() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix HWP on boot CPU after system resume (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Enable PPC enforcement for servers (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Adjust policy->max (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Enforce _PPC limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix processing for turbo activation ratio (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use average P-State instead of current P-State (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid getting stuck in high P-states when idle (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use pr_fmt (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid pointless FRAC_BITS shifts under div_fp() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Documenation for structures (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: fix inconsistency in setting policy limits (Prarit Bhargava) [1465349]
-- [kernel] cpufreq: Move scheduler-related code to the sched directory (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid extra invocation of intel_pstate_sample() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not set utilization update hook too early (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not call wrmsrl_on_cpu() with disabled interrupts (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not skip samples partially (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Remove freq calculation from intel_pstate_calc_busy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Move intel_pstate_calc_busy() into get_target_pstate_use_performance() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Optimize calculation for max/min_perf_adj (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Remove extra conversions in pid calculation (Prarit Bhargava) [1465349]
-- [kernel] cpufreq: Add mechanism for registering utilization update callbacks (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Replace timers with utilization update callbacks (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: disable HWP notifications (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Account for IO wait time (Prarit Bhargava) [1465349]
-- [cpufreq] cpufreq / cppc: Initialize policy->min to lowest nonlinear performance (Prarit Bhargava) [1465349]
-- [mailbox] Make startup and shutdown ops optional (Prarit Bhargava) [1465349]
-- [sound] scripts/spelling.txt: add regsiter -> register spelling mistake (Prarit Bhargava) [1465349]
-- [mailbox] skip complete wait event if timer expired (Prarit Bhargava) [1465349]
-- [mailbox] handle empty message in tx_tick (Prarit Bhargava) [1465349]
-- [mailbox] always wait in mbox_send_message for blocking Tx mode (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: add sysfs entries for CPPC perf capabilities (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Read lowest nonlinear perf in cppc_get_perf_caps() (Prarit Bhargava) [1465349]
-- [mailbox] check ->last_tx_done for NULL in case of timer-based polling (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Fix per-CPU pointer management in acpi_cppc_processor_probe() (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Fix crash in acpi_cppc_processor_exit() (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: set an error code on probe error path (Prarit Bhargava) [1465349]
-- [cpufreq] sched/x86: Change CONFIG_SCHED_ITMT to CONFIG_SCHED_MC_PRIO (Prarit Bhargava) [1465349]
-- [x86] sched: Add SD_ASYM_PACKING flags to x86 ITMT CPU (Prarit Bhargava) [1465349]
-- [kernel] acpi/bus: Set _OSC for diverse core support (Prarit Bhargava) [1465349]
-- [acpi] bus: Enable HWP CPPC objects (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use CPPC to get max performance (Prarit Bhargava) [1465349]
-- [x86] sysctl: Add sysctl for ITMT scheduling feature (Prarit Bhargava) [1465349]
-- [x86] topology: Define x86's arch_update_cpu_topology (Prarit Bhargava) [1465349]
-- [x86] Enable Intel Turbo Boost Max Technology 3.0 (Prarit Bhargava) [1465349]
-- [kernel] sched: Extend scheduler's asym packing (Prarit Bhargava) [1465349]
-- [kernel] sched: Move CFS tasks to CPUs with higher capacity (Prarit Bhargava) [1465349]
-- [kernel] sched: Add struct rq::cpu_capacity_orig (Prarit Bhargava) [1465349]
-- [cpufreq] cpufreq / cppc: Add MODULE_DEVICE_TABLE for cppc_cpufreq driver (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Correct desired_perf calculation (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Support PCC with interrupt flag (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Avoid overflow when calculating desired_perf (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Force reporting values in KHz to fix user space interface (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Add prefix cppc to cpudata structure name (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Add support for functional fixed hardware address (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: check for error bit in PCC status field (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: move all PCC related information into pcc_data (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: add sysfs support to compute delivered performance (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: set a non-zero value for transition_latency (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: support for batching CPPC requests (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: acquire pcc_lock only while accessing PCC subspace (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: restructure read/writes for efficient sys mapped reg ops (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Prevent cpc_desc_ptr points to the invalid data (Prarit Bhargava) [1465349]
-- [acpi] cppc: Return error if _CPC is invalid on a CPU (Prarit Bhargava) [1465349]
-- [cpufreq] acpi / cppc: Add module support for cppc_cpufreq driver (Prarit Bhargava) [1465349]
-- [mailbox] Stop using ENOSYS for anything other than unimplemented syscalls (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: use MRTT/MPAR to decide if/when a req can be sent (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: replace writeX/readX to PCC with relaxed version (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: optimized cpc_read and cpc_write (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Optimize PCC Read Write operations (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Initialize and check CPUFreq CPU co-ord type correctly (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Use h/w reduced version of the PCCT structure (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Delete an unnecessary check before the function call kfree() (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Fix potential memory leak (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: signedness bug in register_pcc_channel() (Prarit Bhargava) [1465349]
-- [cpufreq] acpi / cppc: Add a CPUFreq driver for use with CPPC (Prarit Bhargava) [1465349]
-- [acpi] Introduce CPU performance controls using CPPC (Prarit Bhargava) [1465349]
-- [kernel] mailbox: switch to hrtimer for tx_complete polling (Prarit Bhargava) [1465349]
-- [kernel] mailbox: Add ability for clients to request channels by name (Prarit Bhargava) [1465349]
-- [mailbox] Fix up error handling in mbox_request_channel() (Prarit Bhargava) [1465349]
-- [kernel] mailbox: Make mbox_chan_ops const (Prarit Bhargava) [1465349]
-- [mailbox] check for bit set before polling (Prarit Bhargava) [1465349]
-- [mailbox] Add support for Platform Communication Channel (Prarit Bhargava) [1465349]
-- [kernel] mailbox: add tx_prepare client callback (Prarit Bhargava) [1465349]
-- [mailbox] Don't unnecessarily re-arm the polling timer (Prarit Bhargava) [1465349]
-- [kernel] mailbox: Introduce framework for mailbox (Prarit Bhargava) [1465349]
-- [acpi] acpica: acpi 5.1: Update for PCCT table changes (Prarit Bhargava) [1465349]
-- [acpi] acpica: tables: Add full support for the PCCT table, update table definition (Prarit Bhargava) [1465349]
-- [kernel] acpi / i915: Fix incorrect <acpi/acpi.h> inclusions via <linux/acpi_io.h> (Prarit Bhargava) [1465349]
-- [kernel] of: make of_property_for_each_{u32|string}() use parameters if OF is not enabled (Prarit Bhargava) [1465349]
-- [x86] io: implement dummy relaxed accessor macros for writes (Prarit Bhargava) [1465349]
-
-* Wed Sep 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-711.el7]
-- [hv] vmbus: re-enable channel tasklet (Mohammed Gamal) [1467258]
-- [hv] x86/mshyperv: Remove excess #includes from mshyperv.h (Mohammed Gamal) [1467258]
-- [hv] x86/hyperv: Check frequency MSRs presence according to the specification (Mohammed Gamal) [1467258]
-- [hv] vmbus: Close timing hole that can corrupt per-cpu page (Mohammed Gamal) [1467258]
-- [hv] vmbus: Reuse uuid_le_to_bin() helper (Mohammed Gamal) [1467258]
-- [hv] vmbus: Increase the time between retries in vmbus_post_msg() (Mohammed Gamal) [1491843 1467258]
-- [hv] vmbus: Get the current time from the current clocksource (Mohammed Gamal) [1467258]
-- [hv] properly delay KVP packets when negotiation is in progress (Mohammed Gamal) [1467258]
-- [hv] vmbus: Fix rescind handling (Mohammed Gamal) [1467258]
-- [hv] util: Make hv_poll_channel() a little more efficient (Mohammed Gamal) [1467258]
-- [hv] vmbus: Fix error code returned by vmbus_post_msg() (Mohammed Gamal) [1467258]
-- [hv] Base autoeoi enablement based on hypervisor hints (Mohammed Gamal) [1467258]
-- [hv] Fix a typo (Mohammed Gamal) [1467258]
-- [hv] vmbus: expose debug info for drivers (Mohammed Gamal) [1467258]
-- [hv] vmbus: make channel_message table constant (Mohammed Gamal) [1467258]
-- [hv] vmbus: make channel_message table constant (Mohammed Gamal) [1467258]
-- [hv] hyperv: remove unnecessary return variable (Mohammed Gamal) [1467258]
-- [hv] vmbus: fix spelling errors (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove unnecessary initialization (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove useless return's (Mohammed Gamal) [1467258]
-- [hv] vmbus: only reschedule tasklet if time limit exceeded (Mohammed Gamal) [1467258]
-- [hv] vmbus: Don't leak memory when a channel is rescinded (Mohammed Gamal) [1467258]
-- [hv] vmbus: Don't leak channel ids (Mohammed Gamal) [1467258]
-- [hv] util: move waiting for release to hv_utils_transport itself (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove hv_event_tasklet_disable/enable (Mohammed Gamal) [1467258]
-- [hv] vmbus: use rcu for per-cpu channel list (Mohammed Gamal) [1467258]
-- [hv] vmbus: replace modulus operation with subtraction (Mohammed Gamal) [1467258]
-- [hv] vmbus: constify parameters where possible (Mohammed Gamal) [1467258]
-- [hv] vmbus: expose hv_begin/end_read (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove conditional locking of vmbus_write (Mohammed Gamal) [1467258]
-- [hv] vmbus: add direct isr callback mode (Mohammed Gamal) [1467258]
-- [hv] vmbus: change to per channel tasklet (Mohammed Gamal) [1467258]
-- [hv] vmbus: callback is in softirq not workqueue (Mohammed Gamal) [1467258]
-- [hv] vmbus: put related per-cpu variable together (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove unused kickq argument to sendpacket (Mohammed Gamal) [1467258]
-- [hv] vmbus: drop no longer used kick_q argument (Mohammed Gamal) [1467258]
-- [hv] vmbus: use kernel bitops for traversing interrupt mask (Mohammed Gamal) [1467258]
-- [hv] Fix the bug in generating the guest ID (Mohammed Gamal) [1467258]
-- [hv] Log the negotiated IC versions (Mohammed Gamal) [1467258]
-- [hv] vmbus: Use all supported IC versions to negotiate (Mohammed Gamal) [1467258]
-- [hv] balloon: add a fall through comment to hv_memory_notifier() (Mohammed Gamal) [1467258]
-- [hv] hv: vmbus: Cleanup hyperv_vmbus.h (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define an APIs to manage interrupt state (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define an API to retrieve virtual processor index (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define APIs to manipulate the synthetic interrupt controller (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define APIs to manipulate the event page (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define APIs to manipulate the message page (Mohammed Gamal) [1467258]
-- [hv] vmbus: Get rid of an unsused variable (Mohammed Gamal) [1467258]
-- [hv] vmbus: Restructure the clockevents code (Mohammed Gamal) [1467258]
-- [hv] hv: Move struct hv_timer_message_payload into UAPI Hyper-V x86 header (Mohammed Gamal) [1467258]
-- [hv] vmbus: Move the code to signal end of message (Mohammed Gamal) [1467258]
-- [hv] hv: Move struct hv_message into UAPI Hyper-V x86 header (Mohammed Gamal) [1467258]
-- [hv] hv: Move HV_SYNIC_STIMER_COUNT into Hyper-V UAPI x86 header (Mohammed Gamal) [1467258]
-- [hv] util: backup: Fix a rescind processing issue (Mohammed Gamal) [1467258]
-- [hv] util: fcopy: Fix a rescind processing issue (Mohammed Gamal) [1467258]
-- [hv] util: kvp: Fix a rescind processing issue (Mohammed Gamal) [1467258]
-- [hv] vmbus: Get rid of the unused irq variable (Mohammed Gamal) [1467258]
-- [hv] hv: vmbus: Prevent sending data on a rescinded channel (Mohammed Gamal) [1467258]
-- [hv] vmbus: Fix a rescind handling bug (Mohammed Gamal) [1467258]
-
-* Tue Sep 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-710.el7]
-- [net] tcp: initialize rcv_mss to TCP_MIN_MSS instead of 0 (Davide Caratti) [1487061] {CVE-2017-14106}
-- [net] tcp: fix 0 divide in __tcp_select_window() (Davide Caratti) [1487061] {CVE-2017-14106}
-- [net] ip6mr: fix notification device destruction (Matteo Croce) [1445046]
-- [net] ip6mr: fix static mfc/dev leaks on table destruction (Matteo Croce) [1445046]
-- [net] openvswitch: Use inverted tuple in ovs_ct_find_existing() if NATted (Aaron Conole) [1457439]
-- [net] dev: add per net_device packet type chains (Florian Westphal) [1462344]
-- [net] add a postfix to old ndo_change_mtu (Ivan Vecera) [1480542]
-- [net] report right mtu value in error message (Ivan Vecera) [1480542]
-- [net] deprecate eth_change_mtu, remove usage (Ivan Vecera) [1480542]
-- [net] centralize net_device min/max MTU checking (Ivan Vecera) [1480542]
-- [net] sit: use __GFP_NOWARN for user controlled allocation (Matteo Croce) [1472074]
-- [mm] add documentation for page fragment APIs (Ivan Vecera) [1476339]
-- [mm] rename __page_frag functions to __page_frag_cache, drop order from drain (Ivan Vecera) [1476339]
-- [mm] rename __alloc_page_frag to page_frag_alloc and __free_page_frag to page_frag_free (Ivan Vecera) [1476339]
-- [mm] add support for releasing multiple instances of a page (Ivan Vecera) [1476339]
-- [netdrv] pppoe: fix memory corruption in padt work structure (Matteo Croce) [1382363]
-- [net] tcp: reset sk_rx_dst in tcp_disconnect() (Jamie Bainbridge) [1467770]
-- [net] mangle zero checksum in skb_checksum_help() (Xin Long) [1485791]
-- [net] sctp: Avoid out-of-bounds reads from address storage (Stefano Brivio) [1484355] {CVE-2017-7558}
-- [net] netfilter: nft_ct: fix expiration getter (Matteo Croce) [1427111]
-- [net] make ndo_get_stats64 a void function (Ivan Vecera) [1481795]
-- [net] ipv4: Do not allow MAIN to be alias for new LOCAL w/ custom rules (Ivan Vecera) [1464119]
-- [net] ipv4: Fix memory leak in exception case for splitting tries (Ivan Vecera) [1464119]
-- [net] ipv4: Restore fib_trie_flush_external function and fix call ordering (Ivan Vecera) [1464119]
-- [net] ipv4: Remove fib_local variable (Ivan Vecera) [1464119]
-- [net] ipv4: fill in table id when replacing a route (Ivan Vecera) [1464119]
-- [net] fib_trie: Cleanup ip_fib_net_exit code path (Ivan Vecera) [1464119]
-- [net] fib_trie: Fix warning on fib4_rules_exit (Ivan Vecera) [1464119]
-- [net] fib_trie: Provide a deterministic order for fib_alias w/ tables merged (Ivan Vecera) [1464119]
-- [net] fib_trie: Avoid NULL pointer if local table is not allocated (Ivan Vecera) [1464119]
-- [net] fib_trie: Only display main table in /proc/net/route (Ivan Vecera) [1464119]
-- [net] fib_trie: Fix uninitialized variable warning (Ivan Vecera) [1464119]
-- [net] ipv4: FIB Local/MAIN table collapse (Ivan Vecera) [1464119]
-- [net] fib_trie: Make fib_table rcu safe (Ivan Vecera) [1464119]
-- [net] ipv6: dad: don't remove dynamic addresses if link is down (Matteo Croce) [1319674]
-- [pci] dma: add calls for dma_map_page_attrs and dma_unmap_page_attrs (Ivan Vecera) [1477162]
-- [net] add missing dev_put() in __netdev_adjacent_dev_insert (Lance Richardson) [1467801]
-- [net] sctp: ensure ep is not destroyed before doing the dump (Xin Long) [1466107]
-- [net] sctp: return next obj by passing pos + 1 into sctp_transport_get_idx (Xin Long) [1466107]
-- [net] xfrm_user: validate XFRM_MSG_NEWAE incoming ESN size harder (Hannes Frederic Sowa) [1435670] {CVE-2017-7184}
-- [net] xfrm_user: validate XFRM_MSG_NEWAE XFRMA_REPLAY_ESN_VAL replay_window (Hannes Frederic Sowa) [1435670] {CVE-2017-7184}
-
-* Thu Aug 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-709.el7]
-- [block] blk-mq-tag: fix wakeup hang after tag resize (Ming Lei) [1472434]
-- [x86] xen/x86: Don't BUG on CPU0 offlining (Vitaly Kuznetsov) [1464095]
-- [ipc] mqueue: fix a use-after-free in sys_mq_notify() (Davide Caratti) [1476126] {CVE-2017-11176}
-- [net] ping: check minimum size on ICMP header length (Matteo Croce) [1481573] {CVE-2016-8399}
-- [net] udp: consistently apply ufo or fragmentation (Davide Caratti) [1481535] {CVE-2017-1000112}
-- [net] udp: account for current skb length when deciding about UFO (Davide Caratti) [1481535] {CVE-2017-1000112}
-- [net] ipv4: Should use consistent conditional judgement for ip fragment in __ip_append_data and ip_finish_output (Davide Caratti) [1481535] {CVE-2017-1000112}
-- [net] packet: fix tp_reserve race in packet_set_ring (Stefano Brivio) [1481940] {CVE-2017-1000111}
-- [net] ethernet: update drivers to handle HWTSTAMP_FILTER_NTP_ALL (Ivan Vecera) [1481817]
-- [net] define receive timestamp filter for NTP (Ivan Vecera) [1481817]
-- [net] netfilter: ipset: move registration message to init from net_init (Sabrina Dubroca) [1226051]
-- [net] netfilter: ipset: Add net namespace for ipset (Sabrina Dubroca) [1226051]
-- [net] netfilter: ipset: Rename simple macro names to avoid namespace issues (Sabrina Dubroca) [1226051]
-- [net] netfilter: ipset: order matches and targets separatedly in xt_set.c (Sabrina Dubroca) [1226051]
-- [net] sunrpc: fix regression in connection error reporting (Davide Caratti) [1446453]
-- [net] tcp: remove poll() flakes when receiving RST (Davide Caratti) [1446453]
-- [net] ipv6: only call ip6_route_dev_notify() once for NETDEV_UNREGISTER (Matteo Croce) [1468935]
-- [net] sctp: fix ICMP processing if skb is non-linear (Matteo Croce) [1450529]
-- [net] Remove usage of net_device last_rx member (Ivan Vecera) [1476348]
-- [net] batch of last_rx update avoidance in ethernet drivers (Ivan Vecera) [1476348]
-- [net] add a comment on netdev->last_rx (Ivan Vecera) [1476348]
-- [net] tcp: don't use F-RTO on non-recurring timeouts (Jakub Sitnicki) [1257096]
-- [hv] x86/vdso: Add VCLOCK_HVCLOCK vDSO clock read method (Vitaly Kuznetsov) [1410023]
-- [hv] x86/hyperv: Move TSC reading method to asm/mshyperv.h (Vitaly Kuznetsov) [1410023]
-- [hv] x86/hyperv: Implement hv_get_tsc_page() (Vitaly Kuznetsov) [1410023]
-- [hv] x86/hyperv: Hide unused label (Vitaly Kuznetsov) [1410023]
-- [hv] Turn off write permission on the hypercall page (Vitaly Kuznetsov) [1410023]
-- [hv] export current Hyper-V clocksource (Vitaly Kuznetsov) [1410023]
-- [hv] restore TSC page cleanup before kexec (Vitaly Kuznetsov) [1410023]
-- [hv] restore hypervcall page cleanup before kexec (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the check for hypercall page setup (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the crash notification function (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the extracting of Hypervisor version information (Vitaly Kuznetsov) [1410023]
-- [hv] hv: vmbus: Consolidate all Hyper-V specific clocksource code (Vitaly Kuznetsov) [1410023]
-- [hv] hv: vmbus: Move Hypercall invocation code out of common code (Vitaly Kuznetsov) [1410023]
-- [hv] hv vmbus: Move Hypercall page setup out of common code (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the definition of generate_guest_id() (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the definition of hv_x64_msr_hypercall_contents (Vitaly Kuznetsov) [1410023]
-- [hv] x86, hyperv: Move a variable to avoid an unused variable warning (Vitaly Kuznetsov) [1410023]
-- [fs] lockd: fix lockd shutdown race (Scott Mayhew) [1430517]
-- [fs] xfs: use GPF_NOFS when allocating btree cursors (Carlos Maiolino) [1238562]
-- [fs] gfs2: Withdraw for IO errors writing to the journal or statfs (Robert S Peterson) [1429547]
-- [fs] gfs2: stuffed directories not setting nfs cookies (Robert S Peterson) [1397414]
-- [fs] cifs: Fix SMB3 mount without specifying a security mechanism (Leif Sahlberg) [1083869]
-- [fs] smb2: Enforce sec= mount option (Leif Sahlberg) [1083869]
-- [fs] nfsv4: Add missing nfs_put_lock_context() (Benjamin Coddington) [1476826]
-- [fs] nfs: discard nfs_lockowner structure (Benjamin Coddington) [1476826]
-- [fs] nfsv4: enhance nfs4_copy_lock_stateid to use a flock stateid if there is one (Benjamin Coddington) [1476826]
-- [fs] nfsv4: change nfs4_select_rw_stateid to take a lock_context inplace of lock_owner (Benjamin Coddington) [1476826]
-- [fs] nfsv4: change nfs4_do_setattr to take an open_context instead of a nfs4_state (Benjamin Coddington) [1476826]
-- [fs] nfsv4: add flock_owner to open context (Benjamin Coddington) [1476826]
-- [fs] nfs: remove l_pid field from nfs_lockowner (Benjamin Coddington) [1476826]
-- [mm] fix huge zero page accounting in smaps report (Oleg Nesterov) [1409913 1447952]
-- [mm] workingset: turn shadow node shrinker bugs into warnings (Waiman Long) [1441710]
-- [mm] workingset: fix crash in shadow node shrinker caused by replace_page_cache_page() (Waiman Long) [1441710]
-- [mm] hugetlb: warn the user when issues arise on boot due to hugepages (Steve Best) [1484498]
-- [powerpc] mm: use hugetlb_bad_size() (Steve Best) [1484498]
-
-* Mon Aug 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-708.el7]
-- [scsi] ses: do not add a device to an enclosure if enclosure_add_links() fails (Maurizio Lombardi) [1473286]
-- [scsi] tcm_qla2xxx: Mark Target Mode operation as Tech Preview (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable Exchange offload support (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable Extended Logins support (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix wrong argument in sp done callback (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Remove SRR code (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Make trace flags more readable (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Cleanup TMF code translation from qla_target (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Disable out-of-order processing by default in firmware (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix erroneous invalid handle message (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Reduce exess wait during chip reset (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Terminate exchange if corrupted (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix crash due to null pointer access (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Collect additional information to debug fw dump (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Reset reserved field in firmware options to 0 (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Set tcm_qla2xxx version to automatically track qla2xxx version (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Include ATIO queue in firmware dump when in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix wrong IOCB type assumption (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Add SCSI command jammer/discard capability (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add DebugFS node for target sess list (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Use ATIO type to send correct tmr response (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix stale pointer access (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix TMR ABORT interaction issue between qla2xxx and TCM (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix warning reported by static checker (Himanshu Madhani) [1327621]
-- [scsi] qla2xxxx: avoid type mismatch in comparison (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Check for online flag instead of active reset when transmitting responses (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Set all queues to 4k (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Disable ZIO at start time (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Move atioq to a different lock to reduce lock contention (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add irq affinity notification (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Remove dependency on hardware_lock to reduce lock contention (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Replace QLA_TGT_STATE_ABORTED with a bit (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Wait for all conflicts before ack'ing PLOGI (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Delete session if initiator is gone from FW (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Added interface to send explicit LOGO (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add FW resource count in DebugFS (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable Target counters in DebugFS (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: terminate exchange when command is aborted by LIO (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: added sess generations to detect RSCN update races (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: drop cmds/tmrs arrived while session is being deleted (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: disable scsi_transport_fc registration in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Abort stale cmds on qla_tgt_wq when plogi arrives (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: delay plogi/prli ack until existing sessions are deleted (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: cleanup cmd in qla workqueue before processing TMR (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: kill sessions/log out initiator on RSCN and port down events (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: fix command initialization in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Remove msleep in qlt_send_term_exchange (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: release request queue reservation (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add flush after updating ATIOQ consumer index (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable target mode for ISP27XX (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix hardware lock/unlock issue causing kernel panic (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: adjust debug flags (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: pass timeout as HZ independent value (Himanshu Madhani) [1327621]
-- [treewide] Add missing vmalloc.h inclusion (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Set TARGET_PROT_ALL for sup_prot_ops (Himanshu Madhani) [1327621]
-- [qla2_target] remove MSG_*_TAG defines (Himanshu Madhani) [1327621]
-- [qla_target] improve qlt_unmap_sg() (Himanshu Madhani) [1327621]
-- [qla_target] make some global functions static (Himanshu Madhani) [1327621]
-- [qla_target] remove unused parameter (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add memory barrier before ringing doorbell (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add flags for tracing the target commands (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix hang due to cmd_kref not decrementing (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Do not send SS_RESIDUAL_UNDER with SAM_STAT_BUSY (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add support for QFull throttling and Term Exchange retry (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Increase the request queue size to 8K for ISP2031 (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Host reset handling in ABTS path (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Handle chip reset in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add Host reset handling in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add counter for message (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable SLER conditionally in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Remove verbose messages in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Use correct offset to req-q-out for reserve calculation (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix schedule_delayed_work() for target timeout calculations (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix sparse warnings in tcm_qla2xxx.c (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix sparse warning in qla_target.c (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix qlt_lport_register base_vha callback race (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: ABTS cause double free of qla_tgt_cmd + (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: fix sparse warnings introduced by previous target mode t10-dif patch (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: fix kernel NULL pointer access (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Convert to percpu_ida session tag pre-allocation (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: T10-Dif: add T10-PI support (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix kernel panic on selective retransmission request (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Fix NAA formatted name for NPIV WWPNs (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Check + fail when npiv_vports_inuse exists in shutdown (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Perform configfs depend/undepend for base_tpg (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Add NPIV specific enable/disable attribute logic (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Configure NPIV fc_vport via tcm_qla2xxx_npiv_make_lport (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enhancements to enable NPIV support for QLOGIC ISPs with TCM/LIO (Himanshu Madhani) [1327621]
-- [target] Add TFO->abort_task for aborted task resources release (Himanshu Madhani) [1327621]
-- [target] make queue_tm_rsp() return void (Himanshu Madhani) [1327621]
-- [target] Remove TF_CIT_TMPL macro (Himanshu Madhani) [1327621]
-- [qla_target] remove qlt_check_fcport_exist (Himanshu Madhani) [1327621]
-- [target] Pass in transport supported PI at session initialization (Himanshu Madhani) [1327621]
-- [target] qla2xxx: Remove QLA_TPG_ATTRIB macro (Himanshu Madhani) [1327621]
-- [target] qla2xxx: Make demo_mode_login_only modifiable (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: rename vendor|hba _indentifer to vendor|hba _identifer (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: make msix_entries const (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: silence -Wformat-security warning (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable CONFIG_TCM_QLA2XXX (Himanshu Madhani) [1327621]
-
-* Fri Aug 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-707.el7]
-- [x86] x86/mm: Remove CONFIG_DEBUG_NX_TEST (Rafael Aquini) [1301699]
-- [x86] x86/boot/kaslr: Fix kexec crash due to 'virt_addr' calculation bug (Baoquan He) [1467561]
-- [x86] x86/boot/kaslr: Add checking for the offset of kernel virtual address randomization (Baoquan He) [1467561]
-- [x86] revert "boot/kaslr: Skip kernel text relocation if no kaslr action is done" (Baoquan He) [1467561]
-- [x86] dell-laptop: Add keyboard backlight timeout AC settings (Gopal Tiwari) [1457415]
-- [x86] amd: Derive L3 shared_cpu_map from cpu_llc_shared_mask (Suravee Suthikulpanit) [1477399]
-- [mm] page_alloc: ratelimit PFNs busy info message (Jonathan Toppins) [1383179]
-- [pci] Fix source include in drivers/pci/Kconfig (Prarit Bhargava) [1484168]
-- [lib] devres: add a helper function for ioremap_wc (Ivan Vecera) [1482223]
-- [s390] Disable KVM code in the s390x kernel (Thomas Huth) [1456183]
-- [netdrv] igb: support BCM54616 PHY (John Linville) [1471984]
-- [netdrv] mlx4_en: don't set CHECKSUM_COMPLETE on SCTP packets (Davide Caratti) [1462059]
-- [netdrv] brcmfmac: fix possible buffer overflow in brcmf_cfg80211_mgmt_tx() (Stanislaw Gruszka) [1474784] {CVE-2017-7541}
-- [kernel] radix-tree: 'slot' can be NULL in radix_tree_next_slot() (Larry Woodman) [1471710]
-- [kernel] ftrace/graph: Add ftrace_graph_max_depth kernel parameter (Pratyush Anand) [1478331]
-- [kernel] sched: fix typo on topology error message ("Bruno E. O. Meneguele") [1477479]
-- [powerpc] tm: Fix saving of TM SPRs in core dump (Gustavo Duarte) [1480652]
-- [cpupower] Add support for new AMD family 0x17 (Suravee Suthikulpanit) [1477317]
-- [cpupower] Fix bug where return value was not used (Suravee Suthikulpanit) [1477317]
-
-* Fri Aug 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-706.el7]
-- [tools] perf tools: Update x86's syscall_64.tbl, adding pkey_(alloc, free, mprotect) (Rui Wang) [1272615]
-- [x86] mm/pkeys: Do not skip PKRU register if debug registers are not used (Rui Wang) [1272615]
-- [x86] debug: Only print out DR registers if they are not power-on defaults (Rui Wang) [1272615]
-- [x86] cpufeature, x86/mm/pkeys: Fix broken compile-time disabling of pkeys (Rui Wang) [1272615]
-- [x86] pkeys: remove cruft from never-merged syscalls (Rui Wang) [1272615]
-- [powerpc] Ignore the pkey system calls for now (Rui Wang) [1272615]
-- [s390] ignore pkey system calls (Rui Wang) [1272615]
-- [kernel] x86/pkeys: Fix pkeys build breakage for some non-x86 arches (Rui Wang) [1272615]
-- [uapi] generic syscalls: kill cruft from removed pkey syscalls (Rui Wang) [1272615]
-- [x86] pkeys: Update documentation (Rui Wang) [1272615]
-- [x86] pkeys: Allow configuration of init_pkru (Rui Wang) [1272615]
-- [kernel] x86/pkeys: Default to a restrictive init PKRU (Rui Wang) [1272615]
-- [x86] pkeys: Add details of system call use to Documentation/ (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add missing Documentation (Rui Wang) [1272615]
-- [uapi] generic syscalls: Wire up memory protection keys syscalls (Rui Wang) [1272615]
-- [x86] Wire up protection keys system calls (Rui Wang) [1272615]
-- [mm] x86/pkeys: Allocation/free syscalls (Rui Wang) [1272615]
-- [mm] x86/pkeys: Make mprotect_key() mask off additional vm_flags (Rui Wang) [1272615]
-- [mm] Implement new pkey_mprotect() system call (Rui Wang) [1272615]
-- [mm] mprotect.c: don't imply PROT_EXEC on non-exec fs (Rui Wang) [1272615]
-- [x86] mm/pkeys: Fix compact mode by removing protection keys' XSAVE buffer manipulation (Rui Wang) [1272615]
-- [x86] pkey: introduce write_pkru() for KVM (Rui Wang) [1272615]
-- [x86] mm/pkeys: Fix mismerge of protection keys CPUID bits (Rui Wang) [1272615]
-- [uapi] mm/pkeys: Fix siginfo ABI breakage caused by new u64 field (Rui Wang) [1272615]
-- [x86] mm/pkeys: Fix access_error() denial of writes to write-only VMA (Rui Wang) [1272615]
-- [mm] core, x86/mm/pkeys: Add execute-only protection keys support (Rui Wang) [1272615]
-- [mm] mmap: use offset_in_page macro (Rui Wang) [1272615]
-- [x86] mm/pkeys: Create an x86 arch_calc_vm_prot_bits() for VMA flags (Rui Wang) [1272615]
-- [kernel] x86/mm/pkeys: Allow kernel to modify user pkey rights register (Rui Wang) [1272615]
-- [x86] fpu: Allow setting of XSAVE state (Rui Wang) [1272615]
-- [x86] mm: Factor out LDT init from context init (Rui Wang) [1272615]
-- [mm] core, x86/mm/pkeys: Add arch_validate_pkey() (Rui Wang) [1272615]
-- [mm] core, arch, powerpc: Pass a protection key in to calc_vm_flag_bits() (Rui Wang) [1272615]
-- [mm] mpx: add "vm_flags_t vm_flags" arg to do_mmap_pgoff() (Rui Wang) [1272615]
-- [mm] do_mmap_pgoff: cleanup the usage of file_inode() (Rui Wang) [1272615]
-- [x86] mm/pkeys: Actually enable Memory Protection Keys in the CPU (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add Kconfig prompt to existing config option (Rui Wang) [1272615]
-- [fs] x86/mm/pkeys: Dump pkey from VMA in /proc/pid/smaps (Rui Wang) [1272615]
-- [x86] mm/pkeys: Dump PKRU with other kernel registers (Rui Wang) [1272615]
-- [mm] core, x86/mm/pkeys: Differentiate instruction fetches (Rui Wang) [1272615]
-- [x86] mm/pkeys: Optimize fault handling in access_error() (Rui Wang) [1272615]
-- [mm] core: Do not enforce PKEY permissions on remote mm access (Rui Wang) [1272615]
-- [iommu] amd: Correctly set flags for handle_mm_fault call (Rui Wang) [1272615]
-- [mm] gup, x86/mm/pkeys: Check VMAs and PTEs for protection keys (Rui Wang) [1272615]
-- [mm] gup: Factor out VMA fault permission checking (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add functions to fetch PKRU (Rui Wang) [1272615]
-- [x86] mm/pkeys: Fill in pkey field in siginfo (Rui Wang) [1272615]
-- [kernel] signals, pkeys: Notify userspace about protection key faults (Rui Wang) [1272615]
-- [x86] mm/pkeys: Pass VMA down in to fault signal generation code (Rui Wang) [1272615]
-- [mm] vm: add VM_FAULT_SIGSEGV handling support (Rui Wang) [1272615]
-- [kernel] x86/mm/pkeys: Add arch-specific VMA protection bits (Rui Wang) [1272615]
-- [mm] core, x86/mm/pkeys: Store protection bits in high VMA flags (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add new 'PF_PK' page fault error code bit (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add PTE bits for storing protection key (Rui Wang) [1272615]
-- [x86] fpu, x86/mm/pkeys: Add PKRU xsave fields and data structures (Rui Wang) [1272615]
-- [x86] cpu, x86/mm/pkeys: Define new CR4 bit (Rui Wang) [1272615]
-- [x86] cpufeature, x86/mm/pkeys: Add protection keys related CPUID definitions (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add Kconfig option (Rui Wang) [1272615]
-- [media] ivtv: Convert to get_user_pages_unlocked() (Rui Wang) [1272615]
-- [virt] mm/gup: Introduce get_user_pages_remote() (Rui Wang) [1272615]
-- [mm] gup: use get_user_pages_unlocked (Rui Wang) [1272615]
-- [mm] process_vm_access: tidy up a bit (Rui Wang) [1272615]
-- [mm] process_vm_access: don't bother with returning the amounts of bytes copied (Rui Wang) [1272615]
-- [mm] process_vm_rw_pages(): pass accurate amount of bytes (Rui Wang) [1272615]
-- [mm] process_vm_access: take get_user_pages/put_pages one level up (Rui Wang) [1272615]
-- [mm] process_vm_access: switch to copy_page_to_iter/iov_iter_copy_from_user (Rui Wang) [1272615]
-- [mm] process_vm_access: switch to iov_iter (Rui Wang) [1272615]
-- [mm] untangling process_vm_..., part 4 (Rui Wang) [1272615]
-- [mm] untangling process_vm_..., part 3 (Rui Wang) [1272615]
-- [mm] untangling process_vm_..., part 2 (Rui Wang) [1272615]
-- [mm] untangling process_vm_..., part 1 (Rui Wang) [1272615]
-
-* Thu Aug 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-705.el7]
-- [tools] perf symbols: Fix symbols__fixup_end heuristic for corner cases (Jiri Olsa) [1478485]
-- [tools] scripts/spelling.txt: add "overide" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [kernel] scripts/spelling.txt: add "disble(d)" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [tools] Provide a definition of WARN_ON (Jiri Olsa) [1478485]
-- [tools] perf record: Honor --quiet option properly (Jiri Olsa) [1478485]
-- [tools] perf annotate: Add -q/--quiet option (Jiri Olsa) [1478485]
-- [tools] perf diff: Add -q/--quiet option (Jiri Olsa) [1478485]
-- [tools] perf report: Add -q/--quiet option (Jiri Olsa) [1478485]
-- [tools] perf utils: Check verbose flag properly (Jiri Olsa) [1478485]
-- [tools] perf utils: Add perf_quiet_option() (Jiri Olsa) [1478485]
-- [tools] perf record: Add -a as default target (Jiri Olsa) [1478485]
-- [tools] perf stat: Add -a as default target (Jiri Olsa) [1478485]
-- [tools] perf tools: Fail on using multiple bits long terms without value (Jiri Olsa) [1478485]
-- [tools] perf tools: Move new_term arguments into struct parse_events_term template (Jiri Olsa) [1478485]
-- [tools] perf build: Add special fixdep cleaning rule (Jiri Olsa) [1478485]
-- [tools] perf tools: Replace _SC_NPROCESSORS_CONF with max_present_cpu in cpu_topology_map (Jiri Olsa) [1478485]
-- [tools] perf header: Make build_cpu_topology skip offline/absent CPUs (Jiri Olsa) [1478485]
-- [tools] perf cpumap: Add cpu__max_present_cpu() (Jiri Olsa) [1478485]
-- [tools] perf session: Fix DEBUG=1 build with clang (Jiri Olsa) [1478485]
-- [tools] tools lib traceevent: It's preempt not prempt (Jiri Olsa) [1478485]
-- [tools] perf python: Filter out -specs=/a/b/c from the python binding cc options (Jiri Olsa) [1478485]
-- [tools] tools perf scripting python: clang doesn't have -spec, remove it (Jiri Olsa) [1478485]
-- [tools] scripts/spelling.txt: add "an one" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [tools] scripts/spelling.txt: add "an union" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [tools] scripts/spelling.txt: add "an user" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [tools] cgroup, perf_event: make perf_event controller work on cgroup2 hierarchy (Jiri Olsa) [1478485]
-- [tools] lib/find_bit.c: micro-optimise find_next_*_bit (Jiri Olsa) [1478485]
-- [tools] lib, traceevent: add PRINT_HEX_STR variant (Jiri Olsa) [1478485]
-- [tools] perf tools: Add missing parse_events_error() prototype (Jiri Olsa) [1478485]
-- [tools] perf pmu: Fix check for unset alias->unit array (Jiri Olsa) [1478485]
-- [tools] perf intel pt decoder: clang has no -Wno-override-init (Jiri Olsa) [1478485]
-- [tools] perf evsel: Do not put a variable sized type not at the end of a struct (Jiri Olsa) [1478485]
-- [tools] perf probe: Avoid accessing uninitialized 'map' variable (Jiri Olsa) [1478485]
-- [tools] perf tools: Do not put a variable sized type not at the end of a struct (Jiri Olsa) [1478485]
-- [tools] perf record: Do not put a variable sized type not at the end of a struct (Jiri Olsa) [1478485]
-- [tools] perf tests: Synthesize struct instead of using field after variable sized type (Jiri Olsa) [1478485]
-- [tools] perf bench numa: Make sure dprintf() is not defined (Jiri Olsa) [1478485]
-- [tools] revert "perf bench futex: Sanitize numeric parameters" (Jiri Olsa) [1478485]
-- [tools] tools lib subcmd: Make it an error to pass a signed value to OPTION_UINTEGER (Jiri Olsa) [1478485]
-- [tools] Set the maximum optimization level according to the compiler being used (Jiri Olsa) [1478485]
-- [tools] Suppress request for warning options not existent in clang (Jiri Olsa) [1478485]
-- [tools] perf symbols: dso->name is an array, no need to check it against NULL (Jiri Olsa) [1478485]
-- [tools] perf tests record: No need to test an array against NULL (Jiri Olsa) [1478485]
-- [tools] perf symbols: No need to check if sym->name is NULL (Jiri Olsa) [1478485]
-- [tools] perf evsel: Inform how to make a sysctl setting permanent (Jiri Olsa) [1478485]
-- [tools] tools lib traceevent plugin function: Initialize 'index' variable (Jiri Olsa) [1478485]
-- [tools] tools lib traceevent: Initialize lenght on OLD_RING_BUFFER_TYPE_TIME_STAMP (Jiri Olsa) [1478485]
-- [tools] perf scripting perl: Fix compile error with some perl5 versions (Jiri Olsa) [1478485]
-- [tools] perf diff: Change default setting to "delta-abs" (Jiri Olsa) [1478485]
-- [tools] perf diff: Add diff.compute config option (Jiri Olsa) [1478485]
-- [tools] perf diff: Add diff.order config option (Jiri Olsa) [1478485]
-- [tools] perf diff: Add 'delta-abs' compute method (Jiri Olsa) [1478485]
-- [tools] tools include: Introduce linux/compiler-gcc.h (Jiri Olsa) [1478485]
-- [tools] perf intel-pt: Use __fallthrough (Jiri Olsa) [1478485]
-- [tools] perf tests: Avoid possible truncation with dirent->d_name + snprintf (Jiri Olsa) [1478485]
-- [tools] perf bench numa: Avoid possible truncation when using snprintf() (Jiri Olsa) [1478485]
-- [tools] perf header: Fix handling of PERF_EVENT_UPDATE__SCALE (Jiri Olsa) [1478485]
-- [tools] perf thread_map: Correctly size buffer used with dirent->dt_name (Jiri Olsa) [1478485]
-- [tools] perf top: Use __fallthrough (Jiri Olsa) [1478485]
-- [tools] tools strfilter: Use __fallthrough (Jiri Olsa) [1478485]
-- [tools] tools string: Use __fallthrough in perf_atoll() (Jiri Olsa) [1478485]
-- [tools] tools include: Add a __fallthrough statement (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Broadwell DE (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Xeon Phi (Knights Landing) (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Sandy Bridge Server (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for IvyBridge Server (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Broadwell Server (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Haswell Server processor (Jiri Olsa) [1478485]
-- [tools] perf tools: Fix include of linux/mman.h (Jiri Olsa) [1478485]
-- [tools] tools lib traceevent: Robustify do_generate_dynamic_list_file (Jiri Olsa) [1478485]
-- [tools] perf tools: Use zfree() to avoid keeping dangling pointers (Jiri Olsa) [1478485]
-- [tools] perf tools: Use zfree() instead of ad hoc equivalent (Jiri Olsa) [1478485]
-- [tools] perf tools: Add missing check for failure in a zalloc() call (Jiri Olsa) [1478485]
-- [tools] perf tools: Only increase index if perf_evsel__new_idx() succeeds (Jiri Olsa) [1478485]
-- [tools] perf probe: Add option --symfs (Jiri Olsa) [1478485]
-- [tools] perf symbols: Take into account symfs setting when reading file build ID (Jiri Olsa) [1478485]
-- [tools] perf sdt: Show proper hint when event not yet in place via 'perf probe' (Jiri Olsa) [1478485]
-- [tools] perf list: Add debug support for outputing alias string (Jiri Olsa) [1478485]
-- [tools] perf pmu: Support event aliases for non cpu// pmus (Jiri Olsa) [1478485]
-- [tools] perf pmu: Support per pmu json aliases (Jiri Olsa) [1478485]
-- [tools] perf jevents: Add support for parsing uncore json files (Jiri Olsa) [1478485]
-- [tools] perf jevents: Parse eventcode as number (Jiri Olsa) [1478485]
-- [tools] x86/events: Remove last remnants of old filenames (Jiri Olsa) [1478485]
-- [x86] perf/x86: Avoid exposing wrong/stale data in intel_pmu_lbr_read_32() (Jiri Olsa) [1478485]
-- [kernel] perf/core: Better explain the inherit magic (Jiri Olsa) [1478485]
-- [kernel] perf/core: Simplify perf_event_free_task() (Jiri Olsa) [1478485]
-- [kernel] perf/core: Fix event inheritance on fork() (Jiri Olsa) [1478485]
-- [kernel] perf/core: Fix use-after-free in perf_release() (Jiri Olsa) [1478485]
-- [kernel] perf/core: Fix the perf_cpu_time_max_percent check (Jiri Olsa) [1478485]
-- [kernel] perf/core: Fix perf_event_enable_on_exec() timekeeping (again) (Jiri Olsa) [1478485]
-- [kernel] perf/core: Remove confusing comment and move put_ctx() (Jiri Olsa) [1478485]
-- [x86] perf/x86/intel: Add Kaby Lake support (Jiri Olsa) [1478485]
-- [kernel] perf/core: Allow kernel filters on CPU events (Jiri Olsa) [1478485]
-- [kernel] perf/core: Do error out on a kernel filter on an exclude_filter event (Jiri Olsa) [1478485]
-
-* Tue Aug 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-704.el7]
-- [fs] sunrpc: Handle EADDRNOTAVAIL on connection failures (Dave Wysochanski) [1479043]
-- [fs] gfs2: Defer deleting inodes under memory pressure (Andreas Grunbacher) [1321079]
-- [fs] gfs2: gfs2_evict_inode: Put glocks asynchronously (Andreas Grunbacher) [1321079]
-- [fs] gfs2: Get rid of gfs2_set_nlink (Andreas Grunbacher) [1321079]
-- [fs] gfs2: gfs2_glock_get: Wait on freeing glocks (Andreas Grunbacher) [1321079]
-- [fs] gfs2: gfs2_create_inode: Keep glock across iput (Andreas Grunbacher) [1321079]
-- [fs] gfs2: Clean up glock work enqueuing (Andreas Grunbacher) [1321079]
-- [fs] gfs2: Protect gl->gl_object by spin lock (Andreas Grunbacher) [1321079]
-- [fs] gfs2: Get rid of flush_delayed_work in gfs2_evict_inode (Andreas Grunbacher) [1321079]
-- [fs] revert "gfs2: Wait for iopen glock dequeues" (Andreas Grunbacher) [1321079]
-- [fs] gfs2: fix code parameter error in inode_go_lock (Andreas Grunbacher) [1480789]
-- [fs] gfs2: Clear gl_object when deleting an inode in gfs2_delete_inode (Robert S Peterson) [1471151]
-- [fs] gfs2: Clear gl_object if gfs2_create_inode fails (Robert S Peterson) [1471151]
-- [fs] gfs2: Set gl_object in inode lookup only after block type check (Robert S Peterson) [1471151]
-- [fs] gfs2: Introduce helpers for setting and clearing gl_object (Robert S Peterson) [1471151]
-- [fs] gfs2: Switch to rhashtable_lookup_get_insert_fast (Andreas Grunbacher) [1477688]
-- [fs] rhashtable: Add rhashtable_lookup_get_insert_fast (Andreas Grunbacher) [1477688]
-- [fs] gfs2: forcibly flush ail to relieve memory pressure (Abhijith Das) [1389079]
-- [fs] gfs2: Fix glock rhashtable rcu bug (Andreas Grunbacher) [1477721]
-- [fs] gfs2: Non-recursive delete (Robert S Peterson) [1359239]
-- [fs] gfs2: Remove gl_spin define (Andreas Grunbacher) [1433507]
-- [fs] xfs: Move handling of missing page into one place in xfs_find_get_desired_pgoff() (Bill O'Donnell) [1460446]
-- [fs] xfs: Fix off-by-in in loop termination in xfs_find_get_desired_pgoff() (Bill O'Donnell) [1460446]
-- [fs] xfs: Fix missed holes in SEEK_HOLE implementation (Bill O'Donnell) [1460446]
-- [fs] locks: don't check for race with close when setting OFD lock (Jeff Layton) [1444778]
-- [fs] locks: only validate the lock vs. f_mode in F_SETLK codepaths (Jeff Layton) [1444778]
-- [fs] locks: rename FL_FILE_PVT and IS_FILE_PVT to use "*_OFDLCK" instead (Jeff Layton) [1444778]
-- [fs] arm: fix handling of F_OFD_... in oabi_fcntl64() (Jeff Layton) [1444778]
-- [fs] locks: rename file-private locks to "open file description locks" (Jeff Layton) [1444778]
-- [fs] locks: require that flock->l_pid be set to 0 for file-private locks (Jeff Layton) [1444778]
-- [fs] locks: add new fcntl cmd values for handling file private locks (Jeff Layton) [1444778]
-- [fs] locks: skip deadlock detection on FL_FILE_PVT locks (Jeff Layton) [1444778]
-- [fs] locks: pass the cmd value to fcntl_getlk/getlk64 (Jeff Layton) [1444778]
-- [fs] locks: report l_pid as -1 for FL_FILE_PVT locks (Jeff Layton) [1444778]
-- [fs] locks: make /proc/locks show IS_FILE_PVT locks as type "FLPVT" (Jeff Layton) [1444778]
-- [fs] locks: rename locks_remove_flock to locks_remove_file (Jeff Layton) [1444778]
-- [fs] locks: consolidate checks for compatible filp->f_mode values in setlk handlers (Jeff Layton) [1444778]
-- [fs] locks: fix posix lock range overflow handling (Jeff Layton) [1444778]
-- [fs] locks: add __acquires and __releases annotations to locks_start and locks_stop (Jeff Layton) [1444778]
-- [fs] locks: remove "inline" qualifier from fl_link manipulation functions (Jeff Layton) [1444778]
-- [fs] cifs: Add new system calls to cifs in kABI compatible way (Sachin Prabhu) [1416385]
-- [fs] cifs: do not return number of bytes written for ioctl CIFS_IOC_COPYCHUNK_FILE (Sachin Prabhu) [1416385]
-- [fs] cifs: introduce cifs_copy_file_range() (Sachin Prabhu) [1416385]
-- [fs] smb3: Rename clone_range to copychunk_range (Sachin Prabhu) [1416385]
-- [fs] cifs: Fix duplicate line introduced by clone_file_range patch (Sachin Prabhu) [1416385]
-- [fs] cifs: avoid unused variable and label (Sachin Prabhu) [1416385]
-- [fs] vfs: pull btrfs clone API to vfs layer(cifs_only) (Sachin Prabhu) [1416385]
-- [fs] include/linux/printk.h: include pr_fmt in pr_debug_ratelimited (Sachin Prabhu) [1472823]
-- [fs] printk: pr_debug_ratelimited: check state first to reduce "callbacks suppressed" messages (Sachin Prabhu) [1472823]
-
-* Fri Aug 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-703.el7]
-- [kernel] clocksource: Use a plain u64 instead of cycle_t (Ivan Vecera) [1476351]
-- [net] gso: Validate assumption of frag_list segementation (Matteo Croce) [1447695]
-- [net] gso: Support frag_list splitting with head_frag (Matteo Croce) [1447695]
-- [net] tcp: tcp_make_synack() should clear skb->tstamp (Matteo Croce) [1473533]
-- [net] vlan: Set correct source MAC address with TX VLAN offload enabled (Jarod Wilson) [1474741]
-- [net] ipv4: ip_do_fragment: fix headroom tests (Stefano Brivio) [1474927]
-- [net] netfilter: ipt_CLUSTERIP: fix use-after-free of proc entry (Stefano Brivio) [1474438]
-- [net] netfilter: ipt_CLUSTERIP: do not hold dev (Stefano Brivio) [1472892]
-- [net] netfilter: ipt_CLUSTERIP: fix build error without procfs (Stefano Brivio) [1472892]
-- [net] netfilter: ipt_CLUSTERIP: check duplicate config when initializing (Stefano Brivio) [1472892]
-- [net] ipv6: Don't increase IPSTATS_MIB_FRAGFAILS twice in ip6_fragment() (Stefano Brivio) [1470627]
-- [net] ipv6: ip6_fragment: fix headroom tests and skb leak (Stefano Brivio) [1470627]
-- [net] netfilter: kill the fake untracked conntrack objects (Paolo Abeni) [1317099]
-- [net] netfilter: add and use nf_ct_set helper (Paolo Abeni) [1317099]
-- [net] skbuff: add and use skb_nfct helper (Paolo Abeni) [1317099]
-- [net] netfilter: reduce direct skb->nfct usage (Paolo Abeni) [1317099]
-- [net] netfilter: reset netfilter state when duplicating packet (Paolo Abeni) [1317099]
-- [net] netfilter: conntrack: no need to pass ctinfo to error handler (Paolo Abeni) [1317099]
-- [net] l2tp: Make l2tp_ip6 namespace aware (Xin Long) [1465711]
-- [net] udp: avoid ufo handling on IP payload compression packets (Stefano Brivio) [1464161]
-- [net] don't global ICMP rate limit packets originating from loopback (Jesper Brouer) [1461282]
-- [net] ip6_tunnel: disable caching when the traffic class is inherited (Stefano Brivio) [1396593]
-- [net] ipv6: use TOS marks from sockets for routing decision (Stefano Brivio) [1396593]
-- [net] neighbour: Really delete an arp/neigh entry on "ip neigh delete" or "arp -d" (Hangbin Liu) [1383691]
-- [net] neighbour: fix nlmsg_pid in notifications (Hangbin Liu) [1383691]
-- [net] neighbour: remove dynamic neigh table registration support (Hangbin Liu) [1383691]
-- [net] neigh: guard against NULL solicit() method (Xin Long) [1463887]
-- [net] packet: Allow packets with only a header (but no payload) (Jakub Sitnicki) [1444521]
-- [net] packet: bail out of packet_snd() if L2 header creation fails (Jakub Sitnicki) [1444521]
-- [net] packet: make packet_snd fail on len smaller than l2 header (Jakub Sitnicki) [1444521]
-
-* Wed Aug 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-702.el7]
-- [scsi] bnx2fc: fix race condition in bnx2fc_get_host_stats() (Maurizio Lombardi) [1455520]
-- [scsi] hpsa: bump driver version (Joseph Szczypek) [1404073]
-- [scsi] hpsa: remove abort handler (Joseph Szczypek) [1404073]
-- [scsi] hpsa: send ioaccel requests with 0 length down raid path (Joseph Szczypek) [1404073]
-- [scsi] hpsa: separate monitor events from rescan worker (Joseph Szczypek) [1404073]
-- [scsi] hpsa: correct queue depth for externals (Joseph Szczypek) [1404073]
-- [scsi] hpsa: cleanup reset handler (Joseph Szczypek) [1404073]
-- [scsi] hpsa: correct resets on retried commands (Joseph Szczypek) [1404073]
-- [scsi] hpsa: rescan later if reset in progress (Joseph Szczypek) [1404073]
-- [scsi] hpsa: do not reset enclosures (Joseph Szczypek) [1404073]
-- [scsi] hpsa: update reset handler (Joseph Szczypek) [1404073]
-- [scsi] hpsa: do not get enclosure info for external devices (Joseph Szczypek) [1404073]
-- [scsi] hpsa: update identify physical device structure (Joseph Szczypek) [1404073]
-- [scsi] qedi: Add support for offload iSCSI Boot (Chad Dupuis) [1459312]
-- [net] qed: Support NVM-image reading API (Chad Dupuis) [1459312]
-- [net] qed: Share additional information with qedf (Chad Dupuis) [1459312]
-- [net] qed: Correct order of wwnn and wwpn (Chad Dupuis) [1459312]
-- [net] qed: Inform qedi the number of possible CQs (Chad Dupuis) [1459312]
-- [net] vti: Add pmtu handling to vti_xmit (Xin Long) [1467521]
-- [s390] af_iucv: correctly copy SKB data (add missing hunk from 04d0ec) (Hendrik Brueckner) [1459782]
-- [net] sctp: change to save MSG_MORE flag into assoc (Xin Long) [1409365]
-- [net] sctp: add support for MSG_MORE (Xin Long) [1409365]
-- [net] dccp: call inet_add_protocol after register_pernet_subsys in dccp_v6_init (Xin Long) [1462417]
-- [net] dccp: call inet_add_protocol after register_pernet_subsys in dccp_v4_init (Xin Long) [1462417]
-- [net] 6lowpan: fix fragmentation hash locking (David Arcari) [1461542]
-- [net] 6lowpan: re-enable support for the secret rebuild timer (David Arcari) [1461542]
-- [net] sctp: disable BH in sctp_for_each_endpoint (Xin Long) [1451569]
-- [net] dst: Fix an intermittent pr_emerg warning about lo becoming free (Xin Long) [1458111]
-- [net] ipv6: fix calling in6_ifa_hold incorrectly for dad work (Xin Long) [1459493]
-- [net] sctp: fix src address selection if using secondary addresses for ipv6 (Xin Long) [1460106]
-- [net] ipv6: check sk sk_type and protocol early in ip_mroute_set/getsockopt (Xin Long) [1460115]
-- [net] packet: deliver VLAN TPID to userspace (Eric Garver) [1427245]
-- [net] packet: fill the gap of TPACKET_ALIGNMENT with zeros (Eric Garver) [1427245]
-- [net] ipv6: check raw payload size correctly in ioctl (Jamie Bainbridge) [1447240]
-- [net] bridge: netlink: check vlan_default_pvid range (Ivan Vecera) [1464444]
-- [net] fix mistake with TCP cgroup memory pressure check (Florian Westphal) [1456547]
-
-* Tue Aug 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-701.el7]
-- [fs] ceph: use pd to print dentry (Ilya Dryomov) [1450262]
-- [fs] ceph: fix memory leak in __ceph_setxattr() (Ilya Dryomov) [1450262]
-- [fs] ceph: fix file open flags on ppc64 (Ilya Dryomov) [1450262]
-- [fs] ceph: choose readdir frag based on previous readdir reply (Ilya Dryomov) [1450262]
-- [fs] rbd: exclusive map option (Ilya Dryomov) [1450262]
-- [fs] rbd: return ResponseMessage result from rbd_handle_request_lock() (Ilya Dryomov) [1450262]
-- [fs] rbd: kill rbd_is_lock_supported() (Ilya Dryomov) [1450262]
-- [fs] rbd: support updating the lock cookie without releasing the lock (Ilya Dryomov) [1450262]
-- [fs] rbd: store lock cookie (Ilya Dryomov) [1450262]
-- [fs] rbd: ignore unlock errors (Ilya Dryomov) [1450262]
-- [fs] rbd: fix error handling around rbd_init_disk() (Ilya Dryomov) [1450262]
-- [fs] rbd: move rbd_unregister_watch() call into rbd_dev_image_release() (Ilya Dryomov) [1450262]
-- [fs] rbd: move rbd_dev_destroy() call out of rbd_dev_image_release() (Ilya Dryomov) [1450262]
-- [fs] ceph: when seeing write errors on an inode, switch to sync writes (Ilya Dryomov) [1450262]
-- [fs] ceph: handle epoch barriers in cap messages (Ilya Dryomov) [1450262]
-- [fs] libceph: add an epoch_barrier field to struct ceph_osd_client (Ilya Dryomov) [1450262]
-- [fs] libceph: abort already submitted but abortable requests when map or pool goes full (Ilya Dryomov) [1450262]
-- [fs] libceph: allow requests to return immediately on full conditions if caller wishes (Ilya Dryomov) [1450262]
-- [fs] libceph: remove req->r_replay_version (Ilya Dryomov) [1450262]
-- [fs] ceph: make seeky readdir more efficient (Ilya Dryomov) [1450262]
-- [fs] ceph: close stopped mds' session (Ilya Dryomov) [1450262]
-- [fs] ceph: fix potential use-after-free (Ilya Dryomov) [1450262]
-- [fs] ceph: allow connecting to mds whose rank >= mdsmap::m_max_mds (Ilya Dryomov) [1450262]
-- [fs] ceph: fix wrong check in ceph_renew_caps() (Ilya Dryomov) [1450262]
-- [fs] libceph: supported_features module parameter (Ilya Dryomov) [1450262]
-- [fs] libceph, ceph: always advertise all supported features (Ilya Dryomov) [1450262]
-- [fs] ceph: fix recursion between ceph_set_acl() and __ceph_setattr() (Ilya Dryomov) [1450262]
-- [fs] libceph: force GFP_NOIO for socket allocations (Ilya Dryomov) [1450262]
-- [fs] libceph: osd_request_timeout option (Ilya Dryomov) [1450262]
-- [fs] rbd: supported_features bus attribute (Ilya Dryomov) [1450262]
-- [fs] libceph: fix crush_decode() for older maps (Ilya Dryomov) [1450262]
-- [fs] libceph, rbd, ceph: WRITE | ONDISK -> WRITE (Ilya Dryomov) [1450262]
-- [fs] libceph: get rid of ack vs commit (Ilya Dryomov) [1450262]
-- [fs] ceph: remove special ack vs commit behavior (Ilya Dryomov) [1450262]
-- [fs] ceph: tidy some white space in get_nonsnap_parent() (Ilya Dryomov) [1450262]
-- [fs] crush: fix dprintk compilation (Ilya Dryomov) [1450262]
-- [fs] crush: do is_out test only if we do not collide (Ilya Dryomov) [1450262]
-- [fs] ceph: remove req from unsafe list when unregistering it (Ilya Dryomov) [1450262]
-- [fs] rbd: constify device_type structure (Ilya Dryomov) [1450262]
-- [fs] rbd: kill obj_request->object_name and rbd_segment_name_cache (Ilya Dryomov) [1450262]
-- [fs] rbd: store and use obj_request->object_no (Ilya Dryomov) [1450262]
-- [fs] rbd: RBD_V{1,2}_DATA_FORMAT macros (Ilya Dryomov) [1450262]
-- [fs] rbd: factor out __rbd_osd_req_create() (Ilya Dryomov) [1450262]
-- [fs] rbd: set offset and length outside of rbd_obj_request_create() (Ilya Dryomov) [1450262]
-- [fs] rbd: support for data-pool feature (Ilya Dryomov) [1450262]
-- [fs] rbd: introduce rbd_init_layout() (Ilya Dryomov) [1450262]
-- [fs] rbd: use rbd_obj_bytes() more (Ilya Dryomov) [1450262]
-- [fs] rbd: remove now unused rbd_obj_request_wait() and helpers (Ilya Dryomov) [1450262]
-- [fs] rbd: switch rbd_obj_method_sync() to ceph_osdc_call() (Ilya Dryomov) [1450262]
-- [fs] libceph: pass reply buffer length through ceph_osdc_call() (Ilya Dryomov) [1450262]
-- [fs] rbd: do away with obj_request in rbd_obj_read_sync() (Ilya Dryomov) [1450262]
-- [fs] rbd: initialize rbd_dev->header_oloc early (Ilya Dryomov) [1450262]
-- [fs] rbd: kill rbd_image_header::{crypt_type, comp_type} (Ilya Dryomov) [1450262]
-- [fs] rbd: use kstrndup() in rbd_header_from_disk() (Ilya Dryomov) [1450262]
-- [fs] libceph: bump CEPH_PG_MAX_SIZE to 32 (Ilya Dryomov) [1450262]
-- [fs] libceph: don't go through with the mapping if the PG is too wide (Ilya Dryomov) [1450262]
-- [fs] crush: merge working data and scratch (Ilya Dryomov) [1450262]
-- [fs] crush: remove mutable part of CRUSH map (Ilya Dryomov) [1450262]
-- [fs] libceph: add osdmap_set_crush() helper (Ilya Dryomov) [1450262]
-- [fs] libceph: remove unneeded stddef.h include (Ilya Dryomov) [1450262]
-- [fs] ceph: do a LOOKUP in d_revalidate instead of GETATTR (Ilya Dryomov) [1450262]
-- [fs] ceph: call update_dentry_lease even when r_locked dir is not set (Ilya Dryomov) [1450262]
-- [fs] ceph: vet the target and parent inodes before updating dentry lease (Ilya Dryomov) [1450262]
-- [fs] ceph: don't update_dentry_lease unless we actually got one (Ilya Dryomov) [1450262]
-- [fs] ceph: add a new flag to indicate whether parent is locked (Ilya Dryomov) [1450262]
-- [fs] ceph: convert bools in ceph_mds_request to a new r_req_flags field (Ilya Dryomov) [1450262]
-- [fs] ceph: drop session argument to ceph_fill_trace (Ilya Dryomov) [1450262]
-- [fs] ceph: remove "Debugging hook" from ceph_fill_trace (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid calling ceph_renew_caps() infinitely (Ilya Dryomov) [1450262]
-- [fs] ceph: make sure flushing inode in proper session's cap_flushing list (Ilya Dryomov) [1450262]
-- [fs] ceph: update readpages osd request according to size of pages (Ilya Dryomov) [1450262]
-- [fs] ceph: fix bogus endianness change in ceph_ioctl_set_layout (Ilya Dryomov) [1450262]
-- [fs] libceph: use BUG() instead of BUG_ON(1) (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid updating mds_wanted too frequently (Ilya Dryomov) [1450262]
-- [fs] ceph: pass parent inode info to ceph_encode_dentry_release if we have it (Ilya Dryomov) [1450262]
-- [fs] ceph: fix unsafe dcache access in ceph_encode_dentry_release (Ilya Dryomov) [1450262]
-- [fs] ceph: pass parent dir ino info to build_dentry_path (Ilya Dryomov) [1450262]
-- [fs] ceph: clean up unsafe d_parent accesses in build_dentry_path (Ilya Dryomov) [1450262]
-- [fs] ceph: clean up unsafe d_parent access in __choose_mds (Ilya Dryomov) [1450262]
-- [fs] ceph: fix bad endianness handling in parse_reply_info_extra (Ilya Dryomov) [1450262]
-- [fs] ceph: fix endianness bug in frag_tree_split_cmp (Ilya Dryomov) [1450262]
-- [fs] ceph: fix endianness of getattr mask in ceph_d_revalidate (Ilya Dryomov) [1450262]
-- [fs] libceph: make sure ceph_aes_crypt() IV is aligned (Ilya Dryomov) [1450262]
-- [fs] ceph: fix ceph_get_caps() interruption (Ilya Dryomov) [1450262]
-- [fs] ceph: fix get_oldest_context() (Ilya Dryomov) [1450262]
-- [fs] ceph: fix mds cluster availability check (Ilya Dryomov) [1450262]
-- [fs] libceph: remove now unused finish_request() wrapper (Ilya Dryomov) [1450262]
-- [fs] libceph: always signal completion when done (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid creating orphan object when checking pool permission (Ilya Dryomov) [1450262]
-- [fs] ceph: properly set issue_seq for cap release (Ilya Dryomov) [1450262]
-- [fs] ceph: add flags parameter to send_cap_msg (Ilya Dryomov) [1450262]
-- [fs] ceph: update cap message struct version to 10 (Ilya Dryomov) [1450262]
-- [fs] ceph: define new argument structure for send_cap_msg (Ilya Dryomov) [1450262]
-- [fs] ceph: move xattr initialzation before the encoding past the ceph_mds_caps (Ilya Dryomov) [1450262]
-- [fs] ceph: fix minor typo in unsafe_request_wait (Ilya Dryomov) [1450262]
-- [fs] ceph: record truncate size/seq for snap data writeback (Ilya Dryomov) [1450262]
-- [fs] ceph: check availability of mds cluster on mount (Ilya Dryomov) [1450262]
-- [fs] ceph: try getting buffer capability for readahead/fadvise (Ilya Dryomov) [1450262]
-- [fs] ceph: fix scheduler warning due to nested blocking (Ilya Dryomov) [1450262]
-- [fs] ceph: fix printing wrong return variable in ceph_direct_read_write() (Ilya Dryomov) [1450262]
-- [fs] crush: include mapper.h in mapper.c (Ilya Dryomov) [1450262]
-- [fs] fix ceph_write_end() (Ilya Dryomov) [1450262]
-- [fs] ceph: don't set req->r_locked_dir in ceph_d_revalidate (Ilya Dryomov) [1450262]
-- [fs] libceph: initialize last_linger_id with a large integer (Ilya Dryomov) [1450262]
-- [fs] ceph: fix uninitialized dentry pointer in ceph_real_mount() (Ilya Dryomov) [1450262]
-- [fs] ceph: fix readdir vs fragmentation race (Ilya Dryomov) [1450262]
-- [fs] ceph: fix error handling in ceph_read_iter (Ilya Dryomov) [1450262]
-- [fs] crush: remove redundant local variable (Ilya Dryomov) [1450262]
-- [fs] crush: don't normalize input of crush_ln iteratively (Ilya Dryomov) [1450262]
-- [fs] libceph: ceph_build_auth() doesn't need ceph_auth_build_hello() (Ilya Dryomov) [1450262]
-- [fs] libceph: use CEPH_AUTH_UNKNOWN in ceph_auth_build_hello() (Ilya Dryomov) [1450262]
-- [fs] rbd: use kmalloc_array() in rbd_header_from_disk() (Ilya Dryomov) [1450262]
-- [fs] ceph: use list_move instead of list_del/list_add (Ilya Dryomov) [1450262]
-- [fs] ceph: handle CEPH_SESSION_REJECT message (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid accessing / when mounting a subpath (Ilya Dryomov) [1450262]
-- [fs] ceph: fix mandatory flock check (Ilya Dryomov) [1450262]
-- [fs] ceph: ignore error from invalidate_inode_pages2_range() in direct write (Ilya Dryomov) [1450262]
-- [fs] ceph: fix error handling of start_read() (Ilya Dryomov) [1450262]
-- [fs] rbd: add rbd_obj_request_error() helper (Ilya Dryomov) [1450262]
-- [fs] rbd: img_data requests don't own their page array (Ilya Dryomov) [1450262]
-- [fs] rbd: don't call rbd_osd_req_format_read() for !img_data requests (Ilya Dryomov) [1450262]
-- [fs] rbd: rework rbd_img_obj_exists_submit() error paths (Ilya Dryomov) [1450262]
-- [fs] rbd: don't crash or leak on errors in rbd_img_obj_parent_read_full_callback() (Ilya Dryomov) [1450262]
-- [fs] rbd: move bumping img_request refcount into rbd_obj_request_submit() (Ilya Dryomov) [1450262]
-- [fs] rbd: mark the original request as done if stat request fails (Ilya Dryomov) [1450262]
-- [fs] rbd: clean up asserts in rbd_img_obj_request_submit() helpers (Ilya Dryomov) [1450262]
-- [fs] rbd: change rbd_obj_request_submit() signature (Ilya Dryomov) [1450262]
-- [fs] ceph: do not modify fi->frag in need_reset_readdir() (Ilya Dryomov) [1450262]
-- [fs] ceph: initialize pathbase in the !dentry case in encode_caps_cb() (Ilya Dryomov) [1450262]
-- [fs] rbd: nuke the 32-bit pool id check (Ilya Dryomov) [1450262]
-- [fs] ceph: fix null pointer dereference in ceph_flush_snaps() (Ilya Dryomov) [1450262]
-- [fs] ceph: Correctly return NXIO errors from ceph_llseek (Ilya Dryomov) [1450262]
-- [fs] ceph: Mark the file cache as unreclaimable (Ilya Dryomov) [1450262]
-- [fs] ceph: optimize cap flush waiting (Ilya Dryomov) [1450262]
-- [fs] ceph: cleanup ceph_flush_snaps() (Ilya Dryomov) [1450262]
-- [fs] ceph: kick cap flushes before sending other cap message (Ilya Dryomov) [1450262]
-- [fs] ceph: introduce an inode flag to indicates if snapflush is needed (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid sending duplicated cap flush message (Ilya Dryomov) [1450262]
-- [fs] ceph: unify cap flush and snapcap flush (Ilya Dryomov) [1450262]
-- [fs] ceph: use list instead of rbtree to track cap flushes (Ilya Dryomov) [1450262]
-- [fs] ceph: update types of some local varibles (Ilya Dryomov) [1450262]
-- [fs] ceph: include 'follows' of pending snapflush in cap reconnect message (Ilya Dryomov) [1450262]
-- [fs] ceph: update cap reconnect message to version 3 (Ilya Dryomov) [1450262]
-- [fs] ceph: mount non-default filesystem by name (Ilya Dryomov) [1450262]
-- [fs] libceph: fsmap.user subscription support (Ilya Dryomov) [1450262]
-- [fs] ceph: handle LOOKUP_RCU in ceph_d_revalidate (Ilya Dryomov) [1450262]
-- [fs] ceph: allow dentry_lease_is_valid to work under RCU walk (Ilya Dryomov) [1450262]
-- [fs] ceph: clear d_fsinfo pointer under d_lock (Ilya Dryomov) [1450262]
-- [fs] ceph: remove ceph_mdsc_lease_release (Ilya Dryomov) [1450262]
-- [fs] ceph: fix NULL dereference in ceph_queue_cap_snap() (Ilya Dryomov) [1450262]
-- [fs] ceph: wait unsafe sync writes for evicting inode (Ilya Dryomov) [1450262]
-- [fs] ceph: fix use-after-free bug in ceph_direct_read_write() (Ilya Dryomov) [1450262]
-- [fs] ceph: reduce i_nr_by_mode array size (Ilya Dryomov) [1450262]
-- [fs] ceph: set user pages dirty after direct IO read (Ilya Dryomov) [1450262]
-- [fs] ceph: fix d_obtain_alias() misuses (Ilya Dryomov) [1450262]
-- [fs] ceph: fix wake_up_session_cb() (Ilya Dryomov) [1450262]
-- [fs] ceph: don't use truncate_pagecache() to invalidate read cache (Ilya Dryomov) [1450262]
-- [fs] ceph: handle interrupted ceph_writepage() (Ilya Dryomov) [1450262]
-- [fs] ceph: make ceph_update_writeable_page() uninterruptible (Ilya Dryomov) [1450262]
-- [fs] libceph: make ceph_osdc_wait_request() uninterruptible (Ilya Dryomov) [1450262]
-- [fs] ceph: handle -EAGAIN returned by ceph_update_writeable_page() (Ilya Dryomov) [1450262]
-- [fs] ceph: make fault/page_mkwrite return VM_FAULT_OOM for -ENOMEM (Ilya Dryomov) [1450262]
-- [fs] ceph: block non-fatal signals for fault/page_mkwrite (Ilya Dryomov) [1450262]
-- [fs] ceph: make logical calculation functions return bool (Ilya Dryomov) [1450262]
-- [fs] ceph: improve fragtree change detection (Ilya Dryomov) [1450262]
-- [fs] ceph: keep leaf frag when updating fragtree (Ilya Dryomov) [1450262]
-- [fs] ceph: fix dir_auth check in ceph_fill_dirfrag() (Ilya Dryomov) [1450262]
-- [fs] ceph: don't assume frag tree splits in mds reply are sorted (Ilya Dryomov) [1450262]
-- [fs] ceph: using hash value to compose dentry offset (Ilya Dryomov) [1450262]
-- [fs] ceph: don't forbid marking directory complete after forward seek (Ilya Dryomov) [1450262]
-- [fs] ceph: record 'offset' for each entry of readdir result (Ilya Dryomov) [1450262]
-- [fs] ceph: define 'end/complete' in readdir reply as bit flags (Ilya Dryomov) [1450262]
-- [fs] ceph: define struct for dir entry in readdir reply (Ilya Dryomov) [1450262]
-- [fs] ceph: simplify 'offset in frag' (Ilya Dryomov) [1450262]
-- [fs] ceph: remove unnecessary checks in __dcache_readdir (Ilya Dryomov) [1450262]
-- [fs] ceph: search cache postion for dcache readdir (Ilya Dryomov) [1450262]
-- [fs] ceph: use CEPH_MDS_OP_RMXATTR request to remove xattr (Ilya Dryomov) [1450262]
-- [fs] ceph: report mount root in session metadata (Ilya Dryomov) [1450262]
-- [fs] ceph: don't show symlink target in debugfs/mdsc (Ilya Dryomov) [1450262]
-- [fs] ceph: don't call truncate_pagecache in ceph_writepages_start (Ilya Dryomov) [1450262]
-- [fs] ceph: renew caps for read/write if mds session got killed. (Ilya Dryomov) [1450262]
-- [fs] ceph: CEPH_FEATURE_MDSENC support (Ilya Dryomov) [1450262]
-- [fs] ceph_fill_trace(): don't bother with d_instantiate(dn, NULL) (Ilya Dryomov) [1450262]
-- [fs] rbd: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO (Ilya Dryomov) [1450262]
-
-* Mon Aug 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-700.el7]
-- [fs] dentry name snapshots (Miklos Szeredi) [1470403] {CVE-2017-7533}
-- [fs] Make statfs properly return read-only state after emergency remount (Carlos Maiolino) [1411446]
-- [fs] xfs: fix off-by-one on max nr_pages in xfs_find_get_desired_pgoff() (Eryu Guan) [1458997]
-- [fs] xfs: rework the inline directory verifiers (Brian Foster) [1440716]
-- [fs] xfs: verify inline directory data forks (Brian Foster) [1440716]
-- [fs] xfs: sanity check inode di_mode (Brian Foster) [1440716]
-- [fs] xfs: sanity check inode mode when creating new dentry (Brian Foster) [1440716]
-- [fs] xfs: replace xfs_mode_to_ftype table with switch statement (Brian Foster) [1440716]
-- [fs] xfs: add missing include dependencies to xfs_dir2.h (Brian Foster) [1440716]
-- [fs] xfs: sanity check directory inode di_size (Brian Foster) [1440716]
-- [fs] xfs: make the ASSERT() condition likely (Brian Foster) [1440716]
-- [fs] xfs: don't allow di_size with high bit set (Brian Foster) [1440716]
-- [fs] xfs: return an error when an inline directory is too small (Brian Foster) [1440716]
-- [fs] nfs: Always wait for I/O completion before unlock (Benjamin Coddington) [1462270]
-- [fs] locks: fix unlock when fcntl_setlk races with a close (Benjamin Coddington) [1462270]
-- [fs] locks: remove conditional lock release in middle of flock_lock_file (Jeff Layton) [1461552]
-- [pci] pci/aspm: Handle PCI-to-PCIe bridges as roots of PCIe hierarchies (Myron Stowe) [1441156]
-- [pci] pci/aspm: Don't retrain link if ASPM not possible (Myron Stowe) [1441156]
-- [pci] Enumerate switches below PCI-to-PCIe bridges (Myron Stowe) [1441156]
-- [scsi] Add STARGET_CREATED_REMOVE state to scsi_target_state (Ewan Milne) [1468727]
-- [scsi] qla2xxx: Fix extraneous ref on sp's after adapter break (Himanshu Madhani) [1448909]
-- [s390] compat: fix sys_sched_getattr compat wrapper (Arjun Vynipadath) [1471677]
-- [nvme] Test unit Ready broken for nvme drvices (David Milburn) [1478457]
-- [netdrv] aquantia: Switch to use napi_gro_receive (David Arcari) [1444348]
-
-* Wed Aug 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-699.el7]
-- [x86] efi: Setup separate EFI page tables in kexec paths (Bhupesh Sharma) [1102454]
-- [x86] platform/uv: Fix support for EFI_OLD_MEMMAP after BIOS callback updates (Bhupesh Sharma) [1102454]
-- [x86] efi: Map in physical addresses in efi_map_region_fixed (Bhupesh Sharma) [1102454]
-- [x86] platform/uv: Skip UV runtime services mapping in the efi_runtime_disabled case (Bhupesh Sharma) [1102454]
-- [x86] uv: Update uv_bios_call() to use efi_call_virt_pointer() (Bhupesh Sharma) [1102454]
-- [x86] efi: Convert efi_call_virt() to efi_call_virt_pointer() (Bhupesh Sharma) [1102454]
-- [x86] efi: Enable runtime call flag checking (Bhupesh Sharma) [1102454]
-- [firmware] efi/runtime-wrappers: Remove redundant #ifdefs (Bhupesh Sharma) [1102454]
-- [x86] efi: Move to generic {__, }efi_call_virt() (Bhupesh Sharma) [1102454]
-- [firmware] efi/runtime-wrappers: Add {__, }efi_call_virt() templates (Bhupesh Sharma) [1102454]
-- [x86] efi: Build our own page table structures (Bhupesh Sharma) [1102454]
-- [x86] efi: Hoist page table switching code into efi_call_virt() (Bhupesh Sharma) [1102454]
-- [x86] efi: Clean up the efi_call_phys_[prolog|epilog]() save/restore interaction (Bhupesh Sharma) [1102454]
-- [x86] efi: Fix 7-parameter efi_call()s (Bhupesh Sharma) [1102454]
-- [x86] asm/efi: Create a stack frame in efi_call() (Bhupesh Sharma) [1102454]
-- [x86] platform/uv: Bring back the call to map_low_mmrs in uv_system_init (Bhupesh Sharma) [1102454]
-- [x86] mm/pat: Ensure cpa->pfn only contains page frame numbers (Bhupesh Sharma) [1102454]
-- [kernel] efi/x86: Move UEFI Runtime Services wrappers to generic code (Bhupesh Sharma) [1102454]
-- [x86] platform/uv: Remove EFI memmap quirk for UV2+ (Bhupesh Sharma) [1102454]
-- [kernel] efi: Use correct type for struct efi_memory_map::phys_map (Bhupesh Sharma) [1102454]
-- [x86] efi: Fix boot crash by mapping EFI memmap entries bottom-up at runtime, instead of top-down (Bhupesh Sharma) [1102454]
-- [x86] efi: Disable interrupts around EFI calls, not in the epilog/prolog calls (Bhupesh Sharma) [1102454]
-- [x86] efi: Mark initialization code as such (Bhupesh Sharma) [1102454]
-- [x86] efi: Update comment regarding required phys mapped EFI services (Bhupesh Sharma) [1102454]
-- [x86] efi: Clear EFI_RUNTIME_SERVICES if failing to enter virtual mode (Bhupesh Sharma) [1102454]
-- [kernel] efi: Move noefi early param code out of x86 arch code (Bhupesh Sharma) [1102454]
-- [x86] arch/x86: Do not access EFI memory map if it is not available (Bhupesh Sharma) [1102454]
-- [firmware] efi: Use early_mem*() instead of early_io*() (Bhupesh Sharma) [1102454]
-- [x86] efi: Use early_memunmap() to squelch sparse errors (Bhupesh Sharma) [1102454]
-- [x86] mm: sparse warning fix for early_memremap (Bhupesh Sharma) [1102454]
-- [x86] efi: Move all workarounds to a separate file quirks.c (Bhupesh Sharma) [1102454]
-- [x86] efi: Delete out-of-date comments of efi_query_variable_store (Bhupesh Sharma) [1102454]
-- [kernel] efi: Move facility flags to struct efi (Bhupesh Sharma) [1102454]
-
-* Tue Aug 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-698.el7]
-- [pci] aer: Log aer_inject error injections (Myron Stowe) [1466886]
-- [pci] aer: Log actual error causes in aer_inject (Myron Stowe) [1466886]
-- [pci] aer: Use dev_warn() in aer_inject (Myron Stowe) [1466886]
-- [pci] aer: Fix aer_inject error codes (Myron Stowe) [1466886]
-- [pci] aer: Use list_first_entry_or_null() to simplify code (Myron Stowe) [1466886]
-- [pci] aer: Restore pci_ops pointer while calling original pci_ops (Myron Stowe) [1466886]
-- [pci] aer: Rename pci_ops_aer to aer_inj_pci_ops (Myron Stowe) [1466886]
-- [pci] aer: Flush workqueue on device remove to avoid use-after-free (Myron Stowe) [1466886]
-- [pci] Fix unaligned accesses in VC code (Myron Stowe) [1466891]
-- [pci] Do not treat EPROBE_DEFER as device attach failure (Myron Stowe) [1466891]
-- [pci] Fix BUG on device attach failure (Myron Stowe) [1466891]
-- [pci] Simplify pci_create_attr() control flow (Myron Stowe) [1466891]
-- [pci] Don't leak memory if sysfs_create_bin_file() fails (Myron Stowe) [1466891]
-- [pci] Wait for up to 1000ms after FLR reset (Myron Stowe) [1466891]
-- [pci] Support SR-IOV on any function type (Myron Stowe) [1466891]
-- [pci] Consolidate PCI DMA constants and interfaces in linux/pci-dma-compat.h (Myron Stowe) [1466891]
-- [pci] Move pci_dma_* helpers to common code (Myron Stowe) [1466891]
-- [pci] Cleanup pci/pcie/Kconfig whitespace (Myron Stowe) [1466891]
-- [pci] Include pci/hotplug Kconfig directly from pci/Kconfig (Myron Stowe) [1466891]
-- [pci] Include pci/pcie/Kconfig directly from pci/Kconfig (Myron Stowe) [1466891]
-- [pci] Fix broken URL for Dell biosdevname (Myron Stowe) [1466891]
-- [pci] Remove includes of asm/pci-bridge.h (Myron Stowe) [1466891]
-- [pci] Remove empty asm-generic/pci-bridge.h (Myron Stowe) [1466891]
-- [pci] Remove includes of empty asm-generic/pci-bridge.h (Myron Stowe) [1466891]
-- [pci] pme: Restructure pcie_pme_suspend() to prevent compiler warning (Myron Stowe) [1466891]
-- [pci] pme: Remove redundant port lookup (Myron Stowe) [1466891]
-- [pci] Check device_attach() return value always (Myron Stowe) [1466891]
-- [pci] pci / pm: handle failure to enable wakeup on PCIe PME (Myron Stowe) [1466891]
-- [pci] pci / pm: Make PCIe PME interrupts wake up from suspend-to-idle (Myron Stowe) [1466891]
-- [pci] shpchp: Constify hpc_ops structure (Myron Stowe) [1462837]
-- [pci] Use to_pci_dev() instead of open-coding it (Myron Stowe) [1462837]
-- [pci] Add function 1 DMA alias quirk for Lite-On/Plextor M6e/Marvell 88SS9183 (Myron Stowe) [1462837]
-- [pci] Avoid iterating through memory outside the resource window (Myron Stowe) [1462837]
-- [pci] Fix minimum allocation address overwrite (Myron Stowe) [1462837]
-- [pci] ibmphp: Remove unneeded NULL test (Myron Stowe) [1462837]
-- [pci] hotplug: Use list_for_each_entry() to simplify code (Myron Stowe) [1462837]
-- [pci] acpiphp_ibm: Fix null dereferences on null ibm_slot (Myron Stowe) [1462837]
-- [x86] pci: Simplify pci_bios_{read,write} (Myron Stowe) [1462837]
-- [pci] Simplify config space size computation (Myron Stowe) [1462837]
-- [x86] pci: Clarify AMD Fam10h config access restrictions comment (Myron Stowe) [1462837]
-- [pci] Print warnings for all invalid expansion ROM headers (Myron Stowe) [1462837]
-- [pci] Check for PCI_HEADER_TYPE_BRIDGE equality, not bitmask (Myron Stowe) [1462837]
-- [pci] aspm: Make sysfs link_state_store() consistent with link_state_show() (Myron Stowe) [1462837]
-
-* Tue Aug 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-697.el7]
-- [pinctrl] intel: Set pin direction properly (David Arcari) [1467490]
-- [pinctrl] intel: set default handler to be handle_bad_irq() (David Arcari) [1467490]
-- [pinctrl] intel: Only restore pins that are used by the driver (David Arcari) [1467490]
-- [pinctrl] intel: Configure GPIO chip IRQ as wakeup interrupts (David Arcari) [1467490]
-- [pinctrl] intel: Protect set wake flow by spin lock (David Arcari) [1467490]
-- [pinctrl] intel: Prevent force threading of the interrupt handler (David Arcari) [1467490]
-- [pinctrl] intel: Use raw_spinlock for locking (David Arcari) [1467490]
-- [pinctrl] intel: implement gpio_irq_enable (David Arcari) [1467490]
-- [pinctrl] intel: fix offset calculation issue of register PAD_OWN (David Arcari) [1467490]
-- [pinctrl] intel: fix bug of register offset calculation (David Arcari) [1467490]
-- [pinctrl] intel: make the high level interrupt working (David Arcari) [1467490]
-- [pinctrl] intel: Use devm_pinctrl_register() for pinctrl registration (David Arcari) [1467490]
-- [kernel] gpio/pinctrl: sunxi: stop poking around in private vars (David Arcari) [1467490]
-- [pinctrl] intel: use gpiochip data pointer (David Arcari) [1467490]
-- [kernel] gpio: add a data pointer to gpio_chip (David Arcari) [1467490]
-- [pinctrl] intel: Allow requesting pins which are in ACPI mode as GPIOs (David Arcari) [1467490]
-- [pinctrl] intel: Add support for multiple GPIO chips sharing the interrupt (David Arcari) [1467490]
-- [gpio] handle also nested irqchips in the chained handler set-up (David Arcari) [1467490]
-- [gpio] set parent irq on chained handlers (David Arcari) [1467490]
-- [gpio] do not set up hardware for IRQ_TYPE_NONE (David Arcari) [1467490]
-- [kernel] gpio: support threaded interrupts in irqchip helpers (David Arcari) [1467490]
-- [kernel] gpio: unmap gpio irqs properly (David Arcari) [1467490]
-- [gpio] set data first, then chip and handler (David Arcari) [1467490]
-- [i2c] i801: Allow ACPI SystemIO OpRegion to conflict with PCI BAR (David Arcari) [1464196]
-- [i2c] i801: Add runtime PM support with autosuspend (David Arcari) [1464196]
-- [rtc] interface: Validate alarm-time before handling rollover (Steve Best) [1458401]
-- [rtc] interface: fix infinite loop in initializing the alarm (Steve Best) [1458401]
-- [rtc] opal: Handle disabled TPO in opal_get_tpo_time() (Steve Best) [1458401]
-- [hid] plantronics: Update to map volume up/down controls (Torez Smith) [1245271]
-- [hid] plantronics: remove superfluous .probe() (Torez Smith) [1245271]
-- [hid] plantronics: fix errant mouse events (Torez Smith) [1245271]
-- [misc] mei: make sysfs modalias format similar as uevent modalias (Pratyush Anand) [1451599]
-- [netdrv] e1000e: Add Support for 38.4MHZ frequency (David Arcari) [1475413]
-- [netdrv] e1000e: Add Support for CannonLake (David Arcari) [1475413]
-- [netdrv] e1000e: Initial Support for CannonLake (David Arcari) [1475413]
-- [netdrv] bonding: commit link status change after propose (Jarod Wilson) [1469987 1469790]
-- [netdrv] bonding: avoid NETDEV_CHANGEMTU event when unregistering slave (Jarod Wilson) [1470603]
-
-* Mon Aug 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-696.el7]
-- [x86] platform/uv/bau: Disable BAU on single hub configurations (Frank Ramsay) [1473353 1472455]
-- [x86] platform/uv/bau: Fix congested_response_us not taking effect (Frank Ramsay) [1472455]
-- [x86] mce: Look in genpool instead of mcelog for pending error records (Oleksandr Natalenko) [1468257]
-- [x86] Avoid using object after free in genpool (Oleksandr Natalenko) [1468257]
-- [x86] kvm: svm: suppress unnecessary NMI singlestep on GIF=0 and nested exit (Ladi Prosek) [1440025]
-- [x86] kvm: svm: don't NMI singlestep over event injection (Ladi Prosek) [1440025]
-- [x86] kvm: svm: hide TF/RF flags used by NMI singlestep (Ladi Prosek) [1440025]
-- [x86] kvm: nsvm: do not forward NMI window singlestep VM exits to L1 (Ladi Prosek) [1440025]
-- [x86] kvm: svm: introduce disable_nmi_singlestep helper (Ladi Prosek) [1440025]
-- [x86] intel-family.h: Add GEMINI_LAKE SOC (Steve Best) [1461882]
-- [tools] perf machine: Fix segfault for kernel.kptr_restrict=2 (Jiri Olsa) [1464682]
-- [tools] perf symbols: Accept symbols starting at address 0 (Jiri Olsa) [1464682]
-- [powerpc] perf: Add per-event excludes on Power8 (Jiri Olsa) [1458868]
-- [powerpc] perf: Pass the struct perf_events down to compute_mmcr() (Jiri Olsa) [1458868]
-- [powerpc] fadump: provide a helpful error message (Pingfan Liu) [1438695]
-- [powerpc] fadump: avoid holes in boot memory area when fadump is registered (Pingfan Liu) [1438695]
-- [powerpc] fadump: avoid duplicates in crash memory ranges (Pingfan Liu) [1438695]
-- [powerpc] fadump: Update fadump documentation (Pingfan Liu) [1438695]
-- [powerpc] fadump: Reserve memory at an offset closer to bottom of RAM (Pingfan Liu) [1438695]
-- [powerpc] Fix dedotify for binutils >= 2.26 (Gustavo Duarte) [1464009]
-- [powerpc] Simplify module TOC handling (Gustavo Duarte) [1464009]
-
-* Mon Aug 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-695.el7]
-- [mm] rmap: use pte lock not mmap_sem to set PageMlocked (Andrea Arcangeli) [1450367]
-- [mm] rmap: cleanup ttu_flags (Andrea Arcangeli) [1450367]
-- [mm] rmap: don't call mmu_notifier_invalidate_page() during munlock (Andrea Arcangeli) [1450367]
-- [mm] thp: respect MPOL_PREFERRED policy with non-local node (Larry Woodman) [1476709]
-- [mm] page-writeback.c: fix divide by zero in bdi_dirty_limits() (Jerome Marchand) [1465430]
-- [fs] proc: revert /proc/<pid>/maps [stack:TID] annotation (Waiman Long) [1448534]
-- [x86] kvm: vmx: check apicv is active before using VT-d posted interrupt (Paul Lai) [1377197]
-- [x86] vmware: Use tsc_khz value for calibrate_cpu() (Prarit Bhargava) [1475716]
-- [x86] apic: Handle zero vector gracefully in clear_vector_irq() (Prarit Bhargava) [1441091]
-- [char] ipmi: use rcu lock around call to intf->handlers->sender() (Tony Camuso) [1419765]
-- [misc] cxl: Force context lock during EEH flow (Steve Best) [1457389]
-- [kernel] alarmtimer: Prevent overflow of relative timers (Prarit Bhargava) [1458643]
-- [netdrv] cxgb4: Fix netdev_features flag (Arjun Vynipadath) [1361097]
-- [netdrv] cxgb4: avoid crash on PCI error recovery path (Gustavo Duarte) [1456990]
-- [netdrv] bonding: fix 802.3ad support for 5G and 50G speeds (Jarod Wilson) [1461334]
-- [cpufreq] intel_pstate: Fix unsafe HWP MSR access (Steve Best) [1457552]
-
-* Thu Aug 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-694.el7]
-- [fs] xfs: use ->b_state to fix buffer I/O accounting release race (Brian Foster) [1452228]
-- [fs] fix the regression from "direct-io: Fix negative return from dio read beyond eof" (Eric Sandeen) [1473549]
-- [fs] direct-io: Fix negative return from dio read beyond eof (Eric Sandeen) [1473549]
-- [pci] hv: Use vPCI protocol version 1.2 (Vitaly Kuznetsov) [1459202]
-- [pci] hv: Add vPCI version protocol negotiation (Vitaly Kuznetsov) [1459202]
-- [pci] hv: Use page allocation for hbus structure (Vitaly Kuznetsov) [1459202]
-- [pci] hv: Fix comment formatting and use proper integer fields (Vitaly Kuznetsov) [1459202]
-- [nvme] Free bio_aux struct when done with bio (David Milburn) [1455553]
-- [nvme] nvmet-rdma: occasionally flush ongoing controller teardown (Slava Shwartsman) [1467998]
-- [crypto] api - Move alg ref count init to crypto_check_alg (Herbert Xu) [1473593]
-- [netdrv] cxgb4: reduce resource allocation in kdump kernel (Sai Vemuri) [1379762]
-- [netdrv] cxgb4: fix a NULL dereference (Sai Vemuri) [1379762]
-- [netdrv] cxgb4: fix BUG() on interrupt deallocating path of ULD (Mauricio Oliveira) [1465554]
-- [netdrv] bonding: Fix transmit load balancing in balance-alb mode (Jarod Wilson) [1473481]
-- [powerpc] eeh: Fix partial hotplug criterion (Gustavo Duarte) [1458508]
-- [powerpc] eeh: Fix wrong argument passed to eeh_rmv_device() (Gustavo Duarte) [1458508]
-- [firewire] net: guard against rx buffer overflows (Neil Horman) [1393792] {CVE-2016-8633}
-
-* Thu Jul 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-693.el7]
-- [x86] crypto: sha1-ssse3 - Disable avx2 (Benjamin Coddington) [1346106]
-- [net] geneve: fix hlist corruption (Jiri Benc) [1464292]
-- [net] vxlan: fix hlist corruption (Jiri Benc) [1464292]
-- [net] vxlan: fix use-after-free on deletion (Jiri Benc) [1464292]
-
-* Thu Jul 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-692.el7]
-- [pci] Avoid FLR for Intel 82579 NICs (Jarod Wilson) [966840]
-- [net] netfilter: nf_ct_dccp/sctp: fix memory leak after netns cleanup (Davide Caratti) [1458687]
-- [net] netfilter: udplite: Remove duplicated udplite4/6 declaration (Davide Caratti) [1458687]
-- [net] netfilter: nat: merge udp and udplite helpers (Davide Caratti) [1458687]
-- [net] netfilter: merge udp and udplite conntrack helpers (Davide Caratti) [1458687]
-- [netdrv] mlx5: Tolerate irq_set_affinity_hint() failures (Kamal Heib) [1465830]
-- [netdrv] bonding: Restore old symlink names in sysfs to preserve ABI (Neil Horman) [1461892]
-
-* Thu Jun 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-691.el7]
-- [redhat] spec: Update dracut dependency to enable more algorithms as FIPS compliant (Rafael Aquini) [1466097]
-
-* Wed Jun 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-690.el7]
-- [mm] fix new crash in unmapped_area_topdown() (Larry Woodman) [1463241] {CVE-2017-1000364}
-- [mm] larger stack guard gap, between vmas (Larry Woodman) [1463241] {CVE-2017-1000364}
-- [mm] Revert "enlarge stack guard gap" (Larry Woodman) [1463241] {CVE-2017-1000364}
-- [crypto] testmgr - Reenable sha1/aes in FIPS mode (Herbert Xu) [1465234]
-- [crypto] testmgr - mark more algorithms as FIPS compliant (Herbert Xu) [1465234]
-- [target] tcmu: break up free_device callback (Mike Christie) [1430225]
-- [target] tcmu: perfom device add and del synchronously (Mike Christie) [1430225]
-- [target] tcmu: use idr for se_device dev index (Mike Christie) [1430225]
-- [target] tcmu: prep for sync add/rm device support (Mike Christie) [1430225]
-
-* Tue Jun 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-689.el7]
-- [net] bridge: allow IPv6 when multicast flood is disabled (Ivan Vecera) [1464167]
-
-* Tue Jun 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-688.el7]
-- [s390] move _text symbol to address higher than zero (Jiri Olsa) [1464800]
-- [netdrv] cxgb4: notify uP to route ctrlq compl to rdma rspq (Sai Vemuri) [1463324]
-- [powerpc] Add HAVE_PERF_USER_STACK_DUMP support (Jiri Olsa) [1449182]
-- [tools] perf report: Ensure the perf DSO mapping matches what libdw sees (Jiri Olsa) [1449182]
-- [tools] perf report: Include partial stacks unwound with libdw (Jiri Olsa) [1449182]
-- [tools] perf: libdw support for powerpc (Jiri Olsa) [1449182]
-- [firmware] efi/esrt: Cleanup bad memory map log messages (Prarit Bhargava) [1380812]
-- [firmware] efi/esrt: Fix typo in pr_err() message (Prarit Bhargava) [1380812]
-- [firmware] efi/esrt: Use memremap not ioremap to access ESRT table in memory (Prarit Bhargava) [1380812]
-- [firmware] efi: Work around ia64 build problem with ESRT driver (Prarit Bhargava) [1380812]
-- [firmware] efi/esrt: Don't preformat name (Prarit Bhargava) [1380812]
-- [firmware] efi: Make efi/esrt.c driver explicitly non-modular (Prarit Bhargava) [1380812]
-- [firmware] efi/esrt: Fix some compiler warnings (Prarit Bhargava) [1380812]
-- [firmware] efi: Add esrt support (Prarit Bhargava) [1380812]
-- [firmware] efi: Rename efi_guid_unparse to efi_guid_to_str (Prarit Bhargava) [1380812]
-
-* Mon Jun 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-687.el7]
-- [fs] mntns: Remove incorrect put_mnt_ns ("Eric W. Biederman") [1463072]
-- [md] dm raid: fix oops on upgrading to extended superblock format (Mike Snitzer) [1464274]
-- [md] dm io: fix duplicate bio completion due to missing ref count (Mike Snitzer) [1461519]
-- [net] gro_cells: mark napi struct as not busy poll candidates (Eelco Chaudron) [1460078]
-- [x86] boot/kaslr: Skip kernel text relocation if no kaslr action is done (Baoquan He) [1458738]
-- [char] tpm/tpm_crb: enter the low power state upon device suspend (Jerry Snitselaar) [1463001]
-- [input] wacom: fix Wacom Cintiq 27QHD max pressure (Aristeu Rozanski) [1461910]
-- [kernel] nohz: Fix spurious warning when hrtimer and clockevent get out of sync (Frederic Weisbecker) [1366043]
-- [kernel] nohz: Fix buggy tick delay on IRQ storms (Frederic Weisbecker) [1366043]
-- [kernel] nohz: Reset next_tick cache even when the timer has no regs (Frederic Weisbecker) [1366043]
-- [kernel] nohz: Fix collision between tick and other hrtimers, again (Frederic Weisbecker) [1366043]
-- [kernel] nohz: Add hrtimer sanity check (Frederic Weisbecker) [1366043]
-- [kernel] revert "nohz: Fix collision between tick and other hrtimers" (Frederic Weisbecker) [1366043]
-- [powerpc] do not make the entire heap executable (Denys Vlasenko) [1330064]
-
-* Wed Jun 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-686.el7]
-- [fs] nfsv4.1: Keep a reference on lock states while checking (Scott Mayhew) [1458721]
-- [fs] nfsv4.1: Handle NFS4ERR_OLD_STATEID in nfs4_reclaim_open_state (Scott Mayhew) [1458721]
-- [fs] nfsv4: Don't call close if the open stateid has already been cleared (Scott Mayhew) [1458721]
-- [fs] nfsv4: Fix CLOSE races with OPEN (Scott Mayhew) [1458721]
-- [fs] nfsv4.1: Fix a regression in DELEGRETURN (Scott Mayhew) [1458721]
-- [fs] nfs: nfs_rename() - revalidate directories on -ERESTARTSYS (Benjamin Coddington) [1459404]
-- [fs] revert "nfs: nfs_rename() handle -ERESTARTSYS dentry left behind" (Benjamin Coddington) [1459404]
-- [s390] pci: moving check and allocation of device_rh ahead (Wei Xu) [1455117]
-- [netdrv] cxgb4: handle serial flash interrupt (Sai Vemuri) [1462266]
-- [netdrv] cxgb4: fix to bring link down after adapter crash (Sai Vemuri) [1462266]
-- [netdrv] cxgb4: handle interrupt raised when FW crashes (Sai Vemuri) [1462266]
-- [security] keys: Change the name of the dead type to ".dead" to prevent user access (David Howells) [1439264] {CVE-2017-6951}
-- [security] keys: Protect request_key() against a type with no match function (David Howells) [1433216] {CVE-2017-2647}
-- [security] keys: Disallow keyrings beginning with '.' to be joined as session keyrings (David Howells) [1389309] {CVE-2016-9604}
-
-* Mon Jun 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-685.el7]
-- [mm] enlarge stack guard gap (Larry Woodman) [1452733] {CVE-2017-1000364}
-- [mm] userfaultfd: shmem: handle coredumping in handle_userfault() (Andrea Arcangeli) [1462267]
-- [fs] nfs: Don't send mode again in post-EXCLUSIVE4_1 SETATTR with umask (Benjamin Coddington) [1449466]
-- [hid] hid_wacom: temporaly disable power_supply usage from driver (Aristeu Rozanski) [1458348]
-- [drm] mgag200: Fix to always set HiPri for G200e4 V2 (Rob Clark) [1461985]
-- [nvme] submit nvme_admin_activate_fw to admin queue (David Milburn) [1456978]
-- [netdrv] i40e: set VFs to untrusted mode by default (Stefan Assmann) [1462105]
-- [netdrv] tun: use symmetric hash (Jason Wang) [1458645]
-- [crypto] qat: copy back iv on completion (Neil Horman) [1446394]
-- [crypto] chcr - Fix txq ids (Sai Vemuri) [1457392]
-- [crypto] chcr - fix itnull.cocci warnings (Sai Vemuri) [1426189]
-- [crypto] chcr - Change flow IDs (Sai Vemuri) [1426189]
-- [crypto] chcr - Check device is allocated before use (Sai Vemuri) [1426189]
-
-* Mon Jun 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-684.el7]
-- [crypto] cryptd - process CRYPTO_ALG_INTERNAL (Herbert Xu) [1459191]
-- [crypto] testmgr - don't use interruptible wait in tests (Herbert Xu) [1459191]
-- [crypto] testmgr - use CRYPTO_ALG_INTERNAL (Herbert Xu) [1459191]
-- [crypto] testmgr - Disable fips-allowed for authenc() and des() ciphers (Herbert Xu) [1459191]
-- [x86] crypto: twofish_avx - mark Twofish AVX helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: serpent_sse2 - mark Serpent SSE2 helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: serpent_avx - mark Serpent AVX helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: serpent_avx2 - mark Serpent AVX2 helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: cast6_avx - mark CAST6 helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: camellia_aesni_avx - mark AVX Camellia helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: cast5_avx - mark CAST5 helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: camellia_aesni_avx2 - mark AES-NI Camellia helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: clmulni - mark ghash clmulni helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: aesni - mark AES-NI helper ciphers (Herbert Xu) [1459191]
-- [crypto] testmgr - add aead cbc des, des3_ede tests (Herbert Xu) [1459191]
-- [crypto] testmgr - add aead null encryption test vectors (Herbert Xu) [1459191]
-- [crypto] algif_skcipher - initialize upon init request (Herbert Xu) [1459191]
-- [crypto] af_alg - zeroize key data (Herbert Xu) [1459191]
-- [crypto] fix broken crypto_register_instance() module handling (Herbert Xu) [1459191]
-- [crypto] api - remove instance when test failed (Herbert Xu) [1459191]
-- [crypto] api - Change crypto_unregister_instance argument type (Herbert Xu) [1459191]
-- [crypto] api - Fix races in crypto_unregister_instance (Herbert Xu) [1459191]
-- [crypto] rng - Zero seed in crypto_rng_reset (Herbert Xu) [1459191]
-- [crypto] cmac - allow usage in FIPS mode (Herbert Xu) [1459191]
-- [crypto] drbg - remove FIPS 140-2 continuous test (Herbert Xu) [1459191]
-- [crypto] testmgr - mark authenticated ctr(aes) also as FIPS able (Herbert Xu) [1459191]
-- [crypto] drbg - do not call drbg_instantiate in healt test (Herbert Xu) [1459191]
-- [crypto] rsa - allow keys >= 2048 bits in FIPS mode (Herbert Xu) [1459191]
-- [crypto] testmgr - mark ctr(des3_ede) as fips_allowed (Herbert Xu) [1459191]
-- [crypto] testmgr - Allow ecb(cipher_null) in FIPS mode (Herbert Xu) [1459191]
-- [crypto] ansi_cprng - ANSI X9.31 DRNG is not allowed in FIPS 140-2 (Herbert Xu) [1459191]
-
-* Mon Jun 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-683.el7]
-- [mm] hmm: RHEL specific, properly handle pte_file() case within HMM (Jerome Glisse) [1460044]
-- [mm] hmm: remove extra sanity check to avoid crash (Jerome Glisse) [1459259]
-- [md] revert "dm mirror: use all available legs on multiple failures" (Mike Snitzer) [1436374]
-- [md] dm-raid: up target version to show MD deadlock fixes are present (Heinz Mauelshagen) [1443999]
-- [md] fix suspend/write deadlock (Heinz Mauelshagen) [1443999]
-- [md] fix single core deadlock (Heinz Mauelshagen) [1443999]
-- [x86] complete introduction of feature word 16 (Paolo Bonzini) [1413348]
-- [drm] amdgpu: Program ring for vce instance 1 at its register space (Rob Clark) [1458391]
-- [drm] amdgpu: change wptr to 64 bits (Rob Clark) [1458391]
-- [scsi] lpfc: Null pointer dereference when log_verbose is set to 0xffffffff (Maurizio Lombardi) [1459443]
-- [kernel] sched/deadline: Use the revised wakeup rule for suspending constrained dl tasks (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Fix dl_bw comment (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Zero out positive runtime after throttling constrained tasks (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Use deadline instead of period when calculating overflow (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Throttle a constrained deadline task activated after the deadline (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Make sure the replenishment timer fires in the next period (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Add missing update_rq_clock() in dl_task_timer() (Xunlei Pang) [1433064]
-- [target] tcmu: increase ring buffer size (Mike Christie) [1407015]
-- [netdrv] bnx2x: Don't post statistics to malicious VFs (Michal Schmidt) [1449872]
-- [netdrv] bnx2x: Allow vfs to disable txvlan offload (Michal Schmidt) [1449872]
-- [infiniband] rdma/iw_cxgb4: fix the calculation of ipv6 header size (Sai Vemuri) [1458389]
-
-* Thu Jun 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-682.el7]
-- [char] random: Fix crashes with sparse node ids (Herbert Xu) [1457281 1270982]
-- [char] random: use for_each_online_node() to iterate over NUMA nodes (Herbert Xu) [1457281 1270982]
-- [char] random: strengthen input validation for RNDADDTOENTCNT (Herbert Xu) [1457281 1270982]
-- [char] random: add backtracking protection to the CRNG (Herbert Xu) [1270982 1457281]
-- [char] random: make /dev/urandom scalable for silly userspace programs (Herbert Xu) [1270982 1457281]
-- [char] random: replace non-blocking pool with a Chacha20-based CRNG (Herbert Xu) [1270982 1457281]
-- [char] random: properly align get_random_int_hash (Herbert Xu) [1270982 1457281]
-- [char] random: print a warning for the first ten uninitialized random users (Herbert Xu) [1270982 1457281]
-- [char] random: initialize the non-blocking pool via add_hwgenerator_randomness() (Herbert Xu) [1270982 1457281]
-- [kernel] random: Add callback API for random pool readiness (Herbert Xu) [1270982 1457281]
-- [char] random: Fix fast_mix() function (Herbert Xu) [1270982 1457281]
-- [char] random: limit the contribution of the hw rng to at most half (Herbert Xu) [1270982 1457281]
-- [char] random: check for increase of entropy_count because of signed conversion (Herbert Xu) [1270982 1457281]
-- [char] random: use registers from interrupted code for CPU's w/o a cycle counter (Herbert Xu) [1270982 1457281]
-- [char] random: use an improved fast_mix() function (Herbert Xu) [1270982 1457281]
-- [char] random: clean up interrupt entropy accounting for archs w/o cycle counters (Herbert Xu) [1270982 1457281]
-- [char] random: only update the last_pulled time if we actually transferred entropy (Herbert Xu) [1270982 1457281]
-- [char] random: remove unneeded hash of a portion of the entropy pool (Herbert Xu) [1270982 1457281]
-- [char] random: always update the entropy pool under the spinlock (Herbert Xu) [1270982 1457281]
-- [char] random: fix nasty entropy accounting bug (Herbert Xu) [1270982 1457281]
-- [char] random: fix BUG_ON caused by accounting simplification (Herbert Xu) [1270982 1457281]
-- [kernel] random: Add arch_has_random[_seed]() (Herbert Xu) [1270982 1457281]
-- [char] random: If we have arch_get_random_seed*(), try it before blocking (Herbert Xu) [1270982 1457281]
-- [char] random: Use arch_get_random_seed*() at init time and once a second (Herbert Xu) [1270982 1457281]
-- [kernel] x86, random: Enable the RDSEED instruction (Herbert Xu) [1270982 1457281]
-- [char] random: use the architectural HWRNG for the SHA's IV in extract_buf() (Herbert Xu) [1270982 1457281]
-- [char] random: clarify bits/bytes in wakeup thresholds (Herbert Xu) [1270982 1457281]
-- [char] random: entropy_bytes is actually bits (Herbert Xu) [1270982 1457281]
-- [char] random: simplify accounting code (Herbert Xu) [1270982 1457281]
-- [char] random: tighten bound on random_read_wakeup_thresh (Herbert Xu) [1270982 1457281]
-- [char] random: forget lock in lockless accounting (Herbert Xu) [1270982 1457281]
-- [char] random: simplify accounting logic (Herbert Xu) [1270982 1457281]
-- [char] random: fix comment on "account" (Herbert Xu) [1270982 1457281]
-- [char] random: simplify loop in random_read (Herbert Xu) [1270982 1457281]
-- [char] random: fix description of get_random_bytes (Herbert Xu) [1270982 1457281]
-- [char] random: fix comment on proc_do_uuid (Herbert Xu) [1270982 1457281]
-- [char] random: fix typos / spelling errors in comments (Herbert Xu) [1270982 1457281]
-- [char] random: add debugging code to detect early use of get_random_bytes() (Herbert Xu) [1270982 1457281]
-- [char] random: initialize the last_time field in struct timer_rand_state (Herbert Xu) [1270982 1457281]
-- [char] random: don't zap entropy count in rand_initialize() (Herbert Xu) [1270982 1457281]
-- [char] random: make add_timer_randomness() fill the nonblocking pool first (Herbert Xu) [1270982 1457281]
-- [char] random: convert DEBUG_ENT to tracepoints (Herbert Xu) [1270982 1457281]
-- [char] random: push extra entropy to the output pools (Herbert Xu) [1270982 1457281]
-- [char] random: drop trickle mode (Herbert Xu) [1270982 1457281]
-- [char] random: adjust the generator polynomials in the mixing function slightly (Herbert Xu) [1270982 1457281]
-- [char] random: speed up the fast_mix function by a factor of four (Herbert Xu) [1270982 1457281]
-- [char] random: cap the rate which the /dev/urandom pool gets reseeded (Herbert Xu) [1270982 1457281]
-- [char] random: optimize the entropy_store structure (Herbert Xu) [1270982 1457281]
-- [char] random: optimize spinlock use in add_device_randomness() (Herbert Xu) [1270982 1457281]
-- [char] random: fix the tracepoint for get_random_bytes(_arch) (Herbert Xu) [1270982 1457281]
-- [char] random: mix in architectural randomness earlier in extract_buf() (Herbert Xu) [1270982 1457281]
-
-* Tue Jun 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-681.el7]
-- [fs] mnt: Move unprivileged use of the mntns to tech preview ("Eric W. Biederman") [1350553]
-- [fs] nfs: Don't print a pNFS error if we aren't using pNFS (Benjamin Coddington) [1459899]
-- [fs] pnfs: add a new mechanism to select a layout driver according to an ordered list (Benjamin Coddington) [1459899]
-- [fs] pnfs: track multiple layout types in fsinfo structure (Benjamin Coddington) [1459899]
-- [fs] nfsd: Fix up the "supattr_exclcreat" attributes ("J. Bruce Fields") [1460376]
-- [fs] nfsd: encoders mustn't use unitialized values in error cases ("J. Bruce Fields") [1460365]
-- [fs] nfs: Fix initialization of nfs_page_array->npages (Benjamin Coddington) [1457284]
-- [net] ipv6: Fix leak in ipv6_gso_segment() (Eric Garver) [1459950] {CVE-2017-9074}
-- [net] ipv6: xfrm: Handle errors reported by xfrm6_find_1stfragopt() (Eric Garver) [1459950] {CVE-2017-9074}
-- [net] ipv6: Check ip6_find_1stfragopt() return value properly (Eric Garver) [1459950] {CVE-2017-9074}
-- [net] ipv6: Prevent overrun when parsing v6 header options (Eric Garver) [1459950] {CVE-2017-9074}
-- [net] document that no more GSO bits can be added (Jiri Benc) [1439252]
-- [net] fix GSO_PARTIAL support (Jiri Benc) [1439252]
-- [net] udp: remove remote checksum offload (Jiri Benc) [1439252]
-- [net] vxlan: remove remote checksum offload for egress (Jiri Benc) [1439252]
-- [net] ip6_offload: check segs for NULL in ipv6_gso_segment (Jiri Benc) [1439252]
-- [net] vxlan: eliminate cached dst leak (Lance Richardson) [1396552]
-- [net] bridge: start hello timer only if device is up (Xin Long) [1452093]
-- [net] bridge: fix hello and hold timers starting/stopping (Xin Long) [1452093]
-- [net] bridge: start hello_timer when enabling KERNEL_STP in br_stp_start (Xin Long) [1452093]
-- [net] vlan: Propagate MAC address to VLANs (Jarod Wilson) [1446356]
-- [s390] crash: Fix KEXEC_NOTE_BYTES definition (Xunlei Pang) [1458988]
-- [scsi] cxgb4i, libcxgbi: in error case RST tcp conn (Sai Vemuri) [1457996]
-- [scsi] cxgb4i: update module description (Sai Vemuri) [1457995]
-- [netdrv] cxgb4: Update IngPad and IngPack values (Sai Vemuri) [1439468]
-- [netdrv] cxgb4: avoid enabling napi twice to the same queue (Sai Vemuri) [1457993]
-- [netdrv] cxgb4: retrieve port information from firmware (Sai Vemuri) [1457987]
-- [netdrv] cxgb4: save tid while creating server filter (Sai Vemuri) [1451448]
-- [netdrv] qed: Don't log missing periodic stats by default (Harish Patil) [1456338]
-- [netdrv] qed: Fix error in the dcbx app meta data initialization (Harish Patil) [1456338]
-- [crypto] algif_skcipher - Add key check exception for cipher_null ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] algif_hash - Require setkey before accept(2) ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] hash - Add crypto_ahash_has_setkey ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] algif_skcipher - Add nokey compatibility path ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] af_alg - Add nokey compatibility path ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] af_alg - Fix socket double-free when accept fails ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] af_alg - Disallow bind/setkey/... after accept(2) ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] algif_skcipher - Require setkey before accept(2) ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [kernel] ptrace: fix fork event messages across pid namespaces ("Eric W. Biederman") [1458353]
-- [infiniband] rdma/cxgb4: Increase epd buff size for debug interface (Sai Vemuri) [1457999]
-- [infiniband] rdma/iser: Fix possible mr leak on device removal event (Sai Vemuri) [1457984]
-- [infiniband] rdma/iw_cxgb4: calculate t4_eq_status_entries properly (Sai Vemuri) [1458002]
-- [infiniband] iw_cxgb4: Guard against null cm_id in dump_ep/qp (Sai Vemuri) [1457403]
-
-* Mon Jun 12 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-680.el7]
-- [fs] buffer.c: call thaw_super during emergency thaw (Mateusz Guzik) [1375033]
-- [fs] block_dev.c: return the right error in thaw_bdev() (Mateusz Guzik) [1375033]
-- [fs] revert "xfs: fix bogus space reservation in xfs_iomap_write_allocate" (Bill O'Donnell) [1446484]
-- [hv] vmbus: Raise retry/wait limits in vmbus_post_msg() (Vitaly Kuznetsov) [1452009]
-- [md] raid1: ignore discard error (Nigel Croxon) [1435822]
-- [usb] ohci-pci: add qemu quirk (Gerd Hoffmann) [1301872]
-- [x86] boot/kaslr: Change the 'KASLR disabled' message from warning to debug printing (Baoquan He) [1458644]
-- [drm] nouveau/tmr: fully separate alarm execution/pending lists (Ben Skeggs) [1450742]
-- [drm] nouveau: enable autosuspend only when it'll actually be used (Ben Skeggs) [1450742]
-- [drm] nouveau: replace multiple open-coded runpm support checks with function (Ben Skeggs) [1450742]
-- [virt] kvm: fix spin_lock_init order on x86 (Luiz Capitulino) [1459739]
-- [acpi] nfit: Fix memory corruption/Unregister mce decoder on failure (Prarit Bhargava) [1448312]
-- [tools] perf trace: Add mmap alias for s390 (Jiri Olsa) [1436323 1347055]
-- [tools] perf test: Disable breakpoint signal tests for powerpc (Jiri Olsa) [1436323 1347055]
-- [netdrv] sfc-falcon: register proper netdevice_notifier (Jarod Wilson) [1389671]
-- [netdrv] mlx5: E-Switch, Correctly deal with inline mode on ConnectX-5 (Kamal Heib) [1456551]
-- [netdrv] vfio/pci: Add Intel XXV710 to hidden INTx devices (Stefan Assmann) [1458160]
-- [netdrv] pci: Add Intel XXV710 to broken INTx masking quirk (Stefan Assmann) [1458160]
-- [netdrv] cxgb4: Shutdown adapter if firmware times out or errors out (Sai Vemuri) [1385866]
-- [netdrv] cxgb4: Increase max number of tc u32 links (Sai Vemuri) [1385866]
-- [netdrv] cxgb4: Fix uld_send() for ctrl pkts (Sai Vemuri) [1385866]
-- [netdrv] cxgb4: add support for drop and redirect actions (Sai Vemuri) [1385866]
-- [netdrv] cxgb4: add support for offloading u32 filters (Sai Vemuri) [1385866]
-- [security] selinux: allow security_sb_clone_mnt_opts to enable/disable native labeling behavior (Scott Mayhew) [1454617]
-- [infiniband] target: Fix unknown fabric callback queue-full errors (Sai Vemuri) [1454788]
-- [infiniband] iscsi-target: Propigate queue_data_in + queue_status errors (Sai Vemuri) [1454788]
-- [infiniband] iser-target: Fix queue-full response handling (Sai Vemuri) [1454788]
-- [infiniband] iser-target: avoid posting a recv buffer twice (Sai Vemuri) [1454788]
-- [infiniband] ib/addr: Fix setting source address in addr6_resolve() (Paolo Abeni) [1414097]
-- [infiniband] avoid dereferencing uninitialized dst on error path (Paolo Abeni) [1414097]
-- [infiniband] call ipv6 route lookup via the stub interface (Paolo Abeni) [1414097]
-- [infiniband] ib/rxe: Fix kernel panic in send (Kamal Heib) [1459549]
-
-* Mon Jun 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-679.el7]
-- [scsi] kabi workaround for scsi_internal_device_block (Tomas Henzl) [1450206]
-- [scsi] mpt3sas: Avoid sleeping in interrupt context (Tomas Henzl) [1450206]
-- [scsi] scsi-mq: Wait for .queue_rq() if necessary (Tomas Henzl) [1450206]
-- [fs] nfsd: fix supported attributes for acl & labels (Scott Mayhew) [1449877]
-- [fs] nfsd4: fix null dereference on replay ("J. Bruce Fields") [1452242]
-- [fs] pnfs: Fix the check for requests in range of layout segment (Benjamin Coddington) [1452929]
-- [fs] vfs: fix locks_lock_file_wait() on overlayfs (Miklos Szeredi) [1456242]
-- [hv] hv_utils: fix TimeSync work on pre-TimeSync-v4 hosts (Vitaly Kuznetsov) [1447906]
-- [hv] hv_utils: drop .getcrosststamp() support from PTP driver (Vitaly Kuznetsov) [1447906]
-- [mm] mempolicy.c: fix error handling in set_mempolicy and mbind ("Bruno E. O. Meneguele") [1443541] {CVE-2017-7616}
-- [mm] shmem: fix shm fallocate() list corruption (Waiman Long) [1438389]
-- [md] raid1: prefer disk without bad blocks (Nigel Croxon) [1456741]
-- [dma] dmaengine: ioatdma: add BDX-EP PCI dev IDs (Xiaolong Wang) [1369330]
-- [drm] i915: Do not drop pagetables when empty (Lyude Paul) [1454339]
-- [drm] i915/gvt: not to restore in-context mmio (Paul Lai) [1448762]
-- [char] ipmi: create hardware-independent softdep for ipmi_devintf (Tony Camuso) [1456865]
-- [nvme] Correct NVMF enum values to match NVMe-oF rev 1.0 (David Milburn) [1455784]
-- [block] blk-mq: remove blk_mq_abort_requeue_list() (Ming Lei) [1445595]
-- [nvme] avoid to use blk_mq_abort_requeue_list() (Ming Lei) [1445595]
-- [nvme] use blk_mq_start_hw_queues() in nvme_kill_queues() (Ming Lei) [1445595]
-- [block] block new I/O just after queue is set as dying (Ming Lei) [1445595]
-- [block] rename blk_mq_freeze_queue_start() (Ming Lei) [1445595]
-- [block] add a read barrier in blk_queue_enter() (Ming Lei) [1445595]
-- [block] blk-mq: comment on races related with timeout handler (Ming Lei) [1445595]
-- [netdrv] net, virtio_net: replace the magic value (Jason Wang) [1450300]
-- [netdrv] ixgbe: fix incorrect status check (Ken Cox) [1452421]
-- [netdrv] ixgbe: add missing configuration for rate select 1 (Ken Cox) [1452421]
-- [netdrv] ixgbe: always call setup_mac_link for multispeed fiber (Ken Cox) [1452421]
-- [netdrv] ixgbe: add write flush when configuring CS4223/7 (Ken Cox) [1452421]
-- [netdrv] ixgbe: correct CS4223/7 PHY identification (Ken Cox) [1452421]
-- [netdrv] ath9k_htc: fix NULL-deref at probe (Stanislaw Gruszka) [1449094]
-- [netdrv] ath9k_htc: Add support of AirTies 1eda:2315 AR9271 device (Stanislaw Gruszka) [1449094]
-- [netdrv] mwifiex: pcie: fix cmd_buf use-after-free in remove/reset (Stanislaw Gruszka) [1449094]
-- [netdrv] rtlwifi: rtl8821ae: setup 8812ae RFE according to device type (Stanislaw Gruszka) [1449094]
-- [netdrv] brcmfmac: Ensure pointer correctly set if skb data location changes (Stanislaw Gruszka) [1449094]
-- [netdrv] brcmfmac: Make skb header writable before use (Stanislaw Gruszka) [1449094]
-- [netdrv] be2net: Update the driver version to 11.4.0.0 (Ivan Vecera) [1455768]
-- [netdrv] be2net: Fix UE detection logic for BE3 (Ivan Vecera) [1455768]
-- [netdrv] e1000e: Don't return uninitialized stats (Jarod Wilson) [1455721]
-- [infiniband] rdma/i40iw: Remove MSS change support (Stefan Assmann) [1448168]
-- [infiniband] ib/hfi1: Prevent kernel QP post send hard lockups (Alex Estrin) [1451917]
-- [infiniband] ib/hfi1: Protect the global dev_cntr_names and port_cntr_names (Alex Estrin) [1454919]
-
-* Mon Jun 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-678.el7]
-- [net] pending_confirm is not used anymore (Lance Richardson) [1450203]
-- [net] use dst_confirm_neigh for UDP, RAW, ICMP, L2TP (Lance Richardson) [1450203]
-- [net] add confirm_neigh method to dst_ops (Lance Richardson) [1450203]
-- [net] tcp: replace dst_confirm with sk_dst_confirm (Lance Richardson) [1450203]
-- [net] sctp: add dst_pending_confirm flag (Lance Richardson) [1450203]
-- [net] add dst_pending_confirm flag to skbuff (Lance Richardson) [1450203]
-- [net] sock: add sk_dst_pending_confirm flag (Lance Richardson) [1450203]
-- [net] macvlan: Fix performance issues with vlan tagged packets (Vlad Yasevich) [1289475]
-- [net] sctp: do not inherit ipv6_{mc|ac|fl}_list from parent (Florian Westphal) [1455609] {CVE-2017-8890 CVE-2017-9075 CVE-2017-9076 CVE-2017-9077}
-- [net] ipv6/dccp: do not inherit ipv6_mc_list from parent (Florian Westphal) [1455609] {CVE-2017-8890 CVE-2017-9075 CVE-2017-9076 CVE-2017-9077}
-- [net] dccp/tcp: do not inherit mc_list from parent (Florian Westphal) [1455609] {CVE-2017-8890 CVE-2017-9075 CVE-2017-9076 CVE-2017-9077}
-- [net] tcp: do not inherit fastopen_req from parent (Florian Westphal) [1455609] {CVE-2017-8890 CVE-2017-9075 CVE-2017-9076 CVE-2017-9077}
-- [netdrv] virtio_net: enable TSO/checksum offloads for Q-in-Q vlans (Eric Garver) [1423935]
-- [netdrv] be2net: Fix offload features for Q-in-Q packets (Eric Garver) [1423935]
-- [net] vlan: Fix tcp checksum offloads in Q-in-Q vlans (Eric Garver) [1423935]
-- [net] sched: act_mirred: Use passed lastuse argument (Ivan Vecera) [1455296]
-- [net] sched: act_mirred: allow statistic updates from offloaded actions (Ivan Vecera) [1455296]
-- [net] sctp: set new_asoc temp when processing dupcookie (Xin Long) [1450786]
-- [net] netfilter: conntrack: fix false CRC32c mismatch using paged skb (Davide Caratti) [1353218]
-- [net] ipv6: fix out of bound writes in __ip6_append_data() (Hangbin Liu) [1453057]
-- [net] skbuff: improve description of CHECKSUM_{COMPLETE, UNNECESSARY} (Davide Caratti) [1072503]
-- [net] openvswitch: more accurate checksumming in queue_userspace_packet() (Davide Caratti) [1072503]
-- [net] more accurate checksumming in validate_xmit_skb() (Davide Caratti) [1072503]
-- [net] use skb->csum_not_inet to identify packets needing crc32c (Davide Caratti) [1072503]
-- [net] introduce skb_crc32c_csum_help (Davide Caratti) [1072503]
-- [net] Elaborate on checksum offload interface description (Davide Caratti) [1072503]
-- [net] skbuff: add stub to help computing crc32c on SCTP packets (Davide Caratti) [1072503]
-- [net] ipv6: reorder ip6_route_dev_notifier after ipv6_dev_notf (Xin Long) [1450281]
-- [net] ipv6: initialize route null entry in addrconf_init() (Xin Long) [1450281]
-- [net] l2tp: hold tunnel socket when handling control frames in l2tp_ip and l2tp_ip6 (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] l2tp: fix address test in __l2tp_ip6_bind_lookup() (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] l2tp: fix lookup for sockets not bound to a device in l2tp_ip (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] l2tp: fix racy socket lookup in l2tp_ip and l2tp_ip6 bind() (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] l2tp: hold socket before dropping lock in l2tp_ip{, 6}_recv() (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] ipv6: lock socket in ip6_datagram_connect() (Florian Westphal) [1441554]
-- [net] l2tp: fix racy SOCK_ZAPPED flag check in l2tp_ip{, 6}_bind() (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] sched: cls: also reject deleting all filters when TCA_KIND present (Ivan Vecera) [1450137]
-- [net] sched: cls: allow for deleting all filters for given parent (Ivan Vecera) [1450137]
-- [net] sched: act_vlan: Add priority option (Ivan Vecera) [1450145]
-- [net] sched: indentation and other OCD stylistic fixes (Ivan Vecera) [1450145]
-
-* Fri Jun 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-677.el7]
-- [powerpc] fadump: update about offset where fadump is reserved (Gustavo Duarte) [1384941]
-- [powerpc] fadump: add a warning when 'fadump_reserve_mem=' is specified (Gustavo Duarte) [1384941]
-- [powerpc] fadump: update documentation about crashkernel parameter reuse (Gustavo Duarte) [1384941]
-- [powerpc] fadump: reuse crashkernel parameter for fadump memory reservation (Gustavo Duarte) [1384941]
-- [powerpc] fadump: remove dependency with CONFIG_KEXEC (Gustavo Duarte) [1384941]
-- [kernel] ia64: reuse append_elf_note() and final_note() functions (Gustavo Duarte) [1384941]
-- [kernel] crash: move crashkernel parsing and vmcore related code under CONFIG_CRASH_CORE (Gustavo Duarte) [1384941]
-- [kernel] sched/cputime: Fix NO_HZ_FULL getrusage() monotonicity regression (Aaron Tomlin) [1452621]
-- [kernel] sched/cputime: Guarantee stime + utime == rtime (Aaron Tomlin) [1452621]
-- [kernel] sched: Use swap() macro in scale_stime() (Aaron Tomlin) [1452621]
-- [kernel] sched, time: Fix build error with 64 bit cputime_t on 32 bit systems (Aaron Tomlin) [1452621]
-- [kernel] userns: Preserve bug compatibility on failure for chrome ("Eric W. Biederman") [1443482]
-- [kernel] ptrace: fix PTRACE_LISTEN race corrupting task->state (Oleg Nesterov) [1450683]
-- [x86] kvm: x86: Expose Intel VPOPCNTDQ feature to guest (Paul Lai) [1415961]
-- [x86] cpufeature: Add AVX512_VPOPCNTDQ feature (Paul Lai) [1415961]
-- [x86] kvm: x86: Expose Intel AVX512IFMA/AVX512VBMI/SHA features to guest (Paul Lai) [1415961]
-- [x86] cpufeatures: Enable new AVX512 cpu features (Paul Lai) [1415961]
-- [x86] kaslr: Use the right memcpy() implementation (Baoquan He) [1440928]
-- [x86] documentation/kernel-parameters.txt: Update 'memmap=' boot option description (Baoquan He) [1440928]
-- [x86] kaslr: Handle the memory limit specified by the 'memmap=' and 'mem=' boot options (Baoquan He) [1440928]
-- [x86] kaslr: Parse all 'memmap=' boot option entries (Baoquan He) [1440928]
-- [x86] boot/param: Move next_arg() function to lib/cmdline.c for later reuse (Baoquan He) [1440928]
-- [x86] params: handle quotes properly for values not of form foo="bar" (Baoquan He) [1440928]
-- [x86] efi: Correct ident mapping of efi old_map when kalsr enabled (Baoquan He) [1441185]
-- [x86] kaslr: Fix kexec kernel boot crash when KASLR randomization fails (Baoquan He) [1449443]
-- [x86] efi-bgrt: Fix kernel panic when mapping BGRT data (Gopal Tiwari) [1447685]
-- [x86] mark AMD Naples SP3 processors supported (David Arcari) [1455601]
-- [x86] set x86_model_id in early_identify_cpu for unsupported check (David Arcari) [1455601]
-- [s390] cpum_cf: use perf software context for hardware counters (Hendrik Brueckner) [1454881]
-- [perf] symbols: Accept symbols starting at address 0 (Jiri Olsa) [1140522]
-- [perf] tools: Be consistent on the type of map->symbols[] interator (Jiri Olsa) [1140522]
-
-* Fri Jun 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-676.el7]
-- [mm] hmm: workaround kABI breakage because of new migrate mode enum (Jerome Glisse) [1444991]
-- [mm] migrate: allow migrate_vma() to alloc new page on empty entry v2 (Jerome Glisse) [1444991]
-- [mm] migrate: support un-addressable ZONE_DEVICE page in migration v2 (Jerome Glisse) [1444991]
-- [mm] migrate: migrate_vma() unmap page from vma while collecting pages (Jerome Glisse) [1444991]
-- [mm] migrate: new memory migration helper for use with device memory v4 (Jerome Glisse) [1444991]
-- [mm] migrate: new migrate mode MIGRATE_SYNC_NO_COPY (Jerome Glisse) [1444991]
-- [mm] hmm/devmem: support device memory in CPU snapshot helpers (Jerome Glisse) [1444991]
-- [mm] hmm/devmem: dummy HMM device for ZONE_DEVICE memory v3 (Jerome Glisse) [1444991]
-- [mm] hmm/devmem: device memory hotplug using ZONE_DEVICE v4 (Jerome Glisse) [1444991]
-- [mm] private-memory: new type of ZONE_DEVICE for unaddressable memory v2 (Jerome Glisse) [1444991]
-- [mm] put_page: move ZONE_DEVICE page reference decrement v2 (Jerome Glisse) [1444991]
-- [mm] memory_hotplug: introduce add_pages (Jerome Glisse) [1444991]
-- [mm] hmm/mirror: device page fault handler (Jerome Glisse) [1444991]
-- [mm] hmm/mirror: helper to snapshot CPU page table v3 (Jerome Glisse) [1444991]
-- [mm] hmm/mirror: mirror process address space on device with HMM helpers v3 (Jerome Glisse) [1444991]
-- [mm] hmm: heterogeneous memory management (HMM for short) v3 (Jerome Glisse) [1444991]
-- [mm] hmm: heterogeneous memory management documentation (Jerome Glisse) [1444991]
-- [mm] hmm: remove old code to prepare for lastest patchset backport (Jerome Glisse) [1444991]
-
-* Mon May 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-675.el7]
-- [mm] hugetlbfs: fix offset overflow in hugetlbfs mmap (Andrea Arcangeli) [1455315]
-- [mm] hugetlbfs: initialize shared policy as part of inode allocation (Andrea Arcangeli) [1455315]
-- [mm] hugetlb: don't call region_abort if region_chg fails (Andrea Arcangeli) [1455315]
-- [mm] ksm: optimize refile of stable_node_dup at the head of the chain (Andrea Arcangeli) [1447745]
-- [mm] ksm: swap the two output parameters of chain/chain_prune (Andrea Arcangeli) [1447745]
-- [mm] ksm: cleanup stable_node chain collapse case (Andrea Arcangeli) [1447745]
-- [mm] ksm: fix use after free with merge_across_nodes = 0 (Andrea Arcangeli) [1447745]
-- [mm] vmscan: Do not wait for page writeback for GFP_NOFS allocations (Rafael Aquini) [1433103]
-- [mm] vmscan: disable memcg direct reclaim stalling if cgroup writeback support is in use (Rafael Aquini) [1433103]
-- [mm] add private lock to serialize memory hotplug operations (Jeff Moyer) [1438579]
-- [mm] validate device_hotplug is held for memory hotplug (Jeff Moyer) [1438579]
-- [mm] devm_memremap_pages: hold device_hotplug lock over mem_hotplug_{begin, done} (Jeff Moyer) [1438579]
-- [mm] fix devm_memremap_pages crash, use mem_hotplug_{begin, done} (Jeff Moyer) [1438579]
-- [mm] hotplug: fix concurrent memory hot-add deadlock (Jeff Moyer) [1438579]
-- [mm] mem-hotplug: implement get/put_online_mems (Jeff Moyer) [1438579]
-- [mm] cpu/mem hotplug: add try_online_node() for cpu_up() (Jeff Moyer) [1438579]
-- [mm] x86/mm/hotplug: Don't remove PGD entries in remove_pagetable() (Jeff Moyer) [1438579]
-- [x86] mm: Tighten x86 /dev/mem with zeroing reads ("Bruno E. O. Meneguele") [1449677] {CVE-2017-7889}
-- [x86] mce/amd: Give a name to MCA bank 3 when accessed with legacy MSRs (David Arcari) [1454807]
-- [x86] boot/kaslr: Disable KASLR by default (Baoquan He) [1449762]
-- [x86] microcode/intel: access the initrd at the relocated address (Pingfan Liu) [1448767]
-- [x86] toshiba_acpi: Do not register vendor backlight when acpi_video bl is available (Jeremy McNicoll) [1305617]
-- [drm] i915: don't rcu-sync from shrinker (Rob Clark) [1443028]
-- [pci] msi: Stop disabling MSI/MSI-X in pci_device_shutdown() (Prarit Bhargava) [1207693]
-- [kernel] workqueue: schedule WORK_CPU_UNBOUND work on wq_unbound_cpumask CPUs (Waiman Long) [1452675]
-- [kernel] workqueue: handle NUMA_NO_NODE for unbound pool_workqueue (Waiman Long) [1452675]
-
-* Mon May 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-674.el7]
-- [target] Add target_core_user.h to included headers (Andy Grover) [1451522]
-- [scsi] qedi: Fix endpoint NULL panic during recovery (Chad Dupuis) [1452748]
-- [scsi] qedi: set max_fin_rt default value (Chad Dupuis) [1452748]
-- [scsi] qedi: Set firmware tcp msl timer value (Chad Dupuis) [1452748]
-- [scsi] qedi: Fix endpoint NULL panic in qedi_set_path (Chad Dupuis) [1452748]
-- [scsi] qedi: Set dma_boundary to 0xfff (Chad Dupuis) [1452748]
-- [scsi] qedi: Correctly set firmware max supported BDs (Chad Dupuis) [1452748]
-- [scsi] qedi: Fix bad pte call trace when iscsiuio is stopped (Chad Dupuis) [1452748]
-- [fs] nfs: Fix use after free in write error path (Steve Dickson) [1441883]
-- [fs] fs: return -EOPNOTSUPP if clone is not supported ("J. Bruce Fields") [1449156]
-- [fs] btrfs: use linux/sizes.h to represent constants (Bill O'Donnell) [1451546]
-- [fs] cifs: Do not send echoes before Negotiate is complete (Sachin Prabhu) [1452060]
-- [md] raid1: Use a new variable to count flighting sync requests (Xiao Ni) [1379764]
-- [md] raid1: handle flush request correctly (Xiao Ni) [1379764]
-- [md] raid1: fix a use-after-free bug (Xiao Ni) [1379764]
-- [md] raid1: avoid unnecessary spin locks in I/O barrier code (Xiao Ni) [1379764]
-- [md] raid1: a new I/O barrier implementation to remove resync window (Xiao Ni) [1379764]
-- [md] raid1: Refactor raid1_make_request (Xiao Ni) [1379764]
-- [md] handle read-only member devices better (Nigel Croxon) [1442776]
-- [base] pm / sleep: prohibit devices probing during suspend/hibernation (Don Zickus) [1184229]
-- [base] drivercore: Make probe deferral more quiet (Don Zickus) [1184229]
-- [base] drivercore: deferral race condition fix (Don Zickus) [1184229]
-- [nvme] nvme-rdma: Support ctrl_loss_tmo (David Milburn) [1452321 1442735]
-- [nvme] nvme-fabrics: Allow ctrl loss timeout configuration (David Milburn) [1452321 1442735]
-- [nvme] nvme-rdma: get rid of local reconnect_delay (David Milburn) [1452321 1442735]
-- [nvme] nvmet-rdma: Fix a possible uninitialized variable dereference (David Milburn) [1437723]
-- [block] fix bio_will_gap() for first bvec with offset (Ming Lei) [1443807]
-- [tools] power turbostat: denverton: use HW CC1 counter, skip C3, C7 (Prarit Bhargava) [1447265]
-- [tools] power turbostat: bug fixes to --add, --show/--hide features (Prarit Bhargava) [1447265]
-- [tools] power turbostat: Add --show and --hide parameters (Prarit Bhargava) [1447265]
-- [tools] power turbostat: fix bugs in --add option (Prarit Bhargava) [1447265]
-- [netdrv] bonding: fix randomly populated arp target array (Jarod Wilson) [1450184]
-- [netdrv] bonding: fix accounting of active ports in 3ad (Jarod Wilson) [1368265]
-- [netdrv] vmxnet3: ensure that adapter is in proper state during force_close (Neil Horman) [1449021]
-- [netdrv] tg3: don't clear stats while tg3_close (Jonathan Toppins) [1455222]
-- [netdrv] tg3: Fix race condition in tg3_get_stats64() (Jonathan Toppins) [1455222]
-- [infiniband] ib/ipoib: add get_link_ksettings in ethtool (Kamal Heib) [1450970]
-- [infiniband] ib/device: Convert ib-comp-wq to be CPU-bound (Kamal Heib) [1437727]
-
-* Fri May 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-673.el7]
-- [drm] nouveau/kms/nv50: skip core channel cursor update on position-only chang (Ben Skeggs) [1451524]
-- [drm] nouveau/kms/nv50: fix source-rect-only plane updates (Ben Skeggs) [1451524]
-- [drm] nouveau/kms: Increase max retries in scanout position queries (Ben Skeggs) [1451524]
-- [drm] nouveau/therm: remove ineffective workarounds for alarm bugs (Ben Skeggs) [1449338]
-- [drm] nouveau/tmr: avoid processing completed alarms when adding a new one (Ben Skeggs) [1449338]
-- [drm] nouveau/tmr: fix corruption of the pending list when rescheduling an ala (Ben Skeggs) [1449338]
-- [drm] nouveau/tmr: handle races with hw when updating the next alarm time (Ben Skeggs) [1449338]
-- [drm] nouveau/tmr: ack interrupt before processing alarms (Ben Skeggs) [1449338]
-- [drm] nouveau/fb/ram/gf100-: remove 0x10f200 read (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gf100-: Fix 32 bit wraparound in new ram detection (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gf100-: rework ram detection (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gm200: split ram implementation from gm107 (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gf108: split implementation from gf100 (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gf100-: modify constructors to allow more customisation (Ben Skeggs) [1371629]
-- [media] usb: uvc: remove unnecessary & operation (Torez Smith) [1444758]
-- [media] usb: uvc: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1444758]
-- [media] uvcvideo: Correct speed testing (Torez Smith) [1444758]
-- [media] uvcvideo: Disable hardware timestamps by default (Torez Smith) [1444758]
-- [media] uvcvideo: Fix incorrect bandwidth with Chicony device 04f2:b50b (Torez Smith) [1444758]
-- [media] uvcvideo: Set buffer field to V4L2_FIELD_NONE (Torez Smith) [1444758]
-- [media] v4l: uvcvideo: Fix buffer completion size check (Torez Smith) [1444758]
-- [media] v4l2: uvcvideo: Allow using larger buffers (Torez Smith) [1444758]
-- [media] uvc: fix sparse warning (Torez Smith) [1444758]
-- [media] uvcvideo: Fix clock param realtime setting (Torez Smith) [1444758]
-- [media] uvcvideo: Fix marking buffer erroneous in case of FID toggling (Torez Smith) [1444758]
-- [media] uvcvideo: Do not use usb_set_interface on bulk EP (Torez Smith) [1444758]
-- [media] uvcvideo: Update uvc_endpoint_max_bpi to handle USB_SPEED_WIRELESS devices (Torez Smith) [1444758]
-- [media] uvc/lirc_serial: Fix some warnings on parisc arch (Torez Smith) [1444758]
-- [sound] alsa: hda - Simplify bound-beep mute control for ALC268 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - No loopback on ALC299 codec (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Add Dual Codecs support for Lenovo P520/420 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Use a helper function for renaming kctl names (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Support Gigabyte Gaming board with dual Realtek codecs (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Fix headset microphone detection for ASUS N551 and N751 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - fix a problem for lineout on a Dell AIO machine (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Adding a group of pin definition to fix headset problem (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Fix speaker support for Asus AiO ZN270IE (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Fix headset mic and speaker on Asus X441SA/X441UV (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Fix headset and mic on several Asus laptops with ALC256 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Fix headset mic on several Asus laptops with ALC255 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Add support for Acer Aspire E5-475 headset mic (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Add subwoofer support for Dell Inspiron 17 7000 Gaming (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Fix micmute hotkey problem for a lenovo AIO machine (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Allow to enable/disable vmaster build explicitly (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - A new flag to enforce prefix to each pin (Jaroslav Kysela) [1422328]
-
-* Fri May 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-672.el7]
-- [netdrv] bnxt_en: Call bnxt_dcb_init() after getting firmware DCBX configuration (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Check status of firmware DCBX agent before setting DCB_CAP_DCBX_HOST (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: allocate enough space for ->ntp_fltr_bmap (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Check the FW_LLDP_AGENT flag before allowing DCBX host agent (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Update firmware interface spec to 1.7.6.2 (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Fix VF attributes reporting (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Cap the msix vector with the max completion rings (Jonathan Toppins) [1451915]
-- [netdrv] mlx5: E-Switch, Don't allow changing inline mode when flows are configured (Jonathan Toppins) [1446112]
-- [netdrv] mlx5e: Change the TC offload rule add/del code path to be per NIC or E-Switch (Jonathan Toppins) [1446112]
-- [netdrv] mlx5: Add missing entries for set/query rate limit commands (Jonathan Toppins) [1446112]
-- [netdrv] mlx5: E-Switch, Enlarge the FDB size for the switchdev mode (Jonathan Toppins) [1446117]
-- [netdrv] mlx5e: Avoid wrong identification of rules on deletion (Jonathan Toppins) [1446119]
-- [netdrv] mlx5e: Support adding ingress tc rule when egress device flag is set (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Disable preemption when doing TC statistics upcall (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Support TC encapsulation offloads with upper devices (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Fix a -Wmaybe-uninitialized warning (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Properly handle FW errors while adding TC rules (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Fix kbuild warnings for uninitialized parameters (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Set inline mode requirements for matching on IP fragments (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Properly get address type of encapsulation IP headers (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: TC ipv4 tunnel encap offload error flow fixes (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Warn when rejecting offload attempts of IP tunnels (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Properly handle offloading of source udp port for IP tunnels (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Offload TC matching on packets being IP fragments (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Remove flow encap entry in the correct place (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Refactor tc del flow to accept mlx5e_tc_flow instance (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Remove redundant hashtable lookup in configure flower (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Correct cleanup order when deleting offloaded TC rules (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Enforce min inline mode when offloading flows (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Support HW (offloaded) and SW counters for SRIOV switchdev mode (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add basic TC tunnel set action for SRIOV offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC tunnel release action for SRIOV offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Support encap id when setting new steering entry (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Add creation flags when adding new flow table (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Handle matching on vlan priority for offloaded TC rules (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add tc support for FWD rule with counter (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Add multi dest support (Jonathan Toppins) [1383217]
-- [netdrv] sched: tc_mirred: Rename public predicates 'is_tcf_mirred_redirect' and 'is_tcf_mirred_mirror' (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: shut up maybe-uninitialized warning (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC vlan match parsing (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC vlan action for SRIOV offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Put elements related to offloaded TC rule in one struct (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: E-Switch, Set the vport when registering the uplink rep (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Use correct flow dissector key on flower offloading (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC offload support for the VF representors netdevice (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC HW support for FDB (SRIOV e-switch) offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC drop and mirred/redirect action parsing for SRIOV offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Adjustments in the TC offload code towards reuse for SRIOV (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Offload TC flow counters only when supported (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Refactor mlx5_add_flow_rule (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Hardware offloaded flower filter statistics support (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Refactor mlx5e flow steering structs (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Add user chosen levels when allocating flow tables (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Support offload cls_flower with skbedit mark action (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Support offload cls_flower with drop action (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Improve set features ndo resiliency (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Introduce tc offload support (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: revert commented out flow dissector changes (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Add devlink interface (Jonathan Toppins) [1383217]
-- [net] net_sched: act_vlan: add helper inlines to access tcf_vlan info (Jonathan Toppins) [1383217]
-
-* Mon May 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-671.el7]
-- [scsi] smartpqi: bump driver version for RHEL-7.4 (Don Brace) [1441396]
-- [scsi] smartpqi: ensure controller is in SIS mode at init (Don Brace) [1441396]
-- [scsi] smartpqi: enhance kdump (Don Brace) [1441396]
-- [scsi] lpfc: Fix scsi task management error message (Maurizio Lombardi) [1451022]
-- [scsi] lpfc: Fix Express lane queue creation (Maurizio Lombardi) [1451022]
-- [scsi] lpfc: correct rdp diag portnames (Maurizio Lombardi) [1451022]
-- [scsi] lpfc: Correct WQ creation for pagesize (Maurizio Lombardi) [1451022]
-- [net] mac80211: reject ToDS broadcast data frames (Stanislaw Gruszka) [1449091]
-- [net] mac80211: fix MU-MIMO follow-MAC mode (Stanislaw Gruszka) [1449091]
-- [net] mac80211: unconditionally start new netdev queues with iTXQ support (Stanislaw Gruszka) [1449091]
-- [net] cfg80211: check rdev resume callback only for registered wiphy (Stanislaw Gruszka) [1449091]
-- [netdrv] iwlwifi: mvm: support ibss in dqa mode (Stanislaw Gruszka) [1449091]
-- [netdrv] iwlwifi: mvm: writing zero bytes to debugfs causes a crash (Stanislaw Gruszka) [1449091]
-- [netdrv] iwlwifi: mvm: fix accessing fw_id_to_mac_id (Stanislaw Gruszka) [1449091]
-- [net] nl80211: fix dumpit error path RTNL deadlocks (Stanislaw Gruszka) [1449091]
-- [netdrv] ath10k: fix incorrect wlan_mac_base in qca6174_regs (Stanislaw Gruszka) [1449091]
-- [powerpc] kvm: ppc: book 3s: xics: Don't lock twice when checking for resend (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book 3s: xics: Implement ICS P/Q states (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Counters for passthrough IRQ stats (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Set server for passed-through interrupts (David Gibson) [1430371]
-- [powerpc] opal: Add real mode call wrappers (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Update irq stats for IRQs handled in real mode (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Handle passthrough interrupts in guest (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Convert kvmppc_read_intr to a C function (David Gibson) [1430371]
-- [powerpc] Add simple cache inhibited MMIO accessors (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Enable IRQ bypass (David Gibson) [1430371]
-- [powerpc] kvm: ppc: select IRQ_BYPASS_MANAGER (David Gibson) [1430371]
-- [powerpc] powernv: Provide facilities for EOI, usable from real mode (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Introduce kvmppc_passthru_irqmap (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book 3s: xics: Fix potential issue with duplicate IRQ resends (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book 3s: xics: correct the real mode ICP rejecting counter (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book 3s: xics cleanup: remove XICS_RM_REJECT (David Gibson) [1430371]
-- [powerpc] 64: Fix race condition in setting lock bit in idle/wakeup code (David Gibson) [1430371]
-- [powerpc] powernv: Rename idle_power7.S to idle_book3s.S (David Gibson) [1430371]
-
-* Fri May 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-670.el7]
-- [fs] NFS append COMMIT after synchronous COPY (Steve Dickson) [1445418]
-- [fs] nfs: Fix O_DIRECT verifier problems (Steve Dickson) [1445418]
-- [fs] nfsv4: Fix reboot recovery in copy offload (Steve Dickson) [1445418]
-- [fs] nfsv4.2: Fix writeback races in nfs4_copy_file_range (Steve Dickson) [1445418]
-- [fs] nfs: Ensure we reset the write verifier 'committed' value on resend (Steve Dickson) [1445418]
-- [fs] nfs: Cache aggressively when file is open for writing (Scott Mayhew) [1415203]
-- [fs] nfs: Don't flush caches for a getattr that races with writeback (Scott Mayhew) [1415203]
-- [fs] super.c: fix race between freeze_super() and thaw_super() (Brian Foster) [1383739]
-- [md] dm space map disk: fix some book keeping in the disk space map (Mike Snitzer) [1450419]
-- [md] dm thin metadata: call precommit before saving the roots (Mike Snitzer) [1450419]
-- [usb] revert "xhci: Workaround to get Intel xHCI reset working more reliably" (Torez Smith) [1376639]
-- [pci] Add ACS quirk for Intel Union Point (Myron Stowe) [1449796]
-- [drm] virtio: fix virtio_gpu_cursor_formats (Laurent Vivier) [1436557]
-- [drm] virtio: fix virtio_gpu_mode_dumb_create (Laurent Vivier) [1436960]
-- [drm] virtio: add virtio_gpu_translate_format (Laurent Vivier) [1436960]
-- [x86] kvm: x86: lower default for halt_poll_ns (Paolo Bonzini) [1365428]
-- [x86] kvm: nvmx: initialize PML fields in vmcs02 (Paolo Bonzini) [1440022]
-- [x86] kvm: nvmx: do not leak PML full vmexit to L1 (Paolo Bonzini) [1440022]
-- [scsi] virtio_scsi: Always try to read VPD pages (David Gibson) [1436675]
-- [tools] perf annotate s390: Fix perf annotate error -95 (Jiri Olsa) [1443651]
-- [vhost] tun: rx batching (Wei Xu) [1401433]
-- [vhost] tun: tx batching (Wei Xu) [1401433]
-- [vhost] better detection of available buffers (Wei Xu) [1401433]
-- [vhost] tun: Use netif_receive_skb instead of netif_rx (Wei Xu) [1401433]
-- [netdrv] mlx5e: Fix loopback selftest (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: remove IEEE/CEE mode check when setting DCBX mode (Jonathan Toppins) [1448565]
-- [netdrv] mlx5: Don't save PCI state when PCI error is detected (Jonathan Toppins) [1448565]
-- [netdrv] mlx5: Fix create autogroup prev initializer (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Fix wrong CQE decompression (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Update MPWQE stride size when modifying CQE compress state (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Fix broken CQE compression initialization (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Do not reduce LRO WQE size when not using build_skb (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Register/unregister vport representors on interface attach/detach (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: s390 system compilation fix (Jonathan Toppins) [1448565]
-- [netdrv] bnx2x: Align RX buffers (Michal Schmidt) [1440648]
-- [netdrv] mlx5: Avoid dereferencing uninitialized pointer (Kamal Heib) [1450735]
-- [netdrv] i40e: reduce wait time for adminq command completion (Stefan Assmann) [1447212]
-- [netdrv] xen-netfront: avoid crashing on resume after a failure in talk_to_netback() (Vitaly Kuznetsov) [1447293]
-- [netdrv] cxgb4: avoid disabling FEC by default (Sai Vemuri) [1449482]
-- [netdrv] hv_netvsc: change netvsc device default duplex to FULL (Vitaly Kuznetsov) [1450371]
-- [powerpc] kprobe: Fix oops when kprobed on 'stdu' instruction (Pratyush Anand) [1448286]
-- [powerpc] mm: Ensure IRQs are off in switch_mm() (David Gibson) [1437794]
-- [infiniband] ib/srp: Fix race conditions related to task management (Don Dutile) [1444155]
-- [infiniband] ib/srp: Avoid that duplicate responses trigger a kernel bug (Don Dutile) [1444155]
-- [infiniband] ib/srp: Avoid using IB_MR_TYPE_SG_GAPS (Don Dutile) [1444155]
-- [infiniband] ib/qib, ib/hfi1: Fix MR reference count leak on write with immediate (Don Dutile) [1366458]
-- [infiniband] ib/hfi1: Defer setting VL15 credits to link-up interrupt (Alex Estrin) [1451290]
-
-* Thu May 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-669.el7]
-- [md] dm cache metadata: fail operations if fail_io mode has been established (Mike Snitzer) [1448904]
-- [md] dm cache: handle kmalloc failure allocating background_tracker struct (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: don't do any writebacks unless IDLE (Mike Snitzer) [1450483]
-- [md] dm cache: simplify the IDLE vs BUSY state calculation (Mike Snitzer) [1450483]
-- [md] dm cache: track all IO to the cache rather than just the origin device's IO (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: stop preemptively demoting blocks (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: put newly promoted entries at the top of the multiqueue (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: be more aggressive about triggering a writeback (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: only demote entries in bottom half of the clean multiqueue (Mike Snitzer) [1450483]
-- [md] dm cache: fix incorrect 'idle_time' reset in IO tracker (Mike Snitzer) [1450483]
-- [acpi] button: Do not propagate wakeup-from-suspend events (Lenny Szubowicz) [1246944]
-- [acpi] button: fix button driver compile error when CONFIG_PM_SLEEP is undefined (Lenny Szubowicz) [1246944]
-- [s390] dasd: allow 0 for path_threshold attribute (Hendrik Brueckner) [1447738]
-- [s390] dasd: suppress command reject error for query host access command (Hendrik Brueckner) [1440709]
-- [s390] dasd: check if query host access feature is supported (Hendrik Brueckner) [1440709]
-- [x86] mm: Fix boot crash caused by incorrect loop count calculation in sync_global_pgds() (Baoquan He) [1440196]
-- [x86] efi: Consolidate region mapping logic (Bhupesh Sharma) [1446102]
-- [x86] efi: Map RAM into the identity page table for mixed mode (Bhupesh Sharma) [1446102]
-- [powerpc] mm: Add support for runtime configuration of ASLR limits (Bhupesh Sharma) [1412802]
-- [mm] aslr: use get_random_long() (Bhupesh Sharma) [1412802]
-- [kernel] char: random: add get_random_long() (Bhupesh Sharma) [1412802]
-- [x86] mm: support ARCH_MMAP_RND_BITS (Bhupesh Sharma) [1412802]
-- [mm] mmap: add new /proc tunable for mmap_base ASLR (Bhupesh Sharma) [1412802]
-- [x86] use simpler API for random address requests (Bhupesh Sharma) [1412802]
-- [kernel] random: simplify API for random address requests (Bhupesh Sharma) [1412802]
-- [kernel] powerpc: Wire up sys_seccomp(), sys_getrandom() and sys_memfd_create() (Herbert Xu) [1432218]
-- [kernel] s390: wire up seccomp and getrandom syscalls (Herbert Xu) [1432218]
-- [netdrv] mlx4_en: Change the error print to debug print (Kamal Heib) [1334054]
-- [netdrv] nfp: add missing .ndo_size to net_device_ops structure (John Linville) [1449381]
-- [netdrv] enic: Add missing ndo_size param to net_device_ops struct (Stefan Assmann) [1449376]
-- [netdrv] aquantia: Fix "ethtool -S" crash when adapter down (David Arcari) [1446250]
-- [netdrv] cxgb4: Add missing ndo_size param to net_device_ops struct (Don Dutile) [1449379]
-- [netdrv] fjes: Do not load fjes driver if extended socket device is not power on (Yasuaki Ishimatsu) [1436380]
-- [netdrv] fjes: Do not load fjes driver if system does not have extended socket device (Yasuaki Ishimatsu) [1436380]
-
-* Tue May 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-668.el7]
-- [net] ethtool: remove unused __ethtool_get_settings (Ivan Vecera) [1449330]
-- [net] core: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [net] sysfs: Print link speed as signed integer (Ivan Vecera) [1449330]
-- [net] 8021q: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [scsi] fcoe: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [net] team: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [net] macvlan: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [net] sched: actions: allocate act cookie early (Ivan Vecera) [1447674]
-- [net] sched: actions: do not overwrite status of action creation (Ivan Vecera) [1447674]
-- [net] sched: actions: Add support for user cookies (Ivan Vecera) [1447674]
-- [net] netlink: Add nla_memdup() to wrap kmemdup() use on nlattr (Ivan Vecera) [1447674]
-- [net] sched: act_tunnel_key: Fix setting UDP dst port in metadata under IPv6 (Ivan Vecera) [1445398]
-- [net] sched: act_tunnel_key: Add UDP dst port option (Ivan Vecera) [1445398]
-- [net] dst: Add dst port to dst_metadata utility functions (Ivan Vecera) [1445398]
-- [net] sched: act_tunnel_key: add helper inlines to access tcf_tunnel_key (Ivan Vecera) [1445398]
-- [net] sched: act_tunnel_key: Remove rcu_read_lock protection (Ivan Vecera) [1445398]
-- [net] sched: Introduce act_tunnel_key (Ivan Vecera) [1445398]
-- [net] vxlan: do not output confusing error message (Jiri Benc) [1445054]
-- [net] vxlan: correctly handle ipv6.disable module parameter (Jiri Benc) [1445054]
-- [net] sched: actions: aggregate dumping of actions timeinfo (Ivan Vecera) [1442088]
-- [net] sched: actions: introduce timestamp for firsttime use (Ivan Vecera) [1442088]
-- [net] sched: actions: use tcf_lastuse_update for consistency (Ivan Vecera) [1442088]
-- [net] sched: actions: policer missing timestamp processing (Ivan Vecera) [1442088]
-- [net] sched: align nlattr properly when needed (Ivan Vecera) [1442088]
-- [net] ipvs: explicitly forbid ipv6 service/dest creation if ipv6 mod is disabled (Paolo Abeni) [1439235]
-- [net] ipv6: implement ipv6_mod_enabled (Paolo Abeni) [1439235]
-
-* Tue May 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-667.el7]
-- [fs] sunrpc: fix refcounting problems with auth_gss messages (Steve Dickson) [1406925]
-- [fs] sunrpc: allow for upcalls for same uid but different gss service (Steve Dickson) [1406925]
-- [fs] nfs: move rw_mode to nfs_pageio_header (Benjamin Coddington) [1441370]
-- [fs] nfs: move nfs_pgarray_set() to open code (Benjamin Coddington) [1441370]
-- [fs] nfs: Use GFP_NOIO for two allocations in writeback (Benjamin Coddington) [1441370]
-- [fs] nfsd: move blocked lock handling under a dedicated spinlock (Benjamin Coddington) [1377710]
-- [fs] nfsd: set the MAY_NOTIFY_LOCK flag in OPEN replies (Benjamin Coddington) [1377710]
-- [fs] nfsd: add a LRU list for blocked locks (Benjamin Coddington) [1377710]
-- [fs] nfsd: have nfsd4_lock use blocking locks for v4.1+ locks (Benjamin Coddington) [1377710]
-- [fs] nfsd: plumb in a CB_NOTIFY_LOCK operation (Benjamin Coddington) [1377710]
-- [fs] nfsd: Get reference of lockowner when coping file_lock (Benjamin Coddington) [1377710]
-- [fs] nfsd: New helper nfs4_get_stateowner() for atomic_inc sop reference (Benjamin Coddington) [1377710]
-- [fs] locks: Copy fl_lmops information for conflock in locks_copy_conflock() (Benjamin Coddington) [1377710]
-- [fs] locks: defer freeing locks in locks_delete_lock until after i_lock has been dropped (Benjamin Coddington) [1377710]
-- [fs] locks: don't reuse file_lock in __posix_lock_file (Benjamin Coddington) [1377710]
-- [fs] locks: New ops in lock_manager_operations for get/put owner (Benjamin Coddington) [1377710]
-- [fs] locks: Rename __locks_copy_lock() to locks_copy_conflock() (Benjamin Coddington) [1377710]
-- [fs] nfs: allow blocking locks to be awoken by lock callbacks (Benjamin Coddington) [1377710]
-- [fs] nfs: move nfs4 lock retry attempt loop to a separate function (Benjamin Coddington) [1377710]
-- [fs] nfs: move nfs4_set_lock_state call into caller (Benjamin Coddington) [1377710]
-- [fs] nfs: add handling for CB_NOTIFY_LOCK in client (Benjamin Coddington) [1377710]
-- [fs] nfs: track whether server sets MAY_NOTIFY_LOCK flag (Benjamin Coddington) [1377710]
-- [fs] nfs: add a new NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK constant (Benjamin Coddington) [1377710]
-- [fs] nfs: use safe, interruptible sleeps when waiting to retry LOCK (Benjamin Coddington) [1377710]
-- [fs] nfs: eliminate pointless and confusing do_vfs_lock wrappers (Benjamin Coddington) [1377710]
-- [fs] nfs: the length argument to read_buf should be unsigned (Benjamin Coddington) [1377710]
-- [fs] Move locks API users to locks_lock_inode_wait() (Benjamin Coddington) [1377710]
-- [fs] locks: introduce locks_lock_inode_wait() (Benjamin Coddington) [1377710]
-- [scsi] lpfc: Fix panic on BFS configuration (Maurizio Lombardi) [1443116]
-- [scsi] lpfc: The lpfc driver does not issue RFF_ID and RFT_ID in the correct sequence (Ewan Milne) [1430272]
-
-* Thu May 11 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-666.el7]
-- [i2c] piix4: Request the SMBUS semaphore inside the mutex (David Arcari) [1446660]
-- [i2c] piix4: Fix request_region size (David Arcari) [1446660]
-- [i2c] piix4: Avoid race conditions with IMC (David Arcari) [1446660]
-- [i2c] piix4: Pre-shift the port number (David Arcari) [1446660]
-- [i2c] piix4: Always use the same type for port (David Arcari) [1446660]
-- [i2c] piix4: Support alternative port selection register (David Arcari) [1446660]
-- [i2c] piix4: don't regress on bus names (David Arcari) [1446660]
-- [i2c] piix4: Fully initialize SB800 before it is registered (David Arcari) [1446660]
-- [i2c] piix4: Fix SB800 locking (David Arcari) [1446660]
-- [i2c] piix4: remove unneeded assignments (David Arcari) [1446660]
-- [i2c] piix4: Add adapter port name support for SB800 chipset (David Arcari) [1446660]
-- [i2c] piix4: Add support for multiplexed main adapter in SB800 (David Arcari) [1446660]
-- [i2c] piix4: Convert piix4_main_adapter to array (David Arcari) [1446660]
-- [i2c] i2c-piix4: Use Macro for AMD CZ SMBus device ID (David Arcari) [1446660]
-- [i2c] delete non-required instances of include <linux/init.h> (David Arcari) [1446660]
-- [i2c] piix4: Standardize log messages (David Arcari) [1446660]
-- [i2c] piix4: Use different message for AMD Auxiliary SMBus Controller (David Arcari) [1446660]
-- [i2c] piix4: Add support for AMD ML and CZ SMBus changes (David Arcari) [1446660]
-- [i2c] piix4: Add support for secondary SMBus on AMD SB800 and AMD FCH chipsets (David Arcari) [1446660]
-- [hwmon] (jc42) Add I2C_CLASS_HWMON to detection class (David Arcari) [1446660]
-- [hwmon] (jc42) Add support for Microchip MCP9808 temperature sensor (David Arcari) [1446660]
-- [hwmon] (jc42) Add support for additional IDT temperature sensors (David Arcari) [1446660]
-- [hwmon] (jc42) Allow negative hysteresis temperatures (David Arcari) [1446660]
-- [hwmon] (jc42) Fix integer overflow when writing hysteresis value (David Arcari) [1446660]
-- [hwmon] (jc42) Fix integer overflow (David Arcari) [1446660]
-- [hwmon] (jc42) Use sign_extend32 for sign extension (David Arcari) [1446660]
-- [hwmon] (jc42) Add support for STTS2004 and AT30TSE004 (David Arcari) [1446660]
-- [hwmon] (jc42) Convert function macros into functions (David Arcari) [1446660]
-- [hwmon] (jc42) Rearrange code to avoid forward declarations (David Arcari) [1446660]
-- [hwmon] (jc42) fix coccinelle warnings (David Arcari) [1446660]
-- [hwmon] (jc42) Convert to use devm_hwmon_device_register_with_groups (David Arcari) [1446660]
-
-* Wed May 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-665.el7]
-- [scsi] qla2xxx: Allow vref count to timeout on vport delete (Himanshu Madhani) [1441897]
-- [vfio] type1: Reduce repetitive calls in vfio_pin_pages_remote() (Alex Williamson) [1438403]
-- [vfio] type1: Prune vfio_pin_page_external() (Alex Williamson) [1438403]
-- [vfio] type1: Remove locked page accounting workqueue (Alex Williamson) [1438403]
-- [acpi] acpica: tables: Update FADT handling (Lenny Szubowicz) [1411246]
-- [acpi] acpica: acpi 6.0: Add changes for FADT table (Lenny Szubowicz) [1411246]
-- [misc] vmci: Use 32bit atomics for queue headers on X86_32 (Cathy Avery) [1437109]
-- [misc] vmci: Guard against overflow in queue pair allocation (Cathy Avery) [1437109]
-- [misc] vmci: Check userland-provided datagram size (Cathy Avery) [1437109]
-- [misc] vmci: Fix two UVA mapping bugs (Cathy Avery) [1437109]
-- [misc] vmci: integer overflow in vmci_datagram_dispatch() (Cathy Avery) [1437109]
-- [misc] vmci: fix error handling path when registering guest driver (Cathy Avery) [1437109]
-- [misc] vmw_vmci: Convert driver to use get_user_pages_fast() (Cathy Avery) [1437109]
-- [misc] vmci: Add support for virtual IOMMU (Cathy Avery) [1437109]
-- [misc] vmci: Remove non-blocking/pinned queuepair support (Cathy Avery) [1437109]
-- [net] vsock: Only check error on skb_recv_datagram when skb is NULL (Cathy Avery) [1437109]
-- [x86] xen: don't crash under Xen hypervisors which present bogus topology (Vitaly Kuznetsov) [1443627]
-- [fs] gfs2: Allow glocks to be unlocked after withdraw (Robert S Peterson) [1404005]
-- [fs] svcrpc: fix memory leak in gssp_accept_sec_context_upcall ("J. Bruce Fields") [1447776]
-- [fs] cifs_get_root shouldn't use path with tree name (Sachin Prabhu) [1373153]
-- [fs] Fix match_prepath() (Sachin Prabhu) [1418107]
-- [fs] locks: __break_lease cleanup in preparation of allowing direct removal of leases (Scott Mayhew) [1444338]
-- [fs] xfs: bufferhead chains are invalid after end_page_writeback (Brian Foster) [1445158]
-- [md] dm cache policy smq: cleanup free_target_met() and clean_target_met() (Mike Snitzer) [1448210]
-- [md] dm cache policy smq: allow demotions to happen even during continuous IO (Mike Snitzer) [1448210]
-- [md] dm cache policy smq: make the cleaner policy write-back more aggressively (Mike Snitzer) [1437251]
-- [md] dm cache: set/clear the cache core's dirty_bitset when loading mappings (Mike Snitzer) [1437251]
-- [md] dm crypt: rewrite (wipe) key in crypto layer using random data (Mike Snitzer) [1444337 1445816]
-- [md] dm mpath: requeue after a small delay if blk_get_request() fails (Mike Snitzer) [1445816]
-- [md] dm era: save spacemap metadata root after the pre-commit (Mike Snitzer) [1445816]
-- [md] dm thin: fix a memory leak when passing discard bio down (Mike Snitzer) [1445816]
-- [md] dm btree: fix for dm_btree_find_lowest_key() (Mike Snitzer) [1445816]
-- [block] fix blk_integrity_register to use template's interval_exp if not 0 (Mike Snitzer) [1445816]
-- [block] blk: Ensure users for current->bio_list can see the full list (Ming Lei) [1447313]
-- [block] blk: improve order of bio handling in generic_make_request() (Ming Lei) [1447313]
-- [netdrv] macvtap: read skb from skb array (Wei Xu) [1447143]
-- [netdrv] Change TECH Preview message to match driver name (David Arcari) [1444721]
-- [netdrv] aquantia: Fix driver name reported by ethtool (David Arcari) [1444721]
-- [netdrv] ib/mlx5: Add port_xmit_wait to counter registers read (Kamal Heib) [1448020 1447995 1447788]
-- [netdrv] ib/mlx5: Add missing hw counters (Kamal Heib) [1448020 1447995 1447788]
-- [netdrv] mlx5e: Initialize ndo_size (Kamal Heib) [1448020 1447995 1447788]
-- [powerpc] eeh: Refactor EEH PE reset functions (Gustavo Duarte) [1428706]
-
-* Mon May 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-664.el7]
-- [fs] nfsd: stricter decoding of write-like NFSv2/v3 ops ("J. Bruce Fields") [1443204] {CVE-2017-7895}
-- [fs] nfsd4: minor NFSv2/v3 write decoding cleanup ("J. Bruce Fields") [1443204] {CVE-2017-7895}
-- [fs] nfsd: check for oversized NFSv2/v3 arguments ("J. Bruce Fields") [1442407] {CVE-2017-7645}
-- [net] macsec: dynamically allocate space for sglist (Sabrina Dubroca) [1445545] {CVE-2017-7477}
-- [net] macsec: avoid heap overflow in skb_to_sgvec (Sabrina Dubroca) [1445545] {CVE-2017-7477}
-- [net] bridge: move bridge multicast cleanup to ndo_uninit (Xin Long) [1434682]
-- [net] bridge: netlink: register netdevice before executing changelink (Xin Long) [1434682]
-- [net] bridge: implement missing ndo_uninit() (Xin Long) [1434682]
-- [net] team: call netdev_change_features out of team lock (Xin Long) [1429679]
-- [net] netfilter: nf_tables: add support for inverted logic in nft_lookup (Hangbin Liu) [1441103]
-- [netdrv] bonding: avoid defaulting hard_header_len to ETH_HLEN on slave removal (Honggang Li) [1425030]
-- [kernel] kallsyms: don't overload absolute symbol type for percpu symbols (Josh Poimboeuf) [1447175]
-- [kernel] kallsyms: fix percpu vars on x86-64 with relocation (Josh Poimboeuf) [1447175]
-- [kernel] kallsyms: generalize address range checking (Josh Poimboeuf) [1447175]
-- [powerpc] Update TM user feature bits in scan_features() (David Gibson) [1445883]
-- [powerpc] Update cpu_user_features2 in scan_features() (David Gibson) [1445883]
-- [powerpc] tm: Abort syscalls in active transactions (David Gibson) [1445883]
-- [powerpc] selftests/powerpc: Add transactional syscall test (David Gibson) [1445883]
-- [powerpc] selftests/powerpc: Make git ignore all binaries in powerpc test suite (David Gibson) [1445883]
-- [powerpc] Disable CPU_FTR_TM if TM is disabled by firmware (David Gibson) [1445883]
-
-* Tue May 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-663.el7]
-- [x86] kvm: x86: fix emulation of RSM and IRET instructions (Ladi Prosek) [1441510]
-- [pci] hv: Allocate interrupt descriptors with GFP_ATOMIC (Vitaly Kuznetsov) [1442282]
-- [pci] hv: Specify CPU_AFFINITY_ALL for MSI affinity when >= 32 CPUs (Vitaly Kuznetsov) [1442282]
-- [pci] hv: Lock PCI bus on device eject (Vitaly Kuznetsov) [1442282]
-- [pci] hv: Properly handle PCI bus remove (Vitaly Kuznetsov) [1442282]
-- [edac] sb_edac: Add Knights Mill support (Aristeu Rozanski) [1432437]
-- [edac] {sb, skx}_edac: Use Intel model macros instead of open-coding them (Aristeu Rozanski) [1432437]
-- [edac] sb_edac: Fix Knights Landing (Aristeu Rozanski) [1432437]
-- [edac] sb_edac: Readd accidentally dropped Broadwell-D support (Aristeu Rozanski) [1432437]
-- [edac] sb_edac: Use cpu family/model in driver detection (Aristeu Rozanski) [1432437]
-- [netdrv] bnx2x: add missing configuration of VF VLAN filters (Michal Schmidt) [1445770]
-- [netdrv] bnx2x: fix incorrect filter count in an error message (Michal Schmidt) [1445770]
-- [netdrv] bnx2x: do not rollback VF MAC/VLAN filters we did not configure (Michal Schmidt) [1445770]
-- [netdrv] bnx2x: fix detection of VLAN filtering feature for VF (Michal Schmidt) [1445770]
-- [netdrv] bnx2x: lower verbosity of VF stats debug messages (Michal Schmidt) [1445770]
-- [powerpc] powernv: Expose OPAL firmware symbol map (Gustavo Duarte) [1444807]
-
-* Tue May 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-662.el7]
-- [drm] config: enable GVT (Rob Clark) [1380115]
-- [drm] makefile: update DRM version (Rob Clark) [1422186]
-- [drm] i915/gvt: set the correct default value of CTX STATUS PTR (Rob Clark) [1422186]
-- [drm] fb-helper: Allow var->x/yres(_virtual) < fb->width/height again (Rob Clark) [1422186]
-- [drm] nouveau: initial support (display-only) for GP107 (Rob Clark) [1422186]
-- [drm] nouveau/kms/nv50: fix double dma_fence_put() when destroying plane state (Rob Clark) [1422186]
-- [drm] nouveau/mmu/nv4a: use nv04 mmu rather than the nv44 one (Rob Clark) [1422186]
-- [drm] nouveau/mpeg: mthd returns true on success now (Rob Clark) [1422186]
-- [drm] i915: Do .init_clock_gating() earlier to avoid it clobbering watermarks (Rob Clark) [1422186]
-- [drm] i915: Avoid rcu_barrier() from reclaim paths (shrinker) (Rob Clark) [1422186]
-- [drm] i915: Stop using RP_DOWN_EI on Baytrail (Rob Clark) [1422186]
-- [drm] i915: Drop support for I915_EXEC_CONSTANTS_* execbuf parameters (Rob Clark) [1422186]
-- [drm] i915: Only enable hotplug interrupts if the display interrupts are enabled (Rob Clark) [1422186]
-- [drm] i915: Reject HDMI 12bpc if the sink doesn't indicate support (Rob Clark) [1422186]
-- [drm] i915: Avoid tweaking evaluation thresholds on Baytrail v3 (Rob Clark) [1422186]
-- [drm] i915: Nuke debug messages from the pipe update critical section (Rob Clark) [1422186]
-- [drm] i915: Store a permanent error in obj->mm.pages (Rob Clark) [1422186]
-- [drm] i915/gen9: Increase PCODE request timeout to 50ms (Rob Clark) [1422186]
-- [drm] i915: Squelch any ktime/jiffie rounding errors for wait-ioctl (Rob Clark) [1422186]
-- [drm] i915/fbdev: Stop repeating tile configuration on stagnation (Rob Clark) [1422186]
-- [drm] i915: Move updating color management to before vblank evasion (Rob Clark) [1422186]
-- [drm] i915: Fix forcewake active domain tracking (Rob Clark) [1422186]
-- [drm] i915: actually drive the BDW reserved IDs (Rob Clark) [1422186]
-- [drm] i915: more .is_mobile cleanups for BDW (Rob Clark) [1422186]
-- [drm] i915: fix INTEL_BDW_IDS definition (Rob Clark) [1422186]
-- [drm] edid: constify edid quirk list (Rob Clark) [1422186]
-- [drm] vmwgfx: fix integer overflow in vmw_surface_define_ioctl() (Rob Clark) [1422186]
-- [drm] vmwgfx: Remove getparam error message (Rob Clark) [1422186]
-- [drm] ttm, drm/vmwgfx: Relax permission checking when opening surfaces (Rob Clark) [1422186]
-- [drm] vmwgfx: avoid calling vzalloc with a 0 size in vmw_get_cap_3d_ioctl() (Rob Clark) [1422186]
-- [drm] vmwgfx: NULL pointer dereference in vmw_surface_define_ioctl() (Rob Clark) [1422186]
-- [drm] vmwgfx: Type-check lookups of fence objects (Rob Clark) [1422186]
-- [drm] i915: Split intel_engine allocation and initialisation (Rob Clark) [1380115]
-- [drm] nouveau/kms/nv50: fix setting of HeadSetRasterVertBlankDmi method (Rob Clark) [1422186]
-- [drm] vfio: Rework group release notifier warning (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix firmware loading interface for GVT-g golden HW state (Rob Clark) [1380115]
-- [drm] i915/gvt: remove the redundant info NULL check (Rob Clark) [1380115]
-- [drm] i915/gvt: adjust mem size for low resolution type (Rob Clark) [1380115]
-- [drm] i915/gvt: exclude cfg space from failsafe mode (Rob Clark) [1380115]
-- [drm] i915/gvt: Activate/de-activate vGPU in mdev ops (Rob Clark) [1380115]
-- [drm] i915/gvt: Use force single submit flag to distinguish gvt request from i915 request (Rob Clark) [1380115]
-- [drm] i915: make context status notifier head be per engine (Rob Clark) [1380115]
-- [drm] i915/gvt: set shadow entry to scratch page while p2m failed (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix guest fail to read EDID leading to black guest console issue (Rob Clark) [1380115]
-- [drm] i915/gvt: fix wrong offset when loading RCS mocs (Rob Clark) [1380115]
-- [drm] i915/gvt: add write handler for mmio mbctl (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix gvt scheduler interval time (Rob Clark) [1380115]
-- [drm] i915/gvt: scan shadow indirect context image when valid (Rob Clark) [1380115]
-- [drm] i915/kvmgt: fix suspicious rcu dereference usage (Rob Clark) [1380115]
-- [drm] i915/gvt: Remove bogus retry around i915_wait_request (Rob Clark) [1380115]
-- [drm] i915/gvt: correct the ggtt valid bit check in pipe control command (Rob Clark) [1380115]
-- [drm] i915/gvt: replace the gvt_err with gvt_vgpu_err (Rob Clark) [1380115]
-- [drm] i915/gvt: handle force-nonpriv registers, cmd parser part (Rob Clark) [1380115]
-- [drm] i915/gvt: set ring buffer size to default for guc submission (Rob Clark) [1380115]
-- [drm] i915/gvt: change some gvt_err to gvt_dbg_cmd (Rob Clark) [1380115]
-- [drm] i915/gvt: protect RO and Rsvd bits of virtual vgpu configuration space (Rob Clark) [1380115]
-- [drm] i915/gvt: handle workload lifecycle properly (Rob Clark) [1380115]
-- [drm] i915/gvt: fix an error for F_RO flag (Rob Clark) [1380115]
-- [drm] i915/gvt: use pfn_valid for better checking (Rob Clark) [1380115]
-- [drm] i915/gvt: set SFUSE_STRAP properly for vitual monitor detection (Rob Clark) [1380115]
-- [drm] i915/gvt: fix an error for one register (Rob Clark) [1380115]
-- [drm] i915/gvt: add more registers into handlers list (Rob Clark) [1380115]
-- [drm] i915/gvt: have more registers with F_CMD_ACCESS flags set (Rob Clark) [1380115]
-- [drm] i915/gvt: add some new MMIOs to cmd_access white list (Rob Clark) [1380115]
-- [drm] i915/gvt: fix pcode mailbox write emulation of BDW (Rob Clark) [1380115]
-- [drm] i915/gvt: add resolution definition for vGPU type (Rob Clark) [1380115]
-- [drm] i915/gvt: Add more edid definition support (Rob Clark) [1380115]
-- [drm] i915/gvt: adjust to fixed vGPU types (Rob Clark) [1380115]
-- [drm] i915/gvt: remove unnecessary error msg from gtt write (Rob Clark) [1380115]
-- [drm] i915/gvt: refine pcode write emulation (Rob Clark) [1380115]
-- [drm] i915/gvt: clear the vGPU reset logic (Rob Clark) [1380115]
-- [drm] i915/gvt: decrease priority of output msg for untracked mmio (Rob Clark) [1380115]
-- [drm] i915/gvt: set default value to 0 for unhandled mmio regs (Rob Clark) [1380115]
-- [drm] i915/gvt: add cmd_access to GEN7_HALF_SLICE_CHICKEN1 (Rob Clark) [1380115]
-- [drm] i915/gvt: force-nopriv register handling (Rob Clark) [1380115]
-- [drm] i915/gvt: add more registers to context save/restore list (Rob Clark) [1380115]
-- [drm] i915/gvt: fix unhandled mmio warnings (Rob Clark) [1380115]
-- [drm] i915/gvt: add a NULL pointer check to avoid kernel panic (Rob Clark) [1380115]
-- [drm] i915/gvt: enter failsafe mode when guest requires more resources (Rob Clark) [1380115]
-- [drm] i915/gvt: handle fence reg access during GPU reset (Rob Clark) [1380115]
-- [drm] i915/gvt: introduced failsafe mode into vgpu (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix check error on opregion.c (Rob Clark) [1380115]
-- [drm] i915/gvt: return error code if dma map iova failed (Rob Clark) [1380115]
-- [drm] i915/gvt: optimize the inhibit context mmio load (Rob Clark) [1380115]
-- [drm] i915/gvt: add sprite plane flip done support (Rob Clark) [1380115]
-- [drm] i915/gvt: add missing display part reset for vGPU reset (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix shadow context descriptor (Rob Clark) [1380115]
-- [drm] i915/gvt: fix crash at function release_shadow_wa_ctx (Rob Clark) [1380115]
-- [drm] i915/gvt: enable IOMMU for gvt (Rob Clark) [1380115]
-- [drm] i915/gvt: map pfn for PTE entry in kvm (Rob Clark) [1380115]
-- [drm] i915/gvt: Map shadow page before using it in shadow page table (Rob Clark) [1380115]
-- [drm] i915/gvt: reduce the line of interrupt logs and log friendly (Rob Clark) [1380115]
-- [drm] i915/gvt: remove a redundant end of line in debug log (Rob Clark) [1380115]
-- [drm] i915/gvt: remove a noisy unimportant log in sched_policy (Rob Clark) [1380115]
-- [drm] i915/gvt/kvmgt: remove some dead code (Rob Clark) [1380115]
-- [drm] i915/gvt: fix vgpu type size init (Rob Clark) [1380115]
-- [drm] i915/gvt: use normal mmio read function for firmware exposure (Rob Clark) [1380115]
-- [drm] i915/gvt: remove detect_host() MPT hook (Rob Clark) [1380115]
-- [drm] i915/gvt: move intel iommu detection to intel_gvt_init() (Rob Clark) [1380115]
-- [drm] i915: make intel_gvt_init() later instead of too early (Rob Clark) [1380115]
-- [drm] i915/gvt: add more resolutions in virtual edid (Rob Clark) [1380115]
-- [drm] i915: A hotfix for making aliasing PPGTT work for GVT-g (Rob Clark) [1380115 1422186]
-- [drm] i915: Let execlist_update_context() cover !FULL_PPGTT mode (Rob Clark) [1380115 1422186]
-- [drm] i915: Move the release of PT page to the upper caller (Rob Clark) [1380115 1422186]
-- [drm] i915/kvmgt: Hold struct kvm reference (Rob Clark) [1422186]
-- [drm] radeon: Override fpfn for all VRAM placements in radeon_evict_flags (Rob Clark) [1422186]
-- [drm] reference count event->completion (Rob Clark) [1422186]
-- [drm] amd/amdgpu: add POLARIS12 PCI ID (Rob Clark) [1422186]
-- [drm] amdgpu: reinstate oland workaround for sclk (Rob Clark) [1422186]
-- [drm] amdgpu/si: add dpm quirk for Oland (Rob Clark) [1422186]
-- [drm] i915/lspcon: Fix resume time initialization due to unasserted HPD (Rob Clark) [1422186]
-- [drm] i915/gen9+: Enable hotplug detection early (Rob Clark) [1422186]
-- [drm] i915/lspcon: Enable AUX interrupts for resume time initialization (Rob Clark) [1422186]
-- [drm] i915/gvt: Fix superfluous newline in GVT_DISPLAY_READY env var (Rob Clark) [1380115 1422186]
-- [drm] i915: Fix not finding the VBT when it overlaps with OPREGION_ASLE_EXT (Rob Clark) [1422186]
-- [drm] i915: Pass timeout==0 on to i915_gem_object_wait_fence() (Rob Clark) [1422186]
-- [drm] i915: Check for timeout completion when waiting for the rq to submitted (Rob Clark) [1422186]
-- [drm] i915: Avoid spurious WARNs about the wrong pipe in the PPS code (Rob Clark) [1422186]
-- [drm] i915: Recreate internal objects with single page segments if dmar fails (Rob Clark) [1422186]
-- [drm] Cancel drm_fb_helper_resume_work on unload (Rob Clark) [1422186]
-- [drm] Cancel drm_fb_helper_dirty_work on unload (Rob Clark) [1422186]
-- [drm] i915/gvt: Disable access to stolen memory as a guest (Rob Clark) [1422186]
-- [drm] atomic: fix an error code in mode_fixup() (Rob Clark) [1422186]
-- [drm] ttm: Make sure BOs being swapped out are cacheable (Rob Clark) [1422186]
-- [drm] edid: Add EDID_QUIRK_FORCE_8BPC quirk for Rotel RSX-1058 (Rob Clark) [1422186]
-- [drm] radeon: handle vfct with multiple vbios images (Rob Clark) [1422186]
-- [drm] ast: Fix AST2400 POST failure without BMC FW or VBIOS (Rob Clark) [1422186]
-- [drm] ast: Call open_key before enable_mmio in POST code (Rob Clark) [1422186]
-- [drm] ast: Fix test for VGA enabled (Rob Clark) [1422186]
-- [drm] revert "drm/amdgpu: update tile table for oland/hainan" (Rob Clark) [1422186]
-- [drm] amdgpu/pm: check for headless before calling compute_clocks (Rob Clark) [1422186]
-- [drm] amdgpu: add more cases to DCE11 possible crtc mask setup (Rob Clark) [1422186]
-
-* Mon May 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-661.el7]
-- [scsi] sd: Consider max_xfer_blocks if opt_xfer_blocks is unusable (Ewan Milne) [1436582]
-- [scsi] revert "lpfc: Revert: Fix eh_deadline setting for sli3 adapters" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Correct WQ creation for pagesize" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: minor code cleanups" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: refactor debugfs queue prints" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: refactor debugfs queue dump routines" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Initiator: Base modifications" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Initiator: Merge into FC discovery" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Initiator: bind to nvme_fc api" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Initiator: Add debugfs support" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: Base modifications" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: Receive buffer updates" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: Merge into FC discovery" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: bind to nvmet_fc api" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: Add debugfs support" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Update copyrights" (Ewan Milne) [1444045]
-- [scsi] revert "Update lpfc version to 11.2.0.8 with NVME support" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: remove redundant assignment of sgel" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: sanity check hrq is null before dereferencing it" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: don't dereference dma_buf-&gt; iocbq before null check" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: fix missing spin_unlock on sql_list_lock" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix crash during Hardware error recovery on SLI3 adapters" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix RCTL value on NVME LS request and response" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix NVME CMD IU byte swapped word 1 problem" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix IO submission if WQ is full" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix nvme allocation bug on failed nvme_fc_register_localport" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: add NVME exchange aborts" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Rename LPFC_MAX_EQ_DELAY to LPFC_MAX_EQ_DELAY_EQID_CNT" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: correct double print" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: remove dead sli3 nvme code" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: correct rdp diag portnames" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: code cleanups in NVME initiator discovery" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix eh_deadline setting for sli3 adapters" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: replace init_timer by setup_timer" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: add missing Kconfig NVME dependencies" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Rework lpfc Kconfig for NVME options" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Finalize Kconfig options for nvme" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: The lpfc driver does not issue RFF_ID and RFT_ID in the correct sequence" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc version bump for nvme to 11.2.0.11" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: cleanup of abort flag processing in fcp_op_done" (Ewan Milne) [1444045]
-- [nvme] revert "nvme-fc: don't bother to validate ioccsz and iorcsz" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Sync FC-NVME header with standard" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Add check of status_code in ERSP_IU" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: Sync NVME LS reject reasons with spec" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: correct LS validation" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: Clear SG list to avoid double frees" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Clean up host fcpio done status handling" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: add target feature flags for upcall isr contexts" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: add req_release to lldd api" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fcloop: split job struct from transport for req_release" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: Rework target side abort handling" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: add missing reference in add_port" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Move LS's to rport" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Add ls aborts on remote port teardown" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: fix command id check" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: add aen abort to teardown" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: add controller reset support" (Ewan Milne) [1444045]
-- [nvme] revert "nvme-fc: add .map_queue entry to blk_mq_ops" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: avoid double kfree(), don't call nvme_cleanup_cmd() in nvme_fc_unmap_data()" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Mark NVMe and NVMe Target support as tech preview" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: code cleanups in NVME initiator base" (Ewan Milne) [1444045]
-- [scsi] qla2xxx: Update message for module parameter (Himanshu Madhani) [1445879]
-
-* Sat Apr 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-660.el7]
-- [kernel] tick/broadcast-hrtimer: Set name of the ce_broadcast_hrtimer (Prarit Bhargava) [1443846]
-- [kernel] sched: Transform resched_task() into resched_curr() (Waiman Long) [1418778]
-- [kernel] sched/core: Remove false-positive warning from wake_up_process() (Waiman Long) [1436128]
-- [iommu] vt-d: Make sure IOMMUs are off when intel_iommu=off (Baoquan He) [1441413]
-- [fs] xfs: drop iolock from reclaim context to appease lockdep (Brian Foster) [1441364]
-- [fs] xfs: fix eofblocks race with file extending async dio writes (Brian Foster) [1441364]
-- [fs] xfs: sync eofblocks scans under iolock are livelock prone (Brian Foster) [1441364]
-- [fs] xfs: pull up iolock from xfs_free_eofblocks() (Brian Foster) [1441364]
-- [mm] memblock: fix memblock_next_valid_pfn() (Frank Ramsay) [1438940]
-- [mm] page_alloc: skip over regions of invalid pfns where possible (Frank Ramsay) [1438940]
-- [x86] llvmlinux: Fix "incomplete type const struct x86cpu_device_id" (Ming Lei) [1367596 1437476]
-- [x86] xen: do not re-use pirq number cached in pci device msi msg data (Vitaly Kuznetsov) [1433831]
-- [x86] kvm: x86: Add MSR_AMD64_DC_CFG to the list of ignored MSRs (Ladi Prosek) [1440025]
-- [x86] perf/intel/rapl: Fix module name collision with powercap intel-rapl (David Arcari) [1445833]
-- [x86] Mark AMD Naples/Ryzen as unsupported (David Arcari) [1444841]
-- [x86] mpx: saving FPU in do_bounds() (Rui Wang) [1443281]
-- [x86] mm: fix gup_pte_range() vs DAX mappings (Jeff Moyer) [1443284]
-- [x86] mm/gup: Simplify get_user_pages() PTE bit handling (Jeff Moyer) [1443284]
-- [x86] revert "mm: Fix gup_huge_p?d() to handle large PAT bit" (Jeff Moyer) [1443284]
-- [x86] revert "mm: Simplify get_user_pages() PTE bit handling" (Jeff Moyer) [1443284]
-- [x86] revert "mm: fix gup_pte_range() vs DAX mappings" (Jeff Moyer) [1443284]
-- [scsi] Avoid that SCSI queues get stuck (Ming Lei) [1441114]
-- [scsi] blk-mq: Introduce blk_mq_delay_run_hw_queue() (Ming Lei) [1441114]
-- [scsi] qedi: Add PCI device-ID for QL41xxx adapters (Chad Dupuis) [1432622]
-- [netdrv] qed: Correct MSI-x for storage (Harish Patil) [1432196]
-- [netdrv] qed*: Add support for QL41xxx adapters (Harish Patil) [1432196]
-- [netdrv] qedf: fix wrong le16 conversion (Harish Patil) [1432196]
-- [netdrv] qed*: Utilize Firmware 8.15.3.0 (Harish Patil) [1432196]
-- [netdrv] qed: Don't free a QP more than once (Harish Patil) [1432196]
-- [netdrv] be2net: VxLAN offload should be re-enabled when only 1 UDP port is left (Ivan Vecera) [1427258]
-
-* Thu Apr 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-659.el7]
-- [virtio] virtio_balloon: prevent uninitialized variable use (David Hildenbrand) [1439570]
-- [virtio] virtio-balloon: use actual number of stats for stats queue buffers (David Hildenbrand) [1439570]
-- [virtio] virtio_balloon: init 1st buffer in stats vq (David Hildenbrand) [1439570]
-- [virtio] update balloon size in balloon "probe" (David Hildenbrand) [1439570]
-- [virtio] virtio_balloon: Allow to resize and update the balloon stats in parallel (David Hildenbrand) [1439570]
-- [virtio] virtio_balloon: Use a workqueue instead of "vballoon" kthread (David Hildenbrand) [1439570]
-- [virtio] virtio-balloon: do not call blocking ops when !TASK_RUNNING (David Hildenbrand) [1439570]
-- [netdrv] e1000e: fix timing for 82579 Gigabit Ethernet controller (Jarod Wilson) [1442918 1383529]
-- [netdrv] revert "e1000e: driver trying to free already-free irq" (Jarod Wilson) [1442918 1383529]
-- [netdrv] sfc: tx ring can only have 2048 entries for all EF10 NICs (Jarod Wilson) [1389480]
-- [netdrv] sfc: limit the number of receive queues (Jarod Wilson) [1389480]
-- [netdrv] sfc: don't insert mc_list on low-latency firmware if it's too long (Jarod Wilson) [1389480]
-- [netdrv] sfc: cleanup a condition in efx_udp_tunnel_del() (Jarod Wilson) [1389480]
-- [netdrv] sfc: fix IPID endianness in TSOv2 (Jarod Wilson) [1389480]
-- [netdrv] sfc: avoid max() in array size (Jarod Wilson) [1389480]
-- [netdrv] sfc: fix "an one" typo instances (Jarod Wilson) [1389480]
-- [netdrv] bnx2x: prevent crash when accessing PTP with interface down (Michal Schmidt) [1344743]
-- [netdrv] bnx2x: fix possible overrun of VFPF multicast addresses array (Michal Schmidt) [1445814]
-- [netdrv] ib/mlx5: Verify that Q counters are supported (Kamal Heib) [1442597]
-- [netdrv] mlx5e: Count LRO packets correctly (Kamal Heib) [1440660]
-- [netdrv] mlx5e: Count GSO packets correctly (Kamal Heib) [1440660]
-- [powerpc] Emulation support for load/store instructions on LE (Bhupesh Sharma) [1436294]
-- [powerpc] sstep: Return directly after a failed address_ok() in emulate_step() (Bhupesh Sharma) [1436294]
-- [powerpc] sstep: Fix emulation fall-through (Bhupesh Sharma) [1436294]
-- [powerpc] sstep: Fix sstep.c compile on powerpcspe (Bhupesh Sharma) [1436294]
-- [powerpc] Fix compilation of emulate_step() (Bhupesh Sharma) [1436294]
-- [powerpc] Implement emulation of string loads and stores (Bhupesh Sharma) [1436294]
-- [powerpc] Emulate icbi, mcrf and conditional-trap instructions (Bhupesh Sharma) [1436294]
-- [powerpc] Split out instruction analysis part of emulate_step() (Bhupesh Sharma) [1436294]
-
-* Wed Apr 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-658.el7]
-- [netdrv] qed: Enable iSCSI Out-of-Order (Harish Patil) [1432632]
-- [netdrv] qed: Correct out-of-bound access in OOO history (Harish Patil) [1432632]
-- [netdrv] qed: Fix mapping leak on LL2 rx flow (Harish Patil) [1432632]
-- [netdrv] qed: Align CIDs according to DORQ requirement (Harish Patil) [1432632]
-- [vhost] introduce O(1) vq metadata cache (Wei Xu) [1425127 1283257]
-- [vhost] add missing __user annotations (Wei Xu) [1283257 1425127]
-- [vhost] make interval tree static inline (Wei Xu) [1283257 1425127]
-- [vhost] detect 32 bit integer wrap around (Wei Xu) [1283257 1425127]
-- [uapi] vhost: new device IOTLB API (Wei Xu) [1425127 1283257]
-- [vhost] convert pre sorted vhost memory array to interval tree (Wei Xu) [1425127 1283257]
-- [vhost] introduce vhost memory accessors (Wei Xu) [1425127 1283257]
-- [vhost] remove unnecessary forward declarations in vhost.h (Wei Xu) [1283257 1425127]
-- [vhost] replace  with & on data path (Wei Xu) [1283257 1425127]
-- [uapi] virtio: new feature to detect IOMMU device quirk (Wei Xu) [1425127 1283257]
-- [virtio] virtio_pci: Use the DMA API if enabled (Wei Xu) [1283257 1425127]
-- [virtio] virtio_mmio: Use the DMA API if enabled (Wei Xu) [1283257 1425127]
-- [virtio] Silence uninitialized variable warning (Wei Xu) [1283257 1425127]
-- [kernel] virtio: Add improved queue allocation API (Wei Xu) [1283257 1425127]
-- [tools] virtio_ring: Support DMA APIs (Wei Xu) [1283257 1425127]
-- [virtio] vring: Introduce vring_use_dma_api() (Wei Xu) [1283257 1425127]
-- [kernel] s390/dma: Allow per device dma ops (Wei Xu) [1425127 1283257]
-- [lib] dma: Provide simple noop dma ops (Wei Xu) [1283257 1425127]
-- [fs] ext4: fix an ext3 collapse range regression in xfstests (Lukas Czerner) [1435541]
-- [fs] btrfs: Use __u64 in exported linux/btrfs.h (Bill O'Donnell) [1437489]
-- [fs] nfs: Fix missing pg_cleanup after nfs_pageio_cond_complete() (Benjamin Coddington) [1358574]
-- [fs] pnfs: return status from nfs4_pnfs_ds_connect (Benjamin Coddington) [1350261]
-- [fs] lockd: Introduce nlmclnt_operations (Benjamin Coddington) [1240357]
-- [fs] nfs: Add an iocounter wait function for async RPC tasks (Benjamin Coddington) [1240357]
-- [fs] nfs: Use wait_on_atomic_t() for unlock after readahead (Benjamin Coddington) [1240357]
-- [fs] locks: Set FL_CLOSE when removing flock locks on close() (Benjamin Coddington) [1240357]
-- [fs] nfs: Move the flock open mode check into nfs_flock() (Benjamin Coddington) [1240357]
-- [fs] nfs4: remove a redundant lock range check (Benjamin Coddington) [1240357]
-- [fs] sunrpc: don't pass on-stack memory to sg_set_buf (Benjamin Coddington) [1346106]
-- [fs] nfs: Fix old dentry rehash after move (Benjamin Coddington) [1349647]
-- [fs] locks: allow __break_lease to sleep even when break_time is 0 ("J. Bruce Fields") [1088012]
-- [fs] nfsd: opt in to labeled nfs per export ("J. Bruce Fields") [1406885]
-- [fs] NFSv4.1 fix infinite loop on IO BAD_STATEID error (Steve Dickson) [1437584]
-- [fs] NFS prevent double free in async nfs4_exchange_id (Steve Dickson) [1431756]
-- [fs] NFSv4.1 respect server's max size in CREATE_SESSION (Steve Dickson) [1431757]
-- [fs] nfs: Don't disconnect open-owner on NFS4ERR_BAD_SEQID (Steve Dickson) [1431755]
-- [fs] nfs: fix the fault nrequests decreasing for nfs_inode COPY (Steve Dickson) [1436301]
-- [fs] sunrpc, nfs: Add and use dprintk_cont macros (Steve Dickson) [1436301]
-- [fs] vfs: guard end of device for mpage interface (Ming Lei) [1309318]
-- [fs] vfs: make guard_bh_eod() more generic (Ming Lei) [1309318]
-- [fs] autofs: dont hold spin lock over direct mount expire (Ian Kent) [1320588]
-- [fs] autofs: constify misc struct path instances (Ian Kent) [1320588]
-- [fs] autofs: use path_has_submounts() to fix unreliable have_submount() checks (Ian Kent) [1320588]
-- [fs] autofs: use path_is_mountpoint() to fix unreliable d_mountpoint() checks (Ian Kent) [1320588]
-- [fs] autofs: change autofs4_wait() to take struct path (Ian Kent) [1320588]
-- [fs] autofs: change autofs4_expire_wait()/do_expire_wait() to take struct path (Ian Kent) [1320588]
-- [fs] vfs: add path_has_submounts() (Ian Kent) [1320588]
-- [fs] vfs: add path_is_mountpoint() helper (Ian Kent) [1320588]
-- [fs] vfs: change d_manage() to take a struct path (Ian Kent) [1320588]
-- [fs] xfs: handle array index overrun in xfs_dir2_leaf_readbuf() (Carlos Maiolino) [1440860]
-- [fs] xfs: use dedicated log worker wq to avoid deadlock with cil wq (Brian Foster) [1422225]
-- [fs] xfs: fix bogus space reservation in xfs_iomap_write_allocate (Brian Foster) [1435738]
-
-* Mon Apr 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-657.el7]
-- [md] dm raid: fix table line argument order in status (Mike Snitzer) [1435020]
-- [fs] proc: fix GPF in /proc/$PID/map_files (Carlos Maiolino) [1438001]
-- [fs] gfs2: Re-enable fallocate for the rindex (Andrew Price) [1399830]
-- [fs] config: enable dlm for ppc64le (Andrew Price) [1429822]
-- [fs] configs: enable gfs2 for ppc64le (Andrew Price) [1429830]
-- [fs] nfs: Allow getattr to also report readdirplus cache hits (Dave Wysochanski) [1442068]
-- [fs] nfs: Be more targeted about readdirplus use when doing lookup/revalidation (Dave Wysochanski) [1442068]
-- [fs] nfs: Fix a performance regression in readdir (Dave Wysochanski) [1442068]
-- [fs] nfs: tidy up nfs_show_mountd_netid (Steve Dickson) [1395068]
-- [fs] pnfs: consolidate the different range intersection tests (Steve Dickson) [1436736]
-- [fs] pnfs/flexfiles: Only send layoutstats updates for mirrors that were updated (Steve Dickson) [1436736]
-- [fs] pnfs/flexfiles: Don't attempt to send layoutstats if there are no entries (Steve Dickson) [1436736]
-- [x86] cpufeature: Enable RING3MWAIT for Knights Mill (Xiaolong Wang) [1387697]
-- [x86] cpufeature: Enable RING3MWAIT for Knights Landing (Xiaolong Wang) [1387697]
-- [x86] cpufeature: Add RING3MWAIT to CPU features (Xiaolong Wang) [1387697]
-- [x86] elf: Add HWCAP2 to expose ring 3 MONITOR/MWAIT (Xiaolong Wang) [1387697]
-- [x86] msr: Add MSR_MISC_FEATURE_ENABLES and RING3MWAIT bit (Xiaolong Wang) [1387697]
-- [x86] Fix typo preventing msr_set/clear_bit from having an effect (Xiaolong Wang) [1387697]
-- [x86] kvm: x86: bump KVM_(SOFT_)MAX_VCPUS to 384 (Radim Krcmar) [1433954]
-- [x86] kvm: x86: fix out-of-bounds accesses of rtc_eoi map (Radim Krcmar) [1433954]
-- [x86] kvm: x86: bump KVM_MAX_VCPU_ID to 1023 (Radim Krcmar) [1433954]
-- [x86] kvm: introduce KVM_MAX_VCPU_ID (Radim Krcmar) [1433954]
-- [x86] kvm: fix page struct leak in handle_vmon (Paolo Bonzini) [1417825] {CVE-2017-2596}
-- [x86] intel_rdt: Fix the notifier priority crash (Jiri Olsa) [1442204]
-- [xen] balloon: Set balloon's initial state to number of existing RAM pages (Vitaly Kuznetsov) [1437309]
-- [pci] Avoid output of ioapic probe error (David Arcari) [1377960]
-- [scsi] storvsc: remove bogus code to transfer struct scatterlist (Cathy Avery) [1429882]
-- [scsi] storvsc: properly handle SRB_ERROR when sense message is present (Cathy Avery) [1429882]
-- [scsi] storvsc: use tagged SRB requests if supported by the device (Cathy Avery) [1429882]
-- [scsi] storvsc: Enable multi-queue support (Cathy Avery) [1429882]
-- [scsi] storvsc: Remove the restriction on max segment size (Cathy Avery) [1429882]
-- [gpio] acpi: Return -EPROBE_DEFER if the gpiochip was not found (Gopal Tiwari) [1415450]
-- [block] blk-mq: don't complete un-started request in timeout handler (Ming Lei) [1429353]
-- [kernel] compiler-gcc: integrate the various compiler-gcc[345].h files (Rafael Aquini) [1367596]
-- [kernel] compiler-gcc.h: neatening (Rafael Aquini) [1367596]
-- [kernel] lib: make memzero_explicit more robust against dead store elimination (Rafael Aquini) [1367596]
-- [kernel] lib: memzero_explicit: use barrier instead of OPTIMIZER_HIDE_VAR (Rafael Aquini) [1367596]
-- [kernel] compiler: introduce __alias(symbol) shortcut (Rafael Aquini) [1367596]
-- [kernel] compiler-intel.h: Remove duplicate definition (Rafael Aquini) [1367596]
-- [powerpc] mm: Add missing global TLB invalidate if cxl is active (Steve Best) [1440776]
-
-* Thu Apr 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-656.el7]
-- [documentation] ipvs: Document sysctl pmtu_disc (Hangbin Liu) [1415642]
-- [documentation] ipvs: Document sysctl sync_ports (Hangbin Liu) [1415642]
-- [documentation] ipvs: Document sysctl sync_qlen_max and sync_sock_size (Hangbin Liu) [1415642]
-- [documentation] ipvs: fix sync_threshold description and add sync_refresh_period, sync_retries (Hangbin Liu) [1415642]
-- [net] neigh: do not modify unlinked entries (Jakub Sitnicki) [1389292]
-- [net] revert "tcp: fix the timid additive increase on stretch ACKs" (Hannes Frederic Sowa) [1418870]
-- [net] revert "tcp: fix stretch ACK bugs in Reno" (Hannes Frederic Sowa) [1418870]
-- [net] revert "tcp: fix tcp_cong_avoid_ai() credit accumulation bug with decreases in w" (Hannes Frederic Sowa) [1418870]
-- [netdrv] macvtap: fix use after free for skb_array during release (Wei Xu) [1414006]
-- [netdrv] macvtap: correctly free skb during socket destruction (Wei Xu) [1414006]
-- [netdrv] macvtap: switch to use skb array (Wei Xu) [1414006]
-- [netdrv] macvtap: Do not double-count received packets (Wei Xu) [1414006]
-- [netdrv] macvlan: fix leak in macvlan_handle_frame (Wei Xu) [1414006]
-- [net] tun: remove unnecessary sk_receive_queue (Wei Xu) [1352741]
-- [net] tun: Don't assume type tun in tun_device_event (Wei Xu) [1352741]
-- [net] tun: fix build warnings (Wei Xu) [1352741]
-- [net] tun: switch to use skb array for tx (Wei Xu) [1352741]
-- [net] introduce NETDEV_CHANGE_TX_QUEUE_LEN (Wei Xu) [1352741]
-- [net] ptr_ring: fix race conditions when resizing (Wei Xu) [1352741]
-- [net] skb_array: add wrappers for resizing (Wei Xu) [1352741]
-- [net] ptr_ring: support resizing multiple queues (Wei Xu) [1352741]
-- [net] skb_array: minor tweak (Wei Xu) [1352741]
-- [net] ptr_ring: support zero length ring (Wei Xu) [1352741]
-- [net] skb_array: resize support (Wei Xu) [1352741]
-- [net] ptr_ring: resize support (Wei Xu) [1352741]
-- [net] skb_array: array based FIFO for skbs (Wei Xu) [1352741]
-- [net] ptr_ring: array based FIFO for pointers (Wei Xu) [1352741]
-- [net] packet: fix overflow in check for tp_reserve (Hangbin Liu) [1441172] {CVE-2017-7308}
-- [net] packet: fix overflow in check for tp_frame_nr (Hangbin Liu) [1441172] {CVE-2017-7308}
-- [net] packet: fix overflow in check for priv area size (Hangbin Liu) [1441172] {CVE-2017-7308}
-- [net] tcp: minimize false-positives on TCP/GRO check (Marcelo Leitner) [1438309]
-- [net] audit: normalize NETFILTER_PKT (Richard Guy Briggs) [1382494]
-- [net] netfilter: use consistent ipv4 network offset in xt_AUDIT (Richard Guy Briggs) [1382494]
-- [net] netfilter: Convert uses of __constant_<foo> to <foo> (Richard Guy Briggs) [1382494]
-
-* Tue Apr 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-655.el7]
-- [scsi] sg: check length passed to SG_NEXT_CMD_LEN ("Ewan D. Milne") [1439047] {CVE-2017-7187}
-- [scsi] ipr: do not set DID_PASSTHROUGH on CHECK CONDITION (Steve Best) [1441747]
-- [scsi] storvsc: Support manual scan of FC hosts on Hyper-V (Cathy Avery) [1425469]
-- [fs] proc/kcore: update physical address for kcore ram and text (Pratyush Anand) [1419888]
-- [pci] pciehp: Leave power indicator on when enabling already-enabled slot (Myron Stowe) [1435818]
-- [pci] pciehp: Prioritize data-link event over presence detect (Myron Stowe) [1435818]
-- [pci] cpqphp: Add missing call to pci_disable_device() (Myron Stowe) [1435818]
-- [pci] pciehp: Remove useless pciehp_get_latch_status() calls (Myron Stowe) [1435818]
-- [pci] pciehp: Clean up dmesg "Slot(s)" messages (Myron Stowe) [1435818]
-- [pci] pciehp: Remove unnecessary guard (Myron Stowe) [1435818]
-- [pci] pciehp: Don't re-read Slot Status when handling surprise event (Myron Stowe) [1435818]
-- [pci] pciehp: Don't re-read Slot Status when queuing hotplug event (Myron Stowe) [1435818]
-- [pci] pciehp: Process all hotplug events before looking for new ones (Myron Stowe) [1435818]
-- [pci] pciehp: Return IRQ_NONE when we can't read interrupt status (Myron Stowe) [1435818]
-- [pci] pciehp: Rename pcie_isr() locals for clarity (Myron Stowe) [1435818]
-- [pci] Fix all whitespace issues (Myron Stowe) [1435818]
-- [pci] pciehp: Always protect pciehp_disable_slot() with hotplug mutex (Myron Stowe) [1435818]
-- [netdrv] bonding: handle link transition from FAIL to UP correctly (Jarod Wilson) [1412921]
-- [netdrv] bonding: attempt to better support longer hw addresses (Jarod Wilson) [1412921]
-- [netdrv] bonding: fix active-backup transition (Jarod Wilson) [1412921]
-- [netdrv] bonding: refine bond_fold_stats() wrap detection (Jarod Wilson) [1412921]
-- [netdrv] bonding: avoid printing while holding a spinlock (Jarod Wilson) [1412921]
-- [netdrv] bonding: correctly update link status during mii-commit phase (Jarod Wilson) [1412921]
-- [netdrv] bonding: make speed, duplex setting consistent with link state (Jarod Wilson) [1412921]
-- [netdrv] bonding: improve link-status update in mii-monitoring (Jarod Wilson) [1412921]
-- [netdrv] bonding: split bond_set_slave_link_state into two parts (Jarod Wilson) [1412921]
-- [netdrv] bonding: reduce scope of some global variables (Jarod Wilson) [1412921]
-- [netdrv] bonding: remove "port-moved" state that was never implemented (Jarod Wilson) [1412921]
-- [netdrv] bonding: remove hardcoded value (Jarod Wilson) [1412921]
-- [netdrv] bonding: Remove unnecessary returned value check (Jarod Wilson) [1412921]
-- [netdrv] bonding: quit messing with IOCTL (Jarod Wilson) [1412921]
-- [netdrv] bonding: Fix bonding crash (Jarod Wilson) [1412921]
-- [netdrv] bonding: fix the typo (Jarod Wilson) [1412921]
-- [netdrv] bonding: Enforce active-backup policy for IPoIB bonds (Jarod Wilson) [1412921]
-- [kernel] uapi: Fix exposed undefined u32 and u64 types to userland through /usr/include/linux/md_p.h (Rafael Aquini) [1443158]
-- [powerpc] mm: Use appropriate ESID mask in copro_calculate_slb() (Gustavo Duarte) [1437942]
-
-* Mon Apr 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-654.el7]
-- [kernel] x86/e820: Don't merge consecutive E820_PRAM ranges (Jeff Moyer) [1351098]
-- [kernel] x86/boot: Fix kdump, cleanup aborted E820_PRAM max_pfn manipulation (Jeff Moyer) [1351098]
-- [kernel] scripts/sortextable: support objects with more than 64K sections (Joe Lawrence) [1440222]
-- [kernel] sched/idle: Add missing checks to the exit condition of cpu_idle_poll() (Gustavo Duarte) [1437869]
-- [md] raid5-ppl: runtime PPL enabling or disabling (Nigel Croxon) [1434872]
-- [md] raid5-ppl: support disk hot add/remove with PPL (Nigel Croxon) [1434872]
-- [md] raid5-ppl: load and recover the log (Nigel Croxon) [1434872]
-- [md] add sysfs entries for PPL (Nigel Croxon) [1434872]
-- [md] raid5-ppl: Partial Parity Log write logging implementation (Nigel Croxon) [1434872]
-- [md] raid5: separate header for log functions (Nigel Croxon) [1434872]
-- [md] superblock changes for PPL (Nigel Croxon) [1434872]
-- [x86] mm: fix gup_pte_range() vs DAX mappings (Jeff Moyer) [1436283]
-- [x86] mm: Simplify get_user_pages() PTE bit handling (Jeff Moyer) [1436283]
-- [x86] mm: Fix gup_huge_p?d() to handle large PAT bit (Jeff Moyer) [1436283]
-- [x86] Mark Intel Knights Mill processor as supported (Steve Best) [1381298]
-- [x86] kvm: x86: Add AVX512_4VNNIW and AVX512_4FMAPS support (Paul Lai) [1382116]
-- [x86] cpuid: Provide get_scattered_cpuid_leaf() (Paul Lai) [1382116]
-- [x86] cpuid: Cleanup cpuid_regs definitions (Paul Lai) [1382116]
-- [x86] cpufeature: Add AVX512_4VNNIW and AVX512_4FMAPS features (Paul Lai) [1382116 1380821]
-- [x86] smpboot: Prevent false positive out of bounds cpumask access warning (Baoquan He) [1440629]
-- [hid] hid-wacom: support 27QHDT using the new driver (Aristeu Rozanski) [1391668]
-- [scsi] ses: don't get power status of SES device slot on probe (Gustavo Duarte) [1434768]
-- [char] tpm_tis_spi: Add small delay after last transfer (Jerry Snitselaar) [1385571]
-- [char] tpm_tis_spi: Remove limitation of transfers to MAX_SPI_FRAMESIZE bytes (Jerry Snitselaar) [1385571]
-- [char] tpm_tis_spi: Check correct byte for wait state indicator (Jerry Snitselaar) [1385571]
-- [char] tpm_tis_spi: Abort transfer when too many wait states are signaled (Jerry Snitselaar) [1385571]
-- [char] tpm_tis_spi: Use single function to transfer data (Jerry Snitselaar) [1385571]
-- [block] nvme: Complete all stuck requests (David Milburn) [1439623]
-- [block] blk-mq: Provide freeze queue timeout (David Milburn) [1439623]
-- [block] blk-mq: Export blk_mq_freeze_queue_wait (David Milburn) [1439623]
-- [netdrv] mlx5: Increase number of max QPs in default profile (Kamal Heib) [1436238]
-- [netdrv] i40e: only register client on iWarp-capable devices (Stefan Assmann) [1437246]
-- [netdrv] i40e: close client on remove and shutdown (Stefan Assmann) [1429866]
-- [netdrv] i40e: register existing client on probe (Stefan Assmann) [1429866]
-- [netdrv] i40e: remove client instance on driver unload (Stefan Assmann) [1429866]
-- [netdrv] i40e: fix RSS queues only operating on PF0 (Stefan Assmann) [1429866]
-- [netdrv] i40e: initialize params before notifying of l2_param_changes (Stefan Assmann) [1429866]
-- [netdrv] i40e: KISS the client interface (Stefan Assmann) [1429866]
-- [netdrv] i40e: fix up recent proxy and wol bits for X722_SUPPORT (Stefan Assmann) [1429866]
-- [netdrv] i40e: Acquire NVM lock before reads on all devices (Stefan Assmann) [1429866]
-- [netdrv] i40e: Do not enable NAPI on q_vectors that have no rings (Stefan Assmann) [1429866]
-- [infiniband] i40iw: Receive netdev events post INET_NOTIFIER state (Stefan Assmann) [1429866]
-- [powerpc] prom: Increase minimum RMA size to 512MB (Gustavo Duarte) [1411321]
-
-* Fri Apr 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-653.el7]
-- [scsi] qla2xxx: Turn ql2xmqsupport off by default (Himanshu Madhani) [1441782]
-- [scsi] lpfc: code cleanups in NVME initiator base (Ewan Milne) [1384922]
-- [scsi] lpfc: Mark NVMe and NVMe Target support as tech preview (Ewan Milne) [1384922]
-- [nvme] nvme_fc: avoid double kfree(), don't call nvme_cleanup_cmd() in nvme_fc_unmap_data() (Ewan Milne) [1384922]
-- [nvme] nvme-fc: add .map_queue entry to blk_mq_ops (Ewan Milne) [1384922]
-- [nvme] nvme_fc: add controller reset support (Ewan Milne) [1384922]
-- [nvme] nvme_fc: add aen abort to teardown (Ewan Milne) [1384922]
-- [nvme] nvme_fc: fix command id check (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Add ls aborts on remote port teardown (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Move LS's to rport (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: add missing reference in add_port (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: Rework target side abort handling (Ewan Milne) [1384922]
-- [nvme] nvme_fcloop: split job struct from transport for req_release (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: add req_release to lldd api (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: add target feature flags for upcall isr contexts (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Clean up host fcpio done status handling (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: Clear SG list to avoid double frees (Ewan Milne) [1384922]
-- [nvme] nvme_fc: correct LS validation (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: Sync NVME LS reject reasons with spec (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Add check of status_code in ERSP_IU (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Sync FC-NVME header with standard (Ewan Milne) [1384922]
-- [nvme] nvme-fc: don't bother to validate ioccsz and iorcsz (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: cleanup of abort flag processing in fcp_op_done (Ewan Milne) [1384922]
-- [scsi] lpfc version bump for nvme to 11.2.0.11 (Ewan Milne) [1384922]
-- [scsi] lpfc: The lpfc driver does not issue RFF_ID and RFT_ID in the correct sequence (Ewan Milne) [1384922]
-- [scsi] lpfc: Finalize Kconfig options for nvme (Ewan Milne) [1384922]
-- [scsi] lpfc: Rework lpfc Kconfig for NVME options (Ewan Milne) [1384922]
-- [scsi] lpfc: add missing Kconfig NVME dependencies (Ewan Milne) [1384922]
-- [scsi] lpfc: replace init_timer by setup_timer (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix eh_deadline setting for sli3 adapters (Ewan Milne) [1384922]
-- [scsi] lpfc: code cleanups in NVME initiator discovery (Ewan Milne) [1384922]
-- [scsi] lpfc: correct rdp diag portnames (Ewan Milne) [1384922]
-- [scsi] lpfc: remove dead sli3 nvme code (Ewan Milne) [1384922]
-- [scsi] lpfc: correct double print (Ewan Milne) [1384922]
-- [scsi] lpfc: Rename LPFC_MAX_EQ_DELAY to LPFC_MAX_EQ_DELAY_EQID_CNT (Ewan Milne) [1384922]
-- [scsi] lpfc: add NVME exchange aborts (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix nvme allocation bug on failed nvme_fc_register_localport (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix IO submission if WQ is full (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix NVME CMD IU byte swapped word 1 problem (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix RCTL value on NVME LS request and response (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix crash during Hardware error recovery on SLI3 adapters (Ewan Milne) [1384922]
-- [scsi] lpfc: fix missing spin_unlock on sql_list_lock (Ewan Milne) [1384922]
-- [scsi] lpfc: don't dereference dma_buf-&gt; iocbq before null check (Ewan Milne) [1384922]
-- [scsi] lpfc: sanity check hrq is null before dereferencing it (Ewan Milne) [1384922]
-- [scsi] lpfc: remove redundant assignment of sgel (Ewan Milne) [1384922]
-- [scsi] Update lpfc version to 11.2.0.8 with NVME support (Ewan Milne) [1384922]
-- [scsi] lpfc: Update copyrights (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: Add debugfs support (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: bind to nvmet_fc api (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: Merge into FC discovery (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: Receive buffer updates (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: Base modifications (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Initiator: Add debugfs support (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Initiator: bind to nvme_fc api (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Initiator: Merge into FC discovery (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Initiator: Base modifications (Ewan Milne) [1384922]
-- [scsi] lpfc: refactor debugfs queue dump routines (Ewan Milne) [1384922]
-- [scsi] lpfc: refactor debugfs queue prints (Ewan Milne) [1384922]
-- [scsi] lpfc: minor code cleanups (Ewan Milne) [1384922]
-- [scsi] lpfc: Correct WQ creation for pagesize (Ewan Milne) [1384922]
-- [scsi] lpfc: Revert: Fix eh_deadline setting for sli3 adapters (Ewan Milne) [1384922]
-
-* Thu Apr 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-652.el7]
-- [gpu] drm/ast: Handle configuration without P2A bridge (Rob Clark) [1422342 1415055 1351050 1406119]
-- [gpu] drm/vmwgfx: Work around drm removal of control nodes (Rob Clark) [1425111 1406119]
-- [video] efifb: prevent null-deref when iterating dmi_list (Rob Clark) [1358107 1406119]
-- [kernel] pm / sleep: add configurable delay for pm_test (Rob Clark) [1406119]
-- [gpu] drm/mgag200: Added support for the new device G200eH3 (Rob Clark) [1385845 1385100 1406119]
-- [documentation] rhel: remove drm from DocBook build (Rob Clark) [1406119]
-- [drm] upstream sync to v4.10 (Rob Clark) [1390444 1390443 1330441 1330436 1310324 1406119 1386946 1385880 1385851 1385820 1385760 1385757 1384392 1380814 1377723 1373255 1339127 1305619 1211380]
-- [acpi] acpi / video: Fix lockdep issue (Rob Clark) [1406119]
-- [kernel] virtio: make find_vqs() checkpatch.pl-friendly (Rob Clark) [1406119]
-- [kernel] sched: Export sched_setscheduler_nocheck (Rob Clark) [1406119]
-- [kernel] relay: add global mode support for buffer-only channels (Rob Clark) [1406119]
-- [kernel] kthread: export kthread functions (Rob Clark) [1406119]
-- [x86] locking/atomic, arch/x86: Implement atomic{, 64}_fetch_{add, sub, and, or, xor}() (Rob Clark) [1406119]
-- [sound] drm/i915/dp: DP audio API changes for MST (Rob Clark) [1406119]
-- [x86] drm/i915: Remove .is_mobile field from platform struct (Rob Clark) [1406119]
-- [x86] drm/i915: Account for TSEG size when determining 865G stolen base (Rob Clark) [1406119]
-- [x86] Silence 32bit compiler warning in intel_graphics_stolen() (Rob Clark) [1406119]
-- [x86] drm/i915: Function per early graphics quirk (Rob Clark) [1406119]
-- [x86] drm/i915: Canonicalize stolen memory calculations (Rob Clark) [1406119]
-- [x86] Provide atomic_{or,xor,and} (Rob Clark) [1406119]
-- [x86] Force inlining of atomic ops (Rob Clark) [1406119]
-- [x86] asm: Always inline atomics (Rob Clark) [1406119]
-- [asm-generic] locking, arch: Use ACCESS_ONCE() instead of cast to volatile in atomic_read() (Rob Clark) [1406119]
-- [x86] locking,x86: Kill atomic_or_long() (Rob Clark) [1406119]
-- [kernel] kernel.h: add u64_to_user_ptr() (Rob Clark) [1406119]
-- [kernel] io-mapping: Fixup for different names of writecombine (Rob Clark) [1406119]
-- [kernel] io-mapping.h: s/PAGE_KERNEL_IO/PAGE_KERNEL/ (Rob Clark) [1406119]
-- [kernel] io-mapping: Always create a struct to hold metadata about the io-mapping (Rob Clark) [1406119]
-- [kernel] io-mapping: Specify mapping size for io_mapping_map_wc() (Rob Clark) [1406119]
-- [kernel] rcu: Add rcu_pointer_handoff() (Rob Clark) [1406119]
-
-* Thu Apr 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-651.el7]
-- [netdrv] mlxsw: spectrum_flower: Remove bogus warns in mlxsw_sp_flower_destroy (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: acl: Use PBS type for forward action (Ivan Vecera) [1434591]
-- [netdrv] spectrum: flower: Treat ETH_P_ALL as a special case and translate for HW (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: acl: Fix mlxsw_afa_block_commit error path (Ivan Vecera) [1434591]
-- [netdrv] spectrum: acl_tcam: Fix catchall prio value (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: spectrum: Implement TC flower offload (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: spectrum: Introduce ACL core with simple TCAM implementation (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: resources: Add ACL related resources (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: spectrum: Introduce basic set of flexible key blocks (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: core: Introduce flexible actions support (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: core: Introduce flexible keys support (Ivan Vecera) [1434591]
-- [kernel] include/linux/rwsem.h: add '<linux/err.h>' include (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine Extended Flexible Action Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine Policy Based Switching Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine Rules Copy Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine Port Binding Table (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine TCAM Entry Register Version 2 (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine TCAM Allocation Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine ACL Group Table register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine ACL Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: item: Add helpers for getting pointer into payload for char buffer item (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: item: Add 8bit item helpers (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: spectrum_router: Add support for route replace (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Add support for route append (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Correctly handle identical routes (Ivan Vecera) [1434587]
-- [net] ipv4: fib: Add events for FIB replace and append (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Don't reflect LINKDOWN nexthops (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Flush resources when RIF is deleted (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Reflect nexthop status changes (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Use trap action only for some route types (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Determine offload status using generic function (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: More accurately set offload flag (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Refactor nexthop init routine (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Remove FIB info from FIB entry struct (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Store routes in a more generic way (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Add gateway indication to nexthop group (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Use nexthop's scope to set action type (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Store nexthops in a hash table (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Store nexthop groups in a hash table (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Nullify nexthop's neigh pointer (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Fix typo in comment (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Don't read 'nud_state' without lock (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Remove redundant check (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Simplify neighbour reflection (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Use ordered workqueue for neigh updates (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: core: Queue work immediately instead of delaying it (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: pci: Fix EQE structure definition (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: switchx2: Fix memory leak at skb reallocation (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum: Fix memory leak at skb reallocation (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum: Change ENOTSUPP to EOPNOTSUPP (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum: Fix order of commands in port remove function (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum: Make the add_matchall_tc_entry symmetric (Ivan Vecera) [1434587]
-
-* Wed Apr 12 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-650.el7]
-- [net] sctp: get sock from transport in sctp_transport_update_pmtu (Xin Long) [1412865]
-- [net] sctp: check for dst and pathmtu update in sctp_packet_config (Xin Long) [1412865]
-- [net] sctp: remove return value from sctp_packet_init/config (Xin Long) [1412865]
-- [net] revert "inet: frag: remove hash size assumptions from callers" (David Arcari) [1431878]
-- [scsi] qla2xxx: Update driver version to 8.07.00.38.07.4-k1 (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Defer marking device lost when receiving an RSCN (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Fix typo in driver (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Fix crash in qla2xxx_eh_abort on bad ptr (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Avoid that issuing a LIP triggers a kernel crash (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Add fix to read correct register value for ISP82xx (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Disable the adapter and skip error recovery in case of register disconnect (Himanshu Madhani) [1436940]
-- [scsi] ses: Fix SAS device detection in enclosure (Maurizio Lombardi) [1394089]
-- [scsi] lpfc: Make default for lpfc_use_blk_mq to off (Ewan Milne) [1438933]
-- [scsi] hpsa: cleanup PCI IDs in hpsa driver (Joseph Szczypek) [1433008]
-- [scsi] storvsc: Workaround for virtual DVD SCSI version (Cathy Avery) [1437552]
-- [scsi] drivers: add blist flags (Cathy Avery) [1437552]
-- [iommu] vt-d: fix range computation when making room for large pages (Alex Williamson) [1435612]
-- [target] replace ALUA transition wait/flush with mutex (Mike Christie) [1429008 1407016]
-- [target] tcmu: Allow cmd_time_out to be set to zero (disabled) (Mike Christie) [1429008 1407016]
-- [target] fix race during implicit transition work flushes (Mike Christie) [1429008 1407016]
-- [target] allow userspace to set state to transitioning (Mike Christie) [1429008 1407016]
-- [target] fix ALUA transition timeout handling (Mike Christie) [1429008 1407016]
-- [target] export protocol identifier (Mike Christie) [1429008 1407016]
-- [target] Use system workqueue for ALUA transitions (Mike Christie) [1429008 1407016]
-- [target] fail ALUA transitions for pscsi (Mike Christie) [1429008 1407016]
-- [target] allow ALUA setup for some passthrough backends (Mike Christie) [1429008 1407016]
-- [target] Use a PASSTHROUGH flag instead of transport_types (Mike Christie) [1429008 1407016]
-- [target] user: Fix use-after-free of tcmu_cmds if they are expired (Mike Christie) [1429008 1407016]
-- [target] tcmu: Convert cmd_time_out into backend device attribute (Mike Christie) [1429008 1407016]
-- [target] tcmu: make cmd timeout configurable (Mike Christie) [1429008 1407016]
-- [target] tcmu: add helper to check if dev was configured (Mike Christie) [1429008 1407016]
-- [target] tcmu: return on first Opt parse failure (Mike Christie) [1429008 1407016]
-- [target] tcmu: allow hw_max_sectors greater than 128 (Mike Christie) [1429008 1407016]
-- [infiniband] ib/mlx5: Support creation of a WQ with scatter FCS offload (Kamal Heib) [1409510]
-- [infiniband] ib/mlx5: Enable QP creation with cvlan offload (Kamal Heib) [1409510]
-- [infiniband] ib/mlx5: Enable WQ creation and modification with cvlan offload (Kamal Heib) [1409510]
-- [infiniband] ib/mlx5: Expose vlan offloads capabilities (Kamal Heib) [1409510]
-- [infiniband] ib/uverbs: Enable QP creation with cvlan offload (Kamal Heib) [1409510]
-- [uapi] ib/uverbs: Enable WQ creation and modification with cvlan offload (Kamal Heib) [1409510]
-- [uapi] ib/uverbs: Expose vlan offloads capabilities (Kamal Heib) [1409510]
-- [rdma] ib/core: Add scatter FCS flag to use in WQ creation (Kamal Heib) [1409510]
-- [rdma] ib/core: Enable QP creation with cvlan offload (Kamal Heib) [1409510]
-- [rdma] ib/core: Enable WQ creation and modification with cvlan offload (Kamal Heib) [1409510]
-- [rdma] ib/core: Expose vlan offloads capabilities (Kamal Heib) [1409510]
-- [netdrv] mlx4: reduce OOM risk on arches with large pages (Kamal Heib) [1438409]
-- [netdrv] ib/mlx4: Take source GID by index from HW GID table (Kamal Heib) [1438404]
-- [netdrv] mlx4_en: fix overflow in mlx4_en_init_timestamp() (Kamal Heib) [1438400]
-- [netdrv] mlx4_core: Fix VF overwrite of module param which disables DMFS on new probed PFs (Kamal Heib) [1438385]
-- [netdrv] mlx4: && vs & typo (Kamal Heib) [1438373]
-- [netdrv] mlx4: Spoofcheck and zero MAC can't coexist (Kamal Heib) [1438373]
-- [netdrv] mlx4_core: Avoid delays during VF driver device shutdown (Kamal Heib) [1438365]
-- [powerpc] Add ppc64 hard lockup detector support (Gustavo Duarte) [1226123]
-- [powerpc] oprofile: Disable oprofile NMI timer on ppc64 (Gustavo Duarte) [1226123]
-- [powerpc] boot: Fix zImage TOC alignment (Gustavo Duarte) [1395838]
-- [powerpc] pseries: Don't give a warning when HPT resizing isn't available (David Gibson) [1431922]
-
-* Wed Apr 12 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-649.el7]
-- [netdrv] mlxsw: spectrum_router: Avoid potential packets loss (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Remove unused variable (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Correctly reallocate adjacency entries (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Correctly remove nexthop groups (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Mark split ports as such (Ivan Vecera) [1414400]
-- [net] ipv4: fib: Replay events when registering FIB notifier (Ivan Vecera) [1414400]
-- [netdrv] rocker: Register FIB notifier before creating ports (Ivan Vecera) [1414400]
-- [netdrv] rocker: Implement FIB offload in deferred work (Ivan Vecera) [1414400]
-- [netdrv] rocker: Create an ordered workqueue for FIB offload (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement FIB offload in deferred work (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Create an ordered workqueue for FIB offload (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Don't reflect dead neighs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Change order of operations in removal path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Add missing rollback in error path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_buffers: Limit size of pools (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: resources: Add maximum buffer size (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchib: add MLXSW_PCI dependency (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add policers for trap groups (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add QoS Policer Configuration Register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: resources: Add max cpu policers resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Create a different trap group list for each device (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add BGP trap (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Change trap groups setting (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: resources: Add max trap groups resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Change emad trap group settings (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Add option to choose trap group (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Change trap set function (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchib: Use generic listener struct for events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Use generic listener struct for events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use generic listener struct for events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Introduce generic macro for event (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Use generic listener struct for rx traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use generic listener struct for rx traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Expose generic macros for rx trap (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Create a generic function to register / unregister traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unused traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Implement thermal zone (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Management Fan Speed Limit register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: minimal: Add I2C support for Mellanox ASICs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Invoke driver's init/fini methods only if defined (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Introduce support for I2C bus (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Add bus capability flag (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Flush FIB tables during fini (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add FIB abort warning (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Fix pwm_frequency field size in MFCR register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Correctly dump neighbour activity (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix refcount bug on span entries (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Ignore FIB notification events for non-init namespaces (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix handling of neighbour structure (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Fix the FW ready mask length (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Remove unused including <generated/utsrelease.h> (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix incorrect reuse of MID entries (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchib: Introduce SwitchIB and SwitchIB silicon driver (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Add IB port support (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Add eth prefix to port create and remove (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Add port type (Eth/IB) set API (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Add "eth" prefix to mlxsw_core_port_set (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Add Infiniband switch partition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Make devlink port instances independent of spectrum/switchx2 port instances (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add local-port to Infiniband port mapping (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Infiniband support to PTYS (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add eth prefix to PTYS pack and unpack (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Fix port speed configuration (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Add support for physical port names (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Move port used check outside port remove function (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Move port used check outside port remove function (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Check if port is usable before calling port create (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Zero payload buffers for couple of registers (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Set physical device for port netdevice (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Set physical device for port netdevice (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Move PCI id table definitions into driver modules (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Rename header with HW definitions (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove extra whitespace (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Compare only trees which are in use during tree get (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Save requested prefix bitlist when creating tree (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Convert resources into array (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: cmd: Push resource query defines to cmd.h (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Generare register names automatically (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Use helper macro to define registers (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: item: Make char *buf arg constant for getters (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: item: Make struct mlxsw_item args const (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Fix reset wait for SwitchX2 (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Fix ethernet port initialization (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Make mlxsw_sp_router_fib4_del return void and remove warn (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Use correct tree index for binding (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Flip to the new dev walk API (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Fix misuse of hard_header_len (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix misuse of hard_header_len (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: avoid potential uninitialized data usage (Ivan Vecera) [1414400]
-- [netdrv] doc: update switchdev L3 section (Ivan Vecera) [1414400]
-- [net] switchdev: remove FIB offload infrastructure (Ivan Vecera) [1414400]
-- [netdrv] rocker: use FIB notifications instead of switchdev calls (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Use FIB notifications instead of switchdev calls (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: remove redundant check if err is zero (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Implement max rif resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add max router interface resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add some miscellaneous resources (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Implement max virtual routers resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add max virtual routers resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: profile: Add KVD resources to profile config (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add KVD size relate resources (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: lag resources- use resources data instead of consts (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add lag related resources to resources query (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Make offloads stats functions static (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Change the RX LAG hash function from XOR to CRC (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix sparse warnings (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Implement offload stats ndo and expose HW stats by default (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add support for new ethtool API (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Indicate support of multiple port types (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Report port type according to operational speed (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Report link partner's advertised speeds (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Correctly report autonegotiation (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Set port type before setting its address (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix error path in mlxsw_sp_router_init (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use existing flood setup when adding VLANs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't take multiple references on a FID (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix netevent notifier registration (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix error path in mlxsw_sp_module_init (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix fib entry update path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix failure caused by double fib removal from HW (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Mirror certain packets to CPU (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Allow different traps to have different actions (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Simplify traps definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't set learning when creating vPorts (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unnecessary check in FDB processing (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Offload learning to the switch ASIC (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Configure learning for VLAN-aware bridge port (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't abort on first error when removing VLANs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Make VLAN deletion function symmetric (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Limit number of FDB records per learning session (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: router: Enable neighbors to be created on stacked devices (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add missing flood to router port (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_buffers: Fix pool value handling in mlxsw_sp_sb_tc_pool_bind_set (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Allow packets to be trapped from any PG (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Unmap 802.1Q FID before destroying it (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add missing rollbacks in error path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Fix missing op field fill-up (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Trap loop-backed packets (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add missing packet traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Mark port as active before registering it (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Create PVID vPort before registering netdevice (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove redundant errors from the code (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't return upon error in removal path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix use after free (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add missing DCB rollback in error path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Do not override PAUSE settings (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Do not assume PAUSE frames are disabled (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix compilation error when CLS_ACT isn't set (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add support in matchall mirror TC offloading (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add the Monitoring Port Analyzer register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Monitoring Port Analyzer Table register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Shared Buffer Internal Buffer register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add max span resources to resources query (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add resources query implementation (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Expose per-tc counters via ethtool (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Expose per-priority counters via ethtool (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Prevent invalid ingress buffer mapping (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Prevent overwrite of DCB capability fields (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't emit errors when PFC is disabled (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Indicate support for autonegotiation (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Force link training according to admin state (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Return -ENOENT in case of error (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Trace EMAD messages (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Add the unresolved next-hops probes (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add the nexthop neigh activity update (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement next-hop routing (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM ECMP Update Register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Adjacency Table register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Introduce simplistic KVD linear area manager (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Define sizes of KVD areas (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Add KVD sizes configuration into profile (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Offload neighbours based on NUD state change (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Periodically update the kernel's neigh table (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Unicast Host Table Dump register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Unicast Host Table register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add private neigh table (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Enable L3 interfaces on top of bridge devices (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Configure FIDs based on bridge events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Unsplit the vFID range (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Introduce support for router interfaces (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Edit RIF properties based on netdev events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add couple of lower device helper functions (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement fib4 add/del switchdev obj ops (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Unicast Entry Register definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add virtual router management (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement LPM trees management (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Tree Binding Register definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Structure Tree Register definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Tree Allocation Register definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement private fib (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add traps needed for router implementation (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use action 'discard' when removing traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Interface Table Register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add FDB action to forward to router (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add router interface struct (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add basic ipv4 router initialization (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Initialize ports at the end of init sequence (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router General Configuration Register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove RIF from PVID vPort when joining / leaving LAG (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Sync PVID vPort LAG status (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove VLANs configuration via SELF flag (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Send untagged packets through a port netdev (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add debug prints (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Free resources upon vPort destruction (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Refactor FDB flushing logic (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't count on FID being present (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add FID get / set functions (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Check if port is vPort using its VID (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use per-FID struct for the VLAN-aware bridge (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unused function argument (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use join / leave functions for vFID operations (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Make vFID struct generic (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use FID instead of vFID to setup flooding (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Create a function to map vPort's FID (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use only one function to create vFIDs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove redundant function argument (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use DECLARE_BITMAP() macro (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Centralize VLAN-aware bridge ref counting (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unnecessary function argument (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Make unlinking functions return void (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use WARN_ON() return value (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unnecessary checks from event processing (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Forbid LAG slave from having VLAN uppers (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Sanitize port netdev upper devices (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use notifier_from_errno() in notifier block (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Don't count internal TX header bytes to stats (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't count internal TX header bytes to stats (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Remove deprecated create_workqueue (Ivan Vecera) [1414400]
-
-* Mon Apr 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-648.el7]
-- [x86] intel_rdt: Put group node in rdtgroup_kn_unlock (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Remove duplicate inclusion of linux/cpu.h (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Implement show_options() for resctrlfs (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Call intel_rdt_sched_in() with preemption disabled (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Update task closid immediately on CPU in rmdir and unmount (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Fix setting of closid when adding CPUs to a group (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Update percpu closid immeditately on CPUs affected by changee (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Reset per cpu closids on unmount (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Prevent deadlock against hotplug lock (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Protect info directory from removal (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add info files to Documentation (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Export the minimum number of set mask bits in sysfs (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Propagate error in rdt_mount() properly (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add a missing #include (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add scheduler hook (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add schemata file (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add tasks files (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add cpus file (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add mkdir to resctrl file system (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add "info" files to resctrl file system (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add basic resctrl filesystem support (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Build structures for each resource based on cache topology (Jiri Olsa) [1288964]
-- [x86] documentation, x86: Documentation for Intel resource allocation user interface (Jiri Olsa) [1288964]
-- [x86] cqm: Share PQR_ASSOC related data between CQM and CAT (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Pick up L3/L2 RDT parameters from CPUID (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add Haswell feature discovery (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add CONFIG, Makefile, and basic initialization (Jiri Olsa) [1288964]
-- [x86] cpufeature: Add RDT CPUID feature bits (Jiri Olsa) [1288964]
-- [x86] cpufeature: Move some of the scattered feature bits to x86_capability (Jiri Olsa) [1288964]
-- [x86] intel: Add get_cpu_cache_id function (Jiri Olsa) [1288964]
-- [x86] intel_cacheinfo: Enable cache id in cache info (Jiri Olsa) [1288964]
-- [x86] cacheinfo: Introduce cache id (Jiri Olsa) [1288964]
-
-* Mon Apr 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-647.el7]
-- [tty] n_hdlc: get rid of racy n_hdlc.tbuf ("Herton R. Krzesinski") [1429920] {CVE-2017-2636}
-- [fs] mnt: Prevent pivot_root from creating a loop in the mount tree (Aristeu Rozanski) [1151483] {CVE-2014-7970}
-- [fs] ceph: remove bogus warnings from ceph_releasepage (Jeff Layton) [1428973]
-- [fs] ceph: get caps when handling splice() (Jeff Layton) [1428973]
-- [fs] jbd2: avoid infinite loop when destroying aborted journal (Lukas Czerner) [1433886]
-- [fs] jbd2: fix checkpoint list cleanup (Lukas Czerner) [1433886]
-- [fs] jbd2: simplify calling convention around __jbd2_journal_clean_checkpoint_list (Lukas Czerner) [1433886]
-- [fs] sunrpc: Silence WARN_ON when NFSv4.1 over RDMA is in use (Sachin Prabhu) [1428039]
-- [fs] sunrpc: Don't engage exponential backoff when connection attempt is rejected ("J. Bruce Fields") [1433390]
-- [net] ping: implement proper locking (Jakub Sitnicki) [1438998] {CVE-2017-2671}
-- [lib] Remove string from parman config selection (Ivan Vecera) [1382040]
-- [net] sched: cls_matchall: Reflect HW offloading status (Ivan Vecera) [1382040]
-- [net] sched: cls_matchall: Dump the classifier flags (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Send notification before deleting FIB alias (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Send deletion notification with actual FIB alias type (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Notify about nexthop status changes (Ivan Vecera) [1382040]
-- [lib] Introduce priority array area manager (Ivan Vecera) [1382040]
-- [kernel] list: introduce list_for_each_entry_from_reverse helper (Ivan Vecera) [1382040]
-- [net] sched: tc_mirred: Rename public predicates 'is_tcf_mirred_redirect' and 'is_tcf_mirred_mirror' (Ivan Vecera) [1382040]
-- [net] ipv4: fix value of ->nlmsg_flags reported in RTM_NEWROUTE events (Ivan Vecera) [1382040]
-- [net] ipv4: include NLM_F_APPEND flag in append route notifications (Ivan Vecera) [1382040]
-- [net] for rate-limited ICMP replies save one atomic operation (Sabrina Dubroca) [1428684]
-- [net] reduce cycles spend on ICMP replies that gets rate limited (Sabrina Dubroca) [1428684]
-- [net] icmp: add a global rate limitation (Sabrina Dubroca) [1428684]
-- [net] diag: add missing declarations (Xin Long) [1430276]
-- [net] sctp: use GFP_USER for user-controlled kmalloc (Xin Long) [1430276]
-- [net] sctp: Add process name and pid to deprecation warnings (Xin Long) [1430276]
-- [net] sctp: Reduce log spamming for sctp setsockopt (Xin Long) [1430276]
-- [net] sctp: sctp_association_init: put refs in reverse order (Xin Long) [1430276]
-- [net] sctp: process fwd tsn chunk only when prsctp is enabled (Xin Long) [1430276]
-- [net] sctp: sctp gso should set feature with NETIF_F_SG when calling skb_segment (Xin Long) [1430276]
-- [net] sctp: sctp_transport_lookup_process should rcu_read_unlock when transport is null (Xin Long) [1430276]
-- [net] sctp: change sk state only when it has assocs in sctp_shutdown (Xin Long) [1430276]
-- [net] sctp: assign assoc_id earlier in __sctp_connect (Xin Long) [1430276]
-- [net] sctp: fix SSN comparision (Xin Long) [1430276]
-- [net] sctp: forbid negative length (Xin Long) [1430276]
-- [net] sctp: remove the old ttl expires policy (Xin Long) [1430276]
-- [net] sctp: change to check peer prsctp_capable when using prsctp polices (Xin Long) [1430276]
-- [net] sctp: remove prsctp_param from sctp_chunk (Xin Long) [1430276]
-- [net] sctp: move sent_count to the memory hole in sctp_chunk (Xin Long) [1430276]
-- [net] sctp: fix the handling of SACK Gap Ack blocks (Xin Long) [1430276]
-- [net] sctp: fix overrun in sctp_diag_dump_one() (Xin Long) [1430276]
-- [net] sctp: always initialise sctp_ht_iter::start_fail (Xin Long) [1430276]
-- [net] sctp: terminate rhashtable walk correctly (Xin Long) [1430276]
-- [net] sctp: fix error return code in sctp_init() (Xin Long) [1430276]
-- [net] sctp: use in_compat_syscall for sctp_getsockopt_connectx3 (Xin Long) [1430276]
-- [net] sctp: keep owned chunk in destructor_arg instead of skb->cb (Xin Long) [1430276]
-- [x86] build: Build compressed x86 kernels as PIE when !CONFIG_RELOCATABLE as well (Scott Wood) [1438995]
-- [x86] build: Build compressed x86 kernels as PIE (Scott Wood) [1438995]
-- [block] blk-mq: Fix tagset reinit in the presence of cpu hot-unplug (David Milburn) [1437721]
-
-* Fri Apr 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-646.el7]
-- [fs] kernfs: Enable kernfs build by default in RHEL7 (Carlos Maiolino) [1396983]
-- [fs] kernfs: Fix kernfs interface differences (Carlos Maiolino) [1396983]
-- [fs] kernfs: move the last knowledge of sysfs out from kernfs (Carlos Maiolino) [1396983]
-- [fs] sysfs: fix namespace refcnt leak (Carlos Maiolino) [1396983]
-- [fs] kernfs, sysfs, cgroup: restrict extra perm check on open to sysfs (Carlos Maiolino) [1396983]
-- [fs] kernfs: add back missing error check in kernfs_fop_mmap() (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix a subdir count leak (Carlos Maiolino) [1396983]
-- [fs] kernfs: protect lazy kernfs_iattrs allocation with mutex (Carlos Maiolino) [1396983]
-- [fs] kernfs: cache atomic_write_len in kernfs_open_file (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix off by one error. (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix kernfs_node_from_dentry() (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix hash calculation in kernfs_rename_ns() (Carlos Maiolino) [1396983]
-- [fs] kernfs: add CONFIG_KERNFS (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement kernfs_get_parent(), kernfs_name/path() and friends (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement kernfs_node_from_dentry(), kernfs_root_from_sb() and kernfs_rename() (Carlos Maiolino) [1396983]
-- [fs] kernfs: add kernfs_open_file->priv (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement kernfs_ops->atomic_write_len (Carlos Maiolino) [1396983]
-- [fs] kernfs: allow nodes to be created in the deactivated state (Carlos Maiolino) [1396983]
-- [fs] kernfs: add missing kernfs_active() checks in directory operations (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement kernfs_syscall_ops->remount_fs() and ->show_options() (Carlos Maiolino) [1396983]
-- [fs] kernfs: rename kernfs_dir_ops to kernfs_syscall_ops (Carlos Maiolino) [1396983]
-- [fs] kernfs: invoke dir_ops while holding active ref of the target node (Carlos Maiolino) [1396983]
-- [fs] kernfs, sysfs, driver-core: implement kernfs_remove_self() and its wrappers (Carlos Maiolino) [1396983]
-- [fs] kernfs: remove KERNFS_REMOVED (Carlos Maiolino) [1396983]
-- [fs] kernfs: remove KERNFS_ACTIVE_REF and add kernfs_lockdep() (Carlos Maiolino) [1396983]
-- [fs] kernfs: remove kernfs_addrm_cxt (Carlos Maiolino) [1396983]
-- [fs] kernfs: invoke kernfs_unmap_bin_file() directly from kernfs_deactivate() (Carlos Maiolino) [1396983]
-- [fs] kernfs: restructure removal path to fix possible premature return (Carlos Maiolino) [1396983]
-- [fs] kernfs: replace kernfs_node->u.completion with kernfs_root->deactivate_waitq (Carlos Maiolino) [1396983]
-- [fs] kernfs: make kernfs_deactivate() honor KERNFS_LOCKDEP flag (Carlos Maiolino) [1396983]
-- [fs] kernfs: associate a new kernfs_node with its parent on creation (Carlos Maiolino) [1396983]
-- [fs] kernfs: add struct dentry declaration in kernfs.h (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix get_active failure handling in kernfs_seq_*() (Carlos Maiolino) [1396983]
-- [fs] kernfs: add kernfs_dir_ops (Carlos Maiolino) [1396983]
-- [fs] kernfs: allow negative dentries (Carlos Maiolino) [1396983]
-- [fs] kernfs: update kernfs_rename_ns() to consider KERNFS_STATIC_NAME (Carlos Maiolino) [1396983]
-- [fs] kernfs: mark static names with KERNFS_STATIC_NAME (Carlos Maiolino) [1396983]
-- [fs] kernfs: add REMOVED check to create and rename paths (Carlos Maiolino) [1396983]
-- [fs] kernfs: add @mode to kernfs_create_dir[_ns]() (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs/kernfs/ in internal functions and whatever is left (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs/kernfs/ in global variables (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs/kernfs/ in constants (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs/kernfs/ in various data structures (Carlos Maiolino) [1396983]
-- [fs] kernfs: drop s_ prefix from kernfs_node members (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs_dirent/kernfs_node/ and rename its friends accordingly (Carlos Maiolino) [1396983]
-- [fs] sysfs: bail early from kernfs_file_mmap() to avoid spurious lockdep warning (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement "trusted.*" xattr support (Carlos Maiolino) [1396983]
-- [fs] kernfs: update sysfs_init_inode_attrs() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: remove cross inclusions of internal headers (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: implement kernfs_ns_enabled() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: make sysfs_dirent definition public (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move mount core code to fs/kernfs/mount.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: prepare mount path for kernfs (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: make inode number ida per kernfs_root (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: implement kernfs_create/destroy_root() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move symlink core code to fs/kernfs/symlink.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move file core code to fs/kernfs/file.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move dir core code to fs/kernfs/dir.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move inode code to fs/kernfs/inode.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move internal decls to fs/kernfs/kernfs-internal.h (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs[_find_and]_get() and kernfs_put() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: revamp sysfs_dirent active_ref lockdep annotation (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_notify() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: add kernfs_ops->seq_{start|next|stop}() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_create_file[_ns]() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_ops (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move sysfs_open_file to include/linux/kernfs.h (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_create_dir[_ns]() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_setattr() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_rename[_ns]() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_create_link() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_remove[_by_name[_ns]]() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: add skeletons for kernfs (Carlos Maiolino) [1396983]
-
-* Thu Apr 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-645.el7]
-- [ntb] ntb_netdev not covering all receive errors (Suravee Suthikulpanit) [1303727]
-- [ntb] use ethtool_cmd_speed_set helper to set ethtool speed value (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_netdev: Fix list_for_each_entry exit issue (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_netdev: Fix skb free issue in open (Suravee Suthikulpanit) [1303727]
-- [ntb] correct ntb_peer_spad_read for case when callback is not supplied (Suravee Suthikulpanit) [1303727]
-- [ntb] correct ntb_spad_count comment typo (Suravee Suthikulpanit) [1303727]
-- [ntb] Make _addr functions optional in the API (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix documentation for ntb_peer_db_clear (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_transport: Remove unnecessary call to ntb_peer_spad_read (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix 'request_irq()' and 'free_irq()' inconsistancy (Suravee Suthikulpanit) [1303727]
-- [ntb] fix SKX NTB config space size register offsets (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_transport: Limit memory windows based on available, scratchpads (Suravee Suthikulpanit) [1303727]
-- [ntb] Register and offset values fix for memory window (Suravee Suthikulpanit) [1303727]
-- [ntb] add support for hotplug feature (Suravee Suthikulpanit) [1303727]
-- [ntb] Adding Skylake Xeon NTB support (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: potential info leak in debugfs (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_hw_intel: init peer_addr in struct intel_ntb_dev (Suravee Suthikulpanit) [1303727]
-- [ntb] make DMA_OUT_RESOURCE_TO HZ independent (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_transport: make DMA_OUT_RESOURCE_TO HZ independent (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_hw_intel: Fix typo in module parameter descriptions (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_pingpong: Fix db_init parameter description (Suravee Suthikulpanit) [1303727]
-- [ntb] add DMA error handling for RX DMA (Suravee Suthikulpanit) [1303727]
-- [ntb] add DMA error handling for TX DMA (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_hw_intel: use local variable pdev (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_hw_intel: show BAR size in debugfs info (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: clear link_is_up flag when the link goes down (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_pingpong: Add a debugfs file to get the ping count (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: Add link status and files to debugfs (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: Postpone memory window initialization for the user (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Wait for link before running test (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Return results by reading the run file (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Improve thread handling to increase robustness (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Schedule based on time not on performance (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_transport: Check the number of spads the hardware supports (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: Add memory window debug support (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Allow limiting the size of the memory windows (Suravee Suthikulpanit) [1303727]
-- [ntb] allocate number transport entries depending on size of ring size (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: bug: Ensure the buffer size is large enough to return all spads (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: Fix infinite loop bug when writing spad/peer_spad file (Suravee Suthikulpanit) [1303727]
-- [ntb] Remove _addr functions from ntb_hw_amd (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix incorrect clean up routine in ntb_perf (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix incorrect return check in ntb_perf (Suravee Suthikulpanit) [1303727]
-- [ntb] fix possible NULL dereference (Suravee Suthikulpanit) [1303727]
-- [ntb] add missing setup of translation window (Suravee Suthikulpanit) [1303727]
-- [ntb] stop link work when we do not have memory (Suravee Suthikulpanit) [1303727]
-- [ntb] stop tasklet from spinning forever during shutdown (Suravee Suthikulpanit) [1303727]
-- [ntb] perf test: fix address space confusion (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix macro parameter conflict with field name (Suravee Suthikulpanit) [1303727]
-- [ntb] Add support for AMD PCI-Express Non-Transparent Bridge (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb perf tool (Suravee Suthikulpanit) [1303727]
-- [ntb] Address out of DMA descriptor issue with NTB (Suravee Suthikulpanit) [1303727]
-- [ntb] Clear property bits in BAR value (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_process_tx error path bug (Suravee Suthikulpanit) [1303727]
-- [ntb] fix 32-bit compiler warning (Suravee Suthikulpanit) [1303727]
-- [ntb] unify translation addresses (Suravee Suthikulpanit) [1303727]
-- [ntb] invalid buf pointer in multi-MW setups (Suravee Suthikulpanit) [1303727]
-- [ntb] remove unused variable (Suravee Suthikulpanit) [1303727]
-- [ntb] fix access of free-ed pointer (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix issue where we may be accessing NULL ptr (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix range check on memory window index (Suravee Suthikulpanit) [1303727]
-- [ntb] Improve index handling in B2B MW workaround (Suravee Suthikulpanit) [1303727]
-- [ntb] Use unique DMA channels for TX and RX (Suravee Suthikulpanit) [1303727]
-- [ntb] Remove dma_sync_wait from ntb_async_rx (Suravee Suthikulpanit) [1303727]
-- [ntb] Clean up QP stats info (Suravee Suthikulpanit) [1303727]
-- [ntb] Make the transport list in order of discovery (Suravee Suthikulpanit) [1303727]
-- [ntb] Add PCI Device IDs for Broadwell Xeon (Suravee Suthikulpanit) [1303727]
-- [ntb] Add flow control to the ntb_netdev (Suravee Suthikulpanit) [1303727]
-- [ntb] avoid format string in dev_set_name (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix dereference before check (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix zero size or integer overflow in ntb_set_mw (Suravee Suthikulpanit) [1303727]
-- [ntb] Schedule to receive on QP link up (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix oops in debugfs when transport is half-up (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix transport stats for multiple devices (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix ntb_transport out-of-order RX update (Suravee Suthikulpanit) [1303727]
-- [ntb] Add split BAR output for debugfs stats (Suravee Suthikulpanit) [1303727]
-- [ntb] Change WARN_ON_ONCE to pr_warn_once on unsafe (Suravee Suthikulpanit) [1303727]
-- [ntb] Print driver name and version in module init (Suravee Suthikulpanit) [1303727]
-- [ntb] Increase transport MTU to 64k from 16k (Suravee Suthikulpanit) [1303727]
-- [ntb] Rename Intel code names to platform names (Suravee Suthikulpanit) [1303727]
-- [ntb] Default to CPU memcpy for performance (Suravee Suthikulpanit) [1303727]
-- [ntb] Improve performance with write combining (Suravee Suthikulpanit) [1303727]
-- [ntb] Use NUMA memory in Intel driver (Suravee Suthikulpanit) [1303727]
-- [ntb] Use NUMA memory and DMA chan in transport (Suravee Suthikulpanit) [1303727]
-- [ntb] Rate limit ntb_qp_link_work (Suravee Suthikulpanit) [1303727]
-- [ntb] Add tool test client (Suravee Suthikulpanit) [1303727]
-- [ntb] Add ping pong test client (Suravee Suthikulpanit) [1303727]
-- [ntb] Add parameters for Intel SNB B2B addresses (Suravee Suthikulpanit) [1303727]
-- [ntb] Reset transport QP link stats on down (Suravee Suthikulpanit) [1303727]
-- [ntb] Do not advance transport RX on link down (Suravee Suthikulpanit) [1303727]
-- [ntb] Differentiate transport link down messages (Suravee Suthikulpanit) [1303727]
-- [ntb] Check the device ID to set errata flags (Suravee Suthikulpanit) [1303727]
-- [ntb] Enable link for Intel root port mode in probe (Suravee Suthikulpanit) [1303727]
-- [ntb] Read peer info from local SPAD in transport (Suravee Suthikulpanit) [1303727]
-- [ntb] Split ntb_hw_intel and ntb_transport drivers (Suravee Suthikulpanit) [1303727]
-- [ntb] Add NTB hardware abstraction layer (Suravee Suthikulpanit) [1303727]
-- [ntb] Move files in preparation for NTB abstraction (Suravee Suthikulpanit) [1303727]
-- [ntb] initialize max_mw for Atom before using it (Suravee Suthikulpanit) [1303727]
-- [ntb] iounmap MW reg and vbase in error path (Suravee Suthikulpanit) [1303727]
-- [ntb] Adding split BAR support for Haswell platforms (Suravee Suthikulpanit) [1303727]
-- [ntb] use errata flag set via DID to implement workaround (Suravee Suthikulpanit) [1303727]
-- [ntb] conslidate reading of PPD to move platform detection earlier (Suravee Suthikulpanit) [1303727]
-- [ntb] move platform detection to separate function (Suravee Suthikulpanit) [1303727]
-- [ntb] debugfs device entry (Suravee Suthikulpanit) [1303727]
-- [ntb] Add alignment check to meet hardware requirement (Suravee Suthikulpanit) [1303727]
-- [ntb] correct the spread of queues over mw's (Suravee Suthikulpanit) [1303727]
-- [ntb] Use pci_enable_msix_range() instead of pci_enable_msix() (Suravee Suthikulpanit) [1303727]
-- [ntb] Split ntb_setup_msix() into separate BWD/SNB routines (Suravee Suthikulpanit) [1303727]
-- [ntb] Use pci_msix_vec_count() to obtain number of MSI-Xs (Suravee Suthikulpanit) [1303727]
-- [ntb] Code Style Clean-up (Suravee Suthikulpanit) [1303727]
-- [ntb] client event cleanup (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix leakage of ntb_device::msix_entries[] array (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix typo in setting one translation register (Suravee Suthikulpanit) [1303727]
-- [ntb] Disable interrupts and poll under high load (Suravee Suthikulpanit) [1303727]
-- [ntb] Enable Snoop on Primary Side (Suravee Suthikulpanit) [1303727]
-- [ntb] Document HW errata (Suravee Suthikulpanit) [1303727]
-- [ntb] remove duplicate defines (Suravee Suthikulpanit) [1303727]
-- [ntb] correct dmaengine_get/put usage (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix ntb_transport link down race (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix missed call to pci_enable_msix() (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix NTB-RP Link Up (Suravee Suthikulpanit) [1303727]
-- [ntb] Xeon Doorbell errata workaround (Suravee Suthikulpanit) [1303727]
-- [ntb] convert to dmaengine_unmap_data (Suravee Suthikulpanit) [1303727]
-- [ntb] clean up unnecessary MSI/MSI-X capability find (Suravee Suthikulpanit) [1303727]
-- [ntb] Update Version (Suravee Suthikulpanit) [1303727]
-- [ntb] Comment Fix (Suravee Suthikulpanit) [1303727]
-- [ntb] Remove unused variable (Suravee Suthikulpanit) [1303727]
-- [ntb] Remove References of non-B2B BWD HW (Suravee Suthikulpanit) [1303727]
-- [ntb] NTB-RP support (Suravee Suthikulpanit) [1303727]
-- [ntb] Rename Variables for NTB-RP (Suravee Suthikulpanit) [1303727]
-- [ntb] Use DMA Engine to Transmit and Receive (Suravee Suthikulpanit) [1303727]
-- [ntb] Enable 32bit Support (Suravee Suthikulpanit) [1303727]
-- [ntb] Update Device IDs (Suravee Suthikulpanit) [1303727]
-- [ntb] BWD Link Recovery (Suravee Suthikulpanit) [1303727]
-- [ntb] Xeon Errata Workaround (Suravee Suthikulpanit) [1303727]
-- [dma] async_memcpy: convert to dmaengine_unmap_data (Suravee Suthikulpanit) [1303727]
-- [dma] dmaengine: reference counted unmap data (Suravee Suthikulpanit) [1303727]
-- [dma] dmaengine: add support to provide error result from a DMA transation (Suravee Suthikulpanit) [1303727]
-- [dma] dmaengine: Add helper function to prep for error reporting (Suravee Suthikulpanit) [1303727]
-- [dma] dmaengine: prepare for generic 'unmap' data (Suravee Suthikulpanit) [1303727]
-
-* Thu Apr 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-644.el7]
-- [kernel] userns: Avoid panics by reserving space in user_table for future ucounts ("Eric W. Biederman") [1340238]
-- [mm] slab.h: fix argument order in cache_from_obj's error message (Aristeu Rozanski) [1437645]
-- [x86] platform/uv: Fix calculation of Global Physical Address (Frank Ramsay) [1434837]
-- [pci] Support INTx masking on ConnectX-4 with firmware x.14.1100+ (Myron Stowe) [1437132]
-- [pci] Convert Mellanox broken INTx quirks to be for listed devices only (Myron Stowe) [1437132]
-- [pci] Convert broken INTx masking quirks from HEADER to FINAL (Myron Stowe) [1437132]
-- [acpi] apei: Fix leaked resources (Jerome Marchand) [1173433]
-- [acpi] apei: erst: Fixed leaked resources in erst_init (Jerome Marchand) [1173433]
-- [scsi] ipr: Driver version 2.6.4 (Gustavo Duarte) [1406512]
-- [scsi] ipr: Fix SATA EH hang (Gustavo Duarte) [1406512]
-- [scsi] ipr: Error path locking fixes (Gustavo Duarte) [1406512]
-- [scsi] ipr: Fix abort path race condition (Gustavo Duarte) [1406512]
-- [scsi] ipr: Remove redundant initialization (Gustavo Duarte) [1406512]
-- [scsi] ipr: Fix missed EH wakeup (Gustavo Duarte) [1406512]
-- [netdrv] be2net: Fix endian issue in logical link config command (David Arcari) [1384389]
-- [netdrv] fjes: Fix wrong netdevice feature flags (Yasuaki Ishimatsu) [1435603]
-- [netdrv] bnxt_en: Correct the order of arguments to netdev_err() in bnxt_set_tpa() (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Fix NULL pointer dereference in reopen failure path (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Ignore 0 value in autoneg supported speed from firmware (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Check if firmware LLDP agent is running (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Call bnxt_ulp_stop() during tx timeout (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Perform function reset earlier during probe (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: use eth_hw_addr_random() (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: fix pci cleanup in bnxt_init_one() failure path (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Fix NULL pointer dereference in a failure path during open (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Reject driver probe against all bridge devices (Jonathan Toppins) [1433476]
-- [netdrv] mlx5e: Reorder update stats (Kamal Heib) [1409101]
-- [netdrv] mlx5: Move cached hca caps to designated caps struct (Kamal Heib) [1409101]
-- [netdrv] mlx5e: Expose PCIe statistics to ethtool (Kamal Heib) [1409101]
-- [netdrv] mlx5: Add MPCNT register infrastructure (Kamal Heib) [1409101]
-- [netdrv] mlx5e: Expose physical layer statistical counters to ethtool (Kamal Heib) [1409101]
-- [netdrv] mlx5: Add PPCNT physical layer statistical group infrastructure (Kamal Heib) [1409101]
-- [netdrv] mlx5: Query and cache PCAM, MCAM registers on initialization (Kamal Heib) [1409101]
-- [netdrv] mlx5: Implement PCAM, MCAM access register commands (Kamal Heib) [1409101]
-- [netdrv] mlx5: Expose PCAM, MCAM registers infrastructure (Kamal Heib) [1409101]
-- [netdrv] mlx5e: Implement 1PPS support (Kamal Heib) [1386723]
-- [netdrv] mlx5: Add MTPPS and MTPPSE registers infrastructure (Kamal Heib) [1386723]
-- [infiniband] ib/mlx5: Replace ENOTSUPP usage with EOPNOTSUPP (Kamal Heib) [1386747]
-- [infiniband] ib/mlx5: Add flow tag support (Kamal Heib) [1386747]
-- [infiniband] ib/uverbs: Add support for flow tag (Kamal Heib) [1386747]
-- [rdma] ib/core: Introduce flow tag specification (Kamal Heib) [1386747]
-- [netdrv] mlx5: Consolidate flow rules regardless their flow tag (Kamal Heib) [1386747]
-
-* Tue Apr 04 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-643.el7]
-- [net] flow_dissector: check if arp_eth is null rather than arp (Jonathan Toppins) [1393375]
-- [net] sched: cls_rsvp: complete rcu conversion (Jonathan Toppins) [1393375]
-- [net] sched: cls_tcindex: fix another crash in cls_tcindex (Jonathan Toppins) [1393375]
-- [net] sched: act_mirred: fix a typo in get_dev (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: mark tech preview (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Reflect HW offload status (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Properly handle classifier flags dumping (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: expose priority to offloading netdevice (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Correct matching on ICMPv6 code (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: reduce fl_change stack size (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Disallow duplicate internal elements (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Support matching on ARP (Jonathan Toppins) [1393375]
-- [net] flow_disector: ARP support (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Fix missing addr_type in classify (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Mandate mask when matching on flags (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Use masked key when calling HW offloads (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Use mask for addr_type (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Support matching on ICMP type and code (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add support for matching on flags (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Set the filter Hardware device for all use-cases (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add offload support using egress Hardware device (Jonathan Toppins) [1393375]
-- [net] sched: move tc offload macros to pkt_cls.h (Jonathan Toppins) [1393375]
-- [net] sched: avoid unused variable warning (Jonathan Toppins) [1393375]
-- [net] sched: act_mirred: Add new tc_action_ops get_dev() (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Provide a filter to replace/destroy hardware filter functions (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Try to offload only if skip_hw flag isn't set (Jonathan Toppins) [1393375]
-- [net] sched: Add separate check for skip_hw flag (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: remove from hashtable only in case skip sw flag is not set (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: respect rcu grace period on cls destruction (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add UDP port to tunnel parameters (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Allow setting encapsulation fields as used key (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Support matching on SCTP ports (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: merge filter delete/destroy common code (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: add missing unbind call when destroying flows (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Use a proper mask value for enc key id parameter (Jonathan Toppins) [1393375]
-- [net] sched: stylistic cleanups (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Specify vlan attributes format in the UAPI header (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Remove an unused field from the filter key structure (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Support masking for matching on tcp/udp ports (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Classify packet in ip tunnels (Jonathan Toppins) [1393375]
-- [net] dst: Utility functions to build dst_metadata without supplying an skb (Jonathan Toppins) [1393375]
-- [net] ip_tunnels: Introduce tunnel_id_to_key32() and key32_to_tunnel_id() (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: fix use of uninitialized ethertype variable in cls_flower (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add vlan support (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Avoid dissection of unmasked keys (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Return error when hw can't offload and skip_sw is set (Jonathan Toppins) [1393375]
-- [net] sched: fix tc_should_offload for specific clsact classes (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Introduce support in SKIP SW flag (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Hardware offloaded filters statistics support (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Fix pointer cast (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Introduce hardware offload support (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: set key address type when present (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: fix panic on filter replace (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: flower fix typo (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add full IPv6 addresses to flow_keys (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Get skb hash over flow_keys structure (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Fix compile error (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: introduce Flower classifier (Jonathan Toppins) [1393375]
-
-* Tue Apr 04 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-642.el7]
-- [pci] Enable access to non-standard VPD for Chelsio devices (Sai Vemuri) [1241921]
-- [x86] efi: Do not handle BGRT image in kdump kernel (Bhupesh Sharma) [1268946]
-- [net] qed: Add support for hardware offloaded FCoE (Chad Dupuis) [1384085]
-- [scsi] qedf: Add QLogic FastLinQ offload FCoE driver framework (Chad Dupuis) [1384085]
-- [scsi] qedi: Fix memory leak in tmf response processing (Chad Dupuis) [1384083]
-- [scsi] qedi: Fix possible memory leak in qedi_iscsi_update_conn() (Chad Dupuis) [1384083]
-- [scsi] qedi: fix build, depends on UIO (Chad Dupuis) [1384083]
-- [scsi] qedi: Add QLogic FastLinQ offload iSCSI driver framework (Chad Dupuis) [1384083]
-- [misc] mei: don't wait for os version message reply (Jerry Snitselaar) [1435102]
-- [misc] mei: me: add lewisburg device ids (Jerry Snitselaar) [1435102]
-- [char] tpm_crb: request and relinquish locality 0 (Jerry Snitselaar) [1402149]
-- [char] tpm: make check_locality return bool (Jerry Snitselaar) [1402149]
-- [char] tpm_crb: check for bad response size (Jerry Snitselaar) [1402149]
-- [char] tpm_crb: encapsulate crb_wait_for_reg_32 (Jerry Snitselaar) [1402149]
-- [char] tpm_crb: map locality registers (Jerry Snitselaar) [1402149]
-- [char] tpm crb: Work around BIOS's that report the wrong ACPI region size (Jerry Snitselaar) [1402149]
-- [tools] perf bench numa: Add more comment for -c option (Jiri Olsa) [1018964]
-- [crypto] ccp - Assign DMA commands to the channel's CCP (Suravee Suthikulpanit) [1420977]
-- [netdrv] iwlwifi: mvm: cleanup pending frames in DQA mode (Stanislaw Gruszka) [1431840]
-- [netdrv] mlx4_en: Adding support of turning off link autonegotiation via ethtool (Kamal Heib) [1409502]
-- [cpufreq] intel_pstate: Disable energy efficiency optimization (Prarit Bhargava) [1408828]
-- [powerpc] powernv: Handle OPAL_WRONG_STATE in opal_get_sensor_data() (Steve Best) [1412551]
-- [powerpc] powerpc/64: Fix checksum folding in csum_add() (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/64: Use optimized checksum routines on little-endian (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/64: Fix checksum folding in csum_tcpudp_nofold and ip_fast_csum_nofold (Gustavo Duarte) [1430834]
-- [powerpc] Update parameters for csum_tcpudp_magic & csum_tcpudp_nofold (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: Fix again csum_partial_copy_generic() (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: Fix csum_partial_copy_generic() (Gustavo Duarte) [1430834]
-- [powerpc] lib: Clarify that adde is an instruction and we mean plural (Gustavo Duarte) [1430834]
-- [powerpc] simplify csum_add(a, b) in case a or b is constant 0 (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: optimise csum_partial() loop (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: optimise a few instructions in csum_partial() (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: rewrite csum_partial_copy_generic() based on copy_tofrom_user() (Gustavo Duarte) [1430834]
-- [powerpc] inline ip_fast_csum() (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: checksum_wrappers_64 becomes checksum_wrappers (Gustavo Duarte) [1430834]
-- [powerpc] mark xer clobbered in csum_add() (Gustavo Duarte) [1430834]
-- [powerpc] add support for csum_add() (Gustavo Duarte) [1430834]
-- [powerpc] put csum_tcpudp_magic inline (Gustavo Duarte) [1430834]
-- [firmware] efi: Expose underlying UEFI firmware platform size to userland (Lenny Szubowicz) [1434959]
-
-* Mon Apr 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-641.el7]
-- [x86] mm/kaslr: EFI region is mistakenly included into KASLR VA space for randomization (Baoquan He) [1424943]
-- [x86] kconfig: Remove misleading note regarding hibernation and KASLR (Baoquan He) [1424943]
-- [kernel] uaccess.h: Include linux/sched.h (Baoquan He) [1424943]
-- [x86] microcode/amd: Fix load of builtin microcode with randomized memory (Baoquan He) [1424943]
-- [x86] microcode/amd: Make amd_ucode_patch[] static (Baoquan He) [1424943]
-- [x86] microcode/amd: Fix initrd loading with CONFIG_RANDOMIZE_MEMORY=y (Baoquan He) [1424943]
-- [x86] asm, x86/microcode: Add __PAGE_OFFSET_BASE define on 32-bit (Baoquan He) [1424943]
-- [x86] microcode/intel: Fix initrd loading with CONFIG_RANDOMIZE_MEMORY=y (Baoquan He) [1424943]
-- [x86] microcode: Fix loading precedence (Baoquan He) [1424943]
-- [kernel] kexec: export the value of phys_base instead of symbol address (Baoquan He) [1424943]
-- [kernel] kexec: export KERNEL_IMAGE_SIZE to vmcoreinfo (Baoquan He) [1424943]
-- [x86] revert "kdump, vmcoreinfo: report memory sections virtual addresses" (Baoquan He) [1424943]
-- [kernel] kdump, vmcoreinfo: report memory sections virtual addresses (Baoquan He) [1424943]
-- [x86] mm/64: Enable KASLR for vmemmap memory region (Baoquan He) [1424943]
-- [x86] ptdump: Add section for EFI runtime services (Baoquan He) [1424943]
-- [x86] mm/kaslr: Increase BRK pages for KASLR memory randomization (Baoquan He) [1424943]
-- [x86] mm/kaslr: Fix physical memory calculation on KASLR memory randomization (Baoquan He) [1424943]
-- [x86] mm: Do not reference phys addr beyond kernel (Baoquan He) [1424943]
-- [x86] mm: Add memory hotplug support for KASLR memory randomization (Baoquan He) [1424943]
-- [x86] mm: Enable KASLR for vmalloc memory regions (Baoquan He) [1424943]
-- [x86] mm: Enable KASLR for physical mapping memory regions (Baoquan He) [1424943]
-- [x86] asm: Remove unused L3_PAGE_OFFSET (Baoquan He) [1424943]
-- [x86] mm: Implement ASLR for kernel memory regions (Baoquan He) [1424943]
-- [x86] mm: Separate variable for trampoline PGD (Baoquan He) [1424943]
-- [x86] mm: Add PUD VA support for physical mapping (Baoquan He) [1424943]
-- [x86] mm: Use pte_none() to test for empty PTE (Baoquan He) [1424943]
-- [x86] mm: Update physical mapping variable names (Baoquan He) [1424943]
-- [x86] revert "Use pte_none() to test for empty PTE" (Baoquan He) [1424943]
-- [kernel] sched: Remove lockdep check in sched_move_task() (Oleg Nesterov) [1388158]
-- [kernel] sched/autogroup: Do not use autogroup->tg in zombie threads (Oleg Nesterov) [1388158]
-- [kernel] sched/autogroup: Fix autogroup_move_group() to never skip sched_move_task() (Oleg Nesterov) [1388158]
-- [kernel] sched: Change autogroup_move_group() to use for_each_thread() (Oleg Nesterov) [1388158]
-- [kernel] audit: log module name on delete_module (Richard Guy Briggs) [1426659]
-- [kernel] audit: add feature audit_lost reset (Richard Guy Briggs) [1249813]
-- [kernel] audit: Audit proc/<pid>/cmdline aka proctitle (Richard Guy Briggs) [1299527]
-- [kernel] mm: Create utility function for accessing a tasks commandline value (Richard Guy Briggs) [1299527]
-- [kernel] perf/core: Introduce PMU_EV_CAP_READ_ACTIVE_PKG (Jiri Olsa) [1434753] {CVE-2017-6001}
-- [kernel] perf/core: Generalize event->group_flags (Jiri Olsa) [1434753] {CVE-2017-6001}
-- [kernel] perf/core: Fix concurrent sys_perf_event_open() vs. 'move_group' race (Jiri Olsa) [1434753] {CVE-2017-6001}
-- [kernel] powerpc: Fix copy_file_range syscall (Prarit Bhargava) [1436879]
-- [kernel] s390: set NR_syscalls to 376 (Prarit Bhargava) [1436879]
-- [kernel] userns: Remove user namespaces from tech preview status ("Eric W. Biederman") [1340238]
-- [kernel] userns: By default allow 0 user namespaces in RHEL7 ("Eric W. Biederman") [1340238]
-- [kernel] ucount: Remove the atomicity from ucount->count ("Eric W. Biederman") [1340238]
-- [kernel] userns: Make ucounts lock irq-safe ("Eric W. Biederman") [1340238]
-- [kernel] userns: When the per user per user namespace limit is reached return ENOSPC ("Eric W. Biederman") [1340238]
-- [kenrel] userns: Document per user per user namespace limits ("Eric W. Biederman") [1340238]
-- [kernel] mntns: Add a limit on the number of mount namespaces ("Eric W. Biederman") [1340238 1322495] {CVE-2016-6213}
-- [kernel] netns: Add a limit on the number of net namespaces ("Eric W. Biederman") [1340238]
-- [kernel] ipcns: Add a limit on the number of ipc namespaces ("Eric W. Biederman") [1340238]
-- [kernel] ipc: Initialize ipc_namespace->user_ns early ("Eric W. Biederman") [1340238]
-- [kernel] utsns: Add a limit on the number of uts namespaces ("Eric W. Biederman") [1340238]
-- [kernel] pidns: Add a limit on the number of pid namespaces ("Eric W. Biederman") [1340238]
-- [kernel] userns: Generalize the user namespace count into ucount ("Eric W. Biederman") [1340238]
-- [kernel] userns: Make the count of user namespaces per user ("Eric W. Biederman") [1340238]
-- [kernel] userns: Add a limit on the number of user namespaces ("Eric W. Biederman") [1340238]
-- [kernel] userns: Add per user namespace sysctls ("Eric W. Biederman") [1340238]
-- [kernel] userns: Free user namespaces in process context ("Eric W. Biederman") [1340238]
-- [kernel] sysctl: Stop implicitly passing current into sysctl_table_root.lookup ("Eric W. Biederman") [1340238]
-
-* Fri Mar 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-640.el7]
-- [md] dm error: add DAX support (Jeff Moyer) [1384648 1384644]
-- [dax] rhel: device-dax: only support page-sized faults (Jeff Moyer) [1383489]
-- [md] dm: allow bio-based table to be upgraded to bio-based with DAX support (Jeff Moyer) [1384648 1384644]
-- [md] dm snap: add fake origin_direct_access (Jeff Moyer) [1384648 1384644]
-- [md] dm stripe: add DAX support (Jeff Moyer) [1384644]
-- [md] dm linear: add DAX support (Jeff Moyer) [1384648]
-- [uapi] dm: add infrastructure for DAX support (Jeff Moyer) [1384648 1384644]
-- [kernel] dax: enable dax in the presence of known media errors (badblocks) (Jeff Moyer) [1383825]
-- [dax] device-dax: fix pmd/pte fault fallback handling (Jeff Moyer) [1383489]
-- [dax] fix debug output typo (Jeff Moyer) [1383489]
-- [nvdimm] libnvdimm, pfn: fix memmap reservation size versus 4K alignment (Jeff Moyer) [1383825]
-- [acpi] nfit: fix acpi_nfit_flush_probe() crash (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: do not delete namespace-id 0 (Jeff Moyer) [1383827]
-- [nvdimm] constify device_type structures (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: fix pmem namespace leak, delete when size set to zero (Jeff Moyer) [1383827]
-- [nvdimm] pmem: return EIO on read_pmem() failure (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: fix mishandled nvdimm_clear_poison() return value (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: replace mutex_is_locked() warnings with lockdep_assert_held (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, pfn: fix align attribute (Jeff Moyer) [1383825]
-- [tools] testing/nvdimm: unit test acpi_nfit_ctl() (Jeff Moyer) [1383825]
-- [acpi] nfit: fix bus vs dimm confusion in xlat_status (Jeff Moyer) [1383825]
-- [acpi] nfit: validate ars_status output buffer size (Jeff Moyer) [1383825]
-- [kernel] acpi, nfit, libnvdimm: fix / harden ars_status output length handling (Jeff Moyer) [1383825]
-- [acpi] nfit: fix extended status translations for ACPI DSMs (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, e820: use module_platform_driver (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: use octal for permissions (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: avoid multiple sector calculations (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: remove else after return in nsio_rw_bytes() (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: fix the type of name variable (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm: use consistent naming for request_mem_region() (Jeff Moyer) [1383825]
-- [dax] add region 'id', 'size', and 'align' attributes (Jeff Moyer) [1383489]
-- [dax] device-dax: fix private mapping restriction, permit read-only (Jeff Moyer) [1383489]
-- [dax] device-dax: fail all private mapping attempts (Jeff Moyer) [1383489]
-- [dax] device-dax: check devm_nsio_enable() return value (Jeff Moyer) [1383489]
-- [dax] device-dax: fix percpu_ref_exit ordering (Jeff Moyer) [1383489]
-- [dax] use correct dev_t value (Jeff Moyer) [1383489]
-- [dax] convert devm_create_dax_dev to PTR_ERR (Jeff Moyer) [1383489]
-- [dax] fix mapping size check (Jeff Moyer) [1383489]
-- [dax] fix device-dax region base (Jeff Moyer) [1383489]
-- [dax] check resource alignment at dax region/device create (Jeff Moyer) [1383489]
-- [dax] unmap/truncate on device shutdown (Jeff Moyer) [1383489]
-- [uapi] dax: define a unified inode/address_space for device-dax mappings (Jeff Moyer) [1383489]
-- [dax] convert to the cdev api (Jeff Moyer) [1383489]
-- [dax] embed a struct device in dax_dev (Jeff Moyer) [1383489]
-- [dax] rename fops from dax_dev_ to dax_ (Jeff Moyer) [1383489]
-- [dax] reorder dax_fops function definitions (Jeff Moyer) [1383489]
-- [dax] cleanup needlessly global symbol warnings (Jeff Moyer) [1383489]
-- [dax] use devm_add_action_or_reset() (Jeff Moyer) [1383489]
-- [nvdimm] use the right length of "pmem" (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: check and clear poison before writing to pmem (Jeff Moyer) [1383825]
-- [nvdimm] make CONFIG_NVDIMM_DAX 'bool' (Jeff Moyer) [1383489]
-- [nvdimm] pmem: report error on clear poison failure (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: potential NULL deref on allocation error (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm: allow a platform to force enable label support (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm: use generic iostat interfaces (Jeff Moyer) [1383825]
-- [kernel] blk: introduce generic io stat accounting help function (Jeff Moyer) [1383825]
-- [nvdimm] /dev/dax: fix Kconfig dependency build breakage (Jeff Moyer) [1383489]
-- [nvdimm] libnvdimm, namespace: allow creation of multiple pmem-namespaces per region (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: lift single pmem limit in scan_labels() (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: filter out of range labels in scan_labels() (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: enable allocation of multiple pmem namespaces (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: update label implementation for multi-pmem (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: expand pmem device naming scheme for multi-pmem (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, region: update nd_region_available_dpa() for multi-pmem support (Jeff Moyer) [1383827]
-- [kernel] libnvdimm, namespace: sort namespaces by dpa at init (Jeff Moyer) [1383827]
-- [kernel] libnvdimm, namespace: allow multiple pmem-namespaces per region at scan time (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: unify blk and pmem label scanning (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: refactor uuid_show() into a namespace_to_uuid() helper (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, label: convert label tracking to a linked list (Jeff Moyer) [1383827]
-- [kernel] libnvdimm, region: move region-mapping input-paramters to nd_mapping_desc (Jeff Moyer) [1383825]
-- [nvdimm] reduce duplicated wpq flushes (Jeff Moyer) [1383825]
-- [kernel] libnvdimm: clear the internal poison_list when clearing badblocks (Jeff Moyer) [1383825]
-- [nvdimm] pmem: reduce kmap_atomic sections to the memcpys only (Jeff Moyer) [1383825]
-- [kernel] x86, pmem: use memcpy_mcsafe() for memcpy_from_pmem() (Jeff Moyer) [1383825]
-- [acpi] nfit: don't start a full scrub by default for an MCE (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, region: fix flush hint table thinko (Jeff Moyer) [1383825]
-- [nvdimm] remove duplicate nd_mapping declaration (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: debug invalid interleave-set-cookie values (Jeff Moyer) [1383825]
-- [acpi] nfit: fail DSMs that return non-zero status by default (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: fix devm_nvdimm_memremap() error path (Jeff Moyer) [1383825]
-- [nvdimm] fix PHYS_PFN/PFN_PHYS mixup (Jeff Moyer) [1428115]
-- [nvdimm] libnvdimm: allow legacy (e820) pmem region to clear bad blocks (Jeff Moyer) [1383825]
-- [acpi] nfit, mce: Fix SPA matching logic in MCE handler (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: Fix nvdimm_probe error on NVDIMM-N (Jeff Moyer) [1385037]
-- [nvdimm] Spelling s/unacknoweldged/unacknowledged/ (Jeff Moyer) [1383825]
-- [tools] testing/nvdimm: unit test for acpi_nvdimm_notify() (Jeff Moyer) [1383825]
-- [kernel] acpi, nfit: add dimm device notification support (Jeff Moyer) [1383825]
-- [tools] testing/nvdimm: unit test for acpi_nfit_notify() (Jeff Moyer) [1383825]
-- [tools] testing/nvdimm: fix SIGTERM vs hotplug crash (Jeff Moyer) [1383825]
-- [acpi] nfit: check for the correct event code in notifications (Jeff Moyer) [1369563]
-- [nvdimm] btt: add a size attribute for BTTs (Jeff Moyer) [1379275]
-- [acpi] libnvdimm, nd_blk: mask off reserved status bits (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm-btt: Delete an unnecessary check before the function call "__nd_device_register" (Jeff Moyer) [1379275]
-- [tools] nfit: do an ARS scrub on hitting a latent media error (Jeff Moyer) [1383825]
-- [acpi] nfit: move to nfit/ sub-directory (Jeff Moyer) [1383825]
-- [mm] /dev/dax, core: file operations and dax-mmap (Jeff Moyer) [1383489]
-- [tools] /dev/dax, pmem: direct access to persistent memory (Jeff Moyer) [1383489]
-- [kernel] nfit, libnvdimm: allow an ARS scrub to be triggered on demand (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: register nvdimm_bus devices with an nd_bus driver (Jeff Moyer) [1383825]
-- [nvdimm] pmem: clarify a debug print in pmem_clear_poison (Jeff Moyer) [1383825]
-- [tools] nfit, tools/testing/nvdimm/: unify shutdown paths (Jeff Moyer) [1383825]
-- [tools] libnvdimm: move ->module to struct nvdimm_bus_descriptor (Jeff Moyer) [1383825]
-- [tools] nfit: cleanup acpi_nfit_init calling convention (Jeff Moyer) [1383825]
-- [acpi] nfit: fix _FIT evaluation memory leak + use after free (Jeff Moyer) [1383825]
-- [acpi] nfit: treat virtual ramdisk SPA as pmem region (Jeff Moyer) [1383825]
-- [kernel] block: add QUEUE_FLAG_DAX for devices to advertise their DAX support (Jeff Moyer) [1384648 1384644]
-- [nvdimm] libnvdimm: IS_ERR() usage cleanup (Jeff Moyer) [1383825]
-
-* Fri Mar 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-639.el7]
-- [netdrv] mark the aquantia ethernet driver as tech-preview (David Arcari) [1406021]
-- [netdrv] aquantia: Reset is_gso flag when EOP reached (David Arcari) [1406021]
-- [netdrv] aquantia: Fix for LSO with IPv6 (David Arcari) [1406021]
-- [netdrv] aquantia: Missing spinlock initialization (David Arcari) [1406021]
-- [netdrv] aquantia: Fix packet type detection (TCP/UDP) for IPv6 (David Arcari) [1406021]
-- [netdrv] aquantia: Remove adapter re-opening when MTU changed (David Arcari) [1406021]
-- [netdrv] aquantia: Fix for RX checksum offload (David Arcari) [1406021]
-- [netdrv] aquantia: Copying tx buffers is not needed (David Arcari) [1406021]
-- [netdrv] aquantia: Fixed memory allocation if AQ_CFG_RX_FRAME_MAX > 1 page (David Arcari) [1406021]
-- [netdrv] aquantia: Fixed incorrect buff->len calculation (David Arcari) [1406021]
-- [netdrv] aquantia: Call netdev_register after all initialized (David Arcari) [1406021]
-- [netdrv] aquantia: Null pointer check for aq_nic_ndev_alloc (David Arcari) [1406021]
-- [netdrv] aquantia: Using NETDEV_TX_OK instead 0 (David Arcari) [1406021]
-- [netdrv] aquantia: Fixed missing rtnl_unlock (David Arcari) [1406021]
-- [netdrv] aquantia: Superfluous initialization of "err" (David Arcari) [1406021]
-- [netdrv] aquantia: Using module_pci_driver (David Arcari) [1406021]
-- [netdrv] aquantia: Removed busy_count field (David Arcari) [1406021]
-- [netdrv] aquantia: Removed extra assignment for skb->dev (David Arcari) [1406021]
-- [netdrv] aquantia: remove function aq_ring_tx_deinit (David Arcari) [1406021]
-- [netdrv] aquantia: Add 2500/5000 mbit link modes support (David Arcari) [1406021]
-- [netdrv] aquantia: fix dma_mapping_error test (David Arcari) [1406021]
-- [netdrv] aquantia: atlantic: use new api ethtool_{get|set}_link_ksettings (David Arcari) [1406021]
-- [netdrv] generalize napi_complete_done() (David Arcari) [1406021]
-- [netdrv] aquantia: return -ETIME in macro AQ_HW_WAIT_FOR (David Arcari) [1406021]
-- [netdrv] aquantia: remove another redundant err check (David Arcari) [1406021]
-- [netdrv] aquantia: remove redundant err check (David Arcari) [1406021]
-- [netdrv] aquantia: Integrate AQtion 2.5/5 GB NIC driver (David Arcari) [1406021]
-- [netdrv] aquantia: Receive side scaling (David Arcari) [1406021]
-- [netdrv] aquantia: Ethtool support (David Arcari) [1406021]
-- [netdrv] aquantia: Hardware interface and utility functions (David Arcari) [1406021]
-- [netdrv] aquantia: Atlantic hardware abstraction layer (David Arcari) [1406021]
-- [netdrv] aquantia: PCI operations (David Arcari) [1406021]
-- [netdrv] aquantia: Vector operations (David Arcari) [1406021]
-- [netdrv] aquantia: Atlantic A0 and B0 specific functions (David Arcari) [1406021]
-- [netdrv] aquantia: Support for NIC-specific code (David Arcari) [1406021]
-- [netdrv] aquantia: Low-level hardware interfaces (David Arcari) [1406021]
-- [netdrv] aquantia: Add ring support code (David Arcari) [1406021]
-- [netdrv] aquantia: Common functions and definitions (David Arcari) [1406021]
-- [netdrv] aquantia: Make and configuration files (David Arcari) [1406021]
-- [uapi] ethtool: add support for 2500BaseT and 5000BaseT link modes (David Arcari) [1406021]
-- [uapi] ethtool: add support for 1000BaseX and missing 10G link modes (David Arcari) [1406021]
-
-* Fri Mar 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-638.el7]
-- [netdrv] ieee802154: atusb: fix driver to work with older firmware versions (David Arcari) [1415327]
-- [netdrv] at86rf230: Allow slow GPIO pins for "rstn" (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: do not use the stack for address fetching to make it DMA able (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: make sure we set a randaom extended address if fetching fails (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: do not use the stack for buffers to make them DMA able (David Arcari) [1415327]
-- [bluetooth] btmrvl: drop duplicate header slab.h (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: implement .set_frame_retries ops callback (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: try to read permanent extended address from device (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: store firmware version after retrieval for later use (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: sync header file from firmware for new features (David Arcari) [1415327]
-- [netdrv] ieee802154: fakelb: print number of created fake devices during probe (David Arcari) [1415327]
-- [netdrv] at86rf230: fix cca ed values for rf233 (David Arcari) [1415327]
-- [net] ieee802154: check device type (David Arcari) [1415327]
-- [bluetooth] hci_qca: Use setup_timer Kernel API instead of init_timer (David Arcari) [1415327]
-- [bluetooth] hci_h5: Use setup_timer Kernel API instead of init_timer (David Arcari) [1415327]
-- [bluetooth] hci_bcsp: Use setup_timer Kernel API instead of init_timer (David Arcari) [1415327]
-- [net] bluetooth: __ variants of u8 and friends are not neccessary inside kernel (David Arcari) [1415327]
-- [netdrv] ieee802154: drop duplicate header delay.h (David Arcari) [1415327]
-- [net] bluetooth: Fix using the correct source address type (David Arcari) [1415327]
-- [netdrv] ieee802154: constify ieee802154_ops structures (David Arcari) [1415327]
-- [bluetooth] btwilink: Fix probe return value (David Arcari) [1415327]
-- [net] bluetooth: Fix append max 11 bytes of name to scan rsp data (David Arcari) [1415327]
-- [bluetooth] hci_bcm: Fix autosuspend PM for Lenovo ThinkPad 8 (David Arcari) [1415327]
-- [bluetooth] btusb: Fix atheros firmware download error (David Arcari) [1415327]
-- [net] bluetooth: Refactor append name and appearance (David Arcari) [1415327]
-- [net] bluetooth: Add appearance to default scan rsp data (David Arcari) [1415327]
-- [net] bluetooth: Fix local name in scan rsp (David Arcari) [1415327]
-- [bluetooth] btusb: add entry for Marvell 8997 chipset (David Arcari) [1415327]
-- [bluetooth] Use single return in hci_uart_tty_ioctl() call (David Arcari) [1415327]
-- [bluetooth] BCSP fails to ACK re-transmitted frames from the peer (David Arcari) [1415327]
-- [bluetooth] Tidy-up coding style in hci_bcsp.c (David Arcari) [1415327]
-- [bluetooth] btwilink: Save the packet type before sending (David Arcari) [1415327]
-- [net] bluetooth: Fix not updating scan rsp when adv off (David Arcari) [1415327]
-- [bluetooth] Add a new 04ca:3011 QCA_ROME device (David Arcari) [1415327]
-- [net] bluetooth: Fix NULL pointer dereference in mgmt context (David Arcari) [1415327]
-- [net] bluetooth: Set appearance only for LE capable controllers (David Arcari) [1415327]
-- [net] bluetooth: Fix missing ext info event when setting appearance (David Arcari) [1415327]
-- [net] bluetooth: Add supported data types to ext info changed event (David Arcari) [1415327]
-- [net] bluetooth: Add appearance to Read Ext Controller Info command (David Arcari) [1415327]
-- [net] bluetooth: Factor appending EIR to separate helper (David Arcari) [1415327]
-- [net] bluetooth: Refactor read_ext_controller_info handler (David Arcari) [1415327]
-- [bluetooth] hci_uart: Add Marvell support (David Arcari) [1415327]
-- [bluetooth] hci_uart: Add Nokia Protocol identifier (David Arcari) [1415327]
-- [bluetooth] hci_bcm: Change protocol name (David Arcari) [1415327]
-- [net] bluetooth: Increment management interface revision (David Arcari) [1415327]
-- [net] bluetooth: Fix advertising instance validity check for flags (David Arcari) [1415327]
-- [net] bluetooth: Unify advertising instance flags check (David Arcari) [1415327]
-- [net] bluetooth: Remove unused parameter from tlv_data_is_valid function (David Arcari) [1415327]
-- [net] bluetooth: Add support for appearance in scan rsp (David Arcari) [1415327]
-- [net] bluetooth: Add support for local name in scan rsp (David Arcari) [1415327]
-- [bluetooth] btrtl: Add RTL8822BE Bluetooth device (David Arcari) [1415327]
-- [net] bluetooth: Fix not registering BR/EDR SMP channel with force_bredr flag (David Arcari) [1415327]
-- [net] bluetooth: Use kzalloc instead of kmalloc/memset (David Arcari) [1415327]
-- [net] bluetooth: Increase the subsystem minor version number (David Arcari) [1415327]
-- [net] bluetooth: Fix reason code used for rejecting SCO connections (David Arcari) [1415327]
-- [bluetooth] btqca: remove null checks on edl->data as it is an array (David Arcari) [1415327]
-- [net] bluetooth: Fix wrong New Settings event when closing HCI User Channel (David Arcari) [1415327]
-- [net] bluetooth: Send control open and close messages for HCI user channels (David Arcari) [1415327]
-- [netdrv] fakelb: fix schedule while atomic (David Arcari) [1415327]
-- [net] bluetooth: Append local name and CoD to Extended Controller Info (David Arcari) [1415327]
-- [net] bluetooth: Add framework for Extended Controller Information (David Arcari) [1415327]
-- [bluetooth] btusb: Mark CW6622 devices to have broken link key commands (David Arcari) [1415327]
-- [bluetooth] Remove deprecated create_singlethread_workqueue (David Arcari) [1415327]
-- [net] bluetooth: Handle HCI raw socket transition from unbound to bound (David Arcari) [1415327]
-- [net] bluetooth: Send control open and close messages for HCI raw sockets (David Arcari) [1415327]
-- [net] bluetooth: Add extra channel checks for control open/close messages (David Arcari) [1415327]
-- [net] bluetooth: Assign the channel early when binding HCI sockets (David Arcari) [1415327]
-- [net] bluetooth: Send control open and close only when cookie is present (David Arcari) [1415327]
-- [net] bluetooth: Use numbers for subsystem version string (David Arcari) [1415327]
-- [net] bluetooth: Introduce helper functions for socket cookie handling (David Arcari) [1415327]
-- [bluetooth] add WCNSS dependency for HCI driver (David Arcari) [1415327]
-- [net] bluetooth: Use command status event for Set IO Capability errors (David Arcari) [1415327]
-- [net] bluetooth: Fix wrong Get Clock Information return parameters (David Arcari) [1415327]
-- [net] bluetooth: Use individual flags for certain management events (David Arcari) [1415327]
-- [net] bluetooth: mgmt: Fix sending redundant event for Advertising Instance (David Arcari) [1415327]
-- [net] bluetooth: Add support for sending MGMT commands and events to monitor (David Arcari) [1415327]
-- [net] bluetooth: Add support for sending MGMT open and close to monitor (David Arcari) [1415327]
-- [net] bluetooth: Introduce helper to pack mgmt version information (David Arcari) [1415327]
-- [net] bluetooth: Store control socket cookie and comm information (David Arcari) [1415327]
-- [net] bluetooth: Check SOL_HCI for raw socket options (David Arcari) [1415327]
-- [bluetooth] bcm203x: don't print error when allocating urb fails (David Arcari) [1415327]
-- [bluetooth] btusb: Add support for 0cf3:e009 (David Arcari) [1415327]
-- [net] bluetooth: add printf format attribute to hci_set_[fh]w_info() (David Arcari) [1415327]
-- [bluetooth] btusb, hci_intel: Fix wait_on_bit_timeout() return value checks (David Arcari) [1415327]
-- [bluetooth] Introduce Qualcomm WCNSS SMD based HCI driver (David Arcari) [1415327]
-- [net] bluetooth: Add HCI device identifier for Qualcomm SMD (David Arcari) [1415327]
-- [net] 6lowpan: ndisc: no overreact if no short address is available (David Arcari) [1415327]
-- [net] bluetooth: Add combined LED trigger for controller power (David Arcari) [1415327]
-- [net] bluetooth: Put led_trigger field behind CONFIG_BT_LEDS (David Arcari) [1415327]
-- [char] miscdevice: Use module_misc_device() macro (David Arcari) [1415327]
-- [kernel] miscdevice: Add helper macro for misc device boilerplate (David Arcari) [1415327]
-- [net] bluetooth: Fix hci_sock_recvmsg when MSG_TRUNC is not set (David Arcari) [1415327]
-- [net] bluetooth: Fix bt_sock_recvmsg when MSG_TRUNC is not set (David Arcari) [1415327]
-- [net] bluetooth: split sk_filter in l2cap_sock_recv_cb (David Arcari) [1415327]
-- [net] bluetooth: Fix memory leak at end of hci requests (David Arcari) [1415327]
-- [net] mac802154: use rate limited warnings for malformed frames (David Arcari) [1415327]
-- [net] mac802154: don't warn on unsupported frames (David Arcari) [1415327]
-- [net] mac802154: set phy net namespace for new ifaces (David Arcari) [1415327]
-- [bluetooth] btmrvl: reset is_suspending flag in failure path (David Arcari) [1415327]
-- [bluetooth] bpa10x: Add support for hci_set_fw_info (David Arcari) [1415327]
-- [net] bluetooth: Add debugfs fields for hardware and firmware info (David Arcari) [1415327]
-- [lib] kasprintf.c: introduce kvasprintf_const (David Arcari) [1415327]
-- [net] bluetooth: Move hci_recv_frame and hci_recv_diag prototypes (David Arcari) [1415327]
-- [net] bluetooth: Fix l2cap_sock_setsockopt() with optname BT_RCVMTU (David Arcari) [1415327]
-- [kernel] misc: ti-st: Use int instead of fuzzy char for callback status (David Arcari) [1415327]
-- [net] bluetooth: Increment management interface revision (David Arcari) [1415327]
-- [net] bluetooth: Add Authentication Failed reason to Disconnected Mgmt event (David Arcari) [1415327]
-- [netdrv] mrf24j40: avoid uninitialized byte in SPI transfer to radio (David Arcari) [1415327]
-- [bluetooth] Add support of 13d3:3490 AR3012 device (David Arcari) [1415327]
-- [bluetooth] hci_intel: Remove LPM enabling from setup procedure (David Arcari) [1415327]
-- [net] bluetooth: Rename HCI_BREDR into HCI_PRIMARY (David Arcari) [1415327]
-- [netdrv] fakelb: allow to run as monitor (David Arcari) [1415327]
-- [net] ieee802154: cleanup WARN_ON for fc fetch (David Arcari) [1415327]
-- [netdrv] atusb: don't change csma settings while set channel (David Arcari) [1415327]
-- [net] 6lowpan: ndisc: set invalid unicast short addr to unspec (David Arcari) [1415327]
-- [net] ieee802154: fix skb get fc on big endian (David Arcari) [1415327]
-- [net] ieee802154: 6lowpan: fix intra pan id check (David Arcari) [1415327]
-- [net] ieee802154: add ieee802154_skb_src_pan helper (David Arcari) [1415327]
-- [net] ieee802154: add ieee802154_skb_dst_pan helper (David Arcari) [1415327]
-- [bluetooth] btusb: add support for device 0489:e092 (David Arcari) [1415327]
-- [bluetooth] btmrvl: fix slab-out-of-bounds access in btmrvl_sdio (David Arcari) [1415327]
-- [net] bluetooth: Fix hci_sock_recvmsg return value (David Arcari) [1415327]
-- [net] bluetooth: Fix bt_sock_recvmsg return value (David Arcari) [1415327]
-- [net] ieee802154: allow netns create of lowpan interface (David Arcari) [1415327]
-- [net] ieee802154: add netns support (David Arcari) [1415327]
-- [net] nl802154: move PAD to right position (David Arcari) [1415327]
-- [net] 6lowpan: ndisc: add missing 802.15.4 only check (David Arcari) [1415327]
-- [net] 6lowpan: ndisc: fix double read unlock (David Arcari) [1415327]
-- [net] 6lowpan: add support for 802.15.4 short addr handling (David Arcari) [1415327]
-- [net] 6lowpan: add support for getting short address (David Arcari) [1415327]
-- [net] 6lowpan: introduce 6lowpan-nd (David Arcari) [1415327]
-- [net] ipv6: introduce neighbour discovery ops (David Arcari) [1415327]
-- [net] ipv6: export several functions (David Arcari) [1415327]
-- [net] ndisc: add __ndisc_fill_addr_option function (David Arcari) [1415327]
-- [net] ndisc: add __ndisc_opt_addr_data function (David Arcari) [1415327]
-- [net] ndisc: add __ndisc_opt_addr_space function (David Arcari) [1415327]
-- [net] addrconf: put prefix address add in an own function (David Arcari) [1415327]
-- [net] 6lowpan: remove ipv6 module request (David Arcari) [1415327]
-- [net] 6lowpan: add 802.15.4 short addr slaac (David Arcari) [1415327]
-- [net] 6lowpan: add private neighbour data (David Arcari) [1415327]
-- [net] ieee802154: fix logic error in ieee802154_llsec_parse_dev_addr (David Arcari) [1415327]
-- [netdrv] ieee802154/adf7242: syntax error ifdef DEBUG (David Arcari) [1415327]
-- [bluetooth] Add USB ID 13D3:3487 to ath3k (David Arcari) [1415327]
-- [net] bluetooth: fix power_on vs close race (David Arcari) [1415327]
-- [bluetooth] hci_intel: Fix null gpio desc pointer dereference (David Arcari) [1415327]
-- [bluetooth] btmrvl: add platform specific wakeup interrupt support (David Arcari) [1415327]
-- [net] bluetooth: Add defines for SPI and I2C (David Arcari) [1415327]
-- [bluetooth] ath3k: Silence uninitialized variable warning (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: update my copyright years for this driver (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: implement .set_cca_mode ops callback (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: implement .set_cca_ed_level ops callback (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: implement .set_csma_params ops callback (David Arcari) [1415327]
-- [netdrv] at86rf230: increase sleep to off timings (David Arcari) [1415327]
-- [net] 6lowpan: move mac802154 header (David Arcari) [1415327]
-- [net] 6lowpan: add lowpan_is_ll function (David Arcari) [1415327]
-- [net] 6lowpan: move eui64 uncompress function (David Arcari) [1415327]
-- [net] 6lowpan: iphc: remove unnecessary zero data (David Arcari) [1415327]
-- [net] 6lowpan: iphc: rename add lowpan prefix (David Arcari) [1415327]
-- [net] 6lowpan: move lowpan_802154_dev to 6lowpan (David Arcari) [1415327]
-- [net] 6lowpan: change naming for lowpan private data (David Arcari) [1415327]
-- [net] ieee802154: 6lowpan: fix short addr hash (David Arcari) [1415327]
-- [net] nl802154: avoid address change while running lowpan (David Arcari) [1415327]
-- [net] ieee802154: add short address helpers (David Arcari) [1415327]
-- [kernel] ieee802154: cleanups for ieee802154.h (David Arcari) [1415327]
-- [netdrv] mrf24j40: apply the security-enabled bit on secured outbound frames (David Arcari) [1415327]
-- [netdrv] mrf24j40: fix security-enabled processing on inbound frames (David Arcari) [1415327]
-- [kernel] ieee802154: add security bit check function (David Arcari) [1415327]
-- [bluetooth] hci_bcsp: fix code style (David Arcari) [1415327]
-- [netdrv] ieee802154/adf7242: fix memory leak of firmware (David Arcari) [1415327]
-- [net] 6lowpan: iphc: fix handling of link-local compression (David Arcari) [1415327]
-- [net] bluetooth: Allow setting BT_SECURITY_FIPS with setsockopt (David Arcari) [1415327]
-- [bluetooth] hci_ldisc: Fix null pointer derefence in case of early data (David Arcari) [1415327]
-- [bluetooth] hci_bcm: Add BCM2E71 ACPI ID (David Arcari) [1415327]
-- [net] bluetooth: Ignore unknown advertising packet types (David Arcari) [1415327]
-- [net] bluetooth: Fix setting NO_BREDR advertising flag (David Arcari) [1415327]
-- [net] ipv6: Add checks for 6LOWPAN ARP type (David Arcari) [1415327]
-- [net] tcp: avoid infinite loop in tcp_splice_read() (Davide Caratti) [1430580] {CVE-2017-6214}
-- [net] ipv4: keep skb->dst around in presence of IP options (Sabrina Dubroca) [1433201] {CVE-2017-5970}
-- [net] neigh: only allow init_net to change the default neigh_parms (Hangbin Liu) [1434277]
-- [net] neigh: no need to call lookup_neigh_parms in neigh_parms_alloc (Hangbin Liu) [1434277]
-- [net] ipv6: Paritially checksum full MTU frames (Vlad Yasevich) [1420109]
-- [net] ipv6: Should use consistent conditional judgement for ip6 fragment between __ip6_append_data and ip6_finish_output (Vlad Yasevich) [1420109]
-- [net] udp: disallow UFO for sockets with SO_NO_CHECK option (Vlad Yasevich) [1420109]
-- [net] udp: only allow UFO for packets from SOCK_DGRAM sockets (Vlad Yasevich) [1420109]
-- [net] ipv6: make ECMP route replacement less greedy (Xin Long) [1430267]
-- [net] ipv6: fix multipath route replace error recovery (Xin Long) [1430267]
-- [net] ipv6: fix ECMP route replacement (Xin Long) [1430267]
-- [net] ipv6: do not delete previously existing ECMP routes if add fails (Xin Long) [1430267]
-
-* Thu Mar 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-637.el7]
-- [net] flow_dissector: skb_flow_get_be16() can be static (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Update pptp handling to avoid null pointer deref. (Jonathan Toppins) [1428557]
-- [net] flow dissector: ICMP support (Jonathan Toppins) [1428557]
-- [net] flow_dissector: __skb_flow_dissect() must cap its return value (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add enums for encapsulation keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: __skb_get_hash_symmetric arg can be const (Jonathan Toppins) [1428557]
-- [net] flow_dissector: fix vlan tag handling (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Check skb for VLAN only if skb specified. (Jonathan Toppins) [1428557]
-- [net] flow_dissector: rps: Fix uninitialized flow_keys used in __skb_get_hash possibly (Jonathan Toppins) [1428557]
-- [net] flow_dissector: rps: Add the const for the parameter of flow_keys_have_l4 (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Get vlan priority in addition to vlan id (Jonathan Toppins) [1428557]
-- [net] flow_dissector: For stripped vlan, get vlan info from skb->vlan_tci (Jonathan Toppins) [1428557]
-- [net] rps: Inspect PPTP encapsulated by GRE to get flow hash (Jonathan Toppins) [1428557]
-- [net] pptp: fix byte order warnings (Jonathan Toppins) [1428557]
-- [net] packet: Use symmetric hash for PACKET_FANOUT_HASH. (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Make dissector_uses_key() and skb_flow_dissector_target() public (Jonathan Toppins) [1428557]
-- [net] eth: Pull header from first fragment via eth_get_headlen (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Use same pointer for IPv4 and IPv6 addresses (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Correctly handle parsing FCoE (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix fragment handling for header length computation (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Check for IP fragmentation even if not using IPv4 address (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Copy inner L3 and L4 headers as unaligned on GRE TEB (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix unaligned access in __skb_flow_dissector when used by eth_get_headlen (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Use 'const' where possible. (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix function argument ordering dependency (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Move __get_hash_from_flowi{4, 6} into flow_dissector.c (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Don't use bit fields. (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Ignore flow dissector return value from ___skb_get_hash (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add control/reporting of encapsulation (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add flag to stop parsing when an IPv6 flow label is seen (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add flag to stop parsing at L3 (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Support IPv6 fragment header (Jonathan Toppins) [1428557]
-- [net] ipv6: introduce ipv6_authlen and IP6_OFFSET (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add control/reporting of fragmentation (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add flags argument to skb_flow_dissector functions (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Jump to exit code in __skb_flow_dissect (Jonathan Toppins) [1428557]
-- [net] flowi: Abstract out functions to get flow hash based on flowi (Jonathan Toppins) [1428557]
-- [net] Make __skb_set_sw_hash a general function (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add functions to get skb->hash based on flow structures (Jonathan Toppins) [1428557]
-- [net] Set sk_txhash from a random number (Jonathan Toppins) [1428557]
-- [net] break flow vs skbuff header dependency (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Move skb related functions to skbuff.h (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Pre-initialize ip_proto in __skb_flow_dissect() (Jonathan Toppins) [1428557]
-- [net] flow_dissector: fix ipv6 dst, hop-by-hop and routing ext hdrs (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add support for dst, hop-by-hop and routing ext hdrs (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix MPLS entropy label handling in flow dissector (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add MPLS entropy label in flow_keys (Jonathan Toppins) [1428557]
-- [net] mpls: Change reserved label names to be consistent with netbsd (Jonathan Toppins) [1428557]
-- [net] mpls: Move reserved label definitions (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add GRE keyid in flow_keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add IPv6 flow label to flow_keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add VLAN ID to flow_keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Get rid of IPv6 hash addresses flow keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add keys for TIPC address (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add full IPv6 addresses to flow_keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Get skb hash over flow_keys structure (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Remove superfluous setting of key_basic (Jonathan Toppins) [1428557]
-- [net] mpls: Add definition for IPPROTO_MPLS (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Simplify GRE case in flow_dissector (Jonathan Toppins) [1428557]
-- [net] flow_dissector: do not break if ports are not needed in flowlabel (Jonathan Toppins) [1428557]
-- [net] flow_dissector: remove bogus return in tipc section (Jonathan Toppins) [1428557]
-- [net] flow_dissector: call init_default_flow_dissectors() earlier (Jonathan Toppins) [1428557]
-- [net] flow_dissector: change port array into src, dst tuple (Jonathan Toppins) [1428557]
-- [net] flow_dissector: introduce support for Ethernet addresses (Jonathan Toppins) [1428557]
-- [net] flow_dissector: introduce support for ipv6 addressses (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add missing header includes (Jonathan Toppins) [1428557]
-- [net] flow_dissector: use programable dissector in skb_flow_dissect and friends (Jonathan Toppins) [1428557]
-- [net] flow_dissector: introduce programable flow_dissector (Jonathan Toppins) [1428557]
-- [net] flow_dissector: fix doc for skb_get_poff (Jonathan Toppins) [1428557]
-- [net] move __skb_tx_hash to dev.c (Jonathan Toppins) [1428557]
-- [net] move __skb_get_hash function declaration to flow_dissector.h (Jonathan Toppins) [1428557]
-- [net] flow_dissector: fix doc for __skb_get_hash and remove couple of empty lines (Jonathan Toppins) [1428557]
-- [net] move *skb_get_poff declarations into correct header (Jonathan Toppins) [1428557]
-- [net] flow_dissector: remove unused function flow_get_hlen declaration (Jonathan Toppins) [1428557]
-- [net] change name of flow_dissector header to match the .c file name (Jonathan Toppins) [1428557]
-- [net] sched: sch_choke: Use flow_keys_digest (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add flow_keys digest (Jonathan Toppins) [1428557]
-- [net] sched: Call skb_get_hash_perturb in sch_sfq (Jonathan Toppins) [1428557]
-- [net] sched: Call skb_get_hash_perturb in sch_sfb (Jonathan Toppins) [1428557]
-- [net] sched: Call skb_get_hash_perturb in sch_fq_codel (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add tipc support (Jonathan Toppins) [1428557]
-- [net] sched: fix skb->protocol use in case of accelerated vlan path (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix alignment issue in __skb_flow_get_ports (Jonathan Toppins) [1428557]
-- [net] fix comments for __skb_flow_get_ports() (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Use IPv6 flow label in flow_dissector (Jonathan Toppins) [1428557]
-- [net] Convert uses of __constant_<foo> to <foo> (Jonathan Toppins) [1428557]
-- [net] flow_dissector: small optimizations in IPv4 dissect (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add 802.1ad support (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add support for IPPROTO_IPV6 (Jonathan Toppins) [1428557]
-- [net] flow_dissector: clean up IPIP case (Jonathan Toppins) [1428557]
-
-* Thu Mar 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-636.el7]
-- [scsi] megaraid_sas: Driver version upgrade (Tomas Henzl) [1433861]
-- [scsi] megaraid_sas: raid6 also require cpuSel check same as raid5 (Tomas Henzl) [1433861]
-- [scsi] megaraid_sas: add correct return type check for ldio hint logic for raid1 (Tomas Henzl) [1433861]
-- [scsi] hpsa: fix volume offline state (Joseph Szczypek) [1384611]
-- [scsi] hpsa: update version to 3.4.18-0-RH1 (Joseph Szczypek) [1384611]
-- [scsi] hpsa: do not timeout reset operations (Joseph Szczypek) [1384611]
-- [scsi] hpsa: limit outstanding rescans (Joseph Szczypek) [1384611]
-- [scsi] hpsa: update check for logical volume status (Joseph Szczypek) [1384611]
-- [scsi] hpsa: remove coalescing settings for ioaccel2 (Joseph Szczypek) [1384611]
-- [scsi] hpsa: remove memory allocate failure message (Joseph Szczypek) [1384611]
-- [scsi] hpsa: fallback to use legacy REPORT PHYS command (Joseph Szczypek) [1384611]
-- [scsi] hpsa: use phN for short hex dumps (Joseph Szczypek) [1384611]
-- [scsi] hpsa: add 'ctlr_num' sysfs attribute (Joseph Szczypek) [1384611]
-- [scsi] hpsa: use correct DID_NO_CONNECT hostbyte (Joseph Szczypek) [1384611]
-- [scsi] hpsa: use bus '3' for legacy HBA devices (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct logical resets (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Remove unneeded void pointer cast (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct call to hpsa_do_reset (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct scsi 6byte lba calculation (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Check for null devices in ioaccel submission patch (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Prevent sending bmic commands to externals (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Check for vpd support before sending (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Check for null device pointers (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Determine device external status earlier (Joseph Szczypek) [1384611]
-- [scsi] hpsa: change hpsa_passthru_ioctl timeout (Joseph Szczypek) [1384611]
-- [scsi] hpsa: update driver to 3.4.16-0-RH1 (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct handling of HBA device removal (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct ioaccel2 error procecssing (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct ioaccel state change operation (Joseph Szczypek) [1384611]
-- [scsi] hpsa: add timeouts for driver initiated commands (Joseph Szczypek) [1384611]
-- [scsi] hpsa: add sas_address to sysfs device attibute (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct initialization order issue (Joseph Szczypek) [1384611]
-- [scsi] hpsa: set the enclosure identifier to zero (Joseph Szczypek) [1384611]
-- [scsi] hpsa: remove function definition for sanitize_inquiry_string (Joseph Szczypek) [1384611]
-
-* Wed Mar 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-635.el7]
-- [infiniband] ib/hfi1: Process qp wait list in IRQ thread periodically (Don Dutile) [1382806 1417286]
-- [infiniband] ib/ipoib: Add destination address when re-queue packet (Don Dutile) [1417286]
-- [netdrv] mlx4_core: Use cq quota in SRIOV when creating completion EQs (Don Dutile) [1429188 1417286]
-- [uapi] rdma: Don't reference kernel private header from UAPI header (Don Dutile) [1385326 1417286]
-- [infiniband] ib/rxe: Fix mem_check_range integer overflow (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Fix resid update (Don Dutile) [1384574 1417286]
-- [netdrv] mlx4: Invoke softirqs after napi_reschedule (Don Dutile) [1417286]
-- [netdrv] mlx4: Fix memory leak after mlx4_en_update_priv() (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_core: Avoid command timeouts during VF driver device shutdown (Don Dutile) [1385329 1417286 1429188]
-- [netdrv] mlx5e: Check ets capability before ets query FW command (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Fix update of hash function/key via ethtool (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Modify TIRs hash only when it's needed (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: E-Switch, Re-enable RoCE on mode change only after FDB destroy (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: E-Switch, Err when retrieving steering name-space fails (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Return EOPNOTSUPP when failing to get steering name-space (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Change ENOTSUPP to EOPNOTSUPP (Don Dutile) [1385330 1417286]
-- [infiniband] rdma/cma: Fix unknown symbol when CONFIG_IPV6 is not enabled (Don Dutile) [1417286]
-- [infiniband] ib/rxe: Prevent from completer to operate on non valid QP (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Fix rxe dev insertion to rxe_dev_list (Don Dutile) [1384574 1417286]
-- [infiniband] ib/umem: Release pid in error and ODP flow (Don Dutile) [1417286]
-- [infiniband] rdma/qedr: Dispatch port active event from qedr_add (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Fix and simplify memory leak in PD alloc (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Fix RDMA CM loopback (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Fix formatting (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Mark three functions as static (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Don't reset QP when queues aren't flushed (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Don't spam dmesg if QP is in error state (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Remove CQ spinlock from CM completion handlers (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Return max inline data in QP query result (Don Dutile) [1275823 1417286]
-- [uapi] rdma/qedr: Add uapi header qedr-abi.h (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Fix MTU returned from QP query (Don Dutile) [1275823 1417286]
-- [rdma] core: Add the function ib_mtu_int_to_enum (Don Dutile) [1417286]
-- [uapi] ib/cxgb3: fix misspelling in header guard (Don Dutile) [1417286]
-- [infiniband] ib/iser: remove unused variable from iser_conn struct (Don Dutile) [1417286]
-- [infiniband] ib/iser: Fix sg_tablesize calculation (Don Dutile) [1417286]
-- [infiniband] ib/srp: fix invalid indirect_sg_entries parameter value (Don Dutile) [1417286]
-- [infiniband] ib/srp: fix mr allocation when the device supports sg gaps (Don Dutile) [1417286]
-- [netdrv] mlx5e: Do not recycle pages from emergency reserve (Don Dutile) [1385330 1417286]
-- [netdrv] qed: avoid possible stack overflow in qed_ll2_acquire_connection (Don Dutile) [1275823 1417286]
-- [netdrv] mlx5e: Remove unused variable (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Remove unnecessary checks when setting num channels (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4_en: Remove unnecessary checks when setting num channels (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_core: Eliminate warning messages for SRQ_LIMIT under SRIOV (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_core: Fix when to save some qp context flags for dynamic VST to VGT transitions (Don Dutile) [1385329 1417286 1429188]
-- [netdrv] mlx4_core: Fix racy CQ (Completion Queue) free (Don Dutile) [1385329 1417286 1429188]
-- [netdrv] mlx4: do not call napi_schedule() without care (Don Dutile) [1385329 1417286]
-- [net] svcrdma: avoid duplicate dma unmapping during error recovery (Don Dutile) [1417286]
-- [netdrv] mlx5: Only cancel recovery work when cleaning up device (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Remove WARN_ONCE from adaptive moderation code (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Un-register uplink representor on nic_disable (Don Dutile) [1385330 1417286]
-- [infiniband] iw_cxgb4: do not send RX_DATA_ACK CPLs after close/abort (Don Dutile) [1385866 1417286]
-- [infiniband] iw_cxgb4: free EQ queue memory on last deref (Don Dutile) [1417517 1385866 1417286]
-- [infiniband] iw_cxgb4: refactor sq/rq drain logic (Don Dutile) [1416914 1385866 1417286]
-- [kernel] mlx4_core: Fix raw qp flow steering rules under SRIOV (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_en: Fix type mismatch for 32-bit systems (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4: Remove BUG_ON from ICM allocation routine (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_en: Fix bad WQE issue (Don Dutile) [1385329 1417286 1429188]
-- [netdrv] mlx4_core: Use-after-free causes a resource leak in flow-steering detach (Don Dutile) [1385329 1417286]
-- [netdrv] mlx5e: Disable netdev after close (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Don't sync netdev state when not registered (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Check ets capability before initializing ets settings (Don Dutile) [1386547 1385330 1417286]
-- [kernel] revert "net/mlx5: Add MPCNT register infrastructure" (Don Dutile) [1385330 1417286]
-- [netdrv] revert "net/mlx5e: Expose PCIe statistics to ethtool" (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Prevent setting multicast macs for VFs (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Release FTE lock in error flow (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Mask destination mac value in ethtool steering rules (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Avoid shadowing numa_node (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Cancel recovery work in remove flow (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Check FW limitations on log_max_qp before setting it (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Disable RoCE on the e-switch management port under switchdev mode (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4_en: Fix user prio field in XDP forward (Don Dutile) [1385329 1417286]
-- [infiniband] ib/rxe: Don't check for null ptr in send() (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Drop future atomic/read packets rather than retrying (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Use BTH_PSN_MASK when ACKing duplicate sends (Don Dutile) [1384574 1417286]
-- [infiniband] qedr: Always notify the verb consumer of flushed CQEs (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: clear the vendor error field in the work completion (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: post_send/recv according to QP state (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: ignore inline flag in read verbs (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: modify QP state to error when destroying it (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: return correct value on modify qp (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: return error if destroy CQ failed (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: configure the number of CQEs on CQ creation (Don Dutile) [1275823 1417286]
-- [rdma] ib/cma: Fix a race condition in iboe_addr_get_sgid() (Don Dutile) [1417286]
-- [net] rds: use rb_entry() (Don Dutile) [1417286]
-- [netdrv] mlx5: use rb_entry() (Don Dutile) [1385330 1417286]
-- [infiniband] ib/rxe: Fix a memory leak in rxe_qp_cleanup() (Don Dutile) [1384574 1417286]
-- [netdrv] chelsio: cxgb3: use new api ethtool_{get|set}_link_ksettings (Don Dutile) [1417286]
-- [infiniband] ib/mlx4: fix improper return value (Don Dutile) [1385329 1417286]
-- [infiniband] ib/ocrdma: fix bad initialization (Don Dutile) [1385876 1417286]
-- [infiniband] nes: return value of skb_linearize should be handled (Don Dutile) [1417286]
-- [infiniband] ib/core: fix unmap_sg argument (Don Dutile) [1417286]
-- [infiniband] ib/mthca: Replace pci_pool_alloc by pci_pool_zalloc (Don Dutile) [1417286]
-- [infiniband] mlx5, calc_sq_size(): Make a debug message more informative (Don Dutile) [1385330 1417286]
-- [infiniband] mlx5: Remove a set-but-not-used variable (Don Dutile) [1385330 1417286]
-- [infiniband] mlx5: Use { } instead of { 0 } to init struct (Don Dutile) [1385330 1417286]
-- [infiniband] ib/srp: Make writing the add_target sysfs attr interruptible (Don Dutile) [1417286]
-- [infiniband] ib/srp: Make mapping failures easier to debug (Don Dutile) [1417286]
-- [infiniband] ib/srp: Make login failures easier to debug (Don Dutile) [1417286]
-- [infiniband] ib/srp: Introduce a local variable in srp_add_one() (Don Dutile) [1417286]
-- [infiniband] ib/multicast: Check ib_find_pkey() return value (Don Dutile) [1417286]
-- [infiniband] ipoib: Avoid reading an uninitialized member variable (Don Dutile) [1417286]
-- [infiniband] ib/mad: Fix an array index check (Don Dutile) [1417286]
-- [infiniband] ib/mlx4: Rework special QP creation error path (Don Dutile) [1385329 1417286]
-- [infiniband] ib/usnic: simplify IS_ERR_OR_NULL to IS_ERR (Don Dutile) [1417286]
-- [infiniband] ib/core: Issue DREQ when receiving REQ/REP for stale QP (Don Dutile) [1417286]
-- [infiniband] ib/nes: use new api ethtool_{get|set}_link_ksettings (Don Dutile) [1417286]
-- [infiniband] ib/isert: do not ignore errors in dma_map_single() (Don Dutile) [1417286]
-- [infiniband] rdma: fix buggy code that the compiler warns about (Don Dutile) [1385848 1417286]
-- [infiniband] ib/rdmavt: Avoid queuing work into a destroyed cq kthread worker (Don Dutile) [1385848 1417286]
-- [infiniband] ib/mlx5: avoid bogus -Wmaybe-uninitialized warning (Don Dutile) [1385330 1417286]
-- [uapi] rdma uapi: Use __kernel_sockaddr_storage (Don Dutile) [1417286]
-- [infiniband] ib_isert: log the connection reject message (Don Dutile) [1417286]
-- [net] rds_rdma: log the connection reject message (Don Dutile) [1417286]
-- [infiniband] ib_iser: log the connection reject message (Don Dutile) [1417286]
-- [rdma] rdma_cm: add rdma_consumer_reject_data helper function (Don Dutile) [1417286]
-- [rdma] rdma_cm: add rdma_is_consumer_reject() helper function (Don Dutile) [1417286]
-- [rdma] rdma_cm: add rdma_reject_msg() helper function (Don Dutile) [1417286]
-- [infiniband] qedr: remove pointless NULL check in qedr_post_send() (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: Use list_move_tail instead of list_del/list_add_tail (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: Fix possible memory leak in qedr_create_qp() (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: return -EINVAL if pd is null and avoid null ptr dereference (Don Dutile) [1275823 1417286]
-- [rdma] ib/mad: Eliminate redundant SM class version defines for OPA (Don Dutile) [1417286]
-- [infiniband] ib/mlx5: Properly adjust rate limit on QP state transitions (Don Dutile) [1385326 1385330 1417286]
-- [uapi] ib/uverbs: Extend modify_qp and support packet pacing (Don Dutile) [1385326 1417286]
-- [rdma] ib/core: Support rate limit for packet pacing (Don Dutile) [1385326 1417286]
-- [uapi] ib/mlx5: Report mlx5 packet pacing capabilities when querying device (Don Dutile) [1385326 1385330 1417286]
-- [infiniband] ib/mlx5: Support RAW Ethernet when RoCE is disabled (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Rename RoCE related helpers to reflect being Eth ones (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Refactor registration to netdev notifier (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Use u64 for UMR length (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Avoid system crash when enabling many VFs (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Assign SRQ type earlier (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx4: Fix out-of-range array index in destroy qp flow (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx5: Make create/destroy_ah available to userspace (Don Dutile) [1385330 1417286]
-- [uapi] ib/mlx5: Use kernel driver to help userspace create ah (Don Dutile) [1385330 1417286]
-- [rdma] ib/core: Let create_ah return extended response to user (Don Dutile) [1417286]
-- [uapi] ib/mlx5: Report that device has udata response in create_ah (Don Dutile) [1385330 1417286]
-- [rdma] ib/core: Change ib_resolve_eth_dmac to use it in create AH (Don Dutile) [1417286]
-- [infiniband] ib/mlx5: Add support to match inner packet fields (Don Dutile) [1386703 1385330 1417286]
-- [rdma] ib/core: Introduce inner flow steering (Don Dutile) [1386703 1417286]
-- [infiniband] ib/mlx5: Support Vxlan tunneling specification (Don Dutile) [1385330 1417286]
-- [uapi] ib/uverbs: Add support for Vxlan protocol (Don Dutile) [1386703 1417286]
-- [rdma] ib/core: Align structure ib_flow_spec_type (Don Dutile) [1386703 1417286]
-- [rdma] ib/core: Add flow spec tunneling support (Don Dutile) [1386703 1417286]
-- [uapi] ib/mlx5: Add support for CQE compressing (Don Dutile) [1385330 1417286]
-- [uapi] ib/mlx5: Report mlx5 CQE compression caps during query (Don Dutile) [1385330 1417286]
-- [uapi] ib/mlx5: Report mlx5 multi packet WQE caps during query (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Report multi packet WQE capabilities (Don Dutile) [1385330 1417286]
-- [infiniband] ib/rxe: Increase max number of completions to 32k (Don Dutile) [1384574 1417286]
-- [infiniband] ib/mlx4: Check if GRH is available before using it (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: When no DMFS for IPoIB, don't allow NET_IF QPs (Don Dutile) [1385329 1417286]
-- [infiniband] ib/rxe: Hold refs when running tasklets (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Wait for tasklets to finish before tearing down QP (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Fix ref leak in duplicate_request() (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Fix ref leak in rxe_create_qp() (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Add support for IB_CQ_REPORT_MISSED_EVENTS (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Add support for zero-byte operations (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Unblock loopback by moving skb_out increment (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Don't update the response PSN unless it's going forwards (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Advance the consumer pointer before posting the CQE (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Remove buffer used for printing IP address (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Remove unneeded cast in rxe_srq_from_attr() (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Use DEFINE_SPINLOCK() for spinlock (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: avoid putting a large struct rxe_qp on stack (Don Dutile) [1384574 1417286]
-- [infiniband] ib/hfi1: Define platform_config_table_limits once (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: constify mmu_notifier_ops structure (Don Dutile) [1382806 1417286]
-- [rdma] ib/rdmavt, ib/hfi1, ib/qib: Add inlines for mtu division (Don Dutile) [1382806 1381986 1417286]
-- [infiniband] ib/hfi1, ib/qib: use rvt swqe mr deref helper (Don Dutile) [1382806 1381986 1417286]
-- [rdma] ib/rdmavt: Add swqe mr deref helper (Don Dutile) [1385848 1417286]
-- [infiniband] ib/hfi1: Avoid credit return allocation for cpu-less NUMA nodes (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1, ib/qib: Use new send completion helper (Don Dutile) [1382806 1381986 1417286]
-- [rdma] ib/rdmavt: Add a send completion helper (Don Dutile) [1385848 1417286]
-- [infiniband] ib/qib: Use standard refcount wrapper for QPs (Don Dutile) [1381986 1417286]
-- [infiniband] ib/hfi1: Use reference count wrapper for MRs (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Replace qp->refcount release code with standard driver wrapper (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Preserve external device completed bit (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Remove critical section gap in sc_buffer_alloc() (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Remove usage of qp->s_cur_sge (Don Dutile) [1382806 1417286]
-- [infiniband] ib/rdmavt: Add trace of MR segs (Don Dutile) [1385848 1417286]
-- [infiniband] ib/hfi1: Add special setting for low power AOC (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Remove definition of unused hfi1_affinity struct (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Remove dependence on qp->s_cur_size (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Show statistics counters under IB stats interface (Don Dutile) [1382806 1417286]
-- [infiniband] ib/rdmavt: Fix trace hierarchy (Don Dutile) [1385848 1417286]
-- [uapi] ib/hfi1: Disable header suppression for short packets (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Export 8051 memory and LCB registers via debugfs (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Use non-atomic __test_and_clear_bit in hot path (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Fix dc8051 multiple qword memory reads (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Read new EPROM format (Don Dutile) [1382806 1417286]
-- [netdrv] mlx5e: use pad format string for dma_addr_t (Don Dutile) [1385330 1417286]
-- [netdrv] cxgb4/cxgb4vf: Remove deprecated module parameters (Don Dutile) [1385866 1417286]
-- [infiniband] iw_cxgb4: Fix error return code in c4iw_rdev_open() (Don Dutile) [1385866 1417286]
-- [crypto] chcr - checking for IS_ERR() instead of NULL (Don Dutile) [1417286]
-- [netdrv] mlx4: use reset to set mac header (Don Dutile) [1385329 1417286]
-- [infiniband] remove WARN that is not kernel bug (Don Dutile) [1417286]
-- [infiniband] ib/ipoib: Remove and fix debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/isert: Remove and fix debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/rxe: Remove and fix debug prints after allocation failure (Don Dutile) [1384574 1417286]
-- [infiniband] ib/ocrdma: Remove and fix debug prints after allocation failure (Don Dutile) [1385876 1417286]
-- [infiniband] ib/usninc: Remove and fix debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/mthca: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/nes: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/qib: Remove debug prints after allocation failure (Don Dutile) [1381986 1417286]
-- [infiniband] ib/cxgb4: Remove debug prints after allocation failure (Don Dutile) [1385866 1417286]
-- [infiniband] ib/cxgb3: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/hfi1: Remove debug prints after allocation failure (Don Dutile) [1382806 1417286]
-- [infiniband] ib/mlx5: Remove debug prints after allocation failure (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx4: Remove debug prints after allocation failure (Don Dutile) [1385329 1417286]
-- [infiniband] ib/core: Release allocated memory in cache setup failure (Don Dutile) [1417286]
-- [infiniband] ib/core: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/mad: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [netdrv] mlx4: fix use-after-free in mlx4_en_fold_software_stats() (Don Dutile) [1385329 1417286]
-- [netdrv] mlx5e: Save the represntor netdevice as part of the representor (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: skip loopback selftest with !CONFIG_INET (Don Dutile) [1386660 1385330 1417286]
-- [netdrv] mlx5e: Create UMR MKey per RQ (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Move function mlx5e_create_umr_mkey (Don Dutile) [1385330 1417286]
-- [kernel] mlx5e: Implement Fragmented Work Queue (WQ) (Don Dutile) [1368400 1428349 1417286 1385330]
-- [net] svcrdma: Further clean-up of svc_rdma_get_inv_rkey() (Don Dutile) [1417286]
-- [net] svcrdma: Break up dprintk format in svc_rdma_accept() (Don Dutile) [1417286]
-- [net] svcrdma: Remove unused variable in rdma_copy_tail() (Don Dutile) [1417286]
-- [net] svcrdma: Remove unused variables in xprt_rdma_bc_allocate() (Don Dutile) [1417286]
-- [net] svcrdma: Remove svc_rdma_op_ctxt::wc_status (Don Dutile) [1417286]
-- [net] svcrdma: Remove DMA map accounting (Don Dutile) [1417286]
-- [net] svcrdma: Remove BH-disabled spin locking in svc_rdma_send() (Don Dutile) [1417286]
-- [net] svcrdma: Renovate sendto chunk list parsing (Don Dutile) [1417286]
-- [net] svcrdma: Clear xpt_bc_xps in xprt_setup_rdma_bc() error exit arm (Don Dutile) [1417286]
-- [netdrv] ethernet :mellanox :mlx5: Replace pci_pool_alloc by pci_pool_zalloc (Don Dutile) [1385330 1417286]
-- [netdrv] ethernet :mellanox :mlx4: Replace pci_pool_alloc by pci_pool_zalloc (Don Dutile) [1385329 1417286]
-- [kernel] pci: mm: add pci_pool_zalloc() call (Don Dutile) [1417286]
-- [crypto] chcr - Move tfm ctx variable to request context (Don Dutile) [1417286]
-- [crypto] chcr - Use SHASH_DESC_ON_STACK (Don Dutile) [1417286]
-- [crypto] chcr - Adjust Dest. buffer size (Don Dutile) [1417286]
-- [crypto] chcr - Calculate Reverse round key in setkey callback (Don Dutile) [1417286]
-- [crypto] chcr - Remove dynamic allocation (Don Dutile) [1417286]
-- [crypto] chcr - Fixes Unchecked dereference inside function (Don Dutile) [1417286]
-- [crypto] chcr - Added new structure chcr_wr (Don Dutile) [1417286]
-- [crypto] chcr - Cosmetic change (Don Dutile) [1417286]
-- [net] xprtrdma: Relocate connection helper functions (Don Dutile) [1417286]
-- [net] xprtrdma: Update dprintk in rpcrdma_count_chunks (Don Dutile) [1417286]
-- [net] xprtrdma: Shorten QP access error message (Don Dutile) [1417286]
-- [net] xprtrdma: Squelch "max send, max recv" messages at connect time (Don Dutile) [1417286]
-- [net] xprtrdma: Update documenting comment (Don Dutile) [1417286]
-- [net] xprtrdma: Refactor FRMR invalidation (Don Dutile) [1417286]
-- [net] xprtrdma: Avoid calls to ro_unmap_safe() (Don Dutile) [1417286]
-- [net] xprtrdma: Address coverity complaint about wait_for_completion() (Don Dutile) [1417286]
-- [net] xprtrdma: Support for SG_GAP devices (Don Dutile) [1417286]
-- [net] xprtrdma: Make FRWR send queue entry accounting more accurate (Don Dutile) [1417286]
-- [net] xprtrdma: Cap size of callback buffer resources (Don Dutile) [1417286]
-- [netdrv] mlx4: give precise rx/tx bytes/packets counters (Don Dutile) [1385329 1417286]
-- [scsi] srp_transport: Move queuecommand() wait code to SCSI core (Don Dutile) [1417286]
-- [netdrv] mlx5e: Add CQE compression user control (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Moves pflags to priv->params (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Add support for loopback selftest (Don Dutile) [1386660 1385330 1417286]
-- [netdrv] mlx5e: Add support for ethtool self diagnostics test (Don Dutile) [1386660 1385330 1417286]
-- [netdrv] mlx5e: Add DCBX control interface (Don Dutile) [1386547 1385330 1417286]
-- [netdrv] mlx5e: ConnectX-4 firmware support for DCBX (Don Dutile) [1386547 1385330 1417286]
-- [kernel] mlx5: Add DCBX firmware commands support (Don Dutile) [1386547 1385330 1417286]
-- [netdrv] mlx5e: Read ETS settings directly from firmware (Don Dutile) [1386547 1385330 1417286]
-- [kernel] mlx5e: Support DCBX CEE API (Don Dutile) [1386547 1385330 1417286]
-- [netdrv] mlx5e: Add qos capability check (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4: do not use priv->stats_lock in mlx4_en_auto_moderation() (Don Dutile) [1385329 1417286]
-- [netdrv] mlx5: remove a duplicate condition (Don Dutile) [1385330 1417286]
-- [netdrv] cxgb4: fix memory leak on txq_info (Don Dutile) [1385330 1385866 1417286]
-- [netdrv] mlx4: reorganize struct mlx4_en_tx_ring (Don Dutile) [1385330 1385329 1417286]
-- [netdrv] mlx5: E-Switch, Add control for inline mode (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Enable to query min inline for a specific vport (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Support VF vport link state control for SRIOV switchdev mode (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4: avoid unnecessary dirtying of critical fields (Don Dutile) [1385329 1417286]
-- [target] cxgb4: Allocate Tx queues dynamically (Don Dutile) [1385866 1417286]
-- [netdrv] mlx5e: Expose PCIe statistics to ethtool (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Add MPCNT register infrastructure (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Set driver version into firmware (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Set driver version infrastructure (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Add port module event counters to ethtool stats (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Add handling for port module event (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Port module event hardware structures (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Make the command interface cache more flexible (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4_core: Use device ID defines (Don Dutile) [1385329 1417286]
-- [kernel] pci: Add Mellanox device IDs (Don Dutile) [1387321 1417286]
-- [net] rds: tcp: Force every connection to be initiated by numerically smaller IP address (Don Dutile) [1417286]
-- [net] rds: tcp: Track peer's connection generation number (Don Dutile) [1417286]
-- [net] rds: tcp: set RDS_FLAG_RETRANSMITTED in cp_retrans list (Don Dutile) [1417286]
-- [netdrv] mlx5e: remove napi_hash_del() calls (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4_en: remove napi_hash_del() call (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: Fix port query for 56Gb Ethernet links (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: Put non zero value in max_ah device attribute (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: Handle well-known-gid in mad_demux processing (Don Dutile) [1385329 1417286]
-- [rdma] ib/mlx4: Handle IPv4 header when demultiplexing MAD (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: Set traffic class in AH (Don Dutile) [1385329 1417286]
-- [infiniband] ib/ipoib: Remove can't use GFP_NOIO warning (Don Dutile) [1362586 1417286]
-- [infiniband] ib/mlx5: Limit mkey page size to 2GB (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Fix reported max SGE calculation (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Wait for all async command completions to complete (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Put non zero value in max_ah (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Fix atomic cap in indirect UMR (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Replace numerical constant with predefined MACRO (Don Dutile) [1385330 1417286]
-- [infiniband] ib/core: Save QP in ib_flow structure (Don Dutile) [1417286]
-- [infiniband] ib/hfi1: Optimize pio_buf and send_context structs (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Get rid of divide in pio buffer allocator (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Add active channel and backplane support for integrated devices (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Optimize devdata cachelines (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Unify access to GUID entries (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Optimize pio cachelines (Don Dutile) [1382806 1417286]
-- [rdma] ib/rdmvat: Organize hot path calldowns into a single cacheline (Don Dutile) [1382806 1417286]
-- [rdma] ib/hfi1: Optimize lkey validation structures (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Inline sdma_txclean() for verbs pio (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Add unique txwait_lock for txreq events (Don Dutile) [1382806 1417286]
-- [netdrv] mlx5e: Add basic TC tunnel set action for SRIOV offloads (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Add ndo_udp_tunnel_add to VF representors (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Support encap id when setting new steering entry (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Add creation flags when adding new flow table (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Check max encap header size capability (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Move alloc/dealloc encap commands declarations to common header file (Don Dutile) [1385330 1417286]
-- [net] rds: tcp: start multipath acceptor loop at 0 (Don Dutile) [1417286]
-- [net] rds: tcp: report addr/port info based on TCP socket in rds-info (Don Dutile) [1417286]
-- [scsi] replace custom approach to hexdump small buffers (Don Dutile) [1417286]
-- [netdrv] mlx4_en: Refactor the XDP forwarding rings scheme (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_en: add xdp forwarding and data write support (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_en: Add TX_XDP for CQ types (Don Dutile) [1385329 1417286]
-- [netdrv] mlx5e: Add tc support for FWD rule with counter (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Add option to add fwd rule with counter (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Add multi dest support (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Group similer rules under the same fte (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Refactor find_flow_rule (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Use fte status to decide on firmware command (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Don't unlock fte while still using it (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Add SRIOV VF max rate configuration support (Don Dutile) [1386713 1385330 1417286]
-- [netdrv] mlx5: Introduce E-switch QoS management (Don Dutile) [1386713 1385330 1417286]
-- [kernel] mlx5: Introduce TSAR manipulation firmware commands (Don Dutile) [1386713 1385330 1417286]
-- [netdrv] mlx5: Add ConnectX-5 PCIe 4.0 VF device ID (Don Dutile) [1385330 1387321 1417286]
-- [netdrv] mlx5: Fix length of async_event_mask (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Ensure SRQ physical address structure endianness (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Update struct mlx5_ifc_xrqc_bits (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Skip handling unknown events (Don Dutile) [1385330 1417286]
-- [infiniband] ib/ipoib: Flip to new dev walk API (Don Dutile) [1417286]
-- [infiniband] ib/core: Flip to the new dev walk API (Don Dutile) [1417286]
-- [net] rds: Remove duplicate prefix from rds_conn_path_error use (Don Dutile) [1417286]
-- [net] rds: Remove unused rds_conn_error (Don Dutile) [1417286]
-- [infiniband] ib/rxe: Fix sending out loopback packet on netdev interface (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Avoid scheduling tasklet for userspace QP (Don Dutile) [1384574 1417286]
-
-* Tue Mar 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-634.el7]
-- [net] pktgen: add needed include file (Ivan Vecera) [1382040]
-- [net] Add net-device param to the get offloaded stats ndo (Ivan Vecera) [1382040]
-- [net] core: Correctly iterate over lower adjacency list (Ivan Vecera) [1382040]
-- [net] switchdev: Execute bridge ndos only for bridge ports (Ivan Vecera) [1382040]
-- [net] Fix compilation error when CLS_ACT isn't set (Ivan Vecera) [1382040]
-- [net] Add couple of lower device helper functions (Ivan Vecera) [1382040]
-- [net] pktgen: fix UDP checksum computation (Ivan Vecera) [1382040]
-- [net] pktgen: Add UDPCSUM flag to support UDP checksums (Ivan Vecera) [1382040]
-- [net] devlink: Add E-Switch inline mode control (Ivan Vecera) [1382040]
-- [net] neigh: Fix netevent NETEVENT_DELAY_PROBE_TIME_UPDATE notification (Ivan Vecera) [1382040]
-- [net] sched: cls_matchall: Fix error path (Ivan Vecera) [1382040]
-- [net] sched: matchall: Fix configuration race (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Allow for consistent FIB dumping (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Convert FIB notification chain to be atomic (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Add fib_info_hold() helper (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Export free_fib_info() (Ivan Vecera) [1382040]
-- [net] neigh: Send netevent after marking neigh as dead (Ivan Vecera) [1382040]
-- [net] sched: respect rcu grace period on cls destruction (Ivan Vecera) [1382040]
-- [net] fib: introduce FIB info offload flag helpers (Ivan Vecera) [1382040]
-- [net] fib: introduce FIB notification infrastructure (Ivan Vecera) [1382040]
-- [net] core: Add offload stats to if_stats_msg (Ivan Vecera) [1382040]
-- [net] netdevice: Add offload statistics ndo (Ivan Vecera) [1382040]
-- [net] sched: act_mirred: Add helper inlines to access tcf_mirred info. (Ivan Vecera) [1382040]
-- [net] sched: act_mirred: add helper inlines to access tcf_mirred info (Ivan Vecera) [1382040]
-- [net] sched: Add match-all classifier hw offloading. (Ivan Vecera) [1382040]
-- [net] sched: introduce Match-all classifier (Ivan Vecera) [1382040]
-- [kernel] devlink: fix trace format string (Ivan Vecera) [1382040]
-- [kernel] tracing: change owner name to driver name for devlink hwmsg tracepoint (Ivan Vecera) [1382040]
-- [net] devlink: add hardware messages tracing facility (Ivan Vecera) [1382040]
-- [net] neigh: Send a notification when DELAY_PROBE_TIME changes (Ivan Vecera) [1382040]
-- [kernel] list_nulls: fix missing header (Ivan Vecera) [1382040]
-- [net] gro: use min_t() in skb_gro_reset_offset() (Slava Shwartsman) [1371812]
-- [net] gro: Disable frag0 optimization on IPv6 ext headers (Slava Shwartsman) [1371812]
-- [net] gro: Enter slow-path if there is no tailroom (Slava Shwartsman) [1371812]
-- [scsi] be2iscsi: do not lock the session->lock spinlock twice (Maurizio Lombardi) [1436346]
-- [scsi] be2iscsi: Fix closing of connection (Maurizio Lombardi) [1394016]
-- [scsi] be2iscsi: Check tag in beiscsi_mccq_compl_wait (Maurizio Lombardi) [1394016]
-
-* Tue Mar 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-633.el7]
-- [tools] perf diff: Fix -o/--order option behavior (again) (Jiri Olsa) [1425612]
-- [tools] perf diff: Fix segfault on 'perf diff -o N' option (Jiri Olsa) [1425612]
-- [tools] perf ftrace: Add ftrace.tracer config option (Jiri Olsa) [1425612]
-- [tools] perf tools: Create for_each_event macro for tracepoints iteration (Jiri Olsa) [1425612]
-- [tools] tools lib api fs: Add bpf_fs filesystem detector (Jiri Olsa) [1425612]
-- [tools] tools perf util: Make rm_rf(path) argument const (Jiri Olsa) [1425612]
-- [tools] perf callchain: Reference count maps (Jiri Olsa) [1425612]
-- [tools] perf tools: Propagate perf_config() errors (Jiri Olsa) [1425612]
-- [tools] perf config: Do not consider an error not to have any perfconfig file (Jiri Olsa) [1425612]
-- [tools] perf ftrace: Remove needless code setting default tracer (Jiri Olsa) [1425612]
-- [tools] perf ftrace: Make 'function_graph' be the default tracer (Jiri Olsa) [1425612]
-- [tools] perf ftrace: Introduce new 'ftrace' tool (Jiri Olsa) [1425612]
-- [tools] perf util: Add more debug message on failure path (Jiri Olsa) [1425612]
-- [tools] perf util: Save pid-cmdline mapping into tracing header (Jiri Olsa) [1425612]
-- [tools] perf scripting perl: Do not die() when not founding event for a type (Jiri Olsa) [1425612]
-- [tools] perf probe: Delete an unnecessary assignment in try_to_find_absolute_address() (Jiri Olsa) [1425612]
-- [tools] perf probe: Delete an unnecessary check in try_to_find_absolute_address() (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix wrong register name for arm64 (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Coalesce by default only by pid, iaddr (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Display Total records column in offset view (Jiri Olsa) [1425612]
-- [tools] perf hists browser: Add e/c hotkeys to expand/collapse callchain for current entry (Jiri Olsa) [1425612]
-- [tools] perf hists browser: Put hist_entry folding logic into single function (Jiri Olsa) [1425612]
-- [tools] perf unwind: Fix looking up dwarf unwind stack info (Jiri Olsa) [1425612]
-- [tools] perf evlist: Fix typo in deliver_sample() (Jiri Olsa) [1425612]
-- [tools] perf tools: Move two variables usied in libperf from perf.c (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Show total wait times for summary (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add --state option (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Account thread wait time separately (Jiri Olsa) [1425612]
-- [tools] perf script: Also allow forcing reading of non-root owned files by root (Jiri Olsa) [1425612]
-- [tools] perf script: Fix man page about --dump-raw-trace option (Jiri Olsa) [1425612]
-- [tools] tools lib subcmd: Fix missing member name (Jiri Olsa) [1425612]
-- [tools] perf tools: Remove unneccessary feature-dwarf warning (Jiri Olsa) [1425612]
-- [tools] perf pmu: Factor out scale conversion code (Jiri Olsa) [1425612]
-- [tools] perf record: Add switch-output time option argument (Jiri Olsa) [1425612]
-- [tools] perf record: Add switch-output size warning (Jiri Olsa) [1425612]
-- [tools] perf record: Add switch-output size option argument (Jiri Olsa) [1425612]
-- [tools] perf record: Change switch-output option to take optional argument (Jiri Olsa) [1425612]
-- [tools] perf record: Add struct switch_output (Jiri Olsa) [1425612]
-- [tools] perf tools: Add unit_number__scnprintf function (Jiri Olsa) [1425612]
-- [tools] perf evlist: Fix typo in perf_evlist__start_workload() (Jiri Olsa) [1425612]
-- [tools] perf trace: Allow specifying list of syscalls and events in -e/--expr/--event (Jiri Olsa) [1425612]
-- [tools] perf kallsyms: Introduce tool to look for extended symbol information on the running kernel (Jiri Olsa) [1425612]
-- [tools] perf machine: Add a kallsyms loading constructor (Jiri Olsa) [1425612]
-- [tools] tools lib subcmd: Add missing linux/kernel.h include to subcmd.h (Jiri Olsa) [1425612]
-- [tools] perf jvmti: Create libdir directory before installing libperf-jvmti.so (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix to probe on gcc generated functions in modules (Jiri Olsa) [1425612]
-- [tools] perf probe: Add error checks to offline probe post-processing (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix to show correct locations for events on modules (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix to probe on gcc generated symbols for offline kernel (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix --funcs to show correct symbols for offline module (Jiri Olsa) [1425612]
-- [tools] perf symbols: Robustify reading of build-id from sysfs (Jiri Olsa) [1425612]
-- [tools] perf tools: Install tools/lib/traceevent plugins with install-bin (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Fix prev/next_prio for deadline tasks (Jiri Olsa) [1425612]
-- [tools] perf record: Fix --switch-output documentation and comment (Jiri Olsa) [1425612]
-- [tools] perf record: Make __record_options static (Jiri Olsa) [1425612]
-- [tools] tools lib subcmd: Add OPT_STRING_OPTARG_SET option (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix to get correct modname from elf header (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Show total scheduling time (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Fix invalid period calculation (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Remove hardcoded 'comm_width' check at print_summary (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Enlarge default 'comm_width' (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Honour 'comm_width' when aligning the headers (Jiri Olsa) [1425612]
-- [tools] perf diff: Do not overwrite valid build id (Jiri Olsa) [1425612]
-- [tools] perf annotate: Don't throw error for zero length symbols (Jiri Olsa) [1425612]
-- [tools] perf bench futex: Fix lock-pi help string (Jiri Olsa) [1425612]
-- [tools] perf annotate: Fix jump target outside of function address range (Jiri Olsa) [1425612]
-- [tools] perf annotate: Support jump instruction with target as second operand (Jiri Olsa) [1425612]
-- [tools] perf record: Force ignore_missing_thread for uid option (Jiri Olsa) [1425612]
-- [tools] perf evsel: Allow to ignore missing pid (Jiri Olsa) [1425612]
-- [tools] perf thread_map: Add thread_map__remove function (Jiri Olsa) [1425612]
-- [tools] perf evsel: Use variable instead of repeating lengthy FD macro (Jiri Olsa) [1425612]
-- [tools] perf mem: Fix --all-user/--all-kernel options (Jiri Olsa) [1425612]
-- [tools] perf tools: Remove some needless __maybe_unused (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Show callchains for idle stat (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add -I/--idle-hist option (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Skip non-idle events when necessary (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Save callchain when entering idle (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Introduce struct idle_time_data (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Split is_idle_sample() (Jiri Olsa) [1425612]
-- [tools] perf tools: Move headers check into bash script (Jiri Olsa) [1425612]
-- [tools] make use of make variable CURDIR instead of calling pwd (Jiri Olsa) [1425612]
-- [tools] add more bitmap functions (Jiri Olsa) [1425612]
-- [tools] perf tools: Explicitly document that --children is enabled by default (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Cleanup idle_max_cpu handling (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Handle zero sample->tid properly (Jiri Olsa) [1425612]
-- [tools] perf callchain: Introduce callchain_cursor__copy() (Jiri Olsa) [1425612]
-- [tools] perf sched: Cleanup option processing (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Improve error message when analyzing wrong file (Jiri Olsa) [1425612]
-- [tools] perf tools: Move perf build related variables under non fixdep leg (Jiri Olsa) [1425612]
-- [tools] perf tools: Force fixdep compilation at the start of the build (Jiri Olsa) [1425612]
-- [tools] perf tools: Move PERF-VERSION-FILE target into rules area (Jiri Olsa) [1425612]
-- [tools] perf build: Check LLVM version in feature check (Jiri Olsa) [1425612]
-- [tools] perf annotate: Show raw form for jump instruction with indirect target (Jiri Olsa) [1425612]
-- [tools] perf tools: Add non config targets (Jiri Olsa) [1425612]
-- [tools] perf tools: Cleanup build directory before each test (Jiri Olsa) [1425612]
-- [tools] perf tools: Move python/perf.so target into rules area (Jiri Olsa) [1425612]
-- [tools] perf tools: Move install-gtk target into rules area (Jiri Olsa) [1425612]
-- [tools] tools build: Move tabs to spaces where suitable (Jiri Olsa) [1425612]
-- [tools] tools build: Make the .cmd file more readable (Jiri Olsa) [1425612]
-- [tools] perf build: Add clang and llvm compile and linking support (Jiri Olsa) [1425612]
-- [tools] tools build: Add feature detection for clang (Jiri Olsa) [1425612]
-- [tools] tools build: Add feature detection for LLVM (Jiri Olsa) [1425612]
-- [tools] perf tools: Pass context to perf hook functions (Jiri Olsa) [1425612]
-- [tools] tools build: Fix objtool build with clang (Jiri Olsa) [1425612]
-- [tools] tools build: Make fixdep parsing wait for last target (Jiri Olsa) [1425612]
-- [tools] perf annotate: AArch64 support (Jiri Olsa) [1425612]
-- [tools] perf annotate: Use arch->objdump.comment_char in dec__parse() (Jiri Olsa) [1425612]
-- [tools] perf report: Add option to specify time window of interest (Jiri Olsa) [1425612]
-- [tools] perf kmem: Add option to specify time window of interest (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add option to specify time window of interest (Jiri Olsa) [1425612]
-- [tools] perf script: Add option to specify time window of interest (Jiri Olsa) [1425612]
-- [tools] perf tools: Move parse_nsec_time to time-utils.c (Jiri Olsa) [1425612]
-- [tools] perf tools: Add time-based utility functions (Jiri Olsa) [1425612]
-- [tools] perf script: Add option to stop printing callchain (Jiri Olsa) [1425612]
-- [tools] perf kmem stat: Track memory freed (Jiri Olsa) [1425612]
-- [tools] perf test: Remove "test" and similar strings from test descriptions (Jiri Olsa) [1425612]
-- [tools] perf tools: Introduce perf hooks (Jiri Olsa) [1425612]
-- [tools] perf trace: Update tid/pid filtering option to leverage symbol_conf (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Handle cpu migration events (Jiri Olsa) [1425612]
-- [tools] perf annotate: Show invalid jump offset in error message (Jiri Olsa) [1425612]
-- [tools] perf ui helpline: Provide a printf variant (Jiri Olsa) [1425612]
-- [tools] perf tools: Add missing struct definition in probe_event.h (Jiri Olsa) [1425612]
-- [tools] perf record: Fix segfault when running with suid and kptr_restrict is 1 (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Enlarge max stack depth by 2 (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Mark schedule function in callchains (Jiri Olsa) [1425612]
-- [tools] perf callchain: Add option to skip ignore symbol when printing callchains (Jiri Olsa) [1425612]
-- [tools] perf annotate: Initial PowerPC support (Jiri Olsa) [1425612]
-- [tools] perf annotate: Improve support for ARM (Jiri Olsa) [1425612]
-- [tools] perf annotate: Allow arches to have a init routine and a priv area (Jiri Olsa) [1425612]
-- [tools] perf annotate: Introduce alternative method of keeping instructions table (Jiri Olsa) [1425612]
-- [tools] perf annotate: Remove duplicate 'name' field from disasm_line (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add -V/--cpu-visual option (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add call graph options (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add -w/--wakeups option (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add summary options (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Introduce timehist command (Jiri Olsa) [1425612]
-- [tools] perf evsel: Support printing callchains with arrows (Jiri Olsa) [1425612]
-- [tools] perf symbols: Print symbol offsets conditionally (Jiri Olsa) [1425612]
-- [tools] perf c2c: Support cascading options (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Display total HITMs on default (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add struct c2c_stats::tot_hitm field (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add -f/--force option (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Setup browser after opening perf.data (Jiri Olsa) [1425612]
-- [tools] perf tools: Show event fd in debug output (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Add retrieval of preempt count and latency flags (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Use USECS_PER_SEC instead of hardcoded number (Jiri Olsa) [1425612]
-- [tools] perf annotate: Add per arch instructions annotate handlers (Jiri Olsa) [1425612]
-- [tools] perf annotate: Allow arches to specify functions to skip (Jiri Olsa) [1425612]
-- [tools] perf annotate: Start supporting cross arch annotation (Jiri Olsa) [1425612]
-- [tools] perf report: Show branch info in callchain entry for browser mode (Jiri Olsa) [1425612]
-- [tools] perf report: Show branch info in callchain entry for stdio mode (Jiri Olsa) [1425612]
-- [tools] perf report: Calculate and return the branch flag counting (Jiri Olsa) [1425612]
-- [tools] perf report: Create a symbol_conf flag for showing branch flag counting (Jiri Olsa) [1425612]
-- [tools] perf report: Add branch flag to callchain cursor node (Jiri Olsa) [1425612]
-- [tools] perf config: Mark where are config items from (user or system) (Jiri Olsa) [1425612]
-- [tools] perf config: Add support setting variables in a config file (Jiri Olsa) [1425612]
-- [tools] perf config: Validate config variable arguments before trying use them (Jiri Olsa) [1425612]
-- [tools] perf config: Add support for getting config key-value pairs (Jiri Olsa) [1425612]
-- [tools] perf kvmti: Remove unused Makefile file (Jiri Olsa) [1425612]
-- [tools] perf jvmti: Plug compilation into perf build (Jiri Olsa) [1425612]
-- [tools] tools build: Add jvmti feature detection support (Jiri Olsa) [1425612]
-- [tools] tools build: Add CFLAGS_REMOVE_* support (Jiri Olsa) [1425612]
-- [tools] perf intel-pt: Update documentation about context switch events (Jiri Olsa) [1425612]
-- [tools] perf callchain: Fixup help/config for no-unwinding (Jiri Olsa) [1425612]
-- [tools] perf tools: Add missing object file to the python binding linkage list (Jiri Olsa) [1425612]
-- [tools] perf scripting: Don't die if scripting can't be setup, disable it (Jiri Olsa) [1425612]
-- [tools] perf scripting: Avoid leaking the scripting_context variable (Jiri Olsa) [1425612]
-- [tools] Update asm-generic/mman-common.h copy from the kernel (Jiri Olsa) [1425612]
-- [tools] perf list: Support matching by topic (Jiri Olsa) [1425612]
-- [tools] perf tools: Introduce timestamp__scnprintf_usec() (Jiri Olsa) [1425612]
-- [tools] perf sched map: Always show task comm with -v (Jiri Olsa) [1425612]
-- [tools] perf sched map: Apply cpu color when there's an activity (Jiri Olsa) [1425612]
-- [tools] perf sched: Make common options cascading (Jiri Olsa) [1425612]
-- [tools] tools lib subcmd: Suppport cascading options (Jiri Olsa) [1425612]
-- [tools] perf bench futex: Sanitize numeric parameters (Jiri Olsa) [1425612]
-- [tools] perf bench futex: Avoid worker cacheline bouncing (Jiri Olsa) [1425612]
-- [tools] perf list: Make vendor event matching case insensitive (Jiri Olsa) [1425612]
-- [tools] perf trace: Use the syscall raw_syscalls:sys_enter timestamp (Jiri Olsa) [1425612]
-- [tools] perf trace: Remove thread_trace->exit_time (Jiri Olsa) [1425612]
-- [tools] perf bench futex: Cache align the worker struct (Jiri Olsa) [1425612]
-- [tools] perf tools: Use normal error reporting when processing PERF_RECORD_READ events (Jiri Olsa) [1425612]
-- [tools] perf tools: Normalize sq_quote_argv() error reporting (Jiri Olsa) [1425612]
-- [tools] perf bench mem: Move boilerplate memory allocation to the infrastructure (Jiri Olsa) [1425612]
-- [tools] perf trace: Implement --delay (Jiri Olsa) [1425612]
-- [tools] perf hists browser: Dynamically change verbosity level (Jiri Olsa) [1425612]
-- [tools] perf pmu: Only print Using CPUID message once (Jiri Olsa) [1425612]
-- [tools] perf jit: Add jitdump format specification document (Jiri Olsa) [1425612]
-- [tools] perf jit: Check JITHEADER_VERSION (Jiri Olsa) [1425612]
-- [tools] perf jit: Generate .eh_frame/.eh_frame_hdr in DSO (Jiri Olsa) [1425612]
-- [tools] perf jit: Add unwinding support (Jiri Olsa) [1425612]
-- [tools] perf jit: Do not assume pgoff is zero (Jiri Olsa) [1425612]
-- [tools] perf jit: Make perf skip unknown records (Jiri Olsa) [1425612]
-- [tools] perf jit: Remove unecessary padding in jitdump file (Jiri Olsa) [1425612]
-- [tools] perf jit: Enable jitdump support without dwarf (Jiri Olsa) [1425612]
-- [tools] perf jit: Improve error messages from JVMTI (Jiri Olsa) [1425612]
-- [tools] perf jit: Add NT_GNU_BUILD_ID definition for older distros (Jiri Olsa) [1425612]
-- [tools] perf jit: Avoid returning garbage for a ret variable (Jiri Olsa) [1425612]
-- [tools] perf tools: Implement branch_type event parameter (Jiri Olsa) [1425612]
-- [tools] perf record: Improve documentation of event parameters (Jiri Olsa) [1425612]
-- [tools] perf header: Display feature name on write failure (Jiri Olsa) [1425612]
-- [tools] perf header: Display missing features (Jiri Olsa) [1425612]
-- [tools] perf report: Move captured info to generic header info (Jiri Olsa) [1425612]
-- [tools] tools lib: Add for_each_clear_bit macro (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Add version for traceevent shared object (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Rename LIB_FILE to LIB_TARGET (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Add do_install_mkdir Makefile function (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Add install_headers target (Jiri Olsa) [1425612]
-- [tools] perf script: Support insn and insnlen (Jiri Olsa) [1425612]
-- [tools] perf intel-pt/bts: Report instruction bytes and length in sample (Jiri Olsa) [1425612]
-- [tools] perf intel-pt/bts: Tidy instruction buffer size usage (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add --show-all option (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add --no-source option (Jiri Olsa) [1425612]
-- [tools] perf c2c: Add man page and credits (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add help windows (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Iterate node display in browser (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add support to manage symbol name length (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add cacheline index entry (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Recalc width of global sort entries (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Allow to set cacheline sort fields (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add support to choose local HITMs (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Limit the cachelines table entries (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Allow to report callchains (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add c2c related stats stdio output (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add shared cachelines stats stdio output (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add global stats stdio output (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add TUI cacheline browser (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add main TUI browser (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add stdio output support (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Set final resort fields (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Setup number of header lines for hists (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add src line sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'cpucnt' sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add stats related sort keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'node' sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'symbol' and 'dso' sort keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'tid' sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'pid' sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add dram related sort keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add hitm/store percent related sort keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add hitm percent sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add total loads sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add total record sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add llc load miss dimension key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add llc and remote loads related dimension keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add loads related dimension keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add stores related dimension keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add hitm related dimension keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'iaddr' dimension key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'offset' dimension key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'dcacheline' dimension key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add header macros (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Decode c2c_stats for hist entries (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add cacheline hists processing (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add sample processing (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Fallback to standard dimensions (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add sort_entry dimension support (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add dimension support (Jiri Olsa) [1425612]
-- [tools] perf c2c: Add report subcommand (Jiri Olsa) [1425612]
-- [tools] perf c2c: Add record subcommand (Jiri Olsa) [1425612]
-- [tools] perf c2c: Add c2c command (Jiri Olsa) [1425612]
-- [tools] perf c2c: Introduce c2c_add_stats function (Jiri Olsa) [1425612]
-- [tools] perf c2c: Introduce c2c_decode_stats function (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Support couple more POWER8 PVRs in mapfile (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add power8 PMU events (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add WestmereEX V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add WestmereEP-SP V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add WestmereEP-DP V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add SandyBridge V15 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Silvermont V13 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Skylake V24 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add NehalemEX V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add NehalemEP V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add KnightsLanding V9 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Jaketown V20 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add IvyTown V19 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add IvyBridge V18 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add HaswellX V17 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Haswell V24 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Goldmont V8 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Bonnell V4 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add BroadwellX V10 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Broadwell V17 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add BroadwellDE V5 event file (Jiri Olsa) [1425612]
-- [x86] perf/x86/intel/pt: Add format strings for PTWRITE and power event tracing (Jiri Olsa) [1425612]
-- [kernel] perf/core: Try parent PMU first when initializing a child event (Jiri Olsa) [1425612]
-- [kernel] perf/core: Optimize event rescheduling on active contexts (Jiri Olsa) [1425612]
-- [kernel] perf/core: Don't re-schedule CPU flexible events needlessly (Jiri Olsa) [1425612]
-- [kernel] perf/core: Fix PERF_RECORD_MMAP2 prot/flags for anonymous memory (Jiri Olsa) [1425612]
-- [kernel] perf/core: Fix use-after-free bug (Jiri Olsa) [1425612]
-- [x86] perf/x86/intel: Handle exclusive threadid correctly on CPU hotplug (Jiri Olsa) [1425612]
-- [x86] perf/x86: Reject non sampling events with precise_ip (Jiri Olsa) [1425612]
-- [kernel] perf/x86/intel: Account interrupts for PEBS errors (Jiri Olsa) [1425612]
-- [kernel] perf/core: Fix sys_perf_event_open() vs. hotplug (Jiri Olsa) [1425612]
-- [x86] perf/x86/intel: Use ULL constant to prevent undefined shift behaviour (Jiri Olsa) [1425612]
-- [x86] perf/x86: Fix overlap counter scheduling bug (Jiri Olsa) [1425612]
-- [x86] perf/x86/pebs: Fix handling of PEBS buffer overflows (Jiri Olsa) [1425612]
-- [tools] hw_breakpoint: Allow watchpoint of length 3, 5, 6 and 7 (Jiri Olsa) [1425612]
-- [x86] perf/x86: Fix exclusion of BTS and LBR for Goldmont (Jiri Olsa) [1425612]
-
-* Mon Mar 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-632.el7]
-- [crypto] tcrypt - Add new mode for sha512_mb (Herbert Xu) [1379518]
-- [crypto] sha512-mb - Crypto computation (x4 AVX2) (Herbert Xu) [1379518]
-- [crypto] sha512-mb - Algorithm data structures (Herbert Xu) [1379518]
-- [crypto] sha512-mb - submit/flush routines for AVX2 (Herbert Xu) [1379518]
-- [crypto] sha512-mb - Enable SHA512 multibuffer support (Herbert Xu) [1379518]
-- [crypto] sha512-mb - SHA512 multibuffer job manager and glue code (Herbert Xu) [1379518]
-- [crypto] tcrypt - Add speed tests for SHA multibuffer algorithms (Herbert Xu) [1379518]
-- [crypto] sha256-mb - Crypto computation (x8 AVX2) (Herbert Xu) [1379518]
-- [crypto] sha256-mb - Algorithm data structures (Herbert Xu) [1379518]
-- [crypto] sha256-mb - submit/flush routines for AVX2 (Herbert Xu) [1379518]
-- [crypto] sha256-mb - Enable multibuffer support (Herbert Xu) [1379518]
-- [crypto] sha256-mb - SHA256 multibuffer job manager and glue code (Herbert Xu) [1379518]
-- [crypto] sha1-mb - async implementation for sha1-mb (Herbert Xu) [1379518]
-- [crypto] sha1-mb - stylistic cleanup (Herbert Xu) [1379518]
-- [crypto] sha-mb - Fix load failure (Herbert Xu) [1379518]
-- [crypto] mcryptd - Fix load failure (Herbert Xu) [1379518]
-- [crypto] sha-mb - mark Multi buffer SHA1 helper cipher (Herbert Xu) [1379518]
-- [crypto] tcrypt - print cra driver name in tcrypt tests output (Herbert Xu) [1379518]
-- [crypto] tcrypt - Added speed tests for AEAD crypto alogrithms in tcrypt test suite (Herbert Xu) [1379518]
-- [crypto] jitterentropy - drop duplicate header module.h (Herbert Xu) [1270982]
-- [crypto] jitterentropy - use ktime_get_ns as fallback (Herbert Xu) [1270982]
-- [crypto] jitterentropy - remove unnecessary information from a comment (Herbert Xu) [1270982]
-- [crypto] jitterentropy - use safe format string parameters (Herbert Xu) [1270982]
-- [crypto] jitterentropy - Delete unnecessary checks before the function call "kzfree" (Herbert Xu) [1270982]
-- [crypto] jitterentropy - avoid compiler warnings (Herbert Xu) [1270982]
-- [crypto] drbg - use pragmas for disabling optimization (Herbert Xu) [1270982]
-- [crypto] jitterentropy - remove timekeeping_valid_for_hres (Herbert Xu) [1270982]
-- [crypto] jitterentropy - add jitterentropy RNG (Herbert Xu) [1270982]
-- [crypto] algif_rng - zeroize buffer with random data (Herbert Xu) [1270982]
-- [crypto] algif_rng - fix sparse non static symbol warning (Herbert Xu) [1270982]
-- [crypto] algif_rng - enable RNG interface compilation (Herbert Xu) [1270982]
-- [crypto] algif_rng - add random number generator support (Herbert Xu) [1270982]
-- [crypto] fips - allow tests to be disabled in FIPS mode (Herbert Xu) [1314179]
-- [crypto] xts - fix compile errors (Herbert Xu) [1314179]
-- [crypto] xts - consolidate sanity check for keys (Herbert Xu) [1314179]
-- [crypto] memneq - fix for archs without efficient unaligned access (Herbert Xu) [1314179]
-- [crypto] more robust crypto_memneq (Herbert Xu) [1314179]
-- [crypto] crypto_memneq - add equality testing of memory regions w/o timing leaks (Herbert Xu) [1314179]
-- [crypto] testmgr - Fix GCM test vector IV overrun (Herbert Xu) [1386657]
-- [crypto] qat - Fix DMA on stack memory (Herbert Xu) [1364724]
-- [crypto] algif_hash - Only export and import on sockets with data (Herbert Xu) [1387632] {CVE-2016-8646}
-
-* Mon Mar 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-631.el7]
-- [fs] userfaultfd: remove wrong comment from userfaultfd_ctx_get() (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: use __SetPageSwapBacked in shmem_mcopy_atomic_pte() (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: userfaultfd_remove revalidate vma in MADV_DONTNEED (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: fix fork fctx->new memleak (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: shmem: __do_fault requires VM_FAULT_NOPAGE (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: release all ctx in dup_userfaultfd_complete (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: robustness check (Andrea Arcangeli) [1373606]
-- [kernel] userfaultfd: non-cooperative: rollback userfaultfd_exit (Andrea Arcangeli) [1373606]
-- [documentation] userfaultfd: documentation update (Andrea Arcangeli) [1373606]
-- [fs] scripts/spelling.txt: add "an user" pattern and fix typo instances (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd_copy: return -ENOSPC in case mm has gone (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: mcopy_atomic: return -ENOENT when no compatible VMA found (Andrea Arcangeli) [1373606]
-- [kernel] userfaultfd: non-cooperative: add event for exit() notification (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add event for memory unmap to mm/fremap.c (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add event for memory unmaps (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: rename *EVENT_MADVDONTNEED to *EVENT_REMOVE (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add madvise() event for MADV_REMOVE request (Andrea Arcangeli) [1373606]
-- [mm] mprotect: use pmd_trans_unstable instead of taking the pmd_lock (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: backport build fixes (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add UFFDIO_COPY support for shared mappings (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: hugetlbfs: UFFD_FEATURE_MISSING_SHMEM (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: backport build fixes (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: avoid a lockup resulting from corrupted page->flags (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: avoid leaking blocks and used blocks in UFFDIO_COPY (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: lock the page before adding it to pagecache (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: shmem: allow registration of shared memory ranges (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: add userfaultfd hook for shared memory faults (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: use shmem_mcopy_atomic_pte for shared memory (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: introduce vma_is_shmem (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: add shmem_mcopy_atomic_pte for userfaultfd support (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: introduce vma_can_userfault (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: hugetlbfs: UFFD_FEATURE_MISSING_HUGETLBFS (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: reserve count on error in __mcopy_atomic_hugetlb (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: gup: support VM_FAULT_RETRY (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: hugetlbfs: userfaultfd_huge_must_wait for hugepmd ranges (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: hugetlbfs: allow registration of ranges containing huge pages (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add userfaultfd hugetlb hook (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: fix __mcopy_atomic_hugetlb retry/error processing (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add __mcopy_atomic_hugetlb for huge page UFFDIO_COPY (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add hugetlb_mcopy_atomic_pte for userfaultfd support (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add copy_huge_page_from_user for hugetlb userfaultfd support (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: wake userfaults after UFFDIO_UNREGISTER (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: avoid MADV_DONTNEED race condition (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add madvise() event for MADV_DONTNEED request (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: optimize mremap_userfaultfd_complete() (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add mremap() event (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: dup_userfaultfd: use mm_count instead of mm_users (Andrea Arcangeli) [1373606]
-- [kernel] userfaultfd: non-cooperative: Add fork() event (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: report all available features to userland (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: add ability to report non-PF events from uffd descriptor (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: Split the find_userfault() routine (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: use vma_is_anonymous (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: convert BUG() to WARN_ON_ONCE() (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: correct comment about UFFD_FEATURE_PAGEFAULT_FLAG_WP (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: document _IOR/_IOW (Andrea Arcangeli) [1373606]
-- [mm] introduce vma_is_anonymous(vma) helper (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: fix SIGBUS resulting from false rwsem wakeups (Andrea Arcangeli) [1373606]
-
-* Mon Mar 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-630.el7]
-- [mm] hugetlb.c: fix reservation race when freeing surplus pages (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: use huge_pte_lock instead of opencoding the lock (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: use the right pte val for compare in hugetlb_cow (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix huge page reservation leak in private mapping error paths (Andrea Arcangeli) [1430172]
-- [mm] remove unnecessary condition in remove_inode_hugepages (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: improve locking in dissolve_free_huge_pages() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: check for reserved hugepages during memory offline (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix memory offline with hugepage size > memory block size (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix incorrect hugepages count during mem hotplug (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix huge_pte_alloc BUG_ON (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: avoid soft lockup in set_max_huge_pages() (Andrea Arcangeli) [1430172]
-- [mm] hwpoison: remove incorrect comments (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: simplify hugetlb unmap (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix huge page reserve accounting for private mappings (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: add same zone check in pfn_range_valid_gigantic() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: use first_memory_node (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: introduce hugetlb_bad_size() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: optimize minimum size (min_size) accounting (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: hugetlb_no_page: rate-limit warning message (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: fix incorrect proc nr_hugepages value (Andrea Arcangeli) [1430172]
-- [fs] hugetlbfs: unmap pages if page fault raced with hole punch update locking (Andrea Arcangeli) [1430172]
-- [fs] mm/hugetlbfs: unmap pages if page fault raced with hole punch (Andrea Arcangeli) [1430172]
-- [fs] hugetlbfs/inode.c: fix bugs in hugetlb_vmtruncate_list() (Andrea Arcangeli) [1430172]
-- [mm] fix locking order in mm_take_all_locks() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: fix resv map memory leak for placeholder entries (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix hugepage memory leak caused by wrong reserve count (Andrea Arcangeli) [1430172]
-- [fs] mm/hugetlbfs: fix bugs in fallocate hole punch of areas with holes (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: trivial comment fix (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: optimize when NUMA=n (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: use memory policy when available (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: make node_hstates array static (Andrea Arcangeli) [1430172]
-- [fs] hugetlbfs: add hugetlbfs_fallocate() update locking (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: add hugetlbfs_fallocate() (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: New huge_add_to_page_cache helper routine (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: alloc_huge_page handle areas hole punched by fallocate (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: vma_has_reserves() needs to handle fallocate hole punch (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: truncate_hugepages() takes a range of pages (Andrea Arcangeli) [1430172]
-- [fs] hugetlbfs: hugetlb_vmtruncate_list() needs to take a range to delete (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: expose hugetlb fault mutex for use by fallocate (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: add region_del() to delete a specific range of entries (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: add cache of descriptors to resv_map for region_add (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: compute/return the number of regions added by region_add() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: make vma_has_reserves() return bool (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: make vma_shareable() return bool (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: handle races in alloc_huge_page and hugetlb_reserve_pages (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: document the reserve map/region tracking routines (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: introduce minimum hugepage order (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: accept subpool min_size mount option and setup accordingly (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: add minimum size accounting to subpools (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: add minimum size tracking fields to subpool structure (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: abort __get_user_pages if current has been oom killed (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: close race when setting PageTail for gigantic pages (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix type of hugetlb_treat_as_movable variable (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: move the error handle logic out of normal code path (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: use vma_resv_map() map types (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: remove resv_map_put (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: use already existing interface huge_page_shift (Andrea Arcangeli) [1430172]
-
-* Mon Mar 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-629.el7]
-- [lib] locking/rwsem: Fix rwsem kABI issues (Waiman Long) [1416924]
-- [lib] locking/rwsem: Scan the wait_list for readers only once (Waiman Long) [1416924]
-- [lib] locking/rwsem: Return void in __rwsem_mark_wake() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Streamline the rwsem_optimistic_spin() code (Waiman Long) [1416924]
-- [lib] locking/rwsem: Improve reader wakeup code (Waiman Long) [1416924]
-- [kernel] locking/rwsem: Protect all writes to owner by WRITE_ONCE() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Add reader-owned state to the owner field (Waiman Long) [1416924]
-- [asm-generic] locking/rwsem: Remove rwsem_atomic_add() and rwsem_atomic_update() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Convert sem->count to 'atomic_long_t' (Waiman Long) [1416924]
-- [lib] locking/rwsem: Optimize write lock by reducing operations in slowpath (Waiman Long) [1416924]
-- [lib] locking/rwsem: Rework zeroing reader waiter->task (Waiman Long) [1416924]
-- [lib] locking/rwsem: Enable lockless waiter wakeup(s) (Waiman Long) [1416924]
-- [lib] locking/rwsem: Reduce spinlock contention in wakeup after up_read()/up_write() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Fix lock optimistic spinning when owner is not running (Waiman Long) [1416924]
-- [lib] locking: Remove ACCESS_ONCE() usage (Waiman Long) [1416924]
-- [lib] locking/rwsem: Check for active lock before bailing on spinning (Waiman Long) [1416924]
-- [lib] locking/rwsem: Avoid deceiving lock spinners (Waiman Long) [1416924]
-- [lib] locking/rwsem: Set lock ownership ASAP (Waiman Long) [1416924]
-- [lib] locking/rwsem: Document barrier need when waking tasks (Waiman Long) [1416924]
-- [lib] locking/rwsem: Use task->state helpers (Waiman Long) [1416924]
-- [kernel] locking/mcs: Better differentiate between MCS variants (Waiman Long) [1416924]
-- [lib] locking/rwsem: Avoid double checking before try acquiring write lock (Waiman Long) [1416924]
-- [lib] locking/rwsem: Move EXPORT_SYMBOL() lines to follow function definition (Waiman Long) [1416924]
-- [lib] locking/rwsem: Add CONFIG_RWSEM_SPIN_ON_OWNER (Waiman Long) [1416924]
-- [kernel] locking/rwsem: Reduce the size of struct rw_semaphore (Waiman Long) [1416924]
-- [kernel] locking/spinlocks/mcs: Micro-optimize osq_unlock() (Waiman Long) [1416924]
-- [lib] locking/spinlocks/mcs: Introduce and use init macro and function for osq locks (Waiman Long) [1416924]
-- [lib] locking/spinlocks/mcs: Convert osq lock to atomic_t to reduce overhead (Waiman Long) [1416924]
-- [kernel] locking/spinlocks/mcs: Rename optimistic_spin_queue() to optimistic_spin_node() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Allow conservative optimistic spinning when readers have lock (Waiman Long) [1416924]
-- [lib] locking/rwsem: Fix checkpatch.pl warnings (Waiman Long) [1416924]
-- [kernel] locking/rwsem: Fix warnings for CONFIG_RWSEM_GENERIC_SPINLOCK (Waiman Long) [1416924]
-- [lib] locking/rwsem: Support optimistic spinning (Waiman Long) [1416924]
-- [lib] rwsem: Add comments to explain the meaning of the rwsem's count field (Waiman Long) [1416924]
-- [lib] asmlinkage: Mark rwsem functions that can be called from assembler asmlinkage (Waiman Long) [1416924]
-
-* Fri Mar 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-628.el7]
-- [md] dm cache metadata: fix metadata2 format's blocks_are_clean_separate_dirty (Mike Snitzer) [1434155]
-- [pci] hv: Use device serial number as PCI domain (Vitaly Kuznetsov) [1429743]
-- [pci] hv: Fix wslot_to_devfn() to fix warnings on device removal (Vitaly Kuznetsov) [1429743]
-- [net] bridge: netlink: call br_changelink() during br_dev_newlink() (Ivan Vecera) [1433293]
-- [net] Reduce queue allocation to one in kdump kernel (Sai Vemuri) [1379762]
-- [net] sched: Reflect HW offload status (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: be more strict about skip-sw flag (Ivan Vecera) [1390693]
-- [net] sched: fix a typo in tc_for_each_action() (Ivan Vecera) [1390693]
-- [net] sched: act_gact: Update statistics when offloaded to hardware (Ivan Vecera) [1390693]
-- [net] sched: Enable netdev drivers to update statistics of offloaded actions (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: Add support for skip-sw flag to tc u32 classifier. (Ivan Vecera) [1390693]
-- [net] sched: Move TCA_CLS_FLAGS_SKIP_HW to uapi header file. (Ivan Vecera) [1390693]
-- [net] sched: act_skbedit: Utility functions for mark action (Ivan Vecera) [1390693]
-- [net] sched: Macro instead of CONFIG_NET_CLS_ACT ifdef (Ivan Vecera) [1390693]
-- [net] sched: cls_u32 add bit to specify software only rules (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: move TC offload feature bit into cls_u32 offload logic (Ivan Vecera) [1390693]
-- [net] sched: consolidate offload decision in cls_u32 (Ivan Vecera) [1390693]
-- [net] sched: tc: helper functions to query action types (Ivan Vecera) [1390693]
-- [net] sched: add cls_u32 offload hooks for netdevs (Ivan Vecera) [1390693]
-- [net] sched: avoid calling tcf_unbind_filter() in call_rcu callback (Ivan Vecera) [1390693]
-- [net] sched: cls_u32 changes to knode must appear atomic to readers (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: fix missed pcpu_success free_percpu (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: add missing rcu_assign_pointer and annotation (Ivan Vecera) [1390693]
-- [x86] platform/uv/bau: Fix HUB errors by remove initial write to sw-ack register (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Implement uv4_wait_completion with read_status (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Add wait_completion to bau_operations (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Add status mmr location fields to bau_control (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Cleanup bau_operations declaration and instances (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Add payload descriptor qualifier (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Add uv_bau_version enumerated constants (Frank Ramsay) [1422564]
-- [x86] platform: Remove warning message for duplicate NMI handlers (Frank Ramsay) [1433021]
-- [s390] vmlogrdr: fix IUCV buffer allocation (Hendrik Brueckner) [1431699]
-- [s390] dcssblk: fix device size calculation in dcssblk_direct_access() (Hendrik Brueckner) [1431700]
-- [tools] power turbostat: Support Knights Mill (KNM) (Steve Best) [1381293]
-- [vhost] lockless enqueuing (Wei Xu) [1401436]
-- [vhost] simplify work flushing (Wei Xu) [1401436]
-- [netdrv] i40e: don't add more vectors to num_lan_msix than number of CPUs (Stefan Assmann) [1396127]
-- [netdrv] bonding: add 802.3ad support for 25G speeds (Jarod Wilson) [1431202]
-- [powercap] rapl: Add Knights Mill CPUID (Steve Best) [1381291]
-- [wireless] Update rt2x00 driver to work with cfg80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Update mwifiex driver to compile with cfg80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Update brcmfmac driver to compile with cfg80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Update iwlegacy driver to compile with cfg80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Backport iwlwifi driver from linux-4.11-rc1 (Stanislaw Gruszka) [1387986 1385917 1385746 1351045 1421597]
-- [wireless] Backport wil6210 driver from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Backport ath10k driver from linux-4.11-rc1 (Stanislaw Gruszka) [1385738 1351053 1351049 1421597]
-- [wireless] Backport ath9k driver from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Backport net/mac80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Backport net/wireless from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-
-* Fri Mar 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-627.el7]
-- [staging] usbip: remove staged driver (Torez Smith) [1383823]
-- [netdrv] sierra_net: Skip validating irrelevant fields for IDLE LSIs (Torez Smith) [1383823]
-- [netdrv] sierra_net: Add support for IPv6 and Dual-Stack Link Sense Indications (Torez Smith) [1383823]
-- [netdrv] catc: Use heap buffer for memory size test (Torez Smith) [1383823]
-- [netdrv] catc: Combine failure cleanup code in catc_probe() (Torez Smith) [1383823]
-- [netdrv] rtl8150: Use heap buffers for all register access (Torez Smith) [1383823]
-- [netdrv] pegasus: Use heap buffers for all register access (Torez Smith) [1383823]
-- [usb] serial: pl2303: add ATEN device ID (Torez Smith) [1383823]
-- [netdrv] r8152: check rx after napi is enabled (Torez Smith) [1383823]
-- [netdrv] r8152: re-schedule napi for tx (Torez Smith) [1383823]
-- [netdrv] r8152: avoid start_xmit to schedule napi when napi is disabled (Torez Smith) [1383823]
-- [netdrv] r8152: avoid start_xmit to call napi_schedule during autosuspend (Torez Smith) [1383823]
-- [usb] Add quirk for WORLDE easykey.25 MIDI keyboard (Torez Smith) [1383823]
-- [netdrv] qmi_wwan/cdc_ether: add device ID for HP lt2523 (Novatel E371) WWAN card (Torez Smith) [1383823]
-- [netdrv] r8152: don't execute runtime suspend if the tx is not empty (Torez Smith) [1383823]
-- [usb] serial: option: add device ID for HP lt2523 (Novatel E371) (Torez Smith) [1383823]
-- [netdrv] r8152: fix rtl8152_post_reset function (Torez Smith) [1383823]
-- [usb] serial: qcserial: add Dell DW5570 QDL (Torez Smith) [1383823]
-- [netdrv] r8152: fix the sw rx checksum is unavailable (Torez Smith) [1383823]
-- [usb] xhci: fix deadlock at host remove by running watchdog correctly (Torez Smith) [1383823]
-- [usb] serial: ch341: fix control-message error handling (Torez Smith) [1383823]
-- [netdrv] r8152: fix rx issue for runtime suspend (Torez Smith) [1383823]
-- [netdrv] r8152: split rtl8152_suspend function (Torez Smith) [1383823]
-- [usb] wusbcore: Fix one more crypto-on-the-stack bug (Torez Smith) [1383823]
-- [usb] serial: kl5kusb105: fix line-state error handling (Torez Smith) [1383823]
-- [usb] serial: ch341: fix baud rate and line-control handling (Torez Smith) [1383823]
-- [usb] serial: ch341: fix line settings after reset-resume (Torez Smith) [1383823]
-- [usb] serial: ch341: fix open error handling (Torez Smith) [1383823]
-- [usb] serial: ch341: fix modem-control and B0 handling (Torez Smith) [1383823]
-- [usb] serial: ch341: fix open and resume after B0 (Torez Smith) [1383823]
-- [usb] serial: ch341: fix initial modem-control state (Torez Smith) [1383823]
-- [usb] fix problems with duplicate endpoint addresses (Torez Smith) [1383823]
-- [usb] storage: unusual_uas: Add JMicron JMS56x to unusual device (Torez Smith) [1383823]
-- [usb] hub: Move hub_port_disable() to fix warning if PM is disabled (Torez Smith) [1383823]
-- [netdrv] usb: asix_devices: add .reset_resume for USB PM (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: spcp8x5: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: quatech2: fix sleep-while-atomic in close (Torez Smith) [1383823]
-- [usb] serial: pl2303: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: oti6858: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: omninet: fix NULL-derefs at open and disconnect (Torez Smith) [1383823]
-- [usb] serial: mos7840: fix misleading interrupt-URB comment (Torez Smith) [1383823]
-- [usb] serial: mos7840: remove unused write URB (Torez Smith) [1383823]
-- [usb] serial: mos7840: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: mos7720: remove obsolete port initialisation (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix parallel probe (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix parport use-after-free on probe errors (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix use-after-free on probe errors (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: kobil_sct: fix NULL-deref in write (Torez Smith) [1383823]
-- [usb] serial: keyspan_pda: verify endpoints at probe (Torez Smith) [1383823]
-- [usb] serial: iuu_phoenix: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: io_ti: bind to interface after fw download (Torez Smith) [1383823]
-- [usb] serial: io_ti: fix I/O after disconnect (Torez Smith) [1383823]
-- [usb] serial: io_ti: fix another NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: io_ti: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: io_edgeport: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: garmin_gps: fix memory leak on failed URB submit (Torez Smith) [1383823]
-- [usb] serial: cyberjack: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] host: xhci: handle COMP_STOP from SETUP phase too (Torez Smith) [1383823]
-- [usb] xhci: apply XHCI_PME_STUCK_QUIRK to Intel Apollo Lake (Torez Smith) [1383823]
-- [usb] xhci: hold lock over xhci_abort_cmd_ring() (Torez Smith) [1383823]
-- [usb] xhci: Handle command completion and timeout race (Torez Smith) [1383823]
-- [usb] host: xhci: Fix possible wild pointer when handling abort command (Torez Smith) [1383823]
-- [usb] xhci: fix possible wild pointer (Torez Smith) [1383823]
-- [usb] return error code when platform_get_irq fails (Torez Smith) [1383823]
-- [usb] xhci: fix return value of xhci_setup_device() (Torez Smith) [1383823]
-- [usb] xhci: free xhci virtual devices with leaf nodes first (Torez Smith) [1383823]
-- [usb] serial: option: add dlink dwm-158 (Torez Smith) [1383823]
-- [usb] serial: option: add support for Telit LE922A PIDs 0x1040, 0x1041 (Torez Smith) [1383823]
-- [netdrv] lan78xx: add LAN7801 MAC only support (Torez Smith) [1383823]
-- [kernel] usb: cdc_mbim: add quirk for supporting Telit LE922A (Torez Smith) [1383823]
-- [usb] misc: rio500: fix result type for error message (Torez Smith) [1383823]
-- [usb] core: usbport: Use proper LED API to fix potential crash (Torez Smith) [1383823]
-- [netdrv] usb: set error code when usb_alloc_urb fails (Torez Smith) [1383823]
-- [kernel] usb: hcd.h: construct hub class request constants from simpler constants (Torez Smith) [1383823]
-- [usb] cdc-acm: add device id for GW Instek AFG-125 (Torez Smith) [1383823]
-- [kernel] fsl/usb: Workarourd for USB erratum-A005697 (Torez Smith) [1383823]
-- [usb] hub: Wait for connection to be reestablished after port reset (Torez Smith) [1383823]
-- [netdrv] usb: qmi_wwan: add support for Telit LE922A PID 0x1040 (Torez Smith) [1383823]
-- [netdrv] cdc_ether: Fix handling connection notification (Torez Smith) [1383823]
-- [netdrv] asix: Fix AX88772_suspend() USB vendor commands failure issues (Torez Smith) [1383823]
-- [usb] serial: kl5kusb105: abort on open exception path (Torez Smith) [1383823]
-- [usb] serial: kl5kusb105: fix open error path (Torez Smith) [1383823]
-- [usb] fix improper return value when kzalloc fails (Torez Smith) [1383823]
-- [usb] return correct errno on failures (Torez Smith) [1383823]
-- [usb] return correct errno code when krealloc fails (Torez Smith) [1383823]
-- [usb] ohci: use dma_pool_zalloc (Torez Smith) [1383823]
-- [usb] serial: cp210x: use tcflag_t to fix incompatible pointer type (Torez Smith) [1383823]
-- [usb] cdc-acm: handle read pipe errors (Torez Smith) [1383823]
-- [usb] cdc-acm: remove is_int_ep from acm structure (Torez Smith) [1383823]
-- [usb] cdc-acm: store in and out pipes in acm structure (Torez Smith) [1383823]
-- [usb] cdc-acm: refactor killing urbs (Torez Smith) [1383823]
-- [usb] cdc-acm: avoid interface_to_usbdev call (Torez Smith) [1383823]
-- [usb] cdc-acm: reindent log messages (Torez Smith) [1383823]
-- [usb] core: urb make use of usb_endpoint_maxp_mult (Torez Smith) [1383823]
-- [usb] hub: Fix auto-remount of safely removed or ejected USB-3 devices (Torez Smith) [1383823]
-- [usb] serial: cp210x: add ID for the Zone DPMX (Torez Smith) [1383823]
-- [netdrv] usb: lan78xx: Utilize phy_ethtool_nway_reset (Torez Smith) [1383823]
-- [usb] Fix USB CB/CBI storage devices with CONFIG_VMAP_STACK=y (Torez Smith) [1383823]
-- [usb] xhci-mem: use passed in GFP flags instead of GFP_KERNEL (Torez Smith) [1383823]
-- [usb] xhci: move slot_id from xhci_hcd to xhci_command structure (Torez Smith) [1383823]
-- [usb] xhci: remove the use of xhci->addr_dev (Torez Smith) [1383823]
-- [usb] xhci: cleanup cmd_completion in xhci_virt_device (Torez Smith) [1383823]
-- [usb] xhci: add helper to get the endpoint state of a endpoint context (Torez Smith) [1383823]
-- [usb] xhci: clean up error_bitmask usage (Torez Smith) [1383823]
-- [usb] xhci: Remove duplicate xhci urb giveback functions (Torez Smith) [1383823]
-- [usb] xhci: Giveback urb in finish_td directly (Torez Smith) [1383823]
-- [usb] xhci: refactor handle_tx_event() urb giveback (Torez Smith) [1383823]
-- [usb] xhci: fix non static symbol warning (Torez Smith) [1383823]
-- [usb] xhci: cleanup and refactor td_to_noop() (Torez Smith) [1383823]
-- [usb] xhci: refactor and cleanup process_isoc_td() (Torez Smith) [1383823]
-- [usb] xhci: rename endpoint related trb variables (Torez Smith) [1383823]
-- [usb] xhci: cleanup and refactor process_bulk_intr_td() (Torez Smith) [1383823]
-- [usb] xhci: cleanup and refactor process_ctrl_td() (Torez Smith) [1383823]
-- [usb] xhci: remove extra URB_SHORT_NOT_OK checks in xhci, core handles most cases (Torez Smith) [1383823]
-- [usb] xhci: add trb_is_noop() helper function (Torez Smith) [1383823]
-- [usb] xhci: use trb helper functions when possible (Torez Smith) [1383823]
-- [usb] xhci: don't try to reset the host if it is unaccessible (Torez Smith) [1383823]
-- [usb] xhci: cleanup error message if halting the host failed (Torez Smith) [1383823]
-- [usb] xhci: remove unnecessary xhci_quiesce call before xhci_halt (Torez Smith) [1383823]
-- [netdrv] r8152: Fix error path in open function (Torez Smith) [1383823]
-- [usb] uhci: report non-PME wakeup signalling for Intel hardware (Torez Smith) [1383823]
-- [usb] serial: fix invalid user-pointer checks (Torez Smith) [1383823]
-- [usb] cdc-acm: use get_icount tty operation (Torez Smith) [1383823]
-- [usb] cdc-acm: fix invalid user-pointer check (Torez Smith) [1383823]
-- [usb] cdc-acm: fix TIOCMIWAIT (Torez Smith) [1383823]
-- [netdrv] net driver: Add Cypress GX3 VID=04b4 PID=3610 (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: add support for TI CC3200 LaunchPad (Torez Smith) [1383823]
-- [usb] storage: drop freezer.h usage (Torez Smith) [1383823]
-- [usb] wusbcore: wusbhc: use permission-specific DEVICE_ATTR variants (Torez Smith) [1383823]
-- [usb] wusbcore: dev-sysfs: use permission-specific DEVICE_ATTR variants (Torez Smith) [1383823]
-- [usb] cdc-acm: fix uninitialized variable (Torez Smith) [1383823]
-- [usb] misc: usbtest: remove unnecessary & operation (Torez Smith) [1383823]
-- [usb] host: ehci: remove unnecessary max_packet() macro (Torez Smith) [1383823]
-- [usb] core: endpoint: remove unnecessary & operation (Torez Smith) [1383823]
-- [usb] core: devices: remove unnecessary & operation (Torez Smith) [1383823]
-- [usb] host: xhci: purge GET_MAX_PACKET() (Torez Smith) [1383823]
-- [uapi] usb: ch9: make usb_endpoint_maxp() return only packet size (Torez Smith) [1383823]
-- [usb] misc: usbtest: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1383823]
-- [usb] host: xhci: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1383823]
-- [usb] host: ehci: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1383823]
-- [usb] core: devices: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1383823]
-- [netdrv] lan78xx: Use irq_domain for phy interrupt from USB Int. EP (Torez Smith) [1383823]
-- [uapi] usb: add helper to extract bits 12:11 of wMaxPacketSize (Torez Smith) [1383823]
-- [netdrv] r8152: Fix broken RX checksums (Torez Smith) [1383823]
-- [usb] core: add missing license information to some files (Torez Smith) [1383823]
-- [netdrv] kalmia: avoid potential uninitialized variable use (Torez Smith) [1383823]
-- [usb] xhci-mtk: make IPPC register optional (Torez Smith) [1383823]
-- [usb] ohci: make ohci-da8xx a separate driver (Torez Smith) [1383823]
-- [usb] core: Added devspec sysfs entry for devices behind the usb hub (Torez Smith) [1383823]
-- [kernel] tty: vgacon+sisusb, move scrolldelta to a common helper (Torez Smith) [1383823]
-- [usb] serial: ch341: add debug output for chip version (Torez Smith) [1383823]
-- [usb] serial: ch341: add support for parity, frame length, stop bits (Torez Smith) [1383823]
-- [usb] serial: ch341: reinitialize chip on reconfiguration (Torez Smith) [1383823]
-- [usb] serial: ch341: add register and USB request definitions (Torez Smith) [1383823]
-- [usb] ohci-da8xx: Remove code that references mach (Torez Smith) [1383823]
-- [usb] hwrng: chaoskey - drop workaround for old hwrng core limitation (Torez Smith) [1383823]
-- [usb] ehci: merge all cases that disable the IO watchdog (Torez Smith) [1383823]
-- [usb] ehci: elide I/O watchdog on AMD parts (Torez Smith) [1383823]
-- [usb] usbtmc: Add, clarify and fix comments (Torez Smith) [1383823]
-- [kernel] usb: fix a typo in usb_class_driver documentation (Torez Smith) [1383823]
-- [usb] increase ohci watchdog delay to 275 msec (Torez Smith) [1383823]
-- [usb] serial: cp210x: return -EIO on short control transfers (Torez Smith) [1383823]
-- [usb] serial: cp210x: clean up CSIZE handling (Torez Smith) [1383823]
-- [usb] serial: fix potential NULL-dereference at probe (Torez Smith) [1383823]
-- [usb] xhci: use default USB_RESUME_TIMEOUT when resuming ports (Torez Smith) [1383823]
-- [usb] xhci: workaround for hosts missing CAS bit (Torez Smith) [1383823]
-- [usb] xhci: add restart quirk for Intel Wildcatpoint PCH (Torez Smith) [1383823]
-- [usb] serial: cp210x: fix tiocmget error handling (Torez Smith) [1383823]
-- [usb] wusb: fix error return code in wusb_prf() (Torez Smith) [1383823]
-- [netdrv] r8152: add new products of Lenovo (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: add support for Infineon TriBoard TC2X7 (Torez Smith) [1383823]
-- [usb] wusb: Stop using the stack for sg crypto scratch space (Torez Smith) [1383823]
-- [netdrv] asix: Avoid looping when the device does not respond (Torez Smith) [1383823]
-- [netdrv] qmi_wwan: add support for Quectel EC21 and EC25 (Torez Smith) [1383823]
-- [netdrv] usb: lan78xx: use new api ethtool_{get|set}_link_ksettings (Torez Smith) [1383823]
-- [usb] host: ehci-sead3: Remove SEAD-3 EHCI code (Torez Smith) [1383823]
-- [usb] revert "usbtmc: convert to devm_kzalloc" (Torez Smith) [1383823]
-- [usb] serial: cp210x: Add ID for a Juniper console (Torez Smith) [1383823]
-- [usb] kconfig: using select for USB_COMMON dependency (Torez Smith) [1383823]
-- [usb] hub: change CLEAR_FEATURE to SET_FEATURE (Torez Smith) [1383823]
-- [usb] core: Introduce a USB port LED trigger (Torez Smith) [1383823]
-- [usb] core: hcd: add missing header dependencies (Torez Smith) [1383823]
-- [usb] misc: legousbtower: Fix NULL pointer deference (Torez Smith) [1383823]
-- [usb] cdc-acm: hardening against malicious devices (Torez Smith) [1383823]
-- [netdrv] r8152: disable ALDPS and EEE before setting PHY (Torez Smith) [1383823]
-- [netdrv] r8152: remove r8153_enable_eee (Torez Smith) [1383823]
-- [netdrv] r8152: move PHY settings to hw_phy_cfg (Torez Smith) [1383823]
-- [netdrv] r8152: move enabling PHY (Torez Smith) [1383823]
-- [netdrv] r8152: move some functions (Torez Smith) [1383823]
-- [usb] change bInterval default to 10 ms (Torez Smith) [1383823]
-- [usb] ohci: Allow ohci on omap5 also (Torez Smith) [1383823]
-- [usb] host: xhci-tegra: Fix error return code in tegra_xusb_probe() (Torez Smith) [1383823]
-- [usb] ezusb: constify local structures (Torez Smith) [1383823]
-- [usb] wusbcore: add in missing white space in error message text (Torez Smith) [1383823]
-- [usb] cdc-acm: cleaning up debug in data submission path (Torez Smith) [1383823]
-- [usb] cdc-acm: cleanup debugging in submission path (Torez Smith) [1383823]
-- [kernel] scsi: introduce a quirk for false cache reporting (Torez Smith) [1383823]
-- [usb] kconfig: let USB_ULPI_BUS depends on USB_COMMON (Torez Smith) [1383823]
-- [usb] serial: simple: add support for another Infineon flashloader (Torez Smith) [1383823]
-- [usb] cdc-acm: delete obsolete debug messages (Torez Smith) [1383823]
-- [usb] cdc-wdm: add terminating newline (Torez Smith) [1383823]
-- [usb] kconfig: move ulpi bus support out of host (Torez Smith) [1383823]
-- [usb] xhci: fix null pointer dereference in stop command timeout function (Torez Smith) [1383823]
-- [netdrv] kaweth: remove obsolete debugging statements (Torez Smith) [1383823]
-- [netdrv] lan78xx: mark symbols static where possible (Torez Smith) [1383823]
-- [netdrv] hso: Convert printk to pr_<level> (Torez Smith) [1383823]
-- [netdrv] hso: Use a more common logging style (Torez Smith) [1383823]
-- [netdrv] smsc95xx: Add mdix control via ethtool (Torez Smith) [1383823]
-- [netdrv] smsc95xx: Add register define (Torez Smith) [1383823]
-- [kernel] usb: ulpi: make ops struct constant (Torez Smith) [1383823]
-- [kernel] usb: ulpi: remove "dev" field from struct ulpi_ops (Torez Smith) [1383823]
-- [kernel] usb: ulpi: rename operations {read|write}_dev to simply {read|write} (Torez Smith) [1383823]
-- [kernel] usb: ulpi: remove calls to old api callbacks (Torez Smith) [1383823]
-- [kernel] usb: ulpi: add new api functions, {read|write}_dev() (Torez Smith) [1383823]
-- [usb] ulpi: move setting of ulpi->dev parent up in ulpi_register() (Torez Smith) [1383823]
-- [usb] core: use IS_ENABLED() instead of checking for built-in or module (Torez Smith) [1383823]
-- [netdrv] pegasus: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [netdrv] r8152: fix the coding style with checkpatch.pl (Torez Smith) [1383823]
-- [netdrv] asix: autoneg will set WRITE_MEDIUM reg (Torez Smith) [1383823]
-- [netdrv] asix: see 802.3 spec for phy reset (Torez Smith) [1383823]
-- [netdrv] asix: Fix AX88772x resume failures (Torez Smith) [1383823]
-- [netdrv] asix: Avoid looping when the device is disconnected (Torez Smith) [1383823]
-- [netdrv] asix: Add in_pm parameter (Torez Smith) [1383823]
-- [netdrv] r8152: constify ethtool_ops structures (Torez Smith) [1383823]
-- [usb] wusbcore: wa-nep: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] wusbcore: security: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] wusbcore: crypto: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] usb-skeleton: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] storage: sddr09: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] storage: alauda: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: yurex: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: uss720: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: usbsevseg: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: usblcd: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: trancevibrator: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: lvstest: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: legousbtower: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: ldusb: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: iowarrior: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: idmouse: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: ftdi-elan: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: cytherm: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: cypress_cy7c63: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: appledisplay: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: adutux: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] host: xhci: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] host: xhci-tegra: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] host: uhci-hcd: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] core: urb: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] core: message: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] core: hub: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] core: hcd: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] class: usbtmc: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] atm: usbatm: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] atm: ueagle-atm: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] atm: speedtch: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] atm: cxacru: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] serial: option: add WeTelecom 0x6802 and 0x6803 products (Torez Smith) [1383823]
-- [usb] avoid left shift by -1 (Torez Smith) [1383823]
-- [usb] fix typo in wMaxPacketSize validation (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove unused variables (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: use C_X macros (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove useless NULL-testing (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove useless dev_dbg messages (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: do not use __uX types (Torez Smith) [1383823]
-- [usb] serial: use IS_ENABLED() instead of checking for built-in or module (Torez Smith) [1383823]
-- [usb] serial: option: add WeTelecom WM-D200 (Torez Smith) [1383823]
-- [netdrv] kaweth: fix oops upon failed memory allocation (Torez Smith) [1383823]
-- [netdrv] kaweth: fix firmware download (Torez Smith) [1383823]
-- [usb] xhci: don't dereference a xhci member after removing xhci (Torez Smith) [1383823]
-- [usb] xhci: Fix panic if disconnect (Torez Smith) [1383823]
-- [usb] xhci: really enqueue zero length TRBs (Torez Smith) [1383823]
-- [usb] xhci: always handle "Command Ring Stopped" events (Torez Smith) [1383823]
-- [usb] cdc-acm: fix wrong pipe type on rx interrupt xfers (Torez Smith) [1383823]
-- [kernel] usb: bcma: support old USB 2.0 controller on Northstar devices (Torez Smith) [1383823]
-- [usb] whci: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [usb] cdc-wdm: cleanup debug messages (Torez Smith) [1383823]
-- [usb] wusbcore: wa-xfer: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] wusbcore: wa-nep: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] usb-skeleton: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] storage: usb: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: yurex: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: uss720: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: sisusbvga: sisusb: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: lvstest: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: legousbtower: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: ldusb: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: iowarrior: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: ftdi-elan: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: appledisplay: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: adutux: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] class: usbtmc: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] atm: usbatm: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] atm: ueagle-atm: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] atm: cxacru: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] serial: mos7840: fix non-atomic allocation in write path (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix non-atomic allocation in write path (Torez Smith) [1383823]
-- [netdrv] usb: usbnet: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [netdrv] usb: lan78xx: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [netdrv] usb: hso: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: usbtest: add fix for driver hang (Torez Smith) [1383823]
-- [usb] cdc-wdm: Clear read pipeline in case of error (Torez Smith) [1383823]
-- [usb] core: of.c: fix defined but not declare warning (Torez Smith) [1383823]
-- [usb] remove redundant dependency on USB_SUPPORT (Torez Smith) [1383823]
-- [usb] remove race condition in usbfs/libusb when using reap-after-disconnect (Torez Smith) [1383823]
-- [usb] devio, do not warn when allocation fails (Torez Smith) [1383823]
-- [usb] ehci: change order of register cleanup during shutdown (Torez Smith) [1383823]
-- [usb] validate wMaxPacketValue entries in endpoint descriptors (Torez Smith) [1383823]
-- [kernel] usb: ulpi: Automatically set driver::owner with ulpi_driver_register() (Torez Smith) [1383823]
-- [usb] storage: fix runtime pm issue in usb_stor_probe2 (Torez Smith) [1383823]
-- [usb] cdc-wdm: fix "out-of-sync" due to missing notifications (Torez Smith) [1383823]
-- [usb] ftdi-elan: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [usb] appledisplay: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [usb] lvstest: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [usb] misc: Add driver for usb4604 (Torez Smith) [1383823]
-- [usb] misc: ftdi-elan: Fix off-by-one memory corruptions (Torez Smith) [1383823]
-- [usb] misc: usbtest: usbtest_do_ioctl may return positive integer (Torez Smith) [1383823]
-- [usb] hub: change the locking in hub_activate (Torez Smith) [1383823]
-- [usb] hub: fix up early-exit pathway in hub_activate (Torez Smith) [1383823]
-- [usb] hub: Fix unbalanced reference count/memory leak/deadlocks (Torez Smith) [1383823]
-- [usb] serial: fix memleak in driver-registration error path (Torez Smith) [1383823]
-- [usb] serial: option: add support for Telit LE920A4 (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: add device ID for WICED USB UART dev board (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: add PIDs for Ivium Technologies devices (Torez Smith) [1383823]
-- [usb] serial: option: add D-Link DWM-156/A3 (Torez Smith) [1383823]
-- [netdrv] cdc_ether: Improve ZTE MF823/831/910 handling (Torez Smith) [1383823]
-- [usb] cdc-acm: beautify probe() (Torez Smith) [1383823]
-- [usb] cdc-wdm: use the common CDC parser (Torez Smith) [1383823]
-- [usb] cdc-acm: cleanup error handling (Torez Smith) [1383823]
-- [usb] cdc-acm: use the common parser (Torez Smith) [1383823]
-- [usb] usbnet: move the CDC parser into USB core (Torez Smith) [1383823]
-- [netdrv] rndis_host: Set valid random MAC on buggy devices (Torez Smith) [1383823]
-- [usb] serial: use variable for status (Torez Smith) [1383823]
-- [usb] serial: option: add support for Telit LE910 PID 0x1206 (Torez Smith) [1383823]
-- [netdrv] r8152: add MODULE_VERSION (Torez Smith) [1383823]
-- [usb] serial: cp210x: use kmemdup (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: use functions rather than macros (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove ti_usb_3410_5052.h (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: use __packed (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove useless comments (Torez Smith) [1383823]
-- [usb] quirks: Add no-lpm quirk for Elan (Torez Smith) [1383823]
-- [netdrv] r8152: Add support for setting pass through MAC address on RTL8153-AD (Torez Smith) [1383823]
-- [netdrv] r8152: remove cancel_delayed_work_sync in rtl8152_set_speed (Torez Smith) [1383823]
-- [netdrv] r8152: remove a netif_carrier_off in rtl8152_open function (Torez Smith) [1383823]
-- [netdrv] r8152: remove rtl_phy_reset function (Torez Smith) [1383823]
-- [netdrv] r8152: remove the setting of LAN_WAKE_EN (Torez Smith) [1383823]
-- [netdrv] r8152: fix runtime function for RTL8152 (Torez Smith) [1383823]
-- [netdrv] cdc_ncm: workaround for EM7455 "silent" data interface (Torez Smith) [1383823]
-- [usb] xhci: free the correct ring (Torez Smith) [1383823]
-- [netdrv] r8152: clear LINK_OFF_WAKE_EN after autoresume (Torez Smith) [1383823]
-- [netdrv] usbnet: Stop RX Q on MTU change (Torez Smith) [1383823]
-- [usb] don't free bandwidth_mutex too early (Torez Smith) [1383823]
-- [kernel] xhci: get rid of platform data (Torez Smith) [1383823]
-- [usb] xhci: rename and simplify last_trb_on_last_seg() helper (Torez Smith) [1383823]
-- [usb] xhci: remove enqueue_is_link() helper (Torez Smith) [1383823]
-- [usb] xhci: rework inc_deq() and fix off by one error (Torez Smith) [1383823]
-- [usb] xhci: use and add separate function for checking for link trbs (Torez Smith) [1383823]
-- [usb] xhci: clean up event ring checks from inc_enq() (Torez Smith) [1383823]
-- [usb] xhci: TD-fragment, align the unsplittable case with a bounce buffer (Torez Smith) [1383823]
-- [usb] xhci: align the last trb before link if it is easily splittable (Torez Smith) [1383823]
-- [usb] xhci: don't rely on precalculated value of needed trbs in the enqueue loop (Torez Smith) [1383823]
-- [usb] xhci: use boolean to indicate last trb in td remainder calculation (Torez Smith) [1383823]
-- [usb] xhci: properly prepare zero packet TD after normal bulk TD (Torez Smith) [1383823]
-- [usb] xhci: rename ep_ring variable in queue_bulk_tx(), no functional change (Torez Smith) [1383823]
-- [kernel] tty: vt, convert more macros to functions (Torez Smith) [1383823]
-- [kernel] tty: vt, remove consw->con_bmove (Torez Smith) [1383823]
-- [kernel] tty: vt, consw->con_set_palette cleanup (Torez Smith) [1383823]
-- [kernel] tty: vt, consw->con_scrolldelta cleanup (Torez Smith) [1383823]
-- [usb] sisusb: remove dummy variables (Torez Smith) [1383823]
-- [kernel] usb: ehci: declare hostpc register as zero-length array (Torez Smith) [1383823]
-- [usb] gadget: move gadget API functions to udc-core (Torez Smith) [1383823]
-- [usb] misc: remove outdated USB LED driver (Torez Smith) [1383823]
-- [netdrv] r8152: modify the check of the flag of PHY_RESET in set_speed function (Torez Smith) [1383823]
-- [netdrv] r8152: correct the rx early size (Torez Smith) [1383823]
-- [netdrv] r8152: disable MAC clock speed down (Torez Smith) [1383823]
-- [netdrv] r8152: save the speed (Torez Smith) [1383823]
-- [netdrv] r8152: move the setting for the default speed (Torez Smith) [1383823]
-- [netdrv] r8152: move the settings of PHY to a work queue (Torez Smith) [1383823]
-- [usb] common: otg-fsm: add license to usb-otg-fsm (Torez Smith) [1383823]
-- [netdrv] r8152: replace netdev_alloc_skb_ip_align with napi_alloc_skb (Torez Smith) [1383823]
-- [usb] misc: usb3503: Clean up on driver unbind (Torez Smith) [1383823]
-- [usb] misc: usb3503: Set platform data (Torez Smith) [1383823]
-- [usb] microtek: Use "foo *bar" instead of "foo * bar" (Torez Smith) [1383823]
-- [usb] cdc-acm: Space prohibited before close parenthesis ')' (Torez Smith) [1383823]
-- [usb] echi-hcd: Add ehci_setup check before echi_shutdown (Torez Smith) [1383823]
-- [usb] ohci: Don't mark EDs as ED_OPER if scheduling fails (Torez Smith) [1383823]
-- [usb] hwrng: chaoskey - Fix URB warning due to timeout on Alea (Torez Smith) [1383823]
-- [usb] hwrng: chaoskey - Add support for Araneus Alea I USB RNG (Torez Smith) [1383823]
-- [usb] ehci: avoid undefined pointer arithmetic and placate UBSAN (Torez Smith) [1383823]
-- [usb] quirks: Add no-lpm quirk for Acer C120 LED Projector (Torez Smith) [1383823]
-- [usb] quirks: Fix sorting (Torez Smith) [1383823]
-- [usb] xhci: fix platform quirks overwrite regression in 4.7-rc1 (Torez Smith) [1383823]
-- [netdrv] usbnet: smsc95xx: fix link detection for disabled autonegotiation (Torez Smith) [1383823]
-- [netdrv] pegasus: simplify logical constraint (Torez Smith) [1383823]
-- [netdrv] usb: ch9200: use kmemdup (Torez Smith) [1383823]
-- [netdrv] cdc_ncm: update datagram size after changing mtu (Torez Smith) [1383823]
-- [netdrv] revert "net: pegasus: remove dead coding" (Torez Smith) [1383823]
-- [netdrv] pegasus: remove dead coding (Torez Smith) [1383823]
-- [netdrv] asix: Fix offset calculation in asix_rx_fixup() causing slow transmissions (Torez Smith) [1383823]
-- [usb] ohci-jz4740: Remove obsolete driver (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: add MOXA UPORT 11x0 support (Torez Smith) [1383823]
-- [usb] serial: fix minor-number allocation (Torez Smith) [1383823]
-- [usb] serial: quatech2: fix use-after-free in probe error path (Torez Smith) [1383823]
-- [usb] serial: keyspan: fix debug and error messages (Torez Smith) [1383823]
-- [usb] serial: keyspan: fix URB unlink (Torez Smith) [1383823]
-- [usb] serial: keyspan: fix use-after-free in probe error path (Torez Smith) [1383823]
-- [usb] serial: io_edgeport: fix memory leaks in probe error path (Torez Smith) [1383823]
-- [usb] serial: io_edgeport: fix memory leaks in attach error path (Torez Smith) [1383823]
-- [usb] host: xhci-rcar: Avoid long wait in xhci_reset() (Torez Smith) [1383823]
-- [usb] wusbcore: Do not initialise statics to 0 (Torez Smith) [1383823]
-- [usb] wusbcore: Remove space before ', ' and '(' (Torez Smith) [1383823]
-- [usb] serial: cp210x: clean up CRTSCTS flag code (Torez Smith) [1383823]
-- [usb] serial: cp210x: get rid of magic numbers in CRTSCTS flag code (Torez Smith) [1383823]
-- [usb] serial: cp210x: fix hardware flow-control disable (Torez Smith) [1383823]
-- [netdrv] usbnet: smsc95xx: silence an uninitialized variable warning (Torez Smith) [1383823]
-- [netdrv] usbnet/smsc75xx: silence uninitialized variable warning (Torez Smith) [1383823]
-- [usb] serial: option: add even more ZTE device ids (Torez Smith) [1383823]
-- [usb] serial: option: add more ZTE device ids (Torez Smith) [1383823]
-- [usb] sisusbvga: correct speed testing (Torez Smith) [1383823]
-- [usb] misc: usbtest: fix pattern tests for scatterlists (Torez Smith) [1383823]
-- [kernel] usb: leave LPM alone if possible when binding/unbinding interface drivers (Torez Smith) [1383823]
-- [netdrv] rtl8152: correct speed testing (Torez Smith) [1383823]
-- [netdrv] usbnet: correct speed testing (Torez Smith) [1383823]
-- [usb] serial: option: add support for Cinterion PH8 and AHxx (Torez Smith) [1383823]
-- [kernel] tty: vt, make color_table const (Torez Smith) [1383823]
-- [net] tty: Replace TTY_THROTTLED bit tests with tty_throttled() (Torez Smith) [1383823]
-- [usb] ehci: make all debugging depend on CONFIG_DYNAMIC_DEBUG (Torez Smith) [1383823]
-- [usb] Add driver for UCSI (Torez Smith) [1383823]
-- [usb] xhci: tegra: Add Tegra210 support (Torez Smith) [1383823]
-- [usb] xhci: Add NVIDIA Tegra XUSB controller driver (Torez Smith) [1383823]
-- [usb] core: move root hub's device node assignment after it is added to bus (Torez Smith) [1383823]
-- [usb] Use "foo *bar" instead of "foo * bar" (Torez Smith) [1383823]
-- [usb] Remove unnecessary space before function pointer arguments (Torez Smith) [1383823]
-- [kernel] usb: core: hub: hub_port_init lock controller instead of bus (Torez Smith) [1383823]
-- [usb] devio: declare usbdev_vm_ops as static (Torez Smith) [1383823]
-- [usb] misc: usbtest: fix error of urb allocation (Torez Smith) [1383823]
-- [usb] core: buffer: avoid NULL pointer dereferrence (Torez Smith) [1383823]
-- [usb] hcd: do not call whc_clean_up on wch_init call failure (Torez Smith) [1383823]
-- [usb] xhci: remove duplicate code of interval checking (Torez Smith) [1383823]
-- [usb] xhci: remove duplicate function xhci_urb_to_transfer_ring (Torez Smith) [1383823]
-- [usb] xhci: merge xhci_queue_bulk_tx and queue_bulk_sg_tx functions (Torez Smith) [1383823]
-- [usb] usb: core: Minimize irq disabling in usb_sg_cancel() (Torez Smith) [1383823]
-- [usb] usb: core: Don't disable irqs in usb_sg_wait() during URB submit (Torez Smith) [1383823]
-- [usb] storage: fix multi-line comment style (Torez Smith) [1383823]
-- [usb] storage: scsiglue: limit USB3 devices to 2048 sectors (Torez Smith) [1383823]
-- [usb] storage: scsiglue: further describe our 240 sector limit (Torez Smith) [1383823]
-- [usb] hub: admit devices are SS+ (Torez Smith) [1383823]
-- [kernel] usb: correct intervals for SS+ (Torez Smith) [1383823]
-- [kernel] usb: LTM also for USB 3.1 (Torez Smith) [1383823]
-- [usb] serial: use IS_ENABLED() instead of checking for FOO || FOO_MODULE (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: constify ftdi_sio_quirk structures (Torez Smith) [1383823]
-- [usb] wusbcore: remove unreachable code (Torez Smith) [1383823]
-- [usb] whci-hcd: add more checks for dma mapping error (Torez Smith) [1383823]
-- [usb] xhci: fix typo in babble endpoint handling comment (Torez Smith) [1383823]
-- [uapi] usb: pd: additional feature selectors (Torez Smith) [1383823]
-- [uapi] usb: pd: define specific requests (Torez Smith) [1383823]
-- [uapi] usb: add descriptors from USB Power Delivery spec (Torez Smith) [1383823]
-- [usb] common: rework CONFIG_USB_COMMON logic (Torez Smith) [1383823]
-- [kernel] usb: otg-fsm: support multiple instances (Torez Smith) [1383823]
-- [kernel] usb: otg-fsm: Add documentation for struct otg_fsm (Torez Smith) [1383823]
-- [acpi] acpica: linux: Allow ACPICA inclusion for CONFIG_ACPI=n builds (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: linux: Add support to exclude <asm/acenv.h> inclusion (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: linux headers: Add <asm/acenv.h> to remove mis-ordered inclusion of <asm/acpi.h> (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: linux headers: Add <acpi/platform/aclinuxex.h> (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: linux header: Add support for stubbed externals (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: osl: Add configurability for generic external functions (Prarit Bhargava) [1383823 1432953]
-- [acpi] acpica: Add support to allow host OS to redefine individual OSL prototypes (Prarit Bhargava) [1432953 1383823]
-
-* Thu Mar 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-626.el7]
-- [netdrv] nfp: consolidate two PCI device tables/structures into one (John Linville) [1406197]
-- [netdrv] nfp: don't tell FW about the reserved buffer space (John Linville) [1406197]
-- [netdrv] nfp: allow application firmware to limit number of SR-IOV VFs (John Linville) [1406197]
-- [netdrv] nfp: return nfp_rtsym_read_le() errors correctly (John Linville) [1406197]
-- [netdrv] nfp: add very basic access to NSP logs (John Linville) [1406197]
-- [netdrv] nfp: report NSP ABI version in ethtool FW version (John Linville) [1406197]
-- [netdrv] nfp: store NSP ABI version in state structure (John Linville) [1406197]
-- [netdrv] nfp: report manufacturing info on load (John Linville) [1406197]
-- [netdrv] nfp: refactor NSP initialization and add error message (John Linville) [1406197]
-- [netdrv] nfp: add the PF driver (John Linville) [1406197]
-- [netdrv] nfp: allocate irqs in lower driver (John Linville) [1406197]
-- [netdrv] nfp: add port layer to debugfs directories (John Linville) [1406197]
-- [netdrv] nfp: add support for service processor access (John Linville) [1406197]
-- [netdrv] nfp: add rtsym support (John Linville) [1406197]
-- [netdrv] nfp: add MIP reading support (John Linville) [1406197]
-- [netdrv] nfp: add support for reading nffw info (John Linville) [1406197]
-- [netdrv] nfp: add hwinfo support (John Linville) [1406197]
-- [netdrv] nfp: add support for resources (John Linville) [1406197]
-- [netdrv] nfp: add CPP access core (John Linville) [1406197]
-- [netdrv] nfp: rename the driver and add new main file (John Linville) [1406197]
-- [kernel] bitfield.h: add FIELD_FIT() helper (John Linville) [1406197]
-- [kernel] add basic register-field manipulation macros (John Linville) [1406197]
-- [netdrv] netronome: don't access real_num_rx_queues directly (John Linville) [1406197]
-- [netdrv] nfp: reorganize nfp_net_rx() to get packet offsets early (John Linville) [1406197]
-- [netdrv] nfp: add support for ethtool .set_channels (John Linville) [1406197]
-- [netdrv] nfp: move RSS indirection table init into a separate function (John Linville) [1406197]
-- [netdrv] nfp: add helper to reassign rings to IRQ vectors (John Linville) [1406197]
-- [netdrv] nfp: loosen relation between rings and IRQs vectors (John Linville) [1406197]
-- [netdrv] nfp: reuse ring helpers on .ndo_open() path (John Linville) [1406197]
-- [netdrv] nfp: rename ring allocation helpers (John Linville) [1406197]
-- [netdrv] nfp: centralize runtime reconfiguration logic (John Linville) [1406197]
-- [netdrv] nfp: add support for ethtool .get_channels (John Linville) [1406197]
-- [netdrv] nfp: bring back support for different ring counts (John Linville) [1406197]
-- [netdrv] nfp: replace num_irqs with max_r_vecs (John Linville) [1406197]
-- [netdrv] nfp: remove nfp_net_irqs_wanted() (John Linville) [1406197]
-- [netdrv] nfp: use unsigned int for vector/ring counts (John Linville) [1406197]
-- [netdrv] nfp: create separate define for max number of vectors (John Linville) [1406197]
-- [netdrv] nfp: use AND instead of modulo to get ring indexes (John Linville) [1406197]
-- [netdrv] nfp: add separate buffer allocation function for napi (John Linville) [1406197]
-- [netdrv] nfp: use alloc_frag() and build_skb() (John Linville) [1406197]
-- [netdrv] nfp: add buffer drop/recycle helper for RX (John Linville) [1406197]
-- [netdrv] nfp: centralize the buffer size calculation (John Linville) [1406197]
-- [netdrv] nfp: remove inline attributes and dead code (John Linville) [1406197]
-- [netdrv] nfp: remove unnecessary call to ether_setup() (John Linville) [1406197]
-- [netdrv] nfp: remove support for nfp3200 (John Linville) [1406197]
-- [netdrv] nfp: backport definitions of nn_{read,write}* (John Linville) [1406197]
-- [netdrv] nfp: simplify nfp_net_poll() (John Linville) [1406197]
-- [netdrv] xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend() (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Improve error handling during initialization (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Rework the fix for Rx stall during OOM and network stress (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen/netfront: set default upper limit of tx/rx queues to 8 (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Fix Rx stall during network stress and OOM (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: cast grant table reference first to type int (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: do not cast grant table reference to signed short (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: only napi_synchronize() if running (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Use setup_timer (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: request Tx response events more often (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: update num_queues to real created (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: always set num queues if possible (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: respect user provided max_queues (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Remove the meaningless code (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: only clean up queues if present (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: properly destroy queues when removing device (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: refactor making Tx requests (Vitaly Kuznetsov) [1102638]
-- [xen] add page_to_mfn() (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: refactor skb slot counting (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: use different locks for Rx and Tx stats (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: remove residual dead code (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: always keep the Rx ring full of requests (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: print correct number of queues (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: release per-queue Tx and Rx resource when disconnecting (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: fix locking in connect error path (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: call netif_carrier_off() only once when disconnecting (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: don't nest queue locks in xennet_connect() (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: recreate queues correctly when reconnecting (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: fix oops when disconnected from backend (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: initialise queue name in xennet_init_queue (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Add support for multiple queues (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Factor queue-specific data into queue struct (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: fix array initialization bug (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Call dev_kfree_skb_any instead of dev_kfree_skb (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: handle backend CLOSED without CLOSING (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: fix missing rx_refill_timer when allocate memory failed (Vitaly Kuznetsov) [1102638]
-
-* Thu Mar 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-625.el7]
-- [net] sched: cls_u32: complete the check for non-forced case in u32_destroy() (Ivan Vecera) [1428588]
-- [net] sched: fix a use-after-free in tc_ctl_tfilter() (Ivan Vecera) [1428588]
-- [net] sched: destroy proto tp when all filters are gone (Ivan Vecera) [1428588]
-- [net] sched: fq_codel: return non zero qlen in class dumps (Ivan Vecera) [1428588]
-- [net] sched: close another race condition in tcf_mirred_release() (Ivan Vecera) [1428588]
-- [net] sched: Add description for cpu_bstats argument (Ivan Vecera) [1428588]
-- [net] sched: fix missing free per cpu on qstats (Ivan Vecera) [1428588]
-- [net] sched: act_pedit: check binding before calling tcf_hash_release() (Ivan Vecera) [1428588]
-- [net] sched: fix refcount imbalance in actions (Ivan Vecera) [1428588]
-- [net] sched: act_mirred: remove spinlock in fast path (Ivan Vecera) [1428588]
-- [net] sched: act_gact: remove spinlock in fast path (Ivan Vecera) [1428588]
-- [net] sched: act_gact: read tcfg_ptype once (Ivan Vecera) [1428588]
-- [net] sched: act_gact: use a separate packet counters for gact_determ() (Ivan Vecera) [1428588]
-- [net] sched: act_gact: make tcfg_pval non zero (Ivan Vecera) [1428588]
-- [net] sched: add percpu stats to actions (Ivan Vecera) [1428588]
-- [net] sched: extend percpu stats helpers (Ivan Vecera) [1428588]
-- [net] sched: invoke ->attach() after setting dev->qdisc (Ivan Vecera) [1428588]
-- [net] set qdisc pkt len before tc_classify (Ivan Vecera) [1428588]
-- [net] kill useless net_*_ingress_queue() definitions when NET_CLS_ACT is unset (Ivan Vecera) [1428588]
-- [net] sched: use counter to break reclassify loops (Ivan Vecera) [1428588]
-- [net] sched: fix typo in net_device ifdef (Ivan Vecera) [1428588]
-- [net] sched: further simplify handle_ing (Ivan Vecera) [1428588]
-- [net] sched: consolidate handle_ing and ing_filter (Ivan Vecera) [1428588]
-- [net] tc: remove unused redirect ttl (Ivan Vecera) [1428588]
-- [net] sched: run ingress qdisc without locks (Ivan Vecera) [1428588]
-- [net] sched: remove TC_MUNGED bits (Ivan Vecera) [1428588]
-- [net] use jump label patching for ingress qdisc in __netif_receive_skb_core (Ivan Vecera) [1428588]
-- [net] sched: fix panic in rate estimators (Ivan Vecera) [1428588]
-- [net] sched: cls: use nla_nest_cancel instead of nlmsg_trim (Ivan Vecera) [1428588]
-- [net] sched: cls_basic: fix error path in basic_change() (Ivan Vecera) [1428588]
-- [net] sched: cls: remove unused op put from tcf_proto_ops (Ivan Vecera) [1428588]
-- [net] sched: cls_cgroup: remove unnecessary if (Ivan Vecera) [1428588]
-- [net] sched: cls_flow: remove duplicate assignments (Ivan Vecera) [1428588]
-- [net] sched: cls_flow: remove faulty use of list_for_each_entry_rcu (Ivan Vecera) [1428588]
-- [net] sched: cls_bpf: remove faulty use of list_for_each_entry_rcu (Ivan Vecera) [1428588]
-- [net] sched: cls_bpf: remove unnecessary iteration and use passed arg (Ivan Vecera) [1428588]
-- [net] sched: cls_basic: remove unnecessary iteration and use passed arg (Ivan Vecera) [1428588]
-- [net] sched: tc_vlan: fix type of tcfv_push_vid (Ivan Vecera) [1428588]
-- [net] sched: introduce vlan action (Ivan Vecera) [1428588]
-- [net] sched: initialize bstats syncp (Ivan Vecera) [1428588]
-- [net] sched: fix unused variables in __gnet_stats_copy_basic_cpu() (Ivan Vecera) [1428588]
-- [net] sched: do not use tcf_proto 'tp' argument from call_rcu (Ivan Vecera) [1428588]
-- [net] sched: remove tcf_proto from ematch calls (Ivan Vecera) [1428588]
-- [net] sched: enable per cpu qstats (Ivan Vecera) [1428588]
-- [net] sched: restrict use of qstats qlen (Ivan Vecera) [1428588]
-- [net] sched: make bstats per cpu and estimator RCU safe (Ivan Vecera) [1428588]
-- [net] sched: fix errno in tcindex_set_parms() (Ivan Vecera) [1428588]
-- [net] sched: remove the first parameter from tcf_exts_destroy() (Ivan Vecera) [1428588]
-- [net] sched: hold tcf_lock in netdevice notifier (Ivan Vecera) [1428588]
-- [net] sched: add cond_resched() to class and qdisc dump (Ivan Vecera) [1428588]
-- [net] sched: do not use rcu in tc_dump_qdisc() (Ivan Vecera) [1428588]
-- [net] sched: move the sanity test in qdisc_list_add() (Ivan Vecera) [1428588]
-- [net] sched: htb: do not acquire qdisc lock in dump operations (Ivan Vecera) [1428588]
-- [net] sched: act: clean up tca_action_flush() (Ivan Vecera) [1428588]
-- [net] sched: act: refuse to remove bound action outside (Ivan Vecera) [1428588]
-- [net] sched: act: move tcf_hashinfo_init() into tcf_register_action() (Ivan Vecera) [1428588]
-- [net] sched: act: remove capab from struct tc_action_ops (Ivan Vecera) [1428588]
-- [net] sched: act: refactor cleanup ops (Ivan Vecera) [1428588]
-- [net] sched: act: hide struct tcf_common from API (Ivan Vecera) [1428588]
-- [net] sched: act: export tcf_hash_search() instead of tcf_hash_lookup() (Ivan Vecera) [1428588]
-- [net] sched: act: fetch hinfo from a->ops->hinfo (Ivan Vecera) [1428588]
-- [net] sched: replace macros net_random and net_srandom with direct calls to prandom (Ivan Vecera) [1428588]
-- [net] sched: act: use tcf_hash_release() in net/sched/act_police.c (Ivan Vecera) [1428588]
-- [net] sched: act: remove struct tcf_act_hdr (Ivan Vecera) [1428588]
-- [net] sched: act: clean up notification functions (Ivan Vecera) [1428588]
-- [net] sched: act: move idx_gen into struct tcf_hashinfo (Ivan Vecera) [1428588]
-- [net] sched: action: make local function static (Ivan Vecera) [1428588]
-- [net] sched: act: action flushing missaccounting (Ivan Vecera) [1428588]
-- [net] sched: Remove unnecessary checks for act->ops (Ivan Vecera) [1428588]
-- [net] sched: act: Dont increment refcnt on replace (Ivan Vecera) [1428588]
-- [net] sched: set root qdisc before change() in attach_default_qdiscs() (Ivan Vecera) [1428588]
-- [net] sched: remove unnecessary parentheses while return (Ivan Vecera) [1428588]
-- [net] sched: give visibility to mq slave qdiscs (Ivan Vecera) [1428588]
-- [net] netem: missing break in ge loss generator (Ivan Vecera) [1428588]
-- [net] netem: fix gemodel loss generator (Ivan Vecera) [1428588]
-- [net] gen_stats: Remove extern from function prototypes (Ivan Vecera) [1428588]
-
-* Thu Mar 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-624.el7]
-- [nvme] redhat: mark NVMe over FC as tech preview (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Fix missing dma sync to nvme data structures (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Call fatal_error from keep-alive timout expiration (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: cancel fatal error and flush async work before free controller (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: delete controllers deletion upon subsystem release (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet_fc: correct logic in disconnect queue LS handling (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: fix nvme_rdma_queue_is_ready (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet/fcloop: remove some logically dead code performing redundant ret checks (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: fix KATO offset in Set Features (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] fc: simplify error handling of nvme_fc_create_hw_io_queues (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] fc: correct some printk information (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] scsi: Remove START STOP emulation (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] pci: Delete misleading queue-wrap comment (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] simplify stripe quirk (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme : Use correct scnprintf in cmb show (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] pci: Log PCI_STATUS when the controller dies (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Add FC LLDD loopback driver to test FC-NVME (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Add target support for FC transport (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Add host support for FC transport (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] admin-cmd: Added smart-log command support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Add host_traddr options field to host infrastructure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] untangle 0 and BLK_MQ_RQ_QUEUE_OK (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] don't pass the full CQE to nvme_complete_async_event (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme: introduce struct nvme_request (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-fabrics: Add FC transport LLDD api definitions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-fabrics: Add FC transport FC-NVME definitions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-fabrics: Add FC transport error codes to nvme.h (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [uapi] Add type 0x28 NVME type code to scsi fc headers (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: patch target code in prep for FC transport support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: set sqe.command_id in core not transports (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] parser: add u64 number parser (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: align to generic ib_event logging helper (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: align to generic ib_event logging helper (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: remove redundant define (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Adjust source code indentation (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] scsi: Remove set-but-not-used variables (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Fix possible infinite loop triggered on hot namespace removal (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Fix a memory leak in an nvmf_create_ctrl() error path (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Fix memory leaks in nvmf_parse_options() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: force queue size to respect controller capability (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Fix REJ status code (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme: move NVMe class code to pci_ids.h (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: blk_account_io_start() takes a bool (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] don't schedule multiple resets (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] pci: Don't free queues on error (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: drain the queue-pair just before freeing it (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: stop and free io queues on connect failure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: don't forget to delete a queue from the list of connection failed (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Don't queue fatal error work if csts.cfs is set (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: reject non-connect commands before the queue is live (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Fix possible NULL deref when handling rdma cm events (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: use symbolic constants for CNS values (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] use symbolic constants for CNS values (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add an enum for cns values (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: resync with nvme-cli (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme: Add tertiary number to NVME_VS (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme : Add sysfs entry for NVMe CMBs when appropriate (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Delete created IO queues on reset (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Stop probing a removed device (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Pass pointers, not dma addresses, to nvme_get/set_features() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] scsi: Remove power management support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Make dsm number of ranges zero based (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Use direct IO for writes (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: revise host transport option descriptions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: rework nvmf_get_address() for variable options (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: account higher order dispatch (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: allow the driver to pass in a queue mapping (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: only allocate a single mq_map per tag_set (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: don't redistribute hardware queues on a CPU hotplug event (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: skip unmapped queues in blk_mq_alloc_request_hctx (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: only clear queue flags after successful connect (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: fix null pointer dereference on req->mr (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: use ib_client API to detect device removal (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: add DELETING queue flag (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: destroy nvme queue rdma resources on connect failure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme_rdma: keep a ref on the ctrl during delete/flush (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Get rid of redundant defines (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Get rid of duplicate variable (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: get a reference when reusing a nvme_host structure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-fabrics: change NQN UUID to big-endian format (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: set sqsize to 0-based value, per spec (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: fix sqsize/hsqsize per spec (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] fabrics: define admin sqsize min default, per spec (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: +1 to *queue_size from hsqsize/hrqsize (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Fix use after free (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: initialize ret to zero to avoid returning garbage (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: start async event handler after reconnecting to a controller (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Fix controller serial number inconsistency (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Don't use the inline buffer in order to avoid allocation for small reads (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Correctly handle RDMA device hot removal (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Make sure to shutdown the controller if we can (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: Remove duplicate call to nvme_remove_namespaces (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Free the I/O tags when we delete the controller (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Remove duplicate call to nvme_remove_namespaces (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Fix device removal handling (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Queue ns scanning after a sucessful reconnection (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Don't leak uninitialized memory in connect request private data (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] make NVME_RDMA depend on BLOCK (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] fabrics drivers don't need the nvme-pci driver (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] quirk: Add a delay before checking device ready for memblaze device (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Fix nvme_get/set_features() with a NULL result pointer (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] Fix race triggered by blk_set_queue_dying() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Prevent controller state invalid transition (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: fix deadlock in blk_mq_register_disk() error path (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] pci: Provide SR-IOV support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] don't allocate unused nvme_major (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Limit command retries (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: fix nvme-loop Kconfig dependencies (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: fix return value check in nvmet_subsys_alloc() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: add-remove ctrl repeat fix (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Remove tl_retry_count (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Don't use tl_retry_count (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: fix the return value of nvme_rdma_reinit_request() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: use IB_PD_UNSAFE_GLOBAL_RKEY (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] ib/core: add support to create a unsafe global rkey to ib_create_pd (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: add a NVMe over Fabrics RDMA host driver (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: add a NVMe over Fabrics RDMA target driver (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-rdma.h: Add includes for nvme rdma_cm negotiation (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] add new reconnecting controller state (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: Introduce blk_mq_reinit_tagset (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: fix an error code (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: add configfs dependency (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: add a NVMe loopback host driver (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] scatterlist: move SG pool code from SCSI driver to lib/sg_pool.c (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [scsi] rename SG related struct and functions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [scsi] replace "mq" with "first_chunk" in SG functions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [scsi] replace "scsi_data_buffer" with "sg_table" in SG functions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvmet: add a generic NVMe target (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] configfs: switch ->default groups to a linked list (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] add keep-alive support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: Add keep-alive opcode and identify controller attribute (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: add a generic NVMe over Fabrics library (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add NVMe over Fabrics definitions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] add fabrics sysfs attributes (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Modify and export sync command submission for fabrics (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] allow transitioning from NEW to LIVE state (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: add blk_mq_alloc_request_hctx (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] move the workaround for I/O queue-less controllers from PCIe to core (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme: factor out a add nvme_is_write helper (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: add a flags parameter to blk_mq_alloc_request (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] allow for size limitations from transport drivers (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add AER constants (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add constants for PSDT and FUSE values (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add NVM command set SQE/CQE size defines (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: Add get_log_page command strucure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add RTD3R, RTD3E and OAES fields (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: actually hook up defer list when running requests (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Fix removal in case of active namespace list scanning method (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] move nvme_cancel_request() to common code (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] update and rename nvme_cancel_io to nvme_cancel_request (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] block: add REQ_OP definitions and helpers (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] drivers/scsi/scsi_debug.c: resolve sg buffer const-ness issue (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] scatterlist: mark input buffer parameters as 'const' (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] scatterlist.c: fix kerneldoc for sg_pcopy_{to, from}_buffer() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-
-* Tue Mar 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-623.el7]
-- [scsi] aacraid: Fix potential null access (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix typo in blink status (Scott Benesh) [1384213]
-- [scsi] aacraid: remove redundant zero check on ret (Scott Benesh) [1384213]
-- [scsi] aacraid: Fixed expander hotplug for SMART family (Scott Benesh) [1384213]
-- [scsi] aacraid: Update driver version (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix a potential spinlock double unlock bug (Scott Benesh) [1384213]
-- [scsi] aacraid: Save adapter fib log before an IOP reset (Scott Benesh) [1384213]
-- [scsi] aacraid: Reorder Adapter status check (Scott Benesh) [1384213]
-- [scsi] aacraid: Skip IOP reset on controller panic (SMART Family) (Scott Benesh) [1384213]
-- [scsi] aacraid: Decrease adapter health check interval (Scott Benesh) [1384213]
-- [scsi] aacraid: Reload offlined drives after controller reset (Scott Benesh) [1384213]
-- [scsi] aacraid: Skip wellness sync on controller failure (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix sync fibs time out on controller reset (Scott Benesh) [1384213]
-- [scsi] aacraid: Added sysfs for driver version (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix memory leak in fib init path (Scott Benesh) [1384213]
-- [scsi] aacraid: Prevent E3 lockup when deleting units (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix for excessive prints on EEH (Scott Benesh) [1384213]
-- [scsi] aacraid: Use correct channel number for raw srb (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix camel case (Scott Benesh) [1384213]
-- [scsi] aacraid: avoid open-coded upper_32_bits (Scott Benesh) [1384213]
-- [scsi] aacraid: rcode is unsigned and should be signed int (Scott Benesh) [1384213]
-- [scsi] aacraid: update version (Scott Benesh) [1384213]
-- [scsi] aacraid: Change Driver Version Prefix (Scott Benesh) [1384213]
-- [scsi] aacraid: Update copyrights (Scott Benesh) [1384213]
-- [scsi] aacraid: Retrieve HBA host information ioctl (Scott Benesh) [1384213]
-- [scsi] aacraid: Added ioctl to trigger IOP/IWBR reset (Scott Benesh) [1384213]
-- [scsi] aacraid: Added new IWBR reset (Scott Benesh) [1384213]
-- [scsi] aacraid: VPD 83 type3 support (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support to abort cmd and reset lun (Scott Benesh) [1384213]
-- [scsi] aacraid: Add task management functionality (Scott Benesh) [1384213]
-- [scsi] aacraid: Include HBA direct interface (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support for hotplug (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support to set QD of attached drives (Scott Benesh) [1384213]
-- [scsi] aacraid: Retrieve Queue Depth from Adapter FW (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support for periodic wellness sync (Scott Benesh) [1384213]
-- [scsi] aacraid: Reworked aac_command_thread (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support for read medium error (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support for response path (Scott Benesh) [1384213]
-- [scsi] aacraid: Process Error for response I/O (Scott Benesh) [1384213]
-- [scsi] aacraid: Reworked scsi command submission path (Scott Benesh) [1384213]
-- [scsi] aacraid: Retrieve and update the device types (Scott Benesh) [1384213]
-- [scsi] aacraid: Added sa firmware support (Scott Benesh) [1384213]
-- [scsi] aacraid: added support for init_struct_8 (Scott Benesh) [1384213]
-- [scsi] aacraid: Added aacraid.h include guard (Scott Benesh) [1384213]
-- [scsi] aacraid: Remove duplicate irq management code (Scott Benesh) [1384213]
-- [scsi] aacraid: Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix INTx/MSI-x issue with older controllers (Scott Benesh) [1384213]
-- [scsi] aacraid: mark aac_src_select_comm() static (Scott Benesh) [1384213]
-- [scsi] aacraid: use kmemdup (Scott Benesh) [1384213]
-- [scsi] qla2xxx: Fix apparent cut-n-paste error (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Fix Target mode handling with Multiqueue changes (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Add Block Multi Queue functionality (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Add multiple queue pair functionality (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Fix NULL pointer deref in QLA interrupt (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Add irq affinity notification (Chad Dupuis) [1414957]
-
-* Tue Mar 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-622.el7]
-- [fs] vfs: In d_path don't call d_dname on a mount point (Aristeu Rozanski) [1418962]
-- [hv] util: don't forget to init host_ts.lock (Vitaly Kuznetsov) [1388419]
-- [hv] hv_utils: implement Hyper-V PTP source (Vitaly Kuznetsov) [1388419]
-- [hv] export current Hyper-V clocksource (Vitaly Kuznetsov) [1388419]
-- [hv] utils: Fix the mapping between host version and protocol to use (Vitaly Kuznetsov) [1388419]
-- [hv] hv_util: Avoid dynamic allocation in time synch (Vitaly Kuznetsov) [1388419]
-- [hv] utils: Support TimeSync version 4.0 protocol samples (Vitaly Kuznetsov) [1388419]
-- [hv] utils: Use TimeSync samples to adjust the clock after boot (Vitaly Kuznetsov) [1388419]
-- [mm] memory_hotplug: set magic number to page->freelist instead of page->lru.next (Yasuaki Ishimatsu) [1417692]
-- [mm] sparse: use page_private() to get page->private value (Yasuaki Ishimatsu) [1417692]
-- [mm] sparsemem: fix a bug in free_map_bootmem when CONFIG_SPARSEMEM_VMEMMAP (Yasuaki Ishimatsu) [1417696]
-- [mm] sparsemem: use PAGES_PER_SECTION to remove redundant nr_pages parameter (Yasuaki Ishimatsu) [1417696]
-- [x86] numa: Online memory-less nodes at boot time (Rui Wang) [1405893]
-- [x86] mm/numa: Drop dead code and rename setup_node_data() to setup_alloc_data() (Rui Wang) [1405893]
-- [x86] revert "mce: Do not panic when single core has reached a timeout" (Xunlei Pang) [1256375]
-- [x86] mce: Handle broadcasted MCE gracefully with kexec (Xunlei Pang) [1256375]
-- [net] dccp/tcp: fix routing redirect race (Eric Garver) [1387485]
-- [net] ipv6: don't increase size when refragmenting forwarded ipv6 skbs (Florian Westphal) [1430571]
-- [net] bridge: drop netfilter fake rtable unconditionally (Florian Westphal) [1430571]
-- [net] ipv6: avoid write to a possibly cloned skb (Florian Westphal) [1430571]
-- [net] netfilter: bridge: honor frag_max_size when refragmenting (Florian Westphal) [1430571]
-- [net] l2tp: Avoid schedule while atomic in exit_net (Lance Richardson) [1429687]
-- [net] l2tp: protect tunnel->del_work by ref_count (Lance Richardson) [1429687]
-- [net] sctp: deny peeloff operation on asocs with threads sleeping on it (Hangbin Liu) [1429497] {CVE-2017-5986 CVE-2017-6353}
-- [net] sctp: avoid BUG_ON on sctp_wait_for_sndbuf (Hangbin Liu) [1429497] {CVE-2017-5986 CVE-2017-6353}
-- [net] sctp: set sin_port for addr param when checking duplicate address (Xin Long) [1308362]
-- [net] sctp: sctp_transport_dst_check should check if transport pmtu is dst mtu (Xin Long) [1412865]
-- [net] sctp: call rcu_read_lock before checking for duplicate transport nodes (Xin Long) [1383938]
-- [net] sctp: check duplicate node before inserting a new transport (Xin Long) [1383938]
-- [net] sctp: sctp_epaddr_lookup_transport should be protected by rcu_read_lock (Xin Long) [1383938]
-- [net] sctp: use new rhlist interface on sctp transport rhashtable (Xin Long) [1383938]
-- [net] Add netdev all_adj_list refcnt propagation to fix panic (Adrian Reber) [1425010]
-- [hid] usbhid: change return error of usbhid_output_report (Benjamin Tissoires) [1401381]
-- [scsi] storvsc: properly set residual data length on errors (Cathy Avery) [1364282]
-- [sound] alsa: hda - add support for docking station for HP 840 G3 (Jaroslav Kysela) [1312217]
-- [sound] alsa: hda - add support for docking station for HP 820 G2 (Jaroslav Kysela) [1312217]
-- [kernel] rcu: Reverse rcu_dereference_check() conditions (Waiman Long) [1432967]
-- [kernel] signals: avoid unnecessary taking of sighand->siglock (Waiman Long) [1412194]
-
-* Tue Mar 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-621.el7]
-- [fs] autofs: take more care to not update last_used on path walk (Ian Kent) [1413523]
-- [fs] autofs: remove duplicated AUTOFS_DEV_IOCTL_SIZE definition (Ian Kent) [1413523]
-- [fs] autofs: add command enum/macros for root-dir ioctls (Ian Kent) [1413523]
-- [fs] autofs: update ioctl documentation regarding struct autofs_dev_ioctl (Ian Kent) [1413523]
-- [fs] autofs: fix wrong ioctl documentation regarding devid (Ian Kent) [1413523]
-- [fs] autofs: fix typo in Documentation (Ian Kent) [1413523]
-- [fs] autofs: remove wrong comment (Ian Kent) [1413523]
-- [fs] autofs: constify find_autofs_mount() callback (Ian Kent) [1413523]
-- [fs] autofs: refactor ioctl fn vector in iookup_dev_ioctl() (Ian Kent) [1413523]
-- [fs] autofs: remove possibly misleading /* #define DEBUG */ (Ian Kent) [1413523]
-- [fs] autofs4: move linux/auto_dev-ioctl.h to uapi/linux (Ian Kent) [1413523]
-- [fs] autofs: move inclusion of linux/limits.h to uapi (Ian Kent) [1413523]
-- [fs] autofs: fix print format for ioctl warning message (Ian Kent) [1413523]
-- [fs] autofs: add autofs_dev_ioctl_version() for AUTOFS_DEV_IOCTL_VERSION_CMD (Ian Kent) [1413523]
-- [fs] autofs: fix dev ioctl number range check (Ian Kent) [1413523]
-- [fs] autofs: fix pr_debug() message (Ian Kent) [1413523]
-- [fs] autofs: update struct autofs_dev_ioctl in Documentation (Ian Kent) [1413523]
-- [fs] autofs: fix Documentation regarding devid on ioctl (Ian Kent) [1413523]
-- [fs] autofs: remove AUTOFS_DEVID_LEN (Ian Kent) [1413523]
-- [fs] autofs: don't fail to free_dev_ioctl(param) (Ian Kent) [1413523]
-- [fs] autofs: remove obsolete sb fields (Ian Kent) [1413523]
-- [fs] autofs: use autofs4_free_ino() to kfree dentry data (Ian Kent) [1413523]
-- [fs] autofs: remove ino free in autofs4_dir_symlink() (Ian Kent) [1413523]
-- [fs] autofs: add WARN_ON(1) for non dir/link inode case (Ian Kent) [1413523]
-- [fs] autofs: fix autofs4_fill_super() error exit handling (Ian Kent) [1413523]
-- [fs] autofs: test autofs versions first on sb initialization (Ian Kent) [1413523]
-- [fs] autofs: drop unnecessary extern in autofs_i.h (Ian Kent) [1413523]
-- [fs] autofs: fix typos in Documentation/filesystems/autofs4.txt (Ian Kent) [1413523]
-- [fs] autofs: use dentry flags to block walks during expire (Ian Kent) [1413523]
-- [fs] qstr: constify instances in autofs4 (Ian Kent) [1413523]
-- [fs] autofs: don't get stuck in a loop if vfs_write() returns an error (Ian Kent) [1413523]
-- [fs] autofs races (Ian Kent) [1413523]
-- [fs] autofs4: fix string.h include in auto_dev-ioctl.h (Ian Kent) [1413523]
-- [fs] autofs4: use pr_xxx() macros directly for logging (Ian Kent) [1413523]
-- [fs] autofs4: change log print macros to not insert newline (Ian Kent) [1413523]
-- [fs] autofs4: make autofs log prints consistent (Ian Kent) [1413523]
-- [fs] autofs4: fix some white space errors (Ian Kent) [1413523]
-- [fs] autofs4: fix invalid ioctl return in autofs4_root_ioctl_unlocked() (Ian Kent) [1413523]
-- [fs] autofs4: fix coding style line length in autofs4_wait() (Ian Kent) [1413523]
-- [fs] autofs4: fix coding style problem in autofs4_get_set_timeout() (Ian Kent) [1413523]
-- [fs] autofs4: coding style fixes (Ian Kent) [1413523]
-- [fs] autofs: show pipe inode in mount options (Ian Kent) [1413523]
-- [fs] autofs4: don't bother with d_instantiate(dentry, NULL) in ->lookup() (Ian Kent) [1413523]
-- [fs] vfs: normal filesystems (and lustre): d_inode() annotations (Ian Kent) [1413523]
-- [fs] vfs: Convert S_ISLNK/DIR/REG(dentry->d_inode) to d_is_*(dentry) (Ian Kent) [1413523]
-- [fs] autofs4 copy_dev_ioctl(): keep the value of ->size we'd used for allocation (Ian Kent) [1413523]
-- [fs] autofs4: Wrong format for printing dentry (Ian Kent) [1413523]
-- [fs] assorted conversions to p[dD] (Ian Kent) [1413523]
-- [fs] autofs: the documentation I wanted to read (Ian Kent) [1413523]
-- [fs] autofs4: d_manage() should return -EISDIR when appropriate in rcu-walk mode (Ian Kent) [1413523]
-- [fs] autofs4: avoid taking fs_lock during rcu-walk (Ian Kent) [1413523]
-- [fs] autofs4: make "autofs4_can_expire" idempotent (Ian Kent) [1413523]
-- [fs] autofs4: factor should_expire() out of autofs4_expire_indirect (Ian Kent) [1413523]
-- [fs] autofs4: allow RCU-walk to walk through autofs4 (Ian Kent) [1413523]
-- [fs] autofs4: comment typo: remove a a doubled word (Ian Kent) [1413523]
-- [fs] autofs4: remove some unused inline functions (Ian Kent) [1413523]
-- [fs] autofs4: don't take spinlock when not needed in autofs4_lookup_expiring (Ian Kent) [1413523]
-- [fs] autofs4: remove a redundant assignment (Ian Kent) [1413523]
-- [fs] autofs4: remove unused autofs4_ispending() (Ian Kent) [1413523]
-- [fs] vfs: allow ->d_manage() to declare -EISDIR in rcu_walk mode (Ian Kent) [1413523]
-- [fs] autofs4: fix false positive compile error (Ian Kent) [1413523]
-- [fs] autofs4/dev-ioctl.c: add __init to autofs_dev_ioctl_init (Ian Kent) [1413523]
-- [fs] autofs4: check dev ioctl size before allocating (Ian Kent) [1413523]
-- [fs] autofs: use IS_ROOT to replace root dentry checks (Ian Kent) [1413523]
-- [fs] autofs4: close the races around autofs4_notify_daemon() (Ian Kent) [1413523]
-
-* Tue Mar 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-620.el7]
-- [fs] fix unpaired rcu lock in prepend_path() ("Eric W. Biederman") [1247935]
-- [fs] Add may_detach_mounts sysctl to hide new behavior ("Eric W. Biederman") [1247935]
-- [fs] proc: Update proc_flush_task_mnt to use d_invalidate ("Eric W. Biederman") [1247935]
-- [fs] mnt: Protect the mountpoint hashtable with mount_lock ("Eric W. Biederman") [1247935]
-- [fs] mnt: Clear mnt_expire during pivot_root ("Eric W. Biederman") [1247935]
-- [fs] clone_private_mount() doesn't need to touch namespace_sem ("Eric W. Biederman") [1247935]
-- [fs] remove a bogus claim about namespace_sem being held by callers of mnt_alloc_id() ("Eric W. Biederman") [1247935]
-- [fs] namespace: update event counter when umounting a deleted dentry ("Eric W. Biederman") [1247935]
-- [fs] mnt: In detach_mounts detach the appropriate unmounted mount ("Eric W. Biederman") [1247935]
-- [fs] mnt: Clarify and correct the disconnect logic in umount_tree ("Eric W. Biederman") [1247935]
-- [fs] mnt: Update detach_mounts to leave mounts connected ("Eric W. Biederman") [1247935]
-- [fs] mnt: Fix the error check in __detach_mounts ("Eric W. Biederman") [1247935]
-- [fs] mnt: Honor MNT_LOCKED when detaching mounts ("Eric W. Biederman") [1247935]
-- [fs] fs_pin: Allow for the possibility that m_list or s_list go unused ("Eric W. Biederman") [1247935]
-- [fs] mnt: Factor umount_mnt from umount_tree ("Eric W. Biederman") [1247935]
-- [fs] mnt: Factor out unhash_mnt from detach_mnt and umount_tree ("Eric W. Biederman") [1247935]
-- [fs] mnt: Fail collect_mounts when applied to unmounted mounts ("Eric W. Biederman") [1247935]
-- [fs] mnt: Don't propagate unmounts to locked mounts ("Eric W. Biederman") [1247935]
-- [fs] mnt: On an unmount propagate clearing of MNT_LOCKED ("Eric W. Biederman") [1247935]
-- [fs] mnt: Delay removal from the mount hash ("Eric W. Biederman") [1247935]
-- [fs] mnt: Add MNT_UMOUNT flag ("Eric W. Biederman") [1247935]
-- [fs] mnt: In umount_tree reuse mnt_list instead of mnt_hash ("Eric W. Biederman") [1247935]
-- [fs] mnt: Don't propagate umounts in __detach_mounts ("Eric W. Biederman") [1247935]
-- [fs] mnt: Improve the umount_tree flags ("Eric W. Biederman") [1247935]
-- [fs] mnt: Use hlist_move_list in namespace_unlock ("Eric W. Biederman") [1247935]
-- [fs] switch the IO-triggering parts of umount to fs_pin ("Eric W. Biederman") [1247935]
-- [fs] new fs_pin killing logics ("Eric W. Biederman") [1247935]
-- [fs] allow attaching fs_pin to a group not associated with some superblock ("Eric W. Biederman") [1247935]
-- [fs] get rid of the second argument of acct_kill() ("Eric W. Biederman") [1247935]
-- [fs] take count and rcu_head out of fs_pin ("Eric W. Biederman") [1247935]
-- [fs] pull bumping refcount into ->kill() ("Eric W. Biederman") [1247935]
-- [fs] kill pin_put() ("Eric W. Biederman") [1247935]
-- [fs] btrfs: don't invalidate root dentry when subvolume deletion fails ("Eric W. Biederman") [1247935]
-- [fs] mnt: Fix a memory stomp in umount ("Eric W. Biederman") [1247935]
-- [fs] vfs: Remove d_drop calls from d_revalidate implementations ("Eric W. Biederman") [1247935]
-- [fs] vfs: Make d_invalidate return void ("Eric W. Biederman") [1247935]
-- [fs] vfs: Merge check_submounts_and_drop and d_invalidate ("Eric W. Biederman") [1247935]
-- [fs] vfs: Remove unnecessary calls of check_submounts_and_drop ("Eric W. Biederman") [1247935]
-- [fs] vfs: Lazily remove mounts on unlinked files and directories ("Eric W. Biederman") [1247935]
-- [fs] vfs: More precise tests in d_invalidate ("Eric W. Biederman") [1247935]
-- [fs] vfs: Document the effect of d_revalidate on d_find_alias ("Eric W. Biederman") [1247935]
-- [fs] autofs - remove obsolete d_invalidate() from expire ("Eric W. Biederman") [1247935]
-- [fs] vfs: Add a function to lazily unmount all mounts from any dentry ("Eric W. Biederman") [1247935]
-- [fs] vfs: factor out lookup_mountpoint from new_mountpoint ("Eric W. Biederman") [1247935]
-- [fs] vfs: Keep a list of mounts on a mount point ("Eric W. Biederman") [1247935]
-- [fs] vfs: Don't allow overwriting mounts in the current mount namespace ("Eric W. Biederman") [1247935]
-- [fs] delayed mntput ("Eric W. Biederman") [1247935]
-- [fs] Add a missing permission check to do_umount ("Eric W. Biederman") [1247935]
-- [fs] fix EBUSY on umount() from MNT_SHRINKABLE ("Eric W. Biederman") [1247935]
-- [fs] get rid of propagate_umount() mistakenly treating slaves as busy ("Eric W. Biederman") [1247935]
-- [fs] fix copy_tree() regression ("Eric W. Biederman") [1247935]
-- [fs] death to mnt_pinned ("Eric W. Biederman") [1247935]
-- [fs] make fs/{namespace, super}.c forget about acct.h ("Eric W. Biederman") [1247935]
-- [fs] take fs_pin stuff to fs/* ("Eric W. Biederman") [1247935]
-- [fs] start carving bsd_acct_struct up ("Eric W. Biederman") [1247935]
-- [fs] acct: move mnt_pin() upwards ("Eric W. Biederman") [1247935]
-- [fs] make acct_kill() wait for file closing ("Eric W. Biederman") [1247935]
-- [fs] drop ->s_umount around acct_auto_close() ("Eric W. Biederman") [1247935]
-- [fs] acct: get rid of acct_lock for acct->count ("Eric W. Biederman") [1247935]
-- [fs] acct: get rid of acct_list ("Eric W. Biederman") [1247935]
-- [fs] acct: simplify check_free_space() ("Eric W. Biederman") [1247935]
-- [fs] acct: new lifetime rules ("Eric W. Biederman") [1247935]
-- [fs] acct: serialize acct_on() ("Eric W. Biederman") [1247935]
-- [fs] acct() should honour the limits from the very beginning ("Eric W. Biederman") [1247935]
-- [fs] split the slow path in acct_process() off ("Eric W. Biederman") [1247935]
-- [fs] separate namespace-independent parts of filling acct_t ("Eric W. Biederman") [1247935]
-- [fs] acct: switch to __kernel_write() ("Eric W. Biederman") [1247935]
-- [fs] acct: encode_comp_t(0) is 0, fortunately.. ("Eric W. Biederman") [1247935]
-- [fs] vfs: Make delayed_free() call free_vfsmnt() ("Eric W. Biederman") [1247935]
-- [fs] switch mnt_hash to hlist ("Eric W. Biederman") [1247935]
-- [fs] keep shadowed vfsmounts together ("Eric W. Biederman") [1247935]
-- [fs] resizable namespace.c hashes ("Eric W. Biederman") [1247935]
-- [fs] vfs: Is mounted should be testing mnt_ns for NULL or error ("Eric W. Biederman") [1247935]
-- [fs] fix bogus read_seqretry() checks introduced in b37199e ("Eric W. Biederman") [1247935]
-- [fs] rcuwalk: recheck mount_lock after mountpoint crossing attempts ("Eric W. Biederman") [1247935]
-- [fs] fix bogus path_put() of nd->root after some unlazy_walk() failures ("Eric W. Biederman") [1247935]
-- [fs] get rid of {lock, unlock}_rcu_walk() ("Eric W. Biederman") [1247935]
-- [fs] Use RH_KABI_EXTEND to wrap nameidata.m_seq ("Eric W. Biederman") [1247935]
-- [fs] RCU'd vfsmounts ("Eric W. Biederman") [1247935]
-- [fs] pid_namespace: make freeing struct pid_namespace rcu-delayed ("Eric W. Biederman") [1247935]
-- [fs] fuse: rcu-delay freeing fuse_conn ("Eric W. Biederman") [1247935]
-- [fs] ncpfs: rcu-delay unload_nls() and freeing ncp_server ("Eric W. Biederman") [1247935]
-- [fs] fat: rcu-delay unloading nls and freeing sbi ("Eric W. Biederman") [1247935]
-- [fs] adfs: delayed freeing of sbi ("Eric W. Biederman") [1247935]
-- [fs] hpfs: make freeing sbi and codetables rcu-delayed ("Eric W. Biederman") [1247935]
-- [fs] make freeing super_block rcu-delayed ("Eric W. Biederman") [1247935]
-- [fs] move taking vfsmount_lock down into prepend_path() ("Eric W. Biederman") [1247935]
-- [fs] vfs: make d_path() get the root path under RCU ("Eric W. Biederman") [1247935]
-- [fs] vfs: don't copy things to user space holding the rcu readlock ("Eric W. Biederman") [1247935]
-- [fs] vfs: make getcwd() get the root and pwd path under rcu ("Eric W. Biederman") [1247935]
-- [fs] vfs: move get_fs_root_and_pwd() to single caller ("Eric W. Biederman") [1247935]
-- [fs] split __lookup_mnt() in two functions ("Eric W. Biederman") [1247935]
-- [fs] Readd include of linux/lglock.h in fs/internal.h to preserve the kabi ("Eric W. Biederman") [1247935]
-- [fs] new helpers: lock_mount_hash/unlock_mount_hash ("Eric W. Biederman") [1247935]
-- [fs] don't bother with vfsmount_lock in mounts_poll() ("Eric W. Biederman") [1247935]
-- [fs] namespace.c: get rid of mnt_ghosts ("Eric W. Biederman") [1247935]
-- [fs] fold dup_mnt_ns() into its only surviving caller ("Eric W. Biederman") [1247935]
-- [fs] mnt_set_expiry() doesn't need vfsmount_lock ("Eric W. Biederman") [1247935]
-- [fs] finish_automount() doesn't need vfsmount_lock for removal from expiry list ("Eric W. Biederman") [1247935]
-- [fs] namespace.c: bury long-dead define ("Eric W. Biederman") [1247935]
-- [fs] fold mntfree() into mntput_no_expire() ("Eric W. Biederman") [1247935]
-- [fs] do_remount(): pull touch_mnt_namespace() up ("Eric W. Biederman") [1247935]
-- [fs] dup_mnt_ns(): get rid of pointless grabbing of vfsmount_lock ("Eric W. Biederman") [1247935]
-- [fs] initialize namespace_sem statically ("Eric W. Biederman") [1247935]
-- [fs] put_mnt_ns(): use drop_collected_mounts() ("Eric W. Biederman") [1247935]
-
-* Mon Mar 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-619.el7]
-- [fs] ext4: unmap metadata when zeroing blocks (Eric Sandeen) [1430424]
-- [fs] ext4: handle transient ENOSPC properly for DAX (Eric Sandeen) [1347247 1430424]
-- [mm] dax: fix deadlock with DAX 4k holes (Eric Sandeen) [1430424]
-- [fs] ext4: avoid split extents for DAX writes (Eric Sandeen) [1430424]
-- [fs] ext4: only set S_DAX if DAX is really supported (Eric Sandeen) [1430424]
-- [fs] dax: move put_(un)locked_mapping_entry() in dax.c (Eric Sandeen) [1430424]
-- [fs] dax: move RADIX_DAX_* defines to dax.h (Eric Sandeen) [1430424]
-- [fs] dax: remove dax_pmd_fault() (Eric Sandeen) [1430424]
-- [mm] dax: coordinate locking for offsets in PMD range (Eric Sandeen) [1430424]
-- [fs] dax: consistent variable naming for DAX entries (Eric Sandeen) [1430424]
-- [fs] dax: remove the last BUG_ON() from fs/dax.c (Eric Sandeen) [1430424]
-- [fs] dax: make 'wait_table' global variable static (Eric Sandeen) [1430424]
-- [fs] dax: remove buffer_size_valid() (Eric Sandeen) [1430424]
-- [fs] ext4: tell DAX the size of allocation holes (Eric Sandeen) [1430424]
-- [fs] ext4: more efficient SEEK_DATA implementation (Eric Sandeen) [1430424]
-- [fs] ext4: return hole from ext4_map_blocks() (Eric Sandeen) [1430424]
-- [fs] ext4: factor out determining of hole size (Eric Sandeen) [1430424]
-- [fs] ext4: allow DAX writeback for hole punch (Eric Sandeen) [1430424]
-- [fs] xfs: fix locking for DAX writes (Eric Sandeen) [1430424]
-- [fs] dax: don't pass buffer_head to copy_user_dax (Eric Sandeen) [1430424]
-- [fs] dax: don't pass buffer_head to dax_insert_mapping (Eric Sandeen) [1430424]
-- [mm] silently skip readahead for DAX inodes (Eric Sandeen) [1366943 1430424]
-- [fs] xfs: don't invalidate whole file on DAX read/write (Eric Sandeen) [1430424]
-- [fs] dax: remote unused fault wrappers (Eric Sandeen) [1430424]
-- [fs] dax: Remove i_mmap_lock protection (Eric Sandeen) [1430424]
-- [mm] dax: Use radix tree entry lock to protect cow faults (Eric Sandeen) [1430424]
-- [mm] dax: New fault locking (Eric Sandeen) [1430424]
-- [mm] dax: Allow DAX code to replace exceptional entries (Eric Sandeen) [1430424]
-- [fs] dax: Define DAX lock bit for radix tree exceptional entry (Eric Sandeen) [1430424]
-- [fs] dax: Make huge page handling depend of CONFIG_BROKEN (Eric Sandeen) [1430424]
-- [fs] dax: Fix condition for filling of PMD holes (Eric Sandeen) [1430424]
-- [fs] dax: fix a comment in dax_zero_page_range and dax_truncate_page (Eric Sandeen) [1430424]
-- [fs] dax: for truncate/hole-punch, do zeroing through the driver if possible (Eric Sandeen) [1430424]
-- [fs] dax: export a low-level __dax_zero_page_range helper (Eric Sandeen) [1430424]
-- [fs] dax: use sb_issue_zerout instead of calling dax_clear_sectors (Eric Sandeen) [1430424]
-- [fs] dax: fallback from pmd to pte on error (Eric Sandeen) [1430424]
-- [fs] dax: Remove redundant inode size checks (Eric Sandeen) [1430424]
-- [fs] dax: Remove pointless writeback from dax_do_io() (Eric Sandeen) [1430424]
-- [fs] dax: Remove zeroing from dax_io() (Eric Sandeen) [1430424]
-- [fs] dax: Remove dead zeroing code from fault handlers (Eric Sandeen) [1430424]
-- [fs] dax: Remove complete_unwritten argument (Eric Sandeen) [1430424]
-- [fs] dax: move RADIX_DAX_ definitions to dax.c (Eric Sandeen) [1430424]
-- [fs] dax: call get_blocks() with create == 1 for write faults to unwritten extents (Eric Sandeen) [1430424]
-- [fs] ext4: cleanup handling of bh->b_state in DAX mmap (Eric Sandeen) [1430424]
-- [fs] ext4: fix bh->b_state corruption (Eric Sandeen) [1430424]
-- [fs] xfs: split direct I/O and DAX path (Eric Sandeen) [1430424]
-- [fs] xfs: direct calls in the direct I/O path (Eric Sandeen) [1430424]
-- [fs] xfs: fold xfs_vm_do_dio into xfs_vm_direct_IO (Eric Sandeen) [1430424]
-- [fs] xfs: using generic_file_direct_write() is unnecessary (Eric Sandeen) [1430424]
-- [fs] xfs: stop using generic_file_read_iter for direct I/O (Eric Sandeen) [1430424]
-- [fs] xfs: split xfs_file_read_iter into buffered and direct I/O helpers (Eric Sandeen) [1430424]
-- [fs] xfs: remove s_maxbytes enforcement in xfs_file_read_iter (Eric Sandeen) [1430424]
-- [fs] xfs: kill ioflags (Eric Sandeen) [1430424]
-- [fs] xfs: don't pass ioflags around in the ioctl path (Eric Sandeen) [1430424]
-
-* Mon Mar 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-618.el7]
-- [fs] vfs: pull btrfs clone API to vfs layer (Bill O'Donnell) [1399590]
-- [fs] btrfs: add .copy_file_range file operation (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix btrfs_compat_ioctl failures on non-compat ioctls (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix truncate down when no_holes feature is enabled (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix deadlock between direct IO and fast fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix false enospc error when truncating heavily reflinked file (Bill O'Donnell) [1399590]
-- [fs] btrfs: adjust outstanding_extents counter properly when dio write is split (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lockdep warning about log_mutex (Bill O'Donnell) [1399590]
-- [fs] btrfs: use down_read_nested to make lockdep silent (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix locking when we put back a delayed ref that's too new (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix error handling when run_delayed_extent_op fails (Bill O'Donnell) [1399590]
-- [fs] btrfs: return the actual error value from from btrfs_uuid_tree_iterate (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race in btrfs_free_dummy_fs_info() (Bill O'Donnell) [1399590]
-- [fs] btrfs: limit async_work allocation and worker func duration (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix tree search logic when replaying directory entry deletes (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix deadlock caused by fsync when logging directory entries (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix enospc in hole punching (Bill O'Donnell) [1399590]
-- [fs] btrfs: improve delayed refs iterations (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Add comments explaining how btrfs qgroup works (Bill O'Donnell) [1399590]
-- [fs] btrfs: Ensure proper sector alignment for btrfs_free_reserved_data_space (Bill O'Donnell) [1399590]
-- [fs] btrfs: abort transaction if fill_holes() fails (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix file extent corruption (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup: use already calculated value in btrfs_should_throttle_delayed_refs() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix qgroup rescan worker initialization (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix emptiness check for dirtied extent buffers at check_leaf() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix BUG_ON in btrfs_mark_buffer_dirty (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix relocation incorrectly dropping data references (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix races on root_log_ctx lists (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix WARNING in btrfs_select_ref_head() (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove some no-op casts (Bill O'Donnell) [1399590]
-- [fs] btrfs: pass correct args to btrfs_async_run_delayed_refs() (Bill O'Donnell) [1399590]
-- [fs] btrfs: make file clone aware of fatal signals (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Prevent qgroup->reserved from going subzero (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill BUG_ON in do_relocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix incremental send failure caused by balance (Bill O'Donnell) [1399590]
-- [fs] revert "btrfs: let btrfs_delete_unused_bgs() to clean relocated bgs" (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests: uninline member definitions in free_space_extent (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests: constify free space extent specs (Bill O'Donnell) [1399590]
-- [fs] btrfs: expand free space tree sanity tests to catch endianness bug (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix extent buffer bitmap tests on big-endian systems (Bill O'Donnell) [1399590]
-- [fs] btrfs: catch invalid free space trees (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix mount -o clear_cache, space_cache=v2 (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix free space tree bitmaps on big-endian systems (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove unnecessary btrfs_mark_buffer_dirty in split_leaf (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't BUG() during drop snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix btrfs_no_printk stub helper (Bill O'Donnell) [1399590]
-- [fs] btrfs: memset to avoid stale content in btree leaf (Bill O'Donnell) [1399590]
-- [fs] btrfs: parent_start initialization cleanup (Bill O'Donnell) [1399590]
-- [fs] btrfs: Remove already completed TODO comment (Bill O'Donnell) [1399590]
-- [fs] btrfs: Do not reassign count in btrfs_run_delayed_refs (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix a possible umount deadlock (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak in do_walk_down (Bill O'Donnell) [1399590]
-- [fs] btrfs: unsplit printed strings (Bill O'Donnell) [1399590]
-- [fs] btrfs: clean the old superblocks before freeing the device (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill BUG_ON in run_delayed_tree_ref (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't leak reloc root nodes on error (Bill O'Donnell) [1399590]
-- [fs] btrfs: squash lines for simple wrapper functions (Bill O'Donnell) [1399590]
-- [fs] btrfs: improve check_node to avoid reading corrupted nodes (Bill O'Donnell) [1399590]
-- [fs] btrfs: add error handling for extent buffer in print tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove BUG_ON in start_transaction (Bill O'Donnell) [1399590]
-- [fs] btrfs: memset to avoid stale content in btree node block (Bill O'Donnell) [1399590]
-- [fs] btrfs: return gracefully from balance if fs tree is corrupted (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill BUG_ON()'s in btrfs_mark_extent_written (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill the start argument to read_extent_buffer_pages (Bill O'Donnell) [1399590]
-- [fs] btrfs: add a flags field to btrfs_fs_info (Bill O'Donnell) [1399590]
-- [fs] btrfs: extend btrfs_set_extent_delalloc and its friends to support in-band dedupe and subpage size patchset (Bill O'Donnell) [1399590]
-- [fs] btrfs: add dynamic debug support (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix warning "variable 'gen' set but not used" (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix warning "variable 'blocksize' set but not used" (Bill O'Donnell) [1399590]
-- [fs] btrfs: let btrfs_delete_unused_bgs() to clean relocated bgs (Bill O'Donnell) [1399590]
-- [fs] btrfs: bail out if block group has different mixed flag (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak in reading btree blocks (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix check_shared for fiemap ioctl (Bill O'Donnell) [1399590]
-- [fs] btrfs: create example debugfs file only in debugging build (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix perms on demonstration debugfs interface (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak of block group cache (Bill O'Donnell) [1399590]
-- [fs] btrfs: ensure that file descriptor used with subvol ioctls is a dir (Bill O'Donnell) [1399590]
-- [fs] btrfs: handle quota reserve failure properly (Bill O'Donnell) [1399590]
-- [fs] btrfs: use filemap_check_errors() (Bill O'Donnell) [1399590]
-- [mm] export filemap_check_errors() to modules (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce tickets_id to determine whether asynchronous metadata reclaim work makes progress (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove root_log_ctx from ctx list before btrfs_sync_log returns (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not decrease bytes_may_use when replaying extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix one bug that process may endlessly wait for ticket in wait_reserve_ticket() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix endless loop in balancing block groups (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill invalid ASSERT() in process_all_refs() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lockdep warning on deadlock against an inode's log mutex (Bill O'Donnell) [1399590]
-- [fs] btrfs: detect corruption when non-root leaf has zero item (Bill O'Donnell) [1399590]
-- [fs] btrfs: check btree node's nritems (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't create or leak aliased root while cleaning up orphans (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix em leak in find_first_block_group (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not background blkdev_put() (Bill O'Donnell) [1399590]
-- [fs] btrfs: clarify do_chunk_alloc()'s return value (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix fsfreeze hang caused by delayed iputs deal (Bill O'Donnell) [1399590]
-- [fs] btrfs: update btrfs_space_info's bytes_may_use timely (Bill O'Donnell) [1399590]
-- [fs] btrfs: divide btrfs_update_reserved_bytes() into two functions (Bill O'Donnell) [1399590]
-- [fs] btrfs: use correct offset for reloc_inode in prealloc_file_extent_cluster() (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Fix qgroup incorrectness caused by log replay (Bill O'Donnell) [1399590]
-- [fs] btrfs: relocation: Fix leaking qgroups numbers on data extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Refactor btrfs_qgroup_insert_dirty_extent() (Bill O'Donnell) [1399590]
-- [fs] btrfs: waiting on qgroup rescan should not always be interruptible (Bill O'Donnell) [1399590]
-- [fs] btrfs: properly track when rescan worker is running (Bill O'Donnell) [1399590]
-- [fs] btrfs: flush_space: treat return value of do_chunk_alloc properly (Bill O'Donnell) [1399590]
-- [fs] btrfs: add ASSERT for block group's memory leak (Bill O'Donnell) [1399590]
-- [fs] btrfs: backref: Fix soft lockup in __merge_refs function (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak of reloc_root (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix __MAX_CSUM_ITEMS (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove unused function btrfs_add_delayed_qgroup_reserve() (Bill O'Donnell) [1399590]
-- [fs] btrfs: improve performance on fsync against new inode after rename/unlink (Bill O'Donnell) [1399590]
-- [fs] btrfs: be more precise on errors when getting an inode from disk (Bill O'Donnell) [1399590]
-- [fs] btrfs: send, don't bug on inconsistent snapshots (Bill O'Donnell) [1399590]
-- [fs] btrfs: send, avoid incorrect leaf accesses when sending utimes operations (Bill O'Donnell) [1399590]
-- [fs] btrfs: send, add missing error check for calls to path_loop() (Bill O'Donnell) [1399590]
-- [fs] btrfs: send, fix failure to move directories with the same name around (Bill O'Donnell) [1399590]
-- [fs] btrfs: add missing check for writeback errors on fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_relocate_chunk pass extent_root to btrfs_end_transaction (Bill O'Donnell) [1399590]
-- [fs] btrfs: convert nodesize macros to static inlines (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce BTRFS_MAX_ITEM_SIZE (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup, remove prototype for btrfs_find_root_ref (Bill O'Donnell) [1399590]
-- [fs] btrfs: copy_to_sk drop unused root parameter (Bill O'Donnell) [1399590]
-- [fs] btrfs: simpilify btrfs_subvol_inherit_props (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests, use BTRFS_FS_STATE_DUMMY_FS_INFO instead of dummy root (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests, require fs_info for root (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests, move initialization into tests/ (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_test_opt and friends should take a btrfs_fs_info (Bill O'Donnell) [1399590]
-- [fs] btrfs: plumb fs_info into btrfs_work (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove obsolete part of comment in statfs (Bill O'Donnell) [1399590]
-- [fs] btrfs: hide test-only member under ifdef (Bill O'Donnell) [1399590]
-- [fs] btrfs: Add ratelimit to btrfs printing (Bill O'Donnell) [1399590]
-- [kernel] ratelimit: add initialization macro (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unexpected balance crash due to BUG_ON (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix panic in balance due to EIO (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix eb memory leak due to readpage failure (Bill O'Donnell) [1399590]
-- [fs] btrfs: change BUG_ON()'s to ASSERT()'s in backref_cache_cleanup() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix free space calculation in dump_space_info() (Bill O'Donnell) [1399590]
-- [fs] btrfs: subpage-blocksize: Rate limit scrub error message (Bill O'Donnell) [1399590]
-- [fs] btrfs: expand cow_file_range() to support in-band dedup and subpage-blocksize (Bill O'Donnell) [1399590]
-- [fs] btrfs: make sure device is synced before return (Bill O'Donnell) [1399590]
-- [fs] btrfs: reorg btrfs_close_one_device() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Cleanup compress_file_range() (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup BUG_ON in merge_bio (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix slab accounting flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: Replace -ENOENT by -ERANGE in btrfs_get_acl() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Handle uninitialised inode eviction (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix read_node_slot to return errors (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix double free of fs root (Bill O'Donnell) [1399590]
-- [fs] btrfs: error out if generic_bin_search get invalid arguments (Bill O'Donnell) [1399590]
-- [fs] btrfs: check inconsistence between chunk and block group (Bill O'Donnell) [1399590]
-- [fs] btrfs: add missing bytes_readonly attribute file in sysfs (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix delalloc accounting after copy_from_user faults (Bill O'Donnell) [1399590]
-- [fs] btrfs: avoid deadlocks during reservations in btrfs_truncate_block (Bill O'Donnell) [1399590]
-- [fs] btrfs: use FLUSH_LIMIT for relocation in reserve_metadata_bytes (Bill O'Donnell) [1399590]
-- [fs] btrfs: fill relocation block rsv after allocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: always use trans->block_rsv for orphans (Bill O'Donnell) [1399590]
-- [fs] btrfs: change how we calculate the global block rsv (Bill O'Donnell) [1399590]
-- [fs] btrfs: use root when checking need_async_flush (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't bother kicking async if there's nothing to reclaim (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix release reserved extents trace points (Bill O'Donnell) [1399590]
-- [fs] btrfs: add tracepoints for flush events (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix delalloc reservation amount tracepoint (Bill O'Donnell) [1399590]
-- [fs] btrfs: trace pinned extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce ticketed enospc infrastructure (Bill O'Donnell) [1399590]
-- [fs] btrfs: add tracepoint for adding block groups (Bill O'Donnell) [1399590]
-- [fs] btrfs: warn_on for unaccounted spaces (Bill O'Donnell) [1399590]
-- [fs] btrfs: change delayed reservation fallback behavior (Bill O'Donnell) [1399590]
-- [fs] btrfs: always reserve metadata for delalloc extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix callers of btrfs_block_rsv_migrate (Bill O'Donnell) [1399590]
-- [fs] btrfs: add bytes_readonly to the spaceinfo at once (Bill O'Donnell) [1399590]
-- [fs] btrfs: Force stripesize to the value of sectorsize (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix disk_i_size update bug when fallocate() fails (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix error handling in map_private_extent_buffer (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix error return code in btrfs_init_test_fs() (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't do nocow check unless we have to (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix deadlock in delayed_ref_async_start (Bill O'Donnell) [1399590]
-- [fs] btrfs: track transid for delayed ref flushing (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_check_super_valid: Allow 4096 as stripesize (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove build fixup for qgroup_account_snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: use new error message helper in qgroup_account_snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: avoid blocking open_ctree from cleaner_kthread (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't BUG_ON() in btrfs_orphan_add (Bill O'Donnell) [1399590]
-- [fs] btrfs: account for non-CoW'd blocks in btrfs_abort_transaction (Bill O'Donnell) [1399590]
-- [fs] btrfs: check if extent buffer is aligned to sectorsize (Bill O'Donnell) [1399590]
-- [fs] btrfs: Use correct format specifier (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Fix extent buffer bitmap test fail on BE system (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Fix test_bitmaps fail on 64k sectorsize (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Use macros instead of constants and add missing newline (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Support testing all possible sectorsizes and nodesizes (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Execute page straddling test only when nodesize < PAGE_SIZE (Bill O'Donnell) [1399590]
-- [fs] btrfs: advertise which crc32c implementation is being used at module load (Bill O'Donnell) [1399590]
-- [fs] btrfs: add validadtion checks for chunk loading (Bill O'Donnell) [1399590]
-- [fs] btrfs: add more validation checks for superblock (Bill O'Donnell) [1399590]
-- [fs] btrfs: clear uptodate flags of pages in sys_array eb (Bill O'Donnell) [1399590]
-- [fs] btrfs: deal with duplciates during extent_map insertion in btrfs_get_extent (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Support non-4k page size (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix integer overflow when calculating bytes_per_bitmap (Bill O'Donnell) [1399590]
-- [fs] btrfs: test_check_exists: Fix infinite loop when searching for free space entries (Bill O'Donnell) [1399590]
-- [fs] btrfs: end transaction if we abort when creating uuid root (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between device replace and read repair (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between device replace and discard (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between device replace and chunk allocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race setting block group back to RW mode during device replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unprotected assignment of the left cursor for device replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race setting block group readonly during device replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between device replace and block group removal (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between readahead and device replace/removal (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix handling of faults from btrfs_copy_from_user (Bill O'Donnell) [1399590]
-- [fs] btrfs: scrub: Set bbio to NULL before calling btrfs_map_block (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unexpected return value of fiemap (Bill O'Donnell) [1399590]
-- [fs] btrfs: free sys_array eb as soon as possible (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak during RAID 5/6 device replacement (Bill O'Donnell) [1399590]
-- [fs] btrfs: add semaphore to synchronize direct IO writes with fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between block group relocation and nocow writes (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between fsync and direct IO writes for prealloc extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: pin log earlier when renaming (Bill O'Donnell) [1399590]
-- [fs] btrfs: unpin log if rename operation fails (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't do unnecessary delalloc flushes when relocating (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't wait for unrelated IO to finish before relocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix empty symlink after creating symlink and fsync parent dir (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix for incorrect directory entries after fsync log replay (Bill O'Donnell) [1399590]
-- [fs] btrfs: build fixup for qgroup_account_snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Fix qgroup accounting when creating snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix fspath error deallocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: make find_workspace warn if there are no workspaces (Bill O'Donnell) [1399590]
-- [fs] btrfs: make find_workspace always succeed (Bill O'Donnell) [1399590]
-- [fs] btrfs: preallocate compression workspaces (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename and document compression workspace members (Bill O'Donnell) [1399590]
-- [fs] btrfs: GFP_NOFS does not GFP_HIGHMEM (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch to common message helpers in open_ctree, adjust messages (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix int32 overflow in shrink_delalloc() (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't force mounts to wait for cleaner_kthread to delete one or more subvolumes (Bill O'Donnell) [1399590]
-- [fs] btrfs: add write protection to SET_FEATURES ioctl (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lock dep warning move scratch super outside of chunk_mutex (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix BUG_ON condition in scrub_setup_recheck_block() (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove BUG_ON()'s in btrfs_map_block (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix divide error upon chunk's stripe_len (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: protect reading label by lock (Bill O'Donnell) [1399590]
-- [fs] btrfs: add check to sysfs handler of label (Bill O'Donnell) [1399590]
-- [fs] btrfs: add read-only check to sysfs handler of features (Bill O'Donnell) [1399590]
-- [fs] btrfs: reuse existing variable in scrub_stripe, reduce stack usage (Bill O'Donnell) [1399590]
-- [fs] btrfs: use dynamic allocation for root item in create_subvol (Bill O'Donnell) [1399590]
-- [fs] btrfs: clone: use vmalloc only as fallback for nodesize bufer (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use vmalloc only as fallback for clone_sources_tmp (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use vmalloc only as fallback for clone_roots (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use temporary variable to store allocation size (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use vmalloc only as fallback for read_buf (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use vmalloc only as fallback for send_buf (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lock dep warning, move scratch dev out of device_list_mutex and uuid_mutex (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: silence an integer overflow warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: avoid overflowing f_bfree (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix mixed block count of available space (Bill O'Donnell) [1399590]
-- [fs] btrfs: allow balancing to dup with multi-device (Bill O'Donnell) [1399590]
-- [fs] btrfs: ioctl: reorder exclusive op check in RM_DEV (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup assigning next active device with a check (Bill O'Donnell) [1399590]
-- [fs] btrfs: s_bdev is not null after missing replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: pass the right error code to the btrfs_std_error (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to convert_extent_bit (Bill O'Donnell) [1399590]
-- [fs] btrfs: make state preallocation more speculative in __set_extent_bit (Bill O'Donnell) [1399590]
-- [fs] btrfs: untangle gotos a bit in convert_extent_bit (Bill O'Donnell) [1399590]
-- [fs] btrfs: untangle gotos a bit in __clear_extent_bit (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_record_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_extent_new (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_extent_defrag (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_extent_delalloc (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to clear_extent_dirty (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to clear_record_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to clear_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs_tree.h migration, item types and defines (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, move struct btrfs_ioctl_defrag_range_args (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, move balance flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, move feature flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, qgroup limit flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, move BTRFS_LABEL_SIZE (Bill O'Donnell) [1399590]
-- [fs] btrfs: refactor btrfs_dev_replace_start for reuse (Bill O'Donnell) [1399590]
-- [fs] btrfs: use fs_info directly (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename flags for vol args v2 (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename btrfs_find_device_by_user_input (Bill O'Donnell) [1399590]
-- [fs] btrfs: use existing device constraints table btrfs_raid_array (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce raid-type to error-code table, for minimum device constraint (Bill O'Donnell) [1399590]
-- [fs] btrfs: pass number of devices to btrfs_check_raid_min_devices (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename __check_raid_min_devices (Bill O'Donnell) [1399590]
-- [fs] btrfs: optimize check for stale device (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce device delete by devid (Bill O'Donnell) [1399590]
-- [fs] btrfs: make use of btrfs_scratch_superblocks() in btrfs_rm_device() (Bill O'Donnell) [1399590]
-- [fs] btrfs: enhance btrfs_find_device_by_user_input() to check device path (Bill O'Donnell) [1399590]
-- [fs] btrfs: make use of btrfs_find_device_by_user_input() (Bill O'Donnell) [1399590]
-- [fs] btrfs: create helper btrfs_find_device_by_user_input() (Bill O'Donnell) [1399590]
-- [fs] btrfs: clean up and optimize __check_raid_min_device() (Bill O'Donnell) [1399590]
-- [fs] btrfs: create helper function __check_raid_min_devices() (Bill O'Donnell) [1399590]
-- [fs] btrfs: create a helper function to read the disk super (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not create empty block group if we have allocated data (Bill O'Donnell) [1399590]
-- [fs] btrfs: __btrfs_buffered_write: Pass valid file offset when releasing delalloc space (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup error handling in extent_write_cached_pages (Bill O'Donnell) [1399590]
-- [fs] btrfs: make mapping->writeback_index point to the last written page (Bill O'Donnell) [1399590]
-- [fs] btrfs: bugfix: handle FS_IOC32_{GETFLAGS, SETFLAGS, GETVERSION} in btrfs_ioctl (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix typos in comments (Bill O'Donnell) [1399590]
-- [fs] btrfs: Refactor btrfs_lock_cluster() to kill compiler warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove save_error_info() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Simplify conditions about compress while mapping btrfs flags to inode flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: move error handling code together in ctree.h (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove unused function btrfs_assert() (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename btrfs_std_error to btrfs_handle_fs_error (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix file/data loss caused by fsync after rename and new inode (Bill O'Donnell) [1399590]
-- [fs] btrfs: Reset IO error counters before start of device replacing (Bill O'Donnell) [1399590]
-- [fs] btrfs: Add qgroup tracing (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't use src fd for printk (Bill O'Donnell) [1399590]
-- [fs] btrfs: fallback to vmalloc in btrfs_compare_tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: handle non-fatal errors in btrfs_qgroup_inherit() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Output more info for enospc_debug mount option (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix invalid reference in replace_path (Bill O'Donnell) [1399590]
-- [fs] btrfs: Improve FL_KEEP_SIZE handling in fallocate (Bill O'Donnell) [1399590]
-- [fs] btrfs: transaction_kthread() is not freezable (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleaner_kthread() doesn't need explicit freeze (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not write corrupted metadata blocks to disk (Bill O'Donnell) [1399590]
-- [fs] btrfs: csum_tree_block: return proper errno value (Bill O'Donnell) [1399590]
-- [fs] btrfs: use radix_tree_iter_retry() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix misspellings in comments (Bill O'Donnell) [1399590]
-- [fs] btrfs: Print Warning only if ENOSPC_DEBUG is enabled (Bill O'Donnell) [1399590]
-- [fs] btrfs: scrub: silence an uninitialized variable warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: move btrfs_compression_type to compression.h (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename btrfs_print_info to btrfs_print_mod_info (Bill O'Donnell) [1399590]
-- [fs] btrfs: Show a warning message if one of objectid reaches its highest value (Bill O'Donnell) [1399590]
-- [fs] btrfs: use kbasename in btrfsic_mount (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not collect ordered extents when logging that inode exists (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race when checking if we can skip fsync'ing an inode (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix listxattrs not listing all xattrs packed in the same item (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix deadlock between direct IO reads and buffered writes (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix extent_same allowing destination offset beyond i_size (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix file loss on log replay after renaming a file and fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unreplayable log after snapshot delete + parent dir fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lockdep deadlock warning due to dev_replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: drop unused argument in btrfs_ioctl_get_supported_features (Bill O'Donnell) [1399590]
-- [fs] btrfs: add GET_SUPPORTED_FEATURES to the control device ioctls (Bill O'Donnell) [1399590]
-- [fs] btrfs: change max_inline default to 2048 (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove error message from search ioctl for nonexistent tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: avoid uninitialized variable warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak of fs_info in block group cache (Bill O'Donnell) [1399590]
-- [fs] btrfs: Continue write in case of can_not_nocow (Bill O'Donnell) [1399590]
-- [fs] btrfs: drop null testing before destroy functions (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix build warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: use proper type for failrec in extent_state (Bill O'Donnell) [1399590]
-- [fs] btrfs: Replace CURRENT_TIME by current_fs_time() (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove open-coded swap() in backref.c:__merge_refs (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove redundant error check (Bill O'Donnell) [1399590]
-- [fs] btrfs: simplify expression in btrfs_calc_trans_metadata_size() (Bill O'Donnell) [1399590]
-- [fs] btrfs: check reserved when deciding to background flush (Bill O'Donnell) [1399590]
-- [fs] btrfs: add transaction space reservation tracepoints (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix truncate_space_check (Bill O'Donnell) [1399590]
-- [fs] btrfs: change how we update the global block rsv (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: ignore creating reada_extent for a non-existent device (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: avoid undone reada extents in btrfs_reada_wait (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: limit max works count (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: simplify dev->reada_in_flight processing (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Fix a debug code typo (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Jump into cleanup in direct way for __readahead_hook() (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Use fs_info instead of root in __readahead_hook's argument (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Pass reada_extent into __readahead_hook directly (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: move reada_extent_put to place after __readahead_hook() (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Remove level argument in severial functions (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: bypass adding extent when all zone failed (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: add all reachable mirrors into reada device list (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Move is_need_to_readahead contition earlier (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Avoid many times of empty loop (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Add missed segment checking in reada_find_zone (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: reduce additional fs_info->reada_lock in reada_find_zone (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Fix in-segment calculation for reada (Bill O'Donnell) [1399590]
-- [fs] btrfs: Introduce new mount option alias for nologreplay (Bill O'Donnell) [1399590]
-- [fs] btrfs: Introduce new mount option to disable tree log replay (Bill O'Donnell) [1399590]
-- [fs] btrfs: Introduce new mount option usebackuproot to replace recovery (Bill O'Donnell) [1399590]
-- [fs] btrfs: teach print_leaf about temporary item subtypes (Bill O'Donnell) [1399590]
-- [fs] btrfs: teach print_leaf about permanent item subtypes (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch dev stats item to the permanent item key (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce key type for persistent permanent items (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch balance item to the temporary item key (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce key type for persistent temporary items (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch to kcalloc in btrfs_cmp_data_prepare (Bill O'Donnell) [1399590]
-- [fs] btrfs: extent same: use GFP_KERNEL for page array allocations (Bill O'Donnell) [1399590]
-- [fs] btrfs: device add and remove: use GFP_KERNEL (Bill O'Donnell) [1399590]
-- [fs] btrfs: readdir: use GFP_KERNEL (Bill O'Donnell) [1399590]
-- [fs] btrfs: fallocate: use GFP_KERNEL (Bill O'Donnell) [1399590]
-- [fs] btrfs: let callers of btrfs_alloc_root pass gfp flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: scrub: use GFP_KERNEL on the submission path (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: use GFP_KERNEL everywhere (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use GFP_KERNEL everywhere (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove no longer used function extent_read_full_page_nolock() (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_ioctl_clone: Truncate complete page after performing clone operation (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix block size returned to user space (Bill O'Donnell) [1399590]
-- [fs] btrfs: Limit inline extents to root->sectorsize (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_submit_direct_hook: Handle map_length < bio vector length (Bill O'Donnell) [1399590]
-- [fs] btrfs: Use eb->start, seq as search key for tree modification log (Bill O'Donnell) [1399590]
-- [fs] btrfs: Search for all ordered extents that could span across a page (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_page_mkwrite: Reserve space in sectorsized units (Bill O'Donnell) [1399590]
-- [fs] btrfs: fallocate: Work with sectorsized blocks (Bill O'Donnell) [1399590]
-- [fs] btrfs: direct i/o read: Work on sectorsized blocks (Bill O'Donnell) [1399590]
-- [fs] btrfs: __btrfs_buffered_write: Reserve/release extents aligned to block size (Bill O'Donnell) [1399590]
-- [fs] btrfs: revert: btrfs: synchronize incompat feature bits with sysfs files (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't use GFP_HIGHMEM for free-space-tree bitmap kzalloc (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: check initialization state before updating features (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between fsync and lockless direct IO writes (Bill O'Donnell) [1399590]
-- [fs] btrfs: add free space tree to the cow-only list (Bill O'Donnell) [1399590]
-- [fs] btrfs: add free space tree to lockdep classes (Bill O'Donnell) [1399590]
-- [fs] btrfs: tweak free space tree bitmap allocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests: switch to GFP_KERNEL (Bill O'Donnell) [1399590]
-- [fs] btrfs: synchronize incompat feature bits with sysfs files (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: introduce helper for syncing bits with sysfs files (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: add free-space-tree bit attribute (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: fix typo in compat_ro attribute definition (Bill O'Donnell) [1399590]
-- [fs] btrfs: raid56: Use raid_write_end_io for scrub (Bill O'Donnell) [1399590]
-- [fs] btrfs: Remove unnecessary ClearPageUptodate for raid56 (Bill O'Donnell) [1399590]
-- [fs] btrfs: use rbio->nr_pages to reduce calculation (Bill O'Donnell) [1399590]
-- [fs] btrfs: Use unified stripe_page's index calculation (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix calculation of rbio->dbitmap's size calculation (Bill O'Donnell) [1399590]
-- [fs] btrfs: merge functions for wait snapshot creation (Bill O'Donnell) [1399590]
-- [fs] btrfs: delete unused argument in btrfs_copy_from_user (Bill O'Donnell) [1399590]
-- [fs] btrfs: Use direct way to determine raid56 write/recover mode (Bill O'Donnell) [1399590]
-- [fs] btrfs: Small cleanup for get index_srcdev loop (Bill O'Donnell) [1399590]
-- [fs] btrfs: Enhance chunk validation check (Bill O'Donnell) [1399590]
-- [fs] btrfs: Enhance super validation check (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix typo in log message when starting a balance (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove duplicate const specifier (Bill O'Donnell) [1399590]
-- [fs] btrfs: clean up an error code in btrfs_init_space_info() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix iterator with update error in backref.c (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix output of compression message in btrfs_parse_options() (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup, stop casting for extent_map->lookup everywhere (Bill O'Donnell) [1399590]
-- [fs] btrfs: Check metadata redundancy on balance (Bill O'Donnell) [1399590]
-- [fs] btrfs: preallocate path for snapshot creation at ioctl time (Bill O'Donnell) [1399590]
-- [fs] btrfs: allocate root item at snapshot ioctl time (Bill O'Donnell) [1399590]
-- [fs] btrfs: do an allocation earlier during snapshot creation (Bill O'Donnell) [1399590]
-- [fs] btrfs: use smaller type for btrfs_path locks (Bill O'Donnell) [1399590]
-- [fs] btrfs: use smaller type for btrfs_path lowest_level (Bill O'Donnell) [1399590]
-- [fs] btrfs: use smaller type for btrfs_path reada (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup, use enum values for btrfs_path reada (Bill O'Donnell) [1399590]
-- [fs] btrfs: constify static arrays (Bill O'Donnell) [1399590]
-- [fs] btrfs: constify remaining structs with function pointers (Bill O'Donnell) [1399590]
-- [fs] btrfs tests: replace whole ops structure for free space tests (Bill O'Donnell) [1399590]
-- [fs] btrfs: use list_for_each_entry* in backref.c (Bill O'Donnell) [1399590]
-- [fs] btrfs: use list_for_each_entry_safe in free-space-cache.c (Bill O'Donnell) [1399590]
-- [fs] btrfs: use list_for_each_entry* in check-integrity.c (Bill O'Donnell) [1399590]
-- [fs] btrfs: use linux/sizes.h to represent constants (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup, remove stray return statements (Bill O'Donnell) [1399590]
-- [fs] btrfs: zero out delayed node upon allocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: pass proper enum type to start_transaction() (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch __btrfs_fs_incompat return type from int to bool (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove unused inode argument from uncompress_inline() (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't use slab cache for struct btrfs_delalloc_work (Bill O'Donnell) [1399590]
-- [fs] btrfs: drop duplicate prefix from scrub workqueues (Bill O'Donnell) [1399590]
-- [fs] btrfs: verbose error when we find an unexpected item in sys_array (Bill O'Donnell) [1399590]
-- [fs] btrfs: better packing of btrfs_delayed_extent_op (Bill O'Donnell) [1399590]
-- [fs] btrfs: Support convert to -d dup for btrfs-convert (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't leave dangling dentry if symlink creation failed (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between free space endio workers and space cache writeout (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't run delayed references while we are creating the free space tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix compiling with CONFIG_BTRFS_DEBUG enabled (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unprotected list operations at btrfs_write_dirty_block_groups (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix locking bugs when defragging leaves (Bill O'Donnell) [1399590]
-- [fs] btrfs: add free space tree mount option (Bill O'Donnell) [1399590]
-- [fs] btrfs: wire up the free space tree to the extent tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: add free space tree sanity tests (Bill O'Donnell) [1399590]
-- [fs] btrfs: implement the free space B-tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce the free space B-tree on-disk format (Bill O'Donnell) [1399590]
-- [fs] btrfs: refactor caching_thread() (Bill O'Donnell) [1399590]
-- [fs] btrfs: add helpers for read-only compat bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: add extent buffer bitmap sanity tests (Bill O'Donnell) [1399590]
-- [fs] btrfs: add extent buffer bitmap operations (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix deadlock between direct IO write and defrag/readpages (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leaks after transaction is aborted (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race when finishing dev replace leading to transaction abort (Bill O'Donnell) [1399590]
-- [fs] btrfs: make set_range_writeback return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make extent_range_redirty_for_io return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make extent_range_clear_dirty_for_io return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make end_extent_writepage return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make extent_clear_unlock_delalloc return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make clear_extent_buffer_uptodate return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make set_extent_buffer_uptodate return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove a trivial helper btrfs_set_buffer_uptodate (Bill O'Donnell) [1399590]
-- [fs] btrfs: use GFP_KERNEL for xattr and acl allocations (Bill O'Donnell) [1399590]
-- [fs] btrfs: use GFP_KERNEL for allocations of workqueues (Bill O'Donnell) [1399590]
-- [fs] btrfs: use GFP_KERNEL for allocations in ioctl handlers (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove wait from struct btrfs_delalloc_work (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink parameter wait to btrfs_alloc_delalloc_work (Bill O'Donnell) [1399590]
-- [fs] btrfs: make btrfs_close_one_device static (Bill O'Donnell) [1399590]
-- [fs] btrfs: make lock_extent static inline (Bill O'Donnell) [1399590]
-- [fs] btrfs: drop unused parameter from lock_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: make clear_extent_bit helpers static inline (Bill O'Donnell) [1399590]
-- [fs] btrfs: make set_extent_bit helpers static inline (Bill O'Donnell) [1399590]
-
-* Fri Mar 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-617.el7]
-- [mmc] core: fix multi-bit bus width without high-speed mode (Don Zickus) [1430497]
-- [mmc] sdhci: Ignore unexpected CARD_INT interrupts (Don Zickus) [1430497]
-- [mmc] core: Restore parts of the polling policy when switch to HS/HS DDR (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Only powered up enabled acpi child devices (Don Zickus) [1430497]
-- [mmc] sd: Meet alignment requirements for raw_ssr DMA (Don Zickus) [1430497]
-- [mmc] core: Further fix thread wake-up (Don Zickus) [1430497]
-- [mmc] sdhci: Fix to handle MMC_POWER_UNDEFINED (Don Zickus) [1430497]
-- [mmc] sdhci-cadence: add Socionext UniPhier specific compatible string (Don Zickus) [1430497]
-- [mmc] block: Move files to core (Don Zickus) [1430497]
-- [mmc] sdhci-cadence: add Cadence SD4HC support (Don Zickus) [1430497]
-- [mmc] sdhci: export sdhci_execute_tuning() (Don Zickus) [1430497]
-- [mmc] sdhci: Tidy tuning loop (Don Zickus) [1430497]
-- [mmc] sdhci: Simplify tuning block size logic (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out tuning helper functions (Don Zickus) [1430497]
-- [mmc] sdhci: Use mmc_abort_tuning() (Don Zickus) [1430497]
-- [mmc] mmc: Introduce mmc_abort_tuning() (Don Zickus) [1430497]
-- [mmc] sdhci: Always allow tuning to fall back to fixed sampling (Don Zickus) [1430497]
-- [mmc] sdhci: Fix tuning reset after exhausting the maximum number of loops (Don Zickus) [1430497]
-- [mmc] sdhci: Fix recovery from tuning timeout (Don Zickus) [1430497]
-- [mmc] revert "mmc: sdhci: Reset cmd and data circuits after tuning failure" (Don Zickus) [1430497]
-- [mmc] mmc: Relax checking for switch errors after HS200 switch (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: support 80860F14 UID 2 SDIO bus (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Use ACPI to get max frequency for Intel NI byt sdio (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Add PCI ID for Intel NI byt sdio (Don Zickus) [1430497]
-- [mmc] mmc_test: remove BUG_ONs and deploy error handling (Don Zickus) [1430497]
-- [mmc] queue: remove BUG_ON for bounce_sg (Don Zickus) [1430497]
-- [mmc] sdio_uart: remove meaningless BUG_ON (Don Zickus) [1430497]
-- [mmc] core: remove BUG_ONs from core.c (Don Zickus) [1430497]
-- [mmc] core: remove BUG_ONs from sd (Don Zickus) [1430497]
-- [mmc] core: remove BUG_ONs from mmc (Don Zickus) [1430497]
-- [mmc] debugfs: remove BUG_ON from mmc_ext_csd_open (Don Zickus) [1430497]
-- [mmc] core: remove BUG_ONs from sdio (Don Zickus) [1430497]
-- [mmc] mmc: Add Command Queue definitions (Don Zickus) [1430497]
-- [mmc] queue: Introduce queue depth and use it to allocate and free (Don Zickus) [1430497]
-- [mmc] queue: Factor out mmc_queue_reqs_free_bufs() (Don Zickus) [1430497]
-- [mmc] queue: Factor out mmc_queue_alloc_sgs() (Don Zickus) [1430497]
-- [mmc] queue: Factor out mmc_queue_alloc_bounce_sgs() (Don Zickus) [1430497]
-- [mmc] queue: Factor out mmc_queue_alloc_bounce_bufs() (Don Zickus) [1430497]
-- [mmc] queue: Fix queue thread wake-up (Don Zickus) [1430497]
-- [mmc] block: Fix 4K native sector check (Don Zickus) [1430497]
-- [mmc] block: Restore line inadvertently removed with packed commands (Don Zickus) [1430497]
-- [mmc] sdhci-of-esdhc: fix host version for T4240-R1.0-R2.0 (Don Zickus) [1430497]
-- [mmc] block: delete packed command support (Don Zickus) [1430497]
-- [mmc] delete is_first_req parameter from pre-request callback (Don Zickus) [1430497]
-- [mmc] core: Update CMD13 polling policy when switch to HS DDR mode (Don Zickus) [1430497]
-- [mmc] core: Allow CMD13 polling when switching to HS mode for mmc (Don Zickus) [1430497]
-- [mmc] core: Enable __mmc_switch() to change bus speed timing for the host (Don Zickus) [1430497]
-- [mmc] core: Check SWITCH_ERROR bit from each CMD13 response when polling (Don Zickus) [1430497]
-- [mmc] core: Rename ignore_crc to retry_crc_err to reflect its purpose (Don Zickus) [1430497]
-- [mmc] core: Remove redundant __mmc_send_status() (Don Zickus) [1430497]
-- [mmc] core: Retry instead of ignore at CRC errors when polling for busy (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Allow deferred probe for sd card detect gpio (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Add support for Intel GLK (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_enable_clk (Don Zickus) [1430497]
-- [mmc] dw_mmc: use the cookie's enum values for post/pre_req() (Don Zickus) [1430497]
-- [mmc] block: move packed command struct init (Don Zickus) [1430497]
-- [mmc] block: rename data to blkdata (Don Zickus) [1430497]
-- [mmc] mmc_test: Uninitialized return value (Don Zickus) [1430497]
-- [mmc] sdhci: remove unneeded (void *) casts in sdhci_(pltfm_)priv() (Don Zickus) [1430497]
-- [mmc] core: Add helper to see if a host can be retuned (Don Zickus) [1430497]
-- [mmc] core: use enum mmc_blk_status properly (Don Zickus) [1430497]
-- [mmc] block: convert ecc_err to a bool (Don Zickus) [1430497]
-- [mmc] block: make gen_err a bool variable (Don Zickus) [1430497]
-- [mmc] sdhci: Use sdhci-caps-mask and sdhci-caps to change the caps read during __sdhci_read_caps (Don Zickus) [1430497]
-- [mmc] core: Don't power off the card when starting the host (Don Zickus) [1430497]
-- [mmc] core: expose the capability of gpio card detect (Don Zickus) [1430497]
-- [mmc] core: Don't use ->card_busy() and CMD13 in combination when polling (Don Zickus) [1430497]
-- [mmc] core: Factor out code related to polling in __mmc_switch() (Don Zickus) [1430497]
-- [mmc] core: Clarify code which deals with polling in __mmc_switch() (Don Zickus) [1430497]
-- [mmc] core: Make mmc_switch_status() available for mmc core (Don Zickus) [1430497]
-- [mmc] rtsx_usb_sdmmc: Enable runtime PM autosuspend (Don Zickus) [1430497]
-- [mmc] sdhci: put together into one condition checking (Don Zickus) [1430497]
-- [mmc] sdhci-of-esdhc: fixup PRESENT_STATE read (Don Zickus) [1430497]
-- [mmc] mmc: Use 500ms as the default generic CMD6 timeout (Don Zickus) [1430497]
-- [mmc] mmc_test: Fix "Commands during non-blocking write" tests (Don Zickus) [1430497]
-- [mmc] sdhci: Fix missing enhanced strobe setting during runtime resume (Don Zickus) [1430497]
-- [mmc] sdhci: Reset cmd and data circuits after tuning failure (Don Zickus) [1430497]
-- [mmc] sdhci: Fix unexpected data interrupt handling (Don Zickus) [1430497]
-- [mmc] sdhci: Fix CMD line reset interfering with ongoing data transfer (Don Zickus) [1430497]
-- [mmc] rtsx_usb_sdmmc: Handle runtime PM while changing the led (Don Zickus) [1430497]
-- [mmc] rtsx_usb_sdmmc: Avoid keeping the device runtime resumed when unused (Don Zickus) [1430497]
-- [mmc] sdhci: cast unsigned int to unsigned long long to avoid unexpeted error (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Fix bus power failing to enable for some Intel controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Let devices define their own sdhci_ops (Don Zickus) [1430497]
-- [mmc] sdhci: Rename sdhci_set_power() to sdhci_set_power_noreg() (Don Zickus) [1430497]
-- [mmc] sdhci: Fix SDHCI_QUIRK2_STOP_WITH_TC (Don Zickus) [1430497]
-- [mmc] core: Annotate cmd_hdr as __le32 (Don Zickus) [1430497]
-- [mmc] core: changes frequency to hs_max_dtr when selecting hs400es (Don Zickus) [1430497]
-- [mmc] core: switch to 1V8 or 1V2 for hs400es mode (Don Zickus) [1430497]
-- [mmc] block: add missing header dependencies (Don Zickus) [1430497]
-- [mmc] mfd: rtsx_usb: Avoid setting ucr->current_sg.status (Don Zickus) [1430497]
-- [mmc] core: don't try to switch block size for dual rate mode (Don Zickus) [1430497]
-- [mmc] sdhci-of-arasan: Set controller to test mode when no CD bit (Don Zickus) [1430497]
-- [mmc] rtsx_usb: use new macro for R1 without CRC (Don Zickus) [1430497]
-- [mmc] rtsx_pci: use new macro for R1 without CRC (Don Zickus) [1430497]
-- [mmc] add define for R1 response without CRC (Don Zickus) [1430497]
-- [mmc] card: do away with indirection pointer (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Set MMC_CAP_CMD_DURING_TFR for Intel eMMC controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Set MMC_CAP_CMD_DURING_TFR for Intel eMMC controllers (Don Zickus) [1430497]
-- [mmc] sdhci: Support cap_cmd_during_tfr requests (Don Zickus) [1430497]
-- [mmc] mmc_test: Add tests for sending commands during transfer (Don Zickus) [1430497]
-- [mmc] core: Add support for sending commands during data transfer (Don Zickus) [1430497]
-- [mmc] sdhci-brcmstb: Fix incorrect capability (Don Zickus) [1430497]
-- [mmc] core: Optimize the mmc erase size alignment (Don Zickus) [1430497]
-- [mmc] core: Factor out the alignment of erase size (Don Zickus) [1430497]
-- [mmc] core: Use a default maximum erase timeout (Don Zickus) [1430497]
-- [mmc] sdhci-pci: enable SD card interface on Merrifield (Don Zickus) [1430497]
-- [mmc] sdhci-pci: enable SDIO interface on Intel Merrifield (Don Zickus) [1430497]
-- [mmc] sdhci-pci: refactor intel_mrfld_mmc_probe_slot() (Don Zickus) [1430497]
-- [mmc] dw_mmc: add reset support to dwmmc host controller (Don Zickus) [1430497]
-- [mmc] block: don't use CMD23 with very old MMC cards (Don Zickus) [1430497]
-- [mmc] sdhci: Remove ->platform_init() callback as it's no longer used (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Convert to use managed functions (part2) (Don Zickus) [1430497]
-- [mmc] sdio: deploy error handling instead of triggering BUG_ON (Don Zickus) [1430497]
-- [mmc] block: remove the check of packed for packed request routine (Don Zickus) [1430497]
-- [mmc] core: Add error message when switching fails in mmc_select_hs() (Don Zickus) [1430497]
-- [mmc] sdhci: Do not allow tuning procedure to be interrupted (Don Zickus) [1430497]
-- [mmc] sdhci-brcmstb: Delete owner assignment (Don Zickus) [1430497]
-- [mmc] sd: Export SD Status via "ssr" device attribute (Don Zickus) [1430497]
-- [mmc] vub300: don't print error when allocating urb fails (Don Zickus) [1430497]
-- [mmc] rtsx_pci: Remove deprecated create_singlethread_workqueue (Don Zickus) [1430497]
-- [mmc] rtsx_pci: Enable MMC_CAP_ERASE to allow erase/discard/trim requests (Don Zickus) [1430497]
-- [mmc] rtsx_pci: Use the provided busy timeout from the mmc core (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: Drop define for SDHCI_PLTFM_PMOPS (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: Convert to use the SET_SYSTEM_SLEEP_PM_OPS (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: Make sdhci_pltfm_suspend|resume() static (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Simplify code by using SET_SYSTEM_SLEEP_PM_OPS (Don Zickus) [1430497]
-- [mmc] sdhci-pci-core: Simplify code by using SET_SYSTEM_SLEEP_PM_OPS (Don Zickus) [1430497]
-- [mmc] Change the max discard sectors and erase response when HW busy detect (Don Zickus) [1430497]
-- [mmc] sdhci: Request regulators before reading capabilities (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Use MRFLD as abbreviation of Merrifield (Don Zickus) [1430497]
-- [mmc] sdhci: add standard hw auto retuning support (Don Zickus) [1430497]
-- [mmc] sdhci: using common mmc_regulator_set_vqmmc() (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Convert to use managed functions pcim_* and devm_* (Don Zickus) [1430497]
-- [mmc] core: Extend sysfs with DSR register (Don Zickus) [1430497]
-- [mmc] core: expose MMC_CAP2_NO_* to dt (Don Zickus) [1430497]
-- [mmc] core: Extend sysfs with OCR register (Don Zickus) [1430497]
-- [mmc] sdhci: add define for suspend/resume capability (Don Zickus) [1430497]
-- [mmc] core: Allow hosts to specify non-support for MMC commands (Don Zickus) [1430497]
-- [mmc] sdhci: sdhci_execute_tuning() must delete timer (Don Zickus) [1430497]
-- [mmc] sdhci: Avoid STOP cmd triggering warning in sdhci_send_command() (Don Zickus) [1430497]
-- [mmc] sdhci: Do not reset cmd or data circuits that are in use (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_auto_cmd12() (Don Zickus) [1430497]
-- [mmc] sdhci: Allow for finishing multiple requests (Don Zickus) [1430497]
-- [mmc] sdhci: Separate timer timeout for command and data requests (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_data_line_cmd() (Don Zickus) [1430497]
-- [mmc] sdhci: Ensure all requests get errored out (Don Zickus) [1430497]
-- [mmc] sdhci: Clear pointers when a request finishes (Don Zickus) [1430497]
-- [mmc] sdhci: Track whether a reset is pending (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_needs_reset() (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_finish_mrq() (Don Zickus) [1430497]
-- [mmc] sdhci: Move host->data warning (Don Zickus) [1430497]
-- [mmc] sdhci: Reduce the use of host->mrq (Don Zickus) [1430497]
-- [mmc] sdhci: Get rid of host->busy_handle (Don Zickus) [1430497]
-- [mmc] sdhci: Record what command is using the data lines (Don Zickus) [1430497]
-- [mmc] sdhci: Simplify sdhci_finish_command() by clearing host->cmd at the start (Don Zickus) [1430497]
-- [mmc] sdhci: Get rid of redundant BUG_ONs (Don Zickus) [1430497]
-- [mmc] sdhci: Move busy signal handling into sdhci_finish_cmd() (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Do not runtime suspend at the end of sdhci_pci_probe() (Don Zickus) [1430497]
-- [mmc] sdhci: Add sdhci_read_caps() (Don Zickus) [1430497]
-- [mmc] sdhci: Tidy caps variables in sdhci_setup_host() (Don Zickus) [1430497]
-- [mmc] sdhci: Make signal voltage support explicit (Don Zickus) [1430497]
-- [mmc] sdhci: Split sdhci_add_host() (Don Zickus) [1430497]
-- [mmc] sdhci: Do not call implementations of mmc host ops directly (Don Zickus) [1430497]
-- [mmc] dw_mmc: remove the quirks flags (Don Zickus) [1430497]
-- [mmc] core: Allow hosts to specify non-support for SD commands (Don Zickus) [1430497]
-- [mmc] sdhci: use pr_err for sdhci_dumpregs (Don Zickus) [1430497]
-- [mmc] host: use the defined function to check whether card is removable (Don Zickus) [1430497]
-- [mmc] sdhci-of-arasan: Add ability to export card clock (Don Zickus) [1430497]
-- [mmc] sdhci-brcmstb: Add driver for Broadcom BRCMSTB SoCs (Don Zickus) [1430497]
-- [mmc] block: Fix tag condition with packed writes (Don Zickus) [1430497]
-- [mmc] core: Disable HPI for certain Hynix eMMC cards (Don Zickus) [1430497]
-- [mmc] core: Only change mode if mmc_select_bus_width() is successful (Don Zickus) [1430497]
-- [mmc] Set pref erase size based on size (Don Zickus) [1430497]
-- [mmc] mmc: Fix HS switch failure in mmc_select_hs400() (Don Zickus) [1430497]
-- [mmc] mmc: fix switch timeout issue caused by jiffies precision (Don Zickus) [1430497]
-- [mmc] mmc: do not use CMD13 to get status after speed mode switch (Don Zickus) [1430497]
-- [mmc] mmc: Use ->card_busy() to detect busy cards in __mmc_switch() (Don Zickus) [1430497]
-- [mmc] sdhci: Fix sdhci_card_busy() (Don Zickus) [1430497]
-- [mmc] debugfs: add HS400 enhanced strobe description (Don Zickus) [1430497]
-- [mmc] core: implement enhanced strobe support (Don Zickus) [1430497]
-- [mmc] core: add mmc-hs400-enhanced-strobe support (Don Zickus) [1430497]
-- [mmc] sdhci: fix wakeup configuration (Don Zickus) [1430497]
-- [mmc] block: correct 4KB alignment check (Don Zickus) [1430497]
-- [mmc] sdhci: remove comment regarding timeout during tuning (Don Zickus) [1430497]
-- [mmc] block: fix packed command header endianness (Don Zickus) [1430497]
-- [mmc] block: fix free of uninitialized 'idata->buf' (Don Zickus) [1430497]
-- [mmc] x86, mmc: Use Intel family name macros for mmc driver (Don Zickus) [1430497]
-- [mmc] fix mmc mode selection for HS-DDR and higher (Don Zickus) [1430497]
-- [mmc] remove lots of IS_ERR_VALUE abuses (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Remove MMC_CAP_BUS_WIDTH_TEST for Intel controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Remove MMC_CAP_BUS_WIDTH_TEST for Intel controllers (Don Zickus) [1430497]
-- [mmc] longer timeout for long read time quirk (Don Zickus) [1430497]
-- [mmc] block: Pause re-tuning while switched to the RPMB partition (Don Zickus) [1430497]
-- [mmc] block: Always switch back to main area after RPMB access (Don Zickus) [1430497]
-- [mmc] core: Add a facility to "pause" re-tuning (Don Zickus) [1430497]
-- [mmc] mmc: Fix partition switch timeout for some eMMCs (Don Zickus) [1430497]
-- [mmc] sdio: fall back to SDIO 1.0 for broken 1.1 cards (Don Zickus) [1430497]
-- [mmc] block: improve logging of handling emmc timeouts (Don Zickus) [1430497]
-- [mmc] sdhci: removed unneeded function wrappers (Don Zickus) [1430497]
-- [mmc] core: remove the invalid message in mmc_select_timing (Don Zickus) [1430497]
-- [mmc] core: fix using wrong io voltage if mmc_select_hs200 fails (Don Zickus) [1430497]
-- [mmc] mmc: Attempt to flush cache before reset (Don Zickus) [1430497]
-- [mmc] sh_mmcif: remove obsolete support for sh7372 (Don Zickus) [1430497]
-- [mmc] block: Convert to IDA for partition device indexes (Don Zickus) [1430497]
-- [mmc] block: Release index in partition allocation error path (Don Zickus) [1430497]
-- [mmc] core: Convert from IDR to IDA for host indexes (Don Zickus) [1430497]
-- [mmc] sdhci: use IS_ENABLE(CONFIG_LEDS_CLASS) to enable LED struct members (Don Zickus) [1430497]
-- [mmc] sdhci: use IS_REACHABLE(CONFIG_LEDS_CLASS) to enable LED code (Don Zickus) [1430497]
-- [mmc] sdhci: Remove SDHCI_SDR104_NEEDS_TUNING (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: call platform_get_irq() before sdhci_alloc_host() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: move devm_ioremap_resource() up (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: use devm_ioremap_resource() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: use devm_ioremap() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: use devm_request_mem_region() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: check return value of platform_get_irq() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: drop error message for too small MMIO resource size (Don Zickus) [1430497]
-- [mmc] core: drop unnecessary bit checking (Don Zickus) [1430497]
-- [mmc] sdhci: Tidy together LED code (Don Zickus) [1430497]
-- [mmc] sdhci: Fix error paths in sdhci_add_host() (Don Zickus) [1430497]
-- [mmc] sdhci: Remove redundant condition (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Set MMC_CAP_AGGRESSIVE_PM for Broxton controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Set MMC_CAP_AGGRESSIVE_PM for Broxton controllers (Don Zickus) [1430497]
-- [mmc] sdhci: Remove SDHCI_QUIRK2_NEED_DELAY_AFTER_INT_CLK_RST (Don Zickus) [1430497]
-- [mmc] sdhci: Introduce sdhci_calc_clk() (Don Zickus) [1430497]
-- [mmc] sdhci: Move sdhci_runtime_pm_bus_off|on() to avoid pre-definition (Don Zickus) [1430497]
-- [mmc] sdhci-pic32: remove owner assignment (Don Zickus) [1430497]
-- [mmc] sdhci: Remove redundant runtime PM calls (Don Zickus) [1430497]
-- [mmc] core: Do regular power cycle when lacking eMMC HW reset support (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Remove redundant runtime PM calls (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Remove redundant runtime PM calls (Don Zickus) [1430497]
-- [mmc] dw_mmc: remove unused EVENT_XFER_ERROR (Don Zickus) [1430497]
-- [mmc] dw_mmc: fix warning reported by kernel-doc (Don Zickus) [1430497]
-- [mmc] host: add note that set_ios needs to handle 0Hz properly (Don Zickus) [1430497]
-- [mmc] core: Provide tracepoints for request processing (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Reduce Baytrail eMMC/SD/SDIO hangs (Don Zickus) [1430497]
-- [mmc] block: Use the mmc host device index as the mmcblk device index (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Add support and PCI IDs for more Broxton host controllers (Don Zickus) [1430497]
-- [mmc] sdhci: Fix regression setting power on Trats2 board (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Do not set DMA mask in enable_dma() (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Remove enable_dma() hook (Don Zickus) [1430497]
-- [mmc] sdhci: Set DMA mask when adding host (Don Zickus) [1430497]
-- [mmc] block: fix ABI regression of mmc_blk_ioctl (Don Zickus) [1430497]
-- [mmc] core: remove redundant memset of sdio_read_cccr (Don Zickus) [1430497]
-- [mmc] core: remove redundant memset of mmc_decode_cid (Don Zickus) [1430497]
-- [mmc] sdhci: Fix override of timeout clk wrt max_busy_timeout (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: add QCOM controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: remove priv variable from sdhci_pltfm_host (Don Zickus) [1430497]
-- [mmc] sdhci: further code simplication (Don Zickus) [1430497]
-- [mmc] sdhci: consolidate the DMA/ADMA size/address quicks (Don Zickus) [1430497]
-- [mmc] sdhci: prepare DMA address/size quirk handling consolidation (Don Zickus) [1430497]
-- [mmc] sdhci: cleanup DMA un-mapping (Don Zickus) [1430497]
-- [mmc] sdhci: clean up host cookie handling (Don Zickus) [1430497]
-- [mmc] sdhci: always unmap a mapped data transfer in sdhci_post_req() (Don Zickus) [1430497]
-- [mmc] sdhci: pass the cookie into sdhci_pre_dma_transfer() (Don Zickus) [1430497]
-- [mmc] sdhci: factor out sdhci_pre_dma_transfer() from sdhci_adma_table_pre() (Don Zickus) [1430497]
-- [mmc] sdhci: move sdhci_pre_dma_transfer() (Don Zickus) [1430497]
-- [mmc] sdhci: factor out common DMA cleanup in sdhci_finish_data() (Don Zickus) [1430497]
-- [mmc] sdhci: avoid walking SG list for writes (Don Zickus) [1430497]
-- [mmc] sdhci: clean up coding style in sdhci_adma_table_pre() (Don Zickus) [1430497]
-- [mmc] sdhci: allocate alignment and DMA descriptor buffer together (Don Zickus) [1430497]
-- [mmc] sdhci: fix data timeout (part 2) (Don Zickus) [1430497]
-- [mmc] sdhci: fix data timeout (part 1) (Don Zickus) [1430497]
-- [mmc] sdhci: further fix for DMA unmapping in sdhci_post_req() (Don Zickus) [1430497]
-- [mmc] sdhci: plug DMA mapping leak on error (Don Zickus) [1430497]
-- [mmc] sdhci: avoid unnecessary mapping/unmapping of align buffer (Don Zickus) [1430497]
-- [mmc] sdhci: fix command response CRC error handling (Don Zickus) [1430497]
-- [mmc] sdhci: clean up command error handling (Don Zickus) [1430497]
-- [mmc] sdhci: move initialisation of command error member (Don Zickus) [1430497]
-- [mmc] sdhci: Allow CAPS check for SDHCI_CAN_64BIT to use overridden caps (Don Zickus) [1430497]
-- [mmc] sdhci-pic32: Add PIC32 SDHCI host controller driver (Don Zickus) [1430497]
-- [mmc] dw_mmc: remove DW_MCI_QUIRK_BROKEN_CARD_DETECTION quirk (Don Zickus) [1430497]
-- [mmc] dw_mmc: remove struct block_settings (Don Zickus) [1430497]
-- [mmc] core: report tuning command execution failure reason (Don Zickus) [1430497]
-- [mmc] block: shut up "retrying because a re-tune was needed" message (Don Zickus) [1430497]
-- [mmc] core: improve mmc_of_parse_voltage() to return better status (Don Zickus) [1430497]
-- [mmc] core: shut up "voltage-ranges unspecified" pr_info() (Don Zickus) [1430497]
-- [mmc] block: don't use the OR operation for flag of data (Don Zickus) [1430497]
-- [mmc] core: remove the MMC_DATA_STREAM flag (Don Zickus) [1430497]
-- [mmc] sanitize 'bus width' in debug output (Don Zickus) [1430497]
-- [mmc] core: use the defined function to check whether card is removable (Don Zickus) [1430497]
-- [mmc] mmc_test: mention that '0' runs all tests (Don Zickus) [1430497]
-- [mmc] mmcif: don't depend on MMC_BLOCK (Don Zickus) [1430497]
-- [mmc] make MAN_BKOPS_EN message a debug (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: enable sdhci-acpi device to suspend/resume asynchronously (Don Zickus) [1430497]
-- [mmc] core: enable mmc host device to suspend/resume asynchronously (Don Zickus) [1430497]
-- [mmc] debugfs: Add a restriction to mmc debugfs clock setting (Don Zickus) [1430497]
-- [mmc] remove unnecessary assignment statements before return (Don Zickus) [1430497]
-
-* Fri Mar 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-616.el7]
-- [fs] cifs: initialize file_info_lock (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix a possible double locking of mutex during reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix a possible memory corruption during reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix a possible memory corruption in push locks (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix missing nls unload in smb2_reconnect() (Sachin Prabhu) [1416808]
-- [fs] cifs: Decrease verbosity of ioctl call (Sachin Prabhu) [1416808]
-- [fs] smb3: parsing for new snapshot timestamp mount parm (Sachin Prabhu) [1416808]
-- [fs] Call echo service immediately after socket reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: Retrieve uid and gid from special sid if enabled (Sachin Prabhu) [1416808]
-- [fs] cifs: Add new mount option to set owner uid and gid from special sids in acl (Sachin Prabhu) [1416808]
-- [fs] cifs: Reset read oplock to NONE if we have mandatory locks after reopen (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix persistent handles re-opening on reconnect (Sachin Prabhu) [1416808]
-- [fs] smb2: Separate RawNTLMSSP authentication from SMB2_sess_setup (Sachin Prabhu) [1416808]
-- [fs] smb2: Separate Kerberos authentication from SMB2_sess_setup (Sachin Prabhu) [1416808]
-- [fs] Expose cifs module parameters in sysfs (Sachin Prabhu) [1416808]
-- [fs] Cleanup missing frees on some ioctls (Sachin Prabhu) [1416808]
-- [fs] Enable previous version support (Sachin Prabhu) [1416808]
-- [fs] Do not send SMB3 SET_INFO request if nothing is changing (Sachin Prabhu) [1416808]
-- [fs] smb3: Add mount parameter to allow user to override max credits (Sachin Prabhu) [1416808]
-- [fs] cifs: reopen persistent handles on reconnect (Sachin Prabhu) [1416808]
-- [fs] Clarify locking of cifs file and tcon structures and make more granular (Sachin Prabhu) [1416808]
-- [fs] cifs: keep guid when assigning fid to fileinfo (Sachin Prabhu) [1416808]
-- [fs] smb3: GUIDs should be constructed as random but valid uuids (Sachin Prabhu) [1416808]
-- [fs] Set previous session id correctly on SMB3 reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: Limit the overall credit acquired (Sachin Prabhu) [1416808]
-- [fs] Display number of credits available (Sachin Prabhu) [1416808]
-- [fs] cifs: get rid of unused arguments of CIFSSMBWrite() (Sachin Prabhu) [1416808]
-- [fs] cifs: don't use ->d_time (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix a possible invalid memory access in smb2_query_symlink() (Sachin Prabhu) [1416808]
-- [fs] cifs: fix crash due to race in hmac(md5) handling (Sachin Prabhu) [1416808]
-- [fs] cifs: unbreak TCP session reuse (Sachin Prabhu) [1416808]
-- [fs] File names with trailing period or space need special case conversion (Sachin Prabhu) [1416808]
-- [fs] Fix reconnect to not defer smb3 session reconnect long after socket reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: check hash calculating succeeded (Sachin Prabhu) [1416808]
-- [fs] cifs: stuff the fl_owner into "pid" field in the lock request (Sachin Prabhu) [1416808]
-- [fs] cifs: Remove some obsolete comments (Sachin Prabhu) [1416808]
-- [fs] remove directory incorrectly tries to set delete on close on non-empty directories (Sachin Prabhu) [1416808]
-- [fs] Update cifs.ko version to 2.09 (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix removexattr for os2.* xattrs (Sachin Prabhu) [1416808]
-- [fs] cifs: Check for equality with ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix xattr name checks (Sachin Prabhu) [1416808]
-- [fs] cifs: kill more bogus checks in ->...xattr() methods (Sachin Prabhu) [1416808]
-- [fs] don't bother with ->d_inode->i_sb - it's always equal to ->d_sb (Sachin Prabhu) [1416808]
-- [fs] mm, fs: remove remaining PAGE_CACHE_* and page_cache_{get, release} usage(cifs only) (Sachin Prabhu) [1416808]
-- [fs] mm, fs: get rid of PAGE_CACHE_* and page_cache_{get, release} macros(cifs only) (Sachin Prabhu) [1416808]
-- [fs] lib: update single-char callers of strtobool()(cifs only) (Sachin Prabhu) [1416808]
-- [fs] Add helper kstrtobool_from_user (Sachin Prabhu) [1416808]
-- [fs] cifs_get_root(): use lookup_one_len_unlocked() (Sachin Prabhu) [1416808]
-- [fs] Fix cifs_uniqueid_to_ino_t() function for s390x (Sachin Prabhu) [1416808]
-- [fs] wrappers for ->i_mutex access (Sachin Prabhu) [1416808]
-- [fs] cifs: remove redundant check for null string pointer (Sachin Prabhu) [1416808]
-- [fs] cifs: Add decryption and encryption key generation (Sachin Prabhu) [1416808]
-- [fs] cifs: Allow using O_DIRECT with cache=loose (Sachin Prabhu) [1416808]
-- [fs] posix acls: Remove duplicate xattr name definitions (cifs only) (Sachin Prabhu) [1416808]
-- [fs] libceph: don't set weight to IN when OSD is destroyed (Ilya Dryomov) [1427556]
-- [fs] xfs: allocate log vector buffers outside CIL context lock (Brian Foster) [1410906]
-- [fs] procfs: expose umask in /proc/<PID>/status (Miklos Szeredi) [1391413]
-- [fs] gfs2: Prevent BUG from occurring when normal Withdraws occur (Robert S Peterson) [1404005]
-- [fs] ext4: fix mmp use after free during unmount (Lukas Czerner) [1386651]
-- [fs] jbd2: fix incorrect unlock on j_list_lock (Lukas Czerner) [1403346]
-- [fs] nfs: nfs_rename() handle -ERESTARTSYS dentry left behind (Benjamin Coddington) [1349647]
-- [fs] nfsv4.0: always send mode in SETATTR after EXCLUSIVE4 (Benjamin Coddington) [1415780]
-- [fs] xfs: split indlen reservations fairly when under reserved (Brian Foster) [1423393]
-- [fs] xfs: handle indlen shortage on delalloc extent merge (Brian Foster) [1423393]
-- [netdrv] bna: use new api ethtool_{get|set}_link_ksettings (Jonathan Toppins) [1386007]
-- [netdrv] bna: use correct type specifier (2) (Jonathan Toppins) [1386007]
-- [netdrv] bna: use correct type specifications (Jonathan Toppins) [1386007]
-- [scsi] bfa: Increase requested firmware version to 3.2.5.1 (Jonathan Toppins) [1386007]
-- [netdrv] bna: Update the Driver and Firmware Version (Jonathan Toppins) [1386007]
-- [kernel] watchdog: prevent false hardlockup on overloaded system (Don Zickus) [1399881]
-- [security] keys: request_key() should reget expired keys rather than give EKEYEXPIRED (David Howells) [1408330]
-- [security] keys: Simplify KEYRING_SEARCH_{NO, DO}_STATE_CHECK flags (David Howells) [1408330]
-
-* Fri Mar 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-615.el7]
-- [net] sched: sch_sfb: keep backlog updated with qlen (Ivan Vecera) [1382040]
-- [net] sched: sch_qfq: keep backlog updated with qlen (Ivan Vecera) [1382040]
-- [net] switchdev: Fix return value of switchdev_port_fdb_dump() (Ivan Vecera) [1382040]
-- [net] sched: netem: fix a use after free (Ivan Vecera) [1382040]
-- [net] sched: fix pfifo_head_drop behavior vs backlog (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: fix NET_XMIT_CN behavior (Ivan Vecera) [1382040]
-- [net] sched: keep backlog updated with qlen (Ivan Vecera) [1382040]
-- [net] sched: sch_tbf: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: sch_red: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: sch_drr: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: sch_prio: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: sch_hfsc: always keep backlog updated (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: fix memory limitation drift (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: add memory limitation per queue (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: add batch ability to fq_codel_drop() (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: explicitly reset flows in ->reset() (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: fix return value of fq_codel_drop() (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: fix a use-after-free (Ivan Vecera) [1382040]
-- [net] rtnetlink: fix FDB size computation (Ivan Vecera) [1382040]
-- [net] dev: Fix non-RCU based lower dev walker (Ivan Vecera) [1382040]
-- [net] Introduce new api for walking upper and lower devices (Ivan Vecera) [1382040]
-- [net] rtnetlink: fdb dump: optimize by saving last interface markers (Ivan Vecera) [1382040]
-- [net] rtnetlink: wrap .ndo_fdb_dump calls (Ivan Vecera) [1382040]
-- [net] rtnetlink: Pass VLAN ID to rtnl_fdb_notify (Ivan Vecera) [1382040]
-- [net] rtnetlink: fix fdb notification flags (Ivan Vecera) [1382040]
-- [net] fq: Port memory limit mechanism from fq_codel (Ivan Vecera) [1382040]
-- [net] fq: split out backlog update logic (Ivan Vecera) [1382040]
-- [net] fq: add fair queuing framework (Ivan Vecera) [1382040]
-- [net] codel: split into multiple files (Ivan Vecera) [1382040]
-- [net] codel: generalize the implementation (Ivan Vecera) [1382040]
-- [net] Add skb_get_hash_perturb (Ivan Vecera) [1382040]
-- [net] Only do flow_dissector hash computation once per packet (Ivan Vecera) [1382040]
-- [net] sch_dsmark: update backlog as well (Ivan Vecera) [1382040]
-- [net] sch_htb: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: update hierarchical backlog too (Ivan Vecera) [1382040]
-- [net] sched: introduce qdisc_replace() helper (Ivan Vecera) [1382040]
-- [net] codel: add ce_threshold attribute (Ivan Vecera) [1382040]
-- [net] codel: fix maxpacket/mtu confusion (Ivan Vecera) [1382040]
-- [net] use ktime_get_ns() and ktime_get_real_ns() helpers (Ivan Vecera) [1382040]
-- [net] codel: Avoid undefined behavior from signed overflow (Ivan Vecera) [1382040]
-- [net] sock: backport __sock_queue_rcv_skb() (Ivan Vecera) [1382040]
-- [net] sock: convert sk_peek_offset functions to WRITE_ONCE (Ivan Vecera) [1382040]
-- [net] Add and use skb_copy_datagram_msg() helper (Ivan Vecera) [1382040]
-- [net] ipv6: Export fib6_get_table and nd_tbl (Ivan Vecera) [1382040]
-
-* Fri Mar 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-614.el7]
-- [fs] nfsv4: Label stateids with the type (Steve Dickson) [1349668]
-- [fs] pnfs: Files and flexfiles always need to commit before layoutcommit (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Clean up calls to pnfs_set_layoutcommit() (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix layoutcommit after a commit to DS (Steve Dickson) [1349668]
-- [fs] pnfs/files: Fix layoutcommit after a commit to DS (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix a deadlock on LAYOUTGET (Steve Dickson) [1349668]
-- [fs] nfs: Fix used uninitialized warn in nfs4_slot_seqid_in_use() (Steve Dickson) [1349668]
-- [fs] nfs4: fix missing-braces warning (Steve Dickson) [1349668]
-- [fs] nfsv4.2: Fix a reference leak in nfs42_proc_layoutstats_generic (Steve Dickson) [1349668]
-- [fs] pnfs: Fix atime updates on pNFS clients (Steve Dickson) [1349668]
-- [fs] nfsv4: Fix a race when updating an open_stateid (Steve Dickson) [1349668]
-- [fs] nfsv4: Fix a race in nfs_inode_reclaim_delegation() (Steve Dickson) [1349668]
-- [fs] nfsv4: Pass the stateid to the exception handler in nfs4_read/write_done_cb (Steve Dickson) [1349668]
-- [fs] nfsv4.1: nfs4_layoutget_handle_exception handle revoked state (Steve Dickson) [1349668]
-- [fs] nfsv4: nfs4_handle_setlk_error() handle expiration as revoke case (Steve Dickson) [1349668]
-- [fs] nfsv4: nfs4_handle_delegation_recall_error() handle expiration as revoke case (Steve Dickson) [1349668]
-- [fs] nfsv4: nfs4_do_handle_exception() handle revoke/expiry of a single stateid (Steve Dickson) [1349668]
-- [fs] nfsv4: nfs_inode_find_state_and_recover() should check all stateids (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Ensure we call FREE_STATEID if needed on close/delegreturn/locku (Steve Dickson) [1349668]
-- [fs] nfsv4.1: FREE_STATEID can be asynchronous (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Ensure we always run TEST/FREE_STATEID on locks (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Allow revoked stateids to skip the call to TEST_STATEID (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Don't deadlock the state manager on the SEQUENCE status flags (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Remove obsolete and incorrrect assignment in nfs4_callback_sequence (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Close callback races for OPEN, LAYOUTGET and LAYOUTRETURN (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Defer bumping the slot sequence number until we free the slot (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Delay callback processing when there are referring triples (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Fix Oopsable condition in server callback races (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Fix the CREATE_SESSION slot number accounting (Steve Dickson) [1349668]
-- [fs] pnfs: Don't forget the layout stateid if there are outstanding LAYOUTGETs (Steve Dickson) [1349668]
-- [fs] pnfs: Clear out all layout segments if the server unsets lrp->res.lrs_present (Steve Dickson) [1349668]
-- [fs] pnfs: Fix pnfs_set_layout_stateid() to clear NFS_LAYOUT_INVALID_STID (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Don't recheck delegations that have already been checked (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Deal with server reboots during delegation expiration recovery (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Test delegation stateids when server declares "some state revoked" (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Allow callers of nfs_remove_bad_delegation() to specify a stateid (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Add a helper function to deal with expired stateids (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Allow test_stateid to handle session errors without waiting (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Don't check delegations that are already marked as revoked (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix an Oopsable condition when connection to the DS fails (Steve Dickson) [1349668]
-- [fs] pnfs: The client must not do I/O to the DS if it's lease has expired (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Set reasonable default retrans values for the data channel (Steve Dickson) [1349668]
-- [fs] nfs: Allow the mount option retrans=0 (Steve Dickson) [1349668]
-- [fs] pnfs: Handle NFS4ERR_OLD_STATEID correctly in LAYOUTSTAT calls (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix layoutstat periodic reporting (Steve Dickson) [1349668]
-- [fs] Remove "tech preview" label for flexfile driver (Steve Dickson) [1349668]
-- [fs] nfsv4: Cap the transport reconnection timer at 1/2 lease period (Steve Dickson) [1349668]
-- [fs] sunrpc: Limit the reconnect backoff timer to the max RPC message timeout (Steve Dickson) [1349668]
-- [fs] sunrpc: Fix reconnection timeouts (Steve Dickson) [1349668]
-- [fs] sunrpc: Reduce latency when send queue is congested (Steve Dickson) [1349668]
-- [fs] sunrpc: RPC transport queue must be low latency (Steve Dickson) [1349668]
-- [fs] sunrpc: Consolidate xs_tcp_data_ready and xs_data_ready (Steve Dickson) [1349668]
-- [fs] sunrpc: Small optimisation of client receive (Steve Dickson) [1349668]
-- [fs] nfsv4: Clean up lookup of SECINFO_NO_NAME (Steve Dickson) [1349668]
-- [fs] pnfs: Remove redundant smp_mb() from pnfs_init_lseg() (Steve Dickson) [1349668]
-- [fs] pnfs: Cleanup - do layout segment initialisation in one place (Steve Dickson) [1349668]
-- [fs] pnfs: Remove redundant stateid invalidation (Steve Dickson) [1349668]
-- [fs] pnfs: Remove redundant pnfs_mark_layout_returned_if_empty() (Steve Dickson) [1349668]
-- [fs] pnfs: Clear the layout metadata if the server changed the layout stateid (Steve Dickson) [1349668]
-- [fs] pnfs: Cleanup - don't open code pnfs_mark_layout_stateid_invalid() (Steve Dickson) [1349668]
-- [fs] nfs: pnfs_mark_matching_lsegs_return() should match the layout sequence id (Steve Dickson) [1349668]
-- [fs] pnfs: Do not set plh_return_seq for non-callback related layoutreturns (Steve Dickson) [1349668]
-- [fs] pnfs: Ensure layoutreturn acts as a completion for layout callbacks (Steve Dickson) [1349668]
-- [fs] pnfs: Fix CB_LAYOUTRECALL stateid verification (Steve Dickson) [1349668]
-- [fs] pnfs: Always update the layout barrier seqid on LAYOUTGET (Steve Dickson) [1349668]
-- [fs] pnfs: Always update the layout stateid if NFS_LAYOUT_INVALID_STID is set (Steve Dickson) [1349668]
-- [fs] pnfs: Clear the layout return tracking on layout reinitialisation (Steve Dickson) [1349668]
-- [fs] pnfs: LAYOUTRETURN should only update the stateid if the layout is valid (Steve Dickson) [1349668]
-- [fs] pnfs/files: filelayout_write_done_cb must call nfs_writeback_update_inode() (Steve Dickson) [1349668]
-- [fs] mount: use sec= that was specified on the command line (Steve Dickson) [1349668]
-- [fs] fixing infinite OPEN loop in 4.0 stateid recovery (Steve Dickson) [1349668]
-- [fs] nfs/pnfs: Do not clobber existing pgio_done_cb in nfs4_proc_read_setup (Steve Dickson) [1349668]
-- [fs] sunrpc: Detect immediate closure of accepted sockets (Steve Dickson) [1349668]
-- [fs] sunrpc: accept() may return sockets that are still in SYN_RECV (Steve Dickson) [1349668]
-- [fs] pnfs: Fix post-layoutget error handling in pnfs_update_layout() (Steve Dickson) [1349668]
-- [fs] pnfs: Fix LAYOUTGET handling of NFS4ERR_BAD_STATEID and NFS4ERR_EXPIRED (Steve Dickson) [1349668]
-- [fs] pnfs: Handle NFS4ERR_RECALLCONFLICT correctly in LAYOUTGET (Steve Dickson) [1349668]
-- [fs] pnfs: Separate handling of NFS4ERR_LAYOUTTRYLATER and RECALLCONFLICT (Steve Dickson) [1349668]
-- [fs] nfs: Fix another OPEN_DOWNGRADE bug (Steve Dickson) [1349668]
-- [fs] nfs: Fix potential race in nfs_fhget() (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Mark the layout stateid invalid when all segments are removed (Steve Dickson) [1349668]
-- [fs] nfs: Fix a double page unlock (Steve Dickson) [1349668]
-- [fs] pnfs_nfs: fix _cancel_empty_pagelist (Steve Dickson) [1349668]
-- [fs] nfs/pnfs: handle bad delegation stateids in nfs4_layoutget_handle_exception (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Add sparse lock annotations for pnfs_find_alloc_layout (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Layout stateids start out as being invalid (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Ensure we handle delegation errors in nfs4_proc_layoutget() (Steve Dickson) [1349668]
-- [fs] nfs: fix anonymous member initializer build failure with older compilers (Steve Dickson) [1349668]
-- [fs] pnfs: pnfs_update_layout needs to consider if strict iomode checking is on (Steve Dickson) [1349668]
-- [fs] nfs/flexfiles: Use the layout segment for reading unless it a IOMODE_RW and reading is disabled (Steve Dickson) [1349668]
-- [fs] nfs/flexfiles: Helper function to detect FF_FLAGS_NO_READ_IO (Steve Dickson) [1349668]
-- [fs] nfs: avoid race that crashes nfs_init_commit (Steve Dickson) [1349668]
-- [fs] pnfs: make pnfs_layout_process more robust (Steve Dickson) [1349668]
-- [fs] pnfs: rework LAYOUTGET retry handling (Steve Dickson) [1349668]
-- [fs] pnfs: lift retry logic from send_layoutget to pnfs_update_layout (Steve Dickson) [1349668]
-- [fs] pnfs: fix bad error handling in send_layoutget (Steve Dickson) [1349668]
-- [fs] flexfiles: add kerneldoc header to nfs4_ff_layout_prepare_ds (Steve Dickson) [1349668]
-- [fs] flexfiles: remove pointless setting of NFS_LAYOUT_RETURN_REQUESTED (Steve Dickson) [1349668]
-- [fs] pnfs: only tear down lsegs that precede seqid in LAYOUTRETURN args (Steve Dickson) [1349668]
-- [fs] pnfs: keep track of the return sequence number in pnfs_layout_hdr (Steve Dickson) [1349668]
-- [fs] pnfs: record sequence in pnfs_layout_segment when it's created (Steve Dickson) [1349668]
-- [fs] pnfs: don't merge new ff lsegs with ones that have LAYOUTRETURN bit set (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: When initing reads or writes, we might have to retry connecting to DSes (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: When checking for available DSes, conditionally check for MDS io (Steve Dickson) [1349668]
-- [fs] pnfs/flexfile: Fix erroneous fall back to read/write through the MDS (Steve Dickson) [1349668]
-- [fs] nfs: Reclaim writes via writepage are opportunistic (Steve Dickson) [1349668]
-- [fs] pnfs: Fix a leaked layoutstats flag (Steve Dickson) [1349668]
-- [fs] nfs4: client: do not send empty SETATTR after OPEN_CREATE (Steve Dickson) [1349668]
-- [fs] Fixing oops in callback path (Steve Dickson) [1349668]
-- [fs] nfs: don't share mounts between network namespaces (Steve Dickson) [1349668]
-- [fs] nfs: Save struct inode * inside nfs_commit_info to clarify usage of i_lock (Steve Dickson) [1349668]
-- [fs] pnfs: set NFS_IOHDR_REDO in pnfs_read_resend_pnfs (Steve Dickson) [1349668]
-- [fs] nfs: missing wakeup in nfs_unblock_sillyrename() (Steve Dickson) [1349668]
-- [fs] nfsv4.x/pnfs: Fix a race between layoutget and bulk recalls (Steve Dickson) [1349668]
-- [fs] nfsv4.x/pnfs: Fix a race between layoutget and pnfs_destroy_layout (Steve Dickson) [1349668]
-- [fs] nfs4: fix stateid handling for the NFS v4.2 operations (Steve Dickson) [1349668]
-- [fs] pnfs: Always set NFS_LAYOUT_RETURN_REQUESTED with lo->plh_return_iomode (Steve Dickson) [1349668]
-- [fs] pnfs: Fix pnfs_mark_matching_lsegs_return() (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Fix NFS4ERR_RETRY_UNCACHED_REP in nfs4_callback_sequence (Steve Dickson) [1349668]
-- [fs] nfs: Cleanup - rename NFS_LAYOUT_RETURN_BEFORE_CLOSE (Steve Dickson) [1349668]
-- [fs] pnfs: Fix missing layoutreturn calls (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Allow multiple callbacks in flight (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Fix wraparound issues when validing the callback sequence id (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Enforce the ca_maxresponsesize_cached on the back channel (Steve Dickson) [1349668]
-- [fs] nfsv4.x: CB_SEQUENCE should return NFS4ERR_DELAY if still executing (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Remove hard coded slotids in callback channel (Steve Dickson) [1349668]
-- [fs] nfs: Simplify nfs_request_add_commit_list() arguments (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Improve merging of errors in LAYOUTRETURN (Steve Dickson) [1349668]
-- [fs] nfs: Fix a compile warning about unused variable in nfs_generic_pg_pgios() (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Cleanup constify struct pnfs_layout_range arguments (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Cleanup copying of pnfs_layout_range structures (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Cleanup pnfs_mark_matching_lsegs_invalid() (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Fix a race in initiate_file_draining() (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: pnfs_error_mark_layout_for_return() must always return layout (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: pnfs_mark_matching_lsegs_return() should set the iomode (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Use nfs4_stateid_copy for copying stateids (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Don't pass stateids by value to pnfs_send_layoutreturn() (Steve Dickson) [1349668]
-- [fs] nfs: Relax requirements in nfs_flush_incompatible (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Don't queue up a new commit if the layout segment is invalid (Steve Dickson) [1349668]
-- [fs] nfs: Allow multiple commit requests in flight per file (Steve Dickson) [1349668]
-- [fs] nfs/pnfs: Fix up pNFS write reschedule layering violations and bugs (Steve Dickson) [1349668]
-- [fs] nfs: Ensure we revalidate attributes before using execute_ok() (Steve Dickson) [1349668]
-- [fs] nfsv4: List stateid information in the callback tracepoints (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Don't return NFS4ERR_DELAY unnecessarily in CB_LAYOUTRECALL (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Ensure we enforce RFC5661 Section 12.5.5.2.1 (Steve Dickson) [1349668]
-- [fs] pnfs: If we have to delay the layout callback, mark the layout for return (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Add a helper to mark the layout as returned (Steve Dickson) [1349668]
-- [fs] pnfs: Ensure nfs4_layoutget_prepare returns the correct error (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Ensure we record layoutstats even if RPC is terminated early (Steve Dickson) [1349668]
-- [fs] pnfs: Add flag to track if we've called nfs4_ff_layout_stat_io_start_read/write (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix a statistics gathering imbalance (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Don't mark the entire layout as failed, when returning it (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: count io stat in rpc_count_stats callback (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: do not mark delay-like status as DS failure (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Support server-supplied layoutstats sampling period (Steve Dickson) [1349668]
-- [fs] nfs: Flush reclaim writes using FLUSH_COND_STABLE (Steve Dickson) [1349668]
-- [fs] nfs: Background flush should not be low priority (Steve Dickson) [1349668]
-- [fs] nfs: do not initialise statics to 0 (Steve Dickson) [1349668]
-- [fs] nfsv4: Fix unused variable warnings in nfs4_init_*_client_string() (Steve Dickson) [1349668]
-- [fs] Adding tracepoint to cached open (Steve Dickson) [1349668]
-- [fs] nfs: fix missing assignment in nfs4_sequence_done tracepoint (Steve Dickson) [1349668]
-- [fs] nfs42: handle layoutstats stateid error (Steve Dickson) [1349668]
-- [fs] sunrpc: set SOCK_FASYNC (Steve Dickson) [1349668]
-- [fs] sunrpc: init xdr_stream for zero iov_len, page_len (Steve Dickson) [1349668]
-- [fs] sunrpc/cache: fix off-by-one in qword_get() (Steve Dickson) [1349668]
-- [fs] sunrpc: Fix a missing break in rpc_anyaddr() (Steve Dickson) [1349668]
-- [fs] sunrpc: drop unused xs_reclassify_socketX() helpers (Steve Dickson) [1349668]
-
-* Thu Mar 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-613.el7]
-- [net] sctp: also copy sk_tsflags when copying the socket (Hangbin Liu) [1389283]
-- [net] timestamp: allow reading recv cmsg on errqueue with origin tstamp (Hangbin Liu) [1389283]
-- [net] timestamp: only report sw timestamp if reporting bit is set (Hangbin Liu) [1389283]
-- [net] timestamp: move timestamp flags out of sk_flags (Hangbin Liu) [1389283]
-- [net] timestamp: extend SCM_TIMESTAMPING ancillary data struct (Hangbin Liu) [1389283]
-- [net] Improve SO_TIMESTAMPING documentation and fix a minor code bug (Hangbin Liu) [1389283]
-- [net] ipv6: make IPV6_RECVPKTINFO work for ipv4 datagrams (Hangbin Liu) [1389283]
-- [net] ipv6: transp_v6.h: style neatening (Hangbin Liu) [1389283]
-- [net] ipv6: Clean up indentation in net/ipv6/transp_v6.h (Hangbin Liu) [1389283]
-- [net] tunnel: set inner protocol in network gro hooks (Paolo Abeni) [1427781]
-- [net] gro_cells: remove spinlock protecting receive queues (Jiri Benc) [1429597]
-- [netdrv] virtio-net: Update the mtu code to match virtio spec (Aaron Conole) [1412234]
-- [netdrv] virtio_net: Update the feature bit to comply with spec (Aaron Conole) [1412234]
-- [netdrv] virtio-net: Add initial MTU advice feature (Aaron Conole) [1412234]
-- [net] ipv6: Set skb->protocol properly for local output (Jakub Sitnicki) [1336001]
-- [net] ipv4: Set skb->protocol properly for local output (Jakub Sitnicki) [1336001]
-- [net] sit: fix a double free on error path (Jakub Sitnicki) [1336001]
-- [net] ipv6: pointer math error in ip6_tnl_parse_tlv_enc_lim() (Jakub Sitnicki) [1336001]
-- [net] ipv6: fix ip6_tnl_parse_tlv_enc_lim() (Jakub Sitnicki) [1336001]
-- [net] ip6_tunnel: must reload ipv6h in ip6ip6_tnl_xmit() (Jakub Sitnicki) [1336001]
-- [net] ip6_tunnel: Clear IP6CB in ip6tunnel_xmit() (Jakub Sitnicki) [1336001]
-- [net] ip6_tunnel: fix ip6_tnl_lookup (Jakub Sitnicki) [1336001]
-- [net] sit: correct IP protocol used in ipip6_err (Jakub Sitnicki) [1336001]
-- [net] tunnel: Clear IPCB(skb)->opt before dst_link_failure called (Jakub Sitnicki) [1336001]
-- [net] ip_tunnel: fix ipv4 pmtu check to honor inner ip header df (Jakub Sitnicki) [1336001]
-- [net] ipip: fix one sparse error (Jakub Sitnicki) [1336001]
-- [net] sit: fix some __be16/u16 mismatches (Jakub Sitnicki) [1336001]
-- [net] fou: Fix typo in returning flags in netlink (Jakub Sitnicki) [1336001]
-- [net] ipip, sit: fix ipv4_{update_pmtu,redirect} calls (Jakub Sitnicki) [1336001]
-- [net] openvswitch: add NETIF_F_HW_VLAN_STAG_TX to internal dev (Eric Garver) [1155732]
-- [net] openvswitch: fix vlan subtraction from packet length (Eric Garver) [1155732]
-- [net] openvswitch: vlan: remove wrong likely statement (Eric Garver) [1155732]
-- [net] openvswitch: 802.1AD Flow handling, actions, vlan parsing, netlink attributes (Eric Garver) [1155732]
-- [net] vlan: Check for vlan ethernet types for 8021.q or 802.1ad (Eric Garver) [1155732]
-- [net] fib_trie: Correct /proc/net/route off by one error (Hannes Frederic Sowa) [1426372]
-- [net] ipv4: panic in leaf_walk_rcu due to stale node pointer (Hannes Frederic Sowa) [1426372]
-- [net] documentation: ipv6: add documentation for stable_secret, idgen_delay and idgen_retries knobs (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: addrconf: always initialize sysctl table data (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: addrconf: use stable address generator for ARPHRD_NONE (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: automatically enable stable privacy mode if stable_secret set (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: fix sparse warnings in privacy stable addresses generation (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: introduce idgen_delay and idgen_retries knobs (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: do retries on stable privacy addresses (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: collapse state_lock and lock (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: introduce IFA_F_STABLE_PRIVACY flag (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: generation of stable privacy addresses for link-local and autoconf (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: introduce secret_stable to ipv6_devconf (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: remove unused function ipv6_inherit_linklocal() (Hannes Frederic Sowa) [1418812]
-- [net] tcp/dccp: avoid starving bh on connect (Paolo Abeni) [1401419]
-
-* Thu Mar 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-612.el7]
-- [hid] hid-wacom: rename driver and dont use it on already supported devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [lib] kobject: grab an extra reference on kobject->sd to allow duplicate deletes (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Update last_slot_field during pre_report phase (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - add touch_arbitration parameter to wacom module (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Augment oVid and oPid with heuristics for HID_GENERIC (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add WACOM_DEVICETYPE_DIRECT for Cintiqs and similar (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: power_supply: provide the actual model_name (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: power_supply: remove ac information (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: power_supply: mark the type as USB (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: attach the power_supply on first connection (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: have one power_supply per remote (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: allocate one input node per remote (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: have one array of struct remotes instead of many arrays (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: use devres groups to manage resources (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: have proper allocator and destructor (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: rework fail path in probe() and parse_and_register() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: have the wacom resources dynamically allocated (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: add a worker to add/remove resources on addition/removal (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: leds: dynamically allocate LED groups (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: devres manage the shared data too (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use devres to allocate driver data (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use devm_kasprintf for allocating the name of the remote (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: convert LEDs to devres (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: put the managed resources in a group (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: switch inputs to devres (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: switch battery to devres (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use one work queue per task (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: untie leds from inputs (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: remove cleanup of wacom->remote_dir from wacom_clean_inputs() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: store the type in wacom->shared for INTUOSHT and INTUOSHT2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: actually report the battery level for wireless connected (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: add missed stylus_in_proximity line back (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add fuzz factor to distance and tilt axes (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for DTK-1651 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Support switching from vendor-defined device mode on G9 and G11 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Initialize hid_data.inputmode to -1 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix Bamboo ONE oops (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: close the wireless receiver on remove() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: cleanup input devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: reuse wacom_parse_and_register() in wireless_work (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: move down wireless_work() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: break out parsing of device and registering of input (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: break out wacom_intuos_get_tool_type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Add quirks for INTUOSHT2 in range events (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Cleanup touch arbitration logic (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - make sure wacom_intuos_inout only process in/out events (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - request tool info only when we get general events (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Use correct report to query pen ID from INTUOSHT2 devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] use kobj_to_dev() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] use to_hid_device() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Fix pad button range for CINTIQ_COMPANION_2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Fix touchring value reporting (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report strip2 values in ABS_RY (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Limit touchstrip data to 13 bits (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: bitwise vs logical ORs (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Apply lowres quirk to BAMBOO_TOUCH devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Rename wacom ID report ID macros (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Clean up value reading (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Further clean up wacom_intuos_general packet decoder (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Replace magic masks and comparisons with switch cases (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Centralize Intuos pen packet decoding (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Slim down wacom_intuos_pad processing (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Move Intuos pad handling code into dedicated function (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Delete an unnecessary check before kobject_put() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fixup quirks setup for WACOM_DEVICETYPE_PAD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add outbounding area for DTU1141 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Call wacom_query_tablet_data only after hid_hw_start (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Fix ABS_MISC reporting for Cintiq Companion 2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Remove useless conditions from wacom_query_tablet_data (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix Intuos wireless report id issue (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Expect touch_max touches if HID_DG_CONTACTCOUNT not present (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Tie cached HID_DG_CONTACTCOUNT indices to report ID (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report full pressure range for Intuos, Cintiq 13HD Touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for Cintiq Companion 2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add four new Intuos devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Cleanup unsupported device_type for BAMBOO_PT (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: wacom_setup_numbered_buttons is local to wacom_wac (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for Express Key Remote (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Set button bits based on a new numbered_buttons (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Use tablet-provided touch height/width values for INTUOSHT (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Simplify wacom_pl_irq (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report correct device resolution when using the wireless adapater (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Do not repeatedly attempt to set device mode on error (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Remove WACOM_QUIRK_NO_INPUT (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Replace WACOM_QUIRK_MONITOR with WACOM_DEVICETYPE_WL_MONITOR (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Use calculated pkglen for wireless touch interface (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report touch width/height/orientation for GENERIC devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Ignore contacts in excess of declared contact count (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Perform all event processing as part of report processing (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Set default device name to value from wacom->features (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Properly free inputs if wacom_allocate_inputs fails (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: remove the extra Pen interface for Wacom Bamboo PAD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Delete unnecessary checks before the function call "input_free_device" (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Enable pad device for older Bamboo Touch tablets (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: NULL dereferences on error in probe() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Introduce new touch_input device (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Split apart wacom_setup_pentouch_input_capabilites (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Introduce a new WACOM_DEVICETYPE_PAD device_type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Treat features->device_type values as flags (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Simplify wacom_update_name (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Handle failing HID_DG_CONTACTMAX requests (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Have wacom_{get, set}_report retry on -EAGAIN, not -EPIPE (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix an Oops caused by wacom_wac_finger_count_touches (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Fail probe if HID_GENERIC device has unknown device_type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Discover device_type from HID descriptor for all devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Do not add suffix to name of devices with an unknown type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: retrieve name from HID descriptor for generic devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for DTU-1141 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Simplify check for presence of single-finger touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: remove unused packet lengths (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: move unit and unitExpo initialization to wacom_calculate_res (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: move all quirks to wacom_setup_device_quirks (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for Cintiq 13HD Touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: set stylus_in_proximity before checking touch_down (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use wacom_wac_finger_count_touches to set touch_down (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: remove hardcoded WACOM_QUIRK_MULTI_INPUT (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: check for wacom->shared before following the pointer (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ask for a in-prox report when it was missed (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add battery presence indicator to wireless tablets (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: drop WACOM_PKGLEN_STATUS (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Status packet provides charging, not powered bit (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report battery status for Intuos Pro and Intuos5 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Provide battery charge state to system over USB if available (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Allow dynamic battery creation/destruction (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Centralize updating of wacom_wac battery status (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Move handling of Intuos status packets to seperate function (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: rely on actual touch down count to decide touch_down (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: do not send pen events before touch is up/forced out (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: add full support of the Wacom Bamboo PAD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: store the hid_device pointers of the sibling devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for I2C connected devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: do not directly use input_mt_report_pointer_emulation (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add missing ABS_MISC event and feature declaration for 27QHD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [uapi] hid: wacom: add support for Cintiq 27QHD and 27QHD touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: consolidate input capability settings for pen and touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: make sure touch arbitration is applied consistently (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report ABS_MISC event for Cintiq Companion Hybrid (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: peport In Range event according to the spec (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: process invalid Cintiq and Intuos data in wacom_intuos_inout() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: add support of the Pen of the Bamboo Pad (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use WACOM_*_FIELD macros in wacom_usage_mapping() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report input events for each finger on generic devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Initialize MT slots for generic devices at post_parse_hid (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Update maximum X/Y accounding to outbound offset (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for DTU-1031X (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: add defines for new Cintiq and DTU outbound tracking (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Consult the application usage when determining field type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: PAD is independent with pen/touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add angular resolution data to some ABS axes (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report ABS_TILT_{X, Y} as signed values (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Bamboo pen-only tablet does not support PAD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Cleanup input_capabilities for Graphire 4 and Bamboo Fun (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - return ENODEV for failed wacom_setup_pad_input_capabilities (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for Intuos Pen Medium (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - make sure touch_input is valid before using it (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] make hid_report_len as a static inline function in hid.h (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix freeze on open when autosuspend is on (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: re-add accidentally dropped Lenovo PID (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: implement the finger part of the HID generic handling (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] hid: wacom: implement generic HID handling for pen generic devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: move allocation of inputs earlier (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: split out input allocation and registration (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: rename failN with some meaningful information (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix timeout on probe for some wacoms (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: make the WL connection friendly for the desktop (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - enable LED support for Wireless Intuos5/Pro (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - remove report_id from wacom_get_report interface (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Clean up of sysfs (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Add default permission defines for sysfs attributes (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for the Cintiq Companion (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - cleanup multitouch code when touch_max is 2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - fix compiler warning if !CONFIG_PM (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - only register once the MODULE_* macros (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - add copyright note and bump version to 2.0 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - remove passing id for wacom_set_report (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - check for bluetooth protocol while setting OLEDs (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: HID - remove hid-wacom Bluetooth driver (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - handle Intuos 4 BT in wacom.ko (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - handle Graphire BT tablets in wacom.ko (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - prepare the driver to include BT devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - add support for 0x12C ISDv4 sensor (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - register an ac power supply for wireless devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - use a uniq name for the battery device (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - enhance Wireless Receiver battery reporting (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - put a flag when the led are initialized (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - support up to 2048 pressure levels with ISDv4 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - move the USB (now hid) Wacom driver in drivers/hid (Aristeu Rozanski) [1346348 1388646 1385026]
-- [uapi] input: add SW_MUTE_DEVICE switch definition (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] input: wacom - switch from an USB driver to a HID driver (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] power_supply core: support use of devres to register/unregister a power supply (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] power_supply: allow power supply devices registered w/o wakeup source (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] power_supply: Prevent suspend until power supply events are processed (Aristeu Rozanski) [1346348 1388646 1385026]
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-611.el7]
-- [fs] ext4: fix NULL pointer dereference in ext4_mark_inode_dirty() (Lukas Czerner) [1429223]
-- [fs] ext4: reject inodes with negative size (Lukas Czerner) [1429223]
-- [fs] ext4: return EROFS if device is r/o and journal replay is needed (Lukas Czerner) [1429223]
-- [fs] ext4: preserve the needs_recovery flag when the journal is aborted (Lukas Czerner) [1429223]
-- [fs] jbd2: don't leak modified metadata buffers on an aborted journal (Lukas Czerner) [1429223]
-- [fs] ext4: trim allocation requests to group size (Lukas Czerner) [1429223]
-- [fs] ext4: return -ENOMEM instead of success (Lukas Czerner) [1429223]
-- [fs] ext4: add sanity checking to count_overhead() (Lukas Czerner) [1429223]
-- [fs] ext4: use more strict checks for inodes_per_block on mount (Lukas Czerner) [1429223]
-- [fs] ext4: fix in-superblock mount options processing (Lukas Czerner) [1429223]
-- [fs] ext4: fix stack memory corruption with 64k block size (Lukas Czerner) [1429223]
-- [fs] ext4: fix mballoc breakage with 64k block size (Lukas Czerner) [1429223]
-- [fs] ext4: release bh in make_indexed_dir (Lukas Czerner) [1429223]
-- [fs] ext4: bugfix for mmaped pages in mpage_release_unused_pages() (Lukas Czerner) [1429223]
-- [fs] ext4: reinforce check of i_dtime when clearing high fields of uid and gid (Lukas Czerner) [1429223]
-- [fs] ext4: avoid deadlock when expanding inode size (Lukas Czerner) [1429223]
-- [fs] ext4: properly align shifted xattrs when expanding inodes (Lukas Czerner) [1429223]
-- [fs] ext4: fix xattr shifting when expanding inodes part 2 (Lukas Czerner) [1429223]
-- [fs] ext4: fix xattr shifting when expanding inodes (Lukas Czerner) [1429223]
-- [fs] ext4: validate that metadata blocks do not overlap superblock (Lukas Czerner) [1429223]
-- [fs] ext4: short-cut orphan cleanup on error (Lukas Czerner) [1429223]
-- [fs] ext4: fix reference counting bug on block allocation error (Lukas Czerner) [1429223]
-- [fs] ext4: validate s_reserved_gdt_blocks on mount (Lukas Czerner) [1429223]
-- [fs] ext4: don't call ext4_should_journal_data() on the journal inode (Lukas Czerner) [1429223]
-- [fs] ext4: check for extents that wrap around (Lukas Czerner) [1429223]
-- [fs] ext4: silence UBSAN in ext4_mb_init() (Lukas Czerner) [1429223]
-- [fs] ext4: address UBSAN warning in mb_find_order_for_block() (Lukas Czerner) [1429223]
-- [fs] ext4: fix oops on corrupted filesystem (Lukas Czerner) [1429223]
-- [fs] ext4: fix hang when processing corrupted orphaned inode list (Lukas Czerner) [1429223]
-- [fs] ext4: add lockdep annotations for i_data_sem (Lukas Czerner) [1429223]
-- [fs] jbd2: fix FS corruption possibility in jbd2_journal_destroy() on umount path (Lukas Czerner) [1429223]
-- [fs] ext4: iterate over buffer heads correctly in move_extent_per_page() (Lukas Czerner) [1429223]
-- [fs] ext4: don't read blocks from disk after extents being swapped (Lukas Czerner) [1429223]
-- [fs] jbd2: Fix unreclaimed pages after truncate in data=journal mode (Lukas Czerner) [1429223]
-- [fs] ext4, jbd2: ensure entering into panic after recording an error in superblock (Lukas Czerner) [1429223]
-- [fs] fix calculation of meta_bg descriptor backups (Lukas Czerner) [1429223]
-- [fs] ext4: replace open coded nofail allocation in ext4_free_blocks() (Lukas Czerner) [1429223]
-- [fs] ext4: don't retry file block mapping on bigalloc fs with non-extent file (Lukas Czerner) [1429223]
-- [fs] jbd2: fix ocfs2 corrupt when updating journal superblock fails (Lukas Czerner) [1429223]
-- [fs] jbd2: use GFP_NOFS in jbd2_cleanup_journal_tail() (Lukas Czerner) [1429223]
-- [fs] jbd2: fix r_count overflows leading to buffer overflow in journal recovery (Lukas Czerner) [1429223]
-- [fs] ext4: move check under lock scope to close a race (Lukas Czerner) [1429223]
-- [fs] ext4: Define EFSCORRUPTED error value (Lukas Czerner) [1429223]
-- [fs] ext4: fix deadlock during page writeback (Lukas Czerner) [1321523]
-- [fs] ext4: fix data exposure after a crash (Lukas Czerner) [1321523]
-- [fs] ext4: fix fencepost in s_first_meta_bg validation (Lukas Czerner) [1332503] {CVE-2016-10208}
-- [fs] ext4: sanity check the block and cluster size at mount time (Lukas Czerner) [1332503] {CVE-2016-10208}
-- [fs] ext4: validate s_first_meta_bg at mount time (Lukas Czerner) [1332503] {CVE-2016-10208}
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-610.el7]
-- [kernel] audit: Fix sleep in atomic (Paul Moore) [1410862]
-- [uio] uio-hv-generic: mark as Tech Preview (Vitaly Kuznetsov) [1396534]
-- [uio] uio-hv-generic: store physical addresses instead of virtual (Vitaly Kuznetsov) [1396534]
-- [documentation] doc: add documentation for uio-hv-generic (Vitaly Kuznetsov) [1396534]
-- [uio] uio-hv-generic: new userspace i/o driver for VMBus (Vitaly Kuznetsov) [1396534]
-- [kernel] vmbus: add support for dynamic device id's (Vitaly Kuznetsov) [1396534]
-- [kernel] hv: vmbus: add a hvsock flag in struct hv_driver (Vitaly Kuznetsov) [1396534]
-- [scsi] cxlflash: Cancel scheduled workers before stopping AFU (Gustavo Duarte) [1427396]
-- [vfio] Replace module request with softdep (Alex Williamson) [1420572]
-- [vfio] mdev: Use a module softdep for vfio_mdev (Alex Williamson) [1420572]
-- [x86] kvm: x86: bump KVM_SOFT_MAX_VCPUS to 288 (Radim Krcmar) [1388961]
-- [x86] kvm: x86: allow hotplug of VCPU with APIC ID over 0xff (Radim Krcmar) [1388961]
-- [x86] kvm: x86: make interrupt delivery fast and slow path behave the same (Radim Krcmar) [1388961]
-- [x86] kvm: x86: replace kvm_apic_id with kvm_{x, x2}apic_id (Radim Krcmar) [1388961]
-- [x86] pci: vmd: Synchronize with RCU freeing MSI IRQ descs (Myron Stowe) [1388664]
-- [x86] pci: vmd: Fix infinite loop executing irq's (Myron Stowe) [1388664]
-- [x86] pci: vmd: Initialize list item in IRQ disable (Myron Stowe) [1388688]
-- [pci] Allow additional bus numbers for hotplug bridges (Myron Stowe) [1388688]
-- [x86] pci/vmd: Use untracked irq handler (Myron Stowe) [1388688]
-- [kernel] genirq: Add untracked irq handler (Myron Stowe) [1388688]
-- [x86] pci: Retrofit Intel Volume Management Device (VMD) driver (Myron Stowe) [1388688]
-- [x86] pci: Allow DMA ops specific to a PCI domain (Myron Stowe) [1388688]
-- [x86] kvm/page_track: export symbols for external usage (Paul Lai) [1380113]
-- [x86] kvm/page_track: call notifiers with kvm_page_track_notifier_node (Paul Lai) [1380113]
-- [x86] kvm: x86: add track_flush_slot page track notifier (Paul Lai) [1380113]
-- [x86] kvm: mtrr: fix kvm_mtrr_check_gfn_range_consistency page fault (Paul Lai) [1380113]
-- [x86] kvm: mtrr: remove MSR 0x2f8 (Paul Lai) [1380113] {CVE-2016-3713}
-- [x86] kvm: page_track: fix access to NULL slot (Paul Lai) [1380113]
-- [x86] kvm: mmu: apply page track notifier (Paul Lai) [1380113]
-- [x86] kvm: mmu: simplify mmu_need_write_protect (Paul Lai) [1380113]
-- [x86] kvm: mmu: use page track for non-leaf shadow pages (Paul Lai) [1380113]
-- [x86] kvm: page track: add notifier support (Paul Lai) [1380113]
-- [x86] kvm: mmu: clear write-flooding on the fast path of tracked page (Paul Lai) [1380113]
-- [x86] kvm: mmu: let page fault handler be aware tracked page (Paul Lai) [1380113]
-- [x86] kvm: page track: introduce kvm_slot_page_track_{add, remove}_page (Paul Lai) [1380113]
-- [x86] kvm: page track: add the framework of guest page tracking (Paul Lai) [1380113]
-- [x86] kvm: mmu: introduce kvm_mmu_slot_gfn_write_protect (Paul Lai) [1380113]
-- [x86] kvm: mmu: introduce kvm_mmu_gfn_{allow, disallow}_lpage (Paul Lai) [1380113]
-- [x86] kvm: mmu: rename has_wrprotected_page to mmu_gfn_lpage_is_disallowed (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Move handle_mmio_page_fault() call to kvm_mmu_page_fault() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Consolidate quickly_check_mmio_pf() and is_mmio_page_fault() (Paul Lai) [1380113]
-- [x86] kvm: mtrr: treat memory as writeback if MTRR is disabled in guest CPUID (Paul Lai) [1380113]
-- [x86] kvm: mtrr: observe maxphyaddr from guest CPUID, not host (Paul Lai) [1380113]
-- [x86] kvm: mtrr: fix fixed MTRR segment look up (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Encapsulate the type of rmap-chain head in a new struct (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Eliminate an extra memory slot search in mapping_level() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Remove mapping_level_dirty_bitmap() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Move mapping_level_dirty_bitmap() call in mapping_level() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Simplify force_pt_level calculation code in FNAME(page_fault)() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Make force_pt_level bool (Paul Lai) [1380113]
-- [x86] kvm: mtrr: Use default type for non-MTRR-covered gfn before WARN_ON (Paul Lai) [1380113]
-- [x86] kvm: mtrr: simplify kvm_mtrr_get_guest_memory_type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: fix memory type handling if MTRR is completely disabled (Paul Lai) [1380113]
-- [x86] kvm: mtrr: do not map huge page for non-consistent range (Paul Lai) [1380113]
-- [x86] kvm: mtrr: simplify kvm_mtrr_get_guest_memory_type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: introduce mtrr_for_each_mem_type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: introduce fixed_mtrr_addr_* functions (Paul Lai) [1380113]
-- [x86] kvm: mtrr: sort variable MTRRs (Paul Lai) [1380113]
-- [x86] kvm: mtrr: introduce var_mtrr_range (Paul Lai) [1380113]
-- [x86] kvm: mtrr: introduce fixed_mtrr_segment table (Paul Lai) [1380113]
-- [x86] kvm: mtrr: improve kvm_mtrr_get_guest_memory_type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: do not split 64 bits MSR content (Paul Lai) [1380113]
-- [x86] kvm: mtrr: clean up mtrr default type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: remove mtrr_state.have_fixed (Paul Lai) [1380113]
-- [x86] kvm: mtrr: handle MSR_MTRRcap in kvm_mtrr_get_msr (Paul Lai) [1380113]
-- [x86] kvm: x86: move MTRR related code to a separate file (Paul Lai) [1380113]
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-609.el7]
-- [md] dm cache: significant rework to leverage dm-bio-prison-v2 (Mike Snitzer) [1430028]
-- [md] dm bio prison v2: new interface for the bio prison (Mike Snitzer) [1430028]
-- [md] dm: flush queued bios when process blocks to avoid deadlock (Mike Snitzer) [1430028]
-- [md] dm stats: fix a leaked s->histogram_boundaries array (Mike Snitzer) [1430028]
-- [md] dm space map metadata: constify dm_space_map structures (Mike Snitzer) [1430028]
-- [md] dm cache metadata: use cursor api in blocks_are_clean_separate_dirty() (Mike Snitzer) [1430028]
-- [md] dm persistent data: add cursor skip functions to the cursor APIs (Mike Snitzer) [1430028]
-- [md] dm cache metadata: use dm_bitset_new() to create the dirty bitset in format 2 (Mike Snitzer) [1430028]
-- [md] dm bitset: add dm_bitset_new() (Mike Snitzer) [1430028]
-- [md] dm cache metadata: name the cache block that couldn't be loaded (Mike Snitzer) [1430028]
-- [md] dm cache metadata: add "metadata2" feature (Mike Snitzer) [1430028]
-- [md] dm cache metadata: use bitset cursor api to load discard bitset (Mike Snitzer) [1430028]
-- [md] dm bitset: introduce cursor api (Mike Snitzer) [1430028]
-- [md] dm btree: use GFP_NOFS in dm_btree_del() (Mike Snitzer) [1430028]
-- [md] dm space map common: memcpy the disk root to ensure it's arch aligned (Mike Snitzer) [1430028]
-- [md] dm block manager: add unlikely() annotations on dm_bufio error paths (Mike Snitzer) [1430028]
-- [md] dm cache: fix corruption seen when using cache > 2TB (Mike Snitzer) [1430028]
-- [md] dm raid: bump the target version (Mike Snitzer) [1430028]
-- [md] dm raid: fix data corruption on reshape request (Mike Snitzer) [1430028]
-- [md] dm raid: fix raid "check" regression due to improper cleanup in raid_message() (Mike Snitzer) [1430028]
-- [md] dm raid: cleanup awkward branching in raid_message() option processing (Mike Snitzer) [1430028]
-- [md] dm raid: use mddev rather than rdev->mddev (Mike Snitzer) [1430028]
-- [md] dm raid: use read_disk_sb() throughout (Mike Snitzer) [1430028]
-- [md] dm raid: add raid4/5/6 journaling support (Mike Snitzer) [1430028]
-- [md] dm raid: be prepared to accept arbitrary '- -' tuples (Mike Snitzer) [1430028]
-- [md] dm raid: fix transient device failure processing (Mike Snitzer) [1430028]
-- [md] dm mpath: cleanup -Wbool-operation warning in choose_pgpath() (Mike Snitzer) [1430028]
-- [powerpc] pseries: Advertise HPT resizing support via CAS (David Gibson) [1305399]
-- [kernel] rh_kabi: Provide better error messages for size and align checks (Prarit Bhargava) [1425864]
-- [kernel] sched: Move p->nr_cpus_allowed check to select_task_rq() (Lauro Ramos Venancio) [1428028]
-- [char] random: printk notifications for urandom pool initialization (Herbert Xu) [1298643]
-- [acpi] acpica: utilities: Fix local printf issue (Prarit Bhargava) [1430397]
-- [block] relax check on sg gap (Cathy Avery) [1413656]
-- [block] check virt boundary in bio_will_gap() (Cathy Avery) [1413656]
-- [block] Check for gaps on front and back merges (Cathy Avery) [1413656]
-- [block] blk-mq: Avoid memory reclaim when remapping queues (Gustavo Duarte) [1356663]
-- [block] block: kmemleak: Track the page allocations for struct request (Gustavo Duarte) [1356663]
-- [block] blk-mq: Fix failed allocation path when mapping queues (Gustavo Duarte) [1356663]
-- [block] blk-mq: Always schedule hctx->next_cpu (Gustavo Duarte) [1356663]
-- [block] fix use-after-free in seq file (Denys Vlasenko) [1418551] {CVE-2016-7910}
-- [netdrv] ixgbe: Update driver version for RHEL 7.4 (Ken Cox) [1383524]
-- [netdrv] libcxgb: fix error check for ip6_route_output() (Sai Vemuri) [1385866]
-- [netdrv] libcxgb: remove unused including <linux/version.h> (Sai Vemuri) [1385866]
-- [target] libcxgb: export ppm release and tagmask set api (Sai Vemuri) [1385866]
-- [scsi] libcxgbi: return error if interface is not up (Sai Vemuri) [1385866]
-- [scsi] cxgb4i: libcxgbi: add missing module_put() (Sai Vemuri) [1385866]
-- [scsi] cxgb4i: Add a missing call to neigh_release (Sai Vemuri) [1385866]
-- [scsi] libcxgbi: fix incorrect DDP resource cleanup (Sai Vemuri) [1385866]
-- [scsi] cxgb4i: Set completion bit in work request (Sai Vemuri) [1385866]
-- [scsi] cxgb3i, cxgb4i: fix symbol not declared sparse warning (Sai Vemuri) [1385866]
-- [scsi] cxgb3i: add iSCSI DDP support (Sai Vemuri) [1385866]
-- [scsi] cxgb4i,libcxgbi: add iSCSI DDP support (Sai Vemuri) [1385866]
-- [scsi] cxgb3i, cxgb4i, libcxgbi: remove iSCSI DDP support (Sai Vemuri) [1385866]
-- [iscsi] iscsi-target: fix iscsi cmd leak (Sai Vemuri) [1429179]
-- [iscsi] target/iscsi: Fix unsolicited data seq_end_offset calculation (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: add T6 iSCSI DDP completion feature (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: Enable DDP for T6 only if data sequence and pdu are in order (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: Use T6 specific macros to get ETH/IP hdr len (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: use cxgb4_tp_smt_idx() to get smt idx (Sai Vemuri) [1429179]
-- [iscsi] target/iscsi: split iscsit_check_dataout_hdr() (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: Use T6 specific macro to set the force bit (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: Fix endianness annotations (Sai Vemuri) [1429179]
-- [netdrv] cxgb4: Implement ndo_get_phys_port_id for mgmt dev (Sai Vemuri) [1138664]
-- [netdrv] cxgb4: Initialize mbox lock and list for mgmt dev (Sai Vemuri) [1138664]
-- [netdrv] cxgb4: Synchronize access to mailbox (Sai Vemuri) [1138664]
-- [netdrv] cxgb4: Add port description for new cards (Sai Vemuri) [1416916]
-- [netdrv] cxgb4/cxgb4vf: Display 25G and 100G link speed (Sai Vemuri) [1416916]
-- [infiniband] iw_cxgb4: set correct FetchBurstMax for QPs (Sai Vemuri) [1416910]
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-608.el7]
-- [char] tpm: Only call pm_runtime_get_sync if device has a parent (Jerry Snitselaar) [1402539]
-- [char] tmp/tpm_crb: implement runtime pm for tpm_crb (Jerry Snitselaar) [1402539]
-- [char] tpm/tpm_crb: open code the crb_init into acpi_add (Jerry Snitselaar) [1402539]
-- [char] tmp/tpm_crb: fix Intel PTT hw bug during idle state (Jerry Snitselaar) [1402539]
-- [char] tpm/tpm_crb: implement tpm crb idle state (Jerry Snitselaar) [1402539]
-- [char] tpm_tis: fix the error handling of init_tis() (Jerry Snitselaar) [1383554]
-- [char] tpm: remove invalid min length check from tpm_do_selftest() (Jerry Snitselaar) [1383554]
-- [char] tpm: add check for minimum buffer size in tpm_transmit() (Jerry Snitselaar) [1383554]
-- [char] tpm: constify TPM 1.x header structures (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_crb: fix the over 80 characters checkpatch warring (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_crb: drop useless cpu_to_le32 when writing to registers (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_crb: cache cmd_size register value (Jerry Snitselaar) [1383554]
-- [char] tmp/tpm_crb: drop include to platform_device (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_tis: remove unused itpm variable (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: fix incorrect values of cmdReady and goIdle bits (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: refine the naming of constants (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: remove wmb()'s (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: fix crb_req_canceled behavior (Jerry Snitselaar) [1383554]
-- [char] tpm: use tpm_pcr_read_dev() in tpm_do_selftest() (Jerry Snitselaar) [1383554]
-- [char] tpm: use tpm_transmit_cmd() in tpm2_probe() (Jerry Snitselaar) [1383554]
-- [char] tpm: replace tpm_gen_interrupt() with tpm_tis_gen_interrupt() (Jerry Snitselaar) [1383554]
-- [char] tpm: remove unnecessary externs from tpm.h (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Remove useless tpm_gen_interrupt (Jerry Snitselaar) [1383554]
-- [char] tpm: fix a race condition in tpm2_unseal_trusted() (Jerry Snitselaar) [1383554]
-- [char] tpm: invalid self test error message (Jerry Snitselaar) [1383554]
-- [char] tpm: Add TPM 2.0 support to the Nuvoton i2c driver (NPCT6xx family) (Jerry Snitselaar) [1383554]
-- [char] tpm: Factor out common startup code (Jerry Snitselaar) [1383554]
-- [char] tpm: use devm_add_action_or_reset (Jerry Snitselaar) [1383554]
-- [char] tpm2_i2c_nuvoton: add irq validity check (Jerry Snitselaar) [1383554]
-- [char] tpm: read burstcount from TPM_STS in one 32-bit transaction (Jerry Snitselaar) [1383554]
-- [char] tpm: fix byte-order for the value read by tpm2_get_tpm_pt (Jerry Snitselaar) [1383554]
-- [char] tpm_tis_core: convert max timeouts from msec to jiffies (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: fix address space of the return pointer in crb_map_res() (Jerry Snitselaar) [1383554]
-- [char] tpm_vtpm_proxy: fix address space of a user pointer in vtpmx_fops_ioctl() (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_tis_spi: Add support for spi phy (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_tis: Split tpm_tis driver into a core and TCG TIS compliant phy (Jerry Snitselaar) [1383554]
-- [char] tpm_tis: Introduce intermediate layer for TPM access (Jerry Snitselaar) [1383554]
-- [char] tpm: tpm_tis: Share common data between phys (Jerry Snitselaar) [1383554]
-- [char] tpm: Add include guards in tpm.h (Jerry Snitselaar) [1383554]
-- [char] tpm: Fix suspend regression (Jerry Snitselaar) [1383554]
-- [char] tpm: fix for typo in tpm/tpm_ibmvtpm.c (Jerry Snitselaar) [1383554]
-- [char] tpm: select ANON_INODES for proxy driver (Jerry Snitselaar) [1383554]
-- [char] tpm: Fix IRQ unwind ordering in TIS (Jerry Snitselaar) [1383554]
-- [char] tpm: Proxy driver for supporting multiple emulated TPMs (Jerry Snitselaar) [1383554]
-- [char] tpm: Introduce TPM_CHIP_FLAG_VIRTUAL (Jerry Snitselaar) [1383554]
-- [char] tpm: Remove all uses of drvdata from the TPM Core (Jerry Snitselaar) [1383554]
-- [char] tpm: Remove useless priv field in struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: Move tpm_vendor_specific data related with PTP specification to tpm_chip (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'locality' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'read_queue' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'irq' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'iobase' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop list from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop the field 'time_expired' from struct tpm_chip (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'base' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop manufacturer_id from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop tpm_atmel specific fields from tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop int_queue from tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: check for TPM_CHIP_FLAG_TPM2 before calling tpm2_shutdown() (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Remove unneeded tpm_reg in get_burstcount (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Drop two useless checks in ACPI probe path (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/i2c: Drop two useless checks in ACPI probe path (Jerry Snitselaar) [1383554]
-- [char] tpm: fix crash in tpm_tis deinitialization (Jerry Snitselaar) [1383554]
-- [char] tpm: cleanup tpm_tis_remove() (Jerry Snitselaar) [1383554]
-- [char] tpm: fix tpm_bios_log_setup stub prototype (Jerry Snitselaar) [1383554]
-- [char] tpm: Replace device number bitmap with IDR (Jerry Snitselaar) [1383554]
-- [char] tpm: Split out the devm stuff from tpmm_chip_alloc (Jerry Snitselaar) [1383554]
-- [char] tpm: Get rid of module locking (Jerry Snitselaar) [1383554]
-- [char] tpm: Provide strong locking for device removal (Jerry Snitselaar) [1383554]
-- [char] tpm: Get rid of devname (Jerry Snitselaar) [1383554]
-- [char] tpm: Get rid of chip->pdev (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Change xxx_request_resources header (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/i2c: Change xxx_request_resources header (Jerry Snitselaar) [1383554]
-- [char] tpm: st33zp24: Add support for acpi probing for spi device (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Add support for acpi probing for i2c device (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Extend Copyright headers (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Improve st33zp24_spi_evaluate_latency (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Auto-select core module (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Remove unneeded CONFIG_OF switches (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Remove field spi_xfer from st33zp24_spi_phy structure (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Remove useless use of memcpy (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Use functions name with st33zp24_spi_ prefix (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Remove nbr_dummy_bytes variable usage (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Add missing device table for spi phy (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Add st33zp24 spi phy (Jerry Snitselaar) [1383554]
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-607.el7]
-- [net] sched: respect rcu grace period on cls destruction (Ivan Vecera) [1420506]
-- [net] sched: cls_cgroup tear down exts and ematch from rcu callback (Ivan Vecera) [1420506]
-- [net] sched: act_mirred: fix a race condition on mirred_list (Ivan Vecera) [1420506]
-- [net] sched: cls_flow: fix panic on filter replace (Ivan Vecera) [1420506]
-- [net] sched: cls_bpf: fix panic on filter replace (Ivan Vecera) [1420506]
-- [net] sched: fix call_rcu() race on classifier module unloads (Ivan Vecera) [1420506]
-- [net] sched: fix struct tc_u_hnode layout in u32 (Ivan Vecera) [1420506]
-- [net] sched: fix suspicious rcu_dereference_check in net/sched/sch_fq_codel.c (Ivan Vecera) [1420506]
-- [net] sched: fix another regression in cls_tcindex (Ivan Vecera) [1420506]
-- [net] sched: cls_cgroup need tcf_exts_init in all cases (Ivan Vecera) [1420506]
-- [net] sched: cls_u32: fix unsued cpu variable (Ivan Vecera) [1420506]
-- [net] sched: cls_fw: add missing tcf_exts_init call in fw_change() (Ivan Vecera) [1420506]
-- [net] sched: fix a null pointer dereference in tcindex_set_parms() (Ivan Vecera) [1420506]
-- [net] sched: fix memory leak in cls_tcindex (Ivan Vecera) [1420506]
-- [net] sched: use tcindex_filter_result_init() (Ivan Vecera) [1420506]
-- [net] sched: fix suspicious RCU usage in tcindex_classify() (Ivan Vecera) [1420506]
-- [net] sched: fix an allocation bug in tcindex_set_parms() (Ivan Vecera) [1420506]
-- [net] sched: fix suspicious RCU usage in cls_bpf_classify() (Ivan Vecera) [1420506]
-- [net] sched: suspicious RCU usage in qdisc_watchdog (Ivan Vecera) [1420506]
-- [net] sched: cls_cgroup fix possible memory leak of 'new' (Ivan Vecera) [1420506]
-- [net] sched: fix error return code in fw_change_attrs() (Ivan Vecera) [1420506]
-- [net] sched: rcu'ify cls_bpf (Ivan Vecera) [1420506]
-- [net] sched: rcu'ify cls_rsvp (Ivan Vecera) [1420506]
-- [net] sched: make cls_u32 lockless (Ivan Vecera) [1420506]
-- [net] sched: avoid generating same handle for u32 filters (Ivan Vecera) [1420506]
-- [net] sched: change "foo* bar" to "foo *bar" (Ivan Vecera) [1420506]
-- [net] sched: make cls_u32 per cpu (Ivan Vecera) [1420506]
-- [net] sched: RCU cls_tcindex (Ivan Vecera) [1420506]
-- [net] sched: RCU cls_route (Ivan Vecera) [1420506]
-- [net] sched: fw use RCU (Ivan Vecera) [1420506]
-- [net] sched: cls_flow use RCU (Ivan Vecera) [1420506]
-- [net] sched: cls_cgroup use RCU (Ivan Vecera) [1420506]
-- [net] sched: cls_basic use RCU (Ivan Vecera) [1420506]
-- [net] sched: rcu-ify tcf_proto (Ivan Vecera) [1420506]
-- [net] sched: qdisc: use rcu prefix and silence sparse warnings (Ivan Vecera) [1420506]
-- [net] sched: use no more than one page in struct fw_head (Ivan Vecera) [1420506]
-- [net] sched: optimize tcf_match_indev() (Ivan Vecera) [1420506]
-- [net] sched: add struct net pointer to tcf_proto_ops->dump (Ivan Vecera) [1420506]
-- [net] sched: Fix dumping of non-existing actions' stats (Ivan Vecera) [1420506]
-- [net] sched: copy exts->type in tcf_exts_change() (Ivan Vecera) [1420506]
-- [net] sched: fix an oops in tcindex filter (Ivan Vecera) [1420506]
-- [net] sched: act: allow to clear all actions as well (Ivan Vecera) [1420506]
-- [net] sched: cls: check if we could overwrite actions when changing a filter (Ivan Vecera) [1420506]
-- [net] sched: sch_htb: let skb->priority refer to non-leaf class (Ivan Vecera) [1420506]
-- [net] sched: avoid casting void pointer (Ivan Vecera) [1420506]
-- [net] sched: fix regression in tc_action_ops (Ivan Vecera) [1420506]
-- [net] sched: fix a regression in tcf_proto_lookup_ops() (Ivan Vecera) [1420506]
-- [net] sched: fix a regression in tc actions (Ivan Vecera) [1420506]
-- [net] sched: convert tcf_proto_ops to use struct list_head (Ivan Vecera) [1420506]
-- [net] sched: convert tc_action_ops to use struct list_head (Ivan Vecera) [1420506]
-- [net] sched: convert tcf_hashinfo to hlist and use spinlock (Ivan Vecera) [1420506]
-- [net] sched: init struct tcf_hashinfo at register time (Ivan Vecera) [1420506]
-- [net] sched: cls: refactor out struct tcf_ext_map (Ivan Vecera) [1420506]
-- [net] sched: act: use standard struct list_head (Ivan Vecera) [1420506]
-- [net] sched: remove get_stats from tc_action_ops (Ivan Vecera) [1420506]
-- [net] sched: Use default action walker methods (Ivan Vecera) [1420506]
-- [net] sched: Provide default walker function for actions (Ivan Vecera) [1420506]
-- [net] sched: Use default action lookup functions (Ivan Vecera) [1420506]
-- [net] sched: Default action lookup method for actions (Ivan Vecera) [1420506]
-- [net] sched: Fail if missing mandatory action operation methods (Ivan Vecera) [1420506]
-
-* Tue Mar 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-606.el7]
-- [misc] mei: bus: enable OS version only for SPT and newer (Jerry Snitselaar) [1404064]
-- [misc] mei: send OS type to the FW (Jerry Snitselaar) [1404064]
-- [misc] mei: enable to set the internal flag for client write (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: use module_mei_cl_driver macro (Jerry Snitselaar) [1404064]
-- [kernel] mei: bus: add module_mei_cl_driver helper macro (Jerry Snitselaar) [1404064]
-- [nfc] mei: bus: fix received data size check in NFC fixup (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: demote error to debug level upon disconnect (Jerry Snitselaar) [1404064]
-- [misc] mei: show the HBM protocol versions in the device attributes (Jerry Snitselaar) [1404064]
-- [documentation] mei: add ABI documentation for fw_status exported through sysfs (Jerry Snitselaar) [1404064]
-- [documentation] mei: sysfs: add Documentation mei class attributes (Jerry Snitselaar) [1404064]
-- [misc] mei: txe: don't clean an unprocessed interrupt cause (Jerry Snitselaar) [1404064]
-- [misc] mei: stop the stall timer worker if not needed (Jerry Snitselaar) [1404064]
-- [misc] mei: me: add kaby point device ids (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: fix deadlock in initialization during a reset (Jerry Snitselaar) [1404064]
-- [misc] mei: drop unused file transaction states (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop mei_amthif_read (Jerry Snitselaar) [1404064]
-- [misc] mei: enqueue consecutive reads (Jerry Snitselaar) [1404064]
-- [misc] mei: add wrapper for queuing control commands (Jerry Snitselaar) [1404064]
-- [misc] mei: use consistent naming for TX control flow credits (Jerry Snitselaar) [1404064]
-- [misc] mei: rx flow control counter (Jerry Snitselaar) [1404064]
-- [misc] mei: prepare read cb for fixed address clients on the receive path only (Jerry Snitselaar) [1404064]
-- [misc] mei: drop redundant krealloc and checks in irq read (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop mei_clear_lists function (Jerry Snitselaar) [1404064]
-- [misc] mei: add read callback on demand for fixed_address clients (Jerry Snitselaar) [1404064]
-- [misc] mei: add file pointer to the host client structure (Jerry Snitselaar) [1404064]
-- [misc] mei: move read cb to complete queue if not connected (Jerry Snitselaar) [1404064]
-- [misc] mei: fix return value on disconnection (Jerry Snitselaar) [1404064]
-- [misc] mei: drop read complete queue emptiness check (Jerry Snitselaar) [1404064]
-- [misc] mei: hbm: add missing argument in the kdoc (Jerry Snitselaar) [1404064]
-- [misc] mei: recover after errors in runtime pm flow (Jerry Snitselaar) [1404064]
-- [misc] mei: drop mei_io_cb_alloc_buf (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: use mei_cl_alloc_cb for allocating cbs (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop mei_amthif_send_cmd (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: enable poll for async events (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop iamthif_current_cb (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: fix request cancel (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop READ_COMPLETE state (Jerry Snitselaar) [1404064]
-- [misc] mei: don't use wake_up_interruptible for wr_ctrl (Jerry Snitselaar) [1404064]
-- [misc] mei: drop wr_msg from the mei_dev structure (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: call mei_cl_read_start under device lock (Jerry Snitselaar) [1404064]
-- [misc] mei: fix waiting for wr_ctrl for corner cases (Jerry Snitselaar) [1404064]
-- [misc] mei: don't clean control queues on notify request timeout (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: discard not read messages (Jerry Snitselaar) [1404064]
-- [misc] mei: fix NULL dereferencing during FW initiated disconnection (Jerry Snitselaar) [1404064]
-- [misc] mei: drop global me_client_index (Jerry Snitselaar) [1404064]
-- [misc] mei: do not pin module if cldrv->probe() failed (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: use scnprintf in *_show (Jerry Snitselaar) [1404064]
-- [misc] mei: me: add broxton pci device ids (Jerry Snitselaar) [1404064]
-- [misc] mei: fix format string in debug prints (Jerry Snitselaar) [1404064]
-- [misc] mei: fix double freeing of a cb during link reset (Jerry Snitselaar) [1404064]
-- [misc] mei: split amthif client init from end of clients enumeration (Jerry Snitselaar) [1404064]
-- [misc] mei: hbm: send immediate reply flag in enum request (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: run rescan on me_clients list change (Jerry Snitselaar) [1404064]
-- [misc] mei: drop reserved host client ids (Jerry Snitselaar) [1404064]
-- [misc] mei: hbm: warn about fw-initiated disconnect (Jerry Snitselaar) [1404064]
-- [misc] mei: fixed address clients for the new platforms (Jerry Snitselaar) [1404064]
-- [misc] mei: fill file pointer in read cb for fixed address client (Jerry Snitselaar) [1404064]
-- [misc] mei: discard replies from unconnected fixed address clients (Jerry Snitselaar) [1404064]
-- [misc] mei: clean write queues and wake waiters on disconnect (Jerry Snitselaar) [1404064]
-- [misc] mei: wake blocked write on link reset (Jerry Snitselaar) [1404064]
-- [misc] mei: drop superfluous closing bracket from write traces (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: check if the device is enabled before data transfer (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: fix notification event delivery (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: fix RX event scheduling (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: interrupt reader on link reset (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: use rx_wait queue also for amthif client (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop parameter validation from mei_amthif_write (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: replace amthif_rd_complete_list with rd_completed (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: allow only one request at a time (Jerry Snitselaar) [1404064]
-- [misc] mei: rename variable names 'file_object' to fp (Jerry Snitselaar) [1404064]
-- [misc] mei: constify struct file pointer (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: don't drop read packets on timeout (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: don't copy from an empty buffer (Jerry Snitselaar) [1404064]
-- [misc] mei: call stop on failed char device register (Jerry Snitselaar) [1404064]
-- [misc] mei: fix possible integer overflow issue (Jerry Snitselaar) [1404064]
-- [misc] mei: debugfs: allow hbm features list dump in earlier stages (Jerry Snitselaar) [1404064]
-- [misc] mei: debugfs: adjust active clients print buffer (Jerry Snitselaar) [1404064]
-- [misc] mei: trace pci configuration space io (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: whitelist the watchdog client (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: re-register device on event (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: add activation debugfs entry (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: register wd device only if required (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: add status debugfs entry (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: implement MEI iAMT watchdog driver (Jerry Snitselaar) [1404064]
-- [kernel] mei: bus: complete variable rename of type struct mei_cl_device (Jerry Snitselaar) [1404064]
-- [kernel] mei: fixup function prototypes in mei_cl_bus.h (Jerry Snitselaar) [1404064]
-- [misc] mei: wd: drop the watchdog code from the core mei driver (Jerry Snitselaar) [1404064]
-- [misc] mei: drop nfc leftovers from the mei driver (Jerry Snitselaar) [1404064]
-- [misc] mei: always copy the read buffer if data is ready (Jerry Snitselaar) [1404064]
-- [misc] mei: prevent queuing new flow control credit (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: remove redundant uuid string in debug messages (Jerry Snitselaar) [1404064]
-- [kernel] debugfs: Export bool read/write functions (Jerry Snitselaar) [1404064]
-
-* Tue Mar 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-605.el7]
-- [infiniband] ib: Query ports via the core instead of direct into the driver (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Set maj_err and min_err in i40iw_sc_cqp_create (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: fix some indenting in i40iw_sc_vsi_init() (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] rdma/i40iw: use designated initializers (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Set 128B as the only supported RQ WQE size (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Reorganize structures to align with HW capabilities (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix incorrect check for error (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Assign MSS only when it is a new MTU (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix race condition in terminate timer's handler (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix memory leak in CQP destroy when in reset (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix QP flush to not hang on empty queues or failure (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix double free of QP (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Use correct src address in memcpy to rdma stats counters (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove macros I40IW_STAG_KEY_FROM_STAG and I40IW_STAG_INDEX_FROM_STAG (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add request for reset on CQP timeout (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Code cleanup, remove check of PBLE pages (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Correctly fail loopback connection if no listener (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fill in IRD value when on connect request (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Set TOS field in IP header (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add NULL check for ibqp event handler (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Replace list_for_each_entry macro with safe version (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add IP addr handling on netdev events (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add missing cleanup on device close (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add 2MB page support (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Utilize physically mapped memory regions (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix incorrect assignment of SQ head (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove variable flush_code and check to set qp->sq_flush (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove check on return from device_init_pestat() (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Use runtime check for IS_ENABLED(CONFIG_IPV6) (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Use actual page size (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove NULL check for cm_node->iwdev (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove checks for more than 48 bytes inline data (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Query device accounts for internal rsrc (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Optimize inline data copy (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix for LAN handler removal (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Correct values for max_recv_sge, max_send_sge (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Use vector when creating CQs (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Convert page_size to encoded value (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Set MAX IRD, MAX ORD size to max supported value (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove workaround for pre-production errata (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Enable message packing (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add Quality of Service support (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] ib/i40iw: Remove debug prints after allocation failure (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw_cm: Remove deprecated create_singlethread_workqueue (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw_main: Remove deprecated create_singlethread_workqueue (Stefan Assmann) [1381753 1381749 1381740]
-- [netdrv] enic: add vxlan offload on tx path (Stefan Assmann) [1388239]
-- [netdrv] enic: add udp_tunnel ndo for vxlan offload (Stefan Assmann) [1388239]
-- [netdrv] enic: add devcmds for vxlan offload (Stefan Assmann) [1388239]
-- [netdrv] enic: Remove local ndo_busy_poll() implementation (Stefan Assmann) [1388239]
-- [netdrv] generalize napi_complete_done() (Stefan Assmann) [1388239]
-- [netdrv] enic: set skb->hash type properly (Stefan Assmann) [1388239]
-- [netdrv] enic: fix rq disable (Stefan Assmann) [1388239]
-- [netdrv] enic: use correct type specifier (Stefan Assmann) [1388239]
-- [netdrv] enic: move to new ethtool api {get|set}_link_ksettings (Stefan Assmann) [1388239]
-- [netdrv] enic: add support for set/get rss hash key (Stefan Assmann) [1388239]
-- [netdrv] enic: use netdev_rss_key_fill() helper (Stefan Assmann) [1388239]
-- [netdrv] enic: remove #ifdef CONFIG_RFS_ACCEL around filter structures (Stefan Assmann) [1388239]
-- [netdrv] enic: Add Accelerated RFS support (Stefan Assmann) [1388239]
-- [netdrv] enic: Add tunable_ops support for rx_copybreak (Stefan Assmann) [1388239]
-- [netdrv] enic: use pci_zalloc_consistent (Stefan Assmann) [1388239]
-- [netdrv] enic: use spin_lock(wq_lock) instead of spin_lock_irqsave(wq_lock) (Stefan Assmann) [1388239]
-- [netdrv] enic: support skb->xmit_more (Stefan Assmann) [1388239]
-- [netdrv] enic: use napi_schedule_irqoff() (Stefan Assmann) [1388239]
-
-* Tue Mar 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-604.el7]
-- [netdrv] i40e: mark the value passed to csum_replace_by_diff as __wsum (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Fix TSO checksum pseudo-header adjustment (Stefan Assmann) [1383523]
-- [netdrv] i40e: refactor AQ CMD buffer debug printing (Stefan Assmann) [1383523]
-- [netdrv] i40e: Fix Adaptive ITR enabling (Stefan Assmann) [1383523]
-- [netdrv] i40evf: add comment (Stefan Assmann) [1383523]
-- [netdrv] i40evf: free rings in remove function (Stefan Assmann) [1383523]
-- [netdrv] i40e: Save link FEC info from link up event (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add bus number info to i40e_bus_info struct (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf : Changed version from 1.6.25 to 1.6.27 (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: eliminate i40e_pull_tail() (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Moves skb from i40e_rx_buffer to i40e_ring (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Limit DMA sync of RX buffers to actual packet size (Stefan Assmann) [1383523]
-- [netdrv] i40evf: track outstanding client request (Stefan Assmann) [1383523]
-- [netdrv] i40e: Remove FPK HyperV VF device ID (Stefan Assmann) [1383523]
-- [netdrv] i40e: Quick refactor to start moving data off stack and into Tx buffer info (Stefan Assmann) [1383523]
-- [netdrv] i40evf: remove unused device ID (Stefan Assmann) [1383523]
-- [netdrv] i40e: Deprecating unused macro (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add functions which apply correct PHY access method for read and write operation (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add FEC for 25g (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add support for 25G devices (Stefan Assmann) [1383523]
-- [netdrv] Changed version from 1.6.21 to 1.6.25 (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: napi_poll must return the work done (Stefan Assmann) [1383523]
-- [netdrv] i40e: simplify txd use count calculation (Stefan Assmann) [1383523]
-- [netdrv] i40evf: protect against NULL msix_entries and q_vectors pointers (Stefan Assmann) [1383523]
-- [netdrv] i40evf: check for msix_entries null dereference (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Move some i40evf_reset_task code to separate function (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add protocols over MCTP to i40e_aq_discover_capabilities (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Be much more verbose about what we can and cannot offload (Stefan Assmann) [1383523]
-- [netdrv] i40e: Implementation of ERROR state for NVM update state machine (Stefan Assmann) [1383523]
-- [netdrv] i40e: Reorder logic for coalescing RS bits (Stefan Assmann) [1383523]
-- [netdrv] i40evf: avoid an extra msleep while (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Changed version from 1.6.19 to 1.6.21 (Stefan Assmann) [1383523]
-- [netdrv] i40e: Drop redundant Rx descriptor processing code (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Changed version from 1.6.16 to 1.6.19 (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: fix interrupt affinity bug (Stefan Assmann) [1383523]
-- [netdrv] i40e: group base mode VF offload flags (Stefan Assmann) [1383523]
-- [netdrv] i40evf: support queue-specific settings for interrupt moderation (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Add txring_txq function to match fm10k and ixgbe (Stefan Assmann) [1383523]
-- [netdrv] i40e: Fix Flow Director raw_buf cleanup (Stefan Assmann) [1383523]
-- [netdrv] i40evf: enable adaptive interrupt throttling (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Changed version to 1.6.16 (Stefan Assmann) [1383523]
-- [netdrv] i40e: add encap csum VF offload flag (Stefan Assmann) [1383523]
-- [netdrv] i40evf: remove unnecessary error checking against i40e_shutdown_adminq (Stefan Assmann) [1383523]
-- [netdrv] i40e: Limit TX descriptor count in cases where frag size is greater than 16K (Stefan Assmann) [1383523]
-- [netdrv] i40evf: remove unnecessary error checking against i40evf_up_complete (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Fix link state event handling (Stefan Assmann) [1383523]
-- [netdrv] i40e: avoid potential null pointer dereference when assigning len (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Open RDMA Client after reset (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Fix indentation (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add support for HMC resource and profile for X722 (Stefan Assmann) [1383523]
-- [netdrv] i40e: Fix byte ordering in ARP NS code for X722 (Stefan Assmann) [1383523]
-- [netdrv] i40e: refactor tail_bump check (Stefan Assmann) [1383523]
-- [netdrv] i40evf: report link speed (Stefan Assmann) [1383523]
-- [netdrv] i40e: use alloc_workqueue instead of create_singlethread_workqueue (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf-Bump version from 1.6.11 to 1.6.12 (Stefan Assmann) [1383523]
-- [netdrv] i40evf: add missing rtnl_lock() around i40evf_set_interrupt_capability (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf-bump version to 1.6.11 (Stefan Assmann) [1383523]
-- [netdrv] i40evf: add hyperv dev ids (Stefan Assmann) [1383523]
-- [netdrv] i40e: Remove device ID 0x37D4 (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: remove useless initializer (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Fix i40e_rx_checksum (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Bump version from 1.5.16 to 1.6.4 (Stefan Assmann) [1383523]
-- [netdrv] i40evf: always activate correct MAC address filter (Stefan Assmann) [1383523]
-- [netdrv] i40evf: don't overflow buffer (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add allmulti support for the VF (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Allocate Rx buffers properly (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Remove unused hardware receive descriptor code (Stefan Assmann) [1383523]
-- [netdrv] i40evf: refactor receive routine (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Drop packet split receive routine (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Remove reference to ring->dtype (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Refactor tunnel interpretation (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Add support for GSO partial with UDP_TUNNEL_CSUM and GRE_CSUM (Stefan Assmann) [1383523]
-- [netdrv] i40evf: make use of BIT() macro to avoid signed left shift (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: fix I40E_MASK signed shift overflow warnings (Stefan Assmann) [1383523]
-
-* Mon Mar 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-603.el7]
-- [infiniband] rdma/qedr: Return success when not changing QP state (Don Dutile) [1414913 1417285]
-- [net] xprtrdma: Shrink send SGEs array (Don Dutile) [1416849 1417285]
-- [net] xprtrdma: Reduce required number of send SGEs (Don Dutile) [1416849 1417285]
-- [net] xprtrdma: Disable pad optimization by default (Don Dutile) [1416849 1417285]
-- [net] xprtrdma: Per-connection pad optimization (Don Dutile) [1416849 1417285]
-- [net] xprtrdma: Fix Read chunk padding (Don Dutile) [1416849 1417285]
-- [netdrv] mlx5: Fix Kconfig help text (Don Dutile) [1385330 1417285]
-- [netdrv] cxgb4/cxgb4vf: Assign netdev->dev_port with port ID (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5e: Change the SQ/RQ operational state to positive logic (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Don't flush SQ on error (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Don't notify HW when filling the edge of ICO SQ (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Fix query ISSI flow (Don Dutile) [1238192 1385330 1417285]
-- [netdrv] mlx5: Remove duplicate pci dev name print (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Verify module parameters (Don Dutile) [1385330 1417285]
-- [net] rds: tcp: unregister_netdevice_notifier() in error path of rds_tcp_init_net (Don Dutile) [1417285]
-- [netdrv] cxgb4: Add PCI device ID for new adapter (Don Dutile) [1385866 1417285]
-- [netdrv] mlx4: Fix uninitialized fields in rule when adding promiscuous mode to device managed flow steering (Don Dutile) [1385329 1417285]
-- [kernel] revert "net/mlx4_en: Avoid unregister_netdev at shutdown flow" (Don Dutile) [1385329 1417285]
-- [netdrv] mlx5: drop duplicate header delay.h (Don Dutile) [1385330 1417285]
-- [netdrv] mlx4_en: Free netdev resources under state lock (Don Dutile) [1385329 1417285]
-- [infiniband] iw_cxgb4: invalidate the mr when posting a read_w_inv wr (Don Dutile) [1385866 1417285]
-- [infiniband] ib/rxe: Update qp state for user query (Don Dutile) [1384574 1417285]
-- [infiniband] ib/rxe: Clear queue buffer when modifying QP to reset (Don Dutile) [1384574 1417285]
-- [infiniband] ib/rxe: Fix handling of erroneous WR (Don Dutile) [1384574 1417285]
-- [infiniband] ib/rxe: Fix kernel panic in UDP tunnel with GRO and RX checksum (Don Dutile) [1384574 1417285]
-- [infiniband] ib/mlx4: Fix create CQ error flow (Don Dutile) [1385329 1417285]
-- [infiniband] ib/mlx4: Check gid_index return value (Don Dutile) [1385329 1417285]
-- [infiniband] ib/mlx5: Fix NULL pointer dereference on debug print (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Fix fatal error dispatching (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Resolve soft lock on massive reg MRs (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Use cache line size to select CQE stride (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Validate requested RQT size (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Fix memory leak in query device (Don Dutile) [1385330 1417285]
-- [infiniband] ib/core: Avoid unsigned int overflow in sg_alloc_table (Don Dutile) [1417285]
-- [infiniband] ib/core: Add missing check for addr_resolve callback return value (Don Dutile) [1417285]
-- [infiniband] ib/core: Set routable RoCE gid type for ipv4/ipv6 networks (Don Dutile) [1417285]
-- [infiniband] ib/cm: Mark stale CM id's whenever the mad agent was unregistered (Don Dutile) [1417285]
-- [infiniband] ib/uverbs: Fix leak of XRC target QPs (Don Dutile) [1417285]
-- [netdrv] cxgb4: do not call napi_hash_del() (Don Dutile) [1385866 1417285]
-- [infiniband] ib/hfi1: Remove incorrect IS_ERR check (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Prevent hardware counter names from being cut off (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix ECN processing in prescan_rxq (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix status error code for unsupported packets (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Relocate rcvhdrcnt module parameter check (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix rnr_timer addition (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Delete unused lock (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Clean up unused argument (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Remove leftover snoop references (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix a potential memory leak in hfi1_create_ctxts() (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Return ENODEV for unsupported PCI device ids (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix an Oops on pci device force remove (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix integrity check flags default values (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Remove redundant sysfs irq affinity entry (Don Dutile) [1382806 1417285]
-- [infiniband] ib/rdmavt: rdmavt can handle non aligned page maps (Don Dutile) [1385848 1417285]
-- [infiniband] shut up a maybe-uninitialized warning (Don Dutile) [1417285]
-- [net] xprtrdma: Fix DMAR failure in frwr_op_map() after reconnect (Don Dutile) [1417285]
-- [netdrv] mlx5: Fix invalid pointer reference when prof_sel parameter is invalid (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: E-Switch, Set the actions for offloaded rules properly (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Disallow changing name-space for VF representors (Don Dutile) [1385330 1417285]
-- [netdrv] cxgb4: correct device ID of T6 adapter (Don Dutile) [1385866 1417285]
-- [net] svcrdma: backchannel cannot share a page for send and rcv buffers (Don Dutile) [1417285]
-- [netdrv] mlx5: Simplify a test (Don Dutile) [1385330 1417285]
-- [netdrv] mlx4_en: Save slave ethtool stats command (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Fix potential deadlock in port statistics flow (Don Dutile) [1385329 1417285]
-- [kernel] mlx4: Fix firmware command timeout during interrupt test (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Do not access comm channel if it has not yet been initialized (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Process all completions in RX rings after port goes up (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Resolve dividing by zero in 32-bit system (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Change the default value of enable_qos (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Avoid setting ports to auto when only one port type is supported (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Fix the resource-type enum in res tracker to conform to FW spec (Don Dutile) [1385329 1417285]
-- [net] rds: debug messages are enabled by default (Don Dutile) [1417285]
-- [netdrv] cxgb4: Fix error handling in alloc_uld_rxqs() (Don Dutile) [1385866 1417285]
-- [netdrv] ib/mlx4: avoid a -Wmaybe-uninitialize warning (Don Dutile) [1385329 1417285]
-- [netdrv] mlx5: Avoid passing dma address 0 to firmware (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: PCI error recovery health care simulation (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Fix race between PCI error handlers and health work (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Clear health sick bit when starting health poll (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Change the acl enable prototype to return status (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Unregister netdev before detaching it (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Choose best nearest LRO timeout (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Correctly initialize last use of flow counters (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Fix autogroups groups num not decreasing (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Keep autogroups list ordered (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Always Query HCA caps after setting them (Don Dutile) [1385330 1417285]
-- [kernel] {net, ib}/mlx5: Make cache line size determination at runtime (Don Dutile) [1385330 1417285]
-- [net] sunrpc: fix some missing rq_rbuffer assignments (Don Dutile) [1275823 1417285]
-- [netdrv] cxgb4: Fix number of queue sets corssing the limit (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: fix memory leak of qe on error exit path (Don Dutile) [1385866 1417285]
-- [infiniband] qedr: Add events support and register IB device (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add GSI support (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add LL2 RoCE interface (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add support for data path (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add support for memory registeration verbs (Don Dutile) [1275823 1417285]
-- [uapi] qedr: Add support for QP verbs (Don Dutile) [1275823 1417285]
-- [uapi] qedr: Add support for PD,PKEY and CQ verbs (Don Dutile) [1275823 1417285]
-- [uapi] qedr: Add support for user context verbs (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add support for RoCE HW init (Don Dutile) [1275823 1417285]
-- [uapi] qedr: Add RoCE driver framework (Don Dutile) [1275823 1417285]
-- [kernel] mlx5: Add MLX5_ARRAY_SET64 to fix BUILD_BUG_ON (Don Dutile) [1385330 1417285]
-- [netdrv] iw_cxgb4: add fast-path for small REG_MR operations (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: advertise support for FR_NSMR_TPTE_WR (Don Dutile) [1385866 1417285]
-- [infiniband] ib/core: correctly handle rdma_rw_init_mrs() failure (Don Dutile) [1417285]
-- [infiniband] ib/srp: Fix infinite loop when FMR sg[0].offset != 0 (Don Dutile) [1417285]
-- [infiniband] ib/srp: Remove an unused argument (Don Dutile) [1417285]
-- [infiniband] ib/core: Improve ib_map_mr_sg() documentation (Don Dutile) [1417285]
-- [kernel] ib/mlx4: Fix possible vl/sl field mismatch in LRH header in QP1 packets (Don Dutile) [1385329 1417285]
-- [uapi] ib/mthca: Move user vendor structures (Don Dutile) [1417285]
-- [uapi] ib/nes: Move user vendor structures (Don Dutile) [1417285]
-- [uapi] ib/ocrdma: Move user vendor structures (Don Dutile) [1385876 1417285]
-- [uapi] ib/mlx4: Move user vendor structures (Don Dutile) [1385329 1417285]
-- [uapi] ib/cxgb4: Move user vendor structures (Don Dutile) [1385866 1417285]
-- [uapi] ib/cxgb3: Move user vendor structures (Don Dutile) [1417285]
-- [uapi] ib/mlx5: Move and decouple user vendor structures (Don Dutile) [1385330 1417285]
-- [rdma] ib/{core,hw}: Add constant for node_desc (Don Dutile) [1417285]
-- [infiniband] ipoib: Make ipoib_warn ratelimited (Don Dutile) [1417285]
-- [infiniband] ib/mlx4/alias_guid: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/ipoib_verbs: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/ipoib: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/nes: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx4/mcg: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx4/mad: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx4: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx5/odp: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx5: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mthca: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] iw_cxgb4: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/qib: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] iw_cxgb3: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/iwcm: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/addr: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/cma: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/ucma: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/multicast: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mad: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/sa : Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx5: LAG QP load balancing (Don Dutile) [1385219 1385330 1417285]
-- [infiniband] ib/mlx5: Set unique device name on LAG (Don Dutile) [1385219 1385330 1417285]
-- [infiniband] ib/mlx5: Port status track LAG master, when LAG is active (Don Dutile) [1385219 1385330 1417285]
-- [infiniband] ib/mlx5: Merge vports flow steering during LAG (Don Dutile) [1385219 1385330 1417285]
-- [infiniband] ib/mlx5: Port events in RoCE now rely on netdev events (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Track asynchronous events on a receive work queue (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Add support of more IPv6 fields to flow steering (Don Dutile) [1385308 1385330 1417285]
-- [infiniband] ib/mlx5: Add support in TOS and protocol to flow steering (Don Dutile) [1385308 1385330 1417285]
-- [uapi] ib/core: Add more fields to IPv6 flow specification (Don Dutile) [1385308 1385330 1417285]
-- [uapi] ib/uverbs: Add more fields to IPv4 flow specification (Don Dutile) [1385308 1385330 1417285]
-- [rdma] ib/uverbs: Add support to extend flow steering specifications (Don Dutile) [1385308 1385330 1417285]
-- [infiniband] ib/mlx5: Add validation to flow specifications parsing (Don Dutile) [1385308 1385330 1417285]
-- [infiniband] ib/mlx4: Add validation to flow specifications parsing (Don Dutile) [1385308 1385330 1417285]
-- [infiniband] ib/mlx5: Add sniffer support to steering (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Increase flow table reference count in create rule (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Fix coverity warning (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Save flow table priority handler instead of index (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Fix steering resource leak (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Add port counter support for raw packet QP (Don Dutile) [1385307 1385330 1417285]
-- [infiniband] ib/mlx5: Refactor raw packet QP modify function (Don Dutile) [1385307 1385330 1417285]
-- [infiniband] ib/mlx5: Expose RSS related capabilities (Don Dutile) [1385330 1417285]
-- [uapi] ib/uverbs: Expose RSS related capabilities (Don Dutile) [1417285]
-- [rdma] ib/core: Expose RSS related capabilities (Don Dutile) [1417285]
-- [infiniband] ib/rxe: improved debug prints & code cleanup (Don Dutile) [1384574 1417285]
-- [infiniband] rdma_rxe: Ensure rdma_rxe init occurs at correct time (Don Dutile) [1384574 1417285]
-- [infiniband] ib/rxe: Properly honor max IRD value for rd/atomic (Don Dutile) [1384574 1417285]
-- [rdma] ib/{rxe, core, rdmavt}: Fix kernel crash for reg MR (Don Dutile) [1385848 1384574 1417285]
-- [infiniband] ib/rdmavt: Trivial function comment corrected (Don Dutile) [1385848 1417285]
-- [netdrv] cxgb4: unexport cxgb4_dcb_enabled (Don Dutile) [1385866 1417285]
-- [infiniband] ib/hfi1: Fix trace of atomic ack (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Update SMA ingress checks for response packets (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Use EPROM platform configuration read (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add ability to read platform config from the EPROM (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Restore EPROM read ability (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add new debugfs sdma_cpu_list file (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add irq affinity notification handler (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add a new VL sysfs attribute for sdma engines (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add sysfs interface for affinity setup (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix resource release in context allocation (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Remove unused variable from devdata (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Cleanup tasklet refs in comments (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Adjust hardware buffering parameter (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Act on external device timeout (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix defered ack race with qp destroy (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Combine shift copy and byte copy for SGE reads (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Do not read more than a SGE length (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Extend i2c timeout (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Increase default settings of max_cqes and max_qps (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Remove filtering of Set(PkeyTable) in HFI SMA (Don Dutile) [1382806 1417285]
-- [infiniband] ib/qib: Remove qpt_mask global (Don Dutile) [1381986 1417285]
-- [infiniband] ib/hfi1: Consolidate pio control masks into single definition (Don Dutile) [1382806 1417285]
-- [infiniband] ib/rdmavt, ib/hfi1: Add lockdep asserts for lock debug (Don Dutile) [1385848 1417285]
-- [infiniband] ib/rdmavt: Add qp init function (Don Dutile) [1385848 1417285]
-- [infiniband] ib/rdmavt: Move reset calldown to reset path (Don Dutile) [1385848 1417285]
-- [infiniband] ib/hfi1: Move iowait_init() to priv allocate (Don Dutile) [1382806 1417285]
-- [infiniband] ib/rdmavt: Correct sparse annotation (Don Dutile) [1385848 1417285]
-- [infiniband] ib/hfi1: Fix locking scheme for affinity settings (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix user-space buffers mapping with IOMMU enabled (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix the count of user packets submitted to an SDMA engine (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Move serdes tune inside link start function (Don Dutile) [1382806 1417285]
-- [infiniband] ib/qib,ib/hfi: Use core common header file (Don Dutile) [1382806 1417285]
-- [rdma] ib/core: Add ib headers for general use (Don Dutile) [1417285]
-- [netdrv] mlx5: Add ndo_poll_controller() implementation (Don Dutile) [1385330 1417285]
-- [netdrv] mlx4: remove unused fields (Don Dutile) [1385329 1417285]
-- [netdrv] cxgb4: mark symbols static where possible (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: fix -ve error check on a signed iq (Don Dutile) [1385866 1417285]
-- [kernel] mlx4: Add VF vlan protocol 802.1ad support (Don Dutile) [1386553 1385329 1417285]
-- [netdrv] mlx4_en: Disable vlan HW acceleration when in VF vlan protocol 802.1ad mode (Don Dutile) [1386553 1385329 1417285]
-- [kernel] mlx4_core: Preparation for VF vlan protocol 802.1ad (Don Dutile) [1386553 1385329 1417285]
-- [netdrv] mlx4_core: Fix QUERY FUNC CAP flags (Don Dutile) [1386553 1385329 1417285]
-- [rdma] ib/core: remove ib_get_dma_mr (Don Dutile) [1417285]
-- [infiniband] ib/srp: use IB_PD_UNSAFE_GLOBAL_RKEY (Don Dutile) [1417285]
-- [infiniband] ib/iser: use IB_PD_UNSAFE_GLOBAL_RKEY (Don Dutile) [1417285]
-- [net] ib/core: add support to create a unsafe global rkey to ib_create_pd (Don Dutile) [1417285]
-- [rdma] ib/core: rename pd->local_mr to pd->__internal_mr (Don Dutile) [1417285]
-- [net] svcrdma: support Remote Invalidation (Don Dutile) [1417285]
-- [net] svcrdma: Server-side support for rpcrdma_connect_private (Don Dutile) [1417285]
-- [net] svcrdma: Skip put_page() when send_reply() fails (Don Dutile) [1417285]
-- [net] svcrdma: Tail iovec leaves an orphaned DMA mapping (Don Dutile) [1417285]
-- [net] xprtrdma: use complete() instead complete_all() (Don Dutile) [1417285]
-- [netdrv] cxgb4: fix signed wrap around when decrementing index idx (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5: E-Switch, Support VLAN actions in the offloads mode (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Refactor retrival of skb from rx completion element (cqe) (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Put elements related to offloaded TC rule in one struct (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: E-Switch, Allow fine tuning of eswitch vport push/pop vlan (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: E-Switch, Set vport representor fields explicitly on registration (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: E-Switch, Set the vport when registering the uplink rep (Don Dutile) [1385330 1417285]
-- [netdrv] cxgb4: Convert to use simple_open() (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Have a clear separation between different SQ types (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Dynamic RQ type infrastructure (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Slightly reduce hardware LRO size (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Union RQ RX info per RQ type (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Build RX SKB on demand (Don Dutile) [1385330 1417285]
-- [kernel] ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Don Dutile) [1417285]
-- [netdrv] cxgb4: add parser to translate u32 filters to internal spec (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: add common api support for configuring filters (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: move common filter code to separate file (Don Dutile) [1385866 1417285]
-- [netdrv] mlx4_core: Fix deadlock when switching between polling and event fw commands (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Use RCU to perform radix tree lookup for SRQ (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Fix wrong indentation (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Add branch prediction hints in RX data-path (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: add page recycle to prepare rx ring for tx support (Don Dutile) [1385329 1417285]
-- [netdrv] mlx5: clean function declarations in eswitch.c up (Don Dutile) [1385330 1417285]
-- [net] xprtrdma: Eliminate rpcrdma_receive_worker() (Don Dutile) [1417285]
-- [net] xprtrdma: Rename rpcrdma_receive_wc() (Don Dutile) [1417285]
-- [net] xprtrmda: Report address of frmr, not mw (Don Dutile) [1417285]
-- [net] xprtrdma: Support larger inline thresholds (Don Dutile) [1417285]
-- [net] xprtrdma: Use gathered Send for large inline messages (Don Dutile) [1417285]
-- [net] xprtrdma: Basic support for Remote Invalidation (Don Dutile) [1417285]
-- [net] xprtrdma: Client-side support for rpcrdma_connect_private (Don Dutile) [1417285]
-- [kernel] rpcrdma: RDMA/CM private message data structure (Don Dutile) [1417285]
-- [net] xprtrdma: Move recv_wr to struct rpcrdma_rep (Don Dutile) [1417285]
-- [net] xprtrdma: Move send_wr to struct rpcrdma_req (Don Dutile) [1417285]
-- [net] xprtrdma: Simplify rpcrdma_ep_post_recv() (Don Dutile) [1417285]
-- [net] xprtrdma: Eliminate "ia" argument in rpcrdma_{alloc, free}_regbuf (Don Dutile) [1417285]
-- [net] xprtrdma: Delay DMA mapping Send and Receive buffers (Don Dutile) [1417285]
-- [net] xprtrdma: Replace DMA_BIDIRECTIONAL (Don Dutile) [1417285]
-- [net] xprtrdma: Use smaller buffers for RPC-over-RDMA headers (Don Dutile) [1417285]
-- [net] xprtrdma: Initialize separate RPC call and reply buffers (Don Dutile) [1417285]
-- [net] sunrpc: Add a transport-specific private field in rpc_rqst (Don Dutile) [1417285]
-- [net] sunrpc: Separate buffer pointers for RPC Call and Reply messages (Don Dutile) [1417285]
-- [net] sunrpc: Generalize the RPC buffer release API (Don Dutile) [1417285]
-- [net] sunrpc: Generalize the RPC buffer allocation API (Don Dutile) [1417285]
-- [net] sunrpc: Refactor rpc_xdr_buf_init() (Don Dutile) [1417285]
-- [net] xprtrdma: Eliminate INLINE_THRESHOLD macros (Don Dutile) [1417285]
-- [netdrv] cxgb4: Fix return value check in cfg_queues_uld() (Don Dutile) [1385866 1417285]
-- [crypto] chcr - Fix memory corruption (Don Dutile) [1385866 1417285]
-- [target] chcr/cxgb4i/cxgbit/rdma/cxgb4: Allocate resources dynamically for all cxgb4 ULD's (Don Dutile) [1385866 1417285]
-- [crypto] chcr: Fix non static symbol warning (Don Dutile) [1385866 1417285]
-- [crypto] Added Chelsio Menu to the Kconfig file (Don Dutile) [1385866 1417285]
-- [crypto] chcr: Support for Chelsio's Crypto Hardware (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5e: Implement RX mapped page cache for page recycle (Don Dutile) [1385310 1385330 1417285]
-- [netdrv] mlx5e: Introduce API for RX mapped pages (Don Dutile) [1385310 1385330 1417285]
-- [netdrv] mlx5e: Single flow order-0 pages for Striding RQ (Don Dutile) [1385310 1385330 1417285]
-- [infiniband] ib/rdmavt, ib/qib, ib/hfi1: Use new QP put get routines (Don Dutile) [1381986 1382806 1385848 1417285]
-- [rdma] ib/rdmavt: Add functions to get and release QP references (Don Dutile) [1385848 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_rx_data_ack() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_abort_rpl() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_abort_req() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_close_con_req() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_tid_release() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_compute_wscale() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_best_mtu() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_is_neg_adv() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_find_route6() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_find_route() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_get_4tuple() (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4vf: don't offload Rx checksums for IPv6 fragments (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5: Organize device list API in one place (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5e: Restore vlan filter after seamless reset (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5e: Implement mlx5e interface attach/detach callbacks (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Implement vports admin state backup/restore (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Align sriov/eswitch modules with the new load/unload flow (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Implement eswitch attach/detach flows (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Implement SRIOV attach/detach flows (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Split the load/unload flow into hardware and software flows (Don Dutile) [1385214 1385330 1417285]
-- [kernel] mlx5: Introduce attach/detach to interface API (Don Dutile) [1385214 1385330 1417285]
-- [kernel] mlx5: SRIOV core code refactoring (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Skip waiting for vf pages in internal error (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] cxgb4: Add support for ndo_get_vf_config (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4/cxgb4vf: fix spelling mistake "provissioned" -> "provisioned" (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: Remove unused including <linux/version.h> (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: add support for tx max rate limiting (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: add support for per queue tx scheduling (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: add support for tx traffic scheduling classes (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5/core: Use memdup_user() rather than duplicating its implementation (Don Dutile) [1385330 1417285]
-- [netdrv] cxgb4: Simplify the return expression (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: Register changes and fw defines for crypto (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: Add support for dynamic allocation of resources for ULD (Don Dutile) [1385866 1417285]
-- [kernel] mlx5: Add sniffer namespaces (Don Dutile) [1385256 1385330 1417285]
-- [kernel] mlx5: Introduce sniffer steering hardware capabilities (Don Dutile) [1385256 1385330 1417285]
-- [netdrv] mlx5: Configure IB devices according to LAG state (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Vport LAG creation support (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Add LAG flow steering namespace (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: LAG demux flow table support (Don Dutile) [1385219 1385330 1417285]
-- [netdrv] mlx5: LAG and SRIOV cannot be used together (Don Dutile) [1385219 1385330 1417285]
-- [netdrv] mlx5e: Avoid port remapping of mlx5e netdev TISes (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Get RoCE netdev (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Implement RoCE LAG feature (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Add HW interfaces used by LAG (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Separate query_port_proto_oper for IB and EN (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Expose mlx5e_link_mode (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Update struct mlx5_ifc_xrqc_bits (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Modify RQ bitmask from mlx5 ifc (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Introduce alloc_encap and dealloc_encap commands (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Update mlx5_ifc.h for vxlan encap/decap (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Enable setting minimum inline header mode for VFs (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Improve driver log messages (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Unify and improve command interface (Don Dutile) [1385330 1417285]
-- [kernel] {net, ib}/mlx5: Modify QP commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] {net, ib}/mlx5: QP/XRCD commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] {net, ib}/mlx5: MKey/PSV commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] {net,ib}/mlx5: CQ commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: EQ commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Pages management commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: MCG commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: PD and UAR commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Access register and MAD IFC commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Init/Teardown hca commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [net] rds: add __printf format attribute to error reporting functions (Don Dutile) [1417285]
-
-* Mon Mar 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-602.el7]
-- [netdrv] qed: Conserve RDMA resources when !QEDR (Harish Patil) [1391272]
-- [netdrv] qed: Support Multicast on Tx-switching (Harish Patil) [1391272]
-- [netdrv] qed*: RSS indirection based on queue-handles (Harish Patil) [1391272]
-- [netdrv] qede: Remove unnecessary datapath dereference (Harish Patil) [1391272]
-- [netdrv] qede - mark SKB as encapsulated (Harish Patil) [1391272]
-- [netdrv] qede: Postpone reallocation until NAPI end (Harish Patil) [1391272]
-- [netdrv] qed*: Change maximal number of queues (Harish Patil) [1391272]
-- [netdrv] qede: Split filtering logic to its own file (Harish Patil) [1391272]
-- [netdrv] qede: Break datapath logic into its own file (Harish Patil) [1391272]
-- [netdrv] qed*: Update to dual-license (Harish Patil) [1391272]
-- [netdrv] qed*: Advance driver versions to 8.10.10.20 (Harish Patil) [1391272]
-- [netdrv] qed: fix old-style function definition (Harish Patil) [1391272]
-- [netdrv] qede: fix general protection fault may occur on probe (Harish Patil) [1391272]
-- [netdrv] qede: use reset to set network header (Harish Patil) [1391272]
-- [netdrv] qed: Add iSCSI out of order packet handling (Harish Patil) [1391272]
-- [netdrv] qed: Add support for hardware offloaded iSCSI (Harish Patil) [1391272]
-- [netdrv] qede: Better utilize the qede_[rt]x_queue (Harish Patil) [1391272]
-- [netdrv] qede: Don't check netdevice for rx-hash (Harish Patil) [1391272]
-- [netdrv] qed*: Handle-based L2-queues (Harish Patil) [1391272]
-- [netdrv] qede: Revise state locking scheme (Harish Patil) [1391272]
-- [netdrv] qede: Refactor data-path Rx flow (Harish Patil) [1391272]
-- [netdrv] qede: Refactor statistics gathering (Harish Patil) [1391272]
-- [netdrv] qede: Remove 'num_tc' (Harish Patil) [1391272]
-- [netdrv] qed: Optimize qed_chain datapath usage (Harish Patil) [1391272]
-- [netdrv] qede: Optimize aggregation information size (Harish Patil) [1391272]
-- [netdrv] qed: Correct rdma params configuration (Harish Patil) [1391272]
-- [netdrv] qed: configure ll2 RoCE v1/v2 flavor correctly (Harish Patil) [1391272]
-- [netdrv] qed: Prevent stack corruption on MFW interaction (Harish Patil) [1391272]
-- [netdrv] qede: Correctly map aggregation replacement pages (Harish Patil) [1391272]
-- [netdrv] qed: Correct VF mac number (Harish Patil) [1391272]
-- [netdrv] qede: Don't override priv_flags (Harish Patil) [1391272]
-- [netdrv] qed: Learn resources from management firmware (Harish Patil) [1391272]
-- [netdrv] qed: Use VF-queue feature (Harish Patil) [1391272]
-- [netdrv] qed: Learn of RDMA capabilities per-device (Harish Patil) [1391272]
-- [netdrv] qede: Decouple ethtool caps from qed (Harish Patil) [1391272]
-- [netdrv] qed*: Add support for WoL (Harish Patil) [1391272]
-- [netdrv] qed: Add nvram selftest (Harish Patil) [1391272]
-- [netdrv] qed*: Management firmware - notifications and defaults (Harish Patil) [1391272]
-- [netdrv] qede: Fix statistics' strings for Tx/Rx queues (Harish Patil) [1391272]
-- [netdrv] qede: Fix out-of-bound fastpath memory access (Harish Patil) [1391272]
-- [netdrv] qede: Fix incorrrect usage of APIs for un-mapping DMA memory (Harish Patil) [1391272]
-- [netdrv] qed: Zero-out the buffer paased to dcbx_query() API (Harish Patil) [1391272]
-- [netdrv] qede: Reconfigure rss indirection direction table when rss count is updated (Harish Patil) [1391272]
-- [netdrv] qed*: Reduce the memory footprint for Rx path (Harish Patil) [1391272]
-- [netdrv] qede: Loopback implementation should ignore the normal traffic (Harish Patil) [1391272]
-- [netdrv] qede: get_channels() need to populate max tx/rx coalesce values (Harish Patil) [1391272]
-- [netdrv] qed: Use list_move_tail instead of list_del/list_add_tail (Harish Patil) [1391272]
-- [netdrv] qed: Remove useless set memory to zero use memset() (Harish Patil) [1391272]
-- [netdrv] qed: Fix possible race when reading firmware return code (Harish Patil) [1391272]
-- [netdrv] qed: Handle malicious VFs events (Harish Patil) [1391272]
-- [netdrv] qed: Allow chance for fast ramrod completions (Harish Patil) [1391272]
-- [netdrv] qed*: Allow unicast filtering (Harish Patil) [1391272]
-- [netdrv] qede: Prevent GSO on long Geneve headers (Harish Patil) [1391272]
-- [netdrv] qede: GSO support for tunnels with outer csum (Harish Patil) [1391272]
-- [netdrv] qed: Pass MAC hints to VFs (Harish Patil) [1391272]
-- [netdrv] qed: Additional work toward cleaning C=1 (Harish Patil) [1391272]
-- [netdrv] qede: Do not allow RSS config for 100G devices (Harish Patil) [1391272]
-- [netdrv] qed*: Fix Kconfig dependencies with INFINIBAND_QEDR (Harish Patil) [1391272]
-- [netdrv] qed: Fix static checker warning (Harish Patil) [1391272]
-- [netdrv] qed: fix old-style function definition (Harish Patil) [1391272]
-- [netdrv] qed: Fix to use list_for_each_entry_safe() when delete items (Harish Patil) [1391272]
-- [netdrv] qed: Add RoCE ll2 & GSI support (Harish Patil) [1391272]
-- [netdrv] qed: Add support for memory registeration verbs (Harish Patil) [1391272]
-- [netdrv] qed: Add support for QP verbs (Harish Patil) [1391272]
-- [netdrv] qed: PD,PKEY and CQ verb support (Harish Patil) [1391272]
-- [netdrv] qed: Add support for RoCE hw init (Harish Patil) [1391272]
-- [netdrv] qede: Add qedr framework (Harish Patil) [1391272]
-- [netdrv] qed: Add Light L2 support (Harish Patil) [1391272]
-- [netdrv] qed: Fix stack corruption on probe (Harish Patil) [1391272]
-- [netdrv] qed: mark symbols static where possible (Harish Patil) [1391272]
-- [netdrv] qede: mark qede_set_features() static (Harish Patil) [1391272]
-- [netdrv] qed*: Add support for the ethtool get_regs operation (Harish Patil) [1391272]
-- [netdrv] qed: Add support for debug data collection (Harish Patil) [1391272]
-- [netdrv] qed: add missing header dependencies (Harish Patil) [1391272]
-- [netdrv] qed: Add infrastructure for debug data collection (Harish Patil) [1391272]
-- [netdrv] qed: Remove OOM messages (Harish Patil) [1391272]
-- [netdrv] qed: fix kzalloc-simple.cocci warnings (Harish Patil) [1391272]
-- [netdrv] qed: Clear dcbx memory buffers before the usage (Harish Patil) [1391272]
-- [netdrv] qed: Set selection-field while configuring the app entry in ieee mode (Harish Patil) [1391272]
-- [netdrv] qed*: Disallow dcbx configuration for VF interfaces (Harish Patil) [1391272]
-- [netdrv] qede: hide 32-bit compile warning (Harish Patil) [1391272]
-- [netdrv] qede: Add support for Tx/Rx-only queues (Harish Patil) [1391272]
-- [netdrv] qed: Fix address macros (Harish Patil) [1391272]
-- [netdrv] qed: Change locking scheme for VF channel (Harish Patil) [1391272]
-- [netdrv] qed*: Add support for VFs over legacy PFs (Harish Patil) [1391272]
-- [netdrv] qed: Prevent VFs from pause flooding (Harish Patil) [1391272]
-- [netdrv] qed: Add support for legacy VFs (Harish Patil) [1391272]
-- [netdrv] qed: FLR of active VFs might lead to FW assert (Harish Patil) [1391272]
-- [netdrv] qed: utilize FW 8.10.10.0 (Harish Patil) [1391272]
-- [netdrv] qede: Fix forcing high speeds (Harish Patil) [1391272]
-- [netdrv] qed*: Fix pause setting (Harish Patil) [1391272]
-- [netdrv] qede: Fix Tx timeout due to xmit_more (Harish Patil) [1391272]
-- [netdrv] qed: Add support for NCSI statistics (Harish Patil) [1391272]
-- [netdrv] qede: Add support for per-queue stats (Harish Patil) [1391272]
-- [netdrv] qede: Add support for capturing additional stats in ethtool-stats display (Harish Patil) [1391272]
-- [netdrv] qed*: Add and modify some prints (Harish Patil) [1391272]
-- [netdrv] qed*: Trivial modifications (Harish Patil) [1391272]
-- [netdrv] qed*: Semantic changes (Harish Patil) [1391272]
-- [netdrv] qed: Fix possible memory leak in qed_dcbnl_get_ieee_pfc() (Harish Patil) [1391272]
-- [netdrv] qed*: Add support for ethtool link_ksettings callbacks (Harish Patil) [1391272]
-- [netdrv] qed: Update app count when adding a new dcbx app entry to the table (Harish Patil) [1391272]
-- [netdrv] qed: Add dcbx app support for IEEE Selection Field (Harish Patil) [1391272]
-- [netdrv] qed: Use ieee mfw-mask to get ethtype in ieee-dcbx mode (Harish Patil) [1391272]
-- [netdrv] qed: Remove the endian-ness conversion for pri_to_tc value (Harish Patil) [1391272]
-- [netdrv] qed: Use DEFINE_SPINLOCK() for spinlock (Harish Patil) [1391272]
-- [netdrv] qed: Fail driver load in 100g MSI mode (Harish Patil) [1391272]
-- [netdrv] qed: Fix error return code in qed_resc_alloc() (Harish Patil) [1391272]
-- [netdrv] qed: do not use unitialized variable (Harish Patil) [1391272]
-- [netdrv] qed: Prevent over-usage of vlan credits by PF (Harish Patil) [1391272]
-- [netdrv] qed: Correct min bandwidth for 100g (Harish Patil) [1391272]
-- [netdrv] qede: Reset statistics on explicit down (Harish Patil) [1391272]
-- [netdrv] qed: Don't over-do producer cleanup for Rx (Harish Patil) [1391272]
-- [netdrv] qed: Fix removal of spoof checking for VFs (Harish Patil) [1391272]
-- [netdrv] qede: Don't try removing unconfigured vlans (Harish Patil) [1391272]
-- [netdrv] qed: Fix setting/clearing bit in completion bitmap (Harish Patil) [1391272]
-- [netdrv] qede: Bump up driver version to 8.10.1.20 (Harish Patil) [1391272]
-- [netdrv] qede: Add get/set rx copy break tunable support (Harish Patil) [1391272]
-- [netdrv] qede: Utilize xmit_more (Harish Patil) [1391272]
-- [netdrv] qede: qede_poll refactoring (Harish Patil) [1391272]
-- [netdrv] qede: Add support for handling IP fragmented packets (Harish Patil) [1391272]
-- [netdrv] qed: Protect the doorbell BAR with the write barriers (Harish Patil) [1391272]
-- [netdrv] qede: Fix the static checker warnings (Harish Patil) [1391272]
-- [netdrv] qed: Fix static checker warnings (Harish Patil) [1391272]
-- [netdrv] qede: Add support for coalescing config read/update (Harish Patil) [1391272]
-- [netdrv] qed: Add support for coalescing config read/update (Harish Patil) [1391272]
-- [netdrv] qed: Add missing port-mode (Harish Patil) [1391272]
-- [netdrv] qed: Fix returning unlimited SPQ entries (Harish Patil) [1391272]
-- [netdrv] qed*: Don't reset statistics on inner reload (Harish Patil) [1391272]
-- [netdrv] qed: Prevent VF from Tx-switching 'promisc' (Harish Patil) [1391272]
-- [netdrv] qed: Correct default vlan behavior (Harish Patil) [1391272]
-- [netdrv] qede: Add dcbnl support (Harish Patil) [1391272]
-- [netdrv] qed: Add dcbnl support (Harish Patil) [1391272]
-- [netdrv] qed: Add support for query/config dcbx (Harish Patil) [1391272]
-- [netdrv] qed: potential overflow in qed_cxt_src_t2_alloc() (Harish Patil) [1391272]
-- [netdrv] qed: PF to reply to unknown messages (Harish Patil) [1391272]
-- [netdrv] qed: PF enforce MAC limitation of VFs (Harish Patil) [1391272]
-- [netdrv] qed: Move doorbell calculation from VF to PF (Harish Patil) [1391272]
-- [netdrv] qed: Make PF more robust against malicious VF (Harish Patil) [1391272]
-- [netdrv] qed: PF-VF resource negotiation (Harish Patil) [1391272]
-- [netdrv] qed: Relax VF firmware requirements (Harish Patil) [1391272]
-- [netdrv] qed: Fix next-ptr chains for BE / 32-bit (Harish Patil) [1391272]
-- [netdrv] qed: Initialize hardware for new protocols (Harish Patil) [1391272]
-- [netdrv] qed: Add iscsi/rdma personalities (Harish Patil) [1391272]
-- [netdrv] qed: Add common HSI for new protocols (Harish Patil) [1391272]
-- [netdrv] qed: Revisit chain implementation (Harish Patil) [1391272]
-- [netdrv] qed: fix qed_fill_link() error handling (Harish Patil) [1391272]
-- [netdrv] qed: Don't config min BW on 100g on link flap (Harish Patil) [1391272]
-- [netdrv] qed: Prevent 100g from working in MSI (Harish Patil) [1391272]
-- [netdrv] qed: Add missing 100g init mode (Harish Patil) [1391272]
-- [netdrv] qed: Save min/max accross dcbx-change (Harish Patil) [1391272]
-- [netdrv] qed: Fix allocation in interrupt context (Harish Patil) [1391272]
-- [netdrv] qede: Don't expose self-test for VFs (Harish Patil) [1391272]
-- [netdrv] qede: Reload on GRO changes (Harish Patil) [1391272]
-- [netdrv] qede: Fix VF minimum BW setting (Harish Patil) [1391272]
-- [netdrv] qed/qede: update driver version to 8.7.1.43 (Harish Patil) [1372930]
-
-* Mon Mar 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-601.el7]
-- [scsi] qla2xxx: Update driver version to 8.07.00.38.07.4-k (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Fix scsi scan hang triggered if adapter fails during init (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: fix spelling mistake "retyring" -> "retrying" (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: small cleanup in qla2x00_wait_for_hba_ready() (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Fix BBCR offset (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Fix duplicate message id (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Separate ISP type bits out from device type (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Correction to function qla26xx_dport_diagnostics() (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add support to handle Loop Init error Asynchronus event (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Let DPORT be enabled purely by nvram (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add bsg interface to support statistics counter reset (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add bsg interface to support D_Port Diagnostics (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Check for device state before unloading the driver (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Properly reset firmware statistics (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Make debug buffer log easier to view (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add module parameter alternate/short names (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Set FLOGI retry in additional firmware options for P2P (N2N) mode (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Shutdown board on thermal shutdown aen (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add ram area DDR for fwdump template entry T262 (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Remove sysfs node fw_dump_template (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: setup data needed in ISR before setting up the ISR (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Remove erroneous unused macro qla82xx_get_temp_val1() (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Indicate out-of-memory with -ENOMEM (Chad Dupuis) [1384091]
-- [scsi] be2iscsi: Reinit SGL handle, CID tables after TPE (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Use GFP_ATOMIC under spin lock (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Update driver version (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add checks to validate CID alloc/free (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove wq_name from beiscsi_hba (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove unused struct members (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove redundant receive buffers posting (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix iSCSI cmd cleanup IOCTL (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Set WRB invalid bit for SkyHawk (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Take iscsi_task ref in abort handler (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix for crash in beiscsi_eh_device_reset (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix use of invalidate command table req (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: set errno on error path (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: set errno on error path (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: allocate enough memory in beiscsi_boot_get_sinfo() (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: mark symbols static where possible (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Replace _bh with _irqsave/irqrestore (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: _bh for io_sgl_lock and mgmt_sgl_lock (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add missing unlock for mbox_lock (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove redundant iscsi_wrb desc memset (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix error return code (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Update the driver version (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Update copyright information (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix queue and connection parameters (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix async PDU handling path (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add FUNCTION_RESET during driver unload (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fail the sessions immediately after TPE (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add TPE recovery feature (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add V1 of EPFW cleanup IOCTL (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix POST check and reset sequence (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Move functions to right files (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add IOCTL to check UER supported (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix to add timer for UE detection (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix to make boot discovery non-blocking (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix checks for HBA in error state (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove isr_lock and dead code (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove alloc_mcc_tag & beiscsi_pci_soft_reset (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Check all zeroes IP before issuing IOCTL (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Handle only NET_PARAM in iface_get_param (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Rename iface get/set/create/destroy APIs (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Update iface handle before any set param (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Move VLAN code to common iface_set_param (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix release of DHCP IP in static mode (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix gateway APIs to support IPv4 & IPv6 (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Set and return right iface v4/v6 states (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Reduce driver load/unload time (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Replace _bh version for mcc_lock spinlock (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix to use correct configuration values (Maurizio Lombardi) [1382263]
-- [scsi] megaraid_sas: handle dma_addr_t right on 32-bit (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: array overflow in megasas_dump_frame() (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Change RAID_1_10_RMW_CMDS to RAID_1_PEER_CMDS and set value to 2 (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Indentation and smatch warning fixes (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Cleanup VD_EXT_DEBUG and SPAN_DEBUG related debug prints (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Increase internal command pool (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Use synchronize_irq to wait for IRQs to complete (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Bail out the driver load if ld_list_query fails (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Change build_mpt_mfi_pass_thru to return void (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: During OCR, if get_ctrl_info fails do not continue with OCR (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Do not set fp_possible if TM capable for non-RW syspdIO, change fp_possible to bool (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Remove unused pd_index from megasas_build_ld_nonrw_fusion (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: megasas_return_cmd does not memset IO frame to zero (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: max_fw_cmds are decremented twice, remove duplicate (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: update can_queue only if the new value is less (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Change max_cmd from u32 to u16 in all functions (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: set pd_after_lb from MR_BuildRaidContext and initialize pDevHandle to MR_DEVHANDLE_INVALID (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: latest controller OCR capability from FW before sending shutdown DCMD (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: avoid unaligned access in ioctl path (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: big endian support changes (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Big endian RDPQ mode fix (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: MR_TargetIdToLdGet u8 to u16 and avoid invalid raid-map access (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: In validate raid map, raid capability is not converted to cpu format for all lds (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: reduce size of fusion_context and use vmalloc if kmalloc fails (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: add print in device removal path (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: enhance debug logs in OCR context (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: set residual bytes count during IO completion (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: raid 1 write performance for large io (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: NVME fast path io support (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: NVME interface target prop added (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: NVME Interface detection and prop settings (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: change issue_dcmd to return void from int (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: megasas_get_request_descriptor always return valid desc (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Use DID_REQUEUE (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: RAID map is accessed for SYS PDs when use_seqnum_jbod_fp is not set (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Refactor MEGASAS_IS_LOGICAL macro using sdev (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: 32 bit descriptor fire cmd optimization (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: raid 1 fast path code optimize (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: cpu select rework (Tomas Henzl) [1417038]
-- [scsi] megaraid: Revert "scsi: megaraid_sas: Enable or Disable Fast path based on the PCI Threshold Bandwidth" (Tomas Henzl) [1417038]
-- [maintainers] Updating maintainers list for Cisco FNI and SNIC drivers (Maurizio Lombardi) [1388217]
-- [scsi] fnic: Avoid sending reset to firmware when another reset is in progress (Maurizio Lombardi) [1388217]
-- [scsi] fnic: Correcting rport check location in fnic_queuecommand_lck (Maurizio Lombardi) [1388217]
-- [scsi] fnic: use kernel's 'pM' format option to print MAC (Maurizio Lombardi) [1388217]
-- [scsi] fnic: pci_dma_mapping_error() doesn't return an error code (Maurizio Lombardi) [1388217]
-
-* Fri Mar 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-600.el7]
-- [powerpc] pseries: Automatically resize HPT for memory hot add/remove (David Gibson) [1305399]
-- [mm] memblock: don't mark memblock_phys_mem_size() as __init (David Gibson) [1305399]
-- [powerpc] mm: Split hash page table sizing heuristic into a helper (David Gibson) [1305399]
-- [powerpc] pseries: Add support for hash table resizing (David Gibson) [1305399]
-- [powerpc] pseries: Add hypercall wrappers for hash page table resizing (David Gibson) [1305399]
-- [powerpc] Remove the celleb support (David Gibson) [1305399]
-- [tty] hvc: remove celleb-only beat driver (David Gibson) [1305399]
-- [powerpc] ptrace: Fix cppcheck issue in gpr32_set_common/gpr32_get_common() (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Fix coredump since ptrace TM changes (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for Performance Monitor registers (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for EBB registers (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPPC_TAR, NT_PPC_PPR, NT_PPC_DSCR (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable NT_PPC_TM_CTAR, NT_PPC_TM_CPPR, NT_PPC_TM_CDSCR (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for TM SPR state (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPC_CVSX (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPC_CVMX (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPC_CFPR (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPC_CGPR (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Adapt gpr32_get, gpr32_set functions for transaction (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable in transaction NT_PPC_VSX ptrace requests (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable in transaction NT_PPC_VMX ptrace requests (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable in transaction NT_PRFPREG ptrace requests (Gustavo Duarte) [1187582]
-- [powerpc] process: Add the function flush_tmregs_to_thread (Gustavo Duarte) [1187582]
-- [powerpc] elf: Add powerpc specific core note sections (Gustavo Duarte) [1187582]
-- [powerpc] tm: Drop tm_orig_msr from thread_struct (Gustavo Duarte) [1187582]
-- [powerpc] pseries: Advertise Hot Plug Event support to firmware (Thomas Huth) [1305399 1323417]
-- [powerpc] prom: Switch to using structs for ibm_architecture_vec (Thomas Huth) [1305399 1323417]
-- [powerpc] prom: Define structs for client architecture vectors (Thomas Huth) [1305399 1323417]
-- [powerpc] prom: Fix sub-processor option passed to ibm, client-architecture-support (Thomas Huth) [1305399 1323417]
-- [powerpc] Add macros for the ibm_architecture_vec[] lengths (Thomas Huth) [1305399 1323417]
-- [powerpc] pseries: Implement indexed-count hotplug memory remove (Thomas Huth) [1323417]
-- [powerpc] pseries: Implement indexed-count hotplug memory add (Thomas Huth) [1323417]
-- [powerpc] pseries: Fix build break when MEMORY_HOTREMOVE=n (Thomas Huth) [1323417]
-- [powerpc] pseries: Introduce memory hotplug READD operation (Thomas Huth) [1323417]
-- [powerpc] pseries: Revert 'Auto-online hotplugged memory' (Thomas Huth) [1323417]
-- [powerpc] pseries: Make the acquire/release of the drc for memory a seperate step (Thomas Huth) [1323417]
-- [powerpc] pseries: Remove call to memblock_add() (Thomas Huth) [1323417]
-- [powerpc] pseries: Auto-online hotplugged memory (Thomas Huth) [1323417]
-- [powerpc] pseries: Use lmb_is_removable() to check removability (Thomas Huth) [1323417]
-- [powerpc] Fix unused function warning 'lmb_to_memblock' (Thomas Huth) [1323417]
-- [powerpc] of: Introduce device tree node flag helpers (Thomas Huth) [1323417]
-- [powerpc] pseries: Correct possible read beyond dlpar sysfs buffer (Thomas Huth) [1323417]
-- [powerpc] pseries: fix memory leak in queue_hotplug_event() error path (Thomas Huth) [1323417]
-- [powerpc] pseries: Use kernel hotplug queue for PowerVM hotplug events (Thomas Huth) [1323417]
-- [powerpc] pseries: Add support for hotplug interrupt source (Thomas Huth) [1323417]
-- [powerpc] pseries: Add pseries hotplug workqueue (Thomas Huth) [1323417]
-- [powerpc] pseries: Dynamic add entires to associativity lookup array (Thomas Huth) [1323417]
-- [powerpc] pseries: Move property cloning into its own routine (Thomas Huth) [1323417]
-- [powerpc] pseries: Update LMB associativity index during DLPAR add/remove (Thomas Huth) [1323417]
-- [powerpc] pseries: Refactor dlpar_add_lmb() code (Thomas Huth) [1323417]
-- [powerpc] pseries: Consolidate CPU hotplug code to hotplug-cpu.c (Thomas Huth) [1323417]
-- [powerpc] Ensure global functions include their prototype (Thomas Huth) [1323417]
-- [powerpc] arch/powerpc: replace obsolete strict_strto* calls (Thomas Huth) [1323417]
-- [powerpc] pseries: Verify CPU doesn't exist before adding (Thomas Huth) [1323417]
-- [powerpc] pseries: Release DRC when configure_connector fails (Thomas Huth) [1323417]
-- [powerpc] pseries: use kmemdup rather than duplicating its implementation (Thomas Huth) [1323417]
-- [powerpc] pseries: Fix possible leaked device node reference (Thomas Huth) [1323417]
-- [powerpc] pseries: Fix compile of memory hotplug without CONFIG_MEMORY_HOTREMOVE (Thomas Huth) [1323417]
-- [powerpc] pseries: Correct memory hotplug locking (Thomas Huth) [1323417]
-- [powerpc] pseries: Implement memory hotplug remove in the kernel (Thomas Huth) [1323417]
-- [powerpc] pseries: Implement memory hotplug add in the kernel (Thomas Huth) [1323417]
-- [powerpc] pseries: Create new device hotplug entry point (Thomas Huth) [1323417]
-- [powerpc] pseries: Declare the acquire/release drc index routines (Thomas Huth) [1323417]
-- [powerpc] Remove ppc_md.remove_memory (Thomas Huth) [1323417]
-- [powerpc] Fix comment typos in hotplug-memory.c (Thomas Huth) [1323417]
-- [powerpc] pseries: Define rtas hotplug event sections (Thomas Huth) [1323417]
-
-* Fri Mar 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-599.el7]
-- [kernel] tracing: Do not have 'comm' filter override event 'comm' field (Pratyush Anand) [1399999]
-- [kernel] tracing: Allow triggers to filter for CPU ids and process names (Pratyush Anand) [1399999]
-- [x86] apic: Order irq_enter/exit() calls correctly vs. ack_APIC_irq() (George Beshers) [1404816]
-- [x86] apic: Fix suspicious RCU usage in smp_trace_call_function_interrupt() (George Beshers) [1404816]
-- [x86] Consolidate irq entering inlines (George Beshers) [1404816]
-- [net] ip_tunnel: Create percpu gro_cell (Jiri Benc) [1424076]
-- [net] udp: fix errorneous sk_filter removal (Paolo Abeni) [1388467]
-- [net] l2tp: do not use udp_ioctl() (Paolo Abeni) [1388467]
-- [net] udp: properly cope with csum errors (Paolo Abeni) [1388467]
-- [net] udp: be less conservative with sock rmem accounting (Paolo Abeni) [1388467]
-- [net] udplite: fix NULL pointer dereference (Paolo Abeni) [1388467]
-- [net] udp: do fwd memory scheduling on dequeue (Paolo Abeni) [1388467]
-- [net] sock: add an explicit sk argument for ip_cmsg_recv_offset() (Paolo Abeni) [1388467]
-- [net] udp: use it's own memory accounting schema (Paolo Abeni) [1388467]
-- [net] udp: implement memory accounting helpers (Paolo Abeni) [1388467]
-- [net] sock: factor out helpers for memory and queue manipulation (Paolo Abeni) [1388467]
-- [net] Fix inverted test in __skb_recv_datagram (Paolo Abeni) [1388467]
-- [net] enable more fine-grained datagram reception control (Paolo Abeni) [1388467]
-- [net] add common accessor for setting dropcount on packets (Paolo Abeni) [1388467]
-- [net] ipvs: SH fallback and L4 hashing (Jakub Sitnicki) [1365002]
-- [net] ipvs: provide iph to schedulers (Jakub Sitnicki) [1365002]
-- [acpi] acpi / sysfs: Fix an issue for LoadTable opcode (Prarit Bhargava) [1425195]
-- [acpi] acpica: tables: Add new table events indicating table installation/uninstallation (Prarit Bhargava) [1425195]
-- [acpi] acpica: tables: Remove wrong table event macros (Prarit Bhargava) [1425195]
-- [misc] cxl: fix nested locking hang during EEH hotplug (Steve Best) [1429625]
-- [misc] cxl: Prevent read/write to AFU config space while AFU not configured (Steve Best) [1429625]
-- [edac] enable skx_edac (Aristeu Rozanski) [1273747]
-- [edac] skx_edac: Add EDAC driver for Skylake (Aristeu Rozanski) [1273747]
-- [netdrv] broadcom: bnx2x: use new api ethtool_{get|set}_link_ksettings (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: avoid two atomic ops per page on x86 (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Fix printk() message errors (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Prevent tunnel config for 577xx (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Correct ringparam estimate when DOWN (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: fix improper return value (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: use reset to set network header (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: switch to napi_complete_done() (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: cleanup ETH_* defines (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: free the mac filter group list before freeing the cmd (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: allocate mac filtering pending list in PAGE_SIZE increments (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: allocate mac filtering 'mcast_list' in PAGE_SIZE increments (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: don't reset chip on cleanup if PCI function is offline (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Add support for segmentation of tunnels with outer checksums (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Don't flush multicast MACs (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Move all UDP port notifiers to single function (Michal Schmidt) [1391238]
-- [netdrv] cxgb4vf: Fix queue allocation for 40G adapter (Sai Vemuri) [1250931]
-- [netdrv] cxgb4: Fix issue while re-registering VF mgmt netdev (Sai Vemuri) [1250931]
-- [netdrv] cxgb4/cxgb4vf: Add set VF mac address support (Sai Vemuri) [1250931]
-- [netdrv] cxgb4: Add control net_device for configuring PCIe VF (Sai Vemuri) [1250931]
-- [infiniband] iw_cxgb4: set *bad_wr for post_send/post_recv errors (Sai Vemuri) [1416917]
-
-* Thu Mar 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-598.el7]
-- [netdrv] e1000e: driver trying to free already-free irq (Jarod Wilson) [1383529]
-- [netdrv] e1000e/ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Jarod Wilson) [1383529]
-- [netdrv] e1000e: Use pci_(request|release)_mem_regions (Jarod Wilson) [1383529]
-- [netdrv] e1000e: don't modify SYSTIM registers during SIOCSHWTSTAMP ioctl (Jarod Wilson) [1383529]
-- [netdrv] e1000e: mark shifted values as unsigned (Jarod Wilson) [1383529]
-- [netdrv] e1000e: use BIT() macro for bit defines (Jarod Wilson) [1383529]
-- [netdrv] e1000e: e1000e_cyclecounter_read(): do overflow check only if needed (Jarod Wilson) [1383529]
-- [netdrv] e1000e: e1000e_cyclecounter_read(): fix er32(SYSTIML) overflow check (Jarod Wilson) [1383529]
-- [netdrv] e1000e: Cleanup consistency in ret_val variable usage (Jarod Wilson) [1383529]
-- [netdrv] e1000e: fix ethtool autoneg off for non-copper (Jarod Wilson) [1383529]
-- [netdrv] e1000e: call ndo_stop() instead of dev_close() when running offline selftest (Jarod Wilson) [1383529]
-- [netdrv] sfc: do not device_attach if a reset is pending (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: forget filters from sw table if hw replies ENOENT on removing them (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fix filter_id misinterpretation in edge case (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: only fall back to a lower interrupt mode if it is supported (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: MSI-X is the only interrupt mode for EF10 VFs (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fix swapped arguments to efx_ef10_handle_rx_event_errors (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: configure UDP tunnel offload ports (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: update mcdi_pcol definitions for MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: call mcdi_reboot_detected() when MC reboots during an MCDI command (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: harden driver against MC resets during initial probe (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: set csum_level for encapsulated packets (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: process RX event inner checksum flags (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: report 4-tuple UDP hashing to ethtool, if it's enabled (Jarod Wilson) [1389480 1386061 1385378 1385133]
-- [netdrv] sfc: enable 4-tuple RSS hashing for UDP (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [net] Delete trailing semi-colon from definition of netdev_WARN() (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fix an off by one bug (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc-falcon: get rid of custom busy polling code (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: get rid of custom busy polling code (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fix an off-by-one compare on an array size (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: generalize napi_complete_done() (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: insert catch-all filters for encapsulated traffic (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: refactor debug-or-warnings printks (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [net] implement netif_cond_dbg macro (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fixes to filter restore handling (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: reduce severity of PIO buffer alloc failures (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: read back RX hash config from the NIC when querying it with ethtool -x (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: support setting RSS hash key through ethtool API (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: get PIO buffer size from the NIC (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: allow PIO more often (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: Replace memset with eth_zero_addr (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: efx_get_phys_port_id() can be static (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: stop setting dev_port (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: implement ndo_get_phys_port_name (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: support ndo_get_phys_port_id even when !CONFIG_SFC_SRIOV (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: don't report RX hash keys to ethtool when RSS wasn't enabled (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc-falcon: declare module version (same as ethtool drvinfo version) (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: declare module version (same as ethtool drvinfo version) (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: remove EFX_BUG_ON_PARANOID, use EFX_WARN_ON_[ONCE_]PARANOID instead (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: remove RESET_TYPE_RX_RECOVERY (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] ethernet: sfc: Add Kconfig entry for vendor Solarflare (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] sfc: don't select SFC_FALCON (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] sfc: fix debug message format string in efx_farch_handle_rx_not_ok (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] sfc: separate out SFC4000 ("Falcon") support into new sfc-falcon driver (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] sfc: remove unneeded variable (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: remove Software TSO (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: handle failure to allocate TSOv2 contexts (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: Firmware-Assisted TSO version 2 (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: Update EF10 register definitions (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: Update MCDI protocol definitions (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: remove napi_hash_del() call (Jarod Wilson) [1385133 1385378 1386061 1389480]
-
-* Thu Mar 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-597.el7]
-- [netdrv] igb/igbvf: Don't use lco_csum to compute IPv4 checksum (Corinna Vinschen) [1383528]
-- [netdrv] igbvf: bump version to igbvf-2.4.0 (Corinna Vinschen) [1383528]
-- [netdrv] igb/igbvf: Add support for GSO partial (Corinna Vinschen) [1383528]
-- [netdrv] igb: Fix hw_dbg logging in igb_update_flash_i210 (Corinna Vinschen) [1383527]
-- [netdrv] igb: add i211 to i210 PHY workaround (Corinna Vinschen) [1383527]
-- [netdrv] igb: close/suspend race in netif_device_detach (Corinna Vinschen) [1383527]
-- [netdrv] igb: reset the PHY before reading the PHY ID (Corinna Vinschen) [1383527]
-- [netdrv] igb: use igb_adapter->io_addr instead of e1000_hw->hw_addr (Corinna Vinschen) [1383527]
-- [netdrv] igb: Workaround for igb i210 firmware issue (Corinna Vinschen) [1383527]
-- [netdrv] igb: correct register comments (Corinna Vinschen) [1383527]
-- [netdrv] igb: Realign bad indentation (Corinna Vinschen) [1383527]
-- [netdrv] igb/igbvf: Don't use lco_csum to compute IPv4 checksum (Corinna Vinschen) [1383527]
-- [netdrv] igb: restore PPS signal on igb_ptp_reset (Corinna Vinschen) [1383527]
-- [netdrv] igb: bump version to igb-5.4.0 (Corinna Vinschen) [1383527]
-- [netdrv] igb: fix non static symbol warning (Corinna Vinschen) [1383527]
-- [netdrv] ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Corinna Vinschen) [1383527]
-- [netdrv] igb: fix error code in igb_add_ethtool_nfc_entry() (Corinna Vinschen) [1383527]
-- [netdrv] igb: support RX flow classification by VLAN (Corinna Vinschen) [1383527]
-- [netdrv] igb: support RX flow classification by ethertype (Corinna Vinschen) [1383527]
-- [netdrv] igb: add support of RX network flow classification (Corinna Vinschen) [1383527]
-- [netdrv] igb: fix adjusting PTP timestamps for Tx/Rx latency (Corinna Vinschen) [1383527]
-- [netdrv] igb: Only DMA sync frame length (Corinna Vinschen) [1383527]
-- [netdrv] igb: call igb_ptp_suspend during suspend/resume cycle (Corinna Vinschen) [1383527]
-- [netdrv] igb: implement igb_ptp_suspend (Corinna Vinschen) [1383527]
-- [netdrv] igb: re-use igb_ptp_reset in igb_ptp_init (Corinna Vinschen) [1383527]
-- [netdrv] igb: introduce IGB_PTP_OVERFLOW_CHECK flag (Corinna Vinschen) [1383527]
-- [netdrv] igb: introduce ptp_flags variable and use it to replace IGB_FLAG_PTP (Corinna Vinschen) [1383527]
-- [netdrv] ethernet/intel: Use pci_(request|release)_mem_regions (Corinna Vinschen) [1383527]
-- [netdrv] igb/igbvf: Add support for GSO partial (Corinna Vinschen) [1383527]
-- [netdrv] igb: adjust PTP timestamps for Tx/Rx latency (Corinna Vinschen) [1383527]
-- [netdrv] igb: make igb_update_pf_vlvf static (Corinna Vinschen) [1383527]
-- [netdrv] igb: use BIT() macro or unsigned prefix (Corinna Vinschen) [1383527]
-- [netdrv] generalize napi_complete_done() (Ivan Vecera) [1382354]
-- [netdrv] be2net: get rid of custom busy poll code (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix initial MAC setting (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix MAC addr setting on privileged BE3 VFs (Ivan Vecera) [1382354]
-- [netdrv] be2net: don't delete MAC on close on unprivileged BE3 VFs (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix status check in be_cmd_pmac_add() (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix unicast list filling (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix accesses to unicast list (Ivan Vecera) [1382354]
-- [netdrv] benet: stricter vxlan offloading check in be_features_check (Ivan Vecera) [1382354]
-- [netdrv] emulex: benet: use new api ethtool_{get|set}_link_ksettings (Ivan Vecera) [1382354]
-- [netdrv] be2net: Add DEVSEC privilege to SET_HSW_CONFIG command (Ivan Vecera) [1382354]
-- [netdrv] be2net: do not call napi_hash_del() (Ivan Vecera) [1382354]
-- [netdrv] be2net: Enable VF link state setting for BE3 (Ivan Vecera) [1382354]
-- [netdrv] be2net: Fix TX stats for TSO packets (Ivan Vecera) [1382354]
-- [netdrv] be2net: Update Copyright string in be_hw.h (Ivan Vecera) [1382354]
-- [netdrv] be2net: NCSI FW section should be properly updated with ethtool for BE3 (Ivan Vecera) [1382354]
-- [netdrv] be2net: Provide an alternate way to read pf_num for BEx chips (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix non static symbol warnings (Ivan Vecera) [1382354]
-- [netdrv] be2net: mark symbols static where possible (Ivan Vecera) [1382354]
-- [netdrv] be2net: Update the driver version to 11.1.0.0 (Ivan Vecera) [1382354]
-- [netdrv] be2net: Fix mac address collision in some configurations (Ivan Vecera) [1382354]
-- [netdrv] be2net: Avoid redundant addition of mac address in HW (Ivan Vecera) [1382354]
-- [netdrv] be2net: Add privilege level check for OPCODE_COMMON_GET_EXT_FAT_CAPABILITIES SLI cmd (Ivan Vecera) [1382354]
-- [netdrv] be2net: Issue COMMON_RESET_FUNCTION cmd during driver unload (Ivan Vecera) [1382354]
-- [netdrv] be2net: Support UE recovery in BEx/Skyhawk adapters (Ivan Vecera) [1382354]
-- [netdrv] be2net: replace polling with sleeping in the FW completion path (Ivan Vecera) [1382354]
-- [netdrv] be2net: Avoid unnecessary firmware updates of multicast list (Ivan Vecera) [1382354]
-- [netdrv] be2net: do not remove vids from driver table if be_vid_config() fails (Ivan Vecera) [1382354]
-- [netdrv] be2net: clear vlan-promisc setting before programming the vlan list (Ivan Vecera) [1382354]
-
-* Thu Mar 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-596.el7]
-- [netdrv] amd-xgbe: Check xgbe_init() return code (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add a hardware quirk for register definitions (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix IRQ processing when running in single IRQ mode (David Arcari) [1339783]
-- [netdrv] Rename CONFIG_PM to CONFIG_PM_SLEEP in XGBE driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Update connection validation for backplane mode (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix maximum GPIO value check (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix possible uninitialized variable (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix up some coccinelle identified warnings (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix mask appliciation for Clause 37 register (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for a KR redriver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for MDIO attached PHYs (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for SFP+ modules (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add I2C support for sideband communication (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add ECC status support for the device memory (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for new DMA interrupt mode (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Allow for a greater number of Rx queues (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add PCI device support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add a workaround for Tx timestamp issue (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Guard against incorrectly generated interrupts (David Arcari) [1339783]
-- [netdrv] xgbe: use new api ethtool_{get|set}_link_ksettings (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for supporting PCI devices (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Update how to determine DMA channel status (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Support for 64-bit management counter registers (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for a new PCS register access method (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for clause 37 auto-negotiation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for introduction of clause 37 autoneg (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for working with more than one type of phy (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Perform priority-based hardware FIFO allocation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for priority-based FIFO allocation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix formatting of PCS register dump (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix error return code in xgbe_probe() (David Arcari) [1339783]
-- [netdrv] xgbe: constify get_netdev_ops and get_ethtool_ops (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Reset running devices after resume from hibernate (David Arcari) [1339783]
-- [netdrv] amd-xgbe: use correct format specifier (David Arcari) [1339783]
-- [netdrv] relax setup_tc ndo op handle restriction (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Mask auto-negotiation interrupts in ISR (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check Rx queue fifos before stopping Rx DMA (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Do traffic class setup when called through dcbnl (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix the mapping of priorities to traffic classes (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Enable/disable PFC per traffic class (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Verify forced speed matches the active speedset (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use __napi_schedule_irqoff (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Change from napi_complete to napi_complete_done (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Disable VLAN filtering when in promiscuous mode (David Arcari) [1339783]
-- [netdrv] rework setup_tc ndo op to consume general tc operand (David Arcari) [1339783]
-- [netdrv] rework ndo tc op to consume additional qdisc handle parameter (David Arcari) [1339783]
-- [netdrv] amd-xgbe: fix a couple timeout loops (David Arcari) [1339783]
-- [netdrv] move skb_mark_napi_id() into core networking stack (David Arcari) [1339783]
-- [netdrv] device property: acpi: Make use of the new DMA Attribute APIs (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix race between access of desc and desc index (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use wmb before updating current descriptor count (David Arcari) [1339783]
-- [netdrv]  get rid of unnecessary initializations in .get_drvinfo() (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use system workqueue for device restart (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check for successful buffer allocation before use (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove the XGBE_LINK state bit (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use device workqueue instead of system workqueue (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add receive buffer unavailable statistic (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Simplify calculation and setting of queue fifos (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add ethtool error and debug messages (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add ethtool support for setting the msglevel (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use proper DT / ACPI precedence checking (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove an unneeded semicolon on a switch statement (David Arcari) [1339783]
-- [netdrv] amd-xgbe: fix potential memory leak in xgbe-debugfs (David Arcari) [1339783]
-- [netdrv] treewide: fix typos in comment blocks (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix DMA API debug warning (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add the __GFP_NOWARN flag to Rx buffer allocation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Unify coherency checking logic with device_dma_is_coherent() (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use disable_irq_nosync from within timer function (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add more netif_dbg output to the driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix initial mode when auto-negotiation is disabled (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add setting of a missing hardware feature (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove manual check and set of dma_mask pointer (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix flow control setting logic (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Support defining PHY resources in ETH device node (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Move the PHY support into amd-xgbe (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Fix initial mode when autoneg is disabled (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Rework the Rx path SKB allocation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add netif_* message support to the driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add additional stats to be reported via ethtool (David Arcari) [1339783]
-- [netdrv] batch of last_rx update avoidance in ethernet drivers (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add hardware dependency (David Arcari) [1339783]
-- [netdrv] ethernet: amd: AMD_XGBE should depend on HAS_DMA (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for the netdev Tx watchdog (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Move Rx mode configuration into init (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Allow rx-frames coalescing to be changed anytime (David Arcari) [1339783]
-- [netdrv] ptp: xgbe: convert to the 64 bit get/set time methods (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use napi_alloc_skb when allocating skb in softirq (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix Rx coalescing reporting (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove Tx coalescing (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Set DMA mask based on hardware register value (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use the new DMA memory barriers where appropriate (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Clarify output message about queues (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Provide support for auto-negotiation timeout (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Use the phy_driver flags field (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Use phydev advertising field vs supported (David Arcari) [1339783]
-- [netdrv] ethernet: codespell comment spelling fixes (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Request IRQs only after driver is fully setup (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: PHY KX/KR mode differences (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check per channel DMA interrupt use in main ISR (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Set RSS enablement based on hardware features (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Adjust for zero-based traffic class count (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use proper Rx flow control register (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Allow certain PHY settings to be set by UEFI (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add ACPI support (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Use the proper auto-negotiation XNP registers (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Properly support the FEC auto-negotiation (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Change auto-negotiation logic (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove need for Tx path spinlock (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Simplify the Rx desciptor ring tracking (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Clear all state during a device restart (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: On suspend, save CTRL1 reg for use on resume (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add check to be sure amd-xgbe-phy driver is used (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Checkpatch fixes (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Checkpatch fixes (David Arcari) [1339783]
-- [netdrv] rename vlan_tx_* helpers since "tx" is misleading there (David Arcari) [1339783]
-- [netdrv] xgbe: convert to timecounter adjtime (David Arcari) [1339783]
-- [netdrv] time: move the timecounter/cyclecounter code into its own file (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Let AMD_XGBE_PHY depend on HAS_IOMEM (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use disable_irq_nosync when in IRQ context (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prevent Tx cleanup stall (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Associate Tx SKB with proper ring descriptor (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Do not clear interrupt indicator (David Arcari) [1339783]
-- [netdrv] amd-xgbe: IRQ names require allocated memory (David Arcari) [1339783]
-- [netdrv] ethtool: Support for configurable RSS hash function (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for the skb->xmit_more flag (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Perform Tx coalescing on a packet basis (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove unused variable (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add BQL support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Separate Tx/Rx ring data fields into new structs (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Incorporate Smatch coding suggestion (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Tx engine must not be active before stopping it (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add a read memory barrier to Tx/Rx path (David Arcari) [1339783]
-- [netdrv] amd-xgbe: use netdev_rss_key_fill() helper (David Arcari) [1339783]
-- [netdrv] amd-xgbe: fix ->rss_hash_type (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix sparse endian warnings (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check for complete packet on skb allocation error (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Free channel/ring structures later (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Let AMD_XGBE depend on HAS_IOMEM (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Sync PCS and PHY modes after reset (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix a spelling error (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add receive side scaling ethtool support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Provide support for receive side scaling (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for per DMA channel interrupts (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Implement split header receive support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use page allocations for Rx buffers (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use the u32 data type for descriptors (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Rename pre_xmit function to dev_xmit (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Move ring allocation to device open (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix napi Rx budget accounting (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Properly handle feature changes via ethtool (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Fix build break for missing declaration (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Enable interrupts for all management counters (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Treat certain counter registers as 64 bit (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Checkpatch driver fixes (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Checkpatch driver fixes (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Enhance parallel detection to support KR speed (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Check device for current speed mode (KR/KX) (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix initialization of the wrong spin lock (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use the Tx queue count for Tx flow control support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix the xpcs mmd debugfs support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Reported fifo size from hardware is not correct (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check for Tx hardware queue flushing support (David Arcari) [1339783]
-- [netdrv] amd: xgbe: fix duplicate #include of linux/phy.h (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Perform phy connect/disconnect at dev open/stop (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use dma_set_mask_and_coherent to set DMA mask (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Allow more time for Rx/Tx to become ready (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove unnecessary spinlocks (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add traffic class support (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Print out the auto-negotiation method used (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Updates to KR training initiation (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Updates to rate change complete check (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Base queue fifo size and enablement on ring count (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Update/fix 2.5GbE support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add hardware timestamp support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add dma-coherent to device bindings documentation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix error return code in xgbe_probe() (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove the adjustments needed for fixed speed (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Base AXI DMA cache settings on device tree (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Performance enhancements (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Call netif_napi_del on ndo_stop operation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Clear the proper MTL interrupt register (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix debugfs compatibility change with kstrtouint (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Resolve checkpatch warning about sscanf usage (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Change destination address filtering support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for VLAN filtering (David Arcari) [1339783]
-- [netdrv] amd-xgbe: VLAN Rx tag stripping fix (David Arcari) [1339783]
-- [netdrv] amd-xgbe: VLAN Tx tag insertion fix (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Make defines in xgbe.h unique (David Arcari) [1339783]
-- [netdrv] amd-xgbe: unwind on error in xgbe_mdio_register() (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Rename MAX_DMA_CHANNELS to avoid powerpc conflict (David Arcari) [1339783]
-- [netdrv] amd-xgbe: fix unused variable compilation warning in phylib driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove unnecessary include (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Maintainer information (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Configuration and build support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Initial AMD 10GbE phylib driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Initial AMD 10GbE platform driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: AMD 10GbE device bindings documentation (David Arcari) [1339783]
-
-* Thu Mar 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-595.el7]
-- [netdrv] ixgbevf: Add support for VF promiscuous mode (Ken Cox) [1383525]
-- [netdrv] ixgbevf: restore hw_addr on resume or error (Ken Cox) [1383525]
-- [netdrv] ixgbevf: fix AER error handling (Ken Cox) [1383525]
-- [netdrv] ixgbevf: handle race between close and suspend on shutdown (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Handle previously-freed msix_entries (Ken Cox) [1383525]
-- [netdrv] ixgbevf: add spinlocks for MTU change calls (Ken Cox) [1383525]
-- [netdrv] ixgbevf: fix incorrect MAC address on load (Ken Cox) [1383525]
-- [netdrv] ixgbevf: only check Tx queue enablement when debugging (Ken Cox) [1383525]
-- [netdrv] ixgbevf: change hw_dbg to use netdev_dbg (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Commonize mailbox write/read (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Add range checking for setting MTU (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Protect ixgbevf_reset_subtask from remove event (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Add lock around ixgbevf_reinit_locked call (Ken Cox) [1383525]
-- [netdrv] ixgbevf: add VF support for new hardware (Ken Cox) [1383525]
-- [netdrv] ixgbevf: bump version number (Ken Cox) [1383525]
-- [netdrv] ixgbevf: fix NACK check in ixgbevf_set_uc_addr_vf() (Ken Cox) [1383525]
-- [netdrv] ixgbevf: ixgbevf_write/read_posted_mbx should use IXGBE_ERR_MBX to initialize ret_val (Ken Cox) [1383525]
-- [netdrv] ixgbe: Add PF support for VF promiscuous mode (Ken Cox) [1383524]
-- [netdrv] ixgbe: Implement support for firmware-controlled PHYs (Ken Cox) [1333482 1383524]
-- [netdrv] ixgbe: Implement firmware interface to access some PHYs (Ken Cox) [1383524]
-- [netdrv] ixgbe: Remove unused firmware version functions and method (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix issues with EEPROM access (Ken Cox) [1383524]
-- [netdrv] ixgbe: Configure advertised speeds correctly for KR/KX backplane (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix incorrect bitwise operations of PTP Rx timestamp flags (Ken Cox) [1383524]
-- [netdrv] ixgbe: fix AER error handling (Ken Cox) [1383524]
-- [netdrv] ixgbe: handle close/suspend race with netif_device_detach/present (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix reporting of 100Mb capability (Ken Cox) [1383524]
-- [netdrv] ixgbe: Reduce I2C retry count on X550 devices (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add bounds check for x540 LED functions (Ken Cox) [1383524]
-- [netdrv] ixgbe: add mask for 64 RSS queues (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix check for ixgbe_phy_x550em_ext_t reset (Ken Cox) [1383524]
-- [netdrv] ixgbe: Report driver version to firmware for x550 devices (Ken Cox) [1383524]
-- [netdrv] ixgbe: do not disable FEC from the driver (Ken Cox) [1383524]
-- [netdrv] ixgbe/ixgbevf: Don't use lco_csum to compute IPv4 checksum (Ken Cox) [1383524]
-- [netdrv] ixgbe: ixgbe_atr() compute l4_proto only if non-paged data has network/transport headers (Ken Cox) [1383524]
-- [netdrv] ixgbe: ixgbe_atr() should access udp_hdr(skb) only for UDP packets (Ken Cox) [1383524]
-- [netdrv] ixgbe: Correct X550 phy ID (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add X553 FW ALEF support (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: set device if before calling get_invariants (Ken Cox) [1383524]
-- [netdrv] ixgbe: use link instead of I2C combined abstraction (Ken Cox) [1383524]
-- [netdrv] ixgbe: remove SFP ixfi support (Ken Cox) [1383524]
-- [netdrv] ixgbe: Handle previously-freed msix_entries (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add X553 PHY FC autoneg support (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: fix link status check for copper X550em (Ken Cox) [1383524]
-- [netdrv] ixgbe: do not use ixgbe specific mdio defines (Ken Cox) [1383524]
-- [netdrv] ixgbe: Update setup PHY link to unset all speeds (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: Add support to retrieve and store LED link active (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: Add X552 iXFI configuration helper function (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: fix panic when using macvlan with l2-fwd-offload enabled (Ken Cox) [1383524]
-- [netdrv] ixgbe: enable tx queues after link up (Ken Cox) [1383524]
-- [netdrv] ixgbe: reset before SRIOV init to avoid mailbox issues (Ken Cox) [1383524]
-- [netdrv] ixgbe: Support 4 queue RSS on VFs with 1 or 2 queue RSS on PF (Ken Cox) [1383524]
-- [netdrv] ixgbe: Limit reporting of redirection table if SR-IOV is enabled (Ken Cox) [1383524]
-- [netdrv] ixgbe: Allow setting multiple queues when SR-IOV is enabled (Ken Cox) [1383524]
-- [netdrv] ixgbe: Use MDIO_PRTAD_NONE consistently (Ken Cox) [1383524]
-- [netdrv] ixgbe: Indicate support for pause frames in all cases (Ken Cox) [1383524]
-- [netdrv] ixgbe: Resolve NULL reference by setting {read, write}_reg_mdi (Ken Cox) [1383524]
-- [netdrv] ixgbe: make ixgbe_led_on/off_t_x550em static (Ken Cox) [1383524]
-- [netdrv] ixgbe: simplify the logic for setting VLAN filtering (Ken Cox) [1383524]
-- [netdrv] ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Ken Cox) [1383524]
-- [netdrv] ixgbe: use IS_ENABLED() instead of checking for built-in or module (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add support for new X557 device (Ken Cox) [1383524]
-- [netdrv] ixgbe: add device to MDIO speed setting (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix led interface for X557 devices (Ken Cox) [1383524]
-- [netdrv] ixgbe: add support for geneve Rx offload (Ken Cox) [1383524]
-- [netdrv] ixgbe: fully disable hardware RSC logic when disabling RSC (Ken Cox) [1383524]
-- [netdrv] ixgbe: report correct media type for KR, KX and KX4 interfaces (Ken Cox) [1383524]
-- [netdrv] ixgbe: Do not clear RAR entry when clearing VMDq for SAN MAC (Ken Cox) [1383524]
-- [netdrv] ixgbe: use atomic bitwise operations when handling reset requests (Ken Cox) [1383524]
-- [netdrv] ixgbe: only check Tx queue enablement when debugging (Ken Cox) [1383524]
-- [netdrv] ixgbe: Re-enable ability to toggle VLAN filtering (Ken Cox) [1383524]
-- [netdrv] ixgbe: Force VLNCTRL.VFE to be set in all VMDq paths (Ken Cox) [1383524]
-- [netdrv] ixgbe: cleanup crosstalk fix (Ken Cox) [1383524]
-- [netdrv] ixgbe: remove redundant check on ret_val (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add missing destroy_workqueue() on error in ixgbe_init_module() (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix minor typo while freeing irq (Ken Cox) [1383524]
-- [netdrv] ixgbe: Change register variable to unsigned (Ken Cox) [1383524]
-- [netdrv] ixgbevf: Correct parameter sent to LED function (Ken Cox) [1383524]
-- [netdrv] ixgbe: napi_poll must return the work done (Ken Cox) [1383524]
-- [netdrv] ixgbe: fixup comments after "Future-proof tunnel offload handlers" (Ken Cox) [1383524]
-- [netdrv] ixgbe: Correct reporting of timestamping for x550 (Ken Cox) [1383524]
-- [netdrv] ethernet/intel: Use pci_(request|release)_mem_regions (Ken Cox) [1383524]
-- [netdrv] ixgbe: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix VLAN features error (Ken Cox) [1383524]
-- [netdrv] ixgbe/ixgbevf: Add support for GSO partial (Ken Cox) [1383524]
-- [netdrv] ixgbe/ixgbevf: Add support for bulk free in Tx cleanup & cleanup boolean logic (Ken Cox) [1383524]
-- [netdrv] ixgbe: add a callback to set the maximum transmit bitrate (Ken Cox) [1383524]
-- [netdrv] ixgbe: use eth_platform_get_mac_address() (Ken Cox) [1383524]
-- [netdrv] ixgbe: bulk free SKBs during TX completion cleanup cycle (Ken Cox) [1383524]
-
-* Wed Mar 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-594.el7]
-- [net] bridge: set error code on failure (Ivan Vecera) [1352289]
-- [net] bridge: multicast: restore perm router ports on multicast enable (Ivan Vecera) [1352289]
-- [net] bridge: add the multicast_flood flag attribute to brport_attrs (Ivan Vecera) [1352289]
-- [net] bridge: add address and vlan to fdb warning messages (Ivan Vecera) [1352289]
-- [net] netfilter: bridge: clarify bridge/netfilter message (Ivan Vecera) [1352289]
-- [net] bridge: add helper to call /sbin/bridge-stp (Ivan Vecera) [1352289]
-- [net] bridge: add per-port multicast flood flag (Ivan Vecera) [1352289]
-- [net] bridge: change unicast boolean to exact pkt_type (Ivan Vecera) [1352289]
-- [net] bridge: don't increment tx_dropped in br_do_proxy_arp (Ivan Vecera) [1352289]
-- [net] bridge: re-introduce 'fix parsing of MLDv2 reports' (Ivan Vecera) [1352289]
-- [net] bridge: switchdev: Add forward mark support for stacked devices (Ivan Vecera) [1352289]
-- [net] switchdev: Support parent ID comparison for stacked devices (Ivan Vecera) [1352289]
-- [net] team: loadbalance: push lacpdus to exact delivery (Ivan Vecera) [1352289]
-- [net] bridge: export also pvid flag in the xstats flags (Ivan Vecera) [1352289]
-- [net] bridge: export vlan flags with the stats (Ivan Vecera) [1352289]
-- [net] bridge: consolidate bridge and port linkxstats calls (Ivan Vecera) [1352289]
-- [net] switchdev: Put export declaration in the right place (Ivan Vecera) [1352289]
-- [net] bridge: Fix problems around fdb entries pointing to the bridge device (Ivan Vecera) [1352289]
-- [net] bridge: Fix incorrect re-injection of LLDP packets (Ivan Vecera) [1352289]
-- [net] bridge: br_set_ageing_time takes a clock_t (Ivan Vecera) [1352289]
-- [net] bridge: fix br_stp_enable_bridge comment (Ivan Vecera) [1352289]
-- [net] switchdev: change ageing_time type to clock_t (Ivan Vecera) [1352289]
-- [net] bridge: remove _deliver functions and consolidate forward code (Ivan Vecera) [1352289]
-- [net] bridge: drop skb2/skb0 variables and use a local_rcv boolean (Ivan Vecera) [1352289]
-- [net] bridge: rearrange flood vs unicast receive paths (Ivan Vecera) [1352289]
-- [net] bridge: minor style adjustments in br_handle_frame_finish (Ivan Vecera) [1352289]
-- [net] bridge: extend MLD/IGMP query stats (Ivan Vecera) [1352289]
-- [net] net_sched: fix mirrored packets checksum (Ivan Vecera) [1352289]
-- [net] ipv4: Fix ip_skb_dst_mtu to use the sk passed by ip_finish_output (Ivan Vecera) [1352289]
-- [net] bridge: add support for IGMP/MLD stats and export them via netlink (Ivan Vecera) [1352289]
-- [net] rtnetlink: add support for the IFLA_STATS_LINK_XSTATS_SLAVE attribute (Ivan Vecera) [1352289]
-- [net] bridge: fix vlan stats continue counter (Ivan Vecera) [1352289]
-- [net] bridge: Fix ipv6 mc snooping if bridge has no ipv6 address (Ivan Vecera) [1352289]
-- [net] bridge: Fix incorrect re-injection of STP packets (Ivan Vecera) [1352289]
-- [net] bridge: fix igmp / mld query parsing (Ivan Vecera) [1352289]
-- [net] bridge: fix old ioctl unlocked net device walk (Ivan Vecera) [1352289]
-- [net] bridge: netlink: export per-vlan stats (Ivan Vecera) [1352289]
-- [net] bridge: vlan: learn to count (Ivan Vecera) [1352289]
-- [net] rtnetlink: add linkxstats callbacks and attribute (Ivan Vecera) [1352289]
-- [net] rtnetlink: allow rtnl_fill_statsinfo to save private state counter (Ivan Vecera) [1352289]
-- [net] bridge: fix potential use-after-free when hook returns QUEUE or STOLEN verdict (Ivan Vecera) [1352289]
-- [net] bridge: mcast: add support for more router port information dumping (Ivan Vecera) [1352289]
-- [net] bridge: mcast: add support for temporary port router (Ivan Vecera) [1352289]
-- [net] bridge: mcast: do nothing if port's multicast_router is set to the same val (Ivan Vecera) [1352289]
-- [net] bridge: mcast: use names for the different multicast_router types (Ivan Vecera) [1352289]
-- [net] fix bridge multicast packet checksum validation (Ivan Vecera) [1352289]
-- [net] bridge: use kobj_to_dev instead of to_dev (Ivan Vecera) [1352289]
-- [net] netlink: Rightsize IFLA_AF_SPEC size calculation (Ivan Vecera) [1352289]
-- [net] inet: ip_skb_dst_mtu() should use sk_fullsock() (Ivan Vecera) [1352289]
-- [net] bridge: Add br_netif_receive_skb remove netif_receive_skb_sk (Ivan Vecera) [1352289]
-- [net] bridge: Introduce br_send_bpdu_finish (Ivan Vecera) [1352289]
-- [net] bridge: fix igmpv3 / mldv2 report parsing (Ivan Vecera) [1352289]
-- [net] netfilter: bridge: fix IPv6 packets not being bridged with CONFIG_IPV6=n (Ivan Vecera) [1352289]
-- [net] fix wrong skb_get() usage / crash in IGMP/MLD parsing code (Ivan Vecera) [1352289]
-- [net] bridge: netlink: account for the IFLA_BRPORT_PROXYARP_WIFI attribute size and policy (Ivan Vecera) [1352289]
-- [net] bridge: netlink: account for the IFLA_BRPORT_PROXYARP attribute size and policy (Ivan Vecera) [1352289]
-- [net] bridge: Don't segment multiple tagged packets on bridge device (Ivan Vecera) [1352289]
-- [net] bridge: stp: when using userspace stp stop kernel hello and hold timers (Ivan Vecera) [1352289]
-- [net] bridge: mdb: notify on router port add and del (Ivan Vecera) [1352289]
-- [net] bridge: Fix setting a flag in br_fill_ifvlaninfo_range(). (Ivan Vecera) [1352289]
-- [net] bridge: mcast: fix br_multicast_dev_del warn when igmp snooping is not defined (Ivan Vecera) [1352289]
-- [net] bridge: multicast: treat igmpv3 report with INCLUDE and no sources as a leave (Ivan Vecera) [1352289]
-- [net] bridge: multicast: add a comment to br_port_state_selection about blocking state (Ivan Vecera) [1352289]
-- [net] bridge: multicast: restore router configuration on port link down/up (Ivan Vecera) [1352289]
-- [net] bridge: fix multicast router rlist endless loop (Ivan Vecera) [1352289]
-- [net] bridge: fix br_multicast_query_expired() bug (Ivan Vecera) [1352289]
-- [net] bridge: skip fdb add if the port shouldn't learn (Ivan Vecera) [1352289]
-- [net] bridge: allow setting hash_max + multicast_router if interface is down (Ivan Vecera) [1352289]
-- [net] bridge: change BR_GROUPFWD_RESTRICTED to allow forwarding of LLDP frames (Ivan Vecera) [1352289]
-- [net] fix two sparse warnings introduced by IGMP/MLD parsing exports (Ivan Vecera) [1352289]
-- [net] Export IGMP/MLD message validation code (Ivan Vecera) [1352289]
-- [net] bridge: multicast: call skb_checksum_{simple_, }validate (Ivan Vecera) [1352289]
-- [net] bridge/mdb: remove wrong use of NLM_F_MULTI (Ivan Vecera) [1352289]
-- [net] act_mirred: Fix bogus header when redirecting from VLAN (Ivan Vecera) [1352289]
-- [net] bridge: Extend Proxy ARP design to allow optional rules for Wi-Fi (Ivan Vecera) [1352289]
-- [net] bridge: add compile-time assert for cb struct size (Ivan Vecera) [1352289]
-- [net] mark some potential candidates __read_mostly (Ivan Vecera) [1352289]
-- [net] bridge: reject DSA-enabled master netdevices as bridge members (Ivan Vecera) [1352289]
-- [net] bridge: use MDBA_SET_ENTRY_MAX for maxtype in nlmsg_parse() (Ivan Vecera) [1352289]
-- [net] bridge: only provide proxy ARP when CONFIG_INET is enabled (Ivan Vecera) [1352289]
-- [net] bridge: Add ability to enable TSO (Ivan Vecera) [1352289]
-- [net] bridge: Add missing policy entry for IFLA_BRPORT_FAST_LEAVE (Ivan Vecera) [1352289]
-- [net] bridge: Add support for IEEE 802.11 Proxy ARP (Ivan Vecera) [1352289]
-- [net] udp_tunnel: Only build ip6_udp_tunnel.c when IPV6 is selected (Ivan Vecera) [1352289]
-- [net] dsa: reduce number of protocol hooks (Ivan Vecera) [1352289]
-- [net] br_multicast: Replace rcu_assign_pointer() with RCU_INIT_POINTER() (Ivan Vecera) [1352289]
-- [net] bridge: export knowledge about the presence of IGMP/MLD queriers (Ivan Vecera) [1352289]
-- [net] bridge: adding stubs for multicast exports (Ivan Vecera) [1352289]
-- [net] bridge: fix smatch warning / potential null pointer dereference (Ivan Vecera) [1352289]
-- [net] bridge: fix compile error when compiling without IPv6 support (Ivan Vecera) [1352289]
-- [net] bridge: memorize and export selected IGMP/MLD querier port (Ivan Vecera) [1352289]
-- [net] bridge: un-comment br_multicast_list_adjacent() (Ivan Vecera) [1352289]
-- [net] bridge: adhere to querier election mechanism specified by RFCs (Ivan Vecera) [1352289]
-- [net] vlan: rename __vlan_find_dev_deep() to __vlan_find_dev_deep_rcu() (Ivan Vecera) [1352289]
-- [net] netpoll: Remove gfp parameter from __netpoll_setup (Ivan Vecera) [1352289]
-- [net] bridge: Use ether_addr_copy and ETH_ALEN (Ivan Vecera) [1352289]
-- [net] bridge: fix netconsole setup over bridge (Ivan Vecera) [1352289]
-- [net] bridge: use spin_lock_bh() in br_multicast_set_hash_max (Ivan Vecera) [1352289]
-- [net] netlink: cleanup rntl_af_register (Ivan Vecera) [1352289]
-- [net] bridge: change "foo* bar" to "foo *bar" (Ivan Vecera) [1352289]
-- [net] bridge: add space before '(/{', after ', ', etc. (Ivan Vecera) [1352289]
-- [net] bridge: remove unnecessary condition judgment (Ivan Vecera) [1352289]
-- [net] more spelling fixes (Ivan Vecera) [1352289]
-- [net] revert "bridge: only expire the mdb entry when query is received" (Ivan Vecera) [1352289]
-- [net] bridge: update mdb expiration timer upon reports. (Ivan Vecera) [1352289]
-- [net] Miscellaneous conversions to ETH_ALEN (Ivan Vecera) [1352289]
-- [net] bridge: correct the comment for file br_sysfs_br.c (Ivan Vecera) [1352289]
-- [net] bridge: fix rcu check warning in multicast port group (Ivan Vecera) [1352289]
-- [net] bridge: cleanup netpoll code (Ivan Vecera) [1352289]
-- [net] bridge: do not call setup_timer() multiple times (Ivan Vecera) [1352289]
-- [net] bridge: fix some kernel warning in multicast timer (Ivan Vecera) [1352289]
-- [net] bridge: fix a typo in comments (Ivan Vecera) [1352289]
-- [net] bridge: only expire the mdb entry when query is received (Ivan Vecera) [1352289]
-- [netdrv] phy: Don't increment MDIO bus refcount unless it's a different owner (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed_phy: fix of_node leak in fixed_phy_unregister (Ivan Vecera) [1382040]
-- [netdrv] revert "phy: IRQ cannot be shared" (Ivan Vecera) [1382040]
-- [netdrv] phy: Manage fixed PHY address space using IDA (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed: Fix removal of phys (Ivan Vecera) [1382040]
-- [netdrv] phy: Avoid polling PHY with PHY_IGNORE_INTERRUPTS (Ivan Vecera) [1382040]
-- [netdrv] phy: fix PHY_RUNNING in phy_state_machine (Ivan Vecera) [1382040]
-- [netdrv] phy: Fix phy_mac_interrupt() (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed_phy: pass 'irq' to fixed_phy_add() (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed_phy: Add gpio to determine link up/down. (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed_phy: handle link-down case (Ivan Vecera) [1382040]
-- [netdrv] phy: adjust fixed_phy_register() return value (Ivan Vecera) [1382040]
-- [netdrv] revert "net: phy: Set the driver when registering an MDIO bus device" (Ivan Vecera) [1382040]
-- [netdrv] phy: resume phydev when going to RESUMING (Ivan Vecera) [1382040]
-- [netdrv] phy: Check for aneg completion before setting state to PHY_RUNNING (Ivan Vecera) [1382040]
-- [netdrv] phylib: Remove unnecessary condition check in phy (Ivan Vecera) [1382040]
-- [netdrv] phy: re-apply PHY fixups during phy_register_device (Ivan Vecera) [1382040]
-- [netdrv] phy: expose phy_aneg_done API for use by drivers (Ivan Vecera) [1382040]
-- [net] ethtool: export conversion function between u32 and link mode (Ivan Vecera) [1382040]
-- [netdrv] mdio: Move mdiobus_read/write operatings into mdio.h (Ivan Vecera) [1382040]
-- [netdrv] phy: Add nested variants of mdiobus read/write (Ivan Vecera) [1382040]
-- [netdrv] phy: add phy_device_remove() (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed-phy: properly validate phy in fixed_phy_update_state() (Ivan Vecera) [1382040]
-- [netdrv] of_mdio: fix MDIO phy device refcounting (Ivan Vecera) [1382040]
-- [netdrv] phy: add proper phy struct device refcounting (Ivan Vecera) [1382040]
-- [netdrv] phy: fix mdiobus module safety (Ivan Vecera) [1382040]
-- [netdrv] phy: fix of_mdio_find_bus() device refcount leak (Ivan Vecera) [1382040]
-- [netdrv] phy: add fixed_phy_update_state() - update state of fixed_phy (Ivan Vecera) [1382040]
-- [netdrv] phy: Allow FIXED_PHY to be modular (Ivan Vecera) [1382040]
-- [netdrv] phy: export fixed_phy_register() (Ivan Vecera) [1382040]
-- [netdrv] phy: provide stub for fixed_phy_set_link_update (Ivan Vecera) [1382040]
-- [netdrv] phy: fix sparse warning in fixed.c (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed: return an error for Clause 45 over 22 reads (Ivan Vecera) [1382040]
-- [netdrv] phy: extend fixed driver with fixed_phy_register() (Ivan Vecera) [1382040]
-- [netdrv] phy: decouple PHY id and PHY address in fixed PHY driver (Ivan Vecera) [1382040]
-- [netdrv] phy: Ensure the MDIO bus module is held (Ivan Vecera) [1382040]
-- [netdrv] phy: Set the driver when registering an MDIO bus device (Ivan Vecera) [1382040]
-- [netdrv] mdio_bus: fix devm_mdiobus_alloc_size export (Ivan Vecera) [1382040]
-- [netdrv] mdio_bus: implement devm_mdiobus_alloc/devm_mdiobus_free (Ivan Vecera) [1382040]
-- [netdrv] phy: allow driver to implement their own aneg_done (Ivan Vecera) [1382040]
-- [netdrv] phy: add genphy_aneg_done() (Ivan Vecera) [1382040]
-- [netdrv] phy: cleanup 10g code (Ivan Vecera) [1382040]
-- [netdrv] phylib: Support attaching to generic 10g driver (Ivan Vecera) [1382040]
-- [netdrv] phylib: Add generic 10G driver (Ivan Vecera) [1382040]
-- [netdrv] phylib: turn genphy_driver to an array (Ivan Vecera) [1382040]
-- [netdrv] phylib: introduce PHY_INTERFACE_MODE_XGMII for 10G PHY (Ivan Vecera) [1382040]
-- [netdrv] phylib: Add Clause 45 read/write functions (Ivan Vecera) [1382040]
-- [netdrv] phylib: make phy_scan_fixups() static (Ivan Vecera) [1382040]
-- [netdrv] phylib: remove unused adjust_state() callback (Ivan Vecera) [1382040]
-- [netdrv] phy: kill excess empty lines (Ivan Vecera) [1382040]
-- [netdrv] phy: kill excess code (Ivan Vecera) [1382040]
-- [netdrv] phy: kill useless local variables (Ivan Vecera) [1382040]
-- [netdrv] phy: coding style fixes (Ivan Vecera) [1382040]
-- [netdrv] phy: coding style fixes (Ivan Vecera) [1382040]
-- [netdrv] phy: IRQ cannot be shared (Ivan Vecera) [1382040]
-- [netdrv] phy: fix checkpatch errors (Ivan Vecera) [1382040]
-- [netdrv] phy: suspend phydev when going to HALTED (Ivan Vecera) [1382040]
-- [netdrv] phy: resume/suspend PHYs on attach/detach (Ivan Vecera) [1382040]
-- [netdrv] phy: provide phy_resume/phy_suspend helpers (Ivan Vecera) [1382040]
-- [netdrv] phy: consolidate PHY reset in phy_init_hw() (Ivan Vecera) [1382040]
-- [netdrv] phy: use phy_init_hw instead of open-coding it (Ivan Vecera) [1382040]
-- [netdrv] phy: allow drivers to flag a PHY device as internal (Ivan Vecera) [1382040]
-- [netdrv] phy: add phy_mac_interrupt() to use with PHY_IGNORE_INTERRUPT (Ivan Vecera) [1382040]
-- [netdrv] phy: fix the use of PHY_IGNORE_INTERRUPT (Ivan Vecera) [1382040]
-- [netdrv] phylib: queue work on system_power_efficient_wq (Ivan Vecera) [1382040]
-
-* Wed Mar 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-593.el7]
-- [fs] fsnotify: Remove fsnotify_duplicate_mark() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: Fix possible use-after-free in inode iteration on umount (Miklos Szeredi) [1427454]
-- [fs] fsnotify: constify the places working with ->f_path (Miklos Szeredi) [1427454]
-- [fs] constify fsnotify_parent() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: constify 'data' (Miklos Szeredi) [1427454]
-- [fs] fsnotify: constify 'data' passed to ->handle_event() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: clean up spinlock assertions (Miklos Szeredi) [1427454]
-- [fs] fanotify: fix possible false warning when freeing events (Miklos Szeredi) [1427454]
-- [fs] fanotify: use notification_lock instead of access_lock (Miklos Szeredi) [1427454]
-- [fs] fsnotify: convert notification_mutex to a spinlock (Miklos Szeredi) [1427454]
-- [fs] fsnotify: drop notification_mutex before destroying event (Miklos Szeredi) [1427454]
-- [fs] fsnotify: support overlayfs (Miklos Szeredi) [1427454]
-- [fs] fsnotify: avoid spurious EMFILE errors from inotify_init() (Miklos Szeredi) [1421964]
-- [fs] fsnotify: turn fsnotify reaper thread into a workqueue job (Miklos Szeredi) [1427454]
-- [fs] fs/notify/inode_mark.c: use list_next_entry in fsnotify_unmount_inodes (Miklos Szeredi) [1427454]
-- [fs] inotify: actually check for invalid bits in sys_inotify_add_watch() (Miklos Szeredi) [1427454]
-- [fs] inotify: hide internal kernel bits from fdinfo (Miklos Szeredi) [1427454]
-- [fs] fsnotify: get rid of fsnotify_destroy_mark_locked() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: remove mark->free_list (Miklos Szeredi) [1427454]
-- [fs] fsnotify: document mark locking (Miklos Szeredi) [1427454]
-- [fs] fsnotify: fix check in inotify fdinfo printing (Miklos Szeredi) [1427454]
-- [fs] notify: optimize inotify/fsnotify code for unwatched files (Miklos Szeredi) [1427454]
-- [fs] fsnotify: remove obsolete documentation (Miklos Szeredi) [1427454]
-- [fs] notify: don't use module_init for non-modular inotify_user code (Miklos Szeredi) [1427454]
-- [fs] fanotify: fix event filtering with FAN_ONDIR set (Miklos Szeredi) [1427454]
-- [fs] fanotify: don't set FAN_ONDIR implicitly on a marks ignored mask (Miklos Szeredi) [1427454]
-- [fs] fanotify: don't recalculate a marks mask if only the ignored mask changed (Miklos Szeredi) [1427454]
-- [fs] fanotify: only destroy mark when both mask and ignored_mask are cleared (Miklos Szeredi) [1427454]
-- [fs] sched, fanotify: Deal with nested sleeps (Miklos Szeredi) [1427454]
-- [fs] fsnotify: remove destroy_list from fsnotify_mark (Miklos Szeredi) [1427454]
-- [fs] fsnotify: unify inode and mount marks handling (Miklos Szeredi) [1427454]
-- [fs] sched, inotify: Deal with nested sleeps (Miklos Szeredi) [1427454]
-- [fs] fanotify: enable close-on-exec on events' fd when requested in fanotify_init() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: don't put user context if it was never assigned (Miklos Szeredi) [1427454]
-- [fs] fs/notify/group.c: make fsnotify_final_destroy_group() static (Miklos Szeredi) [1427454]
-- [fs] notify: don't show f_handle if exportfs_encode_inode_fh failed (Miklos Szeredi) [1427454]
-- [fs] fsnotify/fdinfo: use named constants instead of hardcoded values (Miklos Szeredi) [1427454]
-- [fs] inotify: convert use of typedef ctl_table to struct ctl_table (Miklos Szeredi) [1427454]
-- [fs] fanotify: check file flags passed in fanotify_init (Miklos Szeredi) [1427454]
-- [fs] fs/notify/fanotify/fanotify_user.c: fix FAN_MARK_FLUSH flag checking (Miklos Szeredi) [1427454]
-- [fs] fs/notify/mark.c: trivial cleanup (Miklos Szeredi) [1427454]
-- [fs] fanotify: fan_mark_flush: avoid having to provide a fake/invalid fd and path (Miklos Szeredi) [1427454]
-- [fs] fanotify: move unrelated handling from copy_event_to_user() (Miklos Szeredi) [1427454]
-- [fs] fanotify: reorganize loop in fanotify_read() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: update comments concerning locking scheme (Miklos Szeredi) [1427454]
-- [fs] inotify: fix race when adding a new watch (Miklos Szeredi) [1427454]
-- [fs] dnotify: replace dnotify_mark_mutex with mark mutex of dnotify_group (Miklos Szeredi) [1427454]
-- [fs] fanotify: put duplicate code for adding vfsmount/inode marks into an own function (Miklos Szeredi) [1427454]
-- [fs] fanotify: fix races when adding/removing marks (Miklos Szeredi) [1427454]
-- [fs] fanotify: quit wanking with FASYNC in ->release() (Miklos Szeredi) [1427454]
-- [fs] devpts: clean up interface to pty drivers (Miklos Szeredi) [1421008]
-- [fs] devpts: if initialization failed, don't crash when opening /dev/ptmx (Miklos Szeredi) [1421008]
-
-* Wed Mar 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-592.el7]
-- [fs] xfs: undo block reservation correctly in xfs_trans_reserve() (Eric Sandeen) [1425557]
-- [fs] xfs: reset b_first_retry_time when clear the retry status of xfs_buf_t (Eric Sandeen) [1425557]
-- [fs] xfs: clear _XBF_PAGES from buffers when readahead page (Eric Sandeen) [1425557]
-- [fs] xfs: don't wrap ID in xfs_dq_get_next_id (Eric Sandeen) [1425557 1418182 1405626]
-- [fs] xfs: don't print warnings when xfs_log_force fails (Eric Sandeen) [1425557]
-- [fs] xfs: fix max_retries _show and _store functions (Eric Sandeen) [1425557]
-- [fs] xfs: ignore leaf attr ichdr.count in verifier during log replay (Eric Sandeen) [1425557]
-- [fs] xfs: pass state not whichfork to trace_xfs_extlist (Eric Sandeen) [1425557]
-- [fs] xfs: set AGI buffer type in xlog_recover_clear_agi_bucket (Eric Sandeen) [1425557]
-- [fs] xfs: fix unbalanced inode reclaim flush locking (Eric Sandeen) [1425557]
-- [fs] xfs: check minimum block size for CRC filesystems (Eric Sandeen) [1425557]
-- [fs] xfs: fix up xfs_swap_extent_forks inline extent handling (Eric Sandeen) [1425557 1412945]
-- [fs] xfs: don't call xfs_sb_quota_from_disk twice (Eric Sandeen) [1425557]
-- [fs] xfs: clean up _calc_dquots_per_chunk (Eric Sandeen) [1425557]
-- [fs] xfs: normalize "infinite" retries in error configs (Eric Sandeen) [1425557]
-- [fs] xfs: fix signed integer overflow (Eric Sandeen) [1425557]
-- [fs] xfs: fix superblock inprogress check (Eric Sandeen) [1425557]
-- [fs] gfs2: Avoid alignment hole in struct lm_lockname (Robert S Peterson) [1425450]
-- [fs] gfs2: Add missing rcu locking for glock lookup (Robert S Peterson) [1425450]
-- [fs] nfs: Ignore connections that have cl_rpcclient uninitialized (Benjamin Coddington) [1421557]
-- [fs] nfsv4: fix getacl ERANGE for some ACL buffer sizes ("J. Bruce Fields") [1427974]
-- [fs] nfsv4: fix getacl head length estimation ("J. Bruce Fields") [1427974]
-- [fs] sunrpc: replace generic auth_cred hash with auth-specific function (Frank Sorenson) [1371693]
-- [fs] sunrpc: add RPCSEC_GSS hash_cred() function (Frank Sorenson) [1371693]
-- [fs] sunrpc: add auth_unix hash_cred() function (Frank Sorenson) [1371693]
-- [fs] sunrpc: add generic_auth hash_cred() function (Frank Sorenson) [1371693]
-- [fs] sunrpc: add hash_cred() function to rpc_authops struct (Frank Sorenson) [1371693]
-
-* Wed Mar 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-591.el7]
-- [netdrv] scripts/spelling.txt: add "varible" pattern and fix typo instances (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Invoke softirqs after napi_reschedule (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove duplicate device id from PCI table (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: mark the value passed to csum_replace_by_diff as __wsum (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Error handling for link event (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: properly convert le16 value to CPU format (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: convert to cpu from le16 to generate switch_id correctly (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor AQ CMD buffer debug printing (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix Adaptive ITR enabling (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove unnecessary call to i40e_update_link_info (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: enable mc magic pkt wakeup during power down (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix disable overflow promiscuous mode (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Save more link abilities when using ethtool (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid race condition when sending filters to firmware for addition (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: allow i40e_update_filter_state to skip broadcast filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't warn every time we clear an Rx timestamp register (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Save link FEC info from link up event (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add bus number info to i40e_bus_info struct (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Clean up dead code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf : Changed version from 1.6.25 to 1.6.27 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: update comment explaining where FDIR buffers are freed (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: eliminate i40e_pull_tail() (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Moves skb from i40e_rx_buffer to i40e_ring (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Limit DMA sync of RX buffers to actual packet size (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't check params until after checking for client instance (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add interrupt rate limit verbosity (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor macro INTRL_USEC_TO_REG (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove unused function (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Quick refactor to start moving data off stack and into Tx buffer info (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove unnecessary __packed (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Deprecating unused macro (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: when adding or removing MAC filters, correctly handle VLANs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid O(n^2) loop when deleting all filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: rename i40e_put_mac_in_vlan and i40e_del_mac_all_vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: no need to check is_vsi_in_vlan before calling i40e_del_mac_all_vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fold the i40e_is_vsi_in_vlan check into i40e_put_mac_in_vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't allow i40e_vsi_(add|kill)_vlan to operate when VID<1 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't truncate match_method assignment (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: move all updates for VLAN mode into i40e_sync_vsi_filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use (add|rm)_vlan_all_mac helper functions when changing PVID (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: factor out addition/deletion of VLAN per each MAC address (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: delete filter after adding its replacement when converting (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor i40e_update_filter_state to avoid passing aq_err (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: recalculate vsi->active_filters from hash contents (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: defeature support for PTP L4 frame detection on XL710 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: lock service task correctly (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add functions which apply correct PHY access method for read and write operation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add FEC for 25g (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add support for 25G devices (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use unsigned printf format specifier for active_filters count (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] Changed version from 1.6.21 to 1.6.25 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Blink LED on 1G BaseT boards (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove code to handle dev_addr specially (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: napi_poll must return the work done (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: restore workaround for removing default MAC filter (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: simplify txd use count calculation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Driver prints log message on link speed change (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: change message to only appear when extra debug info is wanted (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: replace for memcpy with single memcpy call in ethtool (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: set broadcast promiscuous mode for each active VLAN (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix for ethtool Supported link modes (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Pass unknown PHY type for unknown PHYs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove unreachable code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix panic on SPARC while changing num of desc (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add protocols over MCTP to i40e_aq_discover_capabilities (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix trivial typo in naming of i40e_sync_filters_subtask (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add Clause22 implementation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid duplicate private flags definitions (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove second check of VLAN_N_VID in i40e_vlan_rx_add_vid (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove error_param_int label from i40e_vc_config_promiscuous_mode_msg (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Be much more verbose about what we can and cannot offload (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: removed unreachable code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Implementation of ERROR state for NVM update state machine (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix for division by zero (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: clear mac filter count on reset (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Reorder logic for coalescing RS bits (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add common function for finding VSI by type (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: replace PTP Rx timestamp hang logic (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use a mutex instead of spinlock in PTP user entry points (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: correct check for reading TSYNINDX from the receive descriptor (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove duplicate add/delete adminq command code for filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid looping to check whether we're in VLAN mode (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix MAC filters when removing VLANs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: properly cleanup on allocation failure in i40e_sync_vsi_filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: store MAC/VLAN filters in a hash with the MAC Address as key (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: implement __i40e_del_filter and use where applicable (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: When searching all MAC/VLAN filters, ignore removed filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor i40e_put_mac_in_vlan to avoid changing f->vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: move i40e_put_mac_in_vlan and i40e_del_mac_all_vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: make use of __dev_uc_sync and __dev_mc_sync (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: drop is_vf and is_netdev fields in struct i40e_mac_filter (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add missing \n to end of dev_err message (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: disable MSI-X interrupts if we cannot reserve enough vectors (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix configure TCs after initial DCB disable (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Clean up handling of msglevel flags and debug parameter (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix bit logic error in failure case (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Changed version from 1.6.19 to 1.6.21 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Removal of workaround for simple MAC address filter deletion (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix for long link down notification time (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Drop redundant Rx descriptor processing code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix confusing dmesg info for ethtool -L option (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Make struct i40e_stats const (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Changed version from 1.6.16 to 1.6.19 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: fix interrupt affinity bug (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: group base mode VF offload flags (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: reopen client after reset (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Drop code for unsupported flow types (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove unused function i40e_vsi_lookup (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Bit test mask correction (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Rewrite Flow Director busy wait loop (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix client interaction (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid NULL pointer dereference and recursive errors on early PCI error (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix sideband flow director vector allocation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix MSI-X vector redistribution if hw limit is reached (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: check if vectors are already depleted when doing VMDq allocation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40evf: support queue-specific settings for interrupt moderation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't configure zero-size RSS table (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Strip out debugfs hook for Flow Director filter programming (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Split Flow Director descriptor config into separate function (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Add txring_txq function to match fm10k and ixgbe (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix Flow Director raw_buf cleanup (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Increase minimum number of allocated VSI (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Changed version to 1.6.16 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: removing unreachable code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: check conflicting ntuple/sideband rules when re-enabling ATR (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: cleanup ATR auto_disable_flags use (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add encap csum VF offload flag (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix deleting mac filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove 100 Mbps SGMII support for X722 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Limit TX descriptor count in cases where frag size is greater than 16K (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix for extra byte swap in tunnel setup (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix to check for NULL (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: return correct opcode to VF (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix "dump port" command when NPAR enabled (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix setting user defined RSS hash key (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix kernel panic on enable/disable LLDP (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Fix indentation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove XSTRINGIFY macro definitions and uses (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use matching format identifiers (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add support for HMC resource and profile for X722 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix byte ordering in ARP NS code for X722 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor tail_bump check (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use alloc_workqueue instead of create_singlethread_workqueue (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Expose 'trust' flag to userspace via ndo_get_vf_config (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove a stray unlock (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf-Bump version from 1.6.11 to 1.6.12 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Allow RSS Hash set with less than four parameters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix memory leak (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix lookup table when RSS disabled/enabled (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Don't notify client of VF reset during VF creation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't allow reduction of channels below active FD rules (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix static analysis tool warning (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: reset RX csum error stat with other pf stats (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Reset VLAN filter count when resetting (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix a bug where a client close can be called before an open is complete (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Use list_move instead of list_del/list_add (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] ethernet/intel: Use pci_(request|release)_mem_regions (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Explicitly write platform-specific mac address after PF reset (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add missing link advertise setting (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf-bump version to 1.6.11 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor Rx filter handling (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove device ID 0x37D4 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: remove useless initializer (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix to show correct Advertised Link Modes when link is down (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid null pointer dereference (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use valid online CPU on q_vector initialization (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: enable VSI broadcast promiscuous mode instead of adding broadcast filter (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Fix i40e_rx_checksum (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Bump version from 1.5.16 to 1.6.4 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add VSI info to macaddr messages (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: set default VSI without a reset (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix RSS to not be limited by the number of CPUs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Removing unnecessary code which caused supported link mode bug (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix missing DA cable check (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Save PCI state before suspend (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Clean up MSIX IRQs before suspend (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add a call to set the client interface down (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: write HENA for VFs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add hw struct local variable (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add functions to control default VSI (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Move all UDP port notifiers to single function (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix an uninitialized variable bug (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Bump version from 1.5.10 to 1.5.16 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't add broadcast filter for VFs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: properly report Rx packet hash (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: set context to use VSI RSS LUT for SR-IOV (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Correct UDP packet header for non_tunnel-ipv6 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: change Rx hang message into a WARN_ONCE (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Refactor ethtool get_settings (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: lie to the VF (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add vf-true-promisc-support priv flag (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Implement the API function for aq_set_switch_config (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add support for disabling all link and change bits needed for PHY interactions (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix misleading indentation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Test memory before ethtool alloc succeeds (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Remove unused hardware receive descriptor code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40evf: Drop packet split receive routine (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Refactor receive routine (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Remove reference to ring->dtype (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Drop packet split receive routine (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Refactor tunnel interpretation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Add support for GSO partial with UDP_TUNNEL_CSUM and GRE_CSUM (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: make use of BIT() macro to prevent left shift of signed values (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: fix I40E_MASK signed shift overflow warnings (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: keep VFs trusted by default (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fixup of commit 4e312a9e3b (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fixup of commit f77ccd1220 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fixup of commit e306fbc5e1 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove RHEL-only FCOE message (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40iw: remove tech-preview (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-
-* Tue Mar 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-590.el7]
-- [kernel] acpi / hotplug / pci: Make device_is_managed_by_native_pciehp() public (Myron Stowe) [1418060]
-- [pci] acpi / hotplug / pci: Use cached copy of PCI_EXP_SLTCAP_HPC bit (Myron Stowe) [1418060]
-- [pci] Unfold conditions to block runtime PM on PCIe ports (Myron Stowe) [1418060]
-- [pci] Consolidate conditions to allow runtime PM on PCIe ports (Myron Stowe) [1418060]
-- [pci] Activate runtime PM on a PCIe port only if it can suspend (Myron Stowe) [1418060]
-- [pci] Speed up algorithm in pci_bridge_d3_update() (Myron Stowe) [1418060]
-- [pci] Autosense device removal in pci_bridge_d3_update() (Myron Stowe) [1418060]
-- [pci] Don't acquire ref on parent in pci_bridge_d3_update() (Myron Stowe) [1418060]
-- [pci] pciehp: Clear attention LED on device add (Myron Stowe) [1418060]
-- [pci] Fix bridge_d3 update on device removal (Myron Stowe) [1418060]
-- [pci] acpi / hotplug / pci: Runtime resume bridges before bus rescans (Myron Stowe) [1418060]
-- [pci] pciehp: Ignore interrupts during D3cold (Myron Stowe) [1418060]
-- [pci] Add runtime PM support for PCIe ports (Myron Stowe) [1418060]
-- [pci] Power on bridges before scanning new devices (Myron Stowe) [1418060]
-- [kernel] pci: Put PCIe ports into D3 during suspend (Myron Stowe) [1418060]
-- [pci] Don't clear d3cold_allowed for PCIe ports (Myron Stowe) [1418060]
-- [pci] pci / pm: Tune down retryable runtime suspend error messages (Myron Stowe) [1418060]
-- [acpi] invoke acpi_device_wakeup() with correct parameters (Myron Stowe) [1418060]
-- [pci] Shuffle pci-acpi.c functions to group them logically (Myron Stowe) [1418060]
-- [acpi] acpi / pm: Always enable wakeup GPEs when enabling device wakeup (Myron Stowe) [1418060]
-- [kernel] acpi / pm: Revork the handling of ACPI device wakeup notifications (Myron Stowe) [1418060]
-- [kernel] pm: Create PM workqueue if runtime PM is not configured too (Myron Stowe) [1418060]
-- [kernel] acpi: Clean up inclusions of ACPI header files (Myron Stowe) [1418060]
-- [kernel] tracing: Fix return value of ftrace_raw_output_prep() (Pratyush Anand) [1365958]
-- [kernel] tracing: remove unused ftrace_output_event() prototype (Pratyush Anand) [1365958]
-- [kernel] tracing: Fix hwlat kthread migration (Pratyush Anand) [1365958]
-- [kernel] tracing: Have max_latency be defined for HWLAT_TRACER as well (Pratyush Anand) [1365958]
-- [kernel] tracing: #ifdef out uses of max trace when CONFIG_TRACER_MAX_TRACE is not set (Pratyush Anand) [1365958]
-- [kernel] tracing: Add NMI tracing in hwlat detector (Pratyush Anand) [1365958]
-- [kernel] tracing: Have hwlat trace migrate across tracing_cpumask CPUs (Pratyush Anand) [1365958]
-- [kernel] tracing: Add documentation for hwlat_detector tracer (Pratyush Anand) [1365958]
-- [kernel] tracing: Added hardware latency tracer (Pratyush Anand) [1365958]
-- [kernel] tracing: Make tracing_cpumask available for all instances (Pratyush Anand) [1365958]
-- [kernel] tracing: Set up infrastructure to allow tracers for instances (Pratyush Anand) [1365958]
-- [kernel] tracing: Move tracing_max_latency into trace_array (Pratyush Anand) [1365958]
-- [kernel] tracing: Pass trace_array to flag_changed callback (Pratyush Anand) [1365958]
-- [kernel] tracing: Pass trace_array to set_flag callback (Pratyush Anand) [1365958]
-- [kernel] tracing: Add trace_seq_has_overflowed() and trace_handle_return() (Pratyush Anand) [1365958]
-- [kernel] tracing: Move raw output code from macro to standalone function (Pratyush Anand) [1365958]
-- [kernel] tracing: Add entry->next_cpu to trace_ctxwake_bin() (Pratyush Anand) [1365958]
-- [kernel] tracing: Use trace_seq_puts()/trace_seq_putc() where possible (Pratyush Anand) [1365958]
-- [kernel] x86/xen/kdump: Replace CONFIG_KEXEC with CONFIG_KEXEC_CORE (Xunlei Pang) [1415443]
-- [kernel] revert "x86/panic: Replace CONFIG_KEXEC_CORE with CONFIG_KEXEC" (Xunlei Pang) [1415443]
-- [kernel] kexec: move some memembers and definitions within the scope of CONFIG_KEXEC_FILE (Xunlei Pang) [1415443]
-- [kernel] kexec: split kexec_load syscall from kexec core code (Xunlei Pang) [1415443]
-- [kernel] kexec: split kexec_file syscall code to kexec_file.c (Xunlei Pang) [1415443]
-- [kernel] use macros from compiler.h instead of __attribute__((...)) (Xunlei Pang) [1415443]
-- [kernel] kexec, kconfig: spell "architecture" properly (Xunlei Pang) [1415443]
-- [kernel] kexec: simplify conditional (Xunlei Pang) [1415443]
-- [kernel] kexec: remove never used member destination in kimage (Xunlei Pang) [1415443]
-- [kernel] kexec: fix a typo in comment (Xunlei Pang) [1415443]
-- [kernel] kexec: allocate the kexec control page with KEXEC_CONTROL_MEMORY_GFP (Xunlei Pang) [1415443]
-- [kernel] kexec: remove unnecessary KERN_ERR from kexec.c (Xunlei Pang) [1415443]
-- [kernel] kexec: remove the unused function parameter (Xunlei Pang) [1415443]
-- [kernel] kexec: take the segment adding out of locate_mem_hole functions (Xunlei Pang) [1415443]
-- [net] netfilter: conntrack: validate SCTP crc32c in PREROUTING (Davide Caratti) [1353218]
-- [net] netfilter: select LIBCRC32C together with SCTP conntrack (Davide Caratti) [1353218]
-- [net] netfilter: nat: skip checksum on offload SCTP packets (Davide Caratti) [1401578]
-- [net] dccp: fix freeing skb too early for IPV6_RECVPKTINFO (Hannes Frederic Sowa) [1423463] {CVE-2017-6074}
-- [scsi] lpfc: Fix eh_deadline setting for sli3 adapters (Ewan Milne) [1366564]
-- [scsi] mpt2sas: fix a print at driver exit and change version string (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Updating driver version to v15.100.00.00 (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Fix Firmware fault state 0x2100 during heavy 4K RR FIO stress test (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Fix for Crusader to achieve product targets with SAS devices (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Added print to notify cable running at a degraded speed (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: disable ASPM for MPI2 controllers (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Force request partial completion alignment (Tomas Henzl) [1418286]
-- [scsi] libfc: Don't have fc_exch_find log errors on a new exchange (Chris Leech) [1378320]
-- [net-next] treewide: use is_vlan_dev() helper function (Maurizio Lombardi) [1385134]
-- [scsi] bnx2fc: Mark symbols static where possible (Maurizio Lombardi) [1385134]
-- [scsi] bnx2fc: Simplify code (Maurizio Lombardi) [1385134]
-
-* Tue Mar 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-589.el7]
-- [md] dm round robin: revert "use percpu 'repeat_count' and 'current_path'" (Mike Snitzer) [1422567]
-- [md] dm rq: cope with DM device destruction while in dm_old_request_fn() (Mike Snitzer) [1412854]
-- [x86] ptp_kvm: try to detect hypercall availability (Marcelo Tosatti) [1419783]
-- [x86] ptp: add kvm PTP driver (Marcelo Tosatti) [1419783]
-- [x86] kvm: x86: add KVM_HC_CLOCK_PAIRING hypercall (Marcelo Tosatti) [1419783]
-- [x86] kvmclock: export kvmclock clocksource pointer (Marcelo Tosatti) [1419783]
-- [x86] perf/x86/amd/uncore: Update sysfs attributes for Family17h processors (Suravee Suthikulpanit) [1391664 1391662]
-- [x86] perf/x86/amd/uncore: Update the number of uncore counters (Suravee Suthikulpanit) [1391664 1391662]
-- [x86] perf/x86/amd/uncore: Rename 'L2' to 'LLC' (Suravee Suthikulpanit) [1391664 1391662]
-- [fs] binfmt_elf.c:load_elf_binary(): return -EINVAL on zero-length mappings (Bhupesh Sharma) [1415893]
-- [kernel] mm: fold arch_randomize_brk into ARCH_HAS_ELF_RANDOMIZE (Bhupesh Sharma) [1415893]
-- [fs] mm: split ET_DYN ASLR from mmap ASLR (Bhupesh Sharma) [1415893]
-- [s390] redefine randomize_et_dyn for ELF_ET_DYN_BASE (Bhupesh Sharma) [1415893]
-- [kernel] mm: expose arch_mmap_rnd when available (Bhupesh Sharma) [1415893]
-- [s390] standardize mmap_rnd() usage (Bhupesh Sharma) [1415893]
-- [s390] mmap: randomize mmap base for bottom up direction (Bhupesh Sharma) [1415893]
-- [powerpc] standardize mmap_rnd() usage (Bhupesh Sharma) [1415893]
-- [x86] standardize mmap_rnd() usage (Bhupesh Sharma) [1415893]
-- [fs] binfmt_elf.c: fix bug in loading of PIE binaries (Bhupesh Sharma) [1415893]
-- [lib] locking/spinlock/debug: Remove spinlock lockup detection code (Waiman Long) [1425209]
-- [tools] cpupower: Fix no-rounding MHz frequency output (Prarit Bhargava) [1427742]
-- [crypto] mcryptd - Check mcryptd algorithm compatibility (Herbert Xu) [1402133] {CVE-2016-10147}
-- [crypto] mcryptd - process CRYPTO_ALG_INTERNAL (Herbert Xu) [1402133] {CVE-2016-10147}
-- [crypto] vmx - Fix memory corruption caused by p8_ghash (Gustavo Duarte) [1403693]
-- [crypto] ghash-generic - move common definitions to a new header file (Gustavo Duarte) [1403693]
-- [crypto] vmx - Increase priority of aes-cbc cipher (Gustavo Duarte) [1403693]
-- [crypto] vmx - Fix ABI detection (Gustavo Duarte) [1403693]
-- [crypto] vmx - comply with ABIs that specify vrsave as reserved (Gustavo Duarte) [1403693]
-- [crypto] vmx - fix null dereference in p8_aes_xts_crypt (Gustavo Duarte) [1391563]
-- [crypto] vmx - Fix aes_p8_xts_decrypt build failure (Gustavo Duarte) [1391563]
-- [crypto] vmx - Adding asm subroutines for XTS (Gustavo Duarte) [1391563]
-- [crypto] vmx - Adding support for XTS (Gustavo Duarte) [1391563]
-- [kernel] printk: Do not disable preemption for accessing printk_func (Scott Wood) [1427305]
-- [firmware] dmi_scan: add SBMIOS entry and DMI tables (Prarit Bhargava) [1386195]
-- [firmware] efi: dmi: List SMBIOS3 table before SMBIOS table (Prarit Bhargava) [1386195]
-- [platform] x86: thinkpad_acpi: Initialize local in_tablet_mode and type (Lyude Paul) [1389438]
-- [platform] x86: thinkpad_acpi: Add support for X1 Yoga (2016) Tablet Mode (Lyude Paul) [1389438]
-- [platform] x86: thinkpad_acpi: Move tablet detection into separate function (Lyude Paul) [1389438]
-
-* Mon Mar 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-588.el7]
-- [documentation] x86/boot: Fix KASLR and memmap= collision (Baoquan He) [1290840]
-- [documentation] x86, boot: Fix warning due to undeclared strlen() (Baoquan He) [1290840]
-- [documentation] x86/mm: Refactor KASLR entropy functions (Baoquan He) [1290840]
-- [documentation] x86/power/64: Use __pa() for physical address computation (Baoquan He) [1290840]
-- [documentation] x86/power/64: Always create temporary identity mapping correctly (Baoquan He) [1290840]
-- [documentation] x86/power/64: Do not refer to __PAGE_OFFSET from assembly code (Baoquan He) [1290840]
-- [documentation] x86/kaslr, x86/power: Remove x86 hibernation restrictions (Baoquan He) [1290840]
-- [documentation] x86/power/64: Fix kernel text mapping corruption during image restoration (Baoquan He) [1290840]
-- [documentation] x86/asm, x86/power/hibernate: Use local labels in asm (Baoquan He) [1290840]
-- [documentation] x86/doc: Correct limits in Documentation/x86/x86_64/mm.txt (Baoquan He) [1290840]
-- [documentation] x86/kaslr: Fix typo in the KASLR_FLAG documentation (Baoquan He) [1290840]
-- [x86] 64: Disable the mm track code during boot stage (Baoquan He) [1290840]
-- [x86] __force_order doesn't need to be an actual variable (Baoquan He) [1290840]
-- [x86] kaslr: Fix boot crash with certain memory configurations (Baoquan He) [1290840]
-- [x86] kaslr: Allow randomization below the load address (Baoquan He) [1290840]
-- [x86] kaslr: Extend kernel image physical address randomization to addresses larger than 4G (Baoquan He) [1290840]
-- [x86] kaslr: Randomize virtual address separately (Baoquan He) [1290840]
-- [x86] kaslr: Clarify identity map interface (Baoquan He) [1290840]
-- [x86] boot: Refuse to build with data relocations (Baoquan He) [1290840]
-- [x86] kaslr: Clarify purpose of each get_random_long() (Baoquan He) [1290840]
-- [x86] kaslr: Add virtual address choosing function (Baoquan He) [1290840]
-- [x86] kaslr: Return earliest overlap when avoiding regions (Baoquan He) [1290840]
-- [x86] kaslr: Add 'struct slot_area' to manage random_addr slots (Baoquan He) [1290840]
-- [x86] boot: Add missing file header comments (Baoquan He) [1290840]
-- [x86] kaslr: Initialize mapping_info every time (Baoquan He) [1290840]
-- [x86] boot: Comment what finalize_identity_maps() does (Baoquan He) [1290840]
-- [x86] kaslr: Build identity mappings on demand (Baoquan He) [1290840]
-- [x86] boot: Split out kernel_ident_mapping_init() (Baoquan He) [1290840]
-- [x86] boot: Clean up indenting for asm/boot.h (Baoquan He) [1290840]
-- [x86] boot: Double BOOT_HEAP_SIZE to 64KB (Baoquan He) [1290840]
-- [x86] kaslr: Improve comments around the mem_avoid[] logic (Baoquan He) [1290840]
-- [x86] boot: Simplify pointer casting in choose_random_location() (Baoquan He) [1290840]
-- [x86] kaslr: Consolidate mem_avoid[] entries (Baoquan He) [1290840]
-- [x86] boot: Clean up pointer casting (Baoquan He) [1290840]
-- [x86] boot: Warn on future overlapping memcpy() use (Baoquan He) [1290840]
-- [x86] boot: Extract error reporting functions (Baoquan He) [1290840]
-- [x86] boot: Correctly bounds-check relocations (Baoquan He) [1290840]
-- [x86] kaslr: Clean up unused code from old 'run_size' and rename it to 'kernel_total_size' (Baoquan He) [1290840]
-- [x86] boot: Fix "run_size" calculation (Baoquan He) [1290840]
-- [x86] boot: Calculate decompression size during boot not build (Baoquan He) [1290840]
-- [x86] boot: Move compressed kernel to the end of the decompression buffer (Baoquan He) [1290840]
-- [x86] mm: Page align the '_end' symbol to avoid pfn conversion bugs (Baoquan He) [1290840]
-- [x86] kaslr: Handle kernel relocations above 2G correctly (Baoquan He) [1290840]
-- [x86] boot: Rename overlapping memcpy() to memmove() (Baoquan He) [1290840]
-- [x86] kaslr: Warn when KASLR is disabled (Baoquan He) [1290840]
-- [x86] boot: Make memcpy() handle overlaps (Baoquan He) [1290840]
-- [x86] boot: Clean up things used by decompressors (Baoquan He) [1290840]
-- [x86] kaslr: Drop CONFIG_RANDOMIZE_BASE_MAX_OFFSET (Baoquan He) [1290840]
-- [x86] kaslr: Update description for decompressor worst case size (Baoquan He) [1290840]
-- [x86] kaslr: Rename "random" to "random_addr" (Baoquan He) [1290840]
-- [x86] kaslr: Clarify purpose of kaslr.c (Baoquan He) [1290840]
-- [x86] boot: Clarify purpose of functions in misc.c (Baoquan He) [1290840]
-- [x86] boot: Rename "real_mode" to "boot_params" (Baoquan He) [1290840]
-- [x86] kaslr: Remove unneeded boot_params argument (Baoquan He) [1290840]
-- [x86] kaslr: Rename aslr.c to kaslr.c (Baoquan He) [1290840]
-- [x86] boot: Don't compile early_serial_console.c when !CONFIG_EARLY_PRINTK (Baoquan He) [1290840]
-- [x86] boot: Don't compile aslr.c when !CONFIG_RANDOMIZE_BASE (Baoquan He) [1290840]
-- [x86] boot: Use the usual -y -n mechanism for objects in vmlinux (Baoquan He) [1290840]
-- [lib] decompressors: use real out buf size for gunzip with kernel (Baoquan He) [1290840]
-- [lib] decompressors: fix "no limit" output buffer length (Baoquan He) [1290840]
-- [lib] initramfs: support initramfs that is bigger than 2GiB (Baoquan He) [1290840]
-- [lib] decompress_inflate.c: include appropriate header file (Baoquan He) [1290840]
-- [x86] boot: Add hex output for debugging (Baoquan He) [1290840]
-- [x86] kaslr: fix build due to missing ALIGN definition (Baoquan He) [1290840]
-- [x86] introduce kaslr_offset() (Baoquan He) [1290840]
-- [x86] mm/kaslr: Propagate KASLR status to kernel proper (Baoquan He) [1290840]
-- [x86] revert "x86/mm/aslr: Propagate base load address calculation" (Baoquan He) [1290840]
-- [x86] asm/boot/64: Use __BOOT_TSS instead of literal $0x20 (Baoquan He) [1290840]
-- [x86] mm/aslr: Avoid PAGE_SIZE redefinition for UML subarch (Baoquan He) [1290840]
-- [x86] mm/aslr: Propagate base load address calculation (Baoquan He) [1290840]
-- [x86] asm/boot: Use already defined KEEP_SEGMENTS macro in head_{32, 64}.S (Baoquan He) [1290840]
-- [x86] build: replace Perl script with Shell script (Baoquan He) [1290840]
-- [x86] boot: Skip relocs when load address unchanged (Baoquan He) [1290840]
-- [x86] Use $(OBJDUMP) instead of plain objdump (Baoquan He) [1290840]
-- [x86] kaslr: Handle Gold linker for finding bss/brk (Baoquan He) [1290840]
-- [x86] x86-64: Use RIP-relative addressing for most per-CPU accesses (Baoquan He) [1290840]
-- [x86] x86-64: Handle PC-relative relocations on per-CPU data (Baoquan He) [1290840]
-- [x86] kaslr: Prevent .bss from overlaping initrd (Baoquan He) [1290840]
-- [x86] boot: Document intermediates more clearly (Baoquan He) [1290840]
-- [x86] boot, kaslr: Fix nuisance warning on 32-bit builds (Baoquan He) [1290840]
-- [x86] kaslr: Avoid the setup_data area when picking location (Baoquan He) [1290840]
-- [kernel] x86, kaslr: boot-time selectable with hibernation (Baoquan He) [1290840]
-- [kernel] pm / hibernate: introduce "nohibernate" boot parameter (Baoquan He) [1290840]
-- [x86] kaslr: fix module lock ordering problem (Baoquan He) [1290840]
-- [x86] kaslr: randomize module base load address (Baoquan He) [1290840]
-- [x86] mm/arch: use NUMA_NO_NODE (Baoquan He) [1290840]
-- [x86] kaslr: add missed "static" declarations (Baoquan He) [1290840]
-- [x86] kaslr: export offset in VMCOREINFO ELF notes (Baoquan He) [1290840]
-- [x86] kaslr: Clarify RANDOMIZE_BASE_MAX_OFFSET (Baoquan He) [1290840]
-- [x86] kaslr: Remove unused including <linux/version.h> (Baoquan He) [1290840]
-- [x86] kaslr: Use char array to gain sizeof sanity (Baoquan He) [1290840]
-- [x86] kaslr: Add a circular multiply for better bit diffusion (Baoquan He) [1290840]
-- [x86] kaslr: Mix entropy sources together as needed (Baoquan He) [1290840]
-- [x86] relocs: Add percpu fixup for GNU ld 2.23 (Baoquan He) [1290840]
-- [x86] boot: Rename get_flags() and check_flags() to *_cpuflags() (Baoquan He) [1290840]
-- [x86] kaslr: Raise the maximum virtual address to -1 GiB on x86_64 (Baoquan He) [1290840]
-- [x86] kaslr: Report kernel offset on panic (Baoquan He) [1290840]
-- [x86] kaslr: Select random position from e820 maps (Baoquan He) [1290840]
-- [x86] kaslr: Provide randomness functions (Baoquan He) [1290840]
-- [x86] kaslr: Return location from decompress_kernel (Baoquan He) [1290840]
-- [x86] boot: Move CPU flags out of cpucheck (Baoquan He) [1290840]
-- [x86] relocs: Add more per-cpu gold special cases (Baoquan He) [1290840]
-- [x86] mkpiggy.c: Explicitly close the output file (Baoquan He) [1290840]
-- [x86] relocs: Move ELF relocation handling to C (Baoquan He) [1290840]
-
-* Mon Mar 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-587.el7]
-- [kernel] tasklist_lock: Change from rwlock_t to qrwlock_t (Waiman Long) [1241990]
-- [kernel] qrwlock: Build wrapper headers and functions on top of qrwlock (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Reduce reader/writer to reader lock transfer latency (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Better optimization for interrupt context readers (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Rename functions to queued_*() (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Don't contend with readers when setting _QW_WAITING (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Rename QUEUE_RWLOCK to QUEUED_RWLOCKS (Waiman Long) [1241990]
-- [kernel] x86, locking/rwlocks: Enable qrwlocks on x86 (Waiman Long) [1241990]
-- [kernel] locking/rwlocks: Introduce 'qrwlocks' - fair, queued rwlocks (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Block kernel module loading on old kernel (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Handle ticket unlock code in old kernel modules (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Maintain same kABI signature as ticket locks (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Fix double hash race (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Fix spin_unlock_wait() some more (Waiman Long) [1241990]
-- [kernel] locking/pvstat: Separate wait_again and spurious wakeup stats (Waiman Long) [1241990]
-- [kernel] locking, qspinlock: Fix spin_is_locked() and spin_unlock_wait() (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Fix division by zero in qstat_read() (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Move __ARCH_SPIN_LOCK_UNLOCKED to qspinlock_types.h (Waiman Long) [1241990]
-- [kernel] x86/locking: Create stack frame in PV unlock (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Queue node adaptive spinning (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Allow limited lock stealing (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Collect slowpath lock statistics (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock, x86: Optimize the PV unlock code path (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Avoid redundant read of next pointer (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Prefetch the next node cacheline (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Kick the PV CPU unconditionally when _Q_SLOW_VAL (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Fix performance regression under unaccelerated VMs (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Only kick CPU at unlock time (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Order pv_unhash() after cmpxchg() on unlock slowpath (Waiman Long) [1241990]
-- [kernel] locking: Clean up pvqspinlock warning (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Fix kernel panic in locking-selftest (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Rename QUEUED_SPINLOCK to QUEUED_SPINLOCKS (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: replace xchg() by the more descriptive set_mb() (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock, x86: Enable PV qspinlock for Xen (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock, x86: Enable PV qspinlock for KVM (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock, x86: Implement the paravirt qspinlock call patching (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Implement simple paravirt support for the qspinlock (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Revert to test-and-set on hypervisors (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Use a simple write to grab the lock (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Optimize for smaller NR_CPUS (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Extract out code snippets for the next patch (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Add pending bit (Waiman Long) [1241990]
-- [kernel] locking/qspinlock, x86: Enable x86-64 to use queued spinlocks (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Introduce a simple generic 4-byte queued spinlock (Waiman Long) [1241990]
-- [kernel] percpu: Make __verify_pcu_ptr handle per cpu pointers to arrays (Waiman Long) [1241990]
-- [kernel] compiler: Allow 1- and 2-byte smp_load_acquire() and smp_store_release() (Waiman Long) [1241990]
-
-* Fri Mar 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-586.el7]
-- [sound] alsa: remove unused dmaengine bits (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Replace MBI_REG_READ with constant 0x10 (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-midi: correct speed checking (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: correct speed checking (Jaroslav Kysela) [1399503]
-- [sound] alsa: pcm: Allow 32 bit sample format in IEC958 channel status helper (Jaroslav Kysela) [1399503]
-- [sound] alsa: pcm: add IEC958 channel status helper for hw_params (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: set sel_i2s_pre_div1 to 2 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5645 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: Add ACPI ID 10EC5640 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: add DAC1 soft volume func control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: set RT5645_PRIV_INDEX as volatile (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: fix reg-2f default value (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: patch reg-0x8a (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rl6347a: Use dev_err for I2C communication error prints (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on ssm4567 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on ssm2518 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on sn95031 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: Add missing 10EC5072 ACPI ID (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: Enable Braswell platform workaround for Dell Wyse 3040 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: increse LDO power (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: Enable MCLK detection (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5670 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: patch reg-0x8a (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: fix HP Playback Volume control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5651 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: polling jd status in all conditions (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: Add dmi_system_id "Google Setzer" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5640: add Mono ADC Capture Switch control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5640: enable MCLK detection (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5640: add internal clock source support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5640 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt286 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt286: set combo jack for Kabylake (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rl6231: add 19.2M to 4.096M pll preset table (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: fix invalid configuration in Pre-Scalar of FLL (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: correct the function name of register (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: disable sinc filter for high THD of ADC (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: lock longer to avoid playback pop upon resume (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: FLL parameters finetune (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: AD/DA over sampling rate configuration (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: Disable short Frame Sync detection logic (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: fix bug in FLL parameter (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on nau8825 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: fix static check error about semaphone control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: fix bug in playback when suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: drop redundant idiom when converting integer to boolean (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: jack connection decision with different insertion logic (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: mark pm functions __maybe_unused (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: cross talk suppression measurement function (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: correct typo in biquad filter coefficients (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: non-clock jack detection for power saving at standby (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: add programmable biquad filter control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: Export I2C module alias information (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: assign DAC Ch to match headset L/R (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: change output power for interrupt (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: reduce standby power consumption (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: improve FLL function for better performance (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: support different clock source for FLL function (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on wm98357a (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: fix spelling mistake "montior" -> "monitor" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Add device id for Kabylake (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Increase loglevel of hex dump printed (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Fix potential NULL dereference (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Remove the unused 'timeout' variable (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: add link management (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Potential NULL deref in hdac_hdmi_get_spk_alloc() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Register chmap controls and ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Add multichannel support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: parse eld for channel map capability (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on dmic (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: Add component pin control functions (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dpcm: Avoid putting stream state to STOP when FE stream is paused (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Make return type of dpcm_state_string() const char * (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dpcm: print dai_link name of BE other than FE (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dpcm: Don't apply symmetry for BE with hw param fixup (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dpcm: play nice with CODEC<->CODEC links (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: fix shift used for second item in snd_soc_get_enum_double (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Implement stereo mixer control support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Support second register for DAPM control updates (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix kcontrol creation for output driver widget (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix value setting for _ENUM_DOUBLE MUX's second channel (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix possible uninitialized variable in snd_soc_dapm_get_volsw() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix typos in comment (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Add a dummy snd_pcm_runtime to avoid NULL pointer access (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Export snd_soc_dapm_new_control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix to return correct path list in is_connected_ep (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: support user-defined stop condition in dai_get_connected_widgets (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: compress: Add support for compress dai ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: compress: Fix leak of a widget list in soc_compr_open_fe (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: compress: Pass error out of soc_compr_pointer (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: adjust for graph on snd_soc_of_parse_audio_simple_widgets (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: adjust for graph on snd_soc_of_parse_card_name (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: adjust for graph on snd_soc_of_parse_audio_prefix (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: snd_soc_get_dai_name() become non static (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: adjust for graph on snd_soc_of_parse_audio_routing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: If a platform doesn't have an of_node use parent's node (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: Clean up DAPM before the card debugfs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Fix leak of rtd in soc_bind_dai_link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: remove codec duplicated callback function (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: use of_property_read_bool (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Add kerneldoc comments for snd_soc_find_dai (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Export snd_soc_find_dai() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Define API to find a dai link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Fix binding and probing of auxiliary components (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: add Component level suspend/resume (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: replace aux_comp_list to component_dev_list (Jaroslav Kysela) [1399503]
-- [sound] alsa: bump PCM protocol to 2.0.13 (Jaroslav Kysela) [1399503]
-- [sound] alsa: Provide a CLOCK_MONOTONIC_RAW timestamp type (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Update physical DAI link configuration for version 5 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Rename be_dai_elems to dai_elems in manifest (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: kfree kcontrol->private_value before freeing kcontrol (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: avoid uninitialized kcontrol_type (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Only free TLV for volume mixers of a widget (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Allow a widget to have multiple enum controls (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Check name strings of physical DAI links (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Add voice wake up flag for DAI links (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Rename functions & variables for physical DAIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Rename struct and type for physical DAIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Rename the function to create a FE link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Add support to configure existing physical DAI links (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Add flags and private data to PCM (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Only use valid names of PCM for the kernel DAI & DAI link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Make PCM backward compatible from ABI v4 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Make manifest backward compatible from ABI v4 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Fix error return code in soc_tplg_dapm_widget_create() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Add support for configuring existing BE DAIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Fix memory leak in widget creation (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Check size mismatch of ABI objects before parsing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Check failure to create a widget (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Set CPU DAI name and enable DPCM by default for FE link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Support topology file of ABI v4 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Define DAI physical PCM data formats (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Reenable use from userspace (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Add sig_bits to stream caps (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Add the types for BE DAI (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Set the link ID when creating a FE DAI link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Define types for vendor tuples (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Cannot adjust speaker's volume on a Dell AIO (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - add sanity check to force the separate stream tags (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - fix Lewisburg audio issue (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/patch_sigmatel: Add AmigaOne X1000 pinconfigs (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Always setup isochronous transfer properties (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs46xx: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Add support headphone Mic for ALC221 of HP platform (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - New codec support of ALC1220 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Make single_cmd option to stop the fallback mechanism (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: Constify snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: pci: Constify snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: Constify snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: Constify snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: rawmidi: Add const to snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/ca0132 - fix possible NULL pointer use (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - add DP mst verb support (Jaroslav Kysela) [1399503]
-- [sound] alsa: vx: Don't try to update capture stream before running (Jaroslav Kysela) [1399503]
-- [sound] alsa: vx: Fix possible transfer overflow (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix deadlock of controller device lock at unbinding (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Add new codec ID ALC299 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix click noises on Samsung Ativ Book 8 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Apply ALC269_FIXUP_NO_SHUTUP on HDA_FIXUP_ACT_PROBE (Jaroslav Kysela) [1399503]
-- [sound] alsa: mixart: fix a comment typo (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Support both DSD LE/BE Amanero firmware versions (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs5535audio: fix unused warnings on resume/suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - adding a new NV HDMI/DP codec ID in the driver (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: Fix race at creating a queue (Jaroslav Kysela) [1399503]
-- [sound] alsa: revert "alsa: line6: Only determine control port properties if needed" (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: Don't handle loop timeout at snd_seq_pool_done() (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add a quirk for Plantronics BT600 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Release FW ctx in cleanup (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr-rt5640: fix settings in internal clock mode (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: test EP_FLAG_RUNNING at urb completion (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix irq/process data synchronization (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Apply asus-mode8 fixup to ASUS X71SL (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix up GPIO for ASUS ROG Ranger (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix to fail safely if module not available in path (Jaroslav Kysela) [1399503]
-- [sound] alsa: revert "alsa: usb-audio: Fix race at stopping the stream" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: fallback mechanism if MCLK is not enabled (Jaroslav Kysela) [1399503]
-- [sound] alsa: printk/sound: handle more message headers (Jaroslav Kysela) [1399503]
-- [sound] alsa: hiface: Fix M2Tech hiFace driver sampling rate change (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Eliminate noise at the start of DSD playback (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add native DSD support for TEAC 501/503 DAC (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add QuickCam Communicate Deluxe/S7500 to volume_control_quirks (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: add implicit fb quirk for Axe-Fx II (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs46xx: add a new line (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: update bxt_da7219_max98357a to support quad ch dmic capture (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: more tolerant packetsize (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: avoid setting of sample rate multiple times on bus (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Gate the mic jack on HP Z1 Gen3 AiO (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: when comparing pin configurations, ignore assoc in addition to seq (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: save FW version (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Add sysfs entry in order to store FW version (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix race at stopping the stream (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: replace codec_dev_list to component_dev_list on Card (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: cht_bsw_rt5672: Use HID translation unit (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Fix crash at suspend/resume without card registration (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Replace kthread with work (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add missing 10EC5672 ACPI ID matching for Cherry Trail (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix bogus error return in snd_usb_create_stream() (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Claim pod x3 usb data interface (Jaroslav Kysela) [1399503]
-- [sound] alsa: echoaudio: Fix improper return value in function load_asic (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Make some messages to debug level (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Add support for headset MIC for ALC622 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/ca0132 - Add quirk for Alienware 15 R2 2016 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Removed the unused I2S blob structure (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Don't use dma I2S config structure in kernel (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - fix headset-mic problem on a Dell laptop (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - ignore the assoc and seq when comparing pin configurations (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: cht_bsw_rt5645: Fix leftover kmalloc (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: mfld: Make static string arrays 'const 'char * const []' (Jaroslav Kysela) [1399503]
-- [sound] alsa: emu10k1: Use workqueue instead of kthread for emu1010 fw polling (Jaroslav Kysela) [1399503]
-- [sound] alsa: emu10k1: Simplify firmware loader code (Jaroslav Kysela) [1399503]
-- [sound] alsa: emu10k1: Fix emu1010 dock attach check (Jaroslav Kysela) [1399503]
-- [sound] alsa: ac97: Fix kernel-doc error with sphinx formatter (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix use-after-free of usb_device at disconnect (Jaroslav Kysela) [1399503]
-- [sound] alsa: pci: don't opencode IS_REACHABLE() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytct_rt5640: change default capture settings (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: detect audio routing with CHAN package (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: common: add ACPI package extraction utility (Jaroslav Kysela) [1399503]
-- [sound] alsa: oss: don't opencode IS_REACHABLE() (Jaroslav Kysela) [1399503]
-- [sound] alsa: rawmidi: don't opencode IS_REACHABLE() (Jaroslav Kysela) [1399503]
-- [sound] alsa: opl3: don't opencode IS_REACHABLE() (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix mic regression by ASRock mobo fixup (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - add a new condition to check if it is thinkpad (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Flush pending D0i3 request on suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: remove pci device enabling calls on suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix typo (Jaroslav Kysela) [1399503]
-- [sound] alsa: info: Return error for invalid read/write (Jaroslav Kysela) [1399503]
-- [sound] alsa: info: Limit the proc text input size (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add D0i3 mode ref counting (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add support for specifying D0i3 configuration (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add support for LPMode (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add D0iX callbacks (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add support for programming D0i3C (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add D0iX IPCs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add sst_ipc_tx_message_nopm (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add check_dsp_lp_on callback on IPC (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Add debug information related to FW version (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix to turn off hdmi power on probe failure (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add quirk for Syntek STK1160 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix a shift wrapping bug (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: Fix time account regression (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix surround output pins for ASRock B150M mobo (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: constify snd_soc_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: broadwell: constify snd_soc_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: sst-bxt-da7219_max98357a: fix obsoleted initializer for array (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Always acquire runtime pm ref on unload (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: add terminate entry for dmi_system_id tables (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for two Dell laptops (Jaroslav Kysela) [1399503]
-- [sound] alsa: asihpi: fix kernel memory disclosure (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Adding a new group of pin cfg into ALC295 pin quirk table (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - allow 40 bit DMA mask for NVidia devices (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: fix a crash in line6_hwdep_write() (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: fix passing wrong pointer in function call of compatibility layer (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix a failure of micmute led when having multi adcs (Jaroslav Kysela) [1399503]
-- [sound] alsa: treewide: remove redundant #include <linux/kconfig.h> (Jaroslav Kysela) [1399503]
-- [sound] alsa: kthread: kthread worker API cleanup (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: haswell depends on sst-firmware (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Fix POD X3 Live audio input (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: report JACK_LINEOUT event (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Use DPIB to update position for Playback stream (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: fix memory leak of module on error exit path (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: sst-bxt-rt298: fix obsoleted initializers for array (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: sst-bxt-da7219_max98357a: fix obsoleted initializers for array (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Add the top speaker pin config for HP Spectre x360 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add DMIC channel constraint for bxt machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Adding one more ALC255 pin definition for headset problem (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-line6: use the same declaration as definition in header for MIDI manufacturer ID (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: Add bdw-rt5677 machine driver (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: remove status, it is shadowing status of a higher scope (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: add missing \n to end of dev_err/dev_dbg messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: add missing \n to end of dev_* messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add table for module id for quick ref (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update to use instance ids generated (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Use private instance id of modules in IPC (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add module instance id generation APIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Extend DragonFly dB scale quirk to cover other variants (Jaroslav Kysela) [1399503]
-- [sound] alsa: ali5451: Fix out-of-bound position reporting (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: snd-usb-line6 depends on CONFIG_SND_HWDEP (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: fix ifnullfree.cocci warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add hwdep interface to access the POD control messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Cleanup podhd initialization (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Only determine control port properties if needed (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add support for POD X3 Live (only USB ID differs from POD X3) (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add support for POD X3 (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Allow processing of raw incoming messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Distinguish device init (ctrl EP) and MIDI data transfer (int EP) (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add LINE6_CAP_IN_NEEDS_OUT, a void playback stream during capture (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Allow different channel numbers for in/out (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Support assymetrical in/out configurations (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add high-speed USB support (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Enable different number of URBs for frame transfers (Jaroslav Kysela) [1399503]
-- [sound] alsa: compress: fix some missing and misplaced \n in messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: hdac: add missing \n to end of dev_err messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: au88x0: Add missing \n to end of dev_err message (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add 32bit support (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: fix to copy from/to user space (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: pci: constify local structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for several Dell laptops (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Skip Realtek SKU check for Lenovo machines (Jaroslav Kysela) [1399503]
-- [sound] alsa: rawmidi: Fix possible deadlock with virmidi registration (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: Fix zero-division by continue of uninitialized instance (Jaroslav Kysela) [1399503]
-- [sound] alsa: squash lines for simple wrapper functions (Jaroslav Kysela) [1399503]
-- [sound] alsa: pcm: Fix avail to return error if stream is suspended (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: fix IOSF_MBI dependency (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: sst: fix to spelling mistake: "susupend" -> "suspend" (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: fix NULL pointer dereference in read()/ioctl() race (Jaroslav Kysela) [1399503]
-- [sound] alsa: bt87x: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: oxygen: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: ad1889: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs5535audio: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Unload all the loadable modules (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix DMA control config size (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix the inverted logic check (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: check manifest size (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: add a missing star in a memcpy call (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Fix message handling during drop stream (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs46xx: fix typo "seconadry" -> "secondary" (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: initialize whole fields of automatic variable with union type (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Enable subwoofer on Dell Inspiron 7559 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Add headset mic quirk for Dell Inspiron 5468 (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add sample rate inquiry quirk for B850V3 CP2114 (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: fix NULL pointer dereference on memory allocation failure (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: fix division by zero after SNDRV_TIMER_IOCTL_CONTINUE (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - fix headset mic detection for MSI MS-B120 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Parse manifest data (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: uapi: intel: skylake: Define vendor specific tokens (Jaroslav Kysela) [1399503]
-- [sound] alsa: uapi: Add three missing header files to Kbuild file (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Remove dfw config and associated structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Parse vendor tokens to build module data (Jaroslav Kysela) [1399503]
-- [sound] alsa: hdspm: fix spelling mistake "Externel" -> "External" (Jaroslav Kysela) [1399503]
-- [sound] alsa: compress: Use memdup_user() rather than duplicating its implementation (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: rmove print for failure of kmalloc (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: fine-tune Tenor error compensation value (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: use TEAC UD-H01 quirk for more devices (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: move udh01_fb_quirk setting to quirks.c (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Fix POD sysfs attributes segfault (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Give up on the lock while URBs are released (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Remove double line6_pcm_release() after failed acquire (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: obsolete change of address limit (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: change ioctl command operation to get data in kernel space (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: add an alternative way to handle ioctl requests (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: add documentation for snd_seq_kernel_client_ctl (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: sst: fix ix spelling mistake: "capablities" -> "capabilites" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: quirk for Acer Aspire SWS-012 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: fix 0-day warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: log quirks (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: Add quirk for Teclast X98 Air 3G tablet (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add quirks for MinnowBoard MAX (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: add MCLK support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: add IN3 map (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: default routing and quirks on Baytrail-CR (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: fix dai/clock setup for SSP0 routing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt56040: additional routing quirks (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Change DAI link's be_id to a generic id (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: add SSP2_AIF2 routing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: enable configuration of SSP0 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: add definitions for modem/SSP0 interface (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: auto-detection of Baytrail-CR (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: enable differential mic quirk (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: quirk for mono speaker (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr-rt5640: add Asus T100TAF quirks (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix error return code in skl_probe() (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: caiaq: audio: don't print error when allocating urb fails (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: remove module id query at runtime (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Populate modules after loading (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: modify snd_skl_get_module_info args (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Manage power well properly for resume (Jaroslav Kysela) [1399503]
-- [sound] alsa: alsa - hda: Add support for link audio time reporting (Jaroslav Kysela) [1399503]
-- [sound] alsa: alsa - hda: Add support for parsing new HDA capabilities (Jaroslav Kysela) [1399503]
-- [sound] alsa: alsa - ext hda: remove bus_parse_capabilities (Jaroslav Kysela) [1399503]
-- [sound] alsa: convert users to core bus_parse_capabilities (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - move bus_parse_capabilities to core (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add quirk for ELP HD USB Camera (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add a sample rate quirk for Creative Live! Cam Socialize HD (VF0610) (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add module processing domain support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix a comment style (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add library loading support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: fix noderef.cocci warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add library loading IPCs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bxt: Parse UUIDs once (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Parse UUIDs once (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: add additional args to module parsing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: add support for tplg manifest load (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: split fw and dsp initialization (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: modify skl_get_dsp_ops() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Move modules query to runtime (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for two dell machines (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: Fix krealloc() with __GFP_ZERO usage (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: add AMD Bonaire AZ PCI ID with proper driver caps (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Check list empty while getting module info (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - On-board speaker fixup on ACER Veriton (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Can't adjust speaker's volume on a Dell AIO (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Delete an unnecessary check before the function call "release_firmware" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix NULL Pointer exception in dynamic_debug (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix quirks code is not called (Jaroslav Kysela) [1399503]
-- [sound] alsa: echoaudio: purge contradictions between dimension matrix members and total number of members (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Fix conflicting pcm dev drvdata on haswell (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: board: add kabylake nau88l25_ssm4567 machine id (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: board: add kabylake nau88l25_max98357a machine id (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: kbl: add kabylake additional machine entries (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: reduce machine name for skl_nau88l25_max98357a (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: reduce machine name for skl_nau88l25_ssm4567 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix fw reload failure (Jaroslav Kysela) [1399503]
-- [sound] alsa: mixart: don't print an unintialized variable on error (Jaroslav Kysela) [1399503]
-- [sound] alsa: ak4114: remove redundant check on err being < 0 (Jaroslav Kysela) [1399503]
-- [sound] alsa: ak4117: remove redundant check on err being < 0 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: add AMD Stoney PCI ID with proper driver caps (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: board: add kabylake machine id (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: add kablake device IDs (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - fix use-after-free after module unload (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Fix sst-dsp dependency on dw stuff (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: statify cht_quirk (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: cht: fix uninit variable warning (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix to use the actual size for TLV control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add surface3 entry in CHT-RT5645 machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Add quirk for Surface 3 (Jaroslav Kysela) [1399503]
-- [sound] alsa: pcm: Free chmap at PCM free callback, too (Jaroslav Kysela) [1399503]
-- [sound] alsa: ctl: Stop notification after disconnection (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - add new pin definition in alc225 pin quirk table (Jaroslav Kysela) [1399503]
-- [sound] alsa: control: add dimension validator for userspace elements (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek: Add Lenovo L460 to docking unit fixup (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: Fix negative queue usage by racy accesses (Jaroslav Kysela) [1399503]
-- [sound] alsa: riptide: Use DIV_ROUND_UP (Jaroslav Kysela) [1399503]
-- [sound] alsa: au88x0: Fix calculation in vortex_wtdma_bufshift() (Jaroslav Kysela) [1399503]
-- [sound] alsa: echoaudio: Fix memory allocation (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Increase loglevel of debug messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: common: increase the loglevel of "FW Poll Status" (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - fix read before array start (Jaroslav Kysela) [1399503]
-- [sound] alsa: dummy: Fix a use-after-free at closing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: fix missing breaks that would cause the wrong operation to execute (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix the headset mic jack detection on Dell machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Support multi-core in Broxton (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Support multi-core in Skylake (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add DSP muti-core infrastructure (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update comment style (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add pm ops for broxton-rt298 machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Disable async suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: revert "asoc: intel: Add support for PM ops in bxt-rt298" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: kconfig: formatting update (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: kconfig: fix build when ACPI is not enabled (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/tegra: iomem fixups for sparse warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq_timer: use monotonic times internally (Jaroslav Kysela) [1399503]
-- [sound] alsa: ctxfi: Change structure initialisation to C99 style (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Change structure initialisation to C99 style (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: fix some klockwork scan warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq_oss: Change structure initialisation to C99 style (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - ALC891 headset mode for Dell (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Check for module list being NULL (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Initialize module list for Broxton (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add support for PM ops in bxt-rt298 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update DSP stall bits (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update FW purge for Broxton (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Enable firmware reload in suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Update ignore suspend for bxt-rt298 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add FE rate & channel constraints for bxt-rt298 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add DMIC 4 channel support for bxt machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: compress: Add function to indicate the stream has gone bad (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add DSP firmware manifest parsing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Report position in pointer query (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Copy the pipe parameter by pipe type (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Set the DSP pipe type (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Create Pipe to widget list in soc probe (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Clean up of driver resources in suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Avoid freeing up of unallocated memory/mcps (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Disable SRAM Retention before D3 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Don't pause stopped pipeline while deleting (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Set the pipe state to paused when paused (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Reset DSP pipe when host/link DMA is reset (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek: Add T560 docking unit fixup (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for Dell machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Turn off loopback mixing as default (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add Broxton-P Dialog+Maxim machine driver entry (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add Broxton-P Dialog Maxim machine driver (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: configure DMIC for machine sklnau8825max (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: configure DMIC for machine sklnau8825adi (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Find uuids for Broxton (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Find uuids for Skylake (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add strip extended manifest utility (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Use UUID in binary format (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Strip manifest for Broxton platform (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Strip manifest for Skylake platform (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Don't use local pointer for firmware (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bxtn: Add Broxton DSP support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add api to retrieve dmic array info from nhlt (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Use refcap device for mono recording (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add channel constraints for refcap (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: add function stub when ACPI is not enabled (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Add support for new codecs ALC700/ALC701/ALC703 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - ALC256 speaker noise issue (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for one Dell machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headphone noise on Dell XPS 13 9360 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: add link management (Jaroslav Kysela) [1399503]
-- [sound] alsa: hdac: add link pm and ref counting (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: fix up for DAI link's be_id change (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Fix printk formatting (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add Broxton-P machine driver (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add more SSP DAIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix memory leak in nhlt init (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: remove ignore_suspend for WoV streams (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Suspend PCMs when marked as active suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Prevent sending Set DMA Control IPC if the widget is "On" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix memory leak during init instance (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix the NULL pointer exception in dsp_clean up (Jaroslav Kysela) [1399503]
-- [sound] alsa: dmaengine: dw: pass platform data via struct dw_dma_chip (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update channel map based on runtime params (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add multichannel support for HDMI (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: Update skl_nau88l25_ssm4567 driver to support chmap (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: Update skl_nau88l25_max98357a driver to support chmap (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: skl_rt286: Fix to support hdmi channel map support (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - add helper to get channels from cap bits (Jaroslav Kysela) [1399503]
-
-* Thu Mar 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-585.el7]
-- [kernel] locking/mutex: Explicitly mark task as running after wakeup (Gustavo Duarte) [1423397]
-- [kernel] sched/core: Fix an SMP ordering race in try_to_wake_up() vs. schedule() (Gustavo Duarte) [1423400]
-- [kernel] sched/fair: Fix nohz.next_balance update (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Improve load balancing in the presence of idle CPUs (Lauro Ramos Venancio) [1420450]
-- [kernel] sched/fair: Fix stale overloaded status in the busiest group finding logic (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Improve sysbench performance by fixing spurious active migration (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Assign correct scheduling domain to 'sd_llc' (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Avoid NULL dereference on sd_busy (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Remove unnecessary iteration over sched domains to update nr_busy_cpus (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Pass 'struct rq' to rebalance_domains() (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Pass 'struct rq' to nohz_idle_balance() (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Use this_rq() helper (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Fix potential near-infinite distribute_cfs_runtime() loop (Lauro Ramos Venancio) [1399391]
-- [kernel] percpu-refcount: fix reference leak during percpu-atomic transition (Jeff Moyer) [1418333]
-- [kernel] prctl: take mmap sem for writing to protect against others (Mateusz Guzik) [1374860]
-- [fs] proc: read mm's {arg, env}_{start, end} with mmap semaphore taken (Mateusz Guzik) [1374860]
-- [fs] vfs: fix put_compat_statfs64() does not handle errors (Larry Woodman) [1366543]
-- [mm] hugetlb: don't use reserved during VM_SHARED mapping cow (Larry Woodman) [1385473]
-- [mm] filemap: optimize copy_page_to/from_iter_iovec (Mikulas Patocka) [1362715]
-- [mm] vma_merge: correct false positive from __vma_unlink->validate_mm_rb (Andrea Arcangeli) [1374548]
-- [mm] vma_merge: fix race vm_page_prot race condition against rmap_walk (Andrea Arcangeli) [1374548]
-- [mm] fix use-after-free if memory allocation failed in vma_adjust() (Andrea Arcangeli) [1374548]
-- [mm] thp: really limit transparent hugepage allocation to local node (Aaron Tomlin) [1425895]
-- [mm] mempolicy.c: merge alloc_hugepage_vma to alloc_pages_vma (Aaron Tomlin) [1425895]
-- [mm] thp: allocate transparent hugepages on local node (Aaron Tomlin) [1425895]
-- [mm] mempolicy: unexport get_vma_policy() and remove its "task" arg (Aaron Tomlin) [1425895]
-- [mm] mempolicy: kill do_set_mempolicy()->down_write(&mm->mmap_sem) (Aaron Tomlin) [1425895]
-- [mm] mempolicy: fix show_numa_map() vs exec() + do_set_mempolicy() race (Aaron Tomlin) [1425895]
-- [mm] mempolicy: introduce __get_vma_policy(), export get_task_policy() (Aaron Tomlin) [1425895]
-- [mm] mempolicy: remove the "task" arg of vma_policy_mof() and simplify it (Aaron Tomlin) [1425895]
-- [mm] mempolicy: sanitize the usage of get_task_policy() (Aaron Tomlin) [1425895]
-- [mm] mempolicy: change get_task_policy() to return default_policy rather than NULL (Aaron Tomlin) [1425895]
-- [mm] mempolicy: change alloc_pages_vma() to use mpol_cond_put() (Aaron Tomlin) [1425895]
-- [mm] proc/maps: make vm_is_stack() logic namespace-friendly (Aaron Tomlin) [1425895]
-- [fs] proc/maps: replace proc_maps_private->pid with "struct inode *inode" (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: update m->version in the main loop in m_start() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: reintroduce m->version logic (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: introduce m_next_vma() helper (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: simplify m_start() to make it readable (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: kill the suboptimal and confusing m->version logic (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: shift "priv->task = NULL" from m_start() to m_stop() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: cleanup the "tail_vma" horror in m_next() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: simplify the vma_stop() logic (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: shift mm_access() from m_start() to proc_maps_open() (Aaron Tomlin) [1425895]
-- [fs] proc: introduce proc_mem_open() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: unify/simplify do_maps_open() and numa_maps_open() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: don't use task->mm in m_start() and show_*map() (Aaron Tomlin) [1425895]
-- [mm] mempolicy.c: parameter doc uniformization (Aaron Tomlin) [1425895]
-- [mm] mempolicy: return NULL if node is NUMA_NO_NODE in get_task_policy (Aaron Tomlin) [1425895]
-
-* Thu Mar 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-584.el7]
-- [hv] make CPU offlining prevention fine-grained (Vitaly Kuznetsov) [1396335]
-- [hv] switch to cpuhp state machine for synic init/cleanup (Vitaly Kuznetsov) [1396335]
-- [hv] don't reset hv_context.tsc_page on crash (Vitaly Kuznetsov) [1396335]
-- [hv] init percpu_list in hv_synic_alloc() (Vitaly Kuznetsov) [1396335]
-- [hv] allocate synic pages for all present CPUs (Vitaly Kuznetsov) [1396335]
-- [hv] change clockevents unbind tactics (Vitaly Kuznetsov) [1396335]
-- [x86] Make sure IDT is page aligned (Lenny Szubowicz) [1422235]
-- [drm] virtio-gpu: disable VIRGL with BE kernel (Laurent Vivier) [1413817]
-- [s390] topology/sysfs: provide drawer id and siblings attributes (Hendrik Brueckner) [1380774]
-- [s390] topology: add drawer scheduling domain level (Hendrik Brueckner) [1380774]
-- [scsi] cxgb4i: libcxgbi: cxgb4: add T6 iSCSI completion feature (Sai Vemuri) [1417523]
-- [scsi] cxgb4i: libcxgbi: add active open cmd for T6 adapters (Sai Vemuri) [1417523]
-- [scsi] cxgb4i: use cxgb4_tp_smt_idx() to get smt_idx (Sai Vemuri) [1417523]
-- [block] mtip32xx: set error code on failure (David Milburn) [1384915 1385883]
-- [block] mtip32xx: Improvement in code readability when memdup_user() fails (David Milburn) [1384915 1385883]
-- [block] mtip32xx: mark symbols static where possible (David Milburn) [1384915 1385883]
-- [block] mtip32xx: fix checks for dma mapping errors (David Milburn) [1384915 1385883]
-- [iommu] vt-d: Don't over-free page table directories (Myron Stowe) [1418404]
-- [netdrv] be2net: Increase skb headroom size to 256 bytes (Ivan Vecera) [1379825]
-- [powerpc] eeh: Null check uses of eeh_pe_bus_get (Steve Best) [1427224]
-- [powerpc] pseries: Use H_CLEAR_HPT to clear MMU hash table during kexec (Steve Best) [1423396]
-- [security] don't crash when selinux is disabled (Miklos Szeredi) [1425499]
-- [security] selinux: fix off-by-one in setprocattr (Paul Moore) [1422369] {CVE-2017-2618}
-
-* Thu Mar 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-583.el7]
-- [netdrv] bnxt_en: Fix bnxt_setup_tc() error message (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Print FEC settings as part of the linkup dmesg (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Do not setup PHY unless driving a single PF (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Allow NETIF_F_NTUPLE to be enabled on VFs (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Retry failed NVM_INSTALL_UPDATE with defragmentation flag (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update to firmware interface spec 1.7.0 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: remove useless memset's in drivers get_stats64 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix RTNL lock usage on bnxt_get_port_module_status() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix RTNL lock usage on bnxt_update_link() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix bnxt_reset() in the slow path task (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix "uninitialized variable" bug in TPA code path (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add the ulp_sriov_cfg hooks for bnxt_re RDMA driver (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add support for ethtool -p (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update to firmware interface spec to 1.6.1 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Clear TPA flags when BNXT_FLAG_NO_AGG_RINGS is set (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix compiler warnings when CONFIG_RFS_ACCEL is not defined (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Handle no aggregation ring gracefully (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Set default completion ring for async events (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Implement new scheme to reserve tx rings (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Assign additional vnics to VFs (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add new hardware RFS mode (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Refactor code that determines RFS capability (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add function to get vnic capability (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Refactor TPA code path (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix and clarify link_info->advertising (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Improve the IRQ disable sequence during shutdown (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Remove busy poll logic in the driver (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add interface to support RDMA driver (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Refactor the driver registration function with firmware (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Reserve RDMA resources by default (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Improve completion ring allocation for VFs (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Move function reset to bnxt_init_one() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Enable MSIX early in bnxt_init_one() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add bnxt_set_max_func_irqs() (Jonathan Toppins) [1382378]
-- [netdrv] broadcom: propagate error code (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add PFC statistics (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Implement DCBNL to support host-based DCBX (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update firmware header file to latest 1.6.0 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Re-factor bnxt_setup_tc() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: do not busy-poll when link is down (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix a VXLAN vs GENEVE issue (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: add a missing rcu synchronization (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add ethtool -n|-N rx-flow-hash support (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add UDP RSS support for 57X1X chips (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Enhance autoneg support (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update firmware interface spec to 1.5.4 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix VF virtual link state (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix ring arithmetic in bnxt_setup_tc() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: do not call napi_hash_add() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix build error for kernesl without RTC-LIB (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fixed the VF link status after a link state change (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Support for "ethtool -r" command (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Pad TX packets below 52 bytes (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Call firmware to approve the random VF MAC address (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Re-arrange bnxt_hwrm_func_qcaps() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix ethtool -l|-L inconsistent channel counts (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Added support for Secure Firmware Update (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update to firmware interface spec 1.5.1 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Simplify PCI device names and add additinal PCI IDs (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Use RSS flags defined in the bnxt_hsi.h file (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix TX push operation on ARM64 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Log a message, if enabling NTUPLE filtering fails (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Improve ntuple filters by checking destination MAC address (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Remove locking around txr->dev_state (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add BCM58700 PCI device ID for NS2 Nitro (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Workaround Nitro A0 RX hardware bug (part 4) (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Workaround Nitro A0 hardware RX bug (part 3) (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Workaround Nitro A0 hardware RX bug (part 2) (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Workaround Nitro A0 hardware RX bug (part 1) (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add basic support for Nitro in North Star 2 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: initialize rc to zero to avoid returning garbage (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: fix a condition (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Allow statistics DMA to be configurable using ethtool -C (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Assign netdev->dev_port with port ID (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Allow promiscuous mode for VF if default VLAN is enabled (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Increase maximum supported MTU to 9500 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Enable MRU enables bit when configuring VNIC MRU (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add support for firmware updates for additional processors (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Request firmware reset after successful firwmare update (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add support for updating flash more securely (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Do function reset on the 1st PF open only (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update firmware spec. to 1.3.0 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: VF/NPAR should return -EOPNOTSUPP for unsupported ethtool ops (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: Move GENEVE support from hard-coded port to using port notifier (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: Update drivers to support unified UDP encapsulation offload functions (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Support new ETHTOOL_{G|S}LINKSETTINGS API (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Don't allow autoneg on cards that don't support it (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Handle VF_CFG_CHANGE event from firmware (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add new function bnxt_reset() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add function for VF driver to query default VLAN (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Simplify VLAN receive logic (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Enable and disable RX CTAG and RX STAG VLAN acceleration together (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: Add support for segmentation of tunnels with outer checksums (Jonathan Toppins) [1382378]
-
-* Thu Mar 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-582.el7]
-- [acpi] tools/power/acpi: Update Intel copyright (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Remove direct kernel source include reference (Prarit Bhargava) [1425180]
-- [acpi] acpica: macosx: Fix wrong sem_destroy definition (Prarit Bhargava) [1425180]
-- [acpi] acpica: macosx: Fix anonymous semaphore implementation (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: fix typo in printk in ec help message (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup for all string-to-integer conversions (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib: Eliminate acpi_os_XXXFile()/acpi_log_error and link clibrary fxxx()/errno/perror() instead (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib: Add -nostdinc support for EFI layer (Prarit Bhargava) [1425180]
-- [acpi] acpica: msvc9: Fix <sys/stat.h> inclusion order issue (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib: Fix wrong mini C library usage (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib/efi: Fix wrong order of standard integer types/IO handles (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib: Fix build issues when ACPI_USE_STANDARD_HEADERS is not defined by converting size_t to acpi_size (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Fix a duplicate variable definition (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Add correct acpi_gbl_debug_timeout export to allow acpiexec to link (Prarit Bhargava) [1425180]
-- [acpi] acpica: iasl/disassembler: Add a check for missing filename (Prarit Bhargava) [1425180]
-- [acpi] tools/acpi: use CROSS_COMPILE to define prefix (Prarit Bhargava) [1425180]
-- [acpi] acpica: Move all ASCII utilities to a common file (Prarit Bhargava) [1425180]
-- [acpi] acpica: divergence: remove unwanted spaces for typedef (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: close file only if it is open (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Update for strtoul64 merger (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add support for QNX 6.6 platform (Prarit Bhargava) [1425180]
-- [acpi] acpica: getopt: Comment update, no functional change (Prarit Bhargava) [1425180]
-- [acpi] acpica: core: Major update for code formatting, no functional changes (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Add userspace AML interface support (Prarit Bhargava) [1425180]
-- [acpi] acpica: iasl: General cleanup of the file suffix #defines (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Enable build for EC userspace tool (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Add descend support in ACPI tools Makefile (Prarit Bhargava) [1425180]
-- [acpi] acpica: De-macroize calls to standard C library functions (Prarit Bhargava) [1425180]
-- [acpi] acpi / acpidump: Update acpidump manual (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Convert the default behavior to dump from /sys/firmware/acpi/tables (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Allow customized tables to be dumped without accessing /dev/mem (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add dragon_fly support to unix file mapping file (Prarit Bhargava) [1425180]
-- [acpi] acpica: Fix a sscanf format string (Prarit Bhargava) [1425180]
-- [acpi] acpica: unix: Cleanup to use ACPI_TO_INTEGER() to calc page offset (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpiexec: Do not put STDIN into raw mode unless it is a terminal (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add ACPI 1.0 RSDP support (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpihelp: Add UUID support, restructure some existing files (Prarit Bhargava) [1425180]
-- [acpi] acpica: utprint/oslibcfs: cleanup - no functional change (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Update acpidump to reduce source code differences (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Introduce acpi_log_error() to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Reduce freopen() invocations to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Replace file IOs with new APIs to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Remove exit() from generic layer to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add memory/string OSL usage to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: common: Enhance acpi_getopt() to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: common: Enhance cm_get_file_size() to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: application: Enhance ACPI_USAGE_xxx/ACPI_OPTION with acpi_os_printf() to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Add formatted printing APIs (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Add portable file IO to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Clean up acpi_os_printf()/acpi_os_vprintf() stubs (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Cleanup DEFINE_ACPI_GLOBALS by moving acpi_ut_init_global() from utglobal.c to utinit.c (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Update environments to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add support for ACPI 1.0 GUID in Linux (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Fix repetitive table dump in -n mode (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Add new mechanism to skip NULL entries in RSDT and XSDT (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add support to force using RSDT (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Fix truncated RSDP signature validation (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Fix code issue in invoking fread in the loop (Prarit Bhargava) [1425180]
-- [acpi] acpi / tools: Introduce ec_access.c - tool to access the EC (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Minor bugfixes (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Update man page (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Remove old acpidump source (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Update Makefile to build acpidump from ACPICA (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Cleanup tools/power/acpi makefiles (Prarit Bhargava) [1425180]
-- [acpi] acpica: Remove bool usage from ACPICA (Prarit Bhargava) [1425180]
-- [acpi] Fix x86 regression related to early mapping size limitation (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Add mechanism to control early table checksum verification (Prarit Bhargava) [1425180]
-- [acpi] acpica: Fix buffer allocation issue for generic_serial_bus region accesses (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add support to generate acpidump release (Prarit Bhargava) [1425180]
-- [acpi] acpica: table manager: Split tbinstal.c into two files (Prarit Bhargava) [1425180]
-- [acpi] acpica: table manager: Misc cleanup and renames, no functional change (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Add acpi_install_table() API for early table installation (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Avoid SSDT installation with acpi_gbl_disable_ssdt_table_load (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Cleanup ACPI_TABLE_ORIGIN_xxx flags (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Fix table checksums verification before installation (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Fix unbalanced table validations (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Clean up split INSTALLED/VALIDATED table state logics (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Fix multiple ACPI_FREE()s around acpi_tb_add_table() (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Fix the issues in handling virtual addressed tables (Prarit Bhargava) [1425180]
-- [acpi] acpica: Remove indent divergences to reduce maintenance overhead (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add a missing field for debug dump of mutex objects (Prarit Bhargava) [1425180]
-- [acpi] acpica: Update use of acpi_os_wait_events_complete interface (Prarit Bhargava) [1425180]
-- [acpi] acpica: disassembler: Add decoding of Notify() values (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Update new structures and add missing file (Prarit Bhargava) [1425180]
-- [acpi] acpica: disassembler: Add support to decode _HID and _CID values (Prarit Bhargava) [1425180]
-- [acpi] acpica: unload operator: Emit a warning if and when it is ever used (Prarit Bhargava) [1425180]
-- [acpi] acpica: Update comments for ACPICA name - no functional change (Prarit Bhargava) [1425180]
-- [acpi] acpica: utstring: Check array index bound before use (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Remove integer types translation protection (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add sparse declarators support (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Cleanup declarations of the acpi_gbl_debug_file global (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup the option of forcing the use of the RSDT (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup asmlinkage for ACPICA APIs (Prarit Bhargava) [1425180]
-- [acpi] acpica: Update acpidump related header file changes (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup exception codes (Prarit Bhargava) [1425180]
-- [acpi] Export acpi_os_get*() functions (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add new statistics interface (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add EXPORT_ACPI_INTERFACES macro to external interface modules (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup memory allocation macros and configurability (Prarit Bhargava) [1425180]
-- [acpi] acpica: tablemanager: Export acpi_tb_scan_memory_for_rsdp() (Prarit Bhargava) [1425180]
-- [acpi] acpica: Export acpi_tb_validate_rsdp() (Prarit Bhargava) [1425180]
-
-* Wed Mar 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-581.el7]
-- [x86] kvm: vmx: use correct vmcs_read/write for guest segment selector/base (Radim Krcmar) [1420755]
-- [x86] kvm: x86: do not save guest-unsupported XSAVE state (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix emulation of "MOV SS, null selector" (Radim Krcmar) [1420755] {CVE-2017-2583}
-- [x86] kvm: x86: flush pending lapic jump label updates on module unload (Radim Krcmar) [1420755]
-- [kernel] jump_labels: API for flushing deferred jump label updates (Radim Krcmar) [1420755]
-- [x86] kvm: x86: reset MMU on KVM_SET_VCPU_EVENTS (Radim Krcmar) [1420755]
-- [x86] kvm: x86: check for pic and ioapic presence before use (Radim Krcmar) [1420755]
-- [x86] kvm: x86: drop error recovery in em_jmp_far and em_ret_far (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix out-of-bounds access in lapic (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix missed SRCU usage in kvm_lapic_set_vapic_addr (Radim Krcmar) [1420755]
-- [x86] kvm: Disable irq while unregistering user notifier (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: VMCLEAR an active shadow VMCS after last use (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix wbinvd_dirty_mask use-after-free (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: Fix kernel panics induced by illegal INVEPT/INVVPID types (Radim Krcmar) [1420755]
-- [x86] kvm: x86: memset whole irq_eoi (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: Fix the NMI IDT-vectoring handling (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: postpone VMCS changes on MSR_IA32_APICBASE write (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: fix msr bitmaps to prevent L2 from accessing L0 x2APIC (Radim Krcmar) [1420755]
-- [x86] kvm: x86: nvmx: maintain internal copy of current VMCS (Radim Krcmar) [1420755]
-- [x86] kvm: vmx: handle PML full VMEXIT that occurs during event delivery (Radim Krcmar) [1420755]
-- [virt] kvm: nvmx: Fix memory corruption when using VMCS shadowing (Radim Krcmar) [1420755]
-- [virt] kvm: vmx: ensure VMCS is current while enabling PML (Radim Krcmar) [1420755]
-- [virt] kvm: nvmx: vmx instructions: fix segment checks when L1 is in long mode (Radim Krcmar) [1420755]
-- [virt] kvm: Fix irq route entries exceeding KVM_MAX_IRQ_ROUTES (Radim Krcmar) [1420755]
-- [x86] svm: bitwise vs logical op typo (Radim Krcmar) [1420755]
-- [virt] kvm: cap halt polling at exactly halt_poll_ns (Radim Krcmar) [1420755]
-- [virt] kvm: async_pf: do not warn on page allocation failures (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix conversion of addresses to linear in 32-bit protected mode (Radim Krcmar) [1420755]
-- [x86] kvm: x86: only channel 0 of the i8254 is linked to the HPET (Radim Krcmar) [1420755]
-- [x86] kvm: vmx: fix the writing POSTED_INTR_NV (Radim Krcmar) [1420755]
-- [x86] kvm: x86: correctly print #AC in traces (Radim Krcmar) [1420755]
-- [kernel] static_key: WARN on usage before jump_label_init was called (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: check host CR3 on vmentry and vmexit (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: introduce nested_vmx_load_cr3 and call it on vmentry (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: propagate errors from prepare_vmcs02 (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: fix CR3 load if L2 uses PAE paging and EPT (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: support descriptor table exits (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: invvpid handling improvements (Ladi Prosek) [1326138]
-- [x86] kvm: vmx: clean up declaration of VPID/EPT invalidation types (Ladi Prosek) [1326138]
-- [x86] nvmx: mark ept single context invalidation as supported (Ladi Prosek) [1326138]
-- [x86] kvm: x86: drop TSC offsetting kvm_x86_ops to fix KVM_GET/SET_CLOCK (Marcelo Tosatti) [1415766]
-- [x86] kvm: x86: do not go through vcpu in __get_kvmclock_ns (Marcelo Tosatti) [1415766]
-- [uapi] kvm: kvmclock: let KVM_GET_CLOCK return whether the master clock is in use (Marcelo Tosatti) [1415766]
-- [x86] kvm: x86: introduce get_kvmclock_ns (Marcelo Tosatti) [1415766]
-- [x86] kvm: x86: initialize kvmclock_offset (Marcelo Tosatti) [1415766]
-- [x86] pvclock: introduce seqcount-like API (Marcelo Tosatti) [1415766]
-- [x86] pvclock: Get rid of __pvclock_read_cycles in function pvclock_read_flags (Marcelo Tosatti) [1415766]
-- [x86] pvclock: Cleanup to remove function pvclock_get_nsec_offset (Marcelo Tosatti) [1415766]
-
-* Wed Mar 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-580.el7]
-- [crypto] ccp - Fix double add when creating new DMA command (Suravee Suthikulpanit) [1390820 1420977]
-- [crypto] ccp - Fix DMA operations when IOMMU is enabled (Suravee Suthikulpanit) [1390820 1420977]
-- [crypto] ccp: Do not support CCP crypto API in RHEL7 (Suravee Suthikulpanit) [1390820]
-- [dma] dmaengine: Make channel allocation callbacks optional (Suravee Suthikulpanit) [1390820]
-- [dma] dmaengine: Rework dma_chan_get (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix handling of RSA exponent on a v5 device (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Clean up the LSB slot allocation code (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - remove unneeded code (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - change bitfield type to unsigned ints (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix non static symbol warning (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - change type of struct member lsb to signed (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Make syslog errors human-readable (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - clean up data structure (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix return value check in ccp_dmaengine_register() (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - use kmem_cache_zalloc instead of kmem_cache_alloc/memset (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - add missing release in ccp_dmaengine_register (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix non static symbol warning (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Enable use of the additional CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Enable DMA service on a v5 CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Add support for the RNG in a version 5 CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Let a v5 CCP provide the same function as v3 (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Refactor code to enable checks for queue space (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Refactor code supporting the CCP's RNG (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Refactor the storage block allocation code (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - refactoring: symbol cleanup (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Shorten the fields of the action structure (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Abstract PCI info for the CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix non-conforming comment style (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - constify ccp_actions structure (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Ensure all dependencies are specified (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Register the CCP as a DMA resource (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix RT breaking #include <linux/rwlock_types.h> (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - fix lock acquisition code (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Add abstraction for device-specific calls (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - CCP versioning support (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Support for multiple CCPs (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Remove check for x86 family and model (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - use to_pci_dev and to_platform_device (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Use precalculated hash from headers (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Use module name in driver structures (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Change references to accelerator to offload (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Replace BUG_ON with WARN_ON and a return code (Suravee Suthikulpanit) [1390820]
-- [crypto] drivers - Fix Kconfig selects (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Protect against poorly marked end of sg list (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Remove unused structure field (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Convert calls to their devm_ counterparts (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Update CCP build support (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Updates for checkpatch warnings/errors (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - terminate ccp_support array with empty element (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Check for CCP before registering crypto algs (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Do not sign extend input data to CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Remove "select OF" from Kconfig (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Base AXI DMA cache settings on device tree (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Modify PCI support in prep for arm64 support (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Use pci_enable_msix_range() instead of pci_enable_msix() (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Perform completion callbacks using a tasklet (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Move HMAC calculation down to ccp ops file (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix ccp_run_passthru_cmd dma variable assignments (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - CCP device enabled/disabled changes (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Change data length declarations to u64 (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Remove redundant dev_set_drvdata (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - CCP Kconfig fixes (Suravee Suthikulpanit) [1390820]
-- [crypto] crytpo: ccp - fix coccinelle warnings (Suravee Suthikulpanit) [1390820]
-- [crypto] crytpo: ccp - CCP device driver build files (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - CCP device driver and interface support (Suravee Suthikulpanit) [1390820]
-- [acpi] revert "acpi / apd: Remove CLK_IS_ROOT" (Suravee Suthikulpanit) [1422966]
-- [tty] serial: 8250dw: Add device HID for future AMD UART controller (Suravee Suthikulpanit) [1422966]
-
-* Tue Feb 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-579.el7]
-- [fs] red hat kabi: Added flag signifying the use of file_operations_extend structure (Steve Dickson) [1356123]
-- [fs] red hat kabi: Remove the file operations that cause the kABI breakage (Steve Dickson) [1356123]
-- [fs] red hat kabi: Add new system call to nfs in a kABI compatible way (Steve Dickson) [1356123]
-- [fs] red hat kabi: introduce new calls to file_operations_extend (Steve Dickson) [1356123]
-- [fs] red hat kabi: Use #ifndef __GENKSYMS__ to maintain kAPI (Steve Dickson) [1356123]
-- [fs] try to clone files first in vfs_copy_file_range (Steve Dickson) [1356123]
-- [fs] nfs: Add COPY nfs operation (Steve Dickson) [1356123]
-- [fs] nfs: Add nfs_commit_file() (Steve Dickson) [1356123]
-- [fs] vfs: pull btrfs clone API to vfs layer (Steve Dickson) [1356123]
-- [fs] locks: new locks_mandatory_area calling convention (Steve Dickson) [1356123]
-- [fs] locks: make locks_mandatory_area check for file-private locks (Steve Dickson) [1356123]
-- [fs] vfs: Add vfs_copy_file_range() support for pagecache copies (Steve Dickson) [1356123]
-- [fs] powerpc: Wire up copy_file_range() syscall (Steve Dickson) [1356123]
-- [fs] s390: wire up copy_file_range syscall (Steve Dickson) [1356123]
-- [fs] x86: add sys_copy_file_range to syscall tables (Steve Dickson) [1356122 1356123]
-- [fs] vfs: add copy_file_range syscall and vfs helper (Steve Dickson) [1356123]
-- [fs] sunrpc: don't call sleeping functions from the notifier block callbacks (Scott Mayhew) [1422910]
-- [fs] lockd: unregister notifier blocks if the service fails to come up completely (Scott Mayhew) [1422910]
-- [fs] lockd: Register callbacks on the inetaddr_chain and inet6addr_chain (Scott Mayhew) [1422910]
-- [fs] nfsd: Implement the COPY call (Steve Dickson) [1356122]
-- [fs] nfsd: implement the NFSv4.2 CLONE operation (Steve Dickson) [1356122]
-- [fs] nfs: Don't take a reference on fl->fl_file for LOCK operation (Benjamin Coddington) [1386924]
-- [fs] gfs2: mark the journal idle to fix ro mounts (Robert S Peterson) [1213119]
-- [fs] auth_gss: fix panic in gss_pipe_downcall() in fips mode (Dave Wysochanski) [1316251]
-- [fs] fuse: add support for SEEK_HOLE and SEEK_DATA in lseek (Carlos Maiolino) [1306396]
-- [fs] ext4: Fix handling of extended tv_sec (Carlos Maiolino) [1278465]
-
-* Tue Feb 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-578.el7]
-- [net] fix creation adjacent device symlinks (Adrian Reber) [1412898]
-- [net] prevent of emerging cross-namespace symlinks (Adrian Reber) [1412898]
-- [netdrv] macvlan: unregister net device when netdev_upper_dev_link() fails (Adrian Reber) [1412898]
-- [net] netfilter: nft_range: add the missing NULL pointer check (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: simplify the basic expressions' init routine (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: avoid uninitialized variable warning (Phil Sutter) [1418969]
-- [net] netfilter: nft_range: validate operation netlink attribute (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: add range expression (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: remove useless U8_MAX validation (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: fix type mismatch with error return from nft_parse_u32_check (Phil Sutter) [1418969]
-- [net] netfilter: nft_exthdr: fix error handling in nft_exthdr_init() (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: underflow in nft_parse_u32_check() (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: validate maximum value of u32 netlink attributes (Phil Sutter) [1418969]
-- [net] netfilter: nft_exthdr: Add size check on u8 nft_exthdr attributes (Phil Sutter) [1418969]
-- [net] ipv6: Don't use ufo handling on later transformed packets (Jakub Sitnicki) [1388846]
-- [net] vxlan: fix oops in dev_fill_metadata_dst (Paolo Abeni) [1423068]
-- [net] ip_forward: Drop frames with attached skb->sk (Florian Westphal) [1421006]
-- [net] ipv4: ip_forward: perform skb->pkt_type check at the beginning (Florian Westphal) [1421006]
-- [lib] rhashtable-test: Get rid of previous workaround (Phil Sutter) [1393817]
-- [lib] rhashtable-test: Fix max_size parameter description (Phil Sutter) [1393817]
-- [lib] rhashtable-test: allow to retry even if -ENOMEM was returned (Phil Sutter) [1393817]
-- [lib] rhashtable-test: retry insert operations (Phil Sutter) [1393817]
-- [lib] rhashtable-test: add cond_resched() to thread test (Phil Sutter) [1393817]
-- [lib] rhashtable: Add rhlist interface (Phil Sutter) [1393817]
-- [lib] rhashtable: fix a memory leak in alloc_bucket_locks() (Phil Sutter) [1393817]
-- [lib] rhashtable: add rhashtable_lookup_get_insert_key() (Phil Sutter) [1393817]
-- [lib] rhashtable: Remove GFP flag from rhashtable_walk_init (Phil Sutter) [1393817]
-- [lib] rhashtable: fix shift by 64 when shrinking (Phil Sutter) [1393817]
-- [lib] rhashtable: avoid large lock-array allocations (Phil Sutter) [1393817]
-- [lib] rhashtable: accept GFP flags in rhashtable_walk_init (Phil Sutter) [1393817]
-- [net] netfilter: built-in NAT support for UDPlite (Davide Caratti) [1357840]
-- [net] netfilter: built-in NAT support for SCTP (Davide Caratti) [1357840]
-- [net] netfilter: built-in NAT support for DCCP (Davide Caratti) [1357840]
-- [net] netfilter: conntrack: built-in support for UDPlite (Davide Caratti) [1387537]
-- [net] netfilter: conntrack: built-in support for SCTP (Davide Caratti) [1387537]
-- [net] netfilter: conntrack: built-in support for DCCP (Davide Caratti) [1387537]
-- [net] netfilter: conntrack: simplify init/uninit of L4 protocol trackers (Davide Caratti) [1387537]
-- [net] igmp, mld: Fix memory leak in igmpv3/mld_del_delrec() (Hangbin Liu) [1420972]
-- [net] mld: do not remove mld souce list info when set link down (Hangbin Liu) [1383584]
-- [net] openvswitch: maintain correct checksum state in conntrack actions (Lance Richardson) [1409558]
-
-* Mon Feb 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-577.el7]
-- [net] introduce net_device_extended (Jiri Benc) [1382040]
-- [net] bonding: update documentation section after dev->trans_start removal (Ivan Vecera) [1382040]
-- [net] deprecate dev->trans_start (Ivan Vecera) [1382040]
-- [netdrv] replace dev->trans_start update with helper (Ivan Vecera) [1382040]
-- [net] netdevice: add helper to update trans_start (Ivan Vecera) [1382040]
-- [netdrv] replace dev->trans_start accesses with dev_trans_start (Ivan Vecera) [1382040]
-- [net] sched: make dev_trans_start return vlan's real dev trans_start (Ivan Vecera) [1382040]
-- [net] ptp: Introduce a high resolution frequency adjustment method (Ivan Vecera) [1382040]
-- [net] ipip: Properly mark ipip GRO packets as encapsulated (Ivan Vecera) [1382040]
-- [net] introduce csum_replace_by_diff() helper (Ivan Vecera) [1382040]
-- [net] ipv6: gro: support sit protocol (Ivan Vecera) [1382040]
-- [net] skb_segment() should preserve backpressure (Ivan Vecera) [1382040]
-- [net] skb_segment() provides list head and tail (Ivan Vecera) [1382040]
-- [net] ipip: Add gro callbacks to ipip offload (Ivan Vecera) [1382040]
-- [kernel] list: fix order of arguments for hlist_add_after(_rcu) (Ivan Vecera) [1382040]
-- [kernel] list: make hlist_add_after() argument names match hlist_add_after_rcu() (Ivan Vecera) [1382040]
-- [net] rtnl: stats - add missing netlink message size checks (Ivan Vecera) [1382040]
-- [net] rtnl: info leak in rtnl_fill_vfinfo() (Ivan Vecera) [1382040]
-- [net] rtnl: avoid uninitialized data in IFLA_VF_VLAN_LIST handling (Ivan Vecera) [1382040]
-- [net] Update API for VF vlan protocol 802.1ad support (Ivan Vecera) [1382040]
-- [net] introduce default neigh_construct/destroy ndo calls for L2 upper devices (Ivan Vecera) [1382040]
-- [net] add dev arg to ndo_neigh_construct/destroy (Ivan Vecera) [1382040]
-- [net] add netdev_lockdep_set_classes() helper (Ivan Vecera) [1382040]
-- [documentation] taskstats: fix nl parsing in accounting/getdelays.c (Ivan Vecera) [1382040]
-- [net] neigh: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [net] rtnl: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [net] openvswitch: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [net] sock_diag: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [fs] quota: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] macsec: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] wireless: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] ieee802154: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] l2tp: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] bridge: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] openvswitch: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] sched: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] rtnl: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [kernel] taskstats: use the libnl API to align nlattr on 64-bit (Ivan Vecera) [1382040]
-- [net] xfrm: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [net] libnl: add nla_put_u64_64bit() helper (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_msecs(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_s64(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_net64(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_be64(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_le64(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: fix help of _64bit functions (Ivan Vecera) [1382040]
-- [net] ip6mr: align RTA_MFC_STATS on 64-bit (Ivan Vecera) [1382040]
-- [net] ipmr: align RTA_MFC_STATS on 64-bit (Ivan Vecera) [1382040]
-- [net] rtnl: use the new API to align IFLA_STATS* (Ivan Vecera) [1382040]
-- [net] libnl: add more helpers to align attributes on 64-bit (Ivan Vecera) [1382040]
-- [net] nla_align_64bit() needs to test the right pointer. (Ivan Vecera) [1382040]
-- [net] rtnetlink: add new RTM_GETSTATS message to dump link stats (Ivan Vecera) [1382040]
-- [net] fix HAVE_EFFICIENT_UNALIGNED_ACCESS typos (Ivan Vecera) [1382040]
-- [net] Add helpers for 64-bit aligning netlink attributes. (Ivan Vecera) [1382040]
-- [net] Align IFLA_STATS64 attributes properly on architectures that need it. (Ivan Vecera) [1382040]
-- [net] rtnetlink: rtnl_fill_stats: avoid an unnecssary stats copy (Ivan Vecera) [1382040]
-- [net] sched: do not requeue a NULL skb (Ivan Vecera) [1382040]
-- [net] netlink: use nla_get_in_addr and nla_put_in_addr for ipv4 address (Ivan Vecera) [1382040]
-- [net] rtnetlink: fix frame size warning in rtnl_fill_ifinfo (Ivan Vecera) [1382040]
-- [net] netfilter: nfnetlink_cthelper: Remove 'const' and '&' to avoid warnings (Ivan Vecera) [1382040]
-- [net] qdisc: validate skb without holding lock (Ivan Vecera) [1382040]
-- [net] netlink: Fix shadow warning on jiffies (Ivan Vecera) [1382040]
-- [net] sch_tbf: Fix potential memory leak in tbf_change() (Ivan Vecera) [1382040]
-- [net] sch_netem: support of 64bit rates (Ivan Vecera) [1382040]
-- [net] sch_netem: more precise length of packets (Ivan Vecera) [1382040]
-- [net] sch_tbf: add TBF_BURST/TBF_PBURST attribute (Ivan Vecera) [1382040]
-- [net] sch_tbf: use do_div() for 64-bit divide (Ivan Vecera) [1382040]
-- [net] sched: tbf: fix the calculation of max_size (Ivan Vecera) [1382040]
-- [kernel] taskstats: add nla_nest_cancel() for failure processing between nla_nest_start() and nla_nest_end() (Ivan Vecera) [1382040]
-- [net] net_sched: tbf: support of 64bit rates (Ivan Vecera) [1382040]
-- [net] netevent/netlink.h: Remove extern from function prototypes (Ivan Vecera) [1382040]
-- [net] net_sched: htb: support of 64bit rates (Ivan Vecera) [1382040]
-- [net] net_sched: add u64 rate to psched_ratecfg_precompute() (Ivan Vecera) [1382040]
-- [net] ipv4: Update parameters for csum_tcpudp_magic to their original types (Ivan Vecera) [1382040]
-- [net] tcp: reserve tcp_skb_mss() to tcp stack (Ivan Vecera) [1382040]
-- [net] ipvs: properly declare tunnel encapsulation (Ivan Vecera) [1382040]
-- [net] sit: use kfree_skb to replace dev_kfree_skb (Ivan Vecera) [1382040]
-
-* Fri Feb 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-576.el7]
-- [netdrv] cxgb4/cxgb4vf: Allocate more queues for 25G and 100G adapter (Don Dutile) [1385866 1417284]
-- [netdrv] mlx5: E-Switch, Handle mode change failures (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Fix error flow in the SRIOV e-switch init code (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix flow counter bulk command out mailbox allocation (Don Dutile) [1385330 1417284]
-- [infiniband] ib/rdmavt: Don't vfree a kzalloc'ed memory region (Don Dutile) [1385848 1417284]
-- [infiniband] ib/rxe: Fix kmem_cache leak (Don Dutile) [1417284]
-- [infiniband] ib/rxe: Fix race condition between requester and completer (Don Dutile) [1417284]
-- [infiniband] ib/rxe: Fix duplicate atomic request handling (Don Dutile) [1417284]
-- [infiniband] ib/rxe: Fix kernel panic in udp_setup_tunnel (Don Dutile) [1417284]
-- [infiniband] ib/mlx5: Set source mac address in FTE (Don Dutile) [1417284]
-- [infiniband] ib/mlx5: Enable MAD_IFC commands for IB ports only (Don Dutile) [1417284]
-- [infiniband] ib/mlx4: Diagnostic HW counters are not supported in slave mode (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Use correct subnet-prefix in QP1 mads under SR-IOV (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix code indentation in QP1 MAD flow (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix incorrect MC join state bit-masking on SR-IOV (Don Dutile) [1385329 1417284]
-- [infiniband] ib/ipoib: Don't allow MC joins during light MC flush (Don Dutile) [1417284]
-- [infiniband] ib/rxe: fix GFP_KERNEL in spinlock context (Don Dutile) [1417284]
-- [netdrv] mlx4_en: fix off by one in error handling (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: Fix panic on xmit while port is down (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: Fixes for DCBX (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: Fix the return value of mlx4_en_dcbnl_set_state() (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: Fix the return value of mlx4_en_dcbnl_set_all() (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5e: Fix parsing of vlan packets when updating lro header (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix global PFC counters replication (Don Dutile) [1417284]
-- [netdrv] mlx5e: Prevent casting overflow (Don Dutile) [1417284]
-- [netdrv] mlx5e: Move an_disable_cap bit to a new position (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix xmit_more counter race issue (Don Dutile) [1417284]
-- [net] xprtrdma: Fix receive buffer accounting (Don Dutile) [1417284]
-- [net] xprtrdma: revert 3d4cf35bd4fa ("xprtrdma: Reply buffer exhaustion...") (Don Dutile) [1417284]
-- [infiniband] iw_cxgb4: block module unload until all ep resources are released (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: call dev_put() on l2t allocation failure (Don Dutile) [1385866 1417284]
-- [infiniband] ib/hfi1: Rework debugfs to use SRCU (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Make n_krcvqs be an unsigned long integer (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add QSFP sanity pre-check (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix AHG KDETH Intr shift (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix SGE length for misaligned PIO copy (Don Dutile) [1382806 1417284]
-- [infiniband] ib/mlx5: Don't return errors from poll_cq (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Use TIR number based on selector (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Simplify code by removing return variable (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Return EINVAL when caller specifies too many SGEs (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx4: Don't return errors from poll_cq (Don Dutile) [1417284]
-- [infiniband] revert "ib/mlx4: Return EAGAIN for any error in mlx4_ib_poll_one" (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Fix memory corruption in ipoib cm mode connect flow (Don Dutile) [1417284]
-- [infiniband] ib/core: Fix use after free in send_leave function (Don Dutile) [1417284]
-- [infiniband] ib/cxgb4: Make _free_qp static to silence build warning (Don Dutile) [1385866 1417284]
-- [infiniband] ib/isert: Properly release resources on DEVICE_REMOVAL (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Fix the size parameter to find_first_bit (Don Dutile) [1382806 1417284]
-- [infiniband] ib/mlx5: Fix the size parameter to find_first_bit (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Increase number of ethtool steering priorities (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Add error prints when validate ETS failed (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5e: Fix memory leak if refreshing TIRs fails (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add ethtool counter for TX xmit_more (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix ethtool -g/G rx ring parameter report with striding RQ (Don Dutile) [1417284]
-- [netdrv] mlx5e: Don't wait for SQ completions on close (Don Dutile) [1417284]
-- [netdrv] mlx5e: Don't post fragmented MPWQE when RQ is disabled (Don Dutile) [1417284]
-- [netdrv] mlx5e: Don't wait for RQ completions on close (Don Dutile) [1417284]
-- [netdrv] mlx5e: Limit UMR length to the device's limitation (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Clean up type used and casting (Don Dutile) [1382806 1417284]
-- [infiniband] ib/srpt: Update sport->port_guid with each port refresh (Don Dutile) [1417284]
-- [infiniband] ib/mlx5: Remove superfluous include of io-mapping.h (Don Dutile) [1385330 1417284]
-- [infiniband] i40iw: Do not set self-referencing pointer to NULL after kfree (Don Dutile) [1417284]
-- [infiniband] iw_cxgb4: Fix cxgb4 arm CQ logic w/IB_CQ_REPORT_MISSED_EVENTS (Don Dutile) [1385866 1417284]
-- [rdma] ib/core: Use memdup_user() rather than duplicating its implementation (Don Dutile) [1417284]
-- [infiniband] ib/qib: Use memdup_user() rather than duplicating its implementation (Don Dutile) [1381986 1417284]
-- [infiniband] iw_cxgb4: use the MPA initiator's IRD if < our ORD (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: limit IRD/ORD advertised to ULP by device max (Don Dutile) [1385866 1417284]
-- [infiniband] ib/rdmvat: Fix double vfree() in rvt_create_qp() error path (Don Dutile) [1385848 1417284]
-- [infiniband] ib/hfi1: Improve J_KEY generation (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Return invalid field for non-QSFP CableInfo queries (Don Dutile) [1382806 1417284]
-- [infiniband] ib/usnic: Fix error return code (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add missing error code assignment before test (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Using kfree_rcu() to simplify the code (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Validate header in set_armed_active (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Pass packet ptr to set_armed_active (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fetch monitor values on-demand for CableInfo query (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1, ib/qib: Fix qp_stats sleep with rcu read lock held (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Remove duplicated include from affinity.c (Don Dutile) [1382806 1417284]
-- [infiniband] ib/isert: fix error return code in isert_alloc_login_buf() (Don Dutile) [1417284]
-- [infiniband] ib/core: Fix possible memory leak in cma_resolve_iboe_route() (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Allocate cpu mask on the heap to silence warning (Don Dutile) [1382806 1417284]
-- [infiniband] ib/mlx4: Return EAGAIN for any error in mlx4_ib_poll_one (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Make function use_tunnel_data return void (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5: E-Switch, Avoid ACLs in the offloads mode (Don Dutile) [1417284]
-- [netdrv] mlx5: E-Switch, Set the send-to-vport rules in the correct table (Don Dutile) [1417284]
-- [netdrv] mlx5: E-Switch, Return the correct devlink e-switch mode (Don Dutile) [1417284]
-- [netdrv] mlx5e: Retrieve the switchdev id from the firmware only once (Don Dutile) [1417284]
-- [netdrv] mlx5: Update last-use statistics for flow rules (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Added missing check of msg length in verifying its signature (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix pci error recovery flow (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5e: Optimization for MTU change (Don Dutile) [1417284]
-- [netdrv] mlx5e: Set port MTU on netdev creation rather on open (Don Dutile) [1417284]
-- [netdrv] cxgb4: Fixes resource allocation for ULD's in kdump kernel (Don Dutile) [1385866 1417284]
-- [infiniband] Soft RoCE driver (Don Dutile) [1384574 1417284]
-- [infiniband] ib/uverbs: Fix race between uverbs_close and remove_one (Don Dutile) [1417284]
-- [infiniband] ib/mthca: Clean up error unwind flow in mthca_reset() (Don Dutile) [1417284]
-- [infiniband] ib/mthca: NULL arg to pci_dev_put is OK (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: NULL arg to sc_return_credits is OK (Don Dutile) [1382806 1417284]
-- [infiniband] Use smaller 512 byte messages for portmapper messages (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Report SG feature regardless of HW UD CSUM capability (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Don't use GFP_ATOMIC for CQ resize struct (Don Dutile) [1385329 1417284]
-- [infiniband] ib/hfi1: Expand reported serial number (Don Dutile) [1382806 1417284]
-- [uapi] ib/hfi1: Allow for non-double word multiple message sizes for user SDMA (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt: Eliminate redundant opcode test in mr ref clear (Don Dutile) [1385848 1417284]
-- [infiniband] ib/hfi1: Handle kzalloc failure in init_pervl_scs (Don Dutile) [1382806 1417284]
-- [infiniband] ib/qib, ib/hfi1: Fix grh creation in ud loopback (Don Dutile) [1381986 1417284]
-- [infiniband] ib/hfi1: Use hdr2sc function to calculate 5-bit SC (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Cleanup UD packet handler (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Rename hfi1_pio_header to hfi1_sdma_header (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Rename struct ahg_ib_header to struct hfi1_ahg_info (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Remove unused elements from struct ahg_ib_header (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Reset QSFP on every run through channel tuning (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Ignore QSFP interrupts until power stabilizes (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Disable external device configuration requests (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt, hfi1: Fix NFSoRDMA failure with FRMR enabled (Don Dutile) [1382806 1417284]
-- [rdma] ib/hfi1: Add the capability for reserved operations (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix trace message units (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add sysfs entry to override SDMA interrupt affinity (Don Dutile) [1382806 1417284]
-- [lib] cpumask: factor out show_cpumap into separate helper function (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add static PCIe Gen3 CTLE tuning (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix "suspicious rcu_dereference_check() usage" warnings (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Add missing spin_lock_init call for rdi->n_cqs_lock (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Read all firmware versions (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Explain state complete frame details (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Modify the default number of kernel receive conexts (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add support for extended memory management (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Work request processing for fast register mr and invalidate (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Handle send with invalidate opcode in the RC recv path (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt: Handle local operations in post send (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt: Add mechanism to invalidate MR keys (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Add support for ib_map_mr_sg (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Pull FECN/BECN processing to a common place (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix to fully initialize send context area (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix integrity errors counter value calculation (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Use new driver specific post send table (Don Dutile) [1382806 1417284]
-- [infiniband] ib/qib: Add qib post send table (Don Dutile) [1381986 1417284]
-- [infiniband] ib/hfi1: Add hfi1 post send tables (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt: Add data structures and routines for table driven post send (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Correct receive packet handler assignment (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Improve SDMA engine assignment for user SDMA (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Refine user process affinity algorithm (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Reserve and collapse CPU cores for contexts (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add global structure for affinity assignments (Don Dutile) [1382806 1417284]
-- [infiniband] iw_cm: free cm_id resources on the last deref (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: don't block in destroy_qp awaiting the last deref (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: explicitly move the qp to ERROR state during flush (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: stop MPA_REPLY timer when disconnecting (Don Dutile) [1385866 1417284]
-- [infiniband] ib/core: Add flow control to the portmapper netlink calls (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/cxgb3: Use AF_INET for sin_family field (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: Use kfree_skb instead of kfree (Don Dutile) [1385866 1417284]
-- [infiniband] ib/mlx5: Fix duplicate const warning (Don Dutile) [1385330 1417284]
-- [infiniband] ib/isert: Remove an unused member variable (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Simplify srpt_queue_response() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Limit the number of SG elements per work request (Don Dutile) [1417284]
-- [rdma] ib/core, rdma rw api: Do not exceed QP SGE send limit (Don Dutile) [1417284]
-- [infiniband] ib/core: Make rdma_rw_ctx_init() initialize all used fields (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Add counter to track unsupported packets drop (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add VL XmitDiscards counters to the opapmaquery (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix trace sparse errors (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Separate tracepoints into specific headers (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix typo (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Remove unnecessary done label in hfi1_write_iter (Don Dutile) [1382806 1417284]
-- [rdma] ib/hfi1: Clean up port state structure definition (Don Dutile) [1382806 1417284]
-- [netdrv] mlx5_core/health: Remove deprecated create_singlethread_workqueue (Don Dutile) [1385330 1417284]
-- [netdrv] mlx4_core: Check device state before unregistering it (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5e: Query minimum required header copy during xmit (Don Dutile) [1383787 1417284]
-- [netdrv] mlx5e: Check the minimum inline header mode before xmit (Don Dutile) [1383787 1417284]
-- [target] libcxgb: add library module for Chelsio drivers (Don Dutile) [1417284]
-- [netdrv] mlx5: Use PTR_ERR_OR_ZERO() to simplify the code (Don Dutile) [1385330 1417284]
-- [netdrv] mlx4_en: break out tx_desc write into separate function (Don Dutile) [1385329 1417284]
-- [net] xprtrdma: fix semicolon.cocci warnings (Don Dutile) [1417284]
-- [net] rds: tcp: Enable multipath RDS for TCP (Don Dutile) [1417284]
-- [net] rds: tcp: Reduce code duplication in rds_tcp_reset_callbacks() (Don Dutile) [1417284]
-- [net] rds: tcp: avoid bad page reference in rds_tcp_listen_data_ready (Don Dutile) [1417284]
-- [netdrv] mlx5: E-Switch, Add API to configure rules for the offloaded mode (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Use two priorities for SRIOV offloads mode (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Introduce bulk reading of flow counters (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Store counters in rbtree instead of list (Don Dutile) [1385330 1417284]
-- [net] xprtrdma: No direct data placement with krb5i and krb5p (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Clean up fixup_copy_count accounting (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Update only specific fields in private receive buffer (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Do not update {head, tail}.iov_len in rpcrdma_inline_fixup() (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: rpcrdma_inline_fixup() overruns the receive page list (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Chunk list encoders no longer share one rl_segments array (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Place registered MWs on a per-req list (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Release orphaned MRs immediately (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Allocate MRs on demand (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Chunk list encoders must not return zero (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Honor ->send_request API contract (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Reply buffer exhaustion can be catastrophic (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Clean up device capability detection (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Remove rpcrdma_map_one() and friends (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Remove ALLPHYSICAL memory registration mode (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Do not leak an MW during a DMA map failure (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Refactor MR recovery work queues (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Use scatterlist for DMA mapping and unmapping under FMR (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Rename fields in rpcrdma_fmr (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Move init and release helpers (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Create common scatterlist fields in rpcrdma_mw (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Remove FMRs from the unmap list after unmapping (Don Dutile) [1401797 1417284]
-- [netdrv] mlx5e: Expose flow control counters to ethtool (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5e: Expose RDMA VPort counters to ethtool (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5e: Add support to get ethtool flow rules (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5e: Support l3/l4 flow type specs in ethtool flow steering (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5e: Add ethtool flow steering support (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5: Properly remove all steering objects (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5: Introduce mlx5_flow_steering structure (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5: Refactor mlx5_add_flow_rule (Don Dutile) [1383601 1417284]
-- [netdrv] mlx4: Fix some indent inconsistancy (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5e: Introduce SRIOV VF representors (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5: Add Representors registration API (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5e: Add support for multiple profiles (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5e: Mark enabled RQTs instances explicitly (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5e: TIRs management refactoring (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5e: Create NIC global resources only once (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add devlink based SRIOV mode changes (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: Add devlink interface (Don Dutile) [1383792 1417284]
-- [net] devlink: Add E-Switch mode control (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add API to create vport rx rules (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add offloads table (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: Introduce offloads steering namespace (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add API to create send-to-vport rules (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add miss rule for offloads mode (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add support for the sriov offloads mode (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add operational mode to the SRIOV e-Switch (Don Dutile) [1383792 1417284]
-- [net] rds: Do not send a pong to an incoming ping with 0 src port (Don Dutile) [1417284]
-- [net] rds: tcp: Simplify reconnect to avoid duelling reconnnect attempts (Don Dutile) [1417284]
-- [net] rds: tcp: Hooks to set up a single connection path (Don Dutile) [1417284]
-- [net] rds: tcp: make receive path use the rds_conn_path (Don Dutile) [1417284]
-- [net] rds: tcp: make ->sk_user_data point to a rds_conn_path (Don Dutile) [1417284]
-- [net] rds: tcp: Refactor connection destruction to handle multiple paths (Don Dutile) [1417284]
-- [net] rds: tcp: Make rds_tcp_connection track the rds_conn_path (Don Dutile) [1417284]
-- [net] rds: tcp: Remove dead logic around c_passive in rds-tcp (Don Dutile) [1417284]
-- [net] rds: Rework path specific indirections (Don Dutile) [1417284]
-- [netdrv] be2net: signedness bug in be_msix_enable() (Don Dutile) [1417284]
-- [netdrv] mlx5e: Report correct auto negotiation and allow toggling (Don Dutile) [1383786 1417284]
-- [netdrv] mlx5e: Use new ethtool get/set link ksettings API (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add missing 50G baseSR2 link mode (Don Dutile) [1417284]
-- [uapi] ethtool: Add 50G baseSR2 link mode (Don Dutile) [1417284]
-- [netdrv] mlx5e: Toggle link only after modifying port parameters (Don Dutile) [1383595 1417284]
-- [netdrv] mlx5e: Support adaptive RX coalescing (Don Dutile) [1383595 1417284]
-- [netdrv] mlx5e: CQE based moderation (Don Dutile) [1383595 1417284]
-- [netdrv] mlx5e: Introduce net device priv flags infrastructure (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add TXQ set max rate support (Don Dutile) [1383785 1417284]
-- [netdrv] mlx5: Rate limit tables support (Don Dutile) [1383785 1417284]
-- [netdrv] be2net: Change copyright markings in source files (Don Dutile) [1417284]
-- [netdrv] be2net: support asymmetric rx/tx queue counts (Don Dutile) [1417284]
-- [netdrv] be2net: fix definition of be_max_eqs() (Don Dutile) [1417284]
-- [netdrv] cxgb4vf: Synchronize access to mailbox (Don Dutile) [1385866 1417284]
-- [netdrv] mlx4_en: Add DCB PFC support through CEE netlink commands (Don Dutile) [1383796 1417284]
-- [infiniband] ib/hfi1: Add device FW version string (Don Dutile) [1382806 1417284]
-- [infiniband] ib/core: Export a common fw_ver sysfs entry (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Use new device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/usnic: Support device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/ocrdma: Support device FW version string (Don Dutile) [1385876 1417284]
-- [infiniband] ib/nes: Support device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/mthca: Supprot device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/mlx5: Support device FW version string (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx4: Support device FW version string (Don Dutile) [1385329 1417284]
-- [infiniband] ib/i40iw: Support device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/cxgb4: Support device FW version string (Don Dutile) [1385866 1417284]
-- [infiniband] ib/cxgb3: Support device FW version string (Don Dutile) [1385866 1417284]
-- [rdma] ib/core: Add get FW version string to the core (Don Dutile) [1417284]
-- [netdrv] {net, ib}/mlx5: Refactor internal SRQ API (Don Dutile) [1385330 1417284]
-- [netdrv] ib/mlx5: Fix MODIFY_QP command input structure (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Report mlx5 TSO capabilities when querying device (Don Dutile) [1384619 1417284]
-- [infiniband] ib/mlx5: Enable flow steering for IPv6 traffic (Don Dutile) [1384580 1417284]
-- [uapi] ib/core: Add IPv6 support to flow steering (Don Dutile) [1384580 1417284]
-- [netdrv] ib/mlx5: Reset flow support for IB kernel ULPs (Don Dutile) [1384614 1417284]
-- [infiniband] ib/mlx5: Implements disassociate_ucontext API (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Add RSS QP support (Don Dutile) [1384576 1417284]
-- [uapi] ib/uverbs: Extend create QP to get RWQ indirection table (Don Dutile) [1384576 1417284]
-- [rdma] ib/core: Extend create QP to get indirection table (Don Dutile) [1384576 1417284]
-- [infiniband] ib/mlx5: Add Receive Work Queue Indirection table operations (Don Dutile) [1384576 1417284]
-- [uapi] ib/uverbs: Introduce RWQ Indirection table (Don Dutile) [1384576 1417284]
-- [rdma] ib/core: Introduce Receive Work Queue indirection table (Don Dutile) [1384576 1417284]
-- [infiniband] ib/mlx5: Add receive Work Queue verbs (Don Dutile) [1384576 1417284]
-- [uapi] ib/uverbs: Add WQ support (Don Dutile) [1384576 1417284]
-- [rdma] ib/core: Introduce Work Queue object and its verbs (Don Dutile) [1384576 1417284]
-- [netdrv] mlx5: Export required core functions to support RSS (Don Dutile) [1384576 1417284]
-- [infiniband] rdma/iw_cxgb4: Low resource fixes for Completion queue (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: Low resource fixes for Memory registration (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/cxgb4: Configure 0B MRs to match HW implementation (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: Low resource fixes for connection manager (Don Dutile) [1385866 1417284]
-- [netdrv] rdma/iw_cxgb4: Add missing error codes for act open cmd (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: clean up c4iw_reject_cr() (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: allocate enough space for debugfs "qps" dump (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: only read markers_enabled mod param once (Don Dutile) [1385866 1417284]
-- [net] rds: tcp: Fix non static symbol warnings (Don Dutile) [1417284]
-- [netdrv] mlx5_en: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Don Dutile) [1385330 1417284]
-- [netdrv] mlx4_en: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Don Dutile) [1385329 1417284]
-- [netdrv] benet: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Don Dutile) [1417284]
-- [netdrv] cxgb4/cxgb4vf: Synchronize all MAC addresses (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Enable SR-IOV configuration via PCI sysfs interface (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Force cxgb4 driver as MASTER in kdump kernel (Don Dutile) [1385866 1417284]
-- [net] rds: Update rds_conn_destroy to be MP capable (Don Dutile) [1417284]
-- [net] rds: Update rds_conn_shutdown to work with rds_conn_path (Don Dutile) [1417284]
-- [net] rds: Initialize all RDS_MPATH_WORKERS in __rds_conn_create (Don Dutile) [1417284]
-- [net] rds: Add rds_conn_path_error() (Don Dutile) [1417284]
-- [net] rds: update rds-info related functions to traverse multiple conn_paths (Don Dutile) [1417284]
-- [net] rds: Add rds_conn_path_connect_if_down() for MP-aware callers (Don Dutile) [1417284]
-- [net] rds: Make rds_send_pong() take a rds_conn_path argument (Don Dutile) [1417284]
-- [net] rds: Extract rds_conn_path from i_conn_path in rds_send_drop_to() for MP-capable transports (Don Dutile) [1417284]
-- [net] rds: fix possible double free on sock tear down (Don Dutile) [1417284]
-- [net] rds: Pass rds_conn_path to rds_send_xmit() (Don Dutile) [1417284]
-- [net] rds: Make rds_send_queue_rm() rds_conn_path aware (Don Dutile) [1417284]
-- [net] rds: Remove stale function rds_send_get_message() (Don Dutile) [1417284]
-- [net] rds: Add rds_send_path_drop_acked() (Don Dutile) [1417284]
-- [net] rds: Add rds_send_path_reset() (Don Dutile) [1417284]
-- [net] rds: rds_inc_path_init() helper function for MP capable transports (Don Dutile) [1417284]
-- [net] rds: recv path gets the conn_path from rds_incoming for MP capable transports (Don Dutile) [1417284]
-- [net] rds: add t_mp_capable bit to be set by MP capable transports (Don Dutile) [1417284]
-- [net] rds: split out connection specific state from rds_connection to rds_conn_path (Don Dutile) [1417284]
-- [net] rds: call rds_conn_drop instead of open code it at rds_connect_complete (Don Dutile) [1417284]
-- [net] rds: rds_cong_queue_updates needs to defer the congestion update transmission (Don Dutile) [1417284]
-- [net] rds: ib: Remove deprecated create_workqueue (Don Dutile) [1417284]
-- [netdrv] {net,ib}/mlx5: mlx5_ifc updates (Don Dutile) [1385330 1417284]
-- [netdrv] mlx4_en: fix ethtool -x (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: mlx4_en_netpoll() should schedule TX, not RX (Don Dutile) [1385329 1417284]
-- [infiniband] ib/hfi1: Correct issues with sc5 computation (Don Dutile) [1382806 1417284]
-- [netdrv] mlx5e: Fix del vxlan port command buffer memset (Don Dutile) [1417284]
-- [netdrv] mlx5e: start/stop all tx queues upon open/close netdev (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix TX Timeout to detect queues stuck on BQL (Don Dutile) [1417284]
-- [netdrv] cxgb4: update latest firmware version supported (Don Dutile) [1385866 1417284]
-- [netdrv] mlx5: Avoid setting unused var when modifying vport node GUID (Don Dutile) [1385330 1417284]
-- [net] rds: fix rds_tcp_init() error path (Don Dutile) [1417284]
-- [netdrv] mlx5e: Validate BW weight values of ETS (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix select queue callback (Don Dutile) [1417284]
-- [netdrv] mlx5e: Copy all L2 headers into inline segment (Don Dutile) [1417284]
-- [netdrv] mlx5e: Handle RQ flush in error cases (Don Dutile) [1417284]
-- [netdrv] mlx5e: Implement ndo_tx_timeout callback (Don Dutile) [1417284]
-- [netdrv] mlx5e: Timeout if SQ doesn't flush during close (Don Dutile) [1417284]
-- [netdrv] mlx5: Add timeout handle to commands with callback (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix potential deadlock in command mode change (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Use ktime_get_ns() (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix wait_vital for VFs and remove fixed sleep (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix incorrect page count when in internal error (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Avoid calling sleeping function by the health poll thread (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix teardown errors that happen in pci error handler (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5e: Reorganize ethtool statistics (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix number of PFC counters reported to ethtool (Don Dutile) [1417284]
-- [netdrv] mlx5e: Prevent adding the same vxlan port (Don Dutile) [1417284]
-- [netdrv] mlx5e: Check for BlueFlame capability before allocating SQ uar (Don Dutile) [1417284]
-- [netdrv] mlx5e: Change enum to better reflect usage (Don Dutile) [1417284]
-- [netdrv] mlx5: Add ConnectX-5 PCIe 4.0 to list of supported devices (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Update command strings (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: use mlx5_buf_alloc_node instead of mlx5_buf_alloc in mlx5_wq_ll_create (Don Dutile) [1385330 1417284]
-- [infiniband] ib/srpt: Reduce QP buffer size (Don Dutile) [1417284]
-- [rdma] ib/rdmavt: Correct qp_priv_alloc() return value test (Don Dutile) [1385848 1417284]
-- [infiniband] ib/hfi1: Don't zero out qp->s_ack_queue in rvt_reset_qp (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix deadlock with txreq allocation slow path (Don Dutile) [1382806 1417284]
-- [infiniband] ib/mlx4: Prevent cross page boundary allocation (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix memory leak if QP creation failed (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Verify port number in flow steering create flow (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix error flow when sending mads under SRIOV (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix the SQ size of an RC QP (Don Dutile) [1385329 1417284]
-- [netdrv] ib/mlx5: Fix post send fence logic (Don Dutile) [1385330 1417284]
-- [infiniband] ib/core: Fix false search of the IB_SA_WELL_KNOWN_GUID (Don Dutile) [1417284]
-- [infiniband] ib/core: Fix no default GIDs when netdevice reregisters (Don Dutile) [1417284]
-- [netdrv] mlx4_en: Avoid unregister_netdev at shutdown flow (Don Dutile) [1385329 1417284]
-- [net] rds: fix coding style issues (Don Dutile) [1417284]
-- [net] rds: tcp: rds_tcp_accept_one() should transition socket from RESETTING to UP (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Send a pkey change event on driver pkey update (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Remove FULL_MGMT_P_KEY from pkey table at link up (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix potential buffer overflow (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix potential NULL ptr dereference (Don Dutile) [1382806 1417284]
-- [infiniband] ib/qib: Prevent context loss (Don Dutile) [1381986 1417284]
-- [infiniband] ib/hfi1: Prevent context loss (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Increase packet egress timeout (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Correct warning during QPN allocation (Don Dutile) [1385848 1417284]
-- [infiniband] ib/rdmavt: Correct required callback functions for MODIFY_QP (Don Dutile) [1385848 1417284]
-- [infiniband] ib/hfi1: Fix credit return threshold adjustment (Don Dutile) [1382806 1417284]
-- [infiniband] ib/cma: Make the code easier to verify (Don Dutile) [1417284]
-- [infiniband] ib/mlx4: Properly initialize GRH TClass and FlowLabel in AHs (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4e: Do not attempt to offload VXLAN ports that are unrecognized (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: initialize cmd.context_lock spinlock earlier (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5: E-Switch, always set mc_promisc for allmulti vports (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Fix vport enable flow (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Use the correct error check on returned pointers (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Use the correct free() function (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix flow steering NIC capabilities check (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix E-Switch flow steering capabilities check (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix MLX5_CMD_OP_MAX to be defined correctly (Don Dutile) [1385330 1417284]
-- [netdrv] cxgb4: Add device id of T540-BT adapter (Don Dutile) [1385866 1417284]
-- [net] rds: tcp: fix race windows in send-path quiescence by rds_tcp_accept_one() (Don Dutile) [1417284]
-- [net] rds: tcp: Retransmit half-sent datagrams when switching sockets in rds_tcp_reset_callbacks (Don Dutile) [1417284]
-- [net] rds: tcp: Add/use rds_tcp_reset_callbacks to reset tcp socket safely (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Don't update neigh validity for unresolved entries (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Disable bottom half when dealing with device address (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Fix race between ipoib_remove_one to sysfs functions (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Suppress sparse warnings (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Use bit 0 instead of bit 1 (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix indentation (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Annotate rvt_reset_qp() (Don Dutile) [1385848 1417284]
-- [infiniband] ib/mad: Fix indentation (Don Dutile) [1417284]
-- [infiniband] rdma/core: Fix indentation (Don Dutile) [1417284]
-- [infiniband] ib/usnic: Remove unused DMA attributes (Don Dutile) [1417284]
-- [infiniband] ib/core: fix an error code in ib_core_init() (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Avoid large frame size warning (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: fix some indenting (Don Dutile) [1382806 1417284]
-- [net] rds: fix an infoleak in rds_inc_info_copy (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Allow setting the device address (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Support SendOnlyFullMember MCG for SendOnly join (Don Dutile) [1417284]
-- [infiniband] ib/core: Support new type of join-state for multicast (Don Dutile) [1417284]
-- [net] rds: tcp: Avoid rds connection churn from rogue SYNs (Don Dutile) [1417284]
-- [net] rds: tcp: rds_tcp_accept_worker() must exit gracefully when terminating rds-tcp (Don Dutile) [1417284]
-- [net] rds: tcp: block BH in TCP callbacks (Don Dutile) [1417284]
-- [net] xprtrdma: Remove qplock (Don Dutile) [1417284]
-- [net] xprtrdma: Faster server reboot recovery (Don Dutile) [1417284]
-- [net] xprtrdma: Remove ro_unmap() from all registration modes (Don Dutile) [1417284]
-- [net] xprtrdma: Add ro_unmap_safe memreg method (Don Dutile) [1417284]
-- [net] xprtrdma: Refactor __fmr_dma_unmap() (Don Dutile) [1417284]
-- [net] xprtrdma: Move fr_xprt and fr_worker to struct rpcrdma_mw (Don Dutile) [1417284]
-- [net] xprtrdma: Refactor the FRWR recovery worker (Don Dutile) [1417284]
-- [net] xprtrdma: Reset MRs in frwr_op_unmap_sync() (Don Dutile) [1417284]
-- [net] xprtrdma: Save I/O direction in struct rpcrdma_frwr (Don Dutile) [1417284]
-- [net] xprtrdma: Rename rpcrdma_frwr::sg and sg_nents (Don Dutile) [1417284]
-- [net] xprtrdma: Use core ib_drain_qp() API (Don Dutile) [1417284]
-- [net] xprtrdma: Allow Read list and Reply chunk simultaneously (Don Dutile) [1417284]
-- [net] xprtrdma: Update comments in rpcrdma_marshal_req() (Don Dutile) [1417284]
-- [net] xprtrdma: Avoid using Write list for small NFS READ requests (Don Dutile) [1417284]
-- [net] xprtrdma: Prevent inline overflow (Don Dutile) [1417284]
-- [net] xprtrdma: Limit number of RDMA segments in RPC-over-RDMA headers (Don Dutile) [1417284]
-- [net] xprtrdma: Bound the inline threshold values (Don Dutile) [1417284]
-- [net] sunrpc: Advertise maximum backchannel payload size (Don Dutile) [1417284]
-- [netdrv] mlx5_core: Flow counters infrastructure (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5_core: Introduce flow steering destination of type counter (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5_core: Firmware commands to support flow counters (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5_core: Use a macro in mlx5_command_str() (Don Dutile) [1385330 1417284]
-- [infiniband] rdma/nes: replace custom print_hex_dump() (Don Dutile) [1417284]
-- [infiniband] ib/nes: Deinline nes_free_qp_mem, save 1072 bytes (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Adding queue drain functions (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Fix for passing a valid QP pointer to the user space library (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Add readout of statistics using ethtool (Don Dutile) [1417284]
-- [infiniband] ulp/ipoib: remove pkey_mutex (Don Dutile) [1417284]
-- [infiniband] iw_cxgb4: Convert a __force cast (Don Dutile) [1385866 1417284]
-- [net] svcrdma: Generalize svc_rdma_xdr_decode_req() (Don Dutile) [1417284]
-- [net] svcrdma: Eliminate code duplication in svc_rdma_recvfrom() (Don Dutile) [1417284]
-- [net] svcrdma: Drain QP before freeing svcrdma_xprt (Don Dutile) [1417284]
-- [net] svcrdma: Post Receives only for forward channel requests (Don Dutile) [1417284]
-- [net] svcrdma: svc_rdma_put_context() is invoked twice in Send error path (Don Dutile) [1417284]
-- [net] svcrdma: Support IPv6 with NFS/RDMA (Don Dutile) [1417284]
-- [infiniband] ib/isert: convert to the generic RDMA READ/WRITE API (Don Dutile) [1417284]
-- [infiniband] ib/srpt: convert to the generic RDMA READ/WRITE API (Don Dutile) [1417284]
-- [target] enhance and export target_alloc_sgl/target_free_sgl (Don Dutile) [1417284]
-- [target] ensure se_cmd->t_prot_sg is allocated when required (Don Dutile) [1417284]
-- [netdrv] mlx5e: Enable CQE compression when PCI is slower than link (Don Dutile) [1383356 1417284]
-- [netdrv] mlx5e: Expand WQE stride when CQE compression is enabled (Don Dutile) [1383356 1417284]
-- [netdrv] mlx5e: CQE compression (Don Dutile) [1383356 1417284]
-- [netdrv] mlx5: Fix merge errors (Don Dutile) [1385330 1417284]
-- [netdrv] cxgb4: Reset dcb state machine and tx queue prio only if dcb is enabled (Don Dutile) [1385866 1417284]
-- [netdrv] i40e: constify i40e_client_ops structure (Don Dutile) [1417284]
-- [netdrv]  replace dev->trans_start accesses with dev_trans_start (Don Dutile) [1417284]
-- [netdrv] mlx5: E-Switch, Implement trust vf ndo (Don Dutile) [1383280 1417284]
-- [netdrv] mlx5: E-Switch, Implement promiscuous rx modes vf request handling (Don Dutile) [1383280 1417284]
-- [netdrv] mlx5: E-Switch, Add promiscuous and allmulti FDB flowtable groups (Don Dutile) [1383280 1417284]
-- [netdrv] mlx5: E-Switch, Use vport event handler for vport cleanup (Don Dutile) [1383280 1417284]
-- [netdrv] mlx5: E-Switch, Enable/disable ACL tables on demand (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Vport ingress/egress ACLs rules for spoofchk (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Vport ingress/egress ACLs rules for VST mode (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Introduce VST vport ingress/egress ACLs (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Fix error flow memory leak (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Replace vport spin lock with synchronize_irq() (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: Flow steering, Add vport ACL support (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5e: Fix aRFS compilation dependency (Don Dutile) [1385330 1417284]
-- [netdrv] cxgb4: Check for firmware errors in the mailbox command loop (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Don't sleep when mbox cmd is issued from interrupt context (Don Dutile) [1385866 1417284]
-- [netdrv] mlx5e: Fix IPv6 tunnel checksum offload (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add support for UDP tunnel segmentation with outer checksum offload (Don Dutile) [1417284]
-- [netdrv] mlx4_en: Add support for UDP tunnel segmentation with outer checksum offload (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5e: Enabling aRFS mechanism (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Add accelerated RFS support (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Create aRFS flow tables (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5: Initializing CPU reverse mapping (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Split the main flow steering table (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Refactor mlx5e flow steering structs (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5: Support different attributes for priorities in namespace (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5: Add user chosen levels when allocating flow tables (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Introduce tc offload support (Don Dutile) [1417284]
-- [netdrv] mlx5: Set number of allowed levels in priority (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5: Introduce modify flow rule destination (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Direct TIR per RQ (Don Dutile) [1383273 1417284]
-- [netdrv] cxgb4: Add support to enable logging of firmware mailbox commands (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/i40iw: Adding queue drain functions (Don Dutile) [1417284]
-- [infiniband] treewide: Fix typos in printk (Don Dutile) [1417284]
-- [infiniband] rdma/nes: remove use of NETDEV_TX_LOCKED (Don Dutile) [1417284]
-- [netdrv] cxgb4: Decode link down reason code obtained from firmware (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: DCB message handler needs to use correct portid to netdev mapping (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Refactor t4_port_init function (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Properly decode port module type (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Avoids race and deadlock while freeing tx descriptor (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Add llseek operation for flash debugfs entry (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: add new routine to get adapter info (Don Dutile) [1385866 1417284]
-- [scsi] rename SCSI_MAX_{SG, SG_CHAIN}_SEGMENTS (Don Dutile) [1417284]
-- [netdrv] cxgb3: fix out of bounds read (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/nes: don't leak skb if carrier down (Don Dutile) [1417284]
-- [infiniband] iw_cxgb4: handle draining an idle qp (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb3: initialize ibdev.iwcm->ifname for port mapping (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: initialize ibdev.iwcm->ifname for port mapping (Don Dutile) [1385866 1417284]
-- [infiniband] iser-target: Use ib_drain_qp (Don Dutile) [1417284]
-- [infiniband] ib_srpt: fix a WARN_ON() message (Don Dutile) [1417284]
-- [infiniband] iw_cxgb3: support for iWARP port mapping (Don Dutile) [1385866 1417284]
-- [infiniband] iw_nes: remove port mapper related code (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Report the actual address of the remote connecting peer (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Add support for iWARP Port Mapper user space service (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Fix error return code (Don Dutile) [1417284]
-- [net] xprtrdma: Use new CQ API for RPC-over-RDMA client send CQs (Don Dutile) [1417284]
-- [net] xprtrdma: Use an anonymous union in struct rpcrdma_mw (Don Dutile) [1417284]
-- [net] xprtrdma: Use new CQ API for RPC-over-RDMA client receive CQs (Don Dutile) [1417284]
-- [net] xprtrdma: Serialize credit accounting again (Don Dutile) [1417284]
-- [net] xprtrdma: Properly handle RDMA_ERROR replies (Don Dutile) [1417284]
-- [net] xprtrdma: Do not wait if ib_post_send() fails (Don Dutile) [1417284]
-- [net] xprtrdma: Segment head and tail XDR buffers on page boundaries (Don Dutile) [1417284]
-- [net] xprtrdma: Clean up dprintk format string containing a newline (Don Dutile) [1417284]
-- [net] xprtrdma: Clean up physical_op_map() (Don Dutile) [1417284]
-- [infiniband] iser-target: Kill the ->isert_cmd back pointer in struct iser_tx_desc (Don Dutile) [1417284]
-- [infiniband] iser-target: Kill struct isert_rdma_wr (Don Dutile) [1417284]
-- [infiniband] iser-target: Convert to new CQ API (Don Dutile) [1417284]
-- [infiniband] iser-target: Split and properly type the login buffer (Don Dutile) [1417284]
-- [infiniband] iser-target: Remove ISER_RECV_DATA_SEG_LEN (Don Dutile) [1417284]
-- [infiniband] iser-target: Remove impossible condition from isert_wait_conn (Don Dutile) [1417284]
-- [infiniband] iser-target: Remove redundant wait in release_conn (Don Dutile) [1417284]
-- [infiniband] iser-target: Rework connection termination (Don Dutile) [1417284]
-- [infiniband] iser-target: Separate flows for np listeners and connections cma events (Don Dutile) [1417284]
-- [infiniband] iser-target: Add new state ISER_CONN_BOUND to isert_conn (Don Dutile) [1417284]
-- [infiniband] iser-target: Fix identification of login rx descriptor type (Don Dutile) [1417284]
-- [infiniband] iser: Accept arbitrary sg lists mapping if the device supports it (Don Dutile) [1417284]
-- [infiniband] ib/ocrdma: Skip using unneeded intermediate variable (Don Dutile) [1385876 1417284]
-- [infiniband] ib/ocrdma: Skip using unneeded intermediate variable (Don Dutile) [1385876 1417284]
-- [infiniband] ib/ocrdma: Delete unnecessary variable initialisations in 11 functions (Don Dutile) [1385876 1417284]
-- [infiniband] ib/ipoib: Add handling for sending of skb with many frags (Don Dutile) [1417284]
-- [net] svcrdma: Use new CQ API for RPC-over-RDMA server send CQs (Don Dutile) [1417284]
-- [net] svcrdma: Use new CQ API for RPC-over-RDMA server receive CQs (Don Dutile) [1417284]
-- [net] svcrdma: Remove close_out exit path (Don Dutile) [1417284]
-- [net] svcrdma: Hook up the logic to return ERR_CHUNK (Don Dutile) [1417284]
-- [net] rpcrdma: Add RPCRDMA_HDRLEN_ERR (Don Dutile) [1417284]
-- [net] svcrdma: Close connection when a send error occurs (Don Dutile) [1417284]
-- [net] svcrdma: Do not send Write chunk XDR pad with inline content (Don Dutile) [1417284]
-- [net] svcrdma: Do not write xdr_buf::tail in a Write chunk (Don Dutile) [1417284]
-- [net] svcrdma: Find client-provided write and reply chunks once per reply (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix wait list processing (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Introduce srpt_process_wait_list() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Log out all initiators if a port is disabled (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix srpt_write_pending() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Detect session shutdown reliably (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Use a mutex to protect the channel list (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Log private data associated with REJ (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Eliminate srpt_find_channel() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Inline trivial CM callback functions (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix how aborted commands are processed (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix srpt_handle_cmd() error paths (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix srpt_close_session() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Simplify srpt_shutdown_session() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Simplify channel state management (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Use scsilun_to_int() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Introduce target_reverse_dma_direction() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Inline srpt_get_ch_state() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Inline srpt_sdev_name() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Add parentheses around sizeof argument (Don Dutile) [1417284]
-- [infiniband] nes: handling failed allocation when creating workqueue (Don Dutile) [1417284]
-- [infiniband] ib/mlx4: Use boottime (Don Dutile) [1385329 1417284]
-- [infiniband] ib/iser: Use ib_drain_sq() (Don Dutile) [1417284]
-- [netdrv] mlx4: use new ETHTOOL_G/SSETTINGS API (Don Dutile) [1385329 1417284]
-- [infiniband] usnic: use __ethtool_get_ksettings (Don Dutile) [1417284]
-- [infiniband] usnic: use __ethtool_get_settings (Don Dutile) [1417284]
-- [infiniband] usnic: remove unused call to ethtool_ops::get_settings (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Replace LRO with GRO (Don Dutile) [1417284]
-- [infiniband] treewide: Fix typo in printk (Don Dutile) [1417284]
-
-* Thu Feb 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-575.el7]
-- [tools] tools/power turbostat: RHEL Add additional RAPL features to Intel processors (Prarit Bhargava) [1422076]
-- [tools] power turbostat: remove obsolete -M, -m, -C, -c options (Prarit Bhargava) [1422076]
-- [tools] power turbostat: Make extensible via the --add parameter (Prarit Bhargava) [1422076]
-- [tools] power turbostat: line up headers when -M is used (Prarit Bhargava) [1422076]
-- [tools] power turbostat: fix SKX PKG_CSTATE_LIMIT decoding (Prarit Bhargava) [1422076]
-- [tools] power turbostat: fix error case overflow read of slm_freq_table[] (Prarit Bhargava) [1422076]
-- [tools] power turbostat: Allocate correct amount of fd and irq entries (Prarit Bhargava) [1422076]
-- [tools] power turbostat: switch to tab delimited output (Prarit Bhargava) [1422076]
-- [tools] power turbostat: Gracefully handle ACPI S3 (Prarit Bhargava) [1422076]
-- [tools] power turbostat: tidy up output on Joule counter overflow (Prarit Bhargava) [1422076]
-- [tools] turbostat: allow user to alter DESTDIR and PREFIX (Prarit Bhargava) [1422076]
-- [tools] power turbostat: work around RC6 counter wrap (Prarit Bhargava) [1422076]
-- [tools] power turbostat: print IRTL MSRs (Prarit Bhargava) [1422076]
-- [tools] power turbostat: SGX state should print only if --debug (Prarit Bhargava) [1422076]
-- [tools] power turbostat: bugfix: TDP MSRs print bits fixing (Prarit Bhargava) [1422076]
-- [tools] power turbostat: correct output for MSR_NHM_SNB_PKG_CST_CFG_CTL dump (Prarit Bhargava) [1422076]
-- [tools] power turbostat: call __cpuid() instead of __get_cpuid() (Prarit Bhargava) [1422076]
-- [tools] power turbostat: indicate SMX and SGX support (Prarit Bhargava) [1422076]
-- [tools] power turbostat: detect and work around syscall jitter (Prarit Bhargava) [1422076]
-- [tools] power turbostat: show GFXrc6 (Prarit Bhargava) [1422076]
-- [tools] power turbostat: show GFXMHz (Prarit Bhargava) [1422076]
-- [tools] power turbostat: show IRQs per CPU (Prarit Bhargava) [1422076]
-- [tools] power turbostat: make fewer systems calls (Prarit Bhargava) [1422076]
-- [tools] power turbostat: add --out option for saving output in a file (Prarit Bhargava) [1422076]
-- [tools] power turbostat: re-name "Busy" field to "Busy" (Prarit Bhargava) [1422076]
-- [tools] power turbostat: decode more CPUID fields (Prarit Bhargava) [1422076]
-- [tools] power turbostat: CPUID(0x16) leaf shows base, max, and bus frequency (Prarit Bhargava) [1422076]
-- [tools] power turbostat: decode HWP registers (Prarit Bhargava) [1422076]
-- [tools] power turbostat: Decode MSR_MISC_PWR_MGMT (Prarit Bhargava) [1422076]
-- [tools] power turbostat: fix various build warnings (Prarit Bhargava) [1422076]
-- [tools] power turbostat: allow sub-sec intervals (Prarit Bhargava) [1422076]
-
-* Thu Feb 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-574.el7]
-- [netdrv] nfp: add to redhat build configuration (John Linville) [1377767]
-- [netdrv] nfp: fix error return code in nfp_net_netdev_open() (John Linville) [1377767]
-- [netdrv] nfp: don't pad frames on receive (John Linville) [1377767]
-- [netdrv] nfp: drop support for old firmware ABIs (John Linville) [1377767]
-- [netdrv] nfp: remove linux/version.h includes (John Linville) [1377767]
-- [netdrv] nfp: check idx is -ENOSPC before using it is an index (John Linville) [1377767]
-- [netdrv] nfp: implement ethtool .get_link() callback (John Linville) [1377767]
-- [netdrv] nfp: remove unused parameter from nfp_net_write_mac_addr() (John Linville) [1377767]
-- [netdrv] nfp: correct name of control BAR define (John Linville) [1377767]
-- [netdrv] nfp: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (John Linville) [1377767]
-- [netdrv] nfp: use correct index to mask link state irq (John Linville) [1377767]
-- [netdrv] nfp: add async reconfiguration mechanism (John Linville) [1377767]
-- [netdrv] nfp: remove buggy RX buffer length validation (John Linville) [1377767]
-- [netdrv] nfp: remove unused suspicious mask defines (John Linville) [1377767]
-- [netdrv] nfp: correct names of constants in comments (John Linville) [1377767]
-- [netdrv] nfp: remove unnecessary static (John Linville) [1377767]
-- [netdrv] nfp: check the right pointer for errors (John Linville) [1377767]
-- [netdrv] nfp: allow ring size reconfiguration at runtime (John Linville) [1377767]
-- [netdrv] nfp: pass ring count as function parameter (John Linville) [1377767]
-- [netdrv] nfp: convert .ndo_change_mtu() to prepare/commit paradigm (John Linville) [1377767]
-- [netdrv] nfp: propagate list buffer size in struct rx_ring (John Linville) [1377767]
-- [netdrv] nfp: sync ring state during FW reconfiguration (John Linville) [1377767]
-- [netdrv] nfp: slice .ndo_open() and .ndo_stop() up (John Linville) [1377767]
-- [netdrv] nfp: move filling ring information to FW config (John Linville) [1377767]
-- [netdrv] nfp: preallocate RX buffers early in .ndo_open (John Linville) [1377767]
-- [netdrv] nfp: reorganize initial filling of RX rings (John Linville) [1377767]
-- [netdrv] nfp: cleanup tx ring flush and rename to reset (John Linville) [1377767]
-- [netdrv] nfp: allocate ring SW structs dynamically (John Linville) [1377767]
-- [netdrv] nfp: make *x_ring_init do all the init (John Linville) [1377767]
-- [netdrv] nfp: break up nfp_net_{alloc|free}_rings (John Linville) [1377767]
-- [netdrv] nfp: move link state interrupt request/free calls (John Linville) [1377767]
-- [netdrv] nfp: correct RX buffer length calculation (John Linville) [1377767]
-- [netdrv] nfp: call netif_carrier_off() during init (John Linville) [1377767]
-- [netdrv] nfp: clear ring delayed kick counters (John Linville) [1377767]
-- [netdrv] net: Rename NETIF_F_ALL_CSUM to NETIF_F_CSUM_MASK (John Linville) [1377767]
-- [netdrv] net: add driver for Netronome NFP4000/NFP6000 NIC VFs (John Linville) [1377767]
-
-* Wed Feb 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-573.el7]
-- [net] mac80211: fix legacy and invalid rx-rate report (Stanislaw Gruszka) [1411078]
-- [pci] msi: Simplify PCI MSI code by initializing msi_desc.nvec_used earlier (Prarit Bhargava) [1417650]
-- [x86] perf/x86/intel/rapl: Make package handling more robust (Jiri Olsa) [1418688]
-- [x86] perf/x86/intel/rapl: Convert to hotplug state machine (Jiri Olsa) [1418688]
-- [x86] perf/x86: Set pmu->module in Intel PMU modules (Jiri Olsa) [1418688]
-- [x86] kvm: vmx: enable guest access to LMCE related MSRs (Paul Lai) [1402102]
-- [x86] kvm: vmx: validate individual bits of guest MSR_IA32_FEATURE_CONTROL (Paul Lai) [1402102]
-- [x86] kvm: vmx: move msr_ia32_feature_control to vcpu_vmx (Paul Lai) [1402102]
-- [x86] pci: vmd: Use x86_vector_domain as parent domain (Myron Stowe) [1395404]
-- [x86] asm/irq: Stop relying on magic JMP behavior for early_idt_handlers (Prarit Bhargava) [1422146]
-- [s390] scsi: zfcp: fix use-after-free by not tracing WKA port open/close on failed send (Hendrik Brueckner) [1421749]
-- [s390] scsi: zfcp: fix rport unblock race with LUN recovery (Hendrik Brueckner) [1421750]
-- [s390] scsi: zfcp: do not trace pure benign residual HBA responses at default level (Hendrik Brueckner) [1421751]
-- [s390] scsi: zfcp: fix use-after-"free" in FC ingress path after TMF (Hendrik Brueckner) [1421752]
-- [block] Copy a user iovec if it includes gaps (Jeff Moyer) [1421263]
-- [tools] toops: Sync tools/include/uapi/linux/perf_event.h with the kernel (Jiri Olsa) [1391242]
-- [tools] perf record: Add clockid parameter (Jiri Olsa) [1391242]
-- [kernel] perf: Add per event clockid support (Jiri Olsa) [1391242 1404539]
-- [kernel] perf: Pass the event to arch_perf_update_userpage() (Jiri Olsa) [1391242]
-- [kernel] time: Introduce tk_fast_raw (Jiri Olsa) [1391242]
-- [kernel] time: Parametrize all tk_fast_mono users (Jiri Olsa) [1391242]
-- [kernel] timekeeping: Pass readout base to update_fast_timekeeper() (Jiri Olsa) [1391242]
-- [kernel] timekeeping: Provide fast and NMI safe access to CLOCK_MONOTONIC (Jiri Olsa) [1391242]
-- [kernel] seqcount: Add raw_write_seqcount_latch() (Jiri Olsa) [1391242]
-- [kernel] audit: consistently record PIDs with task_tgid_nr() (Richard Guy Briggs) [1379453]
-- [kernel] audit: Simplify and correct audit_log_capset (Richard Guy Briggs) [1379453]
-- [kernel] audit: log module name on init_module (Richard Guy Briggs) [1382500]
-- [crypto] rsa - add .gitignore for crypto/*.-asn1.[ch] files (Prarit Bhargava) [1422663]
-- [netdrv] iwlwifi: mvm: fix txq aggregation bug (Stanislaw Gruszka) [1362524]
-- [powerpc] Convert cmp to cmpd in idle enter sequence (Steve Best) [1418770]
-- [powerpc] powerpc/vdso64: Use double word compare on pointers (Steve Best) [1418770]
-
-* Tue Feb 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-572.el7]
-- [net] ipv6: Don't unset flowi6_proto in ipxip6_tnl_xmit() (Jakub Sitnicki) [1369158]
-- [net] ipv6: fix 4in6 tunnel receive path (Jakub Sitnicki) [1369158]
-- [net] gre6: add Kconfig dependency for NET_IPGRE_DEMUX (Jakub Sitnicki) [1369158]
-- [net] ip6_tunnel: Account for tunnel header in tunnel MTU (Jakub Sitnicki) [1369158]
-- [net] gre: use nla_get_be32() to extract flowinfo (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: fix flowi6_proto value in ip6gre_xmit_other() (Jakub Sitnicki) [1369158]
-- [net] gre: set inner_protocol on xmit (Jakub Sitnicki) [1369158]
-- [net] gre: fix error handler (Jakub Sitnicki) [1369158]
-- [net] ipv4: Add ability to have GRE ignore DF bit in IPv4 payloads (Jakub Sitnicki) [1369158]
-- [net] ip6gre: Allow live link address change (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Set flowi6_proto as IPPROTO_GRE in xmit path. (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Fix MTU setting for ip6gretap (Jakub Sitnicki) [1369158]
-- [net] gre: do not keep the GRE header around in collect medata mode (Jakub Sitnicki) [1369158]
-- [net] gre: Fix wrong tpi->proto in WCCP (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Fix get_size calculation for gre6 tunnel (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Use correct flags for reading TUNNEL_SEQ (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Set inner protocol correctly in __gre6_xmit (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Fix MTU setting (Jakub Sitnicki) [1369158]
-- [net] gre6: Fix flag translations (Jakub Sitnicki) [1369158]
-- [net] gre: receive also TEB packets for lwtunnels (Jakub Sitnicki) [1369158]
-- [net] gre: move iptunnel_pull_header down to ipgre_rcv (Jakub Sitnicki) [1369158]
-- [net] gre: change gre_parse_header to return the header length (Jakub Sitnicki) [1369158]
-- [net] gre: remove superfluous pskb_may_pull (Jakub Sitnicki) [1369158]
-- [net] gre6: Cleanup GREv6 transmit path, call common GRE functions (Jakub Sitnicki) [1369158]
-- [net] ipv6: Generic tunnel cleanup (Jakub Sitnicki) [1369158]
-- [net] gre: Create common functions for transmit (Jakub Sitnicki) [1369158]
-- [net] ipv6: Create ip6_tnl_xmit (Jakub Sitnicki) [1369158]
-- [net] gre6: Cleanup GREv6 receive path, call common GRE functions (Jakub Sitnicki) [1369158]
-- [net] gre: Move utility functions to common headers (Jakub Sitnicki) [1369158]
-- [net] ipv6: Cleanup IPv6 tunnel receive path (Jakub Sitnicki) [1369158]
-- [net] ip6gre: Add support for GSO (Jakub Sitnicki) [1369158]
-- [net] gre: Add support for GRO/GSO of IPv6 GRE traffic (Jakub Sitnicki) [1369158]
-- [net] ip6gre: Add support for basic offloads offloads excluding GSO (Jakub Sitnicki) [1369158]
-- [net] ip6gretap: Fix MTU to allow for Ethernet header (Jakub Sitnicki) [1369158]
-- [net] gre: clear IFF_TX_SKB_SHARING (Jakub Sitnicki) [1369158]
-- [net] gre6: allow to update all parameters via rtnl (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Reduce log level in ip6gre_err() to debug (Jakub Sitnicki) [1369158]
-- [net] gre: use be16 variants of netlink functions (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: fix endianness errors in ip6gre_err (Jakub Sitnicki) [1369158]
-- [net] gre: allow live address change (Jakub Sitnicki) [1369158]
-- [net] gre: Set inner mac header in gro complete (Jakub Sitnicki) [1369158]
-- [net] gre: Fix typo in returning flags in netlink (Jakub Sitnicki) [1369158]
-- [net] ip6gre: add a rtnl link alias for ip6gretap (Jakub Sitnicki) [1369158]
-- [net] gre: allow changing mac address when device is up (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: don't allow to remove the fb_tunnel_dev (Jakub Sitnicki) [1369158]
-- [net] gre: use icmp_hdr() to get inner ip header (Jakub Sitnicki) [1369158]
-- [net] ipv6: Fix the upper MTU limit in GRE tunnel (Jakub Sitnicki) [1369158]
-- [net] geneve: avoid use-after-free of skb->data (Sabrina Dubroca) [1326309]
-- [net] vxlan: Add new UDP encapsulation offload type for VXLAN-GPE (Sabrina Dubroca) [1326309]
-- [net] Merge VXLAN and GENEVE push notifiers into a single notifier (Sabrina Dubroca) [1326309]
-- [net] Combine GENEVE and VXLAN port notifiers into single functions (Sabrina Dubroca) [1326309]
-- [net] vxlan/geneve: Include udp_tunnel.h in vxlan/geneve.h and fixup includes (Sabrina Dubroca) [1326309]
-- [net] geneve: fix max_mtu setting (Sabrina Dubroca) [1326309]
-- [net] geneve: fix tx_errors statistics (Sabrina Dubroca) [1326309]
-- [net] geneve: testing the wrong variable in geneve6_build_skb() (Sabrina Dubroca) [1326309]
-- [net] ip_tunnel_core: iptunnel_handle_offloads returns int and doesn't free skb (Sabrina Dubroca) [1326309]
-- [net] geneve: make access to tunnel options similar to vxlan (Sabrina Dubroca) [1326309]
-- [net] Optimize local checksum offload (Sabrina Dubroca) [1326318]
-- [net] documentation/networking: more accurate LCO explanation (Sabrina Dubroca) [1326318]
-- [net] documentation/networking: add checksum-offloads.txt to explain LCO (Sabrina Dubroca) [1326318]
-- [net] ip_tunnel: remove 'csum_help' argument to iptunnel_handle_offloads (Sabrina Dubroca) [1326318]
-- [net] gre: Implement LCO for GRE over IPv4 (Sabrina Dubroca) [1326318]
-- [net] vxlan: enable local checksum offload (Sabrina Dubroca) [1326318]
-- [net] enable LCO for udp_tunnel_handle_offloads() users (Sabrina Dubroca) [1326318]
-- [net] udp: always set up for CHECKSUM_PARTIAL offload (Sabrina Dubroca) [1326318]
-- [net] local checksum offload for encapsulation (Sabrina Dubroca) [1326318]
-- [net] gso: Support partial splitting at the frag_list pointer (Eric Garver) [1405429]
-- [net] Add support for IP ID mangling TSO in cases that require encapsulation (Eric Garver) [1405429]
-- [net] Fix netdev_fix_features so that TSO_MANGLEID is only available with TSO (Eric Garver) [1405429]
-- [net] gso: Only allow GSO_PARTIAL if we can checksum the inner protocol (Eric Garver) [1405429]
-- [net] gso: Do not perform partial GSO if number of partial segments is 1 or less (Eric Garver) [1405429]
-- [net] gso: Reload iph after pskb_may_pull (Eric Garver) [1326353]
-- [net] relax expensive skb_unclone() in iptunnel_handle_offloads() (Eric Garver) [1326353]
-- [net] documentation: Add documentation for TSO and GSO features (Eric Garver) [1326353]
-- [net] gso: Support partial segmentation offload (Eric Garver) [1326353]
-- [net] gro: Add support for TCP with fixed IPv4 ID field, limit tunnel IP ID values (Eric Garver) [1326353]
-- [net] gso: Add GSO type for fixed IPv4 ID (Eric Garver) [1326353]
-- [net] ethtool: Add support for toggling any of the GSO offloads (Eric Garver) [1326353]
-- [net] Reset encap_level to avoid resetting features on inner IP headers (Eric Garver) [1326353]
-- [net] bridge: update max_gso_segs and max_gso_size (Eric Garver) [1326353]
-- [net] rtnetlink: add IFLA_GSO_MAX_SEGS and IFLA_GSO_MAX_SIZE attributes (Eric Garver) [1326353]
-- [net] bridge: reset bridge mtu after deleting an interface (Eric Garver) [1326353]
-- [net] gso/udp: Use skb->len instead of udph->len to determine length of original skb (Eric Garver) [1326353]
-- [net] gso: Provide software checksum of tunneled UDP fragmentation offload (Eric Garver) [1326353]
-- [net] Allow tunnels to use inner checksum offloads with outer checksums needed (Eric Garver) [1326353]
-- [net] udp: Use uh->len instead of skb->len to compute checksum in segmentation (Eric Garver) [1326353]
-- [net] udp: Clean up the use of flags in UDP segmentation offload (Eric Garver) [1326353]
-- [net] gre: Use inner_proto to obtain inner header protocol (Eric Garver) [1326353]
-- [net] gre: Use GSO flags to determine csum need instead of GRE flags (Eric Garver) [1326353]
-- [net] Move skb_has_shared_frag check out of GRE code and into segmentation (Eric Garver) [1326353]
-- [net] Store checksum result for offloaded GSO checksums (Eric Garver) [1326353]
-- [net] Update remote checksum segmentation to support use of GSO checksum (Eric Garver) [1326353]
-- [net] Move GSO csum into SKB_GSO_CB (Eric Garver) [1326353]
-- [net] fix two sparse errors (Eric Garver) [1326353]
-- [net] Drop unecessary enc_features variable from tunnel segmentation functions (Eric Garver) [1326353]
-
-* Mon Feb 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-571.el7]
-- [vhost] vsock: lookup and setup guest_cid inside vhost_vsock_lock (Stefan Hajnoczi) [1291282]
-- [net] vsock/virtio: fix src/dst cid format (Stefan Hajnoczi) [1291282]
-- [net] vsock/virtio: mark an internal function static (Stefan Hajnoczi) [1291282]
-- [net] vsock/virtio: add a missing __le annotation (Stefan Hajnoczi) [1291282]
-- [vhost] vhost-vsock: fix orphan connection reset (Stefan Hajnoczi) [1291282]
-- [vhost] vhost-vsock: remove unused vq variable (Stefan Hajnoczi) [1291282]
-- [net] vsock: add loopback to virtio_transport (Stefan Hajnoczi) [1291282]
-- [net] vsock: Don't dec ack backlog twice for rejected connections (Stefan Hajnoczi) [1291282]
-- [net] vhost/vsock: drop space available check for TX vq (Stefan Hajnoczi) [1291282]
-- [vhost] vsock: fix vhost virtio_vsock_pkt use-after-free (Stefan Hajnoczi) [1291282]
-- [vhost] vsock: Use kvfree() (Stefan Hajnoczi) [1291282]
-- [net] vsock: Add Makefile and Kconfig (Stefan Hajnoczi) [1291282]
-- [maintainers] vsock: Introduce vhost_vsock.ko (Stefan Hajnoczi) [1291282]
-- [maintainers] vsock: Introduce virtio_transport.ko (Stefan Hajnoczi) [1291282]
-- [uapi] vsock: Introduce virtio_vsock_common.ko (Stefan Hajnoczi) [1291282]
-- [net] vsock: defer sock removal to transports (Stefan Hajnoczi) [1291282]
-- [net] vsock: transport-specific vsock_transport functions (Stefan Hajnoczi) [1291282]
-- [net] vsock: make listener child lock ordering explicit (Stefan Hajnoczi) [1291282]
-- [net] vsock: do not disconnect socket when peer has shutdown SEND only (Stefan Hajnoczi) [1291282]
-- [net] af_vsock: Shrink the area influenced by prepare_to_wait (Stefan Hajnoczi) [1291282]
-- [net] vsock: define VSOCK_SS_LISTEN once only (Stefan Hajnoczi) [1291282]
-- [net] vsock: fix missing cleanup when misc_register failed (Stefan Hajnoczi) [1291282]
-- [uapi] fix to export linux/vm_sockets.h (Stefan Hajnoczi) [1291282]
-- [net] vmci_transport: switch ->enqeue_dgram, ->enqueue_stream and ->dequeue_stream to msghdr (Stefan Hajnoczi) [1291282]
-- [uapi] add missing network related headers to kbuild (Stefan Hajnoczi) [1291282]
-- [net] vsock: Make transport the proto owner (Stefan Hajnoczi) [1291282]
-- [net] vsock: Move af_vsock.h and vsock_addr.h to include/net (Stefan Hajnoczi) [1291282]
-- [net] vsock: Fix VSOCK_HASH and VSOCK_CONN_HASH (Stefan Hajnoczi) [1291282]
-- [net] vsock: Introduce vsock_auto_bind helper (Stefan Hajnoczi) [1291282]
-
-* Mon Feb 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-570.el7]
-- [x86] edac, amd64: Don't treat ECC disabled as failure (Suravee Suthikulpanit) [1303712]
-- [x86] edac: Add routine to check if MC devices list is empty (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Fix boot crash on non-AMD systems (Suravee Suthikulpanit) [1303712]
-- [kernel] edac: Document HW_EVENT_ERR_DEFERRED type (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Autoload amd64_edac_mod on Fam17h systems (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Autoload module using x86_cpu_id (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Define and register UMC error decode function (Suravee Suthikulpanit) [1303712]
-- [edac] amd64_edac: Simplify code around decode_bus_error (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Determine EDAC capabilities on Fam17h systems (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Determine EDAC MC capabilities on Fam17h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Add Fam17h debug output (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Add Fam17h scrubber support (Suravee Suthikulpanit) [1303712]
-- [edac] amd64_edac: Extend scrub rate support to F15hM60h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Read MC registers on AMD Fam17h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Reserve correct PCI devices on AMD Fam17h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Add AMD Fam17h family type and ops (Suravee Suthikulpanit) [1303712]
-- [edac] amd64_edac: Drop pci_register_driver() use (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Extend ecc_enabled() to Fam17h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Don't force-enable ECC checking on newer systems (Suravee Suthikulpanit) [1303712]
-- [x86] mce/amd: Add system physical address translation for AMD Fam17h (Suravee Suthikulpanit) [1303712]
-- [kernel] edac, amd64: Add Deferred Error type (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Rename __log_bus_error() to be more specific (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Change target of pci_name from F2 to F3 (Suravee Suthikulpanit) [1303712]
-- [edac] mce_amd: Rename nb_bus_decoder to dram_ecc_decoder (Suravee Suthikulpanit) [1303712]
-- [kernel] edac: Add LRDDR4 DRAM type (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Add SMN and Indirect Data Fabric access for AMD Fam17h (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Add Fam17h Data Fabric as "Northbridge" (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Make all exports EXPORT_SYMBOL_GPL (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Make amd_northbridges internal to amd_nb.c (Suravee Suthikulpanit) [1303712]
-- [x86] mce/amd: Fix HWID_MCATYPE calculation by grouping arguments (Suravee Suthikulpanit) [1303712]
-- [edac] x86/ras: Rename smca_bank_names to smca_names (Suravee Suthikulpanit) [1303712]
-- [edac] x86/ras: Simplify SMCA HWID descriptor struct (Suravee Suthikulpanit) [1303712]
-- [x86] ras: Simplify SMCA bank descriptor struct (Suravee Suthikulpanit) [1303712]
-- [x86] mce: Update AMD mcheck init to use cpu_has() facilities (Suravee Suthikulpanit) [1303712]
-- [x86] mce: Detect local MCEs properly (Suravee Suthikulpanit) [1303712]
-- [x86] mce: Carve out writes to MCx_STATUS and MCx_CTL (Suravee Suthikulpanit) [1303712]
-- [x86] mce: Grade uncorrected errors for SMCA-enabled systems (Suravee Suthikulpanit) [1303712]
-
-* Mon Feb 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-569.el7]
-- [hv] vmbus: finally fix hv_need_to_signal_on_read() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] acquire vmbus_connection.channel_mutex in vmbus_free_channels() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] hyperv: Fix spelling of HV_UNKOWN (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: On the read path cleanup the logic to interrupt the host (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: On write cleanup the logic to interrupt the host (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Base host signaling strictly on the ring state (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] balloon: Fix info request to show max page count (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vss: Operation timeouts should match host expectation (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vss: Improve log messages (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] balloon: Add logging for dynamic memory operations (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] balloon: Disable hot add when CONFIG_MEMORY_HOTPLUG is not set (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: reduce HV_UTIL_NEGO_TIMEOUT timeout (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] ring_buffer: count on wrap around mappings in get_next_pkt_raw() (v2) (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: make sysfs names consistent with PCI (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] get rid of id in struct vmbus_channel (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] make VMBus bus ids persistent (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: Rename version definitions to reflect protocol version (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: suppress some "hv_vmbus: Unknown GUID" warnings (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Make mmio resource local (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: Check VSS daemon is listening before a hot backup (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: Continue to poll VSS channel after handling requests (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] Introduce a policy for controlling channel affinity (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] ring_buffer: use wrap around mappings in hv_copy{from, to}_ringbuffer() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] ring_buffer: wrap around mappings for ring buffers (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] cleanup vmbus_open() for wrap around mappings (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Implement a mechanism to tag the channel for low latency (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Reduce the delay between retries in vmbus_post_msg() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Enable explicit signaling policy for NIC channels (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: fix the race when querying & updating the percpu list (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: fix a race on userspace daemons registration (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] get rid of timeout in vmbus_open() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Give control over how the ring access is serialized (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Eliminate the spin lock on the read path (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: add an API vmbus_hvsock_device_unregister() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: add a per-channel rescind callback (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: vmbus_sendpacket_ctl: hvsock: avoid unnecessary signaling (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: define the new offer type for Hyper-V socket (hvsock) (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: add a helper function to set a channel's pending send size (Vitaly Kuznetsov) [1406404 1418889]
-
-* Fri Feb 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-568.el7]
-- [tools] power turbostat: Denverton uses a 25 MHz crystal, not 19.2 MHz (Steve Best) [1379780]
-- [tools] power turbostat: fix Denverton BCLK (Steve Best) [1379780]
-- [tools] power turbostat: use intel-family.h model strings (Steve Best) [1379780]
-- [scsi] fcoe: fix reset of fip selection time (Neil Horman) [1410765]
-- [scsi] ipr: Fix async error WARN_ON (Gustavo Duarte) [1384383]
-- [scsi] ipr: Remove redundant messages at adapter init time (Gustavo Duarte) [1384383]
-- [scsi] ipr: Don't log unnecessary 9084 error details (Gustavo Duarte) [1384383]
-- [scsi] ipr: Add asynchronous error notification (Gustavo Duarte) [1384383]
-- [x86] kvm/x86: add sending hyper-v crash notification to user space (Bandan Das) [1357828]
-- [x86] kvm/x86: added hyper-v crash msrs into kvm hyperv context (Bandan Das) [1357828]
-- [x86] kvm: add hyper-v crash msrs values (Bandan Das) [1357828]
-- [x86] kvm: Add KVM_EXIT_SYSTEM_EVENT to user space API header (Bandan Das) [1357828]
-- [net] ethtool: page allocation failure (David Arcari) [1362219]
-- [net] audit: log 32-bit socketcalls (Richard Guy Briggs) [1382499]
-- [lib] bug.c: use common WARN helper (Pratyush Anand) [1310539]
-- [lib] bug.c: convert printk to pr_foo() (Pratyush Anand) [1310539]
-- [lib] bug.c: make panic_on_warn available for all architectures (Pratyush Anand) [1310539]
-- [kernel] panic: add cpu/pid to warn_slowpath_common in WARNING printk()s (Pratyush Anand) [1310539]
-- [kernel] ring-buffer: Prevent overflow of size in ring_buffer_resize() (Pratyush Anand) [1339451]
-- [kernel] ring-buffer: Use long for nr_pages to avoid overflow failures (Pratyush Anand) [1339451]
-- [kernel] tracing: Fix showing function event in available_events (Pratyush Anand) [1311824]
-- [kernel] nohz: Fix collision between tick and other hrtimers (Frederic Weisbecker) [1366043]
-- [netdrv] virtio-net: correctly enable multiqueue (Maxime Coquelin) [1396578]
-- [netdrv] virtio-net: enable multiqueue by default (Maxime Coquelin) [1396578]
-- [netdrv] alx: work around hardware bug in interrupt fallback path (Jarod Wilson) [1396261]
-- [netdrv] alx: fix fallback to msi or legacy interrupts (Jarod Wilson) [1396261]
-- [netdrv] alx: fix wrong condition to free descriptor memory (Jarod Wilson) [1396261]
-- [netdrv] ibmveth: Add a proper check for the availability of the checksum features (Thomas Huth) [1414232]
-- [powerpc] fadump: Fix the race in crash_fadump() (Steve Best) [1420077]
-- [cpufreq] intel_pstate: Add Knights Mill CPUID (Steve Best) [1381264]
-
-* Thu Feb 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-567.el7]
-- [net] sctp: check af before verify address in sctp_addr_id2transport (Xin Long) [1414389]
-- [net] vti6: fix input path (Hangbin Liu) [1419421]
-- [net] xfrm_input: fix possible NULL deref of tunnel.ip6->parms.i_key (Hangbin Liu) [1419421]
-- [net] ipv6: addrconf: fix dev refcont leak when DAD failed (Hangbin Liu) [1416105]
-- [net] dctcp: avoid bogus doubling of cwnd after loss (Florian Westphal) [1386923]
-- [net] revert "dctcp: update cwnd on congestion event" (Florian Westphal) [1386923]
-- [net] avoid signed overflows for SO_{SND|RCV}BUFFORCE (Sabrina Dubroca) [1412474] {CVE-2016-9793}
-- [net] skbuff: Fix skb checksum partial check (Lance Richardson) [1411480]
-- [net] skbuff: Fix skb checksum flag on skb pull (Lance Richardson) [1411480]
-- [net] sctp: not copying duplicate addrs to the assoc's bind address list (Xin Long) [1308362]
-- [net] sctp: reduce indent level in sctp_copy_local_addr_list (Xin Long) [1308362]
-- [net] bonding: set carrier off for devices created through netlink (Beniamino Galvani) [1356197]
-- [net] bridge: a netlink notification should be sent when those attributes are changed by ioctl (Xin Long) [950243]
-- [net] bridge: a netlink notification should be sent when those attributes are changed by br_sysfs_if (Xin Long) [950243]
-- [net] bridge: a netlink notification should be sent when those attributes are changed by br_sysfs_br (Xin Long) [950243]
-- [net] bridge: simplify the stp_state_store by calling store_bridge_parm (Xin Long) [950243]
-- [net] bridge: simplify the forward_delay_store by calling store_bridge_parm (Xin Long) [950243]
-- [net] bridge: simplify the flush_store by calling store_bridge_parm (Xin Long) [950243]
-- [net] ipv6: correctly add local routes when lo goes up (Eelco Chaudron) [1386304]
-- [net] rtnetlink: Don't export empty RTAX_FEATURES (Phil Sutter) [1369421]
-
-* Wed Feb 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-566.el7]
-- [fs] Make __xfs_xattr_put_listen preperly report errors (Brian Foster) [1419532]
-- [fs] xfs: in _attrlist_by_handle, copy the cursor back to userspace (Brian Foster) [1419532]
-- [fs] xfs: fix type confusion in xfs_ioc_swapext (Brian Foster) [1419532]
-- [fs] xfs: fix warning in xfs_finish_page_writeback for non-debug builds (Brian Foster) [1419532]
-- [fs] xfs: concurrent readdir hangs on data buffer locks (Brian Foster) [1419532]
-- [fs] xfs: move reclaim tagging functions (Brian Foster) [1419532]
-- [fs] xfs: simplify inode reclaim tagging interfaces (Brian Foster) [1419532]
-- [fs] xfs: rename variables in xfs_iflush_cluster for clarity (Brian Foster) [1419532]
-- [fs] xfs: xfs_iflush_cluster has range issues (Brian Foster) [1419532]
-- [fs] xfs: mark reclaimed inodes invalid earlier (Brian Foster) [1419532]
-- [fs] xfs: xfs_inode_free() isn't RCU safe (Brian Foster) [1419532]
-- [fs] xfs: optimise xfs_iext_destroy (Brian Foster) [1419532]
-- [fs] xfs: skip stale inodes in xfs_iflush_cluster (Brian Foster) [1419532]
-- [fs] xfs: fix inode validity check in xfs_iflush_cluster (Brian Foster) [1419532]
-- [fs] xfs: xfs_iflush_cluster fails to abort on error (Brian Foster) [1419532]
-- [fs] xfs: remove xfs_fs_evict_inode() (Brian Foster) [1419532]
-- [fs] xfs: buffer ->bi_end_io function requires irq-safe lock (Brian Foster) [1419532]
-- [fs] xfs: mute some sparse warnings (Brian Foster) [1419532]
-- [fs] xfs: improve kmem_realloc (Brian Foster) [1419532]
-- [fs] xfs: Add caller function output to xfs_log_force tracepoint (Brian Foster) [1419532]
-- [fs] xfs: remove transaction types (Brian Foster) [1419532]
-- [fs] xfs: better xfs_trans_alloc interface (Brian Foster) [1419532]
-- [fs] xfs: optimize bio handling in the buffer writeback path (Brian Foster) [1419532]
-- [fs] xfs: don't release bios on completion immediately (Brian Foster) [1419532]
-- [fs] xfs: build bios directly in xfs_add_to_ioend (Brian Foster) [1419532]
-- [fs] xfs: collapse cases in xfs_attr3_leaf_list_int (Brian Foster) [1419532]
-- [fs] xfs: remove put_value from attr ->put_listent context (Brian Foster) [1419532]
-- [fs] xfs: don't pass value into attr ->put_listent (Brian Foster) [1419532]
-- [fs] xfs: only return -errno or success from attr ->put_listent (Brian Foster) [1419532]
-- [fs] xfs: set up inode operation vectors later (Brian Foster) [1419532]
-- [fs] xfs: factor out a helper to initialize a local format inode fork (Brian Foster) [1419532]
-- [fs] xfs: add missing break in xfs_parseargs() (Brian Foster) [1419532]
-- [fs] xfs: Don't wrap growfs AGFL indexes (Brian Foster) [1419532]
-- [fs] xfs: always set rvalp in xfs_dir2_node_trim_free (Brian Foster) [1419532]
-- [fs] xfs: ensure committed is initialized in xfs_trans_roll (Brian Foster) [1419532]
-- [fs] xfs: borrow indirect blocks from freed extent when available (Brian Foster) [1419532]
-- [fs] xfs: refactor delalloc indlen reservation split into helper (Brian Foster) [1419532]
-- [fs] xfs: update freeblocks counter after extent deletion (Brian Foster) [1419532]
-- [fs] xfs: debug mode forced buffered write failure (Brian Foster) [1419532]
-- [fs] xfs: remove impossible condition (Brian Foster) [1419532]
-- [fs] xfs: check sizes of XFS on-disk structures at compile time (Brian Foster) [1419532]
-- [fs] xfs: use named array initializers for log item dumping (Brian Foster) [1419532]
-- [fs] xfs: fix computation of inode btree maxlevels (Brian Foster) [1419532]
-- [fs] xfs: reinitialise per-AG structures if geometry changes during recovery (Brian Foster) [1419532]
-- [fs] xfs: remove xfs_trans_get_block_res (Brian Foster) [1419532]
-- [fs] xfs: fix up inode32/64 (re)mount handling (Brian Foster) [1419532]
-- [fs] xfs: fix format specifier , should be llx and not llu (Brian Foster) [1419532]
-- [fs] xfs: sanitize remount options (Brian Foster) [1419532]
-- [fs] xfs: convert mount option parsing to tokens (Brian Foster) [1419532]
-- [fs] xfs: XFS_DIFLAG2_DAX limited by PAGE_SIZE (Brian Foster) [1419532]
-- [fs] xfs: dynamically switch modes when XFS_DIFLAG2_DAX is set/cleared (Brian Foster) [1419532]
-- [fs] xfs: S_DAX is only for regular files (Brian Foster) [1419532]
-- [fs] xfs: XFS_DIFLAG_DAX is only for regular files or directories (Brian Foster) [1419532]
-- [fs] xfs: remove XFS_BUF_ZEROFLAGS macro (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_STALE flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_WRITE flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_READ flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_ASYNC flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_DONE flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: mode di_mode to vfs inode (Brian Foster) [1419532]
-- [fs] xfs: move di_changecount to VFS inode (Brian Foster) [1419532]
-- [fs] xfs: move inode generation count to VFS inode (Brian Foster) [1419532]
-- [fs] xfs: use vfs inode nlink field everywhere (Brian Foster) [1419532]
-- [fs] xfs: reinitialise recycled VFS inode correctly (Brian Foster) [1419532]
-- [fs] xfs: move v1 inode conversion to xfs_inode_from_disk (Brian Foster) [1419532]
-- [fs] xfs: cull unnecessary icdinode fields (Brian Foster) [1419532]
-- [fs] xfs: remove timestamps from incore inode (Brian Foster) [1419532]
-- [fs] xfs: introduce inode log format object (Brian Foster) [1419532]
-- [fs] xfs: RT bitmap and summary buffers need verifiers (Brian Foster) [1419532]
-- [fs] xfs: RT bitmap and summary buffers are not typed (Brian Foster) [1419532]
-- [fs] xfs: move struct xfs_attr_shortform to xfs_da_format.h (Brian Foster) [1419532]
-- [fs] xfs: Make xfsaild freezeable again (Brian Foster) [1419532]
-- [fs] xfs: remove unused function definitions (Brian Foster) [1419532]
-- [fs] xfs: move buffer invalidation to xfs_btree_free_block (Brian Foster) [1419532]
-- [fs] xfs: factor btree block freeing into a helper (Brian Foster) [1419532]
-- [fs] xfs: handle errors from ->free_blocks in xfs_btree_kill_iroot (Brian Foster) [1419532]
-- [fs] xfs: lock rt summary inode on allocation (Brian Foster) [1419532]
-- [fs] xfs: Change how listxattr generates synthetic attributes (Brian Foster) [1419532]
-
-* Wed Feb 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-565.el7]
-- [crypto] qat - zero esram only for DH85x devices (Neil Horman) [1382849]
-- [crypto] qat - fix bar discovery for c62x (Neil Horman) [1382849]
-- [crypto] qat - fix leak on error path (Neil Horman) [1382849]
-- [crypto] qat - fix incorrect accelerator mask for C3X devices (Neil Horman) [1382849]
-- [crypto] qat - fix constants table DMA (Neil Horman) [1382849]
-- [crypto] qat - fix aes-xts key sizes (Neil Horman) [1382849]
-- [crypto] qat - Stop dropping leading zeros from RSA output (Neil Horman) [1382849]
-- [crypto] qat - Add DH support (Neil Horman) [1382849]
-- [crypto] qat - Add RSA CRT mode (Neil Horman) [1382849]
-- [crypto] rsa - Store rest of the private key components (Neil Horman) [1382849]
-- [crypto] qat - Use alternative reset methods depending on the specific device (Neil Horman) [1382849]
-- [crypto] qat - Switch to new rsa_helper functions (Neil Horman) [1382849]
-- [crypto] ecdh - Add ECDH software support (Neil Horman) [1382849]
-- [crypto] dh - Add DH software implementation (Neil Horman) [1382849]
-- [crypto] kpp - Key-agreement Protocol Primitives API (KPP) (Neil Horman) [1382849]
-- [crypto] rsa - return raw integers for the ASN.1 parser (Neil Horman) [1382849]
-- [crypto] qat - Remove deprecated create_workqueue (Neil Horman) [1382849]
-- [crypto] qat - fix typos sizeof for ctx (Neil Horman) [1382849]
-- [crypto] qat - change the adf_ctl_stop_devices to void (Neil Horman) [1382849]
-- [crypto] qat - make adf_vf_isr.c dependant on IOV config (Neil Horman) [1382849]
-- [crypto] qat - Fix typo in comments (Neil Horman) [1382849]
-- [crypto] qat - fix adf_ctl_drv.c:undefined reference to adf_init_pf_wq (Neil Horman) [1382849]
-- [crypto] qat - fix invalid pf2vf_resp_wq logic (Neil Horman) [1382849]
-- [crypto] qat - fix section mismatch warning (Neil Horman) [1382849]
-- [crypto] qat - interrupts need to be enabled when VFs are disabled (Neil Horman) [1382849]
-- [crypto] qat - check if PF is running (Neil Horman) [1382849]
-- [crypto] qat - move vf2pf_init and vf2pf_exit to common (Neil Horman) [1382849]
-- [crypto] qat - adf_dev_stop should not be called in atomic context (Neil Horman) [1382849]
-- [crypto] qat - changed adf_dev_stop to void (Neil Horman) [1382849]
-- [crypto] qat - explicitly stop all VFs first (Neil Horman) [1382849]
-- [crypto] qat - fix address leaking of RSA public exponent (Neil Horman) [1382849]
-- [crypto] qat - avoid memory corruption or undefined behaviour (Neil Horman) [1382849]
-- [crypto] qat - Remove redundant nrbg rings (Neil Horman) [1382849]
-- [crypto] qat - make sure const_tab is 1024 bytes aligned (Neil Horman) [1382849]
-- [crypto] qat - remove redundant arbiter configuration (Neil Horman) [1382849]
-- [crypto] qat - Change the definition of icp_qat_uof_regtype (Neil Horman) [1382849]
-- [crypto] qat - The AE id should be less than the maximal AE number (Neil Horman) [1382849]
-- [crypto] qat - fix leak on error path (Neil Horman) [1382849]
-- [crypto] qat - Reduced reqsize in qat_algs (Neil Horman) [1382849]
-- [crypto] qat - Pack cfg ctl structs (Neil Horman) [1382849]
-- [crypto] qat - remove redundant function call (Neil Horman) [1382849]
-- [crypto] qat - change name for c6xx dev type (Neil Horman) [1382849]
-
-* Tue Feb 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-564.el7]
-- [x86] platform/uv: Clean up the NMI code to match current coding style (Frank Ramsay) [1416460]
-- [x86] platform/uv: Ensure uv_system_init is called when necessary (Frank Ramsay) [1416460]
-- [x86] platform/uv: Initialize PCH GPP_D_0 NMI Pin to be NMI source (Frank Ramsay) [1416460]
-- [x86] platform/uv: Verify NMI action is valid, default is standard (Frank Ramsay) [1416460]
-- [x86] platform/uv: Add basic CPU NMI health check (Frank Ramsay) [1416460]
-- [x86] platform/uv: Add Support for UV4 Hubless NMIs (Frank Ramsay) [1416460]
-- [x86] platform/uv: Add Support for UV4 Hubless systems (Frank Ramsay) [1416460]
-- [x86] platform/uv: Fix 2 socket config problem (Frank Ramsay) [1416460]
-- [x86] platform/uv: Fix panic with missing UVsystab support (Frank Ramsay) [1416460]
-- [fs] posix_acl: Clear SGID bit when setting file permissions (Andreas Grunbacher) [1371253] {CVE-2016-7097}
-- [fs] sunrpc: Remove unused callback xpo_adjust_wspace() ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Change TCP socket space reservation ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Add a server side per-connection limit ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Micro optimisation for svc_data_ready ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Call the default socket callbacks instead of open coding ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: lock the socket while detaching it ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Add tracepoints for dropped and deferred requests ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Add a tracepoint for server socket out-of-space conditions ("J. Bruce Fields") [1314076]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Implement the PD Map support for SAS3.5 Generic Megaraid Controllers (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: ldio_outstanding variable is not decremented in completion path (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Enable or Disable Fast path based on the PCI Threshold Bandwidth (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Add the Support for SAS3.5 Generic Megaraid Controllers Capabilities (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Dynamic Raid Map Changes for SAS3.5 Generic Megaraid Controllers (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: SAS3.5 Generic Megaraid Controllers Fast Path for RAID 1/10 Writes (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: SAS3.5 Generic Megaraid Controllers Stream Detection and IO Coalescing (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: EEDP Escape Mode Support for SAS3.5 Generic Megaraid Controllers (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: 128 MSIX Support (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Add new pci device Ids for SAS3.5 Generic Megaraid Controllers (Tomas Henzl) [1356672]
-
-* Fri Feb 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-563.el7]
-- [fs] rpc: share one xps between all backchannels (Steve Dickson) [1336886]
-- [fs] sunrpc: fix xprt leak on xps allocation failure (Steve Dickson) [1336886]
-- [fs] sunrpc: Clear xpt_bc_xprt if xs_setup_bc_tcp failed (Steve Dickson) [1336886]
-- [fs] nfsd4/rpc: move backchannel create logic into rpc code (Steve Dickson) [1336886]
-- [fs] sunrpc: Fix suspicious RCU usage (Steve Dickson) [1336886]
-- [fs] NFS pnfs data server multipath session trunking (Steve Dickson) [1336886]
-- [fs] nfs4: clnt: respect noresvport when establishing connections to DSes (Steve Dickson) [1336886]
-- [fs] nfs: Fix an Oops in the pNFS files and flexfiles connection setup to the DS (Steve Dickson) [1336886]
-- [fs] NFS test session trunking with exchange id (Steve Dickson) [1336886]
-- [fs] NFS add xprt switch addrs test to match client (Steve Dickson) [1336886]
-- [fs] sunrpc: rpc_clnt_add_xprt setup function for NFS layer (Steve Dickson) [1336886]
-- [fs] SUNRPC search xprt switch for sockaddr (Steve Dickson) [1336886]
-- [fs] SUNRPC rpc_clnt_xprt_switch_add_xprt (Steve Dickson) [1336886]
-- [fs] SUNRPC rpc_clnt_xprt_switch_put (Steve Dickson) [1336886]
-- [fs] nfsv4: Cleanup the setting of the nfs4 lease period (Steve Dickson) [1336886]
-- [fs] SUNRPC remove rpc_task_release_client from rpc_task_set_client (Steve Dickson) [1336886]
-- [fs] NFS detect session trunking (Steve Dickson) [1336886]
-- [fs] NFS refactor nfs4_check_serverowner_major_id (Steve Dickson) [1336886]
-- [fs] NFS refactor nfs4_match_clientids (Steve Dickson) [1336886]
-- [fs] NFS setup async exchange_id (Steve Dickson) [1336886]
-- [fs] sunrpc: Fix infinite looping in rpc_clnt_iterate_for_each_xprt (Steve Dickson) [1336886]
-- [fs] NFS add callback_ops to nfs4_proc_bind_conn_to_session_callback (Steve Dickson) [1336886]
-- [fs] pnfs/nfsv4.1: Add multipath capabilities to pNFS flexfiles servers over NFSv3 (Steve Dickson) [1336886]
-- [fs] sunrpc: Allow addition of new transports to a struct rpc_clnt (Steve Dickson) [1336886]
-- [fs] nfsv4.1: nfs4_proc_bind_conn_to_session must iterate over all connections (Steve Dickson) [1336886]
-- [fs] sunrpc: Make NFS swap work with multipath (Steve Dickson) [1336886]
-- [fs] sunrpc: Add a helper to apply a function to all the rpc_clnt's transports (Steve Dickson) [1336886]
-- [fs] sunrpc: Allow caller to specify the transport to use (Steve Dickson) [1336886]
-- [fs] sunrpc: Use the multipath iterator to assign a transport to each task (Steve Dickson) [1336886]
-- [fs] sunrpc: Make rpc_clnt store the multipath iterators (Steve Dickson) [1336886]
-- [fs] sunrpc: Add a structure to track multiple transports (Steve Dickson) [1336886]
-- [fs] sunrpc: Make freeing of struct xprt rcu-safe (Steve Dickson) [1336886]
-- [fs] sunrpc: Uninline xprt_get(); It isn't performance critical (Steve Dickson) [1336886]
-- [fs] sunrpc: Reorder rpc_task to put waitqueue related info in same cachelines (Steve Dickson) [1336886]
-- [fs] sunrpc: Remove unused function rpc_task_reset_client (Steve Dickson) [1336886]
-
-* Fri Feb 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-562.el7]
-- [fs] ovl: fix d_real() for stacked fs (Miklos Szeredi) [1414761]
-- [fs] ovl: fsync after copy-up (Miklos Szeredi) [1414757]
-- [fs] ovl: fix get_acl() on tmpfs (Miklos Szeredi) [1412247]
-- [fs] ovl: update S_ISGID when setting posix ACLs (Miklos Szeredi) [1414755]
-- [fs] ovl: use generic_readlink (Miklos Szeredi) [1414769]
-- [fs] ovl: explain error values when removing acl from workdir (Miklos Szeredi) [1414769]
-- [fs] ovl: Fix info leak in ovl_lookup_temp() (Miklos Szeredi) [1414754]
-- [fs] ovl: lookup: do getxattr with mounter's permission (Miklos Szeredi) [1414751]
-- [fs] ovl: copy_up_xattr(): use strnlen (Miklos Szeredi) [1412277]
-- [fs] vfs: do get_write_access() on upper layer of overlayfs (Miklos Szeredi) [1414746]
-- [fs] vfs: make argument of d_real_inode() const (Miklos Szeredi) [1414746]
-- [fs] locks: fix file locking on overlayfs (Miklos Szeredi) [1414738]
-- [fs] locks: fix locks_mandatory_locked to respect file-private locks (Miklos Szeredi) [1414738]
-- [fs] vfs: update ovl inode before relatime check (Miklos Szeredi) [1351860]
-- [fs] vfs: move permission checking into notify_change() for utimes(NULL) (Miklos Szeredi) [1413988]
-- [fs] ovl: fix workdir creation (Miklos Szeredi) [1410842]
-- [fs] ovl: update doc (Miklos Szeredi) [1414769]
-- [fs] ovl: listxattr: use strnlen() (Miklos Szeredi) [1412277]
-- [fs] ovl: Switch to generic_getxattr (Miklos Szeredi) [1414769]
-- [fs] ovl: Fix OVL_XATTR_PREFIX (Miklos Szeredi) [1412270]
-- [fs] ovl: fix spelling mistake: "directries" -> "directories" (Miklos Szeredi) [1414769]
-- [fs] ovl: use cached acl on underlying layer (Miklos Szeredi) [1412247]
-- [fs] fs: add get_acl helper (Miklos Szeredi) [1412247]
-- [fs] ovl: proper cleanup of workdir (Miklos Szeredi) [1410873]
-- [fs] ovl: remove posix_acl_default from workdir (Miklos Szeredi) [1410842]
-- [fs] ovl: don't copy up opaqueness (Miklos Szeredi) [1365150]
-- [fs] revert "vfs: add lookup_hash() helper" (Miklos Szeredi) [1414769]
-- [fs] ovl: simplify empty checking (Miklos Szeredi) [1414769]
-- [fs] qstr: constify instances in overlayfs (Miklos Szeredi) [1414769]
-- [fs] ovl: disallow overlayfs as upperdir (Miklos Szeredi) [1410813]
-- [fs] ovl: fix warning (Miklos Szeredi) [1414769]
-- [fs] ovl: remove duplicated include from super.c (Miklos Szeredi) [1414769]
-- [fs] ovl: permission: return ECHILD instead of ENOENT (Miklos Szeredi) [1414769]
-- [fs] ovl: update atime on upper (Miklos Szeredi) [1351860]
-- [fs] ovl: fixed coding style warning (Miklos Szeredi) [1414769]
-- [fs] ovl: honor flag MS_SILENT at mount (Miklos Szeredi) [1414769]
-- [fs] fs/overlayfs/super.c needs pagemap.h (Miklos Szeredi) [1414769]
-- [fs] wrappers for ->i_mutex access (Miklos Szeredi) [1414769]
-- [fs] nfs: Fix inode corruption in nfs_prime_dcache() (Benjamin Coddington) [1416532]
-- [fs] nfs: Don't let readdirplus revalidate an inode that was marked as stale (Benjamin Coddington) [1416532]
-- [fs] gfs2: Reduce contention on gfs2_log_lock (Robert S Peterson) [1406850]
-- [fs] gfs2: Inline function meta_lo_add (Robert S Peterson) [1406850]
-- [fs] gfs2: Switch tr_touched to flag in transaction (Robert S Peterson) [1406850]
-- [fs] gfs2: Wake up io waiters whenever a flush is done (Robert S Peterson) [1404301]
-- [fs] gfs2: Made logd daemon take into account log demand (Robert S Peterson) [1404301]
-- [fs] gfs2: Limit number of transaction blocks requested for truncates (Robert S Peterson) [1404301]
-
-* Thu Feb 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-561.el7]
-- [fs] fscache: Fix dead object requeue (David Howells) [1415402]
-- [fs] fscache: Clear outstanding writes when disabling a cookie (David Howells) [1371381]
-- [fs] fs-cache: Initialise stores_lock in netfs cookie (David Howells) [1371381]
-- [fs] dlm: free workqueues after the connections (Marcelo Leitner) [1383710]
-- [fs] xfs: Document error handlers behavior (Carlos Maiolino) [1077671]
-- [fs] xfs: remove racy hasattr check from attr ops (Brian Foster) [1395538]
-- [fs] xfs: ioends require logically contiguous file offsets (Brian Foster) [1398005]
-- [fs] xfs: don't chain ioends during writepage submission (Brian Foster) [1398005]
-- [fs] xfs: factor mapping out of xfs_do_writepage (Brian Foster) [1398005]
-- [fs] xfs: xfs_cluster_write is redundant (Brian Foster) [1398005]
-- [fs] xfs: Introduce writeback context for writepages (Brian Foster) [1398005]
-- [fs] xfs: remove xfs_cancel_ioend (Brian Foster) [1398005]
-- [fs] xfs: remove nonblocking mode from xfs_vm_writepage (Brian Foster) [1398005]
-- [fs] mm/filemap.c: make global sync not clear error status of individual inodes (Brian Foster) [1398005]
-- [mm] mmap.c: fix arithmetic overflow in __vm_enough_memory() (Jerome Marchand) [1413503]
-- [lib] uuid.c: use correct offset in uuid parser (Tarun Gupta) [1412840]
-- [scsi] virtio-scsi: Fix endianess bug in virtscsi_queuecommand (Thomas Huth) [1413921]
-- [nvme] apply DELAY_BEFORE_CHK_RDY quirk at probe time too (Gustavo Duarte) [1409122]
-- [misc] genwqe: Fix bad page access during abort of resource allocation (Gustavo Duarte) [1384401]
-- [misc] genwqe: ensure zero initialization (Gustavo Duarte) [1384401]
-- [netdrv] r8169: fix the typo in the comment (Corinna Vinschen) [1394855]
-- [netdrv] r8169: add support for RTL8168 series add-on card (Corinna Vinschen) [1394855]
-- [netdrv] r8169: Add support for restarting auto-negotiation (Corinna Vinschen) [1394855]
-- [netdrv] r8169: set coherent DMA mask as well as streaming DMA mask (Corinna Vinschen) [1394855]
-- [netdrv] r8169: fix nic may not work after changing mac address (Corinna Vinschen) [1394855]
-- [netdrv] r8169: add checking driver's runtime pm status in rtl8169_get_ethtool_stats() (Corinna Vinschen) [1394855]
-- [netdrv] r8169: fix kernel log spam when set or get hardware wol setting (Corinna Vinschen) [1394855]
-- [netdrv] r8169: default to 64-bit DMA on recent PCIe chips (Corinna Vinschen) [1394855]
-- [netdrv] revert "bnx2: Reset device during driver initialization" (Neil Horman) [1417836]
-- [cpuidle] menu: Fix menu_select() for CPUIDLE_DRIVER_STATE_START == 0 (Gustavo Duarte) [1409211]
-- [powercap] rapl: reduce message loglevel (Prarit Bhargava) [1178491]
-
-* Wed Feb 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-560.el7]
-- [xen] events: use xen_vcpu_id mapping for EVTCHNOP_status (Vitaly Kuznetsov) [1396554]
-- [xen] change the type of xen_vcpu_id to uint32_t (Vitaly Kuznetsov) [1396554]
-- [x86] xen/pvhvm: run xen_vcpu_setup() for the boot CPU (Vitaly Kuznetsov) [1396554]
-- [xen] events: use xen_vcpu_id mapping in events_base (Vitaly Kuznetsov) [1396554]
-- [x86] xen: use xen_vcpu_id mapping when pointing vcpu_info to shared_info (Vitaly Kuznetsov) [1396554]
-- [x86] xen: use xen_vcpu_id mapping for HYPERVISOR_vcpu_op (Vitaly Kuznetsov) [1396554]
-- [xen] introduce xen_vcpu_id mapping (Vitaly Kuznetsov) [1396554]
-- [x86] acpi: store ACPI ids from MADT for future usage (Vitaly Kuznetsov) [1396554]
-- [x86] x86 / acpi: simplify _acpi_map_lsapic() (Vitaly Kuznetsov) [1396554]
-- [x86] kvm: x86: Introduce segmented_write_std (Bandan Das) [1356762]
-- [x86] kvm: x86: emulate FXSAVE and FXRSTOR (Bandan Das) [1356762]
-- [x86] kvm: x86: add asm_safe wrapper (Bandan Das) [1356762]
-- [x86] kvm: x86: save one bit in ctxt->d (Bandan Das) [1356762]
-- [x86] kvm: x86: add Align16 instruction flag (Bandan Das) [1356762]
-- [x86] kvm: x86: don't print warning messages for unimplemented msrs (Bandan Das) [1297021]
-- [x86] intel_idle: Add Knights Mill CPUID (Steve Best) [1381259]
-- [x86] cpufreq: Use Intel family name macros for the intel_pstate cpufreq driver (Steve Best) [1416559]
-- [x86] perf/x86: Honor the architectural performance monitoring version (Cathy Avery) [1370023]
-- [vfio] vfio/type1: Remove pid_namespace.h include (Tarun Gupta) [1412329]
-- [vfio] iommu type1: fix the testing of capability for remote task (Tarun Gupta) [1412329]
-- [kernel] capability: export has_capability (Tarun Gupta) [1412329]
-- [kernel] taint/module: Fix problems when out-of-kernel driver defines true or false (Joe Lawrence) [1369704]
-- [kernel] taint/module: Clean up global and module taint flags handling (Joe Lawrence) [1369704]
-- [kernel] kernel/panic.c: reduce 1 byte usage for print tainted buffer (Joe Lawrence) [1369704]
-- [kernel] livepatch/module: print notice of TAINT_LIVEPATCH (Joe Lawrence) [1369704]
-- [kernel] livepatch/module: make TAINT_LIVEPATCH module-specific (Joe Lawrence) [1369704]
-- [kernel] debugobjects: Reduce contention on the global pool_lock (Waiman Long) [1078823]
-- [kernel] debugobjects: Scale thresholds with # of CPUs (Waiman Long) [1078823]
-- [kernel] debugobjects: track number of kmem_cache_alloc/kmem_cache_free done (Waiman Long) [1078823]
-- [kernel] debugobjects: Allow bigger number of early boot objects (Waiman Long) [1078823]
-
-* Tue Feb 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-559.el7]
-- [scsi] mpt3sas: fix hang on ata passthrough commands (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Unblock device after controller reset (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix secure erase premature termination (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix for block device of raid exists even after deleting raid disk (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: fix some spelling mistakes in message and comments (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Bump driver version as "14.101.00.00" (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix for Endianness issue (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Use the new MPI 2.6 32-bit Atomic Request Descriptors for SAS35 devices (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: set EEDP-escape-flags for SAS35 devices (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Increased/Additional MSIX support for SAS35 devices (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Added Device ID's for SAS35 devices and updated MPI header (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Bump driver version as "14.100.00.00" (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Remove unused macro "MPT_DEVICE_TLR_ON" (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Implement device_remove_in_progress check in IOCTL path (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix for incorrect numbers for MSIX vectors enabled when non RDPQ card is enumerated first (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix for improper info displayed in var log, while blocking or unblocking the device (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix resume on WarpDrive flash cards (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Don't spam logs if logging level is 0 (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix warnings exposed by W=1 (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Eliminate dead sleep_flag code (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Eliminate conditional locking in mpt3sas_scsih_issue_tm() (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Ensure the connector_name string is NUL-terminated (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: avoid mpt3sas_transport_port_add NULL parent_dev (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: set num_phys after allocating phy space (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: add missing curly braces (Tomas Henzl) [1306453]
-
-* Mon Feb 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-558.el7]
-- [net] sctp: sctp_addr_id2transport should verify the addr before looking up assoc (Xin Long) [1414389]
-- [net] netlink: Fix dump skb leak/double free (Hangbin Liu) [1414293] {CVE-2016-9806}
-- [net] openvswitch: Remove incorrect WARN_ONCE() (Lance Richardson) [1414587]
-- [net] ipv4: use l4 hash for locally generated multipath flows (Paolo Abeni) [1278833]
-- [net] flowi: introduce get_hash_from_flowi4 (Paolo Abeni) [1278833]
-- [net] sctp: do not loose window information if in rwnd_over (Marcelo Leitner) [1084802]
-- [net] sctp: fix recovering from 0 win with small data chunks (Marcelo Leitner) [1084802]
-- [net] igmp: Make igmp group member RFC 3376 compliant (Hangbin Liu) [1391428]
-- [net] tcp: take care of truncations done by sk_filter() (Davide Caratti) [1400217] {CVE-2016-8645}
-- [net] add sk_filter_trim_cap (Davide Caratti) [1400217] {CVE-2016-8645}
-- [net] tcp: allow to enable the repair mode for non-listening sockets (Adrian Reber) [1406475]
-- [net] flow: Fix CPU hotplug callback registration (Florian Westphal) [1401795]
-- [net] tcp: warn on bogus MSS and try to amend it (Marcelo Leitner) [1401701]
-- [net] netfilter: ipt_CLUSTERIP: use proper net namespace to operate CLUSTERIP (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: create proc entry under proper ipt_CLUSTERIP directory (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: add parameter net in clusterip_config_find_get (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: make clusterip_lock per net namespace (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: make clusterip_list per net namespace (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: make proc directory per net namespace (Eelco Chaudron) [1385923]
-- [net] sctp: implement rfc6458, 8.1.31. SCTP_DEFAULT_SNDINFO support (Xin Long) [1339791]
-- [net] sctp: implement rfc6458, 5.3.6. SCTP_NXTINFO cmsg support (Xin Long) [1339791]
-- [net] sctp: implement rfc6458, 5.3.5. SCTP_RCVINFO cmsg support (Xin Long) [1339791]
-- [net] sctp: implement rfc6458, 5.3.4. SCTP_SNDINFO cmsg support (Xin Long) [1339791]
-- [net] sctp: fix information leaks in ulpevent layer (Xin Long) [1339791]
-- [net] openvswitch: avoid resetting flow key while installing new flow (Thadeu Lima de Souza Cascardo) [1391696]
-- [net] openvswitch: Fix Frame-size larger than 1024 bytes warning (Thadeu Lima de Souza Cascardo) [1391696]
-- [net] openvswitch: use percpu flow stats (Thadeu Lima de Souza Cascardo) [1391696]
-- [net] openvswitch: fix flow stats accounting when node 0 is not possible (Thadeu Lima de Souza Cascardo) [1391696]
-- [net] sctp: hold transport instead of assoc when lookup assoc in rx path (Xin Long) [1371028]
-- [net] sctp: return back transport in __sctp_rcv_init_lookup (Xin Long) [1371028]
-- [net] sctp: hold transport instead of assoc in sctp_diag (Xin Long) [1371028]
-- [net] sctp: fix the issue sctp_diag uses lock_sock in rcu_read_lock (Xin Long) [1371028]
-- [net] tcp: allow dctcp alpha to drop to zero (Florian Westphal) [1370638]
-- [net] inet: add IP_BIND_ADDRESS_NO_PORT to overcome bind(0) limitations (Davide Caratti) [1374498]
-- [net] tcp: add an ability to dump and restore window parameters (Jacob Tanenbaum) [1352642]
-
-* Mon Feb 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-557.el7]
-- [scsi] sg_write()/bsg_write() is not fit to be called under KERNEL_DS (Ewan Milne) [1414834] {CVE-2016-10088 CVE-2016-9576}
-- [scsi] Add intermediate STARGET_REMOVE state to scsi_target_state (Ewan Milne) [1365651]
-- [scsi] restart list search after unlock in scsi_remove_target (Ewan Milne) [1365651]
-- [scsi] lpfc: driver update for rhel7.4 rev 11.2.0.6 (Rob Evers) [1382101]
-- [scsi] lpfc: Adding the lpfc_use_blk_mq module parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Fix few small typos in lpfc_scsi.c (Rob Evers) [1382101]
-- [scsi] lpfc: Fix sg_reset on SCSI device causing kernel crash (Rob Evers) [1382101]
-- [scsi] lpfc: Correct issue leading to oops during link reset (Rob Evers) [1382101]
-- [scsi] lpfc: Correct error in setting OS Driver Version with FW (Rob Evers) [1382101]
-- [scsi] lpfc: Clear the VendorVersion in the PLOGI/PLOGI ACC payload (Rob Evers) [1382101]
-- [scsi] lpfc: Correct host name in symbolic_name field (Rob Evers) [1382101]
-- [scsi] lpfc: FCoE VPort enable-disable does not bring up the VPort (Rob Evers) [1382101]
-- [scsi] lpfc: Fix Xlane dynamic LUN set for LUN priority (Rob Evers) [1382101]
-- [scsi] lpfc: Deprecate lpfc_prot_sg_seg_cnt parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Correct oops on vport port resets (Rob Evers) [1382101]
-- [scsi] lpfc: Add missing memory barrier (Rob Evers) [1382101]
-- [scsi] lpfc: fix oops/BUG in lpfc_sli_ringtxcmpl_put() (Rob Evers) [1382101]
-- [scsi] lpfc: Fix possible NULL pointer dereference (Rob Evers) [1382101]
-- [scsi] lpfc: Use zd format string for size_t (Rob Evers) [1382101]
-- [scsi] lpfc: Fix fw download on SLI-4 FC adapters (Rob Evers) [1382101]
-- [scsi] lpfc: Synchronize link speed with boot driver (Rob Evers) [1382101]
-- [scsi] lpfc: Correct panics with eh_timeout and eh_deadline (Rob Evers) [1382101]
-- [scsi] lpfc: Fix lost target in pt-to-pt connect (Rob Evers) [1382101]
-- [scsi] lpfc: Revise strings with full lpfc parameter name (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_sriov_nr_virtfn parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_max_scsicmpl_time parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_topology parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_aer_support parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_enable_rrq parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code clean up for lpfc_iocb_cnt parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Set driver environment data on adapter (Rob Evers) [1382101]
-- [scsi] lpfc: Correct embedded io wq element size (Rob Evers) [1382101]
-- [scsi] lpfc: Mark symbols static where possible (Rob Evers) [1382101]
-- [scsi] lpfc: fix oops in lpfc_sli4_scmd_to_wqidx_distr() from lpfc_send_taskmgmt() (Rob Evers) [1382101]
-- [scsi] lpfc: Add support for using block multi-queue (Rob Evers) [1382101]
-- [scsi] lpfc: avoid harmless comparison warning (Rob Evers) [1382101]
-- [scsi] lpfc: call lpfc_sli_validate_fcp_iocb() with the hbalock held (Rob Evers) [1382101]
-- [scsi] lpfc: Copyright updates (Rob Evers) [1382101]
-- [scsi] lpfc: Correct issue with ioremap() call on 32bit kernel (Rob Evers) [1382101]
-- [scsi] lpfc: Re-organize source for easier driver attribute management (Rob Evers) [1382101]
-- [scsi] lpfc: Remove global lpfc_sli_mode attribute in leiu of per-hba lpfc_sli_mode (Rob Evers) [1382101]
-- [scsi] lpfc: Remove global lpfc_delay_discovery attribute in leiu of per-hba lpfc_delay_discovery (Rob Evers) [1382101]
-- [scsi] lpfc: Remove global lpfc_enable_npiv attribute in leiu of per-hba lpfc_enable_npiv (Rob Evers) [1382101]
-- [scsi] lpfc: Correct Port reset resulting in FC port going offline (Rob Evers) [1382101]
-- [scsi] lpfc: Add support for XLane LUN priority (Rob Evers) [1382101]
-- [scsi] lpfc: Correct RDP response Revision location (Rob Evers) [1382101]
-- [scsi] lpfc: Re-organize source for easier device-id management (Rob Evers) [1382101]
-- [scsi] lpfc: Correct FCOE discovery to avoid loss of storage devices after system reboot (Rob Evers) [1382101]
-- [scsi] lpfc: Fix SLI mode 2 config failure (Rob Evers) [1382101]
-- [scsi] lpfc: Add MDS Diagnostics Support (Rob Evers) [1382101]
-- [scsi] lpfc: Add recovery from adapter parity errors on some SLI4 adapters (Rob Evers) [1382101]
-- [scsi] lpfc: Utilize embedded CDB logic to minimize IO latency (Rob Evers) [1382101]
-- [scsi] lpfc: Add sysfs proc_name support (Rob Evers) [1382101]
-- [scsi] lpfc: Disable FDMI probing if not connected to a fabric (Rob Evers) [1382101]
-- [scsi] lpfc: Reject RDP ELS if port has no login (Rob Evers) [1382101]
-- [scsi] lpfc: Correct Buffer credit descriptor values in RDP response (Rob Evers) [1382101]
-- [scsi] lpfc: Correct RDP response sizing issue (Rob Evers) [1382101]
-- [scsi] lpfc: Fix Transgression Flag of Optical Element descriptor for RDP on Linux (Rob Evers) [1382101]
-
-* Fri Feb 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-556.el7]
-- [md] raid5: Use correct IS_ERR() variation on pointer check (Jes Sorensen) [1380016]
-- [md] separate flags for superblock changes (Jes Sorensen) [1380016]
-- [md] MD_RECOVERY_NEEDED is set for mddev->recovery (Jes Sorensen) [1380016]
-- [md] takeover should clear unrelated bits (Jes Sorensen) [1380016]
-- [md] r5cache: after recovery, increase journal seq by 10000 (Jes Sorensen) [1380016]
-- [md] raid5-cache: fix crc in rewrite_data_only_stripes() (Jes Sorensen) [1380016]
-- [md] raid5-cache: no recovery is required when create super-block (Jes Sorensen) [1380016]
-- [md] fix refcount problem on mddev when stopping array (Jes Sorensen) [1380016]
-- [md] r5cache: do r5c_update_log_state after log recovery (Jes Sorensen) [1380016]
-- [md] raid5-cache: adjust the write position of the empty block if no data blocks (Jes Sorensen) [1380016]
-- [md] r5cache: run_no_space_stripes() when R5C_LOG_CRITICAL == 0 (Jes Sorensen) [1380016]
-- [md] raid5: limit request size according to implementation limits (Jes Sorensen) [1380016]
-- [md] raid5-cache: do not need to set STRIPE_PREREAD_ACTIVE repeatedly (Jes Sorensen) [1380016]
-- [md] raid5-cache: remove the unnecessary next_cp_seq field from the r5l_log (Jes Sorensen) [1380016]
-- [md] raid5-cache: release the stripe_head at the appropriate location (Jes Sorensen) [1380016]
-- [md] raid5-cache: use ring add to prevent overflow (Jes Sorensen) [1380016]
-- [md] raid5-cache: remove unnecessary function parameters (Jes Sorensen) [1380016]
-- [md] raid5-cache: don't set STRIPE_R5C_PARTIAL_STRIPE flag while load stripe into cache (Jes Sorensen) [1380016]
-- [md] raid5-cache: add another check conditon before replaying one stripe (Jes Sorensen) [1380016]
-- [md] r5cache: enable IRQs on error path (Jes Sorensen) [1380016]
-- [md] r5cache: handle alloc_page failure (Jes Sorensen) [1380016]
-- [md] stop write should stop journal reclaim (Jes Sorensen) [1380016]
-- [md] raid10: add failfast handling for writes (Jes Sorensen) [1380016]
-- [md] raid10: add failfast handling for reads (Jes Sorensen) [1380016]
-- [md] raid1: add failfast handling for writes (Jes Sorensen) [1380016]
-- [md] raid1: add failfast handling for reads (Jes Sorensen) [1380016]
-- [md] Use REQ_FAILFAST_* on metadata writes where appropriate (Jes Sorensen) [1380016]
-- [md] failfast: add failfast flag for md to be used by some personalities (Jes Sorensen) [1380016]
-- [md] r5cache: r5cache recovery: part 2 (Jes Sorensen) [1380016]
-- [md] r5cache: r5cache recovery: part 1 (Jes Sorensen) [1380016]
-- [md] r5cache: refactoring journal recovery code (Jes Sorensen) [1380016]
-- [md] r5cache: sysfs entry journal_mode (Jes Sorensen) [1380016]
-- [md] r5cache: write-out phase and reclaim support (Jes Sorensen) [1380016]
-- [md] r5cache: caching phase of r5cache (Jes Sorensen) [1380016]
-- [md] r5cache: State machine for raid5-cache write back mode (Jes Sorensen) [1380016]
-- [md] r5cache: move some code to raid5.h (Jes Sorensen) [1380016]
-- [md] r5cache: Check array size in r5l_init_log (Jes Sorensen) [1380016]
-- [md] raid5-cache: fix lockdep warning (Jes Sorensen) [1380016]
-- [md] remove md_super_wait() call after bitmap_flush() (Jes Sorensen) [1380016]
-- [md] raid1: fix: IO can block resync indefinitely (Jes Sorensen) [1379764 1380016]
-- [md] bitmap: Don't write bitmap while earlier writes might be in-flight (Jes Sorensen) [1380016]
-- [md] perform async updates for metadata where possible (Jes Sorensen) [1380016]
-- [md] raid5-cache: restrict the use area of the log_offset variable (Jes Sorensen) [1380016]
-- [md] raid5: change printk() to pr_*() (Jes Sorensen) [1380016]
-- [md] raid10: change printk() to pr_*() (Jes Sorensen) [1380016]
-- [md] raid1: change printk() to pr_*() (Jes Sorensen) [1380016]
-- [md] raid0: replace printk() with pr_*() (Jes Sorensen) [1380016]
-- [md] multipath: replace printk() with pr_*() (Jes Sorensen) [1380016]
-- [md] linear: replace printk() with pr_*() (Jes Sorensen) [1380016]
-- [md] bitmap: change all printk() to pr_*() (Jes Sorensen) [1380016]
-- [md] change all printk() to pr_err() or pr_warn() etc (Jes Sorensen) [1380016]
-- [md] fix some issues with alloc_disk_sb() (Jes Sorensen) [1380016]
-- [md] bitmap: call bitmap_file_unmap once bitmap_storage_alloc returns -ENOMEM (Jes Sorensen) [1380016]
-- [md] raid5: revert commit 11367799f3d1 (Jes Sorensen) [1380016]
-- [md] wake up personality thread after array state update (Jes Sorensen) [1380016]
-- [md] don't fail an array if there are unacknowledged bad blocks (Jes Sorensen) [1380016]
-- [md] add bad block support for external metadata (Jes Sorensen) [1380016]
-- [md] be careful not lot leak internal curr_resync value into metadata. -- (all) (Jes Sorensen) [1380016]
-- [md] raid1: handle read error also in readonly mode (Jes Sorensen) [1380016]
-- [md] raid5-cache: correct condition for empty metadata write (Jes Sorensen) [1380016]
-- [md] report 'write_pending' state when array in sync (Jes Sorensen) [1380016]
-- [md] raid5: write an empty meta-block when creating log super-block (Jes Sorensen) [1380016]
-- [md] raid5: initialize next_checkpoint field before use (Jes Sorensen) [1380016]
-- [md] set rotational bit (Jes Sorensen) [1380016]
-- [md] fix a potential deadlock (Jes Sorensen) [1380016]
-- [md] raid5: allow arbitrary max_hw_sectors (Jes Sorensen) [1380016]
-- [md] lib/raid6: Add AVX512 optimized recovery functions (Jes Sorensen) [1380016]
-- [md] lib/raid6: Add AVX512 optimized gen_syndrome functions (Jes Sorensen) [1380016]
-- [md] changes for MD_STILL_CLOSED flag (Jes Sorensen) [1380016]
-- [md] raid5: fix a small race condition (Jes Sorensen) [1380016]
-- [md] raid5: guarantee enough stripes to avoid reshape hang (Jes Sorensen) [1380016]
-- [md] raid5-cache: fix a deadlock in superblock write (Jes Sorensen) [1380016]
-- [md] raid5: avoid unnecessary bio data set (Jes Sorensen) [1380016]
-- [md] raid5: fix memory leak of bio integrity data (Jes Sorensen) [1380016]
-- [md] raid10: record correct address of bad block (Jes Sorensen) [1380016]
-- [md] r5cache: set MD_JOURNAL_CLEAN correctly (Jes Sorensen) [1380016]
-- [md] don't print the same repeated messages about delayed sync operation (Jes Sorensen) [1380016]
-- [md] do not count journal as spare in GET_ARRAY_INFO (Jes Sorensen) [1380016]
-- [md] Prevent IO hold during accessing to faulty raid5 array (Jes Sorensen) [1380016]
-- [md] hold mddev lock to change bitmap location (Jes Sorensen) [1380016]
-- [md] raid5: fix incorrectly counter of conf->empty_inactive_list_nr (Jes Sorensen) [1380016]
-- [md] fix null pointer deference (Jes Sorensen) [1380016]
-- [md] raid10: improve random reads performance (Jes Sorensen) [1380016]
-- [md] add missing sysfs_notify on array_state update (Jes Sorensen) [1380016]
-- [md] Fix kernel module refcount handling (Jes Sorensen) [1380016]
-- [md] documentation: fix wrong value in md.txt (Jes Sorensen) [1380016]
-- [md] reduce the number of synchronize_rcu() calls when multiple devices fail (Jes Sorensen) [1380016]
-- [md] be extra careful not to take a reference to a Faulty device (Jes Sorensen) [1380016]
-- [md] multipath: add rcu protection to rdev access in multipath_status (Jes Sorensen) [1380016]
-- [md] raid5: add rcu protection to rdev accesses in raid5_status (Jes Sorensen) [1380016]
-- [md] raid5: add rcu protection to rdev accesses in want_replace (Jes Sorensen) [1380016]
-- [md] raid5: add rcu protection to rdev accesses in handle_failed_sync (Jes Sorensen) [1380016]
-- [md] raid1: add rcu protection to rdev in fix_read_error (Jes Sorensen) [1380016]
-- [md] raid1: small code cleanup in end_sync_write (Jes Sorensen) [1380016]
-- [md] raid1: small cleanup in raid1_end_read/write_request (Jes Sorensen) [1380016]
-- [md] raid10: simplify print_conf a little (Jes Sorensen) [1380016]
-- [md] raid10: minor code improvement in fix_read_error() (Jes Sorensen) [1380016]
-- [md] raid10: add rcu protection to rdev access during reshape (Jes Sorensen) [1380016]
-- [md] raid10: add rcu protection to rdev access in raid10_sync_request (Jes Sorensen) [1380016]
-- [md] raid10: add rcu protection in raid10_status (Jes Sorensen) [1380016]
-- [md] raid10: fix refounct imbalance when resyncing an array with a replacement device (Jes Sorensen) [1380016]
-- [md] raid1, raid10: don't recheck "Faulty" flag in read-balance (Jes Sorensen) [1380016]
-- [md] disconnect device from personality before trying to remove it (Jes Sorensen) [1380016]
-- [md] MD:Update superblock when err == 0 in size_store (Jes Sorensen) [1380016]
-- [md] use a mutex to protect a global list (Jes Sorensen) [1380016]
-- [md] simplify the code with md_kick_rdev_from_array (Jes Sorensen) [1380016]
-- [md] right meaning of PARITY_ENABLE_RMW and PARITY_PREFER_RMW (Jes Sorensen) [1380016]
-- [md] set MD_CHANGE_PENDING in a atomic region (Jes Sorensen) [1380016]
-- [md] md.c: fix oops in mddev_suspend for raid0 (Jes Sorensen) [1380016]
-- [md] bitmap: clear bitmap if bitmap_create failed (Jes Sorensen) [1380016]
-- [md] warn for potential deadlock (Jes Sorensen) [1380016]
-
-* Fri Feb 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-555.el7]
-- [acpi] acpi / apd: Add clock frequency for future AMD I2C controller (Suravee Suthikulpanit) [1354637]
-- [acpi] acpi / apd: Add APM X-Gene ACPI I2C device support (Suravee Suthikulpanit) [1354637]
-- [acpi] Remove clk.h include (Suravee Suthikulpanit) [1354637]
-- [acpi] acpi / apd: Remove CLK_IS_ROOT (Suravee Suthikulpanit) [1354637]
-- [i2c] designware: Add device HID for future AMD I2C controller (Suravee Suthikulpanit) [1354637]
-- [i2c] designware: fix IO timeout issue for AMD controller (Suravee Suthikulpanit) [1354637]
-- [include] gpio: Increase ARCH_NR_GPIOs to 512 (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Drop pinctrl_unregister for devm_ registered device (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: avoid maybe-uninitalized warning (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: white space cleanups in amd_gpio_dbg_show() (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: fix compilation warning (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Set the level based on ACPI tables (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Add support for additional GPIO (Suravee Suthikulpanit) [1329005]
-- [gpio] amdpt: Add a new ACPI HID (Suravee Suthikulpanit) [1329005]
-- [gpio] driver for AMD Promontory (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Use devm_pinctrl_register() for pinctrl registration (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Add device HID for future AMD GPIO controller (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: switch to using a bool for level (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Configure GPIO register using BIOS settings (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Remove the default de-bounce time (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Fix return value check in amd_gpio_probe() (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Use irq_desc_get_xxx() to avoid redundant lookup of irq_desc (Suravee Suthikulpanit) [1329005]
-- [pinctrl] make pinctrl_register() return proper error code (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Remove .owner field (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Fix inconsistent spinlock of AMD GPIO driver which can be recognized by static analysis tool smatch. Declare constant Variables with Sparse's suggestion (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Turn AMD support to tristate (Suravee Suthikulpanit) [1329005]
-- [pinctrl] add AMD GPIO driver support (Suravee Suthikulpanit) [1329005]
-- [kernel] genirq: Export handle_bad_irq (Suravee Suthikulpanit) [1329005]
-- [pinctrl] zynq: Use devm_pinctrl_register() for pinctrl registration (Suravee Suthikulpanit) [1329005]
-- [gpio] pinctrl: Add devm_ apis for pinctrl_{register, unregister} (Suravee Suthikulpanit) [1329005]
-- [base] platform_device: use a macro instead of platform_driver_register (Suravee Suthikulpanit) [1329005]
-- [acpi] acpica: Add "Windows 2015" string to _OSI support (Suravee Suthikulpanit) [1329005 1354637]
-
-* Fri Feb 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-554.el7]
-- [netdrv] igb: re-assign hw address pointer on reset after PCI error (Gustavo Duarte) [1413043]
-- [netdrv] netvsc: add rcu_read locking to netvsc callback (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: remove excessive logging on MTU change (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: fix a race between netvsc_send() and netvsc_init_buf() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: fix comments (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: count multicast packets received (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: remove VF in flight counters (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: use RCU to protect vf_netdev (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: improve VF device matching (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: simplify callback event code (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: dev hold/put reference to VF (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: use consume_skb (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: make variable local (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: make netvsc_destroy_buf void (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: refactor completion function (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: init completion during alloc (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: make device_remove void (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: use ARRAY_SIZE() for NDIS versions (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: style cleanups (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: Add handler for physical link speed change (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: Add query for initial physical link speed (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: use kcalloc (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: make RSS hash key static (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: fix rtnl locking in callback (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: Implement batching of receive completions (Vitaly Kuznetsov) [1395600]
-- [netdrv] netvsc: Use the new in-place consumption APIs in the rx path (Vitaly Kuznetsov) [1395600]
-- [netdrv] netvsc: get rid of completion timeouts (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: pass struct net_device to rndis_filter_set_offload_params() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: pass struct net_device to rndis_filter_set_device_mac() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: pass struct netvsc_device to rndis_filter_{open, close}() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: introduce {net, hv}_device_to_netvsc_device() helpers (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: remove redundant assignment in netvsc_recv_callback() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv: vmbus: Implement APIs to support "in place" consumption of vmbus packets (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv: vmbus: Move some ring buffer functions to hyperv.h (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv: vmbus: Export the vmbus_set_event() API (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv: vmbus: define a new VMBus message type for hvsock (Vitaly Kuznetsov) [1395600]
-
-* Thu Feb 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-553.el7]
-- [kernel] timekeeping: Increment clock_was_set_seq in timekeeping_init() (Prarit Bhargava) [1409214]
-- [kernel] timekeeping: Use timekeeping_update() instead of memcpy() (Prarit Bhargava) [1409214]
-- [s390] pci: query fmb length (Hendrik Brueckner) [1400157]
-- [s390] pci: fmb enhancements (Hendrik Brueckner) [1400157]
-- [s390] pci: use unique UIDs for domain enumeration (Hendrik Brueckner) [1380776]
-- [s390] pci: add some new arch specific pci attributes (Hendrik Brueckner) [1380776]
-- [s390] pci: use macro for attribute creation (Hendrik Brueckner) [1380776]
-- [s390] add support for ipl devices in subchannel sets > 0 (Hendrik Brueckner) [1381848]
-- [s390] ipl: cleanup macro usage (Hendrik Brueckner) [1381848]
-- [s390] ipl: cleanup shutdown_action attributes (Hendrik Brueckner) [1381848]
-- [s390] ipl: cleanup bin attr usage (Hendrik Brueckner) [1381848]
-- [s390] dasd: Add new ioctl BIODASDCHECKFMT (Hendrik Brueckner) [1380773]
-- [s390] dasd: Refactor dasd format functions (Hendrik Brueckner) [1380773]
-- [s390] dasd: Simplify code in format logic (Hendrik Brueckner) [1380773]
-- [s390] dasd: Improve dasd format code (Hendrik Brueckner) [1380773]
-- [s390] dasd: channel path aware error recovery (Hendrik Brueckner) [1380771]
-- [s390] dasd: extend dasd path handling (Hendrik Brueckner) [1380771]
-- [s390] dasd: fix double free in dasd_eckd_read_conf (Hendrik Brueckner) [1380771]
-- [s390] cio: introduce pathmask_to_pos (Hendrik Brueckner) [1380771]
-- [s390] dasd: make query host access interruptible (Hendrik Brueckner) [1274412]
-- [s390] dasd: add query host access to volume support (Hendrik Brueckner) [1274412]
-- [s390] dasd: fix failing CUIR assignment under LPAR (Hendrik Brueckner) [1274456]
-- [s390] dasd: enhance CUIR scope detection (Hendrik Brueckner) [1274456]
-- [s390] dasd: add support for control unit initiated reconfiguration (Hendrik Brueckner) [1274456]
-- [s390] kernel/ap_bus: Fix hang condition on crypto card config-off (Hendrik Brueckner) [1413663]
-- [s390] sysinfo: show partition extended name and UUID if available (Hendrik Brueckner) [1413122]
-- [s390] zcrypt: Improved invalid domain response handling (Hendrik Brueckner) [1413662]
-
-* Mon Jan 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-552.el7]
-- [kernel] vfio-mdev: fix non-standard ioctl return val causing i386 build fail (Tarun Gupta) [1116064]
-- [vfio] vfio-pci: Handle error from pci_iomap (Tarun Gupta) [1116064]
-- [samples] vfio-mdev: Make mdev_device private and abstract interfaces (Tarun Gupta) [1116064]
-- [samples] vfio-mdev: Make mdev_parent private (Tarun Gupta) [1116064]
-- [samples] vfio-mdev: de-polute the namespace, rename parent_device & parent_ops (Tarun Gupta) [1116064]
-- [vfio] vfio-mdev: Fix remove race (Tarun Gupta) [1116064]
-- [vfio] type1: Restore mapping performance with mdev support (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Fix size argument to vfio_find_dma() in pin_pages/unpin_pages (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Fix size argument to vfio_find_dma() during DMA UNMAP (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: WARN_ON if notifier block is not unregistered (Tarun Gupta) [1116064]
-- [virt] kvm: set/clear kvm to/from vfio_group when group add/delete (Tarun Gupta) [1116064]
-- [kernel] vfio: support notifier chain in vfio_group (Tarun Gupta) [1116064]
-- [kernel] vfio: vfio_register_notifier: classify iommu notifier (Tarun Gupta) [1116064]
-- [vfio] Fix handling of error returned by 'vfio_group_get_from_dev()' (Tarun Gupta) [1116064]
-- [vfio] fix vfio_info_cap_add/shift (Tarun Gupta) [1116064]
-- [maintainers] maintainers: Add entry VFIO based Mediated device drivers (Tarun Gupta) [1116064]
-- [samples] docs: Sample driver to demonstrate how to use Mediated device framework (Tarun Gupta) [1116064]
-- [documentation] docs: Sysfs ABI for mediated device framework (Tarun Gupta) [1116064]
-- [vfio] docs: Add Documentation for Mediated devices (Tarun Gupta) [1116064]
-- [uapi] vfio: Define device_api strings (Tarun Gupta) [1116064]
-- [vfio] vfio_pci: Updated to use vfio_set_irqs_validate_and_prepare() (Tarun Gupta) [1116064]
-- [kernel] vfio: Introduce vfio_set_irqs_validate_and_prepare() (Tarun Gupta) [1116064]
-- [vfio] vfio_pci: Update vfio_pci to use vfio_info_add_capability() (Tarun Gupta) [1116064]
-- [kernel] vfio: Introduce common function to add capabilities (Tarun Gupta) [1116064]
-- [kernel] vfio iommu: Add blocking notifier to notify DMA_UNMAP (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Add support for mediated devices (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Add task structure to vfio_dma (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Add find_iommu_group() function (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Update argument of vaddr_get_pfn() (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Update arguments of vfio_lock_acct (Tarun Gupta) [1116064]
-- [kernel] vfio iommu: Added pin and unpin callback functions to vfio_iommu_driver_ops (Tarun Gupta) [1116064]
-- [vfio] Common function to increment container_users (Tarun Gupta) [1116064]
-- [vfio] Rearrange functions to get vfio_group from dev (Tarun Gupta) [1116064]
-- [vfio] VFIO based driver for Mediated devices (Tarun Gupta) [1116064]
-- [kernel] vfio: Mediated device Core driver (Tarun Gupta) [1116064]
-- [lib] uuid.c: introduce a few more generic helpers (Tarun Gupta) [1116064]
-- [lib] uuid.c: move generate_random_uuid() to uuid.c (Tarun Gupta) [1116064]
-- [virt] kvm: mmu: try to fix up page faults before giving up (Tarun Gupta) [1116064]
-- [virt] kvm: mmu: prepare to support mapping of VM_IO and VM_PFNMAP frames (Tarun Gupta) [1116064]
-- [vfio] pci: Fix typos in comments (Tarun Gupta) [1116064]
-- [vfio] fix possible use after free of vfio group (Tarun Gupta) [1116064]
-- [vfio] vfio-pci: Allow to mmap sub-page MMIO BARs if the mmio page is exclusive (Tarun Gupta) [1116064]
-- [vfio] type1: Fix build warning (Tarun Gupta) [1116064]
-- [vfio] vfio_pci: Test for extended capabilities if config space > 256 bytes (Tarun Gupta) [1116064]
-- [vfio] pci: return -EFAULT if copy_to_user fails (Tarun Gupta) [1116064]
-- [vfio] pci: Enable virtual register in PCI config space (Tarun Gupta) [1116064]
-- [vfio] pci: Add infrastructure for additional device specific regions (Tarun Gupta) [1116064]
-- [uapi] vfio: Define device specific region type capability (Tarun Gupta) [1116064]
-- [vfio] pci: Include sparse mmap capability for MSI-X table regions (Tarun Gupta) [1116064]
-- [uapi] vfio: Define sparse mmap capability for regions (Tarun Gupta) [1116064]
-- [kernel] vfio: Add capability chain helpers (Tarun Gupta) [1116064]
-- [uapi] vfio: Define capability chains (Tarun Gupta) [1116064]
-- [vfio] If an IOMMU backend fails, keep looking (Tarun Gupta) [1116064]
-- [vfio] fix a warning message (Tarun Gupta) [1116064]
-- [vfio] vfio-pci: constify pci_error_handlers structures (Tarun Gupta) [1116064]
-
-* Fri Jan 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-551.el7]
-- [kernel] perf/core: Fix sideband list-iteration vs. event ordering NULL pointer deference crash (Jiri Olsa) [1412115]
-- [tools] perf trace: Check if MAP_32BIT is defined (again) (Jiri Olsa) [1405101]
-- [tools] perf hists: Fix column length on --hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Fix column indentation on --hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Show folded sign properly on --hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Fix indentation of folded sign on --hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hist browser: Fix hierarchy column counts (Jiri Olsa) [1405101]
-- [tools] perf jit: Fix build issue on Ubuntu (Jiri Olsa) [1405101]
-- [tools] perf header: Set nr_numa_nodes only when we parsed all the data (Jiri Olsa) [1405101]
-- [tools] perf top: Fix refreshing hierarchy entries on TUI (Jiri Olsa) [1405101]
-- [tools] tools build: Add feature detection for g++ (Jiri Olsa) [1405101]
-- [tools] tools build: Support compiling C++ source file (Jiri Olsa) [1405101]
-- [tools] perf top/report: Add tips about a list option (Jiri Olsa) [1405101]
-- [tools] perf report/top: Add a tip about system-wide collection from all CPUs (Jiri Olsa) [1405101]
-- [tools] perf report/top: Add a tip about source line numbers with overhead (Jiri Olsa) [1405101]
-- [tools] perf jevents: Fix Intel JSON fixed counter conversions (Jiri Olsa) [1405101]
-- [tools] tools lib traceevent: Fix kbuffer_read_at_offset() (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix MTC timestamp calculation for large MTC periods (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix estimated timestamps for cycle-accurate mode (Jiri Olsa) [1405101]
-- [tools] perf uretprobe ppc64le: Fix probe location (Jiri Olsa) [1405101]
-- [tools] perf pmu-events: Add Skylake frontend MSR support (Jiri Olsa) [1405101]
-- [tools] perf pmu-events: Fix fixed counters on Intel (Jiri Olsa) [1405101]
-- [tools] perf tools: Make alias matching case-insensitive (Jiri Olsa) [1405101]
-- [tools] perf tools: Allow period= in perf stat CPU event descriptions (Jiri Olsa) [1405101]
-- [tools] perf tools: Add README for info on parsing JSON/map files (Jiri Olsa) [1405101]
-- [tools] perf list jevents: Add support for event list topics (Jiri Olsa) [1405101]
-- [tools] perf list: Support long jevents descriptions (Jiri Olsa) [1405101]
-- [tools] perf jevents: Add support for long descriptions (Jiri Olsa) [1405101]
-- [tools] perf pmu: Add override support for event list CPUID (Jiri Olsa) [1405101]
-- [tools] perf list: Add a --no-desc flag (Jiri Olsa) [1405101]
-- [tools] perf tools: Query terminal width and use in perf list (Jiri Olsa) [1405101]
-- [tools] perf pmu: Support alias descriptions (Jiri Olsa) [1405101]
-- [tools] perf jevents: Handle header line in mapfile (Jiri Olsa) [1405101]
-- [tools] perf tools: Support CPU id matching for x86 v2 (Jiri Olsa) [1405101]
-- [tools] perf powerpc: Support CPU ID matching for Powerpc (Jiri Olsa) [1405101]
-- [tools] perf pmu: Use pmu_events table to create aliases (Jiri Olsa) [1405101]
-- [tools] perf jevents: Program to convert JSON file (Jiri Olsa) [1405101]
-- [tools] perf tools: Add jsmn `jasmine' JSON parser (Jiri Olsa) [1405101]
-- [tools] tools build: Make fixdep a hostprog (Jiri Olsa) [1405101]
-- [tools] tools build: Add support for host programs format (Jiri Olsa) [1405101]
-- [tools] perf tools: Experiment with cppcheck (Jiri Olsa) [1405101]
-- [tools] perf probe: Check if *ptr2 is zero and not ptr2 (Jiri Olsa) [1405101]
-- [tools] perf tests: Add dwarf unwind test for powerpc (Jiri Olsa) [1405101]
-- [tools] perf probe: Match linkage name with mangled name (Jiri Olsa) [1405101]
-- [tools] perf probe: Fix to cut off incompatible chars from group name (Jiri Olsa) [1405101]
-- [tools] perf probe: Skip if the function address is 0 (Jiri Olsa) [1405101]
-- [tools] perf probe: Ignore the error of finding inline instance (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix decoding when there are address filters (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Enable decoder to handle TIP.PGD with missing IP (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Read address filter from AUXTRACE_INFO event (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Record address filter in AUXTRACE_INFO event (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Add a helper function for processing AUXTRACE_INFO (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix missing error codes processing auxtrace_info (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Add support for recording the max non-turbo ratio (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix snapshot overlap detection decoder errors (Jiri Olsa) [1405101]
-- [tools] perf probe: Increase debug level of SDT debug messages (Jiri Olsa) [1405101]
-- [tools] perf record: Add support for using symbols in address filters (Jiri Olsa) [1405101]
-- [tools] perf symbols: Add dso__last_symbol() (Jiri Olsa) [1405101]
-- [tools] perf record: Fix error paths (Jiri Olsa) [1405101]
-- [tools] perf record: Rename label 'out_symbol_exit' (Jiri Olsa) [1405101]
-- [tools] perf script: Fix vanished idle symbols (Jiri Olsa) [1405101]
-- [tools] perf evsel: Add support for address filters (Jiri Olsa) [1405101]
-- [tools] perf evsel: New tracepoint specific function (Jiri Olsa) [1405101]
-- [tools] perf tools: Make perf_evsel__append_filter() generic (Jiri Olsa) [1405101]
-- [tools] perf tools: Update documentation info about quipper (Jiri Olsa) [1405101]
-- [tools] perf trace: Beautify sched_[gs]et_attr return value (Jiri Olsa) [1405101]
-- [tools] perf data: Fix building in 32 bit platform with libbabeltrace (Jiri Olsa) [1405101]
-- [tools] perf tools: Fix MMAP event synthesis broken by MAP_HUGETLB change (Jiri Olsa) [1405101]
-- [tools] perf record: Fix documentation 'event_sources' -> 'event_source' (Jiri Olsa) [1405101]
-- [tools] perf hists: Make hists__fprintf_headers function global (Jiri Olsa) [1405101]
-- [tools] perf hists: Make __hist_entry__snprintf function global (Jiri Olsa) [1405101]
-- [tools] perf tools: Make several display functions global (Jiri Olsa) [1405101]
-- [tools] perf tools: Make several sorting functions global (Jiri Olsa) [1405101]
-- [tools] perf tools: Make output_field_add and sort_dimension__add global (Jiri Olsa) [1405101]
-- [tools] perf tools: Make reset_dimensions global (Jiri Olsa) [1405101]
-- [tools] perf hists: Add __hist_entry__snprintf function (Jiri Olsa) [1405101]
-- [tools] perf tools: Add PMU configuration to tools (Jiri Olsa) [1405101]
-- [tools] perf pmu: Push configuration down to PMU driver (Jiri Olsa) [1405101]
-- [tools] perf tools: Confine __get_cpuid() to x86 architecture (Jiri Olsa) [1405101]
-- [tools] perf hists: Use bigger buffer for stdio headers (Jiri Olsa) [1405101]
-- [tools] perf evsel: Remove superfluous initialization of weight (Jiri Olsa) [1405101]
-- [tools] perf symbols: Do not open device files (Jiri Olsa) [1405101]
-- [tools] perf hists: Factor out hists__reset_column_width() (Jiri Olsa) [1405101]
-- [tools] perf ui/tui: Reset output width for hierarchy (Jiri Olsa) [1405101]
-- [tools] perf annotate: Resolve 'call' operands to function names (Jiri Olsa) [1405101]
-- [tools] perf annotate: Pass the symbol's map/dso to the instruction parsers (Jiri Olsa) [1405101]
-- [tools] perf annotate: Do not ignore call instruction with indirect target (Jiri Olsa) [1405101]
-- [tools] perf hists: Fix width computation for srcline sort entry (Jiri Olsa) [1405101]
-- [tools] perf trace beauty mmap: Add missing MADV_FREE (Jiri Olsa) [1405101]
-- [tools] perf tools: Add infrastructure for PMU specific configuration (Jiri Olsa) [1405101]
-- [tools] perf report: Enable group view with hierarchy (Jiri Olsa) [1405101]
-- [tools] perf ui/stdio: Rename print_hierarchy_header() (Jiri Olsa) [1405101]
-- [tools] perf ui/stdio: Always reset output width for hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hist: Initialize hierarchy tree explicitly (Jiri Olsa) [1405101]
-- [tools] perf hists: Introduce hists__link_hierarchy() (Jiri Olsa) [1405101]
-- [tools] perf hists: Introduce hists__match_hierarchy() (Jiri Olsa) [1405101]
-- [tools] perf build: Compare mman.h related headers against kernel originals (Jiri Olsa) [1405101]
-- [tools] perf tools: Do hugetlb handling in more systems (Jiri Olsa) [1405101]
-- [tools] perf trace beauty mmap: Fix defines for non !x86_64 (Jiri Olsa) [1405101]
-- [tools] tools include: Add uapi mman.h for each architecture (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Fix event group display (Jiri Olsa) [1405101]
-- [tools] perf probe: Fix dwarf regs table for x86_64 (Jiri Olsa) [1405101]
-- [tools] perf powerpc: Fix build-test failure (Jiri Olsa) [1405101]
-- [tools] perf pmu: Support alternative sysfs cpumask (Jiri Olsa) [1405101]
-- [tools] perf evlist: Only open events on CPUs an evsel permits (Jiri Olsa) [1405101]
-- [tools] perf annotate: Add branch stack / basic block (Jiri Olsa) [1405101]
-- [tools] perf record: Mark MAP_HUGETLB when synthesizing mmap events (Jiri Olsa) [1405101]
-- [tools] tools lib api fs: Add hugetlbfs filesystem detector (Jiri Olsa) [1405101]
-- [tools] perf tools: Recognize hugetlb mapping as anon mapping (Jiri Olsa) [1405101]
-- [tools] perf symbols: Remove symbol_filter_t machinery (Jiri Olsa) [1405101]
-- [tools] perf test vmlinux: Remove dead symbol_filter_t code (Jiri Olsa) [1405101]
-- [tools] perf machine: Remove machine->symbol_filter and friends (Jiri Olsa) [1405101]
-- [tools] perf top: Remove old kernel-only symbol filter (Jiri Olsa) [1405101]
-- [tools] perf symbols: Mark if a symbol is idle in the library (Jiri Olsa) [1405101]
-- [tools] perf symbols: Fixup symbol sizes before picking best ones (Jiri Olsa) [1405101]
-- [tools] perf symbols: Check symbol_conf.allow_aliases for kallsyms loading too (Jiri Olsa) [1405101]
-- [tools] perf test vmlinux: Tolerate symbol aliases (Jiri Olsa) [1405101]
-- [tools] perf test vmlinux: Avoid printing headers for empty lists (Jiri Olsa) [1405101]
-- [tools] perf test vmlinux: Clarify which -v lines are errors or warning (Jiri Olsa) [1405101]
-- [tools] perf probe: Ignore vmlinux Build-id when offline vmlinux given (Jiri Olsa) [1405101]
-- [tools] perf probe: Support probing on offline cross-arch binary (Jiri Olsa) [1405101]
-- [tools] perf probe: Ignore vmlinux buildid if offline kernel is given (Jiri Olsa) [1405101]
-- [tools] perf probe: Show trace event definition (Jiri Olsa) [1405101]
-- [tools] perf config: Show default report configuration in example and docs (Jiri Olsa) [1405101]
-- [tools] perf symbols: Demangle symbols for synthesized @plt entries (Jiri Olsa) [1405101]
-- [tools] perf probe: Do not use map_load filters for function (Jiri Olsa) [1405101]
-- [tools] perf symbols: Rename ->ignore to ->idle (Jiri Olsa) [1405101]
-- [tools] perf annotate: Initialize the priv are in symbol__new() (Jiri Olsa) [1405101]
-- [tools] perf tools: Fix error handling of lzma decompression (Jiri Olsa) [1405101]
-- [tools] perf probe: Remove unused tracing_dir variable (Jiri Olsa) [1405101]
-- [tools] perf record: Fix spelling mistake "Finshed" -> "Finished" (Jiri Olsa) [1405101]
-- [tools] perf tools: fix typo: "ehough" -> "enough" (Jiri Olsa) [1405101]
-- [tools] perf probe: Add supported for type casting by the running kernel (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Remove superfluous null check on map (Jiri Olsa) [1405101]
-- [tools] perf tools: Skip running the feature tests for 'make install-doc' (Jiri Olsa) [1405101]
-- [tools] perf tools: Use __weak definition from linux/compiler.h (Jiri Olsa) [1405101]
-- [tools] perf report: Allow configuring the default sort order in ~/.perfconfig (Jiri Olsa) [1405101]
-- [tools] perf disassemble: Extract logic to find file to pass to objdump to a separate function (Jiri Olsa) [1405101]
-- [tools] perf disassemble: Simplify logic for picking the filename to disassemble (Jiri Olsa) [1405101]
-- [tools] perf disassemble: Move check for kallsyms + !kcore (Jiri Olsa) [1405101]
-- [tools] perf hists: Add support for header span (Jiri Olsa) [1405101]
-- [tools] perf tools stdio: Display multiple header lines (Jiri Olsa) [1405101]
-- [tools] perf tools tui: Display multiple header lines (Jiri Olsa) [1405101]
-- [tools] perf hists: Add line argument into perf_hpp_fmt's header callback (Jiri Olsa) [1405101]
-- [tools] perf hists: Introduce nr_header_lines into struct perf_hpp_list (Jiri Olsa) [1405101]
-- [tools] perf top: Use MSEC_PER_SEC (Jiri Olsa) [1405101]
-- [tools] perf bench futex: Use NSEC_PER_USEC (Jiri Olsa) [1405101]
-- [tools] perf kvm: Use NSEC_PER_USEC (Jiri Olsa) [1405101]
-- [tools] perf record: Use USEC_PER_MSEC (Jiri Olsa) [1405101]
-- [tools] perf bench sched-messaging: Use USEC_PER_MSEC (Jiri Olsa) [1405101]
-- [tools] perf bench mem: Use USEC_PER_SEC (Jiri Olsa) [1405101]
-- [tools] perf stat: Use *SEC_PER_*SEC macros (Jiri Olsa) [1405101]
-- [tools] perf bench sched-pipe: Use linux/time64.h, USEC_PER_SEC (Jiri Olsa) [1405101]
-- [tools] perf timechart: Use NSEC_PER_U?SEC (Jiri Olsa) [1405101]
-- [tools] perf sched: Use linux/time64.h (Jiri Olsa) [1405101]
-- [tools] perf bench numa: Use NSEC_PER_U?SEC (Jiri Olsa) [1405101]
-- [tools] Introduce tools/include/linux/time64.h for *SEC_PER_*SEC macros (Jiri Olsa) [1405101]
-- [x86] perf/intel/rapl: Make the Intel RAPL PMU driver modular (Jiri Olsa) [1405101]
-- [kernel] bitmap.h, perf/core: Fix the mask in perf_output_sample_regs() (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix NMI measurements (Jiri Olsa) [1405101]
-- [x86] Warn when NMI handlers take large amounts of time (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix full width counter, counter overflow (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Allow only a single PMU/box within an events group (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Cure bogus unwind from PEBS entries (Jiri Olsa) [1405101]
-- [kernel] perf/core: Fix address filter parser (Jiri Olsa) [1405101]
-- [x86] perf/x86/uncore: Fix crash by removing bogus event_list[] handling for SNB client uncore IMC (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add more Intel uncore IMC PCI IDs for SkyLake (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Honour the CPUID for number of fixed counters in hypervisors (Jiri Olsa) [1405101]
-- [kernel] perf/core: Protect PMU device removal with a 'pmu_bus_running' check, to fix CONFIG_DEBUG_TEST_DRIVER_REMOVE=y kernel panic (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add Knights Mill CPUID (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Add Knights Mill CPUID (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Remove an inconsistent NULL check (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/pt: Add support for PTWRITE and power event tracing (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add Skylake server uncore support (Jiri Olsa) [1405101]
-- [kernel] perf/core: Fix aux_mmap_count vs aux_refcount order (Jiri Olsa) [1405101]
-- [kernel] perf/core: Don't pass PERF_EF_START to the PMU ->start callback (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix PEBS threshold initialization (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Handle non-standard counter offset (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Remove hard-coded implementation for Node ID mapping location (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add enable_box for client MSR uncore (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add support for the Intel Skylake client uncore PMU (Jiri Olsa) [1405101]
-- [x86] perf/x86/uncore: Use Intel family name macros for uncore (Jiri Olsa) [1405101]
-- [x86] perf/intel/uncore: Make the Intel uncore PMU driver modular (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix embarrasing typo (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix compile warnings for intel_uncore (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Clean up LBR state tracking (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Remove redundant test from intel_pmu_lbr_add() (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Eliminate dead code in intel_pmu_lbr_del() (Jiri Olsa) [1405101]
-- [x86] perf/x86: Ensure perf_sched_cb_{inc, dec}() is only called from pmu::{add, del}() (Jiri Olsa) [1405101]
-- [kernel] perf/x86/intel: Rework the large PEBS setup code (Jiri Olsa) [1405101]
-- [kernel] perf/core: Sched out groups atomically (Jiri Olsa) [1405101]
-
-* Thu Jan 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-550.el7]
-- [s390] mm: add support for 2GB hugepages (Hendrik Brueckner) [1380775]
-- [mm] hugetlb: don't require CMA for runtime gigantic pages (Hendrik Brueckner) [1380775]
-- [s390] scm_block: fix off by one during cluster reservation (Hendrik Brueckner) [1274409]
-- [s390] scm_block: make the number of reqs per HW req configurable (Hendrik Brueckner) [1274409]
-- [s390] scm_block: handle multiple requests in one HW request (Hendrik Brueckner) [1274409]
-- [s390] scm_block: allocate aidaw pages only when necessary (Hendrik Brueckner) [1274409]
-- [s390] scm_block: use mempool to manage aidaw requests (Hendrik Brueckner) [1274409]
-- [kernel] audit: add support for session ID user filter (Richard Guy Briggs) [1382504]
-- [kernel] audit: skip sessionid sentinel value when auto-incrementing (Richard Guy Briggs) [1382504]
-- [kernel] audit: convert all sessionid declaration to unsigned int (Richard Guy Briggs) [1382504]
-- [kernel] audit: add exclude filter extension to feature bitmap (Richard Guy Briggs) [1382508]
-- [kernel] audit: add fields to exclude filter by reusing user filter (Richard Guy Briggs) [1382508]
-- [kernel] audit: fix some horrible switch statement style crimes (Richard Guy Briggs) [1382508]
-- [kernel] audit: fixup: log on errors from filter user rules (Richard Guy Briggs) [1382508]
-- [security] selinux: Convert isec->lock into a spinlock (Andreas Grunbacher) [437984]
-- [security] selinux: Clean up initialization of isec->sclass (Andreas Grunbacher) [437984]
-- [security] proc: Pass file mode to proc_pid_make_inode (Andreas Grunbacher) [437984]
-- [security] selinux: Minor cleanups (Andreas Grunbacher) [437984]
-- [security] selinux: check ss_initialized before revalidating an inode label (Andreas Grunbacher) [437984]
-- [security] selinux: delay inode label lookup as long as possible (Andreas Grunbacher) [437984]
-- [security] selinux: don't revalidate an inode's label when explicitly setting it (Andreas Grunbacher) [437984]
-- [security] selinux: simply inode label states to INVALID and INITIALIZED (Andreas Grunbacher) [437984]
-- [security] selinux: don't revalidate inodes in selinux_socket_getpeersec_dgram() (Andreas Grunbacher) [437984]
-- [security] selinux: Don't sleep inside inode_getsecid hook (Andreas Grunbacher) [437984]
-- [security] selinux: Inode label revalidation performance fix (Andreas Grunbacher) [437984]
-- [security] gfs2: Invalid security labels of inodes when they go invalid (Andreas Grunbacher) [437984]
-- [security] selinux: Revalidate invalid inode security labels (Andreas Grunbacher) [437984]
-- [security] Add hook to invalidate inode security labels (Andreas Grunbacher) [437984]
-- [security] selinux: Add accessor functions for inode->i_security (Andreas Grunbacher) [437984]
-- [security] Make inode argument of inode_getsecid non-const (Andreas Grunbacher) [437984]
-- [security] Make inode argument of inode_getsecurity non-const (Andreas Grunbacher) [437984]
-- [security] selinux: Remove unused variable in selinux_inode_init_security (Andreas Grunbacher) [437984]
-
-* Thu Jan 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-549.el7]
-- [scsi] avoid a permanent stop of the scsi device's request queue (Ewan Milne) [1400044]
-- [scsi] scsi_lib: correctly retry failed zero length REQ_TYPE_FS commands (Ewan Milne) [1403849]
-- [scsi] qla2xxx: Get mutex lock before checking optrom_state (Chad Dupuis) [1408387]
-- [edac] amd64: Fix channel decode on Fam15hMod60h systems (Suravee Suthikulpanit) [1275714]
-- [tty] 8250_pci: Fix potential use-after-free in error path (Steve Best) [1414297]
-- [md] dm btree: fix a bug in dm_btree_find_next_single() (Mike Snitzer) [1414453]
-- [mm] memcontrol: do not recurse in direct reclaim (Rik van Riel) [1397330]
-- [x86] x86/smpboot: Make logical package management more robust (Prarit Bhargava) [1414054]
-- [x86] x86/cpu: Deal with broken firmware (VMWare/XEN) (Prarit Bhargava) [1414054]
-- [s390] zcrypt: Introduce CEX6 toleration (Hendrik Brueckner) [1380777]
-- [s390] net/af_iucv: don't use paged skbs for TX on HiperSockets (Hendrik Brueckner) [1413659]
-- [kernel] x86/panic: Replace CONFIG_KEXEC_CORE with CONFIG_KEXEC (Xunlei Pang) [726846]
-- [kernel] mm, pcp: allow restoring percpu_pagelist_fraction default (Dave Anderson) [1405920]
-- [kernel] locking: Optimize lock_bh functions (Lauro Ramos Venancio) [1403356]
-- [kernel] sched/preempt, locking: Rework local_bh_{dis, en}able() (Lauro Ramos Venancio) [1403356]
-- [kernel] locking/rtmutex: Implement lockless top-waiter wakeup (Lauro Ramos Venancio) [1403356]
-- [kernel] locking/mutex: Allow next waiter lockless wakeup (Lauro Ramos Venancio) [1403356]
-- [kernel] futex: Force hot variables into a single cache line (Lauro Ramos Venancio) [1403356]
-- [kernel] futex: Implement lockless wakeups (Lauro Ramos Venancio) [1403356]
-- [kernel] futex: Add another early deadlock detection check (Lauro Ramos Venancio) [1403356]
-- [kernel] sched/core: Reset task's lockless wake-queues on fork() (Lauro Ramos Venancio) [1403356]
-- [kernel] sched: Implement lockless wake-queues (Lauro Ramos Venancio) [1403356]
-- [virtio] balloon: check the number of available pages in leak balloon (David Hildenbrand) [1401615]
-- [drivers] Set dev->device_rh to NULL after free (Prarit Bhargava) [1414064]
-- [powerpc] kvm: Add halt polling documentation (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Comment style and print format fixups (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: Decrease the powerpc default halt poll max value (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Add check for module parameter halt_poll_ns (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Use generic kvm module parameters (Thomas Huth) [1399882]
-- [powerpc] kvm: Export kvm module parameter variables (Thomas Huth) [1399882]
-- [powerpc] kvm: halt_polling: improve grow/shrink settings (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: Implement existing and add new halt polling vcpu stats (Thomas Huth) [1399882]
-- [powerpc] kvm: Add provisioning for ulong vm stats and u64 vcpu stats (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Implement halt polling (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Change vcore element runnable_threads from linked-list to array (Thomas Huth) [1399882]
-- [powerpc] kvm: disable halt_poll_ns as default for s390x (Thomas Huth) [1399882]
-- [infiniband] ib/rdmavt: Only put mmap_info ref if it exists (Jonathan Toppins) [1391299]
-
-* Tue Jan 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-548.el7]
-- [hv] balloon: Use available memory value in pressure report (Vitaly Kuznetsov) [1406413]
-- [perf] powerpc: Don't call perf_event_disable() from atomic context (Jiri Olsa) [1327164]
-- [tools] objtool: Resync vcvtph2ps definition (Prarit Bhargava) [1414095]
-- [kernel] hung_task: decrement sysctl_hung_task_warnings only if it is positive (Waiman Long) [1410295]
-- [kernel] hung_task: allow hung_task_panic when hung_task_warnings is 0 (Waiman Long) [1410295]
-- [kernel] hung_task: Display every hung task warning (Waiman Long) [1410295]
-- [netdrv] netxen: netxen_rom_fast_read() doesn't return -1 (Harish Patil) [1391273]
-- [netdrv] netxen: reversed condition in netxen_nic_set_link_parameters() (Harish Patil) [1391273]
-- [netdrv] netxen: fix error handling in netxen_get_flash_block() (Harish Patil) [1391273]
-- [netdrv] netxen: Use kobj_to_dev() (Harish Patil) [1391273]
-- [netdrv] qlogic: use pci_zalloc_consistent (Harish Patil) [1391273]
-- [netdrv] netxen: Use pci_enable_msix_range() instead of pci_enable_msix() (Harish Patil) [1391273]
-- [netdrv] ethernet: Fix FSF address in file headers (Harish Patil) [1391273]
-- [netdrv] qlge: remove superfluous statement (Harish Patil) [1391271]
-- [netdrv] qlge: Avoids recursive EEH error (Harish Patil) [1391271]
-- [netdrv] qlge: Replace create_singlethread_workqueue with alloc_ordered_workqueue (Harish Patil) [1391271]
-- [netdrv] qlge: Update version to 1.00.00.35 (Harish Patil) [1391271]
-- [netdrv] qlge: Fix receive packets drop (Harish Patil) [1391271]
-- [netdrv] qlge: fix a timeout loop in ql_change_rx_buffers() (Harish Patil) [1391271]
-- [netdrv] qlge: Move jiffies_to_usecs immediately before loop (Harish Patil) [1391271]
-- [netdrv] qlge: Use eth_<foo>_addr instead of memset (Harish Patil) [1391271]
-- [netdrv] qlge: Fix compilation warning (Harish Patil) [1391271]
-- [netdrv] qlogic: use pci_zalloc_consistent (Harish Patil) [1391271]
-- [netdrv] qlge: Use pci_enable_msix_range() instead of pci_enable_msix() (Harish Patil) [1391271]
-- [powerpc] kvm: ppc: Always select KVM_VFIO, plus Makefile cleanup (Thomas Huth) [1399880]
-- [powerpc] kvm: ppc: do not compile in vfio.o unconditionally (Thomas Huth) [1399880]
-- [powerpc] vfio: Enable VFIO device for powerpc (Thomas Huth) [1399880]
-- [powerpc] kvm: ppc: Add support for multiple-TCE hcalls (Thomas Huth) [1399880]
-- [powerpc] kvm: ppc: Move reusable bits of H_PUT_TCE handler to helpers (Thomas Huth) [1399880]
-- [powerpc] kvm: ppc: Replace SPAPR_TCE_SHIFT with IOMMU_PAGE_SHIFT_4K (Thomas Huth) [1399880]
-- [powerpc] Make vmalloc_to_phys() public (Thomas Huth) [1399880]
-
-* Wed Jan 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-547.el7]
-- [x86] perf/x86: Add perf support for AMD family-17h processors (Suravee Suthikulpanit) [1391660]
-- [x86] kvm: svm: Do not support AVIC if not CONFIG_X86_LOCAL_APIC (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: svm: Fix implicit declaration for __default_cpu_present_to_apicid() (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Manage vcpu load/unload when enable AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Do not intercept CR8 when enable AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Do not expose x2APIC when enable AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Introducing kvm_x86_ops.apicv_post_state_restore (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Add VMEXIT handlers for AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Add interrupt injection via AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Detect and Initialize AVIC support (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Introduce new AVIC VMCB registers (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: split kvm_vcpu_wake_up from kvm_vcpu_kick (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Introducing kvm_x86_ops VCPU blocking/unblocking hooks (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: Add kvm_arch_vcpu_{un}blocking callbacks (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Introducing kvm_x86_ops VM init/destroy hooks (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Rename kvm_apic_get_reg to kvm_lapic_get_reg (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Misc LAPIC changes to expose helper functions (Suravee Suthikulpanit) [1133711]
-- [x86] kvm/x86: per-vcpu apicv deactivation support (Suravee Suthikulpanit) [1133711]
-- [x86] cpufeature: Add AMD AVIC bit (Suravee Suthikulpanit) [1133711]
-- [scsi] be2iscsi: Add checks to validate completions (Maurizio Lombardi) [1324918]
-- [scsi] be2iscsi: Fix bad WRB index error (Maurizio Lombardi) [1324918]
-- [scsi] be2iscsi: Add lock to protect WRB alloc and free (Maurizio Lombardi) [1324918]
-- [char] ipmi: fix crash on reading version from proc after unregisted bmc (Tony Camuso) [1410859]
-- [char] ipmi/bt-bmc: remove redundant return value check of platform_get_resource() (Tony Camuso) [1410859]
-- [char] ipmi/bt-bmc: add a dependency on ARCH_ASPEED (Tony Camuso) [1410859]
-- [char] ipmi: Fix ioremap error handling in bt-bmc (Tony Camuso) [1410859]
-- [char] ipmi: add an Aspeed BT IPMI BMC driver (Tony Camuso) [1410859]
-- [char] ipmi: remove trydefaults parameter and default init (Tony Camuso) [1410859]
-- [char] ipmi: Fix the I2C address extraction from SPMI tables (Tony Camuso) [1410859]
-- [char] ipmi: reserve memio regions separately (Tony Camuso) [1410859]
-- [char] ipmi: Fix some minor coding style issues (Tony Camuso) [1410859]
-- [char] ipmi: do not probe ACPI devices if si_tryacpi is unset (Tony Camuso) [1410859]
-- [char] ipmi_si: Avoid a wrong long timeout on transaction done (Tony Camuso) [1410859]
-- [char] ipmi_si: Fix module parameter doc names (Tony Camuso) [1410859]
-- [char] ipmi_ssif: Fix logic around alert handling (Tony Camuso) [1410859]
-- [scripts] nmi_backtrace: generate one-line reports for idle cpus (David Arcari) [1386012]
-- [idle] x86/cpu: Rename "WESTMERE2" family to "NEHALEM_G" (David Arcari) [1386012]
-- [idle] drivers/idle: make intel_idle.c driver more explicitly non-modular (David Arcari) [1386012]
-- [idle] x86/intel_idle: Use Intel family macros for intel_idle (David Arcari) [1386012]
-- [idle] intel_idle: Clean up all registered devices on exit (David Arcari) [1386012]
-- [idle] intel_idle: Propagate hot plug errors (David Arcari) [1386012]
-- [idle] intel_idle: Don't overreact to a cpuidle registration failure (David Arcari) [1386012]
-- [idle] intel_idle: Setup the timer broadcast only on successful driver load (David Arcari) [1386012]
-- [idle] intel_idle: Avoid a double free of the per-CPU data (David Arcari) [1386012]
-- [idle] intel_idle: Fix dangling registration on error path (David Arcari) [1386012]
-- [idle] intel_idle: Fix deallocation order on the driver exit path (David Arcari) [1386012]
-- [idle] intel_idle: Remove redundant initialization calls (David Arcari) [1386012]
-- [idle] intel_idle: Fix a helper function's return value (David Arcari) [1386012]
-- [idle] intel_idle: remove useless return from void function (David Arcari) [1386012]
-- [kernel] cpuidle: Invert CPUIDLE_FLAG_TIME_VALID logic (David Arcari) [1386012]
-- [idle] intel_idle: allow sparse sub-state numbering, for Bay Trail (David Arcari) [1386012]
-- [idle] intel_idle: mark some functions with __init tag (David Arcari) [1386012]
-
-* Tue Jan 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-546.el7]
-- [platform] dell-wmi: Ignore WMI event 0xe00e (David Arcari) [1396495]
-- [platform] dell-wmi: Add a WMI event code for display on/off (David Arcari) [1396495]
-- [platform] dell-wmi: Generate one sparse keymap for all machines (David Arcari) [1396495]
-- [platform] dell-wmi: Add information about other WMI event codes (David Arcari) [1396495]
-- [platform] dell-wmi: Sort WMI event codes and update comments (David Arcari) [1396495]
-- [platform] dell-wmi: Ignore WMI event code 0xe045 (David Arcari) [1396495]
-- [platform] dell-wmi: support Dell Inspiron M5110 (David Arcari) [1396495]
-- [platform] dell-wmi: properly process Dell Instant Launch hotkey (David Arcari) [1396495]
-- [platform] dell-rbtn: Ignore ACPI notifications if device is suspended (David Arcari) [1396495]
-- [platform] dell-wmi: enable receiving WMI events on Dell Vostro V131 (David Arcari) [1396495]
-- [platform] dell-smbios: rename dell_smi_error() to dell_smbios_error() (David Arcari) [1396495]
-- [platform] dell-laptop: move dell_smi_error() to dell-smbios (David Arcari) [1396495]
-- [platform] dell-rbtn: Add a comment about the XPS 13 9350 (David Arcari) [1396495]
-- [platform] dell-wmi: Support new hotkeys on the XPS 13 9350 (Skylake) (David Arcari) [1396495]
-- [platform] dell-wmi: Clean up hotkey table size check (David Arcari) [1396495]
-- [platform] dell-wmi: Stop storing pointers to DMI tables (David Arcari) [1396495]
-- [platform] dell-smbios: make da_tokens static (David Arcari) [1396495]
-- [platform] dell-smbios: remove find_token_{id, location}() (David Arcari) [1396495]
-- [platform] dell-laptop: use dell_smbios_find_token() instead of find_token_location() (David Arcari) [1396495]
-- [platform] dell-laptop: use dell_smbios_find_token() instead of find_token_id() (David Arcari) [1396495]
-- [platform] dell-smbios: implement new function for finding DMI table 0xDA tokens (David Arcari) [1396495]
-- [platform] dell-smbios: make the SMBIOS buffer static (David Arcari) [1396495]
-- [platform] dell-smbios: return the SMBIOS buffer from dell_smbios_get_buffer() (David Arcari) [1396495]
-- [platform] dell-smbios: don't return an SMBIOS buffer from dell_smbios_send_request() (David Arcari) [1396495]
-- [platform] dell-smbios: don't pass an SMBIOS buffer to dell_smbios_send_request() (David Arcari) [1396495]
-- [platform] dell-smbios: rename dell_send_request() to dell_smbios_send_request() (David Arcari) [1396495]
-- [platform] dell-smbios: rename release_buffer() to dell_smbios_release_buffer() (David Arcari) [1396495]
-- [platform] dell-smbios: rename clear_buffer() to dell_smbios_clear_buffer() (David Arcari) [1396495]
-- [platform] dell-smbios: rename get_buffer() to dell_smbios_get_buffer() (David Arcari) [1396495]
-- [platform] dell-laptop: extract SMBIOS-related code to a separate module (David Arcari) [1396495]
-- [platform] dell-wmi: Process only one event on devices with interface version 0 (David Arcari) [1396495]
-- [platform] dell-wmi: Check if Dell WMI descriptor structure is valid (David Arcari) [1396495]
-- [platform] dell-wmi: Improve unknown hotkey handling (David Arcari) [1396495]
-- [platform] dell_wmi: Use a C99-style array for bios_to_linux_keycode (David Arcari) [1396495]
-- [platform] dell-laptop: Do not cache hwswitch state (David Arcari) [1396495]
-- [platform] dell-laptop: Check return value of each SMBIOS call (David Arcari) [1396495]
-- [platform] dell-laptop: Clear buffer before each SMBIOS call (David Arcari) [1396495]
-- [platform] dell-laptop: Fix allocating & freeing SMI buffer page (David Arcari) [1396495]
-- [platform] dell-laptop: Show info about WiGig and UWB in debugfs (David Arcari) [1396495]
-- [platform] dell-laptop: Update information about wireless control (David Arcari) [1396495]
-- [platform] dell-laptop: Use dell-rbtn instead i8042 filter when possible (David Arcari) [1396495]
-- [platform] dell-rbtn: Export notifier for other kernel modules (David Arcari) [1396495]
-- [platform] dell-rbtn: Dell Airplane Mode Switch driver (David Arcari) [1396495]
-- [platform] x86: dell-laptop: Add support for keyboard backlight (David Arcari) [1396495]
-- [platform] revert "platform: x86: dell-laptop: Add support for keyboard backlight" (David Arcari) [1396495]
-- [platform] dell-smo8800: Add more ACPI ids and change description of driver (David Arcari) [1396495]
-- [platform] x86: dell-laptop: Add support for keyboard backlight (David Arcari) [1396495]
-- [kernel] leds: add led-class attribute-group support (David Arcari) [1396495]
-- [platform] dell-wmi: Don't report keypresses on keybord illumination change (David Arcari) [1396495]
-- [platform] dell-wmi: Don't report keypresses for radio state changes (David Arcari) [1396495]
-- [platform] dell-wmi: Update code for processing WMI events (David Arcari) [1396495]
-- [platform] dell-wmi: Fix access out of memory (David Arcari) [1396495]
-- [platform] dell-laptop: Mark dell_quirks[] DMI table as __initconst (David Arcari) [1396495]
-- [platform] x86: dell-smo8800: Dell Latitude freefall driver (ACPI SMO8800/SMO8810) (David Arcari) [1396495]
-- [platform] dell-laptop: Only install the i8042 filter when rfkill is active (David Arcari) [1396495]
-- [platform] dell-laptop: rkill whitelist Precision models (David Arcari) [1396495]
-- [platform] dell-laptop: fix to return error code in dell_send_intensity() (David Arcari) [1396495]
-- [platform] acpi: Clean up inclusions of ACPI header files (David Arcari) [1396495]
-- [platform] dell-wmi: Add KEY_MICMUTE to bios_to_linux_keycode (David Arcari) [1396495]
-- [platform] dell-laptop: Only enable rfkill functionality on laptops with a hw killswitch (David Arcari) [1396495]
-- [platform] dell-laptop: Add a force_rfkill module parameter (David Arcari) [1396495]
-- [platform] dell-laptop: Wait less long before updating rfkill after an rfkill keypress (David Arcari) [1396495]
-- [platform] dell-laptop: Do not skip setting blocked bit rfkill_set while hw-blocked (David Arcari) [1396495]
-- [platform] dell-laptop: Sync current block state to BIOS on hw switch change (David Arcari) [1396495]
-- [platform] dell-laptop: Allow changing the sw_state while the radio is blocked by hw (David Arcari) [1396495]
-- [platform] dell-laptop: Don't read-back sw_state on machines with a hardware switch (David Arcari) [1396495]
-- [platform] dell-laptop: Don't set sw_state from the query callback (David Arcari) [1396495]
-- [platform] dell-laptop: Only get status from BIOS once when updating (David Arcari) [1396495]
-- [platform] dell-laptop: If there is no hwswitch, then clear all hw-controlled bits (David Arcari) [1396495]
-- [platform] dell-laptop: Only enable rfkill on Latitudes (David Arcari) [1396495]
-- [platform] revert "dell-laptop: Remove rfkill code" (David Arcari) [1396495]
-- [platform] dell-laptop: fix error return code in dell_init() (David Arcari) [1396495]
-
-* Tue Jan 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-545.el7]
-- [md] dm thin: fix a race condition between discarding and provisioning a block (Mike Snitzer) [1368193 1405225]
-- [md] dm thin: unroll issue_discard() to create longer discard bio chains (Mike Snitzer) [1368193 1405225]
-- [md] dm thin: use __blkdev_issue_discard for async discard support (Mike Snitzer) [1368193 1405225]
-- [md] dm flakey: introduce "error_writes" feature (Mike Snitzer) [1368193 1405225]
-- [md] dm space map: always set ev if sm_ll_mutate() succeeds (Mike Snitzer) [1368193 1405225]
-- [md] dm space map metadata: skip useless memcpy in metadata_ll_init_index() (Mike Snitzer) [1368193 1405225]
-- [md] dm space map metadata: fix 'struct sm_metadata' leak on failed create (Mike Snitzer) [1368193 1405225]
-- [documentation] dm raid: define data_offset status field (Mike Snitzer) [1368193 1405225]
-- [md] dm raid: fix discard support regression (Mike Snitzer) [1368193 1405225]
-- [md] dm raid: don't allow "write behind" with raid4_5_6 (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: use hw_handler_params if attached hw_handler is same as requested (Mike Snitzer) [1368193 1405225]
-- [md] dm array: remove a dead assignment in populate_ablock_with_values() (Mike Snitzer) [1368193 1405225]
-- [md] dm ioctl: use offsetof() instead of open-coding it (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: simplify use_blk_mq initialization (Mike Snitzer) [1368193 1405225]
-- [md] dm: use blk_set_queue_dying() in __dm_destroy() (Mike Snitzer) [1368193 1405225]
-- [md] dm bufio: drop the lock when doing GFP_NOIO allocation (Mike Snitzer) [1368193 1405225]
-- [md] dm bufio: avoid sleeping while holding the dm_bufio lock (Mike Snitzer) [1368193 1405225]
-- [md] dm table: simplify dm_table_determine_type() (Mike Snitzer) [1368193 1405225]
-- [md] dm table: an 'all_blk_mq' table must be loaded for a blk-mq DM device (Mike Snitzer) [1368193 1405225]
-- [md] dm table: fix 'all_blk_mq' inconsistency when an empty table is loaded (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: do not modify *__clone if blk_mq_alloc_request() fails (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: change return type of pg_init_all_paths() from int to void (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: add checks for priority group count to avoid invalid memory access (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: add m->hw_handler_name NULL pointer check in parse_hw_handler() (Mike Snitzer) [1368193 1405225]
-- [md] dm flakey: return -EINVAL on interval bounds error in flakey_ctr() (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: constify crypt_iv_operations structures (Mike Snitzer) [1368193 1405225]
-- [md] dm raid: correct error messages on old metadata validation (Mike Snitzer) [1368193 1405225]
-- [documentation] dm raid: fix typos in Documentation_device-mapper_dm-raid.txt (Mike Snitzer) [1368193 1405225]
-- [md] dm cache: add missing cache device name to DMERR in set_cache_mode() (Mike Snitzer) [1368193 1405225]
-- [md] dm cache metadata: remove an extra newline in DMERR and code (Mike Snitzer) [1368193 1405225]
-- [md] dm verity: fix incorrect error message (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: rename crypt_setkey_allcpus to crypt_setkey (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: mark key as invalid until properly loaded (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: fix a race condition in rq_completed() (Mike Snitzer) [1368193 1405225]
-- [md] dm block manager: make block locking optional (Mike Snitzer) [1368193 1405225]
-- [md] dm: Fix a race condition related to stopping and starting queues (Mike Snitzer) [1368193 1405225]
-- [md] dm: Use BLK_MQ_S_STOPPED instead of QUEUE_FLAG_STOPPED in blk-mq code (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: Add a kick_requeue_list argument to blk_mq_requeue_request() (Mike Snitzer) [1368193 1405225]
-- [block] blk-mq: blk_mq_try_issue_directly() should lookup hardware queue (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: Introduce blk_mq_quiesce_queue() (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: Remove blk_mq_cancel_requeue_work() (Mike Snitzer) [1368193 1405225]
-- [scsi] blk-mq: Avoid that requeueing starts stopped queues (Mike Snitzer) [1368193 1405225]
-- [block] blk-mq: Move more code into blk_mq_direct_issue_request() (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: Introduce blk_mq_queue_stopped() (Mike Snitzer) [1368193 1405225]
-- [block] blk-mq: Introduce blk_mq_hctx_stopped() (Mike Snitzer) [1368193 1405225]
-- [block] blk-mq: Do not invoke .queue_rq() for a stopped queue (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: add flag for drivers wanting blocking ->queue_rq() (Mike Snitzer) [1368193 1405225]
-- [md] dm table: fix missing dm_put_target_type() in dm_table_add_target() (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: clear kworker_task if kthread_run() returned an error (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: check kthread_run return for .request_fn request-based DM (Mike Snitzer) [1368193 1405225]
-- [md] dm mirror: use all available legs on multiple failures (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: always return reservation conflict without failing over (Mike Snitzer) [1368193 1405225]
-- [md] dm bufio: remove dm_bufio_cond_resched() (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: fix crash on exit (Mike Snitzer) [1368193 1405225]
-- [md] dm cache metadata: switch to using the new cursor api for loading metadata (Mike Snitzer) [1368193 1405225]
-- [md] dm array: introduce cursor api (Mike Snitzer) [1368193 1405225]
-- [md] dm btree: introduce cursor api (Mike Snitzer) [1368193 1405225]
-- [md] dm cache policy smq: distribute entries to random levels when switching to smq (Mike Snitzer) [1368193 1405225]
-- [md] dm cache: speed up writing of the hint array (Mike Snitzer) [1368193 1405225]
-- [md] dm array: add dm_array_new() (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: delay the requeue of blk-mq requests while all paths down (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: use dm_mq_kick_requeue_list() (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: introduce dm_mq_kick_requeue_list() (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: reduce arguments passed to map_request() and dm_requeue_original_request() (Mike Snitzer) [1368193 1405225]
-- [kernel] dm rq: add DM_MAPIO_DELAY_REQUEUE to delay requeue of blk-mq requests (Mike Snitzer) [1368193 1405225]
-- [md] dm: convert wait loops to use autoremove_wake_function() (Mike Snitzer) [1368193 1405225]
-- [md] dm: use signal_pending_state() in dm_wait_for_completion() (Mike Snitzer) [1368193 1405225]
-- [md] dm: rename task state function arguments (Mike Snitzer) [1368193 1405225]
-- [md] dm: add two lockdep_assert_held() statements (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: simplify dm_old_stop_queue() (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: check if path's request_queue is dying in activate_path() (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: take request_queue lock while clearing QUEUE_FLAG_STOPPED (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: factor out dm_mq_stop_queue() (Mike Snitzer) [1368193 1405225]
-- [md] dm: mark request_queue dead before destroying the DM device (Mike Snitzer) [1368193 1405225]
-- [md] dm: return correct error code in dm_resume()'s retry loop (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: introduce blk_mq_delay_kick_requeue_list() (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: fix free of bad values after tfm allocation failure (Mike Snitzer) [1368193 1405225]
-- [md] dm flakey: fix reads to be issued if drop_writes configured (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: increase mempool reserve to better support swapping (Mike Snitzer) [1368193 1405225]
-- [md] dm round robin: do not use this_cpu_ptr() without having preemption disabled (Mike Snitzer) [1368193 1405225]
-- [kernel] dm mpath: add optional "queue_mode" feature (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: remove bio-based bloat from struct dm_mpath_io (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: reinstate bio-based support (Mike Snitzer) [1368193 1405225]
-
-* Tue Jan 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-544.el7]
-- [x86] kvm: nvmx: Allow L1 to intercept software exceptions (#BP and #OF) (Bandan Das) [1404928] {CVE-2016-9588}
-- [x86] perf/x86/intel/uncore: Fix hardcoded socket 0 assumption in the Haswell init code (Prarit Bhargava) [1373738]
-- [pci] Add helpers to request/release memory and I/O regions (Myron Stowe) [1392577]
-- [pci] Move pci_set_flags() from asm-generic/pci-bridge.h to linux/pci.h (Myron Stowe) [1392577]
-- [char] random: Wake up all getrandom(2) callers when pool is ready (Herbert Xu) [1330000]
-- [char] random: introduce getrandom(2) system call (Herbert Xu) [1330000]
-- [iommu] vt-d: Flush old iommu caches for kdump when the device gets context mapped (Myron Stowe) [1340547]
-- [netdrv] i40e: Fix corruption when transferring large files (Stefan Assmann) [1404060 1406126]
-- [netdrv] netvsc: reduce maximum GSO size (Vitaly Kuznetsov) [1406926]
-- [netdrv] fjes: fix format string for trace output (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: update fjes driver version : 1.2 (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: Add debugfs entry for EP status information in fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: ethtool -w and -W support for fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: Add tracepoints in fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: Enhance ethtool -S for fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: ethtool -d support for fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: fjes_main: Remove create_workqueue (Yasuaki Ishimatsu) [1388716]
-- [kernel] tracing: Add array printing helper (Yasuaki Ishimatsu) [1388716]
-- [kernel] tracing: Add __get_dynamic_array_len() macro for trace events (Yasuaki Ishimatsu) [1388716]
-- [netdrv] bnx2x: Use the correct divisor value for PHC clock readings (Michal Schmidt) [1175585]
-
-* Mon Jan 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-543.el7]
-- [fs] pnfs/blocklayout: fix last_write_offset incorrectly set to page boundary (Benjamin Coddington) [1404245]
-- [fs] pnfs/blocklayout: update last_write_offset atomically with extents (Benjamin Coddington) [1404245]
-- [fs] seq_file: reset iterator to first record for zero offset (Miklos Szeredi) [1386642]
-- [fs] nfs: fix false positives in nfs40_walk_client_list() ("J. Bruce Fields") [1372782]
-- [fs] nfsd4: setclientid_confirm with unmatched verifier should fail ("J. Bruce Fields") [1372782]
-- [fs] nfsd: randomize SETCLIENTID reply to help distinguish servers ("J. Bruce Fields") [1372782]
-- [fs] nfsd: add support for the umask attribute ("J. Bruce Fields") [1217546]
-- [fs] nfsd: catch errors in decode_fattr earlier ("J. Bruce Fields") [1217546]
-- [fs] nfsd: clean up supported attribute handling ("J. Bruce Fields") [1217546]
-- [fs] nfs: add support for the umask attribute ("J. Bruce Fields") [1217546]
-- [fs] nfs4: remove unused CHANGE_SECURITY_LABEL ("J. Bruce Fields") [1217546]
-- [fs] libceph: no need to drop con->mutex for ->get_authorizer() (Ilya Dryomov) [1408170]
-- [fs] libceph: drop len argument of *verify_authorizer_reply() (Ilya Dryomov) [1408170]
-- [fs] libceph: verify authorize reply on connect (Ilya Dryomov) [1408170]
-- [fs] libceph: no need for GFP_NOFS in ceph_monc_init() (Ilya Dryomov) [1408170]
-- [fs] libceph: stop allocating a new cipher on every crypto request (Ilya Dryomov) [1408170]
-- [fs] libceph: uninline ceph_crypto_key_destroy() (Ilya Dryomov) [1408170]
-- [fs] libceph: remove now unused ceph_*{en, de}crypt*() functions (Ilya Dryomov) [1408170]
-- [fs] libceph: switch ceph_x_decrypt() to ceph_crypt() (Ilya Dryomov) [1408170]
-- [fs] libceph: switch ceph_x_encrypt() to ceph_crypt() (Ilya Dryomov) [1408170]
-- [fs] libceph: tweak calcu_signature() a little (Ilya Dryomov) [1408170]
-- [fs] libceph: rename and align ceph_x_authorizer::reply_buf (Ilya Dryomov) [1408170]
-- [fs] libceph: introduce ceph_crypt() for in-place en/decryption (Ilya Dryomov) [1408170]
-- [fs] libceph: introduce ceph_x_encrypt_offset() (Ilya Dryomov) [1408170]
-- [fs] libceph: old_key in process_one_ticket() is redundant (Ilya Dryomov) [1408170]
-- [fs] libceph: ceph_x_encrypt_buflen() takes in_len (Ilya Dryomov) [1408170]
-- [fs] libceph: Remove unnecessary ivsize variables (Ilya Dryomov) [1408170]
-- [fs] libceph: Use skcipher (Ilya Dryomov) [1408170]
-- [fs] nfs: Trim extra slash in v4 nfs_path (Benjamin Coddington) [1130893]
-- [fs] blocklayout: put deviceid node after releasing bl_ext_lock (Benjamin Coddington) [1348596]
-- [fs] xfs: don't BUG() on mixed direct and mapped I/O (Brian Foster) [1364856]
-- [fs] xfs: skip dirty pages in ->releasepage() (Brian Foster) [1079818]
-- [fs] sunrpc: svc_age_temp_xprts_now should not call setsockopt on non-tcp transports (Scott Mayhew) [1372444]
-- [fs] xfs: fix two memory leaks in xfs_attr_list.c error paths (Bill O'Donnell) [1391223] {CVE-2016-9685}
-
-* Fri Jan 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-542.el7]
-- [mm] meminit: initialise more memory for inode/dentry hash tables in early boot (Yasuaki Ishimatsu) [1404584]
-- [s390] mem_detect: Revert "add DAT sanity check" (Hendrik Brueckner) [1391540]
-- [s390] cpuinfo: show maximum thread id (Hendrik Brueckner) [1399563]
-- [s390] qeth: omit outbound queue 3 for unicast packets in Priority Queuing on HiperSockets (Hendrik Brueckner) [1380787]
-- [s390] qeth: Add new priority queueing options (Hendrik Brueckner) [1380787]
-- [s390] qeth: Extend priority queueing to IPv6 (Hendrik Brueckner) [1380787]
-- [s390] qeth: Fix default queue setting in priority queueing (Hendrik Brueckner) [1380787]
-- [s390] qeth: Fix IP version detection for VLAN traffic (Hendrik Brueckner) [1380787]
-- [s390] qeth: Removed unused parameter (Hendrik Brueckner) [1380787]
-- [s390] qeth: add network device features for VLAN devices (Hendrik Brueckner) [1274455]
-- [s390] qeth: add layer 2 RX/TX checksum offloading (Hendrik Brueckner) [1274455]
-- [s390] qeth: fix rx checksum offload handling (Hendrik Brueckner) [1274455]
-- [s390] qeth: Include error message for "OS Mismatch" (Hendrik Brueckner) [1200409]
-- [s390] qeth: BRIDGEPORT "sanity check" (Hendrik Brueckner) [1200409]
-- [s390] qeth: OSA version of SETBRIDGEPORT command (Hendrik Brueckner) [1200409]
-- [s390] qeth: IFF_PROMISC flag to BRIDGE PORT mode (Hendrik Brueckner) [1200409]
-- [s390] qeth: fix handling of IPA return codes (Hendrik Brueckner) [1380770]
-- [s390] qeth: fix build of s390 allmodconfig (Hendrik Brueckner) [1380770]
-- [s390] qeth: bridgeport support - address notifications (Hendrik Brueckner) [1380770]
-- [s390] qdio: bridgeport support - CHSC part (Hendrik Brueckner) [1380770]
-- [s390] qeth: bridgeport support - basic control (Hendrik Brueckner) [1380770]
-- [s390] qeth: check not more than 16 SBALEs on the completion queue (Hendrik Brueckner) [1399544]
-- [s390] time: LPAR offset handling (Hendrik Brueckner) [1391531]
-- [s390] time: move PTFF definitions (Hendrik Brueckner) [1391531]
-- [s390] mm: handle PTE-mapped tail pages in fast gup (Hendrik Brueckner) [1391532]
-- [s390] cio: fix accidental interrupt enabling during resume (Hendrik Brueckner) [1391533]
-- [block] xen-blkfront: don't call talk_to_blkback when already connected to blkback (Vitaly Kuznetsov) [1404734]
-- [block] xen-blkfront: Fix crash if backend doesn't follow the right states (Vitaly Kuznetsov) [1404734]
-- [block] xen-blkfront: only talk_to_blkback() when in XenbusStateInitialising (Vitaly Kuznetsov) [1404734]
-- [block] xen-blkfront: move talk_to_blkback to a more suitable place (Vitaly Kuznetsov) [1404734]
-- [kernel] stop_machine: touch_nmi_watchdog() after MULTI_STOP_PREPARE (Oleg Nesterov) [1354850]
-
-* Wed Jan 11 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-541.el7]
-- [netdrv] fm10k: wrap long line for alloc_workqueue (Neil Horman) [1383526]
-- [netdrv] fm10k: use generic ethtool_op_get_ts_info callback (Neil Horman) [1383526]
-- [netdrv] fm10k: don't re-map queues when a mailbox message suffices (Neil Horman) [1383526]
-- [netdrv] fm10k: don't clear the RXQCTL register when enabling or disabling queues (Neil Horman) [1383526]
-- [netdrv] fm10k: remove unnecessary extra parenthesis around ((~value)) (Neil Horman) [1383526]
-- [netdrv] fm10k: don't try to stop queues if we've lost hw_addr (Neil Horman) [1383526]
-- [netdrv] fm10k: don't continue probe if PCI device not in normal IO state (Neil Horman) [1383526]
-- [netdrv] fm10k: print error code when pci_enable_device_mem fails during probe (Neil Horman) [1383526]
-- [netdrv] fm10k: NAPI polling routine must return actual work done (Neil Horman) [1383526]
-- [netdrv] fm10k: prefer READ_ONCE instead of ACCESS_ONCE (Neil Horman) [1383526]
-- [netdrv] fm10k: remove fm10k_get_reta_size from namespace (Neil Horman) [1383526]
-- [netdrv] fm10k: use variadic form of alloc_workqueue (Neil Horman) [1383526]
-- [netdrv] fm10k: use software values when checking for Tx hangs in hot path (Neil Horman) [1383526]
-- [netdrv] fm10k: fix PCI device enable_cnt leak in .io_slot_reset (Neil Horman) [1383526]
-- [netdrv] fm10k: bump version number (Neil Horman) [1383526]
-- [netdrv] fm10k: return proper error code when pci_enable_msix_range fails (Neil Horman) [1383526]
-- [netdrv] fm10k: force link to remain down for at least a second on resume events (Neil Horman) [1383526]
-- [netdrv] fm10k: implement request_lport_map pointer (Neil Horman) [1383526]
-- [netdrv] fm10k: check if PCIe link is restored (Neil Horman) [1383526]
-- [netdrv] fm10k: enable bus master after every reset (Neil Horman) [1383526]
-- [netdrv] fm10k: use common flow for suspend and resume (Neil Horman) [1383526]
-- [netdrv] fm10k: implement reset_notify handler for PCIe FLR events (Neil Horman) [1383526]
-- [netdrv] fm10k: use common reset flow when handling io errors from PCI stack (Neil Horman) [1383526]
-- [netdrv] fm10k: implement prepare_suspend and handle_resume (Neil Horman) [1383526]
-- [netdrv] fm10k: split fm10k_reinit into two functions (Neil Horman) [1383526]
-- [netdrv] fm10k: wait for queues to drain if stop_hw() fails once (Neil Horman) [1383526]
-- [netdrv] fm10k: only warn when stop_hw fails with FM10K_ERR_REQUESTS_PENDING (Neil Horman) [1383526]
-- [netdrv] fm10k: use actual hardware registers when checking for pending Tx (Neil Horman) [1383526]
-- [netdrv] fm10k: perform data path reset even when switch is not ready (Neil Horman) [1383526]
-- [netdrv] fm10k: don't stop reset due to FM10K_ERR_REQUESTS_PENDING (Neil Horman) [1383526]
-- [netdrv] fm10k: Reset mailbox global interrupts (Neil Horman) [1383526]
-- [netdrv] fm10k: prevent multiple threads updating statistics (Neil Horman) [1383526]
-- [netdrv] fm10k: avoid possible null pointer dereference in fm10k_update_stats (Neil Horman) [1383526]
-- [netdrv] fm10k: no need to continue in fm10k_down if __FM10K_DOWN already set (Neil Horman) [1383526]
-- [netdrv] fm10k: Remove create_workqueue (Neil Horman) [1383526]
-- [netdrv] fm10k: fix incorrect index calculation in fm10k_write_reta (Neil Horman) [1383526]
-- [netdrv] fm10k: Align Rx buffers to 512B blocks (Neil Horman) [1383526]
-- [netdrv] fm10k: don't use BIT() macro where the value isn't a bitmask (Neil Horman) [1383526]
-- [netdrv] fm10k: fix incorrect IPv6 extended header checksum (Neil Horman) [1383526]
-- [netdrv] fm10k: consistently use Intel(R) for driver names (Neil Horman) [1383526]
-- [netdrv] fm10k: fix possible null pointer deref after kcalloc (Neil Horman) [1383526]
-- [netdrv] fm10k: Reset multicast mode when deleting lport (Neil Horman) [1383526]
-- [netdrv] fm10k: update comment regarding reserved bits check (Neil Horman) [1383526]
-- [netdrv] fm10k: use different name than FM10K_VLAN_CLEAR for override bit (Neil Horman) [1383526]
-- [netdrv] fm10k: use 8bit notation instead of 10bit notation for diagram (Neil Horman) [1383526]
-- [netdrv] fm10k: fix documentation of fm10k_tlv_parse_attr (Neil Horman) [1383526]
-- [netdrv] fm10k: do not disable PCI device in fm10k_io_error_detected (Neil Horman) [1383526]
-- [netdrv] fm10k: correctly handle LPORT_MAP error (Neil Horman) [1383526]
-- [netdrv] fm10k: Fix multicast mode sync issues (Neil Horman) [1383526]
-- [netdrv] fm10k: drop 1588 support (Neil Horman) [1383526]
-- [netdrv] fm10k: prevent RCU issues during AER events (Neil Horman) [1383526]
-- [netdrv] fm10k: use DRV_SUMMARY to reduce code duplication (Neil Horman) [1383526]
-- [netdrv] fm10k: Add support for bulk Tx cleanup & cleanup boolean logic (Neil Horman) [1383526]
-- [netdrv] fm10k: remove debug-statistics support (Neil Horman) [1383526]
-- [netdrv] fm10k: add helper functions to set strings and data for ethtool stats (Neil Horman) [1383526]
-- [netdrv] fm10k: fix multi-bit VLAN update requests from VF (Neil Horman) [1383526]
-- [netdrv] fm10k: use ethtool_rxfh_indir_default for default redirection table (Neil Horman) [1383526]
-- [netdrv] fm10k: fix a minor typo in some comments (Neil Horman) [1383526]
-- [netdrv] fm10k: correctly clean up when init_queueing_scheme fails (Neil Horman) [1383526]
-- [netdrv] fm10k: prevent possibly uninitialized variable (Neil Horman) [1383526]
-- [netdrv] fm10k: add helper functions to set strings and data for ethtool stats (Neil Horman) [1383526]
-- [netdrv] fm10k: free MBX IRQ before clearing interrupt scheme (Neil Horman) [1383526]
-- [netdrv] fm10k: print error message when stop_hw fails (Neil Horman) [1383526]
-- [netdrv] fm10k: base queue scheme covered by RSS (Neil Horman) [1383526]
-- [netdrv] fm10k: don't initialize service task until later in probe (Neil Horman) [1383526]
-- [netdrv] fm10k: prevent null pointer dereference of msix_entries table (Neil Horman) [1383526]
-- [netdrv] fm10k: use ether_addr_copy to copy MAC address (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup SPACE_BEFORE_TAB checkpatch warning (Neil Horman) [1383526]
-- [netdrv] fm10k: demote BUG_ON() to WARN_ON() where appropriate (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup remaining right-bit-shifted 1 (Neil Horman) [1383526]
-- [netdrv] fm10k: Move constants to the right of binary operators (Neil Horman) [1383526]
-- [netdrv] fm10k: don't reinitialize RSS flow table when RXFH configured (Neil Horman) [1383526]
-- [netdrv] fm10k: IS_ENABLED() is not appropriate for boolean kconfig option (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup mailbox code comments etc (Neil Horman) [1383526]
-- [netdrv] fm10k: use true/false for boolean get_host_state (Neil Horman) [1383526]
-- [netdrv] fm10k: remove unused struct element (Neil Horman) [1383526]
-- [netdrv] fm10k: constify fm10k_mac_ops, fm10k_iov_ops and fm10k_info structures (Neil Horman) [1383526]
-- [netdrv] fm10k: address operator not needed when declaring function pointers (Neil Horman) [1383526]
-- [netdrv] fm10k: use ether_addr_equal instead of memcmp (Neil Horman) [1383526]
-- [netdrv] fm10k: Cleanup exception handling for changing queues (Neil Horman) [1383526]
-- [netdrv] fm10k: correctly pack TLV structures and explain reasoning (Neil Horman) [1383526]
-- [netdrv] fm10k: don't initialize fm10k_workqueue at global level (Neil Horman) [1383526]
-- [netdrv] fm10k: initialize xps at driver load (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup overly long lines (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup namespace pollution (Neil Horman) [1383526]
-- [netdrv] fm10k: use BIT() macro instead of open-coded bit-shifting (Neil Horman) [1383526]
-- [netdrv] fm10k: whitespace cleanups (Neil Horman) [1383526]
-- [netdrv] fm10k: do not inline fm10k_iov_select_vid() (Neil Horman) [1383526]
-- [netdrv] fm10k: Cleanup exception handling for mailbox interrupt (Neil Horman) [1383526]
-- [netdrv] fm10k: Cleanup MSI-X interrupts in case of failure (Neil Horman) [1383526]
-- [netdrv] fm10k: conditionally compile DCB and DebugFS support (Neil Horman) [1383526]
-- [netdrv] fm10k: bump driver version (Neil Horman) [1383526]
-- [netdrv] fm10k: consistently refer to VLANs and VLAN IDs (Neil Horman) [1383526]
-- [netdrv] fm10k: remove namespace pollution of fm10k_iov_msg_data_pf (Neil Horman) [1383526]
-- [netdrv] fm10k: remove unnecessary else block from if statements with return (Neil Horman) [1383526]
-- [netdrv] fm10k: do not use CamelCase (Neil Horman) [1383526]
-- [netdrv] fm10k: use ether_addr_copy to copy MAC address (Neil Horman) [1383526]
-- [netdrv] fm10k: TRIVIAL cleanup order at top of fm10k_xmit_frame (Neil Horman) [1383526]
-- [netdrv] fm10k: TRIVIAL fix typo of hardware (Neil Horman) [1383526]
-- [netdrv] fm10k: change default Tx ITR to 25usec (Neil Horman) [1383526]
-- [netdrv] fm10k: use macro for default Tx and Rx ITR values (Neil Horman) [1383526]
-- [netdrv] fm10k: Update adaptive ITR algorithm (Neil Horman) [1383526]
-- [netdrv] fm10k: introduce ITR_IS_ADAPTIVE macro (Neil Horman) [1383526]
-- [netdrv] fm10k: Add support for ITR scaling based on PCIe link speed (Neil Horman) [1383526]
-- [netdrv] fm10k: rename mbx_tx_oversized statistic to mbx_tx_dropped (Neil Horman) [1383526]
-- [netdrv] fm10k: add statistics for actual DWORD count of mbmem mailbox (Neil Horman) [1383526]
-- [netdrv] fm10k: explicitly typecast vlan values to u16 (Neil Horman) [1383526]
-- [netdrv] fm10k: Correct typecast in fm10k_update_xc_addr_pf (Neil Horman) [1383526]
-- [netdrv] fm10k: reinitialize queuing scheme after calling init_hw (Neil Horman) [1383526]
-- [netdrv] fm10k: always check init_hw for errors (Neil Horman) [1383526]
-- [netdrv] fm10k: reset max_queues on init_hw_vf failure (Neil Horman) [1383526]
-- [netdrv] fm10k: set netdev features in one location (Neil Horman) [1383526]
-- [netdrv] fm10k: use napi_schedule_irqoff() (Neil Horman) [1383526]
-- [netdrv] fm10k: Fix handling of NAPI budget when multiple queues are enabled per vector (Neil Horman) [1383526]
-- [netdrv] fm10k: Correct MTU for jumbo frames (Neil Horman) [1383526]
-- [netdrv] fm10k: do not assume VF always has 1 queue (Neil Horman) [1383526]
-- [netdrv] fm10k: fix memory leak (Neil Horman) [1383526]
-
-* Tue Jan 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-540.el7]
-- [thermal] powerclamp: add back module device table (Steve Best) [1410139]
-- [cpufreq] intel_pstate: Fix code ordering in intel_pstate_set_policy() (Prarit Bhargava) [1398072]
-- [x86] kvm: x86: make lapic hrtimer pinned (Luiz Capitulino) [1392593]
-- [kernel] sched/nohz: Fix affine unpinned timers mess (Luiz Capitulino) [1392593]
-- [kernel] nohz: Affine unpinned timers to housekeepers (Luiz Capitulino) [1392593]
-- [kernel] tick-sched: add housekeeping_mask cpumask (Luiz Capitulino) [1392593]
-- [kernel] kmod: use system_unbound_wq instead of khelper (Luiz Capitulino) [1395860]
-- [kernel] tracing/uprobes: Pass 'is_return' to traceprobe_parse_probe_arg() (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/uprobes: Add @+file_offset fetch method (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] uprobes: Allocate ->utask before handler_chain() for tracing handlers (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/uprobes: Add support for full argument access methods (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Implement 'memory' fetch method for uprobes (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Add fetch{, _size} member into deref fetch method (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Move 'symbol' fetch method to kprobes (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Implement 'stack' fetch method for uprobes (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Split [ku]probes_fetch_type_table (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Move fetch function helpers to trace_probe.h (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Fix basic print type functions (Jiri Olsa) [1374759 1376533 1385781]
-- [tools] perf probe: Move dwarf specific functions to dwarf-aux.c (Jiri Olsa) [1374759 1376533 1385781]
-- [tools] perf uprobe: Skip prologue if program compiled without optimization (Jiri Olsa) [1374759 1376533 1385781]
-- [tools] perf probe: Add helper function to check if probe with variable (Jiri Olsa) [1374759 1376533 1385781]
-
-* Mon Jan 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-539.el7]
-- [tools] perf evsel: Do not access outside hw cache name arrays (Jiri Olsa) [1387909]
-- [tools] tools lib: Reinstate strlcpy() header guard with __UCLIBC__ (Jiri Olsa) [1387909]
-- [tools] perf unwind: Use addr_location::addr instead of ip for entries (Jiri Olsa) [1387909]
-- [tools] perf intel-pt: Fix occasional decoding errors when tracing system-wide (Jiri Olsa) [1387909]
-- [tools] perf probe: Release resources on error when handling exit paths (Jiri Olsa) [1387909]
-- [tools] perf probe: Check for dup and fdopen failures (Jiri Olsa) [1387909]
-- [tools] perf symbols: Fix annotation of objects with debuginfo files (Jiri Olsa) [1387909]
-- [tools] perf script: Don't disable use_callchain if input is pipe (Jiri Olsa) [1387909]
-- [tools] perf script: Show proper message when failed list scripts (Jiri Olsa) [1387909]
-- [tools] perf jitdump: Add the right header to get the major()/minor() definitions (Jiri Olsa) [1387909]
-- [tools] perf ppc64le: Fix build failure when libelf is not present (Jiri Olsa) [1376534 1387909]
-- [tools] perf intel-pt: Fix ip compression (Jiri Olsa) [1387909]
-- [tools] perf probe ppc64le: Fix probe location when using DWARF (Jiri Olsa) [1376534 1387909]
-- [tools] perf probe: Add function to post process kernel trace events (Jiri Olsa) [1376534 1387909]
-- [tools] perf probe: Support signedness casting (Jiri Olsa) [1387909]
-- [tools] perf stat: Avoid skew when reading events (Jiri Olsa) [1387909]
-- [tools] perf probe: Fix module name matching (Jiri Olsa) [1387909]
-- [tools] perf probe: Adjust map->reloc offset when finding kernel symbol from map (Jiri Olsa) [1387909]
-- [tools] perf hists: Trim libtraceevent trace_seq buffers (Jiri Olsa) [1387909]
-- [tools] perf tests: objdump output can contain multi byte chunks (Jiri Olsa) [1387909]
-- [tools] perf record: Add --sample-cpu option (Jiri Olsa) [1387909]
-- [tools] perf hists: Introduce output_resort_cb method (Jiri Olsa) [1387909]
-- [tools] perf tools: Move config/Makefile into Makefile.config (Jiri Olsa) [1387909]
-- [tools] perf tests: Add test for bitmap_scnprintf function (Jiri Olsa) [1387909]
-- [tools] tools lib: Add bitmap_and function (Jiri Olsa) [1387909]
-- [tools] tools lib: Add bitmap_scnprintf function (Jiri Olsa) [1387909]
-- [tools] tools lib: Add bitmap_alloc function (Jiri Olsa) [1387909]
-- [tools] tools lib traceevent: Ignore generated library files (Jiri Olsa) [1387909]
-- [tools] perf tools: Fix build failure on perl script context (Jiri Olsa) [1387909]
-- [tools] perf annotate: Plug filename string leak (Jiri Olsa) [1387909]
-- [tools] perf annotate: Introduce strerror for handling symbol__disassemble() errors (Jiri Olsa) [1387909]
-- [tools] perf annotate: Rename symbol__annotate() to symbol__disassemble() (Jiri Olsa) [1387909]
-- [tools] perf target: str_error_r() always returns the buffer it receives (Jiri Olsa) [1387909]
-- [tools] perf annotate: Use pipe + fork instead of popen (Jiri Olsa) [1387909]
-- [tools] perf evsel: Introduce constructor for cycles event (Jiri Olsa) [1387909]
-- [tools] tools lib api: Add str_error_c to libapi (Jiri Olsa) [1387909]
-- [tools] perf s390: Fix 'start' address of module's map (Jiri Olsa) [1387909]
-- [tools] revert "perf tools: event.h needs asm/perf_regs.h" (Jiri Olsa) [1387909]
-- [tools] tools build: Fix objtool build with ARCH=x86_64 (Jiri Olsa) [1387909]
-- [tools] tools build: Add HOSTARCH Makefile variable (Jiri Olsa) [1387909]
-- [tools] perf tests kmod-path: Fix build on ubuntu:16.04-x-armhf (Jiri Olsa) [1387909]
-- [tools] perf tools: Add AVX-512 instructions to the new instructions test (Jiri Olsa) [1387909]
-- [tools] perf tools: Add AVX-512 support to the instruction decoder used by Intel PT (Jiri Olsa) [1387909]
-- [tools] x86/insn: perf tools: Fix vcvtph2ps instruction decoding (Jiri Olsa) [1387909]
-- [tools] perf tests: Add is_printable_array test (Jiri Olsa) [1387909]
-- [tools] perf tools: Make is_printable_array global (Jiri Olsa) [1387909]
-- [tools] perf script python: Fix string vs byte array resolving (Jiri Olsa) [1387909]
-- [tools] perf probe: Warn unmatched function filter correctly (Jiri Olsa) [1387909]
-- [tools] perf cpu_map: Add more helpers (Jiri Olsa) [1387909]
-- [tools] perf stat: Balance opening and reading events (Jiri Olsa) [1387909]
-- [tools] Copy linux/{hash, poison}.h and check for drift (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove include/linux/list.h from perf's MANIFEST (Jiri Olsa) [1387909]
-- [tools] Copy the bitops files accessed from the kernel and check for drift (Jiri Olsa) [1387909]
-- [tools] remove: kernel unistd*h files from perf's MANIFEST, not used (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove tools/perf/util/include/linux/const.h (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove tools/perf/util/include/asm/byteorder.h (Jiri Olsa) [1387909]
-- [tools] perf tools: Add missing linux/compiler.h include to perf-sys.h (Jiri Olsa) [1387909]
-- [tools] perf jit: Remove some no-op error handling (Jiri Olsa) [1387909]
-- [tools] perf jit: Add missing curly braces (Jiri Olsa) [1387909]
-- [tools] perf record: Add --tail-synthesize option (Jiri Olsa) [1387909]
-- [tools] perf session: Don't warn about out of order event if write_backward is used (Jiri Olsa) [1387909]
-- [tools] perf tools: Enable overwrite settings (Jiri Olsa) [1387909]
-- [tools] perf evlist: Make {pause, resume} internal helpers (Jiri Olsa) [1387909]
-- [tools] perf record: Read from overwritable ring buffer (Jiri Olsa) [1387909]
-- [tools] perf evlist: Setup backward mmap state machine (Jiri Olsa) [1387909]
-- [tools] perf evlist: Drop evlist->backward (Jiri Olsa) [1387909]
-- [tools] perf evlist: Map backward events to backward_mmap (Jiri Olsa) [1387909]
-- [tools] perf evlist: Introduce backward_mmap array for evlist (Jiri Olsa) [1387909]
-- [tools] perf evlist: Extract common code in mmap failure processing (Jiri Olsa) [1387909]
-- [tools] perf evlist: Record mmap cookie into fdarray private field (Jiri Olsa) [1387909]
-- [tools] perf record: Decouple record__mmap_read() and evlist (Jiri Olsa) [1387909]
-- [tools] perf evlist: Update mmap related APIs and helpers (Jiri Olsa) [1387909]
-- [tools] tools lib fd array: Allow associating a pointer cookie with each entry (Jiri Olsa) [1387909]
-- [tools] Simplify BITS_PER_LONG define (Jiri Olsa) [1387909]
-- [tools] perf evlist: Drop redundant evsel->overwrite indicator (Jiri Olsa) [1387909]
-- [tools] tools lib api fs: Use base 0 in filename__read_ull (Jiri Olsa) [1387909]
-- [tools] perf tools: Bail out at "--sort dcacheline" and cacheline_size not known (Jiri Olsa) [1387909]
-- [tools] perf tools: Just pr_debug() about not being able to read cacheline_size (Jiri Olsa) [1387909]
-- [tools] Make "__always_inline" just "inline" on Android (Jiri Olsa) [1387909]
-- [tools] perf tools: Do not provide dup sched_getcpu() prototype on Android (Jiri Olsa) [1387909]
-- [tools] tools lib traceevent: Add correct header for ipv6 definitions (Jiri Olsa) [1387909]
-- [tools] perf build: Add sdt feature detection (Jiri Olsa) [1387909]
-- [tools] perf probe: Support a special SDT probe format (Jiri Olsa) [1387909]
-- [tools] perf probe: Support @BUILDID or @FILE suffix for SDT events (Jiri Olsa) [1387909]
-- [tools] perf list: Show SDT and pre-cached events (Jiri Olsa) [1387909]
-- [tools] perf probe: Search SDT/cached event from all probe caches (Jiri Olsa) [1387909]
-- [tools] perf probe: Allow wildcard for cached events (Jiri Olsa) [1387909]
-- [tools] perf probe-cache: Add for_each_probe_cache_entry() wrapper (Jiri Olsa) [1387909]
-- [tools] perf probe: Make --list show only available cached events (Jiri Olsa) [1387909]
-- [tools] perf probe: Accept sdt and cached event name (Jiri Olsa) [1387909]
-- [tools] perf probe: Fix to show correct error message for $vars and $params (Jiri Olsa) [1387909]
-- [tools] perf event parser: Add const qualifier to evt_name and sys_name (Jiri Olsa) [1387909]
-- [tools] Fix up BITS_PER_LONG setting (Jiri Olsa) [1387909]
-- [tools] Work around BITS_PER_LONG related build failure in objtool (Jiri Olsa) [1387909]
-- [tools] tools lib traceevent: Add filter on task CPU id (Jiri Olsa) [1387909]
-- [tools] perf python: Add tracepoint example (Jiri Olsa) [1387909]
-- [tools] perf python: Add support to resolve tracepoint fields (Jiri Olsa) [1387909]
-- [tools] perf python: Add struct evsel into struct pyrf_event (Jiri Olsa) [1387909]
-- [tools] perf python: Add perf.tracepoint method (Jiri Olsa) [1387909]
-- [tools] perf python: Put perf.event objects into dictionary (Jiri Olsa) [1387909]
-- [tools] perf python: Fix pyrf_evlist__read_on_cpu event consuming (Jiri Olsa) [1387909]
-- [tools] perf python: Init perf_event_attr::size in perf.evsel constructor (Jiri Olsa) [1387909]
-- [tools] perf tools: Introduce trace_event__tp_format_id() (Jiri Olsa) [1387909]
-- [tools] perf evlist: Make event2evsel public (Jiri Olsa) [1387909]
-- [tools] perf symbols: Add Rust demangling (Jiri Olsa) [1387909]
-- [tools] perf tools: Add feature detection for gelf_getnote() (Jiri Olsa) [1387909]
-- [tools] perf intel-pt-decoder: Avoid checking code drift on busibox's diff (Jiri Olsa) [1387909]
-- [tools] perf tools: Don't add kernel directories to the header search path (Jiri Olsa) [1387909]
-- [tools] perf tools: Add the tools/ stringify copy to the MANIFEST (Jiri Olsa) [1387909]
-- [tools] Copy the bitsperlong.h files from the kernel (Jiri Olsa) [1387909]
-- [tools] perf script python: Silence -Werror=maybe-uninitialized on gcc 5.3.0 (Jiri Olsa) [1387909]
-- [tools] perf symbols: Provide a GElf_Nhdr typedef (Jiri Olsa) [1387909]
-- [tools] perf trace beauty seccomp: Remove seccomp.h include (Jiri Olsa) [1387909]
-- [tools] perf trace beauty futex_op: Add missing defines for older systems (Jiri Olsa) [1387909]
-- [tools] perf tools: Fallback to reading sysfs to get cacheline size (Jiri Olsa) [1387909]
-- [tools] Copy the header files needed by perf tools (Jiri Olsa) [1387909]
-- [tools] perf trace: Remove unused sys/ptrace.h include (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove unneeded magic.h include from util.h (Jiri Olsa) [1387909]
-- [tools] perf tools: Introduce weak alternative to sched_getcpu() (Jiri Olsa) [1387909]
-- [tools] Copy uapi/linux/hw_breakpoint.h from the kernel (Jiri Olsa) [1387909]
-- [tools] Copy uapi/asm/perf_regs.h from the kernel (Jiri Olsa) [1387909]
-- [tools] tools lib bpf: Copy bpf.h and bpf_common.h from the kernel (Jiri Olsa) [1387909]
-- [tools] Add copy of perf_event.h to tools/include/linux/ (Jiri Olsa) [1387909]
-- [tools] perf tools: event.h needs asm/perf_regs.h (Jiri Olsa) [1387909]
-- [tools] perf bench futex: Add missing compiler.h header (Jiri Olsa) [1387909]
-- [tools] tools lib subcmd: Use str_error_r() (Jiri Olsa) [1387909]
-- [tools] tools lib: Guard the strlcpy() header with __GLIBC__ (Jiri Olsa) [1387909]
-- [tools] tools lib api fs: Use str_error_r() (Jiri Olsa) [1387909]
-- [tools] tools lib traceevent: Use str_error_r() (Jiri Olsa) [1387909]
-- [tools] perf tools: Uninline scnprintf() and vscnprint() (Jiri Olsa) [1387909]
-- [tools] perf evsel: Uninline the is_function_event method (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove needless includes from cache.h (Jiri Olsa) [1387909]
-- [tools] perf llvm: Use realpath to canonicalize paths (Jiri Olsa) [1387909]
-- [tools] perf tools: Add missing header to color.c (Jiri Olsa) [1387909]
-- [tools] perf tests x86 rdpmc: Add missing headers (Jiri Olsa) [1387909]
-- [tools] perf test fdarray: Add missing poll.h header (Jiri Olsa) [1387909]
-- [tools] perf tests cpumap: Add missing headers (Jiri Olsa) [1387909]
-- [tools] perf quote: Disentangle headers (Jiri Olsa) [1387909]
-- [tools] perf strbuf: Add missing headers (Jiri Olsa) [1387909]
-- [tools] perf tools: Move syscall number fallbacks from perf-sys.h to tools/arch/x86/include/asm/ (Jiri Olsa) [1387909]
-- [tools] perf bench: Disentangle headers (Jiri Olsa) [1387909]
-- [tools] perf tests openat-syscall-tp-fields: Add some conditional defines (Jiri Olsa) [1387909]
-- [tools] perf trace: Add conditional define for AT_FDCWD (Jiri Olsa) [1387909]
-- [tools] perf tests: Add missing pthread.h include for CPU_*() macros (Jiri Olsa) [1387909]
-- [tools] perf bench: Add missing pthread.h include for CPU_*() macros (Jiri Olsa) [1387909]
-- [tools] Introduce str_error_r() (Jiri Olsa) [1387909]
-- [tools] perf trace beauty open_flags: Add more conditional defines (Jiri Olsa) [1387909]
-- [tools] perf trace beauty flock: Add more conditional defines (Jiri Olsa) [1387909]
-- [tools] perf trace beauty mmap: Add more conditional defines (Jiri Olsa) [1387909]
-- [tools] perf trace beauty open_flags: Add missing headers (Jiri Olsa) [1387909]
-- [tools] perf trace beauty flock: Add missing fcntl.h include (Jiri Olsa) [1387909]
-- [tools] perf trace beauty msg_flags: Remove MSG_TRYHARD (Jiri Olsa) [1387909]
-- [tools] perf report: Introduce --stdio-color to setup the color output mode selection (Jiri Olsa) [1387909]
-- [tools] perf annotate: Introduce --stdio-color to setup the color output mode selection (Jiri Olsa) [1387909]
-- [tools] perf ui stdio: Add way to setup the color output mode selection (Jiri Olsa) [1387909]
-- [tools] perf hists: Introduce hists__add_entry_ops function (Jiri Olsa) [1387909]
-- [tools] perf hists: Introduce hist_entry_ops (Jiri Olsa) [1387909]
-- [tools] perf hists: Introduce hist_entry__init function (Jiri Olsa) [1387909]
-- [tools] perf tools: Update android build documentation (Jiri Olsa) [1387909]
-- [tools] tools lib subcmd: Respect WERROR=0 for build (Jiri Olsa) [1387909]
-- [tools] tools lib api: Respect WERROR=0 for build (Jiri Olsa) [1387909]
-- [tools] perf unwind: Call unwind__prepare_access for forked thread (Jiri Olsa) [1387909]
-- [tools] perf unwind: Add initialized arg into unwind__prepare_access (Jiri Olsa) [1387909]
-- [tools] perf tests: Fix hist accumulation test (Jiri Olsa) [1387909]
-- [tools] perf header: Transform nodes string info to struct (Jiri Olsa) [1387909]
-- [tools] perf buildid-cache: Scan and import user SDT events to probe cache (Jiri Olsa) [1387909]
-- [tools] perf probe: Add group name support (Jiri Olsa) [1387909]
-- [tools] perf sdt: ELF support for SDT (Jiri Olsa) [1387909]
-- [tools] perf build: Add feature detection for libelf's elf_getshdrstrndx() (Jiri Olsa) [1387909]
-- [tools] perf probe: Remove caches when --cache is given (Jiri Olsa) [1387909]
-- [tools] perf probe: Show all cached probes (Jiri Olsa) [1387909]
-- [tools] perf probe: Use cache entry if possible (Jiri Olsa) [1387909]
-- [tools] perf tools: Change cpu_map__fprintf output (Jiri Olsa) [1387909]
-- [tools] perf test: Add -F/--dont-fork option (Jiri Olsa) [1387909]
-- [tools] perf tests: Fix thread map test for -F option (Jiri Olsa) [1387909]
-- [tools] perf tools: Allow to reset open files counter (Jiri Olsa) [1387909]
-- [tools] perf trace beauty eventfd: No need to include eventfd.h (Jiri Olsa) [1387909]
-- [tools] perf trace beauty sched_policy: Define SCHED_RESET_ON_FORK for older systems (Jiri Olsa) [1387909]
-- [tools] perf annotate: Add number of samples to the header (Jiri Olsa) [1387909]
-- [tools] perf annotate: Simplify header dotted line sizing (Jiri Olsa) [1387909]
-- [tools] perf evsel: Utility function to fetch arch (Jiri Olsa) [1387909]
-- [tools] perf tools: Add documentation for perf.data on disk format (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Generate fork and exit events to CTF output (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Add '--all' option for 'perf data convert' (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Generate comm event to CTF output (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Prepare collect non-sample events (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Add 'all' option (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Pass convert options through opts structure (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Add value_set_string() helper (Jiri Olsa) [1387909]
-- [tools] perf symbols: Use proper dso name for is_regular_file (Jiri Olsa) [1387909]
-- [tools] perf record: Prepare picking perf_event_mmap_page from multiple evlists (Jiri Olsa) [1387909]
-- [tools] perf record: Prepare reading from multiple evlists in record__mmap_read_all() (Jiri Olsa) [1387909]
-- [tools] perf record: Move mmap setup block to separate function (Jiri Olsa) [1387909]
-- [tools] perf data convert: Include config.h header (Jiri Olsa) [1387909]
-- [tools] perf build: Add libbabeltrace to build-test (Jiri Olsa) [1387909]
-- [tools] perf tools: Add more toolchain triplets (Jiri Olsa) [1387909]
-- [tools] perf annotate: Generalize handling of 'ret' instructions (Jiri Olsa) [1387909]
-- [tools] perf tools: Update makefile message for installing slang devel package (Jiri Olsa) [1387909]
-- [tools] perf annotate: Remove unused hist_entry__annotate function (Jiri Olsa) [1387909]
-- [tools] perf config: Reimplement show_config() using config_set__for_each (Jiri Olsa) [1387909]
-- [tools] perf config: Introduce new init() and exit() (Jiri Olsa) [1387909]
-- [tools] perf script: Add callindent option (Jiri Olsa) [1387909]
-- [tools] perf auxtrace: Add option to feed branches to the thread stack (Jiri Olsa) [1387909]
-- [tools] perf script: Print sample flags more nicely (Jiri Olsa) [1387909]
-- [tools] perf intlist: Rename for_each() macros to for_each_entry() (Jiri Olsa) [1387909]
-- [tools] perf rb_resort: Rename for_each() macros to for_each_entry() (Jiri Olsa) [1387909]
-- [tools] perf tools: Rename strlist_for_each() macros to for_each_entry() (Jiri Olsa) [1387909]
-- [tools] perf evlist: Rename for_each() macros to for_each_entry() (Jiri Olsa) [1387909]
-- [tools] perf unwind: Fix wrongly used regs for aarch64 unwind (Jiri Olsa) [1387909]
-- [tools] perf unwind: Fix wrongly used regs for x86_32 unwind (Jiri Olsa) [1387909]
-- [tools] perf unwind: Change macro names of perf register (Jiri Olsa) [1387909]
-- [tools] perf tools: Find right DSO taking into account if binary is 32 or 64-bit (Jiri Olsa) [1387909]
-- [tools] perf config: Move config declarations from util/cache.h to util/config.h (Jiri Olsa) [1387909]
-- [tools] perf tools: Let python use correct gcc for build_ext (Jiri Olsa) [1387909]
-- [tools] perf machine: Destructors should accept NULL (Jiri Olsa) [1387909]
-- [tools] perf tests time-to-tsc: No need to disable an event before deleting it (Jiri Olsa) [1387909]
-- [tools] perf session: Destructors should accept NULL (Jiri Olsa) [1387909]
-- [tools] perf evlist: Destructors should accept NULL (Jiri Olsa) [1387909]
-- [tools] perf hists: Enlarge pid sort entry size (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Introduce init() (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Introduce perf_evsel_browser constructor (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Move horizontal scroll init to new() (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Introduce struct hist_browser title callback (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Make (new|delete|run) public (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Move hist_browser into header file (Jiri Olsa) [1387909]
-- [tools] perf script stackcollapse: Remove reference to the perl interpreter (Jiri Olsa) [1387909]
-- [tools] perf script: Add stackcollapse.py script (Jiri Olsa) [1387909]
-- [tools] perf evsel: Fix write_backwards fallback (Jiri Olsa) [1387909]
-- [tools] perf record: Add --dry-run option to check cmdline options (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove --perf-dir and --work-dir (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove some unused functions (Jiri Olsa) [1387909]
-- [tools] perf hists: Rename __hists__add_entry to hists__add_entry (Jiri Olsa) [1387909]
-- [tools] perf script: Fix documentation of '-f' when it should be '-F' (Jiri Olsa) [1387909]
-- [tools] perf probe: Add --cache option to cache the probe definitions (Jiri Olsa) [1387909]
-- [tools] perf probe: Introduce perf_cache interfaces (Jiri Olsa) [1387909]
-- [tools] perf hists: Replace perf_evsel arg perf_hpp_fmt's width callback (Jiri Olsa) [1387909]
-- [tools] perf hists: Replace perf_evsel arg perf_hpp_fmt's header callback (Jiri Olsa) [1387909]
-- [tools] perf stdio: Add use_callchain parameter to hists__fprintf (Jiri Olsa) [1387909]
-- [tools] perf stdio: Do not pass hists in hist_entry__fprintf (Jiri Olsa) [1387909]
-- [tools] perf stdio: Separate standard headers output (Jiri Olsa) [1387909]
-- [tools] perf stdio: Separate hierarchy headers output (Jiri Olsa) [1387909]
-- [tools] perf stdio: Separate headers output (Jiri Olsa) [1387909]
-- [tools] perf tui: Separate hierarchy and standard headers output (Jiri Olsa) [1387909]
-- [tools] perf tools: Fix Data Object sort entry width index (Jiri Olsa) [1387909]
-- [tools] perf mem: Add --ldlat option (Jiri Olsa) [1387909]
-- [tools] perf unwind: Fix compile error for static cross build (Jiri Olsa) [1387909]
-- [tools] perf probe: Uncomment and export synthesize_perf_probe_point() (Jiri Olsa) [1387909]
-- [tools] perf probe: Add perf_probe_event__copy() (Jiri Olsa) [1387909]
-- [tools] perf buildid: Rename and export build_id_cache__cachedir() (Jiri Olsa) [1387909]
-- [tools] perf probe: Fix to add NULL check for strndup (Jiri Olsa) [1387909]
-- [tools] perf tools: Fix rm_rf() to handle non-regular files correctly (Jiri Olsa) [1387909]
-- [tools] perf config: Handle NULL at perf_config_set__delete() (Jiri Olsa) [1387909]
-- [tools] perf callchain: Support aarch64 cross-platform (Jiri Olsa) [1387909]
-- [tools] perf callchain: Support x86 target platform (Jiri Olsa) [1387909]
-- [tools] perf unwind: Introduce flag to separate local/remote unwind compilation (Jiri Olsa) [1387909]
-- [tools] perf unwind: Change fixed name of libunwind__arch_reg_id to macro (Jiri Olsa) [1387909]
-- [tools] perf unwind: Check the target platform before assigning unwind methods (Jiri Olsa) [1387909]
-- [tools] perf tools: Export normalize_arch() function (Jiri Olsa) [1387909]
-- [tools] perf tools: Extract common API out of unwind-libunwind-local.c (Jiri Olsa) [1387909]
-- [tools] perf unwind: Rename unwind-libunwind.c to unwind-libunwind-local.c (Jiri Olsa) [1387909]
-- [tools] perf unwind: Separate local/remote libunwind config (Jiri Olsa) [1387909]
-- [tools] perf unwind: Don't mix LIBUNWIND_LIBS into LIBUNWIND_LDFLAGS (Jiri Olsa) [1387909]
-- [tools] perf unwind: Move unwind__prepare_access from thread_new into thread__insert_map (Jiri Olsa) [1387909]
-- [tools] perf unwind: Introduce 'struct unwind_libunwind_ops' for local unwind (Jiri Olsa) [1387909]
-- [tools] perf unwind: Decouple thread->address_space on libunwind (Jiri Olsa) [1387909]
-- [tools] perf unwind: Use LIBUNWIND_DIR for remote libunwind feature check (Jiri Olsa) [1387909]
-- [tools] perf config: Use new perf_config_set__init() to initialize config set (Jiri Olsa) [1387909]
-- [tools] perf config: Constructor should free its allocated memory when failing (Jiri Olsa) [1387909]
-- [tools] perf tools: Fix crash in build_id_cache__kallsyms_path() (Jiri Olsa) [1387909]
-- [tools] perf config: Handle the error when config set is NULL at collect_config() (Jiri Olsa) [1387909]
-- [tools] perf config: Fix abnormal termination at perf_parse_file() (Jiri Olsa) [1387909]
-- [tools] perf stat: Add missing aggregation headers for --metric-only CSV (Jiri Olsa) [1387909]
-- [tools] perf stat: Print topology/time headers with --metric-only (Jiri Olsa) [1387909]
-- [tools] perf stat: Add computation of TopDown formulas (Jiri Olsa) [1387909]
-- [tools] perf stat: Basic support for TopDown in perf stat (Jiri Olsa) [1387909]
-- [tools] perf test: Ignore .scale and other special files (Jiri Olsa) [1387909]
-- [tools] perf script: Show call graphs when 1st event doesn't have it but some other has (Jiri Olsa) [1387909]
-- [tools] tools lib api: Respect CROSS_COMPILE for the linker (Jiri Olsa) [1387909]
-- [tools] perf evlist: Fix alloc_mmap() failure path (Jiri Olsa) [1387909]
-- [tools] perf evsel: Provide way to extract integer value from format_field (Jiri Olsa) [1387909]
-- [tools] perf: Handle -EOPNOTSUPP for sampling events (Jiri Olsa) [1387909]
-- [tools] perf buildid-cache: Use path/to/bin/buildid/elf instead of path/to/bin/buildid (Jiri Olsa) [1387909]
-- [tools] perf symbols: Cleanup the code flow of dso__find_kallsyms (Jiri Olsa) [1387909]
-- [tools] perf symbols: Introduce filename__readable to check readability (Jiri Olsa) [1387909]
-- [tools] perf tools: Add arch/*/include/generated/ to .gitignore (Jiri Olsa) [1387909]
-- [tools] Pass arg to fdarray__filter's call back function (Jiri Olsa) [1387909]
-- [tools] perf evlist: Choose correct reading direction according to evlist->backward (Jiri Olsa) [1387909]
-- [tools] perf evlist: Check 'base' pointer before checking refcnt when put a mmap (Jiri Olsa) [1387909]
-- [tools] perf evlist: Don't poll and mmap overwritable events (Jiri Olsa) [1387909]
-- [tools] perf record: Robustify perf_event__synth_time_conv() (Jiri Olsa) [1387909]
-- [tools] perf thread: Adopt get_main_thread from db-export.c (Jiri Olsa) [1387909]
-- [kernel] perf/core: Limit matching exclusive events to one PMU (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Make it an exclusive PMU (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Make sure debug store is valid (Jiri Olsa) [1387909]
-- [x86] perf/x86/amd: Make HW_CACHE_REFERENCES and HW_CACHE_MISSES measure L2 (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/pt: Do validate the size of a kernel address filter (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/pt: Fix kernel address filter's offset validation (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/pt: Fix an off-by-one in address filter configuration (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel: Don't disable "intel_bts" around "intel" event batching (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel: Fix PEBSv3 record drain (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Kill a silly warning (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Fix BTS PMI detection (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Fix confused ordering of PMU callbacks (Jiri Olsa) [1387909]
-- [x86] perf/x86/amd/uncore: Prevent use after free (Jiri Olsa) [1387909]
-- [kernel] perf/core: Remove WARN from perf_event_read() (Jiri Olsa) [1387909]
-- [kernel] perf/core: Use this_cpu_ptr() when stopping AUX events (Jiri Olsa) [1387909]
-- [kernel] perf/core: Check return value of the perf_event_read() IPI (Jiri Olsa) [1387909]
-- [kernel] perf/core: Enable mapping of the stop filters (Jiri Olsa) [1387909]
-- [kernel] perf/core: Update filters only on executable mmap (Jiri Olsa) [1387909]
-- [kernel] perf/core: Fix file name handling for start/stop filters (Jiri Olsa) [1387909]
-- [kernel] perf/core: Fix event_function_local() (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/uncore: Fix uncore num_counters (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/uncore: Remove redundant pci_get_drvdata() (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel: Use Intel family macros for core perf events (Jiri Olsa) [1387909]
-- [kernel] perf/core: Fix crash due to account/unaccount_sb_event() inconsistency (Jiri Olsa) [1387909]
-- [kernel] perf/abi: Change the errno for sampling event not supported in hardware (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/uncore: Locate specific box by checking full device info (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel: Add 'static' keyword to locally used arrays (Jiri Olsa) [1387909]
-- [kernel] perf/core: Fix implicitly enable dynamic interrupt throttle (Jiri Olsa) [1387909]
-- [kernel] perf/core: Rename the perf_event_aux*() APIs to perf_event_sb*(), to separate them from AUX ring-buffer records (Jiri Olsa) [1387909]
-- [kernel] perf/core: Optimize side-band event delivery (Jiri Olsa) [1387909]
-
-* Mon Jan 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-538.el7]
-- [tty] console: Move userspace I/O out of console_lock to fix lockdep warning (Waiman Long) [1371886]
-- [net] dctcp: update cwnd on congestion event (Florian Westphal) [1386923]
-- [net] packet: fix race condition in packet_set_ring (Hangbin Liu) [1401853] {CVE-2016-8655}
-- [net] ipv4: allow local fragmentation in ip_finish_output_gso() (Lance Richardson) [1387662]
-- [i2c] i2c / acpi: Assign IRQ for devices that have GpioInt automatically (David Arcari) [1383814]
-- [i2c] i2c / acpi: Use 0 to indicate that device does not have interrupt assigned (David Arcari) [1383814]
-- [gpio] gpio / acpi: Add support for retrieving GpioInt resources from a device (David Arcari) [1383814]
-- [gpio] gpio / acpi: Add support for _DSD device properties (David Arcari) [1383814]
-- [pinctrl] intel: sunrisepoint: Add Intel Sunrisepoint-H support (David Arcari) [1383814]
-- [pinctrl] intel: Add Intel Sunrisepoint pin controller and GPIO support (David Arcari) [1383814]
-- [kernel] pm / sleep: Add macro to define common late/early system PM callbacks (David Arcari) [1383814]
-- [kernel] pinctrl: Pass all configs to driver on pin_config_set() (David Arcari) [1383814]
-- [pinctrl] pinconf: fix comparison of different types (David Arcari) [1383814]
-- [pinctrl] shut up a couple of pinctrl warnings (David Arcari) [1383814]
-- [kernel] pinctrl: rip out the direct pinconf API (David Arcari) [1383814]
-- [kernel] gpio: add IRQ chip helpers in gpiolib (David Arcari) [1383814]
-- [kernel] genirq: Provide irq_request/release_resources chip callbacks (David Arcari) [1383814]
-- [netdrv] ena: change the return type of ena_set_push_mode() to be void (Vitaly Kuznetsov) [1357491]
-- [netdrv] ena: Fix error return code in ena_device_init() (Vitaly Kuznetsov) [1357491]
-- [netdrv] ena: Remove unnecessary pci_set_drvdata() (Vitaly Kuznetsov) [1357491]
-- [netdrv] ena: Add a driver for Amazon Elastic Network Adapters (Vitaly Kuznetsov) [1357491]
-- [netdrv] ibmveth: calculate gso_segs for large packets (Gustavo Duarte) [1361958]
-- [netdrv] ibmveth: set correct gso_size and gso_type (Gustavo Duarte) [1361958]
-- [scsi] cxlflash: Fix crash in cxlflash_restore_luntable() (Gustavo Duarte) [1400524]
-- [scsi] cxlflash: Improve context_reset() logic (Gustavo Duarte) [1400524]
-- [scsi] cxlflash: Avoid command room violation (Gustavo Duarte) [1400524]
-- [s390] zfcp: close window with unblocked rport during rport gone (Hendrik Brueckner) [1391440]
-- [s390] zfcp: fix ELS/GS request&response length for hardware data router (Hendrik Brueckner) [1391435]
-- [s390] zfcp: fix fc_host port_type with NPIV (Hendrik Brueckner) [1391436]
-- [s390] scsi: zfcp: spin_lock_irqsave() is not nestable (Hendrik Brueckner) [1391534]
-- [s390] zfcp: trace full payload of all SAN records (req, resp, iels) (Hendrik Brueckner) [1391534]
-- [s390] zfcp: fix payload trace length for SAN request&response (Hendrik Brueckner) [1391534]
-- [s390] zfcp: fix D_ID field with actual value on tracing SAN responses (Hendrik Brueckner) [1391534]
-- [s390] zfcp: restore tracing of handle for port and LUN with HBA records (Hendrik Brueckner) [1391534]
-- [s390] zfcp: trace on request for open and close of WKA port (Hendrik Brueckner) [1391534]
-- [s390] zfcp: restore: Dont use 0 to indicate invalid LUN in rec trace (Hendrik Brueckner) [1391534]
-- [s390] zfcp: retain trace level for SCSI and HBA FSF response records (Hendrik Brueckner) [1391534]
-
-* Wed Dec 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-537.el7]
-- [kernel] genirq: Add default affinity mask command line option (Clark Williams) [1336556]
-- [kernel] tick: hrtimer-broadcast: Prevent endless restarting when broadcast device is unused (Prarit Bhargava) [1393589]
-- [netdrv] ibmvnic: Start completion queue negotiation at server-provided optimum values (Steve Best) [1403396]
-- [netdrv] ibmvnic: Fix missing brackets in init_sub_crq_irqs (Steve Best) [1403396]
-- [netdrv] ibmvnic: Fix releasing of sub-CRQ IRQs in interrupt context (Steve Best) [1403396]
-- [netdrv] ibmvnic: Update MTU after device initialization (Steve Best) [1403396]
-- [netdrv] ibmvnic: Fix GFP_KERNEL allocation in interrupt context (Steve Best) [1403396]
-- [netdrv] ibmvnic: fix error return code in ibmvnic_probe() (Steve Best) [1403396]
-- [netdrv] ibmvnic: convert to use simple_open() (Steve Best) [1403396]
-- [netdrv] slip: Fix deadlock in write_wakeup (Steve Best) [1403497]
-- [netdrv] slip: fix spinlock variant (Steve Best) [1403497]
-- [netdrv] ibmvnic: Handle backing device failover and reinitialization (Steve Best) [1403692]
-- [scsi] storvsc: Use the specified target ID in device lookup (Cathy Avery) [1308632]
-- [scsi] storvsc: Install the storvsc specific timeout handler for FC devices (Cathy Avery) [1308632]
-- [scsi] storvsc: Fix typo in MODULE_PARM_DESC (Cathy Avery) [1308632]
-- [scsi] storvsc: Tighten up the interrupt path (Cathy Avery) [1308632]
-- [scsi] storvsc: Refactor the code in storvsc_channel_init() (Cathy Avery) [1308632]
-- [scsi] storvsc: Properly support Fibre Channel devices (Cathy Avery) [1308632]
-- [scsi] storvsc: Fix a bug in the layout of the hv_fc_wwn_packet (Cathy Avery) [1308632]
-- [char] random: add interrupt callback to VMBus IRQ handler (Vitaly Kuznetsov) [1391433]
-- [x86] hyperv: manually clear IO-APIC IRR bit for migrating IRQs (Vitaly Kuznetsov) [1358691]
-- [x86] kvm: nvmx: fix nested tsc scaling (Bandan Das) [1370163]
-- [x86] smp: Don't try to poke disabled/non-existent APIC (Prarit Bhargava) [1373738]
-- [x86] revert "perf/uncore: Disable uncore on kdump kernel" (Prarit Bhargava) [1373738]
-- [x86] smpboot: Init apic mapping before usage (Prarit Bhargava) [1373738]
-- [x86] Handle non enumerated CPU after physical hotplug (Prarit Bhargava) [1373738]
-- [pci] hv: Allocate physically contiguous hypercall params buffer (Cathy Avery) [1364313]
-- [pci] hv: Delete the device earlier from hbus->children for hot-remove (Cathy Avery) [1364313]
-- [pci] hv: Fix hv_pci_remove() for hot-remove (Cathy Avery) [1364313]
-- [pci] hv: Use the correct buffer size in new_pcichild_device() (Cathy Avery) [1364313]
-- [pci] hv: Handle hv_pci_generic_compl() error case (Cathy Avery) [1364313]
-- [pci] hv: Handle vmbus_sendpacket() failure in hv_compose_msi_msg() (Cathy Avery) [1364313]
-- [pci] hv: Remove the unused 'wrk' in struct hv_pcibus_device (Cathy Avery) [1364313]
-- [pci] hv: Use pci_function_description[0] in struct definitions (Cathy Avery) [1364313]
-- [pci] hv: Use zero-length array in struct pci_packet (Cathy Avery) [1364313]
-- [pci] hv: Use list_move_tail() instead of list_del() + list_add_tail() (Cathy Avery) [1364313]
-- [drm] i915/kbl: Remove preliminary_hw_support protection from KBL. (Rob Clark) [1305702]
-- [tty] serial: 8250_pci: Detach low-level driver during PCI error recovery (Steve Best) [1400506]
-- [mm] Change memory hotplug normal message to use pr_debug (Cathy Avery) [1370415]
-
-* Wed Dec 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-536.el7]
-- [vfio] pci: make an array larger (Myron Stowe) [1405700]
-- [kernel] arm/pci: Move align_resource function pointer to pci_host_bridge structure (Myron Stowe) [1405700]
-- [pci] Wait 1 second between disabling VFs and clearing NumVFs (Myron Stowe) [1405700]
-- [pci] Remove VFs in reverse order if virtfn_add() fails (Myron Stowe) [1405700]
-- [pci] Remove redundant validation of SR-IOV offset/stride registers (Myron Stowe) [1405700]
-- [pci] Enable SR-IOV ARI Capable Hierarchy before reading TotalVFs (Myron Stowe) [1405700]
-- [pci] Expand Enhanced Allocation BAR output (Myron Stowe) [1405700]
-- [uapi] pci: Make Enhanced Allocation bitmasks more obvious (Myron Stowe) [1405700]
-- [pci] Handle Enhanced Allocation capability for SR-IOV devices (Myron Stowe) [1405700]
-- [pci] Add support for Enhanced Allocation devices (Myron Stowe) [1405700]
-- [uapi] pci: Add Enhanced Allocation register entries (Myron Stowe) [1405700]
-- [pci] Handle IORESOURCE_PCI_FIXED when assigning resources (Myron Stowe) [1405700]
-- [pci] Handle IORESOURCE_PCI_FIXED when sizing resources (Myron Stowe) [1405700]
-- [pci] Clear IORESOURCE_UNSET when reverting to firmware-assigned address (Myron Stowe) [1405700]
-- [pci] msi: Export all remapped MSIs to sysfs attributes (Myron Stowe) [1405700]
-- [pci] Disable MSI on SiS 761 (Myron Stowe) [1405700]
-- [kernel] pci: Turn off Request Attributes to avoid Chelsio T5 Completion erratum (Myron Stowe) [1405700]
-- [x86] pci: Make pci_subsys_init() static (Myron Stowe) [1405700]
-- [pci] Remove unnecessary "if" statement (Myron Stowe) [1405700]
-- [pci] pciehp: Queue power work requests in dedicated function (Myron Stowe) [1405700]
-
-* Wed Dec 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-535.el7]
-- [pci] Disable async suspend/resume for JMicron multi-function SATA/AHCI (Myron Stowe) [1403464]
-- [kernel] pci: Add pci_scan_root_bus_msi() (Myron Stowe) [1403464]
-- [pci] pciehp: Remove ignored MRL sensor interrupt events (Myron Stowe) [1403464]
-- [pci] pciehp: Remove unused interrupt events (Myron Stowe) [1403464]
-- [pci] pciehp: Handle invalid data when reading from non-existent devices (Myron Stowe) [1403464]
-- [kernel] pci: Hold pci_slot_mutex while searching bus->slots list (Myron Stowe) [1403464]
-- [kernel] pci: Protect pci_bus->slots with pci_slot_mutex, not pci_bus_sem (Myron Stowe) [1403464]
-- [pci] msi: Free legacy IRQ when enabling MSI/MSI-X (Myron Stowe) [1403464]
-- [kernel] pci: Add pcibios_alloc_irq() and pcibios_free_irq() (Myron Stowe) [1403464]
-- [pci] Restore ACS configuration as part of pci_restore_state() (Myron Stowe) [1403464]
-- [pci] pciehp: Simplify pcie_poll_cmd() (Myron Stowe) [1403464]
-- [pci] Use "slot" and "pci_slot" for struct hotplug_slot and struct pci_slot (Myron Stowe) [1403464]
-- [pci] pci / acpi: Fix pci_acpi_optimize_delay() comment (Myron Stowe) [1403464]
-- [pci] Remove a broken link in quirks.c (Myron Stowe) [1403464]
-- [pci] Remove useless redundant code (Myron Stowe) [1403464]
-- [pci] Simplify pci_find_(ext_)capability() return value checks (Myron Stowe) [1403464]
-- [pci] Move PCI_FIND_CAP_TTL to pci.h and use it in quirks (Myron Stowe) [1403464]
-- [pci] Add pcie_downstream_port() (true for Root and Switch Downstream Ports) (Myron Stowe) [1403464]
-- [pci] Fix pcie_port_device_resume() comment (Myron Stowe) [1403464]
-- [pci] Shift PCI_CLASS_NOT_DEFINED consistently with other classes (Myron Stowe) [1403464]
-- [pci] revert aeb30016fec3 ("pci: add Intel USB specific reset method") (Myron Stowe) [1403464]
-- [pci] Fix TI816X class code quirk (Myron Stowe) [1403464]
-- [pci] Fix generic NCR 53c810 class code quirk (Myron Stowe) [1403464]
-- [pci] Add quirk for Intersil/Techwell TW686[4589] AV capture cards (Myron Stowe) [1403464]
-- [pci] Remove Intel Cherrytrail D3 delays (Myron Stowe) [1403464]
-- [kernel] pci/msi: Rename "struct msi_chip" to "struct msi_controller" (Myron Stowe) [1403464]
-
-* Fri Dec 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-534.el7]
-- [nvme] switch abort to blk_execute_rq_nowait (David Milburn) [1392923]
-- [nvme] Remove RCU namespace protection (David Milburn) [1384066]
-- [nvme] Only release requested regions (David Milburn) [1384066]
-- [block] blk-mq: clear q->mq_ops if init fail (David Milburn) [1384066]
-- [nvme] Short-cut removal on surprise hot-unplug (David Milburn) [1384066]
-- [uapi] nvme: Allow user initiated rescan (David Milburn) [1384066]
-- [nvme] Reduce driver log spamming (David Milburn) [1384066]
-- [nvme] Unbind driver on failure (David Milburn) [1384066]
-- [nvme] Delete only created queues (David Milburn) [1384066]
-- [block] blk-mq: fix undefined behaviour in order_to_size() (David Milburn) [1384066]
-- [nvme] fix nvme_ns_remove() deadlock (David Milburn) [1384066]
-- [nvme] switch to RCU freeing the namespace (David Milburn) [1384066]
-- [nvme] correct comment for offset enum of controller registers in nvme.h (David Milburn) [1384066]
-- [nvme] add helper nvme_cleanup_cmd() (David Milburn) [1384066]
-- [nvme] move AER handling to common code (David Milburn) [1384066]
-- [nvme] move namespace scanning to core (David Milburn) [1384066]
-- [nvme] tighten up state check for namespace scanning (David Milburn) [1384066]
-- [nvme] introduce a controller state machine (David Milburn) [1384066]
-- [nvme] remove the io_incapable method (David Milburn) [1384066]
-- [nvme] nvme_core_exit() should do cleanup in the reverse order as nvme_core_init does (David Milburn) [1384066]
-- [nvme] Fix check_flush_dependency warning (David Milburn) [1384066]
-- [nvme] small typo in section BLK_DEV_NVME_SCSI of host/Kconfig (David Milburn) [1384066]
-- [nvme] fix cntlid type (David Milburn) [1384066]
-- [nvme] silence warning about unused 'dev' (David Milburn) [1384066]
-- [block] blk-mq: Make blk_mq_all_tag_busy_iter static (David Milburn) [1384066]
-- [block] mtip32xx: Convert to use blk_mq_tagset_busy_iter (David Milburn) [1384066]
-- [nvme] Use blk-mq helper for IO termination (David Milburn) [1384066]
-- [nvme] Skip async events for degraded controllers (David Milburn) [1384066]
-- [nvme] add helper nvme_setup_cmd() (David Milburn) [1384066]
-- [nvme] rewrite discard support (David Milburn) [1384066]
-- [block] add offset in blk_add_request_payload() (David Milburn) [1384066]
-- [nvme] add helper nvme_map_len() (David Milburn) [1384066]
-- [block] blk-mq: Export tagset iter function (David Milburn) [1384066]
-- [nvme] avoid cqe corruption when update at the same time as read (David Milburn) [1384066]
-- [block] blk-mq: Use proper cpumask iterator (David Milburn) [1384066]
-- [nvme] Expose ns wwid through single sysfs entry (David Milburn) [1384066]
-- [nvme] Remove unused sq_head read in completion path (David Milburn) [1384066]
-- [nvme] expose cntlid in sysfs (David Milburn) [1384066]
-- [nvme] return the whole CQE through the request passthrough interface (David Milburn) [1384066]
-- [nvme] split pci module out of core module (David Milburn) [1384066]
-- [nvme] make SG_IO support optional (David Milburn) [1384066]
-- [nvme] split dev_list_lock (David Milburn) [1384066]
-- [nvme] move timeout variables to core.c (David Milburn) [1384066]
-- [nvme] host: reference the fabric module for each bdev open callout (David Milburn) [1384066]
-- [nvme] fix drvdata setup for the nvme device (David Milburn) [1384066]
-- [nvme] Log the ctrl device name instead of the underlying pci device name (David Milburn) [1384066]
-- [block] blk-mq: add bounds check on tag-to-rq conversion (David Milburn) [1384066]
-- [block] blk-mq: Fix NULL pointer updating nr_requests (David Milburn) [1384066]
-
-* Thu Dec 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-533.el7]
-- [kernel] audit: move calcs after alloc and check when logging set loginuid (Richard Guy Briggs) [1155608]
-- [kernel] audit: add tty field to LOGIN event (Richard Guy Briggs) [1155608]
-- [netdrv] alx: enable multiple tx queues (Jarod Wilson) [1396261]
-- [netdrv] alx: enable msi-x interrupts by default (Jarod Wilson) [1396261]
-- [netdrv] alx: prepare tx path for multi queue support (Jarod Wilson) [1396261]
-- [netdrv] alx: prepare resource allocation for multi queue support (Jarod Wilson) [1396261]
-- [netdrv] alx: prepare interrupt functions for multiple queues (Jarod Wilson) [1396261]
-- [netdrv] alx: switch to per queue data structures (Jarod Wilson) [1396261]
-- [netdrv] alx: add ability to allocate and free alx_napi structures (Jarod Wilson) [1396261]
-- [netdrv] alx: extend data structures for multi queue support (Jarod Wilson) [1396261]
-- [netdrv] alx: refactor descriptor allocation (Jarod Wilson) [1396261]
-- [netdrv] alx: fix error handling in __alx_open (Jarod Wilson) [1396261]
-- [netdrv] alx: add module parameter to enable msi-x support (Jarod Wilson) [1396261]
-- [netdrv] alx: add msi-x support (Jarod Wilson) [1396261]
-- [netdrv] alx: factor out part of the interrupt handler (Jarod Wilson) [1396261]
-- [netdrv] alx: refactor msi enablement and disablement (Jarod Wilson) [1396261]
-- [netdrv] Add Killer E2500 device ID in alx driver (Jarod Wilson) [1396261]
-- [netdrv] alx: add tso support (Jarod Wilson) [1396261]
-- [netdrv] alx: Work around the DMA RX overflow issue (Jarod Wilson) [1396261]
-- [netdrv] alx: use custom skb allocator (Jarod Wilson) [1396261]
-- [netdrv] bnx2: fix locking when netconsole is used (Neil Horman) [1391233]
-- [netdrv] bnx2: Reset device during driver initialization (Neil Horman) [1391233]
-- [netdrv] bnx2: use IS_ENABLED() instead of checking for built-in or module (Neil Horman) [1391233]
-- [netdrv] qed: Utilize FW 8.10.3.0 (Harish Patil) [1368248]
-- [pci] Limit config space size for Netronome NFP4000 (John Linville) [1377765]
-- [pci] Add Netronome NFP4000 PF device ID (John Linville) [1377765]
-- [pci] Limit config space size for Netronome NFP6000 family (John Linville) [1377765]
-- [pci] Add Netronome vendor and device IDs (John Linville) [1377765]
-- [pci] Support PCIe devices with short cfg_size (John Linville) [1377765]
-- [x86] perf/x86/intel/rapl: Add Knights Mill CPUID (Jiri Olsa) [1381288]
-- [x86] perf/x86/rapl: Enable Apollo Lake RAPL support (Jiri Olsa) [1381288]
-- [x86] perf/x86/rapl: Add Skylake server model detection (Jiri Olsa) [1381288]
-- [x86] perf/x86/rapl: Use Intel family macros for RAPL (Jiri Olsa) [1381288]
-- [x86] perf/rapl: Add missing Broadwell model (Jiri Olsa) [1381288]
-- [x86] perf/rapl: Reorder model numbers (Jiri Olsa) [1381288]
-- [x86] perf/x86/intel/rapl: Support Skylake RAPL domains (Jiri Olsa) [1381288]
-- [x86] perf/intel/rapl: Make the Intel RAPL PMU driver modular (Jiri Olsa) [1381288]
-
-* Wed Dec 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-532.el7]
-- [net] sctp: validate chunk len before actually using it (Hangbin Liu) [1399459] {CVE-2016-9555}
-- [net] sctp: rename WORD_TRUNC/ROUND macros (Hangbin Liu) [1399459] {CVE-2016-9555}
-- [net] sctp: keep fragmentation point aligned to word size (Hangbin Liu) [1399459] {CVE-2016-9555}
-- [net] ipv6: bump genid when the IFA_F_TENTATIVE flag is clear (Paolo Abeni) [1380022]
-- [net] iucv: use basic blocks for iucv inline assemblies (Neil Horman) [1364038]
-- [net] add alloc_skb_with_frags() helper (Neil Horman) [1364038]
-- [net] af_iucv: Validate socket address length in iucv_sock_bind() (Neil Horman) [1364038]
-- [net] af_iucv: use paged SKBs for big outbound messages (Neil Horman) [1364038]
-- [net] af_iucv: use paged SKBs for big inbound messages (Neil Horman) [1364038]
-- [net] af_iucv: remove fragment_skb() to use paged SKBs (Neil Horman) [1364038]
-- [net] new helper memcpy_from_msg() (Neil Horman) [1364038]
-- [net] sctp: fix the panic caused by route update (Xin Long) [1380226]
-- [net] ipv6: Fix wrong direct fetch of hw_enc_features in ipv6_gso_segment() (Hangbin Liu) [1398723]
-- [net] Reserve skb headroom and set skb->dev even if using __alloc_skb (Hangbin Liu) [1395163]
-- [net] igmp: do not remove igmp souce list info when set link down (Hangbin Liu) [1383578]
-- [net] ipv4: fix all space errors in file igmp.c (Hangbin Liu) [1383578]
-- [documentation] net: ipv6: mld: document force_mld_version in ip-sysctl.txt (Hangbin Liu) [1389611]
-- [documentation] igmp: Document sysctl force_igmp_version (Hangbin Liu) [1383570]
-- [documentation] net: Fix indentation of the conf/ documentation block (Hangbin Liu) [1383570]
-- [net] rtnetlink: fix rtnl_vfinfo_size (Sabrina Dubroca) [1392128]
-- [net] l2tp: fix use-after-free during module unload (Eelco Chaudron) [1371621]
-- [net] tcp: fix race during timewait sk creation (Florian Westphal) [1376420]
-- [netdrv] bna: Add synchronization for tx ring (Jonathan Toppins) [1379588]
-- [netdrv] tg3: Avoid NULL pointer dereference in tg3_io_error_detected() (Jonathan Toppins) [1382379]
-- [netdrv] tg3: Report the correct number of RSS queues through tg3_get_rxnfc (Jonathan Toppins) [1382379]
-
-* Fri Dec 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-531.el7]
-- [powerpc] eeh: Reworked eeh_pe_bus_get() (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Synchronize recovery in host/guest (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Don't remove passed VFs (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Don't propagate error to guest (Gustavo Duarte) [1315131]
-- [powerpc] eeh: powerpc/eeh: Support error recovery for VF PE (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Support PCI config restore for VFs (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Support EEH reset for VF PE (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Create PE for VFs (Gustavo Duarte) [1315131]
-- [powerpc] eeh: EEH device for VF (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Cache normal BARs, not windows or IOV BARs (Gustavo Duarte) [1315131]
-- [powerpc] pci: Remove VFs prior to PF (Gustavo Duarte) [1315131]
-- [powerpc] pci: Add pcibios_bus_add_device() weak function (Gustavo Duarte) [1315131]
-- [powerpc] pci/iov: Rename and export virtfn_{add, remove} (Gustavo Duarte) [1315131]
-- [powerpc] powernv: allocate sparse PE# when using M64 BAR in Single PE mode (Gustavo Duarte) [1315131]
-- [powerpc] powernv: boundary the total VF BAR size instead of the individual one (Gustavo Duarte) [1315131]
-- [powerpc] powernv: replace the hard coded boundary with gate (Gustavo Duarte) [1315131]
-- [powerpc] powernv: use one M64 BAR in Single PE mode for one VF BAR (Gustavo Duarte) [1315131]
-- [powerpc] powernv: simplify the calculation of iov resource alignment (Gustavo Duarte) [1315131]
-- [powerpc] powernv: don't enable SRIOV when VF BAR has non 64bit-prefetchable BAR (Gustavo Duarte) [1315131]
-- [powerpc] eeh: More relaxed hotplug criterion (Gustavo Duarte) [1315131]
-- [powerpc] iommu: Set default DMA offset in dma_dev_setup (Gustavo Duarte) [1315131]
-- [powerpc] pci: Don't try to restore VF BARs (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Unfreeze VF PE on releasing it (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Include VF PE in PELTV of PF PE (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Fix the log message when disabling VF (Gustavo Duarte) [1315131]
-- [powerpc] eeh: remove unused macro IS_BRIDGE (Gustavo Duarte) [1315131]
-- [powerpc] eeh: fix powernv_eeh_wait_state delay logic (Gustavo Duarte) [1315131]
-- [powerpc] eeh: fix comment for wait_state() (Gustavo Duarte) [1315131]
-- [powerpc] eeh: fix start/end/flags type in struct pci_io_addr_range{} (Gustavo Duarte) [1315131]
-- [powerpc] pci: Add PCI resource alignment documentation (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Group VF PE when IOV BAR is big on PHB3 (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Reserve additional space for IOV BAR, with m64_per_iov supporte (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Implement pcibios_iov_resource_alignment() on powernv (Gustavo Duarte) [1315131]
-- [powerpc] pci: Don't unset PCI resources for VFs (Gustavo Duarte) [1315131]
-
-* Thu Dec 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-530.el7]
-- [kernel] audit: fix formatting of AUDIT_CONFIG_CHANGE events (Paul Moore) [1399823]
-- [kernel] x86/panic: replace smp_send_stop() with kdump friendly version in panic path (Xunlei Pang) [1182375 726846]
-- [kernel] kexec: use core_param for crash_kexec_post_notifiers boot option (Xunlei Pang) [1182375 726846]
-- [kernel] panic/kexec: fix "crash_kexec_post_notifiers" option issue in oops path (Xunlei Pang) [1182375 726846]
-- [kernel] panic: call the 2nd crash_kexec() only if crash_kexec_post_notifiers is enabled (Xunlei Pang) [1182375 726846]
-- [kernel] panic: add "crash_kexec_post_notifiers" option for kdump after panic_notifers (Xunlei Pang) [1182375 726846]
-- [kernel] panic: call panic handlers before kmsg_dump (Xunlei Pang) [1182375 726846]
-- [acpi] acpi / apd: Add device HID for future AMD UART controller (Suravee Suthikulpanit) [1329004]
-- [tty] serial: 8250_dw: add support for AMD SOC Carrizo (Suravee Suthikulpanit) [1329004]
-- [x86] acpi: add AMD ACPI2Platform device support for x86 system (Suravee Suthikulpanit) [1329004]
-- [vfio] pci: Fix integer overflows, bitmask check (Mateusz Guzik) [1394628 1394992] {CVE-2016-9083 CVE-2016-9084}
-- [x86] kvm: x86: Check memopp before dereference (Mateusz Guzik) [1395806] {CVE-2016-8630}
-- [x86] Mark Intel Purley supported (Steve Best) [1371748]
-- [x86] platform/uv/bau: Add UV4-specific functions (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Fix payload queue setup on UV4 hardware (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Disable software timeout on UV4 hardware (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Populate ->uvhub_version with UV4 version information (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Use generic function pointers (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Add generic function pointers (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Convert uv_physnodeaddr() use to uv_gpa_to_offset() (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Clean up pq_init() (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Clean up and update printks (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Clean up vertical alignment (Frank Ramsay) [1386692]
-- [x86] Mark Kaby Lake with Kaby Lake PCH as supported (David Arcari) [1391219]
-- [mfd] lpss: Fix Intel Kaby Lake PCH-H properties (David Arcari) [1391219]
-- [lib] mpi: Fix NULL ptr dereference in mpi_powm() (Mateusz Guzik) [1398458] {CVE-2016-8650}
-- [mm] tmpfs: fix SEEK_DATA/SEEK_HOLE regression (Adrian Reber) [1396390]
-- [powercap] rapl: Add support for Ivy Bridge server (Prarit Bhargava) [1379590]
-
-* Tue Dec 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-529.el7]
-- [x86] mce/amd: Extract the error address on SMCA systems (David Arcari) [1389383]
-- [edac] x86/mce, edac/mce_amd: Print MCA_SYND and MCA_IPID during MCE on SMCA systems (David Arcari) [1389383]
-- [trace] x86/mce/amd: Save MCA_IPID in MCE struct on SMCA systems (David Arcari) [1389383]
-- [x86] mce/amd: Ensure the deferred error interrupt is of type APIC on SMCA systems (David Arcari) [1389383]
-- [x86] mce/amd: Update sysfs bank names for SMCA systems (David Arcari) [1389383]
-- [edac] x86/mce/amd, edac/mce_amd: Define and use tables for known SMCA IP types (David Arcari) [1389383]
-- [edac] mce_amd: Use SMCA prefix for error descriptions arrays (David Arcari) [1389383]
-- [edac] mce_amd: Add missing SMCA error descriptions (David Arcari) [1389383]
-- [x86] mce/amd: Read MSRs on the CPU allocating the threshold blocks (David Arcari) [1389383]
-- [edac] mce_amd: Print syndrome register value on SMCA systems (David Arcari) [1389383]
-- [trace] x86/mce: Add support for new MCA_SYND register (David Arcari) [1389383]
-- [x86] mce/amd: Use msr_ops.misc() in allocate_threshold_blocks() (David Arcari) [1389383]
-- [x86] mce/amd: Increase size of the bank_map type (David Arcari) [1389383]
-- [edac] mce_amd: Detect SMCA using X86_FEATURE_SMCA (David Arcari) [1389383]
-- [x86] cpu: Add detection of AMD RAS Capabilities (David Arcari) [1389383]
-- [x86] cpufeature: Cleanup get_cpu_cap() (David Arcari) [1389383]
-- [x86] mce/amd: Save an indentation level in prepare_threshold_block() (David Arcari) [1389383]
-- [x86] mce/amd: Disable LogDeferredInMcaStat for SMCA systems (David Arcari) [1389383]
-- [x86] mce/amd: Log Deferred Errors using SMCA MCA_DE{STAT, ADDR} registers (David Arcari) [1389383]
-- [x86] mce: Detect and use SMCA-specific msr_ops (David Arcari) [1389383]
-- [x86] mce: Define vendor-specific MSR accessors (David Arcari) [1389383]
-- [x86] mce/amd: Document some functionality (David Arcari) [1389383]
-- [x86] mce: Clarify comments regarding deferred error (David Arcari) [1389383]
-- [x86] mce/amd: Fix logic to obtain block address (David Arcari) [1389383]
-- [edac] x86/mce/amd, edac: Enable error decoding of Scalable MCA errors (David Arcari) [1389383]
-- [x86] mce: Move MCx_CONFIG MSR definitions (David Arcari) [1389383]
-- [x86] mce/amd: Set MCAX Enable bit (David Arcari) [1389383]
-- [x86] mce/amd: Carve out threshold block preparation (David Arcari) [1389383]
-- [x86] mce/amd: Fix LVT offset configuration for thresholding (David Arcari) [1389383]
-- [x86] mce/amd: Reduce number of blocks scanned per bank (David Arcari) [1389383]
-- [x86] mce/amd: Do not perform shared bank check for future processors (David Arcari) [1389383]
-- [x86] mce: Fix order of AMD MCE init function call (David Arcari) [1389383]
-- [edac] mce_amd: Don't emit 'CE' for Deferred error (David Arcari) [1389383]
-- [edac] mce, amd: Correct formatting of decoded text (David Arcari) [1389383]
-- [edac] mce, amd: Remove leftover unused mask (David Arcari) [1389383]
-- [edac] mce, amd: Fix decoding module loading on unsupported hw (David Arcari) [1389383]
-- [platform] intel-hid: Remove duplicated acpi_remove_notify_handler (David Arcari) [1389598]
-- [platform] intel-hid: add a workaround to ignore an event after waking up from S4 (David Arcari) [1389598]
-- [platform] intel-hid: allocate correct amount of memory for private struct (David Arcari) [1389598]
-- [platform] intel-hid: fix incorrect entries in intel_hid_keymap (David Arcari) [1389598]
-- [platform] intel-hid: new hid event driver for hotkeys (David Arcari) [1389598]
-
-* Mon Dec 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-528.el7]
-- [iommu] vt-d: Fix dead-locks in disable_dmar_iommu() path (Myron Stowe) [1374426]
-- [iommu] vt-d: Return error code in domain_context_mapping_one() (Myron Stowe) [1374426]
-- [iommu] vt-d: Reduce extra first level entry in iommu->domains (Myron Stowe) [1374426]
-- [iommu] vt-d: Avoid duplicate device_domain_info structures (Myron Stowe) [1374426]
-- [iommu] vt-d: Only insert alias dev_info if there is an alias (Myron Stowe) [1374426]
-- [iommu] vt-d: Pass device_domain_info to __dmar_remove_one_dev_info (Myron Stowe) [1374426]
-- [iommu] vt-d: Remove dmar_global_lock from device_notifier (Myron Stowe) [1374426]
-- [iommu] vt-d: Get rid of domain->iommu_lock (Myron Stowe) [1374426]
-- [iommu] vt-d: Only call domain_remove_one_dev_info to detach old domain (Myron Stowe) [1374426]
-- [iommu] vt-d: Unify domain->iommu attach/detachment (Myron Stowe) [1374426]
-- [iommu] vt-d: Establish domain<->iommu link in dmar_insert_one_dev_info (Myron Stowe) [1374426]
-- [iommu] vt-d: Pass an iommu pointer to domain_init() (Myron Stowe) [1374426]
-- [iommu] vt-d: Rename iommu_detach_dependent_devices() (Myron Stowe) [1374426]
-- [iommu] vt-d: Rename domain_remove_one_dev_info() (Myron Stowe) [1374426]
-- [iommu] vt-d: Rename dmar_insert_dev_info() (Myron Stowe) [1374426]
-- [iommu] vt-d: Simplify domain_remove_dev_info() (Myron Stowe) [1374426]
-- [iommu] vt-d: Simplify domain_remove_one_dev_info() (Myron Stowe) [1374426]
-- [iommu] vt-d: Simplify io/tlb flushing in intel_iommu_unmap (Myron Stowe) [1374426]
-- [iommu] vt-d: Replace iommu_bmp with a refcount (Myron Stowe) [1374426]
-- [iommu] vt-d: Kill dmar_domain->id (Myron Stowe) [1374426]
-- [iommu] vt-d: Don't pre-allocate domain ids for si_domain (Myron Stowe) [1374426]
-- [iommu] vt-d: Pass dmar_domain directly into iommu_flush_iotlb_psi (Myron Stowe) [1374426]
-- [iommu] vt-d: Simplify domain_context_mapping_one (Myron Stowe) [1374426]
-- [iommu] vt-d: Get rid of iommu_attach_vm_domain() (Myron Stowe) [1374426]
-- [iommu] vt-d: Split up iommu->domains array (Myron Stowe) [1374426]
-- [iommu] vt-d: Add access functions for iommu->domains (Myron Stowe) [1374426]
-- [iommu] vt-d: Keep track of per-iommu domain ids (Myron Stowe) [1374426]
-- [iommu] revert "vt-d: Disable passthrough mode on Kexec kernel" (Myron Stowe) [1374426]
-
-* Fri Dec 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-527.el7]
-- [mmc] sdhci-acpi: Ensure connected devices are powered when probing (Rui Wang) [1320820]
-- [acpi] pm: Export acpi_device_fix_up_power() (Rui Wang) [1320820]
-- [x86] kvm: x86: export TSC information to user-space (David Hildenbrand) [1379361]
-- [virt] kvm: create per-vcpu dirs in debugfs (David Hildenbrand) [1379361]
-- [kernel] kvm: add stubs for arch specific debugfs support (David Hildenbrand) [1379361]
-- [virt] kvm: kvm_destroy_vm_debugfs(): check debugfs_stat_data pointer (David Hildenbrand) [1379361]
-- [x86] kvm: x86: drop read_tsc_offset() (David Hildenbrand) [1379361]
-- [x86] kvm: x86: add tsc_offset field to struct kvm_vcpu_arch (David Hildenbrand) [1379361]
-- [virt] kvm: don't use anon_inode_getfd() before possible failures (David Hildenbrand) [1379361]
-- [virt] kvm: Create debugfs dir and stat files for each VM (David Hildenbrand) [1379361]
-- [virt] kvm: Remove unnecessary debugfs dentry references (David Hildenbrand) [1379361]
-- [scsi] qla2xxx: do not abort all commands in the adapter during EEH recovery (Gustavo Duarte) [1393254]
-- [scsi] qla2xxx: fix invalid DMA access after command aborts in PCI device remove (Gustavo Duarte) [1393254]
-- [scsi] qla2xxx: do not queue commands when unloading (Gustavo Duarte) [1393254]
-- [scsi] cxlflash: Improve EEH recovery time (Steve Best) [1397588]
-- [scsi] cxlflash: Fix to avoid EEH and host reset collisions (Steve Best) [1397588]
-- [scsi] cxlflash: Remove the device cleanly in the system shutdown path (Steve Best) [1397588]
-- [scsi] cxlflash: Scan host only after the port is ready for I/O (Steve Best) [1397588]
-- [thermal] powerclamp: correct cpu support check (Steve Best) [1396121]
-- [thermal] powerclamp: Prevent division by zero when counting interval (Steve Best) [1396121]
-
-* Fri Dec 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-526.el7]
-- [kernel] module: When modifying a module's text ignore modules which are going away too (Aaron Tomlin) [1386313]
-- [kernel] module: Ensure a module's state is set accordingly during module coming cleanup code (Aaron Tomlin) [1386313]
-- [netdrv] sfc: clear napi_hash state when copying channels (Jarod Wilson) [1394304]
-- [acpi] sleep: Do not save NVS for new machines to accelerate S3 (Prarit Bhargava) [1385527]
-- [misc] cxl: Fix coredump generation when cxl_get_fd() is used (Gustavo Duarte) [1397943]
-- [pci] cxl: use pcibios_free_controller_deferred() when removing vPHBs (Gustavo Duarte) [1395323]
-- [pci] Set Read Completion Boundary to 128 iff Root Port supports it (_HPX) (Myron Stowe) [1387674]
-- [pci] Export pcie_find_root_port() (Myron Stowe) [1387674]
-- [x86] pci: Mark Haswell Power Control Unit as having non-compliant BARs (Prarit Bhargava) [1395104]
-- [x86] amd: Fix cpu_llc_id for AMD Fam17h systems (Suravee Suthikulpanit) [1395399]
-- [x86] perf/intel/cqm: Check cqm/mbm enabled state in event init (Jiri Olsa) [1372344]
-- [powerpc] kvm: ppc: book3s hv: Add tunable to control H_IPI redirection (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Send IPI to host core to wake VCPU (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Host side kick VCPU when poked by real-mode KVM (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: kvmppc_host_rm_ops - handle offlining CPUs (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Manage core host state (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Host-side RM data structures (Thomas Huth) [1384437]
-- [powerpc] xics: Add icp_native_cause_ipi_rm (Thomas Huth) [1384437]
-- [powerpc] smp: Add smp_muxed_ipi_set_message (Thomas Huth) [1384437]
-- [powerpc] smp: Support more IPI messages (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Fix TB corruption in guest exit path on HMI interrupt (Thomas Huth) [1373335]
-- [powerpc] powernv: Call opal_pci_poll() if needed (Steve Best) [1398577]
-- [powerpc] powernv: Fix stale PE primary bus (Steve Best) [1395275]
-
-* Thu Dec 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-525.el7]
-- [net] i40e: fix call of ndo_dflt_bridge_getlink() (Ivan Vecera) [1297841]
-- [net] switchdev: Drop EXPERIMENTAL from description (Ivan Vecera) [1275772]
-- [net] switchdev: Export the same parent ID service function (Ivan Vecera) [1275772]
-- [net] switchdev: pass pointer to fib_info instead of copy (Ivan Vecera) [1275772]
-- [netdrv] mlxsw: spectrum: Don't sleep during ndo_get_phys_port_name() (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Make split flow match firmware requirements (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Fix ordering in mlxsw_sp_fini (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add missing rollback in flood configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Fix rollback order in LAG join failure (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Don't insert unnecessary local fdb entry on changing mac address (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: Marking port-group as offloaded (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: Common function for mdb entry translation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: allow the user to delete mdb entry if there's a querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Adding complete operation to deferred switchdev ops (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Use MLXSW_SP_PB_UNUSED define for unused pb (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Use designated initializers for mlxsw_sp_pbs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Implement occupancy monitoring (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Introduce support for asynchronous EMAD register access (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add mlxsw specific workqueue and use it for FDB notif. processing (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Extend SBPM register for occupancy control (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Shared Buffer Status register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add devlink shared buffer occupancy callbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Implement shared buffer configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add mlxsw_core_port_driver_priv helper (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Get max_buff defaults into limits exposed to user (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Change initialization of PG 9 (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Remove eg pool 3 default init and CPU port TC binding to it (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Cache shared buffer configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Rename "pool" to "pr" in initialization (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Push out indexes and direction out of SB structs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Push out shared buffer register writes (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add devlink shared buffer callbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Fix SBPM register name (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Share direction enum between SBPR, SBCM, SBPM (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Do not pass around driver_priv directly (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Pass mlxsw_core as a param of mlxsw_core_skb_transmit* (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Move devlink port registration into common core code (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add IEEE 802.1Qbb PFC support (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Introduce per priority counters (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for PAUSE frames (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add lossless settings for PBMC register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Port Flow Control Configuration register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Allow setting maximum rate for a TC (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add IEEE 802.1Qaz ETS support (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Introduce support for Data Center Bridging (DCB) (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Initialize egress scheduling (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add QoS Switch Traffic Class Table register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add QoS ETS Element Configuration register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Set port's shared buffer size to 0 (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Use correct PBMC register length (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Correctly configure headroom size (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add bytes to cells helper (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Map all switch priorities to priority group 0 (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Port Prio To Buffer register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for physical port names (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Use switch ID in suggested udev rule (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Reduce number of supported 802.1D bridges (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rtnl: fix msg size calculation in if_nlmsg_size() (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Allow set bridge ageing time when switchdev disabled (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix typo in comments/doc (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add description for len argument of dev_get_phys_port_name (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Implement reset done check (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move ageing_time from struct rocker to struct ofdpa (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: allow zero ageing time (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: set FDB cleanup timer according to lowest ageing time (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Check requested ageing time is valid (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Correctly determine if descriptor queue is full (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Always decrement bridge's ref count (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: add DEVLINK dependencies (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Introduce port splitting (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Mark unused ports using NULL (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Store local port to module mapping during init (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Unmap local port from module during teardown (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add devlink port splitter callbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Implement devlink interface (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix an error code (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: ndo_fdb_dump should report -EMSGSIZE to rtnl_fdb_dump (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use __ethtool_get_ksettings (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix rocker_world_port_obj_vlan_add() (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: add support for more attributes and export timer (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: reduce the indentation level in br_mdb_fill_info (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: log port STP state on change (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: switchdev: Offload VLAN flags to hardware bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Allow for PVID deletion (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add the Switch Port Acceptable Frame Types register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: return -EOPNOTSUPP for undefined world ops (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move OF-DPA stuff into separate file (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: call rocker_cmd_exec function with "nowait" boolean instead of flags (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove trans parameter to rocker_cmd_exec function (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: pre-allocate wait structures during cmd ring init (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: pass "learning" value as a parameter to rocker_port_set_learning (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: introduce worlds infrastructure (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move rocker and rocker_port structs into header (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement get settings mode command (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: push tlv processing into separate files (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: rename rocker.c to rocker_main.c (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: rename rocker.h to rocker_hw.h (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove unused rocker_port param from alloc funcs and shorten their names (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Set STP state when leaving 802.1D bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Treat local port 64 as valid (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: avoid uninitialized variable warning (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: Passing the port-group pointer to br_mdb module (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: Separate br_mdb_entry->state from net_bridge_port_group->state (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: add support for offloaded mdb entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Require RTNL mutex to be held when sending FDB notifications (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Use correct offset in field definiton (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Compare local ports instead of pointers (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Dump LAG FDB records only once (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Use correct netdev when notifying bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Don't report VLAN for 802.1D FDB entries (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Notify bridge's FDB only based on learning_sync (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Disable learning according to STP state (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Don't forward packets when STP state is DISABLED (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Flush FDB when leaving bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add the Switch Filtering DB Flush register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Handle port leaving LAG while bridged (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix lockdep addr_list_lock false positive splat (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: fix SWITCHDEV_OBJ_ID_PORT_MDB (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add FDB lock to prevent session interleaving (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Adding IGMP snooping documentation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Adding layer 2 multicast support (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Adding VID to FID translatation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Changing the maximum number of multicast group to a define (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Adding SMID register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of multicast record for SFD register (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Reflect MDB entries to hardware (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Adding MDB entry offload (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: remove FDB entry in case we get unknown object notification (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: pass local_port to mlxsw_sp_port_fdb_uc_op (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: remove an unnecessary condition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Remember untagged VLANs (Ivan Vecera) [1275772 1297841 1331748]
-- [net] mlxsw: Disable vlan_filtering for non .1D bridge (Ivan Vecera) [1275772]
-- [netdrv] mlxsw: Renaming local variable names for consistency (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Fixing vlans init range (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add vlan filtering change for new bridged device (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add vlan filtering change notification (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add bridge vlan_filtering attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Propagate vlan add failure to user (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Adjust value of CPU egress traffic class (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Only call /sbin/bridge-stp for the initial network namespace (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Change bridge port attributes only when bridged (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Set bridge status in appropriate functions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Return NOTIFY_BAD on bridge failure (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Initialize PVID only once (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Use devm_kzalloc to allocate mlxsw_hwmon structure (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Allow to reset temperature history via hwmon interface (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: bridge: Pass ageing time as clock_t instead of jiffies (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for VLAN devices on top of LAG (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Enable FDB records for VLAN devices on top of LAG (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add lag_vid field to SFD register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for VLAN devices bridging (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Handle VLAN devices linking / unlinking (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Adjust FDB notifications for VLAN devices (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Adjust switchdev ops for VLAN devices (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Use FID instead of VID when accessing FDB (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add another flood table for vFIDs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Use appropriate parameter name (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Split vFID range in two (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Allocate active VLANs only for port netdevs (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Pass original device to port netdev driver (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: vlan: Use switchdev_port* in vlan_netdev_ops (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Fix temperature sensor index during initialization (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Fix max temperature getting (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: remove an unneeded condition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: fix some error handling (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Change BUG to WARN in hwmon code (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Implement LAG tx enabled lower state change (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Implement FDB add/remove/dump for LAG (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Implement LAG port join/leave (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of LAG unicast record for SFN register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of LAG unicast record for SFD register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add link aggregation configuration registers definitions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Implement LAG processing for received packets (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add support for packets received from LAG port (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add set_rx_mode ndo stub (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: set inactive flags on release (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: implement lower state change propagation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: allow notifications for bond_set_slave_link_state (Ivan Vecera) [1275772 1297841 1331748]
-- [net] team: implement lower state change propagation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] introduce lower state changed info structure for LAG lowers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] introduce change lower state notifier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: fill-up LAG changeupper info struct and pass it along (Ivan Vecera) [1275772 1297841 1331748]
-- [net] team: fill-up LAG changeupper info struct and pass it along (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add info struct for LAG changeupper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add possibility to pass information about upper device via notifier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] propagate upper priv via netdev_master_upper_dev_link (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_lag_port helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_lag_master helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_team_port helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_team_master helper (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Implement fan control using hwmon (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of fan management registers (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Implement temperature hwmon interface (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of temperature management registers (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for port identification (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Management LED Control register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add error paths to __mlxsw_sp_port_vlans_add (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Unify setting of HW VLAN filters (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Use correct PVID value when removing VLANs (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix return code of fdb_dump stub (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: bridge: Check return code is not EOPNOTSUPP (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: respect SKIP_EOPNOTSUPP flag in case there is no recursion (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: Use rcu_dereference instead of rtnl_dereference (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: Use correct flag name in comment (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: Prevent possible use-after-free (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix: pass correct obj size when deferring obj add (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix: erasing too much of vlan obj when handling multiple vlan specs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Make mlxsw_sp_port_switchdev_ops static (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Put braces on all arms of branch statement (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Put constant on the right side of comparisons (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Fix ageing time value (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Avoid unnecessary line wrap for mlxsw_reg_sfd_uc_unpack (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Fix desription typos of couple of SFN items (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Fix description for reg_sfd_uc_sub_port (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for flood control (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for VLAN ranges in flooding configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: move "bridged" bool to u8 flags (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Make flood to CPU optional (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Add support for flood control (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: set is_local and is_static before fdb entry is added to the fdb hashtable (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Adding switchdev ageing notification on port bridged (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add initial support for Spectrum ASIC (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Port VLAN MAC Learning register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Filtering Database Aging Time register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Virtual-Port Enabling register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch VID to FID Allocation register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch FID Management register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add shared buffer configuration registers definitions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Port VID and Switch Port VLAN Membership registers definitions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch FDB Notification register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Filtering Database register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: item: Add MLXSW_ITEM_BUF_INDEXED helper (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: item: Make src arg of memcpy_to helper const (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: cmd: Introduce FID-offset flooding tables (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: cmd: Introduce per-FID flooding tables (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Enable configuration of flooding domains (Ivan Vecera) [1275772 1297841 1331748]
-- [net] introduce pre-change upper device notifier (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: cmd: Update CONFIG_PROFILE command documentation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Add trap group for control packets (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Simplify traps creation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Introduce mlxsw_reg_spms_vid_pack helper and use it (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Adjust definition of enum mlxsw_reg_sfgc_type (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Remove extra space in SFGC ID define (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Uppercase letters in register IDs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Use dev_level_ratelimited instead of net_ratelimit & dev_level (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Do not use EMADs in mlxsw_emad_fini (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Limit number of entries being sent in single MAP_FA cmd (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Remove MLXSW_PCI_RDQS/SDQS defines and checks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Do not use MLXSW_PCI_SDQS_COUNT define (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Use MLXSW_PCI_CQS_MAX instead of MLXSW_PCI_CQS_COUNT (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: switchx2: Use ETH_ALEN for mac address length (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Remove multicast ID configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: assert rtnl mutex when going over lower netdevs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove nowait from switchdev callbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: defer switchdev fdb del call in fdb_del_external_learn (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce possibility to defer obj_add/del (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove pointers from switchdev objects (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: allow caller to explicitly request attr_set as deferred (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: make struct switchdev_attr parameter const for attr_set calls (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce switchdev deferred ops infrastructure (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Fix race condition in __mlxsw_emad_transmit (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: move back vlan_flush (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: drop unnecessary flush code (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use rcu for vlan_list traversal in br_fill_ifinfo (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use proper rcu for the vlgrp member (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix gc_timer mod/del race condition (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: check if the vlan id is in the proper vlan range (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: enforce no pvid flag in vlan ranges (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: enforce no pvid flag in vlan ranges (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: try switchdev op first in __vlan_vid_add/del (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: handle setting bridge ageing_time (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: push bridge setting ageing_time down to switchdev (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: skip over ports returning -EOPNOTSUPP when recursing ports (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add bridge ageing_time attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: allow adding of fdb entries pointing to the bridge device (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Fix bug in __mlxsw_item_bit_array_offset (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: switchx2: changing order of exit fallbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: fix warnings for big-endian 32-bit dma_addr_t (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for port's multicast_router attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: allow to flush port's fdb (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's timer values (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's topology_change_ack and config_pending (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's id and number (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's designated cost and port (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's bridge id (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's root id (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: make br_fill_info's frame size smaller (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for default_pvid (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for netfilter tables config (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for igmp's intervals (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_startup_query_count (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_last_member_count (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for igmp's hash_max (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for igmp's hash_elasticity (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_query_use_ifaddr (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_snooping (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_router (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add fdb flush (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add group_addr support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export all timers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export topology_change and topology_change_detected (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export root path cost (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export root port (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export bridge id (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export root id (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add group_fwd_mask support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use br_vlan_should_use to simplify __vlan_add/del (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: drop master_flags from __vlan_add (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use br_vlan_(get|put)_master to deal with refcounts (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use rcu list for the ordered vlan list (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: push object ID back to object structure (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: bring back switchdev_obj and use it as a generic object param (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename switchdev_obj_fdb to switchdev_obj_port_fdb (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename switchdev_obj_vlan to switchdev_obj_port_vlan (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename SWITCHDEV_ATTR_* enum values to SWITCHDEV_ATTR_ID_* (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename SWITCHDEV_OBJ_* enum values to SWITCHDEV_OBJ_ID_* (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: don't pass flags when creating context only (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: fix possible null ptr derefs on port init and deinit (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: move pvid inside net_bridge_vlan_group (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: fix possible null vlgrp deref while registering new port (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: adjust rhashtable initial size and hash locks size (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: extract struct switchdev_obj_* (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: abstract object in add/del ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: pass callback to dump operation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove dev from switchdev_obj cb (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: move dev in switchdev_fdb_dump (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove dev in port_vlan_dump_put (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: add per-vlan struct and move to rhashtables (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: reduce transaction phase enum down to a boolean (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove "ABORT" transaction phase (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove "NONE" transaction phase (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use switchdev transaction queue for allocated memory (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: push struct switchdev_trans down through rocker code (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add switchdev_trans_ph_prepare/commit helpers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: move transaction phase enum under transaction structure (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce transaction item queue for attr_set and obj_add (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename "trans" to "trans_ph". (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: update documentation on FDB ageing_time (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: don't age externally added FDB entries (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add FDB cleanup timer (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: adding port ageing_time for ageing out FDB entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: define some min/max/default ageing time constants (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: store rocker_port in fdb key rather than pport (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: track when FDB entry is touched. (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rtnetlink: catch -EOPNOTSUPP errors from ndo_bridge_getlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: remove unnecessary switchdev include (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: check __vlan_vid_del for error (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix return value of switchdev_port_fdb_dump in case of error (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Make mailboxes 4KB aligned (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: adjust transmit fail log message level in __mlxsw_emad_transmit (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Remove duplicate included header (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use change upper info (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use new helper to figure out master kind (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_bridge_master helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Add netlink support for vlan_protocol attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: fix error return code (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix netlink max attr size (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: hook ndo_neigh_destroy to cleanup neigh refs in driver (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: print switch ID consistent with phys_switch_id sysfs node (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: support static FDB addresses (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Use 'zx' to print size_t format (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for vlan_filtering attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Fix use-after-free bug in mlxsw_sx_port_xmit (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Use correct skb length when dumping payload (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Simplify mlxsw_sx_port_xmit function (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Strip FCS from incoming packets (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Make pci module dependent on HAS_DMA and HAS_IOMEM (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Make system port to local port mapping explicit (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Call free_netdev when removing port (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use netdev_err after register_netdev (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: NULL port if port probe fails (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: fix vlan_enabled access when vlans are not configured (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: add/del entry on all vlans if vlan_filter is enabled and vid is 0 (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: linearize skb in case frags would not fit into tx descriptor (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: enable support for scattered packets (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: free netdevice during netdevice removal (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Introduce Mellanox SwitchX-2 ASIC support (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Add interface to access registers and process events (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Add PCI bus implementation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Introduce Mellanox switch driver core (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: fix delmdb state in the notification (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mcast: give fast leave precedence over multicast router and querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: fix slave_changelink/br_setport race conditions (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: update documentation for offload_fwd_mark (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add offload_fwd_mark support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add offload_fwd_mark generator helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add phys ID compare helper to test if two IDs are the same (Ivan Vecera) [1275772 1297841 1331748]
-- [net] don't reforward packets already forwarded by offload device (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: forward packets to CPU when port is joined to openvswitch (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: multicast: fix handling of temp and perm entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: multicast: notify on group delete (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Handle protodown notifications (Ivan Vecera) [1275772 1297841 1331748]
-- [net] netlink: changes for setting and clearing protodown via netlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] Add protodown support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: add vlan support for user entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: don't abort unsupported operations (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: fill state in br_mdb_notify (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add change MTU support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: zero out the local br_ip variable before use (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: start delete timer for temp static entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: flush the dynamically learned entries on port vlan delete (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: ignore unsupported bridge flags (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: call correct unregister function on error (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: change BUG_ON to WARN for attr set failure case (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add VLAN support for port's bridge_getlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename vlan vid_start to vid_begin (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: multicast: start querier timer when running user-space stp (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fdb filter_dev is always NULL for self (device), so remove check (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix br_stp_set_bridge_priority race conditions (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: del external_learned fdbs from device on flush or ageout (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move port stop to 'no wait' processing (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move MAC learn event back to 'no wait' processing (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: mark STP update as 'no wait' processing (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: mark neigh update event processing as 'no wait' (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: revert back to support for nowait processes (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix neigh tbl index increment race (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: gaurd against NULL rocker_port when removing ports (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use either ndo VLAN ops or switchdev VLAN ops to install MASTER vlans (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix BUG when port driver doesn't support set attr op (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix handling for drivers not supporting IPv4 fib add/del ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: make br_fdb_delete also check if the port matches (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: documentation: use switchdev_port_obj_xxx for IPv4 FIB add/modify/delete ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: documentation: for static FDB ops, use switchdev_port_fdb_xxx ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: documentation: fix grammer error (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: documentation: fix longer-than-80-char lines (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove support for legacy VLAN ndo ops (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: install/remove router MAC for untagged VLAN when joining/leaving bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: install untagged VLAN (vid=0) support for each port (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: cleanup vlan table on error adding vlan (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: zero allocate ports array (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove rocker parameter from functions that have rocker_port parameter (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: mark parameters and local variables as const (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove unused rocker_port parameter from rocker_port_kfree (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix lockdep splat (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: make rocker_port_internal_vlan_id_{get, put}() non-transactional (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: do not make neighbour entry changes when preparing transactions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: do not modify fdb table in rocker_port_fdb() when preparing transactions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: do not delete fdb entries in rocker_port_fdb_flush() when preparing transactions (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add support for fdb add/del/dump via switchdev_port_obj ops. (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix a neigh entry leak issue (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rename RTNH_F_EXTERNAL to RTNH_F_OFFLOAD (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: don't use anonymous union on switchdev attr/obj structs (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: apply review comments on documentation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: align comment with other comments in block (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: sparse warning: pass ipv4 fib dst as network-byte order (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: sparse warning: make __switchdev_port_obj_add static (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: bring documentation up-to-date (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: make checkpatch -f clean (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove NETIF_F_HW_SWITCH_OFFLOAD feature flag (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: convert fib_ipv4_add/del over to switchdev_port_obj_add/del (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: cut over to new switchdev_port_bridge_getlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add new switchdev_port_bridge_getlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: revert br_dellink change back to original (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove unused switchdev_port_bridge_dellink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: cut over to new switchdev_port_bridge_dellink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add new switchdev_port_bridge_dellink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: restore br_setlink back to original (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove old switchdev_port_bridge_setlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: cut over to new switchdev_port_bridge_setlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add new switchdev bridge setlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add bridge port flags attr (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use switchdev add/del obj for bridge port vlans (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add port vlan obj (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce switchdev add/del obj ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: convert STP update to switchdev attr set (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: support prepare-commit transaction model (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: convert parent_id_get to switchdev attr get (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce get/set attrs ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: s/swdev_/switchdev_/ (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: s/netdev_switch_/switchdev_/ and s/NETDEV_SWITCH_/SWITCHDEV_/ (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Use ether_addr_equal (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix error return code in rocker_probe() (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: handle non-bridge master change (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix stp update API to work with layered netdevices (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: kernel-doc cleanup on swithdev ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add ageing_time, stp_state, priority over netlink (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add support for phys_port_name (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add support for phys_port_name (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: replace fixed stack allocation with dynamic allocation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove ndo ops for switchdev (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: use new swdev ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add swdev ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: correct spelling of notifier in comments (Ivan Vecera) [1275772 1297841 1331748]
-- [net] fib_trie: call fib_table_flush_external under RTNL (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add netlink flags to IPv4 FIB add op (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: use gpl variant of symbol export (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: sparse: fix dynamic allocation on stack warning (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: quiet sparce endianess warnings (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fib: make netdev_switch_fib_ipv4_abort in header file static inline (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix some sparse warnings (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix CONFIG_IP_MULTIPLE_TABLES compile issue (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement IPv4 fib offloading (Ivan Vecera) [1275772 1297841 1331748]
-- [net] fib: hook IPv4 fib for hardware offload (Ivan Vecera) [1275772 1297841 1331748]
-- [net] ipv4: add net bool fib_offload_disabled (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: implement IPv4 fib ndo wrappers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: don't support custom ip rules, for now (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add IPv4 fib ndo ops wrappers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] netdevice: add IPv4 fib add/del ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rtnetlink: add RTNH_F_EXTERNAL flag for fib offload (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix bridge netlink RCU usage (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add a check for NULL in rocker_probe_ports() (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix link notification skb size calculation to include vlan ranges (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: put port in FORWADING state after leaving bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: rename lport to pport (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix non-portable err return codes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add vlan info to bridge setlink and dellink notification messages (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Fix inability to add non-vlan fdb entry (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add missing bridge port check for offloads (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Add support for retrieving port level statistics (Ivan Vecera) [1275772 1297841 1331748]
-- [net] team: handle NETIF_F_HW_SWITCH_OFFLOAD flag and add ndo_bridge_setlink/dellink handlers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: handle NETIF_F_HW_SWITCH_OFFLOAD flag and add ndo_bridge_setlink/dellink handlers (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: set feature NETIF_F_HW_SWITCH_OFFLOAD (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: offload bridge port attributes to switch asic if feature flag set (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add new apis to set and del bridge port attributes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] netdev: introduce new NETIF_F_HW_SWITCH_OFFLOAD feature flag for switch device offloads (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix typo in inline function definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Add basic netdev counters (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: replace br_fdb_external_learn_* calls with switchdev notifier events (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce switchdev notifier (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix harmless warning on 32-bit machines (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Do not call ndo_dflt_fdb_dump if ndo_fdb_dump is defined (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: remove mode BRIDGE_MODE_SWDEV (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove swdev mode (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Add dependency to CONFIG_BRIDGE in Kconfig (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix eth_type type in struct rocker_ctrl (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: introduce be put/get variants and use it when appropriate (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Use logical operators on booleans (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Add proper validation of Netlink attributes (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add ndo_bridge_setlink/getlink support for learning policy (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement ndo_fdb_dump (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement L2 bridge offloading (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement rocker ofdpa flow table manipulation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: introduce rocker switch driver (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add new hwmode swdev (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add API to notify bridge driver of learned FBD on offloaded device (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: call netdev_sw_port_stp_update when bridge port STP status changes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] sysfs: expose physical switch id for particular device (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rtnl: expose physical switch id for particular device (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce generic switch devices support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: convert flags in fbd entry into bitfields (Ivan Vecera) [1275772 1297841 1331748]
-- [net] neigh: sort Neighbor Cache Entry Flags (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: rename fdb_*_hw to fdb_*_hw_addr to avoid confusion (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add a br_set_state helper function (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Fix br_should_learn to check vlan_enabled (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Allow clearing of pvid and untagged bitmap (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Check if vlan filtering is enabled only once (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: implement rtnl_link_ops->changelink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] revise "bridge: implement rtnl_link_ops->get_size and rtnl_link_ops->fill_info" (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: implement rtnl_link_ops->slave_changelink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: implement rtnl_link_ops->get_slave_size and rtnl_link_ops->fill_slave_info (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: switch order of rx_handler reg and upper dev link (Ivan Vecera) [1275772 1297841 1331748]
-- [documentation] net: ABI/testing: Spelling s/calss/class/ (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Update outdated comment on promiscuous mode (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink dump interface at par with brctl (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Support 802.1ad vlan filtering (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Prepare for forwarding another bridge group addresses (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Add 802.1ad tx vlan acceleration (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: rename struct bridge_mcast_query/querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] revert "bridge: Program port vlan filters only if filtering is enabled in bridge" (Ivan Vecera) [1275772 1297841 1331748]
-- [documentation] net: sysfs: add missing phys_port_id documentation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: make br_device_notifier static (Ivan Vecera) [1275772 1297841 1331748]
-- [documentation] net: sysfs: add Documentation entries for basic set of attributes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use is_skb_forwardable in forward path (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: move br_net_exit() to br.c (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use DEVICE_ATTR_xx macros (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: remove unnecessary parentheses (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: spelling fixes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use the bridge IP addr as source addr for querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: fix sb register stub in case devlink is disabled (Ivan Vecera) [1297841]
-- [net] devlink: implement shared buffer occupancy monitoring interface (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: add shared buffer configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: add missing install of header (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: share user_ptr pointer for both devlink and devlink_port (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: remove implicit type set in port register (Ivan Vecera) [1275772 1297841 1331748]
-
-* Wed Nov 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-524.el7]
-- [tools] perf ctf: Convert invalid chars in a string before set value (Jiri Olsa) [1373817]
-- [tools] perf record: Fix crash when kptr is restricted (Jiri Olsa) [1373817]
-- [tools] perf symbols: Check kptr_restrict for root (Jiri Olsa) [1373817]
-- [tools] kbuild: rename cmd_cc_i_c to cmd_cpp_i_c (Jiri Olsa) [1373817]
-- [tools] perf record: Read from backward ring buffer (Jiri Olsa) [1373817]
-- [tools] perf record: Rename variable to make code clear (Jiri Olsa) [1373817]
-- [tools] perf record: Prevent reading invalid data in record__mmap_read (Jiri Olsa) [1373817]
-- [tools] perf evlist: Add API to pause/resume (Jiri Olsa) [1373817]
-- [tools] perf trace: Use the ptr->name beautifier as default for "filename" args (Jiri Olsa) [1373817]
-- [tools] perf trace: Use the fd->name beautifier as default for "fd" args (Jiri Olsa) [1373817]
-- [tools] perf report: Add srcline_from/to branch sort keys (Jiri Olsa) [1373817]
-- [tools] perf evsel: Record fd into perf_mmap (Jiri Olsa) [1373817]
-- [tools] perf evsel: Add overwrite attribute and check write_backward (Jiri Olsa) [1373817]
-- [tools] perf tools: Set buildid dir under symfs when --symfs is provided (Jiri Olsa) [1373817]
-- [tools] perf trace: Only auto set call-graph to "dwarf" when syscalls are being traced (Jiri Olsa) [1373817]
-- [tools] perf annotate: Sort list of recognised instructions (Jiri Olsa) [1373817]
-- [tools] perf annotate: Fix identification of ARM blt and bls instructions (Jiri Olsa) [1373817]
-- [tools] perf trace: Fix exit_group() formatting (Jiri Olsa) [1373817]
-- [tools] perf top: Use machine->kptr_restrict_warned (Jiri Olsa) [1373817]
-- [tools] perf trace: Warn when trying to resolve kernel addresses with kptr_restrict=1 (Jiri Olsa) [1373817]
-- [tools] perf machine: Do not bail out if not managing to read ref reloc symbol (Jiri Olsa) [1373817]
-- [tools] perf symbols: Introduce DSO__NAME_KALLSYMS and DSO__NAME_KCORE (Jiri Olsa) [1373817]
-- [tools] perf stat: Use cpu-clock event for cpu targets (Jiri Olsa) [1373817]
-- [tools] perf stat: Update runtime using cpu-clock event (Jiri Olsa) [1373817]
-- [tools] perf stat: Fix indentation of stalled backend cycle (Jiri Olsa) [1373817]
-- [tools] perf symbols: Store vdso buildid unconditionally (Jiri Olsa) [1373817]
-- [tools] perf stat: Avoid fractional digits for integer scales (Jiri Olsa) [1373817]
-- [tools] perf tools: Fix perf regs mask generation (Jiri Olsa) [1373817]
-- [tools] perf/powerpc: Add support for unwinding perf-stackdump (Jiri Olsa) [1373817]
-- [tools] perf: Fix misspellings in comments (Jiri Olsa) [1373817]
-- [tools] perf buildid-cache: Use lsdir() for looking up buildid caches (Jiri Olsa) [1373817]
-- [tools] perf symbols: Use lsdir() for the search in kcore cache directory (Jiri Olsa) [1373817]
-- [tools] perf tools: Use SBUILD_ID_SIZE where applicable (Jiri Olsa) [1373817]
-- [tools] perf tools: Fix lsdir to set errno correctly (Jiri Olsa) [1373817]
-- [tools] perf trace: Move seccomp args beautifiers to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf trace: Move flock op beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf build: Add build-test for debug-frame on arm/arm64 (Jiri Olsa) [1373817]
-- [tools] perf build: Add build-test for libunwind cross-platforms support (Jiri Olsa) [1373817]
-- [tools] perf script: Fix export of callchains with recursion in db-export (Jiri Olsa) [1373817]
-- [tools] perf script: Fix callchain addresses in db-export (Jiri Olsa) [1373817]
-- [tools] perf script: Fix symbol insertion behavior in db-export (Jiri Olsa) [1373817]
-- [tools] perf symbols: Add dso__insert_symbol function (Jiri Olsa) [1373817]
-- [tools] perf scripting python: Use Py_FatalError instead of die() (Jiri Olsa) [1373817]
-- [tools] perf tools: Remove xrealloc and ALLOC_GROW (Jiri Olsa) [1373817]
-- [tools] perf help: Do not use ALLOC_GROW in add_cmd_list (Jiri Olsa) [1373817]
-- [tools] perf pmu: Make pmu_formats_string to check return value of strbuf (Jiri Olsa) [1373817]
-- [tools] perf header: Make topology checkers to check return value of strbuf (Jiri Olsa) [1373817]
-- [tools] perf tools: Make alias handler to check return value of strbuf (Jiri Olsa) [1373817]
-- [tools] perf help: Make check_emacsclient_version to check strbuf APIs (Jiri Olsa) [1373817]
-- [tools] perf probe: Check the return value of strbuf APIs (Jiri Olsa) [1373817]
-- [tools] perf tools: Rewrite strbuf not to die() (Jiri Olsa) [1373817]
-- [tools] perf symbols: Fix handling of zero-length symbols (Jiri Olsa) [1373817]
-- [tools] perf evsel: Print state of perf_event_attr.write_backward (Jiri Olsa) [1373817]
-- [tools] perf tests: Add test to check backward ring buffer (Jiri Olsa) [1373817]
-- [tools] perf tools: Support reading from backward ring buffer (Jiri Olsa) [1373817]
-- [tools] perf script: Fix incorrect python db-export error message (Jiri Olsa) [1373817]
-- [tools] perf stat: Scale values by unit before metrics (Jiri Olsa) [1373817]
-- [tools] perf callchain: Recording 'dwarf' callchains do not need DWARF unwinding support (Jiri Olsa) [1373817]
-- [tools] perf trace: Move futex_op beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf trace: Move open_flags beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf trace: Move signum beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf stat: Add extra output of counter values with -vv (Jiri Olsa) [1373817]
-- [tools] perf script: Update export-to-postgresql to support callchain export (Jiri Olsa) [1373817]
-- [tools] perf script: Expose usage of the callchain db export via the python api (Jiri Olsa) [1373817]
-- [tools] perf script: Add call path id to exported sample in db export (Jiri Olsa) [1373817]
-- [tools] perf script: Enable db export to output sampled callchains (Jiri Olsa) [1373817]
-- [tools] perf tools: Refactor code to move call path handling out of thread-stack (Jiri Olsa) [1373817]
-- [tools] perf callchain: Fix incorrect ordering of entries (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not print raw args list for syscalls with no args (Jiri Olsa) [1373817]
-- [tools] perf evlist: Rename variable in perf_mmap__read() (Jiri Olsa) [1373817]
-- [tools] perf evlist: Extract perf_mmap__read() (Jiri Olsa) [1373817]
-- [tools] perf symbols: Fix kallsyms perf test on ppc64le (Jiri Olsa) [1373817 1376534]
-- [tools] perf powerpc: Fix kprobe and kretprobe handling with kallsyms on ppc64le (Jiri Olsa) [1373817 1376534]
-- [tools] perf hists: Move sort__has_comm into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_thread into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_socket into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_dso into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_sym into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_parent into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__need_collapse into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf tools powerpc: Add support for generating bpf prologue (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not show the runtime_ms for a thread when not collecting it (Jiri Olsa) [1373817]
-- [tools] perf trace: Sort syscalls stats by msecs in --summary (Jiri Olsa) [1373817]
-- [tools] perf trace: Sort summary output by number of events (Jiri Olsa) [1373817]
-- [tools] perf tools: Add template for generating rbtree resort class (Jiri Olsa) [1373817]
-- [tools] perf machine: Introduce number of threads member (Jiri Olsa) [1373817]
-- [tools] perf tests: Do not use sizeof on pointer type (Jiri Olsa) [1373817]
-- [tools] perf trace: Move msg_flags beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf record: Generate tracking events for process forked by perf (Jiri Olsa) [1373817]
-- [tools] perf record: Disable buildid cache options by default in switch output mode (Jiri Olsa) [1373817]
-- [tools] perf record: Force enable --timestamp-filename when --switch-output is provided (Jiri Olsa) [1373817]
-- [tools] perf record: Split output into multiple files via '--switch-output' (Jiri Olsa) [1373817]
-- [tools] perf tools: Derive trigger class from auxtrace_snapshot (Jiri Olsa) [1373817]
-- [tools] perf tools: Introduce trigger class (Jiri Olsa) [1373817]
-- [tools] perf probe: Use strbuf for making strings (Jiri Olsa) [1373817]
-- [tools] perf evsel: Remove two extraneous ending newlines in open_strerror() (Jiri Olsa) [1373817]
-- [tools] perf evsel: Handle ENOMEM for perf_event_max_stack + PERF_SAMPLE_CALLCHAIN (Jiri Olsa) [1373817]
-- [tools] perf tools: Set the maximum allowed stack from /proc/sys/kernel/perf_event_max_stack (Jiri Olsa) [1373817]
-- [tools] perf bench: Remove one more die() call (Jiri Olsa) [1373817]
-- [tools] perf probe: Fix module probe issue if no dwarf support (Jiri Olsa) [1373817]
-- [tools] perf probe: Fix offline module name missmatch issue (Jiri Olsa) [1373817]
-- [tools] perf trace: Read thread's COMM from /proc when not set (Jiri Olsa) [1373817]
-- [tools] perf thread: Introduce method to set comm from /proc/pid/self (Jiri Olsa) [1373817]
-- [tools] lib api fs: Add helper to read string from procfs file (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not beautify the 'pid' parameter as a simple integer (Jiri Olsa) [1373817]
-- [tools] perf trace: Move perf_flags beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf probe: Set default kprobe group name if it is not given (Jiri Olsa) [1373817]
-- [tools] perf probe: Let probe_file__add_event return 0 if succeeded (Jiri Olsa) [1373817]
-- [tools] perf tools: Add lsdir() helper to read a directory (Jiri Olsa) [1373817]
-- [tools] perf probe: Close target file on error path (Jiri Olsa) [1373817]
-- [tools] perf evlist: Enforce ring buffer reading (Jiri Olsa) [1373817]
-- [tools] perf hists: Clear dummy entry accumulated period (Jiri Olsa) [1373817]
-- [tools] perf intel-pt: Fix off-by-one comparison on maximum code (Jiri Olsa) [1373817]
-- [tools] perf bench futex: Simplify wrapper for LOCK_PI (Jiri Olsa) [1373817]
-- [tools] perf tests: Replace assignment with comparison on assert check (Jiri Olsa) [1373817]
-- [tools] perf tools: Remove duplicate const qualifier (Jiri Olsa) [1373817]
-- [tools] perf tools: Make the x86 clean quiet (Jiri Olsa) [1373817]
-- [tools] perf evlist: Decode perf_event_attr->branch_sample_type (Jiri Olsa) [1373817]
-- [tools] perf trace: Make --pf honour --min-stack too (Jiri Olsa) [1373817]
-- [tools] perf trace: Make --event honour --min-stack too (Jiri Olsa) [1373817]
-- [tools] perf script: Fix segfault when printing callchains (Jiri Olsa) [1373817]
-- [tools] perf trace: Make --pf maj/min/all use callchains too (Jiri Olsa) [1373817]
-- [tools] perf trace: Extract evsel contructor from perf_evlist__add_pgfault (Jiri Olsa) [1373817]
-- [tools] perf buildid: Fix off-by-one in write_buildid() (Jiri Olsa) [1373817]
-- [tools] perf test: Add missing verbose output explaining the reason for failure (Jiri Olsa) [1373817]
-- [tools] perf test: Ignore kcore files in the "vmlinux matches kallsyms" test (Jiri Olsa) [1373817]
-- [tools] perf symbols: Allow loading kallsyms without considering kcore files (Jiri Olsa) [1373817]
-- [tools] perf build: Remove x86 references from arch-neutral Build (Jiri Olsa) [1373817]
-- [tools] perf jit: memset() variable 'st' using the correct size (Jiri Olsa) [1373817]
-- [tools] perf script: Fix postgresql ubuntu install instructions (Jiri Olsa) [1373817]
-- [tools] perf top: Use callchain_param.enabled instead of symbol_conf.use_callchain (Jiri Olsa) [1373817]
-- [tools] perf hists browser: Fold two consecutive symbol_conf.use_callchain ifs (Jiri Olsa) [1373817]
-- [tools] perf tools: Ditch record_opts.callgraph_set (Jiri Olsa) [1373817]
-- [tools] perf report: Use callchain_param.enabled instead of tool specific knob (Jiri Olsa) [1373817]
-- [tools] perf callchain: Set callchain_param.enabled when parsing --call-graph (Jiri Olsa) [1373817]
-- [tools] perf script: Check sample->callchain before using it (Jiri Olsa) [1373817]
-- [tools] perf evsel: Add missign class prefix to has_branch_stack method (Jiri Olsa) [1373817]
-- [tools] perf trace: Fix build when DWARF unwind isn't available (Jiri Olsa) [1373817]
-- [tools] perf trace: Bump --mmap-pages when --call-graph is used by the root user (Jiri Olsa) [1373817]
-- [tools] perf evlist: Expose perf_event_mlock_kb_in_pages() helper (Jiri Olsa) [1373817]
-- [tools] perf trace: Make --(min, max}-stack imply "--call-graph dwarf" (Jiri Olsa) [1373817]
-- [tools] perf record: Export record_opts based callchain parsing helper (Jiri Olsa) [1373817]
-- [tools] perf trace: Introduce --min-stack filter (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not print interrupted syscalls when using --duration (Jiri Olsa) [1373817]
-- [tools] perf evsel: Move fprintf methods to separate source file (Jiri Olsa) [1373817]
-- [tools] perf trace: Add --max-stack knob (Jiri Olsa) [1373817]
-- [tools] perf script: Add --max-stack knob (Jiri Olsa) [1373817]
-- [tools] perf tools: Remove addr_location argument to sample__fprintf_callchain (Jiri Olsa) [1373817]
-- [tools] perf evsel: Require that callchains be resolved before calling fprintf_{sym, callchain} (Jiri Olsa) [1373817]
-- [tools] perf symbols: Move fprintf routines to separate object file (Jiri Olsa) [1373817]
-- [tools] perf evsel: Remove symbol_conf usage (Jiri Olsa) [1373817]
-- [tools] perf callchain: Start moving away from global per thread cursors (Jiri Olsa) [1373817]
-- [tools] perf trace: Move socket_type beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf config: Make show_config() use perf_config_set (Jiri Olsa) [1373817]
-- [tools] perf config: Introduce perf_config_set class (Jiri Olsa) [1373817]
-- [tools] perf record: Add '--timestamp-filename' option to append timestamp to output file name (Jiri Olsa) [1373817]
-- [tools] perf record: Turns auxtrace_snapshot_enable into 3 states (Jiri Olsa) [1373817]
-- [tools] perf data: Add perf_data_file__switch() helper (Jiri Olsa) [1373817]
-- [tools] perf session: Make ordered_events reusable (Jiri Olsa) [1373817]
-- [tools] perf ordered_events: Introduce reinit() (Jiri Olsa) [1373817]
-- [tools] perf trace: Move eventfd beautifiers to trace/beauty/ directory (Jiri Olsa) [1373817]
-- [tools] perf trace: Move mmap beautifiers to trace/beauty/ directory (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not accept --no-syscalls together with -e (Jiri Olsa) [1373817]
-- [tools] perf evsel: Move some methods from session.[ch] to evsel.[ch] (Jiri Olsa) [1373817]
-- [tools] perf sched map: Display only given cpus (Jiri Olsa) [1373817]
-- [tools] perf sched map: Color given cpus (Jiri Olsa) [1373817]
-- [tools] perf sched map: Color given pids (Jiri Olsa) [1373817]
-- [tools] perf thread_map: Make new_by_tid_str constructor public (Jiri Olsa) [1373817]
-- [tools] perf sched: Use color_fprintf for output (Jiri Olsa) [1373817]
-- [tools] perf sched: Add compact display option (Jiri Olsa) [1373817]
-- [tools] perf cpu_map: Add has() method (Jiri Olsa) [1373817]
-- [tools] perf thread_map: Add has() method (Jiri Olsa) [1373817]
-- [tools] perf trace: Support callchains for --event too (Jiri Olsa) [1373817]
-- [tools] perf trace: Print unresolved symbol names as addresses (Jiri Olsa) [1373817]
-- [tools] perf evsel: Allow unresolved symbol names to be printed as addresses (Jiri Olsa) [1373817]
-- [tools] perf trace: Make "--call-graph" affect just "raw_syscalls:sys_exit" (Jiri Olsa) [1373817]
-- [tools] perf evsel: Rename config_callgraph() to config_callchain() and make it public (Jiri Olsa) [1373817]
-- [tools] perf evlist: Add (reset, set)_sample_bit methods (Jiri Olsa) [1373817]
-- [tools] perf evsel: Do not use globals in config() (Jiri Olsa) [1373817]
-- [tools] perf trace: Exclude the kernel part of the callchain leading to a syscall (Jiri Olsa) [1373817]
-- [tools] perf evsel: Introduce fprintf_callchain() method out of fprintf_sym() (Jiri Olsa) [1373817]
-- [tools] perf evsel: Rename print_ip() to fprintf_sym() (Jiri Olsa) [1373817]
-- [tools] perf trace: Add support for printing call chains on sys_exit events (Jiri Olsa) [1373817]
-- [tools] perf evsel: Allow passing a left alignment when printing a symbol (Jiri Olsa) [1373817]
-- [tools] perf evsel: Allow specifying a file to output in perf_evsel__print_ip (Jiri Olsa) [1373817]
-- [tools] perf symbols: Adjust symbol for shared objects (Jiri Olsa) [1373817]
-- [tools] perf symbols: Record text offset in dso to calculate objdump address (Jiri Olsa) [1373817]
-- [tools] perf tools: Build syscall table .c header from kernel's syscall_64.tbl (Jiri Olsa) [1373817]
-- [tools] perf tools: Allow generating per-arch syscall table arrays (Jiri Olsa) [1373817]
-- [tools] perf trace: Move syscall table id <-> name routines to separate class (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify mode_t arguments (Jiri Olsa) [1373817]
-- [tools] perf script: Process event update events (Jiri Olsa) [1373817]
-- [tools] perf tools: Add dedicated unwind addr_space member into thread struct (Jiri Olsa) [1373817]
-- [tools] perf tools: Introduce trim function (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify pid_t arguments (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify set_tid_address, getpid, getppid return values (Jiri Olsa) [1373817]
-- [tools] perf trace: Infrastructure to show COMM strings for syscalls returning PIDs (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify wait4/waitid 'options' argument (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify sched_setscheduler 'policy' argument (Jiri Olsa) [1373817]
-- [tools] perf list: Document event specifications better (Jiri Olsa) [1373817]
-- [tools] perf tools: Remove superfluous ARCH Makefile includes (Jiri Olsa) [1373817]
-- [tools] perf script perl: Do error checking on new backtrace routine (Jiri Olsa) [1373817]
-- [tools] perf config: Fix build with older toolchain (Jiri Olsa) [1373817]
-- [tools] perf trace: Don't set the base timestamp using events without PERF_SAMPLE_TIME (Jiri Olsa) [1373817]
-- [tools] perf trace: Introduce function to set the base timestamp (Jiri Olsa) [1373817]
-- [tools] perf tools: Fix PMU term format max value calculation (Jiri Olsa) [1373817]
-- [tools] perf intel-pt/bts: Define JITDUMP_USE_ARCH_TIMESTAMP (Jiri Olsa) [1373817]
-- [tools] perf jit: Add support for using TSC as a timestamp (Jiri Olsa) [1373817]
-- [tools] perf tools: Add time conversion event (Jiri Olsa) [1373817]
-- [tools] perf trace: Add getrandom beautifier related defines for older systems (Jiri Olsa) [1373817]
-- [tools] perf trace: Add seccomp beautifier related defines for older systems (Jiri Olsa) [1373817]
-- [tools] perf trace: Pretty print getrandom() args (Jiri Olsa) [1373817]
-- [tools] perf trace: Pretty print seccomp() args (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not process PERF_RECORD_LOST twice (Jiri Olsa) [1373817]
-- [tools] perf tools: Add support for skipping itrace instructions (Jiri Olsa) [1373817]
-- [tools] perf script perl: Perl scripts now get a backtrace, like the python ones (Jiri Olsa) [1373817]
-- [tools] perf config: Rename 'v' to 'home' in set_buildid_dir() (Jiri Olsa) [1373817]
-- [tools] perf config: Rework buildid_dir_command_config to perf_buildid_config (Jiri Olsa) [1373817]
-- [tools] perf config: Remove duplicated set_buildid_dir calls (Jiri Olsa) [1373817]
-- [tools] perf tests: Add test to check for event times (Jiri Olsa) [1373817]
-- [tools] perf tools: Make -f/--force option documentation consistent across tools (Jiri Olsa) [1373817]
-- [tools] perf tools: Make hists__collapse_insert_entry static (Jiri Olsa) [1373817]
-- [tools] perf mem: Add -U/-K (--all-user/--all-kernel) options (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel: Update event constraints when HT is off (Jiri Olsa) [1373817]
-- [kernel] perf/core: Remove a redundant check (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/uncore: Remove SBOX support for Broadwell server (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/rapl: Fix pmus free during cleanup (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/p4: Trival indentation fix, remove space (Jiri Olsa) [1373817]
-- [kernel] perf: optimize perf_fetch_caller_regs (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Convert ACCESS_ONCE()s (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Export CPU frequency ratios needed by PT decoders (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Bypass PT vs. LBR exclusivity if the core supports it (Jiri Olsa) [1373817]
-- [kernel] perf/core: Let userspace know if the PMU supports address filters (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Add support for address range filtering in PT (Jiri Olsa) [1373817]
-- [kernel] perf/core: Introduce address range filtering (Jiri Olsa) [1373817]
-- [kernel] perf/core: Extend perf_event_aux_ctx() to optionally iterate through more events (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Add IP filtering register/CPUID bits (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Move PT specific MSR bit definitions to a private header (Jiri Olsa) [1373817]
-- [kernel] perf/core: Move set_filter() out of CONFIG_EVENT_TRACING (Jiri Olsa) [1373817]
-- [kernel] perf/core: Add ::write_backward attribute to perf event (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel: Add LBR filter support for Silvermont and Airmont CPUs (Jiri Olsa) [1373817]
-- [x86] perf/x86/amd/uncore: Do not register a task ctx for uncore PMUs (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Use boot_cpu_has() because it's there (Jiri Olsa) [1373817]
-- [kernel] perf/ring_buffer: Prepare writing into the ring-buffer from the end (Jiri Olsa) [1373817]
-- [kernel] perf/core: Set event's default ::overflow_handler() (Jiri Olsa) [1373817]
-- [kernel] perf/ring_buffer: Introduce new ioctl options to pause and resume the ring-buffer (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/bts: Move transaction start/stop to start/stop callbacks (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Move transaction start/stop to PMU start/stop callbacks (Jiri Olsa) [1373817]
-- [kernel] perf/ring_buffer: Document AUX API usage (Jiri Olsa) [1373817]
-- [kernel] perf/core: Free AUX pages in unmap path (Jiri Olsa) [1373817]
-- [kernel] perf/ring_buffer: Refuse to begin AUX transaction after rb->aux_mmap_count drops (Jiri Olsa) [1373817]
-- [kernel] perf/core: Verify we have a single perf_hw_context PMU (Jiri Olsa) [1373817]
-
-* Wed Nov 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-523.el7]
-- [kernel] rcu: sysctl: Panic on RCU Stall (Lauro Ramos Venancio) [1360867]
-- [kernel] sched/core: Panic on scheduling while atomic bugs if kernel.panic_on_warn is set (Lauro Ramos Venancio) [1360867]
-- [kernel] sched: Fix possible divide by zero in avg_atom() calculation (Mateusz Guzik) [1392466]
-- [kernel] printk: avoid livelock if another CPU printks continuously (Denys Vlasenko) [1294066]
-- [x86] smp: Fix __max_logical_packages value setup (Prarit Bhargava) [1394239]
-- [x86] revert "smp: Fix __max_logical_packages value setup" (Prarit Bhargava) [1394239]
-- [net] ipv6: add mtu lock check in __ip6_rt_update_pmtu (Xin Long) [1389210]
-- [net] Fix use after free in the recvmmsg exit path (Davide Caratti) [1390047] {CVE-2016-7117}
-- [net] pktgen: fix pkt_size (Paolo Abeni) [1381652]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Do not set MPI2_TYPE_CUDA for JBOD FP path for FW which does not support JBOD sequence map (Tomas Henzl) [1380441]
-- [scsi] megaraid_sas: Send SYNCHRONIZE_CACHE for VD to firmware (Tomas Henzl) [1380447]
-- [scsi] megaraid_sas: Do not fire DCMDs during PCI shutdown/detach (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Send correct PhysArm to FW for R1 VD downgrade (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: For SRIOV enabled firmware, ensure VF driver waits for 30secs before reset (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Fix data integrity failure for JBOD (passthrough) devices (Tomas Henzl) [1380447]
-- [scsi] megaraid_sas: fix macro MEGASAS_IS_LOGICAL to avoid regression (Tomas Henzl) [1380447]
-- [scsi] megaraid_sas: clean function declarations in megaraid_sas_base.c up (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: add in missing white space in error message text (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Fix the search of first memory bar (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Use memdup_user() rather than duplicating its implementation (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Fix probing cards without io port (Tomas Henzl) [1396165]
-- [scsi] vmw_pvscsi: return SUCCESS for successful command aborts (Ewan Milne) [1394172]
-- [virtio] virtio-pci: alloc only resources actually used (Laurent Vivier) [1375153]
-- [netdrv] ibmvnic: Unmap ibmvnic_statistics structure (Steve Best) [1394911]
-- [netdrv] ibmveth: Add function to enable live MAC address changes (Laurent Vivier) [1375165]
-- [security] keys: Fix short sprintf buffer in /proc/keys show function (Frantisek Hrbata) [1375209] {CVE-2016-7042}
-
-* Tue Nov 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-522.el7]
-- [netdrv] net/hyperv: avoid uninitialized variable (Vitaly Kuznetsov) [1392220]
-- [netdrv] netvsc: Remove mistaken udp.h inclusion (Vitaly Kuznetsov) [1392220]
-- [netdrv] netvsc: fix checksum on UDP IPV6 (Vitaly Kuznetsov) [1392220]
-- [netdrv] hv_netvsc: add ethtool statistics for tx packet issues (Vitaly Kuznetsov) [1392220]
-- [netdrv] hv_netvsc: rearrange start_xmit (Vitaly Kuznetsov) [1392220]
-- [netdrv] allow macvlans to move to net namespace (Jarod Wilson) [1368830]
-- [netdrv] ixgbe: test for trust in macvlan adjustments for vf (Ken Cox) [1379787]
-- [kernel] timekeeping: Copy the shadow-timekeeper over the real timekeeper last (Prarit Bhargava) [1344747]
-- [x86] tsc: Add additional Intel CPU models to the crystal quirk list (Prarit Bhargava) [1369419]
-- [x86] tsc: Use cpu id defines instead of hex constants (Prarit Bhargava) [1369419]
-- [x86] kexec: Fix kexec crash in syscall kexec_file_load() (Pingfan Liu) [1385109]
-- [char] hwrng: core - sleep interruptible in read (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - correct error check of kthread_run call (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Move hwrng_init call into set_current_rng (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Drop current rng in set_current_rng (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Do not register device opportunistically (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Fix current_rng init/cleanup race yet again (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Use struct completion for cleanup_done (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: don't init list element we're about to add to list (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: don't double-check old_rng (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: fix unregister race (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: use reference counts on each struct hwrng (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: move some code out mutex_lock for avoiding underlying deadlock (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: place mutex around read functions and buffers (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] virtio-rng: skip reading when we start to remove the device (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] virtio-rng: fix stuck of hot-unplugging busy device (Amit Shah) [1081431 1271481 1376397 1377050]
-- [misc] cxl: Prevent adapter reset if an active context exists (Gustavo Duarte) [1388222]
-- [powerpc] rtas: Validate rtas.entry before calling enter_rtas() (Gustavo Duarte) [1386560]
-- [powerpc] powernv: Drop reference added by kset_find_obj() (Steve Best) [1394164]
-- [powerpc] mm: Prevent unlikely crash in copro_calculate_slb() (Steve Best) [1392448]
-- [powerpc] xmon: Add xmon command to dump process/task similar to ps(1) (Steve Best) [1391565]
-- [watchdog] hpwdt: remove email address from doc (Linda Knippers) [1323290]
-- [watchdog] hpwdt: Adjust documentation to match latest kernel module parameters (Linda Knippers) [1323290]
-
-* Fri Nov 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-521.el7]
-- [fs] Retry operation on EREMOTEIO on an interrupted slot (Steve Dickson) [1378981]
-- [fs] ext4: pre-zero allocated blocks for DAX IO (Eric Sandeen) [1367989]
-- [x86] apic, doc: Justification for disabling IO APIC before Local APIC (Prarit Bhargava) [1384277]
-- [x86] apic: Disable I/O APIC before shutdown of the local APIC (Prarit Bhargava) [1384277]
-- [scsi] megaraid-sas: request irqs later (Tomas Henzl) [1392978]
-- [netdrv] i40e: Fix errors resulted while turning off TSO (Stefan Assmann) [1378509]
-- [powerpc] eeh: eeh_pci_enable(): fix checking of post-request state (Steve Best) [1383670]
-
-* Thu Nov 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-520.el7]
-- [firmware] efi: Fix usage of illegal alignment on efi_low_alloc (Lenny Szubowicz) [1387689]
-- [net] tcp: fix use after free in tcp_xmit_retransmit_queue() (Mateusz Guzik) [1379531] {CVE-2016-6828}
-- [net] team: Fixing a bug in team driver due to incorrect 'unsigned int' to 'int' conversion (Hangbin Liu) [1382098]
-- [net] sctp: not return ENOMEM err back in sctp_packet_transmit (Xin Long) [1371362]
-- [net] sctp: make sctp_outq_flush/tail/uncork return void (Xin Long) [1371362]
-- [net] sctp: save transmit error to sk_err in sctp_outq_flush (Xin Long) [1371362]
-- [net] sctp: free msg->chunks when sctp_primitive_SEND return err (Xin Long) [1371362]
-- [net] sctp: do not return the transmit err back to sctp_sendmsg (Xin Long) [1371362]
-- [net] sctp: remove the unnecessary state check in sctp_outq_tail (Xin Long) [1371362]
-- [net] vxlan: fix duplicated and wrong error messages (Jiri Benc) [1366024]
-- [net] vxlan: reject multicast destination without an interface (Jiri Benc) [1366024]
-- [net] netdev, sched/wait: Fix sleeping inside wait event (Paolo Abeni) [1382175]
-- [net] Separate the close_list and the unreg_list (Paolo Abeni) [1382175]
-
-* Thu Nov 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-519.el7]
-- [hv] do not lose pending heartbeat vmbus packets (Vitaly Kuznetsov) [1378615]
-- [net] openvswitch: avoid deferred execution of recirc actions (Lance Richardson) [1370643]
-- [net] ipv4: Use math to point per net sysctls into the appropriate struct net (Eric Garver) [1363661]
-- [x86] cpu/intel: Add Knights Mill to Intel family (Steve Best) [1380829]
-- [x86] kvm: lapic: cap __delay at lapic_timer_advance_ns (Marcelo Tosatti) [1389431]
-- [x86] kvm: x86: move nsec_to_cycles from x86.c to x86.h (Marcelo Tosatti) [1389431]
-- [tty] serial/8250: Touch NMI watchdog in wait_for_xmitr (Jiri Olsa) [1377938]
-- [acpi] acpi / scan: use platform bus type by default for _HID enumeration (Tony Camuso) [1383505]
-- [acpi] acpi / scan: introduce platform_id device PNP type flag (Tony Camuso) [1383505]
-- [char] ipmi: Convert the IPMI SI ACPI handling to a platform device (Tony Camuso) [1383505]
-- [vfio] pci: Fix ordering of eventfd vs virqfd shutdown (Alex Williamson) [1322026]
-- [netdrv] netvsc: fix incorrect receive checksum offloading (Vitaly Kuznetsov) [1388702]
-- [watchdog] hpwdt: add support for iLO5 (Linda Knippers) [1382798]
-
-* Tue Nov 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-518.el7]
-- [spi] spi-gpio: Fix compiler warning when building for 64 bit systems (Prarit Bhargava) [1373655]
-- [spi] spi-gpio: Add dt support for a single device with no chip select (Prarit Bhargava) [1373655]
-- [misc] mei: me: disable driver on SPT SPS firmware (Jeremy McNicoll) [1369645]
-- [acpi] acpi / ipmi: Cleanup coding styles (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Cleanup some inclusion codes (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Cleanup some initialization codes (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Cleanup several acpi_ipmi_device members (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Add reference counting for ACPI IPMI transfers (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Use global IPMI operation region handler (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Fix race caused by the unprotected ACPI IPMI user (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Fix race caused by the timed out ACPI IPMI transfers (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Fix race caused by the unprotected ACPI IPMI transfers (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Fix potential response buffer overflow (David Arcari) [1373703]
-- [kernel] sched/core, x86/topology: Fix NUMA in package topology bug (Jiri Olsa) [1369832]
-- [kernel] sched: Allow hotplug notifiers to be setup early (Jiri Olsa) [1369832]
-- [cpufreq] Ref the policy object sooner (Oleksandr Natalenko) [1382608]
-- [cpufreq] expose scaling_cur_freq sysfs file for set_policy() drivers (Oleksandr Natalenko) [1382608]
-- [lib] kobject: WARN as tip when call kobject_get() to a kobject not initialized (Oleksandr Natalenko) [1382608]
-- [cpufreq] Set cpufreq_cpu_data to NULL before putting kobject (Oleksandr Natalenko) [1382608]
-
-* Mon Oct 31 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-517.el7]
-- [fs] fanotify: fix list corruption in fanotify_get_response() (Miklos Szeredi) [1362421]
-- [fs] fsnotify: add a way to stop queueing events on group shutdown (Miklos Szeredi) [1362421]
-- [fs] dlm: Remove lock_sock to avoid scheduling while atomic (Robert S Peterson) [1377391]
-- [fs] sunrpc: move NO_CRKEY_TIMEOUT to the auth->au_flags (Dave Wysochanski) [1384666]
-- [fs] rbd: don't retry watch reregistration if header object is gone (Ilya Dryomov) [1378186]
-- [fs] rbd: don't wait for the lock forever if blacklisted (Ilya Dryomov) [1378186]
-- [fs] rbd: lock_on_read map option (Ilya Dryomov) [1378186]
-- [fs] ovl: during copy up, switch to mounter's creds early (Vivek Goyal) [1297929]
-- [fs] lsm, audit, selinux: Introduce a new audit data type LSM_AUDIT_DATA_FILE (Vivek Goyal) [1297929]
-- [fs] selinux: Institute file_path_has_perm() (Vivek Goyal) [1297929]
-- [fs] selinux: Implement dentry_create_files_as() hook (Vivek Goyal) [1297929]
-- [fs] security, overlayfs: Provide hook to correctly label newly created files (Vivek Goyal) [1297929]
-- [fs] selinux: Pass security pointer to determine_inode_label() (Vivek Goyal) [1297929]
-- [fs] selinux: Implementation for inode_copy_up_xattr() hook (Vivek Goyal) [1297929]
-- [fs] security, overlayfs: Provide security hook for copy up of xattrs for overlay file (Vivek Goyal) [1297929]
-- [fs] selinux: Implementation for inode_copy_up() hook (Vivek Goyal) [1297929]
-- [fs] security, overlayfs: provide copy up security hook for unioned files (Vivek Goyal) [1297929]
-- [fs] selinux: Create a common helper to determine an inode label (Vivek Goyal) [1297929]
-- [fs] nfsd: don't return an unhashed lock stateid after taking mutex ("J. Bruce Fields") [1368577]
-- [fs] nfsd: Fix race between FREE_STATEID and LOCK ("J. Bruce Fields") [1368577]
-- [fs] nfsd: Close race between nfsd4_release_lockowner and nfsd4_lock ("J. Bruce Fields") [1368577]
-- [fs] nfsd: Extend the mutex holding region around in nfsd4_process_open2() ("J. Bruce Fields") [1368577]
-- [fs] nfsd: Always lock state exclusively ("J. Bruce Fields") [1368577]
-- [fs] Fix regression which breaks DFS mounting (Sachin Prabhu) [1302329]
-- [fs] Move check for prefix path to within cifs_get_root() (Sachin Prabhu) [1302329]
-- [fs] Compare prepaths when comparing superblocks (Sachin Prabhu) [1302329]
-- [fs] Fix memory leaks in cifs_do_mount() (Sachin Prabhu) [1302329]
-- [fs] cifs: make share unaccessible at root level mountable (Sachin Prabhu) [1302329]
-
-* Mon Oct 31 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-516.el7]
-- [md] dm: free io_barrier after blk_cleanup_queue call (Mike Snitzer) [1385813]
-- [md] dm raid: fix activation of existing raid4/10 devices (Mike Snitzer) [1385149]
-- [rtc] cmos: Initialize hpet timer before irq is registered (Pratyush Anand) [1299001]
-- [x86] Add support for missing Kabylake Sunrise Point PCH (David Arcari) [1379401]
-- [x86] pci: vmd: Request userspace control of PCIe hotplug indicators (Myron Stowe) [1380181]
-- [pci] pciehp: Allow exclusive userspace control of indicators (Myron Stowe) [1380181]
-- [acpi] acpica: Fix for a Store->ArgX when ArgX contains a reference to a field (Lenny Szubowicz) [1330897]
-- [misc] cxl: Flush PSL cache before resetting the adapter (Steve Best) [1383478]
-- [scsi] ibmvfc: Fix I/O hang when port is not mapped (Steve Best) [1378001]
-- [netdrv] xen-netfront: avoid packet loss when ethernet header crosses page boundary (Vitaly Kuznetsov) [1348581]
-- [powerpc] ppc64: Fix incorrect return value from __copy_tofrom_user (Steve Best) [1387244]
-- [powerpc] pseries: use pci_host_bridge.release_fn() to kfree(phb) (Steve Best) [1385635]
-- [powerpc] pseries: Fix stack corruption in htpe code (Steve Best) [1384099]
-- [powerpc] eeh: Fix stale cached primary bus (Steve Best) [1383281]
-- [infiniband] ib/ipoib: move back IB LL address into the hard header (Jonathan Toppins) [1378656]
-
-* Wed Oct 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-515.el7]
-- [kernel] sched/core: Fix a race between try_to_wake_up() and a woken up task (Lauro Ramos Venancio) [1379256]
-- [kernel] pm/sleep: Fix request_firmware() error at resume (Don Zickus) [1375203]
-- [block] blk-mq: improve warning for running a queue on the wrong CPU (Gustavo Duarte) [1376948]
-- [block] blk-mq: don't overwrite rq->mq_ctx (Gustavo Duarte) [1376948]
-- [nvme] Don't suspend admin queue that wasn't created (Gustavo Duarte) [1370507]
-- [nvme] Suspend all queues before deletion (Gustavo Duarte) [1370507]
-- [scsi] cxgb4i: Increased the value of MAX_IMM_TX_PKT_LEN from 128 to 256 bytes (Sai Vemuri) [1379954]
-- [scsi] cxgb4i: fix credit check for tx_data_wr (Sai Vemuri) [1379954]
-- [vfio] vfio-pci: Disable INTx after MSI/X teardown (Alex Williamson) [1371495]
-- [vfio] vfio-pci: Virtualize PCIe & AF FLR (Alex Williamson) [1371495]
-- [misc] hpilo: Changes to support new security states in iLO5 FW (Nigel Croxon) [1376576]
-- [misc] genwqe: Change default access rights for device node (Steve Best) [1325797]
-- [hid] i2c-hid: exit if the IRQ is not valid (David Arcari) [1376599]
-- [x86] fix call location of smp_quirk_init_udelay() (Prarit Bhargava) [1377296]
-- [x86] hpet: Re-enable HPET on Purley 4S (Prarit Bhargava) [1372853]
-- [x86] hpet: Reduce HPET counter read contention (Prarit Bhargava) [1372853]
-- [powerpc] kvm: ppc: book3s hv: Take out virtual core piggybacking code (Thomas Huth) [1350719]
-- [powerpc] kvm: ppc: book3s: Treat VTB as a per-subcore register, not per-thread (Thomas Huth) [1350719]
-- [powerpc] kvm: ppc: book3s hv: Move struct kvmppc_vcore from kvm_host.h to kvm_book3s.h (Thomas Huth) [1350719]
-- [infiniband] ib/iser: Fix max_sectors calculation (Jonathan Toppins) [1380515]
-
-* Wed Oct 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-514.el7]
-- [mm] remove gup_flags FOLL_WRITE games from __get_user_pages() (Larry Woodman) [1385124] {CVE-2016-5195}
-
-* Wed Oct 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-513.el7]
-- [md] dm raid: fix compat_features validation (Mike Snitzer) [1383726]
-
-* Fri Sep 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-512.el7]
-- [fs] revert "ext4: pre-zero allocated blocks for DAX IO" (Eric Sandeen) [1380571]
-- [fs] nfsd: fix corruption in notifier registration ("J. Bruce Fields") [1378363]
-- [fs] xfs: log recovery tracepoints to track current lsn and buffer submission (Brian Foster) [1362730]
-- [fs] xfs: update metadata LSN in buffers during log recovery (Brian Foster) [1362730]
-- [fs] xfs: don't warn on buffers not being recovered due to LSN (Brian Foster) [1362730]
-- [fs] xfs: pass current lsn to log recovery buffer validation (Brian Foster) [1362730]
-- [fs] xfs: rework log recovery to submit buffers on LSN boundaries (Brian Foster) [1362730]
-- [x86] perf/uncore: Disable uncore on kdump kernel (Jiri Olsa) [1379569]
-- [netdrv] mlx4_core: Fix to clean devlink resources (Kamal Heib) [1379504]
-
-* Wed Sep 28 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-511.el7]
-- [net] add recursion limit to GRO (Sabrina Dubroca) [1374191] {CVE-2016-7039}
-- [mm] cgroup: fix hugetlb_cgroup_read() (Jerome Marchand) [1378236]
-- [fs] nfs: change invalidatepage prototype to accept length (Benjamin Coddington) [1366131]
-- [fs] xfs: quiesce the filesystem after recovery on readonly mount (Eric Sandeen) [1375457]
-- [fs] xfs: rework buffer dispose list tracking (Brian Foster) [1349175]
-- [fs] ext4: pre-zero allocated blocks for DAX IO (Eric Sandeen) [1367989]
-- [fs] gfs2: Initialize atime of I_NEW inodes (Andreas Grunbacher) [1379447]
-- [fs] gfs2: Update file times after grabbing glock (Andreas Grunbacher) [1379447]
-- [x86] topology: Handle CPUID bogosity gracefully (Vitaly Kuznetsov) [1377988]
-- [netdrv] sfc: check async completer is !NULL before calling (Jarod Wilson) [1368201]
-- [infiniband] ib/mlx5: Fix iteration overrun in GSI qps (Don Dutile) [1376941]
-
-* Wed Sep 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-510.el7]
-- [kernel] audit: fix exe_file access in audit_exe_compare (Richard Guy Briggs) [1374478]
-- [kernel] mm: introduce get_task_exe_file (Richard Guy Briggs) [1374478]
-- [kernel] prctl: avoid using mmap_sem for exe_file serialization (Richard Guy Briggs) [1374478]
-- [kernel] mm: rcu-protected get_mm_exe_file() (Richard Guy Briggs) [1374478]
-- [dm] dm-raid: reverse validation of nosync+rebuild flags (Heinz Mauelshagen) [1371717]
-- [x86] kvm: correctly reset dest_map->vector when restoring LAPIC state (Paolo Bonzini) [1367716]
-- [s390] dasd: fix hanging device after clear subchannel (Gustavo Duarte) [1368068]
-- [netdrv] bna: fix crash in bnad_get_strings() (Ivan Vecera) [1376508]
-- [netdrv] bna: add missing per queue ethtool stat (Ivan Vecera) [1376508]
-- [powerpc] kvm: Implement kvm_arch_intc_initialized() for PPC (David Gibson) [1375778]
-- [powerpc] kvm: book3s: Don't crash if irqfd used with no in-kernel XICS emulation (David Gibson) [1375778]
-
-* Tue Sep 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-509.el7]
-- [mm] sparse: use memblock apis for early memory allocations (Koki Sanagi) [1375453]
-- [mm] memblock: add memblock memory allocation apis (Koki Sanagi) [1375453]
-- [mm] thp: harden the debug kernel with a strict check for thp_mmu_gather (Andrea Arcangeli) [1369365]
-- [mm] thp: initialize thp_mmu_gather for newly allocated migrated pages (Andrea Arcangeli) [1369365]
-- [mm] thp: put_huge_zero_page() with MMU gather #2 (Andrea Arcangeli) [1369365]
-- [fs] nfs: fix BUG() crash in notify_change() with patch to chown_common() ("J. Bruce Fields") [1342695]
-- [net] ipv6: gro: fix forwarding of tunneled packets (Jiri Benc) [1375438]
-- [net] sctp: hold the transport before using it in sctp_hash_cmp (Xin Long) [1368884]
-- [net] sctp: identify chunks that need to be fragmented at IP level (Xin Long) [1371377]
-- [scsi] be2iscsi: revert: _bh for io_sgl_lock and mgmt_sgl_lock (Maurizio Lombardi) [1374223]
-- [block] blk-mq: Allow timeouts to run while queue is freezing (Gustavo Duarte) [1372483]
-- [block] defer timeouts to a workqueue (Gustavo Duarte) [1372483]
-- [netdrv] tg3: Fix for disallow tx coalescing time to be 0 (Ivan Vecera) [1368885]
-- [netdrv] tg3: Fix for diasllow rx coalescing time to be 0 (Ivan Vecera) [1368885]
-- [infiniband] rdma/ocrdma: Support user AH creation for RoCE-v2 (Don Dutile) [1376120]
-- [infiniband] rdma/ocrdma: Support RoCE-v2 in the RC path (Don Dutile) [1376120]
-- [infiniband] rdma/ocrdma: Support RoCE-v2 in the UD path (Don Dutile) [1376120]
-- [infiniband] rdma/ocrdma: Export udp encapsulation capability (Don Dutile) [1376120]
-- [infiniband] ib/mlx5: Fix wrong naming of port_rcv_data counter (Don Dutile) [1374862]
-
-* Mon Sep 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-508.el7]
-- [drm] i915: Add GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE to SNB (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: implement missing case for SKL watermarks calculation (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: fix the watermark res_blocks value (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: fix plane_blocks_per_line on watermarks calculations (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: minimum scanlines for Y tile is not always 4 (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: fix the WaWmMemoryReadLatency implementation (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Don't try to update plane watermarks if they haven't changed (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Update DDB values atomically with wms/plane attrs (Lyude Paul) [1341633 1355776]
-- [drm] i915: Move CRTC updating in atomic_commit into it's own hook (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Ensure pipes with changed wms get added to the state (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Update plane watermarks atomically during plane updates (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: Only copy WM results for changed pipes to skl_hw (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Add support for the SAGV, fix underrun hangs (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen6+: Interpret mailbox error flags (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: Only copy WM results for changed pipes to skl_hw (Lyude Paul) [1341633 1355776]
-
-* Thu Sep 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-507.el7]
-- [netdrv] ixgbe: fix spoofed packets with macvlans (Ken Cox) [1324631]
-- [tools] perf mem: Fix -t store option for record command (Jiri Olsa) [1357531 1357543]
-- [x86] clock: Fix kvm guest tsc initialization (Prarit Bhargava) [1372759]
-- [x86] tsc: Enumerate BXT tsc_khz via CPUID (Prarit Bhargava) [1372759]
-- [drm] i915: Enable polling when we don't have hpd (Lyude Paul) [1277863]
-- [drm] i915/vlv: Disable HPD in valleyview_crt_detect_hotplug() (Lyude Paul) [1277863]
-- [drm] i915/vlv: Reset the ADPA in vlv_display_power_well_init() (Lyude Paul) [1277863]
-- [drm] i915/vlv: Make intel_crt_reset() per-encoder (Lyude Paul) [1277863]
-- [fs] Fix NULL pointer dereference in bl_free_device() (Benjamin Coddington) [1356796]
-- [fs] nfs/blocklayout: support RH/Fedora dm-mpath device nodes (Benjamin Coddington) [1356796]
-- [fs] nfs/blocklayout: refactor open-by-wwn (Benjamin Coddington) [1356796]
-- [fs] nfs/blocklayout: use proper fmode for opening block devices (Benjamin Coddington) [1356796]
-- [fs] sunrpc: fix UDP memory accounting (Paolo Abeni) [1298899]
-
-* Mon Sep 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-506.el7]
-- [kernel] timekeeping: Cap adjustments so they don't exceed the maxadj value (Marcelo Tosatti) [1246218]
-- [kernel] fork: allocate idle task for a CPU always on its local node (Oleg Nesterov) [1339635]
-- [kernel] sys: do_sysinfo() use get_monotonic_boottime() (Milos Vyletel) [1373224]
-- [fs] proc/uptime: uptime_proc_show() use get_monotonic_boottime() (Milos Vyletel) [1373224]
-- [fs] exec: de_thread: mt-exec should update ->real_start_time (Milos Vyletel) [1373224]
-- [fs] ovl: clear nlink on rmdir (Miklos Szeredi) [1373787]
-- [fs] ovl: share inode for hard link (Miklos Szeredi) [1373787]
-- [fs] ovl: use generic_delete_inode (Miklos Szeredi) [1373787]
-- [fs] ovl: handle umask and posix_acl_default correctly on creation (Miklos Szeredi) [1351863]
-- [fs] ovl: fix sgid on directory (Miklos Szeredi) [1351863]
-- [fs] ovl: copyattr after setting POSIX ACL (Miklos Szeredi) [1371638]
-- [fs] ovl: Switch to generic_removexattr (Miklos Szeredi) [1371651]
-- [fs] ovl: Get rid of ovl_xattr_noacl_handlers array (Miklos Szeredi) [1371651]
-- [fs] ext4: print ext4 mount option data_err=abort correctly (Lukas Czerner) [1342403]
-- [fs] nfs4: Avoid migration loops (Benjamin Coddington) [1355977]
-- [fs] nfs: don't create zero-length requests (Benjamin Coddington) [1324635]
-- [fs] xfs: don't assert fail on non-async buffers on ioacct decrement (Brian Foster) [1363822]
-- [fs] btrfs: set S_IOPS_WRAPPER consistently (Eric Sandeen) [1182456]
-- [fs] xfs: prevent dropping ioend completions during buftarg wait (Brian Foster) [1370177]
-- [fs] gfs2: Fix extended attribute readahead optimization (Robert S Peterson) [1256539]
-- [mm] page_alloc: don't re-init pageset in zone_pcp_update() (Yasuaki Ishimatsu) [1374114]
-- [mm] readahead: Move readahead limit outside of readahead, and advisory syscalls (Kyle Walker) [1351353]
-- [net] veth: sctp: add NETIF_F_SCTP_CRC to device features (Xin Long) [1367105]
-- [net] veth: Update features to include all tunnel GSO types (Xin Long) [1367105]
-- [tty] serial: 8250_dw: add ability to handle the peripheral clock (Prarit Bhargava) [1367476]
-- [x86] mm: Fix regression panic at boot time seen on some NUMA systems (Larry Woodman) [1372047]
-- [x86] mm: non-linear virtual memory fix for KNL4 erratum (Larry Woodman) [1372047]
-- [x86] tsc: Add rdtscll() merge helper (Mitsuhiro Tanino) [1372398]
-- [x86] kvm: Expose more Intel AVX512 feature to guest (Paolo Bonzini) [1369038]
-- [s390] pci: remove iomap sanity checks (Jason Wang) [1373503]
-- [nvme] Add device ID's with stripe quirk (David Milburn) [1371642]
-- [scsi] mpt3sas: Fix panic when aer correct error occurred (Frank Ramsay) [1374745]
-- [iommu] vt-d: Disable passthrough mode on Kexec kernel (Myron Stowe) [1367621]
-- [netdrv] ixgbe: Eliminate useless message and improve logic (Ken Cox) [1369519]
-- [netdrv] sfc: check MTU against minimum threshold (Jarod Wilson) [1363683]
-
-* Tue Sep 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-505.el7]
-- [hv] balloon: replace ha_region_mutex with spinlock (Vitaly Kuznetsov) [1361245]
-- [hv] balloon: don't wait for ol_waitevent when memhp_auto_online is enabled (Vitaly Kuznetsov) [1361245]
-- [hv] balloon: account for gaps in hot add regions (Vitaly Kuznetsov) [1361245]
-- [hv] balloon: keep track of where ha_region starts (Vitaly Kuznetsov) [1361245]
-- [mm] memory-hotplug: add hot-added memory ranges to memblock before allocate node_data for a node (Yasuaki Ishimatsu) [1365766]
-- [mm] memory-hotplug: fix wrong edge when hot add a new node (Yasuaki Ishimatsu) [1365766]
-- [rtc] rtc-rx8581: Mark tech preview (Prarit Bhargava) [1362164]
-- [rtc] rtc-rx8581.c: add SMBus-only adapters support (Prarit Bhargava) [1362164]
-- [rtc] rtc-rx8581.c: remove empty function (Prarit Bhargava) [1362164]
-- [pci] Restore original checksums of pci symbols (Stanislav Kozina) [1370477]
-- [net] reserve kABI fields in struct packet_type (Jiri Benc) [1358738]
-- [net] openvswitch: Ignore negative headroom value (Jakub Sitnicki) [1369642]
-- [scsi] qla2xxx: Update the driver version to 8.07.00.33.07.3-k1 (Chad Dupuis) [1367530]
-- [scsi] qla2xxx: Set FLOGI retry in additional firmware options for P2P (N2N) mode (Chad Dupuis) [1361279]
-- [scsi] qla2xxx: prevent board_disable from running during EEH (Chad Dupuis) [1367530]
-- [kernel] sched/fair: Fix typo in sync_throttle() (Xunlei Pang) [1341003]
-- [kernel] sched/fair: Rework throttle_count sync (Xunlei Pang) [1341003]
-- [kernel] sched/fair: Do not announce throttled next buddy in dequeue_task_fair() (Xunlei Pang) [1341003]
-- [kernel] sched/fair: Initialize throttle_count for new task-groups lazily (Xunlei Pang) [1341003]
-- [kernel] audit: fix a double fetch in audit_log_single_execve_arg() (Paul Moore) [1359306] {CVE-2016-6136}
-- [powerpc] revert "pci: Assign fixed PHB number based on device-tree properties" (Gustavo Duarte) [1360353 1373109]
-- [powerpc] revert "pci: Fix endian bug in fixed PHB numbering" (Gustavo Duarte) [1360353 1373109]
-- [infiniband] rdma/ocrdma: Fix the max_sge reported from FW (Honggang Li) [1369540]
-
-* Mon Sep 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-504.el7]
-- [fs] dax: disable dax on ext2 and ext3 (Jeff Moyer) [1369900]
-- [fs] dax: mark tech preview (Jeff Moyer) [1369825]
-- [fs] pmem: disable dax mounting in the prsence of media errors (Jeff Moyer) [1367132]
-- [fs] xfs: Add alignment check for DAX mount (Jeff Moyer) [1367132]
-- [fs] ext4: Add alignment check for DAX mount (Jeff Moyer) [1367132]
-- [fs] block: Add bdev_dax_supported() for dax mount checks (Jeff Moyer) [1367132]
-- [fs] block: Add vfs_msg() interface (Jeff Moyer) [1367132]
-- [tools] x86/insn: remove pcommit (Jeff Moyer) [1350153]
-- [x86] revert "kvm: x86: add pcommit support" (Jeff Moyer) [1350153]
-- [tools] pmem: kill __pmem address space (Jeff Moyer) [1350153]
-- [kernel] pmem: kill wmb_pmem() (Jeff Moyer) [1350153]
-- [nvdimm] libnvdimm, pmem: use nvdimm_flush() for namespace I/O writes (Jeff Moyer) [1350153]
-- [fs] dax: remove wmb_pmem() (Jeff Moyer) [1350153]
-- [kernel] libnvdimm, pmem: flush posted-write queues on shutdown (Jeff Moyer) [1350153]
-- [nvdimm] libnvdimm, pmem: use REQ_FUA, REQ_FLUSH for nvdimm_flush() (Jeff Moyer) [1350153]
-- [nvdimm] libnvdimm: cycle flush hints (Jeff Moyer) [1350153]
-- [kernel] libnvdimm: introduce nvdimm_flush() and nvdimm_has_flush() (Jeff Moyer) [1350153]
-- [nvdimm] libnvdimm: keep region data alive over namespace removal (Jeff Moyer) [1350153]
-- [tools] testing/nvdimm: simulate multiple flush hints per-dimm (Jeff Moyer) [1350153]
-- [kernel] libnvdimm, nfit: move flush hint mapping to region-device driver-data (Jeff Moyer) [1350153]
-- [kernel] libnvdimm, nfit: remove nfit_spa_map() infrastructure (Jeff Moyer) [1350153]
-- [kernel] libnvdimm: introduce devm_nvdimm_memremap(), convert nfit_spa_map() users (Jeff Moyer) [1350153]
-- [acpi] nfit: don't override return value of nfit_mem_init (Jeff Moyer) [1350153]
-- [acpi] nfit: always associate flush hints (Jeff Moyer) [1350153]
-- [tools] testing/nvdimm: remove __wrap_devm_memremap_pages placeholder (Jeff Moyer) [1350153]
-- [kernel] devm: add helper devm_add_action_or_reset() (Jeff Moyer) [1350153]
-
-* Sat Sep 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-503.el7]
-- [scsi] sas: remove is_sas_attached() (Ewan Milne) [1370231]
-- [scsi] ses: use scsi_is_sas_rphy instead of is_sas_attached (Ewan Milne) [1370231]
-- [scsi] sas: provide stub implementation for scsi_is_sas_rphy (Ewan Milne) [1370231]
-- [target] lio: assume a maximum of 1024 iovecs (Andy Grover) [1367597]
-- [scsi] smartpqi: bump driver version (Scott Benesh) [1370631]
-- [scsi] smartpqi: add smartpqi.txt (Scott Benesh) [1370631]
-- [scsi] smartpqi: update maintainers (Scott Benesh) [1370631]
-- [scsi] smartpqi: update Kconfig (Scott Benesh) [1370631]
-- [scsi] smartpqi: remove timeout for cache flush operations (Scott Benesh) [1370631]
-- [scsi] smartpqi: scsi queuecommand cleanup (Scott Benesh) [1370631]
-- [scsi] smartpqi: minor tweaks to update time support (Scott Benesh) [1370631]
-- [scsi] smartpqi: minor function reformating (Scott Benesh) [1370631]
-- [scsi] smartpqi: correct event acknowledgement timeout issue (Scott Benesh) [1370631]
-- [scsi] smartpqi: correct controller offline issue (Scott Benesh) [1370631]
-- [scsi] smartpqi: add kdump support (Scott Benesh) [1370631]
-- [scsi] smartpqi: enhance reset logic (Scott Benesh) [1370631]
-- [scsi] smartpqi: enhance drive offline informational message (Scott Benesh) [1370631]
-- [scsi] smartpqi: simplify spanning (Scott Benesh) [1370631]
-- [scsi] smartpqi: change tmf macro names (Scott Benesh) [1370631]
-- [scsi] smartpqi: change aio sg processing (Scott Benesh) [1370631]
-
-* Fri Sep 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-502.el7]
-- [fs] rbd: add force close option (Ilya Dryomov) [1196119]
-- [fs] rbd: add 'config_info' sysfs rbd device attribute (Ilya Dryomov) [1196119]
-- [fs] rbd: add 'snap_id' sysfs rbd device attribute (Ilya Dryomov) [1196119]
-- [fs] rbd: add 'cluster_fsid' sysfs rbd device attribute (Ilya Dryomov) [1196119]
-- [fs] rbd: add 'client_addr' sysfs rbd device attribute (Ilya Dryomov) [1196119]
-- [fs] rbd: print capacity in decimal and features in hex (Ilya Dryomov) [1196119]
-- [fs] rbd: support for exclusive-lock feature (Ilya Dryomov) [1196119]
-- [fs] rbd: retry watch re-registration periodically (Ilya Dryomov) [1196119]
-- [fs] rbd: introduce a per-device ordered workqueue (Ilya Dryomov) [1196119]
-- [fs] libceph: rename ceph_client_id() -> ceph_client_gid() (Ilya Dryomov) [1196119]
-- [fs] libceph: support for blacklisting clients (Ilya Dryomov) [1196119]
-- [fs] libceph: support for lock.lock_info (Ilya Dryomov) [1196119]
-- [fs] libceph: support for advisory locking on RADOS objects (Ilya Dryomov) [1196119]
-- [fs] libceph: add ceph_osdc_call() single-page helper (Ilya Dryomov) [1196119]
-- [fs] libceph: support for CEPH_OSD_OP_LIST_WATCHERS (Ilya Dryomov) [1196119]
-- [fs] libceph: rename ceph_entity_name_encode() -> ceph_auth_entity_name_encode() (Ilya Dryomov) [1196119]
-- [fs] libceph: make cancel_generic_request() static (Ilya Dryomov) [1196119]
-- [fs] libceph: fix return value check in alloc_msg_with_page_vector() (Ilya Dryomov) [1196119]
-- [fs] ceph: fix symbol versioning for ceph_monc_do_statfs (Ilya Dryomov) [1196119]
-- [fs] libceph: add start en/decoding block helpers (Ilya Dryomov) [1196119]
-- [fs] libceph: add an ONSTACK initializer for oids (Ilya Dryomov) [1196119]
-- [fs] libceph: fix some missing includes (Ilya Dryomov) [1196119]
-- [mm] swap: flush lru pvecs on compound page arrival (Jerome Marchand) [1341766 1343920]
-- [md] raid1/raid10: slow down resync if there is non-resync activity pending (Jes Sorensen) [1371545]
-- [x86] hibernate: Use hlt_play_dead() when resuming from hibernation (Lenny Szubowicz) [1229590]
-- [x86] Mark Intel Purley 2 socket processor as supported (Steve Best) [1362645]
-- [i2c] i801: Add support for Kaby Lake PCH-H (David Arcari) [1310953]
-- [mfd] lpss: Add Intel Kaby Lake PCH-H PCI IDs (David Arcari) [1310953]
-- [usb] dwc3: pci: add Intel Kabylake PCI ID (David Arcari) [1310953]
-- [edac] sb_edac: Fix channel reporting on Knights Landing (Aristeu Rozanski) [1367330]
-- [include] bluetooth: Fix kabi breakage in struct hci_core (Don Zickus) [1370583]
-- [powerpc] pci: Fix endian bug in fixed PHB numbering (Gustavo Duarte) [1360353]
-- [powerpc] pci: Assign fixed PHB number based on device-tree properties (Gustavo Duarte) [1360353]
-
-* Thu Sep 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-501.el7]
-- [netdrv] sfc: work around TRIGGER_INTERRUPT command not working on SFC9140 (Jarod Wilson) [1368201]
-- [netdrv] sfc: remove duplicate assignment (Jarod Wilson) [1368201]
-- [netdrv] sfc: include size-binned TX stats on sfn8542q (Jarod Wilson) [1368201]
-- [netdrv] sfc: fix potential stack corruption from running past stat bitmask (Jarod Wilson) [1368201]
-- [netdrv] sfc: avoid division by zero (Jarod Wilson) [1368201]
-- [netdrv] sfc: get timer configuration from adapter (Jarod Wilson) [1368201]
-- [netdrv] sfc: set interrupt moderation via MCDI (Jarod Wilson) [1368201]
-- [netdrv] sfc: use new performance based event queue init (Jarod Wilson) [1368201]
-- [netdrv] sfc: retrieve second word of datapath capabilities (Jarod Wilson) [1368201]
-- [netdrv] sfc: allow asynchronous MCDI without completion function (Jarod Wilson) [1368201]
-- [netdrv] sfc: update MCDI protocol headers (Jarod Wilson) [1368201]
-- [netdrv] sfc: avoid -Wtype-limits warning (Jarod Wilson) [1368201]
-- [netdrv] sfc: Fix VLAN filtering feature if vPort has VLAN_RESTRICT flag (Jarod Wilson) [1368201]
-- [netdrv] sfc: Update MCDI protocol definitions (Jarod Wilson) [1368201]
-- [netdrv] sfc: Disable VLAN filtering by default if not strictly required (Jarod Wilson) [1368201]
-- [netdrv] sfc: VLAN filters must only be created if the firmware supports this (Jarod Wilson) [1368201]
-- [netdrv] sfc: Fix dup unknown multicast/unicast filters after datapath reset (Jarod Wilson) [1368201]
-- [netdrv] sfc: Refactor checks for invalid filter ID (Jarod Wilson) [1368201]
-- [netdrv] sfc: Take mac_lock before calling efx_ef10_filter_table_probe (Jarod Wilson) [1368201]
-- [netdrv] sfc: Implement ndo_vlan_rx_{add, kill}_vid() callbacks (Jarod Wilson) [1368201]
-- [netdrv] sfc: Implement list of VLANs added over interface (Jarod Wilson) [1368201]
-- [netdrv] sfc: Make EF10 filter management helper functions VLAN-aware (Jarod Wilson) [1368201]
-- [netdrv] sfc: Store unicast and multicast promisc flag with address cache (Jarod Wilson) [1368201]
-- [netdrv] sfc: Move filter IDs to per-VLAN data structure (Jarod Wilson) [1368201]
-- [netdrv] sfc: Forget filter ID when the filter is marked old (Jarod Wilson) [1368201]
-- [netdrv] sfc: Assert filter_sem write locked when required (Jarod Wilson) [1368201]
-- [netdrv] sfc: Add efx_nic member with fixed netdev features (Jarod Wilson) [1368201]
-- [netdrv] sfc: Move last mc_promisc flag to EF10 filter table state (Jarod Wilson) [1368201]
-- [netdrv] sfc: Define macro with EF10 offload feature (Jarod Wilson) [1368201]
-- [netdrv] sfc: on MC reset, clear PIO buffer linkage in TXQs (Jarod Wilson) [1368201]
-- [netdrv] sfc: disable RSS when unsupported (Jarod Wilson) [1368201]
-- [netdrv] sfc: implement IPv6 NFC (and IPV4_USER_FLOW) (Jarod Wilson) [1368201]
-- [netdrv] i40iw: Receive notification events correctly (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Update hw_iwarp_state (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Send last streaming mode message for loopback connections (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Avoid writing to freed memory (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Fix double free of allocated_buffer (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Add missing NULL check for MPA private data (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Add missing check for interface already open (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Protect req_resource_num update (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Change mem_resources pointer to a u8 (Stefan Assmann) [1371734]
-- [netdrv] hv_netvsc: fix bonding devices check in netvsc_netdev_event() (Vitaly Kuznetsov) [1364333]
-- [netdrv] hv_netvsc: protect module refcount by checking net_device_ctx->vf_netdev (Vitaly Kuznetsov) [1364333]
-- [netdrv] hv_netvsc: reset vf_inject on VF removal (Vitaly Kuznetsov) [1364333]
-- [netdrv] hv_netvsc: avoid deadlocks between rtnl lock and vf_use_cnt wait (Vitaly Kuznetsov) [1364333]
-- [netdrv] hv_netvsc: don't lose VF information (Vitaly Kuznetsov) [1364333]
-- [netdrv] mlx4_en: Add resilience in low memory systems (kamal heib) [1367818]
-- [netdrv] net/mlx4_en: Move filters cleanup to a proper location (kamal heib) [1367818]
-
-* Tue Aug 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-500.el7]
-- [drm] amdgpu: Disable RPM helpers while reprobing connectors on resume (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Kabylake uses the same GMS values as Skylake (Rob Clark) [1348329 1349064]
-- [drm] i915/bxt: Broxton uses the same GMS values as Skylake (Rob Clark) [1348329 1349064]
-- [drm] i915/skl: Add the additional graphics stolen sizes (Rob Clark) [1348329 1349064]
-- [drm] x86/gpu: Sprinkle const, __init and __initconst to stolen memory quirks (Rob Clark) [1348329 1349064]
-- [drm] x86/gpu: Implement stolen memory size early quirk for CHV (Rob Clark) [1348329 1349064]
-- [drm] x86/gpu: Fix sign extension issue in Intel graphics stolen memory quirks (Rob Clark) [1348329 1349064]
-- [drm] makefile: update DRM version (Rob Clark) [1348329 1349064]
-- [drm] i915: Revert DisplayPort fast link training feature (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Fix error paths when mapping framebuffer (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Fix corner case screen target management (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Delay pinning fbdev framebuffer until after mode set (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Check pin count before attempting to move a buffer (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Work around mode set failure in 2D VMs (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Add an option to change assumed FB bpp (Rob Clark) [1348329 1349064]
-- [drm] ttm: Make ttm_bo_mem_compat available (Rob Clark) [1348329 1349064]
-- [drm] atomic: Make drm_atomic_legacy_backoff reset crtc->acquire_ctx (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: fix incorrect voltage table value for tonga (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: incorrectly use of the function return value (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: fix logic error (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: need to notify system bios pcie device ready (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: fix bug that function parameter was incorect (Rob Clark) [1348329 1349064]
-- [drm] make drm_atomic_set_mode_prop_for_crtc() more reliable (Rob Clark) [1348329 1349064]
-- [drm] add missing drm_mode_set_crtcinfo call (Rob Clark) [1348329 1349064]
-- [drm] i915: Refresh cached DP port register value on resume (Rob Clark) [1348329 1349064]
-- [drm] i915/ilk: Don't disable SSC source if it's in use (Rob Clark) [1348329 1349064]
-- [drm] nouveau/disp/sor/gf119: select correct sor when poking training pattern (Rob Clark) [1348329 1349064]
-- [drm] nouveau: fix for disabled fbdev emulation (Rob Clark) [1348329 1349064]
-- [drm] nouveau/ltc/gm107-: fix typo in the address of NV_PLTCG_LTC0_LTS0_INTR (Rob Clark) [1348329 1349064]
-- [drm] nouveau/gr/gf100-: update sm error decoding from gk20a nvgpu headers (Rob Clark) [1348329 1349064]
-- [drm] nouveau/bios/disp: fix handling of "match any protocol" entries (Rob Clark) [1348329 1349064]
-- [drm] dp/mst: Always clear proposed vcpi table for port (Rob Clark) [1348329 1349064]
-- [drm] amdgpu: initialize amdgpu_cgs_acpi_eval_object result value (Rob Clark) [1348329 1349064]
-- [drm] amdgpu: fix num_rbs exposed to userspace (v2) (Rob Clark) [1348329 1349064]
-- [drm] amdgpu/gfx7: fix broken condition check (Rob Clark) [1348329 1349064]
-- [drm] radeon: fix asic initialization for virtualized environments (Rob Clark) [1348329 1349064]
-- [drm] i915: Removing PCI IDs that are no longer listed as Kabylake (Rob Clark) [1348329 1349064]
-- [drm] i915: Add more Kabylake PCI IDs (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Introduce the first official DMC for Kabylake (Rob Clark) [1348329 1349064]
-- [drm] i915/bxt: Reject DMC firmware versions with known bugs (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: implement WaConextSwitchWithConcurrentTLBInvalidate (Rob Clark) [1348329 1349064]
-- [drm] i915: implement WaClearTdlStateAckDirtyBits (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaClearSlmSpaceAtContextSwitch (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableSbeCacheDispatchPortSharing (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableGafsUnitClkGating (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaForGAMHang (Rob Clark) [1348329 1349064]
-- [drm] i915: Add WaInsertDummyPushConstP for bxt and kbl (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableDynamicCreditSharing (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableLSQCROPERFforOCL (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableFenceDestinationToSLM for A0 (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaEnableGapsTsvCreditFix (Rob Clark) [1348329 1349064]
-- [drm] i915: Mimic skl with WaForceEnableNonCoherent (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: Always apply WaForceContextSaveRestoreNonCoherent (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaSkipStolenMemoryFirstPage for A0 (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add REVID macro (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Init gen9 workarounds (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: implement WaEnableSamplerGPGPUPreemptionSupport (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: add WaClearFlowControlGpgpuContextSave (Rob Clark) [1348329 1349064]
-- [drm] i915/skl: Add WaDisableGafsUnitClkGating (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: Add WaVFEStateAfterPipeControlwithMediaStateClear (Rob Clark) [1348329 1349064]
-- [drm] i915: Introduce Kabypoint PCH for Kabylake H/DT (Rob Clark) [1348329 1349064]
-- [drm] revert "drm/i915: Exit cherryview_irq_handler() after one pass" (Rob Clark) [1348329 1349064]
-- [drm] core: Do not preserve framebuffer on rmfb, v4 (Rob Clark) [1348329 1349064]
-- [drm] i915: Pass the correct crtc state to .update_plane() (Rob Clark) [1348329 1349064]
-- [drm] Add helper for DP++ adaptors (Rob Clark) [1348329 1349064]
-- [drm] i915: Fix watermarks for VLV/CHV (Rob Clark) [1348329 1349064]
-- [drm] i915: Don't leave old junk in ilk active watermarks on readout (Rob Clark) [1348329 1349064]
-- [drm] i915: Enable/disable TMDS output buffers in DP++ adaptor as needed (Rob Clark) [1348329 1349064]
-- [drm] i915: Respect DP++ adaptor TMDS clock limit (Rob Clark) [1348329 1349064]
-- [drm] i915/psr: Try to program link training times correctly (Rob Clark) [1348329 1349064]
-- [drm] amdgpu: Fix hdmi deep color support (Rob Clark) [1348329 1349064]
-- [drm] amdgpu: use drm_mode_vrefresh() rather than mode->vrefresh (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Kill some lockdep warnings (Rob Clark) [1348329 1349064]
-- [drm] gma500: Fix possible out of bounds read (Rob Clark) [1348329 1349064]
-
-* Tue Aug 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-499.el7]
-- [drm] i915/hsw: Disable PSR by default (Lyude Paul) [1367930]
-- [x86] nmi: Enable nested do_nmi() handling for 64-bit kernels (Jiri Olsa) [1365704]
-- [net] ipv4: igmp: Allow removing groups from a removed interface (Jiri Benc) [1369427]
-- [net] netfilter: ebtables: put module reference when an incorrect extension is found (Sabrina Dubroca) [1369325]
-- [net] sctp: linearize early if it's not GSO (Marcelo Leitner) [1058148]
-- [net] sctp_diag: Respect ss adding TCPF_CLOSE to idiag_states (Phil Sutter) [1361728]
-- [net] sctp_diag: Fix T3_rtx timer export (Phil Sutter) [1361728]
-- [net] sctp: Export struct sctp_info to userspace (Phil Sutter) [1361728]
-- [net] macsec: ensure rx_sa is set when validation is disabled (Sabrina Dubroca) [1368429]
-- [net] macsec: use after free when deleting the underlying device (Sabrina Dubroca) [1368429]
-- [target] target/user: Fix failure to unlock a spinlock upon function return (Andy Grover) [1367873]
-- [target] target/user: Fix comments to not refer to data ring (Andy Grover) [1367873]
-- [target] target/user: Return an error if cmd data size is too large (Andy Grover) [1367873]
-- [target] target/user: Use sense_reason_t in tcmu_queue_cmd_ring (Andy Grover) [1367873]
-- [target] Backport tcm-user from 4.6 (Andy Grover) [1367873]
-- [uio] Export definition of struct uio_device (Andy Grover) [1367873]
-- [netdrv] i40iw: Add NULL check for puda buffer (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Change dup_ack_thresh to u8 (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Remove unnecessary check for moving CQ head (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Simplify code to set fragments in SQ WQE (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Remove unnecessary parameter to i40iw_cq_poll_completion (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Do not access pointer after free (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Correct and use size parameter to i40iw_reg_phys_mr (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Fix return codes (Stefan Assmann) [1367425]
-- [netdrv] i40e: Correcting mutex usage in client code (Stefan Assmann) [1367425]
-- [netdrv] i40e: Initialize pointer in client_release function (Stefan Assmann) [1367425]
-- [netdrv] i40e: Check client is open before calling client ops (Stefan Assmann) [1367425]
-- [netdrv] i40e: Force register writes to mitigate sync issues with iwarp VF driver (Stefan Assmann) [1367425]
-- [netdrv] i40e: Move the mutex lock in i40e_client_unregister (Stefan Assmann) [1367425]
-- [infiniband] ib/uverbs: Initialize ib_qp_init_attr with zeros (Honggang Li) [1365720]
-
-* Mon Aug 29 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-498.el7]
-- [scsi] aacraid: Check size values after double-fetch from user (Maurizio Lombardi) [1369771] {CVE-2016-6480}
-- [fs] block_dev.c: Remove WARN_ON() when inode writeback fails (Eric Sandeen) [1229014]
-- [fs] ext4: call sync_blockdev() before invalidate_bdev() in put_super() (Eric Sandeen) [1229014]
-- [mm] page_alloc: rename setup_pagelist_highmark() to match naming of pageset_set_batch() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: in zone_pcp_update(), uze zone_pageset_init() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: factor zone_pageset_init() out of setup_zone_pageset() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: relocate comment to be directly above code it refers to (Pankaj Gupta) [1320834]
-- [mm] page_alloc: factor setup_pageset() into pageset_init() and pageset_set_batch() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: when handling percpu_pagelist_fraction, don't unneedly recalulate high (Pankaj Gupta) [1320834]
-- [mm] page_alloc: convert zone_pcp_update() to rely on memory barriers instead of stop_machine() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: protect pcp->batch accesses with ACCESS_ONCE (Pankaj Gupta) [1320834]
-- [mm] page_alloc: insert memory barriers to allow async update of pcp batch and high (Pankaj Gupta) [1320834]
-- [mm] page_alloc: prevent concurrent updaters of pcp ->batch and ->high (Pankaj Gupta) [1320834]
-- [mm] page_alloc: factor out setting of pcp->high and pcp->batch (Pankaj Gupta) [1320834]
-- [hid] i2c-hid: Fix suspend/resume when already runtime suspended (David Arcari) [1361625]
-- [hid] i2c-hid: Only disable irq wake if it was successfully enabled during suspend (David Arcari) [1361625]
-- [hid] i2c-hid: Call device suspend callback before disabling irq (David Arcari) [1361625]
-- [hid] i2c-hid: call the hid driver's suspend and resume callbacks (David Arcari) [1361625]
-- [hid] i2c-hid: add runtime PM support (David Arcari) [1361625]
-- [hid] i2c-hid: disable interrupt on suspend (David Arcari) [1361625]
-- [lib] rhashtable-test: calculate max_entries value by default (Phil Sutter) [1238749]
-- [x86] tsc: Enumerate SKL cpu_khz and tsc_khz via CPUID (Prarit Bhargava) [1366396]
-- [x86] Block HPET on Purley 4S (Prarit Bhargava) [1365997]
-- [base] regmap: Skip read-only registers in regcache_sync() (Jaroslav Kysela) [1365905 1367789]
-- [tools] perf: Add sample_reg_mask to include all perf_regs (Steve Best) [1368934]
-- [netdrv] i40e: Change some init flow for the client (Stefan Assmann) [1369275]
-- [netdrv] mlx5e: Log link state changes (kamal heib) [1367822]
-
-* Fri Aug 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-497.el7]
-- [kernel] ftrace: fix traceoff_on_warning handling on boot command line ("Luis Claudio R. Goncalves") [1367650]
-- [netdrv] ixgbe: fix setup_fc for x550em (Ken Cox) [1364896]
-- [netdrv] cxgb4/cxgb4vf: Fixes regression in perf when tx vlan offload is disabled (Sai Vemuri) [1319437]
-- [netdrv] cxgb4/cxgb4vf: Add link mode mask API to cxgb4 and cxgb4vf (Sai Vemuri) [1365689]
-- [netdrv] cxgb4: Don't assume FW_PORT_CMD reply is always port info msg (Sai Vemuri) [1365689]
-- [netdrv] ethtool: add support for 25G/50G/100G speed modes (Sai Vemuri) [1365689]
-- [netdrv] i40e: use configured RSS key and lookup table in i40e_vsi_config_rss (Stefan Assmann) [1359439]
-- [netdrv] i40e: fix broken i40e_config_rss_aq function (Stefan Assmann) [1359439]
-- [netdrv] i40e: move i40e_vsi_config_rss below i40e_get_rss_aq (Stefan Assmann) [1359439]
-- [netdrv] i40e: Remove redundant memset (Stefan Assmann) [1359439]
-- [netdrv] brcmfmac: restore stopping netdev queue when bus clogs up (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: add new 8265 (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: add new 8260 PCI IDs (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: pcie: fix a race in firmware loading flow (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: pcie: enable interrupts before releasing the NIC's CPU (Stanislaw Gruszka) [1365575]
-- [net] mac80211: fix purging multicast PS buffer queue (Stanislaw Gruszka) [1365575]
-- [net] cfg80211: handle failed skb allocation (Stanislaw Gruszka) [1365575]
-- [net] nl80211: Move ACL parsing later to avoid a possible memory leak (Stanislaw Gruszka) [1365575]
-- [net] cfg80211: fix proto in ieee80211_data_to_8023 for frames without LLC header (Stanislaw Gruszka) [1365575]
-- [net] mac80211: Fix mesh estab_plinks counting in STA removal case (Stanislaw Gruszka) [1365575]
-- [netdrv] ath9k: fix GPIO mask for AR9462 and AR9565 (Stanislaw Gruszka) [1365575]
-- [netdrv] ath10k: fix deadlock while processing rx_in_ord_ind (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: fix a few firmware capability checks (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: set the encryption type of an IGTK key (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: fix potential NULL-dereference in iwl_mvm_reorder() (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: fix RCU splat in TKIP's update_key (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: increase scan timeout to 20 seconds (Stanislaw Gruszka) [1365575]
-- [net] cfg80211: remove get/set antenna and tx power warnings (Stanislaw Gruszka) [1365575]
-- [netdrv] ath10k: fix crash related to printing features (Stanislaw Gruszka) [1365575]
-- [netdrv] ath10k: fix deadlock when peer cannot be created (Stanislaw Gruszka) [1365575]
-- [net] mac80211: fix fast_tx header alignment (Stanislaw Gruszka) [1365575]
-- [net] mac80211: mesh: flush mesh paths unconditionally (Stanislaw Gruszka) [1365575]
-- [netdrv] rtlwifi: Fix scheduling while atomic error from commit 49f86ec21c01 (Stanislaw Gruszka) [1365575]
-- [netdrv] brcmfmac: add fallback for devices that do not report per-chain values (Stanislaw Gruszka) [1365575]
-
-* Thu Aug 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-496.el7]
-- [infiniband] rdma/ocrdma: display ocrdma tech preview status (Honggang Li) [1334675]
-- [infiniband] ib/rdma_cm: fix panic when trying access default_roce_mode configfs (kamal heib) [1360276]
-- [infiniband] ib/hfi1: Fix mm_struct use after free (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Add cache evict LRU list (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix memory leak during unexpected shutdown (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unneeded mm argument in remove function (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Consistently call ops->remove outside spinlock (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Use evict mmu rb operation (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Add evict operation to the mmu rb handler (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix TID caching actions (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Make the cache handler own its rb tree root (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Make use of mm consistent (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix user SDMA racy user request claim (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix error condition that needs to clean up (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Release node on insert failure (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Validate SDMA user iovector count (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Validate SDMA user request index (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Use the same capability state for all shared contexts (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Prevent null pointer dereference (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Rename TID mmu_rb_* functions (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unneeded empty check in hfi1_mmu_rb_unregister() (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Restructure hfi1_file_open (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Make iovec loop index easy to understand (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Use "false" not 0 (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unused sub-context parameter (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Consolidate __mmu_rb_remove and hfi1_mmu_rb_remove (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Always expect ops functions (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Add parameter names to callback declarations (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Add parameter names to function declarations (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unused function hfi1_mmu_rb_search (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unused uctxt->subpid and uctxt->pid (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix minor format error (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove TWSI references (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Use built-in i2c bit-shift bus adapter (Alex Estrin) [1360929]
-
-* Mon Aug 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-495.el7]
-- [fs] ovl: append MAY_READ when diluting write checks (Miklos Szeredi) [1361590]
-- [fs] ovl: dilute permission checks on lower only if not special file (Miklos Szeredi) [1361590]
-- [fs] ovl: fix POSIX ACL setting (Miklos Szeredi) [1361590]
-- [fs] ovl: store real inode pointer in ->i_private (Miklos Szeredi) [1361590]
-- [fs] ovl: simplify permission checking (Miklos Szeredi) [1361590]
-- [fs] ovl: do not require mounter to have MAY_WRITE on lower (Miklos Szeredi) [1361590]
-- [fs] ovl: do operations on underlying file system in mounter's context (Miklos Szeredi) [1361590]
-- [fs] ovl: modify ovl_permission() to do checks on two inodes (Miklos Szeredi) [1361590]
-- [fs] ovl: define ->get_acl() for overlay inodes (Miklos Szeredi) [1361590]
-- [fs] ovl: move some common code in a function (Miklos Szeredi) [1361590]
-- [fs] ovl: store ovl_entry in inode->i_private for all inodes (Miklos Szeredi) [1361590]
-- [fs] ovl: check mounter creds on underlying lookup (Miklos Szeredi) [1361590]
-- [fs] gfs2: Remove dirty buffer warning from gfs2_releasepage (Andreas Gruenbacher) [1222972]
-- [fs] xfs: copy correct inode info in xfs_qm_scall_getqstat (Eric Sandeen) [1359098]
-- [fs] vfs: fix deadlock in file_remove_privs() on overlayfs (Miklos Szeredi) [1362392]
-- [fs] cifs: Use file_dentry() (Miklos Szeredi) [1343388]
-- [fs] btrfs: fix crash/invalid memory access on fsync when using overlayfs (Miklos Szeredi) [1343388]
-- [fs] nfs: use file_dentry() (Miklos Szeredi) [1343388]
-- [fs] vfs: document ->d_real() (Miklos Szeredi) [1343388]
-- [fs] vfs: merge .d_select_inode() into .d_real() (Miklos Szeredi) [1343388]
-- [fs] add file_dentry() (Miklos Szeredi) [1343388]
-- [fs] cifs: correctly to anonymous authentication for the NTLM(v2) authentication (Sachin Prabhu) [1361407]
-- [fs] cifs: correctly to anonymous authentication for the NTLM(v1) authentication (Sachin Prabhu) [1361407]
-- [fs] cifs: correctly to anonymous authentication for the LANMAN authentication (Sachin Prabhu) [1361407]
-- [fs] cifs: correctly to anonymous authentication via NTLMSSP (Sachin Prabhu) [1361407]
-- [scsi] Revert: restart list search after unlock in scsi_remove_target (Ewan Milne) [1369084]
-- [scsi] qla2xxx: Remove double scsi_host_put() from qla2x00_remove_one() (Ewan Milne) [1368149]
-- [netdrv] qlcnic: Update version to 5.3.65 (Harish Patil) [1367116]
-- [netdrv] qlcnic: fix napi budget alteration (Harish Patil) [1367116]
-- [netdrv] qlcnic: fix data structure corruption in async mbx command handling (Harish Patil) [1367116]
-- [netdrv] qlcnic: avoid superfluous assignement (Harish Patil) [1367116]
-- [netdrv] qlcnic: add wmb() call in transmit data path (Harish Patil) [1367116]
-- [netdrv] qlcnic: use the correct ring in qlcnic_83xx_process_rcv_ring_diag() (Harish Patil) [1367116]
-- [netdrv] qlcnic: don't set unused function argument (Harish Patil) [1367116]
-
-* Fri Aug 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-494.el7]
-- [firmware] revert "Be a bit more verbose about direct firmware loading failure" (Stanislaw Gruszka) [1351206]
-- [firmware] revert "Introduce request_firmware_direct()" (Stanislaw Gruszka) [1351206]
-- [x86] revert "microcode: Use request_firmware_direct()" (Stanislaw Gruszka) [1351206]
-- [x86] smpboot: Re-enable init_udelay=0 by default on modern CPUs (Steve Best) [1365413]
-- [x86] smpboot: Fix CPU (Steve Best) [1365413]
-- [x86] smpboot: Fix cpu_init_udelay=10000 corner case boot parameter misbehavior (Steve Best) [1365413]
-- [x86] smpboot: Remove SIPI delays from cpu_up() (Steve Best) [1365413]
-- [x86] smpboot: Fix legacy SMP bootup slow-boot bug (Steve Best) [1365413]
-- [x86] smpboot: Remove 10ms delay from cpu_up() on modern processors (Steve Best) [1365413]
-- [x86] smpboot: Add cmdline "cpu_init_udelay=N" to specify cpu_up() delay (Steve Best) [1365413]
-- [x86] platform/uv: Fix kernel panic running RHEL kdump kernel on UV systems (Frank Ramsay) [1366020]
-- [x86] platform/uv: Fix problem with UV4 BIOS providing incorrect PXM values (Frank Ramsay) [1366020]
-- [x86] platform/uv: Fix bug with iounmap() of the UV4 EFI System Table causing a crash (Frank Ramsay) [1366020]
-- [x86] platform/uv: Fix problem with UV4 Socket IDs not being contiguous (Frank Ramsay) [1366020]
-- [x86] Add support for Kabylake H/S (David Arcari) [1306013]
-- [x86] smp: Fix __max_logical_packages value setup (Frank Ramsay) [1358312]
-- [fs] proc: convert /proc/$PID/schedstat to seq_file interface (Joe Lawrence) [1363745]
-- [fs] revert "userfaultfd: call mark_tech_preview" (Andrea Arcangeli) [1366639]
-- [x86] mm: Improve switch_mm() barrier comments (Rafael Aquini) [1332602] {CVE-2016-2069}
-- [x86] mm: Add barriers and document switch_mm()-vs-flush synchronization (Rafael Aquini) [1332602] {CVE-2016-2069}
-- [mm] dax,kabi: add special handling for ZONE_DEVICE (Jeff Moyer) [1367133 1367257]
-- [md] dm-raid: support raid0 with missing metadata devices (Mike Snitzer) [1364133 1367223]
-- [md] dm raid: enhance attempt_restore_of_faulty_devices() to support more devices (Mike Snitzer) [1364133]
-- [md] dm raid: fix restoring of failed devices regression (Mike Snitzer) [1364133]
-- [md] dm raid: fix frozen recovery regression (Mike Snitzer) [1364133]
-- [md] dm raid: fix use of wrong status char during resynchronization (Mike Snitzer) [1361328 1364133]
-- [md] dm raid: constructor fails on non-zero incompat_features (Mike Snitzer) [1361328 1364133]
-- [md] dm raid: fix processing of max_recovery_rate constructor flag (Mike Snitzer) [1361328 1364133]
-- [md] dm: set DMF_SUSPENDED* _before_ clearing DMF_NOFLUSH_SUSPENDING (Mike Snitzer) [1361328 1364133]
-- [md] dm rq: fix the starting and stopping of blk-mq queues (Mike Snitzer) [1361328 1364133]
-- [md] dm mpath: add locking to multipath_resume and must_push_back (Mike Snitzer) [1361328 1364133]
-- [md] dm flakey: error READ bios during the down_interval (Mike Snitzer) [1361328 1364133]
-- [md] dm: move request-based code out to dm-rq.[hc] (Mike Snitzer) [1361328 1364133]
-- [i2c] designware: fixup return handling of wait_for_completion_timeout (David Arcari) [1365529]
-- [i2c] designware: fix race between subsequent xfers (David Arcari) [1365529]
-- [i2c] designware: prevent signals from aborting I2C transfers (David Arcari) [1365529]
-- [net] openvswitch: do not ignore netdev errors when creating tunnel vports (Thadeu Lima de Souza Cascardo) [1367917]
-- [net] multicast: should not send source list records when have filter mode change (Hangbin Liu) [1322008]
-- [net] netfilter: physdev: add missed blank (Hangbin Liu) [1346175]
-- [net] netfilter: physdev: physdev-is-out should not work with OUTPUT chain (Hangbin Liu) [1346175]
-- [net] sctp: use event->chunk when it's valid (Xin Long) [1278912]
-- [net] openvswitch: fix conntrack netlink event delivery (Lance Richardson) [1321068]
-- [net] netfilter: ebtables: Fix extension lookup with identical name (Sabrina Dubroca) [1317751]
-- [net] sched: fix act_ipt for LOG target (Sabrina Dubroca) [1314398]
-- [net] vti: flush x-netns xfrm cache when vti interface is removed (Lance Richardson) [1332403]
-- [scsi] restart list search after unlock in scsi_remove_target (Ewan Milne) [1365651]
-- [scsi] smartpqi: add config files (Scott Benesh) [1273115]
-- [scsi] smartpqi and aacraid: remove wildcard for series 9 controllers (Scott Benesh) [1273115]
-- [scsi] smartpqi: port to RHEL73 (Scott Benesh) [1273115]
-- [scsi] smartpqi: initial commit of Microsemi smartpqi driver (Scott Benesh) [1273115]
-- [scsi] smartpqi: add smartpqi to drivers/scsi/Makefile (Scott Benesh) [1273115]
-- [scsi] smartpqi: add smartpqi to scsi Kconfig (Scott Benesh) [1273115]
-- [scsi] smartpqi: add smartpqi to MAINTAINERS (Scott Benesh) [1273115]
-- [vfio] pci: Fix NULL pointer oops in error interrupt setup handling (Alex Williamson) [1367906]
-- [misc] cxl: Set psl_fir_cntl to production environment value (Steve Best) [1365970]
-- [netdrv] e1000e: fix PTP on e1000_pch_lpt variants (Jarod Wilson) [1357921]
-- [netdrv] e1000e: factor out systim sanitization (Jarod Wilson) [1357921]
-- [netdrv] bna: remove global bnad_list_mutex (Ivan Vecera) [1359566]
-- [netdrv] bna: change type of bna_id to atomic_t (Ivan Vecera) [1359566]
-- [netdrv] bna: remove useless linked list (Ivan Vecera) [1359566]
-- [netdrv] i40e: check for and deal with non-contiguous TCs (Stefan Assmann) [1354052]
-- [kernel] module: Issue warnings when tainting kernel (Stanislav Kozina) [1366179]
-
-* Tue Aug 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-493.el7]
-- [powerpc] mm: use get_user_pages_unlocked within get_user_pages_fast (Laurent Vivier) [1362454]
-- [net] udp_offload: put sk before returning (Florian Westphal) [1366515]
-- [fs] jbd2: limit number of reserved credits (Lukas Czerner) [1172496]
-- [fs] cachefiles: Fix attempt to read i_blocks after deleting file (David Howells) [1357234]
-- [fs] cachefiles: Fix race between inactivating and culling a cache object (David Howells) [1357234]
-- [fs] svcrdma: Remove superfluous line from rdma_read_chunks() (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Do not add XDR padding to xdr_buf page vector (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Use correct XID in error replies (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Make RDMA_ERROR messages work (Sachin Prabhu) [1353408]
-- [fs] svcrdma: svc_rdma_post_recv() should close connection on error (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Backport merge conflict resolution ab9f2faf (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Find rmsgp more reliably (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Remove unused variable (Sachin Prabhu) [1353408]
-- [md] revert "raid10: make sync_request_write() call bio_copy_data()" (Jes Sorensen) [1354469]
-
-* Thu Aug 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-492.el7]
-- [target] iscsi-target: Rework the configfs of cxgbit (Sai Vemuri) [1211351]
-- [target] iscsi-target: Convert transport drivers to signal rdma_shutdown (Sai Vemuri) [1211351]
-- [target] cxgbit: add files for cxgbit.ko (Sai Vemuri) [1211351]
-- [target] iscsi-target: export symbols (Sai Vemuri) [1211351]
-- [target] iscsi-target: call complete on conn_logout_comp (Sai Vemuri) [1211351]
-- [target] iscsi-target: clear tx_thread_active (Sai Vemuri) [1211351]
-- [target] iscsi-target: use conn_transport->transport_type in text rsp (Sai Vemuri) [1211351]
-- [target] iscsi-target: move iscsit_thread_check_cpumask() (Sai Vemuri) [1211351]
-- [target] iscsi-target: add void (*iscsit_get_r2t_ttt)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: add int (*iscsit_validate_params)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: split iscsi_target_rx_thread() (Sai Vemuri) [1211351]
-- [target] iscsi-target: Fix rx_login_comp hang after login failure (Sai Vemuri) [1211351]
-- [target] iscsi-target: add void (*iscsit_get_rx_pdu)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: add void (*iscsit_release_cmd)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: add int (*iscsit_xmit_pdu)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: Use shash and ahash (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: update Kconfig and Makefile (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: add iSCSI DDP page pod manager (Sai Vemuri) [1211351]
-- [netdrv] cxgb4, iw_cxgb4: move delayed ack macro definitions (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: move VLAN_NONE macro definition (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: update struct cxgb4_lld_info definition (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: add definitions for iSCSI target ULD (Sai Vemuri) [1211351]
-- [netdrv] cxgb4, cxgb4i: move struct cpl_rx_data_ddp definition (Sai Vemuri) [1211351]
-- [netdrv] cxgb4, iw_cxgb4, cxgb4i: remove duplicate definitions (Sai Vemuri) [1211351]
-- [netdrv] cxgb4, iw_cxgb4: move definitions to common header file (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: large receive offload support (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: allocate resources for CXGB4_ULD_ISCSIT (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: add new ULD type CXGB4_ULD_ISCSIT (Sai Vemuri) [1211351]
-
-* Thu Aug 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-491.el7]
-- [net] ipv6: kill sk_dst_lock (Florian Westphal) [1350349]
-- [net] ipv6: remove useless spin_lock/spin_unlock (Florian Westphal) [1350349]
-- [net] macsec: RXSAs don't need to hold a reference on RXSCs (Sabrina Dubroca) [1354332]
-- [net] macsec: fix reference counting on RXSC in macsec_handle_frame (Sabrina Dubroca) [1354332]
-- [net] macsec: fix negative refcnt on parent link (Sabrina Dubroca) [1354232]
-- [net] rtnetlink: fix a memory leak when ->newlink fails (Sabrina Dubroca) [1354232]
-- [net] rtnetlink: correct error path in rtnl_newlink() (Sabrina Dubroca) [1354232]
-- [net] rtnetlink: remove an unneeded test (Sabrina Dubroca) [1354232]
-- [net] tcp: fix ipv4 mapped request socks (Hangbin Liu) [1360685]
-- [net] inet: introduce ireq_family (Hangbin Liu) [1360685]
-- [net] sctp: change to use TCP_CLOSE_WAIT as SCTP_SS_CLOSING (Xin Long) [1359219]
-- [net] sctp: allow receiving msg when TCP-style sk is in CLOSED state (Xin Long) [1358092]
-- [net] sctp: allow delivering notifications after receiving SHUTDOWN (Xin Long) [1251528]
-- [net] sctp: fix the issue sctp requeue auth chunk incorrectly (Xin Long) [1359378]
-- [net] af_packet: don't pass empty blocks for PACKET_V3 (Paolo Abeni) [1360213]
-- [net] packet: Fixed TPACKET V3 to signal poll when block is closed rather than every packet (Paolo Abeni) [1360213]
-- [x86] paravirt: Do not trace _paravirt_ident_*() functions (Steven Rostedt) [1339118]
-- [x86] pci: vmd: Separate MSI and MSI-X vector sharing (Myron Stowe) [1364796]
-- [x86] pci: vmd: Use lock save/restore in interrupt enable path (Myron Stowe) [1364796]
-- [x86] pci: vmd: Select device dma ops to override (Myron Stowe) [1364796]
-- [pci] Remove return values from pcie_port_platform_notify() and relatives (Myron Stowe) [1364796]
-- [pci] acpi: Allow all PCIe services on non-ACPI host bridges (Myron Stowe) [1364796]
-- [x86] pci: vmd: Remove development dev_info(s) (Myron Stowe) [1364796]
-- [x86] pci: vmd: Compose MSI message with correct IRQ index and clear useless data member (Myron Stowe) [1364796]
-- [x86] pci: vmd: Fix teardown_msi_irqs to upstream msi_free (Myron Stowe) [1364796]
-- [x86] pci: vmd: Add irq_mask/irq_unmaks ops (Myron Stowe) [1364796]
-- [x86] kvm: bump MAX_VCPUS to 288 (Radim Krcmar) [1273718]
-- [x86] kvm: add a flag to disable KVM x2apic broadcast quirk (Radim Krcmar) [1273718]
-- [x86] kvm: add KVM_CAP_X2APIC_API (Radim Krcmar) [1273718]
-- [x86] kvm: pass struct kvm to kvm_set_routing_entry (Radim Krcmar) [1273718]
-- [x86] kvm: reset APIC ID when enabling LAPIC (Radim Krcmar) [1273718]
-- [x86] kvm: use hardware-compatible format for APIC ID register (Radim Krcmar) [1273718]
-- [x86] kvm: use generic function for MSI parsing (Radim Krcmar) [1273718]
-- [x86] kvm: dynamic kvm_apic_map (Radim Krcmar) [1273718]
-- [x86] kvm: use physical LAPIC array for logical x2APIC (Radim Krcmar) [1273718]
-- [x86] kvm: add kvm_apic_map_get_dest_lapic (Radim Krcmar) [1273718]
-- [x86] kvm: Unify traced vector format (Radim Krcmar) [1273718]
-- [x86] kvm: cleanup kvm_irq_delivery_to_apic_fast (Radim Krcmar) [1273718]
-- [scsi] ipr: Fix sync scsi scan (Steve Best) [1365824]
-- [virtio] virtio-input: reset device and detach unused during remove (Jason Wang) [1248933]
-- [infiniband] ib/core: Support for CMA multicast join flags (Don Dutile) [1363579]
-- [infiniband] ib/sa: Add cached attribute containing SM information to SA port (Don Dutile) [1363579]
-- [infiniband] ib/sa: agent: Add support for SA agent get ClassPortInfo (Don Dutile) [1363579]
-
-* Thu Aug 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-490.el7]
-- [tools] testing/nvdimm: open code dma_coerce_mask_and_coherent() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: make DIMM DSMs optional (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: fix format interface code byte order (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] testing/nvdimm: replace CONFIG_DMA_CMA dependency with vmalloc() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] libnvdimm, pmem: allow nfit_test to override pmem_direct_access() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: fix acpi_check_dsm() vs zero functions implemented (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn, dax: fix initialization vs autodetect for mode + alignment (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [uapi] nfit: add Microsoft NVDIMM DSM command set to white list (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: fix deletion (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: fix alignment validation (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: autodetect support (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: release ida resources (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: stop requiring a driver ->remove() method (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: record the specified alignment of a dax-device instance (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: reserve space to store labels for device-dax (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: introduce device-dax infrastructure (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: fix ARCH=alpha allmodconfig build failure (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: add sysfs dimm 'family' and 'dsm_mask' attributes (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] testing/nvdimm: ND_CMD_CALL support (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: disable vendor specific commands (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: fix translation of command status results (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: fix memmap reservation sizing (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: export subsystem ids as attributes (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: fix format interface code byte order per ACPI6.1 (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [uapi] nfit, libnvdimm: limited/whitelisted dimm command marshaling mechanism (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, libnvdimm: clarify "commands" vs "_DSMs" (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] libnvdimm: increase max envelope size for ioctl (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: Add sysfs "id" for NVDIMM ID (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] acpica: acpi 6.1: Update NFIT table for additional new fields (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: Update nfit driver to comply with ACPI 6.1 (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: cleanup nvdimm_namespace_common_probe(), kill 'host' (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: kill ->pmem_queue and ->pmem_disk (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem, pfn: move pfn setup to the core (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] libnvdimm, pmem, pfn: make pmem_rw_bytes generic and refactor pfn setup (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: clean up resource print / request (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: use devm_add_action to release bdev resources (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, blk: move i/o infrastructure to nd_namespace_blk (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, blk: quiet i/o error reporting (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: use ->queuedata for driver private data (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, blk: use ->queuedata for driver private data (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, blk: use devm_add_action to release bdev resources (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, btt: add btt startup debug (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, btt, convert nd_btt_probe() to devm (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn, convert nd_pfn_probe() to devm (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: kill pmem->ndns (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: clarify the write+clear_poison+write flow (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] widen acpi_evaluate_dsm() revision and function-index arguments (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] libnvdimm, nfit: Use ACPI_SIG_NFIT instead of hard coded string (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] libnvdimm, test: add mock SMART data payload (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] libnvdimm, nfit: report multiple interface codes per-dimm (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: fix nvdimm_namespace_add_poison() vs section alignment (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: fix uuid validation (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: fix smart data retrieval (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [mm] ZONE_DEVICE depends on SPARSEMEM_VMEMMAP (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [mm] exclude ZONE_DEVICE from GFP_ZONE_TABLE (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] libnvdimm, pmem: clear poison on write (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: fix kmap_atomic() leak in error path (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] btt: don't allocate unused major device number (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] blk: don't allocate unused major device number (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] pmem: don't allocate unused major device number (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: fix ia64 build, use PHYS_PFN (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, libnvdimm: clear poison command support (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] testing/nvdimm: expand ars unit testing (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, tools/testing/nvdimm: test multiple control regions per-dimm (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: 'resource'-address and 'size' attributes for pfn devices (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: adjust for section collisions with 'System RAM' (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] mm: add PHYS_PFN, use it in __phys_to_pfn() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [mm] fix type cast in __pfn_to_phys() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: fix 'pfn' support for section-misaligned namespaces (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: Fix security issue with DSM IOCTL (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: Clean-up access mode check (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] nfit: disable userspace initiated ars during scrub (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: scrub and register regions in a workqueue (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] nfit, libnvdimm: async region scrub workqueue (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, tools/testing/nvdimm: unify common init for acpi_nfit_desc (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] libnvdimm: async notification support (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: protect nvdimm_{bus|namespace}_add_poison() with nvdimm_bus_lock() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] libnvdimm, nfit: centralize command status translation (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, tools/testing/nvdimm: add format interface code definitions (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] arm: 8522/1:  nvdimm: ensure no negative value gets returned on positive match (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-
-* Mon Aug 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-489.el7]
-- [infiniband] ib/mlx4: Add diagnostic hardware counters (kamal heib) [1360924]
-- [netdrv] mlx4: Query performance and diagnostics counters (kamal heib) [1360924]
-- [netdrv] mlx4: Add diagnostic counters capability bit (kamal heib) [1360924]
-- [netdrv] bnxt_en: Add new NPAR and dual media device IDs (John Linville) [1360126]
-- [scsi] ipr: Fix error return code in ipr_probe_ioa() (Steve Best) [1364138]
-- [scsi] ipr: Wait to do async scan until scsi host is initialized (Steve Best) [1364138]
-- [scsi] ipr: Increase MSIX vectors number (Steve Best) [1364138]
-- [scsi] ipr: Add new CCIN for new adapters support (Steve Best) [1364138]
-- [acpi] Change NFIT driver to insert new resource (Jeff Moyer) [1342696]
-- [kernel] resource: Export insert_resource and remove_resource (Jeff Moyer) [1342696]
-- [kernel] resource: Add remove_resource interface (Jeff Moyer) [1342696]
-- [kernel] resource: Change __request_region to inherit from immediate parent (Jeff Moyer) [1342696]
-- [acpi] apei/einj: Allow memory error injection to NVDIMM (Jeff Moyer) [1342696]
-- [kernel] resource: Add region_intersects_pmem() (Jeff Moyer) [1342696]
-- [kernel] resource: Add @flags to region_intersects() (Jeff Moyer) [1342696]
-- [acpi] apei: Cleanup alignment-aware accesses (Jeff Moyer) [1342696]
-- [acpi] apei, einj: Changes to the ACPI/APEI/EINJ debugfs interface (Jeff Moyer) [1342696]
-- [acpi] apei: Add parameter check before error injection (Jeff Moyer) [1342696]
-- [acpi] apei, einj: Fix error return code in einj_init() (Jeff Moyer) [1342696]
-
-* Fri Aug 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-488.el7]
-- [block] revert "remove struct bio_batch" (Mike Snitzer) [1361484]
-- [block] revert "add __blkdev_issue_discard" (Mike Snitzer) [1361484]
-- [block] revert "reinstate early return of -EOPNOTSUPP from blkdev_issue_discard" (Mike Snitzer) [1361484]
-- [block] revert "missing bio_put following submit_bio_wait" (Mike Snitzer) [1361484]
-- [md] revert "dm thin: use __blkdev_issue_discard for async discard support" (Mike Snitzer) [1361484]
-- [md] revert "dm thin: unroll issue_discard() to create longer discard bio chains" (Mike Snitzer) [1361484]
-- [nvme] avoid crashes when node 0 is memoryless node (David Milburn) [1350682]
-- [mm] oom: ensure memoryless node zonelist always includes zones (David Milburn) [1350682]
-- [mm] hmm: select mmu-notifier (Andrew Jones) [1230959]
-- [rtc] opal: Enable alarms only when opal supports tpo (Steve Best) [1361858]
-- [x86] pci: vmd: Attach VMD resources to parent domain's resource tree (Myron Stowe) [1249224]
-- [x86] pci: vmd: Set bus resource start to 0 (Myron Stowe) [1249224]
-- [x86] pci: vmd: Document code for maintainability (Myron Stowe) [1249224]
-- [x86] pci: Add driver for Intel Volume Management Device (Myron Stowe) [1249224]
-- [x86] PCI bus specific MSI operations (Myron Stowe) [1249224]
-- [pci] aer: Use 32 bit PCI domain numbers (Myron Stowe) [1249224]
-- [x86] perf: Fix copy_from_user_nmi() return if range is not ok (Jiri Olsa) [1361670]
-- [x86] perf: Fix arch_perf_out_copy_user default (Jiri Olsa) [1361670]
-- [x86] perf: Further optimize copy_from_user_nmi() (Jiri Olsa) [1361670]
-- [x86] perf: Change offcore response masks for Knights Landing (Jiri Olsa) [1336681]
-- [gpio] use kzalloc to allocate gpio_device (Steve Best) [1358979]
-- [gpio] gpiolib: rewrite gpiodev_add_to_list (Prarit Bhargava) [1358979]
-- [gpio] reflect base and ngpio into gpio_device (Prarit Bhargava) [1358979]
-- [gpio] make the gpiochip a real device (Prarit Bhargava) [1358979]
-- [gpio] gpiolib: fix chip order in gpio list (Prarit Bhargava) [1358979]
-- [gpio] fix warning about iterator (Prarit Bhargava) [1358979]
-- [gpio] gpiolib: improve overlap check of range of gpio (Prarit Bhargava) [1358979]
-- [gpio] sysfs: rename gpiochip registration functions (Prarit Bhargava) [1358979]
-- [gpio] remove gpio_descs global array (Prarit Bhargava) [1358979]
-- [netdrv] be2net: perform temperature query in adapter regardless of its interface state (Gustavo Duarte) [1361226]
-- [crypto] qat - make qat_asym_algs.o depend on asn1 headers (Herbert Xu) [1351563]
-- [powerpc] kvm: book3s_hv: Save/restore TM state in H_CEDE (David Gibson) [1349244] {CVE-2016-5412}
-- [powerpc] kvm: book3s_hv: Pull out TM state save/restore into separate procedures (David Gibson) [1349244] {CVE-2016-5412}
-- [powerpc] pseries: Fix PCI config address for DDW (Gustavo Duarte) [1357809]
-- [powerpc] iommu: Remove the dependency on EEH struct in DDW mechanism (Gustavo Duarte) [1357809]
-- [powerpc] tm: Always reclaim in start_thread() for exec() class syscalls (David Gibson) [1349238] {CVE-2016-5828}
-
-* Fri Aug 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-487.el7]
-- [infiniband] i40iw: Enable remote access rights for stag allocation (Stefan Assmann) [1283405]
-- [infiniband] i40iw: do not print unitialized variables in error message (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Enable level-1 PBL for fast memory registration (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Return correct max_fast_reg_page_list_len (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Correct status check on i40iw_get_pble (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Correct CQ arming (Stefan Assmann) [1283405]
-- [infiniband] ib/core: Make device counter infrastructure dynamic (Stefan Assmann) [1283405]
-- [infiniband] i40iw: pass hw_stats by reference rather than by value (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Remove unnecessary synchronize_irq() before free_irq() (Stefan Assmann) [1283405]
-- [infiniband] i40iw: constify i40iw_vf_cqp_ops structure (Stefan Assmann) [1283405]
-- [infiniband] ib/core: Enhance ib_map_mr_sg() (Stefan Assmann) [1283405]
-- [infiniband] ib/core: Add passing an offset into the SG to ib_map_mr_sg (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for removing quad hash entries (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for checking if the QP is destroyed (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for using one sge for RDMA READ (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for the size of kernel mode SQ (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for a NOP WQE size (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Correct STag mask to min of 14 bits (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fixes for WQE alignment (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix SD calculation for initial HMC creation (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix endian issues and warnings (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Add base memory management extensions (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Initialize max enabled vfs variable (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Correct return code check in add_pble_pool (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Add virtual channel message queue (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Remove unused code and fix warning (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Populate vendor_id and vendor_part_id fields (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Set vendor_err only if there is an actual error (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Add qp table lock around AE processing (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Do not set self-referencing pointer to NULL after free (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Correct max message size in query port (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix refused connections (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Correct QP size calculation (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix overflow of region length (Stefan Assmann) [1283405]
-- [infiniband] i40iw: avoid potential uninitialized variable use (Stefan Assmann) [1283405]
-- [infiniband] i40iw: mark as tech-preview (Stefan Assmann) [1283405]
-- [infiniband] i40iw: fix for missing commit 2f8e2c877784a0b23f02b41550170a24e14f5c95 (Stefan Assmann) [1283405]
-- [infiniband] i40iw: changes for build of i40iw module (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Replace the obsolete crypto hash interface with shash (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Kconfig and Makefile for iwarp module (Stefan Assmann) [1283405]
-- [infiniband] i40iw: virtual channel handling files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: user kernel shared files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add X722 register file (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add hardware related header files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add file to handle cqp calls (Stefan Assmann) [1283405]
-- [infiniband] i40iw: use shared code for port mapper (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add files for iwarp interface (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add hw and utils files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add hmc resource files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add pble resource files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add puda code (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add connection management code (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add main, hdr, status (Stefan Assmann) [1283405]
-- [uapi] i40iw: add entry in rdma_netlink (Stefan Assmann) [1283405]
-
-* Fri Aug 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-486.el7]
-- [mm] vfs: prevent buffered I/O reads to DAX inodes (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] xfs, ext4, splice: avoid the page cache for DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: check return value of dax_radix_entry() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm: fix mixed zone detection in devm_memremap_pages (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [lib] list: kill list_force_poison() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: Continue init even if ARS commands are unimplemented (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2, ext4: fix issue with missing journal entry in ext4_dax_mkwrite() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: move writeback calls into the filesystems (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] dax: give DAX clearing code correct bdev (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: online defrag not supported with DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2, ext4: only set S_DAX for regular inodes (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] block: disable block device DAX by default (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] use 'u64' for pfn flags (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap: Fix error value when memremap failed (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [uapi] nfit: update address range scrub commands to the acpi 6.1 format (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] libnvdimm, tools/testing/nvdimm: fix 'ars_status' output buffer sizing (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: fix multi-interface dimm handling, acpi6.1 compatibility (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap_release(): fix memremap'd addr handling (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm, x86: fix pte_page() crash in gup_pte_range() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm: Fix vmalloc_fault() to handle large pages properly (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] uaccess/64: Handle the caching of 4-byte nocache copies properly in __copy_user_nocache() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] uaccess/64: Make the __copy_user_nocache() assembly code more readable (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm: fix pfn_t vs highmem (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: dirty inode only if required (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [lib] radix-tree: fix race in gang lookup (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] phys_to_pfn_t: use phys_addr_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] fix pfn_t to page conversion in vm_insert_mixed (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: use DAX for partition table reads (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] fs, block: force direct-I/O for dax-enabled block devices (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap_pages: fix vmem_altmap lifetime + alignment handling (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: fix restoring memmap location (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm: fix mode determination for e820 devices (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: never rely on bh.b_dev being set by get_block() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: call dax_pfn_mkwrite() for DAX fsync/msync (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: call dax_pfn_mkwrite() for DAX fsync/msync (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2: call dax_pfn_mkwrite() for DAX fsync/msync (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: add support for fsync/sync (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] add find_get_entries_tag() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: support dirty DAX entries in radix tree (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] pmem: add wb_cache_pmem() to the PMEM API (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] x86: get_user_pages() for dax mappings (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [lib] mm, dax, pmem: introduce {get|put}_dev_pagemap() for dax-gup (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pmem: move request_queue allocation earlier in probe (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: convert vmf_insert_pfn_pmd() to pfn_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax, gpu: convert vm_insert_mixed to pfn_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm: introduce _PAGE_DEVMAP (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] hugetlb: fix compile error on tile (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn, pmem: allocate memmap array in persistent memory (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] x86, mm: introduce vmem_altmap to augment vmemmap_populate() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] move __phys_to_pfn and __pfn_to_phys to asm/generic/memory_model.h (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm: introduce find_dev_pagemap() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm: skip memory block registration for ZONE_DEVICE (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm, dax, pmem: introduce pfn_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [virt] kvm: rename pfn_t to kvm_pfn_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: fix livelock, allow dax pmd mappings to become writeable (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] dax: fix lifetime of in-kernel dax mappings with dax_map_atomic() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: guarantee page aligned results from bdev_direct_access() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: increase granularity of dax_clear_blocks() operations (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] pmem, dax: clean up clear_pmem() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: kill disk_{check|set|clear|alloc}_badblocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pmem: nvdimm_read_bytes() badblocks support (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] pmem: fail io-requests to known bad blocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm: convert to statically allocated badblocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm: don't fail init for full badblocks list (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block, badblocks: introduce devm_init_badblocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [block] clarify badblocks lifetime (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] badblocks: rename badblocks_free to badblocks_exit (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pmem: move definition of nvdimm_namespace_add_poison to nd.h (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] libnvdimm: Add a poison list and export badblocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] nfit_test: Enable DSMs for all test NFITs (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [md] convert to use the generic badblocks code (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: Add badblock management for gendisks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] badblocks: Add core badblock management code (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [block] fix del_gendisk() vs blkdev_ioctl crash (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] block: introduce bdev_file_inode() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm: fix namespace object confusion in is_uuid_busy() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm/pat: Change free_memtype() to support shrinking case (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] x86/mm/pat: Add untrack_pfn_moved for mremap (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: introduce per-inode DAX enablement (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: fix recursive splice read locking with DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: Don't use reserved blocks for data blocks with DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: move 'memory mode' indication to sysfs (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] testing/libnvdimm: cleanup mock resource lookup (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: fix nd_pfn_validate() return value handling (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] libnvdimm, pfn: enable pfn sysfs interface unit testing (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: fix pfn seed creation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: add parent uuid validation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: add 'align' attribute, default to HPAGE_SIZE (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: clean up pfn create parameters (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: kill ND_PFN_ALIGN (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] do not show pfn_seed for non pmem regions (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] improve diagnosibility of namespaces (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: use pre-zeroed blocks for DAX page faults (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [trace] ext4: implement allocation of pre-zeroed blocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: provide ext4_issue_zeroout() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [trace] ext4: get rid of EXT4_GET_BLOCKS_NO_LOCK flag (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: fix races of writeback with punch hole and zero range (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: fix races between buffered IO and collapse / insert range (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: move unlocked dio protection from ext4_alloc_file_blocks() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: fix races between page faults and hole punching (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: wait for existing dio workers in ext4_alloc_file_blocks() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: acpi_nfit_notify(): Do not leave device locked (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] nfit: Adjust for different _FIT and NFIT headers (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: Fix the check for a successful NFIT merge (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: Account for table size length variation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] libnvdimm, e820: skip module loading when no type-12 (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: protect rw_page against device teardown (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: disable pmd mappings (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2, ext4: warn when mounting with dax enabled (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: fix __dax_pmd_fault crash (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [documentation] libnvdimm: documentation clarifications (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pmem: fix size trim in pmem_direct_access() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, e820: fix numa node for e820-type-12 pmem ranges (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] testing/nvdimm, acpica: fix flag rename build breakage (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] coredump: add DAX filtering for FDPIC ELF coredumps (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] coredump: add DAX filtering for ELF coredumps (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: xfs_filemap_pmd_fault treats read faults as write faults (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: add ->pfn_mkwrite support for DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: DAX does not use IO completion callbacks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: Don't use unwritten extents for DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: introduce BMAPI_ZERO for allocating zeroed extents (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: fix inode size update overflow in xfs_map_direct() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] acpi: nfit: Add support for hot-add (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: in acpi_nfit_init, break on a 0-length table (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] acpica: Update NFIT table to rename a flags field (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] block: blk_flush_integrity() for bio-based drivers (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: generic request_queue reference counting (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: use an atomic_t for mq_freeze_depth (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2: Add locking for DAX faults (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] pmem, memremap: convert to numa aware allocations (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap_pages: use numa_mem_id (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm: make allocations numa aware by default (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap: convert to return ERR_PTR (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memunmap: use devres_release() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] pmem: kill memremap_pmem() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm: quiet arch_add_memory() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [edac] Don't allow empty DIMM labels (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [edac] Fix sysfs dimm_label store operation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [edac] Fix sysfs dimm_label show operation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-
-* Thu Aug 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-485.el7]
-- [mm] percpu: fix synchronization between synchronous map extension and chunk destruction (Joe Lawrence) [1344569] {CVE-2016-4794}
-- [mm] percpu: fix synchronization between chunk->map_extend_work and chunk destruction (Joe Lawrence) [1344569] {CVE-2016-4794}
-- [mm] percpu: fix locking regression in the failure path of pcpu_alloc() (Joe Lawrence) [1344569] {CVE-2016-4794}
-- [s390] qeth: delete napi struct when removing a qeth device (Hendrik Brueckner) [1357030]
-- [s390] kprobes: Fix conflict between jprobes and function graph tracing (Jiri Olsa) [1347620]
-- [hid] hiddev: validate num_values for HIDIOCGUSAGES, HIDIOCSUSAGES commands (Yauheni Kaliuta) [1360029] {CVE-2016-5829}
-- [scsi] cxlflash: Verify problem state area is mapped before notifying shutdown (Steve Best) [1361359]
-- [scsi] cxlflash: Shutdown notify support for CXL Flash cards (Steve Best) [1361359]
-- [scsi] cxlflash: Add device dependent flags (Steve Best) [1361359]
-- [scsi] cxlflash: Fix to drain operations from previous reset (Steve Best) [1361359]
-- [scsi] cxl: Make vPHB device node match adapter's (Steve Best) [1361359]
-- [scsi] cxlflash: Fix to resolve dead-lock during EEH recovery (Steve Best) [1361359]
-- [scsi] fix race between simultaneous decrements of ->host_failed (Gustavo Duarte) [1357946]
-- [input] Enable VMMOUSE support (Lauro Ramos Venancio) [1331578]
-- [input] vmmouse - remove port reservation (Lauro Ramos Venancio) [1331578]
-- [input] vmmouse - fix absolute device registration (Lauro Ramos Venancio) [1331578]
-- [input] add vmmouse driver (Lauro Ramos Venancio) [1331578]
-- [kernel] modules: Add kernel parameter to blacklist modules (Prarit Bhargava) [1361585]
-- [kernel] rcu: Fix attempt to avoid unsolicited offloading of callbacks (Luiz Capitulino) [1356726]
-- [kernel] rcu: Fix CONFIG_RCU_NOCB_CPU_ALL panic on machines with sparse CPU mask (Luiz Capitulino) [1356726]
-- [kernel] rcu: Convert rcutree_plugin.h printk calls (Luiz Capitulino) [1356726]
-- [kernel] watchdog, sysctl: fix pointer to watch_cpumask in kernel_table (Jerome Marchand) [1360787]
-- [netdrv] ibmvnic: Fix passive VNIC server login process (Gustavo Duarte) [1357915]
-- [netdrv] ibmvnic: simplify and improve driver probe function (Gustavo Duarte) [1357915]
-- [netdrv] ibmvnic: dispose irq mappings (Gustavo Duarte) [1357915]
-- [netdrv] ibmvnic: properly start and stop tx queues (Gustavo Duarte) [1357915]
-- [netdrv] ibmvnic: fix to use list_for_each_safe() when delete items (Gustavo Duarte) [1357915]
-
-* Wed Aug 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-484.el7]
-- [net] geneve: fixup netdevice_notifier registration (Sabrina Dubroca) [1353790]
-- [wireless] convert to use netdev_notifier_info (Sabrina Dubroca) [1353790]
-- [netdrv] hyperv: convert to use netdev_notifier_info (Sabrina Dubroca) [1353790]
-- [net] netfilter: nf_nat: on-stack struct netdev_notifier_info (Sabrina Dubroca) [1353790]
-- [net] ipv4: ip_check_defrag should not assume that skb_network_offset is zero (Paolo Abeni) [1354448]
-- [net] ipv4: ip_check_defrag should correctly check return value of skb_copy_bits (Paolo Abeni) [1354448]
-- [net] macsec: validate ICV length on link creation (Davide Caratti) [1360273]
-- [net] macsec: fix error codes when a SA is created (Davide Caratti) [1360273]
-- [net] macsec: limit ICV length to 16 octets (Davide Caratti) [1360273]
-- [net] sctp: also point GSO head_skb to the sk when it's available (Marcelo Leitner) [1278912]
-- [net] sctp: fix GSO for IPv6 (Marcelo Leitner) [1278912]
-- [net] sctp: support ipv6 nonlocal bind (Xin Long) [1355769]
-- [net] sctp: use inet_recvmsg to support sctp RFS well (Marcelo Leitner) [981353]
-- [net] netfilter: x_tables: speed up jump target validation (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] pktgen: fix null ptr deref in skb allocation (Vitaly Kuznetsov) [1356443]
-- [net] pktgen: Observe needed_headroom of the device (Vitaly Kuznetsov) [1356443]
-- [net] pktgen: ipv6: numa: consolidate skb allocation to pktgen_alloc_skb (Vitaly Kuznetsov) [1356443]
-- [net] xfrm: Fix crash observed during device unregistration and decryption (Florian Westphal) [1243602]
-- [net] xfrm: Reset encapsulation field of the skb before transformation (Florian Westphal) [1243602]
-- [net] xfrm: dst_entries_init() per-net dst_ops (Florian Westphal) [1243602]
-- [net] xfrm: Increment statistic counter on inner mode error (Florian Westphal) [1243602]
-- [net] xfrm4: Reload skb header pointers after calling pskb_may_pull (Florian Westphal) [1243602]
-- [net] xfrm4: Fix header checks in _decode_session4 (Florian Westphal) [1243602]
-- [net] xfrm: Fix unaligned access to stats in copy_to_user_state() (Florian Westphal) [1243602]
-- [net] xfrm: Fix state threshold configuration from userspace (Florian Westphal) [1243602]
-- [net] xfrm: fix race between netns cleanup and state expire notification (Florian Westphal) [1243602]
-- [net] xfrm: Fix unlink race when policies are deleted (Florian Westphal) [1243602]
-- [net] xfrm: Clone states properly on migration (Florian Westphal) [1243602]
-- [net] xfrm: Take xfrm_state_lock in xfrm_migrate_state_find (Florian Westphal) [1243602]
-- [net] xfrm: avoid creating temporary SA when there are no listeners (Florian Westphal) [1243602]
-- [net] xfrm: Correct xfrm_state_lock usage in xfrm_stateonly_find (Florian Westphal) [1243602]
-- [net] xfrm: export verify_userspi_info for pkfey and netlink interface (Florian Westphal) [1243602]
-- [net] Documentation: Document xfrm4_gc_thresh and xfrm6_gc_thresh (Florian Westphal) [1243602]
-- [net] xfrm: Increase the garbage collector threshold (Florian Westphal) [1243602]
-- [net] xfrm: prevent ipcomp scratch buffer race condition (Florian Westphal) [1243602]
-- [net] xfrm: Force SA to be lookup again if SA in acquire state (Florian Westphal) [1243602]
-- [net] xfrm: Fix replay size checking on async events (Florian Westphal) [1243602]
-- [net] xfrm: Make xfrm_state timer monotonic (Florian Westphal) [1243602]
-- [net] xfrm: Delete hold_timer when destroy policy (Florian Westphal) [1243602]
-
-* Tue Aug 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-483.el7]
-- [fs] nfsv4: Don't perform cached access checks before we've OPENed the file (Steve Dickson) [1359944]
-- [fs] ovl: fix copy-up warning (Miklos Szeredi) [1354293]
-- [fs] nfsv4: Allow retry of operations that used a returned delegation stateid (Steve Dickson) [1358308]
-- [fs] nfsv4: Label stateids with the type (Steve Dickson) [1358308]
-- [fs] sunrpc: Ensure get_rpccred() and put_rpccred() can take NULL arguments (Steve Dickson) [1358308]
-- [fs] nfsv4: Use the right stateid for delegations in setattr, read and write (Steve Dickson) [1358308]
-- [fs] nfs: have flexfiles mirror keep creds for both ro and rw layouts (Benjamin Coddington) [1358386]
-- [fs] nfs: get a reference to the credential in ff_layout_alloc_lseg (Benjamin Coddington) [1358386]
-- [fs] nfs: have ff_layout_get_ds_cred take a reference to the cred (Benjamin Coddington) [1358386]
-- [fs] nfs: don't call nfs4_ff_layout_prepare_ds from ff_layout_get_ds_cred (Benjamin Coddington) [1358386]
-- [fs] sunrpc: add a get_rpccred_rcu inline (Benjamin Coddington) [1358386]
-- [fs] sunrpc: add rpc_lookup_generic_cred (Benjamin Coddington) [1358386]
-- [fs] sunrpc: plumb gfp_t parm into crcreate operation (Benjamin Coddington) [1358386]
-- [fs] nfs4: nfs4_ff_layout_prepare_ds should return NULL if connection failed (Benjamin Coddington) [1358386]
-- [fs] pnfs: Don't prevent flexfiles client from retrying LAYOUTGET (Benjamin Coddington) [1358386]
-- [fs] pnfs: Modify pnfs_update_layout tracepoints to use layout stateid (Benjamin Coddington) [1358386]
-- [fs] nfs: add new tracepoint for pnfs_update_layout (Benjamin Coddington) [1358386]
-- [fs] Adding stateid information to tracepoints (Benjamin Coddington) [1358386]
-- [fs] xfs: track and serialize in-flight async buffers against unmount (Brian Foster) [1347744]
-- [fs] xfs: exclude never-released buffers from buftarg I/O accounting (Brian Foster) [1347744]
-- [fs] xfs: fix duplicate buffer flag bits (Brian Foster) [1347744 1358817]
-
-* Mon Aug 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-482.el7]
-- [iscsi-target] Fix iser explicit logout TX kthread leak (Andy Grover) [1278224]
-- [iscsi-target] Fix iscsit_start_kthreads failure OOPs (Andy Grover) [1278224]
-- [iscsi-target] Fix use-after-free during TPG session shutdown (Andy Grover) [1278224]
-- [bnx2fc] replace printk() with BNX2FC_IO_DBG() (Maurizio Lombardi) [1360305]
-- [fs] cifs: dynamic allocation of ntlmssp blob (Jerome Marchand) [1358676]
-- [fs] cifs: use CIFS_MAX_DOMAINNAME_LEN when converting the domain name (Jerome Marchand) [1358676]
-- [mm] hmm: adjust HMM backport to work properly with rhel7 mm context (Jerome Glisse) [1230959]
-- [mm] hmm: only allow use of HMM through a kernel parameter (Jerome Glisse) [1230959]
-- [mm] hmm: mirror process address space on device with HMM helpers (Jerome Glisse) [1230959]
-- [mm] hmm: migration through heterogeneous memory management (Jerome Glisse) [1230959]
-- [mm] hmm: helper to walk CPU page table in parallel with generic table (Jerome Glisse) [1230959]
-- [mm] hmm: heterogeneous memory management support (Jerome Glisse) [1230959]
-- [mm] gpt: generic page table structure (Jerome Glisse) [1230959]
-- [x86] device: export device_rh_alloc() with EXPORT_SYMBOL (Vitaly Kuznetsov) [1360400]
-- [s390] dasd: fix incorrect locking order for LCU device add/remove (Hendrik Brueckner) [1330095]
-- [acpi] battery: Accelerate battery resume callback (Jeremy McNicoll) [1270522]
-- [virtio] virtio_balloon: export 'available' memory to balloon statistics (Luiz Capitulino) [1351660]
-- [mm] page_alloc: calculate 'available' memory in a separate function (Luiz Capitulino) [1351660]
-- [fs] proc: meminfo: estimate available memory more conservatively (Luiz Capitulino) [1351660]
-- [fs] proc: meminfo: meminfo_proc_show() fix typo in comment (Luiz Capitulino) [1351660]
-- [kernel] sched/core: Fix sched_rt_global_validate (Luiz Capitulino) [1357928]
-- [netdrv] hv_netvsc: Fix VF register on bonding devices (Vitaly Kuznetsov) [1357850]
-- [netdrv] hv_netvsc: Fix VF register on vlan devices (Vitaly Kuznetsov) [1357850]
-- [security] keys: Don't leak a key reference if request_key() tries to use a revoked keyring (David Howells) [1282584]
-- [infiniband] hfi1: Fix sleep inside atomic issue in init_asic_data (Alex Estrin) [1355901]
-
-* Wed Jul 27 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-481.el7]
-- [fs] gfs2: Extended attribute readahead optimization (Andreas Gruenbacher) [1256539]
-- [fs] gfs2: Extended attribute readahead (Andreas Gruenbacher) [1256539]
-- [fs] gfs2: Add meta readahead field in directory entries (Andreas Gruenbacher) [1256539]
-- [fs] lift file_*_write out of do_splice_direct() (Miklos Szeredi) [1359094]
-- [fs] lift file_*_write out of do_splice_from() (Miklos Szeredi) [1359094]
-- [fs] ovl: verify upper dentry in ovl_remove_and_whiteout() (Miklos Szeredi) [1359829]
-- [fs] ovl: Copy up underlying inode's ->i_mode to overlay inode (Miklos Szeredi) [1351861]
-- [fs] ovl: handle ATTR_KILL* (Miklos Szeredi) [1351861]
-- [fs] ovl: get_write_access() in truncate (Miklos Szeredi) [1359786]
-- [fs] ovl: xattr filter fix (Miklos Szeredi) [1359807]
-- [fs] libceph: use s instead of pE in seq_printf() in dump_target() (Ilya Dryomov) [1360323]
-- [fs] libceph: apply new_state before new_up_client on incrementals (Ilya Dryomov) [1359746]
-- [fs] cifs: Fix SMB2+ interim response processing for read requests (Sachin Prabhu) [1305657]
-- [fs] make nfs_atomic_open() call d_drop() on all ->open_context() errors (Benjamin Coddington) [1342305]
-- [fs] gfs2: Fix gfs2_replay_incr_blk for multiple journal sizes (Robert S Peterson) [1358926]
-- [fs] xfs: don't reset b_retries to 0 on every failure (Carlos Maiolino) [1357663]
-- [fs] xfs: remove extraneous buffer flag changes (Carlos Maiolino) [1357663]
-- [fs] xfs: fix xfs_error_get_cfg for negative errnos (Carlos Maiolino) [1357663]
-- [fs] userfaultfd: don't pin the user memory in userfaultfd_file_create() (Andrea Arcangeli) [1358957]
-- [mm] ksm: fix conflict between mmput and scan_get_next_rmap_item (Andrea Arcangeli) [1358958]
-- [mm] meminit: ensure node is online before checking whether pages are uninitialised (Koki Sanagi) [1359649]
-- [mm] meminit: always return a valid node from early_pfn_to_nid (Koki Sanagi) [1359649]
-- [mm] shm: add memfd.h to UAPI export list (Yauheni Kaliuta) [1282530 1354407]
-- [mm] slub: do not drop slab_mutex for sysfs_slab_add (Larry Woodman) [1282934]
-- [hv] don't leak memory in vmbus_establish_gpadl() (Vitaly Kuznetsov) [1341065]
-- [hv] get rid of redundant messagecount in create_gpadl_header() (Vitaly Kuznetsov) [1341065]
-- [hv] avoid vfree() on crash (Vitaly Kuznetsov) [1337074]
-- [x86] hyperv: Avoid reporting bogus NMI status for Gen2 instances (Vitaly Kuznetsov) [1337074]
-- [x86] Use pte_none() to test for empty PTE (Larry Woodman) [1347159]
-- [x86] Disallow running with 32-bit PTEs to work around erratum (Larry Woodman) [1347159]
-- [x86] Ignore A/D bits in pte/pmd/pud_none() (Larry Woodman) [1347159]
-- [x86] Move swap offset/type up in PTE to work around erratum (Larry Woodman) [1347159]
-- [pci] hyper-v: Fix crash in interrupt cleanup path (Cathy Avery) [1348475]
-- [i2c] designware: Add runtime PM hooks (David Arcari) [1358747]
-- [s390] fix test_fp_ctl inline assembly contraints (Hendrik Brueckner) [1356199]
-- [s390] qeth: switch to napi_gro_receive (Hendrik Brueckner) [1342108]
-- [kernel] sched: CONFIG_SCHEDSTATS kabi fix (Josh Poimboeuf) [1333444]
-- [kernel] kmod: remove unecessary explicit wide CPU affinity setting (Frederic Weisbecker) [1056801]
-- [netdrv] be2net: Fix broadcast echoes from EVB in BE3 (Ivan Vecera) [1249881]
-- [powerpc] Wire up sys_userfaultfd() (Laurent Vivier) [1353468]
-- [cpufreq] powernv: del_timer_sync when global and local pstate are equal (Gustavo Duarte) [1346255]
-- [cpufreq] powernv: Move smp_call_function_any() out of irq safe block (Gustavo Duarte) [1346255]
-- [cpufreq] powernv: Ramp-down global pstate slower than local-pstate (Gustavo Duarte) [1346255]
-- [cpufreq] Add support for per-policy driver data (Gustavo Duarte) [1346255]
-
-* Tue Jul 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-480.el7]
-- [md] dm: call PR reserve_unreserve on each underlying device (Mike Snitzer) [1357031]
-- [scsi] sd: don't use the ALL_TG_PT bit for reservations (Mike Snitzer) [1357031]
-- [md] dm raid: fix random optimal_io_size for raid0 (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: address checkpatch.pl complaints (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: change logical functions to actually return bool (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: use rdev_for_each in status (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: use rs->raid_disks to avoid memory leaks on free (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: support delta_disks for raid1, fix table output (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: enhance reshape check and factor out reshape setup (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: allow resize during recovery (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix rs_is_recovering() to allow for lvextend (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix rebuild and catch bogus sync_resync flags (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix ctr memory leaks on error paths (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix typo in write_mostly flag (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: also reject size change during recovery (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix new superblock_bitmap creation on disk addition (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: add comments and fix typos (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix raid10 device size error on out-of-place reshape (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: prohibit 'nosync' on new raid6 and reject resize during reshape (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: clarify and fix recovery (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix rs_set_capacity on growing reshape (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: make rs_set_capacity to work on shrinking reshape (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: enhance comments in takeover checks (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: remove bogus comment and fix comment typos (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: more restricting data_offset value checks (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: reject too many write_mostly devices (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: the sync_page_io() metadata_op argument is bool (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: prohibit to pass in both sync and nosync ctr flags (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: avoid superfluous memory barriers on static metadata (Mike Snitzer) [1356244 1357031]
-- [md] dm thin: unroll issue_discard() to create longer discard bio chains (Mike Snitzer) [1356244 1357031]
-- [md] dm thin: use __blkdev_issue_discard for async discard support (Mike Snitzer) [1356244 1357031]
-- [block] missing bio_put following submit_bio_wait (Mike Snitzer) [1356244 1357031]
-- [block] reinstate early return of -EOPNOTSUPP from blkdev_issue_discard (Mike Snitzer) [1356244 1357031]
-- [block] add __blkdev_issue_discard (Mike Snitzer) [1356244 1357031]
-- [block] remove struct bio_batch (Mike Snitzer) [1356244 1357031]
-- [md] dm: fix second blk_delay_queue() parameter to be in msec units not jiffies (Mike Snitzer) [1356244 1357031]
-- [md] dm ioctl: Simplify parameter buffer management code (Mike Snitzer) [1356244 1357031]
-
-* Tue Jul 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-479.el7]
-- [crypto] rsa-pkcs1pad - fix rsa-pkcs1pad request struct (Neil Horman) [1356718]
-- [crypto] gcm - Fix rfc4543 decryption crash (Herbert Xu) [1298642]
-- [crypto] crc32 - Rename generic implementation (Herbert Xu) [1314773]
-- [crypto] x86/sha512_ssse3 - fixup for asm function prototype change (Herbert Xu) [1267049]
-- [crypto] x86/sha - Add build support for Intel SHA Extensions optimized SHA1 and SHA256 (Herbert Xu) [1267049]
-- [crypto] x86/sha - glue code for Intel SHA extensions optimized SHA1 & SHA256 (Herbert Xu) [1267049]
-- [crypto] x86/sha - Intel SHA Extensions optimized SHA256 transform function (Herbert Xu) [1267049]
-- [crypto] x86/sha - Intel SHA Extensions optimized SHA1 transform function (Herbert Xu) [1267049]
-- [crypto] x86/sha512_ssse3 - move SHA-384/512 SSSE3 implementation to base layer (Herbert Xu) [1267049]
-- [crypto] x86/sha256_ssse3 - move SHA-224/256 SSSE3 implementation to base layer (Herbert Xu) [1267049]
-- [crypto] x86/sha1_ssse3 - move SHA-1 SSSE3 implementation to base layer (Herbert Xu) [1267049]
-- [crypto] sha512-generic - move to generic glue implementation (Herbert Xu) [1267049]
-- [crypto] sha256-generic - move to generic glue implementation (Herbert Xu) [1267049]
-- [crypto] sha1-generic - move to generic glue implementation (Herbert Xu) [1267049]
-- [crypto] sha512 - implement base layer for SHA-512 (Herbert Xu) [1267049]
-- [crypto] sha256 - implement base layer for SHA-256 (Herbert Xu) [1267049]
-- [crypto] sha1 - implement base layer for SHA-1 (Herbert Xu) [1267049]
-- [crypto] sha - replace memset by memzero_explicit (Herbert Xu) [1267049]
-- [crypto] memzero_explicit - make sure to clear out sensitive data (Herbert Xu) [1267049]
-- [crypto] sha512_ssse3 - fix byte count to bit count conversion (Herbert Xu) [1267049]
-- [crypto] sha256_ssse3 - use correct module alias for sha224 (Herbert Xu) [1267049]
-- [crypto] sha256_ssse3 - add sha224 support (Herbert Xu) [1267049]
-- [crypto] sha512_ssse3 - add sha384 support (Herbert Xu) [1267049]
-
-* Sat Jul 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-478.el7]
-- [netdrv] i40e: Don't notify client(s) for DCB changes on all VSIs (Stefan Assmann) [1276184]
-- [netdrv] virtio_net: add gro capability (Jason Wang) [1251908]
-- [powerpc] mm: don't do tlbie for updatepp request with NO HPTE fault (Gustavo Duarte) [1287289]
-- [infiniband] ib/mlx5: Fix port counter ID association to QP offset (Don Dutile) [1258655]
-- [infiniband] ib/mlx5: Add per port counters (Don Dutile) [1258655]
-- [infiniband] ib/mlx5: Add port protocol stats (Don Dutile) [1258655]
-- [infiniband] ib core sysfs: Add port_xmit_wait_counter V2 (Don Dutile) [1258655 1356294]
-- [infiniband] ib/core: Initialize sysfs attributes before sysfs create group (Don Dutile) [1258655]
-- [infiniband] ib/core: fix error unwind in sysfs hw counters code (Don Dutile) [1258655]
-- [infiniband] ib/core: Fix array length allocation (Don Dutile) [1258655]
-- [infiniband] ib/core: fix null pointer deref and mem leak in error handling (Don Dutile) [1258655]
-- [infiniband] ib/core: Make device counter infrastructure dynamic (Don Dutile) [1258655]
-
-* Fri Jul 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-477.el7]
-- [infiniband] ib/srpt: Simplify srpt_handle_tsk_mgmt() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix srp_map_sg_dma() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Always initialize use_fast_reg and use_fmr (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix a debug kernel crash (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Do not register memory if never_register has been set (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Prevent mapping failures (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Swap two code blocks in srp_add_one() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Enhance ib_map_mr_sg() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix srp_create_target() error handling (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix a memory descriptor leak in an error path (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: print "ib_srp: " prefix once (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Move common code into the caller (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Move code out of a loop (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Avoid that mapping failure triggers an infinite loop (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Introduce target->mr_pool_size (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix srp_map_data() error paths (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Document srp_map_data() return value (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix a comment (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix a spelling error in a source code comment (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Use ib_drain_rq() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Introduce capabilitymask2 field in ClassPortInfo mad (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Add IP to GID netlink offload (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Register SA ibnl client during ib_core initialization (Honggang Li) [1309411 1342604]
-- [infiniband] ib/netlink: Add a new local service operation (Honggang Li) [1309411 1342604]
-- [infiniband] ib/sa: Integrate ib_sa module into ib_core module (Honggang Li) [1309411 1342604]
-- [infiniband] ib/mad: Integrate ib_mad module into ib_core module (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Integrate IB address resolution module into core (Honggang Li) [1309411 1342604]
-- [infiniband] ib/sa: Use correct free function (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Fix a potential array overrun in CMA and SA agent (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Remove unnecessary check in ibnl_rcv_msg (Honggang Li) [1309411 1342604]
-- [infiniband] ib/iwpm: Fix a potential skb leak (Honggang Li) [1309411 1342604]
-- [infiniband] iwcm: Fix a sparse warning (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: add RW API support for signature MRs (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: generic RDMA READ/WRITE API (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: add a need_inval flag to struct ib_mr (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: add a simple MR pool (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: refactor ib_create_qp (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: add a helper to check for READ WITH INVALIDATE support (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Add passing an offset into the SG to ib_map_mr_sg (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Synchronize accept() and connect() paths on t_conn_lock (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Synchronize rds_tcp_accept_one with rds_send_xmit when resetting t_sock (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Call pskb_extract() helper function (Honggang Li) [1309411 1342604]
-- [net] rds: Fix the atomicity for congestion map update (Honggang Li) [1309411 1342604]
-- [net] rds: fix endianness for dp_ack_seq (Honggang Li) [1309411 1342604]
-- [net] rds: fix congestion map corruption for PAGE_SIZE > 4k (Honggang Li) [1309411 1342604]
-- [net] rds: memory allocated must be align to 8 (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Remove unused constant (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Add sysctl tunables for sndbuf/rcvbuf on rds-tcp socket (Honggang Li) [1309411 1342604]
-- [net] rds: ib: Support Fastreg MR (FRMR) memory registration mode (Honggang Li) [1309411 1342604]
-- [net] rds: ib: allocate extra space on queues for FRMR support (Honggang Li) [1309411 1342604]
-- [net] rds: ib: add Fastreg MR (FRMR) detection support (Honggang Li) [1309411 1342604]
-- [net] rds: ib: add mr reused stats (Honggang Li) [1309411 1342604]
-- [net] rds: ib: handle the RDMA CM time wait event (Honggang Li) [1309411 1342604]
-- [net] rds: ib: add connection info to ibmr (Honggang Li) [1309411 1342604]
-- [net] rds: ib: move FMR code to its own file (Honggang Li) [1309411 1342604]
-- [net] rds: ib: create struct rds_ib_fmr (Honggang Li) [1309411 1342604]
-- [net] rds: ib: Re-organise ibmr code (Honggang Li) [1309411 1342604]
-- [net] rds: ib: Remove the RDS_IB_SEND_OP dependency (Honggang Li) [1309411 1342604]
-- [net] rds: Add support for SO_TIMESTAMP for incoming messages (Honggang Li) [1309411 1342604]
-- [net] rds: Drop stale iWARP RDMA transport (Honggang Li) [1309411 1342604]
-- [net] rds: duplicate include net/tcp.h (Honggang Li) [1309411 1342604]
-- [infiniband] ib/cma: pass the port number to ib_create_qp (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Don't drain non-existent rq queue-pair (Honggang Li) [1309411 1342604]
-- [infiniband] iwpm: crash fix for large connections test (Honggang Li) [1309411 1342604]
-- [infiniband] iw_cxgb4: remove port mapper related code (Honggang Li) [1309411 1342604]
-- [infiniband] iwcm: common code for port mapper (Honggang Li) [1309411 1342604]
-- [infiniband] iw_cxgb4: add queue drain functions (Honggang Li) [1309411 1342604]
-- [infiniband] ib: new common API for draining queues (Honggang Li) [1309411 1342604]
-- [infiniband] rdma: use __ethtool_get_ksettings (Honggang Li) [1309411 1342604]
-
-* Fri Jul 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-476.el7]
-- [scsi] cxgbi: fix uninitialized flowi6 (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Add support to enable logging of firmware mailbox commands for VF (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Set number of queues in pci probe only (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Add a couple more checks for invalid provisioning configurations (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Configure queue based on resource and interrupt type (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Enable interrupts before we register our network devices (Sai Vemuri) [1275829]
-- [netdrv] cxgb4: Stop Rx Queues before freeing it up (Sai Vemuri) [1275829]
-- [netdrv] cxgb4/cxgb4vf: Deprecate module parameter dflt_msg_enable (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Add arp failure handlers to send_mpa_reply/reject() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Always wake up waiter in c4iw_peer_abort_intr() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Handle ret value of process_mpa_reply() in rx_data (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: atomic find and reference for listening endpoints (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Handle ULP accept/reject during ABORTING (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Release ep for for FPDU_MODE and MPA_REQ_RCVD in process_timeout (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Free skb in case of arp failure in _c4iw_free_ep() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: atomically lookup ep and get a reference (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Handle return value of c4iw_ofld_send() in abort_arp_failure() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: in process_timeout() don't move ep state to ABORTING (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: handle return value of c4iw_l2t_send() and send_mpa_req() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: stop_ep_timer() after MPA negotiation (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Do not stop timer in case of incomplete messages (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: parent_ep has to be dereferenced in case of passive accept failure (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: set the correct FID value in DSGL commands (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Correct RFC number of MPA (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Add few history bits for ep (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: remove abort_connection() usage from ep_timeout() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: move QP -> ERROR on fatal disconnect errors (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: don't use abort_connection in process_mpa_request() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: remove abort_connection() usage from accept/reject (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: free resources when send_flowc() fails (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: remove connection abort from process_mpa_reply (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: ensure eps don't get freed while the mutex is held (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: stop ep timer on close failure (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: release ep resources on accept arp failure (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Fix bar2 virt addr calculation for T4 chips (Sai Vemuri) [1275829]
-- [netdrv] cxgb4: Add pci device id for chelsio t520-cr adapter (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Remove dead functions collect_netdev_[um]c_list_addrs (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Use __dev_uc_sync/__dev_mc_sync to sync MAC address (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Fix ethtool get_settings for VF driver (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Remove redundant adapter ready check during probe (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Make sge init code more readable (Sai Vemuri) [1275829]
-- [netdrv] cxgb4/cxgb4vf: For T6 adapter, set FBMIN to 64 bytes (Sai Vemuri) [1275829]
-- [netdrv] cxgb4/cxgb4vf: Use fl capacity to check if fl needs to be replenished (Sai Vemuri) [1275829]
-- [infiniband] cxgb4: use pR format string for printing resources (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: Max fastreg depth depends on DSGL support (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: remove false error log entry (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: make queue allocation code more readable (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: Cleanup register defines/MACROS defined in t4fw_ri_api.h (Sai Vemuri) [1275829]
-- [netdrv] iw_cxgb4: Cleanup register defines/MACROS defined in t4.h (Sai Vemuri) [1275829]
-- [netdrv] cxgb4: Use __dev_uc_sync/__dev_mc_sync to sync MAC address (Sai Vemuri) [1275829]
-- [netdrv] cxgb4/iw_cxgb4: TOS support (Sai Vemuri) [1275829]
-- [netdrv] vfs: Fix up some ->d_inode accesses in the chelsio driver (Sai Vemuri) [1275829]
-- [scsi] libcxgbi: use kvfree() in cxgbi_free_big_mem() (Sai Vemuri) [1275829]
-- [scsi] cxgb4i: set the initial sequence number (Sai Vemuri) [1275829]
-- [scsi] cxgbi: update driver versions (Sai Vemuri) [1275829]
-- [scsi] cxgbi: update copyright to 2015 (Sai Vemuri) [1275829]
-- [scsi] cxgbi: use per-connection link-speed dependent send/recv windows (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: use wildcard mapping for getting remote addr info (Sai Vemuri) [1275829]
-- [infiniband] rdma/cxgb4: Report the actual address of the remote connecting peer (Sai Vemuri) [1275829]
-
-* Thu Jul 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-475.el7]
-- [net] vlan: use a valid default mtu value for vlan over macsec (Paolo Abeni) [1355938]
-- [net] tcp: enable per-socket rate limiting of all 'challenge acks' (Florian Westphal) [1355605] {CVE-2016-5696}
-- [net] tcp: uninline tcp_oow_rate_limited() (Florian Westphal) [1355605] {CVE-2016-5696}
-- [net] tcp: make challenge acks less predictable (Florian Westphal) [1355605] {CVE-2016-5696}
-- [net] sctp: recvmsg should be able to run even if sock is in closing state (Xin Long) [1251529]
-- [net] sctp: implement prsctp PRIO policy (Xin Long) [965453]
-- [net] sctp: implement prsctp RTX policy (Xin Long) [965453]
-- [net] sctp: implement prsctp TTL policy (Xin Long) [965453]
-- [net] sctp: add SCTP_PR_ASSOC_STATUS on sctp sockopt (Xin Long) [965453]
-- [net] sctp: add SCTP_DEFAULT_PRINFO into sctp sockopt (Xin Long) [965453]
-- [net] sctp: add SCTP_PR_SUPPORTED on sctp sockopt (Xin Long) [965453]
-- [net] sctp: fix checkpatch errors with indent (Xin Long) [965453]
-- [net] sctp: remove the duplicate initialize (Xin Long) [965453]
-- [net] sctp: fix panic when sending auth chunks (Marcelo Leitner) [1352767]
-- [net] sctp: do not clear chunk->ecn_ce_done flag (Marcelo Leitner) [1354384]
-- [net] sctp: allow GSO frags to access the chunk too (Marcelo Leitner) [1354384]
-- [net] sctp: allow others to use sctp_input_cb (Marcelo Leitner) [1354384]
-- [net] sctp: reorder sctp_ulpevent and shrink msg_flags (Marcelo Leitner) [1354384]
-- [net] include/net/ip_fib: add missing semi-colon (Ivan Vecera) [1268334]
-- [net] remove incorrect assignment to skb->sender_cpu (Ivan Vecera) [1268334]
-- [net] netlink: Fix bugs in nlmsg_end() conversions (Ivan Vecera) [1268334]
-- [net] netlink: make nlmsg_end() and genlmsg_end() void (Ivan Vecera) [1268334]
-- [kernel] bitops: Fix shift overflow in GENMASK macros (Ivan Vecera) [1268334]
-- [net] rtnl: do_setlink(): notify when a netdev is modified (Ivan Vecera) [1268334]
-- [net] rtnl: do_setlink(): last arg is now a set of flags (Ivan Vecera) [1268334]
-- [net] rtnl: do_setlink(): set modified when IFLA_LINKMODE is updated (Ivan Vecera) [1268334]
-- [net] rtnl: do_setlink(): set modified when IFLA_TXQLEN is updated (Ivan Vecera) [1268334]
-- [net] bridge: fdb dumping takes a filter device (Ivan Vecera) [1268334]
-- [net] sysfs: expose number of carrier on/off changes (Ivan Vecera) [1268334]
-- [net] ipv6: fix checkpatch errors with assignment in if condition (Ivan Vecera) [1268334]
-- [net] fix build break when DEBUG is enabled (Ivan Vecera) [1268334]
-- [net] bonding: Fix potential bad memory access during bonding events (Ivan Vecera) [1268334]
-
-* Thu Jul 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-474.el7]
-- [scsi] megaraid_sas: Do not fire MR_DCMD_PD_LIST_QUERY to controllers which do not support it (Tomas Henzl) [1353946]
-- [scsi] hpsa: correct skipping masked peripherals (Joseph Szczypek) [1328271]
-- [fs] file.c: __const_max is actually __const_min (Mateusz Guzik) [1346114]
-- [fs] get rid of files_defer_init() (Mateusz Guzik) [1346114]
-- [fs] initmpfs: use initramfs if rootfstype= or root= specified (Carlos Maiolino) [1126102]
-- [fs] initmpfs: make rootfs use tmpfs when CONFIG_TMPFS enabled (Carlos Maiolino) [1126102]
-- [fs] initmpfs: move rootfs code from fs/ramfs/ to init/ (Carlos Maiolino) [1126102]
-- [fs] initmpfs: move bdi setup from init_rootfs to init_ramfs (Carlos Maiolino) [1126102]
-- [fs] direct-io: fix direct write stale data exposure from concurrent buffered read (Eryu Guan) [1349252]
-- [fs] cifs: remove any preceding delimiter from prefix_path (Sachin Prabhu) [1252721]
-- [fs] cifs: Create dedicated keyring for spnego operations (Sachin Prabhu) [1356500]
-- [fs] dax: fix offset overflow in dax_io (Jeff Moyer) [1347093]
-- [fs] ext4: add remap_file_pages support for dax mounts (Jeff Moyer) [1348428]
-- [fs] dax: fix partial completions for readv/writev (Jeff Moyer) [1348379]
-- [mm] avoid walking hugetlb pages in stratus memory tracking (David Bulkow) [1351779]
-- [nvme] quirk: Add a delay before checking for adapter readiness (David Milburn) [1356434]
-- [nvme] Create discard zero quirk white list (David Milburn) [1356434]
-- [nvme] Avoid reset work on watchdog timer function during error recovery (David Milburn) [1353264]
-- [nvme] Fix reset/remove race (David Milburn) [1353264]
-- [nvme] replace the kthread with a per-device watchdog timer (David Milburn) [1353264]
-- [nvme] don't poll the CQ from the kthread (David Milburn) [1353264]
-- [nvme] use a work item to submit async event requests (David Milburn) [1353264]
-- [kernel] revert "sched: Compute runnable load avg in cpu_load and cpu_avg_load_per_task" (Jiri Olsa) [1339165]
-- [kernel] revert "sched: Consider runnable load average in move_tasks()" (Jiri Olsa) [1339165]
-- [kernel] revert "sched: Change cfs_rq load avg to unsigned long" (Jiri Olsa) [1339165]
-- [kernel] revert "sched: Move h_load calculation to task_h_load()" (Jiri Olsa) [1339165]
-- [kernel] revert "sched: Fix cfs_rq->task_h_load calculation" (Jiri Olsa) [1339165]
-- [kernel] sched/docbook: Fix 'make htmldocs' warnings caused by missing description (Lauro Ramos Venancio) [1352969]
-- [kernel] sched/core: Fix htmldocs warnings (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Fix sched_policy < 0 comparison (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Disallow sched_attr::sched_policy < 0 (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Make sched_setattr() correctly return -EFBIG (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Add 'flags' argument to sched_{set, get}attr() syscalls (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Fix information leak in sys_sched_getattr() (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Fix __sched_setscheduler() nice test (Lauro Ramos Venancio) [1352969]
-- [base] platform: Move device_remove_property_set() before device_del() (Prarit Bhargava) [1357318]
-- [acpi] ACPICA: acpi_get_sleep_type_data: Reduce warnings (Prarit Bhargava) [1287163]
-- [ata] libata: alloc device_rh for ata_port elements (Prarit Bhargava) [1356095]
-- [ata] Revert "libata: Allocate device_rh() before use" (Prarit Bhargava) [1356095]
-
-* Wed Jul 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-473.el7]
-- [net] ipv6: Clear flush_id to make GRO work (Jakub Sitnicki) [1326401]
-- [net] tcp: increase size at which tcp_bound_to_half_wnd bounds to > TCP_MSS_DEFAULT (Davide Caratti) [1353271]
-- [net] loopback: sctp: add NETIF_F_SCTP_CSUM to device features (Xin Long) [1353078]
-- [netdrv] mlx5e: Call vxlan_get_rx_port() with rtnl lock (Jiri Benc) [1297504]
-- [net] vxlan: Accept user specified MTU value when create new vxlan link (Jiri Benc) [1297504]
-- [net] udp: prevent skbs lingering in tunnel socket queues (Jiri Benc) [1297504]
-- [net] vxlan: set mac_header correctly in GPE mode (Jiri Benc) [1297504]
-- [net] udp_offload: Set encapsulation before inner completes (Jiri Benc) [1297504]
-- [net] udp_tunnel: Remove redundant udp_tunnel_gro_complete() (Jiri Benc) [1297504]
-- [net] vxlan: Add checksum check to the features check function (Jiri Benc) [1297504]
-- [net] Disable segmentation if checksumming is not supported (Jiri Benc) [1297504]
-- [net] vxlan: fix initialization with custom link parameters (Jiri Benc) [1297504]
-- [net] geneve: break dependency with netdev drivers (Jiri Benc) [1297504]
-- [net] vxlan: break dependency with netdev drivers (Jiri Benc) [1297504]
-- [netdrv] mlx4: protect mlx4_en_start_port in mlx4_en_restart with rtnl_lock (Jiri Benc) [1297504]
-- [netdrv] fm10k: protect fm10k_open in fm10k_io_resume with rtnl_lock (Jiri Benc) [1297504]
-- [net] vxlan: reduce usage of synchronize_net in ndo_stop (Jiri Benc) [1277131 1297504]
-- [net] vxlan: synchronously and race-free destruction of vxlan sockets (Jiri Benc) [1277131 1297504]
-- [net] vxlan: fix incorrect type (Jiri Benc) [1297504]
-- [net] udp: Resolve NULL pointer dereference over flow-based vxlan device (Jiri Benc) [1297504]
-- [net] udp: Remove udp_offloads (Jiri Benc) [1297504]
-- [net] geneve: change to use UDP socket GRO (Jiri Benc) [1297504]
-- [net] vxlan: change vxlan to use UDP socket GRO (Jiri Benc) [1297504]
-- [net] udp: Add socket based GRO and config (Jiri Benc) [1297504]
-- [net] udp: Add GRO functions to UDP socket (Jiri Benc) [1297504]
-- [net] udp: Add udp6_lib_lookup_skb and udp4_lib_lookup_skb (Jiri Benc) [1297504]
-- [net] Checks skb_dst to be NULL in inet_iif (Jiri Benc) [1297504]
-- [net] udp: Set SKB_GSO_UDP_TUNNEL* in UDP GRO path (Jiri Benc) [1297504]
-- [net] udp: Fix ipv6 multicast socket filter regression (Jiri Benc) [1297504]
-- [net] udp: Use hash2 for long hash1 chains in __udp*_lib_mcast_deliver (Jiri Benc) [1297504]
-- [net] udp: Simplify __udp*_lib_mcast_deliver (Jiri Benc) [1297504]
-- [net] udp: fix dst races with multicast early demux (Jiri Benc) [1297504]
-- [net] merge cases where sock_efree and sock_edemux are the same function (Jiri Benc) [1297504]
-- [net] ipv4: fix broadcast packets reception (Jiri Benc) [1297504]
-- [net] udp: ipv4: Verify multicast group is ours in upd_v4_early_demux() (Jiri Benc) [1297504]
-- [net] udp: ipv4: do not waste time in __udp4_lib_mcast_demux_lookup (Jiri Benc) [1297504]
-- [net] udp: ipv4: do not use sk_dst_lock from softirq context (Jiri Benc) [1297504]
-- [net] udp: ipv4: must add synchronization in udp_sk_rx_dst_set() (Jiri Benc) [1297504]
-- [net] udp: ipv4: fix potential use after free in udp_v4_early_demux() (Jiri Benc) [1297504]
-- [net] udp: ipv4: fix an use after free in __udp4_lib_rcv() (Jiri Benc) [1297504]
-- [net] udp: fix a typo in __udp4_lib_mcast_demux_lookup (Jiri Benc) [1297504]
-- [net] ipv4 only populate IP_PKTINFO when needed (Jiri Benc) [1297504]
-- [net] udp: ipv4: Add udp early demux (Jiri Benc) [1297504]
-- [net] vxlan: implement GPE (Jiri Benc) [1297504]
-- [net] ip_tunnel: implement __iptunnel_pull_header (Jiri Benc) [1297504]
-- [net] vxlan: move fdb code to common location in vxlan_xmit (Jiri Benc) [1297504]
-- [net] vxlan: move Ethernet initialization to a separate function (Jiri Benc) [1297504]
-- [net] tunnels: Remove encapsulation offloads on decap (Jiri Benc) [1297504]
-- [net] tunnels: Don't apply GRO to multiple layers of encapsulation (Jiri Benc) [1297504]
-- [net] vxlan: fix too large pskb_may_pull with remote checksum (Jiri Benc) [1297504]
-- [net] csum: Update csum_block_add to use rotate instead of byteswap (Jiri Benc) [1297504]
-- [net] gro: Defer clearing of flush bit in tunnel paths (Jiri Benc) [1297504]
-- [net] vxlan: use reset to set header pointers (Jiri Benc) [1297504]
-- [net] ndo_fdb_dump should report -EMSGSIZE to rtnl_fdb_dump (Jiri Benc) [1297504]
-- [net] vxlan: change VXLAN_F_UDP_CSUM to VXLAN_F_UDP_ZERO_CSUM_TX (Jiri Benc) [1297504]
-- [net] openvswitch: geneve: fix rtnl notifications on iface deletion (Eric Garver) [1297476]
-- [net] openvswitch: gre: fix rtnl notifications on iface deletion (Eric Garver) [1297476]
-- [net] openvswitch: vxlan: fix rtnl notifications on iface deletion (Eric Garver) [1297476]
-- [net] openvswitch: gre, geneve: fix error path when creating an iface (Eric Garver) [1297476]
-- [net] openvswitch: update checksum in {push, pop}_mpls (Eric Garver) [1297476]
-- [net] openvswitch: use flow protocol when recalculating ipv6 checksums (Eric Garver) [1297476]
-- [net] netfilter: connlabels: change nf_connlabels_get bit arg to 'highest used' (Eric Garver) [1297476]
-- [net] openvswitch: Convert to using IFF_NO_QUEUE (Eric Garver) [1297476]
-- [net] openvswitch: add netif_is_ovs_master helper with IFF_OPENVSWITCH private flag (Eric Garver) [1297476]
-- [net] openvswitch: allow output of MPLS packets on tunnel vports (Eric Garver) [1297476]
-- [net] openvswitch: allow nl 'flow set' to use ufid without flow key (Eric Garver) [1297476]
-- [net] openvswitch: allow management from inside user namespaces (Eric Garver) [1297476]
-- [net] openvswitch: fix trivial comment typo (Eric Garver) [1297476]
-- [net] openvswitch: Remove invalid comment (Eric Garver) [1297476]
-- [net] Drop unlikely before IS_ERR(_OR_NULL) (Eric Garver) [1297476]
-- [net] openvswitch: Zero flows on allocation (Eric Garver) [1297476]
-- [net] openvswitch: retain parsed IPv6 header fields in flow on error skipping extension headers (Eric Garver) [1297476]
-- [net] openvswitch: Make 100 percents packets sampled when sampling rate is 1 (Eric Garver) [1297476]
-- [net] openvswitch: allocate nr_node_ids flow_stats instead of num_possible_nodes (Eric Garver) [1297476]
-- [net] openvswitch: Use eth_proto_is_802_3 (Eric Garver) [1297476]
-- [net] ethernet: Fix sparse error, make test usable by other functions (Eric Garver) [1297476]
-- [net] ethernet: Avoid unnecessary byte swap in check for Ethertype (Eric Garver) [1297476]
-- [net] ethernet: use likely() for common Ethernet encap (Eric Garver) [1297476]
-- [net] macsec: set actual real device for xmit when !protect_frames (Sabrina Dubroca) [1104151]
-- [net] macsec: fix SA initialization (Sabrina Dubroca) [1104151]
-- [net] macsec: allocate sg and iv on the heap (Sabrina Dubroca) [1104151]
-- [net] macsec: add rcu_barrier() on module exit (Sabrina Dubroca) [1104151]
-- [net] macsec: Convert to using IFF_NO_QUEUE (Sabrina Dubroca) [1104151]
-- [net] macsec: fix netlink attribute for key id (Sabrina Dubroca) [1104151]
-- [net] macsec: key identifier is 128 bits, not 64 (Sabrina Dubroca) [1104151]
-- [net] macsec: fix netlink attribute validation (Sabrina Dubroca) [1104151]
-- [net] macsec: add missing macsec prefix in uapi (Sabrina Dubroca) [1104151]
-- [net] macsec: fix SA leak if initialization fails (Sabrina Dubroca) [1104151]
-- [net] macsec: fix memory leaks around rx_handler (un)registration (Sabrina Dubroca) [1104151]
-- [net] macsec: add consistency check to netlink dumps (Sabrina Dubroca) [1104151]
-- [net] macsec: fix rx_sa refcounting with decrypt callback (Sabrina Dubroca) [1104151]
-- [net] macsec: don't put a NULL rxsa (Sabrina Dubroca) [1104151]
-- [net] macsec: take rtnl lock before for_each_netdev (Sabrina Dubroca) [1104151]
-- [net] macsec: add missing NULL check after kmalloc (Sabrina Dubroca) [1104151]
-- [net] macsec: introduce IEEE 802.1AE driver (Sabrina Dubroca) [1104151]
-- [net] add MACsec netdevice priv_flags and helper (Sabrina Dubroca) [1104151]
-- [net] uapi: add MACsec bits (Sabrina Dubroca) [1104151]
-
-* Tue Jul 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-472.el7]
-- [scsi] libfc: sanity check cpu number extracted from xid (Chris Leech) [1190204]
-- [scsi] aacraid: do not activate events on non-SRC adapters (Scott Benesh) [1274365]
-- [scsi] aacraid: Update driver version (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix for KDUMP driver hang (Scott Benesh) [1274365]
-- [scsi] aacraid: Remove code to needlessly complete fib (Scott Benesh) [1274365]
-- [scsi] aacraid: Log firmware AIF messages (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix for aac_command_thread hang (Scott Benesh) [1274365]
-- [scsi] aacraid: Disable MSI mode for series 6, 7, 8 cards (Scott Benesh) [1274365]
-- [scsi] aacraid: Relinquish CPU during timeout wait (Scott Benesh) [1274365]
-- [scsi] aacraid: Start adapter after updating number of MSIX vectors (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix incorrectly named MACRO (Scott Benesh) [1274365]
-- [scsi] aacraid: Removed unnecessary checks for NULL (Scott Benesh) [1274365]
-- [scsi] aacraid: add missing curly braces (Scott Benesh) [1274365]
-- [scsi] aacraid: Update driver version (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix character device re-initialization (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix AIF triggered IOP_RESET (Scott Benesh) [1274365]
-- [scsi] aacraid: Created new mutex for ioctl path (Scott Benesh) [1274365]
-- [scsi] aacraid: Fundamental reset support for Series 7 (Scott Benesh) [1274365]
-- [scsi] aacraid: Set correct msix count for EEH recovery (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix memory leak in aac_fib_map_free (Scott Benesh) [1274365]
-- [scsi] aacraid: Added EEH support (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix RRQ overload (Scott Benesh) [1274365]
-- [scsi] aacraid: SCSI blk tag support (Scott Benesh) [1274365]
-- [scsi] aacraid: aac_release_resources() can be static (Scott Benesh) [1274365]
-- [scsi] aacraid: Update driver version (Scott Benesh) [1274365]
-- [scsi] aacraid: Use pci_enable_msix_range() (Scott Benesh) [1274365]
-- [scsi] aacraid: IOCTL fix (Scott Benesh) [1274365]
-- [scsi] aacraid: Reset irq affinity hints (Scott Benesh) [1274365]
-- [scsi] aacraid: Tune response path if IsFastPath bit set (Scott Benesh) [1274365]
-- [scsi] aacraid: Enable 64bit write to controller register (Scott Benesh) [1274365]
-- [scsi] aacraid: Change interrupt mode to MSI for Series 6 (Scott Benesh) [1274365]
-- [scsi] aacraid: Add Power Management support (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix for LD name and UID not exposed to OS (Scott Benesh) [1274365]
-- [scsi] aacraid: aac_src_intr_message() can be static (Scott Benesh) [1274365]
-
-* Tue Jul 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-471.el7]
-- [x86] kvm: Add output operand in vmx_handle_external_intr inline asm (Josh Poimboeuf) [1320250]
-- [watchdog] hpwdt: Create stack frame in asminline_call() (Josh Poimboeuf) [1320250]
-- [watchdog] lto, watchdog/hpwdt.c: make assembler label global (Josh Poimboeuf) [1320250]
-- [x86] asm: Create stack frames in rwsem functions (Josh Poimboeuf) [1320250]
-- [x86] asm/power: Create stack frames in hibernate_asm_64.S (Josh Poimboeuf) [1320250]
-- [x86] asm/xen: Set ELF function type for xen_adjust_exception_frame() (Josh Poimboeuf) [1320250]
-- [x86] asm/xen: Create stack frames in xen-asm.S (Josh Poimboeuf) [1320250]
-- [x86] kvm: Make test_cc() always inline (Josh Poimboeuf) [1320250]
-- [x86] kvm: Set ELF function type for fastop functions (Josh Poimboeuf) [1320250]
-- [x86] kvm: Add stack frame dependency to fastop() inline asm (Josh Poimboeuf) [1320250]
-- [x86] xen: Add stack frame dependency to hypercall inline asm calls (Josh Poimboeuf) [1320250]
-- [x86] uaccess: Add stack frame output operand in get_user() inline asm (Josh Poimboeuf) [1320250]
-- [x86] paravirt: Create a stack frame in PV_CALLEE_SAVE_REGS_THUNK (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage, paravirt: Make paravirt thunks global (Josh Poimboeuf) [1320250]
-- [x86] asm/acpi: Create a stack frame in do_suspend_lowlevel() (Josh Poimboeuf) [1320250]
-- [x86] paravirt: Add stack frame dependency to PVOP inline asm calls (Josh Poimboeuf) [1320250]
-- [x86] crypto: sha1-mb - make sha1_x8_avx2() conform to C function ABI (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Move jump_table to .rodata section (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Create stack frames in crypto functions (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Don't use RBP as a scratch register (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Simplify stack usage in sha-mb functions (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Move .Lbswap_mask data to .rodata section (Josh Poimboeuf) [1320250]
-- [x86] asm/bpf: Create stack frames in bpf_jit.S (Josh Poimboeuf) [1320250]
-- [x86] asm/bpf: Annotate callable functions (Josh Poimboeuf) [1320250]
-- [x86] entry/64: Fix stack return address retrieval in thunk (Josh Poimboeuf) [1320250]
-- [x86] asm/entry: Create stack frames in thunk functions (Josh Poimboeuf) [1320250]
-- [x86] asm/64: Open-code register save/restore in trace_hardirqs*() thunks (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage: Make kprobes code visible and fix assembler code (Josh Poimboeuf) [1320250]
-- [x86] asm: Add several arch/x86/lib files to objtool whitelist (Josh Poimboeuf) [1320250]
-- [x86] asm/efi: Add efi stub code to objtool whitelist (Josh Poimboeuf) [1320250]
-- [kernel] sched: Mark __schedule() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [x86] xen: Mark xen_cpuid() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [x86] kprobes: Mark kretprobe_trampoline() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [tools] objtool: Allow building with older libelf (Josh Poimboeuf) [1320250]
-- [tools] objtool: Detect falling through to the next function (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add workaround for GCC switch jump table bug (Josh Poimboeuf) [1320250]
-- [tools] objtool: Only print one warning per function (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add several performance improvements (Josh Poimboeuf) [1320250]
-- [tools] objtool: Fix false positive warnings for functions with multiple switch statements (Josh Poimboeuf) [1320250]
-- [tools] objtool: Rename some variables and functions (Josh Poimboeuf) [1320250]
-- [tools] objtool: Remove superflous INIT_LIST_HEAD (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add helper macros for traversing instructions (Josh Poimboeuf) [1320250]
-- [tools] objtool: Fix false positive warnings related to sibling calls (Josh Poimboeuf) [1320250]
-- [tools] objtool: Compile with debugging symbols (Josh Poimboeuf) [1320250]
-- [tools] objtool: Detect infinite recursion (Josh Poimboeuf) [1320250]
-- [tools] objtool: Prevent infinite recursion in noreturn detection (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Detect and warn if libelf is missing and don't break the build (Josh Poimboeuf) [1320250]
-- [tools] objtool: Support CROSS_COMPILE (Josh Poimboeuf) [1320250]
-- [tools] x86/asm/decoder: Use explicitly signed chars (Josh Poimboeuf) [1320250]
-- [x86] objtool: Enable stack metadata validation on 64-bit x86 (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Add CONFIG_STACK_VALIDATION option (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add tool to perform compile-time stack metadata validation (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Mark non-standard object files and directories (Josh Poimboeuf) [1320250]
-- [include] objtool: Add STACK_FRAME_NON_STANDARD() macro (Josh Poimboeuf) [1320250]
-- [x86] asm: Add C versions of frame pointer macros (Josh Poimboeuf) [1320250]
-- [x86] asm: Clean up frame pointer macros (Josh Poimboeuf) [1320250]
-- [x86] jump-label: Use best default nops for inital jump label calls (Josh Poimboeuf) [1320250]
-- [x86] asm/decoder: Create artificial 3rd byte for 2-byte VEX (Josh Poimboeuf) [1320250]
-- [tools] lib: kill arch_fast_hash library bits (Josh Poimboeuf) [1320250]
-- [fs] replace remaining users of arch_fast_hash with jhash (Josh Poimboeuf) [1320250]
-- [x86] asm: Extend definitions of _ASM_* with a raw format (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage, xen, kvm: Make {xen, kvm}_lock_spinning global and visible (Josh Poimboeuf) [1320250]
-
-* Fri Jul 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-470.el7]
-- [block] blk: Fix bio_io_vec index when checking bvec gaps (David Milburn) [1283326]
-- [block] Replace SG_GAPS with new queue limits mask (David Milburn) [1283326]
-- [block] don't honor chunk sizes for data-less IO (David Milburn) [1283326]
-- [block] only honor SG gap prevention for merges that contain data (David Milburn) [1283326]
-- [block] fix blk_rq_get_max_sectors for driver private requests (David Milburn) [1349920]
-- [block] Initialize max_dev_sectors to 0 (David Milburn) [1349920]
-- [usb] printk: add and use LOGLEVEL_<level> defines for KERN_<LEVEL> equivalents (Torez Smith) [1356205]
-- [usb] revert "printk: add and use LOGLEVEL_<level> defines for KERN_<LEVEL> equivalents" (Torez Smith) [1356205]
-- [x86] build: Pass in additional -mno-mmx, -mno-sse options (Lenny Szubowicz) [1352386]
-- [fs] Add MF-Symlinks support for SMB 2.0 (Sachin Prabhu) [1334548]
-- [fs] cifs: Check for existing directory when opening file with O_CREAT (Sachin Prabhu) [1346118]
-- [fs] cachefiles: Provide read-and-reset release counters for cachefilesd (David Howells) [1356085]
-- [fs] fs-cache: Add missing initialization of ret in cachefiles_write_page() (David Howells) [1306442]
-- [fs] fs-cache: Handle a write to the page immediately beyond the EOF marker (David Howells) [1305112 1306442]
-- [fs] cachefiles: perform test on s_blocksize when opening cache file (David Howells) [1306442]
-- [fs] fs-cache: Don't override netfs's primary_index if registering failed (David Howells) [1306442]
-- [fs] fs-cache: Increase reference of parent after registering, netfs success (David Howells) [1306442]
-- [fs] gfs2: writeout truncated pages (Benjamin Marzinski) [1221210]
-- [fs] export __block_write_full_page (Benjamin Marzinski) [1221210]
-- [fs] gfs2: Lock holder cleanup (Robert S Peterson) [1336011]
-- [fs] gfs2: Large-filesystem fix for 32-bit systems (Robert S Peterson) [1336011]
-- [fs] gfs2: Get rid of gfs2_ilookup (Robert S Peterson) [1336011]
-- [fs] gfs2: Fix gfs2_lookup_by_inum lock inversion (Robert S Peterson) [1336011]
-- [fs] gfs2: Initialize iopen glock holder for new inodes (Robert S Peterson) [1336011]
-- [fs] gfs2: Eliminate parameter non_block on gfs2_inode_lookup (Robert S Peterson) [1336011]
-- [fs] gfs2: Don't filter out I_FREEING inodes anymore (Robert S Peterson) [1336011]
-- [fs] gfs2: Check if iopen is held when deleting inode (Robert S Peterson) [1336011]
-- [fs] gfs2: Don't do glock put on when inode creation fails (Robert S Peterson) [1336011]
-- [fs] gfs2: Prevent delete work from occurring on glocks used for create (Robert S Peterson) [1336011]
-- [fs] gfs2: Always use iopen glock for gl_deletes (Robert S Peterson) [1336011]
-- [fs] gfs2: Release iopen glock in gfs2_create_inode error cases (Robert S Peterson) [1336011]
-- [fs] gfs2: Wait for iopen glock dequeues (Robert S Peterson) [1336011]
-- [fs] gfs2: Update master statfs buffer with sd_statfs_spin locked (Robert S Peterson) [1336011]
-- [fs] locks: use file_inode() (Miklos Szeredi) [1348902]
-- [fs] locks: Use more file_inode and fix a comment (Miklos Szeredi) [1348902]
-- [fs] nfs4: Fix potential use after free of state in nfs4_do_reclaim (Benjamin Coddington) [1339271]
-- [fs] nfs41: map NFS4ERR_LAYOUTUNAVAILABLE to ENODATA (Benjamin Coddington) [1339271]
-- [fs] nfs: only remove page from mapping if launder_page fails (Benjamin Coddington) [1339271]
-- [fs] nfs: handle request add failure properly (Benjamin Coddington) [1339271]
-- [fs] nfs: Don't use d_inode as a variable name (Benjamin Coddington) [1339271]
-- [fs] nfs: centralize pgio error cleanup (Benjamin Coddington) [1339271]
-- [fs] nfs: clean up rest of reqs when failing to add one (Benjamin Coddington) [1339271]
-- [fs] nfs41: pop some layoutget errors to application (Benjamin Coddington) [1339271]
-- [fs] nfs: Fix an LOCK/OPEN race when unlinking an open file (Benjamin Coddington) [1339271]
-- [fs] sunrpc/cache: drop reference when sunrpc_cache_pipe_upcall() detects a race (Benjamin Coddington) [1339271]
-- [fs] pnfs/flexfiles: Fix an XDR encoding bug in layoutreturn (Benjamin Coddington) [1339271]
-- [fs] pnfs/flexfiles: Fix an Oopsable typo in ff_mirror_match_fh() (Benjamin Coddington) [1339271]
-- [fs] nfs: Fix attribute cache revalidation (Benjamin Coddington) [1339271]
-- [fs] nfsv4.1/pnfs: Fixup an lo->plh_block_lgets imbalance in layoutreturn (Benjamin Coddington) [1339271]
-- [fs] nfs: Fix race in __update_open_stateid() (Benjamin Coddington) [1339271]
-
-* Thu Jul 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-469.el7]
-- [kernel] memremap: fix highmem support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: fix DAX deadlocks (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: fix NULL pointer in __dax_pmd_fault() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: VMA with vm_ops->pfn_mkwrite wants to be write-notified (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] pmem: add proper fencing to pmem_rw_page() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm: pfn_devs: Fix locking in namespace_store (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm: btt_devs: Fix locking in namespace_store (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [scripts] checkpatch: add __pmem to $Sparse annotations (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: update PMD fault handler with PMEM API (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] take i_mmap_lock in unmap_mapping_range() for DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: use linear_page_index() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: ensure that zero pages are removed from other processes (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: don't use set_huge_zero_page() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: fix zap_huge_pmd() for DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: decrement refcount on huge zero page if it is split (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: fix race between simultaneous faults (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext4: start transaction before calling into DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext4: add ext4_get_block_dax() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: improve comment about truncate race (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: change insert_pfn's return type to void (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext4: use ext4_get_block_write() for DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax.c: fix typo in #endif comment (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] xfs: huge page fault support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext4: huge page fault support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext2: huge page fault support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: add huge page fault support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] add vmf_insert_pfn_pmd() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] export various functions for the benefit of DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] add a pmd_fault handler (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: prepare for DAX huge pages (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: revert userfaultfd change (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: do not mark zero-page pmd write-protected explicitly (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: move DAX-related functions to a new header (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: vma_adjust_trans_huge(): adjust file-backed VMA too (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] make GUP handle pfn mapping unless FOLL_GET is requested (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] move get_user_pages()-related code to separate file (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] mm/srat: Print non-volatile flag in SRAT (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [include] libnvdimm, pmem: direct map legacy pmem by default (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] libnvdimm, pmem: 'struct page' for pmem (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] libnvdimm, pfn: 'struct page' provider infrastructure (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [include] x86, pmem: clarify that ARCH_HAS_PMEM_API implies PMEM mapped WB (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [kernel] add devm_memremap_pages (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] ZONE_DEVICE for "device memory" (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [powerpc] memory-hotplug: ppc: suitable memory should go to ZONE_MOVABLE (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] nd_blk: change aperture mapping from WC to WB (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] change to use generic kvfree() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] mm/pat: Add comments to cachemode translation tables (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [kernel] pmem, dax: have direct_access use __pmem annotation (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: update I/O path to do proper PMEM flushing (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] pmem: add copy_from_iter_pmem() and clear_pmem() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] pmem: clean up conditional pmem includes (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] pmem: remove layer when calling arch_has_wmb_pmem() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] pmem: move x86 PMEM API to new pmem.h header (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] libnvdimm, e820: make CONFIG_X86_PMEM_LEGACY a tristate option (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] pmem: switch to devm_ allocations (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [kernel] devres: add devm_memremap (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, btt: write and validate parent_uuid (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, btt: consolidate arena validation (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, btt: clean up internal interfaces (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] pmem: convert to generic memremap (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [iommu] vt-d: Fix leaked ioremap mapping (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] fix inline function return type warning (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [acpi] nfit: Don't check _STA on NVDIMM devices (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, pmem: Change pmem physical sector size to PAGE_SIZE (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] libnvdimm: Add DSM support for Address Range Scrub commands (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [include] libnvdimm: Update name of the ars_status_record mask field (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, btt: sparse fix (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-
-* Thu Jul 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-468.el7]
-- [net] ipv6: Fix mem leak in rt6i_pcpu (Hannes Frederic Sowa) [1353128]
-- [net] skb: preserve value for head_frag and xmit more (Paolo Abeni) [1334175]
-- [net] sctp: sctp_diag should fill RMEM_ALLOC with asoc->rmem_alloc when rcvbuf_policy is set (Xin Long) [1350871]
-- [net] team: Fix possible deadlock during team enslave (Xin Long) [1350865]
-- [net] Handle csum for CHECKSUM_COMPLETE VXLAN forwarding (Jakub Sitnicki) [1321674]
-- [net] bridge: disable softirqs around br_fdb_update to avoid lockup (Davide Caratti) [1330674]
-- [net] tcp: fix tcp_mark_head_lost to check skb len before fragmenting (Thadeu Lima de Souza Cascardo) [1215352]
-- [net] sctp: change sk state to CLOSED instead of CLOSING in sctp_sock_migrate (Xin Long) [1251529]
-- [net] sctp: sctp should change socket state when shutdown is received (Xin Long) [1251529]
-- [net] Add trace events for all receive entry points, exposing more skb fields (Davide Caratti) [1330669]
-- [net] netfilter: cttimeout: add netns support (Eric Garver) [1257397]
-- [net] netfilter: cttimeout: add rcu_barrier() on module removal (Eric Garver) [1257397]
-- [net] netfilter: conntrack: fix crash on timeout object removal (Eric Garver) [1257397]
-- [net] netfilter: cttimeout: allow to set/get default protocol timeouts (Eric Garver) [1257397]
-- [x86] kvm: set vector hashing default to false (Radim Krcmar) [1354561]
-- [ata] libata: Allocate device_rh() before use (Prarit Bhargava) [1354380]
-- [i2c] i2c-core: Allocate device_rh() before use (Prarit Bhargava) [1354389]
-- [usb] xhci: Add broken streams quirk for Frescologic device id 1009 (Torez Smith) [1342092]
-- [edac] sb_edac: Fix rank lookup on Broadwell (Aristeu Rozanski) [1275160]
-- [input] wacom: Fix a Cintiq 27QHD touch issue (Aristeu Rozanski) [1342989]
-- [input] hid: wacom: Add missing ABS_MISC event and feature declaration for 27QHD (Aristeu Rozanski) [1342989]
-- [input] hid: wacom: add support for Cintiq 27QHD and 27QHD touch (Aristeu Rozanski) [1342989]
-- [input] hid: wacom: add defines for new Cintiq and DTU outbound tracking (Aristeu Rozanski) [1342989]
-- [input] wacom - process outbound for newer Cintiqs (Aristeu Rozanski) [1342989]
-- [iommu] amd: Fix unity mapping initialization race (Myron Stowe) [1340546]
-- [kernel] replace some read_lock(&tasklist_lock)'s with tasklist_read_lock() (Oleg Nesterov) [1243748]
-- [kernel] replace write_lock_irq(&tasklist_lock) with tasklist_write_lock_irq() (Oleg Nesterov) [1243748]
-- [kernel] introduce tasklist_read_lock() and tasklist_write_lock_irq() (Oleg Nesterov) [1243748]
-- [netdrv] e1000e: prevent division by zero if TIMINCA is zero (Denys Vlasenko) [1340499]
-- [netdrv] e1000e: e1000e_cyclecounter_read(): incvalue is 32 bits, not 64 (Denys Vlasenko) [1340499]
-- [powerpc] jit: Disable classic BPF JIT on ppc64le (Thadeu Lima de Souza Cascardo) [1342922]
-- [powerpc] pseries: start rtasd before PCI probing (David Gibson) [1261718]
-
-* Tue Jul 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-467.el7]
-- [fs] nfsd: allow SCSI layout support without Block layout (Benjamin Coddington) [1305094]
-- [fs] nfsd: better layoutupdate bounds-checking (Benjamin Coddington) [1305094]
-- [fs] nfsd: block and scsi layout drivers need to depend on CONFIG_BLOCK (Benjamin Coddington) [1305094]
-- [fs] nfsd: add SCSI layout support (Benjamin Coddington) [1305094]
-- [fs] nfsd: add a new config option for the block layout driver (Benjamin Coddington) [1305094]
-- [fs] nfsd: move some blocklayout code (Benjamin Coddington) [1305094]
-- [fs] nfsd/blocklayout: accept any minlength (Benjamin Coddington) [1305094]
-- [fs] nfsd: Printk blocklayout length and offset as format 0xllx (Benjamin Coddington) [1305094]
-- [fs] nfs: Mark block and SCSI layouts as tech preview on client (Benjamin Coddington) [1305092]
-- [fs] nfs/blocklayout: make sure making a aligned read request (Benjamin Coddington) [1305092]
-- [fs] pnfs/blocklayout: fix a memeory leak when using, vmalloc_to_page (Benjamin Coddington) [1305092]
-- [fs] rpc_pipefs.c: get rid of f_dentry (Benjamin Coddington) [1305092]
-- [fs] nfs/blocklayout: add SCSI layout support (Benjamin Coddington) [1305092]
-- [fs] lib/vsprintf.c: fix potential NULL deref in hex_string (Benjamin Coddington) [1305092]
-- [fs] nfs4.h: add SCSI layout definitions (Benjamin Coddington) [1305092]
-- [fs] ovl: fix dentry leak for default_permissions (Miklos Szeredi) [1350818]
-- [fs] gfs2: Check rs_free with rd_rsspin protection (Robert S Peterson) [1349596]
-- [fs] xfs: cancel eofblocks background trimming on remount read-only (Brian Foster) [1339414]
-- [fs] ext4: verify block bitmap even after fresh initialization (Lukas Czerner) [1079962]
-- [fs] ext4: fix reservation release on invalidatepage for delalloc fs (Lukas Czerner) [1039029]
-- [fs] ext4: update c/mtime on truncate up (Lukas Czerner) [1227225]
-- [fs] ext4: only call ext4_truncate when size <= isize (Lukas Czerner) [1227225]
-
-* Tue Jul 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-466.el7]
-- [bluetooth] Replace constant hw_variant from Intel Bluetooth firmware filename (Don Zickus) [1353256]
-- [bluetooth] Add support for Intel Bluetooth device 3168 [8087:0aa7] (Don Zickus) [1353256]
-- [bluetooth] Add support for Intel Bluetooth device 8265 [8087:0a2b] (Don Zickus) [1353256]
-- [net] bluetooth: 6lowpan: Fix memory corruption of ipv6 destination address (Don Zickus) [1353035]
-- [bluetooth] vhci: Fix race at creating hci device (Don Zickus) [1353035]
-- [bluetooth] vhci: purge unhandled skbs (Don Zickus) [1353035]
-- [bluetooth] vhci: fix open_timeout vs. hdev race (Don Zickus) [1353035]
-- [net] bluetooth: Fix potential buffer overflow with Add Advertising (Don Zickus) [1353035]
-- [net] bluetooth: Fix setting correct flags in AD (Don Zickus) [1353035]
-- [net] bluetooth: Increment management interface revision (Don Zickus) [1353035]
-- [net] bluetooth: Add support for limited privacy mode (Don Zickus) [1353035]
-- [net] bluetooth: Fix adding discoverable to adv instance flags (Don Zickus) [1353035]
-- [net] bluetooth: Move memset closer to where it's needed (Don Zickus) [1353035]
-- [bluetooth] btmrvl_sdio: fix firmware activation failure (Don Zickus) [1353035]
-- [bluetooth] btusb: Add a new AR3012 ID 13d3:3472 (Don Zickus) [1353035]
-- [bluetooth] hci_bcm: Add BCM2E55 ACPI ID used in Lenovo ThinkPad Tablet 8 (Don Zickus) [1353035]
-- [bluetooth] hci_uart: Add diag and address support for Intel/AG6xx (Don Zickus) [1353035]
-- [bluetooth] btusb: Add a new AR3012 ID 04ca:3014 (Don Zickus) [1353035]
-- [bluetooth] hci_uart: Add Intel/AG6xx support (Don Zickus) [1353035]
-- [net] bluetooth: hci_core: cancel power off delayed work properly (Don Zickus) [1353035]
-- [bluetooth] Add new AR3012 ID 0489:e095 (Don Zickus) [1353035]
-- [bluetooth] btbcm: Fix handling of firmware not found (Don Zickus) [1353035]
-- [bluetooth] hci_bcm: Add BCM2E7C ACPI ID (Don Zickus) [1353035]
-- [bluetooth] hci_bcm: Add new ACPI ID for bcm43241 (Don Zickus) [1353035]
-- [bluetooth] btusb: Add new AR3012 ID 13d3:3395 (Don Zickus) [1353035]
-- [bluetooth] hci_intel: Fix a wrong comparison (Don Zickus) [1353035]
-- [net] bluetooth: Use managed version of led_trigger_register in LED trigger (Don Zickus) [1353035]
-- [bluetooth] ath3k: Fixed a blank line after declaration issue (Don Zickus) [1353035]
-- [net] bluetooth: add LED trigger for indicating HCI is powered up (Don Zickus) [1353035]
-
-* Tue Jul 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-465.el7]
-- [kernel] printk: git rid of sched_delayed message for printk_deferred (Jeremy McNicoll) [1340919]
-- [kernel] printk: enable interrupts before calling console_trylock_for_printk() (Jeremy McNicoll) [1340919]
-- [kernel] timer: Fix lock inversion between hrtimer_bases.lock and scheduler locks (Jeremy McNicoll) [1340919]
-- [kernel] revert "printk: enable interrupts before calling console_trylock_for_printk()" (Jeremy McNicoll) [1340919]
-- [kernel] timekeeping: use printk_deferred when holding timekeeping seqlock (Jeremy McNicoll) [1340919]
-- [kernel] printk: rename printk_sched to printk_deferred (Jeremy McNicoll) [1340919]
-- [kernel] printk: Add printk_deferred_once (Jeremy McNicoll) [1340919]
-- [kernel] printk: disable preemption for printk_sched (Jeremy McNicoll) [1340919]
-- [kernel] printk: remove separate printk_sched buffers and use printk buf instead (Jeremy McNicoll) [1340919]
-- [kernel] printk: enable interrupts before calling console_trylock_for_printk() (Jeremy McNicoll) [1340919]
-- [kernel] printk: release lockbuf_lock before calling console_trylock_for_printk() (Jeremy McNicoll) [1340919]
-- [x86] cpufeature: Enable new AVX-512 features (Rui Wang) [1349737]
-- [x86] fpu: Disable dependent CPU features on "noxsave" (Rui Wang) [1349737]
-- [x86] Mark Kabylake-U/Y client processors as supported (David Arcari) [1305700]
-- [x86] Mark Intel Knights Landing-F processor as supported (Steve Best) [1333551]
-- [scsi] ipr: Clear interrupt on croc/crocodile when running with LSI (Steve Best) [1352978]
-- [netdrv] bonding: fix enslavement slave link notifications (Jarod Wilson) [1353686]
-- [cpufreq] powernv: Remove flag use-case of policy->driver_data (Gustavo Duarte) [1346246]
-- [cpufreq] powernv: Introduce ->ready() callback for cpufreq drivers (Gustavo Duarte) [1346246]
-- [cpufreq] powernv: Add sysfs attributes to show throttle stats (Gustavo Duarte) [1346246]
-- [cpufreq] Fix formatting issues in 'struct cpufreq_driver' (Gustavo Duarte) [1346246]
-- [infiniband] rdma/cxgb3: device driver frees DMA memory with different size (Honggang Li) [1296807]
-
-* Fri Jul 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-464.el7]
-- [fwnode] introduce get_rh_dev_fwnode() and set_rh_dev_fwnode() (Prarit Bhargava) [1331018]
-- [x86] mfd: Add ACPI support (Prarit Bhargava) [1331018]
-- [x86] mfd: intel-lpss: Pass HSUART configuration via properties (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Convert to use unified device property API (Prarit Bhargava) [1331018]
-- [x86] i2c: add ACPI support for I2C mux ports (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: reverts "i2c: designware: Add support for AMD I2C controller" (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Do not use parameters from ACPI on Dell Inspiron 7348 (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Move common probe code into i2c_dw_probe() (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Make sure the device is suspended before disabling runtime PM (Prarit Bhargava) [1331018]
-- [x86] acpi: Introduce has_acpi_companion() (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Suppress error message if platform_get_irq() < 0 (Prarit Bhargava) [1331018]
-- [x86] i2c: remove FSF address (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Add support for AMD I2C controller (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Rework probe() to get clock a bit later (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Default to fast mode in case of ACPI (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: add support of platform data to set I2C mode (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: add support of I2C standard mode (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Disable device on system suspend (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: make SCL and SDA falling time configurable (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: add new ACPI IDs (Prarit Bhargava) [1331018]
-- [x86] i2c: i2c-designware-platdrv: replace platform_driver_probe to support deferred probing (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: get SDA hold time, HCNT and LCNT configuration from ACPI (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: add CONFIG_PM_SLEEP to suspend/resume functions (Prarit Bhargava) [1331018]
-- [x86] i2c-designware: use div_u64 to fix link (Prarit Bhargava) [1331018]
-- [x86] i2c-designware: make SDA hold time configurable (Prarit Bhargava) [1331018]
-- [x86] drivers/i2c/busses: don't check resource with devm_ioremap_resource (Prarit Bhargava) [1331018]
-- [x86] mfd: intel-lpss: Pass SDA hold time to I2C host controller driver (Prarit Bhargava) [1331018]
-- [x86] mfd: intel-lpss: Add support for passing device properties (Prarit Bhargava) [1331018]
-- [x86] driver core: Do not overwrite secondary fwnode with NULL if it is set (Prarit Bhargava) [1331018]
-- [x86] mfd: core: propagate device properties to sub devices drivers (Prarit Bhargava) [1331018]
-- [x86] driver core: platform: Add support for built-in device properties (Prarit Bhargava) [1331018]
-- [x86] acpi / property: fix data node parsing in acpi_get_next_subnode() (Prarit Bhargava) [1331018]
-- [x86] device property: fix for a case of use-after-free (Prarit Bhargava) [1331018]
-- [x86] device property: fwnode->secondary may contain ERR_PTR(-ENODEV) (Prarit Bhargava) [1331018]
-- [x86] device property: avoid allocations of 0 length (Prarit Bhargava) [1331018]
-- [x86] device property: the secondary fwnode needs to depend on the primary (Prarit Bhargava) [1331018]
-- [x86] device property: add spaces to PROPERTY_ENTRY_STRING macro (Prarit Bhargava) [1331018]
-- [x86] include/linux/property.h: fix build issues with gcc-4.4.4 (Prarit Bhargava) [1331018]
-- [x86] device property: Take a copy of the property set (Prarit Bhargava) [1331018]
-- [x86] device property: Fallback to secondary fwnode if primary misses the property (Prarit Bhargava) [1331018]
-- [x86] device property: return -EINVAL when property isn't found in ACPI (Prarit Bhargava) [1331018]
-- [x86] device property: improve readability of macros (Prarit Bhargava) [1331018]
-- [x86] device property: helper macros for property entry creation (Prarit Bhargava) [1331018]
-- [x86] device property: keep single value inplace (Prarit Bhargava) [1331018]
-- [x86] device property: refactor built-in properties support (Prarit Bhargava) [1331018]
-- [x86] device property: rename helper functions (Prarit Bhargava) [1331018]
-- [x86] device property: always check for fwnode type (Prarit Bhargava) [1331018]
-- [x86] rhel: remove temporary device_dma_is_coherent() (Prarit Bhargava) [1331018]
-- [x86] device property: Adding DMA Attribute APIs for Generic Devices (Prarit Bhargava) [1331018]
-- [x86] device property: Introducing enum dev_dma_attr (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Fix subnode lookup scope for data-only subnodes (Prarit Bhargava) [1331018]
-- [x86] device property: Add fwnode_property_match_string() (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Extend device_get_next_child_node() to data-only nodes (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Extend fwnode_property_* to data-only subnodes (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Expose data-only subnodes via sysfs (Prarit Bhargava) [1331018]
-- [x86] acpi / scan: Move sysfs-related device code to a separate file (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Add support for data-only subnodes (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Add routine for extraction of _DSD properties (Prarit Bhargava) [1331018]
-- [x86] device property: Don't overwrite addr when failing in device_get_mac_address (Prarit Bhargava) [1331018]
-- [x86] device property: Return -ENXIO if there is no suitable FW interface (Prarit Bhargava) [1331018]
-- [x86] device property: attach 'else if' to the proper 'if' (Prarit Bhargava) [1331018]
-- [x86] device property: fallback to pset when gettng one string (Prarit Bhargava) [1331018]
-- [x86] device property: Add ETH_ALEN check, update comments (Prarit Bhargava) [1331018]
-- [x86] Add a matching set of device_ functions for determining mac/phy (Prarit Bhargava) [1331018]
-- [x86] phy: re-design phy_modes to be self-contained (Prarit Bhargava) [1331018]
-- [x86] device property: fix potential NULL pointer dereference (Prarit Bhargava) [1331018]
-- [x86] acpi / of: Rename of_node() and acpi_node() to to_of_node() and to_acpi_node() (Prarit Bhargava) [1331018]
-- [x86] rhel: add device_dma_is_coherent() (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Define a symbol for PRP0001 (Prarit Bhargava) [1331018]
-- [x86] acpi / scan: Rework modalias creation when "compatible" is present (Prarit Bhargava) [1331018]
-- [x86] acpi / scan: Simplify acpi_match_device() (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Refine consistency check for PRP0001 (Prarit Bhargava) [1331018]
-- [x86] acpi: Allow drivers to match using Device Tree compatible property (Prarit Bhargava) [1331018]
-- [x86] acpi: fix create_modalias() return value handling (Prarit Bhargava) [1331018]
-- [x86] device property: Introduce firmware node type for platform data (Prarit Bhargava) [1331018]
-- [x86] device property: Make it possible to use secondary firmware nodes (Prarit Bhargava) [1331018]
-- [x86] driver core: Implement device property accessors through fwnode ones (Prarit Bhargava) [1331018]
-- [x86] driver core: property: Update fwnode_property_read_string_array() (Prarit Bhargava) [1331018]
-- [x86] driver core: Fix missing whitespace in function argument (Prarit Bhargava) [1331018]
-- [x86] driver core: Add comments about returning array counts (Prarit Bhargava) [1331018]
-- [x86] driver core / acpi: Represent ACPI companions using fwnode_handle (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Drop size_prop from acpi_dev_get_property_reference() (Prarit Bhargava) [1331018]
-- [x86] device, add device_rh_alloc() (Prarit Bhargava) [1331018]
-- [x86] mfd: Add support for Intel Sunrisepoint LPSS devices (Prarit Bhargava) [1331018]
-- [x86] dmaengine: add a driver for Intel integrated DMA 64-bit (Prarit Bhargava) [1331018]
-- [x86] mfd: make mfd_remove_devices() iterate in reverse order (Prarit Bhargava) [1331018]
-- [x86] driver core: wakeup the parent device before trying probe (Prarit Bhargava) [1331018]
-- [x86] acpi / pm: Attach ACPI power domain only once (Prarit Bhargava) [1331018]
-- [x86] driver core: implement device_for_each_child_reverse() (Prarit Bhargava) [1331018]
-- [x86] klist: implement klist_prev() (Prarit Bhargava) [1331018]
-- [x86] pm / qos: Make it possible to expose device latency tolerance to userspace (Prarit Bhargava) [1331018]
-- [x86] clkdev: add clkdev_create() helper (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Create a generic dma_slave_caps callback (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Introduce a device_config callback (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Add device_terminate_all callback (Prarit Bhargava) [1331018]
-- [x86] dmaengine: split out pause/resume operations from device_control (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Make the destination abbreviation coherent (Prarit Bhargava) [1331018]
-- [x86] acpi: Use ACPI companion to match only the first physical device (Prarit Bhargava) [1331018]
-- [x86] dma: Indicate residue granularity in dma_slave_caps (Prarit Bhargava) [1331018]
-- [x86] mfd: Stop setting refcounting pointers in original mfd_cell arrays (Prarit Bhargava) [1331018]
-- [x86] dma-api: provide a helper to setup DMA masks (Prarit Bhargava) [1331018]
-- [x86] dmaengine: use DMA_COMPLETE for dma completion status (Prarit Bhargava) [1331018]
-- [x86] dmaengine: dma_slave_caps: remove sg entries (Prarit Bhargava) [1331018]
-- [x86] dmaengine: add dma_slave_get_caps api (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Remove the need to declare device_control (Prarit Bhargava) [1331018]
-
-* Fri Jul 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-463.el7]
-- [virt] kvm: x86: Check dest_map->vector to match eoi signals for rtc (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Track irq vectors in ioapic->rtc_status.dest_map (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Convert ioapic->rtc_status.dest_map to a struct (Paolo Bonzini) [1347370]
-- [virt] kvm: add missing memory barrier in kvm_{make, check}_request (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: remove eager_fpu field of struct kvm_vcpu_arch (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: disable MPX if host did not enable MPX XSAVE features (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: consolidate different ways to test for in-kernel LAPIC (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: consolidate "has lapic" checks into irq.c (Paolo Bonzini) [1347370]
-- [virt] kvm: apic: remove unnecessary double checks on APIC existence (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: mmu: Use clear_page() instead of init_shadow_page_table() (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: don't notify userspace IOAPIC on edge EOI (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: request interrupt window when IRQ chip is split (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: set KVM_REQ_EVENT on local interrupt request from user space (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: split kvm_vcpu_ready_for_interrupt_injection out of dm_request_for_irq_injection (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fix interrupt window handling in split IRQ chip case (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Add support for local interrupt requests from userspace (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Add EOI exit bitmap inference (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Add KVM exit for IOAPIC EOIs (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Split the APIC from the rest of IRQCHIP (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: unify handling of interrupt window (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: introduce lapic_in_kernel (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: replace vm_has_apicv hook with cpu_uses_apicv (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: store IOAPIC-handled vectors in each VCPU (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: set TMR when the interrupt is accepted (Paolo Bonzini) [1347370]
-- [virt] kvm: introduce vcpu_debug = kvm_debug + vcpu context (Paolo Bonzini) [1347370]
-- [virt] kvm/x86: move Hyper-V MSR's/hypercall code into hyperv.c file (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: move kvm_set_irq_inatomic to legacy device assignment (Paolo Bonzini) [1347370]
-- [virt] kvm: device assignment: remove pointless #ifdefs (Paolo Bonzini) [1347370]
-- [virt] kvm: ppc: book3s hv: Re-enable XICS fast path for irqfd-generated interrupts (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: merge kvm_arch_set_irq with kvm_set_msi_inatomic (Paolo Bonzini) [1347370]
-- [virt] kvm/irqchip: allow only multiple irqchip routes per GSI (Paolo Bonzini) [1347370]
-- [virt] kvm/eventfd: add arch-specific set_irq (Paolo Bonzini) [1347370]
-- [virt] kvm/eventfd: factor out kvm_notify_acked_gsi() (Paolo Bonzini) [1347370]
-- [virt] kvm/eventfd: avoid loop inside irqfd_update() (Paolo Bonzini) [1347370]
-- [virt] kvm: robustify steal time record (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: optimize steal time calculation (Paolo Bonzini) [1347370]
-- [virt] kvm: set page dirty only if page has been writable (Paolo Bonzini) [1347370]
-- [virt] kvm: mmu: fix reserved bit check for ept=0/CR0.WP=0/CR4.SMEP=1/EFER.NX=0 (Paolo Bonzini) [1347370]
-- [virt] kvm: mmu: fix ept=0/pte.u=1/pte.w=0/CR0.WP=0/CR4.SMEP=1/EFER.NX=0 combo (Paolo Bonzini) [1347370]
-- [virt] kvm: mmu: micro-optimize gpte_access (Paolo Bonzini) [1347370]
-- [virt] kvm: mmu: simplify last_pte_bitmap (Paolo Bonzini) [1347370]
-- [virt] kvm: vmx: use vmcs_clear/set_bits for debug register exits (Paolo Bonzini) [1347370]
-- [virt] kvm: i8254: change PIT discard tick policy (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: mmu: fix ubsan index-out-of-range warning (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fix *NULL on invalid low-prio irq (Paolo Bonzini) [1347370]
-- [virt] kvm: vmx: Fix guest debugging while in L2 (Paolo Bonzini) [1347370]
-- [virt] kvm: vmx: Factor out is_exception_n helper (Paolo Bonzini) [1347370]
-- [virt] iommu, x86: Properly handle posted interrupts for IOMMU hotplug (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: rename process_smi to enter_smm, process_smi_request to process_smi (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid simultaneous queueing of both IRQ and SMI (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fix ordering of cr0 initialization code in vmx_cpu_reset (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fix OOPS after invalid KVM_SET_DEBUGREGS (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid vmalloc(0) in the KVM_SET_CPUID (Paolo Bonzini) [1347370]
-- [virt] kvm: irqfd: fix NULL pointer dereference in kvm_irq_map_gsi (Paolo Bonzini) [1347370]
-- [virt] kvm: fail KVM_SET_VCPU_EVENTS with invalid exception number (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid vmalloc(0) in the KVM_SET_CPUID (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid warning on repeated KVM_SET_TSS_ADDR (Paolo Bonzini) [1347370]
-- [virt] kvm: Handle MSR_IA32_PERF_CTL (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid write-tearing of TDP (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: emulate: correct page fault error code for NoWrite instructions (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Emulation of call may use incorrect stack size (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: 32-bit wraparound read/write not emulated correctly (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Fix defines in emulator.c (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: ARPL emulation can cause spurious exceptions (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Wrong operand size for far ret (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: #PF error-code on R/W operations is wrong (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Access to LDT/GDT that wraparound is incorrect (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Do not set access bit on accessed segments (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: POP [ESP] is not emulated correctly (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: em_call_far should return failure result (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: JMP/CALL using call- or task-gate causes exception (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fnstcw and fnstsw may cause spurious exception (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: pop sreg accesses only 2 bytes (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Inject pending interrupt even if pending nmi exist (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: reduce default value of halt_poll_ns parameter (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: do not leak guest xcr0 into host interrupt handlers (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: mask CPUID(0xD, 0x1).EAX against host value (Paolo Bonzini) [1347370]
-
-* Thu Jul 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-462.el7]
-- [scsi] sd: Fix rw_max for devices that report an optimal xfer size (Maurizio Lombardi) [1298281]
-- [net] vmw_vsock/af_vsock: drop unneeded semicolon (Neil Horman) [1349017]
-- [net] vsock: Detach QP check should filter out non matching QPs (Neil Horman) [1349017]
-- [x86] perf: Add Goldmont support (Jiri Olsa) [1273758]
-- [x86] perf: Add model number for Skylake Server to perf (Jiri Olsa) [1273753]
-- [x86] Mark Intel Denverton processor as supported (Steve Best) [1312184]
-- [vhost] vhost-net: extend device allocation to vmalloc (Jason Wang) [1290392]
-- [sound] alsa: hda / realtek - add two more Thinkpad IDs (5050,5053) for tpt460 fixup (Jaroslav Kysela) [1349539]
-- [sound] alsa: hda - Add PCI ID for Kabylake-H (Jaroslav Kysela) [1304284]
-- [sound] alsa: hda - Add PCI ID for Kabylake (Jaroslav Kysela) [1304284]
-- [sound] alsa: regmap: hdac_regmap - fix the register access for runtime PM (Jaroslav Kysela) [1285520]
-- [sound] alsa: regmap: regcache: allow read-only regs to be cached (Jaroslav Kysela) [1285520]
-- [sound] alsa: regmap: rbtree: When adding a reg do a bsearch for target node (Jaroslav Kysela) [1285520]
-- [sound] alsa: regmap: regcache-rbtree: Clean new present bits on present bitmap resize (Jaroslav Kysela) [1285520]
-- [netdrv] mlx4_en: Fix the return value of a failure in VLAN VID add/kill (kamal heib) [1243338]
-- [netdrv] mlx5: E-Switch, Modify node guid on vf set MAC (kamal heib) [1350475]
-- [netdrv] mlx4_en: Add support for inner IPv6 checksum offloads and TSO (kamal heib) [1192585]
-- [netdrv] bonding: prevent out of bound accesses (Jarod Wilson) [1352086]
-- [kernel] ptrace: task_clear_jobctl_trapping()->wake_up_bit() needs mb() (Daniel Bristot de Oliveira) [1350624]
-- [powerpc] powernv: Handle irq_happened flag correctly in off-line loop (David Gibson) [1344224]
-- [powerpc] perf: Export Power8 generic and cache events to sysfs (Gustavo Duarte) [1305079]
-- [powerpc] perf: Remove PME_ prefix for power7 events (Gustavo Duarte) [1305079]
-- [powerpc] powerpc/pseries/eeh: Refactor the configure_bridge RTAS tokens (Gustavo Duarte) [1343071]
-- [powerpc] powerpc/pseries/eeh: Handle RTAS delay requests in configure_bridge (Gustavo Duarte) [1343071]
-
-* Mon Jul 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-461.el7]
-- [net] dcb: fix accessing to extended ops (Ivan Vecera) [1341005]
-- [net] netlabel: handle sparse category maps in netlbl_catmap_getlong() (Paul Moore) [1321176]
-- [security] selinux: import NetLabel category bitmaps correctly (Paul Moore) [1321176]
-- [net] netlabel: fix a problem with netlbl_secattr_catmap_setrng() (Paul Moore) [1321176]
-- [net] sctp: do not leak chunks that are sent to unconfirmed paths (Marcelo Leitner) [1337639]
-- [net] sctp: consolidate local_bh_disable/enable + spin_lock/unlock to _bh variant (Marcelo Leitner) [1337639]
-- [net] sctp: fix copying more bytes than expected in sctp_add_bind_addr (Marcelo Leitner) [1337639]
-- [net] sctp: Fix port hash table size computation (Marcelo Leitner) [1337639]
-- [net] sctp: move rcu_read_lock from __sctp_lookup_association to sctp_lookup_association (Marcelo Leitner) [1337639]
-- [net] sctp: remove rcu_read_lock in sctp_seq_dump_remote_addrs() (Marcelo Leitner) [1337639]
-- [net] sctp: remove the unused sctp_datamsg_free() (Marcelo Leitner) [1337639]
-- [net] sctp: allow setting SCTP_SACK_IMMEDIATELY by the application (Marcelo Leitner) [1337639]
-- [net] sctp: fix use-after-free in pr_debug statement (Marcelo Leitner) [1337639]
-- [net] sctp: prevent writes to cookie_hmac_alg from accessing invalid memory (Marcelo Leitner) [1337639]
-- [net] sctp: use GFP_USER for user-controlled kmalloc (Marcelo Leitner) [1337639]
-- [net] sctp: dynamically enable or disable pf state (Marcelo Leitner) [1337639]
-- [net] sctp: clone options to avoid use after free (Marcelo Leitner) [1337639]
-- [net] sctp: only drop the reference on the datamsg after sending a msg (Marcelo Leitner) [1337639]
-- [net] sctp: hold the chunks only after the chunk is enqueued in outq (Marcelo Leitner) [1337639]
-- [net] sctp: implement sctp_v6_destroy_sock() (Marcelo Leitner) [1337639]
-- [net] sctp: avoid incorrect time_t use (Marcelo Leitner) [1337639]
-- [net] sctp: Don't use 64 kilobyte lookup table for four elements (Marcelo Leitner) [1337639]
-- [net] sctp: Do not try to search for the transport twice (Marcelo Leitner) [1337639]
-- [net] sctp: Fix mangled IPv4 addresses on a IPv6 listening socket (Marcelo Leitner) [1337639]
-- [net] sctp: fix passing wrong parameter header to param_type2af in sctp_process_param (Marcelo Leitner) [1337639]
-- [net] sctp: not send SCTP_PEER_ADDR_CHANGE notifications with failed probe (Marcelo Leitner) [1337639]
-- [net] sctp: fix possible seqlock seadlock in sctp_packet_transmit() (Marcelo Leitner) [1337639]
-- [net] fix the counter ICMP_MIB_INERRORS/ICMP6_MIB_INERRORS (Marcelo Leitner) [1337639]
-- [net] sctp: Fixup v4mapped behaviour to comply with Sock API (Marcelo Leitner) [1337639]
-- [net] sctp: fix incorrect type in gfp initializer (Marcelo Leitner) [1337639]
-- [net] sctp: add a checking for sctp_sysctl_net_register (Marcelo Leitner) [1337639]
-- [net] sctp: Don't transition to PF state when transport has exhausted 'Path.Max.Retrans'. (Marcelo Leitner) [1337639]
-- [net] sctp: fix skb leakage in COOKIE ECHO path of chunk->auth_chunk (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_bh_[un]lock_sock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_{lock|release}_sock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_read_[un]lock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_write_[un]_lock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_spin_[un]lock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_local_bh_{disable|enable} (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_spin_[un]lock_irqrestore (Marcelo Leitner) [1337639]
-- [net] sctp: Remove outqueue empty state (Marcelo Leitner) [1337639]
-- [net] sctp: fix checkpatch errors with open brace '{' and trailing statements (Marcelo Leitner) [1337639]
-- [net] sctp: fix checkpatch errors with space required or prohibited (Marcelo Leitner) [1337639]
-- [net] sctp: fix checkpatch errors with (foo*)|foo * bar|foo* bar (Marcelo Leitner) [1337639]
-- [net] sctp: remove redundant null check on asoc (Marcelo Leitner) [1337639]
-- [net] sctp: check the rto_min and rto_max in setsockopt (Marcelo Leitner) [1337639]
-- [net] sctp: properly latch and use autoclose value from sock to association (Marcelo Leitner) [1337639]
-- [net] sctp: disable max_burst when the max_burst is 0 (Marcelo Leitner) [1337639]
-- [net] sctp: find the correct highest_new_tsn in sack (Marcelo Leitner) [1337639]
-- [net] sctp: fix ASCONF to allow non SCTP_ADDR_SRC addresses in ipv6 (Marcelo Leitner) [1337639]
-- [net] sctp: Remove extern from function prototypes (Marcelo Leitner) [1337639]
-- [net] sctp: sctp_transport_destroy{, _rcu}: fix potential pointer corruption (Marcelo Leitner) [1337639]
-- [net] sctp: sctp_assoc_control_transport: fix MTU size in SCTP_PF state (Marcelo Leitner) [1337639]
-- [net] sctp: get rid of SCTP_DBG_TSNS entirely (Marcelo Leitner) [1337639]
-- [net] sctp: rework debugging framework to use pr_debug and friends (Marcelo Leitner) [1337639]
-- [net] sctp: remove TEST_FRAME ifdef (Marcelo Leitner) [1337639]
-- [net] sctp: decouple cleaning some socket data from endpoint (Marcelo Leitner) [1337639]
-- [net] sctp: remove SCTP_STATIC macro (Marcelo Leitner) [1337639]
-- [net] sctp: get rid of t_new macro for kzalloc (Marcelo Leitner) [1337639]
-- [net] sctp: sctp_sf_do_prm_asoc: do SCTP_CMD_INIT_CHOOSE_TRANSPORT first (Marcelo Leitner) [1337639]
-- [net] sctp: signal sk_data_ready earlier on data chunks reception (Marcelo Leitner) [1058148]
-- [net] sctp: simplify sk_receive_queue locking (Marcelo Leitner) [1058148]
-- [net] sctp: delay calls to sk_data_ready() as much as possible (Marcelo Leitner) [1058148]
-- [net] sctp: compress bit-wide flags to a bitfield on sctp_sock (Marcelo Leitner) [1058148]
-- [net] sctp: avoid refreshing heartbeat timer too often (Marcelo Leitner) [1058148]
-- [net] sctp: do not update a_rwnd if we are not issuing a sack (Marcelo Leitner) [1058148]
-- [net] sctp: improve timer slack calculation for transport HBs (Marcelo Leitner) [1058148]
-- [net] sctp: Fix warning in sctp_packet_transmit_chunk() (Marcelo Leitner) [1278912]
-- [net] sctp: improve debug message to also log curr pkt and new chunk size (Marcelo Leitner) [1278912]
-- [net] sctp: Add GSO support (Marcelo Leitner) [1278912]
-- [net] sctp: delay as much as possible skb_linearize (Marcelo Leitner) [1278912]
-- [net] skbuff: introduce skb_gso_validate_mtu (Marcelo Leitner) [1278912]
-- [net] ipv4: test for IPSKB_FORWARDED in ip_finish_output_gso (Marcelo Leitner) [1278912]
-- [net] skbuff: allow segmenting based on frag sizes (Marcelo Leitner) [1278912]
-- [net] skbuff: export skb_gro_receive (Marcelo Leitner) [1278912]
-- [net] loopback: make use of NETIF_F_GSO_SOFTWARE (Marcelo Leitner) [1278912]
-- [net] gso: Remove arbitrary checks for unsupported GSO (Marcelo Leitner) [1278912]
-- [net] netdev_features: Fold NETIF_F_ALL_TSO into NETIF_F_GSO_SOFTWARE (Marcelo Leitner) [1278912]
-- [net] gro: remove obsolete code from skb_gro_receive() (Marcelo Leitner) [1278912]
-- [net] do not export skb_gro_receive() (Marcelo Leitner) [1278912]
-- [net] sctp: remove the unnecessary assignment (Marcelo Leitner) [1278912]
-- [net] sctp: move skb_dst_set() a bit downwards in sctp_packet_transmit() (Marcelo Leitner) [1278912]
-- [net] sctp: Restore 'resent' bit to avoid retransmitted chunks for RTT measurements (Marcelo Leitner) [1278912]
-- [net] sctp: flush if we can't fit another DATA chunk (Marcelo Leitner) [1071985]
-- [net] sctp: really allow using GFP_KERNEL on sctp_packet_transmit (Marcelo Leitner) [1071985]
-- [net] sctp: allow sctp_transmit_packet and others to use gfp (Marcelo Leitner) [1071985]
-- [net] sctp: align MTU to a word (Marcelo Leitner) [1071985]
-- [net] sctp: use MAX_HEADER for headroom reserve in output path (Marcelo Leitner) [1071985]
-- [net] sctp: Open out the check for Nagle (Marcelo Leitner) [1071985]
-- [net] sctp: Fix data chunk fragmentation for MTU values which are not multiple of 4 (Marcelo Leitner) [1071985]
-- [net] sctp: Add rudimentary infrastructure to account for control chunks (Marcelo Leitner) [1071985]
-
-* Fri Jul 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-460.el7]
-- [fs] Call security_ops->inode_killpriv on truncate (Eric Sandeen) [1197686]
-- [fs] Provide function telling whether file_remove_privs() will do anything (Eric Sandeen) [1197686]
-- [fs] Rename file_remove_suid() to file_remove_privs() (Eric Sandeen) [1197686]
-- [fs] Fix S_NOSEC handling (Eric Sandeen) [1197686]
-- [fs] fanotify: fix double free of pending permission events (Richard Guy Briggs) [1339092]
-- [fs] fsnotify: rename event handling functions (Richard Guy Briggs) [1339092]
-- [fs] fanotify: convert access_mutex to spinlock (Richard Guy Briggs) [1339092]
-- [fs] fanotify: use fanotify event structure for permission response processing (Richard Guy Briggs) [1339092]
-- [fs] fanotify: remove useless bypass_perm check (Richard Guy Briggs) [1339092]
-- [fs] nfsd: recover: fix memory leak ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix deadlock secinfo+readdir compound ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: resfh unused in nfsd4_secinfo ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix a memory leak when meeting unsupported state_protect_how4 ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix bad bounds checking ("J. Bruce Fields") [1344797]
-- [fs] nfsd: add new io class tracepoint ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't hold i_mutex over userspace upcalls ("J. Bruce Fields") [1344797]
-- [fs] nfsd: give up on CB_LAYOUTRECALLs after two lease periods ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix nfsd leaks sunrpc module references ("J. Bruce Fields") [1344797]
-- [fs] lockd: constify nlmsvc_binding structure ("J. Bruce Fields") [1344797]
-- [fs] nfsd: use to_delayed_work ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Register callbacks on the inetaddr_chain and inet6addr_chain ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: Add a function to close temporary transports immediately ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't base cl_cb_status on stale information ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't hold ls_mutex across a layout recall ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Pass filehandle to nfs4_preprocess_stateid_op() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix a warning message ("J. Bruce Fields") [1344797]
-- [fs] nfsd: constify nfsd4_callback_ops structure ("J. Bruce Fields") [1344797]
-- [fs] nfsd: recover: constify nfsd4_client_tracking_ops structures ("J. Bruce Fields") [1344797]
-- [fs] svcrpc: document lack of some memory barriers ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix race with open / open upgrade stateids ("J. Bruce Fields") [1344797]
-- [fs] nfsd: eliminate sending duplicate and repeated delegations ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: drop stale comment in svc_setup_socket() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: ensure that seqid morphing operations are atomic wrt to copies ("J. Bruce Fields") [1344797]
-- [fs] nfsd: serialize layout stateid morphing operations ("J. Bruce Fields") [1344797]
-- [fs] nfsd: improve client_has_state to check for unused openowners ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix clid_inuse on mount with security change ("J. Bruce Fields") [1344797]
-- [fs] nfsd: move include of state.h from trace.c to trace.h ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: Use MSG_SENDPAGE_NOTLAST when calling sendpage() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: switch unsigned char flags in svc_fh to bools ("J. Bruce Fields") [1344797]
-- [fs] nfsd: move svc_fh->fh_maxsize to just after fh_handle ("J. Bruce Fields") [1344797]
-- [fs] nfsd: drop null test before destroy functions ("J. Bruce Fields") [1344797]
-- [fs] nfsd: serialize state seqid morphing operations ("J. Bruce Fields") [1344797]
-- [fs] nfsd: deal with DELEGRETURN racing with CB_RECALL ("J. Bruce Fields") [1344797]
-- [fs] nfsd: return CLID_INUSE for unexpected SETCLIENTID_CONFIRM case ("J. Bruce Fields") [1344797]
-- [fs] nfsd: allow more than one laundry job to run at a time ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't WARN/backtrace for invalid container deployment. ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Return word2 bitmask if setting security label in OPEN/CREATE ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Set the attributes used to store the verifier for EXCLUSIVE4_1 ("J. Bruce Fields") [1344797]
-- [fs] nfsd: SUPPATTR_EXCLCREAT must be encoded before SECURITY_LABEL. ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix an FS_LAYOUT_TYPES/LAYOUT_TYPES encode bug ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Store parent's stat in a separate value ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix two typos in comments ("J. Bruce Fields") [1344797]
-- [fs] nfsd: include linux/nfs4.h in export.h ("J. Bruce Fields") [1344797]
-- [fs] sunrpc/nfsd: Remove redundant code by exports seq_operations functions ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: Store cache_detail in seq_file's private ("J. Bruce Fields") [1344797]
-- [fs] nfsd: New helper nfsd4_cb_sequence_done() for processing more cb errors ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove unused clientid arguments from, find_lockowner_str{_locked} ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Use lk_new_xxx instead of v.new.xxx for nfs4_lockowner ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove macro LOFF_OVERFLOW ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove duplicate checking of nfsd_net in nfs4_laundromat() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove nfs4_set_claim_prev() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Drop duplicate checking of seqid in nfsd4_create_session() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove unneeded values in nfsd4_open() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Add missing gen_confirm in nfsd4_setclientid() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: New counter for generating client confirm verifier ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix memory leak of so_owner.data in nfs4_stateowner ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Add layouts checking in client_has_state() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix a memory leak of struct file_lock ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: factor svc_rqst allocation and freeing from sv_nrthreads refcounting ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: move pool_mode definitions into svc.h ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: abstract out svc_set_num_threads to sv_ops ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: turn enqueueing a svc_xprt into a svc_serv operation ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: move sv_module parm into sv_ops ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: move sv_function into sv_ops ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: add a new svc_serv_ops struct and move sv_shutdown into it ("J. Bruce Fields") [1344797]
-- [fs] nfsd: do nfs4_check_fh in nfs4_check_file instead of nfs4_check_olstateid ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Add macro NFS_ACL_MASK for ACL ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove duplicate define of IDMAP_NAMESZ/IDMAP_TYPE_xx ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Drop including client's header file nfs_fs.h ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Set lc_size_chg before ops->proc_layoutcommit ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix a memory leak in nfsd4_list_rec_dir() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix a file leak on nfsd4_layout_setlease failure ("J. Bruce Fields") [1344797]
-- [fs] nfsd: wrap too long lines in nfsd4_encode_read ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fput rd_file from XDR encode context ("J. Bruce Fields") [1344797]
-- [fs] nfsd: take struct file setup fully into nfs4_preprocess_stateid_op ("J. Bruce Fields") [1344797]
-- [fs] nfsd: refactor nfs4_preprocess_stateid_op ("J. Bruce Fields") [1344797]
-- [fs] nfsd: clean up raparams handling ("J. Bruce Fields") [1344797]
-- [fs] nfsd: use swap() in sort_pacl_range() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Update callback sequnce id only CB_SEQUENCE success ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Reset cb_status in nfsd4_cb_prepare() at retrying ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: Move EXPORT_SYMBOL for svc_process ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove dead declarations ("J. Bruce Fields") [1344797]
-- [fs] nfsd: work around a gcc-5.1 warning ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Checking for acl support does not require fetching any acls ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Disable NFSv2 timestamp workaround for NFSv3+ ("J. Bruce Fields") [1344797]
-- [fs] nfsd: stop READDIRPLUS returning inconsistent attributes ("J. Bruce Fields") [1344797]
-- [fs] nfsd: remove nfsd_close ("J. Bruce Fields") [1344797]
-- [fs] nfsd: skip CB_NULL probes for 4.1 or later ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix callback restarts ("J. Bruce Fields") [1344797]
-- [fs] nfsd: split transport vs operation errors for callbacks ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix pNFS return on close semantics ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix the check for confirmed openowner in nfs4_preprocess_stateid_op ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix READ permission checking ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove duplicate macro define for max sec label length ("J. Bruce Fields") [1344797]
-- [fs] nfsd: allow setting acls with unenforceable DENYs ("J. Bruce Fields") [1344797]
-- [fs] nfsd: NFSD_FAULT_INJECTION depends on DEBUG_FS ("J. Bruce Fields") [1344797]
-- [fs] nfsd: remove unused status arg to nfsd4_cleanup_open_state ("J. Bruce Fields") [1344797]
-- [fs] nfsd: remove bogus setting of status in nfsd4_process_open2 ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Use correct reply size calculating function ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Using path_equal() for checking two paths ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix bad update of layout in nfsd4_return_file_layout ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Take care the return value from nfsd4_encode_stateid ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Put exports after nfsd4_layout_verify fail ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Take care the return value from nfsd4_decode_stateid ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Check layout type when returning client layouts ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix v3-less build ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix comparison in fh_fsid_match() ("J. Bruce Fields") [1344797]
-- [fs] sunrpc/lockd: fix references to the BKL ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix year-2038 nfs4 state problem ("J. Bruce Fields") [1344797]
-- [fs] nfsd: nfs4state: Remove unused function ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: tweak rd_dircount accounting ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fi_delegees doesn't need to be an atomic_t ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't keep a pointer to the lease in nfs4_file ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix fi_delegees leak when fi_had_conflict returns true ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: only call test_bit once in svc_xprt_received ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix signedness bug in compare_blob ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: add some tracepoints around enqueue and dequeue of svc_xprt ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: convert to lockless lookup of queued server threads ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: fix potential races in pool_stats collection ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: add a rcu_head to svc_rqst and use kfree_rcu to free it ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: require svc_create callers to pass in meaningful shutdown routine ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: have svc_wake_up only deal with pool 0 ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: convert sp_task_pending flag to use atomic bitops ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_cachetype field to better optimize space ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_splice_ok flag into rq_flags ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_dropme flag into rq_flags ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_usedeferral flag to rq_flags ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_local field to rq_flags ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: add a generic rq_flags field to svc_rqst and move rq_secure to it ("J. Bruce Fields") [1344797]
-- [fs] nfsd: minor off by one checks in __write_versions() ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: release svc_pool_map reference when serv allocation fails ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: eliminate the XPT_DETACHED flag ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix slot wake up race in the nfsv4.1 callback code ("J. Bruce Fields") [1344797]
-- [fs] nfsd_vfs_write(): use file_inode() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: get rid of ->f_dentry ("J. Bruce Fields") [1344797]
-- [fs] nfsd/nfsctl.c: new helper ("J. Bruce Fields") [1344797]
-- [fs] nfsd: convert nfs4_file searches to use RCU ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: off by one in BUG_ON() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: clean up comments over nfs4_file definition ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Always initialize cl_cb_addr ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix inclusive vfs_fsync_range() end ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix crash on unknown operation number ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix response size estimation for OP_SEQUENCE ("J. Bruce Fields") [1344797]
-- [fs] af_unix: fix hard linked sockets on overlay (Miklos Szeredi) [1273111]
-- [fs] vfs: add d_real_inode() helper (Miklos Szeredi) [1273111]
-- [fs] gfs2: Automatically set GFS2_DIF_SYSTEM flag on system files (Abhijith Das) [1272086]
-- [fs] ovl: fix uid/gid when creating over whiteout (Miklos Szeredi) [1348113]
-- [fs] ext4: set S_IOPS_WRAPPER flag in ext4_mkdir() (Eryu Guan) [1231802]
-
-* Fri Jul 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-459.el7]
-- [fs] allow no_seek_end_llseek to actually seek (David Arcari) [1350836]
-- [usb] revert "make "nousb" a clear module parameter" (Torez Smith) [1351227]
-- [acpi] add ACPI_TYPE_LOCAL_REFERENCE support to acpi_extract_package() (David Arcari) [1350497]
-- [netdrv] e1000e: keep Rx/Tx HW_VLAN_CTAG in sync (Jarod Wilson) [1190077]
-- [netdrv] e1000e: keep VLAN interfaces functional after rxvlan off (Jarod Wilson) [1190077]
-- [powerpc] Uncomment and make enable_kernel_vsx() routine available (Gustavo Duarte) [1274481]
-- [crypto] vmx - IV size failing on skcipher API (Gustavo Duarte) [1274481]
-- [crypto] vmx: Only call enable_kernel_vsx() (Gustavo Duarte) [1274481]
-- [crypto] vmx - Fixing opcode issue (Gustavo Duarte) [1274481]
-- [crypto] vmx - Fixing GHASH Key issue on little endian (Gustavo Duarte) [1274481]
-- [crypto] vmx - Fixing AES-CTR counter bug (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding enable_kernel_vsx() to access VSX instructions (Gustavo Duarte) [1274481]
-- [crypto] sched/preempt, powerpc: Disable preemption in enable_kernel_altivec() explicitly (Gustavo Duarte) [1274481]
-- [crypto] vmx - Reindent to kernel style (Gustavo Duarte) [1274481]
-- [crypto] vmx - Remove duplicate PPC64 dependency (Gustavo Duarte) [1274481]
-- [crypto] vmx - fix two mistyped texts (Gustavo Duarte) [1274481]
-- [crypto] vmx - Fix assembler perl to use _GLOBAL (Gustavo Duarte) [1274481]
-- [crypto] vmx - Enabling VMX module for PPC64 (Gustavo Duarte) [1274481]
-- [crypto] vmx - Add support for VMS instructions by ASM (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding GHASH routines for VMX module (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding CTR routines for VMX module (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding CBC routines for VMX module (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding AES routines for VMX module (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding VMX module for Power 8 (Gustavo Duarte) [1274481]
-- [powerpc] kvm: ppc: book3s pr: Fix contents of SRR1 when injecting a program exception (Thomas Huth) [1349816]
-- [powerpc] kvm: ppc: book3s pr: Fix illegal opcode emulation (Thomas Huth) [1349816]
-
-* Thu Jun 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-458.el7]
-- [net] netfilter: nf_dup_ipv6: set again FLOWI_FLAG_KNOWN_NH at flowi6_flags (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: check match/targetinfo attr size (Paolo Abeni) [1331757]
-- [net] netfilter: nft_masq: support port range (Paolo Abeni) [1331757]
-- [net] netfilter: nft_counter: fix erroneous return values (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: use original skbuff when acking batches (Paolo Abeni) [1331757]
-- [net] netfilter: nft_ct: keep counters away from CONFIG_NF_CONNTRACK_LABELS (Paolo Abeni) [1331757]
-- [net] netfilter: nft_byteorder: avoid unneeded le/be conversion steps (Paolo Abeni) [1331757]
-- [net] netfilter: nft_ct: add byte/packet counter support (Paolo Abeni) [1331757]
-- [net] netfilter: nft_byteorder: provide 64bit le/be conversion (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: Add new attributes into nft_set to store user data. (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: allow to invert matching criteria (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: remove check against removal of inactive objects (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: release objects on netns destruction (Paolo Abeni) [1331757]
-- [net] netfilter: nft_ct: include direction when dumping NFT_CT_L3PROTOCOL key (Paolo Abeni) [1331757]
-- [net] netfilter: meta: add support for setting skb->pkttype (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: fix splat due to incorrect socket memory accounting in skbuff clones (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: avoid recurrent netns lookups in call_batch (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix nf_log_trace based tracing (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: wrap tracing with a static key (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: extend tracing infrastructure (Paolo Abeni) [1331757]
-- [net] netfilter: nft_payload: add packet mangling support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: remove unused struct members (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add clone interface to expression operations (Paolo Abeni) [1331757]
-- [net] remove unnecessary semicolon in netdev_alloc_pcpu_stats() (Paolo Abeni) [1331757]
-- [net] add __netdev_alloc_pcpu_stats() to indicate gfp flags (Paolo Abeni) [1331757]
-- [net] netfilter: ipv6: code indentation (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: kill nft_pktinfo.ops (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: skip family comparison in case of NFPROTO_UNSPEC (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: work around wrong endianess in res_id field (Paolo Abeni) [1331757]
-- [net] netfilter: nf_dup: fix sparse warnings (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: Use 32 bit addressing register from nft_type_to_reg() (Paolo Abeni) [1331757]
-- [net] netfilter: nft_payload: work around vlan header stripping (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: add per-byte limiting (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: constant token cost per packet (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: add burst parameter (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: factor out shared code with per-byte limiting (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: convert to token-based limiting at nanosecond granularity (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: rename to nft_limit_pkts (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: keep going batch handling on missing modules (Paolo Abeni) [1331757]
-- [net] configs: enable nft dup (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add nft_dup expression (Paolo Abeni) [1331757]
-- [net] netfilter: tee: select NF_DUP_IPV6 unconditionally (Paolo Abeni) [1331757]
-- [net] netfilter: fix xt_TEE and xt_TPROXY dependencies (Paolo Abeni) [1331757]
-- [net] netfilter: xt_TEE: use IS_ENABLED(CONFIG_NF_DUP_IPV6) (Paolo Abeni) [1331757]
-- [net] netfilter: xt_TEE: fix NULL dereference (Paolo Abeni) [1331757]
-- [net] netfilter: nf_dup{4, 6}: fix build error when nf_conntrack disabled (Paolo Abeni) [1331757]
-- [net] netfilter: factor out packet duplication for IPv4/IPv6 (Paolo Abeni) [1331757]
-- [net] netfilter: move tee_active to core (Paolo Abeni) [1331757]
-- [net] netfilter: xt_TEE: get rid of WITH_CONNTRACK definition (Paolo Abeni) [1331757]
-- [net] netfilter: nft_counter: convert it to use per-cpu counters (Paolo Abeni) [1331757]
-- [net] netfilter: nftables: Do not run chains in the wrong network namespace (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add nft_register_basechain() and nft_unregister_basechain() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: consolidate Kconfig options (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix bogus warning in nft_data_uninit() (Paolo Abeni) [1331757]
-- [net] netfilter: x_tables: add context to know if extension runs from nft_compat (Paolo Abeni) [1331757]
-- [net] netfilter; Add some missing default cases to switch statements in nft_reject. (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix wrong length for jump/goto verdicts (Paolo Abeni) [1331757]
-- [net] netfilter: nft_dynset: dynamic stateful expression instantiation (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add flag to indicate set contains expressions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: mark stateful expressions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: prepare for expressions associated to set elements (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add helper functions for expression handling (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: variable sized set element keys / data (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: support variable sized data in nft_data_init() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: switch registers to 32 bit addressing (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add register parsing/dumping helpers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: convert sets to u32 data pointers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: kill nft_data_cmp() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: convert expressions to u32 register pointers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: use struct nft_verdict within struct nft_data (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: get rid of NFT_REG_VERDICT usage (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: introduce nft_validate_register_load() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: kill nft_validate_output_register() (Paolo Abeni) [1331757]
-- [net] netfilter: nft_lookup: use nft_validate_register_store() to validate types (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: rename nft_validate_data_load() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: validate len in nft_validate_data_load() (Paolo Abeni) [1331757]
-- [net] netfilter: Fix switch statement warnings with recent gcc. (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: support optional userdata for set elements (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add support for dynamic set updates (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: support different set binding types (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: prepare set element accounting for async updates (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix set selection when timeouts are requested (Paolo Abeni) [1331757]
-- [net] netfilter: nft_meta: fix cgroup matching (Paolo Abeni) [1331757]
-- [net] netfilter: nft_hash: add support for timeouts (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add GC synchronization helpers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add set garbage collection helpers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add set element timeout support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add set timeout API support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: implement set transaction support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add transaction helper functions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: return set extensions from ->lookup() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: consolide set element destruction (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: convert hash and rbtree to set extensions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add set extensions (Paolo Abeni) [1331757]
-- [net] netfilter: nft_hash: convert to use rhashtable callbacks (Paolo Abeni) [1331757]
-- [net] netfilter: nft_hash: indent rhashtable parameters (Paolo Abeni) [1331757]
-- [net] netfilter: nft_hash: restore struct nft_hash (Paolo Abeni) [1331757]
-- [net] netfilter: nft_meta: use raw_smp_processor_id() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: move struct net pointer to base chain (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: reject NFT_SET_ELEM_INTERVAL_END flag for non-interval sets (Paolo Abeni) [1331757]
-- [net] netfilter: nft_rbtree: fix locking (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: set IP6T_F_PROTO flag if protocol is set (Paolo Abeni) [1331757]
-- [net] netfilter: restore rule tracing via nfnetlink_log (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: consolidate error path of nf_tables_newtable() (Paolo Abeni) [1331757]
-- [net] netfilter: use sk_fullsock() helper (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: allow to change chain policy without hook if it exists (Paolo Abeni) [1331757]
-- [net] netfilter: Fix potential crash in nft_hash walker (Paolo Abeni) [1331757]
-- [net] netfilter: fix sparse warnings in reject handling (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: limit maximum table name length to 32 bytes (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: cleanup nf_tables.h (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: consolidate tracing invocations (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: minor tracing cleanups (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix error handling of rule replacement (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix userdata length overflow (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: check for overflow of rule dlen field (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix transaction race condition (Paolo Abeni) [1331757]
-- [net] netfilter: bridge: rework reject handling (Paolo Abeni) [1331757]
-- [net] netfilter: reject: don't send icmp error if csum is invalid (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: add support for arptables extensions (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: don't truncate ethernet protocol type to u8 (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: fix module refcount underflow (Paolo Abeni) [1331757]
-- [net] netfilter: Use rhashtable walk iterator (Paolo Abeni) [1331757]
-- [net] netfilter: nft_lookup: add missing attribute validation for NFTA_LOOKUP_SET_ID (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: add ebtables support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix leaks in error path of nf_tables_newchain() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: disable preemption when restoring chain counters (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: validate hooks in NAT expressions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix port natting in little endian archs (Paolo Abeni) [1331757]
-- [net] netfilter: nf_nat_redirect: add missing NULL pointer check (Paolo Abeni) [1331757]
-- [net] netfilter: combine IPv4 and IPv6 nf_nat_redirect code in one module (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables_bridge: replace nft_reject_ip*hdr_validate functions (Paolo Abeni) [1331757]
-- [net] netfilter: Deletion of unnecessary checks before two function calls (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: restore synchronous object release from commit/abort (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: use the match->table to validate dependencies (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: relax chain type validation (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: use current net namespace (Paolo Abeni) [1331757]
-- [net] netfilter: nft_redir: fix sparse warnings (Paolo Abeni) [1331757]
-- [net] netfilter: nft_masq: fix uninitialized range in nft_masq_{ipv4, ipv6}_eval (Paolo Abeni) [1331757]
-- [net] netfilter: nft_meta: add cgroup support (Paolo Abeni) [1331757]
-- [net] netfilter: nft_reject_bridge: restrict reject to prerouting and input (Paolo Abeni) [1331757]
-- [net] netfilter: nft_reject_bridge: Fix powerpc build error (Paolo Abeni) [1331757]
-- [net] netfilter: nft_reject_bridge: don't use IP stack to reject traffic (Paolo Abeni) [1331757]
-- [net] netfilter: nf_reject_ipv6: split nf_send_reset6() in smaller functions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_reject_ipv4: split nf_send_reset() in smaller functions (Paolo Abeni) [1331757]
-- [net] netfilter: missing module license in the nf_reject_ipvX modules (Paolo Abeni) [1331757]
-- [net] netfilter: kill nf_send_reset6() from include/net/netfilter/ipv6/nf_reject.h (Paolo Abeni) [1331757]
-- [net] netfilter: move nf_send_resetX() code to nf_reject_ipvX modules (Paolo Abeni) [1331757]
-- [net] netfilter: fix spelling errors (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add new expression nft_redir (Paolo Abeni) [1331757]
-- [net] netfilter: fix unmet dependencies in NETFILTER_XT_TARGET_REDIRECT (Paolo Abeni) [1331757]
-- [net] netfilter: refactor NAT redirect IPv6 code to use it from nf_tables (Paolo Abeni) [1331757]
-- [net] netfilter: refactor NAT redirect IPv4 to use it from nf_tables (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: fix wrong target lookup in nft_target_select_ops() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: check for NULL in nf_tables_newchain pcpu stats allocation (Paolo Abeni) [1331757]
-- [net] netfilter: nft_nat: dump attributes if they are set (Paolo Abeni) [1331757]
-- [net] netfilter: nft_nat: NFTA_NAT_REG_ADDR_MAX depends on NFTA_NAT_REG_ADDR_MIN (Paolo Abeni) [1331757]
-- [net] netfilter: nft_nat: insufficient attribute validation (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: validate chain type in match/target (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: fix hook validation for non-base chains (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: restrict nat/masq expressions to nat chain type (Paolo Abeni) [1331757]
-- [net] netfilter: fix wrong arithmetics regarding NFT_REJECT_ICMPX_MAX (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: use original skbuff when committing/aborting (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: deliver netlink errors on batch completion (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: Fix use after free when it fails to process batch (Paolo Abeni) [1331757]
-- [net] netfilter: x_tables: don't reject valid target size on some architectures (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] ipv6: Skip XFRM lookup if dst_entry in socket cache is valid (Jakub Sitnicki) [1332217]
-
-* Thu Jun 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-457.el7]
-- [netdrv] bonding: fix 802.3ad aggregator reselection (Jarod Wilson) [1350953]
-- [netdrv] i40e: enable geneve offloading (Stefan Assmann) [1350780]
-- [s390] ensure that syscall arguments are properly masked on s390 (Paul Moore) [1321096]
-- [tty] Update code comment in __proc_set_tty() ("Herton R. Krzesinski") [1350798]
-- [tty] Serialize proc_set_tty() with tty_lock ("Herton R. Krzesinski") [1350798]
-- [tty] Fix multiple races when setting the controlling terminal ("Herton R. Krzesinski") [1350798]
-- [tty] Remove !tty condition from __proc_set_tty() ("Herton R. Krzesinski") [1350798]
-- [tty] Remove tsk parameter from proc_set_tty() ("Herton R. Krzesinski") [1350798]
-- [tty] Reorder proc_set_tty() and related fns ("Herton R. Krzesinski") [1350798]
-- [x86] efi: Avoid triple faults during EFI mixed mode calls (Lenny Szubowicz) [1310154]
-- [x86] efi: Remove unused efi_call* macros (Lenny Szubowicz) [1310154]
-- [x86] boot: EFI_MIXED should not prohibit loading above 4G (Lenny Szubowicz) [1310154]
-- [x86] efi: Implement a __efi_call_virt macro (Lenny Szubowicz) [1310154]
-- [x86] efi: Delete most of the efi_call* macros (Lenny Szubowicz) [1310154]
-- [firmware] efi: Add shared printk wrapper for consistent prefixing (Lenny Szubowicz) [1310154]
-- [firmware] efi: efi-stub-helper cleanup (Lenny Szubowicz) [1310154]
-- [firmware] efi: Pass correct file handle to efi_file_{read, close} (Lenny Szubowicz) [1310154]
-- [x86] efi: Correct EFI boot stub use of code32_start (Lenny Szubowicz) [1310154]
-- [x86] efi: Fix boot failure with EFI stub (Lenny Szubowicz) [1310154]
-- [firmware] x86, efi: Abstract x86 efi_early calls (Lenny Szubowicz) [1310154]
-- [x86] efi: Restore 'attr' argument to query_variable_info() (Lenny Szubowicz) [1310154]
-- [x86] efi: Rip out phys_efi_get_time() (Lenny Szubowicz) [1310154]
-- [x86] efi: Preserve segment registers in mixed mode (Lenny Szubowicz) [1310154]
-- [x86] boot: Correct max ramdisk size name (Lenny Szubowicz) [1310154]
-- [x86] boot: Fix non-EFI build (Lenny Szubowicz) [1310154]
-- [x86] tools: Fix up compiler warnings (Lenny Szubowicz) [1310154]
-- [x86] efi: Re-disable interrupts after calling firmware services (Lenny Szubowicz) [1310154]
-- [x86] boot: Don't overwrite cr4 when enabling PAE (Lenny Szubowicz) [1310154]
-- [x86] efi: Wire up CONFIG_EFI_MIXED (Lenny Szubowicz) [1310154]
-- [x86] efi: Add mixed runtime services support (Lenny Szubowicz) [1310154]
-- [x86] efi: Firmware agnostic handover entry points (Lenny Szubowicz) [1310154]
-- [x86] efi: Split the boot stub into 32/64 code paths (Lenny Szubowicz) [1310154]
-- [x86] efi: Add early thunk code to go from 64-bit to 32-bit (Lenny Szubowicz) [1310154]
-- [firmware] x86/efi: Build our own EFI services pointer table (Lenny Szubowicz) [1310154]
-- [x86] build: Restore efi_stub_entry in arch/x86/boot/zoffset.h (Lenny Szubowicz) [1310154]
-- [include] efi: Add separate 32-bit/64-bit definitions (Lenny Szubowicz) [1310154]
-- [x86] efi: Delete dead code when checking for non-native (Lenny Szubowicz) [1310154]
-- [x86] tools: Consolidate #ifdef code (Lenny Szubowicz) [1310154]
-- [x86] boot: Cleanup header.S by removing some #ifdefs (Lenny Szubowicz) [1310154]
-- [firmware] efi: Use NULL instead of 0 for pointer (Lenny Szubowicz) [1310154]
-- [x86] x86 efi: bugfix interrupt disabling sequence (Lenny Szubowicz) [1310154]
-- [x86] build: move build output statistics away from stderr (Lenny Szubowicz) [1310154]
-- [firmware] efi: resolve warnings found on ARM compile (Lenny Szubowicz) [1310154]
-- [firmware] efi: Fix types in EFI calls to match EFI function definitions (Lenny Szubowicz) [1310154]
-- [firmware] efi: Move unicode to ASCII conversion to shared function (Lenny Szubowicz) [1310154]
-- [firmware] efi: Move relocate_kernel() to shared file (Lenny Szubowicz) [1310154]
-- [firmware] efivars: Mark local function as static (Lenny Szubowicz) [1310154]
-- [x86] boot: Close opened file descriptor (Lenny Szubowicz) [1310154]
-
-* Tue Jun 28 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-456.el7]
-- [fs] mntns: drop namespace reference if !CAP_SYS_ADMIN (Aristeu Rozanski) [1297446]
-- [usb] xhci: Cleanup only when releasing primary hcd (Torez Smith) [1334901]
-- [usb] xhci: Fix handling timeouted commands on hosts in weird states (Torez Smith) [1334901]
-- [char] ipmi: Remove smi_msg from waiting_rcv_msgs list before handle_one_recv_msg() (David Arcari) [1348013]
-- [netdrv] bnxt_en: Add BCM5731X and BCM5741X device IDs (John Linville) [1347031]
-- [netdrv] bnxt_en: Add GRO logic for BCM5731X chips (John Linville) [1347031]
-- [netdrv] bnxt_en: Refactor bnxt_gro_skb() (John Linville) [1347031]
-- [netdrv] bnxt_en: Define the supported chip numbers (John Linville) [1347031]
-- [netdrv] bnxt_en: Add PCI device ID for 57404 NPAR devices (John Linville) [1347031]
-- [netdrv] bnxt_en: Enable NPAR NIC Partitioning Support (John Linville) [1347031]
-- [netdrv] bnxt_en: Fix tx push race condition (John Linville) [1347031]
-- [kernel] include/linux/poison.h: fix LIST_POISON{1,2} offset (Dean Nelson) [1343802]
-- [kernel] sched/debug: Fix deadlock when enabling sched events (Josh Poimboeuf) [1333444]
-- [kernel] printk: Add printk_deferred_once (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Fix 'schedstats=enable' cmdline option (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Fix /proc/sched_debug regression (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Make schedstats a runtime tunable that is disabled by default (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Add sum_sleep_runtime to /proc/<pid>/sched (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Replace vruntime with wait_sum in /proc/sched_debug (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Properly format runnable tasks in /proc/sched_debug (Josh Poimboeuf) [1333444]
-- [kernel] sched: Add statistic for newidle load balance cost (Josh Poimboeuf) [1333444]
-- [kernel] sched/core: Rearrange schedstats code to more closely match upstream (Josh Poimboeuf) [1333444]
-- [kernel] perf: Make sysctl_perf_cpu_time_max_percent conform to documentation (Jiri Olsa) [1341230]
-- [powerpc] hw_breakpoint: Fix oops when destroying hw_breakpoint event (Jiri Olsa) [1341230]
-- [kernel] perf/core: Fix time tracking bug with multiplexing (Jiri Olsa) [1341230]
-- [kernel] perf/core: Fix dynamic interrupt throttle (Jiri Olsa) [1341230]
-- [kernel] perf/core: Fix the unthrottle logic (Jiri Olsa) [1341230]
-- [kernel] perf: Robustify task_function_call() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix scaling vs. perf_install_in_context() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix scaling vs. perf_event_enable() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix scaling vs. perf_event_enable_on_exec() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix ctx time tracking by introducing EVENT_TIME (Jiri Olsa) [1341230]
-- [kernel] perf: Cure event->pending_disable race (Jiri Olsa) [1341230]
-- [kernel] perf: Fix cloning (Jiri Olsa) [1341230]
-- [kernel] perf: Only update context time when active (Jiri Olsa) [1341230]
-- [kernel] perf: Allow perf_release() with !event->ctx (Jiri Olsa) [1341230]
-- [kernel] perf: Do not double free (Jiri Olsa) [1341230]
-- [kernel] perf: Close install vs. exit race (Jiri Olsa) [1341230]
-- [kernel] perf: Remove/simplify lockdep annotation (Jiri Olsa) [1341230]
-- [kernel] perf: Synchronously clean up child events (Jiri Olsa) [1341230]
-- [kernel] perf: Untangle 'owner' confusion (Jiri Olsa) [1341230]
-- [kernel] perf: Add flags argument to perf_remove_from_context() (Jiri Olsa) [1341230]
-- [kernel] perf: Clean up sync_child_event() (Jiri Olsa) [1341230]
-- [kernel] perf: Robustify event->owner usage and SMP ordering (Jiri Olsa) [1341230]
-- [kernel] perf: Fix STATE_EXIT usage (Jiri Olsa) [1341230]
-- [kernel] perf: Update locking order (Jiri Olsa) [1341230]
-- [kernel] perf: Remove __free_event() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix NULL deref (Jiri Olsa) [1341230]
-- [kernel] perf: Fix race in perf_event_exit_task_context() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix orphan hole (Jiri Olsa) [1341230]
-- [kernel] perf: Fix perf_event_exit_task() race (Jiri Olsa) [1341230]
-- [kernel] perf: Add more assertions (Jiri Olsa) [1341230]
-- [kernel] perf: Collapse and fix event_function_call() users (Jiri Olsa) [1341230]
-- [kernel] perf: Specialize perf_event_exit_task() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix task context scheduling (Jiri Olsa) [1341230]
-- [kernel] perf: Make ctx->is_active and cpuctx->task_ctx consistent (Jiri Olsa) [1341230]
-- [kernel] perf: Optimize perf_sched_events() usage (Jiri Olsa) [1341230]
-- [kernel] perf: Simplify/fix perf_event_enable() event scheduling (Jiri Olsa) [1341230]
-- [kernel] perf: Use task_ctx_sched_out() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix perf_enable_on_exec() event scheduling (Jiri Olsa) [1341230]
-- [kernel] perf/core: Fix RCU problem with cgroup context switching code (Jiri Olsa) [1341230]
-- [kernel] sched,perf: Fix periodic timers (Jiri Olsa) [1341230]
-- [kernel] perf: Remove unused function perf_mux_hrtimer_cancel() (Jiri Olsa) [1341230]
-- [kernel] perf: perf_mux_hrtimer_cancel() can be static (Jiri Olsa) [1341230]
-- [kernel] perf: Fix mux_interval hrtimer wreckage (Jiri Olsa) [1341230]
-- [scripts] genksyms: Regenerate parser (Jiri Olsa) [1341230]
-- [scripts] genksyms: Duplicate function pointer type definitions segfault (Jiri Olsa) [1341230]
-- [scripts] genksyms: fix typeof() handling (Jiri Olsa) [1341230]
-
-* Mon Jun 27 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-455.el7]
-- [infiniband] ib/hfi1: Move driver out of staging (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1, qib: Add ieth to the packet header definitions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use cache inhibitted and guarded mapping on powerpc (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove unused qib_7322_intr_msgs[] (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix pio map initialization (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correct 8051 link parameter settings (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Update pkey table properly after link down or FM start (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdamvt: Fix rdmavt s_ack_queue sizing (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Max atomic value should be a u8 (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add tracing support for send with invalidate opcode (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix hard lockup due to not using save/restore spin lock (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Do not free hfi1 cdev parent structure early (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add trace message in user IOCTL handling (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove write(), use ioctl() for user cmds (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add ioctl() interface for user commands (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unused user command (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove snoop/diag interface (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove EPROM functionality from data device (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove UI char device (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove multiple device cdev (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove anti-pattern in cdev init (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix bug that blocks process on exit after port bounce (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unnecessary comment (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix sdma_event_names[] build warning (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Use kzalloc_node (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Insure QP vmalloc variants zero memory (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix an interval RB node reference count leak (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use RCU_INIT_POINTER() when NULLing (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change hfi1_init loop to preserve error returns (Alex Estrin) [1272062 1273170]
-- [infiniband] ib_pack.h: Add opcode definition for send with invalidate (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Keep SC_USER as the last send context type (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Immediately apply congestion setting MAD (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correct log message strings (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Increase CQ callback thread priority (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix hfi_rcvhdr tracepoint (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unnecessary header (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Improve performance of interval RB trees (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix potential panic with sdma drained mechanism (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix pio wait counter double increment (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove no-op QSFP reset code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correct external device configuration shift (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Wait for QSFP modules to initialize (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Ignore non-temperature warnings on a downed link (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Serialize hrtimer function calls (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix MAD port poll for active cables (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correctly report neighbor link down reason (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Use the neighbor link down reason only when valid (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Ignore link downgrade with 0 lanes (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add RSM rule for user FECN handling (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Create a routine to set a receive side mapping rule (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Move QOS decision logic into its own function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Extract RSM map table init from QOS (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Reduce kernel context pio buffer allocation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: affinity.c backport for RHEL7.3 (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change default number of user contexts (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Use global defines for upper bits in opcode (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unreachable code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix double QSFP resource acquire on cache refresh (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Guard against concurrent I2C access across all chains (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove module presence check outside pre-LNI checks (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Always turn on CDRs for low power QSFP modules (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Check P_KEY for all sent packets from user mode (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Adjust default MTU to be 10KB (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Simplify init_qpmap_table() (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correctly obtain the full service class (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix QOS rule mappings (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove invalid QOS check (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix QOS num_vl bit width (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix i2c resource reservation checks (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix sysfs file offset usage (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt, hfi1, qib: Fix memory leak (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix buffer cache races which may cause corruption (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Extract and reinsert MMU RB node on lookup (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correctly compute node interval (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Protect the interval RB tree when cleaning up (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix memory leak in user ExpRcv and SDMA (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Don't remove list entries if they are not in a list (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, ib/hfi1: Fix up UD loopback use of irq flags (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Fix adaptive pio hang (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Use kernel default llseek for ui device (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Don't attempt to free resources if initialization failed (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix missing lock/unlock in verbs drain callback (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Fix send scheduling (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Prevent unpinning of wrong pages (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix deadlock caused by locking with wrong scope (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Prevent NULL pointer deferences in caching code (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: select CRC32 (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add SDMA cache eviction algorithm (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Switch to using the pin query function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Specify mm when releasing pages (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add pin query function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Implement SDMA-side buffer caching (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Adjust last address values for intervals (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add filter callback (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove compare callback (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add MMU tracing (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Use interval RB trees (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Notify remove MMU/RB callback of calling context (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove the use of add/remove RB function pointers (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Allow remove MMU callbacks to free nodes (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Prevent NULL pointer dereference (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Allow MMU function execution in IRQ context (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Re-factor MMU notification code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Post receive for QP in ERR state (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Enable adaptive pio by default (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix adaptive pio packet corruption (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix panic in adaptive pio (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix PIO wakeup timing hole (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix ordering of trace for accuracy (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add unique trace point for pio and sdma send (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix issues with qp_stats print (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Report pid in qp_stats to aid debug (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Improve LED beaconing (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Don't call cond_resched in atomic mode when sending packets (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add adaptive cacheless verbs copy (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Handle host handshake timeout (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add ASIC flag view/clear (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Hold i2c resource across debugfs open/close (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Reduce hardware mutex timeout (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unused HFI1_DO_INIT_ASIC flag (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change thermal init to use resource reservation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change QSFP functions to use resource reservation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change SBus handling to use resource reservation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change EPROM handling to use resource reservation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add ASIC resource reservation functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add shared ASIC structure (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove ASIC block clear (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Move constant to the right in bitwise operations (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add the break statement that was removed in an earlier patch (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: file_ops: Replace ALIGN with PAGE_ALIGN (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: driver: Replace IS_ALIGNED with PAGE_ALIGNED (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Replace ALIGN with PAGE_ALIGN (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: Use min macro instead of ternary operator (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: user_sdma.c: Drop void pointer cast (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove unnecessary parantheses (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove casts of pointer to same type (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove useless return variables (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove unnecessary pci_set_drvdata() (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove unnecessary kfree (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix memory leaks (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix reporting of LED status in Get(LedInfo) and Get(PortInfo) (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Check interrupt registers mapping (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Avoid using upstream component if it is not accessible (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix header size calculation for RC/UC QPs with GRH enabled (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Check lkey_table_size value before use (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix counter read for cp (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Guard i2c access against cp (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdamvt: fix cross build with rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Disclose more information when i2c fails (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix debugfs access race (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Cleanup comments and logs in PHY code (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix xmit discard error weight (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: fix 0-day syntax error (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix header (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove else after break (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add braces on all arms of statement (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix code alignment (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix block comments (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add comment for spinlock_t definition (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove void function return statement (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use pointer instead of struct name (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove CamelCase (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix misspellings (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Split multiple assignments (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use BIT_ULL macro (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove unnecessary parentheses (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add blank link after declarations (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix logical continuations (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove blank line before close brace (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove blank line after an open brace (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix comparison to NULL (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove space after cast (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove multiple blank lines (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add spaces around binary operators (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add cq head and tail information to qpstats (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add send context sw index (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Determine actual operational VLs (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add qp to send context mapping for PIO (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi: fix CQ completion order issue (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, rdma/hfi1, ib/rdmavt: progress selection changes (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Adaptive PIO for short messages (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use u8 for vl/sl (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: fix panic in send engine (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: avoid passing pmtu (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add s_sendcontext priv field (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: remove s_rdma_mr (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove header memcpy from sdma send path (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: move txreq header code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmvt: close send engine struct holes (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add s_avail to qp_stats (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Destroy SMI AH before de-allocating the protection domain (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Remove unnecessary exported functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Remove signal_supported and comments (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Remove RVT_FLAGs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, rdmavt: Move smi_ah to qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Setup notify free/create mad agent callbacks for rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add per verb driver callback checking (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Clean up comments and add more documentation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Put QPs into error state after SL->SC table changes (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add trace and error print statements in post_one_wr (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, rdma/hfi1: add s_hlock for use in post send (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Rename several functions by adding a "qib_" prefix (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt, rdma/hfi1: use qps to dynamically scale timeout value (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Turning off LED without checking if stepping is Ax (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: actually use new RNR timer API in loopback path (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Tune for unknown channel if configuration file is absent (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fetch platform configuration data from EFI variable (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, rdma/hfi1: use setup_timer api (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: remove unused qp field (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Insure last cursor is updated prior to complete (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Insure last cursor is updated prior to complete (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add s_retry to diagnostics (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: remove duplicate timeout print (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use new RNR timer (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add unique rnr timer (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use mod_timer when appropriate (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use new timer routines (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: centralize timer routines into rc (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Removing unused struct hfi1_verbs_counters (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Adding support for hfi counters via sysfs (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Replacement of goto's for break/returns (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Change for data type of port number (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix bug that could block the process on context exit (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove unused variable nsbr (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Make EPROM check per device (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add credits for VL0 to VL7 in snoop mode (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Improve performance of user SDMA (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1, ib/core: Fix LinkDownReason define for consistency (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove modify_port and port_immutable functions (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Support query gid in rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Clean up init_cntrs() (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix snoop packet length calculation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Correct TWSI reset (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove PCIe AER diagnostic message (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Implement LED beaconing for maintenance (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Split last 8 bytes of copy to user buffer (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix fabric serdes reset by re-downloading firmware (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Report physical state changes per device instead of globally (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Properly determine error status of SDMA slots (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: correctly check for post-interrupt packets (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Improve performance of SDMA transfers (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use device file minor to identify EPROM (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Reduce syslog message severity and provide speed information (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Improve performance of TID cache look up (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix for module parameter rcvhdrcnt when it's 2097152 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Allow a fair scheduling of QPs (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix for generic I2C interface (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Change send_schedule counter to a per cpu counter (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Verbs Mem affinity support (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Allocate send ctxt on device NUMA node (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Consolidate CPU/IRQ affinity support (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove unnecessary duplicated variable (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove unused code (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix SL->SC checks (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add support for enabling/disabling PCIe ASPM (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Method to toggle "fast ECN" detection (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Correctly set RcvCtxtCtrl register (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix for 32-bit counter overflow in driver and hfi1stats (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Skip lcb init for simulation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: No firmware retry for simulation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Don't attempt to qualify or tune loopback plugs (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Make firmware failure messages warnings (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Only warn when board description is not found (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix per-VL transmit discard counts (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix missing firmware NULL dereference (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Support external device configuration requests from 8051 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Get port type from configuration file (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add active and optical cable support (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix QSFP memory read/write across 128 byte boundary (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: cleanup messages on qsfp_read() failure (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: HFI reports wrong offline disabled reason when cable removed (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove srq functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove hfi1_query_qp function (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove create and free mad agents (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt device allocation function (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Clean up register device (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove post_recv and use rdmavt version (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove destroy qp verb (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove modify queue pair from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove multicast verbs functions (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt version of post_send (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Clean up return handling (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove CQ data structures and functions from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove query_device function (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove create_qp functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove qpdev and qpn table from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt send flags and recv flags (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove user context allocation and de-alloction functions (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt pkey verbs function (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove mmap from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove ibport and use rdmavt version (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove srq from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove hfi1 MR and hfi1 specific qp type (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Implement hfi1 support for AH notification (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use address handle in rdmavt and remove from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use correct rdmavt header files after move (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add device specific info prints (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove driver specific members from hfi1 qp type (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove MR data structures from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt protection domain (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Consolidate dma ops for hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add basic rdmavt capability flags for hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Begin to use rdmavt for verbs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove modify_port and port_immutable functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Support query gid in rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove destroy queue pair code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove modify queue pair code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib_lookup_qpn and use rvt_lookup_qpn instead (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Clean up register_ib_device (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove srq functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Properly pass gfp to hw driver function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add support for query_port, modify_port and get_port_immutable (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add query gid support (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Clean up distinction between port number and index (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add Mem affinity support (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add hardware driver send work request check (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add srq functionality to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib_query_qp function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib multicast verbs functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib_post_receive and use rdmavt version (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt version of post_send (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove completion queue data structures and functions from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove create and free mad agents (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt device allocation function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add support for rvt_query_qp (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Fix copyright date (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add mad agents to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add device structure allocation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: add modify queue pair driver helpers (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Remove unused variable from Queue Pair (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add misc dev register functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add multicast functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add post receive to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add destroy qp verb (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add modify qp (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add support for tracing events (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add post send to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add completion queue functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove create qp and create qp table functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt send and receive flags (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib_query_device function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Delete QIB user context allocation and de-alloction functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qpn, qp tables and related variables from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt pkey verbs function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove mmap from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Implement qib support for AH notification (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove ibport and use rdmavt version (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Support creating qps with GFP_NOIO flag (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add support for rvt_query_device function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Allow reserving just one qpn (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Export reset_qp in rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add create queue pair functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add R and S flags for queue pairs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add IB user context allocation and de-alloction functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove srq from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use address handle in rdmavt and remove from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qp and mr functionality from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Add device specific info prints (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove driver specific members from qib qp type (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt lid defines in qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove most uses of QIB_PERMISSIVE_LID and QIB_MULTICAST_LID_BASE (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt protection domain (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove dma.c and use rdmavt version of dma functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Begin to use rdmavt for verbs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add pkey support (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add mmap related functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Initialize and teardown of qpn table (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Break rdma_vt main include header file up (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add driver notification for new AH (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add an ibport data structure to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Move SRQ data structure into rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add AH to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add common LID defines to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Do not use rvt prints which rely on driver too early (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Move memory registration into rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add the start of capability flags (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add device specific info prints (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Move driver helper functions to a common structure (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add queue pair data structure to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Move MR datastructures into rvt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add post send and recv stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add completion queue function stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add get port immutable stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add mmap stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add process MAD stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add multicast stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add SRQ stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add memory region stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add address handle stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add queue pair function stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Alloc and dealloc ucontexts (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add query gid stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add pkey query stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add query and modify port stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add query and modify device stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Macroize override checks during driver registration (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add ib core device attributes to rvt driver params list (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add protection domain to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Consolidate dma ops in rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Create module framework and handle driver registration (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: check for ARMED->ACTIVE change in recv int (Alex Estrin) [1272062 1273170]
-- [infiniband] uapi/hfi1_user: Correct comment for capability bit (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Clean up comments (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Remove unneeded variable index (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: add per SDMA engine stats to hfistats (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Change default krcvqs (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: change krcvqs mod param from byte to uint (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Move s_sde to read mostly section of hfi1_qp (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Use BIT macro (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Enable TID caching feature (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add TID entry program function body (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add TID free/clear function bodies (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add MMU notifier callback function (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add TID cache receive init and free funcs (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Convert lock to mutex (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add building blocks for TID caching (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: TID group definitions and support funcs (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Remove un-needed variable (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add definitions needed for TID cache (Alex Estrin) [1272062 1273170]
-- [infiniband] uapi/hfi1_user: Add command and event for TID caching (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add function stubs for TID caching (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove header file (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Use offset_in_page macro (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Use DIV_ROUND_UP (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Replace kmalloc and memcpy with kmemdup (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Delete NULL check before vfree (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: Use kcalloc instead of kzalloc (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix Xmit Wait calculation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add dd_dev_dbg (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: set Gen3 half-swing for integrated devices (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add PSM2 user space header to header_install (Alex Estrin) [1272062 1273170]
-
-* Mon Jun 27 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-454.el7]
-- [sound] alsa: pinctrl: export pinctrl_pm_select_*_state (Jaroslav Kysela) [1220299]
-- [sound] alsa: enable Intel SST audio (Jaroslav Kysela) [1220299]
-- [sound] alsa: gpio: move GPIOD flags outside #ifdef (Jaroslav Kysela) [1220299]
-- [sound] alsa: gpio: move varargs hack outside #ifdef GPIOLIB (Jaroslav Kysela) [1220299]
-- [sound] alsa: gpio: add flags argument to gpiod_get*() functions (Jaroslav Kysela) [1220299]
-- [sound] alsa: gpio: Add helpers for optional GPIOs (Jaroslav Kysela) [1220299]
-- [sound] alsa: regmap: Simplify the initiation of async I/O (Jaroslav Kysela) [1220299]
-- [sound] alsa: regmap: Don't generate gather writes for single register raw writes (Jaroslav Kysela) [1220299]
-- [sound] alsa: of: add functions to count number of elements in a property (Jaroslav Kysela) [1220299]
-- [sound] alsa: of: Fix overflow bug in string property parsing functions (Jaroslav Kysela) [1220299]
-- [sound] alsa: acpi / utils: Rename acpi_dev_present() (Jaroslav Kysela) [1220299]
-- [sound] alsa: hdac: Add macro for hda ext devices entry (Jaroslav Kysela) [1220299]
-- [sound] alsa: hdac: structure definition for ext_dma_params (Jaroslav Kysela) [1220299]
-- [sound] alsa: acpi: Provide acpi_dev_name accessor for struct acpi_device device name (Jaroslav Kysela) [1220299]
-- [sound] alsa: revert "asoc: intel: switch from ioremap_cache to memremap" (Jaroslav Kysela) [1220299]
-- [sound] alsa: doc: Fix uapi/sound/compress_offload.h kerneldoc comments (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: fix the struct alignment to 4 bytes (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: Cancel the optimization of compiler and fix the size of struct for all platform (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: Fix 64bit ABI incompatibility (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: add num_sample_rates in snd_codec_desc (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: update struct snd_codec_desc for sample rate (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: update comment for sample rate in snd_codec (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: change the way sample rates are sent to kernel (Jaroslav Kysela) [1220299]
-- [sound] alsa: Add params_set_format helper (Jaroslav Kysela) [1220299]
-- [sound] alsa: driver core: Unified interface for firmware node properties (Jaroslav Kysela) [1220299]
-- [sound] alsa: driver core: Unified device properties interface for platform firmware (Jaroslav Kysela) [1220299]
-- [sound] alsa: acpi: Add support for device specific properties (Jaroslav Kysela) [1220299]
-- [sound] alsa: Add params_width() helpers (Jaroslav Kysela) [1220299]
-- [sound] alsa: regmap: add regmap_parse_val api (Jaroslav Kysela) [1220299]
-- [sound] alsa: regmap: Provide asynchronous write and update bits operations (Jaroslav Kysela) [1220299]
-- [sound] alsa: devres: introduce API "devm_kmemdup (Jaroslav Kysela) [1220299]
-- [sound] alsa: devres: introduce API "devm_kstrdup" (Jaroslav Kysela) [1220299]
-- [sound] alsa: mm/util: add kstrdup_const (Jaroslav Kysela) [1220299]
-- [sound] alsa: pinctrl sleep and idle states in the core (Jaroslav Kysela) [1220299]
-- [sound] alsa: hda - add ASoC device type for hda core (Jaroslav Kysela) [1220299]
-- [sound] alsa: ALSA SoC tree cleanup - update the build files (Kconfig / Makefile) (Jaroslav Kysela) [1220299]
-- [sound] alsa: SoC tree cleanup - remove all old and unmaintaned files (Jaroslav Kysela) [1220299]
-- [sound] alsa: ALSA SoC tree sync from upstream v4.6 for intel sst (Jaroslav Kysela) [1220299]
-
-* Fri Jun 24 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-453.el7]
-- [firmware] Simplify directory creation (Stanislav Kozina) [1347186]
-- [crypto] testmgr - don't copy from source IV too much (Jerome Marchand) [1340073]
-- [crypto] testmgr - fix out of bound read in __test_aead() (Jerome Marchand) [1340073]
-- [crypto] testmgr - limit IV copy length in aead tests (Jerome Marchand) [1340073]
-- [lib] assoc_array: don't call compare_object() on a node (Jerome Marchand) [1340073]
-- [lib] keys: Fix use-after-free in assoc_array_gc() (Jerome Marchand) [1340073]
-- [virtio] virtio_pci: fix use after free on release (Jerome Marchand) [1340073]
-- [crypto] ghash-clmulni: specify context size for ghash async algorithm (Jerome Marchand) [1340073]
-- [mm] completely remove dumping per-cpu lists from show_mem() (Larry Woodman) [1285530]
-- [mm] hide per-cpu lists in output of show_mem() (Larry Woodman) [1285530]
-- [scsi] storvsc: Filter out storvsc messages CD-ROM medium not present (Cathy Avery) [1338687]
-- [scsi] storvsc: add logging for error/warning messages (Cathy Avery) [1338687]
-- [tools] perf: Add sample_reg_mask to include all perf_regs (Gustavo Duarte) [1289663]
-- [tools] perf: Map the ID values with register names (Gustavo Duarte) [1289663]
-- [powerpc] perf: Add support for sampling interrupt register state (Gustavo Duarte) [1289663]
-- [powerpc] perf: Assign an id to each powerpc register (Gustavo Duarte) [1289663]
-- [tools] perf kvm/{x86, s390}: Remove const from kvm_events_tp (Gustavo Duarte) [1223849]
-- [tools] perf kvm/powerpc: Add support for HCALL reasons (Gustavo Duarte) [1223849]
-- [tools] perf kvm/{x86, s390}: Remove dependency on uapi/kvm_perf.h (Gustavo Duarte) [1223849]
-- [tools] perf kvm/powerpc: Port perf kvm stat to powerpc (Gustavo Duarte) [1223849]
-- [pinctrl] protect pinctrl_list add (Prarit Bhargava) [1349296]
-- [netdrv] enic: set netdev->vlan_features (Stefan Assmann) [1276104]
-- [netdrv] cisco: enic: Update logging macros and uses (Stefan Assmann) [1276104]
-- [netdrv] enic: Update driver to use __dev_uc/mc_sync/unsync calls (Stefan Assmann) [1276104]
-- [netdrv] qede: use proper notifier registration function (Ivan Vecera) [1348286]
-
-* Fri Jun 24 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-452.el7]
-- [include] ib/core: Make all casts in ib_device_cap_flags enum consistent (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Fix bit curruption in ib_device_cap_flags structure (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Fix removal of default GID cache entry (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Fix query port failure in RoCE (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: Fix device managed flow steering support test (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/cm: Fix a recently introduced locking bug (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Fix blue flame quota logic (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use ndo_stop explicitly at shutdown flow (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Fix root flow table update (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Fix masking of reserved bits in XRCD number (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Fix the size of modify QP mailbox (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix alternate path code (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Fix pkey_index length in the QP path record (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix entries check in mlx5_ib_resize_cq (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix entries checks in mlx5_ib_create_cq (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Check BlueFlame HCA support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix returned values of query QP (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Limit query HCA clock (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix FW version diaplay in sysfs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Return PORT_ERR in Active to Initializing tranisition (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Set flow steering capability bit (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Do not require CAP_NET_ADMIN for packet sniffing (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: get rid of private net_device_stats (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: get rid of ret_stats (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: clear some TX ring stats in mlx4_en_clear_stats() (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: fix tx_dropped bug (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fire the CQ completion handler from tasklet (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Use tasklet for user-space CQ completion events (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: Fix unaligned access in send_reply_to_slave (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_core: Fix access to uninitialized index (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Report Scatter FCS device capability when supported (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Add Scatter FCS support for Raw Packet QP (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add Scatter FCS create flag (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add Raw Scatter FCS device capability (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add extended device capability flags (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Add UARs write-combining and non-cached mapping (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Allow mapping the free running counter on PROT_EXEC (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: Use list_for_each_entry_safe (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: trivial fix of spelling mistake on "argument" (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx4: Avoid wrong virtual mappings (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: avoid stack overflow in mlx5e_open_channels (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Fix typos in printk (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Fix checksum handling for non-stripped vlan packets (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add ethtool support for rxvlan-offload (vlan stripping) (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add ethtool support for dump module EEPROM (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add ethtool support for interface identify (LED blinking) (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add support for RXALL netdev feature (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Improve set features ndo resiliency (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add link down events counter (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add per priority group to PPort counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Rename VPort counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Statistics handling refactoring (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Report additional error statistics in get stats ndo (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add ethtool counter for RX buffer allocation failures (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Delay skb->data access (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Remove redundant barrier (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use napi_alloc_skb for RX SKB allocations (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add fragmented memory support for RX multi packet WQE (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Added ICO SQs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Support RX multi-packet WQE (Striding RQ) (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use function pointers for RX data path handling (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use only close NUMA node for default RSS (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Allocate set of queue counters per netdev (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Introduce device queue counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Fix typos in printk (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Update mlx5_ifc hardware features (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Fix mlx5 ifc cmd_hca_cap bad offsets (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: make VXLAN support conditional (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use workqueue for vxlan ops (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Implement a mlx5e workqueue (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Unmap only the relevant IO memory mapping (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Expose correct max_sge_rd limit (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: fix spurious timestamping callbacks (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Add pci shutdown callback (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Remove static from local variable (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Use vport MTU rather than physical port MTU (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Fix minimum MTU (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Device's mtu field is u16 and not int (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Add ConnectX-5 to list of supported devices (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Fix MLX5E_100BASE_T define (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Fix soft lockup in steering error flow (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Fix oops in ib_cache_gid_set_default_gid (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Split SW RX dropped counter per RX ring (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_core: Don't allow to VF change global pause settings (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx4_core: Avoid repeated calls to pci enable/disable (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_core: Implement pci_resume callback (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: do batched put_page using atomic_sub (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: allocate non 0-order pages for RX ring with __GFP_NOMEMALLOC (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: fix VFs callback function prototypes (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/ipoib: Allow mcast packets from other VFs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Implement callbacks for manipulating VFs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Implement modify HCA vport command (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Add VF param when querying vport counter (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/ipoib: Add ndo operations for configuring VFs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add interfaces to control VF attributes (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Support accessing SA in virtualized environment (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add subnet prefix to port info (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix decision on using MAD_IFC (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] IB/{core, ulp} Support above 32 possible device capability flags (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Replace setting the zero values in ib_uverbs_ex_query_device (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Introduce offload arithmetic hardware capabilities (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Refactor device capability function (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Fix caching ATOMIC endian mode capability (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: remove unused array zero_gid[] (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_core: Fix backward compatibility on VFs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: add missing braces in verify_qp_parameters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: use napi_consume_skb API to get bulk free operations (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: use napi_consume_skb API to get bulk free operations (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add a new priority for kernel flow tables (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Relax ndo_setup_tc handle restriction (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Set flow steering dest only for forward rules (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Add support for don't trap rules (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Introduce forward to next priority action (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Create anchor of last flow table (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] mlx5: Add arbitrary sg list support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add arbitrary sg_list support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Expose correct max_fast_reg_page_list_len (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Make coding style more consistent (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Convert UMR CQ to new CQ API (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Documentation fix in the MAD header file (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: trivial prink cleanup (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Replace memset with eth_zero_addr (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Modify conditional on ucontext existence (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: ib/core: Allow legacy verbs through extended interfaces (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Avoid duplicate code (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Fix global UAR mapping (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Make command timeout way shorter (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Set drop RQ's necessary parameters only (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Move common case counters within sq_stats struct (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Changed naming convention of tx queues in ethtool stats (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Placement changed for carrier state updates (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Replace async events spinlock with synchronize_irq() (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: Implement port type setting via devlink interface (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx4: Implement devlink interface (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Add memory windows allocation support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add vendor's specific data to alloc mw (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Refactor mlx5_core_mr to mkey (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Added support for re-registration of MRs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Refactoring register MR code (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/cma: Print warning on different inner and header P_Keys (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Eliminate GSI RX QP's send buffers (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Pick the right GSI transmission QP for sending (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Reorder GSI completions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Generate completions in software (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Create GSI transmission QPs when P_Key table is changed (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Create multiple transmission GSI QPs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Add GSI QP wrapper (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Modify QP debugging prints (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Add support for setting source QP number (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Add support for CSUM in RX flow (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Implement UD QP offloads for IPoIB in the TX flow (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Define interface bits for IPoIB offloads (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Modify MAD reading counters method to use counter registers (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Add helper function to read IB error counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Add helper function to read virtual port counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx4: Add support for the don't trap rule (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add don't trap flag to flow creation (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add TX inner packet counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add TX stateless offloads for tunneling (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add netdev support for VXLAN tunneling (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Protect en header file from redefinitions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Move to checksum complete (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Wake On LAN support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Implement DCBNL IEEE max rate (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Support DCBNL IEEE PFC (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Support DCBNL IEEE ETS (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Introduce physical port TC/prio access functions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Introduce physical port PFC access functions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Introduce a new header file for physical port functions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/cma: allocating too much memory in make_cma_ports() (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: Optimize do_slave_init (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: mlx4_en_set_tx_maxrate() can be static (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Add tx queue maxrate support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Add QCN parameters and statistics handling (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx4_core: Add basic elements for QCN (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv]  mlx4: convert to timecounter adjtime (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Re-add MLX5_DEV_CAP_FLAG_ON_DMND_PG flag (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Remove unused dev cap enum fields (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Use the new tx_copybreak to set inline threshold (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Convert the normal skb free path to dev_consume_skb_any() (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: fix errors in printk (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-
-* Thu Jun 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-451.el7]
-- [vhost] vhost_net: basic polling support (Jason Wang) [1345714]
-- [vhost] introduce vhost_vq_avail_empty() (Jason Wang) [1345714]
-- [vhost] introduce vhost_has_work() (Jason Wang) [1345714]
-- [target] target/stat: print full t10_wwn.model buffer (Mike Christie) [1196117]
-- [target] iscsi-target: Add tpg_enabled_sendtargets for disabled discovery (Mike Christie) [1196117]
-- [target] check DPO/FUA usage for COMPARE AND WRITE (Mike Christie) [1196117]
-- [tools] tools/power/turbostat: Add Denverton RAPL support (Steve Best) [1273770]
-- [tools] tools/power/turbostat: Add Denverton support (Steve Best) [1273770]
-- [tools] tools/power turbostat: decode BXT TSC frequency via CPUID (Steve Best) [1273770]
-- [tools] tools/power turbostat: initial BXT support (Steve Best) [1273770]
-- [tools] tools/power/turbostat: split core MSR support into status + limit (Steve Best) [1273770]
-- [documentation] Fix DocBook build with relative $(srctree) (Stanislav Kozina) [1347186]
-- [makefile] tools: Support relative directory path for 'O=' (Stanislav Kozina) [1347186]
-- [tools] tools build: Fix Makefile(s) to properly invoke tools build (Stanislav Kozina) [1347186]
-- [makefile] kbuild: Use relative path when building in a subdir of the source tree (Stanislav Kozina) [1347186]
-- [makefile] kbuild: Use relative path when building in the source tree (Stanislav Kozina) [1347186]
-- [makefile] kbuild: Use relative path for $(objtree) (Stanislav Kozina) [1347186]
-- [pci] aer: Clear error status registers during enumeration and restore (Prarit Bhargava) [1347459]
-- [pci] hv: Handle all pending messages in hv_pci_onchannelcallback() (Vitaly Kuznetsov) [1341657]
-- [pci] hv: Don't leak buffer in hv_pci_onchannelcallback() (Vitaly Kuznetsov) [1341657]
-- [x86] xen: don't reset vcpu_info on a cancelled suspend (Vitaly Kuznetsov) [1141249 1339592]
-- [x86] xen: Fix USB interaction issues when resuming (Vitaly Kuznetsov) [1141249 1339592]
-- [x86] xen: Always freeze/thaw processes when suspend/resuming (Vitaly Kuznetsov) [1141249 1339592]
-- [x86] xen: resume timer irqs early (Vitaly Kuznetsov) [1141249 1339592]
-- [x86] xen: remove deprecated IRQF_DISABLED (Vitaly Kuznetsov) [1141249 1339592]
-- [hid] hyperv: match wait_for_completion_timeout return type (Vitaly Kuznetsov) [1347597]
-- [hid] hyperv: fix _raw_request() prototype (Vitaly Kuznetsov) [1347597]
-- [hid] hyperv: Implement a stub raw_request() entry point (Vitaly Kuznetsov) [1347597]
-
-* Wed Jun 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-450.el7]
-- [md] dm raid: fix failed takeover_reshapes by keeping raid set frozen (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: support to change bitmap region size (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: update Documentation about reshaping_takeover_additonal RAID types (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add reshaping support to the target (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add prerequisite functions and definitions for reshaping (Mike Snitzer) [1191641 1191955]
-- [md] raid10: add prerequisite to run underneath dm-raid (Mike Snitzer) [1191641 1191955]
-- [md] raid5: add prerequisite to run underneath dm-raid (Mike Snitzer) [1191641 1191955]
-- [md] raid5: don't let shrink_slab shrink too far (Mike Snitzer) [1191641 1191955]
-- [md] raid5: avoid races when changing cache size (Mike Snitzer) [1191641 1191955]
-- [md] raid5: ignore released_stripes check (Mike Snitzer) [1191641 1191955]
-- [md] raid5: allow the stripe_cache to grow and shrink (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: inverse check for flags from invalid to valid flags (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: various code cleanups (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: rename functions that alloc and free struct raid_set (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: remove all the bitops wrappers (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: rename _in_range to __within_range (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add missing "dm-raid0" module alias (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: rename _argname_by_flag to dm_raid_arg_name_by_flag (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: bump to v1.9.0 and make the extended SB feature flag reflect it (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: remove ti_error_* wrappers (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: tabify appropriate whitespace (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: enhance status interface and fixup takeover_raid0 (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add raid level takeover support (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: enhance super_sync() to support new superblock members (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add new reshaping_raid10 format table line options to parameter parser (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: introduce extended superblock and new raid types to support takeover_reshaping (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: use rt_is_raid*() in all appropriate checks (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: more use of flag testing wrappers (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: check constructor arguments for invalid raid level_argument combinations (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: cleanup _ provide infrastructure (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: use dm_arg_set API in constructor (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: rename variable 'ret' to 'r' to conform to other dm code (Mike Snitzer) [1191641 1191955]
-- [netdrv] brcmfmac: add eth_type_trans back for PCIe full dongle (Stanislaw Gruszka) [1250889 1298446 1299383]
-- [netdrv] Remove old rtl818x directory (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport rtl818x driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] configs: add new rtlwifi drivers (Stanislaw Gruszka) [1299383 1314513]
-- [netdrv] Remove old rtlwifi directory (Stanislaw Gruszka) [1299383 1314513]
-- [netdrv] Backport rtlwifi drivers from linux-4.7-rc1 (Stanislaw Gruszka) [1299383 1314513]
-- [netdrv] Remove old mwifiex directory and mwl8k.c file (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport marvell drivers to code from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] configs: add new brcmfmac_pcie driver (Stanislaw Gruszka) [1250889 1298446 1299383]
-- [netdrv] Remove old brcm80211 directory (Stanislaw Gruszka) [1250889 1298446 1299383]
-- [netdrv] Backport brcm80211 drivers to code from linux-4.7-rc1 (Stanislaw Gruszka) [1250889 1298446 1299383]
-- [netdrv] Backport BCMA bus driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport SSB bus driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Remove old rt2x00 directory (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport rt2x00 driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport wil6210 driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport carl9170 driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] configs: add new ath10k driver (Stanislaw Gruszka) [1257698 1298484 1299383]
-- [netdrv] Backport ath10k driver from linux-4.7-rc1 (Stanislaw Gruszka) [1257698 1298484 1299383]
-- [netdrv] Backport ath9k driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Remove old iwlegacy directory (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport iwlegacy from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Remove old iwlwifi directory (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport iwlwifi driver from linux-4.7-rc1 (Stanislaw Gruszka) [1266685 1298113 1299383 1315535 1315537]
-- [netdrv] Backport mac80211 from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport wireless core from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] gpio: drop retval check enforcing from gpiochip_remove() (Stanislaw Gruszka) [1299383]
-- [kernel] locking: osq: No need for load/acquire when acquire-polling (Lauro Ramos Venancio) [1342653]
-- [powerpc] Wire up sys_memfd_create() (Adrian Reber) [1348029]
-- [powercap] rapl: add support for Denverton (Steve Best) [1273778]
-- [powercap] rapl: Add Skylake Server model number (Steve Best) [1273778]
-- [powercap] rapl: Reorder CPU detection table (Steve Best) [1273778]
-- [powercap] rapl: Use Intel model macros intead of open-coding (Steve Best) [1273778]
-- [x86] cpu/intel: Introduce macros for Intel family numbers (Steve Best) [1273778]
-
-* Wed Jun 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-449.el7]
-- [of] handle NULL node in next_child iterators (Torez Smith) [1348510]
-- [of] Create unlocked version of for_each_child_of_node() (Torez Smith) [1348510]
-- [scsi] vpd pages are mandatory for SPC-2 (Ewan Milne) [1347292]
-- [drm] revert "virtio: make find_vqs() checkpatch.pl-friendly" (Rob Clark) [1295900]
-- [drm] fix virtio backport (Rob Clark) [1295900]
-- [mm] hugetlb: use EOPNOTSUPP in hugetlb sysctl handlers (Jan Stancek) [1346873]
-- [vfio] pci: Allow VPD short read (Auger Eric) [1341417]
-- [kernel] rh_taint: introduce mark_hardware_deprecated() (Maurizio Lombardi) [1344392]
-- [gpu] drm/prime: fix error path deadlock fail (Rob Clark) [1335461]
-- [idle] intel: add denverton (Steve Best) [1273777]
-- [x86] Work around MPX erratum SKD046 (Rui Wang) [1340625]
-- [cpufreq] intel_pstate: Enable HWP by default (David Arcari) [1258085]
-- [security] keys: potential uninitialized variable (David Howells) [1341352] {CVE-2016-4470}
-- [lib] keys: Fix ASN.1 indefinite length object parsing (David Howells) [1308815] {CVE-2016-0758}
-
-* Tue Jun 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-448.el7]
-- [fs] overlayfs: Warn instead of error if upper filesystem does not support d_type (Vivek Goyal) [1344057]
-- [fs] gfs2: don't set rgrp gl_object until it's inserted into rgrp tree (Robert S Peterson) [1344363]
-- [fs] xfs: disallow rw remount on fs with unknown ro-compat features (Eric Sandeen) [1321747]
-- [fs] dcache: d_walk/dentry_free race (Alexander Viro) [1344076]
-- [fs] bio: Need to free integrity payload if the split bio gets memory by itself (Xiao Ni) [1276454]
-- [fs] fanotify: fix notification of groups with inode & mount marks (Miklos Szeredi) [1308393]
-- [fs] libceph: use s instead of pE in dout()s (Ilya Dryomov) [1344930]
-- [fs] libceph: put request only if it's done in handle_reply() (Ilya Dryomov) [1344930]
-- [fs] libceph: change ceph_osdmap_flag() to take osdc (Ilya Dryomov) [1344930]
-- [fs] ceph: tolerate bad i_size for symlink inode (Ilya Dryomov) [1344930]
-- [fs] ceph: fix inode reference leak (Ilya Dryomov) [1344930]
-- [fs] ceph: multiple filesystem support (Ilya Dryomov) [1344930]
-- [fs] libceph: support for subscribing to "mdsmap.<id>" maps (Ilya Dryomov) [1344930]
-- [fs] libceph: replace ceph_monc_request_next_osdmap() (Ilya Dryomov) [1344930]
-- [fs] libceph: take osdc->lock in osdmap_show() and dump flags in hex (Ilya Dryomov) [1344930]
-- [fs] libceph: pool deletion detection (Ilya Dryomov) [1344930]
-- [fs] libceph: async MON client generic requests (Ilya Dryomov) [1344930]
-- [fs] libceph: support for checking on status of watch (Ilya Dryomov) [1344930]
-- [fs] libceph: support for sending notifies (Ilya Dryomov) [1344930]
-- [fs] libceph, rbd: ceph_osd_linger_request, watch/notify v2 (Ilya Dryomov) [1344930]
-- [fs] rbd: rbd_dev_header_unwatch_sync() variant (Ilya Dryomov) [1344930]
-- [fs] libceph: wait_request_timeout() (Ilya Dryomov) [1344930]
-- [fs] libceph: request_init() and request_release_checks() (Ilya Dryomov) [1344930]
-- [fs] libceph: a major OSD client update (Ilya Dryomov) [1344930]
-- [fs] libceph: protect osdc->osd_lru list with a spinlock (Ilya Dryomov) [1344930]
-- [fs] libceph: allocate ceph_osd with GFP_NOFAIL (Ilya Dryomov) [1344930]
-- [fs] libceph: osd_init() and osd_cleanup() (Ilya Dryomov) [1344930]
-- [fs] libceph: handle_one_map() (Ilya Dryomov) [1344930]
-- [fs] libceph: allocate dummy osdmap in ceph_osdc_init() (Ilya Dryomov) [1344930]
-- [fs] libceph: schedule tick from ceph_osdc_init() (Ilya Dryomov) [1344930]
-- [fs] libceph: move schedule_delayed_work() in ceph_osdc_init() (Ilya Dryomov) [1344930]
-- [fs] libceph: redo callbacks and factor out MOSDOpReply decoding (Ilya Dryomov) [1344930]
-- [fs] libceph: drop msg argument from ceph_osdc_callback_t (Ilya Dryomov) [1344930]
-- [fs] libceph: switch to calc_target(), part 2 (Ilya Dryomov) [1344930]
-- [fs] libceph: switch to calc_target(), part 1 (Ilya Dryomov) [1344930]
-- [fs] libceph: introduce ceph_osd_request_target, calc_target() (Ilya Dryomov) [1344930]
-- [fs] libceph: pi->min_size, pi->last_force_request_resend (Ilya Dryomov) [1344930]
-- [fs] libceph: make pgid_cmp() global (Ilya Dryomov) [1344930]
-- [fs] libceph: rename ceph_calc_pg_primary() (Ilya Dryomov) [1344930]
-- [fs] libceph: ceph_osds, ceph_pg_to_up_acting_osds() (Ilya Dryomov) [1344930]
-- [fs] libceph: rename ceph_oloc_oid_to_pg() (Ilya Dryomov) [1344930]
-- [fs] libceph: fix ceph_eversion encoding (Ilya Dryomov) [1344930]
-- [fs] libceph: DEFINE_RB_FUNCS macro (Ilya Dryomov) [1344930]
-- [fs] libceph: open-code remove_{all,old}_osds() (Ilya Dryomov) [1344930]
-- [fs] libceph: nuke unused fields and functions (Ilya Dryomov) [1344930]
-- [fs] rbd: use header_oid instead of header_name (Ilya Dryomov) [1344930]
-- [fs] libceph: variable-sized ceph_object_id (Ilya Dryomov) [1344930]
-- [fs] libceph: change how osd_op_reply message size is calculated (Ilya Dryomov) [1344930]
-- [fs] libceph: move message allocation out of ceph_osdc_alloc_request() (Ilya Dryomov) [1344930]
-- [fs] libceph: grab snapc in ceph_osdc_alloc_request() (Ilya Dryomov) [1344930]
-- [fs] libceph: make ceph_osdc_put_request() accept NULL (Ilya Dryomov) [1344930]
-- [fs] rbd: get/put img_request in rbd_img_request_submit() (Ilya Dryomov) [1344930]
-- [fs] rbd: report unsupported features to syslog (Ilya Dryomov) [1344930]
-- [fs] rbd: fix rbd map vs notify races (Ilya Dryomov) [1344930]
-- [fs] libceph: make authorizer destruction independent of ceph_auth_client (Ilya Dryomov) [1344930]
-- [fs] rbd: use GFP_NOIO consistently for request allocations (Ilya Dryomov) [1344930]
-- [fs] libceph: use KMEM_CACHE macro (Ilya Dryomov) [1344930]
-- [fs] ceph: use kmem_cache_zalloc (Ilya Dryomov) [1344930]
-- [fs] rbd: use KMEM_CACHE macro (Ilya Dryomov) [1344930]
-- [fs] ceph: use lookup request to revalidate dentry (Ilya Dryomov) [1344930]
-- [fs] ceph: kill ceph_get_dentry_parent_inode() (Ilya Dryomov) [1344930]
-- [fs] ceph: fix security xattr deadlock (Ilya Dryomov) [1344930]
-- [fs] ceph: don't request vxattrs from MDS (Ilya Dryomov) [1344930]
-- [fs] configs: enable ceph filesystem ACL support (Ilya Dryomov) [1344930]
-- [fs] ceph: add acl, noacl options for cephfs mount (Ilya Dryomov) [1344930]
-- [fs] ceph: include the initial ACL in create/mkdir/mknod MDS requests (Ilya Dryomov) [1344930]
-- [fs] ceph: add missing init_acl() for mkdir() and atomic_open() (Ilya Dryomov) [1344930]
-- [fs] ceph: remove useless ACL check (Ilya Dryomov) [1344930]
-- [fs] ceph: make ceph_forget_all_cached_acls() static inline (Ilya Dryomov) [1344930]
-- [fs] ceph: fix ceph_set_acl() (Ilya Dryomov) [1344930]
-- [fs] ceph: Remove get/set acl on symlinks (Ilya Dryomov) [1344930]
-- [fs] ceph: add acl for cephfs (Ilya Dryomov) [1344930]
-- [fs] ceph: fix mounting same fs multiple times (Ilya Dryomov) [1344930]
-- [fs] ceph: remove unnecessary NULL check (Ilya Dryomov) [1344930]
-- [fs] ceph: avoid updating directory inode's i_size accidentally (Ilya Dryomov) [1344930]
-- [fs] ceph: fix race during filling readdir cache (Ilya Dryomov) [1344930]
-- [fs] libceph: use sizeof_footer() more (Ilya Dryomov) [1344930]
-- [fs] ceph: kill ceph_empty_snapc (Ilya Dryomov) [1344930]
-- [fs] ceph: fix a wrong comparison (Ilya Dryomov) [1344930]
-- [fs] ceph: replace CURRENT_TIME by current_fs_time() (Ilya Dryomov) [1344930]
-- [fs] ceph: scattered page writeback (Ilya Dryomov) [1344930]
-- [fs] libceph: add helper that duplicates last extent operation (Ilya Dryomov) [1344930]
-- [fs] libceph: enable large, variable-sized OSD requests (Ilya Dryomov) [1344930]
-- [fs] libceph: osdc->req_mempool should be backed by a slab pool (Ilya Dryomov) [1344930]
-- [fs] libceph: make r_request msg_size calculation clearer (Ilya Dryomov) [1344930]
-- [fs] libceph: move r_reply_op_{len, result} into struct ceph_osd_req_op (Ilya Dryomov) [1344930]
-- [fs] libceph: rename ceph_osd_req_op::payload_len to indata_len (Ilya Dryomov) [1344930]
-- [fs] ceph: remove useless BUG_ON (Ilya Dryomov) [1344930]
-- [fs] ceph: don't enable rbytes mount option by default (Ilya Dryomov) [1344930]
-- [fs] ceph: encode ctime in cap message (Ilya Dryomov) [1344930]
-- [fs] libceph: behave in mon_fault() if cur_mon < 0 (Ilya Dryomov) [1344930]
-- [fs] libceph: reschedule tick in mon_fault() (Ilya Dryomov) [1344930]
-- [fs] libceph: introduce and switch to reopen_session() (Ilya Dryomov) [1344930]
-- [fs] libceph: monc hunt rate is 3s with backoff up to 30s (Ilya Dryomov) [1344930]
-- [fs] libceph: monc ping rate is 10s (Ilya Dryomov) [1344930]
-- [fs] libceph: pick a different monitor when reconnecting (Ilya Dryomov) [1344930]
-- [fs] libceph: revamp subs code, switch to SUBSCRIBE2 protocol (Ilya Dryomov) [1344930]
-- [fs] libceph: decouple hunting and subs management (Ilya Dryomov) [1344930]
-- [fs] libceph: move debugfs initialization into __ceph_open_session() (Ilya Dryomov) [1344930]
-- [fs] ceph: initial CEPH_FEATURE_FS_FILE_LAYOUT_V2 support (Ilya Dryomov) [1344930]
-- [fs] libceph: don't spam dmesg with stray reply warnings (Ilya Dryomov) [1344930]
-- [fs] libceph: use the right footer size when skipping a message (Ilya Dryomov) [1344930]
-- [fs] libceph: don't bail early from try_read() when skipping a message (Ilya Dryomov) [1344930]
-- [fs] libceph: MOSDOpReply v7 encoding (Ilya Dryomov) [1344930]
-- [fs] libceph: advertise support for TUNABLES5 (Ilya Dryomov) [1344930]
-- [fs] crush: decode and initialize chooseleaf_stable (Ilya Dryomov) [1344930]
-- [fs] crush: add chooseleaf_stable tunable (Ilya Dryomov) [1344930]
-- [fs] crush: ensure take bucket value is valid (Ilya Dryomov) [1344930]
-- [fs] crush: ensure bucket id is valid before indexing buckets array (Ilya Dryomov) [1344930]
-- [fs] ceph: fix snap context leak in error path (Ilya Dryomov) [1344930]
-- [fs] ceph: checking for IS_ERR instead of NULL (Ilya Dryomov) [1344930]
-- [fs] libceph: remove outdated comment (Ilya Dryomov) [1344930]
-- [fs] libceph: kill off ceph_x_ticket_handler::validity (Ilya Dryomov) [1344930]
-- [fs] libceph: invalidate AUTH in addition to a service ticket (Ilya Dryomov) [1344930]
-- [fs] libceph: fix authorizer invalidation, take 2 (Ilya Dryomov) [1344930]
-- [fs] libceph: clear messenger auth_retry flag if we fault (Ilya Dryomov) [1344930]
-- [fs] libceph: fix ceph_msg_revoke() (Ilya Dryomov) [1344930]
-- [fs] libceph: use list_for_each_entry_safe (Ilya Dryomov) [1344930]
-- [fs] ceph: use i_size_{read, write} to get/set i_size (Ilya Dryomov) [1344930]
-- [fs] ceph: re-send AIO write request when getting -EOLDSNAP error (Ilya Dryomov) [1344930]
-- [fs] ceph: Asynchronous IO support (Ilya Dryomov) [1344930]
-- [fs] ceph: Avoid to propagate the invalid page point (Ilya Dryomov) [1344930]
-- [fs] ceph: fix double page_unlock() in page_mkwrite() (Ilya Dryomov) [1344930]
-- [fs] rbd: delete an unnecessary check before rbd_dev_destroy() (Ilya Dryomov) [1344930]
-- [fs] libceph: use list_next_entry instead of list_entry_next (Ilya Dryomov) [1344930]
-- [fs] ceph: ceph_frag_contains_value can be boolean (Ilya Dryomov) [1344930]
-- [fs] ceph: remove unused functions in ceph_frag.h (Ilya Dryomov) [1344930]
-- [fs] rbd: don't put snap_context twice in rbd_queue_workfn() (Ilya Dryomov) [1344930]
-- [fs] libceph: clear msg->con in ceph_msg_release() only (Ilya Dryomov) [1344930]
-- [fs] libceph: add nocephx_sign_messages option (Ilya Dryomov) [1344930]
-- [fs] libceph: stop duplicating client fields in messenger (Ilya Dryomov) [1344930]
-- [fs] libceph: drop authorizer check from cephx msg signing routines (Ilya Dryomov) [1344930]
-- [fs] libceph: msg signing callouts don't need con argument (Ilya Dryomov) [1344930]
-- [fs] libceph: evaluate osd_req_op_data() arguments only once (Ilya Dryomov) [1344930]
-- [fs] libceph: introduce ceph_x_authorizer_cleanup() (Ilya Dryomov) [1344930]
-- [fs] rbd: remove duplicate calls to rbd_dev_mapping_clear() (Ilya Dryomov) [1344930]
-- [fs] rbd: set device_type::release instead of device::release (Ilya Dryomov) [1344930]
-- [fs] rbd: don't free rbd_dev outside of the release callback (Ilya Dryomov) [1344930]
-- [fs] rbd: return -ENOMEM instead of pool id if rbd_dev_create() fails (Ilya Dryomov) [1344930]
-- [fs] libceph: use local variable cursor instead of &msg->cursor (Ilya Dryomov) [1344930]
-- [fs] libceph: remove con argument in handle_reply() (Ilya Dryomov) [1344930]
-- [fs] ceph: combine as many iovec as possile into one OSD request (Ilya Dryomov) [1344930]
-- [fs] rbd: drop null test before destroy functions (Ilya Dryomov) [1344930]
-- [fs] rbd: require stable pages if message data CRCs are enabled (Ilya Dryomov) [1344930]
-- [fs] rbd: prevent kernel stack blow up on rbd map (Ilya Dryomov) [1344930]
-- [fs] rbd: don't leak parent_spec in rbd_dev_probe_parent() (Ilya Dryomov) [1344930]
-- [fs] rbd: use writefull op for object size writes (Ilya Dryomov) [1344930]
-- [fs] rbd: set max_sectors explicitly (Ilya Dryomov) [1344930]
-- [fs] libceph: advertise support for keepalive2 (Ilya Dryomov) [1344930]
-- [fs] libceph: don't access invalid memory in keepalive2 path (Ilya Dryomov) [1344930]
-- [fs] libceph: check data_len in ->alloc_msg() (Ilya Dryomov) [1344930]
-- [fs] libceph: use keepalive2 to verify the mon session is alive (Ilya Dryomov) [1344930]
-- [fs] rbd: plug rbd_dev->header.object_prefix memory leak (Ilya Dryomov) [1344930]
-- [fs] rbd: fix double free on rbd_dev->header_name (Ilya Dryomov) [1344930]
-- [fs] libceph: set 'exists' flag for newly up osd (Ilya Dryomov) [1344930]
-- [fs] libceph: rename con_work() to ceph_con_workfn() (Ilya Dryomov) [1344930]
-- [fs] libceph: Avoid holding the zero page on ceph_msgr_slab_init errors (Ilya Dryomov) [1344930]
-- [fs] libceph: remove the unused macro AES_KEY_SIZE (Ilya Dryomov) [1344930]
-- [fs] rbd: fix copyup completion race (Ilya Dryomov) [1344930]
-- [fs] libceph: treat sockaddr_storage with uninitialized family as blank (Ilya Dryomov) [1344930]
-- [fs] libceph: enable ceph in a non-default network namespace (Ilya Dryomov) [1344930]
-- [fs] rbd: use GFP_NOIO in rbd_obj_request_create() (Ilya Dryomov) [1344930]
-- [fs] crush: fix a bug in tree bucket decode (Ilya Dryomov) [1344930]
-- [fs] libceph: Fix ceph_tcp_sendpage()'s more boolean usage (Ilya Dryomov) [1344930]
-- [fs] libceph: Remove spurious kunmap() of the zero page (Ilya Dryomov) [1344930]
-- [fs] rbd: queue_depth map option (Ilya Dryomov) [1344930]
-- [fs] rbd: store rbd_options in rbd_device (Ilya Dryomov) [1344930]
-- [fs] rbd: terminate rbd_opts_tokens with Opt_err (Ilya Dryomov) [1344930]
-- [fs] rbd: bump queue_max_segments (Ilya Dryomov) [1344930]
-- [fs] ceph: rework dcache readdir (Ilya Dryomov) [1344930]
-- [fs] crush: sync up with userspace (Ilya Dryomov) [1344930]
-- [fs] crush: fix crash from invalid 'take' argument (Ilya Dryomov) [1344930]
-- [fs] libceph: fix wrong name "Ceph filesystem for Linux" (Ilya Dryomov) [1344930]
-- [fs] rbd: timeout watch teardown on unmap with mount_timeout (Ilya Dryomov) [1344930]
-- [fs] libceph: a couple tweaks for wait loops (Ilya Dryomov) [1344930]
-- [fs] libceph: nuke time_sub() (Ilya Dryomov) [1344930]
-- [fs] libceph: properly release STAT request's raw_data_in (Ilya Dryomov) [1344930]
-- [fs] Revert "libceph: clear r_req_lru_item in __unregister_linger_request()" (Ilya Dryomov) [1344930]
-- [fs] libceph: request a new osdmap if lingering request maps to no osd (Ilya Dryomov) [1344930]
-- [fs] ovl: Do d_type check only if work dir creation was successful (Miklos Szeredi) [1341795]
-- [fs] ovl: update documentation (Miklos Szeredi) [1341795]
-- [fs] ovl: override creds with the ones from the superblock mounter (Miklos Szeredi) [1341795]
-- [fs] ovl: ignore permissions on underlying lookup (Miklos Szeredi) [1341795]
-- [fs] vfs: add lookup_hash() helper (Miklos Szeredi) [1341795]
-- [fs] vfs: rename: check backing inode being equal (Miklos Szeredi) [1341795]
-- [fs] vfs: add vfs_select_inode() helper (Miklos Szeredi) [1341795]
-- [fs] ovl: cleanup unused var in rename2 (Miklos Szeredi) [1341795]
-- [fs] ovl: rename is_merge to is_lowest (Miklos Szeredi) [1341795]
-- [fs] ovl: verify upper dentry before unlink and rename (Miklos Szeredi) [1341795]
-- [fs] ovl: copy new uid/gid into overlayfs runtime inode (Miklos Szeredi) [1341795]
-- [fs] ovl: ignore lower entries when checking purity of non-directory entries (Miklos Szeredi) [1341795]
-- [fs] ovl: fix getcwd() failure after unsuccessful rmdir (Miklos Szeredi) [1341795]
-- [fs] ovl: fix working on distributed fs as lower layer (Miklos Szeredi) [1341795]
-- [fs] ovl: Remove email address from Documentation/filesystems/overlayfs.txt (Miklos Szeredi) [1341795]
-- [fs] ovl: document lower layer ordering (Miklos Szeredi) [1341795]
-- [fs] ovl: add testsuite to docs (Miklos Szeredi) [1341795]
-- [fs] ovl: update MAINTAINERS (Miklos Szeredi) [1341795]
-
-* Mon Jun 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-447.el7]
-- [infiniband] ib/core: Use GRH when the path hop-limit > 0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/{core, mlx5}: Fix input len in vendor part of create_qp/srq (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Avoid using user-index for SRQs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Allow resetting VF admin mac to zero (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Check the correct limitation on VFs for HA mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix lockdep warning in handling of mac/vlan tables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Provide correct packet/bytes statistics (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add rx/tx bytes software counters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Correctly handle RSS indirection table when changing number of channels (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Fix ethtool RX hash func configuration change (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Fix soft lockup when HW Timestamping is enabled (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Fix LRO modify (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove wrong poll CQ optimization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix missed clean call in registration path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb3: fix up vpd strings for kstrto*() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Avoid changing dev->features directly in run-time (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Set UAR page size to 4KB regardless of system page size (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Do not BUG_ON during reset when PCI is offline (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix potential corruption in counters database (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Choose time-stamping shift value according to HW frequency (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Count HW buffer overrun only once (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: rpcrdma_bc_receive_call() should init rq_private_buf.len (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add support for the port info class for RoCE ports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add support for extended counters over RoCE ports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Fix arm logic to align with new cq API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add pci device id for chelsio t540 lom adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Use static constant netdevice ndos (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove select queue ndo initialization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Use offset based reserved field names in the IFC header file (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: fix for rare multicast join race condition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix reading capability mask of the port info class (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4: fix some error handling in mlx4_multi_func_init() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: increment devcmd2 result ring in case of timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Fixing ocrdma debugfs directory remove (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Fix pkey_index returned by driver in rq work completion (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: populate max_sge_rd in device attributes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Initialize stats resources in the driver before ib device registration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sysfs: remove unused va_list args (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Do not set skb truesize since using one linearskb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1305593 1310156]
-- [infiniband] ib/core: Set correct payload length for RoCEv2 over IPv6 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Use MLX5_GET to correctly get end of padding mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Fix use of null pointer PD (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Fix reqlen validation in mlx5_ib_alloc_ucontext (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Add CREATE_CQ and CREATE_QP to uverbs_ex_cmd_mask (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Unify CQ create flags check (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Expose Raw Packet QP to user space consumers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] {ib, net}/mlx5: Move the modify QP operation table to mlx5_ib (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Support setting Ethernet priority for Raw Packet QPs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add Raw Packet QP query functionality (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Add create and destroy functionality for Raw Packet QP (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Refactor mlx5_ib_qp to accommodate other QP types (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Allocate a Transport Domain for each ucontext (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Warn on unsupported events of QP/RQ/SQ (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Add RQ and SQ event handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Export transport objects (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Expose CQE version to user-space (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] ib/mlx5: Add CQE version 1 support to user QPs and SRQs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Fix data validation in mlx5_ib_alloc_ucontext (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Fix netlink local service GFP crash (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srpt: Remove redundant wc array (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Improve ipoib UD performance (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Advertise RoCE v2 support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Create and use another QP1 for RoCEv2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx4: Enable send of RoCE QP1 packets with IP/UDP headers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Enable RoCE v2 when the IB device is added (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx4: Support modify_qp for RoCE v2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add definition for the standard RoCE V2 UDP port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Add support for RoCE v2 entropy (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Add support for configuring RoCE v2 UDP port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx4: Add support for setting RoCEv2 gids in hardware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Configure mlx4 hardware for mixed RoCE v1/v2 modes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add gid_type to GID properties (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4: Query RoCE support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svc_rdma: use local_dma_lkey (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Add class for RDMA backwards direction transport (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Define maximum number of backchannel requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Make map_xdr non-static (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Remove last two __GFP_NOFAIL call sites (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Add gfp flags to svc_rdma_post_recv() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Remove unused req_map and ctxt kmem_caches (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Improve allocation of struct svc_rdma_req_map (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Improve allocation of struct svc_rdma_op_ctxt (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up process_context() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up rdma_create_xprt() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Use hop-limit from IP stack for RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Rename rdma_addr_find_dmac_by_grh (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: Fix a recently introduced deadlock (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srpt: Fix the RDMA completion handlers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix dereference before check (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Eliminate sparse false context imbalance warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: sysfs.c: Fix PerfMgt ClassPortInfo handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Remove set-but-not-used variable from ib_sg_to_pages() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Fix passing casted pointer in mlx5_query_port_roce (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mad: use CQ abstraction (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mad: pass ib_mad_send_buf explicitly to the recv_handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] Replace memset with eth_zero_addr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Delete locally redefined variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4: Remove unused macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Take source mac from AH instead from the port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Initialize hop_limit when creating address handle (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Expose correct maximum number of CQE capacity (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Take clip reference before starting IPv6 listen (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Fixes GW-Basic labels to meaningful error names (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Fixes static checker warning in c4iw_rdev_open() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/nes: checking for NULL instead of IS_ERR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Support creating qps with GFP_NOIO flag (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sysfs: Fix sparse warning on attr_id (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Fix RDMA port validation for iWarp (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: fix mcast detach when qp not attached (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Fix kernel panic on multicast flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Fix trimming down IRQ number (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add flow steering support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Export flow steering API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Make ipv4/ipv6 location more clear (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Enable flow steering support for the IB driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Initialize namespaces only when supported by device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Set priority attributes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Connect flow tables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce modify flow table command (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Managing root flow table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Add utilities to find next and prev flow-tables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce flow steering autogrouped flow table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Fixes static checker warning in mps_tcam_show() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Fix non negative ERR_PTR isert_device_get usage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add PTP Hardware Clock (PHC) support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add HW timestamping (TS) support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce access function to read internal timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Do not modify the TX SKB (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] chelsio: constify cphy_ops structures (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Support the remote invalidation exception (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Remove deprecated module parameters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Get TID calculation right for IPv6 mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Change the increment rkey flow logic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/isert: Support the remote invalidation exception (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/isert: Declare correct flags when accepting a connection (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/isert: Remove unused file iser_proto.h (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/iser, isert: Create and use new shared header (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: set intuitive values for mr_valid (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Don't register memory for all immediate data writes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Reuse ib_sg_to_pages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Fix module init not cleaning up on error flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: constify mmu_notifier_ops structures (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: constify iser_reg_ops structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/nes: constify nes_cm_ops structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: report tx/rx checksum cap in query results (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Convert kmalloc to kmalloc_array for checkpatch (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Suppress non-fatal memory allocations (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Advertise atomic capabilities in query device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Add setting ATOMIC endian mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb3: Fix incorrectly returning error on success (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Pass qid range to user space driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mad: Ensure fairness in ib_mad_completion_handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add driver cross-channel support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add cross-channel support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Align coding style of ib_device_cap_flags structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Mmap the HCA's core clock register to user-space (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add hca_core_clock_offset to udata in init_ucontext (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add support for hca_core_clock and timestamp_mask (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add ib_is_udata_cleared (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Add create_cq extended command (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4vf: Update to 128 byte mailbox size for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update SGE context congestion map change for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update mps_tcam output to include T6 fields (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update correct encoding of SGE Ingress DMA States for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update Congestion Channel map for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update register range and SGE registers for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4/cxgb4vf: Update Ingress padding boundary values for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update pm_stats for T6 adapter family (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Pass correct argument to t4_link_l1cfg() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Display extended counter set if available (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Specify attribute_id in port_table_attribute (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Create get_perf_mad function in sysfs.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove the write-only usecnt field from struct ib_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove the struct ib_phys_buf definition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] nes: simplify nes_reg_phys_mr calling conventions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] cxgb3: simplify iwch_get_dma_wr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove in-kernel support for memory windows (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove support for phys MRs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove ib_query_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: start documenting device capabilities (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Move multicast specific code out of ipoib_main.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: factor out common multicast list removal code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Support RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add RoCE fields to Address Vector (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Support IB device's callbacks for adding/deleting GIDs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Set network_hdr_type upon RoCE responder completion (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Extend query_device/port to support RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce access functions to query vport RoCE fields (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce access functions to enable/disable RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Support IB device's callback for getting its netdev (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Support IB device's callback for getting the link layer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use napi_complete_done() api in napi handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use the node info to alloc_ring() for RX queues (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: get naming correct for iscsi queues (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Warn if device doesn't have enough PCI bandwidth (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: delete unneeded IS_ERR test (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Handle 0 counts in resource allocation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Fix resource leak in error case (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Support more QP state transitions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Fix message typo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Fix incorrect cast in usnic_ib_fw_string_to_u64 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Improve a failure message (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Remove unused prototype (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cma: Join and leave multicast groups with IGMP (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Initialize UD header structure with IP and UDP headers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Add configfs for rdma_cm (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] configfs: add show and store methods to struct configfs_attribute (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/rdma_cm: Add wrapper for cma reference count (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Validate route when we init ah (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Move rdma_is_upper_dev_rcu to header file (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add rdma_network_type to wc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add ROCE_UDP_ENCAP (RoCE V2) type (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Add gid attributes to sysfs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: Use the source GID index type (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add gid_type to gid attribute (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: don't search the GID table twice (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Change per-entry lock in RoCE GID table to one lock (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Refactor GID cache's ib_dispatch_event (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: don't pretend to use cpu notifiers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Avoid calling ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Avoid calling ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ulps: Avoid calling ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Avoid calling ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Save the device attributes on the device structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix module parameter spelling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove incorrect link credit check (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Change num_rcv_contexts to num_user_contexts and its meaning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix for module parameter hdrq_entsize when it's 0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix a possible null pointer dereference (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: HFI now sends OPA Traps instead of IBTA (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: add definitions for OPA traps (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: convert buffers allocated atomic to per cpu (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: fix sdma build failures to always clean up (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: fix pio progress routine race with allocator (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Detect SDMA transmission error early (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Clean-up unnecessary goto statements (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add page lock limit check for SDMA requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Convert to use get_user_pages_fast (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Unconditionally clean-up SDMA queues (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Return immediately on error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Reduce snoop locking scope in IOCTL handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Further clean up hfi1_ioctl parameter checks (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: hfi1_ioctl remove setlink state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Return early from hfi1_ioctl parameter errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix camel case variables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c correct sizeof parameter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c add missing braces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c change null comparisons (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c fix white space errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c fix logical continuations (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c fix alignment (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c use BIT macros (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Adding counter resolutions for DataPortCounters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Consider VL15 MTU also when calculating the maximum VL MTU (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: unknown frame messages are not errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: remove SPC freeze error messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Unexpected link up pkey values are not an error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Destroy workqueues if hfi1_register_ib_device() call returns error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Adds software counters for bitfields within various error status fields (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Correctly limit VLs against SDMA engines (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add a credit push on diagpkt allocate fail (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Extend quiet timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add one-time LCB reset (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix qp.h comments (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add aeth name syndrome decode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Decode CNP opcode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Support alternate firmware names (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Eliminate WARN_ON when VL is invalid (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix error in hfi1 driver build (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] staging/rdma/hfi1: Adjust EPROM partitions, add EPROM commands (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Read EFI variable for device description (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: rework is_a0() and is_bx() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add space between concatenated string elements (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove rcv bubbles code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: remove RxCtxRHQS from hfi1stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix downgrade race (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: revert commit e7104a2a9606 ('xprtrdma: Cap req_cqinit') (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Invalidate in the RPC reply handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Add ro_unmap_sync method for all-physical registration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Add ro_unmap_sync method for FMR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Add ro_unmap_sync method for FRWR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Introduce ro_unmap_sync method (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Move struct ib_send_wr off the stack (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Disable RPC/RDMA backchannel debugging messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: xprt_rdma_free() must not release backchannel reqs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Fix additional uses of spin_lock_irqsave(rb_lock) (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: checking for NULL instead of IS_ERR() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: clean up some curly braces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Replace arpq_head/arpq_tail with SKB double link-list code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use t4_mgmt_tx() API for sending write l2t request ctrl packets (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add API to alloc l2t entry; also update existing ones (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use symbolic constant for VLAN priority calculation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Rename en_flow_table.c to en_fs.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Use flow steering infrastructure for mlx5_en (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Flow steering tree initialization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Introduce flow steering API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Add flow steering lookup algorithms (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Add flow steering base data structures (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce flow steering firmware commands (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Assign random MAC address if needed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: Fix query E-Switch capabilities (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Handle clip return values (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Fix incorrect 'c' suffix to pI4, use pISc instead (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Convert to CQ abstraction (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Use helper for container_of (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Use a dedicated descriptor for login (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: use the new CQ API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srpt: chain RDMA READ/WRITE requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: add a proper completion queue abstraction (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Adds PCI device id for new T5 adapters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add FL DMA mapping error and low counter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Deal with wrap-around of queue for Work request (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: prevent simultaneous execution of service_ofldq() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use ACCES_ONCE macro to read queue's consumer index (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4/cxgb4vf: update Kconfig file to include T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Align rest of the ethtool get stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb3: Convert simple_strtoul to kstrtox (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Support the HA mode for SRIOV VFs too (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Use the VF base-port when demuxing mad from wire (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Keep VLAN/MAC tables mirrored in multifunc HA mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Support mirroring VF DMFS rules on both ports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Use both physical ports to dispatch link state events to VF (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Use both physical ports to set the VF link state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add support for SR-IOV ndos (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: E-Switch, Introduce get vf statistics (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: E-Switch, Introduce set vport vlan (VST mode) (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: E-Switch, Introduce HCA cap and E-Switch vport context (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: E-Switch, Introduce Vport administration functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: E-Switch, Add SR-IOV (FDB) support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: E-Switch, Introduce FDB hardware capabilities (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introducing E-Switch and l2 table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Write vlan list into vport context (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Write UC/MC list and promisc mode into vport context (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introduce access functions to modify/query vport vlans (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introduce access functions to modify/query vport promisc mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introduce access functions to modify/query vport state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introduce access functions to modify/query vport mac lists (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Update access functions to Query/Modify vport MAC address (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Add HW capabilities and structs for SR-IOV E-Switch (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Add base sriov support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Modify enable/disable hca functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Handle packets with invalid RHF on context 0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Reduce number of parameters passed to send handlers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: add ACK coalescing logic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: add common routine for queuing acks (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Workaround to prevent corruption during packet delivery (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: pre-compute sc and sde for RC/UC QPs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Use parallel workqueue for SDMA engines (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: move hfi1_migrate_qp (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: use one-shot LCB write (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove spurious error messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix for opaportconfig ledon by not checking for portNum (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Select only devices with active links (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Disable thermal polling before sensor initialization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Always download SBus firmware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Enable WFR PCIe extended tags from the driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Clear the QSFP reset that is asserted on FLR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Convert dd_dev_info() to hfi1_cdbg() in process startup (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1 : Prefer using the BIT macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: optionally prescan rx queue for {B, F}ECNs - UC, RC (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: don't cache "prescan head" (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Move macros to a common header (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove unnecessary include files (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] staging/rdma/hfi1: Clean up macro indentation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove file pointer macros (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: chip: Remove wrapper function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: sdma: Remove wrapper functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Remove hfi1_nomsix() wrapper function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Remove unnecessary variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ehca: stop using struct ib_phys_buf (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: use kmalloc_array instead of kmalloc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ipath: Remove unneeded vairable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_init_chip: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_sdma: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_verbs: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_driver: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: remove sched.h header (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: use TASK_COMM_LEN in ipath_portdata (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: Replace kmalloc with kmalloc_array (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_eeprom: Remove useless intialisation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_init_chip: Remove useless initialisation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/path: Use kcalloc instead of kzalloc to allocate array (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: Use memdup_user (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ehca: fix handling idr_alloc result (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: use offset_in_page macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: correctly handling failed allocation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] rdma/be2net: Remove open and close entry points (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Depend on async link events from CNA (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Dispatch only port event when port state changes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Fix vlan-id assignment in qp parameters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Replace kfree with kvfree in mlx4_ib_destroy_srq (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: cma_match_net_dev needs to take into account port_num (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: fix handling return value of mlx4_slave_convert_port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Postpone remove_keys under knowledge of coming preemption (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Use vmalloc for WR buffers when needed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] ib/mlx4: Use correct order of variables in log message (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove explicit mlx4 work-around (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] mlx4: Expose correct max_sge_rd limit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mad: Require CM send method for everything except ClassPortInfo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Add a missing rcu_read_unlock() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib core: Fix ib_sg_to_pages() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix srp_map_sg_fr() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix indirect data buffer rkey endianness (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Initialize dma_length in srp_map_idb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix possible send queue overflow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix a memory leak (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Put netlink request into the request list before sending (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: use sector_div instead of do_div (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: use RCU for uverbs id lookup (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Minor fixes to qib per SFF 8636 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix user mode post wr corruption (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Fix qib_mr structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix race condition when sending a message on unbound socket (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Avoid returning success in case of an error flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix sleeping while holding spinlock at rem_slave_counters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Use the right DMA free function on TX path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Max mtu comparison fix (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Added self loopback prevention (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Fix inline header size calculation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Allow activation of scsi-mq for SRP in driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] scsi: use host wide tags by default (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Fix LSO vlan insertion (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Re-eanble client vlan TX acceleration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Return error in case mlx5e_set_features() fails (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Don't allow more than max supported channels (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Use the the real irqn in eq->irqn (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Wait for RX buffers initialization in a more proper manner (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Avoid NULL pointer access in case of configuration failure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] nfs: Enable client side NFSv4.1 backchannel to use other transports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] sunrpc: Abstract backchannel operations (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: convert bind hash table to re-sizable hashtable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: changing the return type from int to void (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: assign affinity hint to interrupts (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Add backward direction service for RPC/RDMA transport (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Handle incoming backward direction RPC calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Add support for sending backward direction RPC replies (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Pre-allocate Work Requests for backchannel (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Pre-allocate backward rpc_rqst and send/receive buffers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Saving IRQs no longer needed for rb_lock (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Remove reply tasklet (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Use workqueue to process RPC/RDMA replies (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Replace send and receive arrays (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Refactor reply handler error handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Prevent loss of completion signals (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Re-arm after missed events (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Enable swap-on-NFS/RDMA (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: don't log warnings for flushed completions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core, cma: Make __attribute_const__ declarations sparse-friendly (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove old fast registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: Remove fast registration from the code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/nes: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cxgb3: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Remove old FRWR API support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove old FRWR API support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Dont allocate a page vector when using fast_reg (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove srp_finish_mapping (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Convert to new registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Split srp_map_sg (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds/iw: Convert to new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Port to new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Port to new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Port to new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Port to new fast registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/nes: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cxgb3: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove dead fmr code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Introduce new fast registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ucma: Take the network namespace from the process (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] ib/cma: Add support for network namespaces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Separate port allocation to network namespaces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/addr: Pass network namespace as a parameter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Enable SG clustering (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: set block queue_virt_boundary (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Update driver version string to 0.9-294 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: add additional rc traces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add unit # to verbs txreq cache name (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Load SBus firmware once per ASIC (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Thread the receive interrupt (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add irqsaves in the packet processing path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Increase SDMA descriptor queue size (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Allow tuning of SDMA interrupt rate (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Wrong cast breaks desired pointer arithmetic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Prevent silent data corruption with user SDMA (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix port bounce issues with 0.22 DC firmware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add a schedule in send thread (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Reset firmware instead of reloading Sbus (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: close shared context security hole (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add coalescing support for SDMA TX descriptors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] staging/rdma/hfi1: Remove QSFP_ENABLED from HFI capability mask (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Prevent host software lock up (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Extend the offline timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix code to reset ASIC CSRs on FLR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix regression in send performance (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] hfi1: sdma: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] hfi1: driver: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: chip: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove an unused variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove an unused variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update ethtool get_drvinfo to get regdump len (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use vmalloc, if kmalloc fails (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Return error if setup_rss is called before probe (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4/cxgb4vf: Update driver desc. to include Chelsio T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add info print to display number of MSI-X vectors allocated (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Restore L1 cfg, if FW rejects new L1 cfg settings (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Don't disallow turning off auto-negotiation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Align ethtool get stat settings (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove smac and vlan id from path record (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove smac and vlan id from qp_attr and ah_attr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: Remove the usage of smac and vid of qp_attr and cm_av (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Use GID table in AH creation and dmac resolution (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cache: Add ib_find_gid_by_filter cache API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: cma_validate_port should verify the port and netdevice (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: cm_init_av_by_path should find a GID by its netdevice (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add netdev to path record (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Expose and rename ib_find_cached_gid_by_port cache API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add netdev and gid attributes paramteres to cache (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add support for blocking multicast loopback QP creation user flag (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add counter based implementation for QP multicast loopback block (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add IB counters table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Implement mcast loopback prevention for ETH qps (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Add support for filtering multicast loopback (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Allow setting create flags in QP init attribute (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Extend ib_uverbs_create_qp (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] iw_cxgb4: Adds support for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: T6 adapter lld support for iw_cxgb4 driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Bump up ocrdma version number to 11.0.0.0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Prevent CQ-Doorbell floods (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Check resource ids received in Async CQE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Avoid a possible crash in ocrdma_rem_port_stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Cleanup unused device list and rcu variables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: reverse the ord/ird in the ESTABLISHED upcall (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: fix misuse of ep->ord for minimum ird calculation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: pass the ord/ird in connect reply events (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: detect fatal errors while creating listening filters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: avoid 32-bit warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cxgb4: re-fix 32-bit build warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib_pack.h: Fix commentary IBA reference for CNP in IB opcode enum (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: fix a comment typo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] usnic: correctly handle kzalloc return value (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] usnic: correctly check failed allocation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix rds-ping deadlock over TCP transport (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: use TASK_COMM_LEN in hfi1_ctxtdata (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Prefer using BIT Macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: delete unneeded tabs in conditional statement block (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: mad: Remove explicit cast (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: diag: Remove useless initialisation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: sysfs: Remove useless initialisation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Remove unnecessary cast on void pointer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] mlx4: corretly check failed allocation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Replace VF zero mac with random mac in mlx4_core (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Wait for FW readiness on startup (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Add pci error handlers to mlx5_core driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Fix internal error detection conditions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] mlx5: stop including <asm-generic/kmap_types.h> (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Reset tcp callbacks if re-using an outgoing socket in rds_tcp_accept_one() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Invoke ->laddr_check() in rds_bind() for explicitly bound transports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: remove unnecessary out of memory messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Use kcalloc instead of kzalloc to allocate array (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix resource tracker error flow in add_res_range (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix mailbox leak in error flow when performing update qp (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Add steering rules after RSS creation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Use private health thread for each device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Use accessor functions to read from device memory (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Prepare cmd interface to system errors handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Improve mlx5 messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove xrc_remote_srq_num from struct ib_send_wr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: Remove fast registration from the code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] ib: split struct ib_send_wr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: split mr pool to improve 8K messages performance (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: use max_mr from HCA caps than max_fmr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: mark rds_ib_fmr_wq static (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: use already available pool handle from ibmr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: fix the rds_ib_fmr_wq kick call (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: handle rds_ibdev release case instead of crashing the kernel (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: split send completion handling and do batch ack (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: ack more receive completions to improve performance (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: use rds_send_xmit() state instead of RDS_LL_SEND_FULL (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: defer the over_batch work to send worker (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: do hang reset only in case of tx timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: handle spurious error interrupt (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Report correct link speed for unsupported ones (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Adds a new Device Log Facility FW_DEVLOG_FACILITY_CF (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: For T4, don't read the Firmware Mailbox Control register (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Update T4/T5/T6 register ranges (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Set up MSG_MORE and MSG_SENDPAGE_NOTLAST as appropriate in rds_tcp_xmit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Do not bloat sndbuf/rcvbuf in rds_tcp_tune (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Use a single TCP socket for both send and receive (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: use offset_in_page macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Use per-bucket rw lock for bind hash-table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix rds_sock reference bug while doing bind (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: make socket bind/release locking scheme simple and more efficient (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: use kfree_rcu in rds_ib_remove_ipaddr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add HW timesptamp support for RX (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Update health syndromes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Fix wrong name in struct (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: New init and exit flow for mlx5_core (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Fix notification of page supplement error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Fix async commands return code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Remove redundant "err" variable usage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Fix struct type in the DESTROY_TIR/TIS device commands (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Priv state flag not rolled-back upon netdev open error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: add a blank line after function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: class_name_user() should be static (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: use kvfree() in sdma.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: do not use u8 to store a 32-bit integer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] hfi1: drop null test before destroy functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: mask vs shift confusion (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: clean up some defines (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: info leak in get_ctxt_info() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: fix a locking bug (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: checking for NULL instead of IS_ERR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: fix sdma_descq_cnt parameter parsing (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: fix copy_to/from_user() error handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/hfi1: fix pstateinfo from returning improperly byteswapped value (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: Add CSRs for CONFIG_SDMA_VERBOSITY (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] hfi1: replace indent spaces with tabs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4: Copy/set only sizeof struct mlx4_eqe bytes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Explicitly set no vlan tags in WQE ctrl segment when no vlan is present (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Recover correctly from pskb_pull()/pksb_trim() failure in rds_tcp_data_recv (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: Fix rb-tree duplicate free and use-after-free (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Use inner P_Key to determine netdev (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ucma: check workqueue allocation before usage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Potential NULL dereference in cma_id_from_event (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix use after free of ifa (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix memory corruption in ib_cache_gid_set_default_gid (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: For sendonly join free the multicast group on leave (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Fix NFS server crash triggered by 1MB NFS WRITE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: Fix typo in mlx5_query_port_pvlc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Accept connection without a valid netdev on RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Don't require LOCAL_DMA_LKEY support for fastreg (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] usnic: add missing clauses to BSD license (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: handle rdma read with a non-zero initial page offset (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: increase the max mcast backlog queue (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Make sendonly multicast joins create the mcast group (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Expire sendonly multicast joins (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove pa_lkey usages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Remove support for IB_DEVICE_LOCAL_DMA_LKEY (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Add module parameter for always register memory (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Replace global lkey with lkey local to PD (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: really allow to change RSS key (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: add device ID for few T5 adapters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Skip data copy if all the command data comes as immediate (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Change the recv buffers posting logic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Fix pending connections handling in target stack shutdown sequnce (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove np_ prefix from isert_np members (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove unused variables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Put the reference on commands waiting for unsol data (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: remove command with state ISTATE_REMOVE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: changes for new firmware 1.14.4.0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: verify the underlying transport exists before creating a connection (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Fix for write-combining stats configuration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: fix usage of uninitialized variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: rds_conn_lookup() should factor in the structfor a match (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Suppress warning for send only join failures (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Clean up send-only multicast joins (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix possible protection fault (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Move SM class defines from ib_mad.h to ib_smi.h (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove unnecessary defines from ib_mad.h (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx5: Fix incorrect wc pkey_index assignment for GSI messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: avoid destroying a NULL mr in reg_user_mr error flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/uverbs: reject invalid or unknown opcodes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cxgb4: Fix if statement in pick_local_ip6adddrs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Fix rdma netlink message flags (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ucma: HW Device hot-removal support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4_ib: Disassociate support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/uverbs: Enable device removal when there are active user space applications (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/uverbs: Explicitly pass ib_dev to uverbs commands (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/uverbs: Fix race between ib_uverbs_open and remove_one (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/uverbs: Fix reference counting usage of event files (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] ib/core: Make ib_dealloc_pd return void (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Create an insecure all physical rkey only if needed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Register the indirect data buffer descriptor (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Introduce srp_device.use_fmr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove use_mr argument from srp_map_sg_entry() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove the memory registration backtracking code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Add memory descriptor array pointer range checking (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Use multiple registrations for large memory regions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Re-enable FMR for non-page aligned buffers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds/ib: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib_srpt: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Use pd->local_dma_lkey (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Use pd->local_dma_lkey (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mad: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Guarantee that a local_dma_lkey is available (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Chain all iser transaction send work requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Add debug prints to the various memory registration methods (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Support up to 8MB data transfer in a single command (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Pass registration pool a size parameter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Unify fast memory registration flows (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Make reg_desc_get a per device routine (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Rename iser_reg_page_vec to iser_fast_reg_fmr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Maintain connection fmr_pool under a single registration descriptor (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Introduce iser registration pool struct (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Move fastreg descriptor allocation to iser_create_fastreg_desc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Introduce iser_reg_ops (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove dead code in fmr_pool alloc/free (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Rename struct fast_reg_descriptor -> iser_fr_desc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Introduce struct iser_reg_resources (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove an unneeded print for unaligned memory (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove a redundant always-false condition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Fix possible bogus DMA unmapping (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Get rid of un-maintained counters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Fix missing return status check in iser_send_data_out (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove '.' from log message (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Change minor assignments and logging prints (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Change some module parameters to be RO (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Route SA pathrecord query through netlink (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Allocate SA query with kzalloc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add rdma netlink helper functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/netlink: Add defines for local service requests through netlink (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Stop the scsi_eh_<n> and scsi_tmf_<n> threads if login fails (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Bump driver version and release date (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Handle partial connection success correctly (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Constify a function argument (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Fix incorrect cq flushing in error state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Use correct SL on AH query under RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Forbid using sysfs to change RoCE pkeys (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Demote mcg message from warning to debug (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Fix potential deadlock when sending mad to wire (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Remove needless bracketization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Incorporate the moving of GID Table mgmt to IB/Core (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Replace mechanism for RoCE GID management (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx4: Implement ib_device callbacks (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4: Postpone the registration of net_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Port aggregation configuration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Add RoCE table bonding support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: missing curly braces in ib_find_gid() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add RoCE GID table management (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Make ib_alloc_device init the kobject (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Drop ib_alloc_fast_reg_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] qib: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] nes: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] cxgb3: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ocrdma: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx4: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx5: Drop mlx5_ib_alloc_fast_reg_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: limit FRMR page list lengths to device max (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma, svcrdma: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: Modify ib_create_mr API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Get rid of redundant verb ib_destroy_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Fix net_dev reference leak with failed requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cm: Remove compare_data checks (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Share ib_cm_ids between rdma_cm_ids (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Use found net_dev for passive connections (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Validate routing of incoming requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Add net_dev and private data checks to RDMA CM (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cm: Expose BTH P_Key in CM and SIDR request events (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Helper functions to access port space IDRs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Refactor RDMA IP CM private-data parsing code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cm: Share listening CM IDs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cm: Expose service ID in request events (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Return IPoIB devices matching connection parameters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Find the network device matching connection parameters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] ib/core: lock client data with lists_rwsem (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Add rwsem to allow reading device list or client list (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] rdma/core: remove rdma_cap_read_multi_sge() helper (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Use max_sge_rd for destination read depths (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ipath,qib: Expose max_sge_rd correctly (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx4, mlx5, mthca: Expose max_sge_rd correctly (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Add support for clip (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cma: fix IPv6 address resolution (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ucma: Fix theoretical user triggered use-after-free (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: set the default MPA version to 2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/iser: Limit sgs to the device fastreg depth (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove dead code from alloc_cached_mr() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Change lkey table allocation to support more MRs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx5: Expose correct page_size_cap in device attributes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] mlx5: Fix missing device local_dma_lkey (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Force uninitialized state if FW in adapter is unsupported (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix unintialized variable used in error path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] target/iscsi: Replace __kernel_sockaddr_storage with sockaddr_storage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] target/iscsi: Replace conn->login_ip with login_sockaddr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] target/iscsi: Keep local_ip as the actual sockaddr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: remove superfluous from rds_ib_alloc_fmr() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: flush the FMR pool less often (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: push FMR pool flush work to its own worker (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix fmr pool dirty_count (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Fix rds MR reference count in rds_rdma_unuse() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix the dangling reference to rds_ib_incoming_slab (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: reduce ioread in devcmd2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Fix improper gfp_t usage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Avoid accessing NULL pointer at ndo_select_queue (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: check for valid cm_id before initiating connection (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: return EMSGSIZE for oversize requests before processing/queueing (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: make sure rds_send_drop_to properly takes the m_rs_lock (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Don't destroy the rdma id until after we're done using it (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Fix assertion level from fatal to warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Make sure we do a signaled send for large-send (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Mark message mapped before transmit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: add a sock_destruct callback debug aid (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: check for congestion updates during rds_send_xmit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: make sure not to loop forever inside rds_send_xmit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: make sure we post recv buffers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: don't update ip address tables if the address hasn't changed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: destroy the ib state earlier during shutdown (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: always free recv frag as we free its ring entry (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: restore return value in rds_cmsg_rdma_args() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: Fix build failure with SRIOV disabled (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: memory corruption in debugfs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: Fix namespace pollution causing build errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: Fix sparse warning in vnic_devcmd_init() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] mlx5e: Fix sparse warnings in mlx5e_handle_csum() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Support RX CHECKSUM_COMPLETE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Support ethtool get/set_pauseparam (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Ethtool link speed setting fixes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: HW LRO changes/fixes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Support smaller RX/TX ring sizes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add ethtool RSS configuration options (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Make RSS indirection table size a constant (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Have a single RSS Toeplitz hash key (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: add devcmd2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: add devcmd2 resources (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: use netdev_<foo> or dev_<foo> instead of pr_<foo> (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: move struct definition from .c to .h file (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add MPS tracing support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs support to dump tid info (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Differentiate between stids between server and filter region (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Differentiates between TIDs being used in TCAM and HASH (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add some more details to sge qinfo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: cleanup some indenting (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Change maximum server payload back to RPCSVC_MAXPAYLOAD (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Support multiple RDS-TCP listen endpoints, one per netns (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: do proper house keeping if connection fails in rds_tcp_conn_connect (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Make RDS-TCP work correctly when it is set up in a netns other than init_net (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: rds-tcp: Always create a new rds_sock for an incoming connection (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Support physical port counters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Take advantage of the light-weight netdev open/stop (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Disable async events before unregister_netdev() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Rename/move functions following the ndo_stop flow change (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Light-weight netdev open/stop (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce access function to modify RSS/LRO params (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Introduce the "Drop RQ" (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Unify the RX flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update T6 register ranges (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4/cxgb4vf: read the correct bits of PL Who Am I register (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add support to dump edc bist status (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs support to dump meminfo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove the mlx5e_update_priv_params() function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Introduce create/destroy RSS indir table access functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Do not use netdev_err() before the netdev is registered (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Avoid redundant de-reference (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove redundant assignment of sq->user_index (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove redundant field mlx5e_priv->num_tc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Use hard-coded 4K page size for RQ/SQ/CQ (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Check the return value of mlx5_command_exec() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Hardware accelerated 802.1ad works only on the first port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_en: Add support for hardware accelerated 802.1ad vlan (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4: Prepare VLAN macros for 802.1ad Hardware accelerated support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Prepare ethtool private flags to support more flags (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Preparations for 802.1ad VLAN support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Input IPSEC.SPI into the RX RSS hash function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: cosmetics: use BIT() instead of "1 <<", and others (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: TX latency optimization to save DMA reads (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Support TX packet copy into WQE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Allocate DMA coherent memory on reader NUMA node (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Support ETH_RSS_HASH_XOR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4vf: Read correct FL congestion threshold for T5 and T6 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4vf: Adds SRIOV driver changes for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Allow firmware flash, only if cxgb4 is the master driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs entry to enable backdoor access (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Fill DCB priority in vlan control headers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Fill in number of DCB traffic classes supported (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Allow firmware DCB info to be queried in host state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Only pass app selector of 0 or 3 to firmware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: allow adaptive coalesce setting for msi/legacy intr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: add adaptive coalescing intr for intx and msi poll (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Remove svc_rdma_fastreg() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up svc_rdma_get_reply_array() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] NFS/RDMA Release resources in svcrdma when device is removed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4vf: Fix check to use new User Doorbell mechanism (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Enable cim_la dump to support T6 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Read stats for only available channels (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update register ranges for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Don't use entire L2T table, use only its slice (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add PCI device ids for few more T5 and T6 adapters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Add extra check for total vfs for SRIOV (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] mlx4: TCP/UDP packets have L4 hash (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: missing curly braces in t4_setup_debugfs() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix an integer overflow test in rds_info_getsockopt() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: gracefully handle unknown CQE status errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Relieve cpu load average on the port sending flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix wrong index in propagating port change event to VFs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Fix REJECT CM event use-after-free OOPs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: update ocrdma module license string (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: update ocrdma license to dual-license (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Fix CONFIG_INFINIBAND_IPOIB_CM (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cxgb3: fail get_dma_mr on 64 bit arches (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Fix memory leak in do_slave_init (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Optimize freeing of items on error unwind (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: Convert use of __constant_<foo> to <foo> (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/srp: Avoid using uninitialized variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srpt: Convert use of __constant_cpu_to_beXX to cpu_to_beXX (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] net-rds: Delete an unnecessary check before the function call "module_put" (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: fix issues in enic_poll (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ehca: use kvfree() in ipz_queue_{cd}tor() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: use kvfree() in t4_free_mem() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb3: use kvfree() in cxgb_free_mem() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: use atomic_t instead of spin_lock in busy poll (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add PCI device ID for custom T522 & T520 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb3: avoid needless buffer copy for firmware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: use for_each_sg() for scatterlist parsing (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma, svcrdma: Switch to generic logging helpers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: support for bar2 qid densities exceeding the page size (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Support for user mode bar2 mappings with T4 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs entry to dump channel rate (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs entry to dump CIM PIF logic analyzer contents (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add a debugfs entry to dump CIM MA logic analyzer logs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: release stale iser connections (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Fix static checker warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use FW LDST cmd to access TP_PIO_{ADDR, DATA} register first (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: program pci completion timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Rename t4_link_start() to t4_link_l1cfg (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add sge ec context flush service (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Free Virtual Interfaces in remove routine (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Add a separate "max data segs macro for svcrdma (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Replace GFP_KERNEL in a loop with GFP_NOFAIL (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Keep rpcrdma_msg fields in network byte-order (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Handle additional inline content (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Move read list XDR round-up logic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Support RDMA_NOMSG requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: rc_position sanity checking (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Plant reader function in struct svcxprt_rdma (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up read chunk counting (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up dprintk (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Fix byte-swapping in svc_rdma_sendto.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Remove WOL get/set ethtool support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add support to dump loopback port stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add support in ethtool to dump channel stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add ethtool support to get adapter stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Remove svc_rdma_xdr_decode_deferred_req() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Adds support for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add is_t6 macro and T6 register ranges (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds Add getsockopt support for SO_RDS_TRANSPORT (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Add setsockopt support for SO_RDS_TRANSPORT (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Declare SO_RDS_TRANSPORT and RDS_TRANS_* constants in uapi/linux/rds.h (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib_srpt: Remove set-but-not-used variables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] target: Remove first argument of target_{get, put}_sess_cmd() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Align to generic logging helpers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Align to generic logging helpers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Align to generic logging helpers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/srp: Add 64-bit LUN support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove !ch->target tests from the reconnect code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove a superfluous check from srp_free_req_data() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Rearrange module description (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove superfluous casts (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [scsi] scsi_transport_srp: Reduce failover time (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix reconnection failure handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix connection state tracking (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix a connection setup race (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove an extraneous scsi_host_put() from an error path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Add multichannel support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Use block layer tags (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [scsi] always assign block layer tags if enabled (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [scsi] scsi_transport_srp: Fix a race condition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [scsi] scsi_transport_srp: Introduce srp_wait_for_queuecommand() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] scsi_transport_srp: Fix a race condition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-
-* Mon Jun 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-446.el7]
-- [include] crypto: skcipher - Fix driver name helper (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add helper to retrieve driver name (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add helper to zero stack request (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add default key size helper (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add crypto_skcipher_has_setkey (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add top-level skcipher interface (Torez Smith) [1332712]
-- [include] crypto: Resolve shadow warnings (Torez Smith) [1332712]
-- [usb] usbfs: fix potential infoleak in devio (Torez Smith) [1332712]
-- [include] usb: devio: Add ioctl to disallow detaching kernel USB drivers (Torez Smith) [1332712]
-- [netdrv] revert "lan78xx: add ndo_get_stats64" (Torez Smith) [1332712]
-- [netdrv] lan78xx: add ndo_get_stats64 (Torez Smith) [1332712]
-- [netdrv] lan78xx: handle statistics counter rollover (Torez Smith) [1332712]
-- [usb] fsl: drop USB_FSL_MPH_DR_OF Kconfig symbol (Torez Smith) [1332712]
-- [netdrv] lan78xx: add ethtool set & get pause functions (Torez Smith) [1332712]
-- [netdrv] lan78xx: remove unnecessary code (Torez Smith) [1332712]
-- [netdrv] lan78xx: replace devid to chipid & chiprev (Torez Smith) [1332712]
-- [include] usb: Add support for usbfs zerocopy (Torez Smith) [1332712]
-- [include] usb: core: rename mutex usb_bus_list_lock to usb_bus_idr_lock (Torez Smith) [1332712]
-- [usb] no locking for reading descriptors in sysfs (Torez Smith) [1332712]
-- [include] usb: sysfs: make locking interruptible (Torez Smith) [1332712]
-- [include] usb: define USB_SPEED_SUPER_PLUS speed for SuperSpeedPlus USB3.1 devices (Torez Smith) [1332712]
-- [netdrv] lan78xx: change to use updated phy-ignore-interrupts (Torez Smith) [1332712]
-- [fs] helpers: no_seek_end_llseek{, _size}() (Torez Smith) [1332712]
-- [netdrv] asix: silence log message from oversize packet (Torez Smith) [1332712]
-- [include] usb: musb: core: Fix handling of the phy notifications (Torez Smith) [1332712]
-- [netdrv] cdc_ncm: add "ndp_to_end" sysfs attribute (Torez Smith) [1332712]
-- [usb] whci: fhci: remove comparison to bool (Torez Smith) [1332712]
-- [include] usb: core: lpm: remove usb3_lpm_enabled in usb_device (Torez Smith) [1332712]
-- [usb] core: lpm: add sysfs node for usb3 lpm permit (Torez Smith) [1332712]
-- [include] usb: core: lpm: fix usb3_hardware_lpm sysfs node (Torez Smith) [1332712]
-- [include] uvcvideo: Enable UVC 1.5 device detection (Torez Smith) [1332712]
-- [usb] revert "usb / pm: Allow USB devices to remain runtime-suspended when sleeping" (Torez Smith) [1332712 1344296]
-- [netdrv] net/smscx5xx: use the device tree for mac address (Torez Smith) [1332712]
-- [netdrv] pegasus: fixes reported packet length (Torez Smith) [1332712]
-- [netdrv] pegasus: fixes URB buffer allocation size; (Torez Smith) [1332712]
-- [netdrv] lan78xx: workaround of forced 100 Full/Half duplex mode error (Torez Smith) [1332712]
-- [netdrv] lan78xx: fix statistics counter error (Torez Smith) [1332712]
-- [usb] serial: cp210x: add Straizona Focusers device ids (Torez Smith) [1332712]
-- [usb] serial: cp210x: add ID for Link ECU (Torez Smith) [1332712]
-- [netdrv] cdc_mbim: apply "NDP to end" quirk to all Huawei devices (Torez Smith) [1332712]
-- [usb] hcd: out of bounds access in for_each_companion (Torez Smith) [1332712]
-- [include] usb: uas: Add a new NO_REPORT_LUNS quirk (Torez Smith) [1332712]
-- [usb] xhci: fix 10 second timeout on removal of PCI hotpluggable xhci controllers (Torez Smith) [1332712]
-- [usb] xhci: fix wild pointers in xhci_mem_cleanup (Torez Smith) [1332712]
-- [usb] host: xhci: add a new quirk XHCI_NO_64BIT_SUPPORT (Torez Smith) [1332712]
-- [usb] xhci: resume USB 3 roothub first (Torez Smith) [1332712]
-- [usb] xhci: applying XHCI_PME_STUCK_QUIRK to Intel BXT B0 host (Torez Smith) [1332712]
-- [usb] cdc-acm: fix crash if flushed with nothing buffered (Torez Smith) [1332712]
-- [usb] option: add "D-Link DWM-221 B1" device id (Torez Smith) [1332712]
-- [usb] serial: cp210x: Adding GE Healthcare Device ID (Torez Smith) [1332712]
-- [usb] serial: ftdi_sio: Add support for ICP DAS I-756xU devices (Torez Smith) [1332712]
-- [netdrv] usb: cdc_ncm: adding Telit LE910 V2 mobile broadband card (Torez Smith) [1332712]
-- [usb] digi_acceleport: do sanity checking for the number of ports (Torez Smith) [1332712]
-- [usb] cypress_m8: add endpoint sanity check (Torez Smith) [1332712]
-- [usb] mct_u232: add sanity checking in probe (Torez Smith) [1332712]
-- [usb] fix regression in SuperSpeed endpoint descriptor parsing (Torez Smith) [1332712]
-- [usb] xhci: Workaround to get Intel xHCI reset working more reliably (Torez Smith) [1332712]
-- [include] usb: ch9: Fix SSP Device Cap wFunctionalitySupport type (Torez Smith) [1332712]
-- [netdrv] qmi_wwan: add "D-Link DWM-221 B1" device id (Torez Smith) [1332712]
-- [netdrv] usb/plusb.c: Fix typo (Torez Smith) [1332712]
-- [usb] uas: Reduce can_queue to MAX_CMNDS (Torez Smith) [1332712]
-- [usb] cdc-acm: more sanity checking (Torez Smith) [1332712]
-- [usb] usb_driver_claim_interface: add sanity checking (Torez Smith) [1332712]
-- [usb] core: usb_alloc_dev(): fix setting of ->portnum (Torez Smith) [1332712]
-- [usb] iowarrior: fix oops with malicious USB descriptors (Torez Smith) [1332712]
-- [netdrv] qmi_wwan: Added support for Gemalto's Cinterion PHxx WWAN interface (Torez Smith) [1332712]
-- [include] usb: core: let USB device know device node (Torez Smith) [1332712]
-- [usb] usb-host: Remove fusbh200 driver (Torez Smith) [1332712]
-- [include] usb: otg-fsm: add B_AIDL_BDIS timer (Torez Smith) [1332712]
-- [include] usb: common: otg-fsm: add HNP polling support (Torez Smith) [1332712]
-- [include] usb: add OTG status selector definition for HNP polling (Torez Smith) [1332712]
-- [include] usb: ch9: Add size macro for SSP dev cap descriptor (Torez Smith) [1332712]
-- [netdrv] asix: Continue processing URB if no RX netdev buffer (Torez Smith) [1332712]
-- [netdrv] asix: On RX avoid creating bad Ethernet frames (Torez Smith) [1332712]
-- [netdrv] asix: Simplify asix_rx_fixup_internal() netdev alloc (Torez Smith) [1332712]
-- [usb] xhci-mtk: use __maybe_unused to hide pm functions (Torez Smith) [1332712]
-- [netdrv] asix: Tidy-up 32-bit header word synchronisation (Torez Smith) [1332712]
-- [usb] host: unhide suspend/resume declarations (Torez Smith) [1332712]
-- [netdrv] asix: Rename remaining and size for clarity (Torez Smith) [1332712]
-- [usb] host: Host drivers relying on DMA should depend on HAS_DMA (Torez Smith) [1332712]
-- [usb] idmouse.c: Put the interface on error (Torez Smith) [1332712]
-- [usb] hub: fix a typo in hub_port_init() leading to wrong logic (Torez Smith) [1332712]
-- [usb] serial: cp210x: add new access functions for large registers (Torez Smith) [1332712]
-- [usb] serial: cp210x: add 8-bit and 32-bit register access functions (Torez Smith) [1332712]
-- [usb] serial: cp210x: add 16-bit register access functions (Torez Smith) [1332712]
-- [usb] serial: fix semicolon.cocci warnings (Torez Smith) [1332712]
-- [usb] serial: fix boolinit.cocci warnings (Torez Smith) [1332712]
-- [usb] serial: fix returnvar.cocci warnings (Torez Smith) [1332712]
-- [usb] serial: fix compare_const_fl.cocci warnings (Torez Smith) [1332712]
-- [usb] core: Allow compilation on platforms where NO_DMA=y (Torez Smith) [1332712]
-- [usb] storage: use usb_store_dbg instead of US_DEBUGPX (Torez Smith) [1332712]
-- [usb] usbtmc: Fix disconnect/poll interaction (Torez Smith) [1332712]
-- [usb] host: xhci-rcar: Use ARCH_RENESAS (Torez Smith) [1332712]
-- [usb] misc/chaoskey: introduce an URB for asynchronous reads (Torez Smith) [1332712]
-- [usb] misc/chaoskey: Cleanup probe failure paths (Torez Smith) [1332712]
-- [usb] revert "usb: add HAS_IOMEM dependency to USB_APPLEDISPLAY" (Torez Smith) [1332712]
-- [usb] retry reset if a device times out (Torez Smith) [1332712]
-- [usb] host: pci_quirks: fix memory leak, by adding iounmap (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_ISP1362_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_OXU210HP_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_OHCI_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_APPLEDISPLAY (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_FOTG210_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_XHCI_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_EHCI_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_SL811_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_C67X00_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_R8A66597_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_XHCI_MVEBU (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_ISP116X_HCD (Torez Smith) [1332712]
-- [usb] cdc-acm: implement put_char() and flush_chars() (Torez Smith) [1332712]
-- [usb] xhci: Support extended burst isoc TRB structure used by xhci 1.1 for USB 3.1 (Torez Smith) [1332712]
-- [usb] xhci: cleanup isoc tranfers queuing code (Torez Smith) [1332712]
-- [usb] xhci: Add SuperSpeedPlus high bandwidth isoc support to xhci endpoints (Torez Smith) [1332712]
-- [usb] xhci: refactor and cleanup endpoint initialization (Torez Smith) [1332712]
-- [include] usb: Add USB 3.1 Precision time measurement capability descriptor support (Torez Smith) [1332712]
-- [include] usb: Parse the new USB 3.1 SuperSpeedPlus Isoc endpoint companion descriptor (Torez Smith) [1332712]
-- [include] usb: Add USB3.1 SuperSpeedPlus Isoc Endpoint Companion descriptor (Torez Smith) [1332712]
-- [usb] usb: removed assignment of 0 to static variables (Torez Smith) [1332712]
-- [usb] pci: Remove includes of asm/pci-bridge.h (Torez Smith) [1332712]
-- [usb] ehci: fix compiler warning introduced by commit 2a40f324541e (Torez Smith) [1332712]
-- [include] Add ioctls to enable and disable local controls on an instrument (Torez Smith) [1332712]
-- [include] Add ioctl to retrieve USBTMC-USB488 capabilities (Torez Smith) [1332712]
-- [usb] Add support for receiving USBTMC USB488 SRQ notifications via poll/select (Torez Smith) [1332712]
-- [usb] Add support for USBTMC USB488 SRQ notification with fasync (Torez Smith) [1332712]
-- [include] Implement an ioctl to support the USMTMC-USB488 READ_STATUS_BYTE operation (Torez Smith) [1332712]
-- [usb] cxacru: fix an bounds check warning (Torez Smith) [1332712]
-- [include] usb/storage: misc fixes to comments in include/linux/usb/storage.h (Torez Smith) [1332712]
-- [usb] storage: ene_ub6250: Remove unnecessary cast in kfree (Torez Smith) [1332712]
-- [usb] host: ehci-sched: remove unnecessary braces (Torez Smith) [1332712]
-- [usb] host: ehci-sched: use sizeof operator with parens (Torez Smith) [1332712]
-- [usb] host: ehci-sched: add line after declarations (Torez Smith) [1332712]
-- [usb] host: ehci-sched: use C89-style comments (Torez Smith) [1332712]
-- [usb] host: ehci-sched: remove useless else branch (Torez Smith) [1332712]
-- [usb] host: ehci-sched: remove prohibited spaces (Torez Smith) [1332712]
-- [usb] host: ehci-sched: add spaces around operators (Torez Smith) [1332712]
-- [usb] host: ehci-sched: remove useless initializations (Torez Smith) [1332712]
-- [usb] host: ehci-sched: move constants to right (Torez Smith) [1332712]
-- [usb] host: ehci-sched: refactor scan_isoc function (Torez Smith) [1332712]
-- [usb] ehci: remove old stub_debug_files definition (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: add function output_buf_tds_dir() (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: prefer kmalloc_array over kmalloc times size (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: enclose conditional blocks with braces (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: replace sizeof operand (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: remove blank line before close brace (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: add blank line after declarations (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: convert macro to inline function (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: use a blank line after struct declarations (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: fix up function definitions (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: use scnprintf() in qh_lines() (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: put spaces around operators (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: fix up closing parenthesis (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: move trailing statements to next line (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: use C89-style comments (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: remove space before open square bracket (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: remove space before open parenthesis (Torez Smith) [1332712]
-- [usb] host: ehci.h: move constant to right (Torez Smith) [1332712]
-- [usb] host: ehci.h: move pointer operator to name side (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove macros trailing semicolon (Torez Smith) [1332712]
-- [usb] host: ehci.h: use space after comma (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove direct use of __attribute__ keyword (Torez Smith) [1332712]
-- [usb] host: ehci.h: fix single statement macros (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove space before open square bracket (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove space before function open parenthesis (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove space before comma (Torez Smith) [1332712]
-- [include] usb: core: switch bus numbering to using idr (Torez Smith) [1332712]
-- [usb] xhci: set slot context speed field to SuperSpeedPlus for USB 3.1 SSP devices (Torez Smith) [1332712]
-- [usb] xhci: USB 3.1 add default Speed Attributes to SuperSpeedPlus device capability (Torez Smith) [1332712]
-- [usb] xhci: set roothub speed to USB_SPEED_SUPER_PLUS for USB3.1 capable controllers (Torez Smith) [1332712]
-- [usb] xhci: Make sure xhci handles USB_SPEED_SUPER_PLUS devices (Torez Smith) [1332712]
-- [usb] ehci: improvements to unlink_empty_async_suspended() (Torez Smith) [1332712]
-- [usb] ehci: add a delay when unlinking an active QH (Torez Smith) [1332712]
-- [usb] ehci: improve handling of the ehci->iaa_in_progress flag (Torez Smith) [1332712]
-- [usb] ehci: store reason for unlinking a QH (Torez Smith) [1332712]
-- [usb] wusb: Use skcipher (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix error path (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: Remove memory allocation logs (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: Remove null test before calls to kfree() (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix coding style: remove assignment from if tests (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix coding style: braces, parenthesis, comment (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix coding style: vertical whitespace changes (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix coding style: horizontal whitespace changes (Torez Smith) [1332712]
-- [usb] core, wusbcore: use bus_to_hcd (Torez Smith) [1332712]
-- [usb] core, devio: use to_usb_device (Torez Smith) [1332712]
-- [usb] uas: add full support for RESPONSE IU (Torez Smith) [1332712]
-- [usb] ehci-hcd: Disable memory-write-invalidate when the driver is removed (Torez Smith) [1332712]
-- [usb] ehci-hcd: Cleanup memory resources when ehci_halt fails (Torez Smith) [1332712]
-- [usb] core: use kbasename() instead of open-coded variant (Torez Smith) [1332712]
-- [include] usb: Support USB 3.1 extended port status request (Torez Smith) [1332712]
-- [usb] add device descriptor for usb 3.1 root hub (Torez Smith) [1332712]
-- [usb] show speed "10000" in sysfs for USB 3.1 SuperSpeedPlus devices (Torez Smith) [1332712]
-- [usb] set USB 3.1 roothub device speed to USB_SPEED_SUPER_PLUS (Torez Smith) [1332712]
-- [usb] Use memdup_user to reuse the code (Torez Smith) [1332712]
-- [usb] core: devio.c: Removed unnecessary space (Torez Smith) [1332712]
-
-* Fri Jun 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-445.el7]
-- [pinctrl] baytrail: Be sure to clamp return value (Prarit Bhargava) [1339663]
-- [include] pinctrl: baytrail: Fix compilation warnings when !CONFIG_PM (Prarit Bhargava) [1339663]
-- [spi] spi-pxa2xx: Check status register to determine if SSSR_TINT is disabled (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Use raw_spinlock for locking (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Serialize all register access (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Drop FSF mailing address (Prarit Bhargava) [1339663]
-- [x86] platform/intel/baytrail: Add comments about why we disabled HPET on Baytrail (Prarit Bhargava) [1339663]
-- [include] spi: pxa2xx: Prepare for new Intel LPSS SPI type (Prarit Bhargava) [1339663]
-- [usb] dwc3: pci: add quirk for Baytrails (Prarit Bhargava) [1339663]
-- [cpufreq] intel_pstate: set BYT MSR with wrmsrl_on_cpu() (Prarit Bhargava) [1339663]
-- [cpufreq] intel_pstate: Change the setpoint for Atom params (Prarit Bhargava) [1339663]
-- [x86] reboot: Add ASRock Q1900DC-ITX mainboard reboot quirk (Prarit Bhargava) [1339663]
-- [idle] intel_idle: Update support for Silvermont Core in Baytrail SOC (Prarit Bhargava) [1339663]
-- [idle] intel_idle: support Bay Trail (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: baytrail_i2c_acquire() might sleep (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: cross-check lock functions (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: fix sparse warnings (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: fix typo in error path (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: describe magic numbers (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Save pin context over system sleep (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Rework interrupt handling (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Clear interrupt triggering from pins that are in GPIO mode (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Relax GPIO request rules (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: another fixup for proper Kconfig dependencies (Prarit Bhargava) [1339663]
-- [acpi] acpi / lpss: Always disable I2C host controllers (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: use proper Kconfig dependencies (Prarit Bhargava) [1339663]
-- [i2c] designware: Add i2c bus locking support (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: no need to provide clk_khz (Prarit Bhargava) [1339663]
-- [include] acpi: Eliminate CONFIG_.*{, _MODULE} #ifdef in favor of IS_ENABLED() (Prarit Bhargava) [1339663]
-- [acpi] int340x_thermal: add missing CONFIG_ prefix (Prarit Bhargava) [1339663]
-- [acpi] int340x_thermal: enumerate INT3401 for Intel SoC DTS thermal driver (Prarit Bhargava) [1339663]
-- [thermal] acpi/int340x_thermal: enumerate INT340X devices even if they're not in _ART/_TRT (Prarit Bhargava) [1339663]
-- [thermal] int340x: Handle properly the case when _trt or _art acpi entry is missing (Prarit Bhargava) [1339663]
-- [thermal] int340x: Clear the error value of the last acpi_bus_get_device() call (Prarit Bhargava) [1339663]
-- [thermal] int340x: avoid unnecessary pointer casting (Prarit Bhargava) [1339663]
-- [thermal] introduce int3400 thermal driver (Prarit Bhargava) [1339663]
-- [thermal] acpi: introduce ACPI int340x thermal scan handler (Prarit Bhargava) [1339663]
-- [include] acpi: make acpi_create_platform_device() an external API (Prarit Bhargava) [1339663]
-- [pinctrl] Move Intel Baytrail pinctrl driver under intel directory (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: add missing module removal support (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: show output gpio state correctly on Intel Baytrail (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Clear DIRECT_IRQ bit (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_pci: remove rts_n override from Baytrail quirk (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: resolve unbalanced IRQ wake disable warning (Prarit Bhargava) [1339663]
-- [acpi] acpi / lpss: support for 133MHz I2C source clock on Baytrail (Prarit Bhargava) [1339663]
-- [idle] intel_idle: Disable Baytrail Core and Module C6 auto-demotion (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Warn if direct IRQ GPIO set to output (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_dw: clock rate handling for all ACPI platforms (Prarit Bhargava) [1339663]
-- [spi] pxa2xx: fix incorrect SW mode chipselect setting for BayTrail LPSS SPI (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: Add Haswell PCI IDs (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Add pull type, strength and open drain to debugfs output (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Register GPIO chip after chip->to_irq is set (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Add back Baytrail-T ACPI ID (Prarit Bhargava) [1339663]
-- [i2c] designware: Mask all interrupts during i2c controller enable (Prarit Bhargava) [1339663]
-- [x86] iosf: Add PCI ID macros for better readability (Prarit Bhargava) [1339663]
-- [x86] intel: Add quirk to disable HPET for the Baytrail platform (Prarit Bhargava) [1339663]
-- [x86] hpet: Make boot_hpet_disable extern (Prarit Bhargava) [1339663]
-- [tty] 8250_dw: Support all baudrates on baytrail (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_dw: Report CTS asserted for auto flow (Prarit Bhargava) [1339663]
-- [spi] pxa2xx-pci: Add PCI mode support for BayTrail LPSS SPI (Prarit Bhargava) [1339663]
-- [net] rfkill: gpio: add ACPI IDs for a Broadcom bluetooth chip (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: set ideal HCNT, LCNT and SDA hold time value (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: add function mux checking in gpio pin request (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: add 10-bit addressing mode functionality for BYT I2C (Prarit Bhargava) [1339663]
-- [i2c] i801: enable Intel BayTrail SMBUS (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: Add Baytrail PCI IDs (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_pci: change BayTrail default uartclk (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_pci: more BayTrail error-free bauds (Prarit Bhargava) [1339663]
-- [x86] tsc: Add missing Baytrail frequency to the table (Prarit Bhargava) [1339663]
-- [x86] tsc: Fallback to normal calibration if fast MSR calibration fails (Prarit Bhargava) [1339663]
-- [x86] tsc, apic: Unbreak static (MSR) calibration when CONFIG_X86_LOCAL_APIC=n (Prarit Bhargava) [1339663]
-- [x86] tsc: Add static (MSR) TSC calibration on Intel Atom SoCs (Prarit Bhargava) [1339663]
-- [acpi] acpi / lpss: Add Intel BayTrail ACPI mode PWM (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: lock IRQs when starting them (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: show pin label with the reset of the gpio debug data (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_pci: add support for Intel BayTrail (Prarit Bhargava) [1339663]
-- [i2c] designware: make HCNT/LCNT values configurable (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: fix to avoid sparse warnings (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: introduce to_byt_gpio() macro (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: remove redundant ptr variable (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: change lvl to level (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: fix indentations (Prarit Bhargava) [1339663]
-- [include] pinctrl: add pin list based GPIO ranges (Prarit Bhargava) [1339663]
-- [pinctrl] add Intel BayTrail GPIO/pinctrl support (Prarit Bhargava) [1339663]
-- [spi] pxa2xx: add Intel BayTrail ACPI ID (Prarit Bhargava) [1339663]
-
-* Fri Jun 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-444.el7]
-- [netdrv] be2net: Fix provisioning of RSS for VFs in multi-partition configurations (Ivan Vecera) [1274911]
-- [netdrv] be2net: Enable Wake-On-LAN from shutdown for Skyhawk (Ivan Vecera) [1274911]
-- [netdrv] be2net: use max-TXQs limit too while provisioning VF queue pairs (Ivan Vecera) [1274911]
-- [netdrv] benet: be_resume needs to protect be_open with rtnl_lock (Ivan Vecera) [1274911]
-- [netdrv] be2net: don't enable multicast flag in be_enable_if_filters() routine (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix a UE caused by passing large frames to the ASIC (Ivan Vecera) [1274911]
-- [netdrv] be2net: Declare some u16 fields as u32 to improve performance (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix pcie error recovery in case of NIC+RoCE adapters (Ivan Vecera) [1274911]
-- [netdrv] be2net: Interpret and log new data that's added to the port misconfigure async event (Ivan Vecera) [1274911]
-- [netdrv] be2net: Request RSS capability of Rx interface depending on number of Rx rings (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix interval calculation in interrupt moderation (Ivan Vecera) [1274911]
-- [netdrv] be2net: Add retry in case of error recovery failure (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix Lancer error recovery (Ivan Vecera) [1274911]
-- [netdrv] be2net: Don't run ethtool self-tests for VFs (Ivan Vecera) [1274911]
-- [netdrv] be2net: SRIOV Queue distribution should factor in EQ-count of VFs (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix be_vlan_rem_vid() to check vlan id being removed (Ivan Vecera) [1274911]
-- [netdrv] be2net: check for INSUFFICIENT_PRIVILEGES error (Ivan Vecera) [1274911]
-- [netdrv] be2net: return error status from be_set_phys_id() (Ivan Vecera) [1274911]
-- [netdrv] be2net: bump up the driver version to 11.0.0.0 (Ivan Vecera) [1274911]
-- [netdrv] be2net: fix port-res desc query of GET_PROFILE_CONFIG FW cmd (Ivan Vecera) [1274911]
-- [netdrv] be2net: remove unused error variables (Ivan Vecera) [1274911]
-- [netdrv] be2net: remove a line of code that has no effect (Ivan Vecera) [1274911]
-- [netdrv] be2net: log digital signature errors while flashing FW image (Ivan Vecera) [1274911]
-- [netdrv] be2net: move FW flash cmd code to be_cmds.c (Ivan Vecera) [1274911]
-- [netdrv] be2net: cleanup FW flash image related macro defines (Ivan Vecera) [1274911]
-- [netdrv] be2net: avoid configuring VEPA mode on BE3 (Ivan Vecera) [1274911]
-- [netdrv] be2net: fix VF link state transition from disabled to auto (Ivan Vecera) [1274911]
-- [netdrv] be2net: Avoid accessing eq object in be_msix_register routine, when i < 0 (Ivan Vecera) [1274911]
-- [netdrv] be2net: remove local variable 'status' (Ivan Vecera) [1274911]
-- [netdrv] be2net: replace hardcoded values with existing define (Ivan Vecera) [1274911]
-- [netdrv] be2net: remove unused local rsstable array (Ivan Vecera) [1274911]
-- [netdrv] be2net: set pci_func_num while issuing GET_PROFILE_CONFIG cmd (Ivan Vecera) [1274911]
-- [netdrv] be2net: pad skb to meet minimum TX pkt size in BE3 (Ivan Vecera) [1274911]
-- [netdrv] be2net: release mcc-lock in a failure case in be_cmd_notify_wait() (Ivan Vecera) [1274911]
-- [netdrv] be2net: allow offloading with the same port for IPv4 and IPv6 (Ivan Vecera) [1274911]
-- [netdrv] be2net: protect eqo->affinity_mask from getting freed twice (Ivan Vecera) [1274911]
-- [netdrv] be2net: post buffers before destroying RXQs in Lancer (Ivan Vecera) [1274911]
-- [netdrv] be2net: enable IFACE filters only after creating RXQs (Ivan Vecera) [1274911]
-- [netdrv] be2net: Support vxlan offload stats in the driver (Ivan Vecera) [1274911]
-- [netdrv] bna: fix error handling (Ivan Vecera) [1288625]
-- [netdrv] bna: fix interrupts storm caused by erroneous packets (Ivan Vecera) [1288625]
-- [netdrv] bna: remove superfluous parentheses (Ivan Vecera) [1288625]
-- [netdrv] bna: make pointers to read-only inputs const (Ivan Vecera) [1288625]
-- [netdrv] bna: remove unnecessary cast of BIT value (Ivan Vecera) [1288625]
-- [netdrv] bna: Mass conversion of smp_mb__*() (Ivan Vecera) [1288625]
-- [netdrv] bna: fix Rx data corruption with VLAN stripping enabled and MTU > 4096 (Ivan Vecera) [1183969]
-- [netdrv] bna: fix list corruption (Ivan Vecera) [1342457]
-- [netdrv] bnx2: free temp_stats_blk on error path (Ivan Vecera) [1275798]
-- [netdrv] bnx2: fix a Null Pointer for stats_blk (Ivan Vecera) [1275798]
-- [scsi] bnx2fc: Update version number to 2.10.3 (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Check sc_cmd device and host pointer before returning the command to the mid-layer (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Print netdev device name when FCoE is successfully initialized (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Print when we send a fip keep alive (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Add driver tunables (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: bnx2fc_eh_abort(): fix wrong return code (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Show information about log levels in 'modinfo' (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Update version number to 2.9.6 (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Set ELS transfer length correctly for middle path commands (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Remove 'NetXtreme II' from source files (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Update copyright for 2015 (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: reduce stack usage in __bnx2fc_enable (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Read npiv table from nvram and create vports (Maurizio Lombardi) [1273084]
-- [scsi] be2iscsi: Add warning message for unsupported adapter (Maurizio Lombardi) [1346307]
-- [scsi] bnx2i: fix spelling mistake "complection" -> "completion" (Maurizio Lombardi) [1273086]
-- [scsi] bnx2i: silence uninitialized variable warnings (Maurizio Lombardi) [1273086]
-- [net] Introduce devlink infrastructure (Ivan Vecera) [1268334]
-- [netdrv] get rid of unnecessary initializations in .get_drvinfo() (Ivan Vecera) [1268334]
-- [net] bridge/nl: remove wrong use of NLM_F_MULTI (Ivan Vecera) [1268334]
-- [net] netdevice.h: fix ndo_bridge_* comments (Ivan Vecera) [1268334]
-- [net] rename netdev_phys_port_id to more generic name (Ivan Vecera) [1268334]
-- [net] bridge: add flags argument to ndo_bridge_setlink and ndo_bridge_dellink (Ivan Vecera) [1268334]
-- [mm] new helper: memdup_user_nul() (Ivan Vecera) [1268334]
-- [include] Add IS_REACHABLE macro (Ivan Vecera) [1268334]
-- [kernel] timekeeping: Provide ktime_get[*]_ns() helpers (Ivan Vecera) [1268334]
-- [net] tso: add support for IPv6 (Ivan Vecera) [1268334]
-- [net] tso: fix unaligned access to crafted TCP header in helper API (Ivan Vecera) [1268334]
-- [net] tso: Export symbols for modular build (Ivan Vecera) [1268334]
-- [net] Add a software TSO helper API (Ivan Vecera) [1268334]
-- [include] average: provide macro to create static EWMA (Ivan Vecera) [1268334]
-- [net] Add support for configuring VF GUIDs (Ivan Vecera) [1268334]
-- [net] adjust napi_consume_skb to handle non-NAPI callers (Ivan Vecera) [1268334]
-- [net] Add skb_inner_transport_offset function (Ivan Vecera) [1268334]
-- [net] add SKB_GSO_TUNNEL_REMCSUM to SKB_GSO2_MASK (Ivan Vecera) [1268334]
-- [net] leave space to allow adding new GSO bits (Ivan Vecera) [1268334]
-- [net] bonding: Notify state change on slaves (Ivan Vecera) [1268334]
-- [net] Add event for a change in slave state (Ivan Vecera) [1268334]
-- [net] ipv6: Export addrconf_ifid_eui48 (Ivan Vecera) [1268334]
-- [net] openvswitch: Fix cached ct with helper (Lance Richardson) [1297465]
-- [net] openvswitch: __nf_ct_l{3, 4}proto_find() always return a valid pointer (Lance Richardson) [1297465]
-- [net] openvswitch: call only into reachable nf-nat code (Lance Richardson) [1297465]
-- [net] openvswitch: Fix checking for new expected connections (Lance Richardson) [1297465]
-- [net] openvswitch: Use proper buffer size in nla_memcpy (Lance Richardson) [1297465]
-- [net] openvswitch: Interface with NAT (Lance Richardson) [1297465]
-- [net] openvswitch: Delay conntrack helper call for new connections (Lance Richardson) [1297465]
-- [net] openvswitch: Handle NF_REPEAT in conntrack action (Lance Richardson) [1297465]
-- [net] openvswitch: Find existing conntrack entry after upcall (Lance Richardson) [1297465]
-- [net] openvswitch: Update the CT state key only after nf_conntrack_in() (Lance Richardson) [1297465]
-- [net] openvswitch: Add commentary to conntrack.c (Lance Richardson) [1297465]
-- [net] netfilter: Allow calling into nat helper without skb_dst (Lance Richardson) [1297465]
-- [net] netfilter: Remove IP_CT_NEW_REPLY definition (Lance Richardson) [1297465]
-- [net] Fix typo in netdev_intersect_features (Lance Richardson) [1297465]
-- [net] Eliminate NETIF_F_GEN_CSUM and NETIF_F_V[46]_CSUM (Lance Richardson) [1297465]
-- [net] openvswitch: Fix conntrack compilation without mark (Lance Richardson) [1297465]
-- [net] sctp: Potentially-Failed state should not be reached from unconfirmed state (Xin Long) [1333696]
-- [net] sctp: fix the transports round robin issue when init is retransmitted (Xin Long) [1333696]
-- [net] sctp: fix suboptimal edge-case on non-active active/retrans path selection (Xin Long) [1333696]
-- [net] sctp: spare unnecessary comparison in sctp_trans_elect_best (Xin Long) [1333696]
-- [net] sctp: improve sctp_select_active_and_retran_path selection (Xin Long) [1333696]
-- [net] sctp: migrate most recently used transport to ktime (Xin Long) [1333696]
-- [net] sctp: refactor active path selection (Xin Long) [1333696]
-- [net] sctp: remove NULL check in sctp_assoc_update_retran_path (Xin Long) [1333696]
-- [net] sctp: rework multihoming retransmission path selection to rfc4960 (Xin Long) [1333696]
-- [net] sctp: retran_path not set properly after transports recovering (Xin Long) [1333696]
-- [net] iucv: properly clone LSM attributes to newly created child sockets (Paul Moore) [1164429]
-- [net] tun: don't require serialization lock on tx (Paolo Abeni) [1328874]
-- [net] tun: use per cpu variables for stats accounting (Paolo Abeni) [1328874]
-
-* Thu Jun 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-443.el7]
-- [kernel] sched/deadline: Disable SCHED_DEADLINE programmatically (Xunlei Pang) [1298387]
-- [kernel] sched: Fix sched_setparam() policy == -1 logic (Xunlei Pang) [1298387]
-- [kernel] sched: Move SCHED_RESET_ON_FORK into attr::sched_flags (Xunlei Pang) [1298387]
-- [kernel] sched: Preserve the nice level over sched_setscheduler() and sched_setparam() calls (Xunlei Pang) [1298387]
-- [kernel] sched/core: Clear the root_domain cpumasks in init_rootdomain() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove dl_new from struct sched_dl_entity (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove superfluous call to (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Always calculate end of period on sched_yield() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Optimize sequential update_curr_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix trivial typo in printk() message (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix the earliest_dl.next logic (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix migration of SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline, rtmutex: Fix open coded check in rt_mutex_waiter_less() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Unify dl_time_before() usage (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove a redundant condition from task_woken_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove needless parameter in dl_runtime_exceeded() (Xunlei Pang) [1298387]
-- [kernel] sched: Remove superfluous resetting of the p->dl_throttled flag (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Reduce rq lock contention by eliminating locking of non-feasible target (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Make init_sched_dl_class() __init (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Optimize pull_dl_task() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix sched class hopping CBS hole (Xunlei Pang) [1298387]
-- [kernel] sched/core: Fix regression in cpuset_cpu_inactive() for suspend (Xunlei Pang) [1298387]
-- [kernel] sched/core: Drop debugging leftover trace_printk call (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Support DL task migration during CPU hotplug (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Always enqueue on previous rq when dl_task_timer() fires (Xunlei Pang) [1298387]
-- [kernel] sched/core: Check for available DL bandwidth in cpuset_cpu_inactive() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix rt runtime corruption when dl fails its global constraints (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Avoid a superfluous check (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add rq->clock update skip for dl task yield (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Do update_rq_clock() in yield_task_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Prevent enqueue of a sleeping task in dl_task_timer() (Xunlei Pang) [1298387]
-- [kernel] sched: Make dl_task_time() use task_rq_lock() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove cpu_active_mask from cpudl_find() (Xunlei Pang) [1298387]
-- [kernel] sched: Fix hrtick_start() on UP (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix stale yield state (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix hrtick for a non-leftmost task (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix deadline parameter modification handling (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Modify cpudl::free_cpus to reflect rd->online (Xunlei Pang) [1298387]
-- [kernel] sched: Fix crash if cpuset_cpumask_can_shrink() is passed an empty cpumask (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Avoid double-accounting in case of missed deadlines (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix migration of SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Introduce start_hrtick_dl() for !CONFIG_SCHED_HRTICK (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix rq->dl.pushable_tasks bug in push_dl_task() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Don't check CONFIG_SMP in switched_from_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Reschedule from switched_from_dl() after a successful pull (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Push task away if the deadline is equal to curr during wakeup (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix artificial overrun introduced by yield_task_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/core: Use dl_bw_of() under rcu_read_lock_sched() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Implement cancel_dl_timer() to use in switched_from_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Don't balance during wakeup if wakee is pinned (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Don't check SD_BALANCE_FORK (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Ensure that updates to exclusive cpusets don't break AC (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix bandwidth check/update when migrating tasks between exclusive cpusets (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Do not try to push tasks if pinned task switches to dl (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix preemption checks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix races between rt_mutex_setprio() and dl_task_timer() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Don't replenish from a !SCHED_DEADLINE entity (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Use dl_bw_of() under rcu_read_lock_sched() (Xunlei Pang) [1298387]
-- [kernel] sched: Use dl_bw_of() under RCU read lock (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix inter- exclusive cpusets migrations (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Clear dl_entity params when setscheduling to different class (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Simplify pick_dl_task() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix a precision problem in the microseconds range (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Delete extraneous extern for to_ratio() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix race in dl_task_timer() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Restrict user params max value to 2^63 ns (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix sched_yield() behavior (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Deny unprivileged users to set/change SCHED_DEADLINE policy (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Prevent rt_time growth to infinity (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Cleanup RT leftovers from {inc/dec}_dl_migration (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove useless dl_nr_total (Xunlei Pang) [1298387]
-- [kernel] sched/core: Make dl_b->lock IRQ safe (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix overflow to handle period==0 and deadline!=0 (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix bad accounting of nr_running (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Skip in switched_to_dl() if task is current (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: No need to check p if dl_se is valid (Xunlei Pang) [1298387]
-- [kernel] sched: Fix up attr::sched_priority warning (Xunlei Pang) [1298387]
-- [kernel] sched: Fix up scheduler syscall LTP fails (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove unused variables (Xunlei Pang) [1298387]
-- [powerpc] Wire up sched_setattr and sched_getattr syscalls (Xunlei Pang) [1298387]
-- [s390] wire up sys_sched_setattr/sys_sched_getattr (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Replace NR_CPUS arrays (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix memory leak (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Switch CPU's presence test order (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Test for CPU's presence explicitly (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix sparse static warnings (Xunlei Pang) [1298387]
-- [documentation] sched/deadline: sched/deadline: Add deadline documentation (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix hotplug admission control (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove the sysctl_sched_dl knobs (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix up the smp-affinity mask tests (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: speed up SCHED_DEADLINE pushes with a push-heap (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add bandwidth management for SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add SCHED_DEADLINE inheritance logic (Xunlei Pang) [1298387]
-- [kernel] rtmutex: Turn the plist into an rb-tree (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add latency tracing for SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add period support for SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add SCHED_DEADLINE avg_update accounting (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add SCHED_DEADLINE SMP-related data structures & logic (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Provide update_curr callback for dl_sched_class (Xunlei Pang) [1298387]
-- [kernel] sched: deadline: Use hrtimer_start() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add SCHED_DEADLINE structures & implementation (Xunlei Pang) [1298387]
-- [kernel] sched: Add sched_class->task_dead() method (Xunlei Pang) [1298387]
-- [kernel] sched: Add new scheduler syscalls to support an extended scheduling parameters ABI (Xunlei Pang) [1298387]
-
-* Thu Jun 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-442.el7]
-- [x86] thinkpad_acpi: Fix inconsistent mute LED after resume (Jaroslav Kysela) [1261896 1288173]
-- [x86] thinkpad_acpi: Try to use full software mute control (Jaroslav Kysela) [1261896 1288173]
-- [x86] thinkpad_acpi: Add support for HKEY version 0x200 (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: off by one in adaptive_keyboard_hotkey_notify_hotkey() (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Add support for more adaptive kbd buttons (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Add adaptive_kbd_mode sysfs attr (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Factor out get/set adaptive kbd mode (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Remember adaptive kbd presence (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Update mapping for F12 hotkey on *40 models to KEY_FILE (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Add mappings for F9 - F12 hotkeys on X240 / T440 / T540 (Prarit Bhargava) [1344403]
-- [gpu] i915/fbc: Disable on HSW by default for now (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/nouveau/disp/sor/gm107: training pattern registers are like gm200 (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/nouveau/disp/sor/gf119: both links use the same training register (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/nouveau/fbcon: fix out-of-bounds memory accesses (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/radeon: hard reset r600 and newer GPU when hibernating (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/radeon: allow to force hard GPU reset (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/mgag200: Black screen fix for G200e rev 4 (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/amdkfd: destroy dbgmgr in notifier release (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/amdkfd: unbind only existing processes (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Remove wm_config from dev_priv/intel_atomic_state (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Reject display updates that exceed wm limitations (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Calculate watermarks during atomic 'check' (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Propagate watermark calculation failures up the call chain (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Use a bitmask to track dirty pipe watermarks (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Allow watermark calculation on in-flight atomic state (v3) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Calculate plane WM's from state (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Drop re-allocation of DDB at atomic commit (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Compute DDB allocation at atomic check time (v4) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Add distrust_bios_wm flag to dev_priv (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Allow skl_allocate_pipe_ddb() to operate on in-flight state (v3) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Track whether an atomic transaction changes the active CRTC's (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Store plane minimum blocks in CRTC wm state (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Allow calculation of data rate for in-flight state (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Cache plane data rates in CRTC state (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Rename s/skl_compute_pipe_wm/skl_build_pipe_wm/ (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Reorganize WM structs/unions in CRTC state (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/atomic: Verify connector->funcs != NULL when clearing states (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Discard previous atomic state on resume if connectors change (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/fb_helper: Fix references to dev->mode_config.num_connector (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/fbdev: Fix num_connector references in intel_fb_initial_config() (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Change WARN_ON(!wm_changed) to I915_STATE_WARN_ON() (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [drm] upstream sync to v4.6 (Rob Clark) [1171268 1171270 1238635 1243336 1243398 1273363 1293302 1300583 1310232]
-- [kernel] time: Expose getrawmonotonic64 for in-kernel uses (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-
-* Thu Jun 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-441.el7]
-- [x86] revert "asmlinkage, xen, kvm: Make {xen, kvm}_lock_spinning global and visible" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Extend definitions of _ASM_* with a raw format" (Josh Poimboeuf) [1347232]
-- [fs] revert "replace remaining users of arch_fast_hash with jhash" (Josh Poimboeuf) [1347232]
-- [tools] revert "lib: kill arch_fast_hash library bits" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/decoder: Create artificial 3rd byte for 2-byte VEX" (Josh Poimboeuf) [1347232]
-- [x86] revert "jump-label: Use best default nops for inital jump label calls" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Clean up frame pointer macros" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Add C versions of frame pointer macros" (Josh Poimboeuf) [1347232]
-- [include] revert "objtool: Add STACK_FRAME_NON_STANDARD() macro" (Josh Poimboeuf) [1347232]
-- [scripts] revert "objtool: Mark non-standard object files and directories" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Add tool to perform compile-time stack metadata validation" (Josh Poimboeuf) [1347232]
-- [scripts] revert "objtool: Add CONFIG_STACK_VALIDATION option" (Josh Poimboeuf) [1347232]
-- [x86] revert "objtool: Enable stack metadata validation on 64-bit x86" (Josh Poimboeuf) [1347232]
-- [tools] revert "x86/asm/decoder: Use explicitly signed chars" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Support CROSS_COMPILE" (Josh Poimboeuf) [1347232]
-- [makefile] revert "tools: Support relative directory path for 'O='" (Josh Poimboeuf) [1347232]
-- [scripts] revert "objtool: Detect and warn if libelf is missing and don't break the build" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Prevent infinite recursion in noreturn detection" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Detect infinite recursion" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Compile with debugging symbols" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Fix false positive warnings related to sibling calls" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Add helper macros for traversing instructions" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Remove superflous INIT_LIST_HEAD" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Rename some variables and functions" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Fix false positive warnings for functions with multiple switch statements" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Add several performance improvements" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Only print one warning per function" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Add workaround for GCC switch jump table bug" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Detect falling through to the next function" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Allow building with older libelf" (Josh Poimboeuf) [1347232]
-- [x86] revert "kprobes: Mark kretprobe_trampoline() stack frame as non-standard" (Josh Poimboeuf) [1347232]
-- [x86] revert "xen: Mark xen_cpuid() stack frame as non-standard" (Josh Poimboeuf) [1347232]
-- [kernel] revert "sched: Mark __schedule() stack frame as non-standard" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/efi: Add efi stub code to objtool whitelist" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Add several arch/x86/lib files to objtool whitelist" (Josh Poimboeuf) [1347232]
-- [x86] revert "asmlinkage: Make kprobes code visible and fix assembler code" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/64: Open-code register save/restore in trace_hardirqs*() thunks" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/entry: Create stack frames in thunk functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "entry/64: Fix stack return address retrieval in thunk" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/bpf: Annotate callable functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/bpf: Create stack frames in bpf_jit.S" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Move .Lbswap_mask data to .rodata section" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Simplify stack usage in sha-mb functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Don't use RBP as a scratch register" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Create stack frames in crypto functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Move jump_table to .rodata section" (Josh Poimboeuf) [1347232]
-- [x86] revert "crypto: sha1-mb - make sha1_x8_avx2() conform to C function ABI" (Josh Poimboeuf) [1347232]
-- [x86] revert "paravirt: Add stack frame dependency to PVOP inline asm calls" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/acpi: Create a stack frame in do_suspend_lowlevel()" (Josh Poimboeuf) [1347232]
-- [x86] revert "asmlinkage, paravirt: Make paravirt thunks global" (Josh Poimboeuf) [1347232]
-- [x86] revert "paravirt: Create a stack frame in PV_CALLEE_SAVE_REGS_THUNK" (Josh Poimboeuf) [1347232]
-- [x86] revert "uaccess: Add stack frame output operand in get_user() inline asm" (Josh Poimboeuf) [1347232]
-- [x86] revert "xen: Add stack frame dependency to hypercall inline asm calls" (Josh Poimboeuf) [1347232]
-- [x86] revert "kvm: Add stack frame dependency to fastop() inline asm" (Josh Poimboeuf) [1347232]
-- [x86] revert "kvm: Set ELF function type for fastop functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "kvm: Make test_cc() always inline" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/xen: Create stack frames in xen-asm.S" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/xen: Set ELF function type for xen_adjust_exception_frame()" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/power: Create stack frames in hibernate_asm_64.S" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Create stack frames in rwsem functions" (Josh Poimboeuf) [1347232]
-- [watchdog] revert "lto, watchdog/hpwdt.c: make assembler label global" (Josh Poimboeuf) [1347232]
-- [watchdog] revert "hpwdt: Create stack frame in asminline_call()" (Josh Poimboeuf) [1347232]
-- [x86] revert "kvm: Add stack frame dependency to vmcs_readl()" (Josh Poimboeuf) [1347232]
-
-* Thu Jun 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-440.el7]
-- [net] sctp: sctp_diag should dump sctp socket type (Xin Long) [1223783]
-- [net] sctp: fix double EPs display in sctp_diag (Xin Long) [1223783]
-- [net] fix INET_DIAG_MAX value (Xin Long) [1223783]
-- [net] use jiffies_to_msecs to replace EXPIRES_IN_MS in inet/sctp_diag (Xin Long) [1223783]
-- [net] sctp: fix some rhashtable functions using in sctp proc/diag (Xin Long) [1223783]
-- [net] sctp: merge the seq_start/next/exits in remaddrs and assocs (Xin Long) [1223783]
-- [net] sctp: add the sctp_diag.c file (Xin Long) [1223783]
-- [net] sctp: export some functions for sctp_diag in inet_diag (Xin Long) [1223783]
-- [net] sctp: export some apis or variables for sctp_diag and reuse some for proc (Xin Long) [1223783]
-- [net] sctp: add sctp_info dump api for sctp_diag (Xin Long) [1223783]
-- [net] sock_diag: specify info_size per inet protocol (Xin Long) [1223783]
-- [net] sock_diag: add SK_MEMINFO_DROPS (Xin Long) [1223783]
-- [net] inet_diag: factorize code in new inet_diag_msg_common_fill() helper (Xin Long) [1223783]
-- [net] inet_diag: add const to inet_diag_req_v2 (Xin Long) [1223783]
-- [net] inet_diag: cleanups (Xin Long) [1223783]
-- [net] constify sock_diag_check_cookie() (Xin Long) [1223783]
-- [net] inet_diag: remove duplicate code from inet_twsk_diag_dump() (Xin Long) [1223783]
-- [net] vxlan: allow setting ipv6 traffic class (dst_cache part) (Jiri Benc) [1323141]
-- [net] ip_tunnel: fix preempt warning in ip tunnel creation/updating (Jiri Benc) [1323141]
-- [net] Make DST_CACHE a silent config option (Jiri Benc) [1323141]
-- [net] tunnels: fix usage of dst_cache on xmit (Jiri Benc) [1323141]
-- [net] ipv4: add dst cache support for gre lwtunnels (Jiri Benc) [1323141]
-- [net] geneve: add dst caching support (Jiri Benc) [1323141]
-- [net] add dst_cache to ovs vxlan lwtunnel (Jiri Benc) [1323141]
-- [net] use dst_cache for vxlan device (Jiri Benc) [1323141]
-- [net] ip_tunnel: replace dst_cache with generic implementation (Jiri Benc) [1323141]
-- [net] replace dst_cache ip6_tunnel implementation with the generic one (Jiri Benc) [1323141]
-- [net] add dst_cache support (Jiri Benc) [1323141]
-- [net] ipv6: Check expire on DST_NOCACHE route (Jiri Benc) [1323141]
-- [net] ipv6: Check rt->dst.from for the DST_NOCACHE route (Jiri Benc) [1323141]
-- [net] ip6_tunnel: fix dst leak (Jiri Benc) [1323141]
-- [net] ipv6: Replace spinlock with seqlock and rcu in ip6_tunnel (Jiri Benc) [1323141]
-- [net] ipv6: Avoid double dst_free (Jiri Benc) [1323141]
-- [net] ipv6: Fix dst_entry refcnt bugs in ip6_tunnel (Jiri Benc) [1323141]
-- [net] ipv6: Rename the dst_cache helper functions in ip6_tunnel (Jiri Benc) [1323141]
-- [net] ipv6: Refactor common ip6gre_tunnel_init codes (Jiri Benc) [1323141]
-- [net] ipv6: Avoid creating RTF_CACHE from a rt that is not managed by fib6 tree (Jiri Benc) [1323141]
-- [net] ipv6: Don't call with rt6_uncached_list_flush_dev (Jiri Benc) [1323141]
-- [mm] kmemleak_alloc_percpu() should follow the gfp from per_alloc() (Jiri Benc) [1323141]
-- [net] ipv6: ipv6_select_ident() returns a __be32 (Jiri Benc) [1323141]
-- [net] ipv6: udp: Do a route lookup and update during release_cb (Jiri Benc) [1323141]
-- [net] ipv6: datagram: Update dst cache of a connected datagram sk during pmtu update (Jiri Benc) [1323141]
-- [net] ipv6: datagram: Refactor dst lookup and update codes to a new function (Jiri Benc) [1323141]
-- [net] ipv6: datagram: Refactor flowi6 init codes to a new function (Jiri Benc) [1323141]
-- [net] ipv6: Fix a potential deadlock when creating pcpu rt (Jiri Benc) [1323141]
-- [net] ipv6: Add rt6_make_pcpu_route() (Jiri Benc) [1323141]
-- [net] ipv6: Remove un-used argument from ip6_dst_alloc() (Jiri Benc) [1323141]
-- [net] ipv6: Initialize rt6_info properly in ip6_blackhole_route() (Jiri Benc) [1323141]
-- [net] ipv6: Move common init code for rt6_info to a new function rt6_info_init() (Jiri Benc) [1323141]
-- [net] ipv6: Create percpu rt6_info (Jiri Benc) [1323141]
-- [net] ipv6: Keep track of DST_NOCACHE routes in case of iface down/unregister (Jiri Benc) [1323141]
-- [net] ipv6: Create RTF_CACHE clone when FLOWI_FLAG_KNOWN_NH is set (Jiri Benc) [1323141]
-- [net] ipv6: Set FLOWI_FLAG_KNOWN_NH at flowi6_flags (Jiri Benc) [1323141]
-- [net] ipv6: Add rt6_get_cookie() function (Jiri Benc) [1323141]
-- [net] ipv6: Only create RTF_CACHE routes after encountering pmtu exception (Jiri Benc) [1323141]
-- [net] ipv6: Remove external dependency on rt6i_dst and rt6i_src (Jiri Benc) [1323141]
-- [net] ipv6: Clean up ipv6_select_ident() and ip6_fragment() (Jiri Benc) [1323141]
-- [net] ipv6: Remove DST_METRICS_FORCE_OVERWRITE and _rt6i_peer (Jiri Benc) [1323141]
-- [net] sit: fix sit0 percpu double allocations (Jiri Benc) [1323141]
-- [net] sit: Use ipip6_tunnel_init as the ndo_init function. (Jiri Benc) [1323141]
-- [net] ipv6: do not erase dst address with flow label destination (Jiri Benc) [1323141]
-- [net] ipv6: remove old conditions on flow label sharing (Jiri Benc) [1323141]
-- [net] ipv4: do not use this_cpu_ptr() in preemptible context (Jiri Benc) [1323141]
-- [net] ipv6: use addrconf_get_prefix_route() to remove peer addr (Jiri Benc) [1323141]
-- [net] ipv6: fix a refcnt leak with peer addr (Jiri Benc) [1323141]
-- [net] ipv6: use ipv6_addr_any() helper (Jiri Benc) [1323141]
-- [net] ipv6: minor fib6 cleanups like type safety, bool conversion, inline removal (Jiri Benc) [1323141]
-- [net] ipv6: remove parameter rt from fib6_prune_clones() (Jiri Benc) [1323141]
-- [net] ipv6: namespace cleanups (Jiri Benc) [1323141]
-- [net] ipv6: Remove rebundant rt6i_nsiblings initialization (Jiri Benc) [1323141]
-- [net] sctp: Don't lookup dst if transport dst is still valid (Jiri Benc) [1323141]
-- [net] ipv6: stop sending PTB packets for MTU < 1280 (Jiri Benc) [1323141]
-- [net] ipv4: ip_tunnel: use net namespace from rtable not socket (Jiri Benc) [1323141]
-- [net] ipv6: hash net ptr into fragmentation bucket selection (Jiri Benc) [1323141]
-- [net] ipv4: hash net ptr into fragmentation bucket selection (Jiri Benc) [1323141]
-
-* Wed Jun 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-439.el7]
-- [x86] kvm: Add stack frame dependency to vmcs_readl() (Josh Poimboeuf) [1320250]
-- [watchdog] hpwdt: Create stack frame in asminline_call() (Josh Poimboeuf) [1320250]
-- [watchdog] lto, watchdog/hpwdt.c: make assembler label global (Josh Poimboeuf) [1320250]
-- [x86] asm: Create stack frames in rwsem functions (Josh Poimboeuf) [1320250]
-- [x86] asm/power: Create stack frames in hibernate_asm_64.S (Josh Poimboeuf) [1320250]
-- [x86] asm/xen: Set ELF function type for xen_adjust_exception_frame() (Josh Poimboeuf) [1320250]
-- [x86] asm/xen: Create stack frames in xen-asm.S (Josh Poimboeuf) [1320250]
-- [x86] kvm: Make test_cc() always inline (Josh Poimboeuf) [1320250]
-- [x86] kvm: Set ELF function type for fastop functions (Josh Poimboeuf) [1320250]
-- [x86] kvm: Add stack frame dependency to fastop() inline asm (Josh Poimboeuf) [1320250]
-- [x86] xen: Add stack frame dependency to hypercall inline asm calls (Josh Poimboeuf) [1320250]
-- [x86] uaccess: Add stack frame output operand in get_user() inline asm (Josh Poimboeuf) [1320250]
-- [x86] paravirt: Create a stack frame in PV_CALLEE_SAVE_REGS_THUNK (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage, paravirt: Make paravirt thunks global (Josh Poimboeuf) [1320250]
-- [x86] asm/acpi: Create a stack frame in do_suspend_lowlevel() (Josh Poimboeuf) [1320250]
-- [x86] paravirt: Add stack frame dependency to PVOP inline asm calls (Josh Poimboeuf) [1320250]
-- [x86] crypto: sha1-mb - make sha1_x8_avx2() conform to C function ABI (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Move jump_table to .rodata section (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Create stack frames in crypto functions (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Don't use RBP as a scratch register (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Simplify stack usage in sha-mb functions (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Move .Lbswap_mask data to .rodata section (Josh Poimboeuf) [1320250]
-- [x86] asm/bpf: Create stack frames in bpf_jit.S (Josh Poimboeuf) [1320250]
-- [x86] asm/bpf: Annotate callable functions (Josh Poimboeuf) [1320250]
-- [x86] entry/64: Fix stack return address retrieval in thunk (Josh Poimboeuf) [1320250]
-- [x86] asm/entry: Create stack frames in thunk functions (Josh Poimboeuf) [1320250]
-- [x86] asm/64: Open-code register save/restore in trace_hardirqs*() thunks (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage: Make kprobes code visible and fix assembler code (Josh Poimboeuf) [1320250]
-- [x86] asm: Add several arch/x86/lib files to objtool whitelist (Josh Poimboeuf) [1320250]
-- [x86] asm/efi: Add efi stub code to objtool whitelist (Josh Poimboeuf) [1320250]
-- [kernel] sched: Mark __schedule() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [x86] xen: Mark xen_cpuid() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [x86] kprobes: Mark kretprobe_trampoline() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [tools] objtool: Allow building with older libelf (Josh Poimboeuf) [1320250]
-- [tools] objtool: Detect falling through to the next function (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add workaround for GCC switch jump table bug (Josh Poimboeuf) [1320250]
-- [tools] objtool: Only print one warning per function (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add several performance improvements (Josh Poimboeuf) [1320250]
-- [tools] objtool: Fix false positive warnings for functions with multiple switch statements (Josh Poimboeuf) [1320250]
-- [tools] objtool: Rename some variables and functions (Josh Poimboeuf) [1320250]
-- [tools] objtool: Remove superflous INIT_LIST_HEAD (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add helper macros for traversing instructions (Josh Poimboeuf) [1320250]
-- [tools] objtool: Fix false positive warnings related to sibling calls (Josh Poimboeuf) [1320250]
-- [tools] objtool: Compile with debugging symbols (Josh Poimboeuf) [1320250]
-- [tools] objtool: Detect infinite recursion (Josh Poimboeuf) [1320250]
-- [tools] objtool: Prevent infinite recursion in noreturn detection (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Detect and warn if libelf is missing and don't break the build (Josh Poimboeuf) [1320250]
-- [makefile] tools: Support relative directory path for 'O=' (Josh Poimboeuf) [1320250]
-- [tools] objtool: Support CROSS_COMPILE (Josh Poimboeuf) [1320250]
-- [tools] x86/asm/decoder: Use explicitly signed chars (Josh Poimboeuf) [1320250]
-- [x86] objtool: Enable stack metadata validation on 64-bit x86 (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Add CONFIG_STACK_VALIDATION option (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add tool to perform compile-time stack metadata validation (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Mark non-standard object files and directories (Josh Poimboeuf) [1320250]
-- [include] objtool: Add STACK_FRAME_NON_STANDARD() macro (Josh Poimboeuf) [1320250]
-- [x86] asm: Add C versions of frame pointer macros (Josh Poimboeuf) [1320250]
-- [x86] asm: Clean up frame pointer macros (Josh Poimboeuf) [1320250]
-- [x86] jump-label: Use best default nops for inital jump label calls (Josh Poimboeuf) [1320250]
-- [x86] asm/decoder: Create artificial 3rd byte for 2-byte VEX (Josh Poimboeuf) [1320250]
-- [tools] lib: kill arch_fast_hash library bits (Josh Poimboeuf) [1320250]
-- [fs] replace remaining users of arch_fast_hash with jhash (Josh Poimboeuf) [1320250]
-- [x86] asm: Extend definitions of _ASM_* with a raw format (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage, xen, kvm: Make {xen, kvm}_lock_spinning global and visible (Josh Poimboeuf) [1320250]
-
-* Wed Jun 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-438.el7]
-- [x86] perf: Add constraint for IVB CYCLE_ACTIVITY:CYCLES_LDM_PENDING (Jiri Olsa) [1337884]
-- [x86] perf: Make L1D_PEND_MISS.FB_FULL not constrained on Haswell (Jiri Olsa) [1337884]
-- [x86] perf: Fix INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA macro (Jiri Olsa) [1337884]
-- [powerpc] eeh: Restore initial state in eeh_pe_reset_and_recover() (David Gibson) [1266833]
-- [powerpc] eeh: Don't report error in eeh_pe_reset_and_recover() (David Gibson) [1266833]
-- [powerpc] Fix definition of SIAR and SDAR registers (Thomas Huth) [1342027]
-- [powerpc] kvm: Fix emulated MMIO sign-extension (Thomas Huth) [1342027]
-- [powerpc] kvm: book3s_pr: Manage single-step mode (Thomas Huth) [1342027]
-- [powerpc] kvm: Account TCE-containing pages in locked_vm (Thomas Huth) [1342027]
-- [powerpc] kvm: Use RCU for arch.spapr_tce_tables (Thomas Huth) [1342027]
-- [powerpc] kvm: Rework H_PUT_TCE/H_GET_TCE handlers (Thomas Huth) [1342027]
-- [kernel] list: Add lockless list traversal primitives (Thomas Huth) [1342027]
-- [s390] ftrace: enforce DYNAMIC_FTRACE if FUNCTION_TRACER is selected (Jessica Yu) [1117927]
-- [s390] ftrace: add HAVE_DYNAMIC_FTRACE_WITH_REGS support (Jessica Yu) [1117927]
-- [s390] ftrace: optimize function graph caller code (Jessica Yu) [1117927]
-- [s390] pass march flag to assembly files as well (Jessica Yu) [1117927]
-- [scsi] libsas: remove task_collector mode (David Milburn) [1295910]
-- [scsi] libsas: use ata_dev_classify() (David Milburn) [1295910]
-- [scsi] isci: remove SCSI host before detaching from SAS transport (David Milburn) [1295910]
-- [scsi] isci: Spelling s/stucture/structure/ (David Milburn) [1295910]
-- [scsi] isci: Use pci_enable_msix_exact() instead of pci_enable_msix() (David Milburn) [1295910]
-- [scsi] isci: update version to 1.2 (David Milburn) [1295910]
-- [scsi] isci: Fix a infinite loop (David Milburn) [1295910]
-- [hv] vmbus: Use READ_ONCE() to read variables that are volatile (Vitaly Kuznetsov) [1339684]
-- [hv] vmbus: Introduce functions for estimating room in the ring buffer (Vitaly Kuznetsov) [1339684]
-- [hv] vmbus: Fix signaling logic in hv_need_to_signal_on_read() (Vitaly Kuznetsov) [1339684]
-- [md] dm thin: remove __bio_inc_remaining() and switch to using bio_inc_remaining() (Mike Snitzer) [1337254]
-
-* Wed Jun 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-437.el7]
-- [acpi] acpi / lpss: Fix up acpi_lpss_create_device() (Myron Stowe) [1344513]
-- [acpi] x86/pci/acpi: Make all resources except io 0xcf8-0xcff available on PCI bus (Myron Stowe) [1344513]
-- [acpi] x86/pci/acpi: Relax ACPI resource descriptor checks to work around BIOS bugs (Myron Stowe) [1344513]
-- [x86] pci/acpi: Ignore resources consumed by host bridge itself (Myron Stowe) [1344513]
-- [acpi] acpi / resources: Change pr_info() to pr_debug() for debug information (Myron Stowe) [1344513]
-- [x86] pci/acpi: Use common ACPI resource interfaces to simplify implementation (Myron Stowe) [1344513]
-- [x86] pci: Fix the range check for IO resources (Myron Stowe) [1344513]
-- [include] pci: Use common resource list management code instead of private implementation (Myron Stowe) [1344513]
-- [kernel] resources: Move struct resource_list_entry from ACPI into resource core (Myron Stowe) [1344513]
-- [include] acpi: Introduce helper function acpi_dev_filter_resource_type() (Myron Stowe) [1344513]
-- [include] acpi: Add field offset to struct resource_list_entry (Myron Stowe) [1344513]
-- [acpi] Translate resource into master side address for bridge window resources (Myron Stowe) [1344513]
-- [include] acpi: Return translation offset when parsing ACPI address space resources (Myron Stowe) [1344513]
-- [acpi] Enforce stricter checks for address space descriptors (Myron Stowe) [1344513]
-- [acpi] Set flag IORESOURCE_UNSET for unassigned resources (Myron Stowe) [1344513]
-- [acpi] Normalize return value of resource parser functions (Myron Stowe) [1344513]
-- [acpi] Fix a bug in parsing ACPI Memory24 resource (Myron Stowe) [1344513]
-- [acpi] Add prefetch decoding to the address space parser (Myron Stowe) [1344513]
-- [acpi] Move the window flag logic to the combined parser (Myron Stowe) [1344513]
-- [acpi] Unify the parsing of address_space and ext_address_space (Myron Stowe) [1344513]
-- [acpi] Let the parser return false for disabled resources (Myron Stowe) [1344513]
-- [acpi] Use the length check for io resources as well (Myron Stowe) [1344513]
-- [acpi] Implement proper length checks for mem resources (Myron Stowe) [1344513]
-- [acpi] Remove redundant check in function acpi_dev_resource_address_space() (Myron Stowe) [1344513]
-- [include] acpica: resources: Provide common part for struct acpi_resource_address structures (Myron Stowe) [1344513]
-- [acpi] Correct return value of acpi_dev_resource_address_space() (Myron Stowe) [1344513]
-- [acpi] acpi / resources: only reject zero length resources based at address zero (Myron Stowe) [1344513]
-- [pnp] pnp / acpi: proper handling of ACPI IO/Memory resource parsing failures (Myron Stowe) [1344513]
-- [acpi] acpi / resources: ignore invalid ACPI device resources (Myron Stowe) [1344513]
-- [dma] acpi-dma: remove ugly conversion (Myron Stowe) [1344513]
-- [acpi] acpi / scan: Drop unnecessary label from acpi_create_platform_device() (Myron Stowe) [1344513]
-- [acpi] acpi / scan: Allow platform device creation without any IO resources (Myron Stowe) [1344513]
-- [sound] pci: hda/ca0132 - use generic parser for some models (Jaroslav Kysela) [918176]
-- [sound] alsa: hda/realtek - Add support for ALC295/ALC3254 (Jaroslav Kysela) [1331010]
-- [sound] revert "alsa: hda_intel: add card number to irq description" (Jaroslav Kysela) [1288993]
-- [s390] mm: fix asce_bits handling with dynamic pagetable levels (Hendrik Brueckner) [1337933]
-- [nvme] add missing lock nesting notation (David Milburn) [1344385]
-- [x86] amd: Fix last level cache topology for AMD Fam17h systems (Kim Naru) [1303705]
-- [x86] pci: Mark Intel Grangeville ixgbe variant 0x15AC as supported (Prarit Bhargava) [1342078]
-- [x86] efi: Include a .bss section within the PE/COFF headers (Denys Vlasenko) [1335188]
-- [x86] kvm: Conditionally register IRQ bypass consumer (Alex Williamson) [1341790]
-- [virt] irqbypass: Disallow NULL token (Alex Williamson) [1341790]
-- [pci] Work around Intel Sunrise Point PCH incorrect ACS capability (Alex Williamson) [1320742]
-- [pci] Reverse standard ACS vs device-specific ACS enabling (Alex Williamson) [1320742]
-- [vfio] pci: Add test for BAR restore (Alex Williamson) [1286274]
-- [pci] Hide broken INTx support from user (Alex Williamson) [1286274]
-- [vfio] make vfio run on s390 (Alex Williamson) [1286274]
-- [pci] Mark Intel i40e NIC INTx masking as broken (Alex Williamson) [1286274]
-- [powerpc] kernel: Enable seccomp filter (Gustavo Duarte) [1186835]
-- [powerpc] Use orig_gpr3 in syscall_get_arguments() (Gustavo Duarte) [1186835]
-- [powerpc] Drop unused syscall_get_error() (Gustavo Duarte) [1186835]
-- [powerpc] Rework syscall_get_arguments() so there is only one loop (Gustavo Duarte) [1186835]
-- [powerpc] kernel: Change the do_syscall_trace_enter() API (Gustavo Duarte) [1186835]
-- [powerpc] kernel: Add SIG_SYS support for compat tasks (Gustavo Duarte) [1186835]
-- [powerpc] Change syscall_get_nr() to return int (Gustavo Duarte) [1186835]
-- [powerpc] Don't negate error in syscall_set_return_value() (Gustavo Duarte) [1186835]
-- [powerpc] kernel: Switch to using MAX_ERRNO (0/9) (Gustavo Duarte) [1186835]
-- [powerpc] pseries: Fix IBM_ARCH_VEC_NRCORES_OFFSET since POWER8NVL was added (Thomas Huth) [1340445]
-- [powerpc] pseries: Add POWER8NVL support to ibm, client-architecture-support call (Thomas Huth) [1340445]
-
-* Wed Jun 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-436.el7]
-- [md] block: make bio_inc_remaining() interface accessible again (Mike Snitzer) [1337254]
-- [md] dm raid: make sure no feature flags are set in metadata (Mike Snitzer) [1337254]
-- [md] dm ioctl: drop use of __GFP_REPEAT in copy_params()'s __vmalloc() call (Mike Snitzer) [1337254]
-- [md] dm stats: fix spelling mistake in Documentation (Mike Snitzer) [1337254]
-- [md] dm cache: update cache-policies.txt now that mq is an alias for smq (Mike Snitzer) [1337254]
-- [md] dm mpath: eliminate use of spinlock in IO fast-paths (Mike Snitzer) [1337254]
-- [md] dm mpath: move trigger_event member to the end of 'struct multipath' (Mike Snitzer) [1337254]
-- [md] dm mpath: use atomic_t for counting members of 'struct multipath' (Mike Snitzer) [1337254]
-- [md] dm mpath: switch to using bitops for state flags (Mike Snitzer) [1337254]
-- [md] dm thin: Remove return statement from void function (Mike Snitzer) [1337254]
-- [md] dm: remove unused mapped_device argument from free_tio() (Mike Snitzer) [1337254]
-- [mm] document improved handling of swappiness==0 (Jerome Marchand) [1341488]
-- [mm] vmstat: make vmstat_update deferrable (Jerome Marchand) [1294987]
-- [mm] vmstat: make quiet_vmstat lighter (Jerome Marchand) [1294987]
-- [mm] vmstat: Remove BUG_ON from vmstat_update (Jerome Marchand) [1294987]
-- [mm] vmstat: make vmstat_updater deferrable again and shut down on idle (Jerome Marchand) [1294987]
-- [mm] fix anon_vma->degree underflow in anon_vma endless growing prevention (Jerome Marchand) [1341497]
-- [mm] fix corner case in anon_vma endless growing prevention (Jerome Marchand) [1341497]
-- [mm] prevent endless growth of anon_vma hierarchy (Jerome Marchand) [1341497]
-- [mm] memory_hotplug: check for missing sections in test_pages_in_a_zone() (George Beshers) [1326837]
-- [mm] compaction: make isolate_freepages start at pageblock boundary ("Herton R. Krzesinski") [1344770]
-- [mm] compaction: detect when scanners meet in isolate_freepages ("Herton R. Krzesinski") [1344770]
-- [mm] compaction: reset cached scanner pfn's before reading them ("Herton R. Krzesinski") [1344770]
-- [mm] rmap: fix use-after-free in __put_anon_vma ("Herton R. Krzesinski") [1344770]
-- [kernel] sched: Use CPUPRI_NR_PRIORITIES instead of MAX_RT_PRIO in cpupri check ("Herton R. Krzesinski") [1344770]
-- [kernel] workqueue: fix a possible race condition between rescuer and pwq-release ("Herton R. Krzesinski") [1344770]
-- [kernel] workqueue: make rescuer_thread() empty wq->maydays list before exiting ("Herton R. Krzesinski") [1344770]
-- [kernel] workqueue: fix bugs in wq_update_unbound_numa() failure path ("Herton R. Krzesinski") [1344770]
-- [include] trace: module: Maintain a valid user count ("Herton R. Krzesinski") [1344770]
-- [kernel] hrtimer: Set expiry time before switch_hrtimer_base() ("Herton R. Krzesinski") [1344770]
-- [kernel] timer: Prevent overflow in apply_slack ("Herton R. Krzesinski") [1344770]
-- [mm] make fixup_user_fault() check the vma access rights too ("Herton R. Krzesinski") [1344770]
-- [kernel] futex: Prevent attaching to kernel threads ("Herton R. Krzesinski") [1344770]
-- [kernel] tracepoint: Do not waste memory on mods with no tracepoints ("Herton R. Krzesinski") [1344770]
-- [kernel] hung_task: check the value of "sysctl_hung_task_timeout_sec" ("Herton R. Krzesinski") [1344770]
-- [kernel] exit: call disassociate_ctty() before exit_task_namespaces() ("Herton R. Krzesinski") [1344770]
-- [kernel] wait: fix reparent_leader() vs EXIT_DEAD->EXIT_ZOMBIE race ("Herton R. Krzesinski") [1344770]
-- [kernel] tracing: Fix array size mismatch in format string ("Herton R. Krzesinski") [1344770]
-- [kernel] cpuset: fix a locking issue in cpuset_migrate_mm() (Mateusz Guzik) [1342400]
-- [kernel] ptrace: make wait_on_bit(JOBCTL_TRAPPING_BIT) in ptrace_attach() killable (Jiri Olsa) [1334503]
-- [kernel] sched/numa: Cap PTE scanning overhead to 3 of run time (Rik van Riel) [1276398]
-- [kernel] sched/numa: Fix math underflow in task_tick_numa() (Rik van Riel) [1276398]
-
-* Tue Jun 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-435.el7]
-- [net] openvswitch: internal_set_rx_headroom() can be static (Jakub Sitnicki) [1322337]
-- [net] veth: implement ndo_set_rx_headroom (Jakub Sitnicki) [1322337]
-- [net] tun: implement ndo_set_rx_headroom (Jakub Sitnicki) [1322337]
-- [net] openvswitch: propagate per dp max headroom to all vports (Jakub Sitnicki) [1322337]
-- [net] bridge: notify enslaved devices of headroom changes (Jakub Sitnicki) [1322337]
-- [net] netdev: introduce ndo_set_rx_headroom (Jakub Sitnicki) [1322337]
-- [net] bridge: inherit slave devices needed_headroom (Jakub Sitnicki) [1322337]
-- [net] ndo: consolidate reserved fields (Jiri Benc) [1339642]
-- [net] move ndo_set_vf_trust to net_device_ops_extended (Jiri Benc) [1339642]
-- [net] move ndo_dfwd_add/del_station to net_device_ops_extended (Jiri Benc) [1339642]
-- [net] move ndo_set_tx_maxrate to net_device_ops_extended (Jiri Benc) [1339642]
-- [net] fix wrong merge of ndo_set_vf_rate documentation (Jiri Benc) [1339642]
-- [net] introduce net_device_ops_extended (Jiri Benc) [1339642]
-- [net] vlan: pull on __vlan_insert_tag error path and fix csum correction (Aaron Conole) [1328847]
-- [net] use skb_postpush_rcsum instead of own implementations (Aaron Conole) [1328847]
-- [net] add skb_postpush_rcsum and fix dev_forward_skb occasions (Aaron Conole) [1328847]
-- [net] sctp: add support for RPS and RFS (Marcelo Leitner) [981353]
-
-* Tue Jun 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-434.el7]
-- [netdrv] sfc: report supported link speeds on SFP connections (Jarod Wilson) [1166525]
-- [netdrv] be2net: Don't leak iomapped memory on removal (Ivan Vecera) [1315715]
-- [netdrv] be2net: don't report EVB for older chipsets when SR-IOV is disabled (Ivan Vecera) [1304414]
-- [netdrv] be2net: remove vlan promisc capability from VF's profile descriptors (Ivan Vecera) [1251919]
-- [netdrv] be2net: support ethtool get-dump option (Ivan Vecera) [1271067]
-- [netdrv] tg3: Fix for tg3 transmit queue 0 timed out when too many gso_segs (Ivan Vecera) [1287875]
-- [netdrv] tg3: avoid uninitialized variable warning (Ivan Vecera) [1287875]
-- [netdrv] tg3: Fix temperature reporting (Ivan Vecera) [1287875]
-- [netdrv] tg3: use napi_complete_done() (Ivan Vecera) [1287875]
-- [netdrv] bnx2x, tg3: Replace put_page(virt_to_head_page()) with skb_free_frag() (Ivan Vecera) [1287875]
-- [netdrv] qlcnic: potential NULL dereference in qlcnic_83xx_get_minidump_template() (Harish Patil) [1275799]
-- [netdrv] qlcnic: Update version to 5.3.64 (Harish Patil) [1275799]
-- [netdrv] qlcnic: protect qlicnic_attach_func with rtnl_lock (Harish Patil) [1275799]
-- [netdrv] qlcnic: Fix mailbox completion handling during spurious interrupt (Harish Patil) [1275799]
-- [netdrv] qlcnic: Remove unnecessary usage of atomic_t (Harish Patil) [1275799]
-- [netdrv] qlcnic: correctly handle qlcnic_alloc_mbx_args (Harish Patil) [1275799]
-- [netdrv] qlcnic: constify qlcnic_dcb_ops structures (Harish Patil) [1275799]
-- [netdrv] qlcnic: fix a loop exit condition better (Harish Patil) [1275799]
-- [netdrv] qlcnic: fix a timeout loop (Harish Patil) [1275799]
-- [netdrv] qlcnic: constify qlcnic_mbx_ops structure (Harish Patil) [1275799]
-- [netdrv] qlcnic: track vxlan port count (Harish Patil) [1275799]
-- [netdrv] qlcnic: delete redundant memsets (Harish Patil) [1275799]
-- [netdrv] qlcnic: Update version to 5.3.63 (Harish Patil) [1275799]
-- [netdrv] qlcnic: Don't use kzalloc unncecessarily for allocating large chunk of memory (Harish Patil) [1275799]
-- [netdrv] qlcnic: Add new VF device ID 0x8C30 (Harish Patil) [1275799]
-- [netdrv] qlcnic: Print firmware minidump buffer and template header addresses (Harish Patil) [1275799]
-- [netdrv] qlcnic: Add support to enable capability to extend minidump for iSCSI (Harish Patil) [1275799]
-- [netdrv] qlcnic: Rearrange ordering of header files inclusion (Harish Patil) [1275799]
-- [netdrv] qlcnic: Fix corruption while copying (Harish Patil) [1275799]
-- [netdrv] qlcnic: Deletion of unnecessary memset (Harish Patil) [1275799]
-- [netdrv] qlcnic: clean up sysfs error codes (Harish Patil) [1275799]
-- [netdrv] ethernet: codespell comment spelling fixes (Harish Patil) [1275799]
-- [netdrv] treewide: Fix typo in printk messages (Harish Patil) [1275799]
-- [netdrv] bnx2x: allow adding VLANs while interface is down (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: avoid leaking memory on bnx2x_init_one() failures (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Prevent false warning for lack of FC NPIV (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: don't wait for Tx completion on recovery (Michal Schmidt) [1275795 1320748]
-- [netdrv] bnx2x: fix indentation in bnx2x_sp_task() (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: define event data reserved fields as little-endian (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: define fields of struct cfc_del_event_data as little-endian (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: access cfc_del_event only if the opcode is CFC_DEL (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: fix receive of VF->PF mailbox messages by the PF on big-endian (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: fix sending VF->PF messages on big-endian (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: fix crash on big-endian when adding VLAN (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: add a separate GENEVE Kconfig symbol (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix 84833 phy command handler (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix led setting for 84858 phy (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Correct 84858 PHY fw version (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix 84833 RX CRC (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix link-forcing for KR2 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Warn about grc timeouts in register dump (Michal Schmidt) [1271075 1275795]
-- [netdrv] bnx2x: Add missing HSI for big-endian machines (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: extend DCBx support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add support for single-port DCBx (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add Geneve inner-RSS support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Remove unneccessary EXPORT_SYMBOL (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Prevent FW assertion when using Vxlan (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: remove rx_pkt/rx_calls (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: avoid soft lockup in bnx2x_poll() (Michal Schmidt) [1178598 1275795]
-- [netdrv] bnx2x: simplify distinction between port and func stats (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: change FW GRO error message to WARN_ONCE (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: drop redundant error message about allocation failure (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Utilize FW 7.13.1.0 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Show port statistics in Multi-function (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add new SW stat 'tx_exhaustion_events' (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Prevent UDP 4-tuple configurations on older adapters (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: byte swap rss_key to comply to Toeplitz specs (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix vxlan removal (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: track vxlan port count (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add new device ids under the Qlogic vendor (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix vxlan endianity issue (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add vxlan RSS support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix bandwidth allocation for some MF modes (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Free NVRAM lock at end of each page (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Prevent null pointer dereference on SKB release (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add BD support for storage (Michal Schmidt) [1275795]
-- [netdrv] cnic: Add the interfaces to get FC-NPIV table (Michal Schmidt) [1275795]
-- [netdrv] cnic: Populate upper layer driver state in MFW (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Correct logic for pvid configuration (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix VLANs null-pointer for 57710, 57711 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix compilation when CONFIG_BNX2X_SRIOV is not set (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: add vlan filtering offload (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Bump up driver version to 1.712.30 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add MFW dump support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: new Multi-function mode - BD (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add 84858 phy support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Rebrand from 'broadcom' into 'qlogic' (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Utilize FW 7.12.30 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: only report most generic filters in get_ts_info (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Replace put_page(virt_to_head_page()) with skb_free_frag() (Michal Schmidt) [1275795]
-- [netdrv] ptp: bnx2x: convert to the 64 bit get/set time methods (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: convert to CYCLECOUNTER_MASK macro (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: conversion of smp_mb__*() (Michal Schmidt) [1275795]
-- [net] can: replace timestamp as unique skb attribute (John Linville) [1333130]
-- [net] can: introduce new raw socket option to join the given CAN filters (John Linville) [1333130]
-- [net] can: fix loss of CAN frames in raw_rcv (John Linville) [1333130]
-- [netdrv] can: usb_8dev: fix urb leak on failure path in usb_8dev_start() (John Linville) [1333130]
-- [netdrv] can: esd_usb2: check index of array before accessing (John Linville) [1333130]
-- [net] can: add missing initialisations in CAN related skbuffs (John Linville) [1333130]
-- [netdrv] can: ems_usb: fix coding style (John Linville) [1333130]
-- [netdrv] can: ems_usb: Fix possible tx overflow (John Linville) [1333130]
-- [net] can: fix multiple delivery of a single CAN frame for overlapping CAN filters (John Linville) [1333130]
-- [netdrv] can: ems_usb: fix endianess of CAN ID (John Linville) [1333130]
-- [netdrv] can: kvaser_usb: Do not sleep in atomic context (John Linville) [1333130]
-- [netdrv] can: kvaser_usb: Reset all URB tx contexts upon channel close (John Linville) [1333130]
-- [netdrv] can: kvaser_usb: Don't free packets when tight on URBs (John Linville) [1333130]
-- [net] can: fix spelling errors (John Linville) [1333130]
-- [netdrv] can: peak_usb: fix multi-byte values endianess (John Linville) [1333130]
-- [netdrv] can: peak_usb: fix cleanup sequence order in case of error during init (John Linville) [1333130]
-- [netdrv] can: peak_usb: fix memset() usage (John Linville) [1333130]
-- [netdrv] can: esd_usb2: fix memory leak on disconnect (John Linville) [1333130]
-- [netdrv] can: sja1000_isa: add locking for indirect register access mode (John Linville) [1333130]
-- [netdrv] can: c_can: use proper type for 'instance' (John Linville) [1333130]
-- [netdrv] can: c_can: Provide protection in the xmit path (John Linville) [1333130]
-- [netdrv] can: c_can: Remove EOB exit (John Linville) [1333130]
-- [netdrv] can: move sanity check for bitrate and tq into can_get_bittiming (John Linville) [1333130]
-- [netdrv] can: preserve skbuff protocol in can_put_echo_skb (John Linville) [1333130]
-- [netdrv] can: peak_usb: fix mem leak in pcan_usb_pro_init() (John Linville) [1333130]
-- [netdrv] can: ems_usb: fix urb leaks on failure paths (John Linville) [1333130]
-- [netdrv] can: c_can: fix calculation of transmitted bytes on tx complete (John Linville) [1333130]
-- [netdrv] can: kvaser_usb: fix usb endpoints detection (John Linville) [1333130]
-- [netdrv] can: c_can: Fix RX message handling, handle lost message before EOB (John Linville) [1333130]
-- [netdrv] slip/slcan: added locking in wakeup function (John Linville) [1333130]
-- [netdrv] can: pcan_usb_core: fix memory leak on failure paths in peak_usb_start() (John Linville) [1333130]
-- [netdrv] can: c_can: fix error checking of priv->instance in probe() (John Linville) [1333130]
-- [netdrv] can: Convert to use devm_ioremap_resource (John Linville) [1333130]
-
-* Fri Jun 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-433.el7]
-- [net] netfilter: fix oops with metadata dst (Lance Richardson) [1283886]
-- [net] gre: reject GUE and FOU in collect metadata mode (Lance Richardson) [1283886]
-- [net] gre: build header correctly for collect metadata tunnels (Lance Richardson) [1283886]
-- [net] gre: do not assign header_ops in collect metadata mode (Lance Richardson) [1283886]
-- [net] openvswitch: Orphan skbs before IPv6 defrag (Lance Richardson) [1283886]
-- [net] ip_tunnel: Fix returned tc and hoplimit values for route with IPv6 encapsulation (Lance Richardson) [1283886]
-- [net] vxlan: fix sparse warnings (Lance Richardson) [1283886]
-- [net] geneve: fix populating tclass in geneve_get_v6_dst (Lance Richardson) [1283886]
-- [net] vxlan: fix populating tclass in vxlan6_get_route (Lance Richardson) [1283886]
-- [net] geneve: support setting IPv6 flow label (Lance Richardson) [1283886]
-- [net] vxlan: support setting IPv6 flow label (Lance Richardson) [1283886]
-- [net] ip_tunnel: add support for setting flow label via collect metadata (Lance Richardson) [1283886]
-- [net] vxlan: allow setting ipv6 traffic class (Lance Richardson) [1283886]
-- [net] vxlan: fix missing options_len update on RX with collect metadata (Lance Richardson) [1283886]
-- [net] vxlan: simplify metadata_dst usage in vxlan_rcv (Lance Richardson) [1283886]
-- [net] vxlan: consolidate rx handling to a single function (Lance Richardson) [1283886]
-- [net] vxlan: move ECN decapsulation to a separate function (Lance Richardson) [1283886]
-- [net] vxlan: move inner L2 header processing to a separate function (Lance Richardson) [1283886]
-- [net] vxlan: consolidate GBP handling even more (Lance Richardson) [1283886]
-- [net] geneve: Support outer IPv4 Tx checksums by default (Lance Richardson) [1283886]
-- [net] lwtunnel: fix rx checksum setting for lwt devices tunneling over ipv6 (Lance Richardson) [1283886]
-- [net] vxlan: do not use fdb in metadata mode (Lance Richardson) [1283886]
-- [net] geneve: clear IFF_TX_SKB_SHARING (Lance Richardson) [1283886]
-- [net] vxlan: clear IFF_TX_SKB_SHARING (Lance Richardson) [1283886]
-- [net] iptunnel: scrub packet in iptunnel_pull_header (Lance Richardson) [1283886]
-- [net] vxlan: move vxlan device lookup before iptunnel_pull_header (Lance Richardson) [1283886]
-- [net] geneve: move geneve device lookup before iptunnel_pull_header (Lance Richardson) [1283886]
-- [net] geneve: implement geneve_get_sk_family helper (Lance Richardson) [1283886]
-- [net] geneve: Refine MTU limit (Lance Richardson) [1283886]
-- [net] vxlan: tun_id is 64bit, not 32bit (Lance Richardson) [1283886]
-- [net] vxlan: treat vni in metadata based tunnels consistently (Lance Richardson) [1283886]
-- [net] vxlan: clean up rx error path (Lance Richardson) [1283886]
-- [net] vxlan: clean up extension handling on rx (Lance Richardson) [1283886]
-- [net] vxlan: move GBP header parsing to a separate function (Lance Richardson) [1283886]
-- [net] vxlan: simplify vxlan_remcsum (Lance Richardson) [1283886]
-- [net] vxlan: keep flags and vni in network byte order (Lance Richardson) [1283886]
-- [net] vxlan: introduce vxlan_hdr (Lance Richardson) [1283886]
-- [net] vxlan: udp_tunnel duplicate include net/udp_tunnel.h (Lance Richardson) [1283886]
-- [net] vxlan, gre, geneve: Set a large MTU on ovs-created tunnel devices (Lance Richardson) [1283886]
-- [net] geneve: Relax MTU constraints (Lance Richardson) [1283886]
-- [net] vxlan: Relax MTU constraints (Lance Richardson) [1283886]
-- [net] vxlan: consolidate vxlan_xmit_skb and vxlan6_xmit_skb (Lance Richardson) [1283886]
-- [net] vxlan: consolidate csum flag handling (Lance Richardson) [1283886]
-- [net] vxlan: consolidate output route calculation (Lance Richardson) [1283886]
-- [net] vxlan: restructure vxlan.h definitions (Lance Richardson) [1283886]
-- [net] vxlan: remove duplicated macros (Lance Richardson) [1283886]
-- [net] vxlan: cleanup types (Lance Richardson) [1283886]
-- [net] vxlan: fix a out of bounds access in __vxlan_find_mac (Lance Richardson) [1283886]
-- [net] inet: frag: Always orphan skbs inside ip_defrag() (Lance Richardson) [1283886 1338099]
-- [net] tunnels: Allow IPv6 UDP checksums to be correctly controlled (Lance Richardson) [1283886]
-- [net] gro: Make GRO aware of lightweight tunnels (Lance Richardson) [1283886]
-- [net] openvswitch: update kernel doc for struct vport (Lance Richardson) [1283886]
-- [net] openvswitch: fix struct geneve_port member name (Lance Richardson) [1283886]
-- [net] udp: restrict offloads to one namespace (Lance Richardson) [1283886]
-- [net] vxlan: fix test which detect duplicate vxlan iface (Lance Richardson) [1283886]
-- [net] ipv4: fix endianness warnings in ip_tunnel_core.c (Lance Richardson) [1283886]
-- [net] ip6_tunnel: make ip6tunnel_xmit definition conditional (Lance Richardson) [1283886]
-- [net] ip_tunnel: Move stats update to iptunnel_xmit() (Lance Richardson) [1283886]
-- [net] geneve: initialize needed_headroom (Lance Richardson) [1283886]
-- [net] openvswitch: correct encoding of set tunnel action attributes (Lance Richardson) [1283886]
-- [net] geneve: Add geneve_get_rx_port support (Lance Richardson) [1283886]
-- [net] geneve: Add geneve udp port offload for ethernet devices (Lance Richardson) [1283886]
-- [net] geneve: UDP checksum configuration via netlink (Lance Richardson) [1283886]
-- [net] geneve: Fix IPv6 xmit stats update (Lance Richardson) [1283886]
-- [net] vxlan: interpret IP headers for ECN correctly (Lance Richardson) [1283886]
-- [net] vxlan: support ndo_fill_metadata_dst also for IPv6 (Lance Richardson) [1283886]
-- [net] vxlan: move IPv6 outpute route calculation to a function (Lance Richardson) [1283886]
-- [net] vxlan: fix incorrect RCO bit in VXLAN header (Lance Richardson) [1283886]
-- [net] openvswitch: fix hangup on vxlan/gre/geneve device deletion (Lance Richardson) [1283886]
-- [net] openvswitch: properly refcount vport-vxlan module (Lance Richardson) [1283886]
-- [net] ip_tunnel: disable preemption when updating per-cpu tstats (Lance Richardson) [1283886]
-- [net] tun_dst: Fix potential NULL dereference (Lance Richardson) [1283886]
-- [net] geneve: add IPv6 bits to geneve_fill_metadata_dst (Lance Richardson) [1283886]
-- [net] geneve: handle ipv6 priority like ipv4 tos (Lance Richardson) [1283886]
-- [net] geneve: implement support for IPv6-based tunnels (Lance Richardson) [1283886]
-- [net] openvswitch: Fix egress tunnel info (Lance Richardson) [1283886]
-- [net] openvswitch: Use dev_queue_xmit for vport send (Lance Richardson) [1283886]
-- [net] openvswitch: Fix incorrect type use (Lance Richardson) [1283886]
-- [net] openvswitch: Allocate memory for ovs internal device stats. (Lance Richardson) [1283886]
-- [net] tunnels: Don't require remote endpoint or ID during creation (Lance Richardson) [1283886]
-- [net] openvswitch: Scrub skb between namespaces (Lance Richardson) [1283886]
-- [net] openvswitch: netlink attributes for IPv6 tunneling (Lance Richardson) [1283886]
-- [net] openvswitch: add tunnel protocol to sw_flow_key (Lance Richardson) [1283886]
-- [net] openvswitch: Fix ovs_vport_get_stats() (Lance Richardson) [1283886]
-- [net] ipv4: fix reply_dst leakage on arp reply (Lance Richardson) [1283886]
-- [net] vxlan: support both IPv4 and IPv6 sockets in a single vxlan device (Lance Richardson) [1283886]
-- [net] vxlan: make vxlan_sock_add and vxlan_sock_release complementary (Lance Richardson) [1283886]
-- [net] lwtunnel: remove source and destination UDP port config option (Lance Richardson) [1283886]
-- [net] ipv4: send arp replies to the correct tunnel (Lance Richardson) [1283886]
-- [net] geneve: use network byte order for destination port config parameter (Lance Richardson) [1283886]
-- [net] geneve: ensure ECN info is handled properly in all tx/rx paths (Lance Richardson) [1283886]
-- [net] geneve: remove vlan-related feature assignment (Lance Richardson) [1283886]
-- [net] ip6tunnel: make rx/tx bytes counters consistent (Lance Richardson) [1283886]
-- [net] iptunnel: make rx/tx bytes counters consistent (Lance Richardson) [1283886]
-- [net] vxlan: reject IPv6 addresses if IPv6 is not configured (Lance Richardson) [1283886]
-- [net] vxlan: set needed headroom correctly (Lance Richardson) [1283886]
-- [net] openvswitch: Fix mask generation for nested attributes (Lance Richardson) [1283886]
-- [net] vxlan: Refactor vxlan_udp_encap_recv() to kill compiler warning (Lance Richardson) [1283886]
-- [net] ip_tunnel: Use API to access tunnel metadata options (Lance Richardson) [1283886]
-- [net] openvswitch: Remove vport-net (Lance Richardson) [1283886]
-- [net] openvswitch: Remove vport stats (Lance Richardson) [1283886]
-- [net] openvswitch: Remove egress_tun_info (Lance Richardson) [1283886]
-- [net] openvswitch: Remove vport get_name() (Lance Richardson) [1283886]
-- [net] geneve: Use GRO cells infrastructure (Lance Richardson) [1283886]
-- [net] vxlan: do not receive IPv4 packets on IPv6 socket (Lance Richardson) [1283886]
-- [net] ip_tunnels: record IP version in tunnel info (Lance Richardson) [1283886]
-- [net] ip_tunnels: convert the mode field of ip_tunnel_info to flags (Lance Richardson) [1283886]
-- [net] geneve: Move device hash table to geneve socket (Lance Richardson) [1283886]
-- [net] geneve: Consolidate Geneve functionality in single module (Lance Richardson) [1283886]
-- [net] openvswitch: Use Geneve device (Lance Richardson) [1283886]
-- [net] geneve: Add support to collect tunnel metadata (Lance Richardson) [1283886]
-- [net] geneve: Make dst-port configurable (Lance Richardson) [1283886]
-- [net] tunnel: introduce udp_tun_rx_dst() (Lance Richardson) [1283886]
-- [net] geneve: Use skb mark and protocol to lookup route (Lance Richardson) [1283886]
-- [net] geneve: Initialize ethernet address in device setup (Lance Richardson) [1283886]
-- [net] vxlan: fix multiple inclusion of vxlan.h (Lance Richardson) [1283886]
-- [net] route: fix a use-after-free (Lance Richardson) [1283886]
-- [net] lwtunnel: Add cfg argument to build_state (Lance Richardson) [1283886]
-- [net] vxlan: GRO support at tunnel layer (Lance Richardson) [1283886]
-- [net] gro: Fix remcsum offload to deal with frags in GRO (Lance Richardson) [1283886]
-- [net] ipv6: route: per route IP tunnel metadata via lightweight tunnel (Lance Richardson) [1283886]
-- [net] ipv6: route: extend flow representation with tunnel key (Lance Richardson) [1283886]
-- [net] vxlan: metadata based tunneling for IPv6 (Lance Richardson) [1283886]
-- [net] vxlan: do not shadow flags variable (Lance Richardson) [1283886]
-- [net] vxlan: provide access function for vxlan socket address family (Lance Richardson) [1283886]
-- [net] ipv6: drop metadata dst in ip6_route_input (Lance Richardson) [1283886]
-- [net] route: move lwtunnel state to dst_entry (Lance Richardson) [1283886]
-- [net] ip_tunnels: use tos and ttl fields also for IPv6 (Lance Richardson) [1283886]
-- [net] ip_tunnels: add IPv6 addresses to ip_tunnel_key (Lance Richardson) [1283886]
-- [net] ip_tunnels: use offsetofend (Lance Richardson) [1283886]
-- [net] ip_tunnels: use u8/u16/u32 (Lance Richardson) [1283886]
-- [net] ip_tunnels: remove custom alignment and packing (Lance Richardson) [1283886]
-- [net] ipv4: Make fib_encap_match static (Lance Richardson) [1283886]
-- [net] lwtunnel: Fix the sparse warnings in fib_encap_match (Lance Richardson) [1283886]
-- [net] lwtunnel: ip tunnel: fix multiple routes with different encap (Lance Richardson) [1283886]
-- [net] lwtunnel: fix memory leak (Lance Richardson) [1283886]
-- [net] geneve: convert to using IFF_NO_QUEUE (Lance Richardson) [1283886]
-- [net] lwtunnel: Add support to redirect dst.input (Lance Richardson) [1283886]
-- [net] lwtunnel: rename ip lwtunnel attributes (Lance Richardson) [1283886]
-- [net] vxlan: fix fdb_dump index calculation (Lance Richardson) [1283886]
-- [net] gre: Remove support for sharing GRE protocol hook (Lance Richardson) [1283886]
-- [net] openvswitch: Use regular GRE net_device instead of vport (Lance Richardson) [1283886]
-- [net] gre: Add support to collect tunnel metadata (Lance Richardson) [1283886]
-- [net] openvswitch: Move tunnel destroy function to oppenvswitch module (Lance Richardson) [1283886]
-- [net] vxlan: combine VXLAN_FLOWBASED into VXLAN_COLLECT_METADATA (Lance Richardson) [1283886]
-- [net] ipv4: apply lwtunnel encap for locally-generated packets (Lance Richardson) [1283886]
-- [net] lwtunnel: set skb protocol and dev (Lance Richardson) [1283886]
-- [net] vxlan: expose COLLECT_METADATA flag to user space (Lance Richardson) [1283886]
-- [net] ipv6: change ipv6_stub_impl.ipv6_dst_lookup to take net argument (Lance Richardson) [1283886]
-- [net] openvswitch: Re-add CONFIG_OPENVSWITCH_VXLAN (Lance Richardson) [1283886]
-- [net] lwtunnel: Make lwtun_encaps[] static (Lance Richardson) [1283886]
-- [net] lwtunnel: use kfree_skb() instead of vanilla kfree() (Lance Richardson) [1283886]
-- [net] lwtunnel: change prototype of lwtunnel_state_get() (Lance Richardson) [1283886]
-- [net] ipv6: copy lwtstate in ip6_rt_copy_init() (Lance Richardson) [1283886]
-- [net] ipv6: use lwtunnel_output6() only if flag redirect is set (Lance Richardson) [1283886]
-- [net] lwtunnel: export linux/lwtunnel.h to userspace (Lance Richardson) [1283886]
-- [net] openvswitch: Retrieve tunnel metadata when receiving from vport-netdev (Lance Richardson) [1283886]
-- [net] openvswitch: fix compilation when vxlan is a module (Lance Richardson) [1283886]
-- [net] ipv6: fix crash over flow-based vxlan device (Lance Richardson) [1283886]
-- [net] vxlan: Use proper endian type for vni in vxlan[6]_xmit_skb (Lance Richardson) [1283886]
-- [net] ip_tunnel: Call ip_tunnel_core_init() from inet_init() (Lance Richardson) [1283886]
-- [net] ip_tunnel: Provide tunnel metadata API for CONFIG_INET=n (Lance Richardson) [1283886]
-- [net] openvswitch: Use regular VXLAN net_device device (Lance Richardson) [1283886]
-- [net] openvswitch: Abstract vport name through ovs_vport_name() (Lance Richardson) [1283886]
-- [net] openvswitch: Make tunnel set action attach a metadata dst (Lance Richardson) [1283886]
-- [net] vxlan: Factor out device configuration (Lance Richardson) [1283886]
-- [net] fib: Add fib rule match on tunnel id (Lance Richardson) [1283886]
-- [net] route: Per route IP tunnel metadata via lightweight tunnel (Lance Richardson) [1283886]
-- [net] route: Extend flow representation with tunnel key (Lance Richardson) [1283886]
-- [net] vxlan: Flow based tunneling (Lance Richardson) [1283886]
-- [net] arp: Inherit metadata dst when creating ARP requests (Lance Richardson) [1283886]
-- [net] dst: Metadata destinations (Lance Richardson) [1283886]
-- [net] icmp: Don't leak original dst into ip_route_input() (Lance Richardson) [1283886]
-- [net] ip_tunnel: Make ovs_tunnel_info and ovs_key_ipv4_tunnel generic (Lance Richardson) [1283886]
-- [net] ipv6: rt6_info output redirect to tunnel output (Lance Richardson) [1283886]
-- [net] ipv4: redirect dst output to lwtunnel output (Lance Richardson) [1283886]
-- [net] lwtunnel: support dst output redirect function (Lance Richardson) [1283886]
-- [net] ipv6: support for fib route lwtunnel encap attributes (Lance Richardson) [1283886]
-- [net] ipv4: support for fib route lwtunnel encap attributes (Lance Richardson) [1283886]
-- [net] lwtunnel: infrastructure for handling light weight tunnels like mpls (Lance Richardson) [1283886]
-- [net] rtnetlink: introduce new RTA_ENCAP_TYPE and RTA_ENCAP attributes (Lance Richardson) [1283886]
-- [net] vxlan: Fix kernel unaligned access in __vxlan_find_mac (Lance Richardson) [1283886]
-- [include] stddef: move offsetofend inside #ifndef/#endif guard, neaten (Lance Richardson) [1283886]
-- [net] geneve: allow user to specify TOS info for tunnel frames (Lance Richardson) [1283886]
-- [net] geneve: allow user to specify TTL for tunnel frames (Lance Richardson) [1283886]
-- [net] vxlan: release lock after each bucket in vxlan_cleanup (Lance Richardson) [1283886]
-- [net] ipv6: Break up ip6_rt_copy() (Lance Richardson) [1283886]
-- [net] ipv6: Combine rt6_alloc_cow and rt6_alloc_clone (Lance Richardson) [1283886]
-- [net] ipv6: Remove external dependency on rt6i_gateway and RTF_ANYCAST (Lance Richardson) [1283886]
-- [net] vxlan: correct typo in call to unregister_netdevice_queue (Lance Richardson) [1283886]
-- [net] geneve: add initial netdev driver for GENEVE tunnels (Lance Richardson) [1283886]
-- [net] geneve: identify as driver library in modules description (Lance Richardson) [1283886]
-- [net] geneve: Rename support library as geneve_core (Lance Richardson) [1283886]
-- [net] geneve: move definition of geneve_hdr() to geneve.h (Lance Richardson) [1283886]
-- [net] geneve: remove MODULE_ALIAS_RTNL_LINK from net/ipv4/geneve.c (Lance Richardson) [1283886]
-- [net] vxlan: Correctly set flow*i_mark and flow4i_proto in route lookups (Lance Richardson) [1283886]
-- [net] ipv6: Check RTF_LOCAL on rt->rt6i_flags instead of rt->dst.flags (Lance Richardson) [1283886]
-- [net] ipv6: Stop rt6_info from using inet_peer's metrics (Lance Richardson) [1283886]
-- [net] ipv6: Stop /128 route from disappearing after pmtu update (Lance Richardson) [1283886]
-- [net] ipv6: Extend the route lookups to low priority metrics (Lance Richardson) [1283886]
-- [net] ipv6: Consider RTF_CACHE when searching the fib6 tree (Lance Richardson) [1283886]
-- [net] vxlan: remove the unnecessary codes (Lance Richardson) [1283886]
-- [net] rtnetlink: Mark name argument of rtnl_create_link() const (Lance Richardson) [1283886]
-- [net] vxlan: correct spelling in comments (Lance Richardson) [1283886]
-- [net] ipv6: call ipv6_proxy_select_ident instead of ipv6_select_ident in udp6_ufo_fragment (Lance Richardson) [1283886]
-- [net] vxlan: Don't set s_addr in vxlan_create_sock (Lance Richardson) [1283886]
-- [net] ipv6: Make __ipv6_select_ident static (Lance Richardson) [1283886]
-- [net] ipv6: Fix fragment id assignment on LE arches (Lance Richardson) [1283886]
-- [net] ipv6: Select fragment id during UFO segmentation if not set (Lance Richardson) [1283886]
-- [net] ipv6: Fix __ip6_route_redirect (Lance Richardson) [1283886]
-- [net] ipv6: add ipv6_proxy_select_ident() (Lance Richardson) [1283886]
-- [net] ipv6: Avoid redoing fib6_lookup() with reachable = 0 by saving fn (Lance Richardson) [1283886]
-- [net] ipv6: Avoid redoing fib6_lookup() for RTF_CACHE hit case (Lance Richardson) [1283886]
-- [net] ipv6: Remove BACKTRACK macro (Lance Richardson) [1283886]
-- [net] gre: Setup and TX path for gre/UDP foo-over-udp encapsulation (Lance Richardson) [1283886]
-- [net] sit: Setup and TX path for sit/UDP foo-over-udp encapsulation (Lance Richardson) [1283886]
-- [net] ip: make IP identifiers less predictable (Lance Richardson) [1283886]
-- [net] inetpeer: get rid of ip_id_count (Lance Richardson) [1283886]
-- [net] ipv6: Limit mtu to 65575 bytes (Lance Richardson) [1283886]
-- [net] inet: remove now unused flag DST_NOPEER (Lance Richardson) [1283886]
-- [net] ipv6: reuse ip6_frag_id from ip6_ufo_append_data (Lance Richardson) [1283886]
-- [net] ipv6: move IPV6_TCLASS_SHIFT into ipv6.h and define a helper (Lance Richardson) [1283886]
-- [net] ipv6: add the option to use anycast addresses as source addresses in echo reply (Lance Richardson) [1283886]
-- [net] gre: fix msg_name parsing for recvfrom/recvmsg (Lance Richardson) [1283886]
-- [net] ipv6: fix incorrect type in declaration (Lance Richardson) [1283886]
-- [net] ipv6: remove rcv_tclass of ipv6_pinfo (Lance Richardson) [1283886]
-- [net] ipv6: add flowinfo for tcp6 pkt_options for all cases (Lance Richardson) [1283886]
-- [net] ipv6: drop the judgement in rt6_alloc_cow() (Lance Richardson) [1283886]
-- [net] rtnetlink: Remove extern from function prototypes (Lance Richardson) [1283886]
-- [net] ipv6: fix ecmp lookup when oif is specified (Lance Richardson) [1283886]
-- [net] revert "rhel: use dummy net_device for tunnels" (Lance Richardson) [1283886]
-
-* Fri Jun 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-432.el7]
-- [scsi] disable automatic target scan (Ewan Milne) [1088445]
-- [scsi] hpsa: update MAINTAINERS with new e-mail (Joseph Szczypek) [1274467]
-- [scsi] hpsa: update copyright information (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct abort tmf for hba devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct lun data caching bitmap definition (Joseph Szczypek) [1274467]
-- [scsi] hpsa: do not get enclosure info for external devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: Add box and bay information for enclosure devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: Change SAS transport devices to bus 0 (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix path_info_show (Joseph Szczypek) [1274467]
-- [scsi] hpsa: select CONFIG_SCSI_SAS_ATTR (Joseph Szczypek) [1274467]
-- [scsi] hpsa: logical vs bitwise AND typo (Joseph Szczypek) [1274467]
-- [scsi] hpsa: Update revision to reflect Red Hat version (Joseph Szczypek) [1274467]
-- [scsi] hpsa: bump the driver version (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add in sas transport class (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix multiple issues in path_info_show (Joseph Szczypek) [1274467]
-- [scsi] hpsa: enhance device messages (Joseph Szczypek) [1274467]
-- [scsi] hpsa: disable report lun data caching (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add discovery polling for PT RAID devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: eliminate fake lun0 enclosures (Joseph Szczypek) [1274467]
-- [scsi] hpsa: generalize external arrays (Joseph Szczypek) [1274467]
-- [scsi] hpsa: move scsi_add_device and scsi_remove_device calls to new function (Joseph Szczypek) [1274467]
-- [scsi] hpsa: refactor hpsa_figure_bus_target_lun (Joseph Szczypek) [1274467]
-- [scsi] hpsa: enhance hpsa_get_device_id (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add function is_logical_device (Joseph Szczypek) [1274467]
-- [scsi] hpsa: simplify update scsi devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: simplify check for device exposure (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct ioaccel2 sg chain len (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct check for non-disk devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix physical target reset (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix hpsa_adjust_hpsa_scsi_table (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct transfer length for 6 byte read/write commands (Joseph Szczypek) [1274467]
-- [scsi] hpsa: abandon rescans on memory alloaction failures (Joseph Szczypek) [1274467]
-- [scsi] hpsa: allow driver requested rescans (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix null device issues (Joseph Szczypek) [1274467]
-- [scsi] hpsa: check for null arguments to dev_printk (Joseph Szczypek) [1274467]
-- [scsi] hpsa: change devtype to unsigned (Joseph Szczypek) [1274467]
-- [scsi] hpsa: remove unused hpsa_tag_discard_error_bits (Joseph Szczypek) [1274467]
-- [scsi] hpsa: stop zeroing reset_cmds_out and ioaccel_cmds_out during rescan (Joseph Szczypek) [1274467]
-- [scsi] hpsa: remove unused parameter hostno (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add in new offline mode (Joseph Szczypek) [1274467]
-- [scsi] Change how controllers in mixed mode are handled (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add in new controllers (Joseph Szczypek) [1274467]
-- [scsi] hpsa: cleanup update scsi devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add sysfs entry path_info to show box and bay information (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add PMC to copyright (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct static checker warnings on driver init cleanup (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct decode sense data (Joseph Szczypek) [1274467]
-- [scsi] hpsa: Correct double unlock of mutex (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix an sprintf() overflow in the reset handler (Joseph Szczypek) [1274467]
-- [scsi] sd: get disk reference in sd_check_events() (Ewan Milne) [1330047]
-- [scsi] lpfc: Revert: Add lockdep assertions (Rob Evers) [1340057]
-- [scsi] lpfc: Revert: remove incorrect lockdep assertion (Rob Evers) [1340057]
-- [scsi] be2iscsi: set the boot_kset pointer to NULL in case of failure (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Remove unnecessary synchronize_irq() before free_irq() (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Add missing error check in beiscsi_eeh_resume (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix memory leak in beiscsi_alloc_mem() (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: _bh for io_sgl_lock and mgmt_sgl_lock (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix ExpStatSn in management tasks (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Couple MCC tag and WRB alloc and free (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix MCC WRB leak in open_connection (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Cleanup processing of BMBX completion (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix be_mcc_compl_poll to use tag_state (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Remove be_mbox_notify_wait function (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Rename MCC and BMBX processing functions (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Remove redundant MCC processing code (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Use macros for MCC WRB and CQE fields (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Remove unused mcc_cq_lock (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: add checks for dma mapping errors (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Update the driver version (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix WRB leak in login/logout path (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix async link event processing (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to process 25G link speed info from FW (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix IOPOLL implementation (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix return value for MCC completion (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Add FW config validation (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to handle misconfigured optics events (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix VLAN support for IPv6 network (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to remove shutdown entry point (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Added return value check for mgmt_get_all_if_id (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Set mbox timeout to 30s (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to synchronize tag allocation using spin_lock (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to use atomic bit operations for tag_state (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix mbox synchronization replacing spinlock with mutex (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix soft lockup in mgmt_get_all_if_id path using bmbx (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix bogus WARN_ON length check (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Bump the driver version (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Revert ownership to Emulex (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: change email domain (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: revert: Update the copyright year (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: fix memory leak in error path (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix memory leak in mgmt_set_ip() (Maurizio Lombardi) [1274912]
-
-* Thu Jun 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-431.el7]
-- [netdrv] qed: Reset the enable flag for eth protocol (Harish Patil) [1275807 1275811]
-- [netdrv] qed: signedness bug in qed_dcbx_process_tlv() (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix DMA address APIs usage (Harish Patil) [1275807 1275811]
-- [netdrv] mm: rename _count, field of the struct page, to _refcount (Harish Patil) [1275807 1275811]
-- [netdrv] mm/page_ref: use page_ref helper instead of direct modification of _count (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add support for dcbx (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Remove a stray tab (Harish Patil) [1275807 1275811]
-- [netdrv] qed: VFs gracefully accept lack of PM (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Allow more than 16 VFs (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Reset link on IOV disable (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Improve VF interrupt reset (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Correct PF-sanity check (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Tx-switching configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: support ndo_get_vf_config (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: IOV support spoof-checking (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: IOV link control (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Support forced MAC (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Support PVID configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add VF support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Align TLVs (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Bulletin and Link (Harish Patil) [1275807 1275811]
-- [netdrv] qed: IOV l2 functionality (Harish Patil) [1275807 1275811]
-- [netdrv] qed: IOV configure and FLR (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Introduce VFs (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add VF->PF channel infrastructure (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add CONFIG_QED_SRIOV (Harish Patil) [1275807 1275811]
-- [netdrv] qede: uninitialized variable in qede_start_xmit() (Harish Patil) [1275807 1275811]
-- [netdrv] qede: prevent chip hang when increasing channels (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Apply tunnel configurations after PF start (Harish Patil) [1275807 1275811]
-- [netdrv] qede: add implementation for internal loopback test (Harish Patil) [1275807 1275811]
-- [netdrv] qede: add support for selftests (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add infrastructure for device self tests (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add PF min bandwidth configuration support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add PF max bandwidth configuration support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add vport WFQ configuration APIs (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add support for link pause configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Conditions for changing link (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for ethtool private flags (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Align statistics names (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix single MTU sized packet from firmware GRO flow (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix setting Skb network header (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix various memory allocation error flows for fastpath (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add fastpath support for tunneling (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Enable GRE tunnel slowpath configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qed/qede: Add GENEVE tunnel slowpath configuration support (Harish Patil) [1275807 1275811]
-- [netdrv] qed/qede: Add VXLAN tunnel slowpath configuration support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add infrastructure support for tunneling (Harish Patil) [1275807 1275811]
-- [netdrv] qed* - bump driver versions to 8.7.1.20 (Harish Patil) [1275807 1275811]
-- [netdrv] qede: add Rx flow hash/indirection support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add Rx flow hash/indirection support (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: remove version dependency (Harish Patil) [1275807 1275811]
-- [netdrv] qed: initialize return rc to avoid returning garbage (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Enlrage the drain timeout (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Notify of transciever changes (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Major changes to MB locking (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Prevent MF link notifications (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix net-next "make ARCH=x86_64" (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add slowpath/fastpath support and enable hardware GRO (Harish Patil) [1275807 1275811]
-- [netdrv] qed/qede: Add infrastructure support for hardware GRO (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Remove unused NVM vendor ID (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Fix error flow on slowpath start (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Move statistics to L2 code (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Support B0 instead of A0 (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Correct BAR sizes for older MFW (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Print additional HW attention info (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Print HW attention reasons (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add support for HW attentions (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Semantic refactoring of interrupt code (Harish Patil) [1275807 1275811]
-- [netdrv] qed, qede: rebrand module description (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Prevent probe on previous error (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add MODULE_FIRMWARE() (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Don't report link change needlessly (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Linearize SKBs when needed (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Change pci DID for 10g device (Harish Patil) [1275807 1275811]
-- [netdrv] qed,qede: Bump driver versions to 8.7.0.0 (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Introduce DMA_REGPAIR_LE (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Change metadata needed for SPQ entries (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Handle possible race in SB config (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Turn most GFP_ATOMIC into GFP_KERNEL (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add vlan filtering offload support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Lay infrastructure for vlan filtering offload (Harish Patil) [1275807 1275811]
-- [netdrv] qed/qede: use 8.7.3.0 FW (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Correct slowpath interrupt scheme (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Fix BAR size split for some servers (Harish Patil) [1275807 1275811]
-- [netdrv] qed: fix handling of concurrent ramrods (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for {get, set}_pauseparam (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Fix corner case for chain in-between pages (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for nway_reset (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for set_phys_id (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add support for changing LED state (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for {get, set}_ringparam (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for {get, set}_channels (Harish Patil) [1275807 1275811]
-- [netdrv] qed: select ZLIB_INFLATE (Harish Patil) [1275807 1275811]
-- [netdrv] qlogic: qed: fix error codes in qed_resc_alloc() (Harish Patil) [1275807 1275811]
-- [netdrv] qlogic: qed: fix a test for MODE_MF_SI (Harish Patil) [1275807 1275811]
-- [netdrv] qlogic/qed: remove bogus NULL check (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add basic ethtool support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add statistics support (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for link (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add link support (Harish Patil) [1275807 1275811]
-- [netdrv] qede: classification configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add basic network device support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add slowpath L2 support (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add basic Network driver (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add basic L2 interface (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add module with basic common support (Harish Patil) [1275807 1275811]
-
-* Thu Jun 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-430.el7]
-- [char] tpm_crb: fix mapping of the buffers (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: drop struct resource res from struct crb_priv (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: Allow compile test of GPIO consumers if !GPIOLIB (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: fix build warning with tpm_tis_resume (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: tpm2_shutdown() must be called before tpm_chip_unregister() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb/tis: fix: use dev_name() for /proc/iomem (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_eventlog.c: fix binary_bios_measurements (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix: return rc when devm_add_action() fails (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix: set continueSession attribute for the unseal operation (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix the cleanup of struct tpm_chip (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix the rollback in tpm_chip_register() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: Use devm_ioremap_resource (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: Drop le32_to_cpu(ioread32(..)) (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Clean up the force=1 module parameter (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Use devm_ioremap_resource (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Do not fall back to a hardcoded address for TPM2 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Disable interrupt auto probing on a per-device basis (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: Use the common ACPI definition of struct acpi_tpm2 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] acpica: Update TPM2 ACPI table (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] acpica: Update definitions for the TCPA and TPM2 ACPI tables (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] tpm: fix checks for policy digest existence in tpm2_seal_trusted() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: seal with a TPM2 authorization policy (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: select hash algorithm for TPM2 chips (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: fix: *do not* allow duplicate key options (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_ibmvtpm: properly handle interrupted packet receptions (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Tighten IRQ auto-probing (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Refactor the interrupt setup (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Get rid of the duplicate IRQ probing code (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: rework tpm_get_timeouts() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Ensure interrupts are disabled when the driver starts (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Use devm_free_irq not free_irq (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: further simplify calculation of ordinal duration (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix compat 'ppi' link handling in tpm_chip_register() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix missing migratable flag in sealing functionality for TPM2 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: revert the list handling logic fixed in 398a1e7 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: Avoid reference to potentially freed memory (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: restore IRQ vector in IO memory after failed probing (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: free irq after probing (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: remove unnecessary little endian conversion (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] vtpm: support little endian guests (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [powerpc] vtpm: get the buffer allocated for event log instead of the actual log (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [powerpc] vtpm: reformat event log to be byte-aligned (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] vtpm: fix searching for the right vTPM node in device tree (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: seal/unseal with TPM 2.0 chips (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] tpm: seal/unseal for TPM 2.0 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: move struct trusted_key_options to trusted-type.h (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: introduce tpm_buf (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [documentation] tpm: update PPI documentation to address the location change (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: move the PPI attributes to character device directory (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] sysfs: added __compat_only_sysfs_link_entry_to_kobj() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm, tpm_crb: fix unaligned read of the command buffer address (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: Fix initialization of the cdev (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm, tpm_crb: fix le64_to_cpu conversions in crb_acpi_add() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] vtpm: set virtual device before passing to ibmvtpm_reset_crq (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_ibmvtpm: remove unneccessary message level (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm/st33zp24: Add proper wait for ordinal duration in case of irq mode (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm/tpm_infineon: Use struct dev_pm_ops for power management (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: Update KConfig text to include TPM2.0 FIFO chips (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] tpm/tpm_i2c_stm_st33: Split tpm_i2c_tpm_st33 in 2 layers (core + phy) (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm/tpm_i2c_stm_st33: Replace access to io_lpcpd from struct st33zp24_platform_data to tpm_stm_dev (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix: sanitized code paths in tpm_chip_register() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-
-* Wed Jun 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-429.el7]
-- [md] raid5: delete unnecessary warnning (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid0: fix uninitialized variable bug (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix a trivial typo in comments (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid1: fix a dead loop when read from a WriteMostly disk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: Cleanup cpu hotplug notifier (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: include bio_end_io_list in nr_queued to prevent freeze_array hang (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid1: include bio_end_io_list in nr_queued to prevent freeze_array hang (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix typos for stipe (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] bitmap: remove redundant return in bitmap_checkpage (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid1: remove unnecessary BUG_ON (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: output stripe state for debug (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: preserve STRIPE_PREREAD_ACTIVE in break_stripe_batch_list (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] bitmap: remove redundant check (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Drop sending a change uevent when stopping (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: revert e9e4c377e2f563 to fix a livelock (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: check_reshape() shouldn't call mddev_suspend (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: Compare apples to apples (or sectors to sectors) (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] rename some functions (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid: only permit hot-add of compatible integrity profiles (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: handle journal hotadd in quiesce (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] add journal with array suspended (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] set MD_HAS_JOURNAL in correct places (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Remove 'ready' field from mddev (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] remove unnecesary md_new_event_inintr (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: allow r5l_io_unit allocations to fail (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: use a mempool for the metadata block (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: use a bio_set (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: add journal hot add/remove support (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] avoid warning for 32-bit sector_t (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: simplify r5l_move_io_unit_list (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] update comment for md_allow_write (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: remove redundant check in stripe_add_to_batch_list() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] remove check for MD_RECOVERY_NEEDED in action_store (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Fix remove_and_add_spares removes drive added as spare in slot_store (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix bug due to nested suspend (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] change journal disk role to disk 0 (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: fix data corruption and crash during resync (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] treewide: Fix typos in printk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] when RAID journal is missing/faulty, block RESTART_ARRAY_RW (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] set journal disk ->raid_disk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] kick out journal disk if it's not fresh (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: start raid5 readonly if journal is missing (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] add new bit to indicate raid array with journal (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: IO error handling (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: journal disk can't be removed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: add trim support for log (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix info output for journal disk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: small log->seq cleanup (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: new helper: r5_reserve_log_entry (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: inline r5l_alloc_io_unit into r5l_new_meta (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: take rdev->data_offset into account early on (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: refactor bio allocation (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: clean up r5l_get_meta (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: simplify state machine when caches flushes are not needed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: factor out a helper to run all stripes for an I/O unit (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: rename flushed_ios to finished_ios (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: free I/O units earlier (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: move reclaim stop to quiesce (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] show journal for journal disk in disk state sysfs (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] skip match_mddev_units check for special roles (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: don't delay stripe captured in log (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: check stripe finish out of order (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] skip resync for raid array with journal (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: optimize FLUSH IO with log enabled (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: move functionality out of __r5l_set_io_unit_state (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: fix a user-after-free bug (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: switching to state machine for log disk cache flush (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: enable log for raid array with cache disk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: don't allow resize/reshape with cache(log) support (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: disable batch with log enabled (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: use crc32c checksum (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] revert "md: allow a partially recovered device to be hot-added to an array." (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: fix locking in handle_stripe_clean_event() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: log recovery (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: log reclaim support (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] rhel-only: EXPORT_SYMBOL(md_update_sb) (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: add basic stripe log (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: add a new state for stripe log handling (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: export some functions (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] override md superblock recovery_offset for journal device (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] add a new disk role to present write journal device (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] replace special disk roles with macros (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: fix the 'new' raid10 layout to work correctly (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] suspend i/o during runtime blk_integrity_unregister (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] remove_and_add_spares() to activate specific rdev (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] drop null test before destroy functions (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] clear CHANGE_PENDING in readonly array (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: don't index beyond end of array in need_this_block() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: update analysis state for failed stripe (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] wait for pending superblock updates before switching to read-only (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: ensure device failure recorded before write request returns (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: use bio_list for the list of bios to return (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] setup safemode_timer before it's being used (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: handle possible race as reshape completes (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] sync sync_completed has correct value as recovery finishes (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] be careful when testing resync_max against curr_resync_completed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] set MD_RECOVERY_RECOVER when starting a degraded array (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: remove incorrect "min_t()" when calculating writepos (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: strengthen check on reshape_position at run (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: switch to use conf->chunk_sectors in place of mddev->chunk_sectors where possible (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: always set conf->prev_chunk_sectors and ->prev_algo (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: fix a few typos in comments (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: consider updating reshape_position at start of reshape (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] close some races between setting and checking sync_action (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Keep /proc/mdstat reporting recovery until fully DONE (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] simplify get_bitmap_file now that "file" is zeroed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] use kzalloc() when bitmap is disabled (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: clear R5_NeedReplace when no longer needed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] flush ->event_work before stopping array (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: always set reshape_safe when initializing reshape_position (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] unlock mddev_lock on an error path (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] clear mddev->private when it has been freed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] doc: fix typo in md.txt (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix a build warning (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: per hash value and exclusive wait_for_stripe (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: split wait_for_stripe and introduce wait_for_quiescent (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] convert to kstrto*() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: make sync_request_write() call bio_copy_data() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix problems with freeing private data after ->run failure (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Export and rename kick_rdev_from_array (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [kernel] wait: introduce wait_event_exclusive_cmd (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-
-* Wed Jun 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-428.el7]
-- [fs] xfs: add "fail at unmount" error handling configuration (Carlos Maiolino) [1267042]
-- [fs] xfs: add configuration handlers for specific errors (Carlos Maiolino) [1267042]
-- [fs] xfs: add configuration of error failure speed (Carlos Maiolino) [1267042]
-- [fs] xfs: introduce table-based init for error behaviors (Carlos Maiolino) [1267042]
-- [fs] xfs: add configurable error support to metadata buffers (Carlos Maiolino) [1267042]
-- [fs] xfs: introduce metadata IO error class (Carlos Maiolino) [1267042]
-- [fs] xfs: configurable error behavior via sysfs (Carlos Maiolino) [1267042]
-- [fs] cifs: fix out-of-bounds access in lease parsing (Sachin Prabhu) [1337587]
-- [fs] cifs: fix erroneous return value (Sachin Prabhu) [1337587]
-- [fs] cifs: fix potential overflow in cifs_compose_mount_options (Sachin Prabhu) [1337587]
-- [fs] cifs_dbg() outputs an uninitialized buffer in cifs_readdir() (Sachin Prabhu) [1337587]
-- [fs] cifs: fix race between call_async() and reconnect() (Sachin Prabhu) [1337587]
-- [fs] cifs: Make echo interval tunable (Sachin Prabhu) [1337587]
-- [fs] cifs: Check uniqueid for SMB2+ and return -ESTALE if necessary (Sachin Prabhu) [1337587]
-- [fs] Print IP address of unresponsive server (Sachin Prabhu) [1337587]
-- [fs] Allow copy offload (CopyChunk) across shares (Sachin Prabhu) [1337587]
-- [fs] Add resilienthandles mount parm (Sachin Prabhu) [1337587]
-- [fs] Send durable handle v2 contexts when use of persistent handles required (Sachin Prabhu) [1337587]
-- [fs] Display persistenthandles in /proc/mounts for SMB3 shares if enabled (Sachin Prabhu) [1337587]
-- [fs] Enable checking for continuous availability and persistent handle support (Sachin Prabhu) [1337587]
-- [fs] Add parsing for new mount option controlling persistent handles (Sachin Prabhu) [1337587]
-- [fs] Allow duplicate extents in SMB3 not just SMB3.1.1 (Sachin Prabhu) [1337587]
-- [fs] Update cifs version number (Sachin Prabhu) [1337587]
-- [fs] Do not fall back to SMBWriteX in set_file_size error cases (Sachin Prabhu) [1337587]
-- [fs] fs: Drop unlikely before IS_ERR(_OR_NULL) (Sachin Prabhu) [1337587]
-- [fs] Missing null tcon check (Sachin Prabhu) [1337587]
-- [fs] fix encryption error checks on mount (Sachin Prabhu) [1337587]
-- [fs] Fix sec=krb5 on smb3 mounts (Sachin Prabhu) [1337587]
-- [fs] cifs: use server timestamp for ntlmv2 authentication (Sachin Prabhu) [1337587]
-- [fs] disabling oplocks/leases via module parm enable_oplocks broken for SMB3 (Sachin Prabhu) [1337587]
-- [fs] mount option sec=none not displayed properly in /proc/mounts (Sachin Prabhu) [1337587]
-- [fs] cifs: Fix use-after-free on mid_q_entry (Sachin Prabhu) [1337587]
-- [fs] Update cifs version number (Sachin Prabhu) [1337587]
-- [fs] Add way to query server fs info for smb3 (Sachin Prabhu) [1337587]
-- [fs] cifs: Unset CIFS_MOUNT_POSIX_PATHS flag when following dfs mounts (Sachin Prabhu) [1337587]
-- [fs] Update negotiate protocol for SMB3.11 dialect (Sachin Prabhu) [1337587]
-- [fs] Add ioctl to set integrity (Sachin Prabhu) [1337587]
-- [fs] Add Get/Set Integrity Information structure definitions (Sachin Prabhu) [1337587]
-- [fs] Add reflink copy over SMB3.11 with new FSCTL_DUPLICATE_EXTENTS (Sachin Prabhu) [1337587]
-- [fs] Add SMB3.11 mount option synonym for new dialect (Sachin Prabhu) [1337587]
-- [fs] add struct FILE_STANDARD_INFO (Sachin Prabhu) [1337587]
-- [fs] Make dialect negotiation warning message easier to read (Sachin Prabhu) [1337587]
-- [fs] Add defines and structs for smb3.1 dialect (Sachin Prabhu) [1337587]
-- [fs] Allow parsing vers=3.11 on cifs mount (Sachin Prabhu) [1337587]
-- [fs] client MUST ignore EncryptionKeyLength if CAP_EXTENDED_SECURITY is set (Sachin Prabhu) [1337587]
-- [fs] cifs: Fix race condition on RFC1002_NEGATIVE_SESSION_RESPONSE (Sachin Prabhu) [1337587]
-- [fs] Fix to convert SURROGATE PAIR (Sachin Prabhu) [1337587]
-- [fs] cifs: potential missing check for posix_lock_file_wait (Sachin Prabhu) [1337587]
-- [fs] Fix to check Unique id and FileType when client refer file directly (Sachin Prabhu) [1337587]
-- [fs] cifs: remove an unneeded NULL check (Sachin Prabhu) [1337587]
-- [fs] fix null pointer check (Sachin Prabhu) [1337587]
-- [fs] Fix that several functions handle incorrect value of mapchars (Sachin Prabhu) [1337587]
-- [fs] cifs: Don't replace dentries for dfs mounts (Sachin Prabhu) [1337587]
-- [fs] vfs: normal filesystems and lustre d_inode() annotations - CIFS only (Sachin Prabhu) [1337587]
-- [fs] vfs: Add owner-filesystem positive/negative dentry checks (Sachin Prabhu) [1337587]
-- [fs] dlm: Save and restore socket callbacks properly (Robert S Peterson) [1267339]
-- [fs] dlm: Replace nodeid_to_addr with kernel_getpeername (Robert S Peterson) [1267339]
-- [fs] xfs: fix broken multi-fsb buffer logging (Brian Foster) [1334671]
-- [fs] propogate_mnt: Handle the first propogated copy being a slave (Miklos Szeredi) [1338808] {CVE-2016-4581}
-- [fs] pnode: treat zero mnt_group_id-s as unequal (Miklos Szeredi) [1331162]
-- [fs] svcrpc: autoload rdma module (Steve Dickson) [1337599]
-- [fs] nfsd: Drop BUG_ON and ignore SECLABEL on absent filesystem ("J. Bruce Fields") [1340690]
-- [fs] nfsd: fix nsfd startup race triggering BUG_ON ("J. Bruce Fields") [1340714]
-
-* Wed Jun 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-427.el7]
-- [fs] dax: fix O_DIRECT I/O to the last block of a blockdev (Eric Sandeen) [1274459]
-- [acpi] nfit: Clarify memory device state flags strings (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [acpi] nfit, nd_blk: BLK status register is only 32 bits (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [fs] xfs: call dax_fault on read page faults for DAX (Eric Sandeen) [1274459]
-- [nvdimm] libnvdimm: fix namespace seed creation (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [acpi] nfit: add support for NVDIMM "latch" flag (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [acpi] nfit: update block I/O path to use PMEM API (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [tools] testing/nvdimm: add mock acpi_nfit_flush_address entries to nfit_test (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [tools] testing/nvdimm: fix return code for unimplemented commands (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [maintainers] pmem: add maintainer for include/linux/pmem.h (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [fs] dax: bdev_direct_access() may sleep (Eric Sandeen) [1274459]
-- [fs] block: Add support for DAX reads/writes to block devices (Eric Sandeen) [1274459]
-- [fs] dax: Use copy_from_iter_nocache (Eric Sandeen) [1274459]
-- [net] iovec.c: add memcpy_fromiovecend_nocache (Eric Sandeen) [1274459]
-- [acpi] nfit: fix smatch "use after null check" report (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] Fix return value of nvdimm_bus_init() if class_create() fails (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm: smatch cleanups in __nd_ioctl (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] sparse: fix misplaced __pmem definition (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [x86] pmem api for ensuring durability of persistent memory updates (Eric Sandeen) [1028649 1269626 1271953 1274043 1274459]
-- [include] libnvdimm: Add sysfs numa_node to NVDIMM devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: Set numa_node to NVDIMM devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] acpi: Add acpi_map_pxm_to_online_node() (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [tools] libnvdimm, nfit: handle unarmed dimms, mark namespaces read-only (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] pmem: flag pmem block devices as non-rotational (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm: enable iostat (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] pmem: make_request cleanups (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, pmem: fix up max_hw_sectors (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, blk: add support for blk integrity (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, btt: add support for blk integrity (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [fs] block_dev.c: skip rw_page if bdev has integrity (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [maintainers] libnvdimm: Non-Volatile Devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [tools] testing/nvdimm: libnvdimm unit test infrastructure (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit, nd_blk: driver for BLK-mode access persistent memory (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] nd_btt: atomic sector updates (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: infrastructure for btt devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm: write blk label set (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm: write pmem label set (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: blk labels and namespace instantiation (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: pmem label sets and namespace instantiation (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: namespace indices: read and validate (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit: add interleave-set state-tracking infrastructure (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, pmem: add libnvdimm support to the pmem driver (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, pmem: move pmem to drivers/nvdimm/ (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: support for legacy (non-aliasing) nvdimms (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit: regions (block-data-window, persistent memory, volatile memory) (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nvdimm: dimm driver and base libnvdimm device-driver infrastructure (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: control (ioctl) messages for nvdimm_bus and nvdimm devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit: dimm/memory-devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: control character device and nvdimm_bus sysfs attributes (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit: initial libnvdimm infrastructure and NFIT support (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [fs] xfs: add initial DAX support (Eric Sandeen) [1274459]
-- [fs] xfs: add DAX IO path support (Eric Sandeen) [1274459]
-- [fs] xfs: add DAX truncate support (Eric Sandeen) [1274459]
-- [fs] xfs: add DAX block zeroing support (Eric Sandeen) [1274459]
-- [fs] xfs: add DAX file operations support (Eric Sandeen) [1274459]
-- [fs] xfs: simplify xfs_zero_remaining_bytes (Eric Sandeen) [1274459]
-- [include] dax: expose __dax_fault for filesystems with locking constraints (Eric Sandeen) [1274459]
-- [include] dax: don't abuse get_block mapping for endio callbacks (Eric Sandeen) [1274459]
-- [include] e820, efi: add ACPI 6.0 persistent memory types (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Enhance MTRR checks in kernel mapping helpers (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Clean up mtrr_type_lookup() (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Use symbolic define as a retval for disabled MTRRs (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Fix MTRR state checks in mtrr_type_lookup() (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Fix MTRR lookup to handle an inclusive entry (Eric Sandeen) [1274459]
-- [include] acpica: Fix for ill-formed GUID strings for NFIT tables (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] acpica: acpihelp: Update for new NFIT table GUIDs (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] acpica: acpi 6.0: Add support for NFIT table (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [x86] mm/mtrr: Remove incorrect address check in __mtrr_type_lookup() (Eric Sandeen) [1274459]
-- [x86] mm: Do not flush last cacheline twice in clflush_cache_range() (Eric Sandeen) [1274459]
-- [x86] Make page cache mode a real type (Eric Sandeen) [1274459]
-- [lib] x86, mm: support huge KVA mappings on x86 (Eric Sandeen) [1274459]
-- [x86] mm: support huge I/O mapping capability I/F (Eric Sandeen) [1274459]
-- [mm] change vunmap to tear down huge KVA mappings (Eric Sandeen) [1274459]
-- [lib] mm: change ioremap to set up huge I/O mappings (Eric Sandeen) [1274459]
-- [lib] ioremap: add huge I/O map capability interfaces (Eric Sandeen) [1274459]
-- [mm] change __get_vm_area_node() to use fls_long() (Eric Sandeen) [1274459]
-- [mm] fix pfn_mkwrite KABI (Eric Sandeen) [1274459]
-- [fs] dax: unify ext2/4_{dax,}_file_operations (Eric Sandeen) [1274459]
-- [include] dax: use pfn_mkwrite to update c/mtime + freeze protection (Eric Sandeen) [1274459]
-- [mm] new pfn_mkwrite same as page_mkwrite for VM_PFNMAP (Eric Sandeen) [1274459]
-- [mm] refactor do_wp_page handling of shared vma into a function (Eric Sandeen) [1274459]
-- [mm] refactor do_wp_page, extract the page copy flow (Eric Sandeen) [1274459]
-- [mm] refactor do_wp_page - rewrite the unlock flow (Eric Sandeen) [1274459]
-- [mm] refactor do_wp_page, extract the reuse case (Eric Sandeen) [1274459]
-- [block] drivers/block/pmem: Fix 32-bit build warning in pmem_alloc() (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [block] drivers/block/pmem: Add a driver for persistent memory (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [x86] mm: Add support for the non-standard protected e820 type (Eric Sandeen) [1274459]
-- [fs] dax: does not work correctly with virtual aliasing caches (Eric Sandeen) [1274459]
-- [block] brd: rename XIP to DAX (Eric Sandeen) [1274459]
-- [fs] ext4: add DAX functionality (Eric Sandeen) [1274459]
-- [fs] dax: add dax_zero_page_range (Eric Sandeen) [1274459]
-- [fs] ext2: get rid of most mentions of XIP in ext2 (Eric Sandeen) [1274459]
-- [fs] ext2: remove ext2_aops_xip (Eric Sandeen) [1274459]
-- [fs] vfs, ext2: remove CONFIG_EXT2_FS_XIP and rename CONFIG_FS_XIP to CONFIG_FS_DAX (Eric Sandeen) [1274459]
-- [fs] ext2: remove xip.c and xip.h (Eric Sandeen) [1274459]
-- [fs] ext2: remove ext2_use_xip (Eric Sandeen) [1274459]
-- [fs] ext2: remove ext2_xip_verify_sb() (Eric Sandeen) [1274459]
-- [mm] vfs: remove get_xip_mem (Eric Sandeen) [1274459]
-- [fs] dax: replace XIP documentation with DAX documentation (Eric Sandeen) [1274459]
-- [fs] dax, ext2: replace xip_truncate_page with dax_truncate_page (Eric Sandeen) [1274459]
-- [fs] dax, ext2: replace the XIP page fault handler with the DAX page fault handler (Eric Sandeen) [1274459]
-- [fs] dax, ext2: replace ext2_clear_xip_target with dax_clear_blocks (Eric Sandeen) [1274459]
-- [fs] dax, ext2: replace XIP read and write with DAX I/O (Eric Sandeen) [1274459]
-- [mm] vfs,ext2: introduce IS_DAX(inode) (Eric Sandeen) [1274459]
-- [mm] allow page fault handlers to perform the COW (Eric Sandeen) [1274459]
-- [mm] fix XIP fault vs truncate race (Eric Sandeen) [1274459]
-- [include] dax: drop size parameter to ->direct_access() (Eric Sandeen) [1274459]
-- [include] block: Change direct_access calling convention (Eric Sandeen) [1274459]
-- [block] brd: return -ENOSPC rather than -ENOMEM on page allocation failure (Eric Sandeen) [1274459]
-- [block] brd: add support for rw_page() (Eric Sandeen) [1274459]
-- [mm] swap: use bdev_read_page() / bdev_write_page() (Eric Sandeen) [1274459]
-- [fs] block_dev: add bdev_read_page() and bdev_write_page() (Eric Sandeen) [1274459]
-- [fs] mpage: factor page_endio() out of mpage_end_io() (Eric Sandeen) [1274459]
-- [fs] mpage: factor clean_buffers() out of __mpage_writepage() (Eric Sandeen) [1274459]
-- [fs] buffer: remove block_write_full_page_endio() (Eric Sandeen) [1274459]
-- [mm] consolidate code to setup pte (Eric Sandeen) [1274459]
-- [mm] consolidate code to call vm_ops->page_mkwrite() (Eric Sandeen) [1274459]
-- [mm] introduce do_shared_fault() and drop do_fault() (Eric Sandeen) [1274459]
-- [mm] introduce do_cow_fault() (Eric Sandeen) [1274459]
-- [mm] introduce do_read_fault() (Eric Sandeen) [1274459]
-- [mm] do_fault(): extract to call vm_ops->do_fault() to separate function (Eric Sandeen) [1274459]
-- [mm] rename __do_fault() -> do_fault() (Eric Sandeen) [1274459]
-- [fs] block: Convert various code to bio_for_each_segment() (Eric Sandeen) [1274459]
-
-* Tue Jun 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-426.el7]
-- [netdrv] hv_netvsc: set nvdev link after populating chn_table (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: synchronize netvsc_change_mtu()/netvsc_set_channels() with netvsc_remove() (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: get rid of struct net_device pointer in struct netvsc_device (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: untangle the pointer mess (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: use start_remove flag to protect netvsc_link_change() (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: move start_remove flag to net_device_context (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: Fix the list processing for network change event (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: Implement support for VF drivers on Hyper-V (Vitaly Kuznetsov) [1333284]
-- [pci] hv: Add explicit barriers to config space access (Vitaly Kuznetsov) [1302147]
-- [pci] hv: Report resources release after stopping the bus (Vitaly Kuznetsov) [1302147]
-- [hv] Separate out frame buffer logic when picking MMIO range (Vitaly Kuznetsov) [1302147]
-- [hv] Record MMIO range in use by frame buffer (Vitaly Kuznetsov) [1302147]
-- [hv] Track allocations of children of hv_vmbus in private resource tree (Vitaly Kuznetsov) [1302147]
-- [hv] Reverse order of resources in hyperv_mmio (Vitaly Kuznetsov) [1302147]
-- [video] hv: Use new vmbus_mmio_free() from client drivers (Vitaly Kuznetsov) [1302147]
-- [include] hv: Make a function to free mmio regions through vmbus (Vitaly Kuznetsov) [1302147]
-- [hv] Lock access to hyperv_mmio resource tree (Vitaly Kuznetsov) [1302147]
-- [pci] hv: Add paravirtual PCI front-end for Microsoft Hyper-V VMs (Vitaly Kuznetsov) [1302147]
-- [x86] export __ioapic_set_affinity to modules (Vitaly Kuznetsov) [1302147]
-- [x86] export x86_msi to modules (Vitaly Kuznetsov) [1302147]
-- [hv] Allow for MMIO claims that span ACPI _CRS records (Vitaly Kuznetsov) [1302147]
-- [include] stddef.h: Move offsetofend() from vfio.h to a generic kernel header (Vitaly Kuznetsov) [1302147]
-- [x86] nmi: Fix use of unallocated cpumask_var_t (Jerry Snitselaar) [1069217]
-- [x86] nmi: Perform a safe NMI stack trace on all CPUs (Jerry Snitselaar) [1069217]
-- [kernel] printk: Add per_cpu printk func to allow printk to be diverted (Jerry Snitselaar) [1069217]
-- [lib] seq: Add minimal support for seq_buf (Jerry Snitselaar) [1069217]
-- [scsi] ipr: Fix regression when loading firmware (Gustavo Duarte) [1274357]
-- [scsi] ipr: Fix out-of-bounds null overwrite (Gustavo Duarte) [1274357]
-- [scsi] ipr: Driver version 2.6.3 (Gustavo Duarte) [1274357]
-- [scsi] ipr: Issue Configure Cache Parameters command (Gustavo Duarte) [1274357]
-- [scsi] ipr: Inquiry IOA page 0xC4 during initialization (Gustavo Duarte) [1274357]
-- [scsi] ipr: Don't set NO_ULEN_CHK bit when resource is a vset (Gustavo Duarte) [1274357]
-- [scsi] ipr: Add delay to ensure coherent dumps (Gustavo Duarte) [1274357]
-- [scsi] ipr: Enable SIS pipe commands for SIS-32 devices (Gustavo Duarte) [1274357]
-- [scsi] ipr: Inhibit underlength data check for AFDASD in raw mode (Gustavo Duarte) [1274357]
-- [nvme] Allocate queues only for online cpus (David Milburn) [1331884]
-- [s390] mm: four page table levels vs. fork (Hendrik Brueckner) [1308879] {CVE-2016-2143}
-- [s390] cpumf: add missing lpp magic initialization (Hendrik Brueckner) [1339534]
-- [s390] cpumf: Fix lpp detection (Hendrik Brueckner) [1339534]
-- [s390] cpumf: Improve guest detection heuristics (Hendrik Brueckner) [1339534]
-- [s390] cpumf: rework program parameter setting to detect guest samples (Hendrik Brueckner) [1339534]
-- [s390] pci: fix use after free in dma_init (Hendrik Brueckner) [1338925]
-- [s390] compat: correct sign-extension of the brk() compat system call (Hendrik Brueckner) [1197172]
-- [s390] fix normalization bug in exception table sorting (Hendrik Brueckner) [1298601]
-- [net] iucv: call skb_linearize() when needed (Hendrik Brueckner) [1335607]
-- [x86] topology: Use total_cpus not nr_cpu_ids for logical packages (Jiri Olsa) [1337866]
-- [x86] topology: Fix Intel HT disable (Jiri Olsa) [1337866]
-- [x86] topology: Fix AMD core count (Jiri Olsa) [1337866]
-- [x86] cpu/amd: Give access to the number of nodes in a physical package (Jiri Olsa) [1337866]
-- [x86] thinkpad_acpi: Convert to snd_card_new() with a device pointer (Jarod Wilson) [1341744]
-- [x86] microcode: Use request_firmware_direct() (Prarit Bhargava) [1340431]
-- [firmware] Introduce request_firmware_direct() (Prarit Bhargava) [1340431]
-- [firmware] Be a bit more verbose about direct firmware loading failure (Prarit Bhargava) [1340431]
-
-* Mon Jun 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-425.el7]
-- [netdrv] ixgbevf: update driver versions to indicate RHEL7.3 (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Remove unused parameter (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Change the relaxed order settings in VF driver for sparc (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Use mac_ops instead of trying to identify NIC type (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Support Windows hosts (Hyper-V) (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Add the device ID's presented while running on Hyper-V (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Move API negotiation function into mac_ops (Ken Cox) [1274175]
-- [netdrv] ixgbevf: make use of BIT() macro to avoid shift of signed values (Ken Cox) [1274175]
-- [netdrv] ixgbevf: add support for per-queue ethtool stats (Ken Cox) [1274175]
-- [netdrv] ixgbevf: refactor ethtool stats handling (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Add support for generic Tx checksums (Ken Cox) [1274175]
-- [netdrv] ixgbevf: use bit operations for setting and checking resets (Ken Cox) [1274175]
-- [netdrv] ixgbevf: fix error code path when setting MAC address (Ken Cox) [1274175]
-- [netdrv] ixgbevf: call ndo_stop() instead of dev_close() when running offline selftest (Ken Cox) [1274175]
-- [netdrv] ixgbevf: minor cleanups for ixgbevf_set_itr() (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Fix handling of NAPI budget when multiple queues are enabled per vector (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Handle extended IPv6 headers in Tx path (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Minor cleanups (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Use a private workqueue to avoid certain possible hangs (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Limit lowest interrupt rate for adaptive interrupt moderation to 12K (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Enables TSO for stacked VLAN (Ken Cox) [1274175]
-- [netdrv] igbvf: use BIT() macro instead of shifts (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: remove unused variable and dead code (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: remove "link is Up" message when registering mcast address (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: Add support for generic Tx checksums (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: don't give up (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: use napi_complete_done() (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: get rid of unnecessary initializations in .get_drvinfo() (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: Enable TSO for stacked VLAN (Corinna Vinschen) [1274173]
-- [netdrv] revert "igb: Fix a deadlock in igb_sriov_reinit" (Corinna Vinschen) [1274172]
-- [netdrv] igb: Garbled output for "ethtool -m" (Corinna Vinschen) [1274172]
-- [netdrv] igb: allow setting MAC address on i211 using a device tree blob (Corinna Vinschen) [1274172]
-- [netdrv] igb: Add support for bulk Tx cleanup & cleanup boolean logic (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix sparse warning about passing __beXX into leXX_to_cpup (Corinna Vinschen) [1274172]
-- [netdrv] igb: call ndo_stop() instead of dev_close() when running offline selftest (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix VLAN tag stripping on Intel i350 (Corinna Vinschen) [1274172]
-- [netdrv] igb: Add support for generic Tx checksums (Corinna Vinschen) [1274172]
-- [netdrv] igb: rename igb define to be more generic (Corinna Vinschen) [1274172]
-- [netdrv] igb: add conditions for I210 to generate periodic clock output (Corinna Vinschen) [1274172]
-- [netdrv] igb: enable WoL for OEM devices regardless of EEPROM setting (Corinna Vinschen) [1274172]
-- [netdrv] igb: constify e1000_phy_operations structure (Corinna Vinschen) [1274172]
-- [netdrv] igb: When GbE link up, wait for Remote receiver status condition (Corinna Vinschen) [1274172]
-- [netdrv] igb: Add workaround for VLAN tag stripping on 82576 (Corinna Vinschen) [1274172]
-- [netdrv] igb: Enable use of "bridge fdb add" to set unicast table entries (Corinna Vinschen) [1274172]
-- [netdrv] igb: Drop unnecessary checks in transmit path (Corinna Vinschen) [1274172]
-- [netdrv] igb: Add support for VLAN promiscuous with SR-IOV and NTUPLE (Corinna Vinschen) [1274172]
-- [netdrv] igb: Clean-up configuration of VF port VLANs (Corinna Vinschen) [1274172]
-- [netdrv] igb: Merge VLVF configuration into igb_vfta_set (Corinna Vinschen) [1274172]
-- [netdrv] igb: Always enable VLAN 0 even if 8021q is not loaded (Corinna Vinschen) [1274172]
-- [netdrv] igb: Do not factor VLANs into RLPML calculation (Corinna Vinschen) [1274172]
-- [netdrv] igb: Allow asymmetric configuration of MTU versus Rx frame size (Corinna Vinschen) [1274172]
-- [netdrv] igb: Refactor VFTA configuration (Corinna Vinschen) [1274172]
-- [netdrv] igb: clean up code for setting MAC address (Corinna Vinschen) [1274172]
-- [netdrv] igb: don't give up (Corinna Vinschen) [1274172]
-- [netdrv] igb: Unpair the queues when changing the number of queues (Corinna Vinschen) [1274172]
-- [netdrv] igb: Remove unnecessary flag setting in igb_set_flag_queue_pairs() (Corinna Vinschen) [1274172]
-- [netdrv] igb: Explicitly label self-test result indices (Corinna Vinschen) [1274172]
-- [netdrv] igb: Improve cable length function for I210, etc (Corinna Vinschen) [1274172]
-- [netdrv] igb: Don't add PHY address to PCDL address (Corinna Vinschen) [1274172]
-- [netdrv] igb: Remove GS40G specific defines/functions (Corinna Vinschen) [1274172]
-- [netdrv] igb: improve handling of disconnected adapters (Corinna Vinschen) [1274172]
-- [netdrv] igb: fix NULL derefs due to skipped SR-IOV enabling (Corinna Vinschen) [1274172]
-- [netdrv] igb: use the correct i210 register for EEMNGCTL (Corinna Vinschen) [1274172]
-- [netdrv] igb: don't unmap NULL hw_addr (Corinna Vinschen) [1274172]
-- [netdrv] igb: add 88E1543 initialization code (Corinna Vinschen) [1274172]
-- [netdrv] igb: use napi_complete_done() (Corinna Vinschen) [1274172]
-- [netdrv] igb: get rid of unnecessary initializations in .get_drvinfo() (Corinna Vinschen) [1274172]
-- [netdrv] igb: avoid using timespec (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix a memory leak in igb_probe (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix a deadlock in igb_sriov_reinit (Corinna Vinschen) [1274172]
-- [netdrv] igb: implement high frequency periodic output signals (Corinna Vinschen) [1274172]
-- [netdrv] igb: missing rtnl_unlock in igb_sriov_reinit() (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix oops caused by missing queue pairing (Corinna Vinschen) [1274172]
-- [netdrv] igb: bump version to igb-5.3.0 (Corinna Vinschen) [1274172]
-- [netdrv] igb: use ARRAY_SIZE to replace calculating sizeof(a)/sizeof(a[0]) (Corinna Vinschen) [1274172]
-- [netdrv] igb: report unsupported ethtool settings in set_coalesce (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix i354 88E1112 PHY on RCC boards using AutoMediaDetect (Corinna Vinschen) [1274172]
-- [netdrv] igb: Pull timestamp from fragment before adding it to skb (Corinna Vinschen) [1274172]
-- [netdrv] igb: only report generic filters in get_ts_info (Corinna Vinschen) [1274172]
-- [netdrv] igb: bump version of igb to 5.2.18 (Corinna Vinschen) [1274172]
-- [netdrv] igb: disable IPv6 extension header processing (Corinna Vinschen) [1274172]
-- [netdrv] igb: fix the start time for periodic output signals (Corinna Vinschen) [1274172]
-
-* Mon Jun 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-424.el7]
-- [netdrv] ibmvnic: Enable use of multiple tx/rx scrqs (Steve Best) [1332848]
-- [netdrv] ibmvnic: enable RX checksum offload (Steve Best) [1332848]
-- [netdrv] ibmvnic: map L2/L3/L4 header descriptors to firmware (Steve Best) [1332848]
-- [netdrv] ibmvnic: Fix ibmvnic_capability struct (Steve Best) [1332848]
-- [x86] kvm: simplify kvm_apic_map (Paul Lai) [1319021]
-- [x86] vmx: Add host irq information in trace event when updating IRTE for posted interrupts (Paul Lai) [1319021]
-- [x86] kvm: Add lowest-priority support for vt-d posted-interrupts (Paul Lai) [1319021]
-- [x86] kvm: Use vector-hashing to deliver lowest-priority interrupts (Paul Lai) [1319021]
-- [x86] kvm: Recover IRTE to remapped mode if the interrupt is not single-destination (Paul Lai) [1319021]
-- [x86] kvm: avoid logical_map when it is invalid (Paul Lai) [1319021]
-- [x86] kvm: fix mixed APIC mode broadcast (Paul Lai) [1319021]
-- [x86] kvm: use MDA for interrupt matching (Paul Lai) [1319021]
-- [x86] kvm: fix x2apic logical address matching (Paul Lai) [1319021]
-- [x86] kvm: replace 0 with APIC_DEST_PHYSICAL (Paul Lai) [1319021]
-- [x86] kvm: cleanup kvm_apic_match_*() (Paul Lai) [1319021]
-- [x86] kvm: return bool from kvm_apic_match*() (Paul Lai) [1319021]
-- [tty] don't leak cdev in tty_cdev_add() (Prarit Bhargava) [1173155]
-- [tty] Avoid usb reset crashes by making tty_io cdevs truly dynamic (Prarit Bhargava) [1173155]
-- [pci] Set MPS to match upstream bridge (Myron Stowe) [1256951]
-- [pci] Move MPS configuration check to pci_configure_device() (Myron Stowe) [1256951]
-- [x86] perf: uncore: Remove WARN_ON_ONCE in uncore_pci_probe (Jiri Olsa) [1337804]
-- [x86] perf/intel/uncore: Fix CHA registers configuration procedure for Knights Landing platform (Jiri Olsa) [1334752]
-- [x86] uv: Disable UV BAU by default (Frank Ramsay) [1329656]
-- [hwmon] coretemp: Replace cpu_sibling_mask() with topology_sibling_cpumask() (David Arcari) [1338826]
-- [kernel] sched/topology: Rename topology_thread_cpumask() to topology_sibling_cpumask() (David Arcari) [1338826]
-- [hwmon] coretemp: Allow format checking (David Arcari) [1338826]
-- [hwmon] coretemp: Convert to use devm_hwmon_device_register_with_groups (David Arcari) [1338826]
-- [hwmon] coretemp: Allocate platform data with devm_kzalloc (David Arcari) [1338826]
-- [hwmon] coretemp: Use sysfs_create_group to create sysfs attributes (David Arcari) [1338826]
-- [hwmon] coretemp: Do not return -EAGAIN for low temperatures (David Arcari) [1338826]
-- [hwmon] coretemp: Add PCI device ID for CE41x0 CPUs (David Arcari) [1338826]
-- [hwmon] coretemp: Use PCI host bridge ID to identify CPU if necessary (David Arcari) [1338826]
-- [hwmon] coretemp: Fix truncated name of alarm attributes (David Arcari) [1338826]
-- [hwmon] coretemp: Remove redundant platform_set_drvdata() (David Arcari) [1338826]
-- [scsi] Add QEMU CD-ROM to VPD Inquiry Blacklist (Ewan Milne) [1340360]
-- [documentation] ip-sysctl.txt: clarify secure_redirects (Eric Garver) [1300442]
-- [net] avoid reference counter overflows on fib_rules in multicast forwarding (Eric Garver) [1335918]
-- [net] team: don't call netdev_change_features under team->lock (Ivan Vecera) [1339570]
-- [net] Add compatible kAPI for skb_get_rxhash (William Townsend) [1329650]
-- [net] multicast: Extend ip address command to enable multicast group join/leave on (Eric Garver) [1267398]
-- [net] ipv6: support IFA_F_MANAGETEMPADDR for address deletion too (Jakub Sitnicki) [1263384]
-- [net] ipv6: don't disable interface if last ipv6 address is removed (Jakub Sitnicki) [1263384]
-- [net] netfilter: nfnetlink_queue: Unregister pernet subsys in case of init failure (Paolo Abeni) [1337024]
-- [net] netfilter: nfnetlink_{log, queue}: Register pernet in first place (Paolo Abeni) [1337024]
-- [net] team: remove duplicate set of flag IFF_MULTICAST (Xin Long) [1302771]
-- [net] team: Replace rcu_read_lock with a mutex in team_vlan_rx_kill_vid (Xin Long) [1302771]
-- [net] team: Advertise tunneling offload features (Xin Long) [1302771]
-- [net] team: rtnl_lock for options set (Xin Long) [1302771]
-- [net] team: Don't segment multiple tagged packets on team device (Xin Long) [1302771]
-- [net] team: Remove dead code (Xin Long) [1302771]
-- [net] team: Simplify return path of team_newlink (Xin Long) [1302771]
-- [net] team: lb: use sizeof(*fprog) in __fprog_create (Xin Long) [1302771]
-- [net] team: fix vlan_features computing (Xin Long) [1302771]
-- [net] team: block mtu change before it happens via NETDEV_PRECHANGEMTU (Xin Long) [1302771]
-- [net] team: inherit addr_assign_type along with dev_addr (Xin Long) [1302771]
-- [net] team: cleanup netpoll clode (Xin Long) [1302771]
-- [net] make all team port device link events urgent (Xin Long) [1302771]
-
-* Fri Jun 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-423.el7]
-- [infiniband] security: Restrict use of the write() interface (Don Dutile) [1316685] {CVE-2016-4565}
-- [mm] add support for __GFP_ZERO flag to dma_pool_alloc() (Torez Smith) [1337075]
-- [hv] balloon: reset host_specified_ha_region (Vitaly Kuznetsov) [1325967]
-- [hv] balloon: don't crash when memory is added in non-sorted order (Vitaly Kuznetsov) [1325967]
-- [hv] hv_balloon: match var type to return type of wait_for_completion (Vitaly Kuznetsov) [1325967]
-- [hv] balloon: check if ha_region_mutex was acquired in MEM_CANCEL_ONLINE case (Vitaly Kuznetsov) [1325967]
-- [pci] Add DMA alias quirk for mic_x200_dma (Jerry Snitselaar) [1299853]
-- [pci] Add support for multiple DMA aliases (Jerry Snitselaar) [1299853]
-- [pci] Move informational printk to pci_add_dma_alias() (Jerry Snitselaar) [1299853]
-- [pci] Add pci_add_dma_alias() to abstract implementation (Jerry Snitselaar) [1299853]
-- [drivers] avoid format strings in names passed to alloc_workqueue() ("Herton R. Krzesinski") [1336867]
-- [kernel] rcu: Improve diagnostics for spurious RCU CPU stall warnings ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Don't use NMIs to dump other CPUs' stacks ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Protect uses of jiffies_stall field with ACCESS_ONCE() ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Print negatives for stall-warning counter wraparound ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Convert rcutree.c printk calls ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Kick CPU halfway to RCU CPU stall warning ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Reject memory-order-induced stall-warning false positives ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Drive quiescent-state-forcing delay from HZ ("Herton R. Krzesinski") [1320261]
-- [mm] memcg: reparent charges of children before processing parent ("Herton R. Krzesinski") [1336863]
-- [include] jiffies: Avoid undefined behavior from signed overflow ("Herton R. Krzesinski") [1336863]
-- [mm] compaction: break out of loop on !PageBuddy in isolate_freepages_block ("Herton R. Krzesinski") [1336863]
-- [ipc] Fix 2 bugs in msgrcv() MSG_COPY implementation ("Herton R. Krzesinski") [1336863]
-- [kernel] tracing: Do not add event files for modules that fail tracepoints ("Herton R. Krzesinski") [1336863]
-- [kernel] cpuset: fix a race condition in __cpuset_node_allowed_softwall() ("Herton R. Krzesinski") [1336863]
-- [kernel] genirq: Remove racy waitqueue_active check ("Herton R. Krzesinski") [1336863]
-- [kernel] workqueue: ensure @task is valid across kthread_stop() ("Herton R. Krzesinski") [1336863]
-- [mm] memcg: fix endless loop caused by mem_cgroup_iter ("Herton R. Krzesinski") [1297381 1336863]
-- [include] compiler/gcc4: Make quirk for asm_volatile_goto() unconditional ("Herton R. Krzesinski") [1336863]
-- [scripts] modpost: fixed USB alias generation for ranges including 0x9 and 0xA ("Herton R. Krzesinski") [1336863]
-- [kernel] timekeeping: Fix missing timekeeping_update in suspend path ("Herton R. Krzesinski") [1336863]
-- [kernel] timekeeping: Fix CLOCK_TAI timer/nanosleep delays ("Herton R. Krzesinski") [1336863]
-- [kernel] ftrace: Have function graph only trace based on global_ops filters ("Herton R. Krzesinski") [1336863]
-- [kernel] ftrace: Fix synchronization location disabling and freeing ftrace_ops ("Herton R. Krzesinski") [1336863]
-- [kernel] ftrace: Synchronize setting function_trace_op with ftrace_trace_function ("Herton R. Krzesinski") [1336863]
-- [mm] slub: Fix calculation of cpu slabs ("Herton R. Krzesinski") [1336863]
-- [kernel] tracing: Have trace buffer point back to trace_array ("Herton R. Krzesinski") [1336863]
-- [mm] mempolicy.c: fix mempolicy printing in numa_maps ("Herton R. Krzesinski") [1336863]
-- [kernel] sched/fair: Fix unlocked reads of some cfs_b->quota/period ("Herton R. Krzesinski") [1336863]
-- [kernel] sched/fair: Fix tg_set_cfs_bandwidth() deadlock on rq->lock ("Herton R. Krzesinski") [1336863]
-- [kernel] sched: Guarantee new group-entities always have weight ("Herton R. Krzesinski") [1336863]
-- [kernel] sched: Fix hrtimer_cancel()/rq->lock deadlock ("Herton R. Krzesinski") [1336863]
-- [kernel] sched: Fix cfs_bandwidth misuse of hrtimer_expires_remaining ("Herton R. Krzesinski") [1336863]
-- [kernel] sched: Fix race on toggling cfs_bandwidth_used ("Herton R. Krzesinski") [1336863]
-
-* Thu Jun 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-422.el7]
-- [net] bluetooth: KABI cleanups (Don Zickus) [1296707]
-- [include] sched/wait: Introduce wait_on_bit_timeout() (Don Zickus) [1296707]
-- [include] netlink: add nla_get for le32 and le64 (Don Zickus) [1296707]
-- [include] 6lowpan: nuke net_ieee802154_lowpan() accessor when 6lowpan is disabled (Don Zickus) [1296707]
-- [include] 6lowpan: add helper to get 6lowpan namespace (Don Zickus) [1296707]
-- [include] if_arp: add ARPHRD_6LOWPAN type (Don Zickus) [1296707]
-- [include] net: ns: add ieee802154_6lowpan namespace (Don Zickus) [1296707]
-- [include] ipv6: add ipv6_addr_prefix_copy (Don Zickus) [1296707]
-- [include] netdevice: add ieee802154_ptr to net_device (Don Zickus) [1296707]
-- [net] 802154 and 6lowpan: Rebase to v4.5 (Don Zickus) [1296707]
-- [bluetooth] intel: Use request_firmware instead (Don Zickus) [1296707]
-- [include] of: restructure for_each macros to fix compile warnings (Don Zickus) [1296707]
-- [include] of: Add empty for_each_available_child_of_node() macro definition (Don Zickus) [1296707]
-- [include] of: make for_each_child_of_node() reference its args when CONFIG_OF=n (Don Zickus) [1296707]
-- [include] of: introduce of_get_available_child_count (Don Zickus) [1296707]
-- [kernel] sched/wait: Fix a kthread race with wait_woken() (Don Zickus) [1296707]
-- [kernel] sched/wait: Provide infrastructure to deal with nested blocking (Don Zickus) [1296707]
-- [include] device coredump: add new device coredump class (Don Zickus) [1296707]
-- [net] bluetooth: Rebase to v4.5 (Don Zickus) [1296707]
-- [drm] revert "drm/i915: start adding dp mst audio" (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087]
-- [drm] dp_mst: Restore primary hub guid on resume (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1336546]
-- [drm] dp_mst: Validate port in drm_dp_payload_send_msg() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087 1331031]
-- [drm] dp_mst: Get validated port ref in drm_dp_update_payload_part1() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087]
-- [drm] i915: Call intel_dp_mst_resume() before resuming displays (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087]
-- [drm] i915: Get rid of intel_dp_dpcd_read_wake() (Rob Clark) [1072036 1115530 1202702 1211398 1235963 1272159]
-- [drm] dp_helper: Perform throw-away read before actual read in drm_dp_dpcd_read() (Rob Clark) [1072036 1115530 1202702 1211398 1235963 1272159]
-- [drm] dp_helper: Retry aux transactions on all errors (Rob Clark) [1072036 1115530 1202702 1211398 1235963 1272159]
-- [drm] dp_helper: Always wait before retrying native aux transactions (Rob Clark) [1072036 1115530 1202702 1211398 1235963 1272159]
-- [drm] dp: move hw_mutex up the call stack (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1274157]
-- [drm] i915: Fix race condition in intel_dp_destroy_mst_connector() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087]
-- [drm] upstream sync to v4.5 (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] tracing: Add trace_<tracepoint>_enabled() function (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] compat: add in_compat_syscall to ask whether we're in a compat syscall (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [mm] Export nr_swap_pages (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [lib] string: introduce match_string() helper (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] async: export current_is_async() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [pci] Decouple quirks.c from i915_reg.h (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [mm] introduce mapping_gfp_constraint() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] bitops.h: add sign_extend64() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [vga] vga_switcheroo: Constify vga_switcheroo_handler (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] arch: introduce memremap() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] mm: enhance region_is_ram() to region_intersects() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [x86] mm: Remove region_is_ram() call from ioremap (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [x86] mm: Move warning from __ioremap_check_ram() to the call site (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] mm: Fix bugs in region_is_ram() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] locking: Add WARN_ON_ONCE lock assertion (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [pwm] Add sysfs interface (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-
-* Wed Jun 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-421.el7]
-- [netdrv] ixgbe: update driver versions to indicate RHEL7.3 (Ken Cox) [1274174]
-- [netdrv] ixgbe: use correct mask when enabling sriov (Ken Cox) [1274174]
-- [netdrv] ixgbe: replace dev->trans_start accesses with dev_trans_start (Ken Cox) [1274174]
-- [netdrv] ixgbe: Disable DCB and FCoE for X550EM_x and x550em_a (Ken Cox) [1274174]
-- [netdrv] ixgbe: Revise populating few registers and macro definitions (Ken Cox) [1274174]
-- [netdrv] ixgbe: Remove duplicate and unused device ID definitions (Ken Cox) [1274174]
-- [netdrv] ixgbe: Return 64 bit stats values (Ken Cox) [1274174]
-- [netdrv] ixgbe: check EEPROM for WOL support for X540 and above (Ken Cox) [1274174]
-- [netdrv] ixgbe: add WoL support for some 82599 subdevice IDs (Ken Cox) [1274174]
-- [netdrv] ixgbe: use msleep for long delays (Ken Cox) [1274174]
-- [netdrv] ixgbe: resolve shift of negative value warning (Ken Cox) [1274174]
-- [netdrv] ixgbe: use BIT() macro (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add work around for empty SFP+ cage crosstalk (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use correct FC setup function for x550em_a (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add register wait for slow links (Ken Cox) [1274174]
-- [netdrv] ixgbe: make 'action' field in struct ixgbe_fdir_filter a u64 value (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix default mac->ops.setup_link for X550EM (Ken Cox) [1274174]
-- [netdrv] ixgbe: set VLAN spoof checking unconditionally (Ken Cox) [1274174]
-- [netdrv] ixgbe: consolidate the configuration of spoof checking (Ken Cox) [1274174]
-- [netdrv] ixgbe: protect vxlan_get_rx_port in ixgbe_service_task with rtnl_lock (Ken Cox) [1274174]
-- [netdrv] ixgbe: Bump version number (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add KR backplane support for x550em_a (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for SGMII backplane interface (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for SFPs with retimer (Ken Cox) [1274174]
-- [netdrv] ixgbe: Introduce function to control MDIO speed (Ken Cox) [1274174]
-- [netdrv] ixgbe: Read and parse NW_MNG_IF_SEL register (Ken Cox) [1274174]
-- [netdrv] ixgbe: Read and set instance id (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use new methods for PHY access (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for x550em_a 10G MAC type (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use method pointer to access IOSF devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add definitions for x550em_a 10G MAC (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for single-port X550 device (Ken Cox) [1274174]
-- [netdrv] ixgbe: Take manageability semaphore for firmware commands (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clean up interface for firmware commands (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct length check for round up (Ken Cox) [1274174]
-- [netdrv] ixgbe: Change the lan_id and func fields to a u8 to avoid casts (Ken Cox) [1274174]
-- [netdrv] ixgbe: Delete some unused register definitions (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for toggling VLAN filtering flag via ethtool (Ken Cox) [1274174]
-- [netdrv] ixgbe: Place SWFW semaphore in known valid state at probe (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix flow control for Xeon D KR backplane (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for generic Tx checksums (Ken Cox) [1274174]
-- [netdrv] ixgbe: Look up MAC address in Open Firmware or IDPROM (Ken Cox) [1274174]
-- [netdrv] ixgbe: Make all unchanging ops structures const (Ken Cox) [1274174]
-- [netdrv] ixgbe: Avoid adding VLAN 0 twice to VLVF and VFTA (Ken Cox) [1274174]
-- [netdrv] ixgbe: Do not allow PF to add VLVF entry unless it actually needs it (Ken Cox) [1274174]
-- [netdrv] ixgbe: Extend trust to allow guest to set unicast address (Ken Cox) [1274174]
-- [netdrv] ixgbe: slight optimization of addr compare (Ken Cox) [1274174]
-- [netdrv] ixgbe: make __ixgbe_setup_tc static (Ken Cox) [1274174]
-- [netdrv] ixgbe: call ndo_stop() instead of dev_close() when running offline selftest (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use udelay to avoid sleeping while atomic (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix ATR so that it correctly handles IPv6 extension headers (Ken Cox) [1274174]
-- [netdrv] ixgbe: Store VXLAN port number in network order (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix for RAR0 not being set to default MAC addr (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix dates on header of ixgbe_model.h (Ken Cox) [1274174]
-- [netdrv] ixgbe: use u32 instead of __u32 in model header (Ken Cox) [1274174]
-- [netdrv] ixgbe: add minimal parser details for ixgbe (Ken Cox) [1274174]
-- [netdrv] ixgbe: Make ATR recognize IPv6 extended headers (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix MDD events generated when FCoE+SRIOV are enabled (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix to get FDMI HBA attributes information with X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct handling of any outer UDP checksum setting (Ken Cox) [1274174]
-- [netdrv] ixgbe: do not call check_link for ethtool in ixgbe_get_settings() (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix broken PFC with X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: use correct FCoE DDP max check (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fill at least min credits to a TC credit refills (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix bugs in ixgbe_clear_vf_vlans() (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct X550EM_x revision check (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix RSS limit for X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clean up redundancy in hw_enc_features (Ken Cox) [1274174]
-- [netdrv] ixgbe: report correct media type for KR, KX and KX4 interfaces (Ken Cox) [1274174]
-- [netdrv] ixgbe: add support for QSFP PHY types in ixgbe_get_settings() (Ken Cox) [1274174]
-- [netdrv] ixgbe: do not report 2.5 Gbps as supported (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clean stale VLANs when changing port VLAN or resetting (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clear stale pool mappings (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix VLAN promisc in relation to SR-IOV (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for VLAN promiscuous with SR-IOV (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix inconsistent clearing of the multicast table (Ken Cox) [1274174]
-- [netdrv] ixgbe: Reorder search to work from the top down instead of bottom up (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for adding/removing VLAN on PF bypassing the VLVF (Ken Cox) [1274174]
-- [netdrv] ixgbe: Simplify configuration of setting VLVF and VLVFB (Ken Cox) [1274174]
-- [netdrv] ixgbe: Reduce VT code indent in set_vfta by introducing jump label (Ken Cox) [1274174]
-- [netdrv] ixgbe: Simplify definitions for regidx and bit in set_vfta (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix SR-IOV VLAN pool configuration (Ken Cox) [1274174]
-- [netdrv] ixgbe: Return error on failure to allocate mac_table (Ken Cox) [1274174]
-- [netdrv] ixgbe: Reset interface after enabling SR-IOV (Ken Cox) [1274174]
-- [netdrv] ixgbe: Always turn PHY power on when requested (Ken Cox) [1274174]
-- [netdrv] ixgbe: Handle extended IPv6 headers in Tx path (Ken Cox) [1274174]
-- [netdrv] ixgbe: Save VF info and take references (Ken Cox) [1274174]
-- [netdrv] ixgbe: Wait for master disable to be set (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct spec violations by waiting after reset (Ken Cox) [1274174]
-- [netdrv] ixgbe: Update PTP to support X550EM_x devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: convert to the 64 bit get/set time methods (Ken Cox) [1274174]
-- [netdrv] ixgbe: Allow FDB entries access to more RAR filters (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use __dev_uc_sync and __dev_uc_unsync for unicast addresses (Ken Cox) [1274174]
-- [netdrv] ixgbe: Refactor MAC address configuration code (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use private workqueue to avoid certain possible hangs (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for newer thermal alarm (Ken Cox) [1274174]
-- [netdrv] ixgbe: Prevent KR PHY reset in ixgbe_init_phy_ops_x550em (Ken Cox) [1274174]
-- [netdrv] ixgbe: Remove CS4227 diagnostic code (Ken Cox) [1274174]
-- [netdrv] ixgbe/ixgbevf: use napi_schedule_irqoff() (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add KR mode support for CS4227 chip (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix handling of NAPI budget when multiple queues are enabled per vector (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix multiple kernel-doc errors (Ken Cox) [1274174]
-- [netdrv] ixgbe: Delete redundant include file (Ken Cox) [1274174]
-- [netdrv] ixgbe: drop null test before destroy functions (Ken Cox) [1274174]
-- [netdrv] ixgbe, ixgbevf: Add new mbox API xcast mode (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add new ndo to trust VF (Ken Cox) [1274174]
-- [netdrv] ixgbe: use napi_complete_done() (Ken Cox) [1274174]
-- [netdrv] ixgbe: get rid of unnecessary initializations in .get_drvinfo() (Ken Cox) [1274174]
-- [netdrv] ixgbe: Check for setup_internal_link method (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix CS4227-related semaphore error on reset failure (Ken Cox) [1274174]
-- [netdrv] ixgbe: disable LRO by default (Ken Cox) [1274174]
-- [netdrv] ixgbe: add flow control ethertype to the anti-spoofing filter (Ken Cox) [1274174]
-- [netdrv] ixgbe: Advance version to 4.2.1 (Ken Cox) [1274174]
-- [netdrv] ixgbe: X540 thermal warning interrupt not a GPI (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix FCRTH value in VM-to-VM loopback mode (Ken Cox) [1274174]
-- [netdrv] ixgbe: Only clear adapter_stopped if ixgbe_setup_fc succeeded (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct several flaws with with DCA setup (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add new X550EM SFP+ device ID (Ken Cox) [1274174]
-- [netdrv] ixgbe: Update ixgbe_disable_pcie_master flow for X550* (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add small packet padding support for X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct setting of RDRXCTL register for X550* devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct error path in semaphore handling (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add I2C bus mux support (Ken Cox) [1274174]
-- [netdrv] ixgbe: Limit SFP polling rate (Ken Cox) [1274174]
-- [netdrv] ixgbe: Allow SFP+ on more than 82598 and 82599 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add logic to reset CS4227 when needed (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix 1G and 10G link stability for X550EM_x SFP+ (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add X550EM_x dual-speed SFP+ support (Ken Cox) [1274174]
-- [netdrv] ixgbe: Allow reduced delays during SFP detection (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clear I2C destination location (Ken Cox) [1274174]
-- [netdrv] ixgbe: Enable bit-banging mode on X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Set lan_id before first I2C eeprom access (Ken Cox) [1274174]
-- [netdrv] ixgbe: Provide unlocked I2C methods (Ken Cox) [1274174]
-- [netdrv] ixgbe: Provide I2C combined on X550EM (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add X550EM support for SFP insertion interrupt (Ken Cox) [1274174]
-- [netdrv] ixgbe: Accept SFP not present errors on all devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add fdir support for SCTP on X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add SFP+ detection for X550 hardware (Ken Cox) [1274174]
-- [netdrv] ixgbe: Limit lowest interrupt rate for adaptive interrupt moderation to 12K (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix issue with SFP events with new X550 devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Resolve "initialized field overwritten" warnings (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for reporting 2.5G link speed (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix bounds checking in ixgbe_setup_tc for 82598 (Ken Cox) [1274174]
-- [netdrv] ixgbe: support for ethtool set_rxfh (Ken Cox) [1274174]
-- [netdrv] ixgbe: Avoid needless PHY access on copper phys (Ken Cox) [1274174]
-- [netdrv] ixgbe: cleanup to use cached mask value (Ken Cox) [1274174]
-- [netdrv] ixgbe: Remove second instance of lan_id variable (Ken Cox) [1274174]
-- [netdrv] ixgbe: Remove unused PCI bus types (Ken Cox) [1274174]
-- [netdrv] ixgbe: add new bus type for intergrated I/O interface (IOSF) (Ken Cox) [1274174]
-- [netdrv] ixgbe: add get_bus_info method for X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for entering low power link up state (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for VXLAN RX offloads (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for UDP-encapsulated tx checksum offload (Ken Cox) [1274174]
-- [netdrv] ixgbe: add VXLAN offload support for X550 devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Check whether FDIRCMD writes actually complete (Ken Cox) [1274174]
-- [netdrv] ixgbe: Assign set_phy_power dynamically where needed (Ken Cox) [1274174]
-- [netdrv] ixgbe: add new function to check for management presence (Ken Cox) [1274174]
-- [netdrv] ixgbe: TRIVIAL fix up double 'the' and comment style (Ken Cox) [1274174]
-- [netdrv] ixgbe: Simplify port-specific macros (Ken Cox) [1274174]
-- [netdrv] ixgbe: Convert to use devm_hwmon_device_register_with_groups (Ken Cox) [1274174]
-- [netdrv] ixgbe: enable l2 forwarding acceleration for macvlans (Ken Cox) [1274174]
-
-* Wed Jun 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-420.el7]
-- [netdrv] bnxt_en: Use dma_rmb() instead of rmb() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add BCM57314 device ID (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Simplify and improve unsupported SFP+ module reporting (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix length value in dmesg log firmware error message (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve the delay logic for firmware response (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Reduce maximum ring pages if page size is 64K (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Report PCIe link speed and width during driver load (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add Support for ETHTOOL_GMODULEINFO and ETHTOOL_GMODULEEEPRO (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix invalid max channel parameter in ethtool -l (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add workaround to detect bad opaque in rx completion (part 2) (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add workaround to detect bad opaque in rx completion (part 1) (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Setup multicast properly after resetting device (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Need memory barrier when processing the completion ring (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Divide a page into 32K buffers for the aggregation ring if necessary (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Limit RX BD pages to be no bigger than 32K (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Don't fallback to INTA on VF (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add async event handling for speed config changes (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Call firmware to approve VF MAC address change (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Shutdown link when device is closed (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Disallow forced speed for 10GBaseT devices (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve ethtool .get_settings() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Check for valid forced speed during ethtool -s (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add unsupported SFP+ module warnings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Set async event bits when registering with the firmware (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add get_eee() and set_eee() ethtool support (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add EEE setup code (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add basic EEE support (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve flow control autoneg with Firmware 1.2.1 interface (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Update to Firmware 1.2.2 spec (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix ethtool -a reporting (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix typo in bnxt_hwrm_set_pause_common() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Implement proper firmware message padding (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Initialize CP doorbell value before ring allocation (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Enable AER support (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Include hardware port statistics in ethtool -S (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Include some hardware port statistics in ndo_get_stats64() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add port statistics support (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Extend autoneg to all speeds (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Use common function to get ethtool supported flags (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add reporting of link partner advertisement (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Refactor bnxt_fw_to_ethtool_advertised_spds() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add hwrm_send_message_silent() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Refactor _hwrm_send_message() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add installed-package firmware version reporting via Ethtool GDRVINFO (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix dmesg log firmware error messages (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Use firmware provided message timeout value (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add coalescing support for tx rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Refactor bnxt_hwrm_set_coal() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Store irq coalescing timer values in micro seconds (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Send PF driver unload notification to all VFs (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve bnxt_vf_update_mac() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix zero padding of tx push data (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Failure to update PHY is not fatal condition (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Remove unnecessary call to update PHY settings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Poll link at the end of __bnxt_open_nic() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Reduce default ring sizes (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix implementation of tx push operation (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Remove 20G support and advertise only 40GbaseCR4 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Cleanup and Fix flow control setup logic (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix ethtool autoneg logic (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix crash in bnxt_free_tx_skbs() during tx timeout (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Exclude rx_drop_pkts hw counter from the stack's rx_dropped counter (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Ring free response from close path should use completion ring (John Linville) [1184635 1312277]
-- [netdrv] bnxt: always return values from _bnxt_get_max_rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Reset embedded processor after applying firmware upgrade (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Zero pad firmware messages to 128 bytes (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Modify ethtool -l|-L to support combined or rx/tx rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Modify init sequence to support shared or non shared rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Modify bnxt_get_max_rings() to support shared or non shared rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Re-structure ring indexing and mapping (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Check for NULL rx or tx ring (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Separate bnxt_{rx|tx}_ring_info structs from bnxt_napi struct (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Refactor bnxt_dbg_dump_states() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add BCM57301 & BCM57402 devices (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Update to Firmware interface spec 1.0.0 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Keep track of the ring group resource (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve VF resource accounting (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Cleanup bnxt_hwrm_func_cfg() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Check hardware resources before enabling NTUPLE (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Don't treat single segment rx frames as GRO frames (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Allocate rx_cpu_rmap only if Accelerated RFS is enabled (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Increment checksum error counter only if NETIF_F_RXCSUM is set (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add support for upgrading APE/NC-SI firmware via Ethtool FLASHDEV (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Optimize ring alloc and ring free functions (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: support hwrm_func_drv_unrgtr command (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Implement missing tx timeout reset logic (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Don't cancel sp_task from bnxt_close_nic() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Change bp->state to bitmap (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix bitmap declaration to work on 32-bit arches (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Setup uc_list mac filters after resetting the chip (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: enforce proper storing of MAC address (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fixed incorrect implementation of ndo_set_mac_address (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: More robust SRIOV cleanup sequence (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix comparison of u16 sw_id against negative value (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: map CAG_REG_LEGACY_INT_STATUS_MASK to GRC window #4 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Determine tcp/ipv6 RSS hash type correctly (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Change sp events definitions to represent bit position (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix compile warnings when CONFIG_INET is not set (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix compile errors when CONFIG_BNXT_SRIOV is not set (John Linville) [1184635 1312277]
-- [netdrv] bnxt: rewrite flow dissector bits for RHEL 7.3 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Backport bnxt portions of upstream commit 93d05d4a320c (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Backport bnxt portions of upstream commit 5eb4dce3b347 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Backport bnxt portions of upstream commit 16e5cc647173 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Backport bnxt portions of upstream commit e4c6734eaab9 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: New Broadcom ethernet driver (John Linville) [1184635 1312277]
-
-* Tue May 31 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-419.el7]
-- [misc] cxl: Check periodically the coherent platform function's state (Steve Best) [1338865]
-- [misc] cxl: Allow initialization on timebase sync failures (Steve Best) [1338865]
-- [powercap] rapl: add support for skx (Steve Best) [1273742]
-- [virtio] virtio_balloon: fix PFN format for virtio-1 (Thomas Huth) [1337945]
-- [powerpc] perf/24x7: Eliminate domain suffix in event names (Jiri Olsa) [1320561]
-- [powerpc] perf/hv-24x7: Display domain indices in sysfs (Jiri Olsa) [1320561]
-- [powerpc] perf/hv-24x7: Display change in counter values (Jiri Olsa) [1320561]
-- [powerpc] perf/hv-24x7: Fix usage with chip events (Jiri Olsa) [1320561]
-- [mm] move MM_SHMEMPAGES counter into reserved slot of {task, mm}_struct (Jerome Marchand) [838926]
-- [mm] procfs: breakdown RSS for anon, shmem and file in /proc/pid/status (Jerome Marchand) [838926]
-- [mm] shmem: add internal shmem resident memory accounting (Jerome Marchand) [838926]
-- [mm] proc: reduce cost of /proc/pid/smaps for unpopulated shmem mappings (Jerome Marchand) [838926]
-- [mm] proc: reduce cost of /proc/pid/smaps for shmem mappings (Jerome Marchand) [838926]
-- [mm] proc: account for shmem swap in /proc/pid/smaps (Jerome Marchand) [838926]
-- [mm] documentation: clarify /proc/pid/status VmSwap limitations for shmem (Jerome Marchand) [838926]
-- [scsi] mpt3sas: Updating mpt3sas driver version to 13.100.00.00 (Tomas Henzl) [1270168]
-- [scsi] mpt3sas: Update MPI header to 2.00.42 (Tomas Henzl) [1270168]
-- [scsi] mpt3sas: Set maximum transfer length per IO to 4MB for VDs (Tomas Henzl) [1270168]
-- [scsi] mpt3sas: Handle active cable exception event (Tomas Henzl) [1270168]
-- [scsi] mpt3sas: Used "synchronize_irq()"API to synchronize timed-out IO & TMs (Tomas Henzl) [1270168]
-- [irq_poll] Fix irq_poll_sched() (Jeff Moyer) [1336479]
-- [irq_poll] remove unused data and max fields (Jeff Moyer) [1336479]
-- [irq_poll] mark __irq_poll_complete static (Jeff Moyer) [1336479]
-- [scsi] irq_poll: fold irq_poll_disable_pending into irq_poll_softirq (Jeff Moyer) [1336479]
-- [irq_poll] fold irq_poll_sched_prep into irq_poll_sched (Jeff Moyer) [1336479]
-- [irq_poll] don't disable new irq_poll instances (Jeff Moyer) [1336479]
-- [irq_poll] make blk-iopoll available outside the block layer (Jeff Moyer) [1336479]
-- [block] blk-iopoll.c: use iop instead of iopoll (Jeff Moyer) [1336479]
-- [block] remove old blk_iopoll_enabled variable (Jeff Moyer) [1336479]
-- [fs] nfsd: return correct lockowner when there is a race on hash insert ("J. Bruce Fields") [1329485]
-- [fs] nfsd: return correct openowner when there is a race to put one in the hash ("J. Bruce Fields") [1329485]
-- [fs] gfs2: Cache ACLs read from disk (Andreas Gruenbacher) [1334817]
-- [fs] revert "libxfs: pack the agfl header structure so XFS_AGFL_SIZE is correct" (Eric Sandeen) [1336918]
-- [fs] svcrdma: Fix send_reply() scatter/gather set-up (Steve Dickson) [1327280]
-- [fs] svcrdma: Scrub BUG_ON() and WARN_ON() call sites (Steve Dickson) [1327280]
-
-* Thu May 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-418.el7]
-- [include] alsa: acpi / utils: Add acpi_dev_present() (Jaroslav Kysela) [1288993]
-- [include] alsa: pci: Add QEMU top-level IDs for (sub)vendor & device (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: Add get_eld audio component (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: set proper N/CTS in modeset (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: implement sync_audio_rate callback (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: Add audio sync_audio_rate callback (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: fix kernel-doc warnings in intel_audio.c (Jaroslav Kysela) [1288993]
-- [include] alsa: drm: Remove the 'mode' argument from drm_select_eld() (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: Add locks around audio component bind/unbind (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915/audio: clarify HD audio documentation wrt modeset (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915/audio: do not mess with audio registers if port is invalid (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915/audio: remove duplicated include from intel_audio.c (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: Convert the ddi cdclk code to get_display_clock_speed (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: Drop port_mst_index parameter from pin/eld callback (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: Call audio pin/ELD notify function (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: Add audio pin sense / ELD callback (Jaroslav Kysela) [1288993]
-- [include] alsa: pm / runtime: Add new helper for conditional usage count incrementation (Jaroslav Kysela) [1288993]
-- [sound] revert "alsa: hda - Set patch_ops before calling auto-parser" (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Create AFG sysfs node at last (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Expose codec type sysfs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add hdac stream trace (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add HDA default codec match function (Jaroslav Kysela) [1288993]
-- [sound] alsa: consolidate the reassignments of ->f_op in ->open() instances (Jaroslav Kysela) [1288993]
-- [sound] alsa: hrtimer: Handle start/stop more properly (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Use mod_timer() for rearming the system timer (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: fix gparams ioctl compatibility for different architectures (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Bind with i915 only when Intel graphics is present (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix possible race on regmap bypass flip (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Don't trust the reported actual power state (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: add AMD Polaris-10/11 AZ PCI IDs with proper driver caps (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add PCI ID for Intel Broxton-T (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix broken reconfig (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Keep powering up ADCs on Cirrus codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix inconsistent monitor_present state until repoll (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix regression of monitor_present flag in eld proc file (Jaroslav Kysela) [1288993]
-- [sound] alsa: alsa - hda: hdmi check NULL pointer in hdmi_set_chmap (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix regression on ATI HDMI audio (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix subwoofer pin on ASUS N751 and N551 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add dock support for ThinkPad X260 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Add ALC3234 headset mode for Optiplex 9020m (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Enable the ALC292 dock fixup on the Thinkpad T460s (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - fix front mic problem for a HP desktop (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply fix for white noise on Asus N550JV, too (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix white noise on Asus N750JV headphone (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Asus N750JV external subwoofer fixup (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix white noise on Asus UX501VW headset (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcxhr: Fix missing mutex unlock (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Skip volume controls triggers hangup on Dell USB Dock (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Yet another Phoneix Audio device quirk (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Quirk for yet another Phoenix Audio devices (v2) (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add a sample rate quirk for Phoenix Audio TMX320 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add a quirk for Plantronics BT300 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: add Microsoft HD-5001 to quirks (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix double-free in error paths after snd_usb_add_audio_stream() call (Jaroslav Kysela) [1288993]
-- [sound] alsa: au88x0: Fix zero clear of stream->resources (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Bail out when chmap is already present (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Clarify CONFIG_SND_HDA_RECONFIG usages (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Replace complex if statement with switch (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Fix poll error return codes (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Remove pointless NULL check (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Use snd_compr_get_poll on error path (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix poll error return codes (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: fix to wait for RIRB & CORB DMA to set (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: fix the missing ptr initialization (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - New codecs support for ALC234/ALC274/ALC294 (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix leak in events via snd_timer_user_tinterrupt (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix leak in events via snd_timer_user_ccallback (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix leak in SNDRV_TIMER_IOCTL_PARAMS (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Limit retrying sample rate reads (Jaroslav Kysela) [1288993]
-- [sound] alsa: au88x0: Fix overlapped PCM pointer (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: remove legacy rtctimer (Jaroslav Kysela) [1288993]
-- [sound] alsa: ens1371: Fix "Line In->Rear Out Switch" control (Jaroslav Kysela) [1288993]
-- [sound] alsa: lx646es: Fix possible uninitialized variable reference (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm : Call kill_fasync() in stream lock (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add missing capture_hook calls for dyn-ADC PCM streams (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: allow clock source validity interrupts (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: add UAC2 clock sources as mixer controls (Jaroslav Kysela) [1288993]
-- [sound] alsa: constify ct_timer_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: intel8x0: Drop superfluous VM checks (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Update chmap tlv to report sink's capability (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix yet another i915 pointer leftover in error path (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Clear the leftover component assignment at snd_hdac_i915_exit() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable i915 ELD notifier for Intel IronLake and Baytrail (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add the pin / port mapping on Intel ILK and VLV (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix missing ELD update at unplugging (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Update BCLK also at hotplug for i915 HSW/BDW (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use eld notifier for Intel SandyBridge and IvyBridge HDMI/DP (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Introduce pin_cvt_fixup() ops to hdmi parser (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Override HDMI setup_stream ops for Intel HSW+ (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply AMP fix in hdmi_setup_audio_infoframe() generically (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Split out Intel-specific codes from patch_generic_hdmi() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi defer to register acomp eld notifier (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Workaround for unbalanced i915 power refcount by concurrent probe (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix spurious kernel WARNING on Baytrail HDMI (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix forgotten HDMI monitor_present update (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Really restrict i915 notifier to HSW+ (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix mutex deadlock at HDMI/DP hotplug (Jaroslav Kysela) [1288993]
-- [sound] alsa: ctl: change return value in compatibility layer so that it's the same value in core implementation (Jaroslav Kysela) [1288993]
-- [sound] alsa: mixart: silence an uninitialized variable warning (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add sanity checks for endpoint accesses (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Minor code cleanup in create_fixed_stream_quirk() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix NULL dereference in create_fixed_stream_quirk() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: use list macro for parsing on cleanup (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Limit i915 HDMI binding only for HSW and later (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix unconditional GPIO toggle via automute (Jaroslav Kysela) [1288993]
-- [sound] alsa: mixart: silence unitialized variable warnings (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixes double fault in nvhdmi_chmap_cea_alloc_validate_get_type (Jaroslav Kysela) [1288993]
-- [sound] alsa: intel8x0: Add clock quirk entry for AD1981B on IBM ThinkPad X41 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add new GPU codec ID 0x10de0082 to snd-hda (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - fix the mic mute button and led problem for a Lenovo AIO (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Avoid "BUG:" string for warnings again (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add a sanity check of pin / port mapping on i915 HDMI/DP (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Don't handle ELD notify from invalid port (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply reboot D3 fix for CX20724 codec, too (Jaroslav Kysela) [1288993]
-- [sound] alsa: pci: Add QEMU top-level IDs for (sub)vendor & device (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Provide card number / PID via sequencer client info (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix unexpected resume through regmap code path (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use snd_hdac namespace prefix for chmap exported APIs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Move chmap support helpers/ops to core (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - chmap helper args modified to use generic hdac objs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add hdmi chmap verb programming ops to chmap object (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use hdac name space for CEA spk alloc structure (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Register chmap obj as priv data instead of codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Create common chmap object (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: fix more typos (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: fix some typos (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Add SNDRV_PCM_STATE_PREPARED state explanation (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: allow writes in SNDRV_PCM_STATE_PREPARED state (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi add wmb barrier for audio component (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix mic issues on Acer Aspire E1-472 (Jaroslav Kysela) [1288993]
-- [sound] alsa: portman2x4: fix NULL pointer dereference (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: oss: Don't drain at closing a client (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add a quirk for Plantronics DA45 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi_find_pcm_slot return value bug fix (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdsp: Fix wrong boolean ctl value accesses (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdspm: Fix zero-division (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdspm: Fix wrong boolean ctl value accesses (Jaroslav Kysela) [1288993]
-- [sound] alsa: mts64: fix NULL pointer dereference (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix ioctls for X32 ABI (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix broken compat timer user status ioctl (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Fix ioctls X32 ABI (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Use comapt_put_timespec() (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix ioctls for X32 ABI (Jaroslav Kysela) [1288993]
-- [sound] alsa: ctl: Fix ioctls for X32 ABI (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Autosuspend controller after probe even if codecs are already suspended (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Loop interrupt handling until really cleared (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix headset support and noise on HP EliteBook 755 G2 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixup speaker pass-through control for nid 0x14 on ALC225 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixing background noise on Dell Inspiron 3162 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi eld control created based on pcm (Jaroslav Kysela) [1288993]
-- [sound] alsa: jack: Allow building the jack layer without input device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply clock gate workaround to Skylake, too (Jaroslav Kysela) [1288993]
-- [sound] alsa: mts64: use new parport device model (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use acpi_dev_present() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi get jack from hda_jack_tbl when not dyn_pcm_assign (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix rwsem deadlock for non-atomic PCM stream (Jaroslav Kysela) [1288993]
-- [sound] alsa: portman2x4 - use new parport device model (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix double port list deletion (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Cancel probe work instead of flush at remove (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix leak of pool buffer at concurrent writes (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Call notifier in the same spinlock (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Protect the whole snd_timer_close() with open race (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix race at concurrent reads (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix bad dereference of jack object (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix race between stop and interrupt (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix wrong instance passed to slave callbacks (Jaroslav Kysela) [1288993]
-- [sound] alsa: dummy: Implement timer backend switching more safely (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix speaker output from VAIO AiO machines (Jaroslav Kysela) [1288993]
-- [sound] alsa: revert "alsa: hda - Fix noise on Gigabyte Z170X mobo" (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Add snd_pcm_rate_range_to_bits() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix static checker warning in patch_hdmi.c (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix leftover link at closing (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix lockdep warnings due to double mutex locks (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Fix race at copying & updating the position (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Make snd_rawmidi_transmit() race-free (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add fixup for Mac Mini 7,1 model (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Support headset mode for ALC225 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Support Dell headset mode for ALC225 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - New codec support of ALC225 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - build chmap kctl based on pcm in hdmi audio (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Sync timer deletion at closing the system timer (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix link corruption due to double start or stop (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix yet another races among ALSA timer accesses (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix potential deadlock in OSS emulation (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Remove kernel WARNING for NULL user-space buffer check (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix race at closing in virmidi driver (Jaroslav Kysela) [1288993]
-- [sound] alsa: emu10k1: correctly handling failed thread creation (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add quirk for Microsoft LifeCam HD-6000 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add native DSD support for PS Audio NuWave DAC (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix OPPO HA-1 vendor ID (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - disable dynamic clock gating on Broxton before reset (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add quirk_alias option (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Refer to chip->usb_id for quirks and MIDI creation (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi create spdif ctl based on pcm (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi jack created based on pcm (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add hdmi_pcm to manage hdmi pcm related features (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi setup pin when monitor hotplug in pcm dynamic assignment mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi dynamically bind PCM to pin when monitor hotplug (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi operate spdif based on pcm (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi playback without monitor in dynamic pcm bind mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi begin to support dynamic PCM assignment (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add new GPU codec ID 0x10de0083 to snd-hda (Jaroslav Kysela) [1288993]
-- [sound] alsa: dummy: Disable switching timer backend via sysfs (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: fix SND_PCM_TIMER Kconfig text (Jaroslav Kysela) [1288993]
-- [sound] alsa: Add missing dependency on CONFIG_SND_TIMER (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix TEAC UD-501/UD-503/NT-503 usb delay (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Disable GET_CODEC_CAPS ioctl for some architectures (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Degrade the error message for too many opens (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix incorrect sanity check at snd_seq_oss_synth_cleanup() (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Introduce disconnect op to snd_timer_instance (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Handle disconnection more safely (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Flush the pending probe work at remove (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix missing module loading with model=generic option (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Degrade i915 binding failure message (Jaroslav Kysela) [1288993]
-- [sound] alsa: control: Avoid kernel warnings from tlv ioctl with numid 0 (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix snd_seq_call_port_info_ioctl in compat mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix snd_pcm_hw_params struct copy in compat mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: hrtimer: Fix stall by hrtimer_cancel() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix bass pin fixup for ASUS N550JX (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Code cleanup (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Harden slave timer list handling (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add fixup for Dell Latitidue E6540 (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix race among timer ioctls (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add codec support for Kabylake display audio codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix double unlink of active_list (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix mixer ctl regression of Native Instrument devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - fix the headset mic detection problem for a Dell laptop (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix white noise on Dell Latitude E5550 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda_intel: add card number to irq description (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix race at timer setup and close (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix missing NULL check at remove_events ioctl (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Avoid calling usb_autopm_put_interface() at disconnect (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixup inverted internal mic for Lenovo E50-80 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: Add native DSD support for Oppo HA-1 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: add snd_hdac_ext_bus_link_power_up_all (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Increase timeout value for link power check (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: couple the hda DMA stream in cleanup (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add support for hda DMA Resume capability (Jaroslav Kysela) [1288993]
-- [sound] alsa: dummy: constify dummy_timer_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: cs5535audio: constify cs5535audio_dma_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: atiixp: constify atiixp_dma_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add keycode map for alc input device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add mic mute hotkey quirk for Lenovo ThinkCentre AIO (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: use list_for_each_entry_continue_reverse (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Fix silent headphone output on MacPro 4,1 (v2) (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: restore TEA575x state on resume (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: save context before suspend devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: no need to suspend absent codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: detect FM-only card earlier (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: propagate TUNER_ONLY bit when autodetected (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: store struct device instead of pci_dev (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: put curly braces around empty if-body (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: convert rest outw() / inw() to use helpers (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: explicitly free IRQ line (Jaroslav Kysela) [1288993]
-- [sound] alsa: oss: consolidate kmalloc/memset 0 call to kzalloc (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Set SKL+ hda controller power at freeze() and thaw() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Drop unused AZX_DCAPS_REVERSE_ASSIGN (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Drop AZX_DCAPS_POSFIX_VIA bit (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Raise AZX_DCAPS_RIRB_DELAY handling into top drivers (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Merge RIRB_PRE_DELAY into CTX_WORKAROUND caps (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add a fixup for Thinkpad X1 Carbon 2nd (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Set codec to D3 at reboot/shutdown on Thinkpads (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply click noise workaround for Thinkpads generically (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix headphone mic input on a few Dell ALC293 machines (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Increase default bdl_pos_adj for Baytrail/Braswell (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Clean up the code to check bdl_pos_adj option (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Move audio component accesses to hdac_i915.c (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use component ops for i915 HDMI/DP audio jack handling (Jaroslav Kysela) [1288993]
-- [sound] alsa: treewide: Fix typos in printk (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm_dmaengine: Properly synchronize DMA on shutdown (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add sample rate inquiry quirk for AudioQuest DragonFly (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add a more accurate volume quirk for AudioQuest DragonFly (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: constify usb_protocol_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix superfluous HDMI jack repoll (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Allow i915 binding later in codec driver (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Optimize audio component check in patch_hdmi.c (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Don't try to bind i915 unless CONFIG_SND_HDA_I915 is set (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Less grumbling about lack of i915 binding (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Implement loopback control switch for Realtek and other codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Make snd_hda_parse_nid_path() local (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Remove unused snd_hda_get_nid_path() (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: add support for 32bit calls in a 64bit kernel (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable audio component for old Intel PCH devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Split ELD update code from hdmi_present_sense() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Do zero-clear in snd_hdmi_parse_eld() itself (Jaroslav Kysela) [1288993]
-- [sound] alsa: Fix compat_ioctl handling for OSS emulations (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Skip ELD notification during PM process (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable power_save_node for CX20722 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usx2y: fix inconsistent indenting on if statement (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Pass id string to snd_compress_new (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Add procfs info file for compressed nodes (Jaroslav Kysela) [1288993]
-- [sound] alsa: i2c: constify snd_i2c_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: constify action_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: midi: constify snd_rawmidi_global_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: azt3328: Remove unnecessary synchronize_irq() before free_irq() (Jaroslav Kysela) [1288993]
-- [sound] alsa: ua101: replace le16_to_cpu() with usb_endpoint_maxp() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/ca0132 - quirk for Alienware 17 2015 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix noise problems on Thinkpad T440s (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixing speaker noise on the two latest thinkpad models (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add inverted dmic for Packard Bell DOTS (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix playback noise with 24/32 bit sample size on BXT (Jaroslav Kysela) [1288993]
-- [sound] alsa: rme96: Fix unexpected volume reset after rate changes (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add Conexant CX8200 (14f1:2008) codec entry (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Correct codec names for 14f1:50f1 and 14f1:50f3 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Skip ELD notification during system suspend (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix noise on Gigabyte Z170X mobo (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix headphone noise after Dell XPS 13 resume back from S3 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply HP headphone fixups more generically (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add fixup for Acer Aspire One Cloudbook 14 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - apply SKL display power request/release patch to BXT (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add PCI IDs for Intel Broxton (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: work around CH345 input SysEx corruption (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: prevent CH345 multiport output SysEx corruption (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: add packet size quirk for the Medeli DD305 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix noise on Dell Latitude E6440 (Jaroslav Kysela) [1288993]
-- [sound] alsa: pci: depend on ZONE_DMA (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Simplify phantom jack handling for HDMI/DP (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/hdmi - apply Skylake fix-ups to Broxton display codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: ctxfi: constify rsc ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: Add native DSD support for Aune X1S (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply pin fixup for HP ProBook 6550b (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix lost 4k BDL boundary workaround (Jaroslav Kysela) [1288993]
-- [sound] alsa: maestro3: Fix Allegro mute until master volume/mute is touched (Jaroslav Kysela) [1288993]
-- [sound] alsa: maestro3: Enable docking support for Dell Latitude C810 (Jaroslav Kysela) [1288993]
-- [sound] alsa: cs46xx: Fix suspend for all channels (Jaroslav Kysela) [1288993]
-- [sound] alsa: cs46xx: Fix Duplicate front for CS4294 and CS4298 codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add / fix kernel doc comments (Jaroslav Kysela) [1288993]
-- [sound] alsa: Constify ratden/ratnum constraints (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Disable 64bit address for Creative HDA controllers (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Dell XPS one ALC3260 speaker no sound after resume back (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/ca0132 - Convert leftover pr_info() and pr_err() (Jaroslav Kysela) [1288993]
-- [sound] alsa: Remove transfer_ack_{begin,end} callbacks from struct snd_pcm_runtime (Jaroslav Kysela) [1288993]
-- [sound] alsa: rme9652: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [sound] alsa: rme96: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [sound] alsa: rme32: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [sound] alsa: lx6464es: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [sound] alsa: korg1212: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [include] alsa: Add helper function to add single value constraint (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix deadlock at error in building PCM (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Advertise MODALIAS in uevent (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - convert to hda_device_id (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add hdaudio bus modalias support (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add a common helper to give the codec modalias string (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add hduadio support to DEVTABLE (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Remove mixer entry from Zoom R16/24 quirk (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Adjust max packet size calculation for tx_length_quirk (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add quirk for Zoom R16/24 playback (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add offset parameter to copy_to_urb() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Break out creation of silent urbs from prepare_outbound_urb() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Also move out hwptr_done wrap from prepare_playback_urb() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Break out copying to urb from prepare_playback_urb() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Spell vga_switcheroo consistently (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Remove leftover snd_hda_bus() prototype (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix bogus codec address check for mixer name assignment (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: add config item to export PCM timer disabling for expert (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add support for Novation Nocturn MIDIcontrol surface (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Update mixer name for the lower codec address (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - consolidate chip rename functions (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable widget power saving for Cirrus codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: oss: underflow in snd_mixer_oss_proc_write() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix max packet size calculation for USB audio (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix inverted internal mic on Lenovo G50-80 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Explicitly add io.h (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Allow any MIDI endpoint to drive use of interrupt transfer on newer Roland devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq_oss: fix waitqueue_active without memory barrier in snd-seq-oss (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: make use of core codec fns (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Copy codec helpers to core (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Fix to check if stream not in use in release (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Fix incorrect update of stream id mapping (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Disable power_save_node for IDT 92HD73xx chips (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply SPDIF pin ctl to MacBookPro 12,1 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Add dock support for ThinkPad T550 (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Avoid double hw_free calls at releasing a stream (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: harmless underflow in snd_audigy2nx_led_put() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - display audio call sync_audio_rate callback (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Disable power_save_node for Thinkpads (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/tegra - async probe for avoiding module loading deadlock (Jaroslav Kysela) [1288993]
-- [sound] alsa: core: check for underflow in snd_pcm_sw_params() (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: remove structure member of 'struct snd_pcm_hwptr_log *' type because this structure had been removed (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdsp: fix memory leak (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Change internal PCM order (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix white noise on Dell M3800 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use ALC880_FIXUP_FUJITSU for FSC Amilo M1437 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable headphone jack detect on old Fujitsu laptops (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add some FIXUP quirks for white noise on Dell laptop (Jaroslav Kysela) [1288993]
-- [sound] alsa: drm/i915: Drop port_mst_index parameter from pin/eld callback (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Wake the codec up on pin/ELD notify events (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - allow codecs to access the i915 pin/ELD callback (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: correct the value cache check (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Handle normal and auto-suspend equally (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Replace probing flag with active refcount (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Avoid nested autoresume calls (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Remove superfluous pcm NULL check (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix widget sysfs tree corruption after refresh (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Refresh sysfs at snd_hda_codec_update_widgets() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix path power activation (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Check all inputs for is_active_nid_for_any() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: fix possible NULL dereference (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add snd_hdac_get_hdac_stream() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: fix the spbmaxfifo API (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Fix size allocation for ext device allocation (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdsp: silence a sprinft() overflow warning (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Remove the usage of key for host stream (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add support to enable SPIB for hdac ext stream (Jaroslav Kysela) [1288993]
-- [include] alsa: hda - add new HDA registers (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add snd_hdac_ext_bus_link_power_down_all() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Fix to read the correct offset of spcap/link register (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Refresh widgets sysfs at probing Haswell+ HDMI codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdsp: silence and underflow warning (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: add snd_hdac_refresh_widget_sysfs() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: add extended device driver registration (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: add hdac extended device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add API for removing hdac extended device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Shutdown CX20722 on reboot/free to avoid spurious noises (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: Add native DSD support for Gustard DAC-X20U (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Recurse before saving terminal properties (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/eld - Add const to possible places (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/proc - Fix racy string access for power states (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/proc - Add const to possible places (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Make some helper functions local (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: handle descriptor with SYNC_NONE illegal value (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: fix corrupted pointers due to interface setting change (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix parameter block size for UAC2 control requests (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix pin config and mapping on Alienware 15 (Jaroslav Kysela) [1288993]
-- [sound] alsa: echoaudio: Use standard C definitions of true and false (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - yet another fix for Dell headset mic with ALC3266 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix Dell laptop for internal mic/headset mic (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - remove no physical connection pins from pin_quirk table (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Check the return value from pm_runtime_get/put*() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix another race in runtime PM refcounting (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: fix kstrdup return value (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Delete an unnecessary check before the function call "kobject_put" (Jaroslav Kysela) [1288993]
-- [sound] alsa: emu10k1: rename Audigy Analog Capture Boost control (Jaroslav Kysela) [1288993]
-- [sound] alsa: emu10k1: enable TAD mic out on Audigy (Jaroslav Kysela) [1288993]
-- [sound] alsa: emu10k1: remove unused AC'97 mixer controls on Audigy (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add dock support for Thinkpad W541 (17aa:2211) (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix runtime PM unbalance (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix the white noise on Dell laptop (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - one Dell machine needs the headphone white noise fixup (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Dont check return for snd_hdac_chip_readl (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Fix stream assignment for host in decoupled mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: oxygen: Fix logical-not-parentheses warning (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix MacBook Pro 5,2 quirk (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix race between PM ops and HDA init/probe (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: add dB range mapping for some devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply a fixup to Dell Vostro 5480 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add pin quirk for the headset mic jack detection on Dell laptop (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply fixup for another Toshiba Satellite S50D (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix the headset mic that will not work on Dell desktop machine (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - fix cs4210_spdif_automute() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add headset mic pin quirk for a Dell device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - remove one pin from ALC292_STANDARD_PINS (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add new GPU codec ID 0x10de007d to snd-hda (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: add new AMD PCI IDs with proper driver caps (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add headset mic support for Acer Aspire V5-573G (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix lockdep warning with nonatomic PCM ops (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek: Enable HP amp and mute LED on HP Folio 9480m (v3) (Jaroslav Kysela) [1288993]
-- [sound] alsa: line6: Fix -EBUSY error during active monitoring (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix a wrong busy check in alt PCM open (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add codec ID for Broxton display audio codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add MIDI support for Steinberg MI2/MI4 (Jaroslav Kysela) [1288993]
-- [sound] alsa: Fix uninintialized error return (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Delete an unnecessary check before the function call "snd_info_free_entry" (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add a fixup for Dell E7450 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix the dock headphone output on Fujitsu Lifebook E780 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add headset support to Acer Aspire V5 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - restore the MIC FIXUP for some Dell machines (Jaroslav Kysela) [1288993]
-- [sound] alsa: jack: Fix endless loop at unique index detection (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - set proper caps for newer AMD hda audio in KB/KV (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix pcm_class sysfs output (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda-beep: Update authors dead email address (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: provide default bus io ops extended hdac (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: add hda link cleanup routine (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: add hdac_ext stream creation and cleanup routines (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: move SND_HDA_PREALLOC_SIZE to core (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix noisy outputs on Dell XPS13 (2015 model) (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix audio crackles on Dell Latitude E7x40 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - adding a DAC/pin preference map for a HP Envy TS machine (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda-beep: Update authors dead email address (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac_ext: add extended stream capabilities (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac_ext: add hdac extended controller (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac_ext: add extended HDA bus (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Set correct type for some UAC2 mixer controls (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: intel: enable automatic runtime pm for HDMI codecs by default (Jaroslav Kysela) [1288993]
-
-* Thu May 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-417.el7]
-- [netdrv] i40e/i40evf : Bump driver version from 1.5.5 to 1.5.10 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: RSS Hash Option parameters (Stefan Assmann) [1274177]
-- [netdrv] i40e: Remove HMC AQ API implementation (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Add driver support for promiscuous mode (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Only offload VLAN tag if enabled (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add DeviceID for X722 QSFP+ (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add device capability which defines if update is available (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Allow PF driver to configure RSS (Stefan Assmann) [1274177]
-- [netdrv] i40e: Specify AQ event opcode to wait for (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Don't Panic (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add support for IPIP and SIT offloads (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Clean up feature flags (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Limit TSO to 7 descriptors for payload instead of 8 per packet (Stefan Assmann) [1274177]
-- [netdrv] i40evf: properly handle VLAN features (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump patch from 1.5.2 to 1.5.5 (Stefan Assmann) [1274177]
-- [netdrv] i40e: Input set mask constants for RSS, flow director, and flex bytes (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add RSS configuration to virtual channel (Stefan Assmann) [1274177]
-- [netdrv] i40e: Move NVM variable out of AQ struct (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Faster RX via avoiding FCoE (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Drop unused tx_ring argument (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Move stack var deeper (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump patch from 1.5.1 to 1.5.2 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Fix get_rss_aq (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Add longer wait after remove module (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add new device ID for X722 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Fix VLAN features (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump patch from 1.4.25 to 1.5.1 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Add additional check for reset (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix casting in transmit code (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add support for bulk free in Tx cleanup (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix handling of boolean logic in polling routines (Stefan Assmann) [1274177]
-- [netdrv] i40evf: remove dead code (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Allow up to 12K bytes of data per Tx descriptor instead of 8K (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.25 and i40evf to 1.4.15 (Stefan Assmann) [1274177]
-- [netdrv] i40e: implement and use Rx CTL helper functions (Stefan Assmann) [1274177]
-- [netdrv] i40e: add adminq commands for Rx CTL registers (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add functions to blink led on 10GBaseT PHY (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Move Tx checksum closer to TSO (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Rewrite logic for 8 descriptor per packet check (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Break up xmit_descriptor_count from maybe_stop_tx (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Update feature flags to reflect newly enabled features (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Enable support for SKB_GSO_UDP_TUNNEL_CSUM (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Clean-up Rx packet checksum handling (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add exception handling for Tx checksum (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Do not write to descriptor unless we complete (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Handle IPv6 extension headers in checksum offload (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add support for IPv4 encapsulated in IPv6 (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Replace header pointers with unions of pointers in Tx checksum path (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Consolidate all header changes into TSO function (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Factor out L4 header and checksum from L3 bits in TSO path (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Use u64 values instead of casting them in TSO function (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Drop outer checksum offload that was not requested (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.15 and i40evf to 1.4.11 (Stefan Assmann) [1274177]
-- [netdrv] i40e: When in promisc mode apply promisc mode to Tx Traffic as well (Stefan Assmann) [1274177]
-- [netdrv] i40e: clean event descriptor before use (Stefan Assmann) [1274177]
-- [netdrv] i40evf: set adapter state on reset failure (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: avoid atomics (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add a SW workaround for lost interrupts (Stefan Assmann) [1274177]
-- [netdrv] i40evf: support packet split receive (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump version (Stefan Assmann) [1274177]
-- [netdrv] i40e: properly show packet split status in debugfs (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use logical operators, not bitwise (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use pages correctly in Rx (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use __GFP_NOWARN (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: try again after failure (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: don't lose interrupts (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Change vf driver string to reflect all products i40evf supports (Stefan Assmann) [1274177]
-- [netdrv] i40e: Refactor force_wb and WB_ON_ITR functionality code (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: bump version to 1.4.12/1.4.8 (Stefan Assmann) [1274177]
-- [netdrv] i40e: do TSO only if CHECKSUM_PARTIAL is set (Stefan Assmann) [1274177]
-- [netdrv] i40e: fix bug in dma sync (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.11 and i40evf to 1.4.7 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: enable bus master after reset (Stefan Assmann) [1274177]
-- [netdrv] i40e: fix write-back-on-itr to work with legacy itr (Stefan Assmann) [1274177]
-- [netdrv] i40e: Bump AQ minor version to 1.5 for new FW features (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ thermal sensor control struct (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Add VXLAN-GPE tunnel type (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Add set_switch_config (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Shared resource flags (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Add external power class to get link status (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Geneve cloud tunnel type (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Add Run PHY Activity struct (Stefan Assmann) [1274177]
-- [netdrv] i40e: add new proxy-wol bit for X722 (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Use private workqueue (Stefan Assmann) [1274177]
-- [netdrv] i40evf: add new write-back mode (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix for UDP/TCP RSS for X722 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: null out ring pointers on free (Stefan Assmann) [1274177]
-- [netdrv] i40e: define function capabilities in only one place (Stefan Assmann) [1274177]
-- [netdrv] i40evf: allow channel bonding of VFs (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix RSS rx-flow-hash configuration through ethtool (Stefan Assmann) [1274177]
-- [netdrv] treewide: Fix typos in printk (Stefan Assmann) [1274177]
-- [netdrv] i40e: remove forever unused ID (Stefan Assmann) [1274177]
-- [netdrv] i40e: Fix Rx hash reported to the stack by our driver (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.8 and i40evf to 1.4.4 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: change version string generation (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add a new offload for RSS PCTYPE V2 for X722 (Stefan Assmann) [1274177]
-- [netdrv] i40e: Opcode and structures required by OEM Post Update AQ command and add new NVM arq message (Stefan Assmann) [1274177]
-- [netdrv] i40evf: check rings before freeing resources (Stefan Assmann) [1274177]
-- [netdrv] i40e: trivial fixes (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump version to 1.4.7 for i40e and 1.4.3 for i40evf (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use logical operator (Stefan Assmann) [1274177]
-- [netdrv] i40evf: use correct types (Stefan Assmann) [1274177]
-- [netdrv] i40evf: don't use atomic allocation (Stefan Assmann) [1274177]
-- [netdrv] i40e: Fix memory leaks, sideband filter programming (Stefan Assmann) [1274177]
-- [netdrv] i40e: Detection and recovery of TX queue hung logic moved to service_task from tx_timeout (Stefan Assmann) [1274177]
-- [netdrv] i40evf: remove duplicate string (Stefan Assmann) [1274177]
-- [netdrv] i40evf: set real num queues (Stefan Assmann) [1274177]
-- [netdrv] i40evf: increase max number of queues (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.4.4 and i40evf to 1.4.1 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: allocate ring structs dynamically (Stefan Assmann) [1274177]
-- [netdrv] i40evf: allocate queue vectors dynamically (Stefan Assmann) [1274177]
-- [netdrv] i40evf: quoth the VF driver, Nevermore (Stefan Assmann) [1274177]
-- [netdrv] i40evf: add new fields to store user configuration of RSS (Stefan Assmann) [1274177]
-- [netdrv] i40evf: create a generic get RSS function (Stefan Assmann) [1274177]
-- [netdrv] i40evf: create a generic config RSS function (Stefan Assmann) [1274177]
-- [netdrv] i40evf: rename VF adapter specific RSS function (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: prefetch skb data on transmit (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix RS bit update in Tx path and disable force WB workaround (Stefan Assmann) [1274177]
-- [netdrv] i40evf: handle many MAC filters correctly (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: clean up error messages (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add comment to #endif (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add a stat to track how many times we have to do a force WB (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: remove unused tunnel parameter (Stefan Assmann) [1274177]
-- [netdrv] i40evf: fix compiler warning of unused variable (Stefan Assmann) [1274177]
-- [netdrv] i40evf: clean up local variable initialization (Stefan Assmann) [1274177]
-- [netdrv] i40evf: add missing kernel-doc argument (Stefan Assmann) [1274177]
-- [netdrv] i40e: re-use *ph specifier to hexdump a data (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.46 and i40evf to 1.3.33 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: use correct struct for list manipulation (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add a workaround to drop all flow control frames (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.38 and i40evf to 1.3.25 (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix an accidental error with BIT_ULL replacement (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: adjust interrupt throttle less frequently (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: change dynamic interrupt thresholds (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: fix bug in throttle rate math (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: refactor IRQ enable function (Stefan Assmann) [1274177]
-- [netdrv] i40evf: don't give up (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use napi_schedule_irqoff() (Stefan Assmann) [1274177]
-- [netdrv] i40evf: fix overlong BIT defines (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.34 and i40evf to 1.3.21 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: relax and stagger init timing a bit (Stefan Assmann) [1274177]
-- [netdrv] i40evf: correctly populate vlan_features (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: moderate interrupts differently (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix compile issue related to const string (Stefan Assmann) [1274177]
-- [netdrv] i40evf: use napi_complete_done() (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Add support for netpoll (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Drop useless "IN_NETPOLL" flag (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix handling of napi budget (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.3.28 and i40evf to 1.3.19 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: speed up init (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: remove redundant declarations of a variable and a function (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add WB_ON_ITR offload support (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.3.25 and i40evf to 1.3.17 (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Refactor PHY structure and add phy_capabilities enum (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add module_types and update_link_info (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: split device ids into a separate file (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add info to nvm info struct for OEM version data (Stefan Assmann) [1274177]
-- [netdrv] i40evf: properly handle ndo_set_mac_address calls (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add new link status defines (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: pass QOS handle to VF (Stefan Assmann) [1274177]
-- [netdrv] i40evf: use capabilities flags properly (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: clean up some code (Stefan Assmann) [1274177]
-- [netdrv] i40evf: detect reset more reliably (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Explicitly assign enum index for VSI type (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Store CEE DCBX DesiredCfg and RemoteCfg (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: remove unused opcode (Stefan Assmann) [1274177]
-- [netdrv] i40evf: propagate interrupt allocation failure (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add a stat to keep track of linearization count (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: fix unicast mac address add (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: give up the __func__ (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: assure clean asq status report (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: fix a potential type compare issue (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: add driver support for new device ids (Stefan Assmann) [1274177]
-
-* Thu May 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-416.el7]
-- [netdrv] i40e/i40evf: Bump driver version from 1.5.5 to 1.5.10 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Update device ids for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Drop extra copy of function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Use consistent type for vf_id (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: PTP - avoid aggregate return warnings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix uninitialized variable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove HMC AQ API implementation (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Prevent falling to promiscuous if the VF is not trusted (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Limit the number of MAC and VLAN addresses that can be added for VFs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change the default for VFs to be not privileged (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40evf: Add driver support for promiscuous mode (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add VF promiscuous mode driver support (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add promiscuous on VLAN support (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Only offload VLAN tag if enabled (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove zero check (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add DeviceID for X722 QSFP+ (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add device capability which defines if update is available (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Specify AQ event opcode to wait for (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Code cleanup in i40e_add_fdir_ethtool (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add support for configuring VF RSS (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add support for IPIP and SIT offloads (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Clean up feature flags (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Limit TSO to 7 descriptors for payload instead of 8 per packet (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix errant PCIe bandwidth message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump patch from 1.5.2 to 1.5.5 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Input set mask constants for RSS, flow director, and flex bytes (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move NVM event wait check to NVM code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add RSS configuration to virtual channel (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move NVM variable out of AQ struct (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Restrict VF poll mode to only single function mode devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Patch to support trusted VF (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Faster RX via avoiding FCoE (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Drop unused tx_ring argument (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Move stack var deeper (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move HW flush (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Leave debug_mask cleared at init (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Inserting a HW capability display info (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add inline csum_replace_by_diff workaround (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix TSO checksum pseudo-header adjustment (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump patch from 1.5.1 to 1.5.2 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Request PHY media event at reset time (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Lower some message levels (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for supported link modes in 10GBaseT PHY's (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Disable link polling (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Make VF resets more reliable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add new device ID for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove unused variable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Enable Geneve offload for FW API ver > 1.4 for XL710/X710 devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove redundant check on vsi->active_vlans (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump patch from 1.4.25 to 1.5.1 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change comment to reflect correct function name (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change unknown event error msg to ignore message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Added code to prevent double resets (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Notify VFs of all resets (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove timer and task only if created (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Assure that adminq is alive in debug mode (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove MSIx only if created (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix up return code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Save off VSI resource count when updating VSI (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Remove I40E_MAX_USER_PRIORITY define (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix casting in transmit code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add support for bulk free in Tx cleanup (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix handling of boolean logic in polling routines (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Allow up to 12K bytes of data per Tx descriptor instead of 8K (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: call ndo_stop() instead of dev_close() when running offline selftest (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add support for client interface for IWARP driver (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/ethtool: support coalesce setting by queue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/ethtool: support coalesce getting by queue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: queue-specific settings for interrupt moderation (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.25 and i40evf to 1.4.15 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: let go of the past (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: suspend scheduling during driver unload (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Use the new rx ctl register helpers. Don't use AQ calls from clear_hw (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: implement and use Rx CTL helper functions (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add adminq commands for Rx CTL registers (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add check for null VSI (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Expose some registers to program parser, FD and RSS logic (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for unexpected messaging (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Do not wait for Rx queue disable in DCB reconfig (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Increase timeout when checking GLGEN_RSTAT_DEVSTATE bit (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix led blink capability for 10GBaseT PHY (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add functions to blink led on 10GBaseT PHY (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Move Tx checksum closer to TSO (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Rewrite logic for 8 descriptor per packet check (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Break up xmit_descriptor_count from maybe_stop_tx (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add support for ATR w/ IPv6 extension headers (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Update feature flags to reflect newly enabled features (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Do not drop support for IPv6 VXLAN or GENEVE tunnels (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix ATR in relation to tunnels (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Enable support for SKB_GSO_UDP_TUNNEL_CSUM (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Clean-up Rx packet checksum handling (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add exception handling for Tx checksum (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Do not write to descriptor unless we complete (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Handle IPv6 extension headers in checksum offload (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add support for IPv4 encapsulated in IPv6 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Replace header pointers with unions of pointers in Tx checksum path (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Consolidate all header changes into TSO function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Factor out L4 header and checksum from L3 bits in TSO path (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Use u64 values instead of casting them in TSO function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Drop outer checksum offload that was not requested (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.15 and i40evf to 1.4.11 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: When in promisc mode apply promisc mode to Tx Traffic as well (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: clean event descriptor before use (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: better error reporting for nvmupdate (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: expand comment (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Do not disable queues in the Legacy/MSI Interrupt handler (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: avoid atomics (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Removal of code which relies on BASE VEB SEID (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix PROMISC mode for Multi-function per port (MFP) devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add a SW workaround for lost interrupts (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial: cleanup use of pf->hw (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: drop unused debugfs file "dump" (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: get rid of magic number (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump version (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: properly show packet split status in debugfs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use logical operators, not bitwise (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use pages correctly in Rx (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use __GFP_NOWARN (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: dump descriptor indexes in hex (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: try again after failure (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: don't lose interrupts (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Refactor force_wb and WB_ON_ITR functionality code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use new add_veb calling with VEB stats control (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add VEB stat control and remove L2 cloud filter (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: set shared bit for multicast filters (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Make the DCB firmware checks for X710/XL710 only (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: move sync_vsi_filters up in service_task (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use eth_platform_get_mac_address() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add priv flag for automatic rule eviction (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Enable Geneve offload for FW API ver > 1.4 for XL710/X710 devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: bump version to 1.4.12/1.4.8 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: avoid large memcpy by assigning struct (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: count allocation errors (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: drop unused function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: negate PHY int mask bits (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: APIs to Add/remove port mirroring rules (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix: do not sleep in netdev_ops (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: allocate memory safer (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: do TSO only if CHECKSUM_PARTIAL is set (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix bug in dma sync (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial: fix missing space (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial: drop duplicate definition (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.11 and i40evf to 1.4.7 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial: remove unnecessary local var (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove VF device IDs from PF (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add netdev info to VSI dump (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add a little more to an NVM update debug message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: refactor DCB function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add 20G speed for Tx bandwidth calculations (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add counter for arq overflows (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix write-back-on-itr to work with legacy itr (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Store lan_vsi_idx and lan_vsi_id in the right size (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Bump AQ minor version to 1.5 for new FW features (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ thermal sensor control struct (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Add VXLAN-GPE tunnel type (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Add set_switch_config (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Shared resource flags (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add 100Mb ethtool reporting (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Add external power class to get link status (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Geneve cloud tunnel type (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Add Run PHY Activity struct (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Limit DCB FW version checks to X710/XL710 devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add new proxy-wol bit for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Use private workqueue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40evf: add new write-back mode (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix for UDP/TCP RSS for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Extend ethtool RSS hooks for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add new device IDs for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: bump version to 1.4.10 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: update features with right offload (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Cleanup the code with respect to restarting autoneg (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: define function capabilities in only one place (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Replace X722 mac check in ethtool get_settings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix RSS rx-flow-hash configuration through ethtool (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add mac_filter_element at the end of the list instead of HEAD (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: shut up uninitialized variable warnings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix build warnings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove forever unused ID (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix Rx hash reported to the stack by our driver (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Look up MAC address in Open Firmware or IDPROM (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: allow zero MAC address for VFs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: change log messages and error returns (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Call geneve_get_rx_port to get the existing Geneve ports (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: geneve tunnel offload support (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.8 and i40evf to 1.4.4 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: clean whole mac filter list (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add a new offload for RSS PCTYPE V2 for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: hush little warnings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Opcode and structures required by OEM Post Update AQ command and add new NVM arq message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use explicit cast from u16 to u8 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: don't add zero MAC filter (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: properly delete VF MAC filters (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: chomp the BIT(_ULL) (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial fixes (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump version to 1.4.7 for i40e and 1.4.3 for i40evf (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use logical operator (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix whitespace (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove separate functions gathering XOFF Rx stats (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use priv flags to control packet split (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: propagate properly (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix memory leaks, sideband filter programming (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Detection and recovery of TX queue hung logic moved to service_task from tx_timeout (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix i40e_print_features() VEB mode output (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.4.4 and i40evf to 1.4.1 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: make error message more useful (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix confusing message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Update error messaging (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: prefetch skb data on transmit (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: rename rss_size to alloc_rss_size in i40e_pf (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add new fields to store user configuration (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Bump version to 1.4.2 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: create a generic configure rss function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: rework the functions to configure RSS with similar parameters (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: return the number of enabled queues for ETHTOOL_GRXRINGS (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: clean up error messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add comment to #endif (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move the saving of old link info from handle_link_event to link_event (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add a stat to track how many times we have to do a force WB (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Workaround fix for mss < 256 issue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove BUG_ON from FCoE setup (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove BUG_ON from feature string building (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change BUG_ON to WARN_ON in service event complete (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: remove unused tunnel parameter (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] intel: i40e: fix confused code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix annoying message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix stats offsets (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix unconditional execution of cpu_to_le16() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: clean up local variable initialization (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add missing kernel-doc argument (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: re-use *ph specifier to hexdump a data (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.46 and i40evf to 1.3.33 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Disable VEB bridge mode with SR-IOV failure (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix an incorrect OEM version string (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix inconsistent statuses after a PF reset (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix VEB/VEPA bridge mode mismatch issue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix a bug in debugfs with add/del macaddr (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add a workaround to drop all flow control frames (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.38 and i40evf to 1.3.25 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: declare rather than initialize int object (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix kernel-doc argument name (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move error message to debug level (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix order of checks when enabling/disabling autoneg in ethtool (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix an accidental error with BIT_ULL replacement (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix for PHY NVM interaction problem (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for Tools loopback test failing after driver load (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: adjust interrupt throttle less frequently (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: change dynamic interrupt thresholds (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: fix bug in throttle rate math (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: refactor IRQ enable function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use napi_schedule_irqoff() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Lock for VSI's MAC filter list (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.34 and i40evf to 1.3.21 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: increase AQ work limit (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Recognize 1000Base_T_Optical phy type when link is up (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: reset the invalid msg counter in vf when a valid msg is received (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: moderate interrupts differently (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add support for non-willing Apps (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: priv flag for controlling VEB stats (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Removed unused defines (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove read/write failed messages from nvmupdate (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix compile issue related to const string (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: generate fewer startup messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use napi_complete_done() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Drop useless "IN_NETPOLL" flag (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix handling of napi budget (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] get rid of unnecessary initializations in .get_drvinfo() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.3.28 and i40evf to 1.3.19 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove unnecessary string copy operations (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: X722 is on the IOSF bus and does not report the PCI bus info (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Store off PHY capabilities (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: remove redundant declarations of a variable and a function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove FD atr control from debugfs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: allow FD SB if MFP mode only has 1 partition (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove obsolete version check (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add WB_ON_ITR offload support (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove 100M SGMII unless hw is X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change some messages from info to debug only (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use priv flags to control flow director (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add missing parameter comment to ndo_bridge_setlink (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.3.25 and i40evf to 1.3.17 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Refactor PHY structure and add phy_capabilities enum (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add module_types and update_link_info (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: split device ids into a separate file (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: update fw version text string per previous product formats (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: don't panic on VSI allocation failure (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove redundant call (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Convert CEE App TLV selector to IEEE selector (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add info to nvm info struct for OEM version data (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Use BIT() macro for priority map parsing (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add new link status defines (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: print neato new features (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: pass QOS handle to VF (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: refactor code to remove indent (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: clean up some code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Support FW CEE DCB UP to TC map nibble swap (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Explicitly assign enum index for VSI type (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add switch for link polling (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix multiple link up messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for extra Flow Director filter in table after error (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Store CEE DCBX DesiredCfg and RemoteCfg (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add parsing for CEE DCBX TLVs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add more verbose error messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: inline interrupt enable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: remove unused opcode (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Additional checks for CEE APP priority validity (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add a stat to keep track of linearization count (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: fix unicast mac address add (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix bug in return from get_link_status and avoid spurious link messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add little endian conversion for checksum (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: give up the __func__ (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Never let speed get set to 0 in get_settings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for truncated interrupt name (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: assure clean asq status report (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: make i40e_init_pf_fcoe to void (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix bad CEE status shift value (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: fix a potential type compare issue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: add driver support for new device ids (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: stop VF rings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: enable WoL operation if config bit show WoL capable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Increase the amount of time we wait for reset to be done (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-
-* Wed May 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-415.el7]
-- [kernel] param: convert some "on"/"off" users to strtobool (Jiri Olsa) [1331008]
-- [kernel] lib: add "on"/"off" support to kstrtobool (Jiri Olsa) [1331008]
-- [kernel] lib: move strtobool() to kstrtobool() (Jiri Olsa) [1331008]
-- [edac] sb_edac: Repair damage introduced when "fixing" channel address (Aristeu Rozanski) [1319939]
-- [edac] sb_edac: Take account of channel hashing when needed (Aristeu Rozanski) [1319939]
-- [edac] sb_edac: Fix computation of channel address (Aristeu Rozanski) [1319939]
-- [mm] thp: put_huge_zero_page() with MMU gather (Andrea Arcangeli) [1322616]
-- [mm] thp: introduce thp_mmu_gather to pin tail pages during MMU gather (Andrea Arcangeli) [1322616]
-- [net] bulk free SKBs that were delay free'ed due to IRQ context (Ivan Vecera) [1268334]
-- [net] remove a dubious unlikely() clause (Ivan Vecera) [1268334]
-- [mm] slub: clean up code for kmem cgroup support to kmem_cache_free_bulk (Ivan Vecera) [1268334]
-- [mm] introduce page reference manipulation functions (Ivan Vecera) [1268334]
-- [net] bulk free infrastructure for NAPI context, use napi_consume_skb (Ivan Vecera) [1268334]
-- [mm] slab/slub: adjust kmem_cache_alloc_bulk API (Ivan Vecera) [1268334]
-- [mm] slub: add missing kmem cgroup support to kmem_cache_free_bulk (Ivan Vecera) [1268334]
-- [mm] slub: fix kmem cgroup bug in kmem_cache_alloc_bulk (Ivan Vecera) [1268334]
-- [mm] slub: optimize bulk slowpath free by detached freelist (Ivan Vecera) [1268334]
-- [mm] slub: support for bulk free with SLUB freelists (Ivan Vecera) [1268334]
-- [mm] slub: mark the dangling ifdef #else of CONFIG_SLUB_DEBUG (Ivan Vecera) [1268334]
-- [mm] slub: avoid irqoff/on in bulk allocation (Ivan Vecera) [1268334]
-- [mm] slub: create new ___slab_alloc function that can be called with irqs disabled (Ivan Vecera) [1268334]
-- [mm] slub: add support for kmem_cache_debug in bulk calls (Ivan Vecera) [1268334]
-- [mm] slub: initial bulk free implementation (Ivan Vecera) [1268334]
-- [mm] slub: improve bulk alloc strategy (Ivan Vecera) [1268334]
-- [mm] slub: bulk alloc: extract objects from the per cpu slab (Ivan Vecera) [1268334]
-- [mm] slab: infrastructure for bulk object allocation and freeing (Ivan Vecera) [1268334]
-- [net] Add skb_free_frag to replace use of put_page in freeing skb->head (Ivan Vecera) [1268334]
-- [mm] rename and move page fragment handling from net/ to mm/ (Ivan Vecera) [1268334]
-- [net] Store virtual address instead of page in netdev_alloc_cache (Ivan Vecera) [1268334]
-- [net] Use cached copy of pfmemalloc to avoid accessing page (Ivan Vecera) [1268334]
-- [net] fix crash in build_skb() (Ivan Vecera) [1268334]
-- [net] do not deplete pfmemalloc reserve (Ivan Vecera) [1268334]
-- [net] dcb: Add IEEE QCN attribute (Ivan Vecera) [1268334]
-- [net] add netdev_txq_bql_{enqueue, complete}_prefetchw() helpers (Ivan Vecera) [1268334]
-- [net] fix feature changes on devices without ndo_set_features (Ivan Vecera) [1268334]
-- [net] ensure features get disabled on new lower devs (Ivan Vecera) [1268334]
-- [net] fix for_each_netdev_feature (Ivan Vecera) [1268334]
-- [net] generic support for disabling netdev features down stack (Ivan Vecera) [1268334]
-- [net] add NETDEV_PRECHANGEMTU to notify before mtu change happens (Ivan Vecera) [1268334]
-- [net] make dev_set_mtu() honor notification return code (Ivan Vecera) [1268334]
-- [net] etherdevice: add address inherit helper (Ivan Vecera) [1268334]
-- [net] Check CHANGEUPPER notifier return value (Ivan Vecera) [1268334]
-- [net] introduce change upper device notifier change info (Ivan Vecera) [1268334]
-- [net] netdev: remove potentially harmful checks (Ivan Vecera) [1268334]
-- [net] always pass struct netdev_notifier_info to netdevice notifiers (Ivan Vecera) [1268334]
-- [net] pass changed flags along with NETDEV_CHANGE event (Ivan Vecera) [1268334]
-- [net] pass info struct via netdevice notifier (Ivan Vecera) [1268334]
-- [net] sysfs: get_netdev_queue_index() cleanup (Ivan Vecera) [1268334]
-- [net] relax setup_tc ndo op handle restriction (Ivan Vecera) [1268334]
-- [net] avoid NULL deref in napi_get_frags() (Ivan Vecera) [1268334]
-
-* Wed May 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-414.el7]
-- [crypto] qat - update init_esram for C3xxx dev type (Neil Horman) [1274179]
-- [crypto] qat - fix timeout issues (Neil Horman) [1274179]
-- [crypto] qat - remove to call get_sram_bar_id for qat_c3xxx (Neil Horman) [1274179]
-- [crypto] qat - fix SKU definiftion for c3xxx dev (Neil Horman) [1274179]
-- [crypto] qat - Fix random config build issue (Neil Horman) [1274179]
-- [crypto] qat - Rename dh895xcc mmp firmware (Neil Horman) [1274179]
-- [crypto] qat - use list_for_each_entry* (Neil Horman) [1274179]
-- [crypto] qat - fix some timeout tests (Neil Horman) [1274179]
-- [crypto] qat - fix CTX_ENABLES bits shift direction issue (Neil Horman) [1274179]
-- [crypto] qat - uint8_t is not large enough for accel_id (Neil Horman) [1274179]
-- [crypto] qat - enable VF irq after guest exits ungracefully (Neil Horman) [1274179]
-- [crypto] qat - select PCI_IOV when VF are enabled (Neil Horman) [1274179]
-- [crypto] qat - ring returning retry even though ring has BW (Neil Horman) [1274179]
-- [crypto] qat - add support for c62xvf accel type (Neil Horman) [1274179]
-- [crypto] qat - add support for c3xxxvf accel type (Neil Horman) [1274179]
-- [crypto] qat - add support for c62x accel type (Neil Horman) [1274179]
-- [crypto] qat - add support for c3xxx accel type (Neil Horman) [1274179]
-- [crypto] qat - move isr files to qat common so that they can be reused (Neil Horman) [1274179]
-- [crypto] qat - add support for new devices to FW loader (Neil Horman) [1274179]
-- [crypto] qat - add new device definitions (Neil Horman) [1274179]
-- [crypto] qat - constify pci_error_handlers structures (Neil Horman) [1274179]
-- [crypto] qat - remove superfluous check from adf_probe (Neil Horman) [1274179]
-- [crypto] qat - fix get instance function (Neil Horman) [1274179]
-- [crypto] qat - when stopping all devices make fure VF are stopped first (Neil Horman) [1274179]
-- [crypto] qat - fix crypto_get_instance_node function (Neil Horman) [1274179]
-- [include] crypto: akcipher - Changes to asymmetric key API (Neil Horman) [1274179]
-- [lib] mpi: Add mpi sgl helpers (Neil Horman) [1274179]
-- [crypto] qat - remove unneeded variable (Neil Horman) [1274179]
-- [crypto] qat - add support for ctr(aes) and xts(aes) (Neil Horman) [1274179]
-- [crypto] qat - remove empty functions and turn qat_uregister fn to void (Neil Horman) [1274179]
-- [crypto] qat - VF should never trigger SBR on PH (Neil Horman) [1274179]
-- [crypto] qat - Add load balancing across devices (Neil Horman) [1274179]
-- [crypto] qat - don't check for iommu (Neil Horman) [1274179]
-- [crypto] drivers/crypto/qat: use seq_hex_dump() to dump buffers (Neil Horman) [1274179]
-- [include] seq_file: provide an analogue of print_hex_dump() (Neil Horman) [1274179]
-- [lib] hexdump: make it return number of bytes placed in buffer (Neil Horman) [1274179]
-- [lib] hexdump: do a few calculations ahead (Neil Horman) [1274179]
-- [lib] hexdump: fix ascii column for the tail of a dump (Neil Horman) [1274179]
-- [lib] Provide a binary to hex conversion function (Neil Horman) [1274179]
-- [lib] introduce upper case hex ascii helpers (Neil Horman) [1274179]
-- [include] seq_file: Rename seq_overflow() to seq_has_overflowed() and make public (Neil Horman) [1274179]
-- [crypto] qat - enable legacy VFs (Neil Horman) [1274179]
-- [crypto] qat - silence a static checker warning (Neil Horman) [1274179]
-- [crypto] qat - Don't move data inside output buffer (Neil Horman) [1274179]
-- [crypto] qat - Remove reference to crypto_aead_crt (Neil Horman) [1274179]
-- [crypto] qat - fix simple_return.cocci warnings (Neil Horman) [1274179]
-- [crypto] qat - Fix unmet direct dependencies for QAT_DH895xCCVF (Neil Horman) [1274179]
-- [crypto] qat - Fix adf_isr_resource_free name clash (Neil Horman) [1274179]
-- [crypto] qat - Add FW const table (Neil Horman) [1274179]
-- [crypto] qat - Add qat dh895xcc VF driver (Neil Horman) [1274179]
-- [crypto] qat - Add support for SRIOV (Neil Horman) [1274179]
-- [crypto] qat - Move adf admin and adf hw arbitrer to common code (Neil Horman) [1274179]
-- [include] crypto: aead - Add crypto_aead_set_reqsize helper (Neil Horman) [1274179]
-- [crypto] qat - remove unnecessary list iteration (Neil Horman) [1274179]
-- [crypto] qat - Fix typo othewise->otherwise (Neil Horman) [1274179]
-- [crypto] qat - remove unused define (Neil Horman) [1274179]
-- [crypto] qat - fix bug in ADF_RING_SIZE_BYTES_MIN macro (Neil Horman) [1274179]
-- [crypto] qat - remove redundant struct elem (Neil Horman) [1274179]
-- [crypto] qat - Don't attempt to register algorithm multiple times (Neil Horman) [1274179]
-- [crypto] qat - Fix invalid synchronization between register/unregister sym algs (Neil Horman) [1274179]
-- [crypto] qat - fix invalid check for RSA keylen in fips mode (Neil Horman) [1274179]
-- [include] crypto: rsa - RSA padding algorithm (Neil Horman) [1274179]
-- [include] crypto: akcipher - add akcipher declarations needed by templates (Neil Horman) [1274179]
-- [include] crypto: api - Add crypto_grab_spawn primitive (Neil Horman) [1274179]
-- [include] crypto: api - Add instance free function to crypto_type (Neil Horman) [1274179]
-- [lib] scatterlist: introduce sg_nents_for_len (Neil Horman) [1274179]
-- [crypto] rsa - limit supported key lengths (Neil Horman) [1274179]
-- [crypto] qat - Add support for RSA algorithm (Neil Horman) [1274179]
-- [crypto] testmgr - add tests vectors for RSA (Neil Horman) [1274179]
-- [include] crypto: api - prevent helper ciphers from being used (Neil Horman) [1274179]
-- [crypto] testmgr - remove unused function argument (Neil Horman) [1274179]
-- [include] crypto: rsa - add a new rsa generic implementation (Neil Horman) [1274179]
-- [lib] mpilib: add mpi_read_buf() and mpi_get_size() helpers (Neil Horman) [1274179]
-- [include] crypto: akcipher - add PKE API (Neil Horman) [1274179]
-- [crypto] api - Add crypto_alg_extsize helper (Neil Horman) [1274179]
-- [crypto] qat - add MMP FW support to accel engine (Neil Horman) [1274179]
-- [crypto] qat - add support for MMP FW (Neil Horman) [1274179]
-- [crypto] qat - Deletion of unnecessary checks before two function calls (Neil Horman) [1274179]
-- [crypto] drivers - Fix Kconfig selects (Neil Horman) [1274179]
-- [crypto] qat: fix issue when mapping assoc to internal AD struct (Neil Horman) [1274179]
-- [crypto] qat - Set max request size (Neil Horman) [1274179]
-- [crypto] qat - rm unneeded header include (Neil Horman) [1274179]
-- [crypto] qat - remove unused structure members (Neil Horman) [1274179]
-- [crypto] qat - Use crypto_aead_set_reqsize helper (Neil Horman) [1274179]
-- [crypto] qat - Include internal/aead.h (Neil Horman) [1274179]
-- [crypto] qat - add driver version (Neil Horman) [1274179]
-
-* Wed May 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-413.el7]
-- [scsi] scsi: Do not attach VPD to devices that don't support it (Ewan Milne) [1292896]
-- [scsi] sd: Fix excessive capacity printing on devices with blocks bigger than 512 bytes (Ewan Milne) [1292896]
-- [scsi] sg: fix dxferp in from_to case (Ewan Milne) [1292896]
-- [scsi] sd: Fix discard granularity when LBPRZ=1 (Ewan Milne) [1292896]
-- [scsi] st: Fix MTMKPART to work with newer drives (Ewan Milne) [1292896]
-- [scsi] Export function scsi_scan.c:sanitize_inquiry_string (Ewan Milne) [1292896]
-- [scsi] scsi_transport_iscsi: Add 25G and 40G speed definition (Ewan Milne) [1292896]
-- [scsi] Add Marvell configuration device to VPD blacklist (Ewan Milne) [1292896]
-- [scsi] Add Marvell Console to VPD blacklist (Ewan Milne) [1292896]
-- [scsi] scsi_dh_rdac: always retry MODE SELECT on command lock violation (Ewan Milne) [1292896]
-- [scsi] sg.c: mark VMA as VM_IO to prevent migration (Ewan Milne) [1292896]
-- [scsi] fix crashes in sd and sr runtime PM (Ewan Milne) [1292896]
-- [scsi] sd: Optimal I/O size is in bytes, not sectors (Ewan Milne) [1292896]
-- [scsi] scsi: add Synology to 1024 sector blacklist (Ewan Milne) [1292896]
-- [scsi] sd: Reject optimal transfer length smaller than page size (Ewan Milne) [1292896]
-- [scsi] Fix a memory leak in scsi_host_dev_release() (Ewan Milne) [1292896]
-- [scsi] scsi_transport_fc: Introduce scsi_host_get, scsi_host_put (Ewan Milne) [1292896]
-- [scsi] scsi: rescan VPD attributes (Ewan Milne) [1292896]
-- [scsi/block] sd: Fix device-imposed transfer length limits (Ewan Milne) [1292896]
-- [scsi] sd: Make discard granularity match logical block size when LBPRZ=1 (Ewan Milne) [1292896]
-- [scsi] sd: Clear PS bit before Mode Select (Ewan Milne) [1292896]
-- [scsi] scsi_sysfs: Fix queue_ramp_up_period return code (Ewan Milne) [1292896]
-- [scsi] scsi: Export SCSI Inquiry data to sysfs (Ewan Milne) [1292896]
-- [scsi] sg: Fix double-free when drives detach during SG_IO (Ewan Milne) [1292896]
-- [scsi] Increase REPORT_LUNS timeout (Ewan Milne) [1292896]
-- [scsi] fix bug in scsi_dev_info_list matching (Ewan Milne) [1292896]
-- [scsi] refactor device-matching code in scsi_devinfo.c (Ewan Milne) [1292896]
-- [scsi] Kconfig: remove comment about scsi_wait_scan module (Ewan Milne) [1292896]
-- [scsi] fix scsi_error_handler vs. scsi_host_dev_release race (Ewan Milne) [1292896]
-- [scsi] sd: Fix maximum I/O size for BLOCK_PC requests (Ewan Milne) [1292896]
-- [scsi] Fix printk typos in drivers/scsi (Ewan Milne) [1292896]
-- [scsi] retry MODE SENSE on unit attention (Ewan Milne) [1292896]
-- [scsi] sd: fix an error return in probe() (Ewan Milne) [1292896]
-- [scsi] scsi_scan: fix queue depth initialisation problem (Ewan Milne) [1292896]
-- [scsi] add 1024 max sectors black list flag (Ewan Milne) [1292896]
-- [scsi] sd: Unregister integrity profile (Ewan Milne) [1292896]
-- [scsi] proper state checking and module refcount handling in scsi_device_get (Ewan Milne) [1292896]
-- [scsi] scsi: always increment reference count (Ewan Milne) [1292896]
-- [scsi] sd: don't grab a device references from driver methods (Ewan Milne) [1292896]
-- [scsi] scsi: serialize ->rescan against ->remove (Ewan Milne) [1292896]
-- [scsi] sg: remove an unused variable (Ewan Milne) [1292896]
-- [scsi] sd: Fix max transfer length for 4k disks (Ewan Milne) [1292896]
-- [scsi] sd: Limit transfer length (Ewan Milne) [1292896]
-- [scsi] always use format argumets for dev_printk (Ewan Milne) [1292896]
-- [scsi] annotate sdev_prefix_printk and scmd_printk as printf-like (Ewan Milne) [1292896]
-- [scsi] scsi: fix scsi_error.c kernel-doc warning (Ewan Milne) [1292896]
-- [scsi] scsi: asc/ascq codes, sync to T10 2014/12/21 (Ewan Milne) [1292896]
-- [scsi] sd: tweak discard heuristics to work around QEMU SCSI issue (Ewan Milne) [1292896]
-- [scsi] scsi_debug: improve driver description in Kconfig (Ewan Milne) [1292896]
-- [scsi] blacklist RSOC for Microsoft iSCSI target devices (Ewan Milne) [1292896]
-- [scsi] sd: disable discard_zeroes_data for UNMAP (Ewan Milne) [1292896]
-- [scsi] PC partition tables are little endian (Ewan Milne) [1292896]
-- [scsi] resolve some missing-field-initializers warnings (Ewan Milne) [1292896]
-- [scsi] fix off-by-one LUN check in scsi_scan_host_selected() (Ewan Milne) [1292896]
-- [scsi] fix trivial typos in scsi_scan.c comment (Ewan Milne) [1292896]
-- [scsi] Fix "choir" and "beeing" malaprops (Ewan Milne) [1292896]
-- [scsi] fix the type for well known LUs (Ewan Milne) [1292896]
-- [scsi] fix for bidi use after free (Ewan Milne) [1292896]
-- [scsi] sd: Avoid sending medium write commands if device is write protected (Ewan Milne) [1292896]
-- [scsi] fix various kernel-doc problems in scsi_error.c (Ewan Milne) [1292896]
-- [scsi] scsi: use short driver name for per-driver cmd slab caches (Ewan Milne) [1292896]
-- [scsi] add a blacklist flag which enables VPD page inquiries (Ewan Milne) [1292896]
-- [scsi] scsi: handle flush errors properly (Ewan Milne) [1292896]
-- [block] SG_IO: add SG_FLAG_Q_AT_HEAD flag (Ewan Milne) [1292896]
-- [scsi] convert use of typedef ctl_table to struct ctl_table (Ewan Milne) [1292896]
-- [scsi] sd: convert class code to use dev_groups (Ewan Milne) [1292896]
-
-* Tue May 24 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-412.el7]
-- [x86] microcode/intel: Drop orig_sum from ext signature checksum (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Improve microcode sanity-checking error messages (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Merge two consecutive if-statements (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Get rid of DWSIZE (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Change checksum variables to u32 (Prarit Bhargava) [1253762]
-- [x86] microcode: Use kmemdup() rather than duplicating its implementation (Prarit Bhargava) [1253762]
-- [x86] microcode: Remove unnecessary paravirt_enabled check (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Issue microcode updated message later (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Cleanup get_matching_model_microcode() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Remove unused arg of get_matching_model_microcode() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename mc_saved_in_initrd (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Use *wrmsrl variants (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Cleanup apply_microcode_intel() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Move the BUG_ON up and turn it into WARN_ON (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename mc_intel variable to mc (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename mc_saved_count to num_saved (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename local variables of type struct mc_saved_data (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Drop redundant printk prefix (Prarit Bhargava) [1253762]
-- [x86] microcode: Issue update message only once (Prarit Bhargava) [1253762]
-- [x86] microcode: Remove an unneeded NULL check (Prarit Bhargava) [1253762]
-- [x86] microcode: Remove redundant __setup() param parsing (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Make early loader look for builtin microcode too (Prarit Bhargava) [1253762]
-- [x86] microcode: Untangle from BLK_DEV_INITRD (Prarit Bhargava) [1253762]
-- [x86] cpu: Unify CPU family, model, stepping calculation (Prarit Bhargava) [1253762]
-- [x86] microcode: Initialize the driver late when facilities are up (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Move #ifdef DEBUG inside the function (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Remove maintainers from comments (Prarit Bhargava) [1253762]
-- [x86] microcode: Remove modularization leftovers (Prarit Bhargava) [1253762]
-- [x86] microcode: Merge the early microcode loader (Prarit Bhargava) [1253762]
-- [x86] ramdisk: Export relocated ramdisk VA (Prarit Bhargava) [1253762]
-- [x86] microcode: Unmodularize the microcode driver (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Do not overwrite final patch levels (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Extract current patch level read to a function (Prarit Bhargava) [1253762]
-- [include] bus: subsys: update return type of ->remove_dev() to void (Prarit Bhargava) [1253762]
-- [x86] microcode: Correct CPU family related variable types (Prarit Bhargava) [1253762]
-- [x86] microcode: Disable builtin microcode loading on 32-bit for now (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename get_matching_sig() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Simplify get_matching_sig() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Simplify update_match_cpu() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename get_matching_microcode (Prarit Bhargava) [1253762]
-- [x86] cpu/microcode: Zap changelog (Prarit Bhargava) [1253762]
-- [x86] microcode: Parse built-in microcode early (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Remove unused @rev arg of get_matching_sig() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Get rid of revision_is_newer() (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Drop the pci_ids.h dependency (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Fix printing of microcode blobs in show_saved_mc() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Check scan_microcode()'s retval (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Sanitize microcode_pointer() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Move mc arg last in get_matching_{microcode|sig} (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Simplify generic_load_microcode_early() (Prarit Bhargava) [1253762]
-- [x86] microcode: Consolidate family, model, ... code (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename update_match_revision() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Sanitize _save_mc() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Make _save_mc() return the updated saved count (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Simplify load_ucode_intel_bsp() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Get rid of last arg to load_ucode_intel_bsp() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Do the mc_saved_src NULL check first (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Check if microcode was found before applying (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Fix out of bounds memory access to the extended header (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Handle truncated microcode images more robustly (Prarit Bhargava) [1253762]
-- [x86] microcode: Return error from driver init code when loader is disabled (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Fish out the stashed microcode for the BSP (Prarit Bhargava) [1253762]
-- [x86] microcode: Reload microcode on resume (Prarit Bhargava) [1253762]
-- [x86] microcode: Don't initialize microcode code on paravirt (Prarit Bhargava) [1253762]
-- [x86] microcode, intel: Drop unused parameter (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Do not use smp_processor_id() in preemtible context (Prarit Bhargava) [1253762]
-- [x86] microcode: Limit the microcode reloading to 64-bit for now (Prarit Bhargava) [1253762]
-- [x86] microcode: Update BSPs microcode on resume (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Fix ucode patch stashing on 32-bit (Prarit Bhargava) [1253762]
-- [x86] microcode: Fix accessing dis_ucode_ldr on 32-bit (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Fix early ucode loading on 32-bit (Prarit Bhargava) [1253762]
-- [x86] microcode, intel: Rename apply_microcode and declare it static (Prarit Bhargava) [1253762]
-- [x86] microcode, intel: Fix typos (Prarit Bhargava) [1253762]
-- [x86] microcode, intel: Add missing static declarations (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Fix missing static declaration (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Unify valid container checks (Prarit Bhargava) [1253762]
-- [x86] microcode: Move to a proper location (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Fix early ucode loading (Prarit Bhargava) [1253762]
-- [x86] microcode: Share native MSR accessing variants (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Tone down printk(), don't treat a missing firmware file as an error (Prarit Bhargava) [1253762]
-- [x86] revert "kernel: microcode, amd, avoid allocating with vmalloc & GFP_KERNEL when IRQs are disabled" (Prarit Bhargava) [1253762]
-
-* Mon May 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-411.el7]
-- [mfd] avoid newly introduced compiler warning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mfd: rtsx: Add support for rts522A (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx: Simplify function return logic (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Prevent DMA from stack (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Defer autosuspend while card exists (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Fix runtime PM deadlock (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Fix decimal printf format specifiers prefixed with 0x (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] drivers/mfd/rtsx_usb.c: export device table (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Add comment in rtsx_usb_suspend (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Fix possible race condition (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mfd: Add realtek USB card reader driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] revert "mmc: block: don't use parameter prefix if built as module" (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Fix card detect race for Intel BXT/APL (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Fix card detect race for Intel BXT/APL (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Allow override of get_cd() called from sdhci_request() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Allow override of mmc host operations (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: return error on failed mmc_blk_get() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdio_cis: fix unknown tuple for CISTPL_SDIO_STD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] debugfs: correct wrong voltage value (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Enable tuning according to the actual timing (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sd: limit SD card power limit according to cards capabilities (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: remove the unused quirks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: use to_pci_dev() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] cb710: use to_platform_device() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: restore behavior when setting VDD via external regulator (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] It is not an error for the card to be removed while suspended (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Allow more than 8 partitions per card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Optimize boot time by detecting cards simultaneously (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: use resource_size_t to store physical address (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix __mmc_switch timeout caused by preempt (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] enable MMC/SD/SDIO device to suspend/resume asynchronously (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix sdhci_runtime_pm_bus_on/off() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: 64-bit DMA actually has 4-byte alignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix DMA descriptor with zero data length (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdio: Fix invalid vdd in voltage switch power cycle (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Do not BUG on invalid vdd (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Do not default to 33 Ohm driver strength for Intel SPT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Fix incorrect use of driver strength switching HS200 and HS400 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Introduce MMC_CAP2_NO_SDIO cap (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mvsdio: delete platform data code path (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] fix mmc_{un, }register_pm_notifier prototypes (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix strings broken across multiple lines (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: change to use kmalloc when copy data from userspace (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Check for non-removable cards earlier in the error path (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Refactor code to register the MMC PM notifier (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove MMC_CAP_RUNTIME_RESUME as it's redundant (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Make runtime resume default behavior for MMC/SD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Keep host claimed in mmc_rescan() while calling host ops (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Invoke ->card_event() callback only when needed (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: enable support for the standard "wakeup-source" property (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] remove bondage between REQ_META and reliable write (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_GOLDFISH should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Improve reliability of mmc_select_hs400() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Move mmc_switch_status() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Fix HS setting in mmc_select_hs400() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Improve reliability of mmc_select_hs200() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: mmc: extend the mmc_send_tuning() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT bindings for eMMC hardware reset support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] omap_hsmmc: Enable omap_hsmmc for Keystone 2 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add more ACPI HIDs for Intel controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add more PCI IDs for Intel controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Add external dma interface support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] skip reclaiming host on mmc_add_card() error (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] android-goldfish: Allow compiling the driver with COMPILE_TEST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add mmc_regulator_set_vqmmc() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: move ocr-bit to voltage translation into separate function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove MMC_CLKGATE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] kconfig: reconfigure MMC_SDHCI_OF_ESDHC option (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add another PCI ID for an Intel eMMC host controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: fix simple_return.cocci warnings (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Make sdhci_pci_o2_fujin2_pci_init() static (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Build o2micro support in the same module (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: enable tuning for DDR50 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: enable CMD19 tuning for DDR50 mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: copy resp[] data on err for MMC_IOC_MULTI_CMD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] debugfs: implement ios show for SDR12 and SDR25 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Wait for card_busy before starting sdio requests (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add mmc_is_io_op helper function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: block: Add new ioctl to send multi commands (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] debugfs: implement ios show for driver type (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: Use of_property_read_u32 instead of open-coding it (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: call sdhci_init() before request irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Convert __mmc_switch() into an internal core function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] vub300: Remove unneded semicolons (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sd: Remove superfluous error code assignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Keep host claimed while invoking mmc_power_off|up() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: detect sd card reader on asus x205ta (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] pci_ids: Add AMD KERNCZ device ID support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fix init_card in 52Mhz (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add quirk SDHCI_QUIRK2_NEED_DELAY_AFTER_INT_CLK_RST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix dead loop of mmc_retune (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Don't return an error for CD/WP GPIOs when GPIOLIB is unset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix race condition in mmc_wait_data_done (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: also get preset value and driver type for MMC_DDR52 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: block: skip trim for some kingston eMMCs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix dma memory leak in sdhci_pre_req() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: use of_property_read_bool() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: set the clear transfer mode register quirk for O2Micro (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fixed bug in one erase-group budget TRIM (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: switch from programmable clock mode to divided one if needed (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] scatterlist: remove open coded sg_unmark_end instances (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: add quirk for broken data transfer over scheme (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: remove the unused blk_setting (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: fix pio mode when internal dmac is enabled (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: add fixup of broken CMD23 for Sandisk card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdio: avoid using NULL sdio_irq_thread pointer (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: properly check card present state when quirk NO_CARD_NO_RESET is set (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: don't use card state polling when CD GPIO is defined (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: let GPIO based card detection have higher precedence (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: don't use parameter prefix if built as module (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add quirk SDHCI_QUIRK_CLOCK_DIV_ZERO_BROKEN (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Optimize case for exactly one erase-group budget (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: make max-frequency property in device tree work (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Add missing mmc_blk_put() in power_ro_lock_show() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_MTK should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci check parameters before call dma_free_coherent (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: have drivers use blk_queue_max_discard_sectors() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] queue: prevent soft lockups on PREEMPT=n (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: mediatek: Add Mediatek MMC driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: Fixup request missing in mmc_blk_issue_rw_rq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix low memory corruption (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Change AMD SDHCI quirk application scope (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] queue: use swap() in mmc_queue_thread() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Restore behavior while creating OCR mask (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant ->power_restore() callback for SD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant ->power_restore() callback for MMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Enable HS400 for some Intel host controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci-pci: Add support for drive strength selection for SPT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add a callback to select drive strength (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: mmc: Add driver strength selection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: mmc: Read card's valid driver strength mask (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Record card drive strength (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Factor out common code in drive strength selection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add 'card' to drive strength selection callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Simplify card drive strength mask (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Allow card drive strength to be different to host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Reset driver type to default (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix driver type B and D handling in sdhci_do_set_ios() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc-test: use swap() in mmc_test_nonblock_transfer() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Increase delay for voltage to stabilize from 3.3V to 1.8V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Use core to handle absent write protect line (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] cast unsigned int to typeof(sector_t) to avoid unexpected error (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] cast u8 to unsigned long long to avoid unexpected error (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: sdhci: Use BUG_ON() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: mmc_test: Simplify a trivial if-return sequence (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dt: Allow to specify that no write protect signal is present (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Add support for disabling write-protect detection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Don't print reset warning if reset is not supported (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Retry errored data requests when re-tuning is needed (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Check re-tuning in the recovery path (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Flag re-tuning is needed on CRC errors (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Change to new way of doing re-tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add support for HS400 re-tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Separate out the mmc_switch status check so it can be re-used (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Hold re-tuning in mmc_sleep() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Hold re-tuning while bkops ongoing (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Hold re-tuning during erase commands (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Hold re-tuning during switch commands (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add support for re-tuning before each request (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Enable / disable re-tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: host: Add facility to support re-tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: Constify platform_device_id (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-sirf: fake version and capbility registers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdio: add reset callback to bus operations (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: Don't access RPMB partitions for normal read/write (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: add missing pm event in mmc_pm_notify to fix hib restore (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] revert "mmc: core: Convert mmc_driver to device_driver" (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: fix fifo ordering in big endian (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Convert the error field in struct mmc_command|data into an int (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: fix 64 BIT DMA quirks for rtsx (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add support for marking hpi as broken through devicetree (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Add a timeout for sending CMD11 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Enable runtime PM management of host devices (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove the ->enable|disable() callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fold mmc_set_bus_width calls into sdio_enable_4bit_bus (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix card presence logic in sdhci_request function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci-spear: Remove exported header (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-spear: Simplify by adding build dependency to CONFIG_OF (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Remove the sdhci exported header file (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: remove the unneeded check of disabled device (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Fix hardware dependencies for sdhci-pxav3 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] kconfig: replace PPC_OF with PPC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-iproc: add IPROC SDHCI driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: do not set AUTO_CMD12 for multi-block CMD53 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add quirk for ACMD23 broken (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: disable the clock in sdhci_pltfm_unregister() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] treewide: Fix typo in printk messages (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: mmc: tmio: tmio_mmc_data has .chan_priv_?x (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add hardware dependencies for sdhci-pxav3 and sdhci-pxav2 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: switch voltage before sdhci_set_ios in runtime resume (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Resolve BKOPS compatability issue (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Fix menuconfig alignment of MMC_SDHCI_* options (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Enable Ricoh MMC quirk by default (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Remove unnecessary temporary variable (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: check sg_count before long data xfer (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: finish request if no card exist (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] vub300: remove unreachable return value handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: fix format string warning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: remove TMIO_MMC_HAVE_CTL_DMA_REG flag (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mobile_sdhi: remove .init/.cleanup (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_data has .dma_rx_offset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_data has .alignment_shift (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .bus_shift (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .multi_io_quirk (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .clk_disable (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .clk_enable (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .write16_hook (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .dma (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: add tmio_mmc_host_alloc/free() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: host: add new f_sdh30 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add a quirk for single block transactions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add a quirk for tuning work around (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add a voltage switch callback function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: sdhci: Added a space before ( (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Always init buf_ready_int (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Move mmc_card_removed() into mmc_start_request() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Simplify by adding mmc_execute_tuning() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Allow host driver to provide isr for card-detect interrupts (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: fix copy'n'paste typos in the comments (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sd: add reset bus_ops callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: refactor the hw_reset routines (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: always check status after reset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add SDIO function devicetree subnode parsing (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Remove redundant runtime PM idle callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: use pipeline mmc requests to improve performance (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Remove redundant ADMA page boundary warnings (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Make tuning block patterns static (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Remove redundant runtime PM idle callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: swap function position to avoid pre declaration (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add support for sdio card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add helper function to simplify code (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: init cookie at probe/card_event (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add dump_reg_range to simplify dump register (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Rework how to handle allocation of slot-gpio data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Free all resources for the class device at ->dev_release() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] slot-gpio: Make mmc_gpio_alloc() available for MMC core (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] slot-gpio: Use the parent device while allocating data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Remove option to explicitly free requested CD/WP GPIOs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Return error at failure of request CD/WP in mmc_of_parse() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Support the optional init_card() callback for MMC and SD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] mmc: sunxi: Convert MMC driver to the standard clock phase API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Set SDHCI_POWER_ON with external vmmc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add support for Intel SPT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add ACPI HID INT344D (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix sleep in atomic after inserting SD card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Disable re-tuning for HS400 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Simplify use of tuning timer (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add out_unlock to sdhci_execute_tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Tuning should not change max_blk_count (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: stop trying to switch width when only one bit is supported (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Let mmc_send_tuning() to take struct mmc_host* as parameter (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] queue: Improve error handling during allocation of bounce buffers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc / pm: Replace CONFIG_PM_RUNTIME with CONFIG_PM (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add two host capabilities for Intel (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add two host capabilities for BYT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC to BYT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: add core-level function for sending tuning commands (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: hold SD Clock before CMD11 during Signal (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: add support for the other bit of sdio interrupt (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Increase max_devices (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: add support for ARM64 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: reset sdio card properly on resume (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: use card->ocr when negotiating voltage setting in mmc_sdio_power_restore (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] add Toshiba PCI SD controller driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: consistent handling of initial values (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Add HS400 support to SDHCI driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Clear also HS400 1.2V capability if 1.2V is not supported (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix vqmmc error setting (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Remove unused SDHCI_CTRL_HS_SDR200 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Add IDMAC 64-bit address mode support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: enable sdhci doesn't support hs200 quirk for AMD sdhci (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: enable the clear transfer mode register quirk for AMD sdhci (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Add a quirk for AMD SDHC transfer mode register need to be cleared for cmd without data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: use mmc_send_status to check hw_reset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc_test: Extend "Badly aligned" tests for 8-byte alignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add 64-bit DMA support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add 64-bit DMA support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Add 64-bit ADMA support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Define ADMA descriptor structure (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Define ADMA constants (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Define maximum segments (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Parameterize ADMA sizes and alignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Use 'void *' for not 'u8 *' for ADMA data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add sdhci_adma_mark_end() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Rename adma_desc to adma_table (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Rename two ADMA-related functions for consistency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix ADMA table size warning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix ADMA page boundary warnings (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix incorrect ADMA2 descriptor table size (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Convert to use kzalloc() for CXD register buffers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Don't handle buffers on stack while fetching CXD registers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove the redundant mmc_send_ext_csd() API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Use mmc_get_ext_csd() instead of mmc_send_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Use mmc_get_ext_csd() instead of mmc_send_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Export mmc_get_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Don't panic when fetching EXT_CSD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Let's callers of from mmc_get_ext_csd() do error handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fetch and decode EXT_CSD from mmc_read_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add helper function for EXT_CSD support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove unnecessary 'out of memory' message (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant check of max_dtr while selecting timings (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant check while selecting powerclass (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove duplicated definition of mmc_send_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove mmc_free_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Remove old card detect infrastructure (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: silence a shift wrapping warning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Report firmware version for eMMC 5.0 devices (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove unused mmc_list_to_card() macro (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: block: Use dev_set|get_drvdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] msm_sdcc: Use platform_set|get_drvdata (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Convert mmc_driver to device_driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Convert the mmc_driver to use the modern PM ops (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Don't export the to_sdio_driver macro (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove superfluous ifdefs for SDIO bus' PM callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix prepared requests while doing bkops (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fix error paths and messages in mmc_init_card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add debug message for SET_BLOCK_COUNT result (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Initialize SET_BLOCK_COUNT request fields (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix error conditions for controller reset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Balance vmmc regulator_disable() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci-o2micro: Fix Dell E5440 issue (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: add newline to sysfs display of force_ro (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix card detection regression (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: drop owner assignment from platform_drivers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Fix Braswell eMMC timeout clock frequency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Pass HID and UID to probe_slot (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Get UID directly from acpi_device (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Fix Braswell eMMC timeout clock frequency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Let a driver override timeout clock frequency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add Bay Trail and Braswell SD card detect (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Set SDHCI_QUIRK2_STOP_WITH_TC for Intel BYT host controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add a HID and UID for a SD Card host controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Set SDHCI_QUIRK2_STOP_WITH_TC for Intel host controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Add quirk for always getting TC with stop cmd (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: restore detect line inversion semantics (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Fix incorrect warning when setting 0 Hz via debugfs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Fix use of wrong device in mmc_gpiod_free_cd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx_pci: Set power related cap2 macros (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add new power_mode MMC_POWER_UNDEFINED (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: execute tuning when device is not busy (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Convert pr_warning to pr_warn (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Consolidate emmc tuning blocks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] don't request CD IRQ until mmc_start_host() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: change stop errors to info (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Checks EXT_CSD_PARTITION_SETTING_COMPLETED before partitions computation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Replace "enhanced_area_en" attribute by "partition_setting_completed" (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Move code that manages user area and gp partitions into functions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: switch OF parser to use gpio descriptors (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: add gpiod variant to get wp GPIO (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: Prevent partition scan for the eMMC boot areas (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: remove MMC_CAP2_NO_MULTI_READ flags (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: use .multi_io_quirk on tmio_mmc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: disable preset register for Baytrail and Merrifield (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Add .multi_io_quirk callback for multi I/O HW bug (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: check 1.2v IO capability for SDHC host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fix sequence for I/O voltage in DDR mode for eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: add probe_slot method for emmc/sd/sdio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: enable runtime pm for Intel Merrifield platform (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: handle busy-end interrupt during command (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Make sdhci_disable_irq_wakeups() static (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move timeout_clk dynamically calculation code into common code (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: calculate timeout_clk conditionally in sdhci_add_host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add platform set_timeout hook (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add platform get_max_timeout_count hook (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Support voltage changes (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: use mmc_regulator_get_supply to handle regulators (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: resolve divded by zero panic (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add PCI IDs for Intel Braswell (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: move rockchip related code to a separate file (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: add actual clock support as option (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: remove Renesas specific #ifdef (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: add TMIO_MMC_SDIO_STATUS_QUIRK (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: control multiple block transfer mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: care about DMA tx/rx addr offset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Use regulator_get_voltage() if OCR mask is empty (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: implement Driver Stage Register handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi.c: Use SET_RUNTIME_PM_OPS macro to set runtime pm callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Use SET_RUNTIME_PM_OPS macro to set runtime pm callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] remove .owner field for drivers using module_platform_driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: sdio: Fix unconditional wake_up_process() on sdio thread (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: Add support for MIPS (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: Add dependency on DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci : recompute timeout_clk when needed (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci : handle busy timeout irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx_usb_sdmmc: fix incorrect last byte in R2 response (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx_pci_sdmmc: fix incorrect last byte in R2 response (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Correct the value of MMC_NUM_PHY_PARTITION (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix the wrong type of curr (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: Do not use parent as the host's device (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove fixed voltage regulator logic (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmci: Add qcom dml support to the driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Slot quirk "disable-wp" is deprecated (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: remove PCI PM functions in suspend/resume callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Do not advertise secure discard if it is blacklisted (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-msm: Get COMPILE_TEST support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add DDR50 1.8V mode support for BayTrail eMMC Controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Preset value not supported in Baytrail eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_USDHI6ROL0 should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_SH_MMCIF should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_OMAP_HS should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-st: Intial support for ST SDHCI controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add support for async request (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] s3cmci: port DMA code to dmaengine API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Allow forward compatibility for eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Replace host->mmc with mmc where possible (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: avoid double-delay while transitioning to 1.8V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: SDIO host controller support for Intel Quark X1000 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Remove blank line (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Improve external VDD regulator support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sd: warn if card stays busy during init (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] quirks: Fixup debug message (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Remove unused ret variables (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Use mmc core regulator infrastucture (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant runtime_idle callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] simplify SDHCI Kconfig dependencies (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] omap: don't select TPS65010 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] add a driver for the Renesas usdhi6rol0 SD/SDIO host controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dove: fix missing MACH_DOVE dependency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: SD tuning is broken for some controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: track whether preset mode is currently enabled in hardware (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move remaining power handling into sdhci_set_power() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move regulator handling into sdhci_set_power() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: remove platform_suspend/platform_resume callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clean up sdhci_execute_tuning() decision (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: cache timing information locally (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: convert sdhci_set_uhs_signaling() into a library function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: set_uhs_signaling() need not return a value (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: convert sdhci_set_clock() into a library function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move setting mmc->actual_clock into set_clock handlers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move setting host->clock into sdhci_do_set_ios() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clean up sdhci_update_clock()/sdhci_set_clock() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: convert ADMA descriptors to a coherent allocation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: avoid sync'ing the SG if there's no misalignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: move FSL ESDHC reset handling quirk into esdhc code (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: convert reset into a library function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: convert generic bus width setup to library function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: plug hole in disabling card detection interrupts (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: more efficient interrupt enable register handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: allow sdio interrupts while sdhci runtime suspended (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: push card_tasklet into threaded irq handler (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: convert to new SDIO IRQ handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clean up sdio interrupt enable handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clean up interrupt handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdio_irq: rework sdio irq handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: remove mdelay in eMMC tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Improve support for deferred regulators (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: fix possible linking error if built-in (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: add DT bindings for eMMC HS400 1.8/1.2V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: add support for HS400 mode of eMMC5.0 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: rework selection of bus speed mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] step power class after final selection of bus mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: identify available device type to select (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: drop the speed mode of card's state (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Try other signal levels during power up (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] moxart: Add MOXA ART SD/MMC driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: remove unused member variable (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add realtek USB sdmmc host driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add R1-no-CRC mmc command type handle (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Invoke sdio func driver's PM callbacks from the sdio bus (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Use maximum timeout values in case TACC field is zero (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Convert to use ATTRIBUTE_GROUPS (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: card.h: Use NULL instead of 0 for END_FIXUP (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Delay the card_event callback into the mmc_rescan worker (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clarify DDR timing mode between SD-UHS and eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: clarify DDR timing mode between SD-UHS and eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: clarify DDR timing mode between SD-UHS and eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Intel SDIO has broken card detect (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-msm: Initial support for Qualcomm chipsets (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: only reprogram retuning timer when flag is set (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rename ARCH_BCM to ARCH_BCM_MOBILE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Allow for irq being shared (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add device id 80860F16 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Fix broken card detect for ACPI HID 80860F14 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Add GPIO descriptor based CD GPIO API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] slot-gpio: Split out CD IRQ request into a separate function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] slot-gpio: Record GPIO descriptors instead of GPIO numbers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: typo fix in printk specifier (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci-spear: remove support for power gpio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc-socfpga: Remove the SOCFPGA specific platform for dw_mmc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] ushc: Fix incorrect parameter in sizeof (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Fixup busy detection while invoking stop cmd at recovery (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Respect hw busy detection in card_busy_detect() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Implement card_busy_detect() for busy detection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Use R1 responses for stop cmds for read requests (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Respect host's max_busy_timeout when sending sleep cmd (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Use generic CMD6 time while switching to eMMC HS200 mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fixup busy detection for mmc switch operations (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Minor simplifications to __mmc_switch (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add ignore_crc flag to __mmc_switch (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Rename cmd_timeout_ms to busy_timeout (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Rename max_discard_to to max_busy_timeout (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT bindings for eMMC HS200 1.8/1.2V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT bindings for eMMC high-speed DDR 1.8/1.2V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT bindings for SD card's UHS bus speed modes (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: fix card poweroff bug (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add support for realtek rts5250 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Enable MMC_CAP2_CACHE_CTRL as default (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Use mmc_flush_cache() during mmc suspend (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove support for MMC_CAP2_NO_SLEEP_CMD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove unused host cap MMC_CAP2_BROKEN_VOLTAGE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: card: Remove host cap MMC_CAP2_SANITIZE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove unnecessary validations for bus_ops callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Fix possibility of chip->fixes being null (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Fix BYT sd card getting stuck in runtime suspend (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Allow for long command timeouts (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdio: add a quirk for broken SDIO_CCCR_INTx polling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix lockdep error in tuning routine (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: add broken HS200 quirk for Intel Merrifield (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add quirk for broken HS200 support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sh_mmcif: Enable driver compilation with COMPILE_TEST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhi: Enable driver compilation with COMPILE_TEST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: add new TMIO_MMC_HAVE_HIGH_REG flags (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: bus_shift become tmio_mmc_data member (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Do not call get_cd for non removable cards (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: add new ACPI ID (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Setting the host->mrq to NULL before executing tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] fix host release issue after discard operation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: export pltfm suspend/resume api (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: mmc DDR mode should not depend on UHS_DDR50 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] msm_sdcc: Limit driver to platforms that use it (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: convert to use GPIO descriptor API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clear auto cmd setting bits for no data cmds (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Silence compiler warning in __mmc_switch (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Avoid needless loop while handling SDIO interrupts in sdhci_irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dma-api: mmc: sdhci-acpi: use dma_coerce_mask_and_coherent() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add MMC_CAP_RUNTIME_RESUME to resume at runtime_resume (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Improve runtime PM support during suspend/resume for sd/mmc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant mmc_power_up|off at runtime callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Don't force card to active state when entering suspend/shutdown (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove deprecated mmc_suspend|resume_host APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] via-sdmmc: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: Remove redundant suspend and resume callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] tifm_sd: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] vub300: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] msm_sdcc: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] cb710: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Signal wakeup event at card insert/removal (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Collect common code for card ocr validation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Prevent violation of specs while initializing cards (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Move cached value of the negotiated ocr mask to card struct (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Cleanup code for setting ocr mask for SDIO (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove unnecessary retry mechanism at SDIO attach (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Let mmc_set_signal_voltage take ocr as parameter (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Let mmc_power_up|cycle take ocr as parameter (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Do not poll for busy with status cmd for all switch cmds (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add SDIO/MMC device ID support for Intel Clovertrail (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: remove unneeded call when have preset value quirk (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: report error once the maximum tuning loops exhausted or timeout (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: add Intel Merrifield support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] convert bus code to use dev_groups (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: allow platform access of sdhci_send_command (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add hooks for platform specific tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: clean up duplicate macros (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] add ignorance case for CMD13 CRC error (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: guarantee stop-abort cmd in data errors (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: control card read threshold (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: adjust the fifoth with block size (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: remove dead function mmc_try_claim_host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] revert "mmc: tmio-mmc: Remove .set_pwr() callback from platform data" (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] memstick: rtsx: Modify copyright comments (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: Clear SD_CLK toggle enable bit if switching voltage fail (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: Add support for ARC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: get voltage from sdhc host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: parse voltage from device-tree (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] omap_hsmmc: use the generic config for omap2plus devices (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: revision-specific CLK_CTRL2 handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: revision-specific Command Completion Signal handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: move header include from header into .c (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio-mmc: Remove .set_pwr() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio-mmc: Remove .get_cd() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mobile_sdhi: Remove .set_pwr() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mobile_sdhi: Remove .get_cd() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: Remove .set_pwr() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: Remove .down_pwr() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Add debouncing capability to mmc_gpio_request_cd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: add missing MFD_SYSCON dependency for SOCFPGA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Set data timeout for mmc bus test commands (CMD14 and CMD19) (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] fix null pointer use in mmc_blk_remove_req (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc_test: replace strict_strtol() with kstrtol_from_user() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: free mmc_card if cmd 3, 9, 7 fails in mmc_sd_init_card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: Remove a duplicate line in Makefile (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: request irq after sdhci_init() is called (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] vub300: Staticize vub300_init_card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Indicate that regulators may be absent (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Indicate that vmmcq may be absent (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] bcm281xx SDHCI driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add card_event callback to sdhci (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fixup Oops for SDIO shutdown (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: add another device id (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: esdhc: Fix bug when writing to SDHCI_HOST_CONTROL register (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: production year for eMMC 4.41 and later (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix ctrl_2 on super-speed selection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] mmc: dw_mmc-pltfm: add Rockchip variant (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: add support for eMMC hardware reset for HID 80860F14 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: add support for eMMC hardware reset for BYT eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: Add support DW SD/MMC driver on SOCFPGA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: fix caps2 for HS200 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT-bindings for MMC_CAP2_FULL_PWR_CYCLE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Invent MMC_CAP2_FULL_PWR_CYCLE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Enable power_off_notify for eMMC shutdown sequence (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: improve card removal check in sdhci_card_event() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] mmc: dw_mmc: Add the ability to set the ciu clock frequency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] mmc: dw_mmc: Handle late vmmc regulators with EPROBE_DEFER (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: fixing an false identification of SANITIZE command (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: use platform_{get,set}_drvdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: fix error return code in sdhci_acpi_add_own_cd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Update the ext-csd.rev check for eMMC5.1 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: return mmc_of_parse() errors to caller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] msm_sdcc: Convert to clk_prepare/unprepare (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add size for caller in init+register (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: support runtime PM for BYT SD cards (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: support runtime PM for ACPI HID 80860F14 SD cards (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add ability to stay runtime-resumed if the card is powered up (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] remove unnecessary platform_set_drvdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: Allow drivers to set quirks2 from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhi/tmio: switch to using dmaengine_slave_config() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhi/tmio: make DMA filter implementation specific (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Fix select power class after resume (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: card: Adding support for sanitize in eMMC 4.5 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Re-use code for MMC_CAP2_DETECT_ON_ERR in polling mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Only execute tuning for SDR50 and SDR104 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: include gpio/consumer.h in of_gpio.h for desc_to_gpio() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: consumer.h: Move forward declarations outside #ifdef (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] mcp23s08: depend on OF_GPIO (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] mcp23s08: Add irq functionality for i2c chips (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio / acpi: get rid of acpi_gpio.h (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio / acpi: register to ACPI events automatically (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] clps711x: Enable driver compilation with COMPILE_TEST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] add GPIO support for SMSC SCH311x (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio / acpi: return -ENOENT when no mapping exists (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: Add module device table and mark table const (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: Fix irq mask/unmask by writing bits instead of numbers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: return -ENOENT if no GPIO mapping exists (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] driver for Xtensa GPIO32 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: update inline documentation of gpiod_get_index() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: convert gpiod_lookup description to kernel-doc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: introduce chip_* to print with chip->label prefix (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: unify pr_* messages format (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: better lookup method for platform GPIOs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] documentation: gpiolib: document new interface (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio/pinctrl: make gpio_chip members typed boolean (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] rewrite gpiochip_offset_to_desc() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: change a warning to debug message when failing to get gpio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: use platform GPIO mappings as fallback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: fix lookup of platform-mapped GPIOs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: add missing declarations (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] Add MOXA ART GPIO driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-lynxpoint: Allow building as a module (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: Remove duplicate include of errno.h (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: fix of_find_gpio() when OF not defined (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] fix memory leak in error path (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: make msm_gpio.summary_irq signed for error handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: use dedicated flags for GPIO properties (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: fix find_chip_by_name() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pl061: don't depend on CONFIG_ARM (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: provide a declaration of seq_file in gpio/driver.h (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: provide stubs for devres gpio functions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: devres: add missing headers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: make GPIO_DEVRES depend on GPIOLIB (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: devres: fix devm_gpiod_get_index() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib / acpi: allow passing GPIOF_ACTIVE_LOW for GpioInt resources (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib / acpi: add ACPI support for gpiod_get_index() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib / acpi: convert to gpiod interfaces (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: add gpiod_get() and gpiod_put() functions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: port of_ functions to use gpiod (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: export descriptor-based GPIO interface (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] pinctrl/gpio: non-linear GPIO ranges accesible from gpiolib (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] gpio: clean up gpio-ranges documentation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: add API to be strict about GPIO IRQ usage (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: let gpiod_request() return -EPROBE_DEFER (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: safer implementation of desc_to_gpio() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib / acpi: move acpi_gpiochip_free_interrupts next to the request function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] samsung: Use CONFIG_ARCH_S3C64XX to check for S3C64XX support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: Add OF support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pca953x: Don't flip bits on PCA957x GPIO expanders when probing them (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] arm: plat-iop: move the GPIO driver to drivers/gpio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] ucb1400: Can be built as a module (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: factorize gpiod_get/set functions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] emev2: gpiolib: Enable support for OF (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: Include GPIO label in log messages for GPIOs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: Provide helper macros for logging of GPIO events (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: only use set_irq_flags() on ARM (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib-acpi: convert acpi_evaluate_object() to acpi_execute_simple_method() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: call the gpio user handler iff gpio_to_irq is done (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: remove the irq_demux_work and gpio->irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: change to devm_request_threaded_irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] return -ENOTSUPP if debounce cannot be set (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] improve error path in gpiolib (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] add GPIO support for F71882FG and F71889F (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] implement gpio-ranges binding document fix (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] samsung: Drop support for Exynos SoCs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio mips/octeon: Add a driver for OCTEON's on-chip GPIO pins (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: Remove pdata argument to pcf857x_irq_domain_init() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: Sort headers alphabetically (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pca953x: fix gpio input on gpio offsets >= 8 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: Staticize local variable 'msm_gpio' (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib-of.c: make error message more meaningful by adding the node name and index (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] use dev_get_platdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio_msm: Fix build error due to missing err.h (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] Kontron PLD gpio driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: replace strict_strtol() with kstrtol() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio]  gpio: msm: Fix the error condition for reading ngpio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: remove warnning of allocations with IRQs disabled (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: remove Withney point support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] arm: samsung: Introduce GPIO_SAMSUNG Kconfig entry (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio_msm: Convert to use devm_ioremap_resource (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] devres: make comments proper (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] xilinx: Enable driver for Xilinx zynq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: Add device tree and irqdomain support for gpio-msm-v2 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm-v1: Remove errant __devinit to fix compile (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] arm: msm: Remove gpiomux-v2 and re-organize MSM_GPIOMUX configs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] clps711x: Rewrite driver for using generic GPIO code (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: drop away explicit casting (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: amend error messages (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: use managed functions pcim_* and devm_* (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: do not use direct access to iomapped memory (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: initialize lock before usage (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] max7300: Fix trivial typo in Kconfig help text (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] langwell: remove unnecessary platform_set_drvdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] regulator: Sync regulator/consumer.h with v4.5 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [kernel] genirq: Provide synchronize_hardirq() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-
-* Mon May 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-410.el7]
-- [tools] perf stat: Fallback to user only counters when perf_event_paranoid > 1 (Jiri Olsa) [1336447]
-- [tools] perf evsel: Handle EACCESS + perf_event_paranoid=2 in fallback() (Jiri Olsa) [1336447]
-- [tools] perf evsel: Improve EPERM error handling in open_strerror() (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Do not reassign parg after collapse_tree() (Jiri Olsa) [1336447]
-- [tools] perf probe: Check if dwarf_getlocations() is available (Jiri Olsa) [1336447]
-- [tools] perf dwarf: Guard !x86_64 definitions under #ifdef else clause (Jiri Olsa) [1336447]
-- [tools] perf tools: Use readdir() instead of deprecated readdir_r() (Jiri Olsa) [1336447]
-- [tools] perf thread_map: Use readdir() instead of deprecated readdir_r() (Jiri Olsa) [1336447]
-- [tools] perf script: Use readdir() instead of deprecated readdir_r() (Jiri Olsa) [1336447]
-- [tools] perf tools: Use readdir() instead of deprecated readdir_r() (Jiri Olsa) [1336447]
-- [tools] perf diff: Fix duplicated output column (Jiri Olsa) [1336447]
-- [tools] perf intel-pt: Fix segfault tracing transactions (Jiri Olsa) [1336447]
-- [tools] perf jit: genelf makes assumptions about endian (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix determination of a callchain node's childlessness (Jiri Olsa) [1336447]
-- [tools] perf tools: Add missing initialization of perf_sample.cpumode in synthesized samples (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix build break on powerpc (Jiri Olsa) [1336447]
-- [tools] perf bench: Fix detached tarball building due to missing 'perf bench memcpy' headers (Jiri Olsa) [1336447]
-- [tools] perf tests: Fix tarpkg build test error output redirection (Jiri Olsa) [1336447]
-- [tools] perf tools: Unexport some methods unused outside strbuf.c (Jiri Olsa) [1336447]
-- [tools] perf probe: No need to use formatting strbuf method (Jiri Olsa) [1336447]
-- [tools] perf help: Use asprintf instead of adhoc equivalents (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove unused perf_pathdup, xstrdup functions (Jiri Olsa) [1336447]
-- [tools] perf tools: Do not include stringify.h from the kernel sources (Jiri Olsa) [1336447]
-- [tools] tools include: Copy linux/stringify.h from the kernel (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Remove redundant CPU output (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove needless 'extern' from function prototypes (Jiri Olsa) [1336447]
-- [tools] perf tools: Simplify die() mechanism (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove unused DIE_IF macro (Jiri Olsa) [1336447]
-- [tools] perf script: Remove lots of unused arguments (Jiri Olsa) [1336447]
-- [tools] perf thread: Rename perf_event__preprocess_sample_addr to thread__resolve (Jiri Olsa) [1336447]
-- [tools] perf machine: Rename perf_event__preprocess_sample to machine__resolve (Jiri Olsa) [1336447]
-- [tools] perf tools: Add cpumode to struct perf_sample (Jiri Olsa) [1336447]
-- [tools] perf tests: Forward the perf_sample in the dwarf unwind test (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove misplaced __maybe_unused (Jiri Olsa) [1336447]
-- [tools] perf list: Fix documentation of :ppp (Jiri Olsa) [1336447]
-- [tools] perf bench numa: Fix assertion for nodes bitfield (Jiri Olsa) [1336447]
-- [tools] perf symbols: Record text offset in dso to calculate objdump address (Jiri Olsa) [1336447]
-- [tools] Move utilities.mak from perf to tools/scripts/ (Jiri Olsa) [1336447]
-- [tools] perf test: Remove 'core_id' check in topo test (Jiri Olsa) [1336447]
-- [tools] Copy hashtable.h into tools directory (Jiri Olsa) [1336447]
-- [tools] tools, perf: make gfp_compact_table up to date (Jiri Olsa) [1336447]
-- [tools] perf stat: Add --metric-only support for -A (Jiri Olsa) [1336447]
-- [tools] perf stat: Implement --metric-only mode (Jiri Olsa) [1336447]
-- [tools] perf stat: Document CSV format in manpage (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Check sort keys before hot key actions (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Allow thread filtering for comm sort key (Jiri Olsa) [1336447]
-- [tools] perf tools: Add sort__has_comm variable (Jiri Olsa) [1336447]
-- [tools] perf tools: Recalc total periods using top-level entries in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove nr_sort_keys field (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Cleanup hist_browser__fprintf_hierarchy_entry() (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove hist_entry->fmt field (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix command line filters in hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf tools: Add more sort entry check functions (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix hist_entry__filter() for hierarchy (Jiri Olsa) [1336447]
-- [tools] perf jitdump: Build only on supported archs (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Add '~' operation within arg_num_eval() (Jiri Olsa) [1336447]
-- [tools] perf tools: Omit unnecessary cast in perf_pmu__parse_scale (Jiri Olsa) [1336447]
-- [tools] perf tools: Pass perf_hpp_list all the way through setup_sort_list (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix perf script python database export crash (Jiri Olsa) [1336447]
-- [tools] perf jitdump: DWARF is also needed (Jiri Olsa) [1336447]
-- [tools] perf report: Use hierarchy hpp list on gtk (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Use hierarchy hpp list (Jiri Olsa) [1336447]
-- [tools] perf report: Use hierarchy hpp list on stdio (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix indent for multiple hierarchy sort key (Jiri Olsa) [1336447]
-- [tools] perf hists: Support multiple sort keys in a hierarchy level (Jiri Olsa) [1336447]
-- [tools] perf hists: Use own hpp_list for hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp__setup_hists_formats() (Jiri Olsa) [1336447]
-- [tools] perf stat: Document --detailed option (Jiri Olsa) [1336447]
-- [tools] perf hists: Add level field to struct perf_hpp_fmt (Jiri Olsa) [1336447]
-- [tools] perf tools: Use 64-bit shifts with (TSC) time conversion (Jiri Olsa) [1336447]
-- [tools] perf jit: Move clockid validation (Jiri Olsa) [1336447]
-- [tools] perf jit: Let jit_process() return errors (Jiri Olsa) [1336447]
-- [tools] perf session: Simplify tool stubs (Jiri Olsa) [1336447]
-- [tools] perf inject: Hit all DSOs for AUX data in JIT and other cases (Jiri Olsa) [1336447]
-- [tools] perf tools: Explicitly declare inc_group_count as a void function (Jiri Olsa) [1336447]
-- [tools] perf stat: Check for frontend stalled for metrics (Jiri Olsa) [1336447]
-- [tools] perf tests: Initialize sa.sa_flags (Jiri Olsa) [1336447]
-- [tools] perf test: Fix hists related entries (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Fix output of llu for 64 bit values read on 32 bit machines (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Set int_array fields to NULL if freeing from error (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Fix time stamp rounding issue (Jiri Olsa) [1336447]
-- [tools] perf script: Fix double free on command_line (Jiri Olsa) [1336447]
-- [tools] tools build: Use .s extension for preprocessed assembler code (Jiri Olsa) [1336447]
-- [tools] perf stat: Support metrics in --per-core/socket mode (Jiri Olsa) [1336447]
-- [tools] perf stat: Implement CSV metrics output (Jiri Olsa) [1336447]
-- [tools] perf record: Ensure return non-zero rc when mmap fail (Jiri Olsa) [1336447]
-- [tools] perf record: Introduce record__finish_output() to finish a perf.data (Jiri Olsa) [1336447]
-- [tools] perf record: Extract synthesize code to record__synthesize() (Jiri Olsa) [1336447]
-- [tools] perf record: Use WARN_ONCE to replace 'if' condition (Jiri Olsa) [1336447]
-- [tools] perf data: Explicitly set byte order for integer types (Jiri Olsa) [1336447]
-- [tools] perf data: Support converting data from bpf_perf_event_output() (Jiri Olsa) [1336447]
-- [tools] perf stat: Check existence of frontend/backed stalled cycles (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix locale handling in pmu parsing (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Split pevent_print_event() into specific functionality functions (Jiri Olsa) [1336447]
-- [tools] perf trace: Check and discard not only 'nr' but also '__syscall_nr' (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix python extension build (Jiri Olsa) [1336447]
-- [tools] perf tools: Only set filter for tracepoints events (Jiri Olsa) [1336447]
-- [tools] perf config: Bring perf_default_config to the very beginning at main() (Jiri Olsa) [1336447]
-- [tools] perf report: Update column width of dynamic entries (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix dynamic entry display in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf report: Left align dynamic entries in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf report: Fix indentation of dynamic entries in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix comparing of dynamic entries (Jiri Olsa) [1336447]
-- [tools] perf report: Show message for percent limit on gtk (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Show message for percent limit (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Cleanup hist_browser__update_percent_limit() (Jiri Olsa) [1336447]
-- [tools] perf report: Show message for percent limit on stdio (Jiri Olsa) [1336447]
-- [tools] perf hists: Add more helper functions for the hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf script: Remove duplicated code and needless script_spec__findnew() (Jiri Olsa) [1336447]
-- [tools] perf script: Exception handling when the print fmt is empty (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix parsing of pmu events with empty list of modifiers (Jiri Olsa) [1336447]
-- [tools] perf jvmti: improve error message in Makefile (Jiri Olsa) [1336447]
-- [tools] perf tools: Use asprintf() for simple string formatting/allocation (Jiri Olsa) [1336447]
-- [tools] perf top: Add --hierarchy option (Jiri Olsa) [1336447]
-- [tools] perf hists: Support decaying in hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf report: Add --hierarchy option (Jiri Olsa) [1336447]
-- [tools] perf ui/gtk: Implement hierarchy output mode (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Align column header in hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Implement hierarchy output (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Support collapsing/expanding whole entries in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Count number of hierarchy entries (Jiri Olsa) [1336447]
-- [tools] perf ui/stdio: Align column header for hierarchy output (Jiri Olsa) [1336447]
-- [tools] perf ui/stdio: Implement hierarchy output mode (Jiri Olsa) [1336447]
-- [tools] perf hists: Count number of sort keys (Jiri Olsa) [1336447]
-- [tools] perf hists: Resort after filtering hierarchy (Jiri Olsa) [1336447]
-- [tools] perf hists: Support filtering in hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce hist_entry__filter() (Jiri Olsa) [1336447]
-- [tools] perf hists: Add helper functions for hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf hists: Resort hist entries with hierarchy (Jiri Olsa) [1336447]
-- [tools] perf hists: Basic support of hierarchical report view (Jiri Olsa) [1336447]
-- [tools] perf tools: Add helper functions for some sort keys (Jiri Olsa) [1336447]
-- [tools] perf tools: Make binary data printer code in trace_event public available (Jiri Olsa) [1336447]
-- [tools] perf script: Display data_src values (Jiri Olsa) [1336447]
-- [tools] perf tools: Change perf_mem__lck_scnprintf to return nb of displayed bytes (Jiri Olsa) [1336447]
-- [tools] perf tools: Change perf_mem__snp_scnprintf to return nb of displayed bytes (Jiri Olsa) [1336447]
-- [tools] perf tools: Change perf_mem__lvl_scnprintf to return nb of displayed bytes (Jiri Olsa) [1336447]
-- [tools] perf tools: Change perf_mem__tlb_scnprintf to return nb of displayed bytes (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce perf_mem__lck_scnprintf function (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce perf_mem__snp_scnprintf function (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce perf_mem__lvl_scnprintf function (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce perf_mem__tlb_scnprintf function (Jiri Olsa) [1336447]
-- [tools] perf mem: Introduce perf_mem_events__name function (Jiri Olsa) [1336447]
-- [tools] perf mem record: Check for memory events support (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove strbuf_{remove, splice}() (Jiri Olsa) [1336447]
-- [tools] perf help: No need to use strbuf_remove() (Jiri Olsa) [1336447]
-- [tools] perf tools: Dont stop PMU parsing on alias parse error (Jiri Olsa) [1336447]
-- [tools] perf script: Display addr/data_src/weight columns for raw events (Jiri Olsa) [1336447]
-- [tools] perf script: Add data_src and weight column definitions (Jiri Olsa) [1336447]
-- [tools] perf tools: Use ARRAY_SIZE in mem sort display functions (Jiri Olsa) [1336447]
-- [tools] perf mem: Add -e record option (Jiri Olsa) [1336447]
-- [tools] perf tools: Add monitored events array (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce cl_offset function (Jiri Olsa) [1336447]
-- [tools] perf tools: Make cl_address global (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Implement '' operation (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix assertion failure on dynamic entry (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix column width setting on 'trace' sort key (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix alignment on some sort keys (Jiri Olsa) [1336447]
-- [tools] perf tools: Update srcline/file if needed (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix segfault on dynamic entries (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove duplicate typedef config_term_func_t definition (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix build on older systems (Jiri Olsa) [1336447]
-- [tools] perf report: Check error during report__collapse_hists() (Jiri Olsa) [1336447]
-- [tools] perf hists: Return error from hists__collapse_resort() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Check return value of append_chain_children() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Check return value of split_add_child() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Add enum match_result for match_chain() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Check return value of fill_node() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Check return value of add_child() (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Fix percentage update on key press (Jiri Olsa) [1336447]
-- [tools] perf tools: Enable config and setting names for legacy cache events (Jiri Olsa) [1336447]
-- [tools] perf tools: Enable config raw and numeric events (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce opt_event_config nonterminal (Jiri Olsa) [1336447]
-- [tools] perf tools: Rename and move pmu_event_name to get_config_name (Jiri Olsa) [1336447]
-- [tools] perf stat: Bail out on unsupported event config modifiers (Jiri Olsa) [1336447]
-- [tools] perf tools: Create config_term_names array (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix checking asprintf return value (Jiri Olsa) [1336447]
-- [tools] perf stat: Handled scaled == -1 case for counters (Jiri Olsa) [1336447]
-- [tools] perf test: Reduce the sample_freq for the 'object code reading' test (Jiri Olsa) [1336447]
-- [tools] perf tests: Use perf_evlist__strerror_open() to provide hints about max_freq (Jiri Olsa) [1336447]
-- [tools] perf evlist: Handle -EINVAL for sample_freq > max_sample_rate in strerror_open() (Jiri Olsa) [1336447]
-- [tools] perf record: Add --all-user/--all-kernel options (Jiri Olsa) [1336447]
-- [tools] perf evlist: Reference count the cpu and thread maps at set_maps() (Jiri Olsa) [1336447]
-- [tools] perf stat: Move noise/running printing into printout (Jiri Olsa) [1336447]
-- [tools] perf stat: Add support for metrics in interval mode (Jiri Olsa) [1336447]
-- [tools] perf stat: Abstract stat metrics printing (Jiri Olsa) [1336447]
-- [tools] perf tools: Add perf data cache feature (Jiri Olsa) [1336447]
-- [tools] perf tools: Initialize libapi debug output (Jiri Olsa) [1336447]
-- [tools] perf debug: Rename __eprintf(va_list args) to veprintf (Jiri Olsa) [1336447]
-- [tools] tools lib api fs: Add sysfs__read_str function (Jiri Olsa) [1336447]
-- [tools] tools lib api fs: Adopt filename__read_str from perf (Jiri Olsa) [1336447]
-- [tools] tools lib api: Add debug output support (Jiri Olsa) [1336447]
-- [tools] perf jvmti: Add check for java alternatives cmd in Makefile (Jiri Olsa) [1336447]
-- [tools] perf tests: Fix build on older systems where 'signal' is reserved (Jiri Olsa) [1336447]
-- [tools] perf data: Fix releasing event_class (Jiri Olsa) [1336447]
-- [tools] perf tools: Rename parse_events__free_terms() to parse_events_terms__delete() (Jiri Olsa) [1336447]
-- [tools] perf tools: Free the terms list_head in parse_events__free_terms() (Jiri Olsa) [1336447]
-- [tools] perf tools: Use perf_event_terms__purge() for non-malloced terms (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce parse_events_terms__purge() (Jiri Olsa) [1336447]
-- [tools] perf tools: Unlink entries from terms list (Jiri Olsa) [1336447]
-- [tools] perf hists: Do column alignment on the format iterator (Jiri Olsa) [1336447]
-- [tools] perf tools: Add comment explaining the repsep_snprintf function (Jiri Olsa) [1336447]
-- [tools] perf python scripting: Append examples to err msg about audit-libs-python (Jiri Olsa) [1336447]
-- [tools] perf build: Add EXTRA_LDFLAGS option to makefile (Jiri Olsa) [1336447]
-- [tools] perf symbols: Fix symbols searching for module in buildid-cache (Jiri Olsa) [1336447]
-- [tools] perf config: Add '--system' and '--user' options to select which config file is used (Jiri Olsa) [1336447]
-- [tools] perf jit: add source line info support (Jiri Olsa) [1336447]
-- [tools] perf tools: add JVMTI agent library (Jiri Olsa) [1336447]
-- [tools] perf inject: Add jitdump mmap injection support (Jiri Olsa) [1336447]
-- [tools] perf inject: Make sure mmap records are ordered when injecting build_ids (Jiri Olsa) [1336447]
-- [tools] perf build: Add libcrypto feature detection (Jiri Olsa) [1336447]
-- [tools] perf symbols: add Java demangling support (Jiri Olsa) [1336447]
-- [tools] perf tools: handle spaces in file names obtained from /proc/pid/maps (Jiri Olsa) [1336447]
-- [tools] perf build tests: Do parallell builds with 'build-test' (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix parallel build including 'clean' target (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'record.build-id' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'kmem.default' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'pager.subcommand' variables in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'man.viewer' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'top.children' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'report' section in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'call-graph' section in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'ui.show-headers' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf build tests: Move the feature related vars to the front of the make cmdline (Jiri Olsa) [1336447]
-- [tools] perf build tests: Elide "-f Makefile" from make invokation (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Add 'L' hotkey to change percent limit (Jiri Olsa) [1336447]
-- [tools] perf report: Update documention of --percent-limit option (Jiri Olsa) [1336447]
-- [tools] perf report: Update documentation of --sort option (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce hists__for_each_sort_list macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce hists__for_each_format macro (Jiri Olsa) [1336447]
-- [tools] perf tools: Add hpp_list into struct hists object (Jiri Olsa) [1336447]
-- [tools] perf hists: Add struct perf_hpp_list argument to helper functions (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__for_each_sort_list_safe macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__for_each_sort_list macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__for_each_format_safe macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__for_each_format macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Pass perf_hpp_list all the way through setup_output_list (Jiri Olsa) [1336447]
-- [tools] perf hists: Add perf_hpp_list register helpers (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__init function (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce struct perf_hpp_list (Jiri Olsa) [1336447]
-- [tools] perf hists: Separate output fields parsing into setup_output_list function (Jiri Olsa) [1336447]
-- [tools] perf hists: Separate sort fields parsing into setup_sort_list function (Jiri Olsa) [1336447]
-- [tools] perf hists: Properly release format fields (Jiri Olsa) [1336447]
-- [tools] perf hists: Remove perf_hpp__column_(disable|enable) (Jiri Olsa) [1336447]
-- [tools] perf hists: Allocate output sort field (Jiri Olsa) [1336447]
-- [tools] perf top: Move UI initialization ahead of sort setup (Jiri Olsa) [1336447]
-- [tools] perf report: Move UI initialization ahead of sort setup (Jiri Olsa) [1336447]
-- [tools] perf hists: Make hpp setup function generic (Jiri Olsa) [1336447]
-- [tools] perf hists: Add 'hpp__equal' callback function (Jiri Olsa) [1336447]
-- [tools] perf hists: Add 'equal' method to perf_hpp_fmt struct (Jiri Olsa) [1336447]
-- [tools] perf hists: Use struct perf_hpp_fmt::idx in perf_hpp__reset_width (Jiri Olsa) [1336447]
-- [tools] perf hists: Add _idx fields into struct perf_hpp_fmt (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_evsel__output_resort function (Jiri Olsa) [1336447]
-- [tools] perf hists: Factor output_resort from hists__output_resort (Jiri Olsa) [1336447]
-- [tools] perf report: Don't show blank lines if entry has no callchain (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Fix percent display in callchains (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Pass parent_total to callchain print functions (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Fix dump to show correct callchain style (Jiri Olsa) [1336447]
-- [tools] perf report: Fix percent display in callchains on --stdio (Jiri Olsa) [1336447]
-- [tools] perf callchain: Pass parent_samples to __callchain__fprintf_graph() (Jiri Olsa) [1336447]
-- [tools] perf report: Get rid of hist_entry__callchain_fprintf() (Jiri Olsa) [1336447]
-- [tools] perf report: Apply --percent-limit to callchains also (Jiri Olsa) [1336447]
-- [tools] perf hists: Update hists' total period when adding entries (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix min callchain hits calculation (Jiri Olsa) [1336447]
-- [tools] perf build: Align the names of the build tests: (Jiri Olsa) [1336447]
-- [tools] perf record: Use OPT_BOOLEAN_SET for buildid cache related options (Jiri Olsa) [1336447]
-- [tools] perf tools: Move timestamp creation to util (Jiri Olsa) [1336447]
-- [tools] perf test: Improve bp_signal (Jiri Olsa) [1336447]
-- [tools] perf buildid: Fix cpumode of buildid event (Jiri Olsa) [1336447]
-- [tools] perf auxtrace: Add perf_evlist pointer to *info_priv_size() (Jiri Olsa) [1336447]
-- [tools] perf tools: Speed up build-tests by reducing the number of builds tested (Jiri Olsa) [1336447]
-- [tools] perf build: Use feature dump file for build-test (Jiri Olsa) [1336447]
-- [tools] perf build: Remove all condition feature check {C, LD}FLAGS (Jiri Olsa) [1336447]
-- [tools] perf build: Fix feature-dump checks, we need to test all features (Jiri Olsa) [1336447]
-- [tools] tools build: Check basic headers for test-compile feature checker (Jiri Olsa) [1336447]
-- [tools] perf cpumap: Auto initialize cpu__max_{node, cpu} (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Skip scripting when perf.data file not available (Jiri Olsa) [1336447]
-- [tools] perf build: Select all feature checkers for feature-dump (Jiri Olsa) [1336447]
-- [tools] tools build: Allow subprojects select all feature checkers (Jiri Olsa) [1336447]
-- [tools] perf test: Fixup aliases checking in the 'vmlinux matches kallsyms' test (Jiri Olsa) [1336447]
-- [tools] perf machine: Introduce machine__find_kernel_symbol_by_name() (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Offer non-symbol specific menu options for --sort without 'sym' (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Be a bit more strict about presenting CPU socket zoom (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Offer 'Zoom into DSO'/'Map details' only when sort order has 'dso' (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Only offer symbol scripting when a symbol is under the cursor (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Only 'Zoom into thread' only when sort order has 'pid' (Jiri Olsa) [1336447]
-- [tools] perf sort: Provide a way to find out if per-thread bucketing is in place (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'hist.percentage' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'annotate' section in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'buildid.dir' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'tui' and 'gtk' sections in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'colors' section in man page (Jiri Olsa) [1336447]
-- [tools] perf annotate: Rename 'colors.code' to 'colors.jump_arrows' (Jiri Olsa) [1336447]
-- [tools] perf tools: Document the perf sysctls (Jiri Olsa) [1336447]
-- [tools] perf hists: Cleanup filtering functions (Jiri Olsa) [1336447]
-- [tools] perf hists: Remove parent filter check in DSO filter function (Jiri Olsa) [1336447]
-- [tools] perf stat: Making several helper functions static (Jiri Olsa) [1336447]
-- [tools] perf symbols: Do not read symbols/data from device files (Jiri Olsa) [1336447]
-- [tools] perf pmu: Fix misleadingly indented assignment (whitespace) (Jiri Olsa) [1336447]
-- [kernel] perf/core: Disable the event on a truncated AUX record (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/pt: Generate PMI in the STOP region as well (Jiri Olsa) [1336447]
-- [x86] perf/x86: Add model numbers for Kabylake CPUs (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel: Fix incorrect lbr_sel_mask value (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/pt: Don't die on VMXON (Jiri Olsa) [1336447]
-- [x86] perf/x86/amd: Set the size of event map array to PERF_COUNT_HW_MAX (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Add missing Haswell model (Jiri Olsa) [1336447]
-- [x86] perf/x86/amd/ibs: Fix pmu::stop() nesting (Jiri Olsa) [1336447]
-- [kernel] perf/core: Don't leak event in the syscall error path (Jiri Olsa) [1336447]
-- [x86] perf/x86/amd: Cleanup Fam10h NB event constraints (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Add missing Broadwell models (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/uncore: Remove ev_sel_ext bit support for PCU (Jiri Olsa) [1336447]
-- [kernel] perf/core: Fix Undefined behaviour in rb_alloc() (Jiri Olsa) [1336447]
-- [x86] perf/x86/ibs: Add IBS interrupt to the dynamic throttle (Jiri Olsa) [1336447]
-- [x86] perf/x86/ibs: Fix race with IBS_STARTING state (Jiri Olsa) [1336447]
-- [x86] perf/x86/ibs: Fix IBS throttle (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Simplify quirk handling even more (Jiri Olsa) [1336447]
-- [kernel] perf/core: Fix perf_sched_count derailment (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Convert it to a per package facility (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Utilize event->pmu_private (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Make PMU lock raw (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Refactor the code some more (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Clean up the printk output (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Calculate timing once (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Sanitize the quirk handling (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Add proper error handling (Jiri Olsa) [1336447]
-
-* Mon May 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-409.el7]
-- [ata] ahci: don't mark HotPlugCapable Ports as external/removable (David Milburn) [1286946]
-- [include] libata: Align ata_device's id on a cacheline (David Milburn) [1286946]
-- [ata] sata_via: Implement hotplug for VT6421 (David Milburn) [1286946]
-- [ata] sata_via: Apply WD workaround only when needed on VT6421 (David Milburn) [1286946]
-- [ata] ahci: Cache host controller version (David Milburn) [1286946]
-- [ata] libata: fix unbalanced spin_lock_irqsave/spin_unlock_irq() in ata_scsi_park_show() (David Milburn) [1286946]
-- [include] libata: fix HDIO_GET_32BIT ioctl (David Milburn) [1286946]
-- [ata] libata: fix sff host state machine locking while polling (David Milburn) [1286946]
-- [ata] libata-sff: use WARN instead of BUG on illegal host state machine state (David Milburn) [1286946]
-- [ata] libata: disable forced PORTS_IMPL for >= AHCI 1.3 (David Milburn) [1286946]
-- [ata] sata_sx4: correctly handling failed allocation (David Milburn) [1286946]
-- [include] libata-eh.c: Introduce new ata port flag for controller which lockup on read log page (David Milburn) [1286946]
-- [ata] sata_sil: disable trim (David Milburn) [1286946]
-- [ata] ahci: Fix softreset failed issue of Port Multiplier (David Milburn) [1286946]
-- [ata] ahci: kill 'intr_status' (David Milburn) [1286946]
-- [ata] ahci: switch from 'threaded' to 'hardirq' interrupt handling (David Milburn) [1286946]
-- [ata] ahci: per-port msix support (David Milburn) [1286946]
-- [ata] ahci: Add Marvell 88se91a2 device id (David Milburn) [1286946]
-- [ata] ahci: cleanup ahci_host_activate_multi_irqs (David Milburn) [1286946]
-- [ata] ahci: ahci_host_activate: kill IRQF_SHARED (David Milburn) [1286946]
-- [ata] libata: enable LBA flag in taskfile for ata_scsi_pass_thru() (David Milburn) [1286946]
-- [ata] libata: add support for NCQ commands for SG interface (David Milburn) [1286946]
-- [ata] pata_it821x: use "const char *" for string literals (David Milburn) [1286946]
-- [ata] libata: cleanup ata_scsi_qc_complete (David Milburn) [1286946]
-- [include] ata: ahci: find eSATA ports and flag them as removable (David Milburn) [1286946]
-- [ata] Add factory recertified Crucial M500s to blacklist (David Milburn) [1286946]
-- [ata] sata_sx4: Check return code from pdc20621_i2c_read() (David Milburn) [1286946]
-- [include] revert "libata: Implement NCQ autosense" (David Milburn) [1286946]
-- [include] revert "libata: Implement support for sense data reporting" (David Milburn) [1286946]
-- [include] revert "libata-eh: Set 'information' field for autosense" (David Milburn) [1286946]
-- [ata] libata: Do not blacklist M510DC (David Milburn) [1286946]
-- [ata] libata: increase the timeout when setting transfer mode (David Milburn) [1286946]
-- [ata] libata: force disable trim for SuperSSpeed S238 (David Milburn) [1286946]
-- [include] libata: add ATA_HORKAGE_NOTRIM (David Milburn) [1286946]
-- [ata] libata: add ATA_HORKAGE_BROKEN_FPDMA_AA quirk for HP 250GB SATA disk VB0250EAVER (David Milburn) [1286946]
-- [ata] libata: Do not blacklist Micron M500DC (David Milburn) [1286946]
-- [ata] ahci, msix: Fix build error for !PCI_MSI (David Milburn) [1286946]
-- [ata] ahci: Add generic MSI-X support for single interrupts to SATA PCI driver (David Milburn) [1286946]
-- [ata] libata: finally use __initconst in ata_parse_force_one() (David Milburn) [1286946]
-- [ata] ahci: Store irq number in struct ahci_host_priv (David Milburn) [1286946]
-- [ata] ahci: Move interrupt enablement code to a separate function (David Milburn) [1286946]
-- [ata] doc: libata: Fix spelling typo found in libata.xml (David Milburn) [1286946]
-- [ata] sata_nv - Change 1 to true for bool type variable (David Milburn) [1286946]
-- [ata] libata: Fix regression when the NCQ Send and Receive log page is absent (David Milburn) [1286946]
-- [ata] hpt366: fix constant cast warning (David Milburn) [1286946]
-- [documentation] libata: Fix sysfs documentation bug (David Milburn) [1286946]
-- [include] libata: Fall back to unqueued READ LOG EXT if the DMA variant fails (David Milburn) [1286946]
-- [include] libata: READ LOG DMA EXT support can be in either page 119 or 120 (David Milburn) [1286946]
-- [ata] libata: Expose TRIM capability in sysfs (David Milburn) [1286946]
-- [ata] libata: Allow NCQ TRIM to be enabled or disabled with a module parameter (David Milburn) [1286946]
-- [include] libata: Ignore spurious PHY event on LPM policy change (David Milburn) [1286946]
-- [include] libata: Add helper to determine when PHY events should be ignored (David Milburn) [1286946]
-- [include] libata: Add tracepoints (David Milburn) [1286946]
-- [include] libata-eh: Set 'information' field for autosense (David Milburn) [1286946]
-- [include] libata: Implement support for sense data reporting (David Milburn) [1286946]
-- [include] libata: Implement NCQ autosense (David Milburn) [1286946]
-- [ata] libata: use status bit definitions in ata_dump_status() (David Milburn) [1286946]
-- [include] ide, ata: Rename ATA_IDX to ATA_SENSE (David Milburn) [1286946]
-- [ata] libata: whitespace fixes in ata_to_sense_error() (David Milburn) [1286946]
-- [ata] libata: whitespace cleanup in ata_get_cmd_descript() (David Milburn) [1286946]
-- [include] libata: use READ_LOG_DMA_EXT (David Milburn) [1286946]
-- [netdrv] fjes: Fix unnecessary spinlock_irqsave (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: update fjes driver version 1.1 (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: Introduce spinlock for rx_status (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: Enhance changing MTU related work (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: fix bitwise check bug in fjes_raise_intr_rxdata_task (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: fix incorrect statistics information in fjes_xmit_frame() (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: optimize timeout value (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: Use resource_size (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: fix inconsistent indenting (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: Delete an unnecessary check before the function call "vfree" (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: fix off-by-one error at fjes_hw_update_zone_task() (Yasuaki Ishimatsu) [1328939]
-
-* Fri May 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-408.el7]
-- [security] capabilities: add a securebit to disable PR_CAP_AMBIENT_RAISE (Paul Moore) [1165316]
-- [security] selftests/capabilities: Add tests for capability evolution (Paul Moore) [1165316]
-- [security] capabilities: ambient capabilities (Paul Moore) [1165316]
-- [powercap] intel_rapl: Add support for Kabylake (David Arcari) [1310935]
-- [virtio] virtio 1.0 cs04 spec compliance for reset ("Michael S. Tsirkin") [1334106]
-- [tools] power turbostat: initial KBL support (David Arcari) [1310931]
-- [idle] intel_idle: Add KBL support (David Arcari) [1310933]
-- [acpi] acpica: dispatcher: Update thread ID for recursive method calls (Prarit Bhargava) [1336832]
-- [x86] pci: Mark Broadwell-EP Home Agent 1 as having non-compliant BARs (Prarit Bhargava) [1334199]
-- [x86] pci: Disable all BAR sizing for devices with non-compliant BARs (Prarit Bhargava) [1334199]
-- [x86] pci: Mark Broadwell-EP Home Agent & PCU as having non-compliant BARs (Prarit Bhargava) [1334199]
-- [x86] pci: Disable IO/MEM decoding for devices with non-compliant BARs (Prarit Bhargava) [1334199]
-- [x86] mm: update memory tracking for criu soft dirty (David Bulkow) [1329312]
-- [mm] Fix kmalloc slab creation sequence (Sterling Alexander) [1324668]
-- [mm] slab_common: support the slub_debug boot option on specific object size (Sterling Alexander) [1324668]
-- [mm] defer flush of writable TLB entries (George Beshers) [727269]
-- [mm] send one IPI per CPU to TLB flush all entries after unmapping pages (George Beshers) [727269]
-- [mm] meminit: initialize enough pages for struct page (George Beshers) [727269]
-- [mm] meminit: use early_pfn_to_nid for page_cgroup_init (George Beshers) [727269]
-- [mm] initialize hotplugged pages as reserved (George Beshers) [727269]
-- [mm] reinit files_stat.max_files after deferred memory initialisation (George Beshers) [727269]
-- [mm] Include file needed for next patch to compile (George Beshers) [727269]
-- [mm] meminit: replace rwsem with completion (George Beshers) [727269]
-- [mm] meminit: allow early_pfn_to_nid to be used during runtime (George Beshers) [727269]
-- [mm] meminit: suppress unused memory variable warning (George Beshers) [727269]
-- [mm] meminit: finish initialisation of struct pages before basic setup (George Beshers) [727269]
-- [mm] meminit: remove mminit_verify_page_links (George Beshers) [727269]
-- [mm] meminit: reduce number of times pageblocks are set during struct page in (George Beshers) [727269]
-- [mm] meminit: free pages in large chunks where possible (George Beshers) [727269]
-- [mm] enable deferred struct page initialisation on x86-64 (George Beshers) [727269]
-- [mm] meminit: minimise number of pfn->page lookups during initialisation (George Beshers) [727269]
-- [mm] meminit: initialise remaining struct pages in parallel with kswapd (George Beshers) [727269]
-- [mm] meminit: initialise a subset of struct pages if CONFIG_DEFERRED_STRUCT_PAGE_INIT is set (George Beshers) [727269]
-- [mm] meminit: inline some helper functions (George Beshers) [727269]
-- [mm] meminit: make __early_pfn_to_nid SMP-safe and introduce meminit_pfn_in_nid (George Beshers) [727269]
-- [mm] remove ifdef condition (George Beshers) [727269]
-- [mm] memblock: binary search node id (George Beshers) [727269]
-- [mm] page_alloc: pass PFN to __free_pages_bootmem (George Beshers) [727269]
-- [mm] bootmem: remove unused local `map' (George Beshers) [727269]
-- [mm] bootmem: remove duplicated declaration of __free_pages_bootmem() (George Beshers) [727269]
-- [mm] nobootmem: have __free_pages_memory() free in larger chunks (George Beshers) [727269]
-- [mm] meminit: only set page reserved in the memblock region (George Beshers) [727269]
-- [mm] memblock: introduce a for_each_reserved_mem_region iterator (George Beshers) [727269]
-- [mm] mem-hotplug: let memblock skip the hotpluggable memory regions in __next_mem_range() (George Beshers) [727269]
-- [mm] meminit: move page initialization into a separate function (George Beshers) [727269]
-
-* Thu May 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-407.el7]
-- [scsi] cxlflash: scsi_change_queue_depth backport (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: lun size in scsi_device (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Move to exponential back-off when cmd_room is not available (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix regression issue with re-ordering patch (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Use new cxl_pci_read_adapter_vpd() API (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Increase cmd_per_lun for better throughput (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid unnecessary scan with internal LUNs (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Reorder user context initialization (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Simplify attach path error cleanup (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Split out context initialization (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Unmap problem state area before detaching master context (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Simplify PCI registration (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Enable device id for future IBM CXL adapter (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Resolve oops in wait_port_offline (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to resolve cmd leak after host reset (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Removed driver date print (Gustavo Duarte) [1182021]
-- [include] cxlflash: Fix to avoid virtual LUN failover failure (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to escalate LINK_RESET also on port 1 (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: drop unlikely before IS_ERR_OR_NULL (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: a couple off by one bugs (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid bypassing context cleanup (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid lock instrumentation rejection (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid corrupting port selection mask (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to escalate to LINK_RESET on login timeout (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid leaving dangling interrupt resources (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid potential deadlock on EEH (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct trace string (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid corrupting adapter fops (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to double the delay each time (Gustavo Duarte) [1182021]
-- [maintainers] maintainers: Add cxlflash driver (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to prevent stale AFU RRQ (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct spelling, grammar, and alignment mistakes (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to prevent EEH recovery failure (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix MMIO and endianness errors (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix function prolog parameters and return codes (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Remove unnecessary scsi_block_requests (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct behavior in device reset handler following EEH (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to prevent workq from accessing freed memory (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct usage of scsi_host_put() (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix AFU version access/storage and add check (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Remove dual port online dependency (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix async interrupt bypass logic (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix host link up event handling (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix location of setting resid (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid stall while waiting on TMF (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid spamming the kernel log (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Refine host/device attributes (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Make functions static (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct naming of limbo state and waitq (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid CXL services during EEH (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix context encode mask width (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid sizeof(bool) (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix data corruption when vLUN used over multiple cards (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix potential oops following LUN removal (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix read capacity timeout (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Replace magic numbers with literals (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid invalid port_sel value (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Remove unused variable from queuecommand (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: shift wrapping bug in afu_link_reset() (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: off by one bug in cxlflash_show_port_status() (Gustavo Duarte) [1182021]
-- [include] cxlflash: Virtual LUN support (Gustavo Duarte) [1182021]
-- [include] cxlflash: Superpipe support (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Base error recovery support (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Base support for IBM CXL Flash Adapter (Gustavo Duarte) [1182021]
-- [netdrv] xen-netfront: use napi_complete() correctly to prevent Rx stalling (Ivan Vecera) [1334372]
-- [netdrv] xen-netfront: convert to GRO API (Ivan Vecera) [1334372]
-- [netdrv] virtio_net: Fix napi poll list corruption (Ivan Vecera) [1334372]
-- [netdrv] caif: Fix napi poll list corruption (Ivan Vecera) [1334372]
-- [netdrv] bgmac: fix requests for extra polling calls from NAPI (Ivan Vecera) [1334372]
-- [netdrv] bgmac: leave interrupts disabled as long as there is work to do (Ivan Vecera) [1334372]
-- [net] Rearrange loop in net_rx_action (Ivan Vecera) [1334372]
-- [net] Always poll at least one device in net_rx_action (Ivan Vecera) [1334372]
-- [net] Detect drivers that reschedule NAPI and exhaust budget (Ivan Vecera) [1334372]
-- [net] Move napi polling code out of net_rx_action (Ivan Vecera) [1334372]
-- [net] less interrupt masking in NAPI (Ivan Vecera) [1334372]
-- [net] route: enforce hoplimit max value (Paolo Abeni) [1313892]
-- [net] netem: Segment GSO packets on enqueue (Neil Horman) [980835]
-- [netdrv] macvlan: resolve ENOENT errors on creation (Ivan Vecera) [1333314]
-- [net] rename sysfs symlinks on device name change (Ivan Vecera) [1333228]
-- [net] add sysfs helpers for netdev_adjacent logic (Ivan Vecera) [1333228]
-
-* Thu May 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-406.el7]
-- [cpufreq] intel_pstate: Update frequencies of policy->cpus only from ->set_policy() (Prarit Bhargava) [1329088]
-- [kernel] kprobes: Add IPMODIFY flag to kprobe_ftrace_ops (Jessica Yu) [1113830]
-- [kernel] ftrace, kprobes: Support IPMODIFY flag to find IP modify conflict (Jessica Yu) [1113830]
-- [x86] kprobes/ftrace: Recover original IP if pre_handler doesn't change it (Jessica Yu) [1113830]
-- [kernel] ftrace: Simplify ftrace_hash_disable/enable path in ftrace_hash_move (Jessica Yu) [1113830]
-- [kernel] ftrace: Use macros for numbers in ftrace rec shift bits (Jessica Yu) [1113830]
-- [netdrv] cnic: call cp->stop_hw() in cnic_start_hw() on allocation failure (Ivan Vecera) [1327015]
-- [virtio] virtio-pci: use possible fallback queue size ("Michael S. Tsirkin") [1320152]
-- [input] synaptics - handle spurious release of trackstick buttons, again (Benjamin Tissoires) [1317809]
-- [nvme] host: Always use MSI/MSI-x interrupts (David Milburn) [1334462]
-- [misc] cxl: Poll for outstanding IRQs when detaching a context (Steve Best) [1332487]
-- [misc] cxl: Keep IRQ mappings on context teardown (Steve Best) [1332487]
-- [netdrv] cxgb4: Set VPD size so we can read both VPD structures (Myron Stowe) [1289561 1332667]
-- [pci] Add pci_set_vpd_size() to set VPD size (Myron Stowe) [1289561 1332667]
-- [pci] Prevent VPD access for buggy devices (Myron Stowe) [1289561 1332667]
-- [pci] Sleep rather than busy-wait for VPD access completion (Myron Stowe) [1289561 1332667]
-- [pci] Fold struct pci_vpd_pci22 into struct pci_vpd (Myron Stowe) [1289561 1332667]
-- [pci] Rename VPD symbols to remove unnecessary "pci22" (Myron Stowe) [1289561 1332667]
-- [pci] Remove struct pci_vpd_ops.release function pointer (Myron Stowe) [1289561 1332667]
-- [pci] Move pci_vpd_release() from header file to pci/access.c (Myron Stowe) [1289561 1332667]
-- [pci] Move pci_read_vpd() and pci_write_vpd() close to other VPD code (Myron Stowe) [1289561 1332667]
-- [pci] Determine actual VPD size on first access (Myron Stowe) [1289561 1332667]
-- [pci] Use bitfield instead of bool for struct pci_vpd_pci22.busy (Myron Stowe) [1289561 1332667]
-- [pci] Allow access to VPD attributes with size 0 (Myron Stowe) [1289561 1332667]
-- [pci] Update VPD definitions (Myron Stowe) [1289561 1332667]
-- [pci] Use kobj_to_dev() instead of open-coding it (Myron Stowe) [1289561 1332667]
-- [netdrv] cxgb4: Set mac addr from vpd, when we can't contact firmware (Myron Stowe) [1289561 1332667]
-- [x86] platform/uv: Fix incorrect nodes and pnodes for cpuless and memoryless nodes (Frank Ramsay) [1276458]
-- [misc] x86/platform/uv: Remove Obsolete GRU MMR address translation (Frank Ramsay) [1276458]
-- [x86] platform/uv: Update physical address conversions for UV4 (Frank Ramsay) [1276458]
-- [x86] platform/uv: Build GAM reference tables (Frank Ramsay) [1276458]
-- [x86] platform/uv: Support UV4 socket address changes (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add obtaining GAM Range Table from UV BIOS (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV4 addressing discovery function (Frank Ramsay) [1276458]
-- [x86] platform/uv: Fold blade info into per node hub info structs (Frank Ramsay) [1276458]
-- [x86] platform/uv: Allocate common per node hub info structs on local node (Frank Ramsay) [1276458]
-- [x86] platform/uv: Move blade local processor ID to the per cpu info struct (Frank Ramsay) [1276458]
-- [x86] platform/uv: Move scir info to the per cpu info struct (Frank Ramsay) [1276458]
-- [x86] platform/uv: Create per cpu info structs to replace per hub info structs (Frank Ramsay) [1276458]
-- [x86] platform/uv: Update MMIOH setup function to work for both UV3 and UV4 (Frank Ramsay) [1276458]
-- [x86] platform/uv: Clean up redunduncies after merge of UV4 MMR definitions (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV4 Specific MMR definitions (Frank Ramsay) [1276458]
-- [x86] platform/uv: Prep for UV4 MMR updates (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV MMR Illegal Access Function (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV4 Specific Defines (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV Architecture Defines (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add Initial UV4 definitions (Frank Ramsay) [1276458]
-- [x86] kvm: vmx: fix nested vpid for old KVM guests (Bandan Das) [1319020]
-- [x86] kvm: vmx: avoid guest hang on invalid invvpid instruction (Bandan Das) [1319020]
-- [x86] kvm: vmx: avoid guest hang on invalid invept instruction (Bandan Das) [1319020]
-- [x86] setup/crash: Check memblock_reserve() retval (Baoquan He) [1241236]
-- [x86] setup/crash: Cleanup some more (Baoquan He) [1241236]
-- [x86] setup/crash: Remove alignment variable (Baoquan He) [1241236]
-- [x86] setup: Cleanup crashkernel reservation functions (Baoquan He) [1241236]
-- [x86] setup: Do not reserve crashkernel high memory if low reservation failed (Baoquan He) [1241236]
-- [x86] perf/x86/cqm: Factor out some common code (Jiri Olsa) [1084618]
-- [x86] perf/x86/mbm: Add support for MBM counter overflow handling (Jiri Olsa) [1084618]
-- [x86] perf/x86/mbm: Implement RMID recycling (Jiri Olsa) [1084618]
-- [x86] perf/x86/mbm: Add memory bandwidth monitoring event management (Jiri Olsa) [1084618]
-- [x86] perf/x86/mbm: Add Intel Memory B/W Monitoring enumeration and init (Jiri Olsa) [1084618]
-- [x86] perf/x86/cqm: Fix CQM memory leak and notifier leak (Jiri Olsa) [1084618]
-- [include] perf/x86/cqm: Fix CQM handling of grouping events into a cache_group (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Use 'u32' data type for RMIDs (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Add storage for 'closid' and clean up 'struct intel_pqr_state' (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Remove useless wrapper function (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Avoid pointless MSR write (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Remove pointless spinlock from state cache (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Document PQR MSR abuse (Jiri Olsa) [1084618]
-- [include] perf/x86/intel/cqm: Use proper data types (Jiri Olsa) [1084618]
-- [x86] topology: Fix logical package mapping (Jiri Olsa) [1084618]
-- [x86] topology: Create logical package id (Jiri Olsa) [1084618]
-- [x86] perf: Fix uncore build (Jiri Olsa) [1330700]
-- [perf] Allow storage of PMU private data in event (Jiri Olsa) [1330700]
-
-* Wed May 18 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-405.el7]
-- [fs] cifs: fix type confusion in copy offload ioctl (Sachin Prabhu) [1335974]
-- [fs] locks: inline posix_lock_file_wait and flock_lock_file_wait (Benjamin Coddington) [1329488]
-- [fs] nfs4: have do_vfs_lock take an inode pointer (Benjamin Coddington) [1329488]
-- [fs] locks: new helpers - flock_lock_inode_wait and posix_lock_inode_wait (Benjamin Coddington) [1329488]
-- [fs] locks: have flock_lock_file take an inode pointer instead of a filp (Benjamin Coddington) [1329488]
-- [fs] revert "nfs: take extra reference to fl->fl_file when running a LOCKU operation" (Benjamin Coddington) [1329488]
-- [fs] ext4: correctly migrate a file with a hole at the beginning (Eryu Guan) [1187078]
-- [fs] ext4: be more strict when migrating to non-extent based file (Eryu Guan) [1187078]
-- [scsi] megaraid_sas: fix kerneldoc (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Downgrade two success messages to info (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: task management code optimizations (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: call ISR function to clean up pending replies in OCR path (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: reduce memory footprints in kdump mode (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: add missing curly braces in ioctl handler (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Don't issue kill adapter for MFI controllers in case of PD list DCMD failure (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Add an i/o barrier (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Fix SMAP issue (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Fix for IO failing post OCR in SRIOV environment (Tomas Henzl) [1262033]
-- [scsi] megaraid: fix null pointer check in megasas_detach_one() (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: SPERC OCR changes (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Introduce module parameter for SCSI command timeout (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: MFI adapter OCR changes (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Make adprecovery variable atomic (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: IO throttling support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Dual queue depth support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Code optimization build_and_issue_cmd return-type (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Reply Descriptor Post Queue (RDPQ) support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Fastpath region lock bypass (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Update device queue depth based on interface type (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Task management support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Syncing request flags macro names with firmware (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: MFI IO timeout handling (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Do not allow PCI access during OCR (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Fix sparse warning (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Make tape drives visible on PERC5 controllers (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Remove debug print from function megasas_update_span_set (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Driver version upgrade (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Make PI enabled VD 8 byte DMA aligned (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Indicate online firmware upgrade support for Secure JBOD feature (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Update OCR capability on controller properties change (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Do not use PAGE_SIZE for max_sectors (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Support for Cutlass (12 Gbps) controller (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Support for Intruder (12 Gbps) controller (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Remove PCI id checks (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Expose TAPE drives unconditionally (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Version update (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Print critical firmware event messages (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Support for max_io_size 1MB (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Code cleanup-use local variable drv_ops inside megasas_ioc_init_fusion (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: JBOD sequence number support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Increase timeout to 60 secs for abort frames during shutdown (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Synchronize driver headers with firmware APIs (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: fix whitespace errors (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: use dev_printk when possible (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: fix TRUE and FALSE re-define build error (Tomas Henzl) [1262033]
-
-* Tue May 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-404.el7]
-- [scsi] st: fix potential null pointer dereference (Maurizio Lombardi) [902531]
-- [scsi] st: Destroy st_index_idr on module exit (Maurizio Lombardi) [902531]
-- [scsi] st: convert DRIVER_ATTR macros to DRIVER_ATTR_RO (Maurizio Lombardi) [902531]
-- [scsi] st: convert to using driver attr groups for sysfs (Maurizio Lombardi) [902531]
-- [scsi] st: implement tape statistics (Maurizio Lombardi) [902531]
-- [scsi] st: convert class code to use dev_groups (Maurizio Lombardi) [902531]
-- [scsi] st: call scsi_set_medium_removal directly (Maurizio Lombardi) [902531]
-- [scsi] mpt3sas: create two binaries from a single source (Tomas Henzl) [1262031]
-- [scsi] mpt3sas - remove unused fw_event_work elements (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Remove usage of 'struct timeval' (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Don't overreach ioc reply_post during initialization (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Remove unnecessary synchronize_irq before free_irq (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Free memory pools before retrying to allocate with different value (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Remove cpumask_clear for zalloc_cpumask_var and don't free free_cpu_mask_var before reply_q (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Updating mpt3sas driver version to 12.100.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Updated MPI Header to 2.00.42 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Add support for configurable Chain Frame Size (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added smp_affinity_enable module parameter (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Make use of additional HighPriority credit message frames for sending SCSI IO's (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Never block the Enclosure device (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Fix static analyzer(coverity) tool identified defects (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Used IEEE SGL instead of MPI SGL while framing a SMP Passthrough request message (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added support for high port count HBA variants (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: A correction in unmap_resources (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: fix Kconfig dependency problem for mpt2sas back compatibility (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Add dummy Kconfig option for backwards compatibility (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Fix use sas_is_tlr_enabled API before enabling MPI2_SCSIIO_CONTROL_TLR_ON flag (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: fix inline markers on non inline function declarations (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Bump mpt3sas driver version to 09.102.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Single driver module which supports both SAS 2.0 & SAS 3.0 HBAs (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: mpt3sas: Update the driver versions (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: setpci reset kernel oops fix (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added OEM Gen2 PnP ID branding names (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Refcount fw_events and fix unsafe list usage (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Refcount sas_device objects and fix unsafe list usage (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: sysfs attribute to report Backup Rail Monitor Status (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Ported WarpDrive product SSS6200 support (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: fix for driver fails EEH, recovery from injected pci bus error (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Manage MSI-X vectors according to HBA device type (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Don't send PHYDISK_HIDDEN RAID action request on SAS2 HBAs (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Build MPI SGL LIST on GEN2 HBAs and IEEE SGL LIST on GEN3 HBAs (Tomas Henzl) [1262031]
-- [scsi] mpt2sas, mpt3sas: Remove SCSI_MPTXSAS_LOGGING entry from Kconfig (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Define 'hba_mpi_version_belonged' IOC variable (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Remove .c and .h files from mpt2sas driver (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Move Gen2 HBA's device registration to a separate file (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Move Gen3 HBA's device registration to a separate file (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added mpt2sas driver definitions (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Use mpi headers from mpt3sas (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: setpci reset kernel oops fix (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Refcount fw_events and fix unsafe list usage (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Refcount sas_device objects and fix unsafe list usage (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Bump mpt3sas driver version to 9.100.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: When device is blocked followed by unblock fails, unfreeze the I/Os (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Call dma_mapping_error() API after mapping an address with dma_map_single() API (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Use alloc_ordered_workqueue() API instead of create_singlethread_workqueue() API (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added support for customer specific branding (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Return host busy error status to SML when DMA mapping of scatter gather list fails for a SCSI command (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Complete the SCSI command with DID_RESET status for log_info value 0x0x32010081 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: MPI 2.5 Rev K (2.5.6) specifications (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Bump mpt3sas driver version to v6.100.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Add branding string support for OEM custom HBA (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Add branding string support for OEM's HBA (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: MPI 2.5 Rev J (2.5.5) specification and 2.00.34 header files (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Update MPI2 strings to MPI2.5 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Bump mpt3sas Driver version to v5.100.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Provides the physical location of sas drives (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: MPI 2.5 Rev I (2.5.4) specifications (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Remove redundancy code while freeing the controller resources (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Don't block the drive when drive addition under the control of SML (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Get IOC_FACTS information using handshake protocol only after HBA card gets into READY or Operational state (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added Combined Reply Queue feature to extend up-to 96 MSIX vector support (Tomas Henzl) [1262031]
-- [scsi] mpt2sas, mpt3sas: Abort initialization if no memory I/O resources detected (Tomas Henzl) [1262031]
-- [scsi] bfa: Update driver version to 3.2.25.0 (Chad Dupuis) [1273082]
-- [scsi] bfa: File header and user visible string changes (Chad Dupuis) [1273082]
-- [scsi] bfa: Updating copyright messages (Chad Dupuis) [1273082]
-- [scsi] bfa: Fix indentation (Chad Dupuis) [1273082]
-- [scsi] qla2xxx: Fix rwlock recursion (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Update the driver version to 8.07.00.33.07.3-k (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Set relogin flag when we fail to queue login requests (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Enable T10-DIF for ISP27XX (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Provide mbx info in BBCR data after mbx failure (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Avoid side effects when using endianizer macros (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add support for Private link statistics counters (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add support for buffer to buffer credit value for ISP27XX (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add support for online flash update for ISP27XX (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Allow fw to hold status before sending ABTS response (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Seed init-cb login timeout from nvram exclusively (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove unneeded link offline message (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add pci device id 0x2261 (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Fix missing device login retries (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add support to show MPI and PEP FW version for ISP27xx (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Do not reset ISP for error entry with an out of range handle (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add adapter checks for FAWWN functionality (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Pause risc before manipulating risc semaphore (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Use ssdid to gate semaphore manipulation (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Handle AEN8014 incoming port logout (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add serdes register read/write support for ISP25xx (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Return the fabric command state for non-task management requests (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Avoid that sparse complains about context imbalances (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove dead code (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove a superfluous test (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Fix sparse annotations (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Avoid that sparse complains about duplicate (noderef) attributes (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove __constant_ prefix (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Replace two macros with an inline function (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove set-but-not-used variables (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Declare local functions static (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Report both rsp_info and rsp_info_len (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Fix indentation (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Comment out unreachable code (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Prevent probe and board_disable race (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Prevent removal and board_disable race (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Schedule board_disable only once (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Collect PCI register checks and board_disable scheduling (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Use qla2x00_clear_drv_active on probe failure (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Disable adapter when we encounter a PCI disconnect (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Fix shost use-after-free on device removal (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Refactor shutdown code so some functionality can be reused (Chad Dupuis) [1273080]
-- [scsi] fnic: Using rport->dd_data to check rport online instead of rport_lookup (Maurizio Lombardi) [1276102]
-- [scsi] fnic: Cleanup the I/O pending with fw and has timed out and is used to issue LUN reset (Maurizio Lombardi) [1276102]
-- [scsi] fnic: Fix to cleanup aborted IO to avoid device being offlined by mid-layer (Maurizio Lombardi) [1276102]
-- [scsi] fnic: Use the local variable instead of I/O flag to acquire io_req_lock in fnic_queuecommand() to avoid deadloack (Maurizio Lombardi) [1276102]
-- [netdrv] vmxnet3: set CHECKSUM_UNNECESSARY for IPv6 packets (Neil Horman) [1329403]
-- [netdrv] vmxnet3: fix lock imbalance in vmxnet3_tq_xmit() (Neil Horman) [1329403]
-- [netdrv] vmxnet3: avoid calling pskb_may_pull with interrupts disabled (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Update Rx ring 2 max size (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Fix regression caused by 5738a09 (Neil Horman) [1329403]
-- [netdrv] vmxnet3: fix checks for dma mapping errors (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Fix use of mfTableLen for big endian architectures (Neil Horman) [1329403]
-- [netdrv] vmxnet3: get rid of unnecessary initializations in .get_drvinfo() (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Extend register dump support (Neil Horman) [1329403]
-- [netdrv] vmxnet3: prevent receive getting out of sequence on napi poll (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Bump up driver version number (Neil Horman) [1329403]
-- [netdrv] be2net: fix BE3-R FW download compatibility check (Ivan Vecera) [1306516]
-- [netdrv] mlx4_en: Fix endianness bug in IPV6 csum calculation (Kamal Heib) [1249733 1325358]
-
-* Tue May 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-403.el7]
-- [x86] mm: Drop WARN from multi-BAR check (Jiri Olsa) [1318419]
-- [mm] fix mlock accouting (Hendrik Brueckner) [1334242]
-- [mm] vmstat: fix overflow in mod_zone_page_state() (Hendrik Brueckner) [1334242]
-- [s390] pci: add extra padding to function measurement block (Hendrik Brueckner) [1330111]
-- [s390] pci: enforce fmb page boundary rule (Hendrik Brueckner) [1330111]
-- [s390] pci: extract software counters from fmb (Hendrik Brueckner) [1330111]
-- [s390] pci: remove pdev pointer from arch data (Hendrik Brueckner) [1330099]
-- [s390] pci_dma: improve debugging of errors during dma map (Hendrik Brueckner) [1330100]
-- [s390] pci_dma: handle dma table failures (Hendrik Brueckner) [1330100]
-- [s390] pci_dma: unify label of invalid translation table entries (Hendrik Brueckner) [1330100]
-- [s390] pci_dma: fix DMA table corruption with > 4 TB main memory (Hendrik Brueckner) [1330112]
-- [s390] pci: use pci_rescan_remove_lock (Hendrik Brueckner) [1330092]
-- [kernel] sched: Fix potential kabi breakage on wait_bit_queue (Benjamin Coddington) [1333024]
-- [watchdog] hpwdt: use nmi_panic() when kernel panics in NMI handler (David Arcari) [1327401]
-- [ipmi] watchdog: use nmi_panic() when kernel panics in NMI handler (David Arcari) [1327401]
-- [kernel] panic: change nmi_panic from macro to function (David Arcari) [1327401]
-- [x86] nmi: Save regs in crash dump on external NMI (David Arcari) [1327401]
-- [x86] apic: Introduce apic_extnmi command line parameter (David Arcari) [1327401]
-- [kernel] kexec: Fix race between panic() and crash_kexec() (David Arcari) [1327401]
-- [kernel] panic, x86: Allow CPUs to save registers even if looping in NMI context (David Arcari) [1327401]
-- [kernel] panic, x86: Fix re-entrance problem due to panic on NMI (David Arcari) [1327401]
-- [kernel] watchdog: keep rhel7 old-behaviour compatibility (David Arcari) [1290573]
-- [x86] re-enable fixup_ht_bug (David Arcari) [1290573]
-- [lib] workqueue: implement lockup detector (David Arcari) [1290573]
-- [kernel] watchdog: introduce touch_softlockup_watchdog_sched() (David Arcari) [1290573]
-- [kernel] watchdog: fix race between proc_watchdog_thresh() and watchdog_timer_fn() (David Arcari) [1290573]
-- [kernel] watchdog: remove {get|put}_online_cpus() from watchdog_{park|unpark}_threads() (David Arcari) [1290573]
-- [kernel] watchdog: avoid races between /proc handlers and CPU hotplug (David Arcari) [1290573]
-- [kernel] watchdog: avoid race between lockup detector suspend/resume and CPU hotplug (David Arcari) [1290573]
-- [kernel] watchdog: add sysctl knob hardlockup_panic (David Arcari) [1290573]
-- [kernel] watchdog: perform all-CPU backtrace in case of hard lockup (David Arcari) [1290573]
-- [kernel] watchdog: do not unpark threads in watchdog_park_threads() on error (David Arcari) [1290573]
-- [kernel] watchdog: implement error handling in lockup_detector_suspend() (David Arcari) [1290573]
-- [kernel] watchdog: implement error handling in update_watchdog_all_cpus() and callers (David Arcari) [1290573]
-- [kernel] watchdog: move watchdog_disable_all_cpus() outside of ifdef (David Arcari) [1290573]
-- [kernel] watchdog: fix error handling in proc_watchdog_thresh() (David Arcari) [1290573]
-- [kernel] watchdog: is_hardlockup can be boolean (David Arcari) [1290573]
-- [kernel] watchdog: rename watchdog_suspend() and watchdog_resume() (David Arcari) [1290573]
-- [kernel] watchdog: use suspend/resume interface in fixup_ht_bug() (David Arcari) [1290573]
-- [kernel] watchdog: use park/unpark functions in update_watchdog_all_cpus() (David Arcari) [1290573]
-- [kernel] watchdog: introduce watchdog_suspend() and watchdog_resume() (David Arcari) [1290573]
-- [kernel] watchdog: introduce watchdog_park_threads() and watchdog_unpark_threads() (David Arcari) [1290573]
-- [kernel] watchdog: move NMI function header declarations from watchdog.h to nmi.h (David Arcari) [1290573]
-- [kernel] watchdog: add watchdog_cpumask sysctl to assist nohz (David Arcari) [1290573]
-- [kernel] smpboot: allow excluding cpus from the smpboot threads (David Arcari) [1290573]
-- [kernel] smpboot: Add common code for notification from dying CPU (David Arcari) [1290573]
-- [kernel] smpboot: Add missing get_online_cpus() in smpboot_register_percpu_thread() (David Arcari) [1290573]
-- [kernel] sched, smp: Correctly deal with nested sleeps (David Arcari) [1290573]
-- [kernel] watchdog: fix double lock in watchdog_nmi_enable_all (David Arcari) [1290573]
-- [kernel] watchdog: Fix merge 'conflict' (David Arcari) [1290573]
-- [kernel] watchdog: introduce the hardlockup_detector_disable() function (David Arcari) [1290573]
-- [kernel] watchdog: clean up some function names and arguments (David Arcari) [1290573]
-- [kernel] watchdog: enable the new user interface of the watchdog mechanism (David Arcari) [1290573]
-- [documentation] watchdog: Document watchdog_thresh sysctl (David Arcari) [1290573]
-- [kernel] watchdog: Disallow setting watchdog_thresh to -1 (David Arcari) [1290573]
-- [kernel] watchdog: implement error handling for failure to set up hardware perf events (David Arcari) [1290573]
-- [kernel] watchdog: introduce separate handlers for parameters in /proc/sys/kernel (David Arcari) [1290573]
-- [kernel] watchdog: introduce proc_watchdog_common() (David Arcari) [1290573]
-- [kernel] watchdog: move definition of 'watchdog_proc_mutex' outside of proc_dowatchdog() (David Arcari) [1290573]
-- [kernel] watchdog: introduce the proc_watchdog_update() function (David Arcari) [1290573]
-- [kernel] watchdog: new definitions and variables, initialization (David Arcari) [1290573]
-- [kernel] softlockup: make detector be aware of task switch of processes hogging cpu (David Arcari) [1290573]
-- [kernel] watchdog: Remove unnecessary header files (David Arcari) [1290573]
-- [kernel] watchdog: convert printk/pr_warning to pr_foo() (David Arcari) [1290573]
-- [kernel] watchdog: remove preemption restrictions when restarting lockup detector (David Arcari) [1290573]
-
-* Mon May 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-402.el7]
-- [thermal] powerclamp: remove cpu whitelist (Steve Best) [1273740]
-- [acpi] srat: fix SRAT parsing order with both LAPIC and X2APIC present (Prarit Bhargava) [1331394]
-- [s390] spinlock: avoid yield to non existent cpu (Hendrik Brueckner) [1334236]
-- [tty] Drop krefs for interrupted tty lock ("Herton R. Krzesinski") [1327403]
-- [tty] rocket: Remove private close_wait ("Herton R. Krzesinski") [1327403]
-- [tty] Retry failed reopen if tty teardown in-progress ("Herton R. Krzesinski") [1327403]
-- [tty] Prevent hw state corruption in exclusive mode reopen ("Herton R. Krzesinski") [1327403]
-- [tty] Wait interruptibly for tty lock on reopen ("Herton R. Krzesinski") [1327403]
-- [tty] Remove wait_event_interruptible_tty() ("Herton R. Krzesinski") [1327403]
-- [tty] r3964: Replace/remove bogus tty lock use ("Herton R. Krzesinski") [1327403]
-- [tty] r3964: Use tty->read_wait waitqueue ("Herton R. Krzesinski") [1327403]
-- [tty] Remove tty_port::close_wait ("Herton R. Krzesinski") [1327403]
-- [tty] usb: gadget: gserial: Privatize close_wait ("Herton R. Krzesinski") [1327403]
-- [tty] usb: gadget: serial: fix re-ordering of tx data ("Herton R. Krzesinski") [1327403]
-- [tty] Remove ASYNC_CLOSING checks in open()/hangup() methods ("Herton R. Krzesinski") [1327403]
-- [tty] Remove tty_hung_up_p() tests from tty drivers' open() ("Herton R. Krzesinski") [1327403]
-- [tty] serial_core: fix uart PORT_UNKNOWN handling ("Herton R. Krzesinski") [1327403]
-- [tty] synclink: avoid sleep_on race ("Herton R. Krzesinski") [1327403]
-- [tty] Remove tty_wait_until_sent_from_close() ("Herton R. Krzesinski") [1327403]
-- [tty] Document locking for tty_port_close{, start, end}() ("Herton R. Krzesinski") [1327403]
-- [tty] Remove warning in tty_lock_slave() ("Herton R. Krzesinski") [1327403]
-- [tty] Fix timeout on pty set ldisc ("Herton R. Krzesinski") [1327403]
-- [tty] Fix hung task on pty hangup ("Herton R. Krzesinski") [1327403]
-- [tty] Prefix tty_ldisc_{lock, lock_nested, unlock} functions ("Herton R. Krzesinski") [1327403]
-- [tty] pty: Don't drop pty master tty lock to hangup slave ("Herton R. Krzesinski") [1327403]
-- [tty] Preset lock subclass for nested tty locks ("Herton R. Krzesinski") [1327403]
-- [tty] Change tty lock order to master->slave ("Herton R. Krzesinski") [1327403]
-- [tty] Simplify tty_release() state checks ("Herton R. Krzesinski") [1327403]
-- [tty] Simplify tty_release_checks() interface ("Herton R. Krzesinski") [1327403]
-- [tty] Simplify tty_ldisc_release() interface ("Herton R. Krzesinski") [1327403]
-- [tty] Fold pty pair handling into tty_flush_works() ("Herton R. Krzesinski") [1327403]
-- [tty] Simplify pty pair teardown logic ("Herton R. Krzesinski") [1327403]
-- [tty] Don't release tty locks for wait queue sanity check ("Herton R. Krzesinski") [1327403]
-- [tty] Don't take tty_mutex for tty count changes ("Herton R. Krzesinski") [1327403]
-- [tty] Remove TTY_CLOSING ("Herton R. Krzesinski") [1327403]
-- [tty] Drop tty_mutex before tty reopen ("Herton R. Krzesinski") [1327403]
-- [tty] Re-open /dev/tty without tty_mutex ("Herton R. Krzesinski") [1327403]
-- [tty] pty: Always return -EIO if slave BSD pty opened first ("Herton R. Krzesinski") [1327403]
-- [tty] Fix use-after-free in pty_common_install ("Herton R. Krzesinski") [1327403]
-- [tty] Merge alloc_tty_struct and initialize_tty_struct ("Herton R. Krzesinski") [1327403]
-- [tty] Check tty->count instead of TTY_CLOSING in tty_reopen() ("Herton R. Krzesinski") [1327403]
-- [tty] Clarify re-open behavior of master ptys ("Herton R. Krzesinski") [1327403]
-- [tty] Remove TTY_HUPPING ("Herton R. Krzesinski") [1327403]
-- [tty] Invert tty_lock/ldisc_sem lock order ("Herton R. Krzesinski") [1327403]
-- [tty] Don't hold tty_lock for ldisc release ("Herton R. Krzesinski") [1327403]
-- [tty] Reset hupped state on open ("Herton R. Krzesinski") [1327403]
-- [tty] Only hangup once ("Herton R. Krzesinski") [1327403]
-- [tty] Fix hangup race with TIOCSETD ioctl ("Herton R. Krzesinski") [1327403]
-- [tty] Clarify ldisc variable ("Herton R. Krzesinski") [1327403]
-
-* Fri May 13 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-401.el7]
-- [scsi] 3w-9xxx: version string touch (Tomas Henzl) [1322447]
-- [scsi] 3w-9xxx: don't unmap bounce buffered commands (Tomas Henzl) [1322447]
-- [scsi] 3w-9xxx: fix command completion race (Tomas Henzl) [1322447]
-- [scsi] lpfc: update version for rhel7.3 to 11.1.0.2 (Rob Evers) [1274910]
-- [scsi] lpfc: remove incorrect lockdep assertion (Rob Evers) [1274910]
-- [scsi] lpfc: fix misleading indentation (Rob Evers) [1274910]
-- [scsi] lpfc: fix missing zero termination in debugfs (Rob Evers) [1274910]
-- [scsi] lpfc: Add lockdep assertions (Rob Evers) [1274910]
-- [scsi] lpfc: Remove redundant code block in lpfc_scsi_cmd_iocb_cmpl (Rob Evers) [1274910]
-- [scsi] lpfc: Grammar s/an negative/a negative/ (Rob Evers) [1274910]
-- [scsi] lpfc: Update modified file copyrights (Rob Evers) [1274910]
-- [scsi] lpfc: Fix interaction between fdmi_on and enable_SmartSAN (Rob Evers) [1274910]
-- [scsi] lpfc: Add support for SmartSAN 2.0 (Rob Evers) [1274910]
-- [scsi] lpfc: Fix Device discovery failures during switch reboot test (Rob Evers) [1274910]
-- [scsi] lpfc: Fix crash when unregistering default rpi (Rob Evers) [1274910]
-- [scsi] lpfc: Fix DMA faults observed upon plugging loopback connector (Rob Evers) [1274910]
-- [scsi] lpfc: Correct LOGO handling during login (Rob Evers) [1274910]
-- [scsi] lpfc: Use kzalloc instead of kmalloc (Rob Evers) [1274910]
-- [scsi] lpfc: Add logging for misconfigured optics (Rob Evers) [1274910]
-- [scsi] lpfc: Fix external loopback failure (Rob Evers) [1274910]
-- [scsi] lpfc: Fix mbox reuse in PLOGI completion (Rob Evers) [1274910]
-- [scsi] lpfc: Use new FDMI speed definitions for 10G, 25G and 40G FCoE (Rob Evers) [1274910]
-- [scsi] lpfc: Make write check error processing more resilient (Rob Evers) [1274910]
-- [scsi] lpfc: Fix RDP ACC being too long (Rob Evers) [1274910]
-- [scsi] lpfc: Fix RDP Speed reporting (Rob Evers) [1274910]
-- [scsi] lpfc: Modularize and cleanup FDMI code in driver (Rob Evers) [1274910]
-- [scsi] lpfc: Fix crash in fcp command completion path (Rob Evers) [1274910]
-- [scsi] lpfc: Fix driver crash when module parameter lpfc_fcp_io_channel set to 16 (Rob Evers) [1274910]
-- [scsi] lpfc: Fix RegLogin failed error seen on Lancer FC during port bounce (Rob Evers) [1274910]
-- [scsi] lpfc: Fix the FLOGI discovery logic to comply with T11 standards (Rob Evers) [1274910]
-- [scsi] lpfc: Fix FCF Infinite loop in lpfc_sli4_fcf_rr_next_index_get (Rob Evers) [1274910]
-- [scsi] lpfc: fix memory leak and NULL dereference (Rob Evers) [1274910]
-- [scsi] lpfc: Fix default RA_TOV and ED_TOV in the FC/FCoE driver for all topologies (Rob Evers) [1274910]
-- [scsi] lpfc: The linux driver does not reinitiate discovery after a failed FLOGI (Rob Evers) [1274910]
-- [scsi] lpfc: Fix for discovery failure in PT2PT when FLOGI's ELS ACC response gets aborted (Rob Evers) [1274910]
-- [scsi] lpfc: Add support for Lancer G6 and 32G FC links (Rob Evers) [1274910]
-- [scsi] lpfc: fix lpfc_send_rscn_event sends bigger buffer size (Rob Evers) [1274910]
-- [scsi] lpfc: remove set but not used variables (Rob Evers) [1274910]
-- [scsi] lpfc: Make the function lpfc_sli4_mbox_completions_pending static in order to comply with function prototype (Rob Evers) [1274910]
-- [scsi] lpfc: Fix kmalloc overflow in LPFC driver at large core count (Rob Evers) [1274910]
-- [scsi] lpfc: Destroy lpfc_hba_index IDR on module exit (Rob Evers) [1274910]
-- [scsi] lpfc: in sli3 use configured sg_seg_cnt for sg_tablesize (Rob Evers) [1274910]
-- [scsi] lpfc: Remove unnessary cast (Rob Evers) [1274910]
-- [scsi] lpfc: fix model description (Rob Evers) [1274910]
-- [scsi] lpfc: Fix possible use-after-free and double free in lpfc_mbx_cmpl_rdp_page_a2() (Rob Evers) [1274910]
-- [scsi] lpfc: Use && instead of & for boolean expression (Rob Evers) [1274910]
-- [scsi] lpfc: Update copyright to 2015 (Rob Evers) [1274910]
-- [scsi] lpfc: Update Copyright on changed files (Rob Evers) [1274910]
-
-* Thu May 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-400.el7]
-- [fs] configfs: fix race between dentry put and lookup (Robert S Peterson) [1333473]
-- [fs] nfsd: use short read as well as i_size to set eof (Benjamin Coddington) [1332694]
-- [mm] vmscan: catch and fix shrinker overflows (Rafael Aquini) [1245773]
-- [i2c] ismt: Add Intel DNV PCI ID (Steve Best) [1334006]
-- [idle] intel_idle: prevent SKL-H boot failure when C8+C9+C10 enabled (Steve Best) [1322358]
-- [acpi] acpica: Remove extraneous error message for large number of GPEs (Prarit Bhargava) [1305532]
-- [s390] kdump: fix wrong BUG_ON() statement (Hendrik Brueckner) [1330093]
-- [s390] zcrypt: HWRNG registration cause kernel panic on CEX hotplug (Hendrik Brueckner) [1330094]
-- [include] pci/msi: Initialize MSI capability for all architectures (Myron Stowe) [1334107]
-- [include] pci: Make pci_msi_setup_pci_dev() non-static for use by arch code (Myron Stowe) [1334107]
-- [pci] pci, parisc: Enable 64-bit bus addresses on PA-RISC (Myron Stowe) [1334107]
-- [pci] Don't use 64-bit bus addresses on PA-RISC (Myron Stowe) [1334107]
-- [pci] Tolerate hierarchies with no Root Port (Myron Stowe) [1334107]
-- [include] pci: Restore PCI_MSIX_FLAGS_BIRMASK definition (Myron Stowe) [1334107]
-- [pci] pciehp: Inline the "handle event" functions into the ISR (Myron Stowe) [1334107]
-- [pci] pciehp: Rename queue_interrupt_event() to pciehp_queue_interrupt_event() (Myron Stowe) [1334107]
-- [pci] pciehp: Make queue_interrupt_event() void (Myron Stowe) [1334107]
-- [pci] pciehp: Clean up debug logging (Myron Stowe) [1334107]
-- [x86] pci: Use host bridge _CRS info on systems with >32 bit addressing (Myron Stowe) [1334107]
-- [include] pci: Remove unused pci_scan_bus_parented() (Myron Stowe) [1334107]
-- [pci] aspm: Simplify Clock Power Management setting (Myron Stowe) [1334107]
-- [x86] pci: Use host bridge _CRS info on Foxconn K8M890-8237A (Myron Stowe) [1334107]
-- [include] pci: Remove unused pci_dma_burst_advice() (Myron Stowe) [1334107]
-- [include] pci: Remove unused pcibios_select_root() (again) (Myron Stowe) [1334107]
-- [x86] pci: Remove unnecessary #includes of <asm/pci.h> (Myron Stowe) [1334107]
-- [s390] pci: Include <linux/pci.h>, not <asm/pci.h> (Myron Stowe) [1334107]
-- [include] pci: Add pci_bus_addr_t (Myron Stowe) [1334107]
-- [pci] Use dev->has_secondary_link to find downstream PCIe links (Myron Stowe) [1334107]
-- [pci] aspm: Use dev->has_secondary_link to find downstream links (Myron Stowe) [1334107]
-- [include] pci: Propagate the "ignore hotplug" setting to parent (Myron Stowe) [1334107]
-- [pci] acpi / hotplug / pci: Check ignore_hotplug for all downstream devices (Myron Stowe) [1334107]
-- [pci] pciehp: Drop pointless label from pciehp_probe() (Myron Stowe) [1334107]
-- [include] pci: Add dev->has_secondary_link to track downstream PCIe links (Myron Stowe) [1334107]
-- [pci] Add function 1 DMA alias quirk for Marvell 9120 (Myron Stowe) [1334107]
-- [pci] aspm: Remove redundant PCIe port type checking (Myron Stowe) [1334107]
-- [include] pci/msi: Remove unused pci_msi_off() (Myron Stowe) [1334107]
-- [pci] msi: Drop pci_msi_off() calls from quirks (Myron Stowe) [1334107]
-- [ntb] Drop pci_msi_off() call during probe (Myron Stowe) [1334107]
-- [virtio] virtio_pci: drop pci_msi_off() call during probe (Myron Stowe) [1334107]
-- [pci] msi: Disable MSI at enumeration even if kernel doesn't support MSI (Myron Stowe) [1334107]
-- [pci] msi: Export pci_msi_set_enable(), pci_msix_clear_and_set_ctrl() (Myron Stowe) [1334107]
-- [pci] msi: Rename msi_set_enable(), msix_clear_and_set_ctrl() (Myron Stowe) [1334107]
-
-* Wed May 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-399.el7]
-- [netdrv] cdc_ncm: do not call usbnet_link_change from cdc_ncm_bind (Torez Smith) [1303955]
-- [netdrv] cdc_ncm: toggle altsetting to force reset before setup (Torez Smith) [1303955]
-- [netdrv] usbnet: cleanup after bind() in probe() (Torez Smith) [1303955]
-- [netdrv] asix: do not free array priv->mdio->irq (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: add Sierra Wireless EM74xx device ID (Torez Smith) [1303955]
-- [usb] qcserial: add Sierra Wireless EM74xx device ID (Torez Smith) [1303955]
-- [usb] revert "usb: serial: add Moxa UPORT 11x0 driver" (Torez Smith) [1303955]
-- [usb] serial: option: add support for Quectel UC20 (Torez Smith) [1303955]
-- [usb] serial: option: add support for Telit LE922 PID 0x1045 (Torez Smith) [1303955]
-- [usb] cp210x: Add ID for Parrot NMEA GPS Flight Recorder (Torez Smith) [1303955]
-- [usb] qcserial: add Dell Wireless 5809e Gobi 4G HSPA+ (rev3) (Torez Smith) [1303955]
-- [netdrv] Add Dell Wireless 5809e Gobi 4G HSPA+ Mobile Broadband Card (rev3) to qmi_wwan (Torez Smith) [1303955]
-- [usb] revert "usb: hub: do not clear BOS field during reset device" (Torez Smith) [1303955]
-- [netdrv] usb: cdc_subset: only build when one driver is enabled (Torez Smith) [1303955]
-- [usb] option: add "4G LTE usb-modem U901" (Torez Smith) [1303955]
-- [usb] cp210x: add IDs for GE B650V3 and B850V3 boards (Torez Smith) [1303955]
-- [usb] option: add support for SIM7100E (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: add "4G LTE usb-modem U901" (Torez Smith) [1303955]
-- [usb] xhci: harden xhci_find_next_ext_cap against device removal (Torez Smith) [1303955]
-- [usb] xhci: Fix list corruption in urb dequeue at host removal (Torez Smith) [1303955]
-- [usb] xhci-mtk: fix AHB bus hang up caused by roothubs polling (Torez Smith) [1303955]
-- [usb] xhci-mtk: fix bpkts value of LS/HS periodic eps not behind TT (Torez Smith) [1303955]
-- [usb] xhci: apply XHCI_PME_STUCK_QUIRK to Intel Broxton-M platforms (Torez Smith) [1303955]
-- [usb] xhci: set SSIC port unused only if xhci_suspend succeeds (Torez Smith) [1303955]
-- [usb] xhci: add a quirk bit for ssic port unused (Torez Smith) [1303955]
-- [usb] xhci: handle both SSIC ports in PME stuck quirk (Torez Smith) [1303955]
-- [usb] revert "xhci: don't finish a TD if we get a short-transfer event mid TD" (Torez Smith) [1303955]
-- [netdrv] lan78xx: throttle TX path at slower than SuperSpeed USB (Torez Smith) [1303955]
-- [netdrv] lan78xx: Add to handle mux control per chip id (Torez Smith) [1303955]
-- [usb] option: fix Cinterion AHxx enumeration (Torez Smith) [1303955]
-- [usb] mxu11x0: fix memory leak on usb_serial private data (Torez Smith) [1303955]
-- [usb] serial: ftdi_sio: add support for Yaesu SCU-18 cable (Torez Smith) [1303955]
-- [usb] serial: option: Adding support for Telit LE922 (Torez Smith) [1303955]
-- [usb] serial: visor: fix crash on detecting device without write_urbs (Torez Smith) [1303955]
-- [usb] visor: fix null-deref at probe (Torez Smith) [1303955]
-- [usb] cp210x: add ID for IAI USB to RS485 adaptor (Torez Smith) [1303955]
-- [usb] hub: do not clear BOS field during reset device (Torez Smith) [1303955]
-- [usb] cdc-acm:exclude Samsung phone 04e8:685d (Torez Smith) [1303955]
-- [usb] cdc-acm: send zero packet for intel 7260 modem (Torez Smith) [1303955]
-- [usb] cdc-acm: handle unlinked urb in acm read callback (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: Add SIMCom 7230E (Torez Smith) [1303955]
-- [netdrv] cdc-acm: fix NULL pointer reference (Torez Smith) [1303955]
-- [netdrv] r8152: adjust ALDPS function (Torez Smith) [1303955]
-- [netdrv] r8152: use test_and_clear_bit (Torez Smith) [1303955]
-- [netdrv] r8152: fix the wake event (Torez Smith) [1303955]
-- [usb] pm: Allow USB devices to remain runtime-suspended when sleeping (Torez Smith) [1303955]
-- [netdrv] net: lan78xx: Fix to write to OTP(One Time Programmable) per magic number (Torez Smith) [1303955]
-- [usb] usbmon: remove assignment from IS_ERR argument (Torez Smith) [1303955]
-- [usb] mxu11x0: drop redundant function name from error messages (Torez Smith) [1303955]
-- [usb] mxu11x0: fix debug-message typos (Torez Smith) [1303955]
-- [usb] mxu11x0: rename usb-serial driver (Torez Smith) [1303955]
-- [usb] mxu11x0: fix modem-control handling on B0-transitions (Torez Smith) [1303955]
-- [usb] mxu11x0: fix memory leak on firmware download (Torez Smith) [1303955]
-- [usb] mxu11x0: fix memory leak in port-probe error path (Torez Smith) [1303955]
-- [usb] serial: add Moxa UPORT 11x0 driver (Torez Smith) [1303955]
-- [usb] cp210x: add ID for ELV Marble Sound Board 1 (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: ignore bogus CDC Union descriptors (Torez Smith) [1303955]
-- [usb] mos7840: remove redundant condition (Torez Smith) [1303955]
-- [usb] io_edgeport: remove redundant conditions (Torez Smith) [1303955]
-- [netdrv] usbnet: allow mini-drivers to consume L2 headers (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: remove 1199:9070 device id (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: MDM9x30 specific power management (Torez Smith) [1303955]
-- [usb] ehci: ohci: fix bool assignments (Torez Smith) [1303955]
-- [usb] xhci: refuse loading if nousb is used (Torez Smith) [1303955]
-- [usb] make "nousb" a clear module parameter (Torez Smith) [1303955]
-- [usb] Add connected retry on resume for non SS devices (Torez Smith) [1303955]
-- [usb] usbmon: Use 64bit timestamp for mon_bin_hdr (Torez Smith) [1303955]
-- [usb] misc: usbtest: Remove timeval usage (Torez Smith) [1303955]
-- [usb] usbmon: Remove timeval usage for timestamp (Torez Smith) [1303955]
-- [include] usb: constify usb_mon_operations structure (Torez Smith) [1303955]
-- [usb] misc: usbtest: improve the description for error message (Torez Smith) [1303955]
-- [usb] uas: no gfp argument to uas_submit_urbs() (Torez Smith) [1303955]
-- [usb] uas: use the BIT() macro (Torez Smith) [1303955]
-- [usb] usb-ehci: Delete unnecessary checks before the function call "dma_pool_destroy" (Torez Smith) [1303955]
-- [usb] replace dma_pool_alloc and memset with dma_pool_zalloc (Torez Smith) [1303955]
-- [usb] xhci: rework xhci extended capability list parsing functions (Torez Smith) [1303955]
-- [usb] xhci: use debug level when printing out interval rounding messages (Torez Smith) [1303955]
-- [usb] xhci: mediatek: support MTK xHCI host controller (Torez Smith) [1303955]
-- [usb] host: xhci: add a platform-private field (Torez Smith) [1303955]
-- [usb] host: xhci: cleanup hcd private size (Torez Smith) [1303955]
-- [usb] xhci: use the correct define to indicate port status suspend change (Torez Smith) [1303955]
-- [usb] ehci: warn on unexpectedly active QH (Torez Smith) [1303955]
-- [usb] ehci: enhance "async" debugfs output (Torez Smith) [1303955]
-- [usb] add usbfs snooping for REAP and DISCARD (Torez Smith) [1303955]
-- [usb] limit usbfs snooping of URB contents (Torez Smith) [1303955]
-- [usb] cp210x: add tx_empty() (Torez Smith) [1303955]
-- [usb] cp210x: work around cp2108 GET_LINE_CTL bug (Torez Smith) [1303955]
-- [usb] cp210x: relocate private data from USB interface to port (Torez Smith) [1303955]
-- [usb] cp210x: flush device queues at close (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: Add WeTelecom-WPD600N (Torez Smith) [1303955]
-- [netdrv] r8152: add reset_resume function (Torez Smith) [1303955]
-- [include] net: cdc_ncm: avoid changing RX/TX buffers on MTU changes (Torez Smith) [1303955]
-- [netdrv] net: usb: cdc_ncm: Adding Dell DW5813 LTE AT&T Mobile Broadband Card (Torez Smith) [1303955]
-- [netdrv] net: usb: cdc_ncm: Adding Dell DW5812 LTE Verizon Mobile Broadband Card (Torez Smith) [1303955]
-- [usb] fix invalid memory access in hub_activate() (Torez Smith) [1303955]
-- [usb] ipaq.c: fix a timeout loop (Torez Smith) [1303955]
-- [include] usb: add quirk for devices with broken LPM (Torez Smith) [1303955]
-- [usb] xhci: fix usb2 resume timing and races (Torez Smith) [1303955]
-- [netdrv] r8152: fix lockup when runtime PM is enabled (Torez Smith) [1303955]
-- [netdrv] net: cdc_mbim: add "NDP to end" quirk for Huawei E3372 (Torez Smith) [1303955]
-- [usb] Quiet down false peer failure messages (Torez Smith) [1303955]
-- [usb] xhci: fix config fail of FS hub behind a HS hub with MTT (Torez Smith) [1303955]
-- [usb] xhci: Fix memory leak in xhci_pme_acpi_rtd3_enable() (Torez Smith) [1303955]
-- [usb] Use the USB_SS_MULT() macro to decode burst multiplier for log message (Torez Smith) [1303955]
-- [usb] whci-hcd: add check for dma mapping error (Torez Smith) [1303955]
-- [usb] core : hub: Fix BOS 'NULL pointer' kernel panic (Torez Smith) [1303955]
-- [usb] quirks: Fix another ELAN touchscreen (Torez Smith) [1303955]
-- [netdrv] net: cdc_ncm: fix NULL pointer deref in cdc_ncm_bind_common (Torez Smith) [1303955]
-- [usb] serial: Another Infineon flash loader USB ID (Torez Smith) [1303955]
-- [usb] cdc_acm: Ignore Infineon Flash Loader utility (Torez Smith) [1303955]
-- [usb] cp210x: Remove CP2110 ID from compatibility list (Torez Smith) [1303955]
-- [usb] usblp: do not set TASK_INTERRUPTIBLE before lock (Torez Smith) [1303955]
-- [usb] option: add XS Stick W100-2 from 4G Systems (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: add XS Stick W100-2 from 4G Systems (Torez Smith) [1303955]
-- [usb] xhci: Fix a race in usb2 LPM resume, blocking U3 for usb2 devices (Torez Smith) [1303955]
-- [usb] xhci: fix checking ep busy for CFC (Torez Smith) [1303955]
-- [netdrv] net: usb: cdc_ether: add Dell DW5580 as a mobile broadband adapter (Torez Smith) [1303955]
-- [usb] qcserial: Fix support for HP lt4112 LTE/HSPA+ Gobi 4G Modem (Torez Smith) [1303955]
-- [usb] ti_usb_3410_5052: Add Honeywell HGI80 ID (Torez Smith) [1303955]
-- [usb] serial: option: add support for Novatel MiFi USB620L (Torez Smith) [1303955]
-- [usb] qcserial: Add support for Quectel EC20 Mini PCIe module (Torez Smith) [1303955]
-- [netdrv] usbnet: remove ifdefed out call to dma_supported (Torez Smith) [1303955]
-- [netdrv] kaweth: remove ifdefed out call to dma_supported (Torez Smith) [1303955]
-- [usb] dma: remove external references to dma_supported (Torez Smith) [1303955]
-- [include] kernel.h: make abs() work with 64-bit types (Torez Smith) [1303955]
-- [netdrv] usb: qmi_wwan: Add quirk for Quectel EC20 Mini PCIe module (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: fix entry for HP lt4112 LTE/HSPA+ Gobi 4G Module (Torez Smith) [1303955]
-- [usb] core: Codestyle fix in urb.c (Torez Smith) [1303955]
-- [usb] misc: usb3503: Use i2c_add_driver helper macro (Torez Smith) [1303955]
-- [usb] qcserial: add Sierra Wireless MC74xx/EM74xx (Torez Smith) [1303955]
-- [usb] hcd: use USB_DT_* (Torez Smith) [1303955]
-- [usb] xhci: configure 32-bit DMA if the controller does not support 64-bit DMA (Torez Smith) [1303955]
-- [usb] xhci: makefile: move xhci-pci and xhci-plat-hcd after xhci-hcd (Torez Smith) [1303955]
-- [usb] xhci: replace custom implementation of readq / writeq (Torez Smith) [1303955]
-- [usb] xhci: create one unified function to calculate TRB TD remainder (Torez Smith) [1303955]
-- [include] usb-gadget: use per-attribute show and store methods (Torez Smith) [1303955]
-- [usb] misc: usbtest: add bulk queue test (Torez Smith) [1303955]
-- [usb] qcserial: update comment for Sierra Wireless MC7304/MC7354 (Torez Smith) [1303955]
-- [usb] revert "usb: qcserial/option: make AT URCs work for Sierra Wireless MC73xx" (Torez Smith) [1303955]
-- [usb] revert "usb: qcserial/option: make AT URCs work for Sierra Wireless MC7305/MC7355" (Torez Smith) [1303955]
-- [usb] qcserial: make AT URCs work for Sierra Wireless devices (Torez Smith) [1303955]
-- [usb] usb_wwan/option: generalize option_send_setup for other drivers (Torez Smith) [1303955]
-- [usb] option: revert introduction of struct option_private (Torez Smith) [1303955]
-- [usb] io_ti: Remove extra blank lines separating functions (Torez Smith) [1303955]
-- [usb] io_ti: Fix non-standard comment formatting (Torez Smith) [1303955]
-- [usb] io_ti: Move request_firmware from edge_startup to download_fw (Torez Smith) [1303955]
-- [usb] io_ti: Move download and boot mode code out of download_fw (Torez Smith) [1303955]
-- [usb] io_ti: Use serial->interface for messages in download_fw (Torez Smith) [1303955]
-- [usb] io_ti: Remove obsolete dev parameter from build_i2c_fw_hdr (Torez Smith) [1303955]
-- [usb] rewrite isd200_init_info for readability (Torez Smith) [1303955]
-- [usb] otg: don't set a_alt_hnp_support feature for OTG 2.0 device (Torez Smith) [1303955]
-- [usb] core: driver: Use kmalloc_array (Torez Smith) [1303955]
-- [usb] message: remove redundant declaration (Torez Smith) [1303955]
-- [usb] uas: also check for ESHUTDOWN in error reporting (Torez Smith) [1303955]
-- [usb] hub: remove redundant declarations (Torez Smith) [1303955]
-- [usb] core: hub: Removed some warnings generated by checkpatch.pl (Torez Smith) [1303955]
-- [usb] xhci: drop null test before destroy functions (Torez Smith) [1303955]
-- [usb] whci: drop null test before destroy functions (Torez Smith) [1303955]
-- [usb] xhci: support new USB 3.1 hub request to get extended port status (Torez Smith) [1303955]
-- [usb] xhci: check xhci hardware for USB 3.1 support (Torez Smith) [1303955]
-- [include] usb: define HCD_USB31 speed option for hosts that support USB 3.1 features (Torez Smith) [1303955]
-- [usb] xhci: define the new default speed ID for SuperSpeedPlus used by xhci hw (Torez Smith) [1303955]
-- [usb] xhci: Add a SuperSpeedPlus capability descriptor for xhci USB 3.1 roothub (Torez Smith) [1303955]
-- [usb] xhci: parse xhci protocol speed ID list for usb 3.1 usage (Torez Smith) [1303955]
-- [include] usb: store the new usb 3.1 SuperSpeedPlus device capability descriptor (Torez Smith) [1303955]
-- [include] usb: Add USB 3.1 SuperSpeedPlus device capability descriptor (Torez Smith) [1303955]
-- [usb] xhci: Read and parse new xhci 1.1 capability register (Torez Smith) [1303955]
-- [netdrv] lan78xx: Return 0 when lan78xx_suspend() has no error (Torez Smith) [1303955]
-- [include] usb: Added forgotten parameter description for authorized attribute in usb.h (Torez Smith) [1303955]
-- [include] usb: phy: change some comments (Torez Smith) [1303955]
-- [usb] misc: usbtest: format the data pattern according to max packet size (Torez Smith) [1303955]
-- [usb] misc: usbtest: using the same data format among write/compare/output (Torez Smith) [1303955]
-- [usb] misc: usbtest: delete useless memset for urbs array (Torez Smith) [1303955]
-- [usb] misc: usbtest: allocate size of urb array according to user parameter (Torez Smith) [1303955]
-- [netdrv] usbnet: remove invalid check (Torez Smith) [1303955]
-- [include] usb: interface authorization: Use a flag for the default device authorization (Torez Smith) [1303955]
-- [usb] interface authorization: SysFS part of USB interface authorization (Torez Smith) [1303955]
-- [usb] interface authorization: Introduces the USB interface authorization (Torez Smith) [1303955]
-- [usb] interface authorization: Control interface probing and claiming (Torez Smith) [1303955]
-- [include] usb: interface authorization: Introduces the default interface authorization (Torez Smith) [1303955]
-- [include] usb: interface authorization: Declare authorized attribute (Torez Smith) [1303955]
-- [netdrv] lan78xx: Remove not defined MAC_CR_GMII_EN_ bit from MAC_CR (Torez Smith) [1303955]
-- [netdrv] lan78xx: Create lan78xx_get_mdix_status() and lan78xx_set_mdix_status() for MDIX control (Torez Smith) [1303955]
-- [netdrv] lan78xx: Remove phy defines in lan78xx.h and use defines in include/linux/microchipphy.h (Torez Smith) [1303955]
-- [netdrv] lan78xx: Update to use phylib instead of mii_if_info (Torez Smith) [1303955]
-- [netdrv] lan78xx: Add PHYLIB and MICROCHIP_PHY as default config (Torez Smith) [1303955]
-- [netdrv] lan78xx: Check device ready bit (PMT_CTL_READY_) after reset the PHY (Torez Smith) [1303955]
-- [netdrv] net: fix cdc-phonet.c dependency and build error (Torez Smith) [1303955]
-- [include] cdc: add header guards (Torez Smith) [1303955]
-- [include] cdc: Fix build warning (Torez Smith) [1303955]
-- [netdrv] cdc-phonet: use common parser (Torez Smith) [1303955]
-- [netdrv] qmi-wwan: use common parser (Torez Smith) [1303955]
-- [netdrv] cdc-ether: switch to common CDC parser (Torez Smith) [1303955]
-- [netdrv] cdc-ncm: use common parser (Torez Smith) [1303955]
-- [include] cdc: common parser for extra headers (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: add Sierra Wireless MC74xx/EM74xx (Torez Smith) [1303955]
-- [netdrv] net: asix: add support for the Billionton GUSB2AM-1G-B USB adapter (Torez Smith) [1303955]
-- [usb] xhci: Add spurious wakeup quirk for LynxPoint-LP controllers (Torez Smith) [1303955]
-- [usb] xhci: handle no ping response error properly (Torez Smith) [1303955]
-- [usb] xhci: don't finish a TD if we get a short transfer event mid TD (Torez Smith) [1303955]
-- [netdrv] net: usb: asix: Fix crash on skb alloc failure (Torez Smith) [1303955]
-- [usb] Add device quirk for Logitech PTZ cameras (Torez Smith) [1303955]
-- [usb] chaoskey read offset bug (Torez Smith) [1303955]
-- [usb] Add reset-resume quirk for two Plantronics usb headphones (Torez Smith) [1303955]
-- [usb] whiteheat: fix potential null-deref at probe (Torez Smith) [1303955]
-- [netdrv] ch9200: Convert to use module_usb_driver (Torez Smith) [1303955]
-- [usb] xhci: init command timeout timer earlier to avoid deleting it uninitialized (Torez Smith) [1303955]
-- [usb] xhci: change xhci 1.0 only restrictions to support xhci 1.1 (Torez Smith) [1303955]
-- [usb] xhci: exit early in xhci_setup_device() if we're halted or dying (Torez Smith) [1303955]
-- [usb] xhci: stop everything on the first call to xhci_stop (Torez Smith) [1303955]
-- [usb] xhci: Clear XHCI_STATE_DYING on start (Torez Smith) [1303955]
-- [usb] xhci: lock mutex on xhci_stop (Torez Smith) [1303955]
-- [usb] xhci: Move xhci_pme_quirk() behind #ifdef CONFIG_PM (Torez Smith) [1303955]
-- [usb] xhci: give command abortion one more chance before killing xhci (Torez Smith) [1303955]
-- [usb] Use the USB_SS_MULT() macro to get the burst multiplier (Torez Smith) [1303955]
-- [netdrv] usbnet: New driver for QinHeng CH9200 devices (Torez Smith) [1303955]
-- [usb] option: add ZTE PIDs (Torez Smith) [1303955]
-- [netdrv] r8152: fix the runtime suspend issues (Torez Smith) [1303955]
-- [netdrv] r8152: split DRIVER_VERSION (Torez Smith) [1303955]
-- [netdrv] usbnet: Fix a race between usbnet_stop() and the BH (Torez Smith) [1303955]
-- [netdrv] lan78xx: Fix ladv/radv error handling in lan78xx_link_reset() (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: Sierra Wireless MC73xx -> Sierra Wireless MC7304/MC7354 (Torez Smith) [1303955]
-- [usb] qcserial: add HP lt4111 LTE/EV-DO/HSPA+ Gobi 4G Module (Torez Smith) [1303955]
-- [usb] ftdi_sio: Added custom PID for CustomWare products (Torez Smith) [1303955]
-- [usb] usb_wwan: silence read errors on disconnect (Torez Smith) [1303955]
-- [usb] option: silence interrupt errors (Torez Smith) [1303955]
-- [usb] symbolserial: Correct transferred data size (Torez Smith) [1303955]
-- [usb] symbolserial: Use usb_get_serial_port_data (Torez Smith) [1303955]
-- [usb] misc: usbtest: format max packet size for iso transfer (Torez Smith) [1303955]
-- [usb] host: ehci-sys: delete useless bus_to_hcd conversion (Torez Smith) [1303955]
-- [include] revert "usb: interface authorization: Declare authorized attribute" (Torez Smith) [1303955]
-- [include] revert "usb: interface authorization: Introduces the default interface authorization" (Torez Smith) [1303955]
-- [usb] revert "usb: interface authorization: Control interface probing and claiming" (Torez Smith) [1303955]
-- [usb] revert "usb: interface authorization: Introduces the USB interface authorization" (Torez Smith) [1303955]
-- [usb] revert "usb: interface authorization: SysFS part of USB interface authorization" (Torez Smith) [1303955]
-- [include] revert "usb: interface authorization: Use a flag for the default device authorization" (Torez Smith) [1303955]
-- [usb] core: hub: Removed some warnings generated by checkpatch.pl (Torez Smith) [1303955]
-- [usb] host: ohci-at91: depend on OF (Torez Smith) [1303955]
-- [include] usb: interface authorization: Use a flag for the default device authorization (Torez Smith) [1303955]
-- [usb] interface authorization: SysFS part of USB interface authorization (Torez Smith) [1303955]
-- [usb] interface authorization: Introduces the USB interface authorization (Torez Smith) [1303955]
-- [usb] interface authorization: Control interface probing and claiming (Torez Smith) [1303955]
-- [include] usb: interface authorization: Introduces the default interface authorization (Torez Smith) [1303955]
-- [include] usb: interface authorization: Declare authorized attribute (Torez Smith) [1303955]
-- [usb] hub: remove assignment from if condition (Torez Smith) [1303955]
-- [usb] endpoint: convert spaces to tabs (Torez Smith) [1303955]
-- [usb] otg_whitelist: remove whitespace (Torez Smith) [1303955]
-- [include] usb: fsl: Workaround for USB erratum-A005275 (Torez Smith) [1303955]
-- [netdrv] lan78xx: Remove BUG_ON() (Torez Smith) [1303955]
-- [netdrv] lan78xx: Fix Smatch Warnings (Torez Smith) [1303955]
-- [include] usb: hcd.h: Fix the values of SetHubDepth and GetPortErrorCount to match USB 3.1 specification (Torez Smith) [1303955]
-- [usb] core: hub.c: Removed some warnings generated by checkpatch.pl (Torez Smith) [1303955]
-- [usb] devio: fix spacing (Torez Smith) [1303955]
-- [usb] xhci: xhci 1.1: Stopped - Short Packet Capability (SPC) (Torez Smith) [1303955]
-- [usb] xhci: xhci 1.1: Contiguous Frame ID Capability (CFC) (Torez Smith) [1303955]
-- [usb] xhci: Add support for URB_ZERO_PACKET to bulk/sg transfers (Torez Smith) [1303955]
-- [usb] xhci: make USB_XHCI_PLATFORM selectable (Torez Smith) [1303955]
-- [usb] misc: ftdi-elan: Simplify return statement (Torez Smith) [1303955]
-- [usb] host: xhci: Simplify return statement (Torez Smith) [1303955]
-- [usb] devio: remove assignment from if condition (Torez Smith) [1303955]
-- [netdrv] r8152: disable the capability of zero length (Torez Smith) [1303955]
-- [netdrv] Microchip's LAN7800 family USB 2/3 to 10/100/1000 Ethernet device driver (Torez Smith) [1303955]
-- [usb] pl2303: fix baud-rate divisor calculations (Torez Smith) [1303955]
-- [include] usb: common: add API to update usb otg capabilities by device tree (Torez Smith) [1303955]
-- [include] usb: otg: add usb_otg_caps structure for otg capabilities (Torez Smith) [1303955]
-- [include] usb: add USB_OTG_ADP definition (Torez Smith) [1303955]
-- [include] usb: add usb_otg20_descriptor for OTG 2.0 and above (Torez Smith) [1303955]
-- [include] usb: fsl: Modify phy clk valid bit checking (Torez Smith) [1303955]
-- [include] usb: fsl: Introduce FSL_USB2_PHY_UTMI_DUAL macro (Torez Smith) [1303955]
-- [include] usb: fsl: Implement Workaround for USB Erratum A007792 (Torez Smith) [1303955]
-- [include] usb: fsl: Replace macros with enumerated type (Torez Smith) [1303955]
-- [usb] usleep_range is preferred over udelay where wakeup is flexible (Torez Smith) [1303955]
-- [usb] usbcore: add sysfs support to xHCI usb3 hardware LPM (Torez Smith) [1303955]
-- [usb] move assignment out of if condition (Torez Smith) [1303955]
-- [usb] host: xhci: remove typo in function documentation (Torez Smith) [1303955]
-- [usb] atm: cxacru: fix blank line after declaration (Torez Smith) [1303955]
-- [usb] class: Use USB_CLASS_PRINTER instead of number 7 (Torez Smith) [1303955]
-- [usb] fix coding style issue (Torez Smith) [1303955]
-- [netdrv] r8152: support the new RTL8153 chip (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: Add support for Dell Wireless 5809e 4G Modem (Torez Smith) [1303955]
-- [usb] serial: ftdi_sio: Fix broken URL in comment (Torez Smith) [1303955]
-- [netdrv] usbnet: Get EVENT_NO_RUNTIME_PM bit before it is cleared (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: add HP lt4111 LTE/EV-DO/HSPA+ Gobi 4G Module (Torez Smith) [1303955]
-- [usb] Delete XHCI command timer if necessary (Torez Smith) [1303955]
-- [usb] xhci: fix off by one error in TRB DMA address boundary check (Torez Smith) [1303955]
-- [netdrv] r8152: reset device when tx timeout (Torez Smith) [1303955]
-- [netdrv] r8152: add pre_reset and post_reset (Torez Smith) [1303955]
-- [usb] sierra: add 1199:68AB device ID (Torez Smith) [1303955]
-- [netdrv] r8152: don't enable napi before rx ready (Torez Smith) [1303955]
-- [netdrv] r8152: fix wakeup settings (Torez Smith) [1303955]
-- [netdrv] r8152: fix the issue about U1/U2 (Torez Smith) [1303955]
-- [usb] cdc-acm: Destroy acm_minors IDR on module exit (Torez Smith) [1303955]
-- [usb] usb-storage: Add ignore-device quirk for gm12u320 based usb mini projectors (Torez Smith) [1303955]
-- [usb] usb-storage: ignore ZTE MF 823 card reader in mode 0x1225 (Torez Smith) [1303955]
-- [usb] ohci: Fix race between ED unlink and URB submission (Torez Smith) [1303955]
-- [usb] core: lpm: set lpm_capable for root hub device (Torez Smith) [1303955]
-- [usb] xhci: do not report PLC when link is in internal resume state (Torez Smith) [1303955]
-- [usb] xhci: prevent bus_suspend if SS port resuming in phase 1 (Torez Smith) [1303955]
-- [usb] xhci: report U3 when link is in resume state (Torez Smith) [1303955]
-- [usb] xhci: Calculate old endpoints correctly on device reset (Torez Smith) [1303955]
-- [usb] xhci: Bugfix for NULL pointer deference in xhci_endpoint_init() function (Torez Smith) [1303955]
-- [usb] xhci: Workaround to get D3 working in Intel xHCI (Torez Smith) [1303955]
-- [usb] xhci: call BIOS workaround to enable runtime suspend on Intel Braswell (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: add the second QMI/network interface for Sierra Wireless MC7305/MC7355 (Torez Smith) [1303955]
-- [usb] ulpi: ulpi_init should be executed in subsys_initcall (Torez Smith) [1303955]
-- [usb] qcserial: Add support for Dell Wireless 5809e 4G Modem (Torez Smith) [1303955]
-- [usb] qcserial/option: make AT URCs work for Sierra Wireless MC7305/MC7355 (Torez Smith) [1303955]
-- [fs] configfs: fix kernel infoleak through user-controlled format string (Torez Smith) [1303955]
-- [usb] serial: Destroy serial_minors IDR on module exit (Torez Smith) [1303955]
-- [netdrv] usb: add device id for NVIDIA Tegra USB 3.0 Ethernet (Torez Smith) [1303955]
-- [usb] cp210x: add ID for Aruba Networks controllers (Torez Smith) [1303955]
-- [usb] mos7720: rename registers (Torez Smith) [1303955]
-- [usb] option: add 2020:4000 ID (Torez Smith) [1303955]
-- [usb] mips: octeon: Set OHCI and EHCI MMIO byte order to match CPU (Torez Smith) [1303955]
-- [usb] cdc-acm: Add support of ATOL FPrint fiscal printers (Torez Smith) [1303955]
-- [usb] usbtmc: add device quirk for Rigol DS6104 (Torez Smith) [1303955]
-- [usb] serial: mos7840: Use setup_timer (Torez Smith) [1303955]
-- [usb] usb, hid: Remove Vernier devices from lsusb and hid_ignore_list (Torez Smith) [1303955]
-- [usb] fsl: Fix compilation error for fsl ehci drv (Torez Smith) [1303955]
-- [include] usb:fsl: Add support for USB controller version-2.5 (Torez Smith) [1303955]
-- [usb] core: Fix USB 3.0 devices lost in NOTATTACHED state after a hub port reset (Torez Smith) [1303955]
-- [include] usb: hcd.h : Removed an unnecessary function prototype usb_find_interface_driver() (Torez Smith) [1303955]
-- [usb] host: xhci: remove incorrect comment about mutex (Torez Smith) [1303955]
-- [usb] xhci: Return correct number of tranferred bytes for stalled control endpoints (Torez Smith) [1303955]
-- [usb] xhci: optimize xhci bus resume time (Torez Smith) [1303955]
-- [usb] xhci: Fix suspend/resume when used with OTG core (Torez Smith) [1303955]
-- [usb] xhci: fix xhci locking up during hcd remove (Torez Smith) [1303955]
-- [usb] xhci: Allow usb_add/remove_hcd() to be called repeatedly (Torez Smith) [1303955]
-- [usb] xhci: cleanup xhci_hcd allocation (Torez Smith) [1303955]
-- [include] usb: phy: add static inline wrapper for devm_usb_get_phy_by_node (Torez Smith) [1303955]
-- [include] usb: phy: Add interface to get phy give of device_node (Torez Smith) [1303955]
-- [include] usb: gadget: net2280: fix use of GPEP in both directions (Torez Smith) [1303955]
-- [include] usb: gadget: net2280: check interrupts for all endpoints (Torez Smith) [1303955]
-- [usb] serial: fix grammar in Kconfig help text for FTDI_SIO (Torez Smith) [1303955]
-- [usb] cdc-acm: use swap() in acm_probe() (Torez Smith) [1303955]
-- [usb] cdc-acm: add support for up to 256 devices (Torez Smith) [1303955]
-- [usb] cdc-acm: use idr to manage minor numbers (Torez Smith) [1303955]
-- [usb] devio: fix a condition in async_completed() (Torez Smith) [1303955]
-- [usb] fsl: Make fsl ehci drv an independent driver module (Torez Smith) [1303955]
-- [scripts] usb: add bus type for USB ULPI (Torez Smith) [1303955]
-- [usb] storage: fix module reference for scsi host (Torez Smith) [1303955]
-- [usb] xusbatm.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] uss720.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] usblp.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] usbatm.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] speedtch.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] sisusb_con.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] sisusb.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] ohci-q.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] ohci-hcd.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] ohci-dbg.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] mon_stat.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] mon_main.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] mon_bin.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] hub.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] hcd.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] ehci-dbg.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] core: buffer: fixed the checkpatch warning (Torez Smith) [1303955]
-- [usb] Enable LPM for USB 2.01+ full-speed devices (Torez Smith) [1303955]
-- [usb] storage: scsiglue: Remove SPRINTF macro use (Torez Smith) [1303955]
-- [usb] don't build PCI quirks if USB support isn't configured (Torez Smith) [1303955]
-- [usb] Set unused ports to "fixed" rather than "unknown" (Torez Smith) [1303955]
-- [usb] Prefer firmware values when determining whether a port is removable (Torez Smith) [1303955]
-- [mm] add dma_pool_zalloc() call to DMA API (Torez Smith) [1303955]
-
-* Wed May 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-398.el7]
-- [powerpc] powernv: Fix OPAL_CONSOLE_FLUSH prototype and usages (Gustavo Duarte) [1313758]
-- [powerpc] powernv: Add a kmsg_dumper that flushes console output on panic (Gustavo Duarte) [1313758]
-- [kernel] change TRACE_EVENT(writeback_dirty_page) to check bdi->dev != NULL (Oleg Nesterov) [1306851] {CVE-2016-3070}
-- [kernel] hrtimer: Prevent remote enqueue of leftmost timers (David Bulkow) [1323752]
-- [s390] sclp: introduce check for SIE (Hendrik Brueckner) [1310710]
-- [s390] kvm: don't load kvm without virtualization support (Hendrik Brueckner) [1310710]
-- [s390] show virtualization support in /proc/cpuinfo (Hendrik Brueckner) [1310710]
-- [s390] sclp: correctly set eca siif bit (Hendrik Brueckner) [1310710]
-- [md] add rdev reference for super write (Xiao Ni) [1312720]
-- [pci] Fix sriov_enable() error path for pcibios_enable_sriov() failures (Myron Stowe) [1332667]
-- [pci] Reorder pcibios_sriov_disable() (Myron Stowe) [1332667]
-- [pci] Set SR-IOV NumVFs to zero after enumeration (Myron Stowe) [1332667]
-- [pci] Clear IORESOURCE_UNSET when clipping a bridge window (Myron Stowe) [1332667]
-- [pci] Preserve resource size during alignment reordering (Myron Stowe) [1332667]
-- [pci] Fix IOV resource sorting by alignment requirement (Myron Stowe) [1332667]
-- [pci] aspm: Drop __pci_disable_link_state() useless "force" parameter (Myron Stowe) [1332667]
-- [pci] Consider additional PF's IOV BAR alignment in sizing and assigning (Myron Stowe) [1332667]
-- [pci] Add pcibios_iov_resource_alignment() interface (Myron Stowe) [1332667]
-- [pci] Add pcibios_sriov_enable() and pcibios_sriov_disable() (Myron Stowe) [1332667]
-- [pci] Calculate maximum number of buses required for VFs (Myron Stowe) [1332667]
-- [pci] Refresh First VF Offset and VF Stride when updating NumVFs (Myron Stowe) [1332667]
-- [pci] Index IOV resources in the conventional style (Myron Stowe) [1332667]
-- [pci] Read capability list as dwords, not bytes (Myron Stowe) [1332667]
-- [pci] Don't clear ASPM bits when the FADT declares it's unsupported (Myron Stowe) [1332667]
-- [pci] Clarify policy for vendor IDs in pci.txt (Myron Stowe) [1332667]
-- [pci] Assign resources before drivers claim devices (pci_scan_root_bus()) (Myron Stowe) [1332667]
-- [pci] Fail pci_ioremap_bar() on unassigned resources (Myron Stowe) [1332667]
-- [pci] Show driver, BAR#, and resource on pci_ioremap_bar() failure (Myron Stowe) [1332667]
-- [pci] Mark invalid BARs as unassigned (Myron Stowe) [1332667]
-- [pci] Assign resources before drivers claim devices (pci_scan_bus()) (Myron Stowe) [1332667]
-- [pci] pnp: Don't check for overlaps with unassigned PCI BARs (Myron Stowe) [1332667]
-- [pci] Add helper functions pci_get[put]_host_bridge_device() (Myron Stowe) [1332667]
-
-* Wed May 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-397.el7]
-- [hid] remove hid_output_raw_report transport implementations (Benjamin Tissoires) [1311883]
-- [hid] usbhid: remove duplicated code (Benjamin Tissoires) [1311883]
-- [hid] hidp: remove duplicated coded (Benjamin Tissoires) [1311883]
-- [hid] i2c-hid: use generic .request() implementation (Benjamin Tissoires) [1311883]
-- [hid] i2c-hid: implement ll_driver transport-layer callbacks (Benjamin Tissoires) [1311883]
-- [hid] sony: do not rely on hid_output_raw_report (Benjamin Tissoires) [1311883]
-- [hid] rmi: remove hdev->hid_output_raw_report() stubs (Benjamin Tissoires) [1311883]
-- [hid] aw: replace hid_output_raw_report() calls by appropriates ones (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Synchronize MT frame on reset_resume (Benjamin Tissoires) [1311883]
-- [hid] multitouch: warn on sysfs group creation failure (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Release all touch slots on reset_resume (Benjamin Tissoires) [1311883]
-- [hid] multitouch: force retrieving of Win8 signature blob (Benjamin Tissoires) [1311883]
-- [hid] fix ignore_special_drivers modparam description (Benjamin Tissoires) [1311883]
-- [hid] fix hid_ignore_special_drivers module parameter (Benjamin Tissoires) [1311883]
-- [hid] core: do not scan reports if the group is already set (Benjamin Tissoires) [1311883]
-- [hid] core: prevent out-of-bound readings (Benjamin Tissoires) [1311883]
-- [hid] fix out of bound access in extract() and implement() (Benjamin Tissoires) [1311883]
-- [hid] multitouch: fix input mode switching on some Elan panels (Benjamin Tissoires) [1311883]
-- [hid] multitouch: enable palm rejection if device implements confidence usage (Benjamin Tissoires) [1311883]
-- [hid] use to_hid_device() (Benjamin Tissoires) [1311883]
-- [hid] expose country code in sysfs (Benjamin Tissoires) [1311883]
-- [hid] move to_hid_device() to hid.h (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Fetch feature reports on demand for Win8 devices (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Add suffix for HID_DG_TOUCHPAD (Benjamin Tissoires) [1311883]
-- [hid] core: Avoid uninitialized buffer access (Benjamin Tissoires) [1311883]
-- [hid] input: allow input_configured callback return errors (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Add support for CJTouch MultiTouch (Benjamin Tissoires) [1311883]
-- [hid] core: do not reject devices when they declare too many usages (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Fix fields from pen report ID being interpreted for multitouch (Benjamin Tissoires) [1311883]
-- [hid] Export hid_field_extract() (Benjamin Tissoires) [1311883]
-- [hid] input: Fix coding style issue (Benjamin Tissoires) [1311883]
-- [hid] input: Simplify conditional expression (Benjamin Tissoires) [1311883]
-- [hid] input: Add parentheses to quell gcc warning (Benjamin Tissoires) [1311883]
-- [hid] remove 2 unused usb.h includes (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Add support for button type usage (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support of clickpads (Benjamin Tissoires) [1311883]
-- [hid] make hid_report_len as a static inline function in hid.h (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Add quirk for VTL touch panels (Benjamin Tissoires) [1311883]
-- [hid] core: cleanup .claimed field on disconnect (Benjamin Tissoires) [1311883]
-- [hid] usbhid: quirk for PM1610 and PM1640 Touchscreen (Benjamin Tissoires) [1311883]
-- [hid] core: add two new usages for digitizer (Benjamin Tissoires) [1311883]
-- [hid] core: fix validation of report id 0 (Benjamin Tissoires) [1311883]
-- [hid] core: fix computation of the report size (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support of EliteGroup 05D8 panels (Benjamin Tissoires) [1311883]
-- [hid] core: do not scan constant input report (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support for Win 8.1 multitouch touchpads (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support of other generic collections in hid-mt (Benjamin Tissoires) [1311883]
-- [hid] multitouch: remove pen special handling (Benjamin Tissoires) [1311883]
-- [hid] multitouch: remove registered devices with default behavior (Benjamin Tissoires) [1311883]
-- [hid] wiimote: replace hid_output_raw_report with hid_hw_output_report for output requests (Benjamin Tissoires) [1311883]
-- [hid] logitech-dj: remove hid_output_raw_report call (Benjamin Tissoires) [1311883]
-- [hid] revert "revert "hid: fix logitech-dj: missing Unifying device issue"" (Benjamin Tissoires) [1311883]
-- [hid] replace hid_output_raw_report with hid_hw_raw_request for feature requests (Benjamin Tissoires) [1311883]
-- [hid] make .raw_request mandatory (Benjamin Tissoires) [1311883]
-- [hid] core: check parameters when sending/receiving data from the device (Benjamin Tissoires) [1311883]
-- [hid] Add HID transport driver documentation (Benjamin Tissoires) [1311883]
-- [hid] input: hid-input remove hid_output_raw_report call (Benjamin Tissoires) [1311883]
-- [hid] core: implement generic .request() (Benjamin Tissoires) [1311883]
-- [hid] introduce helper to access hid_output_raw_report() (Benjamin Tissoires) [1311883]
-- [hid] remove hidinput_input_event handler (Benjamin Tissoires) [1311883]
-- [hid] usbhid: use generic hidinput_input_event() (Benjamin Tissoires) [1311883]
-- [hid] usbhid: update LED fields unlocked (Benjamin Tissoires) [1311883]
-- [hid] usbhid: make usbhid_set_leds() static (Benjamin Tissoires) [1311883]
-- [hid] i2c: use generic hidinput_input_event() (Benjamin Tissoires) [1311883]
-- [hid] uhid: use generic hidinput_input_event() (Benjamin Tissoires) [1311883]
-- [hid] uhid: implement .raw_request (Benjamin Tissoires) [1311883]
-- [hid] uhid: remove duplicated code (Benjamin Tissoires) [1311883]
-- [hid] remove hid_get_raw_report in struct hid_device (Benjamin Tissoires) [1311883]
-- [hid] aw: make comment more accurate and nicer (Benjamin Tissoires) [1311883]
-- [hid] hidp: remove hidp_hidinput_event (Benjamin Tissoires) [1311883]
-- [hid] logitech-dj: remove hidinput_input_event (Benjamin Tissoires) [1311883]
-- [hid] logitech-dj: Fix non-atomic kmalloc in logi_dj_ll_input_event() (Benjamin Tissoires) [1311883]
-- [hid] add inliners for ll_driver transport-layer callbacks (Benjamin Tissoires) [1311883]
-- [hid] Add the transport-driver functions to the HIDP driver (Benjamin Tissoires) [1311883]
-- [hid] bluetooth: hidp: implement hidinput_input_event callback (Benjamin Tissoires) [1311883]
-- [hid] Add the transport-driver function to the uhid driver (Benjamin Tissoires) [1311883]
-- [hid] Add transport-driver functions to the USB HID interface (Benjamin Tissoires) [1311883]
-- [hid] Add transport-driver callbacks to the hid_ll_driver struct (Benjamin Tissoires) [1311883]
-- [hid] fix buffer allocations (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add FocalTech FTxxxx support (Benjamin Tissoires) [1311883]
-- [hid] remove SIS entries from hid_have_special_driver[] (Benjamin Tissoires) [1311883]
-- [hid] add support for SiS multitouch panel in the touch monitor LG 23ET83V (Benjamin Tissoires) [1311883]
-- [hid] usbhid: fix sis quirk (Benjamin Tissoires) [1311883]
-- [hid] usbhid: merge the sis quirk (Benjamin Tissoires) [1311883]
-- [hid] remove self-assignment from hid_input_report (Benjamin Tissoires) [1311883]
-- [hid] Fix unit exponent parsing again (Benjamin Tissoires) [1311883]
-- [hid] core: fix hid delimiter local tag parsing (Benjamin Tissoires) [1311883]
-- [hid] input: generic hidinput_input_event handler (Benjamin Tissoires) [1311883]
-- [hid] do not init input reports for Win 8 multitouch devices (Benjamin Tissoires) [1311883]
-- [hid] detect Win 8 multitouch devices in core (Benjamin Tissoires) [1311883]
-- [hid] Use hid_parser for pre-scanning the report descriptors (Benjamin Tissoires) [1311883]
-- [hid] multitouch: devm conversion (Benjamin Tissoires) [1311883]
-- [hid] explain out-of-range check better (Benjamin Tissoires) [1311883]
-- [hid] fix false positive out of range values (Benjamin Tissoires) [1311883]
-- [hid] core: fix reporting of raw events (Benjamin Tissoires) [1311883]
-- [hid] remove duplicate ID for D-WAV eGalax 0x7224 (Benjamin Tissoires) [1311883]
-- [hid] sort IDs for D-WAV eGalax multitouch devices (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support for Data Modul easyMaxTouch (Benjamin Tissoires) [1311883]
-
-* Tue May 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-396.el7]
-- [powerpc] copro: Fix faulting kernel segments (Gustavo Duarte) [1275967]
-- [misc] cxl: Ignore probes for virtual afu pci devices (Gustavo Duarte) [1275967]
-- [include] cxl: Remove cxl_get_phys_dev() kernel API (Gustavo Duarte) [1275967]
-- [misc] cxl: Add tracepoints around the cxl hcall (Gustavo Duarte) [1275967]
-- [misc] cxl: Adapter failure handling (Gustavo Duarte) [1275967]
-- [include] cxl: Support the cxl kernel API from a guest (Gustavo Duarte) [1275967]
-- [misc] cxl: Parse device tree and create cxl device(s) at boot (Gustavo Duarte) [1275967]
-- [include] cxl: Support to flash a new image on the adapter from a guest (Gustavo Duarte) [1275967]
-- [misc] cxl: sysfs support for guests (Gustavo Duarte) [1275967]
-- [misc] cxl: Add guest-specific code (Gustavo Duarte) [1275967]
-- [misc] cxl: Separate bare-metal fields in adapter and AFU data structures (Gustavo Duarte) [1275967]
-- [misc] cxl: New hcalls to support cxl adapters (Gustavo Duarte) [1275967]
-- [powerpc] New possible return value from hcall (Gustavo Duarte) [1275967]
-- [misc] cxl: IRQ allocation for guests (Gustavo Duarte) [1275967]
-- [misc] cxl: Update cxl_irq() prototype (Gustavo Duarte) [1275967]
-- [misc] cxl: Isolate a few bare-metal-specific calls (Gustavo Duarte) [1275967]
-- [misc] cxl: Rename some bare-metal specific functions (Gustavo Duarte) [1275967]
-- [misc] cxl: Introduce implementation-specific API (Gustavo Duarte) [1275967]
-- [misc] cxl: Define process problem state area at attach time only (Gustavo Duarte) [1275967]
-- [misc] cxl: Move bare-metal specific code to specialized files (Gustavo Duarte) [1275967]
-- [misc] cxl: Move common code away from bare-metal-specific files (Gustavo Duarte) [1275967]
-- [misc] cxl: Increase timeout for detection of AFU mmio hang (Steve Best) [1329682]
-- [x86] Mark Intel Knights Landing-F processor as not supported (Steve Best) [1331516]
-- [block] sysfs/blk-sysfs: fix uninitialized var usage (Ewan Milne) [1301477]
-- [kernel] ftrace: Update dynamic ftrace calls only if necessary (Jiri Olsa) [1255039]
-- [kernel] ftrace: Make ftrace_hash_rec_enable return update bool (Jiri Olsa) [1255039]
-- [kernel] nohz: Fix !HIGH_RES_TIMERS hang (Prarit Bhargava) [1329357]
-- [netdrv] myri10ge: fix sleeping with bh disabled (Stanislaw Gruszka) [1287506]
-- [netdrv] ixgbevf: fix spoofed packets with random MAC (Ken Cox) [1247345]
-- [netdrv] ixgbevf: use ether_addr_copy instead of memcpy (Ken Cox) [1247345]
-- [cpufreq] powernv: Define per_cpu chip pointer to optimize hot-path (Steve Best) [1329176]
-- [cpufreq] powernv: Fix bugs in powernv_cpufreq_{init/exit} (Steve Best) [1329176]
-- [cpufreq] powernv: Replace pr_info with trace print for throttle event (Steve Best) [1329176]
-- [cpufreq] powernv/tracing: Add powernv_throttle tracepoint (Steve Best) [1329176]
-- [cpufreq] powernv: Remove cpu_to_chip_id() from hot-path (Steve Best) [1329176]
-- [cpufreq] powernv: Free 'chips' on module exit (Steve Best) [1329176]
-
-* Mon May 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-395.el7]
-- [x86] compat: Add missing CLAC to entry_INT80_32 (Lauro Ramos Venancio) [1316055]
-- [net] netfilter: x_tables: enforce nul-terminated table name from getsockopt GET_ENTRIES (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: make sure e->next_offset covers remaining blob size (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] ipv4/fib: don't warn when primary address is missing if in_dev is dead (Paolo Abeni) [1318271] {CVE-2016-3156}
-- [net] ipv4: Don't do expensive useless work during inetdev destroy (Paolo Abeni) [1318271] {CVE-2016-3156}
-- [net] bridge: fdb: rearrange net_bridge_fdb_entry (Jakub Sitnicki) [1311131]
-- [net] ipv6: Count in extension headers in skb->network_header (Jakub Sitnicki) [1323716]
-- [net] if_link: Add control trust VF (Jakub Sitnicki) [1302101]
-- [net] rtnetlink: verify IFLA_VF_INFO attributes before passing them to driver (Jakub Sitnicki) [1302101]
-- [net] ip6_tunnel: set rtnl_link_ops before calling register_netdevice (Thadeu Lima de Souza Cascardo) [1306774]
-- [net] ipvs: correct initial offset of Call-ID header search in SIP persistence engine (Paolo Abeni) [1322716]
-- [net] ipvs: allow rescheduling after RST (Paolo Abeni) [1322716]
-- [net] ipvs: drop first packet to redirect conntrack (Paolo Abeni) [1322716]
-- [net] ipvs: handle ip_vs_fill_iph_skb_off failure (Paolo Abeni) [1322716]
-- [net] ipvs: replace ip_vs_fill_ip4hdr with ip_vs_fill_iph_skb_off (Paolo Abeni) [1322716]
-- [net] tuntap: restore default qdisc (Phil Sutter) [1152231]
-- [net] IFF_NO_QUEUE: Fix for drivers not calling ether_setup() (Phil Sutter) [1152231]
-- [net] macvlan: convert to use IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] qdisc: enhance default_qdisc documentation (Phil Sutter) [1152231]
-- [net] sched: simplify attach_one_default_qdisc() (Phil Sutter) [1152231]
-- [net] sched: register noqueue qdisc (Phil Sutter) [1152231]
-- [net] sched: ignore tx_queue_len when assigning default qdisc (Phil Sutter) [1152231]
-- [net] fix IFF_NO_QUEUE for drivers using alloc_netdev (Phil Sutter) [1152231]
-- [net] sched: drop all special handling of tx_queue_len == 0 (Phil Sutter) [1152231]
-- [net] net_sched: gred: add TCA_GRED_LIMIT attribute (Phil Sutter) [1152231]
-- [net] warn if drivers set tx_queue_len = 0 (Phil Sutter) [1152231]
-- [net] bonding: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] bridge: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] 8021q: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] vxlan: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] team: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] nlmon: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] loopback: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] allow setting mac address of loopback device (Phil Sutter) [1152231]
-- [net] dummy: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] veth: enable noqueue operation by default (Phil Sutter) [1152231]
-- [net] sch_generic: react upon IFF_NO_QUEUE flag (Phil Sutter) [1152231]
-- [net] declare new net_device priv_flag IFF_NO_QUEUE (Phil Sutter) [1152231]
-
-* Fri May 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-394.el7]
-- [hv] vmbus: handle various crash scenarios (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: Support kexec on ws2012 r2 and above (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: avoid unneeded compiler optimizations in vmbus_wait_for_unload() (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: remove code duplication in message handling (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: avoid wait_for_completion() on crash (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: don't manipulate with clocksources on crash (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: avoid scheduling in interrupt context in vmbus_initiate_unload() (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: do cleanup on all vmbus_open() failure paths (Vitaly Kuznetsov) [1298093]
-- [scsi] vmw_pvscsi: Fix the issue of DMA-API related warnings (Ewan Milne) [1287291]
-- [block] mtip32xx: remove unneeded variable in mtip_cmd_timeout() (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Cleanup queued requests after surprise removal (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Implement timeout handler (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Handle FTL rebuild failure state during device initialization (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Handle safe removal during IO (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Fix for rmmod crash when drive is in FTL rebuild (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Avoid issuing standby immediate cmd during FTL rebuild (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Print exact time when an internal command is interrupted (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Remove unwanted code from taskfile error handler (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Fix broken service thread handling (David Milburn) [1269525 1273618 1284383]
-- [block] mtip32xx: restrict variables visible in current code module (David Milburn) [1269525 1273618]
-- [block] mtip32xx: don't open-code memdup_user() (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Fix accessing freed memory (David Milburn) [1269525 1273618]
-- [block] mtip32xx: increase wait time for hba reset (David Milburn) [1269525 1273618]
-- [block] mtip32xx: fix minor number (David Milburn) [1269525 1273618]
-- [block] mtip32xx: remove unnecessary sleep in mtip_ftl_rebuild_poll() (David Milburn) [1269525 1273618]
-- [block] mtip32xx: fix crash on surprise removal of the drive (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Abort I/O during secure erase operation (David Milburn) [1269525 1273618]
-- [block] mtip32xx: fix incorrectly setting MTIP_DDF_SEC_LOCK_BIT (David Milburn) [1269525 1273618]
-- [block] mtip32xx: remove unused variable 'port->allocated' (David Milburn) [1269525 1273618]
-- [block] mtip32xx: fix rmmod issue (David Milburn) [1269525 1273618]
-
-* Thu May 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-393.el7]
-- [netdrv] e1000: Double Tx descriptors needed check for 82544 (Jarod Wilson) [1274170]
-- [netdrv] e1000: Do not overestimate descriptor counts in Tx pre-check (Jarod Wilson) [1274170]
-- [netdrv] e1000: Elementary checkpatch warnings and checks removed (Jarod Wilson) [1274170]
-- [netdrv] e1000: get rid of duplicate exit path (Jarod Wilson) [1274170]
-- [netdrv] e1000: fix kernel-doc argument being missing (Jarod Wilson) [1274170]
-- [netdrv] e1000: fix a typo in the comment (Jarod Wilson) [1274170]
-- [netdrv] e1000: clean up the checking logic (Jarod Wilson) [1274170]
-- [netdrv] e1000: Remove checkpatch coding style errors (Jarod Wilson) [1274170]
-- [netdrv] e1000: fix data race between tx_ring->next_to_clean (Jarod Wilson) [1274170]
-- [netdrv] e1000: make eeprom read/write scheduler friendly (Jarod Wilson) [1274170]
-- [netdrv] e1000: get rid of unnecessary initializations in .get_drvinfo() (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove dead e1000_init_eeprom_params calls (Jarod Wilson) [1274170]
-- [netdrv] e1000: Use napi_alloc_skb (Jarod Wilson) [1274170]
-- [netdrv] e1000: Use eth_skb_pad and skb_put_padto helpers (Jarod Wilson) [1274170]
-- [netdrv] e1000: unset IFF_UNICAST_FLT on WMware 82545EM (Jarod Wilson) [1274170]
-- [netdrv] e1000: switch to napi_gro_frags api (Jarod Wilson) [1274170]
-- [netdrv] e1000: convert to build_skb (Jarod Wilson) [1274170]
-- [netdrv] e1000: rename struct e1000_buffer to e1000_tx_buffer (Jarod Wilson) [1274170]
-- [netdrv] e1000: add and use e1000_rx_buffer info for Rx (Jarod Wilson) [1274170]
-- [netdrv] e1000: perform copybreak ahead of DMA unmap (Jarod Wilson) [1274170]
-- [netdrv] e1000: move tbi workaround code into helper function (Jarod Wilson) [1274170]
-- [netdrv] e1000: move e1000_tbi_adjust_stats to where its used (Jarod Wilson) [1274170]
-- [netdrv] e1000: e1000_ethertool.c coding style fixes (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove unnecessary break after return (Jarod Wilson) [1274170]
-- [netdrv] e1000: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Jarod Wilson) [1274170]
-- [netdrv] e1000: Use time_after() for time comparison (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove the check: skb->len<=0 (Jarod Wilson) [1274170]
-- [netdrv] e1000: Use is_broadcast_ether_addr/is_multicast_ether_addr helpers (Jarod Wilson) [1274170]
-- [netdrv] e1000: get rid of SET_ETHTOOL_OPS (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove open-coded skb_cow_head (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove debug messages with function names (Jarod Wilson) [1274170]
-- [netdrv] e1000: delete non-required instances of include <linux/init.h> (Jarod Wilson) [1274170]
-
-* Thu May 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-392.el7]
-- [netdrv] fm10k: use napi_complete_done() (Neil Horman) [1274178]
-- [netdrv] fm10k: get rid of unnecessary initializations in .get_drvinfo() (Neil Horman) [1274178]
-- [netdrv] fm10k: do not use enum as boolean (Neil Horman) [1274178]
-- [netdrv] fm10k: use snprintf() instead of sprintf() to avoid buffer overflow (Neil Horman) [1274178]
-- [netdrv] fm10k: add support for extra debug statistics (Neil Horman) [1274178]
-- [netdrv] fm10k: TRIVIAL remove unnecessary comma (Neil Horman) [1274178]
-- [netdrv] fm10k: create "correct" header for the remote end on connect (Neil Horman) [1274178]
-- [netdrv] fm10k: drop transmitted messages in Tx FIFO as part of reset_work (Neil Horman) [1274178]
-- [netdrv] fm10k: remove comment about rtnl_lock around mbx operations (Neil Horman) [1274178]
-- [netdrv] fm10k: fix iov_msg_mac_vlan_pf VID checks (Neil Horman) [1274178]
-- [netdrv] fm10k: Only trigger data path reset if fabric is up (Neil Horman) [1274178]
-- [netdrv] fm10k: re-enable VF after a full reset on detection of a Malicious event (Neil Horman) [1274178]
-- [netdrv] fm10k: TRIVIAL fix typo in fm10k_netdev.c (Neil Horman) [1274178]
-- [netdrv] fm10k: send traffic on default VID to VLAN device if we have one (Neil Horman) [1274178]
-- [netdrv] fm10k: TRIVIAL fix up ordering of __always_unused and style (Neil Horman) [1274178]
-- [netdrv] fm10k: remove is_slot_appropriate (Neil Horman) [1274178]
-- [netdrv] fm10k: don't store sw_vid at reset (Neil Horman) [1274178]
-- [netdrv] fm10k: allow creation of VLAN interfaces even while down (Neil Horman) [1274178]
-- [netdrv] fm10k: Report MAC address on driver load (Neil Horman) [1274178]
-- [netdrv] fm10k: Don't assume page fragments are page size (Neil Horman) [1274178]
-- [netdrv] fm10k: update netdev perm_addr during reinit, instead of at up (Neil Horman) [1274178]
-- [netdrv] fm10k: update fm10k_slot_warn to use pcie_get_minimum link (Neil Horman) [1274178]
-- [netdrv] fm10k: only prevent removal of default VID rules (Neil Horman) [1274178]
-- [netdrv] fm10k: disable service task during suspend (Neil Horman) [1274178]
-- [netdrv] fm10k: Fix missing braces after if statement (Neil Horman) [1274178]
-- [netdrv] fm10k: fix iov_msg_lport_state_pf issue (Neil Horman) [1274178]
-- [netdrv] fm10k: remove err_no reference in fm10k_mbx.c (Neil Horman) [1274178]
-- [netdrv] fm10k: fix incorrect DIR_NEVATIVE bit in 1588 code (Neil Horman) [1274178]
-- [netdrv] fm10k: pack TLV overlay structures (Neil Horman) [1274178]
-- [netdrv] fm10k: re-map all possible VF queues after a VFLR (Neil Horman) [1274178]
-- [netdrv] fm10k: force LPORT delete when updating VLAN or MAC address (Neil Horman) [1274178]
-- [netdrv] fm10k: use dma_set_mask_and_coherent in fm10k_probe (Neil Horman) [1274178]
-- [netdrv] fm10k: trivial fixup message style to include a colon (Neil Horman) [1274178]
-- [netdrv] fm10k: remove extraneous NULL check on l2_accel (Neil Horman) [1274178]
-- [netdrv] fm10k: use an unsigned int for i in ethtool_get_strings (Neil Horman) [1274178]
-- [netdrv] fm10k: add call to fm10k_clean_all_rx_rings in fm10k_down (Neil Horman) [1274178]
-- [netdrv] fm10k: fix incorrect free on skb in ts_tx_enqueue (Neil Horman) [1274178]
-- [netdrv] fm10k: move setting shinfo inside ts_tx_enqueue (Neil Horman) [1274178]
-- [netdrv] fm10k: use correct ethernet driver Tx timestamp function (Neil Horman) [1274178]
-- [netdrv] fm10k: ignore invalid multicast address entries (Neil Horman) [1274178]
-- [netdrv] fm10k: fold fm10k_pull_tail into fm10k_add_rx_frag (Neil Horman) [1274178]
-- [netdrv] fm10k: Do not assume budget will never be 0 for NAPI (Neil Horman) [1274178]
-
-* Thu May 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-391.el7]
-- [misc] cxl: Fix PSL timebase synchronization detection (Gustavo Duarte) [1275968]
-- [misc] cxl: use kobj_to_dev() (Gustavo Duarte) [1275968]
-- [misc] cxl: Enable PCI device ID for future IBM CXL adapter (Gustavo Duarte) [1275968]
-- [misc] cxl: use -Werror only with CONFIG_PPC_WERROR (Gustavo Duarte) [1275968]
-- [misc] cxl: fix build for GCC 4.6.x (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix DSI misses when the context owning task exits (Gustavo Duarte) [1275968]
-- [misc] cxl: Set endianess of kernel contexts (Gustavo Duarte) [1275968]
-- [misc] cxl: use correct operator when writing pcie config space values (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix possible idr warning when contexts are released (Gustavo Duarte) [1275968]
-- [misc] cxl: Free virtual PHB when removing (Gustavo Duarte) [1275968]
-- [powerpc] pci: export pcibios_free_controller() (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix number of allocated pages in SPA (Gustavo Duarte) [1275968]
-- [misc] cxl: Workaround malformed pcie packets on some cards (Gustavo Duarte) [1275968]
-- [misc] cxl: fix leak of ctx->mapping when releasing kernel API contexts (Gustavo Duarte) [1275968]
-- [misc] cxl: fix leak of ctx->irq_bitmap when releasing context via kernel API (Gustavo Duarte) [1275968]
-- [misc] cxl: fix leak of IRQ names in cxl_free_afu_irqs() (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix lockdep warning while creating afu_err_buff attribute (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix build failure due to -Wunused-variable behaviour change (Gustavo Duarte) [1275968]
-- [misc] cxl: abort cxl_pci_enable_device_hook() if PCI channel is offline (Gustavo Duarte) [1275968]
-- [misc] cxl: Set up and enable PSL Timebase (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix force unmapping mmaps of contexts allocated through the kernel api (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix + cleanup error paths in cxl_dev_context_init (Gustavo Duarte) [1275968]
-- [misc] cxl: Remove racy attempt to force EEH invocation in reset (Gustavo Duarte) [1275968]
-- [misc] cxl: Release irqs if memory allocation fails (Gustavo Duarte) [1275968]
-- [misc] cxl: Remove use of macro DEFINE_PCI_DEVICE_TABLE (Gustavo Duarte) [1275968]
-- [misc] cxl: Allow release of contexts which have been OPENED but not STARTED (Gustavo Duarte) [1275968]
-- [include] cxl: Add alternate MMIO error handling (Gustavo Duarte) [1275968]
-- [misc] cxl: Plug irq_bitmap getting leaked in cxl_context (Gustavo Duarte) [1275968]
-- [misc] cxl: Add CONFIG_CXL_EEH symbol (Gustavo Duarte) [1275968]
-- [misc] cxl: EEH support (Gustavo Duarte) [1275968]
-- [include] cxl: Allow the kernel to trust that an image won't change on PERST (Gustavo Duarte) [1275968]
-- [misc] cxl: Don't remove AFUs/vPHBs in cxl_reset (Gustavo Duarte) [1275968]
-- [misc] cxl: Refactor AFU init/teardown (Gustavo Duarte) [1275968]
-- [misc] cxl: Refactor adaptor init/teardown (Gustavo Duarte) [1275968]
-- [misc] cxl: Clean up adapter MMIO unmap path (Gustavo Duarte) [1275968]
-- [misc] cxl: Make IRQ release idempotent (Gustavo Duarte) [1275968]
-- [misc] cxl: Allocate and release the SPA with the AFU (Gustavo Duarte) [1275968]
-- [misc] cxl: Drop commands if the PCI channel is not in normal state (Gustavo Duarte) [1275968]
-- [misc] cxl: Convert MMIO read/write macros to inline functions (Gustavo Duarte) [1275968]
-- [misc] cxl: sparse: Silence iomem warning in debugfs file creation (Gustavo Duarte) [1275968]
-- [misc] cxl: sparse: Make declarations static (Gustavo Duarte) [1275968]
-- [misc] cxl: Compile with -Werror (Gustavo Duarte) [1275968]
-- [misc] cxl: Don't ignore add_process_element() result when attaching context (Gustavo Duarte) [1275968]
-- [misc] cxl: clean up afu_read_config() (Gustavo Duarte) [1275968]
-- [misc] cxl: Destroy afu->contexts_idr on release of an afu (Gustavo Duarte) [1275968]
-- [misc] cxl: Destroy cxl_adapter_idr on module_exit (Gustavo Duarte) [1275968]
-- [misc] cxl: use more common format specifier (Gustavo Duarte) [1275968]
-- [misc] cxl: Add explicit precision specifiers (Gustavo Duarte) [1275968]
-- [misc] cxl: Check if afu is not null in cxl_slbia (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix off by one error allowing subsequent mmap page to be accessed (Gustavo Duarte) [1275968]
-- [misc] cxl: Fail mmap if requested mapping is larger than assigned problem state area (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix refcounting in kernel API (Gustavo Duarte) [1275968]
-- [misc] cxl: Test the correct mmio space before unmapping (Gustavo Duarte) [1275968]
-- [misc] cxl/vphb.c: Use phb pointer after NULL check (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix typo in debug print (Gustavo Duarte) [1275968]
-- [misc] cxl: Add CXL_KERNEL_API config option (Gustavo Duarte) [1275968]
-- [misc] cxl: Reset default context for vPHB on release (Gustavo Duarte) [1275968]
-- [include] cxl: Add AFU virtual PHB and kernel API (Gustavo Duarte) [1275968]
-- [misc] cxl: Export file ops for use by API (Gustavo Duarte) [1275968]
-- [include] cxl: Move include file cxl.h -> cxl-base.h (Gustavo Duarte) [1275968]
-- [misc] cxl: Cleanup Makefile (Gustavo Duarte) [1275968]
-- [misc] cxl: Rework context lifetimes (Gustavo Duarte) [1275968]
-- [misc] cxl: Configure PSL for kernel contexts and merge code (Gustavo Duarte) [1275968]
-- [misc] cxl: Split afu_register_irqs() function (Gustavo Duarte) [1275968]
-- [misc] cxl: Only check pid for userspace contexts (Gustavo Duarte) [1275968]
-- [misc] cxl: Export some symbols (Gustavo Duarte) [1275968]
-- [misc] cxl: cxl_afu_reset() -> __cxl_afu_reset() (Gustavo Duarte) [1275968]
-- [misc] cxl: Rework detach context functions (Gustavo Duarte) [1275968]
-- [misc] cxl: Add cookie parameter to afu_release_irqs() (Gustavo Duarte) [1275968]
-- [misc] cxl: Dump debug info on the AFU configuration record (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix error path on probe (Gustavo Duarte) [1275968]
-- [misc] cxl: Re-order card init to check the VSEC earlier (Gustavo Duarte) [1275968]
-- [misc] cxl: Remove unnecessarily verbose print in cxl_remove() (Gustavo Duarte) [1275968]
-- [misc] cxl: Add shutdown hook (Gustavo Duarte) [1275968]
-- [documentation] cxl: Document external user of existing API (Gustavo Duarte) [1275968]
-- [powerpc] pci: Add pcibios_disable_device() hook (Gustavo Duarte) [1275968]
-- [powerpc] Add cxl context to device archdata (Gustavo Duarte) [1275968]
-- [powerpc] pci: Add release_device() hook to phb ops (Gustavo Duarte) [1275968]
-- [powerpc] pci: Export symbols for CXL (Gustavo Duarte) [1275968]
-- [misc] cxl: Use call_rcu to reduce latency when releasing the afu fd (Gustavo Duarte) [1275968]
-- [misc] cxl: Export AFU error buffer via sysfs (Gustavo Duarte) [1275968]
-- [include] cxl: Implement an ioctl to fetch afu card-id, offset-id and mode (Gustavo Duarte) [1275968]
-- [documentation] cxl: Fix a typo in ABI documentation (Gustavo Duarte) [1275968]
-- [pci] Export symbols required for loadable host driver modules (Gustavo Duarte) [1275968]
-
-* Wed May 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-390.el7]
-- [netdrv] hv_netvsc: Fix the order of num_sc_offered decrement (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix the array sizes to be max supported channels (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix accessing freed memory in netvsc_change_mtu() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Move subchannel waiting to rndis_filter_device_remove() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: add ethtool support for set and get of settings (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: add software transmit timestamp support (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Restore needed_headroom request (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: cleanup netdev feature flags for netvsc (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix book keeping of skb during batching process (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: use skb_get_hash() instead of a homegrown implementation (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix race condition on Multi-Send Data field (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate vlan_tci from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate status from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate xmit_more from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate completion_func from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate is_data_pkt from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate send_completion_tid from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate page_buf from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: remove locking in netvsc_send() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: move subchannel existence check to netvsc_select_queue() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Don't ask for additional head room in the skb (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate send_completion_ctx from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate send_completion from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminatte the data field from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate rndis_msg pointer from hv_netvsc_packet structure (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate the channel field in hv_netvsc_packet structure (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Rearrange the hv_negtvsc_packet to be space efficient (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Resize some of the variables in hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: rework link status change handling (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix dereference of nvdev before check (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Implement set_channels ethtool op (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Set vRSS with num_chn in RNDIS filter (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Add structs and handlers for VF messages (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Wait for sub-channels to be processed during probe (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Add close of RNDIS filter into change mtu call (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Add support to set MTU reservation from guest side (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Allocate the sendbuf in a NUMA aware way (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Allocate the receive buffer from the correct NUMA node (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Properly size the vrss queues (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: change member name of struct netvsc_stats (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: use per_cpu stats to calculate TX/RX data (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Use the xmit_more skb flag to optimize signaling the host (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: remove unused variable in netvsc_send() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix a bug in netvsc_start_xmit() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: introduce netif-msg into netvsc module (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Implement partial copy into send buffer (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: try linearizing big SKBs before dropping them (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: use single existing drop path in netvsc_start_xmit (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix the packet free when it is in skb headroom (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Define a macro RNDIS_AND_PPI_SIZE (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Clean up two unused variables (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate memory allocation in the packet send path (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Cleanup the test for freeing skb when we use sendbuf mechanism (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: remove vmbus_are_subchannels_present() in rndis_filter_device_add() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Implement batching in send buffer (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Implement netvsc_get_channels() ethool op (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: fix sparse warnings (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Fix the error processing in netvsc_send() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: match wait_for_completion_timeout return type (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: netvsc.c: match wait_for_completion_timeout return type (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Fix some variable name typos in send-buffer init/revoke (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Deletion of an unnecessary check before the function call "vfree" (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Add handler for RNDIS_STATUS_NETWORK_CHANGE event (Vitaly Kuznetsov) [1257293]
-
-* Wed May 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-389.el7]
-- [netdrv] bonding: fix bond_get_stats() (Jarod Wilson) [1297931]
-- [netdrv] bonding: remove duplicate set of flag IFF_MULTICAST (Jarod Wilson) [1297931]
-- [netdrv] bonding: use __ethtool_get_ksettings (Jarod Wilson) [1297931]
-- [netdrv] bonding: don't use stale speed and duplex information (Jarod Wilson) [1297931]
-- [netdrv] bonding: Fix ARP monitor validation (Jarod Wilson) [1297931]
-- [netdrv] bonding: Prevent IPv6 link local address on enslaved devices (Jarod Wilson) [1297931]
-- [netdrv] bonding: drop unused to_dev macro in bond_sysfs.c (Jarod Wilson) [1297931]
-- [netdrv] bonding: remove redudant brackets (Jarod Wilson) [1297931]
-- [netdrv] bonding: add 802.3ad support for 100G speeds (Jarod Wilson) [1297931]
-- [netdrv] bonding: fix panic on non-ARPHRD_ETHER enslave failure (Jarod Wilson) [1297931]
-- [netdrv] bonding: simplify / unify event handling code for 3ad mode (Jarod Wilson) [1297931]
-- [netdrv] bonding: unify all places where actor-oper key needs to be updated (Jarod Wilson) [1297931]
-- [netdrv] bonding: Simplify __get_duplex function (Jarod Wilson) [1297931]
-- [netdrv] bonding: use l4 hash if available (Jarod Wilson) [1297931]
-- [netdrv] bonding: Export bond_option_active_slave_get_rcu (Jarod Wilson) [1297931]
-- [netdrv] bonding: fix bond_poll_controller bh_enable warning (Jarod Wilson) [1297931]
-- [netdrv] bonding: Gratuitous ARP gets dropped when first slave added (Jarod Wilson) [1297931]
-- [netdrv] bonding: add tlb_dynamic_lb netlink support (Jarod Wilson) [1297931]
-- [netdrv] bonding: convert num_grat_arp to the new bonding option API (Jarod Wilson) [1297931]
-- [netdrv] bonding: correct the MAC address for "follow" fail_over_mac policy (Jarod Wilson) [1297931]
-- [netdrv] bonding: correctly handle bonding type change on enslave failure (Jarod Wilson) [1297931]
-- [netdrv] bonding: trivial: remove unused variables (Jarod Wilson) [1297931]
-- [netdrv] bonding: Display LACP info only to CAP_NET_ADMIN capable user (Jarod Wilson) [1297931]
-- [netdrv] bonding: export slave's partner_oper_port_state via sysfs and netlink (Jarod Wilson) [1297931]
-- [netdrv] bonding: export slave's actor_oper_port_state via sysfs and netlink (Jarod Wilson) [1297931]
-- [net] rtnl/bond: don't send rtnl msg for unregistered iface (Jarod Wilson) [1297931]
-- [netdrv] bonding: add netlink support for sys prio, actor sys mac, and port key (Jarod Wilson) [1297931]
-- [netdrv] bonding: Implement user key part of port_key in an AD system (Jarod Wilson) [1297931]
-- [netdrv] bonding: Allow userspace to set actors' macaddr in an AD-system (Jarod Wilson) [1297931]
-- [netdrv] bonding: Allow userspace to set actors' system_priority in AD system (Jarod Wilson) [1297931]
-- [netdrv] bonding: fix kernel panic in bonding driver debugfs file: rlb_hash_table (Jarod Wilson) [1297931]
-- [netdrv] bonding: Make DRV macros private (Jarod Wilson) [1297931]
-- [netdrv] bonding: Remove unnecessary initialization (Jarod Wilson) [1297931]
-- [netdrv] bonding: Code re-factoring for admin, oper-key operations (Jarod Wilson) [1297931]
-- [netdrv] bonding: Fix another case of LACPDU not sent on slave (Jarod Wilson) [1297931]
-- [netdrv] bonding: deprecate BOND_MONITOR_CHURNED in favor of existing definitions (Jarod Wilson) [1297931]
-- [netdrv] bonding: Bonding Overriding Configuration logic restored (Jarod Wilson) [1297931]
-- [netdrv] bonding: Remove hardcoded initialization (Jarod Wilson) [1297931]
-- [netdrv] bonding: Don't segment multiple tagged packets on bonding device (Jarod Wilson) [1297931]
-
-* Tue May 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-388.el7]
-- [net] ethtool: Set cmd field in ETHTOOL_GLINKSETTINGS response to wrong nwords (Ivan Vecera) [1268334]
-- [net] ethtool: add new ETHTOOL_xLINKSETTINGS API (Ivan Vecera) [1268334]
-- [net] ethtool: support set coalesce per queue (Ivan Vecera) [1268334]
-- [net] ethtool: support get coalesce per queue (Ivan Vecera) [1268334]
-- [scsi] cxgb4i: don't redefine DIV_ROUND_UP (Ivan Vecera) [1268334]
-- [include] define DIV_ROUND_UP for userland (Ivan Vecera) [1268334]
-- [net] ethtool: introduce a new ioctl for per queue setting (Ivan Vecera) [1268334]
-- [lib] bitmap: conversion routines to/from u32 array (Ivan Vecera) [1268334]
-- [net] add tc offload feature flag (Ivan Vecera) [1268334]
-- [net] rework setup_tc ndo op to consume general tc operand (Ivan Vecera) [1268334]
-- [net] rework ndo tc op to consume additional qdisc handle parameter (Ivan Vecera) [1268334]
-- [net] ethtool: ensure channel counts are within bounds during SCHANNELS (Ivan Vecera) [1268334]
-- [net] ethtool: correctly ensure {GS}CHANNELS doesn't conflict with GS{RXFH} (Ivan Vecera) [1268334]
-- [net] ethtool: define INT_MAX for userland (Ivan Vecera) [1268334]
-- [net] ethtool: make validate_speed accept all speeds between 0 and INT_MAX (Ivan Vecera) [1268334]
-- [net] ethtool: future-proof interface for speed extensions (Ivan Vecera) [1268334]
-- [net] ethtool: add IPv6 to the NFC API (Ivan Vecera) [1268334]
-- [net] ethtool: add speed/duplex validation functions (Ivan Vecera) [1268334]
-- [net] ethtool: Declare netdev_rss_key as __read_mostly. (Ivan Vecera) [1268334]
-- [net] ethtool: Use kcalloc instead of kmalloc for ethtool_get_strings (Ivan Vecera) [1268334]
-- [net] ethtool: clarify implementation of ethtool's get_ts_info op (Ivan Vecera) [1268334]
-- [net] ethtool: Add current supported tunable options (Ivan Vecera) [1268334]
-- [net] ethtool: use "ops" name consistenty in ethtool_set_rxfh() (Ivan Vecera) [1268334]
-- [net] ethtool: Return -EOPNOTSUPP if user space tries to read EEPROM with lengh 0 (Ivan Vecera) [1268334]
-- [net] ethtool: Ethtool parameter to dynamically change tx_copybreak (Ivan Vecera) [1268334]
-- [net] ethtool: Add generic options for tunables (Ivan Vecera) [1268334]
-- [net] ethtool: Fix unwanted section breaks in kernel-doc (Ivan Vecera) [1268334]
-- [net] ethtool: Move kernel-doc comment next to struct ethtool_dump definition (Ivan Vecera) [1268334]
-- [net] ethtool: Document the general convention for VLAs in kernel space (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_perm_addr (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_stats (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_test (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of string set types (Ivan Vecera) [1268334]
-- [net] ethtool: Update documentation of struct ethtool_pauseparam (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_ringparam (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_eeprom (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_regs (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_wol (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_drvinfo (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_cmd (Ivan Vecera) [1268334]
-- [net] ethtool: fixed trailing statements in ethtool (Ivan Vecera) [1268334]
-- [net] ethtool: make .get_dump_data() harder to misuse by drivers (Ivan Vecera) [1268334]
-- [net] ethtool: Fix comment regarding location of dev_ethtool() call (Ivan Vecera) [1268334]
-- [net] ethtool: disambiguate XCVR_* meaning (Ivan Vecera) [1268334]
-- [net] Disallow providing non zero VLAN ID for NIC drivers FDB add flow (Ivan Vecera) [1268334]
-- [net] make vid as a parameter for ndo_fdb_add/ndo_fdb_del (Ivan Vecera) [1268334]
-- [net] Add eth_platform_get_mac_address() helper. (Ivan Vecera) [1268334]
-- [pci] Add pci_device_to_OF_node() stub for !CONFIG_OF (Ivan Vecera) [1268334]
-- [net] Rename NETIF_F_ALL_CSUM to NETIF_F_CSUM_MASK (Ivan Vecera) [1268334]
-- [net] sctp: Rename NETIF_F_SCTP_CSUM to NETIF_F_SCTP_CRC (Ivan Vecera) [1268334]
-- [net] provide generic busy polling to all NAPI drivers (Ivan Vecera) [1268334]
-- [net] napi_hash_del() returns a boolean status (Ivan Vecera) [1268334]
-- [net] move napi_hash[] into read mostly section (Ivan Vecera) [1268334]
-- [net] add netif_tx_napi_add() (Ivan Vecera) [1268334]
-- [net] move skb_mark_napi_id() into core networking stack (Ivan Vecera) [1268334]
-- [netdrv] mlx4: remove mlx4_en_low_latency_recv() (Ivan Vecera) [1268334]
-- [netdrv] bnx2x: remove bnx2x_low_latency_recv() support (Ivan Vecera) [1268334]
-- [netdrv] mlx5: support napi_complete_done() (Ivan Vecera) [1268334]
-- [netdrv] mlx5: add busy polling support (Ivan Vecera) [1268334]
-- [net] network drivers no longer need to implement ndo_busy_poll() (Ivan Vecera) [1268334]
-- [net] allow BH servicing in sk_busy_loop() (Ivan Vecera) [1268334]
-- [net] un-inline sk_busy_loop() (Ivan Vecera) [1268334]
-- [netdrv] mlx4: mlx4_en_low_latency_recv() called with BH disabled (Ivan Vecera) [1268334]
-- [net] sched, net: Fixup busy_loop_us_clock() (Ivan Vecera) [1268334]
-- [net] add cpu_relax to busy poll loop (Ivan Vecera) [1268334]
-- [net] better skb->sender_cpu and skb->napi_id cohabitation (Ivan Vecera) [1268334]
-- [net] move netdev_pick_tx and dependencies to net/core/dev.c (Ivan Vecera) [1268334]
-- [net] netdevice: move netdev_cap_txqueue for shared usage to header (Ivan Vecera) [1268334]
-- [net] use reciprocal_scale() helper (Ivan Vecera) [1268334]
-- [net] netdevice: add queue selection fallback handler for ndo_select_queue (Ivan Vecera) [1268334]
-- [net] core: explicitly select a txq before doing l2 forwarding (Ivan Vecera) [1268334]
-- [net] xps: fix xps for stacked devices (Ivan Vecera) [1268334]
-- [mm] make page pfmemalloc check more robust (Ivan Vecera) [1268334]
-- [net] generic dev_disable_lro() stacked device handling (Ivan Vecera) [1268334]
-- [net] bonding: add slave netlink policy and put slave-related ops together (Ivan Vecera) [1268334]
-- [net] bonding: add slave_changelink support and use it for queue_id (Ivan Vecera) [1268334]
-- [net] core: lockdep_rtnl_is_held can be boolean (Ivan Vecera) [1268334]
-- [net] allow netdev_all_upper_get_next_dev_rcu with rtnl lock held (Ivan Vecera) [1268334]
-- [net] bonding: Fix stacked device detection in arp monitoring (Ivan Vecera) [1268334]
-- [net] ethtool: Added port speed macros (Ivan Vecera) [1268334]
-- [net] Find the nesting level of a given device by type. (Ivan Vecera) [1268334]
-- [net] bonding: create bond_first_slave_rcu() (Ivan Vecera) [1268334]
-- [net] create sysfs symlinks for neighbour devices (Ivan Vecera) [1268334]
-- [net] expose the master link to sysfs, and remove it from bond (Ivan Vecera) [1268334]
-- [net] vlan: unlink the upper neighbour before unregistering (Ivan Vecera) [1268334]
-- [net] vlan: link the upper neighbour only after registering (Ivan Vecera) [1268334]
-- [net] bonding: remove slave lists (Ivan Vecera) [1268334]
-- [net] bonding: use neighbours for bond_next_slave() (Ivan Vecera) [1268334]
-- [net] bonding: add __bond_next_slave() which uses neighbours (Ivan Vecera) [1268334]
-- [net] bonding: convert first/last slave logic to use neighbours (Ivan Vecera) [1268334]
-- [net] add a possibility to get private from netdev_adjacent->list (Ivan Vecera) [1268334]
-- [net] bonding: convert bond_has_slaves() to use the neighbour list (Ivan Vecera) [1268334]
-- [net] bonding: make bond_for_each_slave() use lower neighbour's private (Ivan Vecera) [1268334]
-- [net] add for_each iterators through neighbour lower link's private (Ivan Vecera) [1268334]
-- [net] bonding: modify bond_get_slave_by_dev() to use neighbours (Ivan Vecera) [1268334]
-- [net] bonding: populate neighbour's private on enslave (Ivan Vecera) [1268334]
-- [net] add netdev_adjacent->private and allow to use it (Ivan Vecera) [1268334]
-- [net] add RCU variant to search for netdev_adjacent link (Ivan Vecera) [1268334]
-- [net] add adj_list to save only neighbours (Ivan Vecera) [1268334]
-- [net] use lists as arguments instead of bool upper (Ivan Vecera) [1268334]
-- [net] bonding: make alb_send_learning_packets() use upper dev list (Ivan Vecera) [1268334]
-- [net] bonding: convert bond_has_this_ip() to use upper devices (Ivan Vecera) [1268334]
-- [net] bonding: make bond_arp_send_all use upper device list (Ivan Vecera) [1268334]
-- [net] add netdev_for_each_upper_dev_rcu() (Ivan Vecera) [1268334]
-- [net] add netdev_upper_get_next_dev_rcu(dev, iter) (Ivan Vecera) [1268334]
-- [net] remove search_list from netdev_adjacent (Ivan Vecera) [1268334]
-- [net] add lower_dev_list to net_device and make a full mesh (Ivan Vecera) [1268334]
-- [net] rename netdev_upper to netdev_adjacent (Ivan Vecera) [1268334]
-- [net] revert "[netdrv] bonding: propagate LRO disable to slave devices" (Ivan Vecera) [1268334]
-- [net] add netnotifier event for upper device change (Ivan Vecera) [1268334]
-- [net] Add max rate tx queue attribute (Ivan Vecera) [1268334]
-- [net] sysfs: get_netdev_queue_index() cleanup (Ivan Vecera) [1268334]
-- [net] sysfs: add documentation entries for /sys/class/<iface>/queues (Ivan Vecera) [1268334]
-
-* Tue May 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-387.el7]
-- [netdrv] e1000e: Adds hardware supported cross timestamp on e1000e nic (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Initial support for KabeLake (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Clear ULP configuration register on ULP exit (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Set HW FIFO minimum pointer gap for non-gig speeds (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Increase PHY PLL clock gate timing (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Increase ULP timer (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix msi-x interrupt automask (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Do not write lsc to ics in msi-x mode (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Do not read ICR in Other interrupt (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Remove unreachable code (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Switch e1000e_up to void, drop code checking for error result (Jarod Wilson) [1274171]
-- [netdrv] e1000e: initial support for i219-LM (3) (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Increase timeout of polling bit RSPCIPHY (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix division by zero on jumbo MTUs (Jarod Wilson) [1274171]
-- [netdrv] e1000e: clean up the local variable (Jarod Wilson) [1274171]
-- [netdrv] e1000e: use napi_complete_done() (Jarod Wilson) [1274171]
-- [netdrv] e1000e: get rid of unnecessary initializations in .get_drvinfo() (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Enable TSO for stacked VLAN (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Modify Tx/Rx configurations to avoid null pointer dereferences in e1000_open (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Increase driver version number (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix tight loop implementation of systime read algorithm (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix incorrect ASPM locking (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Cosmetic changes (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix EEE in Sx implementation (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Cleanup qos request in error handling of e1000_open (Jarod Wilson) [1274171]
-- [netdrv] e1000e: i219 - k1 workaround for LPT is not required for SPT (Jarod Wilson) [1274171]
-- [netdrv] e1000e: i219 - Increase minimum FIFO read/write min gap (Jarod Wilson) [1274171]
-- [netdrv] e1000e: i219 - increase IPG for speed 10/100 full duplex (Jarod Wilson) [1274171]
-- [netdrv] e1000e: i219 - fix to enable both ULP and EEE in Sx state (Jarod Wilson) [1274171]
-- [netdrv] e1000e: synchronization of MAC-PHY interface only on non- ME systems (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix locking issue with e1000e_disable_aspm (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Move pm_qos_req to e1000e adapter (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix 82572EI that has no hardware timestamp support (Jarod Wilson) [1274171]
-- [netdrv] e1000e: convert to CYCLECOUNTER_MASK macro (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Include clocksource.h to get CLOCKSOURCE_MASK (Jarod Wilson) [1274171]
-- [netdrv] e1000e: convert to timecounter adjtime (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Use napi_alloc_skb (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Resolve issues with Management Engine (ME) briefly blocking PHY resets (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Add missing branding strings in ich8lan.c (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Cleanup unecessary references (Jarod Wilson) [1274171]
-- [netdrv] e1000e: PTP lock in e1000e_phc_adjustfreq (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Use pci_enable_msix_range() instead of pci_enable_msix() (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix compiler warning (maybe-unitialized variable) (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix compiler warnings (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Implement the SIOCGHWTSTAMP ioctl (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Validate hwtstamp_config completely before applying it (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix 32-bit DMA mask handling (Jarod Wilson) [1274171]
-- [netdrv] e1000e: cleanup boolean comparison to true (Jarod Wilson) [1274171]
-
-* Mon May 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-386.el7]
-- [pci] cpcihp: Add missing curly braces in cpci_configure_slot() (Myron Stowe) [1331507]
-- [pci] aer: Avoid info leak in __print_tlp_header() (Myron Stowe) [1331507]
-- [pci] Don't read past the end of sysfs "driver_override" buffer (Myron Stowe) [1331507]
-- [pci] Fail MSI-X mappings if there's no space assigned to MSI-X BAR (Myron Stowe) [1331507]
-- [pci] Fix infinite loop with ROM image of size 0 (Myron Stowe) [1331507]
-- [powerpc] rpc/pci: Add struct pci_ops member names to initialization (Myron Stowe) [1331507]
-- [pci] pciehp: Handle surprise add even if surprise removal isn't supported (Myron Stowe) [1331507]
-- [pci] pci/aspm: Use standard parsing functions for sysfs setters (Myron Stowe) [1331507]
-- [pci] Delete unnecessary NULL pointer checks (Myron Stowe) [1331507]
-- [pci] Prevent out of bounds access in numa_node override (Myron Stowe) [1331488]
-- [pci] Prevent out of bounds access in numa_node override (Myron Stowe) [1331488]
-- [pci] Remove unused and broken to_hotplug_slot() (Myron Stowe) [1331488]
-- [pci] Make FLR and AF FLR reset warning messages different (Myron Stowe) [1331488]
-- [pci] Simplify if-return sequences (Myron Stowe) [1331488]
-- [pci] Delete unnecessary NULL pointer checks (Myron Stowe) [1331488]
-- [pci] Allow numa_node override via sysfs (Myron Stowe) [1331488]
-- [x86] mm: pat: Avoid truncation when converting cpa->numpages to address (Larry Woodman) [1328755]
-- [fs] gfs2: Use gfs2 wrapper to sync inode before calling generic_file_splice_read() (Abhijith Das) [1331071]
-- [fs] lockd: create NSM handles per net namespace ("J. Bruce Fields") [1328938]
-- [fs] lockd: NLM grace period shouldn't block NFSv4 opens ("J. Bruce Fields") [1328938]
-- [fs] ext4: rate limit printk in buffer_io_error() (Carlos Maiolino) [1142771]
-- [fs] clarify rate limit suppressed buffer I/O errors (Carlos Maiolino) [1142771]
-- [fs] merge I/O error prints into one line (Carlos Maiolino) [1142771]
-- [fs] block: Remove annoying "unknown partition table" message (Carlos Maiolino) [1142771]
-- [fs] ovl: Ensure upper filesystem supports d_type (Vivek Goyal) [1288162]
-- [fs] epoll: restrict EPOLLEXCLUSIVE to POLLIN and POLLOUT (Hannes Frederic Sowa) [1245628]
-- [fs] epoll: add EPOLLEXCLUSIVE flag (Hannes Frederic Sowa) [1245628]
-- [fs] pipe: limit the per-user amount of pages allocated in pipes (Mateusz Guzik) [1313960] {CVE-2016-2847}
-- [sound] alsa: usb-audio: avoid freeing umidi object twice (Mateusz Guzik) [1310663] {CVE-2016-2384}
-- [netdrv] atl2: Disable unimplemented scatter/gather feature (Mateusz Guzik) [1320106] {CVE-2016-2117}
-- [misc] cxl: Configure the PSL for two CAPI ports on POWER8NVL (Steve Best) [1278793]
-- [powerpc] Define PVR value for POWER8NVL processor (Steve Best) [1278793]
-- [powerpc] powernv: Silence SYSPARAM warning on boot (Steve Best) [1331179]
-- [infiniband] hfi1: Move hfi1 driver to match upstream tree (Alex Estrin) [1328249]
-
-* Fri Apr 29 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-385.el7]
-- [tools] power turbostat: intel xeon x200: fix erroneous bclk value (Steve Best) [1330164]
-- [tools] power turbostat: intel xeon x200: fix turbo-ratio decoding (Steve Best) [1330167]
-- [x86] kvm: vmx: disable PEBS before a guest entry (Radim Krcmar) [1272097]
-- [net] netfilter: x_tables: introduce and use xt_copy_counters_from_user (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: do compat validation via translate_table (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: xt_compat_match_from_user doesn't need a retval (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: arp_tables: simplify translate_compat_table args (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: ip6_tables: simplify translate_compat_table args (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: ip_tables: simplify translate_compat_table args (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: remove unused comefrom hookmask argument (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: validate all offsets and sizes in a rule (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: check for bogus target offset (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: check standard target size too (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: add compat version of xt_check_entry_offsets (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: assert minimum target size (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: kill check_entry helper (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: add and use xt_check_entry_offsets (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: validate targets of jumps (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: don't move to non-existent next rule (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: fix unconditional helper (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: validate e->target_offset early (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: check for size overflow (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] ipv6: sit: set rtnl_link_ops before calling register_netdevice (Thadeu Lima de Souza Cascardo) [1284001]
-- [net] team: team should sync the port's uc/mc addrs when add a port (Xin Long) [1225396]
-- [net] ipv6: always add flag an address that failed DAD with DADFAILED (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: keep existing flags when setting IFA_F_OPTIMISTIC (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: restrict hop_limit sysctl setting to range [1; 255] (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: Only act upon NETDEV_*_TYPE_CHANGE if we have ipv6 addresses (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: clean up dev_snmp6 proc entry when we fail to initialize inet6_dev (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: fail early when creating netdev named all or default (Hannes Frederic Sowa) [1299825]
-- [net] ipv4: fail early when creating netdev named all or default (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: gre: setup default multicast routes over PtP links (Hannes Frederic Sowa) [1299825]
-- [net] addr IFLA_OPERSTATE to netlink message for ipv6 ifinfo (Hannes Frederic Sowa) [1299825]
-
-* Thu Apr 28 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-384.el7]
-- [block] nvme: Automatic namespace rescan fixup (David Milburn) [1288601]
-- [block] blk-mq: mark request queue as mq asap (David Milburn) [1288601]
-- [block] nvme: Fix possible queue use after freed (David Milburn) [1288601]
-- [block] blk-mq: dynamic h/w context count (David Milburn) [1288601]
-- [block] nvme: fix max_segments integer truncation (David Milburn) [1288601]
-- [block] nvme: set queue limits for the admin queue (David Milburn) [1288601]
-- [block] nvme: Fix 0-length integrity payload (David Milburn) [1288601]
-- [block] nvme: Don't allow unsupported flags (David Milburn) [1288601]
-- [block] nvme: Move error handling to failed reset handler (David Milburn) [1288601]
-- [block] nvme: Simplify device reset failure (David Milburn) [1288601]
-- [block] nvme: Fix namespace removal deadlock (David Milburn) [1288601]
-- [block] nvme: Use IDA for namespace disk naming (David Milburn) [1288601]
-- [block] nvme: Don't unmap controller registers on reset (David Milburn) [1288601]
-- [block] nvme: Rate limit nvme IO warnings (David Milburn) [1288601]
-- [block] nvme: Poll device while still active during remove (David Milburn) [1288601]
-- [block] nvme: Requeue requests on suspended queues (David Milburn) [1288601]
-- [block] nvme: Allow request merges (David Milburn) [1288601]
-- [block] nvme: Fix io incapable return values (David Milburn) [1288601]
-- [block] blk-mq: End unstarted requests on dying queue (David Milburn) [1288601]
-- [block] uapi: update install list after nvme.h rename (David Milburn) [1288601]
-- [block] nvme: Export NVMe attributes to sysfs group (David Milburn) [1251944 1288601]
-- [block] nvme: Shutdown controller only for power-off (David Milburn) [1288601]
-- [block] nvme: IO queue deletion re-write (David Milburn) [1288601]
-- [block] nvme: Remove queue freezing on resets (David Milburn) [1288601]
-- [block] nvme: Use a retryable error code on reset (David Milburn) [1288601]
-- [block] nvme: Fix admin queue ring wrap (David Milburn) [1288601]
-- [block] nvme: fixes for NVME_IOCTL_IO_CMD on the char device (David Milburn) [1288601]
-- [block] nvme: synchronize access to ctrl->namespaces (David Milburn) [1288601]
-- [block] nvme: Move nvme_freeze/unfreeze_queues to nvme core (David Milburn) [1288601]
-- [pci] aer: include header file (David Milburn) [1288601]
-- [block] nvme: Export namespace attributes to sysfs (David Milburn) [1288601]
-- [block] nvme: Add pci error handlers (David Milburn) [1288601]
-- [block] remove REQ_NO_TIMEOUT flag (David Milburn) [1288601]
-- [block] nvme: merge iod and cmd_info (David Milburn) [1288601]
-- [block] nvme: move struct nvme_iod to pci.c (David Milburn) [1288601]
-- [block] nvme: properly free resources for cancelled command (David Milburn) [1288601]
-- [block] nvme: simplify completion handling (David Milburn) [1288601]
-- [block] nvme: switch abort to blk_execute_rq_nowait (David Milburn) [1288601]
-- [block] nvme: special case AEN requests (David Milburn) [1288601]
-- [block] nvme: switch delete SQ/CQ to blk_execute_rq_nowait (David Milburn) [1288601]
-- [block] nvme: factor out a few helpers from req_completion (David Milburn) [1288601]
-- [block] nvme: fix admin queue depth (David Milburn) [1288601]
-- [block] nvme: Simplify metadata setup (David Milburn) [1288601]
-- [block] nvme: Remove device management handles on remove (David Milburn) [1288601]
-- [block] nvme: Use unbounded work queue for all work (David Milburn) [1288601]
-- [block] nvme: Implement namespace list scanning (David Milburn) [1288601]
-- [block] nvme: switch abort_limit to an atomic_t (David Milburn) [1288601]
-- [block] nvme: remove dead controllers from a work item (David Milburn) [1288601]
-- [block] nvme: merge probe_work and reset_work (David Milburn) [1288601]
-- [block] nvme: do not restart the request timeout if we're resetting the controller (David Milburn) [1288601]
-- [block] nvme: simplify resets (David Milburn) [1288601]
-- [block] nvme: add NVME_SC_CANCELLED (David Milburn) [1288601]
-- [block] nvme: merge nvme_abort_req and nvme_timeout (David Milburn) [1288601]
-- [block] nvme: don't take the I/O queue q_lock in nvme_timeout (David Milburn) [1288601]
-- [block] nvme: protect against simultaneous shutdown invocations (David Milburn) [1288601]
-- [block] nvme: only add a controller to dev_list after it's been fully initialized (David Milburn) [1288601]
-- [block] nvme: only ignore hardware errors in nvme_create_io_queues (David Milburn) [1288601]
-- [block] nvme: precedence bug in nvme_pr_clear() (David Milburn) [1288601]
-- [block] blk-mq: Avoid memoryless numa node encoded in hctx numa_node (David Milburn) [1288601]
-- [block] blk-mq: Reuse hardware context cpumask for tags (David Milburn) [1288601]
-- [block] nvme: refactor set_queue_count (David Milburn) [1288601]
-- [block] nvme: move chardev and sysfs interface to common code (David Milburn) [1288601]
-- [block] nvme: move namespace scanning to common code (David Milburn) [1288601]
-- [block] nvme: move the call to nvme_init_identify earlier (David Milburn) [1288601]
-- [block] nvme: add a common helper to read Identify Controller data (David Milburn) [1288601]
-- [block] nvme: move nvme_enable,disable,shutdown_ctrl to common code (David Milburn) [1288601]
-- [block] nvme: move remaining CC setup into nvme_enable_ctrl (David Milburn) [1288601]
-- [block] nvme: add explicit quirk handling (David Milburn) [1288601]
-- [block] nvme: move block_device_operations and ns/ctrl freeing to common code (David Milburn) [1288601]
-- [block] nvme: use the block layer for userspace passthrough metadata (David Milburn) [1288601]
-- [block] nvme: split __nvme_submit_sync_cmd (David Milburn) [1288601]
-- [block] nvme: move nvme_setup_flush and nvme_setup_rw to common code (David Milburn) [1288601]
-- [block] nvme: move nvme_error_status to common code (David Milburn) [1288601]
-- [block] nvme: factor out a nvme_unmap_data helper (David Milburn) [1288601]
-- [block] nvme: refactor nvme_queue_rq (David Milburn) [1288601]
-- [block] nvme: simplify nvme_setup_prps calling convention (David Milburn) [1288601]
-- [block] nvme: split a new struct nvme_ctrl out of struct nvme_dev (David Milburn) [1288601]
-- [block] nvme: use vendor it from identify (David Milburn) [1288601]
-- [block] nvme: split nvme_trans_device_id_page (David Milburn) [1288601]
-- [block] nvme: use offset instead of a struct for registers (David Milburn) [1288601]
-- [block] nvme: split command submission helpers out of pci.c (David Milburn) [1288601]
-- [block] clarify blk_add_timer() use case for blk-mq (David Milburn) [1288601]
-- [block] fix blk_abort_request for blk-mq drivers (David Milburn) [1288601]
-- [block] nvme: add missing unmaps in nvme_queue_rq (David Milburn) [1288601]
-- [block] blk-mq: fix calling unplug callbacks with preempt disabled (David Milburn) [1288601]
-- [block] nvme: reap completion entries when deleting queue (David Milburn) [1288601]
-- [block] nvme: Fix possible arithmetic overflow for max segments (David Milburn) [1288601]
-- [block] nvme: use split lo_hi_readq, lo_write_q (David Milburn) [1288601]
-- [block] blk-mq: mark __blk_mq_complete_request() static (David Milburn) [1288601]
-- [block] nvme: Increase the max transfer size when mdts is 0 (David Milburn) [1288601]
-- [block] nvme: Precedence error in nvme_pr_clear() (David Milburn) [1288601]
-- [block] nvme: add missing endianess annotations in nvme_pr_command (David Milburn) [1288601]
-- [block] nvme: Add persistent reservation ops (David Milburn) [1288601]
-- [block] blk-mq: avoid excessive boot delays with large lun counts (David Milburn) [1288601]
-- [block] blk-mq: mark ctx as pending at batch in flush plug path (David Milburn) [1288601]
-- [block] blk-mq: fix for trace_block_plug() (David Milburn) [1288601]
-- [block] blk-mq: check bio_mergeable() early before merging (David Milburn) [1288601]
-- [block] nvme: suspend i/o during runtime blk_integrity_unregister (David Milburn) [1288601]
-- [block] nvme: initialize error to '0' (David Milburn) [1288601]
-- [block] nvme: use an integer value to Linux errno values (David Milburn) [1288601]
-- [block] blk-mq: fix use-after-free in blk_mq_free_tag_set() (David Milburn) [1288601]
-- [block] blk-mq: factor out a helper to iterate all tags for a request_queue (David Milburn) [1288601]
-- [block] blk-mq: fix racy updates of rq->errors (David Milburn) [1288601]
-- [block] nvme: fix 32-bit build warning (David Milburn) [1288601]
-- [block] nvme: Add explicit block config dependency (David Milburn) [1288601]
-- [block] blk-mq: remove unused blk_mq_clone_flush_request prototype (David Milburn) [1288601]
-- [block] blk-mq: fix waitqueue_active without memory barrier in block/blk-mq-tag.c (David Milburn) [1288601]
-- [block] nvme: include <linux/types.h> in <linux/nvme.h> (David Milburn) [1288601]
-- [block] nvme: move to a new drivers/nvme/host directory (David Milburn) [1288601]
-- [block] nvme: add missing nvme_id_ctrl endianess annotations (David Milburn) [1288601]
-- [block] nvme: move hardware structures out of the uapi version of nvme.h (David Milburn) [1288601]
-- [block] nvme: add a local nvme.h header (David Milburn) [1288601]
-- [block] nvme: properly handle partially initialized queues in nvme_create_io_queues (David Milburn) [1288601]
-- [block] nvme: merge nvme_dev_start, nvme_dev_resume and nvme_async_probe (David Milburn) [1288601]
-- [block] nvme: factor reset code into a common helper (David Milburn) [1288601]
-- [block] nvme: merge nvme_dev_reset into nvme_reset_failed_dev (David Milburn) [1288601]
-- [block] nvme: delete dev from dev_list in nvme_reset (David Milburn) [1288601]
-- [block] nvme: Simplify device resume on io queue failure (David Milburn) [1288601]
-- [block] nvme: Namespace removal simplifications (David Milburn) [1288601]
-- [block] nvme: Reference count open namespaces (David Milburn) [1288601]
-- [block] nvme: Set affinity after allocating request queues (David Milburn) [1288601]
-- [block] nvme: Using PRACT bit to generate and verify PI by controller (David Milburn) [1288601]
-- [block] nvme: Remove unreachable code in nvme_abort_req (David Milburn) [1288601]
-- [block] nvme: Add nvme subsystem reset IOCTL (David Milburn) [1288601]
-- [block] nvme: Add nvme subsystem reset support (David Milburn) [1288601]
-- [block] nvme: removed unused nn var from nvme_dev_add (David Milburn) [1288601]
-- [block] nvme: Set queue max segments (David Milburn) [1288601]
-- [block] blk-mq: fix race between timeout and freeing request (David Milburn) [1288601]
-- [block] blk-mq: fix buffer overflow when reading sysfs file of 'pending' (David Milburn) [1288601]
-- [block] nvme: Fixes u64 division which breaks i386 builds (David Milburn) [1288601]
-- [block] nvme: Use CMB for the IO SQes if available (David Milburn) [1288601]
-- [block] nvme: Unify SQ entry writing and doorbell ringing (David Milburn) [1288601]
-- [block] blk-mq: set default timeout as 30 seconds (David Milburn) [1288601]
-- [block] nvme: Reread partitions on metadata formats (David Milburn) [1288601]
-- [block] nvme: Fix irq freeing when queue_request_irq fails (David Milburn) [1288601]
-- [block] nvme-core: fix build with gcc-4.4.4 (David Milburn) [1288601]
-- [block] nvme: Don't use fake status on cancelled command (David Milburn) [1288601]
-- [block] nvme: Fix device cleanup on initialization failure (David Milburn) [1288601]
-- [block] nvme-scsi: Catch kcalloc failure (David Milburn) [1288601]
-- [block] nvme: Fix IO for extended metadata formats (David Milburn) [1288601]
-- [block] nvme: don't overwrite req->cmd_flags on sync cmd (David Milburn) [1288601]
-- [block] nvme: Memory barrier before queue_count is incremented (David Milburn) [1288601]
-- [block] nvme: End sync requests immediately on failure (David Milburn) [1288601]
-- [block] nvme: Use requested sync command timeout (David Milburn) [1288601]
-- [block] nvme: fix type warning on 32-bit (David Milburn) [1288601]
-- [block] nvme: Fix obtaining command result (David Milburn) [1288601]
-- [block] nvme: submit internal commands through the block layer (David Milburn) [1288601]
-- [block] rename REQ_TYPE_SPECIAL to REQ_TYPE_DRV_PRIV (David Milburn) [1288601]
-- [block] nvme: fail SCSI read/write command with unsupported protection bit (David Milburn) [1288601]
-- [block] nvme: report the DPOFUA in MODE_SENSE (David Milburn) [1288601]
-- [block] nvme: simplify and cleanup the READ/WRITE SCSI CDB parsing code (David Milburn) [1288601]
-- [block] nvme: first round at deobsfucating the SCSI translation code (David Milburn) [1288601]
-- [block] nvme: fix scsi translation error handling (David Milburn) [1288601]
-- [block] nvme: split nvme_trans_send_fw_cmd (David Milburn) [1288601]
-- [block] nvme: store a struct device pointer in struct nvme_dev (David Milburn) [1288601]
-- [block] nvme: consolidate synchronous command submission helpers (David Milburn) [1288601]
-- [block] nvme: fix kernel memory corruption with short INQUIRY buffers (David Milburn) [1288601]
-- [block] nvme: Fix VPD B0 max sectors translation (David Milburn) [1288601]
-
-* Wed Apr 27 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-383.el7]
-- [hv] kvp: fix IP Failover (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: Remove util transport handler from list if registration fails (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: Pass the channel information during the init call (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: fix hvt_op_poll() return value on transport destroy (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: fix crash when device is removed from host side (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: introduce HVUTIL_TRANSPORT_DESTROY mode (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: rename outmsg_lock (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: fix memory leak on on_msg() failure (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: Invoke the poll function after handshake (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: run only on supported host versions (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: use memdup_user in hvt_op_write (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: catch allocation errors (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] tools: hv: report ENOSPC errors in hv_fcopy_daemon (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: run polling callback always in interrupt context (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: Increase the timeout for util services (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: checking the wrong variable (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: dynamically allocate smsg_out in fcopy_send_data() (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: check kzalloc return value (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: unify driver registration reporting (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: full handshake support (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: full handshake support (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: convert to hv_utils_transport (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: convert to hv_utils_transport (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: convert to hv_utils_transport (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: introduce hv_utils_transport abstraction (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: switch to using the hvutil_device_state state machine (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: switch to using the hvutil_device_state state machine (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: switch to using the hvutil_device_state state machine (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: introduce state machine for util drivers (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: rename fcopy_work -> fcopy_timeout_work (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: rename kvp_work -> kvp_timeout_work (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: process deferred messages when we complete the transaction (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: process deferred messages when we complete the transaction (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: move poll_channel() to hyperv_vmbus.h (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: reset kvp_context (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: move kvp/vss function declarations to hyperv_vmbus.h (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: move vmbus_open() to a later place (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] Change variable type to bool (Vitaly Kuznetsov) [1074407 1309368]
-- [fs] Restore inode_dio_done declaration (George Beshers) [1321161]
-- [x86] Reinstate pv_cpu_ops.read_tsc() (George Beshers) [1321161]
-- [x86] tsc: Restore rdtsc_barrier() (George Beshers) [1321161]
-- [netdrv] ibmveth: enable interrupts after napi_complete() (Thomas Huth) [1317487]
-- [netdrv] ibmveth: Fix endian issues with rx_no_buffer statistic (Thomas Huth) [1317487]
-- [netdrv] r8169: Remove unnecessary phy reset for pcie nic when setting link spped (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Enable RX_MULTI_EN for RTL_GIGA_MAC_VER_41~48 (Corinna Vinschen) [1298541]
-- [netdrv] r8169: fix "rtl_counters_cond == 1 (loop: 1000, delay: 10)" log spam (Corinna Vinschen) [1298541]
-- [netdrv] r8169: fix system hang problem (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Correct the way of setting RTL8168DP ephy (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Fix typo in setting RTL8168H PHY PFM mode (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Fix typo in setting RTL8168EP and RTL8168H D3cold PFM mode (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Update the way of reading RTL8168H PHY register "rg_saw_cnt" (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Fix typo in setting RTL8168H PHY parameter (Corinna Vinschen) [1298541]
-- [netdrv] r8169: fix handling rtl_readphy result (Corinna Vinschen) [1298541]
-- [leds] powernv: removing NULL check (Gustavo Duarte) [1274413]
-- [powerpc] powernv: Fix mis-merge of OPAL support for LEDS driver (Gustavo Duarte) [1274413]
-- [leds] powernv: Add driver for PowerNV platform (Gustavo Duarte) [1274413]
-- [powerpc] powernv: Create LED platform device (Gustavo Duarte) [1274413]
-- [powerpc] powernv: Add OPAL interfaces for accessing and modifying system LED states (Gustavo Duarte) [1274413]
-- [powerpc] leds: Introduce devres helper for led_classdev_register (Gustavo Duarte) [1274413]
-- [powerpc] devres: Add devm_kasprintf and devm_kvasprintf API (Gustavo Duarte) [1274413]
-
-* Tue Apr 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-382.el7]
-- [x86] dmi: Switch dmi_remap() from ioremap() uncached to ioremap_cache() (Luiz Capitulino) [961581]
-- [pci] Generate uppercase hex for modalias var in uevent (Myron Stowe) [1325402]
-- [pci] Don't look for ACPI hotplug parameters if ACPI is disabled (Myron Stowe) [1325402]
-- [pci] Support 64-bit bridge windows if we have 64-bit dma_addr_t (Myron Stowe) [1325402]
-- [pci] Apply _HPX Link Control settings to all devices with a link (Myron Stowe) [1325402]
-- [include] pci: Don't oops on virtual buses in acpi_pci_get_bridge_handle() (Myron Stowe) [1325402]
-- [pci] Add ACS quirk for AMD A88X southbridge devices (Myron Stowe) [1325402]
-- [pci] msi: Remove unnecessary temporary variable (Myron Stowe) [1325402]
-- [pci] msi: Use __write_msi_msg() instead of write_msi_msg() (Myron Stowe) [1325402]
-- [powerpc] msi/powerpc: Use __read_msi_msg() instead of read_msi_msg() (Myron Stowe) [1325402]
-- [include] pci/msi: Remove "pos" from the struct msi_desc msi_attrib (Myron Stowe) [1325402]
-- [include] pci/msi: Remove unused kobject from struct msi_desc (Myron Stowe) [1325402]
-- [pci] msi: Rename pci_msi_check_device() to pci_msi_supported() (Myron Stowe) [1325402]
-- [pci] msi: Move D0 check into pci_msi_check_device() (Myron Stowe) [1325402]
-- [include] pci/msi: Remove arch_msi_check_device() (Myron Stowe) [1325402]
-- [include] pci: Add pci_remap_iospace() to map bus I/O resources (Myron Stowe) [1325402]
-- [include] pci: Add generic domain handling (Myron Stowe) [1325402]
-- [include] asm-generic/io.h: Fix ioport_map() for !CONFIG_GENERIC_IOMAP (Myron Stowe) [1325402]
-- [include] pci/aer: Rename PCI_ERR_UNC_TRAIN to PCI_ERR_UNC_UND (Myron Stowe) [1325402]
-- [pci] aer: Add additional PCIe AER error strings (Myron Stowe) [1325402]
-- [include] trace, ras: Add additional PCIe AER error strings (Myron Stowe) [1325402]
-- [include] trace, ras: Replace bare numbers with #defines for PCIe AER error strings (Myron Stowe) [1325402]
-- [pci] Remove assignment from complicated "if" conditions (Myron Stowe) [1325402]
-- [pci] Remove assignment from "if" conditions (Myron Stowe) [1325402]
-- [pci] Remove unnecessary curly braces (Myron Stowe) [1325402]
-- [pci] Add space before open parenthesis (Myron Stowe) [1325402]
-- [x86] pci: Mark PCI BIOS initialization code as such (Myron Stowe) [1325402]
-- [x86] pci: Constify pci_mmcfg_probes[] array (Myron Stowe) [1325402]
-- [x86] pci: Mark constants of pci_mmcfg_nvidia_mcp55() as __initconst (Myron Stowe) [1325402]
-- [x86] pci: Move __init annotation to the correct place (Myron Stowe) [1325402]
-- [include] pci: Remove unused pci_get_dma_source() (Myron Stowe) [1325402]
-- [include] pci: Remove unused pci_find_upstream_pcie_bridge() (Myron Stowe) [1325402]
-- [x86] pci: Mark DMI tables as initialization data (Myron Stowe) [1325402]
-- [pci] Generate uppercase hex for modalias interface class (Myron Stowe) [1325402]
-- [include] pci: Parenthesize PCI_DEVID and PCI_VPD_LRDT_ID parameters (Myron Stowe) [1325402]
-- [pci] Use device flag helper functions (Myron Stowe) [1325402]
-- [include] pci: Add device flag helper functions (Myron Stowe) [1325402]
-- [pci] Configure *all* devices, not just hot-added ones (Myron Stowe) [1325402]
-- [pci] Preserve MPS and MRRS when applying _HPX settings (Myron Stowe) [1325402]
-- [pci] Apply _HPP settings to all hot-added PCI devices (Myron Stowe) [1325402]
-- [pci] Preserve BIOS PCI_COMMAND_SERR and PCI_COMMAND_PARITY settings (Myron Stowe) [1325402]
-- [pci] Apply _HPP settings to PCIe devices as well as PCI and PCI-X (Myron Stowe) [1325402]
-- [include] pci: Remove unused pci_configure_slot() (Myron Stowe) [1325402]
-- [pci] acpi / hotplug / pci: Remove pci_configure_slot() usage (Myron Stowe) [1325402]
-- [pci] shpchp: Remove pci_configure_slot() usage (Myron Stowe) [1325402]
-- [pci] hp: Remove pci_configure_slot() usage (Myron Stowe) [1325402]
-- [pci] Add pci_configure_device() during enumeration (Myron Stowe) [1325402]
-- [pci] Move pci_configure_slot() to drivers/pci/probe.c (Myron Stowe) [1325402]
-- [pci] Whitespace cleanup in pci-acpi.c (Myron Stowe) [1325402]
-- [pci] Move pci_get_hp_params() to drivers/pci/pci-acpi.c (Myron Stowe) [1325402]
-- [pci] hp: Configure hot-added display devices (Myron Stowe) [1325402]
-- [include] pci: Enable CRS Software Visibility for root port if it is supported (Myron Stowe) [1325402]
-- [pci] Check only the Vendor ID to identify Configuration Request Retry (Myron Stowe) [1325402]
-- [include] pci/aer: Make <linux/aer.h> standalone includable (Myron Stowe) [1325402]
-- [kernel] resources: Add device-managed request/release_resource() (Myron Stowe) [1325402]
-- [pci] Remove unnecessary variable in pci_add_dynid() (Myron Stowe) [1325402]
-- [pci] pm: Allow PCI devices to be put into D3cold during system suspend (Myron Stowe) [1325402]
-- [pci] pm: Drop unused runtime PM support code for PCIe ports (Myron Stowe) [1325402]
-- [scsi] ipr: Use pci_enable_msi_range() and pci_enable_msix_range() (Myron Stowe) [1325402]
-- [scsi] ipr: Get rid of superfluous call to pci_disbale_msi/msix() (Myron Stowe) [1325402]
-- [block] nvme: Use pci_enable_msi_range() and pci_enable_msix_range() (Myron Stowe) [1325402]
-- [md] dm-cache-metadata: fix cmd_read_lock() acquiring write lock (Mike Snitzer) [1327629]
-- [md] dm-cache-metadata: fix READ_LOCK macros and cleanup WRITE_LOCK macros (Mike Snitzer) [1327629]
-- [md] dm: fix dm_target_io leak if clone_bio() returns an error (Mike Snitzer) [1327629]
-- [fs] nfsd: default NFSv4.2 to on ("J. Bruce Fields") [1272142]
-- [fs] ceph: don't increase filp->f_pos when readdir run out of buffer (Zheng Yan) [1320427]
-- [fs] gfs2: ignore unlock failures after withdraw (Benjamin Marzinski) [1250224]
-- [fs] fs: initmpfs replace MS_NOUSER in initramfs (Carlos Maiolino) [1225554]
-- [mm] actually clear pmd_numa before invalidating ("Herton R. Krzesinski") [1327265]
-- [mm] memcg: fix memcg_size() calculation ("Herton R. Krzesinski") [1327265]
-- [mm] hugetlb: check for pte NULL pointer in __page_check_address() ("Herton R. Krzesinski") [1327265]
-- [mm] compaction: respect ignore_skip_hint in update_pageblock_skip ("Herton R. Krzesinski") [1327265]
-- [kernel] sched/rt: Fix rq's cpupri leak while enqueue/dequeue child RT entities ("Herton R. Krzesinski") [1327265]
-- [kernel] ftrace: Initialize the ftrace profiler for each possible cpu ("Herton R. Krzesinski") [1327265]
-- [ipc] shm: correct error return value in shmctl(SHM_UNLOCK) ("Herton R. Krzesinski") [1327265]
-
-* Mon Apr 18 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-381.el7]
-- [powerpc] Align TOC to 256 bytes (Jan Stancek) [1327767]
-- [fs] sunrpc: Fix callback channel (Benjamin Coddington) [1315390]
-- [fs] nfs4: resend LAYOUTGET when there is a race that changes the seqid (Benjamin Coddington) [1315390]
-- [fs] nfs: if we have no valid attrs, then don't declare the attribute cache valid (Benjamin Coddington) [1315390]
-- [fs] nfs: ensure that attrcache is revalidated after a SETATTR (Benjamin Coddington) [1315390]
-- [fs] nfs4: limit callback decoding to received bytes (Benjamin Coddington) [1315390]
-- [fs] nfs4: start callback_ident at idr 1 (Benjamin Coddington) [1315390]
-- [fs] nfs: use sliding delay when LAYOUTGET gets NFS4ERR_DELAY (Benjamin Coddington) [1315390]
-- [fs] nfs4: Cleanup FATTR4_WORD0_FS_LOCATIONS after decoding success (Benjamin Coddington) [1315390]
-- [fs] nfs: Properly set NFS v4.2 NFSDBG_FACILITY (Benjamin Coddington) [1315390]
-- [fs] nfs: reduce the amount of ifdefs for v4.2 in nfs4file.c (Benjamin Coddington) [1315390]
-- [fs] nfs: use btrfs ioctl defintions for clone (Benjamin Coddington) [1315390]
-- [fs] nfs: allow intra-file CLONE (Benjamin Coddington) [1315390]
-- [fs] nfs: offer native ioctls even if CONFIG_COMPAT is set (Benjamin Coddington) [1315390]
-- [fs] nfs: pass on count for CLONE operations (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Supports hexadecimal number for sysctl files of sunrpc debug (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix GETATTR bitmap verification (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unused xdr page offsets in getacl/setacl arguments (Benjamin Coddington) [1315390]
-- [fs] fs/nfs: remove unnecessary new_valid_dev check (Benjamin Coddington) [1315390]
-- [fs] sunrpc: fix variable type (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: Add support for FF_FLAGS_NO_IO_THRU_MDS (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: When mirrored, retry failed reads by switching mirrors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Retry through MDS when getting bad length of data (Benjamin Coddington) [1315390]
-- [fs] nfs/blocklayout: Fix bad using of page offset in bl_read_pagelist (Benjamin Coddington) [1315390]
-- [fs] nfs: Return directly if encode_sessionid fail (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix bad checking of max taglen in callback request (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix bad defines of callback response maxsize (Benjamin Coddington) [1315390]
-- [fs] nfs: Use NFS4_MAX_SESSIONID_LEN directly for decode/encode sessionid (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unneeded NFS_DEBUG checking before define NFSDBG_FACILITY (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove the left function defines in callback.h (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove the left global variable nfs_callback_tcpport (Benjamin Coddington) [1315390]
-- [fs] nfs: Get rid of the unneeded addr stored in callback arguments (Benjamin Coddington) [1315390]
-- [fs] nfsroot: make nfsroot to accept the 1024 bytes long directory name (Benjamin Coddington) [1315390]
-- [fs] nfs: add missing linux/types.h (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix an 'unused variable' complaint when #ifndef CONFIG_NFS_V4_2 (Benjamin Coddington) [1315390]
-- [fs] nfs42: add NFS_IOC_CLONE_RANGE ioctl (Benjamin Coddington) [1315390]
-- [fs] nfs42: respect clone_blksize (Benjamin Coddington) [1315390]
-- [fs] nfs: get clone_blksize when probing fsinfo (Benjamin Coddington) [1315390]
-- [fs] nfs42: add NFS_IOC_CLONE ioctl (Benjamin Coddington) [1315390]
-- [fs] nfs42: add CLONE proc functions (Benjamin Coddington) [1315390]
-- [fs] nfs42: add CLONE xdr functions (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Unify synchronous and asynchronous error handling (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Don't use synchronous delegation recall in exception handling (Benjamin Coddington) [1315390]
-- [fs] nfsv4: nfs4_async_handle_error should take a non-const nfs_server (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Update the delay statistics counter for synchronous delays (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Refactor NFSv4 error handling (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix a tracepoint NULL-pointer dereference (Benjamin Coddington) [1315390]
-- [fs] nfs4: reset states to use open_stateid when returning delegation voluntarily (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: nfs4_opendata_check_deleg needs to handle NFS4_OPEN_CLAIM_DELEG_CUR_FH (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Don't try to reclaim unused state owners (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix up page writeback accounting (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: disconnect and flush cqs before freeing buffers (Benjamin Coddington) [1315390]
-- [fs] nfs41: make close wait for layoutreturn (Benjamin Coddington) [1315390]
-- [fs] nfs: Skip checking ds_cinfo.buckets when lseg's commit_through_mds is set (Benjamin Coddington) [1315390]
-- [fs] nfsv4.x/pnfs: Don't try to recover stateids twice in layoutget (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Recovery of recalled read delegations is broken (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix an infinite loop when layoutget fail with BAD_STATEID (Benjamin Coddington) [1315390]
-- [fs] nfs: Do cleanup before resetting pageio read/write to mds (Benjamin Coddington) [1315390]
-- [fs] sunrpc: xs_sock_mark_closed() does not need to trigger socket autoclose (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Lock the transport layer on shutdown (Benjamin Coddington) [1315390]
-- [fs] nfs/filelayout: Fix NULL reference caused by double freeing of fh_array (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Ensure that we wait for connections to complete before retrying (Benjamin Coddington) [1315390]
-- [fs] sunrpc: drop null test before destroy functions (Benjamin Coddington) [1315390]
-- [fs] nfs: fix pg_test page count calculation (Benjamin Coddington) [1315390]
-- [fs] nfs: Optimise away the close-to-open getattr if there is no cached data (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Clean up ff_layout_write_done_cb/ff_layout_commit_done_cb (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Mark the layout for return in ff_layout_io_track_ds_error() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unneeded checking of the return value from scnprintf (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix truncated client owner id without proto type (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Mark layout for return if the mirrors are invalid (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: RW layouts are valid only if all mirrors are valid (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Fix incorrect usage of pnfs_generic_mark_devid_invalid() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Fix freeing of mirrors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Don't request a minimal read layout beyond the end of file (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Handle LAYOUTGET return values correctly (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Don't ask for a read layout for an empty file (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Fix a protocol issue with CLOSE stateids (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Don't mark the entire deviceid as bad for file errors (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Prevent SYN+SYNACK+RST storms (Benjamin Coddington) [1315390]
-- [fs] sunrpc: xs_reset_transport must mark the connection as disconnected (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure layoutreturn reserves space for the opaque payload (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Fix a protocol error in layoutreturn (Benjamin Coddington) [1315390]
-- [fs] nfs: Send attributes in OPEN request for NFS4_CREATE_EXCLUSIVE4_1 (Benjamin Coddington) [1315390]
-- [fs] nfs: Get suppattr_exclcreat when getting server capabilities (Benjamin Coddington) [1315390]
-- [fs] nfs: Update NFS4_BITMAP_SIZE (Benjamin Coddington) [1315390]
-- [fs] nfs: Make opened as optional argument in _nfs4_do_open (Benjamin Coddington) [1315390]
-- [fs] nfs: Check size by inode_newsize_ok in nfs_setattr (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: pnfs_mark_matching_lsegs_return must notify of layout return (Benjamin Coddington) [1315390]
-- [fs] nfs42: remove unused declaration (Benjamin Coddington) [1315390]
-- [fs] nfs42: decode_layoutstats does not need res parameter (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Allow coalescing of new layout segments and existing ones (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Allow pNFS device drivers to customise layout segment insertion (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Add sanity check for the layout range returned by the server (Benjamin Coddington) [1315390]
-- [fs] NFSv4.1/pnfs Improve the packing of struct pnfs_layout_hdr (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfile: ff_layout_remove_mirror can be static (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2/pnfs: Make the layoutstats timer configurable (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfile: Ensure uniqueness of mirrors across layout segments (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Remove mirror backpointer to lseg (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Add refcounting to struct nfs4_ff_layout_mirror (Benjamin Coddington) [1315390]
-- [fs] nfs41/flexfiles: zero out DS write wcc (Benjamin Coddington) [1315390]
-- [fs] nfs41: remove NFS_LAYOUT_ROC flag (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Add a tracepoint for CB_LAYOUTRECALL (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Add a tracepoint for CB_GETATTR (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Add a tracepoint for return-on-close events (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Force a post-op attribute update when holding a delegation (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure flexfiles reports all connection related errors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure the flexfiles layoutstats timers are consistent (Benjamin Coddington) [1315390]
-- [fs] nfs41: fix list splice type (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Enable delegated opens even when reboot recovery is pending (Benjamin Coddington) [1315390]
-- [fs] pnfs: Fix an unused variable warning in pnfs_roc_get_barrier (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Allow sockets to do GFP_NOIO allocations (Benjamin Coddington) [1315390]
-- [fs] nfs41/flexfiles: update inode after write finishes (Benjamin Coddington) [1315390]
-- [fs] nfs41: make sure sending LAYOUTRETURN before close if marked so (Benjamin Coddington) [1315390]
-- [fs] revert "nfsv4: Remove incorrect check in can_open_delegated()" (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Play safe w.r.t. close() races when return-on-close is set (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix a close/delegreturn hang when return-on-close is set (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't fsync twice for O_SYNC/IS_SYNC files (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Drop double-underscores from __rpc_cmp_addr6() (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't let the ctime override attribute barriers (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove nfs_release() (Benjamin Coddington) [1315390]
-- [fs] nfs: Rename nfs_commit_unstable_pages() to nfs_write_inode() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove nfs41_server_notify_{target|highest}_slotid_update() (Benjamin Coddington) [1315390]
-- [fs] nfs: Combine nfs_idmap_{init|quit}() and nfs_idmap_{init|quit}_keyring() (Benjamin Coddington) [1315390]
-- [fs] nfs: Use RPC functions for matching sockaddrs (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Add an rpc_cmp_addr_port() function (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Drop double-underscores from rpc_cmp_addr{4|6}() (Benjamin Coddington) [1315390]
-- [fs] nfs: Rename nfs_readdir_free_pagearray() and nfs_readdir_large_page() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unused variable "pages_ptr" (Benjamin Coddington) [1315390]
-- [fs] nfs: remove some dead code in ff_layout_pg_get_mirror_count_write (Benjamin Coddington) [1315390]
-- [fs] pnfs: move common blocklayout XDR defintions to nfs4.h (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: pass proper file mode to blkdev_get/put (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: reject too long signatures (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: set up layoutupdate_pages properly (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: calculate layoutupdate size correctly (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a thinko in xs_connect() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix borken function _same_data_server_addrs_locked() (Benjamin Coddington) [1315390]
-- [fs] nfs: nfs_set_pgio_error sometimes misses errors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Remove redundant wakeup in pnfs_send_layoutreturn() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Remove redundant check in pnfs_layoutgets_blocked() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Remove redundant lo->plh_block_lgets in layoutreturn (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Don't prevent layoutgets when doing return-on-close (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix serialisation of layout return and layoutget (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Remove redundant checks in pnfs_layoutgets_blocked() (Benjamin Coddington) [1315390]
-- [fs] pnfs: Tighten up locking around DS commit buckets (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove duplicate svc_xprt_put from nfs41_callback_up (Benjamin Coddington) [1315390]
-- [fs] sunrpc: increase UNX_MAXNODENAME from 32 to __NEW_UTS_LEN bytes (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2/pnfs: Use GFP_NOIO for layoutstat reporting in the writeback path (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: LAYOUTSTATS ii_count should be ops instead of bytes (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix atomicity of commit list updates (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: take HCA driver refcount at client (Benjamin Coddington) [1315390]
-- [fs] core: Remove the ib_reg_phys_mr() and ib_rereg_phys_mr() verbs (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Count RDMA_NOMSG type calls (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Clean up xprt_rdma_print_stats() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Fix large NFS SYMLINK calls (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Fix XDR tail buffer marshalling (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Don't provide a reply chunk when expecting a short reply (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Always provide a write list when sending NFS READ (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Account for RPC/RDMA header size when deciding to inline (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove logic that constructs RDMA_MSGP type calls (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Clean up rpcrdma_ia_open() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove last ib_reg_phys_mr() call site (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Don't fall back to PHYSICAL memory registration (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Increase default credit limit (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Raise maximum payload size to one megabyte (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Make xprt_setup_rdma() agnostic to family of server address (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix an oops caused by using other thread's stack space in ASYNC mode (Benjamin Coddington) [1315390]
-- [fs] nfs: plug memory leak when ->prepare_layoutcommit fails (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Report TCP errors to the caller (Benjamin Coddington) [1315390]
-- [fs] sunrpc: translate -EAGAIN to -ENOBUFS when socket is writable (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't clear desc->pg_moreio in nfs_do_recoalesce() (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix a memory leak in nfs_do_recoalesce (Benjamin Coddington) [1315390]
-- [fs] nfs: nfs_mark_for_revalidate should always set NFS_INO_REVAL_PAGECACHE (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove the "NFS_CAP_CHANGE_ATTR" capability (Benjamin Coddington) [1315390]
-- [fs] nfs: Set NFS_INO_REVAL_PAGECACHE if the change attribute is uninitialised (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't revalidate the mapping if both size and change attr are up to date (Benjamin Coddington) [1315390]
-- [fs] nfsv4/pnfs: Ensure we don't miss a file extension (Benjamin Coddington) [1315390]
-- [fs] sunrpc: xprt_complete_bc_request must also decrement the free slot count (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a backchannel deadlock (Benjamin Coddington) [1315390]
-- [fs] pnfs: Don't throw out valid layout segments (Benjamin Coddington) [1315390]
-- [fs] pnfs: pnfs_roc_drain() fix a race with open (Benjamin Coddington) [1315390]
-- [fs] pnfs: Fix races between return-on-close and layoutreturn (Benjamin Coddington) [1315390]
-- [fs] pnfs: pnfs_roc_drain should return 'true' when sleeping (Benjamin Coddington) [1315390]
-- [fs] pnfs: Layoutreturn must invalidate all existing layout segments (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2/flexfiles: Fix a typo in the flexfiles layoutstats code (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Leases are renewed in sequence_done when we have sessions (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: nfs41_sequence_done should handle sequence flag errors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Handle SEQ4_STATUS_BACKCHANNEL_FAULT correctly (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Handle SEQ4_STATUS_RECALLABLE_STATE_REVOKED status bit correctly (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Handle SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED status bit correctly (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Don't confuse ENOBUFS with a write_space issue (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Don't reencode message if transmission failed with ENOBUFS (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove invalid tk_pid from debug message (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove invalid NFS_ATTR_FATTR_V4_REFERRAL checking in nfs4_get_rootfh (Benjamin Coddington) [1315390]
-- [fs] nfs: Drop bad comment in nfs41_walk_client_list() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unneeded micro checking of CONFIG_PROC_FS (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't setting FILE_CREATED flags always (Benjamin Coddington) [1315390]
-- [fs] nfs: Use remove_proc_subtree() instead remove_proc_entry() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unused argument in nfs_server_set_fsinfo() (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix a memory leak when meeting an unsupported state protect (Benjamin Coddington) [1315390]
-- [fs] nfs: take extra reference to fl->fl_file when running a LOCKU operation (Benjamin Coddington) [1315390]
-- [fs] nfsv4: When returning a delegation, don't reclaim an incompatible open mode (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2: LAYOUTSTATS is optional to implement (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2: Fix up a decoding error in layoutstats (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: Fix the reset of struct pgio_header when resending (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: Turn off layoutcommit for servers that don't need it (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: protect ktime manipulation with mirror lock (Benjamin Coddington) [1315390]
-- [fs] nfs: provide pnfs_report_layoutstat when NFS42 is disabled (Benjamin Coddington) [1315390]
-- [fs] nfs: always update creds in mirror, even when we have an already connected ds (Benjamin Coddington) [1315390]
-- [fs] nfs: fix potential credential leak in ff_layout_update_mirror_cred (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: report layoutstat regularly (Benjamin Coddington) [1315390]
-- [fs] nfs42: serialize LAYOUTSTATS calls of the same file (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: encode LAYOUTSTATS flexfiles specific data (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: add ff_layout_prepare_layoutstats (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: track when layout is first used (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: add layoutstats tracking (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: Remove unused struct members user_name, group_name (Benjamin Coddington) [1315390]
-- [fs] pnfs: add pnfs_report_layoutstat helper function (Benjamin Coddington) [1315390]
-- [fs] pnfs: fill in nfs42_layoutstat_ops (Benjamin Coddington) [1315390]
-- [fs] pnfs: Add a LAYOUTSTATS rpc function (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Set the TCP user timeout option on client sockets (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Ensure we release the TCP socket once it has been closed (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Handle connection issues correctly on the back channel (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix comment for nfs_pageio_init() and nfs_pageio_complete_mirror() (Benjamin Coddington) [1315390]
-- [fs] sunrpc: use sg_init_one() in krb5_rc4_setup_enc/seq_key() (Benjamin Coddington) [1315390]
-- [fs] nfs: Ensure we set NFS_CONTEXT_RESEND_WRITES when requeuing writes (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Fix stateid recovery on revoked delegations (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix showing truncated fsid/dev in, /proc/net/nfsfs/volumes (Benjamin Coddington) [1315390]
-- [fs] nfs: make nfs4_init_uniform_client_string use a dynamically allocated buffer (Benjamin Coddington) [1315390]
-- [fs] nfs: make nfs4_init_nonuniform_client_string use a dynamically allocated buffer (Benjamin Coddington) [1315390]
-- [fs] nfs: update maxsz values for SETCLIENTID and EXCHANGE_ID (Benjamin Coddington) [1315390]
-- [fs] nfs: convert setclientid and exchange_id encoders to use clp->cl_owner_id (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: use swap() in ff_layout_sort_mirrors() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Reduce per-transport MR allocation (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Stack relief in fmr_op_map() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Split rb_lock (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rpcrdma_ia::ri_memreg_strategy (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove ->ro_reset (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove unused LOCAL_INV recovery logic (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Acquire MRs in rpcrdma_register_external() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Introduce an FRMR recovery workqueue (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Acquire FMRs in rpcrdma_fmr_register_external() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Introduce helpers for allocating MWs (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Use ib_device pointer safely (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rr_func (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Replace rpcrdma_rep::rr_buffer with rr_rxprt (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Warn when there are orphaned IB objects (Benjamin Coddington) [1315390]
-- [fs] nfs: Ensure that we update the sequence id under the slot table lock (Benjamin Coddington) [1315390]
-- [fs] nfs: Initialize cb_sequenceres information before validate_seqid() (Benjamin Coddington) [1315390]
-- [fs] nfs: deny backchannel RPCs with an incorrect authflavor instead of dropping them (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Address kbuild warning in net/sunrpc/debugfs.c (Benjamin Coddington) [1315390]
-- [fs] nfs: Only update callback sequnce id when CB_SEQUENCE success (Benjamin Coddington) [1315390]
-- [fs] nfs: Convert use of __constant_htonl to htonl (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Transport fault injection (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unused nfs_rw_ops->rw_release() function (Benjamin Coddington) [1315390]
-- [fs] sunrpc: turn swapper_enable/disable functions into rpc_xprt_ops (Benjamin Coddington) [1315390]
-- [fs] sunrpc: lock xprt before trying to set memalloc on the sockets (Benjamin Coddington) [1315390]
-- [fs] sunrpc: if we're closing down a socket, clear memalloc on it first (Benjamin Coddington) [1315390]
-- [fs] sunrpc: make xprt->swapper an atomic_t (Benjamin Coddington) [1315390]
-- [fs] sunrpc: keep a count of swapfiles associated with the rpc_clnt (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a backchannel race (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Clean up allocation and freeing of back channel requests (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Remove unused argument 'tk_ops' in rpc_run_bc_task (Benjamin Coddington) [1315390]
-- [fs] nfsv4: nfs4_handle_delegation_recall_error should ignore EAGAIN (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Clean up bc_send() (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Backchannel handle socket nospace (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a memory leak in the backchannel code (Benjamin Coddington) [1315390]
-- [fs] nfs: drop unneeded goto (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix size of NFSACL SETACL operations (Benjamin Coddington) [1315390]
-- [fs] nfs: report more appropriate block size for directories (Benjamin Coddington) [1315390]
-- [fs] nfs: stat(2) fails during cthon04 basic test5 on NFSv4.0 (Benjamin Coddington) [1315390]
-- [fs] fs/nfs: fix new compiler warning about boolean in switch (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unneeded casts in nfs (Benjamin Coddington) [1315390]
-- [fs] revert "nfs: replace nfs_add_stats with nfs_inc_stats when add one" (Benjamin Coddington) [1315390]
-- [fs] nfs: Rename idmap.c to nfs4idmap.c (Benjamin Coddington) [1315390]
-- [fs] nfs: Move nfs_idmap.h into fs/nfs/ (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove CONFIG_NFS_V4 checks from nfs_idmap.h (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Make rpcrdma_{un}map_one() into inline functions (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Handle non-SEND completions via a callout (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add "open" memreg op (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add "destroy MRs" memreg op (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add "reset MRs" memreg op (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add "init MRs" memreg op (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add a "deregister_external" op for each memreg mode (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add a "register_external" op for each memreg mode (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add a "max_payload" op for each memreg mode (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add vector of ops for each memory registration strategy (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Prevent infinite loop in rpcrdma_ep_create() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Byte-align FRWR registration (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Perform a full marshal on retransmit (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Display IPv6 addresses and port numbers correctly (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Introduce missing well-known netids (Benjamin Coddington) [1315390]
-- [fs] nfs: Block new writes while syncing data in nfs_getattr() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Separate out metadata and data consistency for pNFS (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure we send layoutcommit before return-on-close (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure that writes respect the O_SYNC flag when doing O_DIRECT (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Truncating file opens should also sync O_DIRECT writes (Benjamin Coddington) [1315390]
-- [fs] nfs: File unlock needs to be a metadata synchronisation point (Benjamin Coddington) [1315390]
-- [fs] nfs: Add a helper to sync both O_DIRECT and buffered writes (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Refactor pnfs_set_layoutcommit() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix setting of layoutcommit last write byte (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Return the delegation before returning the layout in evict_inode() (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Allow tracing of NFSv4 fsync calls (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix free_deveiceid -> free_deviceid (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Don't cache deviceids that have no notifications (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Allow getdeviceinfo to return notification info back to caller (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Cleanup - don't opencode nfs4_put_deviceid_node() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Convert pNFS deviceid to use kfree_rcu() (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Return delegations synchronously in evict_inode (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a regression when reconnecting (Benjamin Coddington) [1315390]
-- [fs] nfs: clean up nfs_direct_IO (Benjamin Coddington) [1315390]
-- [fs] sunrpc: fix build-warning due to format missmatch (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Append delegations to the per-client list instead of prepending (Benjamin Coddington) [1315390]
-- [fs] sunrpc: use jiffies_to_msecs for converting jiffies (Benjamin Coddington) [1315390]
-- [fs] nfs: remount with security change should return EINVAL (Benjamin Coddington) [1315390]
-- [fs] nfs: do not export discarded symbols (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: don't export static symbol (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Clear the old state by our client id before establishing a new lease (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Fix a race in NFSv4.1 server trunking discovery (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't write enable new pages while an invalidation is proceeding (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't require a filehandle to refresh the inode in nfs_prime_dcache() (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Set a barrier in the update_changeattr() helper (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix nfs_post_op_update_inode() to set an attribute barrier (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove size hack in nfs_inode_attrs_need_update() (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Add attribute update barriers to delegreturn and pNFS layoutcommit (Benjamin Coddington) [1315390]
-- [fs] nfs: Add attribute update barriers to NFS writebacks (Benjamin Coddington) [1315390]
-- [fs] nfs: Set an attribute barrier on all updates (Benjamin Coddington) [1315390]
-- [fs] nfs: Add attribute update barriers to nfs_setattr_update_inode() (Benjamin Coddington) [1315390]
-- [fs] nfs: Add a helper to set attribute barriers (Benjamin Coddington) [1315390]
-- [fs] nfs: Ensure that buffered writes wait for O_DIRECT writes to complete (Benjamin Coddington) [1315390]
-- [fs] nfsv4: nfs4_open_recover_helper() must set share access (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Store RDMA credits in unsigned variables (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Clean up bind_conn_to_session (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Always set up a forward channel when binding the session (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Don't set up a backchannel if the server didn't agree to do so (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Clean up create_session (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Kill unused nfs_inode->delegation_state field (Benjamin Coddington) [1315390]
-- [fs] nfs: Can call nfs_clear_page_commit() instead (Benjamin Coddington) [1315390]
-- [fs] nfs: Provide and use helper functions for marking a page as unstable (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Always manipulate rpc_rqst::rq_bc_pa_list under xprt->bc_pa_lock (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Convert open-coded array allocation calls to kmalloc_array() (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Cleanup to remove xs_tcp_close() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Optimise layout return-on-close (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Address sparse complaint in rpcr_to_rdmar() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Ask for no delegation on OPEN if using O_DIRECT (Benjamin Coddington) [1315390]
-- [fs] nfs: Add Anna Schumaker as co-maintainer for the NFS client (Benjamin Coddington) [1315390]
-- [fs] nfs: a couple off by ones (Benjamin Coddington) [1315390]
-- [fs] nfs: prevent truncate on active swapfile (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Update the GFP flags used in xprt_rdma_allocate() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Clean up after adding regbuf management (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Allocate zero pad separately from rpcrdma_buffer (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Allocate RPC/RDMA receive buffer separately from struct rpcrdma_rep (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Allocate RPC/RDMA send buffer separately from struct rpcrdma_req (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Allocate RPC send buffer separately from struct rpcrdma_req (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add struct rpcrdma_regbuf and helpers (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Refactor rpcrdma_buffer_create() and rpcrdma_buffer_destroy() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Simplify synopsis of rpcrdma_buffer_create() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Take struct ib_qp_attr and ib_qp_init_attr off the stack (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Take struct ib_device_attr off the stack (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Free the pd if ib_query_qp() fails (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rpcrdma_ep::rep_func and ::rep_xprt (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Move credit update to RPC reply handler (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rl_mr field, and the mr_chunk union (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rpcrdma_ep::rep_ia (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Rename "xprt" and "rdma_connect" fields in struct rpcrdma_xprt (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Clean up hdrlen (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Display XIDs in host byte order (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Modernize htonl and ntohl (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: human-readable completion status (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Deal with atomic upgrades of an existing delegation (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Replace usage of nfs_client->cl_addr in encode_create_session (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Allow waiting on memory allocation (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Remove incorrect check in can_open_delegated() (Benjamin Coddington) [1315390]
-- [fs] nfs: Ignore transport protocol when detecting server trunking (Benjamin Coddington) [1315390]
-- [fs] nfsv4/v4.1: Verify the client owner id during trunking detection (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Cache the NFSv4/v4.1 client owner_id in the struct nfs_client (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: fix end calculation in pnfs_num_cont_bytes (Benjamin Coddington) [1315390]
-- [fs] sunrpc: add some tracepoints in svc_rqst handling functions (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Display async errors (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Enable pad optimization (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Re-write rpcrdma_flush_cqs() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Refactor tasklet scheduling (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: unmap all FMRs during transport disconnect (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Cap req_cqinit (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Return an errno from rpcrdma_register_external() (Benjamin Coddington) [1315390]
-- [fs] nfs: define nfs_inc_fscache_stats and using it as possible (Benjamin Coddington) [1315390]
-- [fs] nfs: replace nfs_add_stats with nfs_inc_stats when add one (Benjamin Coddington) [1315390]
-- [fs] nfs: Deletion of unnecessary checks before the function call "nfs_put_client" (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove dead case from nfs4_map_errors() (Benjamin Coddington) [1315390]
-- [fs] nfs/sunrpc: Remove other deadlock-avoidance mechanisms in nfs_release_page() (Benjamin Coddington) [1315390]
-- [fs] nfs: avoid waiting at all in nfs_release_page when congested (Benjamin Coddington) [1315390]
-- [fs] nfs: avoid deadlocks with loop-back mounted NFS filesystems (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Enforce an upper limit on the number of cached credentials (Benjamin Coddington) [1315390]
-- [fs] nfs: Enforce an upper limit on the number of cached access call (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix potential memory scribble in xprt_free_bc_request() (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Ensure that gss_auth isn't freed before its upcall messages (Benjamin Coddington) [1315390]
-- [fs] nfs: Use PTR_ERR_OR_ZERO in 'nfs41_callback_up' function (Benjamin Coddington) [1315390]
-- [fs] nfs: Use PTR_ERR_OR_ZERO in 'nfs/nfs4super.c' (Benjamin Coddington) [1315390]
-
-* Thu Apr 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-380.el7]
-- [netdrv] ptp: Add PTP_SYS_OFFSET_PRECISE for driver crosstimestamping (Prarit Bhargava) [1273198]
-- [x86] tsc: Always Running Timer correlated clocksource (Prarit Bhargava) [1273198]
-- [kernel] time: Add history to cross timestamp interface supporting slower devices (Prarit Bhargava) [1273198]
-- [kernel] time: Add driver cross timestamp interface for higher precision time synchronization (Prarit Bhargava) [1273198]
-- [kernel] time: Remove duplicated code in ktime_get_raw_and_real() (Prarit Bhargava) [1273198]
-- [kernel] time: Add timekeeping snapshot code capturing system time and counter (Prarit Bhargava) [1273198]
-- [kernel] time: Add cycles to nanoseconds translation (Prarit Bhargava) [1273198]
-- [kernel] timekeeping: Add timekeeping_get_delta() (Prarit Bhargava) [1273198]
-- [kernel] timekeeping: Simplify arch_gettimeoffset() (Prarit Bhargava) [1273198]
-- [kernel] time: Add timerkeeper::tkr_raw (Prarit Bhargava) [1321924]
-- [kernel] time: Rename timekeeper::tkr to timekeeper::tkr_mono (Prarit Bhargava) [1321924]
-- [kernel] timekeeping: Use tk_read_base as argument for timekeeping_get_ns() (Prarit Bhargava) [1321924]
-- [kernel] timekeeping: Create struct tk_read_base and use it in struct timekeeper (Prarit Bhargava) [1321924]
-- [kernel] timekeeping: Provide ktime_get_raw() (Prarit Bhargava) [1321924]
-- [kernel] time: Consolidate the time accessor prototypes (Prarit Bhargava) [1321924]
-- [usb] xhci: Workaround to get Intel xHCI reset working more reliably (Torez Smith) [1288941 1318570]
-- [idle] intel_idle: Add SKX support (Steve Best) [1258088]
-- [scsi] hpsa: update rev to 3.4.10-0-RH3 (Joseph Szczypek) [1296287]
-- [scsi] hpsa: check for a null phys_disk pointer in ioaccel2 path (Joseph Szczypek) [1296287]
-- [scsi] ses: fix discovery of SATA devices in SAS enclosures (Maurizio Lombardi) [1251124]
-- [scsi] scsi_transport_sas: add function to get SAS endpoint address (Maurizio Lombardi) [1251124]
-- [scsi] scsi_transport_sas: add is_sas_attached() function (Maurizio Lombardi) [1251124]
-- [scsi] ses: fix additional element traversal bug (Maurizio Lombardi) [1251124]
-- [scsi] ses: Add power_status to SES device slot (Maurizio Lombardi) [1251124]
-- [scsi] ses: add reliable slot attribute (Maurizio Lombardi) [1251124]
-- [scsi] ses: add enclosure logical id (Maurizio Lombardi) [1251124]
-- [scsi] ses: generate KOBJ_CHANGE on enclosure attach (Maurizio Lombardi) [1251124]
-- [scsi] ses: close potential registration race (Maurizio Lombardi) [1251124]
-- [scsi] add support for multiple hardware queues in scsi_(host_)find_tag (Ewan Milne) [1320306]
-- [scsi] fnic: move printk()s outside of the critical code section (Maurizio Lombardi) [1269289]
-- [tools] power turbostat: initial SKX support (Steve Best) [1273744]
-- [scripts] module: set ksymtab/kcrctab* section addresses to 0x0 (Phillip Lougher) [892004]
-- [cpufreq] powernv: Hot-plug safe the kworker thread (Steve Best) [1325776]
-- [powercap] intel_rapl: Add missing Haswell model (Steve Best) [1326231]
-
-* Wed Apr 13 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-379.el7]
-- [scripts] kbuild: create directory for dir/file.o (Jiri Olsa) [1323852]
-- [tools] perf tests: Fix attr tests (Jiri Olsa) [1323852]
-- [tools] perf stat: Fix interval output values (Jiri Olsa) [1323852]
-- [tools] perf probe: Search both .eh_frame and .debug_frame sections for probe location (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix thread lifetime related segfaut in intel_pt (Jiri Olsa) [1323852]
-- [tools] perf tools: tracepoint_error() can receive e=NULL, robustify it (Jiri Olsa) [1323852]
-- [tools] perf stat: Do not clean event's private stats (Jiri Olsa) [1323852]
-- [tools] perf hists: Fix HISTC_MEM_DCACHELINE width setting (Jiri Olsa) [1323852]
-- [tools] perf annotate browser: Fix behaviour of Shift-Tab with nothing focussed (Jiri Olsa) [1323852]
-- [tools] perf tests: Remove wrong semicolon in while loop in CQM test (Jiri Olsa) [1323852]
-- [tools] perf build: Introduce FEATURES_DUMP make variable (Jiri Olsa) [1323852]
-- [tools] perf build: Add feature-dump target (Jiri Olsa) [1323852]
-- [tools] perf build: Pass O option to kernel makefile in build-test (Jiri Olsa) [1323852]
-- [tools] perf build: Test correct path of perf in build-test (Jiri Olsa) [1323852]
-- [tools] perf build: Pass O option to Makefile.perf in build-test (Jiri Olsa) [1323852]
-- [tools] perf build: Set parallel making options build-test (Jiri Olsa) [1323852]
-- [tools] perf symbols: Fix reading of build-id from vDSO (Jiri Olsa) [1323852]
-- [tools] perf kvm record/report: 'unprocessable sample' error while recording/reporting guest data (Jiri Olsa) [1323852]
-- [tools] perf tools: Fallback to srcdir/Documentation/tips.txt (Jiri Olsa) [1323852]
-- [tools] perf ui/tui: Print helpline message as is (Jiri Olsa) [1323852]
-- [tools] perf tools: Set and pass DOCDIR to builtin-report.c (Jiri Olsa) [1323852]
-- [tools] perf tools: Add file_only config option to strlist (Jiri Olsa) [1323852]
-- [tools] perf tools: Add more usage tips (Jiri Olsa) [1323852]
-- [tools] perf record: Add --buildid-all option (Jiri Olsa) [1323852]
-- [tools] subcmd: Add missing NORETURN define for parse-options.h (Jiri Olsa) [1323852]
-- [tools] Make list.h self-sufficient (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix mmap2 event allocation in synthesize code (Jiri Olsa) [1323852]
-- [tools] perf stat: Fix recort_usage typo (Jiri Olsa) [1323852]
-- [tools] perf test: Reset err after using it hold errcode in hist testcases (Jiri Olsa) [1323852]
-- [tools] perf test: Fix false TEST_OK result for 'perf test hist' (Jiri Olsa) [1323852]
-- [tools] Move Makefile.arch from perf/config to tools/scripts (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix phony build target for build-test (Jiri Olsa) [1323852]
-- [tools] perf tools: Add -lutil in python lib list for broken python-config (Jiri Olsa) [1323852]
-- [tools] perf tools: Add missing sources to perf's MANIFEST (Jiri Olsa) [1323852]
-- [tools] perf evlist: Add --trace-fields option to show trace fields (Jiri Olsa) [1323852]
-- [tools] perf record: Store data mmaps for dwarf unwind (Jiri Olsa) [1323852]
-- [tools] perf libdw: Check for mmaps also in MAP__VARIABLE tree (Jiri Olsa) [1323852]
-- [tools] perf unwind: Check for mmaps also in MAP__VARIABLE tree (Jiri Olsa) [1323852]
-- [tools] perf unwind: Use find_map function in access_dso_mem (Jiri Olsa) [1323852]
-- [tools] perf evlist: Remove perf_evlist__(enable|disable)_event functions (Jiri Olsa) [1323852]
-- [tools] perf evlist: Make perf_evlist__open() open evsels with their cpus and threads (like perf record does) (Jiri Olsa) [1323852]
-- [tools] perf report: Show random usage tip on the help line (Jiri Olsa) [1323852]
-- [tools] perf hists: Export a couple of hist functions (Jiri Olsa) [1323852]
-- [tools] perf diff: Use perf_hpp__register_sort_field interface (Jiri Olsa) [1323852]
-- [tools] perf tools: Add overhead/overhead_children keys defaults via string (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove list entry from struct sort_entry (Jiri Olsa) [1323852]
-- [tools] perf tools: Include all tools/lib directory for tags/cscope/TAGS targets (Jiri Olsa) [1323852]
-- [tools] perf script: Align event name properly (Jiri Olsa) [1323852]
-- [tools] perf tools: Add missing headers in perf's MANIFEST (Jiri Olsa) [1323852]
-- [tools] perf tools: Do not show trace command if it's not compiled in (Jiri Olsa) [1323852]
-- [tools] perf report: Change default to use event group view (Jiri Olsa) [1323852]
-- [tools] perf top: Decay periods in callchains (Jiri Olsa) [1323852]
-- [tools] lib: Move bitmap.[ch] from tools/perf/ to tools/{lib, include}/ (Jiri Olsa) [1323852]
-- [tools] lib: Sync tools/lib/find_bit.c with the kernel (Jiri Olsa) [1323852]
-- [tools] lib: Move find_next_bit.c to tools/lib/ (Jiri Olsa) [1323852]
-- [tools] perf tests: Give a bit more information on the CQM test failure path (Jiri Olsa) [1323852]
-- [tools] perf tests: No need to set attr.sample_freq for tracking !PERF_RECORD_SAMPLE (Jiri Olsa) [1323852]
-- [tools] perf python: Add missing files to binding link list (Jiri Olsa) [1323852]
-- [tools] perf test: No need for setting attr.sample_freq on the RECORD test (Jiri Olsa) [1323852]
-- [tools] perf test: Use "dummy" events in the PERF_RECORD_ test (Jiri Olsa) [1323852]
-- [tools] perf evlist: Introduce perf_evlist__new_dummy constructor (Jiri Olsa) [1323852]
-- [tools] perf tests: No need to set attr.sample_freq in the perf time to TSC test (Jiri Olsa) [1323852]
-- [tools] perf pmu: fix alias->snapshot missing initialization bug (Jiri Olsa) [1323852]
-- [tools] perf script: Add stat-cpi.py script (Jiri Olsa) [1323852]
-- [tools] perf script: Display stat events by default (Jiri Olsa) [1323852]
-- [tools] perf cpumap: Fix cpu conversion in cpu_map__from_entries (Jiri Olsa) [1323852]
-- [tools] perf script: Add python support for stat events (Jiri Olsa) [1323852]
-- [tools] perf script: Add stat default handlers (Jiri Olsa) [1323852]
-- [tools] perf script: Add process_stat/process_stat_interval scripting interface (Jiri Olsa) [1323852]
-- [tools] perf script: Process stat config event (Jiri Olsa) [1323852]
-- [tools] perf script: Process cpu/threads maps (Jiri Olsa) [1323852]
-- [tools] perf stat record: Keep sample_type 0 for pipe session (Jiri Olsa) [1323852]
-- [tools] perf report: Add documentation for dynamic sort keys (Jiri Olsa) [1323852]
-- [tools] perf tools: Add all matching dynamic sort keys for field name (Jiri Olsa) [1323852]
-- [tools] build feature: Use value assignment form for FEATURE-DUMP file (Jiri Olsa) [1323852]
-- [tools] build feature: Introduce feature_assign macro (Jiri Olsa) [1323852]
-- [tools] build feature: Move dwarf post unwind choice output into perf (Jiri Olsa) [1323852]
-- [tools] build feature: Fix feature_check_display_code typo (Jiri Olsa) [1323852]
-- [tools] perf tools: Make 'trace' or 'trace_fields' sort key default for tracepoint events (Jiri Olsa) [1323852]
-- [tools] perf tools: Add 'trace_fields' dynamic sort key (Jiri Olsa) [1323852]
-- [tools] perf tools: Skip dynamic fields not defined for current event (Jiri Olsa) [1323852]
-- [tools] perf tools: Support '<event>.*' dynamic sort key (Jiri Olsa) [1323852]
-- [tools] perf tools: Support shortcuts for events in dynamic sort keys (Jiri Olsa) [1323852]
-- [tools] perf report/top: Add --raw-trace option (Jiri Olsa) [1323852]
-- [tools] perf tools: Add 'trace' sort key (Jiri Olsa) [1323852]
-- [tools] perf tools: Try to show pretty printed output for dynamic sort keys (Jiri Olsa) [1323852]
-- [tools] perf tools: Add dynamic sort key for tracepoint events (Jiri Olsa) [1323852]
-- [tools] perf tools: Pass evlist to setup_sorting() (Jiri Olsa) [1323852]
-- [tools] perf top: Create the evlist sooner (Jiri Olsa) [1323852]
-- [tools] lib traceevent: Factor out and export print_event_field[s]() (Jiri Olsa) [1323852]
-- [tools] perf hist: Save raw_data/size for tracepoint events (Jiri Olsa) [1323852]
-- [tools] perf hist: Pass struct sample to __hists__add_entry() (Jiri Olsa) [1323852]
-- [tools] perf stat report: Allow to override aggr_mode (Jiri Olsa) [1323852]
-- [tools] perf stat report: Process event update events (Jiri Olsa) [1323852]
-- [tools] perf stat report: Process stat and stat round events (Jiri Olsa) [1323852]
-- [tools] perf stat report: Move csv_sep initialization before report command (Jiri Olsa) [1323852]
-- [tools] perf stat report: Add support to initialize aggr_map from file (Jiri Olsa) [1323852]
-- [tools] perf stat report: Process stat config event (Jiri Olsa) [1323852]
-- [tools] perf stat report: Process cpu/threads maps (Jiri Olsa) [1323852]
-- [tools] perf stat report: Add report command (Jiri Olsa) [1323852]
-- [tools] perf stat record: Synthesize event update events (Jiri Olsa) [1323852]
-- [tools] perf stat record: Do not allow record with multiple runs mode (Jiri Olsa) [1323852]
-- [tools] perf stat record: Write stat round events on record (Jiri Olsa) [1323852]
-- [tools] perf stat record: Write stat events on record (Jiri Olsa) [1323852]
-- [tools] perf stat record: Add pipe support for record command (Jiri Olsa) [1323852]
-- [tools] perf stat record: Store events IDs in perf data file (Jiri Olsa) [1323852]
-- [tools] perf evlist: Export id_add_fd() (Jiri Olsa) [1323852]
-- [tools] perf stat record: Synthesize stat record data (Jiri Olsa) [1323852]
-- [tools] perf stat record: Initialize record features (Jiri Olsa) [1323852]
-- [tools] perf stat record: Add record command (Jiri Olsa) [1323852]
-- [tools] perf tools: Introduce stat perf.data header feature (Jiri Olsa) [1323852]
-- [tools] perf report: Display newly added events in raw dump (Jiri Olsa) [1323852]
-- [tools] perf tools: Add perf_event__fprintf_event_update function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update event cpus type (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update event name type (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update event scale type (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update event unit type (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update user level event (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat events fprintf functions (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat round event synthesize function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat round user level event (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat event read function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat event synthesize function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat user level event (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat config event read function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat config event synthesize function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat config user level event (Jiri Olsa) [1323852]
-- [tools] perf cpu_map: Add perf_event__fprintf_cpu_map function (Jiri Olsa) [1323852]
-- [tools] perf cpu_map: Add cpu_map__new_event function (Jiri Olsa) [1323852]
-- [tools] perf cpu_map: Add cpu_map event synthesize function (Jiri Olsa) [1323852]
-- [tools] perf cpu_map: Add cpu_map user level event (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Add perf_event__fprintf_thread_map function (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Add thread_map__new_event function (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Add thread_map event sythesize function (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Add thread_map user level event (Jiri Olsa) [1323852]
-- [tools] subcmd: Rename subcmd header include guards (Jiri Olsa) [1323852]
-- [tools] perf subcmd: Create subcmd library (Jiri Olsa) [1323852]
-- [tools] perf tools: Finalize subcmd independence (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove 'perf' from subcmd function and variable names (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove subcmd dependencies on strbuf (Jiri Olsa) [1323852]
-- [tools] perf tools: Provide subcmd configuration at runtime (Jiri Olsa) [1323852]
-- [tools] perf tools: Document the fact that parse_options*() may exit (Jiri Olsa) [1323852]
-- [tools] perf tools: Move strlcpy() from perf to tools/lib/string.c (Jiri Olsa) [1323852]
-- [tools] build: Fix feature Makefile issues with 'O=' (Jiri Olsa) [1323852]
-- [tools] perf record: Add record.build-id config option (Jiri Olsa) [1323852]
-- [tools] perf tools: Make options always available, even if required libs not linked (Jiri Olsa) [1323852]
-- [tools] perf tools: Convert parse-options.c internal functions to static (Jiri Olsa) [1323852]
-- [tools] perf tools: Move help_unknown_cmd() to its own file (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove check for unused PERF_PAGER_IN_USE (Jiri Olsa) [1323852]
-- [tools] perf tools: Create pager.h (Jiri Olsa) [1323852]
-- [tools] perf build: Rename LIB_PATH -> API_PATH (Jiri Olsa) [1323852]
-- [tools] perf build: Fix 'make clean' (Jiri Olsa) [1323852]
-- [tools] perf test: Remove tarpkg at end of test (Jiri Olsa) [1323852]
-- [tools] perf build: Remove unnecessary line in Makefile.feature (Jiri Olsa) [1323852]
-- [tools] perf test: Fix hist testcases when kptr_restrict is on (Jiri Olsa) [1323852]
-- [tools] perf thread: Fix reference count initial state (Jiri Olsa) [1323852]
-- [tools] perf test: Dump the stack when test segfaults when in verbose mode (Jiri Olsa) [1323852]
-- [tools] perf tools: Use same signal handling strategy as 'record' (Jiri Olsa) [1323852]
-- [tools] perf tools: Clear struct machine during machine__init() (Jiri Olsa) [1323852]
-- [tools] perf script: Add support for PERF_TYPE_BREAKPOINT (Jiri Olsa) [1323852]
-- [tools] perf data: Add u32_hex data type (Jiri Olsa) [1323852]
-- [tools] perf top: Cleanup condition in perf_top__record_precise_ip() (Jiri Olsa) [1323852]
-- [tools] perf top: Fix annotation on --stdio (Jiri Olsa) [1323852]
-- [tools] perf top: Access hists->lock only if needed (Jiri Olsa) [1323852]
-- [tools] perf top: Do not convert address for perf_top__record_precise_ip() (Jiri Olsa) [1323852]
-- [tools] perf symbols: Fix dso__load_sym to put dso (Jiri Olsa) [1323852]
-- [tools] perf tools: Make perf_session__register_idle_thread drop the refcount (Jiri Olsa) [1323852]
-- [tools] revert "perf tools: Improve setting of gcc debug option" (Jiri Olsa) [1323852]
-- [tools] perf top: Delete half-processed hist entries when exit (Jiri Olsa) [1323852]
-- [tools] perf tools: Get rid of exit_browser() from usage_with_options() (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Free strlist on constructor error path (Jiri Olsa) [1323852]
-- [tools] perf top: Do show usage message when failing to create cpu/thread maps (Jiri Olsa) [1323852]
-- [tools] perf report: Check argument before calling setup_browser() (Jiri Olsa) [1323852]
-- [tools] perf kvm: Remove invocation of setup/exit_browser() (Jiri Olsa) [1323852]
-- [tools] perf annotate: Delay UI browser setup after initialization is done (Jiri Olsa) [1323852]
-- [tools] perf annotate: Check argument before calling setup_browser() (Jiri Olsa) [1323852]
-- [tools] perf tools: Move cmd_version() to builtin-version.c (Jiri Olsa) [1323852]
-- [tools] perf tools: Save cmdline arguments earlier (Jiri Olsa) [1323852]
-- [tools] perf tools: Move term functions out of util.c (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove unused pager_use_color variable (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix write_numa_topology to put cpu_map instead of free (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix machine.vmlinux_maps to make sure to clear the old one (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix maps__fixup_overlappings to put used maps (Jiri Olsa) [1323852]
-- [tools] perf hists: Fix hists_evsel to release hists (Jiri Olsa) [1323852]
-- [tools] perf stat: Fix cmd_stat to release cpu_map (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix map_groups__clone to put cloned map (Jiri Olsa) [1323852]
-- [tools] perf tui: Change default selection background color to yellow (Jiri Olsa) [1323852]
-- [tools] perf annotate: ARM support (Jiri Olsa) [1323852]
-- [tools] perf stat: Move enable_on_exec setup under earlier code (Jiri Olsa) [1323852]
-- [tools] perf stat: Create events as disabled (Jiri Olsa) [1323852]
-- [tools] perf stat: Use perf_evlist__enable in handle_initial_delay (Jiri Olsa) [1323852]
-- [tools] perf evlist: Factor perf_evlist__(enable|disable) functions (Jiri Olsa) [1323852]
-- [tools] perf evsel: Introduce disable() method (Jiri Olsa) [1323852]
-- [tools] perf evsel: Use event maps directly in perf_evsel__enable (Jiri Olsa) [1323852]
-- [tools] perf test: Create kernel maps properly for hist entries test (Jiri Olsa) [1323852]
-- [tools] perf test: Prevent using bpf-output event in round trip name test (Jiri Olsa) [1323852]
-- [tools] perf test: Fix cpus and thread maps reference in error path (Jiri Olsa) [1323852]
-- [tools] perf test: Use machine__new_host in mmap thread code reading test (Jiri Olsa) [1323852]
-- [tools] perf test: Use machine__new_host in mmap thread lookup test (Jiri Olsa) [1323852]
-- [tools] perf test: Use machine__new_host in dwarf unwind test (Jiri Olsa) [1323852]
-- [tools] perf machine: Pass correct string to dso__adjust_kmod_long_name (Jiri Olsa) [1323852]
-- [tools] perf hists browser: Update nr entries regardless of min percent (Jiri Olsa) [1323852]
-- [tools] perf hists: Do not skip elided fields when processing samples (Jiri Olsa) [1323852]
-- [tools] perf report: Show error message when processing sample fails (Jiri Olsa) [1323852]
-- [tools] perf list: Robustify event printing routine (Jiri Olsa) [1323852]
-- [tools] perf test: 'unwind' test should create kernel maps (Jiri Olsa) [1323852]
-- [tools] perf evlist: Display WEIGHT sample type bit (Jiri Olsa) [1323852]
-- [tools] perf stat: Clear sample_(type|period) for counting (Jiri Olsa) [1323852]
-- [tools] perf symbols: Add the path to vmlinux.debug (Jiri Olsa) [1323852]
-- [tools] perf symbols: Refactor vmlinux_path__init() to ease path additions (Jiri Olsa) [1323852]
-- [tools] build: Use fixdep with OUTPUT path prefix (Jiri Olsa) [1323852]
-- [tools] perf script: Pass perf_script into process_event (Jiri Olsa) [1323852]
-- [tools] perf tools: Correctly identify anon_hugepage when generating map (v2) (Jiri Olsa) [1323852]
-- [tools] perf machine: Adjust dso->long_name for offline module (Jiri Olsa) [1323852]
-- [tools] perf build: Fix traceevent plugins build race (Jiri Olsa) [1323852]
-- [tools] perf script: Remove default_scripting_ops (Jiri Olsa) [1323852]
-- [tools] perf top: Fix freeze on --call-graph flat/folded (Jiri Olsa) [1323852]
-- [tools] perf callchain: Honor hide_unresolved (Jiri Olsa) [1323852]
-- [tools] build: Clean CFLAGS and LDFLAGS for fixdep (Jiri Olsa) [1323852]
-- [tools] perf probe: Fix to free temporal Dwarf_Frame correctly (Jiri Olsa) [1323852]
-- [tools] lib traceevent: Fix output of llu for 64 bit values read on 32 bit machines (Jiri Olsa) [1323852]
-- [tools] perf callchain: Add missing parent_val initialization (Jiri Olsa) [1323852]
-- [tools] perf config: Add initial man page (Jiri Olsa) [1323852]
-- [tools] perf tools: Add 'perf config' command (Jiri Olsa) [1323852]
-- [tools] perf callchain: Add order support for libdw DWARF unwinder (Jiri Olsa) [1323852]
-- [tools] perf test: Add callchain order setup for DWARF unwinder test (Jiri Olsa) [1323852]
-- [tools] perf callchain: Add order support for libunwind DWARF unwinder (Jiri Olsa) [1323852]
-- [tools] perf callchain: Move initial entry call into get_entries function (Jiri Olsa) [1323852]
-- [tools] perf ui/gtk: Support folded callchains (Jiri Olsa) [1323852]
-- [tools] perf ui/gtk: Support flat callchains (Jiri Olsa) [1323852]
-- [tools] perf hists browser: Support folded callchains (Jiri Olsa) [1323852]
-- [tools] perf hists browser: Support flat callchains (Jiri Olsa) [1323852]
-- [tools] perf hists browser: Factor out hist_browser__show_callchain_list() (Jiri Olsa) [1323852]
-- [tools] perf report: Add callchain value option (Jiri Olsa) [1323852]
-- [tools] perf callchain: Add count fields to struct callchain_node (Jiri Olsa) [1323852]
-- [tools] perf callchain: Abstract callchain print function (Jiri Olsa) [1323852]
-- [tools] perf report: Support folded callchain mode on --stdio (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix machine__findnew_module_map to put dso (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix machine__create_kernel_maps to put kernel dso refcount (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix __dsos__addnew to put dso after adding it to the list (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix to put new map after inserting to map_groups in dso__load_sym (Jiri Olsa) [1323852]
-- [tools] perf tools: Make perf_exec_path() always return malloc'd string (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix to destroy kernel maps when machine exits (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix machine__destroy_kernel_maps to drop vmlinux_maps references (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix machine__findnew_module_map to put registered map (Jiri Olsa) [1323852]
-- [tools] perf probe: Fix to free temporal Dwarf_Frame (Jiri Olsa) [1323852]
-- [tools] perf test: Mute test cases error messages if verbose == 0 (Jiri Olsa) [1323852]
-- [tools] perf tests: Pass the subtest index to each test routine (Jiri Olsa) [1323852]
-- [tools] Clone the kernel's strtobool function (Jiri Olsa) [1323852]
-- [tools] Adopt memdup() from tools/perf, moving it to tools/lib/string.c (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Fix PEBS data source interpretation on Nehalem/Westmere (Jiri Olsa) [1323852]
-- [x86] perf/x86/pebs: Add proper PEBS constraints for Broadwell (Jiri Olsa) [1323852]
-- [x86] perf/x86/pebs: Add workaround for broken OVFL status on HSW+ (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Add definition for PT PMI bit (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Fix PEBS warning by only restoring active PMU in pmi (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Use PAGE_SIZE for PEBS buffer size on Core2 (Jiri Olsa) [1323852]
-- [x86] perf/x86/uncore: Fix build on UP-IOAPIC configs (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/cqm: Get rid of the silly for_each_cpu() lookups (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Make PCI and MSR uncore independent (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Clear all hardware state on exit (Jiri Olsa) [1323852]
-- [x86] perf/x86/uncore: Track packages, not per CPU data (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Store box in event->pmu_private (Jiri Olsa) [1323852]
-- [x86] perf/x86/uncore: Make uncore_pcibus_to_physid() static (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Make code more readable (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Clean up hardware on exit (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Add sanity checks for PCI dev package id (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Fix error handling (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Simplify error rollback (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Remove pointless mask check (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Remove SBOX support for BDX-DE (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event.h to its new home (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_p6.c ............... => x86/events/intel/p6.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_p4.c ............... => x86/events/intel/p4.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_knc.c .............. => x86/events/intel/knc.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_uncore_snbep.c => x86/events/intel/uncore_snbep.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_uncore_snb.c => x86/events/intel/uncore_snb.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_uncore_nhmex.c => x86/events/intel/uncore_nmhex.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_uncore.[ch] .. => x86/events/intel/uncore.[ch] (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_rapl.c ....... => x86/events/intel/rapl.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_pt.[ch] ...... => x86/events/intel/pt.[ch] (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_lbr.c ........ => x86/events/intel/lbr.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_ds.c ......... => x86/events/intel/ds.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_cqm.c ........ => x86/events/intel/cqm.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel.c ............ => x86/events/intel/core.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_bts.c ........ => x86/events/intel/bts.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_amd_uncore.c .... => x86/events/amd/uncore.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_amd_ibs.c ....... => x86/events/amd/ibs.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_amd.c ........... => x86/events/amd/core.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event.c ............... => x86/events/core.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: De-obfuscate code (Jiri Olsa) [1323852]
-- [x86] perf/x86: add Intel SkyLake uncore IMC PMU support (Jiri Olsa) [1323852]
-- [x86] perf/x86/amd: Remove l1-dcache-stores event for AMD (Jiri Olsa) [1323852]
-- [x86] perf/x86/rapl: Use unified perf_event_sysfs_show instead of special interface (Jiri Olsa) [1323852]
-- [x86] perf/x86: Enable cycles:pp for Intel Atom (Jiri Olsa) [1323852]
-- [x86] perf/x86: fix PEBS issues on Intel Atom/Core2 (Jiri Olsa) [1323852]
-- [x86] perf/x86: Fix filter_events() bug with event mappings (Jiri Olsa) [1323852]
-- [x86] perf/x86: use inst_retired.prec_dist for cycles: ppp (Jiri Olsa) [1323852]
-- [x86] perf/x86: Use INST_RETIRED.TOTAL_CYCLES_PS for cycles:pp for Skylake (Jiri Olsa) [1323852]
-- [x86] perf/x86: Allow zero PEBS status with only single active event (Jiri Olsa) [1323852]
-- [x86] perf/x86: Remove warning for zero PEBS status (Jiri Olsa) [1323852]
-- [x86] perf/x86: Remove old MSR perf tracing code (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Fix __initconst declaration in the RAPL perf driver (Jiri Olsa) [1323852]
-- [x86] perf/x86: Handle multiple umask bits for BDW CYCLE_ACTIVITY.* (Jiri Olsa) [1323852]
-- [kernel] perf: Synchronously free aux pages in case of allocation failure (Jiri Olsa) [1323852]
-- [kernel] perf: Remove stale comment (Jiri Olsa) [1323852]
-- [kernel] perf: Fix cgroup scheduling in perf_enable_on_exec() (Jiri Olsa) [1323852]
-- [kernel] perf: Fix cgroup event scheduling (Jiri Olsa) [1323852]
-- [kernel] perf: Add lockdep assertions (Jiri Olsa) [1323852]
-- [kernel] perf/core: Collapse more IPI loops (Jiri Olsa) [1323852]
-- [kernel] perf/core: Collapse common IPI pattern (Jiri Olsa) [1323852]
-
-* Wed Apr 13 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-378.el7]
-- [drm] vmwgfx: respect 'nomodeset' (Rob Clark) [1284936]
-- [mm] export page_wakeup functions (Benjamin Coddington) [1315327]
-- [kernel] sched/wait: Fix the signal handling fix (Benjamin Coddington) [1315327]
-- [kernel] sched/wait: Fix signal handling in bit wait helpers (Benjamin Coddington) [1315327]
-- [kernel] sched: add some "wait..on_bit...timeout()" interfaces (Benjamin Coddington) [1315327]
-- [kernel] sched: Allow wait_on_bit_action() functions to support a timeout (Benjamin Coddington) [1315327]
-- [fs] cifs: remove unused function cifs_oplock_break_wait (Benjamin Coddington) [1315327]
-- [kernel] sched: Remove proliferation of wait_on_bit() action functions (Benjamin Coddington) [1315327]
-- [iommu] vt-d: Create RMRR mappings in newly allocated domains (Myron Stowe) [1311267]
-- [iommu] vt-d: Split iommu_prepare_identity_map (Myron Stowe) [1311267]
-- [iommu] vt-d: Move context-mapping into dmar_insert_dev_info (Myron Stowe) [1311267]
-- [iommu] vt-d: Calculate translation in domain_context_mapping_one (Myron Stowe) [1311267]
-- [x86] mm: suitable memory should go to ZONE_MOVABLE (Igor Mammedov) [1265880]
-- [mm] memory-hotplug: add zone_for_memory() for selecting zone for new memory (Igor Mammedov) [1265880]
-- [s390] mm: Fix memory hotplug for unaligned standby memory (Igor Mammedov) [1265880]
-- [mm] memory-hotplug: Remove "weak" from memory_block_size_bytes() declaration (Igor Mammedov) [1265880]
-- [mm] Add prototype declaration to the header file (Igor Mammedov) [1265880]
-- [mm] hotplug: verify hotplug memory range (Igor Mammedov) [1265880]
-- [fs] /proc/pid/smaps: show VM_SOFTDIRTY flag in VmFlags line (Oleg Nesterov) [1269561]
-- [mm] softdirty: enable write notifications on VMAs after VM_SOFTDIRTY cleared (Oleg Nesterov) [1269561]
-- [fs] mm: softdirty: clear VM_SOFTDIRTY flag inside clear_refs_write() instead of clear_soft_dirty() (Oleg Nesterov) [1269561]
-- [mm] memory.c: don't forget to set softdirty on file mapped fault (Oleg Nesterov) [1269561]
-- [mm] softdirty: don't forget to save file map softdiry bit on unmap (Oleg Nesterov) [1269561]
-- [mm] softdirty: make freshly remapped file pages being softdirty unconditionally (Oleg Nesterov) [1269561]
-- [x86] mm: don't lose the SOFT_DIRTY flag on mprotect (Oleg Nesterov) [1269561]
-- [mm] ignore VM_SOFTDIRTY on VMA merging (Oleg Nesterov) [1269561]
-- [fs] mm: /proc/pid/pagemap: inspect _PAGE_SOFT_DIRTY only on present pages (Oleg Nesterov) [1269561]
-- [mm] track vma changes with VM_SOFTDIRTY bit (Oleg Nesterov) [1269561]
-- [mm] migration: do not lose soft dirty bit if page is in migration state (Oleg Nesterov) [1269561]
-- [mm] move_ptes -- Set soft dirty bit depending on pte type (Oleg Nesterov) [1269561]
-- [mm] save soft-dirty bits on file pages (Oleg Nesterov) [1269561]
-- [mm] save soft-dirty bits on swapped pages (Oleg Nesterov) [1269561]
-- [fs] pagemap: prepare to reuse constant bits with page-shift (Oleg Nesterov) [1269561]
-- [mm] soft-dirty bits for user memory changes tracking (Oleg Nesterov) [1269561]
-- [fs] pagemap: introduce pagemap_entry_t without pmshift bits (Oleg Nesterov) [1269561]
-- [fs] clear_refs: introduce private struct for mm_walk (Oleg Nesterov) [1269561]
-- [fs] clear_refs: sanitize accepted commands declaration (Oleg Nesterov) [1269561]
-- [x86] Revert the PAGE_BIT_SOFTDIRTY part from "mm: add memory tracking hooks" (Oleg Nesterov) [1269561]
-- [i2c] i801: Add support for Intel DNV (Steve Best) [1322042]
-- [scsi] ibmvfc: byteswap scsi_id, wwpn, and node_name prior to logging (Steve Best) [1322913]
-- [netdrv] qmi_wwan: should hold RTNL while changing netdev type (Lubomir Rintel) [1322870]
-- [netdrv] qmi_wwan: support "raw IP" mode (Lubomir Rintel) [1322870]
-- [netdrv] mlx4_en: Fix IRQ affinity on s390x (Kamal Heib) [1264148 1287146]
-
-* Tue Apr 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-377.el7]
-- [x86] irq: Cleanup ordering of vector numbers (Kim Naru) [1134596]
-- [x86] acpi: Disable ACPI table override if securelevel is set (Lenny Szubowicz) [1316304]
-- [pci] acpi: Optimize device state transition delays (Rui Wang) [1225272]
-- [pci] acpi: Install wakeup notify handlers for all PCI devs with ACPI (Rui Wang) [1225272]
-- [pci] Export pci_find_host_bridge() for use inside PCI core (Rui Wang) [1225272]
-- [pci] Make a shareable UUID for PCI firmware ACPI _DSM (Rui Wang) [1225272]
-- [ata] ahci: Intel DNV device IDs SATA (David Arcari) [1288612]
-- [acpi] processor: Request native thermal interrupt handling via _OSC (David Arcari) [1322158]
-- [acpi] pnp: add two IDs to list for PNPACPI device enumeration (David Arcari) [1320823]
-- [acpi] pnp: remove Fujitsu device IDs from ACPI PNP ID list (David Arcari) [1320823]
-- [acpi] pnp: Replace faulty is_hex_digit() by isxdigit() (David Arcari) [1320823]
-- [acpi] pnp: add soc_button_array device ID to PNP IDs list (David Arcari) [1320823]
-- [acpi] scan: drop unsupported serial IDs from PNP ACPI scan handler ID list (David Arcari) [1320823]
-- [acpi] scan: drop IDs that do not comply with the ACPI PNP ID rule (David Arcari) [1320823]
-- [acpi] scan: Allow ACPI drivers to bind to PNP device objects (David Arcari) [1320823]
-- [acpi] pnp: use device ID list for PNPACPI device enumeration (David Arcari) [1320823]
-- [acpi] scan: .match() callback for ACPI scan handlers (David Arcari) [1320823]
-- [vfio] Enable No-IOMMU option for RHEL (Alex Williamson) [1299662 1322577]
-- [vfio] fix ioctl error handling (Alex Williamson) [1299662 1322577]
-- [vfio] iommu_type1: make use of info.flags (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Fix unsigned comparison overflow (Alex Williamson) [1299662 1322577]
-- [vfio] noiommu: Don't use iommu_present() to track fake groups (Alex Williamson) [1299662 1322577]
-- [vfio] Include No-IOMMU mode (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Use kernel VPD access functions (Alex Williamson) [1299662 1322577]
-- [vfio] Whitelist PCI bridges (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Remove warning if try-reset fails (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Fix use after free (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Allow PCI IDs to be specified as module options (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Add VGA arbiter client (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Add module option to disable VGA region access (Alex Williamson) [1299662 1322577]
-
-* Mon Apr 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-376.el7]
-- [hv] vmbus: Support handling messages on multiple CPUs (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: don't loose HVMSG_TIMER_EXPIRED messages (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: avoid infinite loop in init_vp_index() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Add vendor and device atttributes (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Cleanup vmbus_set_event() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Treat Fibre Channel devices as performance critical (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: fix the building warning with hyperv-keyboard (Vitaly Kuznetsov) [1321073]
-- [hv] replace enum hv_message_type by u32 (Vitaly Kuznetsov) [1321073]
-- [hv] ring_buffer: eliminate hv_ringbuffer_peek() (Vitaly Kuznetsov) [1321073]
-- [hv] remove code duplication between vmbus_recvpacket()/vmbus_recvpacket_raw() (Vitaly Kuznetsov) [1321073]
-- [hv] ring_buffer: remove code duplication from hv_ringbuffer_peek/read() (Vitaly Kuznetsov) [1321073]
-- [hv] ring_buffer: remove stray smp_read_barrier_depends() (Vitaly Kuznetsov) [1321073]
-- [hv] ring_buffer: fix comment style (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Force all channel messages to be delivered on CPU 0 (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Fix a Host signaling bug (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: briefly comment num_sc and next_oc (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: channge vmbus_connection.channel_lock to mutex (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: release relid on error in vmbus_process_offer() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: fix rescind-offer handling for device without a driver (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: do sanity check of channel state in vmbus_close_internal() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: serialize process_chn_event() and vmbus_close_internal() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Use uuid_le_cmp() for comparing GUIDs (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Use uuid_le type consistently (Vitaly Kuznetsov) [1321073]
-- [hv] Define the channel type for Hyper-V PCI Express pass-through (Vitaly Kuznetsov) [1321073]
-- [hv] Export the API to invoke a hypercall on Hyper-V (Vitaly Kuznetsov) [1321073]
-- [hv] Export a function that maps Linux CPU num onto Hyper-V proc num (Vitaly Kuznetsov) [1321073]
-- [hv] cleanup synic msrs if vmbus connect failed (Vitaly Kuznetsov) [1321073]
-- [hv] share Hyper-V SynIC constants with userspace (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: fix init_vp_index() for reloading hv_netvsc (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: add a sysfs attr to show the binding of channel/VP (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Fix signal to host condition (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Further improve CPU affiliation logic (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Improve the CPU affiliation for channels (Vitaly Kuznetsov) [1321073]
-- [hv] Move MMIO range picking from hyper_fb to hv_vmbus (Vitaly Kuznetsov) [1321073]
-- [hv] Modify hv_vmbus to search for all MMIO ranges available (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Consider ND NIC in binding channels to CPUs (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: fix typo in hv_port_info struct (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Permit sending of packets without payload (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Allocate ring buffer memory in NUMA aware fashion (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Implement NUMA aware CPU affinity for channels (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Use the vp_index map even for channels bound to CPU 0 (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: distribute subchannels among all vcpus (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: move init_vp_index() call to vmbus_process_offer() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: decrease num_sc on subchannel removal (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: unify calls to percpu_channel_enq() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: remove the redundant free_channel() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Add gradually increased delay for retries in vmbus_post_msg() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Fix a siganlling host signalling issue (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Export the vmbus_sendpacket_pagebuffer_ctl() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Suport an API to send packet with additional control (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Suport an API to send pagebuffers with additional control (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Use a round-robin algorithm for picking the outgoing channel (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Add support for the NetworkDirect GUID (Vitaly Kuznetsov) [1321073]
-- [hv] channel: match var type to return type of wait_for_completion (Vitaly Kuznetsov) [1321073]
-- [hv] make uuid_le const (Vitaly Kuznetsov) [1321073]
-- [kernel] clocksource: Allow unregistering the watchdog (Cathy Avery) [1300325]
-- [hv] correct tsc page sequence invalid value (Cathy Avery) [1300325]
-- [hv] vmbus: fix build warning (Cathy Avery) [1300325]
-- [hv] vmbus: Implement a clocksource based on the TSC page (Cathy Avery) [1300325]
-- [kernel] clocksource: Reselect clocksource when watchdog validated high-res capability (Cathy Avery) [1300325]
-
-* Fri Apr 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-375.el7]
-- [x86] kABI fix (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix load xsave feature warning (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Fix vmwrite to SECONDARY_VM_EXEC_CONTROL (Paolo Bonzini) [1301888]
-- [iommu] vt-d: Use cmpxchg16b to update posted format IRTE atomically (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: move tracepoints outside extended quiescent state (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: mmu: always set accessed bit in shadow PTEs (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: expose MSR_TSC_AUX to userspace (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Reload pit counters for all channels when restoring state (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: rename update_db_bp_intercept to update_bp_intercept (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix root cause for missed hardware breakpoints (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix missed hardware breakpoints (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Update tsc multiplier on change (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Dump TSC multiplier in dump_vmcs() (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Use a scaled host TSC for guest readings of MSR_IA32_TSC (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Setup TSC scaling ratio when a vcpu is loaded (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Enable and initialize VMX TSC scaling (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Use the correct vcpu's TSC rate to compute time scale (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Move TSC scaling logic out of call-back read_l1_tsc() (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Move TSC scaling logic out of call-back adjust_tsc_offset() (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Replace call-back compute_tsc_offset() with a common function (Paolo Bonzini) [1301888]
-- [include] kvm: x86: Replace call-back set_tsc_khz() with a common function (Paolo Bonzini) [1301888]
-- [include] kvm: x86: Add a common TSC scaling function (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Add a common TSC scaling ratio field in kvm_vcpu_arch (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Replace __get_cpu_var uses (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Collect information for setting TSC scaling ratio (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: declare a few variables as __read_mostly (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: merge handle_mmio_page_fault and handle_mmio_page_fault_common (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: fix SMEP and SMAP without EPT (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: zero apic_arb_prio on reset (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: removing unused variable (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: move steal time initialization to vcpu entry time (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: manually unroll bad_mt_xwr loop (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: remove incorrect vpid check in nested invvpid emulation (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: expose VPID capability to L1 (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: nested VPID emulation (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: emulate the INVVPID instruction (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: introduce __vmx_flush_tlb to handle specific vpid (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: adjust interface to allocate/free_vpid (Paolo Bonzini) [1301888]
-- [virt] kvm: fix waitqueue_active without memory barrier in virt/kvm/async_pf.c (Paolo Bonzini) [1301888]
-- [virt] kvm: Update Posted-Interrupts Descriptor when vCPU is blocked (Paolo Bonzini) [1301888]
-- [x86] kvm: Update Posted-Interrupts Descriptor when vCPU is preempted (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: fix build without CONFIG_SMP (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: select IRQ_BYPASS_MANAGER (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Update IRTE for posted-interrupts (Paolo Bonzini) [1301888]
-- [x86] kvm: make kvm_set_msi_irq() public (Paolo Bonzini) [1301888]
-- [x86] kvm: Define a new interface kvm_intr_is_single_vcpu() (Paolo Bonzini) [1301888]
-- [x86] kvm: Add some helper functions for Posted-Interrupts (Paolo Bonzini) [1301888]
-- [x86] kvm: Extend struct pi_desc for VT-d Posted-Interrupts (Paolo Bonzini) [1301888]
-- [virt] kvm: Add an arch specific hooks in 'struct kvm_kernel_irqfd' (Paolo Bonzini) [1301888]
-- [virt] kvm: eventfd: add irq bypass consumer management (Paolo Bonzini) [1301888]
-- [virt] kvm: introduce kvm_arch functions for IRQ bypass (Paolo Bonzini) [1301888]
-- [virt] kvm: create kvm_irqfd.h (Paolo Bonzini) [1301888]
-- [virt] kvm: count number of assigned devices (Paolo Bonzini) [1301888]
-- [virt] kvm: make struct kvm_irq_routing_table public (Paolo Bonzini) [1301888]
-- [vfio] Register/unregister irq_bypass_producer (Paolo Bonzini) [1301888]
-- [virt] IRQ bypass manager (Paolo Bonzini) [1301888]
-- [virt] Add virt directory to the top Makefile (Paolo Bonzini) [1301888]
-- [x86] irq: Show statistics information for posted-interrupts (Paolo Bonzini) [1301888]
-- [x86] irq: Define a global vector for VT-d Posted-Interrupts (Paolo Bonzini) [1301888]
-- [iommu]  x86: Implement irq_set_vcpu_affinity for intel_ir_chip (Paolo Bonzini) [1301888]
-- [iommu] x86: Avoid migrating VT-d posted interrupts (Paolo Bonzini) [1301888]
-- [iommu] x86: Save the mode (posted or remapped) of an IRTE (Paolo Bonzini) [1301888]
-- [iommu] x86: cache IRTE in struct irq_2_iommu (Paolo Bonzini) [1301888]
-- [iommu] genirq: Introduce irq_set_vcpu_affinity() to target an interrupt to a VCPU (Paolo Bonzini) [1301888]
-- [include] iommu: dmar: Provide helper to copy shared irte fields (Paolo Bonzini) [1301888]
-- [include] iommu: dmar: Extend struct irte for VT-d Posted-Interrupts (Paolo Bonzini) [1301888]
-- [include] iommu, x86: Add cap_pi_support() to detect VT-d PI capability (Paolo Bonzini) [1301888]
-- [iommu] x86: Provide irq_remapping_cap() interface (Paolo Bonzini) [1301888]
-- [iommu] Add new member capability to struct irq_remap_ops (Paolo Bonzini) [1301888]
-- [iommu] x86: Setup Posted-Interrupts capability for Intel iommu (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Fix host initiated access to guest MSR_TSC_AUX (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: drop rdtscp_enabled field (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: clean up bit operation on SECONDARY_VM_EXEC_CONTROL (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Fix commit which broke PML (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: unify SECONDARY_VM_EXEC_CONTROL update (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: align vmx->nested.nested_vmx_secondary_ctls_high to vmx->rdtscp_enabled (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: simplify invpcid handling in vmx_cpuid_update() (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: simplify rdtscp handling in vmx_cpuid_update() (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: drop rdtscp_enabled check in prepare_vmcs02() (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: add pcommit support (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: allow guest to use cflushopt and clwb (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: allow RSM from 64-bit mode (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: handle SMBASE as physical address in RSM (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: add read_phys to x86_emulate_ops (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix RSM into 64-bit protected mode (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix previous commit for 32-bit (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix SMI to halted VCPU (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: clean up kvm_arch_vcpu_runnable (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: map/unmap private slots in __x86_set_memory_region (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: build kvm_userspace_memory_region in x86_set_memory_region (Paolo Bonzini) [1301888]
-- [x86] kvm: compile process_smi_save_seg_64() only for x86_64 (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: zero IDT limit on entry to SMM (Paolo Bonzini) [1301888]
-- [x86] kvm: svm: Only propagate next_rip when guest supports it (Paolo Bonzini) [1301888]
-- [x86] Use WARN_ON_ONCE for missing X86_FEATURE_NRIPS (Paolo Bonzini) [1301888]
-- [x86] kvm: svm: do not call kvm_set_cr0 from init_vmcb (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: trap AMD MSRs for the TSeg base and mask (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: fix VPID is 0000H in non-root operation (Paolo Bonzini) [1301888]
-- [virt] kvm: add capability for any-length ioeventfds (Paolo Bonzini) [1301888]
-- [x86] kvm: add tracepoint for fast mmio (Paolo Bonzini) [1301888]
-- [virt] kvm: use kmalloc() instead of kzalloc() during iodev register/unregister (Paolo Bonzini) [1301888]
-- [virt] kvm: fix zero length mmio searching (Paolo Bonzini) [1301888]
-- [virt] kvm: fix double free for fast mmio eventfd (Paolo Bonzini) [1301888]
-- [virt] kvm: factor out core eventfd assign/deassign logic (Paolo Bonzini) [1301888]
-- [virt] kvm: don't try to register to KVM_FAST_MMIO_BUS for non mmio eventfd (Paolo Bonzini) [1301888]
-- [virt] kvm: make the declaration of functions within 80 characters (Paolo Bonzini) [1301888]
-- [virt] kvm: irqchip: fix memory leak (Paolo Bonzini) [1301888]
-- [virt] kvm: fix polling for guest halt continued even if disable it (Paolo Bonzini) [1301888]
-- [virt] kvm: add halt_attempted_poll to VCPU stats (Paolo Bonzini) [1301888]
-- [include] kvm: move new trace event outside #ifdef CONFIG_KVM_ASYNC_PF (Paolo Bonzini) [1301888]
-- [virt] kvm: trace kvm_halt_poll_ns grow/shrink (Paolo Bonzini) [1301888]
-- [virt] kvm: dynamic halt-polling (Paolo Bonzini) [1301888]
-- [virt] kvm: make halt_poll_ns per-vCPU (Paolo Bonzini) [1301888]
-- [virt] kvm: make halt_poll_ns static (Paolo Bonzini) [1301888]
-- [x86] kvm: Rename VMX's segment access rights defines (Paolo Bonzini) [1301888]
-- [x86] kvm: x86/vpmu: Fix unnecessary signed extension for AMD PERFCTRn (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Fix error handling in the function kvm_lapic_sync_from_vapic (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Use adjustment in guest cycles when handling MSR_IA32_TSC_ADJUST (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: drop ept misconfig check (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix off-by-one in reserved bits check (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: use correct page table format to check nested page table reserved bits (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: avoid uninitialized variable warning (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: fully check zero bits for sptes (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: introduce is_shadow_zero_bits_set() (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: introduce the framework to check zero bits on sptes (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: split reset_rsvds_bits_mask_ept (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: split reset_rsvds_bits_mask (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: introduce rsvd_bits_validate (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: move FNAME(is_rsvd_bits_set) to mmu.c (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: clean/fix memory barriers in irqchip_in_kernel (Paolo Bonzini) [1301888]
-- [virt] kvm: document memory barriers for kvm->vcpus/kvm->online_vcpus (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: remove unnecessary memory barriers for shared MSRs (Paolo Bonzini) [1301888]
-- [virt] kvm: move code related to KVM_SET_BOOT_CPU_ID to x86 (Paolo Bonzini) [1301888]
-- [x86] kvm/x86: add support for MONITOR_TRAP_FLAG (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: vmx instructions: add checks for #GP/#SS exceptions (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: reintroduce kvm_is_mmio_pfn (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: remove data variable from kvm_get_msr_common (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: obey KVM_X86_QUIRK_CD_NW_CLEARED in kvm_set_cr0() (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: rename quirk constants to KVM_X86_QUIRK_* (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: obey KVM_QUIRK_CD_NW_CLEARED (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: introduce kvm_check_has_quirk (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix CR0.CD virtualization (Paolo Bonzini) [1301888]
-- [virt] kvm: fix checkpatch.pl errors in kvm/coalesced_mmio.h (Paolo Bonzini) [1301888]
-- [virt] kvm: fix checkpatch.pl errors in kvm/async_pf.h (Paolo Bonzini) [1301888]
-- [virt] kvm: irqchip: Break up high order allocations of kvm_irq_routing_table (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Fix host crash when loading MSRs with userspace irqchip (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Add support for rdtscp (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: inline kvm_ioapic_handles_vector() (Paolo Bonzini) [1301888]
-- [virt] kvm: Eliminate extra function calls in kvm_get_dirty_log_protect() (Paolo Bonzini) [1301888]
-- [x86] kvm: svm: Fix confusing message if no exit handlers are installed (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: For the symbols used locally only should be static type (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Avoid using plain integer as NULL pointer warning (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Do not emulate #UD while in guest mode (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Fix re-execution of patched vmmcall (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: make kvm_emulate_* consistant (Paolo Bonzini) [1301888]
-- [virt] kvm: Fix indentation in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: no space before tabs in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: Missing blank line after declarations in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: EXPORT_SYMBOL should immediately follow its function (Paolo Bonzini) [1301888]
-- [virt] kvm: fix error: do not initialise statics to 0 or NULL in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: fix warning: labels should not be indented in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: Fix WARNINGs for 'sizeof(X)' instead of 'sizeof X' in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: fix checkpatch.pl errors in kvm/irqchip.c (Paolo Bonzini) [1301888]
-- [virt] kvm: white space formatting in kvm_main.c (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix initial PAT value (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Deliver MSI IRQ to only lowest prio cpu if msi_redir_hint is true (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Extended struct kvm_lapic_irq with msi_redir_hint for MSI delivery (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: tweak types of fields in kvm_lapic_irq (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: zero EFER on INIT (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: INIT and reset sequences are different (Paolo Bonzini) [1301888]
-- [x86] kvm: arm/mips/x86/power use __kvm_guest_{enter|exit} (Paolo Bonzini) [1301888]
-- [include] kvm: provide irq_unsafe kvm_guest_{enter|exit} (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Fix MSR_IA32_BNDCFGS in msrs_to_save (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: fix comment in kvm_mmu_zap_collapsible_spte (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: lazy collapse small sptes into large sptes (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Clear CR2 on VCPU reset (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: DR0-DR3 are not clear on reset (Paolo Bonzini) [1301888]
-- [include] kvm: x86: BSP in MSR_IA32_APICBASE is writable (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: remove unnecessary double caching of MAXPHYADDR (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: checks for address bits beyond MAXPHYADDR on VM-entry (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: cache maxphyaddr CPUID leaf in struct kvm_vcpu (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: pass error code with internal error #2 (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: optimize delivery of TSC deadline timer interrupt (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: extract blocking logic from __vcpu_run (Paolo Bonzini) [1301888]
-- [x86] Use bool function return values of true/false not 1/0 (Paolo Bonzini) [1301888]
-- [x86] kvm: remove useless check of "ret" variable prior to returning the same value (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Remove redundant definitions (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: removing redundant eflags bits definitions (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: BSF and BSR emulation change register unnecassarily (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: CMOV emulation on legacy mode is wrong (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Dirty the dest op page on cmpxchg emulation (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Set msr bitmap correctly if vcpu is in guest mode (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Enable nested posted interrupt processing (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Enable nested virtual interrupt delivery (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Enable nested apic register virtualization (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Make nested control MSRs per-cpu (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Enable nested virtualize x2apic mode (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Prepare for using hardware MSR bitmap (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: disable posted interrupts if no local APIC (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Preserve host CR4.MCE value while in guest mode (Paolo Bonzini) [1301888]
-- [virt] kvm: use slowpath for cross page cached accesses (Paolo Bonzini) [1301888]
-
-* Thu Apr 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-374.el7]
-- [fs] btrfs: fix loading of orphan roots leading to BUG_ON (Bill O'Donnell) [1298680]
-- [fs] btrfs: async-thread: Fix a use-after-free error for trace (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix no_space in write and rm loop (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix deadlock running delayed iputs at transaction commit time (Bill O'Donnell) [1298680]
-- [fs] btrfs: initialize the seq counter in struct btrfs_device (Bill O'Donnell) [1298680]
-- [fs] btrfs: Initialize btrfs_root->highest_objectid when loading tree root and subvolume roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix transaction handle leak on failure to create hard link (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix number of transaction units required to create symlink (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, don't BUG_ON() when an empty symlink is found (Bill O'Donnell) [1298680]
-- [fs] btrfs: statfs: report zero available if metadata are exhausted (Bill O'Donnell) [1298680]
-- [fs] btrfs: igrab inode in writepage (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing brelse when superblock checksum fails (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix hang on extent buffer lock caused by the inode_paths ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix page reading in extent_same ioctl leading to csum errors (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix invalid page accesses in extent_same (dedup) ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: properly set the termination value of ctx->pos in readdir (Bill O'Donnell) [1298680]
-- [fs] revert "btrfs: clear PF_NOFREEZE in cleaner_kthread()" (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fitrim discarding device area reserved for boot loader's use (Bill O'Donnell) [1298680]
-- [fs] btrfs: handle invalid num_stripes in sys_array (Bill O'Donnell) [1298680]
-- [fs] btrfs: check prepare_uptodate_page() error code earlier (Bill O'Donnell) [1298680]
-- [fs] btrfs: check for empty bitmap list in setup_cluster_bitmaps (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix misleading warning when space cache failed to load (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix transaction handle leak in balance (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix unprotected list move from unused_bgs to deleted_bgs list (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix balance range usage filters in 4.4-rc (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: account shared subtree during snapshot delete (Bill O'Donnell) [1298680]
-- [fs] btrfs: use btrfs_get_fs_root in resolve_indirect_ref (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: fix quota disable during rescan (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between cleaner kthread and space cache writeout (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix scrub preventing unused block groups from being deleted (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between scrub and block group deletion (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix rcu warning during device replace (Bill O'Donnell) [1298680]
-- [fs] btrfs: Continue replace when set_block_ro failed (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix clashing number of the enhanced balance usage filter (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix the number of transaction units needed to remove a block group (Bill O'Donnell) [1298680]
-- [fs] btrfs: use global reserve when deleting unused block group after ENOSPC (Bill O'Donnell) [1298680]
-- [fs] btrfs: tests: checking for NULL instead of IS_ERR() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix signed overflows in btrfs_sync_file (Bill O'Donnell) [1298680]
-- [fs] btrfs: Use fs_info directly in btrfs_delete_unused_bgs (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix lost-data-profile caused by balance bg (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix lost-data-profile caused by auto removing bg (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove len argument from scrub_find_csum (Bill O'Donnell) [1298680]
-- [fs] btrfs: Reduce unnecessary arguments in scrub_recheck_block (Bill O'Donnell) [1298680]
-- [fs] btrfs: Use scrub_checksum_data and scrub_checksum_tree_block for scrub_recheck_block_checksum (Bill O'Donnell) [1298680]
-- [fs] btrfs: Reset sblock->xxx_error stats before calling scrub_recheck_block_checksum (Bill O'Donnell) [1298680]
-- [fs] btrfs: scrub: setup all fields for sblock_to_check (Bill O'Donnell) [1298680]
-- [fs] btrfs: scrub: set error stats when tree block spanning stripes (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unnecessary new_valid_dev() check (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race when listing an inode's xattrs (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race leading to BUG_ON when running delalloc for nodatacow (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race leading to incorrect item deletion when dropping extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix sleeping inside atomic context in qgroup rescan worker (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race waiting for qgroup rescan worker (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: exit the rescan worker during umount (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix extent accounting for partial direct IO writes (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix hole punching when using the no-holes feature (Bill O'Donnell) [1298680]
-- [fs] btrfs: find_free_extent: Do not erroneously skip LOOP_CACHING_WAIT state (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix a data space underflow warning (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix a rebase bug which will cause qgroup double free (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix a race in delayed_ref which leads to abort trans (Bill O'Donnell) [1298680]
-- [fs] btrfs: clear PF_NOFREEZE in cleaner_kthread() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Don't copy extent buffer to do qgroup rescan (Bill O'Donnell) [1298680]
-- [fs] btrfs: add balance filters limits, stripes and usage to supported mask (Bill O'Donnell) [1298680]
-- [fs] btrfs: extend balance filter usage to take minimum and maximum (Bill O'Donnell) [1298680]
-- [fs] btrfs: add balance filter for stripes (Bill O'Donnell) [1298680]
-- [fs] btrfs: extend balance filter limit to take minimum and maximum (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix regression running delayed references when using qgroups (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix regression when running delayed references (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't do extra bitmap search in one bit case (Bill O'Donnell) [1298680]
-- [fs] btrfs: keep track of largest extent in bitmaps (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't keep trying to build clusters if we are fragmented (Bill O'Donnell) [1298680]
-- [fs] btrfs: cut down on loops through the allocator (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't continue setting up space cache when enospc (Bill O'Donnell) [1298680]
-- [fs] btrfs: keep track of max_extent_size per space_info (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't loop in allocator for space cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: add a flags field to btrfs_transaction (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix prealloc under heavy fragmentation conditions (Bill O'Donnell) [1298680]
-- [fs] btrfs: add fragment=* debug mount option (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix qgroup sanity tests (Bill O'Donnell) [1298680]
-- [fs] btrfs: change how we wait for pending ordered extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Check if qgroup reserved space leaked (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Avoid calling btrfs_free_reserved_data_space in clear_bit_hook (Bill O'Donnell) [1298680]
-- [fs] btrfs: fallocate: Add support to accurate qgroup reserve (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add new trace point for qgroup data reserve (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add handler for invalidate page (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add handler for NOCOW and inline (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Cleanup old inaccurate facilities (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Switch to new delalloc space reserve and release (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Add new version of btrfs_delalloc_reserve/release_space (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Switch to new check_data_free_space and free_reserved_data_space (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Add new version of btrfs_check_data_free_space and btrfs_free_reserved_data_space (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Use new metadata reservation (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Introduce new functions to reserve/free metadata (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed_ref: release and free qgroup reserved at proper timing (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed_ref: Add new function to record reserved space into delayed ref (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Introduce functions to release/free qgroup reserve data space (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Introduce btrfs_qgroup_reserve_data function (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent_io: Introduce new function clear_record_extent_bits() (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent_io: Introduce new function set_record_extent_bits (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent_io: Introduce needed structure for recoding set/clear bits (Bill O'Donnell) [1298680]
-- [fs] btrfs: reada: Fix returned errno code (Bill O'Donnell) [1298680]
-- [fs] btrfs: check-integrity: Fix returned errno codes (Bill O'Donnell) [1298680]
-- [fs] btrfs: compress: put variables defined per compress type in struct to make cache friendly (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup iterating over prop_handlers array (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix a comment typo (Bill O'Donnell) [1298680]
-- [fs] btrfs: declare rsv_count as unsigned int instead of int (Bill O'Donnell) [1298680]
-- [fs] btrfs: change num_items type from u64 to unsigned int (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup btrfs_balance profile validity checks (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove an unsed varialbe first_index (Bill O'Donnell) [1298680]
-- [fs] btrfs: use btrfs_raid_array in btrfs_reduce_alloc_profile (Bill O'Donnell) [1298680]
-- [fs] btrfs: use btrfs_raid_array for btrfs_get_num_tolerated_disk_barrier_failures() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Move btrfs_raid_array to public (Bill O'Donnell) [1298680]
-- [fs] btrfs: use a single if() statement for one outcome in get_block_rsv() (Bill O'Donnell) [1298680]
-- [fs] btrfs: memset cur_trans->delayed_refs to zero (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unnecessary list_del (Bill O'Donnell) [1298680]
-- [fs] btrfs: replace unnecessary list_for_each_entry_safe to list_for_each_entry (Bill O'Donnell) [1298680]
-- [fs] btrfs: trimming some start_transaction() code away (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fixed declaration of old_len (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fixed dsize and last_off declarations (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_submit_bio_hook: Use btrfs_wq_endio_type values instead of integer constants (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix truncation of compressed and inlined extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix double range unlock of hole region when reading page (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix file corruption and data loss after cloning inline extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix resending received snapshot with parent (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, fix file corruption due to incorrect cloning operations (Bill O'Donnell) [1298680]
-- [fs] btrfs: comment the rest of implicit barriers before waitqueue_active (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove extra barrier before waitqueue_active (Bill O'Donnell) [1298680]
-- [fs] btrfs: add comments to barriers before waitqueue_active (Bill O'Donnell) [1298680]
-- [fs] btrfs: comment waitqueue_active implied by locks (Bill O'Donnell) [1298680]
-- [fs] btrfs: add barrier for waitqueue_active in clear_btree_io_tree (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove waitqueue_active check from btrfs_rm_dev_replace_unblocked (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch more printks to our helpers (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch message printers to ratelimited variants (Bill O'Donnell) [1298680]
-- [fs] btrfs: introduce ratelimited variants of message printing functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch message printers to ratelimited _in_rcu variants (Bill O'Donnell) [1298680]
-- [fs] btrfs: introduce ratelimited _in_rcu variants of message printing functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch message printers to _in_rcu variants (Bill O'Donnell) [1298680]
-- [fs] btrfs: introduce _in_rcu variants of message printing functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: move kobj stuff out of dev_replace lock range (Bill O'Donnell) [1298680]
-- [fs] btrfs: add helper for closing one device (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't log error from btrfs_get_bdev_and_sb (Bill O'Donnell) [1298680]
-- [fs] btrfs: kernel operation should come after user input has been verified (Bill O'Donnell) [1298680]
-- [fs] btrfs: enhance btrfs_scratch_superblock to scratch all superblocks (Bill O'Donnell) [1298680]
-- [fs] btrfs: add btrfs_read_dev_one_super() to read one specific SB (Bill O'Donnell) [1298680]
-- [fs] btrfs: use BTRFS_ERROR_DEV_MISSING_NOT_FOUND when missing device is not found (Bill O'Donnell) [1298680]
-- [fs] btrfs: consolidate btrfs_error() to btrfs_std_error() (Bill O'Donnell) [1298680]
-- [fs] btrfs: __btrfs_std_error() logic should be consistent w/out CONFIG_PRINTK defined (Bill O'Donnell) [1298680]
-- [fs] btrfs: SB read failure should return EIO for __bread failure (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename super_kobj to fsid_kobj (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename btrfs_kobj_rm_device to btrfs_sysfs_rm_device_link (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename btrfs_kobj_add_device to btrfs_sysfs_add_device_link (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename btrfs_sysfs_remove_one to btrfs_sysfs_remove_mounted (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename btrfs_sysfs_add_one to btrfs_sysfs_add_mounted (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix possible leak in btrfs_ioctl_balance() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Avoid truncate tailing page if fallocate range doesn't exceed inode size (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix use after free iterating extrefs (Bill O'Donnell) [1298680]
-- [fs] btrfs: check unsupported filters in balance arguments (Bill O'Donnell) [1298680]
-- [fs] btrfs: support NFSv2 export (Bill O'Donnell) [1298680]
-- [fs] btrfs: open_ctree: Fix possible memory leak (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix deadlock when finalizing block group creation (Bill O'Donnell) [1298680]
-- [fs] btrfs: update fix for read corruption of compressed and shared extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, fix corner case for reference overwrite detection (Bill O'Donnell) [1298680]
-- [fs] btrfs: keep dropped roots in cache until transaction commit (Bill O'Donnell) [1298680]
-- [fs] btrfs: direct i/o: Fix space accounting (Bill O'Donnell) [1298680]
-- [fs] btrfs: skip waiting on ordered range for special files (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix read corruption of compressed and shared extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unnecessary locking of cleaner_mutex to avoid deadlock (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't initialize a space info as full to prevent ENOSPC (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: remove unnecessary check before btrfs_free_path is called (Bill O'Donnell) [1298680]
-- [fs] btrfs: async_thread: Fix workqueue 'max_active' value when initializing (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add raid56 support for updating num_tolerated_disk_barrier_failures in btrfs_balance (Bill O'Donnell) [1298680]
-- [fs] btrfs: Cleanup for btrfs_calc_num_tolerated_disk_barrier_failures (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove noused chunk_tree and chunk_objectid from scrub_enumerate_chunks and scrub_chunk (Bill O'Donnell) [1298680]
-- [fs] btrfs: Update out-of-date "skip parity stripe" comment (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix file read corruption after extent cloning and fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: check if previous transaction aborted to avoid fs corruption (Bill O'Donnell) [1298680]
-- [fs] btrfs: use __GFP_NOFAIL in alloc_btrfs_bio (Bill O'Donnell) [1298680]
-- [fs] btrfs: Prevent from early transaction abort (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove unused arguments in tree-log.c (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove useless condition in start_log_trans() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unused mutex from struct 'btrfs_fs_info' (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix parity scrub of RAID 5/6 with missing device (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix device replace of a missing RAID 5/6 device (Bill O'Donnell) [1298680]
-- [fs] btrfs: add RAID 5/6 BTRFS_RBIO_REBUILD_MISSING operation (Bill O'Donnell) [1298680]
-- [fs] btrfs: count devices correctly in readahead during RAID 5/6 replace (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove misleading handling of missing device scrub (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix clone / extent-same deadlocks (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix defrag to merge tail file extent (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix warning in backref walking (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add WARN_ON() for double lock in btrfs_tree_lock() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove root argument in extent_data_ref_count() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix wrong comment of btrfs_alloc_tree_block() (Bill O'Donnell) [1298680]
-- [fs] btrfs: abort transaction on btrfs_reloc_cow_block() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove unnecessary variants in relocation.c (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: Remove chunk_objectid argument from btrfs_relocate_chunk() (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: Remove objectid's init-value in create_reloc_inode() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Error handle for get_ref_objectid_v0() in relocate_block_group() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix data checksum error cause by replace with io-load (Bill O'Donnell) [1298680]
-- [fs] btrfs: use scrub_pause_on/off() to reduce code in scrub_enumerate_chunks() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Separate scrub_blocked_if_needed() to scrub_pause_on/off() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Use ref_cnt for set_block_group_ro() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Bypass unrelated items before accessing its contents in scrub (Bill O'Donnell) [1298680]
-- [fs] btrfs: Load only necessary csums into list in scrub (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix calculate typo caused by ambiguous meaning of logic_end (Bill O'Donnell) [1298680]
-- [fs] btrfs: Free checksum list on scrub_extent() fail (Bill O'Donnell) [1298680]
-- [fs] btrfs: Check cancel and pause in interval of scrub operation (Bill O'Donnell) [1298680]
-- [fs] btrfs: Show detail information when mount failed on missing devices (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix scrub panic when leaf crosses stripes (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix stale dir entries after removing a link and fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix search key advancing condition (Bill O'Donnell) [1298680]
-- [fs] btrfs: teach backref walking about backrefs with underflowed offset values (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix stale dir entries after unlink, inode eviction and fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix stale directory entries after fsync log replay (Bill O'Donnell) [1298680]
-- [fs] btrfs: Spelling s/consitent/consistent/ (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing discards when unpinning extents with -o discard (Bill O'Donnell) [1298680]
-- [fs] btrfs: explictly delete unused block groups in close_ctree and ro-remount (Bill O'Donnell) [1298680]
-- [fs] btrfs: iterate over unused chunk space in FITRIM (Bill O'Donnell) [1298680]
-- [fs] btrfs: skip superblocks during discard (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_issue_discard ensure offset/length are aligned to sector boundaries (Bill O'Donnell) [1298680]
-- [fs] btrfs: make btrfs_issue_discard return bytes discarded (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix a regression in qgroup reserved space (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix quick exhaustion of the system array in the superblock (Bill O'Donnell) [1298680]
-- [fs] btrfs: its btrfs_err() instead of btrfs_error() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Avoid NULL pointer dereference of free_extent_buffer when read_tree_block() fail (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix lockdep warning of btrfs_run_delayed_iputs() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix file corruption after cloning inline extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix order by which delayed references are run (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix list transaction->pending_ordered corruption (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix memory leak in the extent_same ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix shrinking truncate when the no_holes feature is enabled (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix wrong check for btrfs_force_chunk_alloc() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix warning of bytes_may_use (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix hang when failing to submit bio of directIO (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix a comment in inode.c:evict_inode_truncate_pages() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix memory corruption on failure to submit bio for direct IO (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't update mtime/ctime on deduped inodes (Bill O'Donnell) [1298680]
-- [fs] btrfs: allow dedupe of same inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix deadlock with extent-same and readpage (Bill O'Donnell) [1298680]
-- [fs] btrfs: pass unaligned length to btrfs_cmp_data() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync after truncate when no_holes feature is enabled (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync xattr loss in the fast fsync path (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync data loss after append write (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix crash on close_ctree() if cleaner starts new transaction (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between caching kthread and returning inode to inode cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: use kmem_cache_free when freeing entry in inode cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between balance and unused block group deletion (Bill O'Donnell) [1298680]
-- [fs] btrfs: add error handling for scrub_workers_get() (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup noused initialization of dev in btrfs_end_bio() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: allow user to clear the limitation on qgroup (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed-ref: double free in btrfs_add_delayed_tree_ref() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Check if kobject is initialized before put (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: add support to show replacing target in the sysfs (Bill O'Donnell) [1298680]
-- [fs] btrfs: free the stale device (Bill O'Donnell) [1298680]
-- [fs] btrfs: use received_uuid of parent during send (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix use-after-free in btrfs_replay_log (Bill O'Donnell) [1298680]
-- [fs] btrfs: wait for delayed iputs on no space (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Make snapshot accounting work with new extent-oriented qgroup (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add the ability to skip given qgroup for old/new_roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: ulist: Add ulist_del() function (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Cleanup the old ref_node-oriented mechanism (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Switch self test to extent-oriented qgroup mechanism (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Switch to new extent-oriented qgroup mechanism (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Switch rescan to new mechanism (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add new qgroup calculation function btrfs_qgroup_account_extents() (Bill O'Donnell) [1298680]
-- [fs] btrfs: backref: Add special time_seq == (u64)-1 case for btrfs_find_all_roots() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add new function to record old_roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Record possible quota-related extent for qgroup (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add function qgroup_update_counters() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add function qgroup_update_refcnt() (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Use ref_node to replace unneeded parameters in __inc_extent_ref() and __free_extent() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Cleanup open-coded old/new_refcnt update and read (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed-ref: Cleanup the unneeded functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed-ref: Use list to replace the ref_root in ref_head (Bill O'Donnell) [1298680]
-- [fs] btrfs: backref: Don't merge refs which are not for same block (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix lockdep warning of wr_ctx->wr_lock in scrub_free_wr_ctx() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Handle unaligned length in extent_same (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_defrag_file: Fix calculation of max_to_defrag (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_defrag_file: Fix ra_index computation (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix necessary chunk tree space calculation when allocating a chunk (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't attach unnecessary extents to transaction on fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: avoid syncing log in the fast fsync path when not necessary (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix hang during inode eviction due to concurrent readahead (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix up read_tree_block to return proper error (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing free_extent_buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove csum_bytes_left (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix -ENOSPC on block group removal (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix -ENOSPC when finishing block group creation (Bill O'Donnell) [1298680]
-- [fs] btrfs: set UNWRITTEN for prealloc'ed extents in fiemap (Bill O'Donnell) [1298680]
-- [fs] btrfs: show subvol= and subvolid= in /proc/mounts (Bill O'Donnell) [1298680]
-- [fs] btrfs: unify subvol= and subvolid= mounting (Bill O'Donnell) [1298680]
-- [fs] btrfs: fail on mismatched subvol and subvolid mount options (Bill O'Donnell) [1298680]
-- [fs] vfs: Introduce inode-getting helpers for layered/unioned fs environments (Bill O'Donnell) [1298680]
-- [fs] btrfs: clean up error handling in mount_subvol() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove all subvol options before mounting top-level (Bill O'Donnell) [1298680]
-- [fs] lib: add glibc style strchrnul() variant (Bill O'Donnell) [1298680]
-- [fs] btrfs: lock superblock before remounting for rw subvol (Bill O'Donnell) [1298680]
-- [fs] btrfs: wake up extent state waiters on unlock through clear_extent_bits (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix chunk allocation regression leading to transaction abort (Bill O'Donnell) [1298680]
-- [fs] btrfs: use after free when closing devices (Bill O'Donnell) [1298680]
-- [fs] btrfs: make root id query unprivileged (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix block group ->space_info null pointer dereference (Bill O'Donnell) [1298680]
-- [fs] btrfs: check error before reporting missing device and add uuid (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix superblock csum type check (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, fix clone operations for compressed extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix possible leak in btrfs_add_qgroup_relation() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix mutex unlock without prior lock on space cache truncation (Bill O'Donnell) [1298680]
-- [fs] btrfs: log when missing device is created (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix warnings after changes in btrfs_abort_transaction (Bill O'Donnell) [1298680]
-- [fs] btrfs: add 'cold' compiler annotations to all error handling functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: report exact callsite where transaction abort occurs (Bill O'Donnell) [1298680]
-- [fs] btrfs: let tree defrag work in SSD mode (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs: check pending chunks when shrinking fs to avoid corruption (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, check if orphanized dir inode needs delayed rename (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, don't delay directory renames unnecessarily (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: don't fail seeding for the sake of sysfs kobject issue (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: add support to add parent for fsid (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: separate kobject and attribute creation (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: btrfs_sysfs_remove_fsid() make it non static (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: make btrfs_sysfs_add_device() non static (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: make btrfs_sysfs_add_fsid() non static (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs btrfs_kobj_rm_device() pass fs_devices instead of fs_info (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs btrfs_kobj_add_device() pass fs_devices instead of fs_info (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: provide framework to remove all fsid sysfs kobject (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: add pointer to access fs_info from fs_devices (Bill O'Donnell) [1298680]
-- [fs] btrfs: introduce btrfs_get_fs_uuids to get fs_uuids (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: move super_kobj and device_dir_kobj from fs_info to btrfs_fs_devices (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: separate device kobject and its attribute creation (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: let default_attrs be separate from the kset (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: introduce function btrfs_sysfs_add_fsid() to create sysfs fsid (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: rename __btrfs_sysfs_remove_one to btrfs_sysfs_remove_fsid (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: reorder the kobject creations (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, check if device_dir_kobj is init before destroy (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, kobject pointer clean up needed after kobject release (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, undo sysfs device links (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, fs_info kobject_unregister has init_completion() twice (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, btrfs_release_super_kobj() should to clean up the kobject data (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix regression in raid level conversion (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix racy system chunk allocation when setting block group ro (Bill O'Donnell) [1298680]
-- [fs] btrfs: clear 'ret' in btrfs_check_shared() loop (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race when reusing stale extent buffers that leads to BUG_ON (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between block group creation and their cache writeout (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix panic when starting bg cache writeout after IO error (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix crash after inode cache writeback failure (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix wrong mapping flags for free space inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_release_extent_buffer_page didn't free pages of dummy extent (Bill O'Donnell) [1298680]
-- [fs] btrfs: fill ->last_trans for delayed inode in btrfs_fill_inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: unlock i_mutex after attempting to delete subvolume during send (Bill O'Donnell) [1298680]
-- [fs] btrfs: check io_ctl_prepare_pages return in __btrfs_write_out_cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race on ENOMEM in alloc_extent_buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: handle ENOMEM in btrfs_alloc_tree_block (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix find_free_dev_extent() malfunction in case device tree has hole (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't check for delalloc_bytes in cache_save_setup (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix deadlock when starting writeback of bg caches (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between start dirty bg cache writeout and bg deletion (Bill O'Donnell) [1298680]
-- [fs] btrfs: prevent list corruption during free space cache processing (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix inode cache writeout (Bill O'Donnell) [1298680]
-- [fs] btrfs: quota: Update quota tree after qgroup relationship change (Bill O'Donnell) [1298680]
-- [fs] btrfs: quota: Automatically update related qgroups or mark INCONSISTENT flags when assigning/deleting a qgroup relations (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: clear STATUS_FLAG_ON in disabling quota (Bill O'Donnell) [1298680]
-- [fs] btrfs: Update btrfs qgroup status item when rescan is done (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix dead judgement on qgroup_rescan_leaf() return value (Bill O'Donnell) [1298680]
-- [fs] btrfs: Don't allow subvolid >= (1 << BTRFS_QGROUP_LEVEL_SHIFT) to be created (Bill O'Donnell) [1298680]
-- [fs] btrfs: Check qgroup level in kernel qgroup assign (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: allow to remove qgroup which has parent but no child (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: return EINVAL if level of parent is not higher than child's (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: do a reservation in a higher level (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup, Account data space in more proper timings (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Introduce a may_use to account space_info->bytes_may_use (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: free reserved in exceeding quota (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: cleanup, remove an unsued parameter in btrfs_create_qgroup() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: fix limit args override whole limit struct (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: update limit info in function btrfs_run_qgroups() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: consolidate the parameter of fucntion update_qgroup_limit_item() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: update qgroup in memory at the same time when we update it in btree (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: inherit limit info from srcgroup in creating snapshot (Bill O'Donnell) [1298680]
-- [fs] btrfs: Support busy loop of write and delete (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix NO_SPACE bug caused by delayed-iput (Bill O'Donnell) [1298680]
-- [fs] btrfs: add WARN_ON() to check is space_info op current (Bill O'Donnell) [1298680]
-- [fs] btrfs: Set relative data on clear btrfs_block_group_cache->pinned (Bill O'Donnell) [1298680]
-- [fs] btrfs: Adjust commit-transaction condition to avoid NO_SPACE more (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix tail space processing in find_free_dev_extent() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix condition of commit transaction (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix uninit variable in clone ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix inode eviction infinite loop after cloning into it (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix inode eviction infinite loop after extent_same ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix range cloning when same inode used as source and destination (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix use after free when close_ctree frees the orphan_rsv (Bill O'Donnell) [1298680]
-- [fs] btrfs: allow block group cache writeout outside critical section in commit (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't use highmem for free space cache pages (Bill O'Donnell) [1298680]
-- [fs] btrfs: two stage dirty block group writeout (Bill O'Donnell) [1298680]
-- [fs] btrfs: move struct io_ctl into ctree.h and rename it (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't steal from the global reserve if we don't have the space (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't commit the transaction in the async space flushing (Bill O'Donnell) [1298680]
-- [fs] btrfs: reserve space for block groups (Bill O'Donnell) [1298680]
-- [fs] btrfs: refill block reserves during truncate (Bill O'Donnell) [1298680]
-- [fs] btrfs: account for crcs in delayed ref processing (Bill O'Donnell) [1298680]
-- [fs] btrfs: actively run the delayed refs while deleting large files (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add missing include file (Bill O'Donnell) [1298680]
-- [fs] btrfs: free and unlock our path before btrfs_free_and_pin_reserved_extent() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove the check for old-style mkfs (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup orphans while looking up default subvolume (Bill O'Donnell) [1298680]
-- [fs] btrfs: explicitly set control file's private_data (Bill O'Donnell) [1298680]
-- [fs] btrfs: incorrect handling for fiemap_fill_next_extent return (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't accept bare namespace as a valid xattr (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix log tree corruption when fs mounted with -o discard (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix metadata inconsistencies after directory fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: change the insertion criteria for the qgroup operations rbtree (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing inode item update in fallocate() (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, remove dead code (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, clear name from cache after orphanization (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, don't leave without decrementing clone root's send_progress (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, add missing check for dead clone root (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove deleted xattrs on fsync log replay (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove shadowing variables in __btrfs_map_block (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch helper macros to static inlines in sysfs.h (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, use correct type in div_u64_rem (Bill O'Donnell) [1298680]
-- [fs] btrfs: replace remaining do_div calls with div_u64 variants (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup 64bit/32bit divs, provably bounded values (Bill O'Donnell) [1298680]
-- [fs] btrfs: use explicit initializer for seq_elem (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove shadowing variables in __btrfs_buffered_write (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, use kmalloc_array/kcalloc array helpers (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup 64bit/32bit divs, compile time constants (Bill O'Donnell) [1298680]
-- [fs] btrfs: use cond_resched_lock where possible (Bill O'Donnell) [1298680]
-- [fs] btrfs: need_resched not needed with cond_resched (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, reduce temporary variables in btrfs_read_roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: use correct type for workqueue flags (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_read_roots() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_replay_log() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_workqueues() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_qgroup() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_dev_replace_locks() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_btree_inode() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_balance() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_scrub() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: consistently use fs_info in close_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unused fs_info arg from btrfs_close_extra_devices() (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: use for() loop in btrfs_map_bio() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unused chunk_tree argument in several functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: remove no-used alloc_chunk in btrfs_check_data_free_space() (Bill O'Donnell) [1298680]
-- [fs] btrfs: constify structs with op functions or static definitions (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch to kvfree() helper (Bill O'Donnell) [1298680]
-- [fs] btrfs: disk-io: replace root args iff only fs_info used (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed-inode: replace root args iff only fs_info used (Bill O'Donnell) [1298680]
-- [fs] btrfs: ctree: reduce args where only fs_info used (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix outstanding_extents accounting in DIO (Bill O'Donnell) [1298680]
-- [fs] btrfs: add sanity test for outstanding_extents accounting (Bill O'Donnell) [1298680]
-- [fs] btrfs: just free dummy extent buffers (Bill O'Donnell) [1298680]
-- [fs] btrfs: account merges/splits properly (Bill O'Donnell) [1298680]
-- [fs] btrfs: prepare block group cache before writing (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix ASSERT(list_empty(&cur_trans->dirty_bgs_list) (Bill O'Donnell) [1298680]
-- [fs] btrfs: account for the correct number of extents for delalloc reservations (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix merge delalloc logic (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix comp_oper to get right order (Bill O'Donnell) [1298680]
-- [fs] btrfs: catch transaction abortion after waiting for it (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix sizeof format specifier in btrfs_check_super_valid() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove extra run_delayed_refs in update_cowonly_root (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, don't rename a directory too soon (Bill O'Donnell) [1298680]
-- [fs] btrfs: do not ignore errors from btrfs_lookup_xattr in do_setxattr (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix off-by-one logic error in btrfs_realloc_node (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing inode update when punching hole (Bill O'Donnell) [1298680]
-- [fs] btrfs: abort the transaction if we fail to update the free space cache inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix allocation size calculations in alloc_btrfs_bio (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't remove extents and xattrs when logging new names (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix BUG_ON in btrfs_orphan_add() when delete unused block group (Bill O'Donnell) [1298680]
-- [fs] btrfs: account for large extents with enospc (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't set and clear delalloc for O_DIRECT writes (Bill O'Donnell) [1298680]
-- [fs] btrfs: only adjust outstanding_extents when we do a short write (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix out-of-space bug (Bill O'Donnell) [1298680]
-- [fs] btrfs: scrub, fix sleep in atomic context (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix scheduler warning when syncing log (Bill O'Donnell) [1298680]
-- [fs] page_writeback: put account_page_redirty() after set_page_dirty() (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup init for list in free-space-cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: delete chunk allocation attemp when setting block group ro (Bill O'Donnell) [1298680]
-- [fs] btrfs: clear bio reference after submit_one_bio() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix scrub race leading to use-after-free (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing cleanup on sysfs init failure (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between transaction commit and empty block group removal (Bill O'Donnell) [1298680]
-- [fs] btrfs: add more checks to btrfs_read_sys_array (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, rename a few variables in btrfs_read_sys_array (Bill O'Donnell) [1298680]
-- [fs] btrfs: add checks for sys_chunk_array sizes (Bill O'Donnell) [1298680]
-- [fs] btrfs: more superblock checks, lower bounds on devices and sectorsize/nodesize (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add code to support file creation time (Bill O'Donnell) [1298680]
-- [fs] btrfs: kill btrfs_inode_*time helpers (Bill O'Donnell) [1298680]
-- [fs] btrfs: insert_new_root: Fix lock type of the extent buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix unused members in struct btrfs_root (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: move WARN_ON() to the correct location (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup unused run_most (Bill O'Donnell) [1298680]
-- [fs] btrfs: Introduce BTRFS_BLOCK_GROUP_RAID56_MASK to check raid56 simply (Bill O'Donnell) [1298680]
-- [fs] btrfs: Include map_type in raid_bio (Bill O'Donnell) [1298680]
-- [fs] btrfs: Simplify scrub_setup_recheck_block()'s argument (Bill O'Donnell) [1298680]
-- [fs] btrfs: Combine per-page recover in dev-replace and scrub (Bill O'Donnell) [1298680]
-- [fs] btrfs: Separate finding-right-mirror and writing-to-target's process in scrub_handle_errored_block() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Break loop when reach BTRFS_MAX_MIRRORS in scrub_setup_recheck_block() (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_rm_dev_replace_blocked(): Use wait_event() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Cleanup btrfs_bio_counter_inc_blocked() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove noneed force_write in scrub_write_block_to_dev_replace (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix a jump typo of nodatasum_case to avoid wrong WARN_ON() (Bill O'Donnell) [1298680]
-- [fs] btrfs: add ref_count and free function for btrfs_bio (Bill O'Donnell) [1298680]
-- [fs] btrfs: Make raid_map array be inlined in btrfs_bio structure (Bill O'Donnell) [1298680]
-- [fs] btrfs: sort raid_map before adding tgtdev stripes (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix a out-of-bound access of raid_map (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync log replay for inodes with a mix of regular refs and extrefs (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync when extend references are added to an inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix directory inconsistency after fsync log replay (Bill O'Donnell) [1298680]
-- [fs] btrfs: lookup for block group only if needed when freeing a tree block (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove a no-op unfreeze superbock callback (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch extent_state state to unsigned (Bill O'Donnell) [1298680]
-- [fs] btrfs: update message levels after checksum errors (Bill O'Donnell) [1298680]
-- [fs] btrfs: update message levels during failed mount (Bill O'Donnell) [1298680]
-- [fs] btrfs: update message levels for errors (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix setup_leaf_for_split() to avoid leaf corruption (Bill O'Donnell) [1298680]
-- [fs] btrfs: track dirty block groups on their own list (Bill O'Donnell) [1298680]
-- [fs] btrfs: change how we track dirty roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: expand btrfs_find_item if found_key is NULL (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, remove inode_ref_info helper (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, remove inode_item_info helper (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink parameter len to alloc_extent_buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: unify extent buffer allocation api (Bill O'Donnell) [1298680]
-- [fs] btrfs: use GFP_NOFS in __alloc_extent_buffer directly (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to tree_block_processed (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to btrfs_find_create_tree_block (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to btrfs_init_new_buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to reada_tree_block_flagged (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove blocksize from reada_extent (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to readahead_tree_block (Bill O'Donnell) [1298680]
-
-* Tue Apr 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-373.el7]
-- [net] ipv6: Nonlocal bind (Sabrina Dubroca) [1315968]
-- [net] ipv4: bind ip_nonlocal_bind to current netns (Sabrina Dubroca) [1315968]
-- [net] sctp: fix race for one-to-many sockets in sendmsg's auto associate (Xin Long) [1138256]
-- [net] sctp: label accepted/peeled off sockets (Marcelo Leitner) [1247756]
-- [net] sctp: start t5 timer only when peer rwnd is 0 and local state is SHUTDOWN_PENDING (Xin Long) [1314699]
-- [net] sctp: convert sack_needed and sack_generation to bits (Xin Long) [1314699]
-- [net] sctp: update the netstamp_needed counter when copying sockets (Marcelo Leitner) [1317647]
-- [net] sctp: use the same clock as if sock source timestamps were on (Marcelo Leitner) [1317647]
-- [net] bridge: Handle IFLA_ADDRESS correctly when creating bridge device (Paolo Abeni) [1314779]
-- [net] bridge: Prevent possible race condition in br_fdb_change_mac_address (Paolo Abeni) [1314779]
-- [net] bridge: Properly check if local fdb entry can be deleted when deleting vlan (Paolo Abeni) [1314779]
-- [net] bridge: Properly check if local fdb entry can be deleted in br_fdb_delete_by_port (Paolo Abeni) [1314779]
-- [net] bridge: Properly check if local fdb entry can be deleted in br_fdb_change_mac_address (Paolo Abeni) [1314779]
-- [net] bridge: Change local fdb entries whenever mac address of bridge device changes (Paolo Abeni) [1314779]
-- [net] bridge: Fix the way to find old local fdb entries in br_fdb_change_mac_address (Paolo Abeni) [1314779]
-- [net] sctp: sctp_remaddr_seq_show use the wrong variable to dump transport info (Xin Long) [1187584]
-- [net] sctp: lack the check for ports in sctp_v6_cmp_addr (Xin Long) [1187584]
-- [net] sctp: remove the dead field of sctp_transport (Xin Long) [1187584]
-- [net] sctp: hold transport before we access t->asoc in sctp proc (Xin Long) [1187584]
-- [net] sctp: fix the transport dead race check by using atomic_add_unless on refcnt (Xin Long) [1187584]
-- [net] sctp: the temp asoc's transports should not be hashed/unhashed (Xin Long) [1187584]
-- [net] sctp: Move sequence start handling into sctp_transport_get_idx() (Xin Long) [1187584]
-- [net] sctp: support to lookup with ep+paddr in transport rhashtable (Xin Long) [1187584]
-- [net] sctp: remove the local_bh_disable/enable in sctp_endpoint_lookup_assoc (Xin Long) [1187584]
-- [net] sctp: drop the old assoc hashtable of sctp (Xin Long) [1187584]
-- [net] sctp: do not trigger BUG_ON in sctp_cmd_delete_tcb (Xin Long) [1187584]
-- [net] sctp: sideeffect: throw BUG if primary_path is NULL (Xin Long) [1187584]
-- [net] sctp: use GFP_KERNEL in sctp_init() (Xin Long) [1187584]
-- [net] sctp: apply rhashtable api to sctp procfs (Xin Long) [1187584]
-- [net] sctp: apply rhashtable api to send/recv path (Xin Long) [1187584]
-- [net] sctp: add the rhashtable apis for sctp global transport hashtable (Xin Long) [1187584]
-- [net] sctp: reorder sctp_globals to reduce cacheline usage (Xin Long) [1187584]
-- [net] ipv4: only create late gso-skb if skb is already set up with CHECKSUM_PARTIAL (Hannes Frederic Sowa) [1277095]
-- [net] ipv6: add defensive check for CHECKSUM_PARTIAL skbs in ip_fragment (Hannes Frederic Sowa) [1277095]
-- [net] ipv6: no CHECKSUM_PARTIAL on MSG_MORE corked sockets (Hannes Frederic Sowa) [1277095]
-- [net] ipv4: add defensive check for CHECKSUM_PARTIAL skbs in ip_fragment (Hannes Frederic Sowa) [1277095]
-- [net] ipv4: no CHECKSUM_PARTIAL on MSG_MORE corked sockets (Hannes Frederic Sowa) [1277095]
-- [net] revert "ipv6: don't use CHECKSUM_PARTIAL on MSG_MORE/UDP_CORK sockets" (Hannes Frederic Sowa) [1277095]
-
-* Mon Apr 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-372.el7]
-- [kernel] cgroup: pids: rhel-specific hack to fix zombie accounting (Oleg Nesterov) [1265339]
-- [kernel] cgroup: pids: fix kABI breakage (Oleg Nesterov) [1265339]
-- [kernel] cgroup: pids: adapt cgroup_pids.c to RHEL7 (Oleg Nesterov) [1265339]
-- [kernel] cgroup: implement task_get_css() (Oleg Nesterov) [1265339]
-- [kernel] cgroup: pids: fix invalid get/put usage (Oleg Nesterov) [1265339]
-- [kernel] cgroup: implement the PIDs subsystem (Oleg Nesterov) [1265339]
-- [kernel] cgroup: allow a cgroup subsystem to reject a fork (Oleg Nesterov) [1265339]
-- [fs] gfs2: Set s_mode before parsing mount options (Andrew Price) [1264523]
-- [fs] nfsv4: Fix a dentry leak on alias use (Benjamin Coddington) [1269198]
-- [fs] sunrpc: never enqueue a ->rq_cong request on ->sending (Benjamin Coddington) [1315463]
-- [fs] gfs2: Reintroduce a timeout in function gfs2_gl_hash_clear (Robert S Peterson) [1292582]
-- [fs] xfs: fix splice/direct-IO deadlock (Bill O'Donnell) [824796]
-- [fs] vfs: split generic splice code from i_mutex locking (Bill O'Donnell) [824796]
-- [fs] dlm: sctp_accept_from_sock() can be static (Xin Long) [1235699]
-- [fs] dlm: fix reconnecting but not sending data (Xin Long) [1235699]
-- [fs] dlm: replace BUG_ON with a less severe handling (Xin Long) [1235699]
-- [fs] dlm: use sctp 1-to-1 API (Xin Long) [1235699]
-- [fs] dlm: fix not reconnecting on connecting error handling (Xin Long) [1235699]
-- [fs] dlm: fix race while closing connections (Xin Long) [1235699]
-- [fs] dlm: fix connection stealing if using SCTP (Xin Long) [1235699]
-- [fs] dlm: keep listening connection alive with sctp mode (Xin Long) [1235699]
-- [fs] dlm: set zero linger time on sctp socket (Xin Long) [1235699]
-- [fs] dlm: remove duplicated include from lowcomms.c (Xin Long) [1235699]
-- [fs] dlm: disable nagle for SCTP (Xin Long) [1235699]
-- [fs] dlm: retry failed SCTP sends (Xin Long) [1235699]
-- [fs] dlm: try other IPs when sctp init assoc fails (Xin Long) [1235699]
-- [fs] dlm: clear correct bit during sctp init failure handling (Xin Long) [1235699]
-- [fs] dlm: set sctp assoc id during setup (Xin Long) [1235699]
-- [fs] dlm: clear correct init bit during sctp setup (Xin Long) [1235699]
-- [hid] usbhid: add Chicony/Pixart usb optical mouse that needs QUIRK_ALWAYS_POLL ("Herton R. Krzesinski") [1254369]
-- [x86] kernel: Call out into INT3 handler directly instead of using notifier (Luiz Capitulino) [1291899]
-- [x86] Make jump_label use int3-based patching (Luiz Capitulino) [1291899]
-- [x86] Introduce int3 (breakpoint)-based instruction patching (Luiz Capitulino) [1291899]
-- [kernel] audit: try harder to send to auditd upon netlink failure (Richard Guy Briggs) [1253123]
-- [kernel] audit: stop an old auditd being starved out by a new auditd (Richard Guy Briggs) [1253123]
-- [kernel] audit: remove stray newlines from audit_log_lost messages (Richard Guy Briggs) [1253123]
-- [kernel] audit: get rid of *NO* daemon at audit_pid=0 message (Richard Guy Briggs) [1253123]
-- [kernel] audit: prevent an older auditd shutdown from orphaning a newer auditd startup (Richard Guy Briggs) [1253123]
-- [kernel] prctl: more prctl(PR_SET_MM_*) checks (Zorro Lang) [1298820]
-- [security] selinux: quiet the filesystem labeling behavior message (Paul Moore) [1295807]
-
-* Thu Mar 31 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-371.el7]
-- [fs] nfsv4: Respect the server imposed limit on how many changes we may cache (Benjamin Coddington) [1314511]
-- [fs] nfsv4: Express delegation limit in units of pages (Benjamin Coddington) [1314511]
-- [fs] eventfd: document lockless access in eventfd_poll (Paolo Bonzini) [1293632]
-- [fs] eventfd: don't take the spinlock in eventfd_poll (Paolo Bonzini) [1293632]
-- [fs] gfs2: Use resizable hash table for glocks (Robert S Peterson) [1172819]
-- [fs] gfs2: Move glock superblock pointer to field gl_name (Robert S Peterson) [1172819]
-- [fs] gfs2: Simplify the seq file code for "sbstats" (Robert S Peterson) [1172819]
-- [fs] xfs: only run torn log write detection on dirty logs (Brian Foster) [1314355]
-- [fs] xfs: refactor in-core log state update to helper (Brian Foster) [1314355]
-- [fs] xfs: refactor unmount record detection into helper (Brian Foster) [1314355]
-- [fs] xfs: separate log head record discovery from verification (Brian Foster) [1314355]
-- [fs] cifs: fold cifs_iovec_write() into the only caller (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix warning (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix another dereference before null check warning (Sachin Prabhu) [1303850]
-- [fs] cifs: session servername can't be null (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix warning on impossible comparison (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix coverity warning (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix dereference before null check warning (Sachin Prabhu) [1303850]
-- [fs] cifs: Don't ignore errors on encrypting password in SMBTcon (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix warning on uninitialized buftype (Sachin Prabhu) [1303850]
-- [fs] cifs: potential memory leaks when parsing mnt opts (Sachin Prabhu) [1303850]
-- [fs] cifs: smb2_clone_range() - exit on unhandled error (Sachin Prabhu) [1303850]
-- [fs] cifs: fix MUST SecurityFlags filtering (Sachin Prabhu) [1303850]
-- [fs] cifs: use memzero_explicit to clear stack buffer (Sachin Prabhu) [1303850]
-- [fs] cifs: make new inode cache when file type is different (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix signed/unsigned pointer warning (Sachin Prabhu) [1303850]
-- [fs] cifs: smb2file: replace count*size kzalloc by kcalloc (Sachin Prabhu) [1303850]
-- [fs] cifs: file: replace count*size kzalloc by kcalloc (Sachin Prabhu) [1303850]
-- [fs] cifs: remove obsolete __constant (Sachin Prabhu) [1303850]
-- [fs] cifs: convert to print_hex_dump() instead of custom implementation (Sachin Prabhu) [1303850]
-- [fs] cifs: call strtobool instead of custom implementation (Sachin Prabhu) [1303850]
-- [fs] cifs: Update modinfo cifs version for cifs.ko (Sachin Prabhu) [1303850]
-- [fs] cifs: decode_negTokenInit had wrong calling sequence (Sachin Prabhu) [1303850]
-- [fs] cifs: Add missing defines for ACL query support (Sachin Prabhu) [1303850]
-- [fs] cifs: Add support for original fallocate (Sachin Prabhu) [1303850]
-- [fs] cifs: kill f_dentry uses (Sachin Prabhu) [1303850]
-- [fs] cifs: get rid of ->f_path.dentry->d_sb uses, add a new helper (Sachin Prabhu) [1303850]
-- [fs] cifs: Remove obsolete comment (Sachin Prabhu) [1303850]
-- [fs] cifs: Check minimum response length on query_network_interface (Sachin Prabhu) [1303850]
-- [fs] cifs: Workaround Mac server problem (Sachin Prabhu) [1303850]
-- [fs] cifs: Remap reserved posix characters by default - part 3 (Sachin Prabhu) [1303850]
-- [fs] cifs: Allow conversion of characters in Mac remap range - part 2 (Sachin Prabhu) [1303850]
-- [fs] cifs: Allow conversion of characters in Mac remap range - part 1 (Sachin Prabhu) [1303850]
-- [fs] cifs: mfsymlinks support for SMB2.1/SMB3. Part 2 query symlink (Sachin Prabhu) [1303850]
-- [fs] cifs: Add mfsymlinks support for SMB2.1/SMB3. Part 1 create symlink (Sachin Prabhu) [1303850]
-- [fs] cifs: Allow mknod and mkfifo on SMB2/SMB3 mounts (Sachin Prabhu) [1303850]
-- [fs] cifs: add defines for two new file attributes (Sachin Prabhu) [1303850]
-- [fs] cifs: replace strnicmp with strncasecmp (Sachin Prabhu) [1303850]
-- [fs] cifs: switch to use of p[dD] (Sachin Prabhu) [1303850]
-- [fs] mnt: Move the clear of MNT_LOCKED from copy_tree to its callers (Aristeu Rozanski) [1304328]
-- [fs] umount: Do not allow unmounting rootfs (Aristeu Rozanski) [1304328]
-- [fs] vfs: Lock in place mounts from more privileged users (Aristeu Rozanski) [1304328]
-- [tools] perf evsel: Disable branch flags/cycles for --callgraph lbr (Jiri Olsa) [1316684]
-- [x86] perf/x86: Fix LBR related crashes on Intel Atom (Jiri Olsa) [1316684]
-- [include] perf/x86: Add option to disable reading branch flags/cycles (Jiri Olsa) [1316684]
-- [x86] perf/x86/intel: Fix static checker warning in lbr enable (Jiri Olsa) [1316684]
-- [x86] perf/x86/intel: Fix LBR callstack issue caused by FREEZE_LBRS_ON_PMI (Jiri Olsa) [1316684]
-- [kernel] sched/fair: Fix division by zero sysctl_numa_balancing_scan_size ("Herton R. Krzesinski") [1314106]
-
-* Wed Mar 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-370.el7]
-- [mm] mempolicy: convert the shared_policy lock to a rwlock (George Beshers) [1303771]
-- [x86] Mark Intel Knights Landing processor as supported (Steve Best) [1158238]
-- [acpi] Workaround Cisco Systems _DSM ACPI bug (Prarit Bhargava) [1311315]
-- [drivers] core: Avoid NULL pointer dereferences in device_is_bound() (Jeremy McNicoll) [1309527]
-- [misc] pm: Avoid false-positive warnings in dev_pm_domain_set() (Jeremy McNicoll) [1309527]
-- [misc] mei: validate request value in client notify request ioctl (Jeremy McNicoll) [1309527]
-- [drivers] core: add device_is_bound() (Jeremy McNicoll) [1309527]
-- [misc] pm/domains: add setter for dev.pm_domain (Jeremy McNicoll) [1309527]
-- [misc] mei: fix fasync return value on error (Jeremy McNicoll) [1309527]
-- [misc] vmware_balloon: Support 2m page ballooning (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Do not limit the amount of frees and allocations in non-sleep mode (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Show capabilities of balloon and resulting capabilities in the debug-fs node (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Update balloon target on each lock/unlock (Dave Anderson) [1300078]
-- [misc] vmware_balloon: add batching to the vmw_balloon (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Add support for balloon capabilities (Dave Anderson) [1300078]
-- [misc] vmware_balloon: partially inline vmballoon_reserve_page (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Remove braces to fix build for clang (Dave Anderson) [1300078]
-- [hwmon] ibmpowernv: Add OF compatibility table entry (Steve Best) [1321122]
-- [netdrv] ibmveth: check return of skb_linearize in ibmveth_start_xmit (Gustavo Duarte) [1313256]
-- [kernel] cpuset: fix sleeping function called from invalid context (Mateusz Guzik) [1069467]
-- [watchdog] hpwdt: Add support for WDIOC_SETOPTIONS (Nigel Croxon) [1316536]
-- [scsi] storvsc: fix SRB_STATUS_ABORTED handling (Cathy Avery) [1287040]
-- [scsi] storvsc: Fix a bug in the handling of SRB status flags (Cathy Avery) [1287040]
-- [scsi] storvsc: get rid of bounce buffer (Cathy Avery) [1287040]
-- [scsi] storvsc: Don't set the SRB_FLAGS_QUEUE_ACTION_ENABLE flag (Cathy Avery) [1287040]
-- [scsi] storvsc: Set the error code correctly in failure conditions (Cathy Avery) [1287040]
-- [scsi] storvsc: Set the error code correctly in failure conditions (Cathy Avery) [1287040]
-- [scsi] storvsc: use shost_for_each_device() instead of open coding (Cathy Avery) [1287040]
-- [scsi] storvsc: be more picky about scmnd->sc_data_direction (Cathy Avery) [1287040]
-- [scsi] storvsc: Set the tablesize based on the information given by the host (Cathy Avery) [1287040]
-- [scsi] storvsc: Don't assume that the scatterlist is not chained (Cathy Avery) [1287040]
-- [scsi] storvsc: Retrieve information about the capability of the target (Cathy Avery) [1287040]
-- [scsi] storvsc: Always send on the selected outgoing channel (Cathy Avery) [1287040]
-- [scsi] storvsc: Size the queue depth based on the ringbuffer size (Cathy Avery) [1287040]
-- [scsi] storvsc: Increase the ring buffer size (Cathy Avery) [1287040]
-- [scsi] vmbus: Support a vmbus API for efficiently sending page arrays (Cathy Avery) [1287040]
-- [powerpc] kvm: book3s_hv: Handle unexpected traps in guest entry/exit code better (Thomas Huth) [1320162]
-- [powerpc] kvm: book3s_hv: Prohibit setting illegal transaction state in MSR (Thomas Huth) [1320162]
-- [netdrv] mlx5e: Don't modify CQ before it was created (Kamal Heib) [1316951]
-- [netdrv] mlx5e: Don't try to modify CQ moderation if it is not supported (Kamal Heib) [1316951]
-- [netdrv] mlx4_en: Fix HW timestamp init issue upon system startup (Kamal Heib) [1295875]
-- [netdrv] mlx4_en: Remove dependency between timestamping capability and service_task (Kamal Heib) [1295875]
-- [x86] kernel: Fix time_shift in perf_event_mmap_page (Prarit Bhargava) [1303663]
-- [x86] kernel: Improve accuracy of perf/sched clock (Prarit Bhargava) [1303663]
-- [x86] kernel: Use preempt_disable_notrace() in cycles_2_ns() (Prarit Bhargava) [1303663]
-- [x86] kernel: Initialize multiplier to 0 (Prarit Bhargava) [1303663]
-- [x86] Rewrite cyc2ns() to avoid the need to disable IRQs (Prarit Bhargava) [1303663]
-- [x86] Move some cyc2ns() code around (Prarit Bhargava) [1303663]
-- [x86] Use mul_u64_u32_shr() for native_sched_clock() (Prarit Bhargava) [1303663]
-- [tools] cpupower: Fix build error in cpufreq-info (Prarit Bhargava) [1316657]
-- [tools] cpupower: fix how "cpupower frequency-info" interprets latency (Prarit Bhargava) [1316657]
-- [tools] cpupower: rework the "cpupower frequency-info" command (Prarit Bhargava) [1316657]
-- [tools] cpupower: Do not analyse offlined cpus (Prarit Bhargava) [1316657]
-- [tools] cpupower: Provide STATIC variable in Makefile for debug builds (Prarit Bhargava) [1316657]
-- [tools] cpupower: Fix precedence issue (Prarit Bhargava) [1316657]
-- [tools] power turbostat: use new name for MSR_PLATFORM_INFO (Prarit Bhargava) [1316657]
-- [tools] Creating a common structure initialization pattern for struct option (Prarit Bhargava) [1316657]
-- [tools] cpupower: Enable disabled Cstates if they are below max latency (Prarit Bhargava) [1316657]
-- [tools] cpupower: Remove debug message when using cpupower idle-set -D switch (Prarit Bhargava) [1316657]
-- [tools] cpupower: cpupower monitor reports uninitialized values for offline cpus (Prarit Bhargava) [1316657]
-- [tools] power turbostat: bugfix: print MAX_NON_TURBO_RATIO (Prarit Bhargava) [1316657]
-- [tools] power turbostat: simplify Bzy_MHz calculation (Prarit Bhargava) [1316657]
-- [tools] power turbosat: update version number (Prarit Bhargava) [1316657]
-- [tools] power turbostat: skl: Adjust for TSC difference from base frequency (Prarit Bhargava) [1316657]
-- [tools] power turbostat: ivb xeon: fix --debug regression (Prarit Bhargava) [1316657]
-- [tools] power turbostat: fix typo on DRAM column in Joules-mode (Prarit Bhargava) [1316657]
-- [tools] power turbostat: fix parameter passing for forked command (Prarit Bhargava) [1316657]
-- [tools] power turbostat: dump CONFIG_TDP (Prarit Bhargava) [1316657]
-- [tools] power turbostat: cpu0 is no longer hard-coded, so update output (Prarit Bhargava) [1316657]
-- [tools] x86/uapi: Do not export <asm/msr-index.h> as part of the user API headers (Prarit Bhargava) [1316657]
-- [tools] power turbostat: update turbostat(8) (Prarit Bhargava) [1316657]
-- [tools] cpupower: mperf monitor: fix output in MAX_FREQ_SYSFS mode (Prarit Bhargava) [1316657]
-
-* Fri Mar 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-369.el7]
-- [md] dm: fix rq_end_stats() NULL pointer in dm_requeue_original_request() (Mike Snitzer) [1314530 1317073]
-- [md] dm: use RHEL7's old blk_mq_alloc_request and blk_mq_complete_request interfaces (Mike Snitzer) [1314530 1317073]
-- [md] dm-bufio: virt_to_phys() doesn't change remainder modulo PAGE_SIZE (Mike Snitzer) [1314530 1317073]
-- [md] dm thin: consistently return -ENOSPC if pool has run out of data space (Mike Snitzer) [1314530 1317073]
-- [md] dm cache: bump the target version (Mike Snitzer) [1314530 1317073]
-- [md] dm cache: make sure every metadata function checks fail_io (Mike Snitzer) [1314530 1317073]
-- [md] dm: add missing newline between DM_DEBUG_BLOCK_STACK_TRACING and DM_BUFIO (Mike Snitzer) [1314530 1317073]
-- [md] dm cache policy smq: clarify that mq registration failure was for 'mq' (Mike Snitzer) [1314530 1317073]
-- [md] dm: return error if bio_integrity_clone() fails in clone_bio() (Mike Snitzer) [1314530 1317073]
-- [md] dm thin metadata: don't issue prefetches if a transaction abort has failed (Mike Snitzer) [1314530 1317073]
-- [include] dm snapshot: disallow the COW and origin devices from being identical (Mike Snitzer) [1314530 1317073]
-- [md] dm cache: make the 'mq' policy an alias for 'smq' (Mike Snitzer) [1314530 1317073]
-- [md] dm: drop unnecessary assignment of md->queue (Mike Snitzer) [1314530 1317073]
-- [md] dm: reorder 'struct mapped_device' members to fix alignment and holes (Mike Snitzer) [1314530 1317073]
-- [md] dm: remove dummy definition of 'struct dm_table' (Mike Snitzer) [1314530 1317073]
-- [md] dm: add 'dm_numa_node' module parameter (Mike Snitzer) [1314530 1317073]
-- [md] dm thin metadata: remove needless newline from subtree_dec() DMERR message (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: cleanup reinstate_path() et al based on code review (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: remove __pgpath_busy forward declaration, rename to pgpath_busy (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: switch from 'unsigned' to 'bool' for flags where appropriate (Mike Snitzer) [1314530 1317073]
-- [md] dm round robin: use percpu 'repeat_count' and 'current_path' (Mike Snitzer) [1314530 1317073]
-- [md] dm path selector: remove 'repeat_count' return from .select_path hook (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: push path selector locking down to path selectors (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: remove repeat_count support from multipath core (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: remove unnecessary casts in front of ti->private (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: use blk_mq_alloc_request() and blk_mq_free_request() directly (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: cleanup 'struct dm_mpath_io' management code (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: use blk-mq pdu for per-request 'struct dm_mpath_io' (Mike Snitzer) [1314530 1317073]
-- [md] dm: allow immutable request-based targets to use blk-mq pdu (Mike Snitzer) [1314530 1317073]
-- [include] dm: rename target's per_bio_data_size to per_io_data_size (Mike Snitzer) [1314530 1317073]
-- [md] dm: distinquish old .request_fn (dm-old) vs dm-mq request-based DM (Mike Snitzer) [1314530 1317073]
-- [md] dm: remove support for stacking dm-mq on .request_fn device(s) (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix a couple locking issues with use of block interfaces (Mike Snitzer) [1314530 1317073]
-- [md] dm: cleanup methods that requeue requests (Mike Snitzer) [1314530 1317073]
-- [md] dm: allocate blk_mq_tag_set rather than embed in mapped_device (Mike Snitzer) [1314530 1317073]
-- [md] dm: add 'dm_mq_nr_hw_queues' and 'dm_mq_queue_depth' module params (Mike Snitzer) [1314530 1317073]
-- [md] dm: optimize dm_request_fn() (Mike Snitzer) [1314530 1317073]
-- [md] dm: optimize dm_mq_queue_rq() (Mike Snitzer) [1314530 1317073]
-- [include] dm: set DM_TARGET_WILDCARD feature on "error" target (Mike Snitzer) [1314530 1317073]
-- [md] dm: cleanup dm_any_congested() (Mike Snitzer) [1314530 1317073]
-- [md] dm: remove unused dm_get_rq_mapinfo() (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix excessive dm-mq context switching (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix sparse "unexpected unlock" warnings in ioctl code (Mike Snitzer) [1314530 1317073]
-- [md] dm: do not return target from dm_get_live_table_for_ioctl() (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: fix infinite recursion in ioctl when no paths and !queue_if_no_path (Mike Snitzer) [1314530 1317073]
-- [md] dm: do not reuse dm_blk_ioctl block_device input as local variable (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix ioctl retry termination with signal (Mike Snitzer) [1314530 1317073]
-- [include] dm: add support for passing through persistent reservations (Mike Snitzer) [1314530 1317073]
-- [include] dm: refactor ioctl handling (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix dm_rq_target_io leak on faults with .request_fn DM w_ blk-mq paths (Mike Snitzer) [1314530 1317073]
-- [md] dm snapshot: fix hung bios when copy error occurs (Mike Snitzer) [1314530 1317073]
-- [md] dm thin: bump thin and thin-pool target versions (Mike Snitzer) [1314530 1317073]
-- [md] dm verity: factor out structures and functions useful to separate object (Mike Snitzer) [1314530 1317073]
-- [md] dm verity: move dm-verity.c to dm-verity-target.c (Mike Snitzer) [1314530 1317073]
-- [md] dm verity: separate function for parsing opt args (Mike Snitzer) [1314530 1317073]
-- [md] dm verity: clean up duplicate hashing code (Mike Snitzer) [1314530 1317073]
-- [md] dm btree: factor out need_insert() helper (Mike Snitzer) [1314530 1317073]
-- [md] dm bufio: use BUG_ON instead of conditional call to BUG (Mike Snitzer) [1314530 1317073]
-- [md] dm bufio: store stacktrace in buffers to help find buffer leaks (Mike Snitzer) [1314530 1317073]
-- [md] dm bufio: return NULL to improve code clarity (Mike Snitzer) [1314530 1317073]
-- [md] dm block manager: cleanup code that prints stacktrace (Mike Snitzer) [1314530 1317073]
-- [md] dm: don't save and restore bi_private (Mike Snitzer) [1314530 1317073]
-- [md] dm thin metadata: make dm_thin_find_mapped_range() atomic (Mike Snitzer) [1314530 1317073]
-- [md] dm thin metadata: speed up discard of partially mapped volumes (Mike Snitzer) [1314530 1317073]
-- [md] dm crypt: fix a possible hang due to race condition on exit (Mike Snitzer) [1314530 1317073]
-- [md] dm thin: restore requested 'error_if_no_space' setting on OODS to WRITE transition (Mike Snitzer) [1314530 1317073]
-- [md] dm switch: simplify conditional in alloc_region_table() (Mike Snitzer) [1314530 1317073]
-- [md] dm delay: document that offsets are specified in sectors (Mike Snitzer) [1314530 1317073]
-- [md] dm delay: capitalize the start of an delay_ctr() error message (Mike Snitzer) [1314530 1317073]
-- [md] dm delay: Use DM_MAPIO macros instead of open-coded equivalents (Mike Snitzer) [1314530 1317073]
-- [md] dm linear: remove redundant target name from error messages (Mike Snitzer) [1314530 1317073]
-- [md] dm persistent data: eliminate unnecessary return values (Mike Snitzer) [1314530 1317073]
-- [md] dm: convert ffs to __ffs (Mike Snitzer) [1314530 1317073]
-- [md] dm: drop NULL test before kmem_cache_destroy() and mempool_destroy() (Mike Snitzer) [1314530 1317073]
-- [md] dm: initialize non-blk-mq queue data before queue is used (Mike Snitzer) [1314530 1317073]
-- [md] dm thin: fix missing pool reference count decrement in pool_ctr error path (Mike Snitzer) [1314530 1317073]
-- [md] dm snapshot persistent: fix missing cleanup in persistent_ctr error path (Mike Snitzer) [1314530 1317073]
-- [md] dm raid: fix round up of default region size (Mike Snitzer) [1314530 1317073]
-- [documentation] dm raid: document RAID 4_5_6 discard support (Mike Snitzer) [1314530 1317073]
-- [md] dm snapshot: add new persistent store option to support overflow (Mike Snitzer) [1314530 1317073]
-- [md] dm snapshot: don't invalidate on-disk image on snapshot write overflow (Mike Snitzer) [1314530 1317073]
-- [md] dm: remove unlikely() before IS_ERR() (Mike Snitzer) [1314530 1317073]
-- [md] dm: do not override error code returned from dm_get_device() (Mike Snitzer) [1314530 1317073]
-- [md] dm: test return value for DM_MAPIO_SUBMITTED (Mike Snitzer) [1314530 1317073]
-- [md] dm btree remove: remove unused function get_nr_entries() (Mike Snitzer) [1314530 1317073]
-- [md] dm btree: remove unused "dm_block_t root" parameter in btree_split_sibling() (Mike Snitzer) [1314530 1317073]
-- [md] dm cache policy smq: change the mutex to a spinlock (Mike Snitzer) [1314530 1317073]
-- [scsi] only re-lock door after EH on devices that were reset (Ewan Milne) [1316290]
-- [scsi] bnx2fc: Fix FCP RSP residual parsing (Maurizio Lombardi) [1306342]
-- [scsi] 3w-sas: fix command completion race (Tomas Henzl) [1294538]
-- [scsi] add use_cmd_list flag (Ewan Milne) [1265985]
-
-* Thu Mar 24 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-368.el7]
-- [net] netlink: Properly unbind in error conditions (Phil Sutter) [1238749]
-- [net] netlink: Replace rhash_portid with bound (Phil Sutter) [1238749]
-- [net] netlink: have netlink per-protocol bind function return an error code (Phil Sutter) [1238749]
-- [net] netlink: simplify nfnetlink_bind (Phil Sutter) [1238749]
-- [net] netlink: Fix autobind race condition that leads to zero port ID (Phil Sutter) [1238749]
-- [lib] rhashtable: Kill harmless RCU warning in rhashtable_walk_init (Phil Sutter) [1238749]
-- [lib] rhashtable: Enforce minimum size on initial hash table (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix walker list corruption (Phil Sutter) [1238749]
-- [lib] rhashtable: add function to replace an element (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove unnecessary wmb for future_tbl (Phil Sutter) [1238749]
-- [lib] rhashtable: Prevent spurious EBUSY errors on insertion (Phil Sutter) [1238749]
-- [lib] rhashtable: fix data race in rhashtable_rehash_one (Phil Sutter) [1238749]
-- [lib] rhashtable-test: extend to test concurrency (Phil Sutter) [1238749]
-- [net] netlink: don't hold mutex in rcu callback when releasing mmapd ring (Phil Sutter) [1238749]
-- [lib] rhashtable: Allow other tasks to be scheduled in large lookup loops (Phil Sutter) [1238749]
-- [lib] rhashtable: fix for resize events during table walk (Phil Sutter) [1238749]
-- [lib] rhashtable: add missing import <linux/export.h> (Phil Sutter) [1238749]
-- [net] netlink: Reset portid after netlink_insert failure (Phil Sutter) [1238749]
-- [lib] rhashtable: Add cap on number of elements in hash table (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Fix 64bit division (Phil Sutter) [1238749]
-- [lib] rhashtable: Simplify iterator code (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Detect insertion failures (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Use walker to test bucket statistics (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Do not allocate individual test objects (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Get rid of ptr in test_obj structure (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Measure time to insert, remove & traverse entries (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Remove unused TEST_NEXPANDS (Phil Sutter) [1238749]
-- [lib] rhashtable: don't attempt to grow when at max_size (Phil Sutter) [1238749]
-- [lib] rhashtable: Do not schedule more than one rehash if we can't grow further (Phil Sutter) [1238749]
-- [lib] rhashtable: Schedule async resize when sync realloc fails (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Remove bogus max_size setting (Phil Sutter) [1238749]
-- [lib] rhashtable: provide len to obj_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Disable automatic shrinking by default (Phil Sutter) [1238749]
-- [lib] rhashtable: Add rhashtable_free_and_destroy() (Phil Sutter) [1238749]
-- [lib] rhashtable: Mark internal/private inline functions as such (Phil Sutter) [1238749]
-- [lib] rhashtable: Use 'unsigned int' consistently (Phil Sutter) [1238749]
-- [lib] rhashtable: Extend RCU read lock into rhashtable_insert_rehash() (Phil Sutter) [1238749]
-- [lib] rhashtable: Add comment on choice of elasticity value (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix sleeping inside RCU critical section in walk_stop (Phil Sutter) [1238749]
-- [lib] rhashtable: Add immediate rehash during insertion (Phil Sutter) [1238749]
-- [lib] rhashtable: Allow GFP_ATOMIC bucket table allocation (Phil Sutter) [1238749]
-- [lib] rhashtable: Add multiple rehash support (Phil Sutter) [1238749]
-- [lib] rhashtable: Shrink to fit (Phil Sutter) [1238749]
-- [lib] netlink: Use default rhashtable hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Allow hashfn to be unset (Phil Sutter) [1238749]
-- [lib] rhashtable: Eliminate unnecessary branch in rht_key_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Add barrier to ensure we see new tables in walker (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix undeclared EEXIST build error on ia64 (Phil Sutter) [1238749]
-- [lib] rhashtable: Rip out obsolete out-of-line interface (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Use inlined rhashtable interface (Phil Sutter) [1238749]
-- [net] netfilter: Convert nft_hash to inlined rhashtable (Phil Sutter) [1238749]
-- [net] netlink: Move namespace into hash key (Phil Sutter) [1238749]
-- [lib] rhashtable: Allow hash/comparison functions to be inlined (Phil Sutter) [1238749]
-- [lib] rhashtable: Make rhashtable_init params argument const (Phil Sutter) [1238749]
-- [lib] rhashtable: Round up/down min/max_size to ensure we respect limit (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove max_shift and min_shift (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Use rhashtable max_size instead of max_shift (Phil Sutter) [1238749]
-- [net] netlink: Use rhashtable max_size instead of max_shift (Phil Sutter) [1238749]
-- [lib] rhashtable: Introduce max_size/min_size (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove shift from bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: Annotate RCU locking of walkers (Phil Sutter) [1238749]
-- [lib] rhashtable: Avoid calculating hash again to unlock (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix rhashtable_remove failures (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix use-after-free in rhashtable_walk_stop (Phil Sutter) [1238749]
-- [lib] rhashtable: Move future_tbl into struct bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: Add rehash counter to bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: Free bucket tables asynchronously after rehash (Phil Sutter) [1238749]
-- [lib] rhashtable: Move seed init into bucket_table_alloc (Phil Sutter) [1238749]
-- [lib] rhashtable: Use SINGLE_DEPTH_NESTING (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix walker behaviour during rehash (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix read-side crash during rehash (Phil Sutter) [1238749]
-- [lib] rhashtable: kill ht->shift atomic operations (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix reader/rehash race (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove obj_raw_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove key length argument to key_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Use head_hashfn instead of obj_raw_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Move masking back into key_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Add annotation to nested lock (Phil Sutter) [1238749]
-- [lib] rhashtable: Add arbitrary rehash function (Phil Sutter) [1238749]
-- [lib] rhashtable: Move hash_rnd into bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: use cond_resched() (Phil Sutter) [1238749]
-- [lib] rhashtable: remove indirection for grow/shrink decision functions (Phil Sutter) [1238749]
-- [lib] rhashtable: unconditionally grow when max_shift is not specified (Phil Sutter) [1238749]
-- [lib] rhashtable: initialize all rhashtable walker members (Phil Sutter) [1238749]
-- [lib] rhashtable: don't allocate ht structure on stack in test_rht_init (Phil Sutter) [1238749]
-- [lib] rhashtable: ensure cache line alignment on bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: allow to unload test module (Phil Sutter) [1238749]
-- [lib] rhashtable: better high order allocation attempts (Phil Sutter) [1238749]
-- [lib] rhashtable: don't test for shrink on insert, expansion on delete (Phil Sutter) [1238749]
-- [lib] rhashtable: using ERR_PTR requires linux/err.h (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix remove logic to avoid cross references between buckets (Phil Sutter) [1238749]
-- [lib] rhashtable: Avoid bucket cross reference after removal (Phil Sutter) [1238749]
-- [lib] rhashtable: Add more lock verification (Phil Sutter) [1238749]
-- [lib] rhashtable: Dump bucket tables on locking violation under PROVE_LOCKING (Phil Sutter) [1238749]
-- [lib] rhashtable: Wait for RCU readers after final unzip work (Phil Sutter) [1238749]
-- [lib] rhashtable: Use a single bucket lock for sibling buckets (Phil Sutter) [1238749]
-- [lib] rhashtable: key_hashfn() must return full hash value (Phil Sutter) [1238749]
-- [net] netlink: Use rhashtable walk iterator (Phil Sutter) [1238749]
-- [lib] rhashtable: Introduce rhashtable_walk_* (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix potential crash on destroy in rhashtable_shrink (Phil Sutter) [1238749]
-- [lib] rhashtable: Make selftest modular (Phil Sutter) [1238749]
-- [net] netlink: Kill redundant net argument in netlink_insert (Phil Sutter) [1238749]
-- [lib] rhashtable: rhashtable_remove() must unlink in both tbl and future_tbl (Phil Sutter) [1238749]
-- [lib] rhashtable: fix rht_for_each_entry_safe() endless loop (Phil Sutter) [1238749]
-- [net] netlink: Fix netlink_insert EADDRINUSE error (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix race in rhashtable_destroy() and use regular work_struct (Phil Sutter) [1238749]
-- [lib] rhashtable: Lower/upper bucket may map to same lock while shrinking (Phil Sutter) [1238749]
-- [lib] rhashtable: add a note for grow and shrink decision functions (Phil Sutter) [1238749]
-- [net] netlink: eliminate nl_sk_hash_lock (Phil Sutter) [1238749]
-- [lib] rhashtable: involve rhashtable_lookup_compare_insert routine (Phil Sutter) [1238749]
-- [lib] rhashtable: initialize atomic nelems variable (Phil Sutter) [1238749]
-- [lib] rhashtable: avoid unnecessary wakeup for worker queue (Phil Sutter) [1238749]
-- [lib] rhashtable: future table needs to be traversed when remove an object (Phil Sutter) [1238749]
-- [lib] rhashtable: involve rhashtable_lookup_insert routine (Phil Sutter) [1238749]
-- [lib] rhashtable: introduce rhashtable_wakeup_worker helper function (Phil Sutter) [1238749]
-- [lib] rhashtable: optimize rhashtable_lookup routine (Phil Sutter) [1238749]
-- [lib] rhashtable: fix missing header (Phil Sutter) [1238749]
-- [net] netlink: Lockless lookup with RCU grace period in socket release (Phil Sutter) [1238749]
-- [lib] rhashtable: Supports for nulls marker (Phil Sutter) [1238749]
-- [lib] rhashtable: Per bucket locks & deferred expansion/shrinking (Phil Sutter) [1238749]
-- [kernel] spinlock: Add spin_lock_bh_nested() (Phil Sutter) [1238749]
-- [lib] rhashtable: nft_hash: Remove rhashtable_remove_pprev() (Phil Sutter) [1238749]
-- [lib] rhashtable: Factor out bucket_tail() function (Phil Sutter) [1238749]
-- [lib] rhashtable: Convert bucket iterators to take table and index (Phil Sutter) [1238749]
-- [lib] rhashtable: Use rht_obj() instead of manual offset calculation (Phil Sutter) [1238749]
-- [lib] rhashtable: Do hashing inside of rhashtable_lookup_compare() (Phil Sutter) [1238749]
-- [net] netlink: Don't reorder loads/stores before marking mmap netlink frame as available (Phil Sutter) [1238749]
-- [net] netlink: use jhash as hashfn for rhashtable (Phil Sutter) [1238749]
-- [lib] rhashtable: Check for count mismatch while iterating in selftest (Phil Sutter) [1238749]
-- [lib] rhashtable: Drop gfp_flags arg in insert/remove functions (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove weird non-ASCII characters from comments (Phil Sutter) [1238749]
-- [lib] rhashtable: Resizable, Scalable, Concurrent Hash Table (Phil Sutter) [1238749]
-- [kernel] softirq: Use _RET_IP_ (Phil Sutter) [1238749]
-
-* Wed Mar 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-367.el7]
-- [fs] userfaultfd: don't block on the last VM updates at exit time (Andrea Arcangeli) [1314136]
-- [mm] thp: fix SMP race condition between THP page fault and MADV_DONTNEED (Andrea Arcangeli) [1314132]
-- [x86] Remove get_hbp_len and replace with bp_len (Kim Naru) [928536]
-- [x86] perf: AMD support for bp_len > HW_BREAKPOINT_LEN_8 (Kim Naru) [928536]
-- [scsi] sd: implement the Persistent Reservation API (Mike Snitzer) [1317629]
-- [block] add an API for Persistent Reservations (Mike Snitzer) [1317629]
-- [block] cleanup blkdev_ioctl (Mike Snitzer) [1317629]
-- [hwmon] fam15h_power: Add bit masking for tdp_limit (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add support for AMD new 15h processors (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add max compute unit accumulated power (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Enable power1_input on AMD Carrizo (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Refactor attributes for dynamically added (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add ratio of Tsample to the PTSC period (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Update running_avg_capture bit field to 28 (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Rename fam15h_power_is_internal_node0 function (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add support for AMD Carrizo (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Fix NB device ID for F16h M30h (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Make actual power reporting conditional (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add support for two more processors (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Remove needless pci dev id (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Convert to devm_hwmon_device_register_with_groups (Kim Naru) [1135023]
-- [kernel] sched, time: Switch VIRT_CPU_ACCOUNTING_GEN to jiffy granularity (Rik van Riel) [1217244]
-- [kernel] time, acct: Drop irq save & restore from __acct_update_integrals() (Rik van Riel) [1217244]
-- [kernel] acct, time: Change indentation in __acct_update_integrals() (Rik van Riel) [1217244]
-- [kernel] sched, time: Remove non-power-of-two divides from __acct_update_integrals() (Rik van Riel) [1217244]
-- [kernel] sched/cputime: Convert vtime_seqlock to seqcount (Rik van Riel) [1217244]
-- [netdrv] mlx4: Handle return codes in mlx4_qp_attach_common (Kamal Heib) [1184526]
-- [cpufreq] intel_pstate: Minor cleanup for FRAC_BITS (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Account for non C0 time (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Configurable algorithm to get target pstate (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Fix "performance" mode behavior with HWP enabled (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Replace BYT with ATOM (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Fix intel_pstate powersave min_perf_pct value (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: get P1 from TAR when available (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Use separate max pstate for scaling (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Fix user input of min/max to legal policy region (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: append more Oracle OEM table id to vendor bypass list (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Fix possible overflow complained by Coverity (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: honor user space min_perf_pct override on resume (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Add tsc collection and keep previous target pstate (Prarit Bhargava) [1283337]
-- [powerpc] eeh: Fix PE location code (Gustavo Duarte) [1302537]
-
-* Fri Mar 18 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-366.el7]
-- [mm] revert "write to force_empty will cause soft lockup" (Rafael Aquini) [1317568]
-- [mm] madvise: fix MADV_WILLNEED on shmem swapouts (Mitsuhiro Tanino) [1312729]
-- [md] dm-space-map-metadata: remove unused variable in brb_pop() (Mike Snitzer) [1286500]
-- [md] dm-space-map-metadata: fix ref counting bug when bootstrapping a new space map (Mike Snitzer) [1286500]
-- [md] dm-thin-metadata: fix bug when taking a metadata snapshot (Mike Snitzer) [1286500]
-- [md] dm-btree: fix bufio buffer leaks in dm_btree_del() error path (Mike Snitzer) [1290911]
-- [md] dm-btree: fix leak of bufio-backed block in btree_split_sibling error path (Mike Snitzer) [1290911]
-- [tty] pty: make sure super_block is still valid in final /dev/tty close ("Herton R. Krzesinski") [1291313]
-- [tty] pty: fix possible use after free of tty->driver_data ("Herton R. Krzesinski") [1291313]
-- [ata] ahci: Remove obsolete Intel Lewisburg SATA RAID device IDs (Steve Best) [1317039]
-- [idle] intel_idle: Support for Intel Xeon Phi Processor x200 Product Family (Steve Best) [1145367]
-- [idle] intel_idle: Skylake Client Support - updated (Prarit Bhargava) [1274037]
-- [s390] compat: correct restore of high gprs on signal return (Hendrik Brueckner) [1313722]
-- [edac] sb_edac: Fix logic when computing DIMM sizes on Xeon Phi (Aristeu Rozanski) [1145354]
-- [edac] sb_edac: Set fixed DIMM width on Xeon Knights Landing (Aristeu Rozanski) [1145354]
-- [edac] sb_edac: Add Knights Landing (Xeon Phi gen 2) support (Aristeu Rozanski) [1145354]
-- [edac] sb_edac: Add support for duplicate device IDs (Aristeu Rozanski) [1145354]
-- [edac] sb_edac: Virtualize several hard-coded functions (Aristeu Rozanski) [1145354]
-- [edac] Add DDR4 flag (Aristeu Rozanski) [1145354]
-- [block] virtio-blk: use VIRTIO_BLK_F_WCE and VIRTIO_BLK_F_CONFIG_WCE in virtio1 (Fam Zheng) [1266008]
-- [include] perf/core: Drop PERF_EVENT_TXN (Jiri Olsa) [1274454]
-- [powerpc] perf/powerpc/hv-24x7: Use PMU_TXN_READ interface (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Simplify extracting counter from result buffer (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Whitespace - fix parameter alignment (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Add missing put_cpu_var() (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Break up single_24x7_request (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Define update_event_count() (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Whitespace cleanup (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Define add_event_to_24x7_request() (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Rename hv_24x7_event_update (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Move debug prints to separate function (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Drop event_24x7_request() (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Use pr_devel() to log message (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Remove unnecessary parameter (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Modify definition of request and result buffers (Jiri Olsa) [1274454]
-- [kernel] perf/core: Define PERF_PMU_TXN_READ interface (Jiri Olsa) [1274454]
-- [kernel] perf/core: Add return value for perf_event_read() (Jiri Olsa) [1274454]
-- [kernel] perf/core: Invert perf_read_group() loops (Jiri Olsa) [1274454]
-- [kernel] perf/core: Add group reads to perf_event_read() (Jiri Olsa) [1274454]
-- [kernel] perf/core: Rename perf_event_read_{one, group}, perf_read_hw (Jiri Olsa) [1274454]
-- [kernel] perf/core: Split perf_event_read() and perf_event_count() (Jiri Olsa) [1274454]
-- [kernel] perf/core: Add a 'flags' parameter to the PMU transactional interfaces (Jiri Olsa) [1274454]
-- [powerpc] kvm: book3s_hv: Sanitize special-purpose register values on guest exit (Thomas Huth) [1313725]
-- [powerpc] pseries: Limit EPOW reset event warnings (Gustavo Duarte) [1303078]
-- [powerpc] ioda: Set "read" permission when "write" is set (Gustavo Duarte) [1297885]
-
-* Mon Mar 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-365.el7]
-- [include] usb: Add phy/phy.h to help keep files in sync (Don Zickus) [1303209]
-- [usb] cp210x: add ID for HubZ dual ZigBee and Z-Wave dongle (Don Zickus) [1303209]
-- [netdrv] cdc_ncm: Fix tx_bytes statistics (Don Zickus) [1303209]
-- [netdrv] usbnet: avoid integer overflow in start_xmit (Don Zickus) [1303209]
-- [netdrv] drivers/net/usb: Add support for 'Lenovo OneLink Pro Dock' (Don Zickus) [1303209]
-- [usb] cp210x: add ID for KCF Technologies PRN device (Don Zickus) [1303209]
-- [netdrv] usbnet: rename work handler (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: add device id for Lenovo TP USB 3.0 Ethernet (Don Zickus) [1303209]
-- [include] usbnet: Fix tx_bytes statistic running backward in cdc_ncm (Don Zickus) [1303209]
-- [usb] f81232: fix some minor style issues (Don Zickus) [1303209]
-- [usb] f81232: modify/add author (Don Zickus) [1303209]
-- [usb] f81232: cleanup non-used define (Don Zickus) [1303209]
-- [usb] f81232: clarify f81232_ioctl() and fix (Don Zickus) [1303209]
-- [usb] f81232: implement set_termios() (Don Zickus) [1303209]
-- [usb] f81232: implement port enable/disable method (Don Zickus) [1303209]
-- [usb] f81232: implement MCR/MSR function (Don Zickus) [1303209]
-- [usb] f81232: implement read IIR/MSR with endpoint (Don Zickus) [1303209]
-- [usb] f81232: change lock mechanism (Don Zickus) [1303209]
-- [usb] f81232: implement RX bulk-in EP (Don Zickus) [1303209]
-- [usb] f81232: rename private struct member name (Don Zickus) [1303209]
-- [include] usb: otg-fsm: move 2 otg fsm timers definition to otg_fsm_timer (Don Zickus) [1303209]
-- [usb] Move usb_disabled() towards top of the file (Don Zickus) [1303209]
-- [netdrv] cx82310_eth: fix semicolon.cocci warnings (Don Zickus) [1303209]
-- [netdrv] cx82310_eth: wait for firmware to become ready (Don Zickus) [1303209]
-- [netdrv] revert "net: cx82310_eth: use common match macro" (Don Zickus) [1303209]
-- [usb] ehci-msm: Remove dead dependency (Don Zickus) [1303209]
-- [usb] load usb phy earlier (Don Zickus) [1303209]
-- [usb] common: otg-fsm: only signal connect after switching to peripheral (Don Zickus) [1303209]
-- [netdrv] net: usb: Use eth_<foo>_addr instead of memset (Don Zickus) [1303209]
-- [usb] ftdi_sio: Add jtag quirk support for Cyber Cortex AV boards (Don Zickus) [1303209]
-- [include] usbnet: Fix tx_packets stat for FLAG_MULTI_FRAME drivers (Don Zickus) [1303209]
-- [netdrv] net: asix: add support for the Sitecom LN-028 USB adapter (Don Zickus) [1303209]
-- [usb] ftdi_sio: add PIDs for Actisense USB devices (Don Zickus) [1303209]
-- [netdrv] hso: replace current->state by __set_current_state() (Don Zickus) [1303209]
-- [netdrv] hso: always read interface number from the current altsetting (Don Zickus) [1303209]
-- [netdrv] usb: plusb: Add support for National Instruments host-to-host cable (Don Zickus) [1303209]
-- [netdrv] r8152: support setting rx coalesce (Don Zickus) [1303209]
-- [netdrv] r8152: change rx early size when the mtu is changed (Don Zickus) [1303209]
-- [netdrv] r8152: separate USB_RX_EARLY_AGG (Don Zickus) [1303209]
-- [netdrv] r8152: restore hw settings (Don Zickus) [1303209]
-- [usb] use *pb[l] to print bitmaps including cpumasks and nodemasks (Don Zickus) [1303209]
-- [netdrv] hso: fix rx parsing logic when skb allocation fails (Don Zickus) [1303209]
-- [usb] pm: Remove unneeded #ifdef and associated dead code (Don Zickus) [1303209]
-- [netdrv] r8152: use BIT macro (Don Zickus) [1303209]
-- [netdrv] r8152: replace get_protocol with vlan_get_protocol (Don Zickus) [1303209]
-- [netdrv] r8152: adjust the line feed for hw_features (Don Zickus) [1303209]
-- [netdrv] r8152: check RTL8152_UNPLUG for rtl8152_close (Don Zickus) [1303209]
-- [netdrv] r8152: check linking status with netif_carrier_ok (Don Zickus) [1303209]
-- [netdrv] r8152: adjust lpm timer (Don Zickus) [1303209]
-- [netdrv] r8152: adjust rx_bottom (Don Zickus) [1303209]
-- [netdrv] hso: Use static attribute groups for sysfs entry (Don Zickus) [1303209]
-- [netdrv] net: usb: sr9700: Use 'SR_' prefix for the common register macros (Don Zickus) [1303209]
-- [netdrv] hso: fix rfkill name conflicts (Don Zickus) [1303209]
-- [netdrv] hso: add missing cancel_work_sync in disconnect() (Don Zickus) [1303209]
-- [netdrv] hso: update serial_table in usb disconnect method (Don Zickus) [1303209]
-- [netdrv] hso: move tty_unregister outside hso_serial_common_free() (Don Zickus) [1303209]
-- [netdrv] hso: replace reset_device work by usb_queue_reset_device() (Don Zickus) [1303209]
-- [netdrv] hso: rename hso_dev into serial in hso_free_interface() (Don Zickus) [1303209]
-- [netdrv] hso: fix small indentation error (Don Zickus) [1303209]
-- [netdrv] hso: fix memory leak in hso_create_rfkill() (Don Zickus) [1303209]
-- [netdrv] hso: fix memory leak when device disconnects (Don Zickus) [1303209]
-- [netdrv] hso: fix crash when device disappears while serial port is open (Don Zickus) [1303209]
-- [netdrv] hso: remove useless header file timer.h (Don Zickus) [1303209]
-- [usb] isp1760: Add device controller support (Don Zickus) [1303209]
-- [usb] isp1760: Move core code to isp1760-core.c (Don Zickus) [1303209]
-- [usb] cp210x: add ID for RUGGEDCOM USB Serial Console (Don Zickus) [1303209]
-- [include] usb: host: Introduce flag to enable use of 64-bit dma_mask for ehci-platform (Don Zickus) [1303209]
-- [netdrv] usbnet: re-use native hex2bin() (Don Zickus) [1303209]
-- [netdrv] r8152: remove sram_read (Don Zickus) [1303209]
-- [netdrv] r8152: remove generic_ocp_read before writing (Don Zickus) [1303209]
-- [netdrv] r8152: replace tasklet with NAPI (Don Zickus) [1303209]
-- [netdrv] net: rename vlan_tx_* helpers since "tx" is misleading there (Don Zickus) [1303209]
-- [netdrv] usb/kaweth: use GFP_ATOMIC under spin_lock in usb_start_wait_urb() (Don Zickus) [1303209]
-- [netdrv] r8152: check the status before submitting rx (Don Zickus) [1303209]
-- [netdrv] r8152: call rtl_start_rx after netif_carrier_on (Don Zickus) [1303209]
-- [include] usb: phy: generic: add vbus support (Don Zickus) [1303209]
-- [include] usb: phy: change some comments (Don Zickus) [1303209]
-- [include] usb: ehci-platform: Support ehci reset after resume quirk (Don Zickus) [1303209]
-- [netdrv] kconfig: use bool instead of boolean for type definition attributes (Don Zickus) [1303209]
-- [netdrv] r8152: support ndo_features_check (Don Zickus) [1303209]
-- [usb] cp210x: add IDs for CEL USB sticks and MeshWorks devices (Don Zickus) [1303209]
-- [netdrv] qmi_wwan: Set random MAC on devices with buggy fw (Don Zickus) [1303209]
-- [usb] cp210x: fix ID for production CEL MeshConnect USB Stick (Don Zickus) [1303209]
-- [usb] pm / kconfig: Replace PM_RUNTIME with PM in dependencies (Don Zickus) [1303209]
-- [usb] printk: add and use LOGLEVEL_<level> defines for KERN_<LEVEL> equivalents (Don Zickus) [1303209]
-- [netdrv] r8152: redefine REALTEK_USB_DEVICE (Don Zickus) [1303209]
-- [include] usb / pm: Drop CONFIG_PM_RUNTIME from the USB core (Don Zickus) [1303209]
-- [usb] usb: host: Remove ehci-octeon and ohci-octeon drivers (Don Zickus) [1303209]
-- [usb] uas: Add no-uas quirk for Hitachi usb-3 enclosures 4971:1012 (Don Zickus) [1303209]
-- [netdrv] net: usb: Deletion of unnecessary checks before the function call "kfree" (Don Zickus) [1303209]
-- [netdrv] r8152: adjust rtl_start_rx (Don Zickus) [1303209]
-- [netdrv] r8152: adjust r8152_submit_rx (Don Zickus) [1303209]
-- [include] usb: phy: introduce usb_phy_set_event interface (Don Zickus) [1303209]
-- [usb] treewide: fix typo in printk and Kconfig (Don Zickus) [1303209]
-- [netdrv] usbnet: rtl8150: remove unused variable (Don Zickus) [1303209]
-- [usb] hid: yet another buggy ELAN touchscreen (Don Zickus) [1303209]
-- [netdrv] qmi_wwan: Add support for HP lt4112 LTE/HSPA+ Gobi 4G Modem (Don Zickus) [1303209]
-- [netdrv] r8152: check RTL8152_UNPLUG and netif_running before autoresume (Don Zickus) [1303209]
-- [netdrv] r8152: clear the flag of SCHEDULE_TASKLET in tasklet (Don Zickus) [1303209]
-- [netdrv] r8152: remove the duplicate init for the list of rx_done (Don Zickus) [1303209]
-- [netdrv] usbnet: smsc95xx: dereferencing NULL pointer (Don Zickus) [1303209]
-- [netdrv] asix: Do full reset during ax88772_bind (Don Zickus) [1303209]
-- [netdrv] cdc-ether: implement MULTICAST flag on the device (Don Zickus) [1303209]
-- [netdrv] r8152: remove the definitions of the PID (Don Zickus) [1303209]
-- [netdrv] r8152: modify rtl_ops_init (Don Zickus) [1303209]
-- [netdrv] r8152: move r8152b_get_version (Don Zickus) [1303209]
-- [netdrv] r8152: disable the tasklet by default (Don Zickus) [1303209]
-- [usb] core: notify disconnection when core detects disconnect (Don Zickus) [1303209]
-- [usb] core: need to call usb_phy_notify_connect after device setup (Don Zickus) [1303209]
-- [usb] Remove references to non-existent PLAT_S5P symbol (Don Zickus) [1303209]
-- [usb] allow to supply the PHY in the drivers when using HCD (Don Zickus) [1303209]
-- [include] usb: add support to the generic PHY framework in OTG (Don Zickus) [1303209]
-- [include] usb: rename phy to usb_phy in OTG (Don Zickus) [1303209]
-- [include] usb: move the OTG state from the USB PHY to the OTG structure (Don Zickus) [1303209]
-- [netdrv] r8152: stop submitting intr for -EPROTO (Don Zickus) [1303209]
-- [netdrv] r8152: set RTL8152_UNPLUG when finding -ENODEV (Don Zickus) [1303209]
-- [netdrv] r8152: check WORK_ENABLE in suspend function (Don Zickus) [1303209]
-- [netdrv] r8152: reset tp->speed before autoresuming in open function (Don Zickus) [1303209]
-- [netdrv] r8152: clear SELECTIVE_SUSPEND when autoresuming (Don Zickus) [1303209]
-- [netdrv] r8152: support nway_reset of ethtool (Don Zickus) [1303209]
-- [netdrv] r8152: rename tx_underun (Don Zickus) [1303209]
-- [netdrv] cdc-ether: handle promiscuous mode with a set_rx_mode callback (Don Zickus) [1303209]
-- [netdrv] cdc-ether: extract usbnet_cdc_update_filter function (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: fix bonding failure (Don Zickus) [1303209]
-- [netdrv] r8152: return -EBUSY for runtime suspend (Don Zickus) [1303209]
-- [netdrv] r8152: add mutex for hw settings (Don Zickus) [1303209]
-- [netdrv] r8152: adjust usb_autopm_xxx (Don Zickus) [1303209]
-- [netdrv] r8152: autoresume before setting feature (Don Zickus) [1303209]
-- [netdrv] r8152: nway reset after setting eee (Don Zickus) [1303209]
-- [netdrv] r8152: autoresume before setting MAC address (Don Zickus) [1303209]
-- [netdrv] asix: Don't reset PHY on if_up for ASIX 88772 (Don Zickus) [1303209]
-- [usb] host: st: fix typo 'CONFIG_USB_EHCI_HCD_ST' (Don Zickus) [1303209]
-- [netdrv] r8152: disable power cut for RTL8153 (Don Zickus) [1303209]
-- [netdrv] r8152: remove clearing bp (Don Zickus) [1303209]
-- [netdrv] r8152: fix setting RTL8152_UNPLUG (Don Zickus) [1303209]
-- [include] usb: hcd: add generic PHY support (Don Zickus) [1303209]
-- [include] usb: rename phy to usb_phy in HCD (Don Zickus) [1303209]
-- [usb] host: st: fix ehci/ohci driver selection (Don Zickus) [1303209]
-- [usb] core: log higher level message on malformed LANGID descriptor (Don Zickus) [1303209]
-- [netdrv] r8152: support ethtool eee (Don Zickus) [1303209]
-- [netdrv] r8152: add functions to set EEE (Don Zickus) [1303209]
-- [netdrv] r8152: change the EEE definition (Don Zickus) [1303209]
-- [netdrv] r8152: fix the carrier off when autoresuming (Don Zickus) [1303209]
-- [usb] treewide: Fix typos in Kconfig (Don Zickus) [1303209]
-- [usb] host: ohci-st: Add OHCI driver support for ST STB devices (Don Zickus) [1303209]
-- [include] usb: common: add API to get if the platform supports TPL (Don Zickus) [1303209]
-- [netdrv] r8152: disable ALDPS (Don Zickus) [1303209]
-- [usb] serial: remove zte_ev driver (Don Zickus) [1303209]
-- [netdrv] r8152: support VLAN (Don Zickus) [1303209]
-- [netdrv] r8152: use usleep_range (Don Zickus) [1303209]
-- [netdrv] r8152: use eth_hw_addr_random (Don Zickus) [1303209]
-- [netdrv] r8152: change the location of rtl8152_set_mac_address (Don Zickus) [1303209]
-- [netdrv] r8152: rename rx_buf_sz (Don Zickus) [1303209]
-- [netdrv] r8152: reduce the number of Tx (Don Zickus) [1303209]
-- [usb] zte_ev: fix removed PIDs (Don Zickus) [1303209]
-- [netdrv] r8152: replace strncpy with strlcpy (Don Zickus) [1303209]
-- [netdrv] r8152: check code with checkpatch.pl (Don Zickus) [1303209]
-- [usb] zte_ev: remove duplicate Qualcom PID (Don Zickus) [1303209]
-- [usb] zte_ev: remove duplicate Gobi PID (Don Zickus) [1303209]
-- [netdrv] net: fix USB network driver config option (Don Zickus) [1303209]
-- [netdrv] net: reduce USB network driver config options (Don Zickus) [1303209]
-- [netdrv] net: remove spurious zd1201 rule (Don Zickus) [1303209]
-- [netdrv] net/usb/hso: Add support for Option GTM671WFS (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Add ethtool ops for EEE support (Don Zickus) [1303209]
-- [netdrv] cdc-ether: clean packet filter upon probe (Don Zickus) [1303209]
-- [netdrv] r8152: fix the checking of the usb speed (Don Zickus) [1303209]
-- [usb] staging: keucr: remove driver (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add two Sierra Wireless/Netgear devices (Don Zickus) [1303209]
-- [usb] scsi: Remove CONFIG_SCSI_MULTI_LUN (Don Zickus) [1303209]
-- [netdrv] hso: fix deadlock when receiving bursts of data (Don Zickus) [1303209]
-- [netdrv] hso: remove unused workqueue (Don Zickus) [1303209]
-- [netdrv] r8152: fix r8152_csum_workaround function (Don Zickus) [1303209]
-- [netdrv] usbnet: smsc95xx: add reset_resume function with reset operation (Don Zickus) [1303209]
-- [netdrv] r8152: support jumbo frame for RTL8153 (Don Zickus) [1303209]
-- [usb] host: xhci-plat: add support for the R-Car H2 and M2 xHCI controllers (Don Zickus) [1303209]
-- [netdrv] r8152: wake up the device before dumping the hw counter (Don Zickus) [1303209]
-- [netdrv] r8152: increase the tx timeout (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: Add ID for Telewell TW-LTE 4G v2 (Don Zickus) [1303209]
-- [usb] kconfig: make EHCI_MSM selectable for QCOM SOCs (Don Zickus) [1303209]
-- [netdrv] usb: gadget: net2280: Add support for PLX USB338X (Don Zickus) [1303209]
-- [netdrv] revert "tools: ffs-test: convert to new descriptor format fixing compilation error" (Don Zickus) [1303209]
-- [netdrv] tools: ffs-test: convert to new descriptor format fixing compilation error (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Olivetti Olicard modems (Don Zickus) [1303209]
-- [netdrv] ipheth: Add support for iPad 2 and iPad 3 (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: interface #11 in Sierra Wireless MC73xx is not QMI (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add additional Sierra Wireless QMI devices (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Netgear AirCard 341U (Don Zickus) [1303209]
-- [netdrv] r8152: Use kmemdup instead of kmalloc + memcpy (Don Zickus) [1303209]
-- [include] revert "usb: gadget: net2280: Add support for PLX USB338X" (Don Zickus) [1303209]
-- [include] usb: cdc-wdm: properly include types.h (Don Zickus) [1303209]
-- [include] usb: cdc-wdm: export cdc-wdm uapi header (Don Zickus) [1303209]
-- [include] usb: gadget: net2280: Add support for PLX USB338X (Don Zickus) [1303209]
-- [usb] ohci: sort out dependencies for lpc32xx and omap (Don Zickus) [1303209]
-- [usb] ohci-da8xx can only be built-in (Don Zickus) [1303209]
-- [usb] host: xhci-plat: add support for the Armada 375/38x XHCI controllers (Don Zickus) [1303209]
-- [usb] common: rename phy-fsm-usb.c to usb-otg-fsm.c (Don Zickus) [1303209]
-- [usb] Add support for using a MAX3421E chip as a host driver (Don Zickus) [1303209]
-- [usb] phy: msm: reset controller is mandatory now (Don Zickus) [1303209]
-- [netdrv] net: get rid of SET_ETHTOOL_OPS (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add a number of Dell devices (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add a number of CMOTech devices (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Alcatel L800MA (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Olivetti Olicard 500 (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Sierra Wireless MC7305/MC7355 (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Sierra Wireless MC73xx (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Sierra Wireless EM7355 (Don Zickus) [1303209]
-- [usb] ehci: Export the ehci_hub_control function (Don Zickus) [1303209]
-- [usb] ohci: Export the OHCI hub control and status_data functions (Don Zickus) [1303209]
-- [include] usb: phy: generic: switch over to IS_ENABLED() (Don Zickus) [1303209]
-- [include] usb: phy: generic: allow multiples calls to usb_phy_generic_register() (Don Zickus) [1303209]
-- [include] usb: phy: rename <linux/usb/usb_phy_gen_xceiv.h> to <linux/usb/usb_phy_generic.h> (Don Zickus) [1303209]
-- [include] usb: phy: rename usb_nop_xceiv to usb_phy_generic (Don Zickus) [1303209]
-- [usb] arch: Mass conversion of smp_mb__*() (Don Zickus) [1303209]
-- [netdrv] r8152: check RTL8152_UNPLUG (Don Zickus) [1303209]
-- [netdrv] qmi_wwan/cdc_ether: move Novatel E371 (1410:9011) to qmi_wwan (Don Zickus) [1303209]
-- [netdrv] lg-vl600: Convert uses of __constant_<foo> to <foo> (Don Zickus) [1303209]
-- [netdrv] r8152: support dumping the hw counters (Don Zickus) [1303209]
-- [netdrv] r8152: add skb_cow_head (Don Zickus) [1303209]
-- [include] usbcore: rename struct dev_state to struct usb_dev_state (Don Zickus) [1303209]
-- [include] staging: usbip: claim ports used by shared devices (Don Zickus) [1303209]
-- [netdrv] r8152: support IPv6 (Don Zickus) [1303209]
-- [netdrv] r8152: support TSO (Don Zickus) [1303209]
-- [netdrv] r8152: support rx checksum (Don Zickus) [1303209]
-- [netdrv] r8152: calculate the dropped packets for rx (Don Zickus) [1303209]
-- [netdrv] r8152: up the priority of the transmission (Don Zickus) [1303209]
-- [netdrv] r8152: check tx agg list before spin lock (Don Zickus) [1303209]
-- [netdrv] r8152: replace spin_lock_irqsave and spin_unlock_irqrestore (Don Zickus) [1303209]
-- [netdrv] revert "usbnet: ax88179_178a: enable tso if usb host supports sg dma" (Don Zickus) [1303209]
-- [usb] don't use PREPARE_DELAYED_WORK (Don Zickus) [1303209]
-- [netdrv] r8152: remove rtl8152_get_stats (Don Zickus) [1303209]
-- [netdrv] r8152: replace tp->netdev with netdev (Don Zickus) [1303209]
-- [netdrv] r8152: deal with the empty line and space (Don Zickus) [1303209]
-- [netdrv] r8152: disable the ECM mode (Don Zickus) [1303209]
-- [include] usb: phy: Add set_wakeup API (Don Zickus) [1303209]
-- [netdrv] usb ax88179/178a: Support D-Link DUB-1312 (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Add VID:DID for Lenovo OneLinkDock Gigabit LAN (Don Zickus) [1303209]
-- [usb] kconfig: Remove useless "default N" lines (Don Zickus) [1303209]
-- [netdrv] treewide: Fix typo in Documentation/DocBook (Don Zickus) [1303209]
-- [netdrv] r8152: support get_msglevel and set_msglevel (Don Zickus) [1303209]
-- [netdrv] r8152: set disable_hub_initiated_lpm (Don Zickus) [1303209]
-- [netdrv] r8152: replace netif_rx with netif_receive_skb (Don Zickus) [1303209]
-- [netdrv] r8152: disable teredo for RTL8152 (Don Zickus) [1303209]
-- [netdrv] r8152: support runtime suspend (Don Zickus) [1303209]
-- [netdrv] r8152: support WOL (Don Zickus) [1303209]
-- [netdrv] r8152: move some functions from probe to open (Don Zickus) [1303209]
-- [netdrv] r8152: combine PHY reset with set_speed (Don Zickus) [1303209]
-- [netdrv] r8152: clear BMCR_PDOWN (Don Zickus) [1303209]
-- [netdrv] r8152: reduce the frequency of spin_lock (Don Zickus) [1303209]
-- [netdrv] r8152: load the default MAC address (Don Zickus) [1303209]
-- [netdrv] r8152: replace some types from int to bool (Don Zickus) [1303209]
-- [netdrv] r8152: add three functions (Don Zickus) [1303209]
-- [netdrv] r8152: move some functions (Don Zickus) [1303209]
-- [usb] host: remove USB_ARCH_HAS_?HCI (Don Zickus) [1303209]
-- [netdrv] net: asix: add missing flag to struct driver_info (Don Zickus) [1303209]
-- [netdrv] usb2net: Fix Default to 'y' for SR9800 Device Driver, setting to 'n' (Don Zickus) [1303209]
-- [netdrv] usb2net: sr9800: use zu for size_t (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add support for Cinterion PXS8 and PHS8 (Don Zickus) [1303209]
-- [netdrv] ehci-platform: Change compatible string from usb-ehci to generic-ehci (Don Zickus) [1303209]
-- [netdrv] usb2net: sr9800: One chip USB2.0 USB2NET SR9800 Device Driver Support (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add ZTE MF667 (Don Zickus) [1303209]
-- [usb] move hub init and LED blink work to power efficient workqueue (Don Zickus) [1303209]
-- [gpu] drm: Remove now duplicated usage of system_power_efficient_wq (Don Zickus) [1303209]
-- [kernel] workqueue: Add system wide power_efficient workqueues (Don Zickus) [1303209]
-- [kernel] workqueues: Introduce new flag WQ_POWER_EFFICIENT for power oriented workqueues (Don Zickus) [1303209]
-- [include] ehci-platform: Add support for clks and phy passed through devicetree (Don Zickus) [1303209]
-- [include] staging: usbip: convert usbip-host driver to usb_device_driver (Don Zickus) [1303209]
-- [netdrv] hso: remove some dead code (Don Zickus) [1303209]
-- [netdrv] r8152: fix the submission of the interrupt transfer (Don Zickus) [1303209]
-- [usb] ftdi_sio: add Tagsys RFID Reader IDs (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Netgear Aircard 340U (Don Zickus) [1303209]
-- [usb] storage: enable multi-LUN scanning when needed (Don Zickus) [1303209]
-- [usb] simple: add Dynastream ANT USB-m Stick device support (Don Zickus) [1303209]
-- [usb] storage: add unusual-devs entry for BlackBerry 9000 (Don Zickus) [1303209]
-- [usb] storage: restrict bcdDevice range for Super Top in Cypress ATACB (Don Zickus) [1303209]
-- [usb] ftdi_sio: add Mindstorms EV3 console adapter (Don Zickus) [1303209]
-- [netdrv] drivers/net: delete non-required instances of include <linux/init.h> (Don Zickus) [1303209]
-- [netdrv] r8152: ecm and vendor modes coexist (Don Zickus) [1303209]
-- [netdrv] r8152: fix the warnings and a error from checkpatch.pl (Don Zickus) [1303209]
-- [netdrv] r8152: change the descriptor (Don Zickus) [1303209]
-- [netdrv] dm9601: add USB IDs for new dm96xx variants (Don Zickus) [1303209]
-- [netdrv] net: usbnet: fix SG initialisation (Don Zickus) [1303209]
-- [usb] ehci: add freescale imx28 special write register method (Don Zickus) [1303209]
-- [usb] cdc-wdm: resp_count can be 0 even if WDM_READ is set (Don Zickus) [1303209]
-- [usb] image: correct spelling mistake in comment (Don Zickus) [1303209]
-- [usb] treewide: fix comments and printk msgs (Don Zickus) [1303209]
-- [netdrv] r8152: correct some messages (Don Zickus) [1303209]
-- [netdrv] hso: fix handling of modem port SERIAL_STATE notifications (Don Zickus) [1303209]
-- [netdrv] r8152: replace the return value of rtl_ops_init (Don Zickus) [1303209]
-- [netdrv] r8152: move the actions of saving the information of the device (Don Zickus) [1303209]
-- [netdrv] r8152: replace some tabs with spaces (Don Zickus) [1303209]
-- [netdrv] r8152: fix the wrong return value (Don Zickus) [1303209]
-- [usb] serial: add Moxa UPORT 12XX/14XX/16XX driver (Don Zickus) [1303209]
-- [usb] f81232: switch to generic tiocmiwait (Don Zickus) [1303209]
-- [usb] f81232: remove bogus call to wake up MSR queue (Don Zickus) [1303209]
-- [netdrv] r8152: support RTL8153 (Don Zickus) [1303209]
-- [netdrv] r8152: split rtl8152_enable (Don Zickus) [1303209]
-- [netdrv] r8152: add rtl_ops (Don Zickus) [1303209]
-- [netdrv] r8152: change some definitions (Don Zickus) [1303209]
-- [netdrv] r8152: modify the method of accessing PHY (Don Zickus) [1303209]
-- [netdrv] r8152: move rtl8152_unload and ocp_reg_write (Don Zickus) [1303209]
-- [netdrv] usbnet: mcs7830: rework link state detection (Don Zickus) [1303209]
-- [usb] musb: Rework USB and USB_GADGET dependency (Don Zickus) [1303209]
-- [netdrv] dm9601: work around tx fifo sync issue on dm962x (Don Zickus) [1303209]
-- [netdrv] dm9601: make it clear that dm9620/dm9621a are also supported (Don Zickus) [1303209]
-- [netdrv] dm9601: fix reception of full size ethernet frames on dm9620/dm9621a (Don Zickus) [1303209]
-- [netdrv] dm9601: add support for dm9621a based dongle (Don Zickus) [1303209]
-- [usb] storage: fix compile warning (Don Zickus) [1303209]
-- [usb] usb: hcd: move controller wakeup setting initialization to individual driver (Don Zickus) [1303209]
-- [usb] atm: usbatm: fixed a pointer variable format issue (Don Zickus) [1303209]
-- [usb] hcd: Initialize USB phy if needed (Don Zickus) [1303209]
-- [include] usb: hcd: Remove USB phy if needed (Don Zickus) [1303209]
-- [usb] storage: use sg_miter_* APIs to access scsi buffer (Don Zickus) [1303209]
-- [lib] scatterlist: export sg_miter_skip() (Don Zickus) [1303209]
-- [documentation] usb: ohci: Properly handle OHCI controller suspend (Don Zickus) [1303209]
-- [usb] acpi: Clean up inclusions of ACPI header files (Don Zickus) [1303209]
-- [netdrv] usb: Fix FSF address in file headers (Don Zickus) [1303209]
-- [include] arm: at91: move at91_pmc.h to include/linux/clk/at91_pmc.h (Don Zickus) [1303209]
-- [include] usb: phy: move OTG FSM header (Don Zickus) [1303209]
-- [netdrv] r8152: fix incorrect type in assignment (Don Zickus) [1303209]
-- [netdrv] r8152: support stopping/waking tx queue (Don Zickus) [1303209]
-- [netdrv] r8152: modify the tx flow (Don Zickus) [1303209]
-- [netdrv] r8152: fix tx/rx memory overflow (Don Zickus) [1303209]
-- [usb] tree-wide: use reinit_completion instead of INIT_COMPLETION (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: no need to check for resume if suspend exists (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: manage_power should always set needs_remote_wakeup (Don Zickus) [1303209]
-- [usb] tm: Fix dynamic_debug / ratelimited atm_dbg and atm_rldbg macros (Don Zickus) [1303209]
-- [netdrv] usb: ohci: remove ep93xx bus glue platform driver (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Remove AX_MEDIUM_ALWAYS_ONE bit in AX_MEDIUM_STATUS_MODE register to avoid TX throttling (Don Zickus) [1303209]
-- [usb] consolidate the reassignments of ->f_op in ->open() instances (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Add VID:DID for Samsung USB Ethernet Adapter (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Correct the RX error definition in RX header (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: Olivetti Olicard 200 support (Don Zickus) [1303209]
-- [netdrv] usbnet: fix error return code in usbnet_probe() (Don Zickus) [1303209]
-- [include] usb: usb_phy_gen: refine conditional declaration of usb_nop_xceiv_register (Don Zickus) [1303209]
-- [usb] revert "usb: ohci: Properly handle OHCI controller suspend" (Don Zickus) [1303209]
-- [usb] treewide: Fix typo in Kconfig (Don Zickus) [1303209]
-- [usb] host: Rename ehci-s5p to ehci-exynos (Don Zickus) [1303209]
-- [usb] Remove unnecessary semicolons (Don Zickus) [1303209]
-- [usb] ohci: Properly handle OHCI controller suspend (Don Zickus) [1303209]
-- [include] usb: phy: generic: Add gpio_reset to platform data (Don Zickus) [1303209]
-- [netdrv] Miscellaneous conversions to ETH_ALEN (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: fix Cinterion PLXX product ID (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: fix checkpatch warnings (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Telit LE920 newer firmware support (Don Zickus) [1303209]
-- [usb] ohci: make ohci-pxa27x a separate driver (Don Zickus) [1303209]
-- [netdrv] usb: ohci: make ohci-ep93xx a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-nxp a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-s3c2410 a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-at91 a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-spear a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-omap3 a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-omap a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-exynos a separate driver (Don Zickus) [1303209]
-- [usb] ehci: make ehci-w90X900 a separate driver (Don Zickus) [1303209]
-- [netdrv] net: cdc-phonet: Staticize usbpn_probe (Don Zickus) [1303209]
-- [netdrv] net: usb: cdc_ether: use usb.h macros whenever possible (Don Zickus) [1303209]
-- [netdrv] net: usb: cdc_ether: fix checkpatch errors and warnings (Don Zickus) [1303209]
-- [usb] Remove GENERIC_HARDIRQ config option (Don Zickus) [1303209]
-- [netdrv] net: usbnet: update addr_assign_type if appropriate (Don Zickus) [1303209]
-- [netdrv] drivers/net: Convert uses of compare_ether_addr to ether_addr_equal (Don Zickus) [1303209]
-- [netdrv] usb2net: sr9700: One chip USB 1.1 USB2NET SR9700Device Driver Support (Don Zickus) [1303209]
-- [usb] serial: convert bus code to use drv_groups (Don Zickus) [1303209]
-- [netdrv] hso: Fix stack corruption on some architectures (Don Zickus) [1303209]
-- [netdrv] hso: Earlier catch of error condition (Don Zickus) [1303209]
-- [netdrv] r8152: add comments (Don Zickus) [1303209]
-- [netdrv] r8152: adjust tx_bottom function (Don Zickus) [1303209]
-- [netdrv] r8152: move some declearation of variables (Don Zickus) [1303209]
-- [netdrv] r8152: adjust some duplicated code (Don Zickus) [1303209]
-- [netdrv] r8152: replace lockflags with flags (Don Zickus) [1303209]
-- [netdrv] r8152: replace void * with struct r8152 * (Don Zickus) [1303209]
-- [netdrv] r8152: remove clearing the memory to zero for netdev priv (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: enable interrupt transfer (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: enable tx checksum (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: support aggregation (Don Zickus) [1303209]
-- [netdrv] net: asix: Move declaration of ax88172a_info to shared header (Don Zickus) [1303209]
-- [netdrv] net: asix: Staticise non-exported symbols (Don Zickus) [1303209]
-- [usb] misc: Fix swapped properties in usb3503 DT parsing (Don Zickus) [1303209]
-- [netdrv] usbnet: ax88179_178a: enable tso if usb host supports sg dma (Don Zickus) [1303209]
-- [usb] host: add has_tdi_phy_lpm capability bit (Don Zickus) [1303209]
-- [include] usb: phy: rename nop_usb_xceiv => usb_phy_gen_xceiv (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: avoid copy of tx tcp packets (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: adjust relative ocp function (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: make sure the USB buffer is DMA-able (Don Zickus) [1303209]
-- [netdrv] net/usb/r815x: change the return value for bind functions (Don Zickus) [1303209]
-- [netdrv] net/usb/r815x: avoid to call mdio functions for runtime-suspended device (Don Zickus) [1303209]
-- [netdrv] net/usb/r815x: replace USB buffer from stack to DMA-able (Don Zickus) [1303209]
-- [include] usb: of: fix build breakage caused by recent patches (Don Zickus) [1303209]
-- [include] usb: host: Faraday fotg210-hcd driver (Don Zickus) [1303209]
-- [usb] ehci-omap: select NOP_USB_XCEIV PHY driver (Don Zickus) [1303209]
-- [usb] phy: make PHY driver selection possible by controller drivers (Don Zickus) [1303209]
-- [include] usb: common: introduce of_usb_get_maximum_speed() (Don Zickus) [1303209]
-- [include] usb: phy: protect against NULL phy pointers (Don Zickus) [1303209]
-- [netdrv] usbnet: increase max rx/tx qlen for improving USB3 thoughtput (Don Zickus) [1303209]
-- [usb] revert "usb: host: Faraday fotg210-hcd driver" (Don Zickus) [1303209]
-- [usb] host: Faraday fotg210-hcd driver (Don Zickus) [1303209]
-- [netdrv] usb/net/r815x: fix cast to restricted __le32 (Don Zickus) [1303209]
-- [netdrv] usb/net/r8152: fix integer overflow in expression (Don Zickus) [1303209]
-- [netdrv] net/usb: add relative mii functions for r815x (Don Zickus) [1303209]
-- [netdrv] net: cdc_ether: allow combined control and data interface (Don Zickus) [1303209]
-- [netdrv] net: ipheth: Add USB ID for iPad mini (Don Zickus) [1303209]
-- [netdrv] qmi_wwan: add ONDA MT689DC device ID (fwd) (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add TP-LINK MA260 (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Option GTM681W (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: fixup Sierra Wireless MC8305 entry (Don Zickus) [1303209]
-- [netdrv] usbnet: ax88179_178a: add .reset_resume hook (Don Zickus) [1303209]
-- [netdrv] usbnet: ax88179_178a: Correct a typo in description (Don Zickus) [1303209]
-- [include] usb: fix build error without CONFIG_USB_PHY (Don Zickus) [1303209]
-- [usb] console/font: Refactor font support code selection logic (Don Zickus) [1303209]
-- [netdrv] net: Move MII out from under NET_CORE and hide it (Don Zickus) [1303209]
-- [usb] Check for ARCH_EXYNOS separately (Don Zickus) [1303209]
-- [usb] ehci: make ehci-tegra a separate driver (Don Zickus) [1303209]
-- [include] usb: add devicetree helpers for determining dr_mode and phy_type (Don Zickus) [1303209]
-- [usb] mips: octeon: Rename Kconfig CAVIUM_OCTEON_REFERENCE_BOARD to CAVIUM_OCTEON_SOC (Don Zickus) [1303209]
-- [netdrv] net/usb/kalmia: use *phC to dump small buffers (Don Zickus) [1303209]
-- [usb] tty: vt: convert remain take_over_console's users to do_take_over_console (Don Zickus) [1303209]
-- [netdrv] net/usb: r8152: Use module_usb_driver() (Don Zickus) [1303209]
-- [netdrv] net/usb: r8152: Remove redundant version.h header inclusion (Don Zickus) [1303209]
-- [usb] host: Faraday USB2.0 FUSBH200-HCD driver (Don Zickus) [1303209]
-
-* Fri Mar 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-364.el7]
-- [kernel] sysrq: Fix warning in sysrq generated crash (Rafael Aquini) [1090498]
-- [kernel] sysrq, rcu: suppress RCU stall warnings while sysrq runs (Rafael Aquini) [1090498]
-- [kernel] rcu: Provide API to suppress stall warnings while sysrc runs (Rafael Aquini) [1090498]
-- [kernel] sysrq: rcu-ify __handle_sysrq (Rafael Aquini) [1090498]
-- [virtio] virtio_balloon: include linux/virtio_types.h (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: fix race between migration and ballooning (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: fix race by fill and leak (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: fix deflation when compaction is disabled (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: do not change memory amount visible via /proc/meminfo (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: change stub of release_pages_by_pfn (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: free some memory from balloon on OOM (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: return the amount of freed memory from leak_balloon() (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: add vmstat counters and kpageflags bit (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: remove balloon mapping and flag AS_BALLOON_MAP (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: redesign ballooned pages management (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: don't crash if virtqueue is broken (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: don't softlockup on huge balloon changes (Luiz Capitulino) [1263649]
-- [virtio] Mark function virtballoon_migratepage() as static in virtio_balloon.c (Luiz Capitulino) [1263649]
-- [mm] correctly update zone->managed_pages (Luiz Capitulino) [1263649]
-- [mm] mmu_notifier: fix memory corruption (Jerome Glisse) [1307042]
-- [mm] write to force_empty will cause soft lockup (Gustavo Duarte) [1297381]
-- [mm] dmapool: allow NULL `pool' pointer in dma_pool_destroy() (Mike Snitzer) [1314893]
-- [mm] mempool: allow NULL `pool' pointer in mempool_destroy() (Mike Snitzer) [1314893]
-- [mm] slab_common: allow NULL cache pointer in kmem_cache_destroy() (Mike Snitzer) [1314893]
-- [mm] page_alloc.c: rework code layout in memmap_init_zone() (Yasuaki Ishimatsu) [1270209]
-- [mm] page_alloc.c: introduce kernelcore=mirror option (Yasuaki Ishimatsu) [1270209]
-- [mm] page_alloc.c: calculate zone_start_pfn at zone_spanned_pages_in_node() (Yasuaki Ishimatsu) [1270209]
-- [x86] mirror: x86 enabling - find mirrored memory ranges (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: allocate boot time data structures from mirrored memory (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: add extra "flags" to memblock to allow selection of memory based on attribute (Yasuaki Ishimatsu) [1270209]
-- [mm] hotplug: init the zone's size when calculating node totalpages (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: refactor functions to set/clear MEMBLOCK_HOTPLUG (Yasuaki Ishimatsu) [1270209]
-- [lib] Add a generic cmdline parse function parse_option_str (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: fix wrong type in memblock_find_in_range_node() (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: use for_each_memblock() (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: Do some refactoring, enhance API (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: use WARN_ONCE when MAX_NUMNODES passed as input parameter (Yasuaki Ishimatsu) [1270209]
-- [x86] mm: memblock: switch to use NUMA_NO_NODE (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: switch to use NUMA_NO_NODE instead of MAX_NUMNODES (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: reorder parameters of memblock_find_in_range_node (Yasuaki Ishimatsu) [1270209]
-- [x86] Use memblock_set_current_limit() to set limit for memblock (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: fix wrong comment in __next_free_mem_range() (Yasuaki Ishimatsu) [1270209]
-- [mm] remove duplicated call of get_pfn_range_for_nid (Yasuaki Ishimatsu) [1270209]
-- [mm] shm: wait for pins to be released when sealing (Vlad Yasevich) [1282530]
-- [kernel] sched: add cond_resched_rcu() helper (Vlad Yasevich) [1282530]
-- [mm] shm: Add memory sealing support memfd_create (Vlad Yasevich) [1282530]
-- [mm] shm: add sealing API (Vlad Yasevich) [1282530]
-- [mm] allow drivers to prevent new writable mappings (Vlad Yasevich) [1282530]
-- [mm] mmap: kill correct_wcount/inode, use allow_write_access() (Vlad Yasevich) [1282530]
-
-* Thu Mar 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-363.el7]
-- [mm] add VM_WARN_ON() and VM_WARN_ON_ONCE() (Dave Anderson) [1274624]
-- [mm] hugetlbfs: optimize when NUMA=n (Dave Anderson) [1274624]
-- [mm] hugetlb: use memory policy when available (Dave Anderson) [1274624]
-- [mm] optimize put_mems_allowed() usage (Dave Anderson) [1274624]
-- [mm] new_vma_page() cannot see NULL vma for hugetlb pages (Tomoaki Nishimura) [1287322]
-- [mm] mempolicy: fix !vma in new_vma_page() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: call huge_pte_alloc() only if ptep is null (Tomoaki Nishimura) [1287322]
-- [mm] migrate: hugetlb: putback destination hugepage to active list (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: cleanup using paeg_huge_active() (Tomoaki Nishimura) [1287322]
-- [fs] hugetlb: fix lockdep splat caused by pmd sharing (Tomoaki Nishimura) [1287322]
-- [tools] vm: fix page-flags build (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: fix hugepage memory leak caused by wrong reserve count (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: use pmd_page() in follow_huge_pmd() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: add migration entry check in __unmap_hugepage_range (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: add migration/hwpoisoned entry check in hugetlb_change_protection (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: fix getting refcount 0 page in hugetlb_fault() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: take page table lock in follow_huge_pmd() (Tomoaki Nishimura) [1287322]
-- [x86] mm: hugetlb: pmd_huge() returns true for non-present hugepage (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: reduce arch dependent code around follow_huge_* (Tomoaki Nishimura) [1287322]
-- [mm] unmapped page migration avoid unmap+remap overhead (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: fix copy_hugetlb_page_range() (Tomoaki Nishimura) [1287322]
-- [mm] rmap: calculate page offset when needed (Tomoaki Nishimura) [1287322]
-- [mm] rmap: fix pgoff calculation to handle hugepage correctly (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: fix copy_hugetlb_page_range() to handle migration/hwpoisoned entry (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: rename hugepage_migration_support() to ..._supported() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: restrict hugepage_migration_support() to x86_64 (Tomoaki Nishimura) [1287322]
-- [mm] migrate: correct failure handling if !hugepage_migration_support() (Tomoaki Nishimura) [1287322]
-- [mm] mbind: add BUG_ON(!vma) in new_vma_page() (Tomoaki Nishimura) [1287322]
-- [mm] mempolicy: rename check_*range to queue_pages_*range (Tomoaki Nishimura) [1287322]
-- [mm] prepare to remove /proc/sys/vm/hugepages_treat_as_movable (Tomoaki Nishimura) [1287322]
-- [mm] migrate: check movability of hugepage in unmap_and_move_huge_page() (Tomoaki Nishimura) [1287322]
-- [mm] memory-hotplug: enable memory hotplug to handle hugepage (Tomoaki Nishimura) [1287322]
-- [mm] migrate: remove VM_HUGETLB from vma flag check in vma_migratable() (Tomoaki Nishimura) [1287322]
-- [mm] mbind: add hugepage migration code to mbind() (Tomoaki Nishimura) [1287322]
-- [mm] migrate: add hugepage migration code to move_pages() (Tomoaki Nishimura) [1287322]
-- [mm] migrate: add hugepage migration code to migrate_pages() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: remove useless check about mapping type (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: remove redundant list_empty check in gather_surplus_pages() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: move up the code which check availability of free huge page (Tomoaki Nishimura) [1287322]
-- [x86] mm: Remove general hugetlb code from x86 (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: Copy general hugetlb code from x86 to mm (Tomoaki Nishimura) [1287322]
-- [x86] mm: Remove x86 version of huge_pmd_share (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: Copy huge_pmd_share from x86 to mm (Tomoaki Nishimura) [1287322]
-- [mm] memcontrol: switch soft limit default back to infinity (Jerome Marchand) [1217771]
-- [kernel] res_counter: remove the unused API (Jerome Marchand) [1217771]
-- [mm] hugetlb_cgroup: convert to lockless page counters (Jerome Marchand) [1217771]
-- [mm] memcontrol: lockless page counters (Jerome Marchand) [1217771]
-- [net] tcp_memcontrol: Remove tcp_max_memory (Jerome Marchand) [1217771]
-- [mm] memcontrol: lockless page counters (Jerome Marchand) [1217771]
-
-* Wed Mar 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-362.el7]
-- [fs] proc: fix for infinite loop in proc_device_tree_update_prop (Carlos Maiolino) [1210350 1314928]
-- [x86] perf/x86/intel: Add perf core PMU support for Intel Knights Landing (Jiri Olsa) [1145362 1224374 1259976]
-- [x86] perf/x86/intel/uncore: Remove hard coding of PMON box control MSR offset (Jiri Olsa) [1145362 1224374 1259976]
-- [x86] perf/x86/intel/uncore: Add Knights Landing uncore PMU support (Jiri Olsa) [1145362 1224374 1259976]
-- [x86] x86/perf/intel_rapl: Make Knights Landings support functional (Jiri Olsa) [1145362 1224374 1259976]
-- [x86] perf/x86/intel/uncore: Add Broadwell-EP uncore support (Jiri Olsa) [1145362 1224374 1259976]
-- [tools] perf hists browser: Fix segfault if use symbol filter in cmdline (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Reset selection when refresh (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Add NULL pointer check to prevent crash (Jiri Olsa) [1308570]
-- [tools] perf buildid-list: Fix return value of perf buildid-list -k (Jiri Olsa) [1308570]
-- [tools] perf buildid-list: Show running kernel build id fix (Jiri Olsa) [1308570]
-- [tools] perf probe: Clear probe_trace_event when add_probe_trace_event() fails (Jiri Olsa) [1308570]
-- [tools] perf probe: Fix memory leaking on failure by clearing all probe_trace_events (Jiri Olsa) [1308570]
-- [tools] perf inject: Also re-pipe lost_samples event (Jiri Olsa) [1308570]
-- [tools] perf buildid-list: Requires ordered events (Jiri Olsa) [1308570]
-- [tools] perf symbols: Fix dso lookup by long name and missing buildids (Jiri Olsa) [1308570]
-- [tools] perf symbols: Allow forcing reading of non-root owned files by root (Jiri Olsa) [1308570]
-- [tools] perf hists browser: The dso can be obtained from popup_action->ms.map->dso (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Fix 'd' hotkey action to filter by DSO (Jiri Olsa) [1308570]
-- [tools] perf symbols: Rebuild rbtree when adjusting symbols for kcore (Jiri Olsa) [1308570]
-- [tools] include: Add compiler.h to list.h (Jiri Olsa) [1308570]
-- [tools] perf probe: Verify parameters in two functions (Jiri Olsa) [1308570]
-- [tools] perf session: Add missing newlines to some pr_err() calls (Jiri Olsa) [1308570]
-- [tools] perf annotate: Support full source file paths for srcline fix (Jiri Olsa) [1308570]
-- [tools] perf test: Do not be case sensitive when searching for matching tests (Jiri Olsa) [1308570]
-- [tools] perf probe: Cleanup find_perf_probe_point_from_map to reduce redundancy (Jiri Olsa) [1308570]
-- [tools] perf annotate: Inform the user about objdump failures in --stdio (Jiri Olsa) [1308570]
-- [tools] perf stat: Make stat options global (Jiri Olsa) [1308570]
-- [tools] perf sched latency: Fix thread pid reuse issue (Jiri Olsa) [1308570]
-- [tools] perf tools: Fix find_perf_probe_point_from_map() which incorrectly returns success (Jiri Olsa) [1308570]
-- [tools] perf trace: Fix documentation for -i (Jiri Olsa) [1308570]
-- [tools] perf tools: Allow shuffling the build tests (Jiri Olsa) [1308570]
-- [tools] perf tools: Insert split maps correctly into origin group (Jiri Olsa) [1308570]
-- [tools] perf stat: Use common printout function to avoid duplicated code (Jiri Olsa) [1308570]
-- [tools] perf stat: Move sw clock metrics printout to stat-shadow (Jiri Olsa) [1308570]
-- [tools] perf test: Keep test result clean if '-v' not set (Jiri Olsa) [1308570]
-- [kernel] perf: pad raw data samples automatically (Jiri Olsa) [1308570]
-- [tools] perf unwind: Pass symbol source to libunwind (Jiri Olsa) [1308570]
-- [tools] build: Fix libiberty feature detection (Jiri Olsa) [1308570]
-- [tools] perf script: Enable printing of branch stack (Jiri Olsa) [1308570]
-- [tools] perf symbols: Fix endless loop in dso__split_kallsyms_for_kcore (Jiri Olsa) [1308570]
-- [tools] perf tools: Enable pre-event inherit setting by config terms (Jiri Olsa) [1308570]
-- [tools] perf symbols: we can now read separate debug-info files based on a build ID (Jiri Olsa) [1308570]
-- [tools] perf symbols: Fix type error when reading a build-id (Jiri Olsa) [1308570]
-- [tools] perf tools: Search for more options when passing args to -h (Jiri Olsa) [1308570]
-- [tools] perf stat: Cache aggregated map entries in extra cpumap (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Add cpu_map__empty_new function (Jiri Olsa) [1308570]
-- [tools] perf evsel: Move id_offset out of struct perf_evsel union member (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce usage_with_options_msg() (Jiri Olsa) [1308570]
-- [tools] perf tools: Setup pager when printing usage and help (Jiri Olsa) [1308570]
-- [tools] perf report: Rename to --show-cpu-utilization (Jiri Olsa) [1308570]
-- [tools] perf tools: Improve ambiguous option help message (Jiri Olsa) [1308570]
-- [tools] perf tools: Provide help for subset of options (Jiri Olsa) [1308570]
-- [tools] perf tools: Show tool command line options ordered (Jiri Olsa) [1308570]
-- [tools] perf annotate: Don't die() when finding an invalid config option (Jiri Olsa) [1308570]
-- [tools] perf ui tui: Register the error callbacks before initializing the widgets (Jiri Olsa) [1308570]
-- [tools] perf annotate: Fix 'annotate.use_offset' config variable usage (Jiri Olsa) [1308570]
-- [tools] perf tools: Improve call graph documents and help messages (Jiri Olsa) [1308570]
-- [tools] perf tools: Defaults to 'caller' callchain order only if --children is enabled (Jiri Olsa) [1308570]
-- [tools] perf top: Support call-graph display options also (Jiri Olsa) [1308570]
-- [tools] perf tools: Move callchain help messages to callchain.h (Jiri Olsa) [1308570]
-- [tools] lib traceevent: Support ps/pS (Jiri Olsa) [1308570]
-- [tools] perf annotate: Add debug message for out of bounds sample (Jiri Olsa) [1308570]
-- [tools] perf evsel: Print branch filter state with -vv (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Fix core dump caused by per-socket/core system-wide stat (Jiri Olsa) [1308570]
-- [tools] lib traceevent: update KVM plugin (Jiri Olsa) [1308570]
-- [tools] perf build: Add fixdep to .gitignore (Jiri Olsa) [1308570]
-- [tools] perf record: Add ability to sample call branches (Jiri Olsa) [1308570]
-- [include] perf: Add PERF_SAMPLE_BRANCH_CALL (Jiri Olsa) [1308570]
-- [tools] perf bench: Use named initializers in the trailer too (Jiri Olsa) [1308570]
-- [tools] perf script: Check output fields only for samples (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Add data arg to cpu_map__build_map callback (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Make cpu_map__build_map global (Jiri Olsa) [1308570]
-- [tools] perf stat: Add AGGR_UNSET mode (Jiri Olsa) [1308570]
-- [tools] perf stat: Rename perf_stat struct into perf_stat_evsel (Jiri Olsa) [1308570]
-- [tools] perf help: Change 'usage' to 'Usage' for consistency (Jiri Olsa) [1308570]
-- [tools] perf bench: Run benchmarks, don't test them (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Rename 'routine' to 'function' (Jiri Olsa) [1308570]
-- [tools] perf bench: Harmonize all the -l/--nr_loops options (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Reorganize the code a bit (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Improve user visible strings (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Fix 'length' vs. 'size' naming confusion (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Rename 'routine' to 'routine_str' (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Change 'cycle' to 'cycles' (Jiri Olsa) [1308570]
-- [tools] perf bench: List output formatting options on 'perf bench -h' (Jiri Olsa) [1308570]
-- [tools] perf bench: Remove the prefaulting complication from 'perf bench mem mem*' (Jiri Olsa) [1308570]
-- [tools] perf bench: Rename 'mem-memcpy.c' => 'mem-functions.c' (Jiri Olsa) [1308570]
-- [tools] perf bench: Eliminate unused argument from bench_mem_common() (Jiri Olsa) [1308570]
-- [tools] perf bench: Default to all routines in 'perf bench mem' (Jiri Olsa) [1308570]
-- [tools] perf bench: Improve the 'perf bench mem memcpy' code readability (Jiri Olsa) [1308570]
-- [tools] perf test: Suppress libtraceevent warnings (Jiri Olsa) [1308570]
-- [tools] perf test: Silence tracepoint event failures (Jiri Olsa) [1308570]
-- [tools] build: Fix cross compile build (Jiri Olsa) [1308570]
-- [tools] include: Fix strict-aliasing rules breakage (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Add 'm' key for context menu display (Jiri Olsa) [1308570]
-- [tools] perf callchains: Fix unw_word_t pointer casts (Jiri Olsa) [1308570]
-- [tools] perf callchain: Use debug_frame if eh_frame is unusable (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Inform how to reset the symbol filter (Jiri Olsa) [1308570]
-- [tools] perf ui browsers: Remove help messages about use of right and arrow keys (Jiri Olsa) [1308570]
-- [tools] perf symbols: Try the .debug/ DSO cache as a last resort (Jiri Olsa) [1308570]
-- [tools] perf python: Support the PERF_RECORD_SWITCH event (Jiri Olsa) [1308570]
-- [tools] perf tools: Fix handling read result using a signed variable (Jiri Olsa) [1308570]
-- [tools] perf tools: Use hpp_dimension__add_output to register hpp columns (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce hpp_dimension__add_output function (Jiri Olsa) [1308570]
-- [tools] perf tools: Get rid of superfluos call to reset_dimensions (Jiri Olsa) [1308570]
-- [tools] perf tools: Fail properly in case pattern matching fails to find tracepoint (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Implement horizontal scrolling (Jiri Olsa) [1308570]
-- [tools] perf ui browser: Optional horizontal scrolling key binding (Jiri Olsa) [1308570]
-- [tools] perf callchain: Switch default to 'graph, 0.5, caller' (Jiri Olsa) [1308570]
-- [tools] perf tests: Add Intel CQM test (Jiri Olsa) [1308570]
-- [tools] perf tests: Move x86 tests into arch directory (Jiri Olsa) [1308570]
-- [tools] perf tests: Add arch tests (Jiri Olsa) [1308570]
-- [tools] perf tools: Handle -h and -v options (Jiri Olsa) [1308570]
-- [tools] perf tools: Setup proper width for symbol_iaddr field (Jiri Olsa) [1308570]
-- [tools] perf tools: Add support for sorting on the iaddr (Jiri Olsa) [1308570]
-- [tools] perf tests: Add parsing test for 'P' modifier (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce 'P' modifier to request max precision (Jiri Olsa) [1308570]
-- [tools] perf tools: Export perf_event_attr__set_max_precise_ip() (Jiri Olsa) [1308570]
-- [tools] perf annotate: Fix sizeof_sym_hist overflow issue (Jiri Olsa) [1308570]
-- [tools] perf evlist: Display DATA_SRC sample type bit (Jiri Olsa) [1308570]
-- [tools] lib api fs: No need to use PATH_MAX + 1 (Jiri Olsa) [1308570]
-- [tools] perf stat: Reduce min --interval-print to 10ms (Jiri Olsa) [1308570]
-- [tools] perf record: Change 'record.samples' type to unsigned long long (Jiri Olsa) [1308570]
-- [tools] perf probe: Allow probing on kmodules without dwarf (Jiri Olsa) [1308570]
-- [tools] perf list: Honour 'event_glob' whem printing selectable PMUs (Jiri Olsa) [1308570]
-- [tools] perf list: Do event name substring search as last resort when no events found (Jiri Olsa) [1308570]
-- [tools] perf callchain: Allow for max_stack greater than PERF_MAX_STACK_DEPTH (Jiri Olsa) [1308570]
-- [tools] perf report: Fix a bug on "--call-graph none" option (Jiri Olsa) [1308570]
-- [tools] perf top: Register idle thread (Jiri Olsa) [1308570]
-- [tools] perf top: Fix unresolved comm when -s comm is used (Jiri Olsa) [1308570]
-- [tools] perf record: Allocate area for sample_id_hdr in a synthesized comm event (Jiri Olsa) [1308570]
-- [tools] perf tools: By default use the most precise "cycles" hw counter available (Jiri Olsa) [1308570]
-- [tools] perf list: Remove blank lines, headers when piping output (Jiri Olsa) [1308570]
-- [tools] perf probe: Improve error message when return is on inlined function (Jiri Olsa) [1308570]
-- [tools] perf probe: Fix a segfault bug in debuginfo_cache (Jiri Olsa) [1308570]
-- [tools] perf probe: Show correct source lines of probes on kmodules (Jiri Olsa) [1308570]
-- [tools] perf probe: Begin and end libdwfl report session correctly (Jiri Olsa) [1308570]
-- [tools] perf probe: Fix to remove dot suffix from second or latter events (Jiri Olsa) [1308570]
-- [tools] lib symbol: Introduce kallsyms2elf_type (Jiri Olsa) [1308570]
-- [tools] lib symbol: Rename kallsyms2elf_type to kallsyms2elf_binding (Jiri Olsa) [1308570]
-- [tools] perf machine: Add method for common kernel_map(FUNCTION) operation (Jiri Olsa) [1308570]
-- [tools] perf machine: Use machine__kernel_map() thoroughly (Jiri Olsa) [1308570]
-- [tools] perf report: Amend documentation about max_stack and synthesized callchains (Jiri Olsa) [1308570]
-- [tools] perf maps: Introduce maps__find_symbol_by_name() (Jiri Olsa) [1308570]
-- [tools] perf tools: Fix shadowed declaration in parse-events.c (Jiri Olsa) [1308570]
-- [tools] Fix shadowed declaration in err.h (Jiri Olsa) [1308570]
-- [tools] perf tools: Enable event_config terms to tracepoint events (Jiri Olsa) [1308570]
-- [tools] perf tools: Adds the tracepoint name parsing support (Jiri Olsa) [1308570]
-- [tools] perf tools: Show proper error message for wrong terms of hw/sw events (Jiri Olsa) [1308570]
-- [tools] perf tools: Adds the config_term callback for different type events (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Add mispred-all config option to aid use with autofdo (Jiri Olsa) [1308570]
-- [tools] perf inject: Add --strip option to strip out non-synthesized events (Jiri Olsa) [1308570]
-- [tools] perf inject: Remove more aux-related stuff when processing instruction traces (Jiri Olsa) [1308570]
-- [tools] perf evlist: Add perf_evlist__remove() (Jiri Olsa) [1308570]
-- [tools] perf evlist: Add perf_evlist__id2evsel_strict() (Jiri Olsa) [1308570]
-- [tools] perf script: Make scripting_max_stack value allow for synthesized callchains (Jiri Olsa) [1308570]
-- [tools] perf scripting python: Allow for max_stack greater than PERF_MAX_STACK_DEPTH (Jiri Olsa) [1308570]
-- [tools] perf script: Add a setting for maximum stack depth (Jiri Olsa) [1308570]
-- [tools] perf hists: Allow for max_stack greater than PERF_MAX_STACK_DEPTH (Jiri Olsa) [1308570]
-- [tools] perf report: Make max_stack value allow for synthesized callchains (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Support generating branch stack (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Move branch filter logic (Jiri Olsa) [1308570]
-- [tools] perf inject: Set branch stack feature flag when synthesizing branch stacks (Jiri Olsa) [1308570]
-- [tools] perf report: Skip events with null branch stacks (Jiri Olsa) [1308570]
-- [tools] perf report: Also do default setup for synthesized branch stacks (Jiri Olsa) [1308570]
-- [tools] perf report: Adjust sample type validation for synthesized branch stacks (Jiri Olsa) [1308570]
-- [tools] perf auxtrace: Add option to synthesize branch stacks on samples (Jiri Olsa) [1308570]
-- [tools] perf tools: Add more documentation to export-to-postgresql.py script (Jiri Olsa) [1308570]
-- [tools] perf session: Warn when AUX data has been lost (Jiri Olsa) [1308570]
-- [tools] perf script: Allow time to be displayed in nanoseconds (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Make logging slightly more efficient (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Fix potential loop forever (Jiri Olsa) [1308570]
-- [tools] perf report: Fix sample type validation for synthesized callchains (Jiri Olsa) [1308570]
-- [tools] perf auxtrace: Fix 'instructions' period of zero (Jiri Olsa) [1308570]
-- [tools] build: Build fixdep helper from perf and basic libs (Jiri Olsa) [1308570]
-- [tools] perf tools: Rename the 'single_dep' target to 'prepare' (Jiri Olsa) [1308570]
-- [tools] build: Make the fixdep helper part of the build process (Jiri Olsa) [1308570]
-- [tools] build: Move dependency copy into function (Jiri Olsa) [1308570]
-- [tools] build: Add fixdep dependency helper (Jiri Olsa) [1308570]
-- [tools] build: Add test for missing include (Jiri Olsa) [1308570]
-- [tools] build: Add Makefile.include (Jiri Olsa) [1308570]
-- [tools] lib api fs: Store tracing mountpoint for better error message (Jiri Olsa) [1308570]
-- [tools] perf tools: Use __map__is_kernel() when synthesizing kernel module mmap records (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Use the map to determine if a DSO is being used as a kernel (Jiri Olsa) [1308570]
-- [tools] perf top: Filter symbols based on __map__is_kernel(map) (Jiri Olsa) [1308570]
-- [tools] perf record: Synthesize COMM event for a command line workload (Jiri Olsa) [1308570]
-- [tools] perf tools: Add include/err.h into MANIFEST (Jiri Olsa) [1308570]
-- [tools] build: Allow setting the feature detection user (Jiri Olsa) [1308570]
-- [tools] build: Fixup feature detection display function name (Jiri Olsa) [1308570]
-- [tools] perf tools: Don't assume that the parser returns non empty evsel list (Jiri Olsa) [1308570]
-- [tools] perf probe: Fix a segfault when removing uprobe events (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce regs_query_register_offset() for x86 (Jiri Olsa) [1308570]
-- [tools] perf tools: regs_query_register_offset() infrastructure (Jiri Olsa) [1308570]
-- [tools] perf tools: Enhance parsing events tracepoint error output (Jiri Olsa) [1308570]
-- [tools] perf evsel: Propagate error info from tp_format (Jiri Olsa) [1308570]
-- [tools] perf tools: Propagate error info for the tracepoint parsing (Jiri Olsa) [1308570]
-- [tools] Add err.h with ERR_PTR PTR_ERR interface (Jiri Olsa) [1308570]
-- [tools] perf probe: Export init/exit_probe_symbol_maps() (Jiri Olsa) [1308570]
-- [tools] perf probe: Free perf_probe_event in cleanup_perf_probe_events() (Jiri Olsa) [1308570]
-- [tools] perf test: Add entry for hists socket filter (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Zoom in/out for processor socket (Jiri Olsa) [1308570]
-- [tools] perf report: Introduce --socket-filter option (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce new sort type "socket" for the processor socket (Jiri Olsa) [1308570]
-- [tools] perf tools: Add processor socket info to hist_entry and addr_location (Jiri Olsa) [1308570]
-- [tools] perf machine: Add pointer to sample's environment (Jiri Olsa) [1308570]
-- [tools] perf env: Introduce read_cpu_topology_map() method (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Use sysfs__read_int in get_{core, socket}_id() (Jiri Olsa) [1308570]
-- [tools] lib api cpu: Introduce cpu.[ch] to obtain cpu related information (Jiri Olsa) [1308570]
-- [tools] lib api fs: Introduce sysfs__read_{int, ull}() (Jiri Olsa) [1308570]
-- [tools] perf env: Read msr pmu type from header (Jiri Olsa) [1308570]
-- [tools] perf tools: Add tools/include into tags directories (Jiri Olsa) [1308570]
-- [tools] perf evsel: Remove forward declaration of 'struct perf_evlist' (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Fixup the "cpu" column width calculation (Jiri Olsa) [1308570]
-- [tools] perf env: Adopt perf_header__set_cmdline (Jiri Olsa) [1308570]
-- [tools] perf env: Rename some leftovers from rename to perf_env (Jiri Olsa) [1308570]
-- [tools] perf env: Move perf_env out of header.h and session.c into separate object (Jiri Olsa) [1308570]
-- [tools] perf tests: Introduce iterator function for tests (Jiri Olsa) [1308570]
-- [tools] perf test: Add entry to test cpu topology (Jiri Olsa) [1308570]
-- [tools] perf tools: Switch to tracing_path interface on appropriate places (Jiri Olsa) [1308570]
-- [tools] lib api fs: Remove debugfs, tracefs and findfs objects (Jiri Olsa) [1308570]
-- [tools] lib api fs: Replace debugfs/tracefs objects interface with fs.c (Jiri Olsa) [1308570]
-- [tools] lib api fs: Make tracing_path_strerror_open message generic (Jiri Olsa) [1308570]
-- [tools] perf tests: Print objdump/dso buffers if they don't match (Jiri Olsa) [1308570]
-- [tools] perf tests: Stop reading if objdump output crossed sections (Jiri Olsa) [1308570]
-- [tools] perf tests: Make objdump disassemble zero blocks (Jiri Olsa) [1308570]
-- [tools] perf tests: Take into account address of each objdump line (Jiri Olsa) [1308570]
-- [tools] perf trace: Add read/write to the file group (Jiri Olsa) [1308570]
-- [tools] perf probe: Print deleted events in cmd_probe() (Jiri Olsa) [1308570]
-- [tools] perf probe: Split del_perf_probe_events() (Jiri Olsa) [1308570]
-- [tools] perf probe: Move print logic into cmd_probe() (Jiri Olsa) [1308570]
-- [tools] perf probe: Link trace_probe_event into perf_probe_event (Jiri Olsa) [1308570]
-- [tools] perf probe: Split add_perf_probe_events() (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Add support for PERF_RECORD_SWITCH (Jiri Olsa) [1308570]
-- [tools] perf session: Don't call dump_sample() when evsel is NULL (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Add new xsave instructions (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Add new memory protection keys instructions (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Add new memory instructions (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Add new SHA instructions (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Pedantically tweak opcode map for MPX instructions (Jiri Olsa) [1308570]
-- [x86] asm/decoder: Explain CALLW discrepancy between Intel and AMD (Jiri Olsa) [1308570]
-- [x86] mpx: Add MPX related opcodes to the x86 opcode map (Jiri Olsa) [1308570]
-- [x86] insn: Add new opcodes as of June, 2013 (Jiri Olsa) [1308570]
-- [tools] perf tools: Add a test for decoding of new x86 instructions (Jiri Olsa) [1308570]
-- [tools] perf tools: Display build warning if x86 instruction decoder differs from kernel (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add FSTYPE__configured() method (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add FSTYPE__mount() method (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add tracefs into fs.c object (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add debugfs into fs.c object (Jiri Olsa) [1308570]
-- [tools] lib api fs: Move SYSFS_MAGIC PROC_SUPER_MAGIC into fs.c (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add STR and PATH_MAX macros to fs object (Jiri Olsa) [1308570]
-- [tools] lib api fs: Move debugfs__strerror_open into tracing_path.c object (Jiri Olsa) [1308570]
-- [tools] lib api fs: Move tracing_path interface into api/fs/tracing_path.c (Jiri Olsa) [1308570]
-- [tools] perf tools: Move tracing_path stuff under same namespace (Jiri Olsa) [1308570]
-- [tools] perf tools: Remove mountpoint arg from perf_debugfs_mount (Jiri Olsa) [1308570]
-- [tools] perf stat: Quieten failed to read counter message (Jiri Olsa) [1308570]
-- [tools] perf tools: Store the cpu socket and core ids in the perf.data header (Jiri Olsa) [1308570]
-- [tools] perf cpumap: Factor out functions to get core_id and socket_id (Jiri Olsa) [1308570]
-- [tools] lib traceevent: Support function __get_dynamic_array_len (Jiri Olsa) [1308570]
-- [tools] perf tools: Copy linux/filter.h to tools/include (Jiri Olsa) [1308570]
-- [tools] perf tools: Always use non inlined file name for 'srcfile' sort key (Jiri Olsa) [1308570]
-- [kernel] perf: Fix race in swevent hash (Jiri Olsa) [1308570]
-- [kernel] perf: Fix race in perf_event_exec() (Jiri Olsa) [1308570]
-- [kernel] perf: Do not send exit event twice (Jiri Olsa) [1308570]
-- [kernel] perf: Fix PERF_EVENT_IOC_PERIOD deadlock (Jiri Olsa) [1308570]
-- [kernel] perf: Fix inherited events vs. tracepoint filters (Jiri Olsa) [1308570]
-- [kernel] perf: Disable IRQs across RCU RS CS that acquires scheduler lock (Jiri Olsa) [1308570]
-
-* Tue Mar 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-361.el7]
-- [tools] perf tools: Fix build break on powerpc due to sample_reg_masks (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix copying of /proc/kcore (Jiri Olsa) [1306834]
-- [tools] perf intel-pt: Remove no_force_psb from documentation (Jiri Olsa) [1306834]
-- [tools] perf probe: Use existing routine to look for a kernel module by dso->short_name (Jiri Olsa) [1306834]
-- [tools] lib traceevent: Fix string handling in heterogeneous arch environments (Jiri Olsa) [1306834]
-- [tools] perf record: Avoid infinite loop at buildid processing with no samples (Jiri Olsa) [1306834]
-- [tools] perf tools: Bool functions shouldn't return -1 (Jiri Olsa) [1306834]
-- [tools] build: Add test for presence of __get_cpuid() gcc builtin (Jiri Olsa) [1306834]
-- [tools] build: Add test for presence of numa_num_possible_cpus() in libnuma (Jiri Olsa) [1306834]
-- [tools] revert "perf symbols: Fix mismatched declarations for elf_getphdrnum" (Jiri Olsa) [1306834]
-- [tools] perf stat: Fix per-pkg event reporting bug (Jiri Olsa) [1306834]
-- [tools] perf tests: Fix software clock events test setting maps (Jiri Olsa) [1306834]
-- [tools] perf tests: Fix task exit test setting maps (Jiri Olsa) [1306834]
-- [tools] perf evlist: Fix create_syswide_maps() not propagating maps (Jiri Olsa) [1306834]
-- [tools] perf evlist: Fix add() not propagating maps (Jiri Olsa) [1306834]
-- [tools] perf evlist: Factor out a function to propagate maps for a single evsel (Jiri Olsa) [1306834]
-- [tools] perf evlist: Make create_maps() use set_maps() (Jiri Olsa) [1306834]
-- [tools] perf evlist: Make set_maps() more resilient (Jiri Olsa) [1306834]
-- [tools] perf evsel: Add own_cpus member (Jiri Olsa) [1306834]
-- [tools] perf evlist: Fix missing thread_map__put in propagate_maps() (Jiri Olsa) [1306834]
-- [tools] perf evlist: Fix splice_list_tail() not setting evlist (Jiri Olsa) [1306834]
-- [tools] perf evlist: Add has_user_cpus member (Jiri Olsa) [1306834]
-- [tools] perf evlist: Remove redundant validation from propagate_maps() (Jiri Olsa) [1306834]
-- [tools] perf evlist: Simplify set_maps() logic (Jiri Olsa) [1306834]
-- [tools] perf evlist: Simplify propagate_maps() logic (Jiri Olsa) [1306834]
-- [tools] perf top: Fix segfault pressing -> with no hist entries (Jiri Olsa) [1306834]
-- [tools] perf header: Fixup reading of HEADER_NRCPUS feature (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix use of wrong event when processing exit events (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix parse_events_add_pmu caller (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix link time error with sample_reg_masks on non x86 (Jiri Olsa) [1306834]
-- [tools] perf build: Fix Intel PT instruction decoder dependency problem (Jiri Olsa) [1306834]
-- [tools] perf dwarf: Fix potential array out of bounds access (Jiri Olsa) [1306834]
-- [tools] perf record: Add ability to name registers to record (Jiri Olsa) [1306834]
-- [tools] perf/x86: Add list of register names (Jiri Olsa) [1306834]
-- [tools] perf script: Enable printing of interrupted machine state (Jiri Olsa) [1306834]
-- [tools] perf evlist: Open event on evsel cpus and threads (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix build on powerpc broken by pt/bts (Jiri Olsa) [1306834]
-- [kernel] perf: add the necessary core perf APIs when accessing events counters in eBPF programs (Jiri Olsa) [1306834]
-- [tools] perf evlist: Add backpointer for perf_env to evlist (Jiri Olsa) [1306834]
-- [tools] perf tools: Rename perf_session_env to perf_env (Jiri Olsa) [1306834]
-- [tools] perf tools: Do not change lib/api/fs/debugfs directly (Jiri Olsa) [1306834]
-- [tools] perf tools: Add tracing_path and remove unneeded functions (Jiri Olsa) [1306834]
-- [tools] perf buildid: Introduce sysfs/filename__sprintf_build_id (Jiri Olsa) [1306834]
-- [tools] perf evsel: Add a backpointer to the evlist a evsel is in (Jiri Olsa) [1306834]
-- [tools] perf trace: Add header with copyright and background info (Jiri Olsa) [1306834]
-- [tools] perf scripts python: Add new compaction-times script (Jiri Olsa) [1306834]
-- [tools] lib traceeveent: Allow for negative numbers in print format (Jiri Olsa) [1306834]
-- [tools] perf script: Add --[no-]-demangle/--[no-]-demangle-kernel (Jiri Olsa) [1306834]
-- [tools] perf stat: Get correct cpu id for print_aggr (Jiri Olsa) [1306834]
-- [tools] perf probe: Support probing at absolute address (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix error reported when offset without function (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix list result when address is zero (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix list result when symbol can't be found (Jiri Olsa) [1306834]
-- [tools] build: Allow duplicate objects in the object list (Jiri Olsa) [1306834]
-- [tools] perf tools: Remove export.h from MANIFEST (Jiri Olsa) [1306834]
-- [tools] perf probe: Prevent segfault when reading probe point with absolute address (Jiri Olsa) [1306834]
-- [tools] perf tools: Update Intel PT documentation (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for decoding TRACESTOP packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for using CYC packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for decoding CYC packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for using MTC packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for decoding MTC packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Pass Intel PT information for decoding MTC and CYC (Jiri Olsa) [1306834]
-- [tools] perf tools: Add new Intel PT packet definitions (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for PSB periods (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix Intel PT 'instructions' sample period (Jiri Olsa) [1306834]
-- [tools] perf ordered_events: Clear the progress bar at the end of a flush (Jiri Olsa) [1306834]
-- [tools] perf ui tui progress: Implement the ui_progress_ops->finish() method (Jiri Olsa) [1306834]
-- [tools] perf annotate: Reset the dso find_symbol cache when removing symbols (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix tarball build broken by pt/bts (Jiri Olsa) [1306834]
-- [tools] perf probe: Try to use symbol table if searching debug info failed (Jiri Olsa) [1306834]
-- [tools] perf tools: Initialize reference counts in map__clone() (Jiri Olsa) [1306834]
-- [tools] perf tools: Add example call-graph script (Jiri Olsa) [1306834]
-- [tools] perf tools: Put itrace options into an asciidoc include (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel BTS support (Jiri Olsa) [1306834]
-- [tools] lib traceevent: Add checks for returned EVENT_ERROR type (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix Intel PT timestamp handling (Jiri Olsa) [1306834]
-- [tools] perf tools: /proc/kcore requires CAP_SYS_RAWIO message too noisy (Jiri Olsa) [1306834]
-- [tools] perf script: Fix segfault using --show-mmap-events (Jiri Olsa) [1306834]
-- [tools] perf tools: Take Intel PT into use (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT decoder (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT log (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT instruction decoder (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT packet decoder (Jiri Olsa) [1306834]
-- [tools] perf auxtrace: Add Intel PT as an AUX area tracing type (Jiri Olsa) [1306834]
-- [tools] perf tools: Add a helper function to probe whether cpu-wide tracing is possible (Jiri Olsa) [1306834]
-- [tools] perf symbols: Fix annotation of vdso (Jiri Olsa) [1306834]
-- [tools] perf annotate: Fix 32-bit compilation error in util/annotate.c (Jiri Olsa) [1306834]
-- [tools] perf script: Initialize callchain_param.record_mode (Jiri Olsa) [1306834]
-- [tools] perf trace: Move vfs_getname storage to per thread area (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix to add missed brace around if block (Jiri Olsa) [1306834]
-- [tools] perf tools: Support static linking with libdw (Jiri Olsa) [1306834]
-- [tools] perf tests: Add tests to callgraph and time parse (Jiri Olsa) [1306834]
-- [tools] perf report: Show call graph from reference events (Jiri Olsa) [1306834]
-- [tools] perf callchain: Allow disabling call graphs per event (Jiri Olsa) [1306834]
-- [tools] perf callchain: Per-event type selection support (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix to show lines of sys_ functions correctly (Jiri Olsa) [1306834]
-- [tools] perf hists browser: Make ESC unzoom as well (Jiri Olsa) [1306834]
-- [tools] perf ui browser: Introduce ui_browser__printf() (Jiri Olsa) [1306834]
-- [tools] perf ui browser: Introduce ui_browser__write_nstring() (Jiri Olsa) [1306834]
-- [tools] perf trace: Beautify keyctl's option arg (Jiri Olsa) [1306834]
-- [tools] perf trace: Use the FD beautifier for socket syscall fds (Jiri Olsa) [1306834]
-- [tools] perf sort: Check for SRCLINE_UNKNOWN case in "srcfile" processing (Jiri Olsa) [1306834]
-- [tools] perf trace: Add missing clockid entries (Jiri Olsa) [1306834]
-- [tools] perf trace: Associate some more syscall args with the getname beautifier (Jiri Olsa) [1306834]
-- [tools] perf evlist: Be more specific on -F/--freq (Jiri Olsa) [1306834]
-- [tools] perf record: Support per-event freq term (Jiri Olsa) [1306834]
-- [tools] perf report: Add support for srcfile sort key (Jiri Olsa) [1306834]
-- [tools] perf hists: Update the column width for the "srcline" sort key (Jiri Olsa) [1306834]
-- [tools] perf hists: hist_entry__cmp() may use he_tmp.hists, initialize it (Jiri Olsa) [1306834]
-- [tools] perf tools: Unset perf_event_attr::freq when period term is set (Jiri Olsa) [1306834]
-- [tools] perf tools: Support full source file paths for srcline (Jiri Olsa) [1306834]
-- [tools] perf callchain: Move option parsing code to util.c (Jiri Olsa) [1306834]
-- [tools] perf stat: Move perf_counts struct and functions into separate object (Jiri Olsa) [1306834]
-- [tools] perf tools: Auto detecting kernel include options (Jiri Olsa) [1306834]
-- [tools] perf tools: Auto detecting kernel build directory (Jiri Olsa) [1306834]
-- [tools] perf tools: Call clang to compile C source to object code (Jiri Olsa) [1306834]
-- [tools] perf tools: Introduce llvm config options (Jiri Olsa) [1306834]
-- [tools] perf tools: Extend the event parser maximum error index (Jiri Olsa) [1306834]
-- [tools] perf tools: Validate config term maximum value (Jiri Olsa) [1306834]
-- [tools] perf tools: Add perf_pmu__format_bits() (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix perf-with-kcore handling of arguments containing spaces (Jiri Olsa) [1306834]
-- [tools] perf auxtrace: Fix period type 'i' not working (Jiri Olsa) [1306834]
-- [tools] perf tools xtensa: Add DWARF register names (Jiri Olsa) [1306834]
-- [tools] perf report: Display cycles in branch sort mode (Jiri Olsa) [1306834]
-- [tools] perf top: Add branch annotation code to top (Jiri Olsa) [1306834]
-- [tools] perf annotate: Finally display IPC and cycle accounting (Jiri Olsa) [1306834]
-- [tools] perf annotate: Compute IPC and basic block cycles (Jiri Olsa) [1306834]
-- [tools] perf report: Add processing for cycle histograms (Jiri Olsa) [1306834]
-- [tools] perf report: Add infrastructure for a cycles histogram (Jiri Olsa) [1306834]
-- [tools] perf report: Add flag for non ANY branch mode (Jiri Olsa) [1306834]
-- [tools] perf tools: Add support for cycles, weight branch_info field (Jiri Olsa) [1306834]
-- [tools] perf tools: Add empty Build files for architectures lacking them (Jiri Olsa) [1306834]
-- [tools] perf stat: Move counter processing code into stat object (Jiri Olsa) [1306834]
-- [tools] perf stat: Pass 'struct perf_stat_config' into process_counter() (Jiri Olsa) [1306834]
-- [tools] perf stat: Move 'interval' into struct perf_stat_config (Jiri Olsa) [1306834]
-- [tools] perf stat: Move 'output' into struct perf_stat_config (Jiri Olsa) [1306834]
-- [tools] perf stat: Move 'scale' into struct perf_stat_config (Jiri Olsa) [1306834]
-- [tools] perf stat: Introduce struct perf_stat_config (Jiri Olsa) [1306834]
-- [tools] perf tools: Add missing forward declaration of struct map to probe-event.h (Jiri Olsa) [1306834]
-- [tools] perf tools: Introduce veprintf (Jiri Olsa) [1306834]
-- [tools] perf trace: Add total time column to summary (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix build errors with mipsel-linux-uclibc compiler (Jiri Olsa) [1306834]
-- [tools] perf trace: Write to stderr by default (Jiri Olsa) [1306834]
-- [tools] perf tools: Do not include escape sequences in color_vfprintf return (Jiri Olsa) [1306834]
-- [tools] perf tools: Remove trail argument to color vsprintf (Jiri Olsa) [1306834]
-- [tools] perf tools: Refine parse/config callchain functions (Jiri Olsa) [1306834]
-- [tools] perf tools: Per-event time support (Jiri Olsa) [1306834]
-- [tools] perf trace: Use vfs_getname syscall arg beautifier in more syscalls (Jiri Olsa) [1306834]
-- [tools] perf trace: Deref sys_enter pointer args with contents from probe:vfs_getname (Jiri Olsa) [1306834]
-- [tools] perf trace: Use a constant for the syscall formatting buffer (Jiri Olsa) [1306834]
-- [tools] perf trace: Remember if the vfs_getname tracepoint/kprobe is in place (Jiri Olsa) [1306834]
-- [tools] perf trace: Do not show syscall tracepoint filter in the --no-syscalls case (Jiri Olsa) [1306834]
-- [tools] perf script: No tracepoints? Don't call libtraceevent (Jiri Olsa) [1306834]
-- [tools] perf tests: Adding build test for having ending double slash (Jiri Olsa) [1306834]
-- [tools] perf tools: Introduce callgraph_set for callgraph option (Jiri Olsa) [1306834]
-- [tools] perf tools: Force period term to overload global settings (Jiri Olsa) [1306834]
-- [tools] perf tools: Add support for event post configuration (Jiri Olsa) [1306834]
-- [tools] perf session env: Rename exit method (Jiri Olsa) [1306834]
-- [tools] perf symbols: Fix mismatched declarations for elf_getphdrnum (Jiri Olsa) [1306834]
-- [tools] perf python: Make twatch.py use soft dummy event, freq=0 (Jiri Olsa) [1306834]
-- [tools] perf python: Add missing PERF_RECORD_{MMAP2, AUX, etc} (Jiri Olsa) [1306834]
-- [tools] perf python: Add macro to simplify maintainance of the constants array (Jiri Olsa) [1306834]
-- [tools] perf python: Remove dependency on 'machine' methods (Jiri Olsa) [1306834]
-- [tools] perf script: Add option --show-switch-events (Jiri Olsa) [1306834]
-- [tools] perf script: Don't assume evsel position of tracking events (Jiri Olsa) [1306834]
-- [tools] perf record: Add option --switch-events to select PERF_RECORD_SWITCH events (Jiri Olsa) [1306834]
-- [tools] perf tools: Add new PERF_RECORD_SWITCH event (Jiri Olsa) [1306834]
-- [tools] perf tools: Stop copying kallsyms into the perf.data file header (Jiri Olsa) [1306834]
-- [tools] perf tools: Stop reading the kallsyms data from perf.data (Jiri Olsa) [1306834]
-- [tools] perf script: Switch from perf.data's kallsyms to perf's symbol resolver (Jiri Olsa) [1306834]
-- [tools] perf trace: Provide libtracevent with a kernel symbol resolver (Jiri Olsa) [1306834]
-- [tools] perf symbols: Provide libtraceevent callback to resolve kernel symbols (Jiri Olsa) [1306834]
-- [tools] lib traceevent: Allow setting an alternative symbol resolver (Jiri Olsa) [1306834]
-- [tools] perf symbols: Introduce map__is_(kernel, kmodule)() (Jiri Olsa) [1306834]
-- [tools] perf symbols: Add front end cache for DSO symbol lookup (Jiri Olsa) [1306834]
-- [tools] perf header: Use argv style storage for cmdline feature data (Jiri Olsa) [1306834]
-- [tools] perf evlist: Tolerate NULL maps in propagate_maps (Jiri Olsa) [1306834]
-- [tools] perf evlist: Use bool instead of target argument in propagate_maps() (Jiri Olsa) [1306834]
-- [tools] perf evlist: Force perf_evlist__set_maps to propagate maps through events (Jiri Olsa) [1306834]
-- [tools] perf test: Check for refcnt in thread_map test (Jiri Olsa) [1306834]
-- [tools] perf bench futex: Add lock_pi stresser (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix makefile generation under dash (Jiri Olsa) [1306834]
-- [tools] perf buildid: Use SBUILD_ID_SIZE macro (Jiri Olsa) [1306834]
-- [tools] perf probe: Move ftrace probe-event operations to probe-file.c (Jiri Olsa) [1306834]
-- [tools] perf probe: Simplify __add_probe_trace_events code (Jiri Olsa) [1306834]
-- [tools] perf record: Allow filtering perf's pid via --exclude-perf (Jiri Olsa) [1306834]
-- [tools] perf record: Apply filter to all events in a glob matching (Jiri Olsa) [1306834]
-- [tools] perf trace: Support 'strace' syscall event groups (Jiri Olsa) [1306834]
-- [tools] perf strlist: Make parse_list() private (Jiri Olsa) [1306834]
-- [tools] perf strlist: Allow substitutions from file contents in a given directory (Jiri Olsa) [1306834]
-- [tools] perf strlist: Make dupstr be the default and part of an extensible config parm (Jiri Olsa) [1306834]
-- [tools] perf strlist: load() should return a negative errno (Jiri Olsa) [1306834]
-- [tools] perf record: Document setting '-e pmu/period=N/' in man page (Jiri Olsa) [1306834]
-- [tools] lib api debugfs: Check for tracefs when reporting errors (Jiri Olsa) [1306834]
-- [tools] perf record: Let user have timestamps with per-thread recording (Jiri Olsa) [1306834]
-- [tools] perf probe: Delete an unnecessary check before the function call "strfilter__delete" (Jiri Olsa) [1306834]
-- [tools] perf trace: Use event filters for the event qualifier list (Jiri Olsa) [1306834]
-- [tools] perf evsel: Introduce append_filter() method (Jiri Olsa) [1306834]
-- [tools] perf evlist: Make perf_evlist__set_filter use perf_evsel__set_filter (Jiri Olsa) [1306834]
-- [tools] perf evsel: Introduce set_filter method (Jiri Olsa) [1306834]
-- [tools] perf evsel: Rename set_filter to apply_filter (Jiri Olsa) [1306834]
-- [tools] perf trace: Store the syscall ids for the event qualifiers in a table (Jiri Olsa) [1306834]
-- [tools] perf trace: Remember what are the syscalls tracepoint evsels (Jiri Olsa) [1306834]
-- [tools] perf tools: Asprintf like functions to format integer filter expression (Jiri Olsa) [1306834]
-- [tools] Restore export.h (Jiri Olsa) [1306834]
-- [kernel] perf: Fix races in computing the header sizes (Jiri Olsa) [1306834]
-- [kernel] perf: Fix u16 overflows (Jiri Olsa) [1306834]
-- [kernel] perf: Restructure perf syscall point of no return (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Fix Skylake FRONTEND MSR extrareg mask (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/pebs: Add PEBS frontend profiling for Skylake (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Make the CYCLE_ACTIVITY.* constraint on Broadwell more specific (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Fix constraint access (Jiri Olsa) [1306834]
-- [kernel] perf/ring-buffer: Clarify the use of page::private for high-order AUX allocations (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/pebs: Robustify PEBS buffer drain (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/pebs: Fix event disable PEBS buffer drain (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/uncore: Add Broadwell-DE uncore support (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Use 0x11 as extra reg test value (Jiri Olsa) [1306834]
-- [x86] perf/x86: Make merge_attr() global to use from perf_event_intel (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Limit LBR accesses to TOS in callstack mode (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Use correct index to save/restore LBR_INFO with call stack (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Add Intel Skylake PMU support (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Optimize v4 LBR unfreezing (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Streamline LBR MSR handling in PMI (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Move PMU ACK to after LBR read (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Handle new arch perfmon v4 status bits (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Add support for LBRv5 (Jiri Olsa) [1306834]
-- [x86] Add new MSRs and MSR bits used for Intel Skylake PMU support (Jiri Olsa) [1306834]
-- [include] perf: Add cycles to branch_info (Jiri Olsa) [1306834]
-- [include] perf: Export struct perf_branch_entry to userspace (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Allow time stamp for free running PEBSv3 (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Add support for PEBSv3 profiling (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/uncore: Remove use of macro DEFINE_PCI_DEVICE_TABLE() (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/rapl: Add support for Knights Landing (KNL) (Jiri Olsa) [1306834]
-- [x86] perf/x86: Add a native_perf_sched_clock_from_tsc() (Jiri Olsa) [1306834]
-
-* Mon Mar 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-360.el7]
-- [tools] perf top: Show backtrace when handling a SIGSEGV on --stdio mode (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix buildid processing (Jiri Olsa) [1305882]
-- [tools] perf tools: Make fork event processing more resilient (Jiri Olsa) [1305882]
-- [tools] perf tools: Avoid deadlock when map_groups are broken (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix test build error when bindir contains double slash (Jiri Olsa) [1305882]
-- [tools] perf stat: Fix transaction lenght metrics (Jiri Olsa) [1305882]
-- [tools] perf tools: Really allow to specify custom CC, AR or LD (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Fix misplaced check for HAVE_SYNC_COMPARE_AND_SWAP_SUPPORT (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Take the --comm, --dsos, etc filters into account (Jiri Olsa) [1305882]
-- [tools] perf symbols: Store if there is a filter in place (Jiri Olsa) [1305882]
-- [tools] Copy lib/hweight.c from the kernel sources (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix the detached tarball wrt rbtree copy (Jiri Olsa) [1305882]
-- [tools] perf thread_map: Fix the sizeof() calculation for map entries (Jiri Olsa) [1305882]
-- [tools] lib: Improve clean target (Jiri Olsa) [1305882]
-- [tools] perf stat: Fix shadow declaration of close (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix lockup using 32-bit compat vdso (Jiri Olsa) [1305882]
-- [tools] Copy rbtree_augmented.h from the kernel (Jiri Olsa) [1305882]
-- [tools] Move rbtree.h from tools/perf/ (Jiri Olsa) [1305882]
-- [tools] Copy lib/rbtree.c to tools/lib/ (Jiri Olsa) [1305882]
-- [tools] perf tools: Copy rbtree.h from the kernel (Jiri Olsa) [1305882]
-- [tools] Adopt {READ, WRITE_ONCE} from the kernel (Jiri Olsa) [1305882]
-- [tools] perf tools: Allow to specify custom linker command (Jiri Olsa) [1305882]
-- [tools] perf tools: Create config.detected into OUTPUT directory (Jiri Olsa) [1305882]
-- [tools] perf mem: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf kvm: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf report: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf kmem: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf inject: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf tools: Add missing break for PERF_RECORD_ITRACE_START (Jiri Olsa) [1305882]
-- [tools] perf symbols: Check access permission when reading symbol files (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce --per-thread option (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce print_counters function (Jiri Olsa) [1305882]
-- [tools] perf stat: Using init_stats instead of memset (Jiri Olsa) [1305882]
-- [tools] perf stat: Rename print_interval to process_interval (Jiri Olsa) [1305882]
-- [tools] perf stat: Remove perf_evsel__read_cb function (Jiri Olsa) [1305882]
-- [tools] perf stat: Move perf_stat initialization counter process code (Jiri Olsa) [1305882]
-- [tools] perf stat: Move zero_per_pkg into counter process code (Jiri Olsa) [1305882]
-- [tools] perf stat: Separate counters reading and processing (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce read_counters function (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_evsel__read function (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_evsel__alloc_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Move perf_evlist__(alloc|free|reset)_stats into stat object (Jiri Olsa) [1305882]
-- [tools] perf stat: Move perf_evsel__(alloc|free)_prev_raw_counts into stat object (Jiri Olsa) [1305882]
-- [tools] perf stat: Move perf_evsel__(alloc|free|reset)_stat_priv into stat object (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_evlist__reset_stats (Jiri Olsa) [1305882]
-- [tools] perf stat: Rename struct perf_counts::cpu member to values (Jiri Olsa) [1305882]
-- [tools] perf stat: Make stats work over the thread dimension (Jiri Olsa) [1305882]
-- [tools] perf stat: Use xyarray for cpu evsel counts (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_counts function (Jiri Olsa) [1305882]
-- [tools] perf tests: Add thread_map object tests (Jiri Olsa) [1305882]
-- [tools] perf thrad_map: Add comm string into array (Jiri Olsa) [1305882]
-- [tools] perf thread_map: Introduce thread_map__reset function (Jiri Olsa) [1305882]
-- [tools] perf trace: Validate syscall list passed via -e argument (Jiri Olsa) [1305882]
-- [tools] perf tools: Make perf_evsel__(nr_)cpus generic (Jiri Olsa) [1305882]
-- [tools] perf evlist: Propagate thread maps through the evlist (Jiri Olsa) [1305882]
-- [tools] perf evlist: Propagate cpu maps to evsels in an evlist (Jiri Olsa) [1305882]
-- [tools] perf tools: Add reference counting for thread_map object (Jiri Olsa) [1305882]
-- [tools] perf tools: Add reference counting for cpu_map object (Jiri Olsa) [1305882]
-- [tools] perf header: Delete an unnecessary check before the calling free_event_desc() (Jiri Olsa) [1305882]
-- [tools] perf tools: Future-proof thread_map allocation size calculation (Jiri Olsa) [1305882]
-- [tools] perf tools: Allow auxtrace data alignment (Jiri Olsa) [1305882]
-- [tools] perf thread_map: Change map entries into a struct (Jiri Olsa) [1305882]
-- [tools] perf thread_map: Don't access the array entries directly (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix failure to probe events on arm (Jiri Olsa) [1305882]
-- [tools] perf tools: Print a newline before dumping Aggregated stats (Jiri Olsa) [1305882]
-- [tools] perf session: Print a newline when dumping PERF_RECORD_FINISHED_ROUND (Jiri Olsa) [1305882]
-- [tools] perf tools: Allow events with dot (Jiri Olsa) [1305882]
-- [tools] perf pmu: Split perf_pmu__new_alias() (Jiri Olsa) [1305882]
-- [tools] perf pmu: Use __weak definition from <linux/compiler.h> (Jiri Olsa) [1305882]
-- [tools] perf build: Fix single target build dependency check (Jiri Olsa) [1305882]
-- [tools] perf tests: Add test for make install with prefix (Jiri Olsa) [1305882]
-- [tools] perf tests: Add testing for Makefile.perf (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix build breakage if prefix= is specified (Jiri Olsa) [1305882]
-- [tools] perf top: Move toggling event logic into hists browser (Jiri Olsa) [1305882]
-- [tools] perf tools: Configurable per thread proc map processing time out (Jiri Olsa) [1305882]
-- [tools] perf tools: Add time out to force stop proc map processing (Jiri Olsa) [1305882]
-- [tools] perf report: Fix sort__sym_cmp to also compare end of symbol (Jiri Olsa) [1305882]
-- [tools] perf hists browser: React to unassigned hotkey pressing (Jiri Olsa) [1305882]
-- [tools] perf top: Tell the user how to unfreeze events after pressing 'f' (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Honour the help line provided by builtin-{top, report}.c (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Do not exit when 'f' is pressed in 'report' mode (Jiri Olsa) [1305882]
-- [tools] perf top: Replace CTRL+z with 'f' as hotkey for enable/disable events (Jiri Olsa) [1305882]
-- [tools] perf annotate: Rename source_line_percent to source_line_samples (Jiri Olsa) [1305882]
-- [tools] perf annotate: Display total number of samples with --show-total-period (Jiri Olsa) [1305882]
-- [tools] perf tools: Ensure thread-stack is flushed (Jiri Olsa) [1305882]
-- [tools] perf top: Allow disabling/enabling events dynamicly (Jiri Olsa) [1305882]
-- [tools] perf evlist: Add toggle_enable() method (Jiri Olsa) [1305882]
-- [tools] perf probe: Speed up perf probe --list by caching debuginfo (Jiri Olsa) [1305882]
-- [tools] perf probe: Show usage even if the last event is skipped (Jiri Olsa) [1305882]
-- [tools] perf tools: Move libtraceevent dynamic list to separated LDFLAGS variable (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix a problem when opening old perf.data with different byte order (Jiri Olsa) [1305882]
-- [tools] perf tools: Ignore .config-detected in .gitignore (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix to return error if no probe is added (Jiri Olsa) [1305882]
-- [tools] perf unwind: Fix a compile error (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_counts__(new|delete|reset) functions (Jiri Olsa) [1305882]
-- [tools] perf tools: Move perf_evsel__(alloc|free|reset)_counts into stat object (Jiri Olsa) [1305882]
-- [tools] perf tools: Add thread_map__(alloc|realloc) helpers (Jiri Olsa) [1305882]
-- [tools] perf tools: Introduce xyarray__reset function (Jiri Olsa) [1305882]
-- [tools] perf probe: List probes in stdout (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Fix python/perf.so compiling error (Jiri Olsa) [1305882]
-- [tools] perf tools: Replace map->referenced & maps->removed_maps with map->refcnt (Jiri Olsa) [1305882]
-- [tools] perf probe: Cut off the gcc optimization postfixes from function name (Jiri Olsa) [1305882]
-- [tools] perf tools: Update MANIFEST per files removed from kernel (Jiri Olsa) [1305882]
-- [tools] trace: Beautify perf_event_open syscall (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix build failure on 32-bit arch (Jiri Olsa) [1305882]
-- [tools] perf stat: Error out unsupported group leader immediately (Jiri Olsa) [1305882]
-- [tools] perf evsel: Display 0x for hex values when printing the attribute (Jiri Olsa) [1305882]
-- [tools] perf record: Amend option summaries (Jiri Olsa) [1305882]
-- [tools] perf tools: Avoid possible race condition in copyfile() (Jiri Olsa) [1305882]
-- [tools] perf tools: Reference count struct dso (Jiri Olsa) [1305882]
-- [tools] perf tools: Protect accesses the dso rbtrees/lists with a rw lock (Jiri Olsa) [1305882]
-- [tools] perf machine: Fix up some more method names (Jiri Olsa) [1305882]
-- [tools] perf record: Fix perf.data size in no-buildid mode (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Ignore libtrace-dynamic-list file (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Export dynamic symbols used by traceevent plugins (Jiri Olsa) [1305882]
-- [tools] perf stat: Move shadow stat counters into separate object (Jiri Olsa) [1305882]
-- [tools] perf stat: Add aggr_mode argument to print_shadow_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Add output file argument to print_shadow_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce print_shadow_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce reset_shadow_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Remove transaction_run from shadow update/print code (Jiri Olsa) [1305882]
-- [tools] perf stat: Remove setup_events function (Jiri Olsa) [1305882]
-- [tools] perf stat: Replace transaction event possition check with id check (Jiri Olsa) [1305882]
-- [tools] perf stat: Add id into perf_stat struct (Jiri Olsa) [1305882]
-- [tools] perf tools: handle PERF_RECORD_LOST_SAMPLES (Jiri Olsa) [1305882]
-- [tools] perf record: Add support for sampling indirect jumps (Jiri Olsa) [1305882]
-- [tools] perf tools: Deal with kernel module names in '[]' correctly (Jiri Olsa) [1305882]
-- [tools] Move tools/perf/util/include/linux/{list.h, poison.h} to tools/include (Jiri Olsa) [1305882]
-- [tools] perf tools: Move linux/kernel.h to tools/include (Jiri Olsa) [1305882]
-- [tools] perf machine: Fix the search for the kernel DSO on the unified list (Jiri Olsa) [1305882]
-- [tools] perf tools: Remove newline char when reading event scale and unit (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix segfault when glob matching function without debuginfo (Jiri Olsa) [1305882]
-- [tools] perf tools: Make Ctrl-C stop processing on TUI (Jiri Olsa) [1305882]
-- [tools] perf build: Do not fail on missing Build file (Jiri Olsa) [1305882]
-- [tools] perf machine: Fix up vdso methods names (Jiri Olsa) [1305882]
-- [tools] perf machine: Introduce machine__findnew_dso() method (Jiri Olsa) [1305882]
-- [tools] perf machine: No need to have two DSOs lists (Jiri Olsa) [1305882]
-- [tools] perf machine: Adopt findnew_kernel method (Jiri Olsa) [1305882]
-- [tools] perf tests: Remove getpgrp from mmap-basic (Jiri Olsa) [1305882]
-- [tools] perf tests: Aename open*.c to openat*.c (Jiri Olsa) [1305882]
-- [tools] perf tests: Switch from open to openat (Jiri Olsa) [1305882]
-- [tools] perf tools: Add ARM64 perf_regs_load to support libunwind and enable testing (Jiri Olsa) [1305882]
-- [tools] perf kmem: Fix compiler warning about may be accessing uninitialized variable (Jiri Olsa) [1305882]
-- [tools] perf db-export: Fix thread ref-counting (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix 'function unused' warning (Jiri Olsa) [1305882]
-- [tools] perf annotate: Fix -i option, which is currently ignored (Jiri Olsa) [1305882]
-- [tools] perf tools: Move branch option parsing to own file (Jiri Olsa) [1305882]
-- [tools] perf annotation: Add symbol__get_annotation (Jiri Olsa) [1305882]
-- [tools] perf tools: Reference count struct map (Jiri Olsa) [1305882]
-- [tools] perf tools: Check if a map is still in use when deleting it (Jiri Olsa) [1305882]
-- [tools] perf tools: Protect accesses the map rbtrees with a rw lock (Jiri Olsa) [1305882]
-- [tools] perf tools: Introduce struct maps (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix an error when deleting probes successfully (Jiri Olsa) [1305882]
-- [tools] perf probe: Show the error reason comes from invalid DSO (Jiri Olsa) [1305882]
-- [tools] perf tools: Disallow PMU events intel_pt and intel_bts until there is support (Jiri Olsa) [1305882]
-- [tools] perf sched: Add option to merge like comms to lat output (Jiri Olsa) [1305882]
-- [tools] perf tools: Improve setting of gcc debug option (Jiri Olsa) [1305882]
-- [tools] perf tools: Assign default value for some pointers (Jiri Olsa) [1305882]
-- [tools] perf tools: Use maps__first()/map__next() (Jiri Olsa) [1305882]
-- [tools] perf tools: Leave DSO destruction to the map destruction (Jiri Olsa) [1305882]
-- [tools] perf machine: Mark removed threads as such (Jiri Olsa) [1305882]
-- [tools] perf tools: Import rb_erase_init from block/ in the kernel sources (Jiri Olsa) [1305882]
-- [tools] perf tools: Nuke unused map_groups__flush() (Jiri Olsa) [1305882]
-- [tools] perf tools: Remove redundant initialization of thread linkage members (Jiri Olsa) [1305882]
-- [tools] perf tools: Rename maps__next (Jiri Olsa) [1305882]
-- [tools] perf tools: Add dso__data_get/put_fd() (Jiri Olsa) [1305882]
-- [tools] perf tools: Get rid of dso__data_fd() from dso__data_size() (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix dso__data_read_offset() file opening (Jiri Olsa) [1305882]
-- [tools] perf machine: Do not call map_groups__delete(), drop refcnt instead (Jiri Olsa) [1305882]
-- [tools] perf comm: Use atomic.h for refcounting (Jiri Olsa) [1305882]
-- [tools] perf hists: Rename add_hist_entry to hists__findnew_entry (Jiri Olsa) [1305882]
-- [tools] perf hists: Reducing arguments of hist_entry_iter__add() (Jiri Olsa) [1305882]
-- [tools] perf session: Fix perf_session__peek_event() (Jiri Olsa) [1305882]
-- [tools] perf build: Fix libunwind feature detection on 32-bit x86 (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix parse_events_error dereferences (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix function declarations needed by parse-events.y (Jiri Olsa) [1305882]
-- [tools] perf tools: Separate the tests and tools in installation (Jiri Olsa) [1305882]
-- [tools] perf bench numa: Share sched_getcpu() __weak def with cloexec.c (Jiri Olsa) [1305882]
-- [tools] build: Change FEATURE_TESTS and FEATURE_DISPLAY to weak binding (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Install libtraceevent.a into libdir (Jiri Olsa) [1305882]
-- [tools] perf tools: Set vmlinux_path__nr_entries to 0 in vmlinux_path__exit (Jiri Olsa) [1305882]
-- [tools] perf tools: Protect dso cache fd with a mutex (Jiri Olsa) [1305882]
-- [tools] perf symbols: Protect dso cache tree using dso->lock (Jiri Olsa) [1305882]
-- [tools] perf symbols: Protect dso symbol loading using a mutex (Jiri Olsa) [1305882]
-- [tools] perf tools: Introduce copyfile_offset() function (Jiri Olsa) [1305882]
-- [tools] perf tools: Add rm_rf() utility function (Jiri Olsa) [1305882]
-- [tools] perf tools: Elliminate alignment holes (Jiri Olsa) [1305882]
-- [tools] include: add __aligned_u64 to types.h (Jiri Olsa) [1305882]
-- [tools] perf probe: Load map before glob matching (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix dwarf-aux.c compilation on i386 (Jiri Olsa) [1305882]
-- [tools] perf cgroup: Use atomic.h for refcounting (Jiri Olsa) [1305882]
-- [tools] perf evlist: Use atomic.h for the perf_mmap refcount (Jiri Olsa) [1305882]
-- [tools] perf machine: Stop accessing atomic_t::counter directly (Jiri Olsa) [1305882]
-- [tools] perf tools: Use atomic.h for the map_groups refcount (Jiri Olsa) [1305882]
-- [tools] perf tools: Make flex/bison calls honour V=1 (Jiri Olsa) [1305882]
-- [tools] perf trace: Fix the build on older distros (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Provide le16toh define for older systems (Jiri Olsa) [1305882]
-- [tools] perf report: Fix some option handling on --stdio (Jiri Olsa) [1305882]
-- [tools] perf tests: Fix map_groups refcount test (Jiri Olsa) [1305882]
-- [tools] perf machine: No need to keep a refcnt for last_match (Jiri Olsa) [1305882]
-- [tools] perf tests: Show refcounting broken expectations in thread-mg-share test (Jiri Olsa) [1305882]
-- [tools] perf report: Do not restrict -T option by other options (Jiri Olsa) [1305882]
-- [tools] perf tests: Fix to get negative exit codes (Jiri Olsa) [1305882]
-- [tools] perf probe: Show better error message when failed to find variable (Jiri Olsa) [1305882]
-- [tools] perf probe: Add --range option to show a variable's location range (Jiri Olsa) [1305882]
-- [tools] perf probe: Remove length limitation for showing available variables (Jiri Olsa) [1305882]
-- [tools] perf trace: Removed duplicated NULL test (Jiri Olsa) [1305882]
-- [tools] perf report: Force tty output if -T/--thread option is given (Jiri Olsa) [1305882]
-- [tools] perf tools: Document relation of per-thread event count feature (Jiri Olsa) [1305882]
-- [tools] perf kmem: Fix compiler warning about may be accessing uninitialized variable (Jiri Olsa) [1305882]
-- [tools] perf build: Disable libdw DWARF unwind when built with NO_DWARF (Jiri Olsa) [1305882]
-- [tools] perf probe: Support glob wildcards for function name (Jiri Olsa) [1305882]
-- [tools] perf probe: Add --no-inlines option to avoid searching inline functions (Jiri Olsa) [1305882]
-- [tools] perf probe: Introduce probe_conf global configs (Jiri Olsa) [1305882]
-- [tools] perf probe: Use perf_probe_event.target instead of passing as an argument (Jiri Olsa) [1305882]
-- [tools] perf bench futex: Handle spurious wakeups (Jiri Olsa) [1305882]
-- [tools] perf bench futex: Support parallel waker threads (Jiri Olsa) [1305882]
-- [tools] perf machine: Protect the machine->threads with a rwlock (Jiri Olsa) [1305882]
-- [tools] perf tools: Use atomic_t to implement thread__{get, put} refcnt (Jiri Olsa) [1305882]
-- [tools] include: Add basic atomic.h implementation from the kernel sources (Jiri Olsa) [1305882]
-- [tools] perf tools: Move generic barriers out of perf-sys.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move tile barrier.h stuff to tools/arch/tile/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move mips barrier.h stuff to tools/arch/mips/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move xtensa barrier.h stuff to tools/arch/xtensa/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move arm(64) barrier.h stuff to tools/arch/arm*/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move ia64 barrier.h stuff to tools/arch/ia64/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move alpha barrier.h stuff to tools/arch/alpha/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move sparc barrier.h stuff to tools/arch/sparc/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move sh barrier.h stuff to tools/arch/sh/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] Adopt asm-generic/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move barrier() definition to tools/include/linux/compiler.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move s390 barrier.h stuff to tools/arch/s390/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move powerpc barrier.h stuff to tools/arch/powerpc/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move x86 barrier.h stuff to tools/arch/x86/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf probe: Support $params special probe argument (Jiri Olsa) [1305882]
-- [tools] perf probe: Skip kernel symbols which is out of .text (Jiri Olsa) [1305882]
-- [tools] perf probe: Make --line checks validate C-style function name (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix to return 0 when positive value returned (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix a typo for the flags of open (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix to close probe_events file in error (Jiri Olsa) [1305882]
-- [tools] perf tools: Move TUI-specific fields out of map_symbol (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Simplify zooming code using pstack_peek() (Jiri Olsa) [1305882]
-- [tools] perf tools: Introduce pstack_peek() (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Split popup menu actions - part 2 (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Split popup menu actions (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Save perf_session_env in the hist_browser (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Save pstack in the hist_browser (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Save hist_browser_timer pointer in hist_browser (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Fix possible memory leak (Jiri Olsa) [1305882]
-- [tools] perf tools: Move init_have_children field to the unnamed union (Jiri Olsa) [1305882]
-- [tools] perf tools: Move TUI-specific fields into unnamed union (Jiri Olsa) [1305882]
-- [tools] perf kmem: Show warning when trying to run stat without record (Jiri Olsa) [1305882]
-- [tools] perf probe: Cleanup and consolidate command parsers (Jiri Olsa) [1305882]
-- [tools] perf probe: Remove redundant cleanup of params.filter (Jiri Olsa) [1305882]
-- [tools] perf probe: Accept filter argument for --funcs (Jiri Olsa) [1305882]
-- [tools] perf probe: Allow to use filter on --del command (Jiri Olsa) [1305882]
-- [tools] perf record: Add AUX area tracing Snapshot Mode support (Jiri Olsa) [1305882]
-- [tools] perf tools: Add AUX area tracing Snapshot Mode (Jiri Olsa) [1305882]
-- [tools] perf tools: Add support for PERF_RECORD_ITRACE_START (Jiri Olsa) [1305882]
-- [tools] perf tools: Add support for PERF_RECORD_AUX (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add option to synthesize events for transactions (Jiri Olsa) [1305882]
-- [tools] perf tools: Add build option NO_AUXTRACE to exclude AUX area tracing (Jiri Olsa) [1305882]
-- [tools] perf tools: Hit all build ids when AUX area tracing (Jiri Olsa) [1305882]
-- [tools] perf tools: Add AUX area tracing index (Jiri Olsa) [1305882]
-- [tools] perf report: Fix placement of itrace option in documentation (Jiri Olsa) [1305882]
-- [tools] perf kmem: Add kmem.default config option (Jiri Olsa) [1305882]
-- [tools] perf kmem: Print gfp flags in human readable string (Jiri Olsa) [1305882]
-- [tools] perf kmem: Add --live option for current allocation stat (Jiri Olsa) [1305882]
-- [tools] perf kmem: Support sort keys on page analysis (Jiri Olsa) [1305882]
-- [tools] perf kmem: Implement stat --page --caller (Jiri Olsa) [1305882]
-- [tools] perf probe: Accept filter argument for --list (Jiri Olsa) [1305882]
-- [tools] perf probe: Accept multiple filter options (Jiri Olsa) [1305882]
-- [tools] perf tools: Add strfilter__string to recover rules string (Jiri Olsa) [1305882]
-- [tools] perf tools: Improve strfilter to append additional rules (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix bison-related build failure on CentOS 6 (Jiri Olsa) [1305882]
-- [tools] perf report: Add Instruction Tracing support (Jiri Olsa) [1305882]
-- [tools] perf script: Always allow fields 'addr' and 'cpu' for auxtrace (Jiri Olsa) [1305882]
-- [tools] perf evlist: Amend mmap ref counting for the AUX area mmap (Jiri Olsa) [1305882]
-- [tools] perf symbols: Warn on build id mismatch (Jiri Olsa) [1305882]
-- [tools] perf: Document --children option in more detail (Jiri Olsa) [1305882]
-- [tools] perf stat: Add metrics support for exclude_idle (Jiri Olsa) [1305882]
-- [tools] perf stat: Add metrics support for exclude_(host|guest) (Jiri Olsa) [1305882]
-- [tools] perf stat: Add metrics support for exclude_hv (Jiri Olsa) [1305882]
-- [tools] perf stat: Change metrics context calculation (Jiri Olsa) [1305882]
-- [tools] perf stat: Fix metrics calculation with event qualifiers (Jiri Olsa) [1305882]
-- [tools] perf trace: Clarify that -e is about syscalls, not perf events in general (Jiri Olsa) [1305882]
-- [tools] perf trace: Fix --filter-pids OPTION description (Jiri Olsa) [1305882]
-- [tools] perf probe: Remove all probes matches given pattern at once (Jiri Olsa) [1305882]
-- [tools] perf probe: Make --funcs option exclusive (Jiri Olsa) [1305882]
-- [tools] perf tools: Add symbolic events support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add tracepoint support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add static terms support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add term support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add location to pmu event terms (Jiri Olsa) [1305882]
-- [tools] perf tools: Change parse_events_add_pmu interface (Jiri Olsa) [1305882]
-- [tools] perf tools: Always bail out when config_attr function fails (Jiri Olsa) [1305882]
-- [tools] perf tools: Add flex support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add parse_events_error interface (Jiri Olsa) [1305882]
-- [tools] perf tools: Add aux_watermark member of struct perf_event_attr (Jiri Olsa) [1305882]
-- [tools] perf script: Add field option 'flags' to print sample flags (Jiri Olsa) [1305882]
-- [tools] perf inject: Add Instruction Tracing support (Jiri Olsa) [1305882]
-- [tools] perf inject: Re-pipe AUX area tracing events (Jiri Olsa) [1305882]
-- [tools] perf script: Add Instruction Tracing support (Jiri Olsa) [1305882]
-- [tools] perf tools: Add member to struct dso for an instruction cache (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add a hashtable for caching (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add processing for AUX area tracing events (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add a heap for sorting AUX area tracing queues (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add helpers for queuing AUX area tracing data (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add helpers for AUX area tracing errors (Jiri Olsa) [1305882]
-- [tools] perf session: Add instruction tracing options (Jiri Olsa) [1305882]
-- [tools] perf session: Add hooks to allow transparent decoding of AUX area tracing data (Jiri Olsa) [1305882]
-- [tools] perf tools: Add a user event for AUX area tracing errors (Jiri Olsa) [1305882]
-- [tools] perf record: Extend -m option for AUX area tracing mmap pages (Jiri Olsa) [1305882]
-- [tools] perf record: Add basic AUX area tracing support (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add support for AUX area recording (Jiri Olsa) [1305882]
-- [tools] perf tools: Add user events for AUX area tracing (Jiri Olsa) [1305882]
-- [tools] perf evlist: Add support for mmapping an AUX area buffer (Jiri Olsa) [1305882]
-- [tools] perf header: Add AUX area tracing feature (Jiri Olsa) [1305882]
-- [tools] perf data: Fix signedness of value (Jiri Olsa) [1305882]
-- [tools] perf data: Fix duplicate field names and avoid reserved keywords (Jiri Olsa) [1305882]
-- [tools] perf data: Add support for setting ordered_events queue size (Jiri Olsa) [1305882]
-- [tools] perf data: Enable stream flush within processing (Jiri Olsa) [1305882]
-- [tools] perf data: Switch to multiple cpu stream files (Jiri Olsa) [1305882]
-- [tools] perf tests: Add build tests for building perf from kernel source root and tools (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Add alias field to struct format_field (Jiri Olsa) [1305882]
-- [tools] perf data: Show error message when conversion failed (Jiri Olsa) [1305882]
-- [tools] perf diff: Make hist_entry_diff fields union (Jiri Olsa) [1305882]
-- [tools] perf hists: Get rid of position field from struct hist_entry (Jiri Olsa) [1305882]
-- [tools] perf tools: Use getconf to determine number of online CPUs (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Fix memory leak on hot-plug allocation fail (Jiri Olsa) [1305882]
-- [kernel] perf: Fix PERF_EVENT_IOC_PERIOD migration race (Jiri Olsa) [1305882]
-- [kernel] perf: Fix double-free of the AUX buffer (Jiri Olsa) [1305882]
-- [kernel] perf: Fix fasync handling on inherited events (Jiri Olsa) [1305882]
-- [kernel] perf: Fix running time accounting (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel/cqm: Return cached counter value from IRQ context (Jiri Olsa) [1305882]
-- [kernel] perf: Fix AUX buffer refcounting (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel/pebs: Add PEBSv3 decoding (Jiri Olsa) [1305882]
-- [kernel] perf/x86/intel: Introduce PERF_RECORD_LOST_SAMPLES (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Drain the PEBS buffer during context switches (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Implement batched PEBS interrupt handling (large PEBS interrupt threshold) (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Handle multiple records in the PEBS buffer (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Introduce setup_pebs_sample_data() (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Use the PEBS auto reload mechanism when possible (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: add support for PERF_SAMPLE_BRANCH_IND_JUMP (Jiri Olsa) [1305882]
-- [include] perf: add new PERF_SAMPLE_BRANCH_IND_JUMP branch sample type (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Simplify put_exclusive_constraints() (Jiri Olsa) [1305882]
-- [x86] perf/x86: Simplify the x86_schedule_events() logic (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Remove intel_excl_states::init_state (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Remove pointless tests (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Clean up intel_commit_scheduling() placement (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Make WARN()ings consistent (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Simplify the dynamic constraint code somewhat (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Add lockdep assert (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Correct local vs remote sibling state (Jiri Olsa) [1305882]
-- [x86] revert "perf/x86/intel/uncore: Move uncore_box_init() out of driver initialization" (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel/uncore: Fix CBOX bit wide and UBOX reg on Haswell-EP (Jiri Olsa) [1305882]
-- [x86] perf/x86/rapl: Enable Broadwell-U RAPL support (Jiri Olsa) [1305882]
-- [kernel] perf: Annotate inherited event ctx->mutex recursion (Jiri Olsa) [1305882]
-
-* Mon Mar 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-359.el7]
-- [scsi] storvsc: use storage protocol version to determine storage capabilities (Cathy Avery) [1287037]
-- [scsi] storvsc: use correct defaults for values determined by protocol negotiation (Cathy Avery) [1287037]
-- [scsi] storvsc: Untangle the storage protocol negotiation from the vmbus protocol negotiation (Cathy Avery) [1287037]
-- [scsi] storvsc: Use a single value to track protocol versions (Cathy Avery) [1287037]
-- [scsi] storvsc: Rather than look for sets of specific protocol versions, make decisions based on ranges (Cathy Avery) [1287037]
-- [hv] balloon: Enable dynamic memory protocol negotiation with Windows 10 hosts (Cathy Avery) [1287037]
-- [hv] vmbus: Update preferred vmbus protocol version to windows 10 (Cathy Avery) [1287037]
-- [hv] vmbus: Use get_cpu() to get the current CPU (Cathy Avery) [1287037]
-- [net] fix behaviour of unreachable, blackhole and prohibit routes (Xin Long) [1270662]
-- [net] route: check and remove route cache when we get route (Xin Long) [1296260]
-- [net] ipv4: use next hop exceptions also for input routes (Xin Long) [1296260]
-- [net] tcp, dccp: warn user for preferred ip_local_port_range (Florian Westphal) [1305525]
-- [net] tcp, dccp: try to not exhaust ip_local_port_range in connect() (Florian Westphal) [1305525]
-- [net] tcp: improve REUSEADDR/NOREUSEADDR cohabitation (Florian Westphal) [1305525]
-- [net] sctp: translate network order to host order when users get a hmacid (Xin Long) [1303823]
-- [net] fix __copy_skb_header() (Paolo Abeni) [1298447]
-- [net] don't wait for order-3 page allocation (Sabrina Dubroca) [1284940]
-- [net] fix skb_page_frag_refill() kerneldoc (Sabrina Dubroca) [1284940]
-- [net] attempt a single high order allocation (Sabrina Dubroca) [1284940]
-- [net] use __GFP_NORETRY for high order allocations (Sabrina Dubroca) [1284940]
-- [net] allow > 0 order atomic page alloc in skb_page_frag_refill (Sabrina Dubroca) [1284940]
-- [net] refactor sk_page_frag_refill() (Sabrina Dubroca) [1284940]
-- [net] add pfmemalloc check in sk_add_backlog() (Sabrina Dubroca) [1285944]
-- [net] af_unix: passcred support for sendpage (Hannes Frederic Sowa) [1282574]
-- [net] af_unix: take receive queue lock while appending new skb (Hannes Frederic Sowa) [1282574]
-- [net] af_unix: don't append consumed skbs to sk_receive_queue (Hannes Frederic Sowa) [1282574]
-- [net] af_unix: fix use-after-free with concurrent readers while splicing (Hannes Frederic Sowa) [1282574]
-- [net] bridge: Fix network header pointer for vlan tagged packets (Vlad Yasevich) [1282536]
-- [net] Allow modules to use is_skb_forwardable (Vlad Yasevich) [1282536]
-- [net] netfilter: bridge: Use __in6_dev_get rather than in6_dev_get in br_validate_ipv6 (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: fix NULL deref in physin/out ifindex helpers (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: avoid unused label warning (Paolo Abeni) [1265259]
-- [net] bridge: Cache net in br_nf_pre_routing_finish (Paolo Abeni) [1265259]
-- [net] bridge: Pass net into br_nf_push_frag_xmit (Paolo Abeni) [1265259]
-- [net] bridge: Pass net into br_nf_ip_fragment (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: fix routing of bridge frames with call-iptables=1 (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: do not initialize statics to 0 or NULL (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: reduce nf_bridge_info to 32 bytes again (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: don't leak skb in error paths (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: fix CONFIG_NF_DEFRAG_IPV4/6 related warnings/errors (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: split ipv6 code into separated file (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: rename br_netfilter.c to br_netfilter_hooks.c (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: restore vlan tag when refragmenting (Paolo Abeni) [1265259]
-- [net] ip_fragment: remove BRIDGE_NETFILTER mtu special handling (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: forward IPv6 fragmented packets (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: re-order check_hbh_len() (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: rename br_parse_ip_options (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: refactor frag_max_size (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: detect NAT66 correctly and change MAC address (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: re-order br_nf_pre_routing_finish_ipv6() (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: refactor clearing BRNF_NF_BRIDGE_PREROUTING (Paolo Abeni) [1265259]
-- [net] netfilter: ebtables: fix comment grammar (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: free nf_bridge info on xmit (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: neigh_head and physoutdev can't be used at same time (Paolo Abeni) [1265259]
-- [net] revert "netfilter: bridge: query conntrack about skb dnat" (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: make BRNF_PKT_TYPE flag a bool (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: start splitting mask into public/private chunks (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: add and use nf_bridge_info_get helper (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: add helpers for fetching physin/outdev (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: don't use nf_bridge_info data to store mac header (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: really save frag_max_size between PRE and POST_ROUTING (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: kill nf_bridge_pad (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: remove BRNF_STATE_BRIDGED flag (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: query conntrack about skb dnat (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: use rcu hook to resolve br_netfilter dependency (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: move DNAT helper to br_netfilter (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: refactor conditional in br_nf_dev_queue_xmit (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: move nf_bridge_update_protocol to where its used (Paolo Abeni) [1265259]
-- [net] bridge: move mac header copying into br_netfilter (Paolo Abeni) [1265259]
-- [net] bridge: netfilter: Move sysctl-specific error code inside #ifdef (Paolo Abeni) [1265259]
-- [net] netfilter: nf_tables_bridge: set the pktinfo for IPv4/IPv6 traffic (Paolo Abeni) [1265259]
-- [net] netfilter: nf_tables_bridge: export nft_reject_ip*hdr_validate functions (Paolo Abeni) [1265259]
-- [net] netfilter: fix various sparse warnings (Paolo Abeni) [1265259]
-- [net] netfilter: nf_tables_bridge: update hook_mask to allow {pre, post}routing (Paolo Abeni) [1265259]
-- [net] bridge: Do not compile options in br_parse_ip_options (Paolo Abeni) [1265259]
-- [net] bridge: Save frag_max_size between PRE_ROUTING and POST_ROUTING (Paolo Abeni) [1265259]
-- [net] netfilter: explicit module dependency between br_netfilter and physdev (Paolo Abeni) [1265259]
-- [net] netfilter: use IS_ENABLED(CONFIG_BRIDGE_NETFILTER) (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: build br_nf_core only if required (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: move br_netfilter out of the core (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: nf_bridge_copy_header as static inline in header (Paolo Abeni) [1265259]
-- [net] netfilter: ebtables: create audit records for replaces (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: add generic packet logger (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: fix Kconfig unmet dependencies (Paolo Abeni) [1265259]
-- [net] bridge: superfluous skb->nfct check in br_nf_dev_queue_xmit (Paolo Abeni) [1265259]
-- [net] bridge: netfilter: Use ether_addr_copy (Paolo Abeni) [1265259]
-- [net] bridge: change the position of '{' to the pre line (Paolo Abeni) [1265259]
-- [net] netfilter: ebt_ip6: fix source and destination matching (Paolo Abeni) [1265259]
-- [net] bridge: netfilter: orphan skb before invoking ip netfilter hooks (Paolo Abeni) [1265259]
-- [net] bridge: netfilter: using strlcpy() instead of strncpy() (Paolo Abeni) [1265259]
-- [s390] kernel: inadvertent free of the vector register save area (Hendrik Brueckner) [1310706]
-- [misc] mei: remove artificial singleton requirement (Prarit Bhargava) [1313268]
-- [cpufreq] intel_pstate: decrease number of "HWP enabled" messages (David Arcari) [1310927]
-- [cpufreq] intel_pstate: enable HWP per CPU (David Arcari) [1310927]
-
-* Fri Mar 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-358.el7]
-- [scsi] Revert libiscsi: Reduce locking contention in fast path (Chris Leech) [1297876]
-- [scsi] add support for multiple hardware queues (Ewan Milne) [1308703]
-- [scsi] mpt3sas: Fix for Asynchronous completion of timedout IO and task abort of timedout IO (Tomas Henzl) [1259907]
-- [scsi] scsi_error: should not get sense for timeout IO in scsi error handler (Tomas Henzl) [1259907]
-- [scsi] bnx2fc: Remove explicit logouts (Maurizio Lombardi) [1303027]
-- [fs] ovl: check dentry positiveness in ovl_cleanup_whiteouts() (Vivek Goyal) [1306358]
-- [fs] ovl: setattr: check permissions before copy-up (Vivek Goyal) [1306358]
-- [fs] ovl: root: copy attr (Vivek Goyal) [1306358]
-- [fs] ovl: get rid of the dead code left from broken (and disabled) optimizations (Vivek Goyal) [1306358]
-- [fs] ovl: fix permission checking for setattr (Vivek Goyal) [1306358]
-- [fs] ovl: move super block magic number to magic.h (Vivek Goyal) [1306358]
-- [fs] ovl: use a minimal buffer in ovl_copy_xattr (Vivek Goyal) [1306358]
-- [fs] ovl: allow zero size xattr (Vivek Goyal) [1306358]
-- [fs] ovl: default permissions (Vivek Goyal) [1306358]
-- [fs] ovl: free lower_mnt array in ovl_put_super (Vivek Goyal) [1306358]
-- [fs] ovl: free stack of paths in ovl_fill_super (Vivek Goyal) [1306358]
-- [fs] ovl: fix open in stacked overlay (Vivek Goyal) [1306358]
-- [fs] ovl: use O_LARGEFILE in ovl_copy_up() (Vivek Goyal) [1262256 1306358]
-- [fs] create and use seq_show_option for escaping (Vivek Goyal) [1306358]
-- [fs] fix a braino in ovl_d_select_inode() (Vivek Goyal) [1306358]
-- [fs] overlayfs: Make f_path always point to the overlay and f_inode to the underlay (Vivek Goyal) [1306358]
-- [fs] overlay: Call ovl_drop_write() earlier in ovl_dentry_open() (Vivek Goyal) [1306358]
-- [fs] Replace a bunch of file->dentry->d_inode refs with file_inode() (Vivek Goyal) [1306358]
-- [fs] procfs: fix error handling of proc_register() (Carlos Maiolino) [1210350]
-- [fs] proc: use rb_entry_safe() instead of rb_entry() (Carlos Maiolino) [1210350]
-- [fs] proc: use a rb tree for the directory entries (Carlos Maiolino) [1210350]
-- [fs] xfs: Split default quota limits by quota type (Eric Sandeen) [1297477]
-- [fs] quota: Fixup comments about return value of Q_[X]GETNEXTQUOTA (Eric Sandeen) [1305967]
-- [fs] xfs: wire up Q_XGETNEXTQUOTA / get_nextdqblk (Eric Sandeen) [1305967]
-- [fs] xfs: Factor xfs_seek_hole_data into helper (Eric Sandeen) [1305967]
-- [fs] xfs: get quota inode from mp & flags rather than dqp (Eric Sandeen) [1305967]
-- [fs] xfs: don't overflow quota ID when initializing dqblk (Eric Sandeen) [1305967]
-- [fs] quota: add new quotactl Q_GETNEXTQUOTA (Eric Sandeen) [1305967]
-- [fs] quota: add new quotactl Q_XGETNEXTQUOTA (Eric Sandeen) [1305967]
-- [fs] quota: remove unused cmd argument from quota_quotaon() (Eric Sandeen) [1305967]
-- [fs] gfs2: Reduce size of incore inode (Robert S Peterson) [1240663]
-- [fs] gfs2: Make rgrp reservations part of the gfs2_inode structure (Robert S Peterson) [1240663]
-- [fs] gfs2: Extract quota data from reservations structure (revert 5407e24) (Robert S Peterson) [1240663]
-- [fs] gfs2: Clean up reservation removal (Robert S Peterson) [1240663]
-- [fs] ceph: make fsync() wait unsafe requests that created/modified inode (Zheng Yan) [1291193]
-- [fs] ceph: add request to i_unsafe_dirops when getting unsafe reply (Zheng Yan) [1291193]
-- [fs] ceph: don't invalidate page cache when inode is no longer used (Zheng Yan) [1291193]
-- [fs] ceph: fix message length computation (Zheng Yan) [1291193]
-- [fs] ceph: improve readahead for file holes (Zheng Yan) [1291193]
-- [fs] ceph: get inode size for each append write (Zheng Yan) [1291193]
-- [fs] ceph: cleanup use of ceph_msg_get (Zheng Yan) [1291193]
-- [fs] ceph: no need to get parent inode in ceph_open (Zheng Yan) [1291193]
-- [fs] ceph: remove the useless judgement (Zheng Yan) [1291193]
-- [fs] ceph: remove redundant test of head->safe and silence static analysis warnings (Zheng Yan) [1291193]
-- [fs] ceph: fix queuing inode to mdsdir's snaprealm (Zheng Yan) [1291193]
-- [fs] ceph: invalidate dirty pages after forced umount (Zheng Yan) [1291193]
-- [fs] ceph: EIO all operations after forced umount (Zheng Yan) [1291193]
-- [fs] ceph: always re-send cap flushes when MDS recovers (Zheng Yan) [1291193]
-- [fs] ceph: fix ceph_writepages_start() (Zheng Yan) [1291193]
-- [fs] ceph: switch some GFP_NOFS memory allocation to GFP_KERNEL (Zheng Yan) [1291193]
-- [fs] ceph: pre-allocate data structure that tracks caps flushing (Zheng Yan) [1291193]
-- [fs] ceph: re-send flushing caps (which are revoked) in reconnect stage (Zheng Yan) [1291193]
-- [fs] ceph: send TID of the oldest pending caps flush to MDS (Zheng Yan) [1291193]
-- [fs] ceph: track pending caps flushing globally (Zheng Yan) [1291193]
-- [fs] ceph: track pending caps flushing accurately (Zheng Yan) [1291193]
-- [fs] ceph: fix directory fsync (Zheng Yan) [1291193]
-- [fs] ceph: fix flushing caps (Zheng Yan) [1291193]
-- [fs] ceph: don't include used caps in cap_wanted (Zheng Yan) [1291193]
-- [fs] ceph: ratelimit warn messages for MDS closes session (Zheng Yan) [1291193]
-- [fs] ceph: simplify two mount_timeout sites (Zheng Yan) [1291193]
-- [fs] libceph: store timeouts in jiffies, verify user input (Zheng Yan) [1291193]
-- [fs] ceph: exclude setfilelock requests when calculating oldest tid (Zheng Yan) [1291193]
-- [fs] ceph: don't pre-allocate space for cap release messages (Zheng Yan) [1291193]
-- [fs] ceph: make sure syncfs flushes all cap snaps (Zheng Yan) [1291193]
-- [fs] ceph: don't trim auth cap when there are cap snaps (Zheng Yan) [1291193]
-- [fs] ceph: take snap_rwsem when accessing snap realm's cached_context (Zheng Yan) [1291193]
-- [fs] ceph: avoid sending unnessesary FLUSHSNAP message (Zheng Yan) [1291193]
-- [fs] ceph: set i_head_snapc when getting CEPH_CAP_FILE_WR reference (Zheng Yan) [1291193]
-- [fs] ceph: use empty snap context for uninline_data and get_pool_perm (Zheng Yan) [1291193]
-- [fs] ceph: check OSD caps before read/write (Zheng Yan) [1291193]
-- [fs] libceph: allow setting osd_req_op's flags (Zheng Yan) [1291193]
-
-* Thu Mar 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-357.el7]
-- [powerpc] mm: tracking vDSO remap (Adrian Reber) [1274399]
-- [mm] new arch_remap() hook (Adrian Reber) [1274399]
-- [mm] new mm hook framework (Adrian Reber) [1274399]
-- [powerpc] Enable sys_kcmp() for CRIU (Adrian Reber) [1274399]
-- [powerpc] pci: Remove unused force_32bit_msi quirk (Oded Gabbay) [1274362]
-- [powerpc] pseries: Honor the generic "no_64bit_msi" flag (Oded Gabbay) [1274362]
-- [powerpc] powernv: Honor the generic "no_64bit_msi" flag (Oded Gabbay) [1274362]
-- [powerpc] powernv: Reserve PE#0 on NPU (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Change NPU PE# assignment (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Fix update of NVLink DMA mask (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Add support for Nvlink NPUs (Gustavo Duarte) [1275657]
-- [powerpc] Add __raw_rm_writeq() function (Gustavo Duarte) [1275657]
-- [powerpc] pci: Add shutdown hook to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pasemi: Only the build the pasemi MSI code for PASEMI=y (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Move dma_set_mask() from pnv_phb to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pci: add dma_set_mask to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Specialise pci_controller_ops for each controller type (Gustavo Duarte) [1275657]
-- [powerpc] Remove MSI-related PCI controller ops from ppc_md (Gustavo Duarte) [1275657]
-- [powerpc] mpic_u3msi: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] ppc4xx_msi: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] fsl_msi: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pseries: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] cell: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] Add MSI operations to pci_controller_ops struct (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Fix early pci_controller_ops loading (Gustavo Duarte) [1275657]
-- [powerpc] dart_iommu: Remove check for controller_ops == NULL case (Gustavo Duarte) [1275657]
-- [powerpc] Remove shims for pci_controller_ops operations (Gustavo Duarte) [1275657]
-- [powerpc] cell: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] fsl_pci, swiotlb: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] maple: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pasemi: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pseries: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] powermac: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] dart_iommu: optionally populate controller_ops on init (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.reset_secondary_bus and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.window_alignment and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.enable_device_hook and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.probe_mode and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.dma_bus_setup and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.dma_dev_setup and shim (Gustavo Duarte) [1275657]
-- [powerpc] pcibios_enable_device_hook: return bool rather than int (Gustavo Duarte) [1275657]
-- [powerpc] powermac: move pmac_pci_probe_mode from setup.c to pci.c (Gustavo Duarte) [1275657]
-- [powerpc] move find_and_init_phbs() to pSeries specific code (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Remove pnv_pci_probe_mode() (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Initialize M64 PE in time (Gustavo Duarte) [1275657]
-- [include] device: Add dev_<level>_once variants (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Override dma_get_required_mask() (Gustavo Duarte) [1275657]
-- [powerpc] pci/msi/ppc: Remove arch_msi_check_device() (Gustavo Duarte) [1274362 1275657]
-- [powerpc] powernv: Update dev->dma_mask in pci_set_dma_mask() path (Gustavo Duarte) [1275657]
-- [powerpc] Add PVR for POWER8NVL processor (Gustavo Duarte) [1275657]
-
-* Tue Mar 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-356.el7]
-- [netdrv] Driver for IBM System i/p VNIC protocol (Gustavo Duarte) [947163]
-- [hwmon] Disable F71868 and F81866 (Eric Sandeen) [1310888]
-- [hwmon] Add support for f81768d (Eric Sandeen) [1310888]
-- [hwmon] Add support for F81866 and F71868 (Eric Sandeen) [1310888]
-- [watchdog] hpwdt: HP rebranding (Nigel Croxon) [1274435]
-- [misc] hpilo: Change e-mail address from hp.com to hpe.com (Nigel Croxon) [1274436]
-- [misc] hpilo: Add min and max value of module parameter in description (Nigel Croxon) [1274436]
-- [char] ipmi: Remove unnecessary pci_disable_device (Tony Camuso) [1274306]
-- [char] ipmi: Drop owner assignment from i2c_driver (Tony Camuso) [1274306]
-- [char] ipmi: constify some struct and char arrays (Tony Camuso) [1274306]
-- [char] ipmi: move timer init to before irq is setup (Tony Camuso) [1274306]
-- [char] ipmi: watchdog: add panic_wdt_timeout parameter (Tony Camuso) [1274306]
-- [char] ipmi: Move MODULE_DEVICE_TABLE() to follow struct (Tony Camuso) [1274306]
-- [char] ipmi: Stop the timer immediately if idle (Tony Camuso) [1274306]
-- [char] ipmi: Start the timer and thread on internal msgs (Tony Camuso) [1274306]
-- [char] ipmi: ipmi_ssif: Replace timeval with timespec64 (Tony Camuso) [1274306]
-- [char] ipmi: ssif: Add a module parm to specify that SMBus alerts don't work (Tony Camuso) [1274306]
-- [char] ipmi: add of_device_id in MODULE_DEVICE_TABLE (Tony Camuso) [1274306]
-- [char] ipmi: Compensate for BMCs that wont set the irq enable bit (Tony Camuso) [1274306]
-- [char] ipmi: Don't call receive handler in the panic context (Tony Camuso) [1274306]
-- [char] ipmi: Avoid touching possible corrupted lists in the panic context (Tony Camuso) [1274306]
-- [char] ipmi: Don't flush messages in sender() in run-to-completion mode (Tony Camuso) [1274306]
-- [char] ipmi: Factor out message flushing procedure (Tony Camuso) [1274306]
-- [char] ipmi: Remove unneeded set_run_to_completion call (Tony Camuso) [1274306]
-- [char] ipmi: Make some data const that was only read (Tony Camuso) [1274306]
-- [char] ipmi: constify SSIF ACPI device ids (Tony Camuso) [1274306]
-- [char] ipmi: Delete an unnecessary check before the function call "cleanup_one_si" (Tony Camuso) [1274306]
-- [char] ipmi: Change 1 to true for bool type variables during initialization (Tony Camuso) [1274306]
-- [char] impi: Remove unneeded setting of module owner to THIS_MODULE in the platform structure, powernv_ipmi_driver (Tony Camuso) [1274306]
-- [char] ipmi: Add a comment in how messages are delivered from the lower layer (Tony Camuso) [1274306]
-- [char] ipmi: Convert the IPMI SI ACPI handling to a platform device (Tony Camuso) [1274306]
-- [char] ipmi: put acpi.h with the other headers (Tony Camuso) [1274306]
-- [s390] vtime: correct scaled cputime of partially idle CPUs (Hendrik Brueckner) [1308883]
-- [s390] vtime: correct scaled cputime for SMT (Hendrik Brueckner) [1308883]
-- [s390] vtime: limit MT scaling value updates (Hendrik Brueckner) [1308883]
-- [s390] dasd: prevent incorrect length error under z/VM after PAV changes (Hendrik Brueckner) [1310825]
-- [s390] qeth: initialize net_device with carrier off (Hendrik Brueckner) [1310824]
-- [s390] dasd: fix failfast for disconnected devices (Hendrik Brueckner) [1309251]
-- [s390] cio: update measurement characteristics (Hendrik Brueckner) [1310822]
-- [s390] cio: ensure consistent measurement state (Hendrik Brueckner) [1310822]
-- [s390] cio: fix measurement characteristics memleak (Hendrik Brueckner) [1310822]
-- [s390] stacktrace: add save_stack_trace_regs() (Pratyush Anand) [1297488]
-- [s390] stacktrace: save full stack traces (Pratyush Anand) [1297488]
-- [s390] stacktrace: add missing end marker (Pratyush Anand) [1297488]
-- [s390] stacktrace: fix address ranges for asynchronous and panic stack (Pratyush Anand) [1297488]
-- [s390] stacktrace: fix save_stack_trace_tsk() for current task (Pratyush Anand) [1297488]
-- [x86] perf: Fix 'active_events' imbalance (Jiri Olsa) [1312571]
-- [tty] Add support for PCIe WCH382 2S multi-IO card (Jeremy McNicoll) [1309575]
-- [tty] Add support for the WCH384 4S multi-IO card (Jeremy McNicoll) [1309575]
-- [tty] parport: Add support for the WCH382 2S/1P multi-IO card (Jeremy McNicoll) [1309575]
-
-* Mon Feb 29 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-355.el7]
-- [ib] mlx5: Fix RC transport send queue overhead computation (Don Dutile) [1293336]
-- [hv] vmbus: restore hv_synic_clockevents_cleanup() call in hv_kexec_handler() (Vitaly Kuznetsov) [1202375]
-- [hv] vmbus: Teardown clockevent devices on module unload (Vitaly Kuznetsov) [1202375]
-- [hv] vmbus: Implement a clockevent device (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: export clockevents_unbind_device instead of clockevents_unbind (Vitaly Kuznetsov) [1202375]
-- [kernel] tick-common: Fix wrong check in tick_check_replacement() (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: Implement unbind functionality (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: Provide sysfs interface (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: Move the tick_notify() switch case to clockevents_notify() (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: Simplify locking (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Let clocksource_unregister() return success/error (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Provide unbind interface in sysfs (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Split out user string input (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Allow clocksource select to skip current clocksource (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Add module refcount (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Let timekeeping_notify return success/error (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Always verify highres capability (Vitaly Kuznetsov) [1202375]
-- [netdrv] cdc_ncm: update specs URL (John Linville) [1260556]
-- [include] cdc_ncm: Add support for moving NDP to end of NCM frame (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: allow tuning min_tx_pkt (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: export NCM Transfer Block (NTB) parameters (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: drop ethtool coalesce support (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: use sysfs for rx/tx aggregation tuning (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: inform usbnet when rx buffers are reduced (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: always reallocate tx_curr_skb when tx_max increases (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: reduce skb truesize in rx path (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: fix typo in test for supported formats (John Linville) [1260556]
-- [include] net: cdc_ncm: fix 64bit division build error (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: do not start timer on an empty skb (John Linville) [1260556]
-- [include] net: cdc_ncm: remove redundant "disconnected" flag (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: fix argument alignment (John Linville) [1260556]
-- [include] net: cdc_ncm: use sane defaults for rx/tx buffers (John Linville) [1260556]
-- [include] net: cdc_ncm/cdc_mbim: adding NCM protocol statistics (John Linville) [1260556]
-- [include] net: cdc_ncm: set reasonable padding limits (John Linville) [1260556]
-- [include] net: cdc_ncm: use true max dgram count for header estimates (John Linville) [1260556]
-- [include] net: cdc_ncm: use ethtool to tune coalescing settings (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: support rx_max/tx_max updates when running (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: split .bind device initialization (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: factor out one-time device initialization (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: split out rx_max/tx_max update of setup (John Linville) [1260556]
-- [include] net: cdc_ncm/cdc_mbim: rework probing of NCM/MBIM functions (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: reject IP packets on DSS VLANs (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: optionally use VLAN ID 4094 for IP session 0 (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: handle unaccelerated VLAN tagged frames (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: __vlan_find_dev_deep need rcu_read_lock (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: fix buffer overflow (John Linville) [1260556]
-- [include] net: cdc_ncm: respect operator preferred MTU reported by MBIM (John Linville) [1260556]
-- [include] usb: cdc: add MBIM extended functional descriptor structure (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: cleanup a type issue in cdc_ncm_setup() (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: fixup error return value (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: no need to check for resume if suspend exists (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: manage_power should always set needs_remote_wakeup (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: no not set tx_max higher than the device supports (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: improve bind error debug messages (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: return proper error if setup fails (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: refactoring cdc_ncm_setup (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: endian convert constants instead of variables (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: log signatures in hex (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: use netif_* and dev_* instead of pr_* (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: log the length we warn about (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: set correct dev->hard_mtu (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: remove ethtool ops (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: remove probe and disconnect wrappers (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: no point in filling up the NTBs if we send ZLPs (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: only the control intf can be probed (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: fix SET_MAX_DATAGRAM_SIZE (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: change the default to send ZLPs (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: handle IPv6 Neigbor Solicitations (John Linville) [1260556]
-
-* Mon Feb 29 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-354.el7]
-- [fs] xfs: fix xfs_log_ticket leak in xfs_end_io() after fs shutdown (Brian Foster) [1298684]
-- [fs] xfs: clean up unwritten buffers on write failure (Brian Foster) [1298684]
-- [fs] xfs: fix endianness error when checking log block crc on big endian platforms (Brian Foster) [1298684]
-- [fs] xfs: log mount failures don't wait for buffers to be released (Brian Foster) [1298684]
-- [fs] revert "xfs: clear PF_NOFREEZE for xfsaild kthread" (Brian Foster) [1298684]
-- [fs] xfs: handle dquot buffer readahead in log recovery correctly (Brian Foster) [1234586 1298684]
-- [fs] xfs: inode recovery readahead can race with inode buffer creation (Brian Foster) [1234586 1298684]
-- [fs] xfs: eliminate committed arg from xfs_bmap_finish (Brian Foster) [1298684]
-- [fs] xfs: bmapbt checking on debug kernels too expensive (Brian Foster) [1298684]
-- [fs] xfs: add tracepoints to readpage calls (Brian Foster) [1298684]
-- [fs] xfs: debug mode log record crc error injection (Brian Foster) [1298684]
-- [fs] xfs: detect and trim torn writes during log recovery (Brian Foster) [1298684]
-- [fs] xfs: Use a signed return type for suffix_kstrtoint() (Brian Foster) [1298684]
-- [fs] libxfs: refactor short btree block verification (Brian Foster) [1298684]
-- [fs] libxfs: pack the agfl header structure so XFS_AGFL_SIZE is correct (Brian Foster) [1298684]
-- [fs] libxfs: use a convenience variable instead of open-coding the fork (Brian Foster) [1298684]
-- [fs] xfs: fix log ticket type printing (Brian Foster) [1298684]
-- [fs] libxfs: make xfs_alloc_fix_freelist non-static (Brian Foster) [1298684]
-- [fs] xfs: make xfs_buf_ioend_async() static (Brian Foster) [1298684]
-- [fs] xfs: send warning of project quota to userspace via netlink (Brian Foster) [1298684]
-- [fs] xfs: get mp from bma->ip in xfs_bmap code (Brian Foster) [1298684]
-- [fs] xfs: print name of verifier if it fails (Brian Foster) [1298684]
-- [fs] libxfs: Optimize the loop for xfs_bitmap_empty (Brian Foster) [1298684]
-- [fs] xfs: refactor log record start detection into a new helper (Brian Foster) [1298684]
-- [fs] xfs: support a crc verification only log record pass (Brian Foster) [1298684]
-- [fs] xfs: return start block of first bad log record during recovery (Brian Foster) [1298684]
-- [fs] xfs: refactor and open code log record crc check (Brian Foster) [1298684]
-- [fs] xfs: refactor log record unpack and data processing (Brian Foster) [1298684]
-- [fs] xfs: detect and handle invalid iclog size set by mkfs (Brian Foster) [1298684]
-- [fs] xfs: give all workqueues rescuer threads (Brian Foster) [1298684]
-- [fs] xfs: fix log recovery op header validation assert (Brian Foster) [1298684]
-- [fs] xfs: Fix error path in xfs_get_acl (Brian Foster) [1298684]
-- [fs] xfs: optimise away log forces on timestamp updates for fdatasync (Brian Foster) [1298684]
-- [fs] xfs: don't leak uuid table on rmmod (Brian Foster) [1298684]
-- [fs] xfs: invalidate cached acl if set via ioctl (Brian Foster) [1298684]
-- [fs] xfs: Plug memory leak in xfs_attrmulti_attr_set (Brian Foster) [1298684]
-- [fs] xfs: Validate the length of on-disk ACLs (Brian Foster) [1298684]
-- [fs] xfs: invalidate cached acl if set directly via xattr (Brian Foster) [1298684]
-- [fs] xfs: clear PF_NOFREEZE for xfsaild kthread (Brian Foster) [1298684]
-- [fs] xfs: simplify /proc teardown & error handling (Brian Foster) [1298684]
-- [fs] xfs: more info from kmem deadlocks and high-level error msgs (Brian Foster) [1298684]
-- [fs] xfs: avoid null *src in memcpy call in xlog_write (Brian Foster) [1298684]
-- [fs] xfs: pass total block res. as total xfs_bmapi_write() parameter (Brian Foster) [1298684]
-- [fs] xfs: avoid dependency on Linux XATTR_SIZE_MAX (Brian Foster) [1298684]
-- [fs] xfs: prefix XATTR_LIST_MAX with XFS_ (Brian Foster) [1298684]
-- [fs] libxfs: fix two comment typos (Brian Foster) [1298684]
-- [fs] xfs: validate metadata LSNs against log on v5 superblocks (Brian Foster) [1298684]
-- [fs] xfs: Print name and pid when memory allocation loops (Brian Foster) [1298684]
-- [fs] xfs: log local to remote symlink conversions correctly on v5 supers (Brian Foster) [1298684]
-- [fs] xfs: add missing ilock around dio write last extent alignment (Brian Foster) [1298684]
-- [fs] cancel the setfilesize transation when io error happen (Brian Foster) [1298684]
-- [fs] xfs: fix error gotos in xfs_setattr_nonsize (Brian Foster) [1298684]
-- [fs] libxfs: bad magic number should set da block buffer error (Brian Foster) [1298684]
-- [fs] xfs: fix non-debug build warnings (Brian Foster) [1298684]
-- [fs] xfs: collapse allocsize and biosize mount option handling (Brian Foster) [1298684]
-- [fs] xfs: Fix file type directory corruption for btree directories (Brian Foster) [1298684]
-- [fs] xfs: lockdep annotations throw warnings on non-debug builds (Brian Foster) [1298684]
-- [fs] xfs: Fix uninitialized return value in xfs_alloc_fix_freelist() (Brian Foster) [1298684]
-- [fs] xfs: inode lockdep annotations broke non-lockdep build (Brian Foster) [1298684]
-- [fs] xfs: Fix xfs_attr_leafblock definition (Brian Foster) [1298684]
-- [fs] libxfs: readahead of dir3 data blocks should use the read verifier (Brian Foster) [1298684]
-- [fs] xfs: stop holding ILOCK over filldir callbacks (Brian Foster) [1298684]
-- [fs] xfs: clean up inode lockdep annotations (Brian Foster) [1298684]
-- [fs] xfs: swap leaf buffer into path struct atomically during path shift (Brian Foster) [1298684]
-- [fs] xfs: relocate sparse inode mount warning (Brian Foster) [1298684]
-- [fs] xfs: dquots should be stamped with sb_meta_uuid (Brian Foster) [1298684]
-- [fs] xfs: log recovery needs to validate against sb_meta_uuid (Brian Foster) [1298684]
-- [fs] xfs: growfs not aware of sb_meta_uuid (Brian Foster) [1298684]
-- [fs] xfs: fix sb_meta_uuid usage (Brian Foster) [1298684]
-- [fs] xfs: set XFS_DA_OP_OKNOENT in xfs_attr_get (Brian Foster) [1298684]
-- [fs] xfs: add missing bmap cancel calls in error paths (Brian Foster) [1297875 1298684]
-- [fs] xfs: add helper to conditionally remove items from the AIL (Brian Foster) [1297875 1298684]
-- [fs] xfs: fix btree cursor error cleanups (Brian Foster) [1297875 1298684]
-- [fs] xfs: clean up root inode properly on mount failure (Brian Foster) [1297875 1298684]
-- [fs] xfs: fix broken icreate log item cancellation (Brian Foster) [1297875 1298684]
-- [fs] xfs: icreate log item recovery and cancellation tracepoints (Brian Foster) [1297875 1298684]
-- [fs] xfs: don't leave EFIs on AIL on mount failure (Brian Foster) [1297875 1298684]
-- [fs] xfs: use EFI refcount consistently in log recovery (Brian Foster) [1297875 1298684]
-- [fs] xfs: ensure EFD trans aborts on log recovery extent free failure (Brian Foster) [1297875 1298684]
-- [fs] xfs: fix efi/efd error handling to avoid fs shutdown hangs (Brian Foster) [1297875 1298684]
-- [fs] xfs: return committed status from xfs_trans_roll() (Brian Foster) [1297875 1298684]
-- [fs] xfs: disentagle EFI release from the extent count (Brian Foster) [1297875 1298684]
-- [fs] xfs: create new metadata UUID field and incompat flag (Brian Foster) [1298684]
-- [fs] libxfs: add xfs_bit.c (Brian Foster) [1298684]
-- [fs] xfs: Remove duplicate jumps to the same label (Brian Foster) [1298684]
-- [fs] xfs: Use consistent logging message prefixes (Brian Foster) [1298684]
-- [fs] xfs: xfs_bunmapi() does not need XFS_BMAPI_METADATA flag (Brian Foster) [1298684]
-- [fs] xfs: remote attributes need to be considered data (Brian Foster) [1298684]
-- [fs] xfs: remote attribute headers contain an invalid LSN (Brian Foster) [1298684]
-- [fs] xfs: Correctly lock inode when removing suid and file capabilities (Brian Foster) [1298684]
-- [fs] xfs: clean up XFS_MIN_FREELIST macros (Brian Foster) [1298684]
-- [fs] xfs: sanitise error handling in xfs_alloc_fix_freelist (Brian Foster) [1298684]
-- [fs] xfs: factor out free space extent length check (Brian Foster) [1298684]
-- [fs] xfs: xfs_alloc_fix_freelist() can use incore perag structures (Brian Foster) [1298684]
-- [fs] xfs: remove xfs_caddr_t (Brian Foster) [1298684]
-- [fs] xfs: use void pointers in log validation helpers (Brian Foster) [1298684]
-- [fs] xfs: return a void pointer from xfs_buf_offset (Brian Foster) [1298684]
-- [fs] xfs: remove inst_t (Brian Foster) [1298684]
-- [fs] xfs: remove __psint_t and __psunsigned_t (Brian Foster) [1298684]
-- [fs] xfs: fix remote symlinks on V5/CRC filesystems (Brian Foster) [1298684]
-- [fs] xfs: fix xfs_log_done interface (Brian Foster) [1298684]
-- [fs] xfs: saner xfs_trans_commit interface (Brian Foster) [1298684]
-- [fs] xfs: remove the flags argument to xfs_trans_cancel (Brian Foster) [1298684]
-- [fs] xfs: pass a boolean flag to xfs_trans_free_items (Brian Foster) [1298684]
-- [fs] xfs: switch remaining xfs_trans_dup users to xfs_trans_roll (Brian Foster) [1298684]
-- [fs] xfs: check min blks for random debug mode sparse allocations (Brian Foster) [1298684]
-- [fs] xfs: fix sparse inodes 32-bit compile failure (Brian Foster) [1298684]
-- [fs] xfs: mmap lock needs to be inside freeze protection (Brian Foster) [1298684]
-- [fs] xfs: Clean up xfs_trans_dup_dqinfo (Brian Foster) [1298684]
-- [fs] xfs: don't cast string literals (Brian Foster) [1298684]
-- [fs] xfs: enable sparse inode chunks for v5 superblocks (Brian Foster) [1298684]
-- [fs] xfs: skip unallocated regions of inode chunks in xfs_ifree_cluster() (Brian Foster) [1298684]
-- [fs] xfs: only free allocated regions of inode chunks (Brian Foster) [1298684]
-- [fs] xfs: filter out sparse regions from individual inode allocation (Brian Foster) [1298684]
-- [fs] xfs: randomly do sparse inode allocations in DEBUG mode (Brian Foster) [1298684]
-- [fs] xfs: allocate sparse inode chunks on full chunk allocation failure (Brian Foster) [1298684]
-- [fs] xfs: helper to convert holemask to inode alloc. bitmap (Brian Foster) [1298684]
-- [fs] xfs: handle sparse inode chunks in icreate log recovery (Brian Foster) [1298684]
-- [fs] xfs: pass inode count through ordered icreate log item (Brian Foster) [1298684]
-- [fs] xfs: use actual inode count for sparse records in bulkstat/inumbers (Brian Foster) [1298684]
-- [fs] xfs: introduce inode record hole mask for sparse inode chunks (Brian Foster) [1298684]
-- [fs] xfs: add fs geometry bit for sparse inode chunks (Brian Foster) [1298684]
-- [fs] xfs: sparse inode chunks feature helpers and mount requirements (Brian Foster) [1298684]
-- [fs] xfs: use sparse chunk alignment for min. inode allocation requirement (Brian Foster) [1298684]
-- [fs] xfs: add sparse inode chunk alignment superblock field (Brian Foster) [1298684]
-- [fs] xfs: support min/max agbno args in block allocator (Brian Foster) [1298684]
-- [fs] xfs: update free inode record logic to support sparse inode records (Brian Foster) [1298684]
-- [fs] xfs: create individual inode alloc. helper (Brian Foster) [1298684]
-- [fs] xfs: DIO writes within EOF don't need an ioend (Brian Foster) [1305118]
-- [fs] xfs: handle DIO overwrite EOF update completion correctly (Brian Foster) [1305118]
-- [fs] xfs: DIO needs an ioend for writes (Brian Foster) [1305118]
-- [fs] xfs: move DIO mapping size calculation (Brian Foster) [1305118]
-- [fs] xfs: factor DIO write mapping from get_blocks (Brian Foster) [1305118]
-- [fs] xfs: don't allocate an ioend for direct I/O completions (Brian Foster) [1305118]
-- [fs] direct-io: only inc/dec inode->i_dio_count for file systems (Brian Foster) [1305118]
-- [fs] direct-io: Handle O_(D)SYNC AIO (Brian Foster) [1305118]
-- [fs] direct-io: Implement generic deferred AIO completions (Brian Foster) [1305118]
-- [fs] revert 'direct-io: only inc_dec inode->i_dio_count for file systems' (Brian Foster) [1305118]
-
-* Fri Feb 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-353.el7]
-- [misc] mei: bus: set the device name before running fixup (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: use correct lock ordering (Jeremy McNicoll) [1273503]
-- [misc] mei: Fix debugfs filename in error output (Jeremy McNicoll) [1273503]
-- [misc] mei: amthif: Do not compare bool to 0/1 (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: fix c&p issue in the kdoc (Jeremy McNicoll) [1273503]
-- [misc] mei: fix the KDoc formating (Jeremy McNicoll) [1273503]
-- [misc] mei: keep the device awake during reads in chunks (Jeremy McNicoll) [1273503]
-- [misc] mei: cancel driver workers only after client devices were removed (Jeremy McNicoll) [1273503]
-- [misc] mei: me: fix d0i3 register offset in tracing (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: use mei_cl_bus_ prefix consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: use mei_cldev_ prefix for the API functions (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: export mei_cldev_enabled function (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: export uuid and protocol version to mei_cl bus drivers (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add client protocol version to the device alias (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: export client protocol version (Jeremy McNicoll) [1273503]
-- [scripts] mei: make modules.alias UUID information easier to read (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: fix error in state check logic (Jeremy McNicoll) [1273503]
-- [misc] mei: fix debugfs files leak on error path (Jeremy McNicoll) [1273503]
-- [watchdog] mei: Fix parent of watchdog_device (Jeremy McNicoll) [1273503]
-- [misc] mei: remove check on pm_runtime_active in __mei_cl_disconnect (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: bump supported HBM version to 2.0 (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add sunrise point device ids (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: exit d0i3 on driver start and enter it on stop (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: move mei_me_hw_reset down in the file (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: add d0i3 enter/exit state machine (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: reorganize the power gating responses (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: enable d0i3 interrupts (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: add flag to indicate D0i3 support (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: add the control registers (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: add new error code MEI_CL_CONN_NOT_ALLOWED (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add and call callback on notify event (Jeremy McNicoll) [1273503]
-- [misc] mei: implement fasync for event notification (Jeremy McNicoll) [1273503]
-- [misc] mei: support polling for event notification (Jeremy McNicoll) [1273503]
-- [misc] mei: add async event notification ioctls (Jeremy McNicoll) [1273503]
-- [misc] mei: add a handler that waits for notification on event (Jeremy McNicoll) [1273503]
-- [misc] mei: add mei_cl_notify_request command (Jeremy McNicoll) [1273503]
-- [misc] mei: enable async event notifications only from hbm version 2.0 (Jeremy McNicoll) [1273503]
-- [misc] mei: implement async notification hbm messages (Jeremy McNicoll) [1273503]
-- [misc] mei: define async notification hbm commands (Jeremy McNicoll) [1273503]
-- [misc] mei: disconnect on connection request timeout (Jeremy McNicoll) [1273503]
-- [misc] mei: support for dynamic clients (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: link client devices instead of host clients (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: simplify how we build nfc bus name (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: blacklist clients by number of connections (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: blacklist the nfc info client (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: enable running fixup routines before device registration (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add me client device list infrastructure (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add reference to bus device in struct mei_cl_client (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: revamp probe and remove functions (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: revamp device matching (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: report if event registration failed (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: don't enable events implicitly in device enable (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: rename uevent handler to mei_cl_device_uevent (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: move driver api functions at the start of the file (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: rename nfc.c to bus-fixup.c (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: fix drivers and devices names confusion (Jeremy McNicoll) [1273503]
-- [misc] mei: do not access freed cb in blocking write (Jeremy McNicoll) [1273503]
-- [misc] mei: prevent unloading mei hw modules while the device is opened (Jeremy McNicoll) [1273503]
-- [misc] mei: nfc: fix deadlock on shutdown/suspend path (Jeremy McNicoll) [1273503]
-- [misc] mei: me: wait for power gating exit confirmation (Jeremy McNicoll) [1273503]
-- [misc] mei: reset flow control on the last client disconnection (Jeremy McNicoll) [1273503]
-- [misc] mei: fix up uuid matching (Jeremy McNicoll) [1273503]
-- [misc] mei: export hbm features to debugfs under devstate (Jeremy McNicoll) [1273503]
-- [include] mei: export mei client device struct to external use (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: kill mei_cl_ops (Jeremy McNicoll) [1273503]
-- [nfc] mei_phy: move all nfc logic from mei driver to nfc (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add name and uuid into device attributes (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: report also uuid in module alias (Jeremy McNicoll) [1273503]
-- [misc] mei: add also write waiting list to runtime pm blockers (Jeremy McNicoll) [1273503]
-- [misc] mei: request autosuspend at the end of write (Jeremy McNicoll) [1273503]
-- [misc] mei: consume flow control on the first chunk of writing (Jeremy McNicoll) [1273503]
-- [misc] mei: debug prints with client info in read (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: fix incorrect indentation (Jeremy McNicoll) [1273503]
-- [misc] mei: drop iamthif_mtu from device structure (Jeremy McNicoll) [1273503]
-- [misc] mei: connection to fixed address clients from user-space (Jeremy McNicoll) [1273503]
-- [misc] mei: support for fixed address clients (Jeremy McNicoll) [1273503]
-- [misc] mei: fix flow control for single buffer clients (Jeremy McNicoll) [1273503]
-- [misc] mei: add a reference from the host client to the me client (Jeremy McNicoll) [1273503]
-- [misc] mei: revamp client connection (Jeremy McNicoll) [1273503]
-- [misc] mei: revamp client disconnection flow (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: reduce suspend/resume time (Jeremy McNicoll) [1273503]
-- [misc] mei: trace: remove unused TRACE_SYSTEM_STRING (Jeremy McNicoll) [1273503]
-- [misc] mei: replace check for connection instead of transitioning (Jeremy McNicoll) [1273503]
-- [misc] mei: use mei_cl_is_connected consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: fix mei_poll operation (Jeremy McNicoll) [1273503]
-- [misc] mei: fix regression on NFC connection (Jeremy McNicoll) [1273503]
-- [misc] mei: trace: fix missing include to linux/device.h (Jeremy McNicoll) [1273503]
-- [misc] mei: free me client references on host init (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: call device disable handler prior to disconnection (Jeremy McNicoll) [1273503]
-- [misc] mei: allow read concurrency (Jeremy McNicoll) [1273503]
-- [misc] mei: simplify io callback disposal (Jeremy McNicoll) [1273503]
-- [misc] mei: add mei_cl_alloc_linked function (Jeremy McNicoll) [1273503]
-- [misc] mei: always initialize the callback with the intended operation type (Jeremy McNicoll) [1273503]
-- [misc] mei: use only one buffer in callback (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: use regular client read functions (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: use client write functions (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: send flow control as a regular client (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: remove useless iamthif_ioctl variable (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: fix device reset on mei_amthif_irq_read_msg (Jeremy McNicoll) [1273503]
-- [misc] mei: fix device reset on mei_cl_irq_read_msg allocation failure (Jeremy McNicoll) [1273503]
-- [misc] mei: fix function names and format in KDoc (Jeremy McNicoll) [1273503]
-- [misc] mei: me: change power gating function name conventions (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add io register tracing (Jeremy McNicoll) [1273503]
-- [misc] mei: me: use io register wrappers consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: revamp me clients list handling (Jeremy McNicoll) [1273503]
-- [misc] mei: me: release hw from reset only during the reset flow (Jeremy McNicoll) [1273503]
-- [misc] mei: mask interrupt set bit on clean reset bit (Jeremy McNicoll) [1273503]
-- [misc] mei: add reference counting for me clients (Jeremy McNicoll) [1273503]
-- [misc] mei: use uuid, me_addr tuple addressing also for flow control credits (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: use ssize_t as the return type for send and receive (Jeremy McNicoll) [1273503]
-- [misc] mei: clean reset bit before reset (Jeremy McNicoll) [1273503]
-- [misc] mei: export fw status registers through sysfs (Jeremy McNicoll) [1273503]
-- [misc] mei: read and print all six FW status registers (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: add cherrytrail device id (Jeremy McNicoll) [1273503]
-- [misc] mei: kill cached host and me csr values (Jeremy McNicoll) [1273503]
-- [misc] mei: fix hbm MEI_HBM_STARTED ambiguity (Jeremy McNicoll) [1273503]
-- [misc] mei: nfc: clean nfc internal struct on host exit (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: use client specific print functions (Jeremy McNicoll) [1273503]
-- [misc] mei: debugfs: display also connectionless clients (Jeremy McNicoll) [1273503]
-- [misc] mei: use local cl variables in wd and amthif (Jeremy McNicoll) [1273503]
-- [misc] mei: drop unneeded client NULL check in cb structure (Jeremy McNicoll) [1273503]
-- [misc] mei: Replace CONFIG_PM_RUNTIME with CONFIG_PM (Jeremy McNicoll) [1273503]
-- [misc] mei: mei_txe_fw_sts can be static (Jeremy McNicoll) [1273503]
-- [misc] mei: fix kernel-doc warnings (Jeremy McNicoll) [1273503]
-- [misc] mei: fix KDoc documentation formatting (Jeremy McNicoll) [1273503]
-- [misc] mei: drop me_client_presentation_num (Jeremy McNicoll) [1273503]
-- [misc] mei: trivial: fix errors in prints in comments (Jeremy McNicoll) [1273503]
-- [misc] mei: remove include to pci header from mei module files (Jeremy McNicoll) [1273503]
-- [misc] mei: push pci cfg structure me hw (Jeremy McNicoll) [1273503]
-- [misc] mei: remove the reference to pdev from mei_device (Jeremy McNicoll) [1273503]
-- [misc] mei: move fw_status back to hw ops handlers (Jeremy McNicoll) [1273503]
-- [misc] mei: get rid of most of the pci dependencies in mei (Jeremy McNicoll) [1273503]
-- [misc] mei: push all standard settings into mei_device_init (Jeremy McNicoll) [1273503]
-- [misc] mei: move mei_hbm_hdr function from hbm.h the hbm.c (Jeremy McNicoll) [1273503]
-- [misc] mei: kill error message for allocation failure (Jeremy McNicoll) [1273503]
-- [misc] mei: nfc: fix style warning (Jeremy McNicoll) [1273503]
-- [misc] mei: fix style warning: Missing a blank line after declarations (Jeremy McNicoll) [1273503]
-- [misc] mei: pg: fix cat and paste error in comments (Jeremy McNicoll) [1273503]
-- [misc] mei: debugfs: add single buffer indicator (Jeremy McNicoll) [1273503]
-- [misc] mei: debugfs: adjust print buffer (Jeremy McNicoll) [1273503]
-- [misc] mei: add hbm and pg state in devstate debugfs print (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: fix possible boundaries violation (Jeremy McNicoll) [1273503]
-- [misc] mei: use connect_data on the stack (Jeremy McNicoll) [1273503]
-- [misc] mei: enable adding more IOCTL handlers (Jeremy McNicoll) [1273503]
-- [misc] mei: extract supported features from the hbm version (Jeremy McNicoll) [1273503]
-- [misc] mei: simplify handling of hbm client events (Jeremy McNicoll) [1273503]
-- [misc] mei: wait for hbm start non-interruptible (Jeremy McNicoll) [1273503]
-- [misc] mei: revamp connect and disconnect response handling (Jeremy McNicoll) [1273503]
-- [misc] mei: use disconnect name consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: add hbm commands return status values (Jeremy McNicoll) [1273503]
-- [misc] mei: add mei_me_cl_by_uuid_id function (Jeremy McNicoll) [1273503]
-- [misc] mei: add me client remove functions (Jeremy McNicoll) [1273503]
-- [misc] mei: use list for me clients book keeping (Jeremy McNicoll) [1273503]
-- [misc] mei: me_client lookup function to return me_client object (Jeremy McNicoll) [1273503]
-- [misc] mei: use wrapper for simple hbm client message (Jeremy McNicoll) [1273503]
-- [misc] mei: use consistently me_addr in the hbm structures (Jeremy McNicoll) [1273503]
-- [misc] mei: amthif: don't check amthif client identity on amthif queues (Jeremy McNicoll) [1273503]
-- [misc] mei: amthif: use service function to flush amthif queue (Jeremy McNicoll) [1273503]
-- [misc] mei: me: wait for hw ready non-interruptible (Jeremy McNicoll) [1273503]
-- [misc] mei: fix comments (Jeremy McNicoll) [1273503]
-- [misc] mei: nfc: fix memory leak in error path (Jeremy McNicoll) [1273503]
-- [misc] mei: reset client state on queued connect request (Jeremy McNicoll) [1273503]
-- [misc] mei: drop unused hw dependent fw status functions (Jeremy McNicoll) [1273503]
-- [misc] mei: fix return value on disconnect timeout (Jeremy McNicoll) [1273503]
-- [misc] mei: don't schedule suspend in pm idle (Jeremy McNicoll) [1273503]
-- [misc] mei: start disconnect request timer consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: reset client connection state on timeout (Jeremy McNicoll) [1273503]
-- [misc] mei: add WPT second mei interface (Jeremy McNicoll) [1273503]
-- [misc] mei: move from misc to char device (Jeremy McNicoll) [1273503]
-- [misc] mei: me: move probe quirk to cfg structure (Jeremy McNicoll) [1273503]
-- [misc] mei: add per device configuration (Jeremy McNicoll) [1273503]
-- [misc] mei: me: read H_CSR after asserting reset (Jeremy McNicoll) [1273503]
-- [misc] mei: me: drop harmful wait optimization (Jeremy McNicoll) [1273503]
-- [misc] mei: me: fix hw ready reset flow (Jeremy McNicoll) [1273503]
-- [misc] mei: fix memory leak of mei_clients array (Jeremy McNicoll) [1273503]
-- [misc] mei: set connecting state just upon connection request is sent to the fw (Jeremy McNicoll) [1273503]
-- [misc] mei: make return values consistent across the driver (Jeremy McNicoll) [1273503]
-- [misc] mei: extract fw status registers (Jeremy McNicoll) [1273503]
-- [misc] mei: me: bump hbm version to 1.1 to support power gating (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: use runtime PG pm domain for non wakeable devices (Jeremy McNicoll) [1273503]
-- [misc] mei: me: use runtime PG pm domain for non wakeable devices (Jeremy McNicoll) [1273503]
-- [misc] mei: use runtime pm in write and read flow (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: add runtime pm framework (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add runtime pm framework (Jeremy McNicoll) [1273503]
-- [misc] mei: add function to check write queues (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add pg exit and entry flow commands (Jeremy McNicoll) [1273503]
-- [misc] mei: expose hardware power gating state to mei layer (Jeremy McNicoll) [1273503]
-- [misc] mei: condition PGI support on HW and HBM version (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add power gating isolation register write wrappers (Jeremy McNicoll) [1273503]
-- [misc] mei: me: introduce power gating registers (Jeremy McNicoll) [1273503]
-- [misc] mei: implement power gating isolation hbm layer (Jeremy McNicoll) [1273503]
-- [misc] mei: me: fix hardware reset flow (Jeremy McNicoll) [1273503]
-- [misc] mei: fix read after read scenario (Jeremy McNicoll) [1273503]
-- [misc] mei: deprecate the mei_wd_state_independence_msg (Jeremy McNicoll) [1273503]
-
-* Fri Feb 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-352.el7]
-- [net] veth: don't modify ip_summed; doing so treats packets with bad checksums as good (Sabrina Dubroca) [1307099]
-- [net] nf_tables: use reverse traversal commit_list in nf_tables_abort (Xin Long) [1275964]
-- [net] nf_tables: fix addition/deletion of elements from commit/abort (Xin Long) [1275964]
-- [net] ipv6: addrlabel: fix ip6addrlbl_get() (Hannes Frederic Sowa) [1299324]
-- [net] packet: race condition in packet_bind (Hannes Frederic Sowa) [1298365]
-- [net] packet: missing dev_put() in packet_do_bind() (Hannes Frederic Sowa) [1298365]
-- [net] af_unix: Guard against other == sk in unix_dgram_sendmsg (Jakub Sitnicki) [1285792]
-- [net] unix: avoid use-after-free in ep_remove_wait_queue (Paolo Abeni) [1285792]
-- [net] unix: correctly track in-flight fds in sending process user_struct (Hannes Frederic Sowa) [1297403] {CVE-2013-4312}
-- [net] unix: properly account for FDs passed over unix sockets (Hannes Frederic Sowa) [1297403] {CVE-2013-4312}
-- [net] unix: garbage: fixed several comment and whitespace style issues (Hannes Frederic Sowa) [1297403] {CVE-2013-4312}
-- [net] sctp: Prevent soft lockup when sctp_accept() is called during a timeout event (Xin Long) [1270586] {CVE-2015-8767}
-- [net] sctp: Whitespace fix (Xin Long) [1270586] {CVE-2015-8767}
-- [net] fib_trie: leaf_walk_rcu should not compute key if key is less than pn->key (Hannes Frederic Sowa) [1275851]
-- [net] ipv4: implement support for NOPREFIXROUTE ifa flag for ipv4 address (Paolo Abeni) [1221311]
-- [net] tcp: fix a potential deadlock in tcp_get_info() (Paolo Abeni) [1269051]
-- [net] tcp: add tcpi_segs_in and tcpi_segs_out to tcp_info (Paolo Abeni) [1269051]
-- [net] tcp: add tcpi_bytes_received to tcp_info (Paolo Abeni) [1269051]
-- [net] tcp: add tcpi_bytes_acked to tcp_info (Paolo Abeni) [1269051]
-- [net] tcp_cubic: do not set epoch_start in the future (Hannes Frederic Sowa) [1268538]
-- [net] tcp_cubic: better follow cubic curve after idle period (Hannes Frederic Sowa) [1268538]
-- [netdrv] bond: track sum of rx_nohandler for all slaves (Jarod Wilson) [1289198]
-- [netdrv] team: track sum of rx_nohandler for all slaves (Jarod Wilson) [1289198]
-- [net] add rx_nohandler stat counter (Jarod Wilson) [1289198]
-- [net] core: relax BUILD_BUG_ON in netdev_stats_to_stats64 (Jarod Wilson) [1289198]
-- [net] preserve IP control block during GSO segmentation (Thadeu Lima de Souza Cascardo) [1283392]
-- [net] xfrm: add XFRMA_REPLAY_VAL attribute to SA messages (Herbert Xu) [1210745]
-- [net] xfrm: Don't prohibit AH from using ESN feature (Herbert Xu) [1210745]
-- [net] ipv6: xfrm: Add ESN support for AH ingress part (Herbert Xu) [1210745]
-- [net] ipv6: xfrm: Add ESN support for AH egress part (Herbert Xu) [1210745]
-- [net] ipv4: xfrm: Add ESN support for AH ingress part (Herbert Xu) [1210745]
-- [net] ipv4: xfrm: Add ESN support for AH egress part (Herbert Xu) [1210745]
-- [net] skbuff: Introduce skb_to_sgvec_nomark to map skb without mark new end (Herbert Xu) [1210745]
-- [net] xfrm: Fix aevent generation for each received packet (Herbert Xu) [1210745]
-- [net] xfrm: Guard IPsec anti replay window against replay bitmap (Herbert Xu) [1210745]
-- [net] ipv6: udp: use sticky pktinfo egress ifindex on connect() (Paolo Abeni) [1291792]
-- [documentation] net: change tcp_syn_retries documentation (Xin Long) [1299301]
-- [net] ipv6: sctp: fix lockdep splat in sctp_v6_get_dst() (Aaron Conole) [1286695]
-- [net] ipv6: tcp: add rcu locking in tcp_v6_send_synack() (Aaron Conole) [1286695]
-- [net] ipv6: sctp: add rcu protection around np->opt (Aaron Conole) [1286695]
-- [net] ipv6: add complete rcu protection around np->opt (Aaron Conole) [1286695]
-- [net] openvswitch: limit ovs recursions in ovs_execute_actions to not corrupt stack (Hannes Frederic Sowa) [1297881]
-- [net] scm: fix PaX detected msg_controllen overflow in scm_detach_fds (Hannes Frederic Sowa) [1284046]
-- [x86] perf, x86: Stop Intel PT before kdump starts (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Add interface to stop Intel PT logging (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Fix KVM warning due to doing rdmsr() before the CPUID test (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Disallow use by unprivileged users on paranoid systems (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Clean up files of Intel Processor Trace (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Set event->hw.itrace_started in pmu::start to match the new logic (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Add new timing packet enables (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Do not force sync packets on every schedule-in (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/lbr: Kill off intel_pmu_needs_lbr_smpl for good (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Drop redundant declarations (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add PERF_RECORD_SWITCH to indicate context switches (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel: Fix PMI handling for Intel PT (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Fix DS area sharing with x86_pmu events (Yasuaki Ishimatsu) [1270539]
-- [x86] perf_event_intel_pt.c: use arch_initcall to hook in enabling (Yasuaki Ishimatsu) [1270539]
-- [x86] perf_event_intel_bts.c: use arch_initcall to hook in enabling (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Fix a refactoring bug (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Disallow sparse AUX allocations for non-SG PMUs in overwrite mode (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Remove redundant variable declaration (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Kill pt_is_running() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Document pt_buffer_reset_offsets() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Document pt_buffer_reset_markers() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Kill an unused variable (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Untangle pt_buffer_reset_markers() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Fix and clean up error handling in pt_event_add() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Clean up the control flow in pt_pmu_hw_init() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Fix the 32-bit build (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Add BTS PMU driver (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Add Intel PT PMU driver (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86: Mark Intel PT and LBR/BTS as mutually exclusive (Yasuaki Ishimatsu) [1270539]
-- [x86] Add Intel Processor Trace (INTEL_PT) cpu feature detection (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add ITRACE_START record to indicate that tracing has started (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add wakeup watermark control to the AUX area (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Support overwrite mode for the AUX area (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add API for PMUs to write to the AUX area (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add AUX record (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add a pmu capability for "exclusive" events (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add a capability for AUX_NO_SG pmus to do software double buffering (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Support high-order allocations for AUX space (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add AUX area to ring buffer for raw data streams (Yasuaki Ishimatsu) [1270539]
-- [include] perf: Add data_{offset,size} to user_page (Yasuaki Ishimatsu) [1270539]
-- [netdrv] i40e: Fix basic support for X722 devices (Stefan Assmann) [1305242]
-- [ata] Adding Intel Lewisburg device IDs for SATA (Steve Best) [1310241]
-- [block] Always check queue limits for cloned requests (Mike Snitzer) [1286749]
-
-* Tue Feb 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-351.el7]
-- [fs] cifs: Ratelimit kernel log messages (Jamie Bainbridge) [1264251]
-- [fs] cifs: convert printk(LEVEL...) to pr_<level> (Jamie Bainbridge) [1264251]
-- [fs] pnfs: adjust backport for bit_wait check API change (Benjamin Coddington) [1296270]
-- [fs] ovl: fix dentry reference leak (David Howells) [1261073]
-- [fs] fs: __generic_file_splice_read retry lookup on AOP_TRUNCATED_PAGE (Abhijith Das) [1196335]
-- [fs] nfsd: fix clp->cl_revoked list deletion causing softlock in nfsd ("J. Bruce Fields") [1300023]
-- [fs] gfs2: Add missing else in trans_add_meta/data (Robert S Peterson) [1268436]
-- [fs] gfs2: Fix direct IO write rounding error (Robert S Peterson) [1289630]
-- [fs] nfsv4: handle nfs4_get_referral failure (Dave Wysochanski) [1228711]
-- [fs] fixup: audit: implement audit by executable (Richard Guy Briggs) [1135562]
-- [fs] audit: implement audit by executable (Richard Guy Briggs) [1135562]
-- [fs] audit: clean simple fsnotify implementation (Richard Guy Briggs) [1135562]
-- [fs] audit: use macros for unset inode and device values (Richard Guy Briggs) [1135562]
-- [fs] audit: make audit_del_rule() more robust (Richard Guy Briggs) [1135562]
-- [fs] audit: fix uninitialized variable in audit_add_rule() (Richard Guy Briggs) [1135562]
-- [fs] audit: eliminate unnecessary extra layer of watch parent references (Richard Guy Briggs) [1135562]
-- [fs] audit: eliminate unnecessary extra layer of watch references (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: Allocate overflow events with proper type (Richard Guy Briggs) [1135562]
-- [fs] fanotify: Handle overflow in case of permission events (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: Fix detection whether overflow event is queued (Richard Guy Briggs) [1135562]
-- [fs] inotify: Fix reporting of cookies for inotify events (Richard Guy Briggs) [1135562]
-- [fs] fanotify: Fix use after free for permission events (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: Do not return merged event from fsnotify_add_notify_event() (Richard Guy Briggs) [1135562]
-- [fs] fanotify: Fix use after free in mask checking (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: remove pointless NULL initializers (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: remove .should_send_event callback (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: do not share events between notification groups (Richard Guy Briggs) [1135562]
-- [fs] inotify: provide function for name length rounding (Richard Guy Briggs) [1135562]
-- [fs] revert "inotify: don't add consecutive overflow events to the queue" (Richard Guy Briggs) [1135562]
-- [fs] audit: WARN if audit_rule_change called illegally (Richard Guy Briggs) [1135562]
-- [fs] audit: cull redundancy in audit_rule_change (Richard Guy Briggs) [1135562]
-- [fs] audit: refactor audit_receive_msg() to clarify AUDIT_*_RULE* cases (Richard Guy Briggs) [1135562]
-- [fs] audit: fix netlink portid naming and types (Richard Guy Briggs) [1135562]
-- [fs] audit: rename audit_log_remove_rule to disambiguate for trees (Richard Guy Briggs) [1135562]
-- [fs] kernel/auditfilter.c: fix leak in audit_add_rule() error path (Richard Guy Briggs) [1135562]
-- [lib] klist: fix starting point removed bug in klist iterators (Ewan Milne) [1309433]
-- [i2c] i801: Fix the alignment of the device table (Steve Best) [1307147]
-- [x86] tsc: Add native_read_tsc() to maintain KABI (Prarit Bhargava) [1302325]
-- [x86] tsc: Remove rdtsc_barrier() (Prarit Bhargava) [1302325]
-- [x86] kvm: Drop open-coded barrier and use rdtsc_ordered() in kvmclock (Prarit Bhargava) [1302325]
-- [x86] tsc: Use rdtsc_ordered() in read_tsc() instead of get_cycles() (Prarit Bhargava) [1302325]
-- [x86] tsc: Use rdtsc_ordered() in check_tsc_warp() and drop extra barriers (Prarit Bhargava) [1302325]
-- [x86] tsc: Add rdtsc_ordered() and use it in trivial call sites (Prarit Bhargava) [1302325]
-- [x86] tsc: Rename native_read_tsc() to rdtsc() (Prarit Bhargava) [1302325]
-- [x86] tsc: Remove rdtscl() (Prarit Bhargava) [1302325]
-- [x86] tsc: Use the full 64-bit TSC to detect the 2.6.2 bug (Prarit Bhargava) [1302325]
-- [x86] tsc: Use the full 64-bit TSC in delay_tsc() (Prarit Bhargava) [1302325]
-- [x86] tsc: Remove the rdtscp() and rdtscpll() macros (Prarit Bhargava) [1302325]
-- [x86] tsc: Replace rdtscll() with native_read_tsc() (Prarit Bhargava) [1302325]
-- [x86] paravirt: Remove read_tsc() and read_tscp() paravirt hooks (Prarit Bhargava) [1302325]
-- [x86] kvm: Remove vget_cycles() (Prarit Bhargava) [1302325]
-- [x86] tsc: Inline native_read_tsc() and remove __native_read_tsc() (Prarit Bhargava) [1302325]
-- [x86] mm: Enable SWIOTLB if system has SRAT memory regions above MAX_DMA32_PFN (Igor Mammedov) [1271527]
-- [x86] mm: Introduce max_possible_pfn (Igor Mammedov) [1271527]
-- [x86] xen: Support kexec/kdump in HVM guests by doing a soft reset (Vitaly Kuznetsov) [1007328]
-- [kernel] sched: Output warning when the 'isolcpus=' kernel parameter is invalid (Prarit Bhargava) [1305052]
-- [kernel] hung_task debugging: Add tracepoint to report the hang (Oleg Nesterov) [1146199]
-- [cpufreq] intel_pstate: Fix divide by zero on Knights Landing (Steve Best) [1273305]
-- [security] selinux: don't waste ebitmap space when importing NetLabel categories (Paul Moore) [1237425]
-
-* Wed Feb 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-350.el7]
-- [iommu] amd: Allow non-ATS devices in IOMMUv2 domains (Myron Stowe) [1050021]
-- [iommu] amd: Set global dma_ops if swiotlb is disabled (Myron Stowe) [1050021]
-- [iommu] amd: Use swiotlb in passthrough mode (Myron Stowe) [1050021]
-- [iommu] amd: Allow non-IOMMUv2 devices in IOMMUv2 domains (Myron Stowe) [1050021]
-- [iommu] amd: Use iommu core for passthrough mode (Myron Stowe) [1050021]
-- [iommu] amd: Use iommu_attach_group() (Myron Stowe) [1050021]
-- [iommu] amd: Introduce protection_domain_init() function (Myron Stowe) [1050021]
-- [iommu] Ignore -ENODEV errors from add_device call-back (Myron Stowe) [1050021]
-- [iommu] amd: Handle large pages correctly in free_pagetable (Myron Stowe) [1050021]
-- [iommu] vt-d: Don't disable IR when it was previously enabled (Myron Stowe) [1050021]
-- [iommu] vt-d: Make sure copied over IR entries are not reused (Myron Stowe) [1050021]
-- [iommu] vt-d: Copy IR table from old kernel when in kdump mode (Myron Stowe) [1050021]
-- [iommu] vt-d: Set IRTA in intel_setup_irq_remapping (Myron Stowe) [1050021]
-- [iommu] vt-d: Disable IRQ remapping in intel_prepare_irq_remapping (Myron Stowe) [1050021]
-- [iommu] vt-d: Move QI initializationt to intel_setup_irq_remapping (Myron Stowe) [1050021]
-- [iommu] vt-d: Move EIM detection to intel_prepare_irq_remapping (Myron Stowe) [1050021]
-- [iommu] vt-d: Enable Translation only if it was previously disabled (Myron Stowe) [1050021]
-- [iommu] vt-d: Don't disable translation prior to OS handover (Myron Stowe) [1050021]
-- [iommu] vt-d: Don't copy translation tables if RTT bit needs to be changed (Myron Stowe) [1050021]
-- [iommu] vt-d: Don't do early domain assignment if kdump kernel (Myron Stowe) [1050021]
-- [iommu] vt-d: Allocate si_domain in init_dmars() (Myron Stowe) [1050021]
-- [iommu] vt-d: Mark copied context entries (Myron Stowe) [1050021]
-- [iommu] vt-d: Do not re-use domain-ids from the old kernel (Myron Stowe) [1050021]
-- [iommu] vt-d: Copy translation tables from old kernel (Myron Stowe) [1050021]
-- [iommu] vt-d: Detect pre enabled translation (Myron Stowe) [1050021]
-- [iommu] vt-d: Make root entry visible for hardware right after allocation (Myron Stowe) [1050021]
-- [iommu] vt-d: Init QI before root entry is allocated (Myron Stowe) [1050021]
-- [iommu] vt-d: Cleanup log messages (Myron Stowe) [1050021]
-- [iommu] amd: Handle errors returned from iommu_init_device (Myron Stowe) [1050021]
-- [iommu] Checking for NULL instead of IS_ERR (Myron Stowe) [1050021]
-- [iommu] amd: Propagate errors from amd_iommu_init_api (Myron Stowe) [1050021]
-- [iommu] amd: Remove unused fields from struct dma_ops_domain (Myron Stowe) [1050021]
-- [iommu] amd: Get rid of device_dma_ops_init() (Myron Stowe) [1050021]
-- [iommu] amd: Put IOMMUv2 devices in a direct mapped domain (Myron Stowe) [1050021]
-- [iommu] amd: Support IOMMU_DOMAIN_IDENTITY type allocation (Myron Stowe) [1050021]
-- [iommu] amd: Support IOMMU_DOMAIN_DMA type allocation (Myron Stowe) [1050021]
-- [iommu] amd: Implement add_device and remove_device (Myron Stowe) [1050021]
-- [pci] Remove pci_ats_enabled() (Myron Stowe) [1050021]
-- [pci] Stop caching ATS Invalidate Queue Depth (Myron Stowe) [1050021]
-- [pci] Move ATS declarations to linux/pci.h so they're all together (Myron Stowe) [1050021]
-- [pci] Clean up ATS error handling (Myron Stowe) [1050021]
-- [pci] Use pci_physfn() rather than looking up physfn by hand (Myron Stowe) [1050021]
-- [pci] Inline the ATS setup code into pci_ats_init() (Myron Stowe) [1050021]
-- [pci] Rationalize pci_ats_queue_depth() error checking (Myron Stowe) [1050021]
-- [pci] Reduce size of ATS structure elements (Myron Stowe) [1050021]
-- [pci] Embed ATS info directly into struct pci_dev (Myron Stowe) [1050021]
-- [pci] Allocate ATS struct during enumeration (Myron Stowe) [1050021]
-- [iommu] vt-d: Cache PCI ATS state and Invalidate Queue Depth (Myron Stowe) [1050021]
-- [iommu] amd: Use default domain if available for DMA-API (Myron Stowe) [1050021]
-- [iommu] amd: Implement dm_region call-backs (Myron Stowe) [1050021]
-- [iommu] Introduce iommu_request_dm_for_dev() (Myron Stowe) [1050021]
-- [iommu] Add function to query the default domain of a group (Myron Stowe) [1050021]
-- [iommu] Create direct mappings in default domains (Myron Stowe) [1050021]
-- [iommu] Introduce direct mapped region handling (Myron Stowe) [1050021]
-- [iommu] Add iommu_get_domain_for_dev function (Myron Stowe) [1050021]
-- [iommu] Make sure a device is always attached to a domain (Myron Stowe) [1050021]
-- [iommu] Limit iommu_attach/detach_device to devices with their own group (Myron Stowe) [1050021]
-- [iommu] Allocate a default domain for iommu groups (Myron Stowe) [1050021]
-- [iommu] Call remove_device call-back after driver release (Myron Stowe) [1050021]
-- [iommu] Clean up after a failed bus initialization (Myron Stowe) [1050021]
-- [iommu] Propagate error in add_iommu_group (Myron Stowe) [1050021]
-- [iommu] Add a few printk messages to group handling code (Myron Stowe) [1050021]
-- [iommu] Remove function name from pr_fmt() (Myron Stowe) [1050021]
-- [iommu] amd: Handle integer overflow in dma_ops_area_alloc (Myron Stowe) [1050021]
-- [iommu] Init iommu-groups support earlier, in core_initcall (Myron Stowe) [1050021]
-- [iommu] Fix checkpatch warnings for Missing a blank line after declarations (Myron Stowe) [1050021]
-- [iommu] vt-d: Only enable extended context tables if PASID is supported (Myron Stowe) [1299039]
-- [iommu] vt-d: Change PASID support to bit 40 of Extended Capability Register (Myron Stowe) [1299039]
-- [iommu] vt-d: Fix passthrough mode with translation-disabled devices (Myron Stowe) [1299039]
-- [iommu] vt-d: Really use upper context table when necessary (Myron Stowe) [1299039]
-- [iommu] vt-d: support extended root and context entries (Myron Stowe) [1299039]
-- [iommu] vt-d: Add new extended capabilities from v2.3 VT-d specification (Myron Stowe) [1299039]
-- [iommu] vt-d: Allow RMRR on graphics devices too (Myron Stowe) [1299039]
-- [iommu] vt-d: Print x2apic opt out info instead of printing a warning (Myron Stowe) [1299039]
-- [iommu] vt-d: kill bogus ecap_niotlb_iunits() (Myron Stowe) [1299039]
-- [iommu] amd: Correctly encode huge pages in iommu page tables (Myron Stowe) [1299039]
-- [iommu] amd: Optimize amd_iommu_iova_to_phys for new fetch_pte interface (Myron Stowe) [1299039]
-- [iommu] amd: Optimize alloc_new_range for new fetch_pte interface (Myron Stowe) [1299039]
-- [iommu] amd: Optimize iommu_unmap_page for new fetch_pte interface (Myron Stowe) [1299039]
-- [iommu] amd: Return the pte page-size in fetch_pte (Myron Stowe) [1299039]
-- [iommu] amd: Add support for contiguous dma allocator (Myron Stowe) [1299039]
-- [iommu] amd: Ignore BUS_NOTIFY_UNBOUND_DRIVER event (Myron Stowe) [1299039]
-- [iommu] amd: Use BUS_NOTIFY_REMOVED_DEVICE (Myron Stowe) [1299039]
-- [iommu] Remove domain_init and domain_free iommu_ops (Myron Stowe) [1299039]
-- [iommu] vt-d: Make use of domain_alloc and domain_free (Myron Stowe) [1299039]
-- [iommu] amd: Make use of domain_alloc and domain_free (Myron Stowe) [1299039]
-- [iommu] Only allow iommu_map/unmap for paging domains (Myron Stowe) [1299039]
-- [iommu] Introduce iommu domain types (Myron Stowe) [1299039]
-- [iommu] Introduce domain_alloc and domain_free iommu_ops (Myron Stowe) [1299039]
-- [iommu] amd: Small cleanup in mn_release() (Myron Stowe) [1299039]
-- [iommu] vt-d: Convert non-returned local variable to boolean when relevant (Myron Stowe) [1299039]
-- [iommu] amd: Convert non-returned local variable to boolean when relevant (Myron Stowe) [1299036]
-- [iommu] Update my email address (Myron Stowe) [1299036]
-- [iommu] Disable on !MMU builds (Myron Stowe) [1299036]
-- [iommu] Fix trace_map() to report original iova and original size (Myron Stowe) [1299036]
-- [iommu] iopoll: Introduce memory-mapped IO polling macros (Myron Stowe) [1299036]
-- [iommu] Change trace unmap api to report unmapped size (Myron Stowe) [1299036]
-- [iommu] Fix trace_unmap() to report original iova (Myron Stowe) [1299036]
-- [iommu] Make IOVA domain page size explicit (Myron Stowe) [1299036]
-- [iommu] Make IOVA domain low limit flexible (Myron Stowe) [1299036]
-- [iommu] Consolidate IOVA allocator code (Myron Stowe) [1299036]
-- [iommu] Allow building iova.c independently (Myron Stowe) [1299036]
-- [iommu] irq_remapping: Normailize the way to detect whether IR is enabled (Myron Stowe) [1299036]
-- [iommu] amd: Fix irq remapping detection logic (Myron Stowe) [1299036]
-- [iommu] irq_remapping: Change variable disable_irq_remap to be static (Myron Stowe) [1299036]
-- [iommu] irq_remapping: Refine function irq_remapping_prepare() for maintenance (Myron Stowe) [1299036]
-- [iommu] irq_remapping: Kill function irq_remapping_supported() and related code (Myron Stowe) [1299036]
-- [iommu] amd: Check for irq-remap support amd_iommu_prepare() (Myron Stowe) [1299036]
-- [iommu] vt-d: Allow IR works in XAPIC mode though CPU works in X2APIC mode (Myron Stowe) [1299036]
-- [iommu] vt-d: Allocate IRQ remapping data structures only for all IOMMUs (Myron Stowe) [1299036]
-- [iommu] vt-d: Prepare for killing function irq_remapping_supported() (Myron Stowe) [1299036]
-- [x86] apic: Handle XAPIC remap mode proper (Myron Stowe) [1299036]
-- [x86] apic: Refine enable_IR_x2apic() and related functions (Myron Stowe) [1299036]
-- [x86] apic: Correctly detect X2APIC status in function enable_IR() (Myron Stowe) [1299036]
-- [x86] apic: Kill useless variable x2apic_enabled in function enable_IR_x2apic() (Myron Stowe) [1299036]
-- [x86] apic: Panic if kernel doesn't support x2apic but BIOS has enabled x2apic (Myron Stowe) [1299036]
-- [x86] apic: Clear stale x2apic mode (Myron Stowe) [1299036]
-- [iommu] vt-d: Convert allocations to GFP_KERNEL (Myron Stowe) [1299036]
-- [iommu] vt-d: Move iommu preparatory allocations to irq_remap_ops.prepare (Myron Stowe) [1299036]
-- [iommu] x86: Restructure setup of the irq remapping feature (Myron Stowe) [1299036]
-
-* Mon Feb 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-349.el7]
-- [net] ipv6: Fix regression in udp_v6_mcast_next() (Hannes Frederic Sowa) [1298790]
-- [net] vlan: Invoke driver vlan hooks only if device is present (Ivan Vecera) [1276628]
-- [net] udp: properly support MSG_PEEK with truncated buffers (Sabrina Dubroca) [1294384]
-- [net] sctp: release assoc when sctp_make_abort_user return NULL in sctp_close (Xin Long) [1285945]
-- [net] tcp: allow one skb to be received per socket under memory pressure (Paolo Abeni) [1290901]
-- [net] tcp: fix behavior for epoll edge trigger (Paolo Abeni) [1290901]
-- [net] tcp: introduce tcp_under_memory_pressure() (Paolo Abeni) [1290901]
-- [net] tcp: rename sk_forced_wmem_schedule() to sk_forced_mem_schedule() (Paolo Abeni) [1290901]
-- [net] tcp: implement sk_forced_wmem_schedule (Paolo Abeni) [1290901]
-- [net] fix sk_mem_reclaim_partial() (Paolo Abeni) [1290901]
-- [net] tcp: set SOCK_NOSPACE under memory pressure (Paolo Abeni) [1290901]
-- [net] netfilter: ipt_rpfilter: remove the nh_scope test in rpfilter_lookup_reverse (Xin Long) [1261761]
-- [net] tcp: honour SO_BINDTODEVICE for TW_RST case too (Florian Westphal) [1295557]
-- [net] tcp: send_reset: test for non-NULL sk first (Florian Westphal) [1295557]
-- [net] add inet_sk_transparent() helper (Florian Westphal) [1295557]
-- [net] add sk_fullsock() helper (Florian Westphal) [1295557]
-- [net] rtnetlink: delay RTM_DELLINK notification until after ndo_uninit() (Jarod Wilson) [1285719]
-- [net] unregister_netdevice: move RTM_DELLINK to until after ndo_uninit (Jarod Wilson) [1285719]
-- [net] ipv6: Dont add RT6_LOOKUP_F_IFACE flag if saddr set (Xin Long) [1273235]
-- [net] ipv6: Add RT6_LOOKUP_F_IFACE flag if oif is set (Xin Long) [1273235]
-- [net] ipv6: fix the incorrect return value of throw route (Xin Long) [1270665]
-- [net] ipv6: allow routes to be configured with expire (Xin Long) [1275587]
-- [security] selinux: Permit bounded transitions under NO_NEW_PRIVS or NOSUID (Paul Moore) [1264963]
-- [security] selinux: reject setexeccon() on MNT_NOSUID applications with -EACCES (Paul Moore) [1264963]
-- [netdrv] mlx4_en: Remove BUG_ON assert when checking if ring is full (Kamal Heib) [1258136]
-- [x86] fpu: Check tsk_used_math() in kernel_fpu_end() for eager FPU (Prarit Bhargava) [1268913]
-- [i2c] Adding Intel Lewisburg support for iTCO (Steve Best) [1273640]
-- [mfd] lpc_ich: Intel device IDs for PCH (Steve Best) [1273640]
-- [i2c] i801: add Intel Lewisburg device IDs (Steve Best) [1273640]
-- [sound] alsa: hda - Add Intel Lewisburg device IDs Audio (Steve Best) [1273640]
-- [ata] ahci: add new Intel device IDs (Steve Best) [1273640]
-- [scsi] ses: Fix problems with simple enclosures (Ewan Milne) [1290825]
-- [scsi] Add ALUA state change UA handling (Ewan Milne) [1292569]
-- [scsi] fnic: check pci_map_single() return value (Maurizio Lombardi) [1246232]
-- [scsi] hpsa: Update driver revision to RH2 (Joseph Szczypek) [1268073]
-- [scsi] hpsa: fix issues with multilun devices (Joseph Szczypek) [1268073]
-- [scsi] megaraid_sas: touch version string (Tomas Henzl) [1267911]
-- [scsi] megaraid_sas: SMAP restriction--do not access user memory from IOCTL code (Tomas Henzl) [1267911]
-- [scsi] bnx2fc: Do not log error for netevents that need no action (Maurizio Lombardi) [1266884]
-- [scsi] iscsi: make mutex for target scanning and unbinding per-session (Chris Leech) [1253032]
-
-* Wed Feb 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-348.el7]
-- [documentation] filesystems: describe the shared memory usage/accounting (Rodrigo Freire) [1293616]
-- [netdrv] sfc: Downgrade or remove some error messages (Jarod Wilson) [1282734]
-- [netdrv] sfc: Downgrade EPERM messages from MCDI to debug (Jarod Wilson) [1282734]
-- [netdrv] sfc: Make failed filter removal less noisy (Jarod Wilson) [1282734]
-- [netdrv] sfc: Handle MCDI proxy authorisation (Jarod Wilson) [1282734]
-- [netdrv] sfc: Retry MCDI after NO_EVB_PORT error on a VF (Jarod Wilson) [1282734]
-- [netdrv] sfc: fix a timeout loop (Jarod Wilson) [1282734]
-- [netdrv] sfc: only use RSS filters if we're using RSS (Jarod Wilson) [1282734]
-- [netdrv] sfc: check warm_boot_count after other functions have been reset (Jarod Wilson) [1282734]
-- [netdrv] sfc: use ALIGN macro for aligning frame sizes (Jarod Wilson) [1282734]
-- [netdrv] sfc: Add PCI ID for Solarflare 8000 series 10/40G NIC (Jarod Wilson) [1282734]
-- [netdrv] sfc: make TSO version a per-queue parameter (Jarod Wilson) [1282734]
-- [netdrv] sfc: constify pci_error_handlers structures (Jarod Wilson) [1282734]
-- [netdrv] sfc: don't call dma_supported (Jarod Wilson) [1282734]
-- [netdrv] sfc: fully reset if MC_REBOOT event received without warm_boot_count increment (Jarod Wilson) [1282734]
-- [netdrv] sfc: avoid using timespec (Jarod Wilson) [1282734]
-- [netdrv] sfc: Allow driver to cope with a lower number of VIs than it needs for RSS (Jarod Wilson) [1282734]
-- [netdrv] sfc: MC allocations must be restored following an entity reset (Jarod Wilson) [1282734]
-- [netdrv] sfc: allow ethtool selftest and MC reboot to complete on an unprivileged function (Jarod Wilson) [1282734]
-- [netdrv] sfc: clean fallbacks between promisc/normal in efx_ef10_filter_sync_rx_mode (Jarod Wilson) [1282734]
-- [netdrv] sfc: support cascaded multicast filters (Jarod Wilson) [1282734]
-- [netdrv] sfc: re-factor efx_ef10_filter_sync_rx_mode() (Jarod Wilson) [1282734]
-- [netdrv] sfc: Insert multicast filters as well as mismatch filters in promiscuous mode (Jarod Wilson) [1282734]
-- [netdrv] sfc: warn if other functions have been reset by MCFW (Jarod Wilson) [1282734]
-- [netdrv] sfc: add output flag decoding to efx_mcdi_set_workaround (Jarod Wilson) [1282734]
-- [netdrv] sfc: cope with ENOSYS from efx_mcdi_get_workarounds() (Jarod Wilson) [1282734]
-- [netdrv] sfc: enable cascaded multicast filters in MCFW (Jarod Wilson) [1282734]
-- [netdrv] sfc: update MCDI protocol definitions (Jarod Wilson) [1282734]
-- [netdrv] siena: only report generic filters in get_ts_info (Jarod Wilson) [1282734]
-- [netdrv] bonding: "primary_reselect" with "failure" is not working properly (Jarod Wilson) [1301451]
-- [netdrv] ixgbe: Teardown SR-IOV before unregister_netdev() (Alex Williamson) [1245562]
-- [netdrv] igb: Teardown SR-IOV before unregister_netdev() (Alex Williamson) [1245562]
-- [vfio] Fix bug in vfio_device_get_from_name() (Alex Williamson) [1282546]
-- [scsi] report 'INQUIRY result too short' once per host (Vitaly Kuznetsov) [1270253]
-- [scsi] Revert "report 'INQUIRY result too short' once" (Vitaly Kuznetsov) [1270253]
-- [x86] cpu: Call verify_cpu() after having entered long mode too (Lenny Szubowicz) [1240181]
-- [modsign] asn.1: Handle 'ANY OPTIONAL' in grammar (David Howells) [1250405]
-- [modsign] asn.1: Fix non-match detection failure on data overrun (David Howells) [1250405]
-- [modsign] asn.1: Fix actions on CHOICE elements with IMPLICIT tags (David Howells) [1250405]
-- [modsign] asn.1: Fix handling of CHOICE in ASN.1 compiler (David Howells) [1250405]
-- [watchdog] Read device status through sysfs attributes (Pratyush Anand) [1256787]
-- [watchdog] Use static struct class watchdog_class in stead of pointer (Pratyush Anand) [1256787]
-- [watchdog] Fix parent of watchdog_devices (Pratyush Anand) [1256787]
-- [watchdog] itco_wdt: Fix the parent device (Pratyush Anand) [1256787]
-- [cpufreq] powernv: Report Pmax throttling if capped below nominal frequency (Gustavo Duarte) [1277087]
-- [powerpc] cxl: Fix unbalanced pci_dev_get in cxl_probe (Gustavo Duarte) [1288112]
-- [powerpc] eeh: Probe after unbalanced kref check (Gustavo Duarte) [1288112]
-
-* Thu Feb 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-347.el7]
-- [netdrv] fjes: ethtool support (Neil Horman) [1226804]
-- [netdrv] fjes: handle receive cancellation request interrupt (Neil Horman) [1226804]
-- [netdrv] fjes: epstop_task (Neil Horman) [1226804]
-- [netdrv] fjes: update_zone_task (Neil Horman) [1226804]
-- [netdrv] fjes: unshare_watch_task (Neil Horman) [1226804]
-- [netdrv] fjes: force_close_task (Neil Horman) [1226804]
-- [netdrv] fjes: interrupt_watch_task (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_vlan_rx_add/kill_vid (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_tx_timeout (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_change_mtu (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_get_stats64 (Neil Horman) [1226804]
-- [netdrv] fjes: NAPI polling function (Neil Horman) [1226804]
-- [netdrv] fjes: tx_stall_task (Neil Horman) [1226804]
-- [netdrv] fjes: raise_intr_rxdata_task (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_start_xmit (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_open and .ndo_stop (Neil Horman) [1226804]
-- [netdrv] fjes: buffer address regist/unregistration routine (Neil Horman) [1226804]
-- [netdrv] fjes: ES information acquisition routine (Neil Horman) [1226804]
-- [netdrv] fjes: platform_driver's .probe and .remove routine (Neil Horman) [1226804]
-- [netdrv] fjes: Hardware cleanup routine (Neil Horman) [1226804]
-- [netdrv] fjes: Hardware initialization routine (Neil Horman) [1226804]
-- [netdrv] fjes: Introduce FUJITSU Extended Socket Network Device driver (Neil Horman) [1226804]
-- [netdrv] r8169: fix kasan reported skb use-after-free (Corinna Vinschen) [1280393]
-- [netdrv] cxgb4: changes for new firmware 1.14.4.0 (Sai Vemuri) [1275825]
-- [netdrv] netxen: correct sysfs bin attribute return code (Tony Camuso) [1274300]
-- [mm] thp: don't hold mmap_sem in khugepaged when allocating THP (Aaron Tomlin) [1282435]
-- [mm] ksm: add reschedule points to unmerge_and_remove_all_rmap_items (Andrea Arcangeli) [1298618]
-- [mm] ksm: introduce ksm_max_page_sharing per page deduplication limit (Andrea Arcangeli) [1298618]
-- [mm] hugetlbfs: skip shared VMAs when unmapping private pages to satisfy a fault (Andrea Arcangeli) [1291247]
-- [fs] dlm: fix lvb copy for user locks (David Teigland) [1256947]
-- [x86] watchdog: itco_wdt: Add support for TCO on Intel Sunrisepoint (Prarit Bhargava) [1181799]
-- [x86] i2c: i801: Create iTCO device on newer Intel PCHs (Prarit Bhargava) [1181799]
-- [x86] mfd: watchdog: itco_wdt: Expose watchdog properties using platform data (Prarit Bhargava) [1181799]
-- [x86] Broadwell EP and EX have the same cpuid (David Arcari) [1299948]
-- [x86] pvpanic: Set high notifier priority (Peter Xu) [1282794]
-- [x86] tsc: Let high latency PIT fail fast in quick_pit_calibrate() (Prarit Bhargava) [1276201]
-- [base] memory: fix kernel warning during memory hotplug on ppc64 (Laurent Vivier) [1276205]
-- [char] tpm, tpm_tis: fix tpm_tis ACPI detection issue with TPM 2.0 (Jerry Snitselaar) [1293577]
-- [crypto] nx-842: Mask XERS0 bit in return value (Gustavo Duarte) [1294090]
-- [kernel] sched/stat: Expose /proc/pid/schedstat if CONFIG_SCHED_INFO=y (Gustavo Duarte) [1289664]
-- [kernel] sched/stat: Simplify the sched_info accounting dependency (Gustavo Duarte) [1289664]
-- [kernel] sched: tracing: Stop/start critical timings around the idle=poll idle loop (Daniel Bristot de Oliveira) [1280434]
-- [kernel] watchdog: touch_nmi_watchdog should only touch local cpu not every one (Don Zickus) [1266622]
-- [kernel] sysctl: detect overflows when converting to int (Prarit Bhargava) [1303083]
-- [kernel] rh_kabi: add RH_KABI_DEPRECATE_FN (Prarit Bhargava) [1302150]
-- [kernel] time: Avoid signed overflow in timekeeping_get_ns() (David Gibson) [1248958]
-- [kernel] module: Add missing 'T' in /proc/modules when a module has the TAINT_TECH_PREVIEW bit set (Dave Wysochanski) [1299013]
-- [kernel] signal: remove warning about using SI_TKILL in rt_[tg]sigqueueinfo (Oleg Nesterov) [1015985]
-- [kernel] kexec: align crash_notes allocation to make it be inside one physical page (Baoquan He) [1073651]
-- [kernel] audit/fix non-modular users of module_init in core code (Baoquan He) [1073651]
-- [firmware] dmi_scan: Fix UUID endianness for SMBIOS >= 2.6 (Prarit Bhargava) [1294461]
-- [powercap] rapl: fix BIOS lock check (David Arcari) [1297950]
-- [security] keys: Fix keyring ref leak in join_session_keyring() (David Howells) [1298036] {CVE-2016-0728}
-
-* Wed Feb 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-346.el7]
-- [x86] mce: Ensure offline CPUs don't participate in rendezvous process (Prarit Bhargava) [1301710]
-- [x86] mce: Make usable address checks Intel-only (Prarit Bhargava) [1301710]
-- [x86] mce: Add the missing memory error check on AMD (Prarit Bhargava) [1301710]
-- [x86] ras: Remove mce.usable_addr (Prarit Bhargava) [1301710]
-- [x86] mce: Do not enter deferred errors into the generic pool twice (Prarit Bhargava) [1301710]
-- [x86] mce: Add a default case to the switch in __mcheck_cpu_ancient_init() (Prarit Bhargava) [1301710]
-- [x86] mce: Add a Scalable MCA vendor flags bit (Prarit Bhargava) [1301710]
-- [x86] mce: Fix thermal throttling reporting after kexec (Prarit Bhargava) [1301710]
-- [x86] mce: Don't clear shared banks on Intel when offlining CPUs (Prarit Bhargava) [1301710]
-- [x86] mce: Add a wrapper around mce_log() for injection (Prarit Bhargava) [1301710]
-- [x86] mce: Rename rcu_dereference_check_mce() to mce_log_get_idx_check() (Prarit Bhargava) [1301710]
-- [x86] mce: Reenable CMCI banks when swiching back to interrupt mode (Prarit Bhargava) [1301710]
-- [x86] mce: Clear Local MCE opt-in before kexec (Prarit Bhargava) [1301710]
-- [x86] mce: Kill drain_mcelog_buffer() (Prarit Bhargava) [1301710]
-- [x86] mce: Avoid potential deadlock due to printk() in MCE context (Prarit Bhargava) [1301710]
-- [x86] mce: Remove the MCE ring for Action Optional errors (Prarit Bhargava) [1301710]
-- [x86] mce: Reuse one of the u16 padding fields in 'struct mce' (Prarit Bhargava) [1301710]
-- [x86] mce: Don't use percpu workqueues (Prarit Bhargava) [1301710]
-- [x86] mce: Provide a lockless memory pool to save error records (Prarit Bhargava) [1301710]
-- [x86] mce: Handle Local MCE events (Prarit Bhargava) [1301710]
-- [x86] mce: Add Local MCE definitions (Prarit Bhargava) [1301710]
-- [x86] mce: Add infrastructure to support Local MCE (Prarit Bhargava) [1301710]
-- [x86] mce: mce_chrdev_write() can be static (Prarit Bhargava) [1301710]
-- [x86] mce: Stop using array-index-based RCU primitives (Prarit Bhargava) [1301710]
-- [x86] mce: Fix monarch timeout setting through the mce= cmdline option (Prarit Bhargava) [1301710]
-- [x86] mce: Fix MCE severity messages (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Zap changelog (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Rename setup_APIC_mce (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Introduce deferred error interrupt handler (Prarit Bhargava) [1301710]
-- [x86] mce: Add support for deferred errors on AMD (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Collect valid address before logging an error (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Factor out logging mechanism (Prarit Bhargava) [1301710]
-- [x86] mce: Spell "panicked" correctly (Prarit Bhargava) [1301710]
-- [x86] mce: Support memory error recovery for both UCNA and Deferred error in machine_check_poll (Prarit Bhargava) [1301710]
-- [iommu] vt-d: Remove dead code in device_notifier (Myron Stowe) [1287300]
-- [iommu] add new iommu_ops callback for adding an OF device (Myron Stowe) [1287300]
-- [iommu] provide early initialisation hook for IOMMU drivers (Myron Stowe) [1287300]
-- [mm] export find_extend_vma() and handle_mm_fault() for driver use (Myron Stowe) [1287300]
-- [iommu] Decouple iommu_map_sg from CPU page size (Myron Stowe) [1287300]
-- [iommu] pci: Enhance pci_root to support DMAR device hotplug (Myron Stowe) [1287300]
-- [iommu] vt-d: Enhance intel-iommu driver to support DMAR unit hotplug (Myron Stowe) [1287300]
-- [iommu] vt-d: Enhance error recovery in function intel_enable_irq_remapping() (Myron Stowe) [1287300]
-- [iommu] vt-d: Enhance intel_irq_remapping driver to support DMAR unit hotplug (Myron Stowe) [1287300]
-- [iommu] vt-d: Search for ACPI _DSM method for DMAR hotplug (Myron Stowe) [1287300]
-- [iommu] vt-d: Implement DMAR unit hotplug framework (Myron Stowe) [1287300]
-- [iommu] vt-d: Dynamically allocate and free seq_id for DMAR units (Myron Stowe) [1287300]
-- [iommu] vt-d: Introduce helper function dmar_walk_resources() (Myron Stowe) [1287300]
-- [iommu] acpica: tables: Update for DMAR table changes (Myron Stowe) [1287300]
-- [iommu] acpica: tables: Merge DMAR table structure updates (Myron Stowe) [1287300]
-- [iommu] amd: remove compiler warning due to IOMMU_CAP_NOEXEC (Myron Stowe) [1287300]
-- [iommu] add capability IOMMU_CAP_NOEXEC (Myron Stowe) [1287300]
-- [iommu] vt-d: Fix incorrect bit operations in setting values (Myron Stowe) [1287300]
-- [iommu] Improve error handling when setting bus iommu (Myron Stowe) [1287300]
-- [iommu] fix initialization without 'add_device' callback (Myron Stowe) [1287300]
-- [iommu] Do more input validation in iommu_map_sg() (Myron Stowe) [1287300]
-- [iommu] Add iommu_map_sg() function (Myron Stowe) [1287300]
-- [iommu] powerpc: Rename iommu_[un]map_sg functions (Myron Stowe) [1287300]
-
-* Tue Feb 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-345.el7]
-- [net] sctp: ASCONF-ACK with Unresolvable Address should be sent (Xin Long) [1245510]
-- [net] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state (Xin Long) [1256019]
-- [net] sctp: asconf's process should verify address parameter is in the beginning (Xin Long) [1246418]
-- [net] sctp: translate host order to network order when setting a hmacid (Xin Long) [1270431]
-- [net] tcp: initialize tp->copied_seq in case of cross SYN connection (Hannes Frederic Sowa) [1287754]
-- [net] ipv6: Fix IPsec pre-encap fragmentation check (Herbert Xu) [1257952]
-- [net] xfrm: fix xfrm_input/xfrm_tunnel_check oops (Herbert Xu) [1275397]
-- [net] ipv6: distinguish frag queues by device for multicast and link-local packets (Hannes Frederic Sowa) [1285250]
-- [net] netfilter: nf_log: wait for rcu grace after logger unregistration (Florian Westphal) [1260905]
-- [net] netfilter: nf_log: don't zap all loggers on unregister (Florian Westphal) [1260905]
-- [net] netfilter: nf_log: Introduce nft_log_dereference() macro (Florian Westphal) [1260905]
-- [net] ipv6: fix crash on ICMPv6 redirects with prohibited/blackholed source (Xin Long) [1278257]
-- [net] sock: don't enable netstamp for af_unix sockets (Hannes Frederic Sowa) [1277130]
-- [net] ipv4: Fix compilation errors in fib_rebalance (Paolo Abeni) [1275573]
-- [net] ipv4: ICMP packet inspection for multipath (Paolo Abeni) [1275573]
-- [net] ipv4: L3 hash-based multipath (Paolo Abeni) [1275573]
-- [net] bridge: implement rtnl_link_ops->get_size and rtnl_link_ops->fill_info (Paolo Abeni) [1270763]
-- [net] bridge: include in6.h in if_bridge.h for struct in6_addr (Jiri Benc) [1268057]
-- [net] inet: defines IPPROTO_* needed for module alias generation (Jiri Benc) [1268057]
-- [net] sync some IP headers with glibc (Jiri Benc) [1268057]
-- [net] ipvs: fix crash if scheduler is changed (Paolo Abeni) [1233382]
-- [net] ipv6: use common fib_default_rule_pref (Paolo Abeni) [1264431]
-- [net] documentation: Update netlink_mmap.txt (Paolo Abeni) [1263708]
-- [net] netlink: Always copy on mmap TX (Paolo Abeni) [1263708]
-- [net] xfrm: configure policy hash table thresholds by netlink (Herbert Xu) [1136860 1222936]
-- [net] xfrm: hash prefixed policies based on preflen thresholds (Herbert Xu) [1136860 1222936]
-- [netdrv] bna: check for dma mapping errors (Ivan Vecera) [1244166]
-- [netdrv] qlcnic: fix mac address restore in bond mode 5/6 (Jarod Wilson) [1265058]
-- [netdrv] bonding: make mii_status sysfs node consistent (Jarod Wilson) [1297933]
-- [netdrv] bonding: support encapsulated ipv6 TSO (Jarod Wilson) [1277950]
-- [netdrv] bonding: handle more gso types (Jarod Wilson) [1277950]
-- [netdrv] alx: sanitize buffer sizing and padding (Jarod Wilson) [1090432]
-- [netdrv] alx: remove pointless assignment (Jarod Wilson) [1090432]
-- [netdrv] alx: add Killer E2400 device ID (Jarod Wilson) [1090432]
-- [netdrv] alx: fix alx_poll() (Jarod Wilson) [1090432]
-- [netdrv] alx: get rid of SET_ETHTOOL_OPS (Jarod Wilson) [1090432]
-- [netdrv] alx: Remove casts of pointer to same type (Jarod Wilson) [1090432]
-- [netdrv] alx: Call dev_kfree_skb_any instead of dev_kfree_skb (Jarod Wilson) [1090432]
-- [netdrv] alx: Use dma_set_mask_and_coherent and fix a bug (Jarod Wilson) [1090432]
-- [netdrv] alx: add missing stats_lock spinlock init (Jarod Wilson) [1090432]
-- [netdrv] alx: add stats to ethtool (Jarod Wilson) [1090432]
-- [netdrv] alx: add alx_get_stats64 operation (Jarod Wilson) [1090432]
-- [netdrv] alx: add stats update function (Jarod Wilson) [1090432]
-- [netdrv] alx: add constants for the stats fields (Jarod Wilson) [1090432]
-- [netdrv] alx: add a hardware stats structure (Jarod Wilson) [1090432]
-- [netdrv] alx: Reset phy speed after resume (Jarod Wilson) [1090432]
-- [netdrv] alx: remove unnecessary pci_set_drvdata() (Jarod Wilson) [1090432]
-- [netdrv] alx: remove redundant D0 power state set (Jarod Wilson) [1090432]
-- [netdrv] alx: remove WoL support (Jarod Wilson) [1090432]
-- [netdrv] alx: fix ethtool support code (Jarod Wilson) [1090432]
-- [netdrv] alx: fix MAC address alignment problem (Jarod Wilson) [1090432]
-- [netdrv] alx: separate link speed/duplex fields (Jarod Wilson) [1090432]
-- [netdrv] alx: make sizes unsigned (Jarod Wilson) [1090432]
-- [netdrv] alx: fix 100mbit/half duplex speed translation (Jarod Wilson) [1090432]
-- [netdrv] alx: treat flow control correctly in alx_set_pauseparam() (Jarod Wilson) [1090432]
-
-* Tue Jan 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-344.el7]
-- [block] zram: don't call idr_remove() from zram_remove() (Seth Jennings) [1244276]
-- [block] zram: fix possible use after free in zcomp_create() (Seth Jennings) [1244276]
-- [block] zram: unify error reporting (Seth Jennings) [1244276]
-- [block] zram: check comp algorithm availability earlier (Seth Jennings) [1244276]
-- [block] zram: cut trailing newline in algorithm name (Seth Jennings) [1244276]
-- [block] zram: cosmetic zram_bvec_write() cleanup (Seth Jennings) [1244276]
-- [block] zram: add dynamic device add/remove functionality (Seth Jennings) [1244276]
-- [block] zram: close race by open overriding (Seth Jennings) [1244276]
-- [block] zram: return zram device_id from zram_add() (Seth Jennings) [1244276]
-- [block] zram: trivial: correct flag operations comment (Seth Jennings) [1244276]
-- [block] zram: report every added and removed device (Seth Jennings) [1244276]
-- [block] zram: remove max_num_devices limitation (Seth Jennings) [1244276]
-- [block] zram: reorganize code layout (Seth Jennings) [1244276]
-- [block] zram: use idr instead of `zram_devices' array (Seth Jennings) [1244276]
-- [block] zram: cosmetic ZRAM_ATTR_RO code formatting tweak (Seth Jennings) [1244276]
-- [block] zram: remove obsolete ZRAM_DEBUG option (Seth Jennings) [1244276]
-- [block] zram: clear disk io accounting when reset zram device (Seth Jennings) [1244276]
-- [block] zram: fix error return code (Seth Jennings) [1244276]
-- [documentation] zram: deprecate zram attrs sysfs nodes (Seth Jennings) [1244276]
-- [documentation] zram: describe device attrs in documentation (Seth Jennings) [1244276]
-- [block] zram: export new 'mm_stat' sysfs attrs (Seth Jennings) [1244276]
-- [block] zram: export new 'io_stat' sysfs attrs (Seth Jennings) [1244276]
-- [block] zram: use proper type to update max_used_pages (Seth Jennings) [1244276]
-- [mm] zpool: add name argument to create zpool (Seth Jennings) [1244276]
-- [block] zram: remove request_queue from struct zram (Seth Jennings) [1244276]
-- [block] zram: remove init_lock in zram_make_request (Seth Jennings) [1244276]
-- [block] zram: check bd_openers instead of bd_holders (Seth Jennings) [1244276]
-- [block] zram: rework reset and destroy path (Seth Jennings) [1244276]
-- [block] zram: fix umount-reset_store-mount race condition (Seth Jennings) [1244276]
-- [block] zram: free meta table in zram_meta_free (Seth Jennings) [1244276]
-- [block] zram: clean up zram_meta_alloc() (Seth Jennings) [1244276]
-- [block] zram: use DEVICE_ATTR_[RW|RO|WO] to define zram sys device attribute (Seth Jennings) [1244276]
-- [block] zram: correct ZRAM_ZERO flag bit position (Seth Jennings) [1244276]
-- [block] zram: change parameter from vaild_io_request() (Seth Jennings) [1244276]
-- [block] zram: remove bio parameter from zram_bvec_rw() (Seth Jennings) [1244276]
-- [block] zram: avoid kunmap_atomic() of a NULL pointer (Seth Jennings) [1244276]
-- [block] zram: avoid NULL pointer access in concurrent situation (Seth Jennings) [1244276]
-- [documentation] zram: use notify_free to account all free notifications (Seth Jennings) [1244276]
-- [block] zram: report maximum used memory (Seth Jennings) [1244276]
-- [block] zram: zram memory size limitation (Seth Jennings) [1244276]
-- [mm] zsmalloc: change return value unit of zs_get_total_size_bytes (Seth Jennings) [1244276]
-- [block] zram: fix incorrect stat with failed_reads (Seth Jennings) [1244276]
-- [block] zram: replace global tb_lock with fine grain lock (Seth Jennings) [1244276]
-- [block] zram: use size_t instead of u16 (Seth Jennings) [1244276]
-- [block] zram: remove unused SECTOR_SIZE define (Seth Jennings) [1244276]
-- [block] zram: rename struct `table' to `zram_table_entry' (Seth Jennings) [1244276]
-- [block] zram: avoid lockdep splat by revalidate_disk (Seth Jennings) [1244276]
-- [block] zram: revalidate disk after capacity change (Seth Jennings) [1244276]
-- [block] zram: correct offset usage in zram_bio_discard (Seth Jennings) [1244276]
-- [block] zram: support REQ_DISCARD (Seth Jennings) [1244276]
-- [block] zram: use scnprintf() in attrs show() methods (Seth Jennings) [1244276]
-- [block] zram: propagate error to user (Seth Jennings) [1244276]
-- [block] zram: return error-valued pointer from zcomp_create() (Seth Jennings) [1244276]
-- [block] zram: move comp allocation out of init_lock (Seth Jennings) [1244276]
-- [block] zram: make compression algorithm selection possible (Seth Jennings) [1244276]
-- [block] zram: add set_max_streams knob (Seth Jennings) [1244276]
-- [block] zram: add multi stream functionality (Seth Jennings) [1244276]
-- [documentation] zram: document failed_reads, failed_writes stats (Seth Jennings) [1244276]
-- [documentation] zram: doc fixes (Seth Jennings) [1244276]
-- [block] zram: factor out single stream compression (Seth Jennings) [1244276]
-- [block] zram: use zcomp compressing backends (Seth Jennings) [1244276]
-- [block] zram: introduce compressing backend abstraction (Seth Jennings) [1244276]
-- [block] zram: delete zram_init_device() (Seth Jennings) [1244276]
-- [block] zram: move zram size warning to documentation (Seth Jennings) [1244276]
-- [block] zram: drop not used table `count' member (Seth Jennings) [1244276]
-- [block] zram: report failed read and write stats (Seth Jennings) [1244276]
-- [block] zram: remove zram stats code duplication (Seth Jennings) [1244276]
-- [block] zram: use atomic64_t for all zram stats (Seth Jennings) [1244276]
-- [block] zram: remove good and bad compress stats (Seth Jennings) [1244276]
-- [block] zram: do not pass rw argument to __zram_make_request() (Seth Jennings) [1244276]
-- [block] zram: drop `init_done' struct zram member (Seth Jennings) [1244276]
-- [block] zram: avoid null access when fail to alloc meta (Seth Jennings) [1244276]
-- [block] zram: remove zram->lock in read path and change it with mutex (Seth Jennings) [1244276]
-- [block] zram: remove workqueue for freeing removed pending slot (Seth Jennings) [1244276]
-- [block] zram: introduce zram->tb_lock (Seth Jennings) [1244276]
-- [block] zram: use atomic operation for stat (Seth Jennings) [1244276]
-- [block] zram: remove unnecessary free (Seth Jennings) [1244276]
-- [block] zram: delay pending free request in read path (Seth Jennings) [1244276]
-- [block] zram: fix race between reset and flushing pending work (Seth Jennings) [1244276]
-- [block] zram: add copyright (Seth Jennings) [1244276]
-- [documentation] zram: remove old private project comment (Seth Jennings) [1244276]
-- [block] zram: promote zram from staging (Seth Jennings) [1244276]
-- [block] zram: Fix memory leak by refcount mismatch (Seth Jennings) [1244276]
-- [block] zram: Fix access of NULL pointer (Seth Jennings) [1244276]
-- [block] zram: Fix variable dereferenced before check (Seth Jennings) [1244276]
-- [block] zram: prevent data loss in error cases of function zram_bvec_write() (Seth Jennings) [1244276]
-- [block] Fixes string split across lines in zram (Seth Jennings) [1244276]
-
-* Tue Jan 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-343.el7]
-- [iommu] amd: Fix devid mapping for ivrs_ioapic override (Myron Stowe) [1279620]
-- [iommu] irq_remapping: Fix the regression of hpet irq remapping (Myron Stowe) [1279620]
-- [iommu] Fix bus notifier breakage (Myron Stowe) [1279620]
-- [iommu] amd_iommu: do not dereference a NULL pointer address (Myron Stowe) [1279620]
-- [iommu] Remove iommu_domain_has_cap() API function (Myron Stowe) [1279620]
-- [iommu] ib/usnic: Convert to use new iommu_capable() API function (Myron Stowe) [1279620]
-- [iommu] vfio: Convert to use new iommu_capable() API function (Myron Stowe) [1279620]
-- [iommu] vt-d: Convert to iommu_capable() API function (Myron Stowe) [1279620]
-- [iommu] amd: Convert to iommu_capable() API function (Myron Stowe) [1279620]
-- [iommu] Introduce iommu_capable API function (Myron Stowe) [1279620]
-- [iommu] Convert iommu-caps from define to enum (Myron Stowe) [1279620]
-- [iommu] amd: Remove device binding reference count (Myron Stowe) [1279620]
-- [iommu] amd: Attach and detach complete alias group (Myron Stowe) [1279620]
-- [iommu] amd: Keep a list of devices in an alias group (Myron Stowe) [1279620]
-- [iommu] amd: Move struct iommu_dev_data to amd_iommu.c (Myron Stowe) [1279620]
-- [iommu] Replace rcu_assign_pointer() with RCU_INIT_POINTER() (Myron Stowe) [1279620]
-- [iommu] vt-d: Don't store SIRTP request (Myron Stowe) [1279620]
-- [iommu] Constify struct iommu_ops (Myron Stowe) [1279620]
-- [fs] namespaces: Use task_lock and not rcu to protect nsproxy (Hannes Frederic Sowa) [1297032]
-- [fs] proc_namespace: simplify testing nsp and nsp->mnt_ns (Hannes Frederic Sowa) [1297032]
-- [net] ipv6: recreate ipv6 link-local addresses when increasing MTU over IPV6_MIN_MTU (Hannes Frederic Sowa) [1191156]
-- [net] possible use after free in dst_release (Hannes Frederic Sowa) [1296299]
-- [net] fix a race in dst_release() (Hannes Frederic Sowa) [1296299]
-- [net] ratelimit warnings about dst entry refcount underflow or overflow (Hannes Frederic Sowa) [1296299]
-- [net] fix IP early demux races (Hannes Frederic Sowa) [1296299]
-- [of] return NUMA_NO_NODE from fallback of_node_to_nid() (Thadeu Lima de Souza Cascardo) [1294398]
-- [net] openvswitch: do not allocate memory from offline numa node (Thadeu Lima de Souza Cascardo) [1294398]
-- [net] skbuff: Fix offset error in skb_reorder_vlan_header (Lance Richardson) [1247264]
-- [net] vlan: Do not put vlan headers back on bridge and macvlan ports (Lance Richardson) [1247264]
-- [net] vlan: Fix untag operations of stacked vlans with REORDER_HEADER off (Lance Richardson) [1247264]
-- [net] Add a function to check macvlan port (Lance Richardson) [1247264]
-- [net] Always untag vlan-tagged traffic on input (Lance Richardson) [1247264]
-- [usb] xhci: init command timeout timer earlier to avoid deleting it uninitialized (Don Zickus) [1290202]
-- [acpi] processor: Fix failure of loading acpi-cpufreq driver (Prarit Bhargava) [1262898]
-- [block] nvme: default to 4k device page size (David Milburn) [1245140]
-- [kernel] makefile: use the gnu89 standard explicitly (Lance Richardson) [1227950]
-- [security] keys: Fix race between read and revoke (David Howells) [1293401] {CVE-2015-7550}
-
-* Thu Jan 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-342.el7]
-- [kernel] sched/fair: Disable tg load_avg/runnable_avg update for root_task_group (Jiri Olsa) [1289261]
-- [kernel] sched/fair: Move hot load_avg/runnable_avg into separate cacheline (Jiri Olsa) [1289261]
-- [kernel] sched: Fix avg_load computation (Jiri Olsa) [1211784]
-- [kernel] sched: Allow calculate_imbalance() to move idle cpus (Jiri Olsa) [1211784]
-- [kernel] sched: Make update_sd_pick_busiest() return 'true' on a busier sd (Jiri Olsa) [1211784]
-- [kernel] sched: Make calculate_imbalance() independent (Jiri Olsa) [1211784]
-- [kernel] sched: Disambiguate existing/remaining "capacity" usage (Jiri Olsa) [1211784]
-- [kernel] sched: Change "has_capacity" to "has_free_capacity" (Jiri Olsa) [1211784]
-- [kernel] sched: Remove "power" from 'struct numa_stats' (Jiri Olsa) [1211784]
-- [kernel] sched: Fix the rq->next_balance logic in rebalance_domains() and idle_balance() (Jiri Olsa) [1211784]
-- [kernel] sched: Fix double normalization of vruntime (Jiri Olsa) [1211784]
-- [kernel] sched: Initialize power_orig for overlapping groups (Jiri Olsa) [1211784]
-- [kernel] sched: Clean up update_sg_lb_stats() a bit (Jiri Olsa) [1211784]
-- [kernel] sched: Fix a trivial syntax misuse (Jiri Olsa) [1211784]
-- [kernel] sched: Check sched_domain before computing group power (Jiri Olsa) [1211784]
-- [kernel] sched: Fix cfs_rq->task_h_load calculation (Jiri Olsa) [1211784]
-- [kernel] sched: Fix 'local->avg_load > busiest->avg_load' case in fix_small_imbalance() (Jiri Olsa) [1211784]
-- [kernel] sched: Fix 'local->avg_load > sds->avg_load' case in calculate_imbalance() (Jiri Olsa) [1211784]
-- [kernel] sched: Fix the group_capacity computation (Jiri Olsa) [1211784]
-- [kernel] sched: Rework and comment the group_capacity code (Jiri Olsa) [1211784]
-- [kernel] sched: Fix group power_orig computation (Jiri Olsa) [1211784]
-- [kernel] sched: Reduce local_group logic (Jiri Olsa) [1211784]
-- [kernel] sched: Fix redo label position (Jiri Olsa) [1211784]
-- [kernel] sched: Shrink sg_lb_stats and play memset games (Jiri Olsa) [1211784]
-- [kernel] sched: Keep upstream 'local' namespace (Jiri Olsa) [1211784]
-- [kernel] sched: Move h_load calculation to task_h_load() (Jiri Olsa) [1211784]
-- [kernel] sched: Change cfs_rq load avg to unsigned long (Jiri Olsa) [1211784]
-- [kernel] sched: Consider runnable load average in move_tasks() (Jiri Olsa) [1211784]
-- [kernel] sched: Compute runnable load avg in cpu_load and cpu_avg_load_per_task (Jiri Olsa) [1211784]
-- [kernel] sched: Set an initial value of runnable avg for new forked task (Jiri Olsa) [1211784]
-- [kernel] sched: Move cpu_active() tests from stop_two_cpus() into migrate_swap_stop() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Change cpu_stop_queue_two_works() to rely on stopper->enabled (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Introduce __cpu_stop_queue_work() and cpu_stop_queue_two_works() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Ensure that a queued callback will be called before cpu_stop_park() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Remove cpu_stop_work's from list in cpu_stop_park() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Don't do for_each_cpu() twice in queue_stop_cpus_work() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Move 'cpu_stopper_task' and 'stop_cpus_work' into 'struct cpu_stopper' (Oleg Nesterov) [1252281]
-
-* Thu Jan 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-341.el7]
-- [powerpc] kvm: Fix alignment bug in powerpc kvm_cma_declare_contiguous() (Thomas Huth) [1296933]
-- [powerpc] Implement save_stack_trace_regs() to enable kprobe stack tracing (Steven Rostedt) [1251361]
-- [kernel] ring-buffer: Fix infinite spin in reading buffer (Steven Rostedt) [1248856]
-- [kernel] ring-buffer: Always reset iterator to reader page (Steven Rostedt) [1248856]
-- [kernel] ring-buffer: Up rb_iter_peek() loop count to 3 (Steven Rostedt) [1248856]
-- [kernel] ring-buffer: Use rb_page_size() instead of open coded head_page size (Steven Rostedt) [1248856]
-- [kernel] ring-buffer: Fix first commit on sub-buffer having non-zero delta (Steven Rostedt) [1248856]
-- [netdrv] i40e/i40evf: avoid mutex re-init (Neil Horman) [1274219]
-- [netdrv] i40e: remove unused argument (Neil Horman) [1272360]
-- [netdrv] i40e: do not sleep in netdev_ops (Neil Horman) [1272360]
-- [netdrv] i40e: fix erroneous WARN_ON (Neil Horman) [1272833]
-- [scsi] be2iscsi: Fix updating the next pointer during WRB posting (Maurizio Lombardi) [1229330]
-- [scsi] scsi_error: fix stray switch detected by smatch in scsi_noretry_cmd (Ewan Milne) [1296976]
-- [fs] nfsv4.1: Allow parallel LOCK/LOCKU calls (Benjamin Coddington) [1287788]
-- [fs] nfsv4: Update of VFS byte range lock must be atomic with the stateid update (Benjamin Coddington) [1287788]
-- [fs] nfsv4: Fix lock on-wire reordering issues (Benjamin Coddington) [1287788]
-- [fs] nfsv4: Always do open_to_lock_owner if the lock stateid is uninitialised (Benjamin Coddington) [1287788]
-- [fs] nfsv4: Fix atomicity problems with lock stateid updates (Benjamin Coddington) [1287788]
-- [fs] nfsv4.1: Allow parallel OPEN/OPEN_DOWNGRADE/CLOSE (Benjamin Coddington) [1287789]
-- [fs] nfsv4: Check for NULL argument in nfs_*_seqid() functions (Benjamin Coddington) [1287789]
-- [fs] nfsv4: Convert nfs_alloc_seqid() to return an ERR_PTR() if allocation fails (Benjamin Coddington) [1287789]
-- [fs] nfsv4: We must set NFS_OPEN_STATE flag in nfs_resync_open_stateid_locked (Benjamin Coddington) [1287789]
-- [fs] nfsv4: More CLOSE/OPEN races (Benjamin Coddington) [1287789]
-- [fs] nfs: Fix stateid used for NFS v4 closes (Benjamin Coddington) [1287789]
-- [fs] nfsv4: Fix an atomicity problem in CLOSE (Benjamin Coddington) [1287789]
-- [fs] gfs2: change gfs2 readdir cookie (Benjamin Marzinski) [1138749]
-- [fs] gfs2: keep offset when splitting dir leaf blocks (Benjamin Marzinski) [1138749]
-- [fs] sunrpc: Use MSG_SENDPAGE_NOTLAST in xs_send_pagedata() (Steve Dickson) [1278540]
-- [fs] sunrpc: Move AF_LOCAL receive data path into a workqueue context (Steve Dickson) [1278540]
-- [fs] sunrpc: Move UDP receive data path into a workqueue context (Steve Dickson) [1278540]
-- [fs] sunrpc: drop stale doc comments in xprtsock.c (Steve Dickson) [1278540]
-- [fs] sunrpc: Move TCP receive data path into a workqueue context (Steve Dickson) [1278540]
-- [fs] sunrpc: Fix races between socket connection and destroy code (Steve Dickson) [1278540]
-- [fs] sunrpc: add tracepoints in xs_tcp_data_recv (Steve Dickson) [1278540]
-- [fs] sunrpc: Refactor TCP receive (Steve Dickson) [1278540]
-- [fs] sunrpc: add new tracepoints in xprt handling code (Steve Dickson) [1278540]
-
-* Tue Jan 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-340.el7]
-- [net] add validation for the socket syscall protocol argument (Hannes Frederic Sowa) [1291618] {CVE-2015-8543}
-- [net] openvswitch: Fix template leak in error cases (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Respect conntrack zone even if invalid (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix helper reference leak (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix skb leak using IPv6 defrag (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] ipv6: Export nf_ct_frag6_consume_orig() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix double-free on ip_defrag() errors (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: checking for IS_ERR() instead of NULL (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] inet: frags: fix defragmented packet's IP header for af_packet (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Serialize nested ct actions if provided (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Mark connections new when not confirmed (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Clarify conntrack COMMIT behaviour (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Reject ct_state masks for unknown bits (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Change CT_ATTR_FLAGS to CT_ATTR_COMMIT (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Extend ct_state match field to 32 bits (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Reject ct_state unsupported bits (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Ensure flow is valid before executing ct (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix skb leak in ovs_fragment() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix typos in CT headers (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix IPv6 exthdr handling with ct helpers (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Rename LABEL->LABELS (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openswitch: fix typo CONFIG_NF_CONNTRACK_LABEL (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix dependency on IPv6 defrag (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Remove conntrack Kconfig option (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Include ip6_fib.h (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: Define v6ops in !CONFIG_NETFILTER case (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Allow attaching helpers to ct action (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Allow matching on conntrack label (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: connlabels: Export setting connlabel length (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: Always export nf_connlabels_replace() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Allow matching on conntrack mark (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Add conntrack action (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] rhel: use dummy net_device for tunnels (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Move dev pointer into vport itself (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] dst: Metadata destinations (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] ipv4: don't forward defragmented DF packet (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] ipv4: avoid repeated calls to ip_skb_dst_mtu helper (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: bridge: No ICMP packet on IPv4 fragmentation error (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: provide v6ops->fragment to forward IPv6 fragmented packets (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: make nf_ct_zone_dflt built-in (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: add efficient mark to zone mapping (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: add direction support for zones (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: push zone object into functions (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: remove dead code (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: conntrack: use nf_ct_tmpl_free in CT/synproxy error paths (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: conntrack: Use flags in nf_ct_tmpl_alloc() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: xt_connlimit: honor conntrack zone if available (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: ctnetlink: add zone size to length (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: bridge: simplify test with nf_bridge_in_prerouting (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: fix netns dependencies with conntrack templates (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Make tunnel set action attach a metadata dst (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: include datapath actions with sampled-packet upcall to userspace (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] dst: Add __skb_dst_copy() variation (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] ipv6: Export nf_ct_frag6_gather() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Move MASKED* macros to datapath.h (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Serialize acts with original netlink len (Thadeu Lima de Souza Cascardo) [1274845]
-
-* Tue Jan 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-339.el7]
-- [kernel] rcu: Make rcu_barrier() understand about missing rcuo kthreads (Seth Jennings) [1208895]
-- [kernel] rcu: create rcu threads only for online cpus at boot time (Seth Jennings) [1208895]
-- [kernel] rcu: Rationalize kthread spawning (Seth Jennings) [1208895]
-- [kernel] tracing: Cleanup saved_cmdlines_size changes (Steven Rostedt) [1117093]
-- [kernel] tracing: Introduce saved_cmdlines_size file (Steven Rostedt) [1117093]
-- [kernel] tracing: Move locking of trace_cmdline_lock into start/stop seq calls (Steven Rostedt) [1117093]
-- [kernel] tracing: Try again for saved cmdline if failed due to locking (Steven Rostedt) [1117093]
-- [kernel] tracing: Have saved_cmdlines use the seq_read infrastructure (Steven Rostedt) [1117093]
-- [x86] mm: Fix CR2 corruption when tracing page faults (Steven Rostedt) [1260605]
-- [lib] idr: fix out-of-bounds pointer dereference (Jerome Marchand) [1285333]
-- [kernel] sched/numa: Fix initialization of sched_domain_topology for NUMA (Jerome Marchand) [1285333]
-- [mm] fix use-after-free in sys_remap_file_pages (Jerome Marchand) [1285333]
-- [mm] memcg: oom_notify use-after-free fix (Rafael Aquini) [1294114]
-- [powerpc] kvm: book3s: Don't dynamically split core when already split (Thomas Huth) [1287474]
-- [powerpc] mm: Differentiate between hugetlb and THP during page walk (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Handle H_DOORBELL on the guest exit path (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Make H_REMOVE return correct HPTE value for absent HPTEs (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Don't fall back to smaller HPT size in allocation ioctl (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Deliver machine check with MSR(RI=0) to guest as MCE (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Pass the correct trap argument to kvmhv_commence_exit (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Fix typo in top comment about locking (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Fix size of the PSPB register (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Implement H_CLEAR_REF and H_CLEAR_MOD (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Fix bug in dirty page tracking (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Fix race in reading change bit when removing HPTE (Thomas Huth) [1287474]
-- [powerpc] kvm: Fix warnings from sparse (Thomas Huth) [1287474]
-- [powerpc] kvm: Use READ_ONCE when dereferencing pte_t pointer (Thomas Huth) [1287474]
-- [powerpc] mm: Fix compile errors with STRICT_MM_TYPECHECKS enabled (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Minor cleanups (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Accumulate timing information for real-mode code (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Add ICP real mode counters (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Move virtual mode ICP functions to real-mode (Thomas Huth) [1287474]
-- [powerpc] kvm: Fix SMP=n build error in book3s_xics.c (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Convert ICS mutex lock to spin lock (Thomas Huth) [1287474]
-- [powerpc] lib: Export __spin_yield (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Add guest->host real mode completion counters (Thomas Huth) [1287474]
-- [powerpc] kvm: Cleanup KVM emulated load/store endian handling (Thomas Huth) [1287474]
-- [powerpc] kvm: Create proper names for the kvm_host_state PMU fields (Thomas Huth) [1287474]
-
-* Mon Jan 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-338.el7]
-- [powercap] rapl: Enable Broxton RAPL support (Steve Best) [1274035]
-- [powercap] rapl: disable the 2nd power limit properly (Steve Best) [1274035]
-- [powercap] rapl: Add support for Broadwell-H (Steve Best) [1274035]
-- [powercap] rapl: Add support for Skylake H/S (Steve Best) [1274035]
-- [powercap] rapl: Support Knights Landing (Steve Best) [1274035]
-- [powercap] rapl: Floor frequency setting in Atom SoC (Steve Best) [1274035]
-- [powercap] rapl: Add support for Intel Skylake processors (Steve Best) [1274035]
-- [powercap] rapl: mark rapl_ids array as __initconst (Steve Best) [1274035]
-- [powercap] rapl: add ID for Broadwell server (Steve Best) [1274035]
-- [powercap] rapl: handle domains with different energy units (Steve Best) [1274035]
-- [powercap] rapl: add IDs for future Xeon CPUs (Steve Best) [1274035]
-- [powercap] rapl: add new model ids (Steve Best) [1274035]
-- [powercap] rapl: handle atom and core differences (Steve Best) [1274035]
-- [x86] iosf: Added Quark MBI identifiers (Steve Best) [1274035]
-- [x86] iosf: Make IOSF driver modular and usable by more drivers (Steve Best) [1274035]
-- [x86] New MailBox support driver for Intel SOC's (Steve Best) [1274035]
-- [powercap] rapl: abstract per cpu type functions (Steve Best) [1274035]
-- [powercap] intel-rapl: Fix CPU hotplug callback registration (Steve Best) [1274035]
-- [powerpc] kvm: Increase memslots to 512 (Thomas Huth) [1248390 1276254]
-- [powerpc] kvm: Implement extension to report number of memslots (Thomas Huth) [1248390 1276254]
-- [mmc] core: Use MMC_UNSAFE_RESUME as default behavior (Don Zickus) [1105882 1250748]
-- [mmc] core: Add shutdown callback for (e)MMC bus_ops (Don Zickus) [1250748]
-- [mmc] core: Handle both poweroff notification types for eMMC (Don Zickus) [1250748]
-- [mmc] core: Add shutdown callback for SD bus_ops (Don Zickus) [1250748]
-- [mmc] core: Extend shutdown sequence to handle bus operations (Don Zickus) [1250748]
-- [mmc] core: Handle card shutdown from mmc_bus (Don Zickus) [1250748]
-- [mmc] core: Initiate suspend|resume from mmc bus instead of mmc host (Don Zickus) [1250748]
-- [mmc] core: Push common suspend|resume code into each bus_ops (Don Zickus) [1250748]
-- [mmc] core: Validate suspend prerequisites for SDIO at SUSPEND_PREPARE (Don Zickus) [1250748]
-- [mmc] core: Remove unnecessary check for the remove callback (Don Zickus) [1250748]
-- [mmc] core: Restructure and simplify code for mmc sleep|awake (Don Zickus) [1250748]
-- [mmc] core: Support aggressive power management for (e)MMC/SD (Don Zickus) [1250748]
-- [mmc] block: Enable runtime pm for mmc blkdevice (Don Zickus) [1250748]
-- [mmc] core: Add bus_ops for runtime pm callbacks (Don Zickus) [1250748]
-- [mmc] core: Stop bkops for eMMC only from mmc suspend (Don Zickus) [1250748]
-- [mmc] reordered shutdown sequence in mmc_bld_remove_req (Don Zickus) [1250748]
-- [mmc] core: sd: implement proper support for sd3.0 au sizes (Don Zickus) [1246798]
-- [mmc] sd: fix the maximum au_size for SD3.0 (Don Zickus) [1246798]
-
-* Thu Jan 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-337.el7]
-- [powerpc] kvm: Fix emulation of H_SET_DABR/X on POWER8 (Thomas Huth) [1219234]
-- [hwmon] coretemp: Increase limit of maximum core ID from 32 to 128 (Prarit Bhargava) [1262752]
-- [block] Return EBUSY from BLKRRPART for mounted whole-dev fs (Eric Sandeen) [1285549]
-- [block] nvme: Fix filesystem deadlock on removal (David Milburn) [1279699]
-- [x86] fix KABI wreckage in xsave_hdr_struct (Prarit Bhargava) [1296120]
-- [x86] acpi: Enhance error injection tolerance level (Steve Best) [1271809]
-- [x86] cpu: Fix trivial printk formatting issues with dmesg (Stanislav Kozina) [1232441]
-- [fs] nfsd4: fix gss-proxy 4.1 mounts for some AD principals ("J. Bruce Fields") [1283341]
-- [fs] nfsd: fix unlikely NULL deref in mach_creds_match ("J. Bruce Fields") [1283341]
-- [fs] nfsd: minor consolidation of mach_cred handling code ("J. Bruce Fields") [1283341]
-- [fs] nfsd: helper for dup of possibly NULL string ("J. Bruce Fields") [1283341]
-- [fs] svcrpc: move some initialization to common code ("J. Bruce Fields") [1283341]
-- [fs] gfs2: Protect freeing directory hash table with i_lock spin_lock (Robert S Peterson) [1276477]
-- [fs] nfs: Fix a NULL pointer dereference of migration recovery ops for v4.2 client (Benjamin Coddington) [1290679]
-- [fs] ext4: fix race between truncate and __ext4_journalled_writepage() (Lukas Czerner) [1169730]
-- [fs] cache: make cache flushing more reliable ("J. Bruce Fields") [1274897]
-- [md] dm-thin: fix race condition when destroying thin pool workqueue (Mike Snitzer) [1292603]
-- [md] dm: fix AB-BA deadlock in __dm_destroy() (Mike Snitzer) [1292481]
-- [md] dm-thin: fix regression in advertised discard limits (Mike Snitzer) [1284833]
-- [md] dm-thin-metadata: fix bug in dm_thin_remove_range() (Mike Snitzer) [1284833]
-
-* Tue Jan 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-336.el7]
-- [x86] mpx: Do not set ->vm_ops on MPX VMAs (Rui Wang) [1138650]
-- [x86] remove trailing slash from define to please debugedit (Rui Wang) [1138650]
-- [x86] mpx: Allow 32-bit binaries on 64-bit kernels again (Rui Wang) [1138650]
-- [x86] mpx: Do not count MPX VMAs as neighbors when unmapping (Rui Wang) [1138650]
-- [x86] mpx: Rewrite the unmap code (Rui Wang) [1138650]
-- [x86] mpx: Support 32-bit binaries on 64-bit kernels (Rui Wang) [1138650]
-- [x86] mpx: Use 32-bit-only cmpxchg() for 32-bit apps (Rui Wang) [1138650]
-- [x86] mpx: Introduce new 'directory entry' to 'addr' helper function (Rui Wang) [1138650]
-- [x86] mpx: Add temporary variable to reduce masking (Rui Wang) [1138650]
-- [x86] Make is_64bit_mm() widely available (Rui Wang) [1138650]
-- [x86] mpx: Trace allocation of new bounds tables (Rui Wang) [1138650]
-- [x86] mpx: Trace the attempts to find bounds tables (Rui Wang) [1138650]
-- [x86] mpx: Trace entry to bounds exception paths (Rui Wang) [1138650]
-- [x86] mpx: Trace #BR exceptions (Rui Wang) [1138650]
-- [x86] mpx: Introduce a boot-time disable flag (Rui Wang) [1138650]
-- [x86] mpx: Restrict the mmap() size check to bounds tables (Rui Wang) [1138650]
-- [x86] mpx: Remove redundant MPX_BNDCFG_ADDR_MASK (Rui Wang) [1138650]
-- [x86] mpx: Clean up the code by not passing a task pointer around when unnecessary (Rui Wang) [1138650]
-- [x86] mpx: Use the new get_xsave_field_ptr()API (Rui Wang) [1138650]
-- [x86] fpu/xstate: Wrap get_xsave_addr() to make it safer (Rui Wang) [1138650]
-- [x86] fpu/xstate: Fix up bad get_xsave_addr() assumptions (Rui Wang) [1138650]
-- [x86] kvm: support XSAVES usage in the host (Rui Wang) [1138650]
-- [x86] asm/decoder: Fix and enforce max instruction size in the insn decoder (Rui Wang) [1138650]
-- [x86] Fix off-by-one in instruction decoder (Rui Wang) [1138650]
-- [x86] add user_atomic_cmpxchg_inatomic at uaccess.h (Rui Wang) [1138650]
-- [x86] asm/entry/32: Fix user_mode() misuses (Rui Wang) [1138650]
-- [x86] mpx: Explicitly disable 32-bit MPX support on 64-bit kernels (Rui Wang) [1138650]
-- [x86] traps: Fix always true condition (Rui Wang) [1138650]
-- [x86] export get_xsave_addr (Rui Wang) [1138650]
-- [x86] mpx: Change return type of get_reg_offset() (Rui Wang) [1138650]
-- [x86] mpx: Add documentation on Intel MPX (Rui Wang) [1138650]
-- [mm] Make arch_unmap()/bprm_mm_init() available to all architectures (Rui Wang) [1138650]
-- [x86] mpx: Cleanup unused bound tables (Rui Wang) [1138650]
-- [x86] mpx: On-demand kernel allocation of bounds tables (Rui Wang) [1138650]
-- [x86] mpx: Decode MPX instruction to get bound violation information (Rui Wang) [1138650]
-- [x86] mpx: Extend siginfo structure to include bound violation information (Rui Wang) [1138650]
-- [x86] mpx: Add MPX to disabled features (Rui Wang) [1138650]
-- [x86] mpx: Rename cfg_reg_u and status_reg (Rui Wang) [1138650]
-- [x86] mpx: Add MPX-specific mmap interface (Rui Wang) [1138650]
-- [x86] mpx: Introduce VM_MPX to indicate that a VMA is MPX specific (Rui Wang) [1138650]
-- [x86] mpx: Give bndX registers actual names (Rui Wang) [1138650]
-- [x86] Remove arbitrary instruction size limit in instruction decoder (Rui Wang) [1138650]
-- [x86] perf: Fix arch_perf_out_copy_user default (Rui Wang) [1138650]
-- [x86] Add more disabled features (Rui Wang) [1138650]
-- [x86] Introduce disabled-features (Rui Wang) [1138650]
-- [x86] Axe the lightly-used cpu_has_pae (Rui Wang) [1138650]
-- [x86] cpu: Kill cpu_has_mp (Rui Wang) [1138650]
-- [x86] fpu/xsaves: Fix improper uses of __ex_table (Rui Wang) [1138650]
-- [x86] fpu: Disable XSAVES* support for now (Rui Wang) [1138650]
-- [x86] xsave: Add forgotten inline annotation (Rui Wang) [1138650]
-- [x86] xsaves: Clean up code in xstate offsets computation in xsave area (Rui Wang) [1138650]
-- [x86] xsave: Make it clear that the XSAVE macros use (edi)/(rdi) (Rui Wang) [1138650]
-- [x86] Define kernel API to get address of each state in xsave area (Rui Wang) [1138650]
-- [x86] xsaves: Enable xsaves/xrstors (Rui Wang) [1138650]
-- [x86] xsaves: Call booting time xsaves and xrstors in setup_init_fpu_buf (Rui Wang) [1138650]
-- [x86] xsaves: Save xstate to task's xsave area in __save_fpu during booting time (Rui Wang) [1138650]
-- [x86] xsaves: Add xsaves and xrstors support for booting time (Rui Wang) [1138650]
-- [x86] xsaves: Clear reserved bits in xsave header (Rui Wang) [1138650]
-- [x86] xsaves: Use xsave/xrstor for saving and restoring user space context (Rui Wang) [1138650]
-- [x86] xsaves: Use xsaves/xrstors for context switch (Rui Wang) [1138650]
-- [x86] xsaves: Use xsaves/xrstors to save and restore xsave area (Rui Wang) [1138650]
-- [x86] xsaves: Define a macro for handling xsave/xrstor instruction fault (Rui Wang) [1138650]
-- [x86] xsaves: Define macros for xsave instructions (Rui Wang) [1138650]
-- [x86] xsaves: Change compacted format xsave area header (Rui Wang) [1138650]
-- [x86] Add alternative_input_2 to support alternative with two features and input (Rui Wang) [1138650]
-- [x86] xsaves: Add a kernel parameter noxsaves to disable xsaves/xrstors (Rui Wang) [1138650]
-
-* Tue Dec 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-335.el7]
-- [acpi] tables: test the correct variable (Prarit Bhargava) [1242556]
-- [x86] acpi: Handle apic/x2apic entries in MADT in correct order (Prarit Bhargava) [1242556]
-- [acpi] tables: Add acpi_subtable_proc to ACPI table parsers (Prarit Bhargava) [1242556]
-- [acpi] table: Always count matched and successfully parsed entries (Prarit Bhargava) [1242556]
-- [acpi] table: Add new function to get table entries (Prarit Bhargava) [1242556]
-- [scsi] scsi_sysfs: protect against double execution of __scsi_remove_device() (Vitaly Kuznetsov) [1273723]
-- [s390] dasd: fix list_del corruption after lcu changes (Hendrik Brueckner) [1284020]
-- [s390] dasd: fix disconnected device with valid path mask (Hendrik Brueckner) [1284021]
-- [s390] dasd: fix invalid PAV assignment after suspend/resume (Hendrik Brueckner) [1284022]
-- [netdrv] bonding: propagate LRO disable to slave devices (Jarod Wilson) [1266578]
-- [netdrv] iwlwifi: edit the 3165 series and 8000 series PCI IDs (Stanislaw Gruszka) [1279780]
-- [netdrv] iwlwifi: Add new PCI IDs for the 8260 series (Stanislaw Gruszka) [1279780]
-- [netdrv] iwlwifi: pci: add a few more PCI subvendor IDs for the 7265 series (Stanislaw Gruszka) [1287564]
-- [kernel] pidns: alloc_pid() leaks pid_namespace if child_reaper is exiting (Aristeu Rozanski) [1284819]
-- [cpufreq] intel_pstate: Fix limits->max_perf rounding error (Prarit Bhargava) [1279617]
-- [cpufreq] intel_pstate: Fix limits->max_policy_pct rounding error (Prarit Bhargava) [1279617]
-- [cpufreq] revert "intel_pstate: fix rounding error in max_freq_pct" (Prarit Bhargava) [1279617]
-- [powerpc] kvm: Remove PPC970 from KVM_BOOK3S_64_HV text in Kconfig (Thomas Huth) [1287973]
-- [powerpc] kvm: Fix ppc64_defconfig + PPC_POWERNV=n build error (Thomas Huth) [1287973]
-- [powerpc] kvm: book3s_hv: Remove RMA-related variables from code (Thomas Huth) [1287973]
-- [powerpc] kvm: book3s_hv: Remove code for PPC970 processors (Thomas Huth) [1287973]
-- [powerpc] Add POWER8 CPU selection (Gustavo Duarte) [1213264]
-- [powerpc] tm: Check for already reclaimed tasks (Gustavo Duarte) [1276293]
-- [powerpc] tm: Block signal return setting invalid MSR state (Gustavo Duarte) [1276293]
-- [thermal] intel_powerclamp: add __init / __exit annotations (Steve Best) [1274036]
-- [thermal] powerclamp: add id for braswell cpu (Steve Best) [1274036]
-
-* Tue Dec 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-334.el7]
-- [mm] use only per-device readahead limit (Eric Sandeen) [1280355]
-- [md] revert "dm-mpath: fix stalls when handling invalid ioctls" (Mike Snitzer) [1277194]
-- [net] ipvs: fix ipv6 hook registration for local replies (Florian Westphal) [1272673]
-- [net] ipv6: update ip6_rt_last_gc every time GC is run (Hannes Frederic Sowa) [1270092]
-- [net] vsock: Fix lockdep issue (Dave Anderson) [1253971]
-- [net] vsock: sock_put wasn't safe to call in interrupt context (Dave Anderson) [1253971]
-- [net] af_iucv: avoid path quiesce of severed path in shutdown() (Hendrik Brueckner) [1272089]
-- [x86] kernel: Set X86_FEATURE_EXTD_APICID for future processors (Kim Naru) [1271351]
-- [x86] gart: Check for GART support before accessing GART registers (Kim Naru) [1271351]
-- [x86] asm: Add support for the CLWB instruction (Steve Best) [1253832]
-- [x86] mm: Add kerneldoc comments for pcommit_sfence() (Steve Best) [1253104]
-- [x86] asm: Add support for the pcommit instruction (Steve Best) [1253104]
-- [x86] kernel: Use larger chunks in mtrr_cleanup (Prarit Bhargava) [1243952]
-- [x86] cpu: Trim model ID whitespace (Prarit Bhargava) [1192048]
-- [x86] cpu: Strip any /proc/cpuinfo model name field whitespace (Prarit Bhargava) [1192048]
-- [acpi] add dynamic_debug support (Prarit Bhargava) [1267582]
-- [acpi] processor: use acpi_evaluate_ost() to replace open-coded version (Prarit Bhargava) [1275178]
-- [tools] cpupower: Fix error when running cpupower monitor (Prarit Bhargava) [1260055]
-- [kernel] module: fix sprintf format specifier in param_get_byte() (Jeremy McNicoll) [1261189]
-- [powerpc] eeh: Fix recursive fenced PHB on Broadcom shiner adapter (Steve Best) [1274631]
-- [powerpc] eeh: Fix fenced PHB caused by eeh_slot_error_detail() (Steve Best) [1274631]
-
-* Mon Nov 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-333.el7]
-- [fs] sunrpc: Fix stupid typo in xs_sock_set_reuseport (Steve Dickson) [1270038]
-- [fs] sunrpc: Define xs_tcp_fin_timeout only if CONFIG_SUNRPC_DEBUG (Steve Dickson) [1270038]
-- [fs] sunrpc: Handle connection reset more efficiently (Steve Dickson) [1270038]
-- [fs] sunrpc: Remove the redundant XPRT_CONNECTION_CLOSE flag (Steve Dickson) [1270038]
-- [fs] sunrpc: Make xs_tcp_close() do a socket shutdown rather than a sock_release (Steve Dickson) [1270038]
-- [fs] sunrpc: Ensure xs_tcp_shutdown() requests a full close of the connection (Steve Dickson) [1270038]
-- [fs] sunrpc: Cleanup to remove remaining uses of XPRT_CONNECTION_ABORT (Steve Dickson) [1270038]
-- [fs] sunrpc: Remove TCP socket linger code (Steve Dickson) [1270038]
-- [fs] sunrpc: Remove TCP client connection reset hack (Steve Dickson) [1270038]
-- [fs] sunrpc: TCP/UDP always close the old socket before reconnecting (Steve Dickson) [1270038]
-- [fs] sunrpc: Add helpers to prevent socket create from racing (Steve Dickson) [1270038]
-- [fs] sunrpc: Ensure xs_reset_transport() resets the close connection flags (Steve Dickson) [1270038]
-- [fs] sunrpc: Do not clear the source port in xs_reset_transport (Steve Dickson) [1270038]
-- [fs] sunrpc: Handle EADDRINUSE on connect (Steve Dickson) [1270038]
-- [fs] sunrpc: Set SO_REUSEPORT socket option for TCP connections (Steve Dickson) [1270038]
-- [fs] xfs: stats are no longer dependent on CONFIG_PROC_FS (Bill O'Donnell) [1269281]
-- [fs] xfs: fix an error code in xfs_fs_fill_super() (Bill O'Donnell) [1269281]
-- [fs] xfs: per-filesystem stats counter implementation (Bill O'Donnell) [1269281]
-- [fs] xfs: per-filesystem stats in sysfs (Bill O'Donnell) [1269281]
-- [fs] xfs: pass xfsstats structures to handlers and macros (Bill O'Donnell) [1269281]
-- [fs] xfs: consolidate sysfs ops (Bill O'Donnell) [1269281]
-- [fs] xfs: remove unused procfs code (Bill O'Donnell) [1269281]
-- [fs] xfs: create symlink proc/fs/xfs/stat to sys/fs/xfs/stats (Bill O'Donnell) [1269281]
-- [fs] xfs: create global stats and stats_clear in sysfs (Bill O'Donnell) [1269281]
-- [fs] xfs: add mssing inode cache attempts counter increment (Bill O'Donnell) [1269281]
-- [fs] dlm: print error from kernel_sendpage (Robert S Peterson) [1267339]
-- [fs] svcrdma: Add zero padding if the client doesn't send it (Sachin Prabhu) [1272151]
-- [fs] xfs: return errors from partial I/O failures to files (David Jeffery) [1256940]
-- [fs] nfsv4: don't set SETATTR for O_RDONLY|O_EXCL (Benjamin Coddington) [1269974]
-
-* Thu Nov 19 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-332.el7]
-- [x86] paravirt: Replace the paravirt nop with a bona fide empty function (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Fix a paravirt stack-clobbering bug in the NMI code (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Use DF to avoid userspace RSP confusing nested NMI detection (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Reorder nested NMI checks (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Improve nested NMI comments (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Switch stacks on userspace NMI entry (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] cpufeatures: Enable cpuid for Intel SHA extensions (Prarit Bhargava) [1260249]
-- [kernel] tick: broadcast: Prevent livelock from event handler (Prarit Bhargava) [1265283]
-- [kernel] clockevents: Serialize calls to clockevents_update_freq() in the core (Prarit Bhargava) [1265283]
-- [kernel] sched: Robustify topology setup (Gustavo Duarte) [1278875]
-- [kernel] sched: Don't set sd->child to NULL when it is already NULL (Gustavo Duarte) [1278875]
-- [cpufreq] pcc-cpufreq: Fix wait_event() under spinlock (Linda Knippers) [1275327]
-- [security] keys: Don't permit request_key() to construct a new keyring (David Howells) [1273465] {CVE-2015-7872}
-- [security] keys: Fix crash when attempt to garbage collect an uninstantiated keyring (David Howells) [1273465] {CVE-2015-7872}
-- [security] keys: Fix race between key destruction and finding a keyring by name (David Howells) [1273465] {CVE-2015-7872}
-
-* Wed Nov 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-331.el7]
-- [ata] ahci: Add Device ID for Intel Sunrise Point PCH (Charles Rose) [1278402]
-- [s390] pci: handle events for unused functions (Hendrik Brueckner) [1272098]
-- [s390] pci: improve handling of hotplug event 0x301 (Hendrik Brueckner) [1272098]
-- [s390] pci: improve state check when processing hotplug events (Hendrik Brueckner) [1272098]
-- [s390] 3270: redraw screen on unsolicited device end (Hendrik Brueckner) [1262729]
-- [s390] dasd: fix kernel panic when alias is set offline (Hendrik Brueckner) [1256431]
-- [s390] dasd: check for availability of prefix command during format (Hendrik Brueckner) [1272991]
-- [s390] kernel: correct uc_sigmask of the compat signal frame (Hendrik Brueckner) [1272096]
-- [misc] genwqe: get rid of atomic allocations (Hendrik Brueckner) [1270244]
-- [char] vtpm: fix memory allocation flag for rtce buffer at kernel boot (Gustavo Duarte) [1263595]
-- [tools] power: turbostat: KNL workaround for Busy and Avg_MHz (Steve Best) [1263965]
-- [block] virtio-blk: Allow extended partitions (Fam Zheng) [1232471]
-- [netdrv] igb: add support for 1512 PHY (Stefan Assmann) [1262946]
-- [netdrv] sfc: push partner queue for skb->xmit_more (Jarod Wilson) [1267167]
-- [netdrv] sfc: replace spinlocks with bit ops for busy poll locking (Jarod Wilson) [1267167]
-- [netdrv] mlx5e: Disable VLAN filter in promiscuous mode (Kamal Heib) [1271846]
-- [netdrv] mlx4: Remove shared_ports variable at mlx4_enable_msi_x (Kamal Heib) [1266690]
-- [netdrv] mlx4_core: Avoid failing the interrupts test (Kamal Heib) [1266690]
-- [crypto] nx: 842 - Add CRC and validation support (Gustavo Duarte) [1264905]
-- [powerpc] mm: Recompute hash value after a failed update (Gustavo Duarte) [1264920]
-- [powerpc] eeh: More relaxed condition for enabled IO path (Steve Best) [1274731]
-- [powerpc] eeh: Wrong place to call pci_get_slot() (Steve Best) [1273996]
-
-* Thu Nov 12 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-330.el7]
-- [of] implement of_node_to_nid as a weak function (Steve Best) [1273978]
-- [pci] Use function 0 VPD for identical functions, regular VPD for others (Myron Stowe) [1258319]
-- [pci] Fix devfn for VPD access through function 0 (Myron Stowe) [1258319]
-- [pci] Add VPD function 0 quirk for Intel Ethernet devices (Myron Stowe) [1258319]
-- [pci] Add dev_flags bit to access VPD through function 0 (Myron Stowe) [1258319]
-- [net] ipv6: drop frames with attached skb->sk in forwarding (Hannes Frederic Sowa) [1243966]
-- [net] ipv6: ip6_forward: perform skb->pkt_type check at the beginning (Hannes Frederic Sowa) [1243966]
-- [x86] kvm: svm: unconditionally intercept #DB (Paolo Bonzini) [1279470] {CVE-2015-8104}
-- [cpufreq] intel_pstate: fix rounding error in max_freq_pct (Prarit Bhargava) [1263866]
-
-* Wed Nov 11 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-329.el7]
-- [mm] let mm_find_pmd fix buggy race with THP fault (Larry Woodman) [1273993]
-- [mm] ksm: unstable_tree_search_insert error checking cleanup (Andrea Arcangeli) [1274871]
-- [mm] ksm: use find_mergeable_vma in try_to_merge_with_ksm_page (Andrea Arcangeli) [1274871]
-- [mm] ksm: use the helper method to do the hlist_empty check (Andrea Arcangeli) [1274871]
-- [mm] ksm: don't fail stable tree lookups if walking over stale stable_nodes (Andrea Arcangeli) [1274871]
-- [mm] ksm: add cond_resched() to the rmap_walks (Andrea Arcangeli) [1274871]
-- [x86] mm: fix VM_FAULT_RETRY handling (Andrea Arcangeli) [1277226]
-- [x86] mm: consolidate VM_FAULT_RETRY handling (Andrea Arcangeli) [1277226]
-- [x86] mm: move mmap_sem unlock from mm_fault_error() to caller (Andrea Arcangeli) [1277226]
-- [x86] virt: guest to host DoS by triggering an infinite loop in microcode (Paolo Bonzini) [1277561] {CVE-2015-5307}
-- [net] sctp: Fix race between OOTB responce and route removal (Jamie Bainbridge) [1277309]
-- [powerpc] kvm: book3s_hv: Synthesize segment fault if SLB lookup fails (Thomas Huth) [1269467]
-- [powerpc] kvm: book3s_hv: Create debugfs file for each guest's HPT (David Gibson) [1273692]
-- [powerpc] kvm: book3s_hv: Add helpers for lock/unlock hpte (David Gibson) [1273692]
-
-* Mon Nov 09 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-328.el7]
-- [md] raid10: don't clear bitmap bit when bad-block-list write fails (Jes Sorensen) [1267652]
-- [md] raid1: don't clear bitmap bit when bad-block-list write fails (Jes Sorensen) [1267652]
-- [md] raid10: submit_bio_wait() returns 0 on success (Jes Sorensen) [1267652]
-- [md] raid1: submit_bio_wait() returns 0 on success (Jes Sorensen) [1267652]
-- [md] crash in md-raid1 and md-raid10 due to incorrect list manipulation (Jes Sorensen) [1267652]
-- [md] raid10: ensure device failure recorded before write request returns (Jes Sorensen) [1267652]
-- [md] raid1: ensure device failure recorded before write request returns (Jes Sorensen) [1267652]
-- [x86] kvm: mmu: fix validation of mmio page fault (Bandan Das) [1267128]
-- [block] nvme: Fix memory leak on retried commands (David Milburn) [1271860]
-- [netdrv] macvtap: unbreak receiving of gro skb with frag list (Jason Wang) [1273737]
-- [cpufreq] intel_pstate: fix PCT_TO_HWP macro (Prarit Bhargava) [1264990]
-- [cpufreq] revert "intel_pstate: add quirk to disable HWP on Skylake-S processors" (Prarit Bhargava) [1264990]
-- [cpufreq] revert "intel_pstate: disable Skylake processors" (Prarit Bhargava) [1264990]
-- [powerpc] pci: initialize hybrid_dma_data before use (Laurent Vivier) [1270717]
-
-* Thu Oct 29 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-327.el7]
-- [mm] free compound page with correct order (Andrea Arcangeli) [1274867]
-- [netdrv] revert "ixgbe: Refactor busy poll socket code to address multiple issues" (John Greene) [1261275]
-- [powerpc] dma: dma_set_coherent_mask() should not be GPL only (Gustavo Duarte) [1275976]
-
-* Fri Oct 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-326.el7]
-- [md] dm-cache: the CLEAN_SHUTDOWN flag was not being set (Mike Snitzer) [1274450]
-- [md] dm-btree: fix leak of bufio-backed block in btree_split_beneath error path (Mike Snitzer) [1274393]
-- [md] dm-btree-remove: fix a bug when rebalancing nodes after removal (Mike Snitzer) [1274396]
-- [fs] nfsd: fix duplicated destroy_delegation code introduced by backport ("J. Bruce Fields") [1273228]
-- [fs] xfs: validate transaction header length on log recovery (Brian Foster) [1164135]
-- [net] ipv6: don't use CHECKSUM_PARTIAL on MSG_MORE/UDP_CORK sockets (Hannes Frederic Sowa) [1271759]
-- [net] add length argument to skb_copy_and_csum_datagram_iovec (Sabrina Dubroca) [1269228]
-- [x86] kvm: fix edge EOI and IOAPIC reconfig race (Radim Krcmar) [1271333]
-- [x86] kvm: set KVM_REQ_EVENT when updating IRR (Radim Krcmar) [1271333]
-- [kernel] Initialize msg/shm IPC objects before doing ipc_addid() (Lennert Buytenhek) [1271507] {CVE-2015-7613}
-
-* Fri Oct 16 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-325.el7]
-- [fs] nfsd: ensure that delegation stateid hash references are only put once ("J. Bruce Fields") [1233284]
-- [fs] nfsd: ensure that the ol stateid hash reference is only put once ("J. Bruce Fields") [1233284]
-- [fs] nfsv4: Fix a nograce recovery hang (Benjamin Coddington) [1264478]
-- [fs] vfs: Test for and handle paths that are unreachable from their mnt_root ("Eric W. Biederman") [1209371] {CVE-2015-2925}
-- [fs] dcache: Handle escaped paths in prepend_path ("Eric W. Biederman") [1209371] {CVE-2015-2925}
-- [fs] xfs: add an xfs_zero_eof() tracepoint (Brian Foster) [1260383]
-- [fs] xfs: always drain dio before extending aio write submission (Brian Foster) [1260383]
-- [md] dm-cache: fix NULL pointer when switching from cleaner policy (Mike Snitzer) [1269959]
-- [mm] Temporary fix for BUG_ON() triggered by THP vs. gup() race (David Gibson) [1268999]
-- [hid] usbhid: improve handling of Clear-Halt and reset (Don Zickus) [1260123]
-- [drm] qxl: fix framebuffer dirty rectangle tracking (Gerd Hoffmann) [1268293]
-- [s390] hmcdrv: fix interrupt registration (Hendrik Brueckner) [1262735]
-- [block] blk-mq: fix deadlock when reading cpu_list (Jeff Moyer) [1260615]
-- [block] blk-mq: avoid inserting requests before establishing new mapping (Jeff Moyer) [1260615]
-- [block] blk-mq: fix q->mq_usage_counter access race (Jeff Moyer) [1260615]
-- [block] blk-mq: Fix use after of free q->mq_map (Jeff Moyer) [1260615]
-- [block] blk-mq: fix sysfs registration/unregistration race (Jeff Moyer) [1260615]
-- [block] blk-mq: avoid setting hctx->tags->cpumask before allocation (Jeff Moyer) [1260615]
-- [netdrv] cxgb4: Enhance driver to update FW, when FW is too old (Sai Vemuri) [1077966]
-- [netdrv] cxgb4: Force uninitialized state if FW in adapter is unsupported (Sai Vemuri) [1077966]
-- [powerpc] revert "Use the POWER8 Micro Partition Prefetch Engine in KVM HV on POWER8" (Thomas Huth) [1269653]
-
-* Tue Oct 13 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-324.el7]
-- [netdrv] i40e/i40evf: set AQ count after memory allocation (Neil Horman) [1267663]
-- [netdrv] i40e: fix offload of GRE tunnels (Neil Horman) [1267663]
-- [netdrv] i40evf: don't blow away MAC address (Neil Horman) [1267663]
-- [netdrv] i40e/i40evf: grab the AQ spinlocks before clearing registers (Neil Horman) [1267663]
-- [netdrv] i40e: Fix a memory leak in X722 rss config path (Neil Horman) [1267663]
-- [netdrv] i40evf: Use numa_mem_id() to better support memoryless node (Neil Horman) [1267663]
-- [netdrv] i40e: Use numa_mem_id() to better support memoryless node (Neil Horman) [1267663]
-- [netdrv] i40e: fix 32 bit build warnings (Neil Horman) [1267663]
-- [netdrv] i40e: fix kbuild warnings (Neil Horman) [1267663]
-- [netdrv] i40evf: tweak init timing (Neil Horman) [1267663]
-- [netdrv] i40e: warn on double free (Neil Horman) [1267663]
-- [netdrv] i40e: refactor interrupt enable (Neil Horman) [1267663]
-- [netdrv] i40e: Strip VEB stats if they are disabled in HW (Neil Horman) [1267663]
-- [netdrv] i40e/i40evf: add new device id 1588 (Neil Horman) [1267663]
-- [netdrv] i40e: Remove useless message (Neil Horman) [1267663]
-- [netdrv] i40e: limit debugfs io ops (Neil Horman) [1267663]
-- [netdrv] i40e: use QOS field consistently (Neil Horman) [1267663]
-- [netdrv] i40e: count drops in netstat interface (Neil Horman) [1267663]
-- [netdrv] i40e/i40evf: fix Tx hang workaround code (Neil Horman) [1267663]
-- [netdrv] i40e: fixup padding issue in get_cee_dcb_cfg_v1_resp (Neil Horman) [1267663]
-- [netdrv] i40e: Fix a port VLAN configuration bug (Neil Horman) [1267663]
-- [netdrv] i40e/i40evf: fix up type clash in i40e_aq_rc_to_posix conversion (Neil Horman) [1267663]
-- [netdrv] i40e: rtnl_lock called twice in i40e_pci_error_resume() (Neil Horman) [1267663]
-- [netdrv] i40evf: missing rtnl_unlock in i40evf_resume() (Neil Horman) [1267663]
-
-* Mon Oct 12 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-323.el7]
-- [scsi] report 'INQUIRY result too short' once (Vitaly Kuznetsov) [1254049]
-- [scsi] scsi_scan: don't dump trace when scsi_prep_async_scan() is called twice (Vitaly Kuznetsov) [1254049]
-- [fs] userfaultfd: add missing mmput() in error path (Andrea Arcangeli) [1263480]
-- [mm] check if section present during memory block registering (Jan Stancek) [1256723]
-- [mm] avoid setting up anonymous pages into file mapping (Larry Woodman) [1261582]
-- [mm] add p[te|md] revert "protnone helpers for use by NUMA balancing" (Thomas Huth) [1256718]
-- [powerpc] revert "mm: convert p[te|md]_numa users to p[te|md]_protnone_numa" (Thomas Huth) [1256718]
-- [powerpc] revert "mm: add paranoid warnings for unexpected DSISR_PROTFAULT" (Thomas Huth) [1256718]
-- [mm] revert "convert p[te|md]_mknonnuma and remaining page table manipulations" (Thomas Huth) [1256718]
-- [mm] revert "numa: Do not mark PTEs pte_numa when splitting huge pages" (Thomas Huth) [1256718]
-- [mm] revert "remove remaining references to NUMA hinting bits and helpers" (Thomas Huth) [1256718]
-- [mm] revert "numa: do not trap faults on the huge zero page" (Thomas Huth) [1256718]
-- [mm] revert "numa: add paranoid check around pte_protnone_numa" (Thomas Huth) [1256718]
-- [mm] revert "numa: avoid unnecessary TLB flushes when setting NUMA hinting entries" (Thomas Huth) [1256718]
-- [powerpc] mm: Change the swap encoding in pte (Thomas Huth) [1256718]
-- [x86] perf: Fix multi-segment problem of perf_event_intel_uncore (Jiri Olsa) [1257825]
-- [lib] partially revert "[lib] vsprintf: implement bitmap printing through '*pb[l]'" (Maurizio Lombardi) [1260118]
-- [drm] radeon: update no_64bit_msi flag for certain ASICs (Oded Gabbay) [1262429]
-- [drm] nouveau: fbcon: take runpm reference when userspace has an open fd (Ben Skeggs) [1176163]
-- [drm] qxl: validate monitors config modes (Dave Airlie) [1242847]
-- [drm] radeon: don't attempt WC mappings on powerpc (Dave Airlie) [1262429]
-- [drm] drm/qxl: recreate the primary surface when the bo is not primary (Dave Airlie) [1258301]
-- [drm] qxl: only report first monitor as connected if we have no state (Dave Airlie) [1258301]
-- [drm] dp_mst: drop cancel work sync in the mstb destroy path (Dave Airlie) [1251331]
-- [drm] dp_mst: split connector registration into two parts (Dave Airlie) [1251331]
-- [drm] dp_mst: update the link_address_sent before sending the link address (Dave Airlie) [1251331]
-- [drm] dp_mst: fixup handling hotplug on port removal (Dave Airlie) [1251331]
-- [drm] dp_mst: don't pass port into the path builder function (Dave Airlie) [1251331]
-- [drm] dp_mst: make functions that always return 0 return void (Dave Airlie) [1251331]
-- [kernel] uprobes: fix kABI broken by the exported return_instance (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Make arch_uretprobe_is_alive(RP_CHECK_CALL) more clever (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Add the "enum rp_check ctx" arg to arch_uretprobe_is_alive() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Change prepare_uretprobe() to (try to) flush the dead frames (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Change handle_trampoline() to flush the frames invalidated by longjmp() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Reimplement arch_uretprobe_is_alive() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Export 'struct return_instance', introduce arch_uretprobe_is_alive() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Change handle_trampoline() to find the next chain beforehand (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Change prepare_uretprobe() to use uprobe_warn() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Send SIGILL if handle_trampoline() fails (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Introduce free_ret_instance() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Introduce get_uprobe() (Oleg Nesterov) [1207373]
-- [kernel] lockdep: Fix a race between /proc/lock_stat and module unload (Jerome Marchand) [1183891]
-- [kernel] lockdep: Fix the module unload key range freeing logic (Jerome Marchand) [1183891]
-- [kernel] module: Free lock-classes if parse_args failed (Jerome Marchand) [1183891]
-- [cpufreq] revert "intel_pstate: honor user space min_perf_pct override on resume" (Prarit Bhargava) [1269518]
-
-* Mon Oct 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-322.el7]
-- [fs] nfs: fix v4.2 SEEK on files over 2 gigs ("J. Bruce Fields") [1262181]
-- [fs] nfs: verify open flags before allowing open (Benjamin Coddington) [1164431]
-- [fs] nfsv4.1: Fix pnfs_put_lseg races (Benjamin Coddington) [1263155]
-- [fs] nfsv4.1: pnfs_send_layoutreturn should use GFP_NOFS (Benjamin Coddington) [1263155]
-- [fs] nfsv4.1: Pin the inode and super block in asynchronous layoutreturns (Benjamin Coddington) [1263155]
-- [fs] nfsv4.1: Pin the inode and super block in asynchronous layoutcommit (Benjamin Coddington) [1263155]
-- [md] raid0: apply base queue limits *before* disk_stack_limits (Jes Sorensen) [1265182]
-- [net] revert "ipv6: Don't reduce hop limit for an interface" (Sabrina Dubroca) [1258324]
-- [x86] kvmclock: abolish PVCLOCK_COUNTS_FROM_ZERO (Radim Krcmar) [1263030]
-- [x86] revert "kvm: x86: zero kvmclock_offset when vcpu0 initializes kvmclock system MSR" (Radim Krcmar) [1263030]
-- [x86] kvm: svm: reset mmu on VCPU reset (Igor Mammedov) [1255217]
-- [edac] sb_edac: correctly fetch DIMM width on Ivy Bridge and Haswell (Aristeu Rozanski) [1112413]
-- [edac] sb_edac: look harder for DDRIO on Haswell systems (Aristeu Rozanski) [1112413]
-- [tools] perf-trace: Fix race condition at the end of started workloads (Jiri Olsa) [1250068]
-- [netdrv] cxgb4: Fix tx flit calculation (Sai Vemuri) [1266248]
-- [netdrv] igb: assume MSI-X interrupts during initialization (Stefan Assmann) [1263625]
-- [cpufreq] intel_pstate: disable Skylake processors (Prarit Bhargava) [1267343]
-- [infiniband] mlx4: Report checksum offload cap for RAW QP when query device (Doug Ledford) [1265795]
-- [infiniband] core: Add support of checksum capability reporting for RC and RAW (Doug Ledford) [1265795]
-
-* Wed Sep 30 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-321.el7]
-- [netdrv] i40e/i40evf: check for stopped admin queue (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: refactor tx timeout logic (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.21 and i40evf to 1.3.13 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add get AQ result command to nvmupdate utility (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add exec_aq command to nvmupdate utility (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add wait states to NVM state machine (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add GetStatus command for nvmupdate (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add handling of writeback descriptor (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: save aq writeback for future inspection (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.9 and i40evf to 1.3.5 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Cache the CEE TLV status returned from firmware (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add VIRTCHNL_VF_OFFLOAD flag (Stefan Assmann) [1267255]
-- [netdrv] i40evf: Remove PF specific register definitions from the VF (Stefan Assmann) [1267255]
-- [netdrv] i40evf: Use the correct defines to match the VF registers (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add capability to gather VEB per TC stats (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add TX/RX outer UDP checksum support for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add support for writeback on ITR feature for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: RSS changes for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Update register.h file for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Update FW API with X722 support (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add flags for X722 capabilities (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add device ids for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e: use BIT and BIT_ULL macros (Stefan Assmann) [1267255]
-- [netdrv] i40e: clean up error status messages (Stefan Assmann) [1267255]
-- [netdrv] i40evf: support virtual channel API version 1.1 (Stefan Assmann) [1267255]
-- [netdrv] i40evf: handle big resets (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add macros for virtual channel API version and device capability (Stefan Assmann) [1267255]
-- [netdrv] i40e: add VF capabilities to virtual channel interface (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Fix and refactor dynamic ITR code (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Bump version to 1.3.6 for i40e and 1.3.2 for i40evf (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add support for pre-allocated pages for PD (Stefan Assmann) [1267255]
-- [netdrv] i40evf: add MAC address filter in open, not init (Stefan Assmann) [1267255]
-- [netdrv] i40evf: don't delete all the filters (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Update the admin queue command header (Stefan Assmann) [1267255]
-- [netdrv] i40evf: Allow for an abundance of vectors (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: improve Tx performance with a small tweak (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Update Flex-10 related device/function capabilities (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add stats to track FD ATR and SB dynamic enable state (Stefan Assmann) [1267255]
-- [netdrv] i40e: Fix for recursive RTNL lock during PROMISC change (Stefan Assmann) [1267254]
-- [netdrv] i40e: Fix RS bit update in Tx path and disable force WB workaround (Stefan Assmann) [1267254]
-- [netdrv] i40e: add GRE tunnel type to csum encoding (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: refactor tx timeout logic (Stefan Assmann) [1267254]
-- [netdrv] i40e: Move i40e_get_head into header file (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: check for stopped admin queue (Stefan Assmann) [1267254]
-- [netdrv] i40e: fix VLAN inside VXLAN (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.21 and i40evf to 1.3.13 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add get AQ result command to nvmupdate utility (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add exec_aq command to nvmupdate utility (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add wait states to NVM state machine (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add GetStatus command for nvmupdate (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add handling of writeback descriptor (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: save aq writeback for future inspection (Stefan Assmann) [1267254]
-- [netdrv] i40e: rename variable to prevent clash of understanding (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.9 and i40evf to 1.3.5 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Cache the CEE TLV status returned from firmware (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add VIRTCHNL_VF_OFFLOAD flag (Stefan Assmann) [1267254]
-- [netdrv] i40e: Remove redundant and unneeded messages (Stefan Assmann) [1267254]
-- [netdrv] i40e: correct spelling error (Stefan Assmann) [1267254]
-- [netdrv] i40e: Fix comment for ethtool diagnostic link test (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add capability to gather VEB per TC stats (Stefan Assmann) [1267254]
-- [netdrv] i40e: Fix ethtool offline diagnostic with netqueues (Stefan Assmann) [1267254]
-- [netdrv] i40e: Fix legacy interrupt mode in the driver (Stefan Assmann) [1267254]
-- [netdrv] i40e: Move function calls to i40e_shutdown instead of i40e_suspend (Stefan Assmann) [1267254]
-- [netdrv] i40e: add RX to port CRC errors label (Stefan Assmann) [1267254]
-- [netdrv] i40e: don't degrade __le16 (Stefan Assmann) [1267254]
-- [netdrv] i40e: Add AQ commands for NVM Update for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add ATR HW eviction support for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e: Add IWARP support for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add TX/RX outer UDP checksum support for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add support for writeback on ITR feature for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: RSS changes for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Update register.h file for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Update FW API with X722 support (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add flags for X722 capabilities (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add device ids for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e: use BIT and BIT_ULL macros (Stefan Assmann) [1267254]
-- [netdrv] i40e: provide correct API version to older VF drivers (Stefan Assmann) [1267254]
-- [netdrv] i40e: support virtual channel API 1.1 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add macros for virtual channel API version and device capability (Stefan Assmann) [1267254]
-- [netdrv] i40e: add VF capabilities to virtual channel interface (Stefan Assmann) [1267254]
-- [netdrv] i40e: clean up unneeded gotos (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Fix and refactor dynamic ITR code (Stefan Assmann) [1267254]
-- [netdrv] i40e: only report generic filters in get_ts_info (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Bump version to 1.3.6 for i40e and 1.3.2 for i40evf (Stefan Assmann) [1267254]
-- [netdrv] i40e: Refine an error message to avoid confusion (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add support for pre-allocated pages for PD (Stefan Assmann) [1267254]
-- [netdrv] i40e: un-disable VF after reset (Stefan Assmann) [1267254]
-- [netdrv] i40e: do a proper reset when disabling a VF (Stefan Assmann) [1267254]
-- [netdrv] i40e: correctly program filters for VFs (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Update the admin queue command header (Stefan Assmann) [1267254]
-- [netdrv] i40e: Remove incorrect #ifdef's (Stefan Assmann) [1267254]
-- [netdrv] i40e: ignore duplicate port VLAN requests (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: improve Tx performance with a small tweak (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Update Flex-10 related device/function capabilities (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add stats to track FD ATR and SB dynamic enable state (Stefan Assmann) [1267254]
-- [netdrv] i40e: Implement ndo_features_check() (Stefan Assmann) [1267254]
-
-* Mon Sep 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-320.el7]
-- [md] raid1: Avoid raid1 resync getting stuck (Jes Sorensen) [1256954]
-- [fs] gfs2: fallocate: do not rely on file_update_time to mark the inode dirty (Andrew Price) [1264521]
-- [fs] gfs2: Update timestamps on fallocate (Andrew Price) [1264521]
-- [fs] gfs2: Update i_size properly on fallocate (Andrew Price) [1264521]
-- [fs] gfs2: Use inode_newsize_ok and get_write_access in fallocate (Andrew Price) [1264521]
-- [fs] revert "nfs: Make close(2) asynchronous when closing NFS O_DIRECT files" (Benjamin Coddington) [1263385]
-- [fs] gfs2: Average in only non-zero round-trip times for congestion stats (Robert S Peterson) [1162821]
-- [fs] lockd: fix rpcbind crash on lockd startup failure ("J. Bruce Fields") [1253782]
-- [fs] Failing to send a CLOSE if file is opened WRONLY and server reboots on a 4.x mount (Benjamin Coddington) [1263376]
-- [fs] fsnotify: fix oops in fsnotify_clear_marks_by_group_flags() (Lukas Czerner) [1247436]
-- [net] sctp: fix race on protocol/netns initialization (Marcelo Leitner) [1251807] {CVE-2015-5283}
-- [x86] Mark Broadwell-DE SoC Supported (Prarit Bhargava) [1131685]
-- [kernel] sched,numa: limit amount of virtual memory scanned in task_numa_work (Rik van Riel) [1261722]
-- [drivers] base: show nohz_full cpus in sysfs (Rik van Riel) [1212618]
-- [drivers] base: show isolated cpus in sysfs (Rik van Riel) [1212618]
-- [cpufreq] intel_pstate: add quirk to disable HWP on Skylake-S processors (Jerry Snitselaar) [1263069]
-- [drivers] core: Add symlink to device-tree from devices with an OF node (Gustavo Duarte) [1258828]
-- [powerpc] device: Add dev_of_node() accessor (Gustavo Duarte) [1258828]
-- [powerpc] iommu: Support "hybrid" iommu/direct DMA ops for coherent_mask < dma_mask (Gustavo Duarte) [1246880]
-- [powerpc] iommu: Cleanup setting of DMA base/offset (Gustavo Duarte) [1246880]
-- [powerpc] iommu: Remove dma_data union (Gustavo Duarte) [1246880]
-- [powerpc] kvm: book3s-hv: Fix handling of interrupted VCPUs (Thomas Huth) [1263568]
-- [powerpc] kvm: Take the kvm->srcu lock in kvmppc_h_logical_ci_load/store() (Thomas Huth) [1263577]
-
-* Tue Sep 22 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-319.el7]
-- [netdrv] cxgb4: Make necessary changes after reverting FCoE (Sai Vemuri) [1258657]
-- [netdrv] revert "cxgb4: add cxgb4_fcoe.c for FCoE" (Sai Vemuri) [1258657]
-- [infiniband] iw_cxgb4: Cleanup register defines/MACROS (Sai Vemuri) [1251611]
-- [infiniband] iw_cxgb4: 32b platform fixes (Sai Vemuri) [1251611]
-- [infiniband] iw_cxgb4: use BAR2 GTS register for T5 kernel mode CQs (Sai Vemuri) [1251611]
-- [infiniband] iw_cxgb4: enforce qp/cq id requirements (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix incorrect sequence numbers shown in devlog (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: remove unused fn to enable/disable db coalescing (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: function and argument name cleanup (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add debugfs facility to inject FL starvation (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add PHY firmware support for T420-BT cards (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update T4/T5 adapter register ranges (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Optimize and cleanup setup memory window code (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: replace ntoh{s, l} and hton{s, l} calls with the generic byteorder (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Remove dead function t4_read_edc and t4_read_mc (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: Cleanup macros, add comments and add new MACROS (Sai Vemuri) [1251611]
-- [netdrv] cxgb3/4/4vf: Update drivers to use dma_rmb/wmb where appropriate (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: add cxgb4_fcoe.c for FCoE (Sai Vemuri) [1251611]
-- [infiniband] iw_cxgb4: Remove negative advice dmesg warnings (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Initialize RSS mode for all Ports (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Discard the packet if the length is greater than mtu (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Move SGE Ingress DMA state monitor code to a new routine (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add device node to ULD info (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Pass in a Congestion Channel Map to t4_sge_alloc_rxq() (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Enable congestion notification from SGE for IQs and FLs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Make sure that Freelist size is larger than Egress Congestion Threshold (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: drop __GFP_NOFAIL allocation (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix MC1 memory offset calculation (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Don't call t4_slow_intr_handler when we're not the Master PF (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add comment for calculate tx flits and sge length code (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Use device node in page allocation (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Freelist starving threshold varies from adapter to adapter (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Increased the value of MAX_IMM_TX_PKT_LEN from 128 to 256 bytes (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Move ethtool related code to a separate file (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix to dump devlog, even if FW is crashed (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Firmware macro changes for fw verison 1.13.32.0 (Sai Vemuri) [1251611]
-- [infiniband] cxgb4: Serialize CQ event upcalls with CQ destruction (Sai Vemuri) [1251611]
-- [infiniband] cxgb4: Don't hang threads forever waiting on WR replies (Sai Vemuri) [1251611]
-- [netdrv] cxgb4vf: Fix sparse warnings (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Disable interrupts and napi before unregistering netdev (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Allocate dynamic mem. for egress and ingress queue maps (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix frame size warning for 32 bit arch (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Make PCI Device ID Tables be "const" (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add device ID for new adapter (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: fix coccinelle warnings (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Try and provide an RDMA CIQ per cpu (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Use pci_enable_msix_range() instead of pci_enable_msix() (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Move offload Rx queue allocation to separate function (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix PCI-E Memory window interface for big-endian systems (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support in cxgb4 to get expansion rom version via ethtool (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix trace observed while dumping clip_tbl (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support in debugfs to dump the congestion control table (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support to dump mailbox content in debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for ULP RX logic analyzer output in debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to display TP logic analyzer output (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support in debugfs to display sensor information (Sai Vemuri) [1251611]
-- [netdrv] chelsio: cxgb4: fix sparse warning (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Delete an unnecessary check before the function call "release_firmware" (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add low latency socket busy_poll support (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Improve IEEE DCBx support, other minor open-lldp fixes (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Remove preprocessor check for CONFIG_CXGB4_DCB (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Move firmware version MACRO to t4fw_version.h (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to dump different timer and clock values of the adapter (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to dump PM module stats (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Addded support in debugfs to dump CIM outbound queue content (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to dump cim ingress bound queue contents (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to dump sge_qinfo (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fixes cxgb4_inet6addr_notifier unregister call (Sai Vemuri) [1251611]
-- [netdrv] mode_t whack-a-mole: chelsio (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add debugfs options to dump the rss key, config for PF, VF, etc (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add debugfs entry to dump the contents of the flash (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update ipv6 address handling api (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Ripping out old hard-wired initialization code in driver (Sai Vemuri) [1251611]
-- [netdrv] iw_cxgb4/cxgb4/cxgb4vf/cxgb4i/csiostor: Cleanup register defines/macros related to all other cpl messages (Sai Vemuri) [1251611]
-- [netdrv] iw_cxgb4/cxgb4/cxgb4i: Cleanup register defines/MACROS related to CM CPL messages (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for mps_tcam debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for cim_qcfg entry in debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for cim_la entry in debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for devlog (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add PCI device ID for new T5 adapter (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Cleanup PL, XGMAC, SF and MC related register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/csiostor: Cleanup TP, MPS and TCAM related register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxg4vf/csiostor: Cleanup MC, MA and CIM related register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Cleanup SGE and PCI related register defines (Sai Vemuri) [1251611]
-- [infiniband] cxgb4/cxgb4vf/csiostor: Cleanup SGE register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix decoding QSA module for ethtool get settings (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for QSA modules (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/csiostor: Don't use MASTER_MUST for fw_hello call (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: global named must be unique (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update firmware version after flashing it via ethtool (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: Use new interfaces to calculate BAR2 SGE Queue Register addresses (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: Add code to calculate T5 BAR2 Offsets for SGE Queue Registers (Sai Vemuri) [1251611]
-- [netdrv] cxgb4vf: Add and initialize some sge params for VF driver (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update FW version string to match FW binary version 1.12.25.0 (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add a check for flashing FW using ethtool (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fill in supported link mode for SFP modules (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Add T4/T5 PCI ID Table (Sai Vemuri) [1251611]
-- [infiniband] cxgb4/cxgb4vf/csiostor: Cleanup macros/register defines related to PCIE, RSS and FW (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Cleanup macros/register defines related to port and VI (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Disable recursive mailbox commands when enabling vi (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Cleanup macros/register defines related to queues (Sai Vemuri) [1251611]
-- [infiniband] cxgb4/csiostor: Cleansup FW related macros/register defines for PF/VF and LDST (Sai Vemuri) [1251611]
-- [infiniband] cxgb4: Cleanup Filter related macros/register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix DCB priority groups being returned in wrong order (Sai Vemuri) [1251611]
-- [netdrv] cxgb4i/cxgb4: Refactor macros to conform to uniform standards (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix static checker warning (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: dcb open-lldp interop fixes (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix bug in DCB app deletion (Sai Vemuri) [1251611]
-- [scsi] cxgb4: Cleanup macros so they follow the same style and look consistent, part 2 (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Cleanup macros so they follow the same style and look consistent (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add cxgb4_debugfs.c, move all debugfs code to new file (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Handle dcb enable correctly (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Improve handling of DCB negotiation or loss thereof (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: IEEE fixes for DCBx state machine (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix endian bug introduced in cxgb4 dcb patchset (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update copyright year on all cxgb4 files (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Makefile & Kconfig changes for DCBx support (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Integrate DCBx support into cxgb4 module. Register dbcnl_ops to give access to DCBx functions (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add DCBx support codebase and dcbnl_ops (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update fw interface file for DCBx support. Adds all the required fields to fw interface to communicate DCBx info (Sai Vemuri) [1251611]
-
-* Mon Sep 21 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-318.el7]
-- [net] vlan: Add GRO support for non hardware accelerated vlan (Ivan Vecera) [1235229]
-- [net] Add priority to packet_offload objects (Ivan Vecera) [1235229]
-- [net] sctp: add routing output fallback (Marcelo Leitner) [1258494]
-- [net] sctp: fix dst leak (Marcelo Leitner) [1258494]
-- [scsi] hpsa: move lockup_detected attribute to host attr (Joseph Szczypek) [1259673]
-- [sound] alsa: hda - Fix subsystem ID read regression (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Set patch_ops before calling auto-parser (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Disable widget power-save for VIA codecs (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Fix link power unbalance at device removal (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Re-add the lost fake mute support (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Don't actually write registers for caps overwrites (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - set GET bit when adding a vendor verb to the codec regmap (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Always allow access for POWER_STATE verbs via regmap (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Set use_single_rw flag for regmap (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Handle a few verbs as read-only (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Add cache support for COEF read/write (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Handle get/set power verb symmetrically via regmap (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - fix i915 probe for HSW/BDW (Jaroslav Kysela) [1253837]
-- [sound] alsa: hda - Fix NULL dereference from CA0132 DSP loader (Jaroslav Kysela) [1251483]
-- [tools] cpupower: Do not change the frequency of offline cpu (Gustavo Duarte) [1260293]
-- [crypto] nx - add LE support to pSeries platform driver (Gustavo Duarte) [1261375]
-- [netdrv] ibmveth: Don't receive packets when the napi budget == 0 (Gustavo Duarte) [1264158]
-- [netdrv] iwlwifi: pcie: fix prepare card flow (Stanislaw Gruszka) [1256419]
-- [netdrv] rtlwifi: Fix NULL dereference when PCI driver used as an AP (Stanislaw Gruszka) [1256419]
-- [net] mac80211: fix invalid read in minstrel_sort_best_tp_rates() (Stanislaw Gruszka) [1256419]
-- [netdrv] iwlwifi: pcie: prepare the device before accessing it (Stanislaw Gruszka) [1256419]
-- [netdrv] iwlwifi: nvm: remove mac address byte swapping in 8000 family (Stanislaw Gruszka) [1256419]
-- [netdrv] iwlwifi: mvm: fix antenna selection when BT is active (Stanislaw Gruszka) [1256419]
-- [net] mac80211: clear subdir_stations when removing debugfs (Stanislaw Gruszka) [1256419]
-- [net] mac80211: prevent possible crypto tx tailroom corruption (Stanislaw Gruszka) [1256419]
-- [wireless] cfg80211: ignore netif running state when changing iftype (Stanislaw Gruszka) [1256419]
-- [netdrv] iwlwifi: mvm: fix ROC reference accounting (Stanislaw Gruszka) [1256419]
-- [net] mac80211: fix the beacon csa counter for mesh and ibss (Stanislaw Gruszka) [1256419]
-- [netdrv] rtlwifi: Remove the clear interrupt routine from all drivers (Stanislaw Gruszka) [1256419]
-- [netdrv] ath9k_htc: memory corruption calling set_bit() (Stanislaw Gruszka) [1256419]
-- [netdrv] ath9k: fix DMA stop sequence for AR9003+ (Stanislaw Gruszka) [1256419]
-- [net] mac80211: fix locking in update_vlan_tailroom_need_count() (Stanislaw Gruszka) [1256419]
-- [wireless] cfg80211: wext: clear sinfo struct before calling driver (Stanislaw Gruszka) [1256419]
-- [netdrv] ssb: Fix handling of ssb_pmu_get_alp_clock() (Stanislaw Gruszka) [1256419]
-- [infiniband] hfi: Properly set permissions for user device files (Don Dutile) [1255736]
-
-* Fri Sep 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-317.el7]
-- [fs] nfs: Don't attempt to decode missing directory entries (Benjamin Coddington) [1261725]
-- [fs] xfs: flush entire file on dio read/write to cached file (Brian Foster) [1229074]
-- [fs] gfs2: Don't support fallocate on jdata files (Abhijith Das) [1221331]
-- [fs] xfs: checksum log record ext headers based on record size (Brian Foster) [1256593]
-- [md] dm-crypt: constrain crypt device's max_segment_size to PAGE_SIZE (Mike Snitzer) [1252726]
-- [md] dm-thin: disable discard support for thin devices if pool's is disabled (Mike Snitzer) [1260135]
-- [md] dm-cache: small cleanups related to deferred prison cell cleanup (Mike Snitzer) [1250832]
-- [md] dm-cache: fix leaking of deferred bio prison cells (Mike Snitzer) [1250832]
-- [md] dm-cache: fix use after freeing migrations (Mike Snitzer) [1250832]
-- [md] dm-cache: move wake_waker() from free_migrations() to where it is needed (Mike Snitzer) [1250832]
-- [md] raid1: count resync requests in nr_pending (Jes Sorensen) [1261114]
-- [md] raid1: update next_resync under resync_lock (Jes Sorensen) [1261114]
-- [md] raid1: Don't use next_resync to determine how far resync has progressed (Jes Sorensen) [1261114]
-- [md] raid1: make sure resync waits for conflicting writes to complete (Jes Sorensen) [1261114]
-- [md] raid1: clean up request counts properly in close_sync() (Jes Sorensen) [1261114]
-- [md] raid1: be more cautious where we read-balance during resync (Jes Sorensen) [1261114]
-- [md] raid1: intialise start_next_window for READ case to avoid hang (Jes Sorensen) [1261114]
-- [md] raid0: update queue parameter in a safer location (Jes Sorensen) [1247854]
-- [x86] perf/uncore: Use Sandy Bridge client PMU on Haswell/Broadwell (Jiri Olsa) [1250642]
-- [x86] perf/uncore: Add support for ARB uncore PMU on Sandy/IvyBridge (Jiri Olsa) [1250642]
-- [x86] perf/uncore: Add Broadwell-U uncore IMC PMU support (Jiri Olsa) [1250642]
-- [x86] perf: Disable fixup_ht_bug function (Jiri Olsa) [1246669]
-- [base] pm: add Red Hat dev_pm_info_rh struct (Prarit Bhargava) [1261130]
-- [base] device: allocate/free Red Hat only struct device_rh (Prarit Bhargava) [1261130]
-- [idle] intel_idle: Add CPU model 54 (Atom N2000 series) (Prarit Bhargava) [1230936]
-- [block] blk-mq: don't lose requests if a stopped queue restarts (Jeff Moyer) [1251417]
-- [block] blk-mq: fix FUA request hang (Jeff Moyer) [1251417]
-- [block] blk-mq: fix CPU hotplug handling (Jeff Moyer) [1251417]
-- [block] blk-mq: fix race between timeout and CPU hotplug (Jeff Moyer) [1251417]
-- [block] blk-mq: initialize 'struct request' and associated data to zero (Jeff Moyer) [1251417]
-- [netdrv] be2net: Revert "make the RX_FILTER command asynchronous" commit (Ivan Vecera) [1253268]
-- [netdrv] mlx4_core: Capping number of requested MSIXs to MAX_MSIX (Amir Vadai) [1260507]
-- [scripts] modpost: Keep hfi1 driver in staging from tainting kernel (Don Dutile) [1257994]
-- [powerpc] kdump: Increase the amount of memory reserved for crashkernel=auto (Dave Young) [1222059]
-
-* Tue Sep 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-316.el7]
-- [fs] Set UID in sess_auth_rawntlmssp_authenticate too (Sachin Prabhu) [1258490]
-- [drm] radeon: fix hotplug race at startup (Dave Airlie) [1262218]
-- [net] fix NULL pointer dereference in skb_copy_and_csum_datagram_iovec when using NFS (Sabrina Dubroca) [1258907]
-- [net] ipv4: suppress NETDEV_UP notification on address lifetime update (Aaron Conole) [1250705]
-- [lib] radix-tree: handle allocation failure in radix_tree_insert() (Seth Jennings) [1260613]
-- [x86] efi: Use all 64 bit of efi_memmap in setup_e820() (Larry Woodman) [1248452]
-- [x86] Fix misapplied XSTATE_LAZY patch (Prarit Bhargava) [1258840]
-- [netdrv] r8169: Fix sleeping function called during get_stats64 (Corinna Vinschen) [1261973]
-- [netdrv] ixgbe: Remove bimodal SR-IOV disabling (Alex Williamson) [1243821]
-- [powerpc] kvm: book3s-hv: Exit on H_DOORBELL if HOST_IPI is set (David Gibson) [1259571]
-- [powerpc] kvm: book3s-hv: Fix race in starting secondary threads (David Gibson) [1259571]
-- [powerpc] powernv/pci-ioda: fix kdump with non-power-of-2 crashkernel= (Gustavo Duarte) [1258491]
-- [powerpc] powernv/pci-ioda: fix 32-bit TCE table init in kdump kernel (Gustavo Duarte) [1258491]
-
-* Tue Sep 08 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-315.el7]
-- [unisys] Add modalias files to visorbus devices (Erik Arfvidson) [1259509]
-- [net] tcp: use dctcp if enabled on the route to the initiator (Florian Westphal) [1254839]
-- [net] fib, fib6: reject invalid feature bits (Florian Westphal) [1254839]
-- [net] fib6: reduce identation in ip6_convert_metrics (Florian Westphal) [1254839]
-- [net] fib: move metrics parsing to a helper (Florian Westphal) [1254839]
-- [net] tunnels: enable module autoloading (Phil Sutter) [1258861]
-- [net] ip6_gre: release cached dst on tunnel removal (Sabrina Dubroca) [1210346]
-- [scsi] qla2xxx: Fix backporting error in "Fix virtual port configuration, when switch port is disabled/enabled" (Chad Dupuis) [1240912]
-- [scsi] megaraid_sas: Code refactor for use of requestorId (Tomas Henzl) [1257604]
-- [scsi] megaraid_sas: Fix validHandles check in io path (Tomas Henzl) [1257604]
-- [scsi] megaraid_sas: Chip reset if driver fail to bring ioc ready (Tomas Henzl) [1257604]
-- [scsi] megaraid_sas: init tasklet earlier (Tomas Henzl) [1252127]
-- [misc] enclosure: handle non-unique element descriptors (Jose Castillo) [1188248]
-- [edac] ie31200_edac: Allocate mci and map mchbar first (Seth Jennings) [1241708]
-- [edac] ie31200_edac: Introduce the driver (Seth Jennings) [1241708]
-- [kernel] readq/writeq: Add explicit lo_hi_[read|write]_q and hi_lo_[read|write]_q (Seth Jennings) [1241708]
-- [infiniband] mlx4: Fix use of flow-counters for process_mad (Amir Vadai) [1251740]
-- [netdrv] mlx4_core: Use sink counter for the VF default as fallback (Amir Vadai) [1251740]
-- [netdrv] i40e: Set defport behavior for the Main VSI when in promiscuous mode (Stefan Assmann) [1190049 1226826]
-- [netdrv] i40e: clean up error status messages (Stefan Assmann) [1190049 1226826]
-- [pci] Add ACS quirks for Intel I219-LM/V (Alex Williamson) [1252128]
-- [ipc] sem: fix use after free on IPC_RMID after a task using same semaphore set exits ("Herton R. Krzesinski") [1254322]
-- [x86] mce: Do not panic when single core has reached a timeout (Prarit Bhargava) [1195534]
-- [x86] fpu: Fix double-increment in setup_xstate_features() (Herbert Xu) [1232494]
-- [x86] fpu/xstate: Don't assume the first zero xfeatures zero bit means the end (Herbert Xu) [1232494]
-- [fs] cifs: Terminate cifs_smb_version_tokens with NULL (Sachin Prabhu) [1247446]
-- [mm] numa: disable change protection for vma(VM_HUGETLB) (Larry Woodman) [1251007]
-- [kenrel] trace: Check permission only for parent tracepoint event (Jiri Olsa) [1253487]
-
-* Thu Sep 03 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-314.el7]
-- [drm] nouveau/pmu/gk104: implement a hackish workaround for a hw bug (Rob Clark) [1249805]
-- [drm] nouveau/disp/dp: gm1xx appears to have same dp lane ordering as gm2xx (Rob Clark) [1249805]
-- [drm] nouveau/disp/dp: fix some tx_pu mishandling (Rob Clark) [1249805]
-- [drm] nouveau/bios/dp: use alternate set of drvctl values where necessary (Rob Clark) [1249805]
-- [drm] nouveau/bios/dcb: accept "maxwell" lane count values for dcb 4.0 (Rob Clark) [1249805]
-- [drm] dp/mst: dump branch OUI in debugfs (v2) (Rob Clark) [1249805]
-- [drm] dp-mst: Remove debug WARN_ON (Rob Clark) [1249805]
-- [drm] radeon: Don't link train DisplayPort on HPD until we get the dpcd (Rob Clark) [1249805]
-- [drm] dp/mst: Remove port after removing connector (Rob Clark) [1249805]
-- [drm] nouveau/drm/nv04-nv40/instmem: protect access to priv->heap by mutex (Rob Clark) [1249805]
-- [drm] nouveau: hold mutex when calling nouveau_abi16_fini() (Rob Clark) [1249805]
-- [drm] nouveau/kms/nv50-: guard against enabling cursor on disabled heads (Rob Clark) [1249805]
-- [drm] nouveau/fbcon/nv11-: correctly account for ring space usage (Rob Clark) [1249805]
-- [drm] Stop resetting connector state to unknown (Rob Clark) [1249805]
-- [drm] Provide compat ioctl for addfb2.1 (Rob Clark) [1249805]
-- [drm] add a check for x/y in drm_mode_setcrtc (Rob Clark) [1249805]
-- [drm] radeon/ci: silence a harmless PCC warning (Rob Clark) [1249805]
-- [drm] radeon: fix user ptr race condition (Rob Clark) [1249805]
-- [drm] radeon: add a dpm quirk for Sapphire Radeon R9 270X 2GB GDDR5 (Rob Clark) [1249805]
-- [drm] radeon: Don't flush the GART TLB if rdev->gart.ptr == NULL (Rob Clark) [1249805]
-- [drm] radeon: unpin cursor BOs on suspend and pin them again on resume (v2) (Rob Clark) [1249805]
-- [drm] radeon: Clean up reference counting and pinning of the cursor BOs (Rob Clark) [1249805]
-- [drm] radeon: Handle irqs only based on irq ring, not irq status regs (Rob Clark) [1249805]
-- [drm] radeon: fix HDP flushing (Rob Clark) [1249805]
-- [drm] radeon: only check the sink type on DP connectors (Rob Clark) [1249805]
-- [drm] revert "drm/radeon: dont switch vt on suspend" (Rob Clark) [1249805]
-- [drm] radeon: SDMA fix hibernation (CI GPU family) (Rob Clark) [1249805]
-- [drm] radeon: compute ring fix hibernation (CI GPU family) v2 (Rob Clark) [1249805]
-- [drm] i915: Use two 32bit reads for select 64bit REG_READ ioctls (Rob Clark) [1249805]
-- [drm] i915: Forward all core DRM ioctls to core compat handling (Rob Clark) [1249805]
-- [drm] i915: Snapshot seqno of most recently submitted request (Rob Clark) [1249805]
-- [drm] i915: fix backlight after resume on 855gm (Rob Clark) [1249805]
-- [drm] i915: Fix IPS related flicker (Rob Clark) [1249805]
-- [drm] i915/ppgtt: Break loop in gen8_ppgtt_clear_range failure path (Rob Clark) [1249805]
-- [drm] radeon: clean up radeon_audio_enable (Rob Clark) [1249805]
-- [drm] radeon: take the mode_config mutex when dealing with hpds (v2) (Rob Clark) [1249805]
-- [drm] atomic: fix out of bounds read in for_each_*_in_state helpers (Rob Clark) [1249805]
-- [drm] bridge: ptn3460: Include linux/gpio/consumer.h (Rob Clark) [1249805]
-- [drm] qxl: Do not leak memory if qxl_release_list_add fails (Rob Clark) [1249805]
-- [drm] qxl: Do not cause spice-server to clean our objects (Rob Clark) [1249805]
-- [drm] dp/mst: make sure mst_primary mstb is valid in work function (Rob Clark) [1249805]
-- [drm] dp/mst: take lock around looking up the branch device on hpd irq (Rob Clark) [1249805]
-- [drm] dp/mst: close deadlock in connector destruction (Rob Clark) [1249805]
-- [drm] radeon: don't probe MST on hw we don't support it on (Rob Clark) [1249805]
-- [drm] radeon: Add RADEON_INFO_VA_UNMAP_WORKING query (Rob Clark) [1249805]
-- [drm] mgag200: Reject non-character-cell-aligned mode widths (Rob Clark) [1249805]
-- [drm] revert "drm/i915: Don't skip request retirement if the active list is empty" (Rob Clark) [1249805]
-- [drm] i915: Always reset vma->ggtt_view.pages cache on unbinding (Rob Clark) [1249805]
-- [drm] radeon: Make sure radeon_vm_bo_set_addr always unreserves the BO (Rob Clark) [1249805]
-- [drm] revert "drm/radeon: adjust pll when audio is not enabled" (Rob Clark) [1249805]
-- [drm] revert "drm/radeon: don't share plls if monitors differ in audio support" (Rob Clark) [1249805]
-- [drm] radeon: fix freeze for laptop with Turks/Thames GPU (Rob Clark) [1249805]
-- [mm] hugetlb: fix race in region tracking (Aristeu Rozanski) [1252129]
-- [mm] hugetlb: improve, cleanup resv_map parameters (Aristeu Rozanski) [1252129]
-- [mm] hugetlb: unify region structure handling (Aristeu Rozanski) [1252129]
-- [hv] mshyperv: fix recognition of Hyper-V guest crash MSR's (Vitaly Kuznetsov) [1235998]
-- [hv] vmbus: prefer 'die' notification chain to 'panic' (Vitaly Kuznetsov) [1235998]
-- [usb] Delete XHCI command timer if necessary (Dave Young) [1242851]
-- [x86] perf: cqm: Do not access cpu_data() from CPU_UP_PREPARE handler (Yasuaki Ishimatsu) [1257502]
-- [x86] kprobes: Fix conflict between jprobes and function graph tracing (Jiri Olsa) [1242825]
-- [netdrv] sfc: only use vadaptor stats if firmware is capable (Jarod Wilson) [1248331]
-- [netdrv] r8169: Add software counter for multicast packages (Corinna Vinschen) [1253102]
-- [powerpc] powernv: Invoke opal_cec_reboot2() on unrecoverable HMI (Gustavo Duarte) [1253477]
-- [powerpc] powernv: Invoke opal_cec_reboot2() on unrecoverable machine check errors (Gustavo Duarte) [1253477]
-- [powerpc] powernv: Pull all HMI events before panic (Gustavo Duarte) [1253477]
-- [powerpc] powernv: display reason for Malfunction Alert HMI (Gustavo Duarte) [1253477]
-- [powerpc] powernv: Add poweroff (EPOW, DPO) events support for PowerNV platform (Gustavo Duarte) [1257315]
-- [powerpc] pseries: Cleanup on pci_dn_reconfig_notifier() (Laurent Vivier) [1254200]
-- [powerpc] pseries: Fix corrupted pdn list (Laurent Vivier) [1254200]
-- [powercap] rapl: change domain detection message (Prarit Bhargava) [1238347]
-- [powercap] rapl: further relax energy counter checks (Prarit Bhargava) [1238347]
-
-* Mon Aug 31 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-313.el7]
-- [fs] locks: remove i_have_this_lease check from __break_lease (Steve Dickson) [1258337]
-- [fs] locks: set fl_owner for leases to filp instead of current->files (Steve Dickson) [1258337]
-- [fs] locks: fix NULL-deref in generic_delete_lease (Steve Dickson) [1258337]
-- [fs] ext4: fix potential use after free in __ext4_journal_stop (Lukas Czerner) [1210588]
-- [fs] ext4: fix NULL pointer dereference when journal restart fails (Lukas Czerner) [1210588]
-- [fs] cifs: fix use-after-free bug in find_writable_file (Sachin Prabhu) [1186260]
-- [fs] ext4: check for zero length extent explicitly (Eryu Guan) [1221905]
-- [fs] ioctx_alloc(): fix vma (and file) leak on failure (Jarod Wilson) [1209536]
-- [fs] ext4: reject journal options for ext2 mounts (Carlos Maiolino) [839466]
-- [fs] fanotify: fix -EOVERFLOW with large files on 64-bit (Carlos Maiolino) [981181]
-- [fs] xfs: close xc_cil list_empty() races with cil commit sequence (Brian Foster) [1028505]
-- [fs] xfs: fix quota block reservation leak when tp allocates and frees blocks (Brian Foster) [1068915]
-- [fs] xfs: always log the inode on unwritten extent conversion (Brian Foster) [1053384]
-- [fs] xfs: direct IO EOF zeroing needs to drain AIO (Brian Foster) [1213370]
-- [fs] xfs: DIO write completion size updates race (Brian Foster) [1213370]
-- [fs] nfsv4.2: handle NFS-specific llseek errors ("J. Bruce Fields") [1079385]
-- [fs] nfsd4: disallow SEEK with special stateids ("J. Bruce Fields") [1079385]
-- [fs] nfsd4: disallow ALLOCATE with special stateids ("J. Bruce Fields") [1079385]
-- [fs] nfs: Reduce time spent holding the i_mutex during fallocate() ("J. Bruce Fields") [1079385]
-- [fs] nfs: Don't zap caches on fallocate() ("J. Bruce Fields") [1079385]
-- [fs] nfs: Add DEALLOCATE support ("J. Bruce Fields") [1079385]
-- [fs] nfs: Add ALLOCATE support ("J. Bruce Fields") [1079385]
-- [fs] nfs: Use nfs_server_capable() for checknig NFS_CAP_SEEK ("J. Bruce Fields") [1079385]
-- [fs] nfsd: correctly define v4.2 support attributes ("J. Bruce Fields") [1079385]
-- [fs] nfsd: Add DEALLOCATE support ("J. Bruce Fields") [1079385]
-- [fs] nfsd: Add ALLOCATE support (Steve Dickson) [1079385]
-- [fs] vfs: Rename do_fallocate() to vfs_fallocate() ("J. Bruce Fields") [1079385]
-- [fs] nfs: Implement SEEK ("J. Bruce Fields") [1079385]
-- [fs] nfsd: Implement SEEK (Steve Dickson) [1079385]
-- [fs] nfsd: Add generic v4.2 infrastructure ("J. Bruce Fields") [1079385]
-- [fs] vfs: export lseek_execute() to modules ("J. Bruce Fields") [1079385]
-- [fs] lseek_execute() doesn't need an inode passed to it ("J. Bruce Fields") [1079385]
-- [fs] flexfilelayout: Mark the Flexfile layout driver as a tech preview (Steve Dickson) [1246230]
-- [fs] blocklayout: Mark the NFSv4 Block Layout Driver layout driver as a tech preview (Steve Dickson) [1246237]
-- [fs] nfs4layouts: Remove unnecessary BUG_ON in nfsd4_layout_setlease() (Steve Dickson) [1195496]
-- [fs] nfsd: restore trace event lost in mismerge (Steve Dickson) [1195496]
-- [fs] nfsd: don't recursively call nfsd4_cb_layout_fail (Steve Dickson) [1195496]
-- [fs] nfsd/blocklayout: pretend we can send deviceid notifications (Steve Dickson) [1195496]
-- [fs] nfsd: add NFSEXP_PNFS to the exflags array (Steve Dickson) [1195496]
-- [fs] nfsd: require an explicit option to enable pNFS (Steve Dickson) [1195496]
-- [fs] nfsd: pNFS block layout driver (Steve Dickson) [1195496]
-- [fs] nfsd: add trace events (Steve Dickson) [1195496]
-- [fs] nfsd: update documentation for pNFS support (Steve Dickson) [1195496]
-- [fs] nfsd: implement pNFS layout recalls (Steve Dickson) [1195496]
-- [fs] nfsd: implement pNFS operations (Steve Dickson) [1195496]
-- [fs] nfsd: factor out a helper to decode nfstime4 values (Steve Dickson) [1195496]
-- [fs] nfsd: make find_any_file available outside nfs4state.c (Steve Dickson) [1195496]
-- [fs] nfsd: make find/get/put file available outside nfs4state.c (Steve Dickson) [1195496]
-- [fs] nfsd: make lookup/alloc/unhash_stid available outside nfs4state.c (Steve Dickson) [1195496]
-- [fs] nfsd: add fh_fsid_match helper (Steve Dickson) [1195496]
-- [fs] nfsd: move nfsd_fh_match to nfsfh.h (Steve Dickson) [1195496]
-- [fs] nfs: add LAYOUT_TYPE_MAX enum value (Steve Dickson) [1195496]
-- [fs] exportfs: add methods for block layout exports (Steve Dickson) [1195496]
-- [fs] fs: track fl_owner for leases (Steve Dickson) [1195496]
-- [fs] locks: plumb a "priv" pointer into the setlease routines (Steve Dickson) [1195496]
-- [fs] locks: generic_delete_lease doesn't need a file_lock at all (Steve Dickson) [1195496]
-- [fs] locks: add some tracepoints in the lease handling code (Steve Dickson) [1195496]
-- [fs] fs: add FL_LAYOUT lease type (Steve Dickson) [1195496]
-- [fs] locks: close potential race between setlease and open (Steve Dickson) [1195496]
-- [fs] nfs: Fetch MOUNTED_ON_FILEID when updating an inode (Steve Dickson) [1225090]
-- [fs] nfsv3: Use the readdir fileid as the mounted-on-fileid (Steve Dickson) [1225090]
-- [fs] nfs: Fix use of nfs_attr_use_mounted_on_fileid() (Steve Dickson) [1225090]
-- [x86] kernel: microcode, amd, avoid allocating with vmalloc & GFP_KERNEL when IRQs are disabled (Prarit Bhargava) [1080951]
-
-* Fri Aug 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-312.el7]
-- [target] iscsi: Fix np_ip bracket issue by removing np_ip (Andy Grover) [1249107]
-- [scsi] libiscsi: Fix host busy blocking during connection teardown (Chris Leech) [1253032]
-- [md] raid1: extend spinlock to protect raid1_end_read_request against inconsistencies (Jes Sorensen) [1255758]
-- [md] raid1: fix test for 'was read error from last working device' (Jes Sorensen) [1255758]
-- [net] pktgen: fix race between pktgen_thread_worker() and kthread_stop() (Oleg Nesterov) [1054125]
-- [net] vxlan: re-ignore EADDRINUSE from igmp_join (Marcelo Leitner) [1256976]
-- [net] netfilter: nf_ct_sctp: minimal multihoming support (Marcelo Leitner) [1256795]
-- [net] Fix skb_set_peeked use-after-free bug (Sabrina Dubroca) [1243993]
-- [net] Fix skb csum races when peeking (Sabrina Dubroca) [1243993]
-- [net] Clone skb before setting peeked flag (Sabrina Dubroca) [1243993]
-- [net] sock: fix SO_MAX_PACING_RATE (Sabrina Dubroca) [1235100]
-- [net] netfilter: conntrack: don't reject clashing expectation if its in another ct zone (Florian Westphal) [1253847]
-- [net] flowcache: Fix kernel panic in flow_cache_flush_task (Phil Sutter) [1243591]
-- [net] flowcache: Fix resource leaks on namespace exit (Phil Sutter) [1243591]
-- [net] xfrm: Fix refcount imbalance in xfrm_lookup (Phil Sutter) [1243591]
-- [net] flowcache: restore a single flow_cache kmem_cache (Phil Sutter) [1243591]
-- [net] xfrm: release dst_orig in case of error in xfrm_lookup() (Phil Sutter) [1243591]
-- [net] xfrm: remove irrelevant comment in xfrm_input(). (Phil Sutter) [1243591]
-- [net] xfrm: Generate queueing routes only from route lookup functions (Phil Sutter) [1243591]
-- [net] xfrm: Remove caching of xfrm_policy_sk_bundles (Phil Sutter) [1243591]
-- [net] flowcache: Make flow cache name space aware (Phil Sutter) [1243591]
-- [net] xfrm: Fix null pointer dereference when decoding sessions (Phil Sutter) [1243591]
-- [net] ipv6: update flowi6_oif in ip6_dst_lookup_flow if not set (Phil Sutter) [1243591]
-- [net] Remove FLOWI_FLAG_CAN_SLEEP (Phil Sutter) [1243591]
-- [net] xfrm: Remove ancient sleeping when the SA is in acquire state (Phil Sutter) [1243591]
-- [net] xfrm: Fix NULL pointer dereference on sub policy usage (Phil Sutter) [1243591]
-- [net] xfrm: Namespacify xfrm state/policy locks (Phil Sutter) [1243591]
-- [net] xfrm: Using the right namespace to migrate key info (Phil Sutter) [1243591]
-- [net] xfrm: Remove extern from function prototypes (Phil Sutter) [1243591]
-- [net] xfrm: constify mark argument of xfrm_find_acq() (Phil Sutter) [1243591]
-- [net] ip: Remove extern from function prototypes (Phil Sutter) [1243591]
-- [net] ipv6: prevent fib6_run_gc() contention (Phil Sutter) [1243591]
-- [net] ipv4: remove fib_update_nh_saddrs() declaration (Phil Sutter) [1243591]
-- [net] xfrm: Generate blackhole routes only from route lookup functions (Phil Sutter) [1243591]
-- [net] xfrm: check for a vaild skb in xfrm_policy_queue_process (Phil Sutter) [1243591]
-- [net] xfrm: Add refcount handling to queued policies (Phil Sutter) [1243591]
-- [net] xfrm: Decode sessions with output interface (Phil Sutter) [1243591]
-- [drm] qxl: rewrite framebuffer support (Gerd Hoffmann) [1072350]
-- [x86] hyperv: Mark the Hyper-V TSC as unstable (Vitaly Kuznetsov) [1235523]
-
-* Fri Aug 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-311.el7]
-- [hv] vmbus: don't send CHANNELMSG_UNLOAD on pre-Win2012R2 hosts (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: add special crash handler (Vitaly Kuznetsov) [1248352]
-- [hv] don't do hypercalls when hypercall_page is NULL (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: add special kexec handler (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: remove hv_synic_free_cpu() call from hv_synic_cleanup() (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: kill tasklets on module unload (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: Implement the protocol for tearing down vmbus state (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: Get rid of some unused definitions (Vitaly Kuznetsov) [1248352]
-- [hid] usbhid: Fix the check for HID_RESET_PENDING in hid_io_error (Don Zickus) [1167266]
-- [x86] documentation: add kernel-parameters.txt entry for dis_ucode_ldr (Prarit Bhargava) [1256913]
-- [x86] microcode: Add a disable chicken bit (Prarit Bhargava) [1256913]
-- [x86] boot: Carve out early cmdline parsing function (Prarit Bhargava) [1256913]
-- [block] mtip32x: fix regression introduced by blk-mq per-hctx flush (Jeff Moyer) [1228812]
-- [hwmon] coretemp: Atom CPUs don't support TjMax; no warning needed (Prarit Bhargava) [1253935]
-- [crypto] nx - Removing CTR mode from NX driver (Herbert Xu) [1241751]
-- [unisys] add visorhid driver (Erik Arfvidson) [1232017]
-- [unisys] add MODULE_DEVICE_TABLE and temporary MODULE_ALIAS lines to visornic (Erik Arfvidson) [1232014]
-- [unisys] Add s-Par visorhba (Erik Arfvidson) [1232014]
-- [netdrv] r8169: Add values missing in @get_stats64 from HW counters (Corinna Vinschen) [1253102]
-- [netdrv] enic: fix work done in tx napi_poll (Stefan Assmann) [1247856]
-- [netdrv] enic: update desc properly in rx_copybreak (Stefan Assmann) [1247856]
-- [netdrv] enic: handle error condition properly in enic_rq_indicate_buf (Stefan Assmann) [1247856]
-- [netdrv] enic: implement rx_copybreak (Stefan Assmann) [1247856]
-- [thermal] powerclamp: support Knights Landing (Steve Best) [1158597]
-- [thermal] powerclamp: add cpu id for Skylake u/y (Steve Best) [1179991]
-- [thermal] powerclamp: add cpu id for skylake h/s (Steve Best) [1179991]
-- [thermal] powerclamp: Remove tick_nohz_idle abuse (Steve Best) [1255864]
-- [thermal] powerclamp: Clean up preempt_enable_no_resched() abuse (Steve Best) [1255864]
-
-* Thu Aug 27 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-310.el7]
-- [infiniband] Move hfi1 to staging (David Sowa) [1173291]
-- [infiniband] core: Add opa driver to kbuild (David Sowa) [1173291]
-- [infiniband] revert "ib/hfi1: Switch to topology_sibling_mask()" (David Sowa) [1173291]
-- [infiniband] revert "ib/hfi1: Switch to the ->write_iter() API" (David Sowa) [1173291]
-- [infiniband] hfi1: Remove inline from trace functions (David Sowa) [1173291]
-- [infiniband] hfi1: Add Infiniband dependency to Kconfig (David Sowa) [1173291]
-- [infiniband] hfi1: add driver make/config files (David Sowa) [1173291]
-- [infiniband] hfi1: add multicast routines (David Sowa) [1173291]
-- [infiniband] hfi1: add general verbs handling (David Sowa) [1173291]
-- [infiniband] hfi1: add PSM sdma hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add low level page locking (David Sowa) [1173291]
-- [infiniband] hfi1: add UD QP handling (David Sowa) [1173291]
-- [infiniband] hfi1: add UC QP handling (David Sowa) [1173291]
-- [infiniband] hfi1: add QSFP twsi routines (David Sowa) [1173291]
-- [infiniband] hfi1: add tracepoint debug routines (David Sowa) [1173291]
-- [infiniband] hfi1: add sysfs routines and documentation (David Sowa) [1173291]
-- [infiniband] hfi1: add SRQ handling (David Sowa) [1173291]
-- [infiniband] hfi1: add sdma header file (David Sowa) [1173291]
-- [infiniband] hfi1: add sdma routines (David Sowa) [1173291]
-- [infiniband] hfi1: add common routines for RC/UC (David Sowa) [1173291]
-- [infiniband] hfi1: add RC QP handling (David Sowa) [1173291]
-- [infiniband] hfi1: add qsfp handling (David Sowa) [1173291]
-- [infiniband] hfi1: add qp handling (David Sowa) [1173291]
-- [infiniband] hfi1: add platform config definitions (David Sowa) [1173291]
-- [infiniband] hfi1: add pio handling (David Sowa) [1173291]
-- [infiniband] hfi1: add pcie routines (David Sowa) [1173291]
-- [infiniband] hfi1: add misc OPA defines (David Sowa) [1173291]
-- [infiniband] hfi1: add memory region handling (David Sowa) [1173291]
-- [infiniband] hfi1: add user/kernel memory sharing hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add local mad header (David Sowa) [1173291]
-- [infiniband] hfi1: add OPA mad handling part2 (David Sowa) [1173291]
-- [infiniband] hfi1: add OPA mad handling part1 (David Sowa) [1173291]
-- [infiniband] hfi1: add rkey/lkey validation (David Sowa) [1173291]
-- [infiniband] hfi1: add progress delay/restart hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add interrupt hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add module init hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add general hfi header file (David Sowa) [1173291]
-- [infiniband] hfi1: add firmware hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add PSM driver control/data path (David Sowa) [1173291]
-- [infiniband] hfi1: add eeprom hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add low level receive functions (David Sowa) [1173291]
-- [infiniband] hfi1: add dma operation hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add diagnostic hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add char device instantiation code (David Sowa) [1173291]
-- [infiniband] hfi1: add debugfs handling (David Sowa) [1173291]
-- [infiniband] hfi1: add completion queue processing (David Sowa) [1173291]
-- [infiniband] hfi1: add common header file definitions (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific headers (David Sowa) [1173291]
-- [infiniband] hfi1: add chip register definitions (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific support part4 (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific support part3 (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific support part2 (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific support part1 (David Sowa) [1173291]
-- [infiniband] core: Add header definitions (David Sowa) [1173291]
-- [infiniband] core: Add CNP opcode enumeration (David Sowa) [1173291]
-
-* Mon Aug 24 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-309.el7]
-- [netdrv] ixgbevf: Driver version update to indicate RHEL 7.2 (John Greene) [1173787]
-- [netdrv] ixgbevf: add support for reporting RSS key and hash table for X550 (John Greene) [1173787]
-- [netdrv] ixgbevf: Set Rx hash type for ingress packets (John Greene) [1173787]
-- [netdrv] ixgbevf: fold ixgbevf_pull_tail into ixgbevf_add_rx_frag (John Greene) [1173787]
-- [netdrv] ixgbevf: Use dev_kfree_skb_any in xmit path, not dev_kfree_skb (John Greene) [1173787]
-- [netdrv] ixgbevf: Add the appropriate ethtool ops to query RSS indirection table and key (John Greene) [1173787]
-- [netdrv] ixgbevf: Add RSS Key query code (John Greene) [1173787]
-- [netdrv] ixgbevf: Add a RETA query code (John Greene) [1173787]
-- [netdrv] ixgbevf: Use ether_addr_copy() instead of memcpy() (John Greene) [1173787]
-- [netdrv] ixgbevf: Fix code comments and whitespace (John Greene) [1173787]
-- [netdrv] ixgbevf: codespell comment spelling fixes (John Greene) [1173787]
-- [netdrv] ixgbevf: combine all of the tasks into a single service task (John Greene) [1173787]
-- [netdrv] ixgbevf: rewrite watchdog task to function similar to igbvf (John Greene) [1173787]
-- [netdrv] ixgbevf: Add code to check for Tx hang (John Greene) [1173787]
-- [netdrv] ixgbevf: Fix ordering of shutdown to correctly disable Rx and Tx (John Greene) [1173787]
-- [netdrv] ixgbevf: set vlan_features in a single write instead of several ORs (John Greene) [1173787]
-- [netdrv] ixgbevf: add RSS support for X550 (John Greene) [1173787]
-- [netdrv] ixgbevf: enable multiple queue support (John Greene) [1173787]
-- [netdrv] ixgbevf: Fix checksum error when using stacked vlan (John Greene) [1173787]
-- [netdrv] ixgbevf: Use eth_skb_pad and skb_put_padto helpers (John Greene) [1173787]
-- [netdrv] ixgbevf: fix possible crashes in probe and remove (John Greene) [1173787]
-- [netdrv] ixgbevf: add support for X550 VFs (John Greene) [1173787 1187248]
-- [netdrv] ixgbevf: add netpoll support (John Greene) [1173787]
-- [netdrv] ixgbevf: compare total_rx_packets and budget in ixgbevf_clean_rx_irq (John Greene) [1173787]
-- [netdrv] ixgbevf: Change receive model to use double buffered page based receives (John Greene) [1173787]
-- [netdrv] ixgbevf: Update Rx next to clean in real time (John Greene) [1173787]
-- [netdrv] ixgbevf: reorder main loop in ixgbe_clean_rx_irq to allow for do/while/continue (John Greene) [1173787]
-- [netdrv] ixgbevf: Cleanup variable usage, improve stack performance (John Greene) [1173787]
-- [netdrv] ixgbevf: Combine the logic for post Rx processing into single function (John Greene) [1173787]
-- [netdrv] ixgbevf: Test Rx status bits directly out of the descriptor (John Greene) [1173787]
-- [netdrv] ixgbevf: Update ixgbevf_alloc_rx_buffers to handle clearing of status bits (John Greene) [1173787]
-- [netdrv] ixgbevf: remove useless bd_number from struct ixgbevf_adapter (John Greene) [1173787 1187248]
-- [netdrv] ixgbevf: Resolve missing-field-initializers warnings (John Greene) [1173787]
-- [netdrv] ixgbevf: introduce delay for checking VFLINKS on 82599 (John Greene) [1173787]
-- [netdrv] ixgbevf: implement ethtool get/set coalesce (John Greene) [1173787]
-- [netdrv] ixgbe: update driver version to indicate RHEL7.2 (John Greene) [1173786]
-- [netdrv] ixgbe: Don't report flow director filter's status (John Greene) [1173786]
-- [netdrv] ixgbe: Specify Rx hash type WRT Rx desc RSS type (John Greene) [1173786]
-- [netdrv] ixgbe: only report generic filters in get_ts_info (John Greene) [1173786]
-- [netdrv] ixgbe: Remember to write ixfi changes after modifying (John Greene) [1173786]
-- [netdrv] ixgbe: fix X550 default set_phy_power method (John Greene) [1173786]
-- [netdrv] ixgbe: Set lan_id before using I2C (John Greene) [1173786]
-- [netdrv] ixgbe: add link check for X550 copper (John Greene) [1173786]
-- [netdrv] ixgbe: Add support for another X550 device (John Greene) [1173786]
-- [netdrv] ixgbe: fix X550 PHY function pointers (John Greene) [1173786]
-- [netdrv] ixgbe: fix X550 devices init flow (John Greene) [1173786]
-- [netdrv] ixgbe: fix bug in not clearing counters for X550 devices (John Greene) [1173786]
-- [netdrv] ixgbe: fix issue with sfp events with new X550 devices (John Greene) [1173786]
-- [netdrv] ixgbe: add support for interrupts from X550 external PHY (John Greene) [1173786]
-- [netdrv] ixgbe: Add const string for overheat message (John Greene) [1173786]
-- [netdrv] ixgbe: Add reset for X550 device (John Greene) [1173786]
-- [netdrv] ixgbe: add X550 support for external PHY and forced 1G/10G support (John Greene) [1173786]
-- [netdrv] ixgbe: Restore ESDP settings after MAC reset (John Greene) [1173786]
-- [netdrv] ixgbe: Add a PHY power state method (John Greene) [1173786]
-- [netdrv] ixgbe: add define for X557 PHY ID (John Greene) [1173786]
-- [netdrv] ixgbe: add support for WoL and autoneg FC for some X550 devices (John Greene) [1173786]
-- [netdrv] ixgbe: add array of MAC type dependent values (John Greene) [1173786]
-- [netdrv] ixgbe: Use a signed type to hold error codes (John Greene) [1173786]
-- [netdrv] ixgbe: Release semaphore bits in the right order (John Greene) [1173786]
-- [netdrv] ixgbe: Fix IOSF SB access issues (John Greene) [1173786]
-- [netdrv] ixgbe: Add GET_RSS_KEY command to VF-PF channel commands set (John Greene) [1173786]
-- [netdrv] ixgbe: Add a RETA query command to VF-PF channel API (John Greene) [1173786]
-- [netdrv] ixgbe: Add a new netdev op to allow/prevent a VF from querying an RSS info (John Greene) [1173786]
-- [netdrv] ixgbe: Add the appropriate ethtool ops to query RSS indirection table and key (John Greene) [1173786]
-- [netdrv] ixgbe: Refactor the RSS configuration code (John Greene) [1173786]
-- [netdrv] ixgbe: Drop unnecessary call to rcu_barrier (John Greene) [1173786]
-- [netdrv] ixgbe: Remove NETIF_F_HW_VLAN_CTAG_FILTER from hw_features (John Greene) [1173786]
-- [netdrv] ixgbe: adds x550 specific FCoE offloads (John Greene) [1173786]
-- [netdrv] ixgbe: add support for X550 source_address_prunning (John Greene) [1173786]
-- [netdrv] ixgbe: add new bridge mode support function (John Greene) [1173786]
-- [netdrv] ixgbe: Move bridge mode from flag to variable (John Greene) [1173786]
-- [netdrv] ixgbe: use helpers for converting ns to timespec (John Greene) [1173786]
-- [netdrv] ixgbe: Use bool function returns of true/false instead of 1/0 (John Greene) [1173786]
-- [netdrv] ixgbe: Remove IXGBE_FLAG_IN_NETPOLL since it doesn't do anything (John Greene) [1173786]
-- [netdrv] ixgbe: enable relaxed ordering for SPARC (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup make ixgbe_set_ethertype_anti_spoofing_X550 static (John Greene) [1173786]
-- [netdrv] ixgbe: Clean up type inconsistency (John Greene) [1173786]
-- [netdrv] ixgbe: add new wrapper for X550 support (John Greene) [1173786]
-- [netdrv] ixgbe: codespell comment spelling fixes (John Greene) [1173786]
-- [netdrv] ixgbe: Use eth_<foo>_addr instead of memset (John Greene) [1173786]
-- [netdrv] ixgbe: add Tx anti spoofing support (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup redundant default method set_rxpba (John Greene) [1173786]
-- [netdrv] ixgbe: fix setting port VLAN (John Greene) [1173786]
-- [netdrv] ixgbe: allow multiple queues in SRIOV mode (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup sparse errors in new ixgbe_x550.c file (John Greene) [1173786]
-- [netdrv] ixgbe: Fix checksum error when using stacked vlan (John Greene) [1173786]
-- [netdrv] ixgbe: convert to CYCLECOUNTER_MASK macro (John Greene) [1173786]
-- [netdrv] ixgbe: convert to timecounter adjtime (John Greene) [1173786]
-- [netdrv] ixgbe: Use dma_rmb on Rx descriptor reads (John Greene) [1173786]
-- [netdrv] ixgbe: Use napi_alloc_skb (John Greene) [1173786]
-- [netdrv] ixgbe: Use eth_skb_pad and skb_put_padto helpers (John Greene) [1173786]
-- [netdrv] ixgbe: fix crash on rmmod after probe fail (John Greene) [1173786]
-- [netdrv] ixgbe: add support for X550 extended RSS support (John Greene) [1173786]
-- [netdrv] ixgbe: Remove tail write abstraction and add missing barrier (John Greene) [1173786]
-- [netdrv] ixgbe: Clean-up page reuse code (John Greene) [1173786]
-- [netdrv] ixgbe: Check for presence of IFLA_AF_SPEC (John Greene) [1173786]
-- [netdrv] ixgbe: Validate IFLA_BRIDGE_MODE attribute length (John Greene) [1173786]
-- [netdrv] ixgbe: fix use after free adapter->state test in ixgbe_remove/ixgbe_probe (John Greene) [1173786]
-- [netdrv] ixgbe: Correctly disable VLAN filter in promiscuous mode (John Greene) [1173786]
-- [netdrv] ixgbe: use netdev_rss_key_fill() helper (John Greene) [1173786]
-- [netdrv] ixgbe: Replace __skb_alloc_page with dev_alloc_page (John Greene) [1173786]
-- [netdrv] ixgbe: phy: fix uninitialized status in ixgbe_setup_phy_link_tnx (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup move setting PFQDE.HIDE_VLAN to support function (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup ixgbe_ndo_set_vf_vlan (John Greene) [1173786]
-- [netdrv] ixgbe: fix X540 Completion timeout (John Greene) [1173786]
-- [netdrv] ixgbe: fix race when setting advertised speed (John Greene) [1173786]
-- [netdrv] ixgbe: need not repeat init skb with NULL (John Greene) [1173786]
-- [netdrv] ixgbe: check for vfs outside of sriov_num_vfs before dereference (John Greene) [1173786]
-- [netdrv] ixgbe: fix race accessing page->_count (John Greene) [1173786]
-- [netdrv] ixgbe: fix setting of TXDCTL.WTRHESH when ITR is set to 0 and no BQL (John Greene) [1173786]
-- [netdrv] ixgbe: remove wait loop on autoneg for copper devices (John Greene) [1173786]
-- [netdrv] ixgbe: Convert the normal transmit complete path to dev_consume_skb_any() (John Greene) [1173786]
-- [netdrv] ixgbe: remove IXGBE_FLAG_MSI(X)_CAPABLE flags (John Greene) [1173786]
-- [netdrv] ixgbe: add warnings for other disabled features without MSI-X support (John Greene) [1173786]
-- [netdrv] ixgbe: use e_dev_warn instead of netif_printk (John Greene) [1173786]
-- [netdrv] ixgbe: use e_dev_warn instead of e_err for displaying warning (John Greene) [1173786]
-- [netdrv] ixgbe: determine vector count inside ixgbe_acquire_msix_vectors (John Greene) [1173786]
-- [netdrv] ixgbe: move msix_entries allocation into ixgbe_acquire_msix_vectors (John Greene) [1173786]
-- [netdrv] ixgbe: return integer from ixgbe_acquire_msix_vectors (John Greene) [1173786]
-- [netdrv] ixgbe: use e_dev_warn instead of netif_printk (John Greene) [1173786]
-- [netdrv] ixgbe: Do not schedule an uninitialized workqueue entry (John Greene) [1173786]
-- [netdrv] ixgbe: remove useless bd_number from adapter struct (John Greene) [1173786]
-- [netdrv] ixgbe: Refactor busy poll socket code to address multiple issues (John Greene) [1173786]
-- [netdrv] ixgbe: Drop Rx alloc at end of Rx cleanup (John Greene) [1173786]
-- [netdrv] ixgbe: use new eth_get_headlen interface (John Greene) [1173786]
-- [netdrv] ixgbe: Resolve warnings produced in W=2 builds (John Greene) [1173786]
-- [netdrv] ixgbe: add comment noting recalculation of queues (John Greene) [1173786]
-- [netdrv] ixgbe: reset interface on link loss with pending Tx work from the VF (John Greene) [1173786]
-- [netdrv] ixgbe: Cleanup FDB handling code (John Greene) [1173786]
-- [netdrv] ixgbe: Make return values more direct (John Greene) [1173786]
-- [netdrv] ixgbe: Delete a bunch of dead code (John Greene) [1173786]
-- [netdrv] ixgbe: Fix ixgbe_write_mbx error result (John Greene) [1173786]
-- [netdrv] ixgbe: Correct X540 semaphore error (John Greene) [1173786]
-- [netdrv] ixgbe: Fix spurious release of semaphore in EEPROM access REDUX (John Greene) [1173786]
-- [netdrv] ixgbe: Convert some udelays to usleep_range (John Greene) [1173786]
-- [netdrv] ixgbe: don't check minimum link when direct assigned to virtual machine (John Greene) [1173786]
-- [netdrv] ixgbe: fix use of list_for_each in ixgbe_enumerate_functions (John Greene) [1173786]
-- [netdrv] ixgbe: Change some uses of strncpy to strlcpy (John Greene) [1173786]
-- [netdrv] ixgbe: Fix possible null-dereference in error path (John Greene) [1173786]
-- [netdrv] ixgbe: remove unnecessary break after return (John Greene) [1173786]
-- [netdrv] ixgbe: remove unnecessary break after goto (John Greene) [1173786]
-- [netdrv] ixgbe: change PTP NSECS_PER_SEC to IXGBE_PTP_PPS_HALF_SECOND (John Greene) [1173786]
-- [netdrv] ixgbe: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (John Greene) [1173786]
-- [netdrv] ixgbe: remove linux/export.h header from ixgbe_ptp.c (John Greene) [1173786]
-- [netdrv] ixgbe: fix detection of SFP+ capable interfaces (John Greene) [1173786]
-- [netdrv] ixgbe: avoid duplicate code in suspend and stop paths (John Greene) [1173786]
-- [netdrv] ixgbe: separate the PTP suspend and stop actions (John Greene) [1173786]
-- [netdrv] ixgbe: extract PTP clock device from ptp_init (John Greene) [1173786]
-- [netdrv] ixgbe: allow ixgbe_ptp_reset to maintain current hwtstamp config (John Greene) [1173786]
-- [netdrv] ixgbe: extract the hardware setup from the ixgbe_ptp_set_ts_config (John Greene) [1173786]
-- [netdrv] ixgbe: rename ixgbe_ptp_enable to ixgbe_ptp_feature_enable (John Greene) [1173786]
-- [netdrv] ixgbe: fix linking at 100Mbps on copper devices with MNG FW enabled (John Greene) [1173786]
-- [netdrv] ixgbe: remove return statements for void functions (John Greene) [1173786]
-- [netdrv] ixgbe: add /* fallthrough */ comment to case statements (John Greene) [1173786]
-- [netdrv] ixgbe: add space between operands to & (John Greene) [1173786]
-- [netdrv] ixgbe: don't check NULL for debugfs_remove_recursive (John Greene) [1173786]
-- [netdrv] ixgbe: add braces around else block (John Greene) [1173786]
-- [netdrv] ixgbe: fix several concatenated strings to single line (John Greene) [1173786]
-- [netdrv] ixgbe: fix checkpatch style of blank line after declaration (John Greene) [1173786]
-- [netdrv] ixgbe: fix function-like macro, remove semicolon (John Greene) [1173786]
-- [netdrv] ixgbe: clean up checkpatch warnings about CODE_INDENT and LEADING_SPACE (John Greene) [1173786]
-- [netdrv] ixgbe: remove unnecessary duplication of PCIe bandwidth display (John Greene) [1173786]
-- [netdrv] ixgbe: get rid of SET_ETHTOOL_OPS (John Greene) [1173786]
-- [netdrv] ixgbe: improve mac filter handling (John Greene) [1173786]
-- [netdrv] ixgbe: change handling of multicast filters (John Greene) [1173786]
-- [netdrv] ixgbe: remove vlan_filter_disable and enable functions (John Greene) [1173786]
-- [netdrv] ixgbe: Use out-of-line function for register reads (John Greene) [1173786]
-- [netdrv] ixgbe: convert low_water into an array (John Greene) [1173786]
-- [netdrv] ixgbe: remove CIAA/D register reads from bad VF check (John Greene) [1173786 1205903]
-- [netdrv] ixgbe: add helper function for setting RSS key in preparation of X550 (John Greene) [1173786]
-- [netdrv] ixgbe: Mass conversion of smp_mb__*() (John Greene) [1173786]
-- [netdrv] ixgbe: Clear head write-back registers on VF reset (John Greene) [1173786]
-- [netdrv] ixgbe: Force QDE via PFQDE for VFs during reset (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup ixgbe_enumerate_functions (John Greene) [1173786]
-- [netdrv] ixgbe: remove marketing names from busy poll code (John Greene) [1173786]
-- [netdrv] ixgbe: reinit_locked() should be called with rtnl_lock (John Greene) [1173786]
-- [netdrv] ixgbe: fix rx-usecs range checks for BQL (John Greene) [1173786]
-- [netdrv] ixgbe: ethtool DCB registers dump for 82599 and x540 (John Greene) [1173786]
-- [netdrv] ixgbe: fix 32-bit DMA mask handling (John Greene) [1173786]
-- [netdrv] ixgbe: limit setting speed to only one at a time for QSFP modules (John Greene) [1173786]
-- [net] if_link: Add an additional parameter to ifla_vf_info for RSS querying (John Greene) [1173786]
-- [net] rtnetlink: ifla_vf_policy: fix misuses of NLA_BINARY (John Greene) [1173786]
-- [net] core: Add VF link state control policy (John Greene) [1173786]
-- [netdrv] igb: make sure SR-IOV init uses the right number of queues (Stefan Assmann) [1229219]
-- [netdrv] igb: do not re-init SR-IOV during probe (Stefan Assmann) [1229219]
-- [netdrv] be2net: avoid vxlan offloading on multichannel configs (Ivan Vecera) [1232327]
-- [thermal] powerclamp: fix missing newer package c-states (Steve Best) [1255413]
-
-* Fri Aug 21 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-308.el7]
-- [fs] inotify: don't add consecutive overflow events to the queue (Eric Sandeen) [1168465]
-- [md] dm-stats: report precise_timestamps and histogram in @stats_list output (Mike Snitzer) [1254801]
-- [md] dm-stats: add support for request-based DM devices (Mike Snitzer) [1254801]
-- [md] dm-stats: collect and report histogram of IO latencies (Mike Snitzer) [1254801]
-- [md] dm-stats: support precise timestamps (Mike Snitzer) [1254801]
-- [md] dm-stats: fix divide by zero if 'number_of_areas' arg is zero (Mike Snitzer) [1254801]
-- [md] dm-stats: Use kvfree() in dm_kvfree() (Mike Snitzer) [1254801]
-- [net] bridge: mdb: fix double add notification (Xin Long) [1245012]
-- [net] ipt_ulog: do not fail init after creating socket (Thadeu Lima de Souza Cascardo) [1235978]
-- [net] ipv4: off-by-one in continuation handling in /proc/net/route (Alexander Duyck) [1253783]
-- [x86] kernel: Allocate enough low memory when crashkernel=high (Baoquan He) [1123039]
-- [vfio] Fix lockdep issue (Alex Williamson) [1250237]
-- [idle] intel_idle: Skylake Client Support (Steve Best) [1189910]
-- [netdrv] mlx5_core: Set log_uar_page_sz for non 4K page size architecture (Honggang Li) [1248676]
-- [netdrv] igbvf: clear buffer_info->dma after dma_unmap_single() (Stefan Assmann) [1248335]
-- [netdrv] ibmveth: add support for TSO6 (Gustavo Duarte) [1251393]
-
-* Thu Aug 20 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-307.el7]
-- [firmware] dmi_scan: Coding style cleanups (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Trim DMI table length before exporting it (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Rename dmi_table to dmi_decode_table (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Only honor end-of-table for 64-bit tables (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Fix ordering of product_uuid (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Simplified displayed version (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Use direct access to static vars (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Use full dmi version for SMBIOS3 (Jarod Wilson) [853192]
-- [powerpc] mm: Change the swap encoding in pte (Gustavo Duarte) [1217743]
-- [mm] numa: avoid unnecessary TLB flushes when setting NUMA hinting entries (Gustavo Duarte) [1217743]
-- [mm] numa: add paranoid check around pte_protnone_numa (Gustavo Duarte) [1217743]
-- [mm] numa: do not trap faults on the huge zero page (Gustavo Duarte) [1217743]
-- [mm] remove remaining references to NUMA hinting bits and helpers (Gustavo Duarte) [1217743]
-- [mm] numa: Do not mark PTEs pte_numa when splitting huge pages (Gustavo Duarte) [1217743]
-- [mm] convert p[te|md]_mknonnuma and remaining page table manipulations (Gustavo Duarte) [1217743]
-- [powerpc] mm: add paranoid warnings for unexpected DSISR_PROTFAULT (Gustavo Duarte) [1217743]
-- [powerpc] mm: convert p[te|md]_numa users to p[te|md]_protnone_numa (Gustavo Duarte) [1217743]
-- [mm] add p[te|md] protnone helpers for use by NUMA balancing (Gustavo Duarte) [1217743]
-- [mm] numa: do not dereference pmd outside of the lock during NUMA hinting fault (Gustavo Duarte) [1217743]
-- [md] dm-btree-remove: fix bug in remove_one() (Mike Snitzer) [1250905]
-- [md] dm-cache-policy-smq: move 'dm-cache-default' module alias to SMQ (Mike Snitzer) [1253505]
-- [md] dm-btree: add ref counting ops for the leaves of top level btrees (Mike Snitzer) [1253505]
-- [md] dm-thin-metadata: delete btrees when releasing metadata snapshot (Mike Snitzer) [1253505]
-- [x86] kvm: vmx: fix vmwrite to invalid VMCS (Radim Krcmar) [1238320 1251552]
-- [x86] kvm: add missed use_eager_fpu() (Radim Krcmar) [1251552]
-- [iommu] amd: Fix bug in put_pasid_state_wait (Jerome Glisse) [1210495]
-- [iommu] amd: Use wait_event in put_pasid_state_wait (Jerome Glisse) [1210495]
-- [iommu] amd: Fix amd_iommu_free_device() (Jerome Glisse) [1210495]
-- [iommu] amd: use handle_mm_fault directly (Jerome Glisse) [1210495]
-- [iommu] amd: fix accounting of device_state (Jerome Glisse) [1210495]
-- [iommu] amd: use new invalidate_range mmu-notifier (Jerome Glisse) [1210495]
-- [unisys] visornic: Convert to using napi (Erik Arfvidson) [1232018]
-- [unisys] visorchannel: Add peek function (Erik Arfvidson) [1232018]
-- [unisys] visornic - consolidate+simplify xmit watermark checks (Erik Arfvidson) [1232018]
-- [unisys] visornic: enable skb->len error-check, remove DEBUG blocks (Erik Arfvidson) [1232018]
-- [unisys] visornic_resume needs to mirror _serverdown_complete (Erik Arfvidson) [1232018]
-- [unisys] visornic - correctly reset flag prior to send_enbdis() (Erik Arfvidson) [1232018]
-- [unisys] visornic - prevent lock recursion after IO recovery (Erik Arfvidson) [1232018]
-- [unisys] avoid format string parsing (Erik Arfvidson) [1232018]
-- [unisys] visornic - prevent NETDEV WATCHDOG timeouts after IO recovery (Erik Arfvidson) [1232018]
-- [unisys] visornic - check visorchannel_signalinsert/remove failures (Erik Arfvidson) [1232018]
-- [unisys] visornic - ensure proper net locking in tx reset logic (Erik Arfvidson) [1232018]
-- [unisys] Process more than one response per check (Erik Arfvidson) [1232018]
-- [unisys] remove bogus error checking (Erik Arfvidson) [1232018]
-- [unisys] remove visornic_ioctl (Erik Arfvidson) [1232018]
-- [unisys] Remove trans_start (Erik Arfvidson) [1232018]
-- [unisys] Fix improper use of NETDEV_TX_BUSY (Erik Arfvidson) [1232018]
-- [unisys] Remove some extraneous start/stop queue operations (Erik Arfvidson) [1232018]
-- [unisys] Change enable/disable to wait forever (Erik Arfvidson) [1232018]
-- [unisys] Make serverdown synchronous (Erik Arfvidson) [1232018]
-- [unisys] simplify visornic_serverdown_complete (Erik Arfvidson) [1232018]
-- [unisys] Guard against task leakage (Erik Arfvidson) [1232018]
-- [unisys] Clean up kthread usage (Erik Arfvidson) [1232018]
-- [unisys] Linarize skbs (Erik Arfvidson) [1232018]
-- [unisys] BUG halt on error in I/O channel (Erik Arfvidson) [1232018]
-- [unisys] Check return code properly on visor_copy_fragsinfo_from_skb (Erik Arfvidson) [1232018]
-- [unisys] Remove num_visornic_open array (Erik Arfvidson) [1232018]
-- [unisys] fix copyright statements (Erik Arfvidson) [1232018]
-- [unisys] visornic: prevent erroneous kfree of devdata pointer (Erik Arfvidson) [1232018]
-- [unisys] visornic: use preferred interface for setting netdev's parent (Erik Arfvidson) [1232018]
-- [unisys] visornic: delay start of worker thread until netdev created (Erik Arfvidson) [1232018]
-- [unisys] visornic: don't destroy global workqueues until devs destroyed (Erik Arfvidson) [1232018]
-- [unisys] visornic: correctly clean up device on removal (Erik Arfvidson) [1232018]
-- [unisys] visornic: correct obvious double-allocation of workqueues (Erik Arfvidson) [1232018]
-- [unisys] add error messages to visornic (Erik Arfvidson) [1232018]
-- [unisys] neglect to NULL rcvbuf pointer (Erik Arfvidson) [1232018]
-- [unisys] prevent faults in visornic_pause (Erik Arfvidson) [1232018]
-- [unisys] visornic: correct visornic_pause (Erik Arfvidson) [1232018]
-- [unisys] Add s-Par visornic ethernet driver (Erik Arfvidson) [1232018]
-
-* Wed Aug 19 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-306.0.1.el7]
-- [misc] redhat: roll back to pre-release secureboot keys [1254992]
-
-* Mon Aug 17 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-306.el7]
-- [net] ipv6: don't reject link-local nexthop on other interface (Florian Westphal) [1228700]
-- [net] vlan: Correctly propagate promisc|allmulti flags in notifier (Alexander Duyck) [1166516]
-- [net] chunk lost from bd9b51 (Oleg Nesterov) [1246968]
-- [net] openvswitch: Fix L4 checksum handling when dealing with IP fragments (Flavio Leitner) [1249863]
-- [net] tcp: fix recv with flags MSG_WAITALL | MSG_PEEK (Sabrina Dubroca) [1205258]
-- [net] netfilter: synproxy: fix sending window update to client (Phil Sutter) [1242094 1251031]
-- [net] netfilter: ip6t_synproxy: fix NULL pointer dereference (Phil Sutter) [1242094 1251031]
-- [net] sctp: fix src address selection if using secondary addresses (Xin Long) [1245205]
-- [net] sctp: reduce indent level on sctp_v4_get_dst (Xin Long) [1245205]
-- [net] sctp: reset flowi4_oif parameter on route lookup (Xin Long) [1245205]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1227171]
-- [scsi] hpsa: fix rmmod issues (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add in new controller id (Joseph Szczypek) [1227171]
-- [scsi] hpsa: cleanup reset (Joseph Szczypek) [1227171]
-- [scsi] hpsa: propagate the error code in hpsa_kdump_soft_reset (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add support for tagged queueing (Joseph Szczypek) [1227171]
-- [scsi] hpsa: use scsi host_no as hpsa controller number (Joseph Szczypek) [1227171]
-- [scsi] hpsa: use block layer tag for command allocation (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add interrupt number to /proc/interrupts interrupt name (Joseph Szczypek) [1227171]
-- [scsi] hpsa: create workqueue after the driver is ready for use (Joseph Szczypek) [1227171]
-- [scsi] hpsa: fix try_soft_reset error handling (Joseph Szczypek) [1227171]
-- [scsi] hpsa: cleanup for init_one step 2 in kdump (Joseph Szczypek) [1227171]
-- [scsi] hpsa: skip free_irq calls if irqs are not allocated (Joseph Szczypek) [1227171]
-- [scsi] hpsa: call pci_release_regions after pci_disable_device (Joseph Szczypek) [1227171]
-- [scsi] hpsa: performance tweak for hpsa_scatter_gather() (Joseph Szczypek) [1227171]
-- [scsi] hpsa: refactor and rework support for sending TEST_UNIT_READY (Joseph Szczypek) [1227171]
-- [scsi] hpsa: don't return abort request until target is complete (Joseph Szczypek) [1227171]
-- [scsi] hpsa: use helper routines for finishing commands (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add support sending aborts to physical devices via the ioaccel2 path (Joseph Szczypek) [1227171]
-- [scsi] hpsa: do not print ioaccel2 warning messages about unusual completions (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up some error reporting output in abort handler (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up driver init (Joseph Szczypek) [1227171]
-- [scsi] hpsa: correct return values from driver functions (Joseph Szczypek) [1227171]
-- [scsi] hpsa: do not check cmd_alloc return value - it cannnot return NULL (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add more ioaccel2 error handling, including underrun statuses (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add ioaccel sg chaining for the ioaccel2 path (Joseph Szczypek) [1227171]
-- [scsi] hpsa: refactor freeing of resources into more logical functions (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up error handling (Joseph Szczypek) [1227171]
-- [scsi] hpsa: break hpsa_free_irqs_and_disable_msix into two functions (Joseph Szczypek) [1227171]
-- [scsi] hpsa: Get queue depth from identify physical bmic for physical disks (Joseph Szczypek) [1227171]
-- [scsi] hpsa: use ioaccel2 path to submit IOs to physical drives in HBA mode (Joseph Szczypek) [1227171]
-- [scsi] hpsa: print accurate SSD Smart Path Enabled status (Joseph Szczypek) [1227171]
-- [scsi] hpsa: factor out hpsa_ioaccel_submit function (Joseph Szczypek) [1227171]
-- [scsi] hpsa: try resubmitting down raid path on task set full (Joseph Szczypek) [1227171]
-- [scsi] hpsa: do not ignore return value of hpsa_register_scsi (Joseph Szczypek) [1227171]
-- [scsi] hpsa: factor out hpsa_init_cmd function (Joseph Szczypek) [1227171]
-- [scsi] hpsa: make function names consistent (Joseph Szczypek) [1227171]
-- [scsi] hpsa: allow lockup detected to be viewed via sysfs (Joseph Szczypek) [1227171]
-- [scsi] hpsa: hpsa decode sense data for io and tmf (Joseph Szczypek) [1227171]
-- [scsi] hpsa: decrement h->commands_outstanding in fail_all_outstanding_cmds (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up aborts (Joseph Szczypek) [1227171]
-- [scsi] hpsa: rework controller command submission (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up host, channel, target, lun prints (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add masked physical devices into h->dev array (Joseph Szczypek) [1227171]
-- [scsi] hpsa: dont meddle with hw which isn't ours (cciss) (Joseph Szczypek) [1227171]
-- [scsi] hpsa: Fix weird uses of num_online_cpus() (Joseph Szczypek) [1227171]
-- [kernel] livepatch: kernel: add TAINT_LIVEPATCH (Josh Poimboeuf) [1090549]
-- [kernel] fix TAINT_SOFTLOCKUP printable character (Josh Poimboeuf) [1090549]
-- [cpufreq] intel_pstate: Add SKY-S support (Steve Best) [1199346]
-- [powerpc] kvm: book3s: correct width in XER handling (David Gibson) [1178502]
-
-* Fri Aug 14 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-305.el7]
-- [kernel] Call mark_tech_preview() for user namespace (Adrian Reber) [1243523]
-- [kernel] ntp: Do leapsecond adjustment in adjtimex read path (Prarit Bhargava) [1250754]
-- [kernel] time: Prevent early expiry of hrtimers[CLOCK_REALTIME] at the leap second edge (Prarit Bhargava) [1250754]
-- [kernel] ntp: Introduce and use SECS_PER_DAY macro instead of 86400 (Prarit Bhargava) [1250754]
-- [kernel] hrtimer: Make offset update smarter (Prarit Bhargava) [1250754]
-- [kernel] timekeeping: Use ktime_t data for ktime_get_update_offsets_now() (Prarit Bhargava) [1250754]
-- [netdrv] macvtap: fix network header pointer for VLAN tagged pkts (Ivan Vecera) [1251987]
-- [net] core: Fix vlan_get_protocol for stacked vlan (Ivan Vecera) [1251987]
-- [netdrv] r8169: enforce RX_MULTI_EN on rtl8168ep/8111ep chips (Ivan Vecera) [1218279]
-- [netdrv] virtio-net: drop NETIF_F_FRAGLIST (Jason Wang) [1247840] {CVE-2015-5156}
-- [netdrv] usbnet: remove generic hard_header_len check (Don Zickus) [1164735]
-- [usb] usb: io_ti: Add heartbeat to keep idle EP/416 ports from disconnecting (Don Zickus) [1207487 1208644]
-- [usb] usb: io_ti: Add firmware image sanity checks (Don Zickus) [1208644]
-- [usb] usb: io_ti: Increase insufficient timeout for firmware downloads (Don Zickus) [1208644]
-- [usb] usb: io_ti: Fix firmware version handling (Don Zickus) [1208644]
-- [x86] perf: Tweak broken BIOS rules during check_hw_exists() (Don Zickus) [1082511]
-- [x86] uefi: copy secure_boot flag in boot params across kexec (Dave Young) [1243998]
-- [mm] vm_is_stack: use for_each_thread() rather then buggy while_each_thread() (Jerry Snitselaar) [1252188]
-- [fs] dcache: d_walk() might skip too much (Denys Vlasenko) [1173813] {CVE-2014-8559}
-- [fs] dcache: deal with deadlock in d_walk() (Denys Vlasenko) [1173813] {CVE-2014-8559}
-- [fs] dcache: move d_rcu from overlapping d_child to overlapping d_alias (Denys Vlasenko) [1173813] {CVE-2014-8559}
-- [fs] dcache: fold try_to_ascend() into the sole remaining caller (Denys Vlasenko) [1173813] {CVE-2014-8559}
-- [fs] pipe: fix offset and len mismatch on pipe_iov_copy_to_user() failure (Seth Jennings) [1239006]
-- [fs] overlayfs: Warn on copy up if a process has a R/O fd open to the lower file V2 (David Howells) [1226346]
-- [md] dm: revert dm_merge_bvec changes (Mike Snitzer) [1250148]
-- [pci] pciehp: Handle invalid data when reading from non-existent devices (Jarod Wilson) [1108793 1172014]
-- [edac] sb_edac: fix TAD presence check for sbridge_mci_bind_devs() (Seth Jennings) [1250709]
-- [perf] bench-numa: Fix to show proper convergence stats (Petr Holasek) [1222518]
-- [scsi] ipr: Driver version 2.6.2 (Gustavo Duarte) [1251842]
-- [scsi] ipr: Endian / sparse fixes (Gustavo Duarte) [1251842]
-- [scsi] ipr: Fix locking for unit attention handling (Gustavo Duarte) [1251842]
-- [scsi] ipr: Re-enable write same (Gustavo Duarte) [1251842]
-- [scsi] ipr: Fix invalid array indexing for HRRQ (Gustavo Duarte) [1251184]
-- [scsi] ipr: Fix incorrect trace indexing (Gustavo Duarte) [1251184]
-- [scsi] ipr: Byte swapping for device_id attribute in sysfs (Gustavo Duarte) [1214645]
-- [crypto] nx - respect sg limit bounds when building sg lists for SHA (Herbert Xu) [1250733]
-- [crypto] nx - Fix reentrancy bugs (Herbert Xu) [1250733]
-- [crypto] nx - Fixing SHA update bug (Herbert Xu) [1250733]
-- [crypto] nx - Fixing NX data alignment with nx_sg list (Herbert Xu) [1250733]
-- [crypto] nx - make platform drivers directly register with crypto (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - rename nx-842-crypto.c to nx-842.c (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - merge nx-compress and nx-compress-crypto (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - use common code for both NX decompress success cases (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - don't register pSeries driver if ENODEV (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - move kzalloc() out of spinlock (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - remove pSeries NX 'status' field (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - remove __init/__exit from VIO functions (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx/842 - Fix context corruption (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - reduce chattiness of platform drivers (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - do not emit extra output if status is disabled (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - rename nx842_{init, exit} to nx842_pseries_{init, exit} (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - nx842_OF_upd_status should return ENODEV if device is not 'okay' (Gustavo Duarte) [1238571 1245132]
-- [cpufreq] powernv: Restore cpu frequency to policy->cur on unthrottling (Gustavo Duarte) [1249561]
-- [cpufreq] powernv: Report Psafe only if PMSR.psafe_mode_active bit is set (Gustavo Duarte) [1249561]
-- [cpufreq] powernv: Call throttle_check() on receiving OCC_THROTTLE (Gustavo Duarte) [1249561]
-- [cpufreq] powernv: Register for OCC related opal_message notification (Gustavo Duarte) [1249561]
-- [powerpc] powernv: Add definition of OPAL_MSG_OCC message type (Gustavo Duarte) [1249561]
-- [cpufreq] powernv: Handle throttling due to Pmax capping at chip level (Gustavo Duarte) [1249561]
-- [cpuidle] menu: Return (-1) if there are no suitable states (Gustavo Duarte) [1226250]
-- [powerpc] eeh: Fix trivial error in eeh_restore_dev_state() (David Gibson) [1227573]
-- [powercap] rapl: Add support for Broadwell-H (Steve Best) [1249855]
-
-* Fri Aug 07 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-304.el7]
-- [md] dm-cache: fix device destroy hang due to improper prealloc_used accounting (Mike Snitzer) [1247192]
-- [md] revert "dm-cache: do not wake_worker() in free_migration()" (Mike Snitzer) [1247192]
-- [ipc] mqueue: remove limits for the amount of system-wide queues (Milos Vyletel) [1247632]
-- [scsi] fix memory leak with scsi-mq (Ewan Milne) [1248739]
-- [scsi] qla2xxx: do not clear slot in outstanding cmd array (Chad Dupuis) [1188168]
-- [scsi] qla2xxx: Remove decrement of sp reference count in abort handler (Chad Dupuis) [1188168]
-- [scsi] qla2xxx: Do not reset adapter if SRB handle is in range (Chad Dupuis) [1188168]
-- [scsi] qla2xxx: Do not crash system for sp ref count zero (Chad Dupuis) [1188168]
-- [tools] power turbostat: enable turbostat to support Knights Landing (KNL) (Steve Best) [1214141]
-- [vhost] fix error handling for memory region alloc (Igor Mammedov) [1152962]
-- [vhost] add max_mem_regions module parameter (Igor Mammedov) [1152962]
-- [vhost] extend memory regions allocation to vmalloc (Igor Mammedov) [1152962]
-- [vhost] use binary search instead of linear in find_region() (Igor Mammedov) [1152962]
-- [vhost] Make vhost a separate module (Igor Mammedov) [1152962]
-- [vhost] move memory pointer to VQs (Igor Mammedov) [1152962]
-- [vhost] move acked_features to VQs (Igor Mammedov) [1152962]
-- [vhost] replace rcu with mutex (Igor Mammedov) [1152962]
-- [vhost] Remove custom vhost rcu usage (Igor Mammedov) [1152962]
-- [vhost] scsi: Always access vq->private_data under vq mutex (Igor Mammedov) [1152962]
-- [vhost] net: Always access vq->private_data under vq mutex (Igor Mammedov) [1152962]
-- [powercap] rapl: Add support for Skylake H/S (Steve Best) [1249848]
-- [wireless] Backport rtlwifi driver family from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport mwl8k driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport brcm80211 common code from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport brcmsmac driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport brcmfmac driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport BCMA bus driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport SSB bus driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport mwifiex driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport rt2x00 driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport wil6210 driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport carl9170 from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport ath common code from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport ath9k driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport iwlegacy driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport iwlwifi driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport mac80211 from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport wireless core from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] debugfs: add helper function to create device related seq_file (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] net: Add EXPORT_SYMBOL_GPL(get_net_ns_by_fd) (Stanislaw Gruszka) [1169606 1229225]
-- [security] keys: Ensure we free the assoc array edit if edit is valid (David Howells) [1244171] {CVE-2015-1333}
-
-* Wed Aug 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-303.el7]
-- [powerpc] powernv: Fix vma page prot flags in opal-prd driver (Gustavo Duarte) [1241177]
-- [powerpc] rtas: Introduce rtas_get_sensor_fast() for IRQ handlers (Thomas Huth) [1243779]
-- [thermal] powerclamp: add cpu id for denlow platform (Steve Best) [1177872]
-- [powercap] rapl: Support Knights Landing (Steve Best) [1145372]
-- [s390] nmi: fix vector register corruption (Hendrik Brueckner) [1247500]
-- [s390] ctl_reg: add union type for control register 0 (Hendrik Brueckner) [1247500]
-- [s390] revert "dasd: add support for control unit initiated reconfiguration" (Hendrik Brueckner) [1243498]
-- [mm] tmpfs: ZERO_RANGE and COLLAPSE_RANGE not currently supported (Eric Sandeen) [1237080]
-- [md] dm-cache-policy-smq: fix alloc_bitset check that always evaluates as false (Mike Snitzer) [1247192]
-- [md] dm-thin: return -ENOSPC when erroring retry list due to out of data space (Mike Snitzer) [1247192]
-- [md] clear Blocked flag on failed devices when array is read-only (Xiao Ni) [1177912]
-- [acpi] ghes: Make NMI handler have a single reader (Jiri Olsa) [1230934]
-- [iommu] vt-d: Fix VM domain ID leak (Alex Williamson) [1242331]
-- [video] hyperv_fb: match wait_for_completion_timeout return type (Vitaly Kuznetsov) [1247678]
-- [video] hyperv_fb: refresh the VM screen by force on VM panic (Vitaly Kuznetsov) [1247678]
-- [video] hyperv-fb: add blanking support (Vitaly Kuznetsov) [1247678]
-- [block] nvme: Failed controller initialization fixes (David Milburn) [1223515]
-- [block] nvme: Unify controller probe and resume (David Milburn) [1223515]
-- [block] nvme: Automatic namespace rescan (David Milburn) [1223515]
-- [block] nvme: add sysfs and ioctl controller reset (David Milburn) [1223515]
-- [block] nvme: Remove hctx reliance for multi-namespace (David Milburn) [1223515]
-- [block] blk-mq: Shared tag enhancements (David Milburn) [1223515]
-- [block] add blk_set_queue_dying() to blkdev.h (David Milburn) [1223515]
-- [block] nvme: disable irqs in nvme_freeze_queues (David Milburn) [1223515]
-- [block] nvme: Meta data handling through submit io ioctl (David Milburn) [1223515]
-- [block] nvme: Fix for BLK_DEV_INTEGRITY not set (David Milburn) [1223515]
-- [block] nvme: Metadata format support (David Milburn) [1223515]
-- [netdrv] bonding: fix destruction of bond with devices different from arphrd_ether (Gustavo Duarte) [1061028]
-- [netdrv] fix copyright statements (Erik Arfvidson) [1245362]
-- [unisys] Lock visorchannels associated with devices (Erik Arfvidson) [1245362]
-- [unisys] fix random hangs with network stress in visornic (Erik Arfvidson) [1245362]
-- [unisys] Reduce indent (Erik Arfvidson) [1245362]
-- [unisys] Use kzalloc instead of kmalloc/memset (Erik Arfvidson) [1245362]
-- [unisys] correctly NULL-terminate visorbus sysfs attribute array (Erik Arfvidson) [1245362]
-- [unisys] fix random memory corruption in visorchannel_write() (Erik Arfvidson) [1245362]
-- [unisys] Fix broken build when ARCH=um (Erik Arfvidson) [1245362]
-- [unisys] Allow visorbus to autoload (Erik Arfvidson) [1245362]
-- [unisys] prevent faults processing messages (Erik Arfvidson) [1245362]
-- [unisys] respond to msgs post device_create (Erik Arfvidson) [1245362]
-
-* Fri Jul 31 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-302.el7]
-- [fs] nfs: objectlayout: Mark the object layout driver as a tech preview (Steve Dickson) [1248070]
-- [x86] Tell irq work about self IPI support (Rafael Aquini) [1240799]
-- [acpi] scan: reduce log level of "acpi: \_pr_.cpu4: failed to get CPU APIC ID" (Lenny Szubowicz) [1246077]
-- [netdrv] mlx4: restore conditional call to napi_complete_done() (Honggang Li) [1248338]
-- [cpufreq] intel_pstate: Add get_scaling cpu_defaults param to Knights Landing (Steve Best) [1145366]
-- [cpufreq] intel_pstate: Knights Landing support (Steve Best) [1145366]
-- [powerpc] add running_clock for powerpc to prevent spurious softlockup warnings (Gustavo Duarte) [1197000]
-- [kernel] sched/clock: add another clock for use with the soft lockup watchdog (Gustavo Duarte) [1197000]
-- [kernel] fork: Allow CLONE_PARENT after setns(CLONE_NEWPID) (Adrian Reber) [1241560]
-- [kernel] fork: unify and tighten up CLONE_NEWUSER/CLONE_NEWPID checks (Adrian Reber) [1241560]
-- [kernel] pidns: kill the unnecessary CLONE_NEWPID in copy_process() (Adrian Reber) [1241560]
-- [kernel] workqueue: Allow modifying low level unbound workqueue cpumask (Daniel Bristot de Oliveira) [1176155]
-- [kernel] workqueue: Create low-level unbound workqueues cpumask (Daniel Bristot de Oliveira) [1176155]
-- [kernel] workqueue: split apply_workqueue_attrs() into 3 stages (Daniel Bristot de Oliveira) [1176155]
-- [kernel] cpumask, nodemask: implement cpumask/nodemask_pr_args() (Daniel Bristot de Oliveira) [1176155]
-- [documentation] add print bitmap description (Daniel Bristot de Oliveira) [1176155]
-- [lib] vsprintf: implement bitmap printing through '*pb[l]' (Daniel Bristot de Oliveira) [1176155]
-- [fs] userfaultfd: call mark_tech_preview (Andrea Arcangeli) [965657]
-- [fs] userfaultfd: avoid missing wakeups during refile in userfaultfd_read (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: propagate the full address in THP faults (Andrea Arcangeli) [965657]
-- [fs] userfaultfd: allow signals to interrupt a userfault (Andrea Arcangeli) [965657]
-- [fs] userfaultfd: require UFFDIO_API before other ioctls (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: switch to exclusive wakeup for blocking reads (Andrea Arcangeli) [965657]
-- [fs] userfaultfd: fs/userfaultfd.c add more comments (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: documentation update (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: UFFDIO_COPY and UFFDIO_ZEROPAGE (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: avoid mmap_sem read recursion in mcopy_atomic (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: mcopy_atomic|mfill_zeropage: UFFDIO_COPY|UFFDIO_ZEROPAGE preparation (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: UFFDIO_COPY|UFFDIO_ZEROPAGE uAPI (Andrea Arcangeli) [965657]
-- [x86] userfaultfd: activate syscall (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: buildsystem activation (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: solve the race between UFFDIO_COPY|ZEROPAGE and read (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: allocate the userfaultfd_ctx cacheline aligned (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: optimize read() and poll() to be O(1) (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: wake pending userfaults (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: update the uffd_msg structure to be the same on 32/64bit (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: change the read API to return a uffd_msg (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: Rename uffd_api.bits into .features fixup (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: Rename uffd_api.bits into .features (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: waitqueue_active() race fix (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: cleanup superfluous _irq locking (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: add new syscall to provide memory externalization (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: prevent khugepaged to merge if userfaultfd is armed (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: teach vma_merge to merge across vma->vm_userfaultfd_ctx (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: call handle_userfault() for userfaultfd_missing() faults (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: add VM_UFFD_MISSING and VM_UFFD_WP (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: add vm_userfaultfd_ctx to the vm_area_struct (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: linux/userfaultfd_k.h (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: uapi: add missing include/types.h (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: uAPI (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: linux/Documentation/vm/userfaultfd.txt (Andrea Arcangeli) [965657]
-- [fs] nfs: use get_user_pages_unlocked (Andrea Arcangeli) [965657]
-- [mm] gup: kvm use get_user_pages_unlocked (Andrea Arcangeli) [965657]
-- [mm] gup: use get_user_pages_unlocked within get_user_pages_fast (Andrea Arcangeli) [965657]
-- [mm] gup: add __get_user_pages_unlocked to customize gup_flags (Andrea Arcangeli) [965657]
-- [mm] gup: add get_user_pages_locked and get_user_pages_unlocked (Andrea Arcangeli) [965657]
-- [net] bridge: vlan: fix usage of vlan 0 and 4095 again (John Greene) [1236709]
-- [net] bridge: new mode flag to indicate mode 'undefined' (John Greene) [1236709]
-- [net] bridge: simplify br_getlink() a bit (John Greene) [1236709]
-- [net] bridge: remove oflags from setlink/dellink (John Greene) [1236709]
-- [net] bridge: fix setlink/dellink notifications (John Greene) [1236709]
-- [net] bridge: fix uninitialized variable warning (John Greene) [1236709]
-- [net] bridge: new function to pack vlans into ranges during gets (John Greene) [1236709]
-- [net] rtnetlink: new filter RTEXT_FILTER_BRVLAN_COMPRESSED (John Greene) [1236709]
-- [net] bridge: support for multiple vlans and vlan ranges in setlink and dellink requests (John Greene) [1236709]
-- [net] bridge: add brport flags to dflt bridge_getlink (John Greene) [1236709]
-- [net] bridge: add new brport flag LEARNING_SYNC (John Greene) [1236709]
-- [net] bridge: move private brport flags to if_bridge.h so port drivers can use flags (John Greene) [1236709]
-- [net] bridge: add export of multicast database adjacent to net_dev (John Greene) [1236709]
-- [net] fib_trie: Drop unnecessary calls to leaf_pull_suffix (Alexander Duyck) [1247411]
-- [net] inet_diag: always export IPV6_V6ONLY sockopt for listening sockets (Phil Sutter) [1247309]
-- [net] inet_diag: export IPV6_V6ONLY sockopt (Phil Sutter) [1247309]
-
-* Wed Jul 29 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-301.el7]
-- [powerpc] kvm: book3s_hv: Fix preempted vcore stolen time calculation (Laurent Vivier) [1242757]
-- [powerpc] kvm: book3s_hv: Fix preempted vcore list locking (Laurent Vivier) [1242757]
-- [netdrv] be2net: support ndo_get_phys_port_id() (Ivan Vecera) [1138670]
-- [fs] ovl: Enable copy-up fd checking by default (David Howells) [1246555]
-- [fs] nfs: increase size of EXCHANGE_ID name string buffer (Benjamin Coddington) [1243961]
-- [fs] vfs: avoid creation of inode number 0 in get_next_ino (Carlos Maiolino) [1241665]
-- [fs] dlm: adopt orphan locks (David Teigland) [1208288]
-- [tools] turbostat: Revert to old -v/-V options (Prarit Bhargava) [1245299]
-- [perf] x86: Add more Broadwell model numbers (Jiri Olsa) [1242695]
-- [scsi] save command pool address of Scsi_Host (Vitaly Kuznetsov) [1245857]
-- [iser-target] Fix possible use-after-free (Andy Grover) [1136558 1185396]
-- [iser-target] release stale iser connections (Andy Grover) [1136558 1185396]
-- [iser-target] Fix variable-length response error completion (Andy Grover) [1136558 1185396]
-- [iser-target] Bump version to 1.0 (Andy Grover) [1136558 1185396]
-- [iser-target] Remove conn_ prefix from struct isert_conn members (Andy Grover) [1136558 1185396]
-- [iser-target] Remove un-needed rdma_listen backlog (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant check on the device (Andy Grover) [1136558 1185396]
-- [iser-target] Get rid of redundant max_accept (Andy Grover) [1136558 1185396]
-- [iser-target] Split some logic in isert_connect_request to routines (Andy Grover) [1136558 1185396]
-- [iser-target] Rename device find/release routines (Andy Grover) [1136558 1185396]
-- [iser-target] Rename rend/recv completion routines (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant assignment to local variable (Andy Grover) [1136558 1185396]
-- [iser-target] Introduce isert_alloc|free_comps (Andy Grover) [1136558 1185396]
-- [iser-target] Split isert_setup_qp (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant casting on void pointers (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant local variable (Andy Grover) [1136558 1185396]
-- [iser-target] Remove dead code (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant check on recv completion (Andy Grover) [1136558 1185396]
-- [iser-target] Use a single DMA MR and PD per device (Andy Grover) [1136558 1185396]
-- [iser-target] Rebase to v4.0.5 (Andy Grover) [1136558 1185396]
-- [infiniband] mlx5: iser,isert: Add Signature API additions (Andy Grover) [1136558 1185396]
-- [scsi] add SPC-3 command definitions (Andy Grover) [1136558 1185396]
-- [scsi] rename SERVICE_ACTION_IN to SERVICE_ACTION_IN_16 (Andy Grover) [1136558 1185396]
-- [scsi] st: null pointer dereference panic caused by use after kref_put by st_open (Maurizio Lombardi) [1239060]
-
-* Sat Jul 25 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-300.el7]
-- [watchdog] hpwdt: Fix initialization message in hpwdt.c (Nigel Croxon) [1204514]
-- [fs] autofs: fix the return value of autofs4_fill_super (Ian Kent) [1207319]
-- [fs] autofs4: translate pids to the right namespace for the daemon (Ian Kent) [1207319]
-- [fs] autofs4: allow autofs to work outside the initial PID namespace (Ian Kent) [1207319]
-- [fs] autofs4: make freeing sbi rcu-delayed (Ian Kent) [1207319]
-- [net] call rcu_read_lock early in process_backlog (Jiri Benc) [1243980]
-- [net] do not process device backlog during unregistration (Jiri Benc) [1243980]
-- [net] graceful exit from netif_alloc_netdev_queues() (Jiri Benc) [1245278]
-- [net] extend net_device allocation to vmalloc() (Jiri Benc) [1245278]
-- [net] rtnetlink: remove ndo_get_slave (Jarod Wilson) [1210322]
-- [net] rtnetlink: remove IFLA_BOND_SLAVE definition (Jarod Wilson) [1210322]
-- [net] rtnetlink: fix oops in rtnl_link_get_slave_info_data_size (Jarod Wilson) [1210322]
-- [net] rtnetlink: remove check for fill_slave_info in rtnl_have_link_slave_info (Jarod Wilson) [1210322]
-- [net] bonding: convert netlink to use slave data info api (Jarod Wilson) [1210322]
-- [net] rtnetlink: add missing IFLA_BOND_AD_INFO_UNSPEC (Jarod Wilson) [1210322]
-- [net] rtnetlink: provide api for getting and setting slave info (Jarod Wilson) [1210322]
-- [net] rtnetlink: put "BOND" into nl attribute names which are related to bonding (Jarod Wilson) [1210322]
-- [net] bonding: add netlink attributes to slave link dev (Jarod Wilson) [1210322]
-- [net] ipv4: take rtnl_lock and mark mrt table as freed on namespace cleanup (Phil Sutter) [1240747]
-- [bluetooth] Fix RFCOMM parent device for reused dlc (Lubomir Rintel) [1241844]
-- [bluetooth] Fix unsafe RFCOMM device parenting (Lubomir Rintel) [1241844]
-- [bluetooth] Directly close dlc for not yet started RFCOMM session (Lubomir Rintel) [1241844]
-- [bluetooth] Refactor dlc disconnect logic in rfcomm_dlc_close() (Lubomir Rintel) [1241844]
-- [bluetooth] Refactor deferred setup test in rfcomm_dlc_close() (Lubomir Rintel) [1241844]
-- [bluetooth] Simplify RFCOMM session state eval (Lubomir Rintel) [1241844]
-- [bluetooth] Verify dlci not in use before rfcomm_dev create (Lubomir Rintel) [1241844]
-- [bluetooth] Fix RFCOMM tty teardown race (Lubomir Rintel) [1241844]
-- [bluetooth] Fix unreleased rfcomm_dev reference (Lubomir Rintel) [1241844]
-- [bluetooth] Release rfcomm_dev only once (Lubomir Rintel) [1241844]
-- [bluetooth] Exclude released devices from RFCOMMGETDEVLIST ioctl (Lubomir Rintel) [1241844]
-- [bluetooth] Fix racy acquire of rfcomm_dev reference (Lubomir Rintel) [1241844]
-- [bluetooth] revert "bluetooth: Move rfcomm_get_device() before rfcomm_dev_activate()" (Lubomir Rintel) [1241844]
-- [bluetooth] revert "bluetooth: Always wait for a connection on RFCOMM open()" (Lubomir Rintel) [1241844]
-- [bluetooth] revert "bluetooth: Remove rfcomm_carrier_raised()" (Lubomir Rintel) [1241844]
-- [bluetooth] Refuse peer RFCOMM address reading when not connected (Lubomir Rintel) [1241844]
-- [bluetooth] Remove rfcomm_carrier_raised() (Lubomir Rintel) [1241844]
-- [bluetooth] Always wait for a connection on RFCOMM open() (Lubomir Rintel) [1241844]
-- [bluetooth] Move rfcomm_get_device() before rfcomm_dev_activate() (Lubomir Rintel) [1241844]
-- [bluetooth] Release RFCOMM port when the last user closes the TTY (Lubomir Rintel) [1241844]
-- [bluetooth] Fix to set proper bdaddr_type for RFCOMM connect (Lubomir Rintel) [1241844]
-- [bluetooth] Fix RFCOMM bind fail for L2CAP sock (Lubomir Rintel) [1241844]
-- [bluetooth] Fix issue with RFCOMM getsockopt operation (Lubomir Rintel) [1241844]
-- [bluetooth] Use IS_ERR_OR_NULL for checking bt_debugfs (Lubomir Rintel) [1241844]
-- [bluetooth] Store RFCOMM address information in its own socket structure (Lubomir Rintel) [1241844]
-- [bluetooth] don't release the port in rfcomm_dev_state_change() (Lubomir Rintel) [1241844]
-- [bluetooth] Fix waiting for clearing of BT_SK_SUSPEND flag (Lubomir Rintel) [1241844]
-- [bluetooth] Purge the dlc->tx_queue to avoid circular dependency (Lubomir Rintel) [1241844]
-- [bluetooth] Fix the reference counting of tty_port (Lubomir Rintel) [1241844]
-- [bluetooth] Implement .activate, .shutdown and .carrier_raised methods (Lubomir Rintel) [1241844]
-- [bluetooth] Move the tty initialization and cleanup out of open/close (Lubomir Rintel) [1241844]
-- [bluetooth] Remove the device from the list in the destructor (Lubomir Rintel) [1241844]
-- [bluetooth] Take proper tty_struct references (Lubomir Rintel) [1241844]
-- [net] netfilter: arptables: use percpu jumpstack (Florian Westphal) [1237126]
-- [pci] pciehp: Stop disabling notifications during init (Myron Stowe) [1243009]
-- [x86] build: Don't get confused by local symbols (Prarit Bhargava) [1245781]
-- [x86] perf: Fix CQM feature detection (Jiri Olsa) [1036948]
-- [crypto] nx - Fixing the limit number of bytes to be processed (Herbert Xu) [1190103]
-- [crypto] nx - Fix SHA concurrence issue and sg limit bounds (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-XCBC to be processed logic (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-GCM to be processed logic (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-ECB to be processed logic (Herbert Xu) [1190103]
-- [crypto] nx - Moving limit and bound logic in CTR and fix IV vector (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-CCM to be processed logic and sg_list bounds (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-CBC to be processed logic (Herbert Xu) [1190103]
-- [crypto] nx - Check for bogus firmware properties (Herbert Xu) [1190103]
-- [kernel] kabi: remove RH_KABI_CHANGE_TYPE (Hannes Frederic Sowa) [1241854]
-- [kernel] kabi: alignment and sizeof checks in RH_KABI_REPLACE/CHANGE_TYPE macros (Hannes Frederic Sowa) [1241854]
-- [block] use RH_KABI_REPLACE_UNSAFE in blk-mq.h (Hannes Frederic Sowa) [1241854]
-- [kernel] kabi: introduce RH_KABI_REPLACE_UNSAFE (Hannes Frederic Sowa) [1241854]
-- [kernel] kabi: introduce RH_KABI_USE2_P (Sabrina Dubroca) [1241515]
-- [kernel] kabi: remove RH_KABI_REPLACE_P (Sabrina Dubroca) [1241515]
-- [kernel] include/*: stop using RH_KABI_REPLACE_P (Sabrina Dubroca) [1241515]
-- [kernel] kabi: introduce RH_KABI_RENAME (Sabrina Dubroca) [1241515]
-- [net] sk_buff: don't use RH_KABI_REPLACE_P for bitfields (Sabrina Dubroca) [1241515]
-- [kernel] kabi: modify _RH_KABI_REPLACE to integrate RH_KABI_REPLACE_P with RH_KABI_REPLACE (Sabrina Dubroca) [1241515]
-- [netdrv] fm10k: fix use of ifla_vf_info->tx_rate (Sabrina Dubroca) [1241515]
-- [netdrv] sfc: fix use of ifla_vf_info->tx_rate (Sabrina Dubroca) [1241515]
-- [kernel] revert "softirq: Add support for triggering softirq work on softirqs" (Sabrina Dubroca) [1241515]
-- [netdrv] be2net: bump up the driver version to 10.6.0.3 (Ivan Vecera) [1245683]
-- [netdrv] be2net: make SET_LOOPBACK_MODE cmd asynchrounous (Ivan Vecera) [1245683]
-- [netdrv] be2net: make the RX_FILTER command asynchronous (Ivan Vecera) [1245683]
-- [netdrv] be2net: return error status from be_mcc_notify() (Ivan Vecera) [1245683]
-- [netdrv] be2net: convert dest field in udp-hdr to host-endian (Ivan Vecera) [1245683]
-- [netdrv] be2net: fix wrong return value in be_check_ufi_compatibility() (Ivan Vecera) [1245683]
-- [netdrv] be2net: remove redundant D0 power state set (Ivan Vecera) [1245683]
-- [netdrv] be2net: query FW to check if EVB is enabled (Ivan Vecera) [1245683]
-- [netdrv] be2net: remove duplicate code in be_setup_wol() (Ivan Vecera) [1245683]
-- [netdrv] remove all references to obsolete Ethernet-HOWTO (Ivan Vecera) [1245683]
-- [infiniband] ocrdma: Destroy ocrdma_dev_id IDR on module exit (Honggang Li) [1244604]
-- [infiniband] ucma: Destroy multcast_idr on module exit (Honggang Li) [1244604]
-- [infiniband] ipoib: Set MTU to max allowed by mode when mode changes (Honggang Li) [1244604]
-- [infiniband] ipoib: Scatter-Gather support in connected mode (Honggang Li) [1244604]
-- [infiniband] ucm: Fix bitmap wrap when devnum > IB_UCM_MAX_DEVICES (Honggang Li) [1244604]
-- [infiniband] ipoib: Prevent lockdep warning in __ipoib_ib_dev_flush (Honggang Li) [1244604]
-- [infiniband] ucma: Fix lockdep warning in ucma_lock_files (Honggang Li) [1244604]
-- [net] rds: rds_ib_device.refcount overflow (Honggang Li) [1244604]
-- [infiniband] nes: Fix for incorrect recording of the MAC address (Honggang Li) [1244604]
-- [infiniband] nes: Fix for resolving the neigh (Honggang Li) [1244604]
-- [infiniband] core: Fixes for port mapper client registration (Honggang Li) [1244604]
-- [infiniband] cm: Do not queue work to a device that's going away (Honggang Li) [1244604]
-- [infiniband] mad: Remove improper use of BUG_ON (Honggang Li) [1244604]
-- [infiniband] mad: Fix compare between big endian and cpu endian (Honggang Li) [1244604]
-- [infiniband] Add rdma_cap_ib_switch helper and use where appropriate (Honggang Li) [1244604]
-- [infiniband] mlx4: Do not attemp to report HCA clock offset on VFs (Amir Vadai) [1238185]
-- [infiniband] ipoib: Fix bad error flow in ipoib_add_port() (Amir Vadai) [1238185]
-- [security] selinux: reduce the number of calls to synchronize_net() when flushing caches (Paul Moore) [1030405]
-- [security] selinux: conditionally reschedule in hashtab_insert while loading selinux policy (Paul Moore) [1030405]
-- [security] selinux: conditionally reschedule in mls_convert_context while loading selinux policy (Paul Moore) [1030405]
-
-* Thu Jul 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-299.el7]
-- [inifniband] mlx4: Add support for CQ time-stamping (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] mlx4: Add mmap call to map the hardware clock (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Pass hardware specific data in query_device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Add timestamp_mask and hca_core_clock to query_device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Extend ib_uverbs_create_cq (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Add CQ creation time-stamping flag (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Change ib_create_cq to use struct ib_cq_init_attr (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Change provider's API of create_cq to be extendible (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Disable HA for SRIOV PF RoCE devices (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] mlx4: Fix error paths in mlx4_ib_create_flow() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix wrong csum complete report when rxvlan offload is disabled (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Wake TX queues only when there's enough room (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Release TX QP when destroying TX ring (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use HW counters for rx/tx bytes/packets in PF device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix off-by-four in ethtool (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Prefetch skb data on RX (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Pop cq outside mlx5e_get_cqe (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Remove mlx5e_cq.sqrq back-pointer (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Remove extra spaces (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Avoid TX CQE generation if more xmit packets expected (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Avoid redundant dev_kfree_skb() upon NOP completion (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Remove re-assignment of wq type in mlx5e_enable_rq() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Use skb_shinfo(skb)->gso_segs rather than counting them (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Static mapping of netdev priv resources to/from netdev TX queues (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Support NETIF_F_SG (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Enable TX rate limit per VF (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: use napi_complete_done() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Disable Granular QoS per VF under IB/Eth VPI configuration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Support ndo_get_vf_stats (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Show PF own statistics via ethtool (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add helper to query counters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Set VF to read from QP counters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Add RoCE/IB dedicated counters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Allocate default counter per port (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add port attribute when tracking counters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Adjust counter grant policy in the resource tracker (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Remove counters table allocation from VF flow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add sink counter (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Reset counters data when freed (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Check before cleaning counters bitmap (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Add transport domain to the ethernet TIRs/TISs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Add transport domain alloc/dealloc support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Enforce max flow-tables level >= 3 (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Disable client vlan TX acceleration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Add HW cacheline start padding (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Fix HW MTU settings (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: fix an error code (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: use swap() in mlx4_make_profile() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: use swap() in mlx4_init_qp_table() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Prevent setting invalid RSS hash function (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Support for configurable RSS hash function (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] ptp: mlx4: use helpers for converting ns to timespec (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] ptp: mlx4: convert to the 64 bit get/set time methods (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: only pull headers into skb head (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] configs: Enable ConnectX-4 IB/Ethernet HCA (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix static checker warnings around system guid query flow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Enable mutual support for IB and Ethernet (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Don't create IB instance over Ethernet ports (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Avoid using the MAD_IFC command under ISSI > 0 mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Add more query port helpers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use port number when querying port ptys (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use port number in the query port mtu helpers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Get vendor-id using the query adapter command (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Add new query HCA vport commands (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Make the vport helpers available for the IB driver too (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Check the return bitmask when querying ISSI (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Enable XRCs and SRQs when using ISSI > 0 (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Apply proper name convention to helpers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_en: Add missing check for memory allocation failure (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: fix typo in mlx4_set_vf_mac (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: need to call close fw if alloc icm is called twice (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: double free of dev_vfs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix build failure introduced by the EQ pool changes (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Make sure there are no pending async events when freeing CQ (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Move affinity hints to mlx4_core ownership (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add EQ pool (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Demote simple multicast and broadcast flow steering rules (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Extend mlx5_core to support ConnectX-4 Ethernet functionality (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Ethernet resource handling files (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Ethernet Datapath files (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Set/Query port MTU commands (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Modify CQ moderation parameters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Implement get/set port status (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Implement access functions of ptys register fields (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: New device capabilities handling (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: HW data structs/types definitions cleanup (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Set irq affinity hints (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core, mlx5_ib: Do not use vmap() on coherent memory (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix fallback from MSI-X to INTx (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Enable single ported IB VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Adjust the schedule queue port in reset-to-init too (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Adjust the schedule queue port for single ported IB VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Modify port values when generting EQEs for VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Convert slave port before building address-handle (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Enhance the MAD_IFC wrapper to convert VF port to physical (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Avoid 'may be used uninitialized' warnings (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] infiniband: Remove duplicated KERN_<LEVEL> from pr_<level> uses (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Work properly with EQ numbers > 256 in SRIOV (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix off-by-one in counters manipulation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Schedule napi when RX buffers allocation fails (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix unaligned accesses (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use correct loop cursor in error path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix reading HCA max message size in mlx4_QUERY_DEV_CAP (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: wrong page mask if CONFIG_ARCH_DMA_ADDR_T_64BIT enabled for 32Bit architectures (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] infiniband/mlx4: check for mapping error (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Fix WQE LSO segment calculation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Change alias guids default to be host assigned (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Return the admin alias GUID upon host view request (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Raise slave shutdown event upon FLR (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Request alias GUID on demand (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Change init flow to request alias GUIDs for active VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Manage admin alias GUID upon admin request (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Set initial admin GUIDs for VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Manage alias GUID per VF (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Alias GUID adding persistency support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4/mlx5: Use dma_wmb/rmb where appropriate (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix error message deprecation for ConnectX-2 cards (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Extend struct mlx5_interface to support multiple protocols (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Modify arm CQ in preparation for upcoming Ethernet driver (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Move completion eqs from mlx5_ib to mlx5_core (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Update module info macros for ConnectX4 Support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Fix Mellanox copyright note (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix Mellanox copyright note (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix a bug in alloc_token (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Avoid usage command work entry after writing command doorbell (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Avoid copying outbox in aysnc command completion (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use coherent memory for command interface page (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use the right inbox struct in destroy mkey command (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Clear doorbell record inside mlx5_db_alloc() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Avoid setting DC requestor/responder resources (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Coding style fix (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix call to mlx5_core_qp_modify (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Allocate firmware pages from device's NUMA node (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add RX-ALL support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add RX-FCS support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add interface identify support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add SET_PORT opcode modifiers enumeration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Set enhanced QoS support by default when ETS supported (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Warn users of depracated QoS Firmware (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Added qos_vport QP configuration in VST mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Allocate VPPs for each port on PF init (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Query device for QoS per VF support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add mlx4_SET_VPORT_QOS implementation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add mlx4_ALLOCATE_VPP implementation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: New file for QoS related firmware commands (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Aesthetic code changes in multi_func_init (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Make mlx4_is_eth visible inline funcion (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Change loopback only upon feature change (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add RSS support for fragmented IP datagrams (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Moderate ethtool callback to show more statistics (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add Flow control statistics display via ethtool (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Protect access to the statistics bitmap (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Support general selective view of ethtool statistics (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Move statistics bitmap setting to the Ethernet driver (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Create new header file for all statistics info (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix port counters statistics bitmask (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix GEN_EQE accessing uninitialixed mutex (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Call register_netdevice in the proper location (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Set statistics bitmap at port init (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Saturate RoCE port PMA counters in case of overflow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix off-by-one in ethtool statistics display (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Verify net device validity on port change event (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add basic support for QP max-rate limiting (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: don't export static symbol (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: codespell comment spelling fixes (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use eth_<foo>_addr instead of memset (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Disbale GRO for incoming loopback/selftest packets (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix wrong mask and error flow for the update-qp command (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Update the dev in reg_create (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: In mlx4_ib_demux_cm, print out GUID in host-endian order (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Bug fixes in mlx4_ib_resize_cq (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Fix memory leak in __mlx4_ib_modify_qp (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Fix error code in get_port_caps() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix configuration of log_uar_page_sz (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] net: mellanox: Delete unnecessary checks before the function call "vunmap" (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Reset flow support for IB kernel ULPs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Always use the correct port for mirrored multicast attachments (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Notify TX Vlan offload change (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Adjust RX frag strides to frag sizes (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Print page allocator information (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Move to use hex PCI device IDs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix misleading debug print on CQE stride support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix mpt_entry initialization in mlx4_mr_rereg_mem_write() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Load balance ports in port aggregation mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Create mirror flows in port aggregation mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Add port aggregation support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Reuse mlx4_mac_to_u64() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Port aggregation upper layer interface (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Port aggregation low level interface (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix kernel Oops (mem corruption) when working with more than 80 VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Update the HCA core clock frequency after INIT_PORT (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix device capabilities dumping (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Fix memory corruption in mlx4_MAD_IFC_wrapper (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use ethtool cmd->autoneg as a hint for ethtool set settings (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Remove duplicate code line from procedure mlx4_bf_alloc (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix struct mlx4_vhcr_cmd to make implicit padding explicit (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix HW2SW_EQ to conform to the firmware spec (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Adjust command timeouts to conform to the firmware spec (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix mem leak in SRIOV mlx4_init_one error flow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add reserved lkey for VFs to QUERY_FUNC_CAP (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add bad-cable event support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Reset flow activation upon SRIOV fatal command cases (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Enable device recovery flow with SRIOV (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Handle AER flow properly (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Manage interface state for Reset flow cases (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Activate reset flow upon fatal command cases (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Enhance the catas flow to support device reset (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Refactor the catas flow to work per device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Set device configuration data to be persistent across reset (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Maintain a persistent memory for mlx4 device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Don't disable vxlan offloads under DMFS-A0 optimized steering (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] infiniband: mlx5: avoid a compile-time warning (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: avoid build warnings on 32-bit (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: include clocksource.h again (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix error flow in mlx4_init_hca() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Correcly update the mtt's offset in the MR re-reg flow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Doorbell is byteswapped in Little Endian archs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Implement on demand paging by adding support for MMU notifiers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Add support for RDMA read/write responder page faults (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Handle page faults (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Page faults handling infrastructure (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Add mlx5_ib_update_mtt to update page tables after creation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Changes in memory region creation to support on-demand paging (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Implement the ODP capability query verb (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Add support for page faults events and low level handling (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Add function to read WQE from user-space (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Enhance UMR support to allow partial page table update (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Remove per-MR pas and dma pointers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Check for DPDP violation only when DPDP is not supported (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Fix an incorrectly shadowed variable in mlx4_ib_rereg_user_mr (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Avoid double dumping of the PF device capabilities (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fixed memory leak and incorrect refcount in mlx4_load_one (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add support for A0 steering (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Refactor QUERY_PORT (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add explicit error message when rule doesn't meet configuration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add A0 hybrid steering (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add mlx4_bitmap zone allocator (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add a check if there are too many reserved QPs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Change QP allocation scheme (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Use tasklet for user-space CQ completion events (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Mask out host side virtualization features for guests (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Set csum level for encapsulated packets (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Fix error flow in add_keys (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Fix sparse warnings (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Clear outbox of dealloc uar (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Print resource number on QP/SRQ async events (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix command queue size enforcement (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix min vectors value in mlx5_enable_msix (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Request the mlx5 IB module on driver load (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Limit count field to 24 bits in qp_alloc_res (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: don't duplicate kvfree() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: don't duplicate kvfree() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Support more than 64 VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Flexible (asymmetric) allocation of EQs and MSI-X vectors for PF/VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add QUERY_FUNC firmware command (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Refactor mlx4_load_one (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Refactor mlx4_cmd_init and mlx4_cmd_cleanup (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Use correct variable type for mlx4_slave_cap (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix wrong reading of reserved_eqs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Extend checksum offloading by CHECKSUM COMPLETE (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Extend usage of napi_gro_frags (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix race on driver load (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix race in create EQ (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add retrieval of CONFIG_DEV parameters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add __GFP_COLD gfp flags in alloc_pages (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Remove RX buffers alignment to IP_ALIGN (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Prevent VF from changing port configuration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: use napi_schedule_irqoff() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Report actual number of rings in indirection table (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Move spinlocks and work initalizations to beginning of init_netdev (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Call napi_synchronize on stop_port (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Cleanups suggested by clang static checker (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add ethtool support for [rx|tx]vlan offload set to OFF/ON (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add support for setting rxvlan offload OFF/ON (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Call synchronize_irq() before freeing EQ buffer (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Call synchronize_irq() before freeing EQ buffer (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: fix race accessing page->_count (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Use extended internal signature layout (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Use enumerations for PI copy mask (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Modify to work with arbitrary page size (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Remove duplicate code from mlx5_set_path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Fix possible array overflow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Improve debug prints in mlx5_ib_reg_user_mr (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Clear umr resources after ib_unregister_device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: remove NETDEV_TX_BUSY (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Enable the compiler to make is_inline() inlined (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use local var for skb_headlen(skb) (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use local var in tx flow for skb_shinfo(skb) (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: mlx4_en_xmit() reads ring->cons once, and ahead of time to avoid stalls (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Avoid false sharing in mlx4_en_en_process_tx_cq() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use prefetch in tx path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Avoid a cache line miss in TX completion for single frag skb's (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: tx_info allocated with kmalloc() instead of vmalloc() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Avoid calling bswap in tx fast path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Align tx path structures to cache lines (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Code cleanups in tx path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: add a new xmit_more counter (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Identify resources by their type (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: use set/get macros in device caps (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use hardware registers description header file (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Update device capabilities handling (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Deprecate error message at ConnectX-2 cards startup to debug (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Protect QUERY_PORT wrapper from untrusted guests (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: New init and exit flow for mlx4_core (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Don't disable SRIOV if there are active VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: exploit skb->xmit_more to conditionally send doorbell (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Allow not to specify probe_vf in SRIOV IB mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mellanox: Change en_print to return void (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Fix VF mac handling in RoCE (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Do not allow APM under RoCE (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Don't update QP1 in native mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Avoid accessing netdevice when building RoCE qp1 header (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Fix mlx4 reg/unreg mac to work properly with 0-mac addresses (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Correct error flows in rereg_mr (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Disable TSO for Connect-X rev. A0 HCAs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [net] netif_set_xps_queue: make cpu mask const (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [net] core: Add reading VF statistics through the PF netdevice (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-
-* Thu Jul 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-298.el7]
-- [fs] sunrpc: Adjust rpciod workqueue parameters (Benjamin Coddington) [1191956]
-- [fs] ovl: lookup whiteouts outside iterate_dir() (David Howells) [1178942]
-- [fs] ovl: allow distributed fs as lower layer (David Howells) [1178942]
-- [fs] ovl: don't traverse automount points (David Howells) [1178942]
-- [fs] ovl: mount read-only if workdir can't be created (David Howells) [1178942]
-- [fs] ovl: don't remove non-empty opaque directory (David Howells) [1178942]
-- [fs] ovl: rearrange ovl_follow_link to it doesn't need to call ->put_link (David Howells) [1178942]
-- [fs] ovl: upper fs should not be R/O (David Howells) [1178942]
-- [fs] ovl: check lowerdir amount for non-upper mount (David Howells) [1178942]
-- [fs] ovl: print error message for invalid mount options (David Howells) [1178942]
-- [fs] ovl: discard independent cursor in readdir() (David Howells) [1178942]
-- [fs] ovl: Prevent rw remount when it should be ro mount (David Howells) [1178942]
-- [fs] ovl: Fix opaque regression in ovl_lookup (David Howells) [1178942]
-- [fs] ovl: Fix kernel panic while mounting overlayfs (David Howells) [1178942]
-- [fs] ovl: Use macros to present ovl_xattr (David Howells) [1178942]
-- [fs] ovl: Cleanup redundant blank lines (David Howells) [1178942]
-- [fs] ovl: support multiple lower layers (David Howells) [1178942]
-- [fs] ovl: make upperdir optional (David Howells) [1178942]
-- [fs] ovl: improve mount helpers (David Howells) [1178942]
-- [fs] ovl: mount: change order of initialization (David Howells) [1178942]
-- [fs] ovl: allow statfs if no upper layer (David Howells) [1178942]
-- [fs] ovl: lookup ENAMETOOLONG on lower means ENOENT (David Howells) [1178942]
-- [fs] ovl: check whiteout on lowest layer as well (David Howells) [1178942]
-- [fs] ovl: multi-layer lookup (David Howells) [1178942]
-- [fs] ovl: multi-layer readdir (David Howells) [1178942]
-- [fs] ovl: helper to iterate layers (David Howells) [1178942]
-- [fs] ovl: add mutli-layer infrastructure (David Howells) [1178942]
-- [fs] ovl: dont replace opaque dir (David Howells) [1178942]
-- [fs] ovl: make path-type a bitmap (David Howells) [1178942]
-- [fs] ovl: check whiteout while reading directory (David Howells) [1178942]
-- [fs] coredump: add i/I in core_pattern to report the tid of the crashed thread (Oleg Nesterov) [1240966]
-- [fs] bio-integrity: do not assume bio_integrity_pool exists if bioset exists (Mike Snitzer) [1198035]
-- [md] dm-btree: silence lockdep lock inversion in dm_btree_del() (Mike Snitzer) [1186625]
-- [md] dm-thin: allocate the cell_sort_array dynamically (Mike Snitzer) [1244318]
-- [md] dm-cache: avoid calls to prealloc_free_structs() if possible (Mike Snitzer) [1244247]
-- [md] dm-cache: avoid preallocation if no work in writeback_some_dirty_blocks() (Mike Snitzer) [1244247]
-- [md] dm-cache: do not wake_worker() in free_migration() (Mike Snitzer) [1244247]
-- [md] dm-cache: display 'needs_check' in status if it is set (Mike Snitzer) [1243916]
-- [md] dm-thin: display 'needs_check' in status if it is set (Mike Snitzer) [1243916]
-- [md] dm-thin: stay in out-of-data-space mode once no_space_timeout expires (Mike Snitzer) [1243913]
-- [char] ipmi_ssif: add arguments that were removed upstream (Tony Camuso) [1229675]
-- [powerpc] msi: Use WARN_ON() in msi bitmap selftests (Steve Best) [1241612]
-- [powerpc] msi: Fix the msi bitmap alignment tests (Steve Best) [1241612]
-
-* Mon Jul 20 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-297.el7]
-- [kernel] Make some warnings non-fatal for powerpc builds (Thomas Huth) [1243836]
-- [edac] amd64_edac: Add F15h M60h support (Kim Naru) [1135004]
-- [edac] Sync memory types and names (Kim Naru) [1135004]
-- [edac] mc: Add DDR3 LRDIMM entries to edac_mem_types (Kim Naru) [1135004]
-- [x86] amd_nb: Add device IDs to NB tables for F15h M60h (Kim Naru) [1135004]
-- [edac] amd64_edac: Modify usage of amd64_read_dct_pci_cfg() (Kim Naru) [1135004]
-- [edac] mce_amd: Add MCE decoding for F15h M60h (Kim Naru) [1135004]
-- [edac] amd64_edac: Remove "amd64" prefix from static functions (Kim Naru) [1135004]
-- [zram] don't grab mutex in zram_slot_free_noity (Seth Jennings) [1236697]
-- [fs] revert "nfs: Fixing lease renewal" (Carlos Maiolino) [1205048]
-- [md] raid0: Disable discard per default due to performance uncertainty (Jes Sorensen) [1215280]
-- [net] udp: fix behavior of wrong checksums (Denys Vlasenko) [1240761] {CVE-2015-5364 CVE-2015-5366}
-- [net] tcp: always send a quick ack when quickacks are enabled (Hannes Frederic Sowa) [1241718]
-- [net] tcp: tcp_get_info() should fetch socket fields once (Sabrina Dubroca) [1235100]
-- [net] tcp: add pacing_rate information into tcp_info (Sabrina Dubroca) [1235100]
-- [net] tcp: do not pace pure ack packets (Sabrina Dubroca) [1235100]
-- [net] ipv4: tcp: get rid of ugly unicast_sock (Sabrina Dubroca) [1235100]
-- [net] ipv4: dst_entry leak in ip_send_unicast_reply() (Sabrina Dubroca) [1235100]
-- [net] ipv4: rename ip_options_echo to __ip_options_echo() (Sabrina Dubroca) [1235100]
-- [net] tcp: ipv4: initialize unicast_sock sk_pacing_rate (Sabrina Dubroca) [1235100]
-- [net] tcp: refine TSO autosizing (Sabrina Dubroca) [1235100]
-- [net] tcp: use ACCESS_ONCE() in tcp_update_pacing_rate() (Sabrina Dubroca) [1235100]
-- [net] introduce SO_MAX_PACING_RATE (Sabrina Dubroca) [1235100]
-- [net] configs: enable Fair Queue scheduler (CONFIG_NET_SCH_FQ) (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: correct spelling of locally (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: better control of DDOS traffic (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: avoid hang when quantum 0 (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: remove useless TIME_WAIT check (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: increase max delay from 125 ms to one second (Sabrina Dubroca) [1235102]
-- [net] net_sched: avoid costly atomic operation in fq_dequeue() (Sabrina Dubroca) [1235102]
-- [net] netem: Fixes byte backlog accounting for the first of two chained netem instances (Sabrina Dubroca) [1235102]
-- [net] net_sched: implement qstat helper routines (Sabrina Dubroca) [1235102]
-- [net] sch_tbf: handle too small burst (Sabrina Dubroca) [1235102]
-- [net] sch_tbf: segment too big GSO packets (Sabrina Dubroca) [1235102]
-- [net] netem: update backlog after drop (Sabrina Dubroca) [1235102]
-- [net] net_sched: increment drop counters in qdisc_tree_decrease_qlen() (Sabrina Dubroca) [1235102]
-- [net] netem: fix possible NULL deref in netem_dequeue() (Sabrina Dubroca) [1235102]
-- [net] netem: use rb tree to implement the time queue (Sabrina Dubroca) [1235102]
-- [net] net_sched: return nla_nest_end() instead of skb->len (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: do not hold qdisc lock while allocating memory (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: more robust memory allocation (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: fix pacing for small frames (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: warn users using defrate (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: change classification of control packets (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: clear time_next_packet for reused flows (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: fix non TCP flows pacing (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: fix typo for initial_quantum (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: rate limiting improvements (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: qdisc dismantle fixes (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: prefetch() fix (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: Fair Queue packet scheduler (Sabrina Dubroca) [1235102]
-
-* Fri Jul 17 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-296.el7]
-- [x86] irq: hide HYP in /proc/interrupts when not on Xen/Hyper-V (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] hyperv: restore irq accounting (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] xen: Add proper irq accounting for HYPERCALL vector (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] irq: Properly tag virtualization entry in /proc/interrupts (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] Add proper vector accounting for HYPERVISOR_CALLBACK_VECTOR (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] kvm: keep track of LVT0 changes under APICv (Radim Krcmar) [1236434]
-- [x86] kvm: properly restore LVT0 (Radim Krcmar) [1236434]
-- [x86] kvm: make vapics_in_nmi_mode atomic (Radim Krcmar) [1236434]
-- [netdrv] sfc: Report TX completions to BQL after all TX events in interrupt (Jarod Wilson) [1242006]
-- [netdrv] sfc: Ensure down_write(&filter_sem) and up_write() are matched before calling efx_net_open() (Jarod Wilson) [1242006]
-- [netdrv] sfc: suppress handled MCDI failures when changing the MAC address (Jarod Wilson) [1242006]
-- [netdrv] sfc: add legacy method for changing a PF's MAC address (Jarod Wilson) [1242006]
-- [netdrv] sfc: refactor code in efx_ef10_set_mac_address() (Jarod Wilson) [1242006]
-- [crypto] nx - replace NX842_MEM_COMPRESS with function (Gustavo Duarte) [1221925]
-- [crypto] nx - move include/linux/nx842.h into drivers/crypto/nx/nx-842.h (Gustavo Duarte) [1221925]
-- [crypto] nx - fix nx-842 pSeries driver minimum buffer size (Gustavo Duarte) [1221925]
-- [crypto] nx - prevent nx 842 load if no hw driver (Gustavo Duarte) [1221925]
-- [crypto] nx - remove 842-nx null checks (Gustavo Duarte) [1221925]
-- [lib] correct 842 decompress for 32 bit (Gustavo Duarte) [1221925]
-- [lib] make lib/842 decompress functions static (Gustavo Duarte) [1221925]
-- [crypto] nx - add hardware 842 crypto comp alg (Gustavo Duarte) [1221925]
-- [crypto] nx - simplify pSeries nx842 driver (Gustavo Duarte) [1221925]
-- [crypto] nx - add PowerNV platform NX-842 driver (Gustavo Duarte) [1221925]
-- [crypto] nx - add nx842 constraints (Gustavo Duarte) [1221925]
-- [crypto] nx - add NX-842 platform frontend driver (Gustavo Duarte) [1221925]
-- [crypto] nx - rename nx-842.c to nx-842-pseries.c (Gustavo Duarte) [1221925]
-- [crypto] 842 - change 842 alg to use software (Gustavo Duarte) [1221925]
-- [lib] add software 842 compression/decompression (Gustavo Duarte) [1221925]
-- [powerpc] Add ICSWX instruction (Gustavo Duarte) [1221925]
-- [powerpc] export of_get_ibm_chip_id function (Gustavo Duarte) [1221925]
-- [crypto] Add 2 missing __exit_p (Gustavo Duarte) [1221925]
-- [crypto] nx-842: dev_set_drvdata can no longer fail (Gustavo Duarte) [1221925]
-- [crypto] nx - Use RCU_INIT_POINTER(x, NULL) (Gustavo Duarte) [1221925]
-- [crypto] nx-842: Fix handling of vmalloc addresses (Gustavo Duarte) [1221925]
-- [powerpc] perf: Fail 24x7 initcall if create_events_from_catalog() fails (Gustavo Duarte) [1182055]
-- [powerpc] perf: 24x7: Fix lockdep warning (Gustavo Duarte) [1182055]
-- [powerpc] perf: Document sysfs event description entries (Gustavo Duarte) [1182055]
-- [powerpc] perf: add the remaining gpci requests (Gustavo Duarte) [1182055]
-- [powerpc] perf: generate requests with counters annotated (Gustavo Duarte) [1182055]
-- [powerpc] perf: parse catalog and populate sysfs with events (Gustavo Duarte) [1182055]
-- [powerpc] perf: define EVENT_DEFINE_RANGE_FORMAT_LITE helper (Gustavo Duarte) [1182055]
-- [powerpc] perf: documentation: Add event parameters (Gustavo Duarte) [1182055]
-- [powerpc] perf: documentation: Remove duplicated docs for powerpc cpu specific events (Gustavo Duarte) [1182055]
-- [powerpc] perf: documentation: sysfs events/ interfaces (Gustavo Duarte) [1182055]
-- [powerpc] perf: Use common PMU interrupt disabled code (Gustavo Duarte) [1182055]
-- [powerpc] mm: Serialize pmd clear against a linux page table walk (Gustavo Duarte) [1233071]
-- [powerpc] mm: Return NULL for not present hugetlb page (Gustavo Duarte) [1233071]
-- [powerpc] mm: Return pte address if we find trans_splitting (Gustavo Duarte) [1233071]
-- [powerpc] mm: Make page table walk safe against thp split/collapse (Gustavo Duarte) [1233071]
-- [powerpc] kvm: Remove page table walk helpers (Gustavo Duarte) [1233071]
-
-* Wed Jul 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-295.el7]
-- [powerpc] powernv: Fix race in updating core_idle_state (Steve Best) [1237270]
-- [cpuidle] powernv: Auto-promotion of snooze to deeper idle state (Gustavo Duarte) [1235256]
-- [netdrv] e1000, e1000e: Use dma_rmb instead of rmb for descriptor read ordering (John Greene) [1173781]
-- [netdrv] e1000: add dummy allocator to fix race condition between mtu change and netpoll (John Greene) [1173781]
-- [netdrv] e1000: call netif_carrier_off early on down (John Greene) [1173781]
-- [netdrv] e1000: support txtd update delay via xmit_more (John Greene) [1173781]
-- [netdrv] e1000: fix time comparison (John Greene) [1173781]
-- [netdrv] bna: revert "Update the Driver and Firmware Version" (Ivan Vecera) [1240644]
-- [kernel] module: remove TAINT_CRAP on staging modules (Prarit Bhargava) [1242024]
-- [block] revert "remove artifical max_hw_sectors cap" (Jeff Moyer) [1238922]
-- [perf] bench-numa: Show more stats of particular threads in verbose mode (Petr Holasek) [1018954]
-- [scsi] don't add scsi_device if its already visible (Vitaly Kuznetsov) [1242390]
-- [scsi] iscsi: let session recovery_tmo sysfs writes persist across recovery (Chris Leech) [1139038]
-- [edac] Properly unwind on failure path in edac_init() (Seth Jennings) [1240814]
-- [edac] Allow to pass driver-specific attribute groups (Seth Jennings) [1240814]
-- [edac] Use static attribute groups for managing sysfs entries (Seth Jennings) [1240814]
-- [edac] edac: edac_mc_sysfs: Make stuff static (Seth Jennings) [1240814]
-- [edac] Fix the leak of mci->bus->name when bus_register fails (Seth Jennings) [1240814]
-- [edac] Mark edac_create_debug_nodes as static (Seth Jennings) [1240814]
-- [x86] revert "pci: Refine the way to release PCI IRQ resources" (Steve Best) [1231358 1238216]
-- [x86] pci: Refine the way to release PCI IRQ resources (Steve Best) [1231358 1238216]
-- [x86] irq: Keep balance of IOAPIC pin reference count (Steve Best) [1231358 1238216]
-- [x86] irq: Fix placement of mp_should_keep_irq() (Steve Best) [1231358 1238216]
-- [x86] irq, pci: Keep IRQ assignment for runtime power management (Steve Best) [1231358 1238216]
-- [x86] irq, pci: Keep IRQ assignment for PCI devices during suspend/hibernation (Steve Best) [1231358 1238216]
-- [x86] Mark Intel Skylake-S processor as supported (Steve Best) [1131729]
-- [x86] bpf_jit: fix compilation of large bpf programs (Denys Vlasenko) [1236939] {CVE-2015-4700}
-- [x86] ASLR bruteforce possible for vdso library (Jacob Tanenbaum) [1184899] {CVE-2014-9585}
-- [x86] mm: Improve AMD Bulldozer ASLR workaround (Prarit Bhargava) [1240884]
-- [dma] ioat: fix tasklet tear down ("Herton R. Krzesinski") [1210093]
-- [md] revert "dm: only run the queue on completion if congested or no requests pending" (Mike Snitzer) [1241237]
-- [fs] nfsv4: Always drain the slot table before re-establishing the lease (Benjamin Coddington) [1240790]
-- [mm] export find_extend_vma() and handle_mm_fault() for driver use (Jerome Glisse) [1210492]
-- [mm] mmu_notifier: add new callback for mmu_notifier without breaking kabi (Jerome Glisse) [1210492]
-- [mm] mmu_notifier: call mmu_notifier_invalidate_range() from VMM (Jerome Glisse) [1210492]
-- [mm] mmu_notifier: add mmu_notifier_invalidate_range() (Jerome Glisse) [1210492]
-
-* Fri Jul 10 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-294.el7]
-- [video] radeon: Conditionally compile PM code (Thomas Huth) [1238568]
-- [char] ipmi: Fix backport of powernv IPMI driver (Thomas Huth) [1238568]
-- [of] Silence warning due to bad backport in drivers/of/base.c (Thomas Huth) [1238568]
-- [powerpc] boot/fdt: Use unsigned long for pointer casts (Thomas Huth) [1238568]
-- [char] hwrng: pseries - remove incorrect __init/__exit markups (Thomas Huth) [1238568]
-- [mm] page_alloc.c: use '__paginginit' instead of '__init' (Thomas Huth) [1238568]
-- [fs] fuse: fix "uninitialized variable" warning (Thomas Huth) [1238568]
-- [powerpc] powernv: Fix merge issue for opal-prd channel (Rafael Aquini) [1221110 1229224]
-- [powerpc] PowerNV kernel is not able to manage 16G pages (Laurent Vivier) [1212273]
-- [s390] kdump: fix REGSET_VX_LOW vector register ELF notes (Hendrik Brueckner) [1236566]
-- [s390] zcrypt: Fixed reset and interrupt handling of AP queues (Hendrik Brueckner) [1238230]
-- [kvm] ppc: book3s-hv: Implement dynamic micro-threading on POWER8 (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Make use of unused threads when running guests (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Use msgsnd for signalling threads on POWER8 (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Translate kvmhv_commence_exit to C (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Streamline guest entry and exit (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Use bitmap of active threads rather than count (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Use decrementer to wake napping threads (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Don't wake thread with no vcpu on guest IPI (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Get rid of vcore nap_count and n_woken (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Fix list traversal in error case (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Move vcore preemption point up into kvmppc_run_vcpu (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Simplify handling of VCPUs that need a VPA update (Laurent Vivier) [1213669]
-- [powerpc] powernv: Fixes for hypervisor doorbell handling (Laurent Vivier) [1213669]
-- [x86] kvm: nsvm: Check for NRIPS support before updating control field (Bandan Das) [1167228]
-- [security] keys: Increase root_maxkeys and root_maxbytes sizes (David Howells) [1014573]
-
-* Thu Jul 09 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-293.el7]
-- [fs] gfs2: add support for rename2 and RENAME_EXCHANGE (Benjamin Marzinski) [1163824]
-- [fs] ext4: allocate entire range in zero range (Lukas Czerner) [1187071] {CVE-2015-0275}
-- [fs] overlayfs: Warn on copy up if a process has a R/O fd open to the lower file (David Howells) [1226346]
-- [fs] gfs2: make sure S_NOSEC flag isn't overwritten (Benjamin Marzinski) [1203446]
-- [net] revert "[net] openvswitch: remove GFP_THISNODE" (Jiri Benc) [1238680]
-- [net] revert "[net] dev: set iflink to 0 for virtual interfaces" (Jiri Benc) [1238672]
-- [net] ipv4: __ip_local_out_sk() is static (Jiri Benc) [1234508]
-- [netdrv] ixgbe: Allow flow director to use entire queue space (Thadeu Lima de Souza Cascardo) [1238421]
-- [net] ethtool: Add helper routines to pass vf to rx_flow_spec (Thadeu Lima de Souza Cascardo) [1238421]
-- [net] inet: remove old fragmentation hash initializing (Phil Sutter) [1235733]
-- [net] ipv6: split inet6_hash_frag for netfilter and initialize secrets with net_get_random_once (Phil Sutter) [1235733]
-- [net] ipv4: initialize ip4_frags hash secret as late as possible (Phil Sutter) [1235733]
-- [net] switch net_secret key generation to net_get_random_once (Phil Sutter) [1235733]
-- [net] tcp: Do not call tcp_fastopen_reset_cipher from interrupt context (Phil Sutter) [1235733]
-- [net] tcp: switch tcp_fastopen key generation to net_get_random_once (Phil Sutter) [1235733]
-- [net] inet: convert inet_ehash_secret and ipv6_hash_secret to net_get_random_once (Phil Sutter) [1235733]
-- [net] ipv6: split inet6_ehashfn to hash functions per compilation unit (Phil Sutter) [1235733]
-- [net] ipv4: split inet_ehashfn to hash functions per compilation unit (Phil Sutter) [1235733]
-- [net] ipv4: harden fnhe_hashfun() (Phil Sutter) [1235733]
-- [net] netfilter: nfnetlink_log: remove unused code (Phil Sutter) [1235733]
-- [net] inet: split syncookie keys for ipv4 and ipv6 and initialize with net_get_random_once (Phil Sutter) [1235733]
-- [net] tcp: fix child sockets to use system default congestion control if not set (Phil Sutter) [1235252]
-- [net] netfilter: x_tables: align per cpu xt_counter (Phil Sutter) [1235240]
-- [net] netfilter: x_tables: remove XT_TABLE_INFO_SZ and a dereference (Phil Sutter) [1235240]
-- [net] esp6: Use high-order sequence number bits for IV generation (Herbert Xu) [1232741]
-- [net] esp4: Use high-order sequence number bits for IV generation (Herbert Xu) [1232741]
-- [net] xfrm: Always zero high-order sequence number bits (Herbert Xu) [1232741]
-- [net] drop the packet when fails to do software segmentation or header check (Jason Wang) [1232621]
-- [net] keep original skb which only needs header checking during software GSO (Jason Wang) [1232621]
-- [net] remove some unless free on failure in alloc_netdev_mqs() (Jason Wang) [1231604]
-- [netdrv] tuntap: Increase the number of queues in tun (Jason Wang) [1231604]
-- [net] allow large number of rx queues (Jason Wang) [1231604]
-- [net] allow large number of tx queues (Jason Wang) [1231604]
-- [kernel] hrtimer: Avoid locking in hrtimer_cancel() if timer not active (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Remove bogus hrtimer_active() check (Prarit Bhargava) [1217140]
-- [kernel] alarmtimer: Get rid of unused return value (Prarit Bhargava) [1217140]
-- [kernel] net: core: pktgen: Remove bogus hrtimer_active() check (Prarit Bhargava) [1217140]
-- [kernel] rtmutex: Remove bogus hrtimer_active() check (Prarit Bhargava) [1217140]
-- [kernel] futex: Remove bogus hrtimer_active() check (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Get rid of __hrtimer_start_range_ns() (Prarit Bhargava) [1217140]
-- [kernel] sched: core: Use hrtimer_start[_expires]() (Prarit Bhargava) [1217140]
-- [kernel] perf: core: Use hrtimer_start() (Prarit Bhargava) [1217140]
-- [kernel] x86: perf: uncore: Use hrtimer_start() (Prarit Bhargava) [1217140]
-- [kernel] x86: perf: Use hrtimer_start() (Prarit Bhargava) [1217140]
-- [kernel] tick: nohz: Rework next timer evaluation (Prarit Bhargava) [1217140]
-- [kernel] tick: sched: Restructure code (Prarit Bhargava) [1217140]
-- [kernel] tick: sched: Force tick interrupt and get rid of softirq magic (Prarit Bhargava) [1217140]
-- [kernel] tick: sched: Remove hrtimer_active() checks (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Get rid of hrtimer softirq (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Get rid of softirq time (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Fix incorrect tai offset calculation for non high-res timer systems (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Cleanup hrtimer accessors to the timekepeing state (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Prevent stale expiry time in hrtimer_interrupt() (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Remove hrtimer_enqueue_reprogram() (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Kick lowres dynticks targets on timer enqueue (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Store cpu-number in struct hrtimer_cpu_base (Prarit Bhargava) [1217140]
-
-* Mon Jul 06 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-292.el7]
-- [fs] gfs2: handle NULL rgd in set_rgrp_preferences (Abhijith Das) [1211663]
-- [fs] gfs2: Don't add all glocks to the lru (Robert S Peterson) [1232841]
-- [fs] gfs2: Don't brelse rgrp buffer_heads every allocation (Robert S Peterson) [1154782]
-- [char] ipmi: Fix merge issue for IPMI SMBus handler (SSFIF) (Rafael Aquini) [1229675]
-- [kernel] sched: Avoid throttle_cfs_rq() racing with period_timer stopping (Rik van Riel) [1236413]
-- [kernel] add support for gcc 5 (Prarit Bhargava) [1227950]
-- [netdrv] vmxnet3: Changes for vmxnet3 adapter version 2 (fwd) (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Fix memory leaks in rx path (fwd) (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Register shutdown handler for device (fwd) (Neil Horman) [1237012]
-- [netdrv] vmxnet3: spelling fixes (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Copy TCP header to mapped frame for IPv6 packets (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Change the hex constant to its decimal equivalent (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Fix ethtool -S to return correct rx queue stats (Neil Horman) [1237012]
-- [netdrv] bnx2x: fix DMA API usage (Michal Schmidt) [1234874 1236582]
-- [netdrv] bnx2x: fix lockdep splat (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Fix linearization for encapsulated packets (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Release nvram lock on error flow (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Fix statistics gathering on link change (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Fix self-test for 20g devices (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Fix VF MAC removal (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Don't notify about scratchpad parities (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Prevent false warning when accessing MACs (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Correct speed from baseT into KR (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Correct asymmetric flow-control (Michal Schmidt) [1236582]
-
-* Mon Jul 06 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-291.el7]
-- [x86] perf: ibs: Update IBS MSRs and feature definitions (Jiri Olsa) [1135033]
-- [x86] Mark Intel Skylake-Y processor as supported (Steve Best) [1176665]
-- [edac] sb_edac: support for Broadwell -EP and -EX (Seth Jennings) [1223598]
-- [edac] sb_edac: Fix support for systems with two home agents per socket (Seth Jennings) [1223598]
-- [edac] sb_edac: Fix a typo and a thinko in address handling for Haswell (Seth Jennings) [1223598]
-- [edac] Remove arbitrary limit on number of channels (Seth Jennings) [1223598]
-- [edac] sb_edac: Fix detection on SNB machines (Seth Jennings) [1223598]
-- [edac] sb_edac: Fix erroneous bytes->gigabytes conversion (Seth Jennings) [1223598]
-- [edac] sb_edac: Claim a different PCI device (Seth Jennings) [1223598]
-- [edac] Move Intel SNB device ids from sb_edac to pci_ids.h (Seth Jennings) [1223598]
-- [edac] sb_edac: Mark get_mci_for_node_id as static (Seth Jennings) [1223598]
-- [kernel] genirq: Fix memory leak when calling irq_free_hwirqs() (Steve Best) [1237186]
-- [kernel] module: Call module notifier on failure after complete_formation() (Bandan Das) [1236273]
-- [documentation] intel_pstate: Improve legacy mode internal governors description (Prarit Bhargava) [1236586]
-
-* Thu Jul 02 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-290.el7]
-- [hv] fcopy: set .owner reference for file operations (Vitaly Kuznetsov) [1236557]
-- [md] dm-btree-remove: fix bug in redistribute3 (Mike Snitzer) [1236092]
-- [x86] kvm: Enable PMU handling for AMD PERFCTRn and EVNTSELn MSRs (Wei Huang) [1076010]
-- [x86] kvm: Implement AMD vPMU code for KVM (Wei Huang) [1076010]
-- [x86] kvm: Define kvm_pmu_ops to support vPMU function dispatch (Wei Huang) [1076010]
-- [x86] kvm: vpmu: introduce kvm_pmu_msr_idx_to_pmc (Wei Huang) [1076010]
-- [x86] kvm: vpmu: reorder PMU functions (Wei Huang) [1076010]
-- [x86] kvm: vpmu: whitespace and stylistic adjustments in PMU code (Wei Huang) [1076010]
-- [x86] kvm: vpmu: use the new macros to go between PMC, PMU and VCPU (Wei Huang) [1076010]
-- [x86] kvm: vpmu: introduce pmu.h header (Wei Huang) [1076010]
-- [x86] kvm: vpmu: rename a few PMU functions (Wei Huang) [1076010]
-- [s390] crypto: ghash - Fix incorrect ghash icv buffer handling (Herbert Xu) [1207598]
-- [video] vt_buffer: drop console buffer copying optimisations (Dave Airlie) [1187449]
-- [netdrv] i40evf: fix panic during MTU change (Stefan Assmann) [1233585]
-- [netdrv] i40evf: don't configure unused RSS queues (Stefan Assmann) [1233649]
-- [security] lsm: get comm using lock to avoid race in string printing (Richard Guy Briggs) [1056327]
-- [kernel] audit: get comm using lock to avoid race in string printing (Richard Guy Briggs) [1056327]
-- [kernel] sched: cope with kabi constraints (Stanislaw Gruszka) [1064059]
-- [kernel] sched: Provide update_curr callbacks for stop/idle scheduling classes (Stanislaw Gruszka) [1064059]
-- [kernel] sched/cputime: Fix clock_nanosleep()/clock_gettime() inconsistency (Stanislaw Gruszka) [1064059]
-- [kernel] sched/cputime: Fix cpu_timer_sample_group() double accounting (Stanislaw Gruszka) [1064059]
-
-* Wed Jul 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-289.el7]
-- [crypto] krng: Remove krng (Herbert Xu) [1229738]
-- [crypto] drbg: Add stdrng alias and increase priority (Herbert Xu) [1229738]
-- [crypto] seqiv: Move IV seeding into init function (Herbert Xu) [1229738]
-- [crypto] eseqiv: Move IV seeding into init function (Herbert Xu) [1229738]
-- [crypto] chainiv: Move IV seeding into init function (Herbert Xu) [1229738]
-- [security] selinux: convert WARN_ONCE() to printk() in selinux_nlmsg_perm() (Richard Guy Briggs) [1066686]
-- [security] selinux: cleanup error reporting in selinux_nlmsg_perm() (Richard Guy Briggs) [1066686]
-- [security] audit: fix dangling keywords in integrity ima message output (Richard Guy Briggs) [1066686]
-- [security] audit: invalid op= values for rules (Richard Guy Briggs) [1066686]
-- [security] selinux: normalize audit log formatting (Richard Guy Briggs) [1066686]
-- [fs] Fix problem recognizing symlinks (Sachin Prabhu) [1232788]
-- [fs] Fix mfsymlinks file size check (Sachin Prabhu) [1232788]
-- [fs] Update version number displayed by modinfo for cifs.ko (Sachin Prabhu) [1232788]
-- [fs] cifs: remove dead code (Sachin Prabhu) [1232788]
-- [fs] Fix setting time before epoch (negative time values) (Sachin Prabhu) [1232788]
-- [fs] Clarify Kconfig help text for CIFS and SMB2/SMB3 (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix wrong filename length for SMB2 (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix wrong restart readdir for SMB1 (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix directory rename error (Sachin Prabhu) [1232788]
-- [fs] cifs: Allow directIO read/write during cache=strict (Sachin Prabhu) [1232788]
-- [fs] cifs: remove unneeded check of null checking in if condition (Sachin Prabhu) [1232788]
-- [fs] cifs: fix a possible use of uninit variable in SMB2_sess_setup (Sachin Prabhu) [1232788]
-- [fs] cifs: fix memory leak when password is supplied multiple times (Sachin Prabhu) [1232788]
-- [fs] cifs: fix a possible null pointer deref in decode_ascii_ssetup (Sachin Prabhu) [1232788]
-- [fs] Trivial whitespace fix (Sachin Prabhu) [1232788]
-- [fs] Enable fallocate -z support for SMB3 mounts (Sachin Prabhu) [1232788]
-- [fs] enable fallocate punch hole ("fallocate -p") for SMB3 (Sachin Prabhu) [1232788]
-- [fs] Incorrect error returned on setting file compressed on SMB2 (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix wrong directory attributes after rename (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix SMB2 readdir error handling (Sachin Prabhu) [1232788]
-- [fs] Workaround MacOS server problem with SMB2.1 write response (Sachin Prabhu) [1232788]
-- [fs] cifs: handle lease F_UNLCK requests properly (Sachin Prabhu) [1232788]
-- [fs] Cleanup sparse file support by creating worker function for it (Sachin Prabhu) [1232788]
-- [fs] Add sparse file support to SMB2/SMB3 mounts (Sachin Prabhu) [1232788]
-- [fs] Add missing definitions for CIFS File System Attributes (Sachin Prabhu) [1232788]
-- [fs] Add worker function to set allocation size (Sachin Prabhu) [1232788]
-- [fs] Fix incorrect hex vs. decimal in some debug print statements (Sachin Prabhu) [1232788]
-- [fs] Delete cifs specific helper functions for iter operations (Sachin Prabhu) [1232788]
-- [fs] Backport iov_iter_truncate() (Sachin Prabhu) [1232788]
-- [fs] new helper: copy_page_from_iter() (Sachin Prabhu) [1232788]
-- [fs] Introduce copy_page_to_iter (Sachin Prabhu) [1232788]
-- [fs] nfsv4: Ensure we skip delegations that are already being returned (Benjamin Coddington) [1206610]
-- [fs] nfsv4: Pin the superblock while we're returning the delegation (Benjamin Coddington) [1206610]
-- [fs] nfsv4: Ensure we honour NFS_DELEGATION_RETURNING in nfs_inode_set_delegation() (Benjamin Coddington) [1206610]
-- [fs] nfsv4: Ensure that we don't reap a delegation that is being returned (Benjamin Coddington) [1206610]
-- [fs] sunrpc: make debugfs file creation failure non-fatal (Benjamin Coddington) [1235634]
-- [fs] sunrpc: add a debugfs rpc_xprt directory with an info file in it (Benjamin Coddington) [1235634]
-- [fs] sunrpc: add debugfs file for displaying client rpc_task queue (Benjamin Coddington) [1235634]
-- [fs] sunrpc: eliminate RPC_TRACEPOINTS (Benjamin Coddington) [1235634]
-- [fs] nfsd: eliminate NFSD_DEBUG (Benjamin Coddington) [1235634]
-- [fs] sunrpc: eliminate RPC_DEBUG (Benjamin Coddington) [1235634]
-- [fs] lockd: eliminate LOCKD_DEBUG (Benjamin Coddington) [1235634]
-- [fs] nfs: take extra reference to fl->fl_file when running a setlk (Benjamin Coddington) [1236569]
-- [fs] xfs: don't truncate attribute extents if no extents exist (Brian Foster) [1236045]
-- [fs] fixing infinite OPEN loop in 4.0 stateid recovery (Benjamin Coddington) [1219184]
-- [fs] Recover from stateid-type error on SETATTR (Benjamin Coddington) [1214410]
-- [fs] pnfs: Fix a memory leak when attempted pnfs fails (Steve Dickson) [1234986]
-- [fs] nfs: Add a stub for GETDEVICELIST (Benjamin Coddington) [1234797]
-- [fs] nfs: fix high load average due to callback thread sleeping (Benjamin Coddington) [1234797]
-- [fs] sunrpc: fix braino in ->poll() (Benjamin Coddington) [1234797]
-- [fs] nfs: Fix a regression in the read() syscall (Benjamin Coddington) [1234797]
-- [fs] nfsv4: Don't call put_rpccred() under the rcu_read_lock() (Benjamin Coddington) [1234797]
-- [fs] nfs: Don't invalidate a submounted dentry in nfs_prime_dcache() (Benjamin Coddington) [1234797]
-- [fs] nfs: struct nfs_commit_info.lock must always point to inode->i_lock (Benjamin Coddington) [1234797]
-- [fs] nfsv4.1: Fix a kfree() of uninitialised pointers in decode_cb_sequence_args (Benjamin Coddington) [1234797]
-- [fs] nfsv4: Ensure we reference the inode for return-on-close in delegreturn (Benjamin Coddington) [1234797]
-- [fs] sunrpc: NULL utsname dereference on NFS umount during namespace cleanup (Benjamin Coddington) [1234797]
-- [fs] nfs: don't call blocking operations while !TASK_RUNNING (Benjamin Coddington) [1234797]
-- [fs] nfs: fix dio deadlock when O_DIRECT flag is flipped (Benjamin Coddington) [1234797]
-- [fs] nfsv4.1: Fix client id trunking on Linux (Benjamin Coddington) [1234797]
-- [fs] nfs41: fix nfs4_proc_layoutget error handling (Benjamin Coddington) [1234797]
-- [fs] nfs: fix subtle change in COMMIT behavior (Benjamin Coddington) [1234797]
-- [fs] sunrpc: Fix locking around callback channel reply receive (Benjamin Coddington) [1234797]
-
-* Wed Jul 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-288.el7]
-- [unisys] add visorbus (Erik Arfvidson) [1228343]
-- [acpi] pci: Account for ARI in _PRT lookups (Alex Williamson) [1222066]
-- [pci] Move pci_ari_enabled() to global header (Alex Williamson) [1222066]
-- [cpufreq] intel_pstate: Fix overflow in busy_scaled due to long delay (Prarit Bhargava) [1228346]
-- [perf] tools: Add hint for 'Too many events are opened.' error message (Jiri Olsa) [990937]
-- [tools] perf: Fix "Command" sort_entry's cmp and collapse function (Jiri Olsa) [1220686]
-- [net] sctp: fix ASCONF list handling (Marcelo Leitner) [1206474] {CVE-2015-3212}
-- [md] dm-cache-policy-smq: fix "default" version to be 1.4.0 (Mike Snitzer) [1236618]
-- [of] Eliminate of_allnodes list (Gustavo Duarte) [1210533]
-- [of] Fix sysfs_dirent cache integrity issue (Gustavo Duarte) [1225539]
-- [powerpc] include: Add opal-prd to installed uapi headers (Gustavo Duarte) [1234370]
-- [powerpc] powernv: fix construction of opal PRD messages (Gustavo Duarte) [1234370]
-- [infiniband] mad: Add final OPA MAD processing (Honggang Li) [1229265]
-- [infiniband] mad: Add partial Intel OPA MAD support (Honggang Li) [1229265]
-- [infiniband] mad: Add partial Intel OPA MAD support (Honggang Li) [1229265]
-- [infiniband] core: Add OPA MAD core capability flag (Honggang Li) [1229265]
-- [infiniband] mad: Add support for additional MAD info to/from drivers (Honggang Li) [1229265]
-- [infiniband] mad: Convert allocations from kmem_cache to kzalloc (Honggang Li) [1229265]
-- [infiniband] core: Add ability for drivers to report an alternate MAD size (Honggang Li) [1229265]
-- [infiniband] mad: Support alternate Base Versions when creating MADs (Honggang Li) [1229265]
-- [infiniband] mad: Create a generic helper for DR forwarding checks (Honggang Li) [1229265]
-- [infiniband] mad: Create a generic helper for DR SMP Recv processing (Honggang Li) [1229265]
-- [infiniband] mad: Create a generic helper for DR SMP Send processing (Honggang Li) [1229265]
-- [infiniband] mad: Split IB SMI handling from MAD Recv handler (Honggang Li) [1229265]
-- [infiniband] mad cleanup: Generalize processing of MAD data (Honggang Li) [1229265]
-- [infiniband] mad cleanup: Clean up function params -- find_mad_agent (Honggang Li) [1229265]
-- [infiniband] ocrdma: fix double free on pd (Honggang Li) [1229265]
-- [infiniband] usnic: clean up some error handling code (Honggang Li) [1229265]
-- [infiniband] mthca: use swap() in mthca_make_profile() (Honggang Li) [1229265]
-- [infiniband] core: Don't warn on no SA support in event handler (Honggang Li) [1229265]
-- [infiniband] core: Don't advertise SA in RoCE port capabilities (Honggang Li) [1229265]
-- [infiniband] core cleanup: Add const to args - agent_send_response (Honggang Li) [1229265]
-- [infiniband] core cleanup: Add const on args - device->process_mad (Honggang Li) [1229265]
-- [infiniband] core cleanup: Add const to RDMA helpers (Honggang Li) [1229265]
-- [infiniband] ocrdma: Fix memory leak in _ocrdma_alloc_pd() (Honggang Li) [1229265]
-- [net] rds: re-entry of rds_ib_xmit/rds_iw_xmit (Honggang Li) [1229265]
-- [infiniband] ipoib: Fix RCU annotations in ipoib_neigh_hash_init() (Honggang Li) [1229265]
-- [infiniband] nes: Enable the use of the tos field in the nes driver (Honggang Li) [1229265]
-- [infiniband] iw_cm: Export tos field to iwarp providers (Honggang Li) [1229265]
-- [infiniband] core: Change rdma_protocol_iboe to roce (Honggang Li) [1229265]
-- [infiniband] core: Convert core to use bitfield for caps (Honggang Li) [1229265]
-- [infiniband] core: Add per port immutable struct to ib_device (Honggang Li) [1229265]
-- [infiniband] user_mad: Fix buggy usage of port index (Honggang Li) [1229265]
-- [infiniband] user_mad: Use new start/end port functions (Honggang Li) [1229265]
-- [infiniband] mad: Add const qualifiers to query only functions (Honggang Li) [1229265]
-- [infiniband] mad: Clean up rcv_has_same_class (Honggang Li) [1229265]
-- [infiniband] mad: Change ib_response_mad signature arguments (Honggang Li) [1229265]
-- [infiniband] mad: Change validate_mad signature arguments (Honggang Li) [1229265]
-- [net] rds: Switch to generic logging helpers (Honggang Li) [1229265]
-- [infiniband] core, cma: Nice log-friendly string helpers (Honggang Li) [1229265]
-- [infiniband] mad: Clean up comments in smi.c (Honggang Li) [1229265]
-- [infiniband] mad: Rename is_data_mad to is_rmpp_data_mad (Honggang Li) [1229265]
-- [infiniband] core: Create common start/end port functions (Honggang Li) [1229265]
-- [infiniband] verbs: Improve docs for rdma-helpers (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_eth_ah() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_af_ib() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_read_multi_sge() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_mcast() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_sa() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_iw_cm() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_cm() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_smi() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_mad() (Honggang Li) [1229265]
-- [infiniband] verbs: Reform rest part in IB-core cma (Honggang Li) [1229265]
-- [infiniband] verbs: Reform cma_acquire_dev() (Honggang Li) [1229265]
-- [infiniband] verbs: Reform mcast related part in IB-core cma (Honggang Li) [1229265]
-- [infiniband] verbs: Reform route related part in IB-core cma (Honggang Li) [1229265]
-- [infiniband] verbs: Reform cm related part in IB-core cma/ucm (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core verbs (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-ulp xprtrdma (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-ulp ipoib (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core multicast (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core sa_query (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core cm (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core mad/agent/user_mad (Honggang Li) [1229265]
-- [infiniband] verbs: Implement raw management helpers (Honggang Li) [1229265]
-- [infiniband] verbs: Implement new callback query_protocol() (Honggang Li) [1229265]
-
-* Sun Jun 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-287.el7]
-- [powerpc] misc: cxl: Add tracepoints (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Enable CAPP recovery (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Add missing return statement after handling AFU errror (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fail AFU initialisation if an invalid configuration record is found (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Export optional AFU configuration record in sysfs (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix device_node reference counting (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Add ability to reset the card (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Use image state defaults for reloading FPGA (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Add image control to sysfs (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Update CXL ABI documentation (Gustavo Duarte) [1223004]
-- [powerpc] cxl: remove redundant increment of hwirq (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix issues when unmapping contexts (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Disable SPAP register when freeing SPA (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Disable AFU debug flag (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Early return from cxl_handle_fault for a shut down context (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix leaking interrupts if attach process fails (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Unmap MMIO regions when detaching a context (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Add timeout to process element commands (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Change contexts_lock to a mutex to fix sleep while atomic bug (Gustavo Duarte) [1223004]
-- [powerpc] mm: don't do tlbie for updatepp request with NO HPTE fault (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Name interrupts in /proc/interrupt (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Return error to PSL if IRQ demultiplexing fails & print clearer warning (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix PSL error due to duplicate segment table entries (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Refactor cxl_load_segment() and find_free_sste() (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Disable secondary hash in segment table (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix afu_read() not doing finish_wait() on signal or non-blocking (Gustavo Duarte) [1223004]
-- [kernel] idr: Add new function idr_is_empty() (Gustavo Duarte) [1182022]
-- [kernel] idr: remove unused prototype of idr_free() (Gustavo Duarte) [1182022]
-- [misc] cxl: Add documentation for userspace APIs (Gustavo Duarte) [1182022]
-- [misc] cxl: Add driver to Kbuild and Makefiles (Gustavo Duarte) [1182022]
-- [misc] cxl: Add userspace header file (Gustavo Duarte) [1182022]
-- [misc] cxl: Driver code for powernv PCIe based cards for userspace access (Gustavo Duarte) [1182022]
-- [misc] cxl: Add base builtin support (Gustavo Duarte) [1182022]
-- [powerpc] mm: Add hooks for cxl (Gustavo Duarte) [1182022]
-- [powerpc] opal: Add PHB to cxl mode call (Gustavo Duarte) [1182022]
-- [powerpc] mm: Add new hash_page_mm() (Gustavo Duarte) [1182022]
-- [powerpc] Add new PCIe functions for allocating cxl interrupts (Gustavo Duarte) [1182022]
-- [powerpc] cxl: Add new header for call backs and structs (Gustavo Duarte) [1182022]
-- [powerpc] powernv: Split out set MSI IRQ chip code (Gustavo Duarte) [1182022]
-- [powerpc] mm: Export mmu_kernel_ssize and mmu_linear_psize (Gustavo Duarte) [1182022]
-- [powerpc] msi: Improve IRQ bitmap allocator (Gustavo Duarte) [1182022]
-- [powerpc] cell: Make spu_flush_all_slbs() generic (Gustavo Duarte) [1182022]
-- [powerpc] cell: Move data segment faulting code out of cell platform (Gustavo Duarte) [1182022]
-- [powerpc] cell: Move spu_handle_mm_fault() out of cell platform (Gustavo Duarte) [1182022]
-- [scsi] qla2xxx: Update the driver version to 8.07.00.18.07.2-k (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Restore physical port WWPN only, when port down detected for FA-WWPN port (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix virtual port configuration, when switch port is disabled/enabled (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Prevent multiple firmware dump collection for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Disable Interrupt handshake for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add debugging info for MBX timeout (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add serdes read/write support for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add udev notification to save fw dump for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add message for sucessful FW dump collected for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add support to load firmware from file for ISP 26XX/27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix beacon blink for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Increase the wait time for firmware to be ready for P3P (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix crash due to wrong casting of reg for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix warnings reported by static checker (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix printks in ql_log message (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix printk in qla25xx_setup_mode (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: fix busy wait regression (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: fix race in handling rport deletion during recovery causes panic (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: remove redundant declaration in 'qla_gbl.h' (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Increase room in request queue for sending priority packets (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix sparse warning in qla_iocb.c file (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Move warning message to debug level (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fail adapter initialization on load ram failure (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Mark port lost when we receive an RSCN for it (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Restore WWPN in case of Loop Dead (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Honor FCP_RSP retry delay timer field (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add missing ISP27xx checks to optrom code (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Force use of mailbox interface for flash access commands for ISP27xx (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Free sysfs attributes for ISP27xx (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Disable laser for ISP2031 while unloading driver (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Enable diagnostic port using NVRAM parameters (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Declaration error cause stack corruption (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add fix in driver unload for pending activity (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Unload of qla2xxx driver crashes the machine (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Allow user to change ql2xfdmienable value (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix driver version string message (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add diagnostic port functionality (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add FA-WWN functionality (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add FDMI-2 functionality (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISPFx00 unexpected resets during adapter boot sequence (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Incorrect linked list semantic in qlafx00_get_fcport() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Incorrect debug level on mailbox command print 0x1111 (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISPFX00 avoid writing semaphore register in request_irqs() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix potential return count bug in qla2xxx_get_vpd_field() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx fwdump template error print simplification (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP25xx multiqueue shadow register crash fix (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add endianizer to max_payload_size modifier (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Enable fast flash access for ISP83xx (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add ISP27xx fwdump template entry T275 (insert buffer) (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx fwdump template fix insertbuf() routine (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx fwdump template remove high frequency debug logs (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx optimize fwdump entry table lookup (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx add tests for incomplete template (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Remove restriction on starting remote device discovery on port update (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Use pci_enable_msix_range() instead of pci_enable_msix() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Use dma_zalloc_coherent (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Restrict max_lun to 16-bit for older HBAs (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Use kmemdup instead of kmalloc + memcpy (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: fix incorrect debug printk (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx queue index shadow registers (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx firmware dump template spec updates (including T274) (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Update entry type 270 to match spec update (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Correction to ISP27xx template entry types 256 and 258 (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add pci device id 0x2271 (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Correct ISP83xx/ISP27xx mislogic in setting out_mb in qla25xx_init_req_que() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Allow ISP83XX and ISP27XX both to write req_q_out register (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Correct operations for ISP27xx template types 270 and 271 (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add support for ISP2071 (Chad Dupuis) [1187302]
-
-* Sun Jun 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-286.el7]
-- [usb] host: xhci: add mutex for non-thread-safe data (Don Zickus) [1232920]
-- [usb] make module xhci_hcd removable (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: Add support for a Motion Tracker Development Board (Don Zickus) [1232920]
-- [usb] usb-storage: Add NO_WP_DETECT quirk for Lacie 059f:0651 devices (Don Zickus) [1232920]
-- [usb] Added another USB product ID for ELAN touchscreen quirks (Don Zickus) [1232920]
-- [usb] xhci: gracefully handle xhci_irq dead device (Don Zickus) [1232920]
-- [usb] xhci: Solve full event ring by increasing TRBS_PER_SEGMENT to 256 (Don Zickus) [1232920]
-- [usb] xhci: fix isoc endpoint dequeue from advancing too far on transaction error (Don Zickus) [1232920]
-- [usb] visor: Match I330 phone more precisely (Don Zickus) [1232920]
-- [usb] pl2303: Remove support for Samsung I330 (Don Zickus) [1232920]
-- [usb] cdc-acm: prevent infinite loop when parsing CDC headers (Don Zickus) [1232920]
-- [usb] uas: Set max_sectors_240 quirk for ASM1053 devices (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_MAX_SECTORS_240 flag (Don Zickus) [1232920]
-- [usb] uas: Allow uas_use_uas_driver to return usb-storage flags (Don Zickus) [1232920]
-- [usb] drivers/usb/core: devio.c: Removed an uneeded space before tab (Don Zickus) [1232920]
-- [usb] core: hub: use new USB_RESUME_TIMEOUT (Don Zickus) [1232920]
-- [usb] host: uhci: use new USB_RESUME_TIMEOUT (Don Zickus) [1232920]
-- [usb] host: ehci: use new USB_RESUME_TIMEOUT (Don Zickus) [1232920]
-- [usb] host: xhci: use new USB_RESUME_TIMEOUT (Don Zickus) [1232920]
-- [usb] define a generic USB_RESUME_TIMEOUT macro (Don Zickus) [1232920]
-- [usb] tracing: Add TRACE_SYSTEM_VAR to xhci-hcd (Don Zickus) [1232920]
-- [usb] ehci-hub: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] fhci-hub: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] ohci-hub: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] uhci-hub: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] wusbcore: rh: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] usb/misc: fix chaoskey build, needs HW_RANDOM (Don Zickus) [1232920]
-- [usb] Fix warnings in chaoskey driver (Don Zickus) [1232920]
-- [usb] cdc-wdm: error returns need to be translated (Don Zickus) [1232920]
-- [usb] cdc-wdm: fix endianness bug in debug statements (Don Zickus) [1232920]
-- [usb] cdc-wdm: unify error handling in write (Don Zickus) [1232920]
-- [usb] cdc-acm: convert to not directly using urb->status (Don Zickus) [1232920]
-- [usb] cdc-acm: surpress misleading message (Don Zickus) [1232920]
-- [usb] cdc-acm: fix race between callback and unthrottle (Don Zickus) [1232920]
-- [usb] usb/misc/usb3503: Always read refclk frequency from DT (Don Zickus) [1232920]
-- [usb] cdc-wdm: return correct error codes (Don Zickus) [1232920]
-- [usb] Move usb_disabled() towards top of the file (Don Zickus) [1232920]
-- [usb] Use usb_disabled() consistently (Don Zickus) [1232920]
-- [usb] Add driver for Altus Metrum ChaosKey device (v2) (Don Zickus) [1232920]
-- [usb] ftdi_sio: Use jtag quirk for SNAP Connect E10 (Don Zickus) [1232920]
-- [usb] xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers (Don Zickus) [1232920]
-- [usb] xhci: handle Config Error Change (CEC) in xhci driver (Don Zickus) [1232920]
-- [usb] keyspan_pda: add new device id (Don Zickus) [1232920]
-- [usb] storage: Fix trivial typo in isd200_log_config() (Don Zickus) [1232920]
-- [usb] drivers: usb: storage: cypress_atacb.c: trivial checkpatch fixes (Don Zickus) [1232920]
-- [usb] drivers: usb: storage: alauda.c: properly place braces after function declarations (Don Zickus) [1232920]
-- [usb] appledisplay: Deletion of a check before backlight_device_unregister() (Don Zickus) [1232920]
-- [usb] ueagle-atm: Delete unnecessary checks before the function call "release_firmware" (Don Zickus) [1232920]
-- [usb] whci-hcd: Delete an unnecessary check before the function call "usb_put_hcd" (Don Zickus) [1232920]
-- [usb] xhci: plat: Add USB phy support (Don Zickus) [1232920]
-- [usb] xhci: unify cycle state toggling operation with 'XOR' (Don Zickus) [1232920]
-- [usb] legotower: use msecs_to_jiffies for time conversion (Don Zickus) [1232920]
-- [usb] image: use msecs_to_jiffies for time conversion (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X for Initio Corporation controllers / devices (Don Zickus) [1232920]
-- [usb] ftdi_sio: Added custom PID for Synapse Wireless product (Don Zickus) [1232920]
-- [usb] revert "xhci: Clear the host side toggle manually when endpoint is 'soft reset'" (Don Zickus) [1232920]
-- [usb] serial: fix infinite wait_until_sent timeout (Don Zickus) [1232920]
-- [usb] xhci: Workaround for PME stuck issues in Intel xhci (Don Zickus) [1232920]
-- [usb] xhci: fix reporting of 0-sized URBs in control endpoint (Don Zickus) [1232920]
-- [usb] ch341: set tty baud speed according to tty struct (Don Zickus) [1232920]
-- [usb] serial: cp210x: Adding Seletek device id's (Don Zickus) [1232920]
-- [usb] ch341: remove redundant close from open error path (Don Zickus) [1232920]
-- [usb] pl2303: disable break on shutdown (Don Zickus) [1232920]
-- [usb] serial: clean up bus probe error handling (Don Zickus) [1232920]
-- [usb] serial: fix port attribute-creation race (Don Zickus) [1232920]
-- [usb] serial: fix tty-device error handling at probe (Don Zickus) [1232920]
-- [usb] serial: fix potential use-after-free after failed probe (Don Zickus) [1232920]
-- [usb] console: add dummy __module_get (Don Zickus) [1232920]
-- [usb] revert "usb: serial: make bulk_out_size a lower limit" (Don Zickus) [1232920]
-- [usb] cdc-acm: Add support for Denso cradle CU-321 (Don Zickus) [1232920]
-- [usb] usb-storage: support for more than 8 LUNs (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS539 (Don Zickus) [1232920]
-- [usb] usbfs: don't leak kernel data in siginfo (Don Zickus) [1232920]
-- [usb] xhci: Clear the host side toggle manually when endpoint is 'soft reset' (Don Zickus) [1232920]
-- [usb] xhci: Allocate correct amount of scratchpad buffers (Don Zickus) [1232920]
-- [usb] Retry port status check on resume to work around RH bugs (Don Zickus) [1232920]
-- [usb] revert "usb: Reset USB-3 devices on USB-3 link bounce" (Don Zickus) [1232920]
-- [usb] uhci-hub: use HUB_CHAR_* (Don Zickus) [1232920]
-- [usb] kconfig: replace PPC_OF with PPC (Don Zickus) [1232920]
-- [usb] ehci-pci: disable for Intel MID platforms (update) (Don Zickus) [1232920]
-- [usb] ehci-pci: disable for Intel MID platforms (Don Zickus) [1232920]
-- [usb] ehci-pci: USB host controller support for Intel Quark X1000 (Don Zickus) [1232920]
-- [usb] host: pci_quirks: joing string literals (Don Zickus) [1232920]
-- [usb] add flag for HCDs that can't receive wakeup requests (isp1760-hcd) (Don Zickus) [1232920]
-- [usb] usbfs: allow URBs to be reaped after disconnection (Don Zickus) [1232920]
-- [usb] cdc-acm: kill unnecessary messages (Don Zickus) [1232920]
-- [usb] cdc-acm: add sanity checks (Don Zickus) [1232920]
-- [usb] Add OTG PET device to TPL (Don Zickus) [1232920]
-- [usb] usb-storage/scsi: blacklist FUA on JMicron 152d:2566 USB-SATA controller (Don Zickus) [1232920]
-- [usb] uas: Add no-report-opcodes quirk for Simpletech devices with id 4971:8017 (Don Zickus) [1232920]
-- [usb] storage: Revise/fix quirk for 04E6:000F SCM USB-SCSI converter (Don Zickus) [1232920]
-- [usb] core: hub: modify hub reset logic in hub driver (Don Zickus) [1232920]
-- [usb] wusbcore: rh: use HUB_CHAR_* (Don Zickus) [1232920]
-- [usb] ohci-hub: use HUB_CHAR_* (Don Zickus) [1232920]
-- [usb] ehci-hub: use HUB_CHAR_* (Don Zickus) [1232920]
-- [usb] xhci: Silence "xHCI xhci_drop_endpoint called with disabled ep ..." messages (Don Zickus) [1232920]
-- [usb] xhci: Print hcc params, version and quirks on init (Don Zickus) [1232920]
-- [usb] don't cancel queued resets when unbinding drivers (Don Zickus) [1232920]
-- [usb] Fix typo in `struct usb_host_interface' comment (Don Zickus) [1232920]
-- [usb] mos7840: remove unused code (Don Zickus) [1232920]
-- [usb] option: clean up blacklist handling (Don Zickus) [1232920]
-- [usb] serial: handle -ENODEV quietly in generic_submit_read_urb (Don Zickus) [1232920]
-- [usb] serial: silence all non-critical read errors (Don Zickus) [1232920]
-- [usb] console: fix potential use after free (Don Zickus) [1232920]
-- [usb] console: fix uninitialised ldisc semaphore (Don Zickus) [1232920]
-- [usb] ohci: add a quirk for ULi M5237 blocking on reset (Don Zickus) [1232920]
-- [usb] use *ph specifier in uss720 driver (Don Zickus) [1232920]
-- [usb] use *ph specifier in mikrotek driver (Don Zickus) [1232920]
-- [usb] core: buffer: smallest buffer should start at ARCH_DMA_MINALIGN (Don Zickus) [1232920]
-- [usb] xhci: Add completion code to the debug ouput of unhandled transfer events (Don Zickus) [1232920]
-- [usb] xhci: clean up work to remove unused parameters for functions in xhci-mem.c (Don Zickus) [1232920]
-- [usb] xhci-mem: Use setup_timer (Don Zickus) [1232920]
-- [usb] xhci: Use setup_timer (Don Zickus) [1232920]
-- [usb] xhci: remove unused parameter 'xhci' in function xhci_handshake() (Don Zickus) [1232920]
-- [usb] xhci: Clean up work to xhci_add_endpoint() (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X for 2 more Seagate disk enclosures (Don Zickus) [1232920]
-- [usb] uas: Do not blacklist ASM1153 disk enclosures (Don Zickus) [1232920]
-- [usb] uas: disable UAS on Apricorn SATA dongles (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS566 with usb-id 0bc2:a013 (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X for Seagate devices with usb-id 0bc2:a013 (Don Zickus) [1232920]
-- [usb] xhci: Add broken-streams quirk for Fresco Logic FL1000G xhci controllers (Don Zickus) [1232920]
-- [usb] ehci: adjust error return code (Don Zickus) [1232920]
-- [usb] ehci: fix initialization bug in iso_stream_schedule() (Don Zickus) [1232920]
-- [usb] xhci: Check if slot is already in default state before moving it there (Don Zickus) [1232920]
-- [usb] qcserial/option: make AT URCs work for Sierra Wireless MC73xx (Don Zickus) [1232920]
-- [usb] keyspan: fix null-deref at probe (Don Zickus) [1232920]
-- [usb] mos7720: delete some unneeded code (Don Zickus) [1232920]
-- [usb] wusb: replace memset by memzero_explicit (Don Zickus) [1232920]
-- [usb] xhci: fix comment for PORT_DEV_REMOVE (Don Zickus) [1232920]
-- [usb] xhci: don't use the same variable for stopped and halted rings current TD (Don Zickus) [1232920]
-- [usb] xhci: clear extra bits from slot context when setting max exit latency (Don Zickus) [1232920]
-- [usb] xhci: cleanup finish_td function (Don Zickus) [1232920]
-- [usb] adutux: NULL dereferences on disconnect (Don Zickus) [1232920]
-- [usb] pci-quirks: Deletion of unnecessary checks before the function call "pci_dev_put" (Don Zickus) [1232920]
-- [usb] usb-sis: Deletion of an unnecessary check before the function call "usb_put_dev" (Don Zickus) [1232920]
-- [usb] storage: Fix bus scan and multi-LUN support for SCM eUSCSI devices (Don Zickus) [1232920]
-- [usb] storage: Enable multi-target mode as vendor driver does for SCM eUSCSI bridge (Don Zickus) [1232920]
-- [usb] cdc-acm: check for valid interfaces (Don Zickus) [1232920]
-- [usb] cdc-acm: memory leak in error case (Don Zickus) [1232920]
-- [usb] usb-quirks: Add reset-resume quirk for MS Wireless Laser Mouse 6000 (Don Zickus) [1232920]
-- [usb] xhci: rework root port wake bits if controller isn't allowed to wakeup (Don Zickus) [1232920]
-- [usb] xhci: Reset a halted endpoint immediately when we encounter a stall (Don Zickus) [1232920]
-- [usb] revert "xhci: clear root port wake on bits if controller isn't wake-up capable" (Don Zickus) [1232920]
-- [usb] xhci: don't start a halted endpoint before its new dequeue is set (Don Zickus) [1232920]
-- [usb] ssu100: fix overrun-error reporting (Don Zickus) [1232920]
-- [usb] keyspan: fix overrun-error reporting (Don Zickus) [1232920]
-- [usb] keyspan: fix tty line-status reporting (Don Zickus) [1232920]
-- [usb] qcserial: Add support for HP lt4112 LTE/HSPA+ Gobi 4G Modem (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: add PIDs for Matrix Orbital products (Don Zickus) [1232920]
-- [usb] phonet: Replace calls to __skb_alloc_page with __dev_alloc_page (Don Zickus) [1232920]
-- [usb] serial: cp210x: add IDs for CEL MeshConnect USB Stick (Don Zickus) [1232920]
-- [usb] Remove __init from early_dbgp_init() prototype (Don Zickus) [1232920]
-- [usb] Create separate header for ehci-dbgp (Don Zickus) [1232920]
-- [usb] host: xhci-plat: remove duplicate check on resource (Don Zickus) [1232920]
-- [usb] host: uhci-platform: fix NULL pointer dereference on resource (Don Zickus) [1232920]
-- [usb] storage: Reject bogus max LUN values (Don Zickus) [1232920]
-- [usb] cdc-acm: add quirk for control-line state requests (Don Zickus) [1232920]
-- [usb] storage: Fix timeout in usb_stor_euscsi_init() and usb_stor_huawei_e220_init() (Don Zickus) [1232920]
-- [usb] cdc-acm: only raise DTR on transitions from B0 (Don Zickus) [1232920]
-- [usb] revert "storage: Replace magic number with define in usb_stor_euscsi_init()" (Don Zickus) [1232920]
-- [usb] serial: add Google simple serial SubClass support (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X quirk for 2 more Seagate models (Don Zickus) [1232920]
-- [usb] xhci: no switching back on non-ULT Haswell (Don Zickus) [1232920]
-- [usb] misc: usb3503: delete unnecessary 'out of memory' messages (Don Zickus) [1232920]
-- [usb] class: usbtmc: delete unnecessary 'out of memory' messages (Don Zickus) [1232920]
-- [usb] ehci/ohci-platform: use SIMPLE_DEV_PM_OPS to support hibernation (Don Zickus) [1232920]
-- [usb] hub: remove unused variable (Don Zickus) [1232920]
-- [usb] storage: Convert usb_stor_dbg to return void (Don Zickus) [1232920]
-- [usb] ohci: Eliminate platform-specific test in ohci.h (Don Zickus) [1232920]
-- [usb] ehci: add ehci_port_power interface (Don Zickus) [1232920]
-- [usb] uas: Make uas work with blk-mq (Don Zickus) [1232920]
-- [usb] yurex: fixed sparse warning of incorrect type (Don Zickus) [1232920]
-- [usb] Do not re-read descriptors for wired devices in usb_authorize_device() (Don Zickus) [1232920]
-- [usb] cdc-acm: Drop the warning for unusual capabilities (Don Zickus) [1232920]
-- [usb] quirks: enable device-qualifier quirk for yet another Elan touchscreen (Don Zickus) [1232920]
-- [usb] quirks: enable device-qualifier quirk for another Elan touchscreen (Don Zickus) [1232920]
-- [usb] storage: fix build warnings !CONFIG_PM (Don Zickus) [1232920]
-- [usb] uas: Add NO_ATA_1X for VIA VL711 devices (Don Zickus) [1232920]
-- [usb] xhci: Disable streams on Asmedia 1042 xhci controllers (Don Zickus) [1232920]
-- [usb] hwa: fix a warning message (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X quirk for 1 more Seagate model (Don Zickus) [1232920]
-- [usb] usb-storage: handle a skipped data phase (Don Zickus) [1232920]
-- [usb] Do not allow usb_alloc_streams on unconfigured devices (Don Zickus) [1232920]
-- [usb] cdc-acm: ensure that termios get set when the port is activated (Don Zickus) [1232920]
-- [usb] cdc-acm: add device id for GW Instek AFG-2225 (Don Zickus) [1232920]
-- [usb] mos7840: replace unnecessary atomic allocations (Don Zickus) [1232920]
-- [usb] mos7720: replace unnecessary atomic allocations (Don Zickus) [1232920]
-- [usb] kobil_sct: replace unnecessary atomic allocation (Don Zickus) [1232920]
-- [usb] opticon: fix non-atomic allocation in write path (Don Zickus) [1232920]
-- [usb] kobil_sct: fix non-atomic allocation in write path (Don Zickus) [1232920]
-- [usb] Fix typo in usb-serial-simple.c (Don Zickus) [1232920]
-- [usb] usbnet: add a callback for set_rx_mode (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: add "bricked" FTDI device PID (Don Zickus) [1232920]
-- [usb] serial: keyspan_pda: fix Entrega company name spelling (Don Zickus) [1232920]
-- [usb] kobil_sct: Remove unused transfer buffer allocs (Don Zickus) [1232920]
-- [usb] option: add Haier CE81B CDMA modem (Don Zickus) [1232920]
-- [usb] option: add support for Telit LE910 (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: add Awinda Station and Dongle products (Don Zickus) [1232920]
-- [usb] serial: cp210x: add Silicon Labs 358x VID and PID (Don Zickus) [1232920]
-- [usb] misc: drop owner assignment from platform_drivers (Don Zickus) [1232920]
-- [usb] uas: Reduce number of function arguments for uas_alloc_foo functions (Don Zickus) [1232920]
-- [usb] xhci: Allow xHCI drivers to be built as separate modules (Don Zickus) [1232920]
-- [usb] xhci: Export symbols used by host-controller drivers (Don Zickus) [1232920]
-- [usb] xhci: Check for XHCI_COMP_MODE_QUIRK when disabling D3cold (Don Zickus) [1232920]
-- [usb] xhci: Introduce xhci_init_driver() (Don Zickus) [1232920]
-- [usb] uas: disable use of blk-mq I/O path (Don Zickus) [1232920]
-- [usb] core: return -ENOTSUPP for all targeted hosts (Don Zickus) [1232920]
-- [usb] Add LED triggers for USB activity (Don Zickus) [1232920]
-- [usb] Rename usb-common.c (Don Zickus) [1232920]
-- [usb] hub: allow to process more usb hub events in parallel (Don Zickus) [1232920]
-- [usb] hub: rename khubd to hub_wq in documentation and comments (Don Zickus) [1232920]
-- [usb] hub: rename usb_kick_khubd() to usb_kick_hub_wq() (Don Zickus) [1232920]
-- [usb] hub: convert khubd into workqueue (Don Zickus) [1232920]
-- [usb] hub: rename hub_events() to hub_event() and handle only one event there (Don Zickus) [1232920]
-- [usb] hub: keep hub->dev reference all the time when struct usb_hub lives (Don Zickus) [1232920]
-- [usb] storage: Add quirk for another SCM-based USB-SCSI converter (Don Zickus) [1232920]
-- [usb] storage: Add quirks for Castlewood and Double-H USB-SCSI converters (Don Zickus) [1232920]
-- [usb] storage: Replace magic number with define in usb_stor_euscsi_init() (Don Zickus) [1232920]
-- [usb] quirks.h: use BIT() (Don Zickus) [1232920]
-- [usb] Add device quirk for ASUS T100 Base Station keyboard (Don Zickus) [1232920]
-- [usb] usb3503: clarify what the registers 'PDS' and 'CFG1' really do (Don Zickus) [1232920]
-- [usb] usb3503: correct error message in probe ('connect' to 'interrupt') (Don Zickus) [1232920]
-- [usb] Fixed a few typos (Don Zickus) [1232920]
-- [usb] storage: use *ph specifier to dump small buffers (Don Zickus) [1232920]
-- [usb] wusbcore: fix device disconnect on rekey timeout (Don Zickus) [1232920]
-- [usb] wusbcore: skip done segs before completing aborted transfer (Don Zickus) [1232920]
-- [usb] wusbcore: USB_WUSB_CBAF depends on USB (Don Zickus) [1232920]
-- [usb] wusbcore: remove USB_WUSB build dependency on PCI (Don Zickus) [1232920]
-- [usb] hwa: add USB build dependency for USB_HWA_HCD (Don Zickus) [1232920]
-- [usb] wusb: delete double assignment (Don Zickus) [1232920]
-- [usb] misc: yurex: remove useless casting of private_data (Don Zickus) [1232920]
-- [usb] xhci: Log extra info on "ERROR Transfer event TRB DMA ptr not part of current TD" (Don Zickus) [1232920]
-- [usb] xhci: Remove "FIXME - check all the stream rings for pending cancellations" (Don Zickus) [1232920]
-- [usb] xhci: Always ring the doorbell for active eps when a Set TR deq ptr cmd completes (Don Zickus) [1232920]
-- [usb] xhci: Fold queue_set_tr_deq into xhci_queue_new_dequeue_state (Don Zickus) [1232920]
-- [usb] xhci: xhci_ring_device: Ring stream ring bells for endpoints with streams (Don Zickus) [1232920]
-- [usb] xhci_suspend is not stopping the root hub timer for the shared HCD (Don Zickus) [1232920]
-- [usb] xhci: Move allocating of command for new_dequeue_state to queue_set_tr_deq() (Don Zickus) [1232920]
-- [usb] uas: Add response iu handling (Don Zickus) [1232920]
-- [usb] uas: Log error codes when logging errors (Don Zickus) [1232920]
-- [usb] uas: Cleanup uas_log_cmd_state usage (Don Zickus) [1232920]
-- [usb] uas: Remove protype hardware usb interface info (Don Zickus) [1232920]
-- [usb] uas: Remove support for old sense ui as used in pre-production hardware (Don Zickus) [1232920]
-- [usb] uas: Drop COMMAND_COMPLETED flag (Don Zickus) [1232920]
-- [usb] uas: Use scsi_print_command (Don Zickus) [1232920]
-- [usb] uas: Do not log urb status error on cancellation (Don Zickus) [1232920]
-- [usb] uas: Use streams on upcoming 10Gbps / 3.1 USB (Don Zickus) [1232920]
-- [usb] uas: pre_reset and suspend: Fix a few races (Don Zickus) [1232920]
-- [usb] uas: Fix memleak of non-submitted urbs (Don Zickus) [1232920]
-- [usb] uas: Drop all references to a scsi_cmnd once it has been aborted (Don Zickus) [1232920]
-- [usb] uas: Remove cmnd reference from the cmd urb (Don Zickus) [1232920]
-- [usb] uas: Drop inflight list (Don Zickus) [1232920]
-- [usb] uas: zap_pending: data urbs should have completed at this time (Don Zickus) [1232920]
-- [usb] uas: Simplify reset / disconnect handling (Don Zickus) [1232920]
-- [usb] uas: Free data urbs on completion (Don Zickus) [1232920]
-- [usb] uas: Simplify unlink of data urbs on error (Don Zickus) [1232920]
-- [usb] uas: Check against unexpected completions (Don Zickus) [1232920]
-- [usb] uas: Do not use scsi_host_find_tag (Don Zickus) [1232920]
-- [usb] uas: Add uas_get_tag() helper function (Don Zickus) [1232920]
-- [usb] uas: Fix resetting flag handling (Don Zickus) [1232920]
-- [usb] uas: Remove task-management / abort error handling code (Don Zickus) [1232920]
-- [usb] uas: Add another ASM1051 usb-id to the uas blacklist (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X quirk for Seagate (0bc2:ab20) drives (Don Zickus) [1232920]
-- [usb] uas: Add no-report-opcodes quirk (Don Zickus) [1232920]
-- [usb] uas: Add a quirk for rejecting ATA_12 and ATA_16 commands (Don Zickus) [1232920]
-- [usb] document the 'u' flag for usb-storage quirks parameter (Don Zickus) [1232920]
-- [usb] uas: replace WARN_ON_ONCE() with lockdep_assert_held() (Don Zickus) [1232920]
-- [usb] host: ehci-st: Add EHCI support for ST STB devices (Don Zickus) [1232920]
-- [usb] core: kconfig: TPL should apply for both OTG and EH (Don Zickus) [1232920]
-- [usb] core: TPL should apply for both OTG and EH (Don Zickus) [1232920]
-- [usb] hcd: add TPL support flag (Don Zickus) [1232920]
-- [usb] serial: Remove unused tty->hw_stopped (Don Zickus) [1232920]
-- [usb] quirks: enable device-qualifier quirk for Elan Touchscreen (Don Zickus) [1232920]
-- [usb] core: add device-qualifier quirk (Don Zickus) [1232920]
-- [usb] cp210x: add support for Seluxit USB dongle (Don Zickus) [1232920]
-- [usb] serial: cp210x: added Ketra N1 wireless interface support (Don Zickus) [1232920]
-- [usb] storage: Add quirks for Entrega/Xircom USB to SCSI converters (Don Zickus) [1232920]
-- [usb] storage: Add quirk for Ariston Technologies iConnect USB to SCSI adapter (Don Zickus) [1232920]
-- [usb] storage: Add quirk for Adaptec USBConnect 2000 USB-to-SCSI Adapter (Don Zickus) [1232920]
-- [scsi] don't store LUN bits in CDB[1] for USB mass-storage devices (Don Zickus) [1232920]
-- [usb] xhci: fix oops when xhci resumes from hibernate with hw lpm capable devices (Don Zickus) [1232920]
-- [usb] xhci: Fix OOPS in xhci error handling code (Don Zickus) [1232920]
-- [usb] xhci: Fix null pointer dereference if xhci initialization fails (Don Zickus) [1232920]
-- [usb] storage: Add single-LUN quirk for Jaz USB Adapter (Don Zickus) [1232920]
-- [usb] uas: Add missing le16_to_cpu calls to asm1051 / asm1053 usb-id check (Don Zickus) [1232920]
-- [usb] uas: Disable uas on ASM1051 devices (Don Zickus) [1232920]
-- [usb] bcma: store more alternative addresses (Don Zickus) [1232920]
-- [usb] ftdi_sio: Add support for GE Healthcare Nemo Tracker device (Don Zickus) [1232920]
-- [usb] host: xhci: fix compliance mode workaround (Don Zickus) [1232920]
-- [usb] serial: xsens_mt: always bind to interface number 1 (Don Zickus) [1232920]
-- [usb] serial: xsens_mt: add author and description (Don Zickus) [1232920]
-- [usb] serial: add Medtronic CareLink USB driver (Don Zickus) [1232920]
-- [usb] serial: add Novatel Wireless GPS driver (Don Zickus) [1232920]
-- [usb] serial: add support for multi-port simple drivers (Don Zickus) [1232920]
-- [usb] pl2303: use divisors for unsupported baud rates (Don Zickus) [1232920]
-- [usb] sierra: add 1199:68AA device ID (Don Zickus) [1232920]
-- [usb] sierra: avoid CDC class functions on "68A3" devices (Don Zickus) [1232920]
-- [usb] ftdi_sio: add support for NOVITUS Bono E thermal printer (Don Zickus) [1232920]
-- [usb] usbtest: Add interrupt EP testcases (Don Zickus) [1232920]
-- [usb] fix build error with CONFIG_PM_RUNTIME disabled (Don Zickus) [1232920]
-- [usb] xhci: Disable streams on Via XHCI with device-id 0x3432 (Don Zickus) [1232920]
-- [usb] serial: fix potential heap buffer overflow (Don Zickus) [1232920]
-- [usb] serial: fix potential stack buffer overflow (Don Zickus) [1232920]
-- [usb] hub: Prevent hub autosuspend if usbcore.autosuspend is -1 (Don Zickus) [1232920]
-- [usb] sisusb: add device id for Magic Control USB video (Don Zickus) [1232920]
-- [usb] ehci: using wIndex + 1 for hub port (Don Zickus) [1232920]
-- [usb] storage: add quirk for Newer Technology uSCSI SCSI-USB converter (Don Zickus) [1232920]
-- [usb] wusbcore: fix below build warning (Don Zickus) [1232920]
-- [usb] core: fix below build warning (Don Zickus) [1232920]
-- [usb] xhci: rework cycle bit checking for new dequeue pointers (Don Zickus) [1232920]
-- [usb] xhci: amd chipset also needs short TX quirk (Don Zickus) [1232920]
-- [usb] xhci: Treat not finding the event_seg on COMP_STOP the same as COMP_STOP_INVAL (Don Zickus) [1232920]
-- [usb] usbcore: Fix wrong device in an error message in hub_port_connect() (Don Zickus) [1232920]
-- [usb] ftdi_sio: Added PID for new ekey device (Don Zickus) [1232920]
-- [usb] serial: pl2303: add device id for ztek device (Don Zickus) [1232920]
-- [usb] ftdi_sio: add Basic Micro ATOM Nano USB2Serial PID (Don Zickus) [1232920]
-- [usb] revert "usb: option, zte_ev: move most ZTE CDMA devices to zte_ev" (Don Zickus) [1232920]
-- [usb] option: add VIA Telecom CDS7 chipset device id (Don Zickus) [1232920]
-- [usb] option: reduce interrupt-urb logging verbosity (Don Zickus) [1232920]
-- [usb] cdc_subset: deal with a device that needs reset for timeout (Don Zickus) [1232920]
-- [usb] devio: fix issue with log flooding (Don Zickus) [1232920]
-- [usb] uas: Log a warning when we cannot use uas because the hcd lacks streams (Don Zickus) [1232920]
-- [usb] uas: Only complain about missing sg if all other checks succeed (Don Zickus) [1232920]
-- [usb] xhci: Add missing checks for xhci_alloc_command failure (Don Zickus) [1232920]
-- [usb] xhci: Rename Asrock P67 pci product-id to EJ168 (Don Zickus) [1232920]
-- [usb] xhci: Blacklist using streams on the Etron EJ168 controller (Don Zickus) [1232920]
-- [usb] uas: Limit qdepth to 32 when connected over usb-2 (Don Zickus) [1232920]
-- [usb] usb-core bInterval quirk (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: Add support for new Xsens devices (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: Annotate the current Xsens PID assignments (Don Zickus) [1232920]
-- [usb] core: allow zero packet flag for interrupt urbs (Don Zickus) [1232920]
-- [usb] lvstest: Fix sparse warnings generated by kbuild test bot (Don Zickus) [1232920]
-- [usb] ohci: add check for stopped frame counter (Don Zickus) [1232920]
-- [usb] ohci: add I/O watchdog for orphan TDs (Don Zickus) [1232920]
-- [usb] ohci: make URB completions single-threaded (Don Zickus) [1232920]
-- [usb] ohci: redesign the TD done list (Don Zickus) [1232920]
-- [usb] ohci: no shortcut for unlinking URBS from a dead controller (Don Zickus) [1232920]
-- [usb] ohci: revert the ZF Micro orphan-TD quirk (Don Zickus) [1232920]
-- [usb] Fix persist resume of some SS USB devices (Don Zickus) [1232920]
-- [usb] usb-core: Remove Fix mes in file hcd.c (Don Zickus) [1232920]
-- [usb] usbcore: don't log on consecutive debounce failures of the same port (Don Zickus) [1232920]
-- [usb] serial: cp210x: Removing unncessary `usb_reset_device` on startup (Don Zickus) [1232920]
-- [usb] Add LVS Test device driver (Don Zickus) [1232920]
-- [usb] Add EXPORT_SYMBOL for usb_alloc_dev (Don Zickus) [1232920]
-- [usb] ohci: don't lose track of EDs when a controller dies (Don Zickus) [1232920]
-- [usb] ohci: fix bugs in debug routines (Don Zickus) [1232920]
-- [usb] ohci: add SG support (Don Zickus) [1232920]
-- [usb] shutdown all URBs after controller death (Don Zickus) [1232920]
-- [usb] add reset resume quirk for usb3503 (Don Zickus) [1232920]
-- [usb] usb3503: add PM functions (Don Zickus) [1232920]
-- [usb] uhci-platform: use devm_ioremap resource (Don Zickus) [1232920]
-- [usb] ohci: don't allocate HCCA atomically (Don Zickus) [1232920]
-- [usb] uhci: don't allocate frame list atomically (Don Zickus) [1232920]
-- [usb] ehci: don't allocate hardware periodic table atomically by default (Don Zickus) [1232920]
-- [usb] drivers/usb/host/fhci-dbg.c: remove unnecessary null test before debugfs_remove (Don Zickus) [1232920]
-- [usb] class: usbtmc.c: Cleaning up uninitialized variables (Don Zickus) [1232920]
-- [usb] host: xhci-plat: use devm_functions (Don Zickus) [1232920]
-- [usb] xhci: make error messages grepable (Don Zickus) [1232920]
-- [usb] force warm reset to break link re-connect livelock (Don Zickus) [1232920]
-- [usb] allow lpm (en/dis)able only if device is atleast in default state (Don Zickus) [1232920]
-- [usb] xhci: platform: Set xhci lpm support quirk based on platform data (Don Zickus) [1232920]
-- [usb] documentation: dt-bindings: update xhci-platform DT binding (Don Zickus) [1232920]
-- [usb] xhci: platform: Add (en/dis)able_usb3_lpm_timeout (Don Zickus) [1232920]
-- [usb] xhci: A default implementation for Ux timeout calculation and tier policy check (Don Zickus) [1232920]
-- [usb] kl5kusb105: Remove klsi_105_tiocmset function (Don Zickus) [1232920]
-- [usb] mos7840: remove unnecessary null test before kfree (Don Zickus) [1232920]
-- [usb] ftdi_sio: remove redundant mtxorb quirk (Don Zickus) [1232920]
-- [usb] ftdi_sio: clean up ftdi_set_max_packet_size() (Don Zickus) [1232920]
-- [usb] ftdi_sio: fix max-packet-size warning (Don Zickus) [1232920]
-- [usb] ftdi_sio: make port probe less verbose (Don Zickus) [1232920]
-- [usb] xhci: Correct last context entry calculation for Configure Endpoint (Don Zickus) [1232920]
-
-* Fri Jun 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-285.el7]
-- [x86] perf: Fix bug in unused code (Don Dugger) [1036948]
-- [x86] Someone fat fingered a merge conflict and lost the Makefile hunk (Don Dugger) [1036948]
-- [x86] perf: Enable conflicting event scheduling for CQM (Don Dugger) [1036948]
-- [x86] perf: Perform rotation on Intel CQM RMIDs (Don Dugger) [1036948]
-- [x86] perf: Implement LRU monitoring ID allocation for CQM (Don Dugger) [1036948]
-- [x86] Add support for Intel Cache QoS Monitoring (CQM) detection (Don Dugger) [1036948]
-- [x86] Mark Intel Broadwell-H processor as supported (Steve Best) [1131290]
-- [kernel] sched/stop_machine: Fix deadlock between multiple stop_two_cpus() (Jiri Olsa) [1223796]
-- [x86] edac: Disable EDAC debug logging by default (Prarit Bhargava) [1232712]
-- [kernel] sched/clock: Fixup early initialization (Prarit Bhargava) [1234322]
-- [kernel] sched/clock: Fix up clear_sched_clock_stable() (Prarit Bhargava) [1234322]
-- [mm] memory-hotplug: set zone->wait_table to null after freeing it (Yasuaki Ishimatsu) [1222754]
-- [mm] memory-hotplug: postpone the reset of obsolete pgdat (Yasuaki Ishimatsu) [1222754]
-- [mm] memory-failure: me_huge_page() does nothing for thp (Tomoaki Nishimura) [1226196]
-- [mm] soft-offline: don't free target page in successful page migration (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: introduce get_hwpoison_page() for consistent refcount handling (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: split thp earlier in memory error handling (Tomoaki Nishimura) [1226196]
-- [mm] soft-offline: fix num_poisoned_pages counting on concurrent events (Tomoaki Nishimura) [1226196]
-- [mm] hugetlb: cleanup using paeg_huge_active() (Tomoaki Nishimura) [1226196]
-- [mm] hugetlb: introduce page_huge_active (Tomoaki Nishimura) [1226196]
-- [mm] soft-offline: use migrate_pages() instead of migrate_huge_page() (Tomoaki Nishimura) [1226196]
-- [mm] migrate: make core migration code aware of hugepage (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: drop lru_add_drain_all() in __soft_offline_page() (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison-inject: check PageLRU of hpage (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison-inject: fix refcounting in no-injection case (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: fix the lack of one reference count against poisoned page (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: call shake_page() when error hits thp tail page (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: fix race with changing page during offlining (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: Fix wrong error recovery status (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: call action_result() in failure path of hwpoison_user_mappings() (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: fix hugetlbfs/thp precheck in hwpoison_user_mappings() (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: fix the handling path of the victimized page frame that belong to non-LRU (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: fix memory leak by race between poison and unpoison (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: lock_page/unlock_page does not match for handling a free hugepage (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: move refcount only in !MF_COUNT_INCREASED (Tomoaki Nishimura) [1226196]
-- [infiniband] iser: Rewrite bounce buffer code path (Amir Vadai) [1164539]
-- [infiniband] iser: Bump version to 1.6 (Amir Vadai) [1164539]
-- [infiniband] iser: Remove code duplication for a single DMA entry (Amir Vadai) [1164539]
-- [infiniband] iser: Pass struct iser_mem_reg to iser_fast_reg_mr and iser_reg_sig_mr (Amir Vadai) [1164539]
-- [infiniband] iser: Modify struct iser_mem_reg members (Amir Vadai) [1164539]
-- [infiniband] iser: Make fastreg pool cache friendly (Amir Vadai) [1164539]
-- [infiniband] iser: Move PI context alloc/free to routines (Amir Vadai) [1164539]
-- [infiniband] iser: Move fastreg descriptor pool get/put to helper functions (Amir Vadai) [1164539]
-- [infiniband] iser: Merge build page-vec into register page-vec (Amir Vadai) [1164539]
-- [infiniband] iser: Get rid of struct iser_rdma_regd (Amir Vadai) [1164539]
-- [infiniband] iser: Remove redundant assignments in iser_reg_page_vec (Amir Vadai) [1164539]
-- [infiniband] iser: Move memory reg/dereg routines to iser_memory.c (Amir Vadai) [1164539]
-- [infiniband] iser: Don't pass ib_device to fall_to_bounce_buff routine (Amir Vadai) [1164539]
-- [infiniband] iser: Remove a redundant struct iser_data_buf (Amir Vadai) [1164539]
-- [infiniband] iser: Remove redundant cmd_data_len calculation (Amir Vadai) [1164539]
-- [infiniband] iser: Fix wrong calculation of protection buffer length (Amir Vadai) [1164539]
-- [infiniband] iser: Handle fastreg/local_inv completion errors (Amir Vadai) [1164539]
-- [infiniband] iser: Fix unload during ep_poll wrong dereference (Amir Vadai) [1164539]
-- [infiniband] iser: Release the iscsi endpoint if ep_disconnect wasn't called (Amir Vadai) [1164539]
-- [infiniband] iser: Fix memory regions possible leak (Amir Vadai) [1164539]
-- [infiniband] iser: Use correct dma direction when unmapping SGs (Amir Vadai) [1164539]
-- [infiniband] iser: Bump version to 1.5 (Amir Vadai) [1164539]
-- [infiniband] iser: Micro-optimize iser_handle_wc (Amir Vadai) [1164539]
-- [infiniband] iser: Micro-optimize iser logging (Amir Vadai) [1164539]
-- [infiniband] iser: Use more completion queues (Amir Vadai) [1164539]
-- [infiniband] iser: Remove redundant is_mr indicator (Amir Vadai) [1164539]
-- [infiniband] iser: Centralize memory region invalidation to a function (Amir Vadai) [1164539]
-- [infiniband] iser: Terminate connection before cleaning inflight tasks (Amir Vadai) [1164539]
-- [infiniband] iser: Fix race between iser connection teardown and scsi TMFs (Amir Vadai) [1164539]
-- [infiniband] iser: Fix possible NULL derefernce ib_conn->device in session_create (Amir Vadai) [1164539]
-- [infiniband] iser: Fix sparse warnings (Amir Vadai) [1164539]
-- [infiniband] iser: Fix possible SQ overflow (Amir Vadai) [1164539]
-- [infiniband] iser: Decrement CQ's active QPs accounting when QP creation fails (Amir Vadai) [1164539]
-- [infiniband] iser: Collapse cleanup and disconnect handlers (Amir Vadai) [1164539]
-- [infiniband] iser: Fix catastrophic error flow hang (Amir Vadai) [1164539]
-- [infiniband] iser: Re-adjust CQ and QP send ring sizes to HW limits (Amir Vadai) [1164539]
-- [infiniband] iser: Centralize ib_sig_domain settings (Amir Vadai) [1164539]
-- [infiniband] iser: Bump version, add maintainer (Amir Vadai) [1164539]
-- [infiniband] iser: Fix/add kernel-doc style description in iscsi_iser.c (Amir Vadai) [1164539]
-- [infiniband] iser: Add/Fix kernel doc style descriptions in iscsi_iser.h (Amir Vadai) [1164539]
-- [infiniband] iser: Nit - add space after __func__ in iser logging (Amir Vadai) [1164539]
-- [infiniband] iser: Change iscsi_conn_stop log level to info (Amir Vadai) [1164539]
-- [infiniband] iser: Suppress scsi command send completions (Amir Vadai) [1164539]
-- [infiniband] iser: Optimize completion polling (Amir Vadai) [1164539]
-- [infiniband] iser: Use beacon to indicate all completions were consumed (Amir Vadai) [1164539]
-- [infiniband] iser: Use single CQ for RX and TX (Amir Vadai) [1164539]
-- [infiniband] iser: Use internal polling budget to avoid possible live-lock (Amir Vadai) [1164539]
-- [infiniband] iser: Centralize iser completion contexts (Amir Vadai) [1164539]
-- [infiniband] iser: Use iser_warn instead of BUG_ON in iser_conn_release (Amir Vadai) [1164539]
-- [infiniband] iser: Signal iSCSI layer that transport is broken in error completions (Amir Vadai) [1164539]
-- [infiniband] iser: Protect tasks cleanup in case IB device was already released (Amir Vadai) [1164539]
-- [infiniband] iser: Unbind at conn_stop stage (Amir Vadai) [1164539]
-- [infiniband] iser: Don't bound release_work completions timeouts (Amir Vadai) [1164539]
-- [infiniband] iser: Fix DEVICE REMOVAL handling in the absence of iscsi daemon (Amir Vadai) [1164539]
-- [infiniband] iser: Extend iser_free_ib_conn_res() (Amir Vadai) [1164539]
-- [infiniband] iser: Remove unused variables and dead code (Amir Vadai) [1164539]
-- [infiniband] iser: Re-introduce ib_conn (Amir Vadai) [1164539]
-- [infiniband] iser: Rename ib_conn -> iser_conn (Amir Vadai) [1164539]
-- [netdrv] tun: Allow to skip filter on attach (Oleg Nesterov) [1108829]
-- [netdrv] tun: Report whether the queue is attached or not (Oleg Nesterov) [1108829]
-- [netdrv] tun: Get skfilter layout (Oleg Nesterov) [1108829]
-- [netdrv] tun: Add ability to create tun device with given index (Oleg Nesterov) [1108829]
-- [mm] introduce VM_F_OP_EXTEND to fix KABI broken by file_operations->mremap (Oleg Nesterov) [1108829]
-- [fs] aio: Make it possible to remap aio ring (Oleg Nesterov) [1108829]
-- [net] make default ->i_fop have ->open() fail with ENXIO (Oleg Nesterov) [1108829]
-- [fs] proc: show locks in /proc/pid/fdinfo/X (Oleg Nesterov) [1108829]
-- [security] userns: Allow PR_CAPBSET_DROP in a user namespace (Oleg Nesterov) [1108829]
-- [mm] shm: add memfd_create() syscall (Oleg Nesterov) [1108829]
-- [kernel] prctl: PR_SET_MM -- introduce PR_SET_MM_MAP operation (Oleg Nesterov) [1108829]
-- [kernel] prctl: PR_SET_MM -- factor out mmap_sem when updating mm::exe_file (Oleg Nesterov) [1108829]
-- [mm] introduce check_data_rlimit helper (Oleg Nesterov) [1108829]
-- [fs] timerfd: Implement timerfd_ioctl method to restore timerfd_ctx::ticks, v3 (Oleg Nesterov) [1108829]
-- [documentation] procfs: Document timerfd output (Oleg Nesterov) [1108829]
-- [fs] timerfd: Implement show_fdinfo method (Oleg Nesterov) [1108829]
-- [fs] proc: show mnt_id in /proc/pid/fdinfo (Oleg Nesterov) [1108829]
-- [uapi] ptrace: add ability to get/set signal-blocked mask (Oleg Nesterov) [1108829]
-- [init] actually enable CONFIG_CHECKPOINT_RESTORE (Oleg Nesterov) [1108829]
-- [kernel] userns: Allow creation of user namespaces if user_namespace.enable=1 ("Eric W. Biederman") [1138782]
-- [fs] userns: Only allow privileged creation of the mount namespace ("Eric W. Biederman") [1138782]
-- [kernel] userns: Correct the comment in map_write ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Allow setting gid_maps without privilege when setgroups is disabled ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: fix KABI broken by introduction of struct user_namespace.flags ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Add a knob to disable setgroups on a per user namespace basis ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Rename id_map_mutex to userns_state_mutex ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Only allow the creator of the userns unprivileged mappings ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Check euid no fsuid when establishing an unprivileged uid mapping ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Don't allow unprivileged creation of gid mappings ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Don't allow setgroups until a gid mapping has been established ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Document what the invariant required for safe unprivileged mappings ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] groups: Consolidate the setgroups permission checks ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [fs] userns: Change inode_capable to capable_wrt_inode_uidgid ("Eric W. Biederman") [1109837 1138782] {CVE-2014-4014}
-- [kernel] userns: Kill nsown_capable it makes the wrong thing easy ("Eric W. Biederman") [1138782]
-- [kernel] userns: fix KABI broken by introduction of struct user_namespace.level ("Eric W. Biederman") [1138782]
-- [kernel] userns: limit the maximum depth of user_namespace->parent chain ("Eric W. Biederman") [1109837]
-
-* Fri Jun 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-284.el7]
-- [md] make sure MD_RECOVERY_DONE is clear before starting recovery/resync (Jes Sorensen) [1173510 1231997]
-- [md] Close race when setting 'action' to 'idle' (Jes Sorensen) [1173510 1231997]
-- [md] don't return 0 from array_state_store (Jes Sorensen) [1173510 1231997]
-- [md] dm-cache: switch the "default" cache replacement policy from mq to smq (Mike Snitzer) [1189059]
-- [md] dm-thin-metadata: remove in-core 'read_only' flag (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: prefix all DMERR and DMINFO messages with cache device name (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: add fail io mode and needs_check flag (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: age and write back cache entries even without active IO (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: wake the worker thread every time we free a migration object (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: add stochastic-multi-queue (smq) policy (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: boost promotion of blocks that will be overwritten (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: defer whole cells (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-bio-prison: add dm_cell_promote_or_release() (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: pull out some bitset utility functions for reuse (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: pass a new 'critical' flag to the policies when requesting writeback work (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: track IO to the origin device using io_tracker (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: add io_tracker (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: fix race when issuing a POLICY_REPLACE operation (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-raid: add support for the MD RAID0 personality (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-raid: a few cleanups (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-raid: fixup documentation for discard support (Mike Snitzer) [1189058 1189059 1191604]
-- [perf] x86: Enforce HT bug workaround with PEBS for SNB/IVB/HSW (Jiri Olsa) [1210494]
-- [perf] x86/intel: Fix SLM cache event list (Jiri Olsa) [1210494]
-- [perf] x86: Improve HT workaround GP counter constraint (Jiri Olsa) [1210494]
-- [perf] x86: Fix event/group validation (Jiri Olsa) [1210494]
-- [perf] x86: Disable PEBS-LL in intel_pmu_pebs_disable() (Jiri Olsa) [1210494]
-- [perf] x86/intel: Reset more state in PMU reset (Jiri Olsa) [1210494]
-- [perf] x86/intel: Make the HT bug workaround conditional on HT enabled (Jiri Olsa) [1210494]
-- [perf] x86/intel: Limit to half counters when the HT workaround is enabled, to avoid exclusive mode starvation (Jiri Olsa) [1210494]
-- [perf] x86/intel: Fix intel_get_event_constraints() for dynamic constraints (Jiri Olsa) [1210494]
-- [perf] x86/intel: Enforce HT bug workaround for SNB/IVB/HSW (Jiri Olsa) [1210494]
-- [perf] x86/intel: Implement cross-HT corruption bug workaround (Jiri Olsa) [1210494]
-- [perf] x86/intel: Add cross-HT counter exclusion infrastructure (Jiri Olsa) [1210494]
-- [perf] watchdog: Add watchdog enable/disable all functions (Jiri Olsa) [1210494]
-- [perf] x86: Add 'index' param to get_event_constraint() callback (Jiri Olsa) [1210494]
-- [perf] x86: Add 3 new scheduling callbacks (Jiri Olsa) [1210494]
-- [perf] x86: Vectorize cpuc->kfree_on_online (Jiri Olsa) [1210494]
-- [perf] x86: Rename x86_pmu::er_flags to 'flags' (Jiri Olsa) [1210494]
-- [netdrv] ibmveth: Add support for Large Receive Offload (Gustavo Duarte) [1233261]
-- [netdrv] ibmveth: Add GRO support (Gustavo Duarte) [1233261]
-- [netdrv] ibmveth: Add support for TSO (Gustavo Duarte) [1233261]
-- [netdrv] ibmveth: change rx buffer default allocation for CMO (Gustavo Duarte) [1233261]
-- [powerpc] powernv: reboot when requested by firmware (Gustavo Duarte) [1221072]
-- [kernel] reboot: add orderly_reboot for graceful reboot (Gustavo Duarte) [1221072]
-- [powerpc] sbus: ignore orderly_poweroff return value (Gustavo Duarte) [1221072]
-- [powerpc] powernv: Add OPAL soft-poweroff routine (Gustavo Duarte) [1221072]
-- [net] openvswitch: remove GFP_THISNODE (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Return vport module ref before destruction (Jiri Benc) [1156461 1211348]
-- [net] mpls: Fix the openvswitch select of NET_MPLS_GSO (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix serialization of non-masked set actions (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix key serialization (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add missing initialization in validate_and_copy_set_tun() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Reset key metadata for packet execution (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Only set TUNNEL_VXLAN_OPT if VXLAN-GBP metadata is set (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Initialize unmasked key and uid len (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Support masked set actions (Jiri Benc) [1156461 1211348]
-- [net] udptunnels: Call handle_offloads after inserting vlan tag (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for checksums on UDP tunnels (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for unique flow IDs (Jiri Benc) [1156461 1211348]
-- [net] genetlink: Add genlmsg_parse() helper function (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Use sw_flow_key_range for key ranges (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor ovs_flow_tbl_insert() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor ovs_nla_fill_match() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: pass vxflags to vxlan_xmit_skb (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: ignore genlmsg_end return value (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Support VXLAN Group Policy extension (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Allow for any level of nesting in flow attributes (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Rename GENEVE_TUN_OPTS() to TUN_METADATA_OPTS() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: packet messages need their own probe attribtue (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Introduce ovs_tunnel_route_lookup (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Remove unnecessary version.h inclusion (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Consistently include VLAN header in flow and port stats (Jiri Benc) [1156461 1211348]
-- [net] genetlink: pass only network namespace to genl_has_listeners() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: fix odd_ptr_err.cocci warnings (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix vport_send double free (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix GSO with multiple MPLS label (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix MPLS action validation (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: replace remaining users of arch_fast_hash with jhash (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: set correct protocol on route lookup (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix flow mask validation (Jiri Benc) [1156461 1211348]
-- [net] vlan: move vlan pop/push functions into common code (Jiri Benc) [1156461 1211348]
-- [net] move make_writable helper into common code (Jiri Benc) [1156461 1211348]
-- [net] vlan: introduce __vlan_insert_tag helper which does not free skb (Jiri Benc) [1156461 1211348]
-- [net] vlan: Call dev_kfree_skb_any instead of kfree_skb (Jiri Benc) [1156461 1211348]
-- [net] vlan: introduce *vlan_hwaccel_push_inside helpers (Jiri Benc) [1156461 1211348]
-- [net] vlan: validate_xmit_vlan() is static (Jiri Benc) [1156461 1211348]
-- [net] vlan: rename __vlan_put_tag to vlan_insert_tag_set_proto (Jiri Benc) [1156461 1211348]
-- [net] vlan: kill vlan_put_tag helper (Jiri Benc) [1156461 1211348]
-- [net] vlan: remove unused HAVE_VLAN_PUT_TAG (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: actions: use skb_postpull_rcsum when possible (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Don't validate IPv6 label masks (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: use PTR_ERR_OR_ZERO (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Validate IPv6 flow key and mask values (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Convert dp rcu read operation to locked operations (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix NDP flow mask validation (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix checksum calculation when modifying ICMPv6 packets (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix memory leak (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix build failure (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for OVS_FLOW_ATTR_PROBE (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Constify various function arguments (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Remove redundant key ref from upcall_info (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Optimize recirc action (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Extend packet attribute for egress tunnel info (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Export symbols as GPL symbols (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Avoid NULL mask check while building mask (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor action alloc and copy api (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Move key_attr_size() to flow_netlink.h (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Remove flow member from struct ovs_skb_cb (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix the type of struct ovs_key_nd nd_target field (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Drop packets when interdev is not up (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor get_dp() function into multiple access APIs (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor ovs_flow_cmd_fill_info() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: refactor do_output() to move NULL check out of fast path (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Additional logging for -EINVAL on flow setups (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Remove redundant tcp_flags code (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Move table destroy to dp-rcu callback (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add basic MPLS support to kernel (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Export lockdep_ovsl_is_held to modules (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Rename last_action() as nla_is_last() and move to netlink.h (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Turn vports with dependencies into separate modules (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Set flow-key members (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Create right mask with disabled megaflows (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: fix a use after free (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: use vport instead of p (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: kerneldoc warning fix (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: fix a sparse warning (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for Geneve tunneling (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Factor out allocation and verification of actions (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Wrap struct ovs_key_ipv4_tunnel in a new structure (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for matching on OAM packets (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Eliminate memset() from flow_extract (Jiri Benc) [1156461 1211348]
-- [net] mpls: Fix config check for mpls (Jiri Benc) [1156461 1211348]
-- [net] mpls: Use mpls_features to activate software MPLS GSO segmentation (Jiri Benc) [1156461 1211348]
-- [net] geneve: Pass UDP socket down through udp_tunnel{, 6}_xmit_skb() (Jiri Benc) [1156461 1211348]
-- [net] geneve: coding style: comparison for inequality with NULL (Jiri Benc) [1156461 1211348]
-- [net] geneve: coding style: comparison for equality with NULL (Jiri Benc) [1156461 1211348]
-- [net] geneve: Do not require sock in udp_tunnel_xmit_skb (Jiri Benc) [1156461 1211348]
-- [net] geneve: pass udp_offload struct to UDP gro callbacks (Jiri Benc) [1156461 1211348]
-- [net] geneve: Check family when reusing sockets (Jiri Benc) [1156461 1211348]
-- [net] geneve: Remove socket hash table (Jiri Benc) [1156461 1211348]
-- [net] geneve: Simplify locking (Jiri Benc) [1156461 1211348]
-- [net] geneve: Remove workqueue (Jiri Benc) [1156461 1211348]
-- [net] geneve: Add Geneve GRO support (Jiri Benc) [1156461 1211348]
-- [net] geneve: Fix races between socket add and release (Jiri Benc) [1156461 1211348]
-- [net] geneve: Remove socket and offload handlers at destruction (Jiri Benc) [1156461 1211348]
-- [net] geneve: Unregister pernet subsys on module unload (Jiri Benc) [1156461 1211348]
-- [net] geneve: Set GSO type on transmit (Jiri Benc) [1156461 1211348]
-- [net] ipv4: minor spelling fixes (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: fix a compilation error when CONFIG_INET is not set (Jiri Benc) [1156461 1211348]
-- [net] geneve: fix a sparse warning (Jiri Benc) [1156461 1211348]
-- [net] geneve: Add Geneve tunneling protocol driver (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Replace rcu_dereference() with rcu_access_pointer() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: replace macros net_random and net_srandom with direct calls to prandom (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: check CONFIG_OPENVSWITCH_GRE in makefile (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix struct comment (Jiri Benc) [1156461 1211348]
-- [net] vxlan: fix a shadow local variable (Jiri Benc) [1230935]
-- [net] ipv6: call iptunnel_xmit with NULL sock pointer if no tunnel sock is available (Jiri Benc) [1230935]
-- [net] udp_tunnel: Pass UDP socket down through udp_tunnel{, 6}_xmit_skb() (Jiri Benc) [1230935]
-- [net] kabi: whitelist struct nf_hook_state (Jiri Benc) [1230935]
-- [net] netfilter: Pass socket pointer down through okfn() (Jiri Benc) [1230935]
-- [net] netfilter: Add socket pointer to nf_hook_state (Jiri Benc) [1230935]
-- [net] netfilter: Add nf_hook_state initializer function (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through arpt_do_table() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through nft_set_pktinfo*() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through ip6t_do_table() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through nf_nat_ipv6_{in, out, fn, local_fn}() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through ipt_do_table() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through nf_nat_ipv4_{in, out, fn, local_fn}() (Jiri Benc) [1230935]
-- [net] netfilter: Make nf_hookfn use nf_hook_state (Jiri Benc) [1230935]
-- [net] netfilter: Use nf_hook_state in nf_queue_entry (Jiri Benc) [1230935]
-- [net] netfilter: Create and use nf_hook_state (Jiri Benc) [1230935]
-- [net] netfilter: Remove extern from function prototypes (Jiri Benc) [1230935]
-- [net] bridge: fix netfilter/NF_BR_LOCAL_OUT for own, locally generated queries (Jiri Benc) [1230935]
-- [net] ipv6: Fix udp checksums with raw sockets (Vlad Yasevich) [1105064]
-
-* Fri Jun 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-283.el7]
-- [scsi] storvsc: Set the SRB flags correctly when no data transfer is needed (Vitaly Kuznetsov) [1075441 1209811 1221298 1228231]
-- [scsi] storvsc: Fix a bug in copy_from_bounce_buffer() (Vitaly Kuznetsov) [1075441 1209811 1221298 1228231]
-- [scsi] storvsc: force SPC-3 compliance on win8 and win8 r2 hosts (Vitaly Kuznetsov) [1075441 1209811 1221298 1228231]
-- [scsi] storvsc: use cmd_size to allocate per-command data (Vitaly Kuznetsov) [1075441 1209811 1221298 1228231]
-- [hv] vmbus: unregister panic notifier on module unload (Vitaly Kuznetsov) [1210721]
-- [hv] vmbus: hyperv_panic_event() can be static (Vitaly Kuznetsov) [1210721]
-- [hv] vmbus: Correcting truncation error for constant HV_CRASH_CTL_CRASH_NOTIFY (Vitaly Kuznetsov) [1210721]
-- [hv] vmbus: Add support for VMBus panic notifier handler (Vitaly Kuznetsov) [1210721]
-- [hv] vmbus: Don't wait after requesting offers (Vitaly Kuznetsov) [1211914]
-- [hv] channel_mgmt: match var type to return type of wait_for_completion (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Get rid of some unnecessary messages (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Fix a bug in the error path in vmbus_open() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus_open(): reset the channel state on ENOMEM (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus_post_msg: retry the hypercall on some transient errors (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Fix a bug in vmbus_establish_gpadl() (Vitaly Kuznetsov) [1211914]
-- [hv] x86: Mark the Hyper-V clocksource as being continuous (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Enable interrupt driven flow control (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup hv_post_message() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup vmbus_establish_gpadl() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup vmbus_teardown_gpadl() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup vmbus_post_msg() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup the packet send path (Vitaly Kuznetsov) [1211914]
-- [hv] hv_balloon: do not online pages in offline blocks (Vitaly Kuznetsov) [1133403 1218868]
-- [hv] hv_balloon: don't lose memory when onlining order is not natural (Vitaly Kuznetsov) [1133403 1218868]
-- [pnp] convert bus code to use dev_groups (Jarod Wilson) [1232626]
-- [rtc] convert rtc-cmos to dev_pm_ops from legacy pm_ops (Jarod Wilson) [1232626]
-- [pnp] fix restoring devices after hibernation (Jarod Wilson) [1232626]
-- [pnp] convert PNP driver bus legacy pm_ops to dev_pm_ops (Jarod Wilson) [1232626]
-- [pnp] change pnp bus pm_ops to invoke pnp driver dev_pm_ops if specified (Jarod Wilson) [1232626]
-- [pci] pciehp: Wait for hotplug command completion where necessary (Myron Stowe) [1227034]
-- [pci] pciehp: Add more Slot Control debug output (Myron Stowe) [1227034]
-- [pci] pciehp: Fix wait time in timeout message (Myron Stowe) [1227034]
-- [pci] pciehp: Reduce PCIe slot_ctrl to 16 bits (Myron Stowe) [1227034]
-- [infiniband] srp: Use P_Key cache for P_Key lookups (Honggang Li) [1164541]
-- [infiniband] srp: Allow newline separator for connection string (Honggang Li) [1164541]
-- [infiniband] srp: Fix a race condition triggered by destroying a queue pair (Honggang Li) [1164541]
-- [infiniband] srp: Separate target and channel variables (Honggang Li) [1164541]
-- [infiniband] srp: Introduce two new srp_target_port member variables (Honggang Li) [1164541]
-- [infiniband] srp: Avoid that I/O hangs due to a cable pull during LUN scanning (Honggang Li) [1164541]
-- [infiniband] srp: Remove stale connection retry mechanism (Honggang Li) [1164541]
-- [infiniband] srp: Move ib_destroy_cm_id() call into srp_free_ch_ib() (Honggang Li) [1164541]
-- [infiniband] srp: Fix return value check in srp_init_module() (Honggang Li) [1164541]
-- [infiniband] srp: Fix residual handling (Honggang Li) [1164541]
-- [infiniband] srp: Fix deadlock between host removal and multipathd (Honggang Li) [1164541]
-- [infiniband] srp: Avoid problems if a header uses pr_fmt (Honggang Li) [1164541]
-- [infiniband] srp: Add fast registration support (Honggang Li) [1164541]
-- [infiniband] srp: Rename FMR-related variables (Honggang Li) [1164541]
-- [infiniband] srp: One FMR pool per SRP connection (Honggang Li) [1164541]
-- [infiniband] srp: Introduce the 'register_always' kernel module parameter (Honggang Li) [1164541]
-- [infiniband] srp: Introduce srp_finish_mapping() (Honggang Li) [1164541]
-- [infiniband] srp: Introduce srp_map_fmr() (Honggang Li) [1164541]
-- [infiniband] srp: Introduce an additional local variable (Honggang Li) [1164541]
-- [infiniband] srp: Fix kernel-doc warnings (Honggang Li) [1164541]
-- [infiniband] srp: Fix a sporadic crash triggered by cable pulling (Honggang Li) [1164541]
-- [infiniband] srp: Fix a race condition between failing I/O and I/O completion (Honggang Li) [1164541]
-- [infiniband] srp: Avoid that writing into "add_target" hangs due to a cable pull (Honggang Li) [1164541]
-- [infiniband] srp: Make writing into the "add_target" sysfs attribute interruptible (Honggang Li) [1164541]
-- [infiniband] srp: Avoid duplicate connections (Honggang Li) [1164541]
-- [infiniband] srp: Add more logging (Honggang Li) [1164541]
-- [infiniband] srp: Check ib_query_gid return value (Honggang Li) [1164541]
-- [infiniband] ocrdma: Update ocrdma version number (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fail connection for MTU lesser than 512 (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix dmac resolution for link local address (Honggang Li) [1184955]
-- [infiniband] ocrdma: Prevent allocation of DPP PDs if FW doesnt support it (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix the request length for RDMA_QUERY_QP mailbox command to FW (Honggang Li) [1184955]
-- [infiniband] ocrdma: Use VID 0 if PFC is enabled and vlan is not configured (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix QP state transition in destroy_qp (Honggang Li) [1184955]
-- [infiniband] ocrdma: Report EQ full fatal error (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix EQ destroy failure during driver unload (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix off by one in ocrdma_query_gid() (Honggang Li) [1184955]
-- [infiniband] ocrdma: Use unsigned for bit index (Honggang Li) [1184955]
-- [infiniband] ocrdma: Help gcc generate better code for ocrdma_srq_toggle_bit (Honggang Li) [1184955]
-- [infiniband] ocrdma: Update the ocrdma module version string (Honggang Li) [1184955]
-- [infiniband] ocrdma: set vlan present bit for user AH (Honggang Li) [1184955]
-- [infiniband] ocrdma: remove reference of ocrdma_dev out of ocrdma_qp structure (Honggang Li) [1184955]
-- [infiniband] ocrdma: Add support for interrupt moderation (Honggang Li) [1184955]
-- [infiniband] ocrdma: Honor return value of ocrdma_resolve_dmac (Honggang Li) [1184955]
-- [infiniband] ocrdma: Allow expansion of the SQ CQEs via buddy CQ expansion of the QP (Honggang Li) [1184955]
-- [infiniband] ocrdma: Discontinue support of RDMA-READ-WITH-INVALIDATE (Honggang Li) [1184955]
-- [infiniband] ocrdma: Host crash on destroying device resources (Honggang Li) [1184955]
-- [infiniband] ocrdma: Report correct state in ibv_query_qp (Honggang Li) [1184955]
-- [infiniband] ocrdma: Debugfs enhancments for ocrdma driver (Honggang Li) [1184955]
-- [infiniband] ocrdma: Report correct count of interrupt vectors while registering ocrdma device (Honggang Li) [1184955]
-- [infiniband] ocrdma: Move PD resource management to driver (Honggang Li) [1184955]
-- [infiniband] ocrdma: Increase the GID table size (Honggang Li) [1184955]
-- [infiniband] ocrdma: Add support for IB stack compliant stats in sysfs (Honggang Li) [1184955]
-- [infiniband] ocrdma: Save the bit environment, spare unncessary parenthesis (Honggang Li) [1184955]
-- [infiniband] ocrdma: The kernel has a perfectly good BIT() macro - use it (Honggang Li) [1184955]
-- [infiniband] ocrdma: Don't memset() buffers we just allocated with kzalloc() (Honggang Li) [1184955]
-- [infiniband] ocrdma: Remove a unused-label warning (Honggang Li) [1184955]
-- [infiniband] ipoib: Fix indentation level (Honggang Li) [1230203]
-- [infiniband] ipoib: Remove IPOIB_MCAST_RUN bit (Honggang Li) [1230203]
-- [infiniband] ipoib: Save only IPOIB_MAX_PATH_REC_QUEUE skb's (Honggang Li) [1230203]
-- [infiniband] ipoib: Handle QP in SQE state (Honggang Li) [1230203]
-- [infiniband] ipoib: Update broadcast record values after each successful join request (Honggang Li) [1230203]
-- [infiniband] ipoib: Use one linear skb in RX flow (Honggang Li) [1230203]
-- [fs] rbd: end I/O the entire obj_request on error (Sage Weil) [1229488]
-- [fs] rbd: rbd_wq comment is obsolete (Sage Weil) [1229488]
-- [fs] libceph: announce support for straw2 buckets (Sage Weil) [1229488]
-- [fs] crush: straw2 bucket type with an efficient 64-bit crush_ln() (Sage Weil) [1229488]
-- [fs] crush: ensuring at most num-rep osds are selected (Sage Weil) [1229488]
-- [fs] crush: drop unnecessary include from mapper.c (Sage Weil) [1229488]
-- [fs] ceph: fix uninline data function (Sage Weil) [1229488]
-- [fs] ceph: rename snapshot support (Sage Weil) [1229488]
-- [fs] ceph: fix null pointer dereference in send_mds_reconnect() (Sage Weil) [1229488]
-- [fs] ceph: hold on to exclusive caps on complete directories (Sage Weil) [1229488]
-- [fs] libceph: simplify our debugfs attr macro (Sage Weil) [1229488]
-- [fs] ceph: show non-default options only (Sage Weil) [1229488]
-- [fs] libceph: expose client options through debugfs (Sage Weil) [1229488]
-- [fs] libceph, ceph: split ceph_show_options() (Sage Weil) [1229488]
-- [fs] rbd: mark block queue as non-rotational (Sage Weil) [1229488]
-- [fs] libceph: don't overwrite specific con error msgs (Sage Weil) [1229488]
-- [fs] ceph: cleanup unsafe requests when reconnecting is denied (Sage Weil) [1229488]
-- [fs] ceph: don't zero i_wrbuffer_ref when reconnecting is denied (Sage Weil) [1229488]
-- [fs] ceph: don't mark dirty caps when there is no auth cap (Sage Weil) [1229488]
-- [fs] ceph: keep i_snap_realm while there are writers (Sage Weil) [1229488]
-- [fs] libceph: osdmap.h: Add missing format newlines (Sage Weil) [1229488]
-- [fs] ceph: kstrdup() memory handling (Sage Weil) [1229488]
-- [fs] ceph: properly release page upon error (Sage Weil) [1229488]
-- [fs] rbd: be more informative on -ENOENT failures (Sage Weil) [1229488]
-- [fs] ceph: match wait_for_completion_timeout return type (Sage Weil) [1229488]
-- [fs] ceph: use msecs_to_jiffies for time conversion (Sage Weil) [1229488]
-- [fs] ceph: remove redundant declaration (Sage Weil) [1229488]
-- [fs] ceph: fix dcache/nocache mount option (Sage Weil) [1229488]
-- [fs] ceph: drop cap releases in requests composed before cap reconnect (Sage Weil) [1229488]
-- [fs] Revert "libceph: use memalloc flags for net IO" (Sage Weil) [1229488]
-- [fs] libceph: kfree() in put_osd() shouldn't depend on authorizer (Sage Weil) [1229488]
-- [fs] libceph: fix double __remove_osd() problem (Sage Weil) [1229488]
-- [fs] rbd: convert to blk-mq (Carlos Maiolino) [1229488]
-- [fs] ceph: return error for traceless reply race (Sage Weil) [1229488]
-- [fs] ceph: fix dentry leaks (Sage Weil) [1229488]
-- [fs] ceph: re-send requests when MDS enters reconnecting stage (Sage Weil) [1229488]
-- [fs] ceph: show nocephx_require_signatures and notcp_nodelay options (Sage Weil) [1229488]
-- [fs] rbd: do not treat standalone as flatten (Sage Weil) [1229488]
-- [fs] ceph: fix atomic_open snapdir (Sage Weil) [1229488]
-- [fs] ceph: properly mark empty directory as complete (Sage Weil) [1229488]
-- [fs] client: include kernel version in client metadata (Sage Weil) [1229488]
-- [fs] ceph: provide seperate {inode, file}_operations for snapdir (Sage Weil) [1229488]
-- [fs] ceph: fix request time stamp encoding (Sage Weil) [1229488]
-- [fs] ceph: fix reading inline data when i_size > PAGE_SIZE (Sage Weil) [1229488]
-- [fs] ceph: avoid block operation when !TASK_RUNNING (ceph_mdsc_close_sessions) (Sage Weil) [1229488]
-- [fs] ceph: avoid block operation when !TASK_RUNNING (ceph_get_caps) (Sage Weil) [1229488]
-- [fs] ceph: avoid block operation when !TASK_RUNNING (ceph_mdsc_sync) (Sage Weil) [1229488]
-- [fs] rbd: fix error paths in rbd_dev_refresh() (Sage Weil) [1229488]
-- [fs] ceph: improve reference tracking for snaprealm (Sage Weil) [1229488]
-- [fs] ceph: properly zero data pages for file holes (Sage Weil) [1229488]
-- [fs] rbd: nuke copy_token() (Sage Weil) [1229488]
-- [fs] ceph: handle SESSION_FORCE_RO message (Sage Weil) [1229488]
-- [fs] libceph: use mon_client.c/put_generic_request() more (Sage Weil) [1229488]
-- [fs] libceph: nuke pool op infrastructure (Sage Weil) [1229488]
-- [fs] rbd: drop parent_ref in rbd_dev_unprobe() unconditionally (Sage Weil) [1229488]
-- [fs] rbd: fix rbd_dev_parent_get() when parent_overlap == 0 (Sage Weil) [1229488]
-- [fs] libceph: fix sparse endianness warnings (Sage Weil) [1229488]
-- [fs] ceph: use zu for len in ceph_fill_inline_data() (Sage Weil) [1229488]
-- [fs] ceph: fix setting empty extended attribute (Sage Weil) [1229488]
-- [fs] ceph: fix mksnap crash (Sage Weil) [1229488]
-- [fs] ceph: do_sync is never initialized (Sage Weil) [1229488]
-- [fs] ceph: support inline data feature (Sage Weil) [1229488]
-- [fs] ceph: flush inline version (Sage Weil) [1229488]
-- [fs] ceph: convert inline data to normal data before data write (Sage Weil) [1229488]
-- [fs] ceph: sync read inline data (Sage Weil) [1229488]
-- [fs] ceph: fetch inline data when getting Fcr cap refs (Sage Weil) [1229488]
-- [fs] ceph: use getattr request to fetch inline data (Sage Weil) [1229488]
-- [fs] ceph: add inline data to pagecache (Sage Weil) [1229488]
-- [fs] ceph: parse inline data in MClientReply and MClientCaps (Sage Weil) [1229488]
-- [fs] libceph: specify position of extent operation (Sage Weil) [1229488]
-- [fs] libceph: add CREATE osd operation support (Sage Weil) [1229488]
-- [fs] libceph: add SETXATTR/CMPXATTR osd operations support (Sage Weil) [1229488]
-- [fs] rbd: don't treat CEPH_OSD_OP_DELETE as extent op (Sage Weil) [1229488]
-- [fs] ceph: remove unused stringification macros (Sage Weil) [1229488]
-- [fs] libceph: require cephx message signature by default (Sage Weil) [1229488]
-- [fs] ceph: introduce global empty snap context (Sage Weil) [1229488]
-- [fs] ceph: message versioning fixes (Sage Weil) [1229488]
-- [fs] libceph: update ceph_msg_header structure (Sage Weil) [1229488]
-- [fs] libceph: message signature support (Sage Weil) [1229488]
-- [fs] libceph: store session key in cephx authorizer (Sage Weil) [1229488]
-- [fs] ceph, rbd: delete unnecessary checks before two function calls (Sage Weil) [1229488]
-- [fs] ceph: introduce a new inode flag indicating if cached dentries are ordered (Sage Weil) [1229488]
-- [fs] libceph: nuke ceph_kvfree() (Sage Weil) [1229488]
-- [fs] ceph: fix file lock interruption (Sage Weil) [1229488]
-
-* Thu Jun 25 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-282.el7]
-- [mtd] powernv: Add powernv flash MTD abstraction driver (Gustavo Duarte) [1221094]
-- [of] Ensure unique names without sacrificing determinism (Gustavo Duarte) [1230093]
-- [of] kill off of_can_translate_address (Gustavo Duarte) [1230093]
-- [of] platform: fix device naming for non-translatable addresses (Gustavo Duarte) [1230093]
-- [of] base: Fix PowerPC address parsing hack (Gustavo Duarte) [1230093]
-- [of] address: Don't throw errors on absent ranges properties (Gustavo Duarte) [1230093]
-- [of] platform: Move platform devices under /sys/devices/platform (Gustavo Duarte) [1230093]
-- [of] Fix dereferencing node name in debug output to be safe (Gustavo Duarte) [1230093]
-- [powerpc] powernv: Add opal-prd channel (Gustavo Duarte) [1221110 1229224]
-- [powerpc] powernv: Expose OPAL APIs required by PRD interface (Gustavo Duarte) [1221110 1229224]
-- [powerpc] powernv: Merge common platform device initialisation (Gustavo Duarte) [1221110 1229224]
-- [powerpc] powernv: Add interfaces for flash device access (Gustavo Duarte) [1221072 1229224]
-- [powerpc] vfio: powerpc/spapr: Support Dynamic DMA windows (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Register memory and define IOMMU v2 (David Gibson) [1213665]
-- [powerpc] mmu: Add userspace-to-physical addresses translation cache (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: powerpc/powernv/ioda2: Use DMA windows API in ownership control (David Gibson) [1213665]
-- [powerpc] iommu/ioda2: Add get_table_size() to calculate the size of future table (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Use new helpers to do proper cleanup on PE release (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: powerpc/powernv/ioda: Define and implement DMA windows API (David Gibson) [1213665]
-- [powerpc] powernv: Implement multilevel TCE tables (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Introduce pnv_pci_ioda2_set_window (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Introduce helpers to allocate TCE pages (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Rework iommu_table creation (David Gibson) [1213665]
-- [powerpc] iommu/powernv: Release replaced TCE (David Gibson) [1213665]
-- [powerpc] powernv: Implement accessor to TCE entry (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Add TCE invalidation for all attached groups (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Move TCE kill register address to PE (David Gibson) [1213665]
-- [powerpc] iommu: Fix IOMMU ownership control functions (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr/iommu/powernv/ioda2: Rework IOMMU ownership control (David Gibson) [1213665]
-- [powerpc] spapr: vfio: Switch from iommu_table to new iommu_table_group (David Gibson) [1213665]
-- [powerpc] spapr: vfio: Replace iommu_table with iommu_table_group (David Gibson) [1213665]
-- [powerpc] powernv/ioda/ioda2: Rework TCE invalidation in tce_build()/tce_free() (David Gibson) [1213665]
-- [powerpc] iommu: Move tce_xxx callbacks from ppc_md to iommu_table (David Gibson) [1213665]
-- [powerpc] powernv: Do not set "read" flag if direction==DMA_NONE (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Rework groups attaching (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Moving pinning/unpinning to helpers (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Disable DMA mappings on disabled container (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Move locked_vm accounting to helpers (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Use it_page_size (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Check that IOMMU page is fully contained by system page (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Move page pinning from arch code to VFIO IOMMU driver (David Gibson) [1213665]
-- [powerpc] iommu: Always release iommu_table in iommu_free_table() (David Gibson) [1213665]
-- [powerpc] iommu: Put IOMMU group explicitly (David Gibson) [1213665]
-- [powerpc] powernv/ioda: Clean up IOMMU group registration (David Gibson) [1213665]
-- [powerpc] iommu/powernv: Get rid of set_iommu_table_base_and_group (David Gibson) [1213665]
-- [powerpc] eeh/ioda2: Use device::iommu_group to check IOMMU group (David Gibson) [1213665]
-- [netdrv] sfc: mark state UNINIT after unregister (Jarod Wilson) [1199178]
-- [netdrv] sfc: leak vports if a VF is assigned during PF unload (Jarod Wilson) [1199178]
-- [netdrv] sfc: force removal of VF and vport on driver removal (Jarod Wilson) [1199178]
-- [netdrv] sfc: do not allow VFs to be destroyed if assigned to guests (Jarod Wilson) [1199178]
-- [netdrv] sfc: don't update stats on VF when called in atomic context (Jarod Wilson) [1199178]
-- [netdrv] sfc: suppress vadaptor stats when EVB is not present (Jarod Wilson) [1199178]
-- [netdrv] sfc: suppress ENOENT error messages from MC_CMD_MAC_STATS (Jarod Wilson) [1199178]
-- [netdrv] sfc: update netdevice statistics to use vadaptor stats (Jarod Wilson) [1199178]
-- [netdrv] sfc: DMA the VF stats only when requested (Jarod Wilson) [1199178]
-- [netdrv] sfc: display vadaptor statistics for all interfaces (Jarod Wilson) [1199178]
-- [netdrv] sfc: set the port-id when calling MC_CMD_MAC_STATS (Jarod Wilson) [1199178]
-- [netdrv] sfc: add "port_" prefix to MAC stats (Jarod Wilson) [1199178]
-- [netdrv] sfc: Implement ndo_gets_phys_port_id() for EF10 VFs (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add sysfs entry for flags (link control and primary) (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add paranthesis correctly on all branches of the if statement (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add code to export port_num in netdev->dev_port (Jarod Wilson) [1199178]
-- [netdrv] sfc: free multiple Rx buffers when required (Jarod Wilson) [1199178]
-- [netdrv] sfc: add module parameter to enable MCDI logging on new functions (Jarod Wilson) [1199178]
-- [netdrv] sfc: add sysfs entry to control MCDI tracing (Jarod Wilson) [1199178]
-- [netdrv] sfc: add tracing of MCDI commands (Jarod Wilson) [1199178]
-- [netdrv] sfc: set the MAC address using MC_CMD_VADAPTOR_SET_MAC (Jarod Wilson) [1199178]
-- [netdrv] sfc: Implement dummy disable of VF spoof check for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: add ndo_set_vf_link_state() function for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: add ndo_set_vf_vlan() function for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: Change entity reset on MC reboot to a new datapath-only reset (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add ndo_get_vf_config() function for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: add ndo_set_vf_mac() function for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: Initialise MCDI buffers to 0 on declaration (Jarod Wilson) [1199178]
-- [netdrv] sfc: Enable a VF to get its own MAC address (Jarod Wilson) [1199178]
-- [netdrv] sfc: protect filter table against use-after-free (Jarod Wilson) [1199178]
-- [netdrv] sfc: Store the efx_nic struct of the current VF in the VF data struct (Jarod Wilson) [1199178]
-- [netdrv] sfc: save old MAC address in case sriov_mac_address_changed fails (Jarod Wilson) [1199178]
-- [netdrv] sfc: Store vf_index in nic_data for Ef10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: MC_CMD_SET_MAC can only be called by the link control Function (Jarod Wilson) [1199178]
-- [netdrv] sfc: change definition of MC_CMD_VADAPTOR_ALLOC (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add permissions to MCDI commands (Jarod Wilson) [1199178]
-- [netdrv] sfc: nicer log message on Siena SR-IOV probe fail (Jarod Wilson) [1199178]
-- [netdrv] sfc: suppress some MCDI error messages in PTP (Jarod Wilson) [1199178]
-- [netdrv] sfc: nicer log message on PTP probe fail (Jarod Wilson) [1199178]
-- [netdrv] sfc: Bind the sfc driver to any available VF's (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add use of shared RSS contexts (Jarod Wilson) [1199178]
-- [netdrv] sfc: Cope with permissions enforcement added to firmware for SR-IOV (Jarod Wilson) [1199178]
-- [netdrv] sfc: manually allocate and free vadaptors (Jarod Wilson) [1199178]
-- [netdrv] sfc: create vports for VFs and assign random MAC addresses (Jarod Wilson) [1199178]
-- [netdrv] sfc: Prepare to bind the sfc driver to the VF (Jarod Wilson) [1199178]
-- [netdrv] sfc: get the PF number and record in nic_data (Jarod Wilson) [1199178]
-- [netdrv] sfc: create VEB vswitch and vport above default firmware setup (Jarod Wilson) [1199178]
-- [netdrv] sfc: record the PF's vport ID in nic_data (Jarod Wilson) [1199178]
-- [netdrv] sfc: Record [rt]x_dpcpu_fw_id in EF10 nic_data (Jarod Wilson) [1199178]
-- [netdrv] sfc: Use MCDI to set FILTER_OP_IN_TX_DOMAIN (Jarod Wilson) [1199178]
-- [netdrv] sfc: Enable VF's via a write to the sysfs file sriov_numvfs (Jarod Wilson) [1199178]
-- [netdrv] sfc: Move and rename efx_vf struct to siena_vf (Jarod Wilson) [1199178]
-- [netdrv] sfc: Own header for nic-specific sriov functions, single instance of netdev_ops and sriov removed from Falcon code (Jarod Wilson) [1199178]
-- [netdrv] sfc: Fix memcpy() with const destination compiler warning (Jarod Wilson) [1199178]
-- [netdrv] sfc: Revert SRIOV changes (Jarod Wilson) [1199178]
-- [netdrv] sfc: Enable VF's via a write to the sysfs file sriov_numvfs (Jarod Wilson) [1199178]
-- [netdrv] sfc: Own header for nic-specific sriov functions, single instance of netdev_ops and sriov removed from Falcon code (Jarod Wilson) [1199178]
-- [netdrv] sfc: codespell comment spelling fixes (Jarod Wilson) [1199178]
-- [netdrv] sfc: use netdev_rss_key_fill() helper (Jarod Wilson) [1199178]
-- [netdrv] sfc: don't BUG_ON efx->max_channels == 0 in probe (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add NIC type operations to replace direct calls from efx.c into siena_sriov.c (Jarod Wilson) [1199178]
-- [netdrv] sfc: Rename implementations in siena_sriov.c to have a 'siena' prefix (Jarod Wilson) [1199178]
-- [netdrv] sfc: Move the current VF state from efx_nic into siena_nic_data (Jarod Wilson) [1199178]
-- [netdrv] sfc: remove incorrect EFX_BUG_ON_PARANOID check (Jarod Wilson) [1199178]
-- [netdrv] sfc: add support for skb->xmit_more (Jarod Wilson) [1199178]
-- [netdrv] sfc: fix addr_list_lock spinlock use before init (Jarod Wilson) [1199178]
-- [netdrv] sfc: Convert the normal transmit complete path to dev_consume_skb_any() (Jarod Wilson) [1199178]
-- [netdrv] sfc: Use ether_addr_copy and eth_broadcast_addr (Jarod Wilson) [1199178]
-- [netdrv] fm10k: Support for configurable RSS hash function (Neil Horman) [1173790]
-- [netdrv] fm10k: Add CONFIG_FM10K_VXLAN configuration option (Neil Horman) [1173790]
-- [netdrv] fm10k: Bump driver version to 0.15.2 (Neil Horman) [1173790]
-- [netdrv] fm10k: corrected VF multicast update (Neil Horman) [1173790]
-- [netdrv] fm10k: mbx_update_max_size does not drop all oversized messages (Neil Horman) [1173790]
-- [netdrv] fm10k: reset head instead of calling update_max_size (Neil Horman) [1173790]
-- [netdrv] fm10k: renamed mbx_tx_dropped to mbx_tx_oversized (Neil Horman) [1173790]
-- [netdrv] fm10k: update xcast mode before synchronizing multicast addresses (Neil Horman) [1173790]
-- [netdrv] fm10k: start service timer on probe (Neil Horman) [1173790]
-- [netdrv] fm10k: fix function header comment (Neil Horman) [1173790]
-- [netdrv] fm10k: comment next_vf_mbx flow (Neil Horman) [1173790]
-- [netdrv] fm10k: don't handle mailbox events in iov_event path and always process mailbox (Neil Horman) [1173790]
-- [netdrv] fm10k: use separate workqueue for fm10k driver (Neil Horman) [1173790]
-- [netdrv] fm10k: Set PF queues to unlimited bandwidth during virtualization (Neil Horman) [1173790]
-- [netdrv] fm10k: expose tx_timeout_count as an ethtool stat (Neil Horman) [1173790]
-- [netdrv] fm10k: only increment tx_timeout_count in Tx hang path (Neil Horman) [1173790]
-- [netdrv] fm10k: remove extraneous "Reset interface" message (Neil Horman) [1173790]
-- [netdrv] fm10k: separate PF only stats so that VF does not display them (Neil Horman) [1173790]
-- [netdrv] fm10k: use hw->mac.max_queues for stats (Neil Horman) [1173790]
-- [netdrv] fm10k: only show actual queues, not the maximum in hardware (Neil Horman) [1173790]
-- [netdrv] fm10k: allow creation of VLAN on default vid (Neil Horman) [1173790]
-- [netdrv] fm10k: fix unused warnings (Neil Horman) [1173790]
-- [netdrv] fm10k: Add netconsole support (Neil Horman) [1173790]
-- [netdrv] fm10k: Have the VF get the default VLAN during init (Neil Horman) [1173790]
-- [netdrv] fm10k: Correct spelling mistake (Neil Horman) [1173790]
-- [netdrv] fm10k: Remove redundant rx_errors in ethtool (Neil Horman) [1173790]
-- [netdrv] fm10k: Corrected an error in Tx statistics (Neil Horman) [1173790]
-- [netdrv] fm10k: Resolve various spelling errors and checkpatch warnings (Neil Horman) [1173790]
-- [netdrv] fm10k: Resolve compile warnings with W=1 (Neil Horman) [1173790]
-- [netdrv] fm10k: Validate VLAN ID in fm10k_update_xc_addr_pf (Neil Horman) [1173790]
-- [netdrv] fm10k: Increase the timeout for the data path reset (Neil Horman) [1173790]
-- [netdrv] fm10k: Check tunnel header length in encap offload (Neil Horman) [1173790]
-- [netdrv] fm10k: Avoid double setting of NETIF_F_SG for the HW encapsulation feature mask (Neil Horman) [1173790]
-- [netdrv] fm10k: Clean-up page reuse code (Neil Horman) [1173790]
-- [netdrv] fm10k: Use dma_rmb on Rx descriptor reads (Neil Horman) [1173790]
-- [netdrv] fm10k: Unlock mailbox on VLAN addition failures (Neil Horman) [1173790]
-- [netdrv] fm10k: Check the host state when bringing the interface up (Neil Horman) [1173790]
-- [netdrv] fm10k: fix race accessing page->_count (Neil Horman) [1173790]
-- [netdrv] fm10k: Correctly set the number of Tx queues (Neil Horman) [1173790]
-- [netdrv] fm10k: Reduce buffer size when pages are larger than 4K (Neil Horman) [1173790]
-- [netdrv] fm10k: using vmalloc requires including linux/vmalloc.h (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for PTP (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for ptp to hw specific files (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for debugfs (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for IEEE DCBx (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for SR-IOV to driver (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for SR-IOV to PF core files (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for VF (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for PF <-> VF mailbox (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for MACVLAN acceleration (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for netdev offloads (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for multiple queues (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for PCI power management and error handling (Neil Horman) [1173790]
-- [netdrv] fm10k: Add ethtool support (Neil Horman) [1173790]
-- [netdrv] fm10k: Add transmit and receive fastpath and interrupt handlers (Neil Horman) [1173790]
-- [netdrv] fm10k: Add Tx/Rx hardware ring bring-up/tear-down (Neil Horman) [1173790]
-- [netdrv] fm10k: Add service task to handle delayed events (Neil Horman) [1173790]
-- [netdrv] fm10k: add support for Tx/Rx rings (Neil Horman) [1173790]
-- [netdrv] fm10k: Add interrupt support (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for ndo_open/stop (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for L2 filtering (Neil Horman) [1173790]
-- [net] Add support for device specific address syncing (Neil Horman) [1173790]
-- [net] remove dead code for add/del multiple (Neil Horman) [1173790]
-- [netdrv] fm10k: Add netdev (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for configuring PF interface (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for PF (Neil Horman) [1173790]
-- [netdrv] fm10k: Implement PF <-> SM mailbox operations (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for mailbox (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for basic interaction with hardware (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for TLV message parsing and generation (Neil Horman) [1173790]
-- [netdrv] fm10k: Add register defines and basic structures (Neil Horman) [1173790]
-- [netdrv] fm10k: Add skeletal frame for Intel(R) FM10000 Ethernet Switch Host Interface Driver (Neil Horman) [1173790]
-- [netdrv] qlcnic: Fix trivial typo in comment (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Delete existing multicast MAC list before adding new (Chad Dupuis) [1187297]
-- [netdrv] qlogic: Deletion of unnecessary checks before two function calls (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix NAPI poll routine for Tx completion (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix dump_skb output (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix return value in qlcnic_probe() (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix number of arguments in destroy tx context command (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix programming number of arguments in a command (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix ordering of stats in stats buffer (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Remove __QLCNIC_DEV_UP bit check to read TX queues statistics (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix memory corruption while reading stats using ethtool (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Use qlcnic_83xx_flash_read32() API instead of lockless version of the API (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Set skb->csum_level for encapsulated checksum (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Update version to 5.3.62 (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Add support to run firmware POST (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Use usleep_range() instead of msleep() for sleep less than 20ms (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Add support for 0x8830 device ID (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Update Link speed and port type info for 83xx adapter (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix endianess issue in firmware load from file operation (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix endianess issue in FW dump template header (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix flash access interface to application (Chad Dupuis) [1187297]
-
-* Thu Jun 25 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-281.el7]
-- [scsi] megaraid: initialise block layer for using tagged commands (Tomas Henzl) [1234834]
-- [x86] irq: Fix bug in setting IOAPIC pin attributes (Steve Best) [1231358 1234860]
-- [x86] mm: Fix missing change to call of flush_tlb_others() in flush_tlb_mm_range() (Larry Woodman) [1172891]
-- [net] svcrpc: fix potential GSSX_ACCEPT_SEC_CONTEXT decoding failures (Scott Mayhew) [1120860]
-- [md] dm-space-map-metadata: fix occasional leak of a metadata block on resize (Mike Snitzer) [1222004]
-- [md] dm-thin-metadata: fix a race when entering fail mode (Mike Snitzer) [1222004]
-- [md] dm-thin: fail messages with EOPNOTSUPP when pool cannot handle messages (Mike Snitzer) [1222004]
-- [md] dm-thin: range discard support (Mike Snitzer) [1222004]
-- [md] dm-thin-metadata: add dm_thin_remove_range() (Mike Snitzer) [1222004]
-- [md] dm-thin-metadata: add dm_thin_find_mapped_range() (Mike Snitzer) [1222004]
-- [md] dm-btree: add dm_btree_remove_leaves() (Mike Snitzer) [1222004]
-- [md] dm-thin: cleanup schedule_zero() to read more logically (Mike Snitzer) [1222004]
-- [md] dm-thin: cleanup overwrite's endio restore to be centralized (Mike Snitzer) [1222004]
-- [md] bio: fix kABI breakage when __bi_remaining was added to struct bio (Mike Snitzer) [1222004]
-- [md] bio: extend struct bio with RHEL-specific struct bio_aux (Mike Snitzer) [1222004]
-- [md] block: remove management of bi_remaining when restoring original bi_end_io (Mike Snitzer) [1222004]
-- [md] bio: skip atomic inc_dec of ->bi_remaining for non-chains (Mike Snitzer) [1222004]
-- [md] block: remove unused BIO_RW_BLOCK and BIO_EOF flags (Mike Snitzer) [1222004]
-- [md] block: Fix BUG_ON when pi errors occur (Mike Snitzer) [1222004]
-- [md] dm-raid1: fix immutable biovec related BUG when retrying read bio (Mike Snitzer) [1222004]
-- [md] btrfs: fix wrong error handle when the device is missing or is not writeable (Mike Snitzer) [1222004]
-- [md] btrfs: fix deadlock when mounting a degraded fs (Mike Snitzer) [1222004]
-- [md] btrfs: use bio_endio_nodec instead of open code (Mike Snitzer) [1222004]
-- [md] btrfs: fix missing increment of bi_remaining (Mike Snitzer) [1222004]
-- [md] block: fixup for generic bio chaining (Mike Snitzer) [1222004]
-- [md] block: Generic bio chaining (Mike Snitzer) [1222004]
-- [vhost] relax used address alignment (Thomas Huth) [1227341]
-- [virtio] virtio_ring: document alignment requirements (Thomas Huth) [1227341]
-- [s390] pci: fix possible information leak in mmio syscall (Hendrik Brueckner) [1182169]
-- [s390] pci: add missing address space annotation (Hendrik Brueckner) [1182169]
-- [s390] kernel: add system calls for PCI memory access (Hendrik Brueckner) [1182169]
-- [s390] hmcdrv: HMC drive CD/DVD access (Hendrik Brueckner) [1182294]
-- [s390] irq: Use defines for external interruption codes (Hendrik Brueckner) [1182294]
-- [s390] irq: Add defines for external interruption codes (Hendrik Brueckner) [1182294]
-- [vfio] Fix runaway interruptible timeout (Alex Williamson) [1211739]
-- [vfio] vfio-pci: Log device requests more verbosely (Alex Williamson) [1211739]
-- [vfio] pci: Fix racy vfio_device_get_from_dev() call (Alex Williamson) [1230362]
-- [scsi] iscsi: Fix iscsi endpoints leak (Chris Leech) [1231606]
-- [scsi] libiscsi: fix potential buffer overrun in (Chris Leech) [1231606]
-- [scsi] iscsi_tcp: export port being used (Chris Leech) [1231606]
-- [scsi] iscsi_class: Fix freeing of skb in get host error path (Chris Leech) [1231606]
-- [scsi] libiscsi: return new error code when nop times out (Chris Leech) [1231606]
-- [scsi] iscsi_class: fix get_host_stats return code when not (Chris Leech) [1231606]
-- [scsi] iscsi_class: fix get_host_stats error handling (Chris Leech) [1231606]
-- [scsi] iscsi: kill redundant casts (Chris Leech) [1231606]
-- [scsi] libiscsi: Fix static checker warning on bh locking (Chris Leech) [1231606]
-- [scsi] iscsi_tcp: check for valid session before accessing (Chris Leech) [1231606]
-- [scsi] iscsi_boot_sysfs: Fix a memory leak in (Chris Leech) [1231606]
-- [scsi] libiscsi: remove unneeded queue work when max_cmdsn is (Chris Leech) [1231606]
-- [scsi] libiscsi: Reduce locking contention in fast path (Chris Leech) [1231606]
-- [scsi] libiscsi: Restructure iscsi_tcp r2t response logic (Chris Leech) [1231606]
-- [scsi] iscsi: fix wrong order of opcode and itt in (Chris Leech) [1231606]
-- [scsi] libiscsi: Add local_ipaddr parameter in iscsi_conn (Chris Leech) [1231606]
-- [net] rename local_df to ignore_df (Jiri Benc) [1200759]
-- [net] netlink: implement nla_get_in_addr and nla_get_in6_addr (Jiri Benc) [1200759]
-- [net] netlink: implement nla_put_in_addr and nla_put_in6_addr (Jiri Benc) [1200759]
-- [net] xfrm: simplify xfrm_address_t use (Jiri Benc) [1200759]
-- [net] tcp: simplify inetpeer_addr_base use (Jiri Benc) [1200759]
-- [net] Introduce possible_net_t (Jiri Benc) [1200759]
-- [net] Replace u64_stats_fetch_begin_bh to u64_stats_fetch_begin_irq (Jiri Benc) [1200759]
-- [net] Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool (Ivan Vecera) [1200759]
-- [net] gro: add a per device gro flush timer (Ivan Vecera) [1200759]
-- [net] introduce extended napi_struct (Ivan Vecera) [1200759]
-- [net] xfrm: announce deleation of temporary SA (Herbert Xu) [1210334]
-- [net] rtnetlink: fix userspace API breakage for iproute2 < v3.9.0 (Michal Schmidt) [1191660]
-- [net] netlink: rate-limit leftover bytes warning and print process name (Michal Schmidt) [1191660]
-- [net] tcp: RFC7413 option support for Fast Open client (Marcelo Leitner) [1219204]
-- [net] tcp: RFC7413 option support for Fast Open server (Marcelo Leitner) [1219204]
-- [net] tcp: fix saving TX flow hash in sock for outgoing connections (Ivan Vecera) [1215920]
-- [net] flow_dissector: Call skb_get_hash in get_xps_queue and __skb_tx_hash (Ivan Vecera) [1215920]
-- [net] ipv6: provide stubs for ip6_set_txhash and ip6_make_flowlabel (Ivan Vecera) [1215920]
-- [net] ip: Save TX flow hash in sock and set in skbuf on xmit (Ivan Vecera) [1215920]
-- [net] flow_dissector: Abstract out hash computation (Ivan Vecera) [1215920]
-- [net] Rename skb->rxhash to skb->hash (Ivan Vecera) [1215920]
-- [netdrv] sky2: sky2 calls skb_set_hash (Ivan Vecera) [1215920]
-- [netdrv] cxgb4: cxgb4 calls skb_set_hash (Ivan Vecera) [1215920]
-- [net] flow_dissector: initialize hashrnd in flow_dissector with net_get_random_once (Ivan Vecera) [1215920]
-- [net] netfilter: x_tables: avoid percpu ruleset duplication (Phil Sutter) [1231910]
-- [net] netfilter: x_tables: xt_free_table_info() cleanup (Phil Sutter) [1231910]
-- [net] netfilter: x_tables: use percpu rule counters (Phil Sutter) [1231910]
-- [net] fix wrong mac_len calculation for vlans (Vlad Yasevich) [1135619]
-- [net] Start with correct mac_len in skb_network_protocol (Vlad Yasevich) [1135619]
-- [net] Account for all vlan headers in skb_mac_gso_segment (Vlad Yasevich) [1135619]
-- [net] vti6: Add pmtu handling to vti6_xmit (Alexander Duyck) [1129761]
-- [net] vti, vti6: Preserve skb->mark after rcv_cb call (Alexander Duyck) [1129761]
-- [net] xfrm: Override skb->mark with tunnel->parm.i_key in xfrm_input (Alexander Duyck) [1129761]
-- [net] vti, vti6: Do not touch skb->mark on xmit (Alexander Duyck) [1129761]
-- [net] ip_tunnel: Report Rx dropped in ip_tunnel_get_stats64 (Alexander Duyck) [1129761]
-- [net] vti6: implement ndo_get_iflink (Alexander Duyck) [1129761]
-- [net] vti6: advertise link netns via netlink (Alexander Duyck) [1129761]
-- [net] ah6: Use the IPsec protocol multiplexer API (Alexander Duyck) [1129761]
-- [net] ipcomp6: Use the IPsec protocol multiplexer API (Alexander Duyck) [1129761]
-- [net] esp6: Use the IPsec protocol multiplexer API (Alexander Duyck) [1129761]
-- [net] esp: fix potential MTU calculation overflows (Alexander Duyck) [1129761]
-- [net] vti: Simplify error handling in module init and exit (Alexander Duyck) [1129761]
-- [net] xfrm6: Properly handle unsupported protocols (Alexander Duyck) [1129761]
-- [net] vti6: fix uninit when using x-netns (Alexander Duyck) [1129761]
-- [net] vti6: Add a lookup method for tunnels with wildcard endpoints (Alexander Duyck) [1129761]
-- [net] vti6: Allow sending packets through tunnels with wildcard endpoints (Alexander Duyck) [1129761]
-- [net] vti6: Use vti6_dev_init as the ndo_init function (Alexander Duyck) [1129761]
-- [net] better IFF_XMIT_DST_RELEASE support (Alexander Duyck) [1129761]
-- [net] move net_device priv_flags out from UAPI (Alexander Duyck) [1129761]
-- [net] kdoc struct net_device flags and priv_flags (Alexander Duyck) [1129761]
-- [net] vti6: Return an error when adding an existing tunnel (Alexander Duyck) [1129761]
-- [net] vti6: Simplify error handling in module init and exit (Alexander Duyck) [1129761]
-- [net] vti6: delete unneeded call to netdev_priv (Alexander Duyck) [1129761]
-- [net] vti6: Use the tunnel mark for lookup in the error handlers (Alexander Duyck) [1129761]
-- [net] vti6: Don't unregister pernet ops twice on init errors (Alexander Duyck) [1129761]
-- [net] vti6: Enable namespace changing (Alexander Duyck) [1129761]
-- [net] vti6: Check the tunnel endpoints of the xfrm state and the vti interface (Alexander Duyck) [1129761]
-- [net] vti6: Support inter address family tunneling (Alexander Duyck) [1129761]
-- [net] vti6: Update the ipv6 side to use its own receive hook (Alexander Duyck) [1129761]
-- [net] xfrm6: Add IPsec protocol multiplexer (Alexander Duyck) [1129761]
-- [net] xfrm: Introduce xfrm_input_afinfo to access the the callbacks properly (Alexander Duyck) [1129761]
-- [net] vti6: Remove caching of flow informations (Alexander Duyck) [1129761]
-- [net] vti6: Remove dst_entry caching (Alexander Duyck) [1129761]
-- [net] vti6: unify the pcpu_tstats and br_cpu_netstats as one (Alexander Duyck) [1129761]
-- [net] ipv6: fix the use of pcpu_tstats in ip6_vti.c (Alexander Duyck) [1129761]
-- [net] ip_tunnel: the lack of vti_link_ops' dellink() cause kernel panic (Alexander Duyck) [1129761]
-- [net] ipv6: Add support for IPsec virtual tunnel interfaces (Alexander Duyck) [1129761]
-- [net] ipv6: Add a receive path hook for vti6 in xfrm6_mode_tunnel (Alexander Duyck) [1129761]
-- [netdrv] netxen_nic: use spin_[un]lock_bh around tx_clean_lock (2) (Tony Camuso) [1217748]
-- [netdrv] netxen_nic: use spin_[un]lock_bh around tx_clean_lock (Tony Camuso) [1217748]
-
-* Wed Jun 24 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-280.el7]
-- [block] xen-blkfront: fix accounting of reqs when migrating (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: remove redundant flush_op (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: improve protection against issuing unsupported REQ_FUA (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: factor out flush-related checks from do_blkif_request() (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: remove type check from blkfront_setup_discard (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkif: drop struct blkif_request_segment_aligned (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: Fix possible NULL ptr dereference (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: Silence pfn maybe-uninitialized warning (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: restore the non-persistent data path (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: improve aproximation of required grants per request (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: revoke foreign access for grants not mapped by the backend (Vitaly Kuznetsov) [1096909]
-- [netdrv] e1000e: Bump the version to 3.2.5 (John Greene) [1173782]
-- [netdrv] e1000e: fix unit hang during loopback test (John Greene) [1173782]
-- [netdrv] e1000e: fix systim issues (John Greene) [1173782]
-- [netdrv] e1000e: fix legacy interrupt handling in i219 (John Greene) [1173782]
-- [netdrv] e1000e: fix flush_desc_ring implementation (John Greene) [1173782]
-- [netdrv] e1000e: fix logical error in flush_desc_rings (John Greene) [1173782]
-- [netdrv] e1000e: remove call to do_div and sign mismatch warning (John Greene) [1173782]
-- [netdrv] e1000e: i219 execute unit hang fix on every reset or power state transition (John Greene) [1173782]
-- [netdrv] e1000e: i219 fix unit hang on reset and runtime D3 (John Greene) [1173782]
-- [netdrv] e1000e: Add pm_qos header (John Greene) [1173782]
-- [netdrv] e1000e: fix call to do_div() to use u64 arg (John Greene) [1173782]
-- [netdrv] e1000e: Do not allow CRC stripping to be disabled on 82579 w/ jumbo frames (John Greene) [1173782]
-- [netdrv] e1000e: Cleanup handling of VLAN_HLEN as a part of max frame size (John Greene) [1173782]
-- [netdrv] e1000e: Use dma_rmb instead of rmb for descriptor read ordering (John Greene) [1173782]
-- [netdrv] e1000e: NVM write protect access removed from SPT HW (John Greene) [1173782]
-- [netdrv] e1000e: call netif_carrier_off early on down (John Greene) [1173782]
-- [netdrv] e1000e: remove calls to ioremap/unmap for NVM addr (John Greene) [1173782]
-- [netdrv] e1000e: fix obscure comments (John Greene) [1173782]
-- [netdrv] e1000e: initial support for i219 (John Greene) [1173782]
-- [netdrv] e1000e: support txtd update delay via xmit_more (John Greene) [1173782]
-- [netdrv] e1000e: Use eth_skb_pad and skb_put_padto helpers (John Greene) [1173782]
-- [netdrv] e1000e: Eliminate CONFIG_PM_RUNTIME (John Greene) [1173782]
-- [netdrv] e1000e: use netdev_rss_key_fill() helper (John Greene) [1173782]
-- [netdrv] e1000e: Cleanup return values in ethtool (John Greene) [1173782]
-- [netdrv] e1000e: delete excessive space character in debug message (John Greene) [1173782]
-- [netdrv] e1000e: fix trivial kernel doc typos (John Greene) [1173782]
-- [virtio] Add virtio-input driver (Gerd Hoffmann) [1231743]
-- [kvm] ioapic: Record edge-triggered interrupts delivery status (Gerd Hoffmann) [1173817]
-- [kernel] sched: Fix KMALLOC_MAX_SIZE overflow during cpumask allocation (Frank Ramsay) [1209156]
-- [x86] kvm: fix lapic.timer_mode on restore (Radim Krcmar) [1228342]
-- [pci] Add ACS quirks for Intel 1G NICs (Alex Williamson) [1176512]
-- [mfd] lpc_ich: Assign subdevice ids automatically (Prarit Bhargava) [1231296]
-- [x86] kernel: Load TLS descriptors before switching DS and ES (Adrian Reber) [1223330] {CVE-2014-9419}
-- [powerpc] kvm: Correct backport of h_logical_ci_{load, store} (David Gibson) [1229952]
-- [powerpc] rcu: Make list_splice_init_rcu() account for RCU readers (David Gibson) [1232550]
-- [powerpc] powernv: Remove powernv RTAS support (David Gibson) [1232550]
-- [powerpc] powernv/iommu: disable IOMMU bypass with param iommu=nobypass (David Gibson) [1232550]
-- [powerpc] pseries: Avoid deadlock on removing ddw (David Gibson) [1232550]
-- [powerpc] iommu: Remove IOMMU device references via bus notifier (David Gibson) [1232550]
-- [powerpc] powernv: Use it_page_shift for TCE invalidation (David Gibson) [1232550]
-- [powerpc] powernv: Use it_page_shift in TCE build (David Gibson) [1232550]
-- [powerpc] iommu: Fix comments with it_page_shift (David Gibson) [1232550]
-- [powerpc] powernv: Shift VF resource with an offset (David Gibson) [1232550]
-- [powerpc] powernv: Set PELTV for compound PEs (David Gibson) [1232550]
-- [powerpc] powernv: Reserve additional space for IOV BAR according to the number of total_pe (David Gibson) [1232550]
-- [powerpc] pci: Keep individual VF BAR size in struct pci_sriov (David Gibson) [1232550]
-- [powerpc] pci: Remove fixed parameter in pci_iov_resource_bar() (David Gibson) [1232550]
-- [powerpc] pci: Print PF SR-IOV resource that contains all VF(n) BAR space (David Gibson) [1232550]
-- [powerpc] pci-ioda: Use a single function to emit logging messages (David Gibson) [1232550]
-- [powerpc] pci-ioda: Remove unnecessary return value from printk (David Gibson) [1232550]
-- [powerpc] powernv: Allocate struct pnv_ioda_pe iommu_table dynamically (David Gibson) [1232550]
-- [powerpc] add real mode support for dma operations on powernv (David Gibson) [1232550]
-- [powerpc] powernv: Add a page size parameter to pnv_pci_setup_iommu_table() (David Gibson) [1232550]
-- [powerpc] powernv: only register log if OPAL supports doing so (Gustavo Duarte) [1221918]
-- [powerpc] powernv: only call OPAL_ELOG_RESEND if firmware supports it (Gustavo Duarte) [1221918]
-- [powerpc] powernv: Check OPAL elog calls exist before using (Gustavo Duarte) [1221918]
-- [powerpc] powernv: fix world-writable sysfs files (Gustavo Duarte) [1221918]
-- [powerpc] powernv: only call OPAL_RESEND_DUMP if firmware supports it (Gustavo Duarte) [1221918]
-- [powerpc] powernv: Check OPAL dump calls exist before using (Gustavo Duarte) [1221918]
-- [powerpc] powernv: Improve error messages in dump code (Gustavo Duarte) [1221918]
-- [powerpc] powernv: fix world-writable sysfs files (0/8) (Gustavo Duarte) [1221918]
-- [perf] probe: Ignore tail calls to probed functions (Gustavo Duarte) [1223850]
-- [perf] probe: ppc64le: Fixup function entry if using kallsyms lookup (Gustavo Duarte) [1223850]
-- [perf] probe: ppc64le: Prefer symbol table lookup over DWARF (Gustavo Duarte) [1223850]
-- [perf] probe: ppc64le: Fix ppc64 ABIv2 symbol decoding (Gustavo Duarte) [1223850]
-- [perf] probe: ppc: Enable matching against dot symbols automatically (Gustavo Duarte) [1223850]
-- [perf] probe: ppc: Use the right prefix when ignoring SyS symbols on ppc (Gustavo Duarte) [1223850]
-- [perf] probe: ppc: Fix symbol fixup issues due to ELF type (Gustavo Duarte) [1223850]
-- [perf] probe: Improve detection of file/function name in the probe: pattern (Gustavo Duarte) [1223850]
-- [perf] powerpc/kprobes: Fix kallsyms lookup across powerpc ABIv1 and ABIv2 (Gustavo Duarte) [1223850]
-- [powerpc] eeprom: at24: extend driver to allow writing via i2c_smbus_write_byte_data (Gustavo Duarte) [1221093]
-- [powerpc] misc/at24: avoid infinite loop on write() (Gustavo Duarte) [1221093]
-- [powerpc] misc: at24: move header to linux/platform_data/ (Gustavo Duarte) [1221093]
-- [powerpc] drivers/misc: at24: convert to use devm_kzalloc (Gustavo Duarte) [1221093]
-- [hwmon] config: Enable IBM POWERNV platform sensors for ppc64le (Gustavo Duarte) [1224367]
-- [hwmon] powerpc/powernv: handle OPAL_SUCCESS return in opal_sensor_read (Gustavo Duarte) [1224367]
-- [hwmon] powerpc/powernv: convert codes returned by OPAL calls (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Fix build error seen for some configurations (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: pretty print labels (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add a label attribute (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add support for the new device tree (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add a helper routine create_hwmon_attr (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: do not use the OPAL index for hwmon attribute names (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: change create_hwmon_attr_name() prototype (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add a convert_opal_attr_name() routine (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add a get_sensor_type() routine (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: replace AMBIENT_TEMP by TEMP (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Convert to module_platform_driver (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Use platform 'id_table' to probe the device (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Quieten when probing finds no device (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Use of_property_read_u32 at appropriate place (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: hwmon driver for power, fan rpm, voltage and temperature (Gustavo Duarte) [1224367]
-- [powerpc] kvm: book3s: hv: Fix an issue where guest is paused on receiving HMI (Gustavo Duarte) [1221091]
-- [powerpc] powernv: Fix the hmi event version check (Gustavo Duarte) [1221091]
-- [powerpc] powernv: Fallback to old HMI handling behavior for old firmware (Gustavo Duarte) [1221091]
-- [powerpc] book3s: Don't clear MSR_RI in hmi handler (Gustavo Duarte) [1221091]
-- [powerpc] use machine_subsys_initcall() for opal_hmi_handler_init() (Gustavo Duarte) [1221091]
-- [powerpc] book3s: Fix endianess issue for HMI handling on napping cpus (Gustavo Duarte) [1221091]
-- [powerpc] book3s: handle HMIs for cpus in nap mode (Gustavo Duarte) [1221091]
-- [powerpc] powernv: Invoke opal call to handle hmi (Gustavo Duarte) [1221091]
-- [powerpc] book3s: Add basic infrastructure to handle HMI in Linux (Gustavo Duarte) [1221091]
-- [i2c] move OF helpers into the core (Gustavo Duarte) [1221075]
-- [i2c] Improve logging on failure to probe for ->class devices (Gustavo Duarte) [1221075]
-- [i2c] add sanity check to i2c_put_adapter (Gustavo Duarte) [1221075]
-- [i2c] opal: Update quirk flags to do write-then-anything (Gustavo Duarte) [1221075]
-- [i2c] opal: make use of the new infrastructure for quirks (Gustavo Duarte) [1221075]
-- [i2c] add quirk checks to core (Gustavo Duarte) [1221075]
-- [i2c] add quirk structure to describe adapter flaws (Gustavo Duarte) [1221075]
-- [i2c] Driver to expose PowerNV platform i2c busses (Gustavo Duarte) [1221075]
-
-* Wed Jun 24 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-279.el7]
-- [fs] vfs: atomic f_pos access in llseek() (Zach Brown) [1175954]
-- [fs] vfs: atomic f_pos accesses as per POSIX (Zach Brown) [1175954]
-- [fs] nfs: remove WARN_ON_ONCE from nfs_direct_good_bytes (Steve Dickson) [1217590]
-- [fs] nfs: fix DIO good bytes calculation (Steve Dickson) [1217590]
-- [fs] pnfs: Refactor the *_layout_mark_request_commit to use pnfs_layout_mark_request_commit (Steve Dickson) [1217590]
-- [fs] sunrpc: Fix a compile error when #undef CONFIG_PROC_FS (Steve Dickson) [1217590]
-- [fs] pnfs/flexfiles: Do not dprintk after the free (Steve Dickson) [1217590]
-- [fs] nfs: mirroring support for direct io (Steve Dickson) [1217590]
-- [fs] pnfs: lookup new lseg at lseg boundary (Steve Dickson) [1217590]
-- [fs] nfs41: .init_read and .init_write can be called with valid pg_lseg (Steve Dickson) [1217590]
-- [fs] pnfs: Update documentation on the Layout Drivers (Steve Dickson) [1217590]
-- [fs] pnfs/flexfiles: Add the FlexFile Layout Driver (Steve Dickson) [1217590]
-- [fs] nfs: count DIO good bytes correctly with mirroring (Steve Dickson) [1217590]
-- [fs] nfs41: wait for LAYOUTRETURN before retrying LAYOUTGET (Steve Dickson) [1217590]
-- [fs] nfs: add a helper to set NFS_ODIRECT_RESCHED_WRITES to direct writes (Steve Dickson) [1217590]
-- [fs] nfs41: add NFS_LAYOUT_RETRY_LAYOUTGET to layout header flags (Steve Dickson) [1217590]
-- [fs] nfs/flexfiles: send layoutreturn before freeing lseg (Steve Dickson) [1217590]
-- [fs] nfs41: introduce NFS_LAYOUT_RETURN_BEFORE_CLOSE (Steve Dickson) [1217590]
-- [fs] nfs41: allow async version layoutreturn (Steve Dickson) [1217590]
-- [fs] nfs41: add range to layoutreturn args (Steve Dickson) [1217590]
-- [fs] pnfs: allow LD to ask to resend read through pnfs (Steve Dickson) [1217590]
-- [fs] nfs: add nfs_pgio_current_mirror helper (Steve Dickson) [1217590]
-- [fs] nfs: only reset desc->pg_mirror_idx when mirroring is supported (Steve Dickson) [1217590]
-- [fs] nfs41: add a debug warning if we destroy an unempty layout (Steve Dickson) [1217590]
-- [fs] pnfs: fail comparison when bucket verifier not set (Steve Dickson) [1217590]
-- [fs] nfs: add mirroring support to pgio layer (Steve Dickson) [1217590]
-- [fs] pnfs: pass ds_commit_idx through the commit path (Steve Dickson) [1217590]
-- [fs] nfs: rename pgio header ds_idx to ds_commit_idx (Steve Dickson) [1217590]
-- [fs] nfs: handle overlapping reqs in lock_and_join (Steve Dickson) [1217590]
-- [fs] pnfs: release lseg in pnfs_generic_pg_cleanup (Steve Dickson) [1217590]
-- [fs] nfs: introduce pg_cleanup op for pgio descriptors (Steve Dickson) [1217590]
-- [fs] nfs/filelayout: use pnfs_error_mark_layout_for_return (Steve Dickson) [1217590]
-- [fs] nfs41: clear NFS_LAYOUT_RETURN if layoutreturn is sent or failed to send (Steve Dickson) [1217590]
-- [fs] nfs41: send layoutreturn in last put_lseg (Steve Dickson) [1217590]
-- [fs] nfs41: don't use a layout if it is marked for returning (Steve Dickson) [1217590]
-- [fs] nfs41: add a helper to mark layout for return (Steve Dickson) [1217590]
-- [fs] nfs41: make a helper function to send layoutreturn (Steve Dickson) [1217590]
-- [fs] nfs41: pass iomode through layoutreturn args (Steve Dickson) [1217590]
-- [fs] nfs: save server READ/WRITE/COMMIT status (Steve Dickson) [1217590]
-- [fs] nfs41: serialize first layoutget of a file (Steve Dickson) [1217590]
-- [fs] nfs41: close a small race window when adding new layout to global list (Steve Dickson) [1217590]
-- [fs] nfs/flexclient: export pnfs_layoutcommit_inode (Steve Dickson) [1217590]
-- [fs] nfs: set hostname when creating nfsv3 ds connection (Steve Dickson) [1217590]
-- [fs] sunrpc: add rpc_count_iostats_idx (Steve Dickson) [1217590]
-- [fs] sunrpc: serialize iostats updates (Steve Dickson) [1217590]
-- [fs] nfsv4.1/nfsv3: Add pNFS callbacks for nfs3_(read|write|commit)_done() (Steve Dickson) [1217590]
-- [fs] nfs: allow to specify cred in nfs_initiate_pgio (Steve Dickson) [1217590]
-- [fs] nfs4: export nfs4_sequence_done (Steve Dickson) [1217590]
-- [fs] nfs4: pass slot table to nfs40_setup_sequence (Steve Dickson) [1217590]
-- [fs] nfs: allow different protocol in nfs_initiate_commit (Steve Dickson) [1217590]
-- [fs] pnfs: Add nfs_rpc_ops in calls to nfs_initiate_pgio (Steve Dickson) [1217590]
-- [fs] nfs41: create NFSv3 DS connection if specified (Steve Dickson) [1217590]
-- [fs] nfs41: allow LD to choose DS connection version/minor_version (Steve Dickson) [1217590]
-- [fs] nfsv3: introduce nfs3_set_ds_client (Steve Dickson) [1217590]
-- [fs] nfs41: move file layout macros to generic pnfs (Steve Dickson) [1217590]
-- [fs] nfs41: allow LD to choose DS connection auth flavor (Steve Dickson) [1217590]
-- [fs] nfs41: pull nfs4_ds_connect from file layout to generic pnfs (Steve Dickson) [1217590]
-- [fs] nfs41: pull decode_ds_addr from file layout to generic pnfs (Steve Dickson) [1217590]
-- [fs] nfs41: pull data server cache from file layout to generic pnfs (Steve Dickson) [1217590]
-- [fs] pnfs: Do not grab the commit_info lock twice when rescheduling writes (Steve Dickson) [1217590]
-- [fs] pnfs: Prepare for flexfiles by pulling out common code (Steve Dickson) [1217590]
-- [fs] cifs: Fix readpages retrying on reconnects (Sachin Prabhu) [1197696]
-- [fs] Update cifs version (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix STATUS_CANNOT_DELETE error mapping for SMB2 (Sachin Prabhu) [1197696]
-- [fs] cifs: Optimize readpages in a short read case on reconnects (Sachin Prabhu) [1197696]
-- [fs] cifs: Optimize cifs_user_read() in a short read case on reconnects (Sachin Prabhu) [1197696]
-- [fs] cifs: Improve indentation in cifs_user_read() (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix possible buffer corruption in cifs_user_read() (Sachin Prabhu) [1197696]
-- [fs] cifs: Count got bytes in read_into_pages() (Sachin Prabhu) [1197696]
-- [fs] cifs: Use separate var for the number of bytes got in async read (Sachin Prabhu) [1197696]
-- [fs] cifs: Indicate reconnect with ECONNABORTED error code (Sachin Prabhu) [1197696]
-- [fs] cifs: Use multicredits for SMB 2.1/3 reads (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix rsize usage for sync read (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix rsize usage in user read (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate page reading from user read (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix rsize usage in readpages (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate page search from readpages (Sachin Prabhu) [1197696]
-- [fs] cifs: Use multicredits for SMB 2.1/3 writes (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix wsize usage in iovec write (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate writing from iovec write (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate filling pages from iovec write (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix cifs_writev_requeue when wsize changes (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix wsize usage in writepages (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate pages initialization from writepages (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate page sending from writepages (Sachin Prabhu) [1197696]
-- [fs] Remove sparse build warning (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate page processing from writepages (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix async reading on reconnects (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate rawntlmssp auth from CIFS_SessSetup() (Sachin Prabhu) [1197696]
-- [fs] cifs: Split Kerberos authentication off CIFS_SessSetup() (Sachin Prabhu) [1197696]
-- [fs] cifs: Split ntlm and ntlmv2 authentication methods off CIFS_SessSetup() (Sachin Prabhu) [1197696]
-- [fs] cifs: Split lanman auth from CIFS_SessSetup() (Sachin Prabhu) [1197696]
-- [fs] cifs: replace code with free_rsp_buf() (Sachin Prabhu) [1197696]
-- [fs] fix mount failure with broken pathnames when smb3 mount with mapchars option (Sachin Prabhu) [1197696]
-- [fs] cifs: revalidate mapping prior to satisfying read_iter request with cache=loose (Sachin Prabhu) [1197696]
-- [fs] cifs: switch to ->write_iter() (Sachin Prabhu) [1197696]
-- [fs] cifs: switch to ->read_iter() (Sachin Prabhu) [1197696]
-- [fs] kill iov_iter_copy_from_user() (Partial) (Sachin Prabhu) [1197696]
-- [fs] cifs: Use min_t() when comparing "size_t" and "unsigned long" (Sachin Prabhu) [1197696]
-- [fs] fold cifs_iovec_read() into its (only) caller (Sachin Prabhu) [1197696]
-- [fs] cifs_iovec_read: keep iov_iter between the calls of cifs_readdata_to_iov() (Sachin Prabhu) [1197696]
-- [fs] cifs: Add helpers copy_page_from_iter(), copy_page_to_iter() and iov_iter_truncate() (Sachin Prabhu) [1197696]
-- [fs] cifs_iovec_read(): resubmit shouldn't restart the loop (Sachin Prabhu) [1197696]
-- [fs] gfs2: limit quota log messages (Abhijith Das) [1174295]
-- [fs] gfs2: fix quota updates on block boundaries (Abhijith Das) [1174295]
-- [fs] gfs2: fix quota refresh race in do_glock() (Abhijith Das) [1174295]
-- [fs] gfs2: allow fallocate to max out quotas/fs efficiently (Abhijith Das) [1174295]
-- [fs] gfs2: allow quota_check and inplace_reserve to return available blocks (Abhijith Das) [1174295]
-- [fs] gfs2: perform quota checks against allocation parameters (Abhijith Das) [1174295]
-
-* Tue Jun 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-278.el7]
-- [alsa] regmap: regcache-rbtree: Fix present bitmap resize (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: improve 64bits memory alignment (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Make cache_present bitmap per node (Jaroslav Kysela) [1197064]
-- [alsa] regmap: Add support for discarding parts of the register cache (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Reduce number of nodes, take 2 (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Simplify adjacent node look-up (Jaroslav Kysela) [1197064]
-- [alsa] regcache-rbtree: Fix reg_stride != 1 (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Use range information to allocate nodes (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Factor out node allocation (Jaroslav Kysela) [1197064]
-- [alsa] pci/msi: Add device flag indicating that 64-bit MSIs don't work (Jaroslav Kysela) [1197064]
-- [alsa] pm: Add pm_runtime_suspend|resume_force functions (Jaroslav Kysela) [1197064]
-- [alsa] pm / runtime: Implement the pm_generic_runtime functions for CONFIG_PM (Jaroslav Kysela) [1197064]
-- [alsa] pm / runtime: Fetch runtime PM callbacks using a macro (Jaroslav Kysela) [1197064]
-- [alsa] pm / runtime: Respect autosuspend when idle triggers suspend (Jaroslav Kysela) [1197064]
-- [alsa] drm/i915/audio: add codec wakeup override enabled/disable callback (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix number of devices query on hotplug (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add native DSD support for JLsounds I2SoverUSB (Jaroslav Kysela) [1197064]
-- [alsa] hda - remove controller dependency on i915 power well for SKL (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: fix missing input volume controls in MAYA44 USB(+) (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add MAYA44 USB+ mixer control names (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add a fixup for another Acer Aspire 9420 (Jaroslav Kysela) [1197064]
-- [alsa] hda - moved alloc/free stream pages function to controller library (Jaroslav Kysela) [1197064]
-- [alsa] hda - add generic functions to set hdac stream params (Jaroslav Kysela) [1197064]
-- [alsa] Close holes in struct snd_pcm_constraint_list (Jaroslav Kysela) [1197064]
-- [alsa] Close holes in struct snd_pcm_hw_rule (Jaroslav Kysela) [1197064]
-- [alsa] core: remove .wall_clock (Jaroslav Kysela) [1197064]
-- [alsa] core: selection of audio_tstamp type and accuracy reports (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix jack detection at resume with VT codecs (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: don't try to get Outlaw RR2150 sample rate (Jaroslav Kysela) [1197064]
-- [alsa] jack: Fix the id uniqueness check (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add mic volume fix quirk for Logitech Quickcam Fusion (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Suooprt Dell headset mode for ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set patch_ops before calling auto-parser (Jaroslav Kysela) [1197064]
-- [alsa] pci: Drop superfluous ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Fix/cleanup ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] cs46xx: Fix old ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] ca0106: Fix/cleanup ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] ac97: Fix ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] ak4xxx-adda: Drop unnecessary ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] opl4: Fix / cleanup ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] dummy: Replace CONFIG_PROC_FS with CONFIG_SND_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] aloop: Drop unnecessary ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] core: Fix randconfig build wrt CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop unused fields from struct hda_codec_preset (Jaroslav Kysela) [1197064]
-- [alsa] replace CONFIG_PROC_FS with CONFIG_SND_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] kconfig: add config item SND_PROC_FS for expert (Jaroslav Kysela) [1197064]
-- [alsa] bcd2000: Make local data static (Jaroslav Kysela) [1197064]
-- [alsa] lx6464es: Use NULL for pointers (Jaroslav Kysela) [1197064]
-- [alsa] lx6464es: Fix duplicated SSID entries (Jaroslav Kysela) [1197064]
-- [alsa] dummy: make local data static (Jaroslav Kysela) [1197064]
-- [alsa] pcm: add IEC958 channel status helper (Jaroslav Kysela) [1197064]
-- [alsa] pcm: add DRM ELD helper (Jaroslav Kysela) [1197064]
-- [alsa] jack: Remove MODULE_*() macros (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move hda_i915.c from sound/pci/hda to sound/hda (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add headset-mode* model options for ALC269 & co (Jaroslav Kysela) [1197064]
-- [alsa] hda/ca0132: support for Alienware 15 Creative Sound Core3D-EX (Jaroslav Kysela) [1197064]
-- [alsa] hda - add hda_intel_trace.h (Jaroslav Kysela) [1197064]
-- [alsa] hda - rename hda_intel_trace.h to hda_controller_trace.h (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - Add Tegra210 support (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - Add Tegra114 support (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - Add Tegra30 support (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra - Improve error reporting (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - Implement Tegra-specific patch (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra - Set CORBRP self-clear flag (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support Dell headset mode for ALC298 (Jaroslav Kysela) [1197064]
-- [alsa] info: Drop kerneldoc comment from snd_info_create_entry() (Jaroslav Kysela) [1197064]
-- [alsa] info: Move list addition to snd_info_create_entry() (Jaroslav Kysela) [1197064]
-- [alsa] info: Register proc entries recursively, too (Jaroslav Kysela) [1197064]
-- [alsa] info: Fix leaks of child entries at snd_info_free_entry() (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support headset mode for ALC298 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove unused call to "get_pin" in patch_hdmi.c (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra - Fix oops (Jaroslav Kysela) [1197064]
-- [alsa] hda - reset display codec when power on (Jaroslav Kysela) [1197064]
-- [alsa] jack: fix a randconfig build issue (Jaroslav Kysela) [1197064]
-- [alsa] jack: Fix another NULL dereference due to empty input jack (Jaroslav Kysela) [1197064]
-- [alsa] jack: don't report input event for phantom jack (Jaroslav Kysela) [1197064]
-- [alsa] hda - Reduce ifdef CONFIG_SND_HDA_I915 (Jaroslav Kysela) [1197064]
-- [alsa] hda - remove controller dependency on i915 power well for Baytrail/Braswell (Jaroslav Kysela) [1197064]
-- [alsa] hda - divide controller and codec dependency on i915 gfx power well (Jaroslav Kysela) [1197064]
-- [alsa] hda - implement link_power ops for i915 display power control (Jaroslav Kysela) [1197064]
-- [alsa] hda - allow a codec to control the link power (Jaroslav Kysela) [1197064]
-- [alsa] hda - implement a refcount for i915 power well switch (Jaroslav Kysela) [1197064]
-- [alsa] jack: remove exporting ctljack functions (Jaroslav Kysela) [1197064]
-- [alsa] hda - Update to use the new jack kctls method (Jaroslav Kysela) [1197064]
-- [alsa] jack: extend snd_jack_new to support phantom jack (Jaroslav Kysela) [1197064]
-- [alsa] jack: handle jack embedded kcontrol creating within ctljack (Jaroslav Kysela) [1197064]
-- [alsa] jack: implement kctl creating for jack devices (Jaroslav Kysela) [1197064]
-- [alsa] core: Clean up OSS proc file management (Jaroslav Kysela) [1197064]
-- [alsa] core: Build conditionally and remove superfluous ifdefs (Jaroslav Kysela) [1197064]
-- [alsa] core: Don't ignore errors at creating proc files (Jaroslav Kysela) [1197064]
-- [alsa] core: Remove superfluous exit calls for proc entries (Jaroslav Kysela) [1197064]
-- [alsa] core: Manage asound root directory with snd_info_entry (Jaroslav Kysela) [1197064]
-- [alsa] core: Remove child proc file elements recursively (Jaroslav Kysela) [1197064]
-- [alsa] core: Fix possible memory leaks at error path in info.c (Jaroslav Kysela) [1197064]
-- [alsa] Replace with IS_ENABLED() (Jaroslav Kysela) [1197064]
-- [alsa] core: Use seq_file for text proc file reads (Jaroslav Kysela) [1197064]
-- [alsa] hda - Replace open codes with snd_hdac_stream_set_params() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move prepared flag into struct hdac_stream (Jaroslav Kysela) [1197064]
-- [alsa] hda - Replace hda_bus_ops with static binding (Jaroslav Kysela) [1197064]
-- [alsa] remove deprecated use of pci api (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop azx_sd_read*/write*() macros (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra - Fix build error and warning (Jaroslav Kysela) [1197064]
-- [alsa] hda - Reenable tracepoints for controller (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move PCM format and rate handling code to core library (Jaroslav Kysela) [1197064]
-- [alsa] hda - Minor refactoring (Jaroslav Kysela) [1197064]
-- [alsa] hda - Embed bus into controller object (Jaroslav Kysela) [1197064]
-- [alsa] hda - Migrate more hdac_stream codes (Jaroslav Kysela) [1197064]
-- [alsa] hda - Migrate hdac_stream into legacy driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Pass bus io_ops directly from the top-level driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move send_cmd / get_response to hdac_bus_ops (Jaroslav Kysela) [1197064]
-- [alsa] hda - Merge codec and controller helpers (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add DSP loader to core library code (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add the controller helper codes to hda-core module (Jaroslav Kysela) [1197064]
-- [alsa] hda - Handle error from get_response bus ops directly (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix lost sound due to stream_pm ops cleanup (Jaroslav Kysela) [1197064]
-- [alsa] hda - Disable Headphone Mic boost for ALC662 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Disable power_save_node for IDT92HD71bxx (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix noise on AMD radeon 290x controller (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set stream_pm ops automatically by generic parser (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add ALC256 alias name for Dell (Jaroslav Kysela) [1197064]
-- [alsa] revert "alsa: hda - Add mute-LED mode control to Thinkpad" (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add quirk for MS LifeCam HD-3000 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Disable widget power-saving for ALC292 & co (Jaroslav Kysela) [1197064]
-- [alsa] hda - Reduce verbs by node power-saves (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add quirk for MS LifeCam Studio (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Modify double acknowledged interrupts check condition (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - ALC292 dock fix for Thinkpad L450 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add Conexant codecs CX20721, CX20722, CX20723 and CX20724 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix headset mic and mic-in for a Dell desktop (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add headset mic quirk for Dell Inspiron 5548 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add ALC298 alias name for Dell (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Fix typo for ALC286/ALC288 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add headphone quirk for Lifebook E752 (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Emu10k2 32 bit DMA mode (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix missing va_end() call in snd_hda_codec_pcm_new() (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Fix card shortname string buffer overflow (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add mute-LED mode control to Thinkpad (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix mute-LED fixed mode (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix click noise at start on Dell XPS13 (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix headset mic detection problem for one more machine (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Fix Headphone Mic doesn't recording for ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix "num_steps = 0" error on ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix audio output on Roland SC-D70 sound module (Jaroslav Kysela) [1197064]
-- [alsa] hda - add AZX_DCAPS_I915_POWERWELL to Baytrail (Jaroslav Kysela) [1197064]
-- [alsa] hda - only sync BCLK to the display clock for Haswell & Broadwell (Jaroslav Kysela) [1197064]
-- [alsa] hda - Mute headphone pin on suspend on XPS13 9333 (Jaroslav Kysela) [1197064]
-- [alsa] hda - potential (but unlikely) uninitialized variable (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix regression for slave SPDIF setups (Jaroslav Kysela) [1197064]
-- [alsa] intel8x0: Check pci_iomap() success for DEVICE_ALI (Jaroslav Kysela) [1197064]
-- [alsa] hda - simplify azx_has_pm_runtime (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Enable the ALC292 dock fixup on the Thinkpad T450 (Jaroslav Kysela) [1197064]
-- [alsa] ctl: fix to handle several elements added by one operation for userspace element (Jaroslav Kysela) [1197064]
-- [alsa] control: Fix a typo of SNDRV_CTL_ELEM_ACCESS_TLV_* with SNDRV_CTL_TLV_OP_* (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Don't attempt to get Microsoft Lifecam Cinema sample rate (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: add toggles for E-mu 1010 optical ports (Jaroslav Kysela) [1197064]
-- [alsa] ctl: fill identical information to return value when adding userspace elements (Jaroslav Kysela) [1197064]
-- [alsa] ctl: fix a bug to return no identical information in info operation for userspace controls (Jaroslav Kysela) [1197064]
-- [alsa] ctl: confirm to return all identical information in 'activate' event (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: handle dock disconnects (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add dock support for ThinkPad X250 (17aa:2226) (Jaroslav Kysela) [1197064]
-- [alsa] seq: fill client ID in return value of pool operation (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: don't deadlock in proc-functions (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Fix a typo (Jaroslav Kysela) [1197064]
-- [alsa] ctl: evaluate macro instead of numerical value (Jaroslav Kysela) [1197064]
-- [alsa] usb - Creative USB X-Fi Pro SB1095 volume knob support (Jaroslav Kysela) [1197064]
-- [alsa] hda/via - Add missing stream_pm ops setup (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Fix the regression by widget power-saving (Jaroslav Kysela) [1197064]
-- [alsa] hda/generic - Don't override power_filter when power_save_node is set (Jaroslav Kysela) [1197064]
-- [alsa] hda/generic - Make snd_hda_gen_path_power_filter() always applicable (Jaroslav Kysela) [1197064]
-- [alsa] hda/generic - Fix wrong initial power state for fixed pins (Jaroslav Kysela) [1197064]
-- [alsa] hda/generic - Check power state cap at updating the widget power (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix headphone pin config for Lifebook T731 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Work around races of power up/down with runtime PM (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support Dell headset mode for ALC288 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support headset mode for ALC286/288 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Make more stable to get pin sense for ALC283 (Jaroslav Kysela) [1197064]
-- [alsa] hda_intel: add AZX_DCAPS_I915_POWERWELL for SKL and BSW (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: add Audigy 5/Rx (Jaroslav Kysela) [1197064]
-- [alsa] Use const struct ac97_quirk (Jaroslav Kysela) [1197064]
-- [alsa] hda: fix possible null dereference (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: don't try to get Benchmark DAC1 sample rate (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support Dell headset mode for ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Enable widget power saving for Realtek codecs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Sync node attributes at resume from widget power saving (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add a fake stereo amp register support (Jaroslav Kysela) [1197064]
-- [alsa] hda - Allow driver to add vendor-specific verbs for regmap (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add one more node in the EAPD supporting candidate list (Jaroslav Kysela) [1197064]
-- [alsa] hda_intel: apply the Seperate stream_tag for Sunrise Point (Jaroslav Kysela) [1197064]
-- [alsa] hda/via - Add beep controls to VIA codecs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove superfluous hda_nid_t definition in hda_codec.h (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Fix duplicate const for clock sources (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add dock support for Thinkpad T450s (17aa:5036) (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: read past end of array (Jaroslav Kysela) [1197064]
-- [alsa] ak411x: simplify snd_ak4113_create() a bit (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use regmap for command verb caches, too (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use regmap for parameter caches, too (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use regmap for amp accesses (Jaroslav Kysela) [1197064]
-- [alsa] hda - Implement uncached version of parameter reads (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use regmap for codec parameter reads (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add regmap support (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move generic array helpers to core lib (Jaroslav Kysela) [1197064]
-- [alsa] hda - Re-add tracepoints to HD-audio core driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix possible runtime PM refcount unbalance (Jaroslav Kysela) [1197064]
-- [alsa] hda - Support indirect execution of verbs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add widget sysfs tree (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move a part of hda_codec stuff into hdac_device (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move some codes up to hdac_bus struct (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make snd_hda_bus_type public (Jaroslav Kysela) [1197064]
-- [alsa] hda - Rename power_mgmt flag with power_save_node (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix power of pins used for mute LED with vrefs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Adjust power of beep widget and outputs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use the new power control for VIA codecs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Support advanced power state controls (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Add sampling rate control of the ADC/DAC (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Add text Line in/Mic for selecting input gain state (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Add TLV support for control value in dB scale (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Enable midi i/o of port envy24 chip as available (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Update eeprom structure to C99 standard (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Correct copy/paste from prodigy driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Simplify PCM setup overrides (Jaroslav Kysela) [1197064]
-- [alsa] hda - Treat stereo-to-mono mix properly (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use shutdown driver ops instead of reboot notifier (Jaroslav Kysela) [1197064]
-- [alsa] hda - Don't access stereo amps for mono channel widgets (Jaroslav Kysela) [1197064]
-- [alsa] control: Fix breakage of user ctl element addition (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add workaround for MacBook Air 5,2 built-in mic (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set single_adc_amp flag for CS420x codecs (Jaroslav Kysela) [1197064]
-- [alsa] snd-usb: add quirks for Roland UA-22 (Jaroslav Kysela) [1197064]
-- [alsa] control: Add sanity checks for user ctl id name string (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix built-in mic on Compaq Presario CQ60 (Jaroslav Kysela) [1197064]
-- [alsa] seq: Fix init order of snd_seq_device stuff (Jaroslav Kysela) [1197064]
-- [alsa] core: Drop superfluous error/debug messages after malloc failures (Jaroslav Kysela) [1197064]
-- [alsa] seq: Drop superfluous error/debug messages after malloc failures (Jaroslav Kysela) [1197064]
-- [alsa] seq_oss: Drop superfluous error/debug messages after malloc failures (Jaroslav Kysela) [1197064]
-- [alsa] core: reduce stack usage related to snd_ctl_new() (Jaroslav Kysela) [1197064]
-- [alsa] core: use precomputed table to check userspace control params (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix regression of HD-audio controller fallback modes (Jaroslav Kysela) [1197064]
-- [alsa] ac97: ac97_patch: Simplify patch_vt1613_specific() (Jaroslav Kysela) [1197064]
-- [alsa] ac97: Add VT1613 AC97 codec support (Jaroslav Kysela) [1197064]
-- [alsa] hda - One more Dell macine needs DELL1_MIC_NO_PRESENCE quirk (Jaroslav Kysela) [1197064]
-- [alsa] opl3: small array underflow (Jaroslav Kysela) [1197064]
-- [alsa] line6: Clamp values correctly (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Check Marantz/Denon USB DACs in a single place (Jaroslav Kysela) [1197064]
-- [alsa] Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml (Jaroslav Kysela) [1197064]
-- [alsa] hda - Release resources in device release callback (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use standard workqueue for unsol and jack events (Jaroslav Kysela) [1197064]
-- [alsa] hda - Build PCMs and controls at codec driver probe (Jaroslav Kysela) [1197064]
-- [alsa] hda - Implement unbind more safely (Jaroslav Kysela) [1197064]
-- [alsa] core: Re-add snd_device_disconnect() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Don't assume non-NULL PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] hda - Allocate hda_pcm objects dynamically (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove superfluous memory allocation error messages (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add card field to hda_codec struct (Jaroslav Kysela) [1197064]
-- [alsa] hda - Split snd_hda_build_pcms() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Clear pcm pointer assigned to hda_pcm at device removal (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove channel mode helper functions (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set parent of input beep devices (Jaroslav Kysela) [1197064]
-- [alsa] hda - Power down codec automatically at registration (Jaroslav Kysela) [1197064]
-- [alsa] hda - Replace bus pm_notify with the standard runtime PM framework (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop power_save value indirection in hda_bus (Jaroslav Kysela) [1197064]
-- [alsa] cmipci: remove a stray space character (Jaroslav Kysela) [1197064]
-- [alsa] azt3328: some indenting cleanups (Jaroslav Kysela) [1197064]
-- [alsa] hda - Disable runtime PM for Panther Point again (Jaroslav Kysela) [1197064]
-- [alsa] hda: controller code - do not export static functions (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Don't leave PREPARED state after draining (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use standard runtime PM for codec power-save control (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move codec suspend/resume to codec driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Bind codecs via standard bus (Jaroslav Kysela) [1197064]
-- [alsa] hda - Decouple PCM and hwdep devices from codec object (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add pin configs for ASUS mobo with IDT 92HD73XX codec (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Don't ignore internal PCMs in snd_pcm_dev_disconnect() (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Don't notify internal PCMs (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Don't add internal PCMs to PCM device list (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Minor refactoring in snd_pcm_attach_substream() (Jaroslav Kysela) [1197064]
-- [alsa] hda: replace .wallclock by .get_time_info (Jaroslav Kysela) [1197064]
-- [alsa] core: add .get_time_info (Jaroslav Kysela) [1197064]
-- [alsa] core: pass audio tstamp config from userspace in compat mode (Jaroslav Kysela) [1197064]
-- [alsa] core: pass audio tstamp config from userspace (Jaroslav Kysela) [1197064]
-- [alsa] hda - Avoid unnecessary power-up at mixer amp changes (Jaroslav Kysela) [1197064]
-- [alsa] hda - Split azx_codec_create() to two phases (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop azx_mixer_create() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fold hda_priv.h into hda_controller.h (Jaroslav Kysela) [1197064]
-- [alsa] hda - Introduce azx_has_pm_runtime() macro (Jaroslav Kysela) [1197064]
-- [alsa] usb: Fix support for Denon DA-300USB DAC (ID 154e:1003) (Jaroslav Kysela) [1197064]
-- [alsa] hda - Embed struct hda_bus_unsolicited into struct hda_bus (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop hda_bus_template for snd_hda_bus_new() (Jaroslav Kysela) [1197064]
-- [alsa] hdspm - DRY cleanup of snd_pcm_ops (Jaroslav Kysela) [1197064]
-- [alsa] hdspm - DRY cleanup in .release callback (Jaroslav Kysela) [1197064]
-- [alsa] hdspm - DRY cleanup in .open callbacks (Jaroslav Kysela) [1197064]
-- [alsa] Consolidate snd_find_free_minor() (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Don't attempt to get Lifecam HD-5000 sample rate (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra check correct return value from ioremap_resource (Jaroslav Kysela) [1197064]
-- [alsa] hdspm - Constrain periods to 2 on older cards (Jaroslav Kysela) [1197064]
-- [alsa] hda - enable mute led quirk for one more hp machine (Jaroslav Kysela) [1197064]
-- [alsa] seq: Drop snd_seq_autoload_lock() and _unlock() (Jaroslav Kysela) [1197064]
-- [alsa] seq: Define driver object in each driver (Jaroslav Kysela) [1197064]
-- [alsa] seq: Clean up device and driver structs (Jaroslav Kysela) [1197064]
-- [alsa] seq: Rewrite sequencer device binding with standard bus (Jaroslav Kysela) [1197064]
-- [alsa] seq: Don't compile snd_seq_device_load_drivers() for built-in (Jaroslav Kysela) [1197064]
-- [alsa] seq: Move EXPORT_SYMBOL() after each function (Jaroslav Kysela) [1197064]
-- [alsa] seq: potential out of bounds in do_control() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Improve line6_read/write_data() interfaces (Jaroslav Kysela) [1197064]
-- [alsa] line6: toneport: Use explicit type for firmware version (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use explicit type for serial number (Jaroslav Kysela) [1197064]
-- [alsa] line6: Return EIO if read/write not successful (Jaroslav Kysela) [1197064]
-- [alsa] line6: Return error if device not responding (Jaroslav Kysela) [1197064]
-- [alsa] line6: Add delay before reading status (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add docking station support for another HP machine (Jaroslav Kysela) [1197064]
-- [alsa] control: fix failure to return new numerical ID in 'replace' event data (Jaroslav Kysela) [1197064]
-- [alsa] usb: update trigger timestamp on first non-zero URB submitted (Jaroslav Kysela) [1197064]
-- [alsa] hda: read trigger_timestamp immediately after starting DMA (Jaroslav Kysela) [1197064]
-- [alsa] pcm: allow for trigger_tstamp snapshot in .trigger (Jaroslav Kysela) [1197064]
-- [alsa] pcm: don't override timestamp unconditionally (Jaroslav Kysela) [1197064]
-- [alsa] off by one bug in snd_riptide_joystick_probe() (Jaroslav Kysela) [1197064]
-- [alsa] control: fix failure to return numerical ID in 'add' event (Jaroslav Kysela) [1197064]
-- [alsa] line6: Pass driver name to line6_probe() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Pass toneport pointer to toneport_has_led() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Add toneport_has_source_select() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Get rid of unused variable in pod.c (Jaroslav Kysela) [1197064]
-- [alsa] line6: Create sysfs via snd_card_add_dev_attr() (Jaroslav Kysela) [1197064]
-- [alsa] Add a helper to add a new attribute group to card (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set up GPIO for Toshiba Satellite S50D (Jaroslav Kysela) [1197064]
-- [alsa] line6: fixup of line6_start_timer argument type (Jaroslav Kysela) [1197064]
-- [alsa] line6: use msecs_to_jiffies for conversion (Jaroslav Kysela) [1197064]
-- [alsa] Drop snd_get_device() helper (Jaroslav Kysela) [1197064]
-- [alsa] Simplify snd_device_register() variants (Jaroslav Kysela) [1197064]
-- [alsa] compress: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] seq: Handle the device directly (Jaroslav Kysela) [1197064]
-- [alsa] timer: Handle the device directly (Jaroslav Kysela) [1197064]
-- [alsa] timer: Propagate the error at initialization (Jaroslav Kysela) [1197064]
-- [alsa] rawmidi: Use rawmidi device file for kernel messages (Jaroslav Kysela) [1197064]
-- [alsa] rawmidi: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] hwdep: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] control: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] Add a helper to initialize device (Jaroslav Kysela) [1197064]
-- [alsa] control: Provide a helper to look for the preferred subdevice (Jaroslav Kysela) [1197064]
-- [alsa] Allow to pass the device object to snd_register_device*() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove unused line6_midibuf_skip_message() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove unused line6_midibuf_status() (Jaroslav Kysela) [1197064]
-- [alsa] ak411x: Fix race of reinit() calls (Jaroslav Kysela) [1197064]
-- [alsa] ak411x: Add PM helper functions (Jaroslav Kysela) [1197064]
-- [alsa] ak4114: Move EXPORT_SYMBOL() after each function (Jaroslav Kysela) [1197064]
-- [alsa] ak411x: Fix stall in work callback (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove snd_line6_ prefix of pcm property fields (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove invalid capability bits for PODxt Live Variax (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove struct usb_line6_podhd (Jaroslav Kysela) [1197064]
-- [alsa] line6: Move the contents of usbdefs.h into driver.h (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove revision.h (Jaroslav Kysela) [1197064]
-- [alsa] line6: Tidy up and typo fixes in comments (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix volume calculation for big-endian (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Add snd_interval_ranges() and snd_pcm_hw_constraint_ranges() (Jaroslav Kysela) [1197064]
-- [alsa] usx2y: Move UAPI definition into include/uapi/sound/usb_stream.h (Jaroslav Kysela) [1197064]
-- [alsa] au88x0: Remove superfluous ifdef __KERNEL__ (Jaroslav Kysela) [1197064]
-- [alsa] Include linux/uaccess.h and linux/bitopts.h instead of asm/* (Jaroslav Kysela) [1197064]
-- [alsa] Include linux/io.h instead of asm/io.h (Jaroslav Kysela) [1197064]
-- [alsa] line6: Handle error from line6_pcm_acquire() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Make common PCM pointer callback (Jaroslav Kysela) [1197064]
-- [alsa] line6: Reorganize PCM stream handling (Jaroslav Kysela) [1197064]
-- [alsa] line6: Clear prev_fbuf and prev_fsize properly (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix racy loopback handling (Jaroslav Kysela) [1197064]
-- [alsa] line6: Minor tidy up in line6_probe() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Let snd_card_new() allocate private data (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop interface argument from private_init and disconnect callbacks (Jaroslav Kysela) [1197064]
-- [alsa] line6: Skip volume manipulation during silence copying (Jaroslav Kysela) [1197064]
-- [alsa] line6: Do clipping in volume / monitor manipulations (Jaroslav Kysela) [1197064]
-- [alsa] line6: Consolidate PCM stream buffer allocation and free (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use dev_err() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Consolidate URB unlink and sync helpers (Jaroslav Kysela) [1197064]
-- [alsa] line6: Rearrange PCM structure (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop voodoo workarounds (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use incremental loop (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop superfluous spinlock for trigger (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix the error recovery in line6_pcm_acquire() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use logical OR (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix missing error handling in line6_pcm_acquire() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Reduce superfluous spinlock in midi.c (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove unused line6_nop_read() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix memory leak at probe error path (Jaroslav Kysela) [1197064]
-- [alsa] line6: Minor refactoring (Jaroslav Kysela) [1197064]
-- [alsa] line6/toneport: Implement LED controls via LED class (Jaroslav Kysela) [1197064]
-- [alsa] line6/toneport: Fix wrong argument for toneport_has_led() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Don't forget to call driver's destructor at error path (Jaroslav Kysela) [1197064]
-- [alsa] line6/toneport: Move setup_timer() at the beginning (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove superfluous NULL checks in each driver (Jaroslav Kysela) [1197064]
-- [alsa] line6: Abort if inconsistent usbdev is found at disconnect (Jaroslav Kysela) [1197064]
-- [alsa] line6: Yet more cleanup of superfluous NULL checks (Jaroslav Kysela) [1197064]
-- [alsa] seq: remove unused callback_all field (Jaroslav Kysela) [1197064]
-- [alsa] seq: fix off-by-one error in port limit check (Jaroslav Kysela) [1197064]
-- [alsa] seq: correctly report maximum number of ports (Jaroslav Kysela) [1197064]
-- [alsa] seq-dummy: remove deadlock-causing events on close (Jaroslav Kysela) [1197064]
-- [alsa] hda - Enable docking station for an HP machine (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove driver version from header comment (Jaroslav Kysela) [1197064]
-- [alsa] line6: Refer to manufacturer as "Line 6" (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove superfluous NULL checks (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop line6_send_program() and line6_transmit_parameter() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Make line6_send_raw_message() static (Jaroslav Kysela) [1197064]
-- [alsa] line6: Sync PCM stop at disconnect (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove superfluous disconnect call in suspend handler (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove CHECK_RETURN macro (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop MISSING_CASE macro (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove driver version string (Jaroslav Kysela) [1197064]
-- [alsa] line6: Reorganize card resource handling (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop superfluous irqsave/irqrestore in PCM trigger callback (Jaroslav Kysela) [1197064]
-- [alsa] line6: Don't handle PCM trigger for other cards (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove superfluous out-of-memory error messages (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop usb_device sysfs symlink (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop invalid SNDRV_PCM_INFO_RESUME flag (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop superfluous snd_device for rawmidi (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop superfluous snd_device for PCM (Jaroslav Kysela) [1197064]
-- [alsa] line6: Handle impulse response via control API (Jaroslav Kysela) [1197064]
-- [alsa] line6: Split to each driver (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] hdspm: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] hdsp: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] korg1212: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] ak4117: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] serial-u16550: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] opl3: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] mtpav: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] mpu401: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] aloop: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] timer: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] dummy: use setup_timer and mod_timer (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add mic volume fix quirk for Logitech Webcam C210 (Jaroslav Kysela) [1197064]
-- [alsa] add Studio Evolution SE6X support (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: add XIO2001 initialization (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: add support for third analog input (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: do not create useless S/PDIF controls (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix typo in hda_controller.c (Jaroslav Kysela) [1197064]
-- [alsa] hda - Select INPUT for Realtek HD-audio codec (Jaroslav Kysela) [1197064]
-- [alsa] move line6 usb driver into sound/usb (Jaroslav Kysela) [1197064]
-- [alsa] rme*: Use snd_pcm_format_t (Jaroslav Kysela) [1197064]
-- [alsa] hda: add component support (Jaroslav Kysela) [1197064]
-- [alsa] hda: pass intel_hda to all i915 interface functions (Jaroslav Kysela) [1197064]
-- [alsa] hda: export struct hda_intel (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: wm8766: Remove some unused functions (Jaroslav Kysela) [1197064]
-- [alsa] fm801: remove FSF address (Jaroslav Kysela) [1197064]
-- [alsa] hda - fixup input_free_device called after input_unregister_device (Jaroslav Kysela) [1197064]
-- [alsa] ymfpci: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] vx222: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] via82xx-modem: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] via82xx: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] trident: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] sis7019: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] rme96: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] riptide: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] nm256: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] maestro3: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] intel8x0m: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] intel8x0: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] hda: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] es1968: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] es1938: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ens137x: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] cs5535audio: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] cs46xx: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] cs4281: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] cmipci: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ca0106: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] azt3328: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] atiixp-modem: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] atiixp: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] als4000: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] als300: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ali5451: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add support for Akai MPC Element USB MIDI controller (Jaroslav Kysela) [1197064]
-- [alsa] fm801: PCI core handles power state for us (Jaroslav Kysela) [1197064]
-- [alsa] hda - Enable mic mute hotkey and LEDs for an HP machine (Jaroslav Kysela) [1197064]
-- [alsa] fm801: move to pcim_* and devm_* functions (Jaroslav Kysela) [1197064]
-- [alsa] hda - Debug output which type of fixup was selected (Jaroslav Kysela) [1197064]
-- [alsa] hda - Print codec->chip_name in autoconfig (Jaroslav Kysela) [1197064]
-- [alsa] Deletion of checks before the function call "iounmap" (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: Delete an unnecessary check before the function call "snd_pcm_suspend" (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Delete an unnecessary check before the function call "kfree" (Jaroslav Kysela) [1197064]
-- [alsa] seq: Deletion of unnecessary checks before the function call "snd_midi_event_free" (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: Remove unnecessary snd_pcm_lib_preallocate_free_for_all() (Jaroslav Kysela) [1197064]
-- [alsa] ymfpci: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] trident: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] sonicvibes: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] riptide: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] fm801: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] ens1370: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] cs46xx: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] cs4281: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] asla: ad1889: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] asoc: sb16: Simplify snd_sb16dsp_pcm() (Jaroslav Kysela) [1197064]
-- [alsa] ml403-ac97cr: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] pcm: add SNDRV_PCM_TRIGGER_DRAIN trigger (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: fix an information leak in asihpi_hpi_ioctl() (Jaroslav Kysela) [1197064]
-- [alsa] snd_pcm_oss_period_size: Use round{up,down}_pow_of_two() (Jaroslav Kysela) [1197064]
-- [alsa] Add support for wildcard msbits constraints (Jaroslav Kysela) [1197064]
-- [alsa] Fix handling of multiple msbits constraints on the same runtime (Jaroslav Kysela) [1197064]
-- [alsa] hda - patch_analog.c: Remove some unused functions (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: wm8776.c: Remove some unused functions (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add new GPU codec ID 0x10de0072 to snd-hda (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix wrong gpio_dir & gpio_mask hint setups for IDT/STAC codecs (Jaroslav Kysela) [1197064]
-- [alsa] snd-usb-caiaq: fix stream count check (Jaroslav Kysela) [1197064]
-- [alsa] hda_intel: apply the Seperate stream_tag for Skylake (Jaroslav Kysela) [1197064]
-- [alsa] hda_controller: Separate stream_tag for input and output streams (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: extend KEF X300A FU 10 tweak to Arcam rPAC (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - New codec support for ALC298 (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: update to HPI version 4.14 (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: increase tuner pad cache size (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: relax firmware version check (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix Scarlett 6i6 initialization typo (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add quirk for Packard Bell EasyNote MX65 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add native DSD support for Matrix Audio DACs (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - New codec support for ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add new Dell desktop for ALC3234 headset mode (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - apply Haswell fix-ups to Skylake display codec (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make add_stereo_mix_input flag tristate (Jaroslav Kysela) [1197064]
-- [alsa] hda - Create capture source ctls when stereo mix input is added (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix typos in snd_hda_get_int_hint() kerneldoc comments (Jaroslav Kysela) [1197064]
-- [alsa] hda - add codec ID for Skylake display audio codec (Jaroslav Kysela) [1197064]
-- [alsa] sound / pm: Replace CONFIG_PM_RUNTIME with CONFIG_PM (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: NULL dereference on probe failure (Jaroslav Kysela) [1197064]
-- [alsa] lola: NULL dereference on probe failure (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add "eapd" model string for AD1986A codec (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add EAPD fixup for ASUS Z99He laptop (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Don't resubmit pending URBs at MIDI error recovery (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix built-in mic at resume on Lenovo Ideapad S210 (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: Neaten get_daio_rsc (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop AZX_DCAPS_ALIGN_BUFSIZE (Jaroslav Kysela) [1197064]
-- [alsa] hda - Define the DCAPS preset for the old Intel chipsets (Jaroslav Kysela) [1197064]
-- [alsa] trident: Deletion of a check before snd_util_memhdr_free() (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: Deletion of a check before release_and_free_resource() (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Deletion of an unnecessary check before the function call "vfree" (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add headset Mic support for new Dell machine (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add support for Zoom R16/24 capture and midi interfaces (Jaroslav Kysela) [1197064]
-- [alsa] virmidi: Fix wrong error check (Jaroslav Kysela) [1197064]
-- [alsa] virmidi: fixed code style issues (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add mode select quirk for Denon/Marantz DACs (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add native DSD support for Denon/Marantz DACs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Allow forcibly enabling/disabling snoop (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add AZX_DCAPS_SNOOP_OFF (and refactor snoop setup) (Jaroslav Kysela) [1197064]
-- [alsa] hda - using uninitialized data (Jaroslav Kysela) [1197064]
-- [alsa] sound/radeon: Move 64-bit MSI quirk from arch to driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Limit 40bit DMA for AMD HDMI controllers (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: used parts of message/response are zeroed before use (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: don't fail probe if adapter mode read fails (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Use standard printk helpers (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Turn off msg/resp logging after DSP has crashed (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Add support for stream interrupt (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Refactor control cache code (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Use CONFIG_64BIT directly (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Logging format improvements (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: New I/O types - AVB & BLUlink, DAB Rf receiver (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Minor string and dead code cleanup (Jaroslav Kysela) [1197064]
-- [alsa] core: Deletion of unnecessary checks before two function calls (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Add big-endian DSD sample formats and fix XMOS DSD sample format (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add resume support for Scarlett mixers (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add resume support for MicroII SPDIF ctls (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add resume support for FTU controls (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add resume support for Native Instruments controls (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add Digidesign Mbox 1 resume support (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add Xonar U1 resume support (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add Emu0204 channel switch resume support (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add audigy2nx resume support (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Allow quirks to handle own resume and proc dump (Jaroslav Kysela) [1197064]
-- [alsa] hda - One more HP machine needs to change mute led quirk (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Supported HP mute Led for ALC286 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Refactor ignore_ctl_error checks (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Use snd_usb_ctl_msg() for Native Instruments quirk (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Clean up mute/mic GPIO LED handling (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix the mic mute led problem for Latitude E5550 (Jaroslav Kysela) [1197064]
-- [alsa] hda - move DELL_WMI_MIC_MUTE_LED to the tail in the quirk chain (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Set the Control Selector to SU_SELECTOR_CONTROL for UAC2 (Jaroslav Kysela) [1197064]
-- [alsa] hdsp: Deletion of an unnecessary check before the function call "release_firmware" (Jaroslav Kysela) [1197064]
-- [alsa] lola: Deletion of an unnecessary check before the function call "vfree" (Jaroslav Kysela) [1197064]
-- [alsa] ice17xx: Deletion of unnecessary checks before the function call "snd_ac97_resume" (Jaroslav Kysela) [1197064]
-- [alsa] hda: Deletion of unnecessary checks before two function calls (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add ctrl message delay quirk for Marantz/Denon devices (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: consider error value (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: remove unused variable (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: remove unneeded return statement (Jaroslav Kysela) [1197064]
-- [alsa] 6fire: Convert byte_rev_table uses to bitrev8 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add mute LED control for Lenovo Ideapad Z560 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Scarlett mixer interface for 6i6, 18i6, 18i8 and 18i20 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: make set_*_mix_values functions public (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add private_data pointer to usb_mixer_elem_info (Jaroslav Kysela) [1197064]
-- [alsa] revert "alsa: usb-audio: Add quirk for Focusrite Scarlett (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Change EAPD to verb control (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix memory leak in FTU quirk (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add duplex mode for Digidesign Mbox 1 and enable mixer (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add mixer control for Digidesign Mbox 1 clock source (Jaroslav Kysela) [1197064]
-- [alsa] Fix invalid kerneldoc markers (Jaroslav Kysela) [1197064]
-- [alsa] mixart: Fix kerneldoc comments (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix kerneldoc errors in patch_ca0132.c (Jaroslav Kysela) [1197064]
-- [alsa] vx: Fix missing kerneldoc parameter descriptions (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix Oops by composite quirk enhancement (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Fix document for snd_pcm_stop_xrun() (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Allow multiple entries for the same iface in composite quirk (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Add snd_pcm_stop_xrun() helper (Jaroslav Kysela) [1197064]
-- [alsa] snd_ctl_activate_id(): Fix index look-up (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Trigger PCM XRUN at XRUN (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Update the state properly before notification (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Restore default value for ALC668 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix device_del() sysfs warnings at disconnect (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: cleanup of unnecessary messages (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix mute led problem for three HP laptops (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Use strim() instead of open code (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Pass direct struct pointer instead of list_head (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Flatten probe and disconnect functions (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Add xrun_injection proc entry (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Replace PCM hwptr tracking with tracepoints (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Correct PCM BUG error message (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Deletion of unnecessary checks before three function calls (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: remove all snd_printk (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: add reference of struct echoaudio (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Refactoring snd_pcm_action() (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Simplify snd_pcm_action_lock_irq() (Jaroslav Kysela) [1197064]
-- [alsa] doc: More kerneldoc comments on core components (Jaroslav Kysela) [1197064]
-- [alsa] pcm: More kerneldoc updates (Jaroslav Kysela) [1197064]
-- [alsa] control: Add missing kerneldoc comments to exported functions (Jaroslav Kysela) [1197064]
-- [alsa] Update au0828 quirks table (Jaroslav Kysela) [1197064]
-- [alsa] simplify au0828 quirk table (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add kerneldoc comments to hda_generic.c (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Update Initial AMP for EAPD control (Jaroslav Kysela) [1197064]
-- [alsa] hda - change three SSID quirks to one pin quirk (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set GPIO 4 low for a few HP machines (Jaroslav Kysela) [1197064]
-- [alsa] es1968: Replace timeval with ktime_t (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add ultra dock support for Thinkpad X240 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add workaround for CMI8888 snoop behavior (Jaroslav Kysela) [1197064]
-- [alsa] hdspm: remove unused variable (Jaroslav Kysela) [1197064]
-- [alsa] hda - More kerneldoc comments (Jaroslav Kysela) [1197064]
-- [alsa] hda - Correct kerneldoc comments (Jaroslav Kysela) [1197064]
-- [alsa] au88x0: Kill the rest snd_print*() (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: Kill the rest snd_print*() (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: Kill the rest snd_print*() (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: convert timeval to ktime_t (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Zero-clear reserved fields of PCM status ioctl in compat mode (Jaroslav Kysela) [1197064]
-- [alsa] hda - Pass printf argument directly to request_module() (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - New SSID for Headset quirk (Jaroslav Kysela) [1197064]
-- [alsa] ad1889: Fix probable mask then right shift defects (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Update restore default value for ALC283 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Update restore default value for ALC282 (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Avoid mmap warnings on x86 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add missing terminating entry to SND_HDA_PIN_QUIRK macro (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Disable mmap for known broken archs (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Remove arch-dependent mmap kludges (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Fix false lockdep warnings (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: remove unused variable (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] 6fire: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] via82xx: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] sonicvibes: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] rme9652: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] hdspm: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] hdsp: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] rme96: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] rme32: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] korg1212: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] hda: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] fm801: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] es1938: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ca0106: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] azt3328: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] aw2: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ac97: Constify more text arrays (Jaroslav Kysela) [1197064]
-- [alsa] ac97: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ak4xxx-adda: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] vx: Use snd_ctl_elem_info() (Jaroslav Kysela) [1197064]
-- [alsa] mts64: Use snd_ctl_elem_info() (Jaroslav Kysela) [1197064]
-- [alsa] control: Allow to pass items zero to snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] control: Warn if too long string is passed to snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] drivers: pcsp: drop owner assignment from platform_drivers (Jaroslav Kysela) [1197064]
-- [alsa] drivers: mpu401: drop owner assignment from platform_drivers (Jaroslav Kysela) [1197064]
-- [alsa] drivers: drop owner assignment from platform_drivers (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use "Line Out" name instead of "PCM" when there are other outputs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix "PCM" name being used on one DAC when there are two DACs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix inverted LED gpio setup for Lenovo Ideapad (Jaroslav Kysela) [1197064]
-- [alsa] hda - hdmi: Fix missing ELD change event on plug/unplug (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add support for Steinberg UR22 USB interface (Jaroslav Kysela) [1197064]
-- [alsa] ALC283 codec - Avoid pop noise on headphones during suspend/resume (Jaroslav Kysela) [1197064]
-- [alsa] snd-usb: drop unused varible assigments (Jaroslav Kysela) [1197064]
-- [alsa] subject: alsa: seq: Remove autoload locks in driver registration (Jaroslav Kysela) [1197064]
-- [alsa] seq: bind seq driver automatically (Jaroslav Kysela) [1197064]
-- [alsa] pcm: use the same dma mmap codepath both for arm and arm64 (Jaroslav Kysela) [1197064]
-- [alsa] seq: Use atomic ops for autoload refcount (Jaroslav Kysela) [1197064]
-- [alsa] au88x0: pr_* replaced with dev_* (Jaroslav Kysela) [1197064]
-- [alsa] au88x0: added reference of vortex_t (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Fix deadlock in synth voice lookup (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Fix referred substream in snd_pcm_action_group() unlock loop (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add dock port support to Thinkpad L440 (71aa:501e) (Jaroslav Kysela) [1197064]
-- [alsa] Allow pass NULL dev for snd_pci_quirk_lookup() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add dock support for Thinkpad T440 (17aa:2212) (Jaroslav Kysela) [1197064]
-- [alsa] usb: caiaq: check for cdev->n_streams > 1 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make the inv dmic handling for Realtek use generic parser (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add Inverted Internal mic for Samsung Ativ book 9 (NP900X3G) (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add inverted internal mic for Asus Aspire 4830T (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: pr_* replaced with dev_* (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: ctatc: added reference to snd_card (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: initialized snd_card (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: added reference of snd_card (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: removed typecast to (struct hw *) (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: changed void * to struct hw * (Jaroslav Kysela) [1197064]
-- [alsa] usb: hub: rename khubd to hub_wq in documentation and comments (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: sparse warning (Jaroslav Kysela) [1197064]
-- [alsa] hda - Sort input pins depending on amp caps (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move the function "check_amp_caps" to hda_codec.c (Jaroslav Kysela) [1197064]
-- [alsa] hda - add explicit include of err.h (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: set fifo_size (Jaroslav Kysela) [1197064]
-- [alsa] virtuoso: add partial Xonar Xense support (Jaroslav Kysela) [1197064]
-- [alsa] snd-usb-caiaq: Fix LED commands for Kore controller (Jaroslav Kysela) [1197064]
-- [alsa] pcm: fix fifo_size frame calculation (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add fixup model name lookup for Lemote A1205 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Replace strnicmp with strncasecmp (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use standard hda_jack infrastructure for CA0132 driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove superfluous hooks from VIA driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove superfluous callbacks from STAC/IDT codecs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Allow multiple callbacks for jack (Jaroslav Kysela) [1197064]
-- [alsa] lx6464es: Use nonatomic PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: Use nonatomic PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] mixart: Use nonatomic PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] vx: Use nonatomic PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make snd_hda_jack_detect_enable_callback() returning the jack object (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make snd_hda_jack_tbl_new() static (Jaroslav Kysela) [1197064]
-- [alsa] hda - Get rid of action field from struct hda_jack_tbl (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix invalid pin powermap without jack detection (Jaroslav Kysela) [1197064]
-- [alsa] pci: au88x0: printk replacement (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add native DSD support for XMOS based DACs (Jaroslav Kysela) [1197064]
-- [alsa] pcm: add new DSD sampleformat for native DSD playback on XMOS based devices (Jaroslav Kysela) [1197064]
-- [alsa] virtuoso: add Xonar Essence STX II daughterboard support (Jaroslav Kysela) [1197064]
-- [alsa] virtuoso: add one more headphone impedance setting (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add MIDI port names for the Yamaha MOTIF XF (Jaroslav Kysela) [1197064]
-- [alsa] pcm: snd_interval_step: fix changes of open intervals (Jaroslav Kysela) [1197064]
-- [alsa] pcm: snd_interval_step: drop the min parameter (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add TLV_DB_SCALE_MUTE bit for relevant controls (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Uninline snd_pcm_stream_lock() and _unlock() (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Allow nonatomic trigger operations (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make the ALC269 pin quirk table shorter (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add common pin macros for ALC269 family (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move HP_GPIO_MIC1_LED quirk for alc280 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move HP_LINE1_MIC1_LED quirk for alc282 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move HP_MUTE_LED_MIC1 quirk for alc290 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move HP_MUTE_LED_MIC1 quirk for alc282 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move DELL2_MIC_NO_PRESENCE quirk for alc255 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move DELL1_MIC_NO_PRESENCE quirk for alc255 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move DELL1_MIC_NO_PRESENCE quirk for alc283 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move DELL2_MIC_NO_PRESENCE quirk for alc292 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix COEF setups for ALC1150 codec (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix digital mic on Acer Aspire 3830TG (Jaroslav Kysela) [1197064]
-
-* Mon Jun 22 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-277.el7]
-- [kernel] sched: Fix compiler warnings (Jiri Olsa) [1222189]
-- [block] fix ext_dev_lock lockdep report (Jeff Moyer) [1230924]
-- [net] dcbnl: Disable software interrupts before taking dcb_lock (Chris Leech) [1175797]
-- [net] dcbnl: Fix misleading dcb_app->priority explanation (Chris Leech) [1175797]
-- [net] dcb: use __dev_get_by_name instead of dev_get_by_name to find (Chris Leech) [1175797]
-- [net] dcbevent.h: Remove extern from function prototypes (Chris Leech) [1175797]
-- [scsi] fcoe: extend ethtool to FC port speed mapping (Chris Leech) [1175797]
-- [scsi] scsi_transport_fc: Add support for 25Gbit speed (Chris Leech) [1175797]
-- [scsi] add defines for new FC port speeds (Chris Leech) [1175797]
-- [scsi] megaraid: regression - fix irq setup process (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Modify return value of megasas_issue_blocked_cmd() and wait_and_poll() to consider command status returned by firmware (Tomas Henzl) [1207092]
-- [scsi] megaraid: --grep and Kconfig (Tomas Henzl) [1185944]
-- [scsi] megaraid: remove unnecessary pci_set_drvdata() (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: fix bug in handling return value of pci_enable_msix_range() (Tomas Henzl) [1185944]
-- [scsi] megaraid: Use pci_enable_msix_range() instead of pci_enable_msix() (Tomas Henzl) [1185944]
-- [scsi] megaraid: use pci_zalloc_consistent (Tomas Henzl) [1185944]
-- [scsi] megaraid: fixed several typos in comments (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: swap whole register in megasas_register_aen (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: fix megasas_fire_cmd_fusion calling convention (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add missing byte swaps to the sriov code (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: bytewise or should be done on native endian variables (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: move endianness conversion into caller of megasas_get_seq_num (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add endianness conversions for all ones (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add endianness annotations (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add missing __iomem annotations (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: megasas_complete_outstanding_ioctls() can be static (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Support for Avago's Single server High Availability product (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Add release date and update driver version (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Modify driver's meta data to reflect Avago (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Use Block layer tag support for internal command indexing (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Enhanced few prints (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Move controller's queue depth calculation in adapter specific function (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Add separate functions for building sysPD IOs and non RW LDIOs (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Add separate function for refiring MFI commands (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Add separate function for setting up IRQs (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: use raw_smp_processor_id() (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: driver version update (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: remove redundant memset call (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: reserve commands for IOCTLs and internal DCMDs (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: complete outstanding IOCTLs before killing adapter (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: disable interrupt_mask before enabling hardware interrupts (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: fix the problem of non-existing VD exposed to host (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add support for secure JBOD (Tomas Henzl) [1185944]
-- [scsi] mptsas: fix depth param in scsi_track_queue_full (Tomas Henzl) [1117348]
-- [scsi] lpfc: Update version 10.7.0.1 for RHEL 7.2 release (Rob Evers) [1225165]
-- [scsi] lpfc: Fix to drop PLOGIs from fabric node till LOGO processing completes (Rob Evers) [1225165]
-- [scsi] lpfc: Fix cq_id masking problem (Rob Evers) [1225165]
-- [scsi] lpfc: Fix scsi prep dma buf error (Rob Evers) [1225165]
-- [scsi] lpfc: Devices are not discovered during takeaway/giveback testing (Rob Evers) [1225165]
-- [scsi] lpfc: Fix vport deletion failure (Rob Evers) [1225165]
-- [scsi] lpfc: Check for active portpeerbeacon (Rob Evers) [1225165]
-- [scsi] lpfc: Change buffer pool empty message to miscellaneous category (Rob Evers) [1225165]
-- [scsi] lpfc: Fix incorrect log message reported for empty FCF record (Rob Evers) [1225165]
-- [scsi] lpfc: Fix rport leak (Rob Evers) [1225165]
-- [scsi] lpfc: Correct loss of RSCNs during array takeaway/giveback testing (Rob Evers) [1225165]
-- [scsi] lpfc: Fix crash in vport_delete (Rob Evers) [1225165]
-- [scsi] lpfc: Fix to remove IRQF_SHARED flag for MSI/MSI-X vectors (Rob Evers) [1225165]
-- [scsi] lpfc: Fix discovery issue when changing from Pt2Pt to Fabric (Rob Evers) [1225165]
-- [scsi] lpfc: Correct reporting of vport state on fdisc command failure (Rob Evers) [1225165]
-- [scsi] lpfc: Add support for RDP ELS command (Rob Evers) [1225165]
-- [scsi] lpfc: Fix ABORTs WQ selection in terminate_rport_io (Rob Evers) [1225165]
-- [scsi] lpfc: Correct reference counting of rport (Rob Evers) [1225165]
-- [scsi] lpfc: Add support for ELS LCB (Rob Evers) [1225165]
-- [scsi] lpfc: Correct loss of target discovery after cable swap (Rob Evers) [1225165]
-- [scsi] lpfc: Fix crash in device reset handler (Rob Evers) [1225165]
-- [scsi] lpfc: Fix OS crash when running loopback test in applications (Rob Evers) [1225165]
-- [scsi] lpfc: Fix internal loopback failure (Rob Evers) [1225165]
-- [scsi] lpfc: Fix premature release of rpi bit in bitmask (Rob Evers) [1225165]
-- [scsi] lpfc: Initiator sends wrong BBCredit value for either FLOGI or FLOGI_ACC (Rob Evers) [1225165]
-- [scsi] lpfc: Fix FDMI Fabric support in driver for Brocade (Rob Evers) [1225165]
-- [scsi] lpfc: Fix null ndlp dereference in target_reset_handler (Rob Evers) [1225165]
-- [scsi] lpfc: Parse the new 20G, 25G and 40G link speeds in the lpfc driver (Rob Evers) [1225165]
-- [scsi] lpfc: Fix provide host name and OS name in RSNN-NN FC-GS command (Rob Evers) [1225165]
-- [scsi] lpfc: Add support for reporting option_rom_version on newer adapters (Rob Evers) [1225165]
-- [scsi] lpfc: Fix setting of EQ (interrupt) delay Multiplier (Rob Evers) [1225165]
-- [scsi] lpfc: fix low priority issues from fortify source code scan (Rob Evers) [1225165]
-- [scsi] lpfc: fix high priority issues from fortify source code scan (Rob Evers) [1225165]
-- [scsi] lpfc: Fix host reset escalation killing all IOs (Rob Evers) [1225165]
-- [scsi] lpfc: correct device removal deadlock after link bounce (Rob Evers) [1225165]
-- [scsi] lpfc: Linux lpfc driver doesn't re-establish the link after a cable pull on LPe12002 (Rob Evers) [1225165]
-- [scsi] lpfc: Fix to handle PLOGI when already logged in (Rob Evers) [1225165]
-- [scsi] lpfc: Add new mbx cmd recognition (Rob Evers) [1225165]
-- [scsi] lpfc: Add Lancer Temperature Event support to the lpfc driver (Rob Evers) [1225165]
-
-* Mon Jun 22 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-276.el7]
-- [pci] msi: Remove unnecessary braces around single statements (Steve Best) [1231358]
-- [usb] core: hcd-pci: free IRQ before disabling PCI device when shutting down (Steve Best) [1231358]
-- [x86] irq: Clean up irqdomain transition code (Steve Best) [1231358]
-- [x86] irq, devicetree: Release IOAPIC pin when PCI device is disabled (Steve Best) [1231358]
-- [x86] irq, mpparse: Release IOAPIC pin when PCI device is disabled (Steve Best) [1231358]
-- [x86] irq, acpi: Release IOAPIC pin when PCI device is disabled (Steve Best) [1231358]
-- [x86] irq: Introduce helper functions to release IOAPIC pin (Steve Best) [1231358]
-- [x86] irq: Simplify the way to handle ISA IRQ (Steve Best) [1231358]
-- [x86] irq: Clean up unused IOAPIC interface (Steve Best) [1231358]
-- [x86] irq, devicetree: Use common irqdomain map interface to program IOAPIC pins (Steve Best) [1231358]
-- [x86] irq, mpparse: Use common irqdomain map interface to program IOAPIC pins (Steve Best) [1231358]
-- [x86] irq, acpi: Use common irqdomain map interface to program IOAPIC pins (Steve Best) [1231358]
-- [x86] irq: Introduce two helper functions to support irqdomain map operation (Steve Best) [1231358]
-- [x86] devicetree, irq: Use common mechanism to support irqdomain (Steve Best) [1231358]
-- [x86] mpparse, irq: Provide basic irqdomain support (Steve Best) [1231358]
-- [x86] acpi, irq: Provide basic irqdomain support (Steve Best) [1231358]
-- [x86] irq: Enhance mp_register_ioapic() to support irqdomain (Steve Best) [1231358]
-- [x86] irq: Introduce mechanisms to support dynamically allocate IRQ for IOAPIC (Steve Best) [1231358]
-- [x86] irq, acpi: Change __acpi_register_gsi to return IRQ number instead of GSI (Steve Best) [1231358]
-- [x86] acpi, irq: Consolidate algorithm of mapping (ioapic, pin) to IRQ number (Steve Best) [1231358]
-- [x86] irq: Simplify arch_early_irq_init() (Steve Best) [1231358]
-- [x86] irq: Count legacy IRQs by legacy_pic->nr_legacy_irqs instead of NR_IRQS_LEGACY (Steve Best) [1231358]
-- [x86] ce4100, irq: Do not set legacy_pic to null_legacy_pic (Steve Best) [1231358]
-- [x86] ce4100, irq: Make CE4100 depend on CONFIG_X86_IO_APIC (Steve Best) [1231358]
-- [x86] irq: Introduce some helper utilities to improve readability (Steve Best) [1231358]
-- [x86] irq: Reorganize IO_APIC_get_PCI_irq_vector() to prepare for irqdomain (Steve Best) [1231358]
-- [x86] ioapic: Use irq_cfg() instead of irq_get_chip_data() for better readability (Steve Best) [1231358]
-- [x86] ioapic: Introduce helper utilities to walk ioapics and pins (Steve Best) [1231358]
-- [x86] ioapic: Kill static variable nr_irqs_gsi (Steve Best) [1231358]
-- [x86] ioapic: Keep get_nr_irqs_gsi() (Steve Best) [1231358]
-- [x86] genirq: Ensure that dynamic irq allocation does not conflict (Steve Best) [1231358]
-- [x86] Remove create/destroy_irq() (Steve Best) [1231358]
-- [x86] iommu: dmar: Provide arch specific irq allocation (Steve Best) [1231358]
-- [x86] iommu: smar: Fix return value check of create_irq() (Steve Best) [1231358]
-- [x86] hpet: Use irq_alloc/free_hwirq() (Steve Best) [1231358]
-- [x86] uv: Use irq_alloc/free_hwirq() (Steve Best) [1231358]
-- [x86] irq_remapping: Use irq_alloc/free_hwirq() (Steve Best) [1231358]
-- [x86] htirq: Use irq_alloc/free_irq() (Steve Best) [1231358]
-- [x86] ioapic: Use irq_alloc/free_hwirq() (Steve Best) [1231358]
-- [x86] genirq: Provide generic hwirq allocation facility (Steve Best) [1231358]
-- [x86] Implement arch_setup/teardown_hwirq() (Steve Best) [1231358]
-- [x86] ioapic: Kill unused global variable timer_through_8259 (Steve Best) [1231358]
-- [x86] irq, trivial: Minor improvements of IRQ related code (Steve Best) [1231358]
-- [x86] acpi, irq: Fix possible eror in GSI to IRQ mapping for legacy IRQ (Steve Best) [1231358]
-- [x86] acpi, irq: Enhance error handling in function acpi_register_gsi() (Steve Best) [1231358]
-- [x86] acpi, trivial: Minor improvements to arch/x86/kernel/acpi/boot.c (Steve Best) [1231358]
-- [x86] acpi, irq: Kill static function irq_to_gsi() (Steve Best) [1231358]
-- [x86] pci, acpi: Use kmalloc_node() to optimize for performance (Steve Best) [1231358]
-- [x86] acpi: Reorganize code to avoid forward declaration in boot.c (Steve Best) [1231358]
-- [x86] apic: Remove support for ia32-based Unisys ES7000 (Steve Best) [1231358]
-- [x86] mpparse: Simplify arch/x86/include/asm/mpspec.h (Steve Best) [1231358]
-- [x86] mpparse: Use pr_lvl() helper utilities to replace printk(KERN_LVL) (Steve Best) [1231358]
-
-* Mon Jun 22 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-275.el7]
-- [char] ipmi: Update timespec usage to timespec64 (Tony Camuso) [1229675]
-- [char] ipmi: Fix multi-part message handling (Tony Camuso) [1229675]
-- [char] ipmi: Add alert handling to SSIF (Tony Camuso) [1229675]
-- [char] ipmi: Fix a problem that messages are not issued in run_to_completion mode (Tony Camuso) [1229675]
-- [char] ipmi: Report an error if ACPI _IFT doesn't exist (Tony Camuso) [1229675]
-- [char] ipmi: Remove unused including <linux/version.h> (Tony Camuso) [1229675]
-- [char] ipmi: Don't report err in the SI driver for SSIF devices (Tony Camuso) [1229675]
-- [char] ipmi: Remove incorrect use of seq_has_overflowed (Tony Camuso) [1229675]
-- [char] ipmi_ssif: Ignore spaces when comparing I2C adapter names (Tony Camuso) [1229675]
-- [char] ipmi_ssif: Fix the logic on user-supplied addresses (Tony Camuso) [1229675]
-- [char] ipmi_ssif: Use interruptible completion for waiting in the thread (Tony Camuso) [1229675]
-- [char] ipmi: Handle BMCs that don't allow clearing the rcv irq bit (Tony Camuso) [1229675]
-- [char] ipmi: constify of_device_id array (Tony Camuso) [1229675]
-- [char] ipmi: Fix a memory ordering issue (Tony Camuso) [1229675]
-- [char] ipmi: Remove uses of return value of seq_printf (Tony Camuso) [1229675]
-- [char] ipmi: Use is_visible callback for conditional sysfs entries (Tony Camuso) [1229675]
-- [char] ipmi: Free ipmi_recv_msg messages from the linked list on close (Tony Camuso) [1229675]
-- [char] ipmi: avoid gcc warning (Tony Camuso) [1229675]
-- [char] ipmi: Cleanup DEBUG_TIMING ifdef usage (Tony Camuso) [1229675]
-- [char] ipmi: Remove unneeded FIXME comment in the file, ipmi_si_intf.c (Tony Camuso) [1229675]
-- [char] ipmi: Remove obsolete cleanup for clientdata (Tony Camuso) [1229675]
-- [char] ipmi: Remove a FIXME for slab conversion (Tony Camuso) [1229675]
-- [char] ipmi: Fix compile warning with tv_usec (Tony Camuso) [1229675]
-- [char] ipmi: Fix compile issue with isspace() (Tony Camuso) [1229675]
-- [char] ipmi: Finish cleanup of BMC attributes (Tony Camuso) [1229675]
-- [char] ipmi: Check the BT interrupt enable periodically (Tony Camuso) [1229675]
-- [char] ipmi: Fix attention handling for system interfaces (Tony Camuso) [1229675]
-- [char] ipmi: Periodically check to see if irqs and messages are set right (Tony Camuso) [1229675]
-- [char] ipmi: Add SMBus interface driver (SSIF) (Tony Camuso) [1229675]
-- [char] ipmi: Remove the now unnecessary message queue (Tony Camuso) [1229675]
-- [char] ipmi: Make the message handler easier to use for SMI interfaces (Tony Camuso) [1229675]
-- [char] ipmi: Move message sending into its own function (Tony Camuso) [1229675]
-- [char] ipmi: rename waiting_msgs to waiting_rcv_msgs (Tony Camuso) [1229675]
-- [char] ipmi: Fix handling of BMC flags (Tony Camuso) [1229675]
-- [char] ipmi: Initialize BMC device attributes (Tony Camuso) [1229675]
-- [char] ipmi: Unregister previously registered driver in error case (Tony Camuso) [1229675]
-- [char] ipmi: Fix a bug in hot add/remove (Tony Camuso) [1229675]
-- [char] ipmi: Remove useless sysfs_name parameters (Tony Camuso) [1229675]
-- [char] ipmi: clean up the device handling for the bmc device (Tony Camuso) [1229675]
-- [char] ipmi: Move the address source to string to ipmi-generic code (Tony Camuso) [1229675]
-- [char] ipmi: Ignore SSIF in the PNP handling (Tony Camuso) [1229675]
-- [char] ipmi: drop owner assignment from platform_drivers (Tony Camuso) [1229675]
-- [powerpc] rtc/tpo: Driver to support rtc and wakeup on PowerNV platform (Gustavo Duarte) [1223687]
-- [powerpc] powernv: Check OPAL RTC calls exists before using (Gustavo Duarte) [1223687]
-- [base] devres: restore zeroing behavior of devres_alloc() (Gustavo Duarte) [1221064 1230136]
-- [char] ipmi/powernv: Fix minor locking bug (Gustavo Duarte) [1221064]
-- [char] ipmi: Add powernv IPMI driver (Gustavo Duarte) [1221064]
-- [powerpc] powernv: Add OPAL IPMI interface (Gustavo Duarte) [1221064]
-- [powerpc] devres: add kernel standard devm_k.alloc functions (Gustavo Duarte) [1221064]
-
-* Fri Jun 19 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-274.el7]
-- [netdrv] macvtap/tun: cross-endian support for little-endian hosts (Thomas Huth) [1213658]
-- [vhost] cross-endian support for legacy devices (Thomas Huth) [1213658]
-- [virtio] add explicit big-endian support to memory accessors (Thomas Huth) [1213658]
-- [vhost] introduce vhost_is_little_endian() helper (Thomas Huth) [1213658]
-- [virtio] vringh: introduce vringh_is_little_endian() helper (Thomas Huth) [1213658]
-- [netdrv] macvtap: introduce macvtap_is_little_endian() helper (Thomas Huth) [1213658]
-- [netdrv] tun: add tun_is_little_endian() helper (Thomas Huth) [1213658]
-- [virtio] introduce virtio_is_little_endian() helper (Thomas Huth) [1213658]
-- [netdrv] tun: remove bogus hardware vlan acceleration flags from vlan_features (Thomas Huth) [1231879]
-- [kvm] move advertising of KVM_CAP_IRQFD to common code (Thomas Huth) [1231879]
-- [kvm] Give IRQFD its own separate enabling Kconfig option (Thomas Huth) [1231879]
-- [netdrv] vringh: update for virtio 1.0 APIs (Thomas Huth) [1231879]
-- [netdrv] vringh: 64 bit features (Thomas Huth) [1231879]
-- [vhost] net: fix up num_buffers endian-ness (Thomas Huth) [1231879]
-- [vhost] net: enable virtio 1.0 (Thomas Huth) [1231879]
-- [vhost] net: larger header for virtio 1.0 (Thomas Huth) [1231879]
-- [vhost] net: length miscalculation (Thomas Huth) [1231879]
-- [vhost] net: virtio 1.0 byte swap (Thomas Huth) [1231879]
-- [vhost] virtio 1.0 endian-ness support (Thomas Huth) [1231879]
-- [vhost] switch to __get/__put_user exclusively (Thomas Huth) [1231879]
-- [vhost] net: force len for TX to host endian (Thomas Huth) [1231879]
-- [vhost] add memory access wrappers (Thomas Huth) [1231879]
-- [vhost] make features 64 bit (Thomas Huth) [1231879]
-- [vhost] switch to use vhost_add_used_n() (Thomas Huth) [1231879]
-- [netdrv] macvtap: drop broken IFF_VNET_LE (Thomas Huth) [1231879]
-- [netdrv] macvtap: TUN_VNET_LE support (Thomas Huth) [1231879]
-- [netdrv] macvtap: Fix csum_start when VLAN tags are present (Thomas Huth) [1231879]
-- [netdrv] macvtap: remove the dead branch (Thomas Huth) [1231879]
-- [netdrv] tun: drop broken IFF_VNET_LE (Thomas Huth) [1231879]
-- [netdrv] if_tun: add TUNSETVNETLE/TUNGETVNETLE (Thomas Huth) [1231879]
-- [netdrv] tun: TUN_VNET_LE support, fix sparse warnings for virtio headers (Thomas Huth) [1231879]
-- [netdrv] tun: drop most type defines (Thomas Huth) [1231879]
-- [netdrv] tun: move internal flag defines out of uapi (Thomas Huth) [1231879]
-- [netdrv] tun: Report "persist" flag to userspace (Thomas Huth) [1231879]
-- [netdrv] tun: Fix TUN_PKT_STRIP setting (Thomas Huth) [1231879]
-- [netdrv] tun: Fix csum_start with VLAN acceleration (Thomas Huth) [1231879]
-- [netdrv] tun: unbreak truncated packet signalling (Thomas Huth) [1231879]
-- [netdrv] tuntap: hardware vlan tx support (Thomas Huth) [1231879]
-- [netdrv] bnx2x: Alloc 4k fragment for each rx ring buffer element (Michal Schmidt) [1182054 1182736 1187290 1229122]
-- [netdrv] bnx2x: Move statistics implementation into semaphores (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: limit fw delay in kdump to 5s after boot (Michal Schmidt) [1179882 1182054 1182736 1187290 1211883 1217325 1224087]
-- [netdrv] bnx2x: Fix to prevent inner-reload (Michal Schmidt) [1182054 1182736 1187290 1191799]
-- [netdrv] bnx2x: Delay during kdump load (Michal Schmidt) [1179882 1182054 1182736 1187290 1211883 1217325 1224087]
-- [netdrv] bnx2x: remove {TPA,GRO}_ENABLE_FLAG (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: merge fp->disable_tpa with fp->mode (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: mark LRO as a fixed disabled feature if disable_tpa is set (Michal Schmidt) [1182054 1182736 1187290 1215700]
-- [netdrv] bnx2x: really disable TPA if 'disable_tpa' option is set (Michal Schmidt) [1182054 1182736 1187290 1215700]
-- [netdrv] bnx2x: Prevent inner-reload while VFs exist (Michal Schmidt) [1182054 1182736 1187290 1191799]
-- [netdrv] bnx2x: Fix busy_poll vs netpoll (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] ptp: bnx2x: use helpers for converting ns to timespec (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Use bool function returns of true/false instead of 1/0 (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Prevent probe as early as possible (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Count number of link changes (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Configure IFir et al. according to nvram (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: codespell comment spelling fixes (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Use eth_<foo>_addr instead of memset (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Fix typo in printk messages (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Fix kdump when iommu=on (Michal Schmidt) [1179882 1182054 1182736 1187290 1211883 1217325 1224087]
-- [netdrv] bnx2x: Fix kdump on 4-port device (Michal Schmidt) [1179882 1182054 1182736 1187290 1211883 1217325 1224087]
-- [netdrv] bnx2x: Fix statistics locking scheme (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Force fundamental reset for EEH recovery (Michal Schmidt) [1182054 1182736 1187290 1198641]
-- [netdrv] net: bnx2x: fix sparse warnings (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: fix napi poll return value for repoll (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] net: bnx2x: avoid macro redefinition (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] net: bnx2x: convert to timecounter adjtime (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: fix typos in "configure" (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Limit 1G link enforcement (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] ethernet/broadcom: Use napi_alloc_skb instead of netdev_alloc_skb_ip_align (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Use correct fastpath version for VFs (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: use netdev_rss_key_fill() helper (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: use napi_schedule_irqoff() (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Add a fallback multi-function mode NPAR1.5 (Michal Schmidt) [1146035 1182054 1182298 1182736 1187290]
-- [netdrv] bnx2x: new multi-function mode: UFP (Michal Schmidt) [1146035 1182054 1182298 1182736 1187290]
-- [netdrv] bnx2x: Changes with storage & MAC macros (Michal Schmidt) [1146035 1182054 1182298 1182736 1187290]
-- [netdrv] bnx2x: Fix link problems for 1G SFP RJ45 module (Michal Schmidt) [1182054 1182736 1187290]
-- [fs] xfs: fix broken i_nlink accounting for whiteout tmpfile inode (Brian Foster) [1225075]
-- [fs] xfs: xfs_iozero can return positive errno (Brian Foster) [1225075]
-- [fs] xfs: xfs_attr_inactive leaves inconsistent attr fork state behind (Brian Foster) [1225075]
-- [fs] xfs: extent size hints can round up extents past MAXEXTLEN (Brian Foster) [1225075]
-- [fs] xfs: inode and free block counters need to use __percpu_counter_compare (Brian Foster) [1225075]
-- [fs] percpu_counter: batch size aware __percpu_counter_compare() (Brian Foster) [1225075]
-- [fs] xfs: use percpu_counter_read_positive for mp->m_icount (Brian Foster) [1225075]
-- [fs] xfs: unlock i_mutex in xfs_break_layouts (Brian Foster) [1225075]
-- [fs] xfs: kill unnecessary firstused overflow check on attr3 leaf removal (Brian Foster) [1225075]
-- [fs] xfs: use larger in-core attr firstused field and detect overflow (Brian Foster) [1225075]
-- [fs] xfs: pass attr geometry to attr leaf header conversion functions (Brian Foster) [1225075]
-- [fs] xfs: Fix incorrect positive ENOMEM return (Brian Foster) [1225075]
-- [fs] xfs: xfs_mru_cache_insert() should use GFP_NOFS (Brian Foster) [1225075]
-- [fs] xfs: pF is only for function pointers (Brian Foster) [1225075]
-- [fs] xfs: fix shadow warning in xfs_da3_root_split() (Brian Foster) [1225075]
-- [fs] xfs: use bool instead of int in xfs_rename() (Brian Foster) [1225075]
-- [fs] xfs: fix NULL pointer dereference in xfs_filestream_lookup_ag() (Brian Foster) [1225075]
-- [fs] xfs: remove xfs_bmap_sanity_check() (Brian Foster) [1225075]
-- [fs] xfs: xfs_alloc_fix_minleft can underflow near ENOSPC (Brian Foster) [1225075]
-- [fs] xfs: cancel failed transaction in xfs_fs_commit_blocks() (Brian Foster) [1225075]
-- [fs] xfs: remove old and redundant comment in xfs_mount_validate_sb (Brian Foster) [1225075]
-- [fs] xfs: clarify async write failure ratelimit message (Brian Foster) [1225075]
-- [fs] xfs: log unmount events on console (Brian Foster) [1225075]
-- [fs] xfs: pass mp to XFS_WANT_CORRUPTED_RETURN (Brian Foster) [1225075]
-- [fs] xfs: pass mp to XFS_WANT_CORRUPTED_GOTO (Brian Foster) [1225075]
-- [fs] xfs: ensure truncate forces zeroed blocks to disk (Brian Foster) [1225075]
-- [fs] xfs: Fix quota type in quota structures when reusing quota file (Brian Foster) [1225075]
-- [fs] xfs: lock out page faults from extent swap operations (Brian Foster) [1225075]
-- [fs] xfs: xfs_setattr_size no longer races with page faults (Brian Foster) [1225075]
-- [fs] xfs: take i_mmap_lock on extent manipulation operations (Brian Foster) [1225075]
-- [fs] xfs: use i_mmaplock on write faults (Brian Foster) [1225075]
-- [fs] xfs: use i_mmaplock on read faults (Brian Foster) [1225075]
-- [fs] xfs: introduce mmap/truncate lock (Brian Foster) [1225075]
-- [fs] xfs: remove xfs_mod_incore_sb API (Brian Foster) [1225075]
-- [fs] xfs: replace xfs_mod_incore_sb_batched (Brian Foster) [1225075]
-- [fs] xfs: introduce xfs_mod_frextents (Brian Foster) [1225075]
-- [fs] xfs: Remove icsb infrastructure (Brian Foster) [1225075]
-- [fs] xfs: use generic percpu counters for free block counter (Brian Foster) [1225075]
-- [fs] xfs: use generic percpu counters for free inode counter (Brian Foster) [1225075]
-- [fs] xfs: use generic percpu counters for inode counter (Brian Foster) [1225075]
-- [fs] xfs: recall pNFS layouts on conflicting access (Brian Foster) [1225075]
-- [fs] xfs: implement pNFS export operations (Brian Foster) [1225075]
-- [fs] xfs: report proper f_files in statfs if we overshoot imaxpct (Brian Foster) [1225075]
-- [fs] xfs: xfs_ioctl_setattr_check_projid can be static (Brian Foster) [1225075]
-- [fs] xfs: growfs should use synchronous transactions (Brian Foster) [1225075]
-- [fs] xfs: change kmem_free to use generic kvfree() (Brian Foster) [1225075]
-- [fs] xfs: factor out a xfs_update_prealloc_flags() helper (Brian Foster) [1225075]
-- [fs] xfs: remove incorrect error negation in attr_multi ioctl (Brian Foster) [1225075]
-- [fs] xfs: set superblock buffer type correctly (Brian Foster) [1225075]
-- [fs] xfs: set buf types when converting extent formats (Brian Foster) [1225075]
-- [fs] xfs: inode unlink does not set AGI buffer type (Brian Foster) [1225075]
-- [fs] xfs: ensure buffer types are set correctly (Brian Foster) [1225075]
-- [fs] xfs: sanitise sb_bad_features2 handling (Brian Foster) [1225075]
-- [fs] xfs: consolidate superblock logging functions (Brian Foster) [1225075]
-- [fs] xfs: remove bitfield based superblock updates (Brian Foster) [1225075]
-- [fs] xfs: Remove some pointless quota checks (Brian Foster) [1225075]
-- [fs] xfs: Remove some useless flags tests (Brian Foster) [1225075]
-- [fs] xfs: Remove useless test (Brian Foster) [1225075]
-- [fs] xfs: fix implicit bool to int conversion (Brian Foster) [1225075]
-- [fs] xfs: pass a 64-bit count argument to xfs_iomap_write_unwritten (Brian Foster) [1225075]
-- [fs] xfs: move xfs_bmap_finish prototype (Brian Foster) [1225075]
-- [fs] xfs: move struct xfs_bmalloca to libxfs (Brian Foster) [1225075]
-- [fs] xfs: move xfs_types.h to libxfs (Brian Foster) [1225075]
-- [fs] xfs: move xfs_fs.h to libxfs (Brian Foster) [1225075]
-- [fs] xfs: remove extra newlines from xfs messages (Brian Foster) [1225075]
-- [fs] xfs: initialize log buf I/O completion wq on log alloc (Brian Foster) [1225075]
-
-* Fri Jun 19 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-273.el7]
-- [netdrv] i40e/i40evf: Fix mixed size frags and linearization (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: remove time_stamp member (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: force inline transmit functions (Stefan Assmann) [1173789]
-- [netdrv] i40evf: skb->xmit_more support (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Remove unneeded TODO (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Add stats to count Tunnel ATR hits (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Add ATR support for tunneled TCP/IPv4/IPv6 packets (Stefan Assmann) [1173789]
-- [netdrv] net: batch of last_rx update avoidance in ethernet drivers (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Save WR_CSR_PROT field from DEV/FUNC capabilities (Stefan Assmann) [1173789]
-- [netdrv] i40evf: remove aq_pending (Stefan Assmann) [1173789]
-- [netdrv] i40evf: fix bad indentation (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Use dma_rmb where appropriate (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Refactor VF RSS code (Stefan Assmann) [1173789]
-- [netdrv] i40evf: protect VLAN filter list (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Set Ethernet protocol correctly when Tx VLAN offloads are disabled (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: fix bug when skb allocation fails (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Fix Outer UDP RX checksum code (Stefan Assmann) [1173789]
-- [netdrv] i40evf: add FW version to ethtool info (Stefan Assmann) [1173789]
-- [netdrv] i40evf: resequence close operations (Stefan Assmann) [1173789]
-- [netdrv] i40evf: delay releasing rings (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: implement KR2 support (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf version (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: fix accidental write to ITR registers (Stefan Assmann) [1173789]
-- [netdrv] i40vf: don't stop me now (Stefan Assmann) [1173789]
-- [netdrv] ethernet: codespell comment spelling fixes (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump version (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: enable prefetch of Tx descriptors during cleanup (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Simplify tunnel selection logic (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Refactor i40e_debug_aq and make some functions static (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Version bump (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Clean up some formatting and other things (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: grab NVM devstarter version not image version (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump versions (Stefan Assmann) [1173789]
-- [netdrv] i40evf: ethtool RSS fixes (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Add missing packet types for VXLAN encapsulated packet types (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: print FW build number in version string (Stefan Assmann) [1173789]
-- [netdrv] i40evf: TCP/IPv6 over Vxlan Tx checksum offload fix (Stefan Assmann) [1173789]
-- [netdrv] i40e: fix race in hang check (Stefan Assmann) [1173789]
-- [netdrv] i40e: Fix TSO with more than 8 frags per segment issue (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Update driver versions (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Add more info to interrupt vector names (Stefan Assmann) [1173789]
-- [netdrv] i40evf: allow enabling of debug prints via ethtool (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Use advertised speed settings in ethtool and refactor get_settings (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Fix output of i40e_debug_aq() for big endian machines (Stefan Assmann) [1173789]
-- [netdrv] i40evf: don't wait forever (Stefan Assmann) [1173789]
-- [netdrv] i40evf: refactor reset (Stefan Assmann) [1173789]
-- [netdrv] i40evf: disable NAPI polling sooner (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump Driver Versions (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Remove unused variable an_enable and function update_link_info (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: i40e_register.h updates (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: restrict VC opcodes to their initial values (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Refactor the receive routines (Stefan Assmann) [1173789]
-- [netdrv] i40e: Fix for stats init function call in Rx setup (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Add call to u64_stats_init to init (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Force Tx writeback on ITR (Stefan Assmann) [1173789]
-- [netdrv] i40evf: stop the watchdog for shutdown (Stefan Assmann) [1173789]
-- [netdrv] i40evf: ignore bogus messages from FW (Stefan Assmann) [1173789]
-- [netdrv] i40evf: reset on module unload (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump i40e and i40evf versions (Stefan Assmann) [1173789]
-- [netdrv] i40e: Support for NPAR iSCSI partition with DCB (Stefan Assmann) [1173789]
-- [netdrv] i40e: AQ API updates for new commands (Stefan Assmann) [1173789]
-- [netdrv] i40e: AQ API updates (Stefan Assmann) [1173789]
-- [netdrv] i40e: add more struct size checks (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf versions (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Increase ASQ timeout (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: AdminQ updates ww36 (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: find partition_id in npar mode (Stefan Assmann) [1173789]
-- [netdrv] i40evf: kick a stalled admin queue (Stefan Assmann) [1173789]
-- [netdrv] i40evf: enable interrupt 0 appropriately (Stefan Assmann) [1173789]
-- [netdrv] i40evf: don't fire traffic IRQs when the interface is down (Stefan Assmann) [1173789]
-- [netdrv] i40evf: remove leftover VLAN filters (Stefan Assmann) [1173789]
-- [netdrv] i40evf: refactor shutdown code (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Remove some scary log messages (Stefan Assmann) [1173789]
-- [netdrv] i40evf: remove redundant code (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Convert macro to static inline (Stefan Assmann) [1173789]
-- [netdrv] i40e: check for AQ timeout in aq_rc decode (Stefan Assmann) [1173789]
-- [netdrv] i40e: set max limit for access polling (Stefan Assmann) [1173789]
-- [netdrv] i40e: remove unused nvm_semaphore_wait (Stefan Assmann) [1173789]
-- [netdrv] i40e: add range check to i40e_aq_rc_to_posix (Stefan Assmann) [1173789]
-- [netdrv] i40e: let firmware catch the NVM busy error (Stefan Assmann) [1173789]
-- [netdrv] i40e: Bump i40e version to 1.2.2 and i40evf version to 1.0.6 (Stefan Assmann) [1173789]
-- [netdrv] i40evf: make early init sequence even more robust (Stefan Assmann) [1173789]
-- [netdrv] i40e: Define and use i40e_is_vf macro (Stefan Assmann) [1173789]
-- [netdrv] i40e: Add a virtual channel op to config RSS (Stefan Assmann) [1173789]
-- [netdrv] i40e: remove useless debug noise (Stefan Assmann) [1173789]
-- [netdrv] i40evf: remove unnecessary else (Stefan Assmann) [1173789]
-- [netdrv] i40evf: make comparisons consistent (Stefan Assmann) [1173789]
-- [netdrv] i40evf: make checkpatch happy (Stefan Assmann) [1173789]
-- [netdrv] i40evf: update header comments (Stefan Assmann) [1173789]
-- [netdrv] i40e: don't overload fields (Stefan Assmann) [1173789]
-- [netdrv] i40e: use netdev_rss_key_fill() helper (Stefan Assmann) [1173789]
-- [netdrv] i40evf: don't use more queues than CPUs (Stefan Assmann) [1173789]
-- [netdrv] i40evf: make early init processing more robust (Stefan Assmann) [1173789]
-- [netdrv] i40e: clean up throttle rate code (Stefan Assmann) [1173789]
-- [netdrv] i40e: poll firmware slower (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Add support for 10G base T parts (Stefan Assmann) [1173789]
-- [netdrv] i40evf: properly handle multiple AQ messages (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Use usleep_range() instead of udelay() (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Fix whitespace indentation (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf versions (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Set skb->csum_level for encapsulated checksum (Stefan Assmann) [1173789]
-- [netdrv] i40e: Make sure to be in VEB mode if SRIOV is enabled at probe (Stefan Assmann) [1173788]
-- [netdrv] i40e: start up in VEPA mode by default (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Fix mixed size frags and linearization (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version to 1.3.4 (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: remove time_stamp member (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: force inline transmit functions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Move the FD ATR/SB messages to a higher debug level (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix unrecognized FCOE EOF case (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Remove unneeded TODO (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove unnecessary pf members (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Add stats to count Tunnel ATR hits (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Add ATR support for tunneled TCP/IPv4/IPv6 packets (Stefan Assmann) [1173788]
-- [netdrv] i40e: Disable offline diagnostics if VFs are enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: Collect PFC XOFF RX stats even in single TC case (Stefan Assmann) [1173788]
-- [netdrv] net: batch of last_rx update avoidance in ethernet drivers (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version to 1.3.2 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use new 40G speeds (Stefan Assmann) [1173788]
-- [netdrv] i40e: get rid of unused locals (Stefan Assmann) [1173788]
-- [netdrv] i40e: handle possible memory allocation failure (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Save WR_CSR_PROT field from DEV/FUNC capabilities (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable user dump of internal hardware state (Stefan Assmann) [1173788]
-- [netdrv] i40e: print FCoE capability reported by the device function (Stefan Assmann) [1173788]
-- [netdrv] i40e: For VF reset (VFR and VFLR) add some more delay (Stefan Assmann) [1173788]
-- [netdrv] i40e: move VF notification routines up (Stefan Assmann) [1173788]
-- [netdrv] i40e: notify VFs of link state (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add support to program FDir SB rules for VF from PF through ethtool (Stefan Assmann) [1173788]
-- [netdrv] i40e: stop VF rings (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Use dma_rmb where appropriate (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump to version 1.3.1 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Communicate VSI id in place of VSI index to the VFs (Stefan Assmann) [1173788]
-- [netdrv] i40e: stop flow director on shutdown (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix up VXLAN messages (Stefan Assmann) [1173788]
-- [netdrv] i40e: Don't register/de-register apps on NIC partitions in MFP mode (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Set Ethernet protocol correctly when Tx VLAN offloads are disabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: warn at the right time (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix invalid void return in FCoE code (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: fix bug when skb allocation fails (Stefan Assmann) [1173788]
-- [netdrv] i40e: Change some memcpys to struct assignments (Stefan Assmann) [1173788]
-- [netdrv] i40e: Print some more info to help figure out the cause of HMC error (Stefan Assmann) [1173788]
-- [netdrv] i40e: validate VSI param from VFs (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version to 1.2.43 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Increase PF reset max loop limit (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: implement KR2 support (Stefan Assmann) [1173788]
-- [netdrv] i40e: add NVM update events to AQ clean (Stefan Assmann) [1173788]
-- [netdrv] i40e: add ethtool RSS support (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf version (Stefan Assmann) [1173788]
-- [netdrv] i40e: add MAC printing to debugfs dump VSI (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix inconsistent use of PF/VF vs pf/vf (Stefan Assmann) [1173788]
-- [netdrv] i40e: tame the nvmupdate read and write complaints (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: fix accidental write to ITR registers (Stefan Assmann) [1173788]
-- [netdrv] i40e: future proof some sizeof calls (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove "hello world" strings from i40e driver (Stefan Assmann) [1173788]
-- [netdrv] i40e: Strip configfs code (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump version (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: enable prefetch of Tx descriptors during cleanup (Stefan Assmann) [1173788]
-- [netdrv] i40e: Simplify code for rss_size_max config (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Simplify tunnel selection logic (Stefan Assmann) [1173788]
-- [netdrv] i40e: FD filters flush policy changes (Stefan Assmann) [1173788]
-- [netdrv] i40e: Avoid logs while adding/deleting FD-SB filters (Stefan Assmann) [1173788]
-- [netdrv] i40e: print port stats only on partition 1 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Move code to enable/disable Loopback to the main file (Stefan Assmann) [1173788]
-- [netdrv] i40e: rework vector reservation (Stefan Assmann) [1173788]
-- [netdrv] i40e: clean up debug_read_register (Stefan Assmann) [1173788]
-- [netdrv] i40e: store msg_enable in the right size (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove unneeded conversion (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove duplicate code (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Refactor i40e_debug_aq and make some functions static (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix mismatching type for ioremap_len (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Version bump (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't spam the system log (Stefan Assmann) [1173788]
-- [netdrv] i40e: move IRQ tracking setup into MSIX setup (Stefan Assmann) [1173788]
-- [netdrv] i40e: Ioremap changes (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Clean up some formatting and other things (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add AOC PHY types to case statements (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix ethtool offline test (Stefan Assmann) [1173788]
-- [netdrv] i40e: Reassign incorrect PHY type to fix a FW bug (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix XPS mask when resetting (Stefan Assmann) [1173788]
-- [netdrv] i40e: use more portable sign extension (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: grab NVM devstarter version not image version (Stefan Assmann) [1173788]
-- [netdrv] i40e: Don't check operational or sync bit for App TLV (Stefan Assmann) [1173788]
-- [netdrv] i40e: during LED interaction ignore activity LED src modes (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix NPAR Tx Scheduler init (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix dependencies in the i40e driver on configfs (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump versions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Only enable TC0 for NIC partition type (Stefan Assmann) [1173788]
-- [netdrv] i40e: Register DCBNL ops in MFP mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix RSS size at init since default num queue calculation has changed (Stefan Assmann) [1173788]
-- [netdrv] i40e: Move RSS table size for VSIs to the VSI struct (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Add missing packet types for VXLAN encapsulated packet types (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix issue with removal of apps from DBCNL app table (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add FW check to disable DCB and wrap autoneg workaround with FW check (Stefan Assmann) [1173788]
-- [netdrv] i40e: Enable more than 64 qps for the Main VSI (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't disable PF LB when disabling VFs (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add safety net for switch calling (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: print FW build number in version string (Stefan Assmann) [1173788]
-- [netdrv] i40e: Skip the priority tagging if DCB is not enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: check pointers before use (Stefan Assmann) [1173788]
-- [netdrv] i40e: catch NVM write semaphore timeout and retry (Stefan Assmann) [1173788]
-- [netdrv] i40e: stop flow director on shutdown (Stefan Assmann) [1173788]
-- [netdrv] i40e: disconnect irqs on shutdown (Stefan Assmann) [1173788]
-- [netdrv] i40e: Issue a PF reset if Tx queue disable timeout (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix the Tx ring qset handle when DCB reconfigures (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix the case where per TC queue count was higher than queues enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix race in hang check (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix TSO with more than 8 frags per segment issue (Stefan Assmann) [1173788]
-- [netdrv] i40e: Don't check for Tx hang when PF down (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix shift precedence issue (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix memory leak at failure path in i40e_dbg_command_write() (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Update driver versions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use ethtool private flags to display NPAR status (Stefan Assmann) [1173788]
-- [netdrv] i40e: Set FLAG_RD when sending buffer FW must read (Stefan Assmann) [1173788]
-- [netdrv] i40e: print Rx packet split status (Stefan Assmann) [1173788]
-- [netdrv] i40e: setup FCoE device type (Stefan Assmann) [1173788]
-- [netdrv] i40e: Set BUF flag for Set Version AQ command (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add support for getlink, setlink ndo ops (Stefan Assmann) [1173788]
-- [netdrv] i40e: Implement configfs for NPAR BW configuration (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add NPAR BW get and set functions (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable packet split only when IOMMU present (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add method to keep track of current rxnfc settings (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Use advertised speed settings in ethtool and refactor get_settings (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Fix output of i40e_debug_aq() for big endian machines (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix i40e_ndo_set_vf_spoofchk (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump Driver Versions (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Remove unused variable an_enable and function update_link_info (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix the EMPR interrupt received handling (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: i40e_register.h updates (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use #define for the VSI connection type (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: restrict VC opcodes to their initial values (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Refactor the receive routines (Stefan Assmann) [1173788]
-- [netdrv] i40e: rename debugfs clear_stats option (Stefan Assmann) [1173788]
-- [netdrv] i40e: update Shadow RAM read/write functions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix for stats init function call in Rx setup (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Add call to u64_stats_init to init (Stefan Assmann) [1173788]
-- [netdrv] i40e: Enable Loopback for the FCOE vsi as well (Stefan Assmann) [1173788]
-- [netdrv] i40e: use dev_port for fcoe netdev (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix function header (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix led blink toggle to enable steady state (Stefan Assmann) [1173788]
-- [netdrv] i40evf: Force Tx writeback on ITR (Stefan Assmann) [1173788]
-- [netdrv] i40e: stop the service task at shutdown (Stefan Assmann) [1173788]
-- [netdrv] i40e: add locking around VF reset (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use even more ARQ descriptors (Stefan Assmann) [1173788]
-- [netdrv] i40e: delay after VF reset (Stefan Assmann) [1173788]
-- [netdrv] i40e: avoid use of uninitialized v_budget in i40e_init_msix (Stefan Assmann) [1173788]
-- [netdrv] i40e: i40e_fcoe.c: Remove unused function (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump i40e and i40evf versions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Support for NPAR iSCSI partition with DCB (Stefan Assmann) [1173788]
-- [netdrv] i40e: when Rx timestamps disabled set specific mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: use same check for Rx hang as for Rx timestamps (Stefan Assmann) [1173788]
-- [netdrv] i40e: AQ API updates for new commands (Stefan Assmann) [1173788]
-- [netdrv] i40e: AQ API updates (Stefan Assmann) [1173788]
-- [netdrv] i40e: add more struct size checks (Stefan Assmann) [1173788]
-- [netdrv] i40e: Issue "Stop LLDP" command for firmware older than v4.3 (Stefan Assmann) [1173788]
-- [netdrv] i40e: check I40E_FLAG_PTP before handling Tx or Rx timestamps (Stefan Assmann) [1173788]
-- [netdrv] i40e: only enable PTP interrupt cause if PTP is enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf versions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Dump Stats string removed from debugfs help command (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add define for interrupt name string len (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't give up on DCB error after reset (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix proc/int descriptions (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Increase ASQ timeout (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: AdminQ updates ww36 (Stefan Assmann) [1173788]
-- [netdrv] i40e: adds FCoE configure option (Stefan Assmann) [1173788]
-- [netdrv] i40e: limit sriov to partition 1 of NPAR configurations (Stefan Assmann) [1173788]
-- [netdrv] i40e: Don't exit link event early if link speed has changed (Stefan Assmann) [1173788]
-- [netdrv] i40e: limit WoL and link settings to partition 1 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Adding function for reading PBA String (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: find partition_id in npar mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: remove VN2VN related mac filters (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add warning for NPAR partitions with link speed less than 10Gbps (Stefan Assmann) [1173788]
-- [netdrv] i40e: disable IOV before freeing resources (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix bug with TCP over IPv6 over VXLAN (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix Rx checksum error counter (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix un-necessary Tx hangs (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix possible memory leak in i40e_dbg_dump_desc (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Convert macro to static inline (Stefan Assmann) [1173788]
-- [netdrv] i40e: add to NVM update debug message (Stefan Assmann) [1173788]
-- [netdrv] i40e: check for AQ timeout in aq_rc decode (Stefan Assmann) [1173788]
-- [netdrv] i40e: poll on NVM semaphore only if not other error (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix up NVM update sm error handling (Stefan Assmann) [1173788]
-- [netdrv] i40e: set max limit for access polling (Stefan Assmann) [1173788]
-- [netdrv] i40e: remove unused nvm_semaphore_wait (Stefan Assmann) [1173788]
-- [netdrv] i40e: init NVM update state on adminq init (Stefan Assmann) [1173788]
-- [netdrv] i40e: add range check to i40e_aq_rc_to_posix (Stefan Assmann) [1173788]
-- [netdrv] i40e: rework debug messages for NVM update (Stefan Assmann) [1173788]
-- [netdrv] i40e: let firmware catch the NVM busy error (Stefan Assmann) [1173788]
-- [netdrv] i40e: better error messages for NVM update issues (Stefan Assmann) [1173788]
-- [netdrv] i40e: clear NVM update state on ethtool test (Stefan Assmann) [1173788]
-- [netdrv] ptp: i40e: convert to the 64 bit get/set time methods (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use eth_skb_pad and skb_put_padto helpers (Stefan Assmann) [1173788]
-- [netdrv] i40e: Reduce stack in i40e_dbg_dump_desc (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump i40e version to 1.2.2 and i40evf version to 1.0.6 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Re enable Main VSI loopback setting in the reset path (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add new update VSI flow to accommodate FW fix with VSI Loopback mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: Increase reset delay (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix netdev_stat macro definition (Stefan Assmann) [1173788]
-- [netdrv] i40e: Define and use i40e_is_vf macro (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add a virtual channel op to config RSS (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't enable PTP support on more than one PF per port (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add description to misc and fd interrupts (Stefan Assmann) [1173788]
-- [netdrv] i40e: allow various base numbers in debugfs aq commands (Stefan Assmann) [1173788]
-- [netdrv] i40e: remove useless debug noise (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove unneeded break statement (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable fdb add code, remove unused code (Stefan Assmann) [1173788]
-- [netdrv] i40e: trigger SW INT with no ITR wait (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't overload fields (Stefan Assmann) [1173788]
-- [netdrv] i40e: Set XPS bit mask to zero in DCB mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: Prevent link flow control settings when PFC is enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: Do not disable/enable FCoE VSI with DCB reconfig (Stefan Assmann) [1173788]
-- [netdrv] i40e: Modify Tx disable wait flow in case of DCB reconfiguration (Stefan Assmann) [1173788]
-- [netdrv] i40e: Update VEB's enabled_tc after reconfiguration (Stefan Assmann) [1173788]
-- [netdrv] i40e: Check for LLDP AdminStatus before querying DCBX (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add support to firmware CEE DCBX mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: Resume Port Tx after DCB event (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version to 1.1.23 (Stefan Assmann) [1173788]
-- [netdrv] i40e: re-enable VFLR interrupt sooner (Stefan Assmann) [1173788]
-- [netdrv] i40e: only warn once of PTP nonsupport in 100Mbit speed (Stefan Assmann) [1173788]
-- [netdrv] i40e: use netdev_rss_key_fill() helper (Stefan Assmann) [1173788]
-- [netdrv] i40e: clean up throttle rate code (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't do link_status or stats collection on every ARQ (Stefan Assmann) [1173788]
-- [netdrv] i40e: poll firmware slower (Stefan Assmann) [1173788]
-- [netdrv] i40e: properly parse MDET registers (Stefan Assmann) [1173788]
-- [netdrv] i40e: configure VM ID in qtx_ctl (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable debug earlier (Stefan Assmann) [1173788]
-- [netdrv] i40e: better wording for resource tracking errors (Stefan Assmann) [1173788]
-- [netdrv] i40e: scale msix vector use when more cores than vectors (Stefan Assmann) [1173788]
-- [netdrv] i40e: remove debugfs dump stats (Stefan Assmann) [1173788]
-- [netdrv] i40e: avoid disable of interrupt when changing ITR (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix link checking logic (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add condition to enter fdir flush and reinit (Stefan Assmann) [1173788]
-- [netdrv] i40e: _MASK vs _SHIFT typo in i40e_handle_mdd_event() (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version (Stefan Assmann) [1173788]
-- [netdrv] i40e: Moving variable declaration out of the loops (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add 10GBaseT support (Stefan Assmann) [1173788]
-- [netdrv] i40e: process link events when setting up switch (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix a bug where Rx would stop after some time (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Use usleep_range() instead of udelay() (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Fix whitespace indentation (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable LSE poke and simplify link state (Stefan Assmann) [1173788]
-- [netdrv] i40e: mask phy events (Stefan Assmann) [1173788]
-- [netdrv] i40e: skb->xmit_more support (Stefan Assmann) [1173788]
-- [netdrv] i40e/igb: Convert to dev_consume_skb_any() (Stefan Assmann) [1173788]
-- [netdrv] i40e: use global pci_vfs_assigned() to replace local i40e_vfs_are_assigned() (Stefan Assmann) [1173788]
-- [netdrv] i40e: Set skb->csum_level for encapsulated checksum (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable CONFIG_I40E_VXLAN (Stefan Assmann) [1173788]
-
-* Thu Jun 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-272.el7]
-- [netdrv] enic: fix memory leak in rq_clean (Stefan Assmann) [1159148]
-- [netdrv] enic: check return value for stat dump (Stefan Assmann) [1159148]
-- [netdrv] enic: unlock napi busy poll before unmasking intr (Stefan Assmann) [1159148]
-- [netdrv] enic: Grammar s/an negative/a negative/ (Stefan Assmann) [1159148]
-- [netdrv] ethernet: Use eth_<foo>_addr instead of memset (Stefan Assmann) [1159148]
-- [netdrv] enic: do notify_check before returning credits (Stefan Assmann) [1159148]
-- [netdrv] enic: enic_main: fix sparse warnings (Stefan Assmann) [1159148]
-- [netdrv] enic: enic_ethtool: fix sparse warning (Stefan Assmann) [1159148]
-- [netdrv] enic: fix rx napi poll return value (Stefan Assmann) [1159148]
-- [netdrv] enic: reconfigure resources for kdump crash kernel (Stefan Assmann) [1159148]
-- [netdrv] enic: free all rq buffs when allocation fails (Stefan Assmann) [1159148]
-- [netdrv] net: ethernet: cisco: enic: enic_dev: Remove some unused functions (Stefan Assmann) [1159148]
-- [netdrv] enic: add stats for dma mapping error (Stefan Assmann) [1159148]
-- [netdrv] enic: check dma_mapping_error (Stefan Assmann) [1159148]
-- [netdrv] enic: make vnic_wq_buf doubly linked (Stefan Assmann) [1159148]
-- [netdrv] igbvf: use netif_carrier_off earlier when bringing if down (Stefan Assmann) [1173785]
-- [netdrv] igbvf: cleanup msleep() and min/max() usage (Stefan Assmann) [1173785]
-- [netdrv] igbvf: Fix code comments and whitespace (Stefan Assmann) [1173785]
-- [netdrv] igbvf: Fix checksum error when using stacked vlan (Stefan Assmann) [1173785]
-- [netdrv] igb: Don't use NETDEV_FRAG_PAGE_MAX_SIZE in descriptor calculation (Stefan Assmann) [1173784]
-- [netdrv] igb: Fix NULL assignment to incorrect variable in igb_reset_q_vector (Stefan Assmann) [1173784]
-- [netdrv] igb: Fix oops on changing number of rings (Stefan Assmann) [1173784]
-- [netdrv] igb: simplify and clean up igb_enable_mas() (Stefan Assmann) [1173784]
-- [netdrv] ptp: igb: use helpers for converting ns to timespec (Stefan Assmann) [1173784]
-- [netdrv] ptp: igb: convert to the 64 bit get/set time methods (Stefan Assmann) [1173784]
-- [netdrv] igb: Enable TSO for stacked vlan (Stefan Assmann) [1173784]
-- [netdrv] igb: use netif_carrier_off earlier when bringing if down (Stefan Assmann) [1173784]
-- [netdrv] ethernet: codespell comment spelling fixes (Stefan Assmann) [1173784]
-- [netdrv] igb: Make arrays on stack static const to avoid reallocation (Stefan Assmann) [1173784]
-- [netdrv] igb: Fix warning pin may be used uninitialized (Stefan Assmann) [1173784]
-- [netdrv] igb: Indicate failure on vf reset for empty mac address (Stefan Assmann) [1173784]
-- [netdrv] igb: enable auxiliary PHC functions for the i210 (Stefan Assmann) [1173784]
-- [netdrv] ptp: introduce programmable pins (Stefan Assmann) [1173784]
-- [netdrv] igb: enable internal PPS for the i210 (Stefan Assmann) [1173784]
-- [netdrv] igb: serialize access to the time sync interrupt registers (Stefan Assmann) [1173784]
-- [netdrv] igb: refactor time sync interrupt handling (Stefan Assmann) [1173784]
-- [netdrv] igb: Clean-up page reuse code (Stefan Assmann) [1173784]
-- [netdrv] igb: convert to CYCLECOUNTER_MASK macro (Stefan Assmann) [1173784]
-- [netdrv] igb_ptp: Include clocksource.h to get CLOCKSOURCE_MASK (Stefan Assmann) [1173784]
-- [netdrv] igb: Remove unneeded FIXME (Stefan Assmann) [1173784]
-- [netdrv] net: igb: convert to timecounter adjtime (Stefan Assmann) [1173784]
-- [netdrv] fm10k/igb/ixgbe: Use dma_rmb on Rx descriptor reads (Stefan Assmann) [1173784]
-- [netdrv] ethernet/intel: Use napi_alloc_skb (Stefan Assmann) [1173784]
-- [netdrv] ethernet/intel: Use eth_skb_pad and skb_put_padto helpers (Stefan Assmann) [1173784]
-- [netdrv] e1000e / igb / pm: Eliminate CONFIG_PM_RUNTIME (Stefan Assmann) [1173784]
-- [netdrv] igb: Fixes needed for surprise removal support (Stefan Assmann) [1173784]
-- [netdrv] igb: use netdev_rss_key_fill() helper (Stefan Assmann) [1173784]
-- [netdrv] fm10k/igb/ixgbe: Replace __skb_alloc_page with dev_alloc_page (Stefan Assmann) [1173784]
-- [netdrv] igb: don't reuse pages with pfmemalloc flag (Stefan Assmann) [1173784]
-- [netdrv] igb: fix race accessing page->_count (Stefan Assmann) [1173784]
-- [netdrv] igb: bump version to 5.2.15 (Stefan Assmann) [1173784]
-- [netdrv] i40e/igb: Convert to dev_consume_skb_any() (Stefan Assmann) [1173784]
-- [netdrv] igb: remove blocking phy read from inside spinlock (Stefan Assmann) [1173784]
-- [netdrv] igb: add flags to set eee advertisement mode (Stefan Assmann) [1173784]
-- [netdrv] igb: use new eth_get_headlen interface (Stefan Assmann) [1173784]
-- [netdrv] igb: Convert to use devm_hwmon_device_register_with_groups (Stefan Assmann) [1173784]
-- [netdrv] ptp: tg3: use helpers for converting ns to timespec (Ivan Vecera) [1182731]
-- [netdrv] ptp: tg3: convert to the 64 bit get/set time methods (Ivan Vecera) [1182731]
-- [netdrv] tg3: Hold tp->lock before calling tg3_halt() from tg3_init_one() (Ivan Vecera) [1182731]
-- [netdrv] tg3: Release tp->lock before invoking synchronize_irq() (Ivan Vecera) [1182731]
-- [netdrv] tg3: tg3_reset_task() needs to use rtnl_lock to synchronize (Ivan Vecera) [1182731]
-- [netdrv] tg3: tg3_timer() should grab tp->lock before checking for tp->irq_sync (Ivan Vecera) [1182731]
-- [netdrv] tg3: tg3_disable_ints using uninitialized mailbox value to disable interrupts (Ivan Vecera) [1182731]
-- [netdrv] tg3: fix ring init when there are more TX than RX channels (Ivan Vecera) [1182731]
-- [netdrv] tg3: use netdev_rss_key_fill() helper (Ivan Vecera) [1182731]
-- [netdrv] tg3: Add skb->xmit_more support (Ivan Vecera) [1182731]
-- [netdrv] tg3: Allow for recieve of full-size 8021AD frames (Ivan Vecera) [1182731]
-- [netdrv] tg3: Work around HW/FW limitations with vlan encapsulated frames (Ivan Vecera) [1182731]
-- [netdrv] tg3: Convert to use hwmon_device_register_with_groups (Ivan Vecera) [1182731]
-- [netdrv] bnx2-cnic: Driver Version Update (Ivan Vecera) [1182732]
-- [netdrv] bnx2: Fix for Chip Initialization (Ivan Vecera) [1182732]
-- [netdrv] bnx2-cnic: Driver Rebranding Changes (Ivan Vecera) [1182732]
-- [netdrv] bnx2: Correctly receive full sized 802.1ad frames (Ivan Vecera) [1182732]
-- [netdrv] be2net: enable config options (Ivan Vecera) [1182733]
-- [netdrv] be2net: Replace dma/pci_alloc_coherent() calls with dma_zalloc_coherent() (Ivan Vecera) [1182733]
-- [netdrv] be2net: make hwmon interface optional (Ivan Vecera) [1182733]
-- [netdrv] be2net: Support for OS2BMC (Ivan Vecera) [1182733]
-- [netdrv] be2net: Report a "link down" to the stack when a fatal error or fw reset happens (Ivan Vecera) [1182733]
-- [netdrv] be2net: Export board temperature using hwmon-sysfs interface (Ivan Vecera) [1182733]
-- [netdrv] be2net: update the driver version to 10.6.0.2 (Ivan Vecera) [1182733]
-- [netdrv] be2net: update copyright year to 2015 (Ivan Vecera) [1182733]
-- [netdrv] be2net: use be_virtfn() instead of !be_physfn() (Ivan Vecera) [1182733]
-- [netdrv] be2net: simplify UFI compatibility checking (Ivan Vecera) [1182733]
-- [netdrv] be2net: post full RXQ on interface enable (Ivan Vecera) [1182733]
-- [netdrv] be2net: check for INSUFFICIENT_VLANS error (Ivan Vecera) [1182733]
-- [netdrv] be2net: receive pkts with L3, L4 errors on VFs (Ivan Vecera) [1182733]
-- [netdrv] be2net: set interrupt moderation for Skyhawk-R using EQ-DB (Ivan Vecera) [1182733]
-- [netdrv] be2net: add support for spoofchk setting (Ivan Vecera) [1182733]
-- [netdrv] be2net: log link status (Ivan Vecera) [1182733]
-- [netdrv] be2net: Fix a bug in Rx buffer posting (Ivan Vecera) [1182733]
-- [netdrv] be2net: bump up the driver version to 10.6.0.1 (Ivan Vecera) [1182733]
-- [netdrv] be2net: setup xps queue mapping (Ivan Vecera) [1182733]
-- [netdrv] be2net: restrict MODIFY_EQ_DELAY cmd to a max of 8 EQs (Ivan Vecera) [1182733]
-- [netdrv] be2net: Prevent VFs from enabling VLAN promiscuous mode (Ivan Vecera) [1182733]
-- [netdrv] be2net: codespell comment spelling fixes (Ivan Vecera) [1182733]
-- [netdrv] be2net: implement .sriov_configure() PCI callback (Ivan Vecera) [1182733]
-- [netdrv] be2net: re-distribute SRIOV resources allowed by FW (Ivan Vecera) [1182733]
-- [netdrv] be2net: avoid creating the non-RSS default RXQ if FW allows to (Ivan Vecera) [1182733]
-- [netdrv] be2net: Use eth_<foo>_addr instead of memset (Ivan Vecera) [1182733]
-- [netdrv] be2net: move be_func_init() call inside be_setup() (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor adapter resource cleanup sequence into be_cleanup() (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor adapter resource initialzation sequence into be_resume() (Ivan Vecera) [1182733]
-- [netdrv] be2net: remove code duplication relating to Lancer reset sequence (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor error detect/recovery function (Ivan Vecera) [1182733]
-- [netdrv] be2net: use a wrapper to schedule and cancel error detection task (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor function initalization sequence into be_func_init() (Ivan Vecera) [1182733]
-- [netdrv] be2net: get rid of be_get_initial_config() call from be_probe() (Ivan Vecera) [1182733]
-- [netdrv] be2net: move adapter fields alloc/free code to new routines (Ivan Vecera) [1182733]
-- [netdrv] be2net: Add a few inline functions to test TXQ conditions (Ivan Vecera) [1182733]
-- [netdrv] be2net: Minor code cleanup in tx completion process (Ivan Vecera) [1182733]
-- [netdrv] be2net: Refactor be_xmit_enqueue() routine (Ivan Vecera) [1182733]
-- [netdrv] be2net: Refactor wrb_fill_hdr() routine (Ivan Vecera) [1182733]
-- [netdrv] be2net: avoid unncessary swapping of fields in eth_tx_wrb (Ivan Vecera) [1182733]
-- [netdrv] be2net: process port misconfig async event (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor be_set_rx_mode() and be_vid_config() for readability (Ivan Vecera) [1182733]
-- [netdrv] be2net: remove duplicate code in be_cmd_rx_filter() (Ivan Vecera) [1182733]
-- [netdrv] be2net: use offset based FW flashing for Skyhawk chip (Ivan Vecera) [1182733]
-- [netdrv] be2net: avoid flashing SH-B0 UFI image on SH-P2 chip (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor code that checks flash file compatibility (Ivan Vecera) [1182733]
-- [netdrv] be2net: replace (1 << x) with BIT(x) (Ivan Vecera) [1182733]
-- [netdrv] be2net: move un-exported routines from be.h to respective src files (Ivan Vecera) [1182733]
-- [netdrv] be2net: fix sparse warning (Ivan Vecera) [1182733]
-- [netdrv] be2net: move definitions related to FW cmdsfrom be_hw.h to be_cmds.h (Ivan Vecera) [1182733]
-- [netdrv] be2net: issue function reset cmd in resume path (Ivan Vecera) [1182733]
-- [netdrv] be2net: add a log message for POST timeout in Lancer (Ivan Vecera) [1182733]
-- [netdrv] be2net: fix failure case in setting flow control (Ivan Vecera) [1182733]
-- [netdrv] be2net: move interface create code to a separate routine (Ivan Vecera) [1182733]
-- [netdrv] be2net: Allow GRE to work concurrently while a VxLAN tunnel is configured (Ivan Vecera) [1182733]
-- [netdrv] be2net: support TX batching using skb->xmit_more flag (Ivan Vecera) [1182733]
-- [netdrv] be2net: Fix incorrect setting of tunnel offload flag in netdev features (Ivan Vecera) [1182733]
-- [netdrv] be2net: Export tunnel offloads only when a VxLAN tunnel is created (Ivan Vecera) [1182733]
-- [netdrv] emulex: Use skb_put_padto instead of skb_padto() and skb->len assignment (Ivan Vecera) [1182733]
-- [netdrv] be2net: Check for presence of IFLA_AF_SPEC (Ivan Vecera) [1182733]
-- [netdrv] be2net: Validate IFLA_BRIDGE_MODE attribute length (Ivan Vecera) [1182733]
-- [netdrv] be2net: use netdev_rss_key_fill() helper (Ivan Vecera) [1182733]
-- [netdrv] be2net: Use dev_consume_skb_any() in the non-drop path (Ivan Vecera) [1182733]
-- [netdrv] r8169: Do not use dev_kfree_skb in xmit path (Ivan Vecera) [1232244]
-- [netdrv] r8169: Fix trivial typo in rtl_check_firmware (Ivan Vecera) [1232244]
-- [netdrv] r8169: Revert BQL and xmit_more support (Ivan Vecera) [1232244]
-- [netdrv] r8169: use PCI define for Max_Read_Request_Size (Ivan Vecera) [1232244]
-- [netdrv] pci: Add defines for PCIe Max_Read_Request_Size (Ivan Vecera) [1232244]
-- [netdrv] r8169: add support for xmit_more (Ivan Vecera) [1232244]
-- [netdrv] r8169: update rtl8168g pcie ephy parameter (Ivan Vecera) [1232244]
-- [netdrv] r8169: Use dma_rmb() and dma_wmb() for DescOwn checks (Ivan Vecera) [1232244]
-- [netdrv] r8169: use napi_alloc_skb instead of netdev_alloc_skb_ip_align (Ivan Vecera) [1232244]
-- [netdrv] r8169: Use eth_skb_pad function (Ivan Vecera) [1232244]
-- [netdrv] r8169: disable rtl8168ep cmac engine (Ivan Vecera) [1232244]
-- [netdrv] r8169: prevent enable hardware tx/rx too early (Ivan Vecera) [1232244]
-- [netdrv] bna: use netdev_* and dev_* instead of printk and pr_* (Ivan Vecera) [1187298]
-- [netdrv] bna: fix timeout API argument type (Ivan Vecera) [1187298]
-- [netdrv] bna: use list_for_each_entry where appropriate (Ivan Vecera) [1187298]
-- [netdrv] bna: get rid of private macros for manipulation with lists (Ivan Vecera) [1187298]
-- [netdrv] bna: remove useless pointer assignment (Ivan Vecera) [1187298]
-- [netdrv] bna: use memdup_user to copy userspace buffers (Ivan Vecera) [1187298]
-- [netdrv] bna: correct comparisons/assignments to bool (Ivan Vecera) [1187298]
-- [netdrv] bna: remove TX_E_PRIO_CHANGE event and BNA_TX_F_PRIO_CHANGED flag (Ivan Vecera) [1187298]
-- [netdrv] bna: remove paused from bna_rx_config and flags from bna_rxf (Ivan Vecera) [1187298]
-- [netdrv] bna: remove RXF_E_PAUSE and RXF_E_RESUME events (Ivan Vecera) [1187298]
-- [netdrv] bna: remove prio_change_cbfn oper_state_cbfn from struct bna_tx (Ivan Vecera) [1187298]
-- [netdrv] bna: remove oper_state_cbfn from struct bna_rxf (Ivan Vecera) [1187298]
-- [netdrv] bna: remove pause_cbfn from struct bna_enet (Ivan Vecera) [1187298]
-- [netdrv] bna: remove unused cbfn parameter (Ivan Vecera) [1187298]
-- [netdrv] bna: use BIT(x) instead of (1 << x) (Ivan Vecera) [1187298]
-- [netdrv] bna: get rid of duplicate and unused macros (Ivan Vecera) [1187298]
-- [netdrv] bna: replace pragma(pack) with attribute __packed (Ivan Vecera) [1187298]
-- [netdrv] bna: get rid of mac_t (Ivan Vecera) [1187298]
-- [netdrv] bna: use ether_addr_copy instead of memcpy (Ivan Vecera) [1187298]
-- [netdrv] bna: remove obsolete use of EXTRA_CFLAGS (Ivan Vecera) [1187298]
-- [netdrv] bna: fix soft lock-up during firmware initialization failure (Ivan Vecera) [1187298]
-- [netdrv] bna: remove unreasonable iocpf timer start (Ivan Vecera) [1187298]
-- [netdrv] bna: fix firmware loading on big-endian machines (Ivan Vecera) [1187298]
-- [netdrv] bna: codespell comment spelling fixes (Ivan Vecera) [1187298]
-- [netdrv] bna: Update the Driver and Firmware Version (Ivan Vecera) [1187298]
-- [netdrv] bna: QLogic BR-series Adapters Driver Rebranding (Ivan Vecera) [1187298]
-- [netdrv] bna: incorrect use of init_completion fixup (Ivan Vecera) [1187298]
-- [netdrv] bna: use netdev_rss_key_fill() helper (Ivan Vecera) [1187298]
-
-* Thu Jun 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-271.el7]
-- [net] inet_diag: use READ_ONCE (Phil Sutter) [1230886]
-- [net] nfnetlink_log: unset nf_loggers for netns when unloading module (Hannes Frederic Sowa) [1231135]
-- [net] sctp: allow authenticating DATA chunks that are bundled with COOKIE_ECHO (Marcelo Leitner) [1161510]
-- [net] netfilter: conntrack: warn the user if there is a better helper to use (Marcelo Leitner) [1208239]
-- [net] tcp: dctcp_update_alpha() fixes (Phil Sutter) [1230878]
-- [net] sched: use pinned timers (Phil Sutter) [1230135]
-- [net] add skb_clone_sk() and sock_efree() (Ivan Vecera) [1200759]
-- [lib] cpumask: cpumask_set_cpu_local_first => cpumask_local_spread, lament (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: Fix tx ring affinity_mask creation (Ivan Vecera) [1200759]
-- [netdrv] be2net: assign CPU affinity hints to be2net IRQs (Ivan Vecera) [1200759]
-- [kernel] ktime: Introduce ktime_ms_delta (Ivan Vecera) [1200759]
-- [net] sctp: migrate cookie life from timeval to ktime (Ivan Vecera) [1200759]
-- [kernel] timecounter: provide a macro to initialize the cyclecounter mask field (Ivan Vecera) [1200759]
-- [kernel] timecounter: keep track of accumulated fractional nanoseconds (Ivan Vecera) [1200759]
-- [kernel] timecounter: provide a helper function to shift the time (Ivan Vecera) [1200759]
-- [kernel] time: move the timecounter/cyclecounter code into its own file (Ivan Vecera) [1200759]
-- [net] Introduce passthru_features_check (Ivan Vecera) [1200759]
-- [net] vlan: Move check for multiple vlans to drivers (Ivan Vecera) [1200759]
-- [net] vlan: Introduce helper functions to check if skb is tagged (Ivan Vecera) [1200759]
-- [net] vlan: rename vlan_tx_* helpers since "tx" is misleading there (Ivan Vecera) [1200759]
-- [net] vlan: make __vlan_hwaccel_put_tag return void (Ivan Vecera) [1200759]
-- [net] vlan: Add features for stacked vlan device (Ivan Vecera) [1200759]
-- [net] Add device Rx page allocation function (Ivan Vecera) [1200759]
-- [net] fix comment typo for __skb_alloc_pages() (Ivan Vecera) [1200759]
-- [net] flow: Add function for parsing the header length out of linear ethernet frames (Ivan Vecera) [1200759]
-- [net] flow: make skb an optional parameter for__skb_flow_dissect() (Ivan Vecera) [1200759]
-- [net] flow: Allow raw buffers to be passed into the flow dissector (Ivan Vecera) [1200759]
-- [net] ethtool: Support for configurable RSS hash function (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: fix mlx4_en_set_rxfh() (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: use netdev_rss_key_fill() helper (Ivan Vecera) [1200759]
-- [netdrv] Replace ethtool_ops::{get, set}_rxfh_indir() with {get, set}_rxfh() (Ivan Vecera) [1200759]
-- [net] Add functions for handling padding frame and adding to length (Ivan Vecera) [1200759]
-- [net] introduce napi_schedule_irqoff() (Ivan Vecera) [1200759]
-- [net] Replace get_cpu_var through this_cpu_ptr (Ivan Vecera) [1200759]
-- [net] introduce dev_consume_skb_any() (Ivan Vecera) [1200759]
-- [net] provide a per host RSS key generic infrastructure (Ivan Vecera) [1200759]
-- [net] avoid dependency of net_get_random_once on nop patching (Ivan Vecera) [1200759]
-- [net] make net_get_random_once irq safe (Ivan Vecera) [1200759]
-- [net] fix build warnings because of net_get_random_once merge (Ivan Vecera) [1200759]
-- [net] introduce new macro net_get_random_once (Ivan Vecera) [1200759]
-- [net] net.h, skbuff.h: Remove extern from function prototypes (Ivan Vecera) [1200759]
-- [net] Remove extern from function prototypes (Ivan Vecera) [1200759]
-- [net] remove unused 'dev' argument from netif_needs_gso() (Ivan Vecera) [1200759]
-- [net] Generalize ndo_gso_check to ndo_features_check (Ivan Vecera) [1200759]
-- [net] vlan: Fix stacked vlan offload features computation (Ivan Vecera) [1200759]
-- [net] fix checksum features handling in netif_skb_features() (Ivan Vecera) [1200759]
-- [net] vlan: more careful checksum features handling (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: Add VXLAN ndo calls to the PF net device ops too (Ivan Vecera) [1200759]
-- [netdrv] bnx2x: Implement ndo_gso_check() (Ivan Vecera) [1200759]
-- [netdrv] qlcnic: Implement ndo_gso_check() (Ivan Vecera) [1200759]
-- [netdrv] be2net: Implement ndo_gso_check() (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: Implement ndo_gso_check() (Ivan Vecera) [1200759]
-- [net] Add ndo_gso_check (Ivan Vecera) [1200759]
-- [net] ipv6: reject locally assigned nexthop addresses (Phil Sutter) [1228700]
-- [net] ipv6: allow explicitly choosing optimistic addresses (Phil Sutter) [1228700]
-- [net] openvswitch: disable LRO (Jiri Benc) [1181282]
-- [net] unix, caif: sk_socket can disappear when state is unlocked (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: implement splice for stream af_unix sockets (Hannes Frederic Sowa) [1226230]
-- [net] make skb_splice_bits more configureable (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: implement stream sendpage support (Hannes Frederic Sowa) [1226230]
-- [net] skbuff: add skb_append_pagefrags and use it (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: remove 0 assignment on static (Hannes Frederic Sowa) [1226230]
-- [net] unix: Align send data_len up to PAGE_SIZE (Hannes Frederic Sowa) [1226230]
-- [net] unix: non blocking recvmsg() should not return -EINTR (Hannes Frederic Sowa) [1226230]
-- [net] unix: allow bind to fail on mutex lock (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: fix bug on large send() (Hannes Frederic Sowa) [1226230]
-- [net] attempt high order allocations in sock_alloc_send_pskb() (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: improve STREAM behavior with fragmented memory (Hannes Frederic Sowa) [1226230]
-
-* Thu Jun 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-270.el7]
-- [md] fix race when unfreezing sync_action (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: break stripe-batches when the array has failed (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: call break_stripe_batch_list from handle_stripe_clean_event (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: be more selective about distributing flags across batch (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: add handle_flags arg to break_stripe_batch_list (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: duplicate some more handle_stripe_clean_event code in break_stripe_batch_list (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: remove condition test from check_break_stripe_batch_list (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: Ensure a batch member is not handled prematurely (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: close race between STRIPE_BIT_DELAY and batching (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: ensure whole batch is delayed for all required bitmap updates (Jes Sorensen) [1150149 1173510 1194720]
-- [md] bitmap: remove rcu annotation from pointer arithmetic (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix broken async operation chain (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix handling of degraded stripes in batches (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix allocation of 'scribble' array (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: don't record new size if resize_stripes fails (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: avoid reading parity blocks for full-stripe write to degraded array (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: more incorrect BUG_ON in handle_stripe_fill (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: new alloc_stripe() to allocate an initialize a stripe (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid0: conditional mddev->queue access to suit dm-raid (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: don't do chunk aligned read on degraded array (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: change ->inactive_blocked to a bit-flag (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: move max_nr_stripes management into grow_one_stripe and drop_one_stripe (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: pass gfp_t arg to grow_one_stripe() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: introduce configuration option rmw_level (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: activate raid6 rmw feature (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid6 algorithms: delta syndrome functions (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: handle expansion/resync case with stripe batching (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: handle io error of batch list (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: batch adjacent full stripe write (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: track overwrite disk count (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: add a new flag to track if a stripe can be batched (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: use flex_array for scribble data (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid0: access mddev->queue (request queue member) conditionally because it is not set when accessed from dm-raid (Jes Sorensen) [1150149 1173510 1194720]
-- [md] allow resync to go faster when there is competing IO (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove 'go_faster' option from ->sync_request() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] don't require sync_min to be a multiple of chunk_size (Jes Sorensen) [1150149 1173510 1194720]
-- [md] re-add a failed disk (Jes Sorensen) [1150149 1173510 1194720]
-- [md] Export and rename find_rdev_nr_rcu (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: check faulty flag for array status during recovery (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: fix read balance when a drive is write-mostly (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: Fix livelock when array is both resyncing and degraded (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid10: round up to bdev_logical_block_size in narrow_write_error (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: round up to bdev_logical_block_size in narrow_write_error (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid10: fix conversion from RAID0 to RAID10 (Jes Sorensen) [1150149 1173510 1194720]
-- [md] wakeup thread upon rdev_dec_pending() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] make reconfig_mutex optional for writes to md sysfs files (Jes Sorensen) [1150149 1173510 1194720]
-- [md] move mddev_lock and related to md.h (Jes Sorensen) [1150149 1173510 1194720]
-- [md] use mddev->lock to protect updates to resync_{min, max} (Jes Sorensen) [1150149 1173510 1194720]
-- [md] minor cleanup in safe_delay_store (Jes Sorensen) [1150149 1173510 1194720]
-- [md] move GET_BITMAP_FILE ioctl out from mddev_lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] tidy up set_bitmap_file (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove unnecessary 'buf' from get_bitmap_file (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove mddev_lock from rdev_attr_show() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove mddev_lock() from md_attr_show() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: use ->lock to protect accessing raid5 sysfs attributes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove need for mddev_lock() in md_seq_show() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] bitmap: protect clearing of ->bitmap by mddev->lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] protect ->pers changes with mddev->lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] level_store: group all important changes into one place (Jes Sorensen) [1150149 1173510 1194720]
-- [md] rename ->stop to ->free (Jes Sorensen) [1150149 1173510 1194720]
-- [md] split detach operation out from ->stop (Jes Sorensen) [1150149 1173510 1194720]
-- [md] linear: remove rcu protections in favour of suspend/resume (Jes Sorensen) [1150149 1173510 1194720]
-- [md] make merge_bvec_fn more robust in face of personality changes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] make ->congested robust against personality changes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] rename mddev->write_lock to mddev->lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: need_this_block: tidy/fix last condition (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: need_this_block: start simplifying the last two conditions (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: separate out the easy conditions in need_this_block (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: separate large if clause out of fetch_block() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] do_release_stripe(): No need to call md_wakeup_thread() twice (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix another livelock caused by non-aligned writes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] Check MD_RECOVERY_RUNNING as well as ->sync_thread (Jes Sorensen) [1150149 1173510 1194720]
-- [md] fix semicolon.cocci warnings (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fetch_block must fetch all the blocks handle_stripe_dirtying wants (Jes Sorensen) [1150149 1173510 1194720]
-- [md] Always set RECOVERY_NEEDED when clearing RECOVERY_FROZEN (Jes Sorensen) [1150149 1173510 1194720]
-- [md] move EXPORT_SYMBOL to after function in md.c (Jes Sorensen) [1150149 1173510 1194720]
-- [md] discard PRINT_RAID_DEBUG ioctl (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove MD_BUG() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] clean up 'exit' labels in md_ioctl() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove unnecessary test for MD_MAJOR in md_ioctl() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] don't allow "-sync" to be set for device in an active array (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove unwanted white space from md.c (Jes Sorensen) [1150149 1173510 1194720]
-- [md] don't start resync thread directly from md thread (Jes Sorensen) [1150149 1173510 1194720]
-- [md] Just use RCU when checking for overlap between arrays (Jes Sorensen) [1150149 1173510 1194720]
-- [md] avoid potential long delay under pers_lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] simplify export_array() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] discard find_rdev_nr in favour of find_rdev_nr_rcu (Jes Sorensen) [1150149 1173510 1194720]
-- [md] use wait_event() to simplify md_super_wait() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] be more relaxed about stopping an array which isn't started (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: process_checks doesn't use its return value (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix init_stripe() inconsistencies (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid10: another memory leak due to reshape (Jes Sorensen) [1150149 1173510 1194720]
-- [md] use set_bit/clear_bit instead of shift/mask for bi_flags changes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: minor typos and reformatting (Jes Sorensen) [1150149 1173510 1194720]
-- [md] bitmap: always wait for writes on unplug (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: avoid livelock caused by non-aligned writes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid56: Don't perform reads to support writes until stripe is ready (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: fix request counting bug in new 'barrier' code (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: Rewrite the implementation of iobarrier (Jes Sorensen) [1150149 1173510 1194720]
-- [fs] ext4: atomically set inode->i_flags in ext4_set_inode_flags() (Jes Sorensen) [1150149 1173510 1194720]
-
-* Wed Jun 17 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-269.el7]
-- [virtio] drop virtio-device_is_legacy_only (Jason Wang) [1227339]
-- [virtio] virtio-pci: support non-legacy balloon devices (Jason Wang) [1227339]
-- [virtio] virtio-mmio: support non-legacy balloon devices (Jason Wang) [1227339]
-- [virtio] virtio-ccw: support non-legacy balloon devices (Jason Wang) [1227339]
-- [virtio] balloon might not be a legacy device (Jason Wang) [1227339]
-- [virtio] virtio-balloon: transitional interface (Jason Wang) [1227339]
-- [virtio] virtio-pci_modern: switch to type-safe io accessors (Jason Wang) [1227339]
-- [virtio] virtio-pci_modern: type-safe io accessors (Jason Wang) [1227339]
-- [virtio] drop a useless config read (Jason Wang) [1227339]
-- [virtio] virtio-config: reorder functions (Jason Wang) [1227339]
-- [virtio] virtio-mmio: fix access width for mmio (Jason Wang) [1227339]
-- [virtio] virtio-mmio: generation support (Jason Wang) [1227339]
-- [virtio] virtio-rpmsg: set DRIVER_OK before using device (Jason Wang) [1227339]
-- [virtio] virtio-blk: fix comment for virtio 1.0 (Jason Wang) [1227339]
-- [virtio] virtio-blk: typo fix (Jason Wang) [1227339]
-- [virtio] virtio-balloon: set DRIVER_OK before using device (Jason Wang) [1227339]
-- [virtio] don't set VIRTIO_CONFIG_S_DRIVER_OK twice (Jason Wang) [1227339]
-- [virtio] virtio-net: unconditionally define struct virtio_net_hdr_v1 (Jason Wang) [1227339]
-- [virtio] Don't expose legacy net features when VIRTIO_NET_NO_LEGACY defined (Jason Wang) [1227339]
-- [virtio] don't require a config space on the console device (Jason Wang) [1227339]
-- [virtio] virtio-pci: use 16-bit accessor for queue_enable (Jason Wang) [1227339]
-- [virtio] Don't expose legacy config features when VIRTIO_CONFIG_NO_LEGACY defined (Jason Wang) [1227339]
-- [virtio] Don't expose legacy block features when VIRTIO_BLK_NO_LEGACY defined (Jason Wang) [1227339]
-- [virtio] define VIRTIO_PCI_CAP_PCI_CFG in header (Jason Wang) [1227339]
-- [virtio] Avoid possible kernel panic if DEBUG is enabled (Jason Wang) [1227339]
-- [virtio] virtio-mmio: Update the device to OASIS spec version (Jason Wang) [1227339]
-- [virtio] virtio-pci: add module param to force legacy mode (Jason Wang) [1227339]
-- [virtio] virtio-pci: add an option to disable legacy driver (Jason Wang) [1227339]
-- [virtio] redhat: enable virtio-pci_legacy (Jason Wang) [1227339]
-- [virtio] virtio-pci: drop Kconfig warnings (Jason Wang) [1227339]
-- [virtio] virtio-pci: Kconfig grammar fix (Jason Wang) [1227339]
-- [virtio] virtio-rng: drop extra empty line (Jason Wang) [1227339]
-- [virtio] virtio-ring: coding style fix (Jason Wang) [1227339]
-- [virtio] virtio-blk: coding style fixes (Jason Wang) [1227339]
-- [virtio] virtio-balloon: coding style fixes (Jason Wang) [1227339]
-- [virtio] virtio-pci_modern: support devices with no config (Jason Wang) [1227339]
-- [virtio] virtio-pci_modern: reduce number of mappings (Jason Wang) [1227339]
-- [virtio] virtio-pci: macros for PCI layout offsets (Jason Wang) [1227339]
-- [virtio] virtio-pci: modern driver (Jason Wang) [1227339]
-- [virtio] virtio-pci: define layout for virtio 1.0 (Jason Wang) [1227339]
-- [virtio] virtio-pci: move probe/remove code to common (Jason Wang) [1227339]
-- [virtio] virtio-pci: drop useless del_vqs call (Jason Wang) [1227339]
-- [virtio] s390: add pci_iomap_range (Jason Wang) [1227339]
-- [virtio] pci: add pci_iomap_range (Jason Wang) [1227339]
-- [virtio] balloon: verify device has config space (Jason Wang) [1227339]
-- [virtio] scsi: verify device has config space (Jason Wang) [1227339]
-- [virtio] net: verify device has config space (Jason Wang) [1227339]
-- [virtio] console: verify device has config space (Jason Wang) [1227339]
-- [virtio] blk: verify device has config space (Jason Wang) [1227339]
-- [virtio] 9p: verify device has config space (Jason Wang) [1227339]
-- [virtio] virtio-pci: drop virtio_config dependency (Jason Wang) [1227339]
-- [virtio] virtio-pci: document why we defer kfree (Jason Wang) [1227339]
-- [virtio] virtio-pci: defer kfree until release callback (Jason Wang) [1227339]
-- [virtio] virtio-pci: device-specific release callback (Jason Wang) [1227339]
-- [virtio] make del_vqs idempotent (Jason Wang) [1227339]
-- [virtio] virtio-pci: restore module attributes (Jason Wang) [1227339]
-- [virtio] core support for config generation (Jason Wang) [1227339]
-- [virtio] virtio-pci: add VIRTIO_PCI_NO_LEGACY (Jason Wang) [1227339]
-- [virtio] virtio-pci: move probe to common file (Jason Wang) [1227339]
-- [virtio] virtio-pci_common.h: drop VIRTIO_PCI_NO_LEGACY (Jason Wang) [1227339]
-- [virtio] virtio-config: fix virtio_cread_bytes (Jason Wang) [1227339]
-- [virtio] set VIRTIO_CONFIG_S_FEATURES_OK on restore (Jason Wang) [1227339]
-- [virtio] virtio-ccw: finalize_features error handling (Jason Wang) [1227339]
-- [virtio] virtio-ccw: future-proof finalize_features (Jason Wang) [1227339]
-- [virtio] virtio-pci: rename virtio_pci -> virtio_pci_common (Jason Wang) [1227339]
-- [virtio] virtio-pci: update file descriptions and copyright (Jason Wang) [1227339]
-- [virtio] virtio-pci: split out legacy device support (Jason Wang) [1227339]
-- [virtio] virtio-pci: setup config vector indirectly (Jason Wang) [1227339]
-- [virtio] virtio-pci: setup vqs indirectly (Jason Wang) [1227339]
-- [virtio] virtio-pci: delete vqs indirectly (Jason Wang) [1227339]
-- [virtio] virtio-pci: use priv for vq notification (Jason Wang) [1227339]
-- [virtio] virtio-pci: free up vq->priv (Jason Wang) [1227339]
-- [virtio] virtio-pci: fix coding style for structs (Jason Wang) [1227339]
-- [virtio] virtio-pci: add isr field (Jason Wang) [1227339]
-- [virtio] drop legacy_only driver flag (Jason Wang) [1227339]
-- [virtio] virtio-balloon: drop legacy_only driver flag (Jason Wang) [1227339]
-- [virtio] virtio-ccw: rev 1 devices set VIRTIO_F_VERSION_1 (Jason Wang) [1227339]
-- [virtio] allow finalize_features to fail (Jason Wang) [1227339]
-- [virtio] virtio-ccw: legacy: don't negotiate rev 1/features (Jason Wang) [1227339]
-- [virtio] add API to detect legacy devices (Jason Wang) [1227339]
-- [virtio] virtio-console: fix sparse warnings (Jason Wang) [1227339]
-- [virtio] drop VIRTIO_F_VERSION_1 from drivers (Jason Wang) [1227339]
-- [virtio] make VIRTIO_F_VERSION_1 a transport bit (Jason Wang) [1227339]
-- [virtio] virtio-balloon: add legacy_only flag (Jason Wang) [1227339]
-- [virtio] virtio-console: virtio 1.0 support (Jason Wang) [1227339]
-- [virtio] af_packet: virtio 1.0 stubs (Jason Wang) [1227339]
-- [virtio] virtio-scsi: export to userspace (Jason Wang) [1227339]
-- [virtio] virtio-scsi: move to uapi (Jason Wang) [1227339]
-- [virtio] virtio-scsi: v1.0 support (Jason Wang) [1227339]
-- [virtio] virtio-net: enable v1.0 support (Jason Wang) [1227339]
-- [virtio] virtio-net: disable mac write for virtio 1.0 (Jason Wang) [1227339]
-- [virtio] virtio-net: bigger header when VERSION_1 is set (Jason Wang) [1227339]
-- [virtio] virtio-net: stricter short buffer length checks (Jason Wang) [1227339]
-- [virtio] virtio-net: get rid of virtio_net_hdr/skb_vnet_hdr (Jason Wang) [1227339]
-- [virtio] virtio-net: Set needed_headroom for virtio-net when VIRTIO_F_ANY_LAYOUT is true (Jason Wang) [1227339]
-- [virtio] virtio-net: pass vi around (Jason Wang) [1227339]
-- [virtio] virtio-blk: fix race at module removal (Jason Wang) [1227339]
-- [virtio] virtio-blk: make serial attribute static (Jason Wang) [1227339]
-- [virtio] kvm: s390: enable virtio-ccw revision 1 (Jason Wang) [1227339]
-- [virtio] kvm: s390 allow virtio-ccw status writes to fail (Jason Wang) [1227339]
-- [virtio] kvm: s390: virtio-ccw revision 1 SET_VQ (Jason Wang) [1227339]
-- [virtio] kvm: s390: Set virtio-ccw transport revision (Jason Wang) [1227339]
-- [virtio] virtio-blk: v1.0 support (Jason Wang) [1227339]
-- [virtio] virtio-net: v1.0 endianness (Jason Wang) [1227339]
-- [virtio] add legacy feature table support (Jason Wang) [1227339]
-- [virtio] simplify feature bit handling (Jason Wang) [1227339]
-- [virtio] set FEATURES_OK (Jason Wang) [1227339]
-- [virtio] allow transports to get avail/used addresses (Jason Wang) [1227339]
-- [virtio] virtio-config: endian conversion for v1.0 (Jason Wang) [1227339]
-- [virtio] virtio-ring: switch to new memory access APIs (Jason Wang) [1227339]
-- [virtio] memory access APIs (Jason Wang) [1227339]
-- [virtio] add virtio 1.0 feature bit (Jason Wang) [1227339]
-- [virtio] virtio-ccw: add support for 64 bit features (Jason Wang) [1227339]
-- [virtio] assert 32 bit features in transports (Jason Wang) [1227339]
-- [virtio] add support for 64 bit features (Jason Wang) [1227339]
-- [virtio] use u32, not bitmap for features (Jason Wang) [1227339]
-- [virtio] virtio-balloon: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-console: move early VQ enablement (Jason Wang) [1227339]
-- [virtio] virtio-net: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-console: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-scsi: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-blk: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-scsi: move kick event out from virtscsi_init (Jason Wang) [1227339]
-- [virtio] virtio-net: fix use after free on allocation failure (Jason Wang) [1227339]
-- [virtio] 9p/trans_virtio: enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-console: enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-blk: enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-net: enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-net: minor cleanup (Jason Wang) [1227339]
-- [virtio] virtio-net: drop config_mutex (Jason Wang) [1227339]
-- [virtio] virtio-net: drop config_enable (Jason Wang) [1227339]
-- [virtio] virtio-blk: drop config_mutex (Jason Wang) [1227339]
-- [virtio] virtio-blk: drop config_enable (Jason Wang) [1227339]
-- [virtio] virtio-pci: move freeze/restore to virtio core (Jason Wang) [1227339]
-- [virtio] virtio-pci: fix virtio spec compliance on restore (Jason Wang) [1227339]
-- [virtio] add low-level APIs for feature bits (Jason Wang) [1227339]
-- [virtio] add API to enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-ring: unify direct/indirect code paths (Jason Wang) [1227339]
-- [virtio] virtio-ring: assume sgs are always well-formed (Jason Wang) [1227339]
-- [virtio] virtio-net: pass well-formed sgs to virtqueue_add_*() (Jason Wang) [1227339]
-- [virtio] remove virtqueue_add_buf() (Jason Wang) [1227339]
-- [virtio] pci: remove unnecessary pci_set_drvdata() (Jason Wang) [1227339]
-- [virtio] virtio-pci: pm: Use CONFIG_PM_SLEEP instead of CONFIG_PM (Jason Wang) [1227339]
-- [virtio] virtio-pci: fix leaks of msix_affinity_masks (Jason Wang) [1227339]
-- [virtio] virtio-pci: Use pci_enable_msix_exact() instead of pci_enable_msix() (Jason Wang) [1227339]
-
-* Wed Jun 17 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-268.el7]
-- [x86] mm: add memory tracking to native_pmdp_get_and_clear (David Bulkow) [1227357]
-- [kvm] x86: advertise KVM_CAP_X86_SMM (Paolo Bonzini) [1202825]
-- [kvm] x86: add SMM to the MMU role, support SMRAM address space (Paolo Bonzini) [1202825]
-- [kvm] arch/x86/kvm/mmu.c: work around gcc-4.4.4 bug (Paolo Bonzini) [1202825]
-- [kvm] x86: work on all available address spaces (Paolo Bonzini) [1202825]
-- [kvm] x86: use vcpu-specific functions to read/write/translate GFNs (Paolo Bonzini) [1202825]
-- [kvm] x86: pass struct kvm_mmu_page to gfn_to_rmap (Paolo Bonzini) [1202825]
-- [kvm] implement multiple address spaces (Paolo Bonzini) [1202825]
-- [kvm] add vcpu-specific functions to read/write/translate GFNs (Paolo Bonzini) [1202825]
-- [kvm] x86: save/load state on SMM switch (Paolo Bonzini) [1202825]
-- [kvm] x86: latch INITs while in system management mode (Paolo Bonzini) [1202825]
-- [kvm] x86: stubs for SMM support (Paolo Bonzini) [1202825]
-- [kvm] x86: API changes for SMM support (Paolo Bonzini) [1202825]
-- [kvm] x86: pass the whole hflags field to emulator and back (Paolo Bonzini) [1202825]
-- [kvm] x86: pass host_initiated to functions that read MSRs (Paolo Bonzini) [1202825]
-- [kvm] x86: introduce num_emulated_msrs (Paolo Bonzini) [1202825]
-- [kvm] x86: clear hidden CPU state at reset time (Paolo Bonzini) [1202825]
-- [kvm] x86: fix kvm_apic_has_events to check for NULL pointer (Paolo Bonzini) [1202825]
-- [kvm] remove unused argument from mark_page_dirty_in_slot (Paolo Bonzini) [1202825]
-- [kvm] x86: Allow ARAT CPU feature (Paolo Bonzini) [1202825]
-- [kvm] x86: preserve x2APIC LDR on INIT (Paolo Bonzini) [1202825]
-- [kvm] x86: use correct APIC ID on x2APIC transition (Paolo Bonzini) [1202825]
-- [kvm] x86: pass struct kvm_mmu_page to account/unaccount_shadowed (Paolo Bonzini) [1202825]
-- [kvm] remove __gfn_to_pfn (Paolo Bonzini) [1202825]
-- [kvm] pass kvm_memory_slot to gfn_to_page_many_atomic (Paolo Bonzini) [1202825]
-- [kvm] add "new" argument to kvm_arch_commit_memory_region (Paolo Bonzini) [1202825]
-- [kvm] add memslots argument to kvm_arch_memslots_updated (Paolo Bonzini) [1202825]
-- [kvm] const-ify uses of struct kvm_userspace_memory_region (Paolo Bonzini) [1202825]
-- [kvm] use kvm_memslots whenever possible (Paolo Bonzini) [1202825]
-- [kvm] introduce kvm_alloc/free_memslots (Paolo Bonzini) [1202825]
-- [kvm] x86: Make functions that have no external callers static (Paolo Bonzini) [1202825]
-- [kvm] export __gfn_to_pfn_memslot, drop gfn_to_pfn_async (Paolo Bonzini) [1202825]
-- [kvm] x86: do not reset mmu if CR0.CD and CR0.NW are changed (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix MTRR update (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix decoding cache type from MTRR (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce kvm_zap_rmapp (Paolo Bonzini) [1202825]
-- [kvm] mmu: use slot_handle_level and its helper to clean up the code (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce slot_handle_level_range() and its helpers (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce for_each_slot_rmap_range (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce PT_MAX_HUGEPAGE_LEVEL (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce for_each_rmap_spte() (Paolo Bonzini) [1202825]
-- [kvm] x86: Fix zero iterations REP-string (Paolo Bonzini) [1202825]
-- [kvm] x86: Fix update RCX/RDI/RSI on REP-string (Paolo Bonzini) [1202825]
-- [kvm] x86: Fix DR7 mask on task-switch while debugging (Paolo Bonzini) [1202825]
-- [kvm] remove pointless cpu hotplug messages (Paolo Bonzini) [1202825]
-- [kvm] x86: Call-far should not be emulated as stack op (Paolo Bonzini) [1202825]
-- [kvm] reuse memslot in kvm_write_guest_page (Paolo Bonzini) [1202825]
-- [kvm] x86: dump VMCS on invalid entry (Paolo Bonzini) [1202825]
-- [kvm] x86: kvmclock: drop rdtsc_barrier() (Paolo Bonzini) [1202825]
-- [kvm] x86: drop unneeded null test (Paolo Bonzini) [1202825]
-- [kvm] x86: load guest FPU context more eagerly (Paolo Bonzini) [1202825]
-- [kvm] x86: Support for disabling quirks (Paolo Bonzini) [1202825]
-- [kvm] fpu: Enable eager restore kvm FPU for MPX (Paolo Bonzini) [1202825]
-- [kvm] revert "kvm: x86: drop fpu_activate hook" (Paolo Bonzini) [1202825]
-- [kvm] fix crash in kvm_vcpu_reload_apic_access_page (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix SMAP virtualization (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix CR4.SMEP=1, CR0.WP=0 with shadow pages (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix smap permission check (Paolo Bonzini) [1202825]
-- [kvm] x86: pvclock: Really remove the sched notifier for cross-cpu migrations (Paolo Bonzini) [1202825]
-- [kvm] x86: vdso: fix pvclock races with task migration (Paolo Bonzini) [1202825]
-- [kvm] x86: fix kvmclock update protocol (Paolo Bonzini) [1202825]
-- [kvm] svm: use kvm_register_write()/read() (Paolo Bonzini) [1202825]
-- [kvm] async_pf: Add missing call for async page present (Paolo Bonzini) [1202825]
-- [kvm] async_pf: Provide additional direct page notification (Paolo Bonzini) [1202825]
-- [kvm] remove kvm_read_hva and kvm_read_hva_atomic (Paolo Bonzini) [1202825]
-- [kvm] x86: IRET emulation does not clear NMI masking (Paolo Bonzini) [1202825]
-- [kvm] x86: POPA emulation may not clear bits [63:32] (Paolo Bonzini) [1202825]
-- [kvm] remove unneeded return value of vcpu_postcreate (Paolo Bonzini) [1202825]
-- [kvm] Get rid of kvm_kvfree() (Paolo Bonzini) [1202825]
-- [kvm] Use pr_info/pr_err in kvm_main.c (Paolo Bonzini) [1202825]
-
-* Tue Jun 16 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-267.el7]
-- [infiniband] disable INFINIBAND_ON_DEMAND_PAGING for s390 platform (Honggang Li) [1229265]
-- [infiniband] ib/ehca: use correct destination for memcpy (Honggang Li) [1229265]
-- [infiniband] ib/cma: Fix broken AF_IB UD support (Honggang Li) [1229265]
-- [infiniband] ib/cm: Change reject message type when destroying cm_id (Honggang Li) [1229265]
-- [infiniband] rdma/core: Fix for parsing netlink string attribute (Honggang Li) [1229265]
-- [infiniband] ib/core: Fix unaligned accesses (Honggang Li) [1229265]
-- [infiniband] ib/core: change rdma_gid2ip into void function as it always return zero (Honggang Li) [1229265]
-- [infiniband] ib/core: dma unmap optimizations (Honggang Li) [1229265]
-- [infiniband] ib/core: dma map/unmap locking optimizations (Honggang Li) [1229265]
-- [infiniband] rdma/core: Enable the iWarp Port Mapper to provide the actual address of the connecting peer to its clients (Honggang Li) [1229265]
-- [infiniband] rdma/cma: Canonize IPv4 on IPV6 sockets properly (Honggang Li) [1229265]
-- [infiniband] ib_uverbs: Fix pages leak when using XRC SRQs (Honggang Li) [1229265]
-- [infiniband] ib/core: don't disallow registering region starting at 0x0 (Honggang Li) [1229265]
-- [infiniband] ib/core: disallow registering 0-sized memory region (Honggang Li) [1229265]
-- [infiniband] ib/core: Add on demand paging caps to ib_uverbs_ex_query_device (Honggang Li) [1229265]
-- [infiniband] ib/core: Add support for extended query device caps (Honggang Li) [1229265]
-- [infiniband] ib/core: Properly handle registration of on-demand paging MRs after dereg (Honggang Li) [1229265]
-- [infiniband] ib/core: Fix deadlock on uverbs modify_qp error flow (Honggang Li) [1229265]
-- [infiniband] ib/core: When marshaling ucma path from user-space, clear unused fields (Honggang Li) [1229265]
-- [infiniband] revert "ib/core: Add support for extended query device caps" (Honggang Li) [1229265]
-- [infiniband] ib/core: Temporarily disable ex_query_device uverb (Honggang Li) [1229265]
-- [infiniband] ib/core: Implement support for MMU notifiers regarding on demand paging regions (Honggang Li) [1229265]
-- [infiniband] ib/core: Add support for on demand paging regions (Honggang Li) [1229265]
-- [infiniband] ib/core: Add flags for on demand paging support (Honggang Li) [1229265]
-- [infiniband] ib/core: Add support for extended query device caps (Honggang Li) [1229265]
-- [infiniband] ib/core: Add umem function to read data from user-space (Honggang Li) [1229265]
-- [infiniband] ib/core: Replace ib_umem's offset field with a full address (Honggang Li) [1229265]
-- [infiniband] ib/addr: Improve address resolution callback scheduling (Honggang Li) [1229265]
-- [infiniband] ib/core: Fix mgid key handling in SA agent multicast data-base (Honggang Li) [1229265]
-- [infiniband] ib/core: Do not resolve VLAN if already resolved (Honggang Li) [1229265]
-- [infiniband] ib/core: Fix XRC race condition in ib_uverbs_open_qp (Honggang Li) [1229265]
-- [infiniband] ib/core: Clear AH attr variable to prevent garbage data (Honggang Li) [1229265]
-- [infiniband] ib/core: Avoid leakage from kernel to user space (Honggang Li) [1229265]
-- [infiniband] ib/core: ib_umem_release() should decrement mm->pinned_vm from ib_umem_get (Honggang Li) [1229265]
-- [fs] proc: fix BUG_ON() introduced by PAGE_SIZE cmdline limit fix (Jarod Wilson) [1193998 1225363]
-- [pci] Add ACS quirks for Intel 9-series PCH root ports (Myron Stowe) [1206198]
-- [pci] Add Wellsburg (X99) to Intel PCH root port ACS quirk (Myron Stowe) [1162360]
-- [pci] Add DMA alias quirk for Adaptec 3405 (Myron Stowe) [1171802]
-- [pci] Mark AMD/ATI VGA devices that don't reset on D3hot->D0 transition (Myron Stowe) [1171802]
-- [pci] Add flag for devices that don't reset on D3hot->D0 transition (Myron Stowe) [1171802]
-- [pci] Mark Atheros AR93xx to avoid bus reset (Myron Stowe) [1171802]
-- [pci] Add flag for devices where we can't use bus reset (Myron Stowe) [1171802]
-- [hid] i2c-hid: Limit reads to wMaxInputLength bytes for input events (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: only bind the hid-rmi driver to the mouse interface of composite USB devices (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: check that report ids exist in the report_id_hash before accessing their size (Aristeu Rozanski) [1075108 1075114]
-- [i2c] move ACPI helpers into the core (Aristeu Rozanski) [1075108 1075114]
-- [i2c] designware: remove HAVE_CLK build dependecy (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: do not handle touchscreens through hid-rmi (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: fix masks for x and w_x data (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: fix wrong struct field name (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: do not fetch more than 16 bytes in a query (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: check for the existence of some optional queries before reading query 12 (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: do not stop the device at the end of probe (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: introduce RMI driver for Synaptics touchpads (Aristeu Rozanski) [1075108 1075114]
-- [hid] i2c-hid: support sending HID output reports using the output register (Aristeu Rozanski) [1075108 1075114]
-- [scsi] bnx2fc: fix an error code in _bnx2fc_create() (Maurizio Lombardi) [1187300]
-- [scsi] bnx2fc: check IS_ERR() instead of NULL (Maurizio Lombardi) [1187300]
-- [scsi] iscsi_ibft: filter null v4-mapped v6 addresses (Chris Leech) [1212673]
-- [scsi] mpt2sas: Bump driver version to 20.100.00.00 (Tomas Henzl) [1189021]
-- [scsi] mpt2sas+mpt3sas: set cpu affinity for each MSIX vectors (Tomas Henzl) [1189021 1200405]
-- [scsi] mpt2sas+mpt3sas: Update attribution language to Avago (Tomas Henzl) [1189021 1200405]
-- [scsi] mpt2sas: map log_info value 0x0x32010081 to DID_RESET (Tomas Henzl) [1189021]
-- [scsi] mpt2sas+mpt3sas: fix upper bound for the module parameter max_sgl_entries (Tomas Henzl) [1053119]
-- [scsi] mpt2sas: MPI2 Rev BB (2.00.20) specification and 2.00.35 header files (Tomas Henzl) [1189021]
-- [scsi] mpt2sas: Bump driver version to 19.100.00.00 (Tomas Henzl) [1189021]
-- [scsi] mpt2sas+mpt3sas: Fail the host reset initiated due to discovery related I/O timeouts at driver load time (Tomas Henzl) [1189021 1200405]
-- [scsi] mpt2sas+mpt3sas: log exceeded temperature thresholds (Tomas Henzl) [1189021 1200405]
-- [scsi] mpt2sas: MPI2 Rev AA (2.00.19) specifications (Tomas Henzl) [1189021]
-- [scsi] mpt3sas: issue_reset is uninitialized (Tomas Henzl) [1200405]
-- [scsi] mpt2sas: issue_reset is uninitialized (Tomas Henzl) [1189021]
-- [scsi] mpt3sas: Revert " mpt3sas: Remove phys on topology change" (Tomas Henzl) [1200405]
-- [scsi] mpt2sas: Revert "mpt2sas: Remove phys on topology change." (Tomas Henzl) [1189021]
-- [scsi] mpt2sas: fix ioctl in comment (Tomas Henzl) [1189021]
-- [scsi] bnx2i: Fixed firmware assert, during target logout (Maurizio Lombardi) [1187301]
-- [scsi] fix regression in SCSI_IOCTL_SEND_COMMAND (Ewan Milne) [1109348]
-- [scsi] set REQ_QUEUE for the blk-mq case (Ewan Milne) [1109348]
-- [scsi] move blk_mq_start_request call earlier (Ewan Milne) [1109348]
-- [scsi] fix regression that accidentally disabled block-based tcq (Ewan Milne) [1109348]
-- [lib] scatterlist: fix memory leak with scsi-mq (Ewan Milne) [1109348]
-- [scsi] sg: fix EWOULDBLOCK errors with scsi-mq (Ewan Milne) [1109348]
-- [scsi] sg: fix unkillable I/O wait deadlock with scsi-mq (Ewan Milne) [1109348]
-- [scsi] sg: fix read() error reporting (Ewan Milne) [1109348]
-- [scsi] fix random memory corruption with scsi-mq + T10 PI (Ewan Milne) [1109348]
-- [scsi] Fix qemu boot hang problem (Ewan Milne) [1109348]
-- [scsi] scsi-mq: Add call to mark_tech_preview() if "use_blk_mq" is specified (Ewan Milne) [1109348]
-- [scsi] fnic: reject device resets without assigned tags for the blk-mq case (Ewan Milne) [1109348]
-- [scsi] add support for a blk-mq based I/O path (Ewan Milne) [1109348]
-- [scsi] scatterlist: allow chaining to preallocated chunks (Ewan Milne) [1109348]
-- [scsi] unwind blk_end_request_all and blk_end_request_err calls (Ewan Milne) [1109348]
-- [scsi] only maintain target_blocked if the driver has a target queue limit (Ewan Milne) [1109348]
-- [scsi] fix the host/target/device_blocked counter mess (Ewan Milne) [1109348]
-- [scsi] convert device_busy to atomic_t (Ewan Milne) [1109348]
-- [scsi] convert host_busy to atomic_t (Ewan Milne) [1109348]
-- [scsi] convert target_busy to an atomic_t (Ewan Milne) [1109348]
-- [scsi] push host_lock down into scsi_host/target_queue_ready (Ewan Milne) [1109348]
-- [scsi] set ->scsi_done before calling scsi_dispatch_cmd (Ewan Milne) [1109348]
-- [scsi] centralize command re-queueing in scsi_dispatch_fn (Ewan Milne) [1109348]
-- [scsi] split __scsi_queue_insert (Ewan Milne) [1109348]
-- [scsi] add scsi_setup_cmnd helper (Ewan Milne) [1109348]
-- [scsi] mark scsi_setup_blk_pc_cmnd static (Ewan Milne) [1109348]
-- [scsi] sd: split sd_init_command (Ewan Milne) [1109348]
-- [scsi] sd: retry discard commands (Ewan Milne) [1109348]
-- [scsi] sd: retry write same commands (Ewan Milne) [1109348]
-- [scsi] sd: don't use scsi_setup_blk_pc_cmnd for discard requests (Ewan Milne) [1109348]
-- [scsi] sd: don't use scsi_setup_blk_pc_cmnd for write same requests (Ewan Milne) [1109348]
-- [scsi] sd: don't use scsi_setup_blk_pc_cmnd for flush requests (Ewan Milne) [1109348]
-- [scsi] set sc_data_direction in common code (Ewan Milne) [1109348]
-- [scsi] restructure command initialization for TYPE_FS requests (Ewan Milne) [1109348]
-- [scsi] move the nr_phys_segments assert into scsi_init_io (Ewan Milne) [1109348]
-
-* Mon Jun 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-266.el7]
-- [drm] upstream sync to v4.1-rc7 (Rob Clark) [1206718]
-- [drm] i915: Fix DDC probe for passive adapters (Rob Clark) [1206718]
-- [drm] i915: Properly initialize SDVO analog connectors (Rob Clark) [1206718]
-- [acpi] video: Allow forcing native backlight on non win8 machines (Benjamin Tissoires) [1218354]
-- [acpi] i915: Update the condition to ignore firmware backlight change request (Benjamin Tissoires) [1218354]
-- [acpi] video: Propagate the error code for acpi_video_register (Benjamin Tissoires) [1218354]
-- [acpi] video: Load the module even if ACPI is disabled (Benjamin Tissoires) [1218354]
-- [acpi] video: Disable native backlight on Samsung Series 9 laptops (Benjamin Tissoires) [1218354]
-- [acpi] video: Add disable_native_backlight quirk for Samsung 510R (Benjamin Tissoires) [1218354]
-- [acpi] video: Add disable_native_backlight quirk for Samsung 730U3E/740U3E (Benjamin Tissoires) [1218354]
-- [acpi] video: Add disable_native_backlight quirk for Dell XPS15 L521X (Benjamin Tissoires) [1218354]
-- [acpi] video: Add some Samsung models to disable_native_backlight list (Benjamin Tissoires) [1218354]
-- [acpi] video: update the skip case for acpi_video_device_in_dod() (Benjamin Tissoires) [1218354]
-- [acpi] video: update condition to check if device is in _DOD list (Benjamin Tissoires) [1218354]
-- [acpi] video: Run _BCL before deciding registering backlight (Benjamin Tissoires) [1218354]
-- [acpi] video: check _DOD list when creating backlight devices (Benjamin Tissoires) [1218354]
-- [acpi] video: disable native backlight for ThinkPad X201s (Benjamin Tissoires) [1218354]
-- [acpi] video: Remove video_set_use_native_backlight quirk (Benjamin Tissoires) [1218354]
-- [acpi] video: Disable native_backlight on HP ENVY 15 Notebook PC (Benjamin Tissoires) [1218354]
-- [acpi] video: Add a disable_native_backlight quirk (Benjamin Tissoires) [1218354]
-- [acpi] video: Fix use_native_backlight selection logic (Benjamin Tissoires) [1218354]
-- [acpi] video: Add use_native_backlight quirk for HP EliteBook 2014 models (Benjamin Tissoires) [1218354]
-- [acpi] move models with win8 brightness problems from win8 blacklist to use_native_backlight (Benjamin Tissoires) [1218354]
-- [acpi] blacklist: Add dmi_enable_osi_linux quirk for Asus EEE PC 1015PX (Benjamin Tissoires) [1218354]
-- [acpi] blacklist win8 OSI for Dell Inspiron 7737 (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi: Blacklist Win8 OSI for some HP laptop 2013 models" (Benjamin Tissoires) [1218354]
-- [acpi] video: Fix backlight taking 2 steps on a brightness up/down keypress (Benjamin Tissoires) [1218354]
-- [acpi] video: Add use_native_backlight quirk for HP ProBook 4540s (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi video: change acpi-video brightness_switch_enabled default to 0" (Benjamin Tissoires) [1218354]
-- [acpi] video: Add Acer TravelMate B113 to native backlight blacklist (Benjamin Tissoires) [1218354]
-- [acpi] i915: ignore firmware requests for backlight change (Benjamin Tissoires) [1218354]
-- [acpi] video: Change the default for video.use_native_backlight to 1 (Benjamin Tissoires) [1218354]
-- [acpi] video: Add 4 new models to the use_native_backlight DMI list (Benjamin Tissoires) [1218354]
-- [acpi] video: Add use native backlight quirk for the ThinkPad W530 (Benjamin Tissoires) [1218354]
-- [acpi] video: Unregister the backlight device if a raw one shows up later (Benjamin Tissoires) [1218354]
-- [acpi] video: Add an acpi_video_unregister_backlight function (Benjamin Tissoires) [1218354]
-- [acpi] video: Revert native brightness quirk for ThinkPad T530 (Benjamin Tissoires) [1218354]
-- [acpi] video: Don't register acpi_video_resume notifier without backlight devices (Benjamin Tissoires) [1218354]
-- [acpi] video: correct DMI tag for Dell Inspiron 7520 (Benjamin Tissoires) [1218354]
-- [acpi] video: change acpi-video brightness_switch_enabled default to 0 (Benjamin Tissoires) [1218354]
-- [acpi] video: Add use_native_backlight quirks for more systems (Benjamin Tissoires) [1218354]
-- [acpi] video: Favor native backlight interface for ThinkPad Helix (Benjamin Tissoires) [1218354]
-- [acpi] video: Add systems that should favour native backlight interface (Benjamin Tissoires) [1218354]
-- [acpi] Blacklist Win8 OSI for some HP laptop 2013 models (Benjamin Tissoires) [1218354]
-- [acpi] delete CONFIG_ACPI_BLACKLIST_YEAR (Benjamin Tissoires) [1218354]
-- [acpi] blacklist: fix name of ThinkPad Edge E530 (Benjamin Tissoires) [1218354]
-- [acpi] Add Toshiba NB100 to Vista _OSI blacklist (Benjamin Tissoires) [1218354]
-- [acpi] add missing win8 OSI comment to blacklist (Benjamin Tissoires) [1218354]
-- [acpi] update win8 OSI blacklist (Benjamin Tissoires) [1218354]
-- [acpi] blacklist win8 OSI for buggy laptops (Benjamin Tissoires) [1218354]
-- [acpi] blacklist win8 OSI for ASUS Zenbook Prime UX31A (Benjamin Tissoires) [1218354]
-- [acpi] video: Filter the _BCL table for duplicate brightness values (Benjamin Tissoires) [1218354]
-- [acpi] video: clean up DMI table for initial black screen problem (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi video: Ignore BIOS initial backlight value for HP 250 G1" (Benjamin Tissoires) [1218354]
-- [acpi] video: Quirk initial backlight level 0 (Benjamin Tissoires) [1218354]
-- [acpi] video: Fix initial level validity test (Benjamin Tissoires) [1218354]
-- [acpi] video: Ignore BIOS initial backlight value for HP 250 G1 (Benjamin Tissoires) [1218354]
-- [acpi] video: Do not register backlight if win8 and native interface exists (Benjamin Tissoires) [1218354]
-- [acpi] video: seperate backlight control and event interface (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi video: Always call acpi_video_init_brightness() on init" (Benjamin Tissoires) [1218354]
-- [acpi] video: drop unused fields from struct acpi_video_brightness_flags (Benjamin Tissoires) [1218354]
-- [acpi] video: remove unnecessary type casting (Benjamin Tissoires) [1218354]
-- [acpi] video: trivial style cleanups (Benjamin Tissoires) [1218354]
-- [acpi] video: trivial costmetic cleanups (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi video / i915: No ACPI backlight if firmware expects Windows 8" (Benjamin Tissoires) [1218354]
-- [acpi] video: no automatic brightness changes by win8-compatible firmware (Benjamin Tissoires) [1218354]
-- [acpi] video / i915: No ACPI backlight if firmware expects Windows 8 (Benjamin Tissoires) [1218354]
-- [acpi] video: Always call acpi_video_init_brightness() on init (Benjamin Tissoires) [1218354]
-- [acpi] backlight: Add backlight device (un)registration notification (Benjamin Tissoires) [1218354]
-- [acpi] backlight: fix KABI breakage (Benjamin Tissoires) [1218354]
-- [acpi] backlight: introduce backlight_device_registered (Benjamin Tissoires) [1218354]
-- [acpi] acpica: expose OSI version (Benjamin Tissoires) [1218354]
-- [x86] kvm: add module parameter to disable periodic kvmclock sync (Marcelo Tosatti) [1220952]
-- [x86] kvm: increase user memory slots to 509 (Igor Mammedov) [1155581]
-- [iommu] vt-d: Fix an off-by-one bug in __domain_mapping() (Myron Stowe) [1171802]
-- [kernel] lockdep: Increase static allocations (Jiri Olsa) [1158087]
-
-* Mon Jun 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-265.el7]
-- [md] dm: fix casting bug in dm_merge_bvec() (Mike Snitzer) [1166127 1208542]
-- [md] dm: fix reload failure of 0 path multipath mapping on blk-mq devices (Mike Snitzer) [1166127 1208542]
-- [md] dm: fix false warning in free_rq_clone() for unmapped requests (Mike Snitzer) [1166127 1208542]
-- [md] dm-mpath: fix leak of dm_mpath_io structure in blk-mq .queue_rq error path (Mike Snitzer) [1166127 1208542]
-- [md] dm: requeue from blk-mq dm_mq_queue_rq() using BLK_MQ_RQ_QUEUE_BUSY (Mike Snitzer) [1166127 1208542]
-- [md] dm: fix NULL pointer when clone_and_map_rq returns !DM_MAPIO_REMAPPED (Mike Snitzer) [1166127 1208542]
-- [md] dm: run queue on re-queue (Mike Snitzer) [1166127 1208542]
-- [md] dm-log-userspace-base: fix compile warning (Mike Snitzer) [1166127 1208542]
-- [md] dm-log-userspace-transfer: match wait_for_completion_timeout return type (Mike Snitzer) [1166127 1208542]
-- [md] dm-log-userspace: split flush_entry_pool to be per dirty-log (Mike Snitzer) [1166127 1208542]
-- [md] dm-table: fall back to getting device using name_to_dev_t() (Mike Snitzer) [1166127 1208542]
-- [init] fix regression by supporting devices with major:minor:offset format (Mike Snitzer) [1166127 1208542]
-- [init] stricter checking of major:minor root= values (Mike Snitzer) [1166127 1208542]
-- [init] export name_to_dev_t and mark name argument as const (Mike Snitzer) [1166127 1208542]
-- [md] dm: fix free_rq_clone() NULL pointer when requeueing unmapped request (Mike Snitzer) [1166127 1208542]
-- [md] dm: only initialize the request_queue once (Mike Snitzer) [1166127 1208542]
-- [md] dm: add 'use_blk_mq' module param and expose in per-device ro sysfs attr (Mike Snitzer) [1166127 1208542]
-- [md] dm: optimize dm_mq_queue_rq to _not_ use kthread if using pure blk-mq (Mike Snitzer) [1166127 1208542]
-- [md] dm: add full blk-mq support to request-based DM (Mike Snitzer) [1166127 1208542]
-- [md] dm-table: use bool function return values of true/false not 1/0 (Mike Snitzer) [1166127 1208542]
-- [md] dm-delay: use msecs_to_jiffies for time conversion (Mike Snitzer) [1166127 1208542]
-- [md] dm-verity: add error handling modes for corrupted blocks (Mike Snitzer) [1166127 1208542]
-- [md] dm-crypt: fix missing error code return from crypt_ctr error path (Mike Snitzer) [1166127 1208542]
-- [md] dm-crypt: update URLs to new cryptsetup project page (Mike Snitzer) [1166127 1208542]
-- [md] dm-switch: fix Documentation to use plain text (Mike Snitzer) [1166127 1208542]
-- [md] dm-thin: remove stale 'trim' message documentation (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: try not to writeback data that changed in the last second (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: remove unused generation member of struct entry (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: track entries hit this 'tick' via sentinel objects (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: remove queue_shift_down() (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: keep track of the number of entries in a multiqueue (Mike Snitzer) [1166127 1208542]
-- [md] dm: impose configurable deadline for dm_request_fn's merge heuristic (Mike Snitzer) [1166127 1208542]
-- [kernel] ktime: add ktime_after and ktime_before helper (Mike Snitzer) [1166127 1208542]
-- [md] dm-sysfs: introduce ability to add writable attributes (Mike Snitzer) [1166127 1208542]
-- [md] dm: don't start current request if it would've merged with the previous (Mike Snitzer) [1166127 1208542]
-- [md] dm: reduce the queue delay used in dm_request_fn from 100ms to 10ms (Mike Snitzer) [1166127 1208542]
-- [md] dm: don't schedule delayed run of the queue if nothing to do (Mike Snitzer) [1166127 1208542]
-- [md] dm: only run the queue on completion if congested or no requests pending (Mike Snitzer) [1166127 1208542]
-- [md] dm: remove request-based logic from make_request_fn wrapper (Mike Snitzer) [1166127 1208542]
-- [md] dm: remove request-based DM queue's lld_busy_fn hook (Mike Snitzer) [1166127 1208542]
-- [md] dm: remove unnecessary wrapper around blk_lld_busy (Mike Snitzer) [1166127 1208542]
-- [md] dm: rename __dm_get_reserved_ios() helper to __dm_get_module_param() (Mike Snitzer) [1166127 1208542]
-- [powerpc] eeh: Delay probing EEH device during hotplug (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix race condition in pcibios_set_pcie_reset_state() (Laurent Vivier) [1213675]
-- [powerpc] tg3: Release IRQs on permanent error (Laurent Vivier) [1213675]
-- [powerpc] powernv: Don't map M64 segments using M32DT (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix PE#0 check in eeh_add_to_parent_pe() (Laurent Vivier) [1213675]
-- [powerpc] pci: Create pci_dn for VFs (Laurent Vivier) [1213675]
-- [powerpc] pci: Export pci_iov_virtfn_bus() and pci_iov_virtfn_devfn() (Laurent Vivier) [1213675]
-- [powerpc] sfc: Don't use of_node_to_eeh_dev() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Remove device_node dependency (Laurent Vivier) [1213675]
-- [powerpc] eeh: Replace device_node with pci_dn in eeh_ops (Laurent Vivier) [1213675]
-- [powerpc] eeh: Do probe on pci_dn (Laurent Vivier) [1213675]
-- [powerpc] eeh: Create eeh_dev from pci_dn instead of device_node (Laurent Vivier) [1213675]
-- [powerpc] pci: Trace more information from pci_dn (Laurent Vivier) [1213675]
-- [powerpc] powernv: Use pci_dn, not device_node, in PCI config accessor (Laurent Vivier) [1213675]
-- [powerpc] pci: Refactor pci_dn (Laurent Vivier) [1213675]
-- [powerpc] pci: remove the multi-init for pci_dn->phb (Laurent Vivier) [1213675]
-- [powerpc] powernv: Remove unused file (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation reset() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation next_error() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation get_state() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation set_option() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation configure_bridge() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation get_log() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation post_init() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation err_inject() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Shorten EEH function names (Laurent Vivier) [1213675]
-- [powerpc] eeh: Enhance pcibios_set_pcie_reset_state() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Allow to set maximal frozen times (Laurent Vivier) [1213675]
-- [powerpc] eeh: Introduce flag EEH_PE_REMOVED (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix missed PE#0 on P7IOC (Laurent Vivier) [1213675]
-- [powerpc] eeh: Dump PHB diag-data early (Laurent Vivier) [1213675]
-- [powerpc] eeh: Recover EEH error on ownership change for BCM5719 (Laurent Vivier) [1213675]
-- [powerpc] eeh: Set EEH_PE_RESET on PE reset (Laurent Vivier) [1213675]
-- [powerpc] eeh: Refactor eeh_reset_pe() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Replace OPAL_DEASSERT_RESET with EEH_RESET_DEACTIVATE (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix PE state format (Laurent Vivier) [1213675]
-- [powerpc] eeh: Block CFG upon frozen Shiner adapter (Laurent Vivier) [1213675]
-- [powerpc] eeh: Don't collect logs on PE with blocked config space (Laurent Vivier) [1213675]
-- [powerpc] eeh: Block PCI config access upon frozen PE (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop config requests in EEH accessors (Laurent Vivier) [1213675]
-- [powerpc] eeh: Rename flag EEH_PE_RESET to EEH_PE_CFG_BLOCKED (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix condition for isolated state (Laurent Vivier) [1213675]
-- [powerpc] eeh: Show hex prefix for PE state sysfs (Laurent Vivier) [1213675]
-- [powerpc] powernv: Fetch frozen PE on top level (Laurent Vivier) [1213675]
-- [powerpc] eeh: Dump PCI config space for all child devices (Laurent Vivier) [1213675]
-- [powerpc] eeh: Emulate EEH recovery for VFIO devices (Laurent Vivier) [1213675]
-- [powerpc] eeh: Tag reset state for user owned PE (Laurent Vivier) [1213675]
-- [powerpc] eeh: Block PCI config access during reset (Laurent Vivier) [1213675]
-- [powerpc] eeh: Use eeh_unfreeze_pe() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Unfreeze PE on enabling EEH functionality (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix improper condition in eeh_pci_enable() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Clear frozen device state in time (Laurent Vivier) [1213675]
-- [powerpc] powernv: Clear PAPR error injection registers (Laurent Vivier) [1213675]
-- [powerpc] powernv: Add PCI error injection debugfs entry (Laurent Vivier) [1213675]
-- [powerpc] eeh: Introduce eeh_ops::err_inject (Laurent Vivier) [1213675]
-- [powerpc] powernv: Sync header with firmware (Laurent Vivier) [1213675]
-- [powerpc] eeh: Clear frozen state on passing device (Laurent Vivier) [1213675]
-- [powerpc] eeh: Reenable PCI devices after reset (Laurent Vivier) [1213675]
-- [powerpc] eeh: Freeze PE before PE reset (Laurent Vivier) [1213675]
-- [powerpc] eeh: Add eeh_pe_state sysfs entry (Laurent Vivier) [1213675]
-- [powerpc] eeh: Drop unused argument in eeh_check_failure() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix kernel crash when passing through VF (Laurent Vivier) [1213675]
-- [powerpc] vfio: Export vfio_spapr_iommu_eeh_ioctl() with GPL (Laurent Vivier) [1213675]
-- [powerpc] vfio/pci: Restore MSIx message prior to enabling (Laurent Vivier) [1213675]
-- [powerpc] pci: Assume all Mellanox devices have broken INTx masking (Laurent Vivier) [1213675]
-- [powerpc] pseries: Failure on removing device node (Laurent Vivier) [1213675]
-- [powerpc] eeh: Export eeh_iommu_group_to_pe() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Add missing #ifdef CONFIG_IOMMU_API (Laurent Vivier) [1213675]
-- [powerpc] vfio: Enable VFIO if EEH is not supported (Laurent Vivier) [1213675]
-- [powerpc] vfio: Allow EEH to be built as module (Laurent Vivier) [1213675]
-- [powerpc] vfio: Fix EEH build error (Laurent Vivier) [1213675]
-- [powerpc] vfio: EEH support for VFIO PCI device (Laurent Vivier) [1213675]
-- [hid] usbhid: yet another mouse with ALWAYS_POLL (Don Zickus) [914682]
-- [hid] usbhid: more mice with ALWAYS_POLL (Don Zickus) [914682]
-- [hid] add quirk for PIXART OEM mouse used by HP (Don Zickus) [914682]
-- [hid] add HP OEM mouse to quirk ALWAYS_POLL (Don Zickus) [914682]
-- [hid] add ALWAYS_POLL quirk for a Logitech 0xc007 (Don Zickus) [914682]
-- [hid] usbhid: enable always-poll quirk for Elan Touchscreen 0103 (Don Zickus) [914682]
-- [hid] usbhid: prevent unwanted events to be sent when re-opening the device (Don Zickus) [914682]
-- [hid] usbhid: enable always-poll quirk for Elan Touchscreen 016f (Don Zickus) [914682]
-- [hid] usbhid: enable always-poll quirk for Elan Touchscreen 009b (Don Zickus) [914682]
-- [hid] usbhid: add another mouse that needs QUIRK_ALWAYS_POLL (Don Zickus) [914682]
-- [hid] usbhid: fix PIXART optical mouse (Don Zickus) [914682]
-- [hid] usbhid: enable always-poll quirk for Elan Touchscreen (Don Zickus) [914682]
-- [hid] usbhid: add always-poll quirk (Don Zickus) [914682]
-- [tools] turbostat: update version number to 4.7 (Prarit Bhargava) [1224005]
-- [tools] turbostat: allow running without cpu0 (Prarit Bhargava) [1224005]
-- [tools] turbostat: correctly decode of ENERGY_PERFORMANCE_BIAS (Prarit Bhargava) [1224005]
-- [tools] turbostat: correctly display more than 2 threads/core (Prarit Bhargava) [1224005]
-- [net] tcp: double default TSQ output bytes limit (Hannes Frederic Sowa) [1228113]
-- [net] bridge: fix parsing of MLDv2 reports (Thadeu Lima de Souza Cascardo) [1219092]
-- [net] conntrack: RFC5961 challenge ACK confuse conntrack LAST-ACK transition (Jesper Brouer) [1212829]
-- [net] tcp: Restore RFC5961-compliant behavior for SYN packets (Jesper Brouer) [1212829]
-
-* Thu Jun 11 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-264.el7]
-- [powerpc] perf: hv-24x7: Add missing put_cpu_var() (Jiri Olsa) [1220106]
-- [block] blk-mq: make plug work for mutiple disks and queues (Jeff Moyer) [1185689]
-- [block] blk-mq: do limited block plug for multiple queue case (Jeff Moyer) [1185689]
-- [block] blk-mq: avoid re-initialize request which is failed in direct dispatch (Jeff Moyer) [1185689]
-- [block] blk-mq: fix plugging in blk_sq_make_request (Jeff Moyer) [1185689]
-- [kernel] sched: Prevent recursion in io_schedule() (Jeff Moyer) [1185689]
-- [scsi] ipr: Increase default adapter init stage change timeout (Steve Best) [1229217]
-- [fs] fs-cache: Retain the netfs context in the retrieval op earlier (David Howells) [1130457 1204964]
-- [fs] fs-cache: The operation cancellation method needs calling in more places (David Howells) [1130457 1204964]
-- [fs] fs-cache: Put an aborted initialised op so that it is accounted correctly (David Howells) [1130457 1204964]
-- [fs] fs-cache: Fix cancellation of in-progress operation (David Howells) [1130457 1204964]
-- [fs] fs-cache: Count the number of initialised operations (David Howells) [1130457 1204964]
-- [fs] fs-cache: Out of line fscache_operation_init() (David Howells) [1130457 1204964]
-- [fs] fs-cache: Permit fscache_cancel_op() to cancel in-progress operations too (David Howells) [1130457 1204964]
-- [fs] fs-cache: fscache_object_is_dead() has wrong logic, kill it (David Howells) [1130457 1204964]
-- [fs] fs-cache: Synchronise object death state change vs operation submission (David Howells) [1130457 1204964]
-- [fs] fs-cache: Handle a new operation submitted against a killed object (David Howells) [1130457 1204964]
-- [fs] fs-cache: When submitting an op, cancel it if the target object is dying (David Howells) [1130457 1204964]
-- [fs] fs-cache: Move fscache_report_unexpected_submission() to make it more available (David Howells) [1130457 1204964]
-- [fs] fs-cache: Count culled objects and objects rejected due to lack of space (David Howells) [1130457 1204964]
-- [fs] fs-cache: use __seq_open_private() (David Howells) [1130457 1204964]
-- [fs] cachefiles: Fix incorrect test for in-memory object collision (David Howells) [1130457 1204964]
-- [fs] cachefiles: Handle object being killed before being set up (David Howells) [1130457 1204964]
-- [fs] cachefiles: add missing \n to kerror conversions (David Howells) [1130457 1204964]
-- [fs] cachefiles: remove two unused pagevecs (David Howells) [1130457 1204964]
-- [fs] fs-cache: refcount becomes corrupt under vma pressure (David Howells) [1130457 1204964]
-- [fs] fs-cache: Reduce cookie ref count if submit fails (David Howells) [1130457 1204964]
-- [fs] fs-cache: Timeout for releasepage() (David Howells) [1130457 1204964]
-- [fs] fscache: make ctl_table static (David Howells) [1130457 1204964]
-- [fs] fscache: convert use of typedef ctl_table to struct ctl_table (David Howells) [1130457 1204964]
-- [fs] cachefiles: replace kerror by pr_err (David Howells) [1130457 1204964]
-- [fs] cachefiles: convert printk to pr_foo() (David Howells) [1130457 1204964]
-- [fs] fscache: replace seq_printf by seq_puts (David Howells) [1130457 1204964]
-- [fs] fscache: convert printk to pr_foo() (David Howells) [1130457 1204964]
-- [fs] get rid of pointless checks for NULL ->i_op (David Howells) [1130457 1204964]
-- [fs] fs-cache: Handle removal of unadded object to the fscache_object_list rb tree (David Howells) [1130457 1204964]
-- [fs] nfs: Use i_writecount to control whether to get an fscache cookie in nfs_open() (David Howells) [1130457 1204964]
-- [fs] fs-cache: Provide the ability to enable/disable cookies (David Howells) [1130457 1204964]
-- [fs] fs-cache: Add use/unuse/wake cookie wrappers (David Howells) [1130457 1204964]
-- [fs] cachefiles: Don't try to dump the index key if the cookie has been cleared (David Howells) [1130457 1204964]
-- [fs] cachefiles: Fix memory leak in cachefiles_check_auxdata error paths (David Howells) [1130457 1204964]
-- [fs] fscache: check consistency does not decrement refcount (David Howells) [1130457 1204964]
-- [fs] fscache: Netfs function for cleanup post readpages (David Howells) [1130457 1204964]
-- [fs] cachefiles: Implement interface to check cache consistency (David Howells) [1130457 1204964]
-- [fs] fs-cache: Add interface to check consistency of a cached object (David Howells) [1130457 1204964]
-- [fs] fs-cache: Don't use spin_is_locked() in assertions (David Howells) [1130457 1204964]
-- [fs] fs-cache: The retrieval remaining-pages counter needs to be atomic_t (David Howells) [1130457 1204964]
-- [fs] cachefiles: remove unused macro list_to_page() (David Howells) [1130457 1204964]
-- [fs] fs-cache: Simplify cookie retention for fscache_objects, fixing oops (David Howells) [1130457 1204964]
-- [fs] fs-cache: Fix object state machine to have separate work and wait states (David Howells) [1129693 1130457 1204964]
-- [fs] fs-cache: Wrap checks on object state (David Howells) [1130457 1204964]
-- [fs] fs-cache: Uninline fscache_object_init() (David Howells) [1130457 1204964]
-- [fs] fs-cache: Don't sleep in page release if __GFP_FS is not set (David Howells) [1130457 1204964]
-- [fs] cachefiles: name i_mutex lock class explicitly (David Howells) [1130457 1204964]
-- [fs] fscache: remove spin_lock() from the condition in while() (David Howells) [1130457 1204964]
-- [kernel] wait: fix new kernel-doc warning in wait.c (David Howells) [1130457 1204964]
-- [kernel] wait: Fix __wait_on_atomic_t() to call the action func if the counter != 0 (David Howells) [1130457 1204964]
-
-* Wed Jun 10 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-263.el7]
-- [fs] pipe: fix pipe corruption and iovec overrun on partial copy (Seth Jennings) [1198843] {CVE-2015-1805}
-- [fs] xfs: add RENAME_WHITEOUT support (Carlos Maiolino) [1158888]
-- [fs] xfs: make xfs_cross_rename() complete fully (Carlos Maiolino) [1158888]
-- [fs] xfs: factor out xfs_finish_rename() (Carlos Maiolino) [1158888]
-- [fs] xfs: cleanup xfs_rename error handling (Carlos Maiolino) [1158888]
-- [fs] xfs: clean up inode locking for RENAME_WHITEOUT (Carlos Maiolino) [1158888]
-- [fs] xfs: inodes are new until the dentry cache is set up (Carlos Maiolino) [1158888]
-- [fs] xfs: fix tmpfile/selinux deadlock and initialize security (Carlos Maiolino) [1158888]
-- [fs] allow the temp files created by open() to be linked to (Carlos Maiolino) [1158888]
-- [fs] xfs: allow linkat() on O_TMPFILE files (Carlos Maiolino) [1158888]
-- [fs] xfs: add O_TMPFILE support (Carlos Maiolino) [1158888]
-- [fs] xfs: Add support to RENAME_EXCHANGE flag (Carlos Maiolino) [1158888]
-- [fs] xfs: Make xfs_vn_rename compliant with renameat2() syscall (Carlos Maiolino) [1158888]
-- [fs] xfs: Wrap dir inode operations inside inode_operation_wrapper (Carlos Maiolino) [1158888]
-- [kvm] ppc: book3s hv: Endian fix for accessing VPA yield count (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix spinlock/mutex ordering issue in kvmppc_set_lpcr() (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Enable in-kernel XICS emulation by default (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Improve H_CONFER implementation (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix instruction emulation (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix endianness of instruction obtained from HEIR register (Thomas Huth) [1226884 1227323]
-- [kvm] powerpc/kvm: support to handle sw breakpoint (Thomas Huth) [1226884 1227323]
-- [kvm] powerpc/kvm: Define struct kvm_debug_exit_arch for powerpc (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Tracepoints for KVM HV guest interactions (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Simplify locking around stolen time calculations (Thomas Huth) [1226884 1227323]
-- [kvm] arch: powerpc: kvm: book3s_paired_singles.c: Remove unused function (Thomas Huth) [1226884 1227323]
-- [kvm] arch: powerpc: kvm: book3s_pr.c: Remove unused function (Thomas Huth) [1226884 1227323]
-- [kvm] arch: powerpc: kvm: book3s.c: Remove some unused functions (Thomas Huth) [1226884 1227323]
-- [kvm] arch: powerpc: kvm: book3s_32_mmu.c: Remove unused function (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix computation of tlbie operand (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Check wait conditions before sleeping in kvmppc_vcore_blocked (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix inaccuracies in ICP emulation for H_IPI (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Add missing HPTE unlock (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Only accept host PVR value for guest PVR (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Increase timeout for grabbing secondary threads (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Remove the tasklet used by the hrtimer (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Add register name when loading toc (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: pr: Handle FSCR feature deselects (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: drop duplicate tracepoint (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: hv: Remove generic instruction emulation (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Expose helper functions for data/inst faults (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Separate loadstore emulation from priv emulation (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Handle magic page in kvmppc_ld/st (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Use kvm_read_guest in kvmppc_ld (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Remove kvmppc_bad_hva() (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Move kvmppc_ld/st to common code (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Implement kvmppc_xlate for all targets (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: hv: Update compute_tlbie_rb to handle 16MB base page (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Provide different CAPs based on HV or PR mode (Thomas Huth) [1226884 1227323]
-- [kvm] Use the POWER8 Micro Partition Prefetch Engine in KVM HV on POWER8 (Thomas Huth) [1226884 1227323]
-- [kvm] Split out struct kvmppc_vcore creation to separate function (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Make kvmppc_ld return a more accurate error indication (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Fix LPCR one_reg interface (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Allow kvmppc_get_last_inst() to fail (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Remove kvmppc_read_inst() function (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Make magic page properly 4k mappable (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Add hack for split real mode (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Stop PTE lookup on write errors (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Deflect page write faults properly in kvmppc_st (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s pr: Fix sparse endian checks (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s pr: Handle hyp doorbell exits (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix tlbie compile error (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: pr: Emulate instruction counter (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: pr: Emulate virtual timebase register (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: pr: Fix PURR and SPURR emulation (Thomas Huth) [1226884 1227323]
-- [x86] mm: numa: Fix kernel stack corruption in numa_init()->numa_clear_kernel_node_hotplug() (Dave Young) [1188542]
-- [x86] mm: numa: fix boot failure when all nodes are hotpluggable (Dave Young) [1188542]
-- [x86] mm: numa: use for_each_memblock() (Dave Young) [1188542]
-- [ata] ahci: avoton port-disable reset-quirk (David Milburn) [1223189]
-- [ata] libata: Blacklist queued TRIM on all Samsung 800-series (David Milburn) [1225622]
-- [pci] hotplug: Drop pointless ACPI-based "slot detection" check (Jarod Wilson) [1211805]
-- [block] loop: remove (now) unused 'out' label (Jarod Wilson) [1182243]
-- [block] s390: dasd: remove obsolete while -EBUSY loop (Jarod Wilson) [1182243]
-- [block] s390: dasd_genhd: convert to blkdev_reread_part (Jarod Wilson) [1182243]
-- [block] nbd: convert to blkdev_reread_part() (Jarod Wilson) [1182243]
-- [block] loop: fix another reread part failure (Jarod Wilson) [1182243]
-- [block] loop: don't hold lo_ctl_mutex in lo_open (Jarod Wilson) [1182243]
-- [block] replace trylock with mutex_lock in blkdev_reread_part() (Jarod Wilson) [1182243]
-- [block] export blkdev_reread_part() and __blkdev_reread_part() (Jarod Wilson) [1182243]
-
-* Mon Jun 08 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-262.el7]
-- [drm] upstream sync to 4.0 (Rob Clark) [1195474]
-- [drm] upstream sync to 3.19.0 (Rob Clark) [1195473]
-- [drm] upstream sync to 3.18.0 (Rob Clark) [1195472]
-- [drm] upstream sync to 3.17.0 (Rob Clark) [1195471]
-- [drm] add drm_backport (Rob Clark) [1195471]
-- [kernel] implement DIV_ROUND_CLOSEST_ULL (Rob Clark) [1195471]
-- [mm] mmu_notifier: add call_srcu and sync function for listener to delay call and sync (Rob Clark) [1195471]
-- [kernel] time: Export nsecs_to_jiffies() (Rob Clark) [1195471]
-- [kernel] time: export nsec_to_jiffies64 (Rob Clark) [1195471]
-- [acpi] pm: Export acpi_target_system_state() to modules (Rob Clark) [1195471]
-- [base] component: fix bug with legacy API (Rob Clark) [1195471]
-- [base] component: add support for component match array (Rob Clark) [1195471]
-- [base] component: ignore multiple additions of the same component (Rob Clark) [1195471]
-- [base] component: fix missed cleanup in case of devres failure (Rob Clark) [1195471]
-- [base] fix devres handling for master device (Rob Clark) [1195471]
-- [base] provide an infrastructure for componentised subsystems (Rob Clark) [1195471]
-- [kernel] seqcount: backport __seqcount_init() (Rob Clark) [1195471]
-- [drm] vgaswitcheroo: add vga_switcheroo_fini_domain_pm_ops (Rob Clark) [1195471]
-- [netdrv] myri10ge: check for DMA mapping errors (Stanislaw Gruszka) [1120674]
-- [cpufreq] powernv: Add pr_warn() on OPAL firmware failures (Steve Best) [1224148]
-- [x86] perf: uncore: Move uncore_box_init() out of driver initialization (Jiri Olsa) [1220682]
-- [input] elantech - fix semi-mt protocol for v3 HW (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix absolute mode setting on some ASUS laptops (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - add more Fujtisu notebooks to force crc_enabled (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - support new ICs types for version 4 (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - trust firmware about trackpoint presence (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - provide a sysfs knob for crc_enabled (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - report the middle button of the touchpad (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix crc_enabled for Fujitsu H730 (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - use elantech_report_trackpoint for hardware v4 too (Benjamin Tissoires) [1157840 1188234]
-- [input] add missing POINTER / DIRECT properties to a bunch of drivers (Benjamin Tissoires) [1157840 1188234]
-- [input] add INPUT_PROP_POINTING_STICK property (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix detection of touchpad on ASUS s301l (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - add support for trackpoint found on some v3 models (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - reset the device when elantech probe fails (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - don't set bit 1 of reg_10 when the no_hw_res quirk is set (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - deal with clickpads reporting right button events (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix touchpad initialization on Gigabyte U2442 (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - add support for newer elantech touchpads (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - improve clickpad detection (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - add support for newer (August 2013) devices (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix packet check for v3 and v4 hardware (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix for newer hardware versions (v7) (Benjamin Tissoires) [1157840 1188234]
-- [x86] kvm: zero kvmclock_offset when vcpu0 initializes kvmclock system MSR (Marcelo Tosatti) [1184155]
-- [x86] kvmclock: set scheduler clock stable (Marcelo Tosatti) [1184155]
-- [x86] kvmclock: add flag to indicate pvclock counts from zero (Marcelo Tosatti) [1184155]
-- [pci] Expose pci_load_saved_state for public consumption (Myron Stowe) [1202603]
-- [iommu] vt-d: Check return value of acpi_bus_get_device() (Myron Stowe) [1205900]
-- [iommu] vt-d: Remove unused variable (Myron Stowe) [1225193]
-- [iommu] vt-d: Detach domain *only* from attached iommus (Myron Stowe) [1225193]
-- [iommu] core: Check for the right function pointer in iommu_map() (Myron Stowe) [1225193]
-- [iommu] amd: Fix cleanup_domain for mass device removal (Myron Stowe) [1225193]
-- [iommu] vt-d: Defer domain removal if device is assigned to a driver (Myron Stowe) [1225193]
-- [iommu] powerpc/powernv: Fix IOMMU group lost (Myron Stowe) [1222546]
-- [iommu] vt-d: Fix race setting IRQ CPU affinity while freeing IRQ (Myron Stowe) [1225193]
-- [iommu] amd: Fix 2 typos in comments (Myron Stowe) [1225193]
-- [iommu] amd: Fix device_state reference counting (Myron Stowe) [1225193]
-- [iommu] amd: Remove change_pte mmu_notifier call-back (Myron Stowe) [1225193]
-- [iommu] amd: Don't set pasid_state->mm to NULL in unbind_pasid (Myron Stowe) [1225193]
-- [iommu] vt-d: Fix issue in computing domain's iommu_snooping flag (Myron Stowe) [1225193]
-- [iommu] vt-d: Introduce helper function iova_size() to improve code readability (Myron Stowe) [1225193]
-- [iommu] vt-d: Introduce helper domain_pfn_within_range() to simplify code (Myron Stowe) [1225193]
-- [iommu] vt-d: Simplify intel_unmap_sg() and kill duplicated code (Myron Stowe) [1225193]
-- [iommu] vt-d: Change iommu_enable/disable_translation to return void (Myron Stowe) [1225193]
-- [iommu] vt-d: Simplify include/linux/dmar.h (Myron Stowe) [1225193]
-- [iommu] vt-d: Avoid freeing virtual machine domain in free_dmar_iommu() (Myron Stowe) [1225193]
-- [iommu] vt-d: Fix possible invalid memory access caused by free_dmar_iommu() (Myron Stowe) [1225193]
-- [iommu] vt-d: Allocate dynamic domain id for virtual domains only (Myron Stowe) [1225193]
-- [iommu] vt-d: Introduce helper functions to make code symmetric for readability (Myron Stowe) [1225193]
-- [iommu] vt-d: Fix dmar_domain leak in iommu_attach_device (Myron Stowe) [1225193]
-- [iommu] vt-d: Introduce helper functions to improve code readability (Myron Stowe) [1225193]
-- [iommu] vt-d: Match segment number when searching for dev_iotlb capable devices (Myron Stowe) [1225193]
-- [iommu] amd: Don't call the inv_ctx_cb when pasid is not set up (Myron Stowe) [1225193]
-- [iommu] amd: Don't hold a reference to task_struct (Myron Stowe) [1225193]
-- [iommu] amd: Don't hold a reference to mm_struct (Myron Stowe) [1225193]
-- [iommu] amd: Add pasid_state->invalid flag (Myron Stowe) [1225193]
-- [iommu] amd: Drop pasid_state reference in ppr_notifer error path (Myron Stowe) [1225193]
-- [iommu] amd: Get rid of __unbind_pasid (Myron Stowe) [1225193]
-- [iommu] amd: Don't free pasid_state in mn_release path (Myron Stowe) [1225193]
-- [iommu] amd: Don't call mmu_notifer_unregister in __unbind_pasid (Myron Stowe) [1225193]
-- [iommu] amd: Fix typo in amd_iommu_v2 driver (Myron Stowe) [1225193]
-- [iommu] amd: Drop oprofile dependency (Myron Stowe) [1225193]
-- [iommu] amd: Moving PPR fault flags macros definitions (Myron Stowe) [1225193]
-- [iommu] amd: Fix for pasid initialization (Myron Stowe) [1225193]
-- [iommu] vt-d: Remove the useless dma_pte_addr (Myron Stowe) [1225193]
-- [iommu] vt-d: Don't use magic number in dma_pte_superpage (Myron Stowe) [1225193]
-- [iommu] vt-d: Use inline function dma_pte_superpage instead of macros (Myron Stowe) [1225193]
-- [iommu] vt-d: Clear the redundant assignment for domain->nid (Myron Stowe) [1225193]
-- [iommu] vt-d: Clear the redundant assignment in dmar_enable_qi (Myron Stowe) [1225193]
-- [iommu] vt-d: Use list_for_each_safe() to simplify code (Myron Stowe) [1225193]
-- [iommu] amd: Fix small race between invalidate_range_end/start (Myron Stowe) [1225636]
-- [iommu] amd: Fix recently introduced compile warnings (Myron Stowe) [1225636]
-- [iommu] amd: Remove duplicate checking code (Myron Stowe) [1225636]
-- [iommu] amd: Handle parallel invalidate_range_start/end calls correctly (Myron Stowe) [1225636]
-- [iommu] amd: Remove IOMMUv2 pasid_state_list (Myron Stowe) [1225636]
-- [iommu] amd: Implement mmu_notifier_release call-back (Myron Stowe) [1225636]
-- [iommu] amd: Convert IOMMUv2 state_table into state_list (Myron Stowe) [1225636]
-- [iommu] amd: Don't access IOMMUv2 state_table directly (Myron Stowe) [1225636]
-
-* Fri Jun 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-261.el7]
-- [block] nvme: Add translation for block limits (David Milburn) [1179447]
-- [block] nvme: Fix error handling of class_create("nvme") (David Milburn) [1179447]
-- [block] nvme: increase depth of admin queue (David Milburn) [1179447]
-- [block] nvme: Fix PRP list calculation for non-4k system page size (David Milburn) [1179447]
-- [block] nvme: Fix blk-mq hot cpu notification (David Milburn) [1179447]
-- [block] nvme: embedded iod mask cleanup (David Milburn) [1179447]
-- [block] nvme: Freeze admin queue on device failure (David Milburn) [1179447]
-- [block] nvme: Initialize device list head before starting (David Milburn) [1179447]
-- [block] nvme: Fix potential corruption on sync commands (David Milburn) [1179447]
-- [block] nvme: Remove unused variables (David Milburn) [1179447]
-- [block] nvme: Fix scsi mode select llbaa setting (David Milburn) [1179447]
-- [block] nvme: Fix potential corruption during shutdown (David Milburn) [1179447]
-- [block] nvme: Asynchronous controller probe (David Milburn) [1179447]
-- [block] nvme: Register management handle under nvme class (David Milburn) [1179447]
-- [block] nvme: Update SCSI Inquiry VPD 83h translation (David Milburn) [1179447]
-- [block] nvme: avoid kmalloc/kfree for smaller IO (David Milburn) [1179447]
-- [block] nvme: within nvme_free_queues(), delete RCU sychro/deferred free (David Milburn) [1179447]
-- [block] nvme: cq_vector should be signed (David Milburn) [1179447]
-- [block] nvme: Fix locking on abort handling (David Milburn) [1179447]
-- [block] nvme: Start and stop h/w queues on reset (David Milburn) [1179447]
-- [block] nvme: Command abort handling fixes (David Milburn) [1179447]
-- [block] nvme: Admin queue removal handling (David Milburn) [1179447]
-- [block] nvme: Reference count admin queue usage (David Milburn) [1179447]
-- [block] nvme: Start all requests (David Milburn) [1179447]
-- [block] nvme: Fix double free irq (David Milburn) [1179447]
-- [block] nvme: fix race condition in nvme_submit_sync_cmd() (David Milburn) [1179447]
-- [block] nvme: fix retry/error logic in nvme_queue_rq() (David Milburn) [1179447]
-- [block] nvme: Fix FS mount issue (hot-remove followed by hot-add) (David Milburn) [1179447]
-- [block] nvme: fix error return checking from blk_mq_alloc_request() (David Milburn) [1179447]
-- [block] nvme: fix freeing of wrong request in abort path (David Milburn) [1179447]
-- [block] nvme: Fix command setup on IO retry (David Milburn) [1179447]
-- [block] nvme: Update module version major number (David Milburn) [1179447]
-- [block] nvme: fail pci initialization if the device doesn't have any BARs (David Milburn) [1179447]
-- [block] nvme: add ->exit_hctx() hook (David Milburn) [1179447]
-- [block] nvme: make setup work for devices that don't do INTx (David Milburn) [1179447]
-- [block] nvme: enable IO stats by default (David Milburn) [1179447]
-- [block] nvme: nvme_submit_async_admin_req() must use atomic rq allocation (David Milburn) [1179447]
-- [block] nvme: replace blk_put_request() with blk_mq_free_request() (David Milburn) [1179447]
-- [block] nvme: __nvme_submit_admin_cmd() can be static (David Milburn) [1179447]
-- [block] nvme: blk_mq_alloc_request() returns error pointers (David Milburn) [1179447]
-- [block] nvme: Convert to blk-mq (David Milburn) [1179447]
-- [block] nvme: Do not over allocate for discard requests (David Milburn) [1179447]
-- [block] nvme: Do not open disks that are being deleted (David Milburn) [1179447]
-- [block] nvme: Fix device probe waiting on kthread (David Milburn) [1179447]
-- [block] nvme: Updates for 1.1 spec (David Milburn) [1179447]
-- [block] nvme: Passthrough IOCTL for IO commands (David Milburn) [1179447]
-- [block] nvme: Add revalidate_disk callback (David Milburn) [1179447]
-- [block] nvme: Fix nvmeq waitqueue entry initialization (David Milburn) [1179447]
-- [block] nvme: Translate NVMe status to errno (David Milburn) [1179447]
-- [block] nvme: Fix SG_IO status values (David Milburn) [1179447]
-- [block] nvme: Remove duplicate compat SG_IO code (David Milburn) [1179447]
-- [block] nvme: Reference count pci device (David Milburn) [1179447]
-- [block] nvme: Replace rcu_assign_pointer() with RCU_INIT_POINTER() (David Milburn) [1179447]
-- [block] nvme: Correctly handle IOCTL_SUBMIT_IO when cpus > online queues (David Milburn) [1179447]
-- [block] nvme: Fix filesystem sync deadlock on removal (David Milburn) [1179447]
-- [block] nvme: Call nvme_free_queue directly (David Milburn) [1179447]
-- [block] nvme: Add shutdown timeout as module parameter (David Milburn) [1179447]
-- [block] nvme: Skip orderly shutdown on failed devices (David Milburn) [1179447]
-- [block] nvme: Whitespace fixes (David Milburn) [1179447]
-- [block] nvme: Use pci_stop_and_remove_bus_device_locked() (David Milburn) [1179447]
-- [block] nvme: Handling devices incapable of I/O (David Milburn) [1179447]
-- [block] nvme: Change nvme_enable_ctrl to set EN and manage CC thru ctrl_config (David Milburn) [1179447]
-- [block] nvme: Mismatched host/device page size support (David Milburn) [1179447]
-- [block] nvme: Update list of status codes (David Milburn) [1179447]
-- [block] nvme: Async event request (David Milburn) [1179447]
-- [s390] mm: implement software referenced bits (Hendrik Brueckner) [1182320]
-- [s390] mm: cleanup page table definitions (Hendrik Brueckner) [1182320]
-- [s390] mm: remove dead pfmf inline assembly (Hendrik Brueckner) [1182320]
-- [s390] dasd: add support for control unit initiated reconfiguration (Hendrik Brueckner) [1182290]
-- [s390] cio: fix multiple structure definitions (Hendrik Brueckner) [1182290]
-- [s390] perf: make print_debug_cf() static (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: fix printk format warnings (Hendrik Brueckner) [1182189]
-- [s390] use IS_ENABLED to check if a CONFIG is set to y or m (Hendrik Brueckner) [1182189]
-- [s390] perf: Add service level information for CPU-Measurement Facilities (Hendrik Brueckner) [1182189]
-- [s390] delete new instances of __cpuinit usage (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Add flag to process full SDBs only (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Add raw data sampling to support the diagnostic-sampling function (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Filter perf events based event->attr.exclude_* settings (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Detect KVM guest samples (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Add helper to read TOD from trailer entries (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Dynamically extend the sampling buffer if overflows occur (Hendrik Brueckner) [1182189]
-- [s390] perf, oprofile: Share sampling facility (Hendrik Brueckner) [1182189]
-- [s390] perf: Improve PMU selection for PERF_COUNT_HW_CPU_CYCLES events (Hendrik Brueckner) [1182189]
-- [s390] perf: add support for the CPU-Measurement Sampling Facility (Hendrik Brueckner) [1182189]
-- [s390] irq: rework irq subclass handling (Hendrik Brueckner) [1182189]
-- [s390] cpum_cf: Export event names in sysfs (Hendrik Brueckner) [1182189]
-- [s390] oprofile: move hwsampler interfaces to cpu_mf.h (Hendrik Brueckner) [1182189]
-- [s390] hwsampler: Updated misleading member names in hws_data_entry (Hendrik Brueckner) [1182189]
-- [s390] perf: Remove print_hex_dump_bytes() debug output (Hendrik Brueckner) [1182189]
-- [s390] hypfs: Eliminate hypfs interval (Hendrik Brueckner) [1182292]
-- [s390] hypfs: Add diagnose 0c support (Hendrik Brueckner) [1182292]
-- [s390] smp: reenable smt after resume (Hendrik Brueckner) [1182149]
-- [s390] ftrace: fix crashes when switching tracers / add notrace to cpu_relax() (Hendrik Brueckner) [1182149]
-- [s390] reintroduce diag 44 calls for cpu_relax() (Hendrik Brueckner) [1182149]
-- [s390] remove diag 44 calls from cpu_relax() (Hendrik Brueckner) [1182149]
-- [s390] add SMT support (Hendrik Brueckner) [1182149]
-- [s390] process: free vx save area when releasing tasks (Hendrik Brueckner) [1102206]
-- [s390] ptrace: always include vector registers in core files (Hendrik Brueckner) [1102206]
-- [s390] simd: clear vector register pointer on fork/clone (Hendrik Brueckner) [1102206]
-- [s390] fix ptrace of user area if the inferior uses vector registers (Hendrik Brueckner) [1102206]
-- [s390] kdump: add support for vector extension (Hendrik Brueckner) [1102206]
-- [s390] disassembler: add vector instructions (Hendrik Brueckner) [1102206]
-- [s390] add support for vector extension (Hendrik Brueckner) [1102206]
-- [s390] compat: correct ucontext layout for high gprs (Hendrik Brueckner) [1102206]
-- [s390] uprobes: fix user space PER events (Hendrik Brueckner) [879647]
-- [s390] uprobes: fix kprobes dependency (Hendrik Brueckner) [879647]
-- [s390] uprobes: architecture backend for uprobes (Hendrik Brueckner) [879647]
-- [s390] uprobes: common library for kprobes and uprobes (Hendrik Brueckner) [879647]
-- [s390] ptrace: add struct psw and accessor function (Hendrik Brueckner) [879647]
-- [s390] kprobes: allow kprobes only on known instructions (Hendrik Brueckner) [879647]
-- [s390] dis: move disassembler function prototypes to proper header file (Hendrik Brueckner) [879647]
-- [s390] kprobes: use insn_length helper function (Hendrik Brueckner) [879647]
-- [s390] dis: move common definitions to a header file (Hendrik Brueckner) [879647]
-- [s390] dis: rename structures for unique types (Hendrik Brueckner) [879647]
-- [s390] mm: limit STACK_RND_MASK for compat tasks (Hendrik Brueckner) [1204860]
-- [s390] mm: align 64-bit PIE binaries to 4GB (Hendrik Brueckner) [1204860]
-- [s390] avoid z13 cache aliasing (Hendrik Brueckner) [1204860]
-- [s390] add z13 code generation support (Hendrik Brueckner) [1204860]
-- [s390] kernel: use stnsm 255 instead of stosm 0 (Hendrik Brueckner) [1204860]
-- [s390] time: use stck clock fast for do_account_vtime (Hendrik Brueckner) [1204860]
-- [s390] spinlock: optimize spin_unlock code (Hendrik Brueckner) [1204860]
-- [s390] spinlock: refactor arch_spin_lock_wait[_flags] (Hendrik Brueckner) [1204860]
-- [s390] rwlock: add missing local_irq_restore calls (Hendrik Brueckner) [1204860]
-- [s390] spinlock, rwlock: always to a load-and-test first (Hendrik Brueckner) [1204860]
-- [s390] spinlock: optimize spinlock code sequence (Hendrik Brueckner) [1204860]
-- [s390] spinlock: cleanup spinlock code (Hendrik Brueckner) [1204860]
-- [s390] enable ARCH_USE_CMPXCHG_LOCKREF (Hendrik Brueckner) [1204860]
-- [s390] fix control register update (Hendrik Brueckner) [1204860]
-- [s390] optimize control register update (Hendrik Brueckner) [1204860]
-- [s390] smp: only send external call ipi if needed (Hendrik Brueckner) [1204860]
-- [s390] ptrace: PTRACE_TE_ABORT_RAND (Hendrik Brueckner) [1204860]
-- [s390] Remove zfcpdump NR_CPUS dependency (Hendrik Brueckner) [1204860]
-- [s390] mm: do not initialize storage keys (Hendrik Brueckner) [1204860]
-- [s390] zcrypt: Add support for new crypto express (CEX5S) adapter (Hendrik Brueckner) [1182171]
-- [s390] zcrypt: Introduce new SHA-512 based Pseudo Random Generator (Hendrik Brueckner) [1182313]
-
-* Fri Jun 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-260.el7]
-- [netdrv] macvlan: fix a race on port dismantle and possible skb leaks (Herbert Xu) [971693]
-- [netdrv] macvlan: optimize the receive path (Herbert Xu) [971693]
-- [netdrv] macvlan: pass 'bool' type to macvlan_count_rx() (Herbert Xu) [971693]
-- [netdrv] macvlan: allow to enqueue broadcast pkt on virtual device (Herbert Xu) [971693]
-- [netdrv] macvlan: Fix leak and NULL dereference on error path (Herbert Xu) [971693]
-- [netdrv] macvlan: Move broadcasts into a work queue (Herbert Xu) [971693]
-- [net] core: Add __dev_forward_skb (Herbert Xu) [971693]
-- [netdrv] macvlan: Remove custom recieve and forward handlers (Herbert Xu) [971693]
-- [netdrv] macvtap: Add support of packet capture on macvtap device (Herbert Xu) [971693]
-- [netdrv] macvtap: fix two races (Herbert Xu) [971693]
-- [net] ipv4: Missing sk_nulls_node_init() in ping_unhash() (Denys Vlasenko) [1218105] {CVE-2015-3636}
-- [net] ipv6: some ipv6 statistic counters failed to disable bh (Sabrina Dubroca) [1222129]
-- [net] ipv6: move DAD and addrconf_verify processing to workqueue (Sabrina Dubroca) [1222129]
-- [net] ipv6: remove old token ipv6 address as soon as possible (Sabrina Dubroca) [1222129]
-- [net] ipv6: convert the uses of ADBG and remove the superfluous parentheses (Sabrina Dubroca) [1222129]
-- [security] selinux/nlmsg: add RTM_DELNSID (Jiri Benc) [1210260]
-- [net] netns: make nsid_lock per net (Jiri Benc) [1210260]
-- [net] netns: fix unbalanced spin_lock on error (Jiri Benc) [1210260]
-- [net] netns: return RTM_NEWNSID instead of RTM_GETNSID on a get (Jiri Benc) [1210260]
-- [net] netlink: allow to listen "all" netns (Jiri Benc) [1210260]
-- [net] netlink: rename private flags and states (Jiri Benc) [1210260]
-- [net] netns: use a spin_lock to protect nsid management (Jiri Benc) [1210260]
-- [net] netns: notify new nsid outside __peernet2id() (Jiri Benc) [1210260]
-- [net] netns: rename peernet2id() to peernet2id_alloc() (Jiri Benc) [1210260]
-- [net] netns: always provide the id to rtnl_net_fill() (Jiri Benc) [1210260]
-- [net] netns: returns always an id in __peernet2id() (Jiri Benc) [1210260]
-- [net] netns: remove duplicated include from net_namespace.c (Jiri Benc) [1210260]
-- [net] netns: allow to dump netns ids (Jiri Benc) [1210260]
-- [net] netns: notify netns id events (Jiri Benc) [1210260]
-- [net] netns: minor cleanup in rtnl_net_getid() (Jiri Benc) [1210260]
-- [net] netns: don't allocate an id for dead netns (Jiri Benc) [1210260]
-- [net] veth: set iflink to the peer veth (Jiri Benc) [1210260]
-- [net] dev: set iflink to 0 for virtual interfaces (Jiri Benc) [1210260]
-- [infiniband] ipoib: Fix ndo_get_iflink (Jiri Benc) [1210260]
-- [infiniband] ipoib: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] macvlan: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] vlan: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] ipmr,ip6mr: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] ipip, gre, vti, sit: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] sit: Fix ipip6_tunnel_lookup device matching criteria (Jiri Benc) [1210260]
-- [net] ip6tnl, gre6, vti6: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] introduce dev_get_iflink() (Jiri Benc) [1210260]
-- [net] Kill hold_net release_net (Jiri Benc) [1210260]
-- [net] Handle unregister properly when netdev namespace change fails. (Jiri Benc) [1210260]
-- [net] rtnetlink: call ->dellink on failure when ->newlink exists (Jiri Benc) [1210260]
-- [net] do not use rcu in rtnl_dump_ifinfo() (Jiri Benc) [1210260]
-- [net] Verify permission to link_net in newlink (Jiri Benc) [1210260]
-- [net] Verify permission to dest_net in newlink (Jiri Benc) [1210260]
-- [net] rtnetlink: pass link_net to the newlink handler (Jiri Benc) [1210260]
-- [net] vxlan: setup the right link netns in newlink hdlr (Jiri Benc) [1210260]
-- [net] vxlan: advertise link netns in fdb messages (Jiri Benc) [1210260]
-- [net] vxlan: advertise netns of vxlan dev in fdb msg (Jiri Benc) [1210260]
-- [net] veth: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] macvlan: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] macvlan: introduce macvlan_dev_real_dev() helper function (Jiri Benc) [1210260]
-- [net] vlan: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] ip6gretap: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] rtnl: fix error path when adding an iface with a link net (Jiri Benc) [1210260]
-- [net] rtnl: allow to create device with IFLA_LINK_NETNSID set (Jiri Benc) [1210260]
-- [net] tunnels: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] rtnl: add link netns id to interface messages (Jiri Benc) [1210260]
-- [net] netns: add rtnl cmd to add and get peer netns ids (Jiri Benc) [1210260]
-- [security] selinux/nlmsg: add RTM_NEWNSID and RTM_GETNSID (Jiri Benc) [1210260]
-- [net] add a pre-check of net_ns in sk_change_net() (Jiri Benc) [1210260]
-- [net] netns: remove one sparse warning (Jiri Benc) [1210260]
-- [net] netlink: Fix do_one_broadcast() prototype. (Jiri Benc) [1210260]
-- [net] net_namespace: trivial cleanup (Jiri Benc) [1210260]
-- [net] dst: no need to take reference on DST_NOCACHE dsts (Marcelo Leitner) [1206570]
-- [net] skbuff: Do not scrub skb mark within the same name space (Marcelo Leitner) [1206570]
-- [net] ipv6: invert join/leave anycast rtnl/socket locking order (Marcelo Leitner) [1206570]
-- [net] ipv6: restore the behavior of ipv6_sock_ac_drop() (Marcelo Leitner) [1206570]
-- [net] ipv6: remove ipv6_sk_ac_lock (Marcelo Leitner) [1206570]
-- [net] ipv6: drop useless rcu_read_lock() in anycast (Marcelo Leitner) [1206570]
-- [net] vxlan: fix a free after use (Marcelo Leitner) [1206570]
-- [net] vxlan: do not exit on error in vxlan_stop() (Marcelo Leitner) [1206570]
-- [net] vxlan: fix indentation (Marcelo Leitner) [1206570]
-- [net] vxlan: simplify if clause in dev_close (Marcelo Leitner) [1206570]
-- [net] vxlan: fix possible use of uninitialized in vxlan_igmp_{join, leave} (Marcelo Leitner) [1206570]
-- [net] vxlan: Move socket initialization to within rtnl scope (Marcelo Leitner) [1206570]
-- [net] ipv4, ipv6: kill ip_mc_{join, leave}_group and ipv6_sock_mc_{join, drop} (Marcelo Leitner) [1206570]
-- [net] ipv4, ipv6: grab rtnl before locking the socket (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: fix error code when tunnel exists (Marcelo Leitner) [1206570]
-- [net] vxlan: fix wrong usage of VXLAN_VID_MASK (Marcelo Leitner) [1206570]
-- [net] vxlan: Correct path typo in comment (Marcelo Leitner) [1206570]
-- [net] ipv6: igmp: add __ipv6_sock_mc_join and __ipv6_sock_mc_drop (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: remove dead debug code from ip6_tunnel.c (Marcelo Leitner) [1206570]
-- [net] igmp: add __ip_mc_{join|leave}_group() (Marcelo Leitner) [1206570]
-- [net] igmp: fix the problem when mc leave group (Marcelo Leitner) [1206570]
-- [net] gue: Use checksum partial with remote checksum offload (Marcelo Leitner) [1206570]
-- [net] vxlan: Use checksum partial with remote checksum offload (Marcelo Leitner) [1206570]
-- [net] Infrastructure for CHECKSUM_PARTIAL with remote checsum offload (Marcelo Leitner) [1206570]
-- [net] Use more bit fields in napi_gro_cb (Marcelo Leitner) [1206570]
-- [net] Clarify meaning of CHECKSUM_PARTIAL for receive path (Marcelo Leitner) [1206570]
-- [net] gro: Fix remcsum in GRO path to not change packet (Marcelo Leitner) [1206570]
-- [net] vxlan: Wrong type passed to pIS (Marcelo Leitner) [1206570]
-- [net] vxlan: Only set has-GBP bit in header if any other bits would be set (Marcelo Leitner) [1206570]
-- [net] add skb functions to process remote checksum offload (Marcelo Leitner) [1206570]
-- [net] vxlan: Eliminate dependency on UDP socket in transmit path (Marcelo Leitner) [1206570]
-- [net] udp: Do not require sock in udp_tunnel_xmit_skb (Marcelo Leitner) [1206570]
-- [net] vxlan: Only bind to sockets with compatible flags enabled (Marcelo Leitner) [1206570]
-- [net] vxlan: Group Policy extension (Marcelo Leitner) [1206570]
-- [net] vxlan: Remote checksum offload (Marcelo Leitner) [1206570]
-- [net] udp: pass udp_offload struct to UDP gro callbacks (Marcelo Leitner) [1206570]
-- [net] vxlan: Improve support for header flags (Marcelo Leitner) [1206570]
-- [net] ip: Move checksum convert defines to inet (Marcelo Leitner) [1206570]
-- [net] Add Transparent Ethernet Bridging GRO support (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix double free of skb (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Add missing validation of encap type to ip_tunnel_encap_setup() (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Add sanity checks to ip_tunnel_encap_add_ops() (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix race condition between vxlan_sock_add and vxlan_sock_release (Marcelo Leitner) [1206570]
-- [net] gue: Call remcsum_adjust (Marcelo Leitner) [1206570]
-- [net] Add remcsum_adjust as common function for remote checksum offload (Marcelo Leitner) [1206570]
-- [net] ip6_udp_tunnel: Fix checksum calculation (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix boolean flip in VXLAN_F_UDP_ZERO_CSUM6_[TX|RX] (Marcelo Leitner) [1206570]
-- [net] vxlan: Inline vxlan_gso_check(). (Marcelo Leitner) [1206570]
-- [net] vxlan: Add vxlan_gso_check() helper (Marcelo Leitner) [1206570]
-- [net] fou: Fix no return statement warning for !CONFIG_NET_FOU_IP_TUNNELS (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Ops registration for secondary encap (fou, gue) (Marcelo Leitner) [1206570]
-- [net] udp_tunnel: Add SKB_GSO_UDP_TUNNEL during gro_complete (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix to enable UDP checksums on interface (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: Add support for wildcard tunnel endpoints. (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: Allow sending packets through tunnels with wildcard endpoints (Marcelo Leitner) [1206570]
-- [net] gue: Receive side of remote checksum offload (Marcelo Leitner) [1206570]
-- [net] gue: TX support for using remote checksum offload option (Marcelo Leitner) [1206570]
-- [net] gso: fix kABI (Marcelo Leitner) [1206570]
-- [net] udp: Changes to udp_offload to support remote checksum offload (Marcelo Leitner) [1206570]
-- [net] gue: Protocol constants for remote checksum offload (Marcelo Leitner) [1206570]
-- [net] gue: Add infrastructure for flags and options (Marcelo Leitner) [1206570]
-- [net] udp: Offload outer UDP tunnel csum if available (Marcelo Leitner) [1206570]
-- [net] fou: Move fou_build_header into fou.c and refactor (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: Use ip6_tnl_dev_init as the ndo_init function. (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: allow to change mode for the ip6tnl0 (Marcelo Leitner) [1206570]
-- [net] fou: fix a potential use after free in fou.c (Marcelo Leitner) [1206570]
-- [net] vxlan: using pskb_may_pull as early as possible (Marcelo Leitner) [1206570]
-- [net] vxlan: fix a use after free in vxlan_encap_bypass (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Add GUE support (Marcelo Leitner) [1206570]
-- [net] gue: Receive side for Generic UDP Encapsulation (Marcelo Leitner) [1206570]
-- [net] fou: eliminate IPv4, v6 specific GRO functions (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Account for secondary encapsulation header in max_headroom (Marcelo Leitner) [1206570]
-- [net] vxlan: Set inner protocol before transmit (Marcelo Leitner) [1206570]
-- [net] gre: Set inner protocol in v4 and v6 GRE transmit (Marcelo Leitner) [1206570]
-- [net] ipip: Set inner IP protocol in ipip (Marcelo Leitner) [1206570]
-- [net] sit: Set inner IP protocol in sit (Marcelo Leitner) [1206570]
-- [net] udp: Generalize skb_udp_segment (Marcelo Leitner) [1206570]
-- [net] Remove gso_send_check as an offload callback (Marcelo Leitner) [1206570]
-- [net] udp: move logic out of udp[46]_ufo_send_check (Marcelo Leitner) [1206570]
-- [net] tcp: move logic out of tcp_v[64]_gso_send_check (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix bug introduced by commit acbf74a76300 (Marcelo Leitner) [1206570]
-- [net] udp: Need to make ip6_udp_tunnel.c have GPL license (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Changes to ip_tunnel to support foo-over-udp encapsulation (Marcelo Leitner) [1206570]
-- [net] fou: Add GRO support (Marcelo Leitner) [1206570]
-- [net] fou: Support for foo-over-udp RX path (Marcelo Leitner) [1206570]
-- [net] Export inet_offloads and inet6_offloads (Marcelo Leitner) [1206570]
-- [net] vxlan: Refactor vxlan driver to make use of the common UDP tunnel functions (Marcelo Leitner) [1206570]
-- [net] udp_tunnel: Add a few more UDP tunnel APIs (Marcelo Leitner) [1206570]
-- [net] udp_tunnel: Seperate ipv6 functions into its own file. (Marcelo Leitner) [1206570]
-- [net] ipv6: drop some rcu_read_lock in mcast (Marcelo Leitner) [1206570]
-- [net] ipv6: drop ipv6_sk_mc_lock in mcast (Marcelo Leitner) [1206570]
-- [net] ipv4: udp4_gro_complete() is static (Marcelo Leitner) [1206570]
-- [net] ipv6: fix rtnl locking in setsockopt for anycast and multicast (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix tunnels with "local any remote $remote_ip" (Marcelo Leitner) [1206570]
-- [net] neighbour: fix ndm_type type error issue (Marcelo Leitner) [1206570]
-- [net] vxlan: Call udp_sock_create (Marcelo Leitner) [1206570]
-- [net] udp: Add udp_sock_create for UDP tunnels to open listener socket (Marcelo Leitner) [1206570]
-- [net] udp: Move udp_tunnel_segment into udp_offload.c (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix ip_tunnel_lookup (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix dst race in sk_dst_get() (Marcelo Leitner) [1206570]
-- [net] vxlan: use dev->needed_headroom instead of dev->hard_header_len (Marcelo Leitner) [1206570]
-- [net] ip_vti: Fix 'ip tunnel add' with 'key' parameters (Marcelo Leitner) [1206570]
-- [net] bridge: Add bridge ifindex to bridge fdb notify msgs (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Initialize the fallback device properly (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: ip_tunnels: disable cache for nbma gre tunnels (Marcelo Leitner) [1206570]
-- [net] vxlan, bridge: get rid of SET_ETHTOOL_OPS (Marcelo Leitner) [1206570]
-- [net] vxlan: add x-netns support (Marcelo Leitner) [1206570]
-- [net] vxlan: ensure to advertise the right fdb remote (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: use the right netns in ioctl handler (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: use the right netns in ioctl handler (Marcelo Leitner) [1206570]
-- [net] sit: fix panic with route cache in ip tunnels (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Move ip_tunnel_get_stats64 into ip_tunnel_core.c (Marcelo Leitner) [1206570]
-- [net] ip6_gre: use netdev_alloc_pcpu_stats() (Marcelo Leitner) [1206570]
-- [net] introduce netdev_alloc_pcpu_stats() for drivers (Marcelo Leitner) [1206570]
-- [net] unify the pcpu_tstats and br_cpu_netstats as one (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix panic in ip_tunnel_xmit() (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: remove the useless argument from ip_tunnel_hash() (Marcelo Leitner) [1206570]
-- [net] vxlan: add vxlan description (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix a dst leak in tunnels (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix sparse non static symbol warning (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Use percpu Cache route in IP tunnels (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Cache dst in tunnels (Marcelo Leitner) [1206570]
-- [net] ipv6: fix the use of pcpu_tstats in ip6_tunnel (Marcelo Leitner) [1206570]
-- [net] vxlan: leave multicast group when vxlan device down (Marcelo Leitner) [1206570]
-- [net] ipv6: move IPV6_TCLASS_MASK definition in ipv6.h (Marcelo Leitner) [1206570]
-- [net] ipv6: add ip6_flowlabel helper (Marcelo Leitner) [1206570]
-- [net] do not ignore dmac in dev_forward_skb() (Marcelo Leitner) [1206570]
-- [net] Explicitly initialize u64_stats_sync structures for lockdep (Marcelo Leitner) [1206570]
-- [net] ipv6: Allow the MTU of ipip6 tunnel to be set below 1280 (Marcelo Leitner) [1206570]
-- [net] tunnels: harmonize cleanup done on skb on rx path (Marcelo Leitner) [1206570]
-- [net] tunnels: harmonize cleanup done on skb on xmit path (Marcelo Leitner) [1206570]
-- [net] vxlan: remove net arg from vxlan[6]_xmit_skb() (Marcelo Leitner) [1206570]
-- [net] vxlan: Convert uses of compare_ether_addr to ether_addr_equal (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: ensure to always have a link local address (Marcelo Leitner) [1206570]
-- [net] vxlan: using kfree_rcu() to simplify the code (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: use net_eq() helper to check netns (Marcelo Leitner) [1206570]
-- [net] move skb_scrub_packet() after eth_type_trans() (Marcelo Leitner) [1206570]
-- [net] ipv6: fix ipv6_cow_metrics for non DST_HOST case (Marcelo Leitner) [1199862]
-- [netdrv] pppoe: drop pppoe device in pppoe_unbind_sock_work (Beniamino Galvani) [1221922]
-- [net] udp_diag: Fix socket skipping within chain (Thadeu Lima de Souza Cascardo) [1179617]
-- [net] ptp: use the 64 bit get/set time methods for the posix clock (Jiri Benc) [1217408]
-- [net] ptp: use the 64 bit gettime method for the SYS_OFFSET ioctl (Jiri Benc) [1217408]
-- [net] ptp: introduce get/set time methods with explicit 64 bit seconds (Jiri Benc) [1217408]
-- [kernel] timekeeping: Provide timespec64 based interfaces (Jiri Benc) [1217408]
-- [kernel] timekeeping: Convert timekeeping core to use timespec64s (Jiri Benc) [1217408]
-- [net] tcp: mitigate ACK loops for connections as tcp_timewait_sock (Florian Westphal) [1191261]
-- [net] tcp: mitigate ACK loops for connections as tcp_sock (Florian Westphal) [1191261]
-- [net] tcp: mitigate ACK loops for connections as tcp_request_sock (Florian Westphal) [1191261]
-- [net] tcp: helpers to mitigate ACK loops by rate-limiting out-of-window dupacks (Florian Westphal) [1191261]
-- [net] ipv6: Don't reduce hop limit for an interface (Denys Vlasenko) [1208496] {CVE-2015-2922}
-- [x86] mm: Clean up the TLB flushing code (Larry Woodman) [1172891]
-- [powerpc] Add a test of the switch_endian() syscall (Gustavo Duarte) [1221073]
-- [powerpc] Add a proper syscall for switching endianness (Gustavo Duarte) [1221073]
-- [powerpc] kernel: Make syscall_exit a local label (Gustavo Duarte) [1221073]
-- [powerpc] Remove old compile time disabled syscall tracing code (Gustavo Duarte) [1221073]
-- [scsi] libsas: Fix Kernel Crash in smp_execute_task (David Milburn) [1226041]
-- [scsi] mvsas: fix panic on expander attached SATA devices (David Milburn) [1226041]
-- [scsi] mvsas: Fix for possible null pointer dereference (David Milburn) [1226041]
-- [netdrv] hyperv: Add IPv6 into the hash computation for vRSS (Jason Wang) [1174846]
-- [x86] use optimized ioresource lookup in ioremap function (Frank Ramsay) [1217221]
-- [kernel] optimize resource lookups for ioremap (Frank Ramsay) [1217221]
-- [x86] ioremap: Speed up check for RAM pages (Frank Ramsay) [1217221]
-- [fs] exec: take i_mutex during prepare_binprm for set[ug]id executables (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [kernel] locking: Remove atomicy checks from {READ, WRITE}_ONCE (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [kernel] make READ_ONCE() valid on const arguments (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [kernel] Change ASSIGN_ONCE(val, x) to WRITE_ONCE(x, val) (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [kernel] Provide READ_ONCE and ASSIGN_ONCE (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [powerpc] powernv: Add OPAL check token call (Gustavo Duarte) [1223784]
-- [powerpc] pseries: Correct cpu affinity for dlpar added cpus (Steve Best) [1226527]
-- [thermal] intel_powerclamp: add id for Avoton SoC (Steve Best) [1225606]
-- [platform] hp-wireless: new driver for hp wireless button for Windows 8 (Stanislaw Gruszka) [1174328]
-- [include] pci-dma-compat: add pci_zalloc_consistent helper (Maurizio Lombardi) [1193494]
-- [powerpc] kvm: book3s-hv: ptes are big endian (Thomas Huth) [1222472]
-
-* Wed Jun 03 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-259.el7]
-- [scsi] qla4xxx: v5.04.00.00.07.02-k0 (Chad Dupuis) [1225437]
-- [scsi] qla4xxx: fix get_host_stats error propagation (Chad Dupuis) [1225437]
-- [scsi] qla4xxx: check the return value of dma_alloc_coherent() (Chad Dupuis) [1225437]
-- [scsi] qla4xxx: ql4_mbx.c: Cleaning up missing null-terminate in conjunction with strncpy (Chad Dupuis) [1225437]
-- [scsi] qla4xxx: ql4_os.c: Cleaning up missing null-terminate in conjunction with strncpy (Chad Dupuis) [1225437]
-- [net] bnx2-cnic: Driver Version Update (Maurizio Lombardi) [1187299]
-- [net] bnx2-cnic: Driver Rebranding Changes (Maurizio Lombardi) [1187299]
-- [net] cnic: Update the rcu_access_pointer() usages (Maurizio Lombardi) [1187299]
-- [net] cnic: Cleanup CONFIG_IPV6 & VLAN check (Maurizio Lombardi) [1187299]
-- [scsi] aacraid: driver version change (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: AIF raw device remove support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: performance improvement changes (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: IOCTL fix (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: IOP RESET command handling changes (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: 240 simple volume support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: vpd page code 0x83 support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: MSI-x support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: 4KB sector support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: IOCTL pass-through command fix (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: AIF support for SES device add/remove (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: remove deprecated IRQF_DISABLED from aacraid (Rajinikanth Pandurangan) [1205339]
-- [scsi] hpsa: Cleanup pci_id entries (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Update driver revision to 3.4.4-1-RH4 (Joseph Szczypek) [1181313]
-- [scsi] hpsa: correct compiler warnings introduced by hpsa-add-local-workqueue patch (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Use local workqueues instead of system workqueues (Joseph Szczypek) [1181313]
-- [scsi] hpsa: detect and report failures changing controller transport modes (Joseph Szczypek) [1181313]
-- [scsi] hpsa: shorten the wait for the CISS doorbell mode change ack (Joseph Szczypek) [1181313]
-- [scsi] hpsa: refactor duplicated scan completion code into a new routine (Joseph Szczypek) [1181313]
-- [scsi] hpsa: move SG descriptor set-up out of hpsa_scatter_gather() (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not use function pointers in fast path command submission (Joseph Szczypek) [1181313]
-- [scsi] hpsa: print CDBs instead of kernel virtual addresses for uncommon errors (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not use a void pointer for scsi_cmd field of struct CommandList (Joseph Szczypek) [1181313]
-- [scsi] hpsa: return failed from device reset/abort handlers (Joseph Szczypek) [1181313]
-- [scsi] hpsa: check for ctlr lockup after command allocation in main io path (Joseph Szczypek) [1181313]
-- [scsi] hpsa: guard against overflowing raid map array (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not ack controller events on controllers that do not support it (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove incorrect BUG_ONs checking for raid offload enable (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not check for msi(x) in interrupt_pending (Joseph Szczypek) [1181313]
-- [scsi] hpsa: slightly optimize SA5_performant_completed (Joseph Szczypek) [1181313]
-- [scsi] hpsa: count passthru cmds with atomics, not a spin locked int (Joseph Szczypek) [1181313]
-- [scsi] hpsa: optimize cmd_alloc function by remembering last allocation (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix race between abort handler and main i/o path (Joseph Szczypek) [1181313]
-- [scsi] hpsa: honor queue depth of physical devices (Joseph Szczypek) [1181313]
-- [scsi] hpsa: use workqueue to resubmit failed ioaccel commands (Joseph Szczypek) [1181313]
-- [scsi] hpsa: factor out hpsa_ciss_submit function (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not request device rescan on every ioaccel path error (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not queue commands internally in driver (Joseph Szczypek) [1181313]
-- [scsi] hpsa: get rid of cmd_special_alloc and cmd_special_free (Joseph Szczypek) [1181313]
-- [scsi] hpsa: reserve some commands for use by driver (Joseph Szczypek) [1181313]
-- [scsi] hpsa: avoid unneccesary calls to resource freeing functions (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix memory leak in hpsa_alloc_cmd_pool (Joseph Szczypek) [1181313]
-- [scsi] hpsa: report allocation failures while allocating SG chain blocks (Joseph Szczypek) [1181313]
-- [scsi] hpsa: pass error from pci_set_consistent_dma_mask from hpsa_message (Joseph Szczypek) [1181313]
-- [scsi] hpsa: rename hpsa_request_irq to hpsa_request_irqs (Joseph Szczypek) [1181313]
-- [scsi] hpsa: report failure to ioremap config table (Joseph Szczypek) [1181313]
-- [scsi] hpsa: trivial message and comment clean ups (Joseph Szczypek) [1181313]
-- [scsi] hpsa: refactor hpsa_find_board_params() to encapsulate legacy test (Joseph Szczypek) [1181313]
-- [scsi] hpsa: downgrade the Waiting for no-op print to dev_info (Joseph Szczypek) [1181313]
-- [scsi] hpsa: propagate return value from board ID lookup (Joseph Szczypek) [1181313]
-- [scsi] hpsa: propagate hard_reset failures in reset_devices mode (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove 0x from queue depth print which is in decimal (Joseph Szczypek) [1181313]
-- [scsi] hpsa: notice all request_irq errors (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Fix -Wunused-but-set-variable warning (Joseph Szczypek) [1181313]
-- [scsi] hpsa: rename free_irqs to hpsa_free_irqs (Joseph Szczypek) [1181313]
-- [scsi] hpsa: adjust RAID-1, RAID-1ADM, and RAID-6 names (Joseph Szczypek) [1181313]
-- [scsi] hpsa: change how SA controllers are reset (Joseph Szczypek) [1181313]
-- [scsi] hpsa: turn off interrupts when kdump starts (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix memory leak in kdump hard reset (Joseph Szczypek) [1181313]
-- [scsi] hpsa: correct endian sparse warnings (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove spin lock around command allocation (Joseph Szczypek) [1181313]
-- [scsi] hpsa: always call pci_set_master after pci_enable_device (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Convert SCSI LLD ->queuecommand() for host_lock less operation (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not be so noisy about check conditions (Joseph Szczypek) [1181313]
-- [scsi] hpsa: use atomics for commands_outstanding (Joseph Szczypek) [1181313]
-- [scsi] hpsa: get rid of type/attribute/direction bit field where possible (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix endianness issue with scatter gather elements (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix allocation sizes for CISS_REPORT_LUNs commands (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove 'action required' phrasing (Joseph Szczypek) [1181313]
-- [scsi] hpsa: correct off-by-one sizing of chained SG block (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix a couple pci id table mistakes (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove dev_warn prints from RAID-1ADM (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Clean up warnings from sparse (Joseph Szczypek) [1181313]
-- [scsi] maintainers: change hpsa and cciss maintainer (Joseph Szczypek) [1181313]
-- [scsi] hpsa: add missing pci_set_master in kdump path (Joseph Szczypek) [1181313]
-- [scsi] hpsa: refine the pci enable/disable handling (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Use pci_enable_msix_range() instead of pci_enable_msix() (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Fallback to MSI rather than to INTx if MSI-X failed (Joseph Szczypek) [1181313]
-
-* Mon Jun 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-258.el7]
-- [kvm] avoid page allocation failure in kvm_set_memory_region() (Bandan Das) [1209995]
-- [kvm] x86: call irq notifiers with directed EOI (Bandan Das) [1209995]
-- [kvm] nvmx: mask unrestricted_guest if disabled on L0 (Bandan Das) [1209995]
-- [kvm] svm: fix interrupt injection (apic->isr_count always 0) (Bandan Das) [1209995]
-- [kvm] emulate: fix CMPXCHG8B on 32-bit hosts (Bandan Das) [1209995]
-- [kvm] add halt_poll_ns module parameter (Bandan Das) [1198205 1209995]
-- [kvm] x86: revert "add method to test PIR bitmap vector" (Bandan Das) [1209995]
-- [kvm] vmx: Add PML support in VMX (Bandan Das) [1209995]
-- [kvm] x86: Add new dirty logging kvm_x86_ops for PML (Bandan Das) [1209995]
-- [kvm] x86: Change parameter of kvm_mmu_slot_remove_write_access (Bandan Das) [1209995]
-- [kvm] mmu: Explicitly set D-bit for writable spte (Bandan Das) [1209995]
-- [kvm] mmu: Add mmu help functions to support PML (Bandan Das) [1209995]
-- [kvm] Rename kvm_arch_mmu_write_protect_pt_masked to be more generic for log dirty (Bandan Das) [1209995]
-- [kvm] update_memslots: clean flags for invalid memslots (Bandan Das) [1209995]
-- [kvm] Remove unused config symbol (Bandan Das) [1209995]
-- [kvm] fix "Should it be static?" warnings from sparse (Bandan Das) [1209995]
-- [kvm] Optimize TLB flush in kvm_mmu_slot_remove_write_access (Bandan Das) [1209995]
-- [kvm] x86: kvm: vmx: Remove some unused functions (Bandan Das) [1209995]
-- [kvm] x86: switch to kvm_get_dirty_log_protect (Bandan Das) [1209995]
-- [kvm] Add generic support for dirty page logging (Bandan Das) [1209995]
-- [kvm] Add architecture-defined TLB flush support (Bandan Das) [1209995]
-- [kvm] x86: flush TLB when D bit is manually changed (Bandan Das) [1209995]
-- [kvm] x86: allow TSC deadline timer on all hosts (Bandan Das) [1209995]
-- [kvm] x86: mmu: replace assertions with MMU_WARN_ON, a conditional WARN_ON (Bandan Das) [1209995]
-- [kvm] x86: mmu: remove ASSERT(vcpu) (Bandan Das) [1209995]
-- [kvm] x86: mmu: remove argument to kvm_init_shadow_mmu and kvm_init_shadow_ept_mmu (Bandan Das) [1209995]
-- [kvm] x86: mmu: do not use return to tail-call functions that return void (Bandan Das) [1209995]
-- [kvm] x86: add method to test PIR bitmap vector (Bandan Das) [1209995]
-- [kvm] x86: vmx: NULL out hwapic_isr_update() in case of !enable_apicv (Bandan Das) [1209995]
-- [kvm] x86: Remove FIXMEs in emulate.c for the function, task_switch_32 (Bandan Das) [1209995]
-- [kvm] nvmx: consult PFEC_MASK and PFEC_MATCH when generating #PF VM-exit (Bandan Das) [1209995]
-- [kvm] nvmx: Improve nested msr switch checking (Bandan Das) [1209995]
-- [kvm] nvmx: Add nested msr load/restore algorithm (Bandan Das) [1209995]
-- [kvm] x86: check LAPIC presence when building apic_map (Bandan Das) [1209995]
-- [kvm] x86: Fix of previously incomplete fix for CVE-2014-8480 (Bandan Das) [1209995]
-- [kvm] warn on more invariant breakage (Bandan Das) [1209995]
-- [kvm] fix sorting of memslots with base_gfn == 0 (Bandan Das) [1209995]
-- [kvm] x86: drop severity of "generation wraparound" message (Bandan Das) [1209995]
-- [kvm] x86: vmx: reorder some msr writing (Bandan Das) [1209995]
-- [kvm] move APIC types to arch/x86/ (Bandan Das) [1209995]
-- [kvm] x86: em_ret_far overrides cpl (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] nvmx: Disable unrestricted mode if ept=0 (Bandan Das) [1209995]
-- [kvm] x86: Emulate should check #UD before #GP (Bandan Das) [1209995]
-- [kvm] x86: Do not push eflags.vm on pushf (Bandan Das) [1209995]
-- [kvm] x86: Remove prefix flag when GP macro is used (Bandan Das) [1209995]
-- [kvm] cpuid: recompute CPUID 0xD.0:EBX,ECX (Bandan Das) [1209995]
-- [kvm] cpuid: mask more bits in leaf 0xd and subleaves (Bandan Das) [1209995]
-- [kvm] cpuid: set CPUID(EAX=0xd, ECX=1).EBX correctly (Bandan Das) [1209995]
-- [kvm] x86: use F() macro throughout cpuid.c (Bandan Das) [1209995]
-- [kvm] track pid for VCPU only on KVM_RUN ioctl (Bandan Das) [1209995]
-- [kvm] don't check for PF_VCPU when yielding (Bandan Das) [1209995]
-- [kvm] optimize GFN to memslot lookup with large slots amount (Bandan Das) [1209995]
-- [kvm] change memslot sorting rule from size to GFN (Bandan Das) [1209995]
-- [kvm] search_memslots: add simple LRU memslot caching (Bandan Das) [1209995]
-- [kvm] update_memslots: drop not needed check for the same slot (Bandan Das) [1209995]
-- [kvm] update_memslots: drop not needed check for the same number of pages (Bandan Das) [1209995]
-- [kvm] x86: allow 256 logical x2APICs again (Bandan Das) [1209995]
-- [kvm] x86: check bounds of APIC maps (Bandan Das) [1209995]
-- [kvm] x86: fix APIC physical destination wrapping (Bandan Das) [1209995]
-- [kvm] x86: deliver phys lowest-prio (Bandan Das) [1209995]
-- [kvm] x86: don't retry hopeless APIC delivery (Bandan Das) [1209995]
-- [kvm] x86: use MSR_ICR instead of a number (Bandan Das) [1209995]
-- [kvm] x86: Fix reserved x2apic registers (Bandan Das) [1209995]
-- [kvm] x86: Generate #UD when memory operand is required (Bandan Das) [1209995]
-- [kvm] add a memslot flag for incoherent memory regions (Bandan Das) [1209995]
-- [kvm] fix kvm_is_mmio_pfn() and rename to kvm_is_reserved_pfn() (Bandan Das) [1209995]
-- [kvm] x86: avoid warning about potential shift wrapping bug (Bandan Das) [1209995]
-- [kvm] x86: move device assignment out of kvm_host.h (Bandan Das) [1209995]
-- [kvm] x86: mask out XSAVES (Bandan Das) [1209995]
-- [kvm] x86/xsaves: Detect xsaves/xrstors feature (Bandan Das) [1209995]
-- [kvm] x86: move assigned-dev.c and iommu.c to arch/x86/ (Bandan Das) [1209995]
-- [kvm] remove IA64 ioctls (Bandan Das) [1209995]
-- [kvm] remove CONFIG_X86 #ifdefs from files formerly shared with ia64 (Bandan Das) [1209995]
-- [kvm] x86: move ioapic.c and irq_comm.c back to arch/x86/ (Bandan Das) [1209995]
-- [kvm] documentation: remove ia64 (Bandan Das) [1209995]
-- [kvm] ia64: remove (Bandan Das) [1209995]
-- [kvm] x86/kvm/tracing: Use helper function trace_seq_buffer_ptr() (Bandan Das) [1209995]
-- [kvm] x86: Remove FIXMEs in emulate.c (Bandan Das) [1209995]
-- [kvm] emulator: remove duplicated limit check (Bandan Das) [1209995]
-- [kvm] emulator: remove code duplication in register_address{, _increment} (Bandan Das) [1209995]
-- [kvm] x86: Move __linearize masking of la into switch (Bandan Das) [1209995]
-- [kvm] x86: Non-canonical access using SS should cause #SS (Bandan Das) [1209995]
-- [kvm] x86: Perform limit checks when assigning EIP (Bandan Das) [1209995]
-- [kvm] x86: Emulator performs privilege checks on __linearize (Bandan Das) [1209995]
-- [kvm] x86: Stack size is overridden by __linearize (Bandan Das) [1209995]
-- [kvm] x86: Revert NoBigReal patch in the emulator (Bandan Das) [1209995]
-- [kvm] x86: vmx: remove MMIO_MAX_GEN (Bandan Das) [1209995]
-- [kvm] x86: vmx: cleanup handle_ept_violation (Bandan Das) [1209995]
-- [kvm] x86: Fix lost interrupt on irr_pending race (Bandan Das) [1209995]
-- [kvm] compute correct map even if all APICs are software disabled (Bandan Das) [1209995]
-- [kvm] x86: Software disabled APIC should still deliver NMIs (Bandan Das) [1209995]
-- [kvm] simplify update_memslots invocation (Bandan Das) [1209995]
-- [kvm] commonize allocation of the new memory slots (Bandan Das) [1209995]
-- [kvm] memslots: track id_to_index changes during the insertion sort (Bandan Das) [1209995]
-- [kvm] memslots: replace heap sort with an insertion sort pass (Bandan Das) [1209995]
-- [kvm] svm: move WARN_ON in svm_adjust_tsc_offset (Bandan Das) [1209995]
-- [kvm] x86, kvm, vmx: Don't set LOAD_IA32_EFER when host and guest match (Bandan Das) [1209995]
-- [kvm] x86, kvm, vmx: Always use LOAD_IA32_EFER if available (Bandan Das) [1209995]
-- [kvm] x86: fix warning on 32-bit compilation (Bandan Das) [1209995]
-- [kvm] x86: add trace event for pvclock updates (Bandan Das) [1209995]
-- [kvm] x86: Fix kvm clock versioning (Bandan Das) [1209995]
-- [kvm] x86: MOVNTI emulation min opsize is not respected (Bandan Das) [1209995]
-- [kvm] x86: Return UNHANDLABLE on unsupported SYSENTER (Bandan Das) [1209995]
-- [kvm] x86: Warn on APIC base relocation (Bandan Das) [1209995]
-- [kvm] x86: Emulator mis-decodes VEX instructions on real-mode (Bandan Das) [1209995]
-- [kvm] x86: Remove redundant and incorrect cpl check on task-switch (Bandan Das) [1209995]
-- [kvm] x86: Inject #GP when loading system segments with non-canonical base (Bandan Das) [1209995]
-- [kvm] x86: Combine the lgdt and lidt emulation logic (Bandan Das) [1209995]
-- [kvm] x86: Do not update EFLAGS on faulting emulation (Bandan Das) [1209995]
-- [kvm] x86: MOV to CR3 can set bit 63 (Bandan Das) [1209995]
-- [kvm] x86: Emulate push sreg as done in Core (Bandan Das) [1209995]
-- [kvm] x86: Wrong flags on CMPS and SCAS emulation (Bandan Das) [1209995]
-- [kvm] x86: SYSCALL cannot clear eflags[1] (Bandan Das) [1209995]
-- [kvm] x86: Emulation of MOV-sreg to memory uses incorrect size (Bandan Das) [1209995]
-- [kvm] x86: Breakpoints do not consider CS.base (Bandan Das) [1209995]
-- [kvm] x86: Clear DR6[0:3] on #DB during handle_dr (Bandan Das) [1209995]
-- [kvm] x86: Emulator should set DR6 upon GD like real CPU (Bandan Das) [1209995]
-- [kvm] x86: No error-code on real-mode exceptions (Bandan Das) [1209995]
-- [kvm] x86: decode_modrm does not regard modrm correctly (Bandan Das) [1209995]
-- [kvm] x86: reset RVI upon system reset (Bandan Das) [1209995]
-- [kvm] x86: vmx: avoid returning bool to distinguish success from error (Bandan Das) [1209995]
-- [kvm] x86: vmx: move some vmx setting from vmx_init() to hardware_setup() (Bandan Das) [1209995]
-- [kvm] x86: vmx: move down hardware_setup() and hardware_unsetup() (Bandan Das) [1209995]
-- [kvm] x86: Fix uninitialized op->type for some immediate values (Bandan Das) [1209995]
-- [kvm] x86: optimize some accesses to LVTT and SPIV (Bandan Das) [1209995]
-- [kvm] trivial fix comment regarding __kvm_set_memory_region (Bandan Das) [1209995]
-- [kvm] x86: Enable Intel AVX-512 for guest (Bandan Das) [1178982 1209995]
-- [kvm] drop unsupported capabilities, fix documentation (Bandan Das) [1209995]
-- [kvm] x86: fix deadline tsc interrupt injection (Bandan Das) [1179067 1209995]
-- [kvm] x86: add apic_timer_expired() (Bandan Das) [1209995]
-- [kvm] documentation: virtual: kvm: correct one bit description in APF case (Bandan Das) [1209995]
-- [kvm] vmx: Unavailable DR4/5 is checked before CPL (Bandan Das) [1209995]
-- [kvm] x86: Emulator performs code segment checks on read access (Bandan Das) [1209995]
-- [kvm] x86: Clear DR7.LE during task-switch (Bandan Das) [1209995]
-- [kvm] x86: Emulator does not calculate address correctly (Bandan Das) [1209995]
-- [kvm] x86: DR7.GD should be cleared upon any #DB exception (Bandan Das) [1209995]
-- [kvm] x86: some apic broadcast modes does not work (Bandan Das) [1209995]
-- [kvm] x86,kvm,vmx: Don't trap writes to CR4.TSD (Bandan Das) [1209995]
-- [kvm] x86: Sysexit emulation does not mask RIP/RSP (Bandan Das) [1209995]
-- [kvm] x86: Distinguish between stack operation and near branches (Bandan Das) [1209995]
-- [kvm] x86: Getting rid of grp45 in emulator (Bandan Das) [1209995]
-- [kvm] x86: Use new is_noncanonical_address in _linearize (Bandan Das) [1209995]
-- [kvm] emulator: always inline __linearize (Bandan Das) [1209995]
-- [kvm] nvmx: Disable preemption while reading from shadow VMCS (Bandan Das) [1209995]
-- [kvm] x86: Fix far-jump to non-canonical check (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] emulator: fix execution close to the segment limit (Bandan Das) [1209995]
-- [kvm] emulator: fix error code for __linearize (Bandan Das) [1209995]
-- [kvm] vfio: fix unregister kvm_device_ops of vfio (Bandan Das) [1209995]
-- [kvm] x86: Wrong assertion on paging_tmpl.h (Bandan Das) [1209995]
-- [kvm] fix excessive pages un-pinning in kvm_iommu_map error path (Bandan Das) [1209995]
-- [kvm] x86: PREFETCH and HINT_NOP should have SrcMem flag (Bandan Das) [1209995]
-- [kvm] x86: Emulator does not decode clflush well (Bandan Das) [1209995]
-- [kvm] emulate: avoid accessing NULL ctxt->memopp (Bandan Das) [1209995]
-- [kvm] x86: Decoding guest instructions which cross page boundary may fail (Bandan Das) [1209995]
-- [kvm] x86: don't kill guest on unknown exit reason (Bandan Das) [1209995]
-- [kvm] x86: Handle errors when RIP is set during far jumps (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Emulator fixes for eip canonical checks on near branches (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Fix wrong masking on relative jump/call (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] Fix kvm_get_page_retry_io __gup retval check (Bandan Das) [1209995]
-- [kvm] iommu: Convert to use new iommu_capable() API function (Bandan Das) [1209995]
-- [kvm] kvm/x86/mmu: Pass gfn and level to rmapp callback (Bandan Das) [1209995]
-- [kvm] x86: use macros to compute bank MSRs (Bandan Das) [1209995]
-- [kvm] x86: Remove debug assertion of non-PAE reserved bits (Bandan Das) [1209995]
-- [kvm] don't take vcpu mutex for obviously invalid vcpu ioctls (Bandan Das) [1209995]
-- [kvm] Faults which trigger IO release the mmap_sem (Bandan Das) [1209995]
-- [kvm] x86: fix two typos in comment (Bandan Das) [1209995]
-- [kvm] vmx: Inject #GP on invalid PAT CR (Bandan Das) [1209995]
-- [kvm] x86: emulating descriptor load misses long-mode case (Bandan Das) [1209995]
-- [kvm] x86: directly use kvm_make_request again (Bandan Das) [1209995]
-- [kvm] x86: count actual tlb flushes (Bandan Das) [1209995]
-- [kvm] x86: Don't report guest userspace emulation error to userspace (Bandan Das) [1163766 1209995] {CVE-2010-5313 CVE-2014-7842}
-- [kvm] Make init_rmode_tss() return 0 on success (Bandan Das) [1209995]
-- [kvm] x86: Warn if guest virtual address space is not 48-bits (Bandan Das) [1209995]
-- [kvm] kvm-vfio: do not use module_init (Bandan Das) [1209995]
-- [kvm] eventfd: Remove inclusion of irq.h (Bandan Das) [1209995]
-- [kvm] correct null pid check in kvm_vcpu_yield_to() (Bandan Das) [1209995]
-- [kvm] Make init_rmode_identity_map() return 0 on success (Bandan Das) [1209995]
-- [kvm] vfio: register kvm_device_ops dynamically (Bandan Das) [1209995]
-- [kvm] device: add simple registration mechanism for kvm_device_ops (Bandan Das) [1209995]
-- [kvm] Use PCI device flag helper functions (Bandan Das) [1209995]
-- [kvm] x86: Use kvm_make_request when applicable (Bandan Das) [1209995]
-- [kvm] mm: export symbol dependencies of is_zero_pfn() (Bandan Das) [1209995]
-- [kvm] check for !is_zero_pfn() in kvm_is_mmio_pfn() (Bandan Das) [1209995]
-- [kvm] x86: make apic_accept_irq tracepoint more generic (Bandan Das) [1209995]
-- [kvm] fix api documentation of KVM_GET_EMULATED_CPUID (Bandan Das) [1209995]
-- [kvm] document KVM_SET_GUEST_DEBUG api (Bandan Das) [1209995]
-- [kvm] remove redundant assignments in __kvm_set_memory_region (Bandan Das) [1209995]
-- [kvm] remove redundant assigment of return value in kvm_dev_ioctl (Bandan Das) [1209995]
-- [kvm] remove redundant check of in_spin_loop (Bandan Das) [1209995]
-- [kvm] x86: propagate exception from permission checks on the nested page fault (Bandan Das) [1209995]
-- [kvm] x86: skip writeback on injection of nested exception (Bandan Das) [1209995]
-- [kvm] nsvm: propagate the NPF EXITINFO to the guest (Bandan Das) [1209995]
-- [kvm] x86: reserve bit 8 of non-leaf PDPEs and PML4Es in 64-bit mode on AMD (Bandan Das) [1209995]
-- [kvm] mmio: cleanup kvm_set_mmio_spte_mask (Bandan Das) [1209995]
-- [kvm] x86: fix stale mmio cache bug (Bandan Das) [1209995]
-- [kvm] fix potentially corrupt mmio cache (Bandan Das) [1209995]
-- [kvm] do not bias the generation number in kvm_current_mmio_generation (Bandan Das) [1209995]
-- [kvm] x86: use guest maxphyaddr to check MTRR values (Bandan Das) [1209995]
-- [kvm] remove garbage arg to *hardware_{en, dis}able (Bandan Das) [1209995]
-- [kvm] forward declare structs in kvm_types.h (Bandan Das) [1209995]
-- [kvm] x86: remove Aligned bit from movntps/movntpd (Bandan Das) [1209995]
-- [kvm] vmx: VMXOFF emulation in vm86 should cause #UD (Bandan Das) [1209995]
-- [kvm] x86: fix some sparse warnings (Bandan Das) [1209995]
-- [kvm] nvmx: nested TPR shadow/threshold emulation (Bandan Das) [1209995]
-- [kvm] nvmx: introduce nested_get_vmcs12_pages (Bandan Das) [1209995]
-- [kvm] Unconditionally export KVM_CAP_USER_NMI (Bandan Das) [1209995]
-- [kvm] Unconditionally export KVM_CAP_READONLY_MEM (Bandan Das) [1209995]
-- [kvm] Introduce gfn_to_hva_memslot_prot (Bandan Das) [1209995]
-- [kvm] x86: fix tracing for 32-bit (Bandan Das) [1209995]
-- [kvm] clarify the idea of kvm_dirty_regs (Bandan Das) [1209995]
-- [kvm] x86: Replace X86_FEATURE_NX offset with the definition (Bandan Das) [1209995]
-- [kvm] avoid unnecessary synchronize_rcu (Bandan Das) [1209995]
-- [kvm] emulate: warn on invalid or uninitialized exception numbers (Bandan Das) [1209995]
-- [kvm] emulate: do not return X86EMUL_PROPAGATE_FAULT explicitly (Bandan Das) [1209995]
-- [kvm] x86: Clarify PMU related features bit manipulation (Bandan Das) [1209995]
-- [kvm] vmx: fix ept reserved bits for 1-GByte page (Bandan Das) [1209995]
-- [kvm] x86: Clear apic tsc-deadline after deadline (Bandan Das) [1179067 1209995]
-- [kvm] x86: #GP when attempts to write reserved bits of Variable Range MTRRs (Bandan Das) [1209995]
-- [kvm] x86: fix check legal type of Variable Range MTRRs (Bandan Das) [1209995]
-- [kvm] arch/x86: Use RCU_INIT_POINTER(x, NULL) in kvm/vmx.c (Bandan Das) [1209995]
-- [kvm] virt/kvm/assigned-dev.c: Set 'dev->irq_source_id' to '-1' after free it (Bandan Das) [1209995]
-- [kvm] x86: raise invalid TSS exceptions during a task switch (Bandan Das) [1209995]
-- [kvm] x86: drop fpu_activate hook (Bandan Das) [1209995]
-- [kvm] x86: do not check CS.DPL against RPL during task switch (Bandan Das) [1209995]
-- [kvm] svm: add rdmsr support for AMD event registers (Bandan Das) [1209995]
-- [kvm] x86: Avoid emulating instructions on #UD mistakenly (Bandan Das) [1209995]
-- [kvm] iommu: fix the third parameter of kvm_iommu_put_pages (CVE-2014-3601) (Bandan Das) [1209995]
-- [kvm] nvmx: fix "acknowledge interrupt on exit" when APICv is in use (Bandan Das) [1209995]
-- [kvm] nvmx: Fix nested vmexit ack intr before load vmcs01 (Bandan Das) [1209995]
-- [kvm] Allow KVM_CHECK_EXTENSION on the vm fd (Bandan Das) [1209995]
-- [kvm] Rename and add argument to check_extension (Bandan Das) [1209995]
-- [kvm] x86/kvm: Resolve shadow warning from min macro (Bandan Das) [1209995]
-- [kvm] Resolve missing-field-initializers warnings (Bandan Das) [1209995]
-- [kvm] Replace NR_VMX_MSR with its definition (Bandan Das) [1209995]
-- [kvm] x86: Assertions to check no overrun in MSR lists (Bandan Das) [1209995]
-- [kvm] x86: set rflags.rf during fault injection (Bandan Das) [1209995]
-- [kvm] x86: Setting rflags.rf during rep-string emulation (Bandan Das) [1209995]
-- [kvm] x86: kvm: Make kvm_get_time_and_clockread() nanoseconds based (Bandan Das) [1209995]
-- [kvm] x86: DR6/7.RTM cannot be written (Bandan Das) [1209995]
-- [kvm] nvmx: clean up nested_release_vmcs12 and code around it (Bandan Das) [1209995]
-- [kvm] nvmx: fix lifetime issues for vmcs02 (Bandan Das) [1209995 1220461]
-- [kvm] x86: emulator injects #DB when RFLAGS.RF is set (Bandan Das) [1209995]
-- [kvm] x86: Cleanup of rflags.rf cleaning (Bandan Das) [1209995]
-- [kvm] x86: Clear rflags.rf on emulated instructions (Bandan Das) [1209995]
-- [kvm] x86: popf emulation should not change RF (Bandan Das) [1209995]
-- [kvm] x86: Clearing rflags.rf upon skipped emulated instruction (Bandan Das) [1209995]
-- [kvm] nvmx: Fix virtual interrupt delivery injection (Bandan Das) [1209995]
-- [kvm] x86: Emulator support for #UD on CPL>0 (Bandan Das) [1209995]
-- [kvm] x86: Emulator flag for instruction that only support 16-bit addresses in real mode (Bandan Das) [1209995]
-- [kvm] x86: use kvm_read_guest_page for emulator accesses (Bandan Das) [1036792 1209995]
-- [kvm] x86: ensure emulator fetches do not span multiple pages (Bandan Das) [1036792 1209995]
-- [kvm] emulate: put pointers in the fetch_cache (Bandan Das) [1036792 1209995]
-- [kvm] emulate: avoid per-byte copying in instruction fetches (Bandan Das) [1036792 1209995]
-- [kvm] emulate: avoid repeated calls to do_insn_fetch_bytes (Bandan Das) [1036792 1209995]
-- [kvm] emulate: speed up do_insn_fetch (Bandan Das) [1036792 1209995]
-- [kvm] emulate: do not initialize memopp (Bandan Das) [1036792 1209995]
-- [kvm] emulate: rework seg_override (Bandan Das) [1036792 1209995]
-- [kvm] emulate: clean up initializations in init_decode_cache (Bandan Das) [1036792 1209995]
-- [kvm] emulate: cleanup decode_modrm (Bandan Das) [1036792 1209995]
-- [kvm] emulate: Remove ctxt->intercept and ctxt->check_perm checks (Bandan Das) [1036792 1209995]
-- [kvm] emulate: move init_decode_cache to emulate.c (Bandan Das) [1036792 1209995]
-- [kvm] emulate: simplify writeback (Bandan Das) [1036792 1209995]
-- [kvm] emulate: speed up emulated moves (Bandan Das) [1036792 1209995]
-- [kvm] emulate: protect checks on ctxt->d by a common "if (unlikely())" (Bandan Das) [1036792 1209995]
-- [kvm] emulate: move around some checks (Bandan Das) [1036792 1209995]
-- [kvm] x86: avoid useless set of KVM_REQ_EVENT after emulation (Bandan Das) [1209995]
-- [kvm] x86: return all bits from get_interrupt_shadow (Bandan Das) [1209995]
-- [kvm] vmx: speed up emulation of invalid guest state (Bandan Das) [1209995]
-- [kvm] svm: writes to MSR_K7_HWCR generates GPE in guest (Bandan Das) [1209995]
-- [kvm] x86: Pending interrupt may be delivered after INIT (Bandan Das) [1209995]
-- [kvm] Synthesize G bit for all segments (Bandan Das) [1209995]
-- [kvm] x86: Fix lapic.c debug prints (Bandan Das) [1209995]
-- [kvm] nsvm: Set correct port for IOIO interception evaluation (Bandan Das) [1209995]
-- [kvm] nsvm: Fix IOIO size reported on emulation (Bandan Das) [1209995]
-- [kvm] nsvm: Fix IOIO bitmap evaluation (Bandan Das) [1209995]
-- [kvm] nsvm: Do not report CLTS via SVM_EXIT_WRITE_CR0 to L1 (Bandan Das) [1209995]
-- [kvm] tracing: Add trace_seq_buffer_ptr() helper function (Bandan Das) [1209995]
-- [kvm] arch: x86: kvm: x86.c: Cleaning up variable is set more than once (Bandan Das) [1209995]
-- [kvm] vmx: vmx instructions handling does not consider cs.l (Bandan Das) [1209995]
-- [kvm] vmx: handle_cr ignores 32/64-bit mode (Bandan Das) [1209995]
-- [kvm] x86: Hypercall handling does not considers opsize correctly (Bandan Das) [1209995]
-- [kvm] x86: check DR6/7 high-bits are clear only on long-mode (Bandan Das) [1209995]
-- [kvm] nvmx: Fix returned value of MSR_IA32_VMX_VMCS_ENUM (Bandan Das) [1209995]
-- [kvm] nvmx: Allow to disable VM_{ENTRY_LOAD, EXIT_SAVE}_DEBUG_CONTROLS (Bandan Das) [1209995]
-- [kvm] nvmx: Fix returned value of MSR_IA32_VMX_PROCBASED_CTLS (Bandan Das) [1209995]
-- [kvm] nvmx: Allow to disable CR3 access interception (Bandan Das) [1209995]
-- [kvm] nvmx: Advertise support for MSR_IA32_VMX_TRUE_*_CTLS (Bandan Das) [1209995]
-- [kvm] x86: Fix constant value of VM_{EXIT_SAVE, ENTRY_LOAD}_DEBUG_CONTROLS (Bandan Das) [1209995]
-- [kvm] x86: NOP emulation clears (incorrectly) the high 32-bits of RAX (Bandan Das) [1209995]
-- [kvm] x86: emulation of dword cmov on long-mode should clear [63:32] (Bandan Das) [1209995]
-- [kvm] x86: Inter-privilege level ret emulation is not implemeneted (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Wrong emulation on 'xadd X, X' (Bandan Das) [1209995]
-- [kvm] x86: bit-ops emulation ignores offset on 64-bit (Bandan Das) [1209995]
-- [kvm] x86: vmx: use PAGE_ALIGNED instead of IS_ALIGNED(..., PAGE_SIZE) (Bandan Das) [1209995]
-- [kvm] emulate: fix harmless typo in MMX decoding (Bandan Das) [1209995]
-- [kvm] emulate: simplify BitOp handling (Bandan Das) [1209995]
-- [kvm] emulate: POP SS triggers a MOV SS shadow too (Bandan Das) [1209995]
-- [kvm] x86: smsw emulation is incorrect in 64-bit mode (Bandan Das) [1209995]
-- [kvm] x86: Return error on cmpxchg16b emulation (Bandan Das) [1209995]
-- [kvm] x86: rdpmc emulation checks the counter incorrectly (Bandan Das) [1209995]
-- [kvm] x86: movnti minimum op size of 32-bit is not kept (Bandan Das) [1209995]
-- [kvm] x86: cmpxchg emulation should compare in reverse order (Bandan Das) [1209995]
-- [kvm] x86: sgdt and sidt are not privilaged (Bandan Das) [1209995]
-- [kvm] x86: Loading segments on 64-bit mode may be wrong (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Emulator ignores LDTR/TR extended base on LLDT/LTR (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Mark VEX-prefix instructions emulation as unimplemented (Bandan Das) [1209995]
-- [kvm] x86: mmu: flush tlb out of mmu lock when write-protect the sptes (Bandan Das) [1209995]
-- [kvm] x86: mmu: flush tlb if the spte can be locklessly modified (Bandan Das) [1209995]
-- [kvm] x86: mmu: lazily drop large spte (Bandan Das) [1209995]
-- [kvm] x86: mmu: properly check last spte in fast_page_fault() (Bandan Das) [1209995]
-- [kvm] x86: optimize out smp_mb after srcu_read_unlock (Bandan Das) [1209995]
-- [kernel] srcu: API for barrier after srcu read unlock (Bandan Das) [1209995]
-
-* Thu May 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-257.el7]
-- [pci] pciehp: Fix pcie_wait_cmd() timeout (Myron Stowe) [1223472]
-- [pci] revert "pci: Make sure bus number resources stay within their parents bounds" (Myron Stowe) [1223472]
-- [pci] revert "pci: Don't scan random busses in pci_scan_bridge()" (Myron Stowe) [1223472]
-- [pci] acpiphp / radeon / nouveau: Remove acpi_bus_no_hotplug() (Myron Stowe) [1223472]
-- [pci] Remove "no hotplug settings from platform" warning (Myron Stowe) [1223472]
-- [pci] Add pci_ignore_hotplug() to ignore hotplug events for a device (Myron Stowe) [1223472]
-- [pci] maintainers: Add Lucas Stach as co-maintainer for i.MX6 PCI driver (Myron Stowe) [1223472]
-- [pci] msi: Use irq_get_msi_desc() to simplify code (Myron Stowe) [1223472]
-- [pci] msi: Remove unused list access in __pci_restore_msix_state() (Myron Stowe) [1223472]
-- [pci] msi: Retrieve first MSI IRQ from msi_desc rather than pci_dev (Myron Stowe) [1223472]
-- [pci] msi: Remove unused function msi_remove_pci_irq_vectors() (Myron Stowe) [1223472]
-- [pci] msi: Add msi_setup_entry() to clean up MSI initialization (Myron Stowe) [1223472]
-- [pci] Configure ASPM when enabling device (Myron Stowe) [1223472]
-- [pci] x86: don't exclude low BIOS area when allocating address space for non-PCI c (Myron Stowe) [1223472]
-- [pci] Tidy resource assignment messages (Myron Stowe) [1223472]
-- [pci] Return conventional error values from pci_revert_fw_address() (Myron Stowe) [1223472]
-- [pci] Cleanup control flow (Myron Stowe) [1223472]
-- [pci] cpqphp: Remove unnecessary null test before debugfs_remove() (Myron Stowe) [1223472]
-- [pci] pciehp: Remove struct controller.no_cmd_complete (Myron Stowe) [1223472]
-- [pci] msi: Cache Multiple Message Capable in struct msi_desc (Myron Stowe) [1223472]
-- [pci] msi: Remove unused msi_enabled_mask() (Myron Stowe) [1223472]
-- [pci] msi: Add internal msix_clear_and_set_ctrl() function (Myron Stowe) [1223472]
-- [pci] powerpc: Remove duplicate logic (Myron Stowe) [1223472]
-- [pci] Make resetting secondary bus logic common (Myron Stowe) [1223472]
-- [pci] pci: Fix sysfs acpi_index and label errors (Myron Stowe) [1223472]
-- [pci] portdrv: Remove warning about invalid IRQ for hot-added PCIe ports (Myron Stowe) [1223472]
-- [pci] pciehp: Remove assumptions about which commands cause completion events (Myron Stowe) [1223472]
-- [pci] pciehp: Compute timeout from hotplug command start time (Myron Stowe) [1223472]
-- [pci] pciehp: Wait for hotplug command completion lazily (Myron Stowe) [1223472]
-- [pci] pciehp: Make pcie_wait_cmd() self-contained (Myron Stowe) [1223472]
-- [pci] label: treat PCI label with index 0 as valid label (Myron Stowe) [1223472]
-- [pci] acpi: replace open-coded _DSM code with helper functions (Myron Stowe) [1223472]
-- [pci] label: release allocated ACPI object on error recovery path (Myron Stowe) [1223472]
-- [pci] acpi: Eliminate the DEVICE_ACPI_HANDLE() macro (Myron Stowe) [1223472]
-- [fs] ext4: fix overflow when updating superblock backups after resize (Lukas Czerner) [1220312]
-- [fs] ext4: fix growing of tiny filesystems (Lukas Czerner) [1220312]
-- [fs] ext4: make fsync to sync parent dir in no-journal for real this time (Lukas Czerner) [1220312]
-- [fs] ext4: don't release reserved space for previously allocated cluster (Lukas Czerner) [1220312]
-- [fs] ext4: fix loss of delalloc extent info in ext4_zero_range() (Lukas Czerner) [1220312]
-- [fs] ext4: remove unnecessary lock/unlock of i_block_reservation_lock (Lukas Czerner) [1220312]
-- [fs] ext4: remove useless condition in if statement (Lukas Czerner) [1220312]
-- [fs] ext4: fix comments in ext4_can_extents_be_merged() (Lukas Czerner) [1220312]
-- [fs] ext4: fix transposition typo in format string (Lukas Czerner) [1220312]
-- [fs] ext4: fix bh leak on error paths in ext4_rename() and ext4_cross_rename() (Lukas Czerner) [1220312]
-- [fs] ext4: fix indirect punch hole corruption (Lukas Czerner) [1220312]
-- [fs] ext4: ignore journal checksum on remount; don't fail (Lukas Czerner) [1220312]
-- [fs] ext4: remove duplicate remount check for JOURNAL_CHECKSUM change (Lukas Czerner) [1220312]
-- [fs] jbd2: complain about descriptor block checksum errors (Lukas Czerner) [1220312]
-- [fs] ext4: remove spurious KERN_INFO from ext4_warning call (Lukas Czerner) [1220312]
-- [fs] ext4: prevent online resize with backup superblock (Lukas Czerner) [1220312]
-- [fs] move_extent_per_page(): get rid of unused w_flags (Lukas Czerner) [1220312]
-- [fs] ext4: ext4_da_convert_inline_data_to_extent drop locked page after error (Lukas Czerner) [1220312]
-- [fs] ext4: ext4_inline_data_fiemap should respect callers argument (Lukas Czerner) [1220312]
-- [fs] ext4: prevent fsreentrance deadlock for inline_data (Lukas Czerner) [1220312]
-- [fs] jbd2: fix regression where we fail to initialize checksum seed when loading (Lukas Czerner) [1220312]
-- [fs] ext4: forbid journal_async_commit in data=ordered mode (Lukas Czerner) [1220312]
-- [fs] jbd2: remove unnecessary NULL check before iput() (Lukas Czerner) [1220312]
-- [fs] ext4: Remove an unnecessary check for NULL before iput() (Lukas Czerner) [1220312]
-- [fs] ext4: remove unneeded code in ext4_unlink (Lukas Czerner) [1220312]
-- [fs] ext4: remove never taken branch from ext4_ext_shift_path_extents() (Lukas Czerner) [1220312]
-- [fs] ext4: create nojournal_checksum mount option (Lukas Czerner) [1220312]
-- [fs] ext4: update comments regarding ext4_delete_inode() (Lukas Czerner) [1220312]
-- [fs] ext4: cleanup GFP flags inside resize path (Lukas Czerner) [1220312]
-- [fs] ext4: cache extent hole in extent status tree for ext4_da_map_blocks() (Lukas Czerner) [1220312]
-- [fs] ext4: fix block reservation for bigalloc filesystems (Lukas Czerner) [1220312]
-- [fs] ext4: fix end of region partial cluster handling (Lukas Czerner) [1220312]
-- [fs] ext4: miscellaneous partial cluster cleanups (Lukas Czerner) [1220312]
-- [fs] ext4: fix end of leaf partial cluster handling (Lukas Czerner) [1220312]
-- [fs] ext4: fix partial cluster initialization (Lukas Czerner) [1220312]
-- [fs] ext4: move_extent improve bh vanishing success factor (Lukas Czerner) [1220312]
-- [fs] ext4: make ext4_ext_convert_to_initialized() return proper number of blocks (Lukas Czerner) [1220312]
-- [fs] ext4: bail early when clearing inode journal flag fails (Lukas Czerner) [1220312]
-- [fs] ext4: bail out from make_indexed_dir() on first error (Lukas Czerner) [1220312]
-- [fs] jbd2: use a better hash function for the revoke table (Lukas Czerner) [1220312]
-- [fs] ext4: disallow changing journal_csum option during remount (Lukas Czerner) [1220312]
-- [fs] ext4: enable journal checksum when metadata checksum feature enabled (Lukas Czerner) [1220312]
-- [fs] ext4: fix oops when loading block bitmap failed (Lukas Czerner) [1220312]
-- [fs] xfs: allow appending aio writes (Eric Sandeen) [1053615]
-- [fs] direct-io: add flag to allow aio writes beyond i_size (Eric Sandeen) [1053615]
-- [fs] ext4: fix data corruption caused by unwritten and delayed extents (Lukas Czerner) [1213487]
-- [fs] gfs2: Use average srttb value in congestion calculations (Robert S Peterson) [1162821]
-- [fs] xfs: disallow ro->rw remount on norecovery mount (Eric Sandeen) [1206220]
-- [fs] nfs: Fixing lease renewal (Benjamin Coddington) [1205048]
-- [fs] bio: modify __bio_add_page() to accept pages that don't start a new segment (Maurizio Lombardi) [1094392]
-
-* Tue May 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-256.el7]
-- [perf] probe: Fix segfault if passed with '' (Jiri Olsa) [1222189]
-- [perf] report: Fix -T/--threads option to work again (Jiri Olsa) [1222189]
-- [perf] bench numa: Fix immediate meeting of convergence condition (Jiri Olsa) [1222189]
-- [perf] bench numa: Fixes of --quiet argument (Jiri Olsa) [1222189]
-- [perf] bench futex: Fix hung wakeup tasks after requeueing (Jiri Olsa) [1222189]
-- [perf] probe: Fix bug with global variables handling (Jiri Olsa) [1222189]
-- [perf] top: Fix a segfault when kernel map is restricted (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Fix build failure on 32-bit arch (Jiri Olsa) [1222189]
-- [perf] kmem: Fix compiles on RHEL6/OL6 (Jiri Olsa) [1222189]
-- [perf] tools lib api: Undefine _FORTIFY_SOURCE before setting it (Jiri Olsa) [1222189]
-- [perf] kmem: Consistently use PRIu64 for printing u64 values (Jiri Olsa) [1222189]
-- [perf] trace: Disable events and drain events when forked workload ends (Jiri Olsa) [1222189]
-- [perf] trace: Enable events when doing system wide tracing and starting a workload (Jiri Olsa) [1222189]
-- [perf] probe: Fix segfault when probe with lazy_line to file (Jiri Olsa) [1222189]
-- [perf] probe: Find compilation directory path for lazy matching (Jiri Olsa) [1222189]
-- [perf] probe: Set retprobe flag when probe in address-based alternative mode (Jiri Olsa) [1222189]
-- [perf] kmem: Analyze page allocator events also (Jiri Olsa) [1222189]
-- [perf] evlist: Fix type for references to data_head/tail (Jiri Olsa) [1222189]
-- [perf] probe: Check the orphaned -x option (Jiri Olsa) [1222189]
-- [perf] probe: Support multiple probes on different binaries (Jiri Olsa) [1222189]
-- [perf] buildid-list: Fix segfault when show DSOs with hits (Jiri Olsa) [1222189]
-- [perf] tools: Fix cross-endian analysis (Jiri Olsa) [1222189]
-- [perf] tools: Fix error path to do closedir() when synthesizing threads (Jiri Olsa) [1222189]
-- [perf] tools: Fix synthesizing fork_event.ppid for non-main thread (Jiri Olsa) [1222189]
-- [perf] tools: Add 'I' event modifier for exclude_idle bit (Jiri Olsa) [1222189]
-- [perf] report: Don't call map__kmap if map is NULL (Jiri Olsa) [1222189]
-- [perf] probe: Fix ARM 32 building error (Jiri Olsa) [1222189]
-- [perf] tools: Merge all perf_event_attr print functions (Jiri Olsa) [1222189]
-- [perf] sched replay: Use replay_repeat to calculate the runavg of cpu usage instead of the default value 10 (Jiri Olsa) [1222189]
-- [perf] sched replay: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] sched replay: Fix the EMFILE error caused by the limitation of the maximum open files (Jiri Olsa) [1222189]
-- [perf] sched replay: Handle the dead halt of sem_wait when create_tasks() fails for any task (Jiri Olsa) [1222189]
-- [perf] sched replay: Fix the segmentation fault problem caused by pr_err in threads (Jiri Olsa) [1222189]
-- [perf] sched replay: Realloc the memory of pid_to_task stepwise to adapt to the different pid_max configurations (Jiri Olsa) [1222189]
-- [perf] sched replay: Alloc the memory of pid_to_task dynamically to adapt to the unexpected change of pid_max (Jiri Olsa) [1222189]
-- [perf] sched replay: Increase the MAX_PID value to fix assertion failure problem (Jiri Olsa) [1222189]
-- [perf] sched replay: Use struct task_desc instead of struct task_task for correct meaning (Jiri Olsa) [1222189]
-- [perf] kmem: Respect -i option (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Honor operator priority (Jiri Olsa) [1222189]
-- [perf] kmaps: Check kmaps to make code more robust (Jiri Olsa) [1222189]
-- [perf] evlist: Fix inverted logic in perf_mmap__empty (Jiri Olsa) [1222189]
-- [perf] data: Support using -f to override perf.data file ownership for 'convert' (Jiri Olsa) [1222189]
-- [perf] trace: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] timechart: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] script: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] mem: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] lock: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] kvm: Support using -f to override perf.data.guest file ownership (Jiri Olsa) [1222189]
-- [perf] kmem: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] inject: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] evlist: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] probe: Fix to track down unnamed union/structure members (Jiri Olsa) [1222189]
-- [perf] db-export: No need to have ->thread twice in struct export_sample (Jiri Olsa) [1222189]
-- [perf] db-export: No need to pass thread twice to db_export__sample (Jiri Olsa) [1222189]
-- [perf] scripting: No need to pass thread twice to the scripting callbacks (Jiri Olsa) [1222189]
-- [perf] script: No need to lookup thread twice (Jiri Olsa) [1222189]
-- [perf] ordered_samples: Remove references to perf_{evlist, tool} and machines (Jiri Olsa) [1222189]
-- [perf] session: Always initialize ordered_events (Jiri Olsa) [1222189]
-- [perf] tools: Fix ppid for synthesized fork events (Jiri Olsa) [1222189]
-- [perf] tools: Refactor comm/tgid lookup (Jiri Olsa) [1222189]
-- [perf] callchain: Fix kernel symbol resolution by remembering the cpumode (Jiri Olsa) [1222189]
-- [perf] build: Disable libbabeltrace check by default (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Zero should not be considered "not found" in eval_flag() (Jiri Olsa) [1222189]
-- [perf] trace: Fix syscall enter formatting bug (Jiri Olsa) [1222189]
-- [perf] tools: Set JOBS based on CPU or processor (Jiri Olsa) [1222189]
-- [perf] Bump max number of cpus to 1024 (Jiri Olsa) [1222189]
-- [perf] evlist: Return the first evsel with an invalid filter in apply_filters() (Jiri Olsa) [1222189]
-- [perf] timechart: Fix SIBGUS error on sparc64 (Jiri Olsa) [1222189]
-- [perf] tools: Add pid/tid filtering to report and script commands (Jiri Olsa) [1222189]
-- [perf] diff: Add kallsyms option (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Add support for __print_array() (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Free filter tokens in process_filter() (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Add way to find sub buffer boundary (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent kbuffer: Remove extra update to data pointer in PADDING (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Make plugin options either string or boolean (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Add pevent_data_pid_from_comm() (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Handle z in bprint format (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Copy trace_clock and free it (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Handle NULL comm name (Jiri Olsa) [1222189]
-- [perf] symbols: Save DSO loading errno to better report errors (Jiri Olsa) [1222189]
-- [perf] target: Simplify handling of strerror_r return (Jiri Olsa) [1222189]
-- [perf] tools: Work around lack of sched_getcpu in glibc < 2.6 (Jiri Olsa) [1222189]
-- [perf] kmem: Print big numbers using thousands' group (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Factor out allocating and processing args (Jiri Olsa) [1222189]
-- [perf] probe: Fix to get ummapped symbol address on kernel (Jiri Olsa) [1222189]
-- [perf] tools: Remove (null) value of "Sort order" for perf mem report (Jiri Olsa) [1222189]
-- [perf] annotate: Allow annotation for decompressed kernel modules (Jiri Olsa) [1222189]
-- [perf] tools: Try to lookup kernel module map before creating one (Jiri Olsa) [1222189]
-- [perf] tools: Remove is_kmodule_extension function (Jiri Olsa) [1222189]
-- [perf] tools: Remove compressed argument from is_kernel_module (Jiri Olsa) [1222189]
-- [perf] tools: Use kmod_path__parse in is_kernel_module (Jiri Olsa) [1222189]
-- [perf] tools: Use kmod_path__parse in decompress_kmodule (Jiri Olsa) [1222189]
-- [perf] tools: Use kmod_path__parse in map_groups__set_modules_path_dir (Jiri Olsa) [1222189]
-- [perf] tools: Use kmod_path__parse for machine__new_dso (Jiri Olsa) [1222189]
-- [perf] tools: Add machine__module_dso function (Jiri Olsa) [1222189]
-- [perf] tools: Add dsos__addnew function (Jiri Olsa) [1222189]
-- [perf] tools: Add kmod_path__parse function (Jiri Olsa) [1222189]
-- [perf] tools: Add lzma decompression support for kernel module (Jiri Olsa) [1222189]
-- [perf] tools build: Add feature check for lzma library (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Add destructor for format_field (Jiri Olsa) [1222189]
-- [perf] hists browser: Indicate which callchain entries are annotated (Jiri Olsa) [1222189]
-- [perf] trace: Handle legacy syscalls tracepoints (Jiri Olsa) [1222189]
-- [perf] build: Move feature checks code under tools/build (Jiri Olsa) [1222189]
-- [perf] build: Make features checks directory configurable (Jiri Olsa) [1222189]
-- [perf] build: Separate feature make support into config/Makefile.feature (Jiri Olsa) [1222189]
-- [perf] build: Fix feature_check name clash (Jiri Olsa) [1222189]
-- [perf] trace: Fix summary_only option (Jiri Olsa) [1222189]
-- [perf] probe: Fix failure to add multiple probes without debuginfo (Jiri Olsa) [1222189]
-- [perf] build: Add config/feature-checks/*.output to the .gitignore file (Jiri Olsa) [1222189]
-- [perf] build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file (Jiri Olsa) [1222189]
-- [perf] tools: Don't allow empty argument for field-separator (Jiri Olsa) [1222189]
-- [perf] report: Don't allow empty argument for '-t' (Jiri Olsa) [1222189]
-- [perf] callchain: Separate eh/debug frame offset cache (Jiri Olsa) [1222189]
-- [perf] tools: Avoid confusion with preloaded bash function for perf bash completion (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf trace (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf timechart (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf test (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf script (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf help (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf data (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion for listing subcommands of perf (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion to support listing events for --event (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion for listing events of perf subcommand record|stat|top -e (Jiri Olsa) [1222189]
-- [perf] tools: Provide the right bash completion for listing options of perf subcommand subsubcommand (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion for listing subsubcommands of perf subcommand (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion for listing options of perf subcommand (Jiri Olsa) [1222189]
-- [perf] tools: Fix perf-read-vdsox32 not building and lib64 install dir (Jiri Olsa) [1222189]
-- [perf] build: Rename feature_print_var_code to print_var_code (Jiri Olsa) [1222189]
-- [perf] build: Rename PERF-FEATURES into FEATURE-DUMP (Jiri Olsa) [1222189]
-- [perf] build: Rename display_vf to feature_verbose (Jiri Olsa) [1222189]
-- [perf] build: Rename display_lib into feature_display (Jiri Olsa) [1222189]
-- [perf] build: Get rid of VF_FEATURE_TESTS (Jiri Olsa) [1222189]
-- [perf] build: Rename CORE_FEATURE_TESTS to FEATURE_TESTS (Jiri Olsa) [1222189]
-- [perf] build: Get rid of LIB_INCLUDE variable (Jiri Olsa) [1222189]
-- [perf] build: Fix pthread-attr-setaffinity-np include in test-all (Jiri Olsa) [1222189]
-- [perf] build: Move features build output under features directory (Jiri Olsa) [1222189]
-- [perf] build: Disable default check for libbabeltrace (Jiri Olsa) [1222189]
-- [perf] tools: Fix building error for arm64 (Jiri Olsa) [1222189]
-- [perf] hists browser: Allow annotating entries in callchains (Jiri Olsa) [1222189]
-- [perf] hists: Remove hist_entry->used, not used anymore (Jiri Olsa) [1222189]
-- [perf] hists browser: Fix up some branch alignment (Jiri Olsa) [1222189]
-- [perf] hists browser: Simplify symbol annotation menu setup (Jiri Olsa) [1222189]
-- [perf] data: Add tracepoint events fields CTF conversion support (Jiri Olsa) [1222189]
-- [perf] kmem: Fix alignment of slab result table (Jiri Olsa) [1222189]
-- [perf] kmem: Allow -v option (Jiri Olsa) [1222189]
-- [perf] kmem: Fix segfault when invalid sort key is given (Jiri Olsa) [1222189]
-- [perf] stat: Always correctly indent ratio column (Jiri Olsa) [1222189]
-- [perf] stat: Fix IPC and other formulas with -A (Jiri Olsa) [1222189]
-- [perf] stat: Output running time and run/enabled ratio in CSV mode (Jiri Olsa) [1222189]
-- [perf] hists browser: Fix UI bug after fold/unfold (Jiri Olsa) [1222189]
-- [perf] probe: Fix compiles due to declarations using perf_probe_point (Jiri Olsa) [1222189]
-- [perf] hists browser: Fix UI bug after zoom into thread/dso/symbol (Jiri Olsa) [1222189]
-- [perf] probe: Fix possible double free on error (Jiri Olsa) [1222189]
-- [perf] tools: Output feature detection's gcc output to a file (Jiri Olsa) [1222189]
-- [perf] build: Fix libbabeltrace detection (Jiri Olsa) [1222189]
-- [perf] probe: Allow weak symbols to be probed (Jiri Olsa) [1222189]
-- [perf] symbols: Allow symbol alias when loading map for symbol name (Jiri Olsa) [1222189]
-- [perf] revert "perf probe: Fix to fall back to find probe point in symbols" (Jiri Olsa) [1222189]
-- [perf] probe: Fix --line to handle aliased symbols in glibc (Jiri Olsa) [1222189]
-- [perf] probe: Fix to handle aliased symbols in glibc (Jiri Olsa) [1222189]
-- [perf] ordered_events: Adopt queue() method (Jiri Olsa) [1222189]
-- [perf] tools: Remove superfluous thread->comm_set setting (Jiri Olsa) [1222189]
-- [perf] tools: tool->finished_round() doesn't need perf_session (Jiri Olsa) [1222189]
-- [perf] ordered_events: Allow tools to specify a deliver method (Jiri Olsa) [1222189]
-- [perf] ordered_events: Shorten function signatures (Jiri Olsa) [1222189]
-- [perf] ordered_events: Untangle from perf_session (Jiri Olsa) [1222189]
-- [perf] sched: No need to keep the session around (Jiri Olsa) [1222189]
-- [perf] tools: Reference count struct thread (Jiri Olsa) [1222189]
-- [perf] tools: Initialize cpu set in pthread_attr_setaffinity_np feature test (Jiri Olsa) [1222189]
-- [perf] probe: Remove bias offset to find probe point by address (Jiri Olsa) [1222189]
-- [perf] probe: Warn if given uprobe event accesses memory on older kernel (Jiri Olsa) [1222189]
-- [perf] tools: Improve 'libbabel' feature check failure message (Jiri Olsa) [1222189]
-- [perf] tools: Improve feature test debuggability (Jiri Olsa) [1222189]
-- [perf] tools: Improve libbfd detection message (Jiri Olsa) [1222189]
-- [perf] tools: Improve libperl detection message (Jiri Olsa) [1222189]
-- [perf] tools: Improve Python feature detection messages (Jiri Olsa) [1222189]
-- [perf] tools: Remove annoying extra message from the features build (Jiri Olsa) [1222189]
-- [perf] tools: Add PERF-FEATURES to the .gitignore file (Jiri Olsa) [1222189]
-- [perf] record: Document --group option (Jiri Olsa) [1222189]
-- [perf] record: Get rid of -l option from Documentation (Jiri Olsa) [1222189]
-- [perf] tools: Fix build error on ARCH=i386/x86_64/sparc64 (Jiri Olsa) [1222189]
-- [perf] tools: Fix FORK after COMM when synthesizing records for pre-existing threads (Jiri Olsa) [1222189]
-- [perf] stat: Report unsupported events properly (Jiri Olsa) [1222189]
-- [perf] tools: Compare JOBS to 0 after grep (Jiri Olsa) [1222189]
-- [perf] tools: Only include tsc file for x86 (Jiri Olsa) [1222189]
-- [perf] report: Fix branch stack mode cannot be set (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Show usage with incorrect params (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Use pr_debug instead of verbose && pr_info (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Add --purge FILE to remove all caches of FILE (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion problem of 'perf --*' (Jiri Olsa) [1222189]
-- [perf] list: Extend raw-dump to certain kind of events (Jiri Olsa) [1222189]
-- [perf] list: Clean up the printing functions of hardware/software events (Jiri Olsa) [1222189]
-- [perf] tools: Remove the '--(null)' long_name for --list-opts (Jiri Olsa) [1222189]
-- [perf] list: Avoid confusion of perf output and the next command prompt (Jiri Olsa) [1222189]
-- [perf] list: Allow listing events with 'tracepoint' prefix (Jiri Olsa) [1222189]
-- [perf] list: Sort the output of 'perf list' to view more clearly (Jiri Olsa) [1222189]
-- [perf] data: Fix sentinel setting for data_cmds array (Jiri Olsa) [1222189]
-- [perf] probe: Fix a precedence bug (Jiri Olsa) [1222189]
-- [perf] diff: Support for different binaries (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Add new buildid cache if update target is not cached (Jiri Olsa) [1222189]
-- [perf] probe: Handle strdup() failure (Jiri Olsa) [1222189]
-- [perf] probe: Fix get_real_path to free allocated memory in error path (Jiri Olsa) [1222189]
-- [perf] probe: Check kprobes blacklist when adding new events (Jiri Olsa) [1222189]
-- [perf] trace: Fix SIGBUS failures due to misaligned accesses (Jiri Olsa) [1222189]
-- [perf] data: Add a 'perf' prefix to the generic fields (Jiri Olsa) [1222189]
-- [perf] data: Add perf data to CTF conversion support (Jiri Olsa) [1222189]
-- [perf] tools: Add new 'perf data' command (Jiri Olsa) [1222189]
-- [perf] tools: Add feature check for libbabeltrace (Jiri Olsa) [1222189]
-- [perf] record: Support recording running/enabled time (Jiri Olsa) [1222189]
-- [perf] tools: Print the thread's tid on PERF_RECORD_COMM events when -D is asked (Jiri Olsa) [1222189]
-- [perf] trace: Dump stack on segfaults (Jiri Olsa) [1222189]
-- [perf] tools: Introduce dump_stack signal helper (Jiri Olsa) [1222189]
-- [perf] ordered_events: Stop using tool->ordered_events (Jiri Olsa) [1222189]
-- [perf] session: Remove perf_session from dump_event (Jiri Olsa) [1222189]
-- [perf] session: Remove perf_session from some deliver event routines (Jiri Olsa) [1222189]
-- [perf] session: Remove perf_session from warn_errors signature (Jiri Olsa) [1222189]
-- [perf] evlist: Adopt events_stats from perf_session (Jiri Olsa) [1222189]
-- [perf] session: Remove wrappers to machines__find (Jiri Olsa) [1222189]
-- [perf] trace: Separate routine that handles an event from the one that reads it (Jiri Olsa) [1222189]
-- [perf] trace: Add man page entry for --event (Jiri Olsa) [1222189]
-- [perf] trace: Introduce --filter-pids (Jiri Olsa) [1222189]
-- [perf] evlist: Introduce set_filter_pids method (Jiri Olsa) [1222189]
-- [perf] trace: Filter out the trace pid when no threads are specified (Jiri Olsa) [1222189]
-- [perf] evlist: Introduce set_filter_pid method (Jiri Olsa) [1222189]
-- [perf] trace: Only insert blank duration bracket when tracing syscalls (Jiri Olsa) [1222189]
-- [perf] trace: Support --events foo:bar --no-syscalls (Jiri Olsa) [1222189]
-- [perf] trace: Allow mixing with other events (Jiri Olsa) [1222189]
-- [perf] trace: Handle multiple threads better wrt syscalls being intermixed (Jiri Olsa) [1222189]
-- [perf] trace: Print thread info when following children (Jiri Olsa) [1222189]
-- [perf] list: Place the header text in its right position (Jiri Olsa) [1222189]
-- [perf] tools: Fix a bug of segmentation fault (Jiri Olsa) [1222189]
-- [perf] build: Display make commands on V=1 (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Use tools build framework (Jiri Olsa) [1222189]
-- [perf] tools lib api: Rename libapikfs.a to libapi.a (Jiri Olsa) [1222189]
-- [perf] tools lib api: Use tools build framework (Jiri Olsa) [1222189]
-- [perf] build: Add build documentation (Jiri Olsa) [1222189]
-- [perf] build: Remove PERF-CFLAGS file (Jiri Olsa) [1222189]
-- [perf] build: Remove uneeded variables (Jiri Olsa) [1222189]
-- [perf] build: Remove directory dependency rules (Jiri Olsa) [1222189]
-- [perf] build: Add single target build framework support (Jiri Olsa) [1222189]
-- [perf] build: Add arch sparc objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch sh objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch s390 objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch powerpc objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch arm64 objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch arm objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch x86 objects building (Jiri Olsa) [1222189]
-- [perf] build: Add perf.o object building (Jiri Olsa) [1222189]
-- [perf] build: Add zlib objects building (Jiri Olsa) [1222189]
-- [perf] build: Add perf regs objects building (Jiri Olsa) [1222189]
-- [perf] build: Add scripts objects building (Jiri Olsa) [1222189]
-- [perf] build: Add gtk objects building (Jiri Olsa) [1222189]
-- [perf] build: Add slang objects building (Jiri Olsa) [1222189]
-- [perf] build: Add ui objects building (Jiri Olsa) [1222189]
-- [perf] build: Add dwarf unwind objects building (Jiri Olsa) [1222189]
-- [perf] build: Add dwarf objects building (Jiri Olsa) [1222189]
-- [perf] build: Add probe objects building (Jiri Olsa) [1222189]
-- [perf] build: Add libperf objects building (Jiri Olsa) [1222189]
-- [perf] build: Add builtin objects building (Jiri Olsa) [1222189]
-- [perf] build: Add tests objects building (Jiri Olsa) [1222189]
-- [perf] build: Add bench objects building (Jiri Olsa) [1222189]
-- [perf] build: Disable make's built-in rules (Jiri Olsa) [1222189]
-- [perf] tools: Remove api fs object from python build (Jiri Olsa) [1222189]
-- [perf] tools build: Add subdir support (Jiri Olsa) [1222189]
-- [perf] tools build: Add detected config support (Jiri Olsa) [1222189]
-- [perf] tools build: Add new build support (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Consolidate .build-id cache path generators (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Remove unneeded debugdir parameters (Jiri Olsa) [1222189]
-- [perf] symbols: Define STT_GNU_IFUNC for glibc 2.9 and older (Jiri Olsa) [1222189]
-- [perf] tools: Make perf aware of tracefs (Jiri Olsa) [1222189]
-- [perf] tools lib api fs: Add {tracefs, debugfs}_configured() functions (Jiri Olsa) [1222189]
-- [perf] tools lib api debugfs: Add DEBUGFS_DEFAULT_PATH macro (Jiri Olsa) [1222189]
-- [perf] tools lib api fs: Add tracefs mount helper functions (Jiri Olsa) [1222189]
-- [perf] tools lib fs: Add helper to find mounted file systems (Jiri Olsa) [1222189]
-- [perf] tools: Do not check debugfs MAGIC for tracing files (Jiri Olsa) [1222189]
-- [perf] evlist: Fix typo in comment (Jiri Olsa) [1222189]
-- [perf] trace: No need to enable evsels for workload started from perf (Jiri Olsa) [1222189]
-- [perf] tools: Introduce event_format__fprintf method (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Introduce trace_seq_do_fprintf function (Jiri Olsa) [1222189]
-- [perf] symbols: debuglink should take symfs option into account (Jiri Olsa) [1222189]
-- [perf] symbols: Ignore mapping symbols on aarch64 (Jiri Olsa) [1222189]
-- [perf] probe: Update man page (Jiri Olsa) [1222189]
-- [perf] probe: Fix to handle optimized not-inlined functions (Jiri Olsa) [1222189]
-- [perf] tools: Fix a dso open fail message (Jiri Olsa) [1222189]
-- [perf] tests: Do not rely on dso__data_read_offset() to open dso (Jiri Olsa) [1222189]
-- [perf] test: Fix dso cache testcase (Jiri Olsa) [1222189]
-- [perf] tools: Construct LBR call chain (Jiri Olsa) [1222189]
-- [perf] tools: Enable LBR call stack support (Jiri Olsa) [1222189]
-- [perf] treewide: Fix typo in printk messages (Jiri Olsa) [1222189]
-- [perf] annotate: Fix fallback to unparsed disassembler line (Jiri Olsa) [1222189]
-- [perf] bench: Add -r all so that you can run all mem* routines (Jiri Olsa) [1222189]
-- [perf] bench: Carve out mem routine benchmarking (Jiri Olsa) [1222189]
-- [perf] x86/intel/uncore: Move PCI IDs for IMC to uncore driver (Jiri Olsa) [1222189]
-- [perf] x86/intel/uncore: Add support for Intel Haswell ULT (lower power Mobile Processor) IMC uncore PMUs (Jiri Olsa) [1222189]
-- [perf] x86/intel: Add cpu_(prepare|starting|dying) for core_pmu (Jiri Olsa) [1222189]
-- [perf] x86/intel: Add Broadwell support for the LBR callstack (Jiri Olsa) [1222189]
-- [perf] x86/intel/rapl: Fix energy counter measurements but supporing per domain energy units (Jiri Olsa) [1222189]
-- [perf] x86/intel: Fix Core2, Atom, NHM, WSM cycles:pp events (Jiri Olsa) [1222189]
-- [perf] Fix racy group access (Jiri Olsa) [1222189]
-- [perf] x86: Remove redundant calls to perf_pmu_{dis|en}able() (Jiri Olsa) [1222189]
-- [perf] Remove type specific target pointers (Jiri Olsa) [1222189]
-- [perf] x86/intel: Support task events with Intel CQM (Jiri Olsa) [1222189]
-- [perf] x86/intel: Add Intel Cache QoS Monitoring support (Jiri Olsa) [1222189]
-- [perf] Move cgroup init before PMU ->event_init() (Jiri Olsa) [1222189]
-- [perf] Add ->count() function to read per-package counters (Jiri Olsa) [1222189]
-- [perf] Make perf_cgroup_from_task() global (Jiri Olsa) [1222189]
-- [perf]  powerpc: Fix up flush_branch_stack() users (Jiri Olsa) [1222189]
-- [perf] x86/intel: Expose LBR callstack to user space tooling (Jiri Olsa) [1222189]
-- [perf] x86/intel: Discard zero length call entries in LBR call stack (Jiri Olsa) [1222189]
-- [perf] x86/intel: Disable FREEZE_LBRS_ON_PMI when LBR operates in callstack mode (Jiri Olsa) [1222189]
-- [perf] x86/intel: Re-organize code that implicitly enables LBR/PEBS (Jiri Olsa) [1222189]
-- [perf] Simplify the branch stack check (Jiri Olsa) [1222189]
-- [perf] x86/intel: Save/restore LBR stack during context switch (Jiri Olsa) [1222189]
-- [perf] x86/intel: Track number of events that use the LBR callstack (Jiri Olsa) [1222189]
-- [perf] x86/intel: Allocate space for storing LBR stack (Jiri Olsa) [1222189]
-- [perf] Always switch pmu specific data during context switch (Jiri Olsa) [1222189]
-- [perf] Add pmu specific data for perf task context (Jiri Olsa) [1222189]
-- [perf] x86/intel: Add basic Haswell LBR call stack support (Jiri Olsa) [1222189]
-- [perf] x86/intel: Use context switch callback to flush LBR stack (Jiri Olsa) [1222189]
-- [perf] Introduce pmu context switch callback (Jiri Olsa) [1222189]
-- [perf] x86/intel: Reduce lbr_sel_map[] size (Jiri Olsa) [1222189]
-- [perf] x86/amd/ibs: Convert force_ibs_eilvt_setup() to void (Jiri Olsa) [1222189]
-- [perf] Update userspace page info for software event (Jiri Olsa) [1222189]
-- [perf] Update shadow timestamp before add event (Jiri Olsa) [1222189]
-- [perf] x86/asm/entry: Explicitly optimize vm86 handling in code_segment_base() (Jiri Olsa) [1222189]
-- [perf] Fix context leak in put_event() (Jiri Olsa) [1222189]
-- [perf] x86/asm/entry: Fix incorrect TIF_IA32 check in code_segment_base() (Jiri Olsa) [1222189]
-
-* Tue May 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-255.el7]
-- [pci] Keep original resource if we fail to expand it (Myron Stowe) [1221057]
-- [x86] Mark Intel Broadwell-EP processor as supported (Steve Best) [1131674]
-- [s390] pci: reenable per default (Hendrik Brueckner) [1200410]
-- [kernel] ftrace: Have control op function callback only trace when RCU is watching (Jiri Olsa) [1197062]
-- [kernel] rcu: Do not trace rcu_is_watching() functions (Jiri Olsa) [1197062]
-- [kernel] rcu: Consistent rcu_is_watching() naming (Jiri Olsa) [1197062]
-- [kernel] rcu: Is it safe to enter an RCU read-side critical section? (Jiri Olsa) [1197062]
-- [kernel] time: Revert to calling clock_was_set_delayed() while in irq context (Prarit Bhargava) [1222767]
-- [kernel] tracing: Disable tracing on warning (Josh Poimboeuf) [1149340]
-- [netdrv] xen-netfront: use correct linear area after linearizing an skb (Vitaly Kuznetsov) [1144931]
-- [netdrv] xen-netfront: Remove BUGs on paged skb data which crosses a page boundary (Vitaly Kuznetsov) [1144931]
-- [netdrv] xen-netfront: Fix handling packets on compound pages with skb_linearize (Vitaly Kuznetsov) [1144931]
-- [powercap] rapl: add IDs for future Xeon CPUs (Steve Best) [1179961]
-- [thermal] powerclamp: add ids for future xeon cpus (Steve Best) [1179953]
-- [powerpc] powernv: Use _GLOBAL_TOC for opal wrappers (Steve Best) [1223481]
-- [powerpc] pseries: Simplify check for suspendability during suspend/migration (Gustavo Duarte) [1207295]
-- [powerpc] pseries: Introduce api_version to migration sysfs interface (Gustavo Duarte) [1207295]
-- [powerpc] pseries: Little endian fixes for post mobility device tree update (Gustavo Duarte) [1207295]
-- [powerpc] book3s: Fix partial invalidation of TLBs in MCE code (Steve Best) [1221090]
-- [powerpc] book3s: Fix the MCE code to use CONFIG_KVM_BOOK3S_64_HANDLER (Steve Best) [1221090]
-- [powerpc] powernv: Separate function for OPAL IRQ setup (Steve Best) [1221071]
-- [powerpc] powernv: Remove "opal" prefix from pr_xxx()s (Steve Best) [1221071]
-- [powerpc] powernv: Support OPAL requested heartbeat (Steve Best) [1221071]
-
-* Wed May 20 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-254.el7]
-- [fs] aio: Skip timer for io_getevents if timeout=0 (Carlos Maiolino) [1161535]
-- [fs] proc: fix page_size limit of proc pid cmdline fix (Jarod Wilson) [1193998]
-- [fs] proc: fix PAGE_SIZE limit of /proc/$PID/cmdline (Jarod Wilson) [1193998]
-- [hv] remove the per-channel workqueue (Vitaly Kuznetsov) [1203682]
-- [hv] don't schedule new works in vmbus_onoffer()/vmbus_onoffer_rescind() (Vitaly Kuznetsov) [1203682]
-- [hv] run non-blocking message handlers in the dispatch tasklet (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Fix a bug in rescind processing in vmbus_close_internal() (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Cleanup vmbus_close_internal() (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: missing curly braces in vmbus_process_offer() (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Perform device register in the per-channel work element (Vitaly Kuznetsov) [1203682]
-- [hv] util: On device remove, close the channel after de-initializing the service (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Remove the channel from the channel list(s) on failure (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Handle both rescind and offer messages in the same context (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Introduce a function to remove a rescinded offer (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Properly handle child device remove (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: serialize Offer and Rescind offer (Vitaly Kuznetsov) [1203682]
-- [hv] net: Add support for vNIC hot removal (Vitaly Kuznetsov) [1203682]
-- [hv] rename sc_lock to the more generic lock (Vitaly Kuznetsov) [1203682]
-- [hv] check vmbus_device_create() return value in vmbus_process_offer() (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Fix a race condition when unregistering a device (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: prevent cpu offlining on newer hypervisors (Vitaly Kuznetsov) [1167380]
-- [netdrv] qlge: Fix qlge_update_hw_vlan_features to handle if interface is down (Chad Dupuis) [1164114]
-- [libata] fixup oops in ata_eh_link_report() (Ewan Milne) [1220144]
-- [kernel] watchdog: update watchdog_thresh properly (Ulrich Obergfell) [1216074]
-- [kernel] watchdog: update watchdog attributes atomically (Ulrich Obergfell) [1216074]
-- [cpufreq] powernv: Report cpu frequency throttling (Gustavo Duarte) [1218970]
-- [powerpc] powernv: Fix the overflow of OPAL message notifiers head array (Steve Best) [1221089]
-- [powerpc] powernv: Add OPAL message notifier unregister function (Steve Best) [1221089]
-- [powerpc] powernv: Add pstore support on powernv (Steve Best) [1220165]
-- [powerpc] pstore: Add pstore type id for PPC64 opal nvram partition (Steve Best) [1220165]
-- [powerpc] nvram: Move generic code for nvram and pstore (Steve Best) [1220165]
-- [powerpc] powernv: Handle compound PE in config accessors (Steve Best) [1211946]
-- [powerpc] powernv: Handle compound PE for EEH (Steve Best) [1211946]
-- [powerpc] powernv: Handle compound PE (Steve Best) [1211946]
-- [powerpc] powernv: Split ioda_eeh_get_state() (Steve Best) [1211946]
-- [powerpc] powernv: Allow to freeze PE (Steve Best) [1211946]
-- [powerpc] powernv: Enable M64 aperatus for PHB3 (Steve Best) [1211946]
-- [infiniband] qib: Add blank line after declaration (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Fix checkpatch warnings (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Fix potential NULL d_inode dereference (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Fix sizeof checkpatch warnings (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Add support for the new QMH7360 card (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Do not write EEPROM (Doug Ledford) [1185097 1188513]
-- [infiniband] ipoib: drop mcast_mutex usage (Doug Ledford) [1183881]
-- [infiniband] ipoib: deserialize multicast joins (Doug Ledford) [1183881]
-- [infiniband] ipoib: fix MCAST_FLAG_BUSY usage (Doug Ledford) [1183881]
-- [infiniband] ipoib: No longer use flush as a parameter (Doug Ledford) [1183881]
-- [infiniband] ipoib: Use dedicated workqueues per interface (Doug Ledford) [1183881]
-- [infiniband] ipoib: Make the carrier_on_task race aware (Doug Ledford) [1183881]
-- [infiniband] ipoib: Consolidate rtnl_lock tasks in workqueue (Doug Ledford) [1183881]
-- [infiniband] ipoib: change init sequence ordering (Doug Ledford) [1183881]
-- [infiniband] ipoib: factor out ah flushing (Doug Ledford) [1183881]
-- [infiniband] ipoib: Remove unnecessary port query (Doug Ledford) [1183881]
-
-* Fri May 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-253.el7]
-- [block] scsi-mq: fix requests that use a separate CDB buffer (Jeff Moyer) [1209624]
-- [block] Fix bug in blk_rq_merge_ok (Jeff Moyer) [1209624]
-- [block] blkmq: Fix NULL pointer deref when all reserved tags in (Jeff Moyer) [1209624]
-- [block] blk-mq: fix double-free in error path (Jeff Moyer) [1209624]
-- [block] prevent request-to-request merging with gaps if not allowed (Jeff Moyer) [1209624]
-- [block] blk-mq: fix false negative out-of-tags condition (Jeff Moyer) [1209624]
-- [block] blk-mq: get rid of ->cmd_size in the hardware queue (Jeff Moyer) [1209624]
-- [block] revert "blk-mq: Micro-optimize bt_get()" (Jeff Moyer) [1209624]
-- [block] blk-mq: Use all available hardware queues (Jeff Moyer) [1209624]
-- [block] blk-mq: Micro-optimize bt_get() (Jeff Moyer) [1209624]
-- [block] blk-mq: Fix a race between bt_clear_tag() and bt_get() (Jeff Moyer) [1209624]
-- [block] blk-mq: Avoid that __bt_get_word() wraps multiple times (Jeff Moyer) [1209624]
-- [block] blk-mq: re-check for available tags after running the hardware queue (Jeff Moyer) [1209624]
-- [block] blk-mq: fix hang in bt_get() (Jeff Moyer) [1209624]
-- [block] blk-mq: cleanup tag free handling (Jeff Moyer) [1209624]
-- [block] blk-mq: use 'nr_cpu_ids' as highest CPU ID count for hwq <-> cpu map (Jeff Moyer) [1209624]
-- [block] Fix computation of merged request priority (Jeff Moyer) [1209624]
-- [block] Return short read or 0 at end of a raw device, not EIO (Jeff Moyer) [1209624]
-- [block] revert "block: all blk-mq requests are tagged" (Jeff Moyer) [1209624]
-- [block] fix wrong error return in elevator_init() (Jeff Moyer) [1209624]
-- [block] scsi: Fix error handling in SCSI_IOCTL_SEND_COMMAND (Jeff Moyer) [1209624]
-- [block] remove artifical max_hw_sectors cap (Jeff Moyer) [1209624]
-- [block] include func name in __get_request prints (Jeff Moyer) [1209624]
-- [block] make blk_update_request print prefix match ratelimited prefix (Jeff Moyer) [1209624]
-- [block] include/linux/blkdev.h: use NULL instead of zero (Jeff Moyer) [1209624]
-- [block] block_dev: implement readpages() to optimize sequential read (Jeff Moyer) [1209624]
-- [block] blk-mq: Make bt_clear_tag() easier to read (Jeff Moyer) [1209624]
-- [block] blk-mq: fix potential hang if rolling wakeup depth is too high (Jeff Moyer) [1209624]
-- [block] misplaced rq_complete tracepoint (Jeff Moyer) [1209624]
-- [block] bdi: reimplement bdev_inode_switch_bdi() (Jeff Moyer) [1209624]
-- [block] bsg: fix potential error pointer dereference (Jeff Moyer) [1209624]
-- [block] blk-mq: add BLK_MQ_F_DEFER_ISSUE support flag (Jeff Moyer) [1209624]
-- [block] blk-mq: put blk_queue_rq_timeout together in blk_mq_init_queue() (Jeff Moyer) [1209624]
-- [block] remove redundant check about 'set->nr_hw_queues' in blk_mq_alloc_tag_set() (Jeff Moyer) [1209624]
-- [block] blk-mq: release mq's kobjects in blk_release_queue() (Jeff Moyer) [1209624]
-- [block] blk-mq: End unstarted requests on a dying queue (Jeff Moyer) [1209624]
-- [block] blk-mq: Allow requests to never expire (Jeff Moyer) [1209624]
-- [block] blk-mq: Add helper to abort requeued requests (Jeff Moyer) [1209624]
-- [block] blk-mq: Let drivers cancel requeue_work (Jeff Moyer) [1209624]
-- [block] blk-mq: Export if requests were started (Jeff Moyer) [1209624]
-- [block] blk-mq: Wake tasks entering queue on dying (Jeff Moyer) [1209624]
-- [block] blk-mq: export blk_mq_freeze_queue() (Jeff Moyer) [1209624]
-- [block] wake up waiters when a queue is marked dying (Jeff Moyer) [1209624]
-- [block] blk-mq: Export freeze_unfreeze functions (Jeff Moyer) [1209624]
-- [block] blk-mq: Exit queue on alloc failure (Jeff Moyer) [1209624]
-- [block] blk-mq: prevent unmapped hw queue from being scheduled (Jeff Moyer) [1209624]
-- [block] blk-mq: move the kdump check to blk_mq_alloc_tag_set (Jeff Moyer) [1209624]
-- [block] blk-mq: handle the single queue case in blk_mq_hctx_next_cpu (Jeff Moyer) [1209624]
-- [block] blk-mq: add blk_mq_free_hctx_request() (Jeff Moyer) [1209624]
-- [block] blk-mq: export blk_mq_free_request() (Jeff Moyer) [1209624]
-- [block] blk-mq: add blk_mq_unique_tag() (Jeff Moyer) [1209624]
-- [block] blk-mq: add a 'list' parameter to ->queue_rq() (Jeff Moyer) [1209624]
-- [block] blk-mq: allocate cpumask on the home node (Jeff Moyer) [1209624]
-- [block] blk-mq: don't wait in blk_mq_queue_enter() if __GFP_WAIT isn't set (Jeff Moyer) [1209624]
-- [block] block, scsi: fixup blk_get_request dead queue scenarios (Jeff Moyer) [1209624]
-- [block] blk-mq: export blk_mq_run_hw_queues (Jeff Moyer) [1209624]
-- [block] blk-mq: make blk_mq_run_queues() static (Jeff Moyer) [1209624]
-- [block] blk-mq: use get_cpu/put_cpu instead of preempt_disable_preempt_enable (Jeff Moyer) [1209624]
-- [block] blk-mq: call preempt_disable/enable in blk_mq_run_hw_queue, and only if needed (Jeff Moyer) [1209624]
-- [block] blk-mq: add blk_mq_init_allocated_queue and export blk_mq_register_disk (Jeff Moyer) [1209624]
-- [block] blk-mq: fix use of incorrect goto label in blk_mq_init_queue error path (Jeff Moyer) [1209624]
-- [block] blk-mq: support per-distpatch_queue flush machinery (Jeff Moyer) [1209624]
-- [block] introduce 'blk_mq_ctx' parameter to blk_get_flush_queue (Jeff Moyer) [1209624]
-- [block] flush: avoid to figure out flush queue unnecessarily (Jeff Moyer) [1209624]
-- [block] remove blk_init_flush() and its pair (Jeff Moyer) [1209624]
-- [block] introduce blk_flush_queue to drive flush machinery (Jeff Moyer) [1209624]
-- [block] avoid to use q->flush_rq directly (Jeff Moyer) [1209624]
-- [block] move flush initialization to blk_flush_init (Jeff Moyer) [1209624]
-- [block] introduce blk_init_flush and its pair (Jeff Moyer) [1209624]
-- [block] blk-mq: allocate flush_rq in blk_mq_init_flush() (Jeff Moyer) [1209624]
-- [block] blk-mq: handle failure path for initializing hctx (Jeff Moyer) [1209624]
-- [block] blk-mq: make mq_queue_reinit_notify() freeze queues in parallel (Jeff Moyer) [1209624]
-- [block] blk-mq, percpu-ref: start q->mq_usage_counter in atomic mode (Jeff Moyer) [1209624]
-- [block] blk-mq: blk_mq_freeze_queue() should allow nesting (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_ref_is_dying() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: remove unnecessary ACCESS_ONCE() in percpu_ref_tryget_live() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: fix DEAD flag contamination of percpu pointer (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: Replace smp_read_barrier_depends() with lockless_dereference() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: make INIT_ATOMIC and switch_to_atomic() sticky (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add PERCPU_REF_INIT_* flags (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: decouple switching to percpu mode and reinit (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: decouple switching to atomic mode and killing (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add PCPU_REF_DEAD (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: rename things to prepare for decoupling percpu_atomic mode switch (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: replace pcpu_ prefix with percpu_ (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: minor code and comment updates (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: relocate percpu_ref_reinit() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: make percpu_ref based on longs instead of ints (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add @gfp to percpu_ref_init() (Jeff Moyer) [1209624]
-- [block] blk-mq: use percpu_ref for mq usage count (Jeff Moyer) [1209624]
-- [lib] percpu-counter: add @gfp to percpu_counter_init() (Jeff Moyer) [1209624]
-- [lib] percpu-counter: make percpu_counters_lock irq-safe (Jeff Moyer) [1209624]
-- [mm] percpu: implement asynchronous chunk population (Jeff Moyer) [1209624]
-- [mm] percpu: rename pcpu_reclaim_work to pcpu_balance_work (Jeff Moyer) [1209624]
-- [mm] percpu: implmeent pcpu_nr_empty_pop_pages and chunk->nr_populated (Jeff Moyer) [1209624]
-- [mm] percpu: make sure chunk->map array has available space (Jeff Moyer) [1209624]
-- [mm] percpu: implement [__]alloc_percpu_gfp() (Jeff Moyer) [1209624]
-- [mm] percpu: indent the population block in pcpu_alloc() (Jeff Moyer) [1209624]
-- [mm] percpu: make pcpu_alloc_area() capable of allocating only from populated areas (Jeff Moyer) [1209624]
-- [mm] percpu: restructure locking (Jeff Moyer) [1209624]
-- [mm] percpu: make percpu-km set chunk->populated bitmap properly (Jeff Moyer) [1209624]
-- [mm] percpu: move region iterations out of pcpu_[de]populate_chunk() (Jeff Moyer) [1209624]
-- [mm] percpu: move common parts out of pcpu_[de]populate_chunk() (Jeff Moyer) [1209624]
-- [mm] percpu: remove @may_alloc from pcpu_get_pages() (Jeff Moyer) [1209624]
-- [mm] percpu: remove the usage of separate populated bitmap in percpu-vm (Jeff Moyer) [1209624]
-- [mm] percpu: perform tlb flush after pcpu_map_pages() failure (Jeff Moyer) [1209624]
-- [mm] percpu: fix pcpu_alloc_pages() failure path (Jeff Moyer) [1209624]
-- [mm] percpu: Use ALIGN macro instead of hand coding alignment calculation (Jeff Moyer) [1209624]
-- [mm] percpu: make pcpu_alloc_chunk() use pcpu_mem_free() instead of kfree() (Jeff Moyer) [1209624]
-- [mm] percpu: renew the max_contig if we merge the head and previous block (Jeff Moyer) [1209624]
-- [mm] percpu: allocation size should be even (Jeff Moyer) [1209624]
-- [mm] percpu: speed alloc_pcpu_area() up (Jeff Moyer) [1209624]
-- [mm] percpu: store offsets instead of lengths in ->map[] (Jeff Moyer) [1209624]
-- [mm] percpu: fold pcpu_split_block() into the only caller (Jeff Moyer) [1209624]
-- [mm] revert "percpu scalability fixes" (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: improve WARN messages (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: fix synchronize_rcu() in comments (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_ref_reinit() and percpu_ref_is_zero() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: require percpu_ref to be exited explicitly (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: use unsigned long for pcpu_count pointer (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add helpers for ->percpu_count accesses (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: one bit is enough for REF_STATUS (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: fix usage of this_cpu_ops (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_ref_tryget() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: rename percpu_ref_tryget() to percpu_ref_tryget_live() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: Add a WARN() for ref going negative (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: export symbols (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: use RCU-sched insted of normal RCU (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_tryget() along with percpu_ref_kill_and_confirm() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_ref_cancel_init() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add __must_check to percpu_ref_init() and don't use ACCESS_ONCE() in percpu_ref_kill_rcu() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: cosmetic updates (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: consistently use plain (non-sched) RCU (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: Don't use silly cmpxchg() (Jeff Moyer) [1209624]
-- [lib] percpu: implement generic percpu refcounting (Jeff Moyer) [1209624]
-
-* Thu May 14 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-252.el7]
-- [powercap] rapl: Add support for Intel Skylake processors (Steve Best) [1169598]
-- [tools] turbostat: support additional Broadwell model (Steve Best) [1189945]
-- [x86] kernel: execution in the early microcode loader (Jacob Tanenbaum) [1206830] {CVE-2015-2666}
-- [x86] kernel: Update the UV APIC HUB check (Frank Ramsay) [1215695]
-- [x86] kernel: Update the UV APIC driver check (Frank Ramsay) [1215695]
-- [x86] kernel: Update the APIC UV OEM check (Frank Ramsay) [1215695]
-- [mfd] rtsx: Clear hardware PFM mode in rtl8411b (Jarod Wilson) [1220506]
-- [mfd] rtsx: Using pcr_dbg replace dev_dbg (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add support for rts525A (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add support for rts524A (Jarod Wilson) [1220506]
-- [mfd] rtsx: Remove LCTLR defination (Jarod Wilson) [1220506]
-- [mfd] rtsx: Update phy register (Jarod Wilson) [1220506]
-- [mfd] rtsx: Update driving settings (Jarod Wilson) [1220506]
-- [mfd] rtsx: Update PETXCFG address (Jarod Wilson) [1220506]
-- [mfd] rtsx: Place register address and values togather (Jarod Wilson) [1220506]
-- [mfd] rtsx: Replace TAB by SPC after #define (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add func to split u32 into register (Jarod Wilson) [1220506]
-- [mfd] rtsx: Fix PM suspend for 5227 & 5249 (Jarod Wilson) [1220506]
-- [mfd] rtsx: Fix build warnings for !PM (Jarod Wilson) [1220506]
-- [mfd] rtsx_pcr: Fix MSI enable error handling (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add dma transfer function (Jarod Wilson) [1220506]
-- [mfd] rtsx: modify phase searching method for tuning (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add support for card reader rtl8402 (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add set pull control macro and simplify rtl8411 (Jarod Wilson) [1220506]
-- [mfd] rtsx_pcr: Disable interrupts before cancelling delayed works (Jarod Wilson) [1220506]
-- [mfd] mc12xx-i2c: rtsx_pcr: ti-ssp: Remove redundant dev_set_drvdata (Jarod Wilson) [1220506]
-- [mfd] rtsx: Modify rts5249_optimize_phy (Jarod Wilson) [1220506]
-- [acpi] lpss: add LPSS device for Wildcat Point PCH (Prarit Bhargava) [1208093]
-- [acpi] lpss: provide con_id for the clkdev (Prarit Bhargava) [1178891]
-- [acpi] lpss: check the result of ioremap() (Prarit Bhargava) [1178891]
-- [acpi] lpss: allow to use specific PM domain during ->probe() (Prarit Bhargava) [1178891]
-- [acpi] lpss: add all LPSS devices to the specific power domain (Prarit Bhargava) [1178891]
-- [acpi] lpss: not using UART RTS override with Auto Flow Control (Prarit Bhargava) [1178891]
-- [acpi] lpss: disable async suspend/resume of LPSS devices (Prarit Bhargava) [1178891]
-- [acpi] clk: fractional-divider: cast parent_rate to u64 before multiplying (Prarit Bhargava) [1178891]
-- [acpi] lpss: complete PM entries for LPSS power domain (Prarit Bhargava) [1178891]
-- [acpi] lpss: drop clkdev_name member from lpss_device_desc (Prarit Bhargava) [1178891]
-- [acpi] lpss: introduce flags (Prarit Bhargava) [1178891]
-- [acpi] lpss: remove struct lpss_shared_clock (Prarit Bhargava) [1178891]
-- [acpi] lpss: Take I2C host controllers out of reset (Prarit Bhargava) [1178891]
-- [acpi] scan: always register ACPI LPSS scan handler (Prarit Bhargava) [1178891]
-- [acpi] lpss: support for fractional divider clock (Prarit Bhargava) [1178891]
-- [acpi] clk: new basic clk type for fractional divider (Prarit Bhargava) [1178891]
-- [acpi] clk: wrap I/O access for improved portability (Prarit Bhargava) [1178891]
-- [acpi] lpss: custom power domain for LPSS (Prarit Bhargava) [1178891]
-- [acpi] lpss: Enable async suspend/resume of LPSS devices (Prarit Bhargava) [1178891]
-- [acpi] lpss: Support for device latency tolerance PM QoS (Prarit Bhargava) [1178891]
-- [acpi] scan: Add bind/unbind callbacks to struct acpi_scan_handler (Prarit Bhargava) [1178891]
-- [acpi] pm: qos: Introcuce latency tolerance device PM QoS type (Prarit Bhargava) [1178891]
-- [acpi] lpss: fix UART Auto Flow Control (Prarit Bhargava) [1178891]
-- [acpi] enable CONFIG_X86_INTEL_LPSS (Prarit Bhargava) [1178891]
-- [security] selinux/nlmsg: add a build time check for rtnl/xfrm cmds (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_MAPPING (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_MIGRATE (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_REPORT (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_[NEW|GET]SADINFO (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_GETSPDINFO (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_NEWSPDINFO (Alexander Duyck) [1210224]
-
-* Mon May 11 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-251.el7]
-- [x86] perf: Add INST_RETIRED.ALL workarounds (Jiri Olsa) [1086843]
-- [x86] perf: Add Broadwell core support (Jiri Olsa) [1086843]
-- [x86] perf: Add new cache events table for Haswell (Jiri Olsa) [1086843]
-- [x86] perf/uncore: Delete an unnecessary check before pci_dev_put() call (Jiri Olsa) [1176340]
-- [x86] perf/uncore/hsw-ep: Handle systems with only two SBOXes (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add scaling units to the EP iMC events (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix boot crash on SBOX PMU on Haswell-EP (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix IRP uncore register offsets on Haswell EP (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix minor race in box set up (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Update support for client uncore IMC PMU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix PCU filter setup for Sandy/Ivy/Haswell EP (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add missing cbox filter flags on IvyBridge-EP uncore driver (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Register the PMU only if the uncore pci device exists (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add Haswell-EP uncore support (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Rename IvyTown to IvyBridge-EP (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Export basic memory events for IVT IMC PMU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix coccinelle warnings (Jiri Olsa) [1176340]
-- [x86] perf/uncore: move NHM-EX/WSM-EX specific code to seperate file (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Move SNB/IVB-EP specific code to seperate file (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Move NHM/SNB/IVB specific code to seperate file (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Declare some functions and variables (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix SNB-EP/IVT Cbox filter mappings (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix missing end markers for SNB/IVB/HSW IMC PMU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix compilation warning in snb_uncore_imc_init_box() (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add __init for uncore_cpumask_init() (Jiri Olsa) [1176340]
-- [x86] perf/uncore: use MiB unit for events for SNB/IVB/HSW IMC (Jiri Olsa) [1176340]
-- [x86] perf/uncore: add hrtimer to SNB uncore IMC PMU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: add SNB/IVB/HSW client uncore memory controller support (Jiri Olsa) [1176340]
-- [x86] perf/uncore: move uncore_event_to_box() and uncore_pmu_to_box() (Jiri Olsa) [1176340]
-- [x86] perf/uncore: make hrtimer timeout configurable per box (Jiri Olsa) [1176340]
-- [x86] perf/uncore: add PCI ids for SNB/IVB/HSW IMC (Jiri Olsa) [1176340]
-- [x86] perf/uncore: add ability to customize pmu callbacks (Jiri Olsa) [1176340]
-- [x86] perf/uncore: fix initialization of cpumask (Jiri Olsa) [1176340]
-- [x86] perf: Add Ivy Bridge-EP uncore IRP box support (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add filter support for IvyBridge-EP QPI boxes (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Don't use smp_processor_id() in validate_group() (Jiri Olsa) [1176340]
-- [x86] perf: Fix uncore PCI fixed counter handling (Jiri Olsa) [1176340]
-- [x86] perf: Convert kmalloc_node(...GFP_ZERO...) to kzalloc_node() (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Enable EV_SEL_EXT bit for PCU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add filter support for QPI boxes (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add auxiliary pci device support (Jiri Olsa) [1176340]
-- [x86] perf: Fix sparse warning (Jiri Olsa) [1176340]
-- [x86] perf: Reduce stack usage of x86_schedule_events() (Jiri Olsa) [1176340]
-- [x86] perf: Prevent some shift wrapping bugs in the Intel uncore driver (Jiri Olsa) [1176340]
-- [perf] tools: Make sparc64 arch point to sparc (Jiri Olsa) [1209607]
-- [perf] symbols: Define EM_AARCH64 for older OSes (Jiri Olsa) [1209607]
-- [perf] top: Fix SIGBUS on sparc64 (Jiri Olsa) [1209607]
-- [perf] tools: Fix probing for PERF_FLAG_FD_CLOEXEC flag (Jiri Olsa) [1209607]
-- [perf] tools: Fix pthread_attr_setaffinity_np build error (Jiri Olsa) [1209607]
-- [perf] tools: Define _GNU_SOURCE on pthread_attr_setaffinity_np feature check (Jiri Olsa) [1209607]
-- [perf] bench: Fix order of arguments to memcpy_alloc_mem (Jiri Olsa) [1209607]
-- [perf] symbols: Convert lseek + read to pread (Jiri Olsa) [1209607]
-- [perf] tools: Use perf_data_file__fd() consistently (Jiri Olsa) [1209607]
-- [perf] symbols: Support to read compressed module from build-id cache (Jiri Olsa) [1209607]
-- [perf] evsel: Set attr.task bit for a tracking event (Jiri Olsa) [1209607]
-- [perf] header: Set header version correctly (Jiri Olsa) [1209607]
-- [perf] record: Show precise number of samples (Jiri Olsa) [1209607]
-- [perf] tools: Do not use __perf_session__process_events() directly (Jiri Olsa) [1209607]
-- [perf] callchain: Cache eh/debug frame offset for dwarf unwind (Jiri Olsa) [1209607]
-- [perf] tools: Provide stub for missing pthread_attr_setaffinity_np (Jiri Olsa) [1209607]
-- [perf] evsel: Don't rely on malloc working for sz 0 (Jiri Olsa) [1209607]
-- [perf] tools: add hardware breakpoint bp_len test cases (Jiri Olsa) [1209607]
-- [perf] tools: allow user to specify hardware breakpoint bp_len (Jiri Olsa) [1209607]
-- [perf] tools lib traceevent: Add support for IP address formats (Jiri Olsa) [1209607]
-- [perf] ui/tui: Show fatal error message only if exists (Jiri Olsa) [1209607]
-- [perf] tests: Fix typo in sample-parsing.c (Jiri Olsa) [1209607]
-- [perf] tools lib fs debugfs: Check if debugfs is mounted when handling ENOENT (Jiri Olsa) [1209607]
-- [perf] tools lib fs debugfs: Introduce debugfs__strerror_open_tp (Jiri Olsa) [1209607]
-- [perf] trace: Fix error reporting for evsel pgfault constructor (Jiri Olsa) [1209607]
-- [perf] tools lib fs: Pass filename to debugfs__strerror_open (Jiri Olsa) [1209607]
-- [perf] tools lib fs: Adopt debugfs open strerrno method (Jiri Olsa) [1209607]
-- [perf] diff: Fix -o/--order option behavior (Jiri Olsa) [1209607]
-- [perf] diff: Fix output ordering to honor next column (Jiri Olsa) [1209607]
-- [perf] tools: Pass struct perf_hpp_fmt to its callbacks (Jiri Olsa) [1209607]
-- [perf] diff: Introduce fmt_to_data_file() helper (Jiri Olsa) [1209607]
-- [perf] diff: Print diff result more precisely (Jiri Olsa) [1209607]
-- [perf] diff: Get rid of hists__compute_resort() (Jiri Olsa) [1209607]
-- [perf] tools: Allow use of an exclusive option more than once (Jiri Olsa) [1209607]
-- [perf] tools: Document parameterized and symbolic events (Jiri Olsa) [1209607]
-- [perf] tools: Extend format_alias() to include event parameters (Jiri Olsa) [1209607]
-- [perf] tools: Support parsing parameterized events (Jiri Olsa) [1209607]
-- [perf] tools: Remove some unused functions from color.c (Jiri Olsa) [1209607]
-- [perf] report: Get rid of report__inc_stat() (Jiri Olsa) [1209607]
-- [perf] hists: Introduce function for deleting/removing hist_entry (Jiri Olsa) [1209607]
-- [perf] hists: Rename hist_entry__free to __delete (Jiri Olsa) [1209607]
-- [perf] tools: Remove EOL whitespaces (Jiri Olsa) [1209607]
-- [perf] mem: Move the mem_operations global to struct perf_mem (Jiri Olsa) [1209607]
-- [perf] mem: Enable sampling loads and stores simultaneously (Jiri Olsa) [1209607]
-- [perf] probe: Fix probing kretprobes (Jiri Olsa) [1209607]
-- [perf] symbols: Introduce 'for' method to iterate over the symbols with a given name (Jiri Olsa) [1209607]
-- [perf] probe: Do not rely on map__load() filter to find symbols (Jiri Olsa) [1209607]
-- [perf] symbols: Introduce method to iterate symbols ordered by name (Jiri Olsa) [1209607]
-- [perf] symbols: Return the first entry with a given name in find_by_name method (Jiri Olsa) [1209607]
-- [perf] annotate: Fix memory leaks in LOCK handling (Jiri Olsa) [1209607]
-- [perf] annotate: Handle ins parsing failures (Jiri Olsa) [1209607]
-- [perf] scripting perl: Force to use stdbool (Jiri Olsa) [1209607]
-- [perf] evlist: Remove extraneous 'was' on error message (Jiri Olsa) [1209607]
-- [perf] tools: Fix segfault for symbol annotation on TUI (Jiri Olsa) [1209607]
-- [perf] test: Fix dwarf unwind using libunwind (Jiri Olsa) [1209607]
-- [perf] tools: Avoid build splat for syscall numbers with uclibc (Jiri Olsa) [1209607]
-- [perf] tools: Elide strlcpy warning with uclibc (Jiri Olsa) [1209607]
-- [perf] tools: Fix statfs.f_type data type mismatch build error with uclibc (Jiri Olsa) [1209607]
-- [perf] machine: Fix __machine__findnew_thread() error path (Jiri Olsa) [1209607]
-- [perf] tools: Fix building error in x86_64 when dwarf unwind is on (Jiri Olsa) [1209607]
-- [perf] probe: Propagate error code when write(2) failed (Jiri Olsa) [1209607]
-- [perf] hists browser: Fix segfault when showing callchain (Jiri Olsa) [1209607]
-- [perf] callchain: Free callchains when hist entries are deleted (Jiri Olsa) [1209607]
-- [perf] hists: Fix children sort key behavior (Jiri Olsa) [1209607]
-- [perf] diff: Fix to sort by baseline field by default (Jiri Olsa) [1209607]
-- [perf] list: Fix --raw-dump option (Jiri Olsa) [1209607]
-- [perf] probe: Fix crash in dwarf_getcfi_elf (Jiri Olsa) [1209607]
-- [perf] probe: Fix to fall back to find probe point in symbols (Jiri Olsa) [1209607]
-- [perf] callchain: Append callchains only when requested (Jiri Olsa) [1209607]
-- [perf] ui/tui: Print backtrace symbols when segfault occurs (Jiri Olsa) [1209607]
-- [perf] report: Show progress bar for output resorting (Jiri Olsa) [1209607]
-- [perf] Fix building warning on ARM 32 (Jiri Olsa) [1209607]
-- [perf] symbols: Fix use after free in filename__read_build_id (Jiri Olsa) [1209607]
-- [perf] evlist: Use roundup_pow_of_two (Jiri Olsa) [1209607]
-- [perf] tools: Make the mmap length autotuning more robust (Jiri Olsa) [1209607]
-- [perf] bitops: Fix signedness of compile-time hweight implementations (Jiri Olsa) [1209607]
-- [perf] tools: Remove bitops/hweight usage of bits in tools/perf (Jiri Olsa) [1209607]
-- [perf] tools: Adopt roundup_pow_of_two (Jiri Olsa) [1209607]
-- [perf] tools: Adopt rounddown_pow_of_two and deps (Jiri Olsa) [1209607]
-- [perf] tools: Adopt fls_long and deps (Jiri Olsa) [1209607]
-- [perf] tools: Move bitops.h from tools/perf/util to tools/ (Jiri Olsa) [1209607]
-- [perf] tools: Introduce asm-generic/bitops.h (Jiri Olsa) [1209607]
-- [perf] tools lib: Move asm-generic/bitops/find.h code to tools/include and tools/lib (Jiri Olsa) [1209607]
-- [perf] tools: Whitespace prep patches for moving bitops.h (Jiri Olsa) [1209607]
-- [perf] tools: Move code originally from asm-generic/atomic.h into tools/include/asm-generic/ (Jiri Olsa) [1209607]
-- [perf] tools: Move code originally from linux/log2.h to tools/include/linux/ (Jiri Olsa) [1209607]
-- [perf] tools: Move __ffs implementation to tools/include/asm-generic/bitops/__ffs.h (Jiri Olsa) [1209607]
-- [perf] evlist: Do not use hard coded value for a mmap_pages default (Jiri Olsa) [1209607]
-- [perf] trace: Let the perf_evlist__mmap autosize the number of pages to use (Jiri Olsa) [1209607]
-- [perf] evlist: Improve the strerror_mmap method (Jiri Olsa) [1209607]
-- [perf] evlist: Clarify sterror_mmap variable names (Jiri Olsa) [1209607]
-- [perf] evlist: Fixup brown paper bag on "hint" for --mmap-pages cmdline arg (Jiri Olsa) [1209607]
-- [perf] trace: Provide a better explanation when mmap fails (Jiri Olsa) [1209607]
-- [perf] evlist: Introduce strerror_mmap method (Jiri Olsa) [1209607]
-- [perf] tools: Use sysctl__read_int instead of ad-hoc copies (Jiri Olsa) [1209607]
-- [perf] tools lib fs: Add sysctl__read_int helper (Jiri Olsa) [1209607]
-- [perf] tools lib fs: Adopt filename__read_int from tools/perf/ (Jiri Olsa) [1209607]
-- [perf] kvm stat live: Mark events as (x86 only) in help output (Jiri Olsa) [1209607]
-- [perf] tests: Fix attr tests size values to cope with machine state on interrupt ABI changes (Jiri Olsa) [1209607]
-- [perf] calloc/xcalloc: Fix argument order (Jiri Olsa) [1209607]
-- [perf] callchain: Move cpumode resolve code to add_callchain_ip (Jiri Olsa) [1209607]
-- [perf] callchain: Fixup parameter handling error message (Jiri Olsa) [1209607]
-- [perf] tools: Add --buildid-dir option to set cache directory (Jiri Olsa) [1209607]
-- [perf] buildid cache: Fix -a segfault related to kcore handling (Jiri Olsa) [1209607]
-- [perf] buildid-cache: Remove extra debugdir variables (Jiri Olsa) [1209607]
-- [perf] tools: Use single strcmp call instead of two (Jiri Olsa) [1209607]
-- [perf] hists browser: Change print format from lu to PRIu64 (Jiri Olsa) [1209607]
-- [perf] bench: Fix memcpy/memset output (Jiri Olsa) [1209607]
-- [perf] bench: Merge memset into memcpy (Jiri Olsa) [1209607]
-- [perf] bench: Prepare memcpy for merge (Jiri Olsa) [1209607]
-- [perf] session: Do not fail on processing out of order event (Jiri Olsa) [1209607]
-- [perf] report: In branch stack mode use address history sorting (Jiri Olsa) [1209607]
-- [perf] report: Add --branch-history option (Jiri Olsa) [1209607]
-- [perf] callchain: Support handling complete branch stacks as histograms (Jiri Olsa) [1209607]
-- [perf] stat: Add support for snapshot counters (Jiri Olsa) [1209607]
-- [perf] stat: Add support for per-pkg counters (Jiri Olsa) [1209607]
-- [perf] tools: Remove perf_evsel__read interface (Jiri Olsa) [1209607]
-- [perf] stat: Use read_counter in read_counter_aggr (Jiri Olsa) [1209607]
-- [perf] stat: Make read_counter work over the thread dimension (Jiri Olsa) [1209607]
-- [perf] stat: Use perf_evsel__read_cb in read_counter (Jiri Olsa) [1209607]
-- [perf] tools: Add snapshot format file parsing (Jiri Olsa) [1209607]
-- [perf] tools: Add per-pkg format file parsing (Jiri Olsa) [1209607]
-- [perf] evsel: Introduce perf_evsel__read_cb function (Jiri Olsa) [1209607]
-- [perf] evsel: Introduce perf_counts_values__scale function (Jiri Olsa) [1209607]
-- [perf] evsel: Introduce perf_evsel__compute_deltas function (Jiri Olsa) [1209607]
-- [perf] tools: Allow to force redirect pr_debug to stderr (Jiri Olsa) [1209607]
-- [perf] tools: Fix segfault due to invalid kernel dso access (Jiri Olsa) [1209607]
-- [perf] callchain: Make get_srcline fall back to sym+offset (Jiri Olsa) [1209607]
-- [perf] symbols: Move bfd_demangle stubbing to its only user (Jiri Olsa) [1209607]
-- [perf] callchain: Enable printing the srcline in the history (Jiri Olsa) [1209607]
-- [perf] tools: Collapse first level callchain entry if it has sibling (Jiri Olsa) [1209607]
-- [perf] hists browser: Print overhead percent value for first-level callchain (Jiri Olsa) [1209607]
-- [perf] tools: Only override the default :tid comm entry (Jiri Olsa) [1209607]
-- [perf] tools: Add perf-read-vdso32 and perf-read-vdsox32 to .gitignore (Jiri Olsa) [1209607]
-- [perf] evlist: Do not poll events that use the system_wide flag (Jiri Olsa) [1209607]
-- [perf] evsel: Fix ftrace:function event recording (Jiri Olsa) [1209607]
-- [perf] diff: Add missing handler for PERF_RECORD_MMAP2 events (Jiri Olsa) [1209607]
-- [perf] hists: Fix up srcline histogram key formatting (Jiri Olsa) [1209607]
-- [perf] annotate: Support source line numbers in annotate (Jiri Olsa) [1209607]
-- [perf] tools: Only print base source file for srcline (Jiri Olsa) [1209607]
-- [perf] callchain: Use a common function to resolve symbol or name (Jiri Olsa) [1209607]
-- [perf] callchain: Use al.addr to set up call chain (Jiri Olsa) [1209607]
-- [perf] callchain: Factor out adding new call chain entries (Jiri Olsa) [1209607]
-- [perf] tools: Fix annotation with kcore (Jiri Olsa) [1209607]
-- [perf] test: fix typo in python test (Jiri Olsa) [1209607]
-- [perf] symbols: Fallback to kallsyms when using the minimal 'ELF' loader (Jiri Olsa) [1209607]
-- [perf] tools: Clean up libelf feature support code (Jiri Olsa) [1209607]
-- [perf] build-id: Move disable_buildid_cache() to util/build-id.c (Jiri Olsa) [1209607]
-- [perf] record: Add new -I option to sample interrupted machine state (Jiri Olsa) [1209607]
-- [perf] tests: Add interrupted state sample parsing test (Jiri Olsa) [1209607]
-- [perf] tools: Add core support for sampling intr machine state regs (Jiri Olsa) [1209607]
-- [perf] evsel: Do not call pevent_free_format when deleting tracepoint (Jiri Olsa) [1209607]
-- [perf] script python: Removing event cache as it's no longer needed (Jiri Olsa) [1209607]
-- [perf] script perl: Removing event cache as it's no longer needed (Jiri Olsa) [1209607]
-- [perf] tools: Add test_and_set_bit function (Jiri Olsa) [1209607]
-- [perf] tools: Make vmlinux short name more like kallsyms short name (Jiri Olsa) [1209607]
-- [perf] tools: Fix build-id matching on vmlinux (Jiri Olsa) [1209607]
-- [perf] record: Do not save pathname in ./debug/.build-id directory for vmlinux (Jiri Olsa) [1209607]
-- [perf] build-id: Move build-id related functions to util/build-id.c (Jiri Olsa) [1209607]
-- [perf] build-id: Rename dsos__write_buildid_table() (Jiri Olsa) [1209607]
-- [perf] tools: Add gzip decompression support for kernel module (Jiri Olsa) [1209607]
-- [perf] symbols: Preparation for compressed kernel module support (Jiri Olsa) [1209607]
-- [perf] tools: Defer export of comms that were not 'set' (Jiri Olsa) [1209607]
-- [perf] tools: Add call information to Python export (Jiri Olsa) [1209607]
-- [perf] tools: Add call information to the database export API (Jiri Olsa) [1209607]
-- [perf] tools: Add branch_type and in_tx to Python export (Jiri Olsa) [1209607]
-- [perf] tools: Add branch type to db export (Jiri Olsa) [1209607]
-- [perf] tools: Enhance the thread stack to output call/return data (Jiri Olsa) [1209607]
-- [perf] tools: Add a thread stack for synthesizing call chains (Jiri Olsa) [1209607]
-- [perf] session: Add perf_session__deliver_synth_event() (Jiri Olsa) [1209607]
-- [perf] tools: Use evlist__for_each in a few remaining places (Jiri Olsa) [1209607]
-- [perf] tools: Add id index (Jiri Olsa) [1209607]
-- [perf] probe: Add --quiet option to suppress output result message (Jiri Olsa) [1209607]
-- [perf] script: Add Python script to export to postgresql (Jiri Olsa) [1209607]
-- [perf] scripting python: Extend interface to export data in a database-friendly way (Jiri Olsa) [1209607]
-- [perf] tools: Add facility to export data in database-friendly way (Jiri Olsa) [1209607]
-- [perf] pmu: Add proper error handling to print_pmu_events() (Jiri Olsa) [1209607]
-- [perf] tools: Do not attempt to run perf-read-vdso32 if it wasn't built (Jiri Olsa) [1209607]
-- [perf] tools: Add support for 32-bit compatibility VDSOs (Jiri Olsa) [1209607]
-- [perf] tools: Build programs to copy 32-bit compatibility (Jiri Olsa) [1209607]
-- [perf] pmu: Let pmu's with no events show up on perf list (Jiri Olsa) [1209607]
-- [perf] tools: Ensure return negative value when write header error (Jiri Olsa) [1209607]
-- [perf] probe: Use PARSE_OPT_EXCLUSIVE flag (Jiri Olsa) [1209607]
-- [perf] tools: Add support for exclusive option (Jiri Olsa) [1209607]
-- [perf] kvm: Print kvm specific --help output (Jiri Olsa) [1209607]
-- [perf] tools: Export usage string and option table of perf record (Jiri Olsa) [1209607]
-- [perf] tools: Add PARSE_OPT_DISABLED flag (Jiri Olsa) [1209607]
-- [perf] tests: Use thread->mg->machine (Jiri Olsa) [1209607]
-- [perf] tests: Remove misplaced __maybe_unused (Jiri Olsa) [1209607]
-- [perf] callchains: Use thread->mg->machine (Jiri Olsa) [1209607]
-- [perf] thread: Adopt resolve_callchain method from machine (Jiri Olsa) [1209607]
-- [perf] tools: A thread's machine can be found via thread->mg->machine (Jiri Olsa) [1209607]
-- [perf] tools: Set thread->mg.machine in all places (Jiri Olsa) [1209607]
-- [perf] x86: Fix Haswell CYCLE_ACTIVITY.* counter constraints (Jiri Olsa) [1209607]
-- [perf] x86: Filter branches for PEBS event (Jiri Olsa) [1209607]
-- [perf] Fix irq_work 'tail' recursion (Jiri Olsa) [1209607]
-- [perf] add PMU_EVENT_ATTR_STRING() helper (Jiri Olsa) [1209607]
-- [perf] provide sysfs_show for struct perf_pmu_events_attr (Jiri Olsa) [1209607]
-- [perf] Decouple unthrottling and rotating (Jiri Olsa) [1209607]
-- [perf] Drop module reference on event init failure (Jiri Olsa) [1209607]
-- [perf] Use POLLIN instead of POLL_IN for perf poll data in flag (Jiri Olsa) [1209607]
-- [perf] Fix put_event() ctx lock (Jiri Olsa) [1209607]
-- [perf] Fix move_group() order (Jiri Olsa) [1209607]
-- [perf] Fix event->ctx locking (Jiri Olsa) [1209607]
-- [perf] Add a bit of paranoia (Jiri Olsa) [1209607]
-- [perf] Tighten (and fix) the grouping condition (Jiri Olsa) [1209607]
-- [perf] x86: Add model number for Airmont (Jiri Olsa) [1209607]
-- [perf] x86: Fix bug for "cycles:p" and "cycles:pp" on SLM (Jiri Olsa) [1209607]
-- [perf] rapl: Fix sysfs_show() initialization for RAPL PMU (Jiri Olsa) [1209607]
-- [perf] Avoid horrible stack usage (Jiri Olsa) [1209607]
-- [perf] Move task_pt_regs sampling into arch code (Jiri Olsa) [1209607]
-- [perf] Improve the perf_sample_data struct layout (Jiri Olsa) [1209607]
-- [perf] x86: Disallow flags for most Core2/Atom/Nehalem/Westmere events (Jiri Olsa) [1209607]
-- [perf] x86: Use INTEL_FLAGS_UEVENT_CONSTRAINT for PRECDIST (Jiri Olsa) [1209607]
-- [perf] x86: Add INTEL_FLAGS_UEVENT_CONSTRAINT (Jiri Olsa) [1209607]
-- [perf] x86: Add support for sampling PEBS machine state registers (Jiri Olsa) [1209607]
-- [perf] Add ability to sample machine state on interrupt (Jiri Olsa) [1209607]
-- [perf] list: introduce list_last_entry(), use list_{first, last}_entry() (Jiri Olsa) [1209607]
-
-* Fri May 08 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-250.el7]
-- [powercap] rapl: add ID for Broadwell server (Steve Best) [1169551]
-- [powerpc] powernv: Restore LPCR with LPCR_PECE1 cleared (Gustavo Duarte) [1193516]
-- [kernel] clockevents: Fix cpu_down() race for hrtimer based broadcasting (Gustavo Duarte) [1193516]
-- [tty] vt: don't set font mappings on vc not supporting this (Jarod Wilson) [1192395 1213538]
-- [x86] kernel: Remove a bogus 'ret_from_fork' optimization (Mateusz Guzik) [1209235] {CVE-2015-2830}
-- [x86] mm: Linux stack ASLR implementation (Jacob Tanenbaum) [1195685] {CVE-2015-1593}
-- [char] redhat/configs: Kconfig settings for new TPM drivers/support (Jarod Wilson) [1182709]
-- [char] tpm: fix call order in tpm-chip.c (Jarod Wilson) [1182709]
-- [char] tpm: Additional LE support for tpm_ibmvtpm_send (Jarod Wilson) [1182709]
-- [char] tpm, tpm_tis: fix TPM 2.0 probing (Jarod Wilson) [1182709]
-- [char] tpm: fix suspend/resume paths for TPM 2.0 (Jarod Wilson) [1182709]
-- [char] tpm/tpm_tis: Add missing ifdef CONFIG_ACPI for pnp_acpi_device (Jarod Wilson) [1182709]
-- [char] tpm: fix format string error in tpm-chip.c (Jarod Wilson) [1182709]
-- [char] char/tpm/tpm_crb: fix build error (Jarod Wilson) [1182709]
-- [char] tpm: fixed white spaces coding style issues (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Change tpm_i2c_stm_st33.h to tpm_stm_st33.h (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Replace remaining r by ret (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Sanity cleanup (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Remove sparse spaces (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Add status check when reading data on the FIFO (Jarod Wilson) [1182709]
-- [char] tpm: TPM 2.0 FIFO Interface (Jarod Wilson) [1182709]
-- [char] tpm: TPM 2.0 CRB Interface (Jarod Wilson) [1182709]
-- [char] tpm: TPM 2.0 baseline support (Jarod Wilson) [1182709]
-- [char] tpm: device class for tpm (Jarod Wilson) [1182709]
-- [char] tpm: rename chip->dev to chip->pdev (Jarod Wilson) [1182709]
-- [char] tpm: fix raciness of PPI interface lookup (Jarod Wilson) [1182709]
-- [char] tpm: two-phase chip management functions (Jarod Wilson) [1182709]
-- [char] tpm: merge duplicate transmit_cmd() functions (Jarod Wilson) [1182709]
-- [char] tpm: Update email address in maintainers list and ibmvtpm driver (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Fix coccinelle warnings. Possible NULL pointer dereference (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Increment driver version to 1.2.1 (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Remove useless i2c read on interrupt registers (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Interrupt management improvement (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Few code cleanup (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Add devicetree structure (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Replace tpm_st33_* function with tpm_stm_* (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Replace err/rc/ret by ret for a function return code (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Remove reference to io_serirq (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Add new tpm_stm_dev structure and remove tpm_i2c_buffer[0], [1] buffer (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Move tpm registers to tpm_i2c_stm_st33.c (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Fix few coding style error reported by scripts/checkpatch.pl (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Change License header to have up to date address information (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Update Kconfig in order to be inline to other similar product (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Fix potential bug in tpm_stm_i2c_send (Jarod Wilson) [1182709]
-- [char] tpm: Deletion of unnecessary checks before the function call "tpm_dev_vendor_release" (Jarod Wilson) [1182709]
-- [char] tpm: remove unnecessary sizeof(u8) (Jarod Wilson) [1182709]
-- [char] tpm_tis: verify interrupt during init (Jarod Wilson) [1182709]
-- [char] tpm: Add missing error check for devm_kzalloc (Jarod Wilson) [1182709]
-- [char] tpm: Add new TPMs to the tail of the list to prevent inadvertent change of dev (Jarod Wilson) [1182709]
-- [char] tpm: drop owner assignment from platform_drivers (Jarod Wilson) [1182709]
-- [char] tpm: simplify code by using *phN specifier (Jarod Wilson) [1182709]
-- [char] tpm: Provide a generic means to override the chip returned timeouts (Jarod Wilson) [1182709]
-- [char] tpm: missing tpm_chip_put in tpm_get_random() (Jarod Wilson) [1182709]
-- [char] tpm: Properly clean sysfs entries in error path (Jarod Wilson) [1182709]
-- [char] tpm: Add missing tpm_do_selftest to ST33 I2C driver (Jarod Wilson) [1182709]
-- [char] tpm: Fix resume regression on Chromebooks (Jarod Wilson) [1182709]
-- [char] drivers/char: delete non-required instances of include <linux/init.h> (Jarod Wilson) [1182709]
-- [char] tpm/tpm-sysfs: active_show() can be static (Jarod Wilson) [1182709]
-- [char] tpm: tpm_tis: Fix compile problems with CONFIG_PM_SLEEP/CONFIG_PNP (Jarod Wilson) [1182709]
-- [char] tpm: Make tpm-dev allocate a per-file structure (Jarod Wilson) [1182709]
-- [char] tpm: Use the ops structure instead of a copy in tpm_vendor_specific (Jarod Wilson) [1182709]
-- [char] tpm: Create a tpm_class_ops structure and use it in the drivers (Jarod Wilson) [1182709]
-- [char] tpm: Pull all driver sysfs code into tpm-sysfs.c (Jarod Wilson) [1182709]
-- [char] tpm: Move sysfs functions from tpm-interface to tpm-sysfs (Jarod Wilson) [1182709]
-- [char] tpm: Pull everything related to /dev/tpmX into tpm-dev.c (Jarod Wilson) [1182709]
-- [char] tpm: nuvoton: remove unused variable (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_atmel: fix coccinelle warnings (Jarod Wilson) [1182709]
-- [char] tpm: fix unreachable code warning (smatch warning) (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Check return code of get_burstcount (Jarod Wilson) [1182709]
-- [char] tpm: detect PPI features by checking availability of _DSM functions (Jarod Wilson) [1182709]
-- [char] tpm: replace open-coded _DSM code with helper functions (Jarod Wilson) [1182709]
-- [char] acpi: introduce helper interfaces for _DSM method (Jarod Wilson) [1182709]
-- [char] tpm: match node name instead of full path when searching for TPM device (Jarod Wilson) [1182709]
-- [char] tpm: fix memory leak when walking ACPI namespace (Jarod Wilson) [1182709]
-- [char] xen/pvhvm: If xen_platform_pci=0 is set don't blow up (v4) (Jarod Wilson) [1182709]
-- [char] acpi: Clean up inclusions of ACPI header files (Jarod Wilson) [1182709]
-- [char] tpm: use tabs instead of whitespaces in Kconfig (Jarod Wilson) [1182709]
-- [char] tpm: Fix module name description in Kconfig for tpm_i2c_infineon (Jarod Wilson) [1182709]
-- [char] tpm: Add support for Atmel I2C TPMs (Jarod Wilson) [1182709]
-- [char] tpm: Add support for the Nuvoton NPCT501 I2C TPM (Jarod Wilson) [1182709]
-- [char] tpm: Merge the tpm-bios module with tpm.o (Jarod Wilson) [1182709]
-- [char] tpm: Rename tpm.c to tpm-interface.c (Jarod Wilson) [1182709]
-- [char] tpm: cleanup checkpatch warnings (Jarod Wilson) [1182709]
-- [char] tpm: Remove tpm_show_caps_1_2 (Jarod Wilson) [1182709]
-- [char] tpm: st33: Remove chip->data_buffer access from this driver (Jarod Wilson) [1182709]
-- [char] tpm: Remove redundant dev_set_drvdata (Jarod Wilson) [1182709]
-- [char] tpm: Use container_of to locate the tpm_chip in tpm_open (Jarod Wilson) [1182709]
-- [char] tpm: Store devname in the tpm_chip (Jarod Wilson) [1182709]
-- [char] tpm: atmel: Call request_region with the correct base (Jarod Wilson) [1182709]
-- [char] tpm: Use zd formatting for size_t format arguments (Jarod Wilson) [1182709]
-- [char] tpm: xen-tpmfront: fix missing declaration of xen_domain (Jarod Wilson) [1182709]
-- [char] tpm: xen-tpmfront: Remove the locality sysfs attribute (Jarod Wilson) [1182709]
-- [char] tpm: xen-tpmfront: Fix default durations (Jarod Wilson) [1182709]
-- [char] tpm: convert tpm_tis driver to use dev_pm_ops from legacy pm_ops (Jarod Wilson) [1182709]
-- [char] drivers/xen-tpmfront: Fix compile issue with missing option (Jarod Wilson) [1182709]
-- [char] tpm: add xen tpmfront interface (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_infineon: Remove unused header file (Jarod Wilson) [1182709]
-- [char] tpm: tpm_i2c_infinion: Don't modify i2c_client->driver (Jarod Wilson) [1182709]
-- [char] tpm: fix regression caused by section type conflict of tpm_dev_release() in ppc builds (Jarod Wilson) [1182709]
-- [char] tpm: move TPM_DIGEST_SIZE defintion (Jarod Wilson) [1182709]
-- [char] tpm_tis: missing platform_driver_unregister() on error in init_tis() (Jarod Wilson) [1182709]
-- [enclosure] fix WARN_ON removing an adapter in multi-path devices (Maurizio Lombardi) [1204955]
-- [scsi] scsi_sysfs: make unpriv_sgio queue attribute accessible for non-block devices (Ewan Milne) [1072734]
-- [scsi] increase max_scsi_report_luns from 511 to 16k-1 (Rob Evers) [874231]
-- [scsi] trim initial allocation in report_luns if limited by max_report_luns (Rob Evers) [874231]
-- [scsi] re-implement 'max_report_luns' merged with latest report_luns code (Rob Evers) [874231]
-- [scsi] re-introduce 'max_report_luns' parameter (Rob Evers) [874231]
-- [scsi] retry report-luns when reported LU count requires more memory (Rob Evers) [874231]
-- [scsi] use set/get_unaligned_be32 in report_luns (Rob Evers) [874231]
-- [scsi] avoid unnecessary GFP_ATOMIC allocation in scsi_report_lun_scan (Rob Evers) [874231]
-- [scsi] be2iscsi: Bump the driver version (Rob Evers) [1183800]
-- [scsi] be2iscsi: Logout of FW Boot Session (Rob Evers) [1183800]
-- [scsi] be2iscsi: Update the copyright year (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix memory check before unmapping (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix memory leak in the unload path (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix the PCI request region reserving (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix the retry count for boot targets (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix kernel panic when device initialization fails (Rob Evers) [1183800]
-- [scsi] be2iscsi: treewide: Fix typo in printk messages (Rob Evers) [1183800]
-- [scsi] be2iscsi: fixed invalid assignment of 64bit mask to host dma_boundary for scatter gather segment boundary limit (Rob Evers) [1183800]
-- [scsi] be2iscsi: check ip buffer before copying (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix kernel panic during reboot/shutdown (Rob Evers) [1183800]
-- [scsi] fix regression in scsi_send_eh_cmnd() (Ewan Milne) [1167454]
-- [scsi] fnic: IOMMU Fault occurs when IO and abort IO is out of order (Maurizio Lombardi) [1159398]
-- [scsi] fnic: Fnic Driver crashed with NULL pointer reference (Maurizio Lombardi) [1159398]
-- [scsi] fnic: For Standalone C series, "sending VLAN request" message seen even if the link is down (Maurizio Lombardi) [1159398]
-- [scsi] fnic: Improper resue of exchange Ids (Maurizio Lombardi) [1159398]
-- [scsi] fnic: Memcopy only mimumum of data or trace buffer (Maurizio Lombardi) [1159398]
-- [scsi] fnic: Not probing all the vNICS via fnic_probe on boot (Maurizio Lombardi) [1159398]
-- [scsi] fnic: assign FIP_ALL_FCF_MACS to fcoe_all_fcfs (Maurizio Lombardi) [1159398]
-- [scsi] fnic: fnic Control Path Trace Utility (Maurizio Lombardi) [1159398]
-- [scsi] bnx2fc: do not add shared skbs to the fcoe_rx_list (Maurizio Lombardi) [1087796]
-- [scsi] do not display kernel pointer in message logs (Ewan Milne) [1124082]
-- [scsi] Do not display buffer pointers in scsi_log_send() (Ewan Milne) [1124082]
-- [scsi] Conditionally compile in constants.c (Ewan Milne) [1124082]
-- [scsi] use per-cpu buffer for formatting scsi_print_result() (Ewan Milne) [1124082]
-- [scsi] use per-cpu buffer for formatting sense (Ewan Milne) [1124082]
-- [ata] libata: use __scsi_format_command() (Ewan Milne) [1124082]
-- [scsi] use external buffer for command logging (Ewan Milne) [1124082]
-- [scsi] log request tag for scmd_printk() (Ewan Milne) [1124082]
-- [scsi] Implement per-cpu logging buffer (Ewan Milne) [1124082]
-- [scsi] set fmt to NULL scsi_extd_sense_format() by default (Ewan Milne) [1124082]
-- [scsi] ratelimit I/O error messages (Ewan Milne) [1124082]
-- [scsi] correct return values for .eh_abort_handler implementations (Ewan Milne) [1124082]
-- [scsi] document scsi_try_to_abort_cmd (Ewan Milne) [1124082]
-- [scsi] use shost argument in scsi_eh_prt_fail_stats (Ewan Milne) [1124082]
-- [scsi] fixup logging messages in scsi_error.c (Ewan Milne) [1124082]
-- [scsi] simplify scsi_log_(send|completion) (Ewan Milne) [1124082]
-- [scsi] scsi_lib: Revert "rate-limit the error message from failing commands" (Ewan Milne) [1124082]
-- [scsi] remove scsi_show_result() (Ewan Milne) [1124082]
-- [scsi] separate out scsi_(host|driver)byte_string() (Ewan Milne) [1124082]
-- [scsi] Remove scsi_print_command when calling abort (Ewan Milne) [1124082]
-- [scsi] repurpose the last argument from print_opcode_name() (Ewan Milne) [1124082]
-- [scsi] consolidate opcode lookup in scsi_opcode_sa_name() (Ewan Milne) [1124082]
-- [scsi] merge print_opcode_name() (Ewan Milne) [1124082]
-- [scsi] implement scsi_opcode_sa_name (Ewan Milne) [1124082]
-- [scsi] remove scsi_print_status() (Ewan Milne) [1124082]
-- [scsi] use 'bool' as return value for scsi_normalize_sense() (Ewan Milne) [1124082]
-- [scsi] do not decode sense extras (Ewan Milne) [1124082]
-- [scsi] stop decoding if scsi_normalize_sense() fails (Ewan Milne) [1124082]
-- [scsi] 53c700: remove scsi_print_sense() usage (Ewan Milne) [1124082]
-- [scsi] fas216: update logging messages (Ewan Milne) [1124082]
-- [scsi] fas216: return DID_ERROR for incomplete data transfer (Ewan Milne) [1124082]
-- [scsi] acornscsi: use scsi_print_command() (Ewan Milne) [1124082]
-- [scsi] use sdev as argument for sense code printing (Ewan Milne) [1124082]
-- [scsi] introduce sdev_prefix_printk() (Ewan Milne) [1124082]
-- [scsi] aha152x: debug output update and whitespace cleanup (Ewan Milne) [1124082]
-- [scsi] sd: remove scsi_print_sense() in sd_done() (Ewan Milne) [1124082]
-- [scsi] remove scsi_cmd_print_sense_hdr() (Ewan Milne) [1124082]
-- [scsi] st: add a debug_flag module parameter request (Maurizio Lombardi) [1156041]
-
-* Thu May 07 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-249.el7]
-- [cpuidle] powernv: Read target_residency value of idle states from DT if available (Gustavo Duarte) [1199939]
-- [cpuidle] powernv: Populate cpuidle state details by querying the device-tree (Gustavo Duarte) [1199939]
-- [kernel] timers/tick/broadcast-hrtimer: Fix suspicious RCU usage in idle loop (Gustavo Duarte) [1199939]
-- [scsi] ipr: Driver version 2.6.1 (Gustavo Duarte) [1182037]
-- [scsi] ipr: AF DASD raw mode implementation in ipr driver (Gustavo Duarte) [1182037]
-- [scsi] ipr: Fix possible error path oops during initialization (Gustavo Duarte) [1182037]
-- [scsi] ipr: Reset in task context (Gustavo Duarte) [1182037]
-- [scsi] ipr: Reboot speed improvements (Gustavo Duarte) [1182037]
-- [scsi] ipr: set scsi_level correctly for disk arrays (Gustavo Duarte) [1182037]
-- [scsi] ipr: add support for async scanning to speed up boot (Gustavo Duarte) [1182037]
-- [ata] libata: Blacklist queued TRIM on Samsung SSD 850 Pro (David Milburn) [1217179]
-- [ata] libata: Update Crucial/Micron blacklist (David Milburn) [1217179]
-- [ata] libata: prevent HSM state change race between ISR and PIO (David Milburn) [1217179]
-- [ata] libata: allow sata_sil24 to opt-out of tag ordered submission (David Milburn) [1217179]
-- [ata] ata: libata-core: Remove unused function (David Milburn) [1217179]
-- [ata] ahci: Use dev_info() to inform about the lack of Device Sleep support (David Milburn) [1217179]
-- [ata] libata: Whitelist SSDs that are known to properly return zeroes after TRIM (David Milburn) [1217179]
-- [ata] libata: Remove FIXME comment in atapi_eh_request_sense (David Milburn) [1217179]
-- [ata] libata: s/ata_id_removeable()/ata_id_removable()/ (David Milburn) [1217179]
-- [ata] libata: Remove FIXME comment in atapi_request_sense() (David Milburn) [1217179]
-- [ata] ahci: disable MSI instead of NCQ on Samsung pci-e SSDs on macbooks (David Milburn) [1217179]
-- [ata] revert "ahci: Optimize single IRQ interrupt processing" (David Milburn) [1217179]
-- [ata] revert "ahci: Do not acquire ata_host::lock from single IRQ handler" (David Milburn) [1217179]
-- [ata] ahci: Do not acquire ata_host::lock from single IRQ handler (David Milburn) [1217179]
-- [ata] ahci: Optimize single IRQ interrupt processing (David Milburn) [1217179]
-- [ata] ahci: Do not read HOST_IRQ_STAT reg in multi-MSI mode (David Milburn) [1217179]
-- [ata] ahci: Make few function names more descriptive (David Milburn) [1217179]
-- [ata] ahci: Move host activation code into ahci_host_activate() (David Milburn) [1217179]
-- [ata] ahci: Move ahci_host_activate() function to libahci.c (David Milburn) [1217179]
-- [ata] ahci: Pass SCSI host template as arg to ahci_host_activate() (David Milburn) [1217179]
-- [ata] ahci: Cleanup checking of multiple MSIs/SLM modes (David Milburn) [1217179]
-- [ata] libata-sff: Fix controllers with no ctl port (David Milburn) [1217179]
-- [ata] libata: change ata_<foo>_printk routines to return void (David Milburn) [1217179]
-- [ata] ahci: add pcid for Marvel 0x9182 controller (David Milburn) [1217179]
-- [ata] ata: Disabling the async PM for JMicron chip 363/361 (David Milburn) [1217179]
-- [ata] libata: Use dev_name() for request_irq() to distinguish devices (David Milburn) [1217179]
-- [ata] libata: widen Crucial M550 blacklist matching (David Milburn) [1217179]
-- [ata] sata_sil24: Identify which card suffered IRQ status error (David Milburn) [1217179]
-- [ata] libata: introduce ata_host->n_tags to avoid oops on SAS controllers (David Milburn) [1217179]
-- [ata] libata: EH should handle AMNF error condition as a media error (David Milburn) [1217179]
-- [ata] libata: support the ata host which implements a queue depth less than 32 (David Milburn) [1217179]
-- [ata] libahci: export ahci_qc_issue() and ahci_start_fix_rx() (David Milburn) [1217179]
-- [ata] libata: Blacklist queued trim for Crucial M500 (David Milburn) [1217179]
-- [ata] ahci: add PCI ID for Marvell 88SE91A0 SATA Controller (David Milburn) [1217179]
-- [ata] ata: ahci: append new hflag AHCI_HFLAG_NO_FBS (David Milburn) [1217179]
-- [ata] ata: SATL compliance for Inquiry Product Revision (David Milburn) [1217179]
-- [ata] ahci: Use pci_enable_msi_exact() instead of pci_enable_msi_range() (David Milburn) [1217179]
-- [ata] ahci: Ensure "MSI Revert to Single Message" mode is not enforced (David Milburn) [1217179]
-- [ata] libata: Update queued trim blacklist for M5x0 drives (David Milburn) [1217179]
-- [ata] libata: use wider match for blacklisting Crucial M500 (David Milburn) [1217179]
-- [ata] libata: async resume (David Milburn) [1217179]
-- [ata] libata, libsas: kill pm_result and related cleanup (David Milburn) [1217179]
-- [ata] libata: end the r-word (David Milburn) [1217179]
-- [ata] libata: add ATA_HORKAGE_BROKEN_FPDMA_AA quirk for Seagate Momentus SpinPoint M8 (2BA30001) (David Milburn) [1217179]
-- [ata] libata: disable queued TRIM for Crucial M500 mSATA SSDs (David Milburn) [1217179]
-- [ata] ata: libahci: replace obsolete simple_strtoul() with kstrtouint() (David Milburn) [1217179]
-- [ata] ata: libahci: make ahci_pmp_retry_softreset() as static (David Milburn) [1217179]
-- [ata] ata: CONFIG_ATA is libata (David Milburn) [1217179]
-- [ata] ahci: disable NCQ on Samsung pci-e SSDs on macbooks (David Milburn) [1217179]
-- [ata] ata: delete non-required instances of include <linux/init.h> (David Milburn) [1217179]
-- [ata] sata_sil: apply MOD15WRITE quirk to TOSHIBA MK2561GSYN (David Milburn) [1217179]
-- [ata] ata: enable quirk from jmicron JMB350 for JMB394 (David Milburn) [1217179]
-- [ata] libata: disable LPM for some WD SATA-I devices (David Milburn) [1217179]
-- [ata] ahci: add PCI ID for Marvell 88SE9170 SATA controller (David Milburn) [1217179]
-- [ata] libata: implement ATA_HORKAGE_NO_NCQ_TRIM and apply it to Micro M500 SSDs (David Milburn) [1217179]
-- [ata] libata: disable a disk via libata.force params (David Milburn) [1217179]
-- [ata] ahci: bail out on ICH6 before using AHCI BAR (David Milburn) [1217179]
-- [ata] drivers: ata: Mark the function as static in libahci.c (David Milburn) [1217179]
-- [ata] libata: add ATA_HORKAGE_BROKEN_FPDMA_AA quirk for Seagate Momentus SpinPoint M8 (David Milburn) [1217179]
-- [ata] ata: libata-eh: Remove unnecessary snprintf arithmetic (David Milburn) [1217179]
-- [ata] libata: Add some missing command descriptions (David Milburn) [1217179]
-- [ata] ahci_platform: use dev_info() instead of printk() (David Milburn) [1217179]
-- [ata] ahci: use dev_info() instead of printk() (David Milburn) [1217179]
-- [ata] ahci: Changing two module params with static and __read_mostly (David Milburn) [1217179]
-- [ata] libata: bugfix: Remove __le32 in ata_tf_to_fis() (David Milburn) [1217179]
-- [ata] libata: Add support for queued DSM TRIM (David Milburn) [1217179]
-- [ata] libata: Add support for SEND/RECEIVE FPDMA QUEUED (David Milburn) [1217179]
-- [ata] libata: Add H2D FIS "auxiliary" port flag (David Milburn) [1217179]
-- [ata] libata: Populate host-to-device FIS "auxiliary" field (David Milburn) [1217179]
-- [ata] ata: pata_arasan: Staticize local symbols (David Milburn) [1217179]
-- [ata] sata_mv: Remove unneeded CONFIG_HAVE_CLK ifdefs (David Milburn) [1217179]
-- [ata] sata_mv: Remove unneeded forward declaration (David Milburn) [1217179]
-- [ata] ata: use dev_get_platdata() (David Milburn) [1217179]
-- [ata] ahci: use ATA_BUSY (David Milburn) [1217179]
-- [ata] libata: move 'struct ata_taskfile' and friends from ata.h to libata.h (David Milburn) [1217179]
-- [ata] libata: cleanup SAT error translation (David Milburn) [1217179]
-- [ata] ahci: make ahci_transmit_led_message into a function pointer (David Milburn) [1217179]
-- [ata] libata: Add atapi_dmadir force flag (David Milburn) [1217179]
-- [virtio] defer config changed notifications (David Gibson) [1196009]
-- [virtio] unify config_changed handling (David Gibson) [1196009]
-- [netdrv] ibmveth: Fix off-by-one error in ibmveth_change_mtu() (David Gibson) [1209310]
-- [scripts] checkpatch: fix code broken by backport (Jerry Snitselaar) [1218494]
-- [powerpc] powernv: Check image loaded or not before calling flash (Steve Best) [1182056]
-- [security] keys: memory corruption or panic during key garbage collection (Jacob Tanenbaum) [1179852] {CVE-2014-9529}
-
-* Wed May 06 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-248.el7]
-- [cpufreq] intel_pstate: remove MSR test (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: provide option to only use intel_pstate with HWP (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Add num_pstates to sysfs (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: honor user space min_perf_pct override on resume (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: respect cpufreq policy request (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: expose turbo range to sysfs (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Add a few comments (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: add kernel parameter to force loading (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: skip this driver if Sun server has _PPC method (Prarit Bhargava) [1214335]
-- [x86] intel_pstate: Add support for HWP (Prarit Bhargava) [1214335]
-- [x86] Add support for Intel HWP feature detection (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Correct BYT VID values (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Don't lose sysfs settings during cpu offline (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Fix BYT frequency reporting (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Reflect current no_turbo state correctly (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Fix setting max_perf_pct in performance policy (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Remove unneeded variable (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Turn per cpu printk into pr_debug (Prarit Bhargava) [1214335]
-- [cpufreq] Documentation, add cpu-freq/intel-pstate.txt (Prarit Bhargava) [1214335]
-- [pci] Support BAR sizes up to 128GB (Myron Stowe) [1211947]
-- [x86] mce: Fix warning about indented braces (Prarit Bhargava) [1217770]
-- [x86] mce: Define mce_severity function pointer (Prarit Bhargava) [1217770]
-- [x86] mce: Add an AMD severities-grading function (Prarit Bhargava) [1217770]
-- [x86] mce: Reindent __mcheck_cpu_apply_quirks() properly (Prarit Bhargava) [1217770]
-- [x86] mce: Use safe MSR accesses for AMD quirk (Prarit Bhargava) [1217770]
-- [x86] Add another set of MSR accessor functions (Prarit Bhargava) [1217770]
-- [x86] mce: Enable thresholding interrupts by default if supported (Prarit Bhargava) [1217770]
-- [x86] mce: Make mce_panic() fatal machine check msg in the same pattern (Prarit Bhargava) [1217770]
-- [x86] mce: Cleanup CMCI storm logic (Prarit Bhargava) [1217770]
-- [x86] mce: Drop bogus const modifier from AMD's bank4_names() (Prarit Bhargava) [1217770]
-- [x86] mce: Get rid of TIF_MCE_NOTIFY and associated mce tricks (Prarit Bhargava) [1217770]
-- [x86] mce: Fix sparse errors (Prarit Bhargava) [1217770]
-- [x86] mce: Improve timeout error messages (Prarit Bhargava) [1217770]
-- [x86] mce: Extend the the mce_severity mechanism to handle UCNA/DEFERRED error (Prarit Bhargava) [1217770]
-- [x86] mce: Assign interrupt handler only when bank supports it (Prarit Bhargava) [1217770]
-- [x86] mce: Drop software-defined bank in error thresholding (Prarit Bhargava) [1217770]
-- [x86] mce: Move invariant code out from loop body (Prarit Bhargava) [1217770]
-- [x86] mce: Correct thresholding error logging (Prarit Bhargava) [1217770]
-- [x86] mce: Use macros to compute bank MSRs (Prarit Bhargava) [1217770]
-- [x86] mce: Avoid showing repetitive message from intel_init_thermal() (Prarit Bhargava) [1217770]
-- [x86] replace strict_strto calls (Prarit Bhargava) [1217770]
-- [x86] mce: Robustify mcheck_init_device (Prarit Bhargava) [1217770]
-- [x86] msr-index: define MSR_TURBO_RATIO_LIMIT, 1, 2 (Prarit Bhargava) [1187329]
-- [tools] turbostat: correct dumped pkg-cstate-limit value (Prarit Bhargava) [1187329]
-- [tools] turbostat: calculate TSC frequency from CPUID(0x15) on SKL (Prarit Bhargava) [1187329]
-- [tools] turbostat: correct DRAM RAPL units on recent Xeon processors (Prarit Bhargava) [1187329]
-- [tools] turbostat: Use $(CURDIR) instead of $(PWD) and add support for O= option in Makefile (Prarit Bhargava) [1187329]
-- [tools] turbostat: modprobe msr, if needed (Prarit Bhargava) [1187329]
-- [tools] turbostat: Initial Skylake support (Prarit Bhargava) [1187329]
-- [tools] turbostat: dump MSR_TURBO_RATIO_LIMIT2 (Prarit Bhargava) [1187329]
-- [tools] turbostat: use new MSR_TURBO_RATIO_LIMIT names (Prarit Bhargava) [1187329]
-- [tools] turbostat: update PERF_LIMIT_REASONS decoding (Prarit Bhargava) [1187329]
-- [tools] turbostat: label base frequency (Prarit Bhargava) [1187329]
-- [tools] turbostat: simplify default output (Prarit Bhargava) [1187329]
-- [tools] turbostat: support additional Broadwell model (Prarit Bhargava) [1187329]
-- [tools] turbostat: update parameters, documentation (Prarit Bhargava) [1187329]
-- [tools] turbostat: Skip printing disabled package C-states (Prarit Bhargava) [1187329]
-- [tools] turbostat: relax dependency on APERF_MSR (Prarit Bhargava) [1187329]
-- [tools] turbostat: relax dependency on invariant TSC (Prarit Bhargava) [1187329]
-- [tools] turbostat: decode MSR_*_PERF_LIMIT_REASONS (Prarit Bhargava) [1187329]
-- [tools] turbostat: relax dependency on root permission (Prarit Bhargava) [1187329]
-- [hwmon] k10temp: Convert to devm_hwmon_device_register_with_groups (Jarod Wilson) [1135029]
-- [hwmon] k10temp: Add support for F15h M60h (Jarod Wilson) [1135029]
-- [pci] Add include guard to include/linux/pci_ids.h (Jarod Wilson) [1135029]
-- [hwmon] k10temp: Add support for AMD F16 M30h processor (Jarod Wilson) [1135029]
-- [hwmon] Do not accept invalid name attributes (Jarod Wilson) [1135029]
-- [hwmon] k10temp: Add support for Kaveri CPUs (Jarod Wilson) [1135029]
-- [kernel] pci_ids: Add PCI device IDs for F15h M60h (Jarod Wilson) [1135029]
-- [kernel] pci_ids: add AMD F16h M30h device IDs (Jarod Wilson) [1135029]
-- [hwmon] Provide managed hwmon registration (Jarod Wilson) [1135029]
-- [hwmon] Introduce hwmon_device_register_with_groups (Jarod Wilson) [1135029]
-- [hwmon] k10temp: remove unnecessary pci_set_drvdata() (Jarod Wilson) [1135029]
-- [firmware] dmi_scan: Prevent dmi_num integer overflow (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Fix dmi_len type (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Fix dmi scan to handle "End of Table" structure (Jarod Wilson) [853192]
-- [firmware] dmi: add support for SMBIOS 3.0 64-bit entry point (Jarod Wilson) [853192]
-- [firmware] efi: dmi: add support for SMBIOS 3.0 UEFI configuration table (Jarod Wilson) [853192]
-- [firmware] dmi_scan: generalize for use by other archs (Jarod Wilson) [853192]
-- [firmware] dmi_scan: constify strings (Jarod Wilson) [853192]
-- [firmware] dmi_scan: drop OOM messages (Jarod Wilson) [853192]
-- [firmware] dmi_scan: fix most checkpatch errors and warnings (Jarod Wilson) [853192]
-- [firmware] dmi_scan: drop obsolete comment (Jarod Wilson) [853192]
-- [firmware] dmi_scan: add comments on dmi_present() and the loop in dmi_scan_machine() (Jarod Wilson) [853192]
-
-* Tue May 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-247.el7]
-- [powerpc] eeh: Aux PE data for error log (Steve Best) [1211945]
-- [powerpc] eeh: Make diag-data not endian dependent (Steve Best) [1211945]
-- [powerpc] eeh: Replace pr_warning() with pr_warn() (Steve Best) [1211945]
-- [powerpc] eeh: Reduce lines of log dump (Steve Best) [1211945]
-- [powerpc] eeh: Selectively enable IO for error log (Steve Best) [1211945]
-- [powerpc] eeh: Refactor EEH flag accessors (Steve Best) [1211945]
-- [powerpc] eeh: Fetch IOMMU table in reliable way (Steve Best) [1211945]
-- [powerpc] powernv: Fix IOMMU table for VFIO dev (Steve Best) [1211945]
-- [powerpc] eeh: sysfs entries lost (Steve Best) [1211945]
-- [powerpc] eeh: EEH support for VFIO PCI device (Steve Best) [1211945]
-- [powerpc] eeh: Avoid event on passed PE (Steve Best) [1211945]
-- [powerpc] powernv: Switch powernv drivers to use machine_xxx_initcall() (Steve Best) [1211945]
-- [powerpc] Add machine_early_initcall() (Steve Best) [1211945]
-- [powerpc] perf: Cap 64bit userspace backtraces to PERF_MAX_STACK_DEPTH (Steve Best) [1213950]
-- [powerpc] kvm: Implement H_LOGICAL_CI_{LOAD,STORE} in KVM (David Gibson) [1184290]
-- [mm] zbud: avoid accessing last unused freelist (Seth Jennings) [1141434]
-- [mm] zsmalloc: simplify init_zspage free obj linking (Seth Jennings) [1141434]
-- [mm] zsmalloc: correct comment for fullness group computation (Seth Jennings) [1141434]
-- [mm] zsmalloc: move pages_allocated to zs_pool (Seth Jennings) [1141434]
-- [mm] zpool: use prefixed module loading (Seth Jennings) [1141434]
-- [mm] zswap: add __init to zswap_entry_cache_destroy() (Seth Jennings) [1141434]
-- [mm] zpool: update zswap to use zpool (Seth Jennings) [1141434]
-- [mm] zpool: zbud/zsmalloc implement zpool (Seth Jennings) [1141434]
-- [mm] zpool: implement common zpool api to zbud/zsmalloc (Seth Jennings) [1141434]
-- [mm] zbud: change zbud_alloc size type to size_t (Seth Jennings) [1141434]
-- [mm] zswap: NUMA aware allocation for zswap_dstmem (Seth Jennings) [1141434]
-- [mm] zsmalloc: make zsmalloc module-buildable (Seth Jennings) [1141434]
-- [mm] zsmalloc: fixup trivial zs size classes value in comments (Seth Jennings) [1141434]
-- [mm] zbud: make size unsigned like unique callsite (Seth Jennings) [1141434]
-- [Documentation] MAINTAINERS: change zswap/zbud maintainer email address (Seth Jennings) [1141434]
-- [mm] zswap: remove unnecessary parentheses (Seth Jennings) [1141434]
-- [mm] zswap: support multiple swap devices (Seth Jennings) [1141434]
-- [mm] zswap: update zsmalloc in comment to zbud (Seth Jennings) [1141434]
-- [mm] zswap: fix trivial typo and arrange indentation (Seth Jennings) [1141434]
-- [mm] zsmalloc: Fix CPU hotplug callback registration (Seth Jennings) [1141434]
-- [mm] Kconfig: fix URL for zsmalloc benchmark (Seth Jennings) [1141434]
-- [mm] zsmalloc: add maintainers (Seth Jennings) [1141434]
-- [mm] zsmalloc: add copyright (Seth Jennings) [1141434]
-- [mm] zsmalloc: move it under mm (Seth Jennings) [1141434]
-- [mm] zswap: change params from hidden to ro (Seth Jennings) [1141434]
-- [mm] zsmalloc: add more comment (Seth Jennings) [1141434]
-- [mm] zsmalloc: add Kconfig for enabling page table method (Seth Jennings) [1141434]
-- [mm] zswap: refactor the get/put routines (Seth Jennings) [1141434]
-- [mm] zswap: fix memory leak when invalidate and reclaim occur concurrently (Seth Jennings) [1141434]
-- [mm] zswap: avoid unnecessary page scanning (Seth Jennings) [1141434]
-- [Documentation] zswap: fix typos (Seth Jennings) [1141434]
-- [mm] zswap: fix memory leak when re-swapon (Seth Jennings) [1141434]
-- [mm] zsmalloc: Fix map_vm_area undefined reference errors (Seth Jennings) [1141434]
-- [mm] zswap: use postorder iteration when destroying rbtree (Seth Jennings) [1141434]
-- [lib] rbtree: fix rbtree_postorder_for_each_entry_safe() iterator (Seth Jennings) [1141434]
-- [lib] rbtree: add rbtree_postorder_for_each_entry_safe() helper (Seth Jennings) [1141434]
-- [lib] rbtree: add postorder iteration functions (Seth Jennings) [1141434]
-- [mm] zbud: fix some trivial typos in comments (Seth Jennings) [1141434]
-- [mm] zswap: get swapper address_space by using macro (Seth Jennings) [1141434]
-- [mm] zsmalloc: access page->private by using page_private macro (Seth Jennings) [1141434]
-- [mm] zsmalloc: Fixed up incorrect formatted comments (Seth Jennings) [1141434]
-- [mm] zsmalloc: Fixes string split across lines in zsmalloc zsmalloc-main (Seth Jennings) [1141434]
-- [s390] zfcp: auto port scan resiliency (Hendrik Brueckner) [1182316]
-- [s390] zfcp: bring back unit sysfs attributes for automatic LUN scan (Hendrik Brueckner) [1182314]
-- [tools] perf: Fix race in build_id_cache__add_s() (Milos Vyletel) [1204077]
-- [kernel] sched/rt/nohz: Stop scheduler tick if running realtime task (Rik van Riel) [1193629]
-- [kernel] sched: rt: Reduce rq lock contention by eliminating locking of non-feasible target (Larry Woodman) [1195521]
-
-* Fri May 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-246.el7]
-- [kernel] audit: convert status version to a feature bitmap (Richard Guy Briggs) [1155589]
-- [kernel] audit: use define's for audit version (Richard Guy Briggs) [1155589]
-- [kernel] audit: clean up AUDIT_GET/SET local variables and future-proof API (Richard Guy Briggs) [1155589]
-- [kernel] audit: use memset instead of trying to initialize field by field (Richard Guy Briggs) [1155589]
-- [net] libceph: tcp_nodelay support (Sage Weil) [1197952]
-- [net] pppoe: Use workqueue to die properly when a PADT is received (Beniamino Galvani) [1025871]
-- [net] tcp: restore 1.5x per RTT limit to CUBIC cwnd growth in congestion avoidance (Florian Westphal) [1191260]
-- [net] tcp: fix tcp_cong_avoid_ai() credit accumulation bug with decreases in w (Florian Westphal) [1191260]
-- [net] tcp: fix timing issue in CUBIC slope calculation (Florian Westphal) [1191260]
-- [net] tcp: fix stretch ACK bugs in CUBIC (Florian Westphal) [1191260]
-- [net] tcp: fix stretch ACK bugs in Reno (Florian Westphal) [1191260]
-- [net] tcp: fix the timid additive increase on stretch ACKs (Florian Westphal) [1191260]
-- [net] tcp: stretch ACK fixes prep (Florian Westphal) [1191260]
-- [net] tcp_cubic: refine Hystart delay threshold (Florian Westphal) [1191260]
-- [net] tcp_cubic: add SNMP counters to track how effective is Hystart (Florian Westphal) [1191260]
-- [net] inet_diag: fix access to tcp cc information (Florian Westphal) [1212624]
-- [net] inet_diag: fix possible overflow in inet_diag_dump_one_icsk() (Florian Westphal) [1212624]
-- [net] inet_diag: zero out uninitialized idiag_{src, dst} fields (Florian Westphal) [1212624]
-- [net] tcp: add per route congestion control (Florian Westphal) [1212624]
-- [net] tcp: add RTAX_CC_ALGO fib handling (Florian Westphal) [1212624]
-- [net] tcp: add key management to congestion control (Florian Westphal) [1212624]
-- [net] tcp: refactor reinitialization of congestion control (Florian Westphal) [1212624]
-- [net] fib6: convert cfg metric to u32 outside of table write lock (Florian Westphal) [1212624]
-- [net] fib6: fib6_commit_metrics: fix potential NULL pointer dereference (Florian Westphal) [1212624]
-- [net] ipv6: do not overwrite inetpeer metrics prematurely (Florian Westphal) [1212624]
-- [net] dctcp: loosen requirement to assert ECT(0) during 3WHS (Florian Westphal) [1212624]
-- [net] tcp: allow setting ecn via routing table (Florian Westphal) [1212624]
-- [net] tcp: move TCP_ECN_create_request out of header (Florian Westphal) [1212624]
-- [net] syncookies: split cookie_check_timestamp() into two functions (Florian Westphal) [1212624]
-- [net] syncookies: avoid magic values and document which-bit-is-what-option (Florian Westphal) [1212624]
-- [net] fib_trie: Fix regression in handling of inflate/halve failure (Alexander Duyck) [1205277]
-- [net] fib_trie: Address possible NULL pointer dereference in resize (Alexander Duyck) [1205277]
-- [net] fib_trie: Correctly handle case of key == 0 in leaf_walk_rcu (Alexander Duyck) [1205277]
-- [net] fib_trie: Add key vector to root, return parent key_vector in resize (Alexander Duyck) [1205277]
-- [net] fib_trie: Move parent from key_vector to tnode (Alexander Duyck) [1205277]
-- [net] fib_trie: Pull empty_children and full_children into tnode (Alexander Duyck) [1205277]
-- [net] fib_trie: Move rcu from key_vector to tnode, add accessors. (Alexander Duyck) [1205277]
-- [net] fib_trie: Add tnode struct as a container for fields not needed in key_vector (Alexander Duyck) [1205277]
-- [net] fib_trie: Rename tnode_child_length to child_length (Alexander Duyck) [1205277]
-- [net] fib_trie: replace tnode_get_child functions with get_child macros (Alexander Duyck) [1205277]
-- [net] fib_trie: Rename tnode to key_vector (Alexander Duyck) [1205277]
-- [net] fib_trie: Make fib_table rcu safe (Alexander Duyck) [1205277]
-- [net] fib_trie: Return pointer to tnode pointer in resize/inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Fix RCU bug and merge similar bits of inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Prevent allocating tnode if bits is too big for size_t (Alexander Duyck) [1205277]
-- [net] fib_trie: Update last spot w/ idx >> n->bits code and explanation (Alexander Duyck) [1205277]
-- [net] fib_trie: move leaf and tnode to occupy the same spot in the key vector (Alexander Duyck) [1205277]
-- [net] fib_trie: Update insert and delete to make use of tp from find_node (Alexander Duyck) [1205277]
-- [net] fib_trie: Fib find node should return parent (Alexander Duyck) [1205277]
-- [net] fib_trie: Fib walk rcu should take a tnode and key instead of a trie and a leaf (Alexander Duyck) [1205277]
-- [net] fib_trie: Only resize tnodes once instead of on each leaf removal in fib_table_flush (Alexander Duyck) [1205277]
-- [net] fib_trie: Remove leaf_info (Alexander Duyck) [1205277]
-- [net] fib_trie: Add slen to fib alias (Alexander Duyck) [1205277]
-- [net] fib_trie: Replace plen with slen in leaf_info (Alexander Duyck) [1205277]
-- [net] fib_trie: Convert fib_alias to hlist from list (Alexander Duyck) [1205277]
-- [net] fib_trie: Various clean-ups for handling slen (Alexander Duyck) [1205277]
-- [net] fib_trie: Move fib_find_alias to file where it is used (Alexander Duyck) [1205277]
-- [net] fib_trie: Use empty_children instead of counting empty nodes in stats collection (Alexander Duyck) [1205277]
-- [net] fib_trie: Add collapse() and should_collapse() to resize (Alexander Duyck) [1205277]
-- [net] fib_trie: Fall back to slen update on inflate/halve failure (Alexander Duyck) [1205277]
-- [net] fib_trie: Use index & (~0ul << n->bits) instead of index >> n->bits (Alexander Duyck) [1205277]
-- [net] fib_trie: Add tracking value for suffix length (Alexander Duyck) [1205277]
-- [net] fib_trie: Remove checks for index >= tnode_child_length from tnode_get_child (Alexander Duyck) [1205277]
-- [net] fib_trie: inflate/halve nodes in a more RCU friendly way (Alexander Duyck) [1205277]
-- [net] fib_trie: Push tnode flushing down to inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Push assignment of child to parent down into inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Add functions should_inflate and should_halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Move resize to after inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Push rcu_read_lock/unlock to callers (Alexander Duyck) [1205277]
-- [net] fib_trie: Use unsigned long for anything dealing with a shift by bits (Alexander Duyck) [1205277]
-- [net] fib_trie: Update meaning of pos to represent unchecked bits (Alexander Duyck) [1205277]
-- [net] fib_trie: Optimize fib_table_insert (Alexander Duyck) [1205277]
-- [net] fib_trie: Optimize fib_find_node (Alexander Duyck) [1205277]
-- [net] fib_trie: Optimize fib_table_lookup to avoid wasting time on loops/variables (Alexander Duyck) [1205277]
-- [net] fib_trie: Merge leaf into tnode (Alexander Duyck) [1205277]
-- [net] fib_trie: Merge tnode_free and leaf_free into node_free (Alexander Duyck) [1205277]
-- [net] fib_trie: Make leaf and tnode more uniform (Alexander Duyck) [1205277]
-- [net] fib_trie: Update usage stats to be percpu instead of global variables (Alexander Duyck) [1205277]
-- [net] fib_trie: Fix trie balancing issue if new node pushes down existing node (Alexander Duyck) [1205277]
-- [net] fib_trie: only calc for the un-first node (Alexander Duyck) [1205277]
-- [net] fib_trie: avoid a redundant bit judgement in inflate (Alexander Duyck) [1205277]
-- [net] fib_trie: Fix /proc/net/fib_trie when CONFIG_IP_MULTIPLE_TABLES is not defined (Alexander Duyck) [1205277]
-- [net] ipv6: gre: add x-netns support (Hannes Frederic Sowa) [1210346 1210390]
-- [net] gre: add x-netns support (Hannes Frederic Sowa) [1210346 1210390]
-- [net] ip6_gre: fix flowi6_proto value in xmit path (Hannes Frederic Sowa) [1210346 1210390]
-- [net] ipv6: Initialize ip6_tnl.hlen in gre tunnel even if no route is found (Hannes Frederic Sowa) [1210346 1210390]
-- [net] ipv6: protect skb->sk accesses from recursive dereference inside the stack (Hannes Frederic Sowa) [1129707]
-- [net] ip_tunnel: Change __skb_push back to skb_push (Florian Westphal) [1187739]
-- [net] ip_tunnel: fix possible rtable leak (Florian Westphal) [1187739]
-- [net] ip_tunnel: clear IPCB in ip_tunnel_xmit() in case dst_link_failure() is called (Florian Westphal) [1187739]
-- [net] ipv4: be friend with drop monitor (Florian Westphal) [1187739]
-- [net] ip_tunnel: Fix a memory corruption in ip_tunnel_xmit (Florian Westphal) [1187739]
-- [net] ip_tunnel: Do not use stale inner_iph pointer (Florian Westphal) [1187739]
-
-* Thu Apr 30 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-245.el7]
-- [mm] memcg: use proper memcg in limit bypass (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: do not allow task about to OOM kill to bypass the limit (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: do not declare OOM from __GFP_NOFAIL allocations (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [fs] buffer: move allocation failure loop into the allocator (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: handle non-error OOM situations more gracefully (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: do not trap chargers with full callstack on OOM (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: rework and document OOM waiting and wakeup (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: enable memcg OOM killer only for user faults (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [x86] finish user fault error path with fatal signal (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [arch] mm: pass userspace fault flag to generic fault handler (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [block] cfq-iosched: handle failure of cfq group allocation (Vivek Goyal) [1190716]
-- [crypto] qat - do not duplicate string containing firmware name (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix double release_firmware on error path (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - print ring name in debug output (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch CODE_INDENT issue (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch COMPARISON_TO_NULL issue (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch BIT_MACRO issues (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch CONCATENATED_STRING issues (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - checkpatch PARENTHESIS_ALIGNMENT and LOGICAL_CONTINUATIONS (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch CHECK_SPACING issues (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix typo (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - make error and info log messages more descriptive (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix typo in string (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - remove duplicate definition of Intel PCI vendor id (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - remove incorrect __exit markup (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - don't need qat_auth_state struct (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Ensure ipad and opad are zeroed (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - remove unnecessary include of atomic.h header file (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - use pci_wait_for_pending_transaction() (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - adf_ae_stop() is never called (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - correctly type a boolean (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix device reset flow (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Fix incorrect uses of memzero_explicit (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - add support for cbc(aes) ablkcipher (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Fix assumption that sg in and out will have the same nents (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix problem with coalescing enable logic (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Fix 64 bytes requests (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Use memzero_explicit (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Move BAR definitions to device specific module (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - misspelling typo - "reseting" should be "resetting" (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - cleanup unnecessary break checkpatch warning (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - cleanup coccicheck warning - NULL check before freeing functions (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix bad unlock balance (Nikolay Aleksandrov) [1173791]
-- [crypto] llvmlinux: Remove VLAIS from crypto/.../qat_algs.c (Nikolay Aleksandrov) [1173791]
-- [crypto] llvmlinux: Add macro to remove use of VLAIS in crypto code (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Removed unneeded partial state (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Fix typo in name of tasklet_struct (Nikolay Aleksandrov) [1173791]
-- [crypto] treewide: fix errors in printk (Nikolay Aleksandrov) [1173791]
-- [netdrv] netxen: Fix trivial typos in comments (Tony Camuso) [1187294]
-- [netdrv] netxen: Use eth_<foo>_addr instead of memset (Tony Camuso) [1187294]
-- [netdrv] netxen: Fix typo in printk (Tony Camuso) [1187294]
-- [netdrv] netxen: Delete an unnecessary check before the function call "kfree" (Tony Camuso) [1187294]
-- [netdrv] netxen: fix netxen_nic_poll() logic (Tony Camuso) [1187294]
-- [netdrv] netxen: Fix link event handling (Tony Camuso) [1187294]
-- [netdrv] netxen: Fix bug in Tx completion path (Tony Camuso) [1187294]
-- [netdrv] netxen: Fix BUG "sleeping function called from invalid context" (Tony Camuso) [1187294]
-- [netdrv] netxen: Convert remaining uses of pr_warning to pr_warn (Tony Camuso) [1187294]
-- [kernel] time: More core infrastructure for timespec64 (Prarit Bhargava) [1215108]
-- [kernel] time64: Add time64.h header and define struct timespec64 (Prarit Bhargava) [1215108]
-
-* Wed Apr 29 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-244.el7]
-- [kernel] timers: Reduce future __run_timers() latency for first add to empty list (Rik van Riel) [1193625]
-- [kernel] subject timers: Reduce future __run_timers() latency for newly emptied list (Rik van Riel) [1193625]
-- [kernel] timers: Reduce __run_timers() latency for empty list (Rik van Riel) [1193625]
-- [kernel] timers: Track total number of timers in list (Rik van Riel) [1193625]
-- [misc] genwqe: remove unnecessary version.h inclusion (Steve Best) [1182052]
-- [misc] assorted conversions to p[dD] (Steve Best) [1182052]
-- [misc] genwqe: check for error from get_user_pages_fast() (Steve Best) [1182052]
-- [misc] genwqe: Support blocking when DDCB queue is busy (Steve Best) [1182052]
-- [misc] genwqe: Fix checkpatch complaints (Steve Best) [1182052]
-- [misc] genwqe: Check return code of pci_sriov_enable (Steve Best) [1182052]
-- [misc] genwqe: Do not modify return code of genwqe_set_interrupt_capability (Steve Best) [1182052]
-- [misc] genwqe: Update author information (Steve Best) [1182052]
-- [misc] genwqe: Remove sysfs entry for driver version (Steve Best) [1182052]
-- [misc] genwqe: Check pci_get_totalvfs return code (Steve Best) [1182052]
-- [misc] genwqe: fix pci_enable_msi usage (Steve Best) [1182052]
-- [s390] dasd: fix inability to set a DASD device offline (Hendrik Brueckner) [1213888]
-- [s390] dasd: Fix unresumed device after suspend/resume having no paths (Hendrik Brueckner) [1213889]
-- [s390] af_iucv: fix AF_IUCV sendmsg() errno (Hendrik Brueckner) [1213885]
-- [s390] dasd: fix unresumed device after suspend/resume (Hendrik Brueckner) [1213884]
-- [scsi] megaraid_sas: revert: Add release date and update driver version (Tomas Henzl) [1207175]
-- [pci] Fix RHEL7 specific possible Null pointer dereference (Myron Stowe) [1215237]
-- [x86] mce: Fix regression. All error records should report via /dev/mcelog (Seth Jennings) [1183957]
-- [fs] isofs: Fix unchecked printing of ER records (Mateusz Guzik) [1180483] {CVE-2014-9584}
-- [fs] isofs: infinite loop in CE record entries (Jacob Tanenbaum) [1175248] {CVE-2014-9420}
-
-* Mon Apr 27 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-243.el7]
-- [fs] xfs: fix behaviour of XFS_IOC_FSSETXATTR on directories (Brian Foster) [1200652]
-- [fs] xfs: factor projid hint checking out of xfs_ioctl_setattr (Brian Foster) [1200652]
-- [fs] xfs: factor extsize hint checking out of xfs_ioctl_setattr (Brian Foster) [1200652]
-- [fs] xfs: XFS_IOCTL_SETXATTR can run in user namespaces (Brian Foster) [1200652]
-- [fs] xfs: kill xfs_ioctl_setattr behaviour mask (Brian Foster) [1200652]
-- [fs] xfs: disaggregate xfs_ioctl_setattr (Brian Foster) [1200652]
-- [fs] xfs: factor out xfs_ioctl_setattr transaciton preamble (Brian Foster) [1200652]
-- [fs] xfs: separate xflags from xfs_ioctl_setattr (Brian Foster) [1200652]
-- [fs] xfs: FSX_NONBLOCK is not used (Brian Foster) [1200652]
-- [fs] xfs: split metadata and log buffer completion to separate workqueues (Brian Foster) [1184177]
-- [fs] xfs: check xfs_buf_read_uncached returns correctly (Brian Foster) [1184177]
-- [fs] xfs: introduce xfs_buf_submit[_wait] (Brian Foster) [1184177]
-- [fs] xfs: kill xfs_bioerror_relse (Brian Foster) [1184177]
-- [fs] xfs: xfs_bioerror can die (Brian Foster) [1184177]
-- [fs] xfs: kill xfs_bdstrat_cb (Brian Foster) [1184177]
-- [fs] xfs: rework xfs_buf_bio_endio error handling (Brian Foster) [1184177]
-- [fs] xfs: xfs_buf_ioend and xfs_buf_iodone_work duplicate functionality (Brian Foster) [1184177]
-- [fs] xfs: synchronous buffer IO needs a reference (Brian Foster) [1184177]
-- [fs] xfs: Keep sb_bad_features2 consistent with sb_features2 (Brian Foster) [1184177]
-- [fs] xfs: fix set-but-unused warnings (Brian Foster) [1184177]
-- [fs] xfs: move type conversion functions to xfs_dir.h (Brian Foster) [1184177]
-- [fs] xfs: move ftype conversion functions to libxfs (Brian Foster) [1184177]
-- [fs] xfs: active inodes stat is broken (Brian Foster) [1184177]
-- [fs] xfs: cleanup xfs_bmse_merge returns (Brian Foster) [1184177]
-- [fs] xfs: cleanup xfs_bmse_shift_one goto mess (Brian Foster) [1184177]
-- [fs] xfs: fix premature enospc on inode allocation (Brian Foster) [1184177]
-- [fs] xfs: overflow in xfs_iomap_eof_align_last_fsb (Brian Foster) [1184177]
-- [fs] xfs: fix simple_return.cocci warning in xfs_bmse_shift_one (Brian Foster) [1184177]
-- [fs] xfs: fix simple_return.cocci warning in xfs_file_readdir (Brian Foster) [1184177]
-- [fs] libxfs: fix simple_return.cocci warnings (Brian Foster) [1184177]
-- [fs] xfs: remove unnecessary null checks (Brian Foster) [1184177]
-- [fs] xfs: merge xfs_inum.h into xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: move most of xfs_sb.h to xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: merge xfs_ag.h into xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: move acl structures to xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: merge xfs_dinode.h into xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: allow lazy sb counter sync during filesystem freeze sequence (Brian Foster) [1184177]
-- [fs] xfs: fix error handling in xfs_qm_log_quotaoff() (Brian Foster) [1184177]
-- [fs] xfs: replace on-stack xfs_trans_res with pointer in xfs_create() (Brian Foster) [1184177]
-- [fs] xfs: track bulkstat progress by agino (Brian Foster) [1184177]
-- [fs] xfs: bulkstat error handling is broken (Brian Foster) [1184177]
-- [fs] xfs: bulkstat main loop logic is a mess (Brian Foster) [1184177]
-- [fs] xfs: bulkstat chunk-formatter has issues (Brian Foster) [1184177]
-- [fs] xfs: bulkstat chunk formatting cursor is broken (Brian Foster) [1184177]
-- [fs] xfs: bulkstat btree walk doesn't terminate (Brian Foster) [1184177]
-- [fs] xfs: rework zero range to prevent invalid i_size updates (Brian Foster) [1184177]
-- [fs] xfs: Check error during inode btree iteration in xfs_bulkstat() (Brian Foster) [1184177]
-- [fs] xfs: bulkstat doesn't release AGI buffer on error (Brian Foster) [1184177]
-- [fs] xfs: fix agno increment in xfs_inumbers() loop (Brian Foster) [1184177]
-- [fs] xfs: xfs_iflush_done checks the wrong log item callback (Brian Foster) [1184177]
-- [fs] xfs: check for null dquot in xfs_quota_calc_throttle() (Brian Foster) [1184177]
-- [fs] xfs: fix crc field handling in xfs_sb_to/from_disk (Brian Foster) [1184177]
-- [fs] xfs: don't send null bp to xfs_trans_brelse() (Brian Foster) [1184177]
-- [fs] xfs: check for inode size overflow in xfs_new_eof() (Brian Foster) [1184177]
-- [fs] xfs: kill time.h (Brian Foster) [1184177]
-- [fs] xfs: compat_xfs_bstat does not have forkoff (Brian Foster) [1184177]
-- [fs] xfs: Don't use xfs_buf_iowait in the delwri buffer code (Brian Foster) [1184177]
-- [fs] xfs: force the log before shutting down (Brian Foster) [1184177]
-- [fs] xfs: annotate user variables passed as void (Brian Foster) [1184177]
-- [fs] xfs: xfs_kset should be static (Brian Foster) [1184177]
-- [fs] xfs: fix use of agi_newino in finobt lookup (Brian Foster) [1184177]
-- [fs] xfs: refactor recovery transaction start handling (Brian Foster) [1184177]
-- [fs] xfs: reorganise transaction recovery item code (Brian Foster) [1184177]
-- [fs] xfs: fix double free in xlog_recover_commit_trans (Brian Foster) [1184177]
-- [fs] xfs: recovery of XLOG_UNMOUNT_TRANS leaks memory (Brian Foster) [1184177]
-- [fs] xfs: refactor xlog_recover_process_data() (Brian Foster) [1184177]
-- [fs] xfs: flush entire last page of old EOF on truncate up (Brian Foster) [1184177]
-- [fs] xfs: xfs_swap_extent_flush can be static (Brian Foster) [1184177]
-- [fs] xfs: xfs_buf_write_fail_rl_state can be static (Brian Foster) [1184177]
-- [fs] xfs: xfs_rtget_summary can be static (Brian Foster) [1184177]
-- [fs] xfs: remove second xfs_quota.h inclusion in xfs_icache.c (Brian Foster) [1184177]
-- [fs] xfs: don't ASSERT on corrupt ftype (Brian Foster) [1184177]
-- [fs] xfs: xlog_cil_force_lsn doesn't always wait correctly (Brian Foster) [1184177]
-- [fs] xfs: only writeback and truncate pages for the freed range (Brian Foster) [1184177]
-- [fs] xfs: writeback and inval. file range to be shifted by collapse (Brian Foster) [1184177]
-- [fs] xfs: refactor single extent shift into xfs_bmse_shift_one() helper (Brian Foster) [1184177]
-- [fs] xfs: refactor shift-by-merge into xfs_bmse_merge() helper (Brian Foster) [1184177]
-- [fs] xfs: track collapse via file offset rather than extent index (Brian Foster) [1184177]
-- [fs] xfs: ensure WB_SYNC_ALL writeback handles partial pages correctly (Brian Foster) [1184177]
-- [fs] xfs: remove rbpp check from xfs_rtmodify_summary_int (Brian Foster) [1184177]
-- [fs] xfs: combine xfs_rtmodify_summary and xfs_rtget_summary (Brian Foster) [1184177]
-- [fs] xfs: combine xfs_dir_canenter into xfs_dir_createname (Brian Foster) [1184177]
-- [fs] xfs: check resblks before calling xfs_dir_canenter (Brian Foster) [1184177]
-- [fs] xfs: deduplicate xlog_do_recovery_pass() (Brian Foster) [1184177]
-- [fs] xfs: lseek: the "whence" argument is called "whence" (Brian Foster) [1184177]
-- [fs] xfs: combine xfs_seek_hole & xfs_seek_data (Brian Foster) [1184177]
-- [fs] xfs: export log_recovery_delay to delay mount time log recovery (Brian Foster) [1184177]
-- [fs] xfs: add debug sysfs attribute set (Brian Foster) [1184177]
-- [fs] xfs: trim eofblocks before collapse range (Brian Foster) [1184177]
-- [fs] xfs: xfs_file_collapse_range is delalloc challenged (Brian Foster) [1184177]
-- [fs] xfs: don't log inode unless extent shift makes extent modifications (Brian Foster) [1184177]
-- [fs] xfs: kill xfs_vnode.h (Brian Foster) [1184177]
-- [fs] xfs: kill VN_MAPPED (Brian Foster) [1184177]
-- [fs] xfs: kill VN_CACHED (Brian Foster) [1184177]
-- [fs] xfs: kill VN_DIRTY() (Brian Foster) [1184177]
-- [fs] xfs: introduce xfs_bulkstat_ag_ichunk (Brian Foster) [1184177]
-- [fs] xfs: require 64-bit sector_t (Brian Foster) [1184177]
-- [fs] xfs: remove XFS_IS_OQUOTA_ON macros (Brian Foster) [1184177]
-- [fs] xfs: tidy up xfs_set_inode32 (Brian Foster) [1184177]
-- [fs] xfs: mark xfs_qm_quotacheck as static (Brian Foster) [1184177]
-- [fs] xfs: introduce xfs_bulkstat_grab_ichunk (Brian Foster) [1184177]
-- [fs] xfs: introduce xfs_bulkstat_ichunk_ra (Brian Foster) [1184177]
-- [fs] xfs: fix error handling at xfs_bulkstat (Brian Foster) [1184177]
-- [fs] xfs: remove redundant user buffer count checks at xfs_bulkstat (Brian Foster) [1184177]
-- [fs] xfs: fix error handling at xfs_inumbers (Brian Foster) [1184177]
-- [fs] xfs: consolidate xfs_inumbers (Brian Foster) [1184177]
-- [fs] xfs: remove xfs_bulkstat_single (Brian Foster) [1184177]
-- [fs] xfs: remove redundant stat assignment in xfs_bulkstat_one_int (Brian Foster) [1184177]
-- [fs] xfs: add log attributes for log lsn and grant head data (Brian Foster) [1184177]
-- [fs] xfs: add xlog sysfs kobject and attribute handlers (Brian Foster) [1184177]
-- [fs] xfs: add xfs_mount sysfs kobject (Brian Foster) [1184177]
-- [fs] xfs: add a sysfs kset (Brian Foster) [1184177]
-- [fs] xfs: global error sign conversion (Brian Foster) [1184177]
-- [fs] libxfs: move source files (Brian Foster) [1184177]
-- [fs] libxfs: move header files (Brian Foster) [1184177]
-- [fs] xfs: create libxfs infrastructure (Brian Foster) [1184177]
-- [fs] xfs: Nuke XFS_ERROR macro (Brian Foster) [1184177]
-- [fs] xfs: return is not a function (Brian Foster) [1184177]
-- [fs] xfs: fix xfs_da_args sparse warning in xfs_readdir (Brian Foster) [1184177]
-- [fs] xfs: small cleanup in xfs_lowbit64() (Brian Foster) [1184177]
-- [fs] xfs: kill xfs_buf_geterror() (Brian Foster) [1184177]
-- [fs] xfs: remove redundant geometry information from xfs_da_state (Brian Foster) [1184177]
-- [fs] xfs: replace attr LBSIZE with xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: pass xfs_da_args to xfs_attr_leaf_newentsize (Brian Foster) [1184177]
-- [fs] xfs: use xfs_da_geometry for block size in attr code (Brian Foster) [1184177]
-- [fs] xfs: remove mp->m_dir_geo from directory logging (Brian Foster) [1184177]
-- [fs] xfs: reduce direct usage of mp->m_dir_geo (Brian Foster) [1184177]
-- [fs] xfs: move node entry counts to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert dir/attr btree threshold to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert m_dirblksize to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert m_dirblkfsbs to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert directory segment limits to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert directory db conversion to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert directory dablk conversion to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert dir byte/off conversion to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: kill XFS_DIR2...FIRSTDB macros (Brian Foster) [1184177]
-- [fs] xfs: move directory block translatiosn to xfs_dir2_priv.h (Brian Foster) [1184177]
-- [fs] xfs: introduce directory geometry structure (Brian Foster) [1184177]
-- [fs] xfs: fix compile error when libxfs header used in C++ code (Brian Foster) [1184177]
-- [fs] xfs: fix infinite loop at xfs_vm_writepage on 32bit system (Brian Foster) [1184177]
-- [fs] xfs: remove XFS_TRANS_RESERVE in collapse range (Brian Foster) [1184177]
-- [fs] xfs: remove shared supberlock feature checking (Brian Foster) [1184177]
-- [fs] xfs: don't need dirv2 checks anymore (Brian Foster) [1184177]
-- [fs] xfs: turn NLINK feature on by default (Brian Foster) [1184177]
-- [fs] xfs: make superblock version checks reflect reality (Brian Foster) [1184177]
-- [fs] xfs: pass struct da_args to xfs_attr_calc_size (Brian Foster) [1184177]
-- [fs] xfs: simplify attr name setup (Brian Foster) [1184177]
-- [fs] xfs: fold xfs_attr_remove_int into xfs_attr_remove (Brian Foster) [1184177]
-- [fs] xfs: fold xfs_attr_get_int into xfs_attr_get (Brian Foster) [1184177]
-- [fs] xfs: fold xfs_attr_set_int into xfs_attr_set (Brian Foster) [1184177]
-- [fs] xfs: remove dquot hints (Brian Foster) [1184177]
-- [fs] xfs: enable the finobt feature on v5 superblocks (Brian Foster) [1184177]
-- [fs] xfs: report finobt status in fs geometry (Brian Foster) [1184177]
-- [fs] xfs: add finobt support to growfs (Brian Foster) [1184177]
-- [fs] xfs: update the finobt on inode free (Brian Foster) [1184177]
-- [fs] xfs: refactor xfs_difree() inobt bits into xfs_difree_inobt() helper (Brian Foster) [1184177]
-- [fs] xfs: use and update the finobt on inode allocation (Brian Foster) [1184177]
-- [fs] xfs: insert newly allocated inode chunks into the finobt (Brian Foster) [1184177]
-- [fs] xfs: update inode allocation/free transaction reservations for finobt (Brian Foster) [1184177]
-- [fs] xfs: support the XFS_BTNUM_FINOBT free inode btree type (Brian Foster) [1184177]
-- [fs] xfs: reserve v5 superblock read-only compat. feature bit for finobt (Brian Foster) [1184177]
-- [fs] xfs: refactor xfs_ialloc_btree.c to support multiple inobt numbers (Brian Foster) [1184177]
-- [fs] xfs: add filestream allocator tracepoints (Brian Foster) [1184177]
-- [fs] xfs: remove xfs_filestream_associate (Brian Foster) [1184177]
-- [fs] xfs: don't create a slab cache for filestream items (Brian Foster) [1184177]
-- [fs] xfs: rewrite the filestream allocator using the dentry cache (Brian Foster) [1184177]
-- [fs] xfs: remove XFS_IFILESTREAM (Brian Foster) [1184177]
-- [fs] xfs: embedd mru_elem into parent structure (Brian Foster) [1184177]
-- [fs] xfs: handle duplicate entries in xfs_mru_cache_insert (Brian Foster) [1184177]
-- [fs] xfs: split xfs_bmap_btalloc_nullfb (Brian Foster) [1184177]
-- [fs] xfs: don't try to use the filestream allocator for metadata allocations (Brian Foster) [1184177]
-- [fs] xfs: remove unused calculation in xfs_dir2_sf_addname() (Brian Foster) [1184177]
-- [fs] xfs: remove pointless pointer increment in xfs_dir2_block_compact() (Brian Foster) [1184177]
-- [fs] xfs: remove unused trans pointer arg from xlog_recover_unmount_trans() (Brian Foster) [1184177]
-- [fs] xfs: remove unused ail pointer arg from xfs_trans_ail_cursor_done() (Brian Foster) [1184177]
-- [fs] xfs: remove unused xfs_mount arg from xfs_symlink_hdr_ok() (Brian Foster) [1184177]
-- [fs] xfs: remove unused bp arg from xfs_iflush_fork() (Brian Foster) [1184177]
-- [fs] xfs: remove unused pag ptr arg from iterator execute functions (Brian Foster) [1184177]
-- [fs] xfs: remove unused length arg from alloc_block ops (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_calc_dquots_per_chunk() (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_dir2 dataptr/byte functions (Brian Foster) [1184177]
-- [fs] xfs: remove unused tp arg from xfs_da_reada_buf & callers (Brian Foster) [1184177]
-- [fs] xfs: remove unused bip arg from xfs_buf_item_log_segment() (Brian Foster) [1184177]
-- [fs] xfs: remove unused flags arg from _xfs_buf_get_pages() (Brian Foster) [1184177]
-- [fs] xfs: remove unused args from xfs_alloc_buftarg() (Brian Foster) [1184177]
-- [fs] xfs: remove unused blocksize arg from xfs_setsize_buftarg() (Brian Foster) [1184177]
-- [fs] xfs: remove unused level arg from xfs_btree_read_buf_block() (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_bmap_forkoff_reset() (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_bmdr_maxrecs() (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_attr3_rmt_hdr_ok() (Brian Foster) [1184177]
-- [fs] xfs: remove unused tp arg from xfs_bmap_last_offset() and callers (Brian Foster) [1184177]
-- [fs] xfs: correct error sign on COLLAPSE_RANGE errors (Brian Foster) [1184177]
-- [fs] xfs: collapse range is delalloc challenged (Brian Foster) [1184177]
-- [fs] xfs: move falloc collapse range check into the filesystem methods (Brian Foster) [1184177]
-- [fs] xfs: Add support for FALLOC_FL_ZERO_RANGE (Brian Foster) [1184177]
-- [fs] xfs: use NOIO contexts for vm_map_ram (Brian Foster) [1184177]
-- [fs] xfs: fix directory inode iolock lockdep false positive (Brian Foster) [1184177]
-- [fs] xfs: allocate xfs_da_args to reduce stack footprint (Brian Foster) [1184177]
-- [fs] xfs: Add support FALLOC_FL_COLLAPSE_RANGE for fallocate (Brian Foster) [1184177]
-- [fs] xfs: always use unwritten extents for direct I/O writes (Brian Foster) [1184177]
-- [fs] xfs: factor prid related codes into xfs_get_initial_prid() (Brian Foster) [1184177]
-
-* Thu Apr 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-242.el7]
-- [netdrv] hyperv: Add processing of MTU reduced by the host (Vitaly Kuznetsov) [1196420]
-- [x86] crypto: aesni - fix memory usage in GCM decryption (Kurt Stutsman) [1212178] {CVE-2015-3331}
-- [usb] fix use-after-free bug in usb_hcd_unlink_urb() (Don Zickus) [1187256]
-- [pci] Mark RTL8110SC INTx masking as broken (Myron Stowe) [1205911]
-- [powerpc] pci: Clip bridge windows to fit in upstream windows (Myron Stowe) [1110898]
-- [x86] pci: Clip bridge windows to fit in upstream windows (Myron Stowe) [1110898]
-- [pci] Add pci_claim_bridge_resource() to clip window if necessary (Myron Stowe) [1110898]
-- [pci] Add pci_bus_clip_resource() to clip to fit upstream window (Myron Stowe) [1110898]
-- [pci] Pass bridge device, not bus, when updating bridge windows (Myron Stowe) [1110898]
-- [pci] Add missing MEM_64 mask in pci_assign_unassigned_bridge_resources() (Myron Stowe) [1110898]
-- [pci] maintainers: Update mx6 PCI driver maintainer's email (Myron Stowe) [1110898]
-- [pci] Add function 1 DMA alias quirk for HighPoint RocketRaid 642L (Myron Stowe) [1110898]
-- [pci] msi: Fix memory leak in free_msi_irqs() (Myron Stowe) [1110898]
-- [pci] Merge multi-line quoted strings (Myron Stowe) [1110898]
-- [pci] Whitespace cleanup (Myron Stowe) [1110898]
-- [pci] Move EXPORT_SYMBOL so it immediately follows function/variable (Myron Stowe) [1110898]
-- [pci] Make pci_bus_add_device() void (Myron Stowe) [1110898]
-- [pci] Introduce new device binding path using pci_dev.driver_override (Myron Stowe) [1110898]
-- [pci] cpqphp: Fix possible null pointer dereference (Myron Stowe) [1110898]
-- [pci] Fix return value from pci_user_{read, write}_config_*() (Myron Stowe) [1110898]
-- [pci] Turn pcibios_penalize_isa_irq() into a weak function (Myron Stowe) [1110898]
-- [pci] pcmcia: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] pciehp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] acpiphp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] cpcihp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] shpchp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] rpaphp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [x86] pci: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] nvme: Implement PCIe reset notification callback (Myron Stowe) [1110898]
-- [pci] Notify driver before and after device reset (Myron Stowe) [1110898]
-- [x86] pci: Clean up and mark early_root_info_init() as deprecated (Myron Stowe) [1110898]
-- [pci] dma-api: Update dma_pool_create ()and dma_pool_alloc() descriptions (Myron Stowe) [1110898]
-- [pci] dma-api: Fix duplicated word in DMA-API-HOWTO.txt (Myron Stowe) [1110898]
-- [pci] dma-api: Capitalize "CPU" consistently (Myron Stowe) [1110898]
-- [pci] Add resource allocation comments (Myron Stowe) [1110898]
-- [pci] Simplify __pci_assign_resource() coding style (Myron Stowe) [1110898]
-- [pci] Change pbus_size_mem() return values to be more conventional (Myron Stowe) [1110898]
-- [pci] Restrict 64-bit prefetchable bridge windows to 64-bit resources (Myron Stowe) [1110898]
-- [pci] Support BAR sizes up to 8GB (Myron Stowe) [1110898]
-- [x86] gart: Tidy messages and add bridge device info (Myron Stowe) [1110898]
-- [x86] gart: Replace printk() with pr_info() (Myron Stowe) [1110898]
-- [x86] pci: Move pcibios_assign_resources() annotation to definition (Myron Stowe) [1110898]
-- [pci] Remove pcibios_add_platform_entries() (Myron Stowe) [1110898]
-- [s390] pci: use pdev->dev.groups for attribute creation (Myron Stowe) [1110898]
-- [x86] pci: Work around AMD Fam15h BIOSes that fail to provide _PXM (Myron Stowe) [1110898]
-- [x86] pci: Warn if we have to "guess" host bridge node information (Myron Stowe) [1110898]
-- [pci] dma-api: Change dma_declare_coherent_memory() CPU address to phys_addr_t (Myron Stowe) [1110898]
-- [pci] dma-api: Clarify physical/bus address distinction (Myron Stowe) [1110898]
-- [pci] msi: Remove pci_enable_msi_block() (Myron Stowe) [1110898]
-- [pci] Move Open Firmware devspec attribute to PCI common code (Myron Stowe) [1110898]
-- [pci] Fix use of uninitialized MPS value (Myron Stowe) [1110898]
-- [pci] Remove dead code (Myron Stowe) [1110898]
-- [pci] maintainers: Add arch/x86/kernel/quirks.c to PCI file patterns (Myron Stowe) [1110898]
-- [pci] Remove unnecessary __ref annotations (Myron Stowe) [1110898]
-- [pci] Add new ID for Intel GPU "spurious interrupt" quirk (Myron Stowe) [1110898]
-- [pci] genwqe: Use pci_enable_msi_exact() instead of pci_enable_msi_block() (Myron Stowe) [1110898]
-- [pci] Fix incorrect vgaarb conditional in WARN_ON() (Myron Stowe) [1110898]
-- [x86] pci: Mark ATI SBx00 HPET BAR as IORESOURCE_PCI_FIXED (Myron Stowe) [1110898]
-- [x86] pci: Don't try to move IORESOURCE_PCI_FIXED resources (Myron Stowe) [1110898]
-- [x86] pci: Fix Broadcom CNB20LE unintended sign extension (Myron Stowe) [1110898]
-- [pci] Use designated initialization in PCI_VDEVICE (Myron Stowe) [1110898]
-- [pci] Allow hotplug service drivers to operate in polling mode (Myron Stowe) [1110898]
-- [pci] pciehp: Acknowledge spurious "cmd completed" event (Myron Stowe) [1110898]
-- [pci] Remove old serial device IDs (Myron Stowe) [1110898]
-- [pci] Remove unnecessary includes of <linux/init.h> (Myron Stowe) [1110898]
-- [pci] pciehp: Use PCI_EXP_SLTCAP_PSN define (Myron Stowe) [1110898]
-- [pci] hotplug: Remove unnecessary "dev->bus" test (Myron Stowe) [1110898]
-- [pci] msi: Simplify populate_msi_sysfs() (Myron Stowe) [1110898]
-- [pci] portdrv: Use pci_enable_msix_exact() instead of pci_enable_msix() (Myron Stowe) [1110898]
-- [powerpc] kvm: ppc: book3s hv: Enable for little endian hosts (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Fix ABIv2 on LE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Access XICS in BE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Access host lppaca and shadow slb in BE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Access guest VPA in BE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Make HTAB code LE host aware (David Gibson) [1193257]
-- [powerpc] Add asm helpers for BE 32bit load/store (David Gibson) [1193257]
-- [powerpc] kvm: ppc: Assembly functions exported to modules need _GLOBAL_TOC() (David Gibson) [1193257]
-- [powerpc] kvm: ppc: rtas: Do byte swaps explicitly (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s pr: Fix ABIv2 on LE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Fix ABIv2 indirect branch issue (David Gibson) [1193257]
-- [powerpc] perf: add missing put_cpu_var in power_pmu_event_init (Jan Stancek) [1202283]
-- [s390] watchdog: support for KVM hypervisors and delete pr_info messages (Hendrik Brueckner) [1182310]
-- [s390] watchdog: enable KEEPALIVE for /dev/watchdog (Hendrik Brueckner) [1182310]
-- [s390] kernel: Update /proc/sysinfo file with Extended Name and UUID (Hendrik Brueckner) [1182311]
-- [s390] qeth: Display adjacent switch attributes (Hendrik Brueckner) [1182287]
-- [x86] kvm: vmx: fix oops with explicit flexpriority=0 option (Radim Krcmar) [1185276]
-
-* Tue Apr 21 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-241.el7]
-- [hv] hv_fcopy: drop the obsolete message on transfer failure (Vitaly Kuznetsov) [1162100]
-- [virtio] virtio_ring: Update weak barriers to use dma_wmb/rmb (Alexander Duyck) [1205268]
-- [arch] Add lightweight memory barriers dma_rmb() and dma_wmb() (Alexander Duyck) [1205268]
-- [arch] Cleanup read_barrier_depends() and comments (Alexander Duyck) [1205268]
-- [arch] Clean up asm/barrier.h implementations using asm-generic/barrier.h (Alexander Duyck) [1205268]
-- [x86] kernel: Remove CONFIG_X86_OOSTORE (Alexander Duyck) [1205268]
-- [kernel] sched/idle: Optimize try-to-wake-up IPI (Rik van Riel) [1197889]
-- [kernel] sched, trace: Add a tracepoint for IPI-less remote wakeups (Rik van Riel) [1197889]
-- [kernel] sched/idle: Avoid spurious wakeup IPIs (Rik van Riel) [1197889]
-- [kernel] sched/idle: Clear polling before descheduling the idle thread (Rik van Riel) [1197889]
-- [x86] sched/idle: Switch from TS_POLLING to TIF_POLLING_NRFLAG (Rik van Riel) [1197889]
-- [hv] vss: Fast propagation of userspace communication failure (Vitaly Kuznetsov) [1092780]
-- [hv] vss: Introduce timeout for communication with userspace (Vitaly Kuznetsov) [1092780]
-- [pci] Increase IBM ipr SAS Crocodile BARs to at least system page size (Steve Best) [1211951]
-- [thermal] intel_powerclamp: add id for broadwell server (Steve Best) [1169554]
-- [powerpc] Fail remap_4k_pfn() if PFN doesn't fit inside PTE (Steve Best) [1211954]
-- [kernel] perf: Fix events installation during moving group (Jiri Olsa) [1066402]
-- [x86] perf_event_intel_uncore: Make sure only uncore events are collected (Jiri Olsa) [1066402]
-- [kernel] futex: Mention key referencing differences between shared and private futexes (Larry Woodman) [1205862]
-- [kernel] futex: Ensure get_futex_key_refs() always implies a barrier (Larry Woodman) [1205862]
-- [scripts] kconfig: Fix warning "'jump' may be used uninitialized" (Prarit Bhargava) [1184972]
-- [netdrv] bnx2x: fix encapsulation features on 57710/57711 (Michal Schmidt) [1164997]
-- [netdrv] be2net: use PCI MMIO read instead of config read for errors (Ivan Vecera) [1171839]
-- [netdrv] be2net: Fix TX rate limiting on Lancer/Skyhawk-R VFs (Ivan Vecera) [1186613]
-- [netdrv] be2net: fail VF link config change via ndo_set_vf_link_state() on BE3/Lancer (Ivan Vecera) [1186607]
-- [pci] Add ACS quirk for Emulex NICs (Ivan Vecera) [1183443]
-- [pci] Test for std config alias when testing extended config space (Myron Stowe) [1205915]
-- [hv] hv_balloon: correctly handle num_pages>INT_MAX case (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: correctly handle val.freeram<num_pages case (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: survive ballooning request with num_pages=0 (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: eliminate jumps in piecewiese linear floor function (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: keep locks balanced on add_memory() failure (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: refuse to balloon below the floor (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: report offline pages as being used (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: eliminate the trylock path in acquire/release_region_mutex (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: Don't post pressure status from interrupt context (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: Fix a locking bug in the balloon driver (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: Make adjustments in computing the floor (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: avoid memory leak on alloc_error of 2MB memory block (Vitaly Kuznetsov) [1203790]
-- [vfio] Rework offsetofend() (Alex Williamson) [1206275]
-- [vfio] always select ANON_INODES (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix the check on pci device type in vfio_pci_probe() (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix wrong MSI interrupt count (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Add missing break to enable VFIO_PCI_ERR_IRQ_INDEX (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Add device request interface (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Generalize setup of simple eventfds (Alex Williamson) [1206275]
-- [vfio] Add and use device request op for vfio bus drivers (Alex Williamson) [1206275]
-- [vfio] Tie IOMMU group reference to vfio group (Alex Williamson) [1206275]
-- [vfio] Add device tracking during unbind (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Add conditional rescheduling (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Chunk contiguous reserved/invalid page mappings (Alex Williamson) [1206275]
-- [vfio] iommu_type1: DMA unmap chunking (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix remove path locking (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Attempt bus/slot reset on release (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Use mutex around open, release, and remove (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Release devices with BusMaster disabled (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Avoid overflow (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix unchecked return value (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix sizing of DPA and THP express capabilities (Alex Williamson) [1206275]
-- [vfio] fio: Support for DMA coherent IOMMUs (Alex Williamson) [1206275]
-- [vfio] Add external user check extension interface (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Add extension to test DMA cache coherence of IOMMU (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Multi-IOMMU domain support (Alex Williamson) [1206275]
-- [acpi] processor: Convert apic_id to phys_id to make it arch agnostic (Prarit Bhargava) [1201167]
-- [acpi] processor: Make it possible to get local x2apic id via _MAT (Prarit Bhargava) [1201167]
-- [acpi] scan: bail out early if failed to parse APIC ID for CPU (Prarit Bhargava) [1201167]
-- [acpi] processor: use apic_id and remove duplicated _MAT evaluation (Prarit Bhargava) [1201167]
-
-* Wed Apr 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-240.el7]
-- [net] neigh: Netlink notification for administrative NUD state change (Jiri Pirko) [1210373]
-- [net] netfilter: nf_tables: fix flush ruleset chain dependencies (Jiri Pirko) [1192881] {CVE-2015-1573}
-- [net] pktgen: disable xmit_clone on virtual devices (Alexander Duyck) [1205266]
-- [net] packet: fix packet_direct_xmit for BQL enabled drivers (Alexander Duyck) [1205266]
-- [net] pktgen: packet bursting via skb->xmit_more (Alexander Duyck) [1205266]
-- [net] pktgen: add flag NO_TIMESTAMP to disable timestamping (Alexander Duyck) [1205266]
-- [net] qdisc: dequeue bulking also pickup GSO/TSO packets (Alexander Duyck) [1205266]
-- [net] qdisc: bulk dequeue support for qdiscs with TCQ_F_ONETXQUEUE (Alexander Duyck) [1205266]
-- [net] qdisc: validate frames going through the direct_xmit path (Alexander Duyck) [1205266]
-- [net] qdisc: exit case fixes for skb list handling in qdisc layer (Alexander Duyck) [1205266]
-- [net] qdisc: adjustments for API allowing skb list xmits (Alexander Duyck) [1205266]
-- [net] xmit_list() becomes dev_hard_start_xmit() (Alexander Duyck) [1205266]
-- [net] Don't keep around original SKB when we software segment GSO frames (Alexander Duyck) [1205266]
-- [net] Validate xmit SKBs right when we pull them out of the qdisc (Alexander Duyck) [1205266]
-- [net] Separate out SKB validation logic from transmit path (Alexander Duyck) [1205266]
-- [net] Have xmit_list() signal more==true when appropriate (Alexander Duyck) [1205266]
-- [net] Pass a "more" indication down into netdev_start_xmit() code paths (Alexander Duyck) [1205266]
-- [net] Move main gso loop out of dev_hard_start_xmit() into helper (Alexander Duyck) [1205266]
-- [net] Create xmit_one() helper for dev_hard_start_xmit() (Alexander Duyck) [1205266]
-- [net] move inline skb_needs_linearize helper to header (Alexander Duyck) [1205266]
-- [net] Do txq_trans_update() in netdev_start_xmit() (Alexander Duyck) [1205266]
-- [netdrv] virtio_net: flush when in xmit_more mode and under descriptor pressure (Alexander Duyck) [1205266]
-- [netdrv] igb: flush when in xmit_more mode and under descriptor pressure (Alexander Duyck) [1205266]
-- [netdrv] ixgbe: flush when in xmit_more mode and under descriptor pressure (Alexander Duyck) [1205266]
-- [netdrv] ixgbe: support skb->xmit_more in netdev_ops->ndo_start_xmit() (Alexander Duyck) [1205266]
-- [net] Remove ndo_xmit_flush netdev operation, use signalling instead (Alexander Duyck) [1205266]
-- [net] Add ops->ndo_xmit_flush() (Alexander Duyck) [1205266]
-- [net] add skb_get_tx_queue() helper (Alexander Duyck) [1205266]
-- [net] netpoll: Only call ndo_start_xmit from a single place (Alexander Duyck) [1205266]
-- [net] Pull out core bits of __netdev_alloc_skb and add __napi_alloc_skb (Alexander Duyck) [1205273]
-- [net] Split netdev_alloc_frag into __alloc_page_frag and add __napi_alloc_frag (Alexander Duyck) [1205273]
-- [net] nf_conntrack: reserve two bytes for nf_ct_ext->len (Marcelo Leitner) [1206164] {CVE-2014-9715}
-- [net] ipv6: Partial checksum only UDP packets (Vlad Yasevich) [1105064]
-- [net] ipv6: Allow for partial checksums on non-ufo packets (Vlad Yasevich) [1105064]
-- [net] udpv6: Add lockless sendmsg() support (Vlad Yasevich) [1105064]
-- [net] ipv6: Introduce udpv6_send_skb() (Vlad Yasevich) [1105064]
-- [net] ipv6: introduce ipv6_make_skb (Vlad Yasevich) [1105064]
-- [net] ipv6: Append sending data to arbitrary queue (Vlad Yasevich) [1105064]
-- [net] ipv6: pull cork initialization into its own function (Vlad Yasevich) [1105064]
-- [net] do not enable tx-nocache-copy by default (Alexander Duyck) [1205271]
-- [net] tcp: add DCTCP congestion control algorithm (Florian Westphal) [970613]
-- [net] tcp: more detailed ACK events and events for CE marked packets (Florian Westphal) [970613]
-- [net] tcp: split ack slow/fast events from cwnd_event (Florian Westphal) [970613]
-- [net] tcp: add flag for ca to indicate that ECN is required (Florian Westphal) [970613]
-- [net] tcp: assign tcp cong_ops when tcp sk is created (Florian Westphal) [970613]
-- [net] tcp: don't include Fast Open option in SYN-ACK on pure SYN-data (Florian Westphal) [1151756]
-- [net] tcp: abort orphan sockets stalling on zero window probes (Florian Westphal) [1151756]
-- [net] tcp: fix more NULL deref after prequeue changes (Florian Westphal) [1151756]
-- [net] tcp: fix possible NULL dereference in tcp_vX_send_reset() (Florian Westphal) [1151756]
-- [net] skb_fclone_busy() needs to detect orphaned skb (Florian Westphal) [1151756]
-- [net] cleanup and document skb fclone layout (Florian Westphal) [1151756]
-- [net] tcp: md5: do not use alloc_percpu() (Florian Westphal) [1151756]
-- [net] tcp: tcp_conn_request: fix build error when IPv6 is disabled (Florian Westphal) [1151756]
-- [net] introduce __skb_header_release() (Florian Westphal) [1151756]
-- [net] tcp: add coalescing attempt in tcp_ofo_queue() (Florian Westphal) [1151756]
-- [net] tcp: avoid possible arithmetic overflows (Florian Westphal) [1151756]
-- [net] tcp: do not fake tcp headers in tcp_send_rcvq() (Florian Westphal) [1151756]
-- [net] tcp: do not copy headers in tcp_collapse() (Florian Westphal) [1151756]
-- [net] tcp: allow segment with FIN in tcp_try_coalesce() (Florian Westphal) [1151756]
-- [net] tcp: use tcp_flags in tcp_data_queue() (Florian Westphal) [1151756]
-- [net] tcp: use TCP_SKB_CB(skb)->tcp_flags in input path (Florian Westphal) [1151756]
-- [net] tcp: remove dst refcount false sharing for prequeue mode (Florian Westphal) [1151756]
-- [net] tcp: remove obsolete comment about TCP_SKB_CB(skb)->when in tcp_fragment() (Florian Westphal) [1151756]
-- [net] tcp: remove TCP_SKB_CB(skb)->when (Florian Westphal) [1151756]
-- [net] tcp: introduce TCP_SKB_CB(skb)->tcp_tw_isn (Florian Westphal) [1151756]
-- [net] tcp: whitespace fixes (Florian Westphal) [1151756]
-- [net] tcp: improve undo on timeout (Florian Westphal) [1151756]
-- [net] tcp: fix ssthresh and undo for consecutive short FRTO episodes (Florian Westphal) [1151756]
-- [net] tcp: don't allow syn packets without timestamps to pass tcp_tw_recycle logic (Florian Westphal) [1151756]
-- [net] tcp: fix tcp_release_cb() to dispatch via address family for mtu_reduced() (Florian Westphal) [1151756]
-- [net] tcp: don't use timestamp from repaired skb-s to calculate RTT (v2) (Florian Westphal) [1151756]
-- [net] tcp: md5: check md5 signature without socket lock (Florian Westphal) [1151756]
-- [net] tcp: reduce spurious retransmits due to transient SACK reneging (Florian Westphal) [1151756]
-- [net] tcp: md5: remove unneeded check in tcp_v4_parse_md5_keys (Florian Westphal) [1151756]
-- [net] tcp: Fix integer-overflow in TCP vegas (Florian Westphal) [1151756]
-- [net] tcp: Fix integer-overflows in TCP veno (Florian Westphal) [1151756]
-- [net] tcp: Remove unnecessary arg from tcp_enter_cwr and tcp_init_cwnd_reduction (Florian Westphal) [1151756]
-- [net] tcp: fix false undo corner cases (Florian Westphal) [1151756]
-- [net] tcp: switch snt_synack back to measuring transmit time of first SYNACK (Florian Westphal) [1151756]
-- [net] tcp: Fix divide by zero when pushing during tcp-repair (Florian Westphal) [1151756]
-- [net] tcp: add tcp_conn_request (Florian Westphal) [1151756]
-- [net] tcp: add queue_add_hash to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: add mss_clamp to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: unify tcp_v4_rtx_synack and tcp_v6_rtx_synack (Florian Westphal) [1151756]
-- [net] tcp: add send_synack method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] ipv6: cleanup for tcp_ipv6.c (Florian Westphal) [1151756]
-- [net] tcp: add init_seq method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: move around a few calls in tcp_v6_conn_request (Florian Westphal) [1151756]
-- [net] tcp: add route_req method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: add init_cookie_seq method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: add init_req method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] remove inet6_reqsk_alloc (Florian Westphal) [1151756]
-- [net] tcp: tcp_v[46]_conn_request: fix snt_synack initialization (Florian Westphal) [1151756]
-- [net] tcp: cookie_v4_init_sequence: skb should be const (Florian Westphal) [1151756]
-- [net] tcp: fix tcp_match_skb_to_sack() for unaligned SACK at end of an skb (Florian Westphal) [1151756]
-- [net] tcp: fixing TLP's FIN recovery (Florian Westphal) [1151756]
-- [net] tcp: fix cwnd undo on DSACK in F-RTO (Florian Westphal) [1151756]
-- [net] tcp: make cwnd-limited checks measurement-based, and gentler (Florian Westphal) [1151756]
-- [net] tcp: IPv6 support for fastopen server (Florian Westphal) [1151756]
-- [net] net: ipv6: Fix oif in TCP SYN+ACK route lookup. (Florian Westphal) [1151756]
-- [net] ipv6: tcp_ipv6 policy route issue (Florian Westphal) [1151756]
-- [net] ipv6: reuse rt6_need_strict (Florian Westphal) [1151756]
-- [net] tcp: improve fastopen icmp handling (Florian Westphal) [1151756]
-- [net] tcp: use tcp_v4_send_synack on first SYN-ACK (Florian Westphal) [1151756]
-- [net] tcp: simplify fast open cookie processing (Florian Westphal) [1151756]
-- [net] tcp: move fastopen functions to tcp_fastopen.c (Florian Westphal) [1151756]
-- [net] tcp: remove in_flight parameter from cong_avoid() methods (Florian Westphal) [1151756]
-- [net] tcp: fix cwnd limited checking to improve congestion control (Florian Westphal) [1151756]
-- [net] tcp_cubic: fix the range of delayed_ack (Florian Westphal) [1151756]
-- [net] tcp: increment retransmit counters in tlp and fast open (Florian Westphal) [1151756]
-- [net] tcp: avoid retransmits of TCP packets hanging in host queues (Florian Westphal) [1151756]
-- [net] tcp: make tcp_cwnd_application_limited() static (Florian Westphal) [1151756]
-- [net] ipv6: tcp_ipv6 do some cleanup (Florian Westphal) [1151756]
-- [net] tcp: fix get_timewait4_sock() delay computation on 64bit (Florian Westphal) [1151756]
-- [net] tcp: tcp_make_synack() minor changes (Florian Westphal) [1151756]
-- [net] tcp: delete unused parameter in tcp_nagle_check() (Florian Westphal) [1151756]
-- [net] tcp: tcp_release_cb() should release socket ownership (Florian Westphal) [1151756]
-- [net] tcp: timestamp SYN+DATA messages (Florian Westphal) [1151756]
-- [net] tcp: do not leak non zero tstamp in output packets (Florian Westphal) [1151756]
-- [net] tcp: Use NET_ADD_STATS instead of NET_ADD_STATS_BH in tcp_event_new_data_sent() (Florian Westphal) [1151756]
-- [net] tcp: snmp stats for Fast Open, SYN rtx, and data pkts (Florian Westphal) [1151756]
-- [net] tcp: fix bogus RTT on special retransmission (Florian Westphal) [1151756]
-- [net] tcp: switch rtt estimations to usec resolution (Florian Westphal) [1151756]
-- [net] kabi: don't make kabi-check trip over sk_buff change (Florian Westphal) [1151756]
-- [net] add skb_mstamp infrastructure (Florian Westphal) [1151756]
-- [net] tcp: add mib counters to track zero window transitions (Florian Westphal) [1151756]
-- [net] tcp: use zero-window when free_space is low (Florian Westphal) [1151756]
-- [net] tcp: reduce the bloat caused by tcp_is_cwnd_limited() (Florian Westphal) [1151756]
-- [net] tcp: fastopen: fix high order allocations (Florian Westphal) [1151756]
-- [net] tcp: remove unused min_cwnd member of tcp_congestion_ops (Florian Westphal) [1151756]
-- [net] tcp: remove 1ms offset in srtt computation (Florian Westphal) [1151756]
-- [net] tcp: delete redundant calls of tcp_mtup_init() (Florian Westphal) [1151756]
-- [net] ipv6: tcp: fix flowlabel value in ACK messages send from TIME_WAIT (Florian Westphal) [1151756]
-- [net] tcp: initialize passive-side sk_pacing_rate after 3WHS (Florian Westphal) [1151756]
-- [net] tcp: tcp_transmit_skb() optimizations (Florian Westphal) [1151756]
-- [net] tcp: metrics: Handle v6/v4-mapped sockets in tcp-metrics (Florian Westphal) [1151756]
-- [net] tcp: metrics: Fix rcu-race when deleting multiple entries (Florian Westphal) [1151756]
-- [net] tcp: metrics: Avoid duplicate entries with the same destination-IP (Florian Westphal) [1151756]
-- [net] tcp: metrics: Allow selective get/del of tcp-metrics based on src IP (Florian Westphal) [1151756]
-- [net] tcp: metrics: Delete all entries matching a certain destination (Florian Westphal) [1151756]
-- [net] tcp: metrics: New netlink attribute for src IP and dumped in netlink reply (Florian Westphal) [1151756]
-- [net] tcp: metrics: Add source-address to tcp-metrics (Florian Westphal) [1151756]
-- [net] tcp: metrics: rename tcpm_addr to tcpm_daddr (Florian Westphal) [1151756]
-- [net] tcp: out_of_order_queue do not use its lock (Florian Westphal) [1151756]
-- [net] tcp: make local functions static (Florian Westphal) [1151756]
-- [net] tcp: autocork should not hold first packet in write queue (Florian Westphal) [1151756]
-- [net] tcp: refine TSO splits (Florian Westphal) [1151756]
-- [net] tcp: auto corking (Florian Westphal) [1151756]
-- [net] tcp: optimize some skb_shinfo(skb) uses (Florian Westphal) [1151756]
-- [net] tcp: properly handle stretch acks in slow start (Florian Westphal) [1151756]
-- [net] tcp: temporarily disable Fast Open on SYN timeout (Florian Westphal) [1151756]
-- [net] tcp: do not rearm RTO when future data are sacked (Florian Westphal) [1151756]
-- [net] tcp: only take RTT from timestamps if new data is acked (Florian Westphal) [1151756]
-- [net] tcp: fix SYNACK RTT estimation in Fast Open (Florian Westphal) [1151756]
-- [net] tcp: remove redundant code in __tcp_retransmit_skb() (Florian Westphal) [1151756]
-- [net] ipv4: shrink rt_cache_stat (Florian Westphal) [1151756]
-- [net] tcp: sndbuf autotuning improvements (Florian Westphal) [1151756]
-- [net] tcp: Always set options to 0 before calling tcp_established_options (Florian Westphal) [1151756]
-- [net] tcp: fix dynamic right sizing (Florian Westphal) [1151756]
-- [net] tcp: Remove extern from function prototypes (Florian Westphal) [1151756]
-- [net] tcp: fix RTO calculated from cached RTT (Florian Westphal) [1151756]
-- [net] tcp: properly increase rcv_ssthresh for ofo packets (Florian Westphal) [1151756]
-- [net] tcp: fix no cwnd growth after timeout (Florian Westphal) [1151756]
-- [net] tcp: better comments for RTO initiallization (Florian Westphal) [1151756]
-- [net] tcp: Change return value of tcp_rcv_established() (Florian Westphal) [1151756]
-- [net] tcp: do not use cached RTT for RTT estimation (Florian Westphal) [1151756]
-- [net] tcp: increase throughput when reordering is high (Florian Westphal) [1151756]
-- [net] tcp: trivial: Remove nocache argument from tcp_v4_send_synack (Florian Westphal) [1151756]
-- [net] tcp: reset reordering est. selectively on timeout (Florian Westphal) [1151756]
-- [net] tcp: add server ip to encrypt cookie in fast open (Florian Westphal) [1151756]
-- [net] ip: add SNMP counters tracking incoming ECN bits (Florian Westphal) [1151756]
-- [net] tcp: Remove unused tcpct declarations and comments (Florian Westphal) [1151756]
-- [net] tcp: TCP_NOTSENT_LOWAT socket option (Florian Westphal) [1151756]
-- [net] add sk_stream_is_writeable() helper (Florian Westphal) [1151756]
-- [net] fib_trie: potential out of bounds access in trie_show_stats() (Florian Westphal) [1151756]
-- [net] tcp: use RTT from SACK for RTO (Florian Westphal) [1151756]
-- [net] tcp: measure RTT from new SACK (Florian Westphal) [1151756]
-- [net] tcp: prefer packet timing to TS-ECR for RTT (Florian Westphal) [1151756]
-- [net] tcp: consolidate SYNACK RTT sampling (Florian Westphal) [1151756]
-- [net] tcp: account all retransmit failures (Florian Westphal) [1151756]
-- [net] ipv4: fix spacing in assignment (Florian Westphal) [1151756]
-- [net] net: sock: fix TCP_SKB_MIN_TRUESIZE (Florian Westphal) [1151756]
-- [net] tcp: remove invalid __rcu annotation (Florian Westphal) [1151756]
-- [net] ipv6: remove a useless pr_info() in addrconf_gre_config() (Florian Westphal) [1151756]
-- [net] inet_fragment: remove an empty ifdef (Florian Westphal) [1151756]
-- [net] tcp: typo unset should be unsent (Florian Westphal) [1151756]
-- [net] net: sock: adapt SOCK_MIN_RCVBUF and SOCK_MIN_SNDBUF (Florian Westphal) [1151756]
-- [net] tcp: properly send new data in fast recovery in first RTT (Florian Westphal) [1151756]
-- [net] udp: fix two sparse errors (Florian Westphal) [1151756]
-- [net] ipv4: Update RFS target at poll for tcp/udp (Florian Westphal) [1151756]
-- [net] tcp: undo on DSACK during recovery (Florian Westphal) [1151756]
-- [net] tcp: fix undo on partial ack in recovery (Florian Westphal) [1151756]
-- [net] tcp: refactor undo functions (Florian Westphal) [1151756]
-- [net] tcp: consolidate PRR packet accounting (Florian Westphal) [1151756]
-- [net] tcp: Remove 2 indentation levels in tcp_rcv_state_process (Florian Westphal) [1151756]
-- [net] tcp: Remove another indentation level in tcp_rcv_state_process (Florian Westphal) [1151756]
-- [net] tcp: remove one indentation level in tcp_rcv_state_process (Florian Westphal) [1151756]
-- [net] tcp: md5: remove spinlock usage in fast path (Florian Westphal) [1151756]
-- [net] tcp: remove bad timeout logic in fast recovery (Florian Westphal) [1151756]
-- [net] tcp: speedup tcp_fixup_rcvbuf() (Florian Westphal) [1151756]
-
-* Tue Apr 14 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-239.el7]
-- [fs] proc/task_mmu: bump kernelpagesize_kB to EOL in /proc/pid/numa_maps (Petr Holasek) [1071987]
-- [Documentation] filesystems/proc.txt: add /proc/pid/numa_maps interface explanation snippet (Petr Holasek) [1071987]
-- [fs] proc/task_mmu: show page size in /proc/<pid>/numa_maps (Petr Holasek) [1071987]
-- [mm] vmscan: use proportional scanning during direct reclaim and full scan at DEF_PRIORITY (Larry Woodman) [1178988]
-- [fs] superblock: avoid locking counting inodes and dentries before reclaiming them (Larry Woodman) [1178988]
-- [fs] superblock: unregister sb shrinker before ->kill_sb() (Larry Woodman) [1178988]
-- [mm] vmstat: Reduce time interval to stat update on idle cpu (Larry Woodman) [1157802]
-- [mm] vmstat: do not use deferrable delayed work for vmstat_update (Larry Woodman) [1157802]
-- [mm] vmstat: on-demand vmstat workers V8 (Larry Woodman) [1157802]
-- [mm] vmstat: use this_cpu() to avoid irqon/off sequence in refresh_cpu_vm_stats (Larry Woodman) [1157802]
-- [mm] vmstat: create fold_diff (Larry Woodman) [1157802]
-- [mm] vmstat: create separate function to fold per cpu diffs into local counters (Larry Woodman) [1157802]
-- [mm] msync: fix incorrect fstart calculation (Larry Woodman) [1172896]
-- [mm] msync: sync only the requested range in msync() (Larry Woodman) [1172896]
-- [drm] Missed clflushopt in drm_clflush_virt_range (Steve Best) [1170846]
-- [x86] cpufeature: If we disable CLFLUSH, we should disable CLFLUSHOPT (Steve Best) [1170846]
-- [x86] Use clflushopt in drm_clflush_virt_range (Steve Best) [1170846]
-- [x86] Use clflushopt in drm_clflush_page (Steve Best) [1170846]
-- [x86] Use clflushopt in clflush_cache_range (Steve Best) [1170846]
-- [x86] Add support for the clflushopt instruction (Steve Best) [1170846]
-- [x86] mm: register 1G page size if we can allocate them at runtime (Petr Holasek) [1197899]
-- [x86] kvm: insufficient sysenter emulation when invoked from 16-bit code (Jacob Tanenbaum) [1186452] {CVE-2015-0239}
-- [kernel] module: Clean up ro/nx after early module load failures (Pratyush Anand) [1202866]
-- [kernel] panic: add TAINT_SOFTLOCKUP (Aaron Tomlin) [1194353]
-- [kernel] watchdog: print traces for all cpus on lockup detection (Aaron Tomlin) [1194353]
-- [x86] nmi: provide the option to issue an NMI back trace to every cpu but current (Aaron Tomlin) [1194353]
-- [kernel] Use 'E' instead of 'X' for unsigned module taint flag (Jiri Olsa) [1179759]
-- [kernel] fix module signature vs tracepoints add new TAINT_UNSIGNED_MODULE (Jiri Olsa) [1179759]
-- [kernel] kvm: rcu: nohz: use RCU extended quiescent state when running KVM guest (Rik van Riel) [1194681]
-- [kernel] context_tracking: Export context_tracking_user_enter/exit (Rik van Riel) [1194681]
-- [kernel] context_tracking: Run vtime_user_enter/exit only when state == CONTEXT_USER (Rik van Riel) [1194681]
-- [kernel] context_tracking: Add stub context_tracking_is_enabled (Rik van Riel) [1194681]
-- [kernel] context_tracking: Generalize context tracking APIs to support user and guest (Rik van Riel) [1194681]
-- [kernel] context_tracking: Rename context symbols to prepare for transition state (Rik van Riel) [1194681]
-- [kernel] context_tracking: Restore previous state in schedule_user (Rik van Riel) [1194681]
-- [powerpc] Remove unused cpp symbols in kvm headers (Rik van Riel) [1194681]
-- [kernel] context_tracking: Rename context_tracking_active() to context_tracking_cpu_is_enabled() (Rik van Riel) [1194681]
-- [kernel] context_tracking: Wrap static key check into more intuitive function name (Rik van Riel) [1194681]
-- [kernel] arm: Fix build error with context tracking calls (Rik van Riel) [1194681]
-- [kernel] irq_work: Remove BUG_ON in irq_work_run() (Jan Stancek) [1210986]
-- [kernel] rcu: Remove "Experimental" flags (Prarit Bhargava) [1182093]
-
-* Fri Apr 10 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-238.el7]
-- [md] dm-snapshot: suspend merging snapshot when doing exception handover (Mike Snitzer) [1205955]
-- [md] dm-snapshot: suspend origin when doing exception handover (Mike Snitzer) [1205955]
-- [md] dm-snapshot: allocate a per-target structure for snapshot-origin target (Mike Snitzer) [1205955]
-- [md] dm-crypt: sort writes (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: add 'submit_from_crypt_cpus' option (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: offload writes to thread (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: remove unused io_pool and _crypt_io_pool (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: avoid deadlock in mempools (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: don't allocate pages for a partial request (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: use unbound workqueue for request processing (Mike Snitzer) [1205955 752438]
-- [md] dm: fix add_disk() NULL pointer due to race with free_dev() (Mike Snitzer) [1205955]
-- [md] dm-io: deal with wandering queue limits when handling REQ_DISCARD and REQ_WRITE_SAME (Mike Snitzer) [1205955]
-- [md] dm: hold suspend_lock while suspending device during device deletion (Mike Snitzer) [1205955]
-- [md] dm-thin: fix to consistently zero-fill reads to unprovisioned blocks (Mike Snitzer) [1205955]
-- [md] dm-snapshot: fix a possible invalid memory access on unload (Mike Snitzer) [1205955]
-- [md] dm: fix a race condition in dm_get_md (Mike Snitzer) [1205955]
-- [md] dm-io: reject unsupported DISCARD requests with EOPNOTSUPP (Mike Snitzer) [1205955]
-- [md] dm-mirror: do not degrade the mirror on discard error (Mike Snitzer) [1205955]
-- [md] dm-space-map-disk: fix sm_disk_count_is_more_than_one() (Mike Snitzer) [1205955]
-- [md] dm: inherit QUEUE_FLAG_SG_GAPS flags from underlying queues (Mike Snitzer) [1205955]
-- [md] dm-snapshot: remove unnecessary NULL checks before vfree() calls (Mike Snitzer) [1205955]
-- [md] dm-mpath: simplify failure path of dm_multipath_init() (Mike Snitzer) [1205955]
-- [md] dm-thin-metadata: remove unused dm_pool_get_data_block_size() (Mike Snitzer) [1205955]
-- [md] dm-ioctl: fix stale comment above dm_get_inactive_table() (Mike Snitzer) [1205955]
-- [md] dm-crypt: update url in CONFIG_DM_CRYPT help text (Mike Snitzer) [1205955]
-- [md] dm-bufio: fix time comparison to use time_after_eq() (Mike Snitzer) [1205955]
-- [md] dm: use time_in_range() and time_after() (Mike Snitzer) [1205955]
-- [md] dm-raid: fix a couple integer overflows (Mike Snitzer) [1205955]
-- [md] dm-table: train hybrid target type detection to select blk-mq if appropriate (Mike Snitzer) [1205955]
-- [md] dm: allocate requests in target when stacking on blk-mq devices (Mike Snitzer) [1205955]
-- [md] dm: prepare for allocating blk-mq clone requests in target (Mike Snitzer) [1205955]
-- [md] dm: submit stacked requests in irq enabled context (Mike Snitzer) [1205955]
-- [md] dm: split request structure out from dm_rq_target_io structure (Mike Snitzer) [1205955]
-- [md] dm: remove exports for request-based interfaces without external callers (Mike Snitzer) [1205955]
-- [md] block: mark blk-mq devices as stackable (Mike Snitzer) [1205955]
-- [md] block: keep established cmd_flags when cloning into a blk-mq request (Mike Snitzer) [1205955]
-- [md] block: add blk-mq support to blk_insert_cloned_request() (Mike Snitzer) [1205955]
-- [md] dm: fix multipath regression due to initializing wrong request (Mike Snitzer) [1205955]
-- [md] block: require blk_rq_prep_clone() be given an initialized clone request (Mike Snitzer) [1205955]
-- [md] dm: fix handling of multiple internal suspends (Mike Snitzer) [1205955]
-- [md] dm: fix missed error code if .end_io isn't implemented by target_type (Mike Snitzer) [1205955]
-- [md] dm-crypt: use memzero_explicit for on-stack buffer (Mike Snitzer) [1205955]
-- [md] lib: memzero_explicit: add comment for its usage (Mike Snitzer) [1205955]
-- [md] random: add and use memzero_explicit() for clearing data (Mike Snitzer) [1205955]
-- [md] crypto: define OPTIMIZER_HIDE_VAR for future use in memzero_explicit (Mike Snitzer) [1205955]
-- [md] dm-space-map-metadata: fix sm_bootstrap_get_count() (Mike Snitzer) [1205955]
-- [md] dm-space-map-metadata: fix sm_bootstrap_get_nr_blocks() (Mike Snitzer) [1205955]
-- [md] dm-stripe: fix potential for leak in stripe_ctr error path (Mike Snitzer) [1205955]
-- [md] dm-log-userspace: fix memory leak in dm_ulog_tfr_init failure path (Mike Snitzer) [1205955]
-- [md] dm-raid: fix inaccessible superblocks causing oops in configure_discard_support (Mike Snitzer) [1205955]
-- [md] dm-raid: add discard support for RAID levels 4, 5 and 6 (Mike Snitzer) [1205955]
-- [md] dm-raid: add discard support for RAID levels 1 and 10 (Mike Snitzer) [1205955]
-- [md] dm-switch: efficiently support repetitive patterns (Mike Snitzer) [1205955]
-- [md] dm-switch: factor out switch_region_table_read (Mike Snitzer) [1205955]
-- [md] dm-table: fix RHEL7 inconsistency with location of dm_table_run_md_queue_async (Mike Snitzer) [1205955]
-- [md] dm-mpath: fix stalls when handling invalid ioctls (Mike Snitzer) [1205955]
-- [tty] fix kABI broken by introduction of ldisc_sem (Aristeu Rozanski) [1183479]
-- [tty] Fix hang at ldsem_down_read() (Aristeu Rozanski) [1183479]
-- [tty] Replace ldisc locking with ldisc_sem (Aristeu Rozanski) [1183479]
-- [tty] Add lock/unlock ldisc pair functions (Aristeu Rozanski) [1183479]
-- [tty] Fix tty_ldisc_lock name collision (Aristeu Rozanski) [1183479]
-- [tty] n_tty: Buffer work should not reschedule itself (Aristeu Rozanski) [1183479]
-- [tty] n_tty: Fix unsafe update of available buffer space (Aristeu Rozanski) [1183479]
-- [tty] n_tty: Untangle read completion variables (Aristeu Rozanski) [1183479]
-- [tty] n_tty: Encapsulate minimum_to_wake within N_TTY (Aristeu Rozanski) [1183479]
-- [tty] Add timed, writer-prioritized rw semaphore (Aristeu Rozanski) [1183479]
-- [tty] Remove TTY_HW_COOK_IN/OUT (Aristeu Rozanski) [1183479]
-- [char] random: account for entropy loss due to overwrites (Herbert Xu) [1110044]
-- [char] random: allow fractional bits to be tracked (Herbert Xu) [1110044]
-- [char] random: statically compute poolbitshift, poolbytes, poolbits (Herbert Xu) [1110044]
-- [kernel] jiffies: Fix timeval conversion to jiffies (George Beshers) [1182693]
-- [kernel] timekeeping: Update timekeeper before updating vsyscall and pvclock (George Beshers) [1182693]
-- [kernel] timekeeping: Provide internal ktime_t based data (George Beshers) [1182693]
-- [kernel] irq_work: Force raised irq work to run on irq work interrupt (George Beshers) [1182693]
-- [kernel] irq_work: Introduce arch_irq_work_has_interrupt() (George Beshers) [1182693]
-- [kernel] nohz: Restore NMI safe local irq work for local nohz kick (George Beshers) [1182693]
-- [kernel] nohz: Avoid tick's double reprogramming in highres mode (George Beshers) [1182693]
-- [kernel] nohz: Fix spurious periodic tick behaviour in low-res dynticks mode (George Beshers) [1182693]
-- [kernel] nohz: Support nohz full remote kick (George Beshers) [1182693]
-- [kernel] irq_work: Implement remote queueing (George Beshers) [1182693]
-- [kernel] irq_work: Split raised and lazy lists (George Beshers) [1182693]
-- [kernel] tick-sched: Check tick_nohz_enabled in tick_nohz_switch_to_nohz() (George Beshers) [1182693]
-- [kernel] tick-sched: Don't call update_wall_time() when delta is lesser than tick_period (George Beshers) [1182693]
-- [kernel] nohz: Get timekeeping max deferment outside jiffies_lock (George Beshers) [1182693]
-- [kernel] sched/clock, x86: Avoid a runtime condition in native_sched_clock() (George Beshers) [1182693]
-- [kernel] nohz_full: fix code style issue of tick_nohz_full_stop_tick (George Beshers) [1182693]
-- [kernel] sched/clock, x86: Use a static_key for sched_clock_stable (George Beshers) [1182693]
-- [kernel] sched/clock: Remove local_irq_disable() from the clocks (George Beshers) [1182693]
-- [x86] perf: Clean up cap_user_time setting (George Beshers) [1182693]
-- [kernel] timekeeping: Call update_wall_time outside the jiffies lock (George Beshers) [1182693]
-- [kernel] timekeeping: Avoid possible deadlock from clock_was_set_delayed (George Beshers) [1182693]
-- [kernel] timekeeping: Fix lost updates to tai adjustment (George Beshers) [1182693]
-- [kernel] timekeeping: Fix potential lost pv notification of time change (George Beshers) [1182693]
-- [kernel] timekeeping: Indicate that clock was set in the pvclock gtod notifier (George Beshers) [1182693]
-- [kernel] timekeeping: Pass flags instead of multiple bools to timekeeping_update() (George Beshers) [1182693]
-- [kernel] nohz: Convert a few places to use local per cpu accesses (George Beshers) [1182693]
-- [kernel] nohz: Check for nohz active instead of nohz enabled (George Beshers) [1182693]
-- [crypto] sha-mb: sha1_mb_alg_state can be static (Herbert Xu) [1173756]
-- [crypto] mcryptd: mcryptd_flist can be static (Herbert Xu) [1173756]
-- [crypto] sha-mb: SHA1 multibuffer job manager and glue code (Herbert Xu) [1173756]
-- [crypto] sha-mb: SHA1 multibuffer crypto computation (x8 AVX2) (Herbert Xu) [1173756]
-- [crypto] sha-mb: SHA1 multibuffer submit and flush routines for AVX2 (Herbert Xu) [1173756]
-- [crypto] sha-mb: SHA1 multibuffer algorithm data structures (Herbert Xu) [1173756]
-- [crypto] sha-mb: multibuffer crypto infrastructure (Herbert Xu) [1173756]
-- [kernel] sched: Add function single_task_running to let a task check if it is the only task running on a cpu (Herbert Xu) [1173756]
-- [crypto] ahash: initialize entry len for null input in crypto hash sg list walk (Herbert Xu) [1173756]
-- [crypto] ahash: Add real ahash walk interface (Herbert Xu) [1173756]
-- [crypto] x86: sha256_ssse3 - also test for BMI2 (Herbert Xu) [1201563]
-- [crypto] x86: sha1 - reduce size of the AVX2 asm implementation (Herbert Xu) [1177968]
-- [crypto] x86: sha1 - fix stack alignment of AVX2 variant (Herbert Xu) [1177968]
-- [crypto] x86: sha1 - re-enable the AVX variant (Herbert Xu) [1177968]
-- [crypto] sha: SHA1 transform x86_64 AVX2 (Herbert Xu) [1177968]
-- [crypto] testmgr: fix RNG return code enforcement (Herbert Xu) [1198978]
-
-* Tue Apr 07 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-237.el7]
-- [fs] btrfs: simplify insert_orphan_item (Eric Sandeen) [1205873]
-- [fs] btrfs: __add_inode_ref out of bounds memory read when looking for extended ref (Eric Sandeen) [1205873]
-- [fs] btrfs: fix data loss in the fast fsync path (Eric Sandeen) [1205873]
-- [fs] btrfs: fix lost return value due to variable shadowing (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fsync race leading to ordered extent memory leaks (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fsync data loss after adding hard link to inode (Eric Sandeen) [1205873]
-- [fs] btrfs: fix leak of path in btrfs_find_item (Eric Sandeen) [1205873]
-- [fs] btrfs: set proper message level for skinny metadata (Eric Sandeen) [1205873]
-- [fs] btrfs: add missing blk_finish_plug in btrfs_sync_log() (Eric Sandeen) [1205873]
-- [fs] btrfs: fix raid56 scrub failed in xfstests btrfs/072 (Eric Sandeen) [1205873]
-- [fs] btrfs: Don't call btrfs_start_transaction() on frozen fs to avoid deadlock (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix the bug that fs_info->pending_changes is never cleared (Eric Sandeen) [1205873]
-- [fs] btrfs: fix state->private cast on 32 bit machines (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race deleting block group from space_info->ro_bgs list (Eric Sandeen) [1205873]
-- [fs] btrfs: fix incorrect freeing in scrub_stripe (Eric Sandeen) [1205873]
-- [fs] btrfs: sync ioctl, handle errors after transaction start (Eric Sandeen) [1205873]
-- [fs] btrfs: don't delay inode ref updates during log replay (Eric Sandeen) [1205873]
-- [fs] btrfs: correctly get tree level in tree_backref_for_extent (Eric Sandeen) [1205873]
-- [fs] btrfs: call inode_dec_link_count() on mkdir error path (Eric Sandeen) [1205873]
-- [fs] btrfs: abort transaction if we don't find the block group (Eric Sandeen) [1205873]
-- [fs] btrfs, scrub: uninitialized variable in scrub_extent_for_parity() (Eric Sandeen) [1205873]
-- [fs] btrfs: filp_open() returns ERR_PTR() on failure, not NULL (Eric Sandeen) [1205873]
-- [fs] btrfs: remove non-sense btrfs_error_discard_extent() function (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fs corruption on transaction abort if device supports discard (Eric Sandeen) [1205873]
-- [fs] btrfs: always clear a block group node when removing it from the tree (Eric Sandeen) [1205873]
-- [fs] btrfs: ensure deletion from pinned_chunks list is protected (Eric Sandeen) [1205873]
-- [fs] btrfs: make get_caching_control unconditionally return the ctl (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected deletion from pending_chunks list (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fs mapping extent map leak (Eric Sandeen) [1205873]
-- [fs] btrfs: fix memory leak after block remove + trimming (Eric Sandeen) [1205873]
-- [fs] btrfs: make btrfs_abort_transaction consider existence of new block groups (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race between writing free space cache and trimming (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race between fs trimming and block group remove/allocation (Eric Sandeen) [1205873]
-- [fs] btrfs, replace: enable dev-replace for raid56 (Eric Sandeen) [1205873]
-- [fs] btrfs: fix freeing used extents after removing empty block group (Eric Sandeen) [1205873]
-- [fs] btrfs: fix crash caused by block group removal (Eric Sandeen) [1205873]
-- [fs] btrfs: fix invalid block group rbtree access after bg is removed (Eric Sandeen) [1205873]
-- [fs] btrfs, raid56: fix use-after-free problem in the final device replace procedure on raid56 (Eric Sandeen) [1205873]
-- [fs] btrfs, replace: write raid56 parity into the replace target device (Eric Sandeen) [1205873]
-- [fs] btrfs, replace: write dirty pages into the replace target device (Eric Sandeen) [1205873]
-- [fs] btrfs, raid56: support parity scrub on raid56 (Eric Sandeen) [1205873]
-- [fs] btrfs, raid56: use a variant to record the operation type (Eric Sandeen) [1205873]
-- [fs] btrfs, scrub: repair the common data on RAID5/6 if it is corrupted (Eric Sandeen) [1205873]
-- [fs] btrfs, raid56: don't change bbio and raid_map (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unnecessary code of stripe_index assignment in __btrfs_map_block (Eric Sandeen) [1205873]
-- [fs] btrfs: remove noused bbio_ret in __btrfs_map_block in condition (Eric Sandeen) [1205873]
-- [fs] btrfs: zero out left over bytes after processing compression streams (Eric Sandeen) [1205873]
-- [fs] btrfs: fix snapshot inconsistency after a file write followed by truncate (Eric Sandeen) [1205873]
-- [fs] Add wait_on_atomic_t() and wake_up_atomic_t() (Eric Sandeen) [1205873]
-- [fs] btrfs: ensure send always works on roots without orphans (Eric Sandeen) [1205873]
-- [fs] btrfs: fix freeing used extent after removing empty block group (Eric Sandeen) [1205873]
-- [fs] btrfs: include vmalloc.h in check-integrity.c (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix a lockdep warning when running xfstest (Eric Sandeen) [1205873]
-- [fs] btrfs: ensure ordered extent errors aren't missed on fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: collect only the necessary ordered extents on ranged fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: don't ignore log btree writeback errors (Eric Sandeen) [1205873]
-- [fs] btrfs: do not move em to modified list when unpinning (Eric Sandeen) [1205873]
-- [fs] btrfs: make sure logged extents complete in the current transaction V3 (Eric Sandeen) [1205873]
-- [fs] btrfs: make sure we wait on logged extents when fsycning two subvols (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong accounting of raid1 data profile in statfs (Eric Sandeen) [1205873]
-- [fs] btrfs: fix dead lock while running replace and defrag concurrently (Eric Sandeen) [1205873]
-- [fs] btrfs: make xattr replace operations atomic (Eric Sandeen) [1205873]
-- [fs] btrfs: avoid premature -ENOMEM in clear_extent_bit() (Eric Sandeen) [1205873]
-- [fs] btrfs: don't take the chunk_mutex/dev_list mutex in statfs V2 (Eric Sandeen) [1205873]
-- [fs] btrfs: move read only block groups onto their own list V2 (Eric Sandeen) [1205873]
-- [fs] btrfs: fix typos in btrfs_check_super_valid (Eric Sandeen) [1205873]
-- [fs] btrfs: check-int: don't complain about balanced blocks (Eric Sandeen) [1205873]
-- [fs] btrfs: check_int: use the known block location (Eric Sandeen) [1205873]
-- [fs] btrfs: avoid returning -ENOMEM in convert_extent_bit() too early (Eric Sandeen) [1205873]
-- [fs] btrfs: make find_first_extent_bit be able to cache any state (Eric Sandeen) [1205873]
-- [fs] btrfs: deal with convert_extent_bit errors to avoid fs corruption (Eric Sandeen) [1205873]
-- [fs] btrfs: return failure if btrfs_dev_replace_finishing() failed (Eric Sandeen) [1205873]
-- [fs] btrfs: fix allocationg memory failure for btrfsic_state structure (Eric Sandeen) [1205873]
-- [fs] btrfs: report error after failure inlining extent in compressed write path (Eric Sandeen) [1205873]
-- [fs] btrfs: add helper btrfs_fdatawrite_range (Eric Sandeen) [1205873]
-- [fs] btrfs: correctly flush compressed data before/after direct IO (Eric Sandeen) [1205873]
-- [fs] btrfs: make inode.c:compress_file_range() return void (Eric Sandeen) [1205873]
-- [fs] btrfs: fix incorrect compression ratio detection (Eric Sandeen) [1205873]
-- [fs] btrfs: don't ignore compressed bio write errors (Eric Sandeen) [1205873]
-- [fs] btrfs: make inode.c:submit_compressed_extents() return void (Eric Sandeen) [1205873]
-- [fs] btrfs: process all async extents on compressed write failure (Eric Sandeen) [1205873]
-- [fs] btrfs: don't leak pages and memory on compressed write error (Eric Sandeen) [1205873]
-- [fs] btrfs: fix hang on compressed write error (Eric Sandeen) [1205873]
-- [fs] btrfs: set page and mapping error on compressed write failure (Eric Sandeen) [1205873]
-- [fs] btrfs: fix lockups from btrfs_clear_path_blocking (Eric Sandeen) [1205873]
-- [fs] btrfs: get rid of f_dentry use (Eric Sandeen) [1205873]
-- [fs] btrfs: move commit out of sysfs when changing label (Eric Sandeen) [1205873]
-- [fs] btrfs: move commit out of sysfs when changing features (Eric Sandeen) [1205873]
-- [fs] btrfs: introduce pending action: commit (Eric Sandeen) [1205873]
-- [fs] btrfs: switch inode_cache option handling to pending changes (Eric Sandeen) [1205873]
-- [fs] btrfs: do commit in sync_fs if there are pending changes (Eric Sandeen) [1205873]
-- [fs] btrfs: add support for processing pending changes (Eric Sandeen) [1205873]
-- [fs] btrfs: fix kfree on list_head in btrfs_lookup_csums_range error cleanup (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race that makes btrfs_lookup_extent_info miss skinny extent items (Eric Sandeen) [1205873]
-- [fs] btrfs: properly clean up btrfs_end_io_wq_cache (Eric Sandeen) [1205873]
-- [fs] btrfs: fix invalid leaf slot access in btrfs_lookup_extent() (Eric Sandeen) [1205873]
-- [fs] btrfs: use macro accessors in superblock validation checks (Eric Sandeen) [1205873]
-- [fs] revert "btrfs: race free update of commit root for ro snapshots" (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix compile error when CONFIG_SECURITY is not set (Eric Sandeen) [1205873]
-- [fs] btrfs: Make btrfs handle security mount options internally to avoid losing security label (Eric Sandeen) [1205873]
-- [fs] btrfs: send, don't delay dir move if there's a new parent inode (Eric Sandeen) [1205873]
-- [fs] btrfs: add more superblock checks (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race in WAIT_SYNC ioctl (Eric Sandeen) [1205873]
-- [fs] btrfs: be aware of btree inode write errors to avoid fs corruption (Eric Sandeen) [1205873]
-- [fs] btrfs: remove redundant btrfs_verify_qgroup_counts declaration (Eric Sandeen) [1205873]
-- [fs] btrfs: fix shadow warning on cmp (Eric Sandeen) [1205873]
-- [fs] btrfs: fix compilation errors under DEBUG (Eric Sandeen) [1205873]
-- [fs] btrfs: fix crash of btrfs_release_extent_buffer_page (Eric Sandeen) [1205873]
-- [fs] btrfs: add missing end_page_writeback on submit_extent_page failure (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix the wrong condition judgment about subset extent map (Eric Sandeen) [1205873]
-- [fs] btrfs: fix build_backref_tree issue with multiple shared blocks (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup error handling in build_backref_tree (Eric Sandeen) [1205873]
-- [fs] btrfs: move checks for DUMMY_ROOT into a helper (Eric Sandeen) [1205873]
-- [fs] btrfs: new define for the inline extent data start (Eric Sandeen) [1205873]
-- [fs] btrfs: kill extent_buffer_page helper (Eric Sandeen) [1205873]
-- [fs] btrfs: drop constant param from btrfs_release_extent_buffer_page (Eric Sandeen) [1205873]
-- [fs] btrfs: hide typecast to definition of BTRFS_SEND_TRANS_STUB (Eric Sandeen) [1205873]
-- [fs] btrfs: let merge_reloc_roots return void (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused members from struct scrub_warning (Eric Sandeen) [1205873]
-- [fs] btrfs: use slab for end_io_wq structures (Eric Sandeen) [1205873]
-- [fs] btrfs: fix error labels in init_btrfs_fs (Eric Sandeen) [1205873]
-- [fs] btrfs: use enum for wq endio metadata type (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused extent state bits (Eric Sandeen) [1205873]
-- [fs] btrfs: set default max_inline to 8KiB instead of 8MiB (Eric Sandeen) [1205873]
-- [fs] btrfs: remove blocksize from btrfs_alloc_free_block and rename (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused parameter blocksize from btrfs_find_tree_block (Eric Sandeen) [1205873]
-- [fs] btrfs: remove parameter blocksize from read_tree_block (Eric Sandeen) [1205873]
-- [fs] btrfs: inline code of reada_tree_block and remove it (Eric Sandeen) [1205873]
-- [fs] btrfs: return void from readahead_tree_block (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused parameter from readahead_tree_block (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unlikely from data-dependent branches and slow paths (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unlikely from NULL checks (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused variable from btrfs_parse_options (Eric Sandeen) [1205873]
-- [fs] btrfs: defrag, use unsigned type for extent thresh (Eric Sandeen) [1205873]
-- [fs] btrfs: try not to ENOSPC on log replay (Eric Sandeen) [1205873]
-- [fs] btrfs: don't do async reclaim during log replay (Eric Sandeen) [1205873]
-- [fs] btrfs: remove empty block groups automatically (Eric Sandeen) [1205873]
-- [fs] btrfs: fix data corruption after fast fsync and writeback error (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fsync race leading to invalid data after log replay (Eric Sandeen) [1205873]
-- [fs] revert "btrfs: device_list_add() should not update list when mounted" (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix and enhance merge_extent_mapping() to insert best fitted extent map (Eric Sandeen) [1205873]
-- [fs] btrfs: fix up bounds checking in lseek (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup the read failure record after write or when the inode is freeing (Eric Sandeen) [1205873]
-- [fs] btrfs: implement repair function when direct read fails (Eric Sandeen) [1205873]
-- [fs] btrfs: Set real mirror number for read operation on RAID0/5/6 (Eric Sandeen) [1205873]
-- [fs] btrfs: modify clean_io_failure and make it suit direct io (Eric Sandeen) [1205873]
-- [fs] btrfs: modify repair_io_failure and make it suit direct io (Eric Sandeen) [1205873]
-- [fs] btrfs: split bio_readpage_error into several functions (Eric Sandeen) [1205873]
-- [fs] btrfs: Cleanup unused variant and argument of IO failure handlers (Eric Sandeen) [1205873]
-- [fs] btrfs: fix missing error handler if submiting re-read bio fails (Eric Sandeen) [1205873]
-- [fs] btrfs: do file data check by sub-bio's self (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup similar code of the buffered data data check and dio read data check (Eric Sandeen) [1205873]
-- [fs] btrfs: Convert various code to bio_for_each_segment() (Eric Sandeen) [1205873]
-- [fs] btrfs: load checksum data once when submitting a direct read io (Eric Sandeen) [1205873]
-- [fs] btrfs: modify rw_devices counter under chunk_mutex context (Eric Sandeen) [1205873]
-- [fs] btrfs: move the missing device to its own fs device list (Eric Sandeen) [1205873]
-- [fs] btrfs: stop mounting the fs if the non-ENOENT errors happen when opening seed fs (Eric Sandeen) [1205873]
-- [fs] btrfs: make the logic of source device removing more clear (Eric Sandeen) [1205873]
-- [fs] btrfs: fix use-after-free problem of the device during device replace (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected device list access when cloning fs devices (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix misuse of chunk mutex (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected device list access when getting the fs information (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected system chunk array insertion (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected device's variants on 32bits machine (Eric Sandeen) [1205873]
-- [fs] btrfs: update free_chunk_space during allocting a new chunk (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected device->bytes_used update (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix wrong free_chunk_space assignment during removing a device (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong device bytes_used in the super block (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong disk size when writing super blocks (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected assignment of the target device (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup double assignment of device->bytes_used when device replace finishes (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup unused num_can_discard in fs_devices (Eric Sandeen) [1205873]
-- [fs] btrfs: remove the wrong comments (Eric Sandeen) [1205873]
-- [fs] btrfs: fix directory recovery from fsync log (Eric Sandeen) [1205873]
-- [fs] btrfs: fix loop writing of async reclaim (Eric Sandeen) [1205873]
-- [fs] btrfs: make fiemap not blow when you have lots of snapshots (Eric Sandeen) [1205873]
-- [fs] btrfs: add missing compression property remove in btrfs_ioctl_setflags (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix a deadlock in btrfs_dev_replace_finishing() (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup the same name in end_bio_extent_readpage (Eric Sandeen) [1205873]
-- [fs] btrfs: don't go readonly on existing qgroup items (Eric Sandeen) [1205873]
-- [fs] btrfs: shrink further sizeof(struct extent_buffer) (Eric Sandeen) [1205873]
-- [fs] btrfs: send, lower mem requirements for processing xattrs (Eric Sandeen) [1205873]
-- [fs] btrfs: remove stale define after removing ordered operations (Eric Sandeen) [1205873]
-- [fs] btrfs: improve free space cache management and space allocation (Eric Sandeen) [1205873]
-- [fs] btrfs: rename total_bytes to avoid confusion (Eric Sandeen) [1205873]
-- [fs] btrfs: fix typo in the log message (Eric Sandeen) [1205873]
-- [fs] btrfs: rw_devices shouldn't be incremented for seed fs in btrfs_rm_dev_replace_srcdev() (Eric Sandeen) [1205873]
-- [fs] btrfs: fix memory leak when there is no more seed device (Eric Sandeen) [1205873]
-- [fs] btrfs: update sprout seed pointer when seed fs is relinquished (Eric Sandeen) [1205873]
-- [fs] btrfs: fix rw_devices miss match after seed replace (Eric Sandeen) [1205873]
-- [fs] btrfs: replace seed device followed by unmount causes kernel WARNING (Eric Sandeen) [1205873]
-- [fs] btrfs: preparatory to make btrfs_rm_dev_replace_srcdev() seed aware (Eric Sandeen) [1205873]
-- [fs] btrfs: Drop stray check of fixup_workers creation (Eric Sandeen) [1205873]
-- [fs] btrfs: make btrfs_search_forward return with nodes unlocked (Eric Sandeen) [1205873]
-- [fs] btrfs: sysfs label interface should check for read only FS (Eric Sandeen) [1205873]
-- [fs] btrfs: code optimize: BTRFS_ATTR_RW could set the mode (Eric Sandeen) [1205873]
-- [fs] btrfs: code optimize: BTRFS_ATTR could handle the mode (Eric Sandeen) [1205873]
-- [fs] btrfs: use BTRFS_ATTR instead of btrfs_no_store() (Eric Sandeen) [1205873]
-- [fs] btrfs: avoid unnecessary switch of path locks to blocking mode (Eric Sandeen) [1205873]
-- [fs] btrfs: unlock nodes earlier when inserting items in a btree (Eric Sandeen) [1205873]
-- [fs] btrfs: use IS_ALIGNED() for assertion in btrfs_lookup_csums_range() for simplicity (Eric Sandeen) [1205873]
-- [fs] btrfs: add trace for qgroup accounting (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup unused latest_devid and latest_trans in fs_devices (Eric Sandeen) [1205873]
-- [fs] btrfs: update the comment of total_bytes and disk_total_bytes of btrfs_devie (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix the problem that the dirty flag of dev stats is cleared (Eric Sandeen) [1205873]
-- [fs] btrfs: make the device lock and its protected data in the same cacheline (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong generation check of super block on a seed device (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong fsid check of scrub (Eric Sandeen) [1205873]
-- [fs] btrfs: wake up transaction thread from SYNC_FS ioctl (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong max inline data size limit (Eric Sandeen) [1205873]
-- [fs] btrfs: fix off-by-one in cow_file_range_inline() (Eric Sandeen) [1205873]
-- [fs] btrfs: fall into nocompression codes quickly if possible (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong skipping compression for an inode (Eric Sandeen) [1205873]
-- [fs] btrfs: fix sparse warning (Eric Sandeen) [1205873]
-- [fs] btrfs: use BUG_ON (Eric Sandeen) [1205873]
-- [fs] btrfs compression: merge inflate and deflate z_streams (Eric Sandeen) [1205873]
-- [fs] btrfs: set error return value in btrfs_get_blocks_direct (Eric Sandeen) [1205873]
-- [fs] btrfs: reduce size of struct extent_state (Eric Sandeen) [1205873]
-- [fs] btrfs: use PTR_ERR_OR_ZERO (Eric Sandeen) [1205873]
-- [fs] btrfs: print btrfs specific info for some fatal error cases (Eric Sandeen) [1205873]
-- [fs] btrfs: fix writing data into the seed filesystem (Eric Sandeen) [1205873]
-- [fs] btrfs: make defragment work with nodatacow option (Eric Sandeen) [1205873]
-- [fs] btrfs: label should not contain return char (Eric Sandeen) [1205873]
-- [fs] btrfs: device delete must be sysloged (Eric Sandeen) [1205873]
-- [fs] btrfs: device add must be sysloged (Eric Sandeen) [1205873]
-- [fs] btrfs: clear compress-force when remounting with compress option (Eric Sandeen) [1205873]
-- [fs] btrfs: use DIV_ROUND_UP instead of open-coded variants (Eric Sandeen) [1205873]
-- [fs] btrfs: clean away stripe_align helper (Eric Sandeen) [1205873]
-- [fs] btrfs: use nodesize everywhere, kill leafsize (Eric Sandeen) [1205873]
-- [fs] btrfs: kill the key type accessor helpers (Eric Sandeen) [1205873]
-- [fs] btrfs: make close_ctree return void (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup ino cache members of btrfs_root (Eric Sandeen) [1205873]
-- [fs] btrfs: clenaup: don't call btrfs_release_path before free_path (Eric Sandeen) [1205873]
-- [fs] btrfs: remove obsolete comment in btrfs_clean_one_deleted_snapshot (Eric Sandeen) [1205873]
-- [fs] btrfs: set inode's logged_trans/last_log_commit after ranged fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: use insert_inode_locked4 for inode creation (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fsync data loss after a ranged fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: kfree()ing ERR_PTRs (Eric Sandeen) [1205873]
-- [fs] btrfs: fix crash while doing a ranged fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: fix corruption after write/fsync failure + fsync + log recovery (Eric Sandeen) [1205873]
-- [fs] btrfs: fix autodefrag with compression (Eric Sandeen) [1205873]
-- [fs] fs/btrfs/tree-log.c: Fix closing brace followed by if (Eric Sandeen) [1205873]
-- [fs] btrfs: fix task hang under heavy compressed write (Eric Sandeen) [1205873]
-- [fs] btrfs: fix filemap_flush call in btrfs_file_release (Eric Sandeen) [1205873]
-- [fs] btrfs: fix crash on endio of reading corrupted block (Eric Sandeen) [1205873]
-- [fs] btrfs: fix leak in qgroup_subtree_accounting() error path (Eric Sandeen) [1205873]
-- [fs] btrfs: Use right extent length when inserting overlap extent map (Eric Sandeen) [1205873]
-- [fs] btrfs: clone, don't create invalid hole extent map (Eric Sandeen) [1205873]
-- [fs] btrfs: don't monopolize a core when evicting inode (Eric Sandeen) [1205873]
-- [fs] btrfs: fix hole detection during file fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: race free update of commit root for ro snapshots (Eric Sandeen) [1205873]
-- [fs] btrfs: don't consider the missing device when allocating new chunks (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix wrong device size when we are resizing the device (Eric Sandeen) [1205873]
-- [fs] btrfs: don't write any data into a readonly device when scrub (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix the problem that the replace destroys the seed filesystem (Eric Sandeen) [1205873]
-- [fs] btrfs: Return right extent when fiemap gives unaligned offset and len (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong extent mapping for DirectIO (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong write range for filemap_fdatawrite_range() (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong missing device counter decrease (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unzeroed members in fs_devices when creating a fs from seed fs (Eric Sandeen) [1205873]
-- [fs] btrfs: check generation as replace duplicates devid+uuid (Eric Sandeen) [1205873]
-- [fs] btrfs: device_list_add() should not update list when mounted (Eric Sandeen) [1205873]
-- [fs] btrfs: fill_holes: Fix slot number passed to hole_mergeable() call (Eric Sandeen) [1205873]
-- [fs] btrfs: fix put dio bio twice when we submit dio bio fail (Eric Sandeen) [1205873]
-- [fs] btrfs: disable strict file flushes for renames and truncates (Eric Sandeen) [1205873]
-- [fs] btrfs: fix csum tree corruption, duplicate and outdated checksums (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch (Eric Sandeen) [1205873]
-- [fs] btrfs: fix compressed write corruption on enospc (Eric Sandeen) [1205873]
-- [fs] btrfs: correctly handle return from ulist_add (Eric Sandeen) [1205873]
-- [fs] btrfs: qgroup: account shared subtrees during snapshot delete (Eric Sandeen) [1205873]
-- [fs] btrfs: read lock extent buffer while walking backrefs (Eric Sandeen) [1205873]
-- [fs] btrfs: __btrfs_mod_ref should always use no_quota (Eric Sandeen) [1205873]
-- [fs] btrfs: adjust statfs calculations according to raid profiles (Eric Sandeen) [1205873]
-- [fs] sunrpc: fix sleeping under rcu_read_lock in gss_stringify_acceptor (Steve Dickson) [1111712]
-- [fs] nfs: Fix use of uninitialized variable in nfs_getattr() (Steve Dickson) [1111712]
-- [fs] nfs: Remove bogus assignment (Steve Dickson) [1111712]
-- [fs] nfs: remove spurious WARN_ON_ONCE in write path (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: serialize GETDEVICEINFO calls (Steve Dickson) [1111712]
-- [fs] nfs: fix pnfs direct write memory leak (Steve Dickson) [1111712]
-- [fs] revert "nfs: nfs4_do_open should add negative results to the dcache." (Steve Dickson) [1111712]
-- [fs] revert "nfs: remove BUG possibility in nfs4_open_and_get_state" (Steve Dickson) [1111712]
-- [fs] nfsv4: Ensure nfs_atomic_open set the dentry verifier on ENOENT (Steve Dickson) [1111712]
-- [fs] nfsv4.1/pnfs: replace broken pnfs_put_lseg_async (Steve Dickson) [1111712]
-- [fs] nfsv4: Remove dead prototype for nfs4_insert_deviceid_node() (Steve Dickson) [1111712]
-- [fs] svcrdma: advertise the correct max payload (Steve Dickson) [1111712]
-- [fs] nfsd: introduce nfsd4_callback_ops (Steve Dickson) [1111712]
-- [fs] nfsd: split nfsd4_callback initialization and use (Steve Dickson) [1111712]
-- [fs] nfsd: introduce a generic nfsd4_cb (Steve Dickson) [1111712]
-- [fs] nfsd: remove nfsd4_callback.cb_op (Steve Dickson) [1111712]
-- [fs] nfsd: do not clear rpc_resp in nfsd4_cb_done_sequence (Steve Dickson) [1111712]
-- [fs] nfsd: fix nfsd4_cb_recall_done error handling (Steve Dickson) [1111712]
-- [fs] nfsd4: clarify how grace period ends (Steve Dickson) [1111712]
-- [fs] nfsd4: stop grace_time update at end of grace period (Steve Dickson) [1111712]
-- [fs] nfsd: skip subsequent UMH "create" operations after the first one for v4.0 clients (Steve Dickson) [1111712]
-- [fs] nfsd: set and test NFSD4_CLIENT_STABLE bit to reduce nfsdcltrack upcalls (Steve Dickson) [1111712]
-- [fs] nfsd: serialize nfsdcltrack upcalls for a particular client (Steve Dickson) [1111712]
-- [fs] nfsd: pass extra info in env vars to upcalls to allow for early grace period end (Steve Dickson) [1111712]
-- [fs] nfsd: add a v4_end_grace file to /proc/fs/nfsd (Steve Dickson) [1111712]
-- [fs] lockd: add a /proc/fs/lockd/nlm_end_grace file (Steve Dickson) [1111712]
-- [fs] nfsd: reject reclaim request when client has already sent RECLAIM_COMPLETE (Steve Dickson) [1111712]
-- [fs] nfsd: remove redundant boot_time parm from grace_done client tracking op (Steve Dickson) [1111712]
-- [fs] lockd: move lockd's grace period handling into its own module (Steve Dickson) [1111712]
-- [fs] nfsd: Put export if prepare_creds() fail (Steve Dickson) [1111712]
-- [fs] nfsd: Full checking of authentication name (Steve Dickson) [1111712]
-- [fs] nfsd: Fix bad using of return value from qword_get (Steve Dickson) [1111712]
-- [fs] nfsd: Fix a memory leak if nfsd4_recdir_load fail (Steve Dickson) [1111712]
-- [fs] nfsd: Reset creds after mnt_want_write_file() fail (Steve Dickson) [1111712]
-- [fs] nfsd: Put file after ima_file_check fail in nfsd_open() (Steve Dickson) [1111712]
-- [fs] nfs: do not start the callback thread until we set rqstp->rq_task (Steve Dickson) [1111712]
-- [fs] lockd: Do not start the lockd thread before we've set nlmsvc_rqst->rq_task (Steve Dickson) [1111712]
-- [fs] nfsd4: remove labeled NFS warning from config help (Steve Dickson) [1111712]
-- [fs] sunrpc: fix byte-swapping of displayed XID (Steve Dickson) [1111712]
-- [fs] nfsd: Update some as-yet unused 4.2 error codes (Steve Dickson) [1111712]
-- [fs] nfsd: Remove duplicate initialization of file_lock (Steve Dickson) [1111712]
-- [fs] sunrpc: Fix compile on non-x86 (Steve Dickson) [1111712]
-- [fs] nfsd4: reserve adequate space for LOCK op (Steve Dickson) [1111712]
-- [fs] nfsd4: remove obsolete comment (Steve Dickson) [1111712]
-- [fs] nfsd3: Check write permission after checking existence (Steve Dickson) [1111712]
-- [fs] nfsd: call nfs4_put_deleg_lease outside of state_lock (Steve Dickson) [1111712]
-- [fs] nfsd: protect lease-related nfs4_file fields with fi_lock (Steve Dickson) [1111712]
-- [fs] nfsd: Reorder nfsd_cache_match to check more powerful discriminators first (Steve Dickson) [1111712]
-- [fs] nfsd: split DRC global spinlock into per-bucket locks (Steve Dickson) [1111712]
-- [fs] nfsd: convert num_drc_entries to an atomic_t (Steve Dickson) [1111712]
-- [fs] nfsd: Remove the cache_hash list (Steve Dickson) [1111712]
-- [fs] nfsd: convert the lru list into a per-bucket thing (Steve Dickson) [1111712]
-- [fs] nfsd: Clean up drc cache in preparation for global spinlock elimination (Steve Dickson) [1111712]
-- [fs] sunrpc: Optimise away svc_recv_available (Steve Dickson) [1111712]
-- [fs] sunrpc: More optimisations of svc_xprt_enqueue() (Steve Dickson) [1111712]
-- [fs] sunrpc: Fix broken kthread_should_stop test in svc_get_next_xprt (Steve Dickson) [1111712]
-- [fs] sunrpc: get rid of the request wait queue (Steve Dickson) [1111712]
-- [fs] sunrpc: Do not grab pool->sp_lock unnecessarily in svc_get_next_xprt (Steve Dickson) [1111712]
-- [fs] nfs: Ensure that nfs_callback_start_svc sets the server rq_task (Steve Dickson) [1111712]
-- [fs] lockd: Ensure that lockd_start_svc sets the server rq_task (Steve Dickson) [1111712]
-- [fs] sunrpc: Do not override wspace tests in svc_handle_xprt (Steve Dickson) [1111712]
-- [fs] nfsv4.1: Fix an NFSv4.1 state renewal regression (Steve Dickson) [1111712]
-- [fs] nfsv4: fix open/lock state recovery error handling (Steve Dickson) [1111712]
-- [fs] nfsv4: Fix lock recovery when CREATE_SESSION/SETCLIENTID_CONFIRM fails (Steve Dickson) [1111712]
-- [fs] nfs: Fabricate fscache server index key correctly (Steve Dickson) [1111712]
-- [fs] sunrpc: Add missing support for RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT (Steve Dickson) [1111712]
-- [fs] nfsv3: Fix missing includes of nfs3_fs.h (Steve Dickson) [1111712]
-- [fs] nfs: don't use STABLE writes during writeback (Steve Dickson) [1111712]
-- [fs] nfsv4: use exponential retry on NFS4ERR_DELAY for async requests (Steve Dickson) [1111712]
-- [fs] rpc: Add -EPERM processing for xs_udp_send_request() (Steve Dickson) [1111712]
-- [fs] rpc: return sent and err from xs_sendpages() (Steve Dickson) [1111712]
-- [fs] Fixing lease renewal (Steve Dickson) [1111712]
-- [fs] nfs: fix duplicate proc entries (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: Fix a 64-bit division/remainder issue in bl_map_stripe (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: include vmalloc.h for __vmalloc (Steve Dickson) [1111712]
-- [fs] nfs41: change PNFS_LAYOUTRET_ON_SETATTR to only return on truncation to smaller size (Steve Dickson) [1111712]
-- [fs] nfs: Move NFS v3 acl functions to nfs3_fs.h (Steve Dickson) [1111712]
-- [fs] nfs: Remove v3 not compiled check from validate_mount_data() (Steve Dickson) [1111712]
-- [fs] nfs: Move v3 declarations out of internal.h (Steve Dickson) [1111712]
-- [fs] nfs: Unconditionally enable commit code (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: Remove a couple of unused variables (Steve Dickson) [1111712]
-- [fs] pnfs: enable CB_NOTIFY_DEVICEID support (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: in-kernel GETDEVICEINFO XDR parsing (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: move all rpc_pipefs related code into a single file (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: refactor extent processing (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: move extent processing to blocklayout.c (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: allocate separate pages for the layoutcommit payload (Steve Dickson) [1111712]
-- [fs] pnfs: remove GETDEVICELIST implementation (Steve Dickson) [1111712]
-- [fs] pnfs/objlayout: fix endianess annotation in objio_alloc_deviceid_node (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: remove some debugging (Steve Dickson) [1111712]
-- [fs] nfs: add __acquires and __releases annotations to seqfile start/stop routines (Steve Dickson) [1111712]
-- [fs] nfs: fix RCU cl_xprt handling in nfs_swap_activate/deactivate (Steve Dickson) [1111712]
-- [fs] nfs: setattr can only change regular file sizes (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: use the device id cache (Steve Dickson) [1111712]
-- [fs] pnfs: add a nfs4_get_deviceid helper (Steve Dickson) [1111712]
-- [fs] pnfs: add a common GETDEVICELIST implementation (Steve Dickson) [1111712]
-- [fs] pnfs: factor GETDEVICEINFO implementations (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: return layouts on setattr (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: implement the return_range method (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: rewrite extent tracking (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: don't set pages uptodate (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: remove read-modify-write handling in bl_write_pagelist (Steve Dickson) [1111712]
-- [fs] pnfs: add return_range method (Steve Dickson) [1111712]
-- [fs] pnfs: add flag to force read-modify-write in ->write_begin (Steve Dickson) [1111712]
-- [fs] pnfs: force a layout commit when encountering busy segments during recall (Steve Dickson) [1111712]
-- [fs] nfs: Fix a compile warning when !(CONFIG_NFS_V3 || CONFIG_NFS_V4) (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: correctly decrement extent length (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: plug block queues (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: improve GETDEVICEINFO error reporting (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: reject pnfs blocksize larger than page size (Steve Dickson) [1111712]
-- [fs] pnfs: allow splicing pre-encoded pages into the layoutcommit args (Steve Dickson) [1111712]
-- [fs] pnfs: avoid using stale stateids after layoutreturn (Steve Dickson) [1111712]
-- [fs] pnfs: retry after a bad stateid error from layoutget (Steve Dickson) [1111712]
-- [fs] pnfs: don't check sequence on new stateids in layoutget (Steve Dickson) [1111712]
-- [fs] pnfs: do not pass uninitialized lsegs to ->free_lseg (Steve Dickson) [1111712]
-- [fs] nfs: cap request size to fit a kmalloced page array (Steve Dickson) [1111712]
-- [fs] nfs/filelayout: set layoutcommit depending on write verifier (Steve Dickson) [1111712]
-- [fs] nfs41: add a helper function to set layoutcommit after commit (Steve Dickson) [1111712]
-- [fs] nfs: Clear up state owner lock usage (Steve Dickson) [1111712]
-- [fs] rpc: xs_bind - do not bind when requesting a random ephemeral port (Steve Dickson) [1111712]
-
-* Mon Apr 06 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-236.el7]
-- [documentation] cpuset: isolcpus: document relationship between cpusets & isolcpus (Rik van Riel) [1194687]
-- [kernel] cpusets: isolcpus: exclude isolcpus from load balancing in cpusets (Rik van Riel) [1194687]
-- [kernel] sched: isolcpu: make cpu_isolated_map visible outside scheduler (Rik van Riel) [1194687]
-- [powerpc] fix memory corruption by pnv_alloc_idle_core_states (Jan Stancek) [1205856]
-- [kernel] trace: Check if tracing is enabled in trace_puts() (Luiz Capitulino) [1198836]
-- [net] ipvs: allow rescheduling of new connections when port reuse is detected (Marcelo Leitner) [1196781]
-- [net] ipv6: gre: fix wrong skb->protocol in WCCP (Hannes Frederic Sowa) [1196478]
-- [net] ipv6: mld: fix add_grhead skb_over_panic for devs with large MTUs (Hannes Frederic Sowa) [1194694]
-- [net] team: don't traverse port list using rcu in team_set_mac_address (Jiri Pirko) [1182208]
-- [net] ipv6: replacing a rt6_info needs to purge possible propagated rt6_infos too (Jiri Pirko) [1198402]
-- [net] team: allow TSO being set on master (Jiri Pirko) [1189844]
-- [net] ipv6: addrconf: validate new MTU before applying it (Marcelo Leitner) [1194011]
-- [net] netfilter: conntrack: adjust nf_conntrack_buckets default value (Marcelo Leitner) [1176947]
-- [net] ipv6: fix possible deadlock in ip6_fl_purge / ip6_fl_gc (Jan Stancek) [1191411]
-- [netdrv] ppp: deflate: never return len larger than output buffer (Florian Westphal) [1187574]
-- [net] ipv4: kABI fix for 0bbf87d backport (Aristeu Rozanski) [1184764]
-- [net] ipv4: Convert ipv4.ip_local_port_range to be per netns (Aristeu Rozanski) [1184764]
-- [net] xfrm: Fix crash with ipv6 IPsec tunnel and NAT (Hannes Frederic Sowa) [1162395]
-- [net] bonding: implement bond_poll_controller() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Implement port churn-machine (AD standard 43.4.17) (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Verify RX LACPDU has proper dest mac-addr (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simple code refactor (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Move slave state changes to a helper function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: cleanup and remove dead code (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix LACP PDU not sent on slave port sometimes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix incorrect lacp mux state when agg not active (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_open() don't always set slave active flag (Nikolay Aleksandrov) [1166647]
-- [net] bonding: update bond carrier state when min_links option changes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: cleanup bond_opts array (Nikolay Aleksandrov) [1166647]
-- [net] bonding: change error message to debug message in __bond_release_one() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Check length of IFLA_BOND_ARP_IP_TARGET attributes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Introduce 4 AD link speed to fix agg_bandwidth (Nikolay Aleksandrov) [1166647]
-- [net] bonding: change AD_LINK_SPEED_BITMASK to enum to suport more speed (Nikolay Aleksandrov) [1166647]
-- [net] bonding: squash a warning (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix curr_active_slave/carrier with loadbalance arp monitoring (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Move bonding headers under include/net (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add bond_tx_drop() helper (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Simplify the xmit function for modes that use xmit_hash (Nikolay Aleksandrov) [1166647]
-- [net] bonding: display xmit_hash_policy for non-dynamic-tlb mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make global bonding stats more reliable (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the unnecessary notes for bond_xmit_broadcast() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimization for bond_xmit_roundrobin() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: consolidate ASSERT_RTNL()s and remove the unnecessary (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: style and comment fixes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: consolidate the two rlb_next_rx_slave functions into one (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix div by zero while enslaving and transmitting (Nikolay Aleksandrov) [1166647]
-- [net] bonding: adjust locking comments (Nikolay Aleksandrov) [1166647]
-- [net] bonding: 3ad: convert to bond->mode_lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: alb: convert to bond->mode_lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert curr_slave_lock to a spinlock and rename it (Nikolay Aleksandrov) [1166647]
-- [net] bonding: clean curr_slave_lock use (Nikolay Aleksandrov) [1166647]
-- [net] bonding: alb: remove curr_slave_lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: 3ad: clean up curr_slave_lock usage (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Add missing space in bonding driver parameter description (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove last users of bond->lock and bond->lock itself (Nikolay Aleksandrov) [1166647]
-- [net] bonding: options: remove bond->lock usage (Nikolay Aleksandrov) [1166647]
-- [net] bonding: procfs: clean bond->lock usage and use RCU (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert primary_slave to use RCU (Nikolay Aleksandrov) [1166647]
-- [net] bonding: alb: clean bond->lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: 3ad: use curr_slave_lock instead of bond->lock (Nikolay Aleksandrov) [1166647]
-- [netdrv] cxgb4: remove bond->lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fix typo in printk (Nikolay Aleksandrov) [1166647]
-- [net] bonding: create netlink event when bonding option is changed (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Replace rcu_dereference() with rcu_access_pointer() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use kobject_put instead of _del after kobject_add (Nikolay Aleksandrov) [1166647]
-- [net] bonding: destroy proc directory only after all bonds are gone (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use rtnl_deref in bond_change_rx_flags() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: enhance L2 hash helper with packet type (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Do not try to send packets over dead link in TLB mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_options.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_options.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_procfs.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_netlink.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_netlink.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_debugfs.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_alb.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_alb.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_3ad.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_3ad.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_main.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_main.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_option_mode_set warning (Nikolay Aleksandrov) [1166647]
-- [net] bonding: permit enslaving interfaces without set_mac support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add proper __rcu annotation for current_arp_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add proper __rcu annotation for curr_active_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use rcu_access_pointer() in bonding_show_mii_status() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: get rid of bond_option_active_slave_get() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix ad_select module param check (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Advertize vxlan offload features when supported (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Turn on IFF_UNICAST_FLT on bond devices (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove NULL verification from bond_get_bond_by_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: populate essential new_slave->bond/dev early (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Don't assume 802.1Q when sending alb learning packets (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix vlan_features computing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: replace SLAVE_IS_OK() with bond_slave_can_tx() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rename {, bond_}slave_can_tx and clean it up (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert IS_UP(slave->dev) to inline function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make IS_IP_TARGET_UNUSABLE_ADDRESS an inline function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: create a macro for bond mode and use it (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make USES_PRIMARY inline functions (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make BOND_NO_USES_ARP an inline function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make TX_QUEUE_OVERRIDE() macro an inline function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove BOND_MODE_IS_LB macro (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix out of range parameters for bond_intmax_tbl (Nikolay Aleksandrov) [1166647]
-- [net] bonding: alloc the structure ad_info dynamically in per slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make a generic sysfs option store and fix comments (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the unused macro (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simplify the slave_do_arp_validate_only() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the unnecessary struct bond_net (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fix format string mismatch in bond_sysfs.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Add tlb_dynamic_lb parameter for tlb mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Added bond_tlb_xmit() for tlb mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Reorg bond_alb_xmit code (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Changed hashing function to just provide hash (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Remove debug_fs files when module init fails (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Inactive slaves should keep inactive flag's value (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Use RCU_INIT_POINTER(x, NULL) in bonding/bond_options.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add net_ratelimt to avoid spam in arp interval (Nikolay Aleksandrov) [1166647]
-- [net] bonding: support QinQ for bond arp interval (Nikolay Aleksandrov) [1166647]
-- [net] vlan: make a new function vlan_dev_vlan_proto() and export (Nikolay Aleksandrov) [1166647]
-- [net] bonding: ratelimit pr_err() for bond xmit broadcast (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimization for bond xmit path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: ratelimit pr_warn()s in 802.3ad mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use the correct ether type for alb (Nikolay Aleksandrov) [1166647]
-- [net] ether: add loopback type ETH_P_LOOPBACK (Nikolay Aleksandrov) [1166647]
-- [net] bonding: set correct vlan id for alb xmit path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Call dev_kfree_skby_any instead of kfree_skb (Nikolay Aleksandrov) [1166647]
-- [net] bonding: force cast of IP address in options (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix const in options processing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: correctly handle out of range parameters for lp_interval (Nikolay Aleksandrov) [1166647]
-- [net] bonding: options handling cleanup (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove dead code (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make slave status notifications GFP_ATOMIC (Nikolay Aleksandrov) [1166647]
-- [net] bonding: send arp requests even if there's no route to them (Nikolay Aleksandrov) [1166647]
-- [net] bonding: disallow enslaving a bond to itself (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix a div error caused by the slave release path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix rtnl: assertion failed at net/core/rtnetlink.c for ab arp monitor (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix rtnl: assertion failed at net/core/rtnetlink.c for 802.3ad mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove no longer needed lock for bond_xxx_info_query() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use rcu_dereference() to access curr_active_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: netpoll: remove unwanted slave_dev_support_netpoll() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_arp_rcv() race of curr_active_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Invert test (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Remove unnecessary else (Nikolay Aleksandrov) [1166647]
-- [net] bonding: More use of ether_addr_copy (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rename last_arp_rx to last_rx (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: rename slave->jiffies to ->last_link_up (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove useless updating of slave->dev->last_rx (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use last_arp_rx in bond_loadbalance_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use last_arp_rx in slave_last_rx() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use the new options to correctly set last_arp_rx (Nikolay Aleksandrov) [1166647]
-- [net] bonding: extend arp_validate to be able to receive unvalidated arp-only traffic (Nikolay Aleksandrov) [1166647]
-- [net] bonding: always set recv_probe to bond_arp_rcv in arp monitor (Nikolay Aleksandrov) [1166647]
-- [net] bonding: always update last_arp_rx on packet recieve (Nikolay Aleksandrov) [1166647]
-- [net] bonding: permit using arp_validate with non-ab modes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond->lock from bond_arp_rcv (Nikolay Aleksandrov) [1166647]
-- [net] bonding: 802.3ad: make aggregator_identifier bond-private (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Convert memcpy(foo, bar, ETH_ALEN) to ether_addr_copy(foo, bar) (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Convert c99 comments (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Neaten pr_<level> (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Convert pr_warning to pr_warn, neatening (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch warnings braces {} (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch warnings braces {} (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch warnings braces {} (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch warnings braces {} (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch errors comments and space (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch errors with foo* bar|foo * bar (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_options.c direct rwlock.h include (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the redundant judgements for bond_option_queue_id_set() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the redundant judgements for bond_set_mac_address() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fix deadlock in bonding driver when using netpoll (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted bond lock for enslave processing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fail_over_mac should only affect AB mode in bond_set_mac_address() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fail_over_mac should only affect AB mode at enslave and removal processing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix locking in bond_loadbalance_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: restructure locking of bond_ab_arp_probe() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: RCUify bond_ab_arp_probe (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix u64 division (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Don't allow bond devices to change network namespaces (Nikolay Aleksandrov) [1166647]
-- [net] bonding: change name of sysfs dir for bonding slaves (Nikolay Aleksandrov) [1166647]
-- [net] bonding: clean the primary slave if there is no slave matching new primary (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert slaves to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert lp_interval to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert resend_igmp to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert all_slaves_active to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert queue_id to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert active_slave to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert use_carrier to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert primary_reselect to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert primary to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert miimon to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert num_peer_notif to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert ad_select to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert min_links to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert lacp_rate to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert updelay to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert downdelay to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert arp_ip_target to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert arp_interval to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert fail_over_mac to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert arp_all_targets to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert arp_validate to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert xmit_hash_policy to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert packets_per_slave to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert mode setting to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add infrastructure for an option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: reciprocal_divide: update/correction of the algorithm (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make slave_sysfs_ops static (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add sysfs /slave dir for bond slave devices (Nikolay Aleksandrov) [1166647]
-- [net] bonding: handle slave's name change with primary_slave logic (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use __dev_get_by_name instead of dev_get_by_name to find interface (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix __get_active_agg() RCU logic (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix __get_first_agg RCU usage (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_3ad_set_carrier() RCU usage (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove dead code from 3ad (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert 3ad to use pr_warn instead of pr_warning (Nikolay Aleksandrov) [1166647]
-- [net] bonding: clean up style for bond_3ad.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix kstrtou8() return value verification in num_peer_notif (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add bounds checking for tbl params (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix netlink msg size (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add ad_info attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add ad_select attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add lacp_rate attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make more functions static (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use ether_addr_equal_64bits to instead of ether_addr_equal (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the return value for bond_3ad_bind_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted return value for bond_dev_queue_xmit() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimizztion for bond_slave_override() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimization for bond_alb_xmit() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimization for bond_3ad_xmit_xor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use ether_addr_equal_unaligned for bond addr compare (Nikolay Aleksandrov) [1166647]
-- [net] bonding: ust micro BOND_NO_USE_ARP to simplify the mode check (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add option lp_interval for loading module (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make local function static (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add packets_per_slave attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add lp_interval attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add min_links attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add all_slaves_active attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add num_grat_arp attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: protect port for bond_3ad_handle_link_change() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: protect port for bond_3ad_adapter_duplex_changed() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: protect port for bond_3ad_adapter_speed_changed() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add resend_igmp attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add xmit_hash_policy attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add fail_over_mac attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add primary_select attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add primary attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use be32 nla put/get for be32 values (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the bond_resend_igmp_join_requests_delayed() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted lock for bond_store_primaryxxx() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted lock for bond_option_active_slave_set() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add RCU for bond_3ad_state_machine_handler() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted lock for bond enslave and release (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the lock use for bond_activebackup_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: create bond_first_slave_rcu() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the lock use for bond_loadbalance_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the lock use for bond_alb_monitor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the lock use for bond_mii_monitor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the no effect lock for bond_select_active_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_all_targets netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_validate netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_ip_target netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_interval netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add use_carrier netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add downdelay netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add updelay netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add miimon netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Use RCU_INIT_POINTER() for better overhead and for sparse (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix packets_per_slave showing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fix FSF address in file headers (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_ip_target checks when install the module (Nikolay Aleksandrov) [1166647]
-- [net] bonding: disable arp and enable mii monitoring when bond change to no uses arp mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add ip checks when store ip target (Nikolay Aleksandrov) [1166647]
-- [net] bonding: extend round-robin mode with packets_per_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: bond_get_size() returns wrong size (Nikolay Aleksandrov) [1166647]
-- [net] Revert "Merge branch 'bonding_monitor_locking'" (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_3ad_state_machine_handler() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_activebackup_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_loadbalance_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_alb_monitor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_mii_monitor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move bond-specific init after enslave happens (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Remove __exit tag from bond_netlink_fini() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add Netlink support active_slave option (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add Netlink support mode option (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move active_slave getting into separate function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_ioctl_change_active() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move active_slave setting into separate function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move mode setting into separate function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: push Netlink bits into separate file (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add rtnl lock and remove read lock for bond sysfs (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use RCU protection for alb xmit path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use RCU protection for 3ad xmit path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: modify the old and add new xmit hash policies (Nikolay Aleksandrov) [1166647]
-- [net] flow_dissector: factor out the ports extraction in skb_flow_get_ports (Nikolay Aleksandrov) [1166647]
-- [net] flow: Remove extern from function prototypes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: RCUify bond_set_rx_mode() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: remove forgotten bond_next_vlan() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_next_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't use bond_next_slave() in bond_info_seq_next() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unused __get_next_agg() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make bond_3ad_unbind_slave() use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make ad_agg_selection_logic() use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make __get_active_agg() use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make ad_port_selection_logic() use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove __get_first_port() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove __get_next_port() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: verify if we still have slaves in bond_3ad_unbind_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: correctly verify for the first slave in bond_enslave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move bond_attach/detach_slave in the proper position (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_prev_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add bond_has_slaves() and use it (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unused bond_for_each_slave_from() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rework bond_ab_arp_probe() to use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rework bond_find_best_slave() to use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rework rlb_next_rx_slave() to use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rework bond_3ad_xmit_xor() to use bond_for_each_slave() only (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use bond_for_each_slave() in bond_uninit() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make bond_for_each_slave() use lower neighbour's private (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_for_each_slave_continue_reverse() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: populate neighbour's private on enslave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Make alb learning packet interval configurable (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_arp_rcv setting and arp validate desync state (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix store_arp_validate race with mode change (Nikolay Aleksandrov) [1166647]
-- [net] bonding: drop read_lock in bond_compute_features (Nikolay Aleksandrov) [1166647]
-- [net] bonding: drop read_lock in bond_fix_features (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simplify bond_3ad_update_lacp_rate and use RTNL for sync (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: remove outdated comment and braces (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simplify and fix peer notification (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use rlb_client_info->vlan_id instead of ->tag (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_vlan_used() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: pr_debug instead of pr_warn in bond_arp_send_all (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove vlan_list/current_alb_vlan (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make alb_send_learning_packets() use upper dev list (Nikolay Aleksandrov) [1166647]
-- [net] bonding: split alb_send_learning_packets() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_has_this_ip() to use upper devices (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make bond_arp_send_all use upper device list (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use netdev_upper list in bond_vlan_used (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix error return code in bond_enslave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: unwind on bond_add_vlan failure (Nikolay Aleksandrov) [1166647]
-- [net] bonding: change the bond's vlan syncing functions with the standard ones (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove locking from bond_set_rx_mode() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add bond_time_in_interval() and use it for time comparison (Nikolay Aleksandrov) [1166647]
-- [net] bonding: call slave_last_rx() only once per slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: initial RCU conversion (Nikolay Aleksandrov) [1166647]
-- [net] bonding: factor out slave id tx code and simplify xmit paths (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simplify broadcast_xmit function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unnecessary read_locks of curr_slave_lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert to list API and replace bond's custom list (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix system hang due to fast igmp timer rescheduling (Nikolay Aleksandrov) [1166647]
-- [net] bond: cleanup netpoll code (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use pre-defined macro in bond_mode_name instead of magic number 0 (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fixed up a error "do not initialise statics to 0 or NULL" in bond_main.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add rtnl protection for bonding_store_fail_over_mac (Nikolay Aleksandrov) [1166647]
-- [net] bonding: bond_sysfs.c checkpatch cleanup (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't call slave_xxx_netpoll under spinlocks (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unnecessary setup_by_slave member (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add an option to fail when any of arp_ip_target is inaccessible (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't trust arp requests unless active slave really works (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't validate arp if we don't have to (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't add duplicate targets to arp_ip_target (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add helper function bond_get_targets_ip(targets, ip) (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: make alb use bond_slave_has_mac() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't call alb_set_slave_mac_addr() while atomic (Nikolay Aleksandrov) [1166647]
-- [net] bonding: disallow change of MAC if fail_over_mac enabled (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Convert hw addr handling to sync/unsync, support ucast addresses (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: update the comments to reflect the reality (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: remove unused parameter from alb_swap_mac_addr() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: allow xmit hash policy change while bond dev is up (Nikolay Aleksandrov) [1166647]
-- [net] nf_conntrack: allow server to become a client in TW handling (Marcelo Leitner) [1160431]
-
-* Fri Apr 03 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-235.el7]
-- [crypto] add missing crypto module aliases (Denys Vlasenko) [1190631] {CVE-2013-7421 CVE-2014-9644}
-- [crypto] include crypto- module prefix in template (Denys Vlasenko) [1190631] {CVE-2013-7421 CVE-2014-9644}
-- [crypto] prefix module autoloading with "crypto-" (Denys Vlasenko) [1190631] {CVE-2013-7421 CVE-2014-9644}
-- [hv] vmbus: introduce vmbus_acpi_remove (Vitaly Kuznetsov) [1201889]
-- [hv] vmbus: Teardown synthetic interrupt controllers on module unload (Vitaly Kuznetsov) [1201889]
-- [hv] vmbus: teardown hv_vmbus_con workqueue and vmbus_connection pages on shutdown (Vitaly Kuznetsov) [1201889]
-- [hv] vmbus: avoid double kfree for device_obj (Vitaly Kuznetsov) [1201889]
-- [hv] vmbus: rename channel work queues (Vitaly Kuznetsov) [1201889]
-- [hv] use correct order when freeing monitor_pages (Vitaly Kuznetsov) [1201889]
-- [x86] hyperv: Fixup the (brain) damage caused by the irq cleanup (Vitaly Kuznetsov) [1201889]
-- [x86] hyperv: Fix brown paperbag typos reported by Fenguangs build robot (Vitaly Kuznetsov) [1201889]
-- [x86] hyperv: Make it build with CONFIG_HYPERV=m again (Vitaly Kuznetsov) [1201889]
-- [x86] hyperv: Cleanup the irq mess (Vitaly Kuznetsov) [1201889]
-- [hv] move ringbuffer bus attributes to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] delete struct hv_dev_port_info (Vitaly Kuznetsov) [1201889]
-- [hv] delete vmbus_get_debug_info() (Vitaly Kuznetsov) [1201889]
-- [hv] move "client/server_monitor_conn_id" bus attributes to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "client/server_monitor_latency" bus attributes to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "client/server_monitor_pending" bus attributes to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] make "monitor_pages" a "real" pointer array (Vitaly Kuznetsov) [1201889]
-- [hv] move "device_id" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "class_id" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "modalias" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "monitor_id" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "state" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] use dev_groups for device attributes (Vitaly Kuznetsov) [1201889]
-- [drm] radeon: fix kernel segfault in hwmonitor (Jerome Glisse) [1187817]
-- [pci] Remove DEFINE_PCI_DEVICE_TABLE macro use (Prarit Bhargava) [1198151]
-- [scsi] storvsc: get rid of overly verbose warning messages (Vitaly Kuznetsov) [1035213 1206437]
-- [scsi] storvsc: force discovery of LUNs that may have been removed (Vitaly Kuznetsov) [1035213 1206437]
-- [scsi] storvsc: in responce to a scan event, scan the host (Vitaly Kuznetsov) [1035213 1206437]
-- [scsi] storvsc: NULL pointer dereference fix (Vitaly Kuznetsov) [1035213 1206437]
-- [netdrv] bnx2: disable toggling of rxvlan if necessary (Ivan Vecera) [1190094]
-- [netdrv] tg3: move init/deinit from open/close to probe/remove (Ivan Vecera) [1172960]
-- [netdrv] mlx4_en: tx_info->ts_requested was not cleared (Doug Ledford) [1178070]
-- [input] serio: hyperv-keyboard - register as a wakeup source (Vitaly Kuznetsov) [1086100]
-- [hid] hyperv: register as a wakeup source (Vitaly Kuznetsov) [1086100]
-- [hid] hyperv: make sure input buffer is big enough (Vitaly Kuznetsov) [1086100]
-- [edac] sb_edac: Fix typo computing number of banks (Seth Jennings) [1165448]
-- [edac] sb_edac: Add support for Broadwell-DE processor (Seth Jennings) [1165448]
-- [edac] sb_edac: Fix discovery of top-of-low-memory for Haswell (Seth Jennings) [1158624]
-- [perf] powerpc: Use dwfl_report_elf() instead of offline (Gustavo Duarte) [1113736]
-- [perf] powerpc: Cache the DWARF debug info (Gustavo Duarte) [1113736]
-- [kernel] ring-buffer: Check if buffer exists before polling (Gustavo Duarte) [1199699]
-- [powerpc] mm: thp: Add tracepoints to track hugepage invalidate (Gustavo Duarte) [1199016]
-- [powerpc] mm: Use read barrier when creating real_pte (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Use ACCESS_ONCE when loading pmdp (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Invalidate with vpn in loop (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Handle combo pages in invalidate (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Invalidate old 64K based hash page mapping before insert of 4k pte (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Don't recompute vsid and ssize in loop on invalidate (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Add write barrier after updating the valid bit (Gustavo Duarte) [1199016]
-- [cpufreq] powernv: Set the cpus to nominal frequency during reboot/kexec (Gustavo Duarte) [1182062]
-- [cpufreq] powernv: Set the pstate of the last hotplugged out cpu in policy->cpus to minimum (Gustavo Duarte) [1182062]
-- [cpufreq] Allow stop CPU callback to be used by all cpufreq drivers (Gustavo Duarte) [1182062]
-- [i2c] i801: Add DeviceIDs for SunrisePoint LP (David Milburn) [1129470]
-- [sound] alsa: hda_intel: Add DeviceIDs for Sunrise Point-LP (David Milburn) [1129470]
-- [ata] ahci: Add DeviceIDs for Sunrise Point-LP SATA controller (David Milburn) [1129470]
-- [ata] ahci: Remove Device ID for Intel Sunrise Point PCH (David Milburn) [1082114]
-- [i2c] i801: Check if interrupts are disabled (David Milburn) [1082114]
-- [i2c] i801: Fallback to polling if request_irq() fails (David Milburn) [1082114]
-- [i2c] i801: Use wait_event_timeout to wait for interrupts (David Milburn) [1082114]
-- [ata] ahci: Add Device IDs for Intel Sunrise Point PCH (David Milburn) [1082114]
-- [i2c] i801: Add Device IDs for Intel Sunrise Point PCH (David Milburn) [1082114]
-- [sound] alsa: hda_intel: Add Device IDs for Intel Sunrise Point PCH (David Milburn) [1082114]
-
-* Mon Mar 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-234.el7]
-- [tools] perf/probe: Trivial typo fix for --demangle (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F dso_from for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F dso_to for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F symbol_from for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F symbol_to for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F mispredict for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F in_tx for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F abort for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Make CPUINFO_PROC an array to support different kernel versions (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Use global caching provided by libunwind (Jiri Olsa) [1169436]
-- [tools] perf/diff: Add missing hists__init() call at tool start (Jiri Olsa) [1169436]
-- [tools] perf/script: Add period as a default output column (Jiri Olsa) [1169436]
-- [tools] perf/script: Add period data column (Jiri Olsa) [1169436]
-- [tools] perf/evsel: No need to drag util/cgroup.h (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add missing 'struct option' forward declaration (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Move exit stuff from __delete to __exit (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Enable events copying (Jiri Olsa) [1169436]
-- [tools] perf/session: Add option to copy events when queueing (Jiri Olsa) [1169436]
-- [tools] perf/Documentation: Fix typos in perf/Documentation (Jiri Olsa) [1169436]
-- [tools] perf/trace: Use thread_{, _set}_priv helpers (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Use thread_{, _set}_priv helpers (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Create an address space per thread (Jiri Olsa) [1169436]
-- [tools] perf/report: Set callchain_param.record_mode for future use (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Fix for double free in tools/perf stat (Jiri Olsa) [1169436]
-- [tools] perf/test: Add test case for pmu event new style format (Jiri Olsa) [1169436]
-- [tools] perf: Add support to new style format of kernel PMU event (Jiri Olsa) [1169436]
-- [tools] perf: Parse the pmu event prefix and suffix (Jiri Olsa) [1169436]
-- [tools] Revert: perf: Default to cpu// for events v5 (Jiri Olsa) [1169436]
-- [tools] perf/top: Add a visual cue for toggle zeroing of samples (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Make sym->end be the first address after the symbol range (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Fix map->end fixup (Jiri Olsa) [1169436]
-- [tools] perf: Fixup off-by-one comparision in maps__find (Jiri Olsa) [1169436]
-- [tools] perf: fix off-by-one error in maps (Jiri Olsa) [1169436]
-- [tools] perf/machine: Add missing dsos->root rbtree root initialization (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Make some exit routines static (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Add missing 'target' struct forward declaration (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Default to syswide target when no thread/cpu maps set (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Check that there is a thread_map when preparing a workload (Jiri Olsa) [1169436]
-- [tools] perf/thread_map: Create dummy constructor out of open coded equivalent (Jiri Olsa) [1169436]
-- [tools] perf: Remove hists from evsel (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Move the callchain_param extern to callchain.h (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Subclassing (Jiri Olsa) [1169436]
-- [tools] perf/session: Remove last reference to hists struct (Jiri Olsa) [1169436]
-- [tools] perf/ui/browsers: Add missing include (Jiri Olsa) [1169436]
-- [tools] perf: Move events_stats struct to event.h (Jiri Olsa) [1169436]
-- [tools] perf/session: Don't count per evsel events (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Add hists helper (Jiri Olsa) [1169436]
-- [tools] perf/script: Stop updating hists stats, not used (Jiri Olsa) [1169436]
-- [tools] perf/sched: Stop updating hists stats, not used (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Move callchain_param to util object in to fix python test (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Use fdarray object instead of pollfd (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Use perf_evlist__add_pollfd return fd position (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Fix perf_evlist__add_pollfd error handling (Jiri Olsa) [1169436]
-- [tools] perf/record: Fix error message for --filter option not coming after tracepoint (Jiri Olsa) [1169436]
-- [tools] perf: Fix build breakage on arm64 targets (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Improve DSO long names lookup speed with rbtree (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Encapsulate dsos list head into struct dsos (Jiri Olsa) [1169436]
-- [tools] perf/bench/futex: Sanitize -q option in requeue (Jiri Olsa) [1169436]
-- [tools] perf/bench/futex: Support operations for shared futexes (Jiri Olsa) [1169436]
-- [tools] perf/trace: Fix mmap return address truncation to 32-bit (Jiri Olsa) [1169436]
-- [tools] perf: Refactor unit and scale function parameters (Jiri Olsa) [1169436]
-- [tools] perf: Fix line number in the config file error message (Jiri Olsa) [1169436]
-- [tools] perf: Convert {record, top}.call-graph option to call-graph.record-mode (Jiri Olsa) [1169436]
-- [tools] perf: Introduce perf_callchain_config() (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Move some parser functions to callchain.c (Jiri Olsa) [1169436]
-- [tools] perf: Move callchain config from record_opts to callchain_param (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Fix callchain print bug on TUI (Jiri Olsa) [1169436]
-- [tools] perf: Use ACCESS_ONCE() instead of volatile cast (Jiri Olsa) [1169436]
-- [tools] perf: Modify error code for when perf_session__new() fails (Jiri Olsa) [1169436]
-- [tools] perf: Fix perf record as non root with kptr_restrict == 1 (Jiri Olsa) [1169436]
-- [tools] perf/stat: Fix --per-core on multi socket systems (Jiri Olsa) [1169436]
-- [tools] perf/trace: Filter out POLLHUP'ed file descriptors (Jiri Olsa) [1169436]
-- [tools] perf/record: Filter out POLLHUP'ed file descriptors (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Unmap when all refcounts to fd are gone and events drained (Jiri Olsa) [1169436]
-- [tools] lib/fd/array: Allow associating an integer cookie with each entry (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Refcount mmaps (Jiri Olsa) [1169436]
-- [tools] lib/api: Adopt fdarray class from perf's evlist (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Introduce poll method for common code idiom (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Use perf_evlist__add_pollfd() instead of local equivalent (Jiri Olsa) [1169436]
-- [tools] perf/tests: Add pollfd growing test (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Allow growing pollfd on add method (Jiri Olsa) [1169436]
-- [tools] perf/evlist: We need to poll all event file descriptors (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Monitor POLLERR and POLLHUP events too (Jiri Olsa) [1169436]
-- [tools] perf/tests: Add test for perf_evlist__filter_pollfd() (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Introduce perf_evlist__filter_pollfd method (Jiri Olsa) [1169436]
-- [tools] perf/record: Use ring buffer consume method to look like other tools (Jiri Olsa) [1169436]
-- [tools] perf/probe: Do not use dwfl_module_addrsym if dwarf_diename finds symbol name (Jiri Olsa) [1169436]
-- [tools] perf/probe: Do not access kallsyms when analyzing user binaries (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Add path to Ubuntu kernel debuginfo file (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Ignore stripped vmlinux and fallback to kallsyms (Jiri Olsa) [1169436]
-- [tools] perf: define _DEFAULT_SOURCE for glibc_2.20 (Jiri Olsa) [1169436]
-- [tools] perf: Don't include sys/poll.h directly (Jiri Olsa) [1169436]
-- [tools] perf: Fix GNU-only grep usage in Makefile (Jiri Olsa) [1169436]
-- [tools] perf/tool: fix compilation for ARM (Jiri Olsa) [1169436]
-- [tools] perf: Add perf_pmu__scan_file() (Jiri Olsa) [1169436]
-- [tools] perf: Let default config be defined for a PMU (Jiri Olsa) [1169436]
-- [tools] perf: Add perf-with-kcore script (Jiri Olsa) [1169436]
-- [tools] perf: Let a user specify a PMU event without any config terms (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/report: Unify the title bar output (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/report: Enable the target.system_wide flag (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/report: Save pid string in opts.target.pid (Jiri Olsa) [1169436]
-- [tools] perf/powerpc: Fix build issue when DWARF support is disabled (Jiri Olsa) [1169436]
-- [tools] perf: Add +field argument support for --sort option (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Consolidate callchain print functions in TUI (Jiri Olsa) [1169436]
-- [tools] perf: Add +field argument support for --field option (Jiri Olsa) [1169436]
-- [tools] perf/top: Use set_term_quiet() instead of open coded equivalent (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fallback to MAP__FUNCTION if daddr maps are NULL (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Cleanup callchain print functions (Jiri Olsa) [1169436]
-- [tools] perf: Add machine__kernel_ip() (Jiri Olsa) [1169436]
-- [tools] perf/machine: Rename machine__get_kernel_start_addr() method (Jiri Olsa) [1169436]
-- [tools] perf/scripting: Add 'flush' callback to scripting API (Jiri Olsa) [1169436]
-- [tools] perf/tests: Add a test for tracking with sched_switch (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Factor out hist_browser__show_callchain_entry() (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Fix children overhead dump (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Get rid of unused 'remaining' variable (Jiri Olsa) [1169436]
-- [tools] perf/powerpc: Explicitly include util/debug.h (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Don't try to find DSOs in SYSV maps (Jiri Olsa) [1169436]
-- [tools] perf/stat: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/help: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/buildid-cache: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/sched: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/test: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/record: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/trace: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/top: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/util: Replace strerror with strerror_r for thread-safety (Jiri Olsa) [1169436]
-- [tools] perf/probe: Make error messages thread-safe (Jiri Olsa) [1169436]
-- [tools] perf: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/probe: Don't use strerror if strlist__add failed (Jiri Olsa) [1169436]
-- [tools] perf/report: Relax -g option parsing not to limit the option order (Jiri Olsa) [1169436]
-- [tools] perf: Annotate PMU related list_head members with type info (Jiri Olsa) [1169436]
-- [tools] perf: Add arm64 triplets (Jiri Olsa) [1169436]
-- [tools] perf/annotate: Don't truncate Intel style addresses (Jiri Olsa) [1169436]
-- [tools] perf/probe: Warn user to rebuild target with debuginfo (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add perf_evlist__enable_event_idx() (Jiri Olsa) [1169436]
-- [tools] perf: Add flags and insn_len to struct sample (Jiri Olsa) [1169436]
-- [tools] perf/machine: Add machine__thread_exec_comm() (Jiri Olsa) [1169436]
-- [tools] perf: Identify which comms are from exec (Jiri Olsa) [1169436]
-- [tools] perf/script/python: Add helpers for calling Python objects (Jiri Olsa) [1169436]
-- [tools] perf/script: Allow callchains if any event samples them (Jiri Olsa) [1169436]
-- [tools] perf/session: Add perf_session__peek_event() (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add perf_evlist__set_tracking_event() (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add 'system_wide' option (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Fix missing label symbols (Jiri Olsa) [1169436]
-- [tools] perf/top: Handle 'z' key for toggle zeroing samples in TUI (Jiri Olsa) [1169436]
-- [tools] perf/top: Fix -z option behavior (Jiri Olsa) [1169436]
-- [tools] perf/report: Set proper sort__mode for the branch option (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Fix a small callchain display bug (Jiri Olsa) [1169436]
-- [tools] perf: Check recorded kernel version when finding vmlinux (Jiri Olsa) [1169436]
-- [tools] perf/trace: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/script: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/sched: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/lock: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/kmem: Move session handling out of __cmd_kmem() (Jiri Olsa) [1169436]
-- [tools] perf/inject: Move session handling out of __cmd_inject() (Jiri Olsa) [1169436]
-- [tools] perf/buildid-cache: Move session handling into cmd_buildid_cache() (Jiri Olsa) [1169436]
-- [tools] perf/annotate: Move session handling out of __cmd_annotate() (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Fix a memory leak in vmlinux_path__init() (Jiri Olsa) [1169436]
-- [tools] perf/script: Fix possible memory leaks (Jiri Olsa) [1169436]
-- [tools] perf: Prefer to use a cpu-wide event for probing CLOEXEC (Jiri Olsa) [1169436]
-- [tools] perf: Fix probing the kernel API with cpu-wide events (Jiri Olsa) [1169436]
-- [tools] perf: Fix one of the probe events to exclude kernel (Jiri Olsa) [1169436]
-- [tools] perf: Fix CLOEXEC probe for perf_event_paranoid == 2 (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add beautifier for mremap flags param (Jiri Olsa) [1169436]
-- [tools] perf/probe: Fix --del option to delete events only with uprobe events (Jiri Olsa) [1169436]
-- [tools] perf/probe: Fix --list option to show events only with uprobe events (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Fix stdin handling for 'kvm stat live' command (Jiri Olsa) [1169436]
-- [tools] perf/top: Setup signals for terminal output (Jiri Olsa) [1169436]
-- [tools] perf: Introduce set_term_quiet_input helper function (Jiri Olsa) [1169436]
-- [tools] perf/top: Join the display thread on exit (Jiri Olsa) [1169436]
-- [tools] perf: Add cpu_startup_entry to the list of kernel idle symbols (Jiri Olsa) [1169436]
-- [tools] perf/top: Don't look for kernel idle symbols in all DSOs (Jiri Olsa) [1169436]
-- [tools] perf: Default to python version 2 (Jiri Olsa) [1169436]
-- [tools] perf: Fix PERF_FLAG_FD_CLOEXEC flag probing event type open counters due to EBUSY error (Jiri Olsa) [1169436]
-- [tools] perf: Fix column alignment when headers aren't shown on TUI (Jiri Olsa) [1169436]
-- [tools] perf: Add name field into perf_hpp_fmt (Jiri Olsa) [1169436]
-- [tools] perf/top: Add -w option for setting column width (Jiri Olsa) [1169436]
-- [tools] perf/report: Honor column width setting (Jiri Olsa) [1169436]
-- [tools] perf: Save column length in perf_hpp_fmt (Jiri Olsa) [1169436]
-- [tools] perf: Make __hpp__fmt() receive an additional len argument (Jiri Olsa) [1169436]
-- [tools] perf: Left-align output contents (Jiri Olsa) [1169436]
-- [tools] perf: Fix make PYTHON override (Jiri Olsa) [1169436]
-- [tools] perf/kmem: Do not ignore mmap events (Jiri Olsa) [1169436]
-- [tools] perf: Show better error message in case we fail to open counters due to EBUSY error (Jiri Olsa) [1169436]
-- [tools] perf: Allow out of order messages in forced flush (Jiri Olsa) [1169436]
-- [tools] perf: Add debug prints for ordered events queue (Jiri Olsa) [1169436]
-- [tools] perf: Add report.queue-size config file option (Jiri Olsa) [1169436]
-- [tools] perf: Add perf_config_u64 function (Jiri Olsa) [1169436]
-- [tools] perf: Add ordered_events__free function (Jiri Olsa) [1169436]
-- [tools] perf: Add ordered_events__init function (Jiri Olsa) [1169436]
-- [tools] perf: Use list_move in ordered_events_delete function (Jiri Olsa) [1169436]
-- [tools] perf: Create ordered-events object (Jiri Olsa) [1169436]
-- [tools] perf: Make perf_session__deliver_event global (Jiri Olsa) [1169436]
-- [tools] perf: Flush ordered events in case of allocation failure (Jiri Olsa) [1169436]
-- [tools] perf: Limit ordered events queue size (Jiri Olsa) [1169436]
-- [tools] perf: Factor ordered_events__flush to be more generic (Jiri Olsa) [1169436]
-- [tools] perf: Add ordered_events__(new (Jiri Olsa) [1169436]
-- [tools] perf: Rename ordered_events members (Jiri Olsa) [1169436]
-- [tools] perf: Rename ordered_samples struct to ordered_events (Jiri Olsa) [1169436]
-- [tools] perf: Rename ordered_samples bool to ordered_events (Jiri Olsa) [1169436]
-- [tools] perf/record: Honour --no-time command line option (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat: Properly show submicrosecond times (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Make sure --symfs usage includes the path separator (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Don't run workload if not told to (Jiri Olsa) [1169436]
-- [tools] perf: Fix arm64 build error (Jiri Olsa) [1169436]
-- [tools] perf: saner perf_atoll() (Jiri Olsa) [1169436]
-- [tools] Revert: perf: Fix jump label always changing during tracing (Jiri Olsa) [1169436]
-- [tools] perf: Fix perf usage string leftover (Jiri Olsa) [1169436]
-- [tools] perf/record: Store PERF_RECORD_FINISHED_ROUND only for nonempty rounds (Jiri Olsa) [1169436]
-- [tools] perf/record: Always force PERF_RECORD_FINISHED_ROUND event (Jiri Olsa) [1169436]
-- [tools] perf/inject: Add --kallsyms parameter (Jiri Olsa) [1169436]
-- [tools] perf: Expose 'addr' functions so they can be reused (Jiri Olsa) [1169436]
-- [tools] perf/session: Fix accounting of ordered samples queue (Jiri Olsa) [1169436]
-- [tools] perf/powerpc: Include util/util.h and remove stringify macros (Jiri Olsa) [1169436]
-- [tools] perf: Fix build on gcc 4.4.7 (Jiri Olsa) [1169436]
-- [tools] perf: Add thread parameter to vdso__dso_findnew() (Jiri Olsa) [1169436]
-- [tools] perf: Add dso__type() (Jiri Olsa) [1169436]
-- [tools] perf: Separate the VDSO map name from the VDSO dso name (Jiri Olsa) [1169436]
-- [tools] perf: Add vdso__new() (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fix the lifetime of the VDSO temporary file (Jiri Olsa) [1169436]
-- [tools] perf: Group VDSO global variables into a structure (Jiri Olsa) [1169436]
-- [tools] perf/session: Add ability to skip 4GiB or more (Jiri Olsa) [1169436]
-- [tools] perf/session: Add ability to 'skip' a non-piped event stream (Jiri Olsa) [1169436]
-- [tools] perf: Pass machine to vdso__dso_findnew() (Jiri Olsa) [1169436]
-- [tools] perf: Add dso__data_size() (Jiri Olsa) [1169436]
-- [tools] perf: Move rdtsc() function (Jiri Olsa) [1169436]
-- [tools] perf/machine: Add ability to record the current tid for each cpu (Jiri Olsa) [1169436]
-- [tools] perf: Add cpu to struct thread (Jiri Olsa) [1169436]
-- [tools] perf: Add dsos__hit_all() (Jiri Olsa) [1169436]
-- [tools] perf: Add dso__data_status_seen() (Jiri Olsa) [1169436]
-- [tools] perf: Record whether a dso has data (Jiri Olsa) [1169436]
-- [tools] perf/script: Do not print dangling '=>' for BTS (Jiri Olsa) [1169436]
-- [tools] perf/script: Improve srcline display for BTS (Jiri Olsa) [1169436]
-- [tools] perf: Fix jump label always changing during tracing (Jiri Olsa) [1169436]
-- [tools] perf: Fix incorrect fd error comparison (Jiri Olsa) [1169436]
-- [tools] perf/tests: Update attr test with PERF_FLAG_FD_CLOEXEC flag (Jiri Olsa) [1169436]
-- [tools] perf: Enable close-on-exec flag on perf file descriptor (Jiri Olsa) [1169436]
-- [tools] perf: Allow TSC conversion on any arch (Jiri Olsa) [1169436]
-- [tools] perf: Remove needless getopt.h includes (Jiri Olsa) [1169436]
-- [tools] perf: Add --debug optionto set debug variable (Jiri Olsa) [1169436]
-- [tools] perf: Factor eprintf to allow different debug variables (Jiri Olsa) [1169436]
-- [tools] perf: Move pr_* debug macros into debug object (Jiri Olsa) [1169436]
-- [tools] perf: Remove verbose from functions prototypes (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fix leak of 'struct thread' on error path (Jiri Olsa) [1169436]
-- [tools] perf/thread: Allow deletion of a thread with no map groups (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fix map groups of threads with unknown pids (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Add 'immediate' option (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Add 'no_aux_samples' option (Jiri Olsa) [1169436]
-- [tools] perf: Add option macro OPT_CALLBACK_OPTARG (Jiri Olsa) [1169436]
-- [tools] perf: Add feature test for __sync_val_compare_and_swap (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Pass mmap parameters in a struct (Jiri Olsa) [1169436]
-- [tools] perf/session: Flag if the event stream is entirely in memory (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Add ability to iterate over a dso's symbols (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Do not attempt to read data from kallsyms (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Record whether a dso is 64-bit (Jiri Olsa) [1169436]
-- [tools] perf/buildid-cache: Apply force option to copying kcore (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Fix appending a callchain from a previous sample (Jiri Olsa) [1169436]
-- [tools] perf/inject: Fix build id injection (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Fix missing GNU IFUNC symbols (Jiri Olsa) [1169436]
-- [tools] perf: Fix missing kernel map load (Jiri Olsa) [1169436]
-- [tools] perf/record: Select comm_exec flag if supported (Jiri Olsa) [1169436]
-- [tools] perf/script: Display PERF_RECORD_MISC_COMM_EXEC flag (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fix the value used for unknown pids (Jiri Olsa) [1169436]
-- [tools] perf/script: Provide additional sample information on generic events (Jiri Olsa) [1169436]
-- [tools] perf/script: Add callchain to generic and tracepoint events (Jiri Olsa) [1169436]
-- [tools] perf/script: Add missing calls to Py_DECREF for return values (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Add skip_event() for --duration option (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Move arch specific code into arch/ (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Use defines of kvm events (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Add more options to IO mode (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Conditionally update start_time on fork (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Implement IO mode (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Fix rendering in Firefox (Jiri Olsa) [1169436]
-- [tools] perf/trace: Fix build on 32-bit systems (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add pagefault statistics (Jiri Olsa) [1169436]
-- [tools] perf: Suggest using -f to override perf.data file ownership message (Jiri Olsa) [1169436]
-- [tools] perf: Convert open coded equivalents to asprintf() (Jiri Olsa) [1169436]
-- [tools] perf: Allow to use cpuinfo on s390 (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Refactoring of cpu_isa_config() (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Simplify exit reasons tables definitions (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Introduce HAVE_KVM_STAT_SUPPORT flag (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Left justify column headers (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Add ui.show-headers config file option (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Display columns header text on 'H' press (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Add support for showing columns header (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Override ui_browser refresh_dimensions method (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Introduce gotorc method (Jiri Olsa) [1169436]
-- [tools] perf/ui/browser: Allow overriding refresh_dimensions method (Jiri Olsa) [1169436]
-- [tools] perf/ui/browser: Add ->rows to disambiguate from ->height (Jiri Olsa) [1169436]
-- [tools] perf/x86/amd: Try to fix some mem allocation failure handling (Jiri Olsa) [1169436]
-- [tools] perf/script: Handle the num array type in python properly (Jiri Olsa) [1169436]
-- [tools] perf/script: Move the number processing into its own function (Jiri Olsa) [1169436]
-- [tools] perf: Fix wrong condition for allocation failure (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Fix a risk for doing free on uninitialized pointer (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add possibility to switch off syscall events (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add pagefaults record and replay support (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add support for pagefault tracing (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add perf_event parameter to tracepoint_handler (Jiri Olsa) [1169436]
-- [tools] perf/scripts: Fallback to syscalls:* when raw_syscalls:* is not available (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Clean up format of args in jbd2 plugin (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Clean up format of args in cfg80211 plugin (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Fix format in plugin_kvm (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Fix and cleanup kvm_nested_vmexit tracepoints (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Add back in kvm plugins nested_vmexit events (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Factor out print_exit_reason in kvm plugin (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Report unknown VMX exit reasons with code (Jiri Olsa) [1169436]
-- [tools] perf/bench/sched-messaging: Drop barf() (Jiri Olsa) [1169436]
-- [tools] perf/bench/mem: The -o and -n options are mutually exclusive (Jiri Olsa) [1169436]
-- [tools] perf/bench/futex: Use global --repeat option (Jiri Olsa) [1169436]
-- [tools] perf/bench: Add --repeat option (Jiri Olsa) [1169436]
-- [tools] perf/bench/sched-messaging: Plug memleak (Jiri Olsa) [1169436]
-- [tools] perf/ui/browser: Fix scrollbar refresh row index (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Remove ev_name argument from perf_evsel__hists_browse (Jiri Olsa) [1169436]
-- [tools] perf/trace: Cache the is_exit syscall test (Jiri Olsa) [1169436]
-- [tools] perf/trace: Remove needless reassignments (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add suggestion of how to set perf_event_paranoid sysctl (Jiri Olsa) [1169436]
-- [tools] perf/trace: Fix up fd -> pathname resolution (Jiri Olsa) [1169436]
-- [tools] perf: Fix corruption of sibling list with hotplug (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Revert incomplete and undocumented Broadwell client support (Jiri Olsa) [1169436]
-- [tools] perf: Fix typos in sample code in the perf_event.h header (Jiri Olsa) [1169436]
-- [tools] perf: Fix and clean up initialization of pmu::event_idx (Jiri Olsa) [1169436]
-- [tools] perf: Fix bogus kernel printk (Jiri Olsa) [1169436]
-- [tools] perf: Fix unclone_ctx() vs. locking (Jiri Olsa) [1169436]
-- [tools] perf/x86: Tone down kernel messages when the PMU check fails in a virtual environment (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Use Broadwell cache event list for Haswell (Jiri Olsa) [1169436]
-- [tools] perf/x86: Add INST_RETIRED.ALL workarounds (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Add Broadwell core support (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Document all Haswell models (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Remove incorrect model number from Haswell perf (Jiri Olsa) [1169436]
-- [tools] Revert: perf: Do not allow optimized switch for non-cloned events (Jiri Olsa) [1169436]
-- [tools] perf: Fix child event initial state setup (Jiri Olsa) [1169436]
-- [tools] perf: Do not POLLHUP event if it has children (Jiri Olsa) [1169436]
-- [tools] perf: Do not check PERF_EVENT_STATE_EXIT on syscall read path (Jiri Olsa) [1169436]
-- [tools] perf/x86: Fix section mismatch in split uncore driver (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Mark initialization code as such (Jiri Olsa) [1169436]
-- [tools] perf/core: Replace rcu_assign_pointer() with RCU_INIT_POINTER() (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Replace rcu_assign_pointer() with RCU_INIT_POINTER() (Jiri Olsa) [1169436]
-- [tools] perf: Add PERF_EVENT_STATE_EXIT state for events with exited task (Jiri Olsa) [1169436]
-- [tools] perf: Fix perf_poll to return proper POLLHUP value (Jiri Olsa) [1169436]
-- [tools] perf/x86: Clean up __intel_pmu_pebs_event() code (Jiri Olsa) [1169436]
-- [tools] perf/x86: Fix data source encoding issues for load latency/precise store (Jiri Olsa) [1169436]
-- [tools] perf/x86: Don't mark DataLA addresses as store (Jiri Olsa) [1169436]
-- [tools] perf/x86: Revamp PEBS event selection (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Mark MEM_LOAD_UOPS_MISS_RETIRED as precise on SNB (Jiri Olsa) [1169436]
-- [tools] perf/x86: Fix pp without LBR (Jiri Olsa) [1169436]
-- [tools] perf: Do poll_wait() before checking condition in perf_poll() (Jiri Olsa) [1169436]
-- [tools] perf: Add queued work to remove orphaned child events (Jiri Olsa) [1169436]
-- [tools] perf: Set owner pointer for kernel events (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Update Intel models (Jiri Olsa) [1169436]
-- [tools] perf/cgroup: Remove perf_put_cgroup() (Jiri Olsa) [1169436]
-- [tools] perf: fix perf bug in fork() (Jiri Olsa) [1169436]
-- [tools] perf: Fix a race condition in perf_remove_from_context() (Jiri Olsa) [1169436]
-- [tools] perf: Handle compat ioctl (Jiri Olsa) [1169436]
-- [tools] perf/x86: Micro-optimize nhmex_rbox_get_constraint() (Jiri Olsa) [1169436]
-- [tools] perf: Make perf_event_init_context() function static (Jiri Olsa) [1169436]
-
-* Mon Mar 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-233.el7]
-- [x86] kvm: Prevent guest from writing non-canonical shared MSR addresses (Petr  Matousek) [1144885] {CVE-2014-3610}
-- [x86] kvm: Check non-canonical addresses upon WRMSR (Petr  Matousek) [1144885] {CVE-2014-3610}
-- [infiniband] core: Prevent integer overflow in ib_umem_get address arithmetic (Doug Ledford) [1179347] {CVE-2014-8159}
-- [fs] bio: fix argument of __bio_add_page() for max_sectors > 0xffff (Fam Zheng) [1184759]
-- [x86] pci: Add NEC variants to Stratus ftServer PCIe DMI check (Myron Stowe) [1187761]
-- [s390] zcrypt: enable s390 hwrng to seed kernel entropy (Hendrik Brueckner) [1196398]
-- [s390] zcrypt: improve device probing for zcrypt adapter cards (Hendrik Brueckner) [1196398]
-- [acpi] fan: Use bus id as the name for non PNP0C0B (Fan) devices (Prarit Bhargava) [1174059]
-- [acpi] fan: support INT3404 thermal device (Prarit Bhargava) [1174059]
-- [acpi] fan: add ACPI 4.0 style fan support (Prarit Bhargava) [1174059]
-- [acpi] fan: convert to platform driver (Prarit Bhargava) [1174059]
-- [acpi] fan: use acpi_device_xxx_power instead of acpi_bus equivelant (Prarit Bhargava) [1174059]
-- [acpi] fan: remove unused macro (Prarit Bhargava) [1174059]
-- [acpi] fan: remove no need check for device pointer (Prarit Bhargava) [1174059]
-- [acpi] fan: printk replacement (Prarit Bhargava) [1174059]
-- [acpi] fan: do nothing in suspend and poweroff callback (Prarit Bhargava) [1174059]
-- [acpi] fan: fix fan driver compile error when CONFIG_PM_SLEEP is undefined (Prarit Bhargava) [1174059]
-- [acpi] thermal: step_wise: return instance->target by default (Prarit Bhargava) [1174059]
-- [acpi] thermal: step_wise: cdev only needs update on a new target state (Prarit Bhargava) [1174059]
-- [netdrv] vmxnet3: Reinitialize vmxnet3 backend on wakeup from hibernate (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Make Rx ring 2 size configurable (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Move PCI_VENDOR_ID_VMWARE to pci_ids.h (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Check for map error in vmxnet3_set_mc (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Remove DEFINE_PCI_DEVICE_TABLE macro use (Neil Horman) [1181807]
-- [netdrv] vmxnet3: fix decimal printf format specifiers prefixed with 0x (Neil Horman) [1181807]
-- [netdrv] vmxnet3: adjust ring sizes when interface is down (Neil Horman) [1181807]
-- [netdrv] vmxnet3: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Neil Horman) [1181807]
-- [netdrv] vmxnet3: get rid of SET_ETHTOOL_OPS (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Call dev_kfree_skb_any instead of dev_kfree_skb (Neil Horman) [1181807]
-- [netdrv] vmxnet3: fix building without CONFIG_PCI_MSI (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Use pci_enable_msix_range() instead of pci_enable_msix() (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Fix MSI-X/MSI enablement code (Neil Horman) [1181807]
-- [netdrv] vmxnet3: delete non-required instances of include <linux/init.h> (Neil Horman) [1181807]
-- [netdrv] vmxnet3: use initialized skb pointer to set hash (Neil Horman) [1181807]
-- [netdrv] vmxnet3: calls skb_set_hash (Neil Horman) [1181807]
-- [netdrv] vmxnet3: remove unnecessary pci_set_drvdata() (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Remove extern from function prototypes (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Add support for virtual IOMMU (Neil Horman) [1181807]
-- [net] netpoll: Remove dead packet receive code (CONFIG_NETPOLL_TRAP) (Neil Horman) [1181906]
-- [net] netpoll: Move all receive processing under CONFIG_NETPOLL_TRAP (Neil Horman) [1181906]
-- [net] netpoll: Consolidate neigh_tx processing in service_neigh_queue (Neil Horman) [1181906]
-- [net] netpoll: Move netpoll_trap under CONFIG_NETPOLL_TRAP (Neil Horman) [1181906]
-- [net] netpoll: Don't drop all received packets (Neil Horman) [1181906]
-- [net] netpoll: Add netpoll_rx_processing (Neil Horman) [1181906]
-- [net] netpoll: Warn if more packets are processed than are budgeted (Neil Horman) [1181906]
-- [net] netpoll: Visit all napi handlers in poll_napi (Neil Horman) [1181906]
-- [net] netpoll: Pass budget into poll_napi (Neil Horman) [1181906]
-- [net] netpoll: move setting of NETPOLL_RX_DROP into netpoll_poll_dev (Neil Horman) [1181906]
-- [net] netpoll: fix netconsole IPv6 setup (Neil Horman) [1181906]
-- [net] netpoll: Use ether_addr_copy (Neil Horman) [1181906]
-- [net] netpoll: Fix missing TXQ unlock and and OOPS (Neil Horman) [1181906]
-- [net] netpoll: fix rx_hook() interface by passing the skb (Neil Horman) [1181906]
-- [iommu] vt-d: Work around broken RMRR firmware entries (Myron Stowe) [1195802]
-- [iommu] vt-d: Store bus information in RMRR PCI device path (Myron Stowe) [1195802]
-- [pci] Handle read-only BARs on AMD CS553x devices (Myron Stowe) [1198314]
-- [x86] kvm: add tracepoint to wait_lapic_expire (Marcelo Tosatti) [1175445]
-- [x86] kvm: add option to advance tscdeadline hrtimer expiration (Marcelo Tosatti) [1175445]
-- [powerpc] powernv: Add winkle support for offline cpus (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Redesign idle states management (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Enable Offline CPUs to enter deep idle states (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Return to cpu offline loop when finished in KVM guest (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Switch off MMU before entering nap/sleep/rvwinkle mode (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Don't call generic code on offline cpus (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Back-end cpuidle driver for powernv platform (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Only clear LPCR decrementer wakeup bit on fast sleep entry (Gustavo Duarte) [1123121]
-- [kernel] tick: Fixup more fallout from hrtimer broadcast mode (Gustavo Duarte) [1123121]
-- [kernel] time: Fixup fallout from recent clockevent/tick changes (Gustavo Duarte) [1123121]
-- [kernel] tick: Introduce hrtimer based broadcast (Gustavo Duarte) [1123121]
-- [cpuidle] Handle clockevents_notify(BROADCAST_ENTER) failure (Gustavo Duarte) [1123121]
-- [kernel] time: Change the return type of clockevents_notify() to integer (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Fix parsing of idle state flags from device-tree (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Parse device tree to setup idle states (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Add "Fast-Sleep" CPU idle state (Gustavo Duarte) [1123121]
-- [input] mouse: synaptics - remove X250 from the topbuttonpad list (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - remove X1 Carbon 3rd gen from the topbuttonpad list (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - re-route tracksticks buttons on the Lenovo 2015 series (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - remove TOPBUTTONPAD property for Lenovos 2015 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - retrieve the extended capabilities in query $10 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - do not retrieve the board id on old firmwares (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - handle spurious release of trackstick buttons (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - fix middle button on Lenovo 2015 products (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - skip quirks when post-2013 dimensions (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - support min/max board id in min_max_pnpid_table (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - remove obsolete min/max quirk for X240 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - query min dimensions for fw v8.1 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - log queried and quirked dimension values (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - split synaptics_resolution(), query first (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - adjust min/max for Lenovo ThinkPad X1 Carbon 2nd (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - adjust min/max on Thinkpad E540 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - add min/max quirk for Lenovo T440s (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: psmouse - add psmouse_matches_pnp_id helper function (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - add min/max quirk for pnp-id LEN2002 (Edge E531) (Benjamin Tissoires) [1186106 1186112]
-
-* Fri Mar 13 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-232.el7]
-- [fs] fsnotify: fix handling of renames in audit (Paul Moore) [1191562]
-- [crypto] rng: RNGs must return 0 in success case (Herbert Xu) [1198978]
-- [cpufreq] intel_pstate: Add support for SkyLake (Steve Best) [1189908]
-- [s390] zcrypt: fixed domain scanning problem again (Hendrik Brueckner) [1193604]
-- [s390] zcrypt: Number of supported ap domains is not retrievable (Hendrik Brueckner) [1193604]
-- [s390] kprobes: add exrl to list of prohibited opcodes (Hendrik Brueckner) [1193608]
-- [s390] kprobes: add support for compare and branch instructions (Hendrik Brueckner) [1193608]
-- [s390] bpf: jit: initialize A register if 1st insn is BPF_S_LDX_B_MSH (Hendrik Brueckner) [1193604]
-- [s390] bpf: jit: fix 32 bit divisions, use unsigned divide instructions (Hendrik Brueckner) [1193604]
-- [s390] bpf: Zero extend parameters before calling C function (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix sk_load_byte_msh() (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix offset parameter for skb_copy_bits() (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix skb_copy_bits() parameter passing (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix JMP_JGE_K (A >= K) and JMP_JGT_K (A > K) (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix JMP_JGE_X (A > X) and JMP_JGT_X (A >= X) (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix ALU_NEG (A = -A) (Hendrik Brueckner) [1193604]
-- [s390] dasd: remove unused code (Hendrik Brueckner) [1186326]
-- [s390] dasd: fix infinite loop during format (Hendrik Brueckner) [1186326]
-- [kernel] module: set nx before marking module MODULE_STATE_COMING (Hendrik Brueckner) [1196977]
-- [s390] vdso: fix clock_gettime for CLOCK_THREAD_CPUTIME_ID, -2 and -3 (Hendrik Brueckner) [1195671]
-- [s390] dasd: retry partition detection (Hendrik Brueckner) [1193605]
-- [s390] dasd: fix list corruption for sleep_on requests (Hendrik Brueckner) [1186319]
-- [net] openvswitch: Fix net exit (Jiri Benc) [1200859]
-- [net] team: fix possible null pointer dereference in team_handle_frame (Jiri Pirko) [1188496]
-
-* Tue Mar 10 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-231.el7]
-- [crypto] aesni: fix "by8" variant for 128 bit keys (Herbert Xu) [1174971]
-- [crypto] aesni: remove unused defines in "by8" variant (Herbert Xu) [1174971]
-- [crypto] aesni: fix counter overflow handling in "by8" variant (Herbert Xu) [1174971]
-- [crypto] aes: AES CTR x86_64 "by8" AVX optimization (Herbert Xu) [1174971]
-- [fs] gfs2: Move gfs2_file_splice_write outside of #ifdef (Robert S Peterson) [1193910]
-- [fs] gfs2: Allocate reservation during splice_write (Robert S Peterson) [1193910]
-- [fs] Convert MessageID in smb2_hdr to LE (Sachin Prabhu) [1161441]
-- [fs] nfsd: update mtime on truncate ("J. Bruce Fields") [1162558]
-- [virt] kvm: ensure hard lockup detection is disabled by default (Andrew Jones) [1111262]
-- [watchdog] control hard lockup detection default (Andrew Jones) [1111262]
-- [watchdog] Fix print-once on enable (Andrew Jones) [1111262]
-- [tools] cpupower: Fix no idle state information return value (Prarit Bhargava) [1168046]
-- [misc] genwqe: Fix problem when reading HSI and Retc (Steve Best) [1188653]
-- [char] tpm: Added Little Endian support to vtpm module (Steve Best) [1189017]
-- [idle] intel_idle: support additional Broadwell model (Steve Best) [1166315]
-- [powerpc] iommu: ddw: Fix endianness (Steve Best) [1189040]
-- [powerpc] Fix sys_call_table declaration to enable syscall tracing (Steve Best) [1172684]
-- [powerpc] pseries: Fix endian problems with LE migration (Steve Best) [1183198]
-- [powerpc] powernv: Ignore smt-enabled on Power8 and later (Steve Best) [1180254]
-- [powerpc] xmon: Fix another endiannes issue in RTAS call from xmon (Steve Best) [1186803]
-- [pci] Add informational printk for invalid BARs (Myron Stowe) [1130170]
-- [pci] Shrink decoding-disabled window while sizing BARs (Myron Stowe) [1130170]
-- [pci] Restore detection of read-only BARs (Myron Stowe) [1130170]
-- [kernel] resources: Clarify sanity check message (Myron Stowe) [1130170]
-- [pci] Don't add disabled subtractive decode bus resources (Myron Stowe) [1130170]
-- [pci] Don't print anything while decoding is disabled (Myron Stowe) [1130170]
-- [pci] Don't set BAR to zero if dma_addr_t is too small (Myron Stowe) [1130170]
-- [pci] Don't convert BAR address to resource if dma_addr_t is too small (Myron Stowe) [1130170]
-- [pci] Reject BAR above 4GB if dma_addr_t is too small (Myron Stowe) [1130170]
-- [pci] Fail safely if we can't handle BARs larger than 4GB (Myron Stowe) [1130170]
-
-* Fri Feb 27 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-230.el7]
-- [net] sctp: fix slab corruption from use after free on INIT collisions (Daniel Borkmann) [1183959] {CVE-2015-1421}
-- [net] ipv6: Fixed support for blackhole and prohibit routes (Hannes Frederic Sowa) [1129731]
-- [kernel] audit: replace getname()/putname() hacks with reference counters (Paul Moore) [1155208]
-- [kernel] audit: fix filename matching in __audit_inode() and __audit_inode_child() (Paul Moore) [1155208]
-- [kernel] audit: enable filename recording via getname_kernel() (Paul Moore) [1155208]
-- [fs] namei: simpler calling conventions for filename_mountpoint() (Paul Moore) [1155208]
-- [fs] namei: create proper filename objects using getname_kernel() (Paul Moore) [1155208]
-- [fs] namei: rework getname_kernel to handle up to PATH_MAX sized filenames (Paul Moore) [1155208]
-- [fs] namei: cut down the number of do_path_lookup() callers (Paul Moore) [1155208]
-- [fs] execve: use 'struct filename *' for executable name passing (Paul Moore) [1155208]
-- [x86] ioapic: kcrash: Prevent crash_kexec() from deadlocking on ioapic_lock (Baoquan He) [1182424]
-- [md] dm-thin: don't allow messages to be sent to a pool target in READ_ONLY or FAIL mode (Mike Snitzer) [1184592]
-- [kernel] workqueue: fix subtle pool management issue which can stall whole worker_pool (Eric Sandeen) [1165535]
-- [platform] thinkpad_acpi: support new BIOS version string pattern (Benjamin Tissoires) [1194830]
-- [virt] storvsc: ring buffer failures may result in I/O freeze (Vitaly Kuznetsov) [1171409]
-- [kernel] audit: restore AUDIT_LOGINUID unset ABI (Richard Guy Briggs) [1120491]
-- [crypto] testmgr: mark rfc4106(gcm(aes)) as fips_allowed (Jarod Wilson) [1185400]
-
-* Thu Jan 29 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-229.el7]
-- [net] rtnetlink: allow to register ops without ops->setup set (Jiri Benc) [1186492]
-
-* Thu Jan 29 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-228.el7]
-- [fs] NFSv4.1: Fix an Oops in nfs41_walk_client_list (Steve Dickson) [1185784]
-- [misc] redhat: don't suppress Revert patches from changelog (Jarod Wilson) [1187353]
-- [infiniband] Revert: ipoib: Consolidate rtnl_lock tasks in workqueue (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: Make the carrier_on_task race aware (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: fix MCAST_FLAG_BUSY usage (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: fix mcast_dev_flush/mcast_restart_task race (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: change init sequence ordering (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: Use dedicated workqueues per interface (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: Make ipoib_mcast_stop_thread flush the workqueue (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: No longer use flush as a parameter (Doug Ledford) [1179740]
-- [fs] fix deadlock in cifs_ioctl_clone() (Sachin Prabhu) [1183980]
-- [md] dm-cache: fix missing ERR_PTR returns and handling (Mike Snitzer) [1182665]
-- [fs] cifs: fix regression in cifs_create_mf_symlink() (Sachin Prabhu) [1186324]
-- [net] ipv4: try to cache dst_entries which would cause a redirect (Hannes Frederic Sowa) [1181819]
-- [fs] coredump: add new P variable in core_pattern (Jiri Olsa) [1186360]
-- [drm] fix fb-helper vs MST dangling connector ptrs (Rob Clark) [1184968]
-- [net] bridge: Program port vlan filters only if filtering is enabled in bridge (Vlad Yasevich) [1183958]
-- [fs] cifs: Complete oplock break jobs before closing file handle (Sachin Prabhu) [1177215]
-- [fs] LOCKD: Fix a race when initialising nlmsvc_timeout (Benjamin Coddington) [1144982]
-- [scsi] hpsa: add in P840ar controller model name (Joseph Szczypek) [1185467]
-- [scsi] hpsa: add in gen9 controller model names (Joseph Szczypek) [1185467]
-
-* Tue Jan 27 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-227.el7]
-- [fs] ext4: fix overwrite race condition (Jacob Tanenbaum) [1152607] {CVE-2014-8086}
-- [media] ttusb-dec: buffer overflow in ioctl (Alexander Gordeev) [1167116] {CVE-2014-8884}
-- [drm] i915: demote opregion excessive timeout WARN_ONCE to DRM_INFO_ONCE (Rob Clark) [1145627]
-- [md] Revert: raid56: Don't perform reads to support writes until stripe is ready (Jes Sorensen) [1153796]
-- [md] Revert: raid5: avoid livelock caused by non-aligned writes (Jes Sorensen) [1153796]
-- [drm] i915: further quiet i915 (Rob Clark) [1163074]
-- [scsi] megaraid_sas: endianness related bug fixes and code optimization (Tomas Henzl) [1179748]
-- [s390] crypto: kernel oops at insmod of the z90crypt device driver (Hendrik Brueckner) [1172136]
-- [drm] mgag200: Add command line option to specify preferred depth (Dave Airlie) [1044555]
-- [drm] mgag200: Consolidate depth/bpp handling (Dave Airlie) [1044555]
-- [fs] Revert: ext4: revert Disable punch hole on non-extent mapped files (Lukas Czerner) [1176840]
-
-* Sun Jan 25 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-226.el7]
-- [md] dm-cache: fix problematic dual use of a single migration count variable (Mike Snitzer) [1182665]
-- [md] dm-cache: share cache-metadata object across inactive and active DM tables (Mike Snitzer) [1182665]
-- [net] tun/macvtap: use consume_skb() instead of kfree_skb() when needed (Jiri Pirko) [1182805]
-- [virt] Revert: hyperv: Add handler for RNDIS_STATUS_NETWORK_CHANGE event (Jason Wang) [1164163]
-- [virt] kvm/vmx: invalid host cr4 handling across vm entries (Jacob Tanenbaum) [1153329] {CVE-2014-3690}
-- [virt] virtio-scsi: Fix the race condition in virtscsi_handle_event (Fam Zheng) [1152140]
-- [virt] kvm: workaround SuSE's 2.6.16 pvclock vs masterclock issue (Marcelo Tosatti) [1177718]
-- [fs] bdi: avoid oops on device removal (Fam Zheng) [1087179]
-- [mm] backing_dev: fix hung task on sync (Fam Zheng) [1087179]
-- [mm] Revert: vmstat: create separate function to fold per cpu diffs into local counters (Larry Woodman) [1179654]
-- [mm] Revert: vmstat: create fold_diff (Larry Woodman) [1179654]
-- [mm] Revert: vmstat: use this_cpu() to avoid irqon/off sequence in refresh_cpu_vm_stats (Larry Woodman) [1179654]
-- [mm] Revert: vmstat: on-demand vmstat workers V8 (Larry Woodman) [1179654]
-
-* Thu Jan 22 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-225.el7]
-- [net] team: avoid possible underflow of count_pending value for notify_peers and mcast_rejoin (Jiri Pirko) [1176697]
-- [fs] seq_file: don't include mm.h in genksyms calculation (Ian Kent) [1183280]
-- [scsi] Avoid crashing if device uses DIX but adapter does not support it (Ewan Milne) [1093012]
-
-* Mon Jan 19 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-224.el7]
-- [fs] xfs: catch invalid negative blknos in _xfs_buf_find() (Eric Sandeen) [1164128]
-- [fs] proc: make proc_fd_permission() thread-friendly (Carlos Maiolino) [1171242]
-- [fs] rpc: fix xdr_truncate_encode to handle buffer ending on page boundary ("J. Bruce Fields") [1176641]
-- [fs] nfs: nfs4_fl_prepare_ds, fix bugs when the connect attempt fails (Steve Dickson) [1113248]
-- [fs] gfs2: fix bad inode i_goal values during block allocation (Abhijith Das) [1144209]
-- [fs] nfsd: allow turning off nfsv3 readdir_plus (Steve Dickson) [1178949]
-- [fs] nfsd4: fix xdr4 count of server in fs_location4 (Benjamin Coddington) [1164055]
-- [fs] nfsd4: fix xdr4 inclusion of escaped char (Benjamin Coddington) [1164055]
-- [fs] xfs: replace global xfslogd wq with per-mount wq (Brian Foster) [1155929]
-- [fs] xfs: mark all internal workqueues as freezable (Brian Foster) [1155929]
-- [fs] overlayfs: Add call to mark_tech_preview (BZ 1180613) (David Howells) [1180613]
-- [fs] aio: fix uncorrent dirty pages accouting when truncating AIO ring buffer (Jeff Moyer) [1159346]
-- [infiniband] ocrdma: fix hardcoded max cqe and max send wr (Doug Ledford) [1158148]
-- [crypto] aesni-intel: Add support for 192 & 256 bit keys to AESNI RFC4106 (Jarod Wilson) [1176266]
-- [block] blk-mq: Fix a use-after-free (Fam Zheng) [1152159]
-- [crypto] drbg: panic on continuous self test error (Jarod Wilson) [1179496]
-- [ethernet] mlx4: Cache line CQE/EQE stride fixes (Doug Ledford) [1088499 1173483]
-- [ethernet] mlx4: Add mlx4_en_get_cqe helper (Doug Ledford) [1088499 1173483]
-- [ethernet] mlx4: Cache line EQE size support (Doug Ledford) [1088499 1173483]
-- [infiniband] ocrdma: Fix ocrdma_query_qp() to report q_key value for UD QPs (Doug Ledford) [1167256]
-- [infiniband] ocrdma: Always resolve destination mac from GRH for UD QPs (Doug Ledford) [1167256]
-- [net] gre: fix the inner mac header in nbma tunnel xmit path (Alexander Duyck) [1168608]
-
-* Tue Jan 13 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-223.el7]
-- [md] dm-thin: fix crash by initializing thin device's refcount and completion earlier (Mike Snitzer) [1175282]
-- [scsi] storvsc: Fix a bug in storvsc limits (Vitaly Kuznetsov) [1174162]
-- [iser-target] Ignore non TEXT + LOGOUT opcodes for discovery (Andy Grover) [1058736]
-- [iser-target] Add support for ISCSI_OP_TEXT opcode + payload handling (Andy Grover) [1058736]
-- [iser-target] Rename sense_buf_dma/len to pdu_dma/len (Andy Grover) [1058736]
-- [iscsi-target] Add IFC_SENDTARGETS_SINGLE support (Andy Grover) [1058736]
-- [iscsi-target] Move sendtargets parsing into iscsit_process_text_cmd (Andy Grover) [1058736]
-- [iscsi-target] Allow ->MaxXmitDataSegmentLength assignment for iser discovery (Andy Grover) [1058736]
-- [iscsi-target] Refactor ISCSI_OP_TEXT_RSP TX handling (Andy Grover) [1058736]
-- [iscsi-target] Refactor ISCSI_OP_TEXT RX handling (Andy Grover) [1058736]
-- [iscsi] isert-target: Refactor ISCSI_OP_NOOP RX handling (Andy Grover) [1058736]
-- [net] description of dma_cookie cause make xmldocs warning (Jiri Benc) [1173444]
-- [net] tcp: make tcp_cleanup_rbuf private (Jiri Benc) [1173444]
-- [net] net_dma: revert 'copied_early' (Jiri Benc) [1173444]
-- [net] net_dma: mark broken (Jiri Benc) [1173444]
-- [net] unix: allow set_peek_off to fail (Jiri Benc) [1123777]
-- [net] ppp: ppp-ioctl.h: pull in ppp_defs.h (Jiri Benc) [1159802]
-- [net] bridge: Add filtering support for default_pvid (Vlad Yasevich) [1164653]
-- [net] bridge: Simplify pvid checks (Vlad Yasevich) [1164653]
-- [net] bridge: Add a default_pvid sysfs attribute (Vlad Yasevich) [1164653]
-- [net] bridge: Prepare for 802.1ad vlan filtering support (Vlad Yasevich) [1164653]
-- [net] bridge: Fix the way to check if a local fdb entry can be deleted (Vlad Yasevich) [1164653]
-- [net] bridge: Fix the way to insert new local fdb entries in br_fdb_changeaddr (Vlad Yasevich) [1164653]
-- [net] Remove extern from function prototypes (Vlad Yasevich) [1164653]
-- [ethernet] mlx5: Add more supported devices (Amir Vadai) [1169277]
-- [infiniband] mlx4: Fix wrong usage of IPv4 protocol for multicast attach/detach (Amir Vadai) [1151331]
-- [ethernet] mlx4: mlx4_en_set_settings() always fails when autoneg is set (Amir Vadai) [1170129]
-
-* Thu Jan 08 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-222.el7]
-- [scsi] qla2xxx: Update version number to 8.07.00.08.07.1-k2 (Chad Dupuis) [1085239]
-- [scsi] qla2xxx: Move mailbox failure messages to a default debug level (Chad Dupuis) [1085239]
-- [security] commoncap: don't alloc the credential unless needed in cap_task_prctl (Paul Moore) [1056347]
-- [iommu] vt-d: Fix dmar_domain leak in iommu_attach_device (Myron Stowe) [1109829]
-- [iommu] vt-d: Only remove domain when device is removed (Myron Stowe) [1109829]
-- [base] core: Add BUS_NOTIFY_REMOVED_DEVICE event (Myron Stowe) [1109829]
-- [powerpc] kdump: Ignore failure in enabling big endian exception during crash (Steve Best) [1170362]
-- [infiniband] srpt: convert printk's to pr_* functions (Doug Ledford) [1174910]
-- [infiniband] srpt: Handle GID change events (Doug Ledford) [1174910]
-- [input] alps: fix v4 button press recognition (Benjamin Tissoires) [1107819]
-- [input] alps: v7 - document the v7 touchpad packet protocol (Benjamin Tissoires) [1107819]
-- [input] alps: v7 - fix finger counting for > 2 fingers on clickpads (Benjamin Tissoires) [1107819]
-- [input] alps: v7 - sometimes a single touch is reported in mt[1] (Benjamin Tissoires) [1107819]
-- [input] alps: v7 - ignore new packets (Benjamin Tissoires) [1107819]
-- [powerpc] perf/hv-24x7: Use kmem_cache_free() instead of kfree (Gustavo Duarte) [1171795]
-- [powerpc] perf/hv-24x7: Use per-cpu page buffer (Gustavo Duarte) [1171795]
-- [powerpc] perf/hv-24x7: use kmem_cache instead of aligned stack allocations (Gustavo Duarte) [1171795]
-- [powerpc] perf/hv-24x7: Use kmem_cache_free (Gustavo Duarte) [1171795]
-- [powerpc] Fill in si_addr_lsb siginfo field (Gustavo Duarte) [1173267]
-- [powerpc] Add VM_FAULT_HWPOISON handling to powerpc page fault handler (Gustavo Duarte) [1173267]
-- [fs] dlm: fix missing endian conversion of rcom_status flags (Andrew Price) [1175900]
-- [scsi] add Intel Multi-Flex to scsi scan blacklist (Hannes Frederic Sowa) [1175862]
-- [scsi] do not issue SCSI RSOC command to Promise Vtrak E610f (Hannes Frederic Sowa) [1175862]
-- [scsi] scsi_lib: rate-limit the error message from failing commands (Tomas Henzl) [1175785]
-- [scsi] iscsi_ibft: Fix finding Broadcom specific ibft sign (Chris Leech) [1095169]
-
-* Tue Jan 06 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-221.el7]
-- [ethernet] enic: fix rx skb checksum (Stefan Assmann) [1154182]
-- [x86] uv: make kdump default action for 'power nmi' (George Beshers) [1175560]
-- [virt] powerpc/kvm: book3s_hv - Fix KSM memory corruption (David Gibson) [1170394]
-- [pci] Revert: Remove from bus_list and release resources in pci_release_dev() (Prarit Bhargava) [1172946]
-- [powercap] rapl: add support for CPU model 0x3f (Rui Wang) [1177579]
-- [kernel] audit: don't attempt to lookup PIDs when changing PID filtering audit rules (Paul Moore) [1172624]
-- [ethernet] ixgbe: avoid possible read_reg panic caused by late method binding (John Greene) [1145772]
-- [ethernet] ixgbe: bump version number (John Greene) [1145772]
-- [ethernet] ixgbe: Add X550 support function pointers (John Greene) [1145772]
-- [ethernet] ixgbe: Add new support for X550 MAC's (John Greene) [1145772]
-- [ethernet] ixgbe: Add x550 SW/FW semaphore support (John Greene) [1145772]
-- [ethernet] ixgbe: add methods for combined read and write operations (John Greene) [1145772]
-- [ethernet] ixgbe: cleanup checksum to allow error results (John Greene) [1145772]
-- [ethernet] ixgbe: Add timeout parameter to ixgbe_host_interface_command (John Greene) [1145772]
-- [ethernet] ixgbe: Fix spurious release of semaphore in EEPROM access (John Greene) [1145772]
-- [drm] i915: remove the IRQs enabled WARN from intel_disable_gt_powersave (Rob Clark) [1173317]
-- [drm] i915: tame the chattermouth (Rob Clark) [1173317]
-- [drm] ttm: Avoid memory allocation from shrinker functions (Rob Clark) [1173317]
-- [drm] ttm: Fix possible stack overflow by recursive shrinker calls (Rob Clark) [1173317]
-- [drm] ttm: Use mutex_trylock() to avoid deadlock inside shrinker functions (Rob Clark) [1173317]
-- [drm] video/fb: Propagate error code from failing to unregister conflicting fb (Rob Clark) [1173317]
-- [drm] i915: save/restore GMBUS freq across suspend/resume on gen4 (Rob Clark) [1173317]
-- [drm] i915: resume MST after reading back hw state (Rob Clark) [1173317]
-- [drm] dp-mst: Remove branches before dropping the reference (Rob Clark) [1173317]
-- [drm] fb_helper: move deferred fb checking into restore mode (Rob Clark) [1173317]
-- [drm] dp: retry AUX transactions 32 times (v1.1) (Rob Clark) [1173317]
-- [drm] i915: Ignore long hpds on eDP ports (Rob Clark) [1173317]
-- [drm] i915/dp: only use training pattern 3 on platforms that support it (Rob Clark) [1173317]
-- [drm] radeon: sync all BOs involved in a CS (Rob Clark) [1173317]
-- [drm] radeon: kernel panic in drm_calc_vbltimestamp_from_scanoutpos with 3.18.0-rc6 (Rob Clark) [1173317]
-- [drm] i915: Unlock panel even when LVDS is disabled (Rob Clark) [1173317]
-- [drm] i915: More cautious with pch fifo underruns (Rob Clark) [1173317]
-- [drm] i915: Ignore SURFLIVE and flip counter when the GPU gets reset (Rob Clark) [1173317]
-- [drm] i915: Kick fbdev before vgacon (Rob Clark) [1173317]
-- [drm] i915: Handle failure to kick out a conflicting fb driver (Rob Clark) [1173317]
-- [drm] i915: drop WaSetupGtModeTdRowDispatch:snb (Rob Clark) [1173317]
-- [drm] radeon: add locking around atombios scratch space usage (Rob Clark) [1173317]
-- [drm] radeon: add missing crtc unlock when setting up the MC (Rob Clark) [1173317]
-- [drm] i915: Disable caches for Global GTT (Rob Clark) [1173317]
-- [drm] i915: Do not leak pages when freeing userptr objects (Rob Clark) [1173317]
-- [drm] ast: Fix HW cursor image (Rob Clark) [1173317]
-- [drm] radeon: Use drm_malloc_ab instead of kmalloc_array (Rob Clark) [1173317]
-- [drm] radeon/dpm: disable ulv support on SI (Rob Clark) [1173317]
-- [drm] i915: Do a dummy DPCD read before the actual read (Rob Clark) [1173317]
-- [drm] nouveau/bios: memset dcb struct to zero before parsing (Rob Clark) [1173317]
-- [drm] nv50/disp: fix dpms regression on certain boards (Rob Clark) [1173317]
-- [drm] nouveau/ltc: fix cbc issues on certain boards (Rob Clark) [1173317]
-- [drm] nouveau/ltc: fix tag base address getting truncated if above 4GiB (Rob Clark) [1173317]
-- [drm] nvc0-/fb/ram: fix use of non-existant ram if partitions aren't uniform (Rob Clark) [1173317]
-- [drm] nouveau/bar: behave better if ioremap failed (Rob Clark) [1173317]
-- [drm] nouveau: make sure display hardware is reinitialised on runtime resume (Rob Clark) [1173317]
-- [drm] nouveau: punt fbcon resume out to a workqueue (Rob Clark) [1173317]
-- [drm] nouveau/kms: restore acceleration before fb_set_suspend() resumes (Rob Clark) [1173317]
-- [drm] nouveau/kms: take more care when pulling down accelerated fbcon (Rob Clark) [1173317]
-- [drm] i915: Flush the PTEs after updating them before suspend (Rob Clark) [1153301]
-- [drm] radeon/cik: use a separate counter for CP init timeout (Rob Clark) [1173317]
-- [drm] radeon/dpm: fix resume on mullins (Rob Clark) [1173317]
-- [drm] radeon: don't reset dma on r6xx-evergreen init (Rob Clark) [1173317]
-- [drm] radeon: don't reset sdma on CIK init (Rob Clark) [1173317]
-- [drm] radeon: don't reset dma on NI/SI init (Rob Clark) [1173317]
-- [drm] radeon: add connector quirk for fujitsu board (Rob Clark) [1173317]
-- [drm] radeon/dpm: set the thermal type properly for special configs (Rob Clark) [1173317]
-- [drm] radeon: fix semaphore value init (Rob Clark) [1173317]
-- [drm] radeon: handle broken disabled rb mask gracefully (6xx/7xx) (Rob Clark) [1173317]
-- [drm] radeon: fix active_cu mask on SI and CIK after re-init (v3) (Rob Clark) [1173317]
-- [drm] radeon: fix active cu count for SI and CIK (Rob Clark) [1173317]
-- [drm] radeon: fix pm handling in radeon_gpu_reset (Rob Clark) [1173317]
-- [drm] radeon: properly document reloc priority mask (Rob Clark) [1173317]
-- [drm] radeon/dpm: select the appropriate vce power state for KV/KB/ML (Rob Clark) [1173317]
-- [drm] radeon: Add missing lines to ci_set_thermal_temperature_range (Rob Clark) [1173317]
-- [drm] radeon: Add ability to get and change dpm state when radeon PX card is turned off (Rob Clark) [1173317]
-- [drm] vmwgfx: Fix a potential infinite spin waiting for fifo idle (Rob Clark) [1173317]
-- [drm] ast: AST2000 cannot be detected correctly (Rob Clark) [1173317]
-- [drm] ast: open key before detect chips (Rob Clark) [1173317]
-- [drm] i915: Don't leak command parser tables on suspend/resume (Rob Clark) [1153301]
-- [drm] i915/hdmi: fix hdmi audio state readout (Rob Clark) [1153301]
-- [drm] i915: Wait for vblank before enabling the TV encoder (Rob Clark) [1153301]
-- [drm] i915: Fix EIO/wedged handling in gem fault handler (Rob Clark) [1153301]
-- [drm] i915: Fix lock dropping in intel_tv_detect() (Rob Clark) [1153301]
-- [drm] i915: Remove bogus __init annotation from DMI callbacks (Rob Clark) [1153301]
-- [drm] i915: Ignore VBT backlight presence check on Acer C720 (4005U) (Rob Clark) [1153301]
-- [drm] i915: fix plane/cursor handling when runtime suspended (Rob Clark) [1153301]
-- [drm] i915: don't try to retrain a DP link on an inactive CRTC (Rob Clark) [1153301]
-- [drm] i915: Fix locking for intel_enable_pipe_a() (Rob Clark) [1153301]
-- [drm] i915: Skip load detect when intel_crtc->new_enable==true (Rob Clark) [1153301]
-- [drm] i915: Disable RCS flips on Ivybridge (Rob Clark) [1153301]
-- [drm] i915: read HEAD register back in init_ring_common() to enforce ordering (Rob Clark) [1153301]
-- [drm] i915: Fix crash when failing to parse MIPI VBT (Rob Clark) [1153301]
-- [drm] radeon: tweak ACCEL_WORKING2 query for hawaii (Rob Clark) [1173317]
-- [drm] radeon/atom: add new voltage fetch function for hawaii (Rob Clark) [1173317]
-- [drm] radeon: set VM base addr using the PFP (Rob Clark) [1173317]
-- [drm] radeon: load the lm63 driver for an lm64 thermal chip (Rob Clark) [1173317]
-- [drm] radeon: re-enable dpm by default on BTC (Rob Clark) [1173317]
-- [drm] radeon: re-enable dpm by default on cayman (Rob Clark) [1173317]
-- [drm] radeon/dpm: handle voltage info fetching on hawaii (Rob Clark) [1173317]
-- [drm] ttm: Choose a pool to shrink correctly in ttm_dma_pool_shrink_scan() (Rob Clark) [1173317]
-- [drm] ttm: Fix possible division by 0 in ttm_dma_pool_shrink_scan() (Rob Clark) [1173317]
-- [drm] ttm: fix handling of TTM_PL_FLAG_TOPDOWN (Rob Clark) [1173317]
-- [drm] nouveau: Bump version from 1.1.1 to 1.1.2 (Rob Clark) [1173317]
-- [drm] nouveau: Dis/Enable vblank irqs during suspend/resume (Rob Clark) [1173317]
-- [drm] radeon: add additional SI pci ids (Rob Clark) [1173317]
-- [drm] radeon: add new bonaire pci ids (Rob Clark) [1173317]
-- [drm] radeon: add new KV pci id (Rob Clark) [1173317]
-- [powerpc] add little endian flag to syscall_get_arch() (Richard Guy Briggs) [1169461]
-- [powerpc] simplify syscall_get_arch() (Richard Guy Briggs) [1169461]
-
-* Tue Dec 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-220.el7]
-- [scsi] libcxgbi: fix freeing skb prematurely (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: use set_wr_txq() to set tx queues (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: handle non-pdu-aligned rx data (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: additional types of negative advice (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: set the max. pdu length in firmware (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: fix credit check for tx_data_wr (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: fix tx immediate data credit check (Sai Vemuri) [1174982]
-- [net] ipv6: update Destination Cache entries when gateway turn into host (Jiri Pirko) [1114781]
-- [net] ipsec: Don't update the pmtu on ICMPV6_DEST_UNREACH (Herbert Xu) [1158771]
-- [s390] zfcp: remove access control tables interface (port leftovers) (Hendrik Brueckner) [1173553]
-- [x86] perf: Use extended offcore mask on Haswell (Don Zickus) [1170795]
-- [fs] ovl: ovl_dir_fsync() cleanup (David Howells) [985875]
-- [fs] ovl: pass dentry into ovl_dir_read_merged() (David Howells) [985875]
-- [fs] ovl: use lockless_dereference() for upperdentry (David Howells) [985875]
-- [fs] ovl: allow filenames with comma (David Howells) [985875]
-- [fs] ovl: fix race in private xattr checks (David Howells) [985875]
-- [fs] ovl: fix remove/copy-up race (David Howells) [985875]
-- [fs] ovl: rename filesystem type to "overlay" (David Howells) [985875]
-- [fs] Don't warn if both ->rename() and ->rename2() iops are defined (David Howells) [985875]
-- [fs] overlayfs: Fix the kABI for overlayfs (David Howells) [985875]
-- [fs] overlayfs: don't poison cursor (David Howells) [985875]
-- [fs] overlayfs: initialize ->is_cursor (David Howells) [985875]
-- [fs] overlayfs: fix lockdep misannotation (David Howells) [985875]
-- [fs] overlayfs: fix check for cursor (David Howells) [985875]
-- [fs] overlayfs: barriers for opening upper-layer directory (David Howells) [985875]
-- [kernel] rcu: Provide counterpart to rcu_dereference() for non-RCU situations (David Howells) [985875]
-- [fs] overlayfs: embed middle into overlay_readdir_data (David Howells) [985875]
-- [fs] overlayfs: embed root into overlay_readdir_data (David Howells) [985875]
-- [fs] overlayfs: make ovl_cache_entry->name an array instead of pointer (David Howells) [985875]
-- [fs] overlayfs: don't hold ->i_mutex over opening the real directory (David Howells) [985875]
-- [fs] overlayfs: limit filesystem stacking depth (David Howells) [985875]
-- [fs] overlayfs: overlay filesystem documentation (David Howells) [985875]
-- [fs] overlayfs: implement show_options (David Howells) [985875]
-- [fs] overlayfs: add statfs support (David Howells) [985875]
-- [fs] overlayfs: filesystem (David Howells) [985875]
-- [mm] shmem: support RENAME_WHITEOUT (David Howells) [985875]
-- [fs] ext4: support RENAME_WHITEOUT (David Howells) [985875]
-- [fs] vfs: add RENAME_WHITEOUT (David Howells) [985875]
-- [fs] vfs: add whiteout support (David Howells) [985875]
-- [fs] vfs: export check_sticky() (David Howells) [985875]
-- [fs] vfs: introduce clone_private_mount() (David Howells) [985875]
-- [fs] vfs: export __inode_permission() to modules (David Howells) [985875]
-- [fs] vfs: export do_splice_direct() to modules (David Howells) [985875]
-- [fs] vfs: add i_op->dentry_open() (David Howells) [985875]
-- [fs] namei: trivial fix to vfs_rename_dir comment (David Howells) [985875]
-- [fs] cifs: support RENAME_NOREPLACE (David Howells) [985875]
-- [fs] hostfs: support rename flags (David Howells) [985875]
-- [mm] shmem: support RENAME_EXCHANGE (David Howells) [985875]
-- [mm] shmem: support RENAME_NOREPLACE (David Howells) [985875]
-- [fs] btrfs: add RENAME_NOREPLACE (David Howells) [985875]
-- [fs] bad_inode: add ->rename2() (David Howells) [985875]
-- [fs] call rename2 if exists (David Howells) [985875]
-- [fs] fuse: restructure ->rename2() (David Howells) [985875]
-- [fs] fuse: add renameat2 support (David Howells) [985875]
-- [fs] dcache: fix races between __d_instantiate() and checks of dentry flags (David Howells) [985875]
-- [fs] ext4: add cross rename support (David Howells) [985875]
-- [fs] vfs: add cross-rename (David Howells) [985875]
-- [fs] vfs: lock_two_nondirectories - allow directory args (David Howells) [985875]
-- [security] add flags to rename hooks (David Howells) [985875]
-- [fs] vfs: add RENAME_NOREPLACE flag (David Howells) [985875]
-- [fs] vfs: add renameat2 syscall (David Howells) [985875]
-- [fs] namei: use common code for dir and non-dir (David Howells) [985875]
-- [fs] namei: move d_move() up (David Howells) [985875]
-- [fs] vfs: add d_is_dir() (David Howells) [985875]
-- [fs] vfs: Put a small type field into struct dentry::d_flags (David Howells) [985875]
-
-* Thu Dec 18 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-219.el7]
-- [mm] vmstat: on-demand vmstat workers V8 (Larry Woodman) [1157802]
-- [mm] vmstat: use this_cpu() to avoid irqon/off sequence in refresh_cpu_vm_stats (Larry Woodman) [1157802]
-- [mm] vmstat: create fold_diff (Larry Woodman) [1157802]
-- [mm] vmstat: create separate function to fold per cpu diffs into local counters (Larry Woodman) [1157802]
-- [block] blk-mq: Fix uninitialized kobject at CPU hotplugging (Jeff Moyer) [1169232]
-- [kernel] audit: AUDIT_FEATURE_CHANGE message format missing delimiting space (Richard Guy Briggs) [1165469]
-- [fs] NFSv4.1: nfs41_clear_delegation_stateid shouldn't trust NFS_DELEGATED_STATE (Steve Dickson) [1166845]
-- [fs] NFSv4: Fix races between nfs_remove_bad_delegation() and delegation return (Steve Dickson) [1166845]
-- [fs] NFS: Don't try to reclaim delegation open state if recovery failed (Steve Dickson) [1166845]
-- [fs] NFSv4: Ensure that we call FREE_STATEID when NFSv4.x stateids are revoked (Steve Dickson) [1166845]
-- [fs] NFSv4: Ensure that we remove NFSv4.0 delegations when state has expired (Steve Dickson) [1166845]
-
-* Wed Dec 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-218.el7]
-- [scsi] cxgb4i: Don't block unload/cxgb4 unload when remote closes TCP connection (Sai Vemuri) [1169941]
-- [kernel] kthread: partial revert of 81c98869faa5 ("kthread: ensure locality of task_struct allocations") (Gustavo Duarte) [953583]
-- [mm] slub: fall back to node_to_mem_node() node if allocating on memoryless node (Gustavo Duarte) [953583]
-- [mm] topology: add support for node_to_mem_node() to determine the fallback node (Gustavo Duarte) [953583]
-- [mm] slub: search partial list on numa_mem_id(), instead of numa_node_id() (Gustavo Duarte) [953583]
-- [kernel] kthread: ensure locality of task_struct allocations (Gustavo Duarte) [953583]
-- [md] dm-thin: fix missing out-of-data-space to write mode transition if blocks are released (Mike Snitzer) [1173181]
-- [md] dm-thin: fix inability to discard blocks when in out-of-data-space mode (Mike Snitzer) [1173181]
-- [wireless] iwlwifi/mvm: update values for Smart Fifo (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/dvm: fix flush support for old firmware (Stanislaw Gruszka) [1155538]
-- [wireless] ath5k: fix hardware queue index assignment (Stanislaw Gruszka) [1155538]
-- [wireless] ath9k: fix BE/BK queue order (Stanislaw Gruszka) [1155538]
-- [wireless] ath9k_hw: fix hardware queue allocation (Stanislaw Gruszka) [1155538]
-- [wireless] ath9k: Fix RTC_DERIVED_CLK usage (Stanislaw Gruszka) [1155538]
-- [wireless] rt2x00: do not align payload on modern H/W (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: Fix regression that triggers a kernel BUG with CCMP (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi: fix RFkill while calibrating (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: fix use-after-free in defragmentation (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: properly flush delayed scan work on interface removal (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: schedule the actual switch of the station before CSA count 0 (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: use secondary channel offset IE also beacons during CSA (Stanislaw Gruszka) [1155538]
-- [wireless] rt2x00: add new rt2800usb device (Stanislaw Gruszka) [1155538]
-- [wireless] Revert: iwlwifi/mvm: treat EAPOLs like mgmt frames wrt rate (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/dvm: drop non VO frames when flushing (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi: configure the LTR (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: fix typo in starting baserate for rts_cts_rate_idx (Stanislaw Gruszka) [1155538]
-- [wireless] rt2x00: add new rt2800usb devices (Stanislaw Gruszka) [1155538]
-- [wireless] rt2x00: support Ralink 5362 (Stanislaw Gruszka) [1155538]
-- [wireless] Revert: ath9k: reduce ANI firstep range for older chips (Stanislaw Gruszka) [1155538]
-- [wireless] rt2800: correct BBP1_TX_POWER_CTRL mask (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi: Add missing PCI IDs for the 7260 series (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/mvm: disable BT Co-running by default (Stanislaw Gruszka) [1155538]
-- [wireless] nl80211: clear skb cb before passing to netlink (Stanislaw Gruszka) [1155538]
-- [wireless] ath9k/htc: fix random decryption failure (Stanislaw Gruszka) [1155538]
-- [wireless] brcmfmac: handle IF event for P2P_DEVICE interface (Stanislaw Gruszka) [1155538]
-- [wireless] Revert: mac80211: disable uAPSD if all ACs are under ACM (Stanislaw Gruszka) [1155538]
-- [wireless] rtlwifi/rtl8192cu: Add new ID (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/mvm: set MAC_FILTER_IN_BEACON correctly for STA/P2P client (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/mvm: treat EAPOLs like mgmt frames wrt rate (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi: increase DEFAULT_MAX_TX_POWER (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/mvm: fix endianity issues with Smart Fifo commands (Stanislaw Gruszka) [1155538]
-- [wireless] Revert: iwlwifi/dvm: don't enable CTS to self (Stanislaw Gruszka) [1155538]
-- [wireless] carl9170: fix sending URBs with wrong type when using full-speed (Stanislaw Gruszka) [1155538]
-
-* Fri Dec 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-217.el7]
-- [net] ipv6: yet another new IPV6_MTU_DISCOVER option IPV6_PMTUDISC_OMIT (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: yet another new IP_MTU_DISCOVER option IP_PMTUDISC_OMIT (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: use ip_skb_dst_mtu to determine mtu in ip_fragment (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: introduce ip_dst_mtu_maybe_forward and protect forwarding path against pmtu spoofing (Hannes Frederic Sowa) [1170116]
-- [net] ipv6: move ip6_sk_accept_pmtu from generic pmtu update path to ipv6 one (Hannes Frederic Sowa) [1170116]
-- [net] ipv6: support IPV6_PMTU_INTERFACE on sockets (Hannes Frederic Sowa) [1170116]
-- [net] udp: do not report ICMP redirects to user space (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: new ip_no_pmtu_disc mode to always discard incoming frag needed msgs (Hannes Frederic Sowa) [1170116]
-- [net] inet: make no_pmtu_disc per namespace and kill ipv4_config (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: improve documentation of ip_no_pmtu_disc (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: introduce new IP_MTU_DISCOVER mode IP_PMTUDISC_INTERFACE (Hannes Frederic Sowa) [1170116]
-- [net] xfrm: revert ipv4 mtu determination to dst_mtu (Hannes Frederic Sowa) [1170116]
-- [net] xfrm: introduce helper for safe determination of mtu (Hannes Frederic Sowa) [1170116]
-- [net] netfilter: conntrack: disable generic tracking for known protocols (Daniel Borkmann) [1170520]
-- [net] gre: Fix use-after-free panic in ipgre_rcv() (Panu Matilainen) [1117543]
-- [net] netfilter: nf_conntrack_h323: lookup route from proper net namespace (Florian Westphal) [1163847]
-- [net] netfilter: xt_tcpmss: lookup route from proper net namespace (Florian Westphal) [1163847]
-- [net] netfilter: xt_tcpmss: Get mtu only if clamp-mss-to-pmtu is specified (Florian Westphal) [1163847]
-- [wireless] cfg80211: don't WARN about two consecutive Country IE hint (Stanislaw Gruszka) [1164282]
-- [fs] aio: fix race between aio event completion and reaping (Jeff Moyer) [1131312]
-- [fs] proc/task_mmu: fix missing check during hugepage migration (Jacob Tanenbaum) [1105040] {CVE-2014-3940}
-- [kernel] trace: insufficient syscall number validation in perf and ftrace subsystems (Jacob Tanenbaum) [1161570] {CVE-2014-7825 CVE-2014-7826}
-- [ethernet] i40e: get pf_id from HW rather than PCI function (Stefan Assmann) [1078740]
-- [ethernet] i40e: increase ARQ size (Stefan Assmann) [1078740]
-- [x86] uv: Update the UV3 TLB shootdown logic (Frank Ramsay) [1170253]
-- [tools] peeksiginfo: add PAGE_SIZE definition (Steve Best) [1172250]
-- [base] bus: Fix unbalanced device reference in drivers_probe (Alex Williamson) [1158862]
-- [char] tpm: Fix NULL return in tpm_ibmvtpm_get_desired_dma (Gustavo Duarte) [1154818]
-- [powerpc] kvm: book3s_hv - Reserve cma region only in hypervisor mode (Gustavo Duarte) [1147740]
-- [x86] traps: stop using IST for #SS (Petr  Matousek) [1172813] {CVE-2014-9322}
-
-* Tue Dec 09 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-216.el7]
-- [acpi] Revert: hotplug/pci: Simplify disable_slot() (Prarit Bhargava) [1158720]
-- [infiniband] iser: Adjust data_length to include protection information (Amir Vadai) [1107622]
-- [infiniband] iser: Bump version to 1.4.1 (Amir Vadai) [1107622]
-- [infiniband] iser: Allow bind only when connection state is UP (Amir Vadai) [1107622]
-- [infiniband] iser: Fix RX/TX CQ resource leak on error flow (Amir Vadai) [1107622]
-- [infiniband] iser: Clarify a duplicate counters check (Amir Vadai) [1107622]
-- [infiniband] iser: Replace connection waitqueue with completion object (Amir Vadai) [1107622]
-- [infiniband] iser: Protect iser state machine with a mutex (Amir Vadai) [1107622]
-- [infiniband] iser: Remove redundant return code in iser_free_ib_conn_res() (Amir Vadai) [1107622]
-- [infiniband] iser: Seperate iser_conn and iscsi_endpoint storage space (Amir Vadai) [1107622]
-- [infiniband] iser: Fix responder resources advertisement (Amir Vadai) [1107622]
-- [infiniband] iser: Add TIMEWAIT_EXIT event handling (Amir Vadai) [1107622]
-- [infiniband] iser: Support IPv6 address family (Amir Vadai) [1107622]
-- [infiniband] iser: Bump version to 1.4 (Amir Vadai) [1107622]
-- [infiniband] iser: Add missing newlines to logging messages (Amir Vadai) [1107622]
-- [infiniband] iser: Fix a possible race in iser connection states transition (Amir Vadai) [1107622]
-- [infiniband] iser: Simplify connection management (Amir Vadai) [1107622]
-- [infiniband] iser: Bump driver version to 1.3 (Amir Vadai) [1107622]
-- [infiniband] iser: Update Mellanox copyright note (Amir Vadai) [1107622]
-- [infiniband] iser: Print QP information once connection is established (Amir Vadai) [1107622]
-- [infiniband] iser: Remove struct iscsi_iser_conn (Amir Vadai) [1107622]
-- [infiniband] iser: Drain the tx cq once before looping on the rx cq (Amir Vadai) [1107622]
-- [infiniband] iser: Fix sector_t format warning (Amir Vadai) [1107622]
-- [infiniband] iser: Publish T10-PI support to SCSI midlayer (Amir Vadai) [1107622]
-- [infiniband] iser: Implement check_protection (Amir Vadai) [1107622]
-- [infiniband] iser: Support T10-PI operations (Amir Vadai) [1107622]
-- [infiniband] iser: Initialize T10-PI resources (Amir Vadai) [1107622]
-- [infiniband] iser: Introduce pi_enable, pi_guard module parameters (Amir Vadai) [1107622]
-- [infiniband] iser: Generalize fall_to_bounce_buf routine (Amir Vadai) [1107622]
-- [infiniband] iser: Generalize iser_unmap_task_data and finalize_rdma_unaligned_sg (Amir Vadai) [1107622]
-- [infiniband] iser: Replace fastreg descriptor valid bool with indicators container (Amir Vadai) [1107622]
-- [infiniband] iser: Keep IB device attributes under iser_device (Amir Vadai) [1107622]
-- [infiniband] iser: Move fast_reg_descriptor initialization to a function (Amir Vadai) [1107622]
-- [infiniband] iser: Push the decision what memory key to use into fast_reg_mr routine (Amir Vadai) [1107622]
-- [infiniband] iser: Avoid FRWR notation, use fastreg instead (Amir Vadai) [1107622]
-- [infiniband] iser: Suppress completions for fast registration work requests (Amir Vadai) [1107622]
-- [infiniband] iser: Fix use after free in iser_snd_completion() (Amir Vadai) [1107622]
-- [scsi] libiscsi: Add check_protection callback for transports (Amir Vadai) [1107622]
-- [mm] mem-hotplug: reset node present pages when hot-adding a new pgdat (Motohiro Kosaki) [1156396]
-- [mm] mem-hotplug: reset node managed pages when hot-adding a new pgdat (Motohiro Kosaki) [1156396]
-- [mm] make __free_pages_bootmem() only available at boot time (Motohiro Kosaki) [1156396]
-- [mm] use a dedicated lock to protect totalram_pages and zone->managed_pages (Motohiro Kosaki) [1156396]
-- [mm] accurately calculate zone->managed_pages for highmem zones (Motohiro Kosaki) [1156396]
-- [md] dm-cache: fix spurious cell_defer when dealing with partial block at end of device (Mike Snitzer) [1165050]
-- [md] dm-cache: dirty flag was mistakenly being cleared when promoting via overwrite (Mike Snitzer) [1165050]
-- [md] dm-cache: only use overwrite optimisation for promotion when in writeback mode (Mike Snitzer) [1165050]
-- [md] dm-cache: discard block size must be a multiple of cache block size (Mike Snitzer) [1165050]
-- [md] dm-cache: fix a harmless race when working out if a block is discarded (Mike Snitzer) [1165050]
-- [md] dm-cache: when reloading a discard bitset allow for a different discard block size (Mike Snitzer) [1165050]
-- [md] dm-cache: fix some issues with the new discard range support (Mike Snitzer) [1165050]
-- [md] dm-array: if resizing the array is a noop set the new root to the old one (Mike Snitzer) [1165050]
-- [md] dm-bufio: fix memleak when using a dm_buffer's inline bio (Mike Snitzer) [1165050]
-- [md] dm: use rcu_dereference_protected instead of rcu_dereference (Mike Snitzer) [1165246]
-- [md] dm-thin: suspend/resume active thin devices when reloading thin-pool (Mike Snitzer) [1165246]
-- [md] dm-thin: do not allow thin device activation while pool is suspended (Mike Snitzer) [1165246]
-- [md] dm-thin: fix a race in thin_dtr (Mike Snitzer) [1165246]
-- [md] dm-thin: remove stale 'trim' message in block comment above pool_message (Mike Snitzer) [1165246]
-- [md] dm: update wait_on_bit calls for RHEL (Mike Snitzer) [1165246]
-- [md] dm: enhance internal suspend and resume interface (Mike Snitzer) [1165246]
-- [md] dm: add presuspend_undo hook to target_type (Mike Snitzer) [1165246]
-- [md] dm: return earlier from dm_blk_ioctl if target doesn't implement .ioctl (Mike Snitzer) [1165246]
-- [md] dm: do not call dm_sync_table() when creating new devices (Mike Snitzer) [1165246]
-- [md] dm: sparse - Annotate field with __rcu for checking (Mike Snitzer) [1165246]
-- [md] dm: Use rcu_dereference() for accessing rcu pointer (Mike Snitzer) [1165246]
-- [md] dm: allow active and inactive tables to share dm_devs (Mike Snitzer) [1165246]
-- [md] dm-mpath: stop queueing IO when no valid paths exist (Mike Snitzer) [1165246]
-
-* Mon Dec 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-215.el7]
-- [net] vxlan: Do not reuse sockets for a different address family (Marcelo Leitner) [1146107]
-- [net] vti: Fix kernel panic due to tunnel not being removed on link deletion (Panu Matilainen) [1167725]
-- [net] sctp: test if association is dead in sctp_wake_up_waiters (Daniel Borkmann) [1166467]
-- [net] sctp: wake up all assocs if sndbuf policy is per socket (Daniel Borkmann) [1166467]
-- [net] ip: better estimate tunnel header cut for correct ufo handling (Alexander Duyck) [1159577]
-- [net] ipv6: gso: remove redundant locking (Alexander Duyck) [1159577]
-- [net] ipv6: Do not treat a GSO_TCPV4 request from UDP tunnel over IPv6 as invalid (Alexander Duyck) [1159577]
-- [net] ipv6: fib: fix fib dump restart (Panu Matilainen) [1163605]
-- [net] ipv6: drop unused fib6_clean_all_ro() function and rt6_proc_arg struct (Panu Matilainen) [1163605]
-- [net] ipv6: avoid high order memory allocations for /proc/net/ipv6_route (Panu Matilainen) [1163605]
-- [net] ipv4: Fix incorrect error code when adding an unreachable route (Panu Matilainen) [1165552]
-- [net] sctp: replace seq_printf with seq_puts (Daniel Borkmann) [1164214]
-- [net] sctp: add transport state in /proc/net/sctp/remaddr (Daniel Borkmann) [1164214]
-- [IB] isert: Adjust CQ size to HW limits (Andy Grover) [1166314]
-- [ib_isert] Add max_send_sge=2 minimum for control PDU responses (Andy Grover) [1166314]
-- [scsi] megaraid_sas: do not process IOCTLs and SCSI commands during driver removal (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: dndinaness related bug fixes (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: corrected return of wait_event from abort frame path (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: make HBA operational after LD_MAP_SYNC DCMD in OCR path (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: online Firmware upgrade support for Extended VD feature (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: update MAINTAINERS and copyright information for megaraid drivers (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: driver version upgrade and remove some meta data of driver (06.805.06.01-rc1) (Tomas Henzl) [1162645]
-
-* Mon Dec 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-214.el7]
-- [powerpc] Drop useless warning in eeh_init() (Gustavo Duarte) [1156651]
-- [powerpc] pseries: Decrease message level on EEH initialization (Gustavo Duarte) [1156651]
-- [net] ceph: fixup includes in pagelist.h (Ilya Dryomov) [1165232]
-- [net] ceph: change from BUG to WARN for __remove_osd() asserts (Ilya Dryomov) [1165232]
-- [net] ceph: clear r_req_lru_item in __unregister_linger_request() (Ilya Dryomov) [1165232]
-- [net] ceph: unlink from o_linger_requests when clearing r_osd (Ilya Dryomov) [1165232]
-- [net] ceph: do not crash on large auth tickets (Ilya Dryomov) [1165232]
-- [fs] ceph: fix flush tid comparision (Ilya Dryomov) [1165232]
-- [net] ceph: eliminate unnecessary allocation in process_one_ticket() (Ilya Dryomov) [1165232]
-- [block] rbd: Fix error recovery in rbd_obj_read_sync() (Ilya Dryomov) [1165232]
-- [net] ceph: use memalloc flags for net IO (Ilya Dryomov) [1165232]
-- [block] rbd: use a single workqueue for all devices (Ilya Dryomov) [1165232]
-- [fs] ceph: fix divide-by-zero in __validate_layout() (Ilya Dryomov) [1165232]
-- [block] rbd: rbd workqueues need a resque worker (Ilya Dryomov) [1165232]
-- [net] ceph: ceph-msgr workqueue needs a resque worker (Ilya Dryomov) [1165232]
-- [fs] ceph: fix bool assignments (Ilya Dryomov) [1165232]
-- [net] ceph: separate multiple ops with commas in debugfs output (Ilya Dryomov) [1165232]
-- [net] ceph: sync osd op definitions in rados.h (Ilya Dryomov) [1165232]
-- [net] ceph: remove redundant declaration (Ilya Dryomov) [1165232]
-- [fs] ceph: additional debugfs output (Ilya Dryomov) [1165232]
-- [fs] ceph: export ceph_session_state_name function (Ilya Dryomov) [1165232]
-- [fs] ceph: use pagelist to present MDS request data (Ilya Dryomov) [1165232]
-- [net] ceph: reference counting pagelist (Ilya Dryomov) [1165232]
-- [fs] ceph: fix llistxattr on symlink (Ilya Dryomov) [1165232]
-- [fs] ceph: send client metadata to MDS (Ilya Dryomov) [1165232]
-- [fs] ceph: remove redundant code for max file size verification (Ilya Dryomov) [1165232]
-- [fs] ceph: move ceph_find_inode() outside the s_mutex (Ilya Dryomov) [1165232]
-- [fs] ceph: request xattrs if xattr_version is zero (Ilya Dryomov) [1165232]
-- [block] rbd: set the remaining discard properties to enable support (Ilya Dryomov) [1165232]
-- [block] rbd: use helpers to handle discard for layered images correctly (Ilya Dryomov) [1165232]
-- [block] rbd: extract a method for adding object operations (Ilya Dryomov) [1165232]
-- [block] rbd: make discard trigger copy-on-write (Ilya Dryomov) [1165232]
-- [block] rbd: tolerate -ENOENT for discard operations (Ilya Dryomov) [1165232]
-- [block] rbd: fix snapshot context reference count for discards (Ilya Dryomov) [1165232]
-- [block] rbd: read image size for discard check safely (Ilya Dryomov) [1165232]
-- [block] rbd: initial discard bits (Ilya Dryomov) [1165232]
-- [block] rbd: extend the operation type (Ilya Dryomov) [1165232]
-- [block] rbd: skip the copyup when an entire object writing (Ilya Dryomov) [1165232]
-- [block] rbd: add img_obj_request_simple() helper (Ilya Dryomov) [1165232]
-- [block] rbd: access snapshot context and mapping size safely (Ilya Dryomov) [1165232]
-- [block] rbd: do not return -ERANGE on auth failures (Ilya Dryomov) [1165232]
-- [net] ceph: don't try checking queue_work() return value (Ilya Dryomov) [1165232]
-- [fs] ceph: make sure request isn't in any waiting list when kicking request (Ilya Dryomov) [1165232]
-- [fs] ceph: protect kick_requests() with mdsc->mutex (Ilya Dryomov) [1165232]
-- [net] ceph: Convert pr_warning to pr_warn (Ilya Dryomov) [1165232]
-- [fs] ceph: trim unused inodes before reconnecting to recovering MDS (Ilya Dryomov) [1165232]
-- [net] ceph: fix a use after free issue in osdmap_set_max_osd (Ilya Dryomov) [1165232]
-- [net] ceph: select CRYPTO_CBC in addition to CRYPTO_AES (Ilya Dryomov) [1165232]
-- [net] ceph: resend lingering requests with a new tid (Ilya Dryomov) [1165232]
-- [net] ceph: abstract out ceph_osd_request enqueue logic (Ilya Dryomov) [1165232]
-- [block] rbd: fix error return code in rbd_dev_device_setup() (Ilya Dryomov) [1165232]
-- [block] rbd: avoid format-security warning inside alloc_workqueue() (Ilya Dryomov) [1165232]
-- [kernel] printk/register_console: prevent adding the same console twice (Artem Savkov) [1169766]
-- [mm] hugetlb: add cond_resched_lock() in, return_unused_surplus_pages() (Motohiro Kosaki) [1142698]
-- [mm] hugetlb: fix softlockup when a large number of, hugepages are freed (Motohiro Kosaki) [1142698]
-- [kernel] sched: Use new KABI macros (Don Zickus) [1164383]
-- [net] Use new KABI macros (Don Zickus) [1164383]
-- [scsi] Use new KABI macros (Don Zickus) [1164383]
-- [kernel] Use new KABI macros (Don Zickus) [1164383]
-- [block] Use new KABI macros (Don Zickus) [1164383]
-- [block] include: Use new KABI macros (Don Zickus) [1164383]
-- [misc] Use new KABI macros (Don Zickus) [1164383]
-- [x86] Use new KABI macros (Don Zickus) [1164383]
-- [powerpc] Use new KABI macros (Don Zickus) [1164383]
-
-* Wed Dec 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-213.el7]
-- [scsi] ipr: don't log error messages when applications issues illegal requests (Gustavo Duarte) [1163019]
-- [net] macvlan: Allow setting multicast filter on all macvlan types (Vlad Yasevich) [848197]
-- [block] genhd: fix leftover might_sleep() in blk_free_devt() (Jeff Moyer) [1167728]
-- [ethernet] mlx4: Add VXLAN ndo calls to the PF net device ops too (Florian Westphal) [1168212]
-- [powerpc] xmon: le - Fix endiannes issue in RTAS call from xmon (Steve Best) [1160650]
-- [mm] thp: close race between split and zap huge pages (Seth Jennings) [1165268]
-- [mm] thp: close race between mremap() and split_huge_page() (Seth Jennings) [1165268]
-- [mmc] rtsx: Change default tx phase (Don Zickus) [1106204]
-- [mfd] rtsx: Copyright modifications (Don Zickus) [1106204]
-- [mfd] rtsx: Configure to enter a deeper power-saving mode in S3 (Don Zickus) [1106204]
-- [mfd] rtsx: Move some actions from rtsx_pci_init_hw to individual extra_init_hw (Don Zickus) [1106204]
-- [mfd] rtsx: Add shutdown callback in rtsx_pci_driver (Don Zickus) [1106204]
-- [mfd] rtsx: Read vendor setting from config space (Don Zickus) [1106204]
-- [mfd] rtsx: Add support for RTL8411B (Don Zickus) [1106204]
-
-* Mon Dec 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-212.el7]
-- [fs] fsnotify: next_i is freed during fsnotify_unmount_inodes (Eric Sandeen) [1124997]
-- [fs] btrfs: fix regression of btrfs device replace (Eric Sandeen) [1162983]
-- [fs] ext4: don't count external journal blocks as overhead (Eric Sandeen) [1164366]
-- [fs] Fix oops when creating symlinks on smb3 (Sachin Prabhu) [1161429]
-
-* Wed Nov 26 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-211.el7]
-- [net] sctp: fix memory leak in auth key management (Daniel Borkmann) [1160928]
-- [net] sctp: fix NULL pointer dereference in af->from_addr_param on malformed packet (Daniel Borkmann) [1154002] {CVE-2014-7841}
-- [net] tcp: zero retrans_stamp if all retrans were acked (Marcelo Leitner) [1162193]
-- [net] netfilter: log: protect nf_log_register against double registering (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: ulog: compat with new structure (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: nat expression must select CONFIG_NF_NAT (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: add explicit Kconfig for NETFILTER_XT_NAT (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: masquerading needs to be independent of x_tables in Kconfig (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: NFT_CHAIN_NAT_IPV* is independent of NFT_NAT (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: move NAT Kconfig switches out of the iptables scope (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: NETFILTER_XT_TARGET_LOG selects NF_LOG_* (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: fix several Kconfig problems in NF_LOG_* (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_masq: register/unregister notifiers on module init/exit (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: allow to filter from prerouting and postrouting (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_compat: remove incomplete 32/64 bits arch compat code (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: wait for call_rcu completion on module removal (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_reject: introduce icmp code abstraction for inet and bridge (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: store and dump set policy (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: export rule-set generation ID (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add NFTA_MASQ_UNSPEC to nft_masq_attributes (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add new nft_masq expression (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_nat: include a flag attribute (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: extend NFT_MSG_DELTABLE to support flushing the ruleset (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add helpers to schedule objects deletion (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add devgroup support in meta expresion (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: rename nf_table_delrule_by_chain() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add helper to unregister chain hooks (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: refactor rule deletion helper (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_chain_nat_ipv6: use generic IPv6 NAT code from core (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nat: move specific NAT IPv6 to core (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_rbtree: no need for spinlock from set destroy path (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_hash: no need for rcu in the hash set destroy path (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_nat: generalize IPv6 masquerading support for nf_tables (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_nat: generalize IPv4 masquerading support for nf_tables (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_chain_nat_ipv4: use generic IPv4 NAT code from core (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nat: move specific NAT IPv4 to core (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_meta: Add cpu attribute support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_meta: add pkttype support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix error return code (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: don't update chain with unset counters (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: uninitialize element key/data from the commit path (Marcelo Leitner) [1148041 1155088]
-- [net] nftables: Convert nft_hash to use generic rhashtable (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: Avoid duplicate call to nft_data_uninit() for same key (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: check for unset NFTA_SET_ELEM_LIST_ELEMENTS attribute (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: simplify set dump through netlink (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: bridge: add reject support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: 64bit stats need some extra synchronization (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: set NLM_F_DUMP_INTR if netlink dumping is stale (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: safe RCU iteration on list when dumping (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: skip transaction if no update flags in tables (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_log: fix coccinelle warnings (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_log: complete logging support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_log: request explicit logger when loading rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_nat: don't dump port information if unset (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: indicate family when dumping set elements (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_compat: call {target, match}->destroy() to cleanup entry (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix wrong type in transaction when replacing rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: decrement chain use counter when replacing rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use u32 for chain use counter (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use RCU-safe list insertion when replacing rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: atomic allocation in set notifications from rcu callback (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: allow to delete several objects from a batch (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_rbtree: introduce locking (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: release objects in reverse order in the abort path (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix wrong transaction ordering in set elements (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: defer all object release via rcu (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: remove skb and nlh from context structure (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: simplify nf_tables_*_notify (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use new transaction infrastructure to handle elements (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use new transaction infrastructure to handle table (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: pass context to nf_tables_updtable() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: disabling table hooks always succeeds (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use new transaction infrastructure to handle chain (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: refactor chain statistic routines (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use new transaction infrastructure to handle sets (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add message type to transactions (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: relocate commit and abort routines in the source file (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: generalise transaction infrastructure (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: deconstify table and chain in context structure (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix trace of matching non-terminal rule (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix missing return trace at the end of non-base chain (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix bogus rulenum after goto action (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix tracing of the goto action (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix goto action (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: reset rule number counter after jump and goto (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: add helper for adding nat extension (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: relax string validation of NFTA_CHAIN_TYPE (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: Add meta expression key for bridge interface name (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: Make meta expression core functions public (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: Stack expression type depending on their family (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix nft_cmp_fast failure on big endian for size < 4 (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: handle more than 8 * PAGE_SIZE set name allocations (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix wrong format in request_module() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: set names cannot be larger than 15 bytes (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add set_elem notifications (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_hash: use set global element counter instead of private one (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: implement proper set selection (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_ct: split nft_ct_init() into two functions for get/set (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_meta: split nft_meta_init() into two functions for get/set (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_ct: add missing ifdef for NFT_MARK setting (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: Add missing vmalloc.h include to nft_hash.c (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_nat: fix family validation (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_ct: remove family from struct nft_ct (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: restore notifications for anonymous set destruction (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: restore context for expression destructors (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: clean up nf_tables_trans_add() argument order (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_hash: bug fixes and resizing (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add optional user data area to rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: accept QUEUE/DROP verdict parameters (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add nft_dereference() macro (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_ct: labels get support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_nat: add full port randomization support (Marcelo Leitner) [1148041 1155088]
-- [net] nf_tables: Include appropriate header file in netfilter/nft_lookup.c (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: xt_log: add missing string format in nf_log_packet() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: log: nf_log_packet() as real unified interface (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: log: split family specific code to nf_log_{ip, ip6, common}.c files (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_log: move log buffering to core logging (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_log: use an array of loggers instead of list (Marcelo Leitner) [1148041 1155088]
-- [net] introduce netdev_alloc_pcpu_stats() for drivers (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nfnetlink: add rcu_dereference_protected() helpers (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: ip_set: rename nfnl_dereference()/nfnl_set() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: ipset: remove unused code (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: Remove extern from function prototypes (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: Remove extern from function prototypes (Marcelo Leitner) [1148041 1155088]
-- [net] openvswitch: remove dup comment in vport.h (Jiri Benc) [1110384]
-- [net] openvswitch: restore OVS_FLOW_CMD_NEW notifications (Jiri Benc) [1110384]
-- [net] openvswitch: Add recirc and hash action (Jiri Benc) [1110384]
-- [net] openvswitch: simplify sample action implementation (Jiri Benc) [1110384]
-- [net] openvswitch: Use tun_key only for egress tunnel path (Jiri Benc) [1110384]
-- [net] openvswitch: refactor ovs flow extract API (Jiri Benc) [1110384]
-- [net] openvswitch: Remove pkt_key from OVS_CB (Jiri Benc) [1110384]
-- [net] openvswitch: change the data type of error status to atomic_long_t (Jiri Benc) [1110384]
-- [net] genetlink: add function genl_has_listeners() (Jiri Benc) [1110384]
-- [net] vxlan: Call udp_flow_src_port (Jiri Benc) [1110384]
-- [net] udp: Add function to make source port for UDP tunnels (Jiri Benc) [1110384]
-- [net] openvswitch: distinguish between the dropped and consumed skb (Jiri Benc) [1110384]
-- [net] openvswitch: fix a memory leak (Jiri Benc) [1110384]
-- [net] openvswitch: Fix memory leak in ovs_vport_alloc() error path (Jiri Benc) [1110384]
-- [net] openvswitch: fix duplicate #include headers (Jiri Benc) [1110384]
-- [net] openvswitch: Remove unlikely() for WARN_ON() conditions (Jiri Benc) [1110384]
-- [net] openvswitch: Use IS_ERR_OR_NULL (Jiri Benc) [1110384]
-- [net] openvswitch: Add skb_clone NULL check for the sampling action (Jiri Benc) [1110384]
-- [net] openvswitch: Sample action without side effects (Jiri Benc) [1110384]
-- [net] openvswitch: Avoid memory corruption in queue_userspace_packet() (Jiri Benc) [1110384]
-- [net] openvswitch: Enable tunnel GSO for OVS bridge (Jiri Benc) [1110384]
-- [net] openvswitch: Allow each vport to have an array of 'port_id's (Jiri Benc) [1110384]
-- [net] openvswitch: make generic netlink group const (Jiri Benc) [1110384]
-- [net] openvswitch: introduce rtnl ops stub (Jiri Benc) [1110384]
-- [net] openvswitch: Use exact lookup for flow_get and flow_del (Jiri Benc) [1110384]
-- [net] openvswitch: Fix tracking of flags seen in TCP flows (Jiri Benc) [1110384]
-- [net] openvswitch: supply a dummy err_handler of gre_cisco_protocol to prevent kernel crash (Jiri Benc) [1110384]
-- [net] openvswitch: Fix a double free bug for the sample action (Jiri Benc) [1110384]
-- [net] openvswitch: Simplify genetlink code (Jiri Benc) [1110384]
-- [net] openvswitch: Minimize ovs_flow_cmd_new (Jiri Benc) [1110384]
-- [net] openvswitch: Split ovs_flow_cmd_new_or_set() (Jiri Benc) [1110384]
-- [net] openvswitch: Minimize ovs_flow_cmd_del critical section (Jiri Benc) [1110384]
-- [net] openvswitch: Reduce locking requirements (Jiri Benc) [1110384]
-- [net] openvswitch: Fix ovs_flow_stats_get/clear RCU dereference (Jiri Benc) [1110384]
-- [net] openvswitch: Fix typo (Jiri Benc) [1110384]
-- [net] openvswitch: Minimize dp and vport critical sections (Jiri Benc) [1110384]
-- [net] openvswitch: Make flow mask removal symmetric (Jiri Benc) [1110384]
-- [net] openvswitch: Build flow cmd netlink reply only if needed (Jiri Benc) [1110384]
-- [net] openvswitch: Clarify locking (Jiri Benc) [1110384]
-- [net] openvswitch: Avoid assigning a NULL pointer to flow actions (Jiri Benc) [1110384]
-- [net] openvswitch: Compact sw_flow_key (Jiri Benc) [1110384]
-- [net] net/openvswitch: Use with RCU_INIT_POINTER(x, NULL) in vport-gre.c (Jiri Benc) [1110384]
-- [net] openvswitch: Use TCP flags in the flow key for stats (Jiri Benc) [1110384]
-- [net] openvswitch: Fix output of SCTP mask (Jiri Benc) [1110384]
-- [net] openvswitch: Per NUMA node flow stats (Jiri Benc) [1110384]
-- [net] openvswitch: Remove 5-tuple optimization (Jiri Benc) [1110384]
-- [net] openvswitch: Use ether_addr_copy (Jiri Benc) [1110384]
-- [net] openvswitch: flow_netlink: Use pr_fmt to OVS_NLERR output (Jiri Benc) [1110384]
-- [net] openvswitch: Use net_ratelimit in OVS_NLERR (Jiri Benc) [1110384]
-- [net] openvswitch: Added (unsigned long long) cast in printf (Jiri Benc) [1110384]
-- [net] openvswitch: avoid cast-qual warning in vport_priv (Jiri Benc) [1110384]
-- [net] openvswitch: avoid warnings in vport_from_priv (Jiri Benc) [1110384]
-- [net] openvswitch: use const in some local vars and casts (Jiri Benc) [1110384]
-- [net] openvswitch: get rid of SET_ETHTOOL_OPS (Jiri Benc) [1110384]
-- [net] openvswitch: Correctly report flow used times for first 5 minutes after boot (Jiri Benc) [1110384]
-- [net] openvswitch: Fix race (Jiri Benc) [1110384]
-- [net] openvswitch: Read tcp flags only then the tranport header is present (Jiri Benc) [1110384]
-- [net] openvswitch: rename ->sync to ->syncp (Jiri Benc) [1110384]
-- [net] openvswitch: make functions local (Jiri Benc) [1110384]
-- [net] Add utility function to copy skb hash (Jiri Benc) [1110384]
-- [net] Change skb_get_rxhash to skb_get_hash (Jiri Benc) [1110384]
-- [net] netlink: Re-add locking to netlink_lookup() and seq walker (Jiri Benc) [1140661]
-- [lib] rhashtable: remove second linux/log2.h inclusion (Jiri Benc) [1140661]
-- [lib] rhashtable: allow user to set the minimum shifts of shrinking (Jiri Benc) [1140661]
-- [lib] rhashtable: fix lockdep splat in rhashtable_destroy() (Jiri Benc) [1140661]
-- [lib] rhashtable: Spelling s/compuate/compute/ (Jiri Benc) [1140661]
-- [net] netlink: Annotate RCU locking for seq_file walker (Jiri Benc) [1140661]
-- [net] netlink: hold nl_sock_hash_lock during diag dump (Jiri Benc) [1140661]
-- [net] netlink: fix lockdep splats (Jiri Benc) [1140661]
-- [net] netlink: Convert netlink_lookup() to use RCU protected hash table (Jiri Benc) [1140661]
-- [net] netlink: make compare exist all the time (Jiri Benc) [1140661]
-- [net] netlink: Add compare function for netlink_table (Jiri Benc) [1140661]
-- [lib] rhashtable: fix annotations for rht_for_each_entry_rcu() (Jiri Benc) [1140661]
-- [lib] rhashtable: unexport and make rht_obj() static (Jiri Benc) [1140661]
-- [lib] rhashtable: RCU annotations for next pointers (Jiri Benc) [1140661]
-- [lib] rhashtable: Resizable, Scalable, Concurrent Hash Table (Jiri Benc) [1140661]
-- [mm] add kvfree() (Jiri Benc) [1140661]
-- [net] netlink: Fix handling of error from netlink_dump() (Jiri Benc) [1140661]
-- [net] netlink: autosize skb lengthes (Jiri Benc) [1140661]
-- [net] netlink: Eliminate kmalloc in netlink dump operation (Jiri Benc) [1140661]
-
-* Mon Nov 24 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-210.el7]
-- [misc] kabi: revert two kabi additions that need updated ppc64 sums (Jarod Wilson)
-
-* Mon Nov 24 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-209.el7]
-- [fs] xfs: write failure beyond EOF truncates too much data (Brian Foster) [1032968]
-- [fs] xfs: xfs_vm_write_end truncates too much on failure (Brian Foster) [1032968]
-- [fs] xfs: use ->invalidatepage() length argument (Brian Foster) [1032968]
-- [fs] xfs: change invalidatepage prototype to accept length (Brian Foster) [1032968]
-- [fs] xfs: restore buffer_head unwritten bit on ioend cancel (Brian Foster) [1162953]
-- [fs] xfs: allow inode allocations in post-growfs disk space (Eric Sandeen) [1115201]
-- [scsi] pm8001: Update nvmd response data to request buffer (Rich Bono) [1110943]
-- [scsi] pm8001: fix pm8001_store_update_fw (Rich Bono) [1110943]
-- [scsi] pm8001: Fix erratic calculation in update_flash (Rich Bono) [1110943]
-- [scsi] pm8001: Fix invalid return when request_irq() failed (Rich Bono) [1110943]
-- [scsi] pm8001: fix a memory leak in nvmd_resp (Rich Bono) [1110943]
-- [scsi] pm8001: fix update_flash (Rich Bono) [1110943]
-- [scsi] pm8001: fix a memory leak in flash_update (Rich Bono) [1110943]
-- [scsi] pm8001: Cleaning up uninitialized variables (Rich Bono) [1110943]
-- [scsi] pm8001: Fix to remove null pointer checks that could never happen (Rich Bono) [1110943]
-- [scsi] pm8001: more fixes to honor return value (Rich Bono) [1110943]
-- [scsi] pm8001: add a new spinlock to protect the CCB (Rich Bono) [1110943]
-- [scsi] pm8001: honor return value (Rich Bono) [1110943]
-- [scsi] pm8001: clean bitmap management functions (Rich Bono) [1110943]
-- [scsi] pm8001: Fix hibernation issue (Rich Bono) [1110943]
-- [scsi] pm8001: Fix potential null pointer dereference and memory leak (Rich Bono) [1110943]
-- [scsi] pm80xx: Fix missing NULL pointer checks and memory leaks (Rich Bono) [1110943]
-- [scsi] drivers/scsi/pm8001/pm8001_ctl.c: avoid world-writable sysfs files (Rich Bono) [1110943]
-- [scsi] pm80xx: fix problem of pm8001_work_fn reseting incorrect phy device (Rich Bono) [1110943]
-- [scsi] pm80xx: Fix missing NULL pointer checks and memory leaks (Rich Bono) [1110943]
-- [scsi] pm80xx: Enable BAR shift to avoid BIOS conflict with MPI space for ATTO pm8001 based HBAs (Rich Bono) [1110943]
-- [scsi] pm80xx: Read saved WWN from NVMD for ATTO pm8001 based HBAs (Rich Bono) [1110943]
-- [scsi] pm80xx: Fixed return value issue (Rich Bono) [1110943]
-- [md] dm-thin: fix pool_io_hints to avoid looking at max_hw_sectors (Mike Snitzer) [1156164]
-- [kernel] audit: keep inode pinned (Paul Moore) [1162261]
-- [block] nvme: cleanup nvme_split_flush_data() (David Milburn) [1161766]
-- [scsi] ibmvfc: fix little endian issues (Steve Best) [1159781]
-- [scsi] ibmvfc: Fix for offlining devices during error recovery (Steve Best) [1159781]
-
-* Sat Nov 22 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-208.el7]
-- [scsi] cxgb4i: send abort_rpl correctly (Sai Vemuri) [1163467]
-- [Documentation] cxgbi: add maintainer for cxgb3i/cxgb4i (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: FL Starvation Threshold needs to be larger than the SGE's Egress Congestion Threshold (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: For T5 use Packing and Padding Boundaries for SGE DMA transfers (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: Move fl_starv_thres into adapter->sge data structure (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: Replace repetitive pci device ID's with right ones (Sai Vemuri) [1163467]
-- [infinband] cxgb4: Make c4iw_wr_log_size_order static (Sai Vemuri) [1163467]
-- [infinband] cxgb4: Add missing neigh_release in find_route (Sai Vemuri) [1163467]
-- [infinband] cxgb4: Fix ntuple calculation for ipv6 and remove duplicate line (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Fix FW flash logic using ethtool (Sai Vemuri) [1163467]
-- [infiniband] cxgb4: Take IPv6 into account for best_mtu and set_emss (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Wait for device to get ready before reading any register (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: Add 40G support for cxgb4vf driver (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Updated the LSO transfer length in CPL_TX_PKT_LSO for T5 (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Add support for adaptive rx (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Change default Interrupt Holdoff Packet Count Threshold (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Add Devicde ID for two more adapter (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: Remove superfluous "idx" parameter of CH_DEVICE() macro (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Use BAR2 Going To Sleep (GTS) for T5 and later (Sai Vemuri) [1163467]
-- [scsi] cxgbi: support ipv6 address host_param (Sai Vemuri) [1153834]
-- [scsi] cxgb4i: Fix -Wmaybe-uninitialized warning (Sai Vemuri) [1153834]
-- [scsi] cxgb4i: Remove duplicate call to dst_neigh_lookup() (Sai Vemuri) [1153834]
-- [scsi] cxgb4i: Fix -Wunused-function warning (Sai Vemuri) [1153834]
-- [ethernet] cxgb4: Fix build failure in cxgb4 when ipv6 is disabled/not in-built (Sai Vemuri) [1153834]
-- [scsi] cxgb4i: Remove duplicated CLIP handling code (Sai Vemuri) [1153834]
-- [ethernet] be2net: fix alignment on line wrap (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove multiple assignments on a single line (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove space after typecasts (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove unnecessary blank lines after an open brace (Ivan Vecera) [1165755]
-- [ethernet] be2net: insert a blank line after function/struct//enum definitions (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove multiple blank lines (Ivan Vecera) [1165755]
-- [ethernet] be2net: add blank line after declarations (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove return statements for void functions (Ivan Vecera) [1165755]
-- [ethernet] be2net: add speed reporting for 20G-KR interface (Ivan Vecera) [1165755]
-- [ethernet] be2net: add speed reporting for 40G/KR interface (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix sparse warnings in be_cmd_req_port_type{} (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix a sparse warning in be_cmd_modify_eqd() (Ivan Vecera) [1165755]
-- [ethernet] be2net: enable PCIe error reporting on VFs too (Ivan Vecera) [1165755]
-- [ethernet] be2net: send a max of 8 EQs to be_cmd_modify_eqd() on Lancer (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix port-type reporting in get_settings (Ivan Vecera) [1165755]
-- [ethernet] be2net: add ethtool "-m" option support (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix RX fragment posting for jumbo frames (Ivan Vecera) [1165755]
-- [ethernet] be2net: replace strcpy with strlcpy (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix some log messages (Ivan Vecera) [1165755]
-- [ethernet] bna: fix skb->truesize underestimation (Ivan Vecera) [1165759]
-- [ethernet] bna: allow transmit tagged frames (Ivan Vecera) [1165759]
-- [ethernet] bna: use container_of to resolve bufdesc_ex from bufdesc (Ivan Vecera) [1165759]
-- [ethernet] r8169: add support for RTL8168EP (Ivan Vecera) [1165764]
-- [ethernet] r8169: add support for Byte Queue Limits (Ivan Vecera) [1165764]
-- [ethernet] r8169: call "rtl8168_driver_start" "rtl8168_driver_stop" only when hardware dash function is enabled (Ivan Vecera) [1165764]
-- [ethernet] r8169: modify the behavior of function "rtl8168_oob_notify" (Ivan Vecera) [1165764]
-- [ethernet] r8169: change the name of function "r8168dp_check_dash" to "r8168_check_dash" (Ivan Vecera) [1165764]
-- [ethernet] r8169: change the name of function"rtl_w1w0_eri" (Ivan Vecera) [1165764]
-- [ethernet] r8169: for function "rtl_w1w0_phy" change its name and behavior (Ivan Vecera) [1165764]
-- [ethernet] r8169: add more chips to support magic packet v2 (Ivan Vecera) [1165764]
-- [ethernet] r8169: add support more chips to get mac address from backup mac address register (Ivan Vecera) [1165764]
-- [ethernet] r8169: add disable/enable RTL8411B pll function (Ivan Vecera) [1165764]
-- [ethernet] r8169: add disable/enable RTL8168G pll function (Ivan Vecera) [1165764]
-- [ethernet] r8169: change uppercase number to lowercase number (Ivan Vecera) [1165764]
-- [ethernet] r8169: fix an if condition (Ivan Vecera) [1165764]
-- [ethernet] r8169: adjust __rtl8169_set_features (Ivan Vecera) [1165764]
-- [ethernet] r8169: fix setting rx vlan (Ivan Vecera) [1165764]
-- [ethernet] r8169: fix the default setting of rx vlan (Ivan Vecera) [1165764]
-
-* Sat Nov 22 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-207.el7]
-- [powerpc] use device_online/offline() instead of cpu_up/down() (Gustavo Duarte) [1157737]
-- [ethernet] i40e: disable FCoE (Stefan Assmann) [1165175]
-- [cpufreq] intel_pstate: Add CPUID for BDW-H CPU (Steve Best) [1164379]
-- [mm] do not overwrite reserved pages counter at show_mem() (Rafael Aquini) [1125433]
-- [alsa] Revert: Kconfig: rename HAS_IOPORT to HAS_IOPORT_MAP (Jarod Wilson) [1112200]
-- [ethernet] enic: Do not call napi_disable when preemption is disabled (Stefan Assmann) [1145019]
-- [ethernet] enic: fix possible deadlock in enic_stop/ enic_rfs_flw_tbl_free (Stefan Assmann) [1145019]
-- [x86] uv_bau: Avoid NULL pointer reference in ptc_seq_show (Frank Ramsay) [1161183]
-- [x86] uv_bau: Increase maximum CPUs per socket/hub (Frank Ramsay) [1161183]
-- [mm] vmscan: do not throttle based on pfmemalloc reserves if node has no ZONE_NORMAL (Gustavo Duarte) [1148925]
-- [char] hwrng/pseries: port to new read API and fix stack corruption (Gustavo Duarte) [1163659]
-- [md] Revert: dm-cache: add call to mark_tech_preview (Mike Snitzer) [1159001]
-- [md] dm-cache: emit a warning message if there are a lot of cache blocks (Mike Snitzer) [1159001]
-- [md] dm-cache: improve discard support (Mike Snitzer) [1159001]
-- [md] dm-cache: revert "prevent corruption caused by discard_block_size > cache_block_size" (Mike Snitzer) [1159001]
-- [md] dm-cache: revert "remove remainder of distinct discard block size" (Mike Snitzer) [1159001]
-- [md] dm-bio-prison: introduce support for locking ranges of blocks (Mike Snitzer) [1159001]
-- [md] dm-btree: fix a recursion depth bug in btree walking code (Mike Snitzer) [1080894]
-- [md] dm-cache-policy-mq: simplify ability to promote sequential IO to the cache (Mike Snitzer) [1159001]
-- [md] dm-cache-policy-mq: tweak algorithm that decides when to promote a block (Mike Snitzer) [1159001]
-- [security] selinux: fix inode security list corruption (Paul Moore) [1152274]
-
-* Thu Nov 20 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-206.el7]
-- [x86] quirks: Print the Intel graphics stolen memory range (Rob Clark) [1154053]
-- [x86] quirks: Add Intel graphics stolen memory quirk for gen2 platforms (Rob Clark) [1154053]
-- [x86] quirks: Add vfunc for Intel graphics stolen memory base address (Rob Clark) [1154053]
-- [x86] quirks: use gen6 stolen detection for VLV (Rob Clark) [1154053]
-- [x86] quirks: support GMS and GGMS changes on i915/bdw (Rob Clark) [1154053]
-- [x86] quirks: add early quirk for reserving Intel graphics stolen memory v5 (Rob Clark) [1154053]
-- [net] vmxnet3: fix netpoll race condition (Neil Horman) [1158001]
-- [virt] virtio_balloon: update_balloon_size() - update correct field (Luiz Capitulino) [1163567]
-- [firmware] memmap: don't create memmap sysfs of same firmware_map_entry (Takahiro MUNEDA) [1160173]
-- [mm] memory-hotplug: clear pgdat which is allocated by bootmem in try_offline_node() (Larry Woodman) [1156393]
-- [kernel] add panic_on_warn (Prarit Bhargava) [1163852]
-- [virt] hyperv: Fix the total_data_buflen in send path (Jason Wang) [1156305]
-- [virt] hyperv: Add handling of IP header with option field in netvsc_set_hash() (Jason Wang) [1156305]
-- [virt] hyperv: Fix a bug in netvsc_start_xmit() (Jason Wang) [1156305]
-- [virt] hyperv: Fix a bug in netvsc_send() (Jason Wang) [1156305]
-- [powerpc] kexec: adjust crashkernel reservation for 2GB-4GB systems (Gustavo Duarte) [1074924]
-- [virt] kvm/ioapic: conditionally delay irq delivery duringeoi broadcast (John Snow) [921526]
-- [fs] file_table: get rid of s_files and files_lock (Gustavo Duarte) [1112805]
-- [fs] super: uninline destroy_super(), consolidate alloc_super() (Gustavo Duarte) [1112805]
-- [ethernet] mlx4: Advertize encapsulation offloads features only when VXLAN tunnel is set (Florian Westphal) [1097478]
-- [ethernet] mlx4: Avoid leaking steering rules on flow creation error flow (Florian Westphal) [1097478]
-- [ethernet] mlx4: Don't attempt to TX offload the outer UDP checksum for VXLAN (Florian Westphal) [1097478]
-- [scsi] bnx2fc: fix tgt spinlock locking (Maurizio Lombardi) [1165169]
-- [scsi] TUR path is down after adapter gets reset with multipath (Ewan Milne) [1153738]
-- [scsi] call device handler for failed TUR command (Ewan Milne) [1153738]
-
-* Sat Nov 15 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-205.el7]
-- [mm] shmem: fix splicing from a hole while it's punched (Denys Vlasenko) [1118245] {CVE-2014-4171}
-- [mm] shmem: fix faulting into a hole, not taking i_mutex (Denys Vlasenko) [1118245] {CVE-2014-4171}
-- [mm] shmem: fix faulting into a hole while it's punched (Denys Vlasenko) [1118245] {CVE-2014-4171}
-- [virt] kvm: detect LVTT changes under APICv (Radim Krcmar) [1151174]
-- [virt] kvm: detect SPIV changes under APICv (Radim Krcmar) [1151174]
-- [virt] kvm: recalculate_apic_map after enabling apic (Radim Krcmar) [1151174]
-- [virt] kvm: trace kvm_ple_window grow/shrink (Radim Krcmar) [1163296]
-- [virt] kvm/vmx: dynamise PLE window (Radim Krcmar) [1163296]
-- [virt] kvm/vmx: make PLE window per-VCPU (Radim Krcmar) [1163296]
-- [virt] kvm: introduce sched_in to kvm_x86_ops (Radim Krcmar) [1163296]
-- [virt] kvm: add kvm_arch_sched_in (Radim Krcmar) [1163296]
-- [kernel] uprobes: Don't assume that arch_uprobe->insn/ixol is u8[MAX_UINSN_BYTES] (Steve Best) [1159365]
-- [drm] qxl: don't create too large primary surface (Dave Airlie) [1158233]
-- [powerpc] pseries: Quieten ibm, pcie-link-speed-stats warning (Steve Best) [1162287]
-- [md] dm-thin: fix potential for infinite loop in pool_io_hints (Mike Snitzer) [1156164]
-- [virt] hyperv/vmbus: Increase the limit on the number of pfns we can handle (Jason Wang) [1160130]
-- [virt] kvm: update masterclock values on TSC writes (Marcelo Tosatti) [1158039]
-- [virt] kvm: emulate MOVNTDQ (Paolo Bonzini) [1117542]
-- [crypto] af_alg: properly label AF_ALG socket (Ondrej Kozina) [1161148]
-- [powerpc] vphn: NUMA node code expects big-endian (Steve Best) [1154673]
-
-* Fri Nov 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-204.el7]
-- [net] ip6_gre: Return an error when adding an existing tunnel (Alexander Duyck) [1151886 1152368]
-- [net] ip6_tunnel: Return an error when adding an existing tunnel (Alexander Duyck) [1151886 1152368]
-- [net] ip_tunnel: Don't allow to add the same tunnel multiple times (Alexander Duyck) [1151886 1152368]
-- [net] gre: Use inner mac length when computing tunnel length (Alexander Duyck) [1151886 1152368]
-- [net] gre: enable offloads for GRE (Alexander Duyck) [1151886 1152368]
-- [net] ipv4: fix a potential use after free in gre_offload.c (Alexander Duyck) [1151886 1152368]
-- [net] ipv4: fix a potential use after free in ip_tunnel_core.c (Alexander Duyck) [1151886 1152368]
-- [net] gro: fix aggregation for skb using frag_list (Alexander Duyck) [1154239]
-- [net] gro: make sure skb->cb[] initial content has not to be zero (Alexander Duyck) [1154239]
-- [net] bridge: notify user space after fdb update (Alexander Duyck) [1109605]
-- [net] bridge: Fix the way to find old local fdb entries in br_fdb_changeaddr (Alexander Duyck) [1109605]
-- [net] handle encapsulation offloads when computing segment lengths (Jiri Benc) [1144571]
-- [net] gso: make skb_gso_segment error handling more robust (Jiri Benc) [1144571]
-- [net] gso: use feature flag argument in all protocol gso handlers (Jiri Benc) [1144571]
-- [net] udp_offload: Use IS_ERR_OR_NULL (Jiri Benc) [1144571]
-- [net] ipv4: Use IS_ERR_OR_NULL (Jiri Benc) [1144571]
-
-* Wed Nov 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-203.el7]
-- [fs] GFS2: If we use up our block reservation, request more next time (Robert S Peterson) [1142238]
-- [fs] GFS2: Only increase rs_sizehint (Robert S Peterson) [1142238]
-- [fs] GFS2: Set of distributed preferences for rgrps (Robert S Peterson) [1142238]
-- [fs] autofs: fix symlinks aren't checked for expiry (Ian Kent) [1116182]
-- [fs] GFS2: fix regression in dir_double_exhash (Robert S Peterson) [1160229]
-- [fs] gfs2_atomic_open(): skip lookups on hashed dentry (Robert S Peterson) [1158150]
-- [fs] splice: perform generic write checks (Eric Sandeen) [1155907]
-- [fs] fs: seq_file: fallback to vmalloc allocation (Ian Kent) [1095623]
-- [fs] fs: /proc/stat: convert to single_open_size() (Ian Kent) [1095623]
-- [fs] fs: seq_file: always clear m->count when we free m->buf (Ian Kent) [1095623]
-
-* Wed Nov 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-202.el7]
-- [ethernet] mlx4: Use PTYS register to set ethtool settings (Speed) (Amir Vadai) [1060221]
-- [ethernet] mlx4: Use PTYS register to query ethtool settings (Amir Vadai) [1060221]
-- [ethernet] mlx4: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Amir Vadai) [1060221]
-- [ethernet] mlx4: Add 100M, 20G, 56G speeds ethtool reporting support (Amir Vadai) [1060221]
-- [ethernet] mlx4: Add ethernet backplane autoneg device capability (Amir Vadai) [1060221]
-- [ethernet] mlx4: Introduce ACCESS_REG CMD and eth_prot_ctrl dev cap (Amir Vadai) [1060221]
-- [ethernet] mlx4: Cable info, get_module_info/eeprom ethtool support (Amir Vadai) [1060221]
-- [ethernet] mlx4: Introduce mlx4_get_module_info for cable module info reading (Amir Vadai) [1060221]
-- [ethernet] mlx4: Enable CQE/EQE stride support (Amir Vadai) [1060221]
-- [virt] kvm/vmx: defer load of APIC access page address during reset (Paolo Bonzini) [1140974]
-- [virt] kvm: do not handle APIC access page if in-kernel irqchip is not in use (Paolo Bonzini) [1140974]
-- [virt] kvm: Unpin and remove kvm_arch->apic_access_page (Paolo Bonzini) [1140974]
-- [virt] kvm/vmx: Implement set_apic_access_page_addr (Paolo Bonzini) [1140974]
-- [virt] kvm: Add request bit to reload APIC access page address (Paolo Bonzini) [1140974]
-- [virt] kvm: Add arch specific mmu notifier for page invalidation (Paolo Bonzini) [1140974]
-- [virt] kvm: Rename make_all_cpus_request() to kvm_make_all_cpus_request() and make it non-static (Paolo Bonzini) [1140974]
-- [virt] kvm: Remove ept_identity_pagetable from struct kvm_arch (Paolo Bonzini) [1140974]
-- [virt] kvm: Use APIC_DEFAULT_PHYS_BASE macro as the apic access page address (Paolo Bonzini) [1140974]
-- [drm] vmwgfx: respect 'nomodeset' (Rob Clark) [1101381]
-- [s390] qeth: don't query for info if hardware not ready (Hendrik Brueckner) [1147573]
-- [block] Fix dev_t minor allocation lifetime (Jeff Moyer) [1139898]
-- [md] dm-crypt: fix access beyond the end of allocated space (Mike Snitzer) [1135066]
-- [fs] isofs: unbound recursion when processing relocated directories (Jacob Tanenbaum) [1142271] {CVE-2014-5471 CVE-2014-5472}
-- [ethernet] be2net: use v1 of SET_FLOW_CONTROL command (Ivan Vecera) [1087128]
-- [acpi] return 1 after successfully install cmos_rtc space handler (Amos Kong) [1159465]
-- [x86] hyperv: Bypass the timer_irq_works() check (Jason Wang) [1058105]
-- [mm] hugetlb: initialize PG_reserved for tail pages of gigantic compound pages (Luiz Capitulino) [1158506]
-- [kernel] cpuset: PF_SPREAD_PAGE and PF_SPREAD_SLAB should be atomic flags (Aaron Tomlin) [1160360]
-- [infiniband] qib: Correct reference counting in debugfs qp_stats (Rui Wang) [1150001]
-- [x86] uv: Check for alloc_cpumask_var() failures properly in uv_nmi_setup() (George Beshers) [1155754]
-- [powerpc] fadump: Fix endianess issues in firmware assisted dump handling (Steve Best) [1159773]
-
-* Mon Nov 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-201.el7]
-- [scsi] ipr: wait for aborted command responses (Gustavo Duarte) [1156530]
-- [ethernet] mlx4: Protect port type setting by mutex (Amir Vadai) [1095345]
-- [acpi] pm: Only set power states of devices that are power manageable (Amos Kong) [1142683]
-- [x86] setup: Mark Intel Haswell ULT as supported (Prarit Bhargava) [1159006]
-- [kernel] sched: Fix unreleased llc_shared_mask bit during CPU hotplug (Takahiro MUNEDA) [1116294]
-- [mm] do not walk all of system memory during show_mem (Johannes Weiner) [1125433]
-- [mm] remove noisy remainder of the scan_unevictable interface (Johannes Weiner) [1111215]
-- [pci] Rename sysfs 'enabled' file back to 'enable' (Myron Stowe) [1159655]
-- [kernel] sched/fair: Care divide error in update_task_scan_period() (Motohiro Kosaki) [1140979]
-- [powerpc] numa: ensure per-cpu NUMA mappings are correct on topology update (Gustavo Duarte) [1150097]
-- [powerpc] numa: use cached value of update->cpu in update_cpu_topology (Gustavo Duarte) [1150097]
-- [powerpc] numa: Add ability to disable and debug topology updates (Gustavo Duarte) [1150097]
-- [powerpc] numa: check error return from proc_create (Gustavo Duarte) [1150097]
-- [powerpc] some changes in numa_setup_cpu() (Gustavo Duarte) [1150097]
-- [powerpc] Only set numa node information for present cpus at boottime (Gustavo Duarte) [1150097]
-- [powerpc] Fix warning reported by verify_cpu_node_mapping() (Gustavo Duarte) [1150097]
-- [powerpc] reorder per-cpu NUMA information's initialization (Gustavo Duarte) [1150097]
-- [powerpc] pseries: Make CPU hotplug path endian safe (Steve Best) [1159579]
-- [powerpc] pseries: Fix endian issues in cpu hot-removal (Steve Best) [1159579]
-- [powerpc] pseries: Fix endian issues in onlining cpu threads (Steve Best) [1159579]
-- [x86] smpboot: Fix up typo in topology detection (Prarit Bhargava) [1156655]
-- [x86] smpboot: Add new topology for multi-NUMA-node CPUs (Prarit Bhargava) [1158269]
-- [kernel] sched: Rework sched_domain topology definition (Prarit Bhargava) [1158269]
-- [usb] hub: take hub->hdev reference when processing from eventlist (Don Zickus) [1151508]
-- [usb] ehci: unlink QHs even after the controller has stopped (Don Zickus) [1151491]
-- [tools] testing/selftests/powerpc: Correct DSCR during TM context switch (Gustavo Duarte) [1134511]
-- [tools] testing/selftests: Add infrastructure for powerpc selftests (Gustavo Duarte) [1134511]
-- [scsi] ibmvscsi: Abort init sequence during error recovery (Gustavo Duarte) [1105496]
-- [scsi] ibmvscsi: Add memory barriers for send / receive (Gustavo Duarte) [1105496]
-- [x86] fpu: __restore_xstate_sig()->math_state_restore() needs preempt_disable() (Oleg Nesterov) [1121784]
-- [x86] fpu: shift drop_init_fpu() from save_xstate_sig() to handle_signal() (Oleg Nesterov) [1121784]
-
-* Fri Nov 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-200.el7]
-- [fs] ext4: fix wrong assert in ext4_mb_normalize_request() (Lukas Czerner) [1146046]
-- [mm] Remove false WARN_ON from pagecache_isize_extended() (Lukas Czerner) [1156096]
-- [fs] ext4: check s_chksum_driver when looking for bg csum presence (Lukas Czerner) [1156096]
-- [fs] ext4: move error report out of atomic context in ext4_init_block_bitmap() (Lukas Czerner) [1156096]
-- [fs] ext4: Replace open coded mdata csum feature to helper function (Lukas Czerner) [1156096]
-- [fs] ext4: fix reservation overflow in ext4_da_write_begin (Lukas Czerner) [1156096]
-- [fs] ext4: add ext4_iget_normal() which is to be used for dir tree lookups (Lukas Czerner) [1156096]
-- [fs] ext4: don't orphan or truncate the boot loader inode (Lukas Czerner) [1156096]
-- [fs] ext4: grab missed write_count for EXT4_IOC_SWAP_BOOT (Lukas Czerner) [1156096]
-- [fs] ext4: get rid of code duplication (Lukas Czerner) [1156096]
-- [fs] ext4: fix over-defensive complaint after journal abort (Lukas Czerner) [1156096]
-- [fs] ext4: fix return value of ext4_do_update_inode (Lukas Czerner) [1156096]
-- [fs] ext4: fix mmap data corruption when blocksize < pagesize (Lukas Czerner) [1156096]
-- [fs] vfs: fix data corruption when blocksize < pagesize for mmaped data (Lukas Czerner) [1156096]
-- [fs] ext4: don't check quota format when there are no quota files (Lukas Czerner) [1156096]
-- [fs] jbd2: avoid pointless scanning of checkpoint lists (Lukas Czerner) [1156096]
-- [fs] ext4: explicitly inform user about orphan list cleanup (Lukas Czerner) [1156096]
-- [fs] jbd2: jbd2_log_wait_for_space improve error detetcion (Lukas Czerner) [1156096]
-- [fs] jbd2: free bh when descriptor block checksum fails (Lukas Czerner) [1156096]
-- [fs] ext4: check EA value offset when loading (Lukas Czerner) [1156096]
-- [fs] ext4: don't keep using page if inline conversion fails (Lukas Czerner) [1156096]
-- [fs] ext4: validate external journal superblock checksum (Lukas Czerner) [1156096]
-- [fs] jbd2: fix journal checksum feature flag handling (Lukas Czerner) [1156096]
-- [fs] ext4: provide separate operations for sysfs feature files (Lukas Czerner) [1156096]
-- [fs] ext4: add sysfs entry showing whether the fs contains errors (Lukas Czerner) [1156096]
-- [fs] ext4: renumber EXT4_EX_* flags to avoid flag aliasing problems (Lukas Czerner) [1156096]
-- [fs] ext4: fix comments about get_blocks (Lukas Czerner) [1156096]
-- [fs] ext4: fix accidental flag aliasing in ext4_map_blocks flags (Lukas Czerner) [1156096]
-- [fs] ext4: fix ZERO_RANGE bug hidden by flag aliasing (Lukas Czerner) [1156096]
-- [fs] ext4: use ext4_update_i_disksize instead of opencoded ones (Lukas Czerner) [1156096]
-- [fs] ext4: remove a duplicate call in ext4_init_new_dir() (Lukas Czerner) [1156096]
-- [fs] ext4: add missing BUFFER_TRACE before ext4_journal_get_write_access (Lukas Czerner) [1156096]
-- [fs] ext4: check inline directory before converting (Lukas Czerner) [1156096]
-- [fs] ext4: fix incorrect locking in move_extent_per_page (Lukas Czerner) [1156096]
-- [fs] ext4: use correct depth value (Lukas Czerner) [1156096]
-- [fs] ext4: add i_data_sem sanity check (Lukas Czerner) [1156096]
-- [fs] ext4: fix wrong size computation in ext4_mb_normalize_request() (Lukas Czerner) [1156096]
-- [fs] ext4: make ext4_has_inline_data() as a inline function (Lukas Czerner) [1156096]
-- [fs] ext4: remove readpage() check in ext4_mmap_file() (Lukas Czerner) [1156096]
-- [fs] ext4: remove metadata reservation checks (Lukas Czerner) [1156096]
-- [fs] ext4: rearrange initialization to fix EXT4FS_DEBUG (Lukas Czerner) [1156096]
-- [fs] ext4: fix potential null pointer dereference in ext4_free_inode (Lukas Czerner) [1156096]
-- [fs] ext4: decrement free clusters/inodes counters when block group declared bad (Lukas Czerner) [1156096]
-- [fs] ext4: handle symlink properly with inline_data (Lukas Czerner) [1156096]
-- [fs] ext4: reduce contention on s_orphan_lock (Lukas Czerner) [1156096]
-- [fs] ext4: use sbi in ext4_orphan_[add|del]() (Lukas Czerner) [1156096]
-- [fs] ext4: remove unnecessary double parentheses (Lukas Czerner) [1156096]
-- [fs] ext4: do not destroy ext4_groupinfo_caches if ext4_mb_init() fails (Lukas Czerner) [1156096]
-- [fs] ext4: make local functions static (Lukas Czerner) [1156096]
-- [fs] ext4: fix block bitmap validation when bigalloc, ^flex_bg (Lukas Czerner) [1156096]
-- [fs] ext4: fix block bitmap initialization under sparse_super2 (Lukas Czerner) [1156096]
-- [fs] ext4: find the group descriptors on a 1k-block bigalloc, meta_bg filesystem (Lukas Czerner) [1156096]
-- [fs] ext4: avoid unneeded lookup when xattr name is invalid (Lukas Czerner) [1156096]
-- [fs] ext4: remove obsoleted check (Lukas Czerner) [1156096]
-- [fs] ext4: add a new spinlock i_raw_lock to protect the ext4's raw inode (Lukas Czerner) [1156096]
-- [fs] ext4: revert Disable punch hole on non-extent mapped files (Lukas Czerner) [1150178]
-- [fs] ext4: fix transaction issues for ext4_fallocate and ext_zero_range (Lukas Czerner) [1150171]
-- [fs] ext4: move i_size, i_disksize update routines to helper function (Lukas Czerner) [1150171]
-- [fs] ext4: fix incorect journal credits reservation in ext4_zero_range (Lukas Czerner) [1150171]
-- [fs] ext4: fix COLLAPSE RANGE test for bigalloc file systems (Lukas Czerner) [1150171]
-- [fs] ext4: fix punch hole on files with indirect mapping (Lukas Czerner) [1150171]
-- [fs] ext4: Fix block zeroing when punching holes in indirect block files (Lukas Czerner) [1150171]
-- [fs] ext4: fix ZERO_RANGE test failure in data journalling (Lukas Czerner) [1150171]
-- [fs] ext4: use EXT_MAX_BLOCKS in ext4_es_can_be_merged() (Lukas Czerner) [1150171]
-- [fs] ext4: rename uninitialized extents to unwritten (Lukas Czerner) [1150171]
-- [fs] ext4: disable COLLAPSE_RANGE for bigalloc (Lukas Czerner) [1150171]
-- [fs] ext4: fix COLLAPSE_RANGE failure with 1KB block size (Lukas Czerner) [1150171]
-- [fs] ext4: use EINVAL if not a regular file in ext4_collapse_range() (Lukas Czerner) [1150171]
-- [fs] ext4: enforce we are operating on a regular file in ext4_zero_range() (Lukas Czerner) [1150171]
-- [fs] ext4: fix extent merging in ext4_ext_shift_path_extents() (Lukas Czerner) [1150171]
-- [fs] ext4: discard preallocations after removing space (Lukas Czerner) [1150171]
-- [fs] ext4: no need to truncate pagecache twice in collapse range (Lukas Czerner) [1150171]
-- [fs] ext4: fix removing status extents in ext4_collapse_range() (Lukas Czerner) [1150171]
-- [fs] ext4: use filemap_write_and_wait_range() correctly in collapse range (Lukas Czerner) [1150171]
-- [fs] ext4: use truncate_pagecache() in collapse range (Lukas Czerner) [1150171]
-- [fs] ext4: always check ext4_ext_find_extent result (Lukas Czerner) [1150171]
-- [fs] ext4: COLLAPSE_RANGE only works on extent-based files (Lukas Czerner) [1150171]
-- [fs] ext4: fix byte order problems introduced by the COLLAPSE_RANGE patches (Lukas Czerner) [1150171]
-- [fs] ext4: disallow all fallocate operation on active swapfile (Lukas Czerner) [1150171]
-- [fs] ext4: move falloc collapse range check into the filesystem methods (Lukas Czerner) [1150171]
-- [fs] ext4: fix COLLAPSE_RANGE test failure in data journalling mode (Lukas Czerner) [1150171]
-- [fs] ext4: remove unneeded test of ret variable (Lukas Czerner) [1150171]
-- [fs] ext4: Introduce FALLOC_FL_ZERO_RANGE flag for fallocate (Lukas Czerner) [1150171]
-- [fs] ext4: Introduce FALLOC_FL_ZERO_RANGE flag for fallocate (Lukas Czerner) [1150171]
-- [fs] ext4: refactor ext4_fallocate code (Lukas Czerner) [1150171]
-- [fs] ext4: Update inode i_size after the preallocation (Lukas Czerner) [1150171]
-- [fs] ext4: Add new flag(FALLOC_FL_COLLAPSE_RANGE) for fallocate (Lukas Czerner) [1150171]
-- [fs] ext4: Add support FALLOC_FL_COLLAPSE_RANGE for fallocate (Lukas Czerner) [1150171]
-
-* Wed Nov 05 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-199.el7]
-- [fs] quota: remove dqptr_sem (Lukas Czerner) [1053111]
-- [fs] quota: simplify remove_inode_dquot_ref() (Lukas Czerner) [1053111]
-- [fs] quota: avoid unnecessary dqget()/dqput() calls (Lukas Czerner) [1053111]
-- [fs] quota: protect Q_GETFMT by dqonoff_mutex (Lukas Czerner) [1053111]
-- [fs] xfs: add a few more verifier tests (Eric Sandeen) [1059330 1061656]
-- [fs] pipe: skip file_update_time on frozen fs (Eric Sandeen) [1107499]
-- [fs] xfs: don't sleep in xlog_cil_force_lsn on shutdown (Eric Sandeen) [1088240]
-- [fs] buffer: increase the buffer-head per-CPU LRU size (Zach Brown) [1053108]
-- [fs] fs: check bh blocknr earlier when searching lru (Zach Brown) [1053108]
-- [fs] truncate: drop 'oldsize' truncate_pagecache() parameter (Lukas Czerner) [1150139]
-- [fs] ext4: avoid trying to kfree an ERR_PTR pointer (Lukas Czerner) [1150139]
-- [fs] ext4: fix same-dir rename when inline data directory overflows (Lukas Czerner) [1150139]
-- [fs] jbd2: fix descriptor block size handling errors with journal_csum (Lukas Czerner) [1150139]
-- [fs] jbd2: fix infinite loop when recovering corrupt journal blocks (Lukas Czerner) [1150139]
-- [fs] ext4: update i_disksize coherently with block allocation on error path (Lukas Czerner) [1150139]
-- [fs] ext4: fix BUG_ON in mb_free_blocks() (Lukas Czerner) [1150139]
-- [fs] ext4: propagate errors up to ext4_find_entry()'s callers (Lukas Czerner) [1150139]
-- [fs] ext4: fix ext4_discard_allocated_blocks() if we can't allocate the pa struct (Lukas Czerner) [1150139]
-- [fs] ext4: fix a potential deadlock in __ext4_es_shrink() (Lukas Czerner) [1150139]
-- [fs] ext4: revert commit which was causing fs corruption after journal replays (Lukas Czerner) [1150139]
-- [fs] ext4: disable synchronous transaction batching if max_batch_time==0 (Lukas Czerner) [1150139]
-- [fs] ext4: clarify ext4_error message in ext4_mb_generate_buddy_error() (Lukas Czerner) [1150139]
-- [fs] ext4: clarify error count warning messages (Lukas Czerner) [1150139]
-- [fs] ext4: fix unjournalled bg descriptor while initializing inode bitmap (Lukas Czerner) [1150139]
-- [fs] ext4: Fix hole punching for files with indirect blocks (Lukas Czerner) [1150139]
-- [fs] ext4: Fix buffer double free in ext4_alloc_branch() (Lukas Czerner) [1150139]
-- [fs] ext4: fix zeroing of page during writeback (Lukas Czerner) [1150139]
-- [fs] ext4: fix data integrity sync in ordered mode (Lukas Czerner) [1150139]
-- [fs] ext4: get rid of EXT4_MAP_UNINIT flag (Lukas Czerner) [1150139]
-- [fs] ext4: fix ext4_count_free_clusters() with EXT4FS_DEBUG and bigalloc enabled (Lukas Czerner) [1150139]
-- [fs] ext4: silence sparse check warning for function ext4_trim_extent (Lukas Czerner) [1150139]
-- [fs] ext4: use i_size_read in ext4_unaligned_aio() (Lukas Czerner) [1150139]
-- [fs] ext4: move ext4_update_i_disksize() into mpage_map_and_submit_extent() (Lukas Czerner) [1150139]
-- [fs] ext4: return ENOMEM rather than EIO when find_###_page() fails (Lukas Czerner) [1150139]
-- [fs] ext4: update PF_MEMALLOC handling in ext4_write_inode() (Lukas Czerner) [1150139]
-- [fs] ext4: fix jbd2 warning under heavy xattr load (Lukas Czerner) [1150139]
-- [fs] ext4: note the error in ext4_end_bio() (Lukas Czerner) [1150139]
-- [fs] ext4: initialize multi-block allocator before checking block descriptors (Lukas Czerner) [1150139]
-- [fs] ext4: FIBMAP ioctl causes BUG_ON due to handle EXT_MAX_BLOCKS (Lukas Czerner) [1150139]
-- [fs] ext4: fix 64-bit number truncation warning (Lukas Czerner) [1150139]
-- [fs] ext4: fix premature freeing of partial clusters split across leaf blocks (Lukas Czerner) [1150139]
-- [fs] ext4: rename: split out helper functions (Lukas Czerner) [1150139]
-- [fs] ext4: rename: move EMLINK check up (Lukas Czerner) [1150139]
-- [fs] ext4: rename: create ext4_renament structure for local vars (Lukas Czerner) [1150139]
-- [fs] ext4: make ext4_block_zero_page_range static (Lukas Czerner) [1150139]
-- [fs] ext4: atomically set inode->i_flags in ext4_set_inode_flags() (Lukas Czerner) [1150139]
-- [fs] ext4: optimize Hurd tests when reading/writing inodes (Lukas Czerner) [1150139]
-- [fs] ext4: kill i_version support for Hurd-castrated file systems (Lukas Czerner) [1150139]
-- [fs] ext4: fix partial cluster handling for bigalloc file systems (Lukas Czerner) [1150139]
-- [fs] ext4: delete path dealloc code in ext4_ext_handle_uninitialized_extents (Lukas Czerner) [1150139]
-- [fs] jbd2: improve error messages for inconsistent journal heads (Lukas Czerner) [1150139]
-- [fs] jbd2: minimize region locked by j_list_lock in jbd2_journal_forget() (Lukas Czerner) [1150139]
-- [fs] jbd2: minimize region locked by j_list_lock in journal_get_create_access() (Lukas Czerner) [1150139]
-- [fs] jbd2: check jh->b_transaction without taking j_list_lock (Lukas Czerner) [1150139]
-- [fs] jbd2: add transaction to checkpoint list earlier (Lukas Czerner) [1150139]
-- [fs] jbd2: calculate statistics without holding j_state_lock and j_list_lock (Lukas Czerner) [1150139]
-- [fs] jbd2: don't hold j_state_lock while calling wake_up() (Lukas Czerner) [1150139]
-- [fs] jbd2: don't unplug after writing revoke records (Lukas Czerner) [1150139]
-- [fs] ext4: Speedup WB_SYNC_ALL pass called from sync(2) (Lukas Czerner) [1150139]
-- [fs] ext4: translate fallocate mode bits to strings (Lukas Czerner) [1150139]
-- [fs] ext4: merge uninitialized extents (Lukas Czerner) [1150139]
-- [fs] ext4: avoid exposure of stale data in ext4_punch_hole() (Lukas Czerner) [1150139]
-- [fs] ext4: silence warnings in extent status tree debugging code (Lukas Czerner) [1150139]
-- [fs] ext4: remove unused ac_ex_scanned (Lukas Czerner) [1150139]
-- [fs] ext4: avoid possible overflow in ext4_map_blocks() (Lukas Czerner) [1150139]
-- [fs] ext4: make sure ex.fe_logical is initialized (Lukas Czerner) [1150139]
-- [fs] ext4: don't calculate total xattr header size unless needed (Lukas Czerner) [1150139]
-- [fs] ext4: add ext4_es_store_pblock_status() (Lukas Czerner) [1150139]
-- [fs] ext4: fix error return from ext4_ext_handle_uninitialized_extents() (Lukas Czerner) [1150139]
-- [fs] ext4: address a benign compiler warning (Lukas Czerner) [1150139]
-- [fs] jbd2: mark file-local functions as static (Lukas Czerner) [1150139]
-- [fs] ext4: remove an unneeded check in mext_page_mkuptodate() (Lukas Czerner) [1150139]
-- [fs] ext4: clean up error handling in swap_inode_boot_loader() (Lukas Czerner) [1150139]
-- [fs] ext4: Add __init marking to init_inodecache (Lukas Czerner) [1150139]
-- [fs] ext4: don't leave i_crtime.tv_sec uninitialized (Lukas Czerner) [1150139]
-- [fs] ext4: fix online resize with a non-standard blocks per group setting (Lukas Czerner) [1150139]
-- [fs] ext4: fix online resize with very large inode tables (Lukas Czerner) [1150139]
-- [fs] ext4: don't try to modify s_flags if the the file system is read-only (Lukas Czerner) [1150139]
-- [fs] ext4: fix error paths in swap_inode_boot_loader() (Lukas Czerner) [1150139]
-- [fs] ext4: fix xfstest generic/299 block validity failures (Lukas Czerner) [1150139]
-- [fs] ext4: delete "set but not used" variables (Lukas Czerner) [1150139]
-- [fs] ext4: don't pass freed handle to ext4_walk_page_buffers (Lukas Czerner) [1150139]
-- [fs] ext4: avoid clearing beyond i_blocks when truncating an inline data file (Lukas Czerner) [1150139]
-- [fs] ext4: ext4_inode_is_fast_symlink should use EXT4_CLUSTER_SIZE (Lukas Czerner) [1150139]
-- [fs] ext4: fix a typo in extents.c (Lukas Czerner) [1150139]
-- [fs] ext4: use pd printk specificer (Lukas Czerner) [1150139]
-- [fs] ext4: standardize error handling in ext4_da_write_inline_data_begin() (Lukas Czerner) [1150139]
-- [fs] ext4: retry allocation when inline->extent conversion failed (Lukas Czerner) [1150139]
-- [fs] ext4: enable punch hole for bigalloc (Lukas Czerner) [1150139]
-- [fs] ext4: fix bigalloc regression (Lukas Czerner) [1150139]
-- [fs] ext4: add explicit casts when masking cluster sizes (Lukas Czerner) [1150139]
-- [fs] ext4: fix deadlock when writing in ENOSPC conditions (Lukas Czerner) [1150139]
-- [fs] jbd2: rename obsoleted msg JBD->JBD2 (Lukas Czerner) [1150139]
-- [fs] jbd2: revise KERN_EMERG error messages (Lukas Czerner) [1150139]
-- [fs] jbd2: don't BUG but return ENOSPC if a handle runs out of space (Lukas Czerner) [1150139]
-- [fs] ext4: Do not reserve clusters when fs doesn't support extents (Lukas Czerner) [1150139]
-- [fs] ext4: fix del_timer() misuse for ->s_err_report (Lukas Czerner) [1150139]
-- [fs] ext4: check for overlapping extents in ext4_valid_extent_entries() (Lukas Czerner) [1150139]
-- [fs] ext4: fix use-after-free in ext4_mb_new_blocks (Lukas Czerner) [1150139]
-- [fs] ext4: call ext4_error_inode() if jbd2_journal_dirty_metadata() fails (Lukas Czerner) [1150139]
-- [fs] ext4: add prototypes for macro-generated functions (Lukas Czerner) [1150139]
-- [fs] ext4: return non-zero st_blocks for inline data (Lukas Czerner) [1150139]
-- [fs] ext4: use prandom_u32() instead of get_random_bytes() (Lukas Czerner) [1150139]
-- [fs] ext4: remove unreachable code after ext4_can_extents_be_merged() (Lukas Czerner) [1150139]
-- [fs] ext4: remove unreachable code in ext4_can_extents_be_merged() (Lukas Czerner) [1150139]
-- [fs] ext4: don't count free clusters from a corrupt block group (Lukas Czerner) [1150139]
-- [fs] ext4: drop set but otherwise unused variable from ext4_add_dirent_to_inline() (Lukas Czerner) [1150139]
-- [fs] ext4: change ext4_read_inline_dir() to return 0 on success (Lukas Czerner) [1150139]
-- [fs] ext4: pair trace_ext4_writepages & trace_ext4_writepages_result (Lukas Czerner) [1150139]
-- [fs] ext4: fix performance regression in ext4_writepages (Lukas Czerner) [1150139]
-- [fs] ext4: fixup kerndoc annotation of mpage_map_and_submit_extent() (Lukas Czerner) [1150139]
-- [fs] ext4: fix performance regression in writeback of random writes (Lukas Czerner) [1150139]
-- [fs] ext4: allow specifying external journal by pathname mount option (Lukas Czerner) [1150139]
-- [fs] ext4: mark group corrupt on group descriptor checksum (Lukas Czerner) [1150139]
-- [fs] ext4: mark block group as corrupt on inode bitmap error (Lukas Czerner) [1150139]
-- [fs] ext4: mark block group as corrupt on block bitmap error (Lukas Czerner) [1150139]
-- [fs] jbd2: Fix endian mixing problems in the checksumming code (Lukas Czerner) [1150139]
-- [fs] ext4: isolate ext4_extents.h file (Lukas Czerner) [1150139]
-- [fs] ext4: Fix misspellings using 'codespell' tool (Lukas Czerner) [1150139]
-- [fs] ext4: convert write_begin methods to stable_page_writes semantics (Lukas Czerner) [1150139]
-- [fs] ext4: fix lost truncate due to race with writeback (Lukas Czerner) [1150139]
-- [fs] ext4: fix ext4_writepages() in presence of truncate (Lukas Czerner) [1150139]
-- [fs] ext4: move test whether extent to map can be extended to one place (Lukas Czerner) [1150139]
-- [fs] ext4: avoid reusing recently deleted inodes in no journal mode (Lukas Czerner) [1150139]
-- [fs] ext4: allocate delayed allocation blocks before rename (Lukas Czerner) [1150139]
-- [fs] ext4: start handle at least possible moment when renaming files (Lukas Czerner) [1150139]
-- [fs] ext4: add support for extent pre-caching (Lukas Czerner) [1150139]
-- [fs] ext4: cache all of an extent tree's leaf block upon reading (Lukas Czerner) [1150139]
-- [fs] ext4: use unsigned int for es_status values (Lukas Czerner) [1150139]
-- [fs] ext4: print the block number of invalid extent tree blocks (Lukas Czerner) [1150139]
-- [fs] ext4: refactor code to read the extent tree block (Lukas Czerner) [1150139]
-- [fs] ext4: add WARN_ON to check the length of allocated blocks (Lukas Czerner) [1150139]
-- [fs] ext4: call ext4_es_lru_add() after handling cache miss (Lukas Czerner) [1150139]
-- [fs] ext4: make the extent_status code more robust against ENOMEM failures (Lukas Czerner) [1150139]
-- [fs] ext4: simplify calculation of blocks to free on error (Lukas Czerner) [1150139]
-- [fs] ext4: fix spelling errors and a comment in extent_status tree (Lukas Czerner) [1150139]
-- [fs] ext4: fix warning in ext4_evict_inode() (Lukas Czerner) [1150139]
-- [fs] ext4: optimize starting extent in ext4_ext_rm_leaf() (Lukas Czerner) [1150139]
-- [fs] jbd2: invalidate handle if jbd2_journal_restart() fails (Lukas Czerner) [1150139]
-- [fs] ext4: fix up error handling for mpage_map_and_submit_extent() (Lukas Czerner) [1150139]
-- [fs] ext4: delete unnecessary C statements (Lukas Czerner) [1150139]
-- [fs] ext4: pass inode pointer instead of file pointer to punch hole (Lukas Czerner) [1150139]
-- [fs] ext4: improve free space calculation for inline_data (Lukas Czerner) [1150139]
-- [fs] ext4: reduce object size when !CONFIG_PRINTK (Lukas Czerner) [1150139]
-- [fs] ext4: improve extent cache shrink mechanism to avoid to burn CPU time (Lukas Czerner) [1150139]
-- [fs] ext4: delete unused variables (Lukas Czerner) [1150139]
-- [fs] jbd2: remove debug dependency on debug_fs and update Kconfig help text (Lukas Czerner) [1150139]
-- [fs] jbd2: use a single printk for jbd_debug() (Lukas Czerner) [1150139]
-- [fs] ext4: fix data integrity for ext4_sync_fs (Lukas Czerner) [1150139]
-- [fs] jbd2: optimize jbd2_journal_force_commit (Lukas Czerner) [1150139]
-- [fs] ext4: don't use EXT4_FREE_BLOCKS_FORGET unnecessarily (Lukas Czerner) [1150139]
-- [fs] ext4: use ext4_da_writepages() for all modes (Lukas Czerner) [1150139]
-- [fs] ext4: remove ext4_ioend_wait() (Lukas Czerner) [1150139]
-- [fs] ext4: don't wait for extent conversion in ext4_punch_hole() (Lukas Czerner) [1150139]
-- [fs] ext4: Remove wait for unwritten extents in ext4_ind_direct_IO() (Lukas Czerner) [1150139]
-- [fs] ext4: remove i_mutex from ext4_file_sync() (Lukas Czerner) [1150139]
-- [fs] ext4: use generic_file_fsync() in ext4_file_fsync() in nojournal mode (Lukas Czerner) [1150139]
-- [fs] ext4: remove wait for unwritten extent conversion from ext4_truncate() (Lukas Czerner) [1150139]
-- [fs] ext4: protect extent conversion after DIO with i_dio_count (Lukas Czerner) [1150139]
-- [fs] ext4: defer clearing of PageWriteback after extent conversion (Lukas Czerner) [1150139]
-- [fs] ext4: split extent conversion lists to reserved & unreserved parts (Lukas Czerner) [1150139]
-- [fs] ext4: use transaction reservation for extent conversion in ext4_end_io (Lukas Czerner) [1150139]
-- [fs] ext4: remove buffer_uninit handling (Lukas Czerner) [1150139]
-- [fs] ext4: silence warning in ext4_writepages() (Lukas Czerner) [1150139]
-- [fs] ext4: restructure writeback path (Lukas Czerner) [1150139]
-- [fs] ext4: use io_end for multiple bios (Lukas Czerner) [1150139]
-- [fs] ext4: better estimate credits needed for ext4_da_writepages() (Lukas Czerner) [1150139]
-- [fs] ext4: improve writepage credit estimate for files with indirect blocks (Lukas Czerner) [1150139]
-- [fs] ext4: deprecate max_writeback_mb_bump sysfs attribute (Lukas Czerner) [1150139]
-- [fs] ext4: stop messing with nr_to_write in ext4_da_writepages() (Lukas Czerner) [1150139]
-- [fs] ext4: provide wrappers for transaction reservation calls (Lukas Czerner) [1150139]
-- [fs] jbd2: transaction reservation support (Lukas Czerner) [1150139]
-- [fs] jbd2: cleanup needed free block estimates when starting a transaction (Lukas Czerner) [1150139]
-- [fs] jbd2: remove outdated comment (Lukas Czerner) [1150139]
-- [fs] jbd2: refine waiting for shadow buffers (Lukas Czerner) [1150139]
-- [fs] jbd2: remove journal_head from descriptor buffers (Lukas Czerner) [1150139]
-- [fs] jbd2: don't create journal_head for temporary journal buffers (Lukas Czerner) [1150139]
-- [fs] ext4: suppress ext4 orphan messages on mount (Lukas Czerner) [1150139]
-- [fs] jbd2: fix block tag checksum verification brokenness (Lukas Czerner) [1150139]
-- [fs] jbd2: use kmem_cache_zalloc for allocating journal head (Lukas Czerner) [1150139]
-- [fs] jbd2: Fix oops in jbd2_journal_file_inode() (Lukas Czerner) [1144326]
-- [fs] ext4: only zero partial blocks in ext4_zero_partial_blocks() (Lukas Czerner) [1144326]
-- [fs] ext4: make punch hole code path work with bigalloc (Lukas Czerner) [1144326]
-- [fs] ext4: update ext4_ext_remove_space trace point (Lukas Czerner) [1144326]
-- [fs] ext4: remove unused code from ext4_remove_blocks() (Lukas Czerner) [1144326]
-- [fs] ext4: remove unused discard_partial_page_buffers (Lukas Czerner) [1144326]
-- [fs] ext4: use ext4_zero_partial_blocks in punch_hole (Lukas Czerner) [1144326]
-- [fs] ext4: truncate_inode_pages() in orphan cleanup path (Lukas Czerner) [1144326]
-- [fs] Revert "ext4: fix fsx truncate failure" (Lukas Czerner) [1144326]
-- [fs] ext4: Call ext4_jbd2_file_inode() after zeroing block (Lukas Czerner) [1144326]
-- [fs] Revert "ext4: remove no longer used functions in inode.c" (Lukas Czerner) [1144326]
-- [fs] mm: teach truncate_inode_pages_range() to handle non page aligned ranges (Lukas Czerner) [1144326]
-- [fs] ext4: use ->invalidatepage() length argument (Lukas Czerner) [1144326]
-- [fs] jbd2: change jbd2_journal_invalidatepage to accept length (Lukas Czerner) [1144326]
-- [fs] mm: change invalidatepage prototype to accept length (Lukas Czerner) [1144326]
-- [fs] nfs: Fix a bogus warning in nfs_generic_pgio (Steve Dickson) [1150227]
-- [fs] nfs: Fix an uninitialised pointer Oops in the writeback error path (Steve Dickson) [1150227]
-
-* Mon Nov 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-198.el7]
-- [block] nvme: Clear QUEUE_FLAG_STACKABLE (David Milburn) [1155716]
-- [md] dm-raid: ensure superblock's size matches device's logical block size (Mike Snitzer) [1112804]
-- [md] dm-thin: refactor requeue_io to eliminate spinlock bouncing (Mike Snitzer) [1156164]
-- [md] dm-thin: optimize retry_bios_on_resume (Mike Snitzer) [1156164]
-- [md] dm-thin: sort the deferred cells (Mike Snitzer) [1156164]
-- [md] dm-thin: direct dispatch when breaking sharing (Mike Snitzer) [1156164]
-- [md] dm-thin: remap the bios in a cell immediately (Mike Snitzer) [1156164]
-- [md] dm-thin: defer whole cells rather than individual bios (Mike Snitzer) [1156164]
-- [md] dm-thin: factor out remap_and_issue_overwrite (Mike Snitzer) [1156164]
-- [md] dm-thin: performance improvement to discard processing (Mike Snitzer) [1156164]
-- [md] dm-thin: grab a virtual cell before looking up the mapping (Mike Snitzer) [1156164]
-- [md] dm-thin: implement thin_merge (Mike Snitzer) [1156164]
-- [md] dm: improve documentation and code clarity in dm_merge_bvec (Mike Snitzer) [1156164]
-- [md] dm-thin: adjust max_sectors_kb based on thinp blocksize (Mike Snitzer) [1156164]
-- [block] fix alignment_offset math that assumes io_min is a power-of-2 (Mike Snitzer) [1156164]
-- [md] dm-thin: throttle incoming IO (Mike Snitzer) [1156161]
-- [md] dm-thin: prefetch missing metadata pages (Mike Snitzer) [1156161]
-- [md] dm-transaction-manager: add support for prefetching blocks of metadata (Mike Snitzer) [1156161]
-- [md] dm-thin-metadata: change dm_thin_find_block to allow blocking, but not issuing, IO (Mike Snitzer) [1156161]
-- [md] dm-bio-prison: switch to using a red black tree (Mike Snitzer) [1156161]
-- [md] dm-bufio: evict buffers that are past the max age but retain some buffers (Mike Snitzer) [1156161]
-- [md] dm-bufio: switch from a huge hash table to an rbtree (Mike Snitzer) [1156161]
-- [md] dm-bufio: change __GFP_IO to __GFP_FS in shrinker callbacks (Mike Snitzer) [1156161]
-- [md] dm-bufio: when done scanning return from __scan immediately (Mike Snitzer) [1156161]
-- [md] dm-bufio: update last_accessed when relinking a buffer (Mike Snitzer) [1156161]
-- [md] dm-bufio: fully initialize shrinker (Mike Snitzer) [1156161]
-- [misc] genwqe: Remove unnecessary include (Gustavo Duarte) [1088491]
-- [misc] genwqe: Increase driver version number (Gustavo Duarte) [1088491]
-- [misc] genwqe: Improve hardware error recovery (Gustavo Duarte) [1088491]
-- [misc] genwqe: Add support for EEH error recovery (Gustavo Duarte) [1088491]
-- [misc] genwqe: Add sysfs interface for bitstream reload (Gustavo Duarte) [1088491]
-- [misc] genwqe: fix uninitialized return value in genwqe_free_sync_sgl() (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix format string mismatch in card_debugfs.c (Gustavo Duarte) [1088491]
-- [misc] genwqe: Increase driver version number (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix multithreading problems (Gustavo Duarte) [1088491]
-- [misc] genwqe: Ensure rc is not returning an uninitialized value (Gustavo Duarte) [1088491]
-- [misc] genwqe: Add wmb before DDCB is started (Gustavo Duarte) [1088491]
-- [misc] genwqe: Enable access to VPD flash area (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix potential memory leak when pinning memory (Gustavo Duarte) [1088491]
-- [misc] genwqe: delete non-required instances of include <linux/init.h> (Gustavo Duarte) [1088491]
-- [misc] genwqe: fix return value check in genwqe_device_create() (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix warnings for sparc (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix compile problems for Alpha (Gustavo Duarte) [1088491]
-- [misc] genwqe: Rework return code for flash-update ioctl (Gustavo Duarte) [1088491]
-- [misc] genwqe: Accidently casting to u32 where u64 is required (Gustavo Duarte) [1088491]
-- [misc] genwqe: Replace dynamic_hex_dump with print_hex_dump_debug (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix endian issues detected by sparse (Gustavo Duarte) [1088491]
-- [misc] genwqe: Enable driver (Gustavo Duarte) [1088491]
-- [misc] genwqe: Sysfs interfaces (Gustavo Duarte) [1088491]
-- [misc] genwqe: Debugfs interfaces (Gustavo Duarte) [1088491]
-- [misc] genwqe: Utility functions (Gustavo Duarte) [1088491]
-- [misc] genwqe: Character device and DDCB queue (Gustavo Duarte) [1088491]
-- [misc] genwqe: GenWQE PCI support, health monitoring and recovery (Gustavo Duarte) [1088491]
-- [virt] kvm/vmx: handle invvpid vm exit gracefully (Petr  Matousek) [1144829] {CVE-2014-3646}
-- [virt] kvm: fix PIT timer race condition (Petr  Matousek) [1144880] {CVE-2014-3611}
-
-* Thu Oct 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-197.el7]
-- [scsi] qla2xxx: Update version number to 8.07.00.08.07.1-k1 (Chad Dupuis) [1067179]
-- [scsi] qla2xxx: Disable PCI device in shutdown handler (Chad Dupuis) [1067179]
-- [wireless] rt2x00: Delete accidentally committed .rej file (Prarit Bhargava) [1158457]
-- [ethernet] cxgb4: Allow T4/T5 firmware sizes up to 1MB (Sai Vemuri) [1147683]
-- [ethernet] cxgb4i: avoid holding mutex in interrupt context (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Don't allocate adapter structure for all PF's (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Add device ID for new adapter and remove for dbg adapter (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Add warning msg when attaching to adapters which have FLASHes smaller than 2Mb (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Fix t4_flash_erase_sectors() to throw an error when requested to erase sectors which aren't in the FLASH (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Add support to S25FL032P flash (Sai Vemuri) [1147683]
-- [ethernet] cxgb4vf: Call dev_kfree/consume_skb_any instead of [dev_]kfree_skb (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Turn off SGE RX/TX Callback Timers and interrupts in PCI shutdown routine (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Adds device ID for few more Chelsio T4 Adapters (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Check if rx checksum offload is enabled, while reading hardware calculated checksum (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Adds device Id for few more Chelsio adapters (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Use pci_enable_msix_range() instead of pci_enable_msix() (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Remove superfluous call to pci_disable_msix() (Sai Vemuri) [1070945]
-- [kernel] printk: bump LOG_BUF_SHIFT (Jeff Moyer) [1156189]
-- [net] cdc_ncm: fix control message ordering (Neil Horman) [1129796]
-- [net] usb/huawei_cdc_ncm: add "subclass 3" devices (Neil Horman) [1129796]
-- [net] usb/cdc_ncm: remove non-standard NCM device IDs (Neil Horman) [1129796]
-- [net] usb/huawei_cdc_ncm: increase command buffer size (Neil Horman) [1129796]
-- [net] usb: Introduce the huawei_cdc_ncm driver (Neil Horman) [1129796]
-- [powerpc] perf/hv-24x7: Simplify catalog_read() (Steve Best) [1155924]
-- [acpi] container: Fix error code path in container_device_attach() (Prarit Bhargava) [1128634]
-- [kernel] timekeeping: Use cached ntp_tick_length when accumulating error (Prarit Bhargava) [1136839]
-- [kernel] timekeeping: Rework frequency adjustments to work better w/ nohz (Prarit Bhargava) [1136839]
-- [s390] zcrypt: Toleration of new crypto hardware (Hendrik Brueckner) [1136494]
-- [s390] zcrypt: support for extended number of ap domains (Hendrik Brueckner) [1136494]
-- [kernel] smp: flush any pending IPI callbacks before CPU offline (Gustavo Duarte) [1100093]
-- [kernel] smp: print more useful debug info upon receiving IPI on an offline CPU (Gustavo Duarte) [1100093]
-
-* Tue Oct 28 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-196.el7]
-- [ethernet] mlx5: Add ConnectX-4 to list of supported devices (Amir Vadai) [1149439]
-- [fs] cifs: NULL pointer dereference in SMB2_tcon (Jacob Tanenbaum) [1147529] {CVE-2014-7145}
-- [x86] build: Add arch/x86/purgatory/ make generated files to gitignore (Prarit Bhargava) [1155577]
-- [acpi] acpica: Add "Windows 2013" string to _OSI support (Lenny Szubowicz) [1087674]
-- [pci] Export MSI message relevant functions (Myron Stowe) [1123366]
-- [cpufreq] store_scaling_governor requires policy->rwsem to be held for duration of changing governors (Prarit Bhargava) [1089255]
-- [edac] sb_edac: avoid INTERNAL ERROR message in EDAC with unspecified channel (Seth Jennings) [1056990]
-- [kernel] module: lock around setting of MODULE_STATE_UNFORMED (Prarit Bhargava) [1127741]
-- [acpi] Add container online uevent to acpi_bus_attach (Prarit Bhargava) [1140572]
-- [scsi] fcoe: Convert uses of compare_ether_addr to ether_addr_equal (Neil Horman) [1087099]
-- [scsi] fcoe: Fix missing mutex_unlock in fcoe_sysfs_fcf_add error path (Neil Horman) [1087099]
-- [scsi] fcoe: Make fcoe_sysfs optional / fix fnic NULL exception (Neil Horman) [1087099]
-- [scsi] fcoe: fix build error (Neil Horman) [1087099]
-- [scsi] fcoe: convert bus code to use bus_groups (Neil Horman) [1087099]
-- [scsi] fcoe: Reduce fcoe_sysfs_fcf_add() stack usage (Neil Horman) [1087099]
-- [scsi] fcoe: Add missing newlines in debug messages (Neil Horman) [1087099]
-- [scsi] fcoe: Declare fcoe_ctlr_mode_set() static (Neil Horman) [1087099]
-- [fs] gfs2: Hash the negative dentry during inode lookup (Robert S Peterson) [1123986]
-
-* Mon Oct 27 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-195.el7]
-- [block] fix blk_abort_request on blk-mq (Jeff Moyer) [1146660]
-- [block] blk-timeout: fix blk_add_timer (Jeff Moyer) [1146660]
-- [block] blk-mq: limit memory consumption if a crash dump is active (Jeff Moyer) [1146660]
-- [block] blk-mq: remove unnecessary blk_clear_rq_complete() (Jeff Moyer) [1146660]
-- [block] blk-mq: pass a reserved argument to the timeout handler (Jeff Moyer) [1146660]
-- [block] blk-mq: unshared timeout handler (Jeff Moyer) [1146660]
-- [block] blk-mq: fix and simplify tag iteration for the timeout handler (Jeff Moyer) [1146660]
-- [block] blk-mq: rename blk_mq_end_io to blk_mq_end_request (Jeff Moyer) [1146660]
-- [block] blk-mq: call blk_mq_start_request from ->queue_rq (Jeff Moyer) [1146660]
-- [block] blk-mq: remove REQ_END (Jeff Moyer) [1146660]
-- [block] blk-mq: use blk_mq_start_hw_queues() when running requeue work (Jeff Moyer) [1146660]
-- [block] blk-mq: fix potential oops on out-of-memory in __blk_mq_alloc_rq_maps() (Jeff Moyer) [1146660]
-- [block] blk-mq: avoid infinite recursion with the FUA flag (Jeff Moyer) [1146660]
-- [block] blk-mq: Avoid race condition with uninitialized requests (Jeff Moyer) [1146660]
-- [block] blk-mq: request deadline must be visible before marking rq as started (Jeff Moyer) [1146660]
-- [block] blk-mq: scale depth and rq map appropriate if low on memory (Jeff Moyer) [1146660]
-- [block] blk-mq: cleanup after blk_mq_init_rq_map failures (Jeff Moyer) [1146660]
-- [block] fix unbalanced bypass-disable in blk_register_queue (Jeff Moyer) [1146660]
-- [block] bdi: an active gendisk always has a request_queue associated with it (Jeff Moyer) [1146660]
-- [block] blk-mq: pass along blk_mq_alloc_tag_set return values (Jeff Moyer) [1146660]
-- [block] blk-merge: fix blk_recount_segments (Jeff Moyer) [1146660]
-- [block] blk-mq: correct a few wrong/bad comments (Jeff Moyer) [1146660]
-- [block] blk-mq: don't allow merges if turned off for the queue (Jeff Moyer) [1146660]
-- [block] blk-mq: fix WARNING "percpu_ref_kill() called more than once!" (Jeff Moyer) [1146660]
-- [block] provide compat ioctl for BLKZEROOUT (Jeff Moyer) [1146660]
-- [block] blkcg: don't call into policy draining if root_blkg is already gone (Jeff Moyer) [1146660]
-- [block] don't assume last put of shared tags is for the host (Jeff Moyer) [1146660]
-- [block] fix SG_[GS]ET_RESERVED_SIZE ioctl when max_sectors is huge (Jeff Moyer) [1146660]
-- [block] fix BLKSECTGET ioctl when max_sectors is greater than USHRT_MAX (Jeff Moyer) [1146660]
-- [block] blk-mq: collapse __blk_mq_drain_queue() into blk_mq_freeze_queue() (Jeff Moyer) [1146660]
-- [block] blk-mq: decouble blk-mq freezing from generic bypassing (Jeff Moyer) [1146660]
-- [block] blk-mq: draining can't be skipped even if bypass_depth was non-zero (Jeff Moyer) [1146660]
-- [block] blk-mq: fix a memory ordering bug in blk_mq_queue_enter() (Jeff Moyer) [1146660]
-
-* Fri Oct 24 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-194.el7]
-- [fs] xfs: flush the range before zero range conversion (Eric Sandeen) [1145837]
-- [fs] xfs: only set extent size hint when asked (Eric Sandeen) [1145837]
-- [fs] xfs: project id inheritance is a directory only flag (Eric Sandeen) [1145837]
-- [fs] xfs: use ranged writeback and invalidation for direct IO (Eric Sandeen) [1145837]
-- [fs] xfs: don't zero partial page cache pages during O_DIRECT writes (Eric Sandeen) [1145837]
-- [fs] xfs: don't zero partial page cache pages during O_DIRECT reads (Eric Sandeen) [1130294 1145837]
-- [fs] xfs: don't dirty buffers beyond EOF (Eric Sandeen) [1145837]
-- [fs] xfs: fix coccinelle warnings (Eric Sandeen) [1145837]
-- [fs] xfs: flush both inodes in xfs_swap_extents (Eric Sandeen) [1145837]
-- [fs] xfs: fix swapext ilock deadlock (Eric Sandeen) [1145837]
-- [fs] xfs: dquot recovery needs verifiers (Eric Sandeen) [1145837]
-- [fs] xfs: quotacheck leaves dquot buffers without verifiers (Eric Sandeen) [1145837]
-- [fs] xfs: ensure verifiers are attached to recovered buffers (Eric Sandeen) [1145837]
-- [fs] xfs: catch buffers written without verifiers attached (Eric Sandeen) [1145837]
-- [fs] xfs: avoid false quotacheck after unclean shutdown (Eric Sandeen) [1145837]
-- [fs] xfs: fix rounding error of fiemap length parameter (Eric Sandeen) [1145837]
-- [fs] xfs: fix uflags detection at xfs_fs_rm_xquota (Eric Sandeen) [1145837]
-- [fs] xfs: fix cil push sequence after log recovery (Eric Sandeen) [1145837]
-- [fs] xfs: squash prealloc while over quota free space as well (Eric Sandeen) [1145837]
-- [fs] xfs: run an eofblocks scan on ENOSPC/EDQUOT (Eric Sandeen) [1145837]
-- [fs] xfs: support a union-based filter for eofblocks scans (Eric Sandeen) [1145837]
-- [fs] xfs: add scan owner field to xfs_eofblocks (Eric Sandeen) [1145837]
-- [fs] xfs: fix a couple error sequence jumps in xfs_mountfs() (Eric Sandeen) [1145837]
-- [fs] xfs: null unused quota inodes when quota is on (Eric Sandeen) [1145837]
-- [fs] xfs: refine the allocation stack switch (Eric Sandeen) [1145837]
-- [fs] xfs: Fix rounding in xfs_alloc_fix_len() (Eric Sandeen) [1145837]
-- [fs] xfs: tone down writepage/releasepage WARN_ONs (Eric Sandeen) [1145837]
-- [fs] xfs: remove redundant checks from xfs_da_read_buf (Eric Sandeen) [1145837]
-- [fs] xfs: keep sb_bad_features2 the same a sb_features2 (Eric Sandeen) [1145837]
-- [fs] xfs: negate xfs_icsb_init_counters error value (Eric Sandeen) [1145837]
-- [fs] xfs: negate mount workqueue init error value (Eric Sandeen) [1145837]
-- [fs] xfs: fix wrong errno from xfs_initxattrs (Eric Sandeen) [1145837]
-- [fs] xfs: xfs_commit_metadata returns wrong errno (Eric Sandeen) [1145837]
-- [fs] xfs: fix incorrect error sign in xfs_file_aio_read (Eric Sandeen) [1145837]
-- [fs] xfs: xfs_dir_fsync() returns positive errno (Eric Sandeen) [1145837]
-- [fs] xfs: fix directory readahead offset off-by-one (Eric Sandeen) [1145837]
-- [fs] xfs: remote attribute overwrite causes transaction overrun (Eric Sandeen) [1145837]
-- [fs] xfs: Fix wrong error codes being returned (Eric Sandeen) [1145837]
-- [fs] xfs: bulletfproof xfs_qm_scall_trunc_qfiles() (Eric Sandeen) [1145837]
-- [fs] xfs: fix Q_XQUOTARM ioctl (Eric Sandeen) [1145837]
-- [fs] xfs: fully support v5 format filesystems (Eric Sandeen) [1145837]
-- [fs] xfs: wrong error sign conversion during failed DIO writes (Eric Sandeen) [1145837]
-- [fs] xfs: unmount does not wait for shutdown during unmount (Eric Sandeen) [1145837]
-- [fs] xfs: don't map ranges that span EOF for direct IO (Eric Sandeen) [1145837]
-- [fs] xfs: zeroing space needs to punch delalloc blocks (Eric Sandeen) [1145837]
-- [fs] xfs: kill buffers over failed write ranges properly (Eric Sandeen) [1145837]
-- [fs] xfs: extra semi-colon breaks a condition (Eric Sandeen) [1145837]
-- [fs] xfs: xfs_check_page_type buffer checks need help (Eric Sandeen) [1145837]
-- [wireless] Backport mwl8k driver from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport mwifiex driver from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport brcm80211 drivers from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport rtlwifi drivers from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport rt2x00 driver from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport ath drivers from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport iwlegacy drivers from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport iwlwifi driver from linux 3.16 (Stanislaw Gruszka) [1085079 1107878 1136324]
-- [wireless] Backport mac80211 from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport wireless core from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [kernel] if_ether: add IEEE 802.21 Ethertype (Stanislaw Gruszka) [1136324]
-- [kernel] PTR_RET is now PTR_ERR_OR_ZERO (Stanislaw Gruszka) [1136324]
-- [net] etherdevice: Add ether_addr_equal_unaligned (Stanislaw Gruszka) [1136324]
-
-* Thu Oct 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-193.el7]
-- [net] ipv4: fix a race in update_or_create_fnhe() (Hannes Frederic Sowa) [1155155]
-- [net] ipv4: irq safe sk_dst_[re]set() and ipv4_sk_update_pmtu() fix (Hannes Frederic Sowa) [1155155]
-- [net] ipv4: fix dst race in sk_dst_get() (Hannes Frederic Sowa) [1155155]
-- [net] ipv4: fix a race in ip4_datagram_release_cb() (Hannes Frederic Sowa) [1155155]
-- [net] sctp: fix remote memory pressure from excessive queueing (Daniel Borkmann) [1152755] {CVE-2014-3688}
-- [net] sctp: fix panic on duplicate ASCONF chunks (Daniel Borkmann) [1152755] {CVE-2014-3687}
-- [net] sctp: fix skb_over_panic when receiving malformed ASCONF chunks (Daniel Borkmann) [1152755] {CVE-2014-3673}
-- [net] sctp: handle association restarts when the socket is closed (Daniel Borkmann) [1152755]
-- [net] ipv4: fix nexthop attlen check in fib_nh_match (Jiri Pirko) [1153654]
-- [net] packet: handle too big packets for PACKET_V3 (Hannes Frederic Sowa) [1152248]
-- [net] sendmsg: fix NULL pointer dereference (Hannes Frederic Sowa) [1152251]
-- [net] ipv6: remove rt6i_genid (Hannes Frederic Sowa) [1150017]
-- [net] ipv6: remove prune parameter for fib6_clean_all (Hannes Frederic Sowa) [1150017]
-- [net] ipv6: bump genid when delete/add address (Hannes Frederic Sowa) [1150017]
-- [net] split rt_genid for ipv4 and ipv6 (Hannes Frederic Sowa) [1150017]
-- [net] ipv4: use separate genid for next hop exceptions (Hannes Frederic Sowa) [1150017]
-- [net] ipv4: properly refresh rtable entries on pmtu/redirect events (Hannes Frederic Sowa) [1150017]
-- [net] bridge: Don't include NDA_VLAN for FDB entries with vid 0 (Vlad Yasevich) [1139809]
-- [net] bridge: Prevent insertion of FDB entry with disallowed vlan (Vlad Yasevich) [1139809]
-- [net] bridge: Fix double free and memory leak around br_allowed_ingress (Vlad Yasevich) [1139809]
-- [net] bridge: Fix crash with vlan filtering and tcpdump (Vlad Yasevich) [1139809]
-- [net] bridge: Fix handling stacked vlan tags (Vlad Yasevich) [1139809]
-- [net] bridge: Fix inabillity to retrieve vlan tags when tx offload is disabled (Vlad Yasevich) [1139809]
-- [net] bridge: Use RCU_INIT_POINTER(x, NULL) in br_vlan.c (Vlad Yasevich) [1139809]
-- [net] bridge: Remove unnecessary vlan_put_tag in br_handle_vlan (Vlad Yasevich) [1139809]
-- [net] bridge: use list_for_each_entry_continue_reverse (Vlad Yasevich) [896669]
-- [net] bridge: Fix incorrect judgment of promisc (Vlad Yasevich) [896669]
-- [net] bridge: fix the unbalanced promiscuous count when add_if failed (Vlad Yasevich) [896669]
-- [net] bridge: fix spelling of promiscuous (Vlad Yasevich) [896669]
-- [net] bridge: fix build (Vlad Yasevich) [896669]
-- [net] bridge: Automatically manage port promiscuous mode (Vlad Yasevich) [896669]
-- [net] bridge: Add addresses from static fdbs to non-promisc ports (Vlad Yasevich) [896669]
-- [net] bridge: Introduce BR_PROMISC flag (Vlad Yasevich) [896669]
-- [net] bridge: Add functionality to sync static fdb entries to hw (Vlad Yasevich) [896669]
-- [net] bridge: Keep track of ports capable of automatic discovery (Vlad Yasevich) [896669]
-- [net] bridge: Turn flag change macro into a function (Vlad Yasevich) [896669]
-- [net] bridge: Add a flag to control unicast packet flood (Vlad Yasevich) [896669]
-- [net] bridge: Add flag to control mac learning (Vlad Yasevich) [896669]
-
-* Thu Oct 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-192.el7]
-- [infiniband] ocrdma: convert kernel va to pa for mmap in user (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: use right macro in query ah (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: resolve L2 address when creating user AH (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: get vlan tag from ib_qp_attrs (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: add default gid at index 0 (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: do not skip setting deffered_arm (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Report actual value of max_fast_reg_page_list_len (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: report asic-id in query device (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Update sli data structure for endianness (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Obtain SL from device structure (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Update the ocrdma module version string (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Fix a sparse warning (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Initialize the GID table while registering the device (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Increase the size of STAG array in dev structure to 16K (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Add missing adapter mailbox opcodes (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Return proper value for max_mr_size (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Do proper cleanup even if FW is in error state (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Allow only SEND opcode in case of UD QPs (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Avoid reporting wrong completions in case of error CQEs (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Delete AH table if ocrdma_init_hw fails after AH table creation (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Remove hardcoding of the max DPP QPs supported (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Handle shutdown event from be2net driver (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Add hca_type and fixing fw_version string in device atrributes (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Query and initalize the PFC SL (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Avoid posting DPP requests for RDMA READ (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Convert to use simple_open() (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Unregister inet notifier when unloading ocrdma (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Fix warnings about pointer <-> integer casts (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Code clean-up (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Display FW version (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Query controller information (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Support non-embedded mailbox commands (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Handle CQ overrun error (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Display proper value for max_mw (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Use non-zero tag in SRQ posting (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Memory leak fix in ocrdma_dereg_mr() (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Increment abi version count (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Update version string (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: ABI versioning between ocrdma and be2net (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Allow DPP QP creation (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Read ASIC_ID register to select asic_gen (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: SQ and RQ doorbell offset clean up (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: EQ full catastrophe avoidance (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Fix load time panic during GID table init (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Fix traffic class shift (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Add dependency on INET (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Move ocrdma_inetaddr_event outside of "#if CONFIG_IPV6" (Doug Ledford) [1081067 1088577]
-- [mm] thp: do not allow thp faults to avoid cpuset restrictions (Frank Ramsay) [1149786]
-- [mm] thp: add VM_INIT_DEF_MASK and PRCTL_THP_DISABLE (Frank Ramsay) [1149786]
-- [fs] exec: kill the unnecessary mm->def_flags setting in load_elf_binary() (Frank Ramsay) [1149786]
-- [mm] Revert: thp: make MADV_HUGEPAGE check for mm->def_flags (Frank Ramsay) [1149786]
-- [block] disable entropy contributions for nonrot devices (Mike Snitzer) [852425]
-- [crypto] qat: Enforce valid numa configuration (Nikolay Aleksandrov) [1152642]
-- [crypto] qat: Prevent dma mapping zero length assoc data (Nikolay Aleksandrov) [1152642]
-- [pci] Add ACS quirk for Intel 10G NICs (Alex Williamson) [1141399]
-- [pci] Add ACS quirk for Solarflare SFC9120 & SFC9140 (Alex Williamson) [1131552]
-- [infiniband] ipoib: validate struct ipoib_cb size (Doug Ledford) [1107621 1140601]
-- [infiniband] ipoib: No longer use flush as a parameter (Doug Ledford) [1107621]
-- [infiniband] ipoib: Make ipoib_mcast_stop_thread flush the workqueue (Doug Ledford) [1107621]
-- [infiniband] ipoib: Use dedicated workqueues per interface (Doug Ledford) [1107621]
-- [infiniband] ipoib: change init sequence ordering (Doug Ledford) [1107621]
-- [infiniband] ipoib: fix mcast_dev_flush/mcast_restart_task race (Doug Ledford) [1107621]
-- [infiniband] ipoib: fix MCAST_FLAG_BUSY usage (Doug Ledford) [1107621]
-- [infiniband] ipoib: Make the carrier_on_task race aware (Doug Ledford) [1107621]
-- [infiniband] ipoib: Consolidate rtnl_lock tasks in workqueue (Doug Ledford) [1107621]
-- [infiniband] ipoib: Remove unnecessary test for NULL before debugfs_remove() (Doug Ledford) [1107621]
-- [infiniband] ipoib: Avoid multicast join attempts with invalid P_key (Doug Ledford) [1107621]
-- [infiniband] ipoib: Avoid flushing the workqueue from worker context (Doug Ledford) [1107621]
-- [infiniband] ipoib: Use P_Key change event instead of P_Key polling mechanism (Doug Ledford) [1107621]
-- [infiniband] ipoib: Report operstate consistently when brought up without a link (Doug Ledford) [1107621]
-- [net] svcrdma: remove rdma_create_qp() failure recovery logic (Doug Ledford) [1107621]
-- [net] svcrdma: send_write() must not overflow the device's max sge (Doug Ledford) [1107621]
-- [net] svcrdma: Fence LOCAL_INV work requests (Doug Ledford) [1107621]
-- [net] svcrdma: refactor marshalling logic (Doug Ledford) [1107621]
-- [net] sunrpc: Fix regression in NFSRDMA server (Doug Ledford) [1107621]
-- [net] svcrdma: fix printk when memory allocation fails (Doug Ledford) [1107621]
-- [kernel] uapi: Include socket.h in rdma_user_cm.h (Doug Ledford) [1107621]
-- [infiniband] Return error for unsupported QP creation flags (Doug Ledford) [1107621]
-- [infiniband] Allow build of hw/ and ulp/ subdirectories independently (Doug Ledford) [1107621]
-- [infiniband] ehca: Returns an error on ib_copy_to_udata() failure (Doug Ledford) [1107621]
-- [net] sched: shrink struct qdisc_skb_cb to 28 bytes (Doug Ledford) [1107621 1140601]
-
-* Tue Oct 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-191.el7]
-- [fs] fuse: ignore entry-timeout LOOKUP_REVAL (Carlos Maiolino) [1124880]
-- [fs] fuse: Timeout comparison fix (Carlos Maiolino) [1128802]
-- [fs] lockd: Try to reconnect if statd has moved (Benjamin Coddington) [1120850]
-- [fs] sunrpc: Don't wake tasks during connection abort (Benjamin Coddington) [1120850]
-- [fs] Revert: writeback: do not sync data dirtied after sync start (Brian Foster [1085828]
-- [fs] nfsd4: fix corruption of NFSv4 read data ("J. Bruce Fields") [1148055]
-- [fs] gfs2: revert "GFS2: d_splice_alias() can't return error" (Robert S Peterson) [1141899]
-
-* Mon Oct 20 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-190.el7]
-- [scsi] mpt3sas: Use pci_enable_msix_exact() instead of pci_enable_msix() (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Use pci_enable_msix_exact() instead of pci_enable_msix() (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: fix undefined reference to `__udivdi3' compilation errors (Tomas Henzl) [1088524]
-- [scsi] mpt3sas, mpt2sas: fix scsi_add_host error handling problems in _scsih_probe (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Bump mpt3sas driver version to 04.100.00.00 (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Added Reply Descriptor Post Queue (RDPQ) Array support (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Added OEM branding Strings (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Copyright in driver sources is updated for year the 2014 (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: MPI2.5 Rev H (2.5.3) specifications (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Bump mpt3sas driver version to 03.100.00.00 (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Clear PFA Status on SGPIO when PFA Drive is Removed or Replaced (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: MPI2.5 Rev G (2.5.2) specifications (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: delay scsi_add_host call to work with scsi-mq (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Rework the MSI-X grouping code (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: combine fw_event_work and its event_data (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: correct scsi_(target, device) hostdata allocation (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Remove phys on topology change (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Bump mpt2sas driver version to 18.100.00.00 (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Get IOC_FACTS information using handshake protocol only after HBA card gets into READY or Operational state (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Added Reply Descriptor Post Queue (RDPQ) Array support (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Avoid type casting for direct I/O commands (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Bump mpt2sas driver version to 17.100.00.00 (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Clear PFA Status on SGPIO when PFA Drive is Removed or Replaced (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Copyright in driver sources is updated for year the 2014 (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: MPI2 Rev Y (2.00.17) and Rev Z (2.00.18) specifications (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Added driver module parameter max_msix_vectors (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: delay scsi_add_host call to work with scsi-mq (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Rework the MSI-X grouping code (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: annotate ioc->reply_post_host_index as __iomem (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: combine fw_event_work and its event_data (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: correct scsi_(target, device) hostdata allocation (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Don't disable device twice at suspend (Tomas Henzl) [1088524]
-
-* Fri Oct 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-189.el7]
-- [scsi] lpfc: driver release 10.2.8021.1 for RHEL7 (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fixed crash from page fault caused by use after rport delete (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix locking issues with abort data paths (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix race between LOGO/PLOGI handling causing NULL pointer (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix IP Reset processing - wait for RDY before proceeding (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix quarantined XRI recovery qualifier state in link bounce (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix discovery timeout during nameserver login (Rob Evers) [1149846]
-- [net] ipv6: mld: answer mldv2 queries with mldv1 reports in mldv1 fallback (Daniel Borkmann) [1143429]
-- [net] team: avoid race condition in scheduling delayed work (Jiri Pirko) [1149239]
-- [net] fix UDP tunnel GSO of frag_list GRO packets (Jiri Benc) [1119392]
-- [net] vxlan: fix incorrect initializer in union vxlan_addr (Daniel Borkmann) [1130643]
-- [net] vxlan: fix crash when interface is created with no group (Daniel Borkmann) [1130643]
-- [net] vxlan: fix nonfunctional neigh_reduce() (Daniel Borkmann) [1130643]
-- [net] vxlan: fix potential NULL dereference in arp_reduce() (Daniel Borkmann) [1130643]
-- [net] vxlan: remove unused port variable in vxlan_udp_encap_recv() (Daniel Borkmann) [1130643]
-- [net] vxlan: remove extra newline after function definition (Daniel Borkmann) [1130643]
-
-* Mon Oct 13 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-188.el7]
-- [kernel] workqueue: Add quiescent state between work items (Jiri Pirko) [1149250]
-- [crypto] qat: Enable interrupts from all 32 bundles (Nikolay Aleksandrov) [1091130]
-- [char] ipmi: Clear drvdata when interface is removed (Tony Camuso) [1136589]
-- [md] raid5: disable 'DISCARD' by default due to safety concerns (Jes Sorensen) [1149931]
-- [md] raid1: fix_read_error should act on all non-faulty devices (Jes Sorensen) [1149931]
-- [virt] hyperv: NULL dereference on error (Jason Wang) [1146357]
-- [virt] hyperv: Increase the buffer length for netvsc_channel_cb() (Jason Wang) [1146357]
-- [virt] hyperv: Adjust the size of sendbuf region to support ws2008r2 (Jason Wang) [1146357]
-- [virt] hyperv/net: Increase the size of the sendbuf region (Jason Wang) [1146357]
-- [virt] hyperv: Fix error return code in netvsc_init_buf() (Jason Wang) [1146357]
-- [virt] hyperv: Add netpoll support (Jason Wang) [1146357]
-- [virt] hyperv/net: remove unnecessary null test before kfree (Jason Wang) [1146357]
-- [virt] hyperv: Add handler for RNDIS_STATUS_NETWORK_CHANGE event (Jason Wang) [1146357]
-- [virt] hyperv: fix apparent cut-n-paste error in send path teardown (Jason Wang) [1146357]
-- [virt] hyperv: Add hash value into RNDIS Per-packet info (Jason Wang) [1146357]
-- [virt] hyperv/net: Add support for netvsc build without CONFIG_SYSFS flag (Jason Wang) [1146357]
-- [virt] hyperv: Properly handle checksum offload (Jason Wang) [1146357]
-- [virt] hyperv: Enable sendbuf mechanism on the send path (Jason Wang) [1146357]
-- [virt] hyperv: Simplify the send_completion variables (Jason Wang) [1146357]
-- [virt] hyperv: Remove recv_pkt_list and lock (Jason Wang) [1146357]
-- [virt] hyperv: Add support for virtual Receive Side Scaling (vRSS) (Jason Wang) [1146357]
-- [virt] hyperv/net: Address UDP checksum issues (Jason Wang) [1146357]
-- [virt] hyperv/net: Negotiate suitable ndis version for offload support (Jason Wang) [1146357]
-- [virt] hyperv/net: Allocate memory for all possible per-pecket information (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable large send offload (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable send side checksum offload (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable receive side IP checksum offload (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable offloads on the host (Jason Wang) [1146357]
-- [virt] hyperv/net: Cleanup the send path (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable scatter gather I/O (Jason Wang) [1146357]
-- [virt] hyperv: Move state setting for link query (Jason Wang) [1146357]
-- [virt] hyperv: Add latest NetVSP versions to auto negotiation (Jason Wang) [1146357]
-- [virt] hyperv/net: Cleanup the netvsc receive callback functio (Jason Wang) [1146357]
-- [virt] hyperv/net: Cleanup the receive path (Jason Wang) [1146357]
-- [virt] hyperv/net: Get rid of the rndis_filter_packet structure (Jason Wang) [1146357]
-- [virt] hyperv: Fix the carrier status setting (Jason Wang) [1146357]
-- [virt] hyperv/util: Fix a bug in the KVP code (Jason Wang) [1102584]
-- [virt] hyperv/vmbus: Fix a bug in the channel callback dispatch code (Jason Wang) [1146357]
-- [virt] hyperv: remove meaningless pr_err() in vmbus_recvpacket_raw() (Jason Wang) [1146357]
-- [virt] tools/hyperv: Handle the case when the target file exists correctly (Jason Wang) [1146358]
-- [virt] hyperv/hv_fcopy: fix a race condition for SMP guest (Jason Wang) [1146358]
-- [virt] hyperv: fcopy_open() can be static (Jason Wang) [1146358]
-- [virt] hyperv: Implement the file copy service (Jason Wang) [1146358]
-- [virt] hyperv: Add hyperv.h to uapi headers (Jason Wang) [1146358]
-- [virt] hyperv/vmbus: Fix a bug in vmbus_open() (Jason Wang) [1146358]
-- [virt] hyperv/vmbus: Properly protect calls to smp_processor_id() (Jason Wang) [1146358]
-- [virt] hyperv: Remove unnecessary comparison of unsigned against 0 (Jason Wang) [1146358]
-- [virt] hyperv/vmbus: Implement per-CPU mapping of relid to channel (Jason Wang) [1146358]
-- [virt] hyperv: Eliminate the channel spinlock in the callback path (Jason Wang) [1146358]
-- [virt] hyperv/vmbus: Support per-channel driver state (Jason Wang) [1146358]
-
-* Fri Oct 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-187.el7]
-- [ethernet] qlcnic: Remove duplicate object file from Makefile (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Initialize dcbnl_ops before register_netdev (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Set driver version before registering netdev (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix update of ethtool stats (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.61 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance Tx timeout debug data collection (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.60 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Optimize ring count validations (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Pre-allocate DMA buffer used for minidump collection (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: remove duplicate QLC_83XX_GET_LSO_CAPABILITY define (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Initialize mailbox cmd structure to zero (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: info leak in qlcnic_dcb_peer_app_info() (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Use time_before() (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: get rid of SET_ETHTOOL_OPS (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.59 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Collect firmware dump using DMA on 82xx adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add mac learning support to SR-IOV VF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add support to process commands in atomic context (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow SR-IOV VF probe in hypervisor (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Set real_num_{tx|rx}_queues properly (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix panic while dumping TX queues on TX timeout (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.58 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Limit vNIC support in legacy interrupt mode (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add driver logs in error path (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow setting TX interrupt coalescing parameters from VF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add hwmon interface to export board temperature (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Optimize MAC learning code (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix memory leak (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Reset firmware API lock at driver load time (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix MSI-X initialization code (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Do not disable SR-IOV when VFs are assigned to VMs (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix QLogic application/driver interface for virtual NIC configuration (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix PVID configuration on eSwitch port (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix max ring count calculation (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix to send INIT_NIC_FUNC as first mailbox (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix panic due to uninitialzed delayed_work struct in use (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: include irq.h for irq definitions (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix build failure due to undefined reference to `vxlan_get_rx_port' (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Remove casts of pointer to same type (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.57 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add VXLAN Rx offload support (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add VXLAN Tx offload support (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb, a couple off by one bugs (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix number of rings when we fall back from msix to legacy (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow any VLAN to be configured from VF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix usage of use_msi and use_msi_x module parameters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix function return error check (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.56 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance semaphore lock access failure error message (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow vlan0 traffic (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance driver message in failed state (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Updates to QLogic application/driver interface for virtual NIC configuration (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Re-factor firmware minidump template header handling (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Cleanup qlcnic_enable_msix() return values (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: update version to 5.3.55 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix loopback test failure (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix initialization of vlan list (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Correct off-by-one errors in bounds checks (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance logic to calculate msix vectors (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Refactor interrupt coalescing code for all adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update poll controller code path (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Interrupt code cleanup (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance Tx timeout debugging (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Use bool for rx_mac_learn (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: fix sparse warnings (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: remove unused code (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: make local functions static (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.54 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enable IPv6 LRO even if IP address is not programmed (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix SR-IOV cleanup code path (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enable beaconing for 83xx/84xx Series adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Do MAC learning for SRIOV PF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Turn on promiscous mode for SRIOV PF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enable VF flood bit on PF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Restrict VF from configuring any VLAN mode (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Convert vmalloc/memset to kcalloc (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix ethtool statistics length calculation (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix bug in TX statistics (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix resource allocation for TX queues (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix loopback diagnostic test (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Mark functions as static in qlcnic_83xx_hw.c (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Mark functions as static in qlcnic_io.c (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: update version to 5.3.53 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Support for 16 virtual NIC functions (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: VLAN enhancement for 84XX adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow single Tx/Rx queue for all adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Refactor initialize nic code path (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Issue INIT_NIC command only once (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Disable DCB operations from SR-IOV VFs (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Dump mailbox registers when mailbox command times out (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix mailbox processing during diagnostic test (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow firmware dump collection when auto firmware recovery is disabled (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix memory allocation (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix TSS/RSS validation for 83xx/84xx series adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix TSS/RSS ring validation logic (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix typo in printk (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: update version to 5.3.52 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enable multiple Tx queue support for 83xx/84xx Series adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: refactor Tx/SDS ring calculation and validation in driver (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance ethtool Statistics for Multiple Tx queue (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Register netdev in FAILED state for 83xx/84xx (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Do not read QLCNIC_FW_CAPABILITY_MORE_CAPS bit for 83xx adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Do not force adapter to perform LRO without destination IP check (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: remove unnecessary pci_set_drvdata() (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Validate Tx queue only for 82xx adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: update version to 5.3.51 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Skip unknown entry type while collecting firmware dump (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb code cleanup and refactoring (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Remove redundant eSwitch enable commands (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update ethtool standard pause settings (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Firmware dump collection when auto recovery is disabled (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance ethtool to display ring indices and interrupt mask (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Print informational messages only once during driver load (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: add missing destroy_workqueue() on error path in qlcnic_probe() (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Miscellaneous conversions to ETH_ALEN (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix SR-IOV configuration (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix register device in FAILED state for 82xx (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix warning reported by kbuild test robot (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: use standard NAPI weights (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: remove a stray semicolon (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix sparse warning (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Convert uses of compare_ether_addr to ether_addr_equal (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.50 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add support for per port eswitch configuration (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Restructuring of qlc_83xx_fw_info structure (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add AER support for 83xx adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add AER callback handlers (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Store firmware dump state in CAMRAM register (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Use firmware recommended dump capture mask as default (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Remove inline keyword (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance PVID handling for 84xx adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.49 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb, Add support for CEE Netlink interface (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb: Register DCB AEN handler (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb, Get DCB parameters from the adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb, Query adapter DCB capabilities (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Back off patch for the upstream commit "d6e9c89a8d3cf0a5184badbcd50169179af27721" (Chad Dupuis) [1089352]
-- [ethernet] be2net: query max_tx_qs for BE3 super-nic profile from FW (Ivan Vecera) [1088575]
-- [ethernet] be2net: define macro for_all_tx_queues_on_eq() (Ivan Vecera) [1088575]
-- [ethernet] be2net: get rid of TX budget (Ivan Vecera) [1088575]
-- [ethernet] be2net: make be_cmd_get_regs() return a status (Ivan Vecera) [1088575]
-- [ethernet] be2net: define BE_MAX_MTU (Ivan Vecera) [1088575]
-- [ethernet] be2net: remove unncessary gotos (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix log messages in lancer FW download path (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add a dma_mapping_error counter in ethtool (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add TX completion error statistics in ethtool (Ivan Vecera) [1088575]
-- [ethernet] be2net: add a description for counter rx_input_fifo_overflow_drop (Ivan Vecera) [1088575]
-- [ethernet] be2net: shorten AMAP_GET/SET_BITS() macro calls (Ivan Vecera) [1088575]
-- [ethernet] be2net: add a few log messages (Ivan Vecera) [1088575]
-- [ethernet] be2net: Set skb->csum_level for encapsulated checksum (Ivan Vecera) [1088575]
-- [ethernet] be2net: Remove DEFINE_PCI_DEVICE_TABLE macro use (Ivan Vecera) [1088575]
-- [ethernet] be2net: support deleting FW dump via ethtool (only for Lancer) (Ivan Vecera) [1088575]
-- [ethernet] be2net: ignore VF mac address setting for the same mac (Ivan Vecera) [1088575]
-- [ethernet] be2net: ignore get/set profile FW cmd failures (Ivan Vecera) [1088575]
-- [ethernet] be2net: Issue shutdown event to ocrdma driver (Ivan Vecera) [1088575]
-- [ethernet] be2net: update driver version to 10.4 (Ivan Vecera) [1088575]
-- [ethernet] be2net: use adapter->flags to track SRIOV state (Ivan Vecera) [1088575]
-- [ethernet] be2net: avoid SRIOV config for BE2 chip (Ivan Vecera) [1088575]
-- [ethernet] be2net: use be_max_vfs() macro to access max-vfs (Ivan Vecera) [1088575]
-- [ethernet] be2net: use "if (!foo)" test style (Ivan Vecera) [1088575]
-- [ethernet] be2net: remove unused structures in be_cmds.h (Ivan Vecera) [1088575]
-- [ethernet] be2net: reduce arguments passed to FW-cmd routines (Ivan Vecera) [1088575]
-- [ethernet] be2net: update UE bit description strings (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix return status of some ndo methods (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix return status of some ethtool methods (Ivan Vecera) [1088575]
-- [ethernet] be2net: return -ENOMEM for memory allocation failures (Ivan Vecera) [1088575]
-- [ethernet] be2net: return -ETIMEDOUT when a FW-cmd times out (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix error status for FW-download (Ivan Vecera) [1088575]
-- [ethernet] be2net: use -ENETDOWN error status when interface is down (Ivan Vecera) [1088575]
-- [ethernet] be2net: set EQ DB clear-intr bit in be_open() (Ivan Vecera) [1088575]
-- [ethernet] be2net: re-enable vlan filtering mode asap (Ivan Vecera) [1088575]
-- [ethernet] be2net: create optimal number of queues on SR-IOV config (Ivan Vecera) [1088575]
-- [ethernet] be2net: read VF's capabilities from GET_PROFILE_CONFIG cmd (Ivan Vecera) [1088575]
-- [ethernet] be2net: remove be_cmd_get_profile_config_mbox/mccq() variants (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix qnq mode detection on VFs (Ivan Vecera) [1088575]
-- [ethernet] be2net: cleanup MCC async event processing code (Ivan Vecera) [1088575]
-- [ethernet] be2net: move async cmd processing to a separate routine (Ivan Vecera) [1088575]
-- [ethernet] be2net: re-factor MCCQ error status handling code (Ivan Vecera) [1088575]
-- [ethernet] be2net: support flashing new regions on Skyhawk-R (Ivan Vecera) [1088575]
-- [ethernet] be2net: fixup TX-rate setting code for Skyhawk-R (Ivan Vecera) [1088575]
-- [ethernet] be2net: skip multicast promiscuos setting in already set (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool (Ivan Vecera) [1088575]
-- [ethernet] be2net: get rid of SET_ETHTOOL_OPS (Ivan Vecera) [1088575]
-- [ethernet] be2net: use MCCQ instead of MBOX in be_cmd_rss_config() (Ivan Vecera) [1088575]
-- [ethernet] be2net: include rx-compl error counter in ethtool stats (Ivan Vecera) [1088575]
-- [ethernet] be2net: remove unused code in be_cmd_vlan_config() (Ivan Vecera) [1088575]
-- [ethernet] be2net: covert vlan array to bit-map (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix line wrap and function call indentation in be_ethtool.c (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix function call indentation in be_cmds.c (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix line wrap and function call indentation in be_main.c (Ivan Vecera) [1088575]
-- [ethernet] be2net: Support for configurable RSS hash key (Ivan Vecera) [1088575]
-- [ethernet] be2net: Fix to reap TX compls till HW doesn't respond for some time (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add abi version between be2net and ocrdma (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix build dependency on VxLAN (Ivan Vecera) [1088575 1093399 1099545]
-- [ethernet] be2net: csum, tso and rss steering offload support for VxLAN (Ivan Vecera) [1088575 1093399 1099545]
-- [ethernet] be2net: add FW cmds needed for VxLAN offloads (Ivan Vecera) [1088575 1093399 1099545]
-- [ethernet] be2net: Call dev_kfree_skby_any instead of kfree_skb (Ivan Vecera) [1088575]
-- [ethernet] be2net: update driver version to 10.2 (Ivan Vecera) [1088575]
-- [ethernet] be2net: Fix vlans_added counter (Ivan Vecera) [1088575]
-- [ethernet] be2net: Create multiple TXQs on RSS capable multi-channel BE3-R interfaces (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix pmac_id[] allocation size (Ivan Vecera) [1088575]
-- [ethernet] be2net: log LPVID used in multi-channel configs (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add link state control for VFs (Ivan Vecera) [1088575]
-- [ethernet] be2net: Use GET_PROFILE_CONFIG cmd for BE3-R to query max-vfs (Ivan Vecera) [1088575]
-- [ethernet] be2net: dma_sync each RX frag before passing it to the stack (Ivan Vecera) [1088575]
-- [ethernet] be2net: isolate TX workarounds not applicable to Skyhawk-R (Ivan Vecera) [1088575]
-- [ethernet] be2net: Fix skb double free in be_xmit_wrokarounds() failure path (Ivan Vecera) [1088575]
-- [ethernet] be2net: clear promiscuous bits in adapter->flags while disabling promiscuous mode (Ivan Vecera) [1088575]
-- [ethernet] be2net: Fix to reset transparent vlan tagging (Ivan Vecera) [1088575]
-- [ethernet] be2net: Use pci_enable_msix_range() instead of pci_enable_msix() (Ivan Vecera) [1088575]
-- [ethernet] be2net: refactor multi-channel config code for Skyhawk-R chip (Ivan Vecera) [1088575]
-- [ethernet] be2net: Update copyright year (Ivan Vecera) [1088575]
-- [ethernet] be2net: Log a kernel message when UE is detected in BE & Skyhawk (Ivan Vecera) [1088575]
-- [ethernet] be2net: Explicitly initialize u64_stats_sync structures for lockdep (Ivan Vecera) [1088575]
-- [drm] bochs: changes from 3.14..3.15 for bochs (Gerd Hoffmann) [1043379]
-- [drm] bochs: replace ALIGN(PAGE_SIZE) by PAGE_ALIGN (Gerd Hoffmann) [1043379]
-- [drm] bochs: Remove unecessary NULL check in gem_free (Gerd Hoffmann) [1043379]
-- [drm] bochs: Remove unnecessary NULL check in bo_unref (Gerd Hoffmann) [1043379]
-- [drm] bochs: drop unused struct fields (Gerd Hoffmann) [1043379]
-- [drm] bochs: add power management support (Gerd Hoffmann) [1043379]
-- [drm] bochs: fix bochs kconfig dependencies (Gerd Hoffmann) [1043379]
-- [drm] bochs: new driver (Gerd Hoffmann) [1043379]
-- [iommu] amd: Split init_iommu_group() from iommu_init_device() (Myron Stowe) [1141937]
-- [iommu] Rework iommu_group_get_for_pci_dev() (Myron Stowe) [1141937]
-
-* Thu Oct 09 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-186.el7]
-- [kernel] sched/balancing: Reduce the rate of needless idle load balancing (Larry Woodman) [1120318]
-- [kernel] sched/fair: Implement fast idling of CPUs when the system is partially loaded (Larry Woodman) [1120318]
-- [kernel] sched: Skip double execution of pick_next_task_fair() (Larry Woodman) [1120318]
-- [md] Revert: dm: change sector_count member in clone_info from sector_t to unsigned (Mike Snitzer) [1147574]
-- [md] Revert: dm: introduce dm_accept_partial_bio (Mike Snitzer) [1147574]
-- [md] Revert: dm-snapshot: allocate a per-target structure for snapshot-origin target (Mike Snitzer) [1147574]
-- [md] Revert: dm-snapshot: do not split read bios sent to snapshot-origin target (Mike Snitzer) [1147574]
-- [virt] kvm: nested vmx - disable perf cpuid reporting (Marcelo Tosatti) [1083969]
-- [mm] slub: Handle NULL parameter in kmem_cache_flags (Ilya Dryomov) [1143028]
-- [crypto] algif: avoid excessive use of socket buffer in skcipher (Ondrej Kozina) [1136075]
-- [kernel] time/clocksource: Move cycle_last validation to core code (Prarit Bhargava) [1148398]
-- [kernel] time/clocksource: Make delta calculation a function (Prarit Bhargava) [1148398]
-- [mm] vmscan: clear kswapd's special reclaim powers before exiting (Motohiro Kosaki) [810042]
-- [x86] mm/numa: fix array index overflow when synchronizing nid to memblock.reserved (Motohiro Kosaki) [810042]
-- [x86] mm/numa: initialize numa_kernel_nodes in numa_clear_kernel_node_hotplug() (Motohiro Kosaki) [810042]
-- [mm] page_alloc: make movable_node have higher priority (Motohiro Kosaki) [810042]
-- [x86] memblock, mem_hotplug: make memblock skip hotpluggable regions if needed (Motohiro Kosaki) [810042]
-- [x86] mm: mark all nodes the kernel resides un-hotpluggable (Motohiro Kosaki) [810042]
-- [x86] mm: mark hotpluggable memory in memblock (Motohiro Kosaki) [810042]
-- [mm] memblock: make memblock_set_node() support different memblock_type (Motohiro Kosaki) [810042]
-- [mm] memblock/mem_hotplug: introduce MEMBLOCK_HOTPLUG flag to mark hotpluggable regions (Motohiro Kosaki) [810042]
-- [mm] memblock: numa - introduce flags field into memblock (Motohiro Kosaki) [810042]
-- [mm] memblock: debug - correct displaying of upper memory boundary (Motohiro Kosaki) [810042]
-- [x86] mm: get pg_data_t's memory from other node (Motohiro Kosaki) [810042]
-- [mm] mem-hotplug: introduce movable_node boot option (Motohiro Kosaki) [810042]
-- [x86] kernel/setup: do reserve_crashkernel() after SRAT is parsed (Motohiro Kosaki) [810042]
-- [x86] mem-hotplug: support initialize page tables in bottom-up (Motohiro Kosaki) [810042]
-- [x86] mm: factor out of top-down direct mapping setup (Motohiro Kosaki) [810042]
-- [mm] memblock: introduce bottom-up allocation mode (Motohiro Kosaki) [810042]
-- [mm] memblock: factor out of top-down allocation (Motohiro Kosaki) [810042]
-- [x86] mm: Add 'step_size' comments to init_mem_mapping() (Motohiro Kosaki) [810042]
-- [x86] srat: Print Hot-Pluggable Field in SRAT (Motohiro Kosaki) [810042]
-
-* Thu Oct 09 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-185.el7]
-- [fs] udf: Avoid infinite loop when processing indirect ICBs (Jacob Tanenbaum) [1142322] {CVE-2014-6410}
-- [fs] eliminate BUG() call when there's an unexpected lock on file close (Frank Sorenson) [1148130]
-- [hid] fix off by one error in various _report_fixup routines (Jacob Tanenbaum) [1141394] {CVE-2014-3184}
-- [hid] logitech-dj: fix OOB array access (Jacob Tanenbaum) [1141212] {CVE-2014-3182}
-- [hid] picolcd: fix memory corruption via OOB write (Jacob Tanenbaum) [1141409] {CVE-2014-3186}
-- [usb] serial/whiteheat: fix memory corruption flaw (Jacob Tanenbaum) [1141404] {CVE-2014-3185}
-- [hid] fix OOB write in magicmouse driver (Jacob Tanenbaum) [1141177] {CVE-2014-3181}
-- [x86] uv/nmi: Fix UV NMI handler when KDB not configured (George Beshers) [1138519]
-- [x86] uv/nmi: Fix Sparse warnings (George Beshers) [1138519]
-- [kernel] debug: Fix no KDB config problem (George Beshers) [1138519]
-- [x86] uv: Add call to KGDB/KDB from NMI handler (George Beshers) [1138519]
-- [kernel] debug: Add support for external NMI handler to call KGDB/KDB (George Beshers) [1138519]
-- [x86] uv: Add kdump to UV NMI handler (George Beshers) [1138519]
-- [x86] uv: Add summary of cpu activity to UV NMI handler (George Beshers) [1138519]
-- [x86] uv: Update UV support for external NMI signals (George Beshers) [1138519]
-- [x86] uv: Move NMI support (George Beshers) [1138519]
-- [infiniband] ipath: Add P_Key change event support (Doug Ledford) [1085961]
-- [infiniband] qib: Additional Intel branding changes (Doug Ledford) [1085961]
-- [infiniband] ipath: Use time_before()/_after() (Doug Ledford) [1085961]
-- [infiniband] ipath: Translate legacy diagpkt into newer extended diagpkt (Doug Ledford) [1085961]
-- [infiniband] qib: Fix port in pkey change event (Doug Ledford) [1085961]
-- [infiniband] qib: Use pci_enable_msix_range() instead of pci_enable_msix() (Doug Ledford) [1085961]
-- [infiniband] qib: Cleanup qib_register_observer() (Doug Ledford) [1085961]
-- [infiniband] qib: Change SDMA progression mode depending on single- or multi-rail (Doug Ledford) [1085961]
-- [infiniband] qib: Remove duplicate check in get_a_ctxt() (Doug Ledford) [1085961]
-- [infiniband] qib: Fix memory leak of recv context when driver fails to initialize (Doug Ledford) [1085961]
-- [infiniband] qib: fixup indentation in qib_ib_rcv() (Doug Ledford) [1085961]
-- [infiniband] qib: add missing braces in do_qib_user_sdma_queue_create() (Doug Ledford) [1085961]
-- [infiniband] qib: Modify software pma counters to use percpu variables (Doug Ledford) [1085961]
-- [infiniband] qib: Add percpu counter replacing qib_devdata int_counter (Doug Ledford) [1085961]
-- [infiniband] qib: Fix debugfs ordering issue with multiple HCAs (Doug Ledford) [1085961]
-- [infiniband] ipath: Fix potential buffer overrun in sending diag packet routine (Doug Ledford) [1085961]
-- [infiniband] qib: Fix potential buffer overrun in sending diag packet routine (Doug Ledford) [1085961]
-- [infiniband] qib: Add missing serdes init sequence (Doug Ledford) [1085961]
-- [infiniband] qib: Fix QP check when looping back to/from QP1 (Doug Ledford) [1085961]
-- [kernel] audit: drop arch from __audit_syscall_entry() interface (Richard Guy Briggs) [1053921]
-- [kernel] audit: fix build error when asm/syscall.h does not exist (Richard Guy Briggs) [1053921]
-- [kernel] audit: add arch field to seccomp event log (Richard Guy Briggs) [1053921]
-- [kernel] audit: __audit_syscall_entry - ignore arch arg and call syscall_get_arch() directly (Richard Guy Briggs) [1053921]
-- [kernel] audit: audit_syscall_entry() should not require the arch (Richard Guy Briggs) [1053921]
-- [kernel] audit: implement syscall_get_arch for all arches (Richard Guy Briggs) [1053921]
-- [kernel] syscall.h: fix doc text for syscall_get_arch() (Richard Guy Briggs) [1053921]
-- [kernel] audit: use uapi/linux/audit.h for AUDIT_ARCH declarations (Richard Guy Briggs) [1053921]
-- [kernel] syscall_get_arch: remove useless function arguments (Richard Guy Briggs) [1053921]
-
-* Wed Oct 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-184.el7]
-- [scsi] cxgb4i: Fix ipv6 build failure caught with randconfig (Sai Vemuri) [1126539]
-- [scsi] cxgb4i: remove spurious use of rcu (Sai Vemuri) [1126539]
-- [scsi] cxgb4i Guard ipv6 code with a config check (Sai Vemuri) [1126539]
-- [scsi] cxgb4i: Add ipv6 code to driver, call into libcxgbi ipv6 api (Sai Vemuri) [1126539]
-- [scsi] libcxgbi: Add ipv6 api to driver (Sai Vemuri) [1126539]
-- [scsi] cxgb4i: Use cxgb4_select_ntuple to correctly calculate ntuple fields (Sai Vemuri) [1126539]
-- [ethernet] cxgb4: Issue mbox commands on correct mbox (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Avoid dumping Write-only registers in register dump (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Detect and display firmware reported errors (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix T5 adapter accessing T4 adapter registers (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fixed the code to use correct length for part number (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix for handling 1Gb/s SFP+ Transceiver Modules (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Free completed tx skbs promptly (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix race condition in cleanup (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Update FW version string to match FW binary version (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix for SR-IOV VF initialization (Sai Vemuri) [1124947]
-- [scsi] cxgb4i: Move stray CPL definitions to cxgb4 driver (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: only free allocated fls (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Only call CQ completion handler if it is armed (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fixed incorrect check for memory operation in t4_memory_rw (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Don't limit TPTE count to 32KB (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: advertise the correct device max attributes (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Support query_qp() verb (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: log detailed warnings for negative advice (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Add the MC1 registers to read in the interrupt handler (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: fix for 64-bit integer division (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Export symbols required by cxgb4i for ipv6 support and required defines (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Move common defines to cxgb4 (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: work request logging feature (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: display TPTE on errors (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: use firmware ord/ird resource limits (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Detect Ing. Padding Boundary at run-time (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Call iwpm_init() only once (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Initialize the device status page (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Clean up connection on ARP error (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix skb_leak in reject_cr() (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: remove unnecessary null test before debugfs_remove_recursive (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Adds device ID for few more Chelsio T4 Adapters (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Replaced the backdoor mechanism to access the HW memory with PCIe Window method (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Use FW interface to get BAR0 value (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fixes cxgb4 probe failure in VM when PF is exposed through PCI Passthrough (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: use dev_port to identify ports (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Not need to hold the adap_rcu_lock lock when read adap_rcu_list (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: don't truncate the recv window size (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Choose appropriate hw mtu index and ISS for iWARP connections (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Allocate and use IQs specifically for indirect interrupts (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Add support for iWARP Port Mapper user space service (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: add missing padding at end of struct c4iw_alloc_ucontext_resp (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Add missing padding at end of struct c4iw_create_cq_resp (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix vlan support (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix memory leaks in c4iw_alloc() error paths (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Check if rx checksum offload is enabled, while reading hardware calculated checksum (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Decode the firmware port and module type a bit more for ethtool (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Decode PCIe Gen3 link speed (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Update Kconfig to include Chelsio T5 adapter (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Only allow kernel db ringing for T4 devs (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Force T5 connections to use TAHOE congestion control (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix endpoint mutex deadlocks (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: use the correct max size for firmware flash (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Save the correct mac addr for hw-loopback connections in the L2T (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix over-dereference when terminating (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Use uninitialized_var() (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Add missing debug stats (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Initialize reserved fields in a FW work request (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Use pr_warn_ratelimited (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Max fastreg depth depends on DSGL support (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: SQ flush fix (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: rmb() after reading valid gen bit (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Endpoint timeout fixes (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Use the BAR2/WC path for kernel QPs and T5 devices (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Disable DSGL use by default (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: rx_data() needs to hold the ep mutex (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Drop RX_DATA packets if the endpoint is gone (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Lock around accept/reject downcalls (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: set error code on kmalloc() failure (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Adds device ID for few more Chelsio Adapters (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Remove addressof casts to same type (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Call dev_kfree/consume_skb_any instead of [dev_]kfree_skb (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Update snd_seq when sending MPA messages (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Connect_request_upcall fixes (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Ignore read reponse type 1 CQEs (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix possible memory leak in RX_PKT processing (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Don't leak skb in c4iw_uld_rx_handler() (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Save the correct map length for fast_reg_page_lists (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Default peer2peer mode to 1 (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Mind the sq_sig_all/sq_sig_type QP attributes (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix incorrect BUG_ON conditions (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Always release neigh entry (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Allow loopback connections (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Cap CQ size at T4_MAX_IQ_SIZE (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix four byte info leak in c4iw_create_cq() (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix underflows in c4iw_create_qp() (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Doorbell Drop Avoidance Bug Fixes (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Treat CPL_ERR_KEEPALV_NEG_ADVICE as negative advice (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Calculate len properly for LSO path (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Updates for T5 SGE's Egress Congestion Threshold (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Rectify emitting messages about SGE Ingress DMA channels being potentially stuck (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Add code to dump SGE registers when hitting idma hangs (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix some small bugs in t4_sge_init_soft() when our Page Size is 64KB (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Stop using ethtool SPEED_* constants (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Add more PCI device ids (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Don't assume LSO only uses SGL path in t4_eth_xmit() (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Remove unused registers and add missing ones (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Query firmware for T5 ULPTX MEMWRITE DSGL capabilities (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: LE-Workaround is not atomic in firmware (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Allow >10G ports to have multiple queues (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Print adapter VPD Part Number instead of Engineering Change field (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Add support to recognize 40G links (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Add missing neigh_release in LE-Workaround path (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix gcc warning on 32-bit arch (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: silence shift wrapping static checker warning (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Changed FW check version to match FW binary version (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: make functions static and remove dead code (Sai Vemuri) [1124947]
-- [tools] perf: Disable kernel symbol demangling by default (Jiri Olsa) [1140522]
-- [tools] perf/symbols: Don't demangle parameters and such by default (Jiri Olsa) [1140522]
-- [powerpc] pseries: Fix endian issues in memory hotplug (Steve Best) [1142244]
-- [powerpc] pseries/hvcserver: Fix endian issue in hvcs_get_partner_info (Steve Best) [1142244]
-- [powerpc] powernv: Interface to register/unregister opal dump region (Steve Best) [1142244]
-- [kernel] printk: Add function to return log buffer address and size (Steve Best) [1142244]
-- [acpi] hotplug: Check scan handlers in acpi_scan_hot_remove() (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Simplify acpi_set_hp_context() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Eliminate acpiphp_dev_to_bridge() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Add hotplug contexts to PCI host bridges (Prarit Bhargava) [1141846]
-- [acpi] Remove duplicate definitions of PREFIX (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Use pci_device_is_present() (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Rework deferred execution of acpi_device_hotplug() (Prarit Bhargava) [1141846]
-- [ata] libata-acpi: Add hotplug contexts to ACPI companions of SATA devices (Prarit Bhargava) [1141846]
-- [acpi] dock: Add .uevent() callback to struct acpi_hotplug_context (Prarit Bhargava) [1141846]
-- [acpi] dock: Use callback pointers from devices' ACPI hotplug contexts (Prarit Bhargava) [1141846]
-- [acpi] dock: Use ACPI device object pointers instead of ACPI handles (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Add .fixup() callback to struct acpi_hotplug_context (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Do not clear event callback pointer for docks (Prarit Bhargava) [1141846]
-- [acpi] Drop acpi_evaluate_hotplug_ost() and ACPI_HOTPLUG_OST (Prarit Bhargava) [1141846]
-- [acpi] rename acpi_evaluate_hotplug_ost() to acpi_evaluate_ost() (Prarit Bhargava) [1141846]
-- [acpi] dock: Dispatch dock notifications from the global notify handler (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Add ACPIPHP contexts to devices handled by PCIeHP (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Rename register_slot() to acpiphp_add_context() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Relax the checking of _STA return values (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Execute _EJ0 under the ACPI scan lock (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Hotplug notifications from acpi_bus_notify() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Simplify acpi_install_hotplug_notify_handler() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Rework acpiphp_check_host_bridge() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Rework the handling of eject requests (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Consolidate ACPIPHP with ACPI core hotplug (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Define hotplug context lock in the core (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Fix potential race in acpi_bus_notify() (Prarit Bhargava) [1141846]
-- [acpi] acpica: Introduce acpi_get_data_full() and rework acpi_get_data() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Do not pass ACPI handle to hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Use acpi_handle_debug() in hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Simplify hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Drop crit_sect locking (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Drop acpiphp_bus_add() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Store acpi_device pointer in acpiphp_context (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Rework acpiphp_no_hotplug() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Drop acpiphp_bus_trim() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Simplify register_slot() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Proper kerneldoc comments for enumeration/removal (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Simplify disable_slot() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Fix bridge removal race vs dock events (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Fix bridge removal race in handle_hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Scan root bus under the PCI rescan-remove lock (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Move PCI rescan-remove locking to hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Remove entries from bus->devices in reverse order (Prarit Bhargava) [1141846]
-- [acpi] acpiphp: Fix radeon/nouveau VGA switcheroo problem related to hotplug (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Handle containers in a special way (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Add demand_offline hotplug profile flag (Prarit Bhargava) [1141846]
-- [acpi] bind: Move acpi_get_child() to drivers/ide/ide-acpi.c (Prarit Bhargava) [1141846]
-- [acpi] bind: Pass struct acpi_device pointer to acpi_bind_one() (Prarit Bhargava) [1141846]
-- [acpi] bind: Rework struct acpi_bus_type (Prarit Bhargava) [1141846]
-- [acpi] bind: Redefine acpi_preset_companion() (Prarit Bhargava) [1141846]
-- [acpi] bind: Redefine acpi_get_child() (Prarit Bhargava) [1141846]
-- [pci] acpi: Use acpi_find_child_device() for child devices lookup (Prarit Bhargava) [1141846]
-- [acpi] bind: Simplify child device lookups (Prarit Bhargava) [1141846]
-- [acpi] libata: Store an ACPI device pointer in struct acpi_dev_node (Prarit Bhargava) [1141846]
-- [ata] libata: remove power dependent device handling (Prarit Bhargava) [1141846]
-- [acpi] bind: Prefer device objects with _STA to those without it (Prarit Bhargava) [1141846]
-- [drm] nouveau/nouveau_acpi: convert acpi_get_handle() to acpi_has_method() (Prarit Bhargava) [1141846]
-- [acpi] libata: Remove ata_dev_acpi_handle stub in libata.h (Prarit Bhargava) [1141846]
-- [ata] libata-acpi: rework the ata acpi bind support (Prarit Bhargava) [1141846]
-- [acpi] Cleanup sparse warning on acpi_os_initialize1() (Prarit Bhargava) [1141846]
-
-* Tue Oct 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-183.el7]
-- [infiniband] usnic: backport to older netdev notifier arguments (Doug Ledford) [916382]
-- [infiniband] usnic: Fix source file missing copyright and license (Doug Ledford) [916382]
-- [infiniband] usnic: Remove '0x' when using pa format (Doug Ledford) [916382]
-- [infiniband] usnic: Fix smatch endianness error (Doug Ledford) [916382]
-- [infiniband] usnic: Remove unused includes of <linux/version.h> (Doug Ledford) [916382]
-- [infiniband] usnic: Use GFP_ATOMIC under spinlock (Doug Ledford) [916382]
-- [infiniband] usnic: Remove unused variable in usnic_debugfs_exit() (Doug Ledford) [916382]
-- [infiniband] usnic: Set userspace/kernel ABI ver to 4 (Doug Ledford) [916382]
-- [infiniband] usnic: Advertise usNIC devices as RDMA_NODE_USNIC_UDP (Doug Ledford) [916382]
-- [infiniband] usnic: Add dependency on CONFIG_INET (Doug Ledford) [916382]
-- [infiniband] usnic: Fix endianness-related warnings (Doug Ledford) [916382]
-- [infiniband] usnic: Append documentation to usnic_transport.h and cleanup (Doug Ledford) [916382]
-- [infiniband] usnic: Fix typo "Ignorning" -> "Ignoring" (Doug Ledford) [916382]
-- [infiniband] usnic: Expose flows via debugfs (Doug Ledford) [916382]
-- [infiniband] usnic: Use for_each_sg instead of a for-loop (Doug Ledford) [916382]
-- [infiniband] usnic: Remove superflous parentheses (Doug Ledford) [916382]
-- [infiniband] usnic: Add UDP support in usnic_ib_qp_grp.[hc] (Doug Ledford) [916382]
-- [infiniband] usnic: Add UDP support in u*verbs.c, u*main.c and u*util.h (Doug Ledford) [916382]
-- [infiniband] usnic: Add UDP support to usnic_transport.[hc] (Doug Ledford) [916382]
-- [infiniband] usnic: Add UDP support to usnic_fwd.[hc] (Doug Ledford) [916382]
-- [infiniband] usnic: Update ABI and Version file for UDP support (Doug Ledford) [916382]
-- [infiniband] usnic: Port over sysfs to new usnic_fwd.h (Doug Ledford) [916382]
-- [infiniband] usnic: Port over usnic_ib_qp_grp.[hc] to new usnic_fwd.h (Doug Ledford) [916382]
-- [infiniband] usnic: Port over main.c and verbs.c to the usnic_fwd.h (Doug Ledford) [916382]
-- [infiniband] usnic: Push all forwarding state to usnic_fwd.[hc] (Doug Ledford) [916382]
-- [infiniband] usnic: Add struct usnic_transport_spec (Doug Ledford) [916382]
-- [infiniband] usnic: Change WARN_ON to lockdep_assert_held (Doug Ledford) [916382]
-- [infiniband] usnic: Add Cisco VIC low-level hardware driver (Doug Ledford) [916382]
-- [md] dm-table: propagate QUEUE_FLAG_NO_SG_MERGE (Jeff Moyer) [1105698]
-- [virt] virtio_blk: support multi virt queues per virtio-blk device (Jeff Moyer) [1105698]
-- [virt] virtio_blk: introduce feature of VIRTIO_BLK_F_MQ (Jeff Moyer) [1105698]
-- [virt] virtio_blk: don't hold spin lock during world switch (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: remove alloc_hctx and free_hctx methods (Jeff Moyer) [1105698]
-- [virt] virtio_blk: fix race between start and stop queue (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: add async parameter to blk_mq_start_stopped_hw_queues (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: split out tag initialization, support shared tags (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: add ->init_request and ->exit_request methods (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: do not initialize req->special (Jeff Moyer) [1105698]
-- [virt] virtio_blk: base queue-depth on virtqueue ringsize or module param (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: allow blk_mq_init_commands() to return failure (Jeff Moyer) [1105698]
-- [virt] virtio_blk: don't crash, report error if virtqueue is broken (Jeff Moyer) [1105698]
-- [virt] virtio_blk: use blk_mq_complete_request (Jeff Moyer) [1105698]
-- [virt] virtio_blk: virtqueue_kick() must be ordered with other virtqueue operations (Jeff Moyer) [1105698]
-- [virt] virtio_blk: blk-mq support (Jeff Moyer) [1105698]
-- [virt] virtio: use size-based config accessors (Jeff Moyer) [1105698]
-- [virt] virtio_config: introduce size-based accessors (Jeff Moyer) [1105698]
-- [virt] virtio_blk: Add missing 'static' qualifiers (Jeff Moyer) [1105698]
-- [block] cfq-iosched: Add comments on update timing of weight (Vivek Goyal) [1116126]
-- [block] cfq-iosched: Fix wrong children_weight calculation (Vivek Goyal) [1116126]
-- [fs] aio: block exit_aio() until all context requests are completed (Jeff Moyer) [1122092]
-- [fs] aio: add missing smp_rmb() in read_events_ring (Jeff Moyer) [1131312]
-- [fs] aio: fix reqs_available handling (Jeff Moyer) [1122092]
-- [fs] aio: report error from io_destroy() when threads race in io_destroy() (Jeff Moyer) [1122092]
-- [fs] aio: block io_destroy() until all context requests are completed (Jeff Moyer) [1122092]
-- [fs] aio: v4 ensure access to ctx->ring_pages is correctly serialised for migration (Jeff Moyer) [1122092]
-- [fs] aio/migratepages: make aio migrate pages sane (Jeff Moyer) [1122092]
-- [fs] aio: clean up and fix aio_setup_ring page mapping (Jeff Moyer) [1122092]
-- [md] dm-cache: fix race affecting dirty block count (Mike Snitzer) [1140362]
-- [md] dm-cache: fix race causing dirty blocks to be marked as clean (Mike Snitzer) [1140362]
-- [infiniband] mlx4: Fix wrong endianess access with QP context flags (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Set vlan stripping policy by the right command (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Avoid dealing with MAC index in UPDATE_QP wrapper if not needed (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use the correct VSD mask in UPDATE_QP (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Correctly configure single ported VFs from the host (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: do not ignore autoneg in mlx4_en_set_pauseparam() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Set user-space raw Ethernet QPs to properly handle VXLAN traffic (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Move the tunnel steering helper function to mlx4_core (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Set skb->csum_level for encapsulated checksum (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Avoid executing gid task when device is being removed (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix lockdep splat for the iboe lock (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Get upper dev addresses as RoCE GIDs when port comes up (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Reorder steps in RoCE GID table initialization (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Don't duplicate the default RoCE GID (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Avoid null pointer dereference in mlx4_ib_scan_netdevs() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use is_kdump_kernel() to detect kdump kernel (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Use ARRAY_SIZE instead of sizeof/sizeof[0] (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Use ARRAY_SIZE instead of sizeof/sizeof[0] (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add support for secure-host and SMP firewall (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4_ib: Add support for user MR re-registration (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add helper functions to support MR re-registration (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Adjust events to use unsigned long param instead of void ptr (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: minor fixes (mainly avoidance of hidden casts) (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Move pci device handling from mlx5_ib to mlx5_core (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: mlx4_en_[gs]et_priv_flags() can be static (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Reduce memory consumption on kdump kernel (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use low memory profile on kdump kernel (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Disable blueflame using ethtool private flags (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: current_mac isn't updated in port up (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: cq->irq_desc wasn't set in legacy EQ's (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Remove MCG in case it is attached to promiscuous QPs only (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: In SR-IOV mode host should add promisc QP to default entry only (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Make sure the max number of QPs per MCG isn't exceeded (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Make sure that negative array index isn't used (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix leakage of SW multicast entries (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Enable "block multicast loopback" for kernel consumers (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: mark napi id for gro_skb (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx5: Fix possible race between mr tree insert/delete (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Ignore budget on TX napi polling (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix mac_hash database inconsistency (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Do not count LLC/SNAP in MTU calculation (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Do not disable vlan filter during promiscuous mode (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Verify port number in __mlx4_unregister_mac (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Run loopback test only when port is up (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix set port ratelimit for 40GE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Don't configure the HW vxlan parser when vxlan offloading isn't set (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: IRQ affinity hint is not cleared on port down (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Don't use irq_affinity_notifier to track changes in IRQ affinity map (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix the error flow when probing with invalid VF configuration (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use affinity hint (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Keep only one driver entry release mlx4_priv (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix SRIOV free-pool management when enforcing resource quotas (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix gfp passing in create_qp_common() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix GFP flags parameters to be gfp_t (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Implement IB_QP_CREATE_USE_GFP_NOIO (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Reset RoCE VF gids when guest driver goes down (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Add interface for selecting VFs to enable QP0 via MLX proxy QPs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Add infrastructure for selecting VFs to enable QP0 via MLX proxy QPs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Preparation for VFs to issue/receive SMI (QP0) requests/responses (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: SET_PORT called by mlx4_ib_modify_port should be wrapped (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix incorrect FLAGS1 bitmap test in mlx4_QUERY_FUNC_CAP (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix memory leaks in SR-IOV error paths (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: fix unitialised variable is_mcast (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Fix warning about cast of wr_id back to pointer on 32 bits (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: add missing padding at end of struct mlx5_ib_create_srq (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: add missing padding at end of struct mlx5_ib_create_cq (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Refactor UMR to have its own context struct (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Set QP offsets and parameters for user QPs and not just for kernel QPs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Store MR attributes in mlx5_mr_core during creation and after UMR (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Add MR to radix tree in reg_mr_callback (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Fix error handling in reg_umr (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Copy DIF fields only when input and output space values match (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Simplify signature handover wqe for interleaved buffers (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Fix signature handover operation for interleaved buffers (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Replace pr_warning() with pr_warn() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Deprecate use_prio module parameter (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix uninitialized use of 'port_up' in mlx4_en_set_channels() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Invoke UPDATE_QP for proxy QP1 on MAC changes (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add UPDATE_QP SRIOV wrapper support (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix inaccurate return value of mlx4_flow_attach() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Using positive error value for unsigned (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Protect MAC address modification with the state_lock mutex (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Removed unnecessary bit operation condition (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix smatch error - possible access to a null variable (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix errors in MAC address changing when port is down (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: User prio mapping gets corrupted when changing number of channels (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Enforce irq affinity changes immediatly (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mellanox: Logging message cleanups (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Don't issue PCIe speed/width checks for VFs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Load the Eth driver first (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix slave id computation for single port VF (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Adjust port number in qp_attach wrapper when detaching (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: don't use napi_synchronize inside mlx4_en_netpoll (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Defer VF initialization till PF is fully initialized (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Preserve pci_dev_data after __mlx4_remove_one() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Add block multicast loopback support (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mthca: Use pci_enable_msix_exact() instead of pci_enable_msix() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Set proper build dependancy with vxlan (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Make buffer larger to avoid overflow warning (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix some indenting in mlx4_ib_add() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mthca: Return an error on ib_copy_to_udata() failure (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Implement vxlan ndo calls (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add support for CONFIG_DEV command (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: USe one wrapper that returns -EPERM (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: pass pci_device_id.driver_data to __mlx4_init_one during reset (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Use actual number of PCI functions (PF + VFs) for alias GUID logic (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Adapt num_vfs/probed_vf params for single port VF (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Adapt code for N-Port VF (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add utils for N-Port VFs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add data structures to support N-Ports per VF (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4_ib: Adapt code to use caps.num_ports instead of a constant (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix a sparse endianness warning (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Don't receive packets when the napi budget == 0 (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Deregister multicast vxlan steering rules when going down (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Call dev_kfree_skb_any instead of dev_kfree_skb (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Load the IB driver when the device supports IBoE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Handle vxlan steering rules for mac address changes (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix wrong dump of the vxlan offloads device capability (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Activate RoCE/SRIOV (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix SIDR support of for UD QPs under SRIOV/RoCE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Implement IP based gids support for RoCE/SRIOV (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Add ref counting to port MAC table for RoCE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: In RoCE allow guests to have multiple GIDS (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: For RoCE, allow slaves to set the GID entry at that slave's index (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Adjust QP1 multiplexing for RoCE/SRIOV (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5_core: remove unreachable function call in module init (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Expose support for signature MR feature (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Collect signature error completion (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Support IB_WR_REG_SIG_MR (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Keep mlx5 MRs in a radix tree under device (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Remove MTT access mode from umr flags helper function (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Break up wqe handling into begin & finish routines (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Initialize mlx5_ib_qp signature-related members (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Implement create_mr and destroy_mr (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: mlx4_en_verify_params() can be static (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Change Connect-X description in kconfig (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use union for BlueFlame WQE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix sparse warning (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix selftest failing on non 10G link speed (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Replace mlx4_en_mac_to_u64() with mlx4_mac_to_u64() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Move queue stopped/waked counters to be per ring (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Pad ethernet packets smaller than 17 bytes (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Verify mlx4_en module parameters (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix UP limit in ieee_ets->prio_tc (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix bad use of dev_id (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Expose port number through sysfs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx: Bump all Mellanox driver versions (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix limiting number of IRQ's instead of RSS queues (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Set number of RX rings in a utility function (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx5: Use pci_enable_msix_range() instead of pci_enable_msix() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use pci_enable_msix_range() instead of pci_enable_msix() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Use IS_ENABLED(CONFIG_IPV6) (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Add dependency INET (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix error return code (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: call gro handler for encapsulated frames (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Select PTP_1588_CLOCK (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: fix error return code in mlx4_en_get_qp() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: slight optimization of addr compare (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: mlx4 calls skb_set_hash (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Implement the SIOCGHWTSTAMP ioctl (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: When marsheling uverbs path, clear unused fields (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Add user space RMPP support (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: add new ioctl to ABI to support new registration options (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Add dev_notice messages for various umad/mad registration failures (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Update module to [pr|dev]_* style print messages (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] umad: Update module to [pr|dev]_* style print messages (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] iwcm: Use a default listen backlog if needed (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Add user MR re-registration support (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] rdma/core: Add support for iWARP Port Mapper user space service (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] umad: Fix use-after-free on close (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] umad: Fix error handling (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Fix kobject leak on device register error flow (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Fix port kobject deletion during error flow (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Remove unneeded kobject_get/put calls (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Fix sparse warnings about redeclared functions (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Fix sparse warning about gfp_t use (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] Add a QP creation flag to use GFP_NOIO allocations (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Remove overload in ib_sg_dma* (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] ehca: Remove ib_sg_dma_address() and ib_sg_dma_len() overloads (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] ipath: Remove ib_sg_dma_address() and ib_sg_dma_len() overloads (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] qib: Remove ib_sg_dma_address() and ib_sg_dma_len() overloads (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Check and handle potential DMA mapping errors (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Introduce signature verbs API (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Introduce protected memory regions (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] Refactor umem to use linear SG table (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Fix unused variable warning (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] cma: Handle global/non-linklocal IPv6 addresses in cma_check_linklocal() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] cm: Fix missing unlock on error in cm_init_qp_rtr_attr() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Make ib_addr a core IB module (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Add support for RDMA_NODE_USNIC_UDP (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Add RDMA_TRANSPORT_USNIC_UDP (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [kernel] genirq: Allow forcing cpu affinity of interrupts (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [lib] cpumask: cpumask_set_cpu_local_first to use all cores when numa node is not defined (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [lib] cpumask: Utility function to set n'th cpu - local cpu first (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx: Convert ethernet mac address declarations to use ETH_ALEN (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [net] core: Add sysfs file for port number (Amir Vadai) [1107617 1107618 1107619 1107620]
-
-* Tue Oct 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-182.el7]
-- [ethernet] qlge: Remove DEFINE_PCI_DEVICE_TABLE macro use (Chad Dupuis) [1089357]
-- [ethernet] qlge: get rid of SET_ETHTOOL_OPS (Chad Dupuis) [1089357]
-- [ethernet] qlge: Convert /n to \n (Chad Dupuis) [1089357]
-- [ethernet] qlge: remove open-coded skb_cow_head (Chad Dupuis) [1089357]
-- [ethernet] qlge: Do not propaged vlan tag offloads to vlans (Chad Dupuis) [1089357]
-- [ethernet] qlge: Get rid of an redundant assignment (Chad Dupuis) [1089357]
-- [ethernet] qlge: delete non-required instances of include <linux/init.h> (Chad Dupuis) [1089357]
-- [ethernet] qlge: Fix vlan netdev features (Chad Dupuis) [1089357]
-- [ethernet] qlge: make local function static (Chad Dupuis) [1089357]
-- [ethernet] qlge: Update version to 1.00.00.34 (Chad Dupuis) [1089357]
-- [ethernet] qlge: Allow enable/disable rx/tx vlan acceleration independently (Chad Dupuis) [1089357]
-- [ethernet] qlge: Fix ethtool statistics (Chad Dupuis) [1089357]
-- [ethernet] qlge: remove unnecessary pci_set_drvdata() (Chad Dupuis) [1089357]
-- [ethernet] qlge: Update version to 1.00.00.33 (Chad Dupuis) [1089357]
-- [ethernet] qlge: Enhance nested VLAN (Q-in-Q) handling (Chad Dupuis) [1089357]
-- [ethernet] qlge: call ql_core_dump() only if dump memory was allocated (Chad Dupuis) [1089357]
-- [kernel] audit: allow user processes to log from another PID namespace (Richard Guy Briggs) [1010455]
-- [kernel] audit: anchor all pid references in the initial pid namespace (Richard Guy Briggs) [1010455]
-- [kernel] audit: convert PPIDs to the inital PID namespace (Richard Guy Briggs) [1010455]
-- [kernel] sched: declare pid_alive as inline (Richard Guy Briggs) [1010455]
-- [kernel] pid: get pid_t ppid of task in init_pid_ns (Richard Guy Briggs) [1010455]
-- [net] netlabel: shorter names for the NetLabel catmap funcs/structs (Paul Moore) [1119662]
-- [net] netlabel: fix the catmap walking functions (Paul Moore) [1119662]
-- [net] netlabel: fix the horribly broken catmap functions (Paul Moore) [1119662]
-- [net] netlabel: fix a problem when setting bits below the previously lowest bit (Paul Moore) [1119662]
-- [kernel] sched/time: fix lock inversion in thread_group_cputime (Rik van Riel) [1120307]
-- [kernel] seqlock: add irqsave variant of read_seqbegin_or_lock (Rik van Riel) [1120307]
-- [kernel] sched: make lockless sys_times kABI-friendly (Rik van Riel) [1120307]
-- [kernel] sched/cputime: atomically increment stime & utime (Rik van Riel) [1120307]
-- [kernel] time, signal: protect resource use statistics with seqlock (Rik van Riel) [1120307]
-- [kernel] exit: always reap resource stats in __exit_signal (Rik van Riel) [1120307]
-- [kernel] seqcount: Provide raw_read_seqcount() (Rik van Riel) [1120307]
-- [kernel] take read_seqbegin_or_lock() and friends to seqlock.h (Rik van Riel) [1120307]
-- [kernel] sched: change thread_group_cputime() to use for_each_thread() (Rik van Riel) [1120307]
-- [usb] usb3503: Fix a warning for using an uninitialized variable (Don Zickus) [1148954]
-- [ethernet] tg3: prevent ifup/ifdown during PCI error recovery (Ivan Vecera) [1088637]
-- [ethernet] tg3: fix return value in tg3_get_stats64 (Ivan Vecera) [1088637]
-- [ethernet] tg3: Remove DEFINE_PCI_DEVICE_TABLE macro use (Ivan Vecera) [1088637]
-- [ethernet] tg3: Modify tg3_tso_bug() to handle multiple TX rings (Ivan Vecera) [1088637]
-- [ethernet] tg3: Clear NETIF_F_TSO6 flag before doing software GSO (Ivan Vecera) [1088637]
-- [ethernet] tg3: Replace ethtool_ops::{get, set}_rxfh_indir() with {get, set}_rxfh() (Ivan Vecera) [1088637]
-- [ethernet] tg3: Update copyright and version to 3.137 (Ivan Vecera) [1088637]
-- [ethernet] tg3: Prevent page allocation failure during TSO workaround (Ivan Vecera) [1088637]
-- [ethernet] tg3: Don't modify ip header fields when doing GSO (Ivan Vecera) [1088637]
-- [ethernet] tg3: update rx_jumbo_pending ring param only when jumbo frames are enabled (Ivan Vecera) [1088637]
-- [ethernet] tg3: remove open-coded skb_cow_head (Ivan Vecera) [1088637]
-- [ethernet] tg3: remove empty MDIO bus reset function (Ivan Vecera) [1088637]
-- [ethernet] tg3: Do not include vlan acceleration features in vlan_features (Ivan Vecera) [1088637]
-- [ethernet] tg3: Call dev_kfree_skby_any instead of dev_kfree_skb (Ivan Vecera) [1088637]
-- [ethernet] tg3: Use pci_enable_msix_range() instead of pci_enable_msix() (Ivan Vecera) [1088637]
-- [ethernet] tg3: Fix deadlock in tg3_change_mtu() (Ivan Vecera) [1088637]
-- [ethernet] tg3: cleanup an error path in tg3_phy_reset_5703_4_5() (Ivan Vecera) [1088637]
-- [ethernet] tg3: delete non-required instances of include <linux/init.h> (Ivan Vecera) [1088637]
-- [ethernet] tg3: Implement the SIOCGHWTSTAMP ioctl (Ivan Vecera) [1088637]
-
-* Mon Oct 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-181.el7]
-- [tools] perf/powerpc: Adjust callchain based on DWARF debug info (Jiri Olsa) [1113736]
-- [tools] perf: Allow to specify lib compile variable for spec usage (Jiri Olsa) [879133]
-- [tools] perf/symbols: Get kernel start address by symbol name (Jiri Olsa) [1134356]
-- [tools] perf: Fix segfault in cumulative.callchain report (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add test for closing dso objects on EMFILE error (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add test for caching dso file descriptors (Jiri Olsa) [1134356]
-- [tools] perf/tests: Allow reuse of test_file function (Jiri Olsa) [1134356]
-- [tools] perf/tests: Spawn child for each test (Jiri Olsa) [1134356]
-- [tools] perf: Add dso__data_* interface descriptons (Jiri Olsa) [1134356]
-- [tools] perf: Allow to close dso fd in case of open failure (Jiri Olsa) [1134356]
-- [tools] perf: Add file size check and factor dso__data_read_offset (Jiri Olsa) [1134356]
-- [tools] perf: Cache dso data file descriptor (Jiri Olsa) [1134356]
-- [tools] perf: Add global count of opened dso objects (Jiri Olsa) [1134356]
-- [tools] perf: Add global list of opened dso objects (Jiri Olsa) [1134356]
-- [tools] perf: Add data_fd into dso object (Jiri Olsa) [1134356]
-- [tools] perf: Separate dso data related variables (Jiri Olsa) [1134356]
-- [tools] perf: Cache register accesses for unwind processing (Jiri Olsa) [1134356]
-- [tools] perf/record: Fix to honor user freq/interval properly (Jiri Olsa) [1134356]
-- [tools] perf/timechart: Reflow documentation (Jiri Olsa) [1134356]
-- [tools] perf/probe: Improve error messages in --line option (Jiri Olsa) [1134356]
-- [tools] perf/probe: Improve an error message of perf probe --vars mode (Jiri Olsa) [1134356]
-- [tools] perf/probe: Show error code and description in verbose mode (Jiri Olsa) [1134356]
-- [tools] perf/probe: Improve error message for unknown member of data structure (Jiri Olsa) [1134356]
-- [tools] perf/tests: Show the inner make output when an error happens (Jiri Olsa) [1134356]
-- [tools] perf: Emit more precise message for missing glibc static library (Jiri Olsa) [1134356]
-- [tools] perf: Add dcacheline sort (Jiri Olsa) [1134356]
-- [tools] perf: Add support to dynamically get cacheline size (Jiri Olsa) [1134356]
-- [tools] perf: Add cpumode to struct hist_entry (Jiri Olsa) [1134356]
-- [tools] perf/report: Add mem-mode documentation to report command (Jiri Olsa) [1134356]
-- [tools] perf: Update mmap2 interface with protection and flag bits (Jiri Olsa) [1134356]
-- [tools] perf/script/python: Print array argument as string (Jiri Olsa) [1134356]
-- [tools] perf: Prettify the tags/TAGS/cscope targets output (Jiri Olsa) [1134356]
-- [tools] perf: Fix pipe check regression in attr event callback (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Added support for __get_bitmask() macro (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Add options to function plugin (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Add options to plugins (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Add flag to not load event plugins (Jiri Olsa) [1134356]
-- [tools] perf/documentation: Add description for conditional branch filter (Jiri Olsa) [1134356]
-- [tools] Revert: perf: Disable PERF_RECORD_MMAP2 support (Jiri Olsa) [1134356]
-- [tools] perf: Add conditional branch filter 'cond' to perf record (Jiri Olsa) [1134356]
-- [tools] perf: Fix 'make help' message error (Jiri Olsa) [1134356]
-- [tools] perf/record: Fix poll return value propagation (Jiri Olsa) [1134356]
-- [tools] perf: Move elide bool into perf_hpp_fmt struct (Jiri Olsa) [1134356]
-- [tools] perf: Remove elide setup for SORT_MODE__MEMORY mode (Jiri Olsa) [1134356]
-- [tools] perf: Fix "==" into "=" in ui_browser__warning assignment (Jiri Olsa) [1134356]
-- [tools] perf: Allow overriding sysfs and proc finding with env var (Jiri Olsa) [1134356]
-- [tools] perf: Consider header files outside perf directory in tags target (Jiri Olsa) [1134356]
-- [tools] perf: Add warning when disabling perl scripting support due to missing devel files (Jiri Olsa) [1134356]
-- [tools] perf/trace: Warn the user when not available (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add a test case for cumulating callchains (Jiri Olsa) [1134356]
-- [tools] perf/tests: Define and use symbolic names for fake symbols (Jiri Olsa) [1134356]
-- [tools] perf: Reset output/sort order to default (Jiri Olsa) [1134356]
-- [tools] perf/ui/gtk: Fix callchain display (Jiri Olsa) [1134356]
-- [tools] perf/ui/stdio: Fix invalid percentage value of cumulated hist entries (Jiri Olsa) [1134356]
-- [tools] perf: Enable --children option by default (Jiri Olsa) [1134356]
-- [tools] perf/top: Add top.children config option (Jiri Olsa) [1134356]
-- [tools] perf/top: Add --children option (Jiri Olsa) [1134356]
-- [tools] perf/top: Convert to hist_entry_iter (Jiri Olsa) [1134356]
-- [tools] perf: Add callback function to hist_entry_iter (Jiri Olsa) [1134356]
-- [tools] perf: Do not auto-remove Children column if --fields given (Jiri Olsa) [1134356]
-- [tools] perf/report: Add report.children config option (Jiri Olsa) [1134356]
-- [tools] perf/report: Add --children option (Jiri Olsa) [1134356]
-- [tools] perf: Add more hpp helper functions (Jiri Olsa) [1134356]
-- [tools] perf: Apply percent-limit to cumulative percentage (Jiri Olsa) [1134356]
-- [tools] perf/ui/gtk: Add support to accumulated hist stat (Jiri Olsa) [1134356]
-- [tools] perf/ui/browser: Add support to accumulated hist stat (Jiri Olsa) [1134356]
-- [tools] perf/ui/hist: Add support to accumulated hist stat (Jiri Olsa) [1134356]
-- [tools] perf: Save callchain info for each cumulative entry (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Add callchain_cursor_snapshot() (Jiri Olsa) [1134356]
-- [tools] perf/report: Cache cumulative callchains (Jiri Olsa) [1134356]
-- [tools] perf: Update cpumode for each cumulative entry (Jiri Olsa) [1134356]
-- [tools] perf/hists: Accumulate hist entry stat based on the callchain (Jiri Olsa) [1134356]
-- [tools] perf/hists: Check if accumulated when adding a hist entry (Jiri Olsa) [1134356]
-- [tools] perf/hists: Add support for accumulated stat of hist entry (Jiri Olsa) [1134356]
-- [tools] perf: Introduce struct hist_entry_iter (Jiri Olsa) [1134356]
-- [tools] perf: Introduce hists__inc_nr_samples() (Jiri Olsa) [1134356]
-- [tools] perf: Add automatic remapping of Android libraries (Jiri Olsa) [1134356]
-- [tools] perf: Add cat as fallback pager (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add a testcase for histogram output sorting (Jiri Olsa) [1134356]
-- [tools] perf/tests: Factor out print_hists_*() (Jiri Olsa) [1134356]
-- [tools] perf: Introduce reset_output_field() (Jiri Olsa) [1134356]
-- [tools] perf: Get rid of obsolete hist_entry__sort_list (Jiri Olsa) [1134356]
-- [tools] perf/hists: Reset width of output fields with header length (Jiri Olsa) [1134356]
-- [tools] perf: Skip elided sort entries (Jiri Olsa) [1134356]
-- [tools] perf/top: Add --fields option to specify output fields (Jiri Olsa) [1134356]
-- [tools] perf/report/tui: Fix a bug when --fields/sort is given (Jiri Olsa) [1134356]
-- [tools] perf: Add ->sort() member to struct sort_entry (Jiri Olsa) [1134356]
-- [tools] perf/report: Add -F option to specify output fields (Jiri Olsa) [1134356]
-- [tools] perf: Call perf_hpp__init() before setting up GUI browsers (Jiri Olsa) [1134356]
-- [tools] perf: Consolidate management of default sort orders (Jiri Olsa) [1134356]
-- [tools] perf: Allow hpp fields to be sort keys (Jiri Olsa) [1134356]
-- [tools] perf/ui: Get rid of callback from __hpp__fmt() (Jiri Olsa) [1134356]
-- [tools] perf: Consolidate output field handling to hpp format routines (Jiri Olsa) [1134356]
-- [tools] perf: Use hpp formats to sort final output (Jiri Olsa) [1134356]
-- [tools] perf: Support event grouping in hpp ->sort() (Jiri Olsa) [1134356]
-- [tools] perf: Use hpp formats to sort hist entries (Jiri Olsa) [1134356]
-- [tools] perf: Convert sort entries to hpp formats (Jiri Olsa) [1134356]
-- [tools] perf: Add ->cmp(), ->collapse() and ->sort() to perf_hpp_fmt (Jiri Olsa) [1134356]
-- [tools] perf: Add libdw DWARF post unwind support for ARM (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add dwarf unwind test on ARM (Jiri Olsa) [1134356]
-- [tools] perf/tests: Introduce perf_regs_load function on ARM (Jiri Olsa) [1134356]
-- [tools] perf: Consolidate types.h for ARM and ARM64 (Jiri Olsa) [1134356]
-- [tools] perf/session: Fix possible null pointer dereference in session.c (Jiri Olsa) [1134356]
-- [tools] perf/sched: Cleanup, remove unused variables in map_switch_event() (Jiri Olsa) [1134356]
-- [tools] perf/sched: Remove nr_state_machine_bugs in perf latency (Jiri Olsa) [1134356]
-- [tools] perf: Remove usage of trace_sched_wakeup(.success) (Jiri Olsa) [1134356]
-- [tools] perf: Use tid for finding thread (Jiri Olsa) [1134356]
-- [tools] perf: Get rid of on_exit() feature test (Jiri Olsa) [1134356]
-- [tools] perf/record: Propagate exit status of a command line workload (Jiri Olsa) [1134356]
-- [tools] perf: Clarify the output of perf sched map (Jiri Olsa) [1134356]
-- [tools] perf: Adapt the TASK_STATE_TO_CHAR_STR to new value in kernel space (Jiri Olsa) [1134356]
-- [tools] perf: Add missing event for perf sched record (Jiri Olsa) [1134356]
-- [tools] perf: Move ACCESS_ONCE from perf.h header (Jiri Olsa) [1134356]
-- [tools] perf: Move sys_perf_event_open function from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Move syscall and arch specific defines from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Move perf_call_graph_mode enum from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Move sample data structures from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove PR_TASK_PERF_EVENTS_* from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove asmlinkage define from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove min define from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove unlikely define from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove MAX_COUNTERS define from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Consolidate types.h (Jiri Olsa) [1134356]
-- [tools] perf: Unify export.h (Jiri Olsa) [1134356]
-- [tools] perf/arm64: Wire up perf_regs and unwind support (Jiri Olsa) [1134356]
-- [tools] perf: Move u64_swap union (Jiri Olsa) [1134356]
-- [tools] perf/tests: add a test of kvm-390 trace event (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add numeric identifier to evlist_test (Jiri Olsa) [1134356]
-- [tools] perf: Parse tracepoints with '-' in system name (Jiri Olsa) [1134356]
-- [tools] perf: Handle EINTR error for readn/writen (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add map groups sharing with thread object test (Jiri Olsa) [1134356]
-- [tools] perf: Share map_groups among threads of the same group (Jiri Olsa) [1134356]
-- [tools] perf: Reference count map_groups objects (Jiri Olsa) [1134356]
-- [tools] perf: Allocate thread map_groups's dynamically (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add thread maps lookup automated tests (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add a test case for hists filtering (Jiri Olsa) [1134356]
-- [tools] perf/tests: Factor out fake_setup_machine() (Jiri Olsa) [1134356]
-- [tools] perf/hists/tui: Count callchain rows separately (Jiri Olsa) [1134356]
-- [tools] perf/top/tui: Update nr_entries properly after a filter is applied (Jiri Olsa) [1134356]
-- [tools] perf/ui/tui: Rename hist_browser__update_nr_entries() (Jiri Olsa) [1134356]
-- [tools] perf/ui/tui: Fix off-by-one in hist_browser__update_nr_entries() (Jiri Olsa) [1134356]
-- [tools] perf/hists: Add missing update on filtered stats in hists__decay_entries() (Jiri Olsa) [1134356]
-- [tools] perf: Account entry stats when it's added to the output tree (Jiri Olsa) [1134356]
-- [tools] perf/hists: Collapse expanded callchains after filter is applied (Jiri Olsa) [1134356]
-- [tools] perf/hists: Add a couple of hists stat helper functions (Jiri Olsa) [1134356]
-- [tools] perf/hists: Move column length calculation out of hists__inc_stats() (Jiri Olsa) [1134356]
-- [tools] perf/hists: Rename hists__inc_stats() (Jiri Olsa) [1134356]
-- [tools] perf/report: Count number of entries separately (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Add generic report parse callchain callback function (Jiri Olsa) [1134356]
-- [tools] perf/kmem: Utilize the new generic cpunode_map (Jiri Olsa) [1134356]
-- [tools] perf: Use cpu/possible instead of cpu/kernel_max (Jiri Olsa) [1134356]
-- [tools] perf: Allow ability to map cpus to nodes easily (Jiri Olsa) [1134356]
-- [tools] perf: Fix pmu object compilation error (Jiri Olsa) [1134356]
-- [tools] perf/sched: Introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf/lock: Introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf/mem: Introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf/kmem: Introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf: Show absolute percentage by default (Jiri Olsa) [1134356]
-- [tools] perf/ui/tui: Add 'F' hotkey to toggle percentage output (Jiri Olsa) [1134356]
-- [tools] perf: Add hist.percentage config option (Jiri Olsa) [1134356]
-- [tools] perf/diff: Add --percentage option (Jiri Olsa) [1134356]
-- [tools] perf/top: Add --percentage option (Jiri Olsa) [1134356]
-- [tools] perf/report: Add --percentage option (Jiri Olsa) [1134356]
-- [tools] perf/hists: Add support for showing relative percentage (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix perf probe to find correct variable DIE (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix a segfault if asked for variable it doesn't find (Jiri Olsa) [1134356]
-- [tools] perf/tests/x86: Fix stack map lookup in dwarf unwind test (Jiri Olsa) [1134356]
-- [tools] perf/x86: Fix perf to use non-executable stack, again (Jiri Olsa) [1134356]
-- [tools] perf: Remove extra '/' character in events file path (Jiri Olsa) [1134356]
-- [tools] perf/machine: Search for modules in s/lib/modules/s (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add static build make test (Jiri Olsa) [1134356]
-- [tools] perf: Fix bfd dependency libraries detection (Jiri Olsa) [1134356]
-- [tools] perf: Use LDFLAGS instead of ALL_LDFLAGS (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Fix memory leak in pretty_print() (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Fix backward compatibility macros for pevent filter enums (Jiri Olsa) [1134356]
-- [tools] perf: Disable libdw unwind for all but x86 arch (Jiri Olsa) [1134356]
-- [tools] perf/tests/x86: Fix memory leak in sample_ustack() (Jiri Olsa) [1134356]
-- [tools] perf: Improve error reporting (Jiri Olsa) [1134356]
-- [tools] perf: Adjust symbols in VDSO (Jiri Olsa) [1134356]
-- [tools] perf/kvm: Fix 'Min time' counting in report command (Jiri Olsa) [1134356]
-- [tools] perf: Instead of redirecting flex output, use -o (Jiri Olsa) [1134356]
-- [tools] perf: Fix double free in perf test 21 (code-reading.c) (Jiri Olsa) [1134356]
-- [tools] perf/stat: Initialize statistics correctly (Jiri Olsa) [1134356]
-- [tools] perf/bench: Set more defaults in the 'numa' suite (Jiri Olsa) [1134356]
-- [tools] perf/bench: Update manpage to mention numa and futex (Jiri Olsa) [1134356]
-- [tools] perf/probe: Use dwarf_getcfi_elf() instead of dwarf_getcfi() (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix to handle errors in line_range searching (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix --line option behavior (Jiri Olsa) [1134356]
-- [tools] perf: Pick up libdw without explicit LIBDW_DIR (Jiri Olsa) [1134356]
-- [tools] perf/callchains: Disable unwind libraries when libelf isn't found (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Do not call warning() directly (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Print event name when show warning if possible (Jiri Olsa) [1134356]
-- [tools] perf/top: Fix documentation of invalid -s option (Jiri Olsa) [1134356]
-- [tools] perf: Allow building for tile (Jiri Olsa) [1134356]
-- [tools] perf: Remove unused simple_strtoul() function (Jiri Olsa) [1134356]
-- [tools] perf: Update some code references in design.txt (Jiri Olsa) [1134356]
-- [tools] perf/evsel: Update function names in debug messages (Jiri Olsa) [1134356]
-- [tools] perf: Remove thread__find_map function (Jiri Olsa) [1134356]
-- [tools] perf/annotate: Print the evsel name in the stdio output (Jiri Olsa) [1134356]
-- [tools] perf/report: Use ui__has_annotation() (Jiri Olsa) [1134356]
-- [tools] perf: Fix memory leak when synthesizing thread records (Jiri Olsa) [1134356]
-- [tools] perf: Use tid in mmap/mmap2 events to find maps (Jiri Olsa) [1134356]
-- [tools] perf/report: Merge al->filtered with hist_entry->filtered (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Apply all filters to an addr_location (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Record the reason for filtering an address_location (Jiri Olsa) [1134356]
-- [tools] perf/sched: Fixup header alignment in 'latency' output (Jiri Olsa) [1134356]
-- [tools] perf/timechart: Fix off-by-one error in 'record' argv handling (Jiri Olsa) [1134356]
-- [tools] perf/machine: Factor machine__find_thread to take tid argument (Jiri Olsa) [1134356]
-- [tools] perf: Speed up thread map generation (Jiri Olsa) [1134356]
-- [tools] perf/kvm: introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf/ui/hists: Pass evsel to hpp->header/width functions explicitly (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Introduce thread__find_cpumode_addr_location (Jiri Olsa) [1134356]
-- [tools] perf/session: Change header.misc dump from decimal to hex (Jiri Olsa) [1134356]
-- [tools] perf/ui/tui: Reuse generic __hpp__fmt() code (Jiri Olsa) [1134356]
-- [tools] perf/ui/hists: Pass struct hpp to print functions (Jiri Olsa) [1134356]
-- [tools] perf/ui/gtk: Reuse generic __hpp__fmt() code (Jiri Olsa) [1134356]
-- [tools] perf/ui/stdio: Fix invalid output on event group report (Jiri Olsa) [1134356]
-- [tools] perf: Fix synthesizing mmaps for threads (Jiri Olsa) [1134356]
-- [tools] perf/probe: Clarify x86 register naming for perf probe (Jiri Olsa) [1134356]
-- [tools] perf/mem: Clarify load-latency in documentation (Jiri Olsa) [1134356]
-- [tools] perf/bench: Add futex-requeue microbenchmark (Jiri Olsa) [1134356]
-- [tools] perf/bench: Add futex-wake microbenchmark (Jiri Olsa) [1134356]
-- [tools] perf/bench: Add futex-hash microbenchmark (Jiri Olsa) [1134356]
-- [tools] perf: Disable user-space callchain/stack dumps for function trace events (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Check compatible symtab type before loading dso (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Check return value of filename__read_debuglink() (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add NO_LIBDW_DWARF_UNWIND make test (Jiri Olsa) [1134356]
-- [tools] perf: Setup default dwarf post unwinder (Jiri Olsa) [1134356]
-- [tools] perf: Add libdw DWARF post unwind support (Jiri Olsa) [1134356]
-- [tools] perf: Add feature check for libdw dwarf unwind (Jiri Olsa) [1134356]
-- [tools] perf: Warn the user about how to enable libunwind support (Jiri Olsa) [1134356]
-- [tools] perf: Add variable display for VF make output (Jiri Olsa) [1134356]
-- [tools] perf: Factor features display code (Jiri Olsa) [1134356]
-- [tools] perf: Fix bison OUTPUT directories dependency (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add pmu-bison.o make test (Jiri Olsa) [1134356]
-- [tools] perf/tests: Fix *.o make tests (Jiri Olsa) [1134356]
-- [tools] perf/probe: Support distro-style debuginfo for uprobe (Jiri Olsa) [1134356]
-- [tools] perf/probe: Allow to add events on the local functions (Jiri Olsa) [1134356]
-- [tools] perf/probe: Show source-level or symbol-level info for uprobes (Jiri Olsa) [1134356]
-- [tools] perf/probe: Show appropriate symbol for ref_reloc_sym based kprobes (Jiri Olsa) [1134356]
-- [tools] perf/probe: Find given address from offline dwarf (Jiri Olsa) [1134356]
-- [tools] perf/probe: Use ref_reloc_sym based address instead of the symbol name (Jiri Olsa) [1134356]
-- [tools] perf/probe: Show in what binaries/modules probes are set (Jiri Olsa) [1134356]
-- [tools] perf/probe: Unify show_available_functions for uprobes/kprobes (Jiri Olsa) [1134356]
-- [tools] perf/probe: Replace line_list with intlist (Jiri Olsa) [1134356]
-- [tools] perf/probe: Remove incorrect symbol check for --list (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix to do exit call for symbol maps (Jiri Olsa) [1134356]
-- [tools] perf/symbols: No need to export dso__first_symbol (Jiri Olsa) [1134356]
-- [tools] perf: Drop prefetch.h (Jiri Olsa) [1134356]
-- [tools] perf: Move hash.h header (Jiri Olsa) [1134356]
-- [tools] perf: Move fs.* to lib/api/fs/ (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Separate perf_reg_value function in perf_regs object (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Introduce HAVE_DWARF_UNWIND_SUPPORT macro (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Rename unwind__arch_reg_id into libunwind__arch_reg_id (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Separate libunwind code to special object (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Add mask into struct regs_dump (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Do not report zero address in unwind (Jiri Olsa) [1134356]
-- [tools] perf: Fix dwarf unwind max_stack processing (Jiri Olsa) [1134356]
-- [tools] perf/tests/x86: Add dwarf unwind test (Jiri Olsa) [1134356]
-- [tools] perf/tests/x86: Introduce perf_regs_load function (Jiri Olsa) [1134356]
-- [tools] perf: Fix memory leak in event_format__print function (Jiri Olsa) [1134356]
-- [tools] perf/record: Add readable output for callchain debug (Jiri Olsa) [1134356]
-- [tools] perf: Add call-graph option support into .perfconfig (Jiri Olsa) [1134356]
-- [tools] perf: Put proper period for for samples without PERIOD sample_type (Jiri Olsa) [1134356]
-- [tools] perf/report: Remove some needless container_of usage (Jiri Olsa) [1134356]
-- [tools] perf: Shorten sample symbol resolving function signature (Jiri Olsa) [1134356]
-- [tools] perf: Shorten sample symbol resolving function signature (Jiri Olsa) [1134356]
-- [tools] perf/report: Use al->cpumode where applicable (Jiri Olsa) [1134356]
-- [x86] perf/intel: Avoid spamming kernel log for BTS buffer failure (Jiri Olsa) [1134356]
-- [x86] perf/intel: Protect LBR and extra_regs against KVM lying (Jiri Olsa) [1134356]
-- [kernel] perf: Fix lockdep warning on process exit (Jiri Olsa) [1134356]
-- [x86] perf/intel: Use proper dTLB-load-misses event on IvyBridge (Jiri Olsa) [1134356]
-- [kernel] Revert: perf: Always destroy groups on exit (Jiri Olsa) [1134356]
-- [kernel] perf: Do not allow optimized switch for non-cloned events (Jiri Olsa) [1134356]
-- [kernel] perf: Pass protection and flags bits through mmap2 interface (Jiri Olsa) [1134356]
-- [kernel] perf: Differentiate exec() and non-exec() comm events (Jiri Olsa) [1134356]
-- [kernel] perf: Fix perf_event_comm() vs. exec() assumption (Jiri Olsa) [1134356]
-- [x86] perf: Add conditional branch filtering support (Jiri Olsa) [1134356]
-- [kernel] perf: Add new conditional branch filter 'PERF_SAMPLE_BRANCH_COND' (Jiri Olsa) [1134356]
-- [x86] perf: Use common PMU interrupt disabled code (Jiri Olsa) [1134356]
-- [kernel] perf: Disable sampled events if no PMU interrupt (Jiri Olsa) [1134356]
-- [kernel] perf: Fix use after free in perf_remove_from_context() (Jiri Olsa) [1134356]
-- [kernel] perf/events/core: Drop unused variable after cleanup (Jiri Olsa) [1134356]
-- [x86] perf/intel: fix Haswell precise store data source encoding (Jiri Olsa) [1134356]
-- [kernel] perf: Fix perf_event_open(.flags) test (Jiri Olsa) [1134356]
-- [kernel] perf: Simplify perf_event_exit_task_context() (Jiri Olsa) [1134356]
-- [kernel] perf: Rework free paths (Jiri Olsa) [1134356]
-- [kernel] perf: Validate locking assumption (Jiri Olsa) [1134356]
-- [kernel] perf: Always destroy groups on exit (Jiri Olsa) [1134356]
-- [kernel] perf: Ensure consistent inherit state in groups (Jiri Olsa) [1134356]
-- [x86] perf: Export perf_assign_events() (Jiri Olsa) [1134356]
-- [kernel] perf: Allow building PMU drivers as modules (Jiri Olsa) [1134356]
-- [kernel] perf: Prevent false warning in perf_swevent_add (Jiri Olsa) [1134356]
-- [kernel] perf: Limit perf_event_attr::sample_period to 63 bits (Jiri Olsa) [1134356]
-- [kernel] perf: Fix perf_event_init_context() (Jiri Olsa) [1134356]
-- [kernel] perf: Fix race in removing an event (Jiri Olsa) [1134356]
-- [x86] perf: Fix RAPL rdmsrl_safe() usage (Jiri Olsa) [1134356]
-- [x86] perf/intel: Use rdmsrl_safe() when initializing RAPL PMU (Jiri Olsa) [1134356]
-- [x86] perf/intel/rapl: Fix CPU hotplug callback registration (Jiri Olsa) [1134356]
-- [x86] perf: Enable DRAM RAPL support on Intel Haswell (Jiri Olsa) [1134356]
-- [kernel] perf: Optimize group_sched_in() (Jiri Olsa) [1134356]
-- [x86] perf: Add a few more comments (Jiri Olsa) [1134356]
-- [kernel] perf: Remove redundant PMU assignment (Jiri Olsa) [1134356]
-- [kernel] perf: Fix prototype of find_pmu_context() (Jiri Olsa) [1134356]
-- [x86] perf: Warn to early_printk() in case irq_work is too slow (Jiri Olsa) [1134356]
-- [x86] perf/p4: Block PMIs on init to prevent a stream of unkown NMIs (Jiri Olsa) [1134356]
-- [x86] perf/p4: Fix counter corruption when using lots of perf groups (Jiri Olsa) [1134356]
-- [x86] perf: Push the duration-logging printk() to IRQ context (Jiri Olsa) [1134356]
-- [kernel] workqueue: apply __WQ_ORDERED to create_singlethread_workqueue() (Tomas Henzl) [1131563]
-- [md] raid10: always initialise ->state on newly allocated r10_bio (Jes Sorensen) [1085530]
-- [md] raid10: avoid memory leak on error path during reshape (Jes Sorensen) [1085530]
-- [md] raid10: Fix memory leak when raid10 reshape completes (Jes Sorensen) [1085530]
-- [md] raid10: fix memory leak when reshaping a RAID10 (Jes Sorensen) [1085530]
-- [md] raid5: avoid livelock caused by non-aligned writes (Jes Sorensen) [1085530]
-- [md] don't allow bitmap file to be added to raid0/linear (Jes Sorensen) [1085530]
-- [md] raid0: check for bitmap compatability when changing raid levels (Jes Sorensen) [1085530 1126348]
-- [md] Recovery speed is wrong (Jes Sorensen) [1085530 1128517]
-- [md] disable probing for md devices 512 and over (Jes Sorensen) [1085530]
-- [md] raid1, raid10: always abort recover on write error (Jes Sorensen) [1085530]
-- [md] flush writes before starting a recovery (Jes Sorensen) [1085530 1115749]
-- [md] make sure GET_ARRAY_INFO ioctl reports correct "clean" status (Jes Sorensen) [1085530]
-- [md] raid5: speedup sync_request processing (Jes Sorensen) [1085530]
-- [md] raid5: deadlock between retry_aligned_read with barrier io (Jes Sorensen) [1085530]
-- [md] raid5: add an option to avoid copy data from bio to stripe cache (Jes Sorensen) [1085530]
-- [md] bitmap: remove confusing code from filemap_get_page (Jes Sorensen) [1085530]
-- [md] raid5: avoid release list until last reference of the stripe (Jes Sorensen) [1085530]
-- [md] md_clear_badblocks should return an error code on failure (Jes Sorensen) [1085530]
-- [md] raid56: Don't perform reads to support writes until stripe is ready (Jes Sorensen) [1085530]
-- [md] refuse to change shape of array if it is active but read-only (Jes Sorensen) [1085530]
-- [md] always set MD_RECOVERY_INTR when interrupting a reshape thread (Jes Sorensen) [1085530]
-- [md] always set MD_RECOVERY_INTR when aborting a reshape or other "resync" (Jes Sorensen) [1085530]
-- [md] avoid possible spinning md thread at shutdown (Jes Sorensen) [1085530]
-- [md] raid5: fix a race of stripe count check (Jes Sorensen) [1085530]
-- [md] raid5: get_active_stripe avoids device_lock (Jes Sorensen) [1085530]
-- [md] raid5: make_request does less prepare wait (Jes Sorensen) [1085530]
-- [md] avoid oops on unload if some process is in poll or select (Jes Sorensen) [1085530]
-- [md] raid1: r1buf_pool_alloc, free allocate pages when subsequent allocation fails (Jes Sorensen) [1085530]
-- [md] bitmap: don't abuse i_writecount for bitmap files (Jes Sorensen) [1085530]
-- [md] raid5: Fix CPU hotplug callback registration (Jes Sorensen) [1085530]
-- [md] raid1: restore ability for check and repair to fix read errors (Jes Sorensen) [1085530]
-- [md] raid5: close recently introduced race in stripe_head management (Jes Sorensen) [1085530]
-- [md] raid5: fix long-standing problem with bitmap handling on write failure (Jes Sorensen) [1085530]
-- [md] check command validity early in md_ioctl() (Jes Sorensen) [1085530]
-- [md] ensure metadata is writen after raid level change (Jes Sorensen) [1085530]
-- [md] raid10: avoid fullsync when not necessary (Jes Sorensen) [1085530]
-- [md] allow a partially recovered device to be hot-added to an array (Jes Sorensen) [1085530]
-- [md] fix problem when adding device to read-only array with bitmap (Jes Sorensen) [1085530]
-- [md] raid10: fix bug when raid10 recovery fails to recover a block (Jes Sorensen) [1085530]
-- [md] raid5: fix a recently broken BUG_ON() (Jes Sorensen) [1085530]
-- [md] raid10: fix two bugs in handling of known-bad-blocks (Jes Sorensen) [1085530]
-- [md] raid5: Fix possible confusion when multiple write errors occur (Jes Sorensen) [1085530]
-- [Documentation] fix some typos in md documentation (Jes Sorensen) [1085530]
-- [md] raid5: fix newly-broken locking in get_active_stripe (Jes Sorensen) [1085530]
-- [md] test mddev->flags more safely in md_check_recovery (Jes Sorensen) [1085530]
-- [md] raid5: fix new memory-reference bug in alloc_thread_groups (Jes Sorensen) [1085530]
-- [block] submit_bio_wait() conversions (Jes Sorensen) [1085530]
-- [md] raid5: Use conf->device_lock protect changing of multi-thread resources (Jes Sorensen) [1085530]
-- [md] raid5: Before freeing old multi-thread worker, it should flush them (Jes Sorensen) [1085530]
-- [md] raid5: For stripe with R5_ReadNoMerge, we replace REQ_FLUSH with REQ_NOMERGE (Jes Sorensen) [1085530]
-- [md] raid1: Add some macros to make code clearly (Jes Sorensen) [1085530]
-- [md] raid1: Replace raise_barrier/lower_barrier with freeze_array/unfreeze_array when reconfiguring the array (Jes Sorensen) [1085530]
-- [md] raid1: Add a field array_frozen to indicate whether raid in freeze state (Jes Sorensen) [1085530]
-- [md] Convert use of typedef ctl_table to struct ctl_table (Jes Sorensen) [1085530]
-- [md] raid5: avoid deadlock when raid5 array has unack badblocks during md_stop_writes (Jes Sorensen) [1085530]
-- [md] use MD_RECOVERY_INTR instead of kthread_should_stop in resync thread (Jes Sorensen) [1085530]
-- [md] fix some places where mddev_lock return value is not checked (Jes Sorensen) [1085530]
-- [md] raid5: Retry R5_ReadNoMerge flag when hit a read error (Jes Sorensen) [1085530]
-- [md] raid5: relieve lock contention in get_active_stripe() (Jes Sorensen) [1085530]
-- [md] raid5: relieve lock contention in get_active_stripe() (Jes Sorensen) [1085530]
-- [md] raid5: add proper locking to error path of raid5_start_reshape (Jes Sorensen) [1085530]
-- [kernel] wait: add wait_event_cmd() (Jes Sorensen) [1085530]
-- [md] raid5: Use slow_path to release stripe when mddev->thread is null (Jes Sorensen) [1085530]
-- [block] Consolidate duplicated bio_trim() implementations (Jes Sorensen) [1085530]
-- [md] raid5: fix "distingush" typo (Jes Sorensen) [1085530]
-- [md] raid5: only wakeup necessary threads (Jes Sorensen) [1085530]
-- [md] raid5: flush out all pending requests before proceeding with reshape (Jes Sorensen) [1085530]
-- [md] raid5: use seqcount to protect access to shape in make_request (Jes Sorensen) [1085530]
-- [md] raid5: sysfs entry to control worker thread number (Jes Sorensen) [1085530]
-- [md] raid5: offload stripe handle to workqueue (Jes Sorensen) [1085530]
-- [md] raid5: fix stripe release order (Jes Sorensen) [1085530]
-- [md] raid5: make release_stripe lockless (Jes Sorensen) [1085530]
-- [md] Don't test all of mddev->flags at once (Jes Sorensen) [1085530]
-- [md] Fix apparent cut-and-paste error in super_90_validate (Jes Sorensen) [1085530]
-- [md] fix safe_mode buglet (Jes Sorensen) [1085530]
-- [md] don't call md_allow_write in get_bitmap_file (Jes Sorensen) [1085530]
-- [lib] raid6: add ARM-NEON accelerated syndrome calculation (Jes Sorensen) [1085530]
-- [kernel] wait: Make the __wait_event*() interface more friendly (Jes Sorensen) [1085530]
-- [kernel] sched/wait: Introduce ___wait_event() (Jes Sorensen) [1085530]
-
-* Fri Oct 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-180.el7]
-- [net] ethtool: Check that reserved fields of struct ethtool_rxfh are 0 (Ivan Vecera) [1138823]
-- [net] ethtool: Replace ethtool_ops::{get, set}_rxfh_indir() with {get, set}_rxfh() (Ivan Vecera) [1138823]
-- [net] ethtool: constify array pointer parameters to ethtool_ops::set_rxfh (Ivan Vecera) [1138823]
-- [net] ethtool: Disallow ETHTOOL_SRSSH with both indir table and hash key unchanged (Ivan Vecera) [1138823]
-- [net] ethtool: Expand documentation of ethtool_ops::{get, set}_rxfh() (Ivan Vecera) [1138823]
-- [net] ethtool: Improve explanation of the two arrays following struct ethtool_rxfh (Ivan Vecera) [1138823]
-- [net] ethtool: Name the 'no change' value for setting RSS hash key but not indir table (Ivan Vecera) [1138823]
-- [net] ethtool: Return immediately on error in ethtool_copy_validate_indir() (Ivan Vecera) [1138823]
-- [net] ethtool: exit the loop when invalid index occurs (Ivan Vecera) [1138823]
-- [net] ethtool: Support for configurable RSS hash key (Ivan Vecera) [1138823]
-- [lib] reciprocal_divide: update/correction of the algorithm (Jiri Benc) [1140665]
-- [net] introduce reciprocal_scale helper and convert users (Jiri Benc) [1140665]
-- [net] random32: add prandom_u32_max and convert open coded users (Jiri Benc) [1140665]
-- [net] bpf: do not use reciprocal divide (Jiri Benc) [1140665]
-- [net] genetlink: remove superfluous assignment (Jiri Benc) [1140656]
-- [scsi] pmcraid: use proper genetlink multicast API (Jiri Benc) [1140656]
-- [net] genetlink: Fix uninitialized variable in genl_validate_assign_mc_groups() (Jiri Benc) [1140656]
-- [net] genetlink: fix genlmsg_multicast() bug (Jiri Benc) [1140656]
-- [net] genetlink: make multicast groups const, prevent abuse (Jiri Benc) [1140656]
-- [net] genetlink: pass family to functions using groups (Jiri Benc) [1140656]
-- [net] genetlink: add and use genl_set_err() (Jiri Benc) [1140656]
-- [net] genetlink: remove family pointer from genl_multicast_group (Jiri Benc) [1140656]
-- [net] genetlink: remove genl_unregister_mc_group() (Jiri Benc) [1140656]
-- [fs] quota: use proper genetlink multicast APIs (Jiri Benc) [1140656]
-- [net] drop_monitor: use proper genetlink multicast APIs (Jiri Benc) [1140656]
-- [net] genetlink: only pass array to genl_register_family_with_ops() (Jiri Benc) [1140656]
-- [net] genetlink: rename shadowed variable (Jiri Benc) [1140656]
-- [net] genetlink: unify registration functions (Jiri Benc) [1140656]
-- [net] genetlink: make genl_ops flags a u8 and move to end (Jiri Benc) [1140656]
-- [net] genetlink: make all genl_ops users const (Jiri Benc) [1140656]
-- [net] genetlink: allow making ops const (Jiri Benc) [1140656]
-- [net] genetlink: register family ops as array (Jiri Benc) [1140656]
-- [net] genetlink: remove genl_register_ops/genl_unregister_ops (Jiri Benc) [1140656]
-- [net] ieee802154: use genl_register_family_with_ops() (Jiri Benc) [1140656]
-- [kernel] taskstats: use genl_register_family_with_ops() (Jiri Benc) [1140656]
-- [net] genetlink: Remove extern from function prototypes (Jiri Benc) [1140656]
-- [net] genetlink: fix usage of NLM_F_EXCL or NLM_F_REPLACE (Jiri Benc) [1140656]
-- [net] udp: Fix inverted NAPI_GRO_CB(skb)->flush test (Florian Westphal) [1131999]
-- [net] gre: gro: Fix a bug that breaks the forwarding path (Florian Westphal) [1131999]
-- [net] gro: reset skb->truesize in napi_reuse_skb() (Florian Westphal) [1131999]
-- [net] netdev_features: work around NETIF_F kabi breakage (Florian Westphal) [1131999]
-- [net] l2tp: Enable checksum unnecessary conversions for l2tp/UDP sockets (Florian Westphal) [1131999]
-- [net] vxlan: Enable checksum unnecessary conversions for vxlan/UDP sockets (Florian Westphal) [1131999]
-- [net] gre: Add support for checksum unnecessary conversions (Florian Westphal) [1131999]
-- [net] udp: Add support for doing checksum unnecessary conversion (Florian Westphal) [1131999]
-- [net] Infrastructure for checksum unnecessary conversions (Florian Westphal) [1131999]
-- [net] Support for csum_bad in skbuff (Florian Westphal) [1131999]
-- [net] sctp: Change sctp to implement csum_levels (Florian Westphal) [1131999]
-- [net] Allow GRO to use and set levels of checksum unnecessary (Florian Westphal) [1131999]
-- [net] Clarification of CHECKSUM_UNNECESSARY (Florian Westphal) [1131999]
-- [net] skbuff: improve comment on checksumming (Florian Westphal) [1131999]
-- [net] skbuff: Use ALIGN macro instead of open coding it (Florian Westphal) [1131999]
-- [net] Allocate a new 16 bits for flags in skbuff (Florian Westphal) [1131999]
-- [net] gre: When GRE csum is present count as encap layer wrt csum (Florian Westphal) [1131999]
-- [net] udp: additional GRO support (Florian Westphal) [1131999]
-- [net] tcp: Call skb_gro_checksum_validate (Florian Westphal) [1131999]
-- [net] ipv6: gro: fix CHECKSUM_COMPLETE support (Florian Westphal) [1131999]
-- [net] gre: call skb_gro_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] add gro_compute_pseudo functions (Florian Westphal) [1131999]
-- [net] skb_gro_checksum_* functions (Florian Westphal) [1131999]
-- [net] fix setting csum_start in skb_segment() (Florian Westphal) [1131999]
-- [net] vxlan: Checksum fixes (Florian Westphal) [1131999]
-- [net] add skb_pop_rcv_encapsulation (Florian Westphal) [1131999]
-- [net] udp: call __skb_checksum_complete when doing full checksum (Florian Westphal) [1131999]
-- [net] Fix save software checksum complete (Florian Westphal) [1131999]
-- [net] Fix GSO constants to match NETIF flags (Florian Westphal) [1131999]
-- [net] Add skb_gro_postpull_rcsum to udp and vxlan (Florian Westphal) [1131999]
-- [net] Save software checksum complete (Florian Westphal) [1131999]
-- [net] Preserve CHECKSUM_COMPLETE at validation (Florian Westphal) [1131999]
-- [net] vxlan: Add support for UDP checksums (v4 sending, v6 zero csums) (Florian Westphal) [1131999]
-- [net] gre: Call gso_make_checksum (Florian Westphal) [1131999]
-- [net] gre: simplify GRE header length calculation in gre_gso_segment() (Florian Westphal) [1131999]
-- [net] Add GSO support for UDP tunnels with checksum (Florian Westphal) [1131999]
-- [net] tcp: Call gso_make_checksum (Florian Westphal) [1131999]
-- [net] Support for multiple checksums with gso (Florian Westphal) [1131999]
-- [net] l2tp: call udp{6}_set_csum (Florian Westphal) [1131999]
-- [net] udp: Generic functions to set checksum (Florian Westphal) [1131999]
-- [net] l2tp: Add support for zero IPv6 checksums (Florian Westphal) [1131999]
-- [net] udp: Make enabling of zero UDP6 csums more restrictive (Florian Westphal) [1131999]
-- [net] Split sk_no_check into sk_no_check_{rx, tx} (Florian Westphal) [1131999]
-- [net] Eliminate no_check from protosw (Florian Westphal) [1131999]
-- [net] sunrpc: Remove sk_no_check setting (Florian Westphal) [1131999]
-- [net] l2tp: Remove UDP checksum verification (Florian Westphal) [1131999]
-- [net] udp: Verify UDP checksum before handoff to encap (Florian Westphal) [1131999]
-- [net] icmp6: Call skb_checksum_validate (Florian Westphal) [1131999]
-- [net] icmp: Call skb_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] igmp: Call skb_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] gre6: Call skb_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] gre: Call skb_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] ipv6: Need to sock_put on csum error (Florian Westphal) [1131999]
-- [net] ipv6: Implmement RFC 6936 (zero RX csums for UDP/IPv6) (Florian Westphal) [1131999]
-- [net] udp: Only allow busy read/poll on connected sockets (Florian Westphal) [1078978 1131999]
-- [net] ipv6: log src and dst along with "udp checksum is 0" (Florian Westphal) [1131999]
-- [net] ipv6: Call skb_checksum_init in IPv6 (Florian Westphal) [1131999]
-- [net] ipv4: Call skb_checksum_init in IPv4 (Florian Westphal) [1131999]
-- [net] Generalize checksum_init functions (Florian Westphal) [1131999]
-- [net] Change x86_64 add32_with_carry to allow memory operand (Florian Westphal) [1131999]
-- [x86_64] csum_add for x86_64 (Florian Westphal) [1131999]
-- [net] Allow csum_add to be provided in arch (Florian Westphal) [1131999]
-- [net] ipv4: add a sock pointer to dst->output() path (Jiri Pirko) [1081956]
-- [net] iptunnels: remove net arg from iptunnel_xmit() (Jiri Pirko) [1081956]
-- [net] vti: Use the tunnel mark for lookup in the error handlers (Jiri Pirko) [1091561]
-- [net] xfrm4: Remove duplicate semicolon (Jiri Pirko) [1091561]
-- [net] xfrm4: Properly handle unsupported protocols (Jiri Pirko) [1091561]
-- [net] vti4: Don't count header length twice (Jiri Pirko) [1091561]
-- [net] vti4: don't allow to add the same tunnel twice (Jiri Pirko) [1091561]
-- [net] vti4: Enable namespace changing (Jiri Pirko) [1091561]
-- [net] vti4: Check the tunnel endpoints of the xfrm state and the vti interface (Jiri Pirko) [1091561]
-- [net] vti4: Support inter address family tunneling (Jiri Pirko) [1091561]
-- [net] vti4: Use the on xfrm_lookup returned dst_entry directly (Jiri Pirko) [1091561]
-- [net] vti4: Update the ipv4 side to use it's own receive hook (Jiri Pirko) [1091561]
-- [net] skb: allow skb_scrub_packet() to be used by tunnels (Jiri Pirko) [1091561]
-- [net] ipv4: xfrm: Introduce xfrm_tunnel_notifier for xfrm tunnel mode callback (Jiri Pirko) [1091561]
-- [net] ip_tunnel: Remove double unregister of the fallback device (Jiri Pirko) [1091561]
-- [net] ipip: add x-netns support (Jiri Pirko) [1091561]
-- [net] vti4: switch to new ip tunnel code (Jiri Pirko) [1091561]
-- [net] ip_tunnel: Make vti work with i_key set (Jiri Pirko) [1091561]
-- [net] xfrm: Add xfrm_tunnel_skb_cb to the skb common buffer (Jiri Pirko) [1091561]
-- [net] ipcomp4: Use the IPsec protocol multiplexer API (Jiri Pirko) [1091561]
-- [net] ah4: Use the IPsec protocol multiplexer API (Jiri Pirko) [1091561]
-- [net] esp4: Use the IPsec protocol multiplexer API (Jiri Pirko) [1091561]
-- [net] xfrm4: Add IPsec protocol multiplexer (Jiri Pirko) [1091561]
-
-* Fri Oct 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-179.el7]
-- [drm] i915: don't crash if unable to setup stolen (Rob Clark) [1128939]
-- [fs] nfs: Don't reset pg_moreio in __nfs_pageio_add_request (Steve Dickson) [1120728]
-- [fs] nfs: Remove 2 unused variables (Steve Dickson) [1120728]
-- [fs] nfs: handle multiple reqs in nfs_wb_page_cancel (Steve Dickson) [1120728]
-- [fs] nfs: nfs_page should take a ref on the head req (Steve Dickson) [1120728]
-- [fs] nfsv4: test SECINFO RPC_AUTH_GSS pseudoflavors for support (Steve Dickson) [1120728]
-- [fs] nfs: Return -EPERM if no supported or matching SECINFO flavor (Steve Dickson) [1120728]
-- [fs] nfs: check the return of nfs4_negotiate_security in nfs4_submount (Steve Dickson) [1120728]
-
-* Fri Oct 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-178.el7]
-- [crypto] drbg: fix maximum value checks on 32 bit systems (Herbert Xu) [1138311]
-- [crypto] drbg: remove configuration of fixed values (Herbert Xu) [1138311]
-- [crypto] drbg: fix failure of generating multiple of 2**16 bytes (Herbert Xu) [1011562]
-- [crypto] drbg: drbg_exit() can be static (Herbert Xu) [1011562]
-- [crypto] drbg: HMAC-SHA1 DRBG has crypto strength of 128 bits (Herbert Xu) [1011562]
-- [crypto] drbg: Mix a time stamp into DRBG state (Herbert Xu) [1011562]
-- [crypto] drbg: Select correct DRBG core for stdrng (Herbert Xu) [1011562]
-- [crypto] drbg: Call CTR DRBG DF function only once (Herbert Xu) [1011562]
-- [crypto] drbg: Fix format string for debugging statements (Herbert Xu) [1011562]
-- [crypto] drbg: cleanup of preprocessor macros (Herbert Xu) [1011562]
-- [crypto] drbg: Use Kconfig to ensure at least one RNG option is set (Herbert Xu) [1011562]
-- [crypto] drbg: use of kernel linked list (Herbert Xu) [1011562]
-- [crypto] drbg: fix memory corruption for AES192 (Herbert Xu) [1011562]
-- [crypto] drbg: simplify ordering of linked list in drbg_ctr_df (Herbert Xu) [1011562]
-- [crypto] drbg: Add DRBG test code to testmgr (Herbert Xu) [1011562]
-- [crypto] drbg: DRBG testmgr test vectors (Herbert Xu) [1011562]
-- [crypto] drbg: compile the DRBG code (Herbert Xu) [1011562]
-- [crypto] drbg: DRBG kernel configuration options (Herbert Xu) [1011562]
-- [crypto] drbg: header file for DRBG (Herbert Xu) [1011562]
-- [crypto] drbg: SP800-90A Deterministic Random Bit Generator (Herbert Xu) [1011562]
-- [virt] virtio_scsi: avoid cancelling uninitialized work items (Paolo Bonzini) [1050834]
-- [net] macvtap: Fix race between device delete and open (Vlad Yasevich) [1075904]
-- [video] offb: Little endian fixes (David Gibson) [1144937]
-- [cpufreq] release policy->rwsem on error (Prarit Bhargava) [1140184]
-- [char] ipmi: Turn off all activity on an idle ipmi interface (Tony Camuso) [1111214]
-- [char] ipmi: Turn off default probing of interfaces (Tony Camuso) [1111214]
-- [char] ipmi: Reset the KCS timeout when starting error recovery (Tony Camuso) [1111214]
-- [char] ipmi: Fix a race restarting the timer (Tony Camuso) [1111214]
-- [char] ipmi: ipmi_bt_sm, fix infinite loop (Tony Camuso) [1111214]
-- [char] ipmi: delete non-required instances of include <linux/init.h> (Tony Camuso) [1111214]
-- [char] ipmi: Cleanup error return (Tony Camuso) [1111214]
-- [char] ipmi: fix timeout calculation when bmc is disconnected (Tony Camuso) [1111214]
-- [char] ipmi: use USEC_PER_SEC instead of 1000000 for more meaningful (Tony Camuso) [1111214]
-- [char] ipmi: remove deprecated IRQF_DISABLED (Tony Camuso) [1111214]
-- [char] ipmi: Initialize locals to avoid warning (Tony Camuso) [1111214]
-- [char] ipmi: info leak in compat_ipmi_ioctl() (Tony Camuso) [1111214]
-- [char] ipmi: Convert use of typedef ctl_table to struct ctl_table (Tony Camuso) [1111214]
-
-* Tue Sep 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-177.el7]
-- [x86] uv: Set n_lshift based on GAM_GR_CONFIG MMR for UV3 (George Beshers) [1098325]
-- [kernel] audit: correct AUDIT_GET_FEATURE return message type (Richard Guy Briggs) [1141791]
-- [mm] fix the theoretical compound_lock() vs prep_new_page() race (Andrea Arcangeli) [1135506]
-- [mm] hugetlb: call MMU notifiers when copying a hugetlb page range (Andrea Arcangeli) [1135506]
-- [mm] page_alloc: convert hot/cold parameter and immediate callers to bool (Andrea Arcangeli) [1135506]
-- [mm] introdule compound_head_by_tail() (Andrea Arcangeli) [1135506]
-- [mm] swap: split put_compound_page() (Andrea Arcangeli) [1135506]
-- [mm] slub: do not VM_BUG_ON_PAGE() for temporary on-stack pages (Andrea Arcangeli) [1135506]
-- [mm] page_alloc: change mm debug routines back to EXPORT_SYMBOL (Andrea Arcangeli) [1135506]
-- [mm] dump page when hitting a VM_BUG_ON using VM_BUG_ON_PAGE (Andrea Arcangeli) [1135506]
-- [mm] thp: __get_page_tail_foll() can use get_huge_page_tail() (Andrea Arcangeli) [1135506]
-- [mm] print more details for bad_page() (Andrea Arcangeli) [1135506]
-- [mm] thp: turn compound_head() into BUG_ON(!PageTail) in get_huge_page_tail() (Andrea Arcangeli) [1135506]
-- [mm] hugetlbfs: Add some VM_BUG_ON()s to catch non-hugetlbfs pages (Andrea Arcangeli) [1135506]
-- [mm] swap: introduce put_[un]refcounted_compound_page helpers for splitting put_compound_page() (Andrea Arcangeli) [1135506]
-- [mm] close PageTail race (Andrea Arcangeli) [1135506]
-- [block] aoe: adjust ref of head for compound page tails (Andrea Arcangeli) [1135506]
-- [mm] swap: reorganize put_compound_page() (Andrea Arcangeli) [1135506]
-- [mm] hugetlbfs: use __compound_tail_refcounted in __get_page_tail too (Andrea Arcangeli) [1135506]
-- [mm] tail page refcounting optimization for slab and hugetlbfs (Andrea Arcangeli) [1135506]
-- [mm] hugetlbfs: move the put/get_page slab and hugetlbfs optimization in a faster path (Andrea Arcangeli) [1135506]
-- [mm] hugetlbfs: fix hugetlbfs optimization (Andrea Arcangeli) [1135506]
-- [mm] make lru_add_drain_all() selective (Andrea Arcangeli) [1135506]
-- [mm] fix aio performance regression for database caused by THP (Andrea Arcangeli) [1135506]
-- [powerpc] Add smp_mb()s to arch_spin_unlock_wait() (Gustavo Duarte) [1136528]
-- [powerpc] Add smp_mb() to arch_spin_is_locked() (Gustavo Duarte) [1136528]
-- [acpi] scan: not cache _SUN value in struct acpi_device_pnp (Prarit Bhargava) [1140567]
-- [acpi] scan: ACPI device object sysfs attribute for _STA evaluation (Prarit Bhargava) [1140567]
-
-* Tue Sep 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-176.el7]
-- [alsa] hda: Set up initial pins for Acer Aspire V5 (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Replacing hex with #defines (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: fix broken user-visible string (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: prink replacement (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: ctpcm.c printk replacement (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Fix the silence data for DSD formats (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: ct20k1reg Fix typo in include guard (Jaroslav Kysela) [1112200]
-- [alsa] hda: ca0132_regs.h Fix typo in include guard (Jaroslav Kysela) [1112200]
-- [alsa] core: fix buffer overflow in snd_info_get_line() (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Use tables for batch COEF writes/updtes (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add alc_update_coef*_idx() helper (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Use alc_write_coef_idx() in alc269_quanta_automake() (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Optimize alc888_coef_init() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove obsoleted EXPORT_SYMBOL_HDA() macro (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove obsoleted snd_hda_check_board_config() & co (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: apply Valleyview fix-ups to Cherryview display codec (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: set depop_delay for haswell plus (Jaroslav Kysela) [1112200]
-- [alsa] hda: restore the gpio led after resume (Jaroslav Kysela) [1112200]
-- [alsa] core: create write-only attribute macros for devices and drivers (Jaroslav Kysela) [1112200]
-- [alsa] sysfs: create __ATTR_WO() (Jaroslav Kysela) [1112200]
-- [alsa] dell-led: add mic mute led interface (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Avoid setting wrong COEF on ALC269 & co (Jaroslav Kysela) [1112200]
-- [alsa] hda: Set TLV_DB_SCALE_MUTE bit for cx5051 vmaster (Jaroslav Kysela) [1112200]
-- [alsa] pci: Remove DEFINE_PCI_DEVICE_TABLE macro use (Jaroslav Kysela) [1112200]
-- [alsa] hda/ca0132: Don't try loading firmware at resume when already failed (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix pop noises on reboot for Dell XPS 13 9333 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Set internal mic as default input source on Dell XPS 13 9333 (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: fix BOSS ME-25 MIDI regression (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix parsing of CMI8888 codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix probing and stuttering on CMI8888 HD-audio controller (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Fixed ALC286/ALC288 recording delay for Headset Mic (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Whitespace cleanups for sound/usb/midi.* (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Respond to suspend and resume callbacks for MIDI input (Jaroslav Kysela) [1112200]
-- [alsa] virtuoso: add Xonar Essence STX II support (Jaroslav Kysela) [1112200]
-- [alsa] riptide: fix d confusingly prefixed with 0x in format strings (Jaroslav Kysela) [1112200]
-- [alsa] hda: add codec ID for Braswell display audio codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: add PCI IDs for Intel Braswell (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Adjust Gamecom 780 volume level (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: improve dmesg source grepability (Jaroslav Kysela) [1112200]
-- [alsa] hda: add mic mute led hook for dell machines (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix an external mic jack problem on a HP machine (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix loopback noise on Dell XPS 15 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make vendor quirks lowest prio for ALC2xx (Jaroslav Kysela) [1112200]
-- [alsa] hda: Refactor quirk picking and change quirk priority (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add mic fixup for Gigabyte BXBT-2807 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add mute LED pin quirk for HP 15 touchsmart (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Add tstamp_type and proto to sw_params compat layer (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Introduce protocol version field to sw_params (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add NULL check to all PM ops in hda_intel.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: init_flag is in struct hda_intel (Jaroslav Kysela) [1112200]
-- [alsa] compress: fix an integer overflow check (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add the pin fixup for HP Envy TS bass speaker (Jaroslav Kysela) [1112200]
-- [alsa] control: Define SNDRV_CTL_TLV_OP_* constants (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix broken PM due to incomplete i915 initialization (Jaroslav Kysela) [1112200]
-- [alsa] hda: Revert stream assignment order for Intel controllers (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Add timestamp type to sw_params (Jaroslav Kysela) [1112200]
-- [alsa] pcm: simplify snd_pcm_tstamp() (Jaroslav Kysela) [1112200]
-- [alsa] hda: add capture mute led support in led_power_filter (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix a typo by changing mute_led_nid to cap_mute_led_nid (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add new GPU codec ID 0x10de0070 to snd-hda (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix build warning (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add several entries for enabling HP mute led (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix and neaten print_nid_path/debug_badness (Jaroslav Kysela) [1112200]
-- [alsa] pcm_dmaengine: Correct support for 24bits physical sample widths (Jaroslav Kysela) [1112200]
-- [alsa] pcm_dmaengine: Use the available wrapper to get physical width (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Correcting/completing #defines for REGS (Jaroslav Kysela) [1112200]
-- [alsa] hda: restore BCLK M/N value as per CDCLK for HSW/BDW display HDA controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove unused variable (Jaroslav Kysela) [1112200]
-- [alsa] mixart: Remove unused variable (Jaroslav Kysela) [1112200]
-- [alsa] echoaudio: Remove unused variable (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix build error in hda_tegra.c (Jaroslav Kysela) [1112200]
-- [alsa] trident: Remove unused variable in trident_memory.c (Jaroslav Kysela) [1112200]
-- [alsa] trident: Remove unused variable in trident_main.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix invalid function call in snd_hda_add_vmaster() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add a fixup for Thinkpad T540p (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add another headset pin quirk for some Dell machines (Jaroslav Kysela) [1112200]
-- [alsa] hda: Replace ICH6_ prefix (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove obsoleted SFX definitions (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move SD nums definitions to hda_intel.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Use common reboot notifier (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move more PCI-controller-specific stuff from generic code (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make position_fix as generic callback (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove superfluous MAX_AZX_DEV (Jaroslav Kysela) [1112200]
-- [alsa] hda: restore BCLK M/N values when resuming HSW/BDW display controller (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Fix races at disconnection and PCM closing (Jaroslav Kysela) [1112200]
-- [alsa] hda: Adjust speaker HPF and add LED support for HP Spectre 13 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove the obsoleted static quirk codes from patch_cmedia.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove the obsoleted static quirk codes from patch_conexant.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Kill the rest of snd_print*() usages (Jaroslav Kysela) [1112200]
-- [alsa] hda: Kill snd_printd*() in HDMI debug / info prints (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make the pin quirk tables use the SND_HDA_PIN_QUIRK macro (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make a SND_HDA_PIN_QUIRK macro (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add pin quirk for Dell XPS 15 (Jaroslav Kysela) [1112200]
-- [alsa] seq/seq_memory: Fix closing brace followed by if (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: call overridden init on resume (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix usage of "model" module parameter (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Support HP mute led for output and input (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add more entry for enable HP mute led (Jaroslav Kysela) [1112200]
-- [alsa] control: Make sure that id->index does not overflow (Jaroslav Kysela) [1112200 1117314] {CVE-2014-4656}
-- [alsa] control: Handle numid overflow (Jaroslav Kysela) [1112200 1117314] {CVE-2014-4656}
-- [alsa] control: Fix replacing user controls (Jaroslav Kysela) [1112200 1117324] {CVE-2014-4654 CVE-2014-4655}
-- [alsa] control: Protect user controls against concurrent access (Jaroslav Kysela) [1112200 1117339] {CVE-2014-4652}
-- [alsa] hd-audio: Don't continue probing i915 when nomodeset is given (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add quirk for external mic on Lifebook U904 (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix a fixup value for codec alc293 in the pin_quirk table (Jaroslav Kysela) [1112200]
-- [alsa] intel8x0: Use ktime and ktime_get() (Jaroslav Kysela) [1112200]
-- [alsa] core: Use ktime_get_ts() (Jaroslav Kysela) [1112200]
-- [alsa] hda: verify pin-converter connection on unsol event for HSW and VLV (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add quirk for ABit AA8XE (Jaroslav Kysela) [1112200]
-- [alsa] Revert: hda: mask buggy stream DMA0 for Broadwell display controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: using POS_FIX_LPIB on Broadwell HDMI Audio (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add support of ALC667 codec (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add more codec rename (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: New vendor ID for ALC233 (Jaroslav Kysela) [1112200]
-- [alsa] hda: add two new pin tables (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add support of ALC891 codec (Jaroslav Kysela) [1112200]
-- [alsa] seq: Continue broadcasting events to ports if one of them fails (Jaroslav Kysela) [1112200]
-- [alsa] seq: correctly detect input buffer overflow (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Fix COEF widget NID for ALC260 replacer fixup (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Correction of fixup codes for PB V7900 laptop (Jaroslav Kysela) [1112200]
-- [alsa] hda/analog: Fix silent output on ASUS A8JN (Jaroslav Kysela) [1112200]
-- [alsa] hda: move some alc662 family machines to hda_pin_quirk table (Jaroslav Kysela) [1112200]
-- [alsa] hda: move some alc269 family machines to hda_pin_quirk table (Jaroslav Kysela) [1112200]
-- [alsa] Revert: hda: drop def association and sequence from pinconf comparing (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix tegra build (Jaroslav Kysela) [1112200]
-- [alsa] hda: Pop noises fix for XPS13 9333 (Jaroslav Kysela) [1112200]
-- [alsa] hda: add an instance to use snd_hda_pick_pin_fixup (Jaroslav Kysela) [1112200]
-- [alsa] hda: drop def association and sequence from pinconf comparing (Jaroslav Kysela) [1112200]
-- [alsa] hda: get subvendor from codec rather than pci_dev (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add a new quirk match based on default pin configuration (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add fixup_forced flag (Jaroslav Kysela) [1112200]
-- [alsa] snd-usb/mixer: remove error messages on failed kmalloc() (Jaroslav Kysela) [1112200]
-- [alsa] snd-usb/mixer: coding style fixups (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix onboard audio on Intel H97/Z97 chipsets (Jaroslav Kysela) [1112200]
-- [alsa] Replace DEFINE_PCI_DEVICE_TABLE macro use (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add support headset mode for ALC233 (Jaroslav Kysela) [1112200]
-- [alsa] lola: fix format type mismatch in sound/pci/lola/lola_proc.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix format type mismatch in sound/pci/hda/patch_sigmatel.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Disable AA-mix on Sony Vaio S13 (Jaroslav Kysela) [1112200]
-- [alsa] hda: White noise fix for XPS13 9333 (Jaroslav Kysela) [1112200]
-- [alsa] hda/tegra: Fix MODULE_DEVICE_TABLE typo (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add driver for Tegra SoC HDA (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: Add Nvidia Tegra124 HDMI support (Jaroslav Kysela) [1112200]
-- [alsa] fm801: convert struct description to kernel-doc (Jaroslav Kysela) [1112200]
-- [alsa] pcm_dmaengine: Add check during device suspend (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirk for a Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for three Dell laptops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add new GPU codec ID to snd-hda (Jaroslav Kysela) [1112200]
-- [alsa] hda: if statement not indented (Jaroslav Kysela) [1112200]
-- [alsa] hda: mask buggy stream DMA0 for Broadwell display controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add dock pin setups for Thinkpad T440 (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: Set infoframe and channel mapping even without sink (Jaroslav Kysela) [1112200]
-- [alsa] fm801: introduce fm801_ac97_is_ready()/fm801_ac97_is_valid() helpers (Jaroslav Kysela) [1112200]
-- [alsa] fm801: introduce macros to access the hardware (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: Set converter channel count even without sink (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: work around corrupted TEAC UD-H01 feedback data (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Fix deadlocks at resuming (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Save mixer status only once at suspend (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Prevent printk ratelimiting from spamming kernel log while DEBUG not defined (Jaroslav Kysela) [1112200]
-- [alsa] hda: Suppress CORBRP clear on Nvidia controller chips (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add more entry for enable HP mute led (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirk for a Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Fix format string mismatch in mixer.c (Jaroslav Kysela) [1112200]
-- [alsa] core: Fix format string mismatch in seq_midi.c (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add new codec ALC293/ALC3235 UAJ supported (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add two codecs alias name for Dell (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Translate comments from french to english (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Remove useless #if 0 .. #endif (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Remove dead code (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Fix dev_dbg typo (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Switch to using BIT macro (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Remove unused defines (Jaroslav Kysela) [1112200]
-- [alsa] pcm: BUG message unnecessarily triggers kerneloops (Jaroslav Kysela) [1112200]
-- [alsa] MIDI driver for Behringer BCD2000 USB device (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add headset Mic support for Dell machine (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirk for a Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add support of ALC288 codec (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Suppress repetitive debug messages from retire_playback_urb() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make full_reset boolean (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirk for a Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] hda: Use runtime helper to check active state (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Fix boundary checks in PCM pointer ops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Do not assign streams in reverse order (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add eapd shutup to ALC283 (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Change model name alias for ChromeOS (Jaroslav Kysela) [1112200]
-- [alsa] Kconfig: rename HAS_IOPORT to HAS_IOPORT_MAP (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Improve HP depop when system change power state on Chromebook (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Save/restore routing and rate registers (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: restore AK4xxx volumes on resume (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Add S/PDIF suspend support for ICE1712-based M-Audio cards (Jaroslav Kysela) [1112200]
-- [alsa] cs8427: separate HW initialization (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix silent speaker output due to mute LED fixup (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Fixed single output machine get empty hp sense (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Add suspend support for M-Audio ICE1712-based cards (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: add suspend support for ICE1712 chip (Jaroslav Kysela) [1112200]
-- [alsa] hda: Enable beep for ASUS 1015E (Jaroslav Kysela) [1112200]
-- [alsa] asihpi: fix some indenting in snd_card_asihpi_pcm_new() (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for three Dell laptops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Inform the unexpectedly ignored pins by auto-parser (Jaroslav Kysela) [1112200]
-- [alsa] hda: verify pin-cvt connection on preparing a stream for Intel HDMI codec (Jaroslav Kysela) [1112200]
-- [alsa] compress: Pass through return value of open ops callback (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Restore default value for ALC282 (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) fix Stereo Upmixing regression (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Fix the noise after suspend and resume on ALC282 codec (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Restore default value for ALC283 (Jaroslav Kysela) [1112200]
-- [alsa] sis7019: Simplify dependencies (Jaroslav Kysela) [1112200]
-- [alsa] cs5535audio: Also needed on MIPS (Jaroslav Kysela) [1112200]
-- [alsa] hda: initialize audio InfoFrame to be all zero (Jaroslav Kysela) [1112200]
-- [alsa] cs553*: Fix dependencies (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix loud click noise with IdeaPad 410Y (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Add quirk for Logitech Webcam C500 (Jaroslav Kysela) [1112200]
-- [alsa] emu10k1: Fix possible NULL dereference (Jaroslav Kysela) [1112200]
-- [alsa] echoaudio: use after free on error (Jaroslav Kysela) [1112200]
-- [alsa] lola: NULL deref on allocation error (Jaroslav Kysela) [1112200]
-- [alsa] hda: Use analog beep for Thinkpads with AD1984 codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add missing loopback merge path for AD1884/1984 codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda: add automute fix for another dell AIO model (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add headset quirk for Dell DT (Jaroslav Kysela) [1112200]
-- [alsa] hda: Added inverted digital-mic handling for Acer TravelMate 8371 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Mark reg op args as iomem (Jaroslav Kysela) [1112200]
-- [alsa] hda: Rename reg access ops in hda_controller_ops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make azx_attach_pcm_stream static (Jaroslav Kysela) [1112200]
-- [alsa] hda: remove PCI dependency in Kconfig (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move codec create to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move azx_interrupt to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add position_check op (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move low level functions to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: move alloc_cmd_io to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Relocate RIRB/CORB interface to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move the dsp loader to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Pull pages allocation to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add hda_controller.c and move pcm ops from hda_intel (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add pcm_mmap_prepare op (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move snd page allocation to ops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Pass max_slots and power_save to codec_create (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add jackpoll_ms to struct azx (Jaroslav Kysela) [1112200]
-- [alsa] hda: remove unused clear of STATESTS (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add function pointer for disabling MSI (Jaroslav Kysela) [1112200]
-- [alsa] hda: Use device pointer from the card instead of pci (Jaroslav Kysela) [1112200]
-- [alsa] hda: Keep pointer to bdl_pos_fix in chip struct (Jaroslav Kysela) [1112200]
-- [alsa] hda: Allow different ops to read/write registers (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move some definitions to new hda_priv.h (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix CORB reset to follow specification (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix registration of beep input device (Jaroslav Kysela) [1112200]
-- [alsa] hda/sigmatel: Allow auto-switching for dock line-in of HP laptops (Jaroslav Kysela) [1112200]
-- [alsa] Move EXPORT_SYMBOL() in appropriate places (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make codec object as a parent for input beep devices (Jaroslav Kysela) [1112200]
-- [alsa] 6fire: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ymfpci: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] vx222: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] trident: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rme9652: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] hdspm: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] hdsp: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] pcxhr: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] nm256: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] mixart: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] lx6464es: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] lola: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ice17xx: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] emu10k1: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] emu10k1x: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] echoaudio: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cs46xx: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cs5535audio: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ca0106: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] aw2: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ali5451: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ac97: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] via82xx_modem: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] via82xx: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] sonicvibes: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rme96: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rme32: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] maestro3: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] intel8x0m: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] intel8x0: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] fm801: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] es1968: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] es1938: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ens137x: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cs5530: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cs4281: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cmipci: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] bt87x: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] azt3328: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] azt3328: Remove function debug prints (Jaroslav Kysela) [1112200]
-- [alsa] atiixp-modem: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] atiixp: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] als4000: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] als300: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] als300: Remove function debug prints (Jaroslav Kysela) [1112200]
-- [alsa] ad1889: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rme96: Convert to the new pm_ops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Replace with standard printk (Jaroslav Kysela) [1112200]
-- [alsa] hda: Enable sysfs attributes without CONFIG_SND_HDA_RECONFIG (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add sysfs to codec object, too (Jaroslav Kysela) [1112200]
-- [alsa] hda: Create own device struct for each codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: Manage each codec instance individually (Jaroslav Kysela) [1112200]
-- [alsa] Clean up snd_device_*() codes (Jaroslav Kysela) [1112200]
-- [alsa] Use priority list for managing device list (Jaroslav Kysela) [1112200]
-- [alsa] hwdep: Allow to assign the given parent (Jaroslav Kysela) [1112200]
-- [alsa] hwdep: Take private_data as drvdata for sysfs (Jaroslav Kysela) [1112200]
-- [alsa] Create sysfs attribute files via groups (Jaroslav Kysela) [1112200]
-- [alsa] hda: Avoid codec D3 for keeping mute LED up on Lenovo Yxx0 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add a fixup for HP Folio 13 mute LED (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add more entry for enable HP mute led (Jaroslav Kysela) [1112200]
-- [alsa] Export snd_pcm_constraint_mask64() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Enable front audio jacks on one HP desktop model (Jaroslav Kysela) [1112200]
-- [alsa] core: Fix missing card sysfs contents (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add QEMU codec vendor ID (Jaroslav Kysela) [1112200]
-- [alsa] hda/ca0132: Fix recording from mode id 0x8 (Jaroslav Kysela) [1112200]
-- [alsa] hda/ca0132: setup/cleanup streams (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for two Dell laptops (Jaroslav Kysela) [1112200]
-- [alsa] usx2y: Don't peep the card internal object (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: work around KEF X300A firmware bug (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove superfluous inclusion of linux/pci.h (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Allow NULL bus->pci (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove dependency on bus->pci in hda_beep.c (Jaroslav Kysela) [1112200]
-- [alsa] ak4117: Do not free priv until timer handler hasn't actually stopped using it (Jaroslav Kysela) [1112200]
-- [alsa] Drop __bitwise and typedefs for snd_device attributes (Jaroslav Kysela) [1112200]
-- [alsa] i2c/ak413x: Use SNDRV_DEV_CODEC for ak413x codec objects (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Use SNDRV_DEV_CODEC for mixer objects (Jaroslav Kysela) [1112200]
-- [alsa] seq_oss: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] seq: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] timer: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] oss: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] hwdep: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rawmidi: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] core: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] control: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] seq_oss: Drop debug prints (Jaroslav Kysela) [1112200]
-- [alsa] Use standard device refcount for card accounting (Jaroslav Kysela) [1112200]
-- [alsa] Use static groups for id and number card sysfs attr files (Jaroslav Kysela) [1112200]
-- [alsa] Embed card device into struct snd_card (Jaroslav Kysela) [1112200]
-- [alsa] Mandate to pass a device pointer at card creation time (Jaroslav Kysela) [1112200]
-- [alsa] usb: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1112200]
-- [alsa] pci: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1112200]
-- [alsa] drivers: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1112200]
-- [alsa] Mandate to pass a device pointer at card creation time (Jaroslav Kysela) [1112200]
-- [alsa] Drop unused name argument in snd_register_oss_device() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make snd_hda_gen_spec_free() static (Jaroslav Kysela) [1112200]
-- [alsa] hda: Disable static quirks for C-Media codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move HDA_FIXUP_ACT_FREE call in snd_hda_gen_free() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix undefined symbol due to builtin/module mixup (Jaroslav Kysela) [1112200]
-- [alsa] Fix typos in alsa-driver-api.xml (Jaroslav Kysela) [1112200]
-- [alsa] lx6464es: Remove unused function in pci/lx6464es/lx_core.c (Jaroslav Kysela) [1112200]
-- [alsa] pcsp: Include appropriate header file in pcsp/pcsp_input.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add subwoofer quirks for Asus UX51VZH and N55SF (Jaroslav Kysela) [1112200]
-- [alsa] hda: Rename ASUS subwoofer quirks (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix mic capture on Sony VAIO Pro 11 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add a headset quirk for Dell XPS 13 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix inconsistent Mic mute LED (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix leftover ifdef checks after modularization (Jaroslav Kysela) [1112200]
-- [alsa] hda: Improve loopback path lookups for AD1983 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix missing VREF setup for Mac Pro 1,1 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add missing mixer widget for AD1983 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix silent output on Toshiba Satellite L40 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add mute LED support to Lenovo Ideapad (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Resume mixer values properly (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Add missing kconfig dependecy (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: allow PIN_OUT to be dynamically enabled (Jaroslav Kysela) [1112200]
-- [alsa] hda: Do not accept responses from non-existing codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Disable static quirks (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Enable stereo mix input for CX20549 and CX20551 (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Add analog loopback mixing to CX20549 (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Apply cap of mix amp volume on CX20551 codec (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Use generic parser for HP 530 (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Use generic parser for Toshiba P105 (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Apply the amp cap override for CX20549 mixer (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Re-implement OLPC XO workarounds via fixup (Jaroslav Kysela) [1112200]
-- [alsa] hda: Avoid unnecessary verbs write in snd_hda_activate_path() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add fixup name lookup for CX5051 and 5066 codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for another Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) cleanup and minor changes (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify high-pass filter control (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify input select functions (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify capture volume functions (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) use headphone volume control (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify playback output select (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) capture from I2S channel 1, not 2 (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) move the mixer code into another file (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: modify CS4245 register dumping function (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: modify adjust_dg_dac_routing function (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify DAC/ADC parameters function (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify initialization functions (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) add new CS4245 SPI functions (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: additional definitions for the Xonar DG/DGX card (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: change description of the xonar_dg.c file (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: export oxygen_update_dac_routing symbol (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: add mute mask for the OXYGEN_PLAY_ROUTING register (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: modify the SPI writing function (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: add the separate SPI waiting function (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add parameter for dumping processing coefficients (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix silent output on MacBook Air 1,1 (Jaroslav Kysela) [1112200]
-- [alsa] Refactor slot assignment code (Jaroslav Kysela) [1112200]
-- [alsa] bits vs bytes bug in snd_card_create() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Apply +5dB output amp on ASUS Zenbook UX31A (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for some Dell machines (Jaroslav Kysela) [1112200]
-- [alsa] Add helper function for intersecting two rate masks (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix endless vmaster hook call in thinkpad_helper.c (Jaroslav Kysela) [1112200]
-- [alsa] snd-usb: re-order some quirk entries (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Fix Creative VF0420 rate (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Add support for Focusrite Saffire 6 USB (Jaroslav Kysela) [1112200]
-- [alsa] hda: automute via amp instead of pinctl on some AIO models (Jaroslav Kysela) [1112200]
-- [alsa] hda: Apply codec power_filter to FG nodes (Jaroslav Kysela) [1112200]
-- [alsa] hda: Don't set indep_hp flag for old AD codecs (Jaroslav Kysela) [1112200]
-- [alsa] Enable CONFIG_ZONE_DMA for smaller PCI DMA masks (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Warn when buffer preallocation fails (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: Work around emu20k1 glitch to prevent buffered sound data loss (Jaroslav Kysela) [1112200]
-- [alsa] Merge memalloc code into snd-pcm module (Jaroslav Kysela) [1112200]
-- [alsa] Remove superfluous header inclusions in memalloc.c (Jaroslav Kysela) [1112200]
-- [alsa] Remove memory reservation code from memalloc helper (Jaroslav Kysela) [1112200]
-- [alsa] Remove memory accounting in memalloc helper (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: apply all Haswell fix-ups to Broadwell display codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: add codec ID for Broadwell display audio codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: add device ID for Broadwell display audio controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Split Thinkpad ACPI-related code (Jaroslav Kysela) [1112200]
-- [alsa] hda: Don't create duplicated ctls for loopback paths (Jaroslav Kysela) [1112200]
-- [alsa] hda: Correct AD1986A 3stack pin configs (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add consistent tag names for firmware patch (Jaroslav Kysela) [1112200]
-- [alsa] hda: firmware patch code cleanup (Jaroslav Kysela) [1112200]
-- [alsa] hda: Increment default stream numbers for AMD HDMI controllers (Jaroslav Kysela) [1112200]
-- [alsa] hda: Minor code optimization for patch_realtek.c (Jaroslav Kysela) [1112200]
-- [alsa] compress: remove the sample rate check (Jaroslav Kysela) [1112200]
-- [alsa] rme9652: fix a missing comma in channel_map_9636_ds (Jaroslav Kysela) [1112200]
-- [alsa] cs5535audio: use named constants for pci_power_t values (Jaroslav Kysela) [1112200]
-- [alsa] hda: Disable Front HP jack detection on Gigabyte Z87X-UD3H (Jaroslav Kysela) [1112200]
-- [alsa] hiface: Fix typo in 352800 rate definition (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Add a quirk for Plantronics Gamecom 780 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Enable subwoofer on Dell Vostro 5460/5470 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix wrong <acpi/acpi.h> inclusion in Thinkpad ACPI users (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add warning texts when codec driver Kconfig doesn't match (Jaroslav Kysela) [1112200]
-- [alsa] hda: Kill EXPORT_SYMBOL_HDA() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make CONFIG_SND_HDA_CODEC_* tristate (Jaroslav Kysela) [1112200]
-- [alsa] hda: Explicitly keep codec powered up in hdmi_present_sense (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add Dell headset detection quirk for one more laptop model (Jaroslav Kysela) [1112200]
-- [alsa] Add SNDRV_PCM_STATE_PAUSED case in wait_for_avail function (Jaroslav Kysela) [1112200]
-
-* Tue Sep 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-175.el7]
-- [misc] mei: ignore client writing state during cb completion (Prarit Bhargava) [1088953]
-- [misc] mei: don't use deprecated DEFINE_PCI_DEVICE_TABLE macro (Prarit Bhargava) [1088953]
-- [misc] mei: amthif: fix checkpatch error (Prarit Bhargava) [1088953]
-- [misc] mei: fix Unnecessary space after function pointer name (Prarit Bhargava) [1088953]
-- [misc] mei: use cl_dbg where appropriate (Prarit Bhargava) [1088953]
-- [misc] mei: client.h fix checkpatch errors (Prarit Bhargava) [1088953]
-- [misc] mei: report consistently copy_from/to_user failures (Prarit Bhargava) [1088953]
-- [misc] mei: drop pr_fmt macros (Prarit Bhargava) [1088953]
-- [misc] mei: make me hw headers private to me hw (Prarit Bhargava) [1088953]
-- [misc] mei: fix memory leak of pending write cb objects (Prarit Bhargava) [1088953]
-- [misc] mei: me: do not reset when less than expected data is received (Prarit Bhargava) [1088953]
-- [misc] mei: fix regressions caused by removing ext_msg (Prarit Bhargava) [1088953]
-- [misc] mei: wd: fix stop completion failure (Prarit Bhargava) [1088953]
-- [misc] mei: wd: simplify wd_send command (Prarit Bhargava) [1088953]
-- [misc] mei: make return values consistent across the driver (Prarit Bhargava) [1088953]
-- [misc] mei: revamp writing slot counting (Prarit Bhargava) [1088953]
-- [misc] mei: add mei_hbuf_acquire wrapper (Prarit Bhargava) [1088953]
-- [misc] mei: txe: include irqreturn.h for irqreturn_t etc (Prarit Bhargava) [1088953]
-- [misc] mei: set client's read_cb to NULL when flow control fails (Prarit Bhargava) [1088953]
-- [misc] mei: txe: put pm callbacks under PM_SLEEP ifdef (Prarit Bhargava) [1088953]
-- [misc] mei: me: put pm callbacks under PM_SLEEP ifdef (Prarit Bhargava) [1088953]
-- [misc] mei: don't of list_for_each_entry_safe when not deleting (Prarit Bhargava) [1088953]
-- [misc] mei: use helper function to find me client by id (Prarit Bhargava) [1088953]
-- [misc] mei: fix potential read outside of array bounds (Prarit Bhargava) [1088953]
-- [misc] mei: wd and amthif use mei_cl_ api for dis/connection (Prarit Bhargava) [1088953]
-- [misc] mei: hbm: revamp client connect and disconnection status (Prarit Bhargava) [1088953]
-- [misc] mei: Remove all bus devices from the mei_dev list when stopping the MEI (Prarit Bhargava) [1088953]
-- [misc] mei: get rid of ext_msg (Prarit Bhargava) [1088953]
-- [misc] mei: rename MEI_FOP_IOCTL to MEI_FOP_CONNECT (Prarit Bhargava) [1088953]
-- [misc] mei: fix compilation error with missing WATCHDOG_CORE (Prarit Bhargava) [1088953]
-- [misc] mei: allow multiple retries if the hw reset has failed (Prarit Bhargava) [1088953]
-- [misc] mei: export active connections to debugfs (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add Kbuild for TXE device (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add pci-txe.c (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add hw-txe-regs.h header file (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add hw-txe.c (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add hw-txe.h header file (Prarit Bhargava) [1088953]
-- [misc] mei: don't unset read cb ptr on reset (Prarit Bhargava) [1088953]
-- [misc] mei: clear write cb from waiting list on reset (Prarit Bhargava) [1088953]
-- [misc] mei: limit the number of consecutive resets (Prarit Bhargava) [1088953]
-- [misc] mei: revamp mei reset state machine (Prarit Bhargava) [1088953]
-- [misc] mei: fix syntax in comments and debug output (Prarit Bhargava) [1088953]
-- [misc] mei: nfc: mei_nfc_free has to be called under lock (Prarit Bhargava) [1088953]
-- [misc] mei: use hbm idle state to prevent spurious resets (Prarit Bhargava) [1088953]
-- [misc] mei: do not run reset flow from the interrupt thread (Prarit Bhargava) [1088953]
-- [misc] mei: enable marking internal commands (Prarit Bhargava) [1088953]
-- [misc] mei: me: set dma mask using DMA mapping API (Prarit Bhargava) [1088953]
-- [misc] mei: cleanup mei_irq_read_handler (Prarit Bhargava) [1088953]
-- [misc] mei: remove flash_work_queue (Prarit Bhargava) [1088953]
-- [misc] mei: drop redundant list_del_init (Prarit Bhargava) [1088953]
-- [misc] mei: bus: propagate error code returned by mei_me_cl_by_id (Prarit Bhargava) [1088953]
-- [misc] mei: mei_cl_link remove duplicated check for open_handle_count (Prarit Bhargava) [1088953]
-- [misc] mei: replace stray pr_debug with dev_dbg (Prarit Bhargava) [1088953]
-- [misc] mei: wd: host_init propagate error codes from called functions (Prarit Bhargava) [1088953]
-- [misc] mei: print correct device state during unexpected reset (Prarit Bhargava) [1088953]
-- [misc] mei: nfc: fix memory leak in error path (Prarit Bhargava) [1088953]
-- [misc] mei: move host_clients_map cleanup to device init (Prarit Bhargava) [1088953]
-- [misc] mei: me: downgrade two errors to debug level (Prarit Bhargava) [1088953]
-- [misc] mei: amthif: mei_amthif_host_init: propagate errors from called functions (Prarit Bhargava) [1088953]
-- [misc] mei: revamp open handler counts (Prarit Bhargava) [1088953]
-- [misc] mei: simplify mei_open error handling (Prarit Bhargava) [1088953]
-- [misc] mei: remove unnecessary pci_set_drvdata() (Prarit Bhargava) [1088953]
-- [misc] mei: mei_cl_unlink: no need to loop over dev list (Prarit Bhargava) [1088953]
-- [misc] mei: push credentials inside the irq write handler (Prarit Bhargava) [1088953]
-- [misc] mei: propagate error from write routines instead of ENODEV (Prarit Bhargava) [1088953]
-- [misc] mei: fix function names in debug prints (Prarit Bhargava) [1088953]
-- [misc] mei: prefix client log messages with client me and host ids (Prarit Bhargava) [1088953]
-- [misc] mei: mei_release: drop redundant check if cb is NULL (Prarit Bhargava) [1088953]
-- [misc] mei: fix format compilation warrning on 32 bit architecture (Prarit Bhargava) [1088953]
-- [misc] mei: revamp read and write length checks (Prarit Bhargava) [1088953]
-- [misc] mei: mei_write correct checks for copy_from_user (Prarit Bhargava) [1088953]
-- [misc] mei: mei_cl_link protect open_handle_count from overflow (Prarit Bhargava) [1088953]
-- [misc] mei: make sure that me_clients_map big enough before copying (Prarit Bhargava) [1088953]
-- [misc] mei: convert bus code to use dev_groups (Prarit Bhargava) [1088953]
-- [misc] mei: client.h cleanup (Prarit Bhargava) [1088953]
-- [ethernet] e1000e: Fix Runtime PM blocks EEE link negotiation in S5 (John Greene) [1091119]
-- [ethernet] e1000e: Fix EEE in S5 w/ Runtime PM enabled (John Greene) [1091119]
-- [ethernet] e1000e: Add support for EEE in Sx states (John Greene) [1091119]
-- [ethernet] e1000e: Add code to check return values on NVM accesses (John Greene) [1091119]
-- [ethernet] e1000e: Fix CRC errors with jumbo traffic (John Greene) [1091119]
-- [ethernet] e1000e: remove unnecessary break after return (John Greene) [1091119]
-- [ethernet] e1000e: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (John Greene) [1091119]
-- [ethernet] e1000e: Out of line __ew32_prepare/__ew32 (John Greene) [1091119]
-- [ethernet] e1000e: Fix expand setting EEE link info to all affected parts (John Greene) [1091119]
-- [ethernet] e1000e: Failure to write SHRA turns on PROMISC mode (John Greene) [1091119]
-- [ethernet] e1000e: Restrict MDIO Slow Mode workaround to relevant parts (John Greene) [1091119]
-- [ethernet] e1000e: Fix issue with link flap on 82579 (John Greene) [1091119]
-- [ethernet] e1000e: Expand workaround for 10Mb HD throughput bug (John Greene) [1091119]
-- [ethernet] e1000e: Workaround for dropped packets in Gig/100 speeds on 82579 (John Greene) [1091119]
-- [ethernet] e1000e: fix message terminations (John Greene) [1091119]
-- [ethernet] e1000e: Enclose e1000e_pm_thaw() with CONFIG_PM_SLEEP (John Greene) [1091119]
-- [ethernet] e1000e: Correctly include VLAN_HLEN when changing interface MTU (John Greene) [1091119]
-- [ethernet] e1000e: Fix no connectivity when driver loaded with cable out (John Greene) [1091119]
-- [ethernet] e1000e: add timeout for TX HW time stamping work (John Greene) [1091119]
-- [ethernet] e1000e: Fix Explicitly set Transmit Control Register (John Greene) [1091119]
-- [ethernet] e1000e: Fix Hardware Unit Hang (John Greene) [1091119]
-- [ethernet] e1000e: fix the build error when PM is disabled (John Greene) [1091119]
-- [ethernet] e1000e: Fix ethtool offline tests for 82579 parts (John Greene) [1091119]
-- [ethernet] e1000e: Fix not generating an error on invalid load parameter (John Greene) [1091119]
-- [ethernet] e1000e: Feature Enable PHY Ultra Low Power Mode (ULP) (John Greene) [1091119]
-- [ethernet] e1000e: Refactor of Runtime Power Management (John Greene) [1091119]
-- [ethernet] e1000e: calls skb_set_hash (John Greene) [1091119]
-- [ethernet] e1000e: Refactor PM flows (John Greene) [1091119]
-- [ethernet] e1000e: Fix compilation warning when !CONFIG_PM_SLEEP (John Greene) [1091119]
-- [ethernet] e1000e: Fix a compile flag mis-match for suspend/resume (John Greene) [1091119]
-- [ethernet] e1000e: Remove extern from function prototypes (John Greene) [1091119]
-- [ethernet] e1000e: Cleanup - Update GPL header and Copyright (John Greene) [1091119]
-- [ethernet] e1000e: Fix 82579 sets LPI too early (John Greene) [1091119]
-- [ethernet] e1000e: 82574/82583 TimeSync errata for SYSTIM read (John Greene) [1091119]
-- [kernel] sched/fair: Stop searching for tasks in idle_balance if there are runnable tasks (Larry Woodman) [1103828]
-- [kernel] sched/numa: Initialize new idle_balance stats in sd_numa_init() (Larry Woodman) [1103828]
-
-* Mon Sep 29 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-174.el7]
-- [kernel] tty: Add C_CMSPAR(tty) (Don Zickus) [1110939]
-- [usb] pl2303: fixed handling of CS5 setting (Don Zickus) [1110939]
-- [usb] pl2303: switch to generic TIOCMIWAIT implementation (Don Zickus) [1110939]
-- [usb] pl2303: only wake up MSR queue on changes (Don Zickus) [1110939]
-- [usb] pl2303: clean up line-status handling (Don Zickus) [1110939]
-- [usb] pl2303: make type data const (Don Zickus) [1110939]
-- [usb] pl2303: use C_CMSPAR macro (Don Zickus) [1110939]
-- [usb] pl2303: use direct baud-rate encoding when possible (Don Zickus) [1110939]
-- [usb] pl2303: add helper function for direct baud-rate encoding (Don Zickus) [1110939]
-- [usb] pl2303: refactor baud-rate divisor handling (Don Zickus) [1110939]
-- [usb] pl2303: enforce baud-rate limits before lookup (Don Zickus) [1110939]
-- [usb] pl2303: refactor baud-rate table lookup (Don Zickus) [1110939]
-- [usb] pl2303: rename pl2303_encode_baud_rate (Don Zickus) [1110939]
-- [usb] pl2303: add device-type abstraction (Don Zickus) [1110939]
-- [usb] pl2303: add quirk for legacy devices (Don Zickus) [1110939]
-- [usb] pl2303: clean up type handling (Don Zickus) [1110939]
-- [usb] pl2303: use speed_t for baud rates (Don Zickus) [1110939]
-- [usb] pl2303: add line-status quirk for Siemens phones (Don Zickus) [1110939]
-- [usb] pl2303: remove redundant line-request call (Don Zickus) [1110939]
-- [usb] pl2303: add error handling to line requests (Don Zickus) [1110939]
-- [usb] pl2303: fix data corruption on termios updates (Don Zickus) [1110939]
-- [usb] pl2303: add error handling to set_control_lines (Don Zickus) [1110939]
-- [usb] pl2303: add error handling to vendor read and write functions (Don Zickus) [1110939]
-- [usb] Revert: pl2303: restrict the divisor based baud rate encoding method to the "HX" chip type (Don Zickus) [1110939]
-- [usb] Revert: pl2303: fix+improve the divsor based baud rate encoding method (Don Zickus) [1110939]
-- [usb] Revert: pl2303: do not round to the next nearest standard baud rate for the divisor based baud rate encoding method (Don Zickus) [1110939]
-- [usb] Revert: pl2303: remove 500000 baud from the list of standard baud rates (Don Zickus) [1110939]
-- [usb] Revert: pl2303: move the two baud rate encoding methods to separate functions (Don Zickus) [1110939]
-- [usb] Revert: pl2303: increase the allowed baud rate range for the divisor based encoding method (Don Zickus) [1110939]
-- [usb] Revert: pl2303: also use the divisor based baud rate encoding method for baud rates < 115200 with HX chips (Don Zickus) [1110939]
-- [usb] Revert: pl2303: add two comments concerning the supported baud rates with HX chips (Don Zickus) [1110939]
-- [usb] Revert: pl2303: simplify the else-if contruct for type_1 chips in pl2303_startup() (Don Zickus) [1110939]
-- [usb] Revert: pl2303: improve the chip type information output on startup
-- [usb] Revert: pl2303: improve the chip type detection/distinction
-- [usb] Revert: pl2303: distinguish between original and cloned HX chips
-- [usb] pl2303: clean up driver somewhat (Don Zickus) [1110939]
-- [usb] pl2303: remove bogus delta_msr_wait wake up (Don Zickus) [1110939]
-- [usb] core: let dynamic ids override static ids (Don Zickus) [1110939]
-- [usb] core: Fix potential memory leak adding dyn USBdevice IDs (Don Zickus) [1110939]
-- [usb] core: add sanity checks when using bInterfaceClass with new_id (Don Zickus) [1110939]
-- [usb] core: check for valid id_table when using the RefId feature (Don Zickus) [1110939]
-- [usb] core: bail out if user gives an unknown RefId when using new_id (Don Zickus) [1110939]
-- [usb] core: allow a reference device for new_id (Don Zickus) [1110939]
-- [lib] radix-tree: make radix_tree_node_alloc() work correctly within interrupt (Don Zickus) [1110939]
-- [usb] Check if port status is equal to RxDetect (Don Zickus) [1110939]
-- [usb] serial/ftdi_sio: Add Infineon Triboard (Don Zickus) [1110939]
-- [usb] ftdi_sio: Add extra PID (Don Zickus) [1110939]
-- [usb] option: Add ID for Telewell TW-LTE 4G v2 (Don Zickus) [1110939]
-- [usb] cp210x: add support for Corsair usb dongle (Don Zickus) [1110939]
-- [usb] storage/scsi: Add broken_fua blacklist flag (Don Zickus) [1110939]
-- [usb] xhci: Fix runtime suspended xhci from blocking system suspend (Don Zickus) [1110939]
-- [usb] xhci: clear root port wake on bits if controller isn't wake-up capable (Don Zickus) [1110939]
-- [usb] xhci: correct burst count field for isoc transfers on 1.0 xhci hosts (Don Zickus) [1110939]
-- [usb] xhci: Use correct SLOT ID when handling a reset device command (Don Zickus) [1110939]
-- [usb] option: add/modify Olivetti Olicard modems (Don Zickus) [1110939]
-- [usb] ftdi_sio: fix null deref at port probe (Don Zickus) [1110939]
-- [usb] option: add device ID for SpeedUp SU9800 usb 3g modem (Don Zickus) [1110939]
-- [usb] usbtest: add a timeout for scatter-gather tests (Don Zickus) [1110939]
-- [usb] ehci: avoid BIOS handover on the HASEE E200 (Don Zickus) [1110939]
-- [usb] fix hub-port pm_runtime_enable() vs runtime pm transitions (Don Zickus) [1110939]
-- [usb] quiet peer failure warning, disable poweroff (Don Zickus) [1110939]
-- [usb] improve "not suspended yet" message in hub_suspend() (Don Zickus) [1110939]
-- [usb] xhci: Fix sleeping with IRQs disabled in xhci_stop_device() (Don Zickus) [1110939]
-- [usb] fix ->update_hub_device() vs hdev->maxchild (Don Zickus) [1110939]
-- [usb] hub_handle_remote_wakeup() only exists for CONFIG_PM=y (Don Zickus) [821903]
-- [usb] qcserial: add additional Sierra Wireless QMI devices (Don Zickus) [1110939]
-- [usb] qcserial: add Netgear AirCard 341U (Don Zickus) [1110939]
-- [usb] xhci: delete endpoints from bandwidth list before freeing whole device (Don Zickus) [1110939]
-- [usb] host/xhci-plat: add xhci_plat_start() (Don Zickus) [1110939]
-- [usb] pci-quirks: Prevent Sony VAIO t-series from switching usb ports (Don Zickus) [1110939]
-- [usb] resume child device when port is powered on (Don Zickus) [1110939]
-- [usb] hub_handle_remote_wakeup() depends on CONFIG_PM_RUNTIME=y (Don Zickus) [1110939]
-- [usb] introduce port status lock (Don Zickus) [1110939]
-- [usb] synchronize port poweroff and khubd (Don Zickus) [1110939]
-- [usb] refactor port handling in hub_events() (Don Zickus) [1110939]
-- [usb] usb3 ports do not support FEAT_C_ENABLE (Don Zickus) [1110939]
-- [usb] don't clear FEAT_C_ENABLE on usb_port_runtime_resume failure (Don Zickus) [1110939]
-- [usb] block suspension of superspeed port while hispeed peer is active (Don Zickus) [1110939]
-- [usb] make usb_port flags atomic, rename did_runtime_put to child_usage (Don Zickus) [1110939]
-- [usb] sysfs link peer ports (Don Zickus) [1110939]
-- [usb] find internal hub tier mismatch via acpi (Don Zickus) [1110939]
-- [usb] assign usb3 external hub port peers (Don Zickus) [1110939]
-- [usb] assign default peer ports for root hubs (Don Zickus) [1110939]
-- [usb] cleanup setting udev->removable from port_dev->connect_type (Don Zickus) [1110939]
-- [usb] rename usb_port device objects (Don Zickus) [1110939]
-- [usb] disable port power control if not supported in wHubCharacteristics (Don Zickus) [1110939]
-- [usb] mutual exclusion for resetting a hub and power-managing a port (Don Zickus) [1110939]
-- [usb] pci_quirks: fix sparse 'symbol not declared' warning (Don Zickus) [1110939]
-- [usb] storage/ene_ub6250: Use kmemdup instead of kmalloc + memcpy (Don Zickus) [1110939]
-- [usb] usbtest: add pattern check on pipe in phase of unlink read (Don Zickus) [1110939]
-- [usb] usbtest: fix unlink write error with pattern 1 (Don Zickus) [1110939]
-- [usb] usb5303: add support for reference clock specified in device tree (Don Zickus) [1110939]
-- [usb] separate usb_address0 mutexes for each bus (Don Zickus) [1110939]
-- [usb] xhci: Switch only Intel Lynx Point-LP ports to EHCI on shutdown (Don Zickus) [1110939]
-- [usb] yurex: fix race between probe() and read() (Don Zickus) [1110939]
-- [usb] appledisplay: fix race between reading and writing from the device (Don Zickus) [1110939]
-- [usb] usbtmc: fix DMA on stack (Don Zickus) [1110939]
-- [usb] cdc-acm: use BIT macro (Don Zickus) [1110939]
-- [usb] xhci: unified loggig of RESET_ON_RESUME (Don Zickus) [1110939]
-- [usb] xhci: avoid warning for !PM_SLEEP (Don Zickus) [1110939]
-- [usb] host/xhci-plat: add clock support (Don Zickus) [1110939]
-- [usb] host/xhci-plat: sort the headers in alphabetic order (Don Zickus) [1110939]
-- [usb] move usb/usb-common.c to usb/common/usb-common.c (Don Zickus) [1110939]
-- [usb] core: remove the Kconfig entry for USB_DEBUG (Don Zickus) [1110939]
-- [usb] remove redundant D0 power state set (Don Zickus) [1110939]
-- [usb] keyspan: fix potential null pointer dereference (Don Zickus) [1110939]
-- [usb] serial/option: add support for Novatel E371 PCIe card (Don Zickus) [1110939]
-- [usb] ftdi_sio: add NovaTech OrionLXm product ID (Don Zickus) [1110939]
-- [usb] io_ti: fix firmware download on big-endian machines (part 2) (Don Zickus) [1110939]
-- [usb] cdc-acm: use tty-port dtr_rts (Don Zickus) [1110939]
-- [usb] cdc-acm: remove redundant usb_mark_last_busy (Don Zickus) [1110939]
-- [usb] cdc-acm: do not update PM busy on read errors (Don Zickus) [1110939]
-- [usb] cdc-acm: minimise no-suspend window during shutdown (Don Zickus) [1110939]
-- [usb] cdc-acm: remove redundant disconnected test from shutdown (Don Zickus) [1110939]
-- [usb] cdc-acm: simplify runtime PM locking (Don Zickus) [1110939]
-- [usb] cdc-acm: fix runtime PM imbalance at shutdown (Don Zickus) [1110939]
-- [usb] cdc-acm: fix I/O after failed open (Don Zickus) [1110939]
-- [usb] cdc-acm: fix failed open not being detected (Don Zickus) [1110939]
-- [usb] cdc-acm: fix open and suspend race (Don Zickus) [1110939]
-- [usb] cdc-acm: fix potential urb leak and PM imbalance in write (Don Zickus) [1110939]
-- [usb] cdc-acm: fix shutdown and suspend race (Don Zickus) [1110939]
-- [usb] cdc-acm: fix runtime PM for control messages (Don Zickus) [1110939]
-- [usb] cdc-acm: fix broken runtime suspend (Don Zickus) [1110939]
-- [usb] cdc-acm: fix write and resume race (Don Zickus) [1110939]
-- [usb] cdc-acm: fix write and suspend race (Don Zickus) [1110939]
-- [usb] kobil_sct: fix control requests without data stage (Don Zickus) [1110939]
-- [usb] serial: remove overly defensive port tests (Don Zickus) [1110939]
-- [usb] serial: fix potential runtime pm imbalance at device remove (Don Zickus) [1110939]
-- [usb] usb_wwan: do not resume I/O on closing ports (Don Zickus) [1110939]
-- [usb] usb_wwan: report failed submissions as errors (Don Zickus) [1110939]
-- [usb] usb_wwan: remove bogus function prototype (Don Zickus) [1110939]
-- [usb] usb_wwan: remove some superfluous comments (Don Zickus) [1110939]
-- [usb] usb_wwan: remove comment from close (Don Zickus) [1110939]
-- [usb] usb_wwan: clean up delayed-urb submission (Don Zickus) [1110939]
-- [usb] usb_wwan: use interface-data accessors (Don Zickus) [1110939]
-- [usb] usb_wwan: make resume error messages uniform (Don Zickus) [1110939]
-- [usb] usb_wwan: kill interrupt urb explicitly at suspend (Don Zickus) [1110939]
-- [usb] usb_wwan: remove redundant urb kill from port remove (Don Zickus) [1110939]
-- [usb] usb_wwan: remove unimplemented set_termios (Don Zickus) [1110939]
-- [usb] usb_wwan: remove redundant modem-control request (Don Zickus) [1110939]
-- [usb] usb_wwan: fix remote wakeup (Don Zickus) [1110939]
-- [usb] usb_wwan: fix discarded writes on resume errors (Don Zickus) [1110939]
-- [usb] usb_wwan: fix potential blocked I/O after resume (Don Zickus) [1110939]
-- [usb] usb_wwan: fix potential NULL-deref at resume (Don Zickus) [1110939]
-- [usb] usb_wwan: fix urb leak at shutdown (Don Zickus) [1110939]
-- [usb] usb_wwan: fix write and suspend race (Don Zickus) [1110939]
-- [usb] usb_wwan: fix race between write and resume (Don Zickus) [1110939]
-- [usb] usb_wwan: fix urb leak in write error path (Don Zickus) [1110939]
-- [usb] option: add missing usb_mark_last_busy (Don Zickus) [1110939]
-- [usb] option: fix line-control pipe direction (Don Zickus) [1110939]
-- [usb] option: fix runtime PM handling (Don Zickus) [1110939]
-- [usb] sierra: do not resume I/O on closing ports (Don Zickus) [1110939]
-- [usb] sierra: minimise no-suspend window during close (Don Zickus) [1110939]
-- [usb] sierra: refactor delayed-urb submission (Don Zickus) [1110939]
-- [usb] sierra: clean up suspend (Don Zickus) [1110939]
-- [usb] sierra: use interface-data accessors (Don Zickus) [1110939]
-- [usb] sierra: remove redundant modem-control requests (Don Zickus) [1110939]
-- [usb] sierra: do not resume I/O on closed ports (Don Zickus) [1110939]
-- [usb] sierra: remove disconnected test from close (Don Zickus) [1110939]
-- [usb] sierra: remove unimplemented set_termios (Don Zickus) [1110939]
-- [usb] sierra: remove unused variable (Don Zickus) [1110939]
-- [usb] sierra: remove bogus endpoint test (Don Zickus) [1110939]
-- [usb] sierra: fix line-control pipe direction (Don Zickus) [1110939]
-- [usb] sierra: fix resume error reporting (Don Zickus) [1110939]
-- [usb] sierra: fix urbs not being killed on shutdown (Don Zickus) [1110939]
-- [usb] sierra: fix characters being dropped at close (Don Zickus) [1110939]
-- [usb] sierra: fix remote wakeup (Don Zickus) [1110939]
-- [usb] sierra: fix urb and memory leak on disconnect (Don Zickus) [1110939]
-- [usb] sierra: fix urb and memory leak in resume error path (Don Zickus) [1110939]
-- [usb] sierra: fix use after free at suspend/resume (Don Zickus) [1110939]
-- [usb] sierra: fix AA deadlock in open error path (Don Zickus) [1110939]
-- [usb] iowarrior: Convert local dbg macro to dev_dbg (Don Zickus) [1110939]
-- [usb] appledisplay: Convert /n to n (Don Zickus) [1110939]
-- [usb] qcserial: remove interface number matching (Don Zickus) [1110939]
-- [usb] qcserial: define and use Sierra Wireless layout (Don Zickus) [1110939]
-- [usb] qcserial: refactor device layout selection (Don Zickus) [1110939]
-- [usb] qcserial: fix multiline comment coding style (Don Zickus) [1110939]
-- [usb] Avoid runtime suspend loops for HCDs that can't handle suspend/resume (Don Zickus) [1110939]
-- [usb] xhci: rework command timeout and cancellation, (Don Zickus) [1110939]
-- [usb] Revert: xhci: replace xhci_read_64() with readq() (Don Zickus) [1110939]
-- [usb] Revert: xhci: replace xhci_write_64() with writeq() (Don Zickus) [1110939]
-- [usb] Revert: core: set lpm_capable field for LPM capable root hubs (Don Zickus) [1110939]
-- [usb] xhci: Use completion and status in global command queue (Don Zickus) [1110939]
-- [usb] xhci: Add a global command queue (Don Zickus) [1110939]
-- [usb] xhci: Use command structures when queuing commands on the command ring (Don Zickus) [1110939]
-- [usb] xhci: Report max device limit when Enable Slot command fails (Don Zickus) [1110939]
-- [usb] xhci: Use pci_enable_msix_exact() instead of pci_enable_msix() (Don Zickus) [1110939]
-- [usb] xhci: Use IS_ENABLED() macro (Don Zickus) [1110939]
-- [usb] catch attempts to submit urbs with a vmalloc'd transfer buffer (Don Zickus) [1110939]
-- [usb] xhci: fix wrong port number reported when setting USB2.0 hardware LPM (Don Zickus) [1110939]
-- [usb] Nokia 5300 should be treated as unusual dev (Don Zickus) [1110939]
-- [usb] Nokia 305 should be treated as unusual dev (Don Zickus) [1110939]
-- [usb] fsl: do not test for PHY_CLK_VALID bit on controller version 1.6 (Don Zickus) [1110939]
-- [usb] storage/shuttle_usbat: fix discs being detected twice (Don Zickus) [1110939]
-- [usb] qcserial: add a number of Dell devices (Don Zickus) [1110939]
-- [usb] ohci: fix problem with global suspend on ATI controllers (Don Zickus) [1110939]
-- [usb] option: add and update a number of CMOTech devices (Don Zickus) [1110939]
-- [usb] option: add Alcatel L800MA (Don Zickus) [1110939]
-- [usb] option: add Olivetti Olicard 500 (Don Zickus) [1110939]
-- [usb] qcserial: add Sierra Wireless MC7305/MC7355 (Don Zickus) [1110939]
-- [usb] qcserial: add Sierra Wireless MC73xx (Don Zickus) [1110939]
-- [usb] qcserial: add Sierra Wireless EM7355 (Don Zickus) [1110939]
-- [usb] io_ti: fix firmware download on big-endian machines (Don Zickus) [1110939]
-- [usb] xhci: fix compilation warning when !CONFIG_PCI && !CONFIG_PM (Don Zickus) [1110939]
-- [usb] xhci: extend quirk for Renesas cards (Don Zickus) [1110939]
-- [usb] xhci: Switch Intel Lynx Point ports to EHCI on shutdown (Don Zickus) [1110939]
-- [usb] xhci: Prefer endpoint context dequeue pointer over stopped_trb (Don Zickus) [1110939]
-- [usb] ftdi-elan: Use pr_<level> (Don Zickus) [1110939]
-- [usb] ftdi-elan: Coalesce string fragment (Don Zickus) [1110939]
-- [usb] ftdi-elan: Coalesce formats (Don Zickus) [1110939]
-- [usb] ftdi-elan: Convert leading spaces to tabs (Don Zickus) [1110939]
-- [usb] ftdi-elan: Fix format fragments (Don Zickus) [1110939]
-- [usb] serial: fix sysfs-attribute removal deadlock (Don Zickus) [1110939]
-- [usb] uas: fix deadlocky memory allocations (Don Zickus) [1110939]
-- [usb] uas: fix error handling during scsi_scan() (Don Zickus) [1110939]
-- [usb] uas: fix GFP_NOIO under spinlock (Don Zickus) [1110939]
-- [usb] cdc-acm: Remove Motorola/Telit H24 serial interfaces from ACM driver (Don Zickus) [1110939]
-- [usb] ehci-platform: Return immediately from suspend if ehci_suspend fails (Don Zickus) [1110939]
-- [usb] ehci-exynos: Return immediately from suspend if ehci_suspend fails (Don Zickus) [1110939]
-- [usb] fix crash during hotplug of PCI USB controller card (Don Zickus) [1110939]
-- [usb] cdc-acm: fix double usb_autopm_put_interface() in acm_port_activate() (Don Zickus) [1110939]
-- [usb] usb_wwan: fix handling of missing bulk endpoints (Don Zickus) [1110939]
-- [usb] pl2303: add ids for Hewlett-Packard HP POS pole displays (Don Zickus) [1110939]
-- [usb] cp210x: Add 8281 (Nanotec Plug & Drive) (Don Zickus) [1110939]
-- [usb] option driver, add support for Telit UE910v2 (Don Zickus) [1110939]
-- [usb] Revert: serial: add usbid for dell wwan card to sierra.c (Don Zickus) [1110939]
-- [usb] serial/ftdi_sio: add id for Brainboxes serial cards (Don Zickus) [1110939]
-- [net] usb: include wait queue head in device structure (Don Zickus) [1110939]
-- [usb] disable reset-resume when USB_QUIRK_RESET is set (Don Zickus) [1110939]
-- [usb] unbind all interfaces before rebinding any (Don Zickus) [1110939]
-- [usb] keyspan: remove dead debugging code (Don Zickus) [1110939]
-- [usb] serial: add missing newlines to dev_<level> messages (Don Zickus) [1110939]
-- [usb] serial: add missing braces (Don Zickus) [1110939]
-- [usb] serial: continue to write on errors (Don Zickus) [1110939]
-- [usb] serial: continue to read on errors (Don Zickus) [1110939]
-- [usb] serial: make bulk_out_size a lower limit (Don Zickus) [1110939]
-- [usb] cypress_m8: fix potential scheduling while atomic (Don Zickus) [1110939]
-- [usb] Revert: xhci: Limit arbitrarily-aligned scatter gather (Don Zickus) [1110939]
-- [usb] Make DELAY_INIT quirk wait 100ms between Get Configuration requests (Don Zickus) [1110939]
-- [usb] Add device quirk for Logitech HD Pro Webcams C920 and C930e (Don Zickus) [1110939]
-- [usb] xhci: add the meaningful IRQ description if it is empty (Don Zickus) [1110939]
-- [usb] xhci: Prevent runtime pm from autosuspending during initialization (Don Zickus) [1110939]
-- [usb] storage: accept some UAS devices if streams are unavailable (Don Zickus) [1110939]
-- [usb] xhci: Kill streams URBs when the host dies (Don Zickus) [1110939]
-- [usb] xhci: Refactor command watchdog and fix split string (Don Zickus) [1110939]
-- [usb] uas: Remove comment about registering a uas scsi controller for each usb bus (Don Zickus) [1110939]
-- [usb] uas: Add Hans de Goede as uas maintainer (Don Zickus) [1110939]
-- [usb] uas: remove BROKEN (Don Zickus) [1110939]
-- [usb] uas: Make sure sg elements are properly aligned (Don Zickus) [1110939]
-- [usb] uas: Add some data in/out ready iu sanity checks (Don Zickus) [1110939]
-- [usb] uas: Improve error reporting (Don Zickus) [1110939]
-- [usb] uas: Use the right error codes for different kinds of errors (Don Zickus) [1110939]
-- [usb] uas: Clear cmdinfo on command queue-ing (Don Zickus) [1110939]
-- [usb] uas: Fix memory management (Don Zickus) [1110939]
-- [usb] uas: Fix command / task mgmt submission racing with disconnect (Don Zickus) [1110939]
-- [usb] uas: cmdinfo - use only one list head (Don Zickus) [1110939]
-- [usb] uas: add uas_mark_cmd_dead helper function (Don Zickus) [1110939]
-- [usb] uas: Properly complete inflight commands on bus-reset or disconnect (Don Zickus) [1110939]
-- [usb] uas: uas_alloc_data_urb - Remove unnecessary use_streams check (Don Zickus) [1110939]
-- [usb] uas: Fix task-management not working when connected over USB-2 (Don Zickus) [1110939]
-- [usb] uas: Reset device on reboot (Don Zickus) [1110939]
-- [usb] uas: Add suspend/resume support (Don Zickus) [1110939]
-- [usb] uas: Use GFP_NOIO rather then GFP_ATOMIC where possible (Don Zickus) [1110939]
-- [usb] uas: Don't allow more then one task to run at the same time (Don Zickus) [1110939]
-- [usb] uas: task_mgmt - Kill the sense-urb if we fail to submit the cmd urb (Don Zickus) [1110939]
-- [usb] uas: Not being able to alloc streams when connected through usb-3 is an error (Don Zickus) [1110939]
-- [usb] uas: Verify endpoint descriptors from uas_use_uas_driver() (Don Zickus) [1110939]
-- [usb] uas: Drop fixed endpoint config handling (Don Zickus) [1110939]
-- [usb] uas: Move uas_find_endpoints to uas-detect.h (Don Zickus) [1110939]
-- [usb] uas: Fix bounds check in uas_find_endpoints (Don Zickus) [1110939]
-- [usb] uas: Add uas_find_endpoints() helper function (Don Zickus) [1110939]
-- [usb] uas: Honor no-uas quirk set in usb-storage's quirks module parameter (Don Zickus) [1110939]
-- [usb] storage: Modify and export adjust_quirks so that it can be used by uas (Don Zickus) [1110939]
-- [usb] storage: Don't bind to uas devices if the uas driver is enabled (Don Zickus) [1110939]
-- [usb] uas: Add the posibilty to blacklist uas devices from using the uas driver (Don Zickus) [1110939]
-- [usb] Reset USB-3 devices on USB-3 link bounce (Don Zickus) [1110939]
-- [usb] Clear host_endpoint->streams when implicitly freeing streams (Don Zickus) [1110939]
-- [usb] xhci: Handle MaxPSASize == 0 (Don Zickus) [1110939]
-- [usb] xhci: The trb_address_map radix tree expects 1KB segment memory aligment (Don Zickus) [1110939]
-- [usb] xhci: xhci_mem_cleanup - make sure cmd_ring_reserved_trbs really is 0 (Don Zickus) [1110939]
-- [usb] uas: Move uas detect code to uas-detect.h (Don Zickus) [1110939]
-- [usb] uas: Add a uas_find_uas_alt_setting helper function (Don Zickus) [1110939]
-- [usb] uas: Use all available stream ids (Don Zickus) [1110939]
-- [usb] uas: Pack iu struct definitions (Don Zickus) [1110939]
-- [usb] uas: Fix response iu struct definition (Don Zickus) [1110939]
-- [usb] uas: s/response_ui/response_iu/ (Don Zickus) [1110939]
-- [usb] uas: Fix reset handling for externally triggered reset (Don Zickus) [1110939]
-- [usb] uas: Fix reset locking (Don Zickus) [1110939]
-- [usb] uas: Fix uas not working when plugged into an ehci port (Don Zickus) [1110939]
-- [usb] uas: uas_alloc_cmd_urb - drop unused stream_id parameter (Don Zickus) [1110939]
-- [usb] uas: Avoid unnecessary unlock / lock calls around unlink_data_urbs (Don Zickus) [1110939]
-- [usb] uas: Properly set interface to altsetting 0 on probe failure (Don Zickus) [1110939]
-- [usb] uas: Urbs must be anchored before submitting them (Don Zickus) [1110939]
-- [usb] uas: replace BUG_ON() + WARN_ON() with WARN_ON_ONCE() (Don Zickus) [1110939]
-- [usb] uas: add dead request list (Don Zickus) [1110939]
-- [usb] uas: make work list per-device (Don Zickus) [1110939]
-- [usb] uas: properly reinitialize in uas_eh_bus_reset_handler (Don Zickus) [1110939]
-- [usb] fs: Add support for allocating / freeing streams (Don Zickus) [1110939]
-- [usb] fs: Add ep_to_host_endpoint helper function (Don Zickus) [1110939]
-- [usb] fs: Add support for bulk stream ids (Don Zickus) [1110939]
-- [usb] fs: proc_do_submiturb use a local variable for number_of_packets (Don Zickus) [1110939]
-- [usb] usbfs: Kill urbs on interface before doing a set_interface (Don Zickus) [1110939]
-- [usb] core: Free bulk streams on interface release (Don Zickus) [1110939]
-- [usb] core: Track if an endpoint has streams (Don Zickus) [1110939]
-- [usb] core: Move USB_MAXENDPOINTS definitions to usb.h (Don Zickus) [1110939]
-- [usb] core: Fix usb_free_streams return value documentation (Don Zickus) [1110939]
-- [usb] xhci: Remove segments from radix tree on failed insert (Don Zickus) [1110939]
-- [usb] xhci: use usb_ss_max_streams in xhci_check_streams_endpoint (Don Zickus) [1110939]
-- [usb] xhci: For streams the dequeue ptr must be read from the stream ctx (Don Zickus) [1110939]
-- [usb] xhci: Set SCT field for Set TR dequeue on streams (Don Zickus) [1110939]
-- [usb] xhci: For streams the css flag most be read from the stream-ctx on ep stop (Don Zickus) [1110939]
-- [usb] xhci: Check size rather then number of streams when allocating stream ctxs (Don Zickus) [1110939]
-- [usb] xhci: Free streams when they are still allocated on a set_interface call (Don Zickus) [1110939]
-- [usb] xhci: fix usb3 streams (Don Zickus) [1110939]
-- [usb] xhci: make warnings greppable (Don Zickus) [1110939]
-- [usb] xhci: Change how we indicate a host supports Link PM (Don Zickus) [1110939]
-- [usb] sisusb: Use static const, fix typo (Don Zickus) [1110939]
-- [usb] hub: usb_ext_cap_descriptor.bmAttributes is le32 (Don Zickus) [1110939]
-- [usb] hub: debug message for failing to enable device (Don Zickus) [1110939]
-- [usb] ehci: fix deadlock when threadirqs option is used (Don Zickus) [1110939]
-- [usb] ftdi_sio: add Cressi Leonardo PID (Don Zickus) [1110939]
-- [usb] complain if userspace resets an active endpoint (Don Zickus) [1110939]
-- [usb] serial/option: blacklist interface 4 for Cinterion PHS8 and PXS8 (Don Zickus) [1110939]
-- [usb] ehci: add delay during suspend to prevent erroneous wakeups (Don Zickus) [1110939]
-- [usb] xhci: Change compatible string from xhci-platform to generic-xhci (Don Zickus) [1110939]
-- [usb] uhci-platform: Change compatible string from platform-uhci to generic-uhci (Don Zickus) [1110939]
-- [usb] option: blacklist ZTE MF667 net interface (Don Zickus) [1110939]
-- [usb] misc/usbled: Add Riso Kagaku Webmail Notifier (Don Zickus) [1110939]
-- [usb] elan: Remove useless "default M" lines (Don Zickus) [1110939]
-- [usb] Revert: xhci: Link TRB must not occur within a USB payload burst (Don Zickus) [1110939]
-- [usb] Revert: xhci: Avoid infinite loop when sg urb requires too many trbs (Don Zickus) [1110939]
-- [usb] Revert: xhci: Set scatter-gather limit to avoid failed block writes (Don Zickus) [1110939]
-- [usb] xhci: Limit arbitrarily-aligned scatter gather (Don Zickus) [1110939]
-- [usb] delete non-required instances of include <linux/init.h> (Don Zickus) [1110939]
-- [usb] hub set hub->change_bits when over-current happens (Don Zickus) [1110939]
-- [usb] xhci: Set scatter-gather limit to avoid failed block writes (Don Zickus) [1110939]
-- [usb] xhci: Avoid infinite loop when sg urb requires too many trbs (Don Zickus) [1110939]
-- [usb] ftdi_sio: added CS5 quirk for broken smartcard readers (Don Zickus) [1110939]
-- [usb] core: correct spelling mistakes in comments and warning (Don Zickus) [1110939]
-- [usb] fix race between hub_disconnect and recursively_mark_NOTATTACHED (Don Zickus) [1110939]
-- [usb] oti6858: switch to generic TIOCMIWAIT implementation (Don Zickus) [1110939]
-- [usb] oti6858: only wake up MSR queue on changes (Don Zickus) [1110939]
-- [usb] ch341: clean up interrupt handler (Don Zickus) [1110939]
-- [usb] ch341: switch to generic TIOCMIWAIT implementation (Don Zickus) [1110939]
-- [usb] ch341: only wake up MSR queue on changes (Don Zickus) [1110939]
-- [usb] ch341: fix ignored TIOCMIWAIT mask (Don Zickus) [1110939]
-- [usb] ch341: clean up line-status handling (Don Zickus) [1110939]
-- [usb] ch341: refactor line-status handling (Don Zickus) [1110939]
-- [usb] cypress_m8: switch to generic TIOCMIWAIT implementation (Don Zickus) [1110939]
-- [usb] cypress_m8: only wake up MSR queue on changes (Don Zickus) [1110939]
-- [usb] cypress_m8: clean up protocol definitions (Don Zickus) [1110939]
-- [usb] cypress_m8: fix ring-indicator detection and reporting (Don Zickus) [1110939]
-- [usb] Nokia 502 is an unusual device (Don Zickus) [1110939]
-- [usb] serial: add support for iBall 3.5G connect usb modem (Don Zickus) [1110939]
-- [usb] serial: correct spelling mistakes in comments (Don Zickus) [1110939]
-- [usb] misc/idmouse: correct spelling mistake in error string (Don Zickus) [1110939]
-- [usb] yurex: fix spelling mistake in comment (Don Zickus) [1110939]
-- [usb] iowarrior: fix spelling mistake in comment (Don Zickus) [1110939]
-- [usb] serial: remove redundant OOM messages (Don Zickus) [1110939]
-- [usb] serial: clean up ioctl debugging (Don Zickus) [1110939]
-- [usb] serial: constify device-id tables (Don Zickus) [1110939]
-- [usb] core: remove CONFIG_USB_DEBUG usage (Don Zickus) [1110939]
-- [usb] cdc-wdm: avoid hanging on zero length reads (Don Zickus) [1110939]
-- [usb] xhci: Check for XHCI_PLAT in xhci_cleanup_msix() (Don Zickus) [1110939]
-- [usb] Mark function as static in metro-usb.c (Don Zickus) [1110939]
-- [usb] Mark function as static in usbsevseg.c (Don Zickus) [1110939]
-- [usb] option: add new zte 3g modem pids to option driver (Don Zickus) [1110939]
-- [usb] usbtest: Always clear halt else further tests will fail (Don Zickus) [1110939]
-- [usb] usbtest: Add timetout to simple_io() (Don Zickus) [1110939]
-- [usb] xhci: Remove unused variable 'addr' in inc_deq() and inc_enq() (Don Zickus) [1110939]
-- [usb] usbtest: Fix BOS control test for USB 2.01 devices (Don Zickus) [1110939]
-- [usb] xhci: Add quirks module option (Don Zickus) [1069460]
-- [usb] xhci: clarify logging in xhci_setup_device (Don Zickus) [1110939]
-- [usb] xhci: change enumeration scheme to 'new scheme' by default (Don Zickus) [1069460]
-- [usb] xhci: Limit the spurious wakeup fix only to HP machines (Don Zickus) [1069461]
-- [usb] core: get config and string descriptors for unauthorized devices (Don Zickus) [1110939]
-- [usb] core: allow isoc URBs for wireless devices with an interval < 6 (Don Zickus) [1110939]
-- [usb] serial/zte_ev: move support for ZTE AC2726 from zte_ev back to option (Don Zickus) [1110939]
-- [usb] cdc-wdm: manage_power should always set needs_remote_wakeup (Don Zickus) [1110939]
-- [usb] Revert: quirks: add touchscreen that is dazzeled by remote wakeup (Don Zickus) [1110939]
-- [usb] Use dev_is_pci() to check whether it is pci device (Don Zickus) [1110939]
-- [usb] usbtest: update bos test coverage to usb 2.1 device (Don Zickus) [1110939]
-- [usb] usbtest: fix the bit mask of usb 2.0 extension descriptor (Don Zickus) [1110939]
-- [usb] usbtest: add a test case to support bos for queue control (Don Zickus) [1110939]
-- [usb] fix coccinelle warnings (Don Zickus) [1110939]
-- [usb] hub: Use correct reset for wedged USB3 devices that are NOTATTACHED (Don Zickus) [1110939]
-- [usb] remove DEFINE_PCI_DEVICE_TABLE macro (Don Zickus) [1110939]
-- [usb] host: Remove superfluous name casts (Don Zickus) [1110939]
-- [usb] core: Remove superfluous name casts (Don Zickus) [1110939]
-- [usb] kill #undef VERBOSE_DEBUG (Don Zickus) [1110939]
-- [usb] kill DEBUG compile option (Don Zickus) [1110939]
-- [usb] uhci: compile debugfs conditional on CONFIG_DYNAMIC_DEBUG (Don Zickus) [1110939]
-- [usb] uhci: change dependency for debug parameter (Don Zickus) [1110939]
-- [usb] ehci: Remove debugging at every interrupt (Don Zickus) [1110939]
-- [usb] ehci: no conditional compilation for interestingness (Don Zickus) [1110939]
-- [usb] ohci: no conditional debugging in root hub hadling (Don Zickus) [1110939]
-- [usb] ohci: always register debug files (Don Zickus) [1110939]
-- [usb] ohci: kill ohci_vdbg (Don Zickus) [1110939]
-- [usb] ohci: remove conditional compilation (Don Zickus) [1110939]
-- [usb] net/cdc-acm: fix power management in ioctl (Don Zickus) [1110939]
-- [net] usb/cdc-acm: add TIOCGICOUNT (Don Zickus) [1110939]
-- [usb] net/cdc-acm: add TIOCMIWAIT (Don Zickus) [1110939]
-- [usb] option: support new huawei devices (Don Zickus) [1110939]
-- [usb] serial/option: blacklist interface 1 for Huawei E173s-6 (Don Zickus) [1110939]
-- [usb] xhci: replace xhci_write_64() with writeq() (Don Zickus) [1110939]
-- [usb] xhci: replace xhci_read_64() with readq() (Don Zickus) [1110939]
-- [usb] xhci: replace xhci_writel() with writel() (Don Zickus) [1110939]
-- [usb] xhci: replace xhci_readl() with readl() (Don Zickus) [1110939]
-- [usb] xhci: remove conversion from generic to pci device in xhci_mem.c (Don Zickus) [1110939]
-- [usb] xhci: fix incorrect type in assignment in xhci_count_num_dropped_endpoints() (Don Zickus) [1110939]
-- [usb] xhci: fix incorrect type in assignment in xhci_count_num_new_endpoints() (Don Zickus) [1110939]
-- [usb] xhci: remove unnecessary check in xhci_free_stream_info() (Don Zickus) [1110939]
-- [usb] xhci: fix SCT_FOR_CTX(p) macro (Don Zickus) [1110939]
-- [usb] xhci: replace USB_MAXINTERFACES with config->desc.bNumInterface (Don Zickus) [1110939]
-- [usb] xhci: fix incorrect type in assignment in xhci_address_device() (Don Zickus) [1110939]
-- [usb] xhci: fix sparse warning in xhci-trace.h (Don Zickus) [1110939]
-- [usb] xhci: fix derivation of TRB's DMA address in xhci_log_event Trace Event Class (Don Zickus) [1110939]
-- [usb] r8a66597-hcd: Convert to clk_prepare/unprepare (Don Zickus) [1110939]
-- [usb] serial: fix write memory-allocation flag (Don Zickus) [1110939]
-- [usb] serial: fix race in generic write (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: Export cdc_ncm_{tx, rx}_fixup functions for re-use (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: drop "extern" from header declarations (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove descriptor pointers (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove ncm_parm field (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove tx_speed and rx_speed fields (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove unused udev field (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove redundant netdev field (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: simplify and optimize frame padding (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove redundant endpoint pointers (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove redundant "intf" field (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: add include protection to cdc_ncm.h (Don Zickus) [1110939]
-- [usb] ssb-hcd: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Don Zickus) [1110939]
-- [usb] bcma: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Don Zickus) [1110939]
-- [usb] usbtest: support container id descriptor test (Don Zickus) [1110939]
-- [usb] usbtest: support superspeed device capbility descriptor test (Don Zickus) [1110939]
-- [usb] usbtest: support usb2 extension descriptor test (Don Zickus) [1110939]
-- [usb] ehci-atmel: add usb_clk for transition to CCF (Don Zickus) [1110939]
-- [usb] cdc-wdm: ignore speed change notifications (Don Zickus) [1110939]
-- [usb] cdc-wdm: support back-to-back USB_CDC_NOTIFY_RESPONSE_AVAILABLE notifications (Don Zickus) [1110939]
-- [usb] usbtest: support bos descriptor test for usb 3.0 (Don Zickus) [1110939]
-- [usb] wusbcore: fix control-pipe directions (Don Zickus) [1110939]
-- [usb] wusbcore: fix panic in wusbhc_chid_set (Don Zickus) [1110939]
-- [usb] wusbcore: convert nested lock to use spin_lock instead of spin_lock_irq (Don Zickus) [1110939]
-- [usb] wusbcore: use multiple urbs for HWA iso transfer result frame reads (Don Zickus) [1110939]
-- [usb] wusbcore: combine iso transfer result frame reads when possible (Don Zickus) [1110939]
-- [usb] wusbcore: disable transfer notifications for Alereon HWAs (Don Zickus) [1110939]
-- [usb] wusbcore: don't mark WA_SEG_DTI_PENDING segs as done in urb_dequeue (Don Zickus) [1110939]
-- [usb] wusbcore: fix potential double list_del on urb dequeue (Don Zickus) [1110939]
-- [usb] wusbcore: fix compile warnings (Don Zickus) [1110939]
-- [usb] wusbcore: add info to HWA debug prints (Don Zickus) [1110939]
-- [usb] wusbcore: read actual_length bytes isoc in segments (Don Zickus) [1110939]
-- [usb] wusbcore: adjust iterator correctly when searching for ep comp descriptor (Don Zickus) [1110939]
-- [usb] wusbcore: add a convenience function for completing a transfer segment (Don Zickus) [1110939]
-- [usb] wusbcore: prevent urb dequeue and giveback race (Don Zickus) [1110939]
-- [usb] wusbcore: fix stranded URB after HWA unplug (Don Zickus) [1110939]
-- [usb] wusbcore: fix kernel panic on HWA unplug (Don Zickus) [1110939]
-- [usb] wusbcore: fix up coding style issues in wa-nep.c (Don Zickus) [1110939]
-- [usb] wusbcore: fix up coding style issues in wa-rpipe.c (Don Zickus) [1110939]
-- [usb] wusbcore: fix up coding style issues in wusbhc.c and wusbhc.h (Don Zickus) [1110939]
-- [usb] wusbcore: fix up line break coding style issues in mmc.c (Don Zickus) [1110939]
-- [usb] wusbcore: fix up line break coding style issues in security.c (Don Zickus) [1110939]
-- [usb] wusbcore: fix up line break coding style issues in wa-hc.h (Don Zickus) [1110939]
-- [usb] wusbcore: fix up minor coding style issues in cbaf.c (Don Zickus) [1110939]
-- [usb] wusbcore: correct spelling mistakes in comments and error string (Don Zickus) [1110939]
-- [usb] wusbcore: add debug prints to reservation and channel change (Don Zickus) [1110939]
-- [usb] wusbcore: add isochronous IN support to HWA (Don Zickus) [1110939]
-- [usb] wusbcore: set packet count correctly on isoc transfers (Don Zickus) [1110939]
-- [usb] wusbcore: move isoc_frame_index from wa_xfer to wa_seg (Don Zickus) [1110939]
-- [usb] wusbcore: use USB_CTRL_SET_TIMEOUT and USB_CTRL_GET_TIMEOUT (Don Zickus) [1110939]
-- [usb] wusbcore: fix short transfers (Don Zickus) [1110939]
-- [usb] wusbcore: return -ENOENT for unlinked URBs (Don Zickus) [1110939]
-- [usb] wusbcore: add more info to debug prints in urb_unlink path (Don Zickus) [1110939]
-- [usb] wusbcore: add calls to usb_hcd_link_urb_to_ep, usb_hcd_unlink_urb_from_ep, and (Don Zickus) [1110939]
-- [usb] wusbcore: fix deadlock in wusbhc_gtk_rekey (Don Zickus) [1110939]
-- [usb] wusbcore: do device lookup while holding the hc mutex (Don Zickus) [1110939]
-- [usb] wusbcore: send keepalives to unauthenticated devices (Don Zickus) [1110939]
-- [usb] wusbcore: change WA_SEGS_MAX to a legal value (Don Zickus) [1110939]
-- [usb] wusbcore: add a quirk for Alereon HWA device isoc behavior (Don Zickus) [1110939]
-- [usb] wusbcore: combine multiple isoc frames in a single transfer request (Don Zickus) [1110939]
-- [usb] wusbcore: set the RPIPE wMaxPacketSize value correctly (Don Zickus) [1110939]
-- [usb] wusbcore: fix usb_dev leaks (Don Zickus) [1110939]
-- [usb] wusbcore: serialize access to the HWA data out endpoint (Don Zickus) [1110939]
-- [usb] wusbcore: fix string formatting warnings on 64-bit builds (Don Zickus) [1110939]
-- [usb] wusbcore: add support for isoc out transfers (Don Zickus) [1110939]
-- [usb] wusbcore: set the RPIPE bOverTheAirInterval for isoc endpoints (Don Zickus) [1110939]
-- [usb] wusbcore: avoid stack overflow in URB enqueue error path (Don Zickus) [1110939]
-- [usb] wusbcore: fix build warning on 64-bit builds (Don Zickus) [1110939]
-- [usb] wusbcore: clean up urb dequeue process (Don Zickus) [1110939]
-- [usb] wusbcore: include the xfer_id in debug prints (Don Zickus) [1110939]
-- [usb] wusbcore: fix endianess issues when using dwTransferID (Don Zickus) [1110939]
-- [usb] wusbcore: set pointers to NULL after freeing in error cases (Don Zickus) [1110939]
-- [usb] wusbcore: clean up the sg list that was created for out transfers (Don Zickus) [1110939]
-- [usb] wusbcore: resource cleanup fix in __wa_xfer_setup_segs (Don Zickus) [1110939]
-- [usb] wusbcore: allow wa_xfer_destroy to clean up partially constructed xfers (Don Zickus) [1110939]
-- [usb] wusbcore: rename fields in struct wahc (Don Zickus) [1110939]
-- [usb] wusbcore: rename urb to tr_urb in struct wa_seg (Don Zickus) [1110939]
-- [usb] wusbcore: use list_move_tail instead of list_del/list_add_tail (Don Zickus) [1110939]
-- [usb] usbtest: fix checkpatch warning as sizeof code style (Don Zickus) [1110939]
-- [usb] uhci: check for wakeup/suspend race (Don Zickus) [1110939]
-- [usb] ehci: add check for wakeup/suspend race (Don Zickus) [1110939]
-- [usb] change dev_warn about missing reset-resume to dev_dbg (Don Zickus) [1110939]
-- [usb] ohci: fix and explain sparse errors (Don Zickus) [1110939]
-- [usb] ehci: fix sparse errors (Don Zickus) [1110939]
-- [usb] ehci: fix type mismatch in check_intr_schedule (Don Zickus) [1110939]
-- [usb] wusbcore: preserve endianness of cached descriptors (Don Zickus) [1110939]
-- [usb] xhci: remove the unused ->address field (Don Zickus) [1032371]
-- [usb] xhci: kill a conditional when toggling cycle (Don Zickus) [1032371]
-- [usb] hub_activate kill an 'else' (Don Zickus) [1032371]
-- [usb] hub: Clear Port Reset Change during init/resume (Don Zickus) [1110939]
-- [usb] core/devio: Spaces to tabs for proc_control_compat() (Don Zickus) [1110939]
-- [usb] core/devio: Spaces to tabs for proc_reapurbnonblock() (Don Zickus) [1110939]
-- [usb] xhci: replace 'event' with 'cmd_comp_code' in set_deq and reset_ep handlers (Don Zickus) [1032371]
-- [usb] xhci: add argument 'slot_id' in stop_ep, set_deq and reset_ep cmd handlers (Don Zickus) [1032371]
-- [usb] xhci: replace 'xhci->cmd_ring->dequeue' with 'trb' in stop_ep cmd handler (Don Zickus) [1032371]
-- [usb] xhci: add variable 'cmd_type' in handle_cmd_completion() (Don Zickus) [1032371]
-- [usb] xhci: add variable 'cmd_trb' in handle_cmd_completion() (Don Zickus) [1032371]
-- [usb] xhci: add variable 'cmd_comp_code' in handle_cmd_completion() (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_CONFIG_EP case into function (Don Zickus) [1032371]
-- [usb] xhci: remove unused 'ep_ring' variable in handle_cmd_completion() (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_EVAL_CONTEXT case into function (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_NEC_GET_FW case into function (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_RESET_DEV case into function (Don Zickus) [1032371]
-- [usb] xhci: use completion event's slot id rather than dig it out of command (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_ADDR_DEV case into function (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_DISABLE_SLOT case into function (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_ENABLE_SLOT case into function (Don Zickus) [1032371]
-- [usb] xhci: rename existing Command Completion Event handlers (Don Zickus) [1032371]
-- [usb] xhci: remove unused argument from xhci_giveback_urb_in_irq() (Don Zickus) [1032371]
-- [usb] xhci: correct the usage of USB_CTRL_SET_TIMEOUT (Don Zickus) [1032371]
-- [usb] xhci: Staticize xhci_del_comp_mod_timer (Don Zickus) [1032371]
-- [usb] Push USB2 LPM disable on disconnect into USB core (Don Zickus) [1032371]
-- [usb] xhci: Enable LPM support only for hardwired or BESL devices (Don Zickus) [1032371]
-- [usb] Don't enable USB 2.0 Link PM by default (Don Zickus) [1032371]
-- [usb] xhci: Set L1 device slot on USB2 LPM enable/disable (Don Zickus) [1032371]
-- [usb] Disable USB 2.0 Link PM before device reset (Don Zickus) [1110939]
-- [usb] hcd: remove unnecessary local_irq_save (Don Zickus) [1110939]
-- [usb] ehci: start new isochronous streams ASAP (Don Zickus) [1110939]
-- [usb] ehci: create per-TT bandwidth tables (Don Zickus) [1110939]
-- [usb] core/hub: Comments shouldnt be C99 // comment style (Don Zickus) [1110939]
-- [usb] core/file: moved asterisk to variable name (Don Zickus) [1110939]
-- [usb] core: {file, hub, sysfs, usb}.c - Whitespace fixes (Don Zickus) [1110939]
-- [usb] mos7840: fix tiocmget error handling (Don Zickus) [1110939]
-- [usb] serial: export usb_serial_generic_write_start (Don Zickus) [1110939]
-- [usb] serial: add memory flags to usb_serial_generic_write_start (Don Zickus) [1110939]
-- [usb] serial: clean up comments in generic driver (Don Zickus) [1110939]
-- [usb] core/hcd: converted busmap from struct to bitmap (Don Zickus) [1110939]
-- [usb] add a private-data pointer to struct usb_tt (Don Zickus) [1110939]
-- [usb] ehci: use a bandwidth-allocation table (Don Zickus) [1110939]
-- [usb] ehci: create a "periodic schedule info" struct (Don Zickus) [1110939]
-- [usb] ehci: use consistent NO_FRAME value (Don Zickus) [1110939]
-- [usb] ehci: change toggle only upon successful reset (Don Zickus) [1110939]
-- [usb] ehci: No SSPLIT allowed in uframe 7 (Don Zickus) [1110939]
-- [usb] ehci: compute full-speed bandwidth usage correctly (Don Zickus) [1110939]
-- [usb] ehci: check the right uframes for CSPLIT (Don Zickus) [1110939]
-- [usb] NS_TO_US should round up (Don Zickus) [1110939]
-- [usb] anchor: Delay usb_wait_anchor_empty_timeout wake up till completion is done (Don Zickus) [1110939]
-- [usb] anchor: Ensure poisened gets initialized to 0 (Don Zickus) [1110939]
-- [usb] cyberjack: fix buggy integer overflow test (Don Zickus) [1110939]
-- [usb] host: bugfix - Return length of copied buffer in uhci_hub_control() (Don Zickus) [1110939]
-- [usb] host: uhci-platform - remove deprecated IRQF_DISABLED (Don Zickus) [1110939]
-- [usb] core/hcd: if-else-braces fixed (Don Zickus) [1110939]
-- [usb] core/hcd: removed braces for return statements (Don Zickus) [1110939]
-- [usb] core/hcd: replaced C99 // comments (Don Zickus) [1110939]
-- [usb] core/hcd: Whitespace fixes (Don Zickus) [1110939]
-- [usb] core/hcd: moved asterix to variable (Don Zickus) [1110939]
-- [usb] host: Use existing macros instead of hard-coded values in uhci-debug.c (Don Zickus) [1110939]
-- [usb] remove intel_mid_otg.h (Don Zickus) [1110939]
-- [usb] wusbcore: Add isoc transfer type enum and packet definitions (Don Zickus) [1110939]
-- [usb] wusbcore: implement hwahc_op_get_frame_number (Don Zickus) [1110939]
-- [usb] ohci: use amd_chipset_type to filter for SB800 prefetch (Don Zickus) [1110939]
-- [usb] ehci: use amd_chipset_type to filter for usb subsystem hang bug (Don Zickus) [1110939]
-- [usb] ohci: ohci_init_driver() - sanity check overrides (Don Zickus) [1110939]
-- [usb] core: usb_amd_resume_quirk() can be static (Don Zickus) [1110939]
-- [usb] pci-quirks: amd_chipset_sb_type_init() can be static (Don Zickus) [1110939]
-- [usb] serial: invoke dcd_change ldisc's handler (Don Zickus) [1110939]
-- [usb] serial: call handle_dcd_change in ftdi driver (Don Zickus) [1110939]
-- [usb] correct the usb_disconnect() comment about usb_bus_list_lock (Don Zickus) [1110939]
-- [usb] fix substandard locking for the sysfs files (Don Zickus) [1110939]
-- [usb] usbtest: bmAttributes would better be masked (Don Zickus) [1110939]
-- [usb] core: implement AMD remote wakeup quirk (Don Zickus) [1110939]
-- [usb] pci-quirks: refactor AMD quirk to abstract AMD chipset types (Don Zickus) [1110939]
-- [usb] host: delete chipidea dependency (Don Zickus) [1110939]
-- [usb] ohci/uhci: add soft dependencies on ehci_pci (Don Zickus) [1110939]
-- [usb] ehci: support running URB giveback in tasklet context"" (Don Zickus) [1110939]
-- [usb] core: fix read of usbdevfs_ctrltransfer fields in proc_control() (Don Zickus) [1110939]
-- [usb] core: fix incorrect type in assignment in usb_set_lpm_parameters() (Don Zickus) [1110939]
-- [usb] core: Make usb_free_streams return an error (Don Zickus) [1110939]
-- [usb] ehci: handle isochronous underruns with tasklets (Don Zickus) [1110939]
-- [usb] ehci: code rearrangement in iso_stream_schedule() (Don Zickus) [1110939]
-- [usb] see if URB comes from a completion handler (Don Zickus) [1110939]
-
-* Mon Sep 29 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-173.el7]
-- [crypto] pefile: Relax the check on the length of the PKCS#7 cert (Vivek Goyal) [852066]
-- [kernel] kexec, purgatory: add clean-up for purgatory directory (Vivek Goyal) [852066]
-- [x86] purgatory: use approprate -m64/-32 build flag for arch/x86/purgatory (Vivek Goyal) [852066]
-- [kernel] kexec: remove CONFIG_KEXEC dependency on crypto (Vivek Goyal) [852066]
-- [kernel] kexec: create a new config option CONFIG_KEXEC_FILE for new syscall (Vivek Goyal) [852066]
-- [kernel] resource: fix the case of null pointer access (Vivek Goyal) [852066]
-- [kernel] kexec: verify the signature of signed PE bzImage (Vivek Goyal) [852066]
-- [kernel] kexec: support kexec/kdump on EFI systems (Vivek Goyal) [852066]
-- [kernel] kexec: support for kexec on panic using new system call (Vivek Goyal) [852066]
-- [x86] kexec-bzimage64: support for loading bzImage using 64bit entry (Vivek Goyal) [852066]
-- [kernel] kexec: load and relocate purgatory at kernel load time (Vivek Goyal) [852066]
-- [x86] purgatory: core purgatory functionality (Vivek Goyal) [852066]
-- [x86] purgatory/sha256: provide implementation of sha256 in purgaotory context (Vivek Goyal) [852066]
-- [kernel] kexec: implementation of new syscall kexec_file_load (Vivek Goyal) [852066]
-- [kernel] kexec: new syscall kexec_file_load() declaration (Vivek Goyal) [852066]
-- [kernel] kexec: make kexec_segment user buffer pointer a union (Vivek Goyal) [852066]
-- [kernel] resource: provide new functions to walk through resources (Vivek Goyal) [852066]
-- [kernel] kexec: use common function for kimage_normal_alloc() and kimage_crash_alloc() (Vivek Goyal) [852066]
-- [kernel] kexec: move segment verification code in a separate function (Vivek Goyal) [852066]
-- [kernel] kexec: rename unusebale_pages to unusable_pages (Vivek Goyal) [852066]
-- [scripts] build bin2c based on config option CONFIG_BUILD_BIN2C (Vivek Goyal) [852066]
-- [scripts] bin2c: move bin2c in scripts/basic (Vivek Goyal) [852066]
-- [kernel] kexec: convert printk to pr_foo() (Vivek Goyal) [852066]
-- [kernel] kexec/compat: convert to COMPAT_SYSCALL_DEFINE with changing parameter types (Vivek Goyal) [852066]
-- [kernel] kexec: use vscnprintf() instead of vsnprintf() in vmcoreinfo_append_str() (Vivek Goyal) [852066]
-- [kernel] kexec: add sysctl to disable kexec_load (Vivek Goyal) [852066]
-- [kernel] kexec: Typo s/the/then/ (Vivek Goyal) [852066]
-- [kernel] kexec: remove unnecessary return (Vivek Goyal) [852066]
-- [asm] crash: Remove the original asm/crash.h files (Vivek Goyal) [852066]
-- [asm] crash: Rename crash.h to crash-driver.h (Vivek Goyal) [852066]
-- [x86] boot: Remove misc.h inclusion from compressed/string.c (Vivek Goyal) [852066]
-- [x86] boot: Do not include boot.h in string.c (Vivek Goyal) [852066]
-- [x86] boot: Move memset() definition in compressed/string.c (Vivek Goyal) [852066]
-- [x86] boot: Move memcmp() into string.h and string.c (Vivek Goyal) [852066]
-- [x86] boot: Move optimized memcpy() 32/64 bit versions to compressed/string.c (Vivek Goyal) [852066]
-- [x86] boot: Create a separate string.h file to provide standard string functions (Vivek Goyal) [852066]
-- [x86] boot: Undef memcmp before providing a new definition (Vivek Goyal) [852066]
-
-* Mon Sep 29 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-172.el7]
-- [fs] nfsd4: fix rd_dircount enforcement ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add some comments to the nfsd4 object definitions ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove the client_mutex and the nfs4_lock/unlock_state wrappers ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove nfs4_lock_state: nfs4_state_shutdown_net ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove nfs4_lock_state: nfs4_laundromat ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): reclaim_complete() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): setclientid, setclientid_confirm, renew ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): exchange_id, create/destroy_session() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_open and nfsd4_open_confirm ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_delegreturn() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_open_downgrade + nfsd4_close ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_lock/locku/lockt() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_release_lockowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_test_stateid/nfsd4_free_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfs4_preprocess_stateid_op() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove old fault injection infrastructure ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add more granular locking to *_delegations fault injectors ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add more granular locking to forget_openowners fault injector ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add more granular locking to forget_locks fault injector ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a list_head arg to nfsd_foreach_client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add nfsd_inject_forget_clients ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a forget_client set_clnt routine ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a forget_clients "get" routine with proper locking ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: abstract out the get and set routines into the fault injection ops ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: protect clid and verifier generation with client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: don't destroy clients that are busy ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Put the reference of nfs4_file when freeing stid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: don't destroy client if mark_client_expired_locked fails ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: move unhash_client_locked call into mark_client_expired_locked ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: protect the close_lru list and oo_last_closed_stid with client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add lockdep assertions to document the nfs4_client/session locking ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure lookup_clientid() takes client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect nfsd4_destroy_clientid using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect session creation and client confirm using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect unconfirmed client creation using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Move create_client() call outside the lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Don't require client_lock in free_client ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure that the laundromat unhashes the client before releasing locks ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure struct nfs4_client is unhashed before we try to destroy it ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: fix out of date comment ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Decrease nfsd_users in nfsd_startup_generic fail ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: rename unhash_generic_stateid to unhash_ol_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: don't thrash the cl_lock while freeing an open stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: reduce cl_lock thrashing in release_openowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: close potential race in nfsd4_free_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: optimize destroy_lockowner cl_lock thrashing ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add locking to stateowner release ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up and reorganize release_lockowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Move the open owner hash table into struct nfs4_client ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect adding/removing lock owners using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect adding/removing open state owners using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: don't allow CLOSE to proceed until refcount on stateid drops ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: make openstateids hold references to their openowners ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up refcounting for lockowners ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Make lock stateid take a reference to the lockowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add an operation for unhashing a stateowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up lockowner refcounting when finding them ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add a mutex to protect the NFSv4.0 open owner replay cache ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add reference counting to state owners ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Migrate the stateid reference into nfs4_find_stateid_by_type() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Migrate the stateid reference into nfs4_lookup_stateid() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Migrate the stateid reference into nfs4_preprocess_seqid_op ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add reference counting to nfs4_preprocess_confirmed_seqid_op ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd4_open_confirm() must reference the open stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Prepare nfsd4_close() for open stateid referencing ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd4_process_open2() must reference the open stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd4_process_open2() must reference the delegation stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure that nfs4_open_delegation() references the delegation stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd4_locku() must reference the lock stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add reference counting to lock stateids ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: ensure atomicity in nfsd4_free_stateid and nfsd4_validate_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up races in lock stateid searching and creation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add locking to protect the state owner lists ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: do filp_close in sc_free callback for lock stateids ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: use cl_lock to synchronize all stateid idr calls ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add a struct nfs4_file field to struct nfs4_stid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add reference counting to the lock and open stateids ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: print status when nfsd4_open fails to open file it just created ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] sunrpc: Allow svc_reserve() to notify TCP socket that space has been freed ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] sunrpc: svc_tcp_write_space: don't clear SOCK_NOSPACE prematurely ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] sunrpc: Reduce contention in svc_xprt_enqueue() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove dl_fh field from struct nfs4_delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: give block_delegation and delegation_blocked its own spinlock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up nfs4_set_delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up arguments to nfs4_open_delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: drop unused stp arg to alloc_init_deleg ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Convert delegation counter to an atomic_long_t type ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: ensure that clp->cl_revoked list is protected by clp->cl_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fully unhash delegations when revoking them ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: simplify stateid allocation and file handling ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Do not let nfs4_file pin the struct inode ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfs4_check_fh - make it actually check the filehandle ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Use the filehandle to look up the struct nfs4_file instead of inode ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Store the filehandle with the struct nfs4_file ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: convert comma to semicolon ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] svcrdma: Double the default credit limit ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: ensure that st_access_bmap and st_deny_bmap are initialized to 0 ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: bump dl_time when unhashing delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Move the delegation reference counter into the struct nfs4_stid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fix race that grants unrecallable delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: CREATE_SESSION should update backchannel immediately ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] svcrdma: Select NFSv4.1 backchannel transport based on forward channel ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: zero op arguments beyond the 8th compound op ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: silence sparse warning about accessing credentials ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure stateids remain unique until they are freed ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfs4_alloc_init_lease should take a nfs4_file arg ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Avoid taking state_lock while holding inode lock in nfsd_break_one_deleg ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: eliminate nfsd4_init_callback ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Fix bad checking of space for padding in splice read ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: cleanup and rename nfs4_check_open ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: make deny mode enforcement more efficient and close races in it ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: always hold the fi_lock when bumping fi_access refcounts ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up reset_union_bmap_deny ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: set stateid access and deny bits in nfs4_get_vfs_file ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: shrink st_access_bmap and st_deny_bmap ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove nfs4_file_put_fd ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: refactor nfs4_file_get_access and nfs4_file_put_access ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up helper __release_lock_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add locking to the nfs4_file->fi_fds[] array ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add fine grained protection for the nfs4_file->fi_stateids list ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: reduce some spinlocking in put_client_renew ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: close potential race between delegation break and laundromat ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Fix crash encoding lock reply on 32-bit ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Convert nfs4_check_open_reclaim() to work with lookup_clientid() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Always use lookup_clientid() in nfsd4_process_open1 ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Convert nfsd4_process_open1() to work with lookup_clientid() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Allow struct nfsd4_compound_state to cache the nfs4_client ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a nfserrno mapping for -E2BIG to nfserr_fbig ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: properly convert return from commit_metadata to __be32 ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Cleanup - Let nfsd4_lookup_stateid() take a cstate argument ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Don't get a session reference without a client reference ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up nfsd4_release_lockowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: NFSv4 lock-owners are not associated to a specific file ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Allow lockowners to hold several stateids ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: lock owners are not per open stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up nfsd4_close_open_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: declare v4.1+ openowners confirmed on creation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Cleanup nfs4svc_encode_compoundres ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfs4_preprocess_seqid_op should only set *stpp on success ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a new /proc/fs/nfsd/max_connections file ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure that nfsd_create_setattr commits files to stable storage ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove iattr parameter from nfsd_symlink() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect addition to the file_hashtbl ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fix file access refcount leak when nfsd4_truncate fails ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Avoid warning message when compile at i686 arch ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: replace defer_free by svcxdr_tmpalloc ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: remove nfs4_acl_new ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: define svcxdr_dupstr to share some common code ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: remove unused defer_free argument ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: rename cr_linkname->cr_data ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: let nfsd_symlink assume null-terminated data ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: make NFSv2 null terminate symlink data ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Fix bad reserving space for encoding rdattr_error ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfs: fix nfs4d readlink truncated packet ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fix rare symlink decoding bug ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: properly handle embedded newlines in fault_injection input ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fix return of nfs4_acl_write_who ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add appropriate __force directives to filehandle generation code ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd_splice_read and nfsd_readv should return __be32 ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up sparse endianness warnings in nfscache.c ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add __force to opaque verifier field casts ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Using exp_get for export getting ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Using path_get when assigning path for export ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] sunrpc/nfsd: Change to type of bool for rq_usedeferral and rq_splice_ok ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Using min/max/min_t/max_t for calculate ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsv4: Fix another bug in the close/open_downgrade code (Steve Dickson) [1111708]
-- [fs] nfsv4: nfs4_state_manager() vs. nfs_server_remove_lists() (Steve Dickson) [1111708]
-- [fs] nfs: remove BUG possibility in nfs4_open_and_get_state (Steve Dickson) [1111708]
-- [fs] pnfs: fix filelayout_retry_commit when idx > 0 (Steve Dickson) [1111708]
-- [fs] nfs: revert "nfs4: queue free_lock_state job submission to nfsiod" (Steve Dickson) [1111708]
-- [fs] nfs: fix kernel warning when removing proc entry (Steve Dickson) [1111708]
-- [fs] nfs: Fix /proc/fs/nfsfs/servers and /proc/fs/nfsfs/volumes (Steve Dickson) [1111708]
-- [fs] nfsv3: Fix another acl regression (Steve Dickson) [1111708]
-- [fs] nfsv4: Don't clear the open state when we just did an OPEN_DOWNGRADE (Steve Dickson) [1111708]
-- [fs] nfsv4: Fix problems with close in the presence of a delegation (Steve Dickson) [1111708]
-- [fs] nfs: Don't busy-wait on SIGKILL in __nfs_iocounter_wait (Steve Dickson) [1111708]
-- [fs] nfs: can_coalesce_requests must enforce contiguity (Steve Dickson) [1111708]
-- [fs] nfs: disallow duplicate pages in pgio page vectors (Steve Dickson) [1111708]
-- [fs] nfs: don't sleep with inode lock in lock_and_join_requests (Steve Dickson) [1111708]
-- [fs] nfs: fix error handling in lock_and_join_requests (Steve Dickson) [1111708]
-- [fs] nfs: fix nonblocking calls to nfs_page_group_lock (Steve Dickson) [1111708]
-- [fs] nfs: use blocking page_group_lock in add_request (Steve Dickson) [1111708]
-- [fs] nfs: change nfs_page_group_lock argument (Steve Dickson) [1111708]
-- [fs] nfs: reject changes to resvport and sharecache during remount (Steve Dickson) [1111708]
-- [fs] nfs: Avoid infinite loop when RELEASE_LOCKOWNER getting expired error (Steve Dickson) [1111708]
-- [fs] sunrpc: remove all refcounting of groupinfo from rpcauth_lookupcred (Steve Dickson) [1111708]
-- [fs] nfs: fix two problems in lookup_revalidate in RCU-walk (Steve Dickson) [1111708]
-- [fs] nfs: allow lockless access to access_cache (Steve Dickson) [1111708]
-- [fs] nfs: teach nfs_lookup_verify_inode to handle LOOKUP_RCU (Steve Dickson) [1111708]
-- [fs] nfs: teach nfs_neg_need_reval to understand LOOKUP_RCU (Steve Dickson) [1111708]
-- [fs] nfs: support RCU_WALK in nfs_permission() (Steve Dickson) [1111708]
-- [fs] sunrpc/auth: allow lockless (rcu) lookup of credential cache (Steve Dickson) [1111708]
-- [fs] nfs: prepare for RCU-walk support but pushing tests later in code (Steve Dickson) [1111708]
-- [fs] nfs: nfs4_lookup_revalidate: only evaluate parent if it will be used (Steve Dickson) [1111708]
-- [fs] nfs: add checks for returned value of try_module_get() (Steve Dickson) [1111708]
-- [fs] nfs: clear_request_commit while holding i_lock (Steve Dickson) [1111708]
-- [fs] pnfs: add pnfs_put_lseg_async (Steve Dickson) [1111708]
-- [fs] pnfs: find swapped pages on pnfs commit lists too (Steve Dickson) [1111708]
-- [fs] nfs: fix comment and add warn_on for PG_INODE_REF (Steve Dickson) [1111708]
-- [fs] nfs: mark nfs_page reqs with flag for extra ref (Steve Dickson) [1111708]
-- [fs] nfs: check wait_on_bit_lock err in page_group_lock (Steve Dickson) [1111708]
-- [fs] nfs: handle multiple reqs in nfs_page_async_flush (Steve Dickson) [1111708]
-- [fs] nfs: change find_request to find_head_request (Steve Dickson) [1111708]
-- [fs] sunrpc: remove "ec" argument from encrypt_v2 operation (Steve Dickson) [1111708]
-- [fs] sunrpc: clean up sparse endianness warnings in gss_krb5_wrap.c (Steve Dickson) [1111708]
-- [fs] sunrpc: clean up sparse endianness warnings in gss_krb5_seal.c (Steve Dickson) [1111708]
-- [fs] sunrpc: fix RCU handling of gc_ctx field (Steve Dickson) [1111708]
-- [fs] sunrpc: remove __rcu annotation from struct gss_cl_ctx->gc_gss_ctx (Steve Dickson) [1111708]
-- [fs] nfs: nfs4_do_open should add negative results to the dcache (Steve Dickson) [1111708]
-- [fs] xprtrdma: Handle additional connection events (Steve Dickson) [1111708]
-- [fs] xprtrdma: Remove RPCRDMA_PERSISTENT_REGISTRATION macro (Steve Dickson) [1111708]
-- [fs] xprtrdma: Make rpcrdma_ep_disconnect() return void (Steve Dickson) [1111708]
-- [fs] xprtrdma: Schedule reply tasklet once per upcall (Steve Dickson) [1111708]
-- [fs] xprtrdma: Allocate each struct rpcrdma_mw separately (Steve Dickson) [1111708]
-- [fs] xprtrdma: Rename frmr_wr (Steve Dickson) [1111708]
-- [fs] xprtrdma: Disable completions for LOCAL_INV Work Requests (Steve Dickson) [1111708]
-- [fs] xprtrdma: Disable completions for FAST_REG_MR Work Requests (Steve Dickson) [1111708]
-- [fs] xprtrdma: Don't post a LOCAL_INV in rpcrdma_register_frmr_external() (Steve Dickson) [1111708]
-- [fs] xprtrdma: Reset FRMRs after a flushed LOCAL_INV Work Request (Steve Dickson) [1111708]
-- [fs] xprtrdma: Reset FRMRs when FAST_REG_MR is flushed by a disconnect (Steve Dickson) [1111708]
-- [fs] xprtrdma: Properly handle exhaustion of the rb_mws list (Steve Dickson) [1111708]
-- [fs] xprtrdma: Chain together all MWs in same buffer pool (Steve Dickson) [1111708]
-- [fs] xprtrdma: Back off rkey when FAST_REG_MR fails (Steve Dickson) [1111708]
-- [fs] xprtrdma: Unclutter struct rpcrdma_mr_seg (Steve Dickson) [1111708]
-- [fs] xprtrdma: Don't invalidate FRMRs if registration fails (Steve Dickson) [1111708]
-- [fs] xprtrdma: On disconnect, don't ignore pending CQEs (Steve Dickson) [1111708]
-- [fs] xprtrdma: Update rkeys after transport reconnect (Steve Dickson) [1111708]
-- [fs] xprtrdma: Limit data payload size for ALLPHYSICAL (Steve Dickson) [1111708]
-- [fs] xprtrdma: Protect ia->ri_id when unmapping/invalidating MRs (Steve Dickson) [1111708]
-- [fs] xprtrdma: Fix panic in rpcrdma_register_frmr_external() (Steve Dickson) [1111708]
-- [fs] xprtrdma: Fix DMA-API-DEBUG warning by checking dma_map result (Steve Dickson) [1111708]
-- [fs] replace strict_strto calls (Steve Dickson) [1111708]
-- [fs] nfs: use ARRAY_SIZE instead of sizeof/sizeof[0] (Steve Dickson) [1111708]
-- [fs] nfsv4: Drop cast (Steve Dickson) [1111708]
-- [fs] rpc_pipe: Drop memory allocation cast (Steve Dickson) [1111708]
-- [fs] nfs_common/nfsacl: move EXPORT symbol after functions (Steve Dickson) [1111708]
-- [fs] nfs4: copy acceptor name from context to nfs_client (Steve Dickson) [1111708]
-- [fs] sunrpc: add a new "stringify_acceptor" rpc_credop (Steve Dickson) [1111708]
-- [fs] auth_gss: fetch the acceptor name out of the downcall (Steve Dickson) [1111708]
-- [fs] nfs4: turn free_lock_state into a void return operation (Steve Dickson) [1111708]
-- [fs] nfs4: queue free_lock_state job submission to nfsiod (Steve Dickson) [1111708]
-- [fs] nfs4: treat lock owners as opaque values (Steve Dickson) [1111708]
-- [fs] nfs41: layout return on close in delegation return (Steve Dickson) [1111708]
-- [fs] nfs41: return layout on last close (Steve Dickson) [1111708]
-- [fs] nfs4: add nfs4_check_delegation (Steve Dickson) [1111708]
-- [fs] pnfs/filelayout: retry ds commit if nfs_commitdata_alloc fails (Steve Dickson) [1111708]
-- [fs] pnfs/filelayout: fix race between mark_request_commit and scan_commit_lists (Steve Dickson) [1111708]
-- [fs] nfsv4: Fix OPEN w/create access mode checking (Steve Dickson) [1111708]
-- [fs] nfs: check hostname in nfs_get_client (Steve Dickson) [1111708]
-- [fs] nfsv4: set hostname when creating nfsv4 ds connection (Steve Dickson) [1111708]
-- [fs] sunrpc: Handle EPIPE in xprt_connect_status (Steve Dickson) [1111708]
-- [fs] sunrpc: Ensure that we handle ENOBUFS errors correctly (Steve Dickson) [1111708]
-- [fs] nfs: replace count*size kzalloc by kcalloc (Steve Dickson) [1111708]
-- [fs] nfs: get rid of duplicate dprintk (Steve Dickson) [1111708]
-- [fs] nfs: Fix unused variable error (Steve Dickson) [1111708]
-- [fs] nfs: remove unneeded EXPORTs (Steve Dickson) [1111708]
-- [fs] pnfs: clean up *_resend_to_mds (Steve Dickson) [1111708]
-- [fs] nfs: remove pgio_header refcount, related cleanup (Steve Dickson) [1111708]
-- [fs] nfs: remove unused writeverf code (Steve Dickson) [1111708]
-- [fs] nfs: merge nfs_pgio_data into _header (Steve Dickson) [1111708]
-- [fs] nfs: rename members of nfs_pgio_data (Steve Dickson) [1111708]
-- [fs] nfs: move nfs_pgio_data and remove nfs_rw_header (Steve Dickson) [1111708]
-
-* Fri Sep 26 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-171.el7]
-- [scsi] bnx2fc: Improve stats update mechanism (Neil Horman) [1096023]
-- [security] have cap_dentry_init_security return error (Jeff Layton) [1070910]
-- [mfd] lpc_ich: Change Avoton to iTCO v3 (Prarit Bhargava) [1084134]
-- [watchdog] itco_wdt: Add support for v3 silicon (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Add support for iTCO v3 (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Remove lpc_ich_cfg struct use (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Fix ACPI enable bitmask (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Only configure watchdog or GPIO when present (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Add support for Intel Avoton GPIOs (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Convert ICH GPIOs IDs to enum (Prarit Bhargava) [1084134]
-- [net] ceph: do not hard code max auth ticket len (Ilya Dryomov) [1142285] {CVE-2014-6416}
-- [net] ceph: add process_one_ticket() helper (Ilya Dryomov) [1142285] {CVE-2014-6416}
-- [net] ceph: gracefully handle large reply messages from the mon (Ilya Dryomov) [1142285] {CVE-2014-6416}
-- [powercap] intel_rapl: add new CPU IDs (Steve Best) [1142597]
-- [powercap] intel_rapl: spell out SoC names (Steve Best) [1142597]
-- [powercap] intel_rapl: add support for ValleyView Soc (Steve Best) [1142597]
-- [x86] smpboot: initialize secondary CPU only if master CPU will wait for it (Igor Mammedov) [968147]
-- [x86] smpboot: Log error on secondary CPU wakeup failure at ERR level (Igor Mammedov) [968147]
-- [x86] smpboot: Fix list/memory corruption on CPU hotplug (Igor Mammedov) [968147]
-- [acpi] processor: do not mark present at boot but not onlined CPU as onlined (Igor Mammedov) [968147]
-- [tools] thermal: Introduce tmon, a tool for thermal subsystem (Neil Horman) [1085101]
-- [thermal] intel_powerclamp: add newer cpu ids (Steve Best) [1141895]
-- [mm] swapfile: do not skip lowest_bit in scan_swap_map() scan loop (Seth Jennings) [1128277]
-- [dma] ioatdma: disable RAID on non-Atom platforms and reenable unaligned copies (Prarit Bhargava) [1069441]
-- [security] selinux: make the netif cache namespace aware (Paul Moore) [1112815]
-- [kernel] sched: Fix clock_gettime(CLOCK_[PROCESS/THREAD]_CPUTIME_ID) monotonicity (Seth Jennings) [1113932]
-- [kernel] hashtable: add hash_for_each_possible_rcu_notrace() (Steve Best) [1123126]
-- [media] media-device: fix an information leakage (Jacob Tanenbaum) [1109777] {CVE-2014-1739}
-- [fs] vfs: fix ref count leak in path_mountpoint() (Ian Kent) [1122376] {CVE-2014-5045}
-- [kernel] ptrace: get_dumpable() incorrect tests (Jacob Tanenbaum) [1111606] {CVE-2013-2929}
-- [fs] fanotify/compat: fix sys_fanotify_mark (Jan Stancek) [1119318]
-- [target] rd: Refactor rd_build_device_space + rd_release_device_space (Denys Vlasenko) [1108755] {CVE-2014-4027}
-- [ipc] fix compat msgrcv with negative msgtyp (Mateusz Guzik) [1042807]
-- [Documentation] fix incorrect formula to calculate CommitLimit value (Petr Oros) [1060570]
-- [acpi] apci_pad: in power_saving_thread(), call schedule() when need_resched is true (Tony Camuso) [1092076]
-
-* Wed Sep 24 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-170.el7]
-- [powerpc] Revert: Add iommu domain pointer to device archdata (David Gibson) [1123145 1123133 1123367]
-- [powerpc] Enable IOMMU and VFIO for ppc64 (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s_32/pr - Access HTAB in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Rework SLB switching code (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Move little endian conflict to HV KVM (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Do dcbz32 patching with big endian instructions (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Fill pvinfo hcall instructions in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - PAPR - Access RTAS in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - PAPR - Access HTAB in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s_64/pr - Access shadow slb in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s_64/pr - Access HTAB in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - ifdef on CONFIG_KVM_book3s_32_HANDLER for 32bit (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Disable AIL mode with OPAL (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Use SLB entry 0 (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Graciously fail broken LE hypercalls (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Remove open coded make_dsisr in alignment handler (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Always use the saved DAR value (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Make NX bit available with magic page (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Disable NX for old magic page using guests (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Expose TM registers (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Expose EBB registers (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Expose TAR facility to guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Handle Facility interrupt and FSCR (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Emulate TIR register (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Ignore PMU SPRs (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Default to big endian guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Fix C/R bit setting (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Fix WARN_ON with debug options on (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Enable Little Endian PR guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Enable interrupts earlier (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Make svcpu -> vcpu store preempt savvy (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Ignore DABR register (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Ignore PIR writes (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: add PR mode KVM (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Move more code under CONFIG_HAVE_KVM_IRQFD (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Enable IRQFD support for the XICS interrupt controller (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/s390: adapter interrupt sources (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Move irq notifier implementation into eventfd.c (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Move all accesses to kvm::irq_routing into irqchip.c (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/irqchip: Provide and use accessors for irq routing table (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Don't keep reference to irq routing table in irqfd struct (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: IRQ disabling cleanup (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: use fdget (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Put huge-page HPTEs in rmap chain for base address (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Move KVM_REG_PPC_WORT to an unused register number (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Add ONE_REG register names that were missed (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Add missing code for transaction reclaim on guest exit (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - make _PAGE_NUMA take effect (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc/book3s: rename lookup_linux_pte() to lookup_linux_pte_and_update() (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Fix KVM hang with CONFIG_KVM_XICS=n (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Fix incorrect userspace exit on ioeventfd write (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Remove bogus duplicate code (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - use xics_wake_cpu only when defined (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: NULL return of kvmppc_mmu_hpte_cache_next should be handled (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Add devname:kvm aliases for modules (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Don't drop low-order page address bits (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Get rid of KVM_HPAGE defines (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Guard doorbell exception with CONFIG_PPC_DOORBELL (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Make shared struct aka magic page guest endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Use base page size when comparing against slb value (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Fix machine check delivery to guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Add mixed page-size support for guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: fix couple of memory leaks in MPIC/XICS devices (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Don't clobber our exit handler id (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Fix physical address calculations (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Take SRCU read lock around RTAS kvm_read_guest() call (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Add H_SET_MODE hcall handling (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Allow only implemented hcalls to be enabled or disabled (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Controls for in-kernel sPAPR hypercall handling (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Move vcore definition to end of kvm_arch struct (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Export kvmppc_copy_to (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Add CAP to indicate hcall fixes (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Prefer CMA region for hash page table allocation (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Add software abort codes for transactional memory (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Unify kvmppc_get_last_inst and sc (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Load/save FP/VMX/VSX state directly to/from vcpu struct (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Fix compilation without CONFIG_ALTIVEC (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Add per-vm capability enablement (David Gibson) [1123145 1123133 1123367]
-- [iommu] vt-d: Exclude devices using RMRRs from IOMMU API domains (Myron Stowe) [1097907]
-- [s390] uaccess: fix possible register corruption in strnlen_user_srst() (Hendrik Brueckner) [1099147]
-- [s390] uaccess: rework uaccess code - fix locking issues (Hendrik Brueckner) [1099147]
-- [s390] uaccess: introduce 'uaccesspt' kernel parameter (Hendrik Brueckner) [1099147]
-- [s390] uaccess: remove dead kernel parameter 'user_mode=' (Hendrik Brueckner) [1099147]
-- [s390] setup: get rid of MACHINE_HAS_MVCOS machine flag (Hendrik Brueckner) [1099147]
-- [s390] uaccess: consistent types (Hendrik Brueckner) [1099147]
-- [s390] uaccess: get rid of indirect function calls (Hendrik Brueckner) [1099147]
-- [s390] uaccess: normalize order of parameters of indirect uaccess function calls (Hendrik Brueckner) [1099147]
-- [s390] uaccess: remove dead extern declarations, make functions static (Hendrik Brueckner) [1099147]
-- [s390] uaccess: test if current->mm is set before walking page tables (Hendrik Brueckner) [1099147]
-- [s390] compat: fix PSW32_USER_BITS definition (Hendrik Brueckner) [1099147]
-- [s390] compat: make psw32_user_bits a constant value again (Hendrik Brueckner) [1099147]
-- [s390] uaccess: always run the kernel in home space (Hendrik Brueckner) [1099147]
-- [s390] kernel: remove page table walk for user space accesses (Hendrik Brueckner) [1099147]
-- [powerpc] start loop at section start of start in vmemmap_populated() (Gustavo Duarte) [1090174]
-- [powerpc] implement vmemmap_free() (Gustavo Duarte) [1090174]
-- [powerpc] implement vmemmap_remove_mapping() for BOOK3S (Gustavo Duarte) [1090174]
-- [powerpc] implement vmemmap_list_free() (Gustavo Duarte) [1090174]
-- [x86] Makefile: Add stack frame check (Prarit Bhargava) [1058753]
-- [virt] kvm/x86: fix TSC matching (Marcelo Tosatti) [1115764]
-- [drm] radeon: tweak ACCEL_WORKING2 query for hawaii (Jerome Glisse) [1140789]
-
-* Tue Sep 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-169.el7]
-- [lib] assoc_array: Fix termination condition in assoc array garbage collection (David Howells) [1139431] {CVE-2014-3631}
-- [acpi] x86/ras: Fix build warnings in <linux/aer.h> (Rui Wang) [1085141]
-- [acpi] ras/extlog: Adjust init flow (Rui Wang) [1085141]
-- [acpi] trace/emca: Add a knob to adjust where to save event log (Rui Wang) [1085141]
-- [ras] trace: Add eMCA trace event interface (Rui Wang) [1085141]
-- [ras] debugfs: Add debugfs interface for RAS subsystem (Rui Wang) [1085141]
-- [firmware] efi/cper: Adjust code flow of some functions (Rui Wang) [1085141]
-- [trace] aer: Move trace into unified interface (Rui Wang) [1085141]
-- [trace] ras: Add basic RAS trace event (Rui Wang) [1085141]
-- [trace] Add __field_struct macro for TRACE_EVENT() (Rui Wang) [1085141]
-- [trace] pci/aer: Fix severity usage in aer trace event (Rui Wang) [1085141]
-- [acpi] emca: Combine eMCA/EDAC event reporting priority (Rui Wang) [1076655]
-- [edac] sb_edac: Modify H/W event reporting policy (Rui Wang) [1076655]
-- [edac] Add an edac_report parameter to EDAC (Rui Wang) [1076655]
-- [acpi] Clean up inclusions of ACPI header files (Rui Wang) [1076655]
-- [acpi] x86: Export 'boot_cpu_physical_apicid' to modules (Rui Wang) [1076655]
-- [acpi] x86: Fix extended error log driver to depend on CONFIG_X86_LOCAL_APIC (Rui Wang) [1076655]
-- [firmware] dmi: Avoid unaligned memory access in save_mem_devices() (Rui Wang) [1076655]
-- [firmware] efi: Move cper.c from drivers/acpi/apei to drivers/firmware/efi (Rui Wang) [1076655]
-- [edac] ghes: Update ghes error record info (Rui Wang) [1076655]
-- [acpi] apei/cper: Cleanup CPER memory error output format (Rui Wang) [1076655]
-- [acpi] apei/cper: Enhance memory reporting capability (Rui Wang) [1076655]
-- [firmware] dmi: Parse memory device (type 17) in SMBIOS (Rui Wang) [1076655]
-- [acpi] x86: Extended error log driver for x86 platform (Rui Wang) [1076655]
-- [acpi] cper: Update cper info (Rui Wang) [1076655]
-- [acpi] apei/cper: Fix status check during error printing (Rui Wang) [1076655]
-
-* Tue Sep 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-168.el7]
-- [ethernet] bnx2x: Configure device endianity on driver load and reset endianity on removal (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Be more forgiving toward SW GRO (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: VF clean statistics (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix stop-on-error (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: ethtool -d might cause timeout in log (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Use is_kdump_kernel() to detect kdump kernel (Michal Schmidt) [1059554 1089402]
-- [ethernet] bnx2x: FW assertion changes (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Make BP_VF more robust (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Prevent pci_disable_sriov with assigned VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Prevent IOV if no entries in CAM (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix static checker warning regarding `txdata_ptr' (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Safe bnx2x_panic_dump() (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Update driver version to 1.710.51 (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Code cleanup (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix sparse warnings (Michal Schmidt) [1119861 1060671 1089402]
-- [ethernet] bnx2x: Fix timesync endianity (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Add timestamping and PTP hardware clock support (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix tunneled GSO over IPv6 (Michal Schmidt) [1119861 1060671 1089402]
-- [ethernet] bnx2x: prevent incorrect byte-swap in BE (Michal Schmidt) [1119861 1060671 1089402]
-- [ethernet] bnx2x: Utilize FW 7.10.51 (Michal Schmidt) [1119861 1060671 1089402]
-- [ethernet] bnx2x: Remove redundant #ifdef (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Revert UNDI flushing mechanism (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Remove DEFINE_PCI_DEVICE_TABLE macro use (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix set_setting for some PHYs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix possible panic under memory stress (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix the MSI flags (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fail probe of VFs using an old incompatible driver (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: enlarge minimal alignemnt of data offset (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: VF can report link speed (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: remove null test before kfree (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Enlarge the dorq threshold for VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Check for UNDI in uncommon branch (Michal Schmidt) [1094099 1089402]
-- [ethernet] bnx2x: Fix 1G-baseT link (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix link for KR with swapped polarity lane (Michal Schmidt) [1123867 1089402]
-- [ethernet] bnx2x: Remove useless return variables (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: update MAINTAINERS for bnx2x and e-mail addresses (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: get rid of SET_ETHTOOL_OPS (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix build when BNX2X_SRIOV is not enabled (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Convert return 0 to return rc (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix UNDI driver unload (Michal Schmidt) [1094099 1089402]
-- [ethernet] bnx2x: Memory leak during VF removal (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: include irq.h for irqreturn_t definitions (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix possible memory leak on iov error flow (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix compilation when CONFIG_BNX2X_SRIOV is not set (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Don't allow VFs to become promiscuous (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Don't show port statistics for VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix failure to configure VF multicast filters (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix vlan credit issues for VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Remove the sriov VFOP mechanism (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Create workqueue for IOV related tasks (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Support mng. request for driver version (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Don't receive packets when the napi budget == 0 (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: save RAM in kdump kernel by disabling TPA (Michal Schmidt) [1059554 1089402]
-- [ethernet] bnx2x: save RAM in kdump kernel by using a single queue (Michal Schmidt) [1059554 1089402]
-- [ethernet] bnx2x: clamp num_queues to prevent passing a negative value (Michal Schmidt) [1059554 1089402]
-- [ethernet] bnx2x: Remove hidden flow control goto from BNX2X_ALLOC macros (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Use pci_enable_msix_range() instead of pci_enable_msix() (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: (semantic) revise scheduling of sp_rtnl (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix bnx2x_panic_dump for VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Revise IOV vlan/mac validation (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Add support in PF driver for RSC (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Semantic Validate vlan/mac changes (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Remove unnecessary internal mem config (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Remove unused iov code (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Debug - change verbosity of some prints (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix L2-GRE TCP issues (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix sparse warning (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: prevent WARN during driver unload (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: slight optimization of addr compare (Michal Schmidt) [1089402]
-- [kernel] crash_dump: Make is_kdump_kernel() accessible from modules (Michal Schmidt) [1089402 1059554]
-- [ethernet] qlge: Fix TSO for non-accelerated vlan traffic (Vlad Yasevich) [1135619]
-- [ethernet] mvneta: Fix TSO and checksum for non-acceleration vlan traffic (Vlad Yasevich) [1135619]
-- [ethernet] i40evf: Fix TSO and hw checksums for non-accelerated vlan packets (Vlad Yasevich) [1135619]
-- [ethernet] i40e: Fix TSO and hw checksums for non-accelerated vlan packets (Vlad Yasevich) [1135619]
-- [ethernet] ehea: Fix TSO and hw checksums with non-accelerated vlan packets (Vlad Yasevich) [1135619]
-- [ethernet] e1000: Fix TSO for non-accelerated vlan traffic (Vlad Yasevich) [1135619]
-- [ethernet] e1000e: Fix TSO with non-accelerated vlans (Vlad Yasevich) [1135619]
-- [net] macvlan: Initialize vlan_features to turn on offload support (Vlad Yasevich) [1135619]
-- [net] macvtap: Fix checksum errors for non-gso packets in bridge mode (Vlad Yasevich) [1135619]
-- [net] Revert: macvlan: fix checksums error when we are in bridge mode (Vlad Yasevich) [1135619]
-- [net] Correctly set segment mac_len in skb_segment() (Vlad Yasevich) [1135619]
-- [crypto] pkcs7: Fix the parser cleanup to drain parsed out X.509 certs (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Provide a single place to do signed info block freeing (Vivek Goyal) [1129779]
-- [security] keys: Reinstate EPERM for a key type name beginning with a '.' (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Add a missing static (Vivek Goyal) [1129779]
-- [crypto] x509: Need to export x509_request_asymmetric_key() (Vivek Goyal) [1129779]
-- [crypto] pkcs7: X.509 certificate issuer and subject are mandatory fields in the ASN.1 (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Use x509_request_asymmetric_key() (Vivek Goyal) [1129779]
-- [crypto] x509: x509_request_asymmetric_keys() doesn't need string length arguments (Vivek Goyal) [1129779]
-- [crypto] pkcs7: fix sparse non static symbol warning (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Missing inclusion of linux/err.h (Vivek Goyal) [1129779]
-- [security] ima: define '.ima' as a builtin 'trusted' keyring (Vivek Goyal) [1129779]
-- [crypto] keys: validate certificate trust only with builtin keys (Vivek Goyal) [1129779]
-- [crypto] keys: validate certificate trust only with selected key (Vivek Goyal) [1129779]
-- [crypto] keys: make partial key id matching as a dedicated function (Vivek Goyal) [1129779]
-- [crypto] keys: verify a certificate is signed by a 'trusted' key (Vivek Goyal) [1129779]
-- [security] keys: special dot prefixed keyring name bug fix (Vivek Goyal) [1129779]
-- [crypto] Revert: keys: verify a certificate is signed by a 'trusted' key (Vivek Goyal) [1129779]
-- [crypto] pefile: Validate PKCS#7 trust chain (Vivek Goyal) [1129779]
-- [crypto] pefile: Digest the PE binary and compare to the PKCS#7 data (Vivek Goyal) [1129779]
-- [crypto] pefile: Handle pesign using the wrong OID (Vivek Goyal) [1129779]
-- [crypto] pefile: Parse the "Microsoft individual code signing" data blob (Vivek Goyal) [1129779]
-- [crypto] pefile: Parse the presumed PKCS#7 content of the certificate blob (Vivek Goyal) [1129779]
-- [crypto] pefile: Strip the wrapper off of the cert data block (Vivek Goyal) [1129779]
-- [crypto] pefile: Parse a PE binary to find a key and a signature contained therein (Vivek Goyal) [1129779]
-- [misc] Provide PE binary definitions (Vivek Goyal) [1129779]
-- [crypto] keys/x509: Fix a spelling mistake (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Provide a key type for testing PKCS#7 (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Find intersection between PKCS#7 message and known, trusted keys (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Verify internal certificate chain (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Find the right key in the PKCS#7 key list and verify the signature (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Digest the data in a signed-data message (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Implement a parser for RFC 2315 (Vivek Goyal) [1129779]
-- [crypto] x509: Export certificate parse and free functions (Vivek Goyal) [1129779]
-- [crypto] x509: Add bits needed for PKCS#7 (Vivek Goyal) [1129779]
-- [crypto] keys: change asymmetric keys to use common hash definitions (Vivek Goyal) [1129779]
-- [crypto] provide single place for hash algo information (Vivek Goyal) [1129779]
-
-* Sun Sep 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-167.el7]
-- [fs] ceph: remove extra definitions of U32_MAX (Sage Weil) [1122174]
-- [fs] vfs: call d_op->d_prune() before unhashing dentry (Sage Weil) [1122174]
-- [net] libceph: set last_piece in ceph_msg_data_pages_cursor_init() correctly (Sage Weil) [1122174]
-- [block] rbd: remove extra newlines from rbd_warn() messages (Sage Weil) [1122174]
-- [block] rbd: allocate img_request with GFP_NOIO instead GFP_ATOMIC (Sage Weil) [1122174]
-- [block] rbd: rework rbd_request_fn() (Sage Weil) [1122174]
-- [fs] ceph: fix kick_requests() (Sage Weil) [1122174]
-- [fs] ceph: fix sizeof(struct tYpO *) typo (Sage Weil) [1122174]
-- [fs] ceph: remove redundant memset(0) (Sage Weil) [1122174]
-- [block] rbd: take snap_id into account when reading in parent info (Sage Weil) [1122174]
-- [block] rbd: do not read in parent info before snap context (Sage Weil) [1122174]
-- [block] rbd: update mapping size only on refresh (Sage Weil) [1122174]
-- [block] rbd: harden rbd_dev_refresh() and callers a bit (Sage Weil) [1122174]
-- [block] rbd: split rbd_dev_spec_update() into two functions (Sage Weil) [1122174]
-- [block] rbd: remove unnecessary asserts in rbd_dev_image_probe() (Sage Weil) [1122174]
-- [block] rbd: introduce rbd_dev_header_info() (Sage Weil) [1122174]
-- [block] rbd: show the entire chain of parent images (Sage Weil) [1122174]
-- [fs] ceph: replace comma with a semicolon (Sage Weil) [1122174]
-- [block] rbd: use rbd_segment_name_free() instead of kfree() (Sage Weil) [1122174]
-- [fs] ceph: check zero length in ceph_sync_read() (Sage Weil) [1122174]
-- [fs] ceph: reset r_resend_mds after receiving -ESTALE (Sage Weil) [1122174]
-- [fs] ceph: include time stamp in replayed MDS requests (Sage Weil) [1122174]
-- [block] rbd: do not leak image_id in rbd_dev_v2_parent_info() (Sage Weil) [1122174]
-- [fs] ceph: check unsupported fallocate mode (Sage Weil) [1122174]
-- [net] libceph: drop osd ref when canceling con work (Sage Weil) [1122174]
-- [net] libceph: nuke ceph_osdc_unregister_linger_request() (Sage Weil) [1122174]
-- [block] rbd: use rbd_obj_watch_request_helper() helper (Sage Weil) [1122174]
-- [block] rbd: add rbd_obj_watch_request_helper() helper (Sage Weil) [1122174]
-- [block] rbd: rbd_obj_request_wait() should cancel the request if interrupted (Sage Weil) [1122174]
-- [net] libceph: introduce ceph_osdc_cancel_request() (Sage Weil) [1122174]
-- [net] libceph: fix linger request check in __unregister_request() (Sage Weil) [1122174]
-- [net] libceph: unregister only registered linger requests (Sage Weil) [1122174]
-- [net] libceph: assert both regular and lingering lists in __remove_osd() (Sage Weil) [1122174]
-- [net] libceph: harden ceph_osdc_request_release() a bit (Sage Weil) [1122174]
-- [net] libceph: move and add dout()s to ceph_osdc_request_{get, put}() (Sage Weil) [1122174]
-- [net] libceph: move and add dout()s to ceph_msg_{get, put}() (Sage Weil) [1122174]
-- [net] libceph: add maybe_move_osd_to_lru() and switch to it (Sage Weil) [1122174]
-- [net] libceph: rename ceph_osd_request::r_linger_osd to r_linger_osd_item (Sage Weil) [1122174]
-- [block] rbd: handle parent_overlap on writes correctly (Sage Weil) [1122174]
-- [fs] ceph: remove bogus extern (Sage Weil) [1122174]
-- [block] rbd: only set disk to read-only once (Sage Weil) [1122174]
-- [block] rbd: move calls that may sleep out of spin lock range (Sage Weil) [1122174]
-- [block] rbd: add ioctl for rbd (Sage Weil) [1122174]
-- [fs] ceph: use truncate_pagecache() instead of truncate_inode_pages() (Sage Weil) [1122174]
-- [fs] ceph: debugfs, replace seq_printf by seq_puts (Sage Weil) [1122174]
-- [fs] ceph: replace pr_warning by pr_warn (Sage Weil) [1122174]
-- [fs] ceph: include time stamp in every MDS request (Sage Weil) [1122174]
-- [block] rbd: fix ida/idr memory leak (Sage Weil) [1122174]
-- [block] rbd: use reference counts for image requests (Sage Weil) [1122174]
-- [block] rbd: fix osd_request memory leak in __rbd_dev_header_watch_sync() (Sage Weil) [1122174]
-- [block] rbd: make sure we have latest osdmap on 'rbd map' (Sage Weil) [1122174]
-- [net] libceph: add ceph_monc_wait_osdmap() (Sage Weil) [1122174]
-- [net] libceph: mon_get_version request infrastructure (Sage Weil) [1122174]
-- [net] libceph: recognize poolop requests in debugfs (Sage Weil) [1122174]
-- [fs] ceph: refactor readpage_nounlock() to make the logic clearer (Sage Weil) [1122174]
-- [fs] ceph: mds - check cap ID when handling cap export message (Sage Weil) [1122174]
-- [fs] ceph: remember subtree root dirfrag's auth MDS (Sage Weil) [1122174]
-- [fs] ceph: introduce ceph_fill_fragtree() (Sage Weil) [1122174]
-- [fs] ceph: handle cap import atomically (Sage Weil) [1122174]
-- [fs] ceph: pre-allocate ceph_cap struct for ceph_add_cap() (Sage Weil) [1122174]
-- [fs] ceph: update inode fields according to issued caps (Sage Weil) [1122174]
-- [fs] ceph: queue vmtruncate if necessary when handing cap grant/revoke (Sage Weil) [1122174]
-- [fs] ceph: ceph_get_parent() can be static (Sage Weil) [1122174]
-- [net] crush: decode and initialize chooseleaf_vary_r (Sage Weil) [1122174]
-- [net] libceph: fix corruption when using page_count 0 page in rbd (Sage Weil) [1122174]
-- [fs] ceph: reserve caps for file layout/lock MDS requests (Sage Weil) [1122174]
-- [fs] ceph: avoid releasing caps that are being used (Sage Weil) [1122174]
-- [fs] ceph: clear directory's completeness when creating file (Sage Weil) [1122174]
-- [net] libceph: fix non-default values check in apply_primary_affinity() (Sage Weil) [1122174]
-- [fs] ceph: use fpos_cmp() to compare dentry positions (Sage Weil) [1122174]
-- [fs] ceph: check directory's completeness before emitting directory entry (Sage Weil) [1122174]
-- [fs] ceph: fix pr_fmt() redefinition (Sage Weil) [1122174]
-- [fs] ceph: ceph_sync_{, direct_}write, fix an oops on ceph_osdc_new_request() failure (Sage Weil) [1122174]
-- [fs] ceph: skip invalid dentry during dcache readdir (Sage Weil) [1122174]
-- [net] libceph: dump pool {read,write}_tier to debugfs (Sage Weil) [1122174]
-- [net] libceph: output primary affinity values on osdmap updates (Sage Weil) [1122174]
-- [fs] ceph: flush cap release queue when trimming session caps (Sage Weil) [1122174]
-- [fs] ceph: don't grabs open file reference for aborted request (Sage Weil) [1122174]
-- [fs] ceph: drop extra open file reference in ceph_atomic_open() (Sage Weil) [1122174]
-- [fs] ceph: preallocate buffer for readdir reply (Sage Weil) [1122174]
-- [net] libceph: enable PRIMARY_AFFINITY feature bit (Sage Weil) [1122174]
-- [net] libceph: redo ceph_calc_pg_primary() in terms of ceph_calc_pg_acting() (Sage Weil) [1122174]
-- [net] libceph: add support for osd primary affinity (Sage Weil) [1122174]
-- [net] libceph: add support for primary_temp mappings (Sage Weil) [1122174]
-- [net] libceph: return primary from ceph_calc_pg_acting() (Sage Weil) [1122174]
-- [net] libceph: switch ceph_calc_pg_acting() to new helpers (Sage Weil) [1122174]
-- [net] libceph: introduce apply_temps() helper (Sage Weil) [1122174]
-- [net] libceph: introduce pg_to_raw_osds() and raw_to_up_osds() helpers (Sage Weil) [1122174]
-- [net] libceph: ceph_can_shift_osds(pool) and pool type defines (Sage Weil) [1122174]
-- [net] libceph: ceph_osd_{exists, is_up, is_down}(osd) definitions (Sage Weil) [1122174]
-- [net] libceph: enable OSDMAP_ENC feature bit (Sage Weil) [1122174]
-- [net] libceph: primary_affinity decode bits (Sage Weil) [1122174]
-- [net] libceph: primary_affinity infrastructure (Sage Weil) [1122174]
-- [net] libceph: primary_temp decode bits (Sage Weil) [1122174]
-- [net] libceph: primary_temp infrastructure (Sage Weil) [1122174]
-- [net] libceph: generalize ceph_pg_mapping (Sage Weil) [1122174]
-- [net] libceph: introduce get_osdmap_client_data_v() (Sage Weil) [1122174]
-- [net] libceph: introduce decode{, _new}_pg_temp() and switch to them (Sage Weil) [1122174]
-- [net] libceph: switch osdmap_set_max_osd() to krealloc() (Sage Weil) [1122174]
-- [net] libceph: introduce decode{, _new}_pools() and switch to them (Sage Weil) [1122174]
-- [net] libceph: rename __decode_pool{, _names}() to decode_pool{, _names}() (Sage Weil) [1122174]
-- [net] libceph: fix and clarify ceph_decode_need() sizes (Sage Weil) [1122174]
-- [net] libceph: nuke bogus encoding version check in osdmap_apply_incremental() (Sage Weil) [1122174]
-- [net] libceph: fixup error handling in osdmap_apply_incremental() (Sage Weil) [1122174]
-- [net] libceph: fix crush_decode() call site in osdmap_decode() (Sage Weil) [1122174]
-- [net] libceph: check length of osdmap osd arrays (Sage Weil) [1122174]
-- [net] libceph: safely decode max_osd value in osdmap_decode() (Sage Weil) [1122174]
-- [net] libceph: fixup error handling in osdmap_decode() (Sage Weil) [1122174]
-- [net] libceph: split osdmap allocation and decode steps (Sage Weil) [1122174]
-- [net] libceph: dump osdmap and enhance output on decode errors (Sage Weil) [1122174]
-- [net] libceph: dump pg_temp mappings to debugfs (Sage Weil) [1122174]
-- [net] libceph: do not prefix osd lines with t in debugfs output (Sage Weil) [1122174]
-- [net] libceph: refer to osdmap directly in osdmap_show() (Sage Weil) [1122174]
-- [net] crush: support chooseleaf_vary_r tunable (tunables3) by default (Sage Weil) [1122174]
-- [net] crush: add SET_CHOOSELEAF_VARY_R step (Sage Weil) [1122174]
-- [net] crush: add chooseleaf_vary_r tunable (Sage Weil) [1122174]
-- [net] crush: allow crush rules to set (re)tries counts to 0 (Sage Weil) [1122174]
-- [net] crush: fix off-by-one errors in total_tries refactor (Sage Weil) [1122174]
-- [fs] ceph: don't include ceph.{file, dir}.layout vxattr in listxattr() (Sage Weil) [1122174]
-- [fs] ceph: check buffer size in ceph_vxattrcb_layout() (Sage Weil) [1122174]
-- [fs] ceph: fix null pointer dereference in discard_cap_releases() (Sage Weil) [1122174]
-- [net] libceph: fix oops in ceph_msg_data_{pages, pagelist}_advance() (Sage Weil) [1122174]
-- [fs] ceph: set mds_wanted when MDS reply changes a cap to auth cap (Sage Weil) [1122174]
-- [fs] ceph: use fl->fl_file as owner identifier of flock and posix lock (Sage Weil) [1122174]
-- [fs] ceph: forbid mandatory file lock (Sage Weil) [1122174]
-- [fs] ceph: use fl->fl_type to decide flock operation (Sage Weil) [1122174]
-- [fs] ceph: update i_max_size even if inode version does not change (Sage Weil) [1122174]
-- [fs] ceph: make sure write caps are registered with auth MDS (Sage Weil) [1122174]
-- [fs] ceph: print inode number for LOOKUPINO request (Sage Weil) [1122174]
-- [fs] ceph: add get_name() NFS export callback (Sage Weil) [1122174]
-- [fs] ceph: fix ceph_fh_to_parent() (Sage Weil) [1122174]
-- [fs] ceph: add get_parent() NFS export callback (Sage Weil) [1122174]
-- [fs] ceph: simplify ceph_fh_to_dentry() (Sage Weil) [1122174]
-- [fs] ceph: do not set r_old_dentry_dir on link() (Sage Weil) [1122174]
-- [fs] ceph: do not assume r_old_dentry[_dir] always set together (Sage Weil) [1122174]
-- [fs] ceph: do not chain inode updates to parent fsync (Sage Weil) [1122174]
-- [fs] ceph: avoid useless ceph_get_dentry_parent_inode() in ceph_rename() (Sage Weil) [1122174]
-- [fs] ceph: let MDS adjust readdir 'frag' (Sage Weil) [1122174]
-- [block] rbd: prefix rbd writes with CEPH_OSD_OP_SETALLOCHINT osd op (Sage Weil) [1122174]
-- [block] rbd: num_ops parameter for rbd_osd_req_create() (Sage Weil) [1122174]
-- [net] libceph: bump CEPH_OSD_MAX_OP to 3 (Sage Weil) [1122174]
-- [net] libceph: add support for CEPH_OSD_OP_SETALLOCHINT osd op (Sage Weil) [1122174]
-- [net] libceph: encode CEPH_OSD_OP_FLAG_* op flags (Sage Weil) [1122174]
-- [block] rbd: fix error paths in rbd_img_request_fill() (Sage Weil) [1122174]
-- [block] rbd: remove out_partial label in rbd_img_request_fill() (Sage Weil) [1122174]
-- [net] libceph: a per-osdc crush scratch buffer (Sage Weil) [1122174]
-- [block] rbd: drop an unsafe assertion (Sage Weil) [1122174]
-- [fs] ceph: fix reset_readdir() (Sage Weil) [1122174]
-- [fs] ceph: fix ceph_dir_llseek() (Sage Weil) [1122174]
-- [fs] ceph: fix __dcache_readdir() (Sage Weil) [1122174]
-- [fs] ceph: fix ceph_removexattr() (Sage Weil) [1122174]
-- [fs] ceph: remove xattr when null value is given to setxattr() (Sage Weil) [1122174]
-- [fs] ceph: properly handle XATTR_CREATE and XATTR_REPLACE (Sage Weil) [1122174]
-- [net] libceph: take map_sem for read in handle_reply() (Sage Weil) [1122174]
-- [net] libceph: factor out logic from ceph_osdc_start_request() (Sage Weil) [1122174]
-- [net] libceph: fix error handling in ceph_osdc_init() (Sage Weil) [1122174]
-- [fs] ceph: cast PAGE_SIZE to size_t in ceph_sync_write() (Sage Weil) [1122174]
-- [fs] ceph: fix dout() compile warnings in ceph_filemap_fault() (Sage Weil) [1122174]
-- [net] libceph: support CEPH_FEATURE_OSD_CACHEPOOL feature (Sage Weil) [1122174]
-- [net] libceph: follow redirect replies from osds (Sage Weil) [1122174]
-- [net] libceph: rename ceph_osd_request::r_{oloc, oid} to r_base_{oloc, oid} (Sage Weil) [1122174]
-- [net] libceph: follow {read, write}_tier fields on osd request submission (Sage Weil) [1122174]
-- [net] libceph: add ceph_pg_pool_by_id() (Sage Weil) [1122174]
-- [net] libceph: CEPH_OSD_FLAG_* enum update (Sage Weil) [1122174]
-- [net] libceph: replace ceph_calc_ceph_pg() with ceph_oloc_oid_to_pg() (Sage Weil) [1122174]
-- [net] libceph: introduce and start using oid abstraction (Sage Weil) [1122174]
-- [net] libceph: move ceph_file_layout helpers to ceph_fs.h (Sage Weil) [1122174]
-- [net] libceph: rename MAX_OBJ_NAME_SIZE to CEPH_MAX_OID_NAME_LEN (Sage Weil) [1122174]
-- [net] libceph: start using oloc abstraction (Sage Weil) [1122174]
-- [net] libceph: dout() is missing a newline (Sage Weil) [1122174]
-- [net] libceph: add ceph_kv{malloc, free}() and switch to them (Sage Weil) [1122174]
-- [net] libceph: support CEPH_FEATURE_EXPORT_PEER (Sage Weil) [1122174]
-- [fs] ceph: add imported caps when handling cap export message (Sage Weil) [1122174]
-- [fs] ceph: add open export target session helper (Sage Weil) [1122174]
-- [fs] ceph: remove exported caps when handling cap import message (Sage Weil) [1122174]
-- [fs] ceph: handle session flush message (Sage Weil) [1122174]
-- [fs] ceph: check inode caps in ceph_d_revalidate (Sage Weil) [1122174]
-- [fs] ceph: handle -ESTALE reply (Sage Weil) [1122174]
-- [fs] ceph: fix trim caps (Sage Weil) [1122174]
-- [fs] ceph: fix cache revoke race (Sage Weil) [1122174]
-- [fs] ceph: use ceph_seq_cmp() to compare migrate_seq (Sage Weil) [1122174]
-- [fs] ceph: handle cap export race in try_flush_caps() (Sage Weil) [1122174]
-- [fs] ceph: trivial comment fix (Sage Weil) [1122174]
-- [net] libceph: fix preallocation check in get_reply() (Sage Weil) [1122174]
-- [net] libceph: rename front to front_len in get_reply() (Sage Weil) [1122174]
-- [net] libceph: rename ceph_msg::front_max to front_alloc_len (Sage Weil) [1122174]
-- [net] libceph: use CEPH_MON_PORT when the specified port is 0 (Sage Weil) [1122174]
-- [net] crush: support new indep mode and SET_* steps (crush v2) by default (Sage Weil) [1122174]
-- [net] crush: fix crush_choose_firstn comment (Sage Weil) [1122174]
-- [net] crush: attempts -> tries (Sage Weil) [1122174]
-- [net] crush: add set_choose_local_[fallback_]tries steps (Sage Weil) [1122174]
-- [net] crush: generalize descend_once (Sage Weil) [1122174]
-- [net] crush: CHOOSE_LEAF -> CHOOSELEAF throughout (Sage Weil) [1122174]
-- [net] crush: add SET_CHOOSE_TRIES rule step (Sage Weil) [1122174]
-- [net] crush: apply chooseleaf_tries to firstn mode too (Sage Weil) [1122174]
-- [net] crush: new SET_CHOOSE_LEAF_TRIES command (Sage Weil) [1122174]
-- [net] crush: pass parent r value for indep call (Sage Weil) [1122174]
-- [net] crush: clarify numrep vs endpos (Sage Weil) [1122174]
-- [net] crush: strip firstn conditionals out of crush_choose, rename (Sage Weil) [1122174]
-- [net] crush: add note about r in recursive choose (Sage Weil) [1122174]
-- [net] crush: use breadth-first search for indep mode (Sage Weil) [1122174]
-- [net] crush: return CRUSH_ITEM_UNDEF for failed placements with indep (Sage Weil) [1122174]
-- [net] crush: eliminate CRUSH_MAX_SET result size limitation (Sage Weil) [1122174]
-- [net] crush: fix some comments (Sage Weil) [1122174]
-- [net] crush: reduce scope of some local variables (Sage Weil) [1122174]
-- [net] crush: factor out (trivial) crush_destroy_rule() (Sage Weil) [1122174]
-- [net] crush: pass weight vector size to map function (Sage Weil) [1122174]
-- [net] libceph: update ceph_features.h (Sage Weil) [1122174]
-- [net] libceph: all features fields must be u64 (Sage Weil) [1122174]
-- [block] rbd: tear down watch request if rbd_dev_device_setup() fails (Sage Weil) [1122174]
-- [block] rbd: introduce rbd_dev_header_unwatch_sync() and switch to it (Sage Weil) [1122174]
-- [block] rbd: enable extended devt in single-major mode (Sage Weil) [1122174]
-- [fs] ceph: check caps in filemap_fault and page_mkwrite (Sage Weil) [1122174]
-- [block] rbd: add support for single-major device number allocation scheme (Sage Weil) [1122174]
-- [block] rbd: add 'minor' sysfs rbd device attribute (Sage Weil) [1122174]
-- [block] rbd: switch to ida for rbd id assignments (Sage Weil) [1122174]
-- [block] rbd: refactor rbd_init() a bit (Sage Weil) [1122174]
-- [block] rbd: tweak "loaded" message and module description (Sage Weil) [1122174]
-- [block] rbd: rbd_device::dev_id is an int, format it as such (Sage Weil) [1122174]
-- [net] libceph: resend all writes after the osdmap loses the full flag (Sage Weil) [1122174]
-- [net] libceph: block I/O when PAUSE or FULL osd map flags are set (Sage Weil) [1122174]
-- [fs] ceph: new helper, file_inode(file) (Sage Weil) [1122174]
-- [fs] ceph: Add necessary clean up if invalid reply received in handle_reply() (Sage Weil) [1122174]
-- [fs] ceph: Clean up if error occurred in finish_read() (Sage Weil) [1122174]
-- [fs] ceph: implement readv/preadv for sync operation (Sage Weil) [1122174]
-- [fs] ceph: Implement writev/pwritev for sync operation (Sage Weil) [1122174]
-- [fs] ceph: drop unconnected inodes (Sage Weil) [1122174]
-- [fs] ceph: Avoid data inconsistency due to d-cache aliasing in readpage() (Sage Weil) [1122174]
-- [fs] ceph: initialize inode before instantiating dentry (Sage Weil) [1122174]
-- [fs] ceph: allocate non-zero page to fscache in readpage() (Sage Weil) [1122174]
-- [fs] ceph: wake up 'safe' waiters when unregistering request (Sage Weil) [1122174]
-- [fs] ceph: cleanup aborted requests when re-sending requests (Sage Weil) [1122174]
-- [fs] ceph: handle race between cap reconnect and cap release (Sage Weil) [1122174]
-- [fs] ceph: set caps count after composing cap reconnect message (Sage Weil) [1122174]
-- [fs] ceph: queue cap release in __ceph_remove_cap() (Sage Weil) [1122174]
-- [fs] ceph: handle frag mismatch between readdir request and reply (Sage Weil) [1122174]
-- [fs] ceph: remove outdated frag information (Sage Weil) [1122174]
-- [block] rbd: fix error handling from rbd_snap_name() (Sage Weil) [1122174]
-- [block] rbd: ignore unmapped snapshots that no longer exist (Sage Weil) [1122174]
-- [block] rbd: fix use-after free of rbd_dev->disk (Sage Weil) [1122174]
-- [block] rbd: make rbd_obj_notify_ack() synchronous (Sage Weil) [1122174]
-- [block] rbd: complete notifies before cleaning up osd_client and rbd_dev (Sage Weil) [1122174]
-- [net] libceph: add function to ensure notifies are complete (Sage Weil) [1122174]
-- [fs] ceph: use d_invalidate() to invalidate aliases (Sage Weil) [1122174]
-- [fs] ceph: remove ceph_lookup_inode() (Sage Weil) [1122174]
-- [block] rbd: fix null dereference in dout (Sage Weil) [1122174]
-- [block] rbd: fix buffer size for writes to images with snapshots (Sage Weil) [1122174]
-- [fs] ceph: use vfs __set_page_dirty_nobuffers interface instead of doing it inside filesystem (Sage Weil) [1122174]
-- [fs] ceph: allow sync_read/write return partial successed size of read/write (Sage Weil) [1122174]
-- [fs] ceph: fix bugs about handling short-read for sync read mode (Sage Weil) [1122174]
-- [fs] ceph: remove useless variable revoked_rdcache (Sage Weil) [1122174]
-- [net] libceph: create_singlethread_workqueue() doesn't return ERR_PTRs (Sage Weil) [1122174]
-- [net] libceph: potential NULL dereference in ceph_osdc_handle_map() (Sage Weil) [1122174]
-- [net] libceph: fix error handling in handle_reply() (Sage Weil) [1122174]
-- [fs] ceph: fix fallocate division (Sage Weil) [1122174]
-- [fs] ceph: punch hole support (Sage Weil) [1122174]
-- [fs] ceph: fix request max size (Sage Weil) [1122174]
-- [fs] ceph: introduce i_truncate_mutex (Sage Weil) [1122174]
-- [fs] ceph: cleanup the logic in ceph_invalidatepage (Sage Weil) [1122174]
-- [fs] ceph: Remove bogus check in invalidatepage (Sage Weil) [1122174]
-- [fs] ceph: replace hold_mutex flag with goto (Sage Weil) [1122174]
-- [fs] ceph: Move the place for EOLDSNAPC handle in ceph_aio_write to easily understand (Sage Weil) [1122174]
-- [block] rbd: use NULL instead of 0 (Sage Weil) [1122174]
-- [fs] ceph: fix freeing inode vs removing session caps race (Sage Weil) [1122174]
-- [fs] ceph: Add check returned value on func ceph_calc_ceph_pg (Sage Weil) [1122174]
-- [fs] ceph: Don't use ceph-sync-mode for synchronous-fs (Sage Weil) [1122174]
-- [fs] ceph: cleanup types in striped_read() (Sage Weil) [1122174]
-- [fs] ceph: trim deleted inode (Sage Weil) [1122174]
-- [fs] ceph: wake up writer if vmtruncate work get blocked (Sage Weil) [1122174]
-- [fs] ceph: drop CAP_LINK_SHARED when sending "link" request to MDS (Sage Weil) [1122174]
-- [fs] ceph: fix null pointer dereference (Sage Weil) [1122174]
-- [net] libceph: call r_unsafe_callback when unsafe reply is received (Sage Weil) [1122174]
-- [fs] ceph: fix race between cap issue and revoke (Sage Weil) [1122174]
-- [fs] ceph: fix cap revoke race (Sage Weil) [1122174]
-- [fs] ceph: fix pending vmtruncate race (Sage Weil) [1122174]
-- [fs] ceph: avoid accessing invalid memory (Sage Weil) [1122174]
-- [fs] ceph: Reconstruct the func ceph_reserve_caps (Sage Weil) [1122174]
-- [fs] ceph: Free mdsc if alloc mdsc->mdsmap failed (Sage Weil) [1122174]
-- [fs] ceph: remove sb_start/end_write in ceph_aio_write (Sage Weil) [1122174]
-- [fs] ceph: avoid meaningless calling ceph_caps_revoking if sync_mode == WB_SYNC_ALL (Sage Weil) [1122174]
-- [fs] ceph: move inode to proper flushing list when auth MDS changes (Sage Weil) [1122174]
-- [block] rbd: fix a couple warnings (Sage Weil) [1122174]
-- [fs] ceph: clear migrate seq when MDS restarts (Sage Weil) [1122174]
-- [fs] ceph: check migrate seq before changing auth cap (Sage Weil) [1122174]
-- [fs] ceph: fix race between page writeback and truncate (Sage Weil) [1122174]
-- [fs] ceph: reset iov_len when discarding cap release messages (Sage Weil) [1122174]
-- [fs] ceph: fix cap release race (Sage Weil) [1122174]
-- [net] libceph: fix truncate size calculation (Sage Weil) [1122174]
-- [net] libceph: fix safe completion (Sage Weil) [1122174]
-- [block] rbd: take a little credit (Sage Weil) [1122174]
-- [block] rbd: use rwsem to protect header updates (Sage Weil) [1122174]
-- [block] rbd: don't hold ctl_mutex to get/put device (Sage Weil) [1122174]
-- [block] rbd: protect against concurrent unmaps (Sage Weil) [1122174]
-- [block] rbd: set removing flag while holding list lock (Sage Weil) [1122174]
-- [net] libceph: print more info for short message header (Sage Weil) [1122174]
-- [block] rbd: protect against duplicate client creation (Sage Weil) [1122174]
-- [block] rbd: clean up a few things in the refresh path (Sage Weil) [1122174]
-- [block] rbd: flush dcache after zeroing page data (Sage Weil) [1122174]
-- [net] libceph: add lingering request reference when registered (Sage Weil) [1122174]
-- [fs] ceph: tidy ceph_mdsmap_decode() a little (Sage Weil) [1122174]
-- [fs] ceph: improve error handling in ceph_mdsmap_decode (Sage Weil) [1122174]
-- [block] rbd: drop original request earlier for existence check (Sage Weil) [1122174]
-- [fs] ceph: fix up comment for ceph_count_locks() as to which lock to hold (Sage Weil) [1122174]
-- [block] rbd: Use min_t() to fix comparison of distinct pointer types warning (Sage Weil) [1122174]
-
-* Sun Sep 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-166.el7]
-- [scsi] megaraid_sas: Driver version update (06.805.06.00-rc1) (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: MFI MPT linked list corruption fix (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: N-drive primary raid level 1 load balancing (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Add module parameter to disable IRQ-CPU affinity hint (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Round down max sge supported by controller to power of two (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Host lock less mode to enabled asynchronous IO submission (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Extended VD support (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Firmware crash dump feature support (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Update threshold based reply post host index register (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Use writeq for 64bit pci write to avoid spinlock overhead (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Do not scan non syspd drives (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Version and Changelog update (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Fix reset_mutex leak (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Remove unused variables in megasas_instance (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Add missing initial call to megasas_get_ld_vf_affiliation() (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Fix LD/VF affiliation parsing (Tomas Henzl) [1088523]
-- [scsi] megaraid: Fail resume if MSI-X re-initialization failed (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Version and Changelog update (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Add Dell PowerEdge VRTX SR-IOV VF support (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Return leaked MPT frames to MPT frame pool (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Fix megasas_ioc_init_fusion (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Load correct raid context timeout (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: check return value for megasas_get_pd_list() (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas_fusion: Return correct error value in megasas_get_ld_map_info() (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas_fusion: correctly pass queue info pointer (Tomas Henzl) [1088523]
-- [scsi] megaraid: Use resource_size_t for PCI resources, not long (Tomas Henzl) [1088523]
-- [scsi] megaraid: minor cut and paste error fixed (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: fix a bug for 64 bit arches (Tomas Henzl) [1088523]
-
-* Fri Sep 19 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-165.el7]
-- [virt] virtio_scsi: fix various bad behavior on aborted requests (Paolo Bonzini) [1098506]
-- [x86] perf/intel: ignore CondChgd bit to avoid false NMI handling (Don Zickus) [1110264]
-- [lib] cmdline: add size unit t/p/e to memparse (Eric Sandeen) [1058608]
-- [virt] virtio_net: fix packets dropping issue (Marcel Apfelbaum) [1131733]
-- [pci] hotplug: Prevent NULL dereference during pciehp probe (Myron Stowe) [1133107]
-- [security] selinux: fix a problem with IPv6 traffic denials in selinux_ip_postroute() (Paul Moore) [1102641]
-- [platform] toshiba: re-enable acpi hotkeys after suspend to disk (Benjamin Tissoires) [1107814]
-- [ethernet] cxgb4: use remove handler as shutdown handler (Steve Best) [1123146]
-- [idle] intel_idle: Broadwell support (Steve Best) [1086453]
-- [s390] dasd: fix unresponsive device during format (Hendrik Brueckner) [1132370]
-- [s390] dasd: validate request size before building CCW/TCW request (Hendrik Brueckner) [1132386]
-- [s390] dasd: fix error recovery for alias devices during format (Hendrik Brueckner) [1132372]
-- [s390] pci: introduce lazy IOTLB flushing for DMA unmap (Hendrik Brueckner) [1132382]
-- [s390] dasd: use aliases for formatted devices during format (Hendrik Brueckner) [1132369]
-- [s390] dasd: fix list_del corruption during format (Hendrik Brueckner) [1132371]
-- [s390] con3215: fix hanging console issue (Hendrik Brueckner) [1132345]
-- [mm] hugetlb: improve page-fault scalability (Larry Woodman) [1087955]
-- [s390] spinlock: fix system hang with spin_retry <= 0 (Hendrik Brueckner) [1096329]
-- [s390] qeth: Accurate ethtool output (Hendrik Brueckner) [1088581]
-- [s390] smp: limit number of cpus in possible cpu mask (Hendrik Brueckner) [1103711]
-- [scsi] isci: fix needless ata reset escalation (David Milburn) [1074984]
-- [idle] intel_idle: close avn_cstates array with correct marker (Steve Best) [1048050]
-- [idle] intel_idle: Fixed C6 state on Avoton/Rangeley processors (Steve Best) [1048050]
-- [idle] intel_idle: Support Intel Atom Processor C2000 Product Family (Steve Best) [1048050]
-- [ethernet] i40e: Bump i40e/i40evf versions (Stefan Assmann) [1140994]
-- [ethernet] i40e: fix panic due to too-early Tx queue enable (Stefan Assmann) [1140994]
-- [ethernet] i40e: Fix an issue when PF reset fails (Stefan Assmann) [1140994]
-- [ethernet] i40e: make warning less verbose (Stefan Assmann) [1140994]
-- [ethernet] i40e: Tell OS link is going down when calling set_phy_config (Stefan Assmann) [1140994]
-- [ethernet] i40e: Remove unnecessary assignment (Stefan Assmann) [1140994]
-- [ethernet] i40e: Change wording to be more consistent (Stefan Assmann) [1140994]
-- [ethernet] i40e: Allow user to change link settings if link is down (Stefan Assmann) [1140994]
-- [ethernet] i40e: Add dual speed module support (Stefan Assmann) [1140994]
-- [mm] memory-failure: support use of a dedicated thread to handle SIGBUS(BUS_MCEERR_AO) (Rui Wang) [1108357]
-- [mm] memory-failure: don't let collect_procs() skip over processes for MF_ACTION_REQUIRED (Rui Wang) [1108357]
-- [mm] memory-failure: send right signal code to correct thread (Rui Wang) [1108357]
-- [crypto] qat: Use pci_enable_msix_exact() instead of pci_enable_msix() (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fix return value check in adf_chr_drv_create() (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fixed SKU1 dev issue (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Use hweight for bit counting (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Updated print outputs (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: change ae_num to ae_id (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: change slice->regions to slice->region (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: use min_t macro (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: remove unnecessary parentheses (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: remove unneeded header (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: checkpatch blank lines (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: remove unnecessary return codes (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: remove an unneeded cast (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fix error path crash when no firmware is present (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fixed new checkpatch warnings (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Updated Firmware Info Metadata (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fix random config build warnings (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fix build problem with O= (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Update to makefiles (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT DH895xcc accelerator (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT accelengine part of fw loader (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT ucode part of fw loader (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT crypto interface (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT FW interface (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT transport code (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT driver framework (Nikolay Aleksandrov) [1091130]
-- [crypto] Sort drivers/crypto/Makefile (Nikolay Aleksandrov) [1091130]
-- [crypto] authenc: Export key parsing helper function (Nikolay Aleksandrov) [1091130]
-
-* Thu Sep 18 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-164.el7]
-- [drm] mst: rework payload table allocation to conform better (Dave Airlie) [1140440]
-- [drm] dp: Staticize a couple of DP utility functions (Dave Airlie) [1140440]
-- [drm] dp-mst-helper: Don't use uninitialized fields of the sideband message header (Dave Airlie) [1140440]
-- [drm] dp-mst-helper: Avoid reading uninitialized value (Dave Airlie) [1140440]
-- [drm] mst: fix build with debugfs off (Dave Airlie) [1140440]
-- [drm] i915: handle G45/GM45 pulse detection connected state (Dave Airlie) [1140440]
-- [drm] i915: take display port power domain in DP HPD handler (Dave Airlie) [1140440]
-- [drm] i915: only hook up hpd pulse for DP outputs (Dave Airlie) [1140440]
-- [drm] i915: lock around link status and link training (Dave Airlie) [1140440]
-- [drm] i915: mst topology dumper in debugfs (v0.2) (Dave Airlie) [1140440]
-- [drm] i915: add DP 1.2 MST support (v0.7) (Dave Airlie) [1140440]
-- [drm] i915: split some conversion functions out into separate functions (Dave Airlie) [1140440]
-- [drm] i915: check connector->encoder before using it (Dave Airlie) [1140440]
-- [drm] i915: split some DP modesetting code into a separate function (Dave Airlie) [1140440]
-- [drm] helper: add Displayport multi-stream helper (v0.6) (Dave Airlie) [1140440]
-- [drm] i915: rework digital port IRQ handling (v2) (Dave Airlie) [1140440]
-- [drm] add a path blob property (Dave Airlie) [1140440]
-- [drm] fb_helper: allow adding/removing connectors later (Dave Airlie) [1140440]
-- [drm] crtc: add interface to reinitialise the legacy mode group (Dave Airlie) [1140440]
-- [drm] i915: add some registers need for displayport MST support (Dave Airlie) [1140440]
-- [drm] i915: silence some scary new warnings (Rob Clark) [1128915]
-- [drm] upstream sync to v3.16.0 (Rob Clark) [1128915]
-- [drm] upstream sync to v3.15.0 (Rob Clark) [1101269]
-- [lib] Export interval_tree (Rob Clark) [1101269]
-- [mm] introduce helper function mem_init_print_info() to simplify mem_init() (Rob Clark) [1101269]
-- [kernel] bitops: Introduce a more generic BITMASK macro (Rob Clark) [1101269]
-- [drm] upstream sync to v3.14.2 (Rob Clark) [1119341]
-- [drm] upstream sync to v3.13.11 (Rob Clark) [1119339]
-- [fs] dcache: missing EXPORT_SYMBOL(simple_dname) (Rob Clark) [1119339]
-- [kernel] define u8, s8, u32, etc. limits (Rob Clark) [1119339]
-- [fs] consolidate the reassignments of ->f_op in ->open() instances (Rob Clark) [1119339]
-- [kernel] sched: replace INIT_COMPLETION with reinit_completion (Rob Clark) [1119339]
-
-* Wed Sep 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-163.el7]
-- [fs] gfs2: Request demote when a "try" flock fails (Robert S Peterson) [1132154]
-- [fs] gfs2: Change maxlen variables to size_t (Robert S Peterson) [1127251]
-- [fs] gfs2: Fix return value in slot_get() (Abhijith Das) [1026406]
-- [fs] gfs2: replace kmalloc - __vmalloc / memset 0 (Abhijith Das) [1026406]
-- [fs] gfs2: Fix kbuild test robot reported warning (Abhijith Das) [1026406]
-- [fs] gfs2: Move quota bitmap operations under their own lock (Abhijith Das) [1026406]
-- [fs] gfs2: Clean up quota slot allocation (Abhijith Das) [1026406]
-- [fs] gfs2: Only run logd and quota when mounted read/write (Abhijith Das) [1026406]
-- [fs] gfs2: Use RCU/hlist_bl based hash for quotas (Abhijith Das) [1026406]
-- [fs] gfs2: Remove gfs2_quota_change_host structure (Abhijith Das) [1026406]
-- [fs] gfs2: Use generic list_lru for quota (Abhijith Das) [1026406]
-- [fs] list: add a new LRU list type (Abhijith Das) [1026406]
-- [fs] gfs2: Rename quota qd_lru_lock qd_lock (Abhijith Das) [1026406]
-- [fs] gfs2: Use reflink for quota data cache (Abhijith Das) [1026406]
-- [fs] gfs2: Protect quota sync generation (Abhijith Das) [1026406]
-- [fs] gfs2: Inline qd_trylock into gfs2_quota_unlock (Abhijith Das) [1026406]
-- [fs] gfs2: Make two similar quota code fragments into a function (Abhijith Das) [1026406]
-- [fs] gfs2: Remove obsolete quota tunable (Abhijith Das) [1026406]
-- [fs] gfs2: Move gfs2_icbit_munge into quota.c (Abhijith Das) [1026406]
-
-* Wed Sep 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-162.el7]
-- [powerpc] powernv: Fix permissions on sysparam sysfs entries (Don Zickus) [1127366]
-- [pci] rphahp: Fix endianess issues (Don Zickus) [1127366]
-- [scripts] modpost: handle non ABS crc symbols (Don Zickus) [1127366]
-- [ethernet] ibmveth: Fix endian issues with MAC addresses (Don Zickus) [1127366]
-- [ethernet] ibmveth: Fix little endian issues (Don Zickus) [1127366]
-- [scsi] ibmvscsi: Fix little endian issues (Don Zickus) [1127366]
-- [powerpc] pseries: Add H_SET_MODE to change exception endianness (Don Zickus) [1127366]
-- [powerpc] Move precessing of MCE queued event out from syscall exit path (Don Zickus) [1127366]
-- [powerpc] of: compiles fixes (Don Zickus) [1127366]
-- [fs] pstore: Introduce new argument 'compressed' in the read callback (Don Zickus) [1127366]
-- [cpufreq] powernv: make local function static (Don Zickus) [1127366]
-- [cpufreq] powernv: Fix build failure on UP (Don Zickus) [1127366]
-- [cpufreq] powernv: Use cpufreq_frequency_table.driver_data to store pstate ids (Don Zickus) [1127366]
-- [cpufreq] powernv: cpufreq driver for powernv platform (Don Zickus) [1127366]
-- [fs] pstore: Add new argument 'compressed' in pstore write callback (Don Zickus) [1127366]
-- [powerpc] of: implement pci_address_to_pio as weak function (Don Zickus) [1127366]
-- [kernel] panic: Make panic_timeout configurable (Don Zickus) [1127366]
-- [pci] Add new pci_is_bridge() interface (Don Zickus) [1127366]
-- [pci] Rename pci_is_bridge() to pci_has_subordinate() (Don Zickus) [1127366]
-- [powerpc] of: device_node kobject lifecycle fixes (Don Zickus) [1127366]
-- [powerpc] Fix endianness of flash_block_list in rtas_flash (Don Zickus) [1127366]
-- [powerpc] powernv: Change BUG_ON to WARN_ON in elog code (Don Zickus) [1127366]
-- [powerpc] perf: Fix MMCR2 handling for EBB (Don Zickus) [1127366]
-- [powerpc] use _GLOBAL_TOC for memmove (Don Zickus) [1127366]
-- [powerpc] pseries: dynamically added OF nodes need to call of_node_init (Don Zickus) [1127366]
-- [powerpc] subpage_protect: Increase the array size to take care of 64TB (Don Zickus) [1127366]
-- [powerpc] Fix bugs in emulate_step() (Don Zickus) [1127366]
-- [powerpc] Disable doorbells on Power8 DD1.x (Don Zickus) [1127366]
-- [powerpc] perf: Never program book3s PMCs with values >= 0x80000000 (Don Zickus) [1127366]
-- [powerpc] perf: Clear MMCR2 when enabling PMU (Don Zickus) [1127366]
-- [powerpc] perf: Add PPMU_ARCH_207S define (Don Zickus) [1127366]
-- [powerpc] kvm: Remove redundant save of SIER AND MMCR2 (Don Zickus) [1127366]
-- [powerpc] powernv: Check for IRQHAPPENED before sleeping (Don Zickus) [1127366]
-- [powerpc] bpf: Fix the broken LD_VLAN_TAG_PRESENT test (Don Zickus) [1127366]
-- [powerpc] bpf: Use correct mask while accessing the VLAN tag (Don Zickus) [1127366]
-- [powerpc] module: Fix TOC symbol CRC (Don Zickus) [1127366]
-- [powerpc] powernv: Remove OPAL v1 takeover (Don Zickus) [1127366]
-- [powerpc] kprobes: Fix jprobes on ABI v2 (LE) (Don Zickus) [1127366]
-- [powerpc] ftrace: Use pr_fmt() to namespace error messages (Don Zickus) [1127366]
-- [powerpc] ftrace: Fix nop of modules on 64bit LE (ABIv2) (Don Zickus) [1127366]
-- [powerpc] ftrace: Fix inverted check of create_branch() (Don Zickus) [1127366]
-- [powerpc] ftrace: Fix typo in mask of opcode (Don Zickus) [1127366]
-- [powerpc] Add ppc_global_function_entry() (Don Zickus) [1127366]
-- [powerpc] Remove __arch_swab* (Don Zickus) [1127366]
-- [powerpc] Remove ancient DEBUG_SIG code (Don Zickus) [1127366]
-- [powerpc] kerenl: Enable EEH for IO accessors (Don Zickus) [1127366]
-- [powerpc] Avoid circular dependency with zImage. (Don Zickus) [1127366]
-- [powerpc] book3s: Fix some ABIv2 issues in machine check code (Don Zickus) [1127366]
-- [powerpc] book3s: Fix guest MC delivery mechanism to avoid soft lockups in guest (Don Zickus) [1127366]
-- [powerpc] book3s: Increment the mce counter during machine_check_early call (Don Zickus) [1127366]
-- [powerpc] book3s: Add stack overflow check in machine check handler (Don Zickus) [1127366]
-- [powerpc] book3s: Fix machine check handling for unhandled errors (Don Zickus) [1127366]
-- [powerpc] eeh: Dump PE location code (Don Zickus) [1127366]
-- [powerpc] powernv: Enable POWER8 doorbell IPIs (Don Zickus) [1127366]
-- [powerpc] powernv: Fix killed EEH event (Don Zickus) [1127366]
-- [powerpc] fix typo 'CONFIG_PMAC' (Don Zickus) [1127366]
-- [powerpc] fix typo 'CONFIG_PPC_CPU' (Don Zickus) [1127366]
-- [powerpc] powernv: Don't escalate non-existing frozen PE (Don Zickus) [1127366]
-- [powerpc] eeh: Report frozen parent PE prior to child PE (Don Zickus) [1127366]
-- [powerpc] eeh: Clear frozen state for child PE (Don Zickus) [1127366]
-- [powerpc] powernv: Reduce panic timeout from 180s to 10s (Don Zickus) [1127366]
-- [powerpc] xmon: avoid format string leaking to printk (Don Zickus) [1127366]
-- [powerpc] perf: Ensure all EBB register state is cleared on fork() (Don Zickus) [1127366]
-- [powerpc] powernv: Fix reading of OPAL msglog (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endianness problems in EEH (Don Zickus) [1127366]
-- [powerpc] powernv: Disable subcore for UP configs (Don Zickus) [1127366]
-- [powerpc] powernv: Include asm/smp.h to fix UP build failure (Don Zickus) [1127366]
-- [powerpc] Don't setup CPUs with bad status (Don Zickus) [1127366]
-- [powerpc] Add AT_HWCAP2 to indicate V.CRYPTO category support (Don Zickus) [1127366]
-- [powerpc] update comments for generic idle conversion (Don Zickus) [1127366]
-- [powerpc] powernv: Add missing include to LPC code (Don Zickus) [1127366]
-- [powerpc] powernv: Pass buffer size to OPAL validate flash call (Don Zickus) [1127366]
-- [powerpc] pseries: hcall functions are exported to modules, need _GLOBAL_TOC() (Don Zickus) [1127366]
-- [powerpc] Exported functions __clear_user and copy_page use r2 so need _GLOBAL_TOC() (Don Zickus) [1127366]
-- [powerpc] powernv: Set memory_block_size_bytes to 256MB (Don Zickus) [1127366]
-- [powerpc] Allow ppc_md platform hook to override memory_block_size_bytes (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endian issues in memory error handling code (Don Zickus) [1127366]
-- [powerpc] eeh: Skip eeh sysfs when eeh is disabled (Don Zickus) [1127366]
-- [powerpc] powernv: Provide debugfs access to the LPC bus via OPAL (Don Zickus) [1127366]
-- [powerpc] serial: Use saner flags when creating legacy ports (Don Zickus) [1127366]
-- [powerpc] Add cpu family documentation (Don Zickus) [1127366]
-- [powerpc] xmon: Fix up xmon format strings (Don Zickus) [1127366]
-- [powerpc] powernv: Add calls to support little endian host (Don Zickus) [1127366]
-- [powerpc] Document sysfs DSCR interface (Don Zickus) [1127366]
-- [powerpc] Fix regression of per-CPU DSCR setting (Don Zickus) [1127366]
-- [powerpc] Split __SYSFS_SPRSETUP macro (Don Zickus) [1127366]
-- [powerpc] fadump: Cleaning up inconsistent NULL checks (Don Zickus) [1127366]
-- [powerpc] powernv: Add support for POWER8 split core on powernv (Don Zickus) [1127366]
-- [powerpc] kvm/book3s_hv: Use threads_per_subcore in KVM (Don Zickus) [1127366]
-- [powerpc] Check cpu_thread_in_subcore() in __cpu_up() (Don Zickus) [1127366]
-- [powerpc] Add threads_per_subcore (Don Zickus) [1127366]
-- [powerpc] powernv: Make it possible to skip the IRQHAPPENED check in power7_nap() (Don Zickus) [1127366]
-- [powerpc] kvm/book3s_hv: Rework the secondary inhibit code (Don Zickus) [1127366]
-- [powerpc] numa: Enable CONFIG_HAVE_MEMORYLESS_NODES (Don Zickus) [1127366]
-- [powerpc] numa: Enable USE_PERCPU_NUMA_NODE_ID (Don Zickus) [1127366]
-- [powerpc] Fix 64 bit builds with binutils 2.24 (Don Zickus) [1127366]
-- [powerpc] pci: Use pci_is_bridge() to simplify code (Don Zickus) [1127366]
-- [powerpc] module: Fix stubs for BE (Don Zickus) [1127366]
-- [powerpc] Clear ELF personality flag if ELFv2 is not requested (Don Zickus) [1127366]
-- [powerpc] Fix smp_processor_id() in preemptible splat in set_breakpoint (Don Zickus) [1127366]
-- [powerpc] Drop return value from set_breakpoint as it is unused (Don Zickus) [1127366]
-- [powerpc] Remove non-uapi linkage.h export (Don Zickus) [1127366]
-- [powerpc] irq work racing with timer interrupt can result in timer interrupt hang (Don Zickus) [1127366]
-- [powerpc] mm: use macro PGTABLE_EADDR_SIZE instead of digital (Don Zickus) [1127366]
-- [powerpc] le: Show the endianess of the LPAR under PowerVM (Don Zickus) [1127366]
-- [powerpc] Use 64k io pages when we never see an HEA (Don Zickus) [1127366]
-- [powerpc] use libfdt accessors for header data (Don Zickus) [1127366]
-- [powerpc] memcpy optimization for 64bit LE (Don Zickus) [1127366]
-- [powerpc] tm: Add checking to treclaim/trechkpt (Don Zickus) [1127366]
-- [powerpc] tm: Remove unnecessary r1 save (Don Zickus) [1127366]
-- [powerpc] powernv: Implement ppc_md.get_proc_freq() (Don Zickus) [1127366]
-- [cpuidle] powernv: Remove redundant cpuidle_idle_call() (Don Zickus) [1127366]
-- [powerpc] powernv: Framework to show the correct clock in /proc/cpuinfo (Don Zickus) [1127366]
-- [powerpc] powernv: Return secondary CPUs to firmware before FW update (Don Zickus) [1127366]
-- [powerpc] boot: Add support for 64bit little endian wrapper (Don Zickus) [1127366]
-- [powerpc] boot: Add a global entry point for pseries (Don Zickus) [1127366]
-- [powerpc] boot: Modify entry point for 64bit (Don Zickus) [1127366]
-- [powerpc] boot: Define a routine to enter prom (Don Zickus) [1127366]
-- [powerpc] boot: Add little endian support to elf utils (Don Zickus) [1127366]
-- [powerpc] boot: Add 64bit and little endian support to addnote (Don Zickus) [1127366]
-- [powerpc] boot: Define byteswapping routines for little endian (Don Zickus) [1127366]
-- [powerpc] boot: Fix compile warning in 64bit (Don Zickus) [1127366]
-- [powerpc] boot: Define typedef ihandle as u32 (Don Zickus) [1127366]
-- [powerpc] boot: Rework of_claim() to make it 64bit friendly (Don Zickus) [1127366]
-- [powerpc] boot: Add PROM_ERROR define in oflib (Don Zickus) [1127366]
-- [powerpc] boot: Add byteswapping routines in oflib (Don Zickus) [1127366]
-- [powerpc] boot: Use prom_arg_t in oflib (Don Zickus) [1127366]
-- [powerpc] boot: Use a common prom_args struct in oflib (Don Zickus) [1127366]
-- [powerpc] boot: Fix do_div for 64bit wrapper (Don Zickus) [1127366]
-- [powerpc] prom: Stop scanning dev-tree for fdump early (Don Zickus) [1127366]
-- [powerpc] powernv: Don't use pe->pbus to get the domain number (Don Zickus) [1127366]
-- [powerpc] powernv: Fix VFIO support with PHB3 (Don Zickus) [1127366]
-- [powerpc] powernv: Missed IOMMU table type (Don Zickus) [1127366]
-- [powerpc] eeh: Can't recover from non-PE-reset case (Don Zickus) [1127366]
-- [powerpc] pci: Mask linkDown on resetting PCI bus (Don Zickus) [1127366]
-- [powerpc] powernv: Reset root port in firmware (Don Zickus) [1127366]
-- [powerpc] pseries: Fix overwritten PE state (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endless reporting frozen PE (Don Zickus) [1127366]
-- [powerpc] eeh: No hotplug on permanently removed dev (Don Zickus) [1127366]
-- [powerpc] eeh: Allow to disable EEH (Don Zickus) [1127366]
-- [powerpc] eeh: Cleanup EEH subsystem variables (Don Zickus) [1127366]
-- [powerpc] eeh: Use cached capability for log dump (Don Zickus) [1127366]
-- [powerpc] eeh: Cleanup eeh_gather_pci_data() (Don Zickus) [1127366]
-- [powerpc] eeh: Avoid I/O access during PE reset (Don Zickus) [1127366]
-- [powerpc] powernv: Use EEH PCI config accessors (Don Zickus) [1127366]
-- [powerpc] eeh: Block PCI-CFG access during PE reset (Don Zickus) [1127366]
-- [powerpc] eeh: EEH_PE_ISOLATED not reflect HW state (Don Zickus) [1127366]
-- [powerpc] powernv: Remove fields in PHB diag-data dump (Don Zickus) [1127366]
-- [powerpc] powernv: Move PNV_EEH_STATE_ENABLED around (Don Zickus) [1127366]
-- [powerpc] powernv: Remove PNV_EEH_STATE_REMOVED (Don Zickus) [1127366]
-- [powerpc] eeh: Remove EEH_PE_PHB_DEAD (Don Zickus) [1127366]
-- [powerpc] pseries: Protect remove_memory() with device hotplug lock (Don Zickus) [1127366]
-- [powerpc] Fix error return in rtas_flash module init (Don Zickus) [1127366]
-- [powerpc] Bump BOOT_COMMAND_LINE_SIZE to 2048 (Don Zickus) [1127366]
-- [powerpc] Bump COMMAND_LINE_SIZE to 2048 (Don Zickus) [1127366]
-- [powerpc] Rename duplicate COMMAND_LINE_SIZE define (Don Zickus) [1127366]
-- [powerpc] mm: Fix tlbie to add AVAL fields for 64K pages (Don Zickus) [1127366]
-- [powerpc] powernv: Fix little endian issues in OPAL dump code (Don Zickus) [1127366]
-- [powerpc] powernv: Create OPAL sglist helper functions and fix endian issues (Don Zickus) [1127366]
-- [powerpc] powernv: Fix little endian issues in OPAL error log code (Don Zickus) [1127366]
-- [powerpc] powernv: Fix little endian issues with opal_do_notifier calls (Don Zickus) [1127366]
-- [powerpc] powernv: Remove some OPAL function declaration duplication (Don Zickus) [1127366]
-- [powerpc] powernv: Use uint64_t instead of size_t in OPAL APIs (Don Zickus) [1127366]
-- [powerpc] powernv: Release the refcount for pci_dev (Don Zickus) [1127366]
-- [powerpc] powernv: Reduce multi-hit of iommu_add_device() (Don Zickus) [1127366]
-- [powerpc] powernv: Fix little endian issues in OPAL flash code (Don Zickus) [1127366]
-- [powerpc] powernv: Fix kexec races going back to OPAL (Don Zickus) [1127366]
-- [powerpc] powernv: Check sysparam size before creation (Don Zickus) [1127366]
-- [powerpc] powernv: Fix typos in sysparam code (Don Zickus) [1127366]
-- [powerpc] powernv: Check sysfs size before copying (Don Zickus) [1127366]
-- [powerpc] powernv: Use ssize_t for sysparam return values (Don Zickus) [1127366]
-- [powerpc] powernv: Fix sysparam sysfs error handling (Don Zickus) [1127366]
-- [powerpc] Fix Oops in rtas_stop_self() (Don Zickus) [1127366]
-- [powerpc] Export flush_icache_range (Don Zickus) [1127366]
-- [powerpc] Build little endian ppc64 kernel with ABIv2 (Don Zickus) [1127366]
-- [powerpc] ftrace: Fix ABIv2 issues with __ftrace_make_call (Don Zickus) [1127366]
-- [powerpc] ftrace: Use module loader helpers to parse trampolines (Don Zickus) [1127366]
-- [powerpc] modules: Create module_trampoline_target() (Don Zickus) [1127366]
-- [powerpc] modules: Create is_module_trampoline() (Don Zickus) [1127366]
-- [powerpc] kprobes: Fix ABIv2 issues with kprobe_lookup_name (Don Zickus) [1127366]
-- [powerpc] ftrace_caller, _mcount is exported to modules so needs _GLOBAL_TOC() (Don Zickus) [1127366]
-- [powerpc] Add _GLOBAL_TOC for ABIv2 assembly functions exported to modules (Don Zickus) [1127366]
-- [powerpc] modules: implement stubs for ELFv2 ABI (Don Zickus) [1127366]
-- [powerpc] modules: skip r2 setup for ELFv2 (Don Zickus) [1127366]
-- [powerpc] modules: use r12 for stub jump address (Don Zickus) [1127366]
-- [powerpc] modules: change r2 save/restore offset for ELFv2 ABI (Don Zickus) [1127366]
-- [powerpc] modules: comment about de-dotifying symbols when using the ELFv2 ABI (Don Zickus) [1127366]
-- [powerpc] Handle new ELFv2 module relocations (Don Zickus) [1127366]
-- [powerpc] Fix up TOC. for modules (Don Zickus) [1127366]
-- [powerpc] module: handle MODVERSION for .TOC (Don Zickus) [1127366]
-- [powerpc] EXPORT_SYMBOL(.TOC.) (Don Zickus) [1127366]
-- [powerpc] modules implement R_PPC64_TOCSAVE relocation (Don Zickus) [1127366]
-- [powerpc] make module stub code endian independent (Don Zickus) [1127366]
-- [powerpc] Fix ABIv2 issue with dereference_function_descriptor (Don Zickus) [1127366]
-- [powerpc] Fix SMP issues with ppc64le ABIv2 (Don Zickus) [1127366]
-- [powerpc] tracing: TRACE_WITH_FRAME_BUFFER creates invalid stack frames (Don Zickus) [1127366]
-- [powerpc] tm: Fix GOT save offset for ABIv2 (Don Zickus) [1127366]
-- [powerpc] tm: Use STK_PARAM (Don Zickus) [1127366]
-- [powerpc] Fix unsafe accesses to parameter area in ELFv2 (Don Zickus) [1127366]
-- [powerpc] Fix ABIv2 issues with stack offsets in assembly code (Don Zickus) [1127366]
-- [powerpc] Fix kernel thread creation on ABIv2 (Don Zickus) [1127366]
-- [powerpc] Fix branch patching code for ABIv2 (Don Zickus) [1127366]
-- [powerpc] Use ppc_function_entry instead of open coding it (Don Zickus) [1127366]
-- [powerpc] Add ABIv2 support to ppc_function_entry (Don Zickus) [1127366]
-- [powerpc] Ignore .TOC. relocations (Don Zickus) [1127366]
-- [powerpc] ABIv2 function calls must place target address in r12 (Don Zickus) [1127366]
-- [powerpc] Remove function descriptors and dot symbols on new ABI (Don Zickus) [1127366]
-- [powerpc] Create DOTSYM to wrap dot symbol usage (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Introduce hypervisor call H_GET_TCE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add support for DABRX register on POWER7 (Don Zickus) [1127366]
-- [powerpc] Remove dot symbol usage in exception macros (Don Zickus) [1127366]
-- [powerpc] Remove _INIT_GLOBAL(), _STATIC() and _INIT_STATIC() (Don Zickus) [1127366]
-- [powerpc] Remove some unnecessary uses of _GLOBAL() and _STATIC() (Don Zickus) [1127366]
-- [powerpc] Don't use a function descriptor for system call table (Don Zickus) [1127366]
-- [powerpc] Remove superflous function descriptors in assembly only code (Don Zickus) [1127366]
-- [powerpc] No need to use dot symbols when branching to a function (Don Zickus) [1127366]
-- [powerpc] Don't build assembly files with ABIv2 (Don Zickus) [1127366]
-- [powerpc] Don't try to set LPCR unless we're in hypervisor mode (Don Zickus) [1127366]
-- [powerpc] le: Avoid creatng R_PPC64_TOCSAVE relocations for modules (Don Zickus) [1127366]
-- [powerpc] opal: Add missing include (Don Zickus) [1127366]
-- [powerpc] Convert last uses of __FUNCTION__ to __func__ (Don Zickus) [1127366]
-- [powerpc] Add lq/stq emulation (Don Zickus) [1127366]
-- [powerpc] powernv: Add invalid OPAL call (Don Zickus) [1127366]
-- [powerpc] powernv: Add OPAL message log interface (Don Zickus) [1127366]
-- [powerpc] book3s: Fix mc_recoverable_range buffer overrun issue (Don Zickus) [1127366]
-- [powerpc] Remove dead code in sycall entry (Don Zickus) [1127366]
-- [powerpc] Use of_node_init() for the fakenode in msi_bitmap.c (Don Zickus) [1127366]
-- [powerpc] of: Make device nodes kobjects so they show up in sysfs (Don Zickus) [1127366]
-- [powerpc] mm: NUMA pte should be handled via slow path in get_user_pages_fast() (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endian issues with sensor code (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endian issues with OPAL async code (Don Zickus) [1127366]
-- [powerpc] powernv: Add opal_notifier_unregister() and export to modules (Don Zickus) [1127366]
-- [powerpc] ppc64: Do not turn AIL (reloc-on interrupts) too early (Don Zickus) [1127366]
-- [powerpc] ppc64: Gracefully handle early interrupts (Don Zickus) [1127366]
-- [powerpc] prom: early_init_dt_scan_cpus() updates cpu features only once (Don Zickus) [1127366]
-- [powerpc] Make boot_cpuid common between 32 and 64-bit (Don Zickus) [1127366]
-- [powerpc] Adjust CPU_FTR_SMT on all platforms (Don Zickus) [1127366]
-- [powerpc] le: Enable RTAS events support (Don Zickus) [1127366]
-- [powerpc] book3s: Fix CFAR clobbering issue in machine check handler (Don Zickus) [1127366]
-- [powerpc] compat: 32-bit little endian machine name is ppcle, not ppc (Don Zickus) [1127366]
-- [powerpc] le: Big endian arguments for ppc_rtas() (Don Zickus) [1127366]
-- [powerpc] mm: Make sure a local_irq_disable prevent a parallel THP split (Don Zickus) [1127366]
-- [powerpc] Rate-limit users spamming kernel log buffer (Don Zickus) [1127366]
-- [powerpc] perf: Fix handling of L3 events with bank == 1 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Work around POWER8 performance monitor bugs (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Make sure we don't miss dirty pages (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add transactional memory support (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix dirty map for hugepages (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix check for running inside guest in global_invalidates() (Don Zickus) [1127366]
-- [powerpc] powernv: Reset PHB in kdump kernel (Don Zickus) [1127366]
-- [powerpc] eeh: Make the delay for PE reset unified (Don Zickus) [1127366]
-- [virt] kvm/ppc: Clear the runlatch bit of a vcpu before napping (Don Zickus) [1127366]
-- [virt] kvm/ppc: Set the runlatch bit of a CPU just before starting guest (Don Zickus) [1127366]
-- [powerpc] powernv: Set the runlatch bits correctly for offline cpus (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Save/restore host PMU registers that are new in POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix decrementer timeouts with non-zero TB offset (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Don't use kvm_memslots() in real mode (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Return ENODEV error rather than EIO (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Trim top 4 bits of physical address in RTAS code (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add get/set_one_reg for new TM state (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Basic little-endian guest support (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix register usage when loading/saving VRSAVE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Cope with doorbell interrupts (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add new state for transactional memory (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Prepare for host using hypervisor doorbells (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Handle new LPCR bits on POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Handle guest using doorbells for IPIs (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Consolidate code that checks reason for wake from nap (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Implement architecture compatibility modes for POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add handler for HV facility unavailable (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Flush the correct number of TLB sets on POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Context-switch new POWER8 SPRs (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Align physical and virtual CPU thread numbers (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Don't set DABR on POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - MMIO emulation support for little endian guests (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Use load/store_fp_state functions in HV guest entry/exit (Don Zickus) [1127366]
-- [virt] kvm/ppc: Store FP/VSX/VMX state in thread_fp/vr_state structures (Don Zickus) [1127366]
-- [virt] kvm/ppc: Use load_fp/vr_state rather than load_up_fpu/altivec (Don Zickus) [1127366]
-- [powerpc] powernv/eeh: Add buffer for P7IOC hub error data (Don Zickus) [1127366]
-- [powerpc] powernv: Remove get/set_rtc_time when they are not present (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Take SRCU read lock around kvm_read_guest() call (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Make tbacct_lock irq-safe (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Refine barriers in guest entry/exit (Don Zickus) [1127366]
-- [virt] kvm: Add struct kvm arg to memslot APIs (Don Zickus) [1127366]
-- [powerpc] perf: Define perf_event_print_debug() to print PMU register values (Don Zickus) [1127366]
-- [powerpc] perf: Make some new raw event codes available in sysfs (Don Zickus) [1127366]
-- [powerpc] powernv: Enable fetching of platform sensor data (Don Zickus) [1127366]
-- [powerpc] powernv: Enable reading and updating of system parameters (Don Zickus) [1127366]
-- [powerpc] powernv: Infrastructure to support OPAL async completion (Don Zickus) [1127366]
-- [powerpc] powernv Platform dump interface (Don Zickus) [1127366]
-- [powerpc] powernv: Read OPAL error log and export it through sysfs (Don Zickus) [1127366]
-- [powerpc] Add "force config cmd line" Kconfig option (Don Zickus) [1127366]
-- [powerpc] pseries: Use remove_memory() to remove memory (Don Zickus) [1127366]
-- [powerpc] book3s: Recover from MC in sapphire on SCOM read via MMIO (Don Zickus) [1127366]
-- [powerpc] pseries: Don't try to register pseries cpu hotplug on non-pseries (Don Zickus) [1127366]
-- [powerpc] Fix xmon disassembler for little-endian (Don Zickus) [1127366]
-- [powerpc] Revert c6102609 and replace it with the correct fix for vio dma mask setting (Don Zickus) [1127366]
-- [powerpc] Kill CONFIG_MTD_PARTITIONS (Don Zickus) [1127366]
-- [powerpc] Align p_dyn, p_rela and p_st symbols (Don Zickus) [1127366]
-- [powerpc] powernv: Add OPAL call to resync timebase on wakeup (Don Zickus) [1127366]
-- [powerpc] powernv: Add context management for Fast Sleep (Don Zickus) [1127366]
-- [powerpc] Split timer_interrupt() into timer handling and interrupt handling routines (Don Zickus) [1127366]
-- [powerpc] Implement tick broadcast IPI as a fixed IPI message (Don Zickus) [1127366]
-- [powerpc] Free up the slot of PPC_MSG_CALL_FUNC_SINGLE IPI message (Don Zickus) [1127366]
-- [powerpc] eeh: Fixup the brown paperbag fallout of the "cleanup" (Don Zickus) [1127366]
-- [powerpc] eeh: Kill another abuse of irq_desc (Don Zickus) [1127366]
-- [powerpc] irq: Use generic_handle_irq (Don Zickus) [1127366]
-- [powerpc] powernv: Fix indirect XSCOM unmangling (Don Zickus) [1127366]
-- [powerpc] powernv: Fix opal_xscom_{read, write} prototype (Don Zickus) [1127366]
-- [powerpc] powernv: Refactor PHB diag-data dump (Don Zickus) [1127366]
-- [powerpc] powernv: Dump PHB diag-data immediately (Don Zickus) [1127366]
-- [powerpc] Increase stack redzone for 64-bit userspace to 512 bytes (Don Zickus) [1127366]
-- [powerpc] ftrace: bugfix for test_24bit_addr (Don Zickus) [1127366]
-- [powerpc] crashdump: Fix page frame number check in copy_oldmem_page (Don Zickus) [1127366]
-- [powerpc] le: Ensure that the 'stop-self' RTAS token is handled correctly (Don Zickus) [1127366]
-- [powerpc] eeh: Disable EEH on reboot (Don Zickus) [1127366]
-- [powerpc] eeh: Cleanup on eeh_subsystem_enabled (Don Zickus) [1127366]
-- [powerpc] powernv: Rework EEH reset (Don Zickus) [1127366]
-- [powerpc] powernv: Add iommu DMA bypass support for IODA2 (Don Zickus) [1127366]
-- [powerpc] Fix endian issues in kexec and crash dump code (Don Zickus) [1127366]
-- [powerpc] perf: Configure BHRB filter before enabling PMU interrupts (Don Zickus) [1127366]
-- [powerpc] pseries: Select ARCH_RANDOM on pseries (Don Zickus) [1127366]
-- [powerpc] perf: Add Power8 cache & TLB events (Don Zickus) [1127366]
-- [powerpc] relocate fix relocate processing in LE mode (Don Zickus) [1127366]
-- [powerpc] hugetlb: Replace __get_cpu_var with get_cpu_var (Don Zickus) [1127366]
-- [powerpc] Make sure "cache" directory is removed when offlining cpu (Don Zickus) [1127366]
-- [powerpc] powernv/cpuidle: Back-end cpuidle driver for powernv platform (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: smt-snooze-delay cleanup (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Remove MAX_IDLE_STATE macro (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Make cpuidle-pseries backend driver a non-module (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Use cpuidle_register() for initialisation (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Move processor_idle.c to drivers/cpuidle (Don Zickus) [1127366]
-- [powerpc] numa: Fix decimal permissions (Don Zickus) [1127366]
-- [powerpc] Fix hw breakpoints on !HAVE_HW_BREAKPOINT configurations (Don Zickus) [1127366]
-- [powerpc] Implement arch_spin_is_locked() using arch_spin_value_unlocked() (Don Zickus) [1127366]
-- [powerpc] Add support for the optimised lockref implementation (Don Zickus) [1127366]
-- [powerpc] Kconfig: Make TM select VSX and VMX (Don Zickus) [1127366]
-- [powerpc] powernv: Call OPAL sync before kexec'ing (Don Zickus) [1127366]
-- [powerpc] eeh: Escalate error on non-existing PE (Don Zickus) [1127366]
-- [powerpc] eeh: Handle multiple EEH errors (Don Zickus) [1127366]
-- [powerpc] Fix races with irq_work (Don Zickus) [1127366]
-- [powerpc] Make add_system_ram_resources() __init (Don Zickus) [1127366]
-- [powerpc] add SATA_MV to ppc64_defconfig (Don Zickus) [1127366]
-- [powerpc] powernv: Increase candidate fw image size (Don Zickus) [1127366]
-- [powerpc] iommu: Don't detach device without IOMMU group (Don Zickus) [1127366]
-- [powerpc] eeh: Hotplug improvement (Don Zickus) [1127366]
-- [powerpc] eeh: Call opal_pci_reinit() on powernv for restoring config space (Don Zickus) [1127366]
-- [powerpc] eeh: Add restore_config operation (Don Zickus) [1127366]
-- [powerpc] powernv: Remove unnecessary assignment (Don Zickus) [1127366]
-- [powerpc] Delete non-required instances of include <linux/init.h> (Don Zickus) [1127366]
-- [powerpc] Add vr save/restore functions (Don Zickus) [1127366]
-- [powerpc] Check return value of instance-to-package OF call (Don Zickus) [1127366]
-- [powerpc] add barrier after writing kernel PTE (Don Zickus) [1127366]
-- [powerpc] introduce macro LOAD_REG_ADDR_PIC (Don Zickus) [1127366]
-- [virt] kvm/ppc: define a linux pte lookup function (Don Zickus) [1127366]
-- [powerpc] Fix endian issues in power7/8 machine check handler (Don Zickus) [1127366]
-- [powerpc] iommu: Update the generic code to use dynamic iommu page sizes (Don Zickus) [1127366]
-- [powerpc] iommu: Add it_page_shift field to determine iommu page size (Don Zickus) [1127366]
-- [powerpc] iommu: Update constant names to reflect their hardcoded page size (Don Zickus) [1127366]
-- [powerpc] powernv: move iommu_add_device earlier (Don Zickus) [1127366]
-- [powerpc] vfio: Enable on pSeries platform (Don Zickus) [1127366]
-- [powerpc] vfio: Implement IOMMU driver for VFIO (Don Zickus) [1127366]
-- [powerpc] vfio: Enable on PowerNV platform (Don Zickus) [1127366]
-- [powerpc] Fix "attempt to move .org backwards" error (Don Zickus) [1127366]
-- [powerpc] Fix alignment of secondary cpu spin vars (Don Zickus) [1127366]
-- [powerpc] Align p_end (Don Zickus) [1127366]
-- [powerpc] Make 64-bit non-VMX __copy_tofrom_user bi-endian (Don Zickus) [1127366]
-- [powerpc] Make unaligned accesses endian-safe for powerpc (Don Zickus) [1127366]
-- [powerpc] Fix bad stack check in exception entry (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Don't abuse host r2 in exit path (Don Zickus) [1127366]
-- [powerpc] Full barrier for smp_mb__after_unlock_lock() (Don Zickus) [1127366]
-- [powerpc] powernv: Fix OPAL LPC access in Little Endian (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endian issue in opal_xscom_read (Don Zickus) [1127366]
-- [powerpc] pseries: Fix endian issues in /proc/ppc64/lparcfg (Don Zickus) [1127366]
-- [powerpc] Fix up the kdump base cap to 128M (Don Zickus) [1127366]
-- [powerpc] Fix PTE page address mismatch in pgtable ctor/dtor (Don Zickus) [1127366]
-- [powerpc] powernv: Get FSP memory errors and plumb into memory poison infrastructure (Don Zickus) [1127366]
-- [powerpc] powernv: Add config option for hwpoisoning (Don Zickus) [1127366]
-- [powerpc] Dynamically allocate slb_shadow from memblock (Don Zickus) [1127366]
-- [powerpc] Make slb_shadow a local (Don Zickus) [1127366]
-- [powerpc] Add real mode cache inhibited IO accessors (Don Zickus) [1127366]
-- [powerpc] Increase EEH recovery timeout for SR-IOV (Don Zickus) [1127366]
-- [powerpc] eeh: Output PHB diag-data (Don Zickus) [1127366]
-- [powerpc] powernv: Move PHB-diag dump functions around (Don Zickus) [1127366]
-- [powerpc] powernv: Move SG list structure to header file (Don Zickus) [1127366]
-- [powerpc] powernv: Infrastructure to read opal messages in generic format (Don Zickus) [1127366]
-- [powerpc] powernv: Machine check exception handling (Don Zickus) [1127366]
-- [powerpc] powernv: Remove machine check handling in OPAL (Don Zickus) [1127366]
-- [powerpc] book3s: Queue up and process delayed MCE events (Don Zickus) [1127366]
-- [powerpc] book3s: Decode and save machine check event (Don Zickus) [1127366]
-- [powerpc] book3s: Flush SLB/TLBs if we get SLB/TLB machine check errors on power8 (Don Zickus) [1127366]
-- [powerpc] book3s: Flush SLB/TLBs if we get SLB/TLB machine check errors on power7 (Don Zickus) [1127366]
-- [powerpc] book3s: Add flush_tlb operation in cpu_spec (Don Zickus) [1127366]
-- [powerpc] book3s: Introduce a early machine check hook in cpu_spec (Don Zickus) [1127366]
-- [powerpc] book3s: Return from interrupt if coming from evil context (Don Zickus) [1127366]
-- [powerpc] book3s: handle machine check in Linux host (Don Zickus) [1127366]
-- [powerpc] book3s: Introduce exclusive emergency stack for machine check exception (Don Zickus) [1127366]
-- [powerpc] book3s: Split the common exception prolog logic into two section (Don Zickus) [1127366]
-- [powerpc] powernv: Replace CONFIG_POWERNV_MSI with just CONFIG_PPC_POWERNV (Don Zickus) [1127366]
-- [powerpc] pseries: CONFIG_PSERIES_MSI should depend on PPC_PSERIES (Don Zickus) [1127366]
-- [powerpc] kernel/sysfs: Cleanup set up macros for PMC/non-PMC SPRs (Don Zickus) [1127366]
-- [powerpc] Make irq_stat.timers_irqs counting more specific (Don Zickus) [1127366]
-- [powerpc] purge all the prefetched instructions for the coherent icache flush (Don Zickus) [1127366]
-- [powerpc] kernel: remove useless code which related with 'max_cpus' (Don Zickus) [1127366]
-- [powerpc] boot: Ignore .dtb files (Don Zickus) [1127366]
-- [powerpc] Clean up panic_timeout usage (Don Zickus) [1127366]
-- [powerpc] kernel: Use 12.12s instead of 12s to avoid memory overflow (Don Zickus) [1127366]
-- [powerpc] kvm: optimize "sc 1" as fast return (Don Zickus) [1127366]
-- [powerpc] pseries: Fix SMP=n build of rng.c (Don Zickus) [1127366]
-- [powerpc] Make cpu_to_chip_id() available when SMP=n (Don Zickus) [1127366]
-- [powerpc] vio: Fix a dma_mask issue of vio (Don Zickus) [1127366]
-- [powerpc] Only print PACATMSCRATCH in oops when TM is active (Don Zickus) [1127366]
-- [powerpc] pseries: Duplicate dtl entries sometimes sent to userspace (Don Zickus) [1127366]
-- [powerpc] Remove a few lines of oops output (Don Zickus) [1127366]
-- [powerpc] Print DAR and DSISR on machine check oopses (Don Zickus) [1127366]
-- [powerpc] Fix __get_user_pages_fast() irq handling (Don Zickus) [1127366]
-- [powerpc] eeh: More accurate log (Don Zickus) [1127366]
-- [powerpc] eeh: Enable PCI_COMMAND_MASTER for PCI bridges (Don Zickus) [1127366]
-- [powerpc] Add pseries_le_defconfig (Don Zickus) [1127366]
-- [kernel] uprobes/powerpc: Kill arch_uprobe->ainsn (Don Zickus) [1127366]
-- [powerpc] kvm: fix rare but potential deadlock scene (Don Zickus) [1127366]
-- [powerpc] add missing explicit OF includes for ppc (Don Zickus) [1127366]
-- [powerpc] powernv: Add support for indirect XSCOM via debugfs (Don Zickus) [1127366]
-- [powerpc] scom: Improve debugfs interface (Don Zickus) [1127366]
-- [powerpc] scom: Enable 64-bit addresses (Don Zickus) [1127366]
-- [powerpc] boot: Properly handle the base "of" boot wrapper (Don Zickus) [1127366]
-- [powerpc] bpf: Support MOD operation (Don Zickus) [1127366]
-- [powerpc] bpf: Fix DIVWU instruction opcode (Don Zickus) [1127366]
-- [powerpc] tm: Remove interrupt disable in __switch_to() (Don Zickus) [1127366]
-- [powerpc] nvram: Scan partitions only once (Don Zickus) [1127366]
-- [powerpc] powernv: Code update interface (Don Zickus) [1127366]
-- [powerpc] powernv: Create opal sysfs directory (Don Zickus) [1127366]
-- [powerpc] Add VMX optimised xor for RAID5 (Don Zickus) [1127366]
-- [powerpc] kexec: kexec_sequence() is in misc_64.S (Don Zickus) [1127366]
-- [powerpc] Use 32 bit loads and stores when operating on condition register values (Don Zickus) [1127366]
-- [powerpc] Enable multipath modules on ppc64 and pseries (Don Zickus) [1127366]
-- [powerpc] pseries: Fix dedicated processor partition detection (Don Zickus) [1127366]
-- [powerpc] vio: use strcpy in modalias_show (Don Zickus) [1127366]
-- [powerpc] FA_DUMP depends on KEXEC (Don Zickus) [1127366]
-- [powerpc] Fix a typo in comments of va to pa conversion (Don Zickus) [1127366]
-- [powerpc] Move local setup.h declarations to arch includes (Don Zickus) [1127366]
-- [powerpc] Fix warnings for arch/powerpc/mm/numa.c (Don Zickus) [1127366]
-- [powerpc] boot: Don't change link address for OF-based platforms (Don Zickus) [1127366]
-- [powerpc] Add includes to fix powernv/rng.c build (Don Zickus) [1127366]
-- [powerpc] Fix PPC_EMULATED_STATS build break with sync patch (Don Zickus) [1127366]
-- [powerpc] select ARCH_MIGHT_HAVE_PC_PARPORT (Don Zickus) [1127366]
-- [powerpc] Don't corrupt user registers on 32-bit (Don Zickus) [1127366]
-- [powerpc] kgdb: use DEFINE_PER_CPU to allocate kgdb's thread_info (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - drop is_hv_enabled (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Allow the HV and PR selection per virtual machine (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Support building HV and PR KVM as module (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - move PR related tracepoints to a separate header (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Add is_hv_enabled to kvmppc_ops (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Cleanup interrupt handling code (Don Zickus) [1127366]
-- [virt] kvm/ppc: Add kvmppc_ops callback (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Add a new config variable CONFIG_KVM_BOOK3S_HV_POSSIBLE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s/pr - Rename KVM_BOOK3S_PR to KVM_BOOK3S_PR_POSSIBLE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - move book3s_64_vio_hv.c into the main kernel binary (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - remove kvmppc_handler_highmem label (Don Zickus) [1127366]
-- [powerpc] export debug registers save function for KVM (Don Zickus) [1127366]
-- [powerpc] move debug registers in a structure (Don Zickus) [1127366]
-- [powerpc] remove unnecessary line continuations (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix vcore leak (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Better handling of exceptions that happen in real mode (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Reduce number of shadow PTEs invalidated by MMU notifiers (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Mark pages accessed, and dirty if being written (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Use mmu_notifier_retry() in kvmppc_mmu_map_page() (Don Zickus) [1127366]
-- [virt] kvm/ppc: Book3S PR - Better handling of host-side read-only pages (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Move skip-interrupt handlers to common code (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Allocate kvm_vcpu structs from kvm_vcpu_cache (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Make HPT accesses and updates SMP-safe (Don Zickus) [1127366]
-- [virt] kvm/ppc: Book3S PR - Correct errors in H_ENTER implementation (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Handle PP0 page-protection bit in guest HPTEs (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Use 64k host pages where possible (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Allow guest to use 64k pages (Don Zickus) [1127366]
-- [virt] kvm/ppc: Book3S PR - Keep volatile reg values in vcpu rather than shadow_vcpu (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Don't crash host on unknown guest interrupt (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Support POWER6 compatibility mode on POWER7 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add support for guest Program Priority Register (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Store LPCR value for each virtual core (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Avoid unbalanced increments of VPA yield count (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Pull out interrupt-reading code into a subroutine (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Restructure kvmppc_hv_entry to be a subroutine (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Implement H_CONFER (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Add GET/SET_ONE_REG interface for VRSAVE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Implement timebase offset for guests (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Save/restore SIAR and SDAR along with other PMU registers (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Reserve POWER8 space in get/set_one_reg (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Rework kvmppc_mmu_book3s_64_xlate() (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Make instruction fetch fallback work for system calls (Don Zickus) [1127366]
-- [powerpc] pseries: Move plpar_wrapper.h to powerpc common include/asm location (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Remove dependency of pseries.h file (Don Zickus) [1127366]
-- [virt] kvm/ppc: use anon_inode_getfd() with O_CLOEXEC flag (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Load up SPRG3 register with guest value on guest entry (Don Zickus) [1127366]
-- [virt] kvm/ppc: Call trace_hardirqs_on before entry (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Allow negative offsets to real-mode hcall handlers (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Correct tlbie usage (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Invalidate SLB entries properly (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Allow guest to use 1TB segments (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Don't keep scanning HPTEG after we find a match (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Fix invalidation of SLB entry 0 on guest entry (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Fix proto-VSID calculations (Don Zickus) [1127366]
-- [powerpc] Remove the unneeded trigger of decrementer interrupt in decrementer_check_overflow (Don Zickus) [1127366]
-- [virt] kvm/ppc: fix imbalance srcu_read_[un]lock() (Don Zickus) [1127366]
-- [powerpc] Emulate sync instruction variants (Don Zickus) [1127366]
-- [powerpc] eeh: Reorder output messages (Don Zickus) [1127366]
-- [powerpc] scom: Use "devspec" rather than "path" in debugfs entries (Don Zickus) [1127366]
-- [powerpc] scom: CONFIG_SCOM_DEBUGFS should depend on CONFIG_DEBUG_FS (Don Zickus) [1127366]
-- [powerpc] powernv: Add scom support under OPALv3 (Don Zickus) [1127366]
-- [powerpc] scom: Create debugfs files using ibm, chip-id if available (Don Zickus) [1127366]
-- [powerpc] scom: Add support for "reg" property (Don Zickus) [1127366]
-- [powerpc] scom: Change scom_read() and scom_write() to return errors (Don Zickus) [1127366]
-- [powerpc] Enable /dev/port when isa_io_special is set (Don Zickus) [1127366]
-- [powerpc] Make ftrace endian-safe (Don Zickus) [1127366]
-- [powerpc] pseries: Implement arch_get_random_long() based on H_RANDOM (Don Zickus) [1127366]
-- [powerpc] Implement arch_get_random_long/int() for powernv (Don Zickus) [1127366]
-- [powerpc] Added __cmpdi2 for signed 64bit comparision (Don Zickus) [1127366]
-- [powerpc] Fix section mismatch warning in free_lppacas (Don Zickus) [1127366]
-- [powerpc] ppc64: Remove the unneeded load of ti_flags in resume_kernel (Don Zickus) [1127366]
-- [powerpc] legacy_serial: Fix incorrect placement of __initdata tag (Don Zickus) [1127366]
-- [serial] tty/hvc_opal: powerpc - Make OPAL HVC device tree accesses endian safe (Don Zickus) [1127366]
-- [powerpc] powernv: Fix some PCI sparse errors and one LE bug (Don Zickus) [1127366]
-- [powerpc] add explicit OF includes (Don Zickus) [1127366]
-- [powerpc] clean-up include ordering in prom.h (Don Zickus) [1127366]
-- [powerpc] Tell about irq stack coverage (Don Zickus) [1127366]
-- [powerpc] Fix section mismatch warning for prom_rtas_call (Don Zickus) [1127366]
-- [powerpc] Export cpu_to_chip_id() to fix build error (Don Zickus) [1127366]
-- [powerpc] xmon: Fix printing of set of CPUs in xmon (Don Zickus) [1127366]
-- [powerpc] pseries: Move lparcfg.c to platforms/pseries (Don Zickus) [1127366]
-- [powerpc] powernv: Return secondary CPUs to firmware on kexec (Don Zickus) [1127366]
-- [powerpc] Cleanup handling of the DSCR bit in the FSCR register (Don Zickus) [1127366]
-- [powerpc] Skip emulating & leave interrupts off for kernel program checks (Don Zickus) [1127366]
-- [powerpc] Add more exception trampolines for hypervisor exceptions (Don Zickus) [1127366]
-- [powerpc] Fix location and rename exception trampolines (Don Zickus) [1127366]
-- [powerpc] Add more trap names to xmon (Don Zickus) [1127366]
-- [powerpc] pseries: Add a warning in the case of cross-cpu VPA registration (Don Zickus) [1127366]
-- [powerpc] Update the 00-Index in Documentation/powerpc (Don Zickus) [1127366]
-- [powerpc] Never handle VSX alignment exceptions from kernel (Don Zickus) [1127366]
-- [powerpc] Unaligned stores and stmw are broken in emulation code (Don Zickus) [1127366]
-- [powerpc] kvm: Copy the pvr value after memset (Don Zickus) [1127366]
-- [powerpc] refactor of_get_cpu_node to support other architectures (Don Zickus) [1127366]
-- [powerpc] Convert some mftb/mftbu into mfspr (Don Zickus) [1127366]
-- [powerpc] pseries: Read and write to the 'compressed' flag of pstore (Don Zickus) [1127366]
-- [powerpc] pseries: Remove (de)compression in nvram with pstore enabled (Don Zickus) [1127366]
-- [powerpc] Make device tree accesses in HVC VIO console endian safe (Don Zickus) [1127366]
-- [powerpc] Make chip-id information available to userspace (Don Zickus) [1127366]
-- [powerpc] Use ibm, chip-id property to compute cpu_core_mask if available (Don Zickus) [1127366]
-- [powerpc] Pull out cpu_core_mask updates into a separate function (Don Zickus) [1127366]
-- [powerpc] Fix denormalized exception handler (Don Zickus) [1127366]
-- [powerpc] Remove the redundant flush_fp_to_thread() in setup_sigcontext() (Don Zickus) [1127366]
-- [powerpc] powernv: Enable detection of legacy UARTs (Don Zickus) [1127366]
-- [powerpc] Check "status" property before adding legacy ISA serial ports (Don Zickus) [1127366]
-- [powerpc] Cleanup udbg_16550 and add support for LPC PIO-only UARTs (Don Zickus) [1127366]
-- [powerpc] powernv: Add PIO accessors for Power8 LPC bus (Don Zickus) [1127366]
-- [powerpc] powernv: Add helper to get ibm, chip-id of a node (Don Zickus) [1127366]
-- [powerpc] powernv: Update opal.h to add new LPC and XSCOM functions (Don Zickus) [1127366]
-- [powerpc] Better split CONFIG_PPC_INDIRECT_PIO and CONFIG_PPC_INDIRECT_MMIO (Don Zickus) [1127366]
-- [powerpc] ppc64: Rename SOFT_DISABLE_INTS with RECONCILE_IRQ_STATE (Don Zickus) [1127366]
-- [powerpc] Implement __get_user_pages_fast() (Don Zickus) [1127366]
-- [powerpc] Convert platforms to smp_generic_cpu_bootable (Don Zickus) [1127366]
-- [powerpc] Add smp_generic_cpu_bootable (Don Zickus) [1127366]
-- [powerpc] Remove the symbol __flush_icache_range (Don Zickus) [1127366]
-- [powerpc] Move the testing of CPU_FTR_COHERENT_ICACHE into __flush_icache_range (Don Zickus) [1127366]
-- [powerpc] pci: Don't use bitfield for force_32bit_msi (Don Zickus) [1127366]
-- [powerpc] Remove SAVE_VSRU and REST_VSRU macros (Don Zickus) [1127366]
-- [powerpc] Align p_toc (Don Zickus) [1127366]
-- [powerpc] kvm/book3s_pr: Return appropriate error when allocation fails (Don Zickus) [1127366]
-- [virt] kvm/ppc: Add signed type cast for comparation (Don Zickus) [1127366]
-- [powerpc] eeh: Add missing procfs entry for PowerNV (Don Zickus) [1127366]
-- [powerpc] pci: fix PCI-e check link issue (Don Zickus) [1127366]
-- [powerpc] perf: increase the perf HW events to 6 (Don Zickus) [1127366]
-- [powerpc] perf: correct typos in counter enumeration (Don Zickus) [1127366]
-- [powerpc] Rename PMU interrupts from CNT to PMI (Don Zickus) [1127366]
-- [powerpc] Move opcode definitions from kvm/emulate.c to asm/ppc-opcode.h (Don Zickus) [1127366]
-- [powerpc] powernv: Mark pnv_pci_init_ioda2_phb() as __init (Don Zickus) [1127366]
-- [powerpc] pseries: Fix a typo in pSeries_lpar_hpte_insert() (Don Zickus) [1127366]
-- [powerpc] Fix the corrupt r3 error during MCE handling (Don Zickus) [1127366]
-- [powerpc] Access local paca after hard irq disabled (Don Zickus) [1127366]
-- [powerpc] Revert: hw_breakpoints: Fix racy access to ptrace breakpoints (Don Zickus) [1127366]
-- [powerpc] kvm: Use 256K chunk to track both RMA and hash page table allocation (Don Zickus) [1127366]
-- [powerpc] kvm: Contiguous memory allocator based RMA allocation (Don Zickus) [1127366]
-- [powerpc] kvm: Contiguous memory allocator based hash page table allocation (Don Zickus) [1127366]
-- [powerpc] Remove savemaxmem parameter setup (Don Zickus) [1127366]
-- [powerpc] Handle both new style and old style reserve maps (Don Zickus) [1127366]
-- [powerpc] prom: Scan reserved-ranges node for memory reservations (Don Zickus) [1127366]
-- [powerpc] perf: Drop MMCRA from thread_struct (Don Zickus) [1127366]
-- [powerpc] Remove unreachable relocation on exception handlers (Don Zickus) [1127366]
-- [powerpc] eeh: Update MAINTAINERS (Don Zickus) [1127366]
-- [powerpc] nvram64: Need return the related error code on failure occurs (Don Zickus) [1127366]
-- [powerpc] Set cpu sibling mask before online cpu (Don Zickus) [1127366]
-- [powerpc] idle: Convert use of typedef ctl_table to struct ctl_table (Don Zickus) [1127366]
-- [powerpc] iommu: Remove unused pci_iommu_init() and pci_direct_iommu_init() (Don Zickus) [1127366]
-- [powerpc] Don't flush/invalidate the d/icache for an unknown relocation type (Don Zickus) [1127366]
-- [powerpc] Fix string instr. emulation for 32-bit processes on ppc64 (Don Zickus) [1127366]
-- [powerpc] Fix typo in ioei_interrupt() description (Don Zickus) [1127366]
-- [powerpc] proc: switch to fixed_size_llseek() (Don Zickus) [1127366]
-- [powerpc] eeh: Remove eeh_mutex (Don Zickus) [1127366]
-- [powerpc] pseries: Enable PSTORE in pseries_defconfig (Don Zickus) [1127366]
-- [powerpc] pseries: Use 'true' instead of '1' for orderly_poweroff (Don Zickus) [1127366]
-- [powerpc] smp: Use '==' instead of '<' for system_state (Don Zickus) [1127366]
-- [cpufreq] Various RHEL cleanups (Prarit Bhargava) [1134369]
-- [cpufreq] move policy kobj to update_policy_cpu() (Prarit Bhargava) [1134369]
-- [cpufreq] propagate error returned by kobject_move() (Prarit Bhargava) [1134369]
-- [cpufreq] don't restore policy->cpus on failure to move kobj (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove core_pct rounding (Prarit Bhargava) [1134369]
-- [cpufreq] ondemand: Eliminate the deadband effect (Prarit Bhargava) [1134369]
-- [cpufreq] Introduce new relation for freq selection (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Simplify P state adjustment logic (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Align multiple lines to open parenthesis (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Keep values in aperf/mperf in full precision (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove unnecessary intermediate variable sample_time (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Add missing blank lines after declarations (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Disable interrupts during MSRs reading (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Fit code in a single line where possible (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Cleanup parentheses (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove unnecessary type casting in div_s64() call (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Make intel_pstate_kobject and debugfs_parent locals (Prarit Bhargava) [1134369]
-- [cpufreq] move policy kobj to policy->cpu at resume (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Set CPU number before accessing MSRs (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: don't touch turbo bit if turbo disabled or unavailable (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Fix setting VID (Prarit Bhargava) [1134369]
-- [cpufreq] unlock when failing cpufreq_update_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Correct rounding in busy calculation (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Correct rounding in busy calculation (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove duplicate CPU ID check (Prarit Bhargava) [1134369]
-- [cpufreq] governor: remove copy_prev_load from 'struct cpu_dbs_common_info' (Prarit Bhargava) [1134369]
-- [cpufreq] governor: Be friendly towards latency-sensitive bursty workloads (Prarit Bhargava) [1134369]
-- [cpufreq] add support for intermediate (stable) frequencies (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Improve initial busy calculation (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: add sample time scaling (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove C0 tracking (Prarit Bhargava) [1134369]
-- [cpufreq] handle calls to ->target_index() in separate routine (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove unused member name of cpudata (Prarit Bhargava) [1134369]
-- [cpufreq] Break out early when frequency equals target_freq (Prarit Bhargava) [1134369]
-- [cpufreq] remove race while accessing cur_policy (Prarit Bhargava) [1134369]
-- [cpufreq] powernow-k8: Suppress checkpatch warnings (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: remove setting P state to MAX on init (Prarit Bhargava) [1134369]
-- [cpufreq] Use cpufreq_for_each_* macros for frequency table iteration (Prarit Bhargava) [1134369]
-- [cpufreq] don't print value of .driver_data from core (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Set turbo VID for BayTrail (Prarit Bhargava) [1134369]
-- [cpufreq] Fix build error on some platforms that use cpufreq_for_each_* (Prarit Bhargava) [1134369]
-- [cpufreq] Catch double invocations of cpufreq_freq_transition_begin/end (Prarit Bhargava) [1134369]
-- [cpufreq] Kconfig: Fix spelling errors (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove sample parameter in intel_pstate_calc_busy (Prarit Bhargava) [1134369]
-- [cpufreq] Introduce macros for cpufreq_frequency_table iteration (Prarit Bhargava) [1134369]
-- [cpufreq] use kzalloc() to allocate memory for cpufreq_frequency_table (Prarit Bhargava) [1134369]
-- [cpufreq] create another field .flags in cpufreq_frequency_table (Prarit Bhargava) [1134369]
-- [cpufreq] Use sizeof(*ptr) convetion for computing sizes (Prarit Bhargava) [1134369]
-- [cpufreq] Convert existing drivers to use cpufreq_freq_transition_{begin|end} (Prarit Bhargava) [1134369]
-- [cpufreq] Make cpufreq_notify_transition & cpufreq_notify_post_transition static (Prarit Bhargava) [1134369]
-- [cpufreq] Make sure frequency transitions are serialized (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Use del_timer_sync in intel_pstate_cpu_stop (Prarit Bhargava) [1134369]
-- [cpufreq] resume drivers before enabling governors (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Set core to min P state during core offline (Prarit Bhargava) [1134369]
-- [cpufreq] Add stop CPU callback to cpufreq_driver interface (Prarit Bhargava) [1134369]
-- [cpufreq] Remove unnecessary braces (Prarit Bhargava) [1134369]
-- [cpufreq] Fix checkpatch errors and warnings (Prarit Bhargava) [1134369]
-- [cpufreq] remove unused notifier CPUFREQ_{SUSPENDCHANGE|RESUMECHANGE} (Prarit Bhargava) [1134369]
-- [cpufreq] Do not allow ->setpolicy drivers to provide ->target (Prarit Bhargava) [1134369]
-- [cpufreq] Skip current frequency initialization for ->setpolicy drivers (Prarit Bhargava) [1134369]
-- [cpufreq] Remove unnecessary variable/parameter 'frozen' (Prarit Bhargava) [1134369]
-- [cpufreq] Remove cpufreq_generic_exit() (Prarit Bhargava) [1134369]
-- [cpufreq] add 'freq_table' in struct cpufreq_policy (Prarit Bhargava) [1134369]
-- [cpufreq] Reformat printk() statements (Prarit Bhargava) [1134369]
-- [cpufreq] Implement cpufreq_generic_suspend() (Prarit Bhargava) [1134369]
-- [cpufreq] suspend governors on system suspend/hibernate (Prarit Bhargava) [1134369]
-- [cpufreq] move call to __find_governor() to cpufreq_init_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] Initialize governor for a new policy under policy->rwsem (Prarit Bhargava) [1134369]
-- [cpufreq] Initialize policy before making it available for others to use (Prarit Bhargava) [1134369]
-- [cpufreq] use cpufreq_cpu_get() to avoid cpufreq_get() race conditions (Prarit Bhargava) [1134369]
-- [cpufreq] stats: Remove redundant cpufreq_cpu_get() call (Prarit Bhargava) [1134369]
-- [cpufreq] stats: Refactor common code into __cpufreq_stats_create_table() (Prarit Bhargava) [1134369]
-- [cpufreq] stats: Fix error handling in __cpufreq_stats_create_table() (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: fix pid_reset to use fixed point values (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: remove unneeded sample buffers (Prarit Bhargava) [1134369]
-- [cpufreq] Return error if ->get() failed in cpufreq_update_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] Mark function as static in cpufreq.c (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Change busy calculation to use fixed point math (Prarit Bhargava) [1134369]
-- [cpufreq] Refactor cpufreq_set_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] don't call cpufreq_update_policy() on CPU addition (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Add support for Baytrail turbo P states (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Use LFM bus ratio as min ratio/P state (Prarit Bhargava) [1134369]
-- [cpufreq] powernow-k8: Initialize per-cpu data-structures properly (Prarit Bhargava) [1134369]
-- [cpufreq] remove sysfs link when a cpu != policy->cpu, is removed (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove energy reporting from pstate_sample tracepoint (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Take core C0 time into account for core busy calculation (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: De-register CPU notifier and free struct msr on error (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: Adjust the code to use the common boost attribute (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Add trace point to report internal state (Prarit Bhargava) [1134369]
-- [cpufreq] stats: create sysfs entries when cpufreq_stats is a module (Prarit Bhargava) [1134369]
-- [cpufreq] Add boost frequency support in core (Prarit Bhargava) [1134369]
-- [cpufreq] introduce cpufreq_generic_get() routine (Prarit Bhargava) [1134369]
-- [cpufreq] stats: free table and remove sysfs entry in a single routine (Prarit Bhargava) [1134369]
-- [cpufreq] stats: remove hotplug notifiers (Prarit Bhargava) [1134369]
-- [cpufreq] stats: handle cpufreq_unregister_driver() and suspend/resume properly (Prarit Bhargava) [1134369]
-- [cpufreq] Make sure CPU is running on a freq from freq-table (Prarit Bhargava) [1134369]
-- [cpufreq] Introduce cpufreq_notify_post_transition() (Prarit Bhargava) [1134369]
-- [cpufreq] send new set of notification for transition failures (Prarit Bhargava) [1134369]
-- [cpufreq] Fix timer/workqueue corruption by protecting reading governor_enabled (Prarit Bhargava) [1134369]
-- [cpufreq] preserve user_policy across suspend/resume (Prarit Bhargava) [1134369]
-- [cpufreq] Clean up after a failing light-weight initialization (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove periodic P state boost (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Add setting voltage value for baytrail P states (Prarit Bhargava) [1134369]
-- [cpufreq] remove sysfs files for CPUs which failed to come back after resume (Prarit Bhargava) [1134369]
-- [cpufreq] governor: Remove fossil comment in the cpufreq_governor_dbs() (Prarit Bhargava) [1134369]
-- [cpufreq] conservative: set requested_freq to policy max when it is over policy max (Prarit Bhargava) [1134369]
-- [cpufreq] conservative: fix requested_freq reduction issue (Prarit Bhargava) [1134369]
-- [cpufreq] move freq change notifications to cpufreq core (Prarit Bhargava) [1134369]
-- [cpufreq] distinguish drivers that do asynchronous notifications (Prarit Bhargava) [1134369]
-- [cpufreq] create per policy rwsem instead of per CPU cpu_policy_rwsem (Prarit Bhargava) [1134369]
-- [cpufreq] Implement light weight ->target_index() routine (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: Fail initialization if driver cannot be registered (Prarit Bhargava) [1134369]
-- [cpufreq] Detect spurious invocations of update_policy_cpu() (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: Add comment under ACPI_ADR_SPACE_SYSTEM_IO case (Prarit Bhargava) [1134369]
-- [cpufreq] remove CONFIG_CPU_FREQ_TABLE (Prarit Bhargava) [1134369]
-- [cpufreq] create cpufreq_generic_init() routine (Prarit Bhargava) [1134369]
-- [cpufreq] powernow: don't initialize part of policy set by core (Prarit Bhargava) [1134369]
-- [cpufreq] p4: don't initialize part of policy set by core (Prarit Bhargava) [1134369]
-- [cpufreq] pcc: don't initialize part of policy set by core (Prarit Bhargava) [1134369]
-- [cpufreq] call cpufreq_driver->get() after calling ->init() (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: don't initialize part of policy set by core (Prarit Bhargava) [1134369]
-- [cpufreq] powernow: Use generic cpufreq routines (Prarit Bhargava) [1134369]
-- [cpufreq] p4-clockmod: Use generic cpufreq routines (Prarit Bhargava) [1134369]
-- [cpufreq] acpi: Use generic cpufreq routines (Prarit Bhargava) [1134369]
-- [cpufreq] define generic .attr, .exit() and .verify() routines (Prarit Bhargava) [1134369]
-- [cpufreq] use cpufreq_driver->flags to mark CPUFREQ_HAVE_GOVERNOR_PER_POLICY (Prarit Bhargava) [1134369]
-- [cpufreq] rename __cpufreq_set_policy() as cpufreq_set_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] Remove extra blank line (Prarit Bhargava) [1134369]
-- [cpufreq] don't break string in print statements (Prarit Bhargava) [1134369]
-- [cpufreq] remove __cpufreq_remove_dev() (Prarit Bhargava) [1134369]
-- [cpufreq] remove invalid comment from __cpufreq_remove_dev() (Prarit Bhargava) [1134369]
-- [cpufreq] make return type of lock_policy_rwsem_{read|write}() as void (Prarit Bhargava) [1134369]
-- [cpufreq] powernow: use cpufreq_table_validate_and_show() (Prarit Bhargava) [1134369]
-- [cpufreq] p4-clockmod: use cpufreq_table_validate_and_show() (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: use cpufreq_table_validate_and_show() (Prarit Bhargava) [1134369]
-- [cpufreq] Add new helper cpufreq_table_validate_and_show() (Prarit Bhargava) [1134369]
-- [cpufreq] pcc_freq: convert acpi_get_handle() to acpi_has_method() (Prarit Bhargava) [1134369]
-- [cpufreq] return EEXIST instead of EBUSY for second registering (Prarit Bhargava) [1134369]
-- [cpufreq] unlock correct rwsem while updating policy->cpu (Prarit Bhargava) [1134369]
-- [cpufreq] Clear policy->cpus bits in __cpufreq_remove_dev_finish() (Prarit Bhargava) [1134369]
-- [cpufreq] Acquire the lock in cpufreq_policy_restore() for reading (Prarit Bhargava) [1134369]
-- [cpufreq] Prevent problems in update_policy_cpu() if last_cpu == new_cpu (Prarit Bhargava) [1134369]
-- [cpufreq] Restructure if/else block to avoid unintended behavior (Prarit Bhargava) [1134369]
-- [cpufreq] Fix crash in cpufreq-stats during suspend/resume (Prarit Bhargava) [1134369]
-- [cpufreq] Revert: make sure frequency transitions are serialized (Prarit Bhargava) [1134369]
-- [cpufreq] Use signed type for 'ret' variable, to store negative error values (Prarit Bhargava) [1134369]
-- [cpufreq] Remove temporary fix for race between CPU hotplug and sysfs-writes (Prarit Bhargava) [1134369]
-- [cpufreq] Synchronize the cpufreq store_*() routines with CPU hotplug (Prarit Bhargava) [1134369]
-- [cpufreq] Invoke __cpufreq_remove_dev_finish() after releasing cpu_hotplug.lock (Prarit Bhargava) [1134369]
-- [cpufreq] Split __cpufreq_remove_dev() into two parts (Prarit Bhargava) [1134369]
-- [cpufreq] Fix wrong time unit conversion (Prarit Bhargava) [1134369]
-- [cpufreq] serialize calls to __cpufreq_governor() (Prarit Bhargava) [1134369]
-- [cpufreq] don't allow governor limits to be changed when it is disabled (Prarit Bhargava) [1134369]
-- [cpufreq] Don't use smp_processor_id() in preemptible context (Prarit Bhargava) [1134369]
-- [cpufreq] governor: Fix typos in comments (Prarit Bhargava) [1134369]
-- [cpufreq] governors: Remove duplicate check of target freq in supported range (Prarit Bhargava) [1134369]
-- [cpufreq] Fix timer/workqueue corruption due to double queueing (Prarit Bhargava) [1134369]
-- [cpufreq] fix bad unlock balance on !CONFIG_SMP (Prarit Bhargava) [1134369]
-- [cpufreq] Fix white space in __cpufreq_remove_dev() (Prarit Bhargava) [1134369]
-- [cpufreq] remove unnecessary check in __cpufreq_governor() (Prarit Bhargava) [1134369]
-- [cpufreq] remove policy from cpufreq_policy_list during suspend (Prarit Bhargava) [1134369]
-- [cpufreq] remove cpufreq_policy_cpu per-cpu variable (Prarit Bhargava) [1134369]
-- [cpufreq] Use cpufreq_policy_list for iterating over policies (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: Use cpufreq_freq_attr_rw to define the cpb attribute (Prarit Bhargava) [1134369]
-- [cpufreq] ondemand: Remove redundant return statement (Prarit Bhargava) [1134369]
-- [cpufreq] improve error checking on return values of __cpufreq_governor() (Prarit Bhargava) [1134369]
-- [cpufreq] Fix broken usage of governor->owner's refcount (Prarit Bhargava) [1134369]
-- [cpufreq] Store cpufreq policies in a list (Prarit Bhargava) [1134369]
-- [cpufreq] Give consistent names to cpufreq_policy objects (Prarit Bhargava) [1134369]
-- [cpufreq] Clean up header files included in the core (Prarit Bhargava) [1134369]
-- [cpufreq] Pass policy to cpufreq_add_policy_cpu() (Prarit Bhargava) [1134369]
-- [cpufreq] Avoid double kobject_put() for the same kobject in error code path (Prarit Bhargava) [1134369]
-- [cpufreq] Preserve policy structure across suspend/resume (Prarit Bhargava) [1134369]
-- [cpufreq] Perform light-weight init/teardown during suspend/resume (Prarit Bhargava) [1134369]
-- [cpufreq] Do not hold driver module references for additional policy CPUs (Prarit Bhargava) [1134369]
-- [cpufreq] Don't pass CPU to cpufreq_add_dev_{symlink|interface}() (Prarit Bhargava) [1134369]
-- [cpufreq] Introduce a flag ('frozen') to separate full vs temporary init/teardown (Prarit Bhargava) [1134369]
-- [cpufreq] Extract the handover of policy cpu to a helper function (Prarit Bhargava) [1134369]
-- [cpufreq] Add helper to perform alloc/free of policy structure (Prarit Bhargava) [1134369]
-- [cpufreq] Extract non-interface related stuff from cpufreq_add_dev_interface (Prarit Bhargava) [1134369]
-- [cpufreq] Fix misplaced call to cpufreq_update_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] Remove unused function __cpufreq_driver_getavg() (Prarit Bhargava) [1134369]
-- [cpufreq] ondemand: Change the calculation of target frequency (Prarit Bhargava) [1134369]
-- [cpufreq] Remove unused APERF/MPERF support (Prarit Bhargava) [1134369]
-- [char] hwrng: Add a driver for the hwrng found in power7+ systems (Steve Best) [1123116]
-
-* Tue Sep 16 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-161.el7]
-- [target] iscsi: Explicily clear login response PDU in exception path (Andy Grover) [1129387]
-- [target] iscsi: Avoid rejecting incorrect ITT for Data-Out (Andy Grover) [1129387]
-- [target] Fix left-over se_lun->lun_sep pointer OOPs (Andy Grover) [1129387]
-- [infiniband] ulp/isert: Wait for proper cleanup before unloading (Andy Grover) [1129387]
-- [infiniband] ulp/isert: Improve cm events handling (Andy Grover) [1129387]
-- [target] Explicitly clear ramdisk_mcp backend pages (Andy Grover) [1129387]
-- [target] Report correct response length for some commands (Andy Grover) [1129387]
-- [target] iscsi: Fix ABORT_TASK + connection reset iscsi_queue_req memory leak (Andy Grover) [1129387]
-- [target] Use complete_all for se_cmd->t_transport_stop_comp (Andy Grover) [1129387]
-- [target] lio: Set CMD_T_ACTIVE bit for Task Management Requests (Andy Grover) [1129387]
-- [target] iscsi, iser: Fix hangs in connection teardown (Andy Grover) [1129387]
-- [infiniband] iser: Bail from accept_np if np_thread is trying to close (Andy Grover) [1129387]
-- [target] iscsi: Reject mutual authentication with reflected CHAP_C (Andy Grover) [1129387]
-- [target] Fix alua_access_state attribute OOPs for un-configured devices (Andy Grover) [1129387]
-- [infiniband] iser: Add missing target_put_sess_cmd for ImmedateData failure (Andy Grover) [1129387]
-- [target] Don't allow setting WC emulation if device doesn't support (Andy Grover) [1129387]
-- [infiniband] iser: Add missing se_cmd put for WRITE_PENDING in tx_comp_err (Andy Grover) [1129387]
-- [target] iscsi: Fix ERL=2 ASYNC_EVENT connection pointer bug (Andy Grover) [1129387]
-- [infiniband] ib_srpt: Use correct ib_sg_dma primitives (Andy Grover) [1129387]
-- [infiniband] iser: Fix post_send_buf_count for RDMA READ/WRITE (Andy Grover) [1129387]
-- [target] iscsi, iser: Fix isert_conn->state hung shutdown issues (Andy Grover) [1129387]
-- [target] iscsi, iser:  Use list_del_init for ->i_conn_node (Andy Grover) [1129387]
-- [target] iscsi: Fix iscsit_get_tpg_from_np tpg_state bug (Andy Grover) [1129387]
-- [target] Update hw_max_sectors based on current block_size (Andy Grover) [1129387]
-- [target] iscsi: Fix-up all zero data-length CDBs with R/W_BIT set (Andy Grover) [1129387]
-- [target] Allow READ_CAPACITY opcode in ALUA Standby access state (Andy Grover) [1129387]
-- [target] iscsi: Fix wrong buffer / buffer overrun in iscsi_change_param_value() (Andy Grover) [1129387]
-- [target] iscsi: Fix multi network portal shutdown regression (Andy Grover) [1129387]
-- [target] iscsi, iser: Avoid accepting transport connections during stop stage (Andy Grover) [1129387]
-- [infiniband] ulp/isert: Fix iscsit_accept_np and rdma_cm racy flow (Andy Grover) [1129387]
-- [infiniband] ulp/isert: Fix wrong connection requests list addition (Andy Grover) [1129387]
-- [scsi] hpsa: do not require board "not ready" status after hard reset (Tomas Henzl) [1069185]
-- [scsi] hpsa: make tech preview info more verbose (Tomas Henzl) [1083556]
-- [scsi] hpsa: fix bad -ENOMEM return value in hpsa_big_passthru_ioctl (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove online devices from offline device list (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix non-x86 builds (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not unconditionally copy sense data (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix 6-byte READ/WRITE with 0 length data xfer (Tomas Henzl) [1069185]
-- [scsi] hpsa: make hpsa_init_one return -ENOMEM if allocation of h->lockup_detected fails (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix handling of hpsa_volume_offline return value (Tomas Henzl) [1069185]
-- [scsi] hpsa: return -ENOMEM not -1 on kzalloc failure in hpsa_get_device_id (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove messages about volume status VPD inquiry page not supported (Tomas Henzl) [1069185]
-- [scsi] hpsa: report check condition even if no sense data present for ioaccel2 mode (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove bad unlikely annotation from device list updating code (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix event filtering to prevent excessive rescans with old firmware (Tomas Henzl) [1069185]
-- [scsi] hpsa: kill annoying messages about SSD Smart Path retries (Tomas Henzl) [1069185]
-- [scsi] hpsa: define extended_report_lun_entry data structure (Tomas Henzl) [1069185]
-- [scsi] hpsa: Rearrange start_io to avoid one unlock/lock sequence in main io path (Tomas Henzl) [1069185]
-- [scsi] hpsa: avoid unnecessary readl on every command submission (Tomas Henzl) [1069185]
-- [scsi] hpsa: use per-cpu variable for lockup_detected (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unnecessary pci_set_drvdata() (Tomas Henzl) [1069185]
-- [scsi] hpsa: set irq affinity hints to route MSI-X vectors across CPUs (Tomas Henzl) [1069185]
-- [scsi] hpsa: allocate reply queues individually (Tomas Henzl) [1069185]
-- [scsi] hpsa: choose number of reply queues more intelligently (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove dev_dbg() calls from hot paths (Tomas Henzl) [1069185]
-- [scsi] hpsa: use gcc aligned attribute instead of manually padding structs (Tomas Henzl) [1069185]
-- [scsi] hpsa: change doorbell reset delay to ten seconds (Tomas Henzl) [1069185]
-- [scsi] hpsa: allow passthru ioctls to work with bidirectional commands (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unused fields from struct ctlr_info (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix bad comparison of signed with unsigned in hpsa_update_scsi_devices (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not ignore failure of sense controller parameters command (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix memory leak in hpsa_hba_mode_enabled (Tomas Henzl) [1069185]
-- [scsi] hpsa: Checking for a NULL return from a kzalloc call (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix NULL dereference in hpsa_put_ctlr_into_performant_mode() (Tomas Henzl) [1069185]
-- [scsi] hpsa: update driver version to 3.4.4-1 (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix bad endif placement in RAID 5 mapper code (Tomas Henzl) [1069185]
-- [scsi] hpsa: Do not zero fields of ioaccel2 command structure twice (Tomas Henzl) [1069185]
-- [scsi] hpsa: Add hba mode to the hpsa driver (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unused struct request from CommandList (Tomas Henzl) [1069185]
-- [scsi] hpsa: increase the probability of a reported success after a device reset (Tomas Henzl) [1069185]
-- [scsi] hpsa: bring format-in-progress drives online when ready (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unused kthread.h header (Tomas Henzl) [1069185]
-- [scsi] hpsa: Add support for a few HP Storage controllers (Tomas Henzl) [1069185]
-- [scsi] hpsa: add HP/3PAR vendor id to pci_ids.h (Tomas Henzl) [1069185]
-- [scsi] hpsa: add sysfs debug switch for raid map debugging messages (Tomas Henzl) [1069185]
-- [scsi] hpsa: improve error messages for driver initiated commands (Tomas Henzl) [1069185]
-- [scsi] hpsa: only do device rescan for certain events (Tomas Henzl) [1069185]
-- [scsi] hpsa: when switching out of accel mode await only accel command completions (Tomas Henzl) [1069185]
-- [scsi] hpsa: add controller base data-at-rest encryption compatibility ioaccel2 (Tomas Henzl) [1069185]
-- [scsi] hpsa: update source file copyrights (Tomas Henzl) [1069185]
-- [scsi] hpsa: retry certain ioaccel error cases on the RAID path (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not inquire for unsupported ioaccel status vpd page (Tomas Henzl) [1069185]
-- [scsi] hpsa: allow VPD page zero to be queried (Tomas Henzl) [1069185]
-- [scsi] hpsa: rescan devices on ioaccel2 error (Tomas Henzl) [1069185]
-- [scsi] hpsa: allow user to disable accelerated i/o path (Tomas Henzl) [1069185]
-- [scsi] hpsa: complete the ioaccel raidmap code (Tomas Henzl) [1069185]
-- [scsi] hpsa: make device update copy the raid map also (Tomas Henzl) [1069185]
-- [scsi] hpsa: add task management for ioaccel mode 2 (Tomas Henzl) [1069185]
-- [scsi] hpsa: teach hpsa_device_reset to do either target or lun reset (Tomas Henzl) [1069185]
-- [scsi] hpsa: get ioaccel mode 2 i/o working (Tomas Henzl) [1069185]
-- [scsi] hpsa: initialize controller to perform io accelerator mode 2 (Tomas Henzl) [1069185]
-- [scsi] hpsa: get physical device handles for io accel mode 2 as well as mode 1 (Tomas Henzl) [1069185]
-- [scsi] hpsa: do ioaccel mode 2 resource allocations (Tomas Henzl) [1069185]
-- [scsi] hpsa: Acknowledge controller events in ioaccell mode 2 as well as mode 1 (Tomas Henzl) [1069185]
-- [scsi] hpsa: add ioaccel mode 2 structure definitions (Tomas Henzl) [1069185]
-- [scsi] hpsa: complain if physical or logical aborts are not supported (Tomas Henzl) [1069185]
-- [scsi] hpsa: add hp_ssd_smart_path_enabled sysfs attribute (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not rescan controllers known to be locked up (Tomas Henzl) [1069185]
-- [scsi] hpsa: poll controller to detect device change event (Tomas Henzl) [1069185]
-- [scsi] hpsa: update raid offload status on device rescan (Tomas Henzl) [1069185]
-- [scsi] hpsa: add ioaccell mode 1 RAID offload support (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix task management for mode-1 ioaccell path (Tomas Henzl) [1069185]
-- [scsi] hpsa: only allow REQ_TYPE_FS to use fast path (Tomas Henzl) [1069185]
-- [scsi] hpsa: add support for 'fastpath' i/o (Tomas Henzl) [1069185]
-- [scsi] hpsa: mark last scatter gather element as the last (Tomas Henzl) [1069185]
-- [scsi] hpsa: use extended report luns command for HP SSD SmartPath (Tomas Henzl) [1069185]
-- [scsi] hpsa: fixup MSI-X registration (Tomas Henzl) [1069185]
-- [scsi] hpsa: prevent stalled i/o (Tomas Henzl) [1069185]
-- [scsi] hpsa: cap CCISS_PASSTHRU at 20 concurrent commands (Tomas Henzl) [1069185]
-- [scsi] hpsa: add MSA 2040 to list of external target devices (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix memory leak in CCISS_BIG_PASSTHRU ioctl (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unneeded include of seq_file.h (Tomas Henzl) [1069185]
-- [scsi] hpsa: add 5 second delay after doorbell reset (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not attempt to flush the cache on locked up controllers (Tomas Henzl) [1069185]
-- [scsi] bnx2i: Make boot_nic entry visible in the sysfs session objects (Maurizio Lombardi) [1139139]
-- [scsi] bnx2fc: fix incorrect DMA memory mapping in bnx2fc_unmap_sg_list() (Maurizio Lombardi) [1102526]
-- [ethernet] cnic: Replace rcu_dereference() with rcu_access_pointer() (Maurizio Lombardi) [1089401]
-- [ethernet] cnic: Rebranding cnic driver (Maurizio Lombardi) [1089401]
-- [ethernet] cnic: Fix missing ISCSI_KEVENT_IF_DOWN message (Maurizio Lombardi) [1089401]
-- [ethernet] cnic: Update version to 2.5.20 and copyright year (Maurizio Lombardi) [1089401]
-- [ethernet] cnic: Use proper ulp_ops for per device operations (Maurizio Lombardi) [1089401]
-- [ethernet] broadcom: Remove extern from function prototypes (Maurizio Lombardi) [1089401]
-- [scsi] bnx2i: Update driver version to 2.7.10.1 (Maurizio Lombardi) [1089400]
-- [scsi] bnx2i: Rebranding bnx2i driver (Maurizio Lombardi) [1089400]
-- [scsi] bnx2i, be2iscsi: fix custom stats length (Maurizio Lombardi) [1089400]
-- [ethernet] cnic, bnx2i, bnx2fc: Fix inconsistent use of page size (Maurizio Lombardi) [1089400 1089399 1089401]
-- [scsi] bnx2fc: Rebranding bnx2fc driver (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: do not scan uninitialized lists in case of error (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: fix memory leak in bnx2fc_allocate_hash_table() (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: fix memory leak and potential NULL pointer dereference (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: remove unused variable hash_table_size (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: Updated version to 2.4.2 (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: Fixed the handling for the SCSI retry delay (Maurizio Lombardi) [1089399]
-- [scsi] be2iscsi: Bump driver version (Rob Evers) [1130072]
-- [scsi] be2iscsi: Fix processing CQE before connection resources are freed (Rob Evers) [1130072]
-- [scsi] be2iscsi: Fix updating the boot enteries in sysfs (Rob Evers) [1130072]
-- [scsi] be2iscsi: Fix the copyright year (Rob Evers) [1130072]
-- [scsi] be2iscsi: Fix the sparse warning introduced in previous submission (Rob Evers) [1130072]
-
-* Mon Sep 15 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-160.el7]
-- [x86] module: work around kabi module breakage when 16K stacks are enabled (Kyle McMartin) [1108378]
-- [kernel] redhat: bump RHEL_MINOR to 1 (Kyle McMartin) [1108378]
-- [kernel] modules: export check_module_rhelversion (Kyle McMartin) [1108378]
-- [kernel] modules: Add module_ext struct (Prarit Bhargava) [1110315]
-- [kernel] modules: add rhelversion MODULE_INFO tag (Kyle McMartin) [1110315]
-- [x86] expand 64-bit kernel stack to 16K (Johannes Weiner) [1108378]
-
-* Mon Sep 15 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-159.el7]
-- [ethernet] bna: Support TSO and partial checksum with non-accelerated vlans (Ivan Vecera) [1136912]
-- [ethernet] bna: Remove DEFINE_PCI_DEVICE_TABLE macro use (Ivan Vecera) [1136912]
-- [ethernet] bna: fix performance regression (Ivan Vecera) [1136912]
-- [ethernet] bna: fill the magic in bnad_get_eeprom() instead of validating (Ivan Vecera) [1136912]
-- [ethernet] bna: remove unnecessary break after return (Ivan Vecera) [1136912]
-- [ethernet] bna: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Ivan Vecera) [1136912]
-- [ethernet] bna: get rid of SET_ETHTOOL_OPS (Ivan Vecera) [1136912]
-- [ethernet] bna: remove open-coded skb_cow_head (Ivan Vecera) [1136912]
-- [ethernet] bna: Call dev_kfree_skb_any instead of dev_kfree_skb (Ivan Vecera) [1136912]
-- [ethernet] bna: Convert uses of __constant_<foo> to <foo> (Ivan Vecera) [1136912]
-- [ethernet] bna: Replace large udelay() with mdelay() (Ivan Vecera) [1136912]
-- [ethernet] bna: Use pci_enable_msix_range() instead of pci_enable_msix() (Ivan Vecera) [1136912]
-- [ethernet] bna: bnad code cleanup (Ivan Vecera) [1136912]
-- [ethernet] e1000: fix possible reset_task running after adapter down (John Greene) [1091129]
-- [ethernet] e1000: prevent oops when adapter is being closed and reset simultaneously (John Greene) [1091129]
-- [ethernet] r8169: add missing MODULE_FIRMWARE (Ivan Vecera) [1139247]
-- [ethernet] r8169: add support for RTL8168H and RTL8107E (Ivan Vecera) [1139247]
-- [ethernet] r8169: Remove DEFINE_PCI_DEVICE_TABLE macro use (Ivan Vecera) [1139247]
-- [ethernet] r8169: Enable RX_MULTI_EN for RTL_GIGA_MAC_VER_40 (Ivan Vecera) [1139247]
-- [ethernet] r8169: support IPv6 (Ivan Vecera) [1139247]
-- [ethernet] r8169: use Giant Send (Ivan Vecera) [1139247]
-- [ethernet] r8169: split rtl8169_tso_csum (Ivan Vecera) [1139247]
-- [ethernet] r8169: disable L23 (Ivan Vecera) [1139247]
-- [ethernet] r8169: get rid of SET_ETHTOOL_OPS (Ivan Vecera) [1139247]
-- [ethernet] r8169: Call dev_kfree_skby_any instead of dev_kfree_skb (Ivan Vecera) [1139247]
-- [ethernet] r8169: fix the incorrect tx descriptor version (Ivan Vecera) [1139247]
-- [ethernet] r8169: initialize rtl8169_stats seqlock (Ivan Vecera) [1139247]
-- [ethernet] r8169: delete non-required instances of include <linux/init.h> (Ivan Vecera) [1139247]
-- [ethernet] bnx2: Remove DEFINE_PCI_DEVICE_TABLE macro use (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Rebranding bnx2 driver (Michal Schmidt) [1092495]
-- [ethernet] bnx2: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Don't build unused suspend/resume functions not enabled (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Don't receive packets when the napi budget == 0 (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Call dev_kfree_skby_any instead of dev_kfree_skb (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Use pci_enable_msix_range() instead of pci_enable_msix() (Michal Schmidt) [1092495]
-- [ethernet] bnx2: delete non-required instances of include <linux/init.h> (Michal Schmidt) [1092495]
-- [ethernet] ixgbevf: Remove unused get_supported_physical_layer pointer (John Greene) [1091124]
-- [ethernet] ixgbevf: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (John Greene) [1091124]
-- [ethernet] ixgbevf: get rid of SET_ETHTOOL_OPS (John Greene) [1091124]
-- [ethernet] ixgbevf: remove 82599 from the module description (John Greene) [1091124]
-- [ethernet] ixgbevf: remove open-coded skb_cow_head (John Greene) [1091124]
-- [ethernet] ixgbevf: Add bit to mark work queue initialization (John Greene) [1091124]
-- [ethernet] ixgbevf: Fix rcu warnings induced by LER (John Greene) [1091124]
-- [ethernet] ixgbevf: Change ixgbe_read_reg to ixgbevf_read_reg (John Greene) [1091124]
-- [ethernet] ixgbevf: Additional adapter removal checks (John Greene) [1091124]
-- [ethernet] ixgbevf: Check for adapter removal on register writes (John Greene) [1091124]
-- [ethernet] ixgbevf: Check register reads for adapter removal (John Greene) [1091124]
-- [ethernet] ixgbevf: Make the ethtool register test use accessors (John Greene) [1091124]
-- [ethernet] ixgbevf: Use static inlines instead of macros (John Greene) [1091124]
-- [ethernet] ixgbevf: Convert uses of __constant_<foo> to <foo> (John Greene) [1091124]
-- [ethernet] ixgbevf: Protect ixgbevf_down with __IXGBEVF_DOWN bit (John Greene) [1091124]
-- [ethernet] ixgbevf: Indicate removal state explicitly (John Greene) [1091124]
-- [ethernet] ixgbevf: delete unneeded call to pci_set_power_state (John Greene) [1091124]
-- [ethernet] ixgbevf: fix skb->pkt_type checks (John Greene) [1091124]
-- [ethernet] ixgbevf: add check for CHECKSUM_PARTIAL when doing TSO (John Greene) [1091124]
-- [ethernet] ixgbevf: fix handling of tx checksumming (John Greene) [1091124]
-- [ethernet] ixgbevf: Use pci_enable_msix_range() instead of pci_enable_msix() (John Greene) [1091124]
-- [ethernet] ixgbevf: merge ixgbevf_tx_map and ixgbevf_tx_queue into a single function (John Greene) [1091124]
-- [ethernet] ixgbevf: redo dma mapping using the tx buffer info (John Greene) [1091124]
-- [ethernet] ixgbevf: make the first tx_buffer a repository for most of the skb info (John Greene) [1091124]
-- [ethernet] ixgbevf: add tx counters (John Greene) [1091124]
-- [ethernet] ixgbevf: remove counters for Tx/Rx checksum offload (John Greene) [1091124]
-- [ethernet] ixgbevf: move ring specific stats into ring specific structure (John Greene) [1091124]
-- [ethernet] ixgbevf: make use of the dev pointer in the ixgbevf_ring struct (John Greene) [1091124]
-- [ethernet] ixgbevf: bump version (John Greene) [1091124]
-- [ethernet] ixgbevf: create function for all of ring init (John Greene) [1091124]
-- [ethernet] ixgbevf: Convert ring storage form pointer to an array to array of pointers (John Greene) [1091124]
-- [ethernet] ixgbevf: use pci drvdata correctly in ixgbevf_suspend() (John Greene) [1091124]
-- [ethernet] ixgbevf: set the disable state when ixgbevf_qv_disable is called (John Greene) [1091124]
-- [ethernet] ixgbevf: add DCB configuration into queue setup (John Greene) [1091124]
-- [ethernet] ixgbe: Focus config of head, tail ntc, and ntu all into a single function (John Greene) [1091124]
-- [ethernet] ixgbe: cleanup IXGBE_DESC_UNUSED (John Greene) [1091124]
-- [ethernet] ixgbevf: remove redundant workaround (John Greene) [1091124]
-- [ethernet] ixgbevf: Add zero_base handler to network statistics (John Greene) [1091124]
-- [ethernet] ixgbevf: add BP_EXTENDED_STATS for CONFIG_NET_RX_BUSY_POLL (John Greene) [1091124]
-- [ethernet] ixgbevf: implement CONFIG_NET_RX_BUSY_POLL (John Greene) [1091124]
-- [ethernet] ixgbevf: have clean_rx_irq return total_rx_packets cleaned (John Greene) [1091124]
-- [ethernet] ixgbevf: add ixgbevf_rx_skb (John Greene) [1091124]
-- [ethernet] ixgbevf: bump driver version (John Greene) [1091124]
-- [ethernet] ixgbevf: Remove extern from function prototypes (John Greene) [1091124]
-- [ethernet] ixgbevf: Adds function to set PSRTYPE register (John Greene) [1091124]
-- [ethernet] ixgbevf: Miscellaneous conversions to ETH_ALEN (John Greene) [1091124]
-- [ethernet] ixgbevf: add wait for Rx queue disable (John Greene) [1091123]
-- [ethernet] ixgbevf: fix 32-bit DMA mask handling (John Greene) [1091123]
-- [ethernet] ixgbe: fix message terminations (John Greene) [1091123]
-- [ethernet] ixgbe: clean up Rx time stamping code (John Greene) [1091123]
-- [ethernet] ixgbe: remove open-coded skb_cow_head (John Greene) [1091123]
-- [ethernet] ixgbe: Add bit to mark service task initialization (John Greene) [1091123]
-- [ethernet] ixgbe: Fix rcu warnings induced by LER (John Greene) [1091123]
-- [ethernet] ixgbe: Indicate removal state explicitly (John Greene) [1091123]
-- [ethernet] ixgbe: fix ixgbe_check_reset_blocked() declaration (John Greene) [1091123]
-- [ethernet] ixgbe: fix race conditions on queuing skb for HW time stamp (John Greene) [1091123]
-- [ethernet] ixgbe: never generate both software and hardware timestamps (John Greene) [1091123]
-- [ethernet] ixgbe: remove redundant if clause from PTP work (John Greene) [1091123]
-- [ethernet] ixgbe: Break recursion in case of removal (John Greene) [1091123]
-- [ethernet] ixgbe: Stop cacheing if the MNG FW enabled (John Greene) [1091123]
-- [ethernet] ixgbe: clean up ixgbe_atr_compute_perfect_hash_82599 (John Greene) [1091123]
-- [ethernet] ixgbe: use ixgbe_read_pci_cfg_word (John Greene) [1091123]
-- [ethernet] ixgbe: remove unused media type (John Greene) [1091123]
-- [ethernet] ixgbe: fix ixgbe_setup_mac_link_82599 autoc variables (John Greene) [1091123]
-- [ethernet] ixgbe: fix ixgbe_stop_mac_link_on_d3_82599 to check mng correctly (John Greene) [1091123]
-- [ethernet] ixgbe: check Core Clock Disable bit (John Greene) [1091123]
-- [ethernet] ixgbe: fix errors related to protected AUTOC calls (John Greene) [1091123]
-- [ethernet] ixgbe: Convert uses of __constant_<foo> to <foo> (John Greene) [1091123]
-- [ethernet] ixgbe: Don't receive packets when the napi budget == 0 (John Greene) [1091123]
-- [ethernet] ixgbe: add ixgbe_write_pci_cfg_word with ixgbe_removed check (John Greene) [1091123]
-- [ethernet] ixgbe: fix some multiline hw_dbg prints (John Greene) [1091123]
-- [ethernet] ixgbe: fixup header for ixgbe_set_rxpba_82598 (John Greene) [1091123]
-- [ethernet] ixgbe: add Linux NICS mailing list to contact info (John Greene) [1091123]
-- [ethernet] ixgbe: move setting rx_pb_size into get_invariants (John Greene) [1091123]
-- [ethernet] ixgbe: Fix format string in ixgbe_fcoe.c (John Greene) [1091123]
-- [ethernet] ixgbe: ixgbe calls skb_set_hash (John Greene) [1091123]
-- [ethernet] ixgbe: implement SIOCGHWTSTAMP ioctl (John Greene) [1091123]
-- [ethernet] ixgbe: Check config reads for removal (John Greene) [1091123]
-- [ethernet] ixgbe: Fix up some ethtool results when adapter is removed (John Greene) [1091123]
-- [ethernet] ixgbe: Restore hw_addr in LER recovery paths (John Greene) [1091123]
-- [ethernet] ixgbe: Additional adapter removal checks (John Greene) [1091123]
-- [ethernet] ixgbe: Check for adapter removal on register writes (John Greene) [1091123]
-- [ethernet] ixgbe: Check register reads for adapter removal (John Greene) [1091123]
-- [ethernet] ixgbe: Use static inlines instead of macros (John Greene) [1091123]
-- [ethernet] ixgbe: Add check for FW veto bit (John Greene) [1091123]
-- [ethernet] ixgbe: fix bit toggled for 82599 reset fix (John Greene) [1091123]
-- [ethernet] ixgbe: collect all 82599 AUTOC code in one function (John Greene) [1091123]
-- [ethernet] ixgbe: Remove extern from function prototypes (John Greene) [1091123]
-- [ethernet] ixgbe: fix to use correct timeout interval for memory read completion (John Greene) [1091123]
-- [ethernet] ixgbe: Add WoL support for a new device (John Greene) [1091123]
-- [ethernet] ixgbe: don't use magic size number to assign ptp_caps.name (John Greene) [1091123]
-- [ethernet] ixgbe: modify behavior on receiving a HW ECC error (John Greene) [1091123]
-- [ethernet] ixgbe: Use pci_enable_msix_range() instead of pci_enable_msix() (John Greene) [1091123]
-- [ethernet] ixgbe: bump version number (John Greene) [1091123]
-- [ethernet] ixgbe: add braces around else condition in ixgbe_qv_lock_* calls (John Greene) [1091123]
-- [ethernet] ixgbe: fix qv_lock_napi call in ixgbe_napi_disable_all (John Greene) [1091123]
-- [ethernet] ixgbe: Reduce memory consumption with larger page sizes (John Greene) [1091123]
-- [ethernet] ixgbe: Cleanup the use of tabs and spaces (John Greene) [1091124 1091123]
-
-* Fri Sep 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-158.el7]
-- [net] ipv4: implement igmp_qrv sysctl to tune igmp robustness variable (Hannes Frederic Sowa) [1110118]
-- [net] ipv6: add sysctl_mld_qrv to configure query robustness variable (Hannes Frederic Sowa) [1110118]
-- [net] rtnetlink: wait for unregistering devices in rtnl_link_unregister() (Florian Westphal) [1133741]
-- [net] netns: Delay default_device_exit_batch until no devices are unregistering (Florian Westphal) [1133741]
-- [net] netfilter: ctnetlink: fix refcnt leak in dying/unconfirmed list dumper (Florian Westphal) [1043012]
-- [net] netfilter: ctnetlink: fix dumping of dying/unconfirmed conntracks (Florian Westphal) [1043012]
-- [net] netfilter: nf_conntrack: initialize net.ct.generation (Florian Westphal) [1043012]
-- [net] netfilter: conntrack: Fix UP builds (Florian Westphal) [1043012]
-- [net] netfilter: conntrack: remove central spinlock nf_conntrack_lock (Florian Westphal) [1043012]
-- [net] netfilter: conntrack: seperate expect locking from nf_conntrack_lock (Florian Westphal) [1043012]
-- [net] netfilter: avoid race with exp->master ct (Florian Westphal) [1043012]
-- [net] netfilter: conntrack: spinlock per cpu to protect special lists (Florian Westphal) [1043012]
-- [net] netfilter: trivial code cleanup and doc changes (Florian Westphal) [1043012]
-- [net] sctp: fix ABI mismatch through sctp_assoc_to_state helper (Daniel Borkmann) [1135389]
-- [net] tcp: tsq: fix nonagle handling (Jiri Pirko) [1134402]
-- [netdrv] veth: extend features to support tunneling (Florian Westphal) [1098138]
-- [net] openvswitch: fix panic with multiple vlan headers (Jiri Benc) [1133109]
-- [net] netfilter: synproxy target: restrict to INPUT/FORWARD (Jesper Brouer) [1081339]
-- [net] fix rtnl notification in atomic context (Jiri Pirko) [1113925]
-- [net] always advertise rx_flags changes via netlink (Jiri Pirko) [1113925]
-- [net] update __dev_notify_flags() to send rtnl msg (Jiri Pirko) [1113925]
-
-* Fri Sep 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-157.el7]
-- [scsi] fusion: Remove use of DEF_SCSI_QCMD (Tomas Henzl) [1041675]
-- [scsi] fusion: Add free msg frames to the head, not tail of list (Tomas Henzl) [1041675]
-- [scsi] mpt2sas: Add free smids to the head, not tail of list (Tomas Henzl) [1041675]
-- [scsi] mpt2sas: Remove use of DEF_SCSI_QCMD (Tomas Henzl) [1041675]
-- [scsi] mpt2sas: Remove uses of serial_number (Tomas Henzl) [1041675]
-- [scsi] mpt3sas: Remove use of DEF_SCSI_QCMD (Tomas Henzl) [1041675]
-- [scsi] mpt3sas: Remove uses of serial_number (Tomas Henzl) [1041675]
-- [scsi] qla4xxx: 5.04.00.04.07.01-k0 (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Improve loopback failure messages (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: from treewide: fix comments and printk msgs (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Use kmemdup instead of kmalloc + memcpy (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Fix smatch warning in func qla4xxx_conn_get_param (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Fix smatch warning in func qla4xxx_get_ep_param (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Fix memory leak for ha->saved_acb (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Export sysfs DDBs from DPC handler (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Disable INTx interrupt for ISP82XX (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Check for correct return status (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Move qla4_8xxx_ms_mem_write_128b to ql4_nx.c (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Added PEX DMA Support for ISP8022 Adapter (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Added new opcodes for 84XX Minidump template (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Add support of 0xFF capture mask for minidump (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Change default capture to firmware defined capture mask (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Add support for ISCSI_PARAM_LOCAL_IPADDR sysfs attr (Chad Dupuis) [1089349]
-- [scsi] scsi_transport_iscsi: Export ISCSI_PARAM_LOCAL_IPADDR attr for iscsi_connection (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Add host statistics support (Chad Dupuis) [1089349]
-- [scsi] scsi_transport_iscsi: Add host statistics support (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Added support for Diagnostics MBOX command (Chad Dupuis) [1089349]
-- [scsi] qla2xxx: Update version number to 8.07.00.08.07.1-k (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove wait for online from host reset handler (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Do logins from a chip reset in DPC thread instead of the error handler thread (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove mapped vp index iterator macro dead code (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add MBC option for fast SFP data access (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix beacon blink logic for ISP26xx/83xx (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Delay driver unload if there is any pending activity going on (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Check the QLA8044_CRB_DRV_ACTIVE_INDEX register when we are not the owner of the reset (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Adjust adapter reset routine to the changes in firmware specification for ISPFx00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: IOCB data should be copied to I/O mem using memcpy_toio (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: ISP8044 poll ipmdio bus timeout improvement (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove unnecessary printk_ratelimited from qla_nx2.c (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Include <delay.h> file for msleep declartion in qla_nx2.c file (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Use proper log message for flash lock failed error (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Decrease pci access for response queue processing for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Change copyright year to 2014 in all the source files (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Enable fw_dump_size for ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Introduce fw_dump_flag to track fw dump progress (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove unnecessary delays from fw dump code path (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Track the process when the ROM_LOCK failure happens (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add ISP8044 serdes bsg interface (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Check for peg alive counter and clear any outstanding mailbox command (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Support of new firmware dump opcodes QLA8044_RDDFE(38), QLA8044_RDMDIO(39), QLA8044_POLLWR(40) (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Allow the next firmware dump if the previous dump capture fails for ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Log when device state is moved to failed state (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Do not schedule reset when one is already active when receiving an invalid status handle (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Wait for reset completion without lock for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Re-sync module parameter descriptions with the code (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: fix error handling of qla2x00_mem_alloc() (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add IOCB Abort command asynchronous handling (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix Task Management command asynchronous handling (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Correct the port no assignment for ISP82XX (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Read capture firmware dump on mailbox timeout for ISP8044 and ISP82XX (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Simplify the ISPFX00 interrupt handler code for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Avoid poisoning in the response queue for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove ISP_ABORT_NEEDED and ISP_ABORT_RETRY checks from watchdog function for ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove Marker type IOCB logic for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Properly handle 32 bit mailbox register for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Enable the Flash Access Control (FAC) mailbox command (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Select correct request queue for error type IOCB for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove init control block related dead code for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Use proper message for Non owner reset ACK Timeout (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Replace constant value for IOCTL IOCB abort execution status with a macro for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add handling for boot indication progress AENs for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add mutex around optrom calls to serialize accesses (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Poll during initialization for ISP25xx and ISP83xx (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix multiqueue MSI-X registration (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix warning reported by smatch (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Replace a constant with a macro definition for host->canqueue assigmnment (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Reset nic_core_reset_owner on moving from COLD to READY for ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Only complete dcbx_comp and lb_portup_comp for virtual port index 0 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Use scnprintf() instead of snprintf() in the sysfs handlers (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Use the correct mailbox registers when acknowledging an IDC request on ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add changes to obtain ISPFX00 adapters product information in accordance with firmware update (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add logic to abort BSG commands for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Clear RISC INT reg only for an event and not always while polling (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix undefined behavior in call to snprintf() (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add BSG interface for read/write serdes register (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix issue with not displaying node name after system reboot (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Don't consider the drivers knocked out of IDC participation for future reset recovery process (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add BPM support for ISP25xx (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Correctly set mailboxes for extended init control block (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Disable INTx interrupt for ISP82XX (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Honor execute firmware failures (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Print proper QLAFX00 product name at probe (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: print MAC via pMR (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Correction to message ids (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Correctly print out/in mailbox registers (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add a new interface to update versions (Chad Dupuis) [1089346]
-
-* Fri Sep 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-156.el7]
-- [tty] hvc_console: Fix wakeup of HVC thread on hvc_kick() (Steve Best) [1123045]
-- [tty] hvc_opal: Kick the HVC thread on OPAL console events (Steve Best) [1123045]
-- [powerpc] perf/hv-24x7: Catalog version number is be64, not be32 (Gustavo Duarte) [947159]
-- [powerpc] perf/hv-24x7: Remove [static 4096], sparse chokes on it (Gustavo Duarte) [947159]
-- [powerpc] perf/hv-24x7: Use (unsigned long) not (u32) values when calling plpar_hcall_norets() (Gustavo Duarte) [947159]
-- [powerpc] perf/hv-gpci: Make device attr static (Gustavo Duarte) [947159]
-- [powerpc] perf/hv_gpci: Probe failures use pr_debug(), and padding reduced (Gustavo Duarte) [947159]
-- [powerpc] perf/hv_24x7: Probe errors changed to pr_debug(), padding fixed (Gustavo Duarte) [947159]
-- [Documentation] powerpc/perf/hv_{gpci, 24x7}: Add documentation of device attributes (Gustavo Duarte) [947159]
-- [powerpc] perf: Add kconfig option for hypervisor provided counters (Gustavo Duarte) [947159]
-- [powerpc] perf: Add support for the hv 24x7 interface (Gustavo Duarte) [947159]
-- [powerpc] perf: Add support for the hv gpci (get performance counter info) interface (Gustavo Duarte) [947159]
-- [powerpc] perf: Add macros for defining event fields & formats (Gustavo Duarte) [947159]
-- [powerpc] perf: Add a shared interface to get gpci version and capabilities (Gustavo Duarte) [947159]
-- [powerpc] perf: Add 24x7 interface headers (Gustavo Duarte) [947159]
-- [powerpc] perf: Add hv_gpci interface header (Gustavo Duarte) [947159]
-- [powerpc] Add hvcalls for 24x7 and gpci (Get Performance Counter Info) (Gustavo Duarte) [947159]
-- [ethernet] sfc: Remove DEFINE_PCI_DEVICE_TABLE macro use (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Use __iowrite64_copy instead of a slightly different local function (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Add support for busy polling (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Add per-queue statistics in ethtool (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: add extra RX drop counters for nodesc_trunc and noskb_drop (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Add 40G link capability decoding (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Adding PCI ID for Solarflare 7000 series 40G network adapter (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: fix calling of free_irq with already free vector (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: get rid of SET_ETHTOOL_OPS (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: On MCDI timeout, issue an FLR (and mark MCDI to fail-fast) (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Call efx_set_channels() before efx->type->dimension_resources() (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Don't receive packets when the napi budget == 0 (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: check for NULL efx->ptp_data in efx_ptp_event (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Use pci_enable_msix_range() instead of pci_enable_msix() (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Add/remove blank lines to taste (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Fail self-test with -EBUSY, not -EIO, if the device is busy (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Cosmetic changes to self-test from the out-of-tree driver (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Update product naming (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Use canonical pointer type for MAC address in efx_set_mac_address() (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Rename 'use_options' variable in tso_start() to clearer 'use_opt_desc' (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Preserve rx_frm_trunc counters when resizing DMA rings (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Correct comment about number of TX queues used on EF10 (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Remove unused definitions of EF10 user-mode DMA descriptors (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Replace TSOH_OFFSET with the equivalent NET_IP_ALIGN (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Rewrite adjustment of PPS event in a clearer way (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Cache skb->data in local variable in efx_ptp_rx() (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Removed adhoc scheme to rate limit PTP event queue overflow message (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: fix build warning in ethernet/sfc/tx.c (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Use the correct maximum TX DMA ring size for SFC9100 (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Fix transposed ptp_{under, over}size_sync_windows statistics (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Change efx_mcdi_reset_port to use ENTITY_RESET MC command (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: calls skb_set_hash (Nikolay Aleksandrov) [1110888]
-- [iommu] vt-d: Use correct domain id to flush virtual machine domains (Myron Stowe) [1136539]
-- [iommu] Fix IOMMU sysfs stubs (Myron Stowe) [1136539]
-- [iommu] Fix compile error in iommu-sysfs.c (Myron Stowe) [1136539]
-- [pci] Add bridge DMA alias quirk for Intel 82801 bridge (Myron Stowe) [1136539]
-- [iommu] amd: Add sysfs support (Myron Stowe) [1136539]
-- [iommu] vt-d: Make use of IOMMU sysfs support (Myron Stowe) [1136539]
-- [iommu] Add sysfs support for IOMMUs (Myron Stowe) [1136539]
-- [iommu] core: Make iommu_group_get_for_dev() more robust (Myron Stowe) [1136537]
-- [iommu] Remove pci.h (Myron Stowe) [1136537]
-- [iommu] vt-d: Update to use PCI DMA aliases (Myron Stowe) [1136537]
-- [iommu] vt-d: Use iommu_group_get_for_dev() (Myron Stowe) [1136537]
-- [iommu] amd: Use iommu_group_get_for_dev() (Myron Stowe) [1136537]
-- [iommu] amd: Update to use PCI DMA aliases (Myron Stowe) [1136537]
-- [iommu] core: Create central IOMMU group lookup/creation interface (Myron Stowe) [1136537]
-- [iommu] vt-d: Suppress compiler warnings (Myron Stowe) [1136537]
-- [iommu] vt-d: Fix reference count in iommu_prepare_isa (Myron Stowe) [1136537]
-- [iommu] vt-d: fix bug in handling multiple RMRRs for the same PCI device (Myron Stowe) [1136537]
-- [pci] Add bridge DMA alias quirk for ITE bridge (Myron Stowe) [1136537]
-- [pci] Add bridge DMA alias quirk for ASMedia and Tundra bridges (Myron Stowe) [1136537]
-- [pci] Add support for PCIe-to-PCI bridge DMA alias quirks (Myron Stowe) [1136537]
-- [pci] Add function 1 DMA alias quirk for Marvell devices (Myron Stowe) [1136537]
-- [pci] Add function 0 DMA alias quirk for Ricoh devices (Myron Stowe) [1136537]
-- [pci] Add support for DMA alias quirks (Myron Stowe) [1136537]
-- [pci] Convert pci_dev_flags definitions to bit shifts (Myron Stowe) [1136537]
-- [pci] Add DMA alias iterator (Myron Stowe) [1136537]
-- [iommu] amd: fix enabling exclusion range for an exact device (Myron Stowe) [1129880 1087643]
-- [iommu] amd: Take mmap_sem when calling get_user_pages (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: fix bug in matching PCI devices with DRHD/RMRR descriptors (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix get_domain_for_dev() handling of upstream PCIe bridges (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: fix memory leakage caused by commit ea8ea46 (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix error handling in ANDD processing (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: returning free pointer in get_domain_for_dev() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Only call dmar_acpi_dev_scope_init() if DRHD units present (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Check for NULL pointer in dmar_acpi_dev_scope_init() (Myron Stowe) [1129880 1087643]
-- [iommu] amd: Fix logic to determine and checking max PASID (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Include ACPI devices in iommu=pt (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Finally enable translation for non-PCI devices (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove to_pci_dev() in intel_map_page() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove pdev from intel_iommu_attach_device() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove pdev from iommu_no_mapping() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make domain_add_dev_info() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make domain_remove_one_dev_info() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Rename 'hwdev' variables to 'dev' now that that's the norm (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove some pointless to_pci_dev() calls (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make get_valid_domain_for_dev() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make iommu_should_identity_map() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Handle RMRRs for non-PCI devices (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make get_domain_for_dev() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make domain_context_mapp{ed, ing}() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make device_to_iommu() cope with non-PCI devices (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make identity_mapping() take struct device not struct pci_dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove segment from struct device_domain_info() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Store PCI segment number in struct intel_iommu (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove device_to_iommu() call from domain_remove_dev_info() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Simplify iommu check in domain_remove_one_dev_info() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Always store iommu in device_domain_info (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Use domain_remove_one_dev_info() in domain_add_dev_info() error path (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: use dmar_insert_dev_info() from dma_add_dev_info() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Stop dmar_insert_dev_info() freeing domains on losing race (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Pass iommu to domain_context_mapping_one() and iommu_support_dev_iotlb() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Use struct device in device_domain_info, not struct pci_dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make dmar_insert_dev_info() take struct device instead of struct pci_dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make iommu_dummy() take struct device instead of struct pci_dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Add ACPI devices into dmaru->devices[] array (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Change scope lists to struct device, bus, devfn (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Allocate space for ACPI devices (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Parse ANDD records (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Add ACPI namespace device reporting structures (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Be less pessimistic about domain coherency where possible (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Honour intel_iommu=sp_off for non-VMM domains (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Clean up and fix page table clear/free behaviour (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Clean up size handling for intel_iommu_unmap() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Update IOMMU state when memory hotplug happens (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Unify the way to process DMAR device scope array (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Update DRHD/RMRR/ATSR device scope caches when PCI hotplug happe (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Use RCU to protect global resources in interrupt context (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Introduce a rwsem to protect global data structures (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Introduce macro for_each_dev_scope() to walk device scope entrie (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix error in detect ATS capability (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Check for NULL pointer when freeing IOMMU data structure (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix incorrect iommu_count for si_domain (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Reduce duplicated code to handle virtual machine domains (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Free resources if failed to create domain for PCIe endpoint (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Simplify function get_domain_for_dev() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Move private structures and variables into intel-iommu.c (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Factor out dmar_alloc_dev_scope() for later reuse (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Avoid caching stale domain_device_info when hot-removing PCI dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Avoid caching stale domain_device_info and fix memory leak (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Avoid double free of g_iommus on error recovery path (Myron Stowe) [1129880 1087643]
-- [iommu] amd: Fix PASID format in INVALIDATE_IOTLB_PAGES command (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix signedness bug in alloc_irte() (Myron Stowe) [1129808]
-- [iommu] vt-d: free all resources if failed to initialize DMARs (Myron Stowe) [1129808]
-- [iommu] vt-d: clean sparse warnings (Myron Stowe) [1129808]
-- [iommu] vt-d: fix wrong return value of dmar_table_init() (Myron Stowe) [1129808]
-- [iommu] vt-d: release invalidation queue when destroying IOMMU unit (Myron Stowe) [1129808]
-- [iommu] vt-d: fix access after free issue in function free_dmar_iommu() (Myron Stowe) [1129808]
-- [iommu] vt-d: keep shared resources when failed to initialize iommu devices (Myron Stowe) [1129808]
-- [iommu] vt-d: fix invalid memory access when freeing DMAR irq (Myron Stowe) [1129808]
-- [iommu] vt-d: simplify code with existing macros (Myron Stowe) [1129808]
-- [iommu] vt-d: use defined macro instead of hardcoding (Myron Stowe) [1129808]
-- [iommu] vt-d: mark internal functions as static (Myron Stowe) [1129808]
-- [iommu] vt-d: clean up unused code (Myron Stowe) [1129808]
-- [iommu] vt-d: check suitable flag in function detect_intel_iommu() (Myron Stowe) [1129808]
-- [iommu] vt-d: print correct domain id of static identity domain (Myron Stowe) [1129808]
-- [iommu] vt-d: refine support of 64bit guest address (Myron Stowe) [1129808]
-- [iommu] vt-d: fix resource leakage on error recovery path in iommu_init_domain (Myron Stowe) [1129808]
-- [iommu] vt-d: fix a race window in allocating domain ID for virtual machines (Myron Stowe) [1129808]
-- [iommu] vt-d: fix PCI device reference leakage on error recovery path (Myron Stowe) [1129808]
-- [iommu] vt-d: use dedicated bitmap to track remapping entry allocation status (Myron Stowe) [1129808]
-- [iommu] Rename domain_has_cap to iommu_domain_has_cap (Myron Stowe) [1129808]
-- [iommu] vt-d: Use dev_is_pci() to check whether it is pci device (Myron Stowe) [1129808]
-- [iommu] amd: Use dev_is_pci() to check whether it is pci device (Myron Stowe) [1129808]
-- [iommu] add missing include (Myron Stowe) [1129808]
-- [iommu] vt-d: Mark function eoi_ioapic_pin_remapped() as static in irq_remappi (Myron Stowe) [1129808]
-- [iommu] vt-d: Mark functions as static in intel_irq_remapping.c (Myron Stowe) [1129808]
-- [iommu] vt-d: Mark functions as static in dmar.c (Myron Stowe) [1129808]
-- [iommu] add IOMMU_EXEC flag for safely allowing XN mappings (Myron Stowe) [1129808]
-- [iommu] acpica: Update DMAR table definitions (Myron Stowe) [1129808]
-
-* Wed Sep 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-155.el7]
-- [tools] perf/bench: Fix NULL pointer dereference in "perf bench all" (Jiri Olsa) [1133083]
-- [tools] perf/bench/numa: Make no args mean 'run all tests' (Jiri Olsa) [1133083]
-- [tools] perf/machine: Use map as success in ip__resolve_ams (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix crash in elf_section_by_name (Jiri Olsa) [1133083]
-- [tools] perf/trace: Decode architecture-specific signal numbers (Jiri Olsa) [1133083]
-- [tools] perf: Fix strict alias issue for find_first_bit (Jiri Olsa) [1133083]
-- [tools] perf: fix BFD detection on opensuse (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Destroy unused symsrcs (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Check availability of annotate when processing samples (Jiri Olsa) [1133083]
-- [tools] perf/trace: Fix ioctl 'request' beautifier build problems on !(i386 (Jiri Olsa) [1133083]
-- [tools] perf/trace: Add fallback definition of EFD_SEMAPHORE (Jiri Olsa) [1133083]
-- [tools] perf/list: Fix checking for supported events on older kernels (Jiri Olsa) [1133083]
-- [tools] perf: Handle PERF_RECORD_HEADER_EVENT_TYPE properly (Jiri Olsa) [1133083]
-- [tools] perf/probe: Do not add offset twice to uprobe address (Jiri Olsa) [1133083]
-- [tools] perf/buildid-cache: Check relocation when checking for existing kcore (Jiri Olsa) [1133083]
-- [tools] perf: Adjust kallsyms for relocated kernel (Jiri Olsa) [1133083]
-- [tools] perf/tests: No need to set up ref_reloc_sym (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Prevent the use of kcore if the kernel has moved (Jiri Olsa) [1133083]
-- [tools] perf/record: Get ref_reloc_sym from kernel map (Jiri Olsa) [1133083]
-- [tools] perf/machine: Set up ref_reloc_sym in machine__create_kernel_maps() (Jiri Olsa) [1133083]
-- [tools] perf/machine: Add machine__get_kallsyms_filename() (Jiri Olsa) [1133083]
-- [tools] perf: Add kallsyms__get_function_start() (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix symbol annotation for relocated kernel (Jiri Olsa) [1133083]
-- [tools] perf: Fix AAAAARGH64 memory barriers (Jiri Olsa) [1133083]
-- [tools] perf: Demangle kernel and kernel module symbols too (Jiri Olsa) [1133083]
-- [tools] perf/doc: Remove mention of non-existent set_perf_event_pending() from design.txt (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Load map before using map->map_ip() (Jiri Olsa) [1133083]
-- [tools] perf: Fix traceevent plugin path definitions (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix JIT symbol resolution on heap (Jiri Olsa) [1133083]
-- [tools] perf/stat: Fix memory corruption of xyarray when cpumask is used (Jiri Olsa) [1133083]
-- [tools] perf/evsel: Remove duplicate member zeroing after free (Jiri Olsa) [1133083]
-- [tools] perf: Ensure sscanf does not overrun the "mem" field (Jiri Olsa) [1133083]
-- [tools] perf/stat: fix NULL pointer reference bug with event unit (Jiri Olsa) [1133083]
-- [tools] perf: Add support for the xtensa architecture (Jiri Olsa) [1133083]
-- [tools] perf/session: Free cpu_map in perf_session__cpu_bitmap (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Fix wrong SVG height (Jiri Olsa) [1133083]
-- [tools] perf: Remove unnecessary callchain cursor state restore on unmatch (Jiri Olsa) [1133083]
-- [tools] perf/callchain: Spare double comparison of callchain first entry (Jiri Olsa) [1133083]
-- [tools] perf: Do proper comm override error handling (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Export elf_section_by_name and reuse (Jiri Olsa) [1133083]
-- [tools] perf/probe: Release all dynamically allocated parameters (Jiri Olsa) [1133083]
-- [tools] perf/probe: Release allocated probe_trace_event if failed (Jiri Olsa) [1133083]
-- [tools] perf: Add 'build-test' make target (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when xen plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when scsi plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when jbd2 plugin is is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when cfg80211 plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when mac80211 plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when sched_switch plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when kvm plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when kmem plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when hrtimer plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when function plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add pevent_unregister_print_function() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add pevent_unregister_event_handler() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: fix pointer-integer size mismatch (Jiri Olsa) [1133083]
-- [tools] perf/hists: Convert hist entry functions to use struct he_stat (Jiri Olsa) [1133083]
-- [tools] perf: Factor out sample__resolve_callchain() (Jiri Olsa) [1133083]
-- [tools] perf: Remove symbol_conf.use_callchain check (Jiri Olsa) [1133083]
-- [tools] perf: Fix cross building (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Make plugin unload function receive pevent (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() finally!! (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in trace_seq_init() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Check return value of realloc() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add state member to struct trace_seq (Jiri Olsa) [1133083]
-- [tools] perf: Fix build error due to zfree() cast (Jiri Olsa) [1133083]
-- [tools] perf/record: Rename --initial-delay to --delay (Jiri Olsa) [1133083]
-- [tools] perf/record: Rename --no-delay to --no-buffering (Jiri Olsa) [1133083]
-- [tools] perf: Remove unused test-volatile-register-var.c (Jiri Olsa) [1133083]
-- [tools] perf/probe: Fix build when DWARF support libraries not present (Jiri Olsa) [1133083]
-- [tools] perf/diff: Color the Weighted Diff column (Jiri Olsa) [1133083]
-- [tools] perf/diff: Color the Ratio column (Jiri Olsa) [1133083]
-- [tools] perf/diff: Color the Delta column (Jiri Olsa) [1133083]
-- [tools] perf: Generalize percent_color_snprintf() (Jiri Olsa) [1133083]
-- [tools] include: Include <linux/compiler.h> from asm/bug.h (Jiri Olsa) [1133083]
-- [tools] perf/record: Add --initial-delay option (Jiri Olsa) [1133083]
-- [tools] perf: Use the DWARF unwind info only if loaded (Jiri Olsa) [1133083]
-- [tools] perf: Add test for building detached source tarballs (Jiri Olsa) [1133083]
-- [tools] perf: Include tools/lib/api/ in MANIFEST (Jiri Olsa) [1133083]
-- [tools] include: Move perf's bug.h to a generic place (Jiri Olsa) [1133083]
-- [tools] include: Define likely/unlikely in linux/compiler.h (Jiri Olsa) [1133083]
-- [tools] include: Move perf's linux/compiler.h to a generic place (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Introduce evlist__for_each() & friends (Jiri Olsa) [1133083]
-- [tools] perf/report: Move histogram entries collapsing to separate function (Jiri Olsa) [1133083]
-- [tools] perf/report: Move hist browser selection code to separate function (Jiri Olsa) [1133083]
-- [tools] perf/report: Move logic to warn about kptr_restrict'ed kernels to separate function (Jiri Olsa) [1133083]
-- [tools] perf: Comment typo fix (Jiri Olsa) [1133083]
-- [tools] perf/stat: Fix --delay option in man page (Jiri Olsa) [1133083]
-- [tools] perf: Make perf_event__synthesize_mmap_events global (Jiri Olsa) [1133083]
-- [tools] perf/machine: Fix id_hdr_size initialization (Jiri Olsa) [1133083]
-- [tools] perf: Automate setup of FEATURE_CHECK_(C (Jiri Olsa) [1133083]
-- [tools] perf/trace: Pack 'struct trace' (Jiri Olsa) [1133083]
-- [tools] perf/header: Pack 'struct perf_session_env' (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Shut up plugins make message (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Replace tabs with spaces for all non-commands statements (Jiri Olsa) [1133083]
-- [tools] perf/tests: Fix installation tests path setup (Jiri Olsa) [1133083]
-- [tools] perf: Move arch setup into seprate Makefile (Jiri Olsa) [1133083]
-- [tools] perf/stat: Remove misplaced __maybe_unused (Jiri Olsa) [1133083]
-- [tools] perf/tests: Fixup leak on error path in parse events test (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Auto unmap on destructor (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Close fds on destructor (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Move destruction of maps to evlist destructor (Jiri Olsa) [1133083]
-- [tools] perf/record: Remove old evsel_list usage (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Move the SIGUSR1 error reporting logic to prepare_workload (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Send the errno in the signal when workload fails (Jiri Olsa) [1133083]
-- [tools] perf/stat: Don't show counter information when workload fails (Jiri Olsa) [1133083]
-- [tools] perf: Use zfree to help detect use after free bugs (Jiri Olsa) [1133083]
-- [tools] perf: Introduce zfree (Jiri Olsa) [1133083]
-- [tools] perf: No need to test against NULL before calling free() (Jiri Olsa) [1133083]
-- [tools] perf/ui/tui: Implement header window (Jiri Olsa) [1133083]
-- [tools] perf/ui/tui: Split help message for perf top and report (Jiri Olsa) [1133083]
-- [tools] perf/ui/tui: Protect windows by ui__lock (Jiri Olsa) [1133083]
-- [tools] perf/probe: Support basic dwarf-based operations on uprobe events (Jiri Olsa) [1133083]
-- [tools] perf/probe: Expand given path to absolute path (Jiri Olsa) [1133083]
-- [tools] perf/config: Ignore generated files in feature-checks (Jiri Olsa) [1133083]
-- [tools] perf: Do not synthesize the treads of default guest (Jiri Olsa) [1133083]
-- [tools] perf: Use machine->pid for tgid if machine is guest (Jiri Olsa) [1133083]
-- [tools] perf: Set event->header.misc to PERF_RECORD_MISC_GUEST_USER if machine is guest (Jiri Olsa) [1133083]
-- [tools] perf: Find the proc info under machine->root_dir (Jiri Olsa) [1133083]
-- [tools] perf: Add support for PERF_RECORD_MISC_GUEST_USER in thread__find_addr_map() (Jiri Olsa) [1133083]
-- [tools] perf/report: Print session information only if --stdio is given (Jiri Olsa) [1133083]
-- [tools] perf/report: Use pr_*() functions where applicable (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Add 'machine' member to struct addr_location (Jiri Olsa) [1133083]
-- [tools] perf/mem: Remove unused parameter from dump_raw_samples() (Jiri Olsa) [1133083]
-- [tools] perf/scripting/perl: Shorten function signatures (Jiri Olsa) [1133083]
-- [tools] perf/scripting/python: Shorten function signatures (Jiri Olsa) [1133083]
-- [tools] perf/ui/browser: Remove misplaced __maybe_unused (Jiri Olsa) [1133083]
-- [tools] perf/report: Rename 'perf_report' to 'report' (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global 'O' processing code (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global QUIET_CLEAN build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global QUIET_INSTALL build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global QUIET_LINK build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add global QUIET_CC_FPIC build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global QUIET_CC build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Remove print_app_build variable (Jiri Olsa) [1133083]
-- [tools] perf: Making QUIET_(CLEAN (Jiri Olsa) [1133083]
-- [tools] perf/tests: Factor make install tests (Jiri Olsa) [1133083]
-- [tools] perf: Rename 'perf_record_opts' to 'record_opts (Jiri Olsa) [1133083]
-- [tools] perf/record: Rename 'perf_record' to plain 'record' (Jiri Olsa) [1133083]
-- [tools] perf/record: Simplify perf_record__write (Jiri Olsa) [1133083]
-- [tools] perf/record: Use perf_data_file__write for output file (Jiri Olsa) [1133083]
-- [tools] perf/inject: Handle output file via perf_data_file object (Jiri Olsa) [1133083]
-- [tools] perf: Get rid of a duplicate va_end() in error reporting routine (Jiri Olsa) [1133083]
-- [tools] perf/report: Introduce helpers for processing callchains (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Make symbol__inc_addr_samples private (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Adopt methods from hists (Jiri Olsa) [1133083]
-- [tools] perf/top: Use hist_entry__inc_addr_sample (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Add inc_samples method to addr_map_symbol (Jiri Olsa) [1133083]
-- [tools] perf/hists: Leave symbol addr hist bucket auto alloc to symbol layer (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Auto allocate symbol per addr hist buckets (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Introduce pevent_filter_strerror() (Jiri Olsa) [1133083]
-- [tools] perf/hists: Do not pass period and weight to add_hist_entry() (Jiri Olsa) [1133083]
-- [tools] perf/sort: Do not compare dso again (Jiri Olsa) [1133083]
-- [tools] perf/sort: Compare addresses if no symbol info (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in some string conversion functions (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Use consistent name for the DSO binary type member (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add --highlight option (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Clarify method to get DSO binary_type filename (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Remove needless static binary_type array (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add support for topology (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Get number of CPUs from perf header (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Print pid along the name (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add backtrace support to CPU info (Jiri Olsa) [1133083]
-- [tools] Convert to new topic libraries (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Refactor pevent_filter_match() to get rid of die() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Make pevent_filter_add_filter_str() return pevent_errno (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Refactor process_filter() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Refactor create_arg_item() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in reparent_op_arg() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Make add_left() return pevent_errno (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in add_right() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in find_event() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in read_token() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() allocate_arg() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die in add_filter_type() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in show_error() (Jiri Olsa) [1133083]
-- [tools] perf/completion: Complete 'perf kvm' (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Add perf_evlist__to_front() (Jiri Olsa) [1133083]
-- [tools] perf: Fix inverted error verification bug in thread__fork (Jiri Olsa) [1133083]
-- [tools] perf: Move mem_bswap32/64 to util.c (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Add can_select_event() method (Jiri Olsa) [1133083]
-- [tools] perf/header: Allow header->data_offset to be predetermined (Jiri Olsa) [1133083]
-- [tools] perf: Add perf_event_paranoid() (Jiri Olsa) [1133083]
-- [tools] lib/symbol: Start carving out symbol parsing routines from perf (Jiri Olsa) [1133083]
-- [tools] perf/unwinding: Use the per-feature check flags (Jiri Olsa) [1133083]
-- [tools] perf: Add per-feature check flags (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix bug in usage of the basename() function (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Rename filename argument (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Constify some DSO methods parameters (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Set freed members to NULL in dso destructor (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Constify dso->long_name (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Remove open coded management of long_name_allocated member (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Set alloc flag close to setting the long_name (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Remove open coded management of short_name_allocated member (Jiri Olsa) [1133083]
-- [tools] perf/machine: Don't open code assign dso->short_name (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Rename [sl]name_alloc to match the members they refer to (Jiri Olsa) [1133083]
-- [tools] perf/script: Add --header/--header-only options (Jiri Olsa) [1133083]
-- [tools] perf/report: Add --header/--header-only options (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in pevent_filter_clear_trivial() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in pevent_filter_add_filter_str() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in create_arg_item() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in add_event() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in pevent_filter_alloc() (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Make perf kvm diff support --guestmount (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Move code to generate filename for perf-kvm to function (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Fix typo (Jiri Olsa) [1133083]
-- [tools] perf/archive: Remove duplicated 'runs' in man page (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Fix bug in 'stat report' (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Introduce option -v for perf kvm command (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Fix mmap pages rounding to power of 2 (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Fix max mmap_pages (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Remove unnecessary parentheses (Jiri Olsa) [1133083]
-- [tools] perf/record: Fix display of incorrect mmap pages (Jiri Olsa) [1133083]
-- [tools] perf/script: Add an option to print the source line number (Jiri Olsa) [1133083]
-- [tools] perf/script: Fix symoff printing in callchains (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Report better error message on bad function args (Jiri Olsa) [1133083]
-- [tools] perf/trace: Fix summary percentage when processing files (Jiri Olsa) [1133083]
-- [tools] perf/trace: Add support for syscalls vs raw_syscalls (Jiri Olsa) [1133083]
-- [tools] perf/build: Fix install dependency (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Update kvm plugin with is_writable_pte helper (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Remove malloc_or_die from plugin_function.c (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Several cleanups for function plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use pevent_print_func_field in hrtimer_start handler (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use static functions in jbd2 plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Remove malloc_or_die from event-plugin.c (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add cfg80211 plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add scsi plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add xen plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add function plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add sched_switch plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add mac80211 plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add kvm plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add kmem plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add hrtimer plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add jbd2 plugin (Jiri Olsa) [1133083]
-- [tools] perf: Overload pr_stat traceevent print function (Jiri Olsa) [1133083]
-- [tools] perf: Add trace-event global object for tracepoint interface (Jiri Olsa) [1133083]
-- [tools] perf: Add trace-event object (Jiri Olsa) [1133083]
-- [tools] perf: Add filename__read_str util function (Jiri Olsa) [1133083]
-- [tools] perf: Add build and install plugins targets (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Harmonize the install messages in lib-traceevent (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Change pevent_parse_format to include pevent handle (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add traceevent_host_bigendian function (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add plugin build support (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add plugin support (Jiri Olsa) [1133083]
-- [tools] perf/script: Do not call perf_event__preprocess_sample() twice) (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix random fd closing with no libelf (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Update the 'record' man page entry for new --guest/--host behavior (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Fix spurious '=' use in man page (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Add more detail about buildid-list in man page (Jiri Olsa) [1133083]
-- [tools] perf/target: Move the checking of which map function to call into function (Jiri Olsa) [1133083]
-- [tools] perf: Remove condition in machine__get_kernel_start_addr (Jiri Olsa) [1133083]
-- [tools] perf: Remove stackprotector feature check (Jiri Olsa) [1133083]
-- [tools] perf: Do not disable source line lookup just because of 1 failure (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Retain symbol source file name to lookup source line numbers (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Retain bfd reference to lookup source line numbers (Jiri Olsa) [1133083]
-- [tools] perf: Use asprintf instead of malloc plus snprintf (Jiri Olsa) [1133083]
-- [tools] perf/trace: Honour -m option (Jiri Olsa) [1133083]
-- [tools] perf: Include test-stackprotector-all.c in test-all (Jiri Olsa) [1133083]
-- [tools] perf: Correct the message in feature-libnuma checking (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Move wake_events list to 'struct timechart' (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Move power_events list to 'struct timechart' (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Move all_data per_pid list to 'struct timechart' (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Introduce tool struct (Jiri Olsa) [1133083]
-- [tools] perf: Add perf_data_file__write interface (Jiri Olsa) [1133083]
-- [tools] perf: Add writen function (Jiri Olsa) [1133083]
-- [tools] perf: Fine tune readn function (Jiri Olsa) [1133083]
-- [tools] perf: Use correct return type for readn function (Jiri Olsa) [1133083]
-- [tools] perf/record: Unify data output code into perf_record__write function (Jiri Olsa) [1133083]
-- [tools] perf: Fix tags/TAGS targets rebuilding (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Remove misplaced __maybe_unused (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Remove some needless struct forward declarations (Jiri Olsa) [1133083]
-- [tools] perf/timechart: dynamically determine event fields offset (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix not finding kcore in buildid cache (Jiri Olsa) [1133083]
-- [tools] perf/script: Print mmap[2] events also (Jiri Olsa) [1133083]
-- [tools] perf/script: Print comm, fork and exit events also (Jiri Olsa) [1133083]
-- [tools] perf/script: Print callchains and symbols if they exist (Jiri Olsa) [1133083]
-- [tools] perf: Export setup_list (Jiri Olsa) [1133083]
-- [tools] perf/thread: Move comm_list check into function (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Move idle syms check from top to generic function (Jiri Olsa) [1133083]
-- [tools] perf/evsel: Skip ignored symbols while printing callchain (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add backtrace support (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add support for -P and -T in timechart recording (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Group figures and add title with details (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add support for displaying only tasks related data (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Use proc_num to implement --power-only (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add option to limit number of tasks (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Always try to print at least 15 tasks (Jiri Olsa) [1133083]
-- [tools] perf/record: Default -t option to no inheritance (Jiri Olsa) [1133083]
-- [tools] perf: Add option macro OPT_BOOLEAN_SET (Jiri Olsa) [1133083]
-- [tools] perf: Allow '--inherit' as the negation of '--no-inherit' (Jiri Olsa) [1133083]
-- [tools] perf/record: Make per-cpu mmaps the default (Jiri Olsa) [1133083]
-- [tools] perf/script: Move evname print code to process_event() (Jiri Olsa) [1133083]
-- [tools] perf/completion: Rename file to reflect zsh support (Jiri Olsa) [1133083]
-- [tools] perf/completion: Introduce zsh support (Jiri Olsa) [1133083]
-- [tools] perf/completion: Factor out call to __ltrim_colon_completions (Jiri Olsa) [1133083]
-- [tools] perf/completion: Factor out compgen stuff (Jiri Olsa) [1133083]
-- [tools] perf/completion: Introduce a layer of indirection (Jiri Olsa) [1133083]
-- [tools] perf/top: Make -g refer to callchains (Jiri Olsa) [1133083]
-- [tools] perf/trace: Remove thread summary coloring (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use helper trace-seq in print functions like kernel does (Jiri Olsa) [1133083]
-- [tools] perf/stat: Add event unit and scale support (Jiri Olsa) [1133083]
-- [kernel] perf: Optimize ring-buffer write by depending on control dependencies (Jiri Olsa) [1133083]
-- [x86] perf: Fix leak in uncore_type_init failure paths (Jiri Olsa) [1133083]
-- [kernel] perf: Fix hotplug splat (Jiri Olsa) [1133083]
-- [x86] perf: Fix event scheduling (Jiri Olsa) [1133083]
-- [x86] perf: Fix IVT/SNB-EP uncore CBOX NID filter table (Jiri Olsa) [1133083]
-- [x86] perf: Correctly use FEATURE_PDCM (Jiri Olsa) [1133083]
-- [x86] perf: Fix unknown NMI warning (Jiri Olsa) [1133083]
-- [x86] perf: Fix Userspace RDPMC switch (Jiri Olsa) [1133083]
-- [x86] perf: Add userspace RDPMC quirk for PPro (Jiri Olsa) [1133083]
-- [kernel] uapi: convert u64 to __u64 in exported headers (Jiri Olsa) [1133083]
-- [kernel] perf: Document the new transaction sample type (Jiri Olsa) [1133083]
-- [kernel] perf: Introduce a flag to enable close-on-exec in perf_event_open() (Jiri Olsa) [1133083]
-- [x86] perf: Add Intel RAPL PP1 energy counter support (Jiri Olsa) [1133083]
-- [kernel] perf: Fix PERF_EVENT_IOC_PERIOD to force-reset the period (Jiri Olsa) [1133083]
-- [x86] perf: Add RAPL hrtimer support (Jiri Olsa) [1133083]
-- [x86] perf: Add Intel RAPL PMU support (Jiri Olsa) [1133083]
-- [kernel] perf: Add active_entry list head to struct perf_event (Jiri Olsa) [1133083]
-- [kernel] perf: Fix perf_pmu_migrate_context (Jiri Olsa) [1133083]
-- [kernel] ktime: add ms_to_ktime() and ktime_add_ms() helpers (Jiri Olsa) [1133083]
-- [tools] perf/traceevent: Fix conversion of pointer to integer of different size (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Fix use of multiple options in processing field (Jiri Olsa) [1131394]
-- [tools] perf/header: Fix possible memory leaks in process_group_desc() (Jiri Olsa) [1131394]
-- [tools] perf/header: Fix bogus group name (Jiri Olsa) [1131394]
-- [tools] perf: Tag thread comm as overriden (Jiri Olsa) [1131394]
-- [tools] perf/record: Add an option to force per-cpu mmaps (Jiri Olsa) [1131394]
-- [tools] perf/probe: Add '--demangle'/'--no-demangle' (Jiri Olsa) [1131394]
-- [tools] perf/ui/browser: Fix segfault caused by off by one handling END key (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Limit max callchain using max_stack on DWARF unwinding too (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Introduce perf_evsel__prev() method (Jiri Olsa) [1131394]
-- [tools] perf: Use perf_evlist__{first, last}, perf_evsel__next (Jiri Olsa) [1131394]
-- [tools] perf: Synthesize anon MMAP records again (Jiri Olsa) [1131394]
-- [tools] perf/top: Add missing newline if the 'uid' is invalid (Jiri Olsa) [1131394]
-- [tools] perf: Remove trivial extra semincolon (Jiri Olsa) [1131394]
-- [tools] perf/trace: Tweak summary output (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix feature-libunwind-debug-frame handling (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix timerfd feature check (Jiri Olsa) [1131394]
-- [tools] perf: parse the .debug_frame section in case .eh_frame is not present (Jiri Olsa) [1131394]
-- [tools] perf: Check libunwind for availability of dwarf parsing feature (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Add direct access to dynamic arrays (Jiri Olsa) [1131394]
-- [tools] perf/target: Shorten perf_target__ to target__ (Jiri Olsa) [1131394]
-- [tools] perf/tests: Handle throttle events in 'object code reading' test (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Refactor mmap_pages parsing (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Round mmap pages to power 2 - v2 (Jiri Olsa) [1131394]
-- [tools] perf/record: Fix segfault with --no-mmap-pages (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add summary only option (Jiri Olsa) [1131394]
-- [tools] perf/trace: Simplify '--summary' output (Jiri Olsa) [1131394]
-- [tools] perf/trace: Change syscall summary duration order (Jiri Olsa) [1131394]
-- [tools] perf/tests: Compensate lower sample freq with longer test loop (Jiri Olsa) [1131394]
-- [tools] perf/trace: Fix segfault on perf trace -i perf.data (Jiri Olsa) [1131394]
-- [tools] perf/trace: Separate tp syscall field caching into init routine to be reused (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify fifth argument of mmap() as fd (Jiri Olsa) [1131394]
-- [tools] perf/tests: Use lower sample_freq in sw clock event period test (Jiri Olsa) [1131394]
-- [tools] perf/tests: Check return of perf_evlist__open sw clock event period test (Jiri Olsa) [1131394]
-- [tools] perf/record: Move existing write_output into helper function (Jiri Olsa) [1131394]
-- [tools] perf/record: Use correct return type for write() (Jiri Olsa) [1131394]
-- [tools] perf: Prevent condition that all sort keys are elided (Jiri Olsa) [1131394]
-- [tools] perf/machine: Simplify synthesize_threads method (Jiri Olsa) [1131394]
-- [tools] perf/machine: Introduce synthesize_threads method out of open coded equivalent (Jiri Olsa) [1131394]
-- [tools] perf/record: Synthesize non-exec MMAP records when --data used (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Remove idx parm from constructor (Jiri Olsa) [1131394]
-- [tools] perf/ui/tui/progress: Don't force a refresh during progress update (Jiri Olsa) [1131394]
-- [tools] perf: Remove unneeded include (Jiri Olsa) [1131394]
-- [tools] perf/record: Remove post_processing_offset variable (Jiri Olsa) [1131394]
-- [tools] perf/record: Remove advance_output function (Jiri Olsa) [1131394]
-- [tools] perf/record: Refactor feature handling into a separate function (Jiri Olsa) [1131394]
-- [tools] perf/trace: Don't relookup fields by name in each sample (Jiri Olsa) [1131394]
-- [tools] perf: Fix version when building out of tree (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Ditch evsel->handler.data field (Jiri Olsa) [1131394]
-- [tools] perf: Add required memory barriers (Jiri Olsa) [1131394]
-- [tools] perf: Finish the removal of 'self' arguments (Jiri Olsa) [1131394]
-- [tools] perf: Check maximum frequency rate for record/top (Jiri Olsa) [1131394]
-- [tools] perf/fs: Add procfs support (Jiri Olsa) [1131394]
-- [tools] perf/fs: Rename NAME_find_mountpoint() to NAME__mountpoint() (Jiri Olsa) [1131394]
-- [tools] perf: Factor sysfs code into generic fs object (Jiri Olsa) [1131394]
-- [tools] perf/list: Add usage (Jiri Olsa) [1131394]
-- [tools] perf/list: Remove a level of indentation (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix detection of non-core features (Jiri Olsa) [1131394]
-- [tools] perf/kvm: Disable live command if timerfd is not supported (Jiri Olsa) [1131394]
-- [tools] perf/hists: Consolidate __hists__add_*entry() (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Add pevent_print_func_field() helper function (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Add flags NOHANDLE and PRINTRAW to individual events (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Check for spaces in character array (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Have bprintk output the same as the kernel does (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Handle __print_hex(__get_dynamic_array(fieldname), len) (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: If s is a pointer, check printk formats (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Update printk formats when entered (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Add support for extracting trace_clock in report (Jiri Olsa) [1131394]
-- [tools] perf/stat: Enhance option parse error message (Jiri Olsa) [1131394]
-- [tools] perf/top: Use parse_options_usage() for -s option failure (Jiri Olsa) [1131394]
-- [tools] perf/report: Use parse_options_usage() for -s option failure (Jiri Olsa) [1131394]
-- [tools] perf/report: Postpone setting up browser after parsing options (Jiri Olsa) [1131394]
-- [tools] perf: Show single option when failed to parse (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Synthesize PERF_SAMPLE_TRANSACTION (Jiri Olsa) [1131394]
-- [tools] perf/test: Update "sample parsing" test for PERF_SAMPLE_TRANSACTION (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Add missing overflow check for TRANSACTION (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Always use perf_evsel__set_sample_bit() (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Add a debug print if event buffer mmap fails (Jiri Olsa) [1131394]
-- [tools] perf: Fix libunwind build and feature detection for 32-bit build (Jiri Olsa) [1131394]
-- [tools] perf: Fix 32-bit cross build (Jiri Olsa) [1131394]
-- [tools] perf/script: Set up output options for in-stream attributes (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Add a debug print if perf_event_open fails (Jiri Olsa) [1131394]
-- [tools] perf: Get current comm instead of last one (Jiri Olsa) [1131394]
-- [tools] perf: Compare hists comm by addresses (Jiri Olsa) [1131394]
-- [tools] perf: Add new COMM infrastructure (Jiri Olsa) [1131394]
-- [tools] perf: Add time argument on COMM setting (Jiri Olsa) [1131394]
-- [tools] perf: Use an accessor to read thread comm (Jiri Olsa) [1131394]
-- [tools] perf: Add missing data.h into LIB_H headers (Jiri Olsa) [1131394]
-- [tools] perf/probe: Fix typo (Jiri Olsa) [1131394]
-- [tools] perf/bench: Fix two warnings (Jiri Olsa) [1131394]
-- [tools] perf: Show progress on histogram collapsing (Jiri Olsa) [1131394]
-- [tools] perf/ui/progress: Per progress bar state (Jiri Olsa) [1131394]
-- [tools] perf/ui: Rename ui_progress to ui_progress_ops (Jiri Olsa) [1131394]
-- [tools] perf: Fix non-debug build (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Validate that mmap_pages is not too big (Jiri Olsa) [1131394]
-- [tools] perf: Do not accept parse_tag_value() overflow (Jiri Olsa) [1131394]
-- [tools] perf/inject: Do not repipe attributes to a perf.data file (Jiri Olsa) [1131394]
-- [tools] perf/script: Make perf_script a local variable (Jiri Olsa) [1131394]
-- [tools] perf/sched: Optimize build time (Jiri Olsa) [1131394]
-- [tools] perf/sched: Make struct perf_sched sched a local variable (Jiri Olsa) [1131394]
-- [tools] perf/bench: Change the procps visible command-name of invididual benchmark tests plus cleanups (Jiri Olsa) [1131394]
-- [tools] perf/probe: Find fentry mcount fuzzed parameter location (Jiri Olsa) [1131394]
-- [tools] perf/probe: Support "$vars" meta argument syntax for local variables (Jiri Olsa) [1131394]
-- [tools] perf: Stop using 'self' in some more places (Jiri Olsa) [1131394]
-- [tools] perf/test: Consider PERF_SAMPLE_TRANSACTION in the "sample parsing" test (Jiri Olsa) [1131394]
-- [tools] perf/test: Clarify the "sample parsing" test entry (Jiri Olsa) [1131394]
-- [tools] perf/top: Add --max-stack option to limit callchain stack scan (Jiri Olsa) [1131394]
-- [tools] perf/report: Add --max-stack option to limit callchain stack scan (Jiri Olsa) [1131394]
-- [tools] perf/session: Separating data file properties from session (Jiri Olsa) [1131394]
-- [tools] perf: Add perf_data_file__open interface to data object (Jiri Olsa) [1131394]
-- [tools] perf: Add data object to handle perf data file (Jiri Olsa) [1131394]
-- [tools] perf: Compare dso's also when comparing symbols (Jiri Olsa) [1131394]
-- [tools] perf/callchain: Convert children list to rbtree (Jiri Olsa) [1131394]
-- [tools] perf/list: Show error if tracepoints not available (Jiri Olsa) [1131394]
-- [tools] perf/script: Print addr by default for BTS (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Factor out duplicated mmap code (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Fix perf_evlist__mmap comments (Jiri Olsa) [1131394]
-- [tools] perf: Fix bench/numa.c for 32-bit build (Jiri Olsa) [1131394]
-- [tools] perf: Fix test_on_exit for 32-bit build (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Fix 32-bit build error (Jiri Olsa) [1131394]
-- [tools] perf/session: Add missing members to perf_event__attr_swap() (Jiri Olsa) [1131394]
-- [tools] perf/session: Add missing sample flush for piped events (Jiri Olsa) [1131394]
-- [tools] perf/record: Improve write_output error message (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Add missing decrement in id sample parsing (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Add missing 'mmap2' from debug print (Jiri Olsa) [1131394]
-- [tools] perf/trace: Improve messages related to /proc/sys/kernel/perf_event_paranoid (Jiri Olsa) [1131394]
-- [tools] perf: Introduce filename__read_int helper (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Introduce perf_evlist__strerror_tp method (Jiri Olsa) [1131394]
-- [tools] perf/trace: Improve event processing exit (Jiri Olsa) [1131394]
-- [tools] perf/trace: Use vfs_getname hook if available (Jiri Olsa) [1131394]
-- [tools] perf/trace: Split fd -> pathname array handling (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Fix a mmap and munmap mismatched bug (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Fix a memory leak due to symbol__delete not being used (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Another fix for annotate_browser__callq() (Jiri Olsa) [1131394]
-- [tools] perf/buildid-cache: Add ability to add kcore to the cache (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Fix annotate_browser__callq() (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Add ability to find kcore in build-id cache (Jiri Olsa) [1131394]
-- [tools] perf: Add copyfile_mode() (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Find kcore symbols on other maps (Jiri Olsa) [1131394]
-- [tools] perf/build: Simplify the autodep inclusion rule (Jiri Olsa) [1131394]
-- [tools] perf/build: Improve the 'stackprotector' feature test (Jiri Olsa) [1131394]
-- [tools] perf/build: Remove the volatile-register-var feature check (Jiri Olsa) [1131394]
-- [tools] perf/build: Simplify the libelf logic (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix DPACKAGE definitions for the libbfd et al testcases (Jiri Olsa) [1131394]
-- [tools] perf/build: Pass through DEBUG parameter (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix non-existent build directory handling (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Add map_groups__find_ams() (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Workaround objdump difficulties with kcore (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Validate kcore module addresses (Jiri Olsa) [1131394]
-- [tools] perf: Separate lbfd check out of NO_DEMANGLE condition (Jiri Olsa) [1131394]
-- [tools] perf/tests: Fix memory leak in dso-data.c (Jiri Olsa) [1131394]
-- [tools] perf: Fix old GCC build error in 'get_srcline' (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add summary option to dump syscall statistics (Jiri Olsa) [1131394]
-- [tools] perf/util: Add findnew method to intlist (Jiri Olsa) [1131394]
-- [tools] perf/trace: Improve the error messages (Jiri Olsa) [1131394]
-- [tools] perf/timechart: Add example in the documentation (Jiri Olsa) [1131394]
-- [tools] perf: Implement summary output for 'make install' (Jiri Olsa) [1131394]
-- [tools] perf: Align perf version output to other build messages (Jiri Olsa) [1131394]
-- [tools] perf: Harmonize the various build messages in perf, lib-traceevent, lib-lk (Jiri Olsa) [1131394]
-- [tools] perf: Implement summary output for 'make clean' (Jiri Olsa) [1131394]
-- [tools] perf: Fix redirection printouts (Jiri Olsa) [1131394]
-- [tools] perf/trace: Initial beautifier for ioctl's 'cmd' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Prepare the strarray scnprintf method for reuse (Jiri Olsa) [1131394]
-- [tools] perf/trace: Allow specifying index offset in strarrays (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Make a separate function to parse /proc/modules (Jiri Olsa) [1131394]
-- [tools] perf/intlist: Add priv member (Jiri Olsa) [1131394]
-- [tools] perf/trace: Use new machine method to loop over threads (Jiri Olsa) [1131394]
-- [tools] perf/machine: Add method to loop over threads and invoke handler (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add record option (Jiri Olsa) [1131394]
-- [tools] perf/trace: Fix comm resolution when reading events from file (Jiri Olsa) [1131394]
-- [tools] perf/stat: Add units to nanosec-based counters (Jiri Olsa) [1131394]
-- [tools] perf/stat: Don't require a workload when using system wide or CPU options (Jiri Olsa) [1131394]
-- [tools] perf/stat: Fix misleading message when specifying cpu list or system wide (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Fix perf_evlist__mmap_read event overflow (Jiri Olsa) [1131394]
-- [tools] perf: Ignore 'perf timechart' output file (Jiri Olsa) [1131394]
-- [tools] perf/stat: Don't print bogus data on -e instructions (Jiri Olsa) [1131394]
-- [tools] perf/stat: Don't print bogus data on -e cycles (Jiri Olsa) [1131394]
-- [tools] perf: Move start conditions to start of the flex file (Jiri Olsa) [1131394]
-- [tools] perf: Add missing -ldl for gtk build (Jiri Olsa) [1131394]
-- [tools] perf/machine: Use snprintf instead of sprintf (Jiri Olsa) [1131394]
-- [tools] perf/bench sched: Add --threaded option (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add 'trace' alias to 'perf trace' (Jiri Olsa) [1131394]
-- [tools] perf/trace: Show path associated with fd in live sessions (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify mlock & friends 'addr' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Handle MSG_WAITFORONE not defined (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add beautifier for clock_gettime's clk_id argument (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify pipe2 'flags' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Use socket's beautifiers in socketpair (Jiri Olsa) [1131394]
-- [tools] perf/trace: Don't supress zeroed args when there is an strarray entry for it (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add helper for syscalls with a single strarray arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify flock 'cmd' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify epoll_ctl 'op' arg (Jiri Olsa) [1131394]
-- [tools] perf: Fix srcline sort key behavior (Jiri Olsa) [1131394]
-- [tools] perf: Implement addr2line directly using libbfd (Jiri Olsa) [1131394]
-- [tools] perf: Save failed result of get_srcline() (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Pass dso instead of dso_name to get_srcline() (Jiri Olsa) [1131394]
-- [tools] perf: Do not try to call addr2line on non-binary files (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Factor out get/free_srcline() (Jiri Olsa) [1131394]
-- [tools] perf/hists: Free srcline when freeing hist_entry (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Reuse path from the result of addr2line (Jiri Olsa) [1131394]
-- [tools] perf/sort: Fix a memory leak on srcline (Jiri Olsa) [1131394]
-- [tools] perf: Separate out GTK codes to libperf-gtk.so (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Add new option --ignore-vmlinux for perf top (Jiri Olsa) [1131394]
-- [tools] perf: Adding throttle event data struct support (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Introduce perf_evlist__new_default function (Jiri Olsa) [1131394]
-- [tools] perf: Add possibility to specify mmap size (Jiri Olsa) [1131394]
-- [tools] perf: Check mmap pages value early (Jiri Olsa) [1131394]
-- [tools] perf/lock: Account for lock average wait time (Jiri Olsa) [1131394]
-- [tools] perf/lock: Limit bad rate precision (Jiri Olsa) [1131394]
-- [tools] perf/lock: Redo __cmd_report (Jiri Olsa) [1131394]
-- [tools] perf/lock: Plug some memleaks (Jiri Olsa) [1131394]
-- [tools] perf/lock: Return proper code in report_lock_*_event (Jiri Olsa) [1131394]
-- [tools] perf/lock: Remove dead code (Jiri Olsa) [1131394]
-- [tools] perf: Unify page_size usage (Jiri Olsa) [1131394]
-- [tools] perf: Remove unused trace-event-* code (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Support for Openembedded/Yocto -dbg packages (Jiri Olsa) [1131394]
-- [tools] perf/completion: Use more comp words (Jiri Olsa) [1131394]
-- [tools] perf/completion: Strip dependency on bash-completion (Jiri Olsa) [1131394]
-- [tools] perf/completion: Strip function_exists () (Jiri Olsa) [1131394]
-- [tools] perf/completion: Strip dependency on _filedir (Jiri Olsa) [1131394]
-- [tools] perf/completion: Update __ltrim_colon_completions (Jiri Olsa) [1131394]
-- [tools] perf/completion: Don't dictate perf install location (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add option to show process COMM (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify eventfd2 'flags' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify send/recv syscall 'flags' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Don't print zeroed args (Jiri Olsa) [1131394]
-- [tools] perf/trace: Remove duplicate mmap entry in syscall_fmts array (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add option to show full timestamp (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify rlmimit resources (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify access 'mode' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify socket 'type' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify socket 'family' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify signal number arg in several syscalls (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify rt_sigprocmask 'how' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify fcntl 'cmd' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Use strarray for ltrace's whence arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Allow passing parms to arg formatters (Jiri Olsa) [1131394]
-- [tools] perf/trace: Put syscall formatter parms into struct (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up feature_print_code() (Jiri Olsa) [1131394]
-- [tools] perf/build: Pass through LDFLAGS to feature tests (Jiri Olsa) [1131394]
-- [tools] perf/build: Harmonize the style of the feature testcases (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix O=/some/dir perf.o type of targets (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix non-canonical directory names in O= (Jiri Olsa) [1131394]
-- [tools] perf/build: Exclude MAKEFLAGS from nested invocation (Jiri Olsa) [1131394]
-- [tools] perf/build: Make sure autodep feature binaries honor the O= setting (Jiri Olsa) [1131394]
-- [tools] perf/build: Pass through all targets to Makefile.perf (Jiri Olsa) [1131394]
-- [tools] perf/build: Collapse the test-all.c testcase (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up various testcases (Jiri Olsa) [1131394]
-- [tools] perf/build: Remove unused config/feature-tests.mak (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature checks 'liberty', 'liberty-z', 'cplus-demangle' (Jiri Olsa) [1131394]
-- [tools] perf/build: Standardize the various messages output by parallel make (Jiri Olsa) [1131394]
-- [tools] perf/build: Flip Makefile.parallel and Makefile.perf (Jiri Olsa) [1131394]
-- [tools] perf/build: Automatically build in parallel, based on number of CPUs in the system (Jiri Olsa) [1131394]
-- [tools] perf/build: Improve printout-of auto-detected features (Jiri Olsa) [1131394]
-- [tools] perf/build: Speed up auto-detection (Jiri Olsa) [1131394]
-- [tools] perf/build: Invoke feature-checks 'clean' target from the main Makefile (Jiri Olsa) [1131394]
-- [tools] perf: Fix double/triple-build of the feature detection logic during 'make install' et al (Jiri Olsa) [1131394]
-- [tools] perf/build: Speed up the final link (Jiri Olsa) [1131394]
-- [tools] perf/build: Speed up git-version test on re-make (Jiri Olsa) [1131394]
-- [tools] perf/build: Speed up auto-detection of features by adding a 'test-all' target (Jiri Olsa) [1131394]
-- [tools] perf: Turn strlcpy() into a __weak function (Jiri Olsa) [1131394]
-- [tools] perf: Clean up util/include/linux/compiler.h (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'backtrace' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'on-exit' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'strlcpy' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libbfd' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libpython-version' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libpython' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libperl' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'gtk2-infobar' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'gtk2' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libslang' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libaudit' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libunwind' (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up the libunwind logic in config/Makefile (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libelf-getphdrnum' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libelf-mmap' (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up the mmap logic in config/Makefile (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'dwarf' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'glibc' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libelf' (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up the libelf logic in config/Makefile (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'bionic' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'fortify-source' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'volatile-register-var' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'stackprotector' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'stackprotector-all' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libnuma' (Jiri Olsa) [1131394]
-- [tools] perf/build: Add 'autodep' functionality, generate feature test dependencies automatically (Jiri Olsa) [1131394]
-- [tools] perf/build: Add feature check core code (Jiri Olsa) [1131394]
-- [tools] perf: standardize feature support define names to HAVE_{FEATURE}_SUPPORT (Jiri Olsa) [1131394]
-- [tools] perf: Add support for record transaction flags (Jiri Olsa) [1131394]
-- [tools] perf/record: Add abort_tx, no_tx, in_tx branch filter options to perf record -j (Jiri Olsa) [1131394]
-- [tools] perf: Support sorting by in_tx or abort branch flags (Jiri Olsa) [1131394]
-- [tools] perf: Fix sorting for 64bit entries (Jiri Olsa) [1131394]
-- [tools] perf: Disable all pmus on unthrottling and rescheduling (Jiri Olsa) [1131394]
-- [x86] perf: Fix constraint table end marker bug (Jiri Olsa) [1131394]
-- [tools] perf: Remove fragile swevent hlist optimization (Jiri Olsa) [1131394]
-- [tools] perf: Factor out strncpy() in perf_event_mmap_event() (Jiri Olsa) [1131394]
-- [tools] perf: Update a stale comment (Jiri Olsa) [1131394]
-- [tools] perf: Optimize perf_output_begin() -- address calculation (Jiri Olsa) [1131394]
-- [tools] perf: Optimize perf_output_begin() -- lost_event case (Jiri Olsa) [1131394]
-- [tools] perf: Optimize perf_output_begin() (Jiri Olsa) [1131394]
-- [tools] perf: Add unlikely() to the ring-buffer code (Jiri Olsa) [1131394]
-- [tools] perf: Simplify the ring-buffer code (Jiri Olsa) [1131394]
-- [tools] perf: Fix the perf context switch optimization (Jiri Olsa) [1131394]
-- [tools] perf: Change zero-padding of strings in perf_event_mmap_event() (Jiri Olsa) [1131394]
-- [tools] perf: Do not waste PAGE_SIZE bytes for ALIGN(8) in perf_event_mmap_event() (Jiri Olsa) [1131394]
-- [tools] perf: Kill the dead !vma->vm_mm code in perf_event_mmap_event() (Jiri Olsa) [1131394]
-- [tools] perf: Remove useless atomic_t (Jiri Olsa) [1131394]
-- [x86] perf: Optimize intel_pmu_pebs_fixup_ip() (Jiri Olsa) [1131394]
-- [x86] perf: Suppress duplicated abort LBR records (Jiri Olsa) [1131394]
-- [x86] perf: Add Haswell specific transaction flag reporting (Jiri Olsa) [1131394]
-- [tools] perf: Add generic transaction flags (Jiri Olsa) [1131394]
-- [tools] perf: Enforce 1 as lower limit for perf_event_max_sample_rate (Jiri Olsa) [1131394]
-- [x86] perf/intel: Fix build warning in intel_pmu_drain_pebs_nhm() (Jiri Olsa) [1131394]
-- [x86] perf/intel: Remove division from the intel_pmu_drain_pebs_nhm() hot path (Jiri Olsa) [1131394]
-- [x86] perf/intel: Clean up EVENT_ATTR_STR() muck (Jiri Olsa) [1131394]
-- [x86] perf/intel: Clean-up/reduce PEBS code (Jiri Olsa) [1131394]
-- [x86] perf/intel: Clean up checkpoint-interrupt bits (Jiri Olsa) [1131394]
-- [x86] perf/intel: Add Haswell TSX event aliases (Jiri Olsa) [1131394]
-- [x86] perf: Report TSX transaction abort cost as weight (Jiri Olsa) [1131394]
-- [x86] perf/intel: Avoid checkpointed counters causing excessive TSX aborts (Jiri Olsa) [1131394]
-
-* Wed Sep 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-154.el7]
-- [scsi] ipr: Add new CCIN definition for Grand Canyon support (Gustavo Duarte) [1088561]
-- [scsi] ipr: Format HCAM overlay ID 0x21 (Gustavo Duarte) [1088561]
-- [scsi] ipr: Handle early EEH (Gustavo Duarte) [1088561]
-- [scsi] ipr: Add new CCIN definition for new hardware support (Gustavo Duarte) [1088561]
-- [scsi] ipr: Remove extended delay bit on GSCSI reads/writes ops (Gustavo Duarte) [1088561]
-- [scsi] ipr: increase dump size in ipr driver (Gustavo Duarte) [1088561]
-- [kernel] trace: Remove function_trace_stop and HAVE_FUNCTION_TRACE_MCOUNT_TEST (Josh Poimboeuf) [1113829]
-- [s390] ftrace: remove check of obsolete variable function_trace_stop (Josh Poimboeuf) [1113829]
-- [x86] ftrace: Remove check of obsolete variable function_trace_stop (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Remove check for HAVE_FUNCTION_TRACE_MCOUNT_TEST (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Remove function_trace_stop check from list func (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Do no disable function tracing on enabling function tracing (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Remove ftrace_start/stop() (Josh Poimboeuf) [1113829]
-- [kernel] ftrace-graph: Remove usage of ftrace_stop() in ftrace_graph_stop() (Josh Poimboeuf) [1113829]
-- [powerpc] kernel/ftrace: Add call to ftrace_graph_is_dead() in function graph code (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Add call to ftrace_graph_is_dead() in function graph code (Josh Poimboeuf) [1113829]
-- [kernel] ftrace-graph: Remove dependency of ftrace_stop() from ftrace_graph_stop() (Josh Poimboeuf) [1113829]
-- [kernel] trace: Remove ftrace_stop/start() from reading the trace file (Josh Poimboeuf) [1113829]
-- [kernel] power: Remove ftrace_stop/start() from suspend and hibernate (Josh Poimboeuf) [1113829]
-- [x86] power/cpu: Annotate restore_processor_state() with notrace (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Move the mcount/fentry code out of entry_64.S (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Load ftrace_ops in parameter not the variable holding it (Josh Poimboeuf) [1113829]
-- [kernel] trace: Remove unused function ftrace_off_permanent() (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: BUG when ftrace recovery fails (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Have ftrace_write() return -EPERM and clean up callers (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: One more missing sync after fixup of function modification failure (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Run a sync after fixup on failure (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Use breakpoints for converting function graph caller (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: skip over the breakpoint for ftrace caller (Josh Poimboeuf) [1113829]
-- [s390] kprobes: add support for pc-relative long displacement instructions (Hendrik Brueckner) [1123429]
-- [kernel] kprobes: allow to specify custom allocator for insn caches (Hendrik Brueckner) [1123429]
-- [kernel] kprobes: unify insn caches (Hendrik Brueckner) [1123429]
-- [kernel] uprobes: Rename arch_uprobe->def to ->defparam, minor comment updates (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Fix scratch register selection for rip-relative fixups (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Simplify rip-relative handling (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Simplify riprel_{pre,post}_xol() and make them similar (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Kill the "autask" arg of riprel_pre_xol() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Rename *riprel* helpers to make the naming consistent (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Cleanup the usage of UPROBE_FIX_IP/UPROBE_FIX_CALL (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Kill adjust_ret_addr(), simplify UPROBE_FIX_CALL logic (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Introduce push_ret_address() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Cleanup the usage of arch_uprobe->def.fixups, make it u8 (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Move default_xol_ops's data into arch_uprobe->def (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Move UPROBE_FIX_SETF logic from arch_uprobe_post_xol() to default_post_xol_op() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Don't use arch_uprobe_abort_xol() in arch_uprobe_post_xol() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Introduce uprobe_xol_ops->abort() and default_abort_op() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Don't change the task's state if ->pre_xol() fails (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Fix is_64bit_mm() with CONFIG_X86_X32 (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Make good_insns_* depend on CONFIG_X86_* (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Shift "insn_complete" from branch_setup_xol_ops() to uprobe_init_insn() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Add is_64bit_mm(), kill validate_insn_bits() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Add uprobe_init_insn(), kill validate_insn_{32,64}bits() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Refuse to attach uprobe to "word-sized" branch insns (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate relative conditional "near" jmp's (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate relative conditional "short" jmp's (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate relative call's (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate nop's using ops->emulate() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate unconditional relative jmp's (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Introduce sizeof_long(), cleanup adjust_ret_addr() and arch_uretprobe_hijack_return_addr() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Teach arch_uprobe_post_xol() to restart if possible (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Send SIGILL if arch_uprobe_post_xol() fails (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Conditionalize the usage of handle_riprel_insn() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Introduce uprobe_xol_ops and arch_uprobe->ops (Oleg Nesterov) [1073627]
-- [kernel] uprobes: move the UPROBE_FIX_{RIP,IP,CALL} code at the end of pre/post hooks (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Gather "riprel" functions together (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Kill the "ia32_compat" check in handle_riprel_insn(), remove "mm" arg (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Fold prepare_fixups() into arch_uprobe_analyze_insn() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Kill UPROBE_SKIP_SSTEP and can_skip_sstep() (Oleg Nesterov) [1073627]
-
-* Fri Sep 05 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-153.el7]
-- [ethernet] enic: Add ethtool support to show classifier filters added by the driver (Stefan Assmann) [1107934]
-- [ethernet] enic: remove #ifdef CONFIG_RFS_ACCEL around filter structures (Stefan Assmann) [1107934]
-- [ethernet] enic: fix return values in enic_set_coalesce (Stefan Assmann) [1107934]
-- [ethernet] enic: Make dummy rfs functions inline to fix !CONFIG_RFS_ACCEL build (Stefan Assmann) [1107934]
-- [ethernet] enic: do tx cleanup in napi poll (Stefan Assmann) [1107934]
-- [ethernet] enic: add low latency socket busy_poll support (Stefan Assmann) [1107934]
-- [ethernet] enic: fix lockdep around devcmd_lock (Stefan Assmann) [1107934]
-- [ethernet] enic: Add Accelerated RFS support (Stefan Assmann) [1107934]
-- [net] Add skb_get_hash_raw (Stefan Assmann) [1107934]
-- [net] flow_keys: Record IP layer protocol in skb_flow_dissect() (Stefan Assmann) [1107934]
-- [ethernet] enic: alloc/free rx_cpu_rmap (Stefan Assmann) [1107934]
-- [ethernet] enic: devcmd for adding IP 5 tuple hardware filters (Stefan Assmann) [1107934]
-- [ethernet] enic: fix return value in _vnic_dev_cmd (Stefan Assmann) [1107934]
-- [ethernet] enic: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Stefan Assmann) [1107934]
-- [ethernet] enic: Fix 64 bit divide on 32bit system (Stefan Assmann) [1107934]
-- [ethernet] enic: Add support for adaptive interrupt coalescing (Stefan Assmann) [1107934]
-- [ethernet] enic: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1107934]
-- [ethernet] enic: include irq.h for irqreturn_t definitions (Stefan Assmann) [1107934]
-- [ethernet] enic: Call dev_kfree_skb_any instead of dev_kfree_skb (Stefan Assmann) [1107934]
-- [ethernet] enic: Don't receive packets when the napi budget == 0 (Stefan Assmann) [1107934]
-- [ethernet] enic: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1107934]
-- [ethernet] enic: slight optimization of addr compare (Stefan Assmann) [1107934]
-- [ethernet] enic: cisco-enic calls skb_set_hash (Stefan Assmann) [1107934]
-- [ethernet] enic: remove unnecessary pci_set_drvdata() (Stefan Assmann) [1107934]
-- [ethernet] i40e/i40evf: Bump i40e & i40evf version (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Ignore a driver perceived Tx hang if the number of desc pending < 4 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add max buf len to aq debug print helper (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Remove DEFINE_PCI_DEVICE_TABLE macro use (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Fixed guest OS panic when removing vf driver (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix memory leak on unused interfaces (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't leak queue vectors (Stefan Assmann) [1091127]
-- [ethernet] i40evf: do not re-arm watchdog after remove (Stefan Assmann) [1091127]
-- [ethernet] i40evf: future-proof vfr_stat state check (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix scan warning on sprintf (Stefan Assmann) [1091127]
-- [ethernet] i40e: always print aqtx answer (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: ARQ copy desc data even for failed commands (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't wait so long (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix extension header csum logic (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add nvmupdate support (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Clean up code (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove unnecessary break after goto (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.21 and i40evf to 0.9.40 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add set_fc and init of FC settings (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add new HW link info variable an_enabled and function update_link_info (Stefan Assmann) [1091127]
-- [ethernet] i40evf: invite vector 0 to the interrupt party (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Force a shifted '1' to be unsigned (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't violate scope (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Do not free the dummy packet buffer synchronously (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.19 and i40evf to 0.9.38 (Stefan Assmann) [1091127]
-- [ethernet] i40evf: change branding string (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: initialize context descriptor (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add ASQ write back timeout variable to AQ structure (Stefan Assmann) [1091127]
-- [ethernet] i40evf: set flags before sending message (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: clear aq bah-bal on shutdown (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add base address registers to aq struct (Stefan Assmann) [1091127]
-- [ethernet] i40evf: resend FW request if no response (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix typo (Stefan Assmann) [1091127]
-- [ethernet] i40evf: return more useful error information (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't stop watchdog if it hasn't started (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Big endian fixes for handling HMC (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.17 and i40evf to 0.9.36 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove reserved type (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.13 and i40evf to 0.9.35 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: modify debug prints to avoid seg faults (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Update RSS configuration (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix off-by-one (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Reset Head and Tail on AQ initialization (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: i40e_register.h update (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to version 0.4.10 and i40evf to 0.9.34 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add Flow director stats to PF stats (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove FTYPE (Stefan Assmann) [1091127]
-- [ethernet] i40evf: check admin queue error bits (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: User ether_addr_copy instead of memcpy (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't go further down (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: AdminQ API update for new FW (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: set headwb Tx context flags and use them (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: bump version to 0.4.7 for i40e and 0.9.31 for i40evf (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add PPRS bit to error bits and fix bug in Rx checksum (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Fix function header (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove deprecated device IDs (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix poll weight (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix TSO accounting (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove chatty reset messages (Stefan Assmann) [1091127]
-- [ethernet] i40evf: use correct format for printing MAC addresses (Stefan Assmann) [1091127]
-- [ethernet] i40evf: clean up log message formatting (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove bogus comment (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove unnecessary log messages (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Clean up a few things (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Fix code to accommodate i40e_register.h changes (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix rx descriptor status (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add Tx pre queue disable function (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: check AQ register for valid data (Stefan Assmann) [1091127]
-- [ethernet] i40evf: make messages less dire (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove rx_errors and rx_missed (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: VEB structure added, GTIME macro update (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix crash when changing ring sizes (Stefan Assmann) [1091127]
-- [ethernet] i40evf: set descriptor multiple to 32 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove unused RX_LRO define (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't use RESETTING state during reinit (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Change type to u32 to avoid sparse error (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove storm control (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Remove reserved PCTYPE defines (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Update check for AQ aliveness (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Use is_multicast_ether_addr helper (Stefan Assmann) [1091127]
-- [ethernet] i40e: remove usless return statements (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: control auto ITR through ethtool (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: set proper default for ITR registers (Stefan Assmann) [1091127]
-- [ethernet] i40evf: make ethtool_ops const (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't lie to ethtool (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Use macro param for ethtool stats (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Fix the headers and update copyright year (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Remove unused defines (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Update AdminQ interface (Stefan Assmann) [1091127]
-- [ethernet] i40evf: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Retrieve and store missing link config information (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove debugging message (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix panic on PF driver fail (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add driver version string to driver version command (Stefan Assmann) [1091127]
-- [ethernet] i40evf: support ethtool RSS options (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: update AdminQ API (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add tracking to NVM busy state (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: unhide and enable to one prefena field (Stefan Assmann) [1091127]
-- [ethernet] i40evf: program RSS LUT correctly (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove open-coded skb_cow_head (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Remove addressof casts to same type (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix error checking path (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add an FD message level (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove double space after return (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix oops in watchdog handler (Stefan Assmann) [1091127]
-- [ethernet] i40evf: clean up init error messages (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't shut down admin queue on error (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add EEE LPI stats (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: reduce context descriptors (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: enable hardware feature head write back (Stefan Assmann) [1091127]
-- [ethernet] i40evf: use min_t (Stefan Assmann) [1091127]
-- [ethernet] i40evf: correctly program RSS HLUT table (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Rename i40e_ptype_lookup i40evf_ptype_lookup (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Use dma_set_mask_and_coherent (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Use correct number of VF vectors (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Some flow director HW definition fixes (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump pf&vf build versions (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: carefully fill tx ring (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: i40e implementation for skb_set_hash (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Enable the ndo_set_features netdev op (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump driver versions (Stefan Assmann) [1091127]
-- [ethernet] i40e: Change MSIX to MSI-X (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove errant space (Stefan Assmann) [1091127]
-- [ethernet] i40evf: update version and copyright date (Stefan Assmann) [1091127]
-- [ethernet] i40evf: store ring size in ring structs (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't guess device name (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove bogus comment (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix up strings in init task (Stefan Assmann) [1091127]
-- [ethernet] i40evf: get rid of pci_using_dac (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix multiple crashes on remove (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove VLAN filters on close (Stefan Assmann) [1091127]
-- [ethernet] i40evf: request reset on tx hang (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Remove duplicate include (Stefan Assmann) [1091127]
-- [ethernet] i40evf: refactor reset handling (Stefan Assmann) [1091127]
-- [ethernet] i40evf: change type of flags variable (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't store unnecessary array of strings (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix bogus comment (Stefan Assmann) [1091127]
-- [ethernet] i40evf: clean up adapter struct (Stefan Assmann) [1091127]
-- [ethernet] i40evf: trivial fixes (Stefan Assmann) [1091127]
-- [ethernet] i40e: spelling error (Stefan Assmann) [1091127]
-- [ethernet] i40e: Fix device ID define names to align to standard (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e & i40evf version (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Ignore a driver perceived Tx hang if the number of desc pending < 4 (Stefan Assmann) [1091126]
-- [ethernet] i40e: quiet complaints when removing default MAC VLAN filter and make set_mac reversible (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add max buf len to aq debug print helper (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add checks and message for Qualified Module info (Stefan Assmann) [1091126]
-- [ethernet] i40e: set num_queue_pairs to num configured by VF (Stefan Assmann) [1091126]
-- [ethernet] i40e: Enable l2tsel bit for VLAN tag control (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add a FD flush counter to ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e: ATR policy change to flush the table to clean stale ATR rules (Stefan Assmann) [1091126]
-- [ethernet] i40e: Some FD message fixes (Stefan Assmann) [1091126]
-- [ethernet] i40e: Update flow director error messages to reduce user confusion (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix PTP bug (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a few potential VF dereferences (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix for recent kernel panic (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove DEFINE_PCI_DEVICE_TABLE macro use (Stefan Assmann) [1091126]
-- [ethernet] i40e: Cleaning up missing null-terminate in conjunction with strncpy (Stefan Assmann) [1091126]
-- [ethernet] i40e: use correct structure type name in sizeof (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix sparse non static symbol warning (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix missing uapi/linux/dcbnl.h include in i40e_fcoe.c (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove support for vf unicast promiscuous mode (Stefan Assmann) [1091126]
-- [ethernet] i40e: Minor comment changes (Stefan Assmann) [1091126]
-- [ethernet] i40e: disable local loopback on vmdq vsi (Stefan Assmann) [1091126]
-- [ethernet] i40e: use correct vf_id offset for virtchnl message (Stefan Assmann) [1091126]
-- [ethernet] i40e: expose debug_write_register request (Stefan Assmann) [1091126]
-- [ethernet] i40e: adds FCoE to build and updates its documentation (Stefan Assmann) [1091126]
-- [ethernet] i40e: Adds FCoE related code to i40e core driver (Stefan Assmann) [1091126]
-- [ethernet] i40e: adds FCoE code to the i40e driver (Stefan Assmann) [1091126]
-- [ethernet] i40e: always print aqtx answer (Stefan Assmann) [1091126]
-- [ethernet] i40e: Give link more time after setting flow control (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix firmware API version errors (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: ARQ copy desc data even for failed commands (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix extension header csum logic (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add nvmupdate support (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix format mismatch in drivers/net/ethernet/intel/i40e/i40e_debugfs.c (Stefan Assmann) [1091126]
-- [ethernet] i40e: (ptp) warn when PF_ID does not match in PRTTSYN_CTL0 (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Clean up code (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix race conditions on queuing skb for HW time stamp (Stefan Assmann) [1091126]
-- [ethernet] i40e: never generate both software and hardware timestamps (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add ndo_get_phys_port_id() callback support (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove unnecessary break after goto (Stefan Assmann) [1091126]
-- [net] bridge: fdb dumping takes a filter device (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.21 and i40evf to 0.9.40 (Stefan Assmann) [1091126]
-- [ethernet] i40e: Implement set_settings for ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add set_pauseparam to ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add set_fc and init of FC settings (Stefan Assmann) [1091126]
-- [ethernet] i40e: move nway reset (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add new HW link info variable an_enabled and function update_link_info (Stefan Assmann) [1091126]
-- [ethernet] i40e: Finish implementation of ethtool get settings (Stefan Assmann) [1091126]
-- [ethernet] i40e: disable TPH (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a boundary condition and turning off of ntuple (Stefan Assmann) [1091126]
-- [ethernet] i40e: tolerate lost interrupts (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Force a shifted '1' to be unsigned (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Do not free the dummy packet buffer synchronously (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.19 and i40evf to 0.9.38 (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove linux/export.h header from i40e_ptp.c (Stefan Assmann) [1091126]
-- [ethernet] i40e: limit GLLAN_TXPRE_QDIS to QINDX 0-127 (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: initialize context descriptor (Stefan Assmann) [1091126]
-- [ethernet] i40e: FD filter replay logic bug fix (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add ASQ write back timeout variable to AQ structure (Stefan Assmann) [1091126]
-- [ethernet] i40e: Correct mask assignment value (Stefan Assmann) [1091126]
-- [ethernet] i40e: clear all queues and interrupts (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: clear aq bah-bal on shutdown (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add base address registers to aq struct (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix fdir programming (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add debugfs hooks to print current total FD filter count (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix the FD sideband logic to detect a FD table full condition (Stefan Assmann) [1091126]
-- [ethernet] i40e: Avoid adding the TCP-IPv4 filter twice (Stefan Assmann) [1091126]
-- [ethernet] i40e: only create PTP device node once (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't store user requested mode until we've validated it (Stefan Assmann) [1091126]
-- [ethernet] i40e: break PTP hardware control from ioctl command for timestamp mode (Stefan Assmann) [1091126]
-- [ethernet] i40e: rename i40e_ptp_enable to i40e_ptp_feature_enable (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Big endian fixes for handling HMC (Stefan Assmann) [1091126]
-- [ethernet] i40e: do not take NVM ownership for SR read (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.17 and i40evf to 0.9.36 (Stefan Assmann) [1091126]
-- [ethernet] i40e: Bypass timeout recovery level 0 so as to not cause MDD (Stefan Assmann) [1091126]
-- [ethernet] i40e: no pf reset at pci remove (Stefan Assmann) [1091126]
-- [ethernet] i40e: reapply LAA after reset (Stefan Assmann) [1091126]
-- [ethernet] i40e: allow user to set LAA again (Stefan Assmann) [1091126]
-- [ethernet] i40e: use WoL flag when setting LAA (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add ablitity to enable/disable link from set_link_restart_an (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove reserved type (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix ethtool coalesce settings (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix a stray print message (Stefan Assmann) [1091126]
-- [ethernet] i40e: warn on newer/older firmware API rev (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add PF reset when Malicious driver event for PF (Stefan Assmann) [1091126]
-- [ethernet] i40e: make prep_for_reset void (Stefan Assmann) [1091126]
-- [ethernet] i40e: Stop the VF device after setting its MAC address (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.13 and i40evf to 0.9.35 (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: modify debug prints to avoid seg faults (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Update RSS configuration (Stefan Assmann) [1091126]
-- [ethernet] i40e: keep service tasks out of reset process (Stefan Assmann) [1091126]
-- [ethernet] i40e: clear VEB stats when pf stats are cleared (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix scheduling while atomic bug during NAPI (Stefan Assmann) [1091126]
-- [ethernet] i40e: debugfs fix to dump remote LLDPDU (Stefan Assmann) [1091126]
-- [ethernet] i40e: Helper routine for Rx/Tx queue enable/disable wait (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix dangling ring pointers upon driver removal (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Reset Head and Tail on AQ initialization (Stefan Assmann) [1091126]
-- [ethernet] i40e: workaround NVM GLQF_HKEY (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: i40e_register.h update (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to version 0.4.10 and i40evf to 0.9.34 (Stefan Assmann) [1091126]
-- [ethernet] i40e: use stored base_queue value (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a bug in ethtool for FD drop packet filter action (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add Flow director stats to PF stats (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove FTYPE (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: User ether_addr_copy instead of memcpy (Stefan Assmann) [1091126]
-- [net] etherdevice: Use ether_addr_copy to copy an Ethernet address (Stefan Assmann) [1091126]
-- [ethernet] i40e: Do not accept tagged packets by default (Stefan Assmann) [1091126]
-- [ethernet] i40e: Separate out DCB capability and enabled flags (Stefan Assmann) [1091126]
-- [ethernet] i40e: Change the notion of src and dst for FD_SB in ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: AdminQ API update for new FW (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: set headwb Tx context flags and use them (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: bump version to 0.4.7 for i40e and 0.9.31 for i40evf (Stefan Assmann) [1091126]
-- [ethernet] i40e: Allow RSS table entry range and GPS to be any number, not necessarily power of 2 (Stefan Assmann) [1091126]
-- [ethernet] i40e: Delete stale MAC filters after change (Stefan Assmann) [1091126]
-- [ethernet] i40e: Do not fall back to one queue model if the only feature enabled is ATR (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add PPRS bit to error bits and fix bug in Rx checksum (Stefan Assmann) [1091126]
-- [ethernet] i40e: keep SR-IOV enabled in the case that RSS, VMDQ, FD_SB and DCB are disabled (Stefan Assmann) [1091126]
-- [ethernet] i40e: Changes to Interrupt distribution policy (Stefan Assmann) [1091126]
-- [ethernet] i40e: implement anti-spoofing for VFs (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't complain about removing non-existent addresses (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove unused variable and memory allocation (Stefan Assmann) [1091126]
-- [ethernet] i40e: allow for more VSIs (Stefan Assmann) [1091126]
-- [ethernet] i40e: add checks for AQ error status bits (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove deprecated device IDs (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix poll weight (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix TSO accounting (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove chatty reset messages (Stefan Assmann) [1091126]
-- [ethernet] i40e: not all VSIs have rings (Stefan Assmann) [1091126]
-- [ethernet] i40e: clear pxe after adminq is rebuilt (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix incorrect feature configuration status (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Clean up a few things (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Fix code to accommodate i40e_register.h changes (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix rx descriptor status (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove irqs only when they are set up (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't remove HMC that doesn't exist (Stefan Assmann) [1091126]
-- [ethernet] i40e: print full link message (Stefan Assmann) [1091126]
-- [ethernet] i40e: add xcast stats for port (Stefan Assmann) [1091126]
-- [ethernet] i40e: add vsi x-cast stats (Stefan Assmann) [1091126]
-- [ethernet] i40e: increase reset wait time (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add Tx pre queue disable function (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: check AQ register for valid data (Stefan Assmann) [1091126]
-- [ethernet] i40e: print message for pre-production hardware (Stefan Assmann) [1091126]
-- [ethernet] i40e: add VEB stats to ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e: set lan_veb index (Stefan Assmann) [1091126]
-- [ethernet] i40e: add missing VSI statistics (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove rx_errors and rx_missed (Stefan Assmann) [1091126]
-- [ethernet] i40e: refactor stats collection (Stefan Assmann) [1091126]
-- [ethernet] i40e: refactor send version (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: VEB structure added, GTIME macro update (Stefan Assmann) [1091126]
-- [ethernet] i40e: notify VF of all types of resets (Stefan Assmann) [1091126]
-- [ethernet] i40e: clamp jumbo frame size (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove unused RX_LRO define (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove check for large buffer (Stefan Assmann) [1091126]
-- [ethernet] i40e: Rework register diagnostic (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't use OR to check a value (Stefan Assmann) [1091126]
-- [ethernet] i40e: relax the firmware API version check (Stefan Assmann) [1091126]
-- [ethernet] i40e: disable FCoE for MFP modes (Stefan Assmann) [1091126]
-- [ethernet] i40e: add clear_pxe AdminQ request (Stefan Assmann) [1091126]
-- [ethernet] i40e: Clear recovery pending, if reset failed (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Change type to u32 to avoid sparse error (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove storm control (Stefan Assmann) [1091126]
-- [ethernet] i40e: Use the new i40e_get_fd_cnt_all function in other places (Stefan Assmann) [1091126]
-- [ethernet] i40e: Report cmd->data in ETHTOOL_GRXCLSRLCNT instead of ETHTOOL_GRXCLSRULE (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Remove reserved PCTYPE defines (Stefan Assmann) [1091126]
-- [ethernet] i40e: Tx/Rx rings declaration (Stefan Assmann) [1091126]
-- [ethernet] i40evf: tweak Tx rate params and de-magic-ify (Stefan Assmann) [1091126]
-- [ethernet] i40evf: don't round Tx rate down to 0 (Stefan Assmann) [1091126]
-- [ethernet] i40e: enable descriptor prefetch for VFs (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Update check for AQ aliveness (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove usless return statements (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix passing wrong error code to i40e_open() (Stefan Assmann) [1091126]
-- [ethernet] i40e: Check PCI_IOV config to avoid compile error (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove Tx work for ptp (Stefan Assmann) [1091126]
-- [ethernet] i40e: Don't disable SR-IOV when VFs are assigned (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove hardcode of stats struct size in ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: control auto ITR through ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: set proper default for ITR registers (Stefan Assmann) [1091126]
-- [ethernet] i40e: add required include (Stefan Assmann) [1091126]
-- [ethernet] i40e: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Retrieve and store missing link config information (Stefan Assmann) [1091126]
-- [ethernet] i40e: Update function formal parameters (Stefan Assmann) [1091126]
-- [ethernet] i40e: Do not expose fd-sb commands from debugfs (Stefan Assmann) [1091126]
-- [ethernet] i40e: Do not enable NTUPLE feature control in MFP mode (Stefan Assmann) [1091126]
-- [ethernet] i40e: Change variable type to avoid typecheck failure (Stefan Assmann) [1091126]
-- [ethernet] i40e: Don't stop driver probe when querying DCB config fails (Stefan Assmann) [1091126]
-- [ethernet] i40e: Redistribute queue vectors after DCB reconfiguration (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add driver version string to driver version command (Stefan Assmann) [1091126]
-- [ethernet] i40e: Use port VLAN in MAC/VLAN filter configuration (Stefan Assmann) [1091126]
-- [ethernet] i40e: Retain MAC filters when changing port VLAN (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove ptp_tx_work timestamp work item (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix Timesync Tx interrupt handler code (Stefan Assmann) [1091126]
-- [ethernet] i40e: report VF link state correctly (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091126]
-- [ethernet] i40e: Tweak for-loop in i40e_ethtool.c (Stefan Assmann) [1091126]
-- [ethernet] i40e: Cleanup if/else statements (Stefan Assmann) [1091126]
-- [ethernet] i40e: rework fdir setup and teardown (Stefan Assmann) [1091126]
-- [ethernet] i40e: use generic vsi_open to unquiesce vsi (Stefan Assmann) [1091126]
-- [ethernet] i40e: abstract the close path for better netdev vsis (Stefan Assmann) [1091126]
-- [ethernet] i40e: prep vsi_open logic for non-netdev cases (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: update AdminQ API (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add tracking to NVM busy state (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix an issue with displaying IPv4 FD filters (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove a FW workaround (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091126]
-- [ethernet] i40e: Enable VF Tx bandwidth setting (Stefan Assmann) [1091126]
-- [ethernet] i40e: Reset the VF upon conflicting VLAN configuration (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: unhide and enable to one prefena field (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add bridge FDB add/del/dump ops (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix message terminations (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix TCP flag replication for hardware offload (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove open-coded skb_cow_head (Stefan Assmann) [1091126]
-- [ethernet] i40e: Mass conversion of smp_mb__*() (Stefan Assmann) [1091126]
-- [powerpc] asm: Convert smp_mb__*() (Stefan Assmann) [1091126]
-- [s390] asm: Convert smp_mb__*() (Stefan Assmann) [1091126]
-- [x86] asm: Convert smp_mb__*() (Stefan Assmann) [1091126]
-- [kernel] sched: Prepare for smp_mb__{before, after}_atomic() (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove casts of pointer to same type (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Remove addressof casts to same type (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix error checking path (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix function kernel doc description (Stefan Assmann) [1091126]
-- [ethernet] i40e: Use DEBUG_FD message level for an FD message (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add an FD message level (Stefan Assmann) [1091126]
-- [ethernet] i40e: check for netdev before debugfs use (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add functionality for FD SB to drop packets (Stefan Assmann) [1091126]
-- [ethernet] i40e: Cleanup in FDIR SB ethtool code (Stefan Assmann) [1091126]
-- [ethernet] i40e: eeprom integrity check on load and empr (Stefan Assmann) [1091126]
-- [ethernet] i40e: Make the alloc and free queue vector calls orthogonal (Stefan Assmann) [1091126]
-- [ethernet] i40e: Delete ATR filter on RST (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a message string (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add EEE LPI stats (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091126]
-- [ethernet] i40e: potential array underflow in i40e_vc_process_vf_msg() (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: reduce context descriptors (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: enable hardware feature head write back (Stefan Assmann) [1091126]
-- [ethernet] i40e: Refactor and cleanup i40e_open(), adding i40e_vsi_open() (Stefan Assmann) [1091126]
-- [ethernet] i40e: Patch to enable Ethtool/netdev feature flag for NTUPLE control (Stefan Assmann) [1091126]
-- [ethernet] i40e: support VF link state ndo (Stefan Assmann) [1091126]
-- [ethernet] i40e: Avoid double setting of NETIF_F_SG for the HW encapsulation feature mask (Stefan Assmann) [1091126]
-- [ethernet] i40e: Don't receive packets when the napi budget == 0 (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Use dma_set_mask_and_coherent (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Use correct number of VF vectors (Stefan Assmann) [1091126]
-- [ethernet] i40e: Let MDD events be handled by MDD handler (Stefan Assmann) [1091126]
-- [ethernet] i40e: Bug fix for FDIR replay logic (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add code to handle FD table full condition (Stefan Assmann) [1091126]
-- [ethernet] i40e: Define a new state variable to keep track of feature auto disable (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix function comments (Stefan Assmann) [1091126]
-- [ethernet] i40e: simplified init string (Stefan Assmann) [1091126]
-- [ethernet] i40e: cleanup strings (Stefan Assmann) [1091126]
-- [ethernet] i40e: make string references to q be queue (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Some flow director HW definition fixes (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a bug in the update logic for FDIR SB filter (Stefan Assmann) [1091126]
-- [ethernet] i40e: delete netdev after deleting napi and vectors (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump pf&vf build versions (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: carefully fill tx ring (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix nvm version and remove firmware report (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix static checker warning (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove a redundant filter addition (Stefan Assmann) [1091126]
-- [ethernet] i40e: count timeout events (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove a FW workaround for Number of MSIX vectors (Stefan Assmann) [1091126]
-- [ethernet] i40e: clean up comment style (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: i40e implementation for skb_set_hash (Stefan Assmann) [1091126]
-- [ethernet] i40e: Prevent overflow due to kzalloc (Stefan Assmann) [1091126]
-- [ethernet] i40e: Flow Director sideband accounting (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump driver versions (Stefan Assmann) [1091126]
-- [ethernet] i40e: Change MSIX to MSI-X (Stefan Assmann) [1091126]
-- [ethernet] i40e: tighten up ring enable/disable flow (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove unnecessary delay (Stefan Assmann) [1091126]
-- [ethernet] i40e: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't handle VF reset on unload (Stefan Assmann) [1091126]
-- [ethernet] i40e: enable extant VFs (Stefan Assmann) [1091126]
-- [ethernet] i40e: reset VFs after PF reset (Stefan Assmann) [1091126]
-- [ethernet] i40e: set VF state to active when reset is complete (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove dead code (Stefan Assmann) [1091126]
-- [ethernet] i40e: Setting i40e_down bit for tx_timeout (Stefan Assmann) [1091126]
-- [ethernet] i40evf: clean up memsets (Stefan Assmann) [1091126]
-- [ethernet] i40e: bump driver version (Stefan Assmann) [1091126]
-- [ethernet] i40e: spelling error (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add missing braces to i40e_dcb_need_reconfig() (Stefan Assmann) [1091126]
-- [net] sunrpc: get rid of use_gssp_lock ("J. Bruce Fields") [1117914]
-- [net] sunrpc: fix potential race between setting use_gss_proxy and the upcall rpc_clnt ("J. Bruce Fields") [1117914]
-- [net] sunrpc: don't wait for write before allowing reads from use-gss-proxy file ("J. Bruce Fields") [1117914]
-- [net] sunrpc: trim off EC bytes in GSSAPI v2 unwrap ("J. Bruce Fields") [1117914]
-- [net] svcrpc: handle some gssproxy encoding errors ("J. Bruce Fields") [1117914]
-- [net] svcrpc: fix error-handling on badd gssproxy downcall ("J. Bruce Fields") [1117914]
-
-* Thu Sep 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-152.el7]
-- [scsi] scsi_lib: remove the description string in scsi_io_completion() (Maurizio Lombardi) [1045998]
-- [scsi] sd: fix a bug in deriving the FLUSH_TIMEOUT from the basic I/O timeout (Ewan Milne) [1123906]
-- [scsi] scsi_debug: simple short transfer injection (Ewan Milne) [1132100]
-- [scsi] scsi_debug: add ability to enable clustering (Ewan Milne) [1132100]
-- [scsi] scsi_debug: protect device access with atomic_rw lock (Ewan Milne) [1132100]
-- [scsi] scsi_debug: prepare to enable clustering (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix resp_xdwriteread() return value when running out of memory (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix duplicate dif_errors increment (Ewan Milne) [1132100]
-- [scsi] scsi_debug: make pseudo_primary static (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix false positive logical block reference tag check fail (Ewan Milne) [1132100]
-- [scsi] scsi_debug: simplify creation and destruction of driver attribute files (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix sparse warnings related to data integrity field (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix invalid value check for guard module parameter (Ewan Milne) [1132100]
-- [scsi] scsi_debug: avoid partial copying PI from prot_sglist to dif_storep (Ewan Milne) [1132100]
-- [scsi] scsi_debug: factor out copying PI from dif_storep to prot_sglist (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix buffer overrun when DIF/DIX is enabled and virtual_gb > 0 (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix logical block provisioning support when unmap_alignment != 0 (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix do_device_access() with wrap around range (Ewan Milne) [1132100]
-- [scsi] lib/scatterlist: introduce sg_pcopy_from_buffer() and sg_pcopy_to_buffer() (Ewan Milne) [1132100]
-- [scsi] lib/scatterlist: factor out sg_miter_get_next_page() from sg_miter_next() (Ewan Milne) [1132100]
-- [scsi] scsi_debug: reduce duplication between prot_verify_read and prot_verify_write (Ewan Milne) [1132100]
-- [scsi] scsi_debug: simplify offset calculation for dif_storep (Ewan Milne) [1132100]
-- [scsi] scsi_debug: invalidate protection info for unmapped region (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix NULL pointer dereference with parameters dif=0 dix=1 (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix incorrectly nested kmap_atomic() (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix invalid address passed to kunmap_atomic() (Ewan Milne) [1132100]
-- [scsi] use dev_printk variants where possible (Ewan Milne) [998695]
-- [scsi] use dev_printk() variants for ioctl (Ewan Milne) [998695]
-- [scsi] Implement st_printk() (Ewan Milne) [998695]
-- [scsi] Implement ch_printk() (Ewan Milne) [998695]
-- [scsi] Implement sg_printk() (Ewan Milne) [998695]
-- [scsi] Implement sr_printk() (Ewan Milne) [998695]
-- [scsi] ses: Use vpd information from scsi_device (Ewan Milne) [1132092]
-- [scsi] Add EVPD page 0x83 and 0x80 to sysfs (Ewan Milne) [1132092]
-- [scsi] Return VPD page length in scsi_vpd_inquiry() (Ewan Milne) [1132092]
-- [scsi] Workaround for disks that report bad optimal transfer length (Ewan Milne) [1132092]
-- [scsi] sg: O_EXCL and other lock handling (Ewan Milne) [1132092]
-- [scsi] sg: add SG_FLAG_Q_AT_TAIL flag (Ewan Milne) [1132092]
-- [scsi] sg: relax 16 byte cdb restriction (Ewan Milne) [1132092]
-- [scsi] scsi constants: command, sense key + additional sense strings (Ewan Milne) [1132092]
-- [scsi] scsi_error: disable eh_deadline if no host_reset_handler is set (Ewan Milne) [1132092]
-- [scsi] cleanup switch in scsi_adjust_queue_depth (Ewan Milne) [1132092]
-- [scsi] set correct completion code in scsi_send_eh_cmnd() (Ewan Milne) [1132092]
-- [scsi] Spelling hsot -> host (Ewan Milne) [1132092]
-- [scsi] scsi_sysfs: Implement 'is_visible' callback (Ewan Milne) [1132092]
-- [scsi] export device_busy for sdev (Ewan Milne) [1132092]
-- [scsi] fc: ensure scan_work isn't active when freeing fc_rport (Ewan Milne) [1132092]
-- [scsi] scsi_transport_fc: Add 32Gbps speed definition (Ewan Milne) [1132092]
-- [scsi] sd: bad return code of init_sd (Ewan Milne) [1132092]
-- [scsi] sd: notify block layer when using temporary change to cache_type (Ewan Milne) [1132092]
-- [scsi] sd: medium access timeout counter fails to reset (Ewan Milne) [1101729]
-- [scsi] sd: Quiesce mode sense error messages (Ewan Milne) [1132092]
-- [scsi] sd: Do not call do_div() with a 64-bit divisor (Ewan Milne) [1132092]
-- [scsi] sd: Reduce buffer size for vpd request (Ewan Milne) [1132092]
-- [scsi] sd: avoid deadlocks when running under multipath (Ewan Milne) [1132092]
-- [scsi] st: fix enlarge_buffer (Ewan Milne) [1132092]
-- [scsi] use the scsi data buffer length to extract transfer size (Ewan Milne) [1132092]
-- [scsi] scsi_cmnd: Introduce scsi_transfer_length helper (Ewan Milne) [1132092]
-- [scsi] Add CDB definition for COMPARE_AND_WRITE (Ewan Milne) [1132092]
-
-* Thu Sep 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-151.el7]
-- [md] raid6: avoid data corruption during recovery of double-degraded RAID6 (Jes Sorensen) [1130905]
-- [block] scsi_ioctl: verify return pointer from blk_get_request (Jeff Moyer) [1104324]
-- [pnp] pnpacpi: Fix acpi_pnp_match() (Myron Stowe) [1128632]
-- [pnp] pnpacpi: Do not return errors if _DIS or _SRS are not present (Myron Stowe) [1128632]
-- [acpi] dock: Make 'docked' sysfs attribute work as documented (Myron Stowe) [1128632]
-- [acpi] dock: Use acpi_device_enumerated() to check if dock is present (Myron Stowe) [1128632]
-- [acpi] hotplug: Fix panic on eject to ejected device (Myron Stowe) [1128632]
-- [acpi] scan: Clear match_driver flag in acpi_bus_trim() (Myron Stowe) [1128632]
-- [acpi] scan: Use direct recurrence for device hierarchy walks (Myron Stowe) [1128632]
-- [acpi] Introduce acpi_set_device_status() (Myron Stowe) [1128632]
-- [acpi] hotplug: Drop unfinished global notification handling routines (Myron Stowe) [1128632]
-- [acpi] hotplug: Rework generic code to handle suprise removals (Myron Stowe) [1128632]
-- [acpi] hotplug: Move container-specific code out of the core (Myron Stowe) [1128632]
-- [acpi] hotplug: Make ACPI PCI root hotplug use common hotplug code (Myron Stowe) [1128632]
-- [acpi] hotplug: Introduce common hotplug function acpi_device_hotplug() (Myron Stowe) [1128632]
-- [acpi] hotplug: Do not fail bus and device checks for disabled hotplug (Myron Stowe) [1128632]
-- [acpi] scan: Add acpi_device objects for all device nodes in the namespace (Myron Stowe) [1128632]
-- [acpi] scan: Define non-empty device removal handler (Myron Stowe) [1128632]
-- [acpi] core: Store an ACPI device pointer in struct acpi_dev_node (Myron Stowe) [1128632]
-- [acpi] pm: Drop two functions that are not used any more (Myron Stowe) [1128632]
-- [acpi] power: Drop automaitc resume of power resource dependent devices (Myron Stowe) [1128632]
-- [acpi] Use EXPORT_SYMBOL() for acpi_bus_get_device() (Myron Stowe) [1128632]
-- [acpi] Print diagnostic messages if device links cannot be created (Myron Stowe) [1128632]
-- [acpi] Drop unnecessary label from acpi_bind_one() (Myron Stowe) [1128632]
-- [acpi] Clean up error code path in acpi_unbind_one() (Myron Stowe) [1128632]
-- [acpi] Use list_for_each_entry() in acpi_unbind_one() (Myron Stowe) [1128632]
-- [acpi] acpi_bind_one()/acpi_unbind_one() whitespace cleanups (Myron Stowe) [1128632]
-- [acpi] Create symlinks in acpi_bind_one() under physical_node_lock (Myron Stowe) [1128632]
-- [acpi] Reduce acpi_bind_one()/acpi_unbind_one() code duplication (Myron Stowe) [1128632]
-- [acpi] Do not fail acpi_bind_one() if device is already bound correctly (Myron Stowe) [1128632]
-- [acpi] Move acpi_bus_get_device() from bus.c to scan.c (Myron Stowe) [1128632]
-- [acpi] pm: Use ACPI_STATE_D3_COLD instead of ACPI_STATE_D3 everywhere (Myron Stowe) [1128632]
-- [usb] xhci: convert TRB_CYCLE to le32 before using it to set Link TRB's cycle bit (Steve Best) [1123119]
-- [usb] xhci: fix incorrect type in assignment in handle_device_notification() (Steve Best) [1123119]
-- [input] alps: Rushmore and v7 resolution support (Benjamin Tissoires) [1107819]
-- [input] alps: add support for v7 devices (Benjamin Tissoires) [1107819]
-- [input] alps: cache firmware version (Benjamin Tissoires) [1107819]
-- [input] alps: change decode function prototype to return an int (Benjamin Tissoires) [1107819]
-- [input] alps: report 2 touches when we've > 2 fingers (Benjamin Tissoires) [1107819]
-- [input] alps: add an alps_report_semi_mt_data function (Benjamin Tissoires) [1107819]
-- [input] alps: use single touch data when v3 mt data contains only one finger (Benjamin Tissoires) [1107819]
-- [input] alps: use standard contact tracking instead of DIY (Benjamin Tissoires) [1107819]
-- [input] alps: use struct input_mt_pos to track coordinates (Benjamin Tissoires) [1107819]
-- [input] alps: process_bitmap, round down when spreading adjescent fingers over 2 points (Benjamin Tissoires) [1107819]
-- [input] alps: process_bitmap, fix counting of high point bits (Benjamin Tissoires) [1107819]
-- [input] alps: process_bitmap, add alps_get_bitmap_points() helper function (Benjamin Tissoires) [1107819]
-- [input] alps: process_bitmap, don't invert the Y-axis on Rushmore (Benjamin Tissoires) [1107819]
-- [input] alps: improve 2-finger reporting on v3 models (Benjamin Tissoires) [1107819]
-- [input] alps: fix rushmore packet decoding (Benjamin Tissoires) [1107819]
-- [input] alps: add support for "Dolphin" devices (Benjamin Tissoires) [1107819]
-- [input] alps: add support for DualPoint device on Dell XT2 model (Benjamin Tissoires) [1107819]
-- [input] alps: change secondary device's name (Benjamin Tissoires) [1107819]
-- [tools] turbostat: tweak whitespace in output format (Prarit Bhargava) [1133893]
-- [tools] cpupower: bench/parse.c, Fix several minor errors (Prarit Bhargava) [1133893]
-- [tools] cpupower: Remove redundant error check (Prarit Bhargava) [1133893]
-- [tools] cpupower: mperf monitor, Correct use of ! and & (Prarit Bhargava) [1133893]
-- [tools] cpupower: drop negativity check on unsigned value (Prarit Bhargava) [1133893]
-- [tools] cpupower: Remove mc and smt power aware scheduler info/settings (Prarit Bhargava) [1133893]
-- [tools] cpupower: cpupower info -b should return 0 on success, not the perf bias value (Prarit Bhargava) [1133893]
-- [tools] cpupower: Remove dead link to homepage, and update the targets built (Prarit Bhargava) [1133893]
-- [tools] cpupower: Rename cpufrequtils -> cpupower, and libcpufreq -> libcpupower (Prarit Bhargava) [1133893]
-- [tools] cpupower: If root, try to load msr driver on x86 if /dev/cpu/0/msr is not available (Prarit Bhargava) [1133893]
-- [tools] cpupower: Install recently added cpupower-idle-{set, info} manpages (Prarit Bhargava) [1133893]
-- [tools] cpupower: Remove all manpages on make uninstall (Prarit Bhargava) [1133893]
-- [tools] cpupower: Introduce idle state disable-by-latency and enable-all (Prarit Bhargava) [1133893]
-- [tools] turbostat: Drop temperature checks (Prarit Bhargava) [1133893]
-- [tools] cpufreq: Make linux-pm@vger.kernel.org official mailing list (Prarit Bhargava) [1133893]
-- [tools] turbostat: simplify output, add Avg_MHz (Prarit Bhargava) [1133893]
-- [tools] turbostat: introduce -s to dump counters (Prarit Bhargava) [1133893]
-- [tools] turbostat: remove unused command line option (Prarit Bhargava) [1133893]
-- [tools] turbostat: Add option to report joules consumed per sample (Prarit Bhargava) [1133893]
-- [tools] turbostat: Clean up error handling; disambiguate error messages; use err and errx (Prarit Bhargava) [1133893]
-- [tools] turbostat: Add a .gitignore to ignore the compiled turbostat binary (Prarit Bhargava) [1133893]
-- [tools] turbostat: Factor out common function to open file and exit on failure (Prarit Bhargava) [1133893]
-- [tools] turbostat: Add a helper to parse a single int out of a file (Prarit Bhargava) [1133893]
-- [tools] turbostat: Check return value of fscanf (Prarit Bhargava) [1133893]
-- [tools] turbostat: Don't attempt to printf an off_t with zx (Prarit Bhargava) [1133893]
-- [tools] turbostat: Use GCC's CPUID functions to support PIC (Prarit Bhargava) [1133893]
-- [tools] turbostat: Don't put unprocessed uapi headers in the include path (Prarit Bhargava) [1133893]
-- [tools] cpupower: Fix sscanf robustness in cpufreq-set (Prarit Bhargava) [1133893]
-- [tools] cpupower: Fix segfault due to incorrect getopt_long arugments (Prarit Bhargava) [1133893]
-- [tools] cpupower: fix wrong err msg not supported vs not available (Prarit Bhargava) [1133893]
-- [tools] cpupower: Add cpupower-idle-set(1) manpage (Prarit Bhargava) [1133893]
-- [virt] virtio-scsi: Skip setting affinity on uninitialized vq (Fam Zheng) [1083860]
-- [mm] memcontrol: remove hierarchy restrictions for swappiness and oom_control (Johannes Weiner) [1124110]
-- [mm] thp: fix copy_page_rep GPF by testing is_huge_zero_pmd once only (Rik van Riel) [1123040]
-- [mm] numa: Remove BUG_ON() in __handle_mm_fault() (Rik van Riel) [1119439]
-- [iommu] Add empty stub for iommu_group_get_by_id() (Steve Best) [1123122]
-- [input] Revert: wacom: testing result shows get_report is unnecessary (Aristeu Rozanski) [1079541]
-- [kernel] kexec: fix build error when hugetlbfs is disabled (Baoquan He) [1115240]
-- [kernel] kexec: export free_huge_page to VMCOREINFO (Baoquan He) [1115240]
-- [kernel] kexec: save PG_head_mask in VMCOREINFO (Baoquan He) [1115240]
-- [block] nvme: Fix START_STOP_UNIT Scsi->NVMe translation (David Milburn) [1111259]
-- [block] nvme: Use Log Page constants in SCSI emulation (David Milburn) [1111259]
-- [block] nvme: Define Log Page constants (David Milburn) [1111259]
-- [block] nvme: Fix hot cpu notification dead lock (David Milburn) [1111259]
-- [block] nvme: Rename io_timeout to nvme_io_timeout (David Milburn) [1111259]
-- [block] nvme: Use last bytes of f/w rev SCSI Inquiry (David Milburn) [1111259]
-- [block] nvme: Adhere to request queue block accounting enable/disable (David Milburn) [1111259]
-- [block] nvme: Fix nvme get/put queue semantics (David Milburn) [1111259]
-- [block] nvme: Delete NVME_GET_FEAT_TEMP_THRESH (David Milburn) [1111259]
-- [block] nvme: Make admin timeout a module parameter (David Milburn) [1111259]
-- [block] nvme: Make iod bio timeout a parameter (David Milburn) [1111259]
-- [block] nvme: Prevent possible NULL pointer dereference (David Milburn) [1111259]
-- [block] nvme: Fix the buffer size passed in GetLogPage(CDW10.NUMD) (David Milburn) [1111259]
-- [block] nvme: Update data structures for NVMe 1.2 (David Milburn) [1111259]
-- [block] nvme: Enable BUILD_BUG_ON checks (David Milburn) [1111259]
-- [block] nvme: Update namespace and controller identify structures to the 1.1a spec (David Milburn) [1111259]
-- [block] nvme: Flush with data support (David Milburn) [1111259]
-- [block] nvme: Configure support for block flush (David Milburn) [1111259]
-- [block] nvme: Add tracepoints (David Milburn) [1111259]
-- [block] nvme: Protect against badly formatted CQEs (David Milburn) [1111259]
-- [block] nvme: Improve error messages (David Milburn) [1111259]
-- [block] nvme: Update copyright headers (David Milburn) [1111259]
-- [powerpc] 64bit sendfile is capped at 2GB (Gustavo Duarte) [1107774]
-- [powerpc] sched: stop updating inside arch_update_cpu_topology() when nothing to be update (Gustavo Duarte) [1098372]
-- [firewire] ohci: fix probe failure with Agere/LSI controllers (Neil Horman) [994878]
-- [firewire] ohci: beautify some macro definitions (Neil Horman) [994878]
-- [s390] airq: silence lockdep warning (Hendrik Brueckner) [1088554]
-- [virt] virtio_scsi: don't call virtqueue_add_sgs(... GFP_NOIO) holding spinlock (Hendrik Brueckner) [1088554]
-- [virt] virtio_ccw: introduce device_lost in virtio_ccw_device (Hendrik Brueckner) [1088554]
-- [virt] virtio: virtio_break_device() to mark all virtqueues broken (Hendrik Brueckner) [1088554]
-- [virt] s390/sclp_vt220: Fix kernel panic due to early terminal input (Hendrik Brueckner) [1088554]
-- [virt] virtio: fail adding buffer on broken queues (Hendrik Brueckner) [1088554]
-- [virt] virtio_net: don't crash if virtqueue is broken (Hendrik Brueckner) [1088554]
-- [virt] s390/virtio_ccw: fix hang in set offline processing (Hendrik Brueckner) [1088554]
-- [s390] irq: improve displayed interrupt order in /proc/interrupts (Hendrik Brueckner) [1088554]
-- [virt] virtio-ccw: virtio-ccw adapter interrupt support (Hendrik Brueckner) [1088554]
-- [virt] virtio_ccw: fix vcdev pointer handling issues (Hendrik Brueckner) [1088554]
-- [virt] s390/airq: add support for irq ranges (Hendrik Brueckner) [1088554]
-- [virt] kvm/s390/virtio-ccw: Handle command rejects (Hendrik Brueckner) [1088554]
-- [virt] virtio_scsi: verify if queue is broken after virtqueue_get_buf() (Hendrik Brueckner) [1088554]
-- [virt] virtio_ring: adapt to notify() returning bool (Hendrik Brueckner) [1088554]
-- [virt] virtio_net: verify if queue is broken after virtqueue_get_buf() (Hendrik Brueckner) [1088554]
-- [virt] virtio_blk: verify if queue is broken after virtqueue_get_buf() (Hendrik Brueckner) [1088554]
-- [virt] virtio_ring: add new function virtqueue_is_broken() (Hendrik Brueckner) [1088554]
-- [virt] virtio_ring: let virtqueue_{kick()/notify()} return a bool (Hendrik Brueckner) [1088554]
-- [virt] tools/virtio: fix missing kmemleak_ignore symbol (Hendrik Brueckner) [1088554]
-- [virt] virtio_ring: plug kmemleak false positive (Hendrik Brueckner) [1088554]
-- [mm] page_alloc: do not cache reclaim distances (Larry Woodman) [1120342]
-- [mm] disable zone_reclaim_mode by default (Larry Woodman) [1120342]
-
-* Tue Sep 02 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-150.el7]
-- [net] team: set IFF_TEAM_PORT priv_flag after rx_handler is registered (Jiri Pirko) [1132943]
-- [net] ipv6: fix calculation of option len in ip6_append_data (Hannes Frederic Sowa) [1127218]
-- [net] ipv6: pmtudisc setting not respected with UFO/CORK (Hannes Frederic Sowa) [1127218]
-- [net] ipv4: fix DO and PROBE pmtu mode regarding local fragmentation with UFO/CORK (Hannes Frederic Sowa) [1127218]
-- [net] clear local_df when passing skb between namespaces (Jiri Pirko) [1128223]
-- [net] rtnetlink: fix VF info size (Jiri Benc) [1128267]
-- [net] netfilter: connlimit: move lock array out of struct connlimit_data (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: use rbtree for per-host conntrack obj storage (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: make same_source_net signed (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: use keyed locks (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: use kmem_cache for conn objects (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: move insertion of new element out of count function (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: improve packet-to-closed-connection logic (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: factor hlist search into new function (Florian Westphal) [1052282]
-- [net] ipv6: increase ip6_rt_max_size to 16384 (Hannes Frederic Sowa) [1119364]
-- [net] ipv6: don't count addrconf generated routes against gc limit (Hannes Frederic Sowa) [1119364]
-- [net] tcp: add tcp_syncookies mode to allow unconditionally generation of syncookies (Florian Westphal) [1084439]
-- [net] tcp: syncookies: do not use getnstimeofday() (Florian Westphal) [1084439]
-- [net] tcp: syncookies: reduce mss table to four values (Florian Westphal) [1084439]
-- [net] tcp: syncookies: reduce cookie lifetime to 128 seconds (Florian Westphal) [1084439]
-- [net] sctp: only warn in proc_sctp_do_alpha_beta if write (Daniel Borkmann) [1110290]
-- [net] sctp: check proc_dointvec result in proc_sctp_do_auth (Daniel Borkmann) [1110290]
-- [net] sctp: propagate sysctl errors from proc_do* properly (Daniel Borkmann) [1110290]
-- [net] sctp: fix permissions for rto_alpha and rto_beta knobs (Daniel Borkmann) [1110290]
-- [net] sctp: cache auth_enable per endpoint (Daniel Borkmann) [1110290]
-- [net] sctp: fix a missed .data initialization (Daniel Borkmann) [1110290]
-- [net] sctp: fix up a spacing (Daniel Borkmann) [1110290]
-- [net] sctp: add check rto_min and rto_max in sysctl (Daniel Borkmann) [1110290]
-- [net] Revert: introduce netif_skb_dev_features (Florian Westphal) [1109214]
-- [net] ip: push gso skb forwarding handling down the stack (Florian Westphal) [1109214]
-- [net] ipv6: send pkttoobig immediately if orig frag size > mtu (Florian Westphal) [1109214]
-- [net] ipv4: ip_forward: fix inverted local_df test (Florian Westphal) [1109214]
-- [net] netfilter: ipv4: defrag: set local_df flag on defragmented skb (Florian Westphal) [1109214]
-- [net] don't account for udp header size when computing seglen (Florian Westphal) [1109214]
-
-* Tue Sep 02 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-149.el7]
-- [fs] ext4: fix type declaration of ext4_validate_block_bitmap (Lukas Czerner) [1091055]
-- [fs] ext4: error out if verifying the block bitmap fails (Lukas Czerner) [1091055]
-- [fs] cifs: Fix memory leaks in SMB2_open (Sachin Prabhu) [1082049]
-- [fs] cifs: ensure that vol->username is not NULL before running strlen on it (Sachin Prabhu) [1082049]
-- [fs] cifs: Clarify SMB2/SMB3 create context and add missing ones (Sachin Prabhu) [1082049]
-- [fs] cifs: Do not send ClientGUID on SMB2.02 dialect (Sachin Prabhu) [1082049]
-- [fs] cifs: Set client guid on per connection basis (Sachin Prabhu) [1082049]
-- [fs] cifs/netmisc: convert printk to pr_foo() (Sachin Prabhu) [1082049]
-- [fs] cifs: replace seq_printf by seq_puts (Sachin Prabhu) [1082049]
-- [fs] cifs: Update cifs version number to 2.03 (Sachin Prabhu) [1082049]
-- [fs] cifs: new helper file_inode(file) (Sachin Prabhu) [1082049]
-- [fs] cifs: fix potential races in cifs_revalidate_mapping (Sachin Prabhu) [1082049]
-- [fs] cifs: new helper function: cifs_revalidate_mapping (Sachin Prabhu) [1082049]
-- [fs] cifs: convert booleans in cifsInodeInfo to a flags field (Sachin Prabhu) [1082049]
-- [fs] cifs: fix cifs_uniqueid_to_ino_t not to ever return 0 (Sachin Prabhu) [1082049]
-- [fs] cifs: fix actimeo=0 corner case when cifs_i->time == jiffies (Sachin Prabhu) [1082049]
-- [fs] cifs: fix dead code (Sachin Prabhu) [1082049]
-- [fs] cifs: fix error handling cifs_user_readv (Sachin Prabhu) [1082049]
-- [fs] cifs: remove unused variable (Sachin Prabhu) [1082049]
-- [fs] cifs: Return correct error on query of xattr on file with empty xattrs (Sachin Prabhu) [1082049]
-- [fs] cifs: fix the race in cifs_writev() (Sachin Prabhu) [1082049]
-- [fs] cifs: add __init to cifs_init_inodecache() (Sachin Prabhu) [1082049]
-- [fs] cifs: ->rename() without ->lookup() makes no sense (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix too big maxBuf size for SMB3 mounts (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix cifsacl mounts over smb2 to not call cifs (Sachin Prabhu) [1082049]
-- [fs] cifs: retrieving CIFS ACLs when mounted with SMB2 fails dropping session (Sachin Prabhu) [1082049]
-- [fs] cifs: Add protocol specific operation for CIFS xattrs (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix SMB2 mounts so they don't try to set or get xattrs via cifs (Sachin Prabhu) [1082049]
-- [fs] cifs: Cleanup cifs open codepath (Sachin Prabhu) [1082049]
-- [fs] cifs: Remove extra indentation in cifs_sfu_type (Sachin Prabhu) [1082049]
-- [fs] cifs: Cleanup cifs_mknod (Sachin Prabhu) [1082049]
-- [fs] cifs: Cleanup CIFSSMBOpen (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix memory leak in cifs_hardlink() (Sachin Prabhu) [1082049]
-- [fs] cifs: Add missing end of line termination to some cifs messages (Sachin Prabhu) [1082049]
-- [fs] cifs: Do not use btrfs refcopy ioctl for SMB2 copy offload (Sachin Prabhu) [1082049]
-- [fs] cifs: Check SMB3 dialects against downgrade attacks (Sachin Prabhu) [1082049]
-- [fs] cifs: Removed duplicated (and unneeded) goto (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix SMB2/SMB3 Copy offload support (refcopy) for large files (Sachin Prabhu) [1082049]
-- [fs] cifs: Warn if SMB3 encryption required by server (Sachin Prabhu) [1082049]
-- [fs] cifs: Set copychunk defaults (Sachin Prabhu) [1082049]
-- [fs] cifs: SMB2/SMB3 Copy offload support (refcopy) phase 1 (Sachin Prabhu) [1082049]
-- [fs] cifs: Use data structures to compute NTLMv2 response offsets (Sachin Prabhu) [1082049]
-- [fs] cifs: O_DIRECT opens should work on directio mounts (Sachin Prabhu) [1082049]
-- [fs] cifs: don't spam the logs on unexpected lookup errors (Sachin Prabhu) [1082049]
-- [fs] cifs: change ERRnomem error mapping from ENOMEM to EREMOTEIO (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix symbolic links usage (Sachin Prabhu) [1082049]
-- [fs] cifs: Query network adapter info at mount time for debugging (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix unused variable warning when CIFS POSIX disabled (Sachin Prabhu) [1082049]
-- [fs] cifs: Allow setting per-file compression via CIFS protocol (Sachin Prabhu) [1082049]
-- [fs] cifs: Query File System Alignment (Sachin Prabhu) [1082049]
-- [fs] cifs: Query device characteristics at mount time from server on SMB2/3 not just on cifs mounts (Sachin Prabhu) [1082049]
-- [fs] cifs: Send a logoff request before removing a smb session (Sachin Prabhu) [1082049]
-- [fs] cifs: Make big endian multiplex ID sequences monotonic on the wire (Sachin Prabhu) [1082049]
-- [fs] cifs: Remove redundant multiplex identifier check from check_smb_hdr() (Sachin Prabhu) [1082049]
-- [fs] cifs: Query file system attributes from server on SMB2, not just cifs, mounts (Sachin Prabhu) [1082049]
-- [fs] cifs: Allow setting per-file compression via SMB2/3 (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix corrupt SMB2 ioctl requests (Sachin Prabhu) [1082049]
-- [fs] cifs: rcu-delay unload_nls() and freeing sbi (Sachin Prabhu) [1082049]
-- [fs] cifs: new helper kfree_put_link() (Sachin Prabhu) [1082049]
-- [fs] cifs: ntstatus_to_dos_map[] is not terminated (Sachin Prabhu) [1082049]
-- [fs] cifs: Allow LANMAN auth method for servers supporting unencapsulated authentication methods (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix inability to write files >2GB to SMB2/3 shares (Sachin Prabhu) [1082049]
-- [fs] cifs: Avoid umount hangs with smb2 when server is unresponsive (Sachin Prabhu) [1082049]
-- [fs] cifs: do not treat non-symlink reparse points as valid symlinks (Sachin Prabhu) [1082049]
-- [fs] cifs: update cifs.ko version (Sachin Prabhu) [1082049]
-- [fs] cifs: Provide sane values for nlink (Sachin Prabhu) [1082049]
-- [fs] cifs: FS-Cache: Uncache unread pages in cifs_readpages() before freeing them (Sachin Prabhu) [1082049]
-- [fs] cifs: Avoid calling unlock_page() twice in cifs_readpage() when using fscache (Sachin Prabhu) [1082049]
-- [fs] cifs: Do not take a reference to the page in cifs_readpage_worker() (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix wrong pos argument of cifs_find_lock_conflict (Sachin Prabhu) [1082049]
-
-* Sat Aug 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-148.el7]
-- [ethernet] igbvf: Remove DEFINE_PCI_DEVICE_TABLE macro use (Stefan Assmann) [1091122]
-- [ethernet] igbvf: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Stefan Assmann) [1091122]
-- [ethernet] igbvf: remove usless return statements (Stefan Assmann) [1091122]
-- [ethernet] igbvf: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1091122]
-- [ethernet] igbvf: remove open-coded skb_cow_head (Stefan Assmann) [1091122]
-- [ethernet] igbvf: Convert uses of __constant_<foo> to <foo> (Stefan Assmann) [1091122]
-- [ethernet] igbvf: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1091122]
-- [ethernet] igbvf: slight optimization of addr compare (Stefan Assmann) [1091122]
-- [ethernet] igbvf: add missing iounmap() on error in igbvf_probe() (Stefan Assmann) [1091122]
-- [ethernet] igbvf: integer wrapping bug setting the mtu (Stefan Assmann) [1091122]
-- [ethernet] igbvf: Miscellaneous conversions to ETH_ALEN (Stefan Assmann) [1091122]
-- [ethernet] igbvf: Remove extern from function prototypes (Stefan Assmann) [1091122]
-- [ethernet] igbvf: fix 32-bit DMA mask handling (Stefan Assmann) [1091122]
-- [ethernet] igb: bump igb version to 5.2.13 (Stefan Assmann) [1091121]
-- [ethernet] igb: Add message when malformed packets detected by hw (Stefan Assmann) [1091121]
-- [ethernet] igb: remove unnecessary break after return (Stefan Assmann) [1091121]
-- [ethernet] igb: remove unnecessary break after goto (Stefan Assmann) [1091121]
-- [ethernet] igb: do a reset on SR-IOV re-init if device is down (Stefan Assmann) [1091121]
-- [ethernet] igb: workaround for i210 errata 25, Slow System Clock (Stefan Assmann) [1091121]
-- [ethernet] igb: bring link up when PHY is powered up (Stefan Assmann) [1091121]
-- [ethernet] igb: separate hardware setting from the set_ts_config ioctl (Stefan Assmann) [1091121]
-- [ethernet] igb: Replace 1/0 return values with true/false (Stefan Assmann) [1091121]
-- [ethernet] igb: unhide invariant returns (Stefan Assmann) [1091121]
-- [ethernet] igb: use ethtool_cmd_speed_set helper to set ethtool speed value (Stefan Assmann) [1091121]
-- [ethernet] igb: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Stefan Assmann) [1091121]
-- [ethernet] igb: add defaults for i210 TX/RX PBSIZE (Stefan Assmann) [1091121]
-- [ethernet] igb: use mac loopback for i354 backplane (Stefan Assmann) [1091121]
-- [ethernet] igb: rename igb_ptp_enable to igb_ptp_feature_enable (Stefan Assmann) [1091121]
-- [ethernet] igb: remove redundant PHY power down register write (Stefan Assmann) [1091121]
-- [ethernet] igb: remove usless return statements (Stefan Assmann) [1091121]
-- [ethernet] igb: remove return statements for void functions (Stefan Assmann) [1091121]
-- [ethernet] igb: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1091121]
-- [ethernet] igb: Change memcpy to struct assignment (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to remove unneeded extern declaration (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to replace deprecated DEFINE_PCI_DEVICE_TABLE (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix static initialization (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix msleep warnings (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix line length warnings (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to remove return parentheses (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix missing break in switch statements (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix assignment in if error (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to change comment style on license headers (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix for trailing statement (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix pointer location error (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix incorrect indentation (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix braces location warnings (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups for messaging (Stefan Assmann) [1091121]
-- [ethernet] igb: fix message terminations (Stefan Assmann) [1091121]
-- [ethernet] igb: fix stats for i210 rx_fifo_errors (Stefan Assmann) [1091121]
-- [ethernet] igb: fix last_rx_timestamp usage (Stefan Assmann) [1091121]
-- [ethernet] igb: remove open-coded skb_cow_head (Stefan Assmann) [1091121]
-- [ethernet] igb: Convert iounmap to pci_iounmap (Stefan Assmann) [1091121]
-- [ethernet] igb: fix race conditions on queuing skb for HW time stamp (Stefan Assmann) [1091121]
-- [ethernet] igb: never generate both software and hardware timestamps (Stefan Assmann) [1091121]
-- [ethernet] igb: Unset IGB_FLAG_HAS_MSIX-flag when falling back to msi-only (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix Null-pointer dereference in igb_reset_q_vector (Stefan Assmann) [1091121]
-- [ethernet] igb: specify phc_index of 82575 for get_ts_info (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix memory leak in igb_get_module_eeprom() (Stefan Assmann) [1091121]
-- [ethernet] igb: add register rd/wr for surprise removal (Stefan Assmann) [1091121]
-- [ethernet] igb: implement SIOCGHWTSTAMP ioctl (Stefan Assmann) [1091121]
-- [ethernet] igb: Convert uses of __constant_<foo> to <foo> (Stefan Assmann) [1091121]
-- [ethernet] igb: enable VLAN stripping for VMs with i350 (Stefan Assmann) [1091121]
-- [ethernet] igb: Add register defines needed for time sync functions (Stefan Assmann) [1091121]
-- [ethernet] igb: remove references to long gone command line parameters (Stefan Assmann) [1091121]
-- [ethernet] igb: Don't receive packets when the napi budget == 0 (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix code comment (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix for devices using ethtool for EEE settings (Stefan Assmann) [1091121]
-- [ethernet] igb: fix calls to skb_set_hash (Stefan Assmann) [1091121]
-- [ethernet] igb: fix warning if !CONFIG_IGB_HWMON (Stefan Assmann) [1091121]
-- [ethernet] igb: fix array size calculation (Stefan Assmann) [1091121]
-- [ethernet] igb: Update license text to remove FSF address and update copyright (Stefan Assmann) [1091121]
-- [ethernet] igb: make local functions static and remove dead code (Stefan Assmann) [1091121]
-- [ethernet] igb: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1091121]
-- [ethernet] igb: Change to use statically allocated array for MSIx entries (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix queue allocation method to accommodate changing during runtime (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix for issue where values could be too high for udelay function (Stefan Assmann) [1091121]
-- [ethernet] igb: Start temperature sensor attribute index with 1 (Stefan Assmann) [1091121]
-- [ethernet] igb: Add new feature Media Auto Sense for 82580 devices only (Stefan Assmann) [1091121]
-- [ethernet] igb: Support ports mapped in 64-bit PCI space (Stefan Assmann) [1091121]
-- [ethernet] igb: Add media switching feature for i354 PHY's (Stefan Assmann) [1091121]
-- [ethernet] igb: Fixed Wake On LAN support (Stefan Assmann) [1091121]
-- [ethernet] igb: Update link modes display in ethtool (Stefan Assmann) [1091121]
-- [ethernet] igb: Explicitly initialize u64_stats_sync structures for lockdep (Stefan Assmann) [1091121]
-- [ethernet] igb: Don't let ethtool try to write to iNVM in i210/i211 (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix master/slave mode for all m88 i354 PHY's (Stefan Assmann) [1091121]
-- [ethernet] igb: Miscellaneous conversions to ETH_ALEN (Stefan Assmann) [1091121]
-- [ethernet] igb: Avoid uninitialized advertised variable in eee_set_cur (Stefan Assmann) [1091121]
-- [ethernet] igb: Add ethtool support to configure number of channels (Stefan Assmann) [1091121]
-- [ethernet] igb: Add ethtool offline tests for i354 (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix ethtool loopback test for 82580 copper (Stefan Assmann) [1091121]
-- [ethernet] igb: Remove extern from function prototypes (Stefan Assmann) [1091121]
-- [ethernet] igb: fix 32-bit DMA mask handling (Stefan Assmann) [1091121]
-- [ethernet] igb: Read flow control for i350 from correct EEPROM section (Stefan Assmann) [1091121]
-- [ethernet] igb: Add additional get_phy_id call for i354 devices (Stefan Assmann) [1091121]
-- [kernel] workqueue: zero cpumask of wq_numa_possible_cpumask on init (Motohiro Kosaki) [1117184]
-- [firmware] memmap: don't allocate firmware_map_entry of same memory range (Motohiro Kosaki) [1117186]
-- [firmware] memmap: pass the correct argument to firmware_map_find_entry_bootmem() (Motohiro Kosaki) [1117186]
-- [cpufreq] acpi-cpufreq: skip loading acpi_cpufreq after intel_pstate (Motohiro Kosaki) [1123250]
-- [x86] mem-hotplug: modify PGD entry when removing memory (Motohiro Kosaki) [1116286]
-- [x86] mem-hotplug: pass sync_global_pgds() a correct argument in remove_pagetable() (Motohiro Kosaki) [1116286]
-- [virt] kvm: increase x86 VCPU limit to 240 (Radim Krcmar) [1061403]
-- [kernel] sched/fair: Rework sched_fair time accounting (Rik van Riel) [1123731]
-- [kernel] math64: Add mul_u64_u32_shr() (Rik van Riel) [1123731]
-
-* Wed Aug 27 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-147.el7]
-- [s390] fix restore of invalid floating-point-control (Hendrik Brueckner) [1121965]
-- [s390] crypto: fix aes_s390 crypto module unload problem (Hendrik Brueckner) [1103114]
-- [x86] avx-512: Enable AVX-512 States Context Switch (Rui Wang) [1085563]
-- [x86] avx-512: AVX-512 Feature Detection (Rui Wang) [1085563]
-- [ethernet] netxen: Remove DEFINE_PCI_DEVICE_TABLE macro use (Veaceslav Falico) [1089356]
-- [ethernet] netxen: slight optimization of addr compare (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Update version to 4.0.82 (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Miscellaneous conversions to ETH_ALEN (Veaceslav Falico) [1089356]
-- [ethernet] netxen: get rid of SET_ETHTOOL_OPS (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Correct off-by-one errors in bounds checks (Veaceslav Falico) [1089356]
-- [ethernet] netxen: remove unnecessary pci_set_drvdata() (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Print ULA information (Veaceslav Falico) [1089356]
-- [ethernet] netxen: lower NAPI weight (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Remove extern from function prototypes (Veaceslav Falico) [1089356]
-- [x86] Mark Intel Broadwell processor as supported (Steve Best) [1089025]
-- [mm] Fix NULL pointer dereference in madvise(MADV_WILLNEED) support (Jan Stancek) [1072385]
-- [hid] logitech-dj: Fix USB 3.0 issue (Benjamin Tissoires) [1110523]
-- [lib] percpu_counter: fix bad percpu counter state during suspend (Eric Sandeen) [1129839]
-- [kernel] user_namespace: fix incorrect memory barriers (Mikulas Patocka) [1128950]
-- [kernel] capabilities: remove undefined caps from all processes (Paul Moore) [1123063]
-- [tty] hvc: don't free hvc_console_setup after init (Luiz Capitulino) [976490]
-- [mfd] lpc_ich: Add Device IDs for Intel Wildcat Point-LP PCH (Steve Best) [1086359]
-- [i2c] i801: Add Device IDs for Intel Wildcat Point-LP PCH (Steve Best) [1086359]
-- [x86] perf: Add model number for Avoton Silvermont (Steve Best) [1086821]
-- [x86] perf: Add Silvermont (22nm Atom) support (Steve Best) [1086821]
-- [x86] perf: use INTEL_UEVENT_EXTRA_REG to define MSR_OFFCORE_RSP_X (Steve Best) [1086821]
-- [virt] hyperv/storvsc: Correctly handle TEST_UNIT_READY failure (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Set srb_flags in all cases (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Implement a eh_timed_out handler (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Fix a bug in handling VMBUS protocol version (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Filter commands based on the storage protocol version (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Set cmd_per_lun to reflect value supported by the Host (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Change the limits to reflect the values on the host (Fam Zheng) [1122317]
-- [powerpc] perf: Add BHRB constraint and IFM MMCRA handling for EBB (Gustavo Duarte) [1121408]
-- [powerpc] perf: Reject EBB events which specify a sample_type (Gustavo Duarte) [1121408]
-- [powerpc] perf: Enable BHRB access for EBB events (Gustavo Duarte) [1121408]
-- [powerpc] perf: Avoid mutating event in power8_get_constraint() (Gustavo Duarte) [1121408]
-- [powerpc] perf: Clean up the EBB hash defines a little (Gustavo Duarte) [1121408]
-- [powerpc] mm: Check paca psize is up to date for huge mappings (Gustavo Duarte) [1107337]
-- [powerpc] perf: Add lost exception workaround (Gustavo Duarte) [1121407]
-- [powerpc] Add a cpu feature CPU_FTR_PMAO_BUG (Gustavo Duarte) [1121407]
-
-* Tue Aug 26 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-146.el7]
-- [edac] sb_edac: add support for Haswell based systems (Seth Jennings) [1127019]
-- [edac] add DDR4 and RDDR4 (Seth Jennings) [1127019]
-- [edac] sb_edac: update Kconfig description (Seth Jennings) [1127019]
-- [edac] sb_edac: Fix mix tab/spaces alignments (Seth Jennings) [1127019]
-- [edac] sb_edac: remove bogus assumption on mc ordering (Seth Jennings) [1127019]
-- [edac] sb_edac: make minimal use of channel_mask (Seth Jennings) [1127019]
-- [edac] sb_edac: fix socket detection on Ivy Bridge controllers (Seth Jennings) [1127019]
-- [edac] sb_edac: search devices using product id (Seth Jennings) [1127019]
-- [edac] sb_edac: Degrade log level for device registration (Seth Jennings) [1127019]
-- [edac] sb_edac: make RIR limit retrieval per model (Seth Jennings) [1127019]
-- [edac] sb_edac: make node id retrieval per model (Seth Jennings) [1127019]
-- [edac] sb_edac: make memory type detection per memory controller (Seth Jennings) [1127019]
-- [hwrng] virtio-rng: add derating factor for use by hwrng core (Amit Shah) [1129195]
-- [hwrng] Pass entropy to add_hwgenerator_randomness() in bits, not bytes (Amit Shah) [1129195]
-- [hwrng] hw_random: fix sparse warning (NULL vs 0 for pointer) (Amit Shah) [1129195]
-- [hwrng] add per-device entropy derating (Amit Shah) [1129195]
-- [hwrng] create filler thread (Amit Shah) [1129195]
-- [hwrng] random: add_hwgenerator_randomness() for feeding entropy from devices (Amit Shah) [1129195]
-- [char] Revert: hwrng: virtio - ensure reads happen after successful probe (Amit Shah) [1129195]
-- [char] hwrng: virtio - delay hwrng_register() till driver is ready (Amit Shah) [1119299]
-- [char] hwrng: virtio - re-arrange struct elements for better packing (Amit Shah) [1119299]
-- [char] hwrng: virtio - remove unused struct element (Amit Shah) [1119299]
-- [char] hwrng: virtio - ensure reads happen after successful probe (Amit Shah) [1119299]
-- [char] hwrng: fetch randomness only after device init (Amit Shah) [1119299]
-- [char] hwrng: add randomness to system from rng sources (Amit Shah) [1119299]
-- [char] hwrng: cleanup in hwrng_register() (Amit Shah) [1119299]
-- [virt] virtio/pm: use CONFIG_PM_SLEEP instead of CONFIG_PM (Amit Shah) [1119299]
-- [virt] virtio-rng: fixes for device registration/unregistration (Amos Kong) [915335]
-- [virt] virtio-rng: fix boot with virtio-rng device (Amos Kong) [915335]
-- [virt] virtio-rng: support multiple virtio-rng devices (Amos Kong) [915335]
-- [virt] virtio-rng: don't crash if virtqueue is broken (Amos Kong) [915335]
-- [pci] Fix unaligned access in AF transaction pending test (Myron Stowe) [1110896]
-- [pci] Wrong register used to check pending traffic (Myron Stowe) [1110896]
-- [pci] shpchp: Check bridge's secondary (not primary) bus speed (Myron Stowe) [1110896]
-- [pci] Update maintainer email address (Myron Stowe) [1110896]
-- [powerpc] pci: Fix NULL dereference in sys_pciconfig_iobase() list traversal (Myron Stowe) [1110896]
-- [pci] Log IDE resource quirk in dmesg (Myron Stowe) [1110896]
-- [pci] Change pci_bus_alloc_resource() type_mask to unsigned long (Myron Stowe) [1110896]
-- [pci] Check all IORESOURCE_TYPE_BITS in pci_bus_alloc_from_region() (Myron Stowe) [1110896]
-- [kernel] resources: Set type in __request_region() (Myron Stowe) [1110896]
-- [s390] pci: Use generic pci_enable_resources() (Myron Stowe) [1110896]
-- [pci] Add "weak" generic pcibios_enable_device() implementation (Myron Stowe) [1110896]
-- [pci] Don't enable decoding if BAR hasn't been assigned an address (Myron Stowe) [1110896]
-- [pci] Mark 64-bit resource as IORESOURCE_UNSET if we only support 32-bit (Myron Stowe) [1110896]
-- [pci] Don't try to claim IORESOURCE_UNSET resources (Myron Stowe) [1110896]
-- [pci] Check IORESOURCE_UNSET before updating BAR (Myron Stowe) [1110896]
-- [pci] Don't clear IORESOURCE_UNSET when updating BAR (Myron Stowe) [1110896]
-- [pci] Mark resources as IORESOURCE_UNSET if we can't assign them (Myron Stowe) [1110896]
-- [pci] Remove pci_find_parent_resource() use for allocation (Myron Stowe) [1110896]
-- [lib] vsprintf: Add support for IORESOURCE_UNSET in pR (Myron Stowe) [1110896]
-- [kernel] resource: Add resource_contains() (Myron Stowe) [1110896]
-- [message] i2o: Use pci_bus_alloc_resource(), not allocate_resource() directly (Myron Stowe) [1110896]
-- [message] i2o: Refactor i2o_iop_systab_set() PCI space allocation (Myron Stowe) [1110896]
-- [message] i2o: Fix I/O space alignment requirement (Myron Stowe) [1110896]
-- [message] i2o: Fix I/O space allocation copy/paste error (Myron Stowe) [1110896]
-- [pci] pciehp: Cleanup whitespace (Myron Stowe) [1110896]
-- [pci] pciehp: Remove a non-existent card, regardless of "surprise" capability (Myron Stowe) [1110896]
-- [pci] Remove unused SR-IOV VF Migration support (Myron Stowe) [1110896]
-- [iommu] amd: Add include of <linux/irqreturn.h> (Myron Stowe) [1110896]
-- [misc] mei: Add include of <linux/irqreturn.h> (Myron Stowe) [1110896]
-- [vfio] pci: Use pci_enable_msi_range() and pci_enable_msix_range() (Myron Stowe) [1110896]
-- [ata] ahci: Use pci_enable_msi_range() instead of pci_enable_msi_block() (Myron Stowe) [1110896]
-- [x86] pci: Set IORESOURCE_ROM_SHADOW only for the default VGA device (Myron Stowe) [1110896]
-- [pci] Remove pci_bus_b() and use list_for_each_entry() directly (Myron Stowe) [1110896]
-- [pcmcia] Use list_for_each_entry() for bus traversal (Myron Stowe) [1110896]
-- [powerpc] pci: Use list_for_each_entry() for bus traversal (Myron Stowe) [1110896]
-- [drm] Use list_for_each_entry() for bus traversal (Myron Stowe) [1110896]
-- [pci] hotplug/apci: Use list_for_each_entry() for bus traversal (Myron Stowe) [1110896]
-- [pci] pciehp: Don't turn slot off when hot-added device already exists (Myron Stowe) [1110896]
-- [pci] Cleanup per-arch list of object files (Myron Stowe) [1110896]
-- [pci] hotplug/cpqphp: Fix hex vs decimal typo in cpqhpc_probe() (Myron Stowe) [1110896]
-- [x86] pci: Fix function definition whitespace (Myron Stowe) [1110896]
-- [x86] pci: Reword comments (Myron Stowe) [1110896]
-- [x86] pci: Remove unnecessary local variable initialization (Myron Stowe) [1110896]
-- [pci] Don't scan random busses in pci_scan_bridge() (Myron Stowe) [1110896]
-- [pci] Check for child busses which use more bus numbers than allocated (Myron Stowe) [1110896]
-- [pci] Remove pci_fixup_parent_subordinate_busnr() (Myron Stowe) [1110896]
-- [pci] Make sure bus number resources stay within their parents bounds (Myron Stowe) [1110896]
-- [pci] Use request_resource_conflict() instead of insert_ for bus numbers (Myron Stowe) [1110896]
-- [pci] Assign CardBus bus number only during the second pass (Myron Stowe) [1110896]
-- [pci] Clarify the "scan anyway" comment in pci_scan_bridge() (Myron Stowe) [1110896]
-- [pci] Increment max correctly in pci_scan_bridge() (Myron Stowe) [1110896]
-- [pci] Remove unnecessary list_empty(&pci_pme_list) check (Myron Stowe) [1110896]
-- [acpi] numa: Use __weak, not the gcc-specific version (Myron Stowe) [1110896]
-- [acpi] numa: Make __acpi_map_pxm_to_node(), acpi_get_pxm() static (Myron Stowe) [1110896]
-- [acpi] numa: Simplify acpi_get_node() style (Myron Stowe) [1110896]
-- [acpi] numa: Fix acpi_get_node() prototype (Myron Stowe) [1110896]
-- [x86] pci: Remove acpi_get_pxm() usage (Myron Stowe) [1110896]
-- [x86] pci: Use NUMA_NO_NODE, not -1, for unknown node (Myron Stowe) [1110896]
-- [x86] pci: Remove unnecessary list_empty(&pci_root_infos) check (Myron Stowe) [1110896]
-- [x86] pci: Remove mp_bus_to_node[], set_mp_bus_to_node(), get_mp_bus_to_node() (Myron Stowe) [1110896]
-- [x86] pci: Use x86_pci_root_bus_node() instead of get_mp_bus_to_node() (Myron Stowe) [1110896]
-- [x86] pci: Add x86_pci_root_bus_node() to look up NUMA node from PCI bus (Myron Stowe) [1110896]
-- [x86] pci: Drop return value of pcibios_scan_root() (Myron Stowe) [1110896]
-- [x86] pci: Merge pci_scan_bus_on_node() into pcibios_scan_root() (Myron Stowe) [1110896]
-- [x86] pci: Use pcibios_scan_root() instead of pci_scan_bus_on_node() (Myron Stowe) [1110896]
-- [x86] pci: Use pcibios_scan_root() instead of pci_scan_bus_with_sysdata() (Myron Stowe) [1110896]
-- [x86] pci: Drop pcibios_scan_root() check for bus already scanned (Myron Stowe) [1110896]
-- [ata] ahci: convert ahci_init_interrupts to a static routine (Myron Stowe) [1110896]
-- [acpi] mm: use NUMA_NO_NODE (Myron Stowe) [1110896]
-
-* Tue Aug 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-145.el7]
-- [fs] btrfs: test for valid bdev before kobj removal in btrfs_rm_device (Eric Sandeen) [1071179]
-- [fs] btrfs: fix abnormal long waiting in fsync (Eric Sandeen) [1071179]
-- [fs] btrfs: fix crash when starting transaction (Eric Sandeen) [1071179]
-- [fs] btrfs: fix btrfs_print_leaf for skinny metadata (Eric Sandeen) [1071179]
-- [fs] btrfs: fix race of using total_bytes_pinned (Eric Sandeen) [1071179]
-- [fs] btrfs: use E2BIG instead of EIO if compression does not help (Eric Sandeen) [1071179]
-- [fs] btrfs: remove stale comment from btrfs_flush_all_pending_stuffs (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use-after-free when cloning a trailing file hole (Eric Sandeen) [1071179]
-- [fs] btrfs: fix null pointer dereference in btrfs_show_devname when name is null (Eric Sandeen) [1071179]
-- [fs] btrfs: fix null pointer dereference in clone_fs_devices when name is null (Eric Sandeen) [1071179]
-- [fs] btrfs: fix nossd and ssd_spread mount option regression (Eric Sandeen) [1071179]
-- [fs] btrfs: fix race between balance recovery and root deletion (Eric Sandeen) [1071179]
-- [fs] btrfs: only unlock block in verify_parent_transid if we locked it (Eric Sandeen) [1071179]
-- [fs] btrfs: assert send doesn't attempt to start transactions (Eric Sandeen) [1071179]
-- [fs] btrfs: compression - reuse recently used workspace (Eric Sandeen) [1071179]
-- [fs] btrfs: fix crash when mounting raid5 btrfs with missing disks (Eric Sandeen) [1071179]
-- [fs] btrfs: create sprout should rename fsid on the sysfs as well (Eric Sandeen) [1071179]
-- [fs] btrfs: dev replace should replace the sysfs entry (Eric Sandeen) [1071179]
-- [fs] btrfs: dev add should add its sysfs entry (Eric Sandeen) [1071179]
-- [fs] btrfs: dev delete should remove sysfs entry (Eric Sandeen) [1071179]
-- [fs] btrfs: rename add_device_membership to btrfs_kobj_add_device (Eric Sandeen) [1071179]
-- [fs] btrfs: fix deadlock when mounting a degraded fs (Eric Sandeen) [1071179]
-- [fs] btrfs: fix NULL pointer crash when running balance and scrub concurrently (Eric Sandeen) [1071179]
-- [fs] btrfs: Skip scrubbing removed chunks to avoid -ENOENT (Eric Sandeen) [1071179]
-- [fs] btrfs: fix broken free space cache after the system crashed (Eric Sandeen) [1071179]
-- [fs] btrfs: make free space cache write out functions more readable (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused wait queue in struct extent_buffer (Eric Sandeen) [1071179]
-- [fs] btrfs: fix deadlocks with trylock on tree nodes (Eric Sandeen) [1071179]
-- [fs] btrfs: fix error handling in create_pending_snapshot (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use of uninit "ret" in end_extent_writepage() (Eric Sandeen) [1071179]
-- [fs] btrfs: free ulist in qgroup_shared_accounting() error path (Eric Sandeen) [1071179]
-- [fs] btrfs: fix qgroups sanity test crash or hang (Eric Sandeen) [1071179]
-- [fs] btrfs: prevent RCU warning when dereferencing radix tree slot (Eric Sandeen) [1071179]
-- [fs] btrfs: fix unfinished readahead thread for raid5/6 degraded mounting (Eric Sandeen) [1071179]
-- [fs] btrfs: new ioctl TREE_SEARCH_V2 (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search, search_ioctl: direct copy to userspace (Eric Sandeen) [1071179]
-- [fs] btrfs: new function read_extent_buffer_to_user (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search, copy_to_sk: return needed size on EOVERFLOW (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search, copy_to_sk: return EOVERFLOW for too small buffer (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search, search_ioctl: accept varying buffer (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search: eliminate redundant nr_items check (Eric Sandeen) [1071179]
-- [fs] btrfs: fix scrub_print_warning to handle skinny metadata extents (Eric Sandeen) [1071179]
-- [fs] btrfs: make fsync work after cloning into a file (Eric Sandeen) [1071179]
-- [fs] btrfs: use right type to get real comparison (Eric Sandeen) [1071179]
-- [fs] btrfs: don't check nodes for extent items (Eric Sandeen) [1071179]
-- [fs] btrfs: don't release invalid page in btrfs_page_exists_in_range() (Eric Sandeen) [1071179]
-- [fs] btrfs: make sure we retry if page is a retriable exception (Eric Sandeen) [1071179]
-- [fs] btrfs: make sure we retry if we couldn't get the page (Eric Sandeen) [1071179]
-- [fs] btrfs: replace EINVAL with EOPNOTSUPP for dev_replace raid56 (Eric Sandeen) [1071179]
-- [fs] btrfs: ioctl - fix typo s/substract/subtract/ (Eric Sandeen) [1071179]
-- [fs] btrfs: fix leaf corruption after __btrfs_drop_extents (Eric Sandeen) [1071179]
-- [fs] btrfs: ensure btrfs_prev_leaf doesn't miss 1 item (Eric Sandeen) [1071179]
-- [fs] btrfs: fix clone to deal with holes when NO_HOLES feature is enabled (Eric Sandeen) [1071179]
-- [fs] btrfs: free delayed node outside of root->inode_lock (Eric Sandeen) [1071179]
-- [fs] btrfs: replace EINVAL with ERANGE for resize when ULLONG_MAX (Eric Sandeen) [1071179]
-- [fs] btrfs: fix transaction leak during fsync call (Eric Sandeen) [1071179]
-- [fs] btrfs: Avoid truncating page or punching hole in a already existed hole (Eric Sandeen) [1071179]
-- [fs] btrfs: update commit root on snapshot creation after orphan cleanup (Eric Sandeen) [1071179]
-- [fs] btrfs: ioctl, don't re-lock extent range when not necessary (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid visiting all extent items when cloning a range (Eric Sandeen) [1071179]
-- [fs] btrfs: set dead flag on the right root when destroying snapshot (Eric Sandeen) [1071179]
-- [fs] btrfs: ensure readers see new data after a clone operation (Eric Sandeen) [1071179]
-- [fs] btrfs: volumes - Fix for possible null pointer dereference (Eric Sandeen) [1071179]
-- [fs] btrfs: allocate raid type kobjects dynamically (Eric Sandeen) [1071179]
-- [fs] btrfs: send, use the right limits for xattr names and values (Eric Sandeen) [1071179]
-- [fs] btrfs: send, don't error in the presence of subvols/snapshots (Eric Sandeen) [1071179]
-- [fs] btrfs: async delayed refs (Eric Sandeen) [1071179]
-- [fs] btrfs: split up __extent_writepage to lower stack usage (Eric Sandeen) [1071179]
-- [fs] btrfs: Drop EXTENT_UPTODATE check in hole punching and direct locking (Eric Sandeen) [1071179]
-- [fs] btrfs: cut down stack usage in btree_write_cache_pages (Eric Sandeen) [1071179]
-- [fs] btrfs: break up __btrfs_write_out_cache to cut down stack usage (Eric Sandeen) [1071179]
-- [fs] btrfs: free tmp ulist for qgroup rescan (Eric Sandeen) [1071179]
-- [fs] btrfs: usage error should not be logged into system log (Eric Sandeen) [1071179]
-- [fs] btrfs: remove newline from inode cache kthread name (Eric Sandeen) [1071179]
-- [fs] btrfs: remove stale newlines from log messages (Eric Sandeen) [1071179]
-- [fs] btrfs: fix double free in find_lock_delalloc_range (Eric Sandeen) [1071179]
-- [fs] btrfs: replace simple_strtoull() with kstrtoull() (Eric Sandeen) [1071179]
-- [fs] btrfs: set right total device count for seeding support (Eric Sandeen) [1071179]
-- [fs] btrfs: remove OPT_acl parse when acl disabled (Eric Sandeen) [1071179]
-- [fs] btrfs: add sanity tests for new qgroup accounting code (Eric Sandeen) [1071179]
-- [fs] btrfs: rework qgroup accounting (Eric Sandeen) [1071179]
-- [fs] btrfs: mark mapping with error flag to report errors to userspace (Eric Sandeen) [1071179]
-- [fs] btrfs: fix NULL pointer crash of deleting a seed device (Eric Sandeen) [1071179]
-- [fs] btrfs: fix joining same transaction handle more than twice (Eric Sandeen) [1071179]
-- [fs] btrfs: use helpers for last_trans_log_full_commit instead of opencode (Eric Sandeen) [1071179]
-- [fs] btrfs: check if items are ordered when a leaf is marked dirty (Eric Sandeen) [1071179]
-- [fs] btrfs: don't access non-existent key when csum tree is empty (Eric Sandeen) [1071179]
-- [fs] btrfs: make sure there are not any read requests before stopping workers (Eric Sandeen) [1071179]
-- [fs] btrfs: fix possible memory leak in btrfs_create_tree() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove useless ACL check (Eric Sandeen) [1071179]
-- [fs] btrfs: btrfs_rm_device() should zero mirror SB as well (Eric Sandeen) [1071179]
-- [fs] btrfs: use bitfield instead of integer data type for the some variants in btrfs_root (Eric Sandeen) [1071179]
-- [fs] btrfs: send, fix more issues related to directory renames (Eric Sandeen) [1071179]
-- [fs] btrfs: send, remove dead code from __get_cur_name_and_parent (Eric Sandeen) [1071179]
-- [fs] btrfs: send, account for orphan directories when building path strings (Eric Sandeen) [1071179]
-- [fs] btrfs: send, avoid unnecessary inode item lookup in the btree (Eric Sandeen) [1071179]
-- [fs] btrfs: add dev maxs limit for __btrfs_alloc_chunk in kernel space (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong max system array size check in kernel space (Eric Sandeen) [1071179]
-- [fs] btrfs: Add check to avoid cleanup roots already in fs_info->dead_roots (Eric Sandeen) [1071179]
-- [fs] btrfs: reclaim the reserved metadata space at background (Eric Sandeen) [1071179]
-- [fs] btrfs: output warning instead of error when loading free space cache failed (Eric Sandeen) [1071179]
-- [fs] btrfs: Add ctime/mtime update for btrfs device add/remove (Eric Sandeen) [1071179]
-- [fs] btrfs: assert that send is not in progres before root deletion (Eric Sandeen) [1071179]
-- [fs] btrfs: protect snapshots from deleting during send (Eric Sandeen) [1071179]
-- [fs] btrfs: remove redundant null check in btrfs_dentry_release() (Eric Sandeen) [1071179]
-- [fs] btrfs: make FS_INFO ioctl available to anyone (Eric Sandeen) [1071179]
-- [fs] btrfs: make DEV_INFO ioctl available to anyone (Eric Sandeen) [1071179]
-- [fs] btrfs: export more from FS_INFO to sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: retrieve more info from FS_INFO ioctl (Eric Sandeen) [1071179]
-- [fs] btrfs: balance filter: add limit of processed chunks (Eric Sandeen) [1071179]
-- [fs] btrfs: fix leaf corruption caused by ENOSPC while hole punching (Eric Sandeen) [1071179]
-- [fs] btrfs: do not increment on bio_index one by one (Eric Sandeen) [1071179]
-- [fs] btrfs: read inode size after acquiring the mutex when punching a hole (Eric Sandeen) [1071179]
-- [fs] btrfs: Remove unnecessary check for NULL (Eric Sandeen) [1071179]
-- [fs] btrfs: fix inline compressed read err corruption (Eric Sandeen) [1071179]
-- [fs] btrfs: return ptr error from compression workspace (Eric Sandeen) [1071179]
-- [fs] btrfs: return errno instead of -1 from compression (Eric Sandeen) [1071179]
-- [fs] btrfs: check_int: propagate out-of-memory error upwards (Eric Sandeen) [1071179]
-- [fs] btrfs: fix hang on error (such as ENOSPC) when writing extent pages (Eric Sandeen) [1071179]
-- [fs] btrfs: send, fix corrupted path strings for long paths (Eric Sandeen) [1071179]
-- [fs] btrfs: send, fix incorrect ref access when using extrefs (Eric Sandeen) [1071179]
-- [fs] btrfs: fix EIO on reading file after ioctl clone works on it (Eric Sandeen) [1071179]
-- [fs] btrfs: limit the path size in send to PATH_MAX (Eric Sandeen) [1071179]
-- [fs] btrfs: correctly set profile flags on seqlock retry (Eric Sandeen) [1071179]
-- [fs] btrfs: use correct key when repeating search for extent item (Eric Sandeen) [1071179]
-- [fs] btrfs: fix inode caching vs tree log (Eric Sandeen) [1071179]
-- [fs] btrfs: fix possible memory leaks in open_ctree() (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid triggering bug_on() when we fail to start inode caching task (Eric Sandeen) [1071179]
-- [fs] btrfs: move btrfs_{set, clear}_and_info() to ctree.h (Eric Sandeen) [1071179]
-- [fs] btrfs: replace error code from btrfs_drop_extents (Eric Sandeen) [1071179]
-- [fs] btrfs: Change the hole range to a more accurate value (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use-after-free in mount_subvol() (Eric Sandeen) [1071179]
-- [fs] btrfs: fix compile warnings on on avr32 platform (Eric Sandeen) [1071179]
-- [fs] btrfs: allow mounting btrfs subvolumes with different ro/rw options (Eric Sandeen) [1071179]
-- [fs] btrfs: export global block reserve size as space_info (Eric Sandeen) [1071179]
-- [fs] btrfs: fix crash in remount(thread_pool=) case (Eric Sandeen) [1071179]
-- [fs] btrfs: abort the transaction when we don't find our extent ref (Eric Sandeen) [1071179]
-- [fs] btrfs: fix EINVAL checks in btrfs_clone (Eric Sandeen) [1071179]
-- [fs] btrfs: fix unlock in __start_delalloc_inodes() (Eric Sandeen) [1071179]
-- [fs] btrfs: scrub raid56 stripes in the right way (Eric Sandeen) [1071179]
-- [fs] btrfs: don't compress for a small write (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient io tree navigation on wait_extent_bit (Eric Sandeen) [1071179]
-- [fs] btrfs: send, build path string only once in send_hole (Eric Sandeen) [1071179]
-- [fs] btrfs: filter invalid arg for btrfs resize (Eric Sandeen) [1071179]
-- [fs] btrfs: send, fix data corruption due to incorrect hole detection (Eric Sandeen) [1071179]
-- [fs] btrfs: kmalloc() doesn't return an ERR_PTR (Eric Sandeen) [1071179]
-- [fs] btrfs: fix snapshot vs nocow writting (Eric Sandeen) [1071179]
-- [fs] btrfs: Change the expanding write sequence to fix snapshot related bug (Eric Sandeen) [1071179]
-- [fs] btrfs: make device scan less noisy (Eric Sandeen) [1071179]
-- [fs] btrfs: fix lockdep warning with reclaim lock inversion (Eric Sandeen) [1071179]
-- [fs] btrfs: hold the commit_root_sem when getting the commit root during send (Eric Sandeen) [1071179]
-- [fs] btrfs: remove transaction from send (Eric Sandeen) [1071179]
-- [fs] btrfs: don't clear uptodate if the eb is under IO (Eric Sandeen) [1071179]
-- [fs] btrfs: check for an extent_op on the locked ref (Eric Sandeen) [1071179]
-- [fs] btrfs: do not reset last_snapshot after relocation (Eric Sandeen) [1071179]
-- [fs] btrfs: fix a crash of clone with inline extents's split (Eric Sandeen) [1071179]
-- [fs] btrfs: fix uninit variable warning (Eric Sandeen) [1071179]
-- [fs] btrfs: take into account total references when doing backref lookup (Eric Sandeen) [1071179]
-- [fs] btrfs: part 2, fix incremental send's decision to delay a dir move/rename (Eric Sandeen) [1071179]
-- [fs] btrfs: fix incremental send's decision to delay a dir move/rename (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary inode generation lookup in send (Eric Sandeen) [1071179]
-- [fs] btrfs: fix race when updating existing ref head (Eric Sandeen) [1071179]
-- [fs] btrfs: Add trace for btrfs_workqueue alloc/destroy (Eric Sandeen) [1071179]
-- [fs] btrfs: less fs tree lock contention when using autodefrag (Eric Sandeen) [1071179]
-- [fs] btrfs: return EPERM when deleting a default subvolume (Eric Sandeen) [1071179]
-- [fs] btrfs: add missing kfree in btrfs_destroy_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: cache extent states in defrag code path (Eric Sandeen) [1071179]
-- [fs] btrfs: fix deadlock with nested trans handles (Eric Sandeen) [1071179]
-- [fs] btrfs: fix possible empty list access when flushing the delalloc inodes (Eric Sandeen) [1071179]
-- [fs] btrfs: split the global ordered extents mutex (Eric Sandeen) [1071179]
-- [fs] btrfs: don't flush all delalloc inodes when we doesn't get s_umount lock (Eric Sandeen) [1071179]
-- [fs] btrfs: reclaim delalloc metadata more aggressively (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary lock in may_commit_transaction() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove the unnecessary flush when preparing the pages (Eric Sandeen) [1071179]
-- [fs] btrfs: just do dirty page flush for the inode with compression before direct IO (Eric Sandeen) [1071179]
-- [fs] btrfs: wake up the tasks that wait for the io earlier (Eric Sandeen) [1071179]
-- [fs] btrfs: fix early enospc due to the race of the two ordered extent wait (Eric Sandeen) [1071179]
-- [fs] btrfs: introduce btrfs_{start, end}_nocow_write() for each subvolume (Eric Sandeen) [1071179]
-- [fs] btrfs: Add ftrace for btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the btrfs_workqueue related function type (Eric Sandeen) [1071179]
-- [fs] btrfs: add readahead for send_write (Eric Sandeen) [1071179]
-- [fs] btrfs: share the same code for __record_{new, deleted}_ref (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid unnecessary utimes update in incremental send (Eric Sandeen) [1071179]
-- [fs] btrfs: make defrag not fragment files when using prealloc extents (Eric Sandeen) [1071179]
-- [fs] btrfs: correctly flush data on defrag when compression is enabled (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the "_struct" suffix in btrfs_workequeue (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the old btrfs_worker (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->scrub_* workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->qgroup_rescan_worker workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->delayed_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->fixup_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->readahead_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->cache_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->rmw_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->endio_* workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->flush_workers with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->submit_workers with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->delalloc_workers with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->workers with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Add threshold workqueue based on kernel workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Add high priority workqueue support for btrfs_workqueue_struct (Eric Sandeen) [1071179]
-- [fs] btrfs: Added btrfs_workqueue_struct implemented ordered execution based on kernel workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the unused struct async_sched (Eric Sandeen) [1071179]
-- [fs] btrfs: skip search tree for REG files (Eric Sandeen) [1071179]
-- [fs] btrfs: fix preallocate vs double nocow write (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong lock range and write size in check_can_nocow() (Eric Sandeen) [1071179]
-- [fs] btrfs: send: simplify allocation code in fs_path_ensure_buf (Eric Sandeen) [1071179]
-- [fs] btrfs: send: fix old buffer length in fs_path_ensure_buf (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient btrfs_drop_extent_cache (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient split extent state insertion (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unneeded field / smaller extent_map structure (Eric Sandeen) [1071179]
-- [fs] btrfs: skip locking when searching commit root (Eric Sandeen) [1071179]
-- [fs] btrfs: wake up @scrub_pause_wait as much as we can (Eric Sandeen) [1071179]
-- [fs] btrfs: cancel scrub on transaction abortion (Eric Sandeen) [1071179]
-- [fs] btrfs: device_replace: fix deadlock for nocow case (Eric Sandeen) [1071179]
-- [fs] btrfs: fix a possible deadlock between scrub and transaction committing (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send issuing outdated paths for utimes, chown and chmod (Eric Sandeen) [1071179]
-- [fs] btrfs: correctly determine if blocks are shared in btrfs_compare_trees (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send attempting to rmdir non-empty directories (Eric Sandeen) [1071179]
-- [fs] btrfs: send, don't send rmdir for same target multiple times (Eric Sandeen) [1071179]
-- [fs] btrfs: incremental send, fix invalid path after dir rename (Eric Sandeen) [1071179]
-- [fs] btrfs: don't insert useless holes when punching beyond the inode's size (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup delayed-ref.c:find_ref_head() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary ref heads rb tree search (Eric Sandeen) [1071179]
-- [fs] btrfs: wake up transaction thread upon remount (Eric Sandeen) [1071179]
-- [fs] btrfs: stop joining the log transaction if sync log fails (Eric Sandeen) [1071179]
-- [fs] btrfs: just wait or commit our own log sub-transaction (Eric Sandeen) [1071179]
-- [fs] btrfs: fix skipped error handle when log sync failed (Eric Sandeen) [1071179]
-- [fs] btrfs: use signed integer instead of unsigned long integer for log transid (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary memory barrier in btrfs_sync_log() (Eric Sandeen) [1071179]
-- [fs] btrfs: don't start the log transaction if the log tree init fails (Eric Sandeen) [1071179]
-- [fs] btrfs: fix the skipped transaction commit during the file sync (Eric Sandeen) [1071179]
-- [fs] btrfs: use ACCESS_ONCE to prevent the optimize accesses to ->last_trans_log_full_commit (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid warning bomb of btrfs_invalidate_inodes (Eric Sandeen) [1071179]
-- [fs] btrfs: fix possible deadlock in btrfs_cleanup_transaction (Eric Sandeen) [1071179]
-- [fs] btrfs: faster/more efficient insertion of file extent items (Eric Sandeen) [1071179]
-- [fs] btrfs: always choose work from prio_head first (Eric Sandeen) [1071179]
-- [fs] Revert: btrfs: remove transaction from btrfs send (Eric Sandeen) [1071179]
-- [fs] btrfs: skip readonly root for snapshot-aware defragment (Eric Sandeen) [1071179]
-- [fs] btrfs: switch to btrfs_previous_extent_item() (Eric Sandeen) [1071179]
-- [fs] btrfs: skip submitting barrier for missing device (Eric Sandeen) [1071179]
-- [fs] btrfs: unlock extent and pages on error in cow_file_range (Eric Sandeen) [1071179]
-- [fs] btrfs: balance delayed inode updates (Eric Sandeen) [1071179]
-- [fs] btrfs: add simple debugfs interface (Eric Sandeen) [1071179]
-- [fs] btrfs: send: lower memory requirements in common case (Eric Sandeen) [1071179]
-- [fs] btrfs: make some tree searches in send.c more efficient (Eric Sandeen) [1071179]
-- [fs] btrfs: use right extent item position in send when finding extent clones (Eric Sandeen) [1071179]
-- [fs] btrfs: send: remove BUG_ON from name_cache_delete (Eric Sandeen) [1071179]
-- [fs] btrfs: send: remove BUG from process_all_refs (Eric Sandeen) [1071179]
-- [fs] btrfs: send: squeeze bitfilelds in fs_path (Eric Sandeen) [1071179]
-- [fs] btrfs: send: remove virtual_mem member from fs_path (Eric Sandeen) [1071179]
-- [fs] btrfs: send: remove prepared member from fs_path (Eric Sandeen) [1071179]
-- [fs] btrfs: send: replace check with an assert in gen_unique_name (Eric Sandeen) [1071179]
-- [fs] btrfs: more send support for parent/child dir relationship inversion (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send dealing with file renames and directory moves (Eric Sandeen) [1071179]
-- [fs] btrfs: only add roots if necessary in find_parent_nodes() (Eric Sandeen) [1071179]
-- [fs] btrfs: Fix 32/64-bit problem with BTRFS_SET_RECEIVED_SUBVOL ioctl (Eric Sandeen) [1071179]
-- [fs] btrfs: add missing error check in incremental send (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use-after-free in the finishing procedure of the device replace (Eric Sandeen) [1071179]
-- [fs] btrfs: fix unprotected alloc list insertion during the finishing procedure of replace (Eric Sandeen) [1071179]
-- [fs] btrfs: Return EXDEV for cross file system snapshot (Eric Sandeen) [1071179]
-- [fs] btrfs: don't mix the ordered extents of all files together during logging the inodes (Eric Sandeen) [1071179]
-- [fs] btrfs: use right clone root offset for compressed extents (Eric Sandeen) [1071179]
-- [fs] btrfs: fix null pointer deference at btrfs_sysfs_add_one+0x105 (Eric Sandeen) [1071179]
-- [fs] btrfs: unset DCACHE_DISCONNECTED when mounting default subvol (Eric Sandeen) [1071179]
-- [fs] btrfs: fix max_inline mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: fix a lockdep warning when cleaning up aborted transaction (Eric Sandeen) [1071179]
-- [fs] Revert: btrfs: add ioctl to export size of global metadata reservation (Eric Sandeen) [1071179]
-- [fs] btrfs: fix data corruption when reading/updating compressed extents (Eric Sandeen) [1071179]
-- [fs] btrfs: don't loop forever if we can't run because of the tree mod log (Eric Sandeen) [1071179]
-- [fs] btrfs: reserve no transaction units in btrfs_ioctl_set_features (Eric Sandeen) [1071179]
-- [fs] btrfs: commit transaction after setting label and features (Eric Sandeen) [1071179]
-- [fs] btrfs: fix assert screwup for the pending move stuff (Eric Sandeen) [1071179]
-- [fs] btrfs: use late_initcall instead of module_init (Eric Sandeen) [1071179]
-- [fs] btrfs: use btrfs_crc32c everywhere instead of libcrc32c (Eric Sandeen) [1071179]
-- [fs] btrfs: disable snapshot aware defrag for now (Eric Sandeen) [1071179]
-- [fs] btrfs: fix spin_unlock in check_ref_cleanup (Eric Sandeen) [1071179]
-- [fs] btrfs: setup inode location during btrfs_init_inode_locked (Eric Sandeen) [1071179]
-- [fs] btrfs: don't use ram_bytes for uncompressed inline items (Eric Sandeen) [1071179]
-- [fs] btrfs: fix btrfs_search_slot_for_read backwards iteration (Eric Sandeen) [1071179]
-- [fs] btrfs: do not export ulist functions (Eric Sandeen) [1071179]
-- [fs] btrfs: rework ulist with list+rb_tree (Eric Sandeen) [1071179]
-- [fs] btrfs: fix memory leaks on walking backrefs failure (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send file hole detection leading to data corruption (Eric Sandeen) [1071179]
-- [fs] btrfs: add a reschedule point in btrfs_find_all_roots() (Eric Sandeen) [1071179]
-- [fs] btrfs: make send's file extent item search more efficient (Eric Sandeen) [1071179]
-- [fs] btrfs: fix to catch all errors when resolving indirect ref (Eric Sandeen) [1071179]
-- [fs] btrfs: fix protection between walking backrefs and root deletion (Eric Sandeen) [1071179]
-- [fs] btrfs: fix warning while merging two adjacent extents (Eric Sandeen) [1071179]
-- [fs] btrfs: fix infinite path build loops in incremental send (Eric Sandeen) [1071179]
-- [fs] btrfs: undo sysfs when open_ctree() fails (Eric Sandeen) [1071179]
-- [fs] btrfs: fix snprintf usage by send's gen_unique_name (Eric Sandeen) [1071179]
-- [fs] btrfs: fix defrag 32-bit integer overflow (Eric Sandeen) [1071179]
-- [fs] btrfs: sysfs: list the NO_HOLES feature (Eric Sandeen) [1071179]
-- [fs] btrfs: sysfs: don't show reserved incompat feature (Eric Sandeen) [1071179]
-- [fs] btrfs: call permission checks earlier in ioctls and return EPERM (Eric Sandeen) [1071179]
-- [fs] btrfs: restrict snapshotting to own subvolumes (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong block group in trace during the free space allocation (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup the code of used_block_group in find_free_extent() (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup the redundant code for the block group allocation and init (Eric Sandeen) [1071179]
-- [fs] btrfs: change the members' order of btrfs_space_info structure to reduce the cache miss (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong search path initialization before searching tree root (Eric Sandeen) [1071179]
-- [fs] btrfs: flush the dirty pages of the ordered extent aggressively during logging csum (Eric Sandeen) [1071179]
-- [fs] btrfs: fix transaction abortion when remounting btrfs from RW to RO (Eric Sandeen) [1071179]
-- [fs] btrfs: faster file extent item search in clone ioctl (Eric Sandeen) [1071179]
-- [fs] btrfs: fix extent state leak on transaction abortion (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the btrfs_parse_options for remount (Eric Sandeen) [1071179]
-- [fs] btrfs: Add noinode_cache mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: fix to search previous metadata extent item since skinny metadata (Eric Sandeen) [1071179]
-- [fs] btrfs: fix missing skinny metadata check in scrub_stripe() (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send to not send non-aligned clone operations (Eric Sandeen) [1071179]
-- [fs] btrfs: fix btrfs boot when compiled as built-in (Eric Sandeen) [1071179]
-- [fs] btrfs: unlock inodes in correct order in clone ioctl (Eric Sandeen) [1071179]
-- [fs] btrfs: optimize to remove unnecessary removal with ulist reallocation (Eric Sandeen) [1071179]
-- [fs] btrfs: release subvolume's block_rsv before transaction commit (Eric Sandeen) [1071179]
-- [fs] btrfs: only process as many file extents as there are refs (Eric Sandeen) [1071179]
-- [fs] btrfs: fix qgroup rescan to work with skinny metadata (Eric Sandeen) [1071179]
-- [fs] btrfs: fix extent_from_logical to deal with skinny metadata (Eric Sandeen) [1071179]
-- [fs] btrfs: throttle delayed refs better (Eric Sandeen) [1071179]
-- [fs] btrfs: attach delayed ref updates to delayed ref heads (Eric Sandeen) [1071179]
-- [fs] btrfs: make fsync latency less sucky (Eric Sandeen) [1071179]
-- [fs] btrfs: add support for inode properties (Eric Sandeen) [1071179]
-- [fs] btrfs: faster file extent item replace operations (Eric Sandeen) [1071179]
-- [fs] btrfs: handle EAGAIN case properly in btrfs_drop_snapshot() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary transaction commit before send (Eric Sandeen) [1071179]
-- [fs] btrfs: fix protection between send and root deletion (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong send_in_progress accounting (Eric Sandeen) [1071179]
-- [fs] btrfs: Add treelog mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add datasum mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add datacow mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add acl mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add noflushoncommit mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add noenospc_debug mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add nodiscard mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add noautodefrag mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add "barrier" option to support "-o remount, barrier" (Eric Sandeen) [1071179]
-- [fs] btrfs: only fua the first superblock when writting supers (Eric Sandeen) [1071179]
-- [fs] btrfs: return free space to global_rsv as much as possible (Eric Sandeen) [1071179]
-- [fs] btrfs: fix an oops when we fail to relocate tree blocks (Eric Sandeen) [1071179]
-- [fs] btrfs: fix an oops when we fail to merge reloc roots (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused argument from select_reloc_root() (Eric Sandeen) [1071179]
-- [fs] btrfs: reduce btree node locking duration on item update (Eric Sandeen) [1071179]
-- [fs] btrfs: Integer overflow in btrfs_ioctl_resize() (Eric Sandeen) [1071179]
-- [fs] btrfs: stop caching thread if extent_commit_sem is contended (Eric Sandeen) [1071179]
-- [fs] rwsem: add rwsem_is_contended (Eric Sandeen) [1071179]
-- [fs] btrfs: introduce the delayed inode ref deletion for the single link inode (Eric Sandeen) [1071179]
-- [fs] btrfs: use flags instead of the bool variants in delayed node (Eric Sandeen) [1071179]
-- [fs] btrfs: remove btrfs_end_transaction_dmeta() (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup code of btrfs_balance_delayed_items() (Eric Sandeen) [1071179]
-- [fs] btrfs: don't run delayed nodes again after all nodes flush (Eric Sandeen) [1071179]
-- [fs] btrfs: remove residual code in delayed inode async helper (Eric Sandeen) [1071179]
-- [fs] btrfs: convert printk to btrfs_ and fix BTRFS prefix (Eric Sandeen) [1071179]
-- [fs] btrfs: fix tree mod logging (Eric Sandeen) [1071179]
-- [fs] btrfs: check balance of send_in_progress (Eric Sandeen) [1071179]
-- [fs] btrfs: remove transaction from btrfs send (Eric Sandeen) [1071179]
-- [fs] btrfs: fix double initialization of the raid kobject (Eric Sandeen) [1071179]
-- [fs] btrfs: fix a warning when iput a file (Eric Sandeen) [1071179]
-- [fs] btrfs: Check read-only status of roots during send (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused mnt from send_ctx (Eric Sandeen) [1071179]
-- [fs] btrfs: send: clean up dead code (Eric Sandeen) [1071179]
-- [fs] btrfs: fix deadlock when iterating inode refs and running delayed inodes (Eric Sandeen) [1071179]
-- [fs] btrfs: remove dead comments for read_csums() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove field tree_mod_seq_elem from btrfs_fs_info struct (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use of uninitialized err variable (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary filemap writting and waiting after block group relocation (Eric Sandeen) [1071179]
-- [fs] btrfs: fix error check of btrfs_lookup_dentry() (Eric Sandeen) [1071179]
-- [fs] btrfs: return immediately if tree log mod is not necessary (Eric Sandeen) [1071179]
-- [fs] btrfs: move the extent buffer radix tree into the fs_info (Eric Sandeen) [1071179]
-- [fs] btrfs: use a bit to track if we're in the radix tree (Eric Sandeen) [1071179]
-- [fs] btrfs: deal with io_tree->mapping being NULL (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient push_leaf_right (Eric Sandeen) [1071179]
-- [fs] btrfs: wrap repeated code into scrub_blocked_if_needed() (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong super generation mismatch when scrubbing supers (Eric Sandeen) [1071179]
-- [fs] btrfs: fix pass of transid with wrong endianness in send.c (Eric Sandeen) [1071179]
-- [fs] btrfs: fix extent_map block_len after merging (Eric Sandeen) [1071179]
-- [fs] btrfs: remove dead code (Eric Sandeen) [1071179]
-- [fs] btrfs: fix max dir item size calculation (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient extent state insertions (Eric Sandeen) [1071179]
-- [fs] btrfs: add missing extent state caching calls (Eric Sandeen) [1071179]
-- [fs] btrfs: faster and more efficient extent map insertion (Eric Sandeen) [1071179]
-- [fs] btrfs: fix extent boundary check in bio_readpage_error (Eric Sandeen) [1071179]
-- [fs] btrfs: try harder to avoid btree node splits (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid unnecessary ordered extent cache resets (Eric Sandeen) [1071179]
-- [fs] btrfs: fix leaks during sysfs teardown (Eric Sandeen) [1071179]
-- [fs] btrfs: fix static checker warnings (Eric Sandeen) [1071179]
-- [fs] btrfs: fix very slow inode eviction and fs unmount (Eric Sandeen) [1071179]
-- [fs] btrfs: improve forever loop when doing balance relocation (Eric Sandeen) [1071179]
-- [fs] btrfs: fix ordered extent check in btrfs_punch_hole (Eric Sandeen) [1071179]
-- [fs] btrfs: replace BUG in can_modify_feature (Eric Sandeen) [1071179]
-- [fs] btrfs: reserve no transaction units in btrfs_feature_attr_store (Eric Sandeen) [1071179]
-- [fs] btrfs: make btrfs_debug match pr_debug handling related to DEBUG (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup: removed unused 'btrfs_get_inode_ref_index' (Eric Sandeen) [1071179]
-- [fs] btrfs: expand btrfs_find_item() to include find_orphan_item functionality (Eric Sandeen) [1071179]
-- [fs] btrfs: expand btrfs_find_item() to include find_root_ref functionality (Eric Sandeen) [1071179]
-- [fs] btrfs: bootstrap generic btrfs_find_item interface (Eric Sandeen) [1071179]
-- [fs] btrfs: fix unused variables in qgroup.c (Eric Sandeen) [1071179]
-- [fs] btrfs: replace path->slots[0] with otherwise unused variable 'slot' (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variable from scrub_fixup_nodatasum (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variable from setup_cluster_no_bitmap (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variables from extent_io.c (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variable from find_free_extent (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variables from disk-io.c (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variable from btrfs_new_inode (Eric Sandeen) [1071179]
-- [fs] btrfs: publish fs label in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish device membership in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish allocation data in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: add ioctl to export size of global metadata reservation (Eric Sandeen) [1071179]
-- [fs] btrfs: use feature attribute names to print better error messages (Eric Sandeen) [1071179]
-- [fs] btrfs: add ability to change features via sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish unknown feature bits in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish per-super features in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish per-super attributes in sysfs (Eric Sandeen) [1071179]
-- [fs] kobject: export kobj_sysfs_ops (Eric Sandeen) [1071179]
-- [fs] btrfs: publish supported featured in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: add ioctls to query/change feature bits online (Eric Sandeen) [1071179]
-- [fs] btrfs: skip merge part for delayed data refs (Eric Sandeen) [1071179]
-- [fs] btrfs: introduce a head ref rbtree (Eric Sandeen) [1071179]
-- [fs] btrfs: fix check-integrity to look at the referenced data properly (Eric Sandeen) [1071179]
-- [fs] btrfs: incompatible format change to remove hole extents (Eric Sandeen) [1071179]
-- [fs] btrfs: sanitize BTRFS_IOC_FILE_EXTENT_SAME (Eric Sandeen) [1071179]
-- [fs] btrfs: fix comments and printk msgs (Eric Sandeen) [1071179]
-- [fs] btrfs: Fix typos in printk (Eric Sandeen) [1071179]
-
-* Tue Aug 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-144.el7]
-- [net] ipv6: Fix MLD Query message check (Jiri Pirko) [1114650]
-- [net] sctp: inherit auth_capable on INIT collisions (Daniel Borkmann) [1123763] {CVE-2014-5077}
-- [net] ipv6: ipv6_find_hdr restore prev functionality (Jesper Brouer) [1074516]
-- [net] ipvs: fix AF assignment in ip_vs_conn_new() (Jesper Brouer) [1074516]
-- [virt] kvm: always exit on EOIs for interrupts listed in the IOAPIC redir table (Alex Williamson) [1126997]
-- [iommu] amd: Fix interrupt remapping for aliased devices (Alex Williamson) [1090139]
-- [pci] Add Patsburg (X79) to Intel PCH root port ACS quirk (Alex Williamson) [1081428]
-- [kernel] time/alarmtimer: Fix bug where relative alarm timers were treated as absolute (Prarit Bhargava) [1124941]
-- [acpi] processor: Fix STARTING/DYING action in acpi_cpu_soft_notify() (Prarit Bhargava) [1099594]
-- [x86] mce_intel: Add raw_lock conversion again (Prarit Bhargava) [1127257]
-- [sound] alsa/control: Don't access controls outside of protected regions (Radomir Vrbovsky) [1117331] {CVE-2014-4653}
-- [kernel] tick: Clear broadcast pending bit when switching to oneshot (Alex Williamson) [1109996]
-- [x86] efi: Do not export efi runtime map in case old map (Dave Young) [1080109]
-- [x86] efi: Quirk out SGI UV (Dave Young) [1080109]
-- [x86] efi: Split efi_enter_virtual_mode (Dave Young) [1080109]
-- [x86] efi: Make efi virtual runtime map passing more robust (Dave Young) [1080109]
-- [x86] mm/pageattr: Export page unmapping interface (Dave Young) [1080109]
-- [x86] efi: Dump the EFI page table (Dave Young) [1080109]
-- [x86] mm/ptdump: Add the functionality to dump an arbitrary pagetable (Dave Young) [1080109]
-- [x86] efi: Style neatening (Dave Young) [1080109]
-- [x86] efi: parse_efi_setup() build fix (Dave Young) [1080109]
-- [x86] ksysfs.c build fix (Dave Young) [1080109]
-- [x86] efi: Delete superfluous global variables (Dave Young) [1080109]
-- [x86] setup: Reserve setup_data ranges late after parsing memmap cmdline (Dave Young) [1080109]
-- [x86] Export x86 boot_params to sysfs (Dave Young) [1080109]
-- [x86] boot: Add xloadflags bit for EFI runtime support on kexec (Dave Young) [1080109]
-- [firmware] efi: Pass necessary EFI data for kexec via setup_data (Dave Young) [1080109]
-- [firmware] efi: Export EFI runtime memory mapping to sysfs (Dave Young) [1080109]
-- [firmware] efi: Export more EFI table variables to sysfs (Dave Young) [1080109]
-- [firmware] efi: Cleanup efi_enter_virtual_mode() function (Dave Young) [1080109]
-- [firmware] efi: Fix off-by-one bug in EFI Boot Services reservation (Dave Young) [1080109]
-- [firmware] efi: Add a wrapper function efi_map_region_fixed() (Dave Young) [1080109]
-- [firmware] efi: Remove unused variables in __map_region() (Dave Young) [1080109]
-- [firmware] efi: Check krealloc return value (Dave Young) [1080109]
-- [firmware] efi: Runtime services virtual mapping (Dave Young) [1080109]
-- [x86] mm/pageattr: Map in an arbitrary pgd (Dave Young) [1080109]
-- [x86] mm/pageattr: Add last levels of error path (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PUD error unwinding path (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PTE pagetable populating function (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PMD pagetable populating function (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PUD pagetable populating function (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PGD pagetable populating function (Dave Young) [1080109]
-- [x86] mm/pageattr: Lookup address in an arbitrary PGD (Dave Young) [1080109]
-- [firmware] efi: Convert runtime services function ptrs (Dave Young) [1080109]
-- [firmware] efi: Simplify EFI_DEBUG (Dave Young) [1080109]
-- [firmware] efi: Fix config_table_type array termination (Dave Young) [1080109]
-- [firmware] efi: make efi_lookup_mapped_addr() a common function (Dave Young) [1080109]
-- [firmware] efi: provide a generic efi_config_init() (Dave Young) [1080109]
-- [iommu] vt-d: Use list_for_each_entry_safe() for dmar_domain->devices traversa (Myron Stowe) [1127467]
-- [iommu] vt-d: Use for_each_drhd_unit() instead of list_for_each_entry() (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call io_page_fault trace event (Myron Stowe) [1127467]
-- [iommu] Add iommu_error class event to iommu trace (Myron Stowe) [1127467]
-- [iommu] No need to pass '0x' when 'pa' is used (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call unmap trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call map trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call detach_device_to_domain trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call attach_device_to_domain trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call remove_device_to_group trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call add_device_to_group trace event (Myron Stowe) [1127467]
-- [iommu] Add event tracing feature to iommu (Myron Stowe) [1127467]
-- [iommu] intel: correct ICS register offset (Myron Stowe) [1127467]
-- [Documentation] MAINTAINERS: add overall IOMMU section (Myron Stowe) [1127467]
-- [iommu] amd: Fix resource leak in iommu_init_device() (Myron Stowe) [1127467]
-- [iommu] amd: Clean up unnecessary MSI/MSI-X capability find (Myron Stowe) [1127467]
-- [powerpc] Add iommu domain pointer to device archdata (Myron Stowe) [1127467]
-- [iommu] vt-d: DMAR reporting table needs at least one DRHD (Myron Stowe) [1127467]
-- [iommu] vt-d: Downgrade the warning if enabling irq remapping fails (Myron Stowe) [1127467]
-- [net] l2tp: don't fall back on UDP [get|set]sockopt (Petr  Matousek) [1119466] {CVE-2014-4943}
-- [x86] ptrace: force IRET path after a ptrace_stop() (Oleg Nesterov) [1115935] {CVE-2014-4699}
-- [s390] ptrace: correct insufficient sanitization when setting psw mask (Hendrik Brueckner) [1113673] {CVE-2014-3534}
-
-* Wed Aug 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-143.el7]
-- [virt] kvm/async_pf: kill the unnecessary use_mm/unuse_mm async_pf_execute() (Paolo Bonzini) [1116936]
-- [virt] kvm/async_pf: change async_pf_execute() to use get_user_pages(tsk => NULL) (Paolo Bonzini) [1116936]
-- [virt] kvm: support any-length wildcard ioeventfd (Paolo Bonzini) [1116936]
-- [virt] kvm: return an error code in kvm_vm_ioctl_register_coalesced_mmio() (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: preserve the high 32-bits of the PAT register (Paolo Bonzini) [1116936]
-- [virt] kvm: fix wrong address when writing Hyper-V tsc page (Paolo Bonzini) [1116936]
-- [kernel] sched: Fix signedness bug in yield_to() (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Check for nested events if there is an injectable interrupt (Paolo Bonzini) [1116936]
-- [virt] kvm/svm: Fix CPL export via SS.DPL (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: disable APIC virtualization in nested guests (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Check for host supported fields in shadow vmcs (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: MOV CR/DR emulation should ignore mod (Paolo Bonzini) [1116936]
-- [virt] kvm/lapic: sync highest ISR to hardware apic on EOI (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: get CPL from SS.DPL (Paolo Bonzini) [1078775 1088784 1116936]
-- [virt] kvm/x86: check CS.DPL against RPL during task switch (Paolo Bonzini) [1078775 1088784 1116936]
-- [virt] kvm/x86: drop set_rflags callback (Paolo Bonzini) [1078775 1088784 1116936]
-- [virt] kvm/x86: use new CS.RPL as CPL during task switch (Paolo Bonzini) [1078775 1088784 1116936]
-- [virt] kvm/x86: fix page fault tracing when KVM guest support enabled (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: DR7 masking on task switch emulation is wrong (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix CR3 reserved bits check in long mode (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: emulate monitor and mwait instructions as nop (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: implement hv EOI assist (Paolo Bonzini) [1086663 1116936]
-- [virt] kvm/x86: Mark bit 7 in long-mode PDPTE according to 1GB pages support (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: handle_dr does not handle RSP correctly (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: move vmclear and vmptrld pre-checks to nested_vmx_check_vmptr (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: fail on invalid vmclear/vmptrld pointer (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: additional checks on vmxon region (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: rearrange get_vmx_mem_address (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: improve the usability of the 'kvm_pio' tracepoint (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Processor mode may be determined incorrectly (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: IN instruction emulation should ignore REP-prefix (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix CR3 reserved bits (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix wrong/stuck PMU when guest does not use PMI (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Advertise support for interrupt acknowledgement (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Ack and write vector info to intr_info if L1 asks us to (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Don't advertise single context invalidation for invept (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Advance rip to after an ICEBP instruction (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix CR3 and LDT sel should not be saved in TSS (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: speed up wildcard MMIO EVENTFD (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix page-tables reserved bits (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: remove WARN_ON from get_kernel_ns() (Paolo Bonzini) [1116936]
-- [virt] kvm: Rename variable smep to cr4_smep (Paolo Bonzini) [1084616 1116936]
-- [virt] kvm: expose SMAP feature to guest (Paolo Bonzini) [1084616 1116936]
-- [virt] kvm: Disable SMAP for guests in EPT realmode and EPT unpaging mode (Paolo Bonzini) [1074747 1084616 1116936]
-- [virt] kvm: Add SMAP support when setting CR4 (Paolo Bonzini) [1084616 1116936]
-- [virt] kvm: Remove SMAP bit from CR4_RESERVED_BITS (Paolo Bonzini) [1084616 1116936]
-- [x86] processor-flags: Fix the datatypes and add bit number defines (Paolo Bonzini) [1116936]
-- [kernel] const: Add _BITUL() and _BITULL() (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: fix MPX detection (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: handle missing MPX in nested virtualization (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Add nested virtualization support for MPX (Paolo Bonzini) [1116936]
-- [virt] kvm/svm: Allow the guest to run with dirty debug registers (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/svm: set/clear all DR intercepts in one swoop (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/nvmx: Allow nested guests to run with dirty debug registers (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/vmx: Allow the guest to run with dirty debug registers (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/x86: Allow the guest to run with dirty debug registers (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/x86: change vcpu->arch.switch_db_regs to a bit mask (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/vmx: we do rely on loading DR7 on entry (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/x86: Remove return code from enable_irq/nmi_window (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Do not inject NMI vmexits when L2 has a pending interrupt (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fully emulate preemption timer (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Rework interception of IRQs and NMIs (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Break kvm_for_each_vcpu loop after finding the VP_INDEX (Paolo Bonzini) [1116936]
-- [x86] cpufeature: Rename X86_FEATURE_CLFLSH to X86_FEATURE_CLFLUSH (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: drop read-only large sptes when creating lower level sptes (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Enable Intel MPX for guest (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: add MSR_IA32_BNDCFGS to msrs_to_save (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: Intel MPX vmx and msr handle (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: introduce kvm_supported_xcr0() (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm: kABI fixup for MPX patches (Paolo Bonzini) [1116936]
-- [x86] xsave: Support eager-only xsave features, add MPX support (Paolo Bonzini) [1076194 1116936]
-- [x86] cpufeature: Define the Intel MPX feature flag (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: Fix xsave cpuid exposing bug (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: expose ADX feature to guest (Paolo Bonzini) [1084614 1116936]
-- [virt] kvm/x86: expose new instruction RDSEED to guest (Paolo Bonzini) [1084614 1116936]
-- [virt] kvm: remove redundant registration of BSP's hv_clock area (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: remove unused last_kernel_ns variable (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: correctly access the KVM_CPUID_FEATURES leaf at 0x40000101 (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: cache the base of the KVM cpuid leaves (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Validate guest writes to MSR_IA32_APICBASE (Paolo Bonzini) [1110125 1116936]
-- [virt] kvm/x86: mark hyper-v vapic assist page as dirty (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: mark hyper-v hypercall page as dirty (Paolo Bonzini) [1116936]
-- [virt] kvm: make KVM_MMU_AUDIT help text more readable (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Update guest activity state field on L2 exits (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fix nested_run_pending on activity state HLT (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Clean up handling of VMX-related MSRs (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Add tracepoints for nested_vmexit and nested_vmexit_inject (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Pass vmexit parameters to nested_vmx_vmexit (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Leave VMX mode on clearing of feature control MSR (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Fix DR6 update on #DB exception (Paolo Bonzini) [1079841 1116936]
-- [virt] kvm/svm: Fix reading of DR6 (Paolo Bonzini) [1079841 1116936]
-- [virt] kvm/x86: Sync DR7 on KVM_SET_DEBUGREGS (Paolo Bonzini) [1079841 1116936]
-- [virt] kvm: remove useless write to vcpu->hv_clock.tsc_timestamp (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix debug typo error in lapic (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: check use I/O bitmap first before unconditional I/O exit (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Unconditionally uninit the MMU on nested vmexit (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Do not skip the instruction if handle_dr injects a fault (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Support direct APIC access from L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Add comment on vcpu_enter_guest()'s return value (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Add support for activity state HLT (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: shadow VM_(ENTRY (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: delay mmu audit activation (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Really fix lazy FPU on nested guest (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Fix lazy FPU on nested guest (Paolo Bonzini) [1116936]
-- [virt] kvm/cpuid: Fix sparse warning (Paolo Bonzini) [1116936]
-- [virt] kvm: Delete prototype for non-existent function kvm_check_iopl (Paolo Bonzini) [1116936]
-- [virt] kvm: Delete prototype for non-existent function complete_pio (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: trace cpuid emulation when called from emulator (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: cleanup decode_register_operand() a bit (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: check rex prefix inside decode_register() (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: error message typo fix (Paolo Bonzini) [1116936]
-- [virt] kvm: Emulate MOVBE (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: Add initial three-byte insns support (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: Rename VendorSpecific flag (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: Use opcode length (Paolo Bonzini) [1116936]
-- [virt] kvm: Add KVM_GET_EMULATED_CPUID (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Report CPU_BASED_VIRTUAL_NMI_PENDING as supported (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Report 2MB EPT pages as supported (Paolo Bonzini) [1116936]
-- [virt] kvm: Move gfn_to_index to x86 specific code (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fully support nested VMX preemption timer (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: change useless int return types to void (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: unify destroy_kvm_mmu with kvm_mmu_unload (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: remove uninteresting MMU "new_cr3" callbacks (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: remove uninteresting MMU "free" callbacks (Paolo Bonzini) [1116936]
-- [virt] kvm: Convert kvm_lock back to non-raw spinlock (Paolo Bonzini) [1116936]
-- [virt] kvm: protect kvm_usage_count with its own spinlock (Paolo Bonzini) [1116936]
-- [virt] kvm: cleanup (physical) CPU hotplug (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Do not generate #DF if #PF happens during exception delivery into L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Check all exceptions for intercept during delivery to L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Do not put exception that caused vmexit to IDT_VECTORING_INFO (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Amend nested_run_pending logic (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Enable unrestricted guest mode support (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Implement support for EFER saving on VM-exit (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Do not set identity page map for L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Replace kvm_set_cr0 with vmx_set_cr0 in load_vmcs12_host_state (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: fix shadow on EPT (Paolo Bonzini) [1116936]
-- [virt] kvm/nept: reset PDPTR register cache on nested vmentry emulation (Paolo Bonzini) [1116936]
-- [virt] kvm: Fix NULL dereference in gfn_to_hva_prot() (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: allow page tables to be in read-only slots (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: emulate RETF imm (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: remove unused parameter (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: add comments where MMIO does not return to the emulator (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: count exits to userspace during invalid guest emulation (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Advertise IA32_PAT in VM exit control (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fix up VM_ENTRY_IA32E_MODE control feature reporting (Paolo Bonzini) [1116936]
-- [virt] kvm/nept: Advertise WB type EPTP (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nvmx: Keep arch.pat in sync on L1-L2 switches (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Miscelleneous cleanups (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Some additional comments (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm: Advertise the support of EPT to the L1 guest, through the appropriate MSR (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Nested INVEPT (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: MMU context for nested EPT (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Add nept violation/misconfigration support (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: correctly check if remote tlb flush is needed for shadowed EPT tables (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Redefine EPT-specific link_shadow_page() (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Add EPT tables support to paging_tmpl.h (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Support shadow paging for guest paging without A/D bits (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: make guest's A/D bits depends on guest's paging mode (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Move common code to paging_tmpl.h (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Fix wrong test in kvm_set_cr3 (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Fix cr3 handling in nested exit and entry (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Support LOAD_IA32_EFER entry/exit controls for L1 (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/mmu: fix check the reserved bits on the gpte of L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: correctly set tr base on nested vmexit emulation (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: reset rflags register cache during nested vmentry (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: handle singlestep during emulation (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: handle hardware breakpoints during emulation (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: rename EMULATE_DO_MMIO (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Drop some unused functions from lapic (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Simplify __apic_accept_irq (Paolo Bonzini) [1116936]
-- [virt] kvm/perf: Support the in_tx/in_tx_cp modifiers in KVM arch perfmon emulation v5 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Set segment infomation of L1 when L2 exits (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fix read/write to MSR_IA32_FEATURE_CONTROL (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Drop useless cast (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Use proper types to access const arrays (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Set success rflags when emulate VMXON/VMXOFF in nested virt (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Change location of 3 functions in vmx.c (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Avoid zapping mmio sptes twice for generation wraparound (Paolo Bonzini) [1116936]
-- [virt] kvm: add missing cleanup_srcu_struct (Paolo Bonzini) [1116936]
-- [virt] kvm/irqchip: Speed up KVM_SET_GSI_ROUTING (Paolo Bonzini) [1116936]
-- [virt] kvm/async_pf: mm->mm_users can not pin apf->mm (Paolo Bonzini) [1116936]
-- [virt] kvm: Specify byte order for KVM_EXIT_MMIO (Paolo Bonzini) [1116936]
-- [virt] kvm/eventfd: Fix lock order inversion (Paolo Bonzini) [1116936]
-- [virt] kvm: add kvm_arch_vcpu_runnable() test to kvm_vcpu_on_spin() loop (Paolo Bonzini) [1116936]
-- [virt] kvm/asmlinkage: Make kvm_rebooting visible (Paolo Bonzini) [1116936]
-- [virt] kvm: Provide kvm_vcpu_eligible_for_directed_yield() stub (Paolo Bonzini) [1116936]
-- [virt] kvm/vfio: silence GCC warning (Paolo Bonzini) [1116936]
-- [virt] kvm: remove dead code (Paolo Bonzini) [1116936]
-- [virt] kvm: make local functions static (Paolo Bonzini) [1116936]
-- [virt] kvm/doc: Fix typo in doc/virtual/kvm (Paolo Bonzini) [1116936]
-- [virt] kvm: Use cond_resched() directly and remove useless kvm_resched() (Paolo Bonzini) [1116936]
-- [virt] kvm: kvm_clear_guest_page(), fix empty_zero_page usage (Paolo Bonzini) [1116936]
-- [virt] kvm: remove vm mmap method (Paolo Bonzini) [1116936]
-- [virt] kvm/iommu: hva align mapping page size (Paolo Bonzini) [1116936]
-- [virt] kvm_host: typo fix (Paolo Bonzini) [1116936]
-- [Documentation] kvm: add a 00-INDEX file (Paolo Bonzini) [1116936]
-- [virt] kvm: use a more sensible error number when debugfs directory creation fails (Paolo Bonzini) [1116936]
-- [virt] kvm: Fix modprobe failure for kvm_intel/kvm_amd (Paolo Bonzini) [1116936]
-- [virt] kvm: Enable pvspinlock after jump_label_init() to avoid VM hang (Paolo Bonzini) [1116936]
-- [virt] kvm: Drop FOLL_GET in GUP when doing async page fault (Paolo Bonzini) [1116936]
-- [virt] kvm/iommu: Add leading zeros to device's BDF notation in debug messages (Paolo Bonzini) [1116936]
-- [Documentation] kvm: Update cpuid documentation for steal time and pv eoi (Paolo Bonzini) [1116936]
-- [virt] kvm: remove .done from struct kvm_async_pf (Paolo Bonzini) [1116936]
-- [virt] kvm: Add documentation for kvm->srcu lock (Paolo Bonzini) [1116936]
-- [virt] kvm: free resources after canceling async_pf (Paolo Bonzini) [1116936]
-- [virt] kvm/eventfd: switch to fdget (Paolo Bonzini) [1116936]
-- [virt] kvm: Introduce kvm_arch_memslots_updated() (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Rename X86_CR4_RDWRGSFS to X86_CR4_FSGSBASE (Paolo Bonzini) [1116936]
-- [virt] kvm: rename __kvm_io_bus_sort_cmp to kvm_io_bus_cmp (Paolo Bonzini) [1116936]
-- [virt] kvm: optimize away THP checks in kvm_is_mmio_pfn() (Paolo Bonzini) [1116936]
-- [virt] kvm: use anon_inode_getfd() with O_CLOEXEC flag (Paolo Bonzini) [1116936]
-- [virt] kvm: introduce __kvm_io_bus_sort_cmp (Paolo Bonzini) [1116936]
-- [Documentation] virtual/kvm/api.txt fix a typo (Paolo Bonzini) [1116936]
-- [virt] kvm/ppc: reserve a capability number for multitce support (Paolo Bonzini) [1116936]
-- [virt] virtio_ring: change host notification API (Paolo Bonzini) [1116936]
-- [x86] quirks: Mark Cave Creek chipset device id as supported (Steve Best) [1087659]
-- [mm] memcg, vmscan: Fix forced scan of anonymous pages (Jerome Marchand) [1125240]
-- [drm] qxl: return IRQ_NONE if it was not our irq (Jason Wang) [1095099]
-- [kernel] sched/autogroup: Fix race with task_groups list (Gustavo Duarte) [1081406]
-- [lib] percpu_counter: unbreak __percpu_counter_add() (Eric Sandeen) [1123968]
-- [lib] percpu_counter: fix __percpu_counter_add() (Eric Sandeen) [1123968]
-
-* Fri Aug 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-142.el7]
-- [x86] Revert: Insert GART region into resource map (Myron Stowe) [1110895]
-- [pci] Don't check resource_size() in pci_bus_alloc_resource() (Myron Stowe) [1110895]
-- [pci] Enable INTx in pci_reenable_device() only when MSI/MSI-X not enabled (Myron Stowe) [1110895]
-- [ahci] Fix broken fallback to single MSI mode (Myron Stowe) [1110895]
-- [pci] Enable INTx if BIOS left them disabled (Myron Stowe) [1110895]
-- [pci] msi: Add pci_enable_msi_exact() and pci_enable_msix_exact() (Myron Stowe) [1110895]
-- [pci] msi: Fix cut-and-paste errors in documentation (Myron Stowe) [1110895]
-- [pci] msi: Add pci_enable_msi() documentation back (Myron Stowe) [1110895]
-- [pci] msi: Fix pci_msix_vec_count() htmldocs failure (Myron Stowe) [1110895]
-- [pci] msi: Fix leak of msi_attrs (Myron Stowe) [1110895]
-- [pci] msi: Check kmalloc() return value, fix leak of name (Myron Stowe) [1110895]
-- [eisa] Revert: Initialize device before its resources (Myron Stowe) [1110895]
-- [eisa] Revert: Log device resources in dmesg (Myron Stowe) [1110895]
-- [pci] Check parent kobject in pci_destroy_dev() (Myron Stowe) [1110895]
-- [powerpc] eeh: Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [pci] Fix pci_check_and_unmask_intx() comment typos (Myron Stowe) [1110895]
-- [scsi] mpt: Use pci_stop_and_remove_bus_device_locked() (Myron Stowe) [1110895]
-- [platform] x86: Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [pci] hotplug: Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [pcmcia] Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [pci] hotplug: Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [acpi] pci: Use global PCI rescan-remove locking in PCI root hotplug (Myron Stowe) [1110895]
-- [pci] Add global pci_lock_rescan_remove() (Myron Stowe) [1110895]
-- [pci] Cleanup pci.h whitespace (Myron Stowe) [1110895]
-- [pci] Reorder so actual code comes before stubs (Myron Stowe) [1110895]
-- [pci] aer: Support ACPI HEST AER error sources for PCI domains other than 0 (Myron Stowe) [1110895]
-- [acpi] acpica: Add helper macros to extract bus/segment numbers from HEST table (Myron Stowe) [1110895]
-- [pci] Make local functions static (Myron Stowe) [1110895]
-- [pci] Remove unused alloc_pci_dev() (Myron Stowe) [1110895]
-- [pci] Remove unused pci_renumber_slot() (Myron Stowe) [1110895]
-- [pci] Remove unused pcie_aspm_enabled() (Myron Stowe) [1110895]
-- [pci] Remove unused pci_vpd_truncate() (Myron Stowe) [1110895]
-- [pci] Remove unused ID-Based Ordering support (Myron Stowe) [1110895]
-- [pci] Remove unused Optimized Buffer Flush/Fill support (Myron Stowe) [1110895]
-- [pci] Remove unused Latency Tolerance Reporting support (Myron Stowe) [1110895]
-- [pci] Removed unused parts of Page Request Interface support (Myron Stowe) [1110895]
-- [pci] Update documentation 00-INDEX file (Myron Stowe) [1110895]
-- [pci] Allocate 64-bit BARs above 4G when possible (Myron Stowe) [1110895]
-- [pci] Enforce bus address limits in resource allocation (Myron Stowe) [1110895]
-- [pci] Split out bridge window override of minimum allocation address (Myron Stowe) [1110895]
-- [agp] ati: Use PCI_COMMAND instead of hard-coded 4 (Myron Stowe) [1110895]
-- [agp] intel: Use CPU physical address, not bus address, for ioremap() (Myron Stowe) [1110895]
-- [agp] intel: Use pci_bus_address() to get GTTADR bus address (Myron Stowe) [1110895]
-- [agp] intel: Use pci_bus_address() to get MMADR bus address (Myron Stowe) [1110895]
-- [agp] intel: Support 64-bit GMADR (Myron Stowe) [1110895]
-- [agp] intel: Rename gtt_bus_addr to gtt_phys_addr (Myron Stowe) [1110895]
-- [drm] i915: Rename gtt_bus_addr to gtt_phys_addr (Myron Stowe) [1110895]
-- [agp] Use pci_resource_start() to get CPU physical address for BAR (Myron Stowe) [1110895]
-- [agp] Support 64-bit APBASE (Myron Stowe) [1110895]
-- [pci] msi: Add pci_enable_msi_range() and pci_enable_msix_range() (Myron Stowe) [1110895]
-- [pci] msi: Add pci_msix_vec_count() (Myron Stowe) [1110895]
-- [pci] msi: Remove pci_enable_msi_block_auto() (Myron Stowe) [1110895]
-- [pci] msi: Add pci_msi_vec_count() (Myron Stowe) [1110895]
-- [pci] Convert ioapic to be builtin only, not modular (Myron Stowe) [1110895]
-- [pci] Add pci_bus_address() to get bus address of a BAR (Myron Stowe) [1110895]
-- [pci] Convert pcibios_resource_to_bus() to take a pci_bus, not a pci_dev (Myron Stowe) [1110895]
-- [pci] Change pci_bus_region addresses to dma_addr_t (Myron Stowe) [1110895]
-- [pci] msi: Return -ENOSYS for unimplemented interfaces, not -1 (Myron Stowe) [1110895]
-- [pci] msi: Return msix_capability_init() failure if populate_msi_sysfs() fails (Myron Stowe) [1110895]
-- [s390] pci: Remove superfluous check of MSI type (Myron Stowe) [1110895]
-- [s390] pci: Fix single MSI only check (Myron Stowe) [1110895]
-- [pci] msi: Export MSI mode using attributes, not kobjects (Myron Stowe) [1110895]
-- [pci] portdrv: Remove extra get_device()/put_device() for pcie_device (Myron Stowe) [1110895]
-- [pci] portdrv: Add put_device() after device_register() failure (Myron Stowe) [1110895]
-- [pci] portdrv: Cleanup error paths (Myron Stowe) [1110895]
-- [pci] Remove from bus_list and release resources in pci_release_dev() (Myron Stowe) [1110895]
-- [pci] Move pci_proc_attach_device() to pci_bus_add_device() (Myron Stowe) [1110895]
-- [pci] Use device_release_driver() in pci_stop_root_bus() (Myron Stowe) [1110895]
-- [pci] aer: Consolidate HEST error source parsers (Myron Stowe) [1110895]
-- [pci] aer: Ignore non-PCIe AER error sources in aer_hest_parse() (Myron Stowe) [1110895]
-- [pci] aer: Clean up error printing code a bit (Myron Stowe) [1110895]
-- [pci] aer: Add a TLP header print helper (Myron Stowe) [1110895]
-- [eisa] Call put_device() if device_register() fails (Myron Stowe) [1110895]
-- [pci] checkpatch: Deprecate DEFINE_PCI_DEVICE_TABLE (Myron Stowe) [1110895]
-- [pci] Stop clearing bridge Secondary Status when setting up I/O aperture (Myron Stowe) [1110895]
-- [pci] Prevent bus conflicts while checking for bridge apertures (Myron Stowe) [1110895]
-- [pci] Drop "irq" param from *_restore_msi_irqs() (Myron Stowe) [1110895]
-- [pci] portdrv: Remove superfluous name cast (Myron Stowe) [1110895]
-- [x86] pci: Use dev_is_pci() to identify PCI devices (Myron Stowe) [1110895]
-- [pci] Use dev_is_pci() to identify PCI devices (Myron Stowe) [1110895]
-- [pci] Clear NumVFs when disabling SR-IOV in sriov_init() (Myron Stowe) [1110895]
-- [s390] watchdog: add support for LPAR operation (diag288) (Hendrik Brueckner) [1088540]
-- [s390] watchdog: use watchdog API (Hendrik Brueckner) [1088540]
-- [scripts] headers_check: special case seqbuf_dump() (Prarit Bhargava) [1090078]
-- [Documentation] mei-amt-version: remove unneeded call of mei_deinit() (Prarit Bhargava) [1090078]
-- [drm] tegra: Include header drm/drm.h (Prarit Bhargava) [1090078]
-- [mfd] lpc_ich: iTCO_wdt patch for Intel Coleto Creek DeviceIDs (Neil Horman) [1053912]
-- [i2c] i801: SMBus patch for Intel Coleto Creek DeviceIDs (Neil Horman) [1053912]
-- [x86] efi: earlyprintk-efi, keep fix (Rui Wang) [1085558]
-- [x86] efi: Fix earlyprintk off-by-one bug (Rui Wang) [1085558]
-- [x86] efi: Add EFI framebuffer earlyprintk support (Rui Wang) [1085558]
-- [s390] zcrypt: remove zcrypt kmsg documentation again (Hendrik Brueckner) [1088511]
-- [s390] zcrypt: add support for EP11 coprocessor cards (Hendrik Brueckner) [1088511]
-- [s390] sclp_vt220: Enable ASCII console per default (Hendrik Brueckner) [1112739]
-- [block] blkcg: fix use-after-free in __blkg_release_rcu() by making blkcg_gq refcnt an atomic_t (Vivek Goyal) [1118436]
-- [ethernet] bnx2x: fix crash during TSO tunneling (Michal Schmidt) [1119133]
-- [ethernet] cxgb4: allow large buffer size to have page size (Gustavo Duarte) [1078977]
-- [fs] vfs: Don't copy mount bind mounts of /proc/<pid>/ns/mnt between namespaces (Aristeu Rozanski) [1098632]
-- [cpufreq] intel_pstate: Add CPU IDs for Broadwell processors (Steve Best) [1086874]
-- [pci] pciehp: Clear Data Link Layer State Changed during init (Myron Stowe) [1101097]
-- [acpi] Fix bug when ACPI reset register is implemented in system memory (Nigel Croxon) [1109971]
-- [ipc] shm: increase the defaults for SHMALL, SHMMAX (Larry Woodman) [1101821]
-- [tools] power/turbostat: Run on Broadwell (Steve Best) [1086455]
-- [drm] i915: make i915 less chatty on resume (Rob Clark) [1086777]
-- [tools] cpupower: add option to display values without round offs (Prarit Bhargava) [1090540]
-- [scripts] kbuild: fix make headers_install when path is too long (Frank Ramsay) [1099575]
-- [kernel] audit: fix AUDIT_FEATURE_CHANGE record number (Richard Guy Briggs) [1085928]
-- [usb] xhci: Link TRB must not occur within a USB payload burst (Don Zickus) [1049077]
-- [virt] xen-netfront: fix resource leak in netfront (Vitaly Kuznetsov) [1070868]
-- [virt] xen-blkfront: handle backend CLOSED without CLOSING (Vitaly Kuznetsov) [1070868]
-
-* Fri Aug 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-141.el7]
-- [misc] no animals were harmed in the making of this kernel (Jarod Wilson)
-
-* Fri Jul 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-140.el7]
-- [net] ipv6: addrconf: implement address generation modes (Jiri Pirko) [1107369]
-- [net] gre: add link local route when local addr is any (Jiri Pirko) [1107369]
-- [net] gre6: don't try to add the same route two times (Jiri Pirko) [1107369]
-- [netdrv] bonding: remove no longer relevant vlan warnings (Jiri Pirko) [1048814]
-- [netdrv] bonding: allow to add vlans on top of empty bond (Jiri Pirko) [1048814]
-- [net] netfilter: nf_ct_timestamp: Fix BUG_ON after netns deletion (Jiri Pirko) [1085667]
-- [net] netfilter: nf_nat: fix oops on netns removal (Florian Westphal) [1089581]
-- [net] unix socket code abuses csum_partial (Hannes Frederic Sowa) [1106402]
-- [net] ip_tunnel: Set network header properly for IP_ECN_decapsulate() (Jiri Pirko) [1094419]
-
-* Fri Jul 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-139.el7]
-- [fs] GFS2: fix potential NULL pointer dereference (Robert S Peterson) [1095835]
-- [input] synaptics: fix resolution for manually provided min/max (Benjamin Tissoires) [1093449]
-- [input] synaptics: change min/max quirk table to pnp-id matching (Benjamin Tissoires) [1093449]
-- [input] synaptics: add a matches_pnp_id helper function (Benjamin Tissoires) [1093449]
-- [input] synaptics: T540p - unify with other LEN0034 models (Benjamin Tissoires) [1093449]
-- [input] synaptics: add min/max quirk for the ThinkPad W540 (Benjamin Tissoires) [1093449]
-- [input] synaptics: add min/max quirk for ThinkPad Edge E431 (Benjamin Tissoires) [1093449]
-- [input] synaptics: add min/max quirk for ThinkPad T431s, L440, L540, S1 Yoga and X1 (Benjamin Tissoires) [1093449]
-- [input] synaptics: report INPUT_PROP_TOPBUTTONPAD property (Benjamin Tissoires) [1093449]
-- [input] Add INPUT_PROP_TOPBUTTONPAD device property (Benjamin Tissoires) [1093449]
-- [input] i8042: add firmware_id support (Benjamin Tissoires) [1093449]
-- [input] serio: add firmware_id sysfs attribute (Benjamin Tissoires) [1093449]
-- [input] synaptics: add manual min/max quirk for ThinkPad X240 (Benjamin Tissoires) [1093449]
-- [input] synaptics: add manual min/max quirk (Benjamin Tissoires) [1093449]
-- [input] synaptics: fix incorrect placement of __initconst (Benjamin Tissoires) [1093449]
-- [s390] sclp_early: Return correct HSA block count also for zero (Hendrik Brueckner) [1107730]
-- [s390] sclp_early: Add function to detect sclp console capabilities (Hendrik Brueckner) [1107730]
-- [s390] sclp_early: Pass sccb pointer to every *_detect() function (Hendrik Brueckner) [1107730]
-- [s390] sclp_early: Replace early_read_info_sccb with sccb_early (Hendrik Brueckner) [1107730]
-- [s390] sclp_early: Get rid of sclp_early_read_info_sccb_valid (Hendrik Brueckner) [1107730]
-- [s390] sclp: replace uninitialized early_event_mask_sccb variable with sccb_early (Hendrik Brueckner) [1107730]
-- [s390] sclp: Consolidate early sclp init calls to sclp_early_detect() (Hendrik Brueckner) [1107730]
-- [s390] sclp: Move declarations for sclp_sdias into separate header file (Hendrik Brueckner) [1107730]
-- [s390] sclp: Move early code from sclp_cmd.c to sclp_early.c (Hendrik Brueckner) [1107730]
-- [s390] sclp: Determine HSA size dynamically for zfcpdump (Hendrik Brueckner) [1107730]
-- [s390] sclp: properly detect line mode console (Hendrik Brueckner) [1107730]
-- [s390] sclp: add parameter to specify number of buffer pages (Hendrik Brueckner) [1103744]
-- [md] dm-cache: set minimum_io_size to cache's data block size (Mike Snitzer) [1117872]
-- [md] dm-thin: set minimum_io_size to pool's data block size (Mike Snitzer) [1117872]
-- [md] dm-crypt: use per-bio data (Mike Snitzer) [1117872]
-- [block] use kmalloc alignment for bio slab (Mike Snitzer) [1117872]
-- [md] dm-crypt: fix cpu hotplug crash by removing per-cpu structure (Mike Snitzer) [1117872]
-- [md] dm-mpath: print more useful warnings in multipath_message() (Mike Snitzer) [1117872]
-- [md] dm-mpath: do not activate failed paths (Mike Snitzer) [1117872]
-- [md] dm-mpath: eliminate pg_ready() wrapper (Mike Snitzer) [1117872]
-- [md] dm-mpath: remove extra nesting in map function (Mike Snitzer) [1117872]
-- [md] dm-mpath: remove map_io() (Mike Snitzer) [1117872]
-- [md] dm-mpath: reduce memory pressure when requeuing (Mike Snitzer) [1117872]
-- [md] dm-mpath: really fix lockdep warning (Mike Snitzer) [1117872]
-- [md] dm-mpath: fix lock order inconsistency in multipath_ioctl (Mike Snitzer) [1117872]
-- [md] dm-mpath: remove process_queued_ios() (Mike Snitzer) [1117872]
-- [md] dm-mpath: fix IO hang due to logic bug in multipath_busy (Mike Snitzer) [1117872]
-- [md] dm-mpath: push back requests instead of queueing (Mike Snitzer) [1117872]
-- [md] dm-table: add dm_table_run_md_queue_async (Mike Snitzer) [1117872]
-- [md] dm-mpath: do not call pg_init when it is already running (Mike Snitzer) [1117872]
-- [md] dm-cache: fail migrations in the do_worker error path (Mike Snitzer) [1117872]
-- [md] dm-cache: simplify deferred set reference count increments (Mike Snitzer) [1117872]
-- [md] dm-cache-metadata: use dm-space-map-metadata.h defined size limits (Mike Snitzer) [1117872]
-- [md] dm-cache-metadata: do not allow the data block size to change (Mike Snitzer) [1117872]
-- [md] dm-thin-metadata: do not allow the data block size to change (Mike Snitzer) [1117872]
-- [md] dm-thin: relax external origin size constraints (Mike Snitzer) [1065474]
-- [md] dm-thin: switch to an atomic_t for tracking pending new block preparations (Mike Snitzer) [1065474]
-- [md] dm-thin: cleanup noflush_work to use a proper completion (Mike Snitzer) [1117872]
-- [md] dm-era: check for a non-NULL metadata object before closing it (Mike Snitzer) [1117872]
-- [md] dm-io: simplify dec_count and sync_io (Mike Snitzer) [1117872]
-- [md] dm-io: fix a race condition in the wake up code for sync_io (Mike Snitzer) [1117872]
-- [md] dm-crypt, dm-zero: update author name following legal name change (Mike Snitzer) [1117872]
-- [md] dm: allocate a special workqueue for deferred device removal (Mike Snitzer) [1117872]
-- [md] dm-snapshot: do not split read bios sent to snapshot-origin target (Mike Snitzer) [1117872]
-- [md] dm-snapshot: allocate a per-target structure for snapshot-origin target (Mike Snitzer) [1117872]
-- [md] dm: introduce dm_accept_partial_bio (Mike Snitzer) [1117872]
-- [md] dm: change sector_count member in clone_info from sector_t to unsigned (Mike Snitzer) [1117872]
-- [md] dm: remove symbol export for dm_set_device_limits (Mike Snitzer) [1117872]
-- [md] dm: disable WRITE SAME if it fails (Mike Snitzer) [1117872]
-- [md] dm: use RCU_INIT_POINTER instead of rcu_assign_pointer in __unbind (Mike Snitzer) [1117872]
-- [md] dm: stop using bi_private (Mike Snitzer) [1117872]
-- [md] dm: remove dm_get_mapinfo (Mike Snitzer) [1117872]
-- [md] dm-table: make dm_table_supports_discards static (Mike Snitzer) [1117872]
-- [md] dm: make dm_table_alloc_md_mempools static (Mike Snitzer) [1117872]
-- [mm] Revert: vmscan: do not swap anon pages just because free+file is low (Johannes Weiner) [1102991]
-- [crypto] fips: only panic on bad/missing crypto mod signatures (Jarod Wilson) [903562]
-- [x86] hugetlb: Add missing TLB page invalidation for hugetlb_cow() (Larry Woodman) [1097919]
-
-* Fri Jul 18 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-138.el7]
-- [mm] hugetlb: ensure hugepage access is denied if hugepages are not supported (David Gibson) [1081671]
-- [x86] Delete non-required instances of include <linux/init.h> (Prarit Bhargava) [1119074]
-- [mmc] sdhci-pci-o2micro: Add SeaBird SeaEagle SD3 support (David Milburn) [968020]
-- [mmc] sdhci-pci: add support of O2Micro/BayHubTech SD hosts (David Milburn) [968020]
-- [mmc] sdhci-pci: break out definitions to header file (David Milburn) [968020]
-- [ethernet] cnic: Don't take cnic_dev_lock in cnic_alloc_uio_rings() (Maurizio Lombardi) [1079384 1094613]
-- [ethernet] cnic: Don't take rcu_read_lock in cnic_rcv_netevent() (Maurizio Lombardi) [1079384 1094613]
-- [idle] intel_idle: fix IVT idle state table setting (Prarit Bhargava) [1119374]
-- [idle] intel_idle: fine-tune IVT residency targets (Prarit Bhargava) [1119374]
-- [idle] intel_idle: do C1E promotion disable quirk for hotplugged CPUs (Prarit Bhargava) [1119374]
-- [idle] intel_idle: remove superfluous dev->state_count initialization (Prarit Bhargava) [1119374]
-- [x86] acpi, idle: Restructure the mwait idle routines (Prarit Bhargava) [1119374]
-- [idle] intel_idle: use CPU_TASKS_FROZEN instead of a numeric constant (Prarit Bhargava) [1119374]
-- [idle] intel_idle: shrink states tables (Prarit Bhargava) [1119374]
-- [md] dm-thin: update discard_granularity to reflect the thin-pool blocksize (Mike Snitzer) [1099936]
-- [md] dm-bio-prison: implement per bucket locking in the dm_bio_prison hash table (Mike Snitzer) [1099936]
-- [md] dm-thin: return ENOSPC instead of EIO when error_if_no_space enabled (Mike Snitzer) [1099936]
-- [md] dm-cache: always split discards on cache block boundaries (Mike Snitzer) [1103836]
-- [md] dm-cache: fix writethrough mode quiescing in cache_map (Mike Snitzer) [1103836]
-- [md] dm-cache: fix a lock-inversion (Mike Snitzer) [1103836]
-- [md] dm-thin: add 'no_space_timeout' dm-thin-pool module param (Mike Snitzer) [1095639]
-- [md] dm-thin: add timeout to stop out-of-data-space mode holding IO forever (Mike Snitzer) [1095639]
-- [md] dm-thin: allow metadata commit if pool is in PM_OUT_OF_DATA_SPACE mode (Mike Snitzer) [1091852]
-- [md] dm-thin: use INIT_WORK_ONSTACK in noflush_work to avoid ODEBUG warning (Mike Snitzer) [1098643]
-- [md] dm-thin: fix rcu_read_lock being held in code that can sleep (Mike Snitzer) [1098643]
-- [md] dm-thin: irqsave must always be used with the pool->lock spinlock (Mike Snitzer) [1098643]
-- [md] dm-thin: sort the per thin deferred bios using an rb_tree (Mike Snitzer) [1098643]
-- [md] dm-thin: use per thin device deferred bio lists (Mike Snitzer) [1098643]
-- [md] dm-thin: simplify pool_is_congested (Mike Snitzer) [1098643]
-
-* Thu Jul 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-137.el7]
-- [powercap] Add to drivers Kconfig and Makefile (Steve Best) [1085575]
-- [powercap] add Documentation (Steve Best) [1085575]
-- [powercap] Fix build error with option -Werror=format-security (Steve Best) [1085575]
-- [powercap] Introduce Intel RAPL power capping driver (Steve Best) [1085575]
-- [powercap] Add class driver (Steve Best) [1085575]
-- [x86] msr: add 64bit _on_cpu access functions (Steve Best) [1085575]
-- [misc] bitops: Introduce BIT_ULL (Steve Best) [1085575]
-- [virt] xen/spinlock: Don't use __initdate for xen_pv_spin (Vitaly Kuznetsov) [1006977]
-- [virt] Revert: xen/spinlock: Disable IRQ spinlock (PV) allocation on PVHVM (Vitaly Kuznetsov) [1006977]
-- [virt] xen/spinlock: Don't setup xen spinlock IPI kicker if disabled (Vitaly Kuznetsov) [1006977]
-- [virt] xen/smp: Update pv_lock_ops functions before alternative code starts under PVHVM (Vitaly Kuznetsov) [1006977]
-- [virt] xen/spinlock: We don't need the old structure anymore (Vitaly Kuznetsov) [1006977]
-- [virt] xen/spinlock: Fix locking path engaging too soon under PVHVM (Vitaly Kuznetsov) [1006977]
-- [ata] ahci: Do not receive interrupts sent by dummy ports (David Milburn) [1067838]
-- [ata] ahci: do not request irq for dummy port (David Milburn) [1067838]
-- [ata] ahci: fix Null pointer dereference in achi_host_active() (David Milburn) [1067838]
-- [ata] ahci: Make distinct names for ports in /proc/interrupts (David Milburn) [1067838]
-- [s390] 3270: fix crash with multiple reset device requests (Hendrik Brueckner) [1088320]
-- [ata] ahci: accommodate tag ordered controller (David Milburn) [1083746]
-- [scsi] libsas: introduce scmd_dbg() to quiet false positive "timeout" messages (David Milburn) [1074987]
-- [ethernet] be2net: enable interrupts in EEH resume (Ivan Vecera) [1076682]
-- [ethernet] bnx2: Fix shutdown sequence (Neil Horman) [1074656]
-- [ethernet] be2net: Fix invocation of be_close() after be_clear() (Ivan Vecera) [1066644]
-- [virt] hv/balloon: Ensure pressure reports are posted regularly (Luiz Capitulino) [1102888]
-- [virt] kvm/x86: expose invariant tsc cpuid bit (Marcelo Tosatti) [1095990]
-- [virt] kvm/x86: disable master clock if TSC is reset during suspend (Marcelo Tosatti) [1098604]
-- [virt] xen/pvhvm: Initialize xen panic handler for PVHVM guests (Vitaly Kuznetsov) [839966]
-- [fs] cifs: Wait for writebacks to complete before attempting write (Sachin Prabhu) [1040329]
-- [fs] xfs: xfs_readsb needs to check for magic numbers (Eric Sandeen) [1102940]
-- [net] svcrdma: fix offset calculation for non-page aligned sge entries (Jeff Layton) [1088954]
-- [fs] lockd: ensure we tear down any live sockets when socket creation fails during lockd_up (Jeff Layton) [1085774]
-- [net] svcrpc: fix gss-proxy NULL dereference in some error cases (Jeff Layton) [1085616]
-- [mm] use paravirt friendly ops for NUMA hinting ptes (Vitaly Kuznetsov) [1101274]
-- [mm] swap: discard while swapping only if SWAP_FLAG_DISCARD_PAGES (Rafael Aquini) [1053189]
-- [x86] hwpoison: remove unused global variable in do_machine_check() (Prarit Bhargava) [1119306]
-- [x86] mce: Panic when a core has reached a timeout (Prarit Bhargava) [1119306]
-- [x86] mce: Improve mcheck_init_device() error handling (Prarit Bhargava) [1119306]
-- [x86] mce: Fix CMCI preemption bugs (Prarit Bhargava) [1119306]
-- [x86] cmci: Add proper detection of end of CMCI storms (Prarit Bhargava) [1119306]
-- [x86] acpi, apei, ghes: Do not report only correctable errors with SCI (Prarit Bhargava) [1119306]
-- [x86] mce: Call put_device on device_register failure (Prarit Bhargava) [1119306]
-- [acpi] apei, cper: Add UEFI 2.4 support for memory error (Prarit Bhargava) [1119306]
-- [x86] mce: Fix mce regression from recent cleanup (Prarit Bhargava) [1119306]
-- [x86] mce: Update MCE severity condition check (Prarit Bhargava) [1119306]
-- [x86] mce: Add comments to clarify usage of the various bitfields in the MCA subsystem (Prarit Bhargava) [1119306]
-- [x86] mcheck, therm_throt: Process package thresholds (Prarit Bhargava) [1119306]
-- [x86] mce: Fix "braodcast" typo (Prarit Bhargava) [1119306]
-- [mm] vmstat: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [mm] vmstat: set N_CPU to node_states during boot (Prarit Bhargava) [1119078]
-- [kernel] trace, ring-buffer: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [kernel] profile: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [mm] zswap: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [hwmon] via-cputemp: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [hwmon] coretemp: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [oprofile] nmi-timer: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [idle] intel-idle: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [base] topology: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [scsi] fcoe: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [cpufreq] acpi-cpufreq: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [scsi] bnx2i: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [scsi] bnx2fc: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [virt] x86, kvm: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] amd, uncore: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] pci, amd-bus: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] hpet: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] intel, cacheinfo: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] therm_throt: Remove unused therm_cpu_lock (Prarit Bhargava) [1119078]
-- [x86] oprofile, nmi: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] amd, ibs: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] msr: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [powerpc] sysfs: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] mce: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] therm_throt: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] cpuid: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] vsyscall: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] intel, uncore: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [s390] smp: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [s390] cacheinfo: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [kernel] cpu_hotplug, perf: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [kernel] cpu/hotplug: Add lockdep annotations to get/put_online_cpus() (Prarit Bhargava) [1119078]
-- [kernel] cpu/hotplug: Provide lockless versions of callback registration functions (Prarit Bhargava) [1119078]
-- [Documentation] cpu-hotplug: Specify race-free way to register CPU hotplug callbacks (Prarit Bhargava) [1119078]
-- [pci] Fail new_id for vendor/device values already built into driver (Bandan Das) [1055867]
-- [init] main: add initcall_blacklist kernel parameter (Prarit Bhargava) [1080995]
-- [kernel] pid_namespace: pidns_get() should check task_active_pid_ns() != NULL (Jan Stancek) [1106368]
-- [i2c] i2c-ismt: support I2C_SMBUS_I2C_BLOCK_DATA transaction type (Neil Horman) [1094516]
-- [misc] mei: fix lockdep warning when registering mei watchdog (Prarit Bhargava) [971855]
-
-* Wed Jul 16 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-136.el7]
-- [block] mtip32xx: minor performance enhancements (Mike Snitzer) [1105703]
-- [block] mtip32xx: let blk_mq_tag_to_rq() take blk_mq_tags as the main parameter (Mike Snitzer) [1105703]
-- [block] mtip32xx: move error handling to service thread (Mike Snitzer) [1105703]
-- [block] mtip32xx: stop block hardware queues before quiescing IO (Mike Snitzer) [1105703]
-- [block] mtip32xx: blk_mq_init_queue() returns an ERR_PTR (Mike Snitzer) [1105703]
-- [block] mtip32xx: convert to use blk-mq (Mike Snitzer) [1105703]
-- [block] mtip32xx: Fix ERO and NoSnoop values in PCIe upstream on AMD systems (Mike Snitzer) [1105703]
-- [block] mtip32xx: Remove dfs_parent after pci unregister (Mike Snitzer) [1105703]
-- [block] mtip32xx: Increase timeout for STANDBY IMMEDIATE command (Mike Snitzer) [1105703]
-- [block] mtip32xx: Set queue bounce limit (Mike Snitzer) [1105703]
-- [block] mtip32xx: Use pci_enable_msi() instead of pci_enable_msi_range() (Mike Snitzer) [1105703]
-- [block] mtip32xx: fix bad use of smp_processor_id() (Mike Snitzer) [1105703]
-- [block] mtip32xx: Use pci_enable_msix_range() instead of pci_enable_msix() (Mike Snitzer) [1105703]
-- [block] mtip32xx: Remove superfluous call to pci_disable_msi() (Mike Snitzer) [1105703]
-- [block] mtip32xx: Reduce the number of unaligned writes to 2 (Mike Snitzer) [1105703]
-- [block] mtip32xx: Correctly handle security locked condition (Mike Snitzer) [1105703]
-- [block] mtip32xx: Make SGL container per-command to eliminate high order dma allocation (Mike Snitzer) [1105703]
-- [block] mtip32xx: dynamically allocate buffer in debugfs functions (Mike Snitzer) [1105703]
-- [block] blk-mq: fix RHEL kABI breakage (Mike Snitzer) [1105204]
-- [block] blk-mq: blk_mq_start_hw_queue() should use blk_mq_run_hw_queue() (Mike Snitzer) [1105204]
-- [block] add support for limiting gaps in SG lists (Mike Snitzer) [1105204]
-- [block] blk-mq: bitmap tag, fix races in bt_get() function (Mike Snitzer) [1105204]
-- [block] blk-mq: bitmap tag, fix race on blk_mq_bitmap_tags::wake_cnt (Mike Snitzer) [1105204]
-- [block] blk-mq: bitmap tag, fix races on shared ::wake_index fields (Mike Snitzer) [1105204]
-- [block] blk_max_size_offset() should check ->max_sectors (Mike Snitzer) [1105204]
-- [block] null_blk: fix softirq completions for queue_mode == 1 (Mike Snitzer) [1105204]
-- [block] blk-mq: merge blk_mq_drain_queue and __blk_mq_drain_queue (Mike Snitzer) [1105204]
-- [block] blk-mq: properly drain stopped queues (Mike Snitzer) [1105204]
-- [block] blk-mq: for_each_* macro correctness (Mike Snitzer) [1105204]
-- [scsi] reintroduce scsi_driver.init_command (Mike Snitzer) [1105204]
-- [scsi] remove scsi_end_request (Mike Snitzer) [1105204]
-- [scsi] explicitly release bidi buffers (Mike Snitzer) [1105204]
-- [scsi] don't reference freed command in scsi_prep_return (Mike Snitzer) [1105204]
-- [scsi] don't reference freed command in scsi_init_sgtable (Mike Snitzer) [1105204]
-- [scsi] add support for per-host cmd pools (Mike Snitzer) [1105204]
-- [scsi] simplify command allocation and freeing a bit (Mike Snitzer) [1105204]
-- [scsi] megaraid: simplify internal command handling (Mike Snitzer) [1105204]
-- [scsi] remove a useless get_put_device pair in scsi_requeue_command (Mike Snitzer) [1105204]
-- [scsi] remove a useless get_put_device pair in scsi_next_command (Mike Snitzer) [1105204]
-- [scsi] remove a useless get_put_device pair in scsi_request_fn (Mike Snitzer) [1105204]
-- [scsi] do not manipulate device reference counts in scsi_get_put_command (Mike Snitzer) [1105204]
-- [scsi] avoid taking host_lock in scsi_run_queue unless nessecary (Mike Snitzer) [1105204]
-- [scsi] avoid useless free_list lock roundtrips (Mike Snitzer) [1105204]
-- [scsi] enable destruction of blocked devices which fail LUN scanning (Mike Snitzer) [1105204]
-- [scsi] Revert: reintroduce scsi_driver.init_command (Mike Snitzer) [1105204]
-- [block] implement an unprep function corresponding directly to prep (Mike Snitzer) [1105204]
-- [scsi] handle command allocation failure in scsi_reset_provider (Mike Snitzer) [1105204]
-- [block] properly stack underlying max_segment_size to DM device (Mike Snitzer) [1105204]
-- [block] remove elv_abort_queue and blk_abort_flushes (Mike Snitzer) [1105204]
-- [block] __elv_next_request() shouldn't call into the elevator if bypassing (Mike Snitzer) [1105204]
-- [block] trace all devices plug operation (Mike Snitzer) [1105204]
-- [block] Reserve only one queue tag for sync IO if only 3 tags are available (Mike Snitzer) [1105204]
-- [block] blk-exec: Cleaning up local variable address returned (Mike Snitzer) [1105204]
-- [block] use __blk_end_request_all to free bios and also call rq->end_io (Mike Snitzer) [1105204]
-- [block] fix RHEL kABI breakage (Mike Snitzer) [1105204]
-- [block] null_blk: fix name and description of 'queue_mode' module parameter (Mike Snitzer) [1105204]
-- [block] all blk-mq requests are tagged (Mike Snitzer) [1105204]
-- [block] bsg: update check for rq based driver for blk-mq (Mike Snitzer) [1105204]
-- [block] blk-mq: add timer in blk_mq_start_request (Mike Snitzer) [1105204]
-- [block] blk-mq: always initialize request->start_time (Mike Snitzer) [1105204]
-- [block] blk-mq: ->timeout should be cleared in blk_mq_rq_ctx_init() (Mike Snitzer) [1105204]
-- [block] blk-mq: don't allow queue entering for a dying queue (Mike Snitzer) [1105204]
-- [block] blk-mq: bump max tag depth to 10K tags (Mike Snitzer) [1105204]
-- [block] add blk_rq_set_block_pc() (Mike Snitzer) [1105204]
-- [block] ensure that bio_add_page() always accepts a page for an empty bio (Mike Snitzer) [1105204]
-- [block] add notion of a chunk size for request merging (Mike Snitzer) [1105204]
-- [block] blk-flush: clear flush_rq's tag in flush_end_io() (Mike Snitzer) [1105204]
-- [block] blk-mq: let blk_mq_tag_to_rq() take blk_mq_tags as the main parameter (Mike Snitzer) [1105204]
-- [block] blk-mq: fix regression from commit 624dbe475416 (Mike Snitzer) [1105204]
-- [block] blk-mq: handle NULL req return from blk_map_request in single queue mode (Mike Snitzer) [1105204]
-- [block] blk-mq: fix sparse warning on missed __percpu annotation (Mike Snitzer) [1105204]
-- [block] blk-mq: fix schedule from atomic context (Mike Snitzer) [1105204]
-- [block] blk-mq: move blk_mq_get_ctx_blk_mq_put_ctx to mq private header (Mike Snitzer) [1105204]
-- [block] blk-mq: push IPI or local end_io decision to __blk_mq_complete_request() (Mike Snitzer) [1105204]
-- [block] blk-mq: remember to start timeout handler for direct queue (Mike Snitzer) [1105204]
-- [block] blk-mq: blk_mq_unregister_hctx() can be static (Mike Snitzer) [1105204]
-- [block] blk-mq: make the sysfs mq/ layout reflect current mappings (Mike Snitzer) [1105204]
-- [block] blk-mq: blk_mq_tag_to_rq should handle flush request (Mike Snitzer) [1105204]
-- [block] blk-mq: request initialization optimizations (Mike Snitzer) [1105204]
-- [block] add queue flag for disabling SG merging (Mike Snitzer) [1105204]
-- [block] blk-mq: remove alloc_hctx and free_hctx methods (Mike Snitzer) [1105204]
-- [block] blk-mq: add file comments and update copyright notices (Mike Snitzer) [1105204]
-- [block] blk-mq: remove blk_mq_alloc_request_pinned (Mike Snitzer) [1105204]
-- [block] blk-mq: do not use blk_mq_alloc_request_pinned in blk_mq_map_request (Mike Snitzer) [1105204]
-- [block] blk-mq: remove blk_mq_wait_for_tags (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize request in __blk_mq_alloc_request (Mike Snitzer) [1105204]
-- [block] blk-mq: merge blk_mq_alloc_reserved_request into blk_mq_alloc_request (Mike Snitzer) [1105204]
-- [block] blk-mq: add helper to insert requests from irq context (Mike Snitzer) [1105204]
-- [block] blk-mq: remove stale comment for blk_mq_complete_request() (Mike Snitzer) [1105204]
-- [block] blk-mq: allow non-softirq completions (Mike Snitzer) [1105204]
-- [block] blk-mq: pass in suggested NUMA node to ->alloc_hctx() (Mike Snitzer) [1105204]
-- [block] only allocate/free mq_usage_counter in blk-mq (Mike Snitzer) [1105204]
-- [block] blk-mq: avoid code duplication (Mike Snitzer) [1105204]
-- [block] blk-mq: fix leak of hctx->ctx_map (Mike Snitzer) [1105204]
-- [block] blk-mq: idle all hardware contexts before freeing a queue (Mike Snitzer) [1105204]
-- [block] blk-mq: allow setting of per-request timeouts (Mike Snitzer) [1105204]
-- [block] blk-mq: export blk_mq_tag_busy_iter (Mike Snitzer) [1105204]
-- [block] blk-mq: split make request handler for multi and single queue (Mike Snitzer) [1105204]
-- [block] blk-mq: save memory by freeing requests on unused hardware queues (Mike Snitzer) [1105204]
-- [block] blk-mq: allow the hctx cpu hotplug notifier to return errors (Mike Snitzer) [1105204]
-- [block] blk-mq: Micro-optimize blk_queue_nomerges() check (Mike Snitzer) [1105204]
-- [block] Enable sysfs nomerge control for I/O requests in the plug list (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize q->nr_requests after calling blk_queue_make_request() (Mike Snitzer) [1105204]
-- [block] blk-mq: allow changing of queue depth through sysfs (Mike Snitzer) [1105204]
-- [block] blk-mq: switch ctx pending map to the sparser blk_align_bitmap (Mike Snitzer) [1105204]
-- [block] blk-mq: move the cache friendly bitmap type of out blk-mq-tag (Mike Snitzer) [1105204]
-- [block] blk-mq: improve support for shared tags maps (Mike Snitzer) [1105204]
-- [block] blk-mq: cleanup blk_mq_init_tags (Mike Snitzer) [1105204]
-- [block] blk-mq: select random tag betweet 0 and (depth - 1) (Mike Snitzer) [1105204]
-- [block] blk-mq: remove barrier in bt_clear_tag() (Mike Snitzer) [1105204]
-- [block] blk-mq: use clear_bit_unlock in bt_clear_tag() (Mike Snitzer) [1105204]
-- [block] blk-mq: fix race in IO start accounting (Mike Snitzer) [1105204]
-- [block] blk-mq: use sparser tag layout for lower queue depth (Mike Snitzer) [1105204]
-- [block] blk-mq: implement new and more efficient tagging scheme (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize struct request fields individually (Mike Snitzer) [1105204]
-- [block] blk-mq: update a hotplug comment for grammar (Mike Snitzer) [1105204]
-- [block] blk-mq: add basic round-robin of what CPU to queue workqueue work on (Mike Snitzer) [1105204]
-- [block] blk-mq: remove extra requeue trace (Mike Snitzer) [1105204]
-- [block] null_blk: fix use after free (Mike Snitzer) [1105204]
-- [block] blk-mq: refactor request insertion_merging (Mike Snitzer) [1105204]
-- [block] blk-mq: remove debug BUG_ON() when draining software queues (Mike Snitzer) [1105204]
-- [block] blk-mq: fix waiting for reserved tags (Mike Snitzer) [1105204]
-- [block] ensure that the timer is always added (Mike Snitzer) [1105204]
-- [block] fold __blk_add_timer into blk_add_timer (Mike Snitzer) [1105204]
-- [block] blk-mq: respect rq_affinity (Mike Snitzer) [1105204]
-- [block] blk-mq: fix race with timeouts and requeue events (Mike Snitzer) [1105204]
-- [block] Revert: blk-mq: initialize req->q in allocation (Mike Snitzer) [1105204]
-- [block] blk-mq: fix leak of set->tags (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize req->q in allocation (Mike Snitzer) [1105204]
-- [block] blk-mq: user (1 << order) to implement order_to_size() (Mike Snitzer) [1105204]
-- [block] blk-mq: fix allocation of set->tags (Mike Snitzer) [1105204]
-- [block] blk-mq: free hctx->ctx_map when init failed (Mike Snitzer) [1105204]
-- [block] export blk_finish_request (Mike Snitzer) [1105204]
-- [block] blk-mq: rename mq_flush_work struct request member (Mike Snitzer) [1105204]
-- [block] blk-mq: add blk_mq_requeue_request (Mike Snitzer) [1105204]
-- [block] blk-mq: add blk_mq_start_hw_queues (Mike Snitzer) [1105204]
-- [block] blk-mq: add blk_mq_delay_queue (Mike Snitzer) [1105204]
-- [block] blk-mq: add async parameter to blk_mq_start_stopped_hw_queues (Mike Snitzer) [1105204]
-- [block] blk-mq: bidi support (Mike Snitzer) [1105204]
-- [block] blk-mq: allow drivers to hook into I_O completion (Mike Snitzer) [1105204]
-- [block] blk-mq: kill preempt disable_enable in blk_mq_work_fn() (Mike Snitzer) [1105204]
-- [block] blk-mq: don't use preempt_count() to check for right CPU (Mike Snitzer) [1105204]
-- [block] blk-mq: split out tag initialization, support shared tags (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize request on allocation (Mike Snitzer) [1105204]
-- [block] blk-mq: add ->init_request and ->exit_request methods (Mike Snitzer) [1105204]
-- [block] blk-mq: make ->flush_rq fully transparent to drivers (Mike Snitzer) [1105204]
-- [block] blk-mq: do not initialize req->special (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize resid_len (Mike Snitzer) [1105204]
-- [block] blk-mq: simplify blk_mq_hw_sysfs_cpus_show() (Mike Snitzer) [1105204]
-- [block] blk-mq: ensure that hardware queues are always run on the mapped CPUs (Mike Snitzer) [1105204]
-- [block] add kblockd_schedule_delayed_work_on() (Mike Snitzer) [1105204]
-- [block] remove 'q' parameter from kblockd_schedule_*_work() (Mike Snitzer) [1105204]
-- [block] blk-mq: fix potential stall during CPU unplug with IO pending (Mike Snitzer) [1105204]
-- [block] remove dead code in scsi_ioctl:blk_verify_command (Mike Snitzer) [1105204]
-- [block] only calculate part_in_flight() once (Mike Snitzer) [1105204]
-- [block] relax when to modify the timeout timer (Mike Snitzer) [1105204]
-- [char] random: export add_disk_randomness (Mike Snitzer) [1105204]
-- [block] blk-mq: add REQ_SYNC early (Mike Snitzer) [1105204]
-- [block] blk-mq: Make blk_mq_cpu_notify_lock a raw spinlock (Mike Snitzer) [1105204]
-- [block] blk-mq: don't dump CPU -> hw queue map on driver load (Mike Snitzer) [1105204]
-- [block] blk-mq: fix wrong usage of hctx->state vs hctx->flags (Mike Snitzer) [1105204]
-- [block] blk-mq: allow blk_mq_init_commands() to return failure (Mike Snitzer) [1105204]
-- [block] fix regression with block enabled tagging (Mike Snitzer) [1105204]
-- [block] Stop abusing rq->csd.list in blk-softirq (Mike Snitzer) [1105204]
-- [scsi] Make sure cmd_flags are 64-bit (Mike Snitzer) [1109271]
-- [block] Replace __get_cpu_var uses (Mike Snitzer) [1105204]
-- [block] Remove useless IPI struct initialization (Mike Snitzer) [1105204]
-- [block] Stop abusing csd.list for fifo_time (Mike Snitzer) [1105204]
-- [block] blktrace: fix accounting of partially completed requests (Mike Snitzer) [1105204]
-- [fs] bio: don't write "bio: create slab" messages to syslog (Mike Snitzer) [1105204]
-- [block] make __blkdev_issue_zeroout static (Mike Snitzer) [1105204]
-- [block] Do not call sector_div() with a 64-bit divisor (Mike Snitzer) [1105204]
-- [block] add cond_resched() to potentially long running ioctl discard loop (Mike Snitzer) [1105204]
-- [kernel] smp: Rename __smp_call_function_single() to smp_call_function_single_async() (Prarit Bhargava) [1105192]
-- [kernel] smp: Remove wait argument from __smp_call_function_single() (Prarit Bhargava) [1105192]
-- [kernel] smp: Move __smp_call_function_single() below its safe version (Prarit Bhargava) [1105192]
-- [kernel] smp: Consolidate the various smp_call_function_single() declensions (Prarit Bhargava) [1105192]
-- [kernel] smp: Teach __smp_call_function_single() to check for offline cpus (Prarit Bhargava) [1105192]
-- [kernel] smp: Iterate functions through llist_for_each_entry_safe() (Prarit Bhargava) [1105192]
-- [kernel] llist: lock-less list, Add llist_for_each_entry_safe() (Prarit Bhargava) [1105192]
-- [kernel] smp: remove cpumask_ipi (Prarit Bhargava) [1105192]
-- [kernel] smp: use lockless list for smp_call_function_single (Prarit Bhargava) [1105192]
-- [kernel] smp: fix generic_exec_single indentation (Prarit Bhargava) [1105192]
-- [kernel] smp: quit unconditionally enabling irqs in on_each_cpu_mask() (Prarit Bhargava) [1105192]
-- [kernel] smp: free related resources when failure occurs in hotplug_cfd() (Prarit Bhargava) [1105192]
-- [kernel] smp/generic-ipi/locking: Fix misleading smp_call_function_any() description (Prarit Bhargava) [1105192]
-- [kernel] smp/generic-ipi: Kill unnecessary variable - csd_flags (Prarit Bhargava) [1105192]
-- [kernel] init: remove __cpuinit sections from the kernel (Prarit Bhargava) [1105893]
-- [block] blk-mq: remove newly added instances of __cpuinit (Prarit Bhargava) [1105893]
-- [misc] delete __cpuinit usage from all remaining drivers files (Prarit Bhargava) [1105893]
-- [kernel] delete __cpuinit usage from all core kernel files (Prarit Bhargava) [1105893]
-- [block] delete __cpuinit usage from all block files (Prarit Bhargava) [1105893]
-- [acpi] delete __cpuinit usage from all acpi files (Prarit Bhargava) [1105893]
-- [kernel] rcu: delete __cpuinit usage from all rcu files (Prarit Bhargava) [1105893]
-- [net] delete __cpuinit usage from all net files (Prarit Bhargava) [1105893]
-- [hwmon] delete __cpuinit usage from all hwmon files (Prarit Bhargava) [1105893]
-- [clocksource] delete __cpuinit usage from all related files (Prarit Bhargava) [1105893]
-- [x86] delete __cpuinit usage from all x86 files (Prarit Bhargava) [1105893]
-- [s390] delete __cpuinit usage from all s390 files (Prarit Bhargava) [1105893]
-- [powerpc] Delete __cpuinit usage from all users (Prarit Bhargava) [1105893]
-
-* Wed Jul 16 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-135.el7]
-- [pci] hotplug: Avoid warning when _ADR not present (Myron Stowe) [1114228]
-- [pci] hotplug/acpi: Drop unused acpiphp_debug declaration (Myron Stowe) [1114228]
-- [acpi] scan: Set flags.match_driver in acpi_bus_scan_fixed() (Myron Stowe) [1114228]
-- [acpi] pci_root: Clear driver_data before failing enumeration (Myron Stowe) [1114228]
-- [acpi] hotplug: Fix PCI host bridge hot removal (Myron Stowe) [1114228]
-- [acpi] hotplug: Fix acpi_bus_get_device() return value check (Myron Stowe) [1114228]
-- [acpi] hotplug: Consolidate deferred execution of ACPI hotplug routines (Myron Stowe) [1114228]
-- [acpi] hotplug: Do not execute "insert in progress" _OST (Myron Stowe) [1114228]
-- [acpi] hotplug: Carry out PCI root eject directly (Myron Stowe) [1114228]
-- [acpi] hotplug: Merge device hot-removal routines (Myron Stowe) [1114228]
-- [acpi] hotplug: Make acpi_bus_hot_remove_device() internal (Myron Stowe) [1114228]
-- [acpi] hotplug: Simplify device ejection routines (Myron Stowe) [1114228]
-- [acpi] hotplug: Fix handle_root_bridge_removal() (Myron Stowe) [1114228]
-- [acpi] hotplug: Refuse to hot-remove all objects with disabled hotplug (Myron Stowe) [1114228]
-- [acpi] scan: Start matching drivers after trying scan handlers (Myron Stowe) [1114228]
-- [acpi] Remove acpi_pci_slot_init() headers from internal.h (Myron Stowe) [1114228]
-- [pci] Revert: acpi / hotplug / pci: Avoid doing too much for spurious notifies (Myron Stowe) [1114228]
-- [base] Release device_hotplug_lock when store_mem_state returns EINVAL (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop WARN_ON() from acpiphp_enumerate_slots() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Fix error code path in acpiphp_enumerate_slots() (Myron Stowe) [1114228]
-- [acpi] memhotplug: Use defined marco METHOD_NAME__STA (Myron Stowe) [1114228]
-- [acpi] hotplug: Use kobject_init_and_add() instead of _init() and _add() (Myron Stowe) [1114228]
-- [acpi] hotplug: Don't set kobject parent pointer explicitly (Myron Stowe) [1114228]
-- [acpi] hotplug: Set kobject name via kobject_add(), not kobject_set_name() (Myron Stowe) [1114228]
-- [base] hotplug: Remove cpu_hotplug_driver_lock() (Myron Stowe) [1114228]
-- [x86] hotplug: Disable ARCH_CPU_PROBE_RELEASE on x86 (Myron Stowe) [1114228]
-- [x86] hotplug: Add hotplug lock to missing places (Myron Stowe) [1114228]
-- [x86] hotplug: Fix online state in cpu0 debug interface (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Avoid parent bus rescans on spurious device checks (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Use _OST to notify firmware about notify status (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Avoid doing too much for spurious notifies (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Don't trim devices before scanning the namespace (Myron Stowe) [1114228]
-- [kernel] power/hibernate/memory_hotplug: Rework mutual exclusion (Myron Stowe) [1114228]
-- [kernel] power/hibernate: Create memory bitmaps after freezing user space (Myron Stowe) [1114228]
-- [acpi] scan: Change ordering of locks for device hotplug (Myron Stowe) [1114228]
-- [acpi] hotplug: Remove containers synchronously (Myron Stowe) [1114228]
-- [base] core/acpi: Avoid device hot remove locking issues (Myron Stowe) [1114228]
-- [base] introduce help macro to_memory_block (Myron Stowe) [1114228]
-- [base] use standard device online/offline for state change (Myron Stowe) [1114228]
-- [base] refactor add_memory_section() to add_memory_block() (Myron Stowe) [1114228]
-- [base] remove improper get/put in add_memory_section() (Myron Stowe) [1114228]
-- [base] reduce add_memory_section() for boot-time only (Myron Stowe) [1114228]
-- [base] unshare add_memory_section() from hotplug (Myron Stowe) [1114228]
-- [base] use device get/put functions (Myron Stowe) [1114228]
-- [base] remove unneeded variable (Myron Stowe) [1114228]
-- [base] move mutex lock out of add_memory_section() (Myron Stowe) [1114228]
-- [acpi] sleep: Hold acpi_scan_lock over system PM transitions (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Fix NULL pointer dereference in cleanup_bridge() (Myron Stowe) [1114228]
-- [base] cpu: Check if NUMA node is valid before bringing CPU up (Myron Stowe) [1114228]
-- [pci] acpi: Use dev_dbg() instead of dev_info() in acpi_pci_set_power_state() (Myron Stowe) [1114228]
-- [acpi] sleep: Introduce acpi_os_prepare_extended_sleep() for extended sleep (Myron Stowe) [1114228]
-- [base] core: replace strict_strto*() with kstrto*() (Myron Stowe) [1114228]
-- [acpi] dock: fix error return code in dock_add() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Get rid of check_sub_bridges() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Clean up bridge_mutex usage (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Redefine enable_device() and disable_device() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Sanitize acpiphp_get_(latch) (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Get rid of unused constants in acpiphp.h (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Check for new devices on enabled slots (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Allow slots without new devices to be rescanned (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Do not check SLOT_ENABLED in enable_device() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Do not exectute _PS0 and _PS3 directly (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Do not queue up event handling work items in vain (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Consolidate slot disabling and ejecting (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop redundant checks from check_hotplug_bridge() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Rework namespace scanning and trimming routines (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Store parent in functions and bus in slots (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop handle field from struct acpiphp_bridge (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop handle field from struct acpiphp_func (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Embed function struct into struct acpiphp_context (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop flags field from struct acpiphp_bridge (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop sun field from struct acpiphp_slot (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Register all devices under the given bridge (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Refactor slot allocation code in register_slot() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop func field from struct acpiphp_bridge (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Merge hotplug event handling functions (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Pass hotplug context objects to event handlers (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Rework acpiphp_handle_to_bridge() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Unified notify handler for hotplug events (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Hotplug context objects for bridges and functions (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Always return success after adding a function (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Consolidate acpiphp_enumerate_slots() (Myron Stowe) [1114228]
-- [acpi] pci: Make bus registration and unregistration symmetric (Myron Stowe) [1114228]
-- [x86] pci: prevent re-allocation of already existing bridge and ROM resource (Myron Stowe) [1114228]
-- [acpi] dock: Drop unnecessary local variable from dock_add() (Myron Stowe) [1114228]
-- [acpi] dock/pci: Drop ACPI dock notifier chain (Myron Stowe) [1114228]
-- [acpi] dock: Do not check CONFIG_ACPI_DOCK_MODULE (Myron Stowe) [1114228]
-- [acpi] dock: Do not leak memory on falilures to add a dock station (Myron Stowe) [1114228]
-- [acpi] Drop ACPI bus notifier call chain (Myron Stowe) [1114228]
-- [acpi] dock: Rework the handling of notifications (Myron Stowe) [1114228]
-- [acpi] dock: Simplify dock_init_hotplug() and dock_release_hotplug() (Myron Stowe) [1114228]
-- [acpi] dock: Walk list in reverse order during removal of devices (Myron Stowe) [1114228]
-- [acpi] dock: Rework and simplify find_dock_devices() (Myron Stowe) [1114228]
-- [acpi] dock: Drop the hp_lock mutex from struct dock_station (Myron Stowe) [1114228]
-- [acpi] simplify acpiphp driver with new helper functions (Myron Stowe) [1114228]
-- [acpi] simplify dock driver with new helper functions (Myron Stowe) [1114228]
-- [acpi] Export acpi_(bay) (Myron Stowe) [1114228]
-- [acpi] introduce two helper functions for _EJ0 and _LCK (Myron Stowe) [1114228]
-- [acpi] introduce helper function acpi_execute_simple_method() (Myron Stowe) [1114228]
-- [acpi] introduce helper function acpi_has_method() (Myron Stowe) [1114228]
-- [acpi] dock: simplify dock_create_acpi_device() (Myron Stowe) [1114228]
-- [acpi] dock: mark initialization functions with __init (Myron Stowe) [1114228]
-- [acpi] dock: drop redundant spin lock in dock station object (Myron Stowe) [1114228]
-- [acpi] dock: avoid initializing acpi_dock_notifier_list multiple times (Myron Stowe) [1114228]
-- [base] Use attribute groups to create sysfs memory files (Myron Stowe) [1114228]
-- [mm] hugetlb: add support for gigantic page allocation at runtime (Luiz Capitulino) [996763]
-- [mm] hugetlb: move helpers up in the file (Luiz Capitulino) [996763]
-- [mm] hugetlb: update_and_free_page(), don't clear PG_reserved bit (Luiz Capitulino) [996763]
-- [mm] hugetlb: add hstate_is_gigantic() (Luiz Capitulino) [996763]
-- [mm] hugetlb: fix and clean-up node iteration code to alloc or free (Luiz Capitulino) [996763]
-- [mm] dma-contiguous: clean source code and prepare for device tree (Luiz Capitulino) [996763]
-- [mm] cma: Move dma contiguous changes into a seperate config (Luiz Capitulino) [996763]
-- [thermal] intel_powerclamp: Fix cstate counter detection (Steve Best) [1103376]
-- [thermal] Tidy up error handling in powerclamp_init (Steve Best) [1103376]
-- [thermal] intel_powerclamp: Add newer CPU models (Steve Best) [1103376]
-- [security] selinux: Increase ebitmap_node size for 64-bit configuration (Paul Moore) [922752]
-- [security] selinux: Reduce overhead of mls_level_isvalid() function call (Paul Moore) [922752]
-- [powerpc] mm: fix ".__node_distance" undefined (David Milburn) [1081734]
-- [block] nvme: Retry failed commands with non-fatal error (David Milburn) [1081734]
-- [block] nvme: Fix divide-by-zero in nvme_trans_io_get_num_cmds (David Milburn) [1081734]
-- [block] nvme: Add getgeo to block ops (David Milburn) [1081734]
-- [block] nvme: Start-stop nvme_thread during device add-remove (David Milburn) [1081734]
-- [block] nvme: Make I/O timeout a module parameter (David Milburn) [1081734]
-- [block] nvme: CPU hot plug notification (David Milburn) [1081734]
-- [block] nvme: per-cpu io queues (David Milburn) [1081734]
-- [block] nvme: Replace DEFINE_PCI_DEVICE_TABLE (David Milburn) [1081734]
-- [block] nvme: IOCTL path RCU protect queue access (David Milburn) [1081734]
-- [block] nvme: RCU protected access to io queues (David Milburn) [1081734]
-- [block] nvme: Initialize device reference count earlier (David Milburn) [1081734]
-- [scsi] fnic: fix broken FIP discovery by initializing multicast address (Chris Leech) [1100078]
-- [scsi] libfcoe: Make fcoe_sysfs optional / fix fnic NULL exception (Chris Leech) [1100078]
-
-* Mon Jul 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-134.el7]
-- [fs] nfs: populate ->net in mount data when remounting (Steve Dickson) [1113248]
-- [fs] nfs: fix lockup caused by pnfs_generic_pg_test (Steve Dickson) [1113248]
-- [fs] nfs: Fix typo in dprintk (Steve Dickson) [1113248]
-- [fs] nfs: Comment is now wrong and redundant to code (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Disconnect on registration failure (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove BUG_ON() call sites (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Avoid deadlock when credit window is reset (Steve Dickson) [1113248]
-- [net] sunrpc: Move congestion window constants to header file (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Reset connection timeout after successful reconnect (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Use macros for reconnection timeout constants (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Allocate missing pagelist (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove Tavor MTU setting (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Ensure ia->ri_id->qp is not NULL when reconnecting (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Reduce the number of hardway buffer allocations (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Limit work done by completion handler (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Reduce calls to ib_poll_cq() in completion handlers (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Reduce lock contention in completion handlers (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Split the completion queue (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Make rpcrdma_ep_destroy() return void (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Simplify rpcrdma_deregister_external() synopsis (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: mount reports "Invalid mount option" if memreg mode not supported (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Fall back to MTHCAFMR when FRMR is not supported (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove REGISTER memory registration mode (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove MEMWINDOWS registration modes (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove BOUNCEBUFFERS memory registration mode (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: RPC/RDMA must invoke xprt_wake_pending_tasks() in process context (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Fix for FMR leaks (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: mind the device's max fast register page list depth (Steve Dickson) [1113248]
-- [fs] nfs: Push the file layout driver into a subdirectory (Steve Dickson) [1113248]
-- [fs] nfs: Handle allocation errors correctly in objlayout_alloc_layout_hdr() (Steve Dickson) [1113248]
-- [fs] nfs: Handle allocation errors correctly in filelayout_alloc_layout_hdr() (Steve Dickson) [1113248]
-- [fs] nfs: Use error handler on failed GETATTR with successful OPEN (Steve Dickson) [1113248]
-- [fs] nfs: Fix a potential busy wait in nfs_page_group_lock (Steve Dickson) [1113248]
-- [fs] nfs: Fix error handling in __nfs_pageio_add_request (Steve Dickson) [1113248]
-- [net] sunrpc: suppress allocation warning in rpc_malloc() (Steve Dickson) [1113248]
-- [fs] nfs: support page groups in nfs_read_completion (Steve Dickson) [1113248]
-- [fs] nfs: support non page aligned layouts (Steve Dickson) [1113248]
-- [fs] nfs: allow non page aligned pnfs layout segments (Steve Dickson) [1113248]
-- [fs] nfs: support multiple verfs per direct req (Steve Dickson) [1113248]
-- [fs] nfs: remove data list from pgio header (Steve Dickson) [1113248]
-- [fs] nfs: use > 1 request to handle bsize < PAGE_SIZE (Steve Dickson) [1113248]
-- [fs] nfs: chain calls to pg_test (Steve Dickson) [1113248]
-- [fs] nfs: allow coalescing of subpage requests (Steve Dickson) [1113248]
-- [fs] nfs: clean up filelayout_alloc_commit_info (Steve Dickson) [1113248]
-- [fs] nfs: page group support in nfs_mark_uptodate (Steve Dickson) [1113248]
-- [fs] nfs: page group syncing in write path (Steve Dickson) [1113248]
-- [fs] nfs: page group syncing in read path (Steve Dickson) [1113248]
-- [fs] nfs: add support for multiple nfs reqs per page (Steve Dickson) [1113248]
-- [fs] nfs: call nfs_can_coalesce_requests for every req (Steve Dickson) [1113248]
-- [fs] nfs: modify pg_test interface to return size_t (Steve Dickson) [1113248]
-- [fs] nfs: remove unused arg from nfs_create_request (Steve Dickson) [1113248]
-- [fs] nfs: clean up PG_* flags (Steve Dickson) [1113248]
-- [fs] nfs: fix race in filelayout commit path (Steve Dickson) [1113248]
-- [fs] nfs: Create a common nfs_pageio_ops struct (Steve Dickson) [1113248]
-- [fs] nfs: Create a common generic_pg_pgios() (Steve Dickson) [1113248]
-- [fs] nfs: Create a common multiple_pgios() function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common initiate_pgio() function (Steve Dickson) [1113248]
-- [fs] nfs: Create a generic_pgio function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common pgio_error function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common rpcsetup function for reads and writes (Steve Dickson) [1113248]
-- [fs] nfs: Create a common rpc_call_ops struct (Steve Dickson) [1113248]
-- [fs] nfs: Create a common nfs_pgio_result_common function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common pgio_rpc_prepare function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common rw_header_alloc and rw_header_free function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common pgio_alloc and pgio_release function (Steve Dickson) [1113248]
-- [fs] nfs: Move the write verifier into the nfs_pgio_header (Steve Dickson) [1113248]
-- [fs] nfs: Create a common read and write header struct (Steve Dickson) [1113248]
-- [fs] nfs: Create a common read and write data struct (Steve Dickson) [1113248]
-- [fs] nfs: Create a common results structure for reads and writes (Steve Dickson) [1113248]
-- [fs] nfs: Create a common argument structure for reads and writes (Steve Dickson) [1113248]
-- [fs] nfs: remove ->read_pageio_init from rpc ops (Steve Dickson) [1113248]
-- [fs] nfs: remove ->write_pageio_init from rpc ops (Steve Dickson) [1113248]
-- [fs] nfs: commit layouts in fdatasync (Steve Dickson) [1113248]
-- [net] sunrpc: Fix a module reference issue in rpcsec_gss (Steve Dickson) [1113248]
-- [fs] nfs: Don't ignore suid/sgid bit changes after a successful write (Steve Dickson) [1113248]
-- [fs] nfs: Don't declare inode uptodate unless all attributes were checked (Steve Dickson) [1113248]
-- [fs] nfs: Fix memroy leak for double mounts (Steve Dickson) [1113248]
-- [fs] nfs: pass string length to pr_notice message about readdir loops (Steve Dickson) [1111170]
-- [net] sunrpc: rpc_restart_call/rpc_restart_call_prepare should clear task->tk_status (Steve Dickson) [1111170]
-- [net] sunrpc: Don't let rpc_delay() clobber non-timeout errors (Steve Dickson) [1111170]
-- [net] sunrpc: Ensure call_status() deals correctly with SOFTCONN tasks (Steve Dickson) [1111170]
-- [fs] nfs: Clear the open state flags if the new stateid does not match (Steve Dickson) [1111170]
-- [fs] nfs: Use correct locking when updating nfs4_state in nfs4_close_done (Steve Dickson) [1111170]
-- [fs] nfs: Ensure that we free existing layout segments if we get a new layout (Steve Dickson) [1111170]
-- [fs] nfs: Minor optimisation in get_layout_by_fh_locked() (Steve Dickson) [1111170]
-- [fs] nfs: Ensure that the layout recall callback matches layout stateids (Steve Dickson) [1111170]
-- [fs] nfs: Don't update the open stateid unless it is newer than the old one (Steve Dickson) [1111170]
-- [fs] nfs: Fix wraparound issues in pnfs_seqid_is_newer() (Steve Dickson) [1111170]
-- [fs] nfs: Be more aggressive in using readdirplus for 'ls -l' situations (Steve Dickson) [1111170]
-- [net] sunrpc: RPC callbacks may be split across several TCP segments (Steve Dickson) [1111170]
-- [net] sunrpc: Fix oops when trace sunrpc_task events in nfs client (Steve Dickson) [1111170]
-- [fs] nfs: Fail the truncate() if the lock/open stateid is invalid (Steve Dickson) [1111170]
-- [fs] nfs: Fail data server I/O if stateid represents a lost lock (Steve Dickson) [1111170]
-- [fs] nfs: Fix the return value of nfs4_select_rw_stateid (Steve Dickson) [1111170]
-- [fs] nfs: nfs4_stateid_is_current should return 'true' for an invalid stateid (Steve Dickson) [1111170]
-- [fs] nfs: Fix a delegation callback race (Steve Dickson) [1111170]
-- [fs] nfs: Fix another nfs4_sequence corruptor (Steve Dickson) [1111170]
-- [fs] nfsd: fix bug for readdir of pseudofs ("J. Bruce Fields") [1109733 1111719]
-- [fs] nfsd: Don't hand out delegations for 30 seconds after recalling them ("J. Bruce Fields") [1111227 1111719]
-- [fs] nfsd: fix FREE_STATEID lockowner leak ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't halt scanning the DRC LRU list when there's an RC_INPROG entry ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill READ64 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill READ32 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: simplify server xdr->next_page use ("J. Bruce Fields") [1111719]
-- [fs] nfsd: hash deleg stateid only on successful nfs4_set_delegation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: rename recall_lock to state_lock ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove unneeded zeroing of fields in nfsd4_proc_compound ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix setting of NFS4_OO_CONFIRMED in nfsd4_open ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use recall_lock for delegation hashing ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix laundromat next-run-time calculation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: make nfsd4_encode_fattr static ("J. Bruce Fields") [1111719]
-- [net] sunrpc: Remove using of dprintk with KERN_WARNING ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove unused function nfsd_read_file ("J. Bruce Fields") [1111719]
-- [fs] nfsd: getattr for FATTR4_WORD0_FILES_AVAIL needs the statfs buffer ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Error out when getting more than one fsloc/secinfo/uuid ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Using type of uint32_t for ex_nflavors instead of int ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Add missing comment of "expiry" in expkey_parse() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Remove typedef of svc_client and svc_export in export.c ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Cleanup unneeded including net/ipv6.h ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove unneeded linux/user_namespace.h include ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Adds macro EX_UUID_LEN for exports uuid's length ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Helper function for parsing uuid ("J. Bruce Fields") [1111719]
-- [fs] nfsd:Avoid NULL reference or double free in nfsd4_fslocs_free() ("J. Bruce Fields") [1109733 1111719]
-- [fs] nfsd: better reservation of head space for krb5 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill write32, write64 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill WRITEMEM ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill WRITE64 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill WRITE32 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: really fix nfs4err_resource in 4.1 case ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow exotic read compounds ("J. Bruce Fields") [1111719]
-- [fs] nfsd: more read encoding cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: read encoding cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: separate splice and readv cases ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd_vfs_read doesn't use file handle parameter ("J. Bruce Fields") [1111719]
-- [fs] nfsd: turn off zero-copy-read in exotic cases ("J. Bruce Fields") [1111719]
-- [fs] nfsd: estimate sequence response size ("J. Bruce Fields") [1111719]
-- [fs] nfsd: better estimate of getattr response size ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't treat readlink like a zero-copy operation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: enforce rd_dircount ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow large readdirs ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use session limits to release send buffer reservation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: adjust buflen to session channel limit ("J. Bruce Fields") [1111719]
-- [net] sunrpc: define xdr_restrict_buflen ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix buflen calculation after read encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_check_resp_size should check against whole buffer ("J. Bruce Fields") [1111719]
-- [fs] nfsd: minor encode_read cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: more precise nfsd4_max_reply ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't try to encode conflicting owner if low on space ("J. Bruce Fields") [1111719]
-- [fs] nfsd: convert 4.1 replay encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow encoding across page boundaries ("J. Bruce Fields") [1023319 1111719]
-- [fs] nfsd: size-checking cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove redundant encode buffer size checking ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_check_resp_size needn't recalculate length ("J. Bruce Fields") [1111719]
-- [fs] nfsd: reserve space before inlining 0-copy pages ("J. Bruce Fields") [1111719]
-- [fs] nfsd: teach encoders to handle reserve_space failures ("J. Bruce Fields") [1111719]
-- [fs] nfsd: "backfill" using write_bytes_to_xdr_buf ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use xdr_truncate_encode ("J. Bruce Fields") [1111719]
-- [net] sunrpc: xdr_truncate_encode ("J. Bruce Fields") [1111719]
-- [fs] nfsd: keep xdr buf length updated ("J. Bruce Fields") [1111719]
-- [fs] nfsd: no need for encode_compoundres to adjust lengths ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove ADJUST_ARGS ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use xdr_stream throughout compound encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use xdr_reserve_space in attribute encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow space for final error return ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix encoding of out-of-space replies ("J. Bruce Fields") [1111719]
-- [fs] nfsd: reserve head space for krb5 integ/priv info ("J. Bruce Fields") [1111719]
-- [fs] nfsd: move proc_compound xdr encode init to helper ("J. Bruce Fields") [1111719]
-- [fs] nfsd: tweak nfsd4_encode_getattr to take xdr_stream ("J. Bruce Fields") [1111719]
-- [fs] nfsd: embed xdr_stream in nfsd4_compoundres ("J. Bruce Fields") [1111719]
-- [fs] nfsd: decoding errors can still be cached and require space ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix write reply size estimate ("J. Bruce Fields") [1111719]
-- [fs] nfsd: read size estimate should include padding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow larger 4.1 session drc slots ("J. Bruce Fields") [1111719]
-- [fs] nfsd: READ, READDIR, etc., are idempotent ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Only set PF_LESS_THROTTLE when really needed ("J. Bruce Fields") [1111719]
-- [net] sunrpc: track whether a request is coming from a loop-back interface ("J. Bruce Fields") [1111719]
-- [net] sunrpc: Fix a module reference leak in svc_handle_xprt ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Ignore client's source port on RDMA transports ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove nfsd4_free_slab ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Remove assignments inside conditions ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix delegation cleanup on error ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Don't clear SUID/SGID after root writing data ("J. Bruce Fields") [1111719]
-- [fs] nfsd: warn on finding lockowner without stateid's ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove lockowner when removing lock stateid ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix corruption on setting an ACL ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Get rid of empty function nfs4_state_init ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Use simple_read_from_buffer for coping data to userspace ("J. Bruce Fields") [1111719]
-- [fs] nfsd: clean up fh_auth usage ("J. Bruce Fields") [1111719]
-- [fs] nfsd: cleanup unneeded including linux/export.h ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Clean up nfs4_preprocess_stateid_op ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Mark nfs4_free_lockowner and nfs4_free_openowner as static functions ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove <linux/nfsd/debug.h> ("J. Bruce Fields") [1111719]
-- [fs] nfsd: move <linux/nfsd/stats.h> to fs/nfsd ("J. Bruce Fields") [1111719]
-- [fs] nfsd: move <linux/nfsd/export.h> to fs/nfsd ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove <linux/nfsd/nfsfh.h> ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Remove 'inline' designation for free_client() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: call rpc_destroy_wait_queue() from free_client() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Move default initialisers from create_client() to alloc_client() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: set timeparms.to_maxval in setup_callback_client ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't create unnecessary mask acl ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't return high mode bits" ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix memory leak in nfsd4_encode_fattr() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: check passed socket's net matches NFSd superblock's one ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Check rpc_xprt out of xs_setup_bc_tcp ("J. Bruce Fields") [1111719]
-- [net] sunrpc: New helper for creating client with rpc_xprt ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Free backchannel xprt in bc_destroy ("J. Bruce Fields") [1111719]
-- [net] sunrpc: fix memory leak of peer addresses in XPRT ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Clear wcc data between compound ops ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Don't return NFS4ERR_STALE_STATEID for NFSv4.1+ ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix setclientid encode size ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove redundant check from nfsd4_check_resp_size ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use more generous NFS4_ACL_MAX ("J. Bruce Fields") [1111719]
-- [fs] nfsd: minor nfsd4_replay_cache_entry cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_replay_cache_entry should be static ("J. Bruce Fields") [1111719]
-- [fs] nfsd: update comments with obsolete function name ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Using free_conn free connection ("J. Bruce Fields") [1111719]
-- [fs] nfsd: typo in nfsd_rename comment ("J. Bruce Fields") [1111719]
-- [fs] nfsd: simplify saved/current fh uses in nfsd4_proc_compound ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Traverse unconfirmed client through hash-table ("J. Bruce Fields") [1111719]
-- [net] svcrpc: explicitly reject compounds that are not padded out to 4-byte multiple ("J. Bruce Fields") [1111719]
-- [fs] nfsd: notify_change needs elevated write count ("J. Bruce Fields") [1111719 1115034]
-- [fs] nfsd: fix test_stateid error reply encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: leave reply buffer space for failed setattr ("J. Bruce Fields") [1111719]
-- [fs] nfsd: make set of large acl return efbig, not resource ("J. Bruce Fields") [1111719]
-- [fs] nfsd: session needs room for following op to error out ("J. Bruce Fields") [1111719]
-- [fs] nfsd: buffer-length check for SUPPATTR_EXCLCREAT ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix lost nfserrno() call in nfsd_setattr() ("J. Bruce Fields") [1111719]
-- [net] sunrpc: Mark functions as static in net/sunrpc/svc_xprt.c ("J. Bruce Fields") [1111719]
-- [fs] nfsd: decrease nfsd4_encode_fattr stack usage ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix encode_entryplus_baggage stack usage ("J. Bruce Fields") [1111719]
-- [fs] nfsd: simplify xdr encoding of nfsv4 names ("J. Bruce Fields") [1111719]
-- [fs] nfsd: encode_rdattr_error cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_encode_fattr cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: better VERIFY comment ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Fix a memory leak in nfsd4_create_session ("J. Bruce Fields") [1111719]
-- [fs] nfsd: get rid of unused function definition ("J. Bruce Fields") [1111719]
-- [fs] nfsd:Define op_iattr for nfsd4_open instead using macro ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix compile warning without CONFIG_NFSD_V3 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Don't start lockd when only NFSv4 is running ("J. Bruce Fields") [1111719]
-- [net] sunrpc: Support a new option for ignoring the result of svc_register ("J. Bruce Fields") [1103348 1111719]
-- [fs] nfsd: fix bad length checking for backchannel ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix a leak which can cause CREATE_SESSION failures ("J. Bruce Fields") [1111719]
-- [fs] nfsd:Add missing recording of back channel attrs in nfsd4_session ("J. Bruce Fields") [1111719]
-- [fs] nfsd: get rid of unused macro definition ("J. Bruce Fields") [1111719]
-- [fs] nfsd: clean up unnecessary temporary variable in nfsd4_decode_fattr ("J. Bruce Fields") [1111719]
-- [fs] nfsd: using nfsd4_encode_noop for encoding destroy_session/free_stateid ("J. Bruce Fields") [1111719]
-- [fs] nfsd: clean up an xdr reserved space calculation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: get rid of unused function definition ("J. Bruce Fields") [1111719]
-- [fs] nfsd: calculate the missing length of bitmap in EXCHANGE_ID ("J. Bruce Fields") [1111719]
-- [fs] nfsd: revoking of suid/sgid bits after chown() in a consistent way ("J. Bruce Fields") [1111719]
-- [net] sunrpc: fix some typos ("J. Bruce Fields") [1111719]
-- [fs] nfsd: start documenting some XDR handling functions ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't return high mode bits ("J. Bruce Fields") [1111719]
-- [fs] nfsd: export proper maximum file size to the client ("J. Bruce Fields") [1111719]
-- [fs] nfsd: improve write performance with better sendspace reservations ("J. Bruce Fields") [1111719]
-- [net] svcrpc: remove an unnecessary assignment ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Add support for NFS v4.2 operation checking ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd_shutdown_net needs state lock ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Combine decode operations for v4 and v4.1 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: -EINVAL on invalid anonuid/gid instead of silent failure ("J. Bruce Fields") [1111719]
-- [fs] nfsd: return better errors to exportfs ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fh_update should error out in unexpected cases ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix Kconfig syntax ("J. Bruce Fields") [1111719]
-- [fs] nfsd: switch to p(dD) ("J. Bruce Fields") [1111719]
-- [fs] nfsd: racy access to ->d_name in nsfd4_encode_path() ("J. Bruce Fields") [1111719]
-- [net] svcrpc: remove unused rq_resused ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_create_clid_dir prints uninitialized data ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Fix MACH_CRED NULL dereference ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix xdr decoding of large non-write compounds ("J. Bruce Fields") [1095061 1111719]
-- [fs] gfs2: When using flock() a GFS2 filesystem hangs (Robert S Peterson) [1111624]
-- [fs] nfs: emit a fsnotify_nameremove call in sillyrename codepath (Jeff Layton) [919347]
-- [fs] nfs: remove synchronous rename code (Jeff Layton) [919347]
-- [fs] nfs: convert nfs_rename to use async_rename infrastructure (Jeff Layton) [919347]
-- [fs] nfs: make nfs_async_rename non-static (Jeff Layton) [919347]
-- [fs] nfs: abstract out code needed to complete a sillyrename (Jeff Layton) [919347]
-- [fs] gfs2: Fix race in glock lru glock disposal (Robert S Peterson) [1095835]
-- [fs] gfs2: Use lockref for glocks (Robert S Peterson) [1095835]
-- [fs] cifs: Fix check for regular file in couldbe_mf_symlink() (Sachin Prabhu) [1077230]
-- [fs] cifs: Re-order M-F Symlink code (Sachin Prabhu) [1077230]
-- [fs] cifs: Add create MFSymlinks to protocol ops struct (Sachin Prabhu) [1077230]
-- [fs] cifs: use protocol specific call for query_mf_symlink() (Sachin Prabhu) [1077230]
-- [fs] cifs: Rename MF symlink function names (Sachin Prabhu) [1077230]
-- [fs] cifs: Rename and cleanup open_query_close_cifs_symlink() (Sachin Prabhu) [1077230]
-- [fs] cifs: We do not drop reference to tlink in CIFSCheckMFSymlink() (Sachin Prabhu) [1077230]
-
-* Tue Jul 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-133.el7]
-- [s390] af_iucv: recvmsg problem for SOCK_STREAM sockets (Hendrik Brueckner) [1109703]
-- [s390] af_iucv: correct cleanup if listen backlog is full (Hendrik Brueckner) [1109033]
-- [kernel] auditsc: audit_krule mask accesses need bounds checking (Denys Vlasenko) [1102710] {CVE-2014-3917}
-- [fs] nfs: Don't mark the data cache as invalid if it has been flushed (Scott Mayhew) [1114054]
-- [fs] nfs: Clear NFS_INO_REVAL_PAGECACHE when we update the file size (Scott Mayhew) [1114054]
-- [fs] nfs: Fix cache_validity check in nfs_write_pageuptodate() (Scott Mayhew) [1114054]
-- [mm] avoid kABI breakage (Jerome Marchand) [1097419]
-- [mm] swap: change swap_list_head to plist, add swap_avail_head (Jerome Marchand) [1097419]
-- [lib] plist: add plist_requeue (Jerome Marchand) [1097419]
-- [lib] plist: add helper functions (Jerome Marchand) [1097419]
-- [mm] swap: change swap_info singly-linked list to list_head (Jerome Marchand) [1097419]
-- [block] mtip32xx: mtip_async_complete() bug fixes (Jeff Moyer) [1102281]
-- [block] mtip32xx: Unmap the DMA segments before completing the IO request (Jeff Moyer) [1102281]
-- [ethernet] tg3: Change nvram command timeout value to 50ms (Ivan Vecera) [1086397]
-- [ethernet] tg3: Override clock, link aware and link idle mode during NVRAM dump (Ivan Vecera) [1086397]
-- [edac] sb_edac: mark MCE messages as KERN_DEBUG (Aristeu Rozanski) [1056785]
-- [edac] sb_edac: use "event" instead of "exception" when MC wasnt signaled (Aristeu Rozanski) [1056785]
-- [Documentation] MAINTAINERS: Add DesignWare, i.MX6, Armada, R-Car PCI host maintainers (Myron Stowe) [1110890]
-- [pci] Disable Bus Master only on kexec reboot (Myron Stowe) [1110890]
-- [pci] Omit PCI ID macro strings to shorten quirk names (Myron Stowe) [1110890]
-- [pci] Move device_del() from pci_stop_dev() to pci_destroy_dev() (Myron Stowe) [1110890]
-- [pci] Avoid unnecessary CPU switch when calling driver .probe() method (Myron Stowe) [1110890]
-- [Documentation] MAINTAINERS: Add Jingoo Han as Samsung Exynos PCIe driver maintainer (Myron Stowe) [1110890]
-- [Documentation] MAINTAINERS: Add Tegra PCIe maintainer (Myron Stowe) [1110890]
-- [ethernet] ixgbe: set driver_max_VFs should be done before enabling SRIOV (Alex Williamson) [1090154]
-- [ethernet] ixgbe: define IXGBE_MAX_VFS_DRV_LIMIT macro and cleanup const 63 (Alex Williamson) [1090154]
-- [fs] nfs: advertise only supported callback netids (Jeff Layton) [1048477]
-- [fs] nfs: clean up, revert increase in READDIR RPC buffer max size (Jeff Layton) [1048477]
-- [net] sunrpc: Fix large reads on NFS/RDMA (Jeff Layton) [1048477]
-- [net] sunrpc: remove KERN_INFO from dprintk() call sites (Jeff Layton) [1048477]
-- [kernel] ftrace: Hardcode ftrace_module_init() call into load_module() (Takahiro MUNEDA) [1061553]
-- [kernel] trace: Make register/unregister_ftrace_command __init (Takahiro MUNEDA) [1061553]
-- [tools] turbostat: run on HSX (Prarit Bhargava) [1081657]
-- [tools] Revert: turbostat: servers do not support uncore power register (Prarit Bhargava) [1081657]
-
-* Thu Jul 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-132.el7]
-- [net] neigh: set nud_state to NUD_INCOMPLETE when probing router reachability (Hannes Frederic Sowa) [1110193]
-- [net] bridge: Set vlan_features to allow offloads on vlans (Florian Westphal) [1058544]
-- [net] team: fix mtu setting (Jiri Pirko) [1103083]
-- [net] ptp: validate the requested frequency adjustment (Jiri Benc) [1092969]
-- [net] netfilter: ctnetlink: don't add null bindings if no nat requested (Florian Westphal) [1089929]
-- [net] netfilter: ctnetlink: force null nat binding on insert (Florian Westphal) [1089929]
-- [net] netfilter: nf_conntrack: don't release a conntrack with non-zero refcnt (Florian Westphal) [1089929]
-- [net] netfilter: nf_conntrack: fix RCU race in nf_conntrack_find_get (Florian Westphal) [1089929]
-- [net] rtnetlink: Only supply IFLA_VF_PORTS information when RTEXT_FILTER_VF is set (Jiri Pirko) [1092400]
-- [net] rtnetlink: Warn when interface's information won't fit in our packet (Jiri Pirko) [1092400]
-- [net] fib_frontend: fix possible NULL pointer dereference (Jiri Benc) [1091142]
-- [net] team: forbid incorrect fall-through in notifier (Jiri Pirko) [1090495]
-- [net] gre: don't allow to add the same tunnel twice (Florian Westphal) [1086498]
-- [net] sctp: confirm route during forward progress (Daniel Borkmann) [1089629]
-- [net] nf_conntrack: decrement global counter after object release (Jiri Pirko) [1089191]
-- [net] add busy_poll device feature (Jiri Pirko) [1080093]
-- [net] ipv6: reallocate addrconf router for ipv6 address when lo device up (Jiri Benc) [1077053]
-- [net] macvlan: Add support for 'always_on' offload features (Florian Westphal) [928644]
-- [net] macvlan: fix netdev feature propagation from lower device (Florian Westphal) [928644]
-
-* Wed Jul 02 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-131.el7]
-- [scsi] pm80xx: Spinlock fix (Rich Bono) [1044636]
-- [scsi] aacraid: Update unsupported card list (Rich Bono) [1080712]
-- [scsi] vmw_pvscsi: Some improvements in pvscsi driver (Ewan Milne) [1075090]
-- [scsi] vmw_pvscsi: Add support for I/O requests coalescing (Ewan Milne) [1075090]
-- [scsi] vmw_pvscsi: Fix pvscsi_abort() function (Ewan Milne) [1075090]
-- [net] sctp: Fix sk_ack_backlog wrap-around problem (Daniel Borkmann) [1112726] {CVE-2014-4667}
-- [net] ipv4/tunnels: fix an oops when using ipip/sit with IPsec (Jiri Pirko) [1108857]
-- [net] filter: let bpf_tell_extensions return SKF_AD_MAX (Jiri Benc) [1079524]
-- [net] filter: introduce SO_BPF_EXTENSIONS (Jiri Benc) [1079524]
-
-* Tue Jul 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-130.el7]
-- [scsi] qla2xxx: Update version number to 8.06.00.08.07.0-k3 (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Reduce the time we wait for a command to complete during SCSI error handling (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Clear loop_id for ports that are marked lost during fabric scanning (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Avoid escalating the SCSI error handler if the command is not found in firmware (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Don't check for firmware hung during the reset context for ISP82XX (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Issue abort command for outstanding commands during cleanup when only firmware is alive (Chad Dupuis) [1090378]
-- [scsi] set DID_TIME_OUT correctly (Ewan Milne) [1103881]
-- [scsi] fix invalid setting of host byte (Ewan Milne) [1103881]
-- [scsi] More USB deadlock fixes (Ewan Milne) [1103881]
-- [scsi] Fix USB deadlock caused by SCSI error handling (Ewan Milne) [1103881]
-- [scsi] Fix command result state propagation (Ewan Milne) [1103881]
-- [scsi] Fix spurious request sense in error handling (Ewan Milne) [1103881]
-- [scsi] Add timeout to avoid infinite command retry (Ewan Milne) [1061871]
-- [scsi] lpfc: Update version for 10.2.8021.0 driver release (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8001.0: Fix ExpressLane priority setup (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8001.0: Removed obsolete PCI IDs from the driver (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8001.0: Fix for initializing RRQ bitmap (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8001.0: Fix for cleaning up stale ring flag and sp_queue_event entries (Rob Evers) [1088574]
-- [scsi] lpfc: Add iotag memory barrier (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Update Copyright on changed files from 8.3.45 patches (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fixed locking for scsi task management commands (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Convert runtime references to old xlane cfg param to fof cfg param (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix FW dump using sysfs (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix SLI4 s abort loop to process all FCP rings and under ring_lock (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fixed kernel panic in lpfc_abort_handler (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix locking for postbufq when freeing (Rob Evers) [1088574]
-- [scsi] lpfc: remove self-assignments (Rob Evers) [1088574]
-- [scsi] lpfc: Using plain integer as NULL pointer (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix locking for lpfc_hba_down_post (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix dynamic transitions of FirstBurst from on to off (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Fixed crash during driver unload (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Fixed driver error messages after firmware download (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Fixed missing initialization for task management IOCBs (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Fix sysfs buffer overrun in read of lpfc_fcp_cpu_map for 128 CPUs (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Incorporate changes to use reason in change_queue_depth function (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Incorporated support of a low-latency io path (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Added dport mailbox pass through support (Rob Evers) [1088574]
-- [scsi] be2iscsi: Bump the driver version (Rob Evers) [1088576]
-- [scsi] be2iscsi: fix bad if expression (Rob Evers) [1088576]
-- [scsi] be2iscsi: fix memory leak in error path (Rob Evers) [1088576]
-- [scsi] be2iscsi: Jump to 'free_memory' is apparently missing (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix destroy MCC-CQ before MCC-EQ is destroyed (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix memory corruption in MBX path (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix TCP parameters while connection offloading (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix interrupt Coalescing mechanism (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix exposing Host in sysfs after adapter initialization is complete (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix retreving MCCQ_WRB in non-embedded Mbox path (Rob Evers) [1088576]
-
-* Tue Jul 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-129.el7]
-- [drm] nouveau/bios: fix a bit shift error introduced by recent commit (Ulrich Obergfell) [1089936]
-- [ethernet] sfc: PIO:Restrict to 64bit arch and use 64-bit writes (Nikolay Aleksandrov) [1089024]
-- [fs] nfs: Apply NFS_MOUNT_CMP_FLAGMASK to nfs_compare_remount_data() (Scott Mayhew) [1103805]
-- [fs] gfs2: Prevent recovery before the local journal is set (Robert S Peterson) [1079433]
-- [fs] gfs2: Increase the max number of ACLs (Robert S Peterson) [1078231]
-- [fs] gfs2: check NULL return value in gfs2_ok_to_move (Abhijith Das) [1097042]
-- [fs] gfs2: Refresh quota after setting through quotactl (Abhijith Das) [1088740]
-- [kernel] hrtimer: Prevent all reprogramming if hang detected (Prarit Bhargava) [1094732]
-- [tty] Set correct tty name in 'active' sysfs attribute (Denys Vlasenko) [1066403]
-- [ethernet] bnx2x: Fix kernel crash and data miscompare after EEH recovery (Michal Schmidt) [1101808]
-- [ethernet] bnx2x: Adapter not recovery from EEH error injection (Michal Schmidt) [1067154]
-- [powerpc] tm: Disable IRQ in tm_recheckpoint (Larry Woodman) [1088224]
-- [x86] thinkpad: save and restore adaptive keyboard mode for suspend and, resume (Don Zickus) [1094476]
-- [x86] thinkpad: support Thinkpad X1 Carbon 2nd generation's adaptive keyboard (Don Zickus) [1094476]
-
-* Thu Jun 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-128.el7]
-- [lib] random32: minor cleanups and kdoc fix (Hannes Frederic Sowa) [1100299]
-- [lib] random32: avoid attempt to late reseed if in the middle of seeding (Hannes Frederic Sowa) [1100299]
-- [lib] random32: use msecs_to_jiffies for reseed timer (Hannes Frederic Sowa) [1100299]
-- [lib] random32: add __init prefix to prandom_start_seed_timer (Hannes Frederic Sowa) [1100299]
-- [lib] random32: add test cases for taus113 implementation (Hannes Frederic Sowa) [1100299]
-- [lib] random32: upgrade taus88 generator to taus113 from errata paper (Hannes Frederic Sowa) [1100299]
-- [lib] random32: move rnd_state to linux/random.h (Hannes Frederic Sowa) [1100299]
-- [lib] random32: add prandom_reseed_late() and call when nonblocking pool becomes initialized (Hannes Frederic Sowa) [1100299]
-- [lib] random32: add periodic reseeding (Hannes Frederic Sowa) [1100299]
-- [lib] random: allow architectures to optionally define random_get_entropy() (Hannes Frederic Sowa) [1100299]
-- [net] packet: use percpu mmap tx frame pending refcount (Daniel Borkmann) [1052366]
-- [net] packet: use reciprocal_divide in fanout_demux_hash (Daniel Borkmann) [1052366]
-- [net] packet: add randomized fanout scheduler (Daniel Borkmann) [1052366]
-- [net] packet: don't unconditionally schedule() in case of MSG_DONTWAIT (Daniel Borkmann) [1052366]
-- [net] packet: improve socket create/bind latency in some cases (Daniel Borkmann) [1052366]
-- [net] vxlan: convert to act as a pernet subsystem (Daniel Borkmann) [1039587]
-- [net] vxlan: do not use vxlan_net before checking event type (Daniel Borkmann) [1039587]
-- [net] vxlan: properly cleanup devs on module unload (Daniel Borkmann) [1039587]
-- [net] vxlan: when lower dev unregisters remove vxlan dev as well (Daniel Borkmann) [1039587]
-- [net] netfilter: x_tables: lightweight process control group matching (Daniel Borkmann) [1005839]
-- [net] sctp: fix and consolidate SCTP checksumming code (Daniel Borkmann) [1054215]
-- [net] checksum: fix warning in skb_checksum (Daniel Borkmann) [1054215]
-- [net] skb_checksum: allow custom update/combine for walking skb (Daniel Borkmann) [1054215]
-- [lib] crc32: reduce number of cases for crc32{, c}_combine (Daniel Borkmann) [1054215]
-- [lib] crc32: conditionally resched when running testcases (Daniel Borkmann) [1054215]
-- [lib] crc32: add test cases for crc32{, c}_combine routines (Daniel Borkmann) [1054215]
-- [lib] crc32: add functionality to combine two crc32{, c}s in GF(2) (Daniel Borkmann) [1054215]
-- [lib] crc32: clean up spacing in test cases (Daniel Borkmann) [1054215]
-- [lib] crc32: update the comments of crc32_{be, le}_generic() (Daniel Borkmann) [1054215]
-- [net] ipvs: sctp: do not recalc sctp csum when ports didn't change (Daniel Borkmann) [1054215]
-- [net] ipvs: sctp: add missing verdict assignments in sctp_conn_schedule (Daniel Borkmann) [1054215]
-- [tools] bpf_exp: free duplicated labels at exit time (Daniel Borkmann) [958035]
-- [tools] bpf_dbg: always close socket in bpf_runnable (Daniel Borkmann) [958035]
-- [net] filter: doc: improve BPF documentation (Daniel Borkmann) [958035]
-- [tools] filter: bpf_asm: add minimal bpf asm tool (Daniel Borkmann) [958035]
-- [tools] filter: bpf_dbg: add minimal bpf debugger (Daniel Borkmann) [958035]
-- [net] sched: cls_bpf: add BPF-based classifier (Daniel Borkmann) [958035]
-- [net] Use netlink_ns_capable to verify the permisions of netlink messages (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] netlink: Add variants of capable for use on netlink messages (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] diag: Move the permission check in sock_diag_put_filterinfo to packet_diag_dump (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] netlink: Rename netlink_capable netlink_allowed (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] diag: Fix ns_capable check in sock_diag_put_filterinfo (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] netlink: Fix permission check in netlink_connect() (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] filter: prevent nla extensions to peek beyond the end of the message (Jiri Benc) [1096781] {CVE-2014-3144 CVE-2014-3145}
-
-* Fri Jun 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-127.el7]
-- [net] mac80211: fix crash due to AP powersave TX vs. wakeup race (Jacob Tanenbaum) [1083534] {CVE-2014-2706}
-- [ethernet] qlcnic: Fix ethtool statistics length calculation (Michal Schmidt) [1099634]
-- [kernel] futex: Make lookup_pi_state more robust (Larry Woodman) [1104520] {CVE-2014-3153}
-- [kernel] futex: Always cleanup owner tid in unlock_pi (Larry Woodman) [1104520] {CVE-2014-3153}
-- [kernel] futex: Validate atomic acquisition in futex_lock_pi_atomic() (Larry Woodman) [1104520] {CVE-2014-3153}
-- [kernel] futex: prevent requeue pi on same futex (Larry Woodman) [1104520] {CVE-2014-3153}
-- [net] gro: restore frag0 optimization (and fix crash) (Michal Schmidt) [1069741]
-- [net] ipv4: current group_info should be put after using (Jiri Benc) [1087416] {CVE-2014-2851}
-- [net] core, nfqueue, openvswitch: Orphan frags in skb_zerocopy and handle errors (Jiri Pirko) [1079014] {CVE-2014-2568}
-- [fs] aio: fix plug memory disclosure and fix reqs_active accounting backport (Jeff Moyer) [1094605] {CVE-2014-0206}
-
-* Tue Jun 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-126.el7]
-- [fs] aio: plug memory disclosure and fix reqs_active accounting (Mateusz Guzik) [1094605] {CVE-2014-0206}
-- [kernel] mutexes: Give more informative mutex warning in the !lock->owner case (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] mutex: replace CONFIG_HAVE_ARCH_MUTEX_CPU_RELAX with simple ifdef (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutexes: Introduce cancelable MCS lock for adaptive spinning (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutexes: Modify the way optimistic spinners are queued (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutexes: Return false if task need_resched() in mutex_can_spin_on_owner() (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] Restructure the MCS lock defines and locking & Move mcs_spinlock.h into kernel/locking/ (Larry Woodman) [1087655 1087919 1087922]
-- [misc] arch: Introduce smp_load_acquire(), smp_store_release() (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutex: Fix debug_mutexes (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutex: Fix debug checks (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutexes: Unlock the mutex without the wait_lock (Larry Woodman) [1087655 1087919 1087922]
-
-* Tue Jun 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-125.el7]
-- [scsi] st: fix corruption of the st_modedef structures in st_set_options() (Maurizio Lombardi) [1084968]
-- [net] openvswitch: fix a possible deadlock and lockdep warning (Flavio Leitner) [1094867]
-- [fs] dcache: make prepend_name() work correctly when called with negative *buflen (Mikulas Patocka) [1092746]
-- [fs] dcache: __dentry_path() fixes (Mikulas Patocka) [1092746]
-- [fs] dcache: prepend_path() needs to reinitialize dentry/vfsmount/mnt on restarts (Mikulas Patocka) [1092746]
-- [net] ip: generate unique IP identificator if local fragmentation is allowed (Jiri Pirko) [1076106]
-- [target] tcm_fc: Fix use-after-free of ft_tpg (Andy Grover) [1071340]
-- [wireless] ath9k: tid->sched race in ath_tx_aggr_sleep() (Jacob Tanenbaum) [1083252] {CVE-2014-2672}
-- [kernel] futex: Fix pthread_cond_broadcast() to wake up all threads (Larry Woodman) [1084757]
-- [watchdog] hpwdt: display informative string (Nigel Croxon) [1074038]
-- [mm] page-writeback: fix divide by zero in pos_ratio_polynom (Rik van Riel) [1091784]
-- [mm] page-writeback: add strictlimit feature (Rik van Riel) [1091784]
-- [powerpc] tm: Fix crash when forking inside a transaction (Radomir Vrbovsky) [1083215] {CVE-2014-2673}
-- [block] floppy: don't write kernel-only members to FDRAWCMD ioctl output (Denys Vlasenko) [1094318] {CVE-2014-1737 CVE-2014-1738}
-- [block] floppy: ignore kernel-only members in FDRAWCMD ioctl input (Denys Vlasenko) [1094318] {CVE-2014-1737 CVE-2014-1738}
-- [s390] kernel: avoid page table walk on user space access (Hendrik Brueckner) [1097687]
-- [s390] af_iucv: wrong mapping of sent and confirmed skbs (Hendrik Brueckner) [1098513]
-- [s390] crypto: fix aes, des ctr mode concurrency finding (Hendrik Brueckner) [1097686]
-- [mm] filemap: update find_get_pages_tag() to deal with shadow entries (Johannes Weiner) [1091795]
-- [fs] xfs: log vector rounding leaks log space (Brian Foster) [1091136]
-- [fs] xfs: truncate_setsize should be outside transactions (Brian Foster) [1091136]
-
-* Tue May 20 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-124.el7]
-- [tty] n_tty: Fix n_tty_write crash when echoing in raw mode (Aristeu Rozanski) [1094242] {CVE-2014-0196}
-- [fs] gfs2: Fix uninitialized VFS inode in gfs2_create_inode (Abhijith Das) [1087995]
-- [kernel] cputime: Fix jiffies based cputime assumption on steal accounting (Frederic Weisbecker) [1047732]
-- [kernel] cputime: Bring cputime -> nsecs conversion (Frederic Weisbecker) [1047732]
-- [kernel] cputime: Default implementation of nsecs -> cputime conversion (Frederic Weisbecker) [1047732]
-- [x86] irq, pic: Probe for legacy PIC and set legacy_pic appropriately (Vivek Goyal) [1037957]
-- [virt] hyperv/vmbus: Negotiate version 3.0 when running on ws2012r2 hosts (Vivek Goyal) [1037957]
-
-* Mon May 05 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-123.el7]
-- [mm] rmap: try_to_unmap_cluster() should lock_page() before mlocking (Larry Woodman) [1078349] {CVE-2014-3122}
-- [mm] huge_memory: Fix cpuset cgroups so all pages for a task remain on correct node (Larry Woodman) [1076613]
-- [mm] mprotect: fix oops in change_pmd_range called from task_numa_work (Rik van Riel) [1085050]
-
-* Thu May 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-122.el7]
-- [security] device_cgroup: check if exception removal is allowed (Aristeu Rozanski) [1086057]
-- [security] device_cgroup: rework device access check and rule checking (Aristeu Rozanski) [1086057]
-- [fs] autofs: fix lockref lookup (Ian Kent) [1083815]
-- [mei] me: do not load the driver if the FW doesn't support MEI interface (Prarit Bhargava) [1082789]
-
-* Tue Apr 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-121.el7]
-- [virt] vhost/net: fix total length when packets are too short ("Michael S. Tsirkin") [1064446] {CVE-2014-0077}
-- [virt] vhost/net: validate vhost_get_vq_desc return value ("Michael S. Tsirkin") [1070940] {CVE-2014-0055}
-
-* Mon Apr 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-120.el7]
-- [net] netfilter: fix panic when oom during rule replacement (Florian Westphal) [985657]
-- [net] netfilter: x_tables: fix ordering of jumpstack allocation and table update (Florian Westphal) [985657]
-- [virt] kvm/ioapic: try to recover if pending_eoi goes out of range (Paolo Bonzini) [1036478]
-- [virt] kvm/ioapic: fix assignment of ioapic->rtc_status.pending_eoi (Paolo Bonzini) [1036478 1081590] {CVE-2014-0155}
-- [virt] kvm/ioapic: reinject pending interrupts on KVM_SET_IRQCHIP (Paolo Bonzini) [1036478]
-- [virt] kvm/ioapic: extract body of kvm_ioapic_set_irq (Paolo Bonzini) [1036478]
-- [virt] kvm/ioapic: clear IRR for edge-triggered interrupts at delivery (Paolo Bonzini) [1036478]
-- [virt] kvm/ioapic: merge ioapic_deliver into ioapic_service (Paolo Bonzini) [1036478]
-- [virt] kvm: ignore ioapic polarity (Paolo Bonzini) [1036478]
-- [core] device: Create 'device_driver_rh' KABI shadowing structure (Myron Stowe) [1083692]
-- [core] device: Create 'device_rh' KABI shadowing structure (Myron Stowe) [1083692]
-- [scsi] Reserve space in structures for future XCOPY support (Ewan Milne) [1080430]
-- [fs] xfs: fix bad hash ordering (Brian Foster) [1083206]
-- [fs] xfs: always do log forces via the workqueue (Brian Foster) [1052004]
-
-* Thu Apr 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-119.el7]
-- [net] bonding: remove bond_resend_igmp_join_requests read_unlock leftover (Veaceslav Falico) [1080924]
-- [ethernet] mlx4: Support shutdown() interface (Amir Vadai) [1046216]
-- [zram] fix invalid memory access (Jerome Marchand) [1081936]
-- [zram] protect zram_reset_device() call (Jerome Marchand) [1081936]
-- [zram] remove zram_sysfs file (Jerome Marchand) [1081936]
-- [zram] use atomic64_xxx() to replace zram_stat64_xxx() (Jerome Marchand) [1081936]
-- [zram] optimize memory operations with clear_page()/copy_page() (Jerome Marchand) [1081936]
-- [zram] kill unused zram_get_num_devices() (Jerome Marchand) [1081936]
-- [zram] simplify and optimize dev_to_zram() (Jerome Marchand) [1081936]
-- [kernel] futex: revert back to the explicit waiter counting code (Larry Woodman) [1081100]
-- [kernel] audit: Allow login in non-init namespaces (Richard Guy Briggs) [1082597]
-
-* Tue Apr 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-118.el7]
-- [wireless] ath9k: Fix LNA gpio for AR9485 (John Green) [1082017]
-- [infiniband] core: Don't resolve passive side RoCE L2 address in cma req handler (Amir Vadai) [1075852]
-- [fs] xfs: fix buffer use after free on IO error (Eric Sandeen) [924301]
-- [scsi] be2iscsi: Bump the driver version (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix DMA Out of SW-IOMMU space error (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix scsi_cmnd leakage in driver (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix the session cleanup when reboot/shutdown happens (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix doorbell format for EQ/CQ/RQ s per SLI spec (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix port speed typo in driver (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix handling timed out MBX completion from FW (Rob Evers) [1052416]
-- [fs] nfs: Fix a use-after-free problem in open() (Steve Dickson) [1062809]
-
-* Mon Mar 31 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-117.el7]
-- [md] dm-thin: fix dangling bio in process_deferred_bios error path (Mike Snitzer) [1081781]
-- [md] dm: take care to copy the space map roots before locking the superblock (Mike Snitzer) [1081781]
-- [md] dm-transaction-manager: fix corruption due to non-atomic transaction commit (Mike Snitzer) [1081781]
-- [md] dm-era: fixes for issues identified upstream (Mike Snitzer) [1081781]
-- [md] dm-cache: remove remainder of distinct discard block size (Mike Snitzer) [1062679]
-- [md] dm-cache: prevent corruption caused by discard_block_size > cache_block_size (Mike Snitzer) [1062679]
-- [ipc] change kern_ipc_perm.deleted type to bool (Phillip Lougher) [1043807] {CVE-2013-7026}
-- [ipc] introduce ipc_valid_object() helper to sort out IPC_RMID races (Phillip Lougher) [1043807] {CVE-2013-7026}
-- [ipc] shm: fix shm_file deletion races (Phillip Lougher) [1043807] {CVE-2013-7026}
-- [drm] udl: take reference to device struct for dma-bufs (Dave Airlie) [1077774]
-- [security] keys: Allow special keys (eg. DNS results) to be invalidated by CAP_SYS_ADMIN (David Howells) [1074240]
-
-* Fri Mar 28 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-116.el7]
-- [s390] qeth: postpone freeing of qdio memory (Hendrik Brueckner) [1077650]
-- [kernel] rh_taint: Remove taint and update unsupported hardware message (Prarit Bhargava) [1076974]
-- [fs] proc/vmcore: continue vmcore initialization if PT_NOTE is found empty (Chao WANG) [1077535]
-- [net] ipv6: ip6_append_data_mtu do not handle the mtu of the second fragment properly (Jiri Pirko) [1079873]
-
-* Tue Mar 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-115.el7]
-- [block] free q->flush_rq in blk_init_allocated_queue error paths (Mike Snitzer) [1078522]
-- [x86] fpu: Clear exceptions in AMD FXSAVE workaround (Phillip Lougher) [1053596] {CVE-2014-1438}
-- [mm] page_alloc: spill to remote nodes before waking kswapd (Johannes Weiner) [1076546]
-- [mm] vmscan: do not swap anon pages just because free+file is low (Johannes Weiner) [1076546]
-- [fs] sunrpc: Ensure call_connect_status() deals correctly with SOFTCONN tasks (Steve Dickson) [1071532]
-- [fs] nfs: Ensure we respect soft mount timeouts during trunking discovery (Steve Dickson) [1071532]
-- [fs] nfs: Schedule recovery if nfs40_walk_client_list() is interrupted (Steve Dickson) [1071532]
-- [fs] sunrpc: Ensure that call_bind times out correctly (Steve Dickson) [1071532]
-- [fs] sunrpc: Ensure that call_connect times out correctly (Steve Dickson) [1071532]
-
-* Fri Mar 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-114.el7]
-- [net] netfilter: nf_conntrack_dccp: fix skb_header_pointer API usages (Jiri Pirko) [1077351] {CVE-2014-2523}
-- [net] ipv6: don't set DST_NOCOUNT for remotely added routes (Jiri Pirko) [1075060] {CVE-2014-2309}
-- [net] skbuff: skb_segment: orphan frags before copying ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] skbuff: skb_segment: s/fskb/list_skb/ ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] skbuff: skb_segment: s/skb/head_skb/ ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] skbuff: skb_segment: s/skb_frag/frag/ ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] skbuff: skb_segment: s/frag/nskb_frag/ ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] use kfree_skb_list() helper ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] veth: fix veth vlan features (Flavio Leitner) [1076077]
-- [net] sunrpc/xprtrdma: add separate Kconfig options for NFSoRDMA client and server support (Jeff Layton) [1077957]
-- [virt] kvm/x86: emulate MOVAPD (Igor Mammedov) [1052090]
-- [virt] kvm/x86: emulate MOVAPS (Igor Mammedov) [1052090]
-- [mm] x86: Wrong page freed on preallocate_pmds() failure exit (Larry Woodman) [1073641]
-- [mm] x86: do not leak page->ptl for pmd page tables (Larry Woodman) [1073641]
-- [virt] kvm/x86: fix emulator buffer overflow (Andrew Jones) [1071836] {CVE-2014-0049}
-- [virt] hyperv: Change the receive buffer size for legacy hosts (Jason Wang) [1075279]
-- [x86] quirks: Update DH8900CC Unsupported Device ID (Prarit Bhargava) [1076137]
-
-* Tue Mar 18 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-113.el7]
-- [security] selinux: fix broken peer recv check (Paul Moore) [1043165]
-- [md] dm-raid: Fix possibility of skipping device recovery (Jonathan E Brassow) [1069927]
-- [fs] xfs: avoid AGI/AGF deadlock scenario for inode chunk allocation (Brian Foster) [1052789]
-- [md] dm-cache: fix access beyond end of origin device (Mike Snitzer) [1074606]
-- [md] dm-cache: fix truncation bug when copying a block to/from >2TB fast device (Mike Snitzer) [1075709]
-- [ethernet] bna: don't disable VLAN tag stripping in promisc mode (Ivan Vecera) [1057842]
-- [kernel] posix-timers: Spare workqueue if there is no full dynticks CPU to kick (Frederic Weisbecker) [1074168]
-
-* Mon Mar 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-112.el7]
-- [net] bridge: multicast: enable snooping on general queries only (Florian Westphal) [1074491]
-- [net] bridge: multicast: add sanity check for general query destination (Florian Westphal) [1074491]
-- [net] bridge: multicast: add sanity check for query source addresses (Florian Westphal) [1074491]
-- [net] inet: frag: fix oops when unloading inetfrag modules (Florian Westphal) [1073962]
-- [virt] vhost/net: fix ref cnt checking deadlock ("Michael S. Tsirkin") [1065878]
-- [virt] vhost_net: correctly limit the max pending buffers ("Michael S. Tsirkin") [1065878]
-- [virt] vhost/net: fix a theoretical race in device cleanup ("Michael S. Tsirkin") [1065878]
-- [powerpc] pseries: Expose in kernel device tree update to drmgr (Steve Best) [1064745]
-- [powerpc] pseries: Update dynamic cache nodes for suspend/resume operation (Steve Best) [1064745]
-- [powerpc] pseries: Device tree should only be updated once after suspend/migrate (Steve Best) [1064745]
-- [powerpc] pseries: Child nodes are not detached by dlpar_detach_node (Steve Best) [1064745]
-- [powerpc] pseries: Add mising of_node_put in delete_dt_node (Steve Best) [1064745]
-- [powerpc] pseries: Make dlpar_configure_connector parent node aware (Steve Best) [1064745]
-- [powerpc] pseries: Do all node initialization in dlpar_parse_cc_node (Steve Best) [1064745]
-- [powerpc] pseries: Fix parsing of initial node path in update_dt_node (Steve Best) [1064745]
-- [powerpc] pseries: Pack update_props_workarea to map correctly to rtas buffer header (Steve Best) [1064745]
-- [powerpc] pseries: Fix over writing of rtas return code in update_dt_node (Steve Best) [1064745]
-- [powerpc] pseries: Fix creation of loop in device node property list (Steve Best) [1064745]
-- [infiniband] mlx4: Don't allocate range of steerable UD QPs for Ethernet-only device (Doug Ledford) [1061795]
-- [ethernet] e1000: fix lockdep warning in e1000_reset_task (John Green) [1056355]
-- [ethernet] mlx4: mlx4_init_slave() shouldn't access comm channel before PF is ready (Amir Vadai) [1058413]
-- [ethernet] mlx4: Fix memory access error in mlx4_QUERY_DEV_CAP_wrapper() (Amir Vadai) [1058413]
-- [mm] numa: recheck for transhuge pages under lock during protection changes (Rik van Riel) [1073674]
-
-* Fri Mar 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-111.el7]
-- [net] inet: fix for a race condition in the inet frag code (Nikolay Aleksandrov) [1070711] {CVE-2014-0100}
-- [scsi] aacraid: Print warning message if unsupported card is being used (Rich Bono) [1019091]
-- [drm] ttm: don't oops if no invalidate_caches() (Rob Clark) [1073470 1075068]
-- [security] selinux: bigendian problems with filename trans rules (Paul Moore) [1029837]
-- [security] selinux: Fix memory leak upon loading policy (Paul Moore) [1051042]
-- [x86] apic: Plug racy xAPIC access of CPU hotplug code (Igor Mammedov) [1073568]
-- [kernel] sched: Remove redundant update_runtime notifier (Igor Mammedov) [1074476]
-- [virt] kvm/svm: fix cr8 intercept window (Radim Krcmar) [1056982]
-- [video] fb: reorder the lock sequence to fix potential dead lock (Jason Wang) [1040781]
-- [virt] hv/vmbus: Don't timeout during the initial connection with host (Jason Wang) [1037957]
-- [virt] hv/vmbus: Specify the target CPU that should receive notification (Jason Wang) [1037957]
-- [mm] percpu scalability fixes (Alexander Viro) [1072446]
-- [x86] fix compile error due to X86_TRAP_NMI use in asm files (Don Zickus) [1051428]
-- [x86] Ignore NMIs that come in during early boot (Don Zickus) [1051428]
-- [fs] cifs: Add support for follow_link on dfs shares under posix extensions (Sachin Prabhu) [1020715]
-- [fs] cifs: move unix extension call to cifs_query_symlink() (Sachin Prabhu) [1020715]
-- [kernel] audit: include subject in login records (Richard Guy Briggs) [1075155]
-- [kernel] audit: remove superfluous new- prefix in AUDIT_LOGIN messages (Richard Guy Briggs) [1075155]
-- [ethernet] tg3: Don't check undefined error bits in RXBD (Ivan Vecera) [1071483]
-- [fs] gfs2: Move recovery variables to journal structure in memory (Robert S Peterson) [1059439]
-- [security] keys: Make the keyring cycle detector ignore other keyrings of the same name (David Howells) [1071346] {CVE-2014-0102}
-- [x86] fix x86 fixup_irqs() error handling (Prarit Bhargava) [1074644]
-- [fs] gfs2: Re-add a call to log_flush_wait when flushing the journal (Robert S Peterson) [1074556]
-- [fs] gfs2: Ensure workqueue is scheduled after noexp request (Robert S Peterson) [1074556]
-
-* Wed Mar 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-110.el7]
-- [mm] Revert: percpu scalability fixes (Jarod Wilson) [1072446]
-
-* Tue Mar 11 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-109.el7]
-- [block] change flush sequence list addition back to front add (Mike Snitzer) [1072577]
-- [block] fix q->flush_rq NULL pointer crash on dm-mpath flush (Mike Snitzer) [1072577]
-- [md] dm-era: mark as tech preview for RHEL7.0 (Mike Snitzer) [995644]
-- [md] dm-bitset: only flush the current word if it has been dirtied (Mike Snitzer) [995644]
-- [md] dm-era: support non power-of-2 blocksize (Mike Snitzer) [995644]
-- [md] dm: add era target (Mike Snitzer) [995644]
-- [md] dm-cache-mq: fix memory allocation failure for large cache devices (Mike Snitzer) [995644]
-- [md] dm-cache: fix truncation bug when mapping I/O to >2TB fast device (Mike Snitzer) [995644]
-- [md] dm-space-map-metadata: fix refcount decrement below 0 which caused corruption (Mike Snitzer) [1065051]
-- [Documentation] dm-thin: fix Documentation for held metadata root feature (Mike Snitzer) [1065051]
-- [md] dm-thin: fix noflush suspend IO queueing (Mike Snitzer) [1065051]
-- [md] dm-thin: fix deadlock in __requeue_bio_list (Mike Snitzer) [1065051]
-- [md] dm-thin: fix out of data space handling (Mike Snitzer) [1065051]
-- [md] dm-thin: ensure user takes action to validate data and metadata consistency (Mike Snitzer) [1065051]
-- [md] dm-thin: synchronize the pool mode during suspend (Mike Snitzer) [1065051]
-- [md] dm: fix Kconfig indentation (Mike Snitzer) [1065051]
-- [md] dm-thin: allow metadata space larger than supported to go unused (Mike Snitzer) [1065051]
-- [md] dm-thin: fix the error path for the thin device constructor (Mike Snitzer) [1065051]
-- [md] dm-thin: avoid metadata commit if a pool's thin devices haven't changed (Mike Snitzer) [1065051]
-- [virt] hyperv: Add support for physically discontinuous receive buffer (Jason Wang) [988689]
-- [virt] virtio-scsi: Fix hotcpu_notifier use-after-free with virtscsi_freeze (Jason Wang) [1024220]
-- [fs] pnode: smarter propagate_mnt() (Alexander Viro) [1072457]
-- [kernel] perf: Allow mmap2 interface (Jiri Olsa) [1071945]
-- [crypto] ansi_cprng: Fix off by one error in non-block size request (Radomir Vrbovsky) [1009139]
-- [fs] xfs: don't leak EFSBADCRC to userspace (Brian Foster) [1071925]
-- [fs] xfs: modify verifiers to differentiate CRC from other errors (Brian Foster) [1071925]
-- [fs] xfs: print useful caller information in xfs_error_report (Brian Foster) [1071925]
-- [fs] xfs: add xfs_verifier_error() (Brian Foster) [1071925]
-- [fs] xfs: add helper for updating checksums on xfs_bufs (Brian Foster) [1071925]
-- [fs] xfs: add helper for verifying checksums on xfs_bufs (Brian Foster) [1071925]
-- [fs] xfs: Use defines for CRC offsets in all cases (Brian Foster) [1071925]
-- [fs] xfs: skip pointless CRC updates after verifier failures (Brian Foster) [1071925]
-- [fs] xfs: limit superblock corruption errors to actual corruption (Brian Foster) [1071925]
-- [fs] xfs: skip verification on initial "guess" superblock read (Brian Foster) [1071925]
-- [fs] xfs: xfs_sb_read_verify() doesn't flag bad crcs on primary sb (Brian Foster) [1071925]
-- [md] dm-snapshot: fix data corruption (Mikulas Patocka) [1070291]
-- [ethernet] e1000e: Fix SHRA register access for 82579 (John Green) [1040315]
-- [ethernet] be2net: do external loopback test only when it is requested (Ivan Vecera) [1065833]
-- [drm] i915: fix potential oops in early irqs (Rob Clark) [1073136]
-- [security] selinux: correctly label /proc inodes in use before the policy is loaded (Paul Moore) [1071858]
-- [fs] vfs: unexport the getname() symbol (Jeff Layton) [1060739]
-- [mm] percpu scalability fixes (Alexander Viro) [1072446]
-- [kernel] uprobes: Fix the memory out of bound overwrite in copy_insn() (Oleg Nesterov) [984056]
-- [kernel] uprobes: Fix the wrong usage of current->utask in uprobe_copy_process() (Oleg Nesterov) [984056]
-- [kernel] uprobes: Teach uprobe_copy_process() to handle CLONE_VFORK (Oleg Nesterov) [984056]
-- [kernel] uprobes: Change uprobe_copy_process() to dup xol_area (Oleg Nesterov) [984056]
-- [kernel] uprobes: Change uprobe_copy_process() to dup return_instances (Oleg Nesterov) [984056]
-- [kernel] uprobes: Teach __create_xol_area() to accept the predefined vaddr (Oleg Nesterov) [984056]
-- [kernel] uprobes: Introduce __create_xol_area() (Oleg Nesterov) [984056]
-- [kernel] uprobes: Change the callsite of uprobe_copy_process() (Oleg Nesterov) [984056]
-
-* Mon Mar 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-108.el7]
-- [scsi] megaraid_sas: fix a small problem when reading state value from hw (Tomas Henzl) [1070563]
-- [scsi] megaraid_sas: driver bug fix (Tomas Henzl) [1064509]
-- [scsi] qla2xxx: Update driver version to 8.06.00.08.07.0-k2 (Chad Dupuis) [1066003]
-- [scsi] qla2xxx: Fixup looking for a space in the outstanding_cmds array in qla2x00_alloc_iocbs() (Chad Dupuis) [1066003]
-- [scsi] qla2xxx: Set host can_queue value based on available resources (Chad Dupuis) [1066003]
-- [scsi] qla2xxx: Fix request queue null dereference (Chad Dupuis) [1058624]
-- [mm] add overcommit_kbytes sysctl variable (Jerome Marchand) [1058788]
-- [mm] factor commit limit calculation (Jerome Marchand) [1058788]
-- [drm] radeon/uvd: add kernel parameter to make uvd optional on evergreen (Jerome Glisse) [1056702]
-- [drm] radeon: free uvd ring on unload (Jerome Glisse) [1056702]
-- [s390] pci: obtain function handle in hotplug notifier (Hendrik Brueckner) [1059247]
-- [s390] pci/dma: fix accounting of allocated_pages (Hendrik Brueckner) [1059247]
-- [s390] pci: set error state for unavailable functions (Hendrik Brueckner) [1059247]
-- [s390] pci: fix removal of nonexistent pci bus (Hendrik Brueckner) [1059247]
-- [s390] pci: prevent inadvertently triggered bus scans (Hendrik Brueckner) [1059247]
-- [pci] msi: Make pci_enable_msi/msix() 'nvec' argument type as int (Myron Stowe) [1070909]
-- [pci] msi: Export MSI mode using attributes, not kobjects (Myron Stowe) [1070909]
-- [drm] nouveau: attempt to disarm all interrupts before request_irq() (Ben Skeggs) [986654]
-- [drm] nouveau: disable runtime pm by default (Ben Skeggs) [1072481]
-- [s390] appldata_os: fix cpu array size calculation (Hendrik Brueckner) [1071354]
-- [s390] cio: Fix missing subchannels after CHPID configure on (Hendrik Brueckner) [1071248]
-- [s390] pci/dma: use correct segment boundary size (Hendrik Brueckner) [1071239]
-- [scsi] isci: fix reset timeout handling (David Milburn) [1040402]
-- [wireless] ath9k: Add custom parameters for CUS198 (John Green) [1044005]
-- [ethernet] bnx2x: utilize FW 7.8.19 (Michal Schmidt) [1058008]
-- [fs] fix the performance of reading /proc/mounts and friends (Alexander Viro) [1072461]
-- [fs] namespace: mount hash table is too small (Alexander Viro) [1072451]
-- [fs] xfs: inode log reservations are still too small (Brian Foster) [1071068]
-- [fs] aio, memory-hotplug: Fix confliction when migrating and accessing ring pages (Motohiro Kosaki) [1060974]
-- [x86] only add -Werror when using RHEL7 gcc (Stefan Assmann) [1073055]
-- [mm] filemap: fix truncation crash due to exceptional entries (Johannes Weiner) [1069295 1071162]
-- [mm] Add kernel and mm data structure padding before kABI freeze (Larry Woodman) [1071438]
-- [pci] add pci_hw_vendor_status() (Prarit Bhargava) [1073062]
-- [cpufreq] pcc: Enable autoload of pcc-cpufreq for all ACPI processors (Lenny Szubowicz) [928152]
-- [idle] intel_idle: Repair large-server 50-watt idle-power regression (Lenny Szubowicz) [1054325]
-- [fs] clean up page array when uncached write send fails (Sachin Prabhu) [1063780]
-- [fs] cifs: use a flexarray in cifs_writedata (Sachin Prabhu) [1063780]
-- [mm] oom_kill: add rcu_read_lock() into find_lock_task_mm() (Oleg Nesterov) [1000335]
-- [mm] oom_kill: has_intersects_mems_allowed() needs rcu_read_lock() (Oleg Nesterov) [1000335]
-- [mm] oom_kill: change oom_kill.c to use for_each_thread() (Oleg Nesterov) [1000335]
-- [kernel] fork: introduce for_each_thread() to replace the buggy while_each_thread() (Oleg Nesterov) [1000335]
-- [kernel] fork: copy_process(), consolidate the lockless CLONE_THREAD checks (Oleg Nesterov) [1000335]
-- [kernel] fork: copy_process(), don't add the uninitialized child to thread/task/pid lists (Oleg Nesterov) [1000335]
-- [kernel] fork: copy_process(), unify CLONE_THREAD-or-thread_group_leader code (Oleg Nesterov) [1000335]
-- [fs] exec: de_thread(), use change_pid() rather than detach_pid/attach_pid (Oleg Nesterov) [1000335]
-- [powerpc] xmon: Don't signal we've entered until we're finished printing (Steve Best) [1072790]
-- [powerpc] xmon: Fix timeout loop in get_output_lock() (Steve Best) [1072790]
-- [powerpc] xmon: Don't loop forever in get_output_lock() (Steve Best) [1072790]
-
-* Fri Mar 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-107.el7]
-- [net] make neigh_priv_len in struct net_device 16bit instead of 8bit (Jiri Benc) [1062308]
-- [net] sctp: fix sctp_sf_do_5_1D_ce to verify if we/peer is AUTH capable (Daniel Borkmann) [1070716] {CVE-2014-0101}
-- [net] sctp: fix sctp_connectx abi for ia32 emulation/compat mode (Daniel Borkmann) [1058284]
-- [net] ip_tunnel: return more precise errno value when adding tunnel fails (Florian Westphal) [1070135]
-- [net] ip_tunnel: Add fallback tunnels to the hash lists (Florian Westphal) [1070135]
-- [net] openvswitch: Fix ovs_dp_cmd_msg_size() (Francesco Fusco) [1069577]
-- [net] team: Don't allow team devices to change network namespaces (Jiri Pirko) [1069527]
-- [net] team: add support for sending multicast rejoins (Jiri Pirko) [1069520]
-- [net] convert resend IGMP to notifier event (Jiri Pirko) [1069520]
-- [net] team: add peer notification (Jiri Pirko) [1069490]
-- [net] team: remove synchronize_rcu() called during port disable (Jiri Pirko) [1069498]
-- [net] team: use kfree_rcu instead of synchronize_rcu in team_port_dev (Jiri Pirko) [1069498]
-- [net] team: remove synchronize_rcu() called during queue override change (Jiri Pirko) [1069498]
-- [net] remove last caller of skb_tail_offset() and itself (Jiri Pirko) [1068666]
-- [net] netpoll: fix position of network header (Jiri Pirko) [1068666]
-- [net] neigh: fix setting of default gc_* values (Jiri Pirko) [1067274]
-
-* Thu Mar 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-106.el7]
-- [drm] nouveau/devinit: lock/unlock crtc regs for all devices, not just pre-nv50 (Ben Skeggs) [928744]
-- [drm] nouveau: use correct register to determine DP display bpp (Ben Skeggs) [928744]
-- [pci] Enable quirks for PCIe ACS on Intel PCH root ports (Alex Williamson) [1037684]
-- [pci] Add pci_dev_flag for ACS enable quirks (Alex Williamson) [1037684]
-- [pci] Add device-specific PCI ACS enable (Alex Williamson) [1037684]
-- [virt] hyperv-fb: kick off efifb early (Gerd Hoffmann) [1038900]
-- [virt] hyperv-fb: add support for generation 2 virtual machines (Gerd Hoffmann) [1038900]
-- [virt] hv/vmbus: use resource for hyperv mmio region (Gerd Hoffmann) [1038900]
-- [virt] hv/vmbus: add missing breaks (Gerd Hoffmann) [1038900]
-- [virt] hv/vmbus: Extract the mmio information from DSDT (Gerd Hoffmann) [1038900]
-- [s390] cio/blacklist: Perform subchannel scan only when needed (Hendrik Brueckner) [1071244]
-- [s390] css: Prevent unnecessary allocation in subchannel loop (Hendrik Brueckner) [1071244]
-- [s390] cio: Delay scan for newly available I/O devices (Hendrik Brueckner) [1071244]
-- [s390] cio: Relax subchannel scan loop (Hendrik Brueckner) [1071244]
-- [s390] cio: More efficient handling of CHPID availability events (Hendrik Brueckner) [1071244]
-- [ethernet] cxgb4: Add API to correctly calculate tuple fields (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Account for stid entries properly in case of IPv6 (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Assign filter server TIDs properly (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Include TCP as protocol when creating server filters (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Reserve stid 0 for T4/T5 adapters (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Add new scheme to update T4/T5 firmware (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Much cleaner implementation of is_t4()/is_t5() (Jay Fenlason) [1060264]
-- [ethernet] cgxb4: remove duplicate include in cxgb4.h (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: remove unnecessary pci_set_drvdata() (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: remove workqueue when driver registration fails (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Add CLIP support to store compressed IPv6 address (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Add routines to create and remove listening IPv6 servers (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Do not set net_device::dev_id to VI index (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Force uninitialized state if FW_ON_ADAPTER is < FW_VERSION and we're the MASTER_PF (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Use cxgb4_select_ntuple to correctly calculate ntuple fields (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Server filters are supported only for IPv4 (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Calculate the filter server TID properly (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Make _c4iw_write_mem_dma() static (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Fix formatting of physical address (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Issue RI.FINI before closing when entering TERM (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Advertise ~0ULL as max MR size (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Always do GTS write if cidx_inc == CIDXINC_MASK (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Set arp error handler for PASS_ACCEPT_RPL messages (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Fix accounting for unsignaled SQ WRs to deal with wrap (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Fix QP flush logic (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Handle newer firmware changes (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Use correct bit shift macros for vlan filter tuples (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Add support for active and passive open connection with IPv6 address (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Fix stack info leak in c4iw_create_qp() (Jay Fenlason) [1060264]
-- [scsi] cxgb4i: add support for T5 adapter (Jay Fenlason) [1060264]
-- [ethernet] cxgb4vf: added much cleaner implementation of is_t4() (Jay Fenlason) [1060264]
-- [ethernet] cxgb4vf: use DEFINE_PCI_DEVICE_TABLE (Jay Fenlason) [1060264]
-- [ethernet] cxgb4vf: remove unnecessary pci_set_drvdata() (Jay Fenlason) [1060264]
-- [ethernet] cxgb4vf: Staticize local symbols (Jay Fenlason) [1060264]
-- [infiniband] mlx5: Remove dependency on X86 (Doug Ledford) [1058614]
-- [infiniband] mlx5: Add include of <linux/slab.h> because of kzalloc()/kfree() use (Doug Ledford) [1058614]
-- [infiniband] mlx5: Don't set "block multicast loopback" capability (Doug Ledford) [1058614]
-- [infiniband] mlx5: Fix binary compatibility with libmlx5 (Doug Ledford) [1058614]
-- [infiniband] mlx5: Fix RC transport send queue overhead computation (Doug Ledford) [1058614]
-- [infiniband] mlx5: Verify reserved fields are cleared (Doug Ledford) [1058614]
-- [infiniband] mlx5: Remove old field for create mkey mailbox (Doug Ledford) [1058614]
-- [infiniband] mlx5: Abort driver cleanup if teardown hca fails (Doug Ledford) [1058614]
-- [infiniband] mlx5: Allow creation of QPs with zero-length work queues (Doug Ledford) [1058614]
-- [ethernet] mlx5: Fix PowerPC support (Doug Ledford) [1058614]
-- [ethernet] mlx5: Improve debugfs readability (Doug Ledford) [1058614]
-- [infiniband] mlx5: Add support for resize CQ (Doug Ledford) [1058614]
-- [infiniband] mlx5: Implement modify CQ (Doug Ledford) [1058614]
-- [infiniband] mlx5: Make sure doorbell record is visible before doorbell (Doug Ledford) [1058614]
-- [ethernet] mlx5: Use mlx5 core style warning (Doug Ledford) [1058614]
-- [ethernet] mlx5: Clear out struct before create QP command (Doug Ledford) [1058614]
-- [ethernet] mlx5: Fix out arg size in access_register command (Doug Ledford) [1058614]
-- [infiniband] mlx5: Fix micro UAR allocator (Doug Ledford) [1058614]
-- [ethernet] mlx5: Remove dead code (Doug Ledford) [1058614]
-- [infiniband] mlx5: Remove unused code in mr.c (Doug Ledford) [1058614]
-- [virt] kvm/x86: introduce periodic global clock updates (Andrew Jones) [1036457]
-- [virt] kvm/x86: rate-limit global clock updates (Andrew Jones) [1036457]
-- [mm] slub: fix page->_count corruption (again) (Rik van Riel) [1070918]
-- [kernel] stop_machine: Fix^2 race between stop_two_cpus() and stop_cpus() (Rik van Riel) [1061778 1071454]
-- [fs] proc/vmcore: prevent PT_NOTE p_memsz overflow during header update (Nigel Croxon) [1061368]
-- [ioat] dma: check DMA mapping error in ioat_dma_self_test() (Kyle McMartin) [922694]
-- [drm] nouveau/bios: add more checks to PRAMIN image fetching (Ben Skeggs) [1033345]
-- [fs] block: Fix nr_vecs for inline integrity vectors (David Milburn) [1040893]
-
-* Wed Mar 05 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-105.el7]
-- [redhat] kabi: actually add symbols to the whitelists this time (Jarod Wilson) [726863]
-
-* Tue Mar 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-104.el7]
-- [redhat] kabi: add initial whitelist checksums (Jiri Olsa) [726863]
-
-* Tue Mar 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-103.el7]
-- [fs] epoll: do not take the nested ep->mtx on EPOLL_CTL_DEL (Rik van Riel) [1069371]
-- [fs] epoll: do not take global 'epmutex' for simple topologies (Rik van Riel) [1069371]
-- [fs] epoll: optimize EPOLL_CTL_DEL using rcu (Rik van Riel) [1069371]
-- [fs] epoll: add a reschedule point in ep_free() (Rik van Riel) [1069371]
-- [fs] eventpoll: switch epoll_ctl() to fdget (Rik van Riel) [1069371]
-- [fs] eventpoll: do not use sigprocmask() (Rik van Riel) [1069371]
-- [target] iscsi-target: Add demo-mode TPG authentication context support (Andy Grover) [1066726]
-- [target] Add se_portal_group->tpg_auth_group (Andy Grover) [1066726]
-- [mm] page-writeback: do not count anon pages as dirtyable memory (Johannes Weiner) [832482]
-- [mm] page-writeback: fix dirty_balance_reserve subtraction from dirtyable memory (Johannes Weiner) [832482]
-- [misc] stackprotector: Introduce CONFIG_CC_STACKPROTECTOR_STRONG (Jarod Wilson) [1069367]
-- [misc] stackprotector: Unify the HAVE_CC_STACKPROTECTOR logic between architectures (Jarod Wilson) [1069367]
-- [kernel] futexes: Fix futex_hashsize initialization (Larry Woodman) [1069800]
-- [kernel] futexes: Avoid taking the hb->lock if there's nothing to wake up (Larry Woodman) [1069800]
-- [kernel] futexes: Document multiprocessor ordering guarantees (Larry Woodman) [1069800]
-- [kernel] futexes: Increase hash table size for better performance (Larry Woodman) [1069800]
-- [kernel] futexes: Clean up various details (Larry Woodman) [1069800]
-- [kernel] futex: move user address verification up to common code (Larry Woodman) [1069800]
-- [kernel] futex: fix handling of read-only-mapped hugepages (Larry Woodman) [1069800]
-- [powerpc] Support crashkernel auto memory reservation on a system with 2GB or more (Steve Best) [1051974]
-- [powerpc] Set crashkernel 'auto' memory reservation threshold to 2GB (Steve Best) [1051974]
-- [s390] cio: improve cio_commit_config (Hendrik Brueckner) [1064781]
-- [s390] zfcpdump: Fix mount order for XFS and ext4 (Hendrik Brueckner) [1058307]
-- [scsi] iSCSI connection errors on logout (Chris Leech) [1000356]
-- [block] add padding to queue_limits structure (Mike Snitzer) [973669]
-- [virt] kvm/nvmx: Fix pick-up of uninjected NMIs (Marcelo Tosatti) [1069089]
-- [virt] kvm/svm: fix NMI window after iret (Radim Krcmar) [1049862]
-- [mm] exclude memoryless nodes from zone_reclaim (Steve Best) [1070491]
-- [x86] mm/srat: Skip NUMA_NO_NODE while parsing SLIT (Prarit Bhargava) [1063539]
-
-* Tue Mar 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-102.el7]
-- [ethernet] cxgb3: remove duplicate defines (Jay Fenlason) [1060263]
-- [ethernet] cxgb3: remove unnecessary pci_set_drvdata() (Jay Fenlason) [1060263]
-- [ethernet] cxgb3: Add __GFP_NOWARN to k.alloc calls with v.alloc fallbacks (Jay Fenlason) [1060263]
-- [ethernet] cxgb3: Missing rtnl lock in error recovery (Jay Fenlason) [1060263]
-- [infiniband] cxgb3: Fix stack info leak in iwch_create_cq() (Jay Fenlason) [1060263]
-- [infiniband] cxgb3: Timeout condition is never true (Jay Fenlason) [1060263]
-- [ethernet] qlcnic: Update version to 5.3.48.2 (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: Fix tx timeout (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: Fix diagnostic test for all adapters (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: Fix VF reset recovery (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: underflow in qlcnic_validate_max_tx_rings() (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: Fix backporting BUG while doing inbox submission upto 5.3.48 (Chad Dupuis) [1063848]
-- [pci] pciehp: Add hotplug_lock to serialize hotplug events (Myron Stowe) [1061514]
-- [pci] pciehp: Ensure very fast hotplug events are also processed (Myron Stowe) [1061514]
-- [pci] pciehp: Disable link notification across slot reset (Myron Stowe) [1061514]
-- [pci] pciehp: Don't check adapter or latch status while disabling (Myron Stowe) [1061514]
-- [pci] pciehp: Don't disable the link permanently during removal (Myron Stowe) [1061514]
-- [pci] pciehp: Enable link state change notifications (Myron Stowe) [1061514]
-- [pci] pciehp: Use link change notifications for hot-plug and removal (Myron Stowe) [1061514]
-- [pci] pciehp: Make check_link_active() non-static (Myron Stowe) [1061514]
-- [pci] pciehp: Move Attention & Power Indicator support tests to accessors (Myron Stowe) [1061514]
-- [pci] pciehp: Use symbolic constants for Slot Control fields (Myron Stowe) [1061514]
-- [pci] pciehp: Use symbolic constants, not hard-coded bitmask (Myron Stowe) [1061514]
-- [pci] pciehp: Simplify "Power Fault Detected" checking/clearing (Myron Stowe) [1061514]
-- [pci] pciehp: Announce slot capabilities (slot #, button, LEDs, etc) (Myron Stowe) [1061514]
-- [pci] pciehp: Make various functions void since they can't fail (Myron Stowe) [1061514]
-- [pci] pciehp: Remove error checks when accessing PCIe Capability (Myron Stowe) [1061514]
-- [pci] pciehp: Drop pciehp_readw()/pciehp_writew() wrappers (Myron Stowe) [1061514]
-- [drm] mgag200: on cards with < 2MB VRAM default to 16-bit (Dave Airlie) [1056356]
-- [drm] cirrus: correct register values for 16bpp (Dave Airlie) [1056352]
-- [infiniband] mlx4: Build the port IBoE GID table properly under bonding (Doug Ledford) [1061729]
-- [infiniband] mlx4: Do IBoE GID table resets in port based manner (Doug Ledford) [1061729]
-- [infiniband] mlx4: Do IBoE locking earlier when initializing the GID table (Doug Ledford) [1061729]
-- [infiniband] mlx4: Move rtnl locking to the right location (Doug Ledford) [1061729]
-- [infiniband] mlx4: Make sure GID index 0 is always occupied (Doug Ledford) [1061729]
-- [infiniband] mlx4: Report using RoCE IP based gids in port caps (Doug Ledford) [1061729]
-- [mm] thp: fix infinite loop on memcg OOM (Motohiro Kosaki) [1054655]
-- [mm] thp: count thp_fault_fallback anytime thp fault fails (Motohiro Kosaki) [1054655]
-- [mm] thp: consolidate code between handle_mm_fault() and, do_huge_pmd_anonymous_page() (Motohiro Kosaki) [1054655]
-- [mm] thp: do_huge_pmd_anonymous_page() cleanup (Motohiro Kosaki) [1054655]
-- [fs] nfs: fix error return in nfs4_select_rw_stateid (Steve Dickson) [1071041]
-- [fs] nfs: Use the correct net namespace in nfs4_update_server (Steve Dickson) [1071041]
-- [net] sunrpc: Fix a pipe_version reference leak (Steve Dickson) [1071041]
-- [net] sunrpc: Fix races in xs_nospace() (Steve Dickson) [1071041]
-- [fs] nfs: Do not set NFS_INO_INVALID_LABEL unless server supports labeled NFS (Steve Dickson) [1071041]
-- [target] iscsi: Fix network portal creation race (Andy Grover) [1055064]
-- [ethernet] bnx2x: Add missing bit in default Tx switching (Michal Schmidt) [1070726]
-- [pci] dev_num_vf needs to return an int, not a bool (Alex Williamson) [1066825]
-- [kernel] cgroup: update cgroup_enable_task_cg_lists() to grab siglock (Rik van Riel) [1070919]
-- [powerpc] mm: Fix mmap errno when MAP_FIXED is set and mapping exceeds the allowed address space (Jerome Marchand) [1053681]
-
-* Mon Mar 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-101.el7]
-- [fs] btrfs: fix the race between write back and nocow buffered write (Zach Brown) [1051406]
-- [fs] btrfs: fix the wrong nocow range check (Zach Brown) [1051406]
-- [fs] btrfs: fix the reserved space leak caused by the race between nonlock dio and buffered io (Zach Brown) [1051406]
-- [fs] btrfs: cleanup unnecessary parameter and variant of prepare_pages() (Zach Brown) [1051406]
-- [fs] btrfs: fix access_ok() check in btrfs_ioctl_send() (Zach Brown) [1051282]
-- [fs] btrfs: make sure we cleanup all reloc roots if error happens (Zach Brown) [1051282]
-- [fs] btrfs: skip building backref tree for uuid and quota tree when doing balance relocation (Zach Brown) [1051282]
-- [fs] btrfs: fix an oops when doing balance relocation (Zach Brown) [1051282]
-- [fs] btrfs: don't miss skinny extent items on delayed ref head contention (Zach Brown) [1051282]
-- [fs] btrfs: call mnt_drop_write after interrupted subvol deletion (Zach Brown) [1051282]
-- [fs] btrfs: don't clear the default compression type (Zach Brown) [1051282]
-- [fs] btrfs: backport of btrfs part of "block: submit_bio_wait() conversions" (Zach Brown) [1051282]
-- [Documentation] filesystems: update btrfs tools section (Zach Brown) [1051282]
-- [Documentation] filesystems: add new btrfs mount options (Zach Brown) [1051282]
-- [fs] btrfs: update kconfig help text (Zach Brown) [1051282]
-- [fs] btrfs: fix bio_size_ok() for max_sectors > 0xffff (Zach Brown) [1051282]
-- [fs] btrfs: Use trace condition for get_extent tracepoint (Zach Brown) [1051282]
-- [fs] btrfs: fix typo in the log message (Zach Brown) [1051282]
-- [fs] btrfs: fix list delete warning when removing ordered root from the list (Zach Brown) [1051282]
-- [fs] btrfs: print bytenr instead of page pointer in check-int (Zach Brown) [1051282]
-- [fs] btrfs: remove dead codes from ctree.h (Zach Brown) [1051282]
-- [fs] btrfs: don't wait for ordered data outside desired range (Zach Brown) [1051282]
-- [fs] btrfs: fix lockdep error in async commit (Zach Brown) [1051282]
-- [fs] btrfs: avoid heavy operations in btrfs_commit_super (Zach Brown) [1051282]
-- [fs] btrfs: fix __btrfs_start_workers retval (Zach Brown) [1051282]
-- [fs] btrfs: disable online raid-repair on ro mounts (Zach Brown) [1051282]
-- [fs] btrfs: do not inc uncorrectable_errors counter on ro scrubs (Zach Brown) [1051282]
-- [fs] btrfs: only drop modified extents if we logged the whole inode (Zach Brown) [1051282]
-- [fs] btrfs: make sure to copy everything if we rename (Zach Brown) [1051282]
-- [fs] btrfs: don't BUG_ON() if we get an error walking backrefs (Zach Brown) [1051282]
-- [fs] btrfs: get rid of fdentry() (Zach Brown) [1051282]
-- [fs] btrfs: fix empty_zero_page misusage (Zach Brown) [1051282]
-- [fs] btrfs: rename btrfs_start_all_delalloc_inodes (Zach Brown) [1051282]
-- [fs] btrfs: don't wait for the completion of all the ordered extents (Zach Brown) [1051282]
-- [fs] btrfs: don't wait for all the async delalloc when shrinking delalloc (Zach Brown) [1051282]
-- [fs] btrfs: fix the confusion between delalloc bytes and metadata bytes (Zach Brown) [1051282]
-- [fs] btrfs: pick up the code for the item number calculation in flush_space() (Zach Brown) [1051282]
-- [fs] btrfs: wait for the ordered extent only when we want (Zach Brown) [1051282]
-- [fs] btrfs: remove unnecessary initialization and memory barrier in shrink_delalloc() (Zach Brown) [1051282]
-- [fs] btrfs: avoid unnecessary scrub workers allocation (Zach Brown) [1051282]
-- [fs] btrfs: check file extent type before anything else (Zach Brown) [1051282]
-- [fs] btrfs: Remove useless variable in write_ctree_super() (Zach Brown) [1051282]
-- [fs] btrfs: Fix checkpatch.pl warning of spacing issues (Zach Brown) [1051282]
-- [fs] btrfs: Replace kmalloc with kmalloc_array (Zach Brown) [1051282]
-- [fs] btrfs: Enclose macros with complex values within parenthesis (Zach Brown) [1051282]
-- [fs] btrfs: Use WARN_ON()'s return value in place of WARN_ON(1) (Zach Brown) [1051282]
-- [fs] btrfs: Remove redundant local zero structure (Zach Brown) [1051282]
-- [fs] btrfs: Pack struct btrfs_device (Zach Brown) [1051282]
-- [fs] btrfs: Replace multiple atomic_inc() with atomic_add() (Zach Brown) [1051282]
-- [fs] btrfs: Add helper function for free_root_pointers() (Zach Brown) [1051282]
-- [fs] btrfs: fix a crash when running balance and defrag concurrently (Zach Brown) [1051282]
-- [fs] btrfs: do not run snapshot-aware defragment on error (Zach Brown) [1051282]
-- [fs] btrfs: log recovery, don't unlink inode always on error (Zach Brown) [1051282]
-- [fs] btrfs: fix csum search offset/length calculation in log tree (Zach Brown) [1051282]
-- [fs] btrfs: fix verification of dir_item (Zach Brown) [1051282]
-- [fs] btrfs: remove scrub_super_lock holding in btrfs_sync_log() (Zach Brown) [1051282]
-- [fs] btrfs: use 'u64' rather than 'int' to get extent's generation (Zach Brown) [1051282]
-- [fs] btrfs: fix the free space write out failure when there is no data space (Zach Brown) [1051282]
-- [fs] btrfs: stop committing the transaction so much during relocate (Zach Brown) [1051282]
-- [fs] btrfs: make sure the delalloc workers actually flush compressed writes (Zach Brown) [1051282]
-- [fs] btrfs: take ordered root lock when removing ordered operations inode (Zach Brown) [1051282]
-- [fs] btrfs: don't abort transaction in run_delalloc_nocow (Zach Brown) [1051282]
-- [fs] btrfs: do not bug_on if we try to cow a free space cache inode (Zach Brown) [1051282]
-- [fs] btrfs: return an error from btrfs_wait_ordered_range (Zach Brown) [1051282]
-- [fs] btrfs: stop using vfs_read in send (Zach Brown) [1051282]
-- [fs] btrfs: check_int, remove warning for mixed-mode (Zach Brown) [1051282]
-- [fs] btrfs: fix check_int 'leaf item out of bounce' regression (Zach Brown) [1051282]
-- [fs] btrfs: optimize extent item search in run_delayed_extent_op (Zach Brown) [1051282]
-- [fs] btrfs: add tracing for failed reservations (Zach Brown) [1051282]
-- [fs] btrfs: remove fs/btrfs/compat.h (Zach Brown) [1051282]
-- [fs] btrfs: remove move_pages() (Zach Brown) [1051282]
-- [fs] btrfs: use get_seconds() instead of btrfs wrapper (Zach Brown) [1051282]
-- [fs] btrfs: fix incorrect inode acl reset (Zach Brown) [1051282]
-- [fs] btrfs: Don't allocate inode that is already in use (Zach Brown) [1051282]
-- [fs] btrfs: fix btrfs_prev_leaf() previous key computation (Zach Brown) [1051282]
-- [fs] btrfs: optimize tree-log.c:count_inode_refs() (Zach Brown) [1051282]
-- [fs] btrfs: simplify kmalloc+copy_from_user to memdup_user (Zach Brown) [1051282]
-- [fs] btrfs: btrfs_add_ordered_operation, Fix last modified transaction comparison (Zach Brown) [1051282]
-- [fs] btrfs: don't leak delayed node on path allocation failure (Zach Brown) [1051282]
-- [fs] btrfs: Wait for uuid-tree rebuild task on remount read-only (Zach Brown) [1051282]
-- [fs] btrfs: init device stats for new devices (Zach Brown) [1051282]
-- [fs] btrfs: fixup error path in __btrfs_inc_extent_ref (Zach Brown) [1051282]
-- [fs] btrfs: disallow 'btrfs (balance, replace) cancel' on ro mounts (Zach Brown) [1051282]
-- [fs] btrfs: don't leak ioctl args in btrfs_ioctl_dev_replace (Zach Brown) [1051282]
-- [fs] btrfs: nuke a bogus rw_devices decrement in __btrfs_close_devices (Zach Brown) [1051282]
-- [fs] btrfs: Fix memory leakage in the tree-log.c (Zach Brown) [1051282]
-- [fs] btrfs: kill unused code in btrfs_search_forward (Zach Brown) [1051282]
-- [fs] btrfs: cleanup dead code of defragment (Zach Brown) [1051282]
-- [fs] btrfs: remove unnecessary key copy when logging inode (Zach Brown) [1051282]
-- [fs] btrfs: Simplify the logic in alloc_extent_buffer() for existing extent buffer case (Zach Brown) [1051282]
-- [fs] btrfs: fix up seek_hole/seek_data handling (Zach Brown) [1051282]
-- [fs] btrfs: add an assert to btrfs_lookup_csums_range for alignment (Zach Brown) [1051282]
-- [fs] btrfs: fix hole check in log_one_extent (Zach Brown) [1051282]
-- [fs] btrfs: add a sanity test for a vacant extent at the front of a file (Zach Brown) [1051282]
-- [fs] btrfs: handle a missing extent for the first file extent (Zach Brown) [1051282]
-- [fs] btrfs: stop all workers after we free block groups (Zach Brown) [1051282]
-- [fs] btrfs: add tests for btrfs_get_extent (Zach Brown) [1051282]
-- [fs] btrfs: add tests for find_lock_delalloc_range (Zach Brown) [1051282]
-- [fs] btrfs: free reserved space on error in a few places (Zach Brown) [1051282]
-- [fs] btrfs: fixup reserved trace points (Zach Brown) [1051282]
-- [fs] btrfs: free up block groups after everything (Zach Brown) [1051282]
-- [fs] btrfs: cleanup reserved space when freeing tree log on error (Zach Brown) [1051282]
-- [fs] btrfs: do not free the dirty bytes from the trans block rsv on cleanup (Zach Brown) [1051282]
-- [fs] btrfs: fix memory leaks on transaction commit failure (Zach Brown) [1051282]
-- [fs] btrfs: fix the dev-replace suspend sequence (Zach Brown) [1051282]
-- [fs] btrfs: improve inode hash function/inode lookup (Zach Brown) [1051282]
-- [fs] btrfs: remove unnecessary tree search when logging inode (Zach Brown) [1051282]
-- [fs] btrfs: remove unused max_key arg from btrfs_search_forward (Zach Brown) [1051282]
-- [fs] btrfs: fix memory leak of chunks' extent map (Zach Brown) [1051282]
-- [fs] btrfs: improve jitter performance of the sequential buffered write (Zach Brown) [1051282]
-- [fs] btrfs: fix BUG_ON() casued by the reserved space migration (Zach Brown) [1051282]
-- [fs] btrfs: remove unused parameter from btrfs_header_fsid (Zach Brown) [1051282]
-- [fs] btrfs: fix two use-after-free bugs with transaction cleanup (Zach Brown) [1051282]
-- [fs] btrfs: remove all BUG_ON()'s from commit_cowonly_roots (Zach Brown) [1051282]
-- [fs] btrfs: don't delete ordered roots from list during cleanup (Zach Brown) [1051282]
-- [fs] btrfs: cleanup transaction on abort (Zach Brown) [1051282]
-- [fs] btrfs: do not release metadata for space cache inodes (Zach Brown) [1051282]
-- [fs] btrfs: reset intwrite on transaction abort (Zach Brown) [1051282]
-- [fs] btrfs: don't leak block group on error (Zach Brown) [1051282]
-- [fs] btrfs: fix sync fs to actually wait for all data to be persisted (Zach Brown) [1051282]
-- [fs] btrfs: fix tracking of orphan inode count (Zach Brown) [1051282]
-- [fs] btrfs: export btrfs space shared info to userspace (Zach Brown) [1051282]
-- [fs] btrfs: remove path arg from btrfs_truncate_free_space_cache (Zach Brown) [1051282]
-- [fs] btrfs: remove duplicated ino cache's inode lookup (Zach Brown) [1051282]
-- [fs] btrfs: do a full search everytime in btrfs_search_old_slot (Zach Brown) [1051282]
-- [fs] btrfs: add a sanity test for btrfs_split_item (Zach Brown) [1051282]
-- [fs] btrfs: drop unused parameter from btrfs_item_nr (Zach Brown) [1051282]
-- [fs] btrfs: don't store NULL byte in symlink extents (Zach Brown) [1051282]
-- [fs] btrfs: eliminate the exceptional root_tree refs=0 (Zach Brown) [1051282]
-
-* Mon Mar 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-100.el7]
-- [scsi] report sense even for TEST UNIT READY commands (Ewan Milne) [1070982]
-- [bfa] Fix for crash during sfpshow command (Chad Dupuis) [1065950]
-- [mm] fix GFP_THISNODE callers and clarify (Johannes Weiner) [1069551 1069639]
-- [mm] page_alloc: exempt GFP_THISNODE allocations from zone fairness (Johannes Weiner) [1069551 1069639]
-- [scsi] reserve space in structures for future scsi-mq changes (Mike Snitzer) [1071014]
-- [block] remove unprep_rq_fn (Mike Snitzer) [1071014]
-- [scsi] reintroduce scsi_driver.init_command (Mike Snitzer) [1071014]
-- [block] blk-mq: support partial I/O completions (Mike Snitzer) [1071014]
-- [block] blk-mq: merge blk_mq_insert_request and blk_mq_run_request (Mike Snitzer) [1071014]
-- [block] blk-mq: remove blk_mq_alloc_rq (Mike Snitzer) [1071014]
-- [block] blk-mq: pair blk_mq_start_request / blk_mq_requeue_request (Mike Snitzer) [1071014]
-- [block] blk-mq: dont assume rq->errors is set when returning an error from ->queue_rq (Mike Snitzer) [1071014]
-- [block] Fix type mismatch in ssize_t_blk_mq_tag_sysfs_show (Mike Snitzer) [1071014]
-- [block] blk-mq: rework flush sequencing logic (Mike Snitzer) [1071014]
-- [block] null_blk: use blk_complete_request and blk_mq_complete_request (Mike Snitzer) [1071014]
-- [block] blk-mq: rework I/O completions (Mike Snitzer) [1071014]
-- [block] null_blk: Fix completion processing from LIFO to FIFO (Mike Snitzer) [1071014]
-- [lib] llist: move llist_reverse_order from raid5 to llist.c (Mike Snitzer) [1071014]
-- [lib] llist: llist_add() can use llist_add_batch() (Mike Snitzer) [1071014]
-- [lib] llist: fix_simplify llist_add() and llist_add_batch() (Mike Snitzer) [1071014]
-- [block] blk-mq: Add bio_integrity setup to blk_mq_make_request (Mike Snitzer) [1071014]
-- [block] blk-mq: initialize sg_reserved_size (Mike Snitzer) [1071014]
-- [block] blk-mq: handle dma_drain_size (Mike Snitzer) [1071014]
-- [block] blk-mq: divert __blk_put_request for MQ ops (Mike Snitzer) [1071014]
-- [block] blk-mq: support at_head inserations for blk_execute_rq (Mike Snitzer) [1071014]
-- [block] null_blk: Null pointer deference problem in alloc_page_buffers (Mike Snitzer) [1071014]
-- [block] null_blk: fix queue leak inside removing device (Mike Snitzer) [1071014]
-- [block] null_blk: support submit_queues on use_per_node_hctx (Mike Snitzer) [1071014]
-- [block] null_blk: set use_per_node_hctx param to false (Mike Snitzer) [1071014]
-- [block] null_blk: warning on ignored submit_queues param (Mike Snitzer) [1071014]
-- [block] null_blk: refactor init and init errors code paths (Mike Snitzer) [1071014]
-- [block] null_blk: mem garbage on NUMA systems during init (Mike Snitzer) [1071014]
-- [block] null_blk: corrections to documentation (Mike Snitzer) [1071014]
-- [block] null_blk: documentation (Mike Snitzer) [1071014]
-- [block] null_blk: fix differences between RHEL7 and upstream (Mike Snitzer) [1071014]
-- [target] iscsi-target: Fix connection reset hang with percpu_ida_alloc (Mike Snitzer) [1071014]
-- [lib] percpu_ida: Make percpu_ida_alloc + callers accept task state bitmask (Mike Snitzer) [1071014]
-- [lib] percpu_ida: Removing unused arguement from alloc_local_tag (Mike Snitzer) [1071014]
-- [block] blk-mq: use hotcpu_notifier() (Mike Snitzer) [1071014]
-- [block] blk-mq: uses page->list incorrectly (Mike Snitzer) [1071014]
-- [block] blk-mq: use __smp_call_function_single directly (Mike Snitzer) [1071014]
-- [kernel] provide a __smp_call_function_single stub for !CONFIG_SMP (Mike Snitzer) [1071014]
-- [block] blk-mq: fix initializing request's start time (Mike Snitzer) [1071014]
-- [block] blk-mq: don't export blk_mq_free_queue() (Mike Snitzer) [1071014]
-- [block] blk-mq: make blk_sync_queue support mq (Mike Snitzer) [1071014]
-- [block] blk-mq: support draining mq queue (Mike Snitzer) [1071014]
-- [virt] kvm/x86: emulator_cmpxchg_emulated should mark_page_dirty (Marcelo Tosatti) [994431]
-- [x86] irq: Fix kbuild warning in smp_irq_move_cleanup_interrupt() (Prarit Bhargava) [1065735]
-- [security] selinux: put the mmap() DAC controls before the MAC controls (Paul Moore) [1070827]
-- [infiniband] iser: Avoid dereferncing iscsi_iser conn object when not bound to iser connection (Doug Ledford) [1061129]
-- [mm] Use ptep/pmdp_set_numa() for updating _PAGE_NUMA bit (Steve Best) [1049012]
-- [mm] Dirty accountable change only apply to non prot numa case (Steve Best) [1049012]
-- [powerpc] mm: Add new "set" flag argument to pte/pmd update function (Steve Best) [1049012]
-- [powerpc] mm: Enable _PAGE_NUMA for book3s (Steve Best) [1049012]
-- [powerpc] mm: Only check for _PAGE_PRESENT in set_pte/pmd functions (Steve Best) [1049012]
-- [powerpc] mm: Free up _PAGE_COHERENCE for numa fault use later (Steve Best) [1049012]
-- [powerpc] mm: Use HPTE constants when updating hpte bits (Steve Best) [1049012]
-- [mm] Move change_prot_numa outside CONFIG_ARCH_USES_NUMA_PROT_NONE (Steve Best) [1049012]
-
-* Fri Feb 28 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-99.el7]
-- [target] Pass through I/O topology for block backstores (Andy Grover) [873474]
-- [target] iscsi-target: ST response on IN6ADDR_ANY socket (Andy Grover) [913033]
-- [security] keys: Fix searching of nested keyrings (David Howells) [1033467]
-- [security] keys: Fix multiple key add into associative array (David Howells) [1033467]
-- [security] keys: Fix the keyring hash function (David Howells) [1033467]
-- [ethernet] bnx2x: Fix generic option settings (Michal Schmidt) [1066076]
-- [tools] perf/kvm: Fix kvm report without guestmount (Jiri Olsa) [1051298]
-- [mm] readahead: fix readahead failure for memoryless NUMA nodes and limit readahead pages (Steve Best) [1062288]
-- [ethernet] Mark Intel DH8900CC Series Gigabit Network Device Unsupported (Prarit Bhargava) [727275]
-- [drm] nouveau/mxm: fix null deref on load (Ben Skeggs) [1067807]
-- [ethernet] i40e: Fix device ID define names to align to standard (Stefan Assmann) [1057192]
-- [ethernet] i40e: add DCB option to Kconfig (Stefan Assmann) [1057192]
-- [ethernet] i40e: add DCB and DCBNL support (Stefan Assmann) [1057192]
-- [ethernet] i40e: implement DCB support infastructure (Stefan Assmann) [1057192]
-- [ethernet] i40e: refactor flow director (Stefan Assmann) [1057192]
-- [ethernet] i40e: rename defines (Stefan Assmann) [1057192]
-- [ethernet] i40e: whitespace fixes (Stefan Assmann) [1057192]
-- [ethernet] i40e: Change firmware workaround (Stefan Assmann) [1057192]
-- [ethernet] i40e: fix compile warning on checksum_local (Stefan Assmann) [1057192]
-- [ethernet] i40e: updates to AdminQ interface (Stefan Assmann) [1057192]
-- [ethernet] i40e: check desc pointer before printing (Stefan Assmann) [1057192]
-- [ethernet] i40e: delete non-required instances of include <linux/init.h> (Stefan Assmann) [1057192]
-- [ethernet] i40e: Retain MAC filters on port VLAN deletion (Stefan Assmann) [1057192]
-- [ethernet] i40e: Warn admin to reload VF driver on port VLAN configuration (Stefan Assmann) [1057192]
-- [ethernet] i40e: Bump version number (Stefan Assmann) [1057192]
-- [ethernet] i40e: trivial cleanup (Stefan Assmann) [1057192]
-- [ethernet] i40e: whitespace fixes (Stefan Assmann) [1057192]
-- [ethernet] i40e: make message meaningful (Stefan Assmann) [1057192]
-- [ethernet] i40e: associate VMDq queue with VM type (Stefan Assmann) [1057192]
-- [ethernet] i40e: remove extra register write (Stefan Assmann) [1057192]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1057192]
-- [ethernet] i40e: fix log message wording (Stefan Assmann) [1057192]
-- [ethernet] i40e: enable PTP (Stefan Assmann) [1057192]
-- [ethernet] i40e: call clear_pxe after adminq is initialized (Stefan Assmann) [1057192]
-- [ethernet] i40e: clear qtx_head before enabling Tx queue (Stefan Assmann) [1057192]
-- [ethernet] i40e: adjust ITR max and min values (Stefan Assmann) [1057192]
-- [ethernet] i40e: check for possible incorrect ipv6 checksum (Stefan Assmann) [1057192]
-- [ethernet] i40e: allow VF to remove any MAC filter (Stefan Assmann) [1057192]
-- [ethernet] i40e: do not bail when disabling if Tx queue disable fails (Stefan Assmann) [1057192]
-- [ethernet] i40e: Setting queue count to 1 using ethtool is valid (Stefan Assmann) [1057192]
-- [ethernet] i40e: Cleanup Doxygen warnings (Stefan Assmann) [1057192]
-- [ethernet] i40e: fix long lines (Stefan Assmann) [1057192]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1057192]
-- [ethernet] i40e: Update the Current NVM version Low value (Stefan Assmann) [1057192]
-- [ethernet] i40e: drop unused macros (Stefan Assmann) [1057192]
-- [ethernet] i40e: use assignment instead of memcpy (Stefan Assmann) [1057192]
-- [ethernet] i40e: Turn flow director off in MFP mode (Stefan Assmann) [1057192]
-- [ethernet] i40e: Add a dummy packet template (Stefan Assmann) [1057192]
-- [ethernet] i40e: fix spelling errors (Stefan Assmann) [1057192]
-- [ethernet] i40e: formatting and checkpatch fixes (Stefan Assmann) [1057192]
-- [ethernet] i40e: shorten wordy fields (Stefan Assmann) [1057192]
-- [ethernet] i40e: accept pf to pf adminq messages (Stefan Assmann) [1057192]
-- [ethernet] i40e: remove interrupt on AQ error (Stefan Assmann) [1057192]
-- [ethernet] i40e: release NVM resource reservation on startup (Stefan Assmann) [1057192]
-- [ethernet] i40e: Cleanup reconfig rss path (Stefan Assmann) [1057192]
-- [ethernet] i40e: disable packet split (Stefan Assmann) [1057192]
-- [ethernet] i40e: add a comment on barrier and fix panic on reset (Stefan Assmann) [1057192]
-- [ethernet] i40e: Fix MAC format in Write MAC address AQ cmd (Stefan Assmann) [1057192]
-- [ethernet] i40e: Fix GPL header (Stefan Assmann) [1057192]
-- [ethernet] i40e: use kernel specific defines (Stefan Assmann) [1057192]
-- [ethernet] i40e: Re-enable interrupt on ICR0 (Stefan Assmann) [1057192]
-
-* Thu Feb 27 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-98.el7]
-- [scsi] qla4xxx: v5.04.00.04.07.00-k0 (Chad Dupuis) [1063205]
-- [scsi] qla4xxx: Initialize hardware queue for ISP40XX (Chad Dupuis) [1063205]
-- [fs] cifs: mask off top byte in get_rfc1002_length() (Sachin Prabhu) [1062588] {CVE-2014-0069}
-- [infiniband] mlx4: Add support for steerable IB UD QPs (Doug Ledford) [1058518]
-- [infiniband] mlx4: Add mechanism to support flow steering over IB links (Doug Ledford) [1058518]
-- [infiniband] mlx4: Enable device-managed steering support for IB ports too (Doug Ledford) [1058518]
-- [ethernet] mlx4: Add support for steerable IB UD QPs (Doug Ledford) [1058518]
-- [infiniband] core: Add support for IB L2 device-managed steering (Doug Ledford) [1058518]
-- [infiniband] core: Add flow steering support for IPoIB UD traffic (Doug Ledford) [1058518]
-- [scsi] isci: correct erroneous for_each_isci_host macro (David Milburn) [1054302]
-- [virt] vhost/net: disable zero copy by default (Jason Wang) [1069045]
-- [x86] cpu-hotplug: Fix stack frame warning in check_irq_vectors_for_cpu_disable() (Prarit Bhargava) [1061317]
-- [drm] radeon/kms: add crtc_disable function for legacy crtc (Jerome Glisse) [1029570]
-- [drm] radeon/kms: unpin fb in atombios crtc disable (Jerome Glisse) [1029570]
-- [powerpc] Fix 32-bit frames for signals delivered when transactional (Steve Best) [1059703]
-- [edac] Correct workqueue setup path (Aristeu Rozanski) [1055892]
-- [edac] Poll timeout cannot be zero, p2 (Aristeu Rozanski) [1055892]
-- [edac] edac_mc_sysfs: poll timeout cannot be zero (Aristeu Rozanski) [1055892]
-
-* Tue Feb 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-97.el7]
-- [fs] cifs: sanity check length of data to send before sending (Sachin Prabhu) [1062588] {CVE-2014-0069}
-- [fs] cifs: ensure that uncached writes handle unmapped areas correctly (Sachin Prabhu) [1062588] {CVE-2014-0069}
-- [fs] cifs: set FILE_CREATED (Sachin Prabhu) [1065982]
-- [fs] ext4: Disable punch hole on non-extent mapped files (Lukas Czerner) [1033438]
-- [fs] Fix mountpoint reference leakage in linkat (Jeff Layton) [1063287]
-- [fs] NFSD/sunrpc: avoid deadlock on TCP connection due to memory pressure ("J. Bruce Fields") [994257]
-- [fs] nfsd: consider CLAIM_FH when handing out delegation ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: minor nfs4_setlease cleanup ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: need to destroy revoked delegations in destroy_client ("J. Bruce Fields") [1031097]
-- [fs] nfsd: no need to unhash_stid before free ("J. Bruce Fields") [1031097]
-- [fs] nfsd: nfs4_open_delegation needs to remove_stid rather than unhash_stid ("J. Bruce Fields") [1031097]
-- [fs] nfsd: nfs4_free_stid ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: fix leak of inode reference on delegation failure ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: fix setlease error return ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: fix delegation-unlink/rename race ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: delay setting current_fh in open ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: break only delegations when appropriate ("J. Bruce Fields") [1031097]
-- [fs] nfsd: make sure to balance get/put_write_access ("J. Bruce Fields") [1031097]
-- [fs] nfsd: split up nfsd_setattr ("J. Bruce Fields") [1031097]
-- [fs] locks: break delegations on any attribute modification ("J. Bruce Fields") [1031097]
-- [fs] locks: break delegations on link ("J. Bruce Fields") [1031097]
-- [fs] locks: break delegations on rename ("J. Bruce Fields") [1031097]
-- [fs] locks: helper functions for delegation breaking ("J. Bruce Fields") [1031097]
-- [fs] locks: break delegations on unlink ("J. Bruce Fields") [1031097]
-- [fs] namei: minor vfs_unlink cleanup ("J. Bruce Fields") [1031097]
-- [fs] locks: implement delegations ("J. Bruce Fields") [1031097]
-- [fs] locks: introduce new FL_DELEG lock flag ("J. Bruce Fields") [1031097]
-- [fs] vfs: take i_mutex on renamed file ("J. Bruce Fields") [1031097]
-- [fs] vfs: rename I_MUTEX_QUOTA now that it's not used for quotas ("J. Bruce Fields") [1031097]
-- [fs] vfs: don't use PARENT/CHILD lock classes for non-directories ("J. Bruce Fields") [1031097]
-- [fs] vfs: pull ext4's double-i_mutex-locking into common code ("J. Bruce Fields") [1031097]
-- [fs] ext4: fix FITRIM in no journal mode (Lukas Czerner) [1044519]
-- [fs] ext4: add ratelimiting to ext4 messages (Lukas Czerner) [1044513]
-- [fs] ext4: rate limit printk in buffer_io_error() (Lukas Czerner) [1044513]
-- [fs] ext4: translate flag bits to strings in tracepoints (Lukas Czerner) [1044505]
-- [fs] ext4: Fix fsync error handling after filesystem abort (Lukas Czerner) [1044501]
-
-* Tue Feb 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-96.el7]
-- [x86] Makefile: add -Werror to compile (Prarit Bhargava) [1006333]
-- [edac] sb_edac: Shut up compiler warning when EDAC_DEBUG is enabled (Prarit Bhargava) [1006333]
-- [kernel] mutex: Avoid label warning when !CONFIG_MUTEX_SPIN_ON_OWNER (Prarit Bhargava) [1006333]
-- [infiniband] ocrdma: Fix compiler warning (Prarit Bhargava) [1006333]
-- [isdn] hfcpci_softirq: get func return to suppress compiler warning (Prarit Bhargava) [1006333]
-- [x86] Fix return value in generic_processor_info() (Prarit Bhargava) [1006333]
-- [wireless] rtlwifi: initialize local array and set value (Prarit Bhargava) [1006333]
-- [ethernet] mlx4: clean up srq_res_start_move_to() (Prarit Bhargava) [1006333]
-- [ethernet] mlx4: clean up cq_res_start_move_to() (Prarit Bhargava) [1006333]
-- [powerpc] Link VDSOs at 0x0 (Steve Best) [1066468]
-- [powerpc] Use unstripped VDSO image for more accurate profiling data (Steve Best) [1066468]
-- [scsi] fnic: Incremented driver version (Chris Leech) [831836]
-- [scsi] fnic: Fnic Statistics Collection (Chris Leech) [831836]
-- [scsi] fnic: host reset returns nonzero value(errno) on (Chris Leech) [831836]
-- [scsi] fnic: Convert uses of compare_ether_addr to ether_addr_equal (Chris Leech) [831836]
-- [scsi] fnic: remove unnecessary pci_set_drvdata() (Chris Leech) [831836]
-- [scsi] fnic: fnic Driver Tuneables Exposed through CLI (Chris Leech) [831836]
-- [scsi] fnic: Kernel panic while running sh/nosh with max lun (Chris Leech) [831836]
-- [scsi] fnic: Hitting BUG_ON(io_req->abts_done) in (Chris Leech) [831836]
-- [scsi] fnic: Remove QUEUE_FULL handling code (Chris Leech) [831836]
-- [scsi] fnic: On system with >1.1TB RAM, VIC fails multipath (Chris Leech) [831836]
-- [scsi] fnic: FC stat param seconds_since_last_reset not (Chris Leech) [831836]
-- [scsi] fnic: BUG, sleeping function called from invalid (Chris Leech) [831836]
-- [scsi] fnic: switch to fixed_size_llseek() (Chris Leech) [831836]
-- [scsi] fnic: potential dead lock in fnic_is_abts_pending() (Chris Leech) [831836]
-- [powerpc] mm: Fix compile error of pgtable-ppc64.h (Steve Best) [1047636]
-- [powerpc] thp: Fix crash on mremap (Steve Best) [1047636]
-- [ethernet] bnx2x: Allow VF rss on higher PFs (Michal Schmidt) [1062634]
-- [ethernet] bnx2x: Fix VF flr flow (Michal Schmidt) [1062634]
-- [ethernet] bnx2x: Correct default Tx switching behaviour (Michal Schmidt) [1058592]
-- [block] sg_io: allow WRITE SAME without CAP_SYS_RAWIO (Paolo Bonzini) [966883]
-- [block] sg_io: introduce unpriv_sgio queue flag (Paolo Bonzini) [966883]
-- [block] sg_io: pass request_queue to blk_verify_command (Paolo Bonzini) [966883]
-- [scsi] aacraid: prevent invalid pointer dereference (Frantisek Hrbata) [1034301] {CVE-2013-6380}
-- [ethernet] be2net: Fix be_vlan_add/rem_vid() routines (Ivan Vecera) [1065829]
-- [wireless] libertas: potential oops in debugfs (Denys Vlasenko) [1034178] {CVE-2013-6378}
-- [mm] remove bogus warning in copy_huge_pmd() (Rik van Riel) [1067326]
-- [wireless] ath9k: properly set MAC address and BSSID mask (Denys Vlasenko) [1033071] {CVE-2013-4579}
-- [video] matroxfb: Default to 1024x768 @ 60 (Adam Jackson) [1055533]
-- [powerpc] pseries: Add Gen3 definitions for PCIE link speed (Jerome Glisse) [1056701]
-- [powerpc] pseries: Fix regression on PCI link speed (Jerome Glisse) [1056701]
-
-* Sat Feb 22 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-95.el7]
-- [fs] nfs: nfs4_destroy_session must call rpc_destroy_waitqueue (Steve Dickson) [1061707]
-- [fs] nfs: Fix memory corruption in nfs4_proc_open_confirm (Steve Dickson) [1061707]
-- [fs] nfs: initialize the ACL support bits to zero (Steve Dickson) [1059241 919382]
-- [fs] nfs: Cleanup (Steve Dickson) [1059241 919382]
-- [fs] nfs: Clean up nfs41_sequence_done (Steve Dickson) [1059241 919382]
-- [fs] nfs: Fix a slot leak in nfs40_sequence_done (Steve Dickson) [1059241 919382]
-- [fs] nfs: free slot before resending I/O to MDS (Steve Dickson) [1059241 919382]
-- [fs] nfs: add memory barriers around NFS_INO_INVALID_DATA and NFS_INO_INVALIDATING (Steve Dickson) [1059241 919382]
-- [fs] nfs: Fix races in nfs_revalidate_mapping (Steve Dickson) [1059241 919382]
-- [net] sunrpc: turn warn_gssd() log message into a dprintk() (Steve Dickson) [1059241 919382]
-- [fs] nfs: fix the handling of NFS_INO_INVALID_DATA flag in nfs_revalidate_mapping (Steve Dickson) [1059241 919382]
-- [fs] nfs: handle servers that support only ALLOW ACE type (Steve Dickson) [1059241 919382]
-- [fs] nfs: Proper delay for NFS4ERR_RECALLCONFLICT in layout_get_done (Steve Dickson) [1059622]
-- [fs] nfs: fix BUG in filelayout_recover_commit_reqs (Steve Dickson) [1059622]
-- [fs] nfs: fix discover_server_trunking use after free (Steve Dickson) [1059622]
-- [fs] nfs: Handle errors correctly in nfs41_walk_client_list (Steve Dickson) [1059622]
-- [fs] nfs: always make sure page is up-to-date before extending a write to cover the entire page (Steve Dickson) [1059622]
-- [fs] nfs: page cache invalidation for dio (Steve Dickson) [1059622]
-- [fs] nfs: take i_mutex during direct I/O reads (Steve Dickson) [1059622]
-- [fs] nfs: merge nfs_direct_write into nfs_file_direct_write (Steve Dickson) [1059622]
-- [fs] nfs: merge nfs_direct_read into nfs_file_direct_read (Steve Dickson) [1059622]
-- [fs] nfs: increment i_dio_count for reads, too (Steve Dickson) [1059622]
-- [fs] nfs: defer inode_dio_done call until size update is done (Steve Dickson) [1059622]
-- [fs] nfs: fix size updates for aio writes (Steve Dickson) [1059622]
-- [fs] nfs: properly handle ENOTSUP in SECINFO_NO_NAME (Steve Dickson) [1059622]
-- [fs] nfs: Fix a race in nfs4_write_inode (Steve Dickson) [1059622]
-- [fs] nfs: Don't trust attributes if a pNFS LAYOUTCOMMIT is outstanding (Steve Dickson) [1059622]
-- [fs] nfs: use p(dD) point to the right include file in a comment (left over from a9004abc3) (Steve Dickson) [1059622]
-- [fs] nfs: dprintk() should not print negative fileids and inode numbers (Steve Dickson) [1059622]
-- [fs] nfs: use (dD) instead of open-coded (and often racy) equivalents (Steve Dickson) [1059622]
-- [lib] vsprintf: document formats for dentry and struct file (Steve Dickson) [1059622]
-- [lib] vsprintf: add formats for dentry/file pathnames (Steve Dickson) [1059622]
-- [fs] nfs: fix dead code of ipv6_addr_scope (Steve Dickson) [1059622]
-- [net] sunrpc: Fix infinite loop in RPC state machine (Steve Dickson) [1059622]
-- [net] sunrpc: Add tracepoint for socket errors (Steve Dickson) [1059622]
-- [net] sunrpc: Report connection error values to rpc_tasks on the pending queue (Steve Dickson) [1059622]
-- [net] sunrpc: Handle connect errors ECONNABORTED and EHOSTUNREACH (Steve Dickson) [1059622]
-- [net] sunrpc: Ensure xprt_connect_status handles all potential connection errors (Steve Dickson) [1059622]
-- [fs] nfs: OPEN must handle the NFS4ERR_IO return code correctly (Steve Dickson) [1059622]
-
-* Sat Feb 22 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-94.el7]
-- [powerpc] finish off merge to put FP/VSX and VR state into structures (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in pseries EEH code (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in nvram code (Steve Best) [1051192]
-- [powerpc] Fix endian issues in crash dump code (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in MSI code (Steve Best) [1051192]
-- [powerpc] pseries: Fix PCIE link speed endian issue (Steve Best) [1051192]
-- [powerpc] Fix topology core_id endian issue on LE builds (Steve Best) [1051192]
-- [powerpc] Fix endian issue in setup-common.c (Steve Best) [1051192]
-- [powerpc] allyesconfig should not select CONFIG_CPU_LITTLE_ENDIAN (Steve Best) [1051192]
-- [powerpc] Fix error when cross building TAGS & cscope (Steve Best) [1051192]
-- [powerpc] kvm: allow guest control "E" attribute in mas2 (Steve Best) [1051192]
-- [powerpc] Wrong DWARF CFI in the kernel vdso for little-endian / ELFv2 (Steve Best) [1051192]
-- [powerpc] Add CONFIG_CPU_LITTLE_ENDIAN kernel config option (Steve Best) [1051192]
-- [powerpc] Don't use ELFv2 ABI to build the kernel (Steve Best) [1051192]
-- [powerpc] ELF2 binaries signal handling (Steve Best) [1051192]
-- [powerpc] ELF2 binaries launched directly (Steve Best) [1051192]
-- [powerpc] Set eflags correctly for ELF ABIv2 core dumps (Steve Best) [1051192]
-- [powerpc] Add TIF_ELF2ABI flag (Steve Best) [1051192]
-- [powerpc] Remove big endianness assumption in of_find_next_cache_node (Steve Best) [1051192]
-- [powerpc] word-at-a-time optimization for 64-bit Little Endian (Steve Best) [1051192]
-- [powerpc] bpf: BPF JIT compiler for 64-bit Little Endian (Steve Best) [1051192]
-- [powerpc] nvram: Fix endian issue when using the partition length (Steve Best) [1051192]
-- [powerpc] nvram: Fix endian issue when reading the NVRAM size (Steve Best) [1051192]
-- [powerpc] Use -mcpu=power7 on ppc64 little endian builds (Steve Best) [1051192]
-- [powerpc] booke64: Use appropriate -mcpu (Steve Best) [1051192]
-- [powerpc] Fix Unaligned LE Floating Point Loads and Stores (Steve Best) [1051192]
-- [powerpc] Fix Unaligned Loads and Stores (Steve Best) [1051192]
-- [powerpc] Enable Little Endian Alignment Handler for Float Pair Instructions (Steve Best) [1051192]
-- [powerpc] Fix Handler of Unaligned Load/Store Strings (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in pseries iommu code (Steve Best) [1051192]
-- [powerpc] Fix little endian issue in OF PCI scan (Steve Best) [1051192]
-- [powerpc] Make kernel module helper endian-safe (Steve Best) [1051192]
-- [powerpc] prom_init exception when updating core value (Steve Best) [1051192]
-- [powerpc] kernel: Fix endian issue in rtas_pci (Steve Best) [1051192]
-- [powerpc] Work around little endian gcc bug (Steve Best) [1051192]
-- [powerpc] Don't set HAVE_EFFICIENT_UNALIGNED_ACCESS on little endian builds (Steve Best) [1051192]
-- [powerpc] Add ability to build little endian kernels (Steve Best) [1051192]
-- [powerpc] kvm: Disable KVM on little endian builds (Steve Best) [1051192]
-- [powerpc] hvsi: Fix endian issues in HVSI driver (Steve Best) [1051192]
-- [powerpc] powernv: More little endian issues in OPAL RTC driver (Steve Best) [1051192]
-- [powerpc] powernv: Don't register exception handlers in little endian mode (Steve Best) [1051192]
-- [powerpc] powernv: Fix OPAL entry and exit in little endian mode (Steve Best) [1051192]
-- [powerpc] powernv: Fix endian issues in OPAL console and udbg backend (Steve Best) [1051192]
-- [powerpc] powernv: Fix endian issues in powernv PCI code (Steve Best) [1051192]
-- [powerpc] powernv: Make OPAL NVRAM device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] powernv: Fix endian issues in OPAL ICS backend (Steve Best) [1051192]
-- [powerpc] powernv: Fix endian issues in OPAL RTC driver (Steve Best) [1051192]
-- [powerpc] Little endian sparse clean up for arch/powerpc/platforms/powernv/pci-ioda.c (Steve Best) [1051192]
-- [powerpc] Little endian fix for arch/powerpc/platforms/powernv/pci-p5ioc2.c (Steve Best) [1051192]
-- [powerpc] Little endian fix for arch/powerpc/platforms/powernv/pci.c (Steve Best) [1051192]
-- [powerpc] Little endian fixes for platforms/powernv/opal.c (Steve Best) [1051192]
-- [powerpc] uname should return ppc64le/ppcle on little endian builds (Steve Best) [1051192]
-- [powerpc] Use generic memcpy code in little endian (Steve Best) [1051192]
-- [powerpc] Use generic checksum code in little endian (Steve Best) [1051192]
-- [powerpc] Handle VSX alignment faults in little endian mode (Steve Best) [1051192]
-- [powerpc] Add little endian support to alignment handler (Steve Best) [1051192]
-- [powerpc] Alignment handler shouldn't access VSX registers with TS_FPR (Steve Best) [1051192]
-- [powerpc] Remove hard coded FP offsets in alignment handler (Steve Best) [1051192]
-- [powerpc] Remove open coded byte swap macro in alignment handler (Steve Best) [1051192]
-- [powerpc] Endian safe trampoline (Steve Best) [1051192]
-- [powerpc] Include the appropriate endianness header (Steve Best) [1051192]
-- [powerpc] Set MSR_LE bit on little endian builds (Steve Best) [1051192]
-- [powerpc] Add little endian support for word-at-a-time functions (Steve Best) [1051192]
-- [powerpc] Support endian agnostic MMIO (Steve Best) [1051192]
-- [powerpc] Little endian builds double word swap VSX state during context save/restore (Steve Best) [1051192]
-- [powerpc] PTRACE_PEEKUSR/PTRACE_POKEUSER of FPR registers in little endian builds (Steve Best) [1051192]
-- [powerpc] Fix offset of FPRs in VSX registers in little endian builds (Steve Best) [1051192]
-- [powerpc] Book 3S MMU little endian support (Steve Best) [1051192]
-- [powerpc] Fix endian issues in VMX copy loops (Steve Best) [1051192]
-- [powerpc] Make rwlocks endian safe (Steve Best) [1051192]
-- [powerpc] Fix little endian coredumps (Steve Best) [1051192]
-- [powerpc] Simplify logic in include/uapi/asm/elf.h (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in H_GET_TERM_CHAR/H_PUT_TERM_CHAR (Steve Best) [1051192]
-- [powerpc] pseries: Simplify H_GET_TERM_CHAR (Steve Best) [1051192]
-- [powerpc] Little endian SMP IPI demux (Steve Best) [1051192]
-- [powerpc] Emulate instructions in little endian mode (Steve Best) [1051192]
-- [powerpc] Fix little endian lppaca, slb_shadow and dtl_entry (Steve Best) [1051192]
-- [powerpc] Add endian annotations to lppaca, slb_shadow and dtl_entry (Steve Best) [1051192]
-- [powerpc] Stop using non-architected shared_proc field in lppaca (Steve Best) [1051192]
-- [powerpc] Make NUMA device node code endian safe (Steve Best) [1051192]
-- [powerpc] Little endian fixes for legacy_serial.c (Steve Best) [1051192]
-- [powerpc] Make PCI device node device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] Make OF PCI device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] Make device tree accesses in VIO subsystem endian safe (Steve Best) [1051192]
-- [powerpc] Make device tree accesses in cache info code endian safe (Steve Best) [1051192]
-- [powerpc] of_parse_dma_window should take a __be32 *dma_window (Steve Best) [1051192]
-- [powerpc] Fix some endian issues in xics code (Steve Best) [1051192]
-- [powerpc] Add some endian annotations to time and xics code (Steve Best) [1051192]
-- [powerpc] More little endian fixes for setup-common.c (Steve Best) [1051192]
-- [powerpc] Make logical to real cpu mapping code endian safe (Steve Best) [1051192]
-- [powerpc] Make RTAS calls endian safe (Steve Best) [1051192]
-- [powerpc] Make cache info device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] Make RTAS device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] More little endian fixes for prom.c (Steve Best) [1051192]
-- [powerpc] Make prom.c device tree accesses endian safe (Steve Best) [1051192]
-
-* Fri Feb 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-93.el7]
-- [net] netfilter: xt_nfqueue: fix --queue-bypass regression (Florian Westphal) [1067042]
-- [net] netfilter: nft_reject_inet: fix unintended fall-through in switch-statatement (Jiri Benc) [1066156]
-- [net] netfilter: nf_tables: fix log/queue expressions for NFPROTO_INET (Jiri Benc) [1066156]
-- [net] netfilter: nf_tables: add reject module for NFPROTO_INET (Jiri Benc) [1066156]
-- [net] netfilter: nft_reject: split up reject module into IPv4 and IPv6 specifc parts (Jiri Benc) [1066156]
-- [net] netfilter: nf_tables: add hook ops to struct nft_pktinfo (Jiri Benc) [1066156]
-- [net] netfilter: nft_reject: fix compilation warning if NF_TABLES_IPV6 is disabled (Jiri Benc) [1066156]
-- [net] netfilter: add help information to new nf_tables Kconfig options (Jiri Benc) [1066156]
-- [net] netfilter: nft_reject: support for IPv6 and TCP reset (Jiri Benc) [1066156]
-- [net] netfilter: reject: separate reusable code (Jiri Benc) [1066156]
-- [net] netfilter: nft: add queue module (Jiri Benc) [1066156]
-- [net] netfilter: xt_nfqueue: separate reusable code (Jiri Benc) [1066156]
-- [net] netfilter: ip6t_reject: skip checksum verification for outgoing ipv6 packets (Jiri Benc) [1066156]
-- [net] netfilter: nf_tables: check if payload length is a power of 2 (Jiri Benc) [1034791]
-- [net] netfilter: nft_meta: fix typo "CONFIG_NET_CLS_ROUTE" (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: unininline nft_trace_packet() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix loop checking with end interval elements (Jiri Benc) [1034791]
-- [net] netfilter: nft_rbtree: fix data handling of end interval elements (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: do not allow NFT_SET_ELEM_INTERVAL_END flag and data (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix racy rule deletion (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix log/queue expressions for NFPROTO_INET (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add AF specific expression support (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: fix missing NFT_CT_L3PROTOCOL key in validity checks (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix potential oops when dumping sets (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix overrun in nf_tables_set_alloc_name() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix oops when deleting a chain with references (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: fix unconditional dump of 'dir' attr (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: fix compilation warning if NF_CONNTRACK_MARK is not set (Jiri Benc) [1034791]
-- [net] netfilter: Add dependency on IPV6 for NF_TABLES_INET (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix missing byteorder conversion in policy (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix error path in the init functions (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: rename nft_do_chain_pktinfo() to nft_do_chain() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: prohibit deletion of a table with existing sets (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: take AF module reference when creating a table (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: perform flags validation before table allocation (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: minor nf_chain_type cleanups (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: constify chain type definitions and pointers (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: replay request after dropping locks to load chain type (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add missing module references to chain types (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix chain type module reference handling (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix check for table overflow (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: restore chain change atomicity (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: split chain policy validation from actually setting it (Jiri Benc) [1034791]
-- [net] netfilter: nft_meta: fix lack of validation of the input register (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: Add support to set the connmark (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: load both IPv4 and IPv6 conntrack modules for NFPROTO_INET (Jiri Benc) [1034791]
-- [net] netfilter: nft_meta: add l4proto support (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add nfproto support to meta expression (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add "inet" table for IPv4/IPv6 (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add support for multi family tables (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add hook ops to struct nft_pktinfo (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: make chain types override the default AF functions (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: dump sets in all existing families (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: remove unused variable in nf_tables_dump_set() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix type in parsing in nf_tables_set_alloc_name() (Jiri Benc) [1034791]
-- [net] netfilter: add help information to new nf_tables Kconfig options (Jiri Benc) [1034791]
-- [net] netfilter: select NFNETLINK when enabling NF_TABLES (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: remove nft_meta_target (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: nft_meta module get/set ops (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: Expose the table usage counter via netlink (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix issue with verdict support (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix wrong datatype in nft_validate_data_load() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix oops when updating table with user chains (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix dumping with large number of sets (Jiri Benc) [1034791]
-- [net] netfilter: nft_exthdr: call ipv6_find_hdr() with explicitly initialized offset (Jiri Benc) [1034791]
-- [net] netfilter: nft_reject: fix endianness in dump function (Jiri Benc) [1034791]
-- [net] nf_tables*.h: Remove extern from function prototypes (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix missing rules flushing per table (Jiri Benc) [1034791]
-- [net] netfilter: nft_compat: fix error path in nft_parse_compat() (Jiri Benc) [1034791]
-- [net] pktgen: Fix position of ip and udp header (Jiri Pirko) [1067485]
-- [net] nf: remove automatic helper assignment removal warning (Jiri Pirko) [1066453]
-- [net] inet_diag: fix inet_diag_dump_icsk() to use correct state for timewait sockets (Jesper Brouer) [1059721]
-- [net] netfilter: xt_socket: use sock_gen_put() (Jesper Brouer) [1059721]
-- [net] inet_diag: use sock_gen_put() (Jesper Brouer) [1059721]
-- [net] inet: rename ir_loc_port to ir_num (Jesper Brouer) [1059721]
-- [net] inet: includes a sock_common in request_sock (Jesper Brouer) [1059721]
-- [net] inet: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled (Jesper Brouer) [1059721]
-- [net] fix build errors if ipv6 is disabled (Jesper Brouer) [1059721]
-- [net] sctp: fix initialization of local source address on accepted ipv6 sockets (Jesper Brouer) [1059721]
-- [net] ipv6: make lookups simpler and faster (Jesper Brouer) [1059721]
-- [net] tcp/dccp: remove twchain (Jesper Brouer) [1059721]
-- [net] tcp: shrink tcp6_timewait_sock by one cache line (Jesper Brouer) [1059721]
-- [net] inet: consolidate INET_TW_MATCH (Jesper Brouer) [1059721]
-- [net] inet*.h: Remove extern from function prototypes (Jesper Brouer) [1059721]
-- [net] openvswitch: datapath: fix dp check in ovs_dp_reset_user_features (Francesco Fusco) [1057099]
-- [net] openvswitch: Suppress error messages on megaflow updates (Francesco Fusco) [1057099]
-- [net] openvswitch: Fix ovs_flow_free() ovs-lock assert (Francesco Fusco) [1057099]
-- [net] openvswitch: Fix kernel panic on ovs_flow_free (Francesco Fusco) [1057099]
-- [net] openvswitch: Pad OVS_PACKET_ATTR_PACKET if linear copy was performed (Francesco Fusco) [1057099]
-- [tools] perf: Fix include for non x86 architectures (Francesco Fusco) [1057099]
-- [net] openvswitch: Use kmem_cache_free() instead of kfree() (Francesco Fusco) [1057099]
-- [net] openvswitch: Compute checksum in skb_gso_segment() if needed (Francesco Fusco) [1057099]
-- [net] openvswitch: Use skb_zerocopy() for upcall (Francesco Fusco) [1057099]
-- [net] openvswitch: Pass datapath into userspace queue functions (Francesco Fusco) [1057099]
-- [net] openvswitch: Drop user features if old user space attempted to create datapath (Francesco Fusco) [1057099]
-- [net] openvswitch: Allow user space to announce ability to accept unaligned Netlink messages (Francesco Fusco) [1057099]
-- [net] Export skb_zerocopy() to zerocopy from one skb to another (Francesco Fusco) [1057099]
-- [net] nf_queue: add NFQA_SKB_CSUM_NOTVERIFIED info flag (Francesco Fusco) [1057099]
-- [net] openvswitch: remove duplicated include from flow_table.c (Francesco Fusco) [1057099]
-- [net] openvswitch: use kfree_rcu instead of rcu_free_{sw_flow_mask_cb, acts_callback} (Francesco Fusco) [1057099]
-- [net] openvswitch: Per cpu flow stats (Francesco Fusco) [1057099]
-- [net] openvswitch: Enable memory mapped Netlink i/o (Francesco Fusco) [1057099]
-- [net] netlink: Avoid netlink mmap alloc if msg size exceeds frame size (Francesco Fusco) [1057099]
-- [net] genl: Add genlmsg_new_unicast() for unicast message allocation (Francesco Fusco) [1057099]
-- [net] openvswitch: Silence RCU lockdep checks from flow lookup (Francesco Fusco) [1057099]
-- [net] openvswitch: Change ovs_flow_tbl_lookup_xx() APIs (Francesco Fusco) [1057099]
-- [net] openvswitch: Shrink sw_flow_mask by 8 bytes (64-bit) or 4 bytes (32-bit) (Francesco Fusco) [1057099]
-- [net] openvswitch: Correct comment (Francesco Fusco) [1057099]
-- [net] Add utility functions to clear rxhash (Francesco Fusco) [1057099]
-- [net] openvswitch: use CRC32 accelerated flow hash if available (Francesco Fusco) [1057099]
-- [lib] hash: follow-up fixups for arch hash (Francesco Fusco) [1057099]
-- [lib] hash: Add missing arch generic-y entries for asm-generic/hash.h (Francesco Fusco) [1057099]
-- [lib] hash: introduce arch optimized hash library (Francesco Fusco) [1057099]
-- [net] rtnl: make ifla_policy static (Jiri Pirko) [1066614]
-- [net] ip, ipv6: handle gso skbs in forwarding path (Florian Westphal) [1065299]
-- [net] introduce netif_skb_dev_features (Florian Westphal) [1065299]
-- [net] add and use skb_gso_transport_seglen() (Florian Westphal) [1065299]
-- [net] bridge: separate querier and query timer into IGMP/IPv4 and MLD/IPv6 ones (Florian Westphal) [1065257]
-- [net] bridge: send query as soon as leave is received (Florian Westphal) [1065257]
-- [net] gro: remove a sparse error (Thomas Graf) [1051111]
-- [net] ipv4: Use proper RCU APIs for writer-side in udp_offload.c (Thomas Graf) [1051111]
-- [net] vxlan: Go over all candidate streams for GRO matching (Thomas Graf) [1051111]
-- [net] ipv4: Use non-atomic allocation of udp offloads structure instance (Thomas Graf) [1051111]
-- [net] ipv4: udp_offload: Handle static checker complaints (Thomas Graf) [1051111]
-- [net] vxlan: Share RX skb de-marking and checksum checks with ovs (Thomas Graf) [1051111]
-- [net] vxlan: Add GRO support for vxlan traffic (Thomas Graf) [1051111]
-- [net] vxlan: use __dev_get_by_index instead of dev_get_by_index to find interface (Thomas Graf) [1051111]
-- [net] vxlan: keep original skb ownership (Thomas Graf) [1051111]
-- [net] vxlan: remove vxlan_group_used in vxlan_open (Thomas Graf) [1051111]
-- [net] vxlan: release rt when found circular route (Thomas Graf) [1051111]
-- [net] vxlan: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(...)) (Thomas Graf) [1051111]
-- [net] vxlan: Have the NIC drivers do less work for offloads (Thomas Graf) [1051111]
-- [net] vxlan: silence one build warning (Thomas Graf) [1051111]
-- [net] vxlan: Use RCU apis to access sk_user_data (Thomas Graf) [1051111]
-- [net] vxlan: Avoid creating fdb entry with NULL destination (Thomas Graf) [1051111]
-- [net] vxlan: Fix sparse warnings (Thomas Graf) [1051111]
-- [net] vxlan: Notify drivers for listening UDP port changes (Thomas Graf) [1051111]
-- [net] vxlan: Optimize vxlan rcv (Thomas Graf) [1051111]
-- [net] Export gro_find_by_type helpers (Thomas Graf) [1051111]
-- [net] Add GRO support for UDP encapsulating protocols (Thomas Graf) [1051111]
-- [net] gro: change GRO overflow strategy (Thomas Graf) [1051111]
-- [net] gre_offload: fix sparse non static symbol warning (Thomas Graf) [1051111]
-- [net] gre: gro: Add GRE support to the GRO stack (Thomas Graf) [1051111]
-- [net] ipv4: don't use module_init in non-modular gre_offload (Thomas Graf) [1051111]
-- [net] gre_offload: statically build GRE offloading support (Thomas Graf) [1051111]
-- [net] ipv6: Fix alleged compiler warning in ipv6_exthdrs_len() (Thomas Graf) [1051111]
-- [net] ipv6: fix compiler warning in ipv6_exthdrs_len (Thomas Graf) [1051111]
-- [net] gro: Prepare GRO stack for the upcoming tunneling support (Thomas Graf) [1051111]
-- [net] gro: small napi_get_frags() optim (Thomas Graf) [1051111]
-- [net] tcp: do not export tcp_gso_segment() and tcp_gro_receive() (Thomas Graf) [1051111]
-- [net] gro: Clean up tcpX_gro_receive checksum verification (Thomas Graf) [1051111]
-- [net] gro: Only verify TCP checksums for candidates (Thomas Graf) [1051111]
-- [net] gso: handle new frag_list of frags GRO packets (Thomas Graf) [1051111]
-- [net] gro: allow to build full sized skb (Thomas Graf) [1051111]
-- [net] tcp: gso: fix truesize tracking (Thomas Graf) [1051111]
-- [net] tcp: rename tcp_tso_segment() (Thomas Graf) [1051111]
-- [net] gro: should aggregate frames without DF (Thomas Graf) [1051111]
-- [net] sit: fix use after free of fb_tunnel_dev (Jiri Pirko) [1060210]
-- [net] sit: allow to use rtnl ops on fb tunnel (Jiri Pirko) [1060210]
-- [net] ip6tnl: fix use after free of fb_tnl_dev (Jiri Pirko) [1012835]
-- [net] ip6tnl: allow to use rtnl ops on fb tunnel (Jiri Pirko) [1012835]
-- [net] ip6tnl: add x-netns support (Jiri Pirko) [1012835]
-- [net] Correctly sync addresses from multiple sources to single device (Vlad Yasevich) [1059394]
-
-* Fri Feb 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-92.el7]
-- [fs] xfs: ensure correct log item buffer alignment (Brian Foster) [1059843]
-- [fs] xfs: ensure correct timestamp updates from truncate (Brian Foster) [1059843]
-- [fs] xfs: remove XFS_TRANS_DEBUG dead code (Brian Foster) [1059843]
-- [fs] xfs: return -E2BIG if hit the maximum size limits of ACLs (Brian Foster) [1059843]
-- [fs] xfs: sanitize sb_inopblock in xfs_mount_validate_sb (Brian Foster) [1059843]
-- [fs] xfs: convert xfs_log_commit_cil() to void (Brian Foster) [1059843]
-- [fs] xfs: use tr_qm_dqalloc log reservation for dquot alloc (Brian Foster) [1059843]
-- [fs] xfs: remove unused tr_swrite (Brian Foster) [1059843]
-- [fs] xfs: use tr_growrtalloc for growing rt files (Brian Foster) [1059843]
-- [fs] xfs: Calling destroy_work_on_stack() to pair with INIT_WORK_ONSTACK() (Brian Foster) [1059843]
-- [fs] xfs: fix off-by-one error in xfs_attr3_rmt_verify (Brian Foster) [1059843]
-- [fs] xfs: assert that we hold the ilock for extent map access (Brian Foster) [1059843]
-- [fs] xfs: use xfs_ilock_attr_map_shared in xfs_attr_list_int (Brian Foster) [1059843]
-- [fs] xfs: use xfs_ilock_attr_map_shared in xfs_attr_get (Brian Foster) [1059843]
-- [fs] xfs: use xfs_ilock_data_map_shared in xfs_qm_dqiterate (Brian Foster) [1059843]
-- [fs] xfs: use xfs_ilock_data_map_shared in xfs_qm_dqtobp (Brian Foster) [1059843]
-- [fs] xfs: take the ilock around xfs_bmapi_read in xfs_zero_remaining_bytes (Brian Foster) [1059843]
-- [fs] xfs: reinstate the ilock in xfs_readdir (Brian Foster) [1059843]
-- [fs] xfs: add xfs_ilock_attr_map_shared (Brian Foster) [1059843]
-- [fs] xfs: rename xfs_ilock_map_shared (Brian Foster) [1059843]
-- [fs] xfs: remove xfs_iunlock_map_shared (Brian Foster) [1059843]
-- [fs] xfs: no need to lock the inode in xfs_find_handle (Brian Foster) [1059843]
-- [fs] xfs: abort metadata writeback on permanent errors (Brian Foster) [1059843]
-- [fs] xfs: swalloc doesn't align allocations properly (Brian Foster) [1059843]
-- [fs] xfs: remove xfsbdstrat error (Brian Foster) [1059843]
-- [fs] xfs: use xfs_icluster_size_fsb in xfs_imap (Brian Foster) [1059843]
-- [fs] xfs: use xfs_icluster_size_fsb in xfs_ifree_cluster (Brian Foster) [1059843]
-- [fs] xfs: use xfs_icluster_size_fsb in xfs_ialloc_inode_init (Brian Foster) [1059843]
-- [fs] xfs: use xfs_icluster_size_fsb in xfs_bulkstat (Brian Foster) [1059843]
-- [fs] xfs: introduce a common helper xfs_icluster_size_fsb (Brian Foster) [1059843]
-- [fs] xfs: get rid of XFS_IALLOC_BLOCKS macros (Brian Foster) [1059843]
-- [fs] xfs: get rid of XFS_INODE_CLUSTER_SIZE macros (Brian Foster) [1059843]
-- [fs] xfs: get rid of XFS_IALLOC_INODES macros (Brian Foster) [1059843]
-- [fs] xfs: remove the quotaoff log format from the quotaoff log item (Brian Foster) [1059843]
-- [fs] xfs: remove the dquot log format from the dquot log item (Brian Foster) [1059843]
-- [fs] xfs: remove the inode log format from the inode log item (Brian Foster) [1059843]
-- [fs] xfs: format logged extents directly into the CIL (Brian Foster) [1059843]
-- [fs] xfs: format log items write directly into the linear CIL buffer (Brian Foster) [1059843]
-- [fs] xfs: introduce xlog_copy_iovec (Brian Foster) [1059843]
-- [fs] xfs: refactor xfs_inode_item_format (Brian Foster) [1059843]
-- [fs] xfs: refactor xfs_inode_item_size (Brian Foster) [1059843]
-- [fs] xfs: refactor xfs_buf_item_format_segment (Brian Foster) [1059843]
-- [fs] xfs: remove duplicate code in xlog_cil_insert_format_items (Brian Foster) [1059843]
-- [fs] xfs: align initial file allocations correctly (Brian Foster) [1059843]
-- [fs] xfs: fix calculation of freed inode cluster blocks (Brian Foster) [1059843]
-- [fs] xfs: xfs_dir2_block_to_sf temp buffer allocation fails (Brian Foster) [1059843]
-- [fs] xfs: fix infinite loop by detaching the group/project hints from user dquot (Brian Foster) [1059843]
-- [fs] xfs: fix assertion failure at xfs_setattr_nonsize (Brian Foster) [1059843]
-- [fs] xfs: add xfs_setattr_time (Brian Foster) [1059843]
-- [fs] xfs: tiny xfs_setattr_mode cleanup (Brian Foster) [1059843]
-- [fs] xfs: fix false assertion at xfs_qm_vop_create_dqattach (Brian Foster) [1059843]
-- [fs] xfs: integrate xfs_quota_priv header file to xfs_qm (Brian Foster) [1059843]
-- [fs] xfs: make quota metadata truncation behavior consistent to user space (Brian Foster) [1059843]
-- [fs] xfs: fix memory leak in xfs_dir2_node_removename (Brian Foster) [1059843]
-- [fs] xfs: free the list of recovery items on error (Brian Foster) [1059843]
-- [fs] xfs: growfs overruns AGFL buffer on V4 filesystems (Brian Foster) [1059843]
-- [fs] xfs: don't perform discard if the given range length is less than block size (Brian Foster) [1059843]
-- [fs] xfs: fix the comment explaining xfs_trans_dqlockedjoin (Brian Foster) [1059843]
-- [fs] xfs: underflow bug in xfs_attrlist_by_handle() (Brian Foster) [1059843 1034667] {CVE-2013-6382}
-- [fs] xfs: remove unused FI_ flags (Brian Foster) [1059843]
-- [fs] xfs: open code inc_inode_iversion when logging an inode (Brian Foster) [1059843]
-- [fs] xfs: increase inode cluster size for v5 filesystems (Brian Foster) [1059843]
-- [fs] xfs: fix unlock in xfs_bmap_add_attrfork (Brian Foster) [1059843]
-- [fs] xfs: simplify kmem_(zone_)zalloc (Brian Foster) [1059843]
-- [fs] xfs: add tracepoints to AGF/AGI read operations (Brian Foster) [1059843]
-- [fs] xfs: trace AIL manipulations (Brian Foster) [1059843]
-- [fs] xfs: xfs_remove deadlocks due to inverted AGF vs AGI lock ordering (Brian Foster) [1059843]
-- [fs] xfs: fix the extent count when allocating an new indirection array entry (Brian Foster) [1059843]
-- [fs] xfs: be more forgiving of a v4 secondary sb w/ junk in v5 fields (Brian Foster) [1059843]
-- [fs] xfs: fix possible NULL dereference in xlog_verify_iclog (Brian Foster) [1059843]
-- [fs] xfs:xfs_dir2_node.c: pointer use before check for null (Brian Foster) [1059843]
-- [fs] xfs: prevent stack overflows from page cache allocation (Brian Foster) [1059843]
-- [fs] xfs: fix static and extern sparse warnings (Brian Foster) [1059843]
-- [fs] xfs: validity check the directory block leaf entry count (Brian Foster) [1059843]
-- [fs] xfs: make dir2 ftype offset pointers explicit (Brian Foster) [1059843]
-- [fs] xfs: convert directory vector functions to constants (Brian Foster) [1059843]
-- [fs] xfs: convert directory vector functions to constants (Brian Foster) [1059843]
-- [fs] xfs: vectorise encoding/decoding directory headers (Brian Foster) [1059843]
-- [fs] xfs: vectorise DA btree operations (Brian Foster) [1059843]
-- [fs] xfs: vectorise directory leaf operations (Brian Foster) [1059843]
-- [fs] xfs: vectorise directory data operations part 2 (Brian Foster) [1059843]
-- [fs] xfs: vectorise directory data operations (Brian Foster) [1059843]
-- [fs] xfs: vectorise remaining shortform dir2 ops (Brian Foster) [1059843]
-- [fs] xfs: abstract the differences in dir2/dir3 via an ops vector (Brian Foster) [1059843]
-- [fs] xfs: split xfs_rtalloc.c for userspace sanity (Brian Foster) [1059843]
-- [fs] xfs: decouple inode and bmap btree header files (Brian Foster) [1059843]
-- [fs] xfs: decouple log and transaction headers (Brian Foster) [1059843]
-- [fs] xfs: remove unused transaction callback variables (Brian Foster) [1059843]
-- [fs] xfs: split dquot buffer operations out (Brian Foster) [1059843]
-- [fs] xfs: unify directory/attribute format definitions (Brian Foster) [1059843]
-- [fs] xfs: create a shared header file for format-related information (Brian Foster) [1059843]
-- [fs] xfs: fold xfs_change_file_space into xfs_ioc_space (Brian Foster) [1059843]
-- [fs] xfs: simplify the fallocate path (Brian Foster) [1059843]
-- [fs] xfs: always hold the iolock when calling xfs_change_file_space (Brian Foster) [1059843]
-- [fs] xfs: remove the unused XFS_ATTR_NONBLOCK flag (Brian Foster) [1059843]
-- [fs] xfs: always take the iolock around xfs_setattr_size (Brian Foster) [1059843]
-- [fs] xfs: don't break from growfs ag update loop on error (Brian Foster) [1059843]
-- [fs] xfs: don't emit corruption noise on fs probes (Brian Foster) [1059843]
-- [fs] xfs: remove newlines from strings passed to __xfs_printk (Brian Foster) [1059843]
-- [fs] xfs: prevent deadlock trying to cover an active log (Brian Foster) [1059843]
-- [fs] xfs: clean up xfs_inactive() error handling, kill VN_INACTIVE_(NO)CACHE (Brian Foster) [1059843]
-- [fs] xfs: push down inactive transaction mgmt for ifree (Brian Foster) [1059843]
-- [fs] xfs: push down inactive transaction mgmt for truncate (Brian Foster) [1059843]
-- [fs] xfs: push down inactive transaction mgmt for remote symlinks (Brian Foster) [1059843]
-- [fs] xfs: add the inode directory type support to XFS_IOC_FSGEOM (Brian Foster) [1059843]
-- [fs] xfs: remove usage of is_bad_inode (Brian Foster) [1059843]
-- [fs] xfs: fix the wrong new_size/rnew_size at xfs_iext_realloc_direct() (Brian Foster) [1059843]
-- [fs] xfs: get rid of count from xfs_iomap_write_allocate() (Brian Foster) [1059843]
-- [fs] xfs: Use kmem_free() instead of free() (Brian Foster) [1059843]
-- [fs] xfs: fix memory leak in xlog_recover_add_to_trans (Brian Foster) [1059843]
-- [fs] xfs: dirent dtype presence is dependent on directory magic numbers (Brian Foster) [1059843]
-- [fs] xfs: lockdep needs to know about 3 dquot-deep nesting (Brian Foster) [1059843]
-- [fs] xfs: log recovery lsn ordering needs uuid check (Brian Foster) [1059843]
-- [fs] xfs: fix XFS_IOC_FREE_EOFBLOCKS definition (Brian Foster) [1059843]
-- [fs] xfs: asserting lock not held during freeing not valid (Brian Foster) [1059843]
-- [fs] xfs: lock the AIL before removing the buffer item (Brian Foster) [1059843]
-- [fs] ext4: yield during large unlinks (Lukas Czerner) [1044544]
-- [fs] ext4: implement error handling of ext4_mb_new_preallocation() (Lukas Czerner) [1044544]
-- [fs] ext4: return FIEMAP_EXTENT_UNKNOWN for delalloc extents (Lukas Czerner) [1044544]
-- [fs] jbd2: fix duplicate debug label for phase 2 (Lukas Czerner) [1044544]
-- [fs] jbd2: drop checkpoint mutex when waiting in __jbd2_log_wait_for_space() (Lukas Czerner) [1044544]
-- [fs] jbd2: remove unused waitqueues (Lukas Czerner) [1044544]
-- [fs] jbd2: fix race in t_outstanding_credits update in jbd2_journal_extend() (Lukas Czerner) [1044544]
-- [fs] ext4: fix use of potentially uninitialized variables in debugging code (Lukas Czerner) [1044544]
-- [fs] ext4: check error return from ext4_write_inline_data_end() (Lukas Czerner) [1044544]
-- [fs] jbd2: relocate assert after state lock in journal_commit_transaction() (Lukas Czerner) [1044544]
-- [fs] ext4: add cond_resched() to ext4_free_blocks() & ext4_mb_regular_allocator() (Lukas Czerner) [1044544]
-- [fs] ext4: optimize test_root() (Lukas Czerner) [1044544]
-- [fs] ext4: add sanity check to ext4_get_group_info() (Lukas Czerner) [1044544]
-- [fs] ext4: verify group number in verify_group_input() before using it (Lukas Czerner) [1044544]
-- [fs] ext4: add check to io_submit_init_bio (Lukas Czerner) [1044544]
-- [fs] Fix race when checking i_size on direct i/o read (Robert S Peterson) [1052927]
-- [fs] gfs2: No need to invalidate pages for a dio read (Robert S Peterson) [1052927]
-- [fs] gfs2: Wait for async DIO in glock state changes (Robert S Peterson) [1052927]
-- [fs] gfs2: Fix incorrect invalidation for DIO/buffered I/O (Robert S Peterson) [1052927]
-- [fs] xfs: allow logical-sector sized O_DIRECT (Eric Sandeen) [999239]
-- [fs] xfs: rename xfs_buftarg structure members (Eric Sandeen) [999239]
-- [fs] xfs: clean up xfs_buftarg (Eric Sandeen) [999239]
-- [fs] xfs: simplify xfs_setsize_buftarg callchain; remove unused arg (Eric Sandeen) [999239]
-- [fs] sunrpc: Don't create a gss auth cache unless rpc.gssd is running (Steve Dickson) [1063752]
-- [fs] gfs2: journal data writepages update (Robert S Peterson) [1010452]
-- [fs] nfs: Fix SP4_MACH_CRED negotiation in EXCHANGE_ID (Steve Dickson) [1063509]
-- [fs] gfs2: Add hints to directory leaf blocks (Robert S Peterson) [1062143]
-- [fs] gfs2: Lock i_mutex and use a local gfs2_holder for fallocate (Robert S Peterson) [1062305]
-- [fs] compat: fix lookup_dcookie() parameter handling (Hendrik Brueckner) [1060203]
-- [fs] compat: fix parameter handling for compat readv/writev syscalls (Hendrik Brueckner) [1049599]
-
-* Fri Feb 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-91.el7]
-- [kernel] sched: Fix endless sync_sched/rcu() loop inside _cpu_down() (Rik van Riel) [1062647]
-- [kernel] sched: Remove extra put_online_cpus() inside sched_setaffinity() (Rik van Riel) [1062647]
-- [kernel] sched: Remove get_online_cpus() usage (Rik van Riel) [1062647]
-- [mm] move mmu notifier call from change_protection to change_pmd_range (Rik van Riel) [1066655]
-- [mm] numa: reorganize change_pmd_range (Rik van Riel) [1066655]
-- [kernel] sched/numa: add cond_resched to task_numa_work (Rik van Riel) [1066655]
-- [cpufreq] intel_pstate: Fail initialization if P-state information is missing (Marcelo Tosatti) [1061481]
-- [cpufreq] intel_pstate: Add X86_FEATURE_APERFMPERF to cpu match (Marcelo Tosatti) [1061481]
-- [ethernet] bnx2x: More Shutdown revisions (Michal Schmidt) [1046885]
-- [ethernet] bnx2x: Don't release PCI bars on shutdown (Michal Schmidt) [1046885]
-- [security] keys, shmem: implement kernel private shmem inodes (Paul Moore) [1031154 1034833]
-
-* Wed Feb 19 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-90.el7]
-- [drm] nouveau/devinit: prevent use of engines marked as disabled by hw/vbios (Rob Clark) [1054409]
-- [drm] nouveau/device: provide a way for devinit to mark engines as disabled (Rob Clark) [1054409]
-- [drm] nouveau/devinit: tidy up the subdev class definition (Rob Clark) [1054409]
-- [drm] nouveau: populate master subdev pointer only when fully constructed (Rob Clark) [1054409]
-- [drm] nouveau/i2c: use a custom bitbanging delay for the adt7473 (Rob Clark) [1054409]
-- [drm] nouveau/bios: fix offset calculation for BMPv1 bioses (Rob Clark) [1054409]
-- [drm] nouveau: return offset of allocated notifier (Rob Clark) [1054409]
-- [drm] nouveau/bios: make jump conditional (Rob Clark) [1054409]
-- [drm] nouveau: fix mthd data submission (Rob Clark) [1054409]
-- [drm] nouveau/disp: min/max are reversed in nv50_crtc_gamma_set() (Rob Clark) [1054409]
-- [drm] nouveau/sw: fix oops if gpu has its display block disabled (Rob Clark) [1054409]
-- [drm] nouveau/kms: send timestamp data for correct head in flip completion events (Rob Clark) [1054409]
-- [drm] nouveau: do not map evicted vram buffers in nouveau_bo_vma_add (Rob Clark) [1054409]
-- [drm] nouveau: shift wrapping bug in nvc0_grctx_generate_r406800 (Rob Clark) [1054409]
-- [drm] nouveau: allow nouveau_fence_ref() to be a noop (Rob Clark) [1054409]
-- [drm] nouveau: consider CLASS_DISPLAY_3D devices while detecting dsm/optimus (Rob Clark) [1054409]
-- [drm] nouveau: only runtime suspend by default in optimus configuration (Rob Clark) [1054409]
-- [drm] radeon: set correct pipe config for Hawaii in DCE (Rob Clark) [1054409]
-- [drm] radeon: 0x9649 is SUMO2 not SUMO (Rob Clark) [1054409]
-- [drm] radeon: expose render backend mask to the userspace (Rob Clark) [1054409]
-- [drm] radeon: fix render backend setup for SI and CIK (Rob Clark) [1054409]
-- [drm] radeon: fix UVD 256MB check (Rob Clark) [1054409]
-- [drm] i915: Use the correct GMCH_CTRL register for Sandybridge+ (Rob Clark) [1054409]
-- [drm] i915: change CRTC assertion on LCPLL disable (Rob Clark) [1054409]
-- [drm] i915: Fix erroneous dereference of batch_obj inside reset_status (Rob Clark) [1054409]
-- [drm] radeon: fix asic gfx values for scrapper asics (Rob Clark) [1054409]
-- [drm] radeon: check for 0 count in speaker allocation and SAD code (Rob Clark) [1054409]
-- [drm] radeon/dpm: disable ss on Cayman (Rob Clark) [1054409]
-- [drm] i915: don't update the dri1 breadcrumb with modesetting (Rob Clark) [1054409]
-- [drm] i915: Fix use-after-free in do_switch (Rob Clark) [1054409]
-- [drm] i915: Hold mutex across i915_gem_release (Rob Clark) [1054409]
-- [drm] i915: Take modeset locks around intel_modeset_setup_hw_state() (Rob Clark) [1054409]
-- [drm] radeon: add missing display tiling setup for oland (Rob Clark) [1054409]
-- [drm] radeon: fix typo in cik_copy_dma (Rob Clark) [1054409]
-- [drm] radeon: Fix sideport problems on certain RS690 boards (Rob Clark) [1054409]
-- [drm] ttm: Fix accesses through vmas with only partial coverage (Rob Clark) [1054409]
-- [drm] edid: add quirk for BPC in Samsung NP700G7A-S01PL notebook (Rob Clark) [1054409]
-- [drm] i915/vlv: fix up broken precision in vlv_crtc_clock_get (Rob Clark) [1054409]
-- [drm] i915/vlv: add VLV specific clock_get function v3 (Rob Clark) [1054409]
-- [drm] i915/vlv: untangle integrated clock source handling v4 (Rob Clark) [1054409]
-- [drm] radeon/atom: fix bus probes when hw_i2c is set (Rob Clark) [1054409]
-- [drm] radeon: fixup bad vram size on SI (Rob Clark) [1054409]
-- [drm] radeon: program DCE2 audio dto just like DCE3 (Rob Clark) [1054409]
-- [drm] radeon: fix typo in fetching mpll params (Rob Clark) [1054409]
-- [drm] i915: use the correct force_wake function at the PC8 code (Rob Clark) [1054409]
-- [drm] i915: Fix pipe CSC post offset calculation (Rob Clark) [1054409]
-- [drm] udl: fix issue with imported prime buffers (Rob Clark) [1054409]
-- [drm] radeon: adjust TN dpm parameters for stability (Rob Clark) [1054409]
-- [drm] radeon: hook up backlight functions for CI and KV family (Rob Clark) [1054409]
-- [drm] radeon/i2c: do not count reg index in number of i2c byte we are writing (Rob Clark) [1054409]
-- [drm] radeon: fix UVD destroy IB size (Rob Clark) [1054409]
-- [drm] i915: Replicate BIOS eDP bpp clamping hack for hsw (Rob Clark) [1054409]
-- [drm] i915: restore the early forcewake cleanup (Rob Clark) [1054409]
-- [drm] i915/dvo: call ->mode_set callback only when the port is running (Rob Clark) [1054409]
-- [drm] vmwgfx: Resource evict fixes (Rob Clark) [1054409]
-- [drm] i915: fix compiler warning (Rob Clark) [1054409]
-- [drm] allow DRM_IOCTL_VERSION on render-nodes (Rob Clark) [1054409]
-- [drm] i915: Fix the PPT fdi lane bifurcate state handling on ivb (Rob Clark) [1054409]
-- [drm] i915: No LVDS hardware on Intel D410PT and D425KT (Rob Clark) [1054409]
-- [drm] i915/dp: workaround BIOS eDP bpp clamping issue (Rob Clark) [1054409]
-- [drm] i915: Add HSW CRT output readout support (Rob Clark) [1054409]
-- [drm] i915: Add support for pipe_bpp readout (Rob Clark) [1054409]
-- [drm] radeon/dpm: fix incompatible casting on big endian (Rob Clark) [1054409]
-- [drm] radeon: disable bapm on KB (Rob Clark) [1054409]
-- [drm] radeon: use sw CTS/N values for audio on DCE4+ (Rob Clark) [1054409]
-- [s390] crypto: Fix aes-cbc IV corruption (Hendrik Brueckner) [1063810]
-- [s390] appldata: restore missing init_virt_timer() (Hendrik Brueckner) [1064246]
-- [s390] mm: Fix dump memory detection (Hendrik Brueckner) [1064244]
-- [s390] fix kernel crash due to linkage stack instructions (Hendrik Brueckner) [1059732]
-- [s390] crypto: fix des and des3_ede ctr concurrency issue (Hendrik Brueckner) [1062269]
-- [s390] crypto: fix des and des3_ede cbc concurrency issue (Hendrik Brueckner) [1062266]
-- [s390] crypto: fix concurrency issue in aes-ctr mode (Hendrik Brueckner) [1062260]
-- [ethernet] cxgb4: Fix referencing freed adapter (Steve Best) [1063483]
-- [mm] oom: base root bonus on current usage (Johannes Weiner) [822790]
-- [kernel] lockdep: increase MAX_LOCKDEP_ENTRIES (Kyle McMartin) [989385]
-- [scripts] tags.sh: ignore redhat/rpm (Prarit Bhargava) [1065511]
-- [security] selinux: Fix kernel BUG on empty security contexts (Paul Moore) [1064548]
-- [security] selinux: add SOCK_DIAG_BY_FAMILY to the list of netlink message types (Paul Moore) [1022394]
-- [powerpc] eeh: Drop taken reference to driver on eeh_rmv_device (Steve Best) [1059851]
-- [scripts] tags.sh: Ignore *.mod.c (Mark Langsdorf) [1062383]
-- [mm] keep page cache radix tree nodes in check (Johannes Weiner) [1062372]
-- [lib] radix_tree: tree node interface (Johannes Weiner) [1062372]
-- [mm] thrash detection-based file cache sizing (Johannes Weiner) [1062372]
-- [mm] store shadow entries in page cache (Johannes Weiner) [1062372]
-- [lib] radix-tree: radix_tree_delete_item() (Johannes Weiner) [1062372]
-- [mm] shmem: save one radix tree lookup when truncating swapped pages (Johannes Weiner) [1062372]
-- [mm] prepare for non-page entries in page cache radix trees (Johannes Weiner) [1062372]
-- [mm] vmstat: fix UP zone state accounting (Johannes Weiner) [1062372]
-- [mm] filemap: move radix tree hole searching here (Johannes Weiner) [1062372]
-- [fs] cachefiles: use add_to_page_cache_lru() (Johannes Weiner) [1062372]
-- [mm] page_alloc: revert NUMA aspect of fair allocation policy (Johannes Weiner) [1062372]
-- [mm] page_alloc: fair zone allocator policy (Johannes Weiner) [1062372]
-- [mm] memory-failure: shift page lock from head page to tail page after thp split (Naoya Horiguchi) [1051704]
-- [fs] proc/page: add PageAnon check to surely detect thp (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: transfer page count from head page to tail page after split thp (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: recheck PageHuge() after hugetlb page migrate successfully (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: move set_migratetype_isolate() outside get_any_page() (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: fix false report on 2nd attempt at page recovery (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: fix test for a transparent huge page (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: fix bug triggered by unpoisoning empty zero page (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: don't set migration type twice to avoid holding heavily contend zone->lock (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: replace atomic_long_sub() with atomic_long_dec() (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: fix race against poison thp (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: don't need to hold compound lock for hugetlbfs page (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: fix loss of PG_dirty for errors on mlocked pages (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: always unset MIGRATE_ISOLATE before returning from soft_offline_page() (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: fix memory leak in successful soft offlining (Naoya Horiguchi) [1051704]
-- [virt] kvm: move KVM_CAP_HYPERV_TIME outside #ifdef (Vadim Rozenfeld) [1057170]
-- [virt] kvm: add support for Hyper-V reference time counter (Vadim Rozenfeld) [1057170]
-- [input] wacom: not all multi-interface devices support touch (Aristeu Rozanski) [1022595]
-- [input] wacom: add support for three new Intuos Pro devices (Aristeu Rozanski) [1022595]
-- [input] wacom: LED is only supported through digitizer interface (Aristeu Rozanski) [1022595]
-- [input] wacom: testing result shows get_report is unnecessary (Aristeu Rozanski) [1022595]
-- [input] wacom: send proper tablet state info when pen leaves proximity (Aristeu Rozanski) [1022595]
-- [input] wacom: fix error return code in wacom_probe() (Aristeu Rozanski) [1022595]
-- [input] wacom: integrate resolution calculation (Aristeu Rozanski) [1022595]
-- [fs] buffer: __set_page_dirty uses spin_lock_irqsave instead of spin_lock_irq (Motohiro Kosaki) [1057270]
-- [mm] __set_page_dirty_nobuffers uses spin_lock_irqseve instead of spin_lock_irq (Motohiro Kosaki) [1057270]
-- [virt] hv/ballon: Make pressure posting thread sleep interruptibly (Luiz Capitulino) [1065107]
-- [input] hyperv-keyboard: pass through 0xE1 prefix (Jason Wang) [1044874]
-- [mm] drop_caches: add some documentation and info message (Johannes Weiner) [838935]
-- [scsi] megaraid_sas: Performance boost fixes (Tomas Henzl) [1064509]
-- [scsi] megaraid_sas: Set 32-bit DMA mask (Tomas Henzl) [1064509]
-- [scsi] megaraid_sas: Big endian code related fixes (Tomas Henzl) [1064509]
-- [scsi] megaraid_sas: Don't wait forever for non-IOCTL DCMDs (Tomas Henzl) [1064509]
-
-* Fri Feb 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-89.el7]
-- [powerpc] Fix kdump hang issue on p8 with relocation on exception enabled (Steve Best) [1056321]
-- [powerpc] pseries: Disable relocation on exception while going down during crash (Steve Best) [1056321]
-- [kernel] sched/debug: Fix formatting of /proc/<PID>/sched (Rik van Riel) [1064583]
-- [kernel] sched/fair: Remove unused variable from expire_cfs_rq_runtime() (Rik van Riel) [1064583]
-- [mm] vmscan: do not scale writeback pages when deciding whether to set ZONE_WRITEBACK (Rafael Aquini) [1009508]
-- [mm] vmscan: do not continue scanning if reclaim was aborted for compaction (Rafael Aquini) [1009508]
-- [ethernet] bnx2{,x}: Make module parameters readable (Neil Horman) [1062836]
-- [ethernet] bnx2x: namespace and dead code cleanups (Neil Horman) [1062836]
-- [drm] radeon: remove generic rptr/wptr functions (Steve Best) [1048290]
-- [block] nvme: Namespace use after free on surprise removal (David Milburn) [1062640]
-- [block] nvme: Correct uses of INIT_WORK (David Milburn) [1062640]
-- [block] nvme: Include device and queue numbers in interrupt name (David Milburn) [1062640]
-- [block] nvme: Add a pci_driver shutdown method (David Milburn) [1062640]
-
-* Thu Feb 13 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-88.el7]
-- [mm] hugetlb: correct missing private flag clearing (Steve Best) [1062671]
-- [mm] hugetlb: return a reserved page to a reserved pool if failed (Steve Best) [1062671]
-- [mm] hugetlb: fix subpool accounting handling (Steve Best) [1062671]
-- [mm] hugetlb: protect reserved pages when soft offlining a hugepage (Steve Best) [1062671]
-- [mm] hugetlb: decrement reserve count if VM_NORESERVE alloc page cache (Steve Best) [1062671]
-- [mm] hugetlb: remove decrement_hugepage_resv_vma() (Steve Best) [1062671]
-- [mm] hugetlb: clean-up alloc_huge_page() (Steve Best) [1062671]
-- [mm] hugetlb: add VM_NORESERVE check in vma_has_reserves() (Steve Best) [1062671]
-- [mm] hugetlb: do not use a page in page cache for cow optimization (Steve Best) [1062671]
-- [s390] uapi: fix struct statfs64 definition (Hendrik Brueckner) [1060191]
-- [ethernet] myri10ge: Add support for ndo_busy_poll (Stanislaw Gruszka) [1059561]
-- [ethernet] be2net: add dma_mapping_error() check for dma_map_page() (Ivan Vecera) [995992]
-- [infiniband] srp: Avoid offlining operational SCSI devices (Doug Ledford) [1046103]
-- [infiniband] srp: Remove target from list before freeing Scsi_Host structure (Doug Ledford) [1046103]
-- [infiniband] srp: Add change_queue_depth and change_queue_type support (Doug Ledford) [1046103]
-- [infiniband] srp: Make queue size configurable (Doug Ledford) [1046103]
-- [infiniband] srp: Introduce srp_alloc_req_data() (Doug Ledford) [1046103]
-- [infiniband] srp: Export sgid to sysfs (Doug Ledford) [1046103]
-- [infiniband] srp: Add periodic reconnect functionality (Doug Ledford) [1046103]
-- [scsi] scsi_transport_srp: Add periodic reconnect support (Doug Ledford) [1046103]
-- [infiniband] srp: Start timers if a transport layer error occurs (Doug Ledford) [1046103]
-- [infiniband] srp: Use SRP transport layer error recovery (Doug Ledford) [1046103]
-- [scsi] scsi_transport_srp: Add transport layer error handling (Doug Ledford) [1046103]
-- [infiniband] srp: Keep rport as long as the IB transport layer (Doug Ledford) [1046103]
-- [infiniband] srp: Make transport layer retry count configurable (Doug Ledford) [1046103]
-- [infiniband] srp: Let srp_abort() return FAST_IO_FAIL if TL offline (Doug Ledford) [1046103]
-- [infiniband] srp: Bump driver version and release date (Doug Ledford) [1046103]
-- [infiniband] srp: Make HCA completion vector configurable (Doug Ledford) [1046103]
-- [infiniband] srp: Maintain a single connection per I_T nexus (Doug Ledford) [1046103]
-- [infiniband] srp: Fail I/O fast if target offline (Doug Ledford) [1046103]
-- [infiniband] srp: Skip host settle delay (Doug Ledford) [1046103]
-- [infiniband] srp: Avoid skipping srp_reset_host() after a transport error (Doug Ledford) [1046103]
-- [infiniband] srp: Fix remove_one crash due to resource exhaustion (Doug Ledford) [1046103]
-- [infiniband] iser-target: Move INIT_WORK setup into isert_create_device_ib_res (Andy Grover) [1051179]
-- [infiniband] iser-target: fix error return code in isert_create_device_ib_res() (Andy Grover) [1051179]
-- [target] Fix delayed Task Aborted Status (TAS) handling bug (Andy Grover) [1051179]
-- [x86] cpu: Always print SMP information in /proc/cpuinfo (Takahiro MUNEDA) [1062485]
-- [x86] add rh_cpuinfo_x86 shadow struct (Prarit Bhargava) [1010325]
-- [mm] thp: move preallocated PTE page table on move_huge_pmd() (Rik van Riel) [1063404]
-- [mm] numa: initialise numa balancing after jump label initialisation (Rik van Riel) [1059459]
-- [firmware] efivars: check for EFI_RUNTIME_SERVICES (Kyle McMartin) [1058525]
-
-* Tue Feb 11 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-87.el7]
-- [fs] nfs: fix mm page leak at nfs_symlink() (Rafael Aquini) [1060565]
-- [kernel] sched/balancing: Periodically decay max cost of idle balance (Larry Woodman) [1031475]
-- [kernel] sched/balancing: Consider max cost of idle balance per sched domain (Larry Woodman) [1031475]
-- [kernel] sched: Reduce overestimating rq->avg_idle (Larry Woodman) [1031475]
-- [fs] vfs: make sure we don't have a stale root path if unlazy_walk() fails (Rafael Aquini) [1031475]
-- [fs] dcache: get/release read lock in read_seqbegin_or_lock() & friend (Rafael Aquini) [1031475]
-- [fs] split read_seqretry_or_unlock(), convert d_walk() to resulting primitives (Rafael Aquini) [1031475]
-- [lib] seqlock: Add a new locking reader type (Rafael Aquini) [1031475]
-- [fs] dcache: Translating dentry into pathname without taking rename_lock (Rafael Aquini) [1031475]
-- [fs] vfs: fix dentry RCU to refcounting possibly sleeping dput() (Rafael Aquini) [1031475]
-- [fs] vfs: use lockred "dead" flag to mark unrecoverably dead dentries (Rafael Aquini) [1031475]
-- [fs] vfs: reorganize dput() memory accesses (Rafael Aquini) [1031475]
-- [fs] vfs: reimplement d_rcu_to_refcount() using lockref_get_or_lock() (Rafael Aquini) [1031475]
-- [fs] vfs: use lockref_get_not_zero() for optimistic lockless dget_parent() (Rafael Aquini) [1031475]
-- [fs] vfs: make the dentry cache use the lockref infrastructure (Rafael Aquini) [1031475]
-- [fs] vfs: constify dentry parameter in d_count() (Rafael Aquini) [1031475]
-- [fs] helper for reading ->d_count (Rafael Aquini) [1031475]
-- [lib] lockref: use arch_mutex_cpu_relax() in CMPXCHG_LOOP() (Rafael Aquini) [1031475]
-- [lib] lockref: allow relaxed cmpxchg64 variant for lockless updates (Rafael Aquini) [1031475]
-- [lib] lockref: use cmpxchg64 explicitly for lockless updates (Rafael Aquini) [1031475]
-- [lib] lockref: add ability to mark lockrefs "dead" (Rafael Aquini) [1031475]
-- [lib] lockref: fix docbook argument names (Rafael Aquini) [1031475]
-- [lib] lockref: Relax in cmpxchg loop (Rafael Aquini) [1031475]
-- [lib] lockref: implement lockless reference count updates using cmpxchg() (Rafael Aquini) [1031475]
-- [lib] lockref: uninline lockref helper functions (Rafael Aquini) [1031475]
-- [lib] lockref: add 'lockref_get_or_lock() helper (Rafael Aquini) [1031475]
-- [lib] Add new lockref infrastructure reference implementation (Rafael Aquini) [1031475]
-- [s390] kdump: Increase crashkernel=auto base reservation from 128M to 160M (Baoquan He) [1052769]
-- [scsi] Derive the FLUSH_TIMEOUT from the basic I/O timeout (Fam Zheng) [1047563]
-- [acpi] Enhance ACPI warning for memory/IO address conflicts (Prarit Bhargava) [1047974]
-
-* Mon Feb 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-86.el7]
-- [scsi] hpsa: mark hpsa as a tech preview (Tomas Henzl) [1061210]
-- [x86] mark known Intel processors as supported (Prarit Bhargava) [920766]
-- [drm] mgag200: fix oops in cursor code (Dave Airlie) [1044701 1045159 1052739]
-- [kernel] audit: printk USER_AVC messages when audit isn't enabled (Richard Guy Briggs) [1051539]
-- [cpufreq] Do not hold driver module references for additional policy CPUs (Prarit Bhargava) [1043788]
-- [cpufreq] Remove extra variables from cpufreq_add_dev_symlink() (Prarit Bhargava) [1043788]
-- [net] tuntap: Fix for a race in accessing numqueues (Jason Wang) [1056399]
-- [mm] numa: add a sysctl for numa_balancing (Rik van Riel) [1059782]
-- [pci] Create 'pci_driver_rh' KABI shadowing structure (Myron Stowe) [1053796]
-- [pci] Convert 'pci_bus' allocations and frees (Myron Stowe) [1053796]
-- [pci] Create 'pci_bus_rh' KABI shadowing structure (Myron Stowe) [1053796]
-- [pci] Convert specific 'pci_dev' related constructs (Myron Stowe) [1053796]
-- [pci] Convert 'pci_dev' allocations and frees (Myron Stowe) [1053796]
-- [pci] Create 'pci_dev_rh' KABI shadowing structure (Myron Stowe) [1053796]
-- [fs] proc/meminfo: provide estimated available memory (Luiz Capitulino) [1058977]
-- [x86] apic, kexec: Add disable_cpu_apicid kernel parameter (Baoquan He) [994688]
-- [drm] mgag200: fix typo causing bw limits to be ignored on some chips (Dave Airlie) [1045495]
-- [drm] ast, cirrus, mgag200: use drm_can_sleep (Dave Airlie) [1056989]
-- [mm] prevent setting of a value less than 0 to min_free_kbytes (Steve Best) [1050899]
-- [powerpc] perf: BHRB filter configuration should follow the task (Steve Best) [1061191]
-- [powerpc] perf: Ignore separate BHRB privilege state filter request (Steve Best) [1061191]
-- [ethernet] cxgb4: Avoid disabling PCI device twice (Steve Best) [1055438]
-- [ethernet] cxgb4: Don't retrieve stats during recovery (Steve Best) [1055438]
-
-* Fri Feb 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-85.el7]
-- [kernel] errno: remove "NFS" from descriptions in comments (Eric Sandeen) [1009682]
-- [md] dm-cache: do not add migration to completed list before unhooking bio (Mike Snitzer) [1057197]
-- [md] dm-cache: move hook_info into common portion of per_bio_data structure (Mike Snitzer) [1057197]
-- [powerpc] Add debug checks to catch invalid cpu-to-node mappings (Steve Best) [1042526]
-- [powerpc] Fix the setup of CPU-to-Node mappings during CPU online (Steve Best) [1042526]
-- [md] avoid deadlock when dirty buffers during md_stop (Jes Sorensen) [1060027]
-- [powerpc] Fix transactional FP/VMX/VSX unavailable handlers (Steve Best) [1052083]
-- [powerpc] Don't corrupt transactional state when using FP/VMX in kernel (Steve Best) [1052083]
-- [powerpc] Reclaim two unused thread_info flag bits (Steve Best) [1052083]
-- [powerpc] Reset MSR_LE on signal entry (Steve Best) [1052083]
-- [powerpc] Wrap MSR macros with parentheses (Steve Best) [1052083]
-- [powerpc] Make flush_fp_to_thread() nop when CONFIG_PPC_FPU is disabled (Steve Best) [1052083]
-- [powerpc] math-emu: Move the flush FPU state function into do_mathemu (Steve Best) [1052083]
-- [powerpc] math-emu: Allow math-emu to be used for HW FPU (Steve Best) [1052083]
-- [powerpc] remove the unused function disable_kernel_fp() (Steve Best) [1052083]
-- [powerpc] Restore dbcr0 on user space exit (Steve Best) [1052083]
-- [powerpc] Provide for giveup_fpu/altivec to save state in alternate location (Steve Best) [1052083]
-- [powerpc] Put FP/VSX and VR state into structures (Steve Best) [1052083]
-- [powerpc] kvm: Don't corrupt guest state when kernel uses VMX (Steve Best) [1052083]
-- [powerpc] Fix VRSAVE handling (Steve Best) [1052083]
-- [powerpc] Fix a number of sparse warnings (Steve Best) [1052083]
-- [powerpc] Align thread->fpr to 16 bytes (Steve Best) [1052083]
-
-* Tue Feb 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-84.el7]
-- [s390] Unrevert kvm support patches (Jarod Wilson) [1035261]
-- [security] selinux: Fix possible NULL pointer dereference in selinux_inode_permission() (Eric Sandeen) [829715]
-- [scsi] qla2xxx: Correctly set the read_optrom pointer for ISP8044 (Chad Dupuis) [1057643]
-- [scsi] bnx2fc: Fixed scsi_remove_target soft lockup when rmmod bnx2x (Maurizio Lombardi) [1031770]
-- [scsi] config: remove LSI Logic New Generation RAID Device Drivers (Tomas Henzl) [979031]
-- [scsi] qla4xxx: v5.04.00.03.07.00-k0 (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Recreate chap data list during get chap operation (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: overflow in qla4xxx_set_chap_entry() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix memory leak in qla4xxx_destroy_ddb (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix sparse warnings (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Handle IPv6 AEN notifications (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Update print statements in func qla4xxx_do_dpc() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Update print statements in func qla4xxx_eh_abort() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Update print statements in qla4xxx_mailbox_command() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Updated print for device login, logout path (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Remove unused code from qla4xxx_set_ifcb() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix failure of mbox 0x31 (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Reduce rom-lock contention during reset recovery (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Driver not able to collect minidump for ISP84xx (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix pending IO completion in reset path before initiating chip reset (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix processing response queue during probe (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix failure of IDC Time Extend mailbox command (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Clear DDB index map upon connection close failure (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Return correct error status from func qla4xxx_request_irqs() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fixed AER reset sequence for ISP83xx/ISP84xx (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Correctly handle msleep_interruptible (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Rename ACB_STATE macros with IP_ADDRSTATE macros (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Use IDC_CTRL bit1 directly instead of AF_83XX_NO_FWDUMP flag (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix comments in code (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Print WARN_ONCE() if iSCSI function presence bit removed (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: ISP8xxx: Correct retry of adapter initialization (Chad Dupuis) [1049707]
-- [scsi] hpsa: allow SCSI mid layer to handle unit attention (Tomas Henzl) [1056703]
-- [scsi] hpsa: do not require board "not ready" status after hard reset (Tomas Henzl) [1056703]
-- [scsi] hpsa: enable unit attention reporting (Tomas Henzl) [1056703]
-- [scsi] hpsa: rename scsi prefetch field (Tomas Henzl) [1056703]
-- [scsi] hpsa: use workqueue instead of kernel thread for lockup detection (Tomas Henzl) [1056703]
-- [scsi] hpsa: fix pci-ids (Tomas Henzl) [1056703]
-
-* Mon Feb 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-83.el7]
-- [tools] perf/stat: Add perf stat --transaction (Prarit Bhargava) [829878]
-- [kernel] perf: Add Haswell ULT model number used in Macbook Air and other systems (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Support full width counting (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Add mem-loads/stores support for Haswell (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Support Haswell/v4 LBR format (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Move NMI clearing to end of PMI handler (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Add Haswell PEBS support (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Add Haswell PEBS record support (Prarit Bhargava) [829878]
-- [md] dm-log-userspace: allow mark requests to piggyback on flush requests (Mike Snitzer) [1057197]
-- [md] dm-space-map-metadata: fix bug in resizing of thin metadata (Mike Snitzer) [1057197]
-- [md] dm-cache: add policy name to status output (Mike Snitzer) [1057197]
-- [md] dm-thin: fix pool feature parsing (Mike Snitzer) [1057197]
-- [md] dm-sysfs: fix a module unload race (Mike Snitzer) [1057197]
-- [md] dm-snapshot: use dm-bufio prefetch (Mike Snitzer) [1057197]
-- [md] dm-snapshot: use dm-bufio (Mike Snitzer) [1057197]
-- [md] dm-snapshot: prepare for switch to using dm-bufio (Mike Snitzer) [1057197]
-- [md] dm-snapshot: use GFP_KERNEL when initializing exceptions (Mike Snitzer) [1057197]
-- [pci] Rename PCI_VC_PORT_REG1/2 to PCI_VC_PORT_CAP1/2 (Alex Williamson) [1053168]
-- [pci] Add Virtual Channel to save/restore support (Alex Williamson) [1053168]
-- [pci] Add support for save/restore of extended capabilities (Alex Williamson) [1053168]
-- [pci] Add pci_wait_for_pending() (refactor pci_wait_for_pending_transaction()) (Alex Williamson) [1053168]
-- [s390] increase CONFIG_NR_CPUS limit (Hendrik Brueckner) [1043827]
-- [s390] sclp: fix size of sclp_cpu_info structure (Hendrik Brueckner) [1043827]
-- [mm] create a separate slab for page->ptl allocation (Rik van Riel) [1058896]
-- [mm] properly separate the bloated ptl from the regular case (Rik van Riel) [1058896]
-- [mm] dynamically allocate page->ptl if it cannot be embedded to struct page (Rik van Riel) [1058896]
-- [mm] x86: handle pgtable_page_ctor() fail (Rik van Riel) [1058896]
-- [mm] s390: handle pgtable_page_ctor() fail (Rik van Riel) [1058896]
-- [mm] powerpc: handle pgtable_page_ctor() fail (Rik van Riel) [1058896]
-- [mm] allow pgtable_page_ctor() to fail (Rik van Riel) [1058896]
-- [mm] x86: add missed pgtable_pmd_page_ctor/dtor calls for preallocated pmds (Rik van Riel) [1058896]
-- [mm] x86: enable split page table lock for PMD level (Rik van Riel) [1058896]
-- [mm] implement split page table lock for PMD level (Rik van Riel) [1058896]
-- [mm] convert the rest to new page table lock api (Rik van Riel) [1058896]
-- [mm] hugetlb: convert hugetlbfs to use split pmd lock (Rik van Riel) [1058896]
-- [mm] hugetlb: grab a page_table_lock after page_cache_release (Rik van Riel) [1058896]
-- [mm] thp: do not access mm->pmd_huge_pte directly (Rik van Riel) [1058896]
-- [mm] thp: move ptl taking inside page_check_address_pmd() (Rik van Riel) [1058896]
-- [mm] thp: change pmd_trans_huge_lock() to return taken lock (Rik van Riel) [1058896]
-- [mm] introduce api for split page table lock for PMD level (Rik van Riel) [1058896]
-- [mm] convert mm->nr_ptes to atomic_long_t (Rik van Riel) [1058896]
-- [mm] rename USE_SPLIT_PTLOCKS to USE_SPLIT_PTE_PTLOCKS (Rik van Riel) [1058896]
-- [mm] avoid increase sizeof(struct page) due to split page table lock (Rik van Riel) [1058896]
-- [vfio] vfio-pci: Don't use device_lock around AER interrupt setup (Alex Williamson) [1045175]
-- [vfio] vfio-pci: Use pci "try" reset interface (Alex Williamson) [1045175]
-- [pci] Add pci_try_reset_function(), pci_try_reset_slot(), pci_try_reset_bus() (Alex Williamson) [1045175]
-- [infiniband] make sure the src net is infiniband when create new link (Jay Fenlason) [1049143]
-
-* Fri Jan 31 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-82.el7]
-- [mm] Revisit tlb_flushall_shift tuning for page flushes except on IvyBridge (Rik van Riel) [1058886]
-- [mm] change tlb_flushall_shift for IvyBridge (Rik van Riel) [1058886]
-- [mm] Eliminate redundant page table walk during TLB range flushing (Rik van Riel) [1058886]
-- [mm] Clean up inconsistencies when flushing TLB ranges (Rik van Riel) [1058886]
-- [mm] thp: avoid PageUnevictable on active/inactive lru lists (Rafael Aquini) [982739]
-- [mm] swap: clear PageActive before adding pages onto unevictable list (Rafael Aquini) [982739]
-- [mm] remove lru parameter from __lru_cache_add and lru_cache_add_lru (Rafael Aquini) [982739]
-- [mm] remove lru parameter from __pagevec_lru_add and remove parts of pagevec API (Rafael Aquini) [982739]
-- [mm] activate !PageLRU pages on mark_page_accessed if page is on local pagevec (Rafael Aquini) [982739]
-- [mm] pagevec: defer deciding which LRU to add a page to until pagevec drain time (Rafael Aquini) [982739]
-- [mm] add tracepoints for LRU activation and insertions (Rafael Aquini) [982739]
-- [kernel] audit: fix dangling keywords in audit_log_set_loginuid() output (Richard Guy Briggs) [1045670]
-- [kernel] audit: don't generate loginuid log when audit disabled (Richard Guy Briggs) [1045670]
-- [kernel] audit: fix type of sessionid in audit_set_loginuid() (Richard Guy Briggs) [1045670]
-- [kernel] audit: audit feature to set loginuid immutable (Richard Guy Briggs) [1045670]
-- [kernel] audit: audit feature to only allow unsetting the loginuid (Richard Guy Briggs) [1045670]
-- [kernel] audit: allow unsetting the loginuid (with priv) (Richard Guy Briggs) [1045670]
-- [kernel] audit: remove CONFIG_AUDIT_LOGINUID_IMMUTABLE (Richard Guy Briggs) [1045670]
-- [kernel] audit: loginuid functions coding style (Richard Guy Briggs) [1045670]
-- [kernel] audit: change decimal constant to macro for invalid uid (Richard Guy Briggs) [1045670]
-- [mm] sched/numa: Turn some magic numbers into #defines (Rik van Riel) [1049096]
-- [mm] sched/numa: Rename variables in task_numa_fault() (Rik van Riel) [1049096]
-- [mm] sched/numa: Do statistics calculation using local variables only (Rik van Riel) [1049096]
-- [mm] sched/numa: Normalize faults_cpu stats and weigh by CPU use (Rik van Riel) [1049096]
-- [mm] sched/numa: Use active_nodes nodemask to limit numa migrations (Rik van Riel) [1049096]
-- [mm] sched/numa: Build per numa_group active node mask from numa_faults_cpu statistics (Rik van Riel) [1049096]
-- [mm] sched/numa: Track from which nodes NUMA faults are triggered (Rik van Riel) [1049096]
-- [mm] sched/numa: Rename p->numa_faults to numa_faults_memory (Rik van Riel) [1049096]
-- [mm] sched/numa: Remove p->numa_migrate_deferred (Rik van Riel) [1049096]
-- [mm] sched: Calculate effective load even if local weight is 0 (Rik van Riel) [1049096]
-- [net] ipv4: fix tunneled VM traffic over hw VXLAN/GRE GSO NIC (Michal Schmidt) [1031869]
-- [net] netfilter: nf_nat: fix access to uninitialized buffer in IRC NAT helper (Daniel Borkmann) [1058782] {CVE-2014-1690}
-- [net] packet: fix send path when running with proto == 0 (Jesper Brouer) [1058729]
-- [net] packet: fix use after free race in send path when dev is released (Jesper Brouer) [1058729]
-- [net] Fix memory leak if TPROXY used with TCP early demux (Florian Westphal) [1054483]
-- [net] ipv6: simplify detection of first operational link-local address on interface (Jiri Pirko) [1047425]
-
-* Thu Jan 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-81.el7]
-- [infiniband] core: Resolve Ethernet L2 addresses when modifying QP (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Populate GID table with IP based gids (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Handle Ethernet L2 parameters for IP based GID addressing (Doug Ledford) [1051187]
-- [infiniband] mlx4: Handle Ethernet L2 parameters for IP based GID addressing (Doug Ledford) [1051187]
-- [infiniband] mlx4: Use IBoE (RoCE) IP based GIDs in the port GID table (Doug Ledford) [1051187]
-- [infiniband] cma: IBoE (RoCE) IP based GID addressing (Doug Ledford) [1051187]
-- [infiniband] core: Ethernet L2 attributes in verbs/cm structures (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix OCRDMA_GEN2_FAMILY macro definition (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix AV_VALID bit position (Doug Ledford) [1051187]
-- [infiniband] ocrdma: enable build (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove redundant check in ocrdma_build_fr() (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix a crash in rmmod (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Silence an integer underflow warning (Doug Ledford) [1051187]
-- [infiniband] Remove unnecessary semicolons (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix compiler warning about int/pointer size mismatch (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix passing wrong opcode to modify_srq (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fill PVID in UMC case (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Add ABI versioning support (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Consider multiple SGES in case of DPP (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix for displaying proper link speed (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Increase STAG array size (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Dont use PD 0 for userpace CQ DB (Doug Ledford) [1051187]
-- [infiniband] ocrdma: FRMA code cleanup (Doug Ledford) [1051187]
-- [infiniband] ocrdma: For ERX2 irrespective of Qid, num_posted offset is 24 (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix to work with even a single MSI-X vector (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove the MTU check based on Ethernet MTU (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Add support for fast register work requests (FRWR) (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Create IRD queue fix (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Cache recv DB until QP moved to RTR (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove __packed (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove driver QP state machine (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Don't allow zero/invalid sgid usage (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove redundant dev reference (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Style and redundant code cleanup (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix several stack info leaks (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove unused include (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix error return code in ocrdma_set_create_qp_rq_cmd() (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Reorg structures to avoid padding (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Change macros to inline funtions (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Set bad_wr in error case (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Replace ocrdma_err with pr_err (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Use MCC_CREATE_EXT_V1 for MCC create (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove use_cnt for queues (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check access to userspace response buffer in extended command (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check input length in flow steering uverbs (Doug Ledford) [1051187]
-- [infiniband] uverbs: Set error code when fail to consume all flow_spec items (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check reserved fields in create_flow (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check comp_mask in destroy_flow (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check reserved field in extended command header (Doug Ledford) [1051187]
-- [infiniband] uverbs: New macro to set pointers to NULL if length is 0 in INIT_UDATA() (Doug Ledford) [1051187]
-- [infiniband] core: const'ify inbuf in struct ib_udata (Doug Ledford) [1051187]
-- [infiniband] iwcm: Don't touch cm_id after deref in rem_ref (Doug Ledford) [1051187]
-- [infiniband] ucma: Convert use of typedef ctl_table to struct ctl_table (Doug Ledford) [1051187]
-- [infiniband] cm: Convert to using idr_alloc_cyclic() (Doug Ledford) [1051187]
-- [infiniband] core: Encorce MR access rights rules on kernel consumers (Doug Ledford) [1051187]
-- [infiniband] cma: Remove unused argument and minor dead code (Doug Ledford) [1051187]
-- [infiniband] ucma: Discard events for IDs not yet claimed by user space (Doug Ledford) [1051187]
-- [infiniband] core: Add Cisco usNIC rdma node and transport types (Doug Ledford) [1051187]
-- [infiniband] netlink: Remove superfluous RDMA_NL_GET_OP() masking (Doug Ledford) [1051187]
-- [infiniband] core: Pass imm_data from ib_uverbs_send_wr to ib_send_wr correctly (Doug Ledford) [1051187]
-- [infiniband] cma: Check for GID on listening device first (Doug Ledford) [1051187]
-- [infiniband] cma: Use cached gids (Doug Ledford) [1051187]
-- [infiniband] cma: Set IBoE SL (user-priority) by egress map when using vlans (Doug Ledford) [1051187]
-- [infiniband] cma: Add IPv6 support for iWARP (Doug Ledford) [1051187]
-- [infiniband] cma: Only call cma_save_ib_info() for CM REQs (Doug Ledford) [1051187]
-- [infiniband] cma: Fix accessing invalid private data for UD (Doug Ledford) [1051187]
-- [infiniband] cma: Fix gcc warning (Doug Ledford) [1051187]
-- [infiniband] uverbs: Use get_unused_fd_flags(O_CLOEXEC) instead of get_unused_fd() (Doug Ledford) [1051187]
-- [misc] drivers: avoid format string in dev_set_name (Doug Ledford) [1051187]
-- [infiniband] core: Fix error return code in add_port() (Doug Ledford) [1051187]
-- [infiniband] cma: Export AF_IB statistics (Doug Ledford) [1051187]
-- [infiniband] ucma: Allow user space to specify AF_IB when joining multicast (Doug Ledford) [1051187]
-- [infiniband] ucma: Allow user space to pass AF_IB into resolve (Doug Ledford) [1051187]
-- [infiniband] ucma: Allow user space to bind to AF_IB (Doug Ledford) [1051187]
-- [infiniband] ucma: Name changes to indicate only IP addresses supported (Doug Ledford) [1051187]
-- [infiniband] ucma: Add ability to query GID addresses (Doug Ledford) [1051187]
-- [infiniband] cma: Export cma_get_service_id() (Doug Ledford) [1051187]
-- [infiniband] ucma: Support querying when IB paths are not reversible (Doug Ledford) [1051187]
-- [infiniband] sa: Export function to pack a path record into wire format (Doug Ledford) [1051187]
-- [infiniband] ucma: Support querying for AF_IB addresses (Doug Ledford) [1051187]
-- [infiniband] cma: Only listen on IB devices when using AF_IB (Doug Ledford) [1051187]
-- [infiniband] cma: Set qkey for AF_IB (Doug Ledford) [1051187]
-- [infiniband] cma: Expose private data when using AF_IB (Doug Ledford) [1051187]
-- [infiniband] cma: Merge cma_get/save_net_info (Doug Ledford) [1051187]
-- [infiniband] cma: Remove unused SDP related code (Doug Ledford) [1051187]
-- [infiniband] cma: Add support for AF_IB to cma_get_service_id() (Doug Ledford) [1051187]
-- [infiniband] cma: Add support for AF_IB to rdma_resolve_route() (Doug Ledford) [1051187]
-- [infiniband] cma: Add support for AF_IB to rdma_resolve_addr() (Doug Ledford) [1051187]
-- [infiniband] cma: Verify that source and dest sa_family are the same (Doug Ledford) [1051187]
-- [infiniband] cma: Restrict AF_IB loopback to binding to IB devices only (Doug Ledford) [1051187]
-- [infiniband] cma: Add helper functions to return id address information (Doug Ledford) [1051187]
-- [infiniband] cma: Do not modify sa_family when setting loopback address (Doug Ledford) [1051187]
-- [infiniband] cma: Allow user to specify AF_IB when binding (Doug Ledford) [1051187]
-- [infiniband] cma: Update port reservation to support AF_IB (Doug Ledford) [1051187]
-- [infiniband] addr: Add AF_IB support to ip_addr_size (Doug Ledford) [1051187]
-- [infiniband] cma: Include AF_IB in loopback and any address checks (Doug Ledford) [1051187]
-- [infiniband] cma: Allow enabling reuseaddr in any state (Doug Ledford) [1051187]
-- [infiniband] cma: Define native IB address (Doug Ledford) [1051187]
-- [net] vlan: Fix header ops passthru when doing TX VLAN offload (Doug Ledford) [1051187]
-- [net] vlan: Implement vlan_dev_get_egress_qos_mask as an inline (Doug Ledford) [1051187]
-- [net] vlan: Provide read access to the vlan egress map (Doug Ledford) [1051187]
-- [net] vlan: make vlan_dev_real_dev work over stacked vlans (Doug Ledford) [1051187]
-- [net] vlan: cleanup the usage of vlan_dev_priv(dev) (Doug Ledford) [1051187]
-- [ethernet] mlx4: Remove unnecessary validation for port number (Amir Vadai) [1030563]
-- [ethernet] mlx4: Warn if device doesn't have enough PCI bandwidth (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: lower NAPI weight (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Start multicast join process only on active ports (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Add path query flushing in ipoib_ib_dev_cleanup (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Fix usage of uninitialized multicast objects (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Avoid flushing the driver workqueue on dev_down (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Fix deadlock between dev_change_flags() and __ipoib_dev_flush() (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Change CM skb memory allocation to be non-atomic during init (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Fix crash in dev_open error flow (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Fix race in deleting ipoib_neigh entries (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Only cycle port if HW timestamp config changes (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add PTP hardware clock (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix layout of struct mlx5_init_seg (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Flush cache workqueue before destroying it (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add netdev support for TCP/IP offloads of vxlan tunneling (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add basic support for TCP/IP offloads under tunneling (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Check port number for validity before accessing data (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add NAPI support for transmit side (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Ignore irrelevant hypervisor events (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Set CQE/EQE size to 64B by default (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Configure the XPS queue mapping on driver load (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Implement ndo_get_phys_port_id (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Expose physical port id as PF/VF capability (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Introduce nic_info new flag in QUERY_FUNC_CAP (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Rename QUERY_FUNC_CAP fields (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Remove zeroed out of explicit QUERY_FUNC_CAP fields (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Roll back round robin bitmap allocation commit for CQs, SRQs, and MPTs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: destroy workqueue when driver fails to register (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Remove selftest TX queues empty condition (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Re-enable create_flow/destroy_flow uverbs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: extended command: an improved infrastructure for uverbs commands (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Remove ib_uverbs_flow_spec structure from userspace (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Use a common header for uverbs flow_specs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Make uverbs flow structure use names like verbs ones (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Rename 'flow' structs to match other uverbs structs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: clarify overflow/underflow checks on ib_create/destroy_flow (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix page shift in create CQ for userspace (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx4: Fix device max capabilities check (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix list_del of empty list (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Remove dead code (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx4: Fix endless loop in resize CQ (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Use enum to indicate adapter page size (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Update opt param mask for RTS2RTS (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Remove "Always false" comparison (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Remove dead code in mr.c (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Change optimal_reclaimed_pages for better performance (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Clear reserved area in set_hca_cap() (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Support communicating arbitrary host page size to firmware (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Fix cleanup flow when DMA mapping fails (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix srq free in destroy qp (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Simplify mlx5_ib_destroy_srq (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix overflow check in IB_WR_FAST_REG_MR (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Multithreaded create MR (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix check of number of entries in create CQ (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Datapath structures are allocated per NUMA node (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: ICM pages are allocated on device NUMA node (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Datapath resources allocated dynamically (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add immediate activate for VGT->VST->VGT (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Initialize all mailbox buffers to zero before use (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add RFS support in UDP (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Implement resource quota enforcement (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix quota handling in the QUERY_FUNC_CAP wrapper (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Structures and init/teardown for VF resource quotas (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix checking order in MR table init (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Don't fail reg/unreg vlan for older guests (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Resource tracker for reg/unreg vlans (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Use vlan id instead of vlan index for unregistration (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix reg/unreg vlan/mac to conform to the firmware spec (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix register/unreg vlan flow (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Temporarily disable create_flow/destroy_flow uverbs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Load higher level modules according to ports type (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Unused local variable in mlx4_opreq_action (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix typo, move similar defs to same location (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Clean the code to eliminate trivial build warnings (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Ensure proper synchronization accessing memory (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix alignment of reg umr gather buffers (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix eq names to display nicely in /proc/interrupts (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Fix error code translation from firmware to driver (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix opt param mask according to firmware spec (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix opt param mask for sq err to rts transition (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Disable atomic operations (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Keep polling to reclaim pages while any returned (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Avoid async events on invalid port number (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Decrease memory consumption of mr caches (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Remove checksum on command interface commands (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix memory leak in mlx5_ib_create_srq (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix send work queue size calculation (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Rename name of mlx4_en_rx_alloc members (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Check device state when setting coalescing (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Reduce scope of local variables in mlx4_en_xmit (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [scsi] reserve extension space to prevent KABI breakages (Maurizio Lombardi) [1029903]
-- [security] selinux: selinux_setprocattr()->ptrace_parent() needs rcu_read_lock() (Paul Moore) [800159]
-
-* Mon Jan 27 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-80.el7]
-- [misc] synchronize with upstream linux-3.10.y stable branch up to 3.10.24 (Veaceslav Falico) [1040946]
-- [acpi] memhotplug: add parameter to disable memory hotplug (Prarit Bhargava) [1046555]
-- [kernel] kdump: Increase x86 crashkernel=auto base reservation from 128M to 160M (Baoquan He) [1044832]
-- [mfd] lpc_ich: Add support for Intel Avoton SoC (Prarit Bhargava) [1049638]
-- [net] ipv6: send Change Status Report after DAD is completed (Flavio Leitner) [1049092]
-- [mm] Revert: new shrinker count/scan API (Mike Snitzer) [1056647]
-- [drm] Revert: convert shrinkers to new count/scan API (Mike Snitzer) [1056647]
-
-* Thu Jan 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-79.el7]
-- [virt] virtio-net: put virtio net header inline with data ("Michael S. Tsirkin") [990993]
-- [virt] virtio: VIRTIO_F_ANY_LAYOUT feature ("Michael S. Tsirkin") [990993]
-- [tools] turbostat: servers do not support uncore power register (Prarit Bhargava) [1037706]
-- [alsa] pcsp: Fix the order of input device unregistration (Jaroslav Kysela) [1044022]
-- [alsa] ak4114: Fix wrong register array size (Jaroslav Kysela) [1044022]
-- [alsa] pcsp: Fix initialization with nopcm=1 (Jaroslav Kysela) [1044022]
-- [alsa] opl3: Fix possible negative array index access (Jaroslav Kysela) [1044022]
-- [alsa] tea575x-tuner: move HW init to a separate function (Jaroslav Kysela) [1044022]
-- [alsa] ak4xx-adda: info leak in ak4xxx_capture_source_info() (Jaroslav Kysela) [1044022]
-- [alsa] vx_core: off by one in vx_read_status() (Jaroslav Kysela) [1044022]
-- [alsa] Remove the rest of *_set_drvdata(NULL) calls (Jaroslav Kysela) [1044022]
-- [alsa] virmidi: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] serial-u16550: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] pcsp: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] mtpav: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] mpu401: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] ml403-ac97cr: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] aloop: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] firewire-lib: use inlune function to calculate frame bytes (Jaroslav Kysela) [1044022]
-- [alsa] firewire-speakers: remove not-reused member from structure (Jaroslav Kysela) [1044022]
-- [alsa] snd-firewire-lib: remove unused header inclusion (Jaroslav Kysela) [1044022]
-- [alsa] firewire: fix error return code in scs_probe() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add Dell headset detection quirk for three laptop models (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add enable_msi=0 workaround for four HP machines (Jaroslav Kysela) [1044022]
-- [alsa] hda: Split verb definitions into sound/hda_verbs.h (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable stereo mix as default for AD and VIA codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Ignore small negative LPIB delay correction (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add missing initialization of aamix paths (Jaroslav Kysela) [1044022]
-- [alsa] hda: Allow capture-only configuration (Jaroslav Kysela) [1044022]
-- [alsa] hda: skip depop delay before D3 for Haswell and Valleyview2 display codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Clean up async codec PM using standard async infrastructure (Jaroslav Kysela) [1044022]
-- [alsa] hda: fixup ALC262 to skip depop delay before D3 on Intel BayleyBay (Jaroslav Kysela) [1044022]
-- [alsa] hda: Always do delayed probes for HD-audio devices (Jaroslav Kysela) [1044022]
-- [alsa] hda: allow a codec to define its own depop delay time (Jaroslav Kysela) [1044022]
-- [alsa] hda: fixup ALC262 to remove depop delay on Intel BayleyBay board (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Remove depop delay for suspend and resume if applicable (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Add more codecs alias name for Dell (Jaroslav Kysela) [1044022]
-- [alsa] hda: resume codecs in parallel (Jaroslav Kysela) [1044022]
-- [alsa] hda: suspend codecs in parallel (Jaroslav Kysela) [1044022]
-- [alsa] hda: Disable runtime PM when EPSS is unavailable (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable runtime PM on Panther Point (Jaroslav Kysela) [1044022]
-- [alsa] hda: Refactor pm notification in hda_codec.c (Jaroslav Kysela) [1044022]
-- [alsa] hda: Bind with HDMI codec parser automatically (Jaroslav Kysela) [1044022]
-- [alsa] hda: Split the generic parser as an individual module (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add static DAC/pin mapping for AD1986A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: One more Dell headset detection quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix IEC958 ctl indexes for some simple HDMI devices (Jaroslav Kysela) [1044022]
-- [alsa] hda: Mute all aamix inputs as default (Jaroslav Kysela) [1044022]
-- [alsa] hda: Another Dell headset detection quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: A Dell headset detection quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove quirk for Dell Vostro 131 (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: fix uninitialized variable compile warning (Jaroslav Kysela) [1044022]
-- [alsa] hda: fix mic issues on Acer Aspire E-572 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix silent output on MacBook Air 2,1 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix missing ELD info when using jackpoll_ms parameter (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: remove hp_automute_hook from alc283_fixup_chromebook (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Independent of model for HP (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix headset mic input after muted internal mic (Dell/Realtek) (Jaroslav Kysela) [1044022]
-- [alsa] hda: Use always amps for auto-mute on AD1986A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda/analog: Handle inverted EAPD properly in vmaster hook (Jaroslav Kysela) [1044022]
-- [alsa] hda: Another fixup for ASUS laptop with ALC660 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix complete_all() timing in deferred probes (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix bad EAPD setup for HP machines with AD1984A (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix silent output on ASUS W7J laptop (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add mono speaker quirk for Dell Inspiron 5439 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add LFE chmap to ASUS ET2700 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Initialize missing bass speaker pin for ASUS AIO ET2700 (Jaroslav Kysela) [1044022]
-- [alsa] hda: limit mic boost on Asus UX31[A,E] (Jaroslav Kysela) [1044022]
-- [alsa] hda: Check leaf nodes to find aamix amps (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix hp-mic mode without VREF bits (Jaroslav Kysela) [1044022]
-- [alsa] hda: Create Headhpone Mic Jack Mode when really needed (Jaroslav Kysela) [1044022]
-- [alsa] usb: use multiple packets per urb for Wireless USB inbound audio (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable mute/mic-mute LEDs for more Thinkpads with Conexant codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop bus->avoid_link_reset flag (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Set pcbeep amp for ALC668 (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Add support of ALC231 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Set current_headset_type to ALC_HEADSET_TYPE_ENUM (Jaroslav Kysela) [1044022]
-- [alsa] hda: Provide missing pin configs for VAIO with ALC260 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add headset quirk for Dell Inspiron 3135 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix the headphone jack detection on Sony VAIO TX (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix missing bass speaker on ASUS N550 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix unbalanced runtime PM notification at resume (Jaroslav Kysela) [1044022]
-- [alsa] hda: A casual Dell Headset quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: Also enable mute/micmute LED control for "Lenovo dock" fixup (Jaroslav Kysela) [1044022]
-- [alsa] hda: Select FW_LOADER from CONFIG_SND_HDA_CODEC_CA0132_DSP (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable mute/mic-mute LEDs for more Thinkpads with Realtek codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: load EQ params into IDT codec on HP bNB13 systems (Jaroslav Kysela) [1044022]
-- [alsa] jack: Unregister input device at disconnection (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add front jack channel selector for EMU0204 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Don't clear the power state at snd_hda_codec_reset() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Control EAPD for Master volume on Lenovo N100 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Don't turn off EAPD for headphone on Lenovo N100 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Check keep_eapd_on before inv_eapd (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix Line Out automute on Realtek multifunction jacks (Jaroslav Kysela) [1044022]
-- [alsa] compress_core: don't return -EBADFD from poll if paused (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix wrong baseline length in ATI/AMD generated ELD (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Skip out-of-range latency values in AMD ELD generator (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Add error-checking to some codec reads (Jaroslav Kysela) [1044022]
-- [alsa] usb: Fix wrong mapping of RLC and RRC channels (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Use TFx channel positions instead of FxH (Jaroslav Kysela) [1044022]
-- [alsa] hda: Control SPDIF out pin on MacBookPro 11,2 (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Add new codec ALC255/ALC3234 UAJ supported (Jaroslav Kysela) [1044022]
-- [alsa] hda: Apply MacBook fixups for CS4208 correctly (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Make fixup regs persist after resume (Jaroslav Kysela) [1044022]
-- [alsa] hda_intel: ratelimit "spurious response" message (Jaroslav Kysela) [1044022]
-- [alsa] hda: Get rid of AMD HDMI exception in hdmi_present_sense() (Jaroslav Kysela) [1044022]
-- [alsa] ice1724: Fix compile warning with CONFIG_PROC_FS=n (Jaroslav Kysela) [1044022]
-- [alsa] hda: block HDMI jack reports while repolling (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add a block_report flag to jacks (Jaroslav Kysela) [1044022]
-- [alsa] hda: Delay HDMI presence reports while waiting for ELD information (Jaroslav Kysela) [1044022]
-- [alsa] compress: fix drain calls blocking other compress functions (Jaroslav Kysela) [1044022]
-- [alsa] hda: Another Dell headset quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add pincfg fixup for ASUS W5A (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add support for CX20952 (Jaroslav Kysela) [1044022]
-- [alsa] lx6464es: Fix pointer cast compile warnings (Jaroslav Kysela) [1044022]
-- [alsa] hda: Limit mic boost and add mute LED for an HP machine (Jaroslav Kysela) [1044022]
-- [alsa] hda: Make sure mute LEDs stay on during runtime suspend (Realtek) (Jaroslav Kysela) [1044022]
-- [alsa] ctxfi: Use WARN_ON() instead of BUG_ON() (Jaroslav Kysela) [1044022]
-- [alsa] intel8x0: Fix chmap application (Jaroslav Kysela) [1044022]
-- [alsa] hda: Apply GPIO setup for MacBooks with CS4208 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Name Haswell HDMI controllers better (Jaroslav Kysela) [1044022]
-- [alsa] hda: Force buffer alignment for Haswell HDMI controllers (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable Thinkpad mute/micmute LEDs for Realtek (Jaroslav Kysela) [1044022]
-- [alsa] hda: add device IDs for AMD Evergreen/Northern Islands HDMI (Jaroslav Kysela) [1044022]
-- [alsa] hda: Introduce the bitmask for excluding output volume (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add sanity check of vmaster slave dB steps (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix possible zero-division (Jaroslav Kysela) [1044022]
-- [alsa] usb: Don't trust the channel config if the channel count changed (Jaroslav Kysela) [1044022]
-- [alsa] usb: For class 2 devices, use channel map from altsettings (Jaroslav Kysela) [1044022]
-- [alsa] usb: supply channel maps even when wChannelConfig is unspecified (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable SPDIF for Acer TravelMate 6293 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add Device IDs for Intel Wildcat Point-LP PCH (Jaroslav Kysela) [1044022]
-- [alsa] hda: rename function not_share_unassigned_cvt() (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Disallow unsupported 2ch remapping on NVIDIA codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: not choose assigned converters for unused pins of Valleyview (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add extra chmap for 2.1 outputs on ASUS laptops (Jaroslav Kysela) [1044022]
-- [alsa] hda: Disable AA-loopback on ALC283 Chromebook (Jaroslav Kysela) [1044022]
-- [alsa] lola: Fix uninitialized variable access in error message (Jaroslav Kysela) [1044022]
-- [alsa] ice1724: Fix uninitialized variable access (Jaroslav Kysela) [1044022]
-- [alsa] rme96: Return error code in PCM copy ops (Jaroslav Kysela) [1044022]
-- [alsa] ali5451: Drop unused variable (Jaroslav Kysela) [1044022]
-- [alsa] ad1889: Fix right attenuation proc output (Jaroslav Kysela) [1044022]
-- [alsa] Use strlcpy() instead of strncpy() (Jaroslav Kysela) [1044022]
-- [alsa] Limit the fallback card id string size (Jaroslav Kysela) [1044022]
-- [alsa] memalloc: NULL-initialize in snd_malloc_dev_iram() (Jaroslav Kysela) [1044022]
-- [alsa] memalloc: Make snd_{malloc|free}_dev_iram() static (Jaroslav Kysela) [1044022]
-- [alsa] Optimize module name check (Jaroslav Kysela) [1044022]
-- [alsa] pcm: Add fallthru comments (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove locally dead codes (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add a fallthru comment (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix possible NULL dereference in snd_hda_get_pin_label() (Jaroslav Kysela) [1044022]
-- [alsa] 6fire: Fix probe of multiple cards (Jaroslav Kysela) [1044022]
-- [alsa] memalloc: Yet another ifdef CONFIG_GENERIC_ALLOCATOR protection (Jaroslav Kysela) [1044022]
-- [alsa] pcm_dmaengine: Remove hardcoded PCM formats (Jaroslav Kysela) [1044022]
-- [alsa] hda: Sync EAPD with vmaster on AD1984A Thinkpads (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix silent headphone on Thinkpads with AD1984A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Re-setup pin and infoframe on plug-in on all codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Disable ramp-up/down for non-PCM on AMD codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Add HBR bitstreaming support for ATI/AMD HDMI codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Add ELD emulation for ATI/AMD codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Add ATI/AMD multi-channel audio support (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Allow HDA patches to customize more operations (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Raise the delay for alc283_shutup (Jaroslav Kysela) [1044022]
-- [alsa] compress: fix drain calls blocking other compress functions (Jaroslav Kysela) [1044022]
-- [alsa] Add ifdef CONFIG_GENERIC_ALLOCATOR for SNDRV_DMA_TYPE_IRAM code (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix mute LED on HP laptops in runtime suspend (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add support of ALC285 / ALC293 codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add support of ALC255 codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove OOM message after input_allocate_device (Jaroslav Kysela) [1044022]
-- [alsa] Add SoC on-chip internal ram support for DMA buffer allocation (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix typos in patch_hdmi.c (Jaroslav Kysela) [1044022]
-- [alsa] hda: add codec ID for Valleyview2 display codec (Jaroslav Kysela) [1044022]
-- [alsa] emu10k1: code refactoring (Jaroslav Kysela) [1044022]
-- [alsa] hda: Move mutex from hda_eld to per_pin in HDMI codec driver (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix possible races in HDMI driver (Jaroslav Kysela) [1044022]
-- [alsa] hda: Treat zero connection as non-error (Jaroslav Kysela) [1044022]
-- [alsa] hda: add connection to thinkpad_acpi to control mute/micmute LEDs (Jaroslav Kysela) [1044022]
-- [alsa] hda: add HDA_FIXUP_ACT_FREE action (Jaroslav Kysela) [1044022]
-- [alsa] hdsp: info leak in snd_hdsp_hwdep_ioctl() (Jaroslav Kysela) [1044022]
-- [alsa] Remove unnecessary semicolons (Jaroslav Kysela) [1044022]
-- [alsa] hda: Sony VAIO Pro 13 (haswell) now has a working headset jack (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add a headset mic model for ALC269 and friends (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable surround speakers (when line out is also present) (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: Use module_usb_driver (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: support wireless devices in snd_usb_parse_datainterval (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add support for wireless USB devices (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Tweak debug messages to be more useful (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix available channel maps missing from TLV (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix channel maps with less common speakers (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix unused slots being enabled in manual and non-PCM mappings (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix programmed active channel count (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix incorrect default channel mapping for unusual CAs (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove unused endpoint flag EP_FLAG_ACTIVATED (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: rename alt_idx to altsetting (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: clear SUBSTREAM_FLAG_SYNC_EP_STARTED on error (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: void return type of snd_usb_endpoint_deactivate() (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: don't deactivate URBs on in-use EP (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove deactivate_endpoints() (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove unused parameter from sync_ep_set_params (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix mono speakers and headset mic on Dell Vostro 5470 (Jaroslav Kysela) [1044022]
-- [alsa] snd-usb-caiaq: LED support for Maschine Controller (Jaroslav Kysela) [1044022]
-- [alsa] ac97: Add ID for TI TLV320AIC27 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable internal mic on a Thinkpad machine with ALC283 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix Internal Mic boost can't control with ALC283 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add fixup for MacBook Air 6,1 and 6,2 with CS4208 codec (Jaroslav Kysela) [1044022]
-- [alsa] improve buffer size computations for USB PCM audio (Jaroslav Kysela) [1044022]
-- [alsa] hda: not use assigned converters for all unused pins (Jaroslav Kysela) [1044022]
-- [alsa] compress: Make sure we trigger STOP before closing the stream (Jaroslav Kysela) [1044022]
-- [alsa] rme9652: Remove redundant break (Jaroslav Kysela) [1044022]
-- [alsa] au88x0: Remove redundant break (Jaroslav Kysela) [1044022]
-- [alsa] hda/ca0132: Staticize codec_send_command (Jaroslav Kysela) [1044022]
-- [alsa] ctxfi: Staticize local symbols (Jaroslav Kysela) [1044022]
-- [alsa] asihpi: a couple array out of bounds issues (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add CS4208 codec support for MacBook 6,1 and 6,2 (Jaroslav Kysela) [1044022]
-- [alsa] hda: unmute pin amplifier in infoframe setup for Haswell (Jaroslav Kysela) [1044022]
-- [alsa] hda: define is_haswell() to check if a display audio codec is Haswell (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add dock speaker support for ASUS TX300 (Jaroslav Kysela) [1044022]
-- [alsa] snd/hda: add runtime suspend/resume on optimus support (Jaroslav Kysela) [1044022]
-- [alsa] hda: Simplify CONFIG_SND_HDA_I915 condition (Jaroslav Kysela) [1044022]
-- [alsa] hda: add device entry and inactive flag to unsolicited response (Jaroslav Kysela) [1044022]
-- [alsa] hda: Haswell codec exposes device list/select info on pins (Jaroslav Kysela) [1044022]
-- [alsa] hda: add device list & select info of display pins to codec proc file (Jaroslav Kysela) [1044022]
-- [alsa] hda: add flags and routines to get devices selection info for DP1.2 MST (Jaroslav Kysela) [1044022]
-- [alsa] treewide: Fix printks with 0x# (Jaroslav Kysela) [1044022]
-- [alsa] alsa/rme96: Add missing inclusion of linux/vmalloc.h (Jaroslav Kysela) [1044022]
-- [alsa] rme96: Check the return value of pci_enable_device() in resume callback (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add workarounds for pop-noise on Chromebook with ALC283 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix ALC283 headphone pop-noise better (Jaroslav Kysela) [1044022]
-- [alsa] rme96: Add PM support v3 (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Use enums in hdspm_tco_ltc_frames() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Fix default value in SNDRV_HDSPM_IOCTL_GET_LTC (Jaroslav Kysela) [1044022]
-- [alsa] pcm: Use snd_printd_ratelimit() (Jaroslav Kysela) [1044022]
-- [alsa] pcm: Add snd_printd_ratelimit() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Try to allow haswell HDMI audio even without powerwell (Jaroslav Kysela) [1044022]
-- [alsa] hda: Limit internal mic boost for a few more Thinkpad machines (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix the order of a quirk table (janitorial) (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix internal mic boost on three Thinkpad machines (Jaroslav Kysela) [1044022]
-- [alsa] rme96: Add pcm stream synchronization (Jaroslav Kysela) [1044022]
-- [alsa] hda: Mute the right widget in auto_mute_via_amp mode (Jaroslav Kysela) [1044022]
-- [alsa] hda: Allow auto_mute_via_amp on bind mute controls (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: fix automatic Roland/Yamaha MIDI detection (Jaroslav Kysela) [1044022]
-- [alsa] don't push static constants on stack for *ph (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: WARN_ON when alts is passed as NULL (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove implicit_fb from quirk (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove is_playback from implicit feedback quirks (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: do not initialize and check implicit_fb (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: reverse condition logic in set_sync_endpoint (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: move implicit fb quirks to separate function (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: separate sync endpoint setting from set_format (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove assignment from if condition (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove disabled debug code in set_format (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix jack gating when auto_{mute,mic} is suppressed (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix invalid multi-io creation on VAIO-Z laptops (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove analog mic pin override from STAC9228 dell-bios quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: WAKEEN feature enabling for runtime pm (Jaroslav Kysela) [1044022]
-- [alsa] hda: jack poll once if jackpoll_interval==0 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Clearing jackpoll_interval avoid pending work (Jaroslav Kysela) [1044022]
-- [alsa] usx2y: remove an unneeded check (Jaroslav Kysela) [1044022]
-- [alsa] hda: use azx_writew() for 16-bit length register (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix the noise after suspend on ALC283 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Selectively call snd_hda_shutup_pins() (Jaroslav Kysela) [1044022]
-- [alsa] hiface: return correct XRUN indication (Jaroslav Kysela) [1044022]
-- [alsa] replace strict_strto*() with kstrto*() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add snd_hda_jack_detect_state() helper function (Jaroslav Kysela) [1044022]
-- [alsa] thinkpad-acpi: Add mute and mic-mute LED functionality (Jaroslav Kysela) [1044022]
-- [alsa] hda: Headphone mic support for an Asus/Conexant device (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: remove unneeded semicolon (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: fix regression for fixed stream quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1986A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop a few other static quirks for AD1986A (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop static quirk for Toshiba Satellite L40-10Q (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop static quirks for other AD1986A Samsung machines (Jaroslav Kysela) [1044022]
-- [alsa] hda: Convert static quirks for AD1986A Samsung laptops (Jaroslav Kysela) [1044022]
-- [alsa] hda: Convert the static quirk for Samsung Q1 Ultra (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1988 codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1981 and AD1983 codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1884/1984 & variants (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1882 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add fixup for HP TouchSmart with AD1984A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add fixup for Lenovo Thinkpad with AD1984 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add GPIO control to AD1884 HP fixup (Jaroslav Kysela) [1044022]
-- [alsa] hda: Move azx_first_init() into azx_probe_continue() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix runtime PM check (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add power-welll support for haswell HDA (Jaroslav Kysela) [1044022]
-- [alsa] hda: Keep halting ALC5505 DSP (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Added some comments and control register documentation (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Use snd_ctl_enum_info() in snd_hdspm_info_autosync_ref (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Use snd_ctl_enum_info() for texts_autosync (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Use snd_ctl_enum_info for most text arrays (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Enable TCO support (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Report external sample rate to userspace (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Introduce hdspm_external_rate_to_enum() helper function (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Include TCO and Sync-In in proc output (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Enable TCO/Sync-In in snd_hdspm_put_sync_ref() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Enable TCO input in hdspm_external_sample_rate() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Ignore float/int format bit (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Enable AES32 in hdspm_get_tco_sample_rate (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Enable AES32 in hdspm_get_wc_sample_rate (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add prototype declarations (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Introduce hdspm_get_aes_sample_rate() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Add TCO and Sync-In text entries (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aio: Drop superfluous HDSPM_AUTOSYNC_REF (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Cosmetics, no real change (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Fix TCO sync check reporting (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Create TCO readout function (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Fix S/PDIF Sync status and frequency on RME AIO (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add support for AEBs on RME AIO (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Enable AD/DA/PH gains and S/PDIF-Input select on AIO (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Introduce generic AIO tristate control (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Refactor ENUMERATED_CTL_INFO into function (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add S/PDIF, XLR, WCK48 and ADAT-in controls for RME AIO cards (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add S/PDIF and WCK48 controls for RME RayDAT (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Drop duplicate code in hdspm_set_system_clock_mode() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Augment HDSPM_TOGGLE_SETTING for AIO/RayDAT (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Introduce hdspm_is_raydat_or_aio() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add missing defines for RME AIO and RayDAT (Jaroslav Kysela) [1044022]
-- [alsa] vmaster: Fix the regression of missing vmaster hook call (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add Dell SSID to support Headset Mic recording (Jaroslav Kysela) [1044022]
-- [alsa] pcm_native: switch to fdget()/fdput() (Jaroslav Kysela) [1044022]
-- [alsa] treewide: relase -> release (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: Add Audio Advantage Micro II (Jaroslav Kysela) [1044022]
-- [alsa] Replace the magic number 44 with const (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add support for ALC5505 DSP power-save mode (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add quirks for Roland QUAD/OCTO-CAPTURE (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: claim autodetected PCM interfaces all at once (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove superfluous Roland quirks (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add MIDI port names for some Roland devices (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add support for many Roland/Yamaha devices (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: detect implicit feedback on Roland devices (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: store protocol version in struct audioformat (Jaroslav Kysela) [1044022]
-- [alsa] pci: replace numeric with standard PM state macros (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add missing alc_inv_dmic_sync() call in alc269_resume() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove superfluous stac_resume() (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: poll eld at resume time (Jaroslav Kysela) [1044022]
-- [alsa] hda: clean up code to reset hda link (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add In-driver connection info (Jaroslav Kysela) [1044022]
-- [alsa] hda: Use auto_mute_via_amp=1 for VT1708 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add auto_mute_via_amp flag to generic parser (Jaroslav Kysela) [1044022]
-- [alsa] vmaster: Add snd_ctl_sync_vmaster() helper function (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove unused variable (Jaroslav Kysela) [1044022]
-- [alsa] hda: reset hda link during system/runtime suspend (Jaroslav Kysela) [1044022]
-- [alsa] Add M2Tech hiFace USB-SPDIF driver (Jaroslav Kysela) [1044022]
-- [alsa] usb: uniform style used in MODULE_SUPPORTED_DEVICE() (Jaroslav Kysela) [1044022]
-- [alsa] snd-usb-6fire: use vmalloc buffers (Jaroslav Kysela) [1044022]
-- [alsa] snd-usb-caiaq: use vmalloc buffers (Jaroslav Kysela) [1044022]
-- [alsa] snd-usb-caiaq: remove the unused snd_card_used variable (Jaroslav Kysela) [1044022]
-- [alsa] hda: Make Thinkpad X220-tablet use generic parser (Jaroslav Kysela) [1044022]
-- [alsa] hda: Use snd_hda_check_power_state() in patch_hdmi.c (Jaroslav Kysela) [1044022]
-- [alsa] hda: Avoid choose same converter for unused pins (Jaroslav Kysela) [1044022]
-- [alsa] hda: Haswell converter power state D0 verify (Jaroslav Kysela) [1044022]
-- [alsa] ua101: convert __list_for_each usage to list_for_each (Jaroslav Kysela) [1044022]
-- [alsa] usx2y: remove some old dead code (Jaroslav Kysela) [1044022]
-- [alsa] hda: Don't take unresponsive D3 transition too serious (Jaroslav Kysela) [1044022]
-- [alsa] hda: Introduce bit flags to snd_hda_codec_read/write() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop hard dependency on CONFIG_SND_DYNAMIC_MINORS (Jaroslav Kysela) [1044022]
-- [alsa] hda/via: Use standard snd_hda_shutup_pins() (Jaroslav Kysela) [1044022]
-- [alsa] hda: add mic fixup for ALC269VB on Ordissimo EVE2 (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Allow SingleSpeed WordClock when in DS/QS mode (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Refactor SS/DS/QS clock multiplier into function (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add support for 128-192kHz WordClock input (Jaroslav Kysela) [1044022]
-- [alsa] es1968: Add radio support for MediaForte M56VAP (Jaroslav Kysela) [1044022]
-- [alsa] pci: Remove superfluous pci_set_drvdata(pci, NULL) at remove (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable mic-mute LED on more HP laptops (Jaroslav Kysela) [1044022]
-- [alsa] Add kconfig to specify the max card numbers (Jaroslav Kysela) [1044022]
-- [alsa] Fix the default suffix string with high card number (Jaroslav Kysela) [1044022]
-- [alsa] Constify the snd_pcm_substream struct ops field (Jaroslav Kysela) [1044022]
-- [alsa] hda: add PCI IDs for Intel BayTrail (Jaroslav Kysela) [1044022]
-- [alsa] Fix assignment of 0/1 to bool variables (Jaroslav Kysela) [1044022]
-
-* Tue Jan 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-78.el7]
-- [scsi] hpsa: remove cancelled ID's and add a new one (Tomas Henzl) [1040644]
-- [scsi] hpsa: bump driver version to 3.4.2-1 (Tomas Henzl) [1040644]
-- [scsi] hpsa: add 4 new PCI ID's for HP Gen9 servers (Tomas Henzl) [1040644]
-
-* Tue Jan 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-77.el7]
-- [s390] revert kvm support patches (Jarod Wilson) [1035261 1049469]
-- [block] nvme: Disable admin queue on init failure (David Milburn) [1049584]
-- [block] nvme: Dynamically allocate partition numbers (David Milburn) [1049584]
-- [block] nvme: Async IO queue deletion (David Milburn) [1049584]
-- [block] nvme: Surprise removal handling (David Milburn) [1049584]
-- [block] nvme: Abort timed out commands (David Milburn) [1049584]
-- [block] nvme: Schedule reset for failed controllers (David Milburn) [1049584]
-- [block] nvme: Device resume error handling (David Milburn) [1049584]
-- [block] nvme: Cache dev->pci_dev in a local pointer (David Milburn) [1049584]
-- [block] nvme: Fix lockdep warnings (David Milburn) [1049584]
-- [block] nvme: compat SG_IO ioctl (David Milburn) [1049584]
-- [block] nvme: remove deprecated IRQF_DISABLED (David Milburn) [1049584]
-- [block] nvme: Avoid shift operation when writing cq head doorbell (David Milburn) [1049584]
-- [block] nvme-core: replace dma_set_mask()+dma_set_coherent_mask() with new helper (David Milburn) [1049584]
-- [ethernet] be2net: update driver version to 10.0.x (Ivan Vecera) [1054092]
-- [ethernet] be2net: cleanup wake-on-lan code (Ivan Vecera) [1054092]
-- [ethernet] be2net: use GET_MAC_LIST cmd to query mac-address from a pmac-id (Ivan Vecera) [1054092]
-- [ethernet] be2net: do not use frag index in the RX-compl entry (Ivan Vecera) [1054092]
-- [ethernet] be2net: Remove "10Gbps" from driver description string (Ivan Vecera) [1054092]
-- [ethernet] be2net: fix incorrect setting of cmd_privileges for VFs (Ivan Vecera) [1054092]
-- [ethernet] be2net: ignore mac-addr set call for an already programmed mac-addr (Ivan Vecera) [1054092]
-- [ethernet] be2net: do not call be_set/get_fw_log_level() on Skyhawk-R (Ivan Vecera) [1054092]
-- [ethernet] be2net: Log the profile-id used by FW during driver initialization (Ivan Vecera) [1054092]
-- [ethernet] be2net: don't set "pport" field when querying "pvid" (Ivan Vecera) [1054092]
-- [ethernet] be2net: Use MCC_CREATE_EXT_V1 cmd for Skyhawk-R (Ivan Vecera) [1054092]
-- [infiniband] qib: Convert qib_user_sdma_pin_pages() to use get_user_pages_fast() (Jay Fenlason) [725023]
-- [infiniband] qib: Improve SDMA performance (Jay Fenlason) [725023]
-- [infiniband] qib: Fix txselect regression (Jay Fenlason) [725023]
-- [infiniband] qib: Fix checkpatch __packed warnings (Jay Fenlason) [725023]
-- [infiniband] qib: fix (some) dcache abuses (Jay Fenlason) [725023]
-- [infiniband] qib: Remove GENERIC_HARDIRQ config option (Jay Fenlason) [725023]
-- [infiniband] qib: Move COUNTER_MASK definition within qib_mad.h header guards (Jay Fenlason) [725023]
-- [infiniband] qib: Clean up unnecessary MSI/MSI-X capability find (Jay Fenlason) [725023]
-- [infiniband] qib: Make qib_driver static (Jay Fenlason) [725023]
-- [infiniband] qib: Add err_decode() call for ring dump (Jay Fenlason) [725023]
-- [infiniband] qib: Log all SDMA errors unconditionally (Jay Fenlason) [725023]
-- [infiniband] qib: Fix module-level leak (Jay Fenlason) [725023]
-- [infiniband] qib: New transmitter tunning settings for Dell 1.1 backplane (Jay Fenlason) [725023]
-- [infiniband] qib: Add qp_stats debug file (Jay Fenlason) [725023]
-- [infiniband] qib: Add per-context stats interface (Jay Fenlason) [725023]
-- [infiniband] qib: Convert opcode counters to per-context (Jay Fenlason) [725023]
-- [infiniband] qib: Optimize CQ callbacks (Jay Fenlason) [725023]
-- [infiniband] qib: Add dual-rail NUMA awareness for PSM processes (Jay Fenlason) [725023]
-- [infiniband] qib: Add optional NUMA affinity (Jay Fenlason) [725023]
-- [infiniband] qib: Update minor version number (Jay Fenlason) [725023]
-- [infiniband] qib: Remove atomic_inc_not_zero() from QP RCU (Jay Fenlason) [725023]
-- [infiniband] qib: Add DCA support (Jay Fenlason) [725023]
-- [infiniband] qib: avoid format string in dev_set_name (Jay Fenlason) [725023]
-- [tools] power/turbostat: Support Silvermont (Lenny Szubowicz) [1048051]
-- [ethernet] bnx2: Update version to 2.2.5 (Neil Horman) [1051172]
-- [ethernet] bnx2: Report MDI/MDIX status to ethtool (Neil Horman) [1051172]
-- [ethernet] bnx2: Enable auto-mdix when autoneg is disabled (Neil Horman) [1051172]
-- [ethernet] bnx2: Advertise nothing when speed is forced (Neil Horman) [1051172]
-- [ethernet] bnx2: calls skb_set_hash (Neil Horman) [1051172]
-- [ethernet] bnx2: remove unnecessary pci_set_drvdata() (Neil Horman) [1051172]
-- [ethernet] bnx2: Miscellaneous conversions to ETH_ALEN (Neil Horman) [1051172]
-- [kernel] thermal: Disable power limit notification interrupt by default (Prarit Bhargava) [1050198]
-- [kernel] thermal: Delete power-limit-notification console messages (Prarit Bhargava) [1050198]
-- [x86] mce: Fix mce_start_timer semantics (Prarit Bhargava) [1045845]
-- [x86] Add check for number of available vectors before CPU down (Prarit Bhargava) [1045845]
-- [ethernet] i40evf: fix s390 build failure due to implicit prefetch.h (Stefan Assmann) [1053147]
-- [ethernet] i40evf: A0 silicon specific (Stefan Assmann) [1053147]
-- [ethernet] i40evf: add driver to kernel build system (Stefan Assmann) [1053147]
-- [ethernet] i40evf: init code and hardware support (Stefan Assmann) [1053147]
-- [ethernet] i40evf: driver core headers (Stefan Assmann) [1053147]
-- [ethernet] i40evf: virtual channel interface (Stefan Assmann) [1053147]
-- [ethernet] i40evf: core ethtool functionality (Stefan Assmann) [1053147]
-- [ethernet] i40evf: transmit and receive functionality (Stefan Assmann) [1053147]
-- [ethernet] i40evf: main driver core (Stefan Assmann) [1053147]
-- [pci] Never treat a VF as a multifunction device (Alex Williamson) [1049716]
-
-* Fri Jan 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-76.el7]
-- [scsi] aacraid: kdump fix (Rich Bono) [1019091]
-- [scsi] lpfc: update version for 8.3.7.34.3p driver release (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed unassigned variable in ELS timeout message (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed incorrect allocation of iDiags directories/files in debugfs (Rob Evers) [1025854]
-- [scsi] lpfc: Fix kernel panics from corrupted ndlp list (Rob Evers) [1025854]
-- [scsi] lpfc: Fix Crash in lpfc_els_timeout_handler (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed stopped FCF discovery on failed FCF record read (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed IO hang when in msi mode (Rob Evers) [1025854]
-- [scsi] lpfc: Fix wrong assignment in lpfc_debugfs.c (Rob Evers) [1025854]
-- [scsi] lpfc: Fix typo on NULL assignment (Rob Evers) [1025854]
-- [scsi] lpfc: Update lpfc version for 8.3.7.34.1p driver release (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed not processing task management IOCB response status (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed spinlock hang (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed invalid Total_Data_Placed value received for els and ct command responses (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed invalid fcp_rsp length fir FCP_ICMND (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed invalid mailbox timeouts (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed spinlock inversion problem (Rob Evers) [1025854]
-- [scsi] lpfc: Fix crash after xri limit is reached (Rob Evers) [1025854]
-- [scsi] lpfc: remove unnecessary read of PCI_CAP_ID_EXP (Rob Evers) [1025854]
-
-* Fri Jan 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-75.el7]
-- [kernel] audit: log task info on feature change (Richard Guy Briggs) [1050425]
-- [kernel] keys: correct alignment of system_certificate_list content in assembly file (Hendrik Brueckner) [1038139]
-- [kernel] system_certificate: use real contents instead of macro GLOBAL() (Hendrik Brueckner) [1038139]
-- [kernel] audit: don't generate audit feature changed log when audit disabled (Richard Guy Briggs) [1045668]
-- [kernel] audit: fix incorrect order of log new and old feature (Richard Guy Briggs) [1045668]
-- [kernel] selinux: apply selinux checks on new audit message types (Richard Guy Briggs) [1045668]
-- [kernel] audit: implement generic feature setting and retrieving (Richard Guy Briggs) [1045668]
-- [s390] smp: improve setup of possible cpu mask (Hendrik Brueckner) [1052906]
-- [iommu] intel-iommu: fix off-by-one in pagetable freeing (Myron Stowe) [1048955]
-- [mm] page_alloc: honor min_free_kbytes set by user (Steve Best) [1047779]
-- [kernel] mutex: Do not unnecessarily deal with waiters (Larry Woodman) [1031475]
-- [ethernet] tg3: Update version to 3.136 (Ivan Vecera) [1048557]
-- [ethernet] tg3: Poll cpmu link state on APE + ASF enabled devices (Ivan Vecera) [1048557]
-- [ethernet] tg3: Set the MAC clock to the fastest speed during boot code load (Ivan Vecera) [1048557]
-- [ethernet] tg3: Add unicast filtering support (Ivan Vecera) [1048557]
-- [ethernet] tg3: Refactor __tg3_set_mac_addr() (Ivan Vecera) [1048557]
-- [ethernet] tg3: Expand 4g_overflow_test workaround to skb fragments of any size (Ivan Vecera) [1048557]
-- [ethernet] tg3: Initialize REG_BASE_ADDR at PCI config offset 120 to 0 (Ivan Vecera) [1048557]
-- [ethernet] tg3: Update version to 3.135 (Ivan Vecera) [1048557]
-- [ethernet] tg3: Expand multicast drop counter miscounting fix to 5762 (Ivan Vecera) [1048557]
-- [ethernet] tg3: Fix bit definition for the nvram Auto Power Down setting (Ivan Vecera) [1048557]
-- [ethernet] tg3: Add flag to disable 1G Half Duplex advertisement (Ivan Vecera) [1048557]
-- [ethernet] tg3: Don't add rxbds_empty to rx_over_errors (Ivan Vecera) [1048557]
-- [ethernet] tg3: Give up chip reset and carrier loss handling if PCI device is not present (Ivan Vecera) [1048557]
-- [ethernet] tg3: Validate hwtstamp_config completely before applying it (Ivan Vecera) [1048557]
-- [ethernet] tg3: avoid double-freeing of rx data memory (Ivan Vecera) [1048557]
-- [ethernet] bnx2x: fix DMA unmapping of TSO split BDs (Michal Schmidt) [1043794]
-- [ethernet] bnx2x: fix VLAN configuration for VFs (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: fix AFEX memory overflow (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Clean before update RSS arrives (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Correct number of MSI-X vectors for VFs (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: limit number of interrupt vectors for 57711 (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix KR2 work-around detection of BCM8073 (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix incorrect link-up report (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix Duplex setting for 54618se (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix passive DAC cable detection (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix 578xx-KR 1G link (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix build with SRIOV disabled (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: add VF Multicast filters support (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Add num of VFs to Management statistics (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: no error when RSS configuration fails (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: add Big-Endian ethtool comment (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Add AER support (missing bits) (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Add support for Multi-Function UNDI (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: downgrade "valid ME register value" message level (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: cleanup skb_set_hash (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: calls skb_set_hash (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: avoid null pointer dereference when enabling SR-IOV (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: add TSO support for SIT tunnels (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: add TSO support for IPIP (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Prevent "timeout waiting for state X" (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: prevent CFC attention (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Prevent panic during DMAE timeout (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Clean the sp rtnl task upon unload (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Michal Schmidt) [1038666]
-- [misc] list: introduce list_next_entry() and list_prev_entry() (Michal Schmidt) [1038666]
-- [virt] kvm: fix apic_base enable check (Marcelo Tosatti) [1053143]
-- [virt] kvm: fix x86 emulation of "movzbl bpl, eax" (Marcelo Tosatti) [1053143]
-- [virt] kvm: limit PIT timer frequency (Marcelo Tosatti) [1053143]
-- [virt] kvm: fix tsc catchup issue with tsc scaling (Marcelo Tosatti) [1053143]
-- [virt] kvm: handle invalid root_hpa everywhere (Marcelo Tosatti) [1053143]
-- [virt] kvm/mmu: handle invalid root_hpa at __direct_map (Marcelo Tosatti) [1053143]
-- [virt] kvm/vmx: fix use after free of vmx->loaded_vmcs (Marcelo Tosatti) [1053143]
-- [virt] kvm: Fix APIC map calculation after re-enabling (Marcelo Tosatti) [1053143]
-- [virt] kvm: emulate SAHF instruction (Marcelo Tosatti) [1053143]
-- [virt] flags: Rename X86_EFLAGS_BIT1 to X86_EFLAGS_FIXED (Marcelo Tosatti) [1053143]
-- [virt] kvm: Mapping IOMMU pages after updating memslot (Marcelo Tosatti) [1053143]
-- [fs] aio: checking for NULL instead of IS_ERR (Motohiro Kosaki) [995323]
-
-* Fri Jan 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-74.el7]
-- [net] bridge: Fix memory leak when deleting bridge with vlan filtering enabled (Vlad Yasevich) [1031068]
-- [net] bridge: Call vlan_vid_del for all vids at nbp_vlan_flush (Vlad Yasevich) [1031068]
-- [net] bridge: Use vlan_vid_[add/del] instead of direct ndo_vlan_rx_[add/kill]_vid calls (Vlad Yasevich) [1031068]
-- [net] ipv6: add link-local, sit and loopback address with INFINITY_LIFE_TIME (Jiri Pirko) [1054095]
-- [net] ipv6: don't install anycast address for /128 addresses on routers (Jiri Pirko) [1054095]
-- [net] ipv6: addrconf: fix preferred lifetime state-changing behavior while valid_lft is infinity (Jiri Pirko) [1054095]
-- [net] ipv4: processing ancillary IP_TOS or IP_TTL (Francesco Fusco) [1054160]
-- [net] ipv4: IP_TOS and IP_TTL can be specified as ancillary data (Francesco Fusco) [1054160]
-- [net] netfilter: synproxy: correct wscale option passing (Jesper Brouer) [1054076]
-- [net] netfilter: synproxy: send mss option to backend (Jesper Brouer) [1054076]
-- [net] ipv6: addrconf: don't cleanup prefix route for IFA_F_NOPREFIXROUTE (Jiri Pirko) [1052884]
-- [net] ipv6: addrconf: add IFA_F_NOPREFIXROUTE flag to suppress creation of IP6 routes (Jiri Pirko) [1052884]
-- [net] ipv6: addrconf spelling fixes (Jiri Pirko) [1052884]
-- [net] ipv6: unneccessary to get address prefix in addrconf_get_prefix_route (Jiri Pirko) [1052884]
-- [net] bridge: apply multicast snooping to IPv6 link-local, too (Francesco Fusco) [1051501]
-- [net] bridge: prevent flooding IPv6 packets that do not have a listener (Francesco Fusco) [1051501]
-- [net] ipv6: don't call fib6_run_gc() until routing is ready (Florian Westphal) [1052111]
-- [net] ipv6: always set the new created dst's from in ip6_rt_copy (Neil Horman) [1050828]
-- [net] vxlan: Mark vxlan_dev flags with VXLAN_F_IPV6 properly (Thomas Graf) [1049141]
-- [net] netfilter: RHEL7 kABI prepare struct netns_ct (Jesper Brouer) [1030994]
-- [net] reorder struct netns_ct for better cache-line usage (Jesper Brouer) [1030994]
-- [net] ipv6: release dst properly in ipip6_tunnel_xmit (Michal Schmidt) [1038708]
-- [net] ipv6: sit: update mtu check to take care of gso packets (Michal Schmidt) [1038708]
-- [net] ipv6: sit: add GSO/TSO support (Michal Schmidt) [1038708]
-- [net] ipv6: gso: make ipv6_gso_segment() stackable (Michal Schmidt) [1038708]
-- [net] ipv6: wire up skb->encapsulation (Michal Schmidt) [1038708]
-- [net] ipip: add GSO/TSO support (Michal Schmidt) [1038708]
-- [net] inet: fix a UFO regression (Michal Schmidt) [1038708]
-- [net] inet: restore gso for vxlan (Michal Schmidt) [1038708]
-- [net] ipv4: gso: make inet_gso_segment() stackable (Michal Schmidt) [1038708]
-- [net] ipv4: gso: send_check() & segment() cleanups (Michal Schmidt) [1038708]
-- [net] generalize skb_segment() (Michal Schmidt) [1038708]
-- [net] ipv4: generalize gre_handle_offloads (Michal Schmidt) [1038708]
-
-* Thu Jan 16 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-73.el7]
-- [kernel] audit: audit_log_start running on auditd should not stop (Richard Guy Briggs) [1019895]
-- [kernel] audit: drop audit_cmd_lock in AUDIT_USER family of cases (Richard Guy Briggs) [1019895]
-- [security] smack: call WARN_ONCE() instead of calling audit_log_start() (Richard Guy Briggs) [1019895]
-- [security] selinux: call WARN_ONCE() instead of calling audit_log_start() (Richard Guy Briggs) [1019895]
-- [virt] vfio: Convert control interface to misc driver (Alex Williamson) [1044595]
-- [virt] vfio: Reserve minor for VFIO (Alex Williamson) [1044595]
-- [ethernet] qlcnic: Update version to 5.3.48.1 (Chad Dupuis) [1048773]
-- [ethernet] qlcnic: Fix bug in Tx completion path (Chad Dupuis) [1048773]
-- [ethernet] qlcnic: Fix usage of netif_tx_{wake, stop} api during link change (Chad Dupuis) [1048773]
-- [ethernet] qlcnic: Fix system hang while running traffic and bringing interface down (Chad Dupuis) [1048773]
-- [virt] hyperv/netvsc: don't flush peers notifying work during setting mtu (Jason Wang) [1040785 983434]
-- [virt] hyperv: Fix race between probe and open calls (Jason Wang) [983434]
-- [s390] kvm: mark as Tech Preview (Hendrik Brueckner) [1049469]
-- [x86] irq: Fix do_IRQ() interrupt warning for cpu hotplug retriggered irqs (Prarit Bhargava) [1052179]
-- [kernel] audit: log on errors from filter user rules (Richard Guy Briggs) [1034446]
-- [x86] uv: Add GRU distributed mode mappings (George Beshers) [1032365]
-- [iommu] dmar: Modify warn_invalid_dmar() message to do a less loud warning (Prarit Bhargava) [968249]
-- [dma] ioat: Modify ioat3_dca_init() message to do a less loud warning (Prarit Bhargava) [968235]
-
-* Wed Jan 15 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-72.el7]
-- [ethernet] sfc: fix sparse non static symbol warning (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fix RX drop filters for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add PTP counters to ethtool stats (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Changed the statistic name emerg_{fetch, wait} to hlb_{fetch, wait} (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: remove unused 'enum efx_rx_alloc_method' (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: remove unused 'refcnt' from efx_rx_page_state (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Implement efx_nic_type::filter_clear_rx operation for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Allow filter removal only with exactly matching priority (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Don't refer to 'stack' in filter implementation (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Change priority and flags for automatic MAC filters (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Change efx_nic_type::rx_push_indir_table to push hash key as well (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add more information to many warnings using WARN() and netdev_WARN() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Remove unnecessary condition for processing the TX timestamp queue (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Don't clear timestamps in efx_ptp_rx() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Enable PTP clock and timestamping for all functions on EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Associate primary and secondary functions of controller (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Store VPD serial number at probe time (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add RX packet timestamping for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Copy RX prefix into skb head area in efx_rx_mk_skb() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: split setup of hardware timestamping into NIC-type operation (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add support for SFC9100 timestamp format (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Tidy up PTP synchronization code (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: PTP - tidy up unused/useless variables (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Remove kernel-doc for efx_ptp_data fields not present in this version (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Initialise efx_ptp_data::phc_clock_info from a static template (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Do not use MAC address as clock name (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Store flags from MC_CMD_DRV_ATTACH for later use (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Remove dependency of PTP on having a dedicated channel (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Split PTP multicast filter insertion/removal out of efx_ptp_{start, stop}() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Return EBUSY for filter insertion on EF10, matching Falcon/Siena (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Expose NVRAM_PARTITION_TYPE_LICENSE on EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fold efx_flush_all() into efx_stop_port() and update comments (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Map MCDI error MC_CMD_ERR_ENOTSUP to Linux EOPNOTSUPP (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Log all unexpected MCDI errors (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add new sensor names (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Revise sensor names to be more understandable and consistent (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Report units in sensor warnings (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Correct RX dropped count for drops while interface is down (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Make initial fill of RX descriptors synchronous (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Tighten the check for RX merged completion events (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add MC BISTs to ethtool offline self test on EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Update MCDI protocol definitions (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Demote "MC Scheduler error" messages (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Poll for MCDI completion once before timeout occurs (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Refactor efx_mcdi_poll() by introducing efx_mcdi_poll_once() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: RX buffer allocation takes prefix size into account in IP header alignment (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Maintain current frequency adjustment when applying a time offset (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Stop/re-start PTP when stopping/starting the datapath (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Rate-limit log message for PTP packets without a matching timestamp event (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc/ptp: Moderate log message on event queue overflow (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add length checks to efx_xmit_with_hwtstamp() and efx_ptp_is_ptp_tx() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: remove unnecessary pci_set_drvdata() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Implement the SIOCGHWTSTAMP ioctl (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fix DMA unmapping issue with firmware assisted TSO (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Only bind to EF10 functions with the LinkCtrl and Trusted flags (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add PM and RXDP drop counters to ethtool stats (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add definitions for new stats counters and capability flag (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Refactor EF10 stat mask code to allow for more conditional stats (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fix internal indices of ethtool stats for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add rmb() between reading stats and generation count to ensure consistency (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Increase MCDI status timeout to 250ms (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Wait for MC reboot to complete before scheduling driver reset (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Remove extern from function prototypes (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Support ARFS for IPv6 flows (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Use TX PIO for sufficiently small packets (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Introduce inline functions to simplify TX insertion (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Separate out queue-empty check from efx_nic_may_push_tx_desc() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Allocate and link PIO buffers; map them with write-combining (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Implement firmware-assisted TSO for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fold tso_get_head_fragment() into tso_start() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add EF10 registers to register dump (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: efx_ef10_filter_update_rx_scatter() can be static (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: efx_ethtool_get_ts_info() can be static (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Reinitialise and re-validate datapath caps after MC reboot (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Clean up validation of datapath capabilities (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Reset derived rx_bad_bytes statistic when EF10 MC is rebooted (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Disable PTP on EF10 until we're ready to handle inline RX timestamps (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Minimal support for 40G link speed (Nikolay Aleksandrov) [1028038]
-- [net] net_tstamp: Add SIOCGHWTSTAMP ioctl to match SIOCSHWTSTAMP (Nikolay Aleksandrov) [1028038]
-- [net] socket: Merge multiple implementations of ifreq::ifr_data conversion (Nikolay Aleksandrov) [1028038]
-- [net] socket: Fix minor information leak in siocdevprivate_ioctl() (Nikolay Aleksandrov) [1028038]
-- [net] net_tstamp: Improve kernel-doc for struct hwtstamp_config (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Nikolay Aleksandrov) [1028038]
-- [virt] virtio-net: fix refill races during restore (Jason Wang) [1040802]
-- [virt] virtio: delete napi structures from netdev before releasing memory (Jason Wang) [1040802]
-- [virt] virtio-net: make all RX paths handle errors consistently (Jason Wang) [1032457]
-- [virt] virtio_net: fix error handling for mergeable buffers (Jason Wang) [1032457]
-- [firmware] efi-pstore: Make efi-pstore return a unique id (Seiji Aguchi) [1039150]
-- [firmware] efivars, efi-pstore: Hold off deletion of sysfs entry until the scan is completed (Seiji Aguchi) [1039145]
-- [firmware] efi-pstore: Cocci spatch "memdup.spatch" (Seiji Aguchi) [1039145]
-- [virt] kvm/svm: nested virt support off by default (Marcelo Tosatti) [1034974]
-- [x86] uv: Fix NULL pointer dereference in uv_flush_tlb_others() (George Beshers) [1049559]
-- [fs] kill anon_inode_getfile_private() (Motohiro Kosaki) [995323]
-- [fs] rework aio migrate pages to use aio fs (Motohiro Kosaki) [995323]
-- [fs] take anon inode allocation to libfs.c (Motohiro Kosaki) [995323]
-- [fs] libfs: get exports to definitions of objects being exported (Motohiro Kosaki) [995323]
-- [fs] aio: fix use-after-free in aio_migratepage (Motohiro Kosaki) [995323]
-- [fs] aio: remove unnecessary debugging from aio_free_ring() (Motohiro Kosaki) [995323]
-- [fs] aio: fix race in ring buffer page lookup introduced by page migration support (Motohiro Kosaki) [995323]
-- [fs] aio: fix build when migration is disabled (Motohiro Kosaki) [995323]
-- [fs] aio: Add support to aio ring pages migration (Motohiro Kosaki) [995323]
-- [fs] anon_inode: Introduce a new lib function anon_inode_getfile_private() (Motohiro Kosaki) [995323]
-
-* Tue Jan 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-71.el7]
-- [md] dm-cache: add block sizes and total cache blocks to status output (Mike Snitzer) [1049591]
-- [md] dm-btree: add dm_btree_find_lowest_key (Mike Snitzer) [1049591]
-- [md] dm-space-map-metadata: fix extending the space map (Mike Snitzer) [1049591]
-- [md] dm-space-map-common: make sure new space is used during extend (Mike Snitzer) [1049591]
-- [md] dm: wait until embedded kobject is released before destroying a device (Mike Snitzer) [1049591]
-- [md] dm: remove pointless kobject comparison in dm_get_from_kobject (Mike Snitzer) [1049591]
-- [md] dm-snapshot: call destroy_work_on_stack() to pair with INIT_WORK_ONSTACK() (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: introduce three promotion threshold tunables (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: use list_del_init instead of list_del + INIT_LIST_HEAD (Mike Snitzer) [1049591]
-- [md] dm-thin: fix set_pool_mode exposed pool operation races (Mike Snitzer) [1049591]
-- [md] dm-thin: eliminate the no_free_space flag (Mike Snitzer) [1049591]
-- [md] dm-thin: add error_if_no_space feature (Mike Snitzer) [1049591]
-- [md] dm-thin: requeue bios to DM core if no_free_space and in read-only mode (Mike Snitzer) [1049591]
-- [md] dm-thin: cleanup and improve no space handling (Mike Snitzer) [1049591]
-- [md] dm-thin: log info when growing the data or metadata device (Mike Snitzer) [1049591]
-- [md] dm-thin: handle metadata failures more consistently (Mike Snitzer) [1049591]
-- [md] dm-thin: factor out check_low_water_mark and use bools (Mike Snitzer) [1049591]
-- [md] dm-thin: add mappings to end of prepared_* lists (Mike Snitzer) [1049591]
-- [md] dm-thin: return error from alloc_data_block if pool is not in write mode (Mike Snitzer) [1049591]
-- [md] dm-thin: use bool rather than unsigned for flags in structures (Mike Snitzer) [1049591]
-- [md] dm-persistent-data: cleanup dm-thin specific references in text (Mike Snitzer) [1049591]
-- [md] dm-space-map-metadata: limit errors in sm_metadata_new_block (Mike Snitzer) [1049591]
-- [md] dm-delay: use per-bio data instead of a mempool and slab cache (Mike Snitzer) [1049591]
-- [md] dm-table: remove unused buggy code that extends the targets array (Mike Snitzer) [1049591]
-- [md] dm-thin: fix discard support to a previously shared block (Mike Snitzer) [1049591]
-- [md] dm-thin: initialize dm_thin_new_mapping returned by get_next_mapping (Mike Snitzer) [1049591]
-- [md] dm-array: fix a reference counting bug in shadow_ablock (Mike Snitzer) [1049591]
-- [md] dm-space-map: disallow decrementing a reference count below zero (Mike Snitzer) [1049591]
-- [md] dm-stats: initialize read-only module parameter (Mike Snitzer) [1049591]
-- [md] dm-bufio: initialize read-only module parameters (Mike Snitzer) [1049591]
-- [md] dm-cache: actually resize cache (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: fix promotions to occur as expected (Mike Snitzer) [1049591]
-- [md] dm-thin: allow pool in read-only mode to transition to read-write mode (Mike Snitzer) [1049591]
-- [md] dm-thin: re-establish read-only state when switching to fail mode (Mike Snitzer) [1049591]
-- [md] dm-thin: always fallback the pool mode if commit fails (Mike Snitzer) [1049591]
-- [md] dm-thin: switch to read-only mode if metadata space is exhausted (Mike Snitzer) [1049591]
-- [md] dm-thin: switch to read only mode if a mapping insert fails (Mike Snitzer) [1049591]
-- [md] dm-space-map-metadata: return on failure in sm_metadata_new_block (Mike Snitzer) [1049591]
-- [md] dm-table: fail dm_table_create on dm_round_up overflow (Mike Snitzer) [1049591]
-- [md] dm-snapshot: avoid snapshot space leak on crash (Mike Snitzer) [1049591]
-- [md] dm-delay: fix a possible deadlock due to shared workqueue (Mike Snitzer) [1049591]
-- [md] dm-cache: resolve small nits and improve Documentation (Mike Snitzer) [1049591]
-- [md] dm-cache: add cache block invalidation support (Mike Snitzer) [1049591]
-- [md] dm-cache: add remove_cblock method to policy interface (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: reduce memory requirements (Mike Snitzer) [1049591]
-- [md] dm-cache-metadata: check the metadata version when reading the superblock (Mike Snitzer) [1049591]
-- [md] dm-cache: add passthrough mode (Mike Snitzer) [1049591]
-- [md] dm-cache: cache shrinking support (Mike Snitzer) [1049591]
-- [md] dm-cache: promotion optimisation for writes (Mike Snitzer) [1049591]
-- [md] dm-cache: be much more aggressive about promoting writes to discarded blocks (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: implement writeback_work() and mq_{set, clear}_dirty() (Mike Snitzer) [1049591]
-- [md] dm-cache: optimize commit_if_needed (Mike Snitzer) [1049591]
-- [md] dm-space-map-disk: optimise sm_disk_dec_block (Mike Snitzer) [1049591]
-- [md] dm: fix Kconfig menu indentation (Mike Snitzer) [1049591]
-- [md] dm: allow remove to be deferred (Mike Snitzer) [1049591]
-- [md] dm-table: print error on preresume failure (Mike Snitzer) [1049591]
-- [md] dm-crypt: add TCW IV mode for old CBC TCRYPT containers (Mike Snitzer) [1049591]
-- [md] dm-crypt: properly handle extra key string in initialization (Mike Snitzer) [1049591]
-- [md] dm-cache: log error message if dm_kcopyd_copy() fails (Mike Snitzer) [1049591]
-- [md] dm-cache: use cell_defer() boolean argument consistently (Mike Snitzer) [1049591]
-- [md] dm-cache: return -EINVAL if the user specifies unknown cache policy (Mike Snitzer) [1049591]
-- [md] dm-cache-metadata: return bool from __superblock_all_zeroes (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: a few small fixes (Mike Snitzer) [1049591]
-- [md] dm-cache-policy: remove return from void policy_remove_mapping (Mike Snitzer) [1049591]
-- [md] dm-cache: improve efficiency of quiescing flag management (Mike Snitzer) [1049591]
-- [md] dm-cache: fix a race condition between queuing new migrations and quiescing for a shutdown (Mike Snitzer) [1049591]
-- [md] dm-cache: io destined for the cache device can now serve as tick bios (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: protect residency method with existing mutex (Mike Snitzer) [1049591]
-- [md] dm-array: fix bug in growing array (Mike Snitzer) [1049591]
-- [md] dm-mpath: requeue I/O during pg_init (Mike Snitzer) [1049591]
-- [md] dm-mpath: fix race condition between multipath_dtr and pg_init_done (Mike Snitzer) [1049591]
-- [md] dm: allocate buffer for messages with small number of arguments using GFP_NOIO (Mike Snitzer) [1049591]
-- [ethernet] be2net: fix max_evt_qs calculation for BE3 in SR-IOV config (Ivan Vecera) [1049512]
-- [ethernet] be2net: increase the timeout value for loopback-test FW cmd (Ivan Vecera) [1049512]
-- [ethernet] be2net: disable RSS when number of RXQs is reduced to 1 via set-channels (Ivan Vecera) [1049512]
-- [ethernet] be2net: slight optimization of addr compare (Ivan Vecera) [1049512]
-- [ethernet] be2net: calls skb_set_hash (Ivan Vecera) [1049512]
-- [net] Add function to set the rxhash (Ivan Vecera) [1049512]
-- [ethernet] be2net: Free/delete pmacs (in be_clear()) only if they exist (Ivan Vecera) [1049512]
-- [ethernet] be2net: Fix Lancer error recovery to distinguish FW download (Ivan Vecera) [1049512]
-- [ethernet] be2net: Avoid programming permenant MAC by BE3-R VFs (Ivan Vecera) [1049512]
-- [ethernet] be2net: set coalesce-wm in CQ_CREATE_V2 cmd (Ivan Vecera) [1049512]
-- [ethernet] be2net: Disabling and enabling interrupts in suspend and resume (Ivan Vecera) [1049512]
-- [ethernet] be2net: Delete secondary unicast MAC addresses during be_close (Ivan Vecera) [1049512]
-- [ethernet] be2net: Fix unconditional enabling of Rx interface options (Ivan Vecera) [1049512]
-- [ethernet] be2net: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Ivan Vecera) [1049512]
-
-* Tue Jan 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-70.el7]
-- [scsi] qla4xxx: v5.04.00.02.07.00-k0 (Chad Dupuis) [948116]
-- [scsi] qla4xxx: Add support for additional network parameters settings (Chad Dupuis) [1006152]
-- [scsi] qla4xxx: v5.04.00.01.07.00-k0 (Chad Dupuis) [1006152]
-- [scsi] qla4xxx: Add support to get CHAP details for flash target session (Chad Dupuis) [1006152]
-- [scsi] qla4xxx: Add support to set CHAP entries (Chad Dupuis) [1006152]
-- [scsi] qla4xxx: Use offset based on adapter type to set CHAP entry in flash (Chad Dupuis) [1006152]
-- [scsi] iscsi_transport: Additional parameters for network settings (Chad Dupuis) [948116]
-- [scsi] iscsi_transport: Remove net param enum values (Chad Dupuis) [948116]
-- [scsi] scsi_transport_iscsi: Add support to set CHAP entries (Chad Dupuis) [1006152]
-- [scsi] Update documentation for scsi eh patchset (Ewan Milne) [987784]
-- [scsi] Set the minimum valid value of 'eh_deadline' as 0 (Ewan Milne) [987784]
-- [scsi] Unlock accesses to eh_deadline (Ewan Milne) [987784]
-- [scsi] improved eh timeout handler (Ewan Milne) [987784]
-- [scsi] Fix erratic device offline during EH (Ewan Milne) [987784]
-- [scsi] scsi_error: Escalate to LUN reset if abort fails (Ewan Milne) [987784]
-- [scsi] Adjust eh_deadline changes to match final upstream version (Ewan Milne) [987784]
-- [scsi] Disable WRITE SAME for RAID and virtual host adapter drivers (Ewan Milne) [1010379]
-- [scsi] pm80xx: Removing redundant code snippets (Rich Bono) [1044113]
-- [scsi] pm80xx: Tasklets synchronization fix (Rich Bono) [1044113]
-- [scsi] pm8001: clean up unnecessary MSI/MSI-X capability find (Rich Bono) [1044113]
-- [scsi] pm8001: use pdev->pm_cap instead of pci_find_capability(.., PCI_CAP_ID_PM) (Rich Bono) [1044113]
-- [scsi] pm80xx: Module author addition (Rich Bono) [1044113]
-- [scsi] pm80xx: Resetting the phy state (Rich Bono) [1044113]
-- [scsi] pm80xx: Fix for direct attached device (Rich Bono) [1044113]
-- [net] cnic: Add a signature to indicate valid doorbell offset (Maurizio Lombardi) [1051181]
-- [scsi] bfa: Driver version upgrade to 3.2.23.0 (Vijay Guvva) [1032723]
-- [scsi] bfa: Fix smatch warnings (Vijay Guvva) [1032723]
-- [scsi] bfa: change FC_ELS_TOV to 20sec (Vijay Guvva) [1032723]
-- [scsi] bfa: Observed auto D-port mode instead of manual (Vijay Guvva) [1032723]
-- [scsi] bfa: Fix for bcu or hcm faa query hang (Vijay Guvva) [1032723]
-- [scsi] bfa: LUN discovery issue in direct attach mode (Vijay Guvva) [1032723]
-- [scsi] bfa: Register port with SCSI even on port init failure (Vijay Guvva) [1032723]
-- [scsi] bfa: Firmware patch simplification (Vijay Guvva) [1032723]
-- [ethernet] bna: Fix build due to missing use of dma_unmap_len_set() (Ivan Vecera) [1030679]
-- [ethernet] bna: Update the Driver Version to 3.2.23.0 (Ivan Vecera) [1030679]
-- [ethernet] bna: Firmware Patch Simplification (Ivan Vecera) [1030679]
-- [ethernet] bna: Embed SKB Length in TX Vector (Ivan Vecera) [1030679]
-- [ethernet] bna: Handle the TX Setup Failures (Ivan Vecera) [1030679]
-- [ethernet] bna: Add NULL Check Before Dereferencing TCB (Ivan Vecera) [1030679]
-- [ethernet] bna: CQ Read Fix (Ivan Vecera) [1030679]
-- [ethernet] bna: RX Processing and Config Changes (Ivan Vecera) [1030679]
-- [ethernet] bna: Enable Multi Buffer RX (Ivan Vecera) [1030679]
-- [ethernet] bna: RX Filter Enhancements (Ivan Vecera) [1030679]
-- [ethernet] bna: Fix Filter Add Del (Ivan Vecera) [1030679]
-- [ethernet] bna: Set Get IOC fw State (Ivan Vecera) [1030679]
-- [ethernet] bna: Add software timestamping support (Ivan Vecera) [1030679]
-- [ethernet] bna: make local variable static (Ivan Vecera) [1030679]
-- [ethernet] bna: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1030679]
-- [ethernet] bna: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1030679]
-- [ethernet] bna: Remove extern from function prototypes (Ivan Vecera) [1030679]
-- [ethernet] bna: fix 32-bit DMA mask handling (Ivan Vecera) [1030679]
-- [kernel] dma-api: provide a helper to set both DMA and coherent DMA masks (Ivan Vecera) [1030679]
-
-* Mon Jan 13 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-69.el7]
-- [firmware] efi: generalize efi_get_memory_map() (George Beshers) [973417]
-- [firmware] efi: Rename __get_map() to efi_get_memory_map() (George Beshers) [973417]
-- [x86] EFI stub support for large memory maps (George Beshers) [973417]
-- [x86] efi: Allow efi_free() to be called with size of 0 (George Beshers) [973417]
-- [x86] efi: use efi_get_memory_map() to get final map for x86 (George Beshers) [973417]
-- [x86] efi: Rename memory allocation/free functions (George Beshers) [973417]
-- [x86] efi: Add system table pointer argument to shared functions (George Beshers) [973417]
-- [x86] efi: Move common EFI stub code from x86 arch code to common location (George Beshers) [973417]
-- [x86] efi: Add proper definitions for some EFI function pointers (George Beshers) [973417]
-- [x86] efi: correct call to free_pages (George Beshers) [973417]
-- [ethernet] i40e: correctly setup ARQ descriptors (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove redundant AQ enable (Stefan Assmann) [1011561]
-- [ethernet] i40e: Enable/Disable PF switch LB on SR-IOV configure changes (Stefan Assmann) [1011561]
-- [ethernet] i40e: whitespace paren and comment tweaks (Stefan Assmann) [1011561]
-- [ethernet] i40e: rework shadow ram read functions (Stefan Assmann) [1011561]
-- [ethernet] i40e: check MAC type before any REG access (Stefan Assmann) [1011561]
-- [ethernet] i40e: move PF ID init from PF reset to SC init (Stefan Assmann) [1011561]
-- [ethernet] i40e: Reduce range of interrupt reg in reg test (Stefan Assmann) [1011561]
-- [ethernet] i40e: update firmware api to 1.1 (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add code to wait for FW to complete in reset path (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1011561]
-- [ethernet] i40e: Allow VF to set already assigned MAC address (Stefan Assmann) [1011561]
-- [ethernet] i40e: Stop accepting any VLAN tag on VLAN 0 filter set (Stefan Assmann) [1011561]
-- [ethernet] i40e: Do not enable broadcast promiscuous by default (Stefan Assmann) [1011561]
-- [ethernet] i40e: Expose AQ debugfs hooks (Stefan Assmann) [1011561]
-- [ethernet] i40e: Do not allow AQ calls from ndo-ops (Stefan Assmann) [1011561]
-- [ethernet] i40e: check asq alive before notify (Stefan Assmann) [1011561]
-- [ethernet] i40e: Admin queue shutdown fixes (Stefan Assmann) [1011561]
-- [ethernet] i40e: Hide the Port VLAN VLAN ID (Stefan Assmann) [1011561]
-- [ethernet] i40e: use correct struct for get and update vsi params (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix VF driver MAC address configuration (Stefan Assmann) [1011561]
-- [ethernet] i40e: support VFs on PFs other than 0 (Stefan Assmann) [1011561]
-- [ethernet] i40e: acknowledge VFLR when disabling SR-IOV (Stefan Assmann) [1011561]
-- [ethernet] i40e: don't allocate zero size (Stefan Assmann) [1011561]
-- [ethernet] i40e: use struct assign instead of memcpy (Stefan Assmann) [1011561]
-- [ethernet] i40e: Do not enable default port on the VEB (Stefan Assmann) [1011561]
-- [ethernet] i40e: avoid unnecessary register read (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix whitespace (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix SR-IOV VF port VLAN (Stefan Assmann) [1011561]
-- [ethernet] i40e: Record dma buffer info for dummy packets (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove un-necessary io-write (Stefan Assmann) [1011561]
-- [ethernet] i40e: Remove unnecessary prototypes (Stefan Assmann) [1011561]
-- [ethernet] i40e: I40E_FLAG_MQ_ENABLED is not used (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix ring allocation (Stefan Assmann) [1011561]
-- [ethernet] i40e: catch unset q_vector (Stefan Assmann) [1011561]
-- [ethernet] i40e: keep allocated memory in structs (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix error handling when alloc of vsi array fails (Stefan Assmann) [1011561]
-- [ethernet] i40e: reinit buffer size each time (Stefan Assmann) [1011561]
-- [ethernet] i40e: use functions to enable and disable icr 0 (Stefan Assmann) [1011561]
-- [ethernet] i40e: add header file flag _I40E_TXRX_H_ (Stefan Assmann) [1011561]
-- [ethernet] i40e: guard against vf message races (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix constant cast issues (Stefan Assmann) [1011561]
-- [ethernet] i40e: Change the ethtool NVM read method to use AQ (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix mac address checking (Stefan Assmann) [1011561]
-- [ethernet] i40e: Dump the whole NVM, not half (Stefan Assmann) [1011561]
-- [ethernet] i40e: report VF MAC addresses correctly (Stefan Assmann) [1011561]
-- [ethernet] i40e: update led set args (Stefan Assmann) [1011561]
-- [ethernet] i40e: make a define from a large constant (Stefan Assmann) [1011561]
-- [ethernet] i40e: be more informative (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix error return (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove chatty log messages (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove redundant code (Stefan Assmann) [1011561]
-- [ethernet] i40e: refactor VF reset flow (Stefan Assmann) [1011561]
-- [ethernet] i40e: move i40e_reset_vf (Stefan Assmann) [1011561]
-- [ethernet] i40e: Rx checksum offload for VXLAN (Stefan Assmann) [1011561]
-- [ethernet] i40e: Implementation of VXLAN ndo's (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix curly brace use and return type (Stefan Assmann) [1011561]
-- [ethernet] i40e: add wake-on-lan support (Stefan Assmann) [1011561]
-- [ethernet] i40e: Populate and check pci bus speed and width (Stefan Assmann) [1011561]
-- [uapi] pci_regs: Add PCI bus link speed and width defines (Stefan Assmann) [1011561]
-- [ethernet] i40e: Suppress HMC error to Interrupt message level (Stefan Assmann) [1011561]
-- [ethernet] i40e: using for_each_set_bit to simplify the code (Stefan Assmann) [1011561]
-- [ethernet] i40e: make functions static and remove dead code (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix off by one in i40e_dbg_command_write (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version number (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix wrong mask bits being used in misc interrupt (Stefan Assmann) [1011561]
-- [ethernet] i40e: more print_hex_dump use (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix up scanf decoders (Stefan Assmann) [1011561]
-- [ethernet] i40e: simplify error messages for dump descriptor (Stefan Assmann) [1011561]
-- [ethernet] i40e: prevent null pointer exception in dump descriptor (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix dump output from debugfs calls (Stefan Assmann) [1011561]
-- [ethernet] i40e: Remove FCoE in i40e_virtchnl_pf.c code (Stefan Assmann) [1011561]
-- [ethernet] i40e: support for suspend and resume (Stefan Assmann) [1011561]
-- [ethernet] i40e: rtnl_lock in reset path fixes (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add basic support for get/set channels for RSS (Stefan Assmann) [1011561]
-- [ethernet] i40e: function to reconfigure RSS queues and rebuild (Stefan Assmann) [1011561]
-- [ethernet] i40e: reinit flow for the main VSI (Stefan Assmann) [1011561]
-- [ethernet] i40e: use same number of queues as CPUs (Stefan Assmann) [1011561]
-- [ethernet] i40e: trivial fixes (Stefan Assmann) [1011561]
-- [ethernet] i40e: init flow control settings to disabled (Stefan Assmann) [1011561]
-- [ethernet] i40e: Tell the stack about our actual number of queues (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix pf reset after offline test (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix up some of the ethtool connection reporting (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix null dereference (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version number (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove and fix confusing define name (Stefan Assmann) [1011561]
-- [ethernet] i40e: complain about out-of-range descriptor request (Stefan Assmann) [1011561]
-- [ethernet] i40e: loopback info and set loopback fix (Stefan Assmann) [1011561]
-- [ethernet] i40e: restrict diag test messages (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add a new variable to track number of pf instances (Stefan Assmann) [1011561]
-- [ethernet] i40e: add num_VFs message (Stefan Assmann) [1011561]
-- [ethernet] i40e: refactor ethtool tests (Stefan Assmann) [1011561]
-- [ethernet] i40e: clear test state bit after all ethtool tests (Stefan Assmann) [1011561]
-- [ethernet] i40e: only set up the rings to be used (Stefan Assmann) [1011561]
-- [ethernet] i40e: Enable all PCTYPEs except FCOE for RSS (Stefan Assmann) [1011561]
-- [ethernet] i40e: refactor reset code (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1011561]
-- [ethernet] i40e: whitespace (Stefan Assmann) [1011561]
-- [ethernet] i40e: enable early hardware support (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add flag for L2 VEB filtering (Stefan Assmann) [1011561]
-- [ethernet] i40e: get media type during link info (Stefan Assmann) [1011561]
-- [ethernet] i40e: check multi-bit state correctly (Stefan Assmann) [1011561]
-- [ethernet] i40e: separate TSYNVALID and TSYNINDX fields in Rx descriptor (Stefan Assmann) [1011561]
-- [ethernet] i40e: sync header files with hardware (Stefan Assmann) [1011561]
-- [ethernet] i40e: restrict diag test length (Stefan Assmann) [1011561]
-- [ethernet] i40e: add support for triggering EMPR (Stefan Assmann) [1011561]
-- [ethernet] i40e: add interrupt test (Stefan Assmann) [1011561]
-- [ethernet] i40e: default debug mask setting (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix debugging messages (Stefan Assmann) [1011561]
-- [ethernet] i40e: properly add VF MAC addresses (Stefan Assmann) [1011561]
-- [ethernet] i40e: retry call on timeout (Stefan Assmann) [1011561]
-- [ethernet] i40e: select reset counters correctly (Stefan Assmann) [1011561]
-- [ethernet] i40e: allow one more vector for VFs (Stefan Assmann) [1011561]
-- [ethernet] i40e: firmware version fields offsets update (Stefan Assmann) [1011561]
-- [ethernet] i40e: simplify aq head-tail-len setups (Stefan Assmann) [1011561]
-- [ethernet] i40e: clear AQ head and tail registers (Stefan Assmann) [1011561]
-- [ethernet] i40e: register file updates (Stefan Assmann) [1011561]
-- [ethernet] i40e: set pf_id based on device and function numbers (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix error return code in i40e_probe() (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove unused including <linux/version.h> (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1011561]
-- [ethernet] i40e: use pf_id for pf function id in qtx_ctl (Stefan Assmann) [1011561]
-- [ethernet] i40e: check vsi ptrs before dumping them (Stefan Assmann) [1011561]
-- [ethernet] i40e: reorder block declarations in debugfs (Stefan Assmann) [1011561]
-- [ethernet] i40e: tweaking icr0 handling for legacy irq (Stefan Assmann) [1011561]
-- [ethernet] i40e: refactor fdir setup function (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix sign extension issue (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix use of untrusted scalar value warning (Stefan Assmann) [1011561]
-- [ethernet] i40e: clamp debugfs nvm read command (Stefan Assmann) [1011561]
-- [ethernet] i40e: debugfs fixups (Stefan Assmann) [1011561]
-- [ethernet] i40e: fixup legacy interrupt handling (Stefan Assmann) [1011561]
-- [ethernet] i40e: assign correct vector to VF (Stefan Assmann) [1011561]
-- [ethernet] i40e: don't free nonexistent rings (Stefan Assmann) [1011561]
-- [ethernet] i40e: do not flush after re-enabling interrupts (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add support for 64 bit netstats (Stefan Assmann) [1011561]
-- [ethernet] i40e: Move rings from pointer to array to array of pointers (Stefan Assmann) [1011561]
-- [ethernet] i40e: Replace ring container array with linked list (Stefan Assmann) [1011561]
-- [ethernet] i40e: Move q_vectors from pointer to array to array of pointers (Stefan Assmann) [1011561]
-- [ethernet] i40e: Split bytes and packets from Rx/Tx stats (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add support for Tx byte queue limits (Stefan Assmann) [1011561]
-- [ethernet] i40e: Drop dead code and flags from Tx hotpath (Stefan Assmann) [1011561]
-- [ethernet] i40e: clean up Tx fast path (Stefan Assmann) [1011561]
-- [ethernet] i40e: Do not directly increment Tx next_to_use (Stefan Assmann) [1011561]
-- [ethernet] i40e: Cleanup Tx buffer info layout (Stefan Assmann) [1011561]
-- [ethernet] i40e: Drop unused completed stat (Stefan Assmann) [1011561]
-- [ethernet] i40e: Link code updates (Stefan Assmann) [1011561]
-- [ethernet] i40e: clean up coccicheck reported errors (Stefan Assmann) [1011561]
-- [ethernet] i40e: better return values (Stefan Assmann) [1011561]
-- [ethernet] i40e: convert ret to aq_ret (Stefan Assmann) [1011561]
-- [ethernet] i40e: small clean ups from review (Stefan Assmann) [1011561]
-- [ethernet] i40e: use common failure flow (Stefan Assmann) [1011561]
-- [net] sunrpc/rpc_pipe: fix cleanup of dummy gssd directory when notification fails (Jeff Layton) [1048105]
-- [net] sunrpc: add an "info" file for the dummy gssd pipe (Jeff Layton) [1048105]
-- [net] sunrpc/rpc_pipe: remove the clntXX dir if creating the pipe fails (Jeff Layton) [1048105]
-- [fs] nfs: fix do_div() warning by instead using sector_div() (Steve Dickson) [769365]
-- [misc] MAINTAINERS: Update contact information for Trond Myklebust (Steve Dickson) [769365]
-- [fs] nfs: Prevent a 3-way deadlock between layoutreturn, open and state recovery (Steve Dickson) [769365]
-- [net] sunrpc: do not fail gss proc NULL calls with EACCES (Steve Dickson) [769365]
-- [fs] nfs: close needs to handle NFS4ERR_ADMIN_REVOKED (Steve Dickson) [769365]
-- [fs] nfs: Update list of irrecoverable errors on DELEGRETURN (Steve Dickson) [769365]
-- [fs] nfs: wait on recovery for async session errors (Steve Dickson) [769365]
-- [fs] nfs: Fix a warning in nfs_setsecurity (Steve Dickson) [769365]
-- [fs] nfs: Enabling v4.2 should not recompile nfsd and lockd (Steve Dickson) [769365]
-- [fs] nfs: fix pnfs Kconfig defaults (Steve Dickson) [769365]
-- [fs] nfs: correctly report misuse of "migration" mount option (Steve Dickson) [769365]
-- [ethernet] igb: fix driver reload with VF assigned to guest (Stefan Assmann) [986817]
-- [net] sunrpc: Cleanup xs_destroy() (Steve Dickson) [769365]
-- [net] sunrpc: close a rare race in xs_tcp_setup_socket (Steve Dickson) [769365]
-- [net] sunrpc: remove duplicated include from clnt.c (Steve Dickson) [769365]
-- [fs] nfs: use IS_ROOT not DCACHE_DISCONNECTED (Steve Dickson) [769365]
-- [net] sunrpc: Fix buffer overflow checking in gss_encode_v0_msg/gss_encode_v1_msg (Steve Dickson) [769365]
-- [net] sunrpc: gss_alloc_msg - choose _either_ a v0 message or a v1 message (Steve Dickson) [769365]
-- [net] sunrpc: remove an unnecessary if statement (Steve Dickson) [769365]
-- [fs] nfs: Remove useless 'error' assignment (Steve Dickson) [769365]
-- [net] sunrpc: comment typo fix (Steve Dickson) [769365]
-- [net] sunrpc: Add correct rcu_dereference annotation in rpc_clnt_set_transport (Steve Dickson) [769365]
-- [fs] nfs: add support for multiple sec= mount options (Steve Dickson) [769365]
-- [fs] nfs: stop using NFS_MOUNT_SECFLAVOUR server flag (Steve Dickson) [769365]
-- [fs] nfs: cache parsed auth_info in nfs_server (Steve Dickson) [769365]
-- [fs] nfs: separate passed security flavs from selected (Steve Dickson) [769365]
-- [fs] nfs: make nfs_find_best_sec static (Steve Dickson) [769365]
-- [fs] nfs: Fix possible endless state recovery wait (Steve Dickson) [769365]
-- [fs] nfs: Set EXCHGID4_FLAG_SUPP_MOVED_MIGR (Steve Dickson) [769365]
-- [fs] nfs: Handle SEQ4_STATUS_LEASE_MOVED (Steve Dickson) [769365]
-- [fs] nfs: Handle NFS4ERR_LEASE_MOVED during async RENEW (Steve Dickson) [769365]
-- [fs] nfs: Migration support for RELEASE_LOCKOWNER (Steve Dickson) [769365]
-- [fs] nfs: Implement support for NFS4ERR_LEASE_MOVED (Steve Dickson) [769365]
-- [fs] nfs: Support NFS4ERR_LEASE_MOVED recovery in state manager (Steve Dickson) [769365]
-- [fs] nfs: Add method to detect whether an FSID is still on the server (Steve Dickson) [769365]
-- [fs] nfs: Handle NFS4ERR_MOVED during delegation recall (Steve Dickson) [769365]
-- [fs] nfs: Add migration recovery callouts in nfs4proc.c (Steve Dickson) [769365]
-- [fs] nfs: Rename "stateid_invalid" label (Steve Dickson) [769365]
-- [fs] nfs: Re-use exit code in nfs4_async_handle_error() (Steve Dickson) [769365]
-- [fs] nfs: Add basic migration support to state manager thread (Steve Dickson) [769365]
-- [fs] nfs: Add a super_block backpointer to the nfs_server struct (Steve Dickson) [769365]
-- [fs] nfs: Add method to retrieve fs_locations during migration recovery (Steve Dickson) [769365]
-- [fs] nfs: Export _nfs_display_fhandle() (Steve Dickson) [769365]
-- [fs] nfs: Introduce a vector of migration recovery ops (Steve Dickson) [769365]
-- [fs] nfs: Add functions to swap transports during migration recovery (Steve Dickson) [769365]
-- [fs] nfs: Add nfs4_update_server (Steve Dickson) [769365]
-- [net] sunrpc: Add a helper to switch the transport of an rpc_clnt (Steve Dickson) [769365]
-- [net] sunrpc: Modify synopsis of rpc_client_register() (Steve Dickson) [769365]
-- [fs] nfs: don't reprocess cached open CLAIM_PREVIOUS (Steve Dickson) [769365]
-- [fs] nfs: Fix state reference counting in _nfs4_opendata_reclaim_to_nfs4_state (Steve Dickson) [769365]
-- [fs] nfs: don't fail on missing fattr in open recover (Steve Dickson) [769365]
-- [fs] nfs: fix NULL dereference in open recover (Steve Dickson) [769365]
-- [fs] nfs: Don't change the security label as part of open reclaim (Steve Dickson) [769365]
-- [fs] nfs: Remove zeroing state kern warnings (Steve Dickson) [769365]
-- [net] sunrpc: call_connect_status should recheck bind and connect status on error (Steve Dickson) [769365]
-- [net] sunrpc: Remove redundant initialisations of request rq_bytes_sent (Steve Dickson) [769365]
-- [net] sunrpc: Fix RPC call retransmission statistics (Steve Dickson) [769365]
-- [fs] nfs: Ensure that we disable the resend timeout for NFSv4 (Steve Dickson) [769365]
-- [net] sunrpc: Add RPC task and client level options to disable the resend timeout (Steve Dickson) [769365]
-- [net] sunrpc: Clean up - convert xprt_prepare_transmit to return a bool (Steve Dickson) [769365]
-- [net] sunrpc: Clear the request rq_bytes_sent field in xprt_release_write (Steve Dickson) [769365]
-- [net] sunrpc: Don't set the request connect_cookie until a successful transmit (Steve Dickson) [769365]
-- [net] sunrpc: Only update the TCP connect cookie on a successful connect (Steve Dickson) [769365]
-- [net] sunrpc: Enable the keepalive option for TCP sockets (Steve Dickson) [769365]
-- [fs] nfs: Fix a use-after-free situation in _nfs4_proc_getlk() (Steve Dickson) [769365]
-- [wireless] iwlwifi: enable shadow registers for 7000 (Stanislaw Gruszka) [1016320]
-- [wireless] iwlwifi: support BSS only (Stanislaw Gruszka) [1016320]
-- [fs] gfs2: Increase i_writecount during gfs2_setattr_chown (Robert S Peterson) [1049045]
-- [mm] thp: give transparent hugepage code a separate copy_page (Rik van Riel) [1044367]
-- [kernel] time: menu governor broken when nohz=off (George Beshers) [1043652]
-- [s390] perf: fix compile error (undefined reference sie_exit) (Hendrik Brueckner) [1035261]
-- [s390] mm: page_table_realloc returns failure (Hendrik Brueckner) [1035261]
-- [virt] virtio-net: Set RXCSUM feature if GUEST_CSUM is available (Hendrik Brueckner) [1035261]
-- [s390] kvm: Add helper function for setting condition code (Hendrik Brueckner) [1035261]
-- [s390] kvm: Make KVM_HVA_ERR_BAD usable on s390 (Hendrik Brueckner) [1035261]
-- [s390] kvm: use cookies for ioeventfd (Hendrik Brueckner) [1035261]
-- [s390] kvm/kvm-io: support cookies (Hendrik Brueckner) [1035261]
-- [s390] kvm: fix pfmf non-quiescing control handling (Hendrik Brueckner) [1035261]
-- [s390] kvm: Fix sparse warnings in priv.c (Hendrik Brueckner) [1035261]
-- [s390] kvm: declare virtual HW facilities (Hendrik Brueckner) [1035261]
-- [s390] kvm: fix task size check (Hendrik Brueckner) [1035261]
-- [s390] kvm: allow sie enablement for multi-threaded programs (Hendrik Brueckner) [1035261]
-- [s390] qeth: Increase default MTU for OSA devices (Hendrik Brueckner) [1035261]
-- [s390] kvm: Fixed priority of execution in STSI (Hendrik Brueckner) [1035261]
-- [s390] kvm: Reworked LCTL and LCTLG instructions (Hendrik Brueckner) [1035261]
-- [s390] kvm: Check for access exceptions during TPI (Hendrik Brueckner) [1035261]
-- [s390] kvm: Check for PSTATE when handling DIAGNOSE (Hendrik Brueckner) [1035261]
-- [s390] kvm: Privileged operation checks moved to instruction handlers (Hendrik Brueckner) [1035261]
-- [s390] kvm: Privileged operation check for TPROT (Hendrik Brueckner) [1035261]
-- [s390] kvm: Renamed PGM_PRIVILEGED_OPERATION (Hendrik Brueckner) [1035261]
-- [s390] kvm: Fix epsw instruction decoding (Hendrik Brueckner) [1035261]
-- [s390] kvm: Use common waitqueue (Hendrik Brueckner) [1035261]
-- [s390] kvm: code cleanup to use common vcpu slab cache (Hendrik Brueckner) [1035261]
-- [s390] kvm: Detect if perf samples belong to KVM host or guest (Hendrik Brueckner) [1035261]
-- [s390] kvm: guest large pages (Hendrik Brueckner) [1035261]
-- [s390] kvm: avoid automatic sie reentry (Hendrik Brueckner) [1035261]
-- [s390] kvm: Kick guests out of sie if prefix page host pte is touched (Hendrik Brueckner) [1035261]
-- [s390] kvm: Provide a way to prevent reentering SIE (Hendrik Brueckner) [1035261]
-- [s390] kvm: Mark if a cpu is in SIE (Hendrik Brueckner) [1035261]
-- [s390] kvm: rename RCP_xxx defines to PGSTE_xxx (Hendrik Brueckner) [1035261]
-- [s390] kvm: fix psw rewinding in handle_skey (Hendrik Brueckner) [1035261]
-- [s390] kvm: Provide function for setting the guest storage key (Hendrik Brueckner) [1035261]
-- [s390] facility: decompose test_facility() (Hendrik Brueckner) [1035261]
-
-* Mon Jan 13 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-68.el7]
-- [kernel] perf: Account freq events globally (Jeremy Eder) [1025775]
-- [kernel] perf: Roll back callchain buffer refcount under the callchain mutex (Jeremy Eder) [1025775]
-- [kernel] watchdog: Make it work under full dynticks (Jeremy Eder) [1025775]
-- [kernel] watchdog: Boot-disable by default on full dynticks (Jeremy Eder) [1025775]
-- [kernel] watchdog: Rename confusing state variable (Jeremy Eder) [1025775]
-- [kernel] watchdog: Register / unregister watchdog kthreads on sysctl control (Jeremy Eder) [1025775]
-- [kernel] perf: Implement finer grained full dynticks kick (Jeremy Eder) [1025775]
-- [kernel] perf: Account freq events per cpu (Jeremy Eder) [1025775]
-- [kernel] perf: Migrate per cpu event accounting (Jeremy Eder) [1025775]
-- [kernel] perf: Split the per-cpu accounting part of the event accounting code (Jeremy Eder) [1025775]
-- [kernel] perf: Factor out event accounting code to account_event()/__free_event() (Jeremy Eder) [1025775]
-- [kernel] perf: Sanitize get_callchain_buffer() (Jeremy Eder) [1025775]
-- [kernel] perf: Fix branch stack refcount leak on callchain init failure (Jeremy Eder) [1025775]
-- [tools] perf/test: Update command line callchain attribute tests (Jiri Olsa) [1036665]
-- [tools] perf: Fixup mmap event consumption (Jiri Olsa) [1036665]
-- [tools] perf/top: Split -G and --call-graph (Jiri Olsa) [1036665]
-- [tools] perf/record: Split -g and --call-graph (Jiri Olsa) [1036665]
-- [tools] perf/hists: Add color overhead for stdio output buffer (Jiri Olsa) [1036665]
-- [tools] perf: Fix up /proc/PID/maps parsing (Jiri Olsa) [1036665]
-- [tools] perf/script: Fix mem leak due to missing Py_DECREFs on dict entries (Jiri Olsa) [1036665]
-- [tools] perf: Disable PERF_RECORD_MMAP2 support (Jiri Olsa) [1036665]
-- [tools] perf/scripting/perl: Fix build error on Fedora 12 (Jiri Olsa) [1036665]
-- [tools] perf/probe: Fix to initialize fname always before use it (Jiri Olsa) [1036665]
-- [tools] perf/session: Fix infinite loop on invalid perf.data file (Jiri Olsa) [1036665]
-- [tools] perf: Fix installation of libexec components (Jiri Olsa) [1036665]
-- [tools] perf/probe: Fix to find line information for probe list (Jiri Olsa) [1036665]
-- [tools] perf: Fix libaudit test (Jiri Olsa) [1036665]
-- [tools] perf/stat: Set child_pid after perf_evlist__prepare_workload() (Jiri Olsa) [1036665]
-- [tools] perf: Add default handler for mmap2 events (Jiri Olsa) [1036665]
-- [tools] perf/symbols: Demangle cloned functions (Jiri Olsa) [1036665]
-- [tools] perf/machine: Fix path unpopulated in machine__create_modules() (Jiri Olsa) [1036665]
-- [tools] perf: Explicitly add libdl dependency (Jiri Olsa) [1036665]
-- [tools] perf/probe: Fix probing symbols with optimization suffix (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add mmap2 handler (Jiri Olsa) [1036665]
-- [tools] perf/kmem: Make it work again on non NUMA machines (Jiri Olsa) [1036665]
-- [tools] perf: Fix capabilities bitfield compatibility in 'struct perf_event_mmap_page' (Jiri Olsa) [1036665]
-- [tools] perf: Fix old GCC build error in trace-event-parse.c:parse_proc_kallsyms() (Jiri Olsa) [1036665]
-- [tools] perf/probe: Fix finder to find lines of given function (Jiri Olsa) [1036665]
-- [tools] perf/session: Check for SIGINT in more loops (Jiri Olsa) [1036665]
-- [tools] perf: Fix compile with libelf without get_phdrnum (Jiri Olsa) [1036665]
-- [tools] perf: Fix buildid cache handling of kallsyms with kcore (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Fix objdump line parsing offset validation (Jiri Olsa) [1036665]
-- [tools] perf: Fill in new definitions for madvise()/mmap() flags (Jiri Olsa) [1036665]
-- [tools] perf: Sharpen the libaudit dependencies test (Jiri Olsa) [1036665]
-- [tools] perf: Add attr->mmap2 support (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Fix sample_type manipulation (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Fix id pos in perf_evlist__open() (Jiri Olsa) [1036665]
-- [tools] perf/trace: Handle perf.data files with no tracepoints (Jiri Olsa) [1036665]
-- [tools] perf/session: Separate progress bar update when processing events (Jiri Olsa) [1036665]
-- [tools] perf/trace: Check if MAP_32BIT is defined (Jiri Olsa) [1036665]
-- [tools] perf/hists: Fix formatting of long symbol names (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Fix parsing with no sample_id_all bit set (Jiri Olsa) [1036665]
-- [tools] perf: Add test for parsing with no sample_id_all bit (Jiri Olsa) [1036665]
-- [tools] perf/trace: Check control+C more often (Jiri Olsa) [1036665]
-- [tools] perf/trace: Tell arg formatters the arg index (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for open's flags arg (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for lseek's whence arg (Jiri Olsa) [1036665]
-- [tools] perf: Fix symbol offset computation for some dsos (Jiri Olsa) [1036665]
-- [tools] perf/list: Skip unsupported events (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add 'keep tracking' test (Jiri Olsa) [1036665]
-- [tools] perf: Add support for PERF_COUNT_SW_DUMMY (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for futex 'operation' parm (Jiri Olsa) [1036665]
-- [tools] perf/trace: Allow syscall arg formatters to mask args (Jiri Olsa) [1036665]
-- [tools] perf/trace: Handle missing HUGEPAGE defines (Jiri Olsa) [1036665]
-- [tools] perf/trace: Honor target pid / tid options when analyzing a file (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add option to analyze events in a file versus live (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Add tracepoint lookup by name (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add a sample parsing test (Jiri Olsa) [1036665]
-- [tools] perf: Add a function to calculate sample event size (Jiri Olsa) [1036665]
-- [tools] perf: Expand perf_event__synthesize_sample() (Jiri Olsa) [1036665]
-- [tools] perf: Add missing 'abi' member to 'struct regs_dump' (Jiri Olsa) [1036665]
-- [tools] perf: Add support for PERF_SAMPLE_IDENTIFIER (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Move perf_evlist__config() to a new source file (Jiri Olsa) [1036665]
-- [tools] perf: Remove references to struct ip_event (Jiri Olsa) [1036665]
-- [tools] perf/callchain: Remove unnecessary validation (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Tidy up sample parsing overflow checking (Jiri Olsa) [1036665]
-- [tools] perf: change machine__findnew_thread() to set thread pid (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Fixup jobserver setup (Jiri Olsa) [1036665]
-- [tools] perf: Add pid to struct thread (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for madvise behaviour/advice parm (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for mmap flags parm (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for mmap prot parm (Jiri Olsa) [1036665]
-- [tools] perf/trace: Allow overiding the formatting of syscall fields (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add aliases to remaining syscalls of the sys_enter_newfoo (Jiri Olsa) [1036665]
-- [tools] perf/trace: Allow printing syscall return values in hex (Jiri Olsa) [1036665]
-- [tools] perf/trace: Simplify sys_exit return printing (Jiri Olsa) [1036665]
-- [tools] perf/trace: Introduce syscall arg formatters (Jiri Olsa) [1036665]
-- [tools] perf/trace: Hide sys_exit messages about syscall id = -1 (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add --verbose option (Jiri Olsa) [1036665]
-- [tools] perf/trace: Support ! in -e expressions (Jiri Olsa) [1036665]
-- [tools] perf: Don't install scripting files files when disabled (Jiri Olsa) [1036665]
-- [tools] perf: Sample after exit loses thread correlation (Jiri Olsa) [1036665]
-- [tools] perf/trace: Make command line arguments consistent with perf-record (Jiri Olsa) [1036665]
-- [tools] perf/trace: Implement -o/--output filename (Jiri Olsa) [1036665]
-- [tools] perf: Add debug prints (Jiri Olsa) [1036665]
-- [tools] perf: Re-implement debug print function for linking python/perf.so (Jiri Olsa) [1036665]
-- [tools] perf: Try to increase the file descriptor limits on EMFILE (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Remove force option to cmd_record (Jiri Olsa) [1036665]
-- [tools] perf/trace: Allow specifying which syscalls to trace (Jiri Olsa) [1036665]
-- [tools] perf: Improve robustness of topology parsing code (Jiri Olsa) [1036665]
-- [tools] perf/tests: Fix compile failure on do_sort_something (Jiri Olsa) [1036665]
-- [tools] perf: Remove filter parameter of thread__find_addr_map() (Jiri Olsa) [1036665]
-- [tools] perf: Remove filter parameter of thread__find_addr_location() (Jiri Olsa) [1036665]
-- [tools] perf: Remove filter parameter of perf_event__preprocess_sample() (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Set the machines symbol filter (Jiri Olsa) [1036665]
-- [tools] perf/mem: Remove unused symbol filter member (Jiri Olsa) [1036665]
-- [tools] perf/report: Set the machines symbol filter (Jiri Olsa) [1036665]
-- [tools] perf/top: Set the machines symbol filter (Jiri Olsa) [1036665]
-- [tools] perf/machine: Add symbol filter to struct machine (Jiri Olsa) [1036665]
-- [tools] perf/session: Change perf_session__has_traces to actually check for tracepoints (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Add option to limit stack depth in callchain dumps (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Add option to print stack trace on single line (Jiri Olsa) [1036665]
-- [tools] perf/tool: Simplify options to perf_evsel__print_ip (Jiri Olsa) [1036665]
-- [tools] perf/sched: Remove sched_process_fork tracepoint (Jiri Olsa) [1036665]
-- [tools] perf/sched: Remove sched_process_exit tracepoint (Jiri Olsa) [1036665]
-- [tools] perf/sched: Remove thread lookup in sample handler (Jiri Olsa) [1036665]
-- [tools] perf/sched: Simplify arguments to read_events (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Update documentation with live command (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Option to print events that exceed a duration (Jiri Olsa) [1036665]
-- [tools] perf/machine: Do not require /lib/modules/* on a guest (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add tests of new pinned modifier (Jiri Olsa) [1036665]
-- [tools] perf: Add support for pinned modifier (Jiri Olsa) [1036665]
-- [tools] perf/ui/gtk: Fix segmentation fault on perf_hpp__for_each_format loop (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Add option to analyze specific VM (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Add min and max stats to display (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Add live mode (Jiri Olsa) [1036665]
-- [tools] perf/session: Export queue_event function (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Fix typo (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Improve description of '?' hotkey (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Add call target name if it is missing (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Remove nop at end of annotation (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Put dso name in symbol annotation title (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Allow disassembly using /proc/kcore (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add kcore to the object code reading test (Jiri Olsa) [1036665]
-- [tools] perf/tests: Adjust the vmlinux symtab matches kallsyms test again (Jiri Olsa) [1036665]
-- [tools] perf/symbols: Add support for reading from /proc/kcore (Jiri Olsa) [1036665]
-- [tools] perf: Make it possible to read object code from kernel modules (Jiri Olsa) [1036665]
-- [tools] perf/tests: Adjust the vmlinux symtab matches kallsyms test (Jiri Olsa) [1036665]
-- [tools] perf: Make it possible to read object code from vmlinux (Jiri Olsa) [1036665]
-- [tools] perf/symbols: Load kernel maps before using (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add test for reading object code (Jiri Olsa) [1036665]
-- [tools] perf/symbols: avoid SyS kernel syscall aliases (Jiri Olsa) [1036665]
-- [tools] perf/stat: Flush output after each line in interval mode (Jiri Olsa) [1036665]
-- [tools] perf/stat: Add support for --initial-delay option (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Add support for enabling counters (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Remove obsolete dummy execve (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Split out tracepoints from record args (Jiri Olsa) [1036665]
-- [tools] perf/session: Export a few functions for event processing (Jiri Olsa) [1036665]
-- [tools] perf/stats: Add max and min stats (Jiri Olsa) [1036665]
-- [tools] perf/top: move CONSOLE_CLEAR to header file (Jiri Olsa) [1036665]
-- [tools] perf/util: Add parse_nsec_time() function (Jiri Olsa) [1036665]
-- [tools] perf/python: Remove duplicate TID bit from mask (Jiri Olsa) [1036665]
-- [tools] perf/trace: Beautify 'connect' result (Jiri Olsa) [1036665]
-- [tools] perf: Fix compile of util/tsc.c (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Actually show symbol offset in stack trace when requested (Jiri Olsa) [1036665]
-- [tools] perf: Add test for converting perf time to/from TSC (Jiri Olsa) [1036665]
-- [tools] perf: Move weight back to common sort keys (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add broken install-* tests into tests/make (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add 'make install/install-bin' tests into tests/make (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add DESTDIR=TMP_DEST tests/make variable (Jiri Olsa) [1036665]
-- [tools] perf/tests: Rename TMP to TMP_O tests/make variable (Jiri Olsa) [1036665]
-- [tools] perf/tests: Run ctags/cscope make tests only with needed binaries (Jiri Olsa) [1036665]
-- [tools] perf: Fix build with perl 5.18 (Jiri Olsa) [1036665]
-- [tools] perf: Support callchain sorting based on addresses (Jiri Olsa) [1036665]
-- [tools] perf/bench: Fix memcpy benchmark for large sizes (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Handle ENODEV on default cycles event (Jiri Olsa) [1036665]
-- [tools] perf/script: Fix named threads support (Jiri Olsa) [1036665]
-- [tools] perf/header: Recognize version number for perf data file (Jiri Olsa) [1036665]
-- [tools] perf/header: Introduce feat_offset into perf_header (Jiri Olsa) [1036665]
-- [tools] perf/header: Remove attr_offset from perf_header (Jiri Olsa) [1036665]
-- [tools] perf/header: Remove data_offset seek as it's not needed (Jiri Olsa) [1036665]
-- [tools] perf/session: Use session->fd instead of passing fd as argument (Jiri Olsa) [1036665]
-- [tools] perf/symbols: Do not apply symfs for an absolute vmlinux path (Jiri Olsa) [1036665]
-- [tools] perf: Fix 'make tools/perf' (Jiri Olsa) [1036665]
-- [tools] perf: Remove event types framework completely (Jiri Olsa) [1036665]
-- [tools] perf/record: Remove event types pushing (Jiri Olsa) [1036665]
-- [tools] perf: Remove event types from perf data file (Jiri Olsa) [1036665]
-- [tools] perf/timechart: Remove event types framework only user (Jiri Olsa) [1036665]
-- [tools] perf/timechart: Use traceevent lib event-parse.h include (Jiri Olsa) [1036665]
-- [tools] perf: Move hist_entry__period_snprintf into stdio code (Jiri Olsa) [1036665]
-- [tools] perf/report/top: Add option to collapse undesired parts of call graph (Jiri Olsa) [1036665]
-- [tools] perf/list: List kernel supplied event aliases (Jiri Olsa) [1036665]
-- [tools] perf: Default to cpu// for events v5 (Jiri Olsa) [1036665]
-- [tools] perf: struct thread has a tid not a pid (Jiri Olsa) [1036665]
-- [tools] perf: Validate perf event header size (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Tidy duplicated munmap code (Jiri Olsa) [1036665]
-- [tools] perf: Add const specifier to perf_pmu__find name parameter (Jiri Olsa) [1036665]
-- [tools] perf/inject: Add missing 'finished_round' (Jiri Olsa) [1036665]
-- [tools] perf: Fix missing tool parameter (Jiri Olsa) [1036665]
-- [tools] perf/inject: Remove unused parameter (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Set rules hint for the hist browser (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Add a double-click handler for callchains (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Make column headers resizable (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Display callchain overhead also (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Add support for callchains (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Use GtkTreeStore instead of GtkListStore (Jiri Olsa) [1036665]
-- [tools] perf/sched: Move struct perf_sched definition out of cmd_sched() (Jiri Olsa) [1036665]
-- [tools] perf/util: Remove unused enum and macro in trace-event.h (Jiri Olsa) [1036665]
-- [tools] perf/util: No need to call read_trace_init() in tracing_data_header() (Jiri Olsa) [1036665]
-- [tools] perf/util: Rename read_*() functions in trace-event-info.c (Jiri Olsa) [1036665]
-- [tools] perf/script: Adopt latency_format variable (Jiri Olsa) [1036665]
-- [tools] perf/util: Get rid of unused header_page_* variables (Jiri Olsa) [1036665]
-- [tools] perf/util: Parse header_page to get proper long size (Jiri Olsa) [1036665]
-- [tools] perf/util: Skip reading header_event file (Jiri Olsa) [1036665]
-- [tools] perf/util: Make file/host_bigendian variable local (Jiri Olsa) [1036665]
-- [tools] perf/util: Save long size of traced system (Jiri Olsa) [1036665]
-- [tools] perf/util: Save page size in a trace file to pevent (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Port kbuffer parser routines (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Add page_size field to pevent (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Add trace_seq_reset() (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Add const qualifier to string arguments (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Get rid of unused gui target (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Remove unused install targets (Jiri Olsa) [1036665]
-- [tools] perf/parse events: Demystify memory allocations (Jiri Olsa) [1036665]
-- [tools] perf/tests: Make terms a stack variable in test_term (Jiri Olsa) [1036665]
-- [tools] perf: Don't free list head in parse_events__free_terms (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Fix use of uninitialized variable (Jiri Olsa) [1036665]
-- [tools] perf/report: Fix perf_session__delete removal (Jiri Olsa) [1036665]
-- [tools] perf: Do not elide parent symbol column (Jiri Olsa) [1036665]
-- [tools] perf/util: Use evsel->name to get tracepoint_paths (Jiri Olsa) [1036665]
-- [tools] perf/util: Move debugfs/tracing helper functions to util.c (Jiri Olsa) [1036665]
-- [tools] perf: Remove callchain_cursor_reset call (Jiri Olsa) [1036665]
-- [tools] perf: Add methods for setting/retrieving priv element of thread struct (Jiri Olsa) [1036665]
-- [tools] perf: Use default include path notation for libtraceevent headers (Jiri Olsa) [1036665]
-- [tools] perf/tests: Make TEST_ASSERT_VAL global (Jiri Olsa) [1036665]
-- [tools] perf: Remove cwd from perf_session struct (Jiri Olsa) [1036665]
-- [tools] perf/top: Add --objdump option (Jiri Olsa) [1036665]
-- [tools] perf: Rename cpu_map__all() to cpu_map__empty() (Jiri Olsa) [1036665]
-- [tools] perf: Update ABI comment (Jiri Olsa) [1036665]
-- [tools] perf: Fix UAPI export of PERF_EVENT_IOC_ID (Jiri Olsa) [1036665]
-- [tools] perf: Add a dummy software event to keep tracking (Jiri Olsa) [1036665]
-- [tools] perf: Fix up MMAP2 buffer space reservation (Jiri Olsa) [1036665]
-- [tools] perf: Add attr->mmap2 attribute to an event (Jiri Olsa) [1036665]
-- [tools] perf: make events stream always parsable (Jiri Olsa) [1036665]
-- [tools] perf/x86: Add ability to calculate TSC from perf sample timestamps (Jiri Olsa) [1036665]
-- [tools] perf: Fix broken union in 'struct perf_event_mmap_page' (Jiri Olsa) [1036665]
-- [tools] perf: Update perf_event_type documentation (Jiri Olsa) [1036665]
-- [tools] perf: Remove the 'match' callback for auxiliary events processing (Jiri Olsa) [1036665]
-- [edac] amd64_edac: Correct erratum 505 range (Kim Naru) [1013820]
-- [edac] mce_amd: Add an MCE signature for new Fam15h models (Kim Naru) [1013820]
-- [edac] amd64_edac: Fix incorrect wraparounds (Kim Naru) [1013820]
-- [edac] amd64_edac: Get rid of boot_cpu_data accesses (Kim Naru) [1013820]
-- [edac] amd64_edac: Add ECC decoding support for newer F15h model (Kim Naru) [1013820]
-- [block] blk-mq: Don't reserve a tag for flush request (Mike Snitzer) [1048301]
-- [lib] percpu_ida: fix a live lock (Mike Snitzer) [1048301]
-- [net] ipv4: loopback device: ignore value changes after device is upped (Jiri Pirko) [1040347]
-- [net] netfilter: only warn once on wrong seqadj usage (Jesper Brouer) [1031968]
-- [net] ipvs: correct usage/allocation of seqadj ext in ipvs (Jesper Brouer) [1031968]
-- [net] netfilter: WARN about wrong usage of sequence number adjustments (Jesper Brouer) [1031968]
-- [net] vxlan: use custom ndo_change_mtu handler (Daniel Borkmann) [1039848]
-- [net] Loosen constraints for recalculating checksum in skb_segment() (Vlad Yasevich) [1042762]
-- [net] core: convert class code to use dev_groups (Jiri Benc) [1037452]
-- [net] ptp: convert class code to use dev_groups (Jiri Benc) [1037452]
-
-* Tue Jan 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-67.el7]
-- [s390] time, vdso: fix clock_gettime for CLOCK_MONOTONIC (Hendrik Brueckner) [1036677]
-- [s390] vdso: ectg gettime support for CLOCK_THREAD_CPUTIME_ID (Hendrik Brueckner) [1036677]
-- [s390] vdso: fix access-list entry initialization (Hendrik Brueckner) [1036677]
-- [s390] time, vdso: convert to the new update_vsyscall interface (Hendrik Brueckner) [1036677]
-
-* Mon Jan 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-66.el7]
-- [net] netfilter: fix wrong byte order in nf_ct_seqadj_set internal information (Jesper Brouer) [1045360]
-- [net] br: fix use of ->rx_handler_data in code executed on non-rx_handler path (Jiri Pirko) [1039118]
-- [net] openvswitch: Use flow hash during flow lookup operation (Francesco Fusco) [1043536]
-- [net] openvswitch: TCP flags matching support (Francesco Fusco) [1043536]
-- [net] openvswitch: Widen TCP flags handling (Francesco Fusco) [1043536]
-- [net] openvswitch: Enable all GSO features on internal port (Francesco Fusco) [1043536]
-- [net] openvswitch: collect mega flow mask stats (Francesco Fusco) [1043536]
-- [net] openvswitch: Simplify mega-flow APIs (Francesco Fusco) [1043536]
-- [net] openvswitch: Move mega-flow list out of rehashing struct (Francesco Fusco) [1043536]
-- [net] openvswitch: Restructure datapath.c and flow.c (Francesco Fusco) [1043536]
-- [net] openvswitch: remove duplicated include from vport-gre.c (Francesco Fusco) [1043536]
-- [net] openvswitch: remove duplicated include from vport-vxlan.c (Francesco Fusco) [1043536]
-- [net] openvswitch: Move flow table rehashing to flow install (Francesco Fusco) [1043536]
-- [net] openvswitch: flow: fix potential illegal memory access in __parse_flow_nlattrs (Francesco Fusco) [1043536]
-- [net] openvswitch: Fix alignment of struct sw_flow_key (Francesco Fusco) [1043536]
-- [net] add BUG_ON if kernel advertises msg_namelen > sizeof(struct sockaddr_storage) (Florian Westphal) [1039870] {CVE-2013-7266 CVE-2013-7267 CVE-2013-7268 CVE-2013-7269 CVE-2013-7270 CVE-2013-7271}
-- [net] rework recvmsg handler msg_name and msg_namelen logic (Florian Westphal) [1039870] {CVE-2013-7266 CVE-2013-7267 CVE-2013-7268 CVE-2013-7269 CVE-2013-7270 CVE-2013-7271}
-- [acpi] acpi_gpio: protect against future KABI breakage (Prarit Bhargava) [1037769]
-- [acpi] processor: Introduce apic_id in struct processor to save parsed APIC id (Prarit Bhargava) [1037769]
-- [edac] sb_edac: add support for Ivy Bridge (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: avoid decoding the same error multiple times (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: rename mci_bind_devs() (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: enable multiple PCI id tables to be used (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: rework sad_pkg (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: allow different interleave lists (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: allow different dram_rule arrays (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: isolate TOHM retrieval (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: rename pci_br (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: isolate TOLM retrieval (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: make RANK_CFG_A value part of sbridge_info (Aristeu Rozanski) [1029153]
-- [s390] time: revert direct ktime path for s390 clockevent device (Hendrik Brueckner) [1036682]
-- [security] keys: fix uninitialized persistent_keyring_register_sem (Steve Best) [1030472]
-- [sched] idle: Fix the idle polling state logic (Jeremy Eder) [1038152]
-- [misc] enclosure: fix WARN_ON in dual path device removing (Steve Best) [1030291]
-- [security] keys: Pre-clear struct key on allocation (David Howells) [1032980]
-- [powerpc] eeh: Use interruptible sleep in keehd (Steve Best) [1044378]
-
-* Thu Jan 02 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-65.el7]
-- [md] fix calculation of stacking limits on level change (Jes Sorensen) [1033479]
-- [x86] better solution for x86 single cpu support check (Prarit Bhargava) [1032604]
-- [kernel] sched: Fix asymmetric scheduling for POWER7 (Steve Best) [1032796]
-- [fs] writeback: Fix data corruption on NFS (Jeff Layton) [1042112]
-- [fs] writeback: do not sync data dirtied after sync start (Jeff Layton) [1042112]
-- [fs] writeback: fix race that cause writeback hung (Jeff Layton) [1042112]
-- [fs] writeback: make writeback_inodes_wb static (Jeff Layton) [1042112]
-- [fs] writeback: fix occasional slow sync(1) (Jeff Layton) [1042112]
-- [fs] writeback: don't check force_wait to handle bdi->work_list (Jeff Layton) [1042112]
-- [fs] fs-writeback: make wb_do_writeback() as static (Jeff Layton) [1042112]
-- [fs] writeback: Do not sort b_io list only because of block device inode (Jeff Layton) [1042112]
-- [fs] sync: don't block the flusher thread waiting on IO (Jeff Layton) [1042112]
-- [security] selinux: process labeled IPsec TCP SYN-ACK packets properly in selinux_ip_postroute() (Paul Moore) [1040183]
-- [security] selinux: look for IPsec labels on both inbound and outbound packets (Paul Moore) [1040183]
-- [security] selinux: handle TCP SYN-ACK packets correctly in selinux_ip_postroute() (Paul Moore) [1040183]
-- [security] selinux: handle TCP SYN-ACK packets correctly in selinux_ip_output() (Paul Moore) [1040183]
-- [s390] signal: always restore saved runtime instrumentation psw bit (Hendrik Brueckner) [1029884]
-- [s390] fix handling of runtime instrumentation psw bit (Hendrik Brueckner) [1029884]
-- [platform] asus-nb-wmi: set wapf=4 for ASUSTeK COMPUTER INC. 1015E/U (Prarit Bhargava) [1043248]
-- [platform] asus-nb-wmi: ignore ALS notification key code (Prarit Bhargava) [1043248]
-- [fs] gfs2: Fix slab memory leak in gfs2_bufdata (Robert S Peterson) [1038123]
-- [fs] gfs2: Fix use-after-free race when calling gfs2_remove_from_ail (Robert S Peterson) [1038123]
-- [virt] kvm: fix guest-initiated crash with x2apic (Andrew Jones) [1042101] {CVE-2013-6376}
-- [drm] qxl: fix memory leak in release list handling (Dave Airlie) [1035564]
-- [scsi] ipr: Increase msi-x interrupt vectors to 16 (Steve Best) [1038501]
-
-* Tue Dec 17 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-64.el7]
-- [powerpc] powernv: Don't crash if there are no OPAL consoles (Steve Best) [1033086]
-- [powerpc] powernv: Reserve the correct PE number (Steve Best) [1033086]
-- [powerpc] powernv: Add PE to its own PELTV (Steve Best) [1033086]
-- [powerpc] eeh: Output PHB3 diag-data (Steve Best) [1033086]
-- [powerpc] powernv: Double size of log blob (Steve Best) [1033086]
-- [powerpc] eeh: Output error number (Steve Best) [1033086]
-- [powerpc] powernv: Support inbound error injection (Steve Best) [1033086]
-- [powerpc] powernv: Enable EEH for PHB3 (Steve Best) [1033086]
-- [powerpc] eeh: Fix undefined variable (Steve Best) [1033086]
-- [powerpc] pci: Remove duplicate check in pcibios_fixup_bus() (Steve Best) [1033086]
-- [powerpc] powernv: Needn't IO segment map for PHB3 (Steve Best) [1033086]
-- [powerpc] powernv: Check primary PHB through ID (Steve Best) [1033086]
-- [powerpc] powernv: Fetch PHB bus range from dev-tree (Steve Best) [1033086]
-- [powerpc] powernv: Free PHB instance upon error (Steve Best) [1033086]
-- [powerpc] eeh: Introdce flag to protect sysfs (Steve Best) [1033086]
-- [powerpc] eeh: Fix unbalanced enable for IRQ (Steve Best) [1033086]
-- [powerpc] eeh: Don't use pci_dev during BAR restore (Steve Best) [1033086]
-- [powerpc] eeh: Use partial hotplug for EEH unaware drivers (Steve Best) [1033086]
-- [powerpc] pci: Partial tree hotplug support (Steve Best) [1033086]
-- [powerpc] eeh: Use safe list traversal when walking EEH devices (Steve Best) [1033086]
-- [powerpc] eeh: Keep PE during hotplug (Steve Best) [1033086]
-- [pci] hotplug: Don't need to remove from EEH cache twice (Steve Best) [1033086]
-- [powerpc] pci: Override pcibios_release_device() (Steve Best) [1033086]
-- [powerpc] eeh: Export functions for hotplug (Steve Best) [1033086]
-- [powerpc] eeh: Remove reference to PCI device (Steve Best) [1033086]
-- [powerpc] powernv: Use dev-node in PCI config accessors (Steve Best) [1033086]
-- [powerpc] eeh: Avoid build warnings (Steve Best) [1033086]
-- [powerpc] eeh: Refactor the output message (Steve Best) [1033086]
-- [powerpc] eeh: Fix address catch for PowerNV (Steve Best) [1033086]
-- [powerpc] powernv: Replace variables with flags (Steve Best) [1033086]
-- [powerpc] eeh: Check PCIe link after reset (Steve Best) [1033086]
-- [powerpc] eeh: Don't collect PCI-CFG data on PHB (Steve Best) [1033086]
-- [powerpc] eeh: Debugfs for error injection (Steve Best) [1033086]
-- [powerpc] powernv: Debugfs directory for PHB (Steve Best) [1033086]
-- [powerpc] eeh: Register OPAL notifier for PCI error (Steve Best) [1033086]
-- [powerpc] powernv/opal: Disable OPAL notifier upon poweroff (Steve Best) [1033086]
-- [powerpc] powernv/opal: Notifier for OPAL events (Steve Best) [1033086]
-- [powerpc] eeh: Allow to check fenced PHB proactively (Steve Best) [1033086]
-- [powerpc] eeh: Enable EEH check for config access (Steve Best) [1033086]
-- [powerpc] eeh: Initialization for PowerNV (Steve Best) [1033086]
-- [powerpc] eeh: PowerNV EEH backends (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip next error (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip PE log and bridge setup (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip PE reset (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip EEH state retrieval (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip EEH enable option (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip post initialization (Steve Best) [1033086]
-- [powerpc] eeh: EEH backend for P7IOC (Steve Best) [1033086]
-- [powerpc] eeh: Sync OPAL API with firmware (Steve Best) [1033086]
-- [powerpc] eeh: EEH core to handle special event (Steve Best) [1033086]
-- [powerpc] eeh: Export confirm_error_lock (Steve Best) [1033086]
-- [powerpc] eeh: Allow to purge EEH events (Steve Best) [1033086]
-- [powerpc] eeh: Trace time on first error for PE (Steve Best) [1033086]
-- [powerpc] eeh: Single kthread to handle events (Steve Best) [1033086]
-- [powerpc] eeh: Delay EEH probe during hotplug (Steve Best) [1033086]
-- [powerpc] eeh: Refactor eeh_reset_pe_once() (Steve Best) [1033086]
-- [powerpc] eeh: EEH post initialization operation (Steve Best) [1033086]
-- [powerpc] eeh: Make eeh_init() public (Steve Best) [1033086]
-- [powerpc] eeh: Trace PCI bus from PE (Steve Best) [1033086]
-- [powerpc] eeh: Make eeh_pe_get() public (Steve Best) [1033086]
-- [powerpc] eeh: Make eeh_phb_pe_get() public (Steve Best) [1033086]
-- [powerpc] eeh: Move common part to kernel directory (Steve Best) [1033086]
-- [powerpc] eeh: Cleanup for EEH core (Steve Best) [1033086]
-- [powerpc] eeh: Enhance converting EEH dev (Steve Best) [1033086]
-- [s390] crypto: Fix aes-xts parameter corruption (Hendrik Brueckner) [1039937]
-- [fs] aio: restore locking of ioctx list on removal (Mateusz Guzik) [1013373]
-- [virt] kvm: Convert vapic synchronization to _cached functions (Andrew Jones) [1042092] {CVE-2013-6368}
-- [virt] kvm: Fix potential divide by 0 in lapic (Andrew Jones) [1042084] {CVE-2013-6367}
-- [virt] kvm: Improve create VCPU parameter (Andrew Jones) [1042074] {CVE-2013-4587}
-- [cpufreq] check cpufreq driver is valid and cpufreq isn't disabled in cpufreq_get() (Jan Stancek) [1040409]
-- [block] blk-mq: fix memory leaks on unplugging block device (Mike Snitzer) [1040675]
-- [block] blk-mq: fix use-after-free of request (Mike Snitzer) [1040675]
-- [block] blk-mq: fix dereference of rq->mq_ctx if allocation fails (Mike Snitzer) [1040675]
-- [block] blk-mq: add blktrace insert event trace (Mike Snitzer) [1040675]
-- [block] blk-mq: ensure that we set REQ_IO_STAT so diskstats work (Mike Snitzer) [1040675]
-- [mm] numa: write pte_numa pte back to the page tables (Rik van Riel) [1040200]
-- [mm] migrate: fix set cpupid on page migration twice against thp (Rik van Riel) [1040200]
-- [mm] numa: Guarantee that tlb_flush_pending updates are visible before page table updates (Rik van Riel) [1040200]
-- [sched] fix the theoretical signal_wake_up() vs schedule() race (Rik van Riel) [1040200]
-- [sched] Add tracepoints related to NUMA task migration (Rik van Riel) [1040200]
-- [mm] numa: Do not automatically migrate KSM pages (Rik van Riel) [1040200]
-- [mm] numa: Trace tasks that fail migration due to rate limiting (Rik van Riel) [1040200]
-- [mm] numa: Limit scope of lock for NUMA migrate rate limiting (Rik van Riel) [1040200]
-- [mm] numa: Make NUMA-migrate related functions static (Rik van Riel) [1040200]
-- [mm] numa: Defer TLB flush for THP migration as long as possible (Rik van Riel) [1040200]
-- [mm] fix TLB flush race between migration, and change_protection_range (Rik van Riel) [1040200]
-- [mm] numa: Avoid unnecessary disruption of NUMA hinting during migration (Rik van Riel) [1040200]
-- [mm] numa: Clear numa hinting information on mprotect (Rik van Riel) [1040200]
-- [sched] numa: Skip inaccessible VMAs (Rik van Riel) [1040200]
-- [mm] numa: Avoid unnecessary work on the failure path (Rik van Riel) [1040200]
-- [mm] numa: Ensure anon_vma is locked to prevent parallel THP splits (Rik van Riel) [1040200]
-- [mm] numa: Do not clear PTE for pte_numa update (Rik van Riel) [1040200]
-- [mm] numa: Do not clear PMD during PTE update scan (Rik van Riel) [1040200]
-- [mm] Clear pmd_numa before invalidating (Rik van Riel) [1040200]
-- [mm] numa: Call MMU notifiers on THP migration (Rik van Riel) [1040200]
-- [mm] numa: Serialise parallel get_user_page against THP migration (Rik van Riel) [1040200]
-- [mm] numa: return the number of base pages altered by protection changes (Rik van Riel) [1040200]
-
-* Mon Dec 16 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-63.el7]
-- [net] ipv6: router reachability probing (Jiri Benc) [1032118]
-- [net] ipv6: remove the unnecessary statement in find_match() (Jiri Benc) [1032118]
-- [net] arp/neighbour.h: Remove extern from function prototypes (Jiri Benc) [1032118]
-- [net] netfilter: tproxy: fix build with IP6_NF_IPTABLES=n (Jiri Benc) [1035295]
-- [net] netfilter: tproxy: remove nf_tproxy_core.h (Jiri Benc) [1035295]
-- [net] netfilter: tproxy: remove nf_tproxy_core, keep tw sk assigned to skb (Jiri Benc) [1035295]
-- [net] neigh: ipv6: respect default values set before an address is assigned to device (Jiri Pirko) [1040347]
-- [net] neigh: restore old behaviour of default parms values (Jiri Pirko) [1040347]
-- [net] neigh: use tbl->family to distinguish ipv4 from ipv6 (Jiri Pirko) [1040347]
-- [net] neigh: wrap proc dointvec functions (Jiri Pirko) [1040347]
-- [net] neigh: convert parms to an array (Jiri Pirko) [1040347]
-- [net] net: neighbour: Remove CONFIG_ARPD (Jiri Pirko) [1040347]
-- [net] ndisc: bool initializations should use true and false (Jiri Pirko) [1040347]
-- [net] ipv4: add support for IFA_FLAGS nl attribute (Jiri Pirko) [1021871]
-- [net] ipv6: addrconf: revert /proc/net/if_inet6 ifa_flag format (Jiri Pirko) [1021871]
-- [net] ipv6: addrconf: introduce IFA_F_MANAGETEMPADDR to tell kernel to manage temporary addresses (Jiri Pirko) [1021871]
-- [net] ipv6: addrconf: extend ifa_flags to u32 (Jiri Pirko) [1021871]
-- [net] ipv6: Remove privacy config option (Jiri Pirko) [1021871]
-- [net] ipv6: fix leaking uninitialized port number of offender sockaddr (Florian Westphal) [1035884] {CVE-2013-6405}
-- [net] inet: fix addr_len/msg->msg_namelen assignment in recv_error and rxpmtu functions (Florian Westphal) [1035884] {CVE-2013-6405}
-- [net] inet: prevent leakage of uninitialized memory to user in recv syscalls (Florian Westphal) [1035884] {CVE-2013-6405}
-- [net] rename busy poll MIB counter (Michal Schmidt) [1038631]
-- [net] rename CONFIG_NET_LL_RX_POLL to CONFIG_NET_RX_BUSY_POLL (Michal Schmidt) [1038631]
-- [net] fix a compile error when CONFIG_NET_LL_RX_POLL is not set (Michal Schmidt) [1038631]
-- [net] af_packet: block BH in prb_shutdown_retire_blk_timer() (Veaceslav Falico) [1034605]
-
-* Mon Dec 16 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-62.el7]
-- [scsi] pm80xx: remove unneeded NULL check (Rich Bono) [1019457]
-- [scsi] pm80xx: Fix for 32 bit compilation warning (Rich Bono) [1019457]
-- [scsi] pm80xx: Firmware logging support (Rich Bono) [1019457]
-- [scsi] pm80xx: Phy settings support for motherboard controller (Rich Bono) [1019457]
-- [scsi] pm80xx: IButton security feature support for motherboard controllers (Rich Bono) [1019457]
-- [scsi] pm80xx: Print SAS address of IO failed device (Rich Bono) [1019457]
-- [scsi] pm80xx: 4G boundary fix (Rich Bono) [1019457]
-- [scsi] pm80xx: Queue rotation logic for inbound and outbound queues (Rich Bono) [1019457]
-- [scsi] pm80xx: Set device state response logic fix (Rich Bono) [1019457]
-- [scsi] pm80xx: Display controller BIOS version (Rich Bono) [1019457]
-- [scsi] pm80xx: Indirect SMP request fix (Rich Bono) [1019457]
-- [scsi] pm80xx: Device id changes to support series 8 controllers (Rich Bono) [1019457]
-- [scsi] bfa: firmware update to 3.2.1.1 (Vijay Guvva) [726968]
-- [scsi] bfa: Update the driver version to 3.2.21.1 (Vijay Guvva) [726968]
-- [scsi] bfa: Chinook quad port 16G FC HBA claim issue (Vijay Guvva) [726968]
-- [scsi] bfa: switch to fixed_size_llseek() (Vijay Guvva) [726968]
-- [scsi] bfa: Fix crash when symb name set for offline vport (Vijay Guvva) [726968]
-- [scsi] bfa: dis-associate bfa path_tov with dev_loss_tmo (Vijay Guvva) [726968]
-- [scsi] bfa: Support for chinook-quad port card (Vijay Guvva) [726968]
-- [scsi] bfa: fix endianess issue for firmware stats (Vijay Guvva) [726968]
-- [scsi] bfa: Fix bug_on condition in RPSC rsp handling (Vijay Guvva) [726968]
-- [scsi] bfa: Allow rsp queue process during ioc disable (Vijay Guvva) [726968]
-- [scsi] bfa: firmware statistics update (Vijay Guvva) [726968]
-- [scsi] bfa: fru vpd date update changes (Vijay Guvva) [726968]
-- [scsi] bfa: driver compatibility with 32bit libs (Vijay Guvva) [726968]
-- [scsi] bfa: kdump fix on 815 and 825 adapters (Vijay Guvva) [726968]
-- [scsi] bfa: Fix FDISC timeout handling (Vijay Guvva) [726968]
-- [scsi] bfa: Fix 1860 port initialize when ATC is enabled (Vijay Guvva) [726968]
-- [scsi] bfa: FDMI enhancements (Vijay Guvva) [726968]
-- [scsi] bfa: Fix WARN_ON condition check (Vijay Guvva) [726968]
-- [scsi] bfa: Add dynamic diagnostic port support (Vijay Guvva) [726968]
-- [scsi] bfa: Forward Error Correction status query (Vijay Guvva) [726968]
-- [scsi] bfa: Support for FC BB credit recovery (Vijay Guvva) [726968]
-- [scsi] bfa: Fixes for 0-terminated strncpy and possible null pointer dereference (Vijay Guvva) [726968]
-- [scsi] bfa: fix for FC Direct Attach LUN discovery failure (Vijay Guvva) [726968]
-- [scsi] bfa: fix faulty handling of events in lps sm (Vijay Guvva) [726968]
-- [maintainers] Add maintainer info for bnx2i (Maurizio Lombardi) [725065]
-- [scsi] bnx2i: Update version and copyright year 2013 (Maurizio Lombardi) [725065]
-- [s390] uaccess: add missing page table walk range check (Hendrik Brueckner) [1036690]
-- [fs] nfsd: don't try to reuse an expired DRC entry off the list (Jeff Layton) [1036971]
-- [fs] nfsd: when reusing an existing repcache entry, unhash it first (Jeff Layton) [1036971]
-- [s390] pci: implement hotplug notifications (Hendrik Brueckner) [1030312]
-- [s390] pci: implement pcibios_remove_bus (Hendrik Brueckner) [1030312]
-- [s390] pci: improve handling of bus resources (Hendrik Brueckner) [1030312]
-- [s390] pci: cleanup function information block (Hendrik Brueckner) [1030312]
-- [s390] pci: remove CONFIG_PCI_DEBUG dependancy (Hendrik Brueckner) [1030312]
-- [s390] pci: message cleanup (Hendrik Brueckner) [1030312]
-- [s390] pci: implement hibernation hooks (Hendrik Brueckner) [1030312]
-
-* Thu Dec 12 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-61.el7]
-- [ethernet] cxgb3: Fix warning about using rcu_dereference when not in a rcu-locked section (Veaceslav Falico) [1038494]
-- [fs] btrfs: relocate csums properly with prealloc extents (Eric Sandeen) [1030074]
-- [fs] btrfs: release path before starting transaction in can_nocow_extent (Eric Sandeen) [1030074]
-- [fs] btrfs: fix oops caused by the space balance and dead roots (Eric Sandeen) [1030074]
-- [fs] btrfs: insert orphan roots into fs radix tree (Eric Sandeen) [1030074]
-- [fs] btrfs: limit delalloc pages outside of find_delalloc_range (Eric Sandeen) [1030074]
-- [fs] btrfs: Fix crash due to not allocating integrity data for a bioset (Eric Sandeen) [1030074]
-- [fs] btrfs: fix a use-after-free bug in btrfs_dev_replace_finishing (Eric Sandeen) [1030074]
-- [fs] btrfs: eliminate races in worker stopping code (Eric Sandeen) [1030074]
-- [fs] btrfs: fix crash of compressed writes (Eric Sandeen) [1030074]
-- [fs] btrfs: fix transid verify errors when recovering log tree (Eric Sandeen) [1030074]
-- [fs] vfs: fix subtle use-after-free of pipe_inode_info (Steve Best) [1033905]
-- [powerpc] signals: Mark VSX not saved with small contexts (Steve Best) [1019549]
-- [security] selinux: correct locking in selinux_netlbl_socket_connect() (Paul Moore) [991605]
-- [net] xfrm: Fix potential null pointer dereference in xdst_queue_output (Herbert Xu) [1034891]
-- [net] ipv6: introduce function to find route for redirect (Jiri Pirko) [1035996]
-- [net] ipv6: handle Redirect ICMP Message with no Redirected Header option (Jiri Pirko) [1035996]
-
-* Fri Dec 06 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-60.el7]
-- [misc] synchronize with upstream linux-3.10.y stable branch up to 3.10.20 (Veaceslav Falico) [1034281]
-- [s390] allow to set gcc -mtune flag (Hendrik Brueckner) [1032642]
-- [net] team: fix master carrier set when user linkup is enabled (Jiri Pirko) [1035258]
-- [net] openvswitch: fix vport-netdev unregister (Francesco Fusco) [1004267]
-
-* Thu Dec 05 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-59.el7]
-- [pci] Fix whitespace, capitalization, and spelling errors (Myron Stowe) [1033834]
-- [pci] Remove duplicate pci_disable_device() from pcie_portdrv_remove() (Myron Stowe) [1033834]
-- [pci] Enable upstream bridges even for VFs on virtual buses (Myron Stowe) [1033834]
-- [pci] Add pci_upstream_bridge() (Myron Stowe) [1033834]
-- [pci] Add x86_msi.msi_mask_irq() and msix_mask_irq() (Myron Stowe) [1033834]
-- [pci] Warn on driver probe return value greater than zero (Myron Stowe) [1033834]
-- [pci] Drop warning about drivers that don't use pci_set_master() (Myron Stowe) [1033834]
-- [pci] Workaround missing pci_set_master in pci drivers (Myron Stowe) [1033834]
-- [powerpc] pci: Use pci_is_pcie() to simplify code fix (Myron Stowe) [1033834]
-- [pci] Update pcie_ports 'auto' behavior for non-ACPI platforms (Myron Stowe) [1033834]
-- [pci] Report pci_pme_active() kmalloc failure (Myron Stowe) [1033834]
-- [pci] Fail MSI/MSI-X initialization if device is not in PCI_D0 (Myron Stowe) [1033834]
-- [x86] pci: Coalesce multiple overlapping host bridge windows (Myron Stowe) [1033834]
-- [misc] MAINTAINERS: Add arch/x86/pci to PCI file patterns (Myron Stowe) [1033834]
-- [pci] pm: Remove pci_pm_complete() (Myron Stowe) [1033834]
-- [pci] Add pci_dev_show_local_cpu() to simplify code (Myron Stowe) [1033834]
-- [pci] Make pci_dev_pm_ops static (Myron Stowe) [1033834]
-- [pci] Make pci_bus_attrs, pci_dev_attrs, dev_rescan_attr, dev_remove_attr, vga_attr static (Myron Stowe) [1033834]
-- [pci] convert bus code to use dev_groups (Myron Stowe) [1033834]
-- [pci] convert bus code to use drv_groups (Myron Stowe) [1033834]
-- [pci] convert bus code to use bus_groups (Myron Stowe) [1033834]
-- [drm] radeon: use pcie_get_readrq() and pcie_set_readrq() to simplify code (Myron Stowe) [1033834]
-- [infiniband] qib: Drop qib_tune_pcie_caps() and qib_tune_pcie_coalesce() return values (Myron Stowe) [1033834]
-- [pci] Remove unused PCI_MSIX_FLAGS_BIRMASK definition (Myron Stowe) [1033834]
-- [pci] acpiphp_ibm: Convert to dynamic debug (Myron Stowe) [1033834]
-- [pci] acpiphp: Convert to dynamic debug (Myron Stowe) [1033834]
-- [pci] Remove Intel Haswell D3 delays (Myron Stowe) [1033834]
-- [pci] Pass type, width, and prefetchability for window alignment (Myron Stowe) [1033834]
-- [pci] Document reason for using pci_is_root_bus() (Myron Stowe) [1033834]
-- [pci] Use pci_is_root_bus() to check for root bus (Myron Stowe) [1033834]
-- [pci] Remove unused "is_pcie" from pci_dev structure (Myron Stowe) [1033834]
-- [pci] Update pci_find_slot() description in pci.txt (Myron Stowe) [1033834]
-- [scsi] qla2xxx: Use standard PCIe Capability Link register field names (Myron Stowe) [1033834]
-- [pci] Fix comment typo, remove unnecessary !! in pci_is_pcie() (Myron Stowe) [1033834]
-- [pci] Drop "setting latency timer" messages (Myron Stowe) [1033834]
-- [infiniband] qib: Use pcie_set_mps() and pcie_get_mps() to simplify code (Myron Stowe) [1033834]
-- [infiniband] qib: Use pci_is_root_bus() to check whether it is a root bus (Myron Stowe) [1033834]
-- [pci] Export pcie_set_mps() and pcie_get_mps() (Myron Stowe) [1033834]
-- [acpi] Decode _OSC bitmasks symbolically (Myron Stowe) [1033834]
-- [acpi] Separate out _OSC "we don't support enough services" path (Myron Stowe) [1033834]
-- [acpi] Separate out _OSC "PCIe port services disabled" path (Myron Stowe) [1033834]
-- [acpi] Skip _OSC control tests if _OSC support call failed (Myron Stowe) [1033834]
-- [acpi] Run _OSC only once for OSPM feature support (Myron Stowe) [1033834]
-- [acpi] Split _OSC "support" and "control" flags into separate variables (Myron Stowe) [1033834]
-- [acpi] Move _OSC stuff from acpi_pci_root_add() to negotiate_os_control() (Myron Stowe) [1033834]
-- [acpi] Drop unnecessary _OSC existence tests (Myron Stowe) [1033834]
-- [pci] Name _OSC #defines more consistently (Myron Stowe) [1033834]
-- [acpi] Write OSC_PCI_CONTROL_MASKS like OSC_PCI_SUPPORT_MASKS (Myron Stowe) [1033834]
-- [acpi] Remove unused OSC_PCI_NATIVE_HOTPLUG (Myron Stowe) [1033834]
-- [acpi] Tidy acpi_run_osc() declarations (Myron Stowe) [1033834]
-- [acpi] Rename OSC_QUERY_TYPE to OSC_QUERY_DWORD (Myron Stowe) [1033834]
-- [acpi] Write _OSC bit field definitions in hex (Myron Stowe) [1033834]
-- [powerpc] pci: Use pci_is_pcie() to simplify code (Myron Stowe) [1033834]
-- [scsi] qla2xxx: Use pcie_is_pcie() to simplify code (Myron Stowe) [1033834]
-- [scsi] csiostor: Use pcie_capability_clear_and_set_word() to simplify (Myron Stowe) [1033834]
-- [scsi] bfa: Use pcie_set()/get_readrq() to simplify code (Myron Stowe) [1033834]
-- [x86] pci: Use cached pci_dev->pcie_cap to simplify code (Myron Stowe) [1033834]
-- [pci] Use pci_is_pcie() to simplify code (Myron Stowe) [1033834]
-- [ethernet] be2net: call napi_disable() for all event queues (Ivan Vecera) [1032872]
-- [mm] get rid of unnecessary pageblock scanning in setup_zone_migrate_reserve (Motohiro Kosaki) [1023873]
-- [s390] mm: handle asce-type exceptions as normal page fault (Hendrik Brueckner) [1033645]
-- [s390] 3270: fix missing device_destroy() call (Hendrik Brueckner) [1032553]
-- [s390] boot: Install bzImage as default kernel image (Hendrik Brueckner) [1032548]
-- [x86] perf: Fix shared register mutual exclusion enforcement (Jiri Olsa) [1032093]
-- [mm] readahead: fix sequential read cache miss detection (Rik van Riel) [1032279]
-- [block] fix a race between request completion and timeout handling (Jeff Moyer) [1032138]
-- [s390] mm: correct tlb flush on page table upgrade (Hendrik Brueckner) [1029601]
-
-* Wed Dec 04 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-58.el7]
-- [pci] msi: add default MSI operations for !HAVE_GENERIC_HARDIRQS platforms (Myron Stowe) [1034514]
-- [of] of_pci: add registry of MSI chips (Myron Stowe) [1034514]
-- [pci] Introduce new MSI chip infrastructure (Myron Stowe) [1034514]
-- [pci] remove ARCH_SUPPORTS_MSI kconfig option (Myron Stowe) [1034514]
-- [pci] use weak functions for MSI arch-specific functions (Myron Stowe) [1034514]
-- [of] of_pci: Add of_pci_parse_bus_range() function (Myron Stowe) [1034514]
-- [of] of_pci: Add of_pci_get_devfn() function (Myron Stowe) [1034514]
-- [fs] sysfs: sysfs_create_groups returns a value (Myron Stowe) [1034491]
-- [fs] sysfs: add sysfs_create/remove_groups for when SYSFS is not enabled (Myron Stowe) [1034491]
-- [fs] sysfs/group: fix up kerneldoc (Myron Stowe) [1034491]
-- [fs] sysfs/group: update copyright to add myself and the LF (Myron Stowe) [1034491]
-- [fs] sysfs/group: add kerneldoc for sysfs_remove_group (Myron Stowe) [1034491]
-- [fs] sysfs/group: fix up broken string coding style (Myron Stowe) [1034491]
-- [fs] sysfs/group: fix up some * coding style issues (Myron Stowe) [1034491]
-- [fs] sysfs/group: fix trailing whitespace (Myron Stowe) [1034491]
-- [fs] sysfs/group: move EXPORT_SYMBOL_GPL() to the proper location (Myron Stowe) [1034491]
-- [fs] sysfs: add sysfs_create/remove_groups() (Myron Stowe) [1034491]
-- [base] bus_type: add bus_groups (Myron Stowe) [1034491]
-- [base] bus_type: add drv_groups (Myron Stowe) [1034491]
-- [base] bus_type: add dev_groups (Myron Stowe) [1034491]
-- [ethernet] e1000e: fix overrun of PHY RAR array (John Green) [1031123]
-- [kernel] perf/ftrace: Fix paranoid level for enabling function tracer (Jiri Olsa) [1027778] {CVE-2013-2930}
-- [powerpc] kdump: Adding symbols in vmcoreinfo to facilitate dump filtering (Steve Best) [1025746]
-- [s390] block/dasd: hold request queue sysfs lock when calling elevator_init() (Tomoki Sekiyama) [1030615]
-- [block] elevator: acquire q->sysfs_lock in elevator_change() (Tomoki Sekiyama) [1030615]
-- [block] elevator: Fix a race in elevator switching and dm device initialization (Tomoki Sekiyama) [1030615]
-- [s390] vtime: correct idle time calculation (Hendrik Brueckner) [1029891]
-- [s390] time: fix get_tod_clock_ext inline assembly (Hendrik Brueckner) [1029891]
-- [s390] time: correct use of store clock fast (Hendrik Brueckner) [1029891]
-- [s390] time: return with irqs disabled from psw_idle (Hendrik Brueckner) [1029891]
-- [s390] fix save and restore of the floating-point-control register (Hendrik Brueckner) [1029602]
-- [s390] compat, signal: change return values to -EFAULT (Hendrik Brueckner) [1029602]
-- [net] flow_dissector: fail on evil iph->ihl (Jason Wang) [1007955] {CVE-2013-4348}
-
-* Tue Nov 26 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-57.el7]
-- [acpi] Correct faulty check of Secure Level in acpi_os_get_root_pointer() (Lenny Szubowicz) [1034598]
-
-* Tue Nov 26 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-56.el7]
-- [net] netfilter: push reasm skb through instead of original frag skbs (Jiri Pirko) [1032012]
-- [net] ip6_output: fragment outgoing reassembled skb properly (Jiri Pirko) [1032012]
-- [net] ipv6: fix headroom calculation in udp6_ufo_fragment (Jiri Pirko) [1030016] {CVE-2013-4563}
-- [net] macvtap: limit head length of skb allocated (Jason Wang) [1029380]
-- [net] tuntap: limit head length of skb allocated (Jason Wang) [1029380]
-- [fs] nfs: check if gssd is running before attempting to use krb5i auth in SETCLIENTID call (Jeff Layton) [998616]
-- [net] sunrpc: replace sunrpc_net->gssd_running flag with a more reliable check (Jeff Layton) [998616]
-- [net] sunrpc: create a new dummy pipe for gssd to hold open (Jeff Layton) [998616]
-- [s390] scm_block: do not hide eadm subchannel dependency (Hendrik Brueckner) [1032542]
-- [s390] qeth: avoid buffer overflow in snmp ioctl (Hendrik Brueckner) [1029890]
-- [s390] zfcpdump: Add support for XFS (Hendrik Brueckner) [1028103]
-- [x86] setup: print out a message if !ACPI (Prarit Bhargava) [1033181]
-- [cpufreq] intel_pstate: skip the driver if ACPI has power mgmt option (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Add static declarations to internal functions (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Add Baytrail support (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Refactor driver to support CPUs with different MSR layouts (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Correct calculation of min pstate value (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Improve accuracy by not truncating until final result (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Fix type mismatch warning (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Fix max_perf_pct on resume (Prarit Bhargava) [1031793]
-- [cpufreq] add new routine cpufreq_verify_within_cpu_limits() (Prarit Bhargava) [1031793]
-- [cpufreq] Optimize cpufreq_frequency_table_verify() (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: fix no_turbo (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Add Haswell CPU models (Prarit Bhargava) [1031793]
-- [cpufreq] Drop the owner field from struct cpufreq_driver (Prarit Bhargava) [1031793]
-- [cpufreq] Use rwsem for protecting critical sections (Prarit Bhargava) [1031793]
-- [cpufreq] delete __cpuinit usage from all cpufreq files (Prarit Bhargava) [1031793]
-- [powerpc] ppc64 address space capped at 32TB, mmap randomisation disabled (Steve Best) [1031762]
-
-* Thu Nov 21 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-55.el7]
-- [kernel] hung_task: add method to reset detector (Marcelo Tosatti) [987202]
-- [virt] pvclock: detect watchdog reset at pvclock read (Marcelo Tosatti) [987202]
-- [fs] cifs: stop trying to use virtual circuits (Sachin Prabhu) [1026387]
-- [security] keys: Fix keyring content gc scanner (David Howells) [1030482]
-- [fs] ext4: fix warning in ext4_da_update_reserve_space() (Lukas Czerner) [1022185]
-- [fs] quota: provide interface for readding allocated space into reserved space (Lukas Czerner) [1022185]
-- [fs] nfs: don't retry detect_trunking with RPC_AUTH_UNIX more than once (Jeff Layton) [1030404]
-- [net] sunrpc: Avoid deep recursion in rpc_release_client (Jeff Layton) [1030404]
-- [net] sunrpc: Fix a data corruption issue when retransmitting RPC calls (Jeff Layton) [1030062]
-- [fs] nfs: Remove redundant checks in nfs_setsecurity+nfs4_label_init_security (Jeff Layton) [1030725]
-- [fs] nfs: Sanity check the server reply in _nfs4_server_capabilities (Jeff Layton) [1030725]
-- [fs] nfs: encode_readdir - only ask for labels when doing readdirplus (Jeff Layton) [1030725]
-- [fs] nfs: set security label when revalidating inode (Jeff Layton) [1030725]
-- [fs] nfs: Fix a mismatch between Linux labeled NFS and the NFSv4.2 spec (Jeff Layton) [1030725]
-- [misc] synchronize with upstream linux-3.10.y stable branch up to 3.10.18 (Veaceslav Falico) [1028210]
-
-* Thu Nov 21 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-54.el7]
-- [fs] gfs2: Fix ref count bug relating to atomic_open (Robert S Peterson) [1032800]
-
-* Mon Nov 18 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-53.el7]
-- [ethernet] mlx4: Fix pages never dma unmapped on rx (Steve Best) [1030192]
-- [kernel] Add method for displaying affection for Red Hat (Prarit Bhargava) [1025450]
-- [powerpc] Fix fatal SLB miss when restoring PPR (Steve Best) [1027633]
-- [fs] gfs2: Implement a "rgrp has no extents longer than X" scheme (Robert S Peterson) [1019462]
-- [fs] gfs2: Drop inadequate rgrps from the reservation tree (Robert S Peterson) [1019462]
-- [fs] gfs2: If requested is too large, use the largest extent in the rgrp (Robert S Peterson) [1019462]
-- [fs] gfs2: Add allocation parameters structure (Robert S Peterson) [1019462]
-- [security] keys: Fix error handling in big_key instantiation (David Howells) [1029877]
-- [kernel] move get_online_cpus/put_online_cpus locking out (Rik van Riel) [1027267]
-- [kernel] sched/numa: Cure update_numa_stats() vs. hotplug (Rik van Riel) [1027267]
-- [kernel] sched/numa: Fix NULL pointer dereference in task_numa_migrate() (Rik van Riel) [1028100]
-- [scsi] hpsa: remove P822se PCI ID (Tomas Henzl) [1029009]
-- [scsi] hpsa: correct gen9 PCI IDs (Tomas Henzl) [1029009]
-- [scsi] scsi_dh_alua: ALUA handler attach should succeed while TPG is transitioning (Ewan Milne) [1020355]
-- [scsi] scsi_dh_alua: ALUA check sense should retry device internal reset unit attention (Ewan Milne) [1020355]
-- [scsi] scsi_debug: fix endianness bug in sdebug_build_parts() (Maurizio Lombardi) [1017128]
-- [block] blk-mq: don't disallow request merges for req->special being set (Mike Snitzer) [1016109]
-- [block] blk-mq: mq plug list breakage (Mike Snitzer) [1016109]
-- [block] blk-mq: fix for flush deadlock (Mike Snitzer) [1016109]
-- [block] blk-mq: add blk_mq_stop_hw_queues (Mike Snitzer) [1016109]
-- [block] blk-mq: fix permissions for ipi_redirect sysfs attribute (Mike Snitzer) [1016109]
-- [block] blk-mq: zero out ctx_map during initialization (Mike Snitzer) [1016109]
-- [block] blk-mq: cache rq->q (Mike Snitzer) [1016109]
-- [block] blk-mq: use a separate plug list for blk-mq requests (Mike Snitzer) [1016109]
-- [block] blk-mq: switch to percpu-ida for tag management (Mike Snitzer) [1016109]
-- [lib] percpu_ida: add an API to return free tags (Mike Snitzer) [1016109]
-- [lib] percpu_ida: add percpu_ida_for_each_free (Mike Snitzer) [1016109]
-- [lib] percpu_ida: make percpu_ida percpu size/batch configurable (Mike Snitzer) [1016109]
-- [lib] idr: Percpu ida (Mike Snitzer) [1016109]
-- [block] blk-mq: call exit_hctx on hw queue teardown (Mike Snitzer) [1016109]
-- [lib] percpu_counter: __this_cpu_write() doesn't need to be protected by spinlock (Mike Snitzer) [1016109]
-- [block] blk-mq: fix blk_mq_start_stopped_hw_queues from irq context (Mike Snitzer) [1016109]
-- [block] blk-mq: cleanup blk_mq_bio_to_request (Mike Snitzer) [1016109]
-- [block] blk-mq: kill blk_mq_finish_request (Mike Snitzer) [1016109]
-- [block] blk-mq: always complete bios in blk_mq_complete_request (Mike Snitzer) [1016109]
-- [block] blk-mq: dont call blk_mq_free_request from blk_mq_finish_request (Mike Snitzer) [1016109]
-- [block] blk-mq: more careful bio completion (Mike Snitzer) [1016109]
-- [block] use blk-exec.c infrastructure for blk-mq (Mike Snitzer) [1016109]
-- [block] make blk_get_put_request work for blk-mq drivers (Mike Snitzer) [1016109]
-- [block] remove request ref_count (Mike Snitzer) [1016109]
-- [block] blk-mq: Lower minimum queue depth from 4 to 1 (Mike Snitzer) [1016109]
-- [block] blk-mq: Do not fail blk_mq_reg::queue_depth value of zero (Mike Snitzer) [1016109]
-- [block] blk-mq: Do not allocate more cache entries than used (Mike Snitzer) [1016109]
-- [block] blk-mq: Check queue depth is valid (Mike Snitzer) [1016109]
-- [block] blk-mq: Sanity check reserved tags (Mike Snitzer) [1016109]
-
-* Fri Nov 15 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-52.el7]
-- [x86] trace: Change user|kernel_page_fault to page_fault_user|kernel (Seiji Aguchi) [726853]
-- [x86] trace: Add page fault tracepoints (Seiji Aguchi) [726853]
-- [x86] trace: Delete __trace_alloc_intr_gate() (Seiji Aguchi) [726853]
-- [x86] trace: Register exception handler to trace IDT (Seiji Aguchi) [726853]
-- [x86] trace: Remove __alloc_intr_gate() (Seiji Aguchi) [726853]
-- [kernel] audit: call audit_bprm() only once to add AUDIT_EXECVE information (Richard Guy Briggs) [1010367]
-- [kernel] audit: move audit_aux_data_execve contents into audit_context union (Richard Guy Briggs) [1010367]
-- [kernel] audit: remove unused envc member of audit_aux_data_execve (Richard Guy Briggs) [1010367]
-- [kernel] audit: Kill the unused struct audit_aux_data_capset (Richard Guy Briggs) [1010367]
-- [fs] gfs2: fix dentry leaks (Abhijith Das) [1010350]
-- [fs] gfs2: d_splice_alias() can't return error (Abhijith Das) [1010350]
-- [fs] atomic_open: take care of EEXIST in no-open case with O_CREAT|O_EXCL in fs/namei.c (Abhijith Das) [1010350]
-- [fs] vfs: don't set FILE_CREATED before calling ->atomic_open() (Abhijith Das) [1010350]
-- [fs] nfs: set FILE_CREATED (Abhijith Das) [1010350]
-- [fs] gfs2: set FILE_CREATED (Abhijith Das) [1010350]
-- [fs] vfs: improve i_op->atomic_open() documentation (Abhijith Das) [1010350]
-- [net] svcrpc: set cr_gss_mech from gss-proxy as well as legacy upcall (J. Bruce Fields) [1026643]
-- [mm] zbud: fix condition check on allocation size (Jerome Marchand) [1009496]
-- [kernel] sched: Optimize task_sched_runtime() (Larry Woodman) [986058]
-- [x86] setup: add a customer friendly message for single cpu systems (Prarit Bhargava) [1009066]
-- [x86] efi: Disable secure boot if shim is in insecure mode (Lenny Szubowicz) [1004888]
-- [kernel] modsign: Support not importing certs from db (Lenny Szubowicz) [1004888]
-- [kernel] modsign: Import certificates from UEFI Secure Boot (Lenny Szubowicz) [1004888]
-- [kernel] keys: Add a system blacklist keyring (Lenny Szubowicz) [1004888]
-- [crypto] asymmetric_keys: Add an EFI signature blob parser and key loader (Lenny Szubowicz) [1004888]
-- [kernel] efi: Add EFI signature data types (Lenny Szubowicz) [1004888]
-- [kernel] hibernate: Disable if securelevel above zero (Lenny Szubowicz) [903815]
-- [x86] efi: Add EFI_SECURE_BOOT bit (Lenny Szubowicz) [903815]
-- [x86] Add option to automatically set securelevel when in Secure Boot mode (Lenny Szubowicz) [903815]
-- [platform] asus-wmi: Restrict debugfs interface when securelevel is set (Lenny Szubowicz) [903815]
-- [x86] Restrict MSR access when securelevel is set (Lenny Szubowicz) [903815]
-- [kernel] uswsusp: Disable when securelevel is set (Lenny Szubowicz) [903815]
-- [kernel] kexec: Disable at runtime if securelevel has been set (Lenny Szubowicz) [903815]
-- [acpi] Ignore acpi_rsdp kernel parameter when securelevel is set (Lenny Szubowicz) [903815]
-- [acpi] Limit access to custom_method if securelevel is set (Lenny Szubowicz) [903815]
-- [char] mem: Restrict /dev/mem and /dev/kmem when securelevel is set (Lenny Szubowicz) [903815]
-- [x86] Lock down IO port access when securelevel is enabled (Lenny Szubowicz) [903815]
-- [pci] Lock down BAR access when securelevel is enabled (Lenny Szubowicz) [903815]
-- [x86] Enforce module signatures when securelevel is greater than 0 (Lenny Szubowicz) [903815]
-- [kernel] Add BSD-style securelevel support (Lenny Szubowicz) [903815]
-
-* Thu Nov 14 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-51.el7]
-- [net] nfnetlink: do not ack malformed messages (Jiri Benc) [1023123]
-- [net] netfilter: nft_compat: use _safe version of list_for_each (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: remove duplicated include from nf_tables_ipv4.c (Jiri Benc) [1023123]
-- [net] netfilter: bridge: nf_tables: add filter chain type (Jiri Benc) [1023123]
-- [net] netfilter: nft_nat: Fix endianness issue reported by sparse (Jiri Benc) [1023123]
-- [net] netfilter: bridge: fix nf_tables bridge dependencies with main core (Jiri Benc) [1023123]
-- [net] nf_tables: mark as Tech Preview (Jiri Benc) [1023123]
-- [net] nf_tables: stuff structures to preserve kABI in the future (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add ARP filtering support (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add trace support (Jiri Benc) [1023123]
-- [net] netfilter: nfnetlink: add batch support and use it from nf_tables (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add insert operation (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: complete net namespace support (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: Add support for IPv6 NAT (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add support for dormant tables (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: nft_payload: fix transport header base (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add compatibility layer for x_tables (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: convert built-in tables/chains to chain types (Jiri Benc) [1023123]
-- [net] netfilter: nft_payload: add optimized payload implementation for small loads (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add optimized data comparison for small values (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: expression ops overloading (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add netlink set API (Jiri Benc) [1023123]
-- [net] netfilter: add nftables (Jiri Benc) [1023123]
-- [net] netfilter: nf_nat: move alloc_null_binding to nf_nat_core.c (Jiri Benc) [1023123]
-- [net] netfilter: pass hook ops to hookfn (Jiri Benc) [1023123]
-- [net] netlink: fix splat in skb_clone with large messages (Jiri Benc) [1023123]
-- [net] netlink: allow large data transfers from user-space (Jiri Benc) [1023123]
-
-* Wed Nov 13 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-50.el7]
-- [virt] hyperv/vmbus: Fix a bug in channel rescind code (Jason Wang) [1017564]
-- [virt] hyperv: Fix wrong check for synic_event_page (Jason Wang) [1017564]
-- [virt] hyperv/vmbus: fix vmbus_recvpacket_raw() return code (Jason Wang) [1017564]
-- [virt] hyperv/input: add a driver to support Hyper-V synthetic keyboard (Jason Wang) [1017564]
-- [virt] hyperv: Correctly guard the local APIC calibration code (Jason Wang) [1017564]
-- [virt] hyperv: Get the local APIC timer frequency from the hypervisor (Jason Wang) [1017564]
-- [kernel] stop_machine: fix race between stop_two_cpus and stop_cpus (Rik van Riel) [1023627]
-- [video] fb: make fp_get_options name argument const (Rob Clark) [1018414]
-- [drm] nouveau/device: recognise GK208 (Rob Clark) [1018414]
-- [drm] nouveau/graph: fix a number of missing explicit array terminators (Rob Clark) [1018414]
-- [drm] nouveau/disp: semi-complete link training sequence even if display disappears (Rob Clark) [1018414]
-- [drm] nouveau/bios: some older boards have shorter displayport tables (Rob Clark) [1018414]
-- [drm] nouveau/fbcon: bracket entrypoints with a per-device enabled check (Rob Clark) [1018414]
-- [drm] nouveau/disp: reorder writes to lane current control regs (Rob Clark) [1018414]
-- [drm] nouveau/disp: reorder writes to lane current control regs (Rob Clark) [1018414]
-- [drm] nouveau/disp: log if DP link training fails (Rob Clark) [1018414]
-- [drm] nouveau/disp: disable display underflow reporting at init (Rob Clark) [1018414]
-- [drm] nouveau/clock: fix accidental limiting of pll coefficients (Rob Clark) [1018414]
-- [drm] nouveau/device: use an additional bit from NV_PMC_BOOT_0 to identify chipset (Rob Clark) [1018414]
-- [drm] nouveau/bios/init: return failure condition on invalid opcodes (Rob Clark) [1018414]
-- [drm] nouveau/therm: ack any pending IRQ at init (Rob Clark) [1018414]
-- [drm] nouveau/therm: kill some over-zealous debugging (Rob Clark) [1018414]
-- [drm] radeon: don't use PACKET2 on CIK (Rob Clark) [1018414]
-- [drm] nouveau: split lock into list+exec and enable refcount locks (Rob Clark) [1018414]
-- [drm] nouveau: convert event handler apis to split create/enable semantics (Rob Clark) [1018414]
-- [drm] nouveau: share engine/channel constructor between implementations (Rob Clark) [1018414]
-- [drm] nouveau: prepare for the sharing of constructors between implementations (Rob Clark) [1018414]
-- [drm] nouveau: make vblank tracking data private to the implementations (Rob Clark) [1018414]
-- [drm] nouveau: share engine/channel struct definitions between implementations (Rob Clark) [1018414]
-- [drm] nouveau: Allow asymmetric nouveau_event_get/_put (Rob Clark) [1018414]
-- [drm] nouveau: Move event index check from critical section (Rob Clark) [1018414]
-- [drm] nouveau: Add priv field for event handlers (Rob Clark) [1018414]
-- [drm] nouveau: off by one in nouveau_drm_vblank_enable() (Rob Clark) [1018414]
-- [drm] backport to Linux 3.12-rc7 (Rob Clark) [1018414]
-- [firmware] dmi: add support for exact DMI matches in addition to substring matching (Rob Clark) [1025360]
-- [vga] vga_switcheroo: add driver control power feature (Rob Clark) [1025360]
-- [mm] vmscan: new shrinker API (Rob Clark) [1025360]
-- [kernel] Add arch_phys_wc_{add, del} to manipulate WC MTRRs if needed (Rob Clark) [1025360]
-- [kernel] mutex: Move ww_mutex definitions to ww_mutex.h (Rob Clark) [1025360]
-- [kernel] reservation: cross-device reservation support (Rob Clark) [1025360]
-- [kernel] locking-selftests: Handle unexpected failures more strictly (Rob Clark) [1025360]
-- [kernel] mutex: Add more w/w tests to test EDEADLK path handling (Rob Clark) [1025360]
-- [kernel] mutex: Add more tests to lib/locking-selftest.c (Rob Clark) [1025360]
-- [kernel] mutex: Add w/w tests to lib/locking-selftest.c (Rob Clark) [1025360]
-- [kernel] mutex: Add w/w mutex slowpath debugging (Rob Clark) [1025360]
-- [kernel] mutex: Add support for wound/wait style locks (Rob Clark) [1025360]
-- [kernel] mutex: Make __mutex_fastpath_lock_retval return whether fastpath succeeded or not (Rob Clark) [1025360]
-
-* Tue Nov 12 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-49.el7]
-- [usb] misc/usb3503: Fix compile error due to incorrect regmap depedency (Don Zickus) [895641]
-- [usb] storage: add quirk for mandatory READ_CAPACITY_16 (Don Zickus) [895641]
-- [usb] serial/option: blacklist Olivetti Olicard200 (Don Zickus) [895641]
-- [usb] quirks: add touchscreen that is dazzeled by remote wakeup (Don Zickus) [895641]
-- [usb] quirks: add one device that cannot deal with suspension (Don Zickus) [895641]
-- [usb] serial/option: add support for Inovia SEW858 device (Don Zickus) [895641]
-- [usb] serial/ti_usb_3410_5052: add Abbott strip port ID to combined table as well (Don Zickus) [895641]
-- [usb] support new huawei devices in option.c (Don Zickus) [895641]
-- [usb] xhci: Fix spurious wakeups after S5 on Haswell (Don Zickus) [895641]
-- [usb] xhci: fix write to USB3_PSSEN and XUSB2PRM pci config registers (Don Zickus) [895641]
-- [usb] xhci: quirk for extra long delay for S4 (Don Zickus) [895641]
-- [usb] xhci: Don't enable/disable RWE on bus suspend/resume (Don Zickus) [895641]
-- [net] usbnet: fix handling padding packet (Don Zickus) [895641]
-- [usb] imx21: accept very late isochronous URBs (Don Zickus) [895641]
-- [usb] core: check usb device's state before sending a Set SEL control transfer (Don Zickus) [895641]
-- [usb] xhci: Fix xHCI host issues on remote wakeup (Don Zickus) [1016889]
-- [usb] serial/pl2303: distinguish between original and cloned HX chips (Don Zickus) [895641]
-- [usb] fix typo in usb serial simple driver Kconfig (Don Zickus) [895641]
-- [usb] core: fix incorrect type in assignment in descriptors_changed() (Don Zickus) [895641]
-- [usb] core: compare and release one bos descriptor in usb_reset_and_verify_device() (Don Zickus) [895641]
-- [usb] ehci: remove debugging statement with ehci statistics in ehci_stop() (Don Zickus) [895641]
-- [usb] ehci: remove duplicate debug_async_open() prototype in ehci-dbg.c (Don Zickus) [895641]
-- [usb] ehci: enable debugging code when CONFIG_DYNAMIC_DEBUG is set (Don Zickus) [895641]
-- [usb] ehci: remove ehci_vdbg() verbose debugging statements (Don Zickus) [895641]
-- [usb] xhci: Fix warning introduced by disabling runtime PM (Don Zickus) [1016889]
-- [usb] storage: audit sysfs attribute permissions (Don Zickus) [895641]
-- [usb] xhci: prevent "callbacks suppressed" when debug is not enabled (Don Zickus) [1016889]
-- [usb] xhci: fix port BESL LPM capability checking (Don Zickus) [1016889]
-- [usb] ohci: fix build error related to ohci_suspend/resume (Don Zickus) [895641]
-- [usb] serial: clean up attribute permissions (Don Zickus) [895641]
-- [usb] usbtmc: fix up attribute permissions (Don Zickus) [895641]
-- [usb] core: be specific about attribute permissions (Don Zickus) [895641]
-- [usb] core: use DRIVER_ATTR_RW() (Don Zickus) [895641]
-- [usb] don't use bNbrPorts after initialization (Don Zickus) [895641]
-- [usb] fail on usb_hub_create_port_device() errors (Don Zickus) [895641]
-- [usb] fix cleanup after failure in hub_configure() (Don Zickus) [895641]
-- [usb] ohci: add missing PCI PM callbacks to ohci-pci.c (Don Zickus) [895641]
-- [usb] serial: fix stringify operator in usb-serial-simple (Don Zickus) [895641]
-- [usb] wusbcore: Use usb_init_urb instead of creating the URB manually (Don Zickus) [895641]
-- [usb] wusbcore: fix leak of urb in wa_xfer_destroy (Don Zickus) [895641]
-- [usb] wusbcore: fix resource cleanup in error path in __wa_xfer_setup_segs (Don Zickus) [895641]
-- [usb] wusbcore: clear RPIPE stall for control endpoints (Don Zickus) [895641]
-- [usb] uss720: fix DMA-buffer allocation (Don Zickus) [895641]
-- [usb] quatech2: fix port DMA-buffer allocations (Don Zickus) [895641]
-- [usb] quatech2: fix serial DMA-buffer allocations (Don Zickus) [895641]
-- [usb] keyspan: fix port DMA-buffer allocations (Don Zickus) [895641]
-- [usb] keyspan: fix serial DMA-buffer allocations (Don Zickus) [895641]
-- [usb] rh_call_control tbuf overflow fix (Don Zickus) [895641]
-- [usb] host: add Kconfig option for EHSET (Don Zickus) [895641]
-- [usb] serial/pl2303: improve the chip type detection/distinction (Don Zickus) [895641]
-- [usb] serial/pl2303: improve the chip type information output on startup (Don Zickus) [895641]
-- [usb] serial/pl2303: simplify the else-if contruct for type_1 chips in pl2303_startup() (Don Zickus) [895641]
-- [usb] xhci: fix dma mask setup in xhci.c (Don Zickus) [1016889]
-- [usb] xhci: trace debug statements related to ring expansion (Don Zickus) [1016889]
-- [usb] xhci: trace debug messages related to driver initialization and unload (Don Zickus) [1016889]
-- [usb] xhci: trace debug statements for urb cancellation (Don Zickus) [1016889]
-- [usb] xhci: add xhci_cmd_completion trace event (Don Zickus) [1016889]
-- [usb] xhci: add xhci_address_ctx trace event (Don Zickus) [1016889]
-- [usb] xhci: add trace for debug messages related to endpoint reset (Don Zickus) [1016889]
-- [usb] xhci: add trace for debug messages related to quirks (Don Zickus) [1016889]
-- [usb] xhci: add trace for debug messages related to changing contexts (Don Zickus) [1016889]
-- [usb] xhci: add traces for debug messages in xhci_address_device() (Don Zickus) [1016889]
-- [usb] xhci: remove CONFIG_USB_XHCI_HCD_DEBUGGING and unused code (Don Zickus) [1016889]
-- [usb] xhci: replace printk(KERN_DEBUG ...) (Don Zickus) [1016889]
-- [usb] xhci: replace xhci_info() with xhci_dbg() (Don Zickus) [1016889]
-- [usb] xhci: Add Device Tree support to XHCI Platform driver (Don Zickus) [1016889]
-- [usb] serial/pl2303: add two comments concerning the supported baud rates with HX chips (Don Zickus) [895641]
-- [usb] serial/pl2303: also use the divisor based baud rate encoding method for baud rates < 115200 with HX chips (Don Zickus) [895641]
-- [usb] serial/pl2303: increase the allowed baud rate range for the divisor based encoding method (Don Zickus) [895641]
-- [usb] serial/pl2303: move the two baud rate encoding methods to separate functions (Don Zickus) [895641]
-- [usb] serial/pl2303: remove 500000 baud from the list of standard baud rates (Don Zickus) [895641]
-- [usb] serial/pl2303: do not round to the next nearest standard baud rate for the divisor based baud rate encoding method (Don Zickus) [895641]
-- [usb] serial/pl2303: fix the upper baud rate limit check for type_0/1 chips (Don Zickus) [895641]
-- [usb] serial/pl2303: fix+improve the divsor based baud rate encoding method (Don Zickus) [895641]
-- [usb] hwa: avoid constant suspend and resume on the root hub (Don Zickus) [895641]
-- [usb] adutux: fix big-endian device-type reporting (Don Zickus) [895641]
-- [usb] usbtmc: fix big-endian probe of Rigol devices (Don Zickus) [895641]
-- [usb] wusbcore: clean up list locking in urb enqueue (Don Zickus) [895641]
-- [usb] wusbcore: fix root hub hub_status_data to only return > 0 if status has actually changed (Don Zickus) [895641]
-- [usb] ehci: Add support for SINGLE_STEP_SET_FEATURE test of EHSET (Don Zickus) [895641]
-- [usb] hcd: Log error code if reset() fails (Don Zickus) [895641]
-- [usb] misc/usb3503: Support operation with no I2C control (Don Zickus) [895641]
-- [usb] misc/usb3503: Add USB3503A to the compatible list (Don Zickus) [895641]
-- [usb] misc/usb3503: Default to hub mode (Don Zickus) [895641]
-- [usb] misc/usb3503: Fix typos in error messages (Don Zickus) [895641]
-- [usb] misc/usb3503: Factor out I2C probe (Don Zickus) [895641]
-- [usb] misc/usb3503: Convert to regmap (Don Zickus) [895641]
-- [usb] misc/usb3503: Actively manage Hub Connect GPIO (Don Zickus) [895641]
-- [usb] misc/usb3503: Use gpio_set_value_cansleep() (Don Zickus) [895641]
-- [usb] Move definition of USB_EHCI_BIG_ENDIAN_MMIO et al. out side of the ifs (Don Zickus) [895641]
-- [usb] misc/usb3503: Convert to devm_ APIs (Don Zickus) [895641]
-- [usb] serial: move the "simple" drivers into usb-serial-simple.c (Don Zickus) [895641]
-- [net] usbnet: support DMA SG (Don Zickus) [895641]
-- [usb] xhci: mark no_sg_constraint (Don Zickus) [1016889]
-- [usb] introduce usb_device_no_sg_constraint() helper (Don Zickus) [895641]
-- [usb] ehci: support running URB giveback in tasklet context (Don Zickus) [895641]
-- [usb] ehci: improve interrupt qh unlink (Don Zickus) [895641]
-- [usb] ehci: improve ehci_endpoint_disable (Don Zickus) [895641]
-- [usb] hcd: support giveback of URB in tasklet context (Don Zickus) [895641]
-- [usb] fix some scripts/kernel-doc warnings (Don Zickus) [895641]
-- [usb] ehci: don't depend on hardware for tracking port resets and resumes (Don Zickus) [895641]
-- [usb] ehci: keep better track of resuming ports (Don Zickus) [895641]
-- [usb] pl2303: restrict the divisor based baud rate encoding method to the "HX" chip type (Don Zickus) [895641]
-- [usb] refactor code for enabling/disabling remote wakeup (Don Zickus) [895641]
-- [usb] simplify the interface of usb_get_status() (Don Zickus) [895641]
-- [usb] xhci: add missing dma-mapping.h includes (Don Zickus) [895641]
-- [net] usbnet: centralize computing of max rx/tx qlen (Don Zickus) [895641]
-- [usb] serial: add driver for Suunto ANT+ USB device (Don Zickus) [895641]
-- [usb] ohci_usb warn "irq nobody cared" on shutdown (Don Zickus) [895641]
-- [usb] ohci-ep93xx: tidy up driver (*probe) and (*remove) (Don Zickus) [895641]
-- [usb] ohci-ep93xx: use devm_clk_get() (Don Zickus) [895641]
-- [usb] ohci-ep93xx: use platform_get_irq() (Don Zickus) [895641]
-- [usb] ohci-ep93xx: use devm_ioremap_resource() (Don Zickus) [895641]
-- [usb] usb-skeleton: add retry for nonblocking read (Don Zickus) [895641]
-- [usb] usbtmc: convert to devm_kzalloc (Don Zickus) [895641]
-- [usb] usbtmc: remove redundant braces (Don Zickus) [895641]
-- [usb] usbtmc: call pr_err instead of plain printk (Don Zickus) [895641]
-- [usb] usbtmc: remove trailing spaces (Don Zickus) [895641]
-- [usb] usbfs: Allow printer class 'get_device_id' without needing to claim the intf (Don Zickus) [895641]
-- [usb] remove redundant "#if" (Don Zickus) [895641]
-- [usb] misc: EHSET Test Fixture device driver for host compliance (Don Zickus) [895641]
-- [usb] clamp bInterval to allowed range (Don Zickus) [895641]
-- [usb] atm/speedtch: be careful with bInterval (Don Zickus) [895641]
-- [usb] cdc-acm: be careful with bInterval (Don Zickus) [895641]
-- [usb] fix build warning in pci-quirks.h when CONFIG_PCI is not enabled (Don Zickus) [895641]
-- [usb] xhci: Mark two functions __maybe_unused (Don Zickus) [895641]
-- [usb] check sg buffer size in usb_submit_urb (Don Zickus) [895641]
-- [usb] isp1362: move debug files from proc to debugfs (Don Zickus) [895641]
-- [usb] sl811: move debug files from proc to debugfs (Don Zickus) [895641]
-- [usb] remove unneeded idr.h include (Don Zickus) [895641]
-- [usb] sl811: remove CONFIG_USB_DEBUG dependency (Don Zickus) [895641]
-- [usb] isp116x: remove dependency on CONFIG_USB_DEBUG (Don Zickus) [895641]
-- [usb] isp1362: remove CONFIG_USB_DEBUG dependency (Don Zickus) [895641]
-- [usb] isp1362: remove _DBG() usage (Don Zickus) [895641]
-- [usb] isp1362: remove unused _WARN_ON() calls (Don Zickus) [895641]
-- [usb] isp1362: remove unused _BUG_ON() calls (Don Zickus) [895641]
-- [usb] usbatm: remove CONFIG_USB_DEBUG dependancy (Don Zickus) [895641]
-- [usb] usbatm: move the atm_dbg() call to use dynamic debug (Don Zickus) [895641]
-- [usb] usbatm: don't rely on CONFIG_USB_DEBUG (Don Zickus) [895641]
-- [usb] usbatm: remove unneeded trace printk calls (Don Zickus) [895641]
-- [usb] usbatm: remove unused UDSL_ASSERT macro (Don Zickus) [895641]
-- [usb] ti_usb_3410_5052: remove vendor/product module parameters (Don Zickus) [895641]
-- [usb] ti_usb_3410_5052: remove unused wait queue (Don Zickus) [895641]
-- [usb] ti_usb_3410_5052: kill private fifo (Don Zickus) [895641]
-- [usb] safe_serial: remove vendor/product module parameters (Don Zickus) [895641]
-- [usb] mos7840: remove broken chase implementation (Don Zickus) [895641]
-- [usb] io_ti: move port initialisation to probe (Don Zickus) [895641]
-- [usb] io_ti: kill private fifo (Don Zickus) [895641]
-- [usb] io_edgeport: remove unused defines (Don Zickus) [895641]
-- [usb] ftdi_sio: remove unused defines (Don Zickus) [895641]
-- [usb] ftdi_sio: remove vendor/product module parameters (Don Zickus) [895641]
-- [usb] ftdi_sio: remove redundant raise of DTR/RTS at open (Don Zickus) [895641]
-- [usb] ftdi_sio: clean up device initialisation (Don Zickus) [895641]
-- [usb] oti6858: do not call set_termios with uninitialised data (Don Zickus) [895641]
-- [usb] pl2303: remove debugging noise (Don Zickus) [895641]
-- [usb] pl2303: clean up set_termios (Don Zickus) [895641]
-- [usb] pl2303: clean up baud-rate handling (Don Zickus) [895641]
-- [usb] pl2303: refactor baud-rate handling (Don Zickus) [895641]
-- [usb] console: remove unnecessary operations test (Don Zickus) [895641]
-- [usb] console: use dev_dbg (Don Zickus) [895641]
-- [usb] serial: set drain delay at port probe (Don Zickus) [895641]
-- [usb] serial: clean up dtr_rts (Don Zickus) [895641]
-- [usb] serial: remove hupping check from tiocmiwait (Don Zickus) [895641]
-- [usb] serial: remove defensive test from set_termios (Don Zickus) [895641]
-- [usb] misc: remove CONFIG_USB_DEBUG from Makefile (Don Zickus) [895641]
-- [usb] adutux: remove direct calls to printk() (Don Zickus) [895641]
-- [usb] adutux: remove custom debug macro and module parameter (Don Zickus) [895641]
-- [usb] adutux: remove custom debug macro (Don Zickus) [895641]
-- [usb] adutux: remove unneeded tracing macros (Don Zickus) [895641]
-- [usb] legotower: remove direct calls to printk() (Don Zickus) [895641]
-- [usb] legotower: remove custom debug macro and module parameter (Don Zickus) [895641]
-- [usb] legousbtower: remove custom debug macro (Don Zickus) [895641]
-- [usb] legotower: remove unneeded tracing macros (Don Zickus) [895641]
-- [usb] ldusb: remove custom dbg_info() macro (Don Zickus) [895641]
-- [usb] xhci: Correct misplaced newlines (Don Zickus) [1016889]
-- [usb] xhci: refactor EHCI/xHCI port switching (Don Zickus) [1016889 970717]
-- [usb] xhci: Report USB 2.1 link status for L1 (Don Zickus) [1016889]
-- [usb] xhci: Refactor port status into a new function (Don Zickus) [1016889]
-- [usb] xhci: add the suspend/resume functionality (Don Zickus) [1016889]
-- [usb] move the definition of USB_MAXCHILDREN (Don Zickus) [895641]
-- [usb] atm: avoid parsing names as kthread_run() format strings (Don Zickus) [895641]
-- [usb] xhci: Add missing unlocks on error paths (Don Zickus) [895641]
-- [usb] ehci-atmel: prepare clk before calling enable (Don Zickus) [895641]
-- [usb] hwa: fix device probe failure (Don Zickus) [895641]
-- [usb] wusbcore: add sysfs attribute for retry count (Don Zickus) [895641]
-- [usb] wusbcore: add sysfs attribute for DNTS count and interval (Don Zickus) [895641]
-- [usb] check usb_hub_to_struct_hub() return value (Don Zickus) [895641]
-- [usb] ehci: Remove double assignment of .start in ehci_msp_hc_driver (Don Zickus) [895641]
-- [usb] ehci: export ehci_handshake for ehci-hcd sub-drivers (Don Zickus) [895641]
-- [usb] wusbcore: add scatter gather support (Don Zickus) [895641]
-- [usb] cdc-acm: remove unneeded spin_lock_irqsave/restore on write path (Don Zickus) [895641]
-- [usb] serial: increase the number of devices we support (Don Zickus) [895641]
-- [usb] serial: make minor allocation dynamic (Don Zickus) [895641]
-- [usb] xhci: remove BUG() in xhci_get_endpoint_type() (Don Zickus) [895641]
-- [usb] xhci: Remove BUG in xhci_setup_addressable_virt_dev (Don Zickus) [895641]
-- [usb] xhci: Remove BUG_ON in xhci_get_input_control_ctx (Don Zickus) [895641]
-- [usb] xhci: Remove BUG_ON() in xhci_alloc_container_ctx (Don Zickus) [895641]
-- [usb] ehci-platform: add pre_setup() method to platform data (Don Zickus) [895641]
-- [usb] serial: add minor and port number (Don Zickus) [895641]
-- [usb] wusbcore: ignore HWA_NOTIF_BPST_ADJ notifications (Don Zickus) [895641]
-- [usb] wusbcore: add HWA-specific fields to usb_rpipe_descriptor (Don Zickus) [895641]
-- [usb] wusbhc: disable suspend and resume on the root hub (Don Zickus) [895641]
-- [usb] fix PTR_ERR translation in init_usb_class() (Don Zickus) [895641]
-- [usb] wusbcore: reduce keepalive threshold from timeout/2 to timeout/3 (Don Zickus) [895641]
-- [usb] host: make USB_ARCH_HAS_?HCI obsolete (Don Zickus) [895641]
-- [usb] ohci: remove bogus #error (Don Zickus) [895641]
-- [usb] add usb2 Link PM variables to sysfs and usb_device (Don Zickus) [895641]
-- [usb] xhci: add USB2 Link power management BESL support (Don Zickus) [895641]
-- [usb] xhci: define port register names and use them instead of magic numbers (Don Zickus) [895641]
-- [usb] xhci: check usb2 port capabilities before adding hw link PM support (Don Zickus) [895641]
-- [usb] xhci: unify parameter of xhci_msi_irq (Don Zickus) [895641]
-- [usb] xhci-dbg: Display endpoint number and direction in context dump (Don Zickus) [895641]
-- [usb] serial: pl2303 works at 500kbps (Don Zickus) [895641]
-- [usb] ohci: add a name for the platform-private field (Don Zickus) [895641]
-- [usb] ohci: make ohci-platform a separate driver (Don Zickus) [895641]
-- [usb] misc/usb3503: Remove 100ms sleep on reset, conform to data sheet (Don Zickus) [895641]
-- [usb] misc/usb3503: Fix up whitespace (Don Zickus) [895641]
-- [usb] Allow the USB HCD to create Wireless USB root hubs (Don Zickus) [895641]
-- [usb] serial: add support Infineon modem USB flashloader driver (Don Zickus) [895641]
-- [usb] ohci: make ohci-pci a separate driver (Don Zickus) [895641]
-- [usb] ohci: Generic changes to make ohci-pci a separate driver (Don Zickus) [895641]
-- [usb] ohci: prepare to make ohci-hcd a library module (Don Zickus) [895641]
-- [usb] fhci: upgrade the isochronous API (Don Zickus) [895641]
-- [usb] imx21: upgrade the isochronous API (Don Zickus) [895641]
-- [usb] serial: dump small buffers with help of *ph (Don Zickus) [895641]
-- [usb] host: remove leftover release_mem_region (Don Zickus) [895641]
-- [usb] misc/usb3503: Adding device tree entry 'disabled-ports' (Don Zickus) [895641]
-- [usb] misc/usb3503: Add to select the ports to disable (Don Zickus) [895641]
-- [usb] ehci: Only sleep for post-resume handover if devices use persist (Don Zickus) [895641]
-- [usb] message: Fixed parenthesis error in sizeof function (Don Zickus) [895641]
-- [usb] message: fixed error 'no space before bracket' (Don Zickus) [895641]
-- [usb] devio: fixed error 'do not use assignment in if condition' (Don Zickus) [895641]
-- [usb] devio: Fixed macro parenthesis error (Don Zickus) [895641]
-- [usb] devio: fixed warning 'use <linux/uacces.h> instead <asm/uacces.h>' (Don Zickus) [895641]
-- [usb] usbtmc: Change magic number to constant (Don Zickus) [895641]
-- [usb] usbtmc: usbtmc_read sends multiple TMC header based on rigol_quirk (Don Zickus) [895641]
-- [usb] usbtmc: Set rigol_quirk if device is listed (Don Zickus) [895641]
-- [usb] usbtmc: TMC request code segregated from usbtmc_read (Don Zickus) [895641]
-- [usb] usbtmc: Add flag rigol_quirk to usbtmc_device_data (Don Zickus) [895641]
-- [usb] storage/alauda: initialize variables directly (Don Zickus) [895641]
-- [usb] storage/sddr09: initialize variables directly (Don Zickus) [895641]
-- [usb] fsl: add missing platform_driver owner (Don Zickus) [895641]
-- [usb] quatech2: Staticize local symbol (Don Zickus) [895641]
-- [usb] misc: Fixed assignment error in if statement (Don Zickus) [895641]
-- [usb] misc: Added space after closing brace in adutux.c (Don Zickus) [895641]
-- [usb] misc: Added space after comma in adutux.c (Don Zickus) [895641]
-- [usb] misc: Reformatted pointer variables in adutux.c (Don Zickus) [895641]
-- [usb] misc: Removed space before tabs in adutux.c (Don Zickus) [895641]
-- [usb] misc: Replaced deprecated preprocessor in adutux.c (Don Zickus) [895641]
-- [fs] nfsd: fix discarded security labels on setattr (J. Bruce Fields) [1025832]
-- [fs] nfs: fix inverted test for delegation in nfs4_reclaim_open_state (Jeff Layton) [1025457]
-- [x86] kdump: crashkernel=X try to reserve below 896M first, then try below 4G, then MAXMEM (Chao WANG) [994685]
-- [kernel] audit: format user messages to size of MAX_AUDIT_MESSAGE_LENGTH (Richard Guy Briggs) [1019913]
-- [kernel] audit_alloc: clear TIF_SYSCALL_AUDIT if !audit_context (Richard Guy Briggs) [1026043]
-
-* Fri Nov 08 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-48.el7]
-- [ethernet] qlcnic: Update version to 5.3.48 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Implement ndo_get_phys_port_id for 82xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enable diagnostic test for multiple Tx queues (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enable Tx queue changes using ethtool for 82xx Series adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Multi Tx queue support for 82xx Series adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.3.47 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add support for 84xx adapters to load firmware from file (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Loopback Inter Driver Communication AEN handler (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add PVID support for 84xx adapters (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enable support for 844X adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.2.46 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Dump mailbox command data when a command times out (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix driver initialization for 83xx adapters (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Flush mailbox command list when mailbox is not available (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Reinitialize mailbox data structures after firmware reset (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix diagnostic interrupt test for 83xx adapters (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix beacon state return status handling (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix set driver version command (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix for flash update failure on 83xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix link speed and duplex display for 83xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix link speed display for 82xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix external loopback test (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Removed adapter series name from warning messages (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Free up memory in error path (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix ingress MAC learning (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix MAC address filter issue on 82xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.2.45 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enable mailbox interface in poll mode when interrupts are not available (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Replace poll mode mailbox interface with interrupt based mailbox interface (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Interrupt based driver firmware mailbox mechanism (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enhance diagnostic loopback error codes (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix diagnostic interrupt test for 83xx adapters (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix setting Guest VLAN (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix operation type and command type (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix initialization of work function (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix guest VLAN (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix releasing of Tx frag which was never mapped (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix dump template version mask (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix ethtool display for 83xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix panic while setting VF's MAC address (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix multicast packet handling for PF and VF (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix NULL pointer dereference in VF probe path (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Set __QLCNIC_DEV_UP in adapter state before enabling interrupts (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix invalid register offset calculation (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.2.44 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add support for 83xx suspend and resume (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add support for 'set driver version' in 83XX (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Cleanup of structure qlcnic_hardware_context (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add support for PEX DMA method to read memory section of adapter dump (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Minimize sleep duration within loopback diagnostic test (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Secondary unicast MAC address support (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Handle qlcnic_alloc_mbx_args() failure (Chad Dupuis) [725018]
-- [ethernet] qlcnic: replace strict_strtoul() with kstrtoul() (Chad Dupuis) [725018]
-- [ethernet] qlcnic: remove redundant D0 power state set (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix typo in printk (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.2.43 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enhance virtual NIC logging (Chad Dupuis) [725018]
-- [ethernet] qlcnic: qlcnic_get_board_name() function cleanup (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Implement GET_LED_STATUS command for 82xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: modify reset recovery path in diag mode (Chad Dupuis) [725018]
-- [ethernet] qlcnic: diagnostics routine changes (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Convert nested if-else to switch-case (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Initialize trans_work and idc_aen_work at VF probe (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Remove qlcnic_config_npars module parameter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update IRQ name for 8200 and 8300 Series adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Disable INT-x interrupt for 83xx on driver unload (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Support spoof check config (Chad Dupuis) [725018]
-- [x86] Fix x86 invalid cpu boot failure message (Prarit Bhargava) [1024731]
-- [virt] virtio-net: refill only when device is up during setting queues (Jason Wang) [1016469]
-- [crypto] crc-t10dif: add MODULE_SOFTDEP (Kyle McMartin) [968869]
-- [crypto] crct10dif: Add fallback for broken initrds (Kyle McMartin) [968869]
-- [crypto] crct10dif: Use PTR_RET (Kyle McMartin) [968869]
-- [crypto] crct10dif: Simple correctness and speed test for CRCT10DIF hash (Kyle McMartin) [968869]
-- [crypto] crct10dif: Glue code to cast accelerated CRCT10DIF assembly as a crypto transform (Kyle McMartin) [968869]
-- [crypto] crct10dif: Accelerated CRC T10 DIF computation with PCLMULQDQ instruction (Kyle McMartin) [968869]
-- [crypto] crct10dif: Wrap crc_t10dif function all to use crypto transform framework (Kyle McMartin) [968869]
-- [kernel] modules: add support for soft module dependencies (Kyle McMartin) [968869]
-- [misc] mei: don't get stuck in select during reset (Prarit Bhargava) [1025420]
-- [misc] mei/bus: do not overflow the device name buffer (Prarit Bhargava) [1025420]
-- [misc] mei: wake also writers on reset (Prarit Bhargava) [1025420]
-- [misc] mei/hbm: fix typo in error message (Prarit Bhargava) [1025420]
-- [misc] mei: check whether hw start has succeeded (Prarit Bhargava) [1025420]
-- [misc] mei: check if the hardware reset succeeded (Prarit Bhargava) [1025420]
-- [misc] mei: mei_cl_connect, don't multiply the timeout twice (Prarit Bhargava) [1025420]
-- [misc] mei: do not override a client writing state when buffering (Prarit Bhargava) [1025420]
-- [misc] mei: move mei_cl_irq_write_complete to client.c (Prarit Bhargava) [1025420]
-- [misc] mei: support HBM versioning (Prarit Bhargava) [1025420]
-- [nfc] mei_phy: Clean up file (Prarit Bhargava) [1025420]
-- [misc] mei: move mei_cl_complete to client.c (Prarit Bhargava) [1025420]
-- [misc] mei: revamp interrupt thread handlers (Prarit Bhargava) [1025420]
-- [virt] virtio-net: correctly handle cpu hotplug notifier during resuming (Jason Wang) [1016996]
-- [virt] virtio-net: don't respond to cpu hotplug notifier if we're not ready (Jason Wang) [1016996]
-- [fs] nfs: fix handling of invalid mount options in nfs_remount (Jeff Layton) [1021538]
-- [fs] nfs: reject version and minorversion changes on remount attempts (Jeff Layton) [1021538]
-- [drm] qxl: avoid an oops in the deferred io code (Dave Airlie) [1003728 1026182]
-- [drm] qxl: fix disabling extra monitors from client (Dave Airlie) [1026182]
-- [drm] qxl: remove unnecessary check (Dave Airlie) [1026182]
-- [drm] qxl: prefer the monitor config resolution (Dave Airlie) [1026182]
-- [drm] copy mode type in drm_mode_connector_list_update() (Dave Airlie) [1026182]
-- [drm] qxl: notify that the monitor config changed (Dave Airlie) [1026182]
-- [drm] return if changed in drm_helper_hpd_irq_event() (Dave Airlie) [1026182]
-- [block] rsxx: Fix possible kernel panic with invalid config (Steve Best) [1024550]
-- [block] rsxx: Disallow discards from being unmapped (Steve Best) [1024550]
-- [virt] hid-hyperv: convert alloc+memcpy to memdup (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Increase the value of STORVSC_MAX_IO_REQUESTS (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Support FC devices (Jason Wang) [1026618]
-- [virt] hyperv: Add the GUID fot synthetic fibre channel device (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Implement multi-channel support (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Update the storage protocol to win8 level (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Increase the value of scsi timeout for storvsc devices (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: Terminate vmbus version negotiation on timeout (Jason Wang) [1026618]
-- [virt] hv_util: Correctly support ws2008R2 and earlier (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: Do not attempt to negoatiate a new version prematurely (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: Fix a bug in the handling of channel offers (Jason Wang) [1026618]
-- [virt] hyperv: remove HV_DRV_VERSION (Jason Wang) [1026618]
-- [virt] hv_balloon: Initialize the transaction ID just before sending the packet (Jason Wang) [1026618]
-- [virt] hv_util: Fix a bug in version negotiation code for util services (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: incorrect device name is printed when child device is unregistered (Jason Wang) [1026618]
-- [virt] hyperv: allocate synic structures before hv_synic_init() (Jason Wang) [1026618]
-- [virt] hyperv: check interrupt mask before read_index (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: Implement multi-channel support (Jason Wang) [1026618]
-
-* Thu Nov 07 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-47.el7]
-- [net] bridge: pass correct vlan id to multicast code (Vlad Yasevich) [912737]
-- [net] bridge: Fix updating FDB entries when the PVID is applied (Vlad Yasevich) [912737]
-- [net] bridge: Fix the way the PVID is referenced (Vlad Yasevich) [912737]
-- [net] bridge: Apply the PVID to priority-tagged frames (Vlad Yasevich) [912737]
-- [net] bridge: Don't use VID 0 and 4095 in vlan filtering (Vlad Yasevich) [912737]
-- [net] bridge: Correctly clamp MAX forward_delay when enabling STP (Vlad Yasevich) [997814]
-- [net] bridge: Clamp forward_delay when enabling STP (Vlad Yasevich) [997814]
-- [net] ipv6: mld: introduce mld_{gq, ifc, dad}_stop_timer functions (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: refactor query processing into v1/v2 functions (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: similarly to MLDv2 have min max_delay of 1 (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: implement RFC3810 MLDv2 mode only (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: get rid of MLDV2_MRC and simplify calculation (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: clean up MLD_V1_SEEN macro (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: fix v1/v2 switchback timeout to rfc3810, 9.12. (Daniel Borkmann) [1023947]
-- [net] ipv6: mcast: use defines for rfc3810/8.1 lengths (Daniel Borkmann) [1023947]
-- [net] ipv6: *_start_timer: rather use unsigned long (Daniel Borkmann) [1023947]
-- [net] ipv6: igmp6_event_query: use msecs_to_jiffies (Daniel Borkmann) [1023947]
-- [net] ipv6: make unsolicited report intervals configurable for mld (Daniel Borkmann) [1023947]
-- [net] ipv4, ipv6: send igmpv3/mld packets with TC_PRIO_CONTROL (Daniel Borkmann) [1023947]
-- [net] bridge: disable snooping if there is no querier (Vlad Yasevich) [1019950]
-- [net] unix: inherit SOCK_PASS{CRED, SEC} flags from socket to fix race (Daniel Borkmann) [1023964]
-
-* Thu Nov 07 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-46.el7]
-- [scsi] aacraid: missing capable() check in compat ioctl (Rich Bono) [1025840]
-- [scsi] scsi_dh_rdac: Add new IBM 1813 product id to rdac devlist (Rob Evers) [1020969]
-- [scsi] aic94xx: remove driver (Rich Bono) [978980]
-- [scsi] qla4xxx: Populate local CHAP credentials for flash target sessions (Chad Dupuis) [1006158]
-- [scsi] qla4xxx: Support setting of local CHAP index for flash target entry (Chad Dupuis) [1006158]
-- [scsi] qla4xxx: Correct the check for local CHAP entry type (Chad Dupuis) [1006158]
-- [scsi] qla4xxx: correctly update session discovery_parent_idx (Chad Dupuis) [1020197]
-- [scsi] aacraid: avoid parsing names as kthread_run() format strings (Rich Bono) [752081]
-- [scsi] hpsa: return 0 from driver probe function on success, not 1 (Tomas Henzl) [862713]
-- [scsi] hpsa: remove unused Smart Array ID (Tomas Henzl) [862713]
-- [scsi] hpsa: bump driver version to reflect changes (Tomas Henzl) [862713]
-- [scsi] hpsa: housekeeping patch for device_id and product arrays (Tomas Henzl) [862713]
-- [scsi] hpsa: add HP Smart Array Gen8 names (Tomas Henzl) [862713]
-- [scsi] hpsa: add HP Smart Array Gen9 PCI ID's (Tomas Henzl) [862713]
-- [treewide] Convert retrun typos to return (Tomas Henzl) [862713]
-- [scsi] hpsa: fix warning with smp_processor_id() in preemptible (Tomas Henzl) [862713]
-- [scsi] hpsa: remove unneeded variable (Tomas Henzl) [862713]
-- [scsi] hpsa: fix a race in cmd_free/scsi_done (Tomas Henzl) [862713]
-
-* Thu Nov 07 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-45.el7]
-- [ethernet] tg3: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1024060]
-- [ethernet] tg3: Miscellaneous conversions to ETH_ALEN (Ivan Vecera) [1024060]
-- [ethernet] tg3: use phylib when robo switch is in use (Ivan Vecera) [1024060]
-- [netdrv] ssb: provide phy address for Gigabit Ethernet driver (Ivan Vecera) [1024060]
-- [ethernet] tg3: add support a phy at an address different than 01 (Ivan Vecera) [1024060]
-- [ethernet] tg3: Update version to 3.134 (Ivan Vecera) [1024060]
-- [ethernet] tg3: Remove unnecessary spinlock (Ivan Vecera) [1024060]
-- [ethernet] tg3: Appropriately classify interrupts during request_irq (Ivan Vecera) [1024060]
-- [ethernet] tg3: Remove redundant if check (Ivan Vecera) [1024060]
-- [ethernet] tg3: Remove if 0'd code (Ivan Vecera) [1024060]
-- [ethernet] tg3: LED in shared mode does not blink during traffic (Ivan Vecera) [1024060]
-- [ethernet] tg3: Add support for new 577xx device ids (Ivan Vecera) [1024060]
-- [ethernet] tg3: Add function tg3_phy_shdw_write() (Ivan Vecera) [1024060]
-- [ethernet] tg3: Use pci_dev pm_cap (Ivan Vecera) [1024060]
-- [ethernet] tg3: Expand led off fix to include 5720 (Ivan Vecera) [1024060]
-- [s390] cio: Introduce on-close CHSC IOCTLs (Hendrik Brueckner) [1022446]
-- [s390] cio: Make /dev/chsc a single-open device (Hendrik Brueckner) [1022442]
-- [s390] cio: Introduce generic synchronous CHSC IOCTL (Hendrik Brueckner) [1022441]
-- [s390] sclp: Add SCLP character device driver (Hendrik Brueckner) [1022425]
-- [virt] kvm: Create non-coherent DMA registeration (Alex Williamson) [1025470]
-- [virt] kvm: Convert iommu_flags to iommu_noncoherent (Alex Williamson) [1025470]
-- [virt] kvm: Add VFIO device (Alex Williamson) [1025470]
-- [vfio] vfio_iommu_type1: fix bug caused by break in nested loop (Alex Williamson) [1025468]
-- [vfio] fix documentation more (Alex Williamson) [1025468]
-- [vfio] vfio-pci: PCI hot reset interface (Alex Williamson) [1025468]
-- [vfio] vfio-pci: Test for extended config space (Alex Williamson) [1025468]
-- [vfio] vfio-pci: Use fdget() rather than eventfd_fget() (Alex Williamson) [1025468]
-- [vfio] Add O_CLOEXEC flag to vfio device fd (Alex Williamson) [1025468]
-- [vfio] use get_unused_fd_flags(0) instead of get_unused_fd() (Alex Williamson) [1025468]
-- [vfio] add external user support (Alex Williamson) [1025468]
-- [vfio] fix documentation (Alex Williamson) [1025468]
-- [block] blk-throttle: Enable hierarchy even when sane mount flag is not specified (Vivek Goyal) [1015648]
-- [block] blk-throttle: implement proper hierarchy support (Vivek Goyal) [1015648]
-- [block] blk-throttle: implement throtl_grp->has_rules[] (Vivek Goyal) [1015648]
-- [block] blk-throttle: Account for child group's start time in parent while bio climbs up (Vivek Goyal) [1015648]
-- [block] blk-throttle: add throtl_qnode for dispatch fairness (Vivek Goyal) [1015648]
-- [block] blk-throttle: make throtl_pending_timer_fn() ready for hierarchy (Vivek Goyal) [1015648]
-- [block] blk-throttle: make tg_dispatch_one_bio() ready for hierarchy (Vivek Goyal) [1015648]
-- [block] blk-throttle: make blk_throtl_bio() ready for hierarchy (Vivek Goyal) [1015648]
-- [block] blk-throttle: make blk_throtl_drain() ready for hierarchy (Vivek Goyal) [1015648]
-- [block] blk-throttle: dispatch from throtl_pending_timer_fn() (Vivek Goyal) [1015648]
-- [block] blk-throttle: implement dispatch looping (Vivek Goyal) [1015648]
-- [block] blk-throttle: separate out throtl_service_queue->pending_timer from throtl_data->dispatch_work (Vivek Goyal) [1015648]
-- [block] blk-throttle: set REQ_THROTTLED from throtl_charge_bio() and gate stats update with it (Vivek Goyal) [1015648]
-- [block] blk-throttle: move bio_lists[], implement sq_to_tg(), sq_to_td() and throtl_log() (Vivek Goyal) [1015648]
-- [block] blk-throttle: add throtl_service_queue->parent_sq (Vivek Goyal) [1015648]
-- [block] blk-throttle: generalize update_disptime optimization in blk_throtl_bio() (Vivek Goyal) [1015648]
-- [block] blk-throttle: move bio_lists[] blk-throttle: dispatch to throtl_data->service_queue.bio_lists[] (Vivek Goyal) [1015648]
-- [block] blk-throttle: move bio_lists[] and friends to throtl_service_queue (Vivek Goyal) [1015648]
-- [block] blk-throttle: add throtl_grp->service_queue (Vivek Goyal) [1015648]
-- [block] blk-throttle: reorganize throtl_service_queue passed around as argument (Vivek Goyal) [1015648]
-- [block] blk-throttle: pass around throtl_service_queue instead of throtl_data (Vivek Goyal) [1015648]
-- [block] blk-throttle: add backlink pointer from throtl_grp to throtl_data (Vivek Goyal) [1015648]
-- [block] blk-throttle: simplify throtl_grp flag handling (Vivek Goyal) [1015648]
-- [block] blk-throttle: rename throtl_rb_root to throtl_service_queue (Vivek Goyal) [1015648]
-- [block] blk-throttle: remove pointless throtl_nr_queued() optimizations (Vivek Goyal) [1015648]
-- [block] blk-throttle: relocate throtl_schedule_delayed_work() (Vivek Goyal) [1015648]
-- [block] blk-throttle: collapse throtl_dispatch() into the work function (Vivek Goyal) [1015648]
-- [block] blk-throttle: remove deferred config application mechanism (Vivek Goyal) [1015648]
-- [block] blk-throttle: remove spurious throtl_enqueue_tg() call from throtl_select_dispatch() (Vivek Goyal) [1015648]
-- [block] blkcg: move bulk of blkcg_gq release operations to the RCU callback (Vivek Goyal) [1015648]
-- [block] blkcg: invoke blkcg_policy->pd_init() after parent is linked (Vivek Goyal) [1015648]
-- [block] blkcg: implement blkg_for_each_descendant_post() (Vivek Goyal) [1015648]
-- [block] blkcg: move blkg_for_each_descendant_pre() to block/blk-cgroup.h (Vivek Goyal) [1015648]
-- [block] blkcg: fix error return path in blkg_create() (Vivek Goyal) [1015648]
-- [char] ipmi: Add MODULE_ALIAS for autoloading ipmi driver on ACPI systems (Shyam Iyer) [844867]
-
-* Wed Nov 06 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-44.el7]
-- [security] keys: Fix UID check in keyctl_get_persistent() (David Howells) [991110]
-- [security] keys: fix error return code in big_key_instantiate() (David Howells) [991110]
-- [powerpc] tm: Switch out userspace PPR and DSCR sooner (Steve Best) [1016823]
-- [virt] kvm: fix KVM_SET_XCRS loop (Paolo Bonzini) [1007897]
-- [virt] kvm: fix KVM_SET_XCRS for CPUs that do not support XSAVE (Paolo Bonzini) [1007897]
-- [virt] kvm: only copy XSAVE state for the supported features (Paolo Bonzini) [1007897]
-- [virt] kvm: prevent setting unsupported XSAVE states (Paolo Bonzini) [1007897]
-- [virt] kvm: mask unsupported XSAVE entries from leaf 0Dh index 0 (Paolo Bonzini) [1007897]
-- [ethernet] bnx2x: remove unnecessary pci_set_drvdata() (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Add ndo_get_phys_port_id support (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Change variable type to bool (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: skb_is_gso_v6() requires skb_is_gso() (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: use pcie_get_minimum_link() (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Add support for EXTPHY2 LED mode (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Change function prototype (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Don't disable/enable SR-IOV when loading (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Correct VF driver info (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Test nvram when interface is down (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Staticize local symbols (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Disable VF access on PF removal (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: prevent FW assert on low mem during unload (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Set NETIF_F_HIGHDMA unconditionally (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Don't pretend during register dump (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Lock DMAE when used by statistic flow (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Prevent null pointer dereference on error flow (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix config when SR-IOV and iSCSI are enabled (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix Coalescing configuration (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Unlock VF-PF channel on MAC/VLAN config error (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Prevent an illegal pointer dereference during panic (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix Maximum CoS estimation for VFs (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: record rx queue for LRO packets (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: handle known but unsupported VF messages (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: prevent masked MCP parities from appearing (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: prevent masking error from cnic (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: add missing VF resource allocation during init (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix support for VFs on some PFs (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Prevent mistaken hangup between driver & FW (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix 848xx duplex settings (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Specific Active-DAC is not detected on 57810 (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: 57840 non-external loopback test fail on 1G (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: KR2 disablement fix (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Generalize KR work-around (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix bnx2i and bnx2fc regressions (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Use pci_dev pm_cap (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: avoid atomic allocations during initialization (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix configuration of doorbell block (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Restore a call to config_init (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: fix broken compilation with CONFIG_BNX2X_SRIOV is not set (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Add missing braces in bnx2x:bnx2x_link_initialize (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: VF RSS support - VF side (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: VF RSS support - PF side (Michal Schmidt) [1022068]
-- [virt] hyperv-fb: add pci stub (Gerd Hoffmann) [1019185]
-- [ethernet] ixgbevf: move API neg to reset path (Andy Gospodarek) [1023107]
-- [ethernet] bna: firmware update to 3.2.1.1 (Ivan Vecera) [1007080]
-- [fs] nfs: Fix a missing initialisation when reading the SELinux label (Jeff Layton) [1019591]
-- [fs] nfs: fix oops when trying to set SELinux label (Jeff Layton) [1019591]
-- [ethernet] r8169: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1025463]
-- [ethernet] r8169: fix invalid register dump (Ivan Vecera) [1025463]
-- [ethernet] r8169: remember WOL preferences on driver load (Ivan Vecera) [1025463]
-- [ethernet] r8169, sis190: remove unnecessary length check (Ivan Vecera) [1025463]
-- [ethernet] r8169: remove "PHY reset until link up" log spam (Ivan Vecera) [1025463]
-- [ethernet] r8169: fix lockdep warning when removing interface (Ivan Vecera) [1025463]
-- [ethernet] r8169: add a new chip for RTL8411 (Ivan Vecera) [1025463]
-- [ethernet] be2net: Make lancer_wait_ready() static (Ivan Vecera) [1025412]
-- [ethernet] be2net: Remove interface type (Ivan Vecera) [1025412]
-- [ethernet] be2net: add support for ndo_busy_poll (Ivan Vecera) [1025412]
-- [ethernet] be2net: Warn users of possible broken functionality on BE2 cards with very old FW versions with latest driver (Ivan Vecera) [1025412]
-- [ethernet] be2net: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1025412]
-- [ethernet] be2net: Rework PCIe error report log messaging (Ivan Vecera) [1025412]
-- [ethernet] be2net: change the driver version number to 4.9.224.0 (Ivan Vecera) [1025412]
-- [ethernet] be2net: Display RoCE specific counters in ethtool -S (Ivan Vecera) [1025412]
-- [ethernet] be2net: Call version 2 of GET_STATS ioctl for Skyhawk-R (Ivan Vecera) [1025412]
-- [ethernet] be2net: add a counter for pkts dropped in xmit path (Ivan Vecera) [1025412]
-- [ethernet] be2net: fix adaptive interrupt coalescing (Ivan Vecera) [1025412]
-- [ethernet] be2net: call ENABLE_VF cmd for Skyhawk-R too (Ivan Vecera) [1025412]
-- [ethernet] be2net: Create single TXQ on BE3-R 1G ports (Ivan Vecera) [1025412]
-- [ethernet] be2net: pass if_id for v1 and V2 versions of TX_CREATE cmd (Ivan Vecera) [1025412]
-- [ethernet] be2net: Call be_vf_setup() even when VFs are enbaled from previous load (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix to display the VLAN priority for a VF (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix to configure VLAN priority for a VF interface (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix to allow VLAN configuration on VF interfaces (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix number of VLANs supported in UMC mode for BE3-R (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix VLAN promiscuous mode programming (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix the size of be_nic_res_desc structure (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix to prevent Tx stall on SH-R when packet size < 32 (Ivan Vecera) [1025412]
-- [ethernet] be2net: Remove extern from function prototypes (Ivan Vecera) [1025412]
-- [ethernet] be2net: missing variable initialization (Ivan Vecera) [1025412]
-- [drm] cirrus: do not attempt to acquire a reservation while in an interrupt handler (Gerd Hoffmann) [1017433]
-- [drm] cirrus: Invalidate page tables when pinning a BO (Gerd Hoffmann) [1017433]
-- [virt] kvm: introduce guest count uevent (Paolo Bonzini) [1004799]
-- [ata] libahci: fix turning on LEDs in ahci_start_port() (David Milburn) [1024388]
-- [kernel] audit: do not reject all AUDIT_INODE filter types (Richard Guy Briggs) [985971]
-- [fs] fuse: drop dentry on failed revalidate (Brian Foster) [1006514]
-- [fs] fuse: clean up return in fuse_dentry_revalidate() (Brian Foster) [1006514]
-- [fs] fuse: use d_materialise_unique() (Brian Foster) [1006514]
-- [fs] sysfs: use check_submounts_and_drop() (Brian Foster) [1006514]
-- [fs] nfs: use check_submounts_and_drop() (Brian Foster) [1006514]
-- [fs] gfs2: use check_submounts_and_drop() (Brian Foster) [1006514]
-- [fs] vfs: check unlinked ancestors before mount (Brian Foster) [1006514]
-- [fs] vfs: check submounts and drop atomically (Brian Foster) [1006514]
-- [fs] vfs: add d_walk() (Brian Foster) [1006514]
-- [fs] vfs: restructure d_genocide() (Brian Foster) [1006514]
-- [powerpc] Only save/restore SDR1 if in hypervisor mode (Steve Best) [1018639]
-- [wireless] brcmsmac: Further reduce log spam from tx phy messages (John Green) [974223]
-- [wireless] brcmsmac: Reduce log spam in heavy tx, make err print in debug (John Green) [974223]
-
-* Wed Nov 06 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-43.el7]
-- [misc] synchronize with upstream linux-3.10.y stable branch up to 3.10.17 (Veaceslav Falico) [1006938]
-
-* Tue Nov 05 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-42.el7]
-- [kernel] keys: align system_certificate_list (Jan Stancek) [985961]
-- [security] keys: Fix keyring quota misaccounting on key replacement and unlink (David Howells) [1017806 991110]
-- [security] keys: Fix a race between negating a key and reading the error set (David Howells) [991110]
-- [security] keys: Make BIG_KEYS boolean (David Howells) [991110]
-- [crypto] x.509: remove possible code fragility, enumeration values not handled (David Howells) [985961]
-- [crypto] x.509: add module description and license (David Howells) [985961]
-- [lib] mpi: add module description and license (David Howells) [985961]
-- [security] keys: initialize root uid and session keyrings early (David Howells) [985961]
-- [crypto] keys: verify a certificate is signed by a 'trusted' key (David Howells) [985961]
-- [kernel] keys: Make the system 'trusted' keyring viewable by userspace (David Howells) [985961]
-- [crypto] keys: Set the asymmetric-key type default search method (David Howells) [985961]
-- [security] keys: Add a 'trusted' flag and a 'trusted only' flag (David Howells) [985961]
-- [kernel] keys: Separate the kernel signature checking keyring from module signing (David Howells) [985961]
-- [kernel] keys: Have make canonicalise the paths of the X.509 certs better to deduplicate (David Howells) [985961]
-- [kernel] modsign: Load *.x509 files into kernel keyring (David Howells) [985961]
-- [crypto] x.509: Remove certificate date checks (David Howells) [985961]
-- [crypto] x.509: Handle certificates that lack an authorityKeyIdentifier field (David Howells) [985961]
-- [crypto] x.509: Check the algorithm IDs obtained from parsing an X.509 certificate (David Howells) [985961]
-- [crypto] x.509: Embed public_key_signature struct and create filler function (David Howells) [985961]
-- [crypto] x.509: struct x509_certificate needs struct tm declaring (David Howells) [985961]
-- [crypto] keys: Store public key algo ID in public_key_signature struct (David Howells) [985961]
-- [crypto] keys: Split public_key_verify_signature() and make available (David Howells) [985961]
-- [crypto] keys: Store public key algo ID in public_key struct (David Howells) [985961]
-- [crypto] keys: Move the algorithm pointer array from x509 to public_key.c (David Howells) [985961]
-- [crypto] keys: Rename public key parameter name arrays (David Howells) [985961]
-- [security] keys: Add per-user_namespace registers for persistent per-UID kerberos caches (David Howells) [991110]
-- [security] keys: Implement a big key type that can save to tmpfs (David Howells) [991110]
-- [security] keys: Expand the capacity of a keyring (David Howells) [1014573 985961]
-- [lib] assoc_array: Add a generic associative array implementation (David Howells) [1014573 985961]
-- [security] keys: Drop the permissions argument from __keyring_search_one() (David Howells) [1014573 985961]
-- [security] keys: Define a __key_get() wrapper to use rather than atomic_inc() (David Howells) [1014573 985961]
-- [security] keys: Search for auth-key by name rather than target key ID (David Howells) [1014573 985961]
-- [security] keys: Introduce a search context structure (David Howells) [1014573 985961]
-- [security] keys: Consolidate the concept of an 'index key' for key access (David Howells) [1014573 985961]
-- [security] keys: key_is_dead() should take a const key pointer argument (David Howells) [1014573 985961]
-- [security] keys: Use bool in make_key_ref() and is_key_possessed() (David Howells) [1014573 985961]
-- [security] keys: Skip key state checks when checking for possession (David Howells) [1014573 985961 991110]
-
-* Fri Nov 01 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-41.el7]
-- [net] bonding: ensure that TLB mode's active slave has correct mac filter (Veaceslav Falico) [1017573]
-- [net] netfilter: synproxy: fix BUG_ON triggered by corrupt TCP packets (Jesper Brouer) [1015035]
-- [net] proc_fs: print UIDs as unsigned int (Francesco Fusco) [996122]
-- [net] ipv6: Unify {raw,udp}6_sock_seq_show (Francesco Fusco) [996122]
-- [scsi] qla4xxx: Fix memory leak in func qla4_84xx_config_acb() (Chad Dupuis) [998557]
-- [scsi] qla4xxx: 5.04.00.00.07.00-k0 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Update driver version to 5.04.00-k1 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Return error if minidump data collection fails (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Fix the minidump data collection check in for loop (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Add pex-dma support for capturing minidump (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Update driver version to 5.04.00-k0 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Update Copyright header (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Implementation of ACB configuration during Loopback for ISP8042 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Added support for ISP8042 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Update driver version to 5.03.00-k11 (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Export more firmware info in sysfs (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Only BIOS boot target entries should be at index 0 and 1 (Chad Dupuis) [948123]
-- [scsi] qla4xxx: discovery_parent_idx can be shown without any check (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Set IPv6 traffic class if device type is IPv6 (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Use discovery_parent_idx instead of discovery_parent_type (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Allow removal of failed session using logout (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Update driver version to 5.03.00-k10 (Chad Dupuis) [948118]
-- [scsi] qla4xxx: Exporting new attrs for iscsi session and connection in sysfs (Chad Dupuis) [948118]
-- [scsi] libiscsi: Add missing prints for session and connection sysfs attrs (Chad Dupuis) [948118]
-- [scsi] libiscsi: Added new boot entries in the session sysfs (Chad Dupuis) [948118]
-- [fs] nfs: inform the VM about pages being committed or unstable (Jerome Marchand) [1009508]
-- [mm] vmscan: take page buffers dirty and locked state into account (Jerome Marchand) [1009508]
-- [mm] vmscan: treat pages marked for immediate reclaim as zone congestion (Jerome Marchand) [1009508]
-- [mm] vmscan: move direct reclaim wait_iff_congested into shrink_list (Jerome Marchand) [1009508]
-- [mm] vmscan: set zone flags before blocking (Jerome Marchand) [1009508]
-- [mm] vmscan: stall page reclaim after a list of pages have been processed (Jerome Marchand) [1009508]
-- [mm] vmscan: stall page reclaim and writeback pages based on dirty/writepage pages encountered (Jerome Marchand) [1009508]
-- [mm] vmscan: move logic from balance_pgdat() to kswapd_shrink_zone() (Jerome Marchand) [1009508]
-- [mm] vmscan: check if kswapd should writepage once per pgdat scan (Jerome Marchand) [1009508]
-- [mm] vmscan: block kswapd if it is encountering pages under writeback (Jerome Marchand) [1009508]
-- [mm] vmscan: have kswapd writeback pages based on dirty pages encountered, not priority (Jerome Marchand) [1009508]
-- [mm] vmscan: do not allow kswapd to scan at maximum priority (Jerome Marchand) [1009508]
-- [mm] vmscan: decide whether to compact the pgdat based on reclaim progress (Jerome Marchand) [1009508]
-- [mm] vmscan: flatten kswapd priority loop (Jerome Marchand) [1009508]
-- [mm] vmscan: obey proportional scanning requirements for kswapd (Jerome Marchand) [1009508]
-- [mm] vmscan: limit the number of pages kswapd reclaims at each priority (Jerome Marchand) [1009508]
-- [iommu] Remove stack trace from broken irq remapping warning (Neil Horman) [1012860]
-- [kernel] audit: remove newline accidentally added during session id helper refactor (Richard Guy Briggs) [1010438]
-- [security] audit: suppress stock memalloc failure warnings since already managed (Richard Guy Briggs) [1016852]
-- [kernel] ntp: Make periodic RTC update more reliable (Prarit Bhargava) [1010351]
-
-* Wed Oct 30 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-40.el7]
-- [virt] kvm/ppc/Book3S: Fix compile error in XICS emulation (Veaceslav Falico) [1006938]
-- [block] rsxx: fix Kernel Panic caused by mapping Discards (Steve Best) [1013995]
-- [block] rsxx: Moving pci_map_page to prevent overflow (Steve Best) [1011024]
-- [block] rsxx: Handling failed pci_map_page on PowerPC and double free (Steve Best) [1011024]
-- [block] rsxx: Adding in debugfs entries (Steve Best) [1002025]
-- [block] rsxx: Fixes incorrect stats calculation (Steve Best) [1002025]
-- [block] rsxx: Adding EEH check inside cregs timeout (Steve Best) [1002025]
-- [block] rsxx: Adapter address space sanity check (Steve Best) [1002025]
-- [block] rsxx: Fixes DLPAR add kernel panic if partition still mounted (Steve Best) [1002025]
-- [block] rsxx: Changing the adapter name to the official name (Steve Best) [1002025]
-- [block] rsxx: Adding in sync_start module paramenter (Steve Best) [1002025]
-- [block] rsxx: Allow block size to be determined by configuration (Steve Best) [1002025]
-- [block] rsxx: Fixes soft-lockup issues during DMAs (Steve Best) [1002025]
-- [block] rsxx: Restructured DMA cancel scheme (Steve Best) [1002025]
-- [block] rsxx: Individual workqueues for interruptible events (Steve Best) [1002025]
-- [md] Fix skipping recovery for read-only arrays (Jes Sorensen) [1016694]
-- [kernel] nohz: Include local CPU in full dynticks global kick (Jarod Wilson) [988015]
-- [kernel] nohz: Optimize full dynticks's sched hooks with static keys (Jarod Wilson) [988015]
-- [kernel] nohz: Optimize full dynticks state checks with static keys (Jarod Wilson) [988015]
-- [kernel] nohz: Rename a few state variables (Jarod Wilson) [988015]
-- [kernel] vtime: Always debug check snapshot source _before_ updating it (Jarod Wilson) [988015]
-- [kernel] vtime: Always scale generic vtime accounting results (Jarod Wilson) [988015]
-- [kernel] vtime: Optimize full dynticks accounting off case with static keys (Jarod Wilson) [988015]
-- [kernel] vtime: Describe overriden functions in dedicated arch headers (Jarod Wilson) [988015]
-- [kernel] hardirq: Split preempt count mask definitions (Jarod Wilson) [988015]
-- [kernel] context_tracking: Split low level state headers (Jarod Wilson) [988015]
-- [kernel] vtime: Fix racy cputime delta update (Jarod Wilson) [988015]
-- [kernel] vtime: Remove a few unneeded generic vtime state checks (Jarod Wilson) [988015]
-- [kernel] context_tracking: User/kernel broundary cross trace events (Jarod Wilson) [988015]
-- [kernel] context_tracking: Optimize context switch off case with static keys (Jarod Wilson) [988015]
-- [kernel] context_tracking: Optimize guest APIs off case with static key (Jarod Wilson) [988015]
-- [kernel] context_tracking: Optimize main APIs off case with static key (Jarod Wilson) [988015]
-- [kernel] context_tracking: Ground setup for static key use (Jarod Wilson) [988015]
-- [kernel] context_tracking: Remove full dynticks' hacky dependency on wide context tracking (Jarod Wilson) [988015]
-- [kernel] nohz: Only enable context tracking on full dynticks CPUs (Jarod Wilson) [988015]
-- [kernel] context_tracking: Fix runtime CPU off-case (Jarod Wilson) [988015]
-- [kernel] vtime: Update a few comments (Jarod Wilson) [988015]
-- [kernel] context_tracking: Fix guest accounting with native vtime (Jarod Wilson) [988015]
-- [kernel] sched: Consolidate open coded preemptible() checks (Jarod Wilson) [988015]
-- [kernel] nohz: fix compile warning in tick_nohz_init() (Jarod Wilson) [988015]
-- [kernel] nohz: Do not warn about unstable tsc unless user uses nohz_full (Jarod Wilson) [988015]
-- [kernel] nohz: Remove obsolete check for full dynticks CPUs to be RCU nocbs (Jarod Wilson) [988015]
-- [kernel] nohz: Warn if the machine can not perform nohz_full (Jarod Wilson) [988015]
-- [md] raid5: avoid finding "discard" stripe (Jes Sorensen) [1023485]
-- [md] raid5: set bio bi_vcnt 0 for discard request (Jes Sorensen) [1023485]
-- [powerpc] make lorax work again (Steve Best) [1022797]
-
-* Tue Oct 29 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-39.el7]
-- [netdrv] cnic: Fix crash in cnic_bnx2x_service_kcq() (Maurizio Lombardi) [1011203]
-- [scsi] bnx2fc: Bump version from 1.0.14 to 2.4.1 (Maurizio Lombardi) [1011211]
-- [scsi] bnx2fc: hung task timeout warning observed when rmmod bnx2x with active FCoE targets (Maurizio Lombardi) [1011211]
-- [scsi] bnx2fc: Fixed a SCSI CMD cmpl race condition between ABTS and CLEANUP (Maurizio Lombardi) [1011211]
-- [scsi] Allow error handling timeout to be specified (Ewan Milne) [1020944]
-- [scsi] be2iscsi: Bump driver version (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix SGL posting for unaligned ICD values (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix AER handling in driver (Rob Evers) [726165]
-- [scsi] be2iscsi: Invalidate WRB in Abort/Reset Path (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix Insufficient Buffer Error returned in MBX Completion (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix log level for protocol specific logs (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix MSIx creation for SKH-R adapter (Rob Evers) [726165]
-- [scsi] be2iscsi: Display Port Identifier for each iSCSI function (Rob Evers) [726165]
-- [scsi] be2iscsi: Dispaly CID available for connection offload (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix chute cleanup during drivers unload (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix connection offload to support Dual Chute (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix CID allocation/freeing to support Dual chute mode (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix WRB_Q posting to support Dual Chute mode (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix SGL Initilization and posting Pages for Dual Chute (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix Template HDR support for Dual Chute mode (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix changes in ASYNC Path for SKH-R adapter (Rob Evers) [726165]
-- [scsi] be2iscsi: Config parameters update for Dual Chute Support (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix soft lock up issue during UE or if FW taking time to respond (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix locking mechanism in Unsol Path (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix negotiated parameters upload to FW (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix repeated issue of MAC ADDR get IOCTL (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix the MCCQ count leakage (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix Template HDR IOCTL (Rob Evers) [726165]
-- [scsi] lpfc: Update lpfc version for 8.3.7.31.1p driver release (Rob Evers) [726157]
-- [scsi] lpfc: Fixed issue of task management commands having a fixed timeout (Rob Evers) [726157]
-- [scsi] lpfc: Fixed inconsistent spin lock usage (Rob Evers) [726157]
-- [scsi] lpfc: Fix driver's abort loop functionality to skip IOs already getting aborted (Rob Evers) [726157]
-- [scsi] lpfc: Fixed failure to allocate SCSI buffer on PPC64 platform for SLI4 devices (Rob Evers) [726157]
-- [scsi] lpfc: Fix WARN_ON when driver unloads (Rob Evers) [726157]
-- [scsi] lpfc: Avoided making pci bar ioremap call during dual-chute WQ/RQ pci bar selection (Rob Evers) [726157]
-- [scsi] lpfc: Fixed driver iocbq structure's iocb_flag field running out of space (Rob Evers) [726157]
-- [scsi] lpfc: Fix crash on driver load due to cpu affinity logic (Rob Evers) [726157]
-- [scsi] lpfc: Fixed logging format of setting driver sysfs attributes hard to interpret (Rob Evers) [726157]
-- [scsi] lpfc: Fixed back to back RSCNs discovery failure (Rob Evers) [726157]
-- [scsi] lpfc: Fixed race condition between BSG I/O dispatch and timeout handling (Rob Evers) [726157]
-- [scsi] lpfc: Fixed function mode field defined too small for not recognizing dual-chute mode (Rob Evers) [726157]
-- [scsi] lpfc: Back out data count, (residual fcfi_parm) fix for bad target (Rob Evers) [726157]
-- [scsi] lpfc: Fixed mailbox memory leak (Rob Evers) [726157]
-- [scsi] lpfc: Fix random errors using first burst (Rob Evers) [726157]
-- [scsi] lpfc: Fixed not able to log informational messages at early stage of driver init time (Rob Evers) [726157]
-- [scsi] lpfc: Fixed using unsafe linked list macro for walking and deleting linked list (Rob Evers) [726157]
-- [scsi] lpfc: Removed obsolete fcp_eq_count and fcp_wq_count driver attributes (Rob Evers) [726157]
-- [scsi] lpfc: Update copyrights for 8.3.41 modifications (Rob Evers) [726157]
-- [scsi] lpfc: Fixed the format of some log message fields (Rob Evers) [726157]
-- [scsi] lpfc: Add first burst support to driver (Rob Evers) [726157]
-- [scsi] lpfc: Fixed not able to perform PCI function reset when board was not in online mode (Rob Evers) [726157]
-- [scsi] lpfc: Fixed failure in setting SLI3 board mode (Rob Evers) [726157]
-- [scsi] lpfc: Fixed SLI3 failing FCP write on check-condition no-sense with residual zero (Rob Evers) [726157]
-- [scsi] lpfc: Fixed support for 128 byte WQEs (Rob Evers) [726157]
-- [scsi] lpfc: Ensure driver properly zeros unused fields in SLI4 mailbox commands (Rob Evers) [726157]
-- [scsi] lpfc: Fixed max value of lpfc_lun_queue_depth (Rob Evers) [726157]
-- [scsi] lpfc: Fixed Receive Queue varied frame size handling (Rob Evers) [726157]
-- [scsi] lpfc: Fix mailbox byteswap issue on PPC (Rob Evers) [726157]
-- [scsi] lpfc: Fixed freeing of iocb when internal loopback times out (Rob Evers) [726157]
-- [scsi] lpfc: Update Copyrights to 2013 for 8.3.38, 8.3.39, and 8.3.40 modifications (Rob Evers) [726157]
-- [scsi] lpfc: Fixed a race condition between SLI host and port failed FCF rediscovery (Rob Evers) [726157]
-- [scsi] lpfc: Fixed issue mailbox wait routine failed to issue dump memory mbox command (Rob Evers) [726157]
-- [scsi] lpfc: Fixed system panic due to unsafe walking and deleting linked list (Rob Evers) [726157]
-- [scsi] lpfc: Fixed FCoE connection list vlan identifier and add FCF list debug (Rob Evers) [726157]
-- [scsi] lpfc: Clarified the behavior of the lpfc_max_luns module parameter (Rob Evers) [726157]
-- [scsi] lpfc: Fix to allow OCM to report FEC status (Rob Evers) [726157]
-- [scsi] lpfc: Fixed a missing return code in a logging message (Rob Evers) [726157]
-- [scsi] lpfc: Fixed some logging message fields (Rob Evers) [726157]
-- [scsi] lpfc: Fixed list corruption when lpfc_drain_tx runs (Rob Evers) [726157]
-- [scsi] lpfc: Fix starting reference tag when calculating BG error (Rob Evers) [726157]
-- [scsi] lpfc: Fix inconsistent list removal causes crash (Rob Evers) [726157]
-- [scsi] lpfc: Fixed system panic during handling unsolicited receive buffer error condition (Rob Evers) [726157]
-- [scsi] lpfc: Fix BlockGuard error checking (Rob Evers) [726157]
-- [scsi] lpfc: Fixed crash during FCoE failover testing (Rob Evers) [726157]
-- [scsi] lpfc: Fix lpfc_used_cpu to be more dynamic (Rob Evers) [726157]
-- [scsi] megaraid_sas: Fix synchronization problem between sysPD IO path and AEN path (Tomas Henzl) [1019819]
-- [scsi] megaraid_sas: fixes for few endianess issues (Tomas Henzl) [1019819]
-- [scsi] megaraid_sas: addded support for big endian architecture (Tomas Henzl) [1005934]
-- [scsi] megaraid_sas: Version and Changelog update (Tomas Henzl) [1005934]
-- [scsi] megaraid_sas: Add High Availability clustering support using shared Logical Disks (Tomas Henzl) [1005934]
-- [scsi] megaraid_sas: fix memory leak if SGL has zero length entries (Tomas Henzl) [1005934]
-- [scsi] megaraid_sas: Changelog and driver version update (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support to differentiate between iMR vs MR Firmware (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support for Uneven Span PRL11 (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support for Extended MSI-x vectors for 12Gb/s controller (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Set IoFlags to enable Fast Path for JBODs for 12 Gb/s controllers (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support to display Customer branding details in syslog (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support for MegaRAID Fury (device ID-0x005f) 12Gb/s controllers (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Set IO request timeout value provided by OS timeout for Tape devices (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Free event detail memory without device ID check (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Update balance count in driver to be in sync of firmware (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Fix the interrupt mask for Gen2 controller (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Return DID_ERROR for SCSI IO, when controller is in critical h/w error (Tomas Henzl) [726228]
-- [scsi] Add 'eh_deadline' to limit SCSI EH runtime (Ewan Milne) [988042]
-- [scsi] remove check for 'resetting' (Ewan Milne) [988042]
-- [scsi] dc395: Move 'last_reset' into internal host structure (Ewan Milne) [988042]
-- [scsi] tmscsim: Move 'last_reset' into host structure (Ewan Milne) [988042]
-- [scsi] advansys: Remove 'last_reset' references (Ewan Milne) [988042]
-- [scsi] dpt_i2o: return SCSI_MLQUEUE_HOST_BUSY when in reset (Ewan Milne) [988042]
-- [scsi] dpt_i2o: Remove DPTI_STATE_IOCTL (Ewan Milne) [988042]
-
-* Tue Oct 29 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-38.el7]
-- [net] ip_output: do skb ufo init for peeked non ufo skb as well (Jiri Pirko) [1014599]
-- [net] ip6_output: do skb ufo init for peeked non ufo skb as well (Jiri Pirko) [1014599]
-- [net] udp6: respect IPV6_DONTFRAG sockopt in case there are pending frames (Jiri Pirko) [1014599]
-- [net] ipv6: udp packets following an UFO enqueued packet need also be handled by UFO (Jiri Pirko) [1011931] {CVE-2013-4387}
-- [net] bonding: combine pr_debugs in bond_set_dev_addr into one (Nikolay Aleksandrov) [1020621]
-- [net] bonding: when cloning a MAC use NET_ADDR_STOLEN (Nikolay Aleksandrov) [1020621]
-- [net] bonding: remove unnecessary dev_addr_from_first member (Nikolay Aleksandrov) [1020621]
-- [net] netfilter: nf_conntrack: use RCU safe kfree for conntrack extensions (Jesper Brouer) [1010252]
-- [net] tcp: TSQ can use a dynamic limit (Jiri Pirko) [998775]
-- [net] tcp: TSO packets automatic sizing (Jiri Pirko) [998775]
-- [security] selinux: fix selinuxfs policy file on big endian systems (Eric Paris) [839671]
-- [powerpc] Fix memory hotplug with sparse vmemmap (Steve Best) [805181]
-- [powerpc] mm: Mark Memory Resources as busy (Steve Best) [805181]
-- [tools] perf/bench: Fix failing assertions in numa bench (Petr Holasek) [1011923]
-- [hid] pantherlord: heap overflow flaw (Radomir Vrbovsky) [1000436] {CVE-2013-2892}
-- [powerpc] tm: Turn interrupts hard off in tm_reclaim() (Steve Best) [1017135]
-- [powerpc] tm: Clear MSR RI in non-recoverable TM code (Steve Best) [1017135]
-- [powerpc] perf: Fix handling of FAB events (Steve Best) [1015439]
-
-* Thu Oct 24 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-37.el7]
-- [fs] xfs: remove dead code from xlog_recover_inode_pass2 (Dave Chinner) [1001861]
-- [fs] xfs: = vs == typo in ASSERT() (Dave Chinner) [1001861]
-- [fs] xfs: don't assert fail on bad inode numbers (Dave Chinner) [1001861]
-- [fs] xfs: aborted buf items can be in the AIL (Dave Chinner) [1001861]
-- [fs] xfs: factor all the kmalloc-or-vmalloc fallback allocations (Dave Chinner) [1001861]
-- [fs] xfs: fix memory allocation failures with ACLs (Dave Chinner) [1001861]
-- [fs] xfs: ensure we copy buffer type in da btree root splits (Dave Chinner) [1001861]
-- [fs] xfs: set remote symlink buffer type for recovery (Dave Chinner) [1001861]
-- [fs] xfs: recovery of swap extents operations for CRC filesystems (Dave Chinner) [1001861]
-- [fs] xfs: swap extents operations for CRC filesystems (Dave Chinner) [1001861]
-- [fs] xfs: check magic numbers in dir3 leaf verifier first (Dave Chinner) [1001861]
-- [fs] xfs: fix some minor sparse warnings (Dave Chinner) [1001861]
-- [fs] xfs: fix endian warning in xlog_recover_get_buf_lsn() (Dave Chinner) [1001861]
-- [fs] xfs: XFS_MOUNT_QUOTA_ALL needed by userspace (Dave Chinner) [1001861]
-- [fs] xfs: dtype changed xfs_dir2_sfe_put_ino to xfs_dir3_sfe_put_ino (Dave Chinner) [1001861]
-- [fs] xfs: Fix wrong flag ASSERT in xfs_attr_shortform_getvalue (Dave Chinner) [1001861]
-- [fs] xfs: finish removing IOP_* macros (Dave Chinner) [1001861]
-- [fs] xfs: inode log reservations are too small (Dave Chinner) [1001861]
-- [fs] xfs: check correct status variable for xfs_inobt_get_rec() call (Dave Chinner) [1001861]
-- [fs] xfs: inode buffers may not be valid during recovery readahead (Dave Chinner) [1001861]
-- [fs] xfs: check LSN ordering for v5 superblocks during recovery (Dave Chinner) [1001861]
-- [fs] xfs: btree block LSN escaping to disk uninitialised (Dave Chinner) [1001861]
-- [fs] xfs: Assertion failed: first <= last && last < BBTOB(bp->b_length), file: fs/xfs/xfs_trans_buf.c, line: 568 (Dave Chinner) [1001861]
-- [fs] xfs: fix bad dquot buffer size in log recovery readahead (Dave Chinner) [1001861]
-- [fs] xfs: don't account buffer cancellation during log recovery readahead (Dave Chinner) [1001861]
-- [fs] xfs: check for underflow in xfs_iformat_fork() (Dave Chinner) [1001861]
-- [fs] xfs: xfs_dir3_sfe_put_ino can be static (Dave Chinner) [1001861]
-- [fs] xfs: introduce object readahead to log recovery (Dave Chinner) [1001861]
-- [fs] xfs: Simplify xfs_ail_min() with list_first_entry_or_null() (Dave Chinner) [1001861]
-- [fs] xfs: Register hotcpu notifier after initialization (Dave Chinner) [1001861]
-- [fs] xfs: add xfs sb v4 support for dirent filetype field (Dave Chinner) [1001861]
-- [fs] xfs: Add write support for dirent filetype field (Dave Chinner) [1001861]
-- [fs] xfs: Add read-only support for dirent filetype field (Dave Chinner) [1001861]
-- [fs] xfs: Add support for the Q_XGETQSTATV (Dave Chinner) [1001861]
-- [fs] quota: Add a new quotactl command Q_XGETQSTATV (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_mountfs() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_sb_quiet_read_verify() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xlog_recover_do_dquot_buffer() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_log_unmount_write() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_ifree_cluster() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_ialloc_ag_select() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_extent_busy_update_extent() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_setsize_buftarg_early() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_bmap_punch_delalloc_range() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_bmap_last_before() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_bmap_validate_ret() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_bmap_count_tree() (Dave Chinner) [1001861]
-- [fs] xfs: rename bio_add_buffer() to xfs_bio_add_buffer() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xlog_find_head() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xlog_recover_buffer_pass2() (Dave Chinner) [1001861]
-- [fs] xfs: remove two unused macro definitions in xfs_linux.h (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_btree_get_iroot() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_iroot_realloc() (Dave Chinner) [1001861]
-- [fs] xfs: remove one blank line in xfs_btree_make_block_unfull() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xlog_write_setup_copy() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_mod_incore_sb_unlocked() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_btree_lookup() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_buf_free() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_check_sizes() (Dave Chinner) [1001861]
-- [fs] xfs: use reference counts to free clean buffer items (Dave Chinner) [1001861]
-- [fs] xfs: split the CIL lock (Dave Chinner) [1001861]
-- [fs] xfs: Combine CIL insert and prepare passes (Dave Chinner) [1001861]
-- [fs] xfs: avoid CIL allocation during insert (Dave Chinner) [1001861]
-- [fs] xfs: Reduce allocations during CIL insertion (Dave Chinner) [1001861]
-- [fs] xfs: return log item size in IOP_SIZE (Dave Chinner) [1001861]
-- [fs] xfs: free bp in xlog_find_tail() error path (Dave Chinner) [1001861]
-- [fs] xfs: free bp in xlog_find_zeroed() error path (Dave Chinner) [1001861]
-- [fs] xfs: avoid double-free in xfs_attr_node_addname (Dave Chinner) [1001861]
-- [fs] xfs: call roundup_64() to calculate the min_logblks (Dave Chinner) [1001861]
-- [fs] xfs: Validate log space at mount time (Dave Chinner) [1001861]
-- [fs] xfs: Add xfs_log_rlimit.c (Dave Chinner) [1001861]
-- [fs] xfs: Refactor xfs_ticket_alloc() to extract a new helper (Dave Chinner) [1001861]
-- [fs] xfs: Get rid of all XFS_XXX_LOG_RES() macro (Dave Chinner) [1001861]
-- [fs] xfs: refactor xfs_trans_reserve() interface (Dave Chinner) [1001861]
-- [fs] xfs: Make writeid transaction use tr_writeid (Dave Chinner) [1001861]
-- [fs] xfs: Introduce tr_fsyncts to m_reservation (Dave Chinner) [1001861]
-- [fs] xfs: Introduce a new structure to hold transaction reservation items (Dave Chinner) [1001861]
-- [fs] xfs: make struct xfs_perag kernel only (Dave Chinner) [1001861]
-- [fs] xfs: move kernel specific type definitions to xfs.h (Dave Chinner) [1001861]
-- [fs] xfs: xfs_filestreams.h doesn't need __KERNEL__ (Dave Chinner) [1001861]
-- [fs] xfs: remove __KERNEL__ check from xfs_dir2_leaf.c (Dave Chinner) [1001861]
-- [fs] xfs: remove __KERNEL__ from debug code (Dave Chinner) [1001861]
-- [fs] xfs: kill __KERNEL__ check for debug code in allocation code (Dave Chinner) [1001861]
-- [fs] xfs: don't special case shared superblock mounts (Dave Chinner) [1001861]
-- [fs] xfs: consolidate extent swap code (Dave Chinner) [1001861]
-- [fs] xfs: consolidate xfs_utils.c (Dave Chinner) [1001861]
-- [fs] xfs: consolidate xfs_rename.c (Dave Chinner) [1001861]
-- [fs] xfs: kill xfs_vnodeops.[ch] (Dave Chinner) [1001861]
-- [fs] xfs: fix issues that cause userspace warnings (Dave Chinner) [1001861]
-- [fs] xfs: minor cleanups (Dave Chinner) [1001861]
-- [fs] xfs: create xfs_bmap_util.[ch] (Dave Chinner) [1001861]
-- [fs] xfs: introduce xfs_sb.c for sharing with libxfs (Dave Chinner) [1001861]
-- [fs] xfs: split out the remote symlink handling (Dave Chinner) [1001861]
-- [fs] xfs: split out attribute fork truncation code into separate file (Dave Chinner) [1001861]
-- [fs] xfs: split out attribute listing code into separate file (Dave Chinner) [1001861]
-- [fs] xfs: reshuffle dir2 definitions around for userspace (Dave Chinner) [1001861]
-- [fs] xfs: move getdents code into it's own file (Dave Chinner) [1001861]
-- [fs] xfs: introduce xfs_inode_buf.c for inode buffer operations (Dave Chinner) [1001861]
-- [fs] xfs: move unrelated definitions out of xfs_inode.h (Dave Chinner) [1001861]
-- [fs] xfs: move inode fork definitions to a new header file (Dave Chinner) [1001861]
-- [fs] xfs: split out transaction reservation code (Dave Chinner) [1001861]
-- [fs] xfs: sync minor header differences needed by userspace (Dave Chinner) [1001861]
-- [fs] xfs: introduce xfs_quota_defs.h (Dave Chinner) [1001861]
-- [fs] xfs: introduce xfs_rtalloc_defs.h (Dave Chinner) [1001861]
-- [fs] xfs: split out on-disk transaction definitions (Dave Chinner) [1001861]
-- [fs] xfs: separate icreate log format definitions from xfs_icreate_item.h (Dave Chinner) [1001861]
-- [fs] xfs: separate dquot on disk format definitions out of xfs_quota.h (Dave Chinner) [1001861]
-- [fs] xfs: split out EFI/EFD log item format definition (Dave Chinner) [1001861]
-- [fs] xfs: split out buf log item format definitions (Dave Chinner) [1001861]
-- [fs] xfs: split out inode log item format definition (Dave Chinner) [1001861]
-- [fs] xfs: separate out log format definitions (Dave Chinner) [1001861]
-- [fs] xfs: di_flushiter considered harmful (Dave Chinner) [1001861]
-- [fs] xfs: Start using pquotaino from the superblock (Dave Chinner) [1001861]
-- [fs] xfs: Initialize all quota inodes to be NULLFSINO (Dave Chinner) [1001861]
-- [fs] xfs: Fix a deadlock in xfs_log_commit_cil() code path (Dave Chinner) [1001861]
-- [fs] xfs: fix assertion failure in xfs_vm_write_failed() (Dave Chinner) [1001861]
-- [fs] xfs: Fix the logic check for all quotas being turned off (Dave Chinner) [1001861]
-- [fs] xfs: Add pquota fields where gquota is used (Dave Chinner) [1001861]
-- [fs] xfs: fix sgid inheritance for subdirectories inheriting default acls (Dave Chinner) [1001861]
-- [fs] xfs: dquot log reservations are too small (Dave Chinner) [1001861]
-- [fs] xfs: remove local fork format handling from xfs_bmapi_write() (Dave Chinner) [1001861]
-- [fs] xfs: use get_unused_fd_flags(0) instead of get_unused_fd() (Dave Chinner) [1001861]
-- [fs] xfs: clean up unused codes at xfs_bulkstat() (Dave Chinner) [1001861]
-- [fs] xfs: use XFS_BMAP_BMDR_SPACE vs. XFS_BROOT_SIZE_ADJ (Dave Chinner) [1001861]
-- [fs] xfs: Remove incore use of XFS_OQUOTA_ENFD and XFS_OQUOTA_CHKD (Dave Chinner) [1001861]
-- [fs] xfs: Change xfs_dquot_acct to be a 2-dimensional array (Dave Chinner) [1001861]
-- [fs] xfs: Code cleanup and removal of some typedef usage (Dave Chinner) [1001861]
-- [fs] xfs: Replace macro XFS_DQ_TO_QIP with a function (Dave Chinner) [1001861]
-- [fs] xfs: Replace macro XFS_DQUOT_TREE with a function (Dave Chinner) [1001861]
-- [fs] xfs: Define a new function xfs_is_quota_inode() (Dave Chinner) [1001861]
-- [fs] xfs: implement inode change count (Dave Chinner) [1001861]
-- [fs] xfs: Use inode create transaction (Dave Chinner) [1001861]
-- [fs] xfs: Inode create item recovery (Dave Chinner) [1001861]
-- [fs] xfs: Inode create transaction reservations (Dave Chinner) [1001861]
-- [fs] xfs: Inode create log items (Dave Chinner) [1001861]
-- [fs] xfs: Introduce an ordered buffer item (Dave Chinner) [1001861]
-- [fs] xfs: Introduce ordered log vector support (Dave Chinner) [1001861]
-- [fs] xfs: xfs_ifree doesn't need to modify the inode buffer (Dave Chinner) [1001861]
-- [fs] xfs: don't do IO when creating an new inode (Dave Chinner) [1001861]
-- [fs] xfs: don't use speculative prealloc for small files (Dave Chinner) [1001861]
-- [fs] xfs: plug directory buffer readahead (Dave Chinner) [1001861]
-- [fs] xfs: add pluging for bulkstat readahead (Dave Chinner) [1001861]
-- [fs] xfs: Remove dead function prototype xfs_sync_inode_grab() (Dave Chinner) [1001861]
-- [fs] xfs: Remove the left function variable from xfs_ialloc_get_rec() (Dave Chinner) [1001861]
-- [fs] xfs: check on-disk (not incore) btree root size in dfrag.c (Dave Chinner) [1001861]
-- [fs] xfs: Remove XFS_MOUNT_RETERR (Dave Chinner) [1001861]
-- [fs] xfs: Remove two dead transaction log reservaion macros (Dave Chinner) [1001861]
-- [fs] xfs: return FIEMAP_EXTENT_UNKNOWN for delayed allocation extent (Dave Chinner) [1001861]
-- [fs] xfs: fix the symbolic link assert in xfs_ifree (Dave Chinner) [1001861]
-- [fs] xfs: Remove struct xfs_chash from xfs_mount (Dave Chinner) [1001861]
-- [fs] xfs: Don't keep silent if sunit/swidth can not be changed via mount (Dave Chinner) [1001861]
-- [fs] xfs: Remove redundant error variable from xfs_growfs_data_private() (Dave Chinner) [1001861]
-- [fs] xfs: Convert use of typedef ctl_table to struct ctl_table (Dave Chinner) [1001861]
-- [fs] xfs: Avoid pathological backwards allocation (Dave Chinner) [1001861]
-
-* Wed Oct 23 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-36.el7]
-- [fs] btrfs: create the uuid tree on remount rw (Eric Sandeen) [1010071]
-- [fs] btrfs: change extent-same to copy entire argument struct (Eric Sandeen) [1010071]
-- [fs] btrfs: dir_inode_operations should use btrfs_update_time also (Eric Sandeen) [1010071]
-- [fs] btrfs: add btrfs prefix to kernel log output (Eric Sandeen) [1010071]
-- [fs] btrfs: refuse to remount read-write after abort (Eric Sandeen) [1010071]
-- [fs] btrfs: don't leak transaction in btrfs_sync_file() (Eric Sandeen) [1010071]
-- [fs] btrfs: add the missing mutex unlock in write_all_supers() (Eric Sandeen) [1010071]
-- [fs] btrfs: iput inode on allocation failure (Eric Sandeen) [1010071]
-- [fs] btrfs: remove space_info->reservation_progress (Eric Sandeen) [1010071]
-- [fs] btrfs: kill delay_iput arg to the wait_ordered functions (Eric Sandeen) [1010071]
-- [fs] btrfs: fix worst case calculator for space usage (Eric Sandeen) [1010071]
-- [fs] btrfs: improve replacing nocow extents (Eric Sandeen) [1010071]
-- [fs] btrfs: drop dir i_size when adding new names on replay (Eric Sandeen) [1010071]
-- [fs] btrfs: replay dir_index items before other items (Eric Sandeen) [1010071]
-- [fs] btrfs: check roots last log commit when checking if an inode has been logged (Eric Sandeen) [1010071]
-- [fs] btrfs: actually log directory we are fsync()'ing (Eric Sandeen) [1010071]
-- [fs] btrfs: actually limit the size of delalloc range (Eric Sandeen) [1010071]
-- [fs] btrfs: allocate the free space by the existed max extent size when ENOSPC (Eric Sandeen) [1010071]
-- [fs] btrfs: add lockdep and tracing annotations for uuid tree (Eric Sandeen) [1010071]
-- [fs] btrfs: show compiled-in config features at module load time (Eric Sandeen) [1010071]
-- [fs] btrfs: more efficient inode tree replace operation (Eric Sandeen) [1010071]
-- [fs] btrfs: do not add replace target to the alloc_list (Eric Sandeen) [1010071]
-- [fs] btrfs: fixup error handling in btrfs_reloc_cow (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize key searches in btrfs_search_slot (Eric Sandeen) [1010071]
-- [fs] btrfs: don't use an async starter for most of our workers (Eric Sandeen) [1010071]
-- [fs] btrfs: only update disk_i_size as we remove extents (Eric Sandeen) [1010071]
-- [fs] btrfs: fix deadlock in uuid scan kthread (Eric Sandeen) [1010071]
-- [fs] btrfs: stop refusing the relocation of chunk 0 (Eric Sandeen) [1010071]
-- [fs] btrfs: fix memory leak of uuid_root in free_fs_info (Eric Sandeen) [1010071]
-- [fs] btrfs: reuse kbasename helper (Eric Sandeen) [1010071]
-- [fs] btrfs: return btrfs error code for dev excl ops err (Eric Sandeen) [1010071]
-- [fs] btrfs: allow partial ordered extent completion (Eric Sandeen) [1010071]
-- [fs] btrfs: convert all bug_ons in free-space-cache.c (Eric Sandeen) [1010071]
-- [fs] btrfs: add support for asserts (Eric Sandeen) [1010071]
-- [fs] btrfs: adjust the fs_devices->missing count on unmount (Eric Sandeen) [1010071]
-- [fs] btrfs: don't check for root_refs == 0 twice (Eric Sandeen) [1010071]
-- [fs] btrfs: fix for patch "cleanup: don't check the same thing twice" (Eric Sandeen) [1010071]
-- [fs] btrfs: get rid of one BUG() in write_all_supers() (Eric Sandeen) [1010071]
-- [fs] btrfs: allocate prelim_ref with a slab allocater (Eric Sandeen) [1010071]
-- [fs] btrfs: pass gfp_t to __add_prelim_ref() to avoid always using GFP_ATOMIC (Eric Sandeen) [1010071]
-- [fs] btrfs: fix race conditions in BTRFS_IOC_FS_INFO ioctl (Eric Sandeen) [1010071]
-- [fs] btrfs: fix race between removing a dev and writing sbs (Eric Sandeen) [1010071]
-- [fs] btrfs: remove ourselves from the cluster list under lock (Eric Sandeen) [1010071]
-- [fs] btrfs: do not clear our orphan item runtime flag on eexist (Eric Sandeen) [1010071]
-- [fs] btrfs: fix send to deal with sparse files properly (Eric Sandeen) [1010071]
-- [fs] btrfs: fix printing of non NULL terminated string (Eric Sandeen) [1010071]
-- [fs] btrfs: Use z to format size_t (Eric Sandeen) [1010071]
-- [fs] btrfs: Do not truncate sector_t on 32-bit with CONFIG_LBDAF=y (Eric Sandeen) [1010071]
-- [fs] btrfs: PAGE_CACHE_SIZE is already unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_header_chunk_tree_uuid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_header_fsid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_dev_extent_chunk_tree_uuid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_device_fsid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_device_uuid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Format mirror_num as int (Eric Sandeen) [1010071]
-- [fs] btrfs: Format PAGE_SIZE as unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make BTRFS_DEV_REPLACE_DEVID an unsigned long long constant (Eric Sandeen) [1010071]
-- [fs] btrfs: Remove superfluous casts from u64 to unsigned long long (Eric Sandeen) [1010071]
-- [fs] btrfs: fix memory leak of orphan block rsv (Eric Sandeen) [1010071]
-- [fs] btrfs: rollback btrfs_device fields on umount (Eric Sandeen) [1010071]
-- [fs] btrfs: add alloc_fs_devices and switch to it (Eric Sandeen) [1010071]
-- [fs] btrfs: add btrfs_alloc_device and switch to it (Eric Sandeen) [1010071]
-- [fs] btrfs: find_next_devid: root -> fs_info (Eric Sandeen) [1010071]
-- [fs] btrfs: don't allow the replace procedure on read only filesystems (Eric Sandeen) [1010071]
-- [fs] btrfs: reset force_compress on btrfs_file_defrag failure (Eric Sandeen) [1010071]
-- [fs] btrfs: use __u64 in exported user headers (Eric Sandeen) [1010071]
-- [fs] btrfs: add mount option to force UUID tree checking (Eric Sandeen) [1010071]
-- [fs] btrfs: check UUID tree during mount if required (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce uuid-tree-gen field (Eric Sandeen) [1010071]
-- [fs] btrfs: fill UUID tree initially (Eric Sandeen) [1010071]
-- [fs] btrfs: maintain subvolume items in the UUID tree (Eric Sandeen) [1010071]
-- [fs] btrfs: create UUID tree if required (Eric Sandeen) [1010071]
-- [fs] btrfs: support printing UUID tree elements (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce a tree for items that map UUIDs to something (Eric Sandeen) [1010071]
-- [fs] btrfs: mark some local function as 'static' (Eric Sandeen) [1010071]
-- [fs] btrfs: get rid of sparse warnings (Eric Sandeen) [1010071]
-- [fs] btrfs: don't miss inode ref items in BTRFS_IOC_INO_LOOKUP (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing error code to BTRFS_IOC_INO_LOOKUP handler (Eric Sandeen) [1010071]
-- [fs] btrfs: remove reduplicate check when disabling quota (Eric Sandeen) [1010071]
-- [fs] btrfs: move btrfs_free_qgroup_config() out of spin_lock and fix comments (Eric Sandeen) [1010071]
-- [fs] btrfs: fix oops when writing dirty qgroups to disk (Eric Sandeen) [1010071]
-- [fs] btrfs: fix send issues related to inode number reuse (Eric Sandeen) [1010071]
-- [fs] btrfs: separate out tests into their own directory (Eric Sandeen) [1010071]
-- [fs] btrfs: avoid starting a transaction in the write path (Eric Sandeen) [1010071]
-- [fs] btrfs: fix heavy delalloc related deadlock (Eric Sandeen) [1010071]
-- [fs] btrfs: fix the error handling wrt orphan items (Eric Sandeen) [1010071]
-- [fs] btrfs: don't allow a subvol to be deleted if it is the default subovl (Eric Sandeen) [1010071]
-- [fs] btrfs: skip subvol entries when checking if we've created a dir already (Eric Sandeen) [1010071]
-- [fs] btrfs: offline dedupe (Eric Sandeen) [1010071]
-- [fs] btrfs: Introduce extent_read_full_page_nolock() (Eric Sandeen) [1010071]
-- [fs] btrfs: btrfs_ioctl_clone, Move clone code into it's own function (Eric Sandeen) [1010071]
-- [fs] btrfs: abtract out range locking in clone ioctl() (Eric Sandeen) [1010071]
-- [fs] btrfs: fix possible memory leak in find_parent_nodes() (Eric Sandeen) [1010071]
-- [fs] btrfs: return ENOSPC when target space is full (Eric Sandeen) [1010071]
-- [fs] btrfs: don't ignore errors from btrfs_run_delayed_items (Eric Sandeen) [1010071]
-- [fs] btrfs: fix inode leak on kmalloc failure in tree-log.c (Eric Sandeen) [1010071]
-- [fs] btrfs: allow compressed extents to be merged during defragment (Eric Sandeen) [1010071]
-- [fs] btrfs: add mount option to set commit interval (Eric Sandeen) [1010071]
-- [fs] btrfs: stop using GFP_ATOMIC when allocating rewind ebs (Eric Sandeen) [1010071]
-- [fs] btrfs: deal with enomem in the rewind path (Eric Sandeen) [1010071]
-- [fs] btrfs: check our parent dir when doing a compare send (Eric Sandeen) [1010071]
-- [fs] btrfs: handle errors when doing slow caching (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing error handling to read_tree_block (Eric Sandeen) [1010071]
-- [fs] btrfs: Fix leak in __btrfs_map_block error path (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing error check to find_parent_nodes (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize function btrfs_read_chunk_tree (Eric Sandeen) [1010071]
-- [fs] btrfs: don't bug_on when we fail when cleaning up transactions (Eric Sandeen) [1010071]
-- [fs] btrfs: change how we queue blocks for backref checking (Eric Sandeen) [1010071]
-- [fs] btrfs: check to see if we have an inline item properly (Eric Sandeen) [1010071]
-- [fs] btrfs: fix what bits we clear when erroring out from delalloc (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup arguments to extent_clear_unlock_delalloc (Eric Sandeen) [1010071]
-- [fs] btrfs: use BTRFS_SUPER_INFO_SIZE macro at btrfs_read_dev_super() (Eric Sandeen) [1010071]
-- [fs] btrfs: cache the extent map struct when reading several pages (Eric Sandeen) [1010071]
-- [fs] btrfs: batch the extent state operation when reading pages (Eric Sandeen) [1010071]
-- [fs] btrfs: batch the extent state operation in the end io handle of the read page (Eric Sandeen) [1010071]
-- [fs] btrfs: don't cache the csum value into the extent state tree (Eric Sandeen) [1010071]
-- [fs] btrfs: add branch prediction hints in the read page end IO function (Eric Sandeen) [1010071]
-- [fs] btrfs: remove unnecessary argument of bio_readpage_error() (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing mounting options in btrfs_show_options() (Eric Sandeen) [1010071]
-- [fs] btrfs: use u64 for subvolid when parsing mount options (Eric Sandeen) [1010071]
-- [fs] btrfs: add sanity checks regarding to parsing mount options (Eric Sandeen) [1010071]
-- [fs] btrfs: fix memory leak when allocating pages for p/q stripes failed in raid56 (Eric Sandeen) [1010071]
-- [fs] btrfs: fix and cleanup some error paths in raid56 (Eric Sandeen) [1010071]
-- [fs] btrfs: don't bother autodefragging if our root is going away (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup reloc roots properly on error (Eric Sandeen) [1010071]
-- [fs] btrfs: reset ret in record_one_backref (Eric Sandeen) [1010071]
-- [fs] btrfs: fix get set label blocking against balance (Eric Sandeen) [1010071]
-- [fs] btrfs: Print key type in decimal everywhere (Eric Sandeen) [1010071]
-- [fs] btrfs: update delayed ref tracepoints (Eric Sandeen) [1010071]
-- [fs] btrfs: btrfs_read_block_groups, Use enums to index (Eric Sandeen) [1010071]
-- [fs] btrfs: Cleanup for using BTRFS_SETGET_STACK instead of raw convert (Eric Sandeen) [1010071]
-- [fs] btrfs: set qgroup_ulist to be null after calling ulist_free() (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing error checks to add_data_references (Eric Sandeen) [1010071]
-- [fs] btrfs: make errors in btrfs_num_copies less noisy (Eric Sandeen) [1010071]
-- [fs] btrfs: make free space caching faster with many non-inline extent references (Eric Sandeen) [1010071]
-- [fs] btrfs: fall back to global reservation when removing subvolumes (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize btrfs_lookup_extent_info() (Eric Sandeen) [1010071]
-- [fs] btrfs: Release uuid_mutex for shrink during device delete (Eric Sandeen) [1010071]
-- [fs] btrfs: set lockdep class before locking new extent buffer (Eric Sandeen) [1010071]
-- [fs] btrfs: return -1 when lzo compression makes data bigger (Eric Sandeen) [1010071]
-- [fs] btrfs: stop using GFP_ATOMIC for the tree mod log allocations (Eric Sandeen) [1010071]
-- [fs] btrfs: treewide: Add __GFP_NOWARN to k.alloc calls with v.alloc fallbacks (Eric Sandeen) [1010071]
-- [fs] btrfs: don't loop on large offsets in readdir (Eric Sandeen) [1010071]
-- [fs] btrfs: check to see if root_list is empty before adding it to dead roots (Eric Sandeen) [1010071]
-- [fs] btrfs: release both paths before logging dir/changed extents (Eric Sandeen) [1010071]
-- [fs] btrfs: allow splitting of hole em's when dropping extent cache (Eric Sandeen) [1010071]
-- [fs] btrfs: make sure the backref walker catches all refs to our extent (Eric Sandeen) [1010071]
-- [fs] btrfs: fix backref walking when we hit a compressed extent (Eric Sandeen) [1010071]
-- [fs] btrfs: do not offset physical if we're compressed (Eric Sandeen) [1010071]
-- [fs] btrfs: fix extent buffer leak after backref walking (Eric Sandeen) [1010071]
-- [fs] btrfs: fix a bug of snapshot-aware defrag to make it work on partial extents (Eric Sandeen) [1010071]
-- [fs] btrfs: fix file truncation if FALLOC_FL_KEEP_SIZE is specified (Eric Sandeen) [1010071]
-- [fs] btrfs: fix wrong write offset when replacing a device (Eric Sandeen) [1010071]
-- [fs] btrfs: re-add root to dead root list if we stop dropping it (Eric Sandeen) [1010071]
-- [fs] btrfs: fix lock leak when resuming snapshot deletion (Eric Sandeen) [1010071]
-- [fs] btrfs: update drop progress before stopping snapshot dropping (Eric Sandeen) [1010071]
-- [fs] btrfs: wait ordered range before doing direct io (Eric Sandeen) [1010071]
-- [fs] btrfs: only do the tree_mod_log_free_eb if this is our last ref (Eric Sandeen) [1010071]
-- [fs] btrfs: hold the tree mod lock in __tree_mod_log_rewind (Eric Sandeen) [1010071]
-- [fs] btrfs: make backref walking code handle skinny metadata (Eric Sandeen) [1010071]
-- [fs] btrfs: fix crash regarding to ulist_add_merge (Eric Sandeen) [1010071]
-- [fs] btrfs: fix several potential problems in copy_nocow_pages_for_inode (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup the code of copy_nocow_pages_for_inode() (Eric Sandeen) [1010071]
-- [fs] btrfs: fix oops when recovering the file data by scrub function (Eric Sandeen) [1010071]
-- [fs] btrfs: make the chunk allocator completely tree lockless (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup orphaned root orphan item (Eric Sandeen) [1010071]
-- [fs] btrfs: fix wrong mirror number tuning (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup redundant code in btrfs_submit_direct() (Eric Sandeen) [1010071]
-- [fs] btrfs: remove btrfs_sector_sum structure (Eric Sandeen) [1010071]
-- [fs] btrfs: check if we can nocow if we don't have data space (Eric Sandeen) [1010071]
-- [fs] btrfs: stop using try_to_writeback_inodes_sb_nr to flush delalloc (Eric Sandeen) [1010071]
-- [fs] btrfs: use a percpu to keep track of possibly pinned bytes (Eric Sandeen) [1010071]
-- [fs] btrfs: check for actual acls rather than just xattrs when caching no acl (Eric Sandeen) [1010071]
-- [fs] btrfs: move btrfs_truncate_page to btrfs_cont_expand instead of btrfs_truncate (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize reada_for_balance (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize read_block_for_search (Eric Sandeen) [1010071]
-- [fs] btrfs: unlock extent range on enospc in compressed submit (Eric Sandeen) [1010071]
-- [fs] btrfs: fix the comment typo for btrfs_attach_transaction_barrier (Eric Sandeen) [1010071]
-- [fs] btrfs: fix not being able to find skinny extents during relocate (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup backref search commit root flag stuff (Eric Sandeen) [1010071]
-- [fs] btrfs: free csums when we're done scrubbing an extent (Eric Sandeen) [1010071]
-- [fs] btrfs: fix transaction throttling for delayed refs (Eric Sandeen) [1010071]
-- [fs] btrfs: stop waiting on current trans if we aborted (Eric Sandeen) [1010071]
-- [fs] btrfs: wake up delayed ref flushing waiters on abort (Eric Sandeen) [1010071]
-- [fs] btrfs: fix the code comments for LZO compression workspace (Eric Sandeen) [1010071]
-- [fs] btrfs: fix broken nocow after balance (Eric Sandeen) [1010071]
-- [fs] btrfs: more open-coded file_inode() (Eric Sandeen) [1010071]
-- [fs] btrfs: exclude logged extents before replying when we are mixed (Eric Sandeen) [1010071]
-- [fs] btrfs: put our inode if orphan cleanup fails (Eric Sandeen) [1010071]
-- [fs] btrfs: add some missing iput()'s in btrfs_orphan_cleanup (Eric Sandeen) [1010071]
-- [fs] btrfs: do not pin while under spin lock (Eric Sandeen) [1010071]
-- [fs] btrfs: Cocci spatch "memdup.spatch" (Eric Sandeen) [1010071]
-- [fs] btrfs: Cocci spatch "ptr_ret.spatch" (Eric Sandeen) [1010071]
-- [fs] btrfs: fix qgroup rescan resume on mount (Eric Sandeen) [1010071]
-- [fs] btrfs: avoid double free of fs_info->qgroup_ulist (Eric Sandeen) [1010071]
-- [fs] btrfs: fix memory patcher through fs_info->qgroup_ulist (Eric Sandeen) [1010071]
-- [fs] btrfs: simplify unlink reservations (Eric Sandeen) [1010071]
-- [fs] btrfs: merge pending IO for tree log write back (Eric Sandeen) [1010071]
-- [fs] btrfs: allow file data clone within a file (Eric Sandeen) [1010071]
-- [fs] btrfs: remove unused code in btrfs_del_root (Eric Sandeen) [1010071]
-- [fs] btrfs: kill replicate code in replay_one_buffer (Eric Sandeen) [1010071]
-- [fs] btrfs: check if leaf's parent exists before pushing items around (Eric Sandeen) [1010071]
-- [fs] btrfs: update new flags for tracepoint (Eric Sandeen) [1010071]
-- [fs] btrfs: dont do log_removal in insert_new_root (Eric Sandeen) [1010071]
-- [fs] btrfs: return error code in btrfs_check_trunc_cache_free_space() (Eric Sandeen) [1010071]
-- [fs] btrfs: fix estale with btrfs send (Eric Sandeen) [1010071]
-- [fs] btrfs: device delete to get errors from the kernel (Eric Sandeen) [1010071]
-- [fs] btrfs: do delay iput in sync_fs (Eric Sandeen) [1010071]
-- [fs] btrfs: make the state of the transaction more readable (Eric Sandeen) [1010071]
-- [fs] btrfs: remove the time check in btrfs_commit_transaction() (Eric Sandeen) [1010071]
-- [fs] btrfs: remove unnecessary varient ->num_joined in btrfs_transaction structure (Eric Sandeen) [1010071]
-- [fs] btrfs: don't flush the delalloc inodes in the while loop if flushoncommit is set (Eric Sandeen) [1010071]
-- [fs] btrfs: don't wait for all the writers circularly during the transaction commit (Eric Sandeen) [1010071]
-- [fs] btrfs: remove the code for the impossible case in cleanup_transaction() (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup unnecessary assignment when cleaning up all the residual transaction (Eric Sandeen) [1010071]
-- [fs] btrfs: just flush the delalloc inodes in the source tree before snapshot creation (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce per-subvolume ordered extent list (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce per-subvolume delalloc inode list (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce grab/put functions for the root of the fs/file tree (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup the similar code of the fs root read (Eric Sandeen) [1010071]
-- [fs] btrfs: make the snap/subv deletion end more early when the fs is R/O (Eric Sandeen) [1010071]
-- [fs] btrfs: move the R/O check out of btrfs_clean_one_deleted_snapshot() (Eric Sandeen) [1010071]
-- [fs] btrfs: make the cleaner complete early when the fs is going to be umounted (Eric Sandeen) [1010071]
-- [fs] btrfs: remove unnecessary ->s_umount in cleaner_kthread() (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup: don't check the same thing twice (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup, btrfs_read_fs_root_no_name() doesn't return NULL (Eric Sandeen) [1010071]
-- [fs] btrfs: delete unused function (Eric Sandeen) [1010071]
-- [fs] btrfs: remove useless copy in quota_ctl (Eric Sandeen) [1010071]
-- [fs] btrfs: Minor format cleanup (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup unused arguments in send.c (Eric Sandeen) [1010071]
-- [fs] btrfs: add ioctl to wait for qgroup rescan completion (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce qgroup_ulist to avoid frequently allocating/freeing ulist (Eric Sandeen) [1010071]
-- [fs] btrfs: show compiled-in config features at module load time (Eric Sandeen) [1010071]
-- [fs] btrfs: move ifdef around sanity checks out of init_btrfs_fs (Eric Sandeen) [1010071]
-- [fs] btrfs: add prefix to sanity tests messages (Eric Sandeen) [1010071]
-- [fs] btrfs: add debug check for extent_io range alignment (Eric Sandeen) [1010071]
-- [fs] btrfs: fix check on same raid type flag twice (Eric Sandeen) [1010071]
-- [fs] btrfs: Fix typo in printk (Eric Sandeen) [1010071]
-- [fs] btrfs: fix btrfs_extend_item() comment (Eric Sandeen) [1010071]
-
-* Wed Oct 16 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-35.el7]
-- [netdrv] mlx4: Fix handling of dma_map failure (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Notify user when TX ring in error state (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Disable global flow control when PFC enabled (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Coding style cleanup in mlx4_en_dcbnl_ieee_setpfc() (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Staticize local functions (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: VFs must ignore the enable_64b_cqe_eqe module param (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Don't give VFs MAC addresses which are derived from the PF MAC (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Respond to operation request by firmware (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fix BlueFlame race (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: fix small memory leak on error (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add HW enforcement to VF link state (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Dynamic VST to VST vlan/qos changes (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fail device init if num_vfs is negative (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add warning in case of command timeouts (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Replace sscanf() with kstrtoint() (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Remove an unnecessary test (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add prints when TX timeout occurs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fix a race between napi poll function and RX ring cleanup (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Change log level from error to debug for vlan related messages (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Move register_netdev() to the end of initialization function (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Do not query stats when device port is down (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fix resource leak in error flow (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: allow order-0 memory allocations in RX path (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add support for busy poll (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add VF link state support (Amir Vadai) [862498 868244 920465 978058 998202]
-- [net] core: Add VF link state control (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: use __netdev_pick_tx instead of __skb_tx_hash in mlx4_en_select_queue (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: use one page fragment per incoming frame (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] ipoib: Fix pkey change flow for virtualization environments (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] ipoib: Make sure child devices use valid/proper pkeys (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Create QP1 using the pkey index which contains the default pkey (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] mlx4: Use default pkey when creating tunnel QPs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Fix redundant pointer check in dealloc flow (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Fix possible memory leak in iser_create_frwr_pool() (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Introduce fast memory registration model (FRWR) (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Place the fmr pool into a union in iser's IB conn struct (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Handle unaligned SG in separate function (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Generalize rdma memory registration (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Accept session->cmds_max from user space (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Restructure allocation/deallocation of connection resources (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Use proper debug level value for info prints (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Add Discovery support (Amir Vadai) [862498 868244 920465 978058 998202]
-- [scsi] libiscsi: Exporting new attrs for iscsi session and connection in sysfs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [scsi] scsi_transport_iscsi: Exporting new attrs for iscsi session and connection in sysfs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Better checking of userspace values for receive flow steering (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] mlx4: Add receive flow steering support (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Export ib_create/destroy_flow through uverbs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Infrastructure for extensible uverbs commands (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Add receive flow steering support (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Fixes to XRC reference counting in uverbs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Add locking around event dispatching on XRC target QPs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fix XRC QPs detection in the resource tracker (Amir Vadai) [862498 868244 920465 978058 998202]
-- [powerpc] irq: Don't switch to irq stack from softirq stack (Steve Best) [1016454]
-- [powerpc] hvsi: Increase handshake timeout from 200ms to 400ms (Steve Best) [1012654]
-- [powerpc] zimage: make the "OF" wrapper support ePAPR boot (Steve Best) [1012654]
-- [powerpc] pseries: Do not start secondaries in Open Firmware (Steve Best) [1012654]
-- [powerpc] Make prom_init.c endian safe (Steve Best) [1012654]
-- [powerpc] Remove ksp_limit on ppc64 (Steve Best) [1012654]
-- [powerpc] irq: Run softirqs off the top of the irq stack (Steve Best) [1012654]
-- [mm] avoid reinserting isolated balloon pages into LRU lists (Rafael Aquini) [1017445]
-- [kernel] sched: fix race in migrate_swap_stop (Rik van Riel) [683513]
-- [kernel] sched/numa: Retry task_numa_migrate() periodically (Rik van Riel) [683513]
-- [kernel] sched/numa: Use unsigned longs for numa group fault stats (Rik van Riel) [683513]
-- [kernel] sched/numa: Skip some page migrations after a shared fault (Rik van Riel) [683513]
-- [kernel] sched/numa: Remove the numa_balancing_scan_period_reset sysctl (Rik van Riel) [683513]
-- [kernel] sched/numa: Adjust scan rate in task_numa_placement (Rik van Riel) [683513]
-- [kernel] sched/numa: Take false sharing into account when adapting scan rate (Rik van Riel) [683513]
-- [kernel] sched/numa: Be more careful about joining numa groups (Rik van Riel) [683513]
-- [kernel] sched/numa: Avoid migrating tasks that are placed on their preferred node (Rik van Riel) [683513]
-- [kernel] sched/numa: Fix task or group comparison (Rik van Riel) [683513]
-- [kernel] sched/numa: Decide whether to favour task or group weights based on swap candidate relationships (Rik van Riel) [683513]
-- [kernel] sched/numa: Add debugging (Rik van Riel) [683513]
-- [kernel] sched/numa: Prevent parallel updates to group stats during placement (Rik van Riel) [683513]
-- [kernel] sched/numa: Call task_numa_free() from do_execve () (Rik van Riel) [683513]
-- [kernel] sched/numa: Use group fault statistics in numa placement (Rik van Riel) [683513]
-- [kernel] sched/numa: Stay on the same node if CLONE_VM (Rik van Riel) [683513]
-- [mm] numa: Do not batch handle PMD pages (Rik van Riel) [683513]
-- [mm] numa: Do not group on RO pages (Rik van Riel) [683513]
-- [mm] numa: Copy cpupid on page migration (Rik van Riel) [683513]
-- [kernel] sched/numa: Report a NUMA task group ID (Rik van Riel) [683513]
-- [kernel] sched/numa: Use {cpu, pid} to create task groups for shared faults (Rik van Riel) [683513]
-- [mm] numa: Change page last {nid, pid} into {cpu, pid} (Rik van Riel) [683513]
-- [kernel] sched/numa: Fix placement of workloads spread across multiple nodes (Rik van Riel) [683513]
-- [kernel] sched/numa: Favor placing a task on the preferred node (Rik van Riel) [683513]
-- [kernel] sched/numa: Use a system-wide search to find swap/migration candidates (Rik van Riel) [683513]
-- [kernel] sched/numa: Introduce migrate_swap() (Rik van Riel) [683513]
-- [kernel] stop_machine: Introduce stop_two_cpus() (Rik van Riel) [683513]
-- [mm] numa: Trap pmd hinting faults only if we would otherwise trap PTE faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Do not trap hinting faults for shared libraries (Rik van Riel) [683513]
-- [kernel] sched/numa: Increment numa_migrate_seq when task runs in correct location (Rik van Riel) [683513]
-- [kernel] sched/numa: Retry migration of tasks to CPU on a preferred node (Rik van Riel) [683513]
-- [kernel] sched/numa: Avoid overloading CPUs on a preferred NUMA node (Rik van Riel) [683513]
-- [kernel] numa: Limit NUMA scanning to migrate-on-fault VMAs (Rik van Riel) [683513]
-- [kernel] sched/numa: Do not migrate memory immediately after switching node (Rik van Riel) [683513]
-- [mm] sched/numa: Set preferred NUMA node based on number of private faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Remove check that skips small VMAs (Rik van Riel) [683513]
-- [mm] numa: Scan pages with elevated page_mapcount (Rik van Riel) [683513]
-- [kernel] sched/numa: Check current-> mm before allocating NUMA faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Add infrastructure for split shared/ private accounting of NUMA hinting faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Reschedule task on preferred NUMA node once selected (Rik van Riel) [683513]
-- [kernel] sched/numa: Resist moving tasks towards nodes with fewer hinting faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Favour moving tasks towards the preferred node (Rik van Riel) [683513]
-- [kernel] sched/numa: Update NUMA hinting faults once per scan (Rik van Riel) [683513]
-- [kernel] sched/numa: Select a preferred node with the most numa hinting faults (Rik van Riel) [683513]
-- [mm] sched/numa: Track NUMA hinting faults on per-node basis (Rik van Riel) [683513]
-- [mm] sched/numa: Slow scan rate if no NUMA hinting faults are being recorded (Rik van Riel) [683513]
-- [mm] sched/numa: Set the scan rate proportional to the memory usage of the task being scanned (Rik van Riel) [683513]
-- [mm] sched/numa: Initialise numa_next_scan properly (Rik van Riel) [683513]
-- [mm] sched/numa: Continue PTE scanning even if migrate rate limited (Rik van Riel) [683513]
-- [mm] sched/numa: Mitigate chance that same task always updates PTEs (Rik van Riel) [683513]
-- [mm] numa: Do not migrate or account for hinting faults on the zero page (Rik van Riel) [683513]
-- [mm] Only flush TLBs if a transhuge PMD is modified for NUMA pte scanning (Rik van Riel) [683513]
-- [mm] Do not flush TLB during protection change if !pte_present && !migration_entry (Rik van Riel) [683513]
-- [mm] Account for a THP NUMA hinting update as one PTE update (Rik van Riel) [683513]
-- [mm] Close races between THP migration and PMD numa clearing (Rik van Riel) [683513]
-- [mm] numa: Sanitize task_numa_fault() callsites (Rik van Riel) [683513]
-- [mm] Prevent parallel splits during THP migration (Rik van Riel) [683513]
-- [mm] Wait for THP migrations to complete during NUMA hinting faults (Rik van Riel) [683513]
-- [mm] numa: Do not account for a hinting fault if we raced (Rik van Riel) [683513]
-- [mm] sched/numa: Fix comments (Rik van Riel) [683513]
-- [mm] numa: Document automatic NUMA balancing sysctls (Rik van Riel) [683513]
-- [kernel] sched: monolithic code dump of what is being pushed (Rik van Riel) [683513]
-- [kernel] sched: Use an accessor to read the rq clock (Rik van Riel) [683513]
-- [kernel] sched: fix NUMA balancing when !SCHED_DEBUG (Rik van Riel) [683513]
-- [kernel] sched: Ensure update_cfs_shares() is called for parents of continuously-running tasks (Rik van Riel) [683513]
-- [kernel] sched: Fix some kernel-doc warnings (Rik van Riel) [683513]
-- [virt] kvm/vmx: do not check bit 12 of EPT violation exit qualification when undefined (Gleb Natapov) [1009441]
-- [virt] kvm/vmx: set "blocked by NMI" flag if EPT violation happens during IRET from NMI (Gleb Natapov) [1009441]
-
-* Fri Oct 11 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-34.el7]
-- [netdrv] netxen_nic: Update version to 4.0.81 (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: clean up unnecessary MSI/MSI-X capability find (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: Convert mac address uses of 6 to ETH_ALEN (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: replace strict_strtoul() with kstrtoul() (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: Avoid mixed mode interrupts (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: netxen_setup_intr() function code cleanup (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: Log proper error message in case of mismatched adapter type (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: Log driver version with firmware version (Chad Dupuis) [725019]
-- [tools] perf/diff: Add generic order option for compute sorting (Jiri Olsa) [1011529]
-- [tools] perf/diff: Making compute functions static (Jiri Olsa) [1011529]
-- [tools] perf/diff: Update perf diff documentation for multiple data comparison (Jiri Olsa) [1011529]
-- [tools] perf/diff: Change diff command to work over multiple data files (Jiri Olsa) [1011529]
-- [tools] perf/diff: Move columns into struct data__file (Jiri Olsa) [1011529]
-- [tools] perf/diff: Move diff related columns into diff command (Jiri Olsa) [1011529]
-- [tools] perf/diff: Display data file info ahead of the diff output (Jiri Olsa) [1011529]
-- [tools] perf/hists: Marking dummy hists entries (Jiri Olsa) [1011529]
-- [tools] perf/diff: Switching the base hists to be pairs head (Jiri Olsa) [1011529]
-- [tools] perf/diff: Introducing diff_data object to hold files (Jiri Olsa) [1011529]
-- [tools] perf: Centralize default columns init in perf_hpp__init (Jiri Olsa) [1011529]
-- [tools] perf: Add struct perf_hpp_fmt into hpp callbacks (Jiri Olsa) [1011529]
-- [s390] vmcore: use vmcore for zfcpdump (Hendrik Brueckner) [1012102]
-- [fs] proc/vmcore: enable /proc/vmcore mmap for s390 (Hendrik Brueckner) [1012102]
-- [s390] vmcore: implement remap_oldmem_pfn_range for s390 (Hendrik Brueckner) [1012102]
-- [fs] proc/vmcore: introduce remap_oldmem_pfn_range() (Hendrik Brueckner) [1012102]
-- [s390] vmcore: use ELF header in new memory feature (Hendrik Brueckner) [1012102]
-- [fs] proc/vmcore: introduce ELF header in new memory feature (Hendrik Brueckner) [1012102]
-- [fs] proc/vmcore: Disable mmap for s390 (Hendrik Brueckner) [1012102]
-- [s390] kdump: Allow copy_oldmem_page() copy to virtual memory (Hendrik Brueckner) [1012102]
-- [tracing] Add function probe to trigger a ftrace dump of current CPU trace (Jiri Olsa) [1011527]
-- [tracing] Add function probe to trigger a ftrace dump to console (Jiri Olsa) [1011527]
-- [virt] xen-gnt: prevent adding duplicate gnt callbacks (Radim Krcmar) [1013818]
-- [x86] microcode_amd: Fix patch level reporting for family 15h (Prarit Bhargava) [1014400]
-- [tty] Fix SIGTTOU not sent with tcflush() (Oleg Nesterov) [1012397]
-- [powerpc] sysfs: Disable writing to PURR in guest mode (Steve Best) [1015450]
-- [powerpc] vio: fix modalias_show return values (Prarit Bhargava) [1007924]
-- [powerpc] Correct FSCR bit definitions (Steve Best) [1008893]
-- [x86] microcode/amd: Fix early microcode loading (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Make cpu_has_amd_erratum() use the correct struct cpuinfo_x86 (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Fix error path in apply_microcode_amd() (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Another early loading fixup (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Allow multiple families' bin files appended together (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Make find_ucode_in_initrd() __init (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Fix warnings and errors on with CONFIG_MICROCODE=m (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Early microcode patch loading support for AMD (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Refactor functions to prepare for early loading (Jarod Wilson) [1016168]
-- [x86] microcode: Vendor abstract out save_microcode_in_initrd() (Jarod Wilson) [1016168]
-- [x86] microcode/intel: Correct typo in printk (Jarod Wilson) [1016168]
-- [block] nvme: Update nvme_id_power_state with latest spec (David Milburn) [1005908]
-- [block] nvme: Split header file into user-visible and kernel-visible pieces (David Milburn) [1005908]
-- [block] nvme: Merge issue on character device bring-up (David Milburn) [1005908]
-- [block] nvme: Handle ioremap failure (David Milburn) [1005908]
-- [block] nvme: Add pci suspend/resume driver callbacks (David Milburn) [1005908]
-- [block] nvme: Use normal shutdown (David Milburn) [1005908]
-- [block] nvme: Separate controller init from disk discovery (David Milburn) [1005908]
-- [block] nvme: Separate queue alloc/free from create/delete (David Milburn) [1005908]
-- [block] nvme: Group pci related actions in functions (David Milburn) [1005908]
-- [block] nvme: Disk stats for read/write commands only (David Milburn) [1005908]
-- [block] nvme: Bring up cdev on set feature failure (David Milburn) [1005908]
-- [block] nvme: Fix checkpatch issues (David Milburn) [1005908]
-- [block] nvme: Namespace IDs are unsigned (David Milburn) [1005908]
-- [block] nvme: Call nvme_process_cq from submission path (David Milburn) [1005908]
-- [block] nvme: Remove "process_cq did something" message (David Milburn) [1005908]
-- [block] nvme: Return correct value from interrupt handler (David Milburn) [1005908]
-- [block] nvme: Disk IO statistics (David Milburn) [1005908]
-- [block] nvme: Restructure MSI / MSI-X setup (David Milburn) [1005908]
-- [block] nvme: Use kzalloc instead of kmalloc+memset (David Milburn) [1005908]
-
-* Fri Oct 04 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-33.el7]
-- [fs] nfs: Give "flavor" an initial value to fix a compile warning (Jeff Layton) [1009119]
-- [fs] nfs: try SECINFO_NO_NAME flavs until one works (Jeff Layton) [1009119]
-- [fs] nfs: Ensure memory ordering between nfs4_ds_connect and nfs4_fl_prepare_ds (Jeff Layton) [1009119]
-- [fs] nfs: nfs4_fl_prepare_ds, fix bugs when the connect attempt fails (Jeff Layton) [1009119]
-- [fs] nfs: Honour the 'opened' parameter in the atomic_open() filesystem method (Jeff Layton) [1009119]
-- [net] sunrpc: rpcsec_gss, fix crash on destroying gss auth (Jeff Layton) [1009119]
-- [net] sunrpc: No, I did not intend to create a 256KiB hashtable (Jeff Layton) [1009119]
-- [net] sunrpc: Add missing kuids conversion for printing (Jeff Layton) [1009119]
-- [fs] nfs: sp4_mach_cred, WARN_ON -> WARN_ON_ONCE (Jeff Layton) [1009119]
-- [fs] nfs: sp4_mach_cred, no need to ref count creds (Jeff Layton) [1009119]
-- [fs] nfs: fix SECINFO* use of put_rpccred (Jeff Layton) [1009119]
-- [fs] nfs: sp4_mach_cred: ask for WRITE and COMMIT (Jeff Layton) [1009119]
-- [fs] nfs: fix decode_free_stateid (Jeff Layton) [1009119]
-- [fs] nfs: use mach cred for SECINFO_NO_NAME w/ integrity (Jeff Layton) [1009119]
-- [fs] nfs: nfs_compare_super shouldn't check the auth flavour unless 'sec=' was set (Jeff Layton) [1009119]
-- [fs] nfs: Allow security autonegotiation for submounts (Jeff Layton) [1009119]
-- [fs] nfs: Disallow security negotiation for lookups when 'sec=' is specified (Jeff Layton) [1009119]
-- [fs] nfs: Fix security auto-negotiation (Jeff Layton) [1009119]
-- [fs] nfs: Clean up nfs_parse_security_flavors() (Jeff Layton) [1009119]
-- [fs] nfs: Clean up the auth flavour array mess (Jeff Layton) [1009119]
-- [fs] nfs: Use MDS auth flavor for data server connection (Jeff Layton) [1009119]
-- [fs] nfs: Map NFS4ERR_WRONG_CRED to EPERM (Jeff Layton) [1009119]
-- [fs] nfs: Add SP4_MACH_CRED write and commit support (Jeff Layton) [1009119]
-- [fs] nfs: Add SP4_MACH_CRED stateid support (Jeff Layton) [1009119]
-- [fs] nfs: Add SP4_MACH_CRED secinfo suppor (Jeff Layton) [1009119]
-- [fs] nfs: Add SP4_MACH_CRED cleanup support (Jeff Layton) [1009119]
-- [fs] nfs: Add state protection handler (Jeff Layton) [1009119]
-- [fs] nfs: Minimal SP4_MACH_CRED implementation (Jeff Layton) [1009119]
-- [net] sunrpc: Replace pointer values with task->tk_pid and rpc_clnt->cl_clid (Jeff Layton) [1009119]
-- [net] sunrpc: Add an identifier for struct rpc_clnt (Jeff Layton) [1009119]
-- [net] sunrpc: Ensure rpc_task->tk_pid is available for tracepoints (Jeff Layton) [1009119]
-- [fs] nfs: Document the recover_lost_locks kernel parameter (Jeff Layton) [1009119]
-- [fs] nfs: Don't try to recover NFSv4 locks when they are lost (Jeff Layton) [1009119]
-- [net] sunrpc: Add tracepoints to help debug socket connection issues (Jeff Layton) [1009119]
-- [fs] nfs: Fix warning introduced by NFSv4.0 transport blocking patches (Jeff Layton) [1009119]
-- [fs] nfs: fix CONFIG_NFS_V4_1 not enabled "make C=2" warning (Jeff Layton) [1009119]
-- [fs] nfs: Update session draining barriers for NFSv4.0 transport blocking (Jeff Layton) [1009119]
-- [fs] nfs: Add nfs4_sequence calls for OPEN_CONFIRM (Jeff Layton) [1009119]
-- [fs] nfs: Add nfs4_sequence calls for RELEASE_LOCKOWNER (Jeff Layton) [1009119]
-- [fs] nfs: Enable nfs4_setup_sequence() for DELEGRETURN (Jeff Layton) [1009119]
-- [fs] nfs: NFSv4.0 transport blocking (Jeff Layton) [1009119]
-- [fs] nfs: Add a slot table to struct nfs_client for NFSv4.0 transport blocking (Jeff Layton) [1009119]
-- [fs] nfs: Add global helper for releasing slot table resources (Jeff Layton) [1009119]
-- [fs] nfs: Add global helper to set up a stand-along nfs4_slot_table (Jeff Layton) [1009119]
-- [fs] nfs: Enable slot table helpers for NFSv4.0 (Jeff Layton) [1009119]
-- [fs] nfs: Remove unused call_sync minor version op (Jeff Layton) [1009119]
-- [fs] nfs: Add RPC callouts to start NFSv4.0 synchronous requests (Jeff Layton) [1009119]
-- [fs] nfs: Common versions of sequence helper functions (Jeff Layton) [1009119]
-- [fs] nfs: Clean up nfs4_setup_sequence() (Jeff Layton) [1009119]
-- [fs] nfs: Rename nfs41_call_sync_data as a common data structure (Jeff Layton) [1009119]
-- [fs] nfs: When displaying session slot numbers, use "u" consistently (Jeff Layton) [1009119]
-- [fs] nfs: Ensure that rmdir() waits for sillyrenames to complete (Jeff Layton) [1009119]
-- [fs] nfs: use the mach cred for SECINFO w/ integrity (Jeff Layton) [1009119]
-- [net] sunrpc: refactor rpcauth_checkverf error returns (Jeff Layton) [1009119]
-- [fs] nfs: avoid expired credential keys for buffered writes (Jeff Layton) [1009119]
-- [net] sunrpc: new rpc_credops to test credential expiry (Jeff Layton) [1009119]
-- [net] sunrpc: don't map EKEYEXPIRED to EACCES in call_refreshresult (Jeff Layton) [1009119]
-- [fs] nfs: Fix up two use-after-free issues with the new tracing code (Jeff Layton) [1009119]
-- [fs] nfs: remove incorrect "Lock reclaim failed!" warning (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging test_stateid events (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging slot table operations (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging layoutget/return/commit (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging reads and writes (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging getattr (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging the idmapper (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging delegations (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging rename (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging inode manipulations (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging lookup/create operations (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging file locking (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging file open (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging state management problems (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging NFS hard links (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging NFS rename and sillyrename issues (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging directory changes (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging generic file create events (Jeff Layton) [1009119]
-- [fs] nfs: Add event tracing for generic NFS lookups (Jeff Layton) [1009119]
-- [fs] nfs: Pass in lookup flags from nfs_atomic_open to nfs_lookup (Jeff Layton) [1009119]
-- [fs] nfs: Add event tracing for generic NFS events (Jeff Layton) [1009119]
-- [fs] nfs: refactor code for calculating the crc32 hash of a filehandle (Jeff Layton) [1009119]
-- [fs] nfs: Clean up nfs_sillyrename() (Jeff Layton) [1009119]
-- [fs] nfs: Fix an incorrect pointer declaration in decode_first_pnfs_layout_type (Jeff Layton) [1009119]
-- [fs] nfs: Deal with a sparse warning in nfs_idmap_get_key() (Jeff Layton) [1009119]
-- [fs] nfs: Deal with some more sparse warnings (Jeff Layton) [1009119]
-- [fs] nfs: Deal with a sparse warning in nfs4_opendata_alloc (Jeff Layton) [1009119]
-- [fs] nfs: Deal with a sparse warning in nfs3_proc_create (Jeff Layton) [1009119]
-- [fs] nfs: Remove the NFSv4 "open optimisation" from nfs_permission (Jeff Layton) [1009119]
-- [fs] nfs: Use clientid management rpc_clnt for secinfo_no_name (Jeff Layton) [1009119]
-- [fs] nfs: Use clientid management rpc_clnt for secinfo (Jeff Layton) [1009119]
-- [fs] nfs: Increase NFS4_DEF_SLOT_TABLE_SIZE (Jeff Layton) [1009119]
-- [fs] nfs: Remove unused authflavour parameter from init_client (Jeff Layton) [1009119]
-- [fs] nfs: Never use user credentials for lease renewal (Jeff Layton) [1009119]
-- [fs] nfs: Use root's credential for lease management when keytab is missing (Jeff Layton) [1009119]
-- [fs] nfs: Refuse mount attempts with proto=udp (Jeff Layton) [1009119]
-- [fs] nfs: Fix nfs4_init_uniform_client_string for net namespaces (Jeff Layton) [1009119]
-- [fs] nfs: Use the mount point rpc_clnt for layoutreturn (Jeff Layton) [1009119]
-- [fs] nfs: Fix return type of nfs4_end_drain_session() stub (Jeff Layton) [1009119]
-- [fs] nfs: encode_attrs should not backfill the bitmap and attribute length (Jeff Layton) [1009119]
-- [net] sunrpc: Fix memory corruption issue on 32-bit highmem systems (Jeff Layton) [1009119]
-- [fs] nfs: Remove unnecessary call to nfs_setsecurity in nfs_fhget() (Jeff Layton) [1009119]
-- [fs] nfs: Fix the sync mount option for nfs4 mounts (Jeff Layton) [1009119]
-- [fs] nfs: Fix writeback performance issue on cache invalidation (Jeff Layton) [1009119]
-- [net] sunrpc: If the rpcbind channel is disconnected, fail the call to unregister (Jeff Layton) [1009119]
-- [net] sunrpc: Don't auto-disconnect from the local rpcbind socket (Jeff Layton) [1009119]
-- [hid] zeroplus: validate output report details (Frantisek Hrbata) [999907] {CVE-2013-2889}
-- [hid] provide a helper for validating hid reports (Frantisek Hrbata) [999907] {CVE-2013-2889}
-- [s390] zfcp: enable FCP hardware data router by default (Hendrik Brueckner) [980146]
-- [scsi] csiostor: fix failure to communicate with firmware, error -110 (Jay Fenlason) [917907]
-- [block] mtip32xx: add SRSI support (David Milburn) [842533]
-- [misc] hpilo: Correct panic when an AUX iLO is detected (Nigel Croxon) [996603]
-- [Documentation] add write up on module signing (Kyle McMartin) [905495]
-- [net] netfilter: SYNPROXY: let unrelated packets continue (Jesper Brouer) [1007439]
-- [net] netfilter: synproxy_core: fix warning in __nf_ct_ext_add_length() (Jesper Brouer) [1007439]
-- [net] netfilter: more strict TCP flag matching in SYNPROXY (Jesper Brouer) [1007439]
-- [net] netfilter: add IPv6 SYNPROXY target (Jesper Brouer) [1007439]
-- [net] syncookies: export cookie_v6_init_sequence/cookie_v6_check (Jesper Brouer) [1007439]
-- [net] netfilter: add SYNPROXY core/target (Jesper Brouer) [1007439]
-- [net] syncookies: export cookie_v4_init_sequence/cookie_v4_check (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: make sequence number adjustments usuable without NAT (Jesper Brouer) [1007439]
-- [net] netfilter: nf_defrag_ipv6.o included twice (Jesper Brouer) [1007439]
-- [net] netfilter: ip[6]t_REJECT, tcp-reset using wrong MAC source if bridged (Jesper Brouer) [1007439]
-- [net] netfilter: export xt_HMARK.h to userland (Jesper Brouer) [1007439]
-- [net] netfilter: export xt_rpfilter.h to userland (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: fix uninitialized variable (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_queue: allow to attach expectations to conntracks (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: refactor ctnetlink_create_expect (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: fix tcp_in_window for Fast Open (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: don't send destroy events from iterator (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_{log, queue}, fix information leaks in netlink message (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPMSS: correct return value in tcpmss_mangle_packet (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPOPTSTRIP: fix possible off by one access (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPMSS: fix handling of malformed TCP header and options (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: use per-conntrack locking for sequence number adjustments (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: change sequence number adjustments to 32 bits (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: fix locking in nf_nat_seq_adjust() (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: remove duplicate code in ctnetlink (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: constify sk_buff argument to nf_ct_attach() (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: remove net_ratelimit() for LOG_INVALID() (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: fix incorrect NAT expectation dumping (Jesper Brouer) [1007439]
-- [net] netfilter: Fix build errors with xt_socket.c (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: fix broken v0 support (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: add XT_SOCKET_NOWILDCARD flag (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: avoid large timeout for mid-stream pickup (Jesper Brouer) [1007439]
-- [net] netfilter: check return code from nla_parse_tested (Jesper Brouer) [1007439]
-- [net] Convert uses of typedef ctl_table to struct ctl_table (Jesper Brouer) [1007439]
-- [net] netfilter: Implement RFC 1123 for FTP conntrack (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_queue: avoid peer_portid test (Jesper Brouer) [1007439]
-- [net] netfilter: don't panic on error while walking through the init path (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: use IP early demux (Jesper Brouer) [1007439]
-- [net] netfilter: xt_CT: optimize XT_CT_NOTRACK (Jesper Brouer) [1007439]
-- [net] qdisc: fix build with !CONFIG_NET_SCHED (Jesper Brouer) [1000395]
-- [net] qdisc: make args to qdisc_create_default const (Jesper Brouer) [1000395]
-- [net] qdisc: allow setting default queuing discipline (Jesper Brouer) [1000395]
-- [net] Remove extern from include/net/ scheduling prototypes (Jesper Brouer) [1000395]
-- [net] htb: fix sign extension bug (Jesper Brouer) [1000395]
-- [net] htb: refactor struct htb_sched fields for performance (Jesper Brouer) [1000395]
-- [net] htb: reorder struct htb_class fields for performance (Jesper Brouer) [1000395]
-- [net] htb: do not setup default rate estimators (Jesper Brouer) [1000395]
-- [net] net_sched: add 64bit rate estimators (Jesper Brouer) [1000395]
-
-* Fri Oct 04 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-32.el7]
-- [net] netfilter: SYNPROXY: let unrelated packets continue (Jesper Brouer) [1007439]
-- [net] netfilter: synproxy_core: fix warning in __nf_ct_ext_add_length() (Jesper Brouer) [1007439]
-- [net] netfilter: more strict TCP flag matching in SYNPROXY (Jesper Brouer) [1007439]
-- [net] netfilter: add IPv6 SYNPROXY target (Jesper Brouer) [1007439]
-- [net] syncookies: export cookie_v6_init_sequence/cookie_v6_check (Jesper Brouer) [1007439]
-- [net] netfilter: add SYNPROXY core/target (Jesper Brouer) [1007439]
-- [net] syncookies: export cookie_v4_init_sequence/cookie_v4_check (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: make sequence number adjustments usuable without NAT (Jesper Brouer) [1007439]
-- [net] netfilter: nf_defrag_ipv6.o included twice (Jesper Brouer) [1007439]
-- [net] netfilter: ip[6]t_REJECT, tcp-reset using wrong MAC source if bridged (Jesper Brouer) [1007439]
-- [net] netfilter: export xt_HMARK.h to userland (Jesper Brouer) [1007439]
-- [net] netfilter: export xt_rpfilter.h to userland (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: fix uninitialized variable (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_queue: allow to attach expectations to conntracks (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: refactor ctnetlink_create_expect (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: fix tcp_in_window for Fast Open (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: don't send destroy events from iterator (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_{log, queue}, fix information leaks in netlink message (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPMSS: correct return value in tcpmss_mangle_packet (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPOPTSTRIP: fix possible off by one access (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPMSS: fix handling of malformed TCP header and options (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: use per-conntrack locking for sequence number adjustments (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: change sequence number adjustments to 32 bits (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: fix locking in nf_nat_seq_adjust() (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: remove duplicate code in ctnetlink (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: constify sk_buff argument to nf_ct_attach() (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: remove net_ratelimit() for LOG_INVALID() (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: fix incorrect NAT expectation dumping (Jesper Brouer) [1007439]
-- [net] netfilter: Fix build errors with xt_socket.c (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: fix broken v0 support (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: add XT_SOCKET_NOWILDCARD flag (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: avoid large timeout for mid-stream pickup (Jesper Brouer) [1007439]
-- [net] netfilter: check return code from nla_parse_tested (Jesper Brouer) [1007439]
-- [net] Convert uses of typedef ctl_table to struct ctl_table (Jesper Brouer) [1007439]
-- [net] netfilter: Implement RFC 1123 for FTP conntrack (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_queue: avoid peer_portid test (Jesper Brouer) [1007439]
-- [net] netfilter: don't panic on error while walking through the init path (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: use IP early demux (Jesper Brouer) [1007439]
-- [net] netfilter: xt_CT: optimize XT_CT_NOTRACK (Jesper Brouer) [1007439]
-- [net] qdisc: fix build with !CONFIG_NET_SCHED (Jesper Brouer) [1000395]
-- [net] qdisc: make args to qdisc_create_default const (Jesper Brouer) [1000395]
-- [net] qdisc: allow setting default queuing discipline (Jesper Brouer) [1000395]
-- [net] Remove extern from include/net/ scheduling prototypes (Jesper Brouer) [1000395]
-- [net] htb: fix sign extension bug (Jesper Brouer) [1000395]
-- [net] htb: refactor struct htb_sched fields for performance (Jesper Brouer) [1000395]
-- [net] htb: reorder struct htb_class fields for performance (Jesper Brouer) [1000395]
-- [net] htb: do not setup default rate estimators (Jesper Brouer) [1000395]
-- [net] net_sched: add 64bit rate estimators (Jesper Brouer) [1000395]
-
-* Mon Sep 30 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-31.el7]
-- [watchdog] hpwdt: Patch to ignore auxilary iLO devices (Nigel Croxon) [996605]
-- [s390] tx: allow program interruption filtering in user space (Hendrik Brueckner) [1006517]
-- [block] add padding for kabi to block_device_operations (Don Zickus) [988500]
-- [fs] gfs2: Don't flag consistency error if first mounter is a spectator (Robert S Peterson) [1004448]
-- [tty] disassociate_ctty() sends the extra SIGCONT (Oleg Nesterov) [1011820]
-- [x86] mm: Add memory tracking support for 1G hugepages (David Bulkow) [1000149]
-- [tty] hvc_iucv: Disconnect IUCV connection when lowering DTR (Hendrik Brueckner) [1007571]
-- [tty] hvc_console: Add DTR/RTS callback to handle HUPCL control (Hendrik Brueckner) [1007571]
-- [netdrv] enic: update enic maintainers and driver (Stefan Assmann) [747385]
-- [netdrv] enic: Exposing symbols for Cisco's low latency driver (Stefan Assmann) [747385]
-- [netdrv] enic: Try DMA 64 first, then failover to DMA (Stefan Assmann) [747385]
-- [netdrv] enic: record q_number and rss_hash for skb (Stefan Assmann) [747385]
-- [netdrv] enic: Add multi tx support for enic (Stefan Assmann) [747385]
-- [netdrv] enic: Generate notification of hardware crash (Stefan Assmann) [747385]
-- [netdrv] enic: Add an interface for USNIC to interact with firmware (Stefan Assmann) [747385]
-- [netdrv] enic: Adding support for Cisco Low Latency NIC (Stefan Assmann) [747385]
-- [netdrv] enic: Move ethtool code to a separate file (Stefan Assmann) [747385]
-- [netdrv] enic: release rtnl_lock on error-path (Stefan Assmann) [747385]
-- [powerpc] perf: Power7 Update testing ABI to list CPI-stack events (Steve Best) [1009105]
-- [powerpc] perf: Make Power7 events available for perf (Steve Best) [1009105]
-- [powerpc] perf: fix a typo of a Power7 event name (Steve Best) [1009105]
-- [tools] perf/tests: Add parse events tests for leader sampling (Jiri Olsa) [1011533]
-- [tools] perf/tests: Add attr record group sampling test (Jiri Olsa) [1011533]
-- [tools] perf: Add 'S' event/group modifier to read sample value (Jiri Olsa) [1011533]
-- [tools] perf/evsel: Add PERF_SAMPLE_READ sample related processing (Jiri Olsa) [1011533]
-- [tools] perf/evlist: Add perf_evlist__id2sid method to get event ID related data (Jiri Olsa) [1011533]
-- [tools] perf/evlist: Fix event ID retrieval for group format read case (Jiri Olsa) [1011533]
-- [tools] perf: Add support for parsing PERF_SAMPLE_READ sample type (Jiri Olsa) [1011533]
-- [kernel] perf/evlist: Use PERF_EVENT_IOC_ID perf ioctl to read event id (Jiri Olsa) [1011533]
-- [kernel] perf: Do not get values from disabled counters in group format read (Jiri Olsa) [1011533]
-- [kernel] perf: Add PERF_EVENT_IOC_ID ioctl to return event ID (Jiri Olsa) [1011533]
-- [kernel] add support for init_array constructors fix (Frantisek Hrbata) [824466]
-- [kernel] add support for init_array constructors (Frantisek Hrbata) [824466]
-- [kernel] gcov: compile specific gcov implementation based on gcc version (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 47 gcov format fix 3 (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 47 gcov format checkpatch fixes (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 47 gcov format fix fix (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 47 gcov format fix (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 4.7 gcov format (Frantisek Hrbata) [824466]
-- [kernel] gcov: move gcov structs definitions to a gcc version specific file (Frantisek Hrbata) [824466]
-
-* Mon Sep 30 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-30.el7]
-- [drm] qxl: add delayed fb operations (Dave Airlie) [1002056]
-- [edac] Fix lockdep splat (Aristeu Rozanski) [967459]
-- [mm] vmalloc: fix memleak in __vunmap (Jan Stancek) [1012358]
-- [x86] perf_event_amd: Rework AMD PMU init code (Prarit Bhargava) [1000672]
-- [md] dm: add reserved_bio_based_ios module parameter (Mike Snitzer) [1010450]
-- [md] dm: add reserved_rq_based_ios module parameter (Mike Snitzer) [1010450]
-- [md] dm: lower bio-based mempool reservation (Mike Snitzer) [1010450]
-- [block] Add nr_bios to block_rq_remap tracepoint (Mike Snitzer) [1010450]
-- [md] dm-mpath: disable WRITE SAME if it fails (Mike Snitzer) [987454]
-- [md] dm-mpath: do not fail path on -ENOSPC (Mike Snitzer) [1010437]
-- [scsi] Return ENODATA on medium error (Mike Snitzer) [1010437]
-- [scsi] return ENOSPC on thin provisioning failure (Mike Snitzer) [1010437]
-- [scsi] Set hostbyte status in scsi_check_sense() (Mike Snitzer) [1010437]
-- [scsi] Document enhanced error codes (Mike Snitzer) [1010437]
-- [md] dm-thin: do not expose non-zero discard limits if discards disabled (Mike Snitzer) [998421]
-- [md] dm-snapshot: fix performance degradation due to small hash size (Mike Snitzer) [1010437]
-- [md] dm-snapshot: workaround for a false positive lockdep warning (Mike Snitzer) [1010437]
-- [md] dm-stripe: silence a couple sparse warnings (Mike Snitzer) [1010437]
-- [md] dm-stats: fix possible counter corruption on 32-bit systems (Mike Snitzer) [1010437]
-- [md] dm: add statistics support (Mike Snitzer) [1010437]
-- [lib] math64: New separate div64_u64_rem helper (Mike Snitzer) [1010437]
-- [md] dm-thin: always return -ENOSPC if no_free_space is set (Mike Snitzer) [1010437]
-- [md] dm-ioctl: cleanup error handling in table_load (Mike Snitzer) [1010437]
-- [md] dm-ioctl: increase granularity of type_lock when loading table (Mike Snitzer) [1010437]
-- [md] dm-ioctl: prevent rename to empty name or uuid (Mike Snitzer) [1010437]
-- [md] dm-thin: set pool read-only if breaking_sharing fails block allocation (Mike Snitzer) [1010437]
-- [md] dm-thin: prefix pool error messages with pool device name (Mike Snitzer) [1010437]
-- [md] dm: allow error target to replace bio-based and request-based targets (Mike Snitzer) [1010437]
-- [md] dm-space-map: optimise sm_ll_dec and sm_ll_inc (Mike Snitzer) [1010437]
-- [md] dm-btree: prefetch child nodes when walking tree for a dm_btree_del (Mike Snitzer) [1010437]
-- [md] dm-btree: use pop_frame in dm_btree_del to cleanup code (Mike Snitzer) [1010437]
-- [md] dm-cache: eliminate holes in cache structure (Mike Snitzer) [1010437]
-- [md] dm-cache: fix stacking of geometry limits (Mike Snitzer) [1010437]
-- [md] dm-thin: fix stacking of geometry limits (Mike Snitzer) [1010437]
-- [md] dm-cache: add data block size limits to code and Documentation (Mike Snitzer) [1010437]
-- [md] dm: stop using WQ_NON_REENTRANT (Mike Snitzer) [1010437]
-- [md] dm-cache: avoid conflicting remove_mapping() in mq policy (Mike Snitzer) [1010437]
-- [md] dm: optimize reorder structure (Mike Snitzer) [1010437]
-- [md] dm: optimize use SRCU and RCU (Mike Snitzer) [1010437]
-- [md] dm-bufio: submit writes outside lock (Mike Snitzer) [1010437]
-- [md] dm-cache: fix arm link errors with inline (Mike Snitzer) [1010437]
-- [md] dm-verity: use __ffs and __fls (Mike Snitzer) [1010437]
-- [md] dm-flakey: correct ctr alloc failure mesg (Mike Snitzer) [1010437]
-- [md] dm-verity: remove pointless comparison (Mike Snitzer) [1010437]
-- [md] dm: use __GFP_HIGHMEM in __vmalloc (Mike Snitzer) [1010437]
-- [md] dm-verity: fix inability to use a few specific devices sizes (Mike Snitzer) [1010437]
-- [md] dm-ioctl: set noio flag to avoid __vmalloc deadlock (Mike Snitzer) [1010437]
-- [md] dm-mpath: fix ioctl deadlock when no paths (Mike Snitzer) [1010437]
-- [powerpc] Default arch idle could cede processor on pseries (Steve Best) [1008895]
-
-* Wed Sep 25 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-29.el7]
-- [s390] zfcp: remove access control tables interface (keep sysfs files) (Hendrik Brueckner) [1006516]
-- [s390] zfcp: fix lock imbalance by reworking request queue locking (Hendrik Brueckner) [1006525]
-- [s390] zfcp: fix schedule-inside-lock in scsi_device list loops (Hendrik Brueckner) [1006524]
-- [x86] setup: avoid remapping data in parse_setup_data() (Nigel Croxon) [1004428]
-- [hid] validate HID report id size (Frantisek Hrbata) [1000454] {CVE-2013-2888}
-- [kernel] userns: prevent the use of user namespaces (Aristeu Rozanski) [993320]
-- [crypto] x509: don't reject not-yet-valid keys (kyle mcmartin) [905910]
-- [kernel] perf: Prevent race in unthrottling code (Jiri Olsa) [992941]
-- [s390] pci: use adapter interrupt vector helpers (Hendrik Brueckner) [1005896]
-- [s390] pci: cleanup function names (Hendrik Brueckner) [1005896]
-- [s390] airq: introduce adapter interrupt vector helper (Hendrik Brueckner) [1005896]
-- [s390] pci: use virtual memory for iommu bitmap (Hendrik Brueckner) [1005896]
-- [s390] cio: fix unlocked access of global bitmap (Hendrik Brueckner) [1005896]
-- [s390] pci: update function handle after resume from hibernate (Hendrik Brueckner) [1005896]
-- [s390] pci: try harder to modify a function (Hendrik Brueckner) [1005896]
-- [s390] pci: split lpf (Hendrik Brueckner) [1005896]
-- [s390] hibernate: add early resume function (Hendrik Brueckner) [1005896]
-- [s390] pci: add recover sysfs knob (Hendrik Brueckner) [1005896]
-- [s390] pci: use claim_resource (Hendrik Brueckner) [1005896]
-- [s390] pci/hotplug: convert to be builtin only (Hendrik Brueckner) [1005896]
-- [s390] airq: simplify adapter interrupt code (Hendrik Brueckner) [1005896]
-- [s390] qdio: cleanup chsc SADC usage (Hendrik Brueckner) [1005896]
-- [s390] qdio: cleanup chsc SSQD usage (Hendrik Brueckner) [1005896]
-- [s390] pci: remove per device debug attribute (Hendrik Brueckner) [1005896]
-- [s390] pci: sysfs remove strlen (Hendrik Brueckner) [1005896]
-- [s390] pci: remove pdev during unplug (Hendrik Brueckner) [1005896]
-- [s390] pci: cleanup hotplug code (Hendrik Brueckner) [1005896]
-- [s390] pci: implement pcibios_release_device (Hendrik Brueckner) [1005896]
-- [s390] pci: use to_pci_dev (Hendrik Brueckner) [1005896]
-- [netdrv] sfc: check for allocation failure (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Update copyright banners (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add support for Solarflare SFC9100 family (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make efx_mcdi_{init, fini}() call efx_mcdi_drv_attach() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Allocate NVRAM partition ID range for PHY images (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add EF10 register and structure definitions (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Extend struct efx_tx_buffer to allow pushing option descriptors (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Use a global count of active queues instead of pending drains (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Prepare for RX scatter on EF10 (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Initialise IRQ moderation for all NIC types from efx_init_eventq() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Allow efx_nic_type::dimension_resources to fail (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Allow event queue initialisation to fail (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Document conditions for multicast replication vs filter replacement (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Implement asynchronous MCDI requests (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove unnecessary use of atomic_t (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Refactor efx_mcdi_rpc_start() and efx_mcdi_copyin() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add support for new board sensors (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Use extended MC_CMD_SENSOR_INFO and MC_CMD_READ_SENSORS (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Return an error code when a sensor is busy (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add support for reading packet length from prefix (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add TX merged completion counter (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Generalise packet hash lookup to support EF10 RX prefix (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rename EFX_PAGE_BLOCK_SIZE to EFX_VI_PAGE_SIZE and adjust comments (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove early call to efx_nic_type::reconfigure_mac in efx_reset_up() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: use MCDI epoch flag to improve MC reboot detection in the driver (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add EF10 support for TX/RX DMA error events handling (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add a function pointer to abstract write of host time into NIC shared memory (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: PTP MCDI requests need to initialise periph ID field (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Delegate MAC/NIC statistic description to efx_nic_type (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove driver-local struct ethtool_string (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove more left-overs from Falcon GMAC support (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move MTD operations into efx_nic_type (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move NIC-type-specific MTD partition date into separate structures (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Eliminate struct efx_mtd (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rename SPI stuff to show that it is Falcon-specific (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Cleanup Falcon-arch simple MAC filter state (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Define and use MCDI_POPULATE_DWORD_{1, 2, 3, 4, 5, 6, 7} (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add flag for stack-owned RX MAC filters (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Refactor Falcon-arch filter removal (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make most filter operations NIC-type-specific (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Refactor Falcon-arch search limit reset (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Split Falcon-arch-specific and common filter state (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Extend and abstract efx_filter_spec to cover Huntington/EF10 (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Name the RX drop queue ID (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rename Falcon-arch filter implementation types and functions (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove unused filter_flags variables and efx_farch_filter_id_flags() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Do not assume efx_nic_type::ev_fini is idempotent (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: EFX_WORKAROUND_ALWAYS is really specific to Falcon-architecture (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Get rid of per-NIC-type phys_addr_channels and mem_map_size (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Update and improve kernel-doc for efx_mcdi_state & efx_mcdi_iface (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix race in completion handling (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add support for MCDI v2 (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Update MCDI protocol definitions for EF10 (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Translate MCDI error numbers received in events (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move and rename Falcon/Siena common NIC operations (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Refactor queue teardown sequence to allow for EF10 flush behaviour (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove bogus call to efx_release_tx_buffers() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Stop RX refill before flushing RX queues (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Limit scope of a Falcon A1 IRQ workaround (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rework IRQ enable/disable (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove efx_process_channel_now() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rename Falcon-architecture register definitions (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make struct efx_special_buffer less special (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add GFP flags to efx_nic_alloc_buffer() and make most callers allow blocking (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make MCDI independent of Siena (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make efx_mcdi_init() call efx_mcdi_handle_assertion() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Collect all MCDI port functions into mcdi_port.c (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move efx_mcdi_mac_reconfigure() to siena.c and rename (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move siena_reset_hw() and siena_map_reset_reason() into MCDI module (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add and use MCDI_SET_QWORD() and MCDI_SET_ARRAY_QWORD() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Ensure MCDI buffers, but not lengths, are dword aligned (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Use proper macros to declare and access MCDI arrays (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Introduce and use MCDI_CTL_SDU_LEN_MAX_V1 macro for Siena-specific code (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fill out the set of MCDI accessors (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rationalise MCDI buffer accessors (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Introduce and use MCDI_DECLARE_BUF macro (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move more Falcon-specific code and definitions into falcon.c (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move details of a Falcon bug workaround out of ethtool.c (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Use efx_mcdi_mon() to find efx_mcdi_mon structure from efx_nic (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: const-qualify source pointers for MMIO write functions (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix lookup of default RX MAC filters when steered using ethtool (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Enable RX scatter for flows steered by RFS (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix memory leak when discarding scattered packets (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Improve test for IOMMU in use (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix IRQ cleanup in case of a probe failure (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Do not pass non-TCP packets into GRO code (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Define and set RX buffer flag for packets parsed as TCP (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Enable accelerated RFS on vlans (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Report software timestamping capabilities (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Increase size of RX SKB header area (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Enable RX checksum offload for packets not handled by GRO (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix EEH with legacy interrupts (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Store port number in private data, not net_device::dev_id (Nikolay Aleksandrov) [1005248]
-
-* Mon Sep 23 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-28.el7]
-- [fs] namei: Add missing unlocks to error paths of mountpoint_last (Jeff Layton) [980172]
-- [fs] autofs4: fix device ioctl mount lookup (Jeff Layton) [980172]
-- [fs] namei: introduce kern_path_mountpoint() (Jeff Layton) [980172]
-- [fs] namei: rename user_path_umountat() to user_path_mountpoint_at() (Jeff Layton) [980172]
-- [fs] namei: take unlazy_walk() into umount_lookup_last() (Jeff Layton) [980172]
-- [fs] vfs: allow umount to handle mountpoints without revalidating them (Jeff Layton) [980172]
-- [acpi] apei: Soft-offline a page on firmware GHES notification (Janet Morgan) [984133]
-- [acpi] apei: Add a boot option to disable ff mode for corrected errors (Janet Morgan) [984133]
-- [mcheck] mce: Honour Firmware First for MCA banks listed in APEI HEST CMC (Janet Morgan) [984133]
-- [fs] cifs: Respect epoch value from create lease context v2 (Sachin Prabhu) [1007981]
-- [fs] cifs: Add create lease v2 context for SMB3 (Sachin Prabhu) [1007981]
-- [fs] cifs: Move parsing lease buffer to ops struct (Sachin Prabhu) [1007981]
-- [fs] cifs: Move creating lease buffer to ops struct (Sachin Prabhu) [1007981]
-- [fs] cifs: Store lease state itself rather than a mapped oplock value (Sachin Prabhu) [1007981]
-- [fs] cifs: Replace clientCanCache* bools with an integer (Sachin Prabhu) [1007981]
-- [fs] cifs: quiet sparse compile warning (Sachin Prabhu) [1007981]
-- [fs] cifs: Start using per session key for smb2/3 for signature generation (Sachin Prabhu) [1007981]
-- [fs] cifs: Add a variable specific to NTLMSSP for key exchange (Sachin Prabhu) [1007981]
-- [fs] cifs: Process post session setup code in respective dialect functions (Sachin Prabhu) [1007981]
-- [fs] cifs: convert to use le32_add_cpu() (Sachin Prabhu) [1007981]
-- [fs] cifs: Fix missing lease break (Sachin Prabhu) [1007981]
-- [fs] cifs: Fix a memory leak when a lease break comes (Sachin Prabhu) [1007981]
-- [fs] cifs: convert case-insensitive dentry ops to use new case conversion routines (Sachin Prabhu) [1007981]
-- [fs] cifs: add new case-insensitive conversion routines that are based on wchar_t's (Sachin Prabhu) [1007981]
-- [fs] cifs: Move and expand MAX_SERVER_SIZE definition (Sachin Prabhu) [1007981]
-- [fs] cifs: Expand max share name length to 256 (Sachin Prabhu) [1007981]
-- [fs] cifs: Move string length definitions to uapi (Sachin Prabhu) [1007981]
-- [fs] cifs: Implement follow_link for nounix CIFS mounts (Sachin Prabhu) [1007981]
-- [fs] cifs: Implement follow_link for SMB2 (Sachin Prabhu) [1007981]
-- [fs] cifs: display iocharset= option in /proc/mounts (Sachin Prabhu) [1007981]
-- [fs] cifs: create a new Documentation/ directory and move docfiles into it (Sachin Prabhu) [1007981]
-- [fs] cifs: ensure that srv_mutex is held when dealing with ssocket pointer (Sachin Prabhu) [1007981]
-- [fs] cifs: don't instantiate new dentries in readdir for inodes that need to be revalidated immediately (Sachin Prabhu) [1007981]
-- [fs] cifs: set sb->s_d_op before calling d_make_root() (Sachin Prabhu) [1007981]
-- [fs] cifs: file, initialize oparms.reconnect before using it (Sachin Prabhu) [1007981]
-- [fs] cifs: Do not attempt to do cifs operations reading symlinks with SMB2 (Sachin Prabhu) [1007981]
-- [fs] cifs: extend the buffer length enought for sprintf() using (Sachin Prabhu) [1007981]
-- [fs] dlm: log an error for unmanaged lockspaces (David Teigland) [1008005]
-- [acpi] acpi_ipmi, replace mutex with spin_lock_irqsave (Tony Camuso) [1007574]
-- [kernel] sched: Micro-optimize the smart wake-affine logic (Larry Woodman) [947186]
-- [kernel] sched: Implement smarter wake-affine logic (Larry Woodman) [947186]
-- [net] sunrpc: rpcauth_create needs to know about rpc_clnt clone status (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Share all credential caches on a per-transport basis (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Share rpc_pipes when an rpc_clnt owns multiple rpcsec auth caches (Jeff Layton) [1002576]
-- [net] sunrpc: Add a helper to allow sharing of rpc_pipefs directory objects (Jeff Layton) [1002576]
-- [net] sunrpc: Remove the rpc_client->cl_dentry (Jeff Layton) [1002576]
-- [fs] nfs: Convert idmapper to use the new framework for pipefs dentries (Jeff Layton) [1002576]
-- [net] sunrpc: Remove the obsolete auth-only interface for pipefs dentry management (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Switch auth_gss to use the new framework for pipefs dentries (Jeff Layton) [1002576]
-- [net] sunrpc: Add a framework to clean up management of rpc_pipefs directories (Jeff Layton) [1002576]
-- [fs] nfs: Fix a potentially Oopsable condition in __nfs_idmap_unregister (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Fix an Oopsable condition when creating/destroying pipefs objects (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Further cleanups (Jeff Layton) [1002576]
-- [net] sunrpc: Replace clnt->cl_principal (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Clean up upcall message allocation (Jeff Layton) [1002576]
-- [net] sunrpc: Cleanup rpc_setup_pipedir (Jeff Layton) [1002576]
-- [net] sunrpc: Remove unused struct rpc_clnt field cl_protname (Jeff Layton) [1002576]
-- [net] sunrpc: Deprecate rpc_client->cl_protname (Jeff Layton) [1002576]
-- [net] sunrpc/rpc_pipe: convert back to simple_dir_inode_operations (Jeff Layton) [1002576]
-- [fs] libfs: make simple_lookup() usable for filesystems that set ->s_d_op (Jeff Layton) [1002576]
-- [net] sunrpc: __rpc_lookup_create_exclusive, pass string instead of qstr (Jeff Layton) [1002576]
-- [net] sunrpc: rpc_create_*_dir, don't bother with qstr (Jeff Layton) [1002576]
-
-* Mon Sep 23 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-27.el7]
-- [netdrv] i40e: include i40e in kernel proper (Stefan Assmann) [726825]
-- [netdrv] i40e: debugfs interface (Stefan Assmann) [726825]
-- [netdrv] i40e: init code and hardware support (Stefan Assmann) [726825]
-- [netdrv] i40e: implement virtual device interface (Stefan Assmann) [726825]
-- [netdrv] i40e: driver core headers (Stefan Assmann) [726825]
-- [netdrv] i40e: driver ethtool core (Stefan Assmann) [726825]
-- [netdrv] i40e: transmit, receive, and NAPI (Stefan Assmann) [726825]
-- [netdrv] i40e: main driver core (Stefan Assmann) [726825]
-- [netdrv] e1000e: balance semaphore put/get for 82573 (Dean Nelson) [726816]
-- [netdrv] e1000e: resolve checkpatch JIFFIES_COMPARISON warning (Dean Nelson) [726816]
-- [netdrv] e1000e: Avoid kernel crash during shutdown (Dean Nelson) [726816]
-- [netdrv] e1000e: Add code to check for failure of pci_disable_link_state call (Dean Nelson) [726816]
-- [netdrv] e1000e: cleanup whitespace in recent commit (Dean Nelson) [726816]
-- [netdrv] e1000e: fix I217/I218 PHY initialization flow (Dean Nelson) [726816]
-- [netdrv] e1000e: do not resume device from RPM suspend to read PHY status registers (Dean Nelson) [726816]
-- [netdrv] e1000e: enable support for new device IDs (Dean Nelson) [726816]
-- [netdrv] e1000e: ethtool unnecessarily takes device out of RPM suspend (Dean Nelson) [726816]
-- [netdrv] e1000e: Tx hang on I218 when linked at 100Half and slow response at 10Mbps (Dean Nelson) [726816]
-- [netdrv] e1000e: low throughput using 4K jumbos on I218 (Dean Nelson) [726816]
-- [netdrv] e1000e: iAMT connections drop on driver unload when jumbo frames enabled (Dean Nelson) [726816]
-- [netdrv] e1000e: disable ASPM L1 on 82583 (Dean Nelson) [726816]
-- [netdrv] e1000e: Use marco instead of digit for defining e1000_rx_desc_packet_split (Dean Nelson) [726816]
-- [netdrv] e1000e: Remove duplicate assignment of default rx/tx ring size (Dean Nelson) [726816]
-- [netdrv] e1000e: restore call to pci_clear_master() (Dean Nelson) [726816]
-- [netdrv] e1000e: Release mutex lock only if it has been initially acquired (Dean Nelson) [726816]
-- [netdrv] e1000e: prevent warning from -Wunused-parameter (Dean Nelson) [726816]
-- [netdrv] e1000e: cleanup whitespace (Dean Nelson) [726816]
-- [netdrv] bna: Staticize local functions (Ivan Vecera) [978045]
-- [netdrv] bna: switch to fixed_size_llseek() (Ivan Vecera) [978045]
-- [fs] read_write: new helper, fixed_size_llseek() (Ivan Vecera) [978045]
-- [netdrv] bna: Driver and Firmware Updated (Ivan Vecera) [978045]
-- [netdrv] bna: Enahncement to Identify Default IOC Function (Ivan Vecera) [978045]
-- [netdrv] bna: Fix Ucast Failure Handling (Ivan Vecera) [978045]
-- [netdrv] bna: Clear Driver Config Flags When HW Resets (Ivan Vecera) [978045]
-- [netdrv] tg3: Don't turn off led on 5719 serdes port 0 (Ivan Vecera) [1006987]
-- [netdrv] tg3: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Ivan Vecera) [1006987]
-- [netdrv] tg3: fix NULL pointer dereference in tg3_io_error_detected and tg3_io_slot_reset (Ivan Vecera) [1006987]
-- [netdrv] tg3: clean up unnecessary MSI/MSI-X capability find (Ivan Vecera) [1006987]
-- [netdrv] tg3: Fix warning from pci_disable_device() (Ivan Vecera) [1006987]
-- [netdrv] tg3: Fix kernel crash (Ivan Vecera) [1006987]
-- [netdrv] tg3: Update version to 3.133 (Ivan Vecera) [1006987]
-- [netdrv] tg3: Fix UDP fragments treated as RMCP (Ivan Vecera) [1006987]
-- [netdrv] tg3: Enable support for timesync gpio output (Ivan Vecera) [1006987]
-- [netdrv] tg3: Implement the shutdown handler (Ivan Vecera) [1006987]
-- [netdrv] tg3: Allow NVRAM programming when interface is down (Ivan Vecera) [1006987]
-- [netdrv] tg3: Remove incorrect switch to aux power (Ivan Vecera) [1006987]
-- [netdrv] tg3: Prevent system hang during repeated EEH errors (Ivan Vecera) [1006987]
-- [netdrv] tg3: remove redundant pm init code (Ivan Vecera) [1006987]
-- [netdrv] tg3: Remove unnecessary lock around tg3_flag_set (Ivan Vecera) [1006987]
-- [netdrv] tg3: Fix misplaced empty line (Ivan Vecera) [1006987]
-- [netdrv] tg3: Use descriptive label names in tg3_start (Ivan Vecera) [1006987]
-- [netdrv] tg3: Make tg3_rings_reset() more concise (Ivan Vecera) [1006987]
-- [netdrv] tg3: Simplify ring control block setup (Ivan Vecera) [1006987]
-- [netdrv] tg3: Split APE driver state change out of boot reset signature update (Ivan Vecera) [1006987]
-- [netdrv] tg3: Use module_pci_driver to register driver (Ivan Vecera) [1006987]
-- [netdrv] tg3: Implement set/get_eee handlers (Ivan Vecera) [1006987]
-- [netdrv] tg3: Simplify tg3_phy_eee_config_ok() by reusing tg3_eee_pull_config() (Ivan Vecera) [1006987]
-- [netdrv] tg3: Add tg3_eee_pull_config() function (Ivan Vecera) [1006987]
-- [netdrv] tg3: Add ethtool_eee struct and tg3_setup_eee() (Ivan Vecera) [1006987]
-- [netdrv] be2net: set and query VEB/VEPA mode of the PF interface (Ivan Vecera) [726160]
-- [netdrv] be2net: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Ivan Vecera) [726160]
-- [netdrv] be2net: implement ethtool set/get_channel hooks (Ivan Vecera) [726160]
-- [netdrv] be2net: refactor be_setup() to consolidate queue creation routines (Ivan Vecera) [726160]
-- [netdrv] be2net: Fix be_cmd_if_create() to use MBOX if MCCQ is not created (Ivan Vecera) [726160]
-- [netdrv] be2net: refactor be_get_resources() code (Ivan Vecera) [726160]
-- [netdrv] be2net: Fixup profile management routines (Ivan Vecera) [726160]
-- [netdrv] be2net: use EQ_CREATEv2 for SH-R (Ivan Vecera) [726160]
-- [netdrv] be2net: Check for POST state in suspend-resume sequence (Ivan Vecera) [726160]
-- [netdrv] be2net: fix disabling TX in be_close() (Ivan Vecera) [726160]
-- [netdrv] be2net: Clear any capability flags that driver is not interested in (Ivan Vecera) [726160]
-- [netdrv] be2net: update driver version (Ivan Vecera) [726160]
-- [netdrv] be2net: Initialize "status" in be_cmd_get_die_temperature() (Ivan Vecera) [726160]
-- [netdrv] be2net: fixup log msgs for async events (Ivan Vecera) [726160]
-- [netdrv] be2net: Fix displaying supported speeds for BE2 (Ivan Vecera) [726160]
-- [netdrv] be2net: don't limit max MAC and VLAN counts (Ivan Vecera) [726160]
-- [netdrv] be2net: Do not call get_die_temperature cmd for VF (Ivan Vecera) [726160]
-- [netdrv] be2net: Adding more speeds reported by get_settings (Ivan Vecera) [726160]
-- [netdrv] be2net: Staticize local functions (Ivan Vecera) [726160]
-- [netdrv] be2net: don't use dev_err when AER enabling fails (Ivan Vecera) [726160]
-- [netdrv] be2net: delete primary MAC address while unloading (Ivan Vecera) [726160]
-- [netdrv] be2net: use SET/GET_MAC_LIST for SH-R (Ivan Vecera) [726160]
-- [netdrv] be2net: refactor MAC-addr setup code (Ivan Vecera) [726160]
-- [netdrv] be2net: fix pmac_id for BE3 VFs (Ivan Vecera) [726160]
-- [netdrv] be2net: allow VFs to program MAC and VLAN filters (Ivan Vecera) [726160]
-- [netdrv] be2net: fix MAC address modification for VF (Ivan Vecera) [726160]
-- [netdrv] be2net: replace numeric with standard PM state macros (Ivan Vecera) [726160]
-- [netdrv] be2net: use pci_vfs_assigned()/pci_num_vf() instead of be_find_vfs() (Ivan Vecera) [726160]
-- [netdrv] be2net: Implement initiate FW dump feature for Lancer (Ivan Vecera) [726160]
-- [netdrv] be2net: Trim padded packets for Lancer (Ivan Vecera) [726160]
-- [netdrv] be2net: Pad skb to meet min Tx pkt size in lancer (Ivan Vecera) [726160]
-- [netdrv] be2net: cleanup be_get_drvinfo() (Ivan Vecera) [726160]
-- [netdrv] be2net: refactor HW workarounds in be_xmit() (Ivan Vecera) [726160]
-- [netdrv] mlx5: remove unused MLX5_DEBUG param in Kconfig (Amir Vadai) [864578]
-- [netdrv] mlx5: Support MANAGE_PAGES and QUERY_PAGES firmware command changes (Amir Vadai) [864578]
-- [netdrv] mlx5: remove health handler plugin (Amir Vadai) [864578]
-- [infiniband] mlx5: Variable may be used uninitialized (Amir Vadai) [864578]
-- [netdrv] mlx5: Implement new initialization sequence (Amir Vadai) [864578]
-- [infiniband] mlx5: Fix stack info leak in mlx5_ib_alloc_ucontext() (Amir Vadai) [864578]
-- [infiniband] mlx5: Fix error return code in init_one() (Amir Vadai) [864578]
-- [netdrv] mlx5: fix error return code in mlx5_alloc_uuars() (Amir Vadai) [864578]
-- [netdrv] mlx5: use after free in mlx5_cmd_comp_handler() (Amir Vadai) [864578]
-- [netdrv] mlx5: Fix __udivdi3 when compiling for 32 bit arches (Amir Vadai) [864578]
-- [netdrv] mlx5: Return -EFAULT instead of -EPERM (Amir Vadai) [864578]
-- [netdrv] mlx5: Adjust hca_cap.uar_page_sz to conform to Connect-IB spec (Amir Vadai) [864578]
-- [netdrv] mlx5: Fixes for sparse warnings (Amir Vadai) [864578]
-- [infiniband] mlx5: Make profile[] static in main.c (Amir Vadai) [864578]
-- [infiniband] mlx5: Add driver for Mellanox Connect-IB adapters (Amir Vadai) [864578]
-- [infiniband] core: Add reserved values to enums for low-level driver use (Amir Vadai) [864578]
-
-* Thu Sep 19 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-26.el7]
-- [net] tuntap: correctly handle error in tun_set_iff() (Jiri Benc) [1007739] {CVE-2013-4343}
-- [net] sctp: fix ipv6 ipsec encryption bug in sctp_v6_xmit (Daniel Borkmann) [998398] {CVE-2013-4350}
-- [net] netlink: filter particular protocols from analyzers (Daniel Borkmann) [957721]
-- [net] ipv6: accept tlv which includes only padding (Jiri Pirko) [990968]
-
-* Thu Sep 19 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-25.el7]
-- [scsi] mpt2sas: Bump driver version to v16.100.00.00 (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Remove phys on topology change (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Fix for kernel panic when driver loads with HBA connected to non LUN 0 configured expander (Tomas Henzl) [736230]
-- [scsi] mpt2sas: when Async scanning is enabled then while scanning, devices are removed but their transport layer entries are not removed (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Infinite loop can occur if MPI2_IOCSTATUS_CONFIG_INVALID_PAGE is not returned (Tomas Henzl) [736230]
-- [scsi] mpt2sas: The copyright in driver sources is updated for the year 2013 (Tomas Henzl) [736230]
-- [scsi] mpt2sas: MPI2 Rev X (2.00.16) specifications (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Change in MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED notification methodology (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Null pointer deference possibility in mpt2sas_ctl_event_callback function (Tomas Henzl) [736230]
-- [scsi] mpt2sas: fix cleanup on controller resource mapping failure (Tomas Henzl) [736230]
-- [scsi] mpt2sas: fix for unused variable 'event_data' warning (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Calulate the Reply post queue depth calculation as per the MPI spec (Tomas Henzl) [736230]
-- [scsi] mpt2sas: fix firmware failure with wrong task attribute (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Fix for device scan following host reset could get stuck in a infinite loop (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Update the timing requirements for issuing a Hard Reset (Tomas Henzl) [736230]
-- [scsi] mpt2sas: MPI2 Rev W (2.00.15) specification (Tomas Henzl) [736230]
-- [powerpc] Fix possible deadlock on page fault (Steve Best) [999374]
-- [scsi] qla2xxx: Update driver version to 8.06.00.08.07.0-k (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Select link initialization option bits from current operating mode (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add loopback IDC-TIME-EXTEND aen handling support (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Set default critical temperature value in cases when ISPFX00 firmware doesn't provide it (Chad Dupuis) [725014]
-- [scsi] qla2xxx: QLAFX00 make over temperature AEN handling informational, add log for normal temperature AEN (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Correct Interrupt Register offset for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove handling of Shutdown Requested AEN from qlafx00_process_aen() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Send all AENs for ISPFx00 to above layers (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add changes in initialization for ISPFX00 cards with BIOS (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add changes to support extended IOs for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add missing FCP statistics to sysfs interface (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Make log message that prints when a completion status requires a port down more readable (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add critical temperature handling for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Notify ISPFX00 firmware when driver is unloaded or system is shut down (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Reconfigure thermal temperature (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add setting of driver version string for vendor application (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove QL_DEBUG_LEVEL_17 defines from qla_nx.c (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add ISPFX00 specific bus reset routine (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Perform warm reset every 2 minutes if firmware load fails for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Set factory reset recovery timeout to 10 min. for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Correct multiqueue offset calculations (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix incorrect test after list_for_each_entry() exits (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add support for ISP8044 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Print some variables to hexadecimal string via *phN format (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix sparse warnings in qlafx00_fxdisc_iocb function (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Properly set the tagging for commands (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix a memory leak in an error path of qla2x00_process_els() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove an unused variable from qla2x00_remove_one() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix qla2xxx_check_risc_status() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Help Coverity with analyzing ct_sns_pkt initialization (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove redundant assignments (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove a dead assignment in qla24xx_build_scsi_crc_2_iocbs() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove two superfluous tests (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove dead code in qla2x00_configure_hba() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Clean up qla84xx_mgmt_cmd() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Clean up qla24xx_iidma() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix sparse warning from qla_mr.c and qla_iocb.c (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Do not take a second firmware dump when intentionally generating one (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Do not query FC statistics during chip reset (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Move qla2x00_free_device to the correct location (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Set the index in outstanding command array to NULL when cmd is aborted when the request timeout (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Clear the MBX_INTR_WAIT flag when the mailbox time-out happens (Chad Dupuis) [725014]
-- [scsi] mpt3sas: Bump driver version to v02.100.00.00 (Tomas Henzl) [889435]
-- [scsi] mpt3sas: Added a driver module parameter max_msix_vectors (Tomas Henzl) [889435]
-- [scsi] mpt3sas: fix cleanup on controller resource mapping failure (Tomas Henzl) [889435]
-- [scsi] mpt3sas: when async scanning is enabled then while scanning, devices are removed but their transport layer entries are not removed (Tomas Henzl) [889435]
-- [scsi] mpt3sas: MPI2.5 Rev F v2.5.1.1 specification (Tomas Henzl) [889435]
-- [scsi] mpt3sas: Infinite loops can occur if MPI2_IOCSTATUS_CONFIG_INVALID_PAGE is not returned (Tomas Henzl) [889435]
-- [scsi] mpt3sas: fix for kernel panic when driver loads with HBA conected to non LUN 0 configured expander (Tomas Henzl) [889435]
-- [scsi] mpt3sas: Updated the Hardware timing requirements (Tomas Henzl) [889435]
-- [scsi] mpt3sas: 2013 source code copyright (Tomas Henzl) [889435]
-- [netdrv] ixgbe: add support for older QSFP active DA cables (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: include QSFP PHY types in ixgbe_is_sfp() (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: add 1Gbps support for QSFP+ (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix SFF data dumps of SFP+ modules from an offset (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: cleanup some log messages (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: zero out mailbox buffer on init (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix link test when connected to 1Gbps link partner (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix incorrect limit value in ring transverse (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Check return value on eeprom reads (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: disable link when adapter goes down (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: add support for quad-port x520 adapter (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: clear semaphore bits on timeouts (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: rename LL_EXTENDED_STATS to use queue instead of q (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix lockdep annotation issue for ptp's work item (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: call pcie_get_mimimum_link to check if device has enough bandwidth (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix SFF data dumps of SFP+ modules (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix semaphore lock for I2C read/writes on 82598 (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: bump version number (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: add new media type (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix fc autoneg ethtool reporting (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Use pci_vfs_assigned instead of ixgbe_vfs_are_assigned (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Retain VLAN filtering in promiscuous + VT mode (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Fix Tx Hang issue with lldpad on 82598EB (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Set the SW prio_tc values at initialization to the HW setting (Andy Gospodarek) [726818]
-- [pci] expose pcie_link_speed and pcix_bus_speed arrays (Andy Gospodarek) [726818]
-- [pci] move enum pcie_link_width into pci.h (Andy Gospodarek) [726818]
-- [pci] Add function to obtain minimum link width and speed (Andy Gospodarek) [726818]
-- [netdrv] cnic: Update version to 2.5.18 (Tomas Henzl) [725064]
-- [netdrv] cnic: Eliminate local copy of pfid (Tomas Henzl) [725064]
-- [netdrv] cnic: Eliminate CNIC_PORT macro and port_mode in local struct (Tomas Henzl) [725064]
-- [netdrv] cnic: Redefine BNX2X_HW_CID using existing bnx2x macros (Tomas Henzl) [725064]
-- [netdrv] cnic: Use CHIP_NUM macros from bnx2x.h (Tomas Henzl) [725064]
-- [netdrv] cnic: Convert mac address uses of 6 to ETH_ALEN (Tomas Henzl) [725064]
-- [netdrv] cnic: Update version to 2.5.17 and copyright year (Tomas Henzl) [725064]
-- [netdrv] cnic: Add missing error checking for RAMROD_CMD_ID_CLOSE (Tomas Henzl) [725064]
-- [netdrv] cnic: Update TCP options setup for iSCSI (Tomas Henzl) [725064]
-- [netdrv] cnic: Reset tcp_flags during cnic_cm_create() (Tomas Henzl) [725064]
-- [netdrv] cnic: Simplify cnic_release() (Tomas Henzl) [725064]
-- [netdrv] cnic: Simplify netdev events handling (Tomas Henzl) [725064]
-
-* Thu Sep 19 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-24.el7]
-- [Documentation] kvm: Add documentation on Hypercalls and features used for PV spinlock (Andrew Jones) [981581]
-- [virt] kvm: Simplify kvm_for_each_vcpu with kvm_irq_delivery_to_apic (Andrew Jones) [981581]
-- [virt] kvm: Add a hypercall to KVM hypervisor to support pv-ticketlocks (Andrew Jones) [981581]
-- [virt] kvm: Paravirtual ticketlocks support for linux guests running on KVM hypervisor (Andrew Jones) [981581]
-- [virt] kvm: Add configuration support to enable debug information for KVM Guests (Andrew Jones) [981581]
-- [virt] kvm: Add KICK_CPU and PV_UNHALT definition to uapi (Andrew Jones) [981581]
-- [virt] pvticketlock: Allow interrupts to be enabled while blocking (Andrew Jones) [981581]
-- [virt] ticketlock: Add slowpath logic (Andrew Jones) [981581]
-- [kernel] jump_label: Split jumplabel ratelimit (Andrew Jones) [981581]
-- [virt] pvticketlock: Use callee-save for lock_spinning (Andrew Jones) [981581]
-- [virt] pvticketlocks: Add xen_nopvspin parameter to disable xen pv ticketlocks (Andrew Jones) [981581]
-- [virt] pvticketlock: Xen implementation for PV ticket locks (Andrew Jones) [981581]
-- [virt] xen: Defer spinlock setup until boot CPU setup (Andrew Jones) [981581]
-- [virt] ticketlock: Collapse a layer of functions (Andrew Jones) [981581]
-- [virt] ticketlock: Don't inline _spin_unlock when using paravirt spinlocks (Andrew Jones) [981581]
-- [virt] spinlock: Replace pv spinlocks with pv ticketlocks (Andrew Jones) [981581]
-- [fs] proc/vmcore: support mmap() on /proc/vmcore (Nigel Croxon) [990298]
-- [fs] proc/vmcore: calculate vmcore file size from buffer size and total size of vmcore objects (Nigel Croxon) [990298]
-- [fs] proc/vmcore: allow user process to remap ELF note segment buffer (Nigel Croxon) [990298]
-- [fs] proc/vmcore: allocate ELF note segment in the 2nd kernel vmalloc memory (Nigel Croxon) [990298]
-- [mm] vmalloc: introduce remap_vmalloc_range_partial (Nigel Croxon) [990298]
-- [mm] vmalloc: make find_vm_area check in range (Nigel Croxon) [990298]
-- [fs] proc/vmcore: treat memory chunks referenced by PT_LOAD program header entries in page-size boundary in vmcore_list (Nigel Croxon) [990298]
-- [fs] proc/vmcore: allocate buffer for ELF headers on page-size alignment (Nigel Croxon) [990298]
-- [fs] proc/vmcore: clean up read_vmcore() (Nigel Croxon) [990298]
-- [mm] add PAGE_ALIGNED() helper (Nigel Croxon) [990298]
-- [fs] nfs Fix up nfs4_proc_lookup_mountpoint (Jeff Layton) [1007357]
-- [fs] nfs: Don't check lock owner compatability unless file is locked (part 2) (Jeff Layton) [1007035]
-- [fs] nfs: Don't check lock owner compatibility in writes unless file is locked (Jeff Layton) [1007035]
-- [pci] Remove pcie_cap_has_devctl() (Myron Stowe) [1005229]
-- [pci] Support PCIe Capability Slot registers only for ports with slots (Myron Stowe) [1005229]
-- [pci] Remove PCIe Capability version checks (Myron Stowe) [1005229]
-- [pci] Allow PCIe Capability link-related register access for switches (Myron Stowe) [1005229]
-- [pci] Add offsets of PCIe capability registers (Myron Stowe) [1005229]
-- [pci] Tidy bitmasks and spacing of PCIe capability definitions (Myron Stowe) [1005229]
-- [pci] Remove obsolete comment reference to pci_pcie_cap2() (Myron Stowe) [1005229]
-- [pci] Clarify PCI_EXP_TYPE_PCI_BRIDGE comment (Myron Stowe) [1005229]
-- [pci] Rename PCIe capability definitions to follow convention (Myron Stowe) [1005229]
-- [pci] Warn if unsafe MPS settings detected (Myron Stowe) [1005229]
-- [pci] Fix MPS peer-to-peer DMA comment syntax (Myron Stowe) [1005229]
-- [pci] Disable decoding for BAR sizing only when it was actually enabled (Myron Stowe) [1005229]
-- [pci] Add comment about needing pci_msi_off() even when CONFIG_PCI_MSI=n (Myron Stowe) [1005229]
-- [pci] Add pcibios_pm_ops for optional arch-specific hibernate functionality (Myron Stowe) [1005229]
-- [pci] Don't restrict MPS for slots below Root Ports (Myron Stowe) [1005229]
-- [pci] Simplify MPS test for Downstream Port (Myron Stowe) [1005229]
-- [pci] Remove unnecessary check for pcie_get_mps() failure (Myron Stowe) [1005229]
-- [pci] Simplify pcie_bus_configure_settings() interface (Myron Stowe) [1005229]
-- [pci] Drop "PCI-E" prefix from Max Payload Size message (Myron Stowe) [1005229]
-- [pci] Add pci_probe_reset_slot() and pci_probe_reset_bus() (Myron Stowe) [1005229]
-- [pci] Remove aer_do_secondary_bus_reset() (Myron Stowe) [1005229]
-- [pci] Tune secondary bus reset timing (Myron Stowe) [1005229]
-- [pci] Wake-up devices before saving config space for reset (Myron Stowe) [1005229]
-- [pci] Add pci_reset_slot() and pci_reset_bus() (Myron Stowe) [1005229]
-- [pci] Split out pci_dev lock/unlock and save/restore (Myron Stowe) [1005229]
-- [pci] Add slot reset option to pci_dev_reset() (Myron Stowe) [1005229]
-- [pci] pciehp: Add reset_slot() method (Myron Stowe) [1005229]
-- [pci] Add hotplug_slot_ops.reset_slot() (Myron Stowe) [1005229]
-- [pci] quirks: Use pci_wait_for_pending_transaction() instead of for loop (Myron Stowe) [1005229]
-- [netdrv] bnx2x: Use pci_wait_for_pending_transaction() instead of for loop (Myron Stowe) [1005229]
-- [pci] quirks: Enable Bus Master during Function-Level Reset on Chelsio (Myron Stowe) [1005229]
-- [pci] Add pci_wait_for_pending_transaction() (Myron Stowe) [1005229]
-- [pci] Add pci_reset_bridge_secondary_bus() (Myron Stowe) [1005229]
-- [pci] Align bridge I/O windows as required by downstream devices & bridges (Myron Stowe) [1005229]
-- [pci] Fix types in pbus_size_io() (Myron Stowe) [1005229]
-- [pci] Add comments for pbus_size_mem() parameters (Myron Stowe) [1005229]
-- [pci] Enumerate subordinate buses, not devices, in pci_bus_get_depth() (Myron Stowe) [1005229]
-- [pci] Fix comment typo for pci_add_cap_save_buffer() (Myron Stowe) [1005229]
-- [pci] Return -ENOSYS for SR-IOV operations on non-SR-IOV devices (Myron Stowe) [1005229]
-- [pci] Update NumVFs register when disabling SR-IOV (Myron Stowe) [1005229]
-- [pci] mmconfig: Check earlier for MMCONFIG region at address zero (Myron Stowe) [1005229]
-- [pci] Assign resources for hot-added host bridge more aggressively (Myron Stowe) [1005229]
-- [pci] Move resource reallocation code to non-__init (Myron Stowe) [1005229]
-- [pci] Delay enabling bridges until they're needed (Myron Stowe) [1005229]
-- [pci] Assign resources on a per-bus basis (Myron Stowe) [1005229]
-- [pci] Enable unassigned resource reallocation on per-bus basis (Myron Stowe) [1005229]
-- [pci] Turn on reallocation for unassigned resources with host bridge offset (Myron Stowe) [1005229]
-- [pci] Look for unassigned resources on per-bus basis (Myron Stowe) [1005229]
-- [pci] Drop temporary variable in pci_assign_unassigned_resources() (Myron Stowe) [1005229]
-- [pci] Claim ACS support for AMD southbridge devices (Myron Stowe) [1005229]
-- [pci] Differentiate ACS controllable from enabled (Myron Stowe) [1005229]
-- [pci] Check all ACS features for multifunction downstream ports (Myron Stowe) [1005229]
-- [pci] Convert class code to use dev_groups (Myron Stowe) [1005229]
-- [pci] mrst: Cleanup checkpatch.pl warnings (Myron Stowe) [1005229]
-- [pci] Rename "PCI Express support" kconfig title (Myron Stowe) [1005229]
-- [pci] Fix comment typo in iov.c (Myron Stowe) [1005229]
-- [fs] sysfs: use file mode defines from stat.h (Myron Stowe) [1005229]
-- [fs] sysfs: add more helper macro's for (bin_)attribute(_groups) (Myron Stowe) [1005229]
-- [misc] device: add default groups to struct class (Myron Stowe) [1005229]
-- [misc] device: Introduce device_create_groups (Myron Stowe) [1005229]
-- [fs] sysfs: prevent warning when only using binary attributes (Myron Stowe) [1005229]
-- [fs] sysfs: add support for binary attributes in groups (Myron Stowe) [1005229]
-- [misc] device: add RW and RO attribute macros (Myron Stowe) [1005229]
-- [misc] sysfs: add BIN_ATTR macro (Myron Stowe) [1005229]
-- [misc] sysfs: add ATTRIBUTE_GROUPS() macro (Myron Stowe) [1005229]
-- [misc] sysfs: add __ATTR_RW() macro (Myron Stowe) [1005229]
-
-* Tue Sep 17 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-23.el7]
-- [kernel] kexec: improve logging when crashkernel=auto can't be satisfied (Steve Best) [989576]
-
-* Fri Sep 13 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-22.el7]
-- [netdrv] bnx2: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Neil Horman) [725061]
-- [netdrv] bnx2: clean up unnecessary MSI/MSI-X capability find (Neil Horman) [725061]
-- [netdrv] bnx2: Update version to 2.2.4 (Neil Horman) [725061]
-- [netdrv] bnx2: Add pci shutdown handler (Neil Horman) [725061]
-- [netdrv] bnx2: Use SIMPLE_DEV_PM_OPS (Neil Horman) [725061]
-- [netdrv] bnx2: Refactor WoL setup into a separate function (Neil Horman) [725061]
-- [netdrv] bnx2: Use kernel APIs for WoL and power state changes (Neil Horman) [725061]
-- [netdrv] bnx2: Handle error condition in ->slot_reset() (Neil Horman) [725061]
-- [netdrv] bnx2: use pdev->pm_cap instead of pci_find_capability(.., PCI_CAP_ID_PM) (Neil Horman) [725061]
-- [netdrv] bnx2: Use module_pci_driver to register driver (Neil Horman) [725061]
-- [netdrv] igb: Update version number (Stefan Assmann) [726817]
-- [netdrv] igb: Implementation to report advertised/supported link on i354 devices (Stefan Assmann) [726817]
-- [netdrv] igb: Get speed and duplex for 1G non_copper devices (Stefan Assmann) [726817]
-- [netdrv] igb: Support to get 2_5G link status for appropriate media type (Stefan Assmann) [726817]
-- [netdrv] igb: No PHPM support in i354 devices (Stefan Assmann) [726817]
-- [netdrv] igb: M88E1543 PHY downshift implementation (Stefan Assmann) [726817]
-- [netdrv] igb: New PHY_ID for i354 device (Stefan Assmann) [726817]
-- [netdrv] igb: Implementation of 1-sec delay for i210 devices (Stefan Assmann) [726817]
-- [netdrv] igb: Don't look for a PBA in the iNVM when flashless (Stefan Assmann) [726817]
-- [netdrv] igb: Expose RSS indirection table for ethtool (Stefan Assmann) [726817]
-- [netdrv] igb: Add macro for size of RETA indirection table (Stefan Assmann) [726817]
-- [netdrv] igb: Fix get_fw_version function for all parts (Stefan Assmann) [726817]
-- [netdrv] igb: Add device support for flashless SKU of i210 device (Stefan Assmann) [726817]
-- [netdrv] igb: Refactor NVM read functions to accommodate devices with no flash (Stefan Assmann) [726817]
-- [netdrv] igb: Refactor of init_nvm_params (Stefan Assmann) [726817]
-- [netdrv] igb: Update MTU so that it is always at least a standard frame size (Stefan Assmann) [726817]
-- [netdrv] igb: don't allow SR-IOV without MSI-X (Stefan Assmann) [726817]
-- [netdrv] igb: Added rcu_lock to avoid race (Stefan Assmann) [726817]
-- [netdrv] igb: Read register for latch_on without return value (Stefan Assmann) [726817]
-- [netdrv] igb: Reset the link when EEE setting changed (Stefan Assmann) [726817]
-- [netdrv] igb: fix vlan filtering in promisc mode when not in VT mode (Stefan Assmann) [726817]
-- [netdrv] igb: relase -> release (Stefan Assmann) [726817]
-- [netdrv] igb: Removed unused i2c function (Stefan Assmann) [726817]
-- [netdrv] igb: Implementation of i210/i211 LED support (Stefan Assmann) [726817]
-- [netdrv] igb: Fix possible panic caused by Rx traffic arrival while interface is down (Stefan Assmann) [726817]
-- [netdrv] igb: Fix set_ethtool function to call update nvm for entire image (Stefan Assmann) [726817]
-- [netdrv] igb: SerDes flow control setting (Stefan Assmann) [726817]
-- [netdrv] igb: Support for SFP modules discovery (Stefan Assmann) [726817]
-- [netdrv] igb: Add update to last_rx_timestamp in Rx rings (Stefan Assmann) [726817]
-- [netdrv] igb: Changed LEDs blink mechanism to include designs using cathode (Stefan Assmann) [726817]
-- [virt] kvm/mmu: avoid fast page fault fixing mmio page fault (Gleb Natapov) [981979]
-- [virt] kvm/vmx: mark unusable segment as nonpresent (Gleb Natapov) [981979]
-- [virt] kvm: get rid of $(addprefix ../../../virt/kvm/, ...) in Makefiles (Gleb Natapov) [981979]
-- [virt] kvm: Fix RTC interrupt coalescing tracking (Gleb Natapov) [981979]
-- [virt] kvm: Add a tracepoint write_tsc_offset (Gleb Natapov) [981979]
-- [virt] kvm: Inform users of mmio generation wraparound (Gleb Natapov) [981979]
-- [virt] kvm: document fast invalidate all mmio sptes (Gleb Natapov) [981979]
-- [virt] kvm: document fast invalidate all pages (Gleb Natapov) [981979]
-- [virt] kvm: document fast page fault (Gleb Natapov) [981979]
-- [virt] kvm: document mmio page fault (Gleb Natapov) [981979]
-- [virt] kvm: document write_flooding_count (Gleb Natapov) [981979]
-- [virt] kvm: document clear_spte_count (Gleb Natapov) [981979]
-- [virt] kvm: drop kvm_mmu_zap_mmio_sptes (Gleb Natapov) [981979]
-- [virt] kvm: init kvm generation close to mmio wrap-around value (Gleb Natapov) [981979]
-- [virt] kvm: add tracepoint for check_mmio_spte (Gleb Natapov) [981979]
-- [virt] kvm: fast invalidate all mmio sptes (Gleb Natapov) [981979]
-- [virt] kvm: make return value of mmio page fault handler more readable (Gleb Natapov) [981979]
-- [virt] kvm: store generation-number into mmio spte (Gleb Natapov) [981979]
-- [virt] kvm: retain more available bits on mmio spte (Gleb Natapov) [981979]
-- [virt] kvm: update the documentation for reverse mapping of parent_pte (Gleb Natapov) [981979]
-- [Documentation] kvm: fix section numbers (Gleb Natapov) [981979]
-- [virt] kvm: handle idiv overflow at kvm_write_tsc (Gleb Natapov) [981979]
-- [virt] kvm: reduce KVM_REQ_MMU_RELOAD when root page is zapped (Gleb Natapov) [981979]
-- [virt] kvm: reclaim the zapped-obsolete page first (Gleb Natapov) [981979]
-- [virt] kvm: collapse TLB flushes when zap all pages (Gleb Natapov) [981979]
-- [virt] kvm: zap pages in batch (Gleb Natapov) [981979]
-- [virt] kvm: do not reuse the obsolete page (Gleb Natapov) [981979]
-- [virt] kvm: add tracepoint for kvm_mmu_invalidate_all_pages (Gleb Natapov) [981979]
-- [virt] kvm: show mmu_valid_gen in shadow page related tracepoints (Gleb Natapov) [981979]
-- [virt] kvm: use the fast way to invalidate all pages (Gleb Natapov) [981979]
-- [virt] kvm: fast invalidate all pages (Gleb Natapov) [981979]
-- [virt] kvm: drop unnecessary kvm_reload_remote_mmus (Gleb Natapov) [981979]
-- [virt] kvm: drop calling kvm_mmu_zap_all in emulator_fix_hypercall (Gleb Natapov) [981979]
-- [virt] kvm: exclude ioeventfd from counting kvm_io_range limit (Gleb Natapov) [981979]
-- [virt] kvm: convert XADD to fastop (Gleb Natapov) [981979]
-- [virt] kvm: drop unused old-style inline emulation (Gleb Natapov) [981979]
-- [virt] kvm: convert DIV/IDIV to fastop (Gleb Natapov) [981979]
-- [virt] kvm: convert single-operand MUL/IMUL to fastop (Gleb Natapov) [981979]
-- [virt] kvm: Switch fastop src operand to RDX (Gleb Natapov) [981979]
-- [virt] kvm: switch MUL/DIV to DstXacc (Gleb Natapov) [981979]
-- [virt] kvm: decode extended accumulator explicity (Gleb Natapov) [981979]
-- [virt] kvm: add support for writing back the source operand (Gleb Natapov) [981979]
-- [virt] kvm: clenaup locking in mmu_free_roots() (Gleb Natapov) [981979]
-- [virt] kvm: limit difference between kvmclock updates (Gleb Natapov) [981979]
-- [virt] kvm: Remove support for reporting coalesced APIC IRQs (Gleb Natapov) [981979]
-- [virt] kvm: Use kvm_mmu_sync_roots() in kvm_mmu_load() (Gleb Natapov) [981979]
-- [virt] kvm: add missing misc_deregister() on error in kvm_init() (Gleb Natapov) [981979]
-
-* Thu Sep 12 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-21.el7]
-- [net] net_sched: fix a typo in htb_change_class() (Jesper Brouer) [998588]
-- [net] tcp_probe: adapt tbuf size for recent changes (Daniel Borkmann) [1000470]
-- [net] tcp_probe: allow more advanced ingress filtering by mark (Daniel Borkmann) [1000470]
-- [net] tcp_probe: add IPv6 support (Daniel Borkmann) [1000470]
-- [net] tcp_probe: kprobes: adapt jtcp_rcv_established signature (Daniel Borkmann) [1000470]
-- [net] tcp_probe: also include rcv_wnd next to snd_wnd (Daniel Borkmann) [1000470]
-- [lib] vsprintf: add IPv4/v6 generic p[Ii]S[pfs] format specifier (Daniel Borkmann) [1000470]
-- [net] ipv6: fix potential use after free in tcp_v6_do_rcv (Jiri Benc) [1004165]
-- [net] netlabel: use domain based selectors when address based selectors are not available (Paul Moore) [983949]
-
-* Wed Sep 11 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-20.el7]
-- [fs] gfs2: dirty inode correctly in gfs2_write_end (Benjamin Marzinski) [1004054]
-- [netdrv] bnx2x: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Michal Schmidt) [819849]
-- [netdrv] bnx2x: clean up unnecessary MSI/MSI-X capability find (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Revising locking scheme for MAC configuration (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix VF stats sync (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix VF memory leak unload (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix functionality of configuring vlan list (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix move FP memory deallocations (Michal Schmidt) [819849]
-- [netdrv] bnx2x: vf mark stats started (Michal Schmidt) [819849]
-- [netdrv] bnx2x: set VF DMAE when first function has 0 supported VFs (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Protect against VFs' ndos when SR-IOV is disabled (Michal Schmidt) [819849]
-- [netdrv] bnx2x: prevent VF benign attentions (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Consider DCBX remote error (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Change DCB context handling (Michal Schmidt) [819849]
-- [netdrv] bnx2x: dropless flow control not always functional (Michal Schmidt) [819849]
-- [netdrv] bnx2x: prevent crash in shutdown flow with CNIC (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix PTE write access error (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix memory leak in VF (Michal Schmidt) [819849]
-- [netdrv] bnx2x: update fairness parameters following DCB negotiation (Michal Schmidt) [819849]
-- [netdrv] bnx2x: protect different statistics flows (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix tunneling CSUM calculation (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fill in sane dump flag information (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix dump flag handling (Michal Schmidt) [819849]
-- [netdrv] bnx2x: remove zeroing of dump data buffer (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Remove sparse and coccinelle warnings (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix compilation with no IOV support (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix 20G KR2 support claims (Michal Schmidt) [819849]
-- [netdrv] bnx2x: improve VF timings (Michal Schmidt) [819849]
-- [netdrv] bnx2x: VF ndo sanity (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Improve PF behaviour toward VF (Michal Schmidt) [819849]
-- [netdrv] bnx2x: remove redundant D0 power state set (Michal Schmidt) [819849]
-- [netdrv] bnx2x: replace mechanism to check for next available packet (Michal Schmidt) [819849]
-- [netdrv] bnx2x: add support for busy-poll (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix a power state test (Michal Schmidt) [819849]
-- [netdrv] bnx2x: semi-Semantic changes (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Revise prints (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Semantic removal and beautification (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Revise comments and alignment (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Semantic change of empty lines (Michal Schmidt) [819849]
-- [netdrv] bnx2x: use XPS if possible for bnx2x_select_queue instead of pure hash (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Change to D3hot only on removal (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Implement PCI shutdown (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Count number of possible FCoE interfaces (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Ack unknown VF messages (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Add and correct PCI link speed prints (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Zero VFs starting MACs (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Enable `set_phys_id' for all functions (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Link-flap avoidance in switch dependent mode (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Add Private Flags Support (Michal Schmidt) [819849]
-- [netdrv] bnx2x: dont reload on GRO change (Michal Schmidt) [819849]
-
-* Tue Sep 10 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-19.el7]
-- [crypto] nx: fix SHA-2 for chunks bigger than block size (Steve Best) [999606]
-- [crypto] nx: fix GCM for zero length messages (Steve Best) [999606]
-- [crypto] nx: fix XCBC for zero length messages (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-CCM (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-XCBC (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-GCM (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-CTR (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-CBC (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-ECB (Steve Best) [999606]
-- [crypto] nx: add offset to nx_build_sg_lists() (Steve Best) [999606]
-- [virt] virtio_console: prevent use-after-free of port name in port unplug (Amit Shah) [990419]
-- [virt] virtio_console: fix locking around send_sigio_to_port() (Amit Shah) [986968]
-- [virt] virtio_console: add locking in port unplug path (Amit Shah) [990419]
-- [virt] virtio_console: add locks around buffer removal in port unplug path (Amit Shah) [990419]
-- [virt] virtio_console: return -ENODEV on all read operations after unplug (Amit Shah) [975716]
-- [virt] virtio_console: fix raising SIGIO after port unplug (Amit Shah) [986968]
-- [virt] virtio_console: clean up port data immediately at time of unplug (Amit Shah) [990419]
-- [virt] virtio_console: fix race in port_fops_open() and port unplug (Amit Shah) [990419]
-- [virt] virtio_console: fix race with port unplug and open/close (Amit Shah) [990419]
-- [virt] virtio_console: Add pipe_lock/unlock for splice_write (Amit Shah) [987722]
-- [virt] virtio_console: Quit from splice_write if pipe->nrbufs is 0 (Amit Shah) [987722]
-- [scsi] Generate uevents on certain unit attention codes (Ewan Milne) [740795]
-- [virt] kvm: update masterclock when kvmclock_offset is calculated (Marcelo Tosatti) [978425]
-- [acpi] pci_root: Fix _OSC ordering to allow PCIe hotplug use when available (Neil Horman) [990078]
-
-* Thu Sep 05 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-18.el7]
-- [net] ipv4: make snmp_mib_free static inline (Amerigo Wang) [970585]
-- [net] vxlan: include net/ip6_checksum.h for csum_ipv6_magic() (Amerigo Wang) [970585]
-- [net] vxlan: fix flowi6_proto value (Amerigo Wang) [970585]
-- [net] udp: unify skb_udp_tunnel_segment() and skb_udp6_tunnel_segment() (Amerigo Wang) [970585]
-- [net] ipv6: Add generic UDP Tunnel segmentation (Amerigo Wang) [970585]
-- [net] vxlan: add ipv6 proxy support (Amerigo Wang) [970585]
-- [net] ipv6: move in6_dev_finish_destroy() into core kernel (Amerigo Wang) [970585]
-- [net] ipv6: add include file to suppress sparse warnings (Amerigo Wang) [970585]
-- [net] vxlan: add ipv6 route short circuit support (Amerigo Wang) [970585]
-- [net] vxlan: add ipv6 support (Amerigo Wang) [970585]
-- [net] ipv6: do not call ndisc_send_rs() with write lock (Amerigo Wang) [970585]
-- [net] ipv6: export in6addr_loopback to modules (Amerigo Wang) [970585]
-- [net] ipv6: export a stub for IPv6 symbols used by vxlan (Amerigo Wang) [970585]
-- [net] ipv6: Remove extern function prototypes (Amerigo Wang) [970585]
-- [net] ipv6: always hold idev->lock before mca_lock (Amerigo Wang) [970585]
-- [net] ipv6: move ip6_local_out into core kernel (Amerigo Wang) [970585]
-- [net] ipv6: move ip6_dst_hoplimit() into core kernel (Amerigo Wang) [970585]
-- [net] udp: move GSO functions to udp_offload (Amerigo Wang) [970585]
-- [net] tcp: move GRO/GSO functions to tcp_offload (Amerigo Wang) [970585]
-- [net] tcp: use tcp_skb_mss helper in tcp_tso_segment (Amerigo Wang) [970585]
-- [scsi] csgb4i: convert skb->transport_header into skb_transport_header(skb) (Amerigo Wang) [970585]
-- [net] pass correct parameter to skb_headers_offset_update() (Amerigo Wang) [970585]
-- [netdrv] cxgb3: Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [net] clean up skb headers code (Amerigo Wang) [970585]
-- [net] Fix build warnings after mac_header and transport_header became __u16 (Amerigo Wang) [970585]
-- [net] netfilter: Correct calculation using skb->tail and skb-network_header (Amerigo Wang) [970585]
-- [net] Correct assignment of skb->network_header to skb->tail (Amerigo Wang) [970585]
-- [net] sctp: Correct access to skb->{network, transport}_header (Amerigo Wang) [970585]
-- [net] ipv4: Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [net] ipv6: Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [net] Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [netdrv] cxgb3: Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [netdrv] isdn: Correct comparison of skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [net] Copy inner_protocol in copy_skb_header() (Amerigo Wang) [970585]
-- [net] mpls: Add limited GSO support (Amerigo Wang) [970585]
-- [net] Use 16bits for *_headers fields of struct skbuff (Amerigo Wang) [970585]
-
-* Wed Sep 04 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-17.el7]
-- [fs] lockd: Don't call utsname()->nodename from nlmclnt_setlockargs (Jan Stancek) [999289]
-- [scsi] ipr: Add sereral new CCIN definitions for new adapters support (Steve Best) [1002200]
-- [virt] x86/xen: Sync the CMOS RTC as well as the Xen wallclock (Radim Krcmar) [1003683]
-- [virt] x86/xen: Sync the wallclock when the system time is set (Radim Krcmar) [1003683]
-- [virt] x86: Increase precision of x86_platform.get/set_wallclock() (Radim Krcmar) [1003683]
-- [powerpc] Don't Oops when accessing /proc/powerpc/lparcfg without hypervisor (Steve Best) [1002206]
-- [virt] xen/smp: initialize IPI vectors before marking CPU online (Radim Krcmar) [1003683]
-- [virt] xen/events: mask events when changing their VCPU binding (Radim Krcmar) [1003683]
-- [virt] xen/events: initialize local per-cpu mask for all possible events (Radim Krcmar) [1003683]
-- [virt] x86/xen: do not identity map UNUSABLE regions in the machine E820 (Radim Krcmar) [1003683]
-- [virt] xen/evtchn: avoid a deadlock when unbinding an event channel (Radim Krcmar) [1003683]
-- [virt] xenbus: frontend resume cleanup (Radim Krcmar) [1003683]
-- [virt] xen-netfront: pull on receive skb may need to happen earlier (Radim Krcmar) [1003683]
-- [virt] xen: Use more current logging styles (Radim Krcmar) [1003683]
-- [virt] xen/time: remove blocked time accounting from xen "clockchip" (Radim Krcmar) [1003683]
-- [virt] xen: Convert printks to pr_<level> (Radim Krcmar) [1003683]
-- [virt] xen: ifdef CONFIG_HIBERNATE_CALLBACKS xen_*_suspend (Radim Krcmar) [1003683]
-- [virt] xen-blkfront: set blk_queue_max_hw_sectors correctly (Radim Krcmar) [1003683]
-- [virt] xen/io: new macro to detect whether there are too many requests on the ring (Radim Krcmar) [1003683]
-- [virt] xen-netfront: use skb_partial_csum_set() to simplify the codes (Radim Krcmar) [1003683]
-- [virt] xen/time: Free onlined per-cpu data structure if we want to online it again (Radim Krcmar) [1003683]
-- [virt] xen/time: Check that the per_cpu data structure has data before freeing (Radim Krcmar) [1003683]
-- [virt] xen/time: Don't leak interrupt name when offlining (Radim Krcmar) [1003683]
-- [virt] xen/time: Encapsulate the struct clock_event_device in another structure (Radim Krcmar) [1003683]
-- [virt] xen/spinlock: Don't leak interrupt name when offlining (Radim Krcmar) [1003683]
-- [virt] xen/smp: Don't leak interrupt name when offlining (Radim Krcmar) [1003683]
-- [virt] xen/smp: Set the per-cpu IRQ number to a valid default (Radim Krcmar) [1003683]
-- [virt] xen/smp: Introduce a common structure to contain the IRQ name and interrupt line (Radim Krcmar) [1003683]
-- [virt] xen/smp: Coalesce the free_irq calls in one function (Radim Krcmar) [1003683]
-- [virt] xen-blkback: Use physical sector size for setup (Radim Krcmar) [1003683]
-- [virt] xen-blkfront: Introduce a 'max' module parameter to alter the amount of indirect segments (Radim Krcmar) [1003683]
-- [virt] xen/netif: document feature-split-event-channels (Radim Krcmar) [1003683]
-- [virt] xen-netfront: split event channels support for Xen frontend driver (Radim Krcmar) [1003683]
-- [virt] xen-netfront: avoid leaking resources when setup_netfront fails (Radim Krcmar) [1003683]
-- [virt] xen-blkfront: use a different scatterlist for each request (Radim Krcmar) [1003683]
-- [virt] xen-block: implement indirect descriptors (Radim Krcmar) [1003683]
-- [acpi] Try harder to resolve _ADR collisions for bridges (Myron Stowe) [1003183]
-- [cpufreq] rename ignore_nice as ignore_nice_load (Myron Stowe) [1003183]
-- [acpi] processor: move try_offline_node() after acpi_unmap_lsapic() (Myron Stowe) [1003183]
-- [acpi] Drop physical_node_id_bitmap from struct acpi_device (Myron Stowe) [1003183]
-- [acpi] pm: Walk physical_node_list under physical_node_lock (Myron Stowe) [1003183]
-- [acpi] video: improve quirk check in acpi_video_bqc_quirk() (Myron Stowe) [1003183]
-- [kernel] freezer: set PF_SUSPEND_TASK flag on tasks that call freeze_processes (Myron Stowe) [1003183]
-- [acpi] battery: Fix parsing _BIX return value (Myron Stowe) [1003183]
-- [cpufreq] Fix cpufreq driver module refcount balance after suspend/resume (Myron Stowe) [1003183]
-- [cpufreq] intel_pstate: Change to scale off of max P-state (Myron Stowe) [1003183]
-- [acpi] video: ignore BIOS initial backlight value for Fujitsu E753 (Myron Stowe) [1003183]
-- [pnp] acpi: avoid garbage in resource name (Myron Stowe) [1003183]
-- [power] sleep: Fix comment typo in pm_wakeup.h (Myron Stowe) [1003183]
-- [power] sleep: avoid 'autosleep' in shutdown progress (Myron Stowe) [1003183]
-- [acpi] scan: Always call acpi_bus_scan() for bus check notifications (Myron Stowe) [1003183]
-- [acpi] scan: Do not try to attach scan handlers to devices having them (Myron Stowe) [1003183]
-
-* Tue Sep 03 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-16.el7]
-- [powerpc] Avoid link stack corruption for MMU on exceptions (Steve Best) [999556]
-- [virt] net/hyperv: Fix the NETIF_F_SG flag setting in netvsc (Jason Wang) [984810]
-- [pci] Retry allocation of only the resource type that failed (Myron Stowe) [1001217]
-- [pci] pciehp: Convert pciehp to be builtin only, not modular (Myron Stowe) [1001217]
-- [pci] hotplug: Convert to be builtin only, not modular (Myron Stowe) [1001217]
-- [pci] pciehp: Fix null pointer deref when hot-removing SR-IOV device (Myron Stowe) [1001217]
-
-* Fri Aug 30 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-15.el7]
-- [drm] qxl: backport updates from v3.11-rc1 (Dave Airlie) [979176]
-- [drm] add hotspot support for cursors (Dave Airlie) [983312]
-- [virt] x86: Correctly detect hypervisor (Jason Wang) [985743]
-- [virt] kvm: Switch to use hypervisor_cpuid_base() (Jason Wang) [985743]
-- [virt] xen: Switch to use hypervisor_cpuid_base() (Jason Wang) [985743]
-- [virt] x86: Introduce hypervisor_cpuid_base() (Jason Wang) [985743]
-- [net] sunrpc: prepare NFS for 2038 (Harshula Jayasuriya) [847926]
-- [netdrv] macvtap: Ignore tap features when VNET_HDR is off (Vlad Yasevich) [1001053]
-- [netdrv] macvtap: Correctly set tap features when IFF_VNET_HDR is disabled (Vlad Yasevich) [1001053]
-- [netdrv] macvtap: simplify usage of tap_features (Vlad Yasevich) [1001053]
-
-* Thu Aug 29 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-14.el7]
-- [net] openvswitch: optimize flow compare and mask functions (Thomas Graf) [1002051]
-- [net] openvswitch: Rename key_len to key_end (Thomas Graf) [1002051]
-- [net] openvswitch: Add SCTP support (Thomas Graf) [1002051]
-- [net] ipv6: Add NEXTHDR_SCTP to ipv6.h (Thomas Graf) [1002051]
-- [net] sctp: Refactor SCTP skb checksum computation (Thomas Graf) [1002051]
-- [net] sctp: prevent checksum.h from double inclusion (Thomas Graf) [1002051]
-- [net] openvswitch: Mega flow implementation (Thomas Graf) [1002051]
-- [net] openvswitch: Fix argument descriptions in vport.c (Thomas Graf) [1002051]
-- [net] openvswitch: link upper device for port devices (Thomas Graf) [1002051]
-- [net] openvswitch: Use non rcu hlist_del() flow table entry (Thomas Graf) [1002051]
-- [net] openvswitch: Use RCU lock for dp dump operation (Thomas Graf) [1002051]
-- [net] openvswitch: Use RCU lock for flow dump operation (Thomas Graf) [1002051]
-- [net] ipv6: prevent race between address creation and removal (Jiri Benc) [991392]
-- [net] ipv6: move peer_addr init into ipv6_add_addr() (Jiri Benc) [991392]
-- [net] ipv6: use ipv6_addr_scope() helper (Jiri Benc) [991392]
-- [net] ipv6: add support of peer address (Jiri Benc) [991392]
-- [net] rtm_to_ifaddr: free ifa if ifa_cacheinfo processing fails (Daniel Borkmann) [992908]
-- [net] net_sched: restore "linklayer atm" handling (Jesper Brouer) [998588]
-- [net] net_sched: psched_ratecfg_precompute() improvements (Jesper Brouer) [998588]
-- [net] ip_tunnel: Do not use inner ip-header-id for tunnel ip-header-id (Amerigo Wang) [989522]
-- [net] openvswitch: Add vxlan tunneling support (Amerigo Wang) [989522]
-- [net] vxlan: Add tx-vlan offload support (Amerigo Wang) [989522]
-- [net] vxlan: Improve vxlan headroom calculation (Amerigo Wang) [989522]
-- [net] vxlan: Factor out vxlan send api (Amerigo Wang) [989522]
-- [net] vxlan: Extend vxlan handlers for openvswitch (Amerigo Wang) [989522]
-- [net] vxlan: Add vxlan recv demux (Amerigo Wang) [989522]
-- [net] vxlan: Restructure vxlan receive (Amerigo Wang) [989522]
-- [net] vxlan: Restructure vxlan socket apis (Amerigo Wang) [989522]
-- [net] openvswitch: Reset tunnel key between input and output (Amerigo Wang) [989522]
-- [net] openvswitch: Use correct type while allocating flex array (Amerigo Wang) [989522]
-- [net] openvswitch: Fix bad merge resolution (Amerigo Wang) [989522]
-- [net] rtnetlink: Fix inverted check in ndo_dflt_fdb_del() (Amerigo Wang) [989522]
-- [net] rtnetlink: allow using zero MAC address in rtnl_fdb_{add, del} (Amerigo Wang) [989522]
-- [net] vxlan: fix a soft lockup in vxlan module removal (Amerigo Wang) [989522]
-- [net] vxlan: fix a regression of igmp join (Amerigo Wang) [989522]
-- [net] vxlan: fix rcu related warning (Amerigo Wang) [989522]
-- [net] vxlan: fdb: replace an existing entry (Amerigo Wang) [989522]
-- [net] vxlan: fix igmp races (Amerigo Wang) [989522]
-- [net] vxlan: unregister on namespace exit (Amerigo Wang) [989522]
-- [net] vxlan: add necessary locking on device removal (Amerigo Wang) [989522]
-- [net] vxlan: Fix kernel crash on rmmod (Amerigo Wang) [989522]
-- [net] vxlan: fix function name spelling (Amerigo Wang) [989522]
-- [net] vxlan: fdb: allow specifying multiple destinations for zero MAC (Amerigo Wang) [989522]
-- [net] vxlan: allow removal of single destination from fdb entry (Amerigo Wang) [989522]
-- [net] vxlan: introduce vxlan_fdb_parse (Amerigo Wang) [989522]
-- [net] vxlan: introduce vxlan_fdb_find_rdst (Amerigo Wang) [989522]
-- [net] vxlan: add implicit fdb entry for default destination (Amerigo Wang) [989522]
-- [net] vxlan: Fix sparse warnings (Amerigo Wang) [989522]
-- [net] vxlan: cosmetic cleanup's (Amerigo Wang) [989522]
-- [net] vxlan: Use initializer for dummy structures (Amerigo Wang) [989522]
-- [net] vxlan: port module param should be ushort (Amerigo Wang) [989522]
-- [net] vxlan: convert remotes list to list_rcu (Amerigo Wang) [989522]
-- [net] vxlan: make vxlan_xmit_one void (Amerigo Wang) [989522]
-- [net] vxlan: move cleanup to uninit (Amerigo Wang) [989522]
-- [net] vxlan: fix race caused by dropping rtnl_unlock (Amerigo Wang) [989522]
-- [net] vxlan: send notification when MAC migrates (Amerigo Wang) [989522]
-- [net] vxlan: move IGMP join/leave to work queue (Amerigo Wang) [989522]
-- [net] vxlan: fix crash from work pending on module removal (Amerigo Wang) [989522]
-- [net] vxlan: fix out of order operation on module removal (Amerigo Wang) [989522]
-- [net] vxlan: defer vxlan init as late as possible (Amerigo Wang) [989522]
-- [net] vxlan: use unsigned int instead of unsigned (Amerigo Wang) [989522]
-- [net] vxlan: remove the unused rcu head from struct vxlan_rdst (Amerigo Wang) [989522]
-- [net] vxlan: listen on multiple ports (Amerigo Wang) [989522]
-- [rhel] Kconfig: enable CONFIG_OPENVSWITCH_GRE (Amerigo Wang) [992917]
-- [net] ip_tunnel: embed hash list head (Amerigo Wang) [992917]
-- [net] sit: fix tunnel update via netlink (Amerigo Wang) [992917]
-- [net] ipv6: only apply anti-spoofing checks to not-pointopoint tunnels (Amerigo Wang) [992917]
-- [net] gre: Fix MTU sizing check for gretap tunnels (Amerigo Wang) [992917]
-- [net] ip_tunnels: Use skb-len to PMTU check (Amerigo Wang) [992917]
-- [net] gso: Update tunnel segmentation to support Tx checksum offload (Amerigo Wang) [992917]
-- [net] gre: move GSO functions to gre_offload (Amerigo Wang) [992917]
-- [net] gre: fix a regression in ioctl (Amerigo Wang) [992917]
-- [net] sit: add support of x-netns (Amerigo Wang) [992917]
-- [net] dev: introduce skb_scrub_packet() (Amerigo Wang) [992917]
-- [net] dev: remove duplicate 'skb->dev = dev' in dev_forward_skb() (Amerigo Wang) [992917]
-- [net] sit: fix an oops when IFLA_IPTUN_PROTO is not set (Amerigo Wang) [992917]
-- [net] sit: fix 4in4 + IPsec scenario (Amerigo Wang) [992917]
-- [net] openvswitch: Add Kconfig dependency on GRE-DEMUX (Amerigo Wang) [992917]
-- [net] ip_tunnel: Protect tunnel functions with CONFIG_INET guard (Amerigo Wang) [992917]
-- [net] openvswitch: Use correct config guard (Amerigo Wang) [992917]
-- [net] openvswitch: Add gre tunnel support (Amerigo Wang) [992917]
-- [net] openvswitch: Optimize flow key match for non tunnel flows (Amerigo Wang) [992917]
-- [net] openvswitch: Expand action buffer size (Amerigo Wang) [992917]
-- [net] openvswitch: Add tunneling interface (Amerigo Wang) [992917]
-- [net] openvswitch: Copy individual actions (Amerigo Wang) [992917]
-- [net] ip_tunnel: Add dont fragment flag (Amerigo Wang) [992917]
-- [net] ip_tunnel: push generic protocol handling to ip_tunnel module (Amerigo Wang) [992917]
-- [net] ip_tunnel: extend iptunnel_xmit() (Amerigo Wang) [992917]
-- [net] gre: export gre_handle_offloads() function (Amerigo Wang) [992917]
-- [net] gre: export gre_build_header() function (Amerigo Wang) [992917]
-- [net] gre: Allow multiple protocol listener for gre protocol (Amerigo Wang) [992917]
-- [net] gre: Simplify gre protocol registration locking (Amerigo Wang) [992917]
-- [net] openvswitch: make skb->csum consistent with rest of networking stack (Amerigo Wang) [992917]
-- [net] openvswitch: Simplify interface ovs_flow_metadata_from_nlattrs() (Amerigo Wang) [992917]
-- [net] openvswitch: Fix misspellings in comments and docs (Amerigo Wang) [992917]
-- [net] openvswitch: Unify vport error stats handling (Amerigo Wang) [992917]
-- [net] openvswitch: fix variable names in comment (Amerigo Wang) [992917]
-- [net] openvswitch: Immediately exit on error in ovs_vport_cmd_set() (Amerigo Wang) [992917]
-- [net] openvswitch: Remove unused get_config vport op (Amerigo Wang) [992917]
-- [net] iptunnel: specify protocol outside IP header (Amerigo Wang) [992917]
-- [net] sit: add IPv4 over IPv4 support (Amerigo Wang) [992917]
-- [net] export physical port id via sysfs (Jiri Pirko) [991026]
-- [net] rtnl: export physical port id via RT netlink (Jiri Pirko) [991026]
-- [net] add ndo to get id of physical port of the device (Jiri Pirko) [991026]
-- [net] busy_poll: revert unsupported bits from creation of BUSY_POLL socket option (Neil Horman) [958330]
-- [net] busy_poll: rename busy poll socket op and globals (Neil Horman) [958330]
-- [net] busy_poll: rename ll methods to busy-poll (Neil Horman) [958330]
-- [net] busy_poll: rename include/net/ll_poll.h to include/net/busy_poll.h (Neil Horman) [958330]
-- [net] busy_poll: change busy poll time accounting (Neil Horman) [958330]
-- [net] busy_poll: rename low latency sockets functions to busy poll (Neil Horman) [958330]
-- [net] busy_poll: lls fix build with allnoconfig (Neil Horman) [958330]
-- [net] busy_poll: convert lls to use time_in_range() (Neil Horman) [958330]
-- [net] busy_poll: avoid calling sched_clock when LLS is off (Neil Horman) [958330]
-- [net] busy_poll: fix LLS debug_smp_processor_id() warning (Neil Horman) [958330]
-- [net] busy_poll: poll/select low latency socket support (Neil Horman) [958330]
-- [net] busy_poll: add socket option for low latency polling (Neil Horman) [958330]
-- [net] busy_poll: remove NET_LL_RX_POLL config menu (Neil Horman) [958330]
-- [net] busy_poll: convert low latency sockets to sched_clock() (Neil Horman) [958330]
-- [net] busy_poll: change sysctl_net_ll_poll into an unsigned int (Neil Horman) [958330]
-- [netdrv] ixgbe: add extra stats for ndo_ll_poll (Neil Horman) [958330]
-- [netdrv] ixgbe: add support for ndo_ll_poll (Neil Horman) [958330]
-- [net] tcp: add low latency socket poll support (Neil Horman) [958330]
-- [net] udp: add low latency socket poll support (Neil Horman) [958330]
-- [net] busy_poll: add low latency socket poll (Neil Horman) [958330]
-- [net] add napi_id and hash (Neil Horman) [958330]
-
-* Wed Aug 28 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-13.el7]
-- [powerpc] pseries: Drop "select HOTPLUG" (Myron Stowe) [999178]
-- [misc] Finally eradicate CONFIG_HOTPLUG (Myron Stowe) [999178]
-- [vfio] vfio-pci: Avoid deadlock on remove (Alex Williamson) [912293]
-- [vfio] Ignore sprurious notifies (Alex Williamson) [912293]
-- [vfio] Don't overreact to DEL_DEVICE (Alex Williamson) [912293]
-- [s390] qeth: Fix crash on initial MTU size change (Hendrik Brueckner) [997607]
-- [s390] qeth: change default standard blkt settings for OSA (Hendrik Brueckner) [997635]
-- [s390] dasd: fix hanging devices after path events (Hendrik Brueckner) [996178]
-- [s390] zcrypt: Alias for new zcrypt device driver base module (Hendrik Brueckner) [996731]
-- [s390] zfcp: status read buffers on first adapter open with link down (Hendrik Brueckner) [976636]
-- [s390] zfcp: fix adapter (re)open recovery while link to SAN is down (Hendrik Brueckner) [889079]
-- [netdrv] be2net: Fix to avoid hardware workaround when not needed (Ivan Vecera) [982900]
-- [fs] gfs2: Take glock reference in examine_bucket() (Steven Whitehouse) [999897]
-- [fs] gfs2: Check for glock already held in gfs2_getxattr (Steven Whitehouse) [997604]
-- [crypto] nx: fix nx-aes-gcm verification (Steve Best) [997057]
-- [s390] zfcp: remove access control tables interface (Hendrik Brueckner) [994519]
-- [s390] zfcp: cfdc fops add owner (Hendrik Brueckner) [994519]
-- [scsi] fcoe: cleanup return codes from fcoe_rcv (Neil Horman) [984876]
-- [scsi] fcoe: make sure fcoe frames are unshared prior to manipulating them (Neil Horman) [984876]
-- [scsi] fcoe: ensure that skb placed on the fip_recv_list are unshared (Neil Horman) [984876]
-- [mm] zswap: add documentation (Steve Best) [731499]
-- [mm] zswap: add to mm (Steve Best) [731499]
-- [mm] zbud: add to mm (Steve Best) [731499]
-- [misc] MAINTAINERS: add zswap and zbud maintainer (Steve Best) [731499]
-- [fs] debugfs: add get/set for atomic types (Steve Best) [731499]
-
-* Mon Aug 26 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-12.el7]
-- [acpi] memhotplug: Fix a stale pointer in error path (Lenny Szubowicz) [995322]
-- [powerpc] Add second POWER8 PVR entry (Steve Best) [995355]
-- [acpi] power: add missing newline to debug messages (Myron Stowe) [998633]
-- [tools] cpupower: Add Haswell family 0x45 specific idle monitor to show PC8, 9, 10 states (Myron Stowe) [998633]
-- [tools] cpupower: Haswell also supports the C-states introduced with SandyBridge (Myron Stowe) [998633]
-- [tools] cpupower: Introduce idle-set subcommand and C-state enabling/disabling (Myron Stowe) [998633]
-- [tools] cpupower: Implement disabling of cstate interface (Myron Stowe) [998633]
-- [tools] cpupower: Make idlestate usage unsigned (Myron Stowe) [998633]
-- [acpi] fan: Initialize acpi_state variable (Myron Stowe) [998633]
-- [acpi] scan: remove unused LIST_HEAD(acpi_device_list) (Myron Stowe) [998633]
-- [acpi] dock: Actually define acpi_dock_init() as void (Myron Stowe) [998633]
-- [acpi] pm: Fix corner case in acpi_bus_update_power() (Myron Stowe) [998633]
-- [cpufreq] Fix serialization of frequency transitions (Myron Stowe) [998633]
-- [cpufreq] Fix cpufreq regression after suspend/resume (Myron Stowe) [991615]
-- [acpi] pm: Fix possible NULL pointer deref in acpi_pm_device_sleep_state() (Myron Stowe) [991615]
-- [kernel] power: Warn about system time after resume with pm_trace (Myron Stowe) [991615]
-- [cpufreq] don't leave stale policy pointer in cdbs->cur_policy (Myron Stowe) [991615]
-- [cpufreq] acpi-cpufreq: Add new sysfs attribute freqdomain_cpus (Myron Stowe) [991615]
-- [cpufreq] make sure frequency transitions are serialized (Myron Stowe) [991615]
-- [acpi] implement acpi_os_get_timer() according the spec (Myron Stowe) [991615]
-- [acpi] ec: Add HP Folio 13 to ec_dmi_table in order to skip DSDT scan (Myron Stowe) [991615]
-- [acpi] Add CMOS RTC Operation Region handler support (Myron Stowe) [991615]
-- [acpi] processor: Drop unused variable from processor_perflib.c (Myron Stowe) [991615]
-- [cpufreq] powernow-k8: call CPUFREQ_POSTCHANGE notfier in error cases (Myron Stowe) [991615]
-- [cpufreq] pcc: call CPUFREQ_POSTCHANGE notfier in error cases (Myron Stowe) [991615]
-- [cpufreq] acpi-cpufreq: call CPUFREQ_POSTCHANGE notfier in error cases (Myron Stowe) [991615]
-- [Documentation] power: Add pm_qos and dev_pm_qos to events-power.txt (Myron Stowe) [991615]
-- [base] power/qos: Add dev_pm_qos_request tracepoints (Myron Stowe) [991615]
-- [kernel] power/qos: Add pm_qos_request tracepoints (Myron Stowe) [991615]
-- [kernel] power/qos: Add pm_qos_update_target/flags tracepoints (Myron Stowe) [991615]
-- [acpi] processor: Remove unused macros in processor_driver.c (Myron Stowe) [991615]
-- [Documentation] power: Update Documentation/power/pm_qos_interface.txt (Myron Stowe) [991615]
-- [Documentation] cpu-hotplug: Rephrase the outdated description for MADT entries (Myron Stowe) [991615]
-- [cpufreq] make __cpufreq_notify_transition() static (Myron Stowe) [991615]
-- [cpufreq] Fix minor formatting issues (Myron Stowe) [991615]
-- [cpufreq] Fix governor start/stop race condition (Myron Stowe) [991615]
-- [kernel] power: Print last wakeup source on failed wakeup_count write (Myron Stowe) [991615]
-- [kernel] power/qos: correct the valid range of pm_qos_class (Myron Stowe) [991615]
-- [Documentation] video: update video_extension.txt for backlight control (Myron Stowe) [991615]
-- [Documentation] video: move video_extension.txt to Documentation/acpi (Myron Stowe) [991615]
-- [Documentation] video: add description for brightness_switch_enabled (Myron Stowe) [991615]
-- [Documentation] Add ACPI namespace documentation (Myron Stowe) [991615]
-- [Documentation] Add sysfs ABI documentation (Myron Stowe) [991615]
-- [Documentation] MAINTAINERS: include Documentation/acpi (Myron Stowe) [991615]
-- [acpi] acpica: Update version to 20130517 (Myron Stowe) [991615]
-- [acpi] acpica: _CST repair, handle null package entries (Myron Stowe) [991615]
-- [acpi] acpica: Add several repairs for _CST predefined name (Myron Stowe) [991615]
-- [acpi] acpica: Move _PRT repair into the standard complex repair module (Myron Stowe) [991615]
-- [acpi] scan: Do not bind ACPI drivers to objects with scan handlers (Myron Stowe) [991615]
-- [acpi] pm: Rework and clean up acpi_dev_pm_get_state() (Myron Stowe) [991615]
-- [acpi] pm: Replace ACPI_STATE_D3 with ACPI_STATE_D3_COLD in device_pm.c (Myron Stowe) [991615]
-- [acpi] pm: Rename function acpi_device_power_state() and make it static (Myron Stowe) [991615]
-- [acpi] pm: acpi_processor_suspend() can be static (Myron Stowe) [991615]
-- [virt] xen/acpi: Register an acpi_suspend_lowlevel callback (Myron Stowe) [991615]
-- [x86] acpi/sleep: Provide registration for acpi_suspend_lowlevel (Myron Stowe) [991615]
-- [acpi] Remove unused flags in acpi_device_flags (Myron Stowe) [991615]
-- [acpi] Remove useless initializers (Myron Stowe) [991615]
-- [acpi] battery: Make sure all spaces are in correct places (Myron Stowe) [991615]
-- [acpi] add _STA evaluation at do_acpi_find_child() (Myron Stowe) [991615]
-- [acpi] ec: access user space with get_user()/put_user() (Myron Stowe) [991615]
-- [cpufreq] Simplify userspace governor (Myron Stowe) [991615]
-- [acpi] lpss: override SDIO private register space size from ACPI tables (Myron Stowe) [991615]
-- [acpi] lpss: mask the UART TX completion interrupt (Myron Stowe) [991615]
-- [acpi] lpss: add support for Intel BayTrail (Myron Stowe) [991615]
-- [acpi] Do not use CONFIG_ACPI_HOTPLUG_MEMORY_MODULE (Myron Stowe) [991615]
-- [cpufreq] x86: make X86_AMD_FREQ_SENSITIVITY select CPU_FREQ_TABLE (Myron Stowe) [991615]
-- [cpufreq] powerpc: make CBE_RAS select CPU_FREQ_TABLE (Myron Stowe) [991615]
-- [cpufreq] blackfin: enable driver for CONFIG_BFIN_CPU_FREQ (Myron Stowe) [991615]
-- [acpi] acpica: Clear events initialized flag upon event component termination (Myron Stowe) [991615]
-- [acpi] acpica: Fix possible memory leak in GPE init error path (Myron Stowe) [991615]
-- [acpi] acpica: on termination, delete global lock pending lock (Myron Stowe) [991615]
-- [acpi] acpica: Update interface to acpi_ut_valid_acpi_name() (Myron Stowe) [991615]
-- [acpi] acpica: Do not use extended sleep registers unless HW-reduced bit is set (Myron Stowe) [991615]
-- [acpi] acpica: Split table print utilities to a new a separate file (Myron Stowe) [991615]
-- [acpi] acpica: Add option to disable loading of SSDTs from the RSDT/XSDT (Myron Stowe) [991615]
-- [acpi] acpica: Standardize all switch() blocks (Myron Stowe) [991615]
-- [acpi] acpica: Split internal error msg routines to a separate file (Myron Stowe) [991615]
-- [acpi] acpica: Split buffer dump routines into separate file (Myron Stowe) [991615]
-- [acpi] scan: Simplify ACPI driver probing (Myron Stowe) [991615]
-- [base] power/wakeup: Adjust messaging for wake events during suspend (Myron Stowe) [991615]
-- [cpuidle] Fix ARCH_NEEDS_CPU_IDLE_COUPLED dependency warning (Myron Stowe) [991615]
-- [cpuidle] Comment the driver's framework code (Myron Stowe) [991615]
-- [cpuidle] simplify multiple driver support (Myron Stowe) [991615]
-- [cpufreq] powerpc: move cpufreq driver to drivers/cpufreq (Myron Stowe) [991615]
-- [cpufreq] acpi-cpufreq: Add ACPI processor device IDs to acpi-cpufreq (Myron Stowe) [991615]
-- [cpufreq] remove unnecessary cpufreq_cpu_{get,put}() calls (Myron Stowe) [991615]
-- [Documentation] MAINTAINERS: Add git tree path for ARM specific updates to cpufreq (Myron Stowe) [991615]
-- [cpufreq] rename index as driver_data in cpufreq_frequency_table (Myron Stowe) [991615]
-- [Documentation] power: Update .runtime_idle() callback documentation (Myron Stowe) [991615]
-- [kernel] power: Rework the "runtime idle" helper routine (Myron Stowe) [991615]
-- [kernel] power: print physical addresses consistently with other parts of kernel (Myron Stowe) [991615]
-- [cpuidle] improve governor Kconfig options (Myron Stowe) [991615]
-- [Documentation] MAINTAINERS: update mailing list for devfreq(DVFS) (Myron Stowe) [991615]
-- [devfreq] fix typo "CPU_EXYNOS4.12" twice (Myron Stowe) [991615]
-- [devfreq] add comments and Documentation (Myron Stowe) [991615]
-- [devfreq] account suspend/resume for stats (Myron Stowe) [991615]
-- [mm] memory_hotplug: Move alternative function definitions to header (Myron Stowe) [991615]
-- [acpi] processor: Fix potential NULL pointer dereference in acpi_processor_add() (Myron Stowe) [991615]
-- [acpi] acpica: Update version to 20130418 (Myron Stowe) [991615]
-- [acpi] acpica: Update for "orphan" embedded controller _REG method support (Myron Stowe) [991615]
-- [acpi] acpica: Remove unused macros, no functional change (Myron Stowe) [991615]
-- [acpi] acpica: Predefined name support, remove unused local variable (Myron Stowe) [991615]
-- [acpi] acpica: Add argument typechecking for all predefined ACPI names (Myron Stowe) [991615]
-- [acpi] acpica: Add BIOS error interface for predefined name validation support (Myron Stowe) [991615]
-- [acpi] acpica: Change an exception code for the ASL UnLoad() operator (Myron Stowe) [991615]
-- [acpi] memhotplug: Simplify memory removal (Myron Stowe) [991615]
-- [acpi] scan: Add second pass of companion offlining to hot-remove code (Myron Stowe) [991615]
-- [base] memory: Drop offline_memory_block() (Myron Stowe) [991615]
-- [acpi] processor: Pass processor object handle to acpi_bind_one() (Myron Stowe) [991615]
-- [acpi] Drop removal_type field from struct acpi_device (Myron Stowe) [991615]
-- [base] memory: Simplify __memory_block_change_state() (Myron Stowe) [991615]
-- [acpi] processor: Initialize per_cpu(processors, pr->id) properly (Myron Stowe) [991615]
-- [base] cpu: Fix sysfs cpu/online of offlined CPUs (Myron Stowe) [991615]
-- [cpufreq] Don't create empty /sys/devices/system/cpu/cpufreq directory (Myron Stowe) [991615]
-- [cpufreq] Move get_cpu_idle_time() to cpufreq.c (Myron Stowe) [991615]
-- [cpufreq] governors: Move get_governor_parent_kobj() to cpufreq.c (Myron Stowe) [991615]
-- [cpufreq] Add EXPORT_SYMBOL_GPL for have_governor_per_policy (Myron Stowe) [991615]
-- [pnp] restore automatic resolution of DMA conflicts (Myron Stowe) [991615]
-- [net] af_unix: use freezable blocking calls in read (Myron Stowe) [991615]
-- [kernel] sigtimedwait: use freezable blocking call (Myron Stowe) [991615]
-- [kernel] nanosleep: use freezable blocking call (Myron Stowe) [991615]
-- [kernel] futex: use freezable blocking call (Myron Stowe) [991615]
-- [fs] select: use freezable blocking call (Myron Stowe) [991615]
-- [fs] epoll: use freezable blocking call (Myron Stowe) [991615]
-- [kernel] freezer: add new freezable helpers using freezer_do_not_count() (Myron Stowe) [991615]
-- [kernel] freezer: convert freezable helpers to static inline where possible (Myron Stowe) [991615]
-- [kernel] freezer: convert freezable helpers to freezer_do_not_count() (Myron Stowe) [991615]
-- [kernel] freezer: skip waking up tasks with PF_FREEZER_SKIP set (Myron Stowe) [991615]
-- [kernel] power: shorten freezer sleep time using exponential backoff (Myron Stowe) [991615]
-- [kernel] lockdep: check that no locks held at freeze time (Myron Stowe) [991615]
-- [kernel] lockdep: remove task argument from debug_check_no_locks_held (Myron Stowe) [991615]
-- [fs] cifs: add unsafe versions of freezable helpers for CIFS (Myron Stowe) [991615]
-- [fs] nfs: add unsafe versions of freezable helpers for NFS (Myron Stowe) [991615]
-- [base] memory: Introduce offline/online callbacks for memory blocks (Myron Stowe) [991615]
-- [acpi] memhotplug: Bind removable memory blocks to ACPI device nodes (Myron Stowe) [991615]
-- [acpi] processor: Use common hotplug infrastructure (Myron Stowe) [991615]
-- [acpi] hotplug: Use device offline/online for graceful hot-removal (Myron Stowe) [991615]
-- [base] cpu: Use generic offline/online for CPU offline/online (Myron Stowe) [991615]
-- [base] core: Add offline/online device operations (Myron Stowe) [991615]
-- [scsi] bnx2i: Fix bug on some bnx2x devices that don't support iSCSI (Tomas Henzl) [957024]
-- [x86] tracing: Add irq_enter/exit() in smp_trace_reschedule_interrupt() (Seiji Aguchi) [741673]
-- [x86] trace: Add config option checking to the definitions of mce handlers (Seiji Aguchi) [741673]
-- [x86] trace: Do not call local_irq_save() in load_current_idt() (Seiji Aguchi) [741673]
-- [x86] trace: Move creation of irq tracepoints from apic.c to irq.c (Seiji Aguchi) [741673]
-- [x86] trace: Add irq vector tracepoints (Seiji Aguchi) [741673]
-- [x86] trace: Rename variables for debugging (Seiji Aguchi) [741673]
-- [x86] trace: Introduce entering/exiting_irq() (Seiji Aguchi) [741673]
-- [tracing] Add DEFINE_EVENT_FN() macro (Seiji Aguchi) [741673]
-- [fs] pstore: Fail to unlink if a driver has not defined pstore_erase (Steve Best) [996930]
-- [powerpc] pseries: Inform the hypervisor we are using EBB regs (Steve Best) [997646]
-- [powerpc] perf: Export PERF_EVENT_CONFIG_EBB_SHIFT to userspace (Steve Best) [997646]
-- [powerpc] perf: Set PPC_FEATURE2_EBB when we register the power8 PMU (Steve Best) [997646]
-- [powerpc] Fix hypervisor facility unavaliable vector number (Steve Best) [995354]
-- [powerpc] Fix context switch DSCR on POWER8 (Steve Best) [995354]
-- [powerpc] Rework setting up H/FSCR bit definitions (Steve Best) [995354]
-- [powerpc] Wire up the HV facility unavailable exception (Steve Best) [995354]
-- [powerpc] Rename and flesh out the facility unavailable exception handler (Steve Best) [995354]
-- [powerpc] Remove KVMTEST from RELON exception handlers (Steve Best) [995354]
-- [powerpc] tm: Fix context switching TAR, PPR and DSCR SPRs (Steve Best) [988340]
-- [powerpc] Save the TAR register earlier (Steve Best) [988340]
-
-* Wed Aug 21 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-11.el7]
-- [security] Revert: Secure Boot related kernel enforcements (Jarod Wilson) [903815]
-
-* Tue Aug 20 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-10.el7]
-- [block] blk-mq: blk-mq should free bios in pass through case (Mike Snitzer) [960150]
-- [block] blk-mq: add missing percpu_counter_destroy for mq_usage_counter (Mike Snitzer) [960150]
-- [fs] direct-io: only inc_dec inode->i_dio_count for file systems (Mike Snitzer) [960150]
-- [lib] percpu_counter: make APIs irq safe (Mike Snitzer) [960150]
-- [block] null_blk: multi queue aware block test driver (Mike Snitzer) [960150]
-- [kernel] smp: Export __smp_call_function_single() (Mike Snitzer) [960150]
-- [block] blk-mq: change sw <-> hw queue mappings on hotplug events (Mike Snitzer) [960150]
-- [block] blk-mq: re-initialize queue data structure after CPU hotplug (Mike Snitzer) [960150]
-- [block] blk-mq: add queue freeze/unfreeze support (Mike Snitzer) [960150]
-- [block] blk-mq: fix timer infinite loop after first timeout event (Mike Snitzer) [960150]
-- [block] blk-mq: timeout fixes (Mike Snitzer) [960150]
-- [block] blk-mq: cpu hot plug_unplug fixes (Mike Snitzer) [960150]
-- [block] blk-mq: flush handling (Mike Snitzer) [960150]
-- [block] blk-mq: new multi-queue block IO queueing mechanism (Mike Snitzer) [960150]
-- [block] make rq->cmd_flags be 64-bit (Mike Snitzer) [960150]
-- [kernel] smp: don't warn about csd->flags having CSD_FLAG_LOCK cleared for !wait (Mike Snitzer) [960150]
-- [mm] sched: Allow uaccess in atomic with pagefault_disable() (Michael S. Tsirkin) [988029]
-- [mm] sched: Drop voluntary schedule from might_fault() (Michael S. Tsirkin) [988029]
-- [x86] uaccess s/might_sleep/might_fault/ (Michael S. Tsirkin) [988029]
-- [powerpc] uaccess s/might_sleep/might_fault/ (Michael S. Tsirkin) [988029]
-- [misc] asm-generic: uaccess s/might_sleep/might_fault/ (Michael S. Tsirkin) [988029]
-- [x86] efi: Disable secure boot if shim is in insecure mode (Lenny Szubowicz) [903815]
-- [kernel] modsign: Import certificates from UEFI Secure Boot (Lenny Szubowicz) [903815]
-- [kernel] keys: Add a system blacklist keyring (Lenny Szubowicz) [903815]
-- [crypto] asymmetric_keys: Add an EFI signature blob parser and key loader (Lenny Szubowicz) [903815]
-- [kernel] modsign: Fix including certificate twice when the signing_key.x509 already exists (Lenny Szubowicz) [903815]
-- [kernel] keys: Add a 'trusted' flag and a 'trusted only' flag (Lenny Szubowicz) [903815]
-- [kernel] modsign: Separate the kernel signature checking keyring from module signing (Lenny Szubowicz) [903815]
-- [kernel] modsign: Load *.x509 files into kernel keyring (Lenny Szubowicz) [903815]
-- [efi] Add EFI signature data types (Lenny Szubowicz) [903815]
-- [kernel] modsign: Always enforce module signing in a Secure Boot environment (Lenny Szubowicz) [903815]
-- [kernel] hibernate: Disable in a Secure Boot environment (Lenny Szubowicz) [903815]
-- [kernel] kexec: Disable in a secure boot environment (Lenny Szubowicz) [903815]
-- [x86] Lock down MSR writing in secure boot (Lenny Szubowicz) [903815]
-- [acpi] Ignore acpi_rsdp kernel parameter in a secure boot environment (Lenny Szubowicz) [903815]
-- [char] mem: Restrict /dev/mem and /dev/kmem in secure boot setups (Lenny Szubowicz) [903815]
-- [platform] asus-wmi: Restrict debugfs interface (Lenny Szubowicz) [903815]
-- [acpi] Limit access to custom_method (Lenny Szubowicz) [903815]
-- [x86] Lock down IO port access in secure boot environments (Lenny Szubowicz) [903815]
-- [pci] Lock down BAR access in secure boot environments (Lenny Szubowicz) [903815]
-- [x86] efi: Enable secure boot lockdown automatically when enabled in firmware (Lenny Szubowicz) [903815]
-- [kernel] Add a kernel parameter that will force on Secure Boot mode (Lenny Szubowicz) [903815]
-- [security] selinux: define mapping for new Secure Boot capability (Lenny Szubowicz) [903815]
-- [uapi] Add new secure boot capability (Lenny Szubowicz) [903815]
-- [kernel] audit: fix mq_open and mq_unlink to add the MQ root as a hidden parent audit_names record (Jeff Layton) [908885 953186]
-- [kernel] audit: log the audit_names record type (Jeff Layton) [908885 953186]
-- [kernel] audit: add child record before the create to handle case where create fails (Jeff Layton) [908885 953186]
-- [md] dm-raid: silence compiler warning on rebuilds_per_group (Jonathan E Brassow) [970782]
-- [md] dm-raid: Fix raid_resume not reviving failed devices in all cases (Jonathan E Brassow) [970782]
-- [md] dm-raid: Break-up untidy function (Jonathan E Brassow) [970782]
-- [s390] zfcp: block queue limits with data router (Hendrik Brueckner) [976657]
-- [scsi] scsi_lib: Fix race between starved list and device removal (Ewan Milne) [986037]
-- [md] dm-switch: add switch target (Mike Snitzer) [983188]
-- [wireless] disable WiMAX support (John Linville) [915650]
-- [fs] gfs2: don't overrun reserved revokes (Benjamin Marzinski) [950622]
-- [fs] gfs2: Reserve journal space for quota change in do_grow (Robert S Peterson) [979131]
-- [x86] setup: Add cpu_has_hypervisor check to rh_check_supported() (Prarit Bhargava) [986048]
-- [x86] sched: Optimize switch_mm() for multi-threaded workloads (Rik van Riel) [990747]
-- [crypto] nx: fix concurrency issue (Steve Best) [996565]
-- [powerpc] mm: Fix fallthrough bug in hpte_decode (Steve Best) [993326]
-- [misc] Kconfig: enable building user namespace with xfs (Dave Chinner) [987255]
-- [fs] xfs: add capability check to free eofblocks ioctl (Dave Chinner) [987255]
-- [fs] xfs: create internal eofblocks structure with kuid_t types (Dave Chinner) [987255]
-- [fs] xfs: convert kuid_t to/from uid_t for internal structures (Dave Chinner) [987255]
-- [fs] xfs: ioctl check for capabilities in the current user namespace (Dave Chinner) [987255]
-- [fs] xfs: convert kuid_t to/from uid_t in ACLs (Dave Chinner) [987255]
-- [fs] xfs: create wrappers for converting kuid_t to/from uid_t (Dave Chinner) [987255]
-- [md] raid5: fix interaction of 'replace' and 'recovery' (Jes Sorensen) [978055]
-- [md] raid10: remove use-after-free bug (Jes Sorensen) [978055]
-- [md] raid1: fix bio handling problems in process_checks() (Jes Sorensen) [978055]
-- [md] Remove recent change which allows devices to skip recovery (Jes Sorensen) [978055]
-- [md] raid10: fix two problems with RAID10 resync (Jes Sorensen) [978055]
-- [md] raid10: fix bug which causes all RAID10 reshapes to move no data (Jes Sorensen) [978055]
-- [md] raid5: allow 5-device RAID6 to be reshaped to 4-device (Jes Sorensen) [978055]
-- [md] raid10: fix two bugs affecting RAID10 reshape (Jes Sorensen) [978055]
-- [md] Remember the last sync operation that was performed (Jes Sorensen) [978055]
-- [md] raid0: fix buglet in RAID5 -> RAID0 conversion (Jes Sorensen) [978055]
-- [md] raid10: check In_sync flag in 'enough()' (Jes Sorensen) [978055]
-- [md] raid10: locking changes for 'enough()' (Jes Sorensen) [978055]
-- [md] replace strict_strto*() with kstrto*() (Jes Sorensen) [978055]
-- [md] Wait for md_check_recovery before attempting device removal (Jes Sorensen) [978055]
-- [md] dm-raid: Add ability to restore transiently failed devices on resume (Jes Sorensen) [978055]
-- [net] ipv6: resend MLD report if a link-local address completes DAD (Flavio Leitner) [889455]
-- [net] ipv6: introduce per-interface counter for dad-completed ipv6 addresses (Flavio Leitner) [889455]
-- [net] ipv6: split duplicate address detection and router solicitation timer (Flavio Leitner) [889455]
-- [net] tcp: introduce a per-route knob for quick ack (Amerigo Wang) [984504]
-- [net] nlmon: use standard rtnetlink link api for add/del devices (Daniel Borkmann) [957721]
-- [net] nlmon: fix comparison in nlmon_is_valid_mtu (Daniel Borkmann) [957721]
-- [net] packet: nlmon: virtual netlink monitoring device for packet sockets (Daniel Borkmann) [957721]
-- [net] netlink: virtual tap device management (Daniel Borkmann) [957721]
-- [net] if_arp: add ARPHRD_NETLINK type (Daniel Borkmann) [957721]
-
-* Tue Aug 13 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-9.el7]
-- [kernel] sched: disable autogroups by default (Josh Poimboeuf) [989741]
-- [powerpc] pseries: Add backward compatibilty to read old kernel oops-log (Steve Best) [991831]
-- [powerpc] pseries: Fix buffer overflow when reading from pstore (Steve Best) [991831]
-- [crypto] nx: saves chaining value from co-processor (Steve Best) [972656]
-- [crypto] nx: fix limits to sg lists for SHA-2 (Steve Best) [972656]
-- [crypto] nx: fix physical addresses added to sg lists (Steve Best) [972656]
-
-* Mon Aug 12 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-8.el7]
-- [net] ipv6: ip6_append_data_mtu did not care about pmtudisc and frag_size (Francesco Fusco) [994346] {CVE-2013-4163}
-- [net] ipv6: call udp_push_pending_frames when uncorking a socket with AF_INET pending data (Francesco Fusco) [988355] {CVE-2013-4162}
-- [kernel] sysctl: range checking in do_proc_dointvec_ms_jiffies_conv (Francesco Fusco) [972393]
-- [net] neigh: prevent overflowing params in /proc/sys/net/ipv4/neigh/ (Francesco Fusco) [972393]
-- [net] vhost-net: fix use-after-free in vhost_net_flush (Thomas Graf) [984723] {CVE-2013-4127}
-- [powerpc] tm: Fix return of active 64bit signals (Steve Best) [731886]
-- [powerpc] tm: Fix return of 32bit rt signals to active transactions (Steve Best) [731886]
-- [powerpc] tm: Fix restoration of MSR on 32bit signal return (Steve Best) [731886]
-- [powerpc] tm: Fix 32 bit non-rt signals (Steve Best) [731886]
-- [powerpc] tm: Fix writing top half of MSR on 32 bit signals (Steve Best) [731886]
-- [fs] nfs: verify open flags before allowing an atomic open (Jeff Layton) [984823]
-- [s390] zfcp: module parameter dbflevel for early debugging (Hendrik Brueckner) [994597]
-- [virt] virtio_net: fix the race between channels setting and refill (Jason Wang) [978153]
-- [kernel] audit: restore order of tty and ses fields in log output (Richard Guy Briggs) [983157]
-- [kernel] time/tick: Make oneshot broadcast robust vs. CPU offlining (Prarit Bhargava) [967464]
-- [virt] virtio_net: fix race in RX VQ processing (Jason Wang) [989409]
-- [virt] virtio: support unlocked queue poll (Jason Wang) [989409]
-- [powerpc] mm: Use the correct SLB(LLP) encoding in tlbie instruction (Steve Best) [993448]
-- [net] tuntap: do not zerocopy if iov needs more pages than MAX_SKB_FRAGS (Jason Wang) [982513]
-- [net] tuntap: correctly linearize skb when zerocopy is used (Jason Wang) [982513]
-- [virt] macvtap: do not zerocopy if iov needs more pages than MAX_SKB_FRAGS (Jason Wang) [990786]
-- [virt] macvtap: do not assume 802.1Q when send vlan packets (Jason Wang) [990786]
-- [virt] macvtap: fix the missing ret value of TUNSETQUEUE (Jason Wang) [990786]
-- [virt] macvtap: correctly linearize skb when zerocopy is used (Jason Wang) [982513]
-- [virt] macvtap: Perform GSO on forwarding path (Jason Wang) [895484]
-- [virt] macvtap: Let TUNSETOFFLOAD actually controll offload features (Jason Wang) [895484]
-- [virt] macvtap: Consistently use rcu functions (Jason Wang) [895484]
-- [virt] macvtap: Convert to using rtnl lock (Jason Wang) [895484]
-- [virt] macvtap: fix uninitialized return value macvtap_ioctl_set_queue() (Jason Wang) [731550]
-- [virt] macvtap: slient sparse warnings (Jason Wang) [731550]
-- [virt] macvtap: enable multiqueue flag (Jason Wang) [731550]
-- [virt] macvtap: add TUNSETQUEUE ioctl (Jason Wang) [731550]
-- [virt] macvtap: eliminate linear search (Jason Wang) [731550]
-- [virt] macvtap: introduce macvtap_get_vlan() (Jason Wang) [731550]
-- [virt] macvtap: do not add self to waitqueue if doing a nonblock read (Jason Wang) [731550]
-- [virt] macvtap: fix a possible race between queue selection and changing queues (Jason Wang) [731550]
-
-* Thu Aug 08 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-7.el7]
-- [vfio] type1: Fix leak on error path (Alex Williamson) [984081]
-- [vfio] Limit group opens (Alex Williamson) [984081]
-- [vfio] type1: Fix missed frees and zero sized removes (Alex Williamson) [984081]
-- [vfio] Provide module option to disable vfio_iommu_type1 hugepage support (Alex Williamson) [984081]
-- [vfio] hugepage support for vfio_iommu_type1 (Alex Williamson) [984081]
-- [vfio] Convert type1 iommu to use rbtree (Alex Williamson) [984081]
-- [iommu] Use pa and zx instead of casting (Alex Williamson) [984081]
-- [iommu] amd: Only unmap large pages from the first pte (Alex Williamson) [984081]
-- [iommu] Fix compiler warning on pr_debug (Alex Williamson) [984081]
-- [iommu] amd: Fix memory leak in free_pagetable (Alex Williamson) [984081]
-- [iommu] Split iommu_unmaps (Alex Williamson) [984081]
-- [iommu] intel, amd: Remove multifunction assumption around grouping (Alex Williamson) [984081]
-- [x86] spinlock: make ticket lock increment 2, unconditionally (Rik van Riel) [970737]
-- [virt] pvticketlock: When paravirtualizing ticket locks, increment by 2 (Rik van Riel) [970737]
-- [scsi] isci: Fix a race condition in the SSP task management path (David Milburn) [990201]
-- [netdrv] bnx2x: Wait for MCP validity during AER (Michal Schmidt) [797460]
-- [virt] virtio_scsi: Fix virtqueue affinity setup (Asias He) [971826]
-- [fs] nfs: fix open(O_RDONLY|O_TRUNC) in NFS4.0 (Jeff Layton) [987615]
-- [watchdog] hpwdt: Add check for UEFI bits (Linda Knippers) [985195]
-- [powerpc] mm/numa: VPHN topology change updates all siblings (Steve Best) [973594]
-- [powerpc] powernv: Fix iommu initialization again (Steve Best) [979523]
-- [firmware] efivars: If pstore_register fails, free unneeded pstore buffer (Lenny Szubowicz) [983597]
-- [acpi] Eliminate console msg if pstore.backend excludes ERST (Lenny Szubowicz) [983597]
-- [fs] pstore: Return unique error if backend registration excluded by kernel param (Lenny Szubowicz) [983597]
-
-* Tue Aug 06 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-6.el7]
-- [fs] locks: move file_lock_list to a set of percpu hlist_heads and convert file_lock_lock to an lglock (Jeff Layton) [976876]
-- [fs] seq_file: add seq_list_*_percpu helpers (Jeff Layton) [976876]
-- [fs] locks: give the blocked_hash its own spinlock (Jeff Layton) [976876]
-- [fs] locks: add a new "lm_owner_key" lock operation (Jeff Layton) [976876]
-- [fs] locks: turn the blocked_list into a hashtable (Jeff Layton) [976876]
-- [fs] locks: convert fl_link to a hlist_node (Jeff Layton) [976876]
-- [fs] locks: avoid taking global lock if possible when waking up blocked waiters (Jeff Layton) [976876]
-- [fs] locks: protect most of the file_lock handling with i_lock (Jeff Layton) [976876]
-- [fs] locks: encapsulate the fl_link list handling (Jeff Layton) [976876]
-- [fs] locks: make "added" in __posix_lock_file a bool (Jeff Layton) [976876]
-- [fs] locks: comment cleanups and clarifications (Jeff Layton) [976876]
-- [fs] locks: make generic_add_lease and generic_delete_lease static (Jeff Layton) [976876]
-- [fs] cifs: use posix_unblock_lock instead of locks_delete_block (Jeff Layton) [976876]
-- [fs] locks: drop the unused filp argument to posix_unblock_lock (Jeff Layton) [976876]
-- [scsi] ipr: IOA Status Code(IOASC) update (Steve Best) [731129]
-- [scsi] ipr: qc_fill_rtf() method should not store alternate status register (Steve Best) [731129]
-- [scsi] ipr: possible irq lock inversion dependency detected (Steve Best) [731129]
-- [fs] nfsd: when dentry_open returns an error do not propagate as struct file (Steve Dickson) [987090]
-- [net] sunrpc: underflow issue in decode_write_list() (Steve Dickson) [987090]
-- [fs] nfsd: fix minorversion support interface (Steve Dickson) [987090]
-- [fs] lockd: protect nlm_blocked access in nlmsvc_retry_blocked (Steve Dickson) [987090]
-- [fs] nfsd: support minorversion 1 by default (Steve Dickson) [987090]
-- [fs] nfsd: allow destroy_session over destroyed session (Steve Dickson) [987090]
-- [net] sunrpc: fix failures to handle -1 uid's (Steve Dickson) [987090]
-- [net] sunrpc: Don't schedule an upcall on a replaced cache entry (Steve Dickson) [987090]
-- [net] sunrpc: xpt_auth_cache should be ignored when expired (Steve Dickson) [987090]
-- [net] sunrpc/cache: ensure items removed from cache do not have pending upcalls (Steve Dickson) [987090]
-- [net] sunrpc/cache: use cache_fresh_unlocked consistently and correctly (Steve Dickson) [987090]
-- [net] sunrpc/cache: remove races with queuing an upcall (Steve Dickson) [987090]
-- [fs] nfsd: return delegation immediately if lease fails (Steve Dickson) [987090]
-- [fs] nfsd: do not throw away 4.1 lock state on last unlock (Steve Dickson) [987090]
-- [fs] nfsd: delegation-based open reclaims should bypass permissions (Steve Dickson) [987090]
-- [net] sunrpc: don't error out on small tcp fragment (Steve Dickson) [987090]
-- [net] sunrpc: fix handling of too-short rpc's (Steve Dickson) [987090]
-- [fs] nfsd: minor read_buf cleanup (Steve Dickson) [987090]
-- [fs] nfsd: fix decoding of compounds across page boundaries (Steve Dickson) [987090]
-- [fs] nfsd: clean up nfs4_open_delegation (Steve Dickson) [987090]
-- [fs] nfsd: Don't give out read delegations on creates (Steve Dickson) [987090]
-- [fs] nfsd: allow client to send no cb_sec flavors (Steve Dickson) [987090]
-- [fs] nfsd: fail attempts to request gss on the backchannel (Steve Dickson) [987090]
-- [fs] nfsd: implement minimal SP4_MACH_CRED (Steve Dickson) [987090]
-- [net] sunrpc: store gss mech in svc_cred (Steve Dickson) [987090]
-- [net] sunrpc: introduce init_svc_cred (Steve Dickson) [987090]
-- [fs] nfsd: avoid undefined signed overflow (Steve Dickson) [987090]
-- [net] sunrpc: the cache_detail in cache_is_valid is unused any more (Steve Dickson) [987090]
-- [net] sunrpc: server back channel needs no rpcbind method (Steve Dickson) [987090]
-- [fs] nfsd: fix compile in !CONFIG_NFSD_V4_SECURITY_LABEL case (Steve Dickson) [987090]
-- [fs] nfsd: Server implementation of MAC Labeling (Steve Dickson) [987090]
-- [fs] nfsd: Add NFS v4.2 support to the NFS server (Steve Dickson) [987090]
-- [security] fix cap_inode_getsecctx returning garbage (Steve Dickson) [987090]
-- [fs] nfsd: store correct client minorversion for >=4.2 (Steve Dickson) [987090]
-- [fs] nfsd: get rid of the unused functions in vfs (Steve Dickson) [987090]
-- [fs] nfs: Fix brainfart in attribute length calculation (Steve Dickson) [987090]
-- [fs] nfs: Fix a regression against the FreeBSD server (Steve Dickson) [987090]
-- [net] sunrpc/rpc_pipe: rpc_dir_inode_operations can be static (Steve Dickson) [987090]
-- [fs] nfs: Allow nfs_updatepage to extend a write under additional circumstances (Steve Dickson) [987090]
-- [fs] nfs: Make nfs_readdir revalidate less often (Steve Dickson) [987090]
-- [fs] nfs: Make nfs_attribute_cache_expired() non-static (Steve Dickson) [987090]
-- [net] sunrpc/rpc_pipe: set dentry operations at d_alloc time (Steve Dickson) [987090]
-- [fs] nfs: set verifier on existing dentries in nfs_prime_dcache (Steve Dickson) [987090]
-- [fs] nfs: Set NFS_CS_MIGRATION for NFSv4 mounts (Steve Dickson) [987090]
-- [fs] nfs: Refactor nfs4_init_session and nfs4_init_channel_attrs (Steve Dickson) [987090]
-- [fs] nfs: use pnfs_device maxcount for the objectlayout gdia_maxcount (Steve Dickson) [987090]
-- [fs] nfs: use pnfs_device maxcount for the blocklayout gdia_maxcount (Steve Dickson) [987090]
-- [fs] nfs: Fix gdia_maxcount calculation to fit in ca_maxresponsesize (Steve Dickson) [987090]
-- [fs] nfs: Improve legacy idmapping fallback (Steve Dickson) [987090]
-- [fs] nfs: end back channel session draining (Steve Dickson) [987090]
-- [fs] nfs: Apply v4.1 capabilities to v4.2 (Steve Dickson) [987090]
-- [fs] nfs: Clean up layout segment comparison helper names (Steve Dickson) [987090]
-- [fs] nfs: layout segment comparison helpers should take 'const' parameters (Steve Dickson) [987090]
-- [fs] nfs: Move the DNS resolver into the NFSv4 module (Steve Dickson) [987090]
-- [net] sunrpc/rpc_pipefs: only set rpc_dentry_ops if d_op isn't already set (Steve Dickson) [987090]
-- [fs] nfs: SETCLIENTID add the format string for the NETID (Steve Dickson) [987090]
-- [fs] nfs: Add in v4.2 callback operation (Steve Dickson) [987090]
-- [fs] nfs: Make callbacks minor version generic (Steve Dickson) [987090]
-- [fs] nfs: Add Kconfig entry for Labeled NFS V4 client (Steve Dickson) [987090]
-- [fs] nfs: Extend NFS xattr handlers to accept the security namespace (Steve Dickson) [987090]
-- [fs] nfs: Client implementation of Labeled-NFS (Steve Dickson) [987090]
-- [fs] nfs: Add label lifecycle management (Steve Dickson) [987090]
-- [fs] nfs: Add labels to client function prototypes (Steve Dickson) [987090]
-- [fs] nfs: Extend fattr bitmaps to support all 3 words (Steve Dickson) [987090]
-- [fs] nfs: Introduce new label structure (Steve Dickson) [987090]
-- [fs] nfs: Add label recommended attribute and NFSv4 flags (Steve Dickson) [987090]
-- [fs] nfs: Added NFS v4.2 support to the NFS client (Steve Dickson) [987090]
-- [security] selinux: Add new labeling type native labels (Steve Dickson) [987090]
-- [security] lsm: Add flags field to security_sb_set_mnt_opts for in kernel mount data (Steve Dickson) [987090]
-- [security] Add Hook to test if the particular xattr is part of a MAC model (Steve Dickson) [987090]
-- [security] Add hook to calculate context based on a negative dentry (Steve Dickson) [987090]
-- [fs] nfs: Close another NFSv4 recovery race (Steve Dickson) [987090]
-- [fs] nfs: Move dentry instantiation into the NFSv4-specific atomic open code (Steve Dickson) [987090]
-- [fs] nfs: Refactor _nfs4_open_and_get_state to set ctx->state (Steve Dickson) [987090]
-- [fs] nfs: pass the nfs_open_context to nfs4_do_open (Steve Dickson) [987090]
-- [fs] nfs: Remove redundant check for FMODE_EXEC in nfs_finish_open (Steve Dickson) [987090]
-- [net] sunrpc: Remove redundant call to rpc_set_running() in __rpc_execute() (Steve Dickson) [987090]
-- [net] sunrpc: Remove unused functions rpc_task_set/has_priority (Steve Dickson) [987090]
-- [net] sunrpc: Remove the unused helpers task_for_each() and task_for_first() (Steve Dickson) [987090]
-- [net] sunrpc: Remove unused function rpc_queue_empty (Steve Dickson) [987090]
-- [net] sunrpc: Fix a potential race in rpc_execute (Steve Dickson) [987090]
-- [fs] nfs: Simplify setting the layout header credential (Steve Dickson) [987090]
-- [fs] nfs: Enable state protection (Steve Dickson) [987090]
-- [fs] nfs: Use layout credentials for get_deviceinfo calls (Steve Dickson) [987090]
-- [fs] nfs: Ensure that test_stateid and free_stateid use correct credentials (Steve Dickson) [987090]
-- [fs] nfs: Ensure that reclaim_complete uses the right credential (Steve Dickson) [987090]
-- [fs] nfs: Ensure that layoutreturn uses the correct credential (Steve Dickson) [987090]
-- [fs] nfs: Ensure that layoutget is called using the layout credential (Steve Dickson) [987090]
-- [fs] nfs: Add NFSv4.2 protocol constants (Steve Dickson) [987090]
-
-* Fri Aug 02 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-5.el7]
-- [fs] cifs: fix bad error handling in crypto code (Jeff Layton) [988398]
-- [fs] cifs: Fix a deadlock when a file is reopened (Sachin Prabhu) [988398]
-- [fs] cifs: Reopen the file if reconnect durable handle failed (Sachin Prabhu) [988398]
-- [fs] cifs: Fix minor endian error in durable handle patch series (Sachin Prabhu) [988398]
-- [fs] cifs: Reconnect durable handles for SMB2 (Sachin Prabhu) [988398]
-- [fs] cifs: Make SMB2_open use cifs_open_parms struct (Sachin Prabhu) [988398]
-- [fs] cifs: Introduce cifs_open_parms struct (Sachin Prabhu) [988398]
-- [fs] cifs: Request durable open for SMB2 opens (Sachin Prabhu) [988398]
-- [fs] cifs: Simplify SMB2 create context handling (Sachin Prabhu) [988398]
-- [fs] cifs: Simplify SMB2_open code path (Sachin Prabhu) [988398]
-- [fs] cifs: Respect create_options in smb2_open_file (Sachin Prabhu) [988398]
-- [fs] cifs: Fix lease context buffer parsing (Sachin Prabhu) [988398]
-- [fs] cifs: use sensible file nlink values if unprovided (Sachin Prabhu) [988398]
-- [fs] cifs: Limit allocation of crypto mechanisms to dialect which requires (Sachin Prabhu) [988398]
-- [fs] cifs: Don't pass inode to ->d_hash() and ->d_compare() (Sachin Prabhu) [988398]
-- [fs] cifs: fill TRANS2_QUERY_FILE_INFO ByteCount fields (Sachin Prabhu) [988398]
-- [fs] cifs: fix SMB2 signing enablement in cifs_enable_signing (Sachin Prabhu) [988398]
-- [fs] cifs: Fix build warning (Sachin Prabhu) [988398]
-- [fs] cifs: SMB3 Signing enablement (Sachin Prabhu) [988398]
-- [fs] cifs: Do not set DFS flag on SMB2 open (Sachin Prabhu) [988398]
-- [fs] cifs: fix static checker warning (Sachin Prabhu) [988398]
-- [fs] cifs: try to handle the MUST SecurityFlags sanely (Sachin Prabhu) [988398]
-- [fs] cifs: When server doesn't provide SecurityBuffer on SMB2Negotiate pick default (Sachin Prabhu) [988398]
-- [fs] cifs: Handle big endianness in NTLM (ntlmv2) authentication (Sachin Prabhu) [988398]
-- [fs] cifs: revalidate directories instiantiated via FIND_* in order to handle DFS referrals (Sachin Prabhu) [988398]
-- [fs] cifs: SMB2 FSCTL and IOCTL worker function (Sachin Prabhu) [988398]
-- [fs] cifs: Charge at least one credit, if server says that it supports multicredit (Sachin Prabhu) [988398]
-- [fs] cifs: Remove typo (Sachin Prabhu) [988398]
-- [fs] cifs: Some missing share flags (Sachin Prabhu) [988398]
-- [fs] cifs: using strlcpy instead of strncpy (Sachin Prabhu) [988398]
-- [fs] cifs: Update headers to update various SMB3 ioctl definitions (Sachin Prabhu) [988398]
-- [fs] cifs: Update cifs version number (Sachin Prabhu) [988398]
-- [fs] cifs: Add ability to dipslay SMB3 share flags and capabilities for debugging (Sachin Prabhu) [988398]
-- [fs] cifs: Add some missing SMB3 and SMB3.02 flags (Sachin Prabhu) [988398]
-- [fs] cifs: Add SMB3.02 dialect support (Sachin Prabhu) [988398]
-- [fs] cifs: Fix endian error in SMB2 protocol negotiation (Sachin Prabhu) [988398]
-- [fs] cifs: clean up the SecurityFlags write handler (Sachin Prabhu) [988398]
-- [fs] cifs: update the default global_secflags to include "raw" NTLMv2 (Sachin Prabhu) [988398]
-- [fs] move sectype to the cifs_ses instead of TCP_Server_Info (Sachin Prabhu) [988398]
-- [fs] cifs: track the enablement of signing in the TCP_Server_Info (Sachin Prabhu) [988398]
-- [fs] add new fields to smb_vol to track the requested security flavor (Sachin Prabhu) [988398]
-- [fs] cifs: add new fields to cifs_ses to track requested security flavor (Sachin Prabhu) [988398]
-- [fs] cifs: track the flavor of the NEGOTIATE reponse (Sachin Prabhu) [988398]
-- [fs] cifs: add new "Unspecified" securityEnum value (Sachin Prabhu) [988398]
-- [fs] cifs: factor out check for extended security bit into separate function (Sachin Prabhu) [988398]
-- [fs] cifs: move handling of signed connections into separate function (Sachin Prabhu) [988398]
-- [fs] cifs: break out lanman NEGOTIATE handling into separate function (Sachin Prabhu) [988398]
-- [fs] cifs: break out decoding of security blob into separate function (Sachin Prabhu) [988398]
-- [fs] cifs: remove the cifs_ses->flags field (Sachin Prabhu) [988398]
-- [fs] cifs: throw a warning if negotiate or sess_setup ops are passed NULL server or session pointers (Sachin Prabhu) [988398]
-- [fs] cifs: make decode_ascii_ssetup void return (Sachin Prabhu) [988398]
-- [fs] cifs: remove useless memset in LANMAN auth code (Sachin Prabhu) [988398]
-- [fs] cifs: remove protocolEnum definition (Sachin Prabhu) [988398]
-- [fs] cifs: add a "nosharesock" mount option to force new sockets to server to be created (Sachin Prabhu) [988398]
-- [fs] fuse: readdirplus cleanup (Niels de Vos) [988312]
-- [fs] fuse: readdirplus change attributes once (Niels de Vos) [988312]
-- [fs] fuse: readdirplus fix instantiate (Niels de Vos) [988312]
-- [fs] fuse: readdirplus sanity checks (Niels de Vos) [988312]
-- [fs] fuse: fix readdirplus dentry leak (Niels de Vos) [988312]
-- [powerpc] hw_brk: Fix off by one error when validating DAWR region end (Steve Best) [843485]
-- [powerpc] hw_brk: Fix clearing of extraneous IRQ (Steve Best) [843485]
-- [powerpc] hw_brk: Fix setting of length for exact mode breakpoints (Steve Best) [843485]
-- [powerpc] perf: Add power8 EBB support (Steve Best) [969176]
-- [powerpc] perf: Core EBB support for 64-bit book3s (Steve Best) [969176]
-- [powerpc] perf: Don't enable if we have zero events (Steve Best) [969176]
-- [powerpc] powerpc/perf: Use existing out label in power_pmu_enable() (Steve Best) [969176]
-- [powerpc] perf: Freeze PMC5/6 if we're not using them (Steve Best) [969176]
-- [powerpc] powerpc/perf: Rework disable logic in pmu_disable() (Steve Best) [969176]
-- [powerpc] perf: Check that events only include valid bits on Power8 (Steve Best) [969176]
-- [ipc] sem: rename try_atomic_semop() to perform_atomic_semop(), docu update (Rik van Riel) [881820]
-- [ipc] sem: replace shared sem_otime with per-semaphore value (Rik van Riel) [881820]
-- [ipc] sem: always use only one queue for alter operations (Rik van Riel) [881820]
-- [ipc] sem: separate wait-for-zero and alter tasks into seperate queues (Rik van Riel) [881820]
-- [ipc] sem: cacheline align the semaphore structures (Rik van Riel) [881820]
-- [fs] gfs2: Add atomic_open support (Steven Whitehouse) [983098]
-- [fs] gfs2: Only do one directory search on create (Steven Whitehouse) [983098]
-- [fs] pstore: Add hsize argument in write_buf call of pstore_ftrace_call (Steve Best) [947161]
-- [powerpc] pseries: Support compression of oops text via pstore (Steve Best) [947161]
-- [powerpc] pseries: Re-organise the oops compression code (Steve Best) [947161]
-- [powerpc] pstore: Pass header size in the pstore write callback (Steve Best) [947161]
-- [powerpc] pseries: Read common partition via pstore (Steve Best) [947161]
-- [powerpc] pseries: Read of-config partition via pstore (Steve Best) [947161]
-- [powerpc] pseries: Distinguish between a os-partition and non-os partition (Steve Best) [947161]
-- [powerpc] pseries: Read rtas partition via pstore (Steve Best) [947161]
-- [powerpc] pseries: Read/Write oops nvram partition via pstore (Steve Best) [947161]
-- [powerpc] pseries: Introduce generic read function to read nvram-partitions (Steve Best) [947161]
-- [powerpc] pseries: Add version and timestamp to oops header (Steve Best) [947161]
-- [powerpc] pseries: Remove syslog prefix in uncompressed oops text (Steve Best) [947161]
-
-* Wed Jul 31 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-4.el7]
-- [x86] signals: Merge EFLAGS bit clearing into a single statement (Jiri Olsa) [986216]
-- [x86] signals: Clear RF EFLAGS bit for signal handler (Jiri Olsa) [986216]
-- [x86] signals: Propagate RF EFLAGS bit through the signal restore call (Jiri Olsa) [986216]
-- [kernel] perf: Fix perf_lock_task_context() vs RCU (Jiri Olsa) [986216]
-- [kernel] perf: Remove WARN_ON_ONCE() check in __perf_event_enable() for valid scenario (Jiri Olsa) [986216]
-- [kernel] perf: Clone child context from parent context pmu (Jiri Olsa) [986216]
-- [kernel] perf: Fix interrupt handler timing harness (Jiri Olsa) [986216]
-- [kernel] perf: Drop sample rate when sampling is too slow (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Introduce "struct bp_cpuinfo" (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Simplify *register_wide_hw_breakpoint() (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Introduce cpumask_of_bp() (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Simplify the "weight" usage in toggle_bp_slot() paths (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Simplify list/idx mess in toggle_bp_slot() paths (Jiri Olsa) [986216]
-- [kernel] perf: Add simple Haswell PMU support (Jiri Olsa) [986216]
-- [kernel] perf: Add const qualifier to perf_pmu_register's 'name' arg (Jiri Olsa) [986216]
-- [kernel] perf: Fix hypervisor branch sampling permission check (Jiri Olsa) [986216]
-- [kernel] perf: Check branch sampling priv level in generic code (Jiri Olsa) [986216]
-- [kernel] perf: Add sysfs entry to adjust multiplexing interval per PMU (Jiri Olsa) [986216]
-- [kernel] perf: Use hrtimers for event multiplexing (Jiri Olsa) [986216]
-- [kernel] perf: Fix hw breakpoints overflow period sampling (Jiri Olsa) [986216]
-- [tools] perf/tests: Check proper prev_state size for sched_switch tp (Jiri Olsa) [984998]
-- [tools] perf/tests: Omit end of the symbol check failure for test 1 (Jiri Olsa) [984998]
-- [tools] perf/script: Fix broken include in Context.xs (Jiri Olsa) [984998]
-- [tools] perf: Fix -ldw/-lelf link test when static linking (Jiri Olsa) [984998]
-- [tools] perf: Fix perf version generation (Jiri Olsa) [984998]
-- [tools] perf/stat: Fix per-socket output bug for uncore events (Jiri Olsa) [984998]
-- [tools] perf/symbols: Fix vdso list searching (Jiri Olsa) [984998]
-- [tools] perf/evsel: Fix missing increment in sample parsing (Jiri Olsa) [984998]
-- [tools] perf: Update symbol_conf.nr_events when processing attribute events (Jiri Olsa) [984998]
-- [tools] perf: Fix new_term() missing free on error path (Jiri Olsa) [984998]
-- [tools] perf: Fix parse_events_terms() segfault on error path (Jiri Olsa) [984998]
-- [tools] perf/evsel: Fix count parameter to read call in event_format__new (Jiri Olsa) [984998]
-- [tools] perf: Fix -x/--exclude-other option for report command (Jiri Olsa) [984998]
-- [tools] perf/evlist: Enhance perf_evlist__start_workload() (Jiri Olsa) [984998]
-- [tools] perf/record: Remove -f/--force option (Jiri Olsa) [984998]
-- [tools] perf/record: Remove -A/--append option (Jiri Olsa) [984998]
-- [tools] perf/stat: Avoid sending SIGTERM to random processes (Jiri Olsa) [984998]
-- [tools] perf: Include termios.h explicitly (Jiri Olsa) [984998]
-- [tools] perf/bench: Fix memory allocation fail check in mem{set, cpy} workloads (Jiri Olsa) [984998]
-- [tools] perf: Fix build errors with O and DESTDIR make vars set (Jiri Olsa) [984998]
-- [tools] perf: Fix output directory of Documentation/ (Jiri Olsa) [984998]
-- [tools] perf: Get only verbose output with V=1 (Jiri Olsa) [984998]
-- [tools] perf: Add missing liblk.a dependency for python/perf.so (Jiri Olsa) [984998]
-- [tools] perf: Remove '?=' Makefile STRIP assignment (Jiri Olsa) [984998]
-- [tools] perf: Replace multiple line assignment with multiple statements (Jiri Olsa) [984998]
-- [tools] perf: Replace tabs with spaces for all non-commands statements (Jiri Olsa) [984998]
-- [tools] perf: Add NO_BIONIC variable to confiure bionic setup (Jiri Olsa) [984998]
-- [tools] perf: Switch to full path C include directories (Jiri Olsa) [984998]
-- [tools] perf: Merge all *LDFLAGS* make variable into LDFLAGS (Jiri Olsa) [984998]
-- [tools] perf: Merge all *CFLAGS* make variable into CFLAGS (Jiri Olsa) [984998]
-- [tools] perf/evlist: Reset SIGTERM handler in workload child process (Jiri Olsa) [984998]
-- [tools] perf: Remove cwdlen from struct perf_session (Jiri Olsa) [984998]
-- [tools] perf: Remove frozen from perf_header struct (Jiri Olsa) [984998]
-- [tools] perf/tests: Fix exclude_guest|exclude_host checking for attr tests (Jiri Olsa) [984998]
-- [tools] perf/tests: Fix attr test for record -d option (Jiri Olsa) [984998]
-- [tools] perf: Final touches for CHK config move (Jiri Olsa) [984998]
-- [tools] perf: Move paths config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libnuma check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move stdlib check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libbfd check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libpython check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libperl check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move gtk2 check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move slang check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libaudit check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libunwind check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libdw check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libelf check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move compiler and linker flags check into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move programs check into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move arch check into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Add automated make test suite (Jiri Olsa) [984998]
-- [tools] perf: Save parent pid in thread struct (Jiri Olsa) [984998]
-- [tools] perf/stats: Fix divide by 0 in variance (Jiri Olsa) [984998]
-- [tools] perf/kvm: Handle realloc failures (Jiri Olsa) [984998]
-- [tools] perf/evsel: Fix printing of perf_event_paranoid message (Jiri Olsa) [984998]
-- [tools] perf/test: Fix typo (Jiri Olsa) [984998]
-- [tools] perf/hists: Rename hist_entry__add_pair arguments (Jiri Olsa) [984998]
-- [tools] perf/diff: Use internal rb tree for hists__precompute (Jiri Olsa) [984998]
-- [tools] perf/report: Add report.percent-limit config variable (Jiri Olsa) [984998]
-- [tools] perf/top: Add --percent-limit option (Jiri Olsa) [984998]
-- [tools] perf/report: Add --percent-limit option (Jiri Olsa) [984998]
-- [tools] perf/report: Don't bother locking when adding hist entries (Jiri Olsa) [984998]
-- [tools] perf/hists: Move locking to its call-sites (Jiri Olsa) [984998]
-- [tools] perf/top: Get rid of *_threaded() functions (Jiri Olsa) [984998]
-- [tools] perf/top: Fix percent output when no samples collected (Jiri Olsa) [984998]
-- [tools] perf/top: Fix -E option behavior (Jiri Olsa) [984998]
-- [tools] perf/record: handle death by SIGTERM (Jiri Olsa) [984998]
-- [tools] perf: Handle JITed code in shared memory (Jiri Olsa) [984998]
-- [tools] perf/tests: Fix compile errors in bp_signal files (Jiri Olsa) [984998]
-- [tools] perf: Fix tab vs spaces issue in Makefile ifdef/endif (Jiri Olsa) [984998]
-- [tools] perf/hists browser: Use sort__has_sym (Jiri Olsa) [984998]
-- [tools] perf/top: Use sort__has_sym (Jiri Olsa) [984998]
-- [tools] perf/sort: Cleanup sort__has_sym setting (Jiri Olsa) [984998]
-- [tools] perf/sort: Reorder HISTC_SRCLINE index (Jiri Olsa) [984998]
-- [tools] perf/archive: Fix typo on Documentation (Jiri Olsa) [984998]
-- [tools] perf/sort: Consolidate sort_entry__setup_elide() (Jiri Olsa) [984998]
-- [tools] perf/sort: Separate out memory-specific sort keys (Jiri Olsa) [984998]
-- [tools] perf/sort: Factor out common code in sort_dimension__add() (Jiri Olsa) [984998]
-- [tools] perf/sort: Introduce sort__mode variable (Jiri Olsa) [984998]
-- [tools] perf/report: Fix alignment of symbol column when -v is given (Jiri Olsa) [984998]
-- [tools] perf/hists: Free unused mem info of a matched hist entry (Jiri Olsa) [984998]
-- [tools] perf/hists: Fix an invalid memory free on he->branch_info (Jiri Olsa) [984998]
-- [tools] perf: Fix bug in isupper() and islower() (Jiri Olsa) [984998]
-- [mm] thp: define HPAGE_PMD_* constants as BUILD_BUG() if !THP (Steve Best) [947166]
-- [powerpc] mm: Fix build warnings with CONFIG_TRANSPARENT_HUGEPAGE disabled (Steve Best) [947166]
-- [powerpc] mm: Optimize hugepage invalidate (Steve Best) [947166]
-- [powerpc] thp: Enable THP on PPC64 (Steve Best) [947166]
-- [powerpc] mm: split hugepage when using subpage protection (Steve Best) [947166]
-- [powerpc] mm: disable assert_pte_locked for collapse_huge_page (Steve Best) [947166]
-- [powerpc] mm: Prevent gcc to re-read the pagetables (Steve Best) [947166]
-- [powerpc] mm: Make linux pagetable walk safe with THP enabled (Steve Best) [947166]
-- [powerpc] thp: Add code to handle HPTE faults for hugepages (Steve Best) [947166]
-- [powerpc] mm: Update gup_pmd_range to handle transparent hugepages (Steve Best) [947166]
-- [powerpc] kvm: Handle transparent hugepage in KVM (Steve Best) [947166]
-- [powerpc] mm: Replace find_linux_pte with find_linux_pte_or_hugepte (Steve Best) [947166]
-- [powerpc] mm: Update find_linux_pte_or_hugepte to handle transparent hugepages (Steve Best) [947166]
-- [powerpc] mm: move find_linux_pte_or_hugepte and gup_hugepte to common code (Steve Best) [947166]
-- [powerpc] thp: Implement transparent hugepages for ppc64 (Steve Best) [947166]
-- [powerpc] thp: Double the PMD table size for THP (Steve Best) [947166]
-- [powerpc] mm: handle hugepage size correctly when invalidating hpte entries (Steve Best) [947166]
-- [mm] thp: deposit the transpare huge pgtable before set_pmd (Steve Best) [947166]
-- [mm] thp: don't use HPAGE_SHIFT in transparent hugepage code (Steve Best) [947166]
-- [mm] thp: withdraw the pgtable after pmdp related operations (Steve Best) [947166]
-- [mm] thp: add pmd args to pgtable deposit and withdraw APIs (Steve Best) [947166]
-- [mm] thp: use the correct function when updating access flags (Steve Best) [947166]
-
-* Fri Jul 26 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-3.el7]
-- [powerpc] mm/numa: Do not update sysfs cpu registration from invalid context (Steve Best) [967447]
-- [misc] MAINTAINERS: Add ACPI folks for ACPI-related things under drivers/pci (Myron Stowe) [984759]
-- [pci] Add CircuitCo vendor ID and subsystem ID (Myron Stowe) [984759]
-- [pci] Use pdev->pm_cap instead of pci_find_capability(.., PCI_CAP_ID_PM) (Myron Stowe) [984759]
-- [pci] Return early on allocation failures to unindent mainline code (Myron Stowe) [984759]
-- [pci] Simplify IOV implementation and fix reference count races (Myron Stowe) [984759]
-- [pci] Drop redundant setting of bus->is_added in virtfn_add_bus() (Myron Stowe) [984759]
-- [pci] pci-acpi: Use correct power state strings in messages (Myron Stowe) [984759]
-- [pci] Fix comment typo for pcie_pme_remove() (Myron Stowe) [984759]
-- [pci] Rename pci_release_bus_bridge_dev() to pci_release_host_bridge_dev() (Myron Stowe) [984759]
-- [pci] Fix refcount issue in pci_create_root_bus() error recovery path (Myron Stowe) [984759]
-- [pci] Convert alloc_pci_dev(void) to pci_alloc_dev(bus) (Myron Stowe) [984759]
-- [pci] Hide remove and rescan sysfs interfaces for SR-IOV virtual functions (Myron Stowe) [984759]
-- [pci] Add pcibios_release_device() (Myron Stowe) [984759]
-- [iommu] irq_remapping: Conserve interrupt resources when using multiple-MSIs (Myron Stowe) [984759]
-- [i2c] i2c-piix4: Add AMD CZ SMBus device ID (Myron Stowe) [984759]
-- [ata] ahci: Add AMD CZ SATA device ID (Myron Stowe) [984759]
-- [pci] Put Hudson-2 device IDs together (Myron Stowe) [984759]
-- [pci] Replace strict_strtoul() with kstrtoul() (Myron Stowe) [984759]
-- [pci] Finish SR-IOV VF setup before adding the device (Myron Stowe) [984759]
-- [pci] Fix comment typo for PCI_EXP_LNKCAP_CLKPM (Myron Stowe) [984759]
-- [acpi] pci_root: Use dev_printk(), acpi_handle_print(), pr_xxx() when possible (Myron Stowe) [984759]
-- [acpi] pci_root: Remove unused global list acpi_pci_roots (Myron Stowe) [984759]
-- [acpi] pci_root: Introduce "handle" local for economy of expression (Myron Stowe) [984759]
-- [acpi] pci_root: Combine duplicate adjacent "if" tests (Myron Stowe) [984759]
-- [pci] Allocate only as many MSI vectors as requested by driver (Myron Stowe) [984759]
-- [pci] Replace printks with appropriate pr_*() (Myron Stowe) [984759]
-- [pci] Fix kerneldoc for pci_disable_link_state() (Myron Stowe) [984759]
-- [x86] pci: Increase info->res_num before checking pci_use_crs (Myron Stowe) [984759]
-- [pci] Fix INTC comment typo for pci_swizzle_interrupt_pin() (Myron Stowe) [984759]
-- [pci] Convert ioapic.c to module_pci_driver (Myron Stowe) [984759]
-- [pci] Introduce pci_alloc_dev(struct pci_bus*) to replace alloc_pci_dev() (Myron Stowe) [984759]
-- [pci] Introduce pci_bus_{get|put}() to manage PCI bus reference count (Myron Stowe) [984759]
-- [pci] Unset resource if initial BAR value is invalid (Myron Stowe) [984759]
-- [pci] Consolidate calls to pcibios_bus_to_resource() in __pci_read_base() (Myron Stowe) [984759]
-- [pci] Add 0x prefix to BAR register position in __pci_read_base() (Myron Stowe) [984759]
-- [pci] aspm: Warn when driver asks to disable ASPM, but we can't do it (Myron Stowe) [984759]
-- [powerpc] pci: Use PCI_UNKNOWN for unknown power state (Myron Stowe) [984759]
-- [acpi] pci_root: Check acpi_resource_to_address64() return value (Myron Stowe) [984759]
-- [pci] Work around Ivytown NTB BAR size issue (Myron Stowe) [984759]
-- [net] sunrpc: Fix another issue with rpc_client_register() (Jeff Layton) [924649]
-- [net] sunrpc: Fix a deadlock in rpc_client_register() (Jeff Layton) [924649]
-- [net] sunrpc: PipeFS MOUNT notification optimization for dying clients (Jeff Layton) [924649]
-- [net] sunrpc: split client creation routine into setup and registration (Jeff Layton) [924649]
-- [net] sunrpc: fix races on PipeFS UMOUNT notifications (Jeff Layton) [924649]
-- [net] sunrpc: fix races on PipeFS MOUNT notifications (Jeff Layton) [924649]
-
-* Fri Jul 19 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-2.el7]
-- [scsi] sd: fix crash when UA received on DIF enabled device (Ewan Milne) [979440]
-- [md] dm-cache: add call to mark_tech_preview (Mike Snitzer) [982752]
-- [fs] nfs: have NFSv3 try server-specified auth flavors in turn (Jeff Layton) [977649]
-- [fs] nfs: have nfs_mount fake up a auth_flavs list when the server didn't provide it (Jeff Layton) [977649]
-- [fs] nfs: move server_authlist into nfs_try_mount_request (Jeff Layton) [977649]
-- [fs] nfs: refactor "need_mount" code out of nfs_try_mount (Jeff Layton) [977649]
-- [pci] ear: Reset link for devices below Root Port or Downstream Port (Myron Stowe) [797485]
-- [acpi] apei: Force fatal AER severity when component has been reset (Myron Stowe) [797485]
-- [pci] aer: Remove "extern" from function declarations (Myron Stowe) [797485]
-- [pci] aer: Move AER severity defines to aer.h (Myron Stowe) [797485]
-- [pci] aer: Set dev->__aer_firmware_first only for matching devices (Myron Stowe) [797485]
-- [pci] aer: Factor out HEST device type matching (Myron Stowe) [797485]
-- [pci] aer: Don't parse HEST table for non-PCIe devices (Myron Stowe) [797485]
-
-* Tue Jul 09 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-1.el7]
-- [x86] fix !CONFIG_HYPERVISOR_GUEST compile (Andrew Jones)
-- [s390x] crash: Fuzzy live dump for Linux on System z (Hendrik Brueckner) [805120]
-- [xen] xenfv: fix hangs when kdumping (Andrew Jones) [845471]
-- [libata] export ata_port port_no attribute via /sys (David Milburn) [951181]
-- [s390x] kdump: Use 4 GiB for KEXEC_AUTO_THRESHOLD (Hendrik Brueckner) [953044]
-- [x86] hpet: allow user controlled mmap for user processes (Prarit Bhargava) [788727]
-- [mm] add memory tracking hooks (James Paradis) [725860]
-- [kernel] clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile (Prarit Bhargava) [914709]
-- [x86] disable clocksource watchdog (Prarit Bhargava) [914709]
-- [kdump] x86, fix kdump and unsupported HW check (Prarit Bhargava) [923256]
-- [x86] support single cpu on guests only (Prarit Bhargava) [873806]
-- [kernel] Mark power5, power6, !Intel, and !AMD systems as unsupported (Prarit Bhargava) [870129]
-- [kernel] Backport RH specific TAINT flags (Prarit Bhargava) [870129]
-- [s390x] zfcpdump: Add user space tool (Hendrik Brueckner) [825189]
-- [kdump] crashkernel=auto fixes and cleanup (Dave Young) [804077]
-- [fedora] /dev/crash driver (Kyle McMartin) [808839]
-- [kdump] forward port crashkernel auto reservation code (Dave Young) [804077]
-- [block] Change scheduler to CFQ for ATA/SATA (Vivek Goyal) [811016]
-- [kernel] kbuild: AFTER_LINK (Roland McGrath)
-- [ppc64] disable INFINIBAND_EHCA temporarily, it ftbfs (Kyle McMartin)
-- [kernel] Add RHEL_{MAJOR,MINOR,RELEASE} to top level Makefile (Kyle McMartin)
-
-* Mon Jun 03 2013 Kyle McMartin <kyle@redhat.com>
-- Trimmed changelog for rhel7.git, see rhpkg git for earlier history.
-
-###
-# The following Emacs magic makes C-c C-e use UTC dates.
-# Local Variables:
-# rpm-change-log-uses-utc: t
-# End:
-###
diff --git a/kernel-source/thirdparty/SOURCES/linux-3.10.0-1160.102.1.el7.tar.xz b/kernel-source/thirdparty/SOURCES/linux-3.10.0-1160.102.1.el7.tar.xz
deleted file mode 100644
index 38bb971..0000000
--- a/kernel-source/thirdparty/SOURCES/linux-3.10.0-1160.102.1.el7.tar.xz
+++ /dev/null
Binary files differ
diff --git a/kernel-source/thirdparty/SOURCES/modprobe-dccp-blacklist.conf b/kernel-source/thirdparty/SOURCES/modprobe-dccp-blacklist.conf
deleted file mode 100644
index 55ac028..0000000
--- a/kernel-source/thirdparty/SOURCES/modprobe-dccp-blacklist.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-# DCCP is considered a potential security liability: prevent socket layer
-# from automatically loading related modules using their aliases
-
-blacklist dccp
-blacklist dccp_diag
-blacklist dccp_ipv4
-blacklist dccp_ipv6
diff --git a/kernel-source/thirdparty/SOURCES/sign-modules b/kernel-source/thirdparty/SOURCES/sign-modules
deleted file mode 100755
index 6262fe0..0000000
--- a/kernel-source/thirdparty/SOURCES/sign-modules
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /bin/bash
-
-MODSECKEY="./signing_key.priv"
-MODPUBKEY="./signing_key.x509"
-moddir=$1
-
-modules=`find $moddir -type f -name '*.ko'`
-
-NPROC=`nproc`
-[ -z "$NPROC" ] && NPROC=1
-
-# NB: this loop runs 2000+ iterations. Try to be fast.
-echo "$modules" | xargs -r -n16 -P $NPROC sh -c "
-for mod; do
-    ./scripts/sign-file sha256 $MODSECKEY $MODPUBKEY \$mod
-    rm -f \$mod.sig \$mod.dig
-done
-" DUMMYARG0   # xargs appends ARG1 ARG2..., which go into $mod in for loop.
-
-RANDOMMOD=$(echo "$modules" | sort -R | tail -n 1)
-if [ "~Module signature appended~" != "$(tail -c 28 $RANDOMMOD)" ]; then
-	echo "*** Modules are unsigned! ***"
-	exit 1
-fi
-
-exit 0
diff --git a/kernel-source/thirdparty/SPECS/kernel.spec b/kernel-source/thirdparty/SPECS/kernel.spec
deleted file mode 100644
index 3320f0a..0000000
--- a/kernel-source/thirdparty/SPECS/kernel.spec
+++ /dev/null
@@ -1,97908 +0,0 @@
-# We have to override the new %%install behavior because, well... the kernel is special.
-%global __spec_install_pre %{___build_pre}
-
-Summary: The Linux kernel
-
-%define dist .el7
-
-# % define buildid .local
-
-# If there's no unversioned python, select version explicitly,
-# so it's possible to at least do rh-srpm.
-%if 0%{?fedora} >= 29 || 0%{?rhel} >= 8
-%global __python /usr/bin/python3
-%endif
-
-# For a kernel released for public testing, released_kernel should be 1.
-# For internal testing builds during development, it should be 0.
-%global released_kernel 1
-
-%global distro_build 1160
-
-%define rpmversion 3.10.0
-%define pkgrelease 1160.102.1.el7
-
-# allow pkg_release to have configurable %%{?dist} tag
-%define specrelease 1160.102.1%{?dist}
-
-%define pkg_release %{specrelease}%{?buildid}
-
-# The kernel tarball/base version
-%define rheltarball %{rpmversion}-%{pkgrelease}
-
-# What parts do we want to build?  We must build at least one kernel.
-# These are the kernels that are built IF the architecture allows it.
-# All should default to 1 (enabled) and be flipped to 0 (disabled)
-# by later arch-specific checks.
-
-%define _with_kabidupchk 1
-# The following build options are enabled by default.
-# Use either --without <opt> in your rpmbuild command or force values
-# to 0 in here to disable them.
-#
-# kernel
-%define with_default   %{?_without_default:   0} %{?!_without_default:   1}
-# kernel-debug
-%define with_debug     %{?_without_debug:     0} %{?!_without_debug:     1}
-# kernel-doc
-%define with_doc       %{?_without_doc:       0} %{?!_without_doc:       1}
-# kernel-headers
-%define with_headers   %{?_without_headers:   0} %{?!_without_headers:   1}
-# perf
-%define with_perf      %{?_without_perf:      0} %{?!_without_perf:      1}
-# tools
-%define with_tools     %{?_without_tools:     0} %{?!_without_tools:     1}
-# bpf tool
-%define with_bpftool   %{?_without_bpftool:   0} %{?!_without_bpftool:   1}
-# kernel-debuginfo
-%define with_debuginfo %{?_without_debuginfo: 0} %{?!_without_debuginfo: 1}
-# kernel-kdump (only for s390x)
-%define with_kdump     %{?_without_kdump:     0} %{?!_without_kdump:     0}
-# kernel-bootwrapper (for creating zImages from kernel + initrd)
-%define with_bootwrapper %{?_without_bootwrapper: 0} %{?!_without_bootwrapper: 0}
-# kernel-abi-whitelists
-%define with_kernel_abi_whitelists %{?_with_kernel_abi_whitelists: 0} %{?!_with_kernel_abi_whitelists: 1}
-
-# In RHEL, we always want the doc build failing to build to be a failure,
-# which means settings this to false.
-%define doc_build_fail false
-
-# Additional options for user-friendly one-off kernel building:
-#
-# Only build the base kernel (--with baseonly):
-%define with_baseonly  %{?_with_baseonly:     1} %{?!_with_baseonly:     0}
-# Only build the debug kernel (--with dbgonly):
-%define with_dbgonly   %{?_with_dbgonly:      1} %{?!_with_dbgonly:      0}
-
-# Control whether we perform a compat. check against published ABI.
-%define with_kabichk   %{?_without_kabichk:   0} %{?!_without_kabichk:   1}
-
-# Control whether we perform a compat. check against DUP ABI.
-%define with_kabidupchk %{?_with_kabidupchk: 1} %{?!_with_kabidupchk: 0}
-
-# Control whether to run an extensive DWARF based kABI check.
-# Note that this option needs to have baseline setup in SOURCE30.
-%define with_kabidwchk %{?_without_kabidwchk: 0} %{?!_without_kabidwchk: 1}
-
-%define with_kabidw_base %{?_with_kabidw_base: 1} %{?!_with_kabidw_base: 0}
-
-# should we do C=1 builds with sparse
-%define with_sparse    %{?_with_sparse:       1} %{?!_with_sparse:       0}
-
-# Cross compile requested?
-%define with_cross    %{?_with_cross:         1} %{?!_with_cross:        0}
-
-# Control wheter we package git stats for the last commit or not
-%define with_commitstats %{?_with_commitstats: 1} %{?!_with_commitstats: 0}
-
-# Set debugbuildsenabled to 1 for production (build separate debug kernels)
-#  and 0 for rawhide (all kernels are debug kernels).
-# See also 'make debug' and 'make release'. RHEL only ever does 1.
-%define debugbuildsenabled 1
-
-%define with_gcov %{?_with_gcov:1}%{?!_with_gcov:0}
-
-# turn off debug kernel and kabichk for gcov builds
-%if %{with_gcov}
-%define with_debug 0
-%define with_kabichk 0
-%define with_kabidwchk 0
-%endif
-
-# turn off kABI DUP check and DWARF-based check if kABI check is disabled
-%if !%{with_kabichk}
-%define with_kabidupchk 0
-%define with_kabidwchk 0
-%endif
-
-# turn off kABI DWARF-based check if we're generating the base dataset
-%if %{with_kabidw_base}
-%define with_kabidwchk 0
-%endif
-
-%define make_target bzImage
-
-# Kernel Version Release + Arch -> KVRA
-%define KVRA %{version}-%{release}.%{_target_cpu}
-%define hdrarch %{_target_cpu}
-%define asmarch %{_target_cpu}
-%define cross_target %{_target_cpu}
-
-%if !%{debugbuildsenabled}
-%define with_debug 0
-%endif
-
-%if !%{with_debuginfo}
-%define _enable_debug_packages 0
-%endif
-%define debuginfodir /usr/lib/debug
-
-# if requested, only build base kernel
-%if %{with_baseonly}
-%define with_debug 0
-%define with_kdump 0
-%endif
-
-# if requested, only build debug kernel
-%if %{with_dbgonly}
-%define with_default 0
-%define with_kdump 0
-%define with_tools 0
-%define with_perf 0
-%define with_bpftool 0
-%endif
-
-# These arches install vdso/ directories.
-%define vdso_arches %{all_x86} x86_64 ppc ppc64 ppc64le s390 s390x
-
-# Overrides for generic default options
-
-# only build kernel-debug on x86_64, s390x, ppc64 ppc64le
-%ifnarch x86_64 s390x ppc64 ppc64le
-%define with_debug 0
-%endif
-
-%ifnarch x86_64 s390x ppc64 ppc64le
-%define with_bpftool 0
-%endif
-
-# only package docs noarch
-%ifnarch noarch
-%define with_doc 0
-%define with_kernel_abi_whitelists 0
-%endif
-
-# don't build noarch kernels or headers (duh)
-%ifarch noarch
-%define with_default 0
-%define with_headers 0
-%define with_tools 0
-%define with_perf 0
-%define with_bpftool 0
-%define all_arch_configs kernel-%{version}-*.config
-%endif
-
-# sparse blows up on ppc64
-%ifarch ppc64 ppc64le ppc
-%define with_sparse 0
-%endif
-
-# Per-arch tweaks
-
-%ifarch i686
-%define asmarch x86
-%define hdrarch i386
-%endif
-
-%ifarch x86_64
-%define asmarch x86
-%define all_arch_configs kernel-%{version}-x86_64*.config
-%define image_install_path boot
-%define kernel_image arch/x86/boot/bzImage
-%endif
-
-%ifarch ppc
-%define asmarch powerpc
-%define hdrarch powerpc
-%endif
-
-%ifarch ppc64 ppc64le
-%define asmarch powerpc
-%define hdrarch powerpc
-%define all_arch_configs kernel-%{version}-ppc64*.config
-%define image_install_path boot
-%define make_target vmlinux
-%define kernel_image vmlinux
-%define kernel_image_elf 1
-%define with_bootwrapper 1
-%define cross_target powerpc64
-%define kcflags -O3
-%endif
-
-%ifarch s390x
-%define asmarch s390
-%define hdrarch s390
-%define all_arch_configs kernel-%{version}-s390x*.config
-%define image_install_path boot
-%define kernel_image arch/s390/boot/bzImage
-%define with_tools 0
-%define with_kdump 1
-%endif
-
-#cross compile make
-%if %{with_cross}
-%define cross_opts CROSS_COMPILE=%{cross_target}-linux-gnu-
-%define with_perf 0
-%define with_tools 0
-%define with_bpftool 0
-%endif
-
-# Should make listnewconfig fail if there's config options
-# printed out?
-%define listnewconfig_fail 1
-
-# To temporarily exclude an architecture from being built, add it to
-# %%nobuildarches. Do _NOT_ use the ExclusiveArch: line, because if we
-# don't build kernel-headers then the new build system will no longer let
-# us use the previous build of that package -- it'll just be completely AWOL.
-# Which is a BadThing(tm).
-
-# We only build kernel-headers on the following...
-%define nobuildarches i686 s390 ppc
-
-%ifarch %nobuildarches
-%define with_default 0
-%define with_debuginfo 0
-%define with_kdump 0
-%define with_tools 0
-%define with_perf 0
-%define with_bpftool 0
-%define _enable_debug_packages 0
-%endif
-
-# Architectures we build tools/cpupower on
-%define cpupowerarchs x86_64 ppc64 ppc64le
-
-# Architectures where we compress modules
-%ifarch x86_64
-%define zipmodules 1
-%else
-%define zipmodules 0
-%endif
-
-#
-# Three sets of minimum package version requirements in the form of Conflicts:
-# to versions below the minimum
-#
-
-#
-# First the general kernel 2.6 required versions as per
-# Documentation/Changes
-#
-%define kernel_dot_org_conflicts  ppp < 2.4.3-3, isdn4k-utils < 3.2-32, nfs-utils < 1.0.7-12, e2fsprogs < 1.37-4, util-linux < 2.12, jfsutils < 1.1.7-2, reiserfs-utils < 3.6.19-2, xfsprogs < 2.6.13-4, procps < 3.2.5-6.3, oprofile < 0.9.1-2, device-mapper-libs < 1.02.63-2, mdadm < 3.2.1-5
-
-#
-# Then a series of requirements that are distribution specific, either
-# because we add patches for something, or the older versions have
-# problems with the newer kernel or lack certain things that make
-# integration in the distro harder than needed.
-#
-%define package_conflicts initscripts < 7.23, udev < 063-6, iptables < 1.3.2-1, ipw2200-firmware < 2.4, iwl4965-firmware < 228.57.2, selinux-policy-targeted < 3.13.1-201, squashfs-tools < 4.0, wireless-tools < 29-3, xfsprogs < 4.3.0, kmod < 20-9, kexec-tools < 2.0.14-3
-
-# We moved the drm include files into kernel-headers, make sure there's
-# a recent enough libdrm-devel on the system that doesn't have those.
-%define kernel_headers_conflicts libdrm-devel < 2.4.0-0.15
-
-#
-# Packages that need to be installed before the kernel is, because the %%post
-# scripts use them.
-#
-%define kernel_prereq  fileutils, module-init-tools >= 3.16-2, initscripts >= 8.11.1-1, grubby >= 8.28-2
-%define initrd_prereq  dracut >= 033-502
-
-#
-# This macro does requires, provides, conflicts, obsoletes for a kernel package.
-#	%%kernel_reqprovconf <subpackage>
-# It uses any kernel_<subpackage>_conflicts and kernel_<subpackage>_obsoletes
-# macros defined above.
-#
-%define kernel_reqprovconf \
-Provides: kernel = %{rpmversion}-%{pkg_release}\
-Provides: kernel-%{_target_cpu} = %{rpmversion}-%{pkg_release}%{?1:.%{1}}\
-Provides: kernel-drm = 4.3.0\
-Provides: kernel-drm-nouveau = 16\
-Provides: kernel-modeset = 1\
-Provides: kernel-uname-r = %{KVRA}%{?1:.%{1}}\
-Requires(pre): %{kernel_prereq}\
-Requires(pre): %{initrd_prereq}\
-Requires(pre): linux-firmware >= 20190429-72\
-Requires(post): %{_sbindir}/new-kernel-pkg\
-Requires(post): system-release\
-Requires(preun): %{_sbindir}/new-kernel-pkg\
-Conflicts: %{kernel_dot_org_conflicts}\
-Conflicts: %{package_conflicts}\
-%{expand:%%{?kernel%{?1:_%{1}}_conflicts:Conflicts: %%{kernel%{?1:_%{1}}_conflicts}}}\
-%{expand:%%{?kernel%{?1:_%{1}}_obsoletes:Obsoletes: %%{kernel%{?1:_%{1}}_obsoletes}}}\
-%{expand:%%{?kernel%{?1:_%{1}}_provides:Provides: %%{kernel%{?1:_%{1}}_provides}}}\
-# We can't let RPM do the dependencies automatic because it'll then pick up\
-# a correct but undesirable perl dependency from the module headers which\
-# isn't required for the kernel proper to function\
-AutoReq: no\
-AutoProv: yes\
-%{nil}
-
-Name: kernel%{?variant}
-Group: System Environment/Kernel
-License: GPLv2
-URL: http://www.kernel.org/
-Version: %{rpmversion}
-Release: %{pkg_release}
-# DO NOT CHANGE THE 'ExclusiveArch' LINE TO TEMPORARILY EXCLUDE AN ARCHITECTURE BUILD.
-# SET %%nobuildarches (ABOVE) INSTEAD
-ExclusiveArch: noarch i686 x86_64 ppc ppc64 ppc64le s390 s390x
-ExclusiveOS: Linux
-
-%kernel_reqprovconf
-
-#
-# List the packages used during the kernel build
-#
-BuildRequires: module-init-tools, patch >= 2.5.4, bash >= 2.03, sh-utils, tar
-BuildRequires: xz, findutils, gzip, m4, perl, make >= 3.78, diffutils, gawk
-BuildRequires: gcc >= 4.8.5-29, binutils >= 2.25, redhat-rpm-config >= 9.1.0-55
-BuildRequires: hostname, net-tools, bc
-BuildRequires: xmlto, asciidoc
-BuildRequires: openssl
-BuildRequires: hmaccalc
-BuildRequires: python-devel, newt-devel, perl(ExtUtils::Embed)
-%ifarch x86_64
-BuildRequires: pesign >= 0.109-4
-BuildRequires: elfutils-libelf-devel
-%endif
-%if %{with_sparse}
-BuildRequires: sparse >= 0.4.1
-%endif
-%if %{with_perf}
-BuildRequires: elfutils-devel zlib-devel binutils-devel bison
-BuildRequires: audit-libs-devel
-BuildRequires: java-devel
-%ifnarch s390 s390x
-BuildRequires: numactl-devel
-%endif
-%endif
-%if %{with_tools}
-BuildRequires: pciutils-devel gettext ncurses-devel
-%endif
-%if %{with_bpftool}
-BuildRequires: python-docutils
-BuildRequires: zlib-devel binutils-devel
-%endif
-%if %{with_debuginfo}
-# Fancy new debuginfo generation introduced in Fedora 8/RHEL 6.
-# The -r flag to find-debuginfo.sh invokes eu-strip --reloc-debug-sections
-# which reduces the number of relocations in kernel module .ko.debug files and
-# was introduced with rpm 4.9 and elfutils 0.153.
-BuildRequires: rpm-build >= 4.9.0-1, elfutils >= 0.153-1
-%define debuginfo_args --strict-build-id -r
-%endif
-%if %{with_kabidwchk} || %{with_kabidw_base}
-BuildRequires: bison flex
-%endif
-%ifarch s390x
-# required for zfcpdump
-BuildRequires: glibc-static
-%endif
-
-Source0: linux-%{rpmversion}-%{pkgrelease}.tar.xz
-
-Source1: Makefile.common
-
-Source10: sign-modules
-%define modsign_cmd %{SOURCE10}
-Source11: x509.genkey
-Source12: extra_certificates
-%if %{?released_kernel}
-Source13: centos-ca-secureboot.der
-Source14: centossecureboot001.crt
-Source15: centossecurebootca2.der
-Source16: centossecureboot201.crt
-%define pesign_name_0 centossecureboot001
-%define pesign_name_1 centossecureboot201
-%else
-Source13: centos-ca-secureboot.der
-Source14: centossecureboot001.crt
-Source15: centossecurebootca2.der
-Source16: centossecureboot201.crt
-%define pesign_name_0 centossecureboot001
-%define pesign_name_1 centossecureboot201
-%endif
-Source17: centos-ldup.x509
-Source18: centos-kpatch.x509
-
-Source19: check-kabi
-
-Source20: Module.kabi_x86_64
-Source21: Module.kabi_ppc64
-Source22: Module.kabi_ppc64le
-Source23: Module.kabi_s390x
-Source24: Module.kabi_dup_x86_64
-Source25: Module.kabi_dup_ppc64
-Source26: Module.kabi_dup_ppc64le
-Source27: Module.kabi_dup_s390x
-
-Source30: kernel-abi-whitelists-%{distro_build}.tar.bz2
-Source31: kernel-kabi-dw-%{distro_build}.tar.bz2
-
-Source50: kernel-%{version}-x86_64.config
-Source51: kernel-%{version}-x86_64-debug.config
-
-Source60: kernel-%{version}-ppc64.config
-Source61: kernel-%{version}-ppc64-debug.config
-Source62: kernel-%{version}-ppc64le.config
-Source63: kernel-%{version}-ppc64le-debug.config
-
-Source70: kernel-%{version}-s390x.config
-Source71: kernel-%{version}-s390x-debug.config
-Source72: kernel-%{version}-s390x-kdump.config
-
-Source81: find-debuginfo.sh
-
-# Sources for kernel modprobe config files
-Source1000: modprobe-dccp-blacklist.conf
-
-# Sources for kernel-tools
-Source2000: cpupower.service
-Source2001: cpupower.config
-
-# git stats for last commits can be used as source for smart tests
-%if %{with_commitstats}
-Source9999: lastcommit.stat
-%endif
-
-# empty final patch to facilitate testing of kernel patches
-Patch999999: linux-kernel-test.patch
-Patch1000: debrand-single-cpu.patch
-Patch1001: debrand-rh_taint.patch
-Patch1002: debrand-rh-i686-cpu.patch
-
-BuildRoot: %{_tmppath}/kernel-%{KVRA}-root
-
-%description
-The kernel package contains the Linux kernel (vmlinuz), the core of any
-Linux operating system.  The kernel handles the basic functions
-of the operating system: memory allocation, process allocation, device
-input and output, etc.
-
-
-%package doc
-Summary: Various documentation bits found in the kernel source
-Group: Documentation
-AutoReqProv: no
-%description doc
-This package contains documentation files from the kernel
-source. Various bits of information about the Linux kernel and the
-device drivers shipped with it are documented in these files.
-
-You'll want to install this package if you need a reference to the
-options that can be passed to Linux kernel modules at load time.
-
-
-%package headers
-Summary: Header files for the Linux kernel for use by glibc
-Group: Development/System
-Obsoletes: glibc-kernheaders < 3.0-46
-Provides: glibc-kernheaders = 3.0-46
-%description headers
-Kernel-headers includes the C header files that specify the interface
-between the Linux kernel and userspace libraries and programs.  The
-header files define structures and constants that are needed for
-building most standard programs and are also needed for rebuilding the
-glibc package.
-
-%package bootwrapper
-Summary: Boot wrapper files for generating combined kernel + initrd images
-Group: Development/System
-Requires: gzip binutils
-%description bootwrapper
-Kernel-bootwrapper contains the wrapper code which makes bootable "zImage"
-files combining both kernel and initial ramdisk.
-
-%package debuginfo-common-%{_target_cpu}
-Summary: Kernel source files used by %{name}-debuginfo packages
-Group: Development/Debug
-%description debuginfo-common-%{_target_cpu}
-This package is required by %{name}-debuginfo subpackages.
-It provides the kernel source files common to all builds.
-
-%if %{with_perf}
-%package -n perf
-Summary: Performance monitoring for the Linux kernel
-Group: Development/System
-Requires: bzip2
-License: GPLv2
-%description -n perf
-This package contains the perf tool, which enables performance monitoring
-of the Linux kernel.
-
-%package -n perf-debuginfo
-Summary: Debug information for package perf
-Group: Development/Debug
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
-AutoReqProv: no
-%description -n perf-debuginfo
-This package provides debug information for the perf package.
-
-# Note that this pattern only works right to match the .build-id
-# symlinks because of the trailing nonmatching alternation and
-# the leading .*, because of find-debuginfo.sh's buggy handling
-# of matching the pattern against the symlinks file.
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{_bindir}/perf(\.debug)?|.*%%{_libexecdir}/perf-core/.*|.*%%{_libdir}/traceevent/plugins/.*|.*%%{_libdir}/libperf-jvmti.so(\.debug)?|XXX' -o perf-debuginfo.list}
-
-%package -n python-perf
-Summary: Python bindings for apps which will manipulate perf events
-Group: Development/Libraries
-%description -n python-perf
-The python-perf package contains a module that permits applications
-written in the Python programming language to use the interface
-to manipulate perf events.
-
-%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
-
-%package -n python-perf-debuginfo
-Summary: Debug information for package perf python bindings
-Group: Development/Debug
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
-AutoReqProv: no
-%description -n python-perf-debuginfo
-This package provides debug information for the perf python bindings.
-
-# the python_sitearch macro should already be defined from above
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{python_sitearch}/perf.so(\.debug)?|XXX' -o python-perf-debuginfo.list}
-
-
-%endif # with_perf
-
-%if %{with_tools}
-
-%package -n kernel-tools
-Summary: Assortment of tools for the Linux kernel
-Group: Development/System
-License: GPLv2
-Provides:  cpupowerutils = 1:009-0.6.p1
-Obsoletes: cpupowerutils < 1:009-0.6.p1
-Provides:  cpufreq-utils = 1:009-0.6.p1
-Provides:  cpufrequtils = 1:009-0.6.p1
-Obsoletes: cpufreq-utils < 1:009-0.6.p1
-Obsoletes: cpufrequtils < 1:009-0.6.p1
-Obsoletes: cpuspeed < 1:2.0
-Requires: kernel-tools-libs = %{version}-%{release}
-%description -n kernel-tools
-This package contains the tools/ directory from the kernel source
-and the supporting documentation.
-
-%package -n kernel-tools-libs
-Summary: Libraries for the kernels-tools
-Group: Development/System
-License: GPLv2
-%description -n kernel-tools-libs
-This package contains the libraries built from the tools/ directory
-from the kernel source.
-
-%package -n kernel-tools-libs-devel
-Summary: Assortment of tools for the Linux kernel
-Group: Development/System
-License: GPLv2
-Requires: kernel-tools = %{version}-%{release}
-Provides:  cpupowerutils-devel = 1:009-0.6.p1
-Obsoletes: cpupowerutils-devel < 1:009-0.6.p1
-Requires: kernel-tools-libs = %{version}-%{release}
-Provides: kernel-tools-devel
-%description -n kernel-tools-libs-devel
-This package contains the development files for the tools/ directory from
-the kernel source.
-
-%package -n kernel-tools-debuginfo
-Summary: Debug information for package kernel-tools
-Group: Development/Debug
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
-AutoReqProv: no
-%description -n kernel-tools-debuginfo
-This package provides debug information for package kernel-tools.
-
-# Note that this pattern only works right to match the .build-id
-# symlinks because of the trailing nonmatching alternation and
-# the leading .*, because of find-debuginfo.sh's buggy handling
-# of matching the pattern against the symlinks file.
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{_bindir}/centrino-decode(\.debug)?|.*%%{_bindir}/powernow-k8-decode(\.debug)?|.*%%{_bindir}/cpupower(\.debug)?|.*%%{_libdir}/libcpupower.*|.*%%{_libdir}/libcpupower.*|.*%%{_bindir}/turbostat(\.debug)?|.*%%{_bindir}/x86_energy_perf_policy(\.debug)?|.*%%{_bindir}/tmon(\.debug)?|XXX' -o kernel-tools-debuginfo.list}
-
-%endif # with_tools
-
-%if %{with_bpftool}
-
-%package -n bpftool
-Summary: Inspection and simple manipulation of eBPF programs and maps
-License: GPLv2
-%description -n bpftool
-This package contains the bpftool, which allows inspection and simple
-manipulation of eBPF programs and maps.
-
-%package -n bpftool-debuginfo
-Summary: Debug information for package bpftool
-Group: Development/Debug
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
-AutoReqProv: no
-%description -n bpftool-debuginfo
-This package provides debug information for the bpftool package.
-
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{_sbindir}/bpftool(\.debug)?|XXX' -o bpftool-debuginfo.list}
-
-%endif # with_bpftool
-
-%if %{with_gcov}
-%package gcov
-Summary: gcov graph and source files for coverage data collection.
-Group: Development/System
-%description gcov
-kernel-gcov includes the gcov graph and source files for gcov coverage collection.
-%endif
-
-%package -n kernel-abi-whitelists
-Summary: The CentOS Linux kernel ABI symbol whitelists
-Group: System Environment/Kernel
-AutoReqProv: no
-%description -n kernel-abi-whitelists
-The kABI package contains information pertaining to the CentOS
-Linux kernel ABI, including lists of kernel symbols that are needed by
-external Linux kernel modules, and a yum plugin to aid enforcement.
-
-%if %{with_kabidw_base}
-%package kabidw-base
-Summary: The baseline dataset for kABI verification using DWARF data
-Group: System Environment/Kernel
-AutoReqProv: no
-%description kabidw-base
-The kabidw-base package contains data describing the current ABI of the CentOS 
-Linux kernel, suitable for the kabi-dw tool.
-%endif
-
-#
-# This macro creates a kernel-<subpackage>-debuginfo package.
-#	%%kernel_debuginfo_package <subpackage>
-#
-%define kernel_debuginfo_package() \
-%package %{?1:%{1}-}debuginfo\
-Summary: Debug information for package %{name}%{?1:-%{1}}\
-Group: Development/Debug\
-Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}\
-Provides: %{name}%{?1:-%{1}}-debuginfo-%{_target_cpu} = %{version}-%{release}\
-AutoReqProv: no\
-%description -n %{name}%{?1:-%{1}}-debuginfo\
-This package provides debug information for package %{name}%{?1:-%{1}}.\
-This is required to use SystemTap with %{name}%{?1:-%{1}}-%{KVRA}.\
-%{expand:%%global debuginfo_args %{?debuginfo_args} -p '/.*/%%{KVRA}%{?1:\.%{1}}/.*|/.*%%{KVRA}%{?1:\.%{1}}(\.debug)?' -o debuginfo%{?1}.list}\
-%{nil}
-
-#
-# This macro creates a kernel-<subpackage>-devel package.
-#	%%kernel_devel_package <subpackage> <pretty-name>
-#
-%define kernel_devel_package() \
-%package %{?1:%{1}-}devel\
-Summary: Development package for building kernel modules to match the %{?2:%{2} }kernel\
-Group: System Environment/Kernel\
-Provides: kernel%{?1:-%{1}}-devel-%{_target_cpu} = %{version}-%{release}\
-Provides: kernel-devel-%{_target_cpu} = %{version}-%{release}%{?1:.%{1}}\
-Provides: kernel-devel-uname-r = %{KVRA}%{?1:.%{1}}\
-AutoReqProv: no\
-Requires(pre): /usr/bin/find\
-Requires: perl\
-%description -n kernel%{?variant}%{?1:-%{1}}-devel\
-This package provides kernel headers and makefiles sufficient to build modules\
-against the %{?2:%{2} }kernel package.\
-%{nil}
-
-#
-# This macro creates a kernel-<subpackage> and its -devel and -debuginfo too.
-#	%%define variant_summary The Linux kernel compiled for <configuration>
-#	%%kernel_variant_package [-n <pretty-name>] <subpackage>
-#
-%define kernel_variant_package(n:) \
-%package %1\
-Summary: %{variant_summary}\
-Group: System Environment/Kernel\
-%kernel_reqprovconf\
-%{expand:%%kernel_devel_package %1 %{!?-n:%1}%{?-n:%{-n*}}}\
-%{expand:%%kernel_debuginfo_package %1}\
-%{nil}
-
-
-# First the auxiliary packages of the main kernel package.
-%kernel_devel_package
-%kernel_debuginfo_package
-
-
-# Now, each variant package.
-
-%define variant_summary The Linux kernel compiled with extra debugging enabled
-%kernel_variant_package debug
-%description debug
-The kernel package contains the Linux kernel (vmlinuz), the core of any
-Linux operating system.  The kernel handles the basic functions
-of the operating system:  memory allocation, process allocation, device
-input and output, etc.
-
-This variant of the kernel has numerous debugging options enabled.
-It should only be installed when trying to gather additional information
-on kernel bugs, as some of these options impact performance noticably.
-
-%define variant_summary A minimal Linux kernel compiled for crash dumps
-%kernel_variant_package kdump
-%description kdump
-This package includes a kdump version of the Linux kernel. It is
-required only on machines which will use the kexec-based kernel crash dump
-mechanism.
-
-%prep
-# do a few sanity-checks for --with *only builds
-%if %{with_baseonly}
-%if !%{with_default}
-echo "Cannot build --with baseonly, default kernel build is disabled"
-exit 1
-%endif
-%endif
-
-# more sanity checking; do it quietly
-if [ "%{patches}" != "%%{patches}" ] ; then
-  for patch in %{patches} ; do
-    if [ ! -f $patch ] ; then
-      echo "ERROR: Patch  ${patch##/*/}  listed in specfile but is missing"
-      exit 1
-    fi
-  done
-fi 2>/dev/null
-
-patch_command='patch -p1 -F1 -s'
-ApplyPatch()
-{
-  local patch=$1
-  shift
-  if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
-    exit 1
-  fi
-  if ! grep -E "^Patch[0-9]+: $patch\$" %{_specdir}/${RPM_PACKAGE_NAME%%%%%{?variant}}.spec ; then
-    if [ "${patch:0:8}" != "patch-3." ] ; then
-      echo "ERROR: Patch  $patch  not listed as a source patch in specfile"
-      exit 1
-    fi
-  fi 2>/dev/null
-  case "$patch" in
-  *.bz2) bunzip2 < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
-  *.gz) gunzip < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
-  *) $patch_command ${1+"$@"} < "$RPM_SOURCE_DIR/$patch" ;;
-  esac
-}
-
-# don't apply patch if it's empty
-ApplyOptionalPatch()
-{
-  local patch=$1
-  shift
-  if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
-    exit 1
-  fi
-  local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}')
-  if [ "$C" -gt 9 ]; then
-    ApplyPatch $patch ${1+"$@"}
-  fi
-}
-
-%setup -q -n kernel-%{rheltarball} -c
-mv linux-%{rheltarball} linux-%{KVRA}
-cd linux-%{KVRA}
-
-# Drop some necessary files from the source dir into the buildroot
-cp $RPM_SOURCE_DIR/kernel-%{version}-*.config .
-
-ApplyOptionalPatch linux-kernel-test.patch
-ApplyOptionalPatch debrand-single-cpu.patch
-ApplyOptionalPatch debrand-rh_taint.patch
-ApplyOptionalPatch debrand-rh-i686-cpu.patch
-
-# Any further pre-build tree manipulations happen here.
-
-chmod +x scripts/checkpatch.pl
-
-# This Prevents scripts/setlocalversion from mucking with our version numbers.
-touch .scmversion
-
-# only deal with configs if we are going to build for the arch
-%ifnarch %nobuildarches
-
-if [ -L configs ]; then
-	rm -f configs
-	mkdir configs
-fi
-
-# Remove configs not for the buildarch
-for cfg in kernel-%{version}-*.config; do
-  if [ `echo %{all_arch_configs} | grep -c $cfg` -eq 0 ]; then
-    rm -f $cfg
-  fi
-done
-
-%if !%{debugbuildsenabled}
-rm -f kernel-%{version}-*debug.config
-%endif
-
-# enable GCOV kernel config options if gcov is on
-%if %{with_gcov}
-for i in *.config
-do
-  sed -i 's/# CONFIG_GCOV_KERNEL is not set/CONFIG_GCOV_KERNEL=y\nCONFIG_GCOV_PROFILE_ALL=y\n/' $i
-done
-%endif
-
-# now run oldconfig over all the config files
-for i in *.config
-do
-  mv $i .config
-  Arch=`head -1 .config | cut -b 3-`
-  make %{?cross_opts} ARCH=$Arch listnewconfig | grep -E '^CONFIG_' >.newoptions || true
-%if %{listnewconfig_fail}
-  if [ -s .newoptions ]; then
-    cat .newoptions
-    exit 1
-  fi
-%endif
-  rm -f .newoptions
-  make %{?cross_opts} ARCH=$Arch oldnoconfig
-  echo "# $Arch" > configs/$i
-  cat .config >> configs/$i
-done
-# end of kernel config
-%endif
-
-# get rid of unwanted files resulting from patch fuzz
-find . \( -name "*.orig" -o -name "*~" \) -exec rm -f {} \; >/dev/null
-
-# remove unnecessary SCM files
-find . -name .gitignore -exec rm -f {} \; >/dev/null
-
-cd ..
-
-###
-### build
-###
-%build
-
-%if %{with_sparse}
-%define sparse_mflags	C=1
-%endif
-
-%if %{with_debuginfo}
-# This override tweaks the kernel makefiles so that we run debugedit on an
-# object before embedding it.  When we later run find-debuginfo.sh, it will
-# run debugedit again.  The edits it does change the build ID bits embedded
-# in the stripped object, but repeating debugedit is a no-op.  We do it
-# beforehand to get the proper final build ID bits into the embedded image.
-# This affects the vDSO images in vmlinux, and the vmlinux image in bzImage.
-export AFTER_LINK='sh -xc "/usr/lib/rpm/debugedit -b $$RPM_BUILD_DIR -d /usr/src/debug -i $@ > $@.id"'
-%endif
-
-cp_vmlinux()
-{
-  eu-strip --remove-comment -o "$2" "$1"
-}
-
-BuildKernel() {
-    MakeTarget=$1
-    KernelImage=$2
-    Flavour=$3
-    InstallName=${4:-vmlinuz}
-
-    # Pick the right config file for the kernel we're building
-    Config=kernel-%{version}-%{_target_cpu}${Flavour:+-${Flavour}}.config
-    DevelDir=/usr/src/kernels/%{KVRA}${Flavour:+.${Flavour}}
-
-    # When the bootable image is just the ELF kernel, strip it.
-    # We already copy the unstripped file into the debuginfo package.
-    if [ "$KernelImage" = vmlinux ]; then
-      CopyKernel=cp_vmlinux
-    else
-      CopyKernel=cp
-    fi
-
-    KernelVer=%{KVRA}${Flavour:+.${Flavour}}
-    echo BUILDING A KERNEL FOR ${Flavour} %{_target_cpu}...
-
-    # make sure EXTRAVERSION says what we want it to say
-    perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}.%{_target_cpu}${Flavour:+.${Flavour}}/" Makefile
-
-    # and now to start the build process
-
-    make %{?cross_opts} -s mrproper
-
-    cp %{SOURCE11} .	# x509.genkey
-    cp %{SOURCE12} .	# extra_certificates
-    cp %{SOURCE17} .	# rheldup3.x509
-    cp %{SOURCE18} .	# rhelkpatch1.x509
-
-    cp configs/$Config .config
-
-    Arch=`head -1 .config | cut -b 3-`
-    echo USING ARCH=$Arch
-
-%ifarch s390x
-    if [ "$Flavour" == "kdump" ]; then
-        pushd arch/s390/boot
-        gcc -static -o zfcpdump zfcpdump.c
-        popd
-    fi
-%endif
-
-    make -s %{?cross_opts} ARCH=$Arch oldnoconfig >/dev/null
-    make -s %{?cross_opts} ARCH=$Arch V=1 %{?_smp_mflags} KCFLAGS="%{?kcflags}" WITH_GCOV="%{?with_gcov}" $MakeTarget %{?sparse_mflags}
-
-    if [ "$Flavour" != "kdump" ]; then
-        make -s %{?cross_opts} ARCH=$Arch V=1 %{?_smp_mflags} KCFLAGS="%{?kcflags}" WITH_GCOV="%{?with_gcov}" modules %{?sparse_mflags} || exit 1
-    fi
-
-    # Start installing the results
-%if %{with_debuginfo}
-    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/boot
-    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/%{image_install_path}
-%endif
-    mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
-    install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
-    install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
-
-    # We estimate the size of the initramfs because rpm needs to take this size
-    # into consideration when performing disk space calculations. (See bz #530778)
-    dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initramfs-$KernelVer.img bs=1M count=20
-
-    if [ -f arch/$Arch/boot/zImage.stub ]; then
-      cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
-    fi
-# EFI SecureBoot signing, x86_64-only
-%ifarch x86_64
-    %pesign -s -i $KernelImage -o $KernelImage.tmp -a %{SOURCE13} -c %{SOURCE14} -n %{pesign_name_0}
-    %pesign -s -i $KernelImage.tmp -o $KernelImage.signed -a %{SOURCE15} -c %{SOURCE16} -n %{pesign_name_1}
-    rm $KernelImage.tmp
-    mv $KernelImage.signed $KernelImage
-%endif
-    $CopyKernel $KernelImage $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
-    chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
-
-    # hmac sign the kernel for FIPS
-    echo "Creating hmac file: $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac"
-    ls -l $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
-    sha512hmac $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer | sed -e "s,$RPM_BUILD_ROOT,," > $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac;
-
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/kernel
-    if [ "$Flavour" != "kdump" ]; then
-        # Override $(mod-fw) because we don't want it to install any firmware
-        # we'll get it from the linux-firmware package and we don't want conflicts
-        make -s %{?cross_opts} %{?_smp_mflags} ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
-%if %{with_gcov}
-	# install gcov-needed files to $BUILDROOT/$BUILD/...:
-	#   gcov_info->filename is absolute path
-	#   gcno references to sources can use absolute paths (e.g. in out-of-tree builds)
-	#   sysfs symlink targets (set up at compile time) use absolute paths to BUILD dir
-	find . \( -name '*.gcno' -o -name '*.[chS]' \) -exec install -D '{}' "$RPM_BUILD_ROOT/$(pwd)/{}" \;
-%endif
-    fi
-%ifarch %{vdso_arches}
-    make -s %{?cross_opts} ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT vdso_install KERNELRELEASE=$KernelVer
-    if [ ! -s ldconfig-kernel.conf ]; then
-      echo > ldconfig-kernel.conf "\
-# Placeholder file, no vDSO hwcap entries used in this kernel."
-    fi
-    %{__install} -D -m 444 ldconfig-kernel.conf $RPM_BUILD_ROOT/etc/ld.so.conf.d/kernel-$KernelVer.conf
-%endif
-
-    # And save the headers/makefiles etc for building modules against
-    #
-    # This all looks scary, but the end result is supposed to be:
-    # * all arch relevant include/ files
-    # * all Makefile/Kconfig files
-    # * all script/ files
-
-    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
-    # dirs for additional modules per module-init-tools, kbuild/modules.txt
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/extra
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/weak-updates
-    # first copy everything
-    cp --parents `find  -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    if [ -s Module.markers ]; then
-      cp Module.markers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    fi
-
-    # create the kABI metadata for use in packaging
-    # NOTENOTE: the name symvers is used by the rpm backend
-    # NOTENOTE: to discover and run the /usr/lib/rpm/fileattrs/kabi.attr
-    # NOTENOTE: script which dynamically adds exported kernel symbol
-    # NOTENOTE: checksums to the rpm metadata provides list.
-    # NOTENOTE: if you change the symvers name, update the backend too
-    echo "**** GENERATING kernel ABI metadata ****"
-    gzip -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz
-
-%if %{with_kabichk}
-    echo "**** kABI checking is enabled in kernel SPEC file. ****"
-    chmod 0755 $RPM_SOURCE_DIR/check-kabi
-    if [ -e $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour ]; then
-        cp $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
-        $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
-        rm $RPM_BUILD_ROOT/Module.kabi # for now, don't keep it around.
-    else
-        echo "**** NOTE: Cannot find reference Module.kabi file. ****"
-    fi
-%endif
-
-%if %{with_kabidupchk}
-    echo "**** kABI DUP checking is enabled in kernel SPEC file. ****"
-    if [ -e $RPM_SOURCE_DIR/Module.kabi_dup_%{_target_cpu}$Flavour ]; then
-        cp $RPM_SOURCE_DIR/Module.kabi_dup_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
-        $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
-        rm $RPM_BUILD_ROOT/Module.kabi # for now, don't keep it around.
-    else
-        echo "**** NOTE: Cannot find DUP reference Module.kabi file. ****"
-    fi
-%endif
-
-%if %{with_kabidw_base}
-    # Don't build kabi base for debug kernels
-    if [ "$Flavour" != "kdump" -a "$Flavour" != "debug" ]; then
-        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf
-        tar xjvf %{SOURCE31} -C $RPM_BUILD_ROOT/kabi-dwarf
-
-        make -C $RPM_BUILD_ROOT/kabi-dwarf/kabi-dw
-
-        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf/whitelists
-        tar xjvf %{SOURCE30} -C $RPM_BUILD_ROOT/kabi-dwarf/whitelists
-
-        echo "**** GENERATING DWARF-based kABI baseline dataset ****"
-        chmod 0755 $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh
-        $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh generate \
-            "$RPM_BUILD_ROOT/kabi-dwarf/whitelists/kabi-current/kabi_whitelist_%{_target_cpu}" \
-            "$(pwd)" \
-            "$RPM_BUILD_ROOT/kabidw-base/%{_target_cpu}${Flavour:+.${Flavour}}" || :
-
-        rm -rf $RPM_BUILD_ROOT/kabi-dwarf
-    fi
-%endif
-
-%if %{with_kabidwchk}
-    if [ "$Flavour" != "kdump" ]; then
-        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf
-        tar xjvf %{SOURCE31} -C $RPM_BUILD_ROOT/kabi-dwarf
-        if [ -d "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}" ]; then
-            make -C $RPM_BUILD_ROOT/kabi-dwarf/kabi-dw
-
-            mkdir -p $RPM_BUILD_ROOT/kabi-dwarf/whitelists
-            tar xjvf %{SOURCE30} -C $RPM_BUILD_ROOT/kabi-dwarf/whitelists
-
-            echo "**** GENERATING DWARF-based kABI dataset ****"
-            chmod 0755 $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh
-            $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh generate \
-                "$RPM_BUILD_ROOT/kabi-dwarf/whitelists/kabi-current/kabi_whitelist_%{_target_cpu}" \
-                "$(pwd)" \
-                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}.tmp" || :
-
-            echo "**** kABI DWARF-based comparison report ****"
-            $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh compare \
-                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}" \
-                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}.tmp" || :
-            echo "**** End of kABI DWARF-based comparison report ****"
-        else
-            echo "**** Baseline dataset for kABI DWARF-BASED comparison report not found ****"
-        fi
-
-        rm -rf $RPM_BUILD_ROOT/kabi-dwarf
-    fi
-%endif
-
-    # then drop all but the needed Makefiles/Kconfig files
-    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
-    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
-    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
-    cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    if [ -d arch/$Arch/scripts ]; then
-      cp -a arch/$Arch/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/$Arch || :
-    fi
-    if [ -f arch/$Arch/*lds ]; then
-      cp -a arch/$Arch/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%Arch || :
-    fi
-    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
-    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
-%ifarch ppc64 ppc64le
-    cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
-%endif
-    if [ -d arch/%{asmarch}/include ]; then
-      cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
-    fi
-    cp -a include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
-
-    # Files for 'make scripts' to succeed with kernel-devel.
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/security/selinux/include
-    cp -a --parents security/selinux/include/classmap.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp -a --parents security/selinux/include/initial_sid_to_string.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/include/tools
-    cp -a --parents tools/include/tools/be_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-    cp -a --parents tools/include/tools/le_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-
-    # copy objtool for kernel-devel (needed for building external modules)
-    if grep -q CONFIG_STACK_VALIDATION=y .config; then
-      mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/objtool
-      cp -a tools/objtool/objtool $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/objtool
-    fi
-
-    # Make sure the Makefile and version.h have a matching timestamp so that
-    # external modules can be built
-    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/generated/uapi/linux/version.h
-    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/generated/autoconf.h
-    # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
-    cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
-
-%if %{with_debuginfo}
-    if test -s vmlinux.id; then
-      cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id
-    else
-      echo >&2 "*** ERROR *** no vmlinux build ID! ***"
-      exit 1
-    fi
-
-    #
-    # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
-    #
-    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
-    cp vmlinux $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
-%endif
-
-    find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
-
-    # mark modules executable so that strip-to-file can strip them
-    xargs --no-run-if-empty chmod u+x < modnames
-
-    # Generate a list of modules for block and networking.
-
-    grep -F /drivers/ modnames | xargs --no-run-if-empty nm -upA |
-    sed -n 's,^.*/\([^/]*\.ko\):  *U \(.*\)$,\1 \2,p' > drivers.undef
-
-    collect_modules_list()
-    {
-      sed -r -n -e "s/^([^ ]+) \\.?($2)\$/\\1/p" drivers.undef |
-      LC_ALL=C sort -u > $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
-      if [ ! -z "$3" ]; then
-        sed -r -e "/^($3)\$/d" -i $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
-      fi
-    }
-
-    collect_modules_list networking 'register_netdev|ieee80211_register_hw|usbnet_probe|phy_driver_register|rt2x00(pci|usb)_probe|register_netdevice'
-    collect_modules_list block 'ata_scsi_ioctl|scsi_add_host|scsi_add_host_with_dma|blk_alloc_queue|blk_init_queue|register_mtd_blktrans|scsi_esp_register|scsi_register_device_handler|blk_queue_physical_block_size' 'pktcdvd.ko|dm-mod.ko'
-    collect_modules_list drm 'drm_open|drm_init'
-    collect_modules_list modesetting 'drm_crtc_init'
-
-    # detect missing or incorrect license tags
-    rm -f modinfo
-    while read i
-    do
-      echo -n "${i#$RPM_BUILD_ROOT/lib/modules/$KernelVer/} " >> modinfo
-      /sbin/modinfo -l $i >> modinfo
-    done < modnames
-
-    grep -E -v 'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' modinfo && exit 1
-
-    rm -f modinfo modnames
-
-    # Save off the .tmp_versions/ directory.  We'll use it in the
-    # __debug_install_post macro below to sign the right things
-    # Also save the signing keys so we actually sign the modules with the
-    # right key.
-    cp -r .tmp_versions .tmp_versions.sign${Flavour:+.${Flavour}}
-    cp signing_key.priv signing_key.priv.sign${Flavour:+.${Flavour}}
-    cp signing_key.x509 signing_key.x509.sign${Flavour:+.${Flavour}}
-
-    # remove files that will be auto generated by depmod at rpm -i time
-    for i in alias alias.bin builtin.bin ccwmap dep dep.bin ieee1394map inputmap isapnpmap ofmap pcimap seriomap symbols symbols.bin usbmap softdep devname
-    do
-      rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$i
-    done
-
-    # Move the devel headers out of the root file system
-    mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
-    mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
-    ln -sf $DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
-
-    install -Dm644 %{SOURCE1000} $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/dccp-blacklist.conf
-
-    # prune junk from kernel-devel
-    find $RPM_BUILD_ROOT/usr/src/kernels -name ".*.cmd" -exec rm -f {} \;
-}
-
-###
-# DO it...
-###
-
-# prepare directories
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT/boot
-mkdir -p $RPM_BUILD_ROOT%{_libexecdir}
-
-cd linux-%{KVRA}
-
-%if %{with_default}
-BuildKernel %make_target %kernel_image
-%endif
-
-%if %{with_debug}
-BuildKernel %make_target %kernel_image debug
-%endif
-
-%if %{with_kdump}
-BuildKernel %make_target %kernel_image kdump
-%endif
-
-%global perf_make make %{?_smp_mflags} -C tools/perf -s V=1 WERROR=0 NO_LIBUNWIND=1 HAVE_CPLUS_DEMANGLE=1 NO_GTK2=1 NO_STRLCPY=1 NO_PERF_READ_VDSO32=1 NO_PERF_READ_VDSOX32=1 prefix=%{_prefix} lib=%{_lib}
-%if %{with_perf}
-# perf
-%{perf_make} all
-%{perf_make} man || %{doc_build_fail}
-%endif
-
-%if %{with_tools}
-%ifarch %{cpupowerarchs}
-# cpupower
-# make sure version-gen.sh is executable.
-chmod +x tools/power/cpupower/utils/version-gen.sh
-make %{?cross_opts} %{?_smp_mflags} -C tools/power/cpupower CPUFREQ_BENCH=false
-%ifarch x86_64
-    pushd tools/power/cpupower/debug/x86_64
-    make %{?_smp_mflags} centrino-decode powernow-k8-decode
-    popd
-%endif
-%ifarch x86_64
-   pushd tools/power/x86/x86_energy_perf_policy/
-   make
-   popd
-   pushd tools/power/x86/turbostat
-   make
-   popd
-%endif #turbostat/x86_energy_perf_policy
-%endif
-pushd tools
-make tmon
-popd
-# build VM tools
-pushd tools/vm/
-make slabinfo page_owner_sort
-popd
-%endif
-
-%if %{with_bpftool}
-pushd tools/bpf/bpftool
-make
-popd
-%endif
-
-%if %{with_doc}
-# Make the HTML and man pages.
-make htmldocs mandocs || %{doc_build_fail}
-
-# sometimes non-world-readable files sneak into the kernel source tree
-chmod -R a=rX Documentation
-find Documentation -type d | xargs chmod u+w
-%endif
-
-# In the modsign case, we do 3 things.  1) We check the "flavour" and hard
-# code the value in the following invocations.  This is somewhat sub-optimal
-# but we're doing this inside of an RPM macro and it isn't as easy as it
-# could be because of that.  2) We restore the .tmp_versions/ directory from
-# the one we saved off in BuildKernel above.  This is to make sure we're
-# signing the modules we actually built/installed in that flavour.  3) We
-# grab the arch and invoke 'make modules_sign' and the mod-extra-sign.sh
-# commands to actually sign the modules.
-#
-# We have to do all of those things _after_ find-debuginfo runs, otherwise
-# that will strip the signature off of the modules.
-#
-# Finally, pick a module at random and check that it's signed and fail the build
-# if it isn't.
-
-%define __modsign_install_post \
-  if [ "%{with_debug}" -ne "0" ]; then \
-    Arch=`head -1 configs/kernel-%{version}-%{_target_cpu}-debug.config | cut -b 3-` \
-    rm -rf .tmp_versions \
-    mv .tmp_versions.sign.debug .tmp_versions \
-    mv signing_key.priv.sign.debug signing_key.priv \
-    mv signing_key.x509.sign.debug signing_key.x509 \
-    %{modsign_cmd} $RPM_BUILD_ROOT/lib/modules/%{KVRA}.debug || exit 1 \
-  fi \
-    if [ "%{with_default}" -ne "0" ]; then \
-    Arch=`head -1 configs/kernel-%{version}-%{_target_cpu}.config | cut -b 3-` \
-    rm -rf .tmp_versions \
-    mv .tmp_versions.sign .tmp_versions \
-    mv signing_key.priv.sign signing_key.priv \
-    mv signing_key.x509.sign signing_key.x509 \
-    %{modsign_cmd} $RPM_BUILD_ROOT/lib/modules/%{KVRA} || exit 1 \
-  fi \
-  if [ "%{zipmodules}" -eq "1" ]; then \
-    find $RPM_BUILD_ROOT/lib/modules/ -type f -name '*.ko' | { NPROC=`nproc`; xargs -r -n16 -P ${NPROC:-1} xz; } \
-  fi \
-%{nil}
-
-###
-### Special hacks for debuginfo subpackages.
-###
-
-# This macro is used by %%install, so we must redefine it before that.
-%define debug_package %{nil}
-
-%if %{with_debuginfo}
-
-%define __debug_install_post \
-  %{SOURCE81} %{?_smp_mflags} %{debuginfo_args} %{_builddir}/%{?buildsubdir}\
-%{nil}
-
-%ifnarch noarch
-%global __debug_package 1
-%files -f debugfiles.list debuginfo-common-%{_target_cpu}
-%defattr(-,root,root)
-%endif
-
-%endif
-
-#
-# Disgusting hack alert! We need to ensure we sign modules *after* all
-# invocations of strip occur, which is in __debug_install_post if
-# find-debuginfo.sh runs, and __os_install_post if not.
-#
-%define __spec_install_post \
-  %{?__debug_package:%{__debug_install_post}}\
-  %{__arch_install_post}\
-  %{__os_install_post}\
-  %{__modsign_install_post}
-
-###
-### install
-###
-
-%install
-
-cd linux-%{KVRA}
-
-%if %{with_doc}
-docdir=$RPM_BUILD_ROOT%{_datadir}/doc/kernel-doc-%{rpmversion}
-man9dir=$RPM_BUILD_ROOT%{_datadir}/man/man9
-
-# copy the source over
-mkdir -p $docdir
-tar -f - --exclude=man --exclude='.*' -c Documentation | tar xf - -C $docdir
-
-# Install man pages for the kernel API.
-mkdir -p $man9dir
-find Documentation/DocBook/man -name '*.9.gz' -print0 |
-xargs -0 --no-run-if-empty %{__install} -m 444 -t $man9dir $m
-ls $man9dir | grep -q '' || > $man9dir/BROKEN
-%endif # with_doc
-
-# We have to do the headers install before the tools install because the
-# kernel headers_install will remove any header files in /usr/include that
-# it doesn't install itself.
-
-%if %{with_headers}
-# Install kernel headers
-make %{?cross_opts} ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
-
-# Do headers_check but don't die if it fails.
-make %{?cross_opts} ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_check > hdrwarnings.txt || :
-if grep -q exist hdrwarnings.txt; then
-   sed s:^$RPM_BUILD_ROOT/usr/include/:: hdrwarnings.txt
-   # Temporarily cause a build failure if header inconsistencies.
-   # exit 1
-fi
-
-find $RPM_BUILD_ROOT/usr/include \( -name .install -o -name .check -o -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
-
-%endif
-
-%if %{with_kernel_abi_whitelists}
-# kabi directory
-INSTALL_KABI_PATH=$RPM_BUILD_ROOT/lib/modules/
-mkdir -p $INSTALL_KABI_PATH
-
-# install kabi releases directories
-tar xjvf %{SOURCE30} -C $INSTALL_KABI_PATH
-%endif  # with_kernel_abi_whitelists
-
-%if %{with_perf}
-# perf tool binary and supporting scripts/binaries
-%{perf_make} DESTDIR=$RPM_BUILD_ROOT install
-# remove the 'trace' symlink.
-rm -f $RPM_BUILD_ROOT/%{_bindir}/trace
-
-# perf-python extension
-%{perf_make} DESTDIR=$RPM_BUILD_ROOT install-python_ext
-
-# perf man pages (note: implicit rpm magic compresses them later)
-%{perf_make} DESTDIR=$RPM_BUILD_ROOT try-install-man || %{doc_build_fail}
-%endif
-
-%if %{with_tools}
-%ifarch %{cpupowerarchs}
-make -C tools/power/cpupower DESTDIR=$RPM_BUILD_ROOT libdir=%{_libdir} mandir=%{_mandir} CPUFREQ_BENCH=false install
-rm -f %{buildroot}%{_libdir}/*.{a,la}
-%find_lang cpupower
-mv cpupower.lang ../
-%ifarch x86_64
-    pushd tools/power/cpupower/debug/x86_64
-    install -m755 centrino-decode %{buildroot}%{_bindir}/centrino-decode
-    install -m755 powernow-k8-decode %{buildroot}%{_bindir}/powernow-k8-decode
-    popd
-%endif
-chmod 0755 %{buildroot}%{_libdir}/libcpupower.so*
-mkdir -p %{buildroot}%{_unitdir} %{buildroot}%{_sysconfdir}/sysconfig
-install -m644 %{SOURCE2000} %{buildroot}%{_unitdir}/cpupower.service
-install -m644 %{SOURCE2001} %{buildroot}%{_sysconfdir}/sysconfig/cpupower
-%ifarch %{ix86} x86_64
-   mkdir -p %{buildroot}%{_mandir}/man8
-   pushd tools/power/x86/x86_energy_perf_policy
-   make DESTDIR=%{buildroot} install
-   popd
-   pushd tools/power/x86/turbostat
-   make DESTDIR=%{buildroot} install
-   popd
-%endif #turbostat/x86_energy_perf_policy
-pushd tools/thermal/tmon
-make INSTALL_ROOT=%{buildroot} install
-popd
-%endif
-# install VM tools
-pushd tools/vm/
-install -m755 slabinfo %{buildroot}%{_bindir}/slabinfo
-install -m755 page_owner_sort %{buildroot}%{_bindir}/page_owner_sort
-popd
-%endif
-
-%if %{with_bpftool}
-pushd tools/bpf/bpftool
-make DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} bash_compdir=%{_sysconfdir}/bash_completion.d/ mandir=%{_mandir} install doc-install
-popd
-%endif
-
-%if %{with_bootwrapper}
-make %{?cross_opts} ARCH=%{hdrarch} DESTDIR=$RPM_BUILD_ROOT bootwrapper_install WRAPPER_OBJDIR=%{_libdir}/kernel-wrapper WRAPPER_DTSDIR=%{_libdir}/kernel-wrapper/dts
-%endif
-
-%if %{with_doc}
-# Red Hat UEFI Secure Boot CA cert, which can be used to authenticate the kernel
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}
-install -m 0644 %{SOURCE13} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca-20140212.cer
-install -m 0644 %{SOURCE15} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca-20200609.cer
-ln -s kernel-signing-ca-20200609.cer $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca.cer
-%endif
-
-# We have to do the headers checksum calculation after the tools install because
-# these might end up installing their own set of headers on top of kernel's
-%if %{with_headers}
-# compute a content hash to export as Provides: kernel-headers-checksum
-HEADERS_CHKSUM=$(export LC_ALL=C; find $RPM_BUILD_ROOT/usr/include -type f -name "*.h" \
-			! -path $RPM_BUILD_ROOT/usr/include/linux/version.h | \
-		 sort | xargs cat | sha1sum - | cut -f 1 -d ' ');
-# export the checksum via usr/include/linux/version.h, so the dynamic
-# find-provides can grab the hash to update it accordingly
-echo "#define KERNEL_HEADERS_CHECKSUM \"$HEADERS_CHKSUM\"" >> $RPM_BUILD_ROOT/usr/include/linux/version.h
-%endif
-
-###
-### clean
-###
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-###
-### scripts
-###
-
-%if %{with_tools}
-%post -n kernel-tools
-/sbin/ldconfig
-
-%postun -n kernel-tools
-/sbin/ldconfig
-%endif
-
-#
-# This macro defines a %%post script for a kernel*-devel package.
-#	%%kernel_devel_post [<subpackage>]
-#
-%define kernel_devel_post() \
-%{expand:%%post %{?1:%{1}-}devel}\
-if [ -f /etc/sysconfig/kernel ]\
-then\
-    . /etc/sysconfig/kernel || exit $?\
-fi\
-if [ "$HARDLINK" != "no" -a -x /usr/sbin/hardlink ]\
-then\
-    (cd /usr/src/kernels/%{KVRA}%{?1:.%{1}} &&\
-     /usr/bin/find . -type f | while read f; do\
-       hardlink -c /usr/src/kernels/*%{?dist}.*/$f $f\
-     done)\
-fi\
-%{nil}
-
-
-# This macro defines a %%posttrans script for a kernel package.
-#	%%kernel_variant_posttrans [<subpackage>]
-# More text can follow to go at the end of this variant's %%post.
-#
-%define kernel_variant_posttrans() \
-%{expand:%%posttrans %{?1}}\
-if [ -x %{_sbindir}/weak-modules ]\
-then\
-    %{_sbindir}/weak-modules --add-kernel %{KVRA}%{?1:.%{1}} || exit $?\
-fi\
-%{_sbindir}/new-kernel-pkg --package kernel%{?-v:-%{-v*}} --mkinitrd --dracut --depmod --install %{KVRA}%{?-v:.%{-v*}} \
-rc=$?\
-if [ $rc != 0 ]; then\
-    %{_sbindir}/new-kernel-pkg --remove %{KVRA}%{?1:.%{1}}\
-    ERROR_MSG="ERROR: installing kernel-%{KVRA}%{?1:.%{1}}: no space left for creating initramfs. Clean up /boot partition and re-run '%{_sbindir}/new-kernel-pkg --package kernel%{?-v:-%{-v*}} --mkinitrd --dracut --depmod --install %{KVRA}%{?-v:.%{-v*}}'"\
-    if [ -e /usr/bin/logger ]; then\
-        /usr/bin/logger -p syslog.warn "\$ERROR_MSG"\
-    else\
-        echo "\$ERROR_MSG" > /dev/kmsg\
-    fi\
-    echo "\$ERROR_MSG"\
-    exit $rc\
-fi\
-%{_sbindir}/new-kernel-pkg --package kernel%{?1:-%{1}} --rpmposttrans %{KVRA}%{?1:.%{1}} || exit $?\
-%{nil}
-
-#
-# This macro defines a %%post script for a kernel package and its devel package.
-#	%%kernel_variant_post [-v <subpackage>] [-r <replace>]
-# More text can follow to go at the end of this variant's %%post.
-#
-%define kernel_variant_post(v:r:) \
-%{expand:%%kernel_devel_post %{?-v*}}\
-%{expand:%%kernel_variant_posttrans %{?-v*}}\
-%{expand:%%post %{?-v*}}\
-%{-r:\
-if [ `uname -i` == "x86_64" ] &&\
-   [ -f /etc/sysconfig/kernel ]; then\
-  /bin/sed -r -i -e 's/^DEFAULTKERNEL=%{-r*}$/DEFAULTKERNEL=kernel%{?-v:-%{-v*}}/' /etc/sysconfig/kernel || exit $?\
-fi}\
-%{nil}
-
-#
-# This macro defines a %%preun script for a kernel package.
-#	%%kernel_variant_preun <subpackage>
-#
-%define kernel_variant_preun() \
-%{expand:%%preun %{?1}}\
-%{_sbindir}/new-kernel-pkg --rminitrd --rmmoddep --remove %{KVRA}%{?1:.%{1}} || exit $?\
-if [ -x %{_sbindir}/weak-modules ]\
-then\
-    %{_sbindir}/weak-modules --remove-kernel %{KVRA}%{?1:.%{1}} || exit $?\
-fi\
-%{nil}
-
-%kernel_variant_preun
-%kernel_variant_post 
-
-%kernel_variant_preun debug
-%kernel_variant_post -v debug
-
-%ifarch s390x
-%postun kdump
-    # Create softlink to latest remaining kdump kernel.
-    # If no more kdump kernel is available, remove softlink.
-    if [ "$(readlink /boot/zfcpdump)" == "/boot/vmlinuz-%{KVRA}.kdump" ]
-    then
-        vmlinuz_next=$(ls /boot/vmlinuz-*.kdump 2> /dev/null | sort | tail -n1)
-        if [ $vmlinuz_next ]
-        then
-            ln -sf $vmlinuz_next /boot/zfcpdump
-        else
-            rm -f /boot/zfcpdump
-        fi
-    fi
-
-%post kdump
-    ln -sf /boot/vmlinuz-%{KVRA}.kdump /boot/zfcpdump
-%endif # s390x
-
-if [ -x /sbin/ldconfig ]
-then
-    /sbin/ldconfig -X || exit $?
-fi
-
-###
-### file lists
-###
-
-%if %{with_headers}
-%files headers
-%defattr(-,root,root)
-/usr/include/*
-%endif
-
-%if %{with_bootwrapper}
-%files bootwrapper
-%defattr(-,root,root)
-/usr/sbin/*
-%{_libdir}/kernel-wrapper
-%endif
-
-# only some architecture builds need kernel-doc
-%if %{with_doc}
-%files doc
-%defattr(-,root,root)
-%{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation/*
-%dir %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation
-%dir %{_datadir}/doc/kernel-doc-%{rpmversion}
-%{_datadir}/man/man9/*
-%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca-20140212.cer
-%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca-20200609.cer
-%{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}/kernel-signing-ca.cer
-%dir %{_datadir}/doc/kernel-keys/%{rpmversion}-%{pkgrelease}
-%dir %{_datadir}/doc/kernel-keys
-%endif
-
-%if %{with_kernel_abi_whitelists}
-%files -n kernel-abi-whitelists
-%defattr(-,root,root,-)
-/lib/modules/kabi-*
-%endif
-
-%if %{with_kabidw_base}
-%ifarch x86_64 s390x ppc64 ppc64le
-%files kabidw-base
-%defattr(-,root,root)
-/kabidw-base/%{_target_cpu}/*
-%endif
-%endif
-
-%if %{with_perf}
-%files -n perf
-%defattr(-,root,root)
-%{_bindir}/perf
-%{_libdir}/libperf-jvmti.so
-%dir %{_libexecdir}/perf-core
-%{_libexecdir}/perf-core/*
-%{_libdir}/traceevent
-%{_mandir}/man[1-8]/perf*
-%{_sysconfdir}/bash_completion.d/perf
-%{_datadir}/perf-core/strace/groups
-%{_datadir}/doc/perf-tip/tips.txt
-
-%files -n python-perf
-%defattr(-,root,root)
-%{python_sitearch}
-
-%if %{with_debuginfo}
-%files -f perf-debuginfo.list -n perf-debuginfo
-%defattr(-,root,root)
-
-%files -f python-perf-debuginfo.list -n python-perf-debuginfo
-%defattr(-,root,root)
-%endif
-%endif
-
-%if %{with_tools}
-%files -n kernel-tools -f cpupower.lang
-%defattr(-,root,root)
-%{_bindir}/slabinfo
-%{_bindir}/page_owner_sort
-%ifarch %{cpupowerarchs}
-%{_bindir}/cpupower
-%ifarch x86_64
-%{_bindir}/centrino-decode
-%{_bindir}/powernow-k8-decode
-%endif
-%{_unitdir}/cpupower.service
-%{_mandir}/man[1-8]/cpupower*
-%config(noreplace) %{_sysconfdir}/sysconfig/cpupower
-%ifarch %{ix86} x86_64
-%{_bindir}/x86_energy_perf_policy
-%{_mandir}/man8/x86_energy_perf_policy*
-%{_bindir}/turbostat
-%{_mandir}/man8/turbostat*
-%endif
-%endif
-%{_bindir}/tmon
-%if %{with_debuginfo}
-%files -f kernel-tools-debuginfo.list -n kernel-tools-debuginfo
-%defattr(-,root,root)
-%endif
-
-%ifarch %{cpupowerarchs}
-%files -n kernel-tools-libs
-%defattr(-,root,root)
-%{_libdir}/libcpupower.so.0
-%{_libdir}/libcpupower.so.0.0.0
-
-%files -n kernel-tools-libs-devel
-%defattr(-,root,root)
-%{_libdir}/libcpupower.so
-%{_includedir}/cpufreq.h
-%endif
-
-%endif # with_tools
-
-%if %{with_bpftool}
-%files -n bpftool
-%{_sbindir}/bpftool
-%{_sysconfdir}/bash_completion.d/bpftool
-%{_mandir}/man8/bpftool-cgroup.8.gz
-%{_mandir}/man8/bpftool-map.8.gz
-%{_mandir}/man8/bpftool-prog.8.gz
-%{_mandir}/man8/bpftool.8.gz
-
-%if %{with_debuginfo}
-%files -f bpftool-debuginfo.list -n bpftool-debuginfo
-%defattr(-,root,root)
-%endif
-%endif
-
-%if %{with_gcov}
-%ifarch x86_64 s390x ppc64 ppc64le
-%files gcov
-%defattr(-,root,root)
-%{_builddir}
-%endif
-%endif
-
-# This is %%{image_install_path} on an arch where that includes ELF files,
-# or empty otherwise.
-%define elf_image_install_path %{?kernel_image_elf:%{image_install_path}}
-
-#
-# This macro defines the %%files sections for a kernel package
-# and its devel and debuginfo packages.
-#	%%kernel_variant_files [-k vmlinux] <condition> <subpackage>
-#
-%define kernel_variant_files(k:) \
-%if %{1}\
-%{expand:%%files %{?2}}\
-%defattr(-,root,root)\
-/%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVRA}%{?2:.%{2}}\
-/%{image_install_path}/.vmlinuz-%{KVRA}%{?2:.%{2}}.hmac \
-%attr(600,root,root) /boot/System.map-%{KVRA}%{?2:.%{2}}\
-/boot/symvers-%{KVRA}%{?2:.%{2}}.gz\
-/boot/config-%{KVRA}%{?2:.%{2}}\
-%dir /lib/modules/%{KVRA}%{?2:.%{2}}\
-/lib/modules/%{KVRA}%{?2:.%{2}}/kernel\
-/lib/modules/%{KVRA}%{?2:.%{2}}/build\
-/lib/modules/%{KVRA}%{?2:.%{2}}/source\
-/lib/modules/%{KVRA}%{?2:.%{2}}/extra\
-/lib/modules/%{KVRA}%{?2:.%{2}}/updates\
-/lib/modules/%{KVRA}%{?2:.%{2}}/weak-updates\
-%ifarch %{vdso_arches}\
-/lib/modules/%{KVRA}%{?2:.%{2}}/vdso\
-/etc/ld.so.conf.d/kernel-%{KVRA}%{?2:.%{2}}.conf\
-%endif\
-/lib/modules/%{KVRA}%{?2:.%{2}}/modules.*\
-%ghost %attr(0600, -, -) /boot/initramfs-%{KVRA}%{?2:.%{2}}.img\
-%config(noreplace) %{_sysconfdir}/modprobe.d/dccp-blacklist.conf\
-%{expand:%%files %{?2:%{2}-}devel}\
-%defattr(-,root,root)\
-/usr/src/kernels/%{KVRA}%{?2:.%{2}}\
-%if %{with_debuginfo}\
-%ifnarch noarch\
-%{expand:%%files -f debuginfo%{?2}.list %{?2:%{2}-}debuginfo}\
-%defattr(-,root,root)\
-%endif\
-%endif\
-%endif\
-%{nil}
-
-%kernel_variant_files %{with_default}
-%kernel_variant_files %{with_debug} debug
-%kernel_variant_files %{with_kdump} kdump
-
-%changelog
-* Mon Sep 25 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.102.1.el7]
-- net/sched: cls_u32: Fix reference counter leak leading to overflow (Davide Caratti) [2225486] {CVE-2023-3609}
-- NFSv4.1: fix handling of backchannel binding in BIND_CONN_TO_SESSION (Benjamin Coddington) [2219604]
-
-* Fri Sep 01 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.101.1.el7]
-- cifs: fix a buffer leak in smb2_query_symlink (Jay Shin) [2166706]
-- kernfs: Improve kernfs_notify() poll notification latency (Ian Kent) [1703180]
-- netfilter: nf_tables: prevent OOB access in nft_byteorder_eval (Florian Westphal) [2221720] {CVE-2023-35001}
-
-* Wed Aug 23 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.100.1.el7]
-- bnxt: count Tx drops (Jamie Bainbridge) [2175062]
-- bnxt: make sure xmit_more + errors does not miss doorbells (Jamie Bainbridge) [2175062]
-- netfilter: nf_tables: skip deactivated anonymous sets during lookups (Florian Westphal) [2196159] {CVE-2023-32233}
-- netfilter: nf_tables: do not allow SET_ID to refer to another table (Florian Westphal) [2196159]
-
-* Thu Aug 10 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.99.1.el7]
-- x86/cpu/amd: Add a Zenbleed fix (Waiman Long) [2226841] {CVE-2023-20593}
-- x86/cpu/amd: Move the errata checking functionality up (Waiman Long) [2226841] {CVE-2023-20593}
-- x86/cpu: Restore AMD's DE_CFG MSR after resume (Waiman Long) [2226841] {CVE-2023-20593}
-
-* Thu Aug 03 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.98.1.el7]
-- GFS2: gfs2_dir_get_hash_table(): avoiding deferred vfree() is easy here... (Andrew Price) [2190450]
-- GFS2: use kvfree() instead of open-coding it (Andrew Price) [2190450]
-
-* Mon Jul 24 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.97.1.el7]
-- net/sched: flower: fix possible OOB write in fl_set_geneve_opt() (Davide Caratti) [2216982] {CVE-2023-35788}
-- netfilter: conntrack: re-fetch conntrack after insertion (Florian Westphal) [2188190]
-- netfilter: conntrack: handle tcp challenge acks during connection reuse (Florian Westphal) [2128262]
-- netfilter: conntrack: reduce timeout when receiving out-of-window fin or rst (Florian Westphal) [2128262]
-- netfilter: conntrack: remove unneeded indent level (Florian Westphal) [2128262]
-- netfilter: conntrack: ignore overly delayed tcp packets (Florian Westphal) [2128262]
-- netfilter: conntrack: prepare tcp_in_window for ternary return value (Florian Westphal) [2128262]
-- netfilter: conntrack: connection timeout after re-register (Florian Westphal) [2128262]
-- netfilter: conntrack: always store window size un-scaled (Florian Westphal) [2128262]
-- netfilter: conntrack: work around exceeded receive window (Florian Westphal) [2128262]
-- netfilter: conntrack: avoid misleading 'invalid' in log message (Florian Westphal) [2128262]
-- netfilter: remove BUG_ON() after skb_header_pointer() (Florian Westphal) [2128262]
-- netfilter: nf_conntrack_tcp: re-init for syn packets only (Florian Westphal) [2128262]
-- netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options (Florian Westphal) [2128262]
-- netfilter: conntrack: re-init state for retransmitted syn-ack (Florian Westphal) [2128262]
-- netfilter: conntrack: move synack init code to helper (Florian Westphal) [2128262]
-- netfilter: conntrack: do not renew entry stuck in tcp SYN_SENT state (Florian Westphal) [2128262]
-- netfilter: nf_conntrack_tcp: Fix stack out of bounds when parsing TCP options (Florian Westphal) [2128262]
-
-* Fri Jul 07 2023 Jan Stancek <jstancek@redhat.com> [3.10.0-1160.96.1.el7]
-- sched/fair: Eliminate bandwidth race between throttling and distribution (Phil Auld) [2180681]
-- sched/fair: Fix race between runtime distribution and assignment (Phil Auld) [2180681]
-- sched/fair: Don't assign runtime for throttled cfs_rq (Phil Auld) [2180681]
-
-* Fri Jun 23 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.95.1.el7]
-- perf/s390x: Align the register list to what we support (Michael Petlan) [2207745]
-- Revert "[tools] s390/perf: add perf register support for floating-point registers" (Michael Petlan) [2207745]
-- s390/perf: add perf_regs support and user stack dump (Michael Petlan) [2207745]
-- s390/zcrypt: handle new reply code FILTERED_BY_HYPERVISOR (Tobias Huschle) [2212672]
-
-* Fri Jun 09 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.94.1.el7]
-- netfilter: nf_tables: deactivate anonymous set from preparation phase (Florian Westphal) [2196159] {CVE-2023-32233}
-
-* Mon Jun 05 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.93.1.el7]
-- Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu (Wander Lairson Costa) [2152941] {CVE-2022-3564}
-- proc/pagemap: walk page tables under pte lock (Rafael Aquini) [2190338]
-
-* Thu May 18 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.92.1.el7]
-- packet: fix use-after-free in prb_retire_rx_blk_timer_expired() (Florian Westphal) [2182642]
-- x86/bugs: Workaround for incorrectly set X86_BUG_RETBLEED under VMware (Waiman Long) [2189556]
-
-* Fri Apr 21 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.91.1.el7]
-- target: iscsi: use GFP_NOIO with loopback connections (Maurizio Lombardi) [2181931]
-
-* Fri Mar 17 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.90.1.el7]
-- NFSv4.1: Fix open stateid recovery (Benjamin Coddington) [2156890]
-- NFS: Don't open code clearing of delegation state (Benjamin Coddington) [2156890]
-
-* Thu Feb 23 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.89.1.el7]
-- usb: mon: make mmapped memory read only (Desnes Nunes) [2161212] {CVE-2022-43750}
-
-* Sat Feb 18 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.88.1.el7]
-- KVM: x86: add bit to indicate correct tsc_shift (Marcelo Tosatti) [2152838]
-- KVM: x86: rewrite handling of scaled TSC for kvmclock (Marcelo Tosatti) [2152838]
-- KVM: x86: rename argument to kvm_set_tsc_khz (Marcelo Tosatti) [2152838]
-
-* Fri Feb 10 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.87.1.el7]
-- Revert "openvswitch: fix flow actions reallocation" (Rado Vrbovsky) [2141780] {CVE-2022-2639}
-- Revert "openvswitch: fix OOB access in reserve_sfa_size()" (Rado Vrbovsky) [2141780] {CVE-2022-2639}
-- kvm/emulate: Fix SETcc emulation function offsets with SLS (Vitaly Kuznetsov) [2143438]
-- mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse (Rafael Aquini) [2138620] {CVE-2022-42703}
-- mm, rmap: handle anon_vma_prepare() common case inline (Rafael Aquini) [2138620] {CVE-2022-42703}
-- proc: proc_skip_spaces() shouldn't think it is working on C strings (Wander Lairson Costa) [2152565] {CVE-2022-4378}
-- proc: avoid integer type confusion in get_proc_long (Wander Lairson Costa) [2152565] {CVE-2022-4378}
-- scsi: qla2xxx: Fix crash due to stale SRB access around I/O timeouts (Nilesh Javali) [2092105]
-- fs: move S_ISGID stripping into the vfs_*() helpers (Andrey Albershteyn) [2159946] {CVE-2018-13405 CVE-2021-4037}
-- fs: Add missing umask strip in vfs_tmpfile (Andrey Albershteyn) [2159946] {CVE-2018-13405 CVE-2021-4037}
-- fs: add mode_strip_sgid() helper (Andrey Albershteyn) [2159946] {CVE-2018-13405 CVE-2021-4037}
-
-* Thu Feb 02 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.86.1.el7]
-- openvswitch: fix OOB access in reserve_sfa_size() (Rado Vrbovsky) [2141780] {CVE-2022-2639}
-- openvswitch: fix flow actions reallocation (Rado Vrbovsky) [2141780] {CVE-2022-2639}
-- gitlab-ci: use CI templates from production branch (Michael Hofmann)
-- mm: prevent page_frag_alloc() from corrupting the memory (Rafael Aquini) [2141062]
-- mm: Use fixed constant in page_frag_alloc instead of size + 1 (Rafael Aquini) [2141062]
-- mm: page_alloc: fix ref bias in page_frag_alloc() for 1-byte allocs (Rafael Aquini) [2141062]
-- x86/pat: Pass valid address to sanitize_phys() (Jeff Moyer) [1974485]
-
-* Thu Jan 19 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.85.1.el7]
-- sctp: do asoc update earlier in sctp_sf_do_dupcook_b (Xin Long) [2054037]
-- sctp: do asoc update earlier in sctp_sf_do_dupcook_a (Xin Long) [2054037]
-- sctp: handle errors when updating asoc (Xin Long) [2054037]
-- sctp: no need to check assoc id before calling sctp_assoc_set_id (Xin Long) [2054037]
-- s390/topology: fix warning when disabling cpus (Tobias Huschle) [2071980]
-
-* Thu Jan 12 2023 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.84.1.el7]
-- blk-mq: fix flush-rq race (Ming Lei) [2088029]
-- scsi: target: iscsi: Fix a race condition between login_work and the login thread (Maurizio Lombardi) [2154243]
-
-* Mon Dec 19 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.83.1.el7]
-- x86/sme: avoid using __x86_return_thunk (Rafael Aquini) [2122158]
-- scsi: core: Simplify control flow in scmd_eh_abort_handler() (Ewan D. Milne) [2128337]
-- scsi: core: Avoid leaving shost->last_reset with stale value if EH does not run (Ewan D. Milne) [2128337]
-- [netdrv] i40e: Fix freeing of uninitialized misc IRQ vector (Jamie Bainbridge) [2129248]
-- x86/speculation: Use generic retpoline by default on AMD (Rafael Aquini) [2062165] {CVE-2021-26401}
-
-* Thu Dec 08 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.82.1.el7]
-- net: usb: ax88179_178a: Fix packet receiving (Jose Ignacio Tornos Martinez) [2120504] {CVE-2022-2964}
-- net: usb: ax88179_178a: Fix out-of-bounds accesses in RX fixup (Jose Ignacio Tornos Martinez) [2120504] {CVE-2022-2964}
-- net: usb: Merge cpu_to_le32s + memcpy to put_unaligned_le32 (Jose Ignacio Tornos Martinez) [2120504] {CVE-2022-2964}
-- ax88179_178a: Merge memcpy + le32_to_cpus to get_unaligned_le32 (Jose Ignacio Tornos Martinez) [2120504] {CVE-2022-2964}
-- net: usb: ax88179_178a: fix packet alignment padding (Jose Ignacio Tornos Martinez) [2120504] {CVE-2022-2964}
-- mm: swap: disable swap_vma_readahead for PPC64 (Rafael Aquini) [2142455]
-
-* Thu Nov 24 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.81.1.el7]
-- [netdrv] bnxt: don't lock the tx queue from napi poll (Jamie Bainbridge) [2110869]
-- [netdrv] bnxt_en: reverse order of TX disable and carrier off (Jamie Bainbridge) [2110869]
-- [netdrv] qede: confirm skb is allocated before using (Jamie Bainbridge) [2131145]
-
-* Sat Oct 08 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.80.1.el7]
-- scsi: lpfc: Fix FCP I/O flush functionality for TMF routines (Dick Kennedy) [1969988]
-- scsi: lpfc: Fix illegal memory access on Abort IOCBs (Dick Kennedy) [1969988]
-- NFS: Fix extra call to dput() in nfs_prime_dcache (Benjamin Coddington) [2117856]
-
-* Thu Sep 22 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.79.1.el7]
-- x86/speculation: Add LFENCE to RSB fill sequence (Rafael Aquini) [2115073] {CVE-2022-26373}
-- x86/speculation: Protect against userspace-userspace spectreRSB (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/speculation: cope with spectre_v2=retpoline cmdline on retbleed-affected Intel CPUs (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- KVM: emulate: do not adjust size of fastop and setcc subroutines (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/kvm: fix FASTOP_SIZE when return thunks are enabled (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/speculation: Disable RRSBA behavior (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/kexec: Disable RET on kexec (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/bugs: Do not enable IBPB-on-entry when IBPB is not supported (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/bugs: Add Cannon lake to RETBleed affected CPU list (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/cpu/amd: Enumerate BTC_NO (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/common: Stamp out the stepping madness (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/cpu/amd: Add Spectral Chicken (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/bugs: Do IBPB fallback check only once (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/bugs: Add retbleed=ibpb (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/bugs: Report Intel retbleed vulnerability (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/bugs: Enable STIBP for JMP2RET (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/bugs: Add AMD retbleed= boot parameter (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/bugs: Report AMD retbleed vulnerability (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86: Add magic AMD return-thunk (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86: Use return-thunk in asm code (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/sev: Avoid using __x86_return_thunk (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/vsyscall_emu/64: Don't use RET in vsyscall emulation (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/kvm: Fix SETcc emulation for return thunks (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86,objtool: Create .return_sites (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86: Undo return-thunk damage (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/retpoline: Use -mfunction-return (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/cpufeatures: Move RETPOLINE flags to word 11 (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- objtool: Add ELF writing capability (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86: Prepare asm files for straight-line-speculation (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86: Prepare inline-asm for straight-line-speculation (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/kvm: Fix fastop function ELF metadata (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/kvm: Move kvm_fastop_exception to .fixup section (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/vdso: Fix vDSO build if a retpoline is emitted (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/cpufeatures: Combine word 11 and 12 into a new scattered features word (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/cpufeatures: Carve out CQM features retrieval (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/cpufeatures: Re-tabulate the X86_FEATURE definitions (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/cpufeature: Move processor tracing out of scattered features (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/cpu: Probe CPUID leaf 6 even when cpuid_level == 6 (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-- x86/alternatives: Cleanup DPRINTK macro (Rafael Aquini) [2090227] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
-
-* Thu Sep 15 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.78.1.el7]
-- net_sched: cls_route: remove from list when handle is 0 (Davide Caratti) [2121809] {CVE-2022-2588}
-
-* Thu Sep 08 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.77.1.el7]
-- net/mlx5: Add Fast teardown support (Jay Shin) [2077711]
-- net/mlx5: Free IRQs in shutdown path (Jay Shin) [2077711]
-- net/mlx5: Change teardown with force mode failure message to warning (Jay Shin) [2077711]
-- net/mlx5: Cancel health poll before sending panic teardown command (Jay Shin) [2077711]
-- net/mlx5: Add fast unload support in shutdown flow (Jay Shin) [2077711]
-- net/mlx5: Expose command polling interface (Jay Shin) [2077711]
-- posix-timers: Remove remaining uses of tasklist_lock (Oleg Nesterov) [2115147]
-- posix-timers: Use sighand lock instead of tasklist_lock on timer deletion (Oleg Nesterov) [2115147]
-- posix-cpu-timers: remove tasklist_lock in posix_cpu_clock_get() (Oleg Nesterov) [2115147]
-
-* Tue Jul 26 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.76.1.el7]
-- sfc: complete the next packet when we receive a timestamp (Íñigo Huguet) [1793280]
-
-* Tue Jul 19 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.75.1.el7]
-- xfs: fix up non-directory creation in SGID directories (Andrey Albershteyn) [2089360]
-- x86/speculation/mmio: Print SMT warning (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- KVM: x86/speculation: Disable Fill buffer clear within guests (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- x86/speculation/mmio: Reuse SRBDS mitigation for SBDS (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- x86/speculation/srbds: Update SRBDS mitigation selection (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- cpu/speculation: Add prototype for cpu_show_srbds() (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- x86/speculation/mmio: Enable CPU Fill buffer clearing on idle (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- x86/speculation: Add a common function for MD_CLEAR mitigation update (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- Documentation: Add documentation for Processor MMIO Stale Data (Rafael Aquini) [2090249] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
-- [s390] s390/zcrypt: use kvmalloc instead of kmalloc for 256k alloc (Mete Durlu) [2072970]
-
-* Wed Jul 13 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.74.1.el7]
-- tracing: Fix bad use of igrab in trace_uprobe.c (Oleg Nesterov) [2096884]
-
-* Thu Jul 07 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.73.1.el7]
-- qede: Reduce verbosity of ptp tx timestamp (Manish Chopra) [2080646]
-- RDMA/cma: Fix unbalanced cm_id reference count during address resolve (Kamal Heib) [2085425]
-
-* Tue Jun 28 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.72.1.el7]
-- sched,perf: Fix periodic timers (Valentin Schneider) [2077346]
-- sched: debug: Remove the cfs bandwidth timer_active printout (Valentin Schneider) [2077346]
-- sched: Cleanup bandwidth timers (Valentin Schneider) [2077346]
-
-* Wed Jun 15 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.71.1.el7]
-- netfilter: nf_tables: disallow non-stateful expression in sets earlier (Phil Sutter) [2093000] {CVE-2022-1966}
-- netfilter: nf_tables: fix memory leak if expr init fails (Phil Sutter) [2093000]
-
-* Tue Jun 14 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.70.1.el7]
-- perf: Fix sys_perf_event_open() race against self (Michael Petlan) [2087954]
-
-* Mon Jun 06 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.69.1.el7]
-- mm: memcg: charge memsw as well in __GFP_NOFAIL case (Rafael Aquini) [2082564]
-
-* Thu May 26 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.68.1.el7]
-- libceph: fix potential use-after-free on linger ping and resends (Ilya Dryomov) [2088025]
-- xfs: use length to balance duplicate bno buffers in perag rb_tree (Brian Foster) [2050464]
-- sock: sock_dequeue_err_skb() needs hard irq safety (Kenneth Yin) [2070408]
-
-* Tue May 17 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.67.1.el7]
-- mm/rmap.c: explicitly reset vma->anon_vma in unlink_anon_vmas() (Rafael Aquini) [1824109 2069962]
-- mm/rmap.c: don't reuse anon_vma if we just want a copy (Rafael Aquini) [1824109 2069962]
-- mm/mmap.c: rb_parent is not necessary in __vma_link_list() (Rafael Aquini) [1824109 2069962]
-- mm/mmap.c: extract __vma_unlink_list() as counterpart for __vma_link_list() (Rafael Aquini) [1824109 2069962]
-- mm/mmap.c: __vma_unlink_prev() is not necessary now (Rafael Aquini) [1824109 2069962]
-- mm/mmap.c: prev could be retrieved from vma->vm_prev (Rafael Aquini) [1824109 2069962]
-
-* Wed Apr 27 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.66.1.el7]
-- net-sysfs: add check for netdevice being present to speed_show (William Zhao) [2055457]
-- CI: Drop baseline runs (Veronika Kabatova)
-- perf/x86/intel: Add more Icelake CPUIDs (Michael Petlan) [2072317]
-- perf vendor events intel: Add Icelake V1.00 event file (Michael Petlan) [2072317]
-- perf vendor events intel: Add core event list for Icelake Server (Michael Petlan) [2072317]
-
-* Wed Apr 13 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.65.1.el7]
-- CI: Remove deprecated option (Veronika Kabatova)
-- RDMA/core: Fix panic when port_pkey_list isn't initialized (Kamal Heib) [2046571]
-
-* Wed Apr 06 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.64.1.el7]
-- cgroup-v1: Require capabilities to set release_agent (Waiman Long) [2052162] {CVE-2022-0492}
-
-* Wed Mar 30 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.63.1.el7]
-- NFSv4: Set the connection timeout to match the lease period (Benjamin Coddington) [2066699]
-- SUNRPC: Allow changing of the TCP timeout parameters on the fly (Benjamin Coddington) [2066699]
-- SUNRPC: Refactor TCP socket timeout code into a helper function (Benjamin Coddington) [2066699]
-- SUNRPC: Remove unused function rpc_get_timeout() (Benjamin Coddington) [2066699]
-- kernel/timer: Fix incorrect assertion in requeue_timers() (Waiman Long) [2048502]
-
-* Wed Mar 23 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.62.1.el7]
-- cifs: fix handling of DFS links where we can not access all components (Ronnie Sahlberg) [1937304]
-- redhat: kernel.spec: install new kernel boot entry in posttrans, not post (Denys Vlasenko) [1893756]
-- [s390] s390/cpumf: Support for CPU Measurement Facility CSVN 7 (Mete Durlu) [2048920]
-- dm table: fix iterate_devices based device capability checks (Mike Snitzer) [2054743]
-- buffer: eliminate the need to call free_more_memory() in __getblk_slow() (Carlos Maiolino) [2030609]
-- buffer: grow_dev_page() should use __GFP_NOFAIL for all cases (Carlos Maiolino) [2030609]
-- buffer: have alloc_page_buffers() use __GFP_NOFAIL (Carlos Maiolino) [2030609]
-- mm: memcg: do not fail __GFP_NOFAIL charges (Rafael Aquini) [2054345]
-- mm: filemap: do not drop action modifier flags from the gfp_mask passed to __add_to_page_cache_locked() (Rafael Aquini) [2054345]
-- Added ZSTREAM=yes to makefile (Lucas Zampieri)
-
-* Mon Mar 07 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.61.1.el7]
-- x86/efi: reset the correct tlb_state when returning from efi_switch_mm() (Rafael Aquini) [2055587]
-
-* Wed Feb 23 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.60.1.el7]
-- svcrdma: Fix leak of svc_rdma_recv_ctxt objects (Benjamin Coddington) [2028740]
-- sunrpc: Remove unneeded pointer dereference (Benjamin Coddington) [2028740]
-- x86/platform/uv: Add more to secondary CPU kdump info (Frank Ramsay) [2042462]
-- [s390] s390/AP: support new dynamic AP bus size limit (Claudio Imbrenda) [1997156]
-- CI: Enable baseline realtime checks (Veronika Kabatova)
-- CI: Rename pipelines to include release names (Veronika Kabatova)
-- RDMA/cma: Do not change route.addr.src_addr.ss_family (Kamal Heib) [2032075] {CVE-2021-4028}
-- fget: clarify and improve __fget_files() implementation (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fget: check that the fd still exists after getting a ref to it (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- net: Set fput_needed iff FDPUT_FPUT is set (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- vfs, fdtable: Add fget_task helper (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs: add fget_many() and fput_many() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs/file.c: __fget() and dup2() atomicity rules (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- vfs: Don't let __fdget_pos() get FMODE_PATH files (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- get rid of fget_light() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- sockfd_lookup_light(): switch to fdget^W^Waway from fget_light (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs: __fget_light() can use __fget() in slow path (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs: factor out common code in fget_light() and fget_raw_light() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- fs: factor out common code in fget() and fget_raw() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-- introduce __fcheck_files() to fix rcu_dereference_check_fdtable(), kill rcu_my_thread_group_empty() (Miklos Szeredi) [2032478] {CVE-2021-4083}
-
-* Wed Feb 16 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.59.1.el7]
-- Revert "Merge: Fix tasks stuck in IO waiting for buffer_head lock" (Rado Vrbovsky) [2030609]
-
-* Tue Feb 08 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.58.1.el7]
-- Bluetooth: fix use-after-free error in lock_sock_nested() (Gopal Tiwari) [2005687]
-- drm/vmwgfx: Fix stale file descriptors on failed usercopy (Dave Airlie) [2047597] {CVE-2022-22942}
-
-* Wed Feb 02 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.57.1.el7]
-- fix regression in "epoll: Keep a reference on files added to the check list" (Carlos Maiolino) [2042760] {CVE-2020-0466}
-- epoll: Keep a reference on files added to the check list (Carlos Maiolino) [2042760] {CVE-2020-0466}
-- drm/i915: Flush TLBs before releasing backing store (Dave Airlie) [2044319] {CVE-2022-0330}
-
-* Fri Jan 28 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.56.1.el7]
-- RDMA/mlx5: Fix access to wrong pointer while performing flush due to error (Kamal Heib) [1984070]
-- af_unix: fix garbage collect vs MSG_PEEK (William Zhao) [2031970] {CVE-2021-0920}
-- selinux: fix race condition when computing ocontext SIDs (Ondrej Mosnacek) [2040196]
-- Bluetooth: fix the erroneous flush_work() order (Chris von Recklinghausen) [1964556] {CVE-2021-3564}
-
-* Tue Jan 18 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.55.1.el7]
-- SUNRPC: Fix null rpc_clnt dereference in rpc_task_queued tracepoint (Benjamin Coddington) [2039508]
-- buffer: eliminate the need to call free_more_memory() in __getblk_slow() (Carlos Maiolino) [2030609]
-- buffer: grow_dev_page() should use __GFP_NOFAIL for all cases (Carlos Maiolino) [2030609]
-- buffer: have alloc_page_buffers() use __GFP_NOFAIL (Carlos Maiolino) [2030609]
-- net: add READ_ONCE() annotation in __skb_wait_for_more_packets() (Sabrina Dubroca) [2033561]
-- efi: Decode IA32/X64 Context Info structure (Aristeu Rozanski) [1950302]
-- efi: Decode IA32/X64 MS Check structure (Aristeu Rozanski) [1950302]
-- efi: Decode additional IA32/X64 Bus Check fields (Aristeu Rozanski) [1950302]
-- efi: Decode IA32/X64 Cache, TLB, and Bus Check structures (Aristeu Rozanski) [1950302]
-- efi: Decode UEFI-defined IA32/X64 Error Structure GUIDs (Aristeu Rozanski) [1950302]
-- efi: Decode IA32/X64 Processor Error Info Structure (Aristeu Rozanski) [1950302]
-- efi: Decode IA32/X64 Processor Error Section (Aristeu Rozanski) [1950302]
-- efi: Fix IA32/X64 Processor Error Record definition (Aristeu Rozanski) [1950302]
-- HID: core: Sanitize event code and type when mapping input (Aristeu Rozanski) [1920848] {CVE-2020-0465}
-
-* Wed Jan 12 2022 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.54.1.el7]
-- block: queue lock must be acquired when iterating over rls (Ming Lei) [2029574]
-- Bluetooth: use correct lock to prevent UAF of hdev object (Chris von Recklinghausen) [1968211] {CVE-2021-3573}
-- xfs: map unwritten blocks in XFS_IOC_{ALLOC,FREE}SP just like fallocate (Carlos Maiolino) [2034857] {CVE-2021-4155}
-
-* Thu Dec 16 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.53.1.el7]
-- fuse: fix live lock in fuse_iget() (Miklos Szeredi) [1952046]
-- fuse: fix bad inode (Miklos Szeredi) [1952046]
-- GFS2: Truncate address space mapping when deleting an inode (Bob Peterson) [1364234]
-- gfs2: Fix gfs2_testbit to use clone bitmaps (Bob Peterson) [1364234]
-- gfs2: clear buf_in_tr when ending a transaction in sweep_bh_for_rgrps (Bob Peterson) [1364234]
-- gfs2: Fix oversight in gfs2_ail1_flush (Bob Peterson) [1364234]
-- gfs2: Additional information when gfs2_ail1_flush withdraws (Bob Peterson) [1364234]
-- gfs2: leaf_dealloc needs to allocate one more revoke (Bob Peterson) [1364234]
-- gfs2: allow journal replay to hold sd_log_flush_lock (Bob Peterson) [1364234]
-- gfs2: don't allow releasepage to free bd still used for revokes (Bob Peterson) [1364234]
-- gfs2: flesh out delayed withdraw for gfs2_log_flush (Bob Peterson) [1364234]
-- gfs2: Do proper error checking for go_sync family of glops functions (Bob Peterson) [1364234]
-- gfs2: drain the ail2 list after io errors (Bob Peterson) [1364234]
-- gfs2: Withdraw in gfs2_ail1_flush if write_cache_pages fails (Bob Peterson) [1364234]
-- gfs2: Do log_flush in gfs2_ail_empty_gl even if ail list is empty (Bob Peterson) [1364234]
-- gfs2: Check for log write errors before telling dlm to unlock (Bob Peterson) [1364234]
-- gfs2: Prepare to withdraw as soon as an IO error occurs in log write (Bob Peterson) [1364234]
-- gfs2: Issue revokes more intelligently (Bob Peterson) [1364234]
-- gfs2: Add verbose option to check_journal_clean (Bob Peterson) [1364234]
-- gfs2: fix infinite loop when checking ail item count before go_inval (Bob Peterson) [1364234]
-- gfs2: Force withdraw to replay journals and wait for it to finish (Bob Peterson) [1364234]
-- gfs2: Allow some glocks to be used during withdraw (Bob Peterson) [1364234]
-- gfs2: move check_journal_clean to util.c for future use (Bob Peterson) [1364234]
-- gfs2: Ignore dlm recovery requests if gfs2 is withdrawn (Bob Peterson) [1364234]
-- gfs2: Only complain the first time an io error occurs in quota or log (Bob Peterson) [1364234]
-- gfs2: log error reform (Bob Peterson) [1364234]
-- gfs2: Rework how rgrp buffer_heads are managed (Bob Peterson) [1364234]
-- gfs2: clear ail1 list when gfs2 withdraws (Bob Peterson) [1364234]
-- gfs2: Introduce concept of a pending withdraw (Bob Peterson) [1364234]
-- gfs2: Return bool from gfs2_assert functions (Bob Peterson) [1364234]
-- gfs2: Turn gfs2_consist into void functions (Bob Peterson) [1364234]
-- gfs2: Remove usused cluster_wide arguments of gfs2_consist functions (Bob Peterson) [1364234]
-- gfs2: Report errors before withdraw (Bob Peterson) [1364234]
-- gfs2: Split gfs2_lm_withdraw into two functions (Bob Peterson) [1364234]
-- gfs2: Fix incorrect variable name (Bob Peterson) [1364234]
-- gfs2: Don't write log headers after file system withdraw (Bob Peterson) [1364234]
-- gfs2: clean up iopen glock mess in gfs2_create_inode (Bob Peterson) [1364234]
-- gfs2: Close timing window with GLF_INVALIDATE_IN_PROGRESS (Bob Peterson) [1364234]
-- gfs2: fix infinite loop in gfs2_ail1_flush on io error (Bob Peterson) [1364234]
-- gfs2: Introduce function gfs2_withdrawn (Bob Peterson) [1364234]
-- gfs2: replace more printk with calls to fs_info and friends (Bob Peterson) [1364234]
-- gfs2: dump fsid when dumping glock problems (Bob Peterson) [1364234]
-- gfs2: simplify gfs2_freeze by removing case (Bob Peterson) [1364234]
-- gfs2: Rename SDF_SHUTDOWN to SDF_WITHDRAWN (Bob Peterson) [1364234]
-- gfs2: Warn when a journal replay overwrites a rgrp with buffers (Bob Peterson) [1364234]
-- gfs2: log which portion of the journal is replayed (Bob Peterson) [1364234]
-- gfs2: slow the deluge of io error messages (Bob Peterson) [1364234]
-- gfs2: Don't withdraw under a spin lock (Bob Peterson) [1364234]
-- GFS2: Clear gl_object when deleting an inode in gfs2_delete_inode (Bob Peterson) [1364234]
-- gfs2: Use fs_* functions instead of pr_* function where we can (Bob Peterson) [1364234]
-- GFS2: Use pr_<level> more consistently (Bob Peterson) [1364234]
-
-* Wed Dec 08 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.52.1.el7]
-- acpi-cpufreq: Honor _PSD table setting on new AMD CPUs (David Arcari) [2019588]
-- x86/cpu/amd: Call init_amd_zn() om Family 19h processors too (David Arcari) [2019218]
-- x86/cpu/AMD: Fix erratum 1076 (CPB bit) (David Arcari) [2019218]
-- i40e: Fix the conditional for i40e_vc_validate_vqs_bitmaps (Stefan Assmann) [1977246]
-- i40e: Fix virtchnl_queue_select bitmap validation (Stefan Assmann) [1977246]
-
-* Wed Nov 24 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.51.1.el7]
-- mm, fs: Fix do_generic_file_read() error return (Carlos Maiolino) [2020857]
-- perf/core: Fix a memory leak in perf_event_parse_addr_filter() (Michael Petlan) [1901932]
-
-* Thu Nov 18 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.50.1.el7]
-- tcp: grow window for OOO packets only for SACK flows (Guillaume Nault) [1990665]
-- scsi: mpt3sas: Fix unlock imbalance (Tomas Henzl) [2006536]
-- pci-hyperv: Fix setting CPU affinity on Azure (Vitaly Kuznetsov) [2019272]
-- media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() (Lucas Zampieri) [1956471] {CVE-2021-42739}
-
-* Tue Nov 09 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.49.1.el7]
-- NFS: Fix interrupted slots by sending a solo SEQUENCE operation (Scott Mayhew) [2007465]
-
-* Wed Nov 03 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.48.1.el7]
-- scsi: qedf: Add check to synchronize abort and flush (Nilesh Javali) [1941766]
-- scsi: ibmvfc: Reinit target retries (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: Avoid move login if fast fail is enabled (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: Handle move login failure (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: Avoid link down on FS9100 canister reboot (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: don't check for failure from mempool_alloc() (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: Use compiler attribute defines instead of __attribute__() (Desnes A. Nunes do Rosario) [1882627]
-- scsi: ibmvfc: fix misdefined reserved field in ibmvfc_fcp_rsp_info (Desnes A. Nunes do Rosario) [1882627]
-
-* Wed Oct 27 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.47.1.el7]
-- PCI: hv: Fix sleep while in non-sleep context when removing child devices from the bus (Mohammed Gamal) [1948961]
-- PCI: hv: Remove bus device removal unused refcount/functions (Mohammed Gamal) [1948961]
-- PCI: hv: Fix a race condition when removing the device (Mohammed Gamal) [1948961]
-- scsi: qla2xxx: Fix use after free in eh_abort path (Nilesh Javali) [1899599]
-
-* Thu Oct 07 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.46.1.el7]
-- RDMA/ucma: Rework ucma_migrate_id() to avoid races with destroy (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/ucma: Fix locking for ctx->events_reported (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/ucma: Fix the locking of ctx->file (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/cma: Add missing locking to rdma_accept() (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/ucma: Add missing locking around rdma_leave_multicast() (Kamal Heib) [1978075] {CVE-2020-36385}
-- RDMA/ucma: Put a lock around every call to the rdma_cm layer (Kamal Heib) [1978075] {CVE-2020-36385}
-- nvme-pci: Unblock reset_work on IO failure (Gopal Tiwari) [1981610]
-- nvme-pci: Don't disable on timeout in reset state (Gopal Tiwari) [1981610]
-- nvme-pci: shutdown on timeout during deletion (Gopal Tiwari) [1981610]
-
-* Fri Sep 24 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.45.1.el7]
-- CI: handle RT branches in a single config (Veronika Kabatova)
-- CI: Drop private CI config (Veronika Kabatova)
-- CI: extend template use (Veronika Kabatova)
-- mm: page_counter: mitigate consequences of a page_counter underflow (Scott Wood) [2000973]
-- KVM: nSVM: always intercept VMLOAD/VMSAVE when nested(CVE-2021-3656) (Jon Maloy) [1985425] {CVE-2021-3656}
-- KVM: x86: Update vCPU's hv_clock before back to guest when tsc_offset is adjusted (Marcelo Tosatti) [1991856]
-- KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl (CVE-2021-3653) (Jon Maloy) [1985408] {CVE-2021-3653}
-- scsi: qedf: Initiate cleanup for ELS commands as well (Nilesh Javali) [1982702]
-
-* Mon Sep 20 2021 Rado Vrbovsky <rvrbovsk@redhat.com> [3.10.0-1160.44.1.el7]
-- fs: dlm: change handling of reconnects (Bob Peterson) [1834878]
-- DLM: fix NULL pointer dereference in send_to_sock() (Bob Peterson) [1834878]
-- DLM: fix to reschedule rwork (Bob Peterson) [1834878]
-- DLM: fix to use sk_callback_lock correctly (Bob Peterson) [1834878]
-- DLM: fix overflow dlm_cb_seq (Bob Peterson) [1834878]
-- DLM: fix conversion deadlock when DLM_LKF_NODLCKWT flag is set (Bob Peterson) [1834878]
-- DLM: use CF_CLOSE flag to stop dlm_send correctly (Bob Peterson) [1834878]
-- DLM: Reanimate CF_WRITE_PENDING flag (Bob Peterson) [1834878]
-- DLM: fix race condition between dlm_recoverd_stop and dlm_recoverd (Bob Peterson) [1834878]
-- DLM: close othercon at send/receive error (Bob Peterson) [1834878]
-- DLM: retry rcom when dlm_wait_function is timed out. (Bob Peterson) [1834878]
-- DLM: fix to use sock_mutex correctly in xxx_accept_from_sock (Bob Peterson) [1834878]
-- DLM: fix race condition between dlm_send and dlm_recv (Bob Peterson) [1834878]
-- DLM: fix double list_del() (Bob Peterson) [1834878]
-- DLM: Eliminate CF_WRITE_PENDING flag (Bob Peterson) [1834878]
-- KVM: do not allow mapping valid but non-reference-counted pages (Jon Maloy) [1975511]
-- vxlan: check return value of gro_cells_init() (Aristeu Rozanski) [1970618]
-- KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow (Jon Maloy) [1988218] {CVE-2021-37576}
-
-* Fri Sep 10 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.43.1.el7]
-- PCI: hv: Add support for protocol 1.3 and support PCI_BUS_RELATIONS2 (Mohammed Gamal) [1984128]
-- PCI: hv: Decouple the func definition in hv_dr_state from VSP message (Mohammed Gamal) [1984128]
-- PCI: hv: Only queue new work items in hv_pci_devices_present() if necessary (Mohammed Gamal) [1984128]
-- i40e: improve locking of mac_filter_hash (Stefan Assmann) [1993850]
-- i40e: always propagate error value in i40e_set_vsi_promisc() (Stefan Assmann) [1993850]
-- i40e: fix return of uninitialized aq_ret in i40e_set_vsi_promisc (Stefan Assmann) [1993850]
-- i40e: Remove scheduling while atomic possibility (Stefan Assmann) [1993850]
-- scsi: lpfc: Fix pt2pt discovery on SLI3 HBAs (Dick Kennedy) [1922479]
-- qed: Disable "MFW indication via attention" SPAM every 5 minutes (Manish Chopra) [1854544]
-- NFS: Fix a performance regression caused by buffered IO locking (Benjamin Coddington) [1995649]
-
-* Tue Aug 31 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.42.2.el7]
-- net_sched: cls_route: remove the right filter from hashtable (Ivan Vecera) [1992926]
-
-* Thu Aug 26 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.42.1.el7]
-- [s390] s390/dasd: fix list corruption of lcu list (Claudio Imbrenda) [1889418]
-- [s390] s390/dasd: fix list corruption of pavgroup group list (Claudio Imbrenda) [1889418]
-- [s390] s390/dasd: prevent inconsistent LCU device data (Claudio Imbrenda) [1889418]
-- [s390] s390/dasd: fix hanging device offline processing (Claudio Imbrenda) [1889418]
-
-* Mon Aug 16 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.41.1.el7]
-- ixgbe: fix warning: sysfs: cannot create duplicate filename (Daniel Vacek) [1915449]
-
-* Thu Aug 05 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.40.1.el7]
-- redhat: ppc64: CONFIG_RTAS_FILTER (Aristeu Rozanski) [1906443] {CVE-2020-27777}
-- powerpc/rtas: Fix typo of ibm,open-errinjct in RTAS filter (Aristeu Rozanski) [1906443] {CVE-2020-27777}
-- powerpc/rtas: Restrict RTAS requests from userspace (Aristeu Rozanski) [1906443] {CVE-2020-27777}
-- IB/mlx5: Fix initializing CQ fragments buffer (Alaa Hleihel) [1962499]
-
-* Wed Jul 28 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.39.1.el7]
-- netfilter: x_tables: fix compat match/target pad out-of-bound write (Florian Westphal) [1980489] {CVE-2021-22555}
-- Revert "be2net: disable bh with spin_lock in be_process_mcc" (Petr Oros) [1971744]
-- futex: futex_requeue can potentially free the pi_state structure twice (Donghai Qiao) [1966856]
-- xfs: sync lazy sb accounting on quiesce of read-only mounts (Carlos Maiolino) [1921551]
-- scsi: lpfc: Fix crash caused by switch reboot (Dick Kennedy) [1897576]
-
-* Thu Jul 22 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.38.1.el7]
-- seq_file: Disallow extremely large seq buffer allocations (Ian Kent) [1975251]
-- memcg, slab: Fix incorrect placement of rcu_head in struct memcg_cache_params (Waiman Long) [1951810]
-- netfilter: x_tables: Use correct memory barriers. (Phil Sutter) [1949087] {CVE-2021-29650}
-- netfilter: nf_nat: don't bug when mapping already exists (Florian Westphal) [1972970]
-- netfilter: don't setup nat info for confirmed ct (Florian Westphal) [1972970]
-
-* Wed Jul 14 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.37.1.el7]
-- bluetooth: eliminate the potential race condition when removing the HCI controller (Gopal Tiwari) [1971457]
-- net: Update window_clamp if SOCK_RCVBUF is set (Balazs Nemeth) [1962196]
-- bpf, x86: Validate computation of branch displacements for x86-64 (Jiri Olsa) [1947249] {CVE-2021-29154}
-- mm: vmalloc: add cond_resched() in __vunmap() (Rafael Aquini) [1896794]
-- mm/vmalloc: __vmalloc_area_node(): avoid 32-bit overflow (Rafael Aquini) [1896794]
-
-* Wed Jul 07 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.36.1.el7]
-- cipso,calipso: resolve a number of problems with the DOI refcounts (Antoine Tenart) [1967720]
-- net: ethernet: mlx4: Fix memory allocation in mlx4_buddy_init() (Alaa Hleihel) [1962406]
-- sched/debug: Fix cgroup_path[] serialization (Waiman Long) [1912221]
-- sched/debug: Reset watchdog on all CPUs while processing sysrq-t (Waiman Long) [1912221]
-- vt: vt_ioctl: fix use-after-free in vt_in_use() (Vladis Dronov) [1872778]
-- vt: vt_ioctl: fix VT_DISALLOCATE freeing in-use virtual console (Vladis Dronov) [1872778]
-- vt: ioctl, switch VT_IS_IN_USE and VT_BUSY to inlines (Vladis Dronov) [1872778]
-- vt: selection, introduce vc_is_sel (Vladis Dronov) [1872778]
-- redhat: genspec: generate changelog entries since last release (Augusto Caringi)
-
-* Tue Jun 29 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.35.1.el7]
-- CI: Merge configuration (Veronika Kabatova)
-- [pci/aer] Work around use-after-free in pcie_do_fatal_recovery() (Al Stone) [1933663]
-- [pci/aer] do not invoke error recovery with non-fatal errors (Al Stone) [1933663]
-
-* Tue Jun 22 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.34.1.el7]
-- futex: remove lockdep_assert_held() in pi_state_update_owner() (Donghai Qiao) [1965495]
-- video: hyperv_fb: Add ratelimit on error message (Mohammed Gamal) [1957803]
-- Drivers: hv: vmbus: Increase wait time for VMbus unload (Mohammed Gamal) [1957803]
-- Drivers: hv: vmbus: Initialize unload_event statically (Mohammed Gamal) [1957803]
-- blk-mq: always allow reserved allocation in hctx_may_queue (Ming Lei) [1926825]
-- s390/pci: fix out of bounds access during irq setup (Philipp Rudo) [1917943]
-- s390/pci: improve irq number check for msix (Philipp Rudo) [1917943]
-
-* Thu Jun 17 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.33.1.el7]
-- CI: Disable result checking for realtime check (Veronika Kabatova)
-- CI: Explicitly disable result checking for private CI (Veronika Kabatova)
-- CI: Rename variable (Veronika Kabatova)
-- mm: memcontrol: switch to rcu protection in drain_all_stock() (Waiman Long) [1957719]
-- sctp: Don't add the shutdown timer if its already been added (Xin Long) [1953052]
-- media: xirlink_cit: add missing descriptor sanity checks (Mark Langsdorf) [1826877] {CVE-2020-11668}
-
-* Wed Jun 09 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.32.1.el7]
-- Bluetooth: verify AMP hci_chan before amp_destroy (Gopal Tiwari) [1962532] {CVE-2021-33034}
-- net: ipv4: route: Fix sending IGMP messages with link address (Hangbin Liu) [1958339]
-- hv_netvsc: remove ndo_poll_controller (Mohammed Gamal) [1953075]
-- Fix double free in nvme_trans_log_temperature (Gopal Tiwari) [1946793]
-- rcu: Call touch_nmi_watchdog() while printing stall warnings (Artem Savkov) [1924688]
-- sched/fair: Use RCU accessors consistently for ->numa_group (Rafael Aquini) [1915635] {CVE-2019-20934}
-- sched/fair: Don't free p->numa_faults with concurrent readers (Rafael Aquini) [1915635] {CVE-2019-20934}
-- sched/numa: Simplify task_numa_compare() (Rafael Aquini) [1915635] {CVE-2019-20934}
-- sched/numa: Fix task_numa_free() lockdep splat (Rafael Aquini) [1915635] {CVE-2019-20934}
-- sched/numa: Move task_numa_free() to __put_task_struct() (Rafael Aquini) [1915635] {CVE-2019-20934}
-- [s390] s390/dasd: fix diag 0x250 inline assembly (Philipp Rudo) [1910395]
-- vsock/vmci: log once the failed queue pair allocation (Stefano Garzarella) [1892237]
-- VMCI: Stop log spew when qp allocation isn't possible (Stefano Garzarella) [1892237]
-
-* Wed May 26 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.31.1.el7]
-- mm/userfaultfd: do not access vma->vm_mm after calling handle_userfault() (Philipp Rudo) [1917840]
-- scsi: qla2xxx: Fix the call trace for flush workqueue (Nilesh Javali) [1937945]
-- futex: Handle faults correctly for PI futexes (Donghai Qiao) [1935108] {CVE-2021-3347}
-- futex: Provide and use pi_state_update_owner() (Donghai Qiao) [1935108] {CVE-2021-3347}
-- futex: Replace pointless printk in fixup_owner() (Donghai Qiao) [1935108] {CVE-2021-3347}
-- futex: Ensure the correct return value from futex_lock_pi() (Donghai Qiao) [1935108] {CVE-2021-3347}
-- scsi: qla2xxx: Remove WARN_ON_ONCE in qla2x00_status_cont_entry() (Nilesh Javali) [1933784]
-- scsi: zfcp: add handling for FCP_RESID_OVER to the fcp ingress path (Philipp Rudo) [1917839]
-- net: netfilter: Avoid deadlock when loading logger backend (Phil Sutter) [1858329]
-- net: netfilter: Link nfnetlink into bzImage (Phil Sutter) [1858329]
-
-* Wed May 19 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.30.1.el7]
-- pf: Prohibit alu ops for pointer types not defining ptr_limit (Jiri Olsa) [1942689] {CVE-2020-27170}
-- bpf: Add sanity check for upper ptr_limit (Jiri Olsa) [1942689] {CVE-2020-27170}
-- bpf: Simplify alu_limit masking for pointer arithmetic (Jiri Olsa) [1942689] {CVE-2020-27170}
-- bpf: Fix off-by-one for area size in creating mask to left (Jiri Olsa) [1942689] {CVE-2020-27170}
-- netxen_nic: fix MSI/MSI-x interrupts (Tony Camuso) [1894274]
-- block: fix use-after-free on cached last_lookup partition (Ming Lei) [1898596]
-- mm: reduce struct page_cgroup overhead when page_owner is not enabled (Rafael Aquini) [1948451]
-- vt: selection, close sel_buffer race (Chris von Recklinghausen) [1831034] {CVE-2020-8648}
-
-* Wed May 12 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.29.1.el7]
-- drm/i915: warn on guc enable about CVE (Dave Airlie) [1935277] {CVE-2020-12362}
-- sched: prevent divide by zero error in scale_rt_power() (Phil Auld) [1910763]
-- x86/efi: reset the correct tlb_state in efi_switch_mm() (Rafael Aquini) [1837531]
-- x86/mm, sched/core: Turn off IRQs in switch_mm() (Rafael Aquini) [1837531]
-- x86/mm, sched/core: Uninline switch_mm() (Rafael Aquini) [1837531]
-- x86/mm: Build arch/x86/mm/tlb.c even on !SMP (Rafael Aquini) [1837531]
-- hpsa: fix regression issue for old controllers (Joseph Szczypek) [1830268]
-- scsi: hpsa: Correct dev cmds outstanding for retried cmds (Joseph Szczypek) [1830268]
-
-* Tue May 04 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.28.1.el7]
-- i40e: acquire VSI pointer only after VF is initialized (Stefan Assmann) [1886003]
-- ACPICA: Store GPE register enable masks upfront (Al Stone) [1883174]
-- netfilter: nf_tables: validate NFTA_SET_TABLE parameter (Phil Sutter) [1873171]
-- sctp: change to hold/put transport for proto_unreach_timer (Xin Long) [1707184]
-
-* Wed Apr 28 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.27.1.el7]
-- video: hyperv: hyperv_fb: Obtain screen resolution from Hyper-V host (Mohammed Gamal) [1941841]
-- Drivers: hv: vmbus: enable VMBus protocol version 5.0 (Mohammed Gamal) [1941841]
-- redhat: Add git suffix to realtime_check merge_tree (Juri Lelli)
-
-* Tue Apr 20 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.26.1.el7]
-- selinux: fix deadlock in security_set_bools() (Ondrej Mosnacek) [1939091]
-- md: fix md io stats accounting broken (Ming Lei) [1927106]
-- redhat: Fix realtime_check for -private (Juri Lelli)
-
-* Tue Apr 13 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.25.1.el7]
-- redhat: Enable CKI RT verification for kernel-private (Juri Lelli)
-- redhat: Enable CKI RT verification (Juri Lelli)
-- RDMA/ipoib: Remove racy Subnet Manager sendonly join checks (Honggang Li) [1922460]
-- net: sched: protect against stack overflow in TC act_mirred (Davide Caratti) [1916682]
-- floppy: check_events callback should not return a negative number (Jay Shin) [1928576]
-- floppy: fix lock_fdc() signal handling (Jay Shin) [1928576]
-- ipv6: clean up anycast when an interface is destroyed (Xin Long) [1917700]
-- virtio_net: fix virtnet_open and virtnet_probe competing for try_fill_recv (Laurent Vivier) [1895319]
-
-* Thu Mar 25 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.24.1.el7]
-- scsi: iscsi: Verify lengths on passthrough PDUs (Chris Leech) [1930826] {CVE-2021-27365}
-- scsi: iscsi: Ensure sysfs attributes are limited to PAGE_SIZE (Chris Leech) [1930849] {CVE-2021-27363}
-- scsi: iscsi: Restrict sessions and handles to admin capabilities (Chris Leech) [1930807] {CVE-2021-27364}
-- redhat: add CI file for kernel-private (Bruno Meneguele)
-
-* Thu Mar 18 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.23.1.el7]
-- tcm_loop: add WQ_MEM_RECLAIM and flush_work (Maurizio Lombardi) [1925652]
-- net/mlx4_en: Handle TX error CQE (Alaa Hleihel) [1925691]
-- net/mlx4_en: Avoid scheduling restart task if it is already running (Alaa Hleihel) [1925691]
-
-* Fri Mar 12 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.22.1.el7]
-- mm: do not stall register_shrinker() (Rafael Aquini) [1926043]
-- sched/rt: Fix PI handling vs. sched_setscheduler() (Phil Auld) [1928082]
-- sched/rt: Simplify pull_rt_task() logic and remove .leaf_rt_rq_list (Phil Auld) [1928082]
-- sched: Queue RT tasks to head when prio drops (Phil Auld) [1928082]
-- sched/core: Use READ_ONCE()/WRITE_ONCE() in move_queued_task()/task_rq_lock() (Phil Auld) [1928082]
-- mmc: block: handle complete_work on separate workqueue (Ming Lei) [1918916]
-- tcp: fix to update snd_wl1 in bulk receiver fast path (Vladis Dronov) [1929804]
-
-* Mon Feb 22 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.21.1.el7]
-- [pinctrl] devicetree: Avoid taking direct reference to device name string (Aristeu Rozanski) [1922902] {CVE-2020-0427}
-- [pinctrl] Delete an error message (Aristeu Rozanski) [1922902] {CVE-2020-0427}
-- [tty] vt: keyboard, reorder user buffer handling in vt_do_kdgkb_ioctl (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] vt: keyboard, rename i to kb_func in vt_do_kdgkb_ioctl (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] vt: keyboard, extend func_buf_lock to readers (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] vt: keyboard, simplify vt_kdgkbsent (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] keyboard, do not speculate on func_table index (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [tty] vt: fix write/write race in ioctl(KDSKBSENT) handler (Aristeu Rozanski) [1896775] {CVE-2020-25656}
-- [iommu] amd: return error on real irq alloc failure (Jerry Snitselaar) [1918273]
-- [iommu] amd: Set DTE[IntTabLen] to represent 512 IRTEs (Jerry Snitselaar) [1921187]
-- [iommu] amd: Increase interrupt remapping table limit to 512 entries (Jerry Snitselaar) [1921187]
-- [scsi] lpfc: Fix LUN loss after cable pull (Dick Kennedy) [1875961]
-- [scsi] lpfc: Fix NVMe rport deregister and registration during ADISC (Dick Kennedy) [1875961]
-- [scsi] lpfc: Fix ADISC reception terminating login state if a NVME target (Dick Kennedy) [1875961]
-- [netdrv] i40e: revert "i40e: don't report link up for a VF who hasn't enabled queues" (Stefan Assmann) [1901064]
-
-* Thu Feb 18 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.20.1.el7]
-- [md] Set prev_flush_start and flush_bio in an atomic way (Xiao Ni) [1889372]
-- [md] improve variable names in md_flush_request() (Xiao Ni) [1889372]
-- [kernel] timer: Fix potential bug in requeue_timers() (Waiman Long) [1914011]
-- [x86] kvm: reinstate vendor-agnostic check on SPEC_CTRL cpuid bits (Vitaly Kuznetsov) [1890669]
-- [x86] kvm: avoid incorrect writes to host MSR_IA32_SPEC_CTRL (Vitaly Kuznetsov) [1890669]
-- [md] dm-mirror: fix a crash if the underlying block device doesn't have merge_bvec_fn (Mikulas Patocka) [1916407]
-- [gpu] drm/i915: Fix use-after-free when destroying GEM context (Dave Airlie) [1814731] {CVE-2020-7053}
-
-* Tue Feb 09 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.19.1.el7]
-- [kernel] watchdog: use nmi registers snapshot in hardlockup handler (Prarit Bhargava) [1916589]
-- [nvme] nvmet: allow Keep Alive for Discovery controller (Gopal Tiwari) [1910817]
-- [net] netfilter: ctnetlink: add a range check for l3/l4 protonum (Florian Westphal) [1888296] {CVE-2020-25211}
-- [net] icmp: randomize the global rate limiter (Antoine Tenart) [1896515] {CVE-2020-25705}
-
-* Fri Jan 29 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.18.1.el7]
-- [fs] nfs: Fix security label length not being reset (Dave Wysochanski) [1917504]
-- [target] scsi: Fix XCOPY NAA identifier lookup (Maurizio Lombardi) [1900469] {CVE-2020-28374}
-- [ipc] sem.c: fully initialize sem_array before making it visible (Vladis Dronov) [1877264]
-- [netdrv] geneve: add transport ports in route lookup for geneve (Sabrina Dubroca) [1885144] {CVE-2020-25645}
-- [kernel] perf/core: Fix race in the perf_mmap_close() function (Michael Petlan) [1869936] {CVE-2020-14351}
-
-* Mon Jan 25 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.17.1.el7]
-- [x86] kvm: svm: Initialize prev_ga_tag before use ("Dr. David Alan Gilbert") [1909036]
-- [scsi] scsi_dh: fix scheduling while atomic and also missing unlock in error path (Mike Snitzer) [1619147]
-- [video] hyperv_fb: Fix the cache type when mapping the VRAM (Mohammed Gamal) [1908896]
-- [video] hyperv: hyperv_fb: Support deferred IO for Hyper-V frame buffer driver (Mohammed Gamal) [1908896]
-- [scsi] target: iscsi: Fix cmd abort fabric stop race (Maurizio Lombardi) [1784540]
-- [scsi] target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock (Maurizio Lombardi) [1784540]
-- [s390] kernel/uv: handle length extension properly (Claudio Imbrenda) [1899172]
-
-* Tue Jan 19 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.16.1.el7]
-- [tty] Fix ->pgrp locking in tiocspgrp() (Chris von Recklinghausen) [1908193] {CVE-2020-29661}
-- [net] fix struct pid memory leak (Jay Shin) [1901797]
-- [hid] Fix assumption that devices have inputs (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] microsoft: the driver now neeed MEMLESS_FF infrastructure (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] microsoft: Add rumble support for Xbox One S controller (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] microsoft: Convert private data to be a proper struct (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] revert "hid: microsoft: fix invalid rdesc for 3k kbd" (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] input: ignore System Control application usages if not System Controls (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [hid] hid-microsoft: Do the check for the ms usage page per device (Chris von Recklinghausen) [1821870] {CVE-2019-19532}
-- [net] net-sysfs: take the rtnl lock when accessing xps_cpus_map and num_tc (Antoine Tenart) [1903819]
-- [net] net-sysfs: take the rtnl lock when storing xps_cpus (Antoine Tenart) [1903819]
-
-* Mon Jan 11 2021 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.15.1.el7]
-- [fs] ceph: quota: fix null pointer dereference in quota check (Jeff Layton) [1890386]
-- [netdrv] revert "mlx5e: ethtool, Remove unsupported SFP EEPROM high pages query" (Alaa Hleihel) [1896756]
-- [kernel] timekeeping_Force_unsigned_clocksource_to_nanoseconds_conversion (Waiman Long) [1890911]
-- [kernel] exit: Optimize forget_original_parent() for large thread group exiting (Waiman Long) [1872110]
-- [kernel] exit: reparent: call forget_original_parent() under tasklist_lock (Waiman Long) [1872110]
-- [kernel] Disable tasklist_waiters when qrwlock is enabled (Waiman Long) [1872110]
-- [fs] cifs: handle ERRBaduid for SMB1 (Leif Sahlberg) [1847041]
-
-* Mon Dec 21 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.14.1.el7]
-- [fs] nfsd: fix incorrect umasks ("J. Bruce Fields") [1905208]
-- [hv] vmbus: Add timeout to vmbus_wait_for_unload (Mohammed Gamal) [1888979]
-- [scsi] qla2xxx: Fix device loss on 4G and older HBAs (Nilesh Javali) [1889311]
-- [s390] dasd: Fix zero write for FBA devices (Philipp Rudo) [1896839]
-- [net] ipv6: use in6_dev_put in dad timer handler instead of __in6_dev_put (Xin Long) [1809519]
-
-* Mon Dec 14 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.13.1.el7]
-- [s390] zcrypt: Fix ZCRYPT_PERDEV_REQCNT ioctl (Philipp Rudo) [1896826]
-- [block] block/diskstats: more accurate approximation of io_ticks for slow disks (Ming Lei) [1859364]
-- [block] block: delete part_round_stats and switch to less precise counting (Ming Lei) [1859364]
-- [md] dm: simplify start of block stats accounting for bio-based (Ming Lei) [1859364]
-- [block] block/rsxx: use generic io stats accounting functions to simplify io stat accounting (Ming Lei) [1859364]
-- [block] drbd: use generic io stats accounting functions to simplify io stat accounting (Ming Lei) [1859364]
-- [md] md: use generic io stats accounting functions to simplify io stat accounting (Ming Lei) [1859364]
-- [nvme] limit number of IO queues on Dell/Kioxia config (Gopal Tiwari) [1883403]
-- [netdrv] hv_netvsc: make recording RSS hash depend on feature flag (Mohammed Gamal) [1898280]
-- [netdrv] hv_netvsc: record hardware hash in skb (Mohammed Gamal) [1898280]
-- [fs] block: Fix use-after-free in blkdev_get() (Ming Lei) [1902414] {CVE-2020-15436}
-
-* Mon Dec 07 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.12.1.el7]
-- [mm] mmap: relax file size limit for regular files (Rafael Aquini) [1855985]
-- [mm] mmap: introduce sane default mmap limits (Rafael Aquini) [1855985]
-- [of] Move dynamic node fixups out of powerpc and into common code (Laurent Vivier) [1866138]
-- [fs] nfs: Fix double-free in filelayout_alloc_commit_info/filelayout_free_lseg (Benjamin Coddington) [1679980]
-- [hid] HID: hid-plantronics: Re-resend Update to map button for PTT products (Torez Smith) [1769502]
-- [fs] dlm: make posix locks interruptible (Alexander Aring) [1826858]
-
-* Mon Nov 30 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.11.1.el7]
-- [netdrv] hdlc_ppp: add range checks in ppp_cp_parse_cr() (Guillaume Nault) [1882078] {CVE-2020-25643}
-- [fs] ext4: fix potential negative array index in do_split() (Pavel Reichl) [1846164] {CVE-2020-14314}
-- [fs] nfsd: apply umask on fs without ACL support ("J. Bruce Fields") [1870215] {CVE-2020-24394}
-- [kernel] watchdog/core: Remove the park_in_progress obfuscation (Waiman Long) [1860661]
-- [mm] swap_slots: recheck cache->slots_ret under spin_lock_irq() protection (Rafael Aquini) [1862915]
-- [netdrv] ethernet: i40e: Set RX_ONLY mode for unicast promiscuous on VLAN (Stefan Assmann) [1845677]
-- [infiniband] mlx5: Fix use-after-free in dereg_mr() (Alaa Hleihel) [1880184]
-
-* Tue Nov 24 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.10.1.el7]
-- [md] dm-mirror: provide the merge method (Mikulas Patocka) [1890059]
-- [nvme] nvme-rdma: cancel async events before freeing event struct (David Milburn) [1857397]
-- [s390] dasd: Use struct_size() helper (Sterling Alexander) [1886477]
-- [s390] dasd: fix inability to use DASD with DIAG driver (Sterling Alexander) [1886477]
-- [hv] hv_utils: drain the timesync packets on onchannelcallback (Vitaly Kuznetsov) [1884735]
-- [hv] hv_utils: return error if host timesysnc update is stale (Vitaly Kuznetsov) [1884735]
-- [x86] cpu: Re-apply forced caps every time CPU caps are re-read (Herbert Xu) [1886792]
-- [x86] cpu: Factor out application of forced CPU caps (Herbert Xu) [1886792]
-
-* Mon Nov 16 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.9.1.el7]
-- [hv] hv: vmbus: Only notify Hyper-V for die events that are oops (Vitaly Kuznetsov) [1868130]
-- [uapi] include: do not export changes made to struct ip_ct_sctp (Florian Westphal) [1887975]
-- [net] openvswitch: free vport unless register_netdevice() succeeds (Timothy Redaelli) [1869190]
-- [net] openvswitch: do not free vport if register_netdevice() is failed (Timothy Redaelli) [1869190]
-- [kernel] signals: avoid random wakeups in sigsuspend() (Oleg Nesterov) [1704650]
-- [fs] nfs: Fix getxattr kernel panic and memory overflow (Benjamin Coddington) [1880893] {CVE-2020-25212}
-
-* Sun Nov 08 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.8.1.el7]
-- [kernel] sched/fair: Fix RCU stall upon -ENOMEM in sched_create_group() (Kenneth Yin) [1878000]
-- [security] selinux: do not report error on connect(AF_UNSPEC) (Paolo Abeni) [1886305]
-- [kernel] timer: Fix lockup in __run_timers() caused by large jiffies/timer_jiffies delta (Waiman Long) [1849716]
-- [mm] revert "mm/page_alloc: fix memmap_init_zone pageblock alignment" (Artem Savkov) [1878732]
-- [mm] page_alloc: Make paranoid check in move_freepages a VM_BUG_ON (Artem Savkov) [1878732]
-- [nvme] rdma: Avoid double freeing of async event data (Gopal Tiwari) [1878950]
-- [pci] hv: Fix a timing issue which causes kdump to fail occasionally (Mohammed Gamal) [1846667]
-
-* Thu Oct 29 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.7.1.el7]
-- [fs] xfs: fix off-by-one in inode alloc block reservation calculation (Brian Foster) [1857203]
-- [fs] xfs: fix inode allocation block res calculation precedence (Brian Foster) [1857203]
-- [powerpc] powernv/dump: Handle multiple writes to ack attribute (Gustavo Duarte) [1873189]
-- [powerpc] powernv/dump: Fix race while processing OPAL dump (Gustavo Duarte) [1873189]
-- [powerpc] powernv: opal-dump: Use IRQ_HANDLED instead of numbers in interrupt handler (Gustavo Duarte) [1873189]
-- [powerpc] opal_elog: Handle multiple writes to ack attribute (Gustavo Duarte) [1873189]
-- [powerpc] powernv/elog: Fix race while processing OPAL error log event (Gustavo Duarte) [1873189]
-- [powerpc] powernv Adapt opal-elog and opal-dump to new sysfs_remove_file_self (Gustavo Duarte) [1873189]
-- [powerpc] powernv: Fix opal-elog interrupt handler (Gustavo Duarte) [1873189]
-- [net] flow_dissector: switch to siphash (Davide Caratti) [1835614] {CVE-2019-18282}
-- [fs] xfs: fix boundary test in xfs_attr_shortform_verify (Eric Sandeen) [1875317] {CVE-2020-14385}
-- [fs] cifs: make 'nodfs' mount opt a superblock flag (Leif Sahlberg) [1873033]
-- [crypto] crypto: authenc - fix parsing key with misaligned rta_len (Herbert Xu) [1846355] {CVE-2020-10769}
-
-* Wed Oct 21 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.6.1.el7]
-- [net] netfilter: nf_queue: place bridge physports into queue_entry struct (Florian Westphal) [1885682]
-- [net] netfilter: nf_queue: do not release refcouts until nf_reinject is done (Florian Westphal) [1885682]
-- [net] netfilter: nf_queue: make nf_queue_entry_release_refs static (Florian Westphal) [1885682]
-- [net] bluetooth: l2cap: Fix calling sk_filter on non-socket based channel (Gopal Tiwari) [1888253] {CVE-2020-12351}
-- [net] bluetooth: a2mp: Fix not initializing all members (Gopal Tiwari) [1888797] {CVE-2020-12352}
-
-* Thu Oct 15 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.5.1.el7]
-- [x86] x86/PCI: Mark Intel C620 MROMs as having non-compliant BARs (Myron Stowe) [1849223]
-- [kernel] uprobes: Change handle_swbp() to send SIGTRAP with si_code=SI_KERNEL, to fix GDB regression (Oleg Nesterov) [1861396]
-- [video] vgacon: Fix for missing check in scrollback handling (Lyude Paul) [1859468] {CVE-2020-14331}
-- [pci] hv: Retry PCI bus D0 entry on invalid device state (Mohammed Gamal) [1846667]
-- [pci] hv: Fix the PCI HyperV probe failure path to release resource properly (Mohammed Gamal) [1846667]
-- [x86] xen: Add call of speculative_store_bypass_ht_init() to PV paths (Vladis Dronov) [1882468]
-- [powerpc] powerpc/smp: Use nid as fallback for package_id (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc/smp: Add Power9 scheduler topology (Desnes Augusto Nunes do Rosario) [1826306]
-- [kernel] sched: Add a new SD_SHARE_POWERDOMAIN for sched_domain (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] sched, powerpc: Create a dedicated topology table (Desnes Augusto Nunes do Rosario) [1826306]
-- [s390] sched, s390: Create a dedicated topology table (Desnes Augusto Nunes do Rosario) [1826306]
-- [s390] s390/topology: Remove call to update_cpu_masks() (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc/smp: Add cpu_l2_cache_map (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc/smp: Rework CPU topology construction (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc/smp: Use cpu_to_chip_id() to find core siblings (Desnes Augusto Nunes do Rosario) [1826306]
-- [powerpc] powerpc, hotplug: Avoid to touch non-existent cpumasks (Desnes Augusto Nunes do Rosario) [1826306]
-
-* Mon Oct 05 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.4.1.el7]
-- [block] virtio-blk: handle block_device_operations callbacks after hot unplug (Stefan Hajnoczi) [1811893]
-- [scsi] Revert "scsi: qla2xxx: Fix crash on qla2x00_mailbox_command" (Nilesh Javali) [1826127]
-- [scsi] scsi: qla2xxx: Fix stale mem access on driver unload (Nilesh Javali) [1826127]
-- [scsi] scsi: qedf: Fix crash when MFW calls for protocol stats while function is still probing (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Keep track of num of pending flogi (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Fix race betwen fipvlan request and response path (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Decrease the LL2 MTU size to 2500 (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Check for module unloading bit before processing link update AEN (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Initiator fails to re-login to switch after link down (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Fix crash during sg_reset (Nilesh Javali) [1836443]
-- [scsi] scsi: qedf: Stop sending fipvlan request on unload (Nilesh Javali) [1836443]
-- [message] scsi: mptscsih: Fix read sense data size (Tomas Henzl) [1829803]
-- [scsi] scsi: megaraid_sas: Clear affinity hint (Tomas Henzl) [1828312]
-
-* Sun Sep 27 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.3.1.el7]
-- [net] net-sysfs: Call dev_hold always in rx_queue_add_kobject (Hangbin Liu) [1846454] {CVE-2019-20811}
-- [net] net-sysfs: Call dev_hold always in netdev_queue_add_kobject (Hangbin Liu) [1846454] {CVE-2019-20811}
-- [net] net-sysfs: call dev_hold if kobject_init_and_add success (Hangbin Liu) [1846454] {CVE-2019-20811}
-- [netdrv] macvlan: Change status when lower device goes down (Hangbin Liu) [1848950]
-- [netdrv] macvlan: make operstate and carrier more accurate (Hangbin Liu) [1848950]
-- [infiniband] RDMA/ipoib: Fix ABBA deadlock with ipoib_reap_ah() (Kamal Heib) [1858707]
-- [infiniband] RDMA/ipoib: Return void from ipoib_ib_dev_stop() (Kamal Heib) [1858707]
-- [net] tcp: limit sk_write_qlen based on sndbuf size (Florian Westphal) [1847765]
-- [netdrv] net/mlx5e: Modify uplink state on interface up/down (Alaa Hleihel) [1733181]
-- [netdrv] net/mlx5: E-Switch, Disable esw manager vport correctly (Alaa Hleihel) [1733181]
-- [netdrv] net/mlx5: E-Switch, Properly refer to host PF vport as other vport (Alaa Hleihel) [1733181]
-
-* Mon Sep 21 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.2.1.el7]
-- [edac] EDAC/i10nm: Update driver to support different bus number config register offsets (Aristeu Rozanski) [1840276]
-- [edac] EDAC, {skx, i10nm}: Make some configurations CPU model specific (Aristeu Rozanski) [1840276]
-- [net] test nouarg before dereferencing zerocopy pointers (Patrick Talbert) [1862273]
-- [net] packet: copy user buffers before orphan or clone (Patrick Talbert) [1862273]
-- [netdrv] net/mlx5e: Fix deallocation of non-fully init encap entries (Alaa Hleihel) [1874101]
-- [netdrv] net/mlx5e: Allow concurrent creation of encap entries (Alaa Hleihel) [1874101]
-- [netdrv] net/mlx5e: Protect encap hash table with mutex (Alaa Hleihel) [1874101]
-
-* Fri Sep 04 2020 Augusto Caringi <acaringi@redhat.com> [3.10.0-1160.1.1.el7]
-- [net] netfilter: conntrack: allow sctp hearbeat after connection re-use (Florian Westphal) [1869751]
-- [scsi] scsi: ses: don't ask for diagnostic pages repeatedly during probe (Maurizio Lombardi) [1855324]
-
-* Tue Aug 18 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1160.el7]
-- [kernel] modsign: Add nomokvarconfig kernel parameter (Lenny Szubowicz) [1867857]
-- [firmware] modsign: Add support for loading certs from the EFI MOK config table (Lenny Szubowicz) [1867857]
-- [kernel] modsign: Move import of MokListRT certs to separate routine (Lenny Szubowicz) [1867857]
-- [kernel] modsign: Avoid spurious error message after last MokListRTn (Lenny Szubowicz) [1867857]
-
-* Thu Aug 06 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1159.el7]
-- [kernel] modsign: Import certificates from optional MokListRT (Lenny Szubowicz) [1862840]
-- [crypto] crypto/pefile: Support multiple signatures in verify_pefile_signature (Lenny Szubowicz) [1862840]
-- [crypto] crypto/pefile: Tolerate other pefile signatures after first (Lenny Szubowicz) [1862840]
-
-* Thu Jul 16 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1158.el7]
-- [redhat] switch secureboot kernel image signing to release keys (Jan Stancek) []
-
-* Wed Jul 15 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1157.el7]
-- [fs] signal: Don't send signals to tasks that don't exist (Vladis Dronov) [1856166]
-
-* Fri Jul 10 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1156.el7]
-- [fs] gfs2: Fix regression due to unwanted gfs2_qa_put (Robert S Peterson) [1798713]
-- [include] signal: Unfairly acquire tasklist_lock in send_sigio() if irq disabled (Waiman Long) [1838799]
-- [fs] signal: Don't take tasklist_lock if PID type is PIDTYPE_PID (Waiman Long) [1838799]
-- [vfio] vfio/pci: Fix SR-IOV VF handling with MMIO blocking (Alex Williamson) [1820632] {CVE-2020-12888}
-
-* Thu Jul 09 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1155.el7]
-- [x86] Revert "x86: respect memory size limiting via mem= parameter" (Joel Savitz) [1851576]
-- [mm] Revert "mm/memory_hotplug.c: only respect mem= parameter during boot stage" (Joel Savitz) [1851576]
-- [fs] nfsd: only WARN once on unmapped errors ("J. Bruce Fields") [1850430]
-- [powerpc] pci/of: Fix OF flags parsing for 64bit BARs (Greg Kurz) [1840114]
-- [fs] cifs: fix NULL dereference in match_prepath (Leif Sahlberg) [1759852]
-
-* Thu Jul 02 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1154.el7]
-- [fs] gfs2: move privileged user check to gfs2_quota_lock_check (Robert S Peterson) [1798713]
-- [fs] gfs2: Fix problems regarding gfs2_qa_get and _put (Robert S Peterson) [1798713]
-- [fs] gfs2: don't call quota_unhold if quotas are not locked (Robert S Peterson) [1798713]
-- [fs] gfs2: Remove unnecessary gfs2_qa_{get, put} pairs (Robert S Peterson) [1798713]
-- [fs] gfs2: Split gfs2_rsqa_delete into gfs2_rs_delete and gfs2_qa_put (Robert S Peterson) [1798713]
-- [fs] gfs2: Change inode qa_data to allow multiple users (Robert S Peterson) [1798713]
-- [fs] gfs2: eliminate gfs2_rsqa_alloc in favor of gfs2_qa_alloc (Robert S Peterson) [1798713]
-- [fs] gfs2: Switch to list_{first,last}_entry (Robert S Peterson) [1798713]
-- [fs] gfs2: Clean up inode initialization and teardown (Robert S Peterson) [1798713]
-- [fs] gfs2: Minor gfs2_alloc_inode cleanup (Robert S Peterson) [1798713]
-- [fs] gfs2: Fix busy-on-umount in gfs2_atomic_open() (Andrew Price) [1812558]
-
-* Sat Jun 27 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1153.el7]
-- [x86] mm: Fix mremap not considering huge pmd devmap (Rafael Aquini) [1843437] {CVE-2020-10757}
-- [mm] mm, dax: check for pmd_none() after split_huge_pmd() (Rafael Aquini) [1843437] {CVE-2020-10757}
-- [mm] mm: mremap: streamline move_page_tables()'s move_huge_pmd() corner case (Rafael Aquini) [1843437] {CVE-2020-10757}
-- [mm] mm: mremap: validate input before taking lock (Rafael Aquini) [1843437] {CVE-2020-10757}
-- [wireless] mwifiex: Fix possible buffer overflows in mwifiex_ret_wmm_get_status() (Jarod Wilson) [1844070] {CVE-2020-12654}
-- [wireless] mwifiex: Fix possible buffer overflows in mwifiex_cmd_append_vsie_tlv() (Jarod Wilson) [1844026] {CVE-2020-12653}
-- [net] netfilter: nf_conntrack_h323: lost .data_len definition for Q.931/ipv6 (Florian Westphal) [1845428]
-
-* Fri Jun 19 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1152.el7]
-- [nvmem] nvmem: properly handle returned value nvmem_reg_read (Vladis Dronov) [1844409]
-- [mailbox] PCC: fix dereference of ERR_PTR (Vladis Dronov) [1844409]
-- [kernel] futex: Unlock hb->lock in futex_wait_requeue_pi() error path (Vladis Dronov) [1844409]
-- [fs] aio: fix inconsistent ring state (Jeff Moyer) [1845326]
-- [vfio] vfio/mdev: make create attribute static (Vladis Dronov) [1837549]
-- [vfio] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Synchronize device create/remove with parent removal (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Avoid creating sysfs remove file on stale device removal (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Improve the create/remove sequence (Vladis Dronov) [1837549]
-- [vfio] treewide: Add SPDX license identifier - Makefile/Kconfig (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Avoid inline get and put parent helpers (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Fix aborting mdev child device removal if one fails (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Follow correct remove sequence (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Avoid masking error code to EBUSY (Vladis Dronov) [1837549]
-- [include] vfio/mdev: Drop redundant extern for exported symbols (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Removed unused kref (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Avoid release parent reference during error path (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: Add iommu related member in mdev_device (Vladis Dronov) [1837549]
-- [vfio] vfio/mdev: add static modifier to add_mdev_supported_type (Vladis Dronov) [1837549]
-- [vfio] vfio: mdev: make a couple of functions and structure vfio_mdev_driver static (Vladis Dronov) [1837549]
-- [char] tpm/tpm_tis: Free IRQ if probing fails (David Arcari) [1774698]
-- [kernel] audit: fix a memleak caused by auditing load module (Richard Guy Briggs) [1843370]
-- [kernel] audit: fix potential null dereference 'context->module.name' (Richard Guy Briggs) [1843370]
-- [nvme] nvme: limit number of IO queues on Dell/Samsung config (David Milburn) [1837617]
-
-* Thu Jun 18 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1151.el7]
-- [netdrv] qede: Fix multicast mac configuration (Michal Schmidt) [1740064]
-- [scsi] sd_dif: avoid incorrect ref_tag errors on 4K devices larger than 2TB (Ewan Milne) [1833528]
-- [hid] HID: hiddev: do cleanup in failure of opening a device (Torez Smith) [1814257] {CVE-2019-19527}
-- [hid] HID: hiddev: avoid opening a disconnected device (Torez Smith) [1814257] {CVE-2019-19527}
-- [x86] x86: make mul_u64_u64_div_u64() "static inline" (Oleg Nesterov) [1845864]
-- [mm] mm: page_isolation: fix potential warning from user (Rafael Aquini) [1845620]
-- [s390] s390/mm: correct return value of pmd_pfn (Claudio Imbrenda) [1841106]
-- [fs] fs/proc/vmcore.c:mmap_vmcore: skip non-ram pages reported by hypervisors (Lianbo Jiang) [1790799]
-- [kernel] kernel/sysctl.c: ignore out-of-range taint bits introduced via kernel.tainted (Rafael Aquini) [1845356]
-- [documentation] kernel: add panic_on_taint (Rafael Aquini) [1845356]
-- [fs] ext4: Remove unwanted ext4_bread() from ext4_quota_write() (Lukas Czerner) [1845379]
-- [scsi] scsi: sg: add sg_remove_request in sg_write ("Ewan D. Milne") [1840699] {CVE-2020-12770}
-- [fs] fs/binfmt_elf.c: allocate initialized memory in fill_thread_core_info() (Donghai Qiao) [1832062] {CVE-2020-10732}
-
-* Sun Jun 14 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1150.el7]
-- [netdrv] net/mlx5e: Fix handling of compressed CQEs in case of low NAPI budget (Alaa Hleihel) [1845020]
-- [mm] memcg: fix NULL pointer dereference in __mem_cgroup_usage_unregister_event (Waiman Long) [1842715]
-- [mm] memcg: only free spare array when readers are done (Waiman Long) [1842715]
-- [powerpc] powerpc/crashkernel: Take "mem=" option into account (Pingfan Liu) [1751555]
-- [infiniband] IB/ipoib: Fix double free of skb in case of multicast traffic in CM mode (Kamal Heib) [1597952]
-- [security] selinux: properly handle multiple messages in selinux_netlink_send() (Ondrej Mosnacek) [1839650] {CVE-2020-10751}
-- [netdrv] net: ena: Add PCI shutdown handler to allow safe kexec (Bhupesh Sharma) [1841578]
-- [x86] x86/speculation: Support old struct x86_cpu_id & x86_match_cpu() kABI (Waiman Long) [1827188] {CVE-2020-0543}
-- [documentation] x86/speculation: Add Ivy Bridge to affected list (Waiman Long) [1827188] {CVE-2020-0543}
-- [documentation] x86/speculation: Add SRBDS vulnerability and mitigation documentation (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/speculation: Add Special Register Buffer Data Sampling (SRBDS) mitigation (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpu: Add 'table' argument to cpu_matches() (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpu: Add a steppings field to struct x86_cpu_id (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpu/bugs: Convert to new matching macros (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpu: Add consistent CPU match macros (Waiman Long) [1827188] {CVE-2020-0543}
-- [cpufreq] x86/devicetable: Move x86 specific macro out of generic code (Waiman Long) [1827188] {CVE-2020-0543}
-- [x86] x86/cpufeature: Fix various quality problems in the <asm/cpu_device_hd.h> header (Waiman Long) [1827188] {CVE-2020-0543}
-
-* Thu Jun 04 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1149.el7]
-- [mm] mm/memory_hotplug.c: only respect mem= parameter during boot stage (Joel Savitz) [1838795]
-- [netdrv] qed: Reduce the severity of ptp debug message (Manish Chopra) [1703770]
-- [kernel] pid_ns: Sleep in TASK_INTERRUPTIBLE in zap_pid_ns_processes (Jay Shin) [1836620]
-- [fs] gfs2: remove BUG_ON() from gfs2_log_alloc_bio() (Abhijith Das) [1828454]
-- [fs] gfs2: Even more gfs2_find_jhead fixes (Abhijith Das) [1828454]
-- [fs] quota: fix return value in dqget() (Eric Sandeen) [1842761]
-- [fs] proc_sysctl.c: fix potential page fault while unregistering sysctl table (Carlos Maiolino) [1843368]
-- [fs] ext4: fix error handling in ext4_ext_shift_extents (Lukas Czerner) [1843366]
-- [vhost] vhost: Check docket sk_family instead of call getname (Vladis Dronov) [1823302] {CVE-2020-10942}
-- [input] hyperv-keyboard - add module description (Mohammed Gamal) [1842689]
-- [hv] hv: Add a module description line to the hv_vmbus driver (Mohammed Gamal) [1842689]
-- [hid] hyperv: Add a module description line (Mohammed Gamal) [1842689]
-- [x86] sched/cputime: Improve cputime_adjust() (Oleg Nesterov) [1511040]
-- [acpi] ACPI: APEI: call into AER handling regardless of severity (Al Stone) [1737246]
-- [acpi] ACPI: APEI: handle PCIe AER errors in separate function (Al Stone) [1737246]
-- [acpi] ras: acpi/apei: cper: add support for generic data v3 structure (Al Stone) [1737246]
-- [acpi] ACPICA: ACPI 6.1: Updates for the HEST ACPI table (Al Stone) [1737246]
-- [acpi] ACPI / APEI: Switch to use new generic UUID API (Al Stone) [1737246]
-- [x86] x86/efi-bgrt: Quirk for BGRT when memory encryption active (Lenny Szubowicz) [1723477]
-- [scsi] scsi: megaraid_sas: Update driver version to 07.714.04.00-rc1 (Tomas Henzl) [1840550]
-- [scsi] scsi: megaraid_sas: TM command refire leads to controller firmware crash (Tomas Henzl) [1840550]
-- [scsi] scsi: megaraid_sas: Replace undefined MFI_BIG_ENDIAN macro with __BIG_ENDIAN_BITFIELD macro (Tomas Henzl) [1840550]
-- [scsi] scsi: megaraid_sas: Limit device queue depth to controller queue depth (Tomas Henzl) [1840550]
-- [vfio] vfio-pci: Invalidate mmaps and block MMIO access on disabled memory (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio-pci: Fault mmaps to enable vma tracking (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio/type1: Support faulting PFNMAP vmas (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio/type1: Fix VA->PA translation for PFNMAP VMAs in vaddr_get_pfn() (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio/pci: call irq_bypass_unregister_producer() before freeing irq (Alex Williamson) [1820632] {CVE-2020-12888}
-- [vfio] vfio_pci: Enable memory accesses before calling pci_map_rom (Alex Williamson) [1820632] {CVE-2020-12888}
-- [fs] signal: Extend exec_id to 64bits (Chris von Recklinghausen) [1834650] {CVE-2020-12826}
-
-* Wed Jun 03 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1148.el7]
-- [x86] hyper-v: Report crash data in die() when panic_on_oops is set (Mohammed Gamal) [1828450]
-- [hv] x86/hyper-v: Report crash register data when sysctl_record_panic_msg is not set (Mohammed Gamal) [1828450]
-- [x86] hyper-v: Report crash register data or kmsg before running crash kernel (Mohammed Gamal) [1828450]
-- [hv] x86/hyper-v: Trigger crash enlightenment only once during system crash (Mohammed Gamal) [1828450]
-- [hv] x86/hyper-v: Free hv_panic_page when fail to register kmsg dump (Mohammed Gamal) [1828450]
-- [hv] x86/hyper-v: Unload vmbus channel in hv panic callback (Mohammed Gamal) [1828450]
-- [hv] vmbus: Fix the issue with freeing up hv_ctl_table_hdr (Mohammed Gamal) [1828450]
-- [hv] vmus: Fix the check for return value from kmsg get dump buffer (Mohammed Gamal) [1828450]
-- [hv] Send one page worth of kmsg dump over Hyper-V during panic (Mohammed Gamal) [1828450]
-- [x86] kvm: x86: Allow suppressing prints on RDMSR/WRMSR of unhandled MSRs (Vitaly Kuznetsov) [1837412]
-- [fs] ext4: Fix race when checking i_size on direct i/o read (Lukas Czerner) [1506437]
-- [fs] copy_file_range should return ENOSYS not EOPNOTSUPP ("J. Bruce Fields") [1783554]
-- [fs] NFSv4.1 fix incorrect return value in copy_file_range ("J. Bruce Fields") [1783554]
-- [x86] Remove the unsupported check for Intel IceLake (Steve Best) [1841237]
-- [md] md/raid1: release pending accounting for an I/O only after write-behind is also finished (Nigel Croxon) [1792520]
-- [net] gre: fix uninit-value in __iptunnel_pull_header (Guillaume Nault) [1840321]
-- [net] inet: protect against too small mtu values. (Guillaume Nault) [1840321]
-- [net] Fix one possible memleak in ip_setup_cork (Guillaume Nault) [1840321]
-- [net] fix a potential recursive NETDEV_FEAT_CHANGE (Guillaume Nault) [1839130]
-- [net] fix null de-reference of device refcount (Guillaume Nault) [1839130]
-- [net] sch_choke: avoid potential panic in choke_reset() (Davide Caratti) [1839118]
-- [net] net_sched: fix datalen for ematch (Davide Caratti) [1839118]
-- [net] netem: fix error path for corrupted GSO frames (Davide Caratti) [1839118]
-- [net] avoid potential infinite loop in tc_ctl_action() (Davide Caratti) [1839118]
-- [net] net_sched: let qdisc_put() accept NULL pointer (Davide Caratti) [1839118]
-- [net] ipv4: really enforce backoff for redirects (Paolo Abeni) [1832332]
-- [net] ipv4: avoid mixed n_redirects and rate_tokens usage (Paolo Abeni) [1832332]
-- [net] ipv4: use a dedicated counter for icmp_v4 redirect packets (Paolo Abeni) [1832332]
-- [net] ipset: Update byte and packet counters regardless of whether they match (Phil Sutter) [1801366]
-- [net] xfrm: skip rt6i_idev update in xfrm6_dst_ifdown if loopback_idev is gone (Sabrina Dubroca) [1390049]
-
-* Sun May 31 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1147.el7]
-- [nvme] nvme: fix the parameter order for nvme_get_log in nvme_get_fw_slot_info (Gopal Tiwari) [1839991]
-- [fs] pipe: actually allow root to exceed the pipe buffer limits (Jan Stancek) [1839629]
-- [scsi] Revert "scsi: mpt3sas: Don't change the DMA coherent mask after allocations" (Tomas Henzl) [1839128]
-- [scsi] Revert "scsi: mpt3sas: Rename function name is_MSB_are_same" (Tomas Henzl) [1839128]
-- [scsi] Revert "scsi: mpt3sas: Separate out RDPQ allocation to new function" (Tomas Henzl) [1839128]
-- [scsi] Revert "scsi: mpt3sas: Handle RDPQ DMA allocation in same 4G region" (Tomas Henzl) [1839128]
-- [netdrv] net/mlx5e: Avoid duplicating rule destinations (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Extend encap entry with reference counter (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Fix free peer_flow when refcount is 0 (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Extend tc flow struct with reference counter (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Don't make internal use of errno to denote missing neigh (Alaa Hleihel) [1727593]
-- [netdrv] net/mlx5e: Fix freeing flow with kfree() and not kvfree() (Alaa Hleihel) [1727593]
-- [drm] drm/nouveau/gr/gp107, gp108: implement workaround for HW hanging during init (Karol Herbst) [1834360 1834356 1833485]
-- [drm] drm/nouveau: workaround runpm fail by disabling PCI power management on certain intel bridges (Karol Herbst) [1834360 1834356 1833485]
-
-* Thu May 28 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1146.el7]
-- [net] revert "rtnetlink: validate IFLA_MTU attribute in rtnl_create_link()" (Jiri Benc) [1839608]
-- [net] ipv6/addrconf: call ipv6_mc_up() for non-Ethernet interface (Davide Caratti) [1838936]
-- [net] ipv6: Handle missing host route in __ipv6_ifa_notify (Davide Caratti) [1838936]
-- [net] ipv6: drop incoming packets having a v4mapped source address (Davide Caratti) [1838936]
-- [net] l2tp: fix infoleak in l2tp_ip6_recvmsg() (Andrea Claudi) [1837546]
-- [net] vti6: Fix memory leak of skb if input policy check fails (Patrick Talbert) [1836160]
-- [net] tcp: prevent bogus FRTO undos with non-SACK flows (Guillaume Nault) [1694860]
-- [scsi] scsi: smartpqi: fix controller lockup observed during force reboot (Don Brace) [1775369]
-- [fs] ext4: fix setting of referenced bit in ext4_es_lookup_extent() (Lukas Czerner) [1663720]
-- [fs] ext4: introduce aging to extent status tree (Lukas Czerner) [1663720]
-- [fs] ext4: cleanup flag definitions for extent status tree (Lukas Czerner) [1663720]
-- [fs] ext4: limit number of scanned extents in status tree shrinker (Lukas Czerner) [1663720]
-- [fs] ext4: move handling of list of shrinkable inodes into extent status code (Lukas Czerner) [1663720]
-- [fs] ext4: change LRU to round-robin in extent status tree shrinker (Lukas Czerner) [1663720]
-- [fs] ext4, jbd2: ensure panic when aborting with zero errno (Lukas Czerner) [1834783]
-- [fs] jbd2: switch to use jbd2_journal_abort() when failed to submit the commit record (Lukas Czerner) [1834783]
-- [fs] jbd2: clear JBD2_ABORT flag before journal_reset to update log tail info when load journal (Lukas Czerner) [1834783]
-- [fs] ext4: fix buffer leak in ext4_xattr_move_to_block() on error path (Lukas Czerner) [1834783]
-- [fs] ext4: fix missing return values checks in ext4_cross_rename (Lukas Czerner) [1836819]
-- [fs] ext4: Fix POSIX ACL leak in ext4_xattr_set_acl (Lukas Czerner) [1543020]
-- [vfio] vfio-pci: Mask cap zero (Alex Williamson) [1838717]
-- [x86] Mark Intel Cooper Lake (CPX) supported (Steve Best) [1773681]
-- [fs] fs/bio-integrity: don't enable integrity for data-less bio (Ming Lei) [1835943]
-- [char] ipmi_si: Only schedule continuously in the thread in maintenance mode (Alexey Klimov) [1837127]
-- [kernel] wait/ptrace: assume __WALL if the child is traced (Oleg Nesterov) [1497808]
-- [mm] mm, hugetlb, soft_offline: save compound page order before page migration (Artem Savkov) [1751589]
-- [fs] fs/hugetlbfs/inode.c: fix hwpoison reserve accounting (Artem Savkov) [1751589]
-- [fs] mm: hwpoison: dissolve in-use hugepage in unrecoverable memory error (Artem Savkov) [1751589]
-- [mm] mm: soft-offline: dissolve free hugepage if soft-offlined (Artem Savkov) [1751589]
-- [mm] mm: hugetlb: soft-offline: dissolve source hugepage after successful migration (Artem Savkov) [1751589]
-- [mm] mm: hwpoison: change PageHWPoison behavior on hugetlb pages (Artem Savkov) [1751589]
-- [mm] mm: hugetlb: prevent reuse of hwpoisoned free hugepages (Artem Savkov) [1751589]
-- [netdrv] net/mlx5: Tidy up and fix reverse christmas ordring (Alaa Hleihel) [1831134]
-- [netdrv] net/mlx5: Expose port speed when possible (Alaa Hleihel) [1831134]
-- [include] net/mlx5: Expose link speed directly (Alaa Hleihel) [1831134]
-- [usb] USB: core: Fix races in character device registration and deregistraion (Torez Smith) [1785065] {CVE-2019-19537}
-- [usb] usb: cdc-acm: make sure a refcount is taken early enough (Torez Smith) [1802548] {CVE-2019-19530}
-- [usb] USB: adutux: fix use-after-free on disconnect (Torez Smith) [1798822] {CVE-2019-19523}
-- [media] media: usb:zr364xx:Fix KASAN:null-ptr-deref Read in zr364xx_vidioc_querycap (Torez Smith) [1795597] {CVE-2019-15217}
-
-* Mon May 25 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1145.el7]
-- [scsi] scsi: qla2xxx: Do not log message when reading port speed via sysfs (Ewan Milne) [1837543]
-- [mm] mm: dmapool: add/remove sysfs file outside of the pool lock lock (Waiman Long) [1836837]
-- [mm] Fix unbalanced mutex in dma_pool_create() (Waiman Long) [1836837]
-- [mm] mm/dmapool.c: remove redundant NULL check for dev in dma_pool_create() (Waiman Long) [1836837]
-- [x86] x86/speculation: Prevent deadlock on ssb_state::lock (Waiman Long) [1836322]
-- [netdrv] can, slip: Protect tty->disc_data in write_wakeup and close with RCU (John Linville) [1805590]
-- [netdrv] slcan: Port write_wakeup deadlock fix from slip (John Linville) [1805590]
-- [fs] ext4: fix support for inode sizes > 1024 bytes (Lukas Czerner) [1817634] {CVE-2019-19767}
-- [fs] ext4: add more paranoia checking in ext4_expand_extra_isize handling (Lukas Czerner) [1817634] {CVE-2019-19767}
-- [fs] ext4: forbid i_extra_isize not divisible by 4 (Lukas Czerner) [1817634] {CVE-2019-19767}
-- [fs] ext4: validate the debug_want_extra_isize mount option at parse time (Lukas Czerner) [1817634] {CVE-2019-19767}
-- [fs] cachefiles: Fix race between read_waiter and read_copier involving op->to_do (Dave Wysochanski) [1829662]
-- [fs] jbd2: Fix possible overflow in jbd2_log_space_left() (Lukas Czerner) [1626092]
-- [media] media: v4l: event: Add subscription to list before calling "add" operation (Jarod Wilson) [1828802] {CVE-2019-9458}
-- [media] media: v4l: event: Prevent freeing event subscriptions while accessed (Jarod Wilson) [1828802] {CVE-2019-9458}
-- [fs] block: Prevent hung_check firing during long sync IO (Ming Lei) [1724345]
-
-* Thu May 21 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1144.el7]
-- [crypto] crypto: user - fix memory leak in crypto_report (Vladis Dronov) [1825132] {CVE-2019-18808 CVE-2019-19062}
-- [crypto] crypto: ccp - Release all allocated memory if sha type is invalid (Vladis Dronov) [1825132] {CVE-2019-18808}
-- [net] xfrm: policy: Fix doulbe free in xfrm_policy_timer (Xin Long) [1836813]
-- [net] xfrm: add the missing verify_sec_ctx_len check in xfrm_add_acquire (Xin Long) [1836813]
-- [net] xfrm: fix uctx len check in verify_sec_ctx_len (Xin Long) [1836813]
-- [net] rtnetlink: validate IFLA_MTU attribute in rtnl_create_link() (Jiri Benc) [1835352]
-- [net] rtnetlink: ndo_dflt_fdb_dump() only work for ARPHRD_ETHER devices (Jiri Benc) [1835352]
-- [net] netlink: fix uninit-value in netlink_sendmsg (Jiri Benc) [1835352]
-- [net] netlink: make sure nladdr has correct size in netlink_connect() (Jiri Benc) [1835352]
-- [net] rtnetlink: fix info leak in RTM_GETSTATS call (Jiri Benc) [1835352]
-- [net] rtnetlink: release net refcnt on error in do_setlink() (Jiri Benc) [1835352]
-- [net] bridge: deny dev_set_mac_address() when unregistering (Hangbin Liu) [1834203]
-- [net] bridge/mdb: remove wrong use of NLM_F_MULTI (Hangbin Liu) [1834203]
-- [net] udp: disable inner UDP checksum offloads in IPsec case (Sabrina Dubroca) [1826244]
-- [net] sctp: Fix SHUTDOWN CTSN Ack in the peer restart case (Xin Long) [1833869]
-- [net] sctp: Fix bundling of SHUTDOWN with COOKIE-ACK (Xin Long) [1833869]
-- [net] sctp: fix possibly using a bad saddr with a given dst (Xin Long) [1833869]
-- [net] sctp: fix refcount bug in sctp_wfree (Xin Long) [1833869]
-- [net] sctp: move the format error check out of __sctp_sf_do_9_1_abort (Xin Long) [1833869]
-- [net] sctp: free cmd->obj.chunk for the unprocessed SCTP_CMD_REPLY (Xin Long) [1833869]
-- [net] sctp: fully initialize v4 addr in some functions (Xin Long) [1833869]
-- [net] sctp: simplify addr copy (Xin Long) [1833869]
-- [net] sctp: cache netns in sctp_ep_common (Xin Long) [1833869]
-- [net] sctp: destroy bucket if failed to bind addr (Xin Long) [1833869]
-- [net] sctp: Fix the link time qualifier of 'sctp_ctrlsock_exit()' (Xin Long) [1833869]
-- [net] netfilter: nat: never update the UDP checksum when it's 0 (Guillaume Nault) [1834278]
-- [net] esp4: add length check for UDP encapsulation (Sabrina Dubroca) [1825155]
-- [net] sit: fix memory leak in sit_init_net() (Andrea Claudi) [1830011] {CVE-2019-16994}
-- [net] sched: cbs: fix NULL dereference in case cbs_init() fails (Davide Caratti) [1830245]
-- [net] netfilter: nf_tables: use-after-free in dynamic operations (Phil Sutter) [1819087]
-- [net] tcp: tcp_v4_err() should be more careful (Marcelo Leitner) [1749964]
-- [net] tcp: remove BUG_ON from tcp_v4_err (Marcelo Leitner) [1749964]
-- [net] tcp: clear icsk_backoff in tcp_write_queue_purge() (Marcelo Leitner) [1749964]
-- [net] psample: fix skb_over_panic (Sabrina Dubroca) [1823251]
-- [net] sched: ensure opts_len <= IP_TUNNEL_OPTS_MAX in act_tunnel_key (Patrick Talbert) [1823691]
-- [netdrv] fjes: Handle workqueue allocation failure (Masayoshi Mizuma) [1830563] {CVE-2019-16231}
-
-* Tue May 19 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1143.el7]
-- [mm] mm: mempolicy: require at least one nodeid for MPOL_PREFERRED (Rafael Aquini) [1834434] {CVE-2020-11565}
-- [fs] fs: avoid softlockups in s_inodes iterators (Jay Shin) [1760145]
-- [scsi] scsi: core: Add DID_ALLOC_FAILURE and DID_MEDIUM_ERROR to hostbyte_table (Maurizio Lombardi) [1832019]
-- [fs] locks: allow filesystems to request that ->setlease be called without i_lock (Jeff Layton) [1830606]
-- [fs] locks: move fasync setup into generic_add_lease (Jeff Layton) [1830606]
-- [fs] revert "[fs] xfs: catch bad stripe alignment configurations" (Carlos Maiolino) [1836292]
-- [scsi] scsi: scsi_debug: num_tgts must be >= 0 (Ewan Milne) [1834998]
-- [scsi] scsi: scsi_debug: Avoid PI being disabled when TPGS is enabled (Ewan Milne) [1834998]
-- [scsi] scsi: scsi_debug: Fix memory leak if LBP enabled and module is unloaded (Ewan Milne) [1834998]
-- [scsi] scsi_debug: check for bigger value first (Ewan Milne) [1834998]
-- [scsi] scsi_debug: vfree is null safe so drop the check (Ewan Milne) [1834998]
-- [scsi] scsi_debug: error message should say scsi_host_alloc not scsi_register (Ewan Milne) [1834998]
-- [fs] xfs: Fix tail rounding in xfs_alloc_file_space() (Bill O'Donnell) [1833223]
-- [fs] ceph: don't drop message if it contains more data than expected (Jeff Layton) [1828340]
-- [fs] ceph: don't error out on larger-than-expected session messages (Jeff Layton) [1828340]
-- [acpi] ACPI: disable BERT by default, add parameter to enable it (Aristeu Rozanski) [1525298]
-- [acpi] ACPI: APEI: Fix possible out-of-bounds access to BERT region (Aristeu Rozanski) [1525298]
-- [acpi] ACPI / sysfs: Extend ACPI sysfs to provide access to boot error region (Aristeu Rozanski) [1525298]
-- [acpi] ACPI: APEI: Fix BERT resources conflict with ACPI NVS area (Aristeu Rozanski) [1525298]
-- [acpi] ACPI / APEI: Add Boot Error Record Table (BERT) support (Aristeu Rozanski) [1525298]
-- [acpi] ACPICA: Restore error table definitions to reduce code differences between Linux and ACPICA upstream (Aristeu Rozanski) [1525298]
-
-* Sat May 16 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1142.el7]
-- [fs] gfs2: Another gfs2_walk_metadata fix (Andreas Grunbacher) [1822230]
-- [fs] ext4: prevent ext4_quota_write() from failing due to ENOSPC (Lukas Czerner) [1068952]
-- [fs] ext4: do not zeroout extents beyond i_disksize (Lukas Czerner) [1834320]
-- [fs] pnfs: Ensure we layoutcommit before revalidating attributes (Benjamin Coddington) [1827647]
-- [fs] nfs: flush data when locking a file to ensure cache coherence for mmap (Scott Mayhew) [1813811]
-- [fs] call fsnotify_sb_delete after evict_inodes (Jay Shin) [1760145]
-- [fs] inode: don't softlockup when evicting inodes (Jay Shin) [1760145]
-- [fs] drop_caches.c: avoid softlockups in drop_pagecache_sb() (Jay Shin) [1760145]
-- [fs] gfs2: More gfs2_find_jhead fixes (Abhijith Das) [1828454]
-- [fs] gfs2: Another gfs2_find_jhead fix (Abhijith Das) [1828454]
-- [fs] nfs: fix mount/umount race in nlmclnt (Jay Shin) [1771205]
-- [fs] nlm_shutdown_hosts_net() cleanup (Jay Shin) [1771205]
-- [scsi] scsi: megaraid: Use true, false for bool variables (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid: make two symbols static in megaraid_sas_base.c (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid: make some symbols static in megaraid_sas_fusion.c (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid: make some symbols static in megaraid_sas_fp.c (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Use scnprintf() for avoiding potential buffer overflow (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: silence a warning (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: fix indentation issue (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Limit the number of retries for the IOCTLs causing firmware fault (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Do not initiate OCR if controller is not in ready state (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Re-Define enum DCMD_RETURN_STATUS (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Do not set HBA Operational if FW is not in operational state (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Do not kill HBA if JBOD Seqence map or RAID map is disabled (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Do not kill host bus adapter, if adapter is already dead (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Update optimal queue depth for SAS and NVMe devices (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Reset adapter if FW is not in READY state after device resume (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Make poll_aen_lock static (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Fix a compilation warning (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Make a bunch of functions static (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Make some functions static (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: remove unused variables 'debugBlk', 'fusion' (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: Unique names for MSI-X vectors (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: fix panic on loading firmware crashdump (Tomas Henzl) [1827037]
-- [scsi] scsi: megaraid_sas: fix spelling mistake "megarid_sas" -> "megaraid_sas" (Tomas Henzl) [1827037]
-- [scsi] scsi: mpt3sas: Disable DIF when prot_mask set to zero (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Handle RDPQ DMA allocation in same 4G region (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Separate out RDPQ allocation to new function (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Rename function name is_MSB_are_same (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Don't change the DMA coherent mask after allocations (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Fix kernel panic observed on soft HBA unplug (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Fix double free in attach error handling (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Use Component img header to get Package ver (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Fix module parameter max_msix_vectors (Tomas Henzl) [1832868]
-- [scsi] scsi: mpt3sas: Reject NVMe Encap cmnds to unsupported HBA (Tomas Henzl) [1832868]
-- [netdrv] hv_netvsc: Fix error handling in netvsc_set_features() (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Sync offloading features to VF NIC (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Fix IP header checksum for coalesced packets (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Fix rndis_per_packet_info internal field initialization (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Add handler for LRO setting change (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Add support for LRO/RSC in the vSwitch (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Add handlers for ethtool get/set msg level (Mohammed Gamal) [1821814]
-- [netdrv] hv_netvsc: Fix the variable sizes in ipsecv2 and rsc offload (Mohammed Gamal) [1821814]
-- [fs] fix mntput/mntput race (Miklos Szeredi) [1828320]
-- [wireless] rtlwifi: prevent memory leak in rtl_usb_probe (Jarod Wilson) [1829847] {CVE-2019-19063}
-- [wireless] iwlwifi: dbg_ini: fix memory leak in alloc_sgtable (Jarod Wilson) [1829375] {CVE-2019-19058}
-- [net] nl80211: fix memory leak in nl80211_get_ftm_responder_stats (Jarod Wilson) [1829289] {CVE-2019-19055}
-- [wireless] iwlwifi: pcie: fix memory leaks in iwl_pcie_ctxt_info_gen3_init (Jarod Wilson) [1829393] {CVE-2019-19059}
-
-* Tue May 12 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1141.el7]
-- [kernel] sched/fair: Scale bandwidth quota and period without losing quota/period ratio precision (Artem Savkov) [1752067]
-- [edac] EDAC: skx_common: downgrade message importance on missing PCI device (Aristeu Rozanski) [1832683]
-- [s390] s390/qdio: consider ERROR buffers for inbound-full condition (Philipp Rudo) [1831791]
-- [s390] s390/ftrace: fix potential crashes when switching tracers (Philipp Rudo) [1813124]
-- [netdrv] ibmvnic: Skip fatal error reset after passive init (Steve Best) [1830992]
-- [scsi] smartpqi: bump driver version (Don Brace) [1822762]
-- [scsi] scsi: smartpqi: add bay identifier (Don Brace) [1822762]
-- [scsi] scsi: smartpqi: add module param to hide vsep (Don Brace) [1822762]
-- [scsi] scsi: bnx2fc: Update the driver version to 2.12.13 (Nilesh Javali) [1709542]
-- [scsi] scsi: bnx2fc: fix boolreturn.cocci warnings (Nilesh Javali) [1709542]
-- [scsi] scsi: bnx2fc: Fix SCSI command completion after cleanup is posted (Nilesh Javali) [1709542]
-- [scsi] scsi: bnx2fc: Process the RQE with CQE in interrupt context (Nilesh Javali) [1709542]
-- [scsi] scsi: qla2xxx: Fix a recently introduced kernel warning (Nilesh Javali) [1828875]
-- [scsi] Fix abort timeouts in CQ Full conditions (Dick Kennedy) [1802654]
-- [input] Input: add safety guards to input_set_keycode() (Chris von Recklinghausen) [1828222] {CVE-2019-20636}
-- [scsi] scsi: libsas: delete sas port if expander discover failed (Tomas Henzl) [1829965] {CVE-2019-15807}
-- [net] netlabel: cope with NULL catmap (Paolo Abeni) [1827240] {CVE-2020-10711}
-
-* Thu May 07 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1140.el7]
-- [netdrv] mlx5: Remove unsupported tag for ConnectX-6 Dx device (Alaa Hleihel) [1829777]
-- [fs] xfs: clear PF_MEMALLOC before exiting xfsaild thread (Brian Foster) [1827910]
-- [fs] gfs2: fix O_EXCL|O_CREAT handling on cold dcache (Andrew Price) [1812558]
-- [fs] nfs: Correct an nfs page array calculation error (Jay Shin) [1824270]
-- [infiniband] RDMA/bnxt_re: Fix stat push into dma buffer on gen p5 devices (Jonathan Toppins) [1828475 1824438]
-- [netdrv] bnxt_en: Fix allocation of zero statistics block size regression (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Allocate the larger per-ring statistics block for 57500 chips (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Expand bnxt_tpa_info struct to support 57500 chips (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Refactor TPA logic (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Add TPA structure definitions for BCM57500 chips (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.89 (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Update firmware interface to 1.10.0.69 (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.47 (Jonathan Toppins) [1824438]
-- [netdrv] bnxt_en: Refactor ethtool ring statistics logic (Jonathan Toppins) [1824438]
-- [block] blk-mq: Put driver tag in blk_mq_dispatch_rq_list() when no budget (Ming Lei) [1825431]
-- [scsi] scsi: fnic: do not queue commands during fwreset (Govindarajulu Varadarajan) [1794150]
-- [scsi] scsi: fnic: fix invalid stack access (Govindarajulu Varadarajan) [1794150]
-- [scsi] scsi: fnic: fix use after free (Govindarajulu Varadarajan) [1794150]
-- [netdrv] enic: prevent waking up stopped tx queues over watchdog reset (Govindarajulu Varadarajan) [1794148]
-- [fs] ceph: use ceph_evict_inode to cleanup inode's resource (Jeff Layton) [1784016]
-- [fs] ceph: fix use-after-free in __ceph_remove_cap() (Jeff Layton) [1784016]
-- [fs] ceph: hold i_ceph_lock when removing caps for freeing inode (Jeff Layton) [1784016]
-- [input] Input: ff-memless - kill timer in destroy() (Chris von Recklinghausen) [1815021] {CVE-2019-19524}
-- [scsi] scsi: qla2xxx: fix a potential NULL pointer dereference ("Ewan D. Milne") [1829246] {CVE-2019-16233}
-
-* Tue May 05 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1139.el7]
-- [fs] nfsd: Fix races between nfsd4_cb_release() and nfsd4_shutdown_callback() ("J. Bruce Fields") [1448750]
-- [fs] nfsd: minor 4.1 callback cleanup ("J. Bruce Fields") [1448750]
-- [fs] nfsd: Don't release the callback slot unless it was actually held (Benjamin Coddington) [1448750]
-- [lib] kobject: don't use WARN for registration failures (Ewan Milne) [1756495]
-- [lib] lib/kobject: Join string literals back (Ewan Milne) [1756495]
-- [scsi] scsi: ibmvfc: Don't send implicit logouts prior to NPIV login (Steve Best) [1828726]
-- [fs] nfs: Serialize O_DIRECT reads and writes (Benjamin Coddington) [1826571]
-- [mm] mm/page_owner: convert page_owner_inited to static key (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: set correct gfp_mask on page_owner (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: fix possible access violation (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: use late_initcall to hook in enabling (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: remove unnecessary stack_trace field (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: correct owner information for early allocated pages (Rafael Aquini) [1781726]
-- [mm] mm/page_owner: keep track of page owners (Rafael Aquini) [1781726]
-- [documentation] Documentation: add new page_owner document (Rafael Aquini) [1781726]
-- [kernel] stacktrace: introduce snprint_stack_trace for buffer output (Rafael Aquini) [1781726]
-
-* Thu Apr 30 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1138.el7]
-- [infiniband] RDMA/bnxt_re: Fix chip number validation Broadcom's Gen P5 series (Jonathan Toppins) [1823679]
-- [scsi] scsi: qla2xxx: Silence fwdump template message (Ewan Milne) [1783191]
-- [scsi] scsi: hpsa: Update driver version (Joseph Szczypek) [1808403]
-- [scsi] scsi: hpsa: correct race condition in offload enabled (Joseph Szczypek) [1808403]
-- [netdrv] bonding: fix active-backup transition after link failure (Jarod Wilson) [1712235]
-- [netdrv] bonding: fix state transition issue in link monitoring (Jarod Wilson) [1712235]
-- [netdrv] bonding: fix potential NULL deref in bond_update_slave_arr (Jarod Wilson) [1712235]
-- [netdrv] bonding: Force slave speed check after link state recovery for 802.3ad (Jarod Wilson) [1712235]
-- [i2c] i2c: core-smbus: prevent stack corruption on read I2C_BLOCK_DATA (Vladis Dronov) [1822641] {CVE-2017-18551}
-- [acpi] ACPI / EC: Ensure lock is acquired before accessing ec struct (Al Stone) [1811132]
-- [x86] x86/mce: Do not log spurious corrected mce errors (Prarit Bhargava) [1797205]
-- [wireless] mwifiex: Fix mem leak in mwifiex_tm_cmd (Jarod Wilson) [1804971] {CVE-2019-20095}
-- [kernel] kernel/module.c: wakeup processes in module_wq on module unload (Prarit Bhargava) [1771939]
-- [acpi] ACPICA: acpi: acpica: fix acpi operand cache leak in nseval.c (Prarit Bhargava) [1790782]
-
-* Mon Apr 27 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1137.el7]
-- [tty] tty/hvc: Use IRQF_SHARED for OPAL hvc consoles (Gustavo Duarte) [1600213]
-- [mm] mm/swap_slots.c: fix race conditions in swap_slots cache init (Rafael Aquini)
-- [block] loop: set PF_MEMALLOC_NOIO for the worker thread (Ming Lei) [1825950]
-- [tty] serial: 8250: drop the printk from serial8250_interrupt() (Prarit Bhargava) [1825049]
-- [net] net: linkwatch: add check for netdevice being present to linkwatch_do_dev (Alaa Hleihel) [1595302]
-
-* Fri Apr 17 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1136.el7]
-- [fs] sunrpc: expiry_time should be seconds not timeval (Benjamin Coddington) [1794055]
-- [nvdimm] Revert "driver boilerplate changes to properly manage device_rh" (Christoph von Recklinghausen) [1823750]
-- [base] call device_rh_free in device_release before driver/class/type release is called (Christoph von Recklinghausen) [1822888]
-- [md] md:md-faulty kernel panic is caused by QUEUE_FLAG_NO_SG_MERGE (Nigel Croxon) [1822462]
-- [firmware] efi: cper: print AER info of PCIe fatal error (Vladis Dronov) [1820646]
-- [scsi] qla2xxx: Update driver version to 10.01.00.22.07.9-k (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix message indicating vectors used by driver (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Move free of fcport out of interrupt context (Nilesh Javali) [1808129]
-- [scsi] qla2xxx: delete all sessions before unregister local nvme port (Nilesh Javali) [1808129]
-- [scsi] qla2xxx: Fix hang when issuing nvme disconnect-all in NPIV (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix a NULL pointer dereference in an error path (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix mtcp dump collection failure (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix RIDA Format-2 (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix stuck login session using prli_pend_timer (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Add a shadow variable to hold disc_state history of fcport (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Use common routine to free fcport struct (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix update_fcport for current_topology (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix fabric scan hang (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Complain if sp->done() is not called from the completion path (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Ignore PORT UPDATE after N2N PLOGI (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Change discovery state before PLOGI (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Initialize free_work before flushing it (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Retry fabric Scan on IOCB queue full (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: initialize fc4_type_priority (Nilesh Javali) [1808129]
-- [scsi] scsi: qla2xxx: Fix a dma_pool_free() call (Nilesh Javali) [1808129]
-- [security] selinux: ensure we cleanup the internal AVC counters on error in avc_insert() (Artem Savkov) [1808675]
-- [acpi] ACPICA: Mark acpi_ut_create_internal_object_dbg() memory allocations as non-leaks (Artem Savkov) [1808675]
-- [x86] x86/microcode/AMD: Free unneeded patch before exit from update_cache() (Artem Savkov) [1808675]
-- [mm] memcg: ensure mem_cgroup_idr is updated in a coordinated manner (Aaron Tomlin) [1822405]
-- [mm] mm/page_alloc: increase default min_free_kbytes bound (Joel Savitz) [1704326]
-- [scsi] scsi: lpfc: Fix unexpected error messages during RSCN handling (Dick Kennedy) [1743667]
-- [scsi] scsi: lpfc: Fix discovery failures when target device connectivity bounces (Dick Kennedy) [1743667]
-- [scsi] scsi: lpfc: Fix devices that don't return after devloss followed by rediscovery (Dick Kennedy) [1743667]
-- [scsi] scsi: lpfc: Fix port relogin failure due to GID_FT interaction (Dick Kennedy) [1743667]
-- [video] vgacon: Fix a UAF in vgacon_invert_region (Vladis Dronov) [1818730] {CVE-2020-8647 CVE-2020-8649}
-- [x86] uprobes/x86: Fix detection of 32-bit user mode (Oleg Nesterov) [1804959]
-- [powerpc] module: Handle R_PPC64_ENTRY relocations (Yauheni Kaliuta) [1657540]
-- [scripts] recordmcount.pl: support data in text section on powerpc (Yauheni Kaliuta) [1657540]
-- [powerpc] boot: Request no dynamic linker for boot wrapper (Yauheni Kaliuta) [1657540]
-
-* Wed Apr 15 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1135.el7]
-- [fs] fscache: Fix race in fscache_op_complete() due to split atomic_sub & read (Dave Wysochanski) [1683490]
-- [fs] fscache: Pass the correct cancelled indications to fscache_op_complete() (Dave Wysochanski) [1683490]
-- [char] tpm: ibmvtpm: Wait for buffer to be set before proceeding (Jerry Snitselaar) [1815536]
-- [fs] NFS: Fix a race between mmap() and O_DIRECT (Benjamin Coddington) [1813803]
-- [fs] NFS: Remove a redundant call to unmap_mapping_range() (Benjamin Coddington) [1813803]
-- [fs] NFS: Remove redundant waits for O_DIRECT in fsync() and write_begin() (Benjamin Coddington) [1813803]
-- [fs] NFS: Cleanup nfs_direct_complete() (Benjamin Coddington) [1813803]
-- [fs] NFS: Do not serialise O_DIRECT reads and writes (Benjamin Coddington) [1813803]
-- [fs] NFS: Move buffered I/O locking into nfs_file_write() (Benjamin Coddington) [1813803]
-- [fs] bdi: make inode_to_bdi() inline (Benjamin Coddington) [1813803]
-- [fs] NFS: Remove racy size manipulations in O_DIRECT (Benjamin Coddington) [1813803]
-- [fs] NFS: Don't hold the inode lock across fsync() (Benjamin Coddington) [1813803]
-- [fs] nfs: remove nfs_inode_dio_wait (Benjamin Coddington) [1813803]
-- [fs] nfs: remove nfs4_file_fsync (Benjamin Coddington) [1813803]
-- [fs] NFS: Kill NFS_INO_NFS_INO_FLUSHING: it is a performance killer (Benjamin Coddington) [1813803]
-- [fs] filesystem-dax: Fix dax_layout_busy_page() livelock (Carlos Maiolino) [1817866]
-- [block] blk-mq: fix hang caused by freeze/unfreeze sequence (Ming Lei) [1821718]
-- [fs] ceph: don't NULL terminate virtual xattrs (Jeff Layton) [1717454]
-- [fs] ceph: return -ERANGE if virtual xattr value didn't fit in buffer (Jeff Layton) [1717454]
-- [fs] ceph: make getxattr_cb return ssize_t (Jeff Layton) [1717454]
-- [fs] ceph: use bit flags to define vxattr attributes (Jeff Layton) [1717454]
-- [tty] tty: Prevent ldisc drivers from re-using stale tty fields (Vladis Dronov) [1820031]
-- [powerpc] powerpc64/kexec: Hard disable ftrace before switching to the new kernel (Jerome Marchand) [1731578]
-- [powerpc] powerpc64/ftrace: Delay enabling ftrace on secondary cpus (Jerome Marchand) [1731578]
-- [powerpc] powerpc64/ftrace: Add helpers to hard disable ftrace (Jerome Marchand) [1731578]
-- [powerpc] powerpc64/ftrace: Rearrange #ifdef sections in ftrace.h (Jerome Marchand) [1731578]
-- [powerpc] powerpc64/ftrace: Add a field in paca to disable ftrace in unsafe code paths (Jerome Marchand) [1731578]
-- [powerpc] powerpc/ftrace: Pass the correct stack pointer for DYNAMIC_FTRACE_WITH_REGS (Jerome Marchand) [1731578]
-- [isdn] mISDN: enforce CAP_NET_RAW for raw sockets (Andrea Claudi) [1779474] {CVE-2019-17055}
-- [virtio] virtio-balloon: fix managed page counts when migrating pages between zones (David Hildenbrand) [1780330]
-
-* Thu Apr 09 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1134.el7]
-- [net] netfilter: nf_log: fix uninit read in nf_log_proc_dostring (Phil Sutter) [1770232]
-- [net] netfilter: nf_log: fix error on write NONE to logger choice sysctl (Phil Sutter) [1770232]
-- [net] ethtool: convert large order kmalloc allocations to vzalloc (Davide Caratti) [1786448]
-- [net] l2tp: Allow duplicate session creation with UDP (Guillaume Nault) [1808928]
-- [net] sched: flower: insert new filter to idr after setting its mask (Davide Caratti) [1785141]
-- [net] ipv6: remove printk (Hangbin Liu) [1779533]
-- [net] netfilter: ctnetlink: netns exit must wait for callbacks (Florian Westphal) [1766816]
-- [net] raw: do not report ICMP redirects to user space (Hangbin Liu) [1758386]
-
-* Fri Apr 03 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1133.el7]
-- [powerpc] powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() (Steve Best) [1806629] {CVE-2019-12614}
-- [s390] s390/pci: Recover handle in clp_set_pci_fn() (Philipp Rudo) [1816662]
-- [fs] xfs: fix attr leaf header freemap.size underflow (Bill O'Donnell) [1808671]
-- [block] floppy: check FDC index for errors before assigning it (Ming Lei) [1815403] {CVE-2020-9383}
-- [block] virtio-blk: improve virtqueue error to BLK_STS (Philipp Rudo) [1818001]
-- [block] virtio-blk: fix hw_queue stopped on arbitrary error (Philipp Rudo) [1818001]
-- [s390] dasd: fix endless loop after read unit address configuration (Philipp Rudo) [1816661]
-- [fs] CIFS: Fix NULL-pointer dereference in smb2_push_mandatory_locks (Leif Sahlberg) [1504193]
-- [fs] cifs: Fix cifsInodeInfo lock_sem deadlock when reconnect occurs (Leif Sahlberg) [1504193]
-- [char] ipmi: Fix memory leak in __ipmi_bmc_register (Tony Camuso) [1812836] {CVE-2019-19046}
-- [net] ipvs: Remove noisy debug print from ip_vs_del_service (Alexey Klimov) [1769816]
-
-* Fri Mar 27 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1132.el7]
-- [tools] tools/power turbostat: Support Ice Lake server (Steve Best) [1776508]
-- [nvme] nvme-fc: ensure association_id is cleared regardless of a Disconnect LS (Ewan Milne) [1816752]
-- [nvme] nvme-fc: clarify error messages (Ewan Milne) [1816752]
-- [nvme] nvme-fc: fix module unloads while lports still pending (Ewan Milne) [1816752]
-- [scsi] scsi: sd: Clear sdkp->protection_type if disk is reformatted without PI (Ewan Milne) [1816307]
-- [scsi] scsi: core: Fix a compiler warning triggered by the SCSI logging code (Ewan Milne) [1816307]
-- [scsi] scsi: tracing: Fix handling of TRANSFER LENGTH == 0 for READ(6) and WRITE(6) (Ewan Milne) [1816307]
-- [scsi] scsi: core: scsi_trace: Use get_unaligned_be*() (Ewan Milne) [1816307]
-- [scsi] scsi: core: try to get module before removing device (Ewan Milne) [1816307]
-- [scsi] scsi: scsi_dh_alua: handle RTPG sense code correctly during state transitions (Ewan Milne) [1816307]
-- [scsi] scsi: device_handler: remove VLAs (Ewan Milne) [1816307]
-- [scsi] scsi: scsi_dh: Document alua_rtpg_queue() arguments (Ewan Milne) [1816307]
-- [scsi] scsi: scsi_dh_alua: skip RTPG for devices only supporting active/optimized (Ewan Milne) [1816307]
-- [scsi] scsi: scsi_dh_emc: return success in clariion_std_inquiry() (Ewan Milne) [1816307]
-- [target] scsi: target: iscsi: rename some variables to avoid confusion (Maurizio Lombardi) [1806966]
-- [target] scsi: target: iscsi: tie the challenge length to the hash digest size (Maurizio Lombardi) [1806966]
-- [target] scsi: target: iscsi: CHAP: add support for SHA1, SHA256 and SHA3-256 (Maurizio Lombardi) [1806966]
-- [target] scsi: target: compare full CHAP_A Algorithm strings (Maurizio Lombardi) [1806966]
-- [base] device_release() can call device_rh_free() too (Christoph von Recklinghausen) [1793248]
-- [nvdimm] driver boilerplate changes to properly manage device_rh (Christoph von Recklinghausen) [1793248]
-- [base] Add an interface for certain drivers who manage their own struct device's to disassociate their device_rh's (Christoph von Recklinghausen) [1793248]
-- [base] kfree(dev->device_rh) in device_create_release() (Christoph von Recklinghausen) [1793248]
-- [base] kfree and zero device_rh in device_release() (Christoph von Recklinghausen) [1793248]
-- [input] Revert "Fix device_rh memory leak" (Christoph von Recklinghausen) [1793248]
-- [scsi] Revert "Fix device_rh leak in scsi_alloc_target()" (Christoph von Recklinghausen) [1793248]
-- [scsi] Revert "Fix memory leaks in scsi_alloc_sdev()" (Christoph von Recklinghausen) [1793248]
-- [nvdimm] libnvdimm/security: Consolidate 'security' operations (Jeff Moyer) [1735364]
-- [nvdimm] libnvdimm/security: Tighten scope of nvdimm->busy vs security operations (Jeff Moyer) [1735364]
-- [nvdimm] libnvdimm/security: Introduce a 'frozen' attribute (Jeff Moyer) [1735364]
-- [acpi] libnvdimm/security, acpi/nfit: unify zero-key for all security commands (Jeff Moyer) [1735364]
-- [nvdimm] libnvdimm/security: provide fix for secure-erase to use zero-key (Jeff Moyer) [1735364]
-- [block] block: fix checking return value of blk_mq_init_queue (Maxim Levitsky) [1795777]
-- [bluetooth] Bluetooth: hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in hci_uart_set_proto() (Aristeu Rozanski) [1808803] {CVE-2019-15917}
-
-* Wed Mar 25 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1131.el7]
-- [x86] kvm: x86: clear stale x86_emulate_ctxt->intercept value (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: vmx: check descriptor table exits on instruction emulation (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: nvmx: Check IO instruction VM-exit conditions (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: nvmx: Refactor IO bitmap checks into helper function (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: nvmx: Don't emulate instructions in guest mode (Jon Maloy) [1806818] {CVE-2020-2732}
-- [x86] kvm: x86: Fix kvm_bitmap_or_dest_vcpus() to use irq shorthand (Nitesh Narayan Lal) [1772082]
-- [x86] kvm: x86: Initializing all kvm_lapic_irq fields in ioapic_write_indirect (Nitesh Narayan Lal) [1772082]
-- [virt] kvm: x86: remove set but not used variable 'called' (Nitesh Narayan Lal) [1772082]
-- [x86] kvm: x86: Zero the IOAPIC scan request dest vCPUs bitmap (Nitesh Narayan Lal) [1772082]
-- [x86] kvm: x86: deliver KVM IOAPIC scan request to target vCPUs (Nitesh Narayan Lal) [1772082]
-- [kernel] kvm: remember position in kvm->vcpus array (Nitesh Narayan Lal) [1772082]
-- [x86] kvm: x86: Drop KVM_APIC_SHORT_MASK and KVM_APIC_DEST_MASK (Nitesh Narayan Lal) [1772082]
-- [virt] kvm: introduce kvm_make_vcpus_request_mask() API (Nitesh Narayan Lal) [1772082]
-- [virt] kvm: avoid unused variable warning for UP builds (Nitesh Narayan Lal) [1772082]
-- [kernel] smp, cpumask: Use non-atomic cpumask_{set, clear}_cpu() (Nitesh Narayan Lal) [1772082]
-- [fs] nfs: change sign of nfs_fh length ("J. Bruce Fields") [1813326]
-- [netdrv] ibmvnic: Do not process device remove during device reset (Steve Best) [1813903]
-- [x86] x86/debug: Extend the lower bound of crash kernel low reservations (Pingfan Liu) [1811511]
-- [net] tcp: make tcp_space() aware of socket backlog (Guillaume Nault) [1790840]
-- [net] ipv6_stub: use ip6_dst_lookup_flow instead of ip6_dst_lookup (Sabrina Dubroca) [1774447] {CVE-2020-1749}
-- [net] ipv6: add net argument to ip6_dst_lookup_flow (Sabrina Dubroca) [1774447] {CVE-2020-1749}
-- [net] ipv6: constify ip6_dst_lookup_{flow|tail}() sock arguments (Sabrina Dubroca) [1774447] {CVE-2020-1749}
-- [net] macvlan: return correct error value (Matteo Croce) [1654878]
-- [net] ieee802154: enforce CAP_NET_RAW for raw sockets (Andrea Claudi) [1779494] {CVE-2019-17053}
-- [net] ipv4: fix fnhe usage by non-cached routes (Hangbin Liu) [1788435]
-- [net] route: do not cache fib route info on local routes with oif (Hangbin Liu) [1788435]
-- [net] ip6_tunnel: fix potential NULL pointer dereference (Hangbin Liu) [1767045]
-- [net] net_sched: remove a bogus warning in hfsc (Davide Caratti) [1781323]
-- [netdrv] net/mlx5e: allow TSO on VXLAN over VLAN topologies (Davide Caratti) [1780646]
-
-* Thu Mar 19 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1130.el7]
-- [scsi] scsi: avoid repetitive logging of device offline messages (Nilesh Javali) [1798042]
-- [scsi] qla2xxx: Fix I/Os being passed down when FC device is being deleted (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Fix unbound sleep in fcport delete path (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Fix hang in fcport delete path (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Fix stuck session in GNL (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Correct fcport flags handling (Nilesh Javali) [1798042]
-- [scsi] scsi: qla2xxx: Remove defer flag to indicate immeadiate port loss (Nilesh Javali) [1798042]
-- [scsi] iscsi: Avoid potential deadlock in iscsi_if_rx func (Oleksandr Natalenko) [1715986]
-- [netdrv] hv/netvsc: Fix NULL dereference at single queue mode fallback (Mohammed Gamal) [1806488]
-- [netdrv] hv/netvsc: fix handling of fallback to single queue mode (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix unwanted rx_table reset (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix tx_table init in rndis_set_subchannel() (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: fix typos in code comments (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix a deadlock by getting rtnl lock earlier in netvsc_probe() (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix hash key value reset after other ops (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Refactor assignments of struct netvsc_device_info (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: split sub-channel setup into async and sync (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix send_table offset in case of a host bug (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Add NetVSP v6 and v6.1 into version negotiation (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: Fix offset usage in netvsc_send_table() (Mohammed Gamal) [1806488]
-- [netdrv] hv_netvsc: simplify receive side calling arguments (Mohammed Gamal) [1806488]
-- [scsi] scsi: ibmvfc: Fix NULL return compiler warning (Steve Best) [1810643]
-- [scsi] scsi: ibmvfc: Avoid loss of all paths during SVC node reboot (Steve Best) [1810643]
-- [s390] s390/vdso: add vdso support for coarse clocks (Philipp Rudo) [1791822]
-- [s390] s390/vdso: remove NULL pointer check from clock_gettime (Philipp Rudo) [1791822]
-- [s390] scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host (Philipp Rudo) [1804807]
-
-* Mon Mar 16 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1129.el7]
-- [tools] perf header: Use last modification time for timestamp (Michael Petlan) [1789947]
-- [tools] perf header: Fix up argument to ctime() (Michael Petlan) [1789947]
-- [hid] HID: multitouch: Add pointstick support for ALPS Touchpad (Benjamin Tissoires) [1672425]
-- [kernel] blktrace: fix dereference after null check (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] blktrace: Protect q->blk_trace with RCU (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] blktrace: fix trace mutex deadlock (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] blktrace: fix unlocked registration of tracepoints (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] blktrace: fix unlocked access to init/start-stop/teardown (Ming Lei) [1798318] {CVE-2019-19768}
-- [kernel] tracing: Handle NULL formats in hold_module_trace_bprintk_format() (Oleksandr Natalenko) [1811565]
-- [kernel] tracing: Fix trace_printk() to print when not using bprintk() (Oleksandr Natalenko) [1811565]
-- [sound] ALSA: timer: Fix incorrectly assigned timer instance (Jaroslav Kysela) [1798457] {CVE-2019-19807}
-- [x86] kvm: OOB memory write via kvm_dev_ioctl_get_cpuid (CVE-2019-19332) (Philippe Mathieu-Daud) [1783455] {CVE-2019-19332}
-- [x86] kvm: x86: do not reset microcode version on INIT or RESET (Paolo Bonzini) [1801852]
-- [x86] kvm: x86: list MSR_IA32_UCODE_REV as an emulated MSR (Paolo Bonzini) [1801852]
-- [x86] kvm: x86: Allow userspace to define the microcode version (Paolo Bonzini) [1801852]
-
-* Wed Mar 11 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1128.el7]
-- [fs] ceph: only use d_name directly when parent is locked (Jeff Layton) [1699402]
-- [fs] ext4: work around deleting a file with i_nlink == 0 safely (Carlos Maiolino) [1801046]
-- [fs] xfs: attach dquots and reserve quota blocks during unwritten conversion (Carlos Maiolino) [1786005]
-- [fs] Revert "xfs: attach dquots and reserve quota blocks during unwritten conversion" (Carlos Maiolino) [1786005]
-- [md] dm mpath: call clear_request_fn_mpio() in multipath_release_clone() (Mike Snitzer) [1806400]
-- [scsi] scsi: implement .cleanup_rq callback (Mike Snitzer) [1806400]
-- [md] blk-mq: add callback of .cleanup_rq (Mike Snitzer) [1806400]
-- [target] target: call init_timer_on_stack() to initialize login_timer (Maurizio Lombardi) [1810037]
-- [scsi] scsi: megaraid_sas: fixup MSIx interrupt setup during resume (Tomas Henzl) [1807077]
-- [tools] selftests/livepatch: Test interaction with ftrace_enabled (Yannick Cote) [1806653]
-- [tools] selftests/livepatch: Make dynamic debug setup and restore generic (Yannick Cote) [1806653]
-- [kernel] ftrace: Introduce PERMANENT ftrace_ops flag (Yannick Cote) [1806653]
-- [tools] selftests/livepatch: push and pop dynamic debug config (Yannick Cote) [1806653]
-
-* Thu Mar 05 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.5.el7]
-- [scsi] scsi: libsas: fix a race condition when smp task timeout (Tomas Henzl) [1798263] {CVE-2018-20836}
-- [netdrv] can: peak_usb: fix slab info leak (Guillaume Nault) [1787484] {CVE-2019-19534}
-- [fs] xfs: also remove cached ACLs when removing the underlying attr (Carlos Maiolino) [1808676]
-- [fs] direct-io: allow direct writes to empty inodes (Eric Sandeen) [1785657]
-- [x86] x86/spec_ctrl: Make IBPB = IBRS || retpoline (Waiman Long) [1808114]
-- [infiniband] IB/mlx5: Do reverse sequence during device removal (Alaa Hleihel) [1808786]
-- [kernel] kprobes: Allow kprobes coexist with livepatch (Yannick Cote) [1764262]
-- [kernel] kprobes: Replace p with other pointer types (Yannick Cote) [1764262]
-- [scsi] qla2xxx: initialize the check_stop_free pointer (Maurizio Lombardi) [1805682]
-
-* Fri Feb 28 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.4.el7]
-- [fs] gfs2: fix gfs2_find_jhead that returns uninitialized jhead with seq 0 (Abhijith Das) [1794508]
-- [fs] xfs: fix inode fork extent count overflow (Brian Foster) [1751015]
-- [fs] xfs: simplify xfs_idata_realloc (Brian Foster) [1751015]
-- [fs] xfs: remove if_real_bytes (Brian Foster) [1751015]
-- [s390] s390/diag: add tracepoint for diagnose calls (Philipp Rudo) [1805195]
-- [s390] s390/diag: add a statistic for diagnose calls (Philipp Rudo) [1805195]
-- [md] md/raid6: Set R5_ReadError when there is read failure on parity disk (Xiao Ni) [1804569]
-- [md] dm rq: fix checking of dm_dispatch_clone_request's return value (Ming Lei) [1805401]
-- [s390] scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP devices (Philipp Rudo) [1804806]
-- [s390] scsi: zfcp: fix to prevent port_remove with pure auto scan LUNs (only sdevs) (Philipp Rudo) [1804803]
-- [s390] scsi: zfcp: fix missing zfcp_port reference put on -EBUSY from port_remove (Philipp Rudo) [1804805]
-- [s390] scsi: zfcp: fix request object use-after-free in send path causing wrong traces (Philipp Rudo) [1804802]
-- [virt] kvm: fix overflow of zero page refcount with ksm running (Paolo Bonzini) [1790534]
-
-* Tue Feb 25 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.3.el7]
-- [virtio] virtio_ring: fix return code on DMA mapping fails (Philipp Rudo) [1804276]
-- [mm] swiotlb: make panic on mapping failures optional (Philipp Rudo) [1804276]
-- [virtio] virtio_ring: fix unmap of indirect descriptors (Philipp Rudo) [1804276]
-- [virtio] virtio_ring: fix num_free handling in error case (Philipp Rudo) [1804276]
-- [mm] s390/mm: fix dynamic pagetable upgrade for hugetlbfs (Philipp Rudo) [1804173]
-- [s390] s390/qeth: fix potential deadlock on workqueue flush (Philipp Rudo) [1804156]
-- [include] mm, slab: make sure that KMALLOC_MAX_SIZE will fit into MAX_ORDER (Rafael Aquini) [1804092]
-- [include] mm: slb: fix misleading comments (Rafael Aquini) [1804092]
-- [include] slob: Rework #ifdeffery in slab.h (Rafael Aquini) [1804092]
-- [kernel] tracing: Fix possible double free on failure of allocating trace buffer (Jerome Marchand) [1803011] {CVE-2017-18595}
-- [kernel] tracing: Fix crash when it fails to alloc ring buffer (Jerome Marchand) [1803011] {CVE-2017-18595}
-- [mm] x86/mm: In the PTE swapout page reclaim case clear the accessed bit instead of flushing the TLB (Rafael Aquini) [1799224]
-
-* Fri Feb 21 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.2.el7]
-- [mm] mm: thp: use down_read_trylock() in khugepaged to avoid long block (Rafael Aquini) [1261799]
-- [mm] mm: oom: avoid attempting to kill init sharing same memory (Rafael Aquini) [1261799]
-- [mm] mm: oom: fix the wrong task->mm == mm checks in oom_kill_process() (Rafael Aquini) [1261799]
-- [mm] mm: oom: cleanup the "kill sharing same memory" loop (Rafael Aquini) [1261799]
-- [mm] mm: oom: fix potentially killing unrelated process (Rafael Aquini) [1261799]
-- [mm] mm: oom: reverse the order of setting TIF_MEMDIE and sending SIGKILL (Rafael Aquini) [1261799]
-- [mm] mm: oom: make sure that TIF_MEMDIE is set under task_lock (Rafael Aquini) [1261799]
-- [mm] mm: oom: don't count on mm-less current process (Rafael Aquini) [1261799]
-- [mm] mm: oom: kill the insufficient and no longer needed PT_TRACE_EXIT check (Rafael Aquini) [1261799]
-- [mm] mm: oom: don't assume that a coredumping thread will exit soon (Rafael Aquini) [1261799]
-- [netdrv] r8169: fix network stalls due to missing bit TXCFG_AUTO_FIFO (Corinna Vinschen) [1787263]
-- [kernel] audit: CONFIG_CHANGE don't log internal bookkeeping as an event (Richard Guy Briggs) [1777239]
-- [mm] writeback: use |1 instead of +1 to protect against div by zero (Christoph von Recklinghausen) [1801628]
-- [mm] Revert "mm: always flush VMA ranges affected by zap_page_range" (Christoph von Recklinghausen) [1801628]
-- [x86] x86/platform/uv: Account for UV Hubless in is_uvX_hub Ops (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Check EFI Boot to set reboot type (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Decode UVsystab Info (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Add UV Hubbed/Hubless Proc FS Files (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Setup UV functions for Hubless UV (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Add return code to UV BIOS Init function (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Return UV Hubless System Type (Frank Ramsay) [1789128]
-- [x86] x86/platform/uv: Save OEM_ID from ACPI MADT probe (Frank Ramsay) [1789128]
-- [net] openvswitch: support asymmetric conntrack (Aaron Conole) [1757759]
-
-* Wed Feb 19 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1127.1.el7]
-- [scsi] scsi: fcoe: fix off by one in eth2fc_speed() (Chris Leech) [1665951]
-- [scsi] scsi: fcoe: provide translation table between Ethernet and FC port speeds (Chris Leech) [1665951]
-- [scsi] fcoe: use defines from ethtool for 20Gbit and 40Gbit speeds (Chris Leech) [1665951]
-- [scsi] smartpqi: bump version (Don Brace) [1795408]
-- [scsi] scsi: smartpqi: fix problem with unique ID for physical device (Don Brace) [1795408]
-- [scsi] scsi: smartpqi: properly set both the DMA mask and the coherent DMA mask (Don Brace) [1795408]
-- [drm] drm/nouveau/kms/gv100-: avoid sending a core update until the first modeset (Ben Skeggs) [1769905]
-- [drm] drm/nouveau/kms/gv100-: move window ownership setup into modesetting path (Ben Skeggs) [1769905]
-- [drm] drm/nouveau/disp/gv100-: halt NV_PDISP_FE_RM_INTR_STAT_CTRL_DISP_ERROR storms (Ben Skeggs) [1769905]
-- [drm] drm/nouveau/sec2/gp102: add missing MODULE_FIRMWAREs (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot/gp10: support newer FW to fix SEC2 failures on some boards (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot: enable loading of versioned LS PMU/SEC2 ACR msgqueue FW (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot: split out FW version-specific LS function pointers (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot: pass max supported FW version to LS load funcs (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/core: support versioned firmware loading (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/core: pass subdev into nvkm_firmware_get, rather than device (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/secboot/gp102-: remove WAR for SEC2 RTOS start bug (Ben Skeggs) [1629576]
-- [drm] drm/nouveau/flcn/gp102-: improve implementation of bind_context() on SEC2/GSP (Ben Skeggs) [1629576]
-- [infiniband] IB/core: Do not notify GID change event of an unregistered device (Kamal Heib) [1707036]
-- [infiniband] IB/core: Let IB core distribute cache update events (Kamal Heib) [1707036]
-- [scsi] lpfc: Fix stack trace when running the debug kernel (Dick Kennedy) [1793410]
-- [mm] mm, sparse: do not swamp log with huge vmemmap allocation failures (Artem Savkov) [1515625]
-- [netdrv] nfp: flower: fix stats id allocation (Pablo Cascon) [1786498]
-- [netdrv] virtio-net: switch to use XPS to choose txq (Lu Lu) [1769479]
-- [vhost] vhost_net: validate sock before trying to put its fd (Vladis Dronov) [1767060]
-- [vhost] vhost_net: stop device during reset owner (Vladis Dronov) [1767060]
-- [vhost] vhost: don't open-code sockfd_put() (Vladis Dronov) [1767060]
-- [netdrv] bnx2x: Prevent ptp_task to be rescheduled indefinitely (Manish Chopra) [1720384]
-- [netdrv] bnx2x: Check if transceiver implements DDM before access (Manish Chopra) [1720384]
-- [netdrv] bnx2x: Add support for detection of P2P event packets (Manish Chopra) [1720384]
-- [netdrv] bnx2x: Replace magic numbers with macro definitions (Manish Chopra) [1720384]
-- [fs] flexfiles: Don't tie up all the rpciod threads in resends (Benjamin Coddington) [1778963]
-
-* Wed Feb 12 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1126.2.el7]
-- [kernel] sched: print_rq(): Don't use tasklist_lock (Phil Auld) [1797429]
-- [kernel] sched: s/do_each_thread/for_each_process_thread/ in debug.c (Phil Auld) [1797429]
-- [kernel] sched/rt: Optimize checking group RT scheduler constraints (Phil Auld) [1726700]
-- [iommu] iommu/iova: Fix tracking of recently failed iova address (Jerry Snitselaar) [1759072]
-- [iommu] iommu/iova: Optimise attempts to allocate iova from 32bit address range (Jerry Snitselaar) [1759072]
-- [mm] memcg: Use a more cacheline efficient ways to sum percpu stats (Waiman Long) [1796920]
-- [mm] memcg: Add preemption point in accumulate_memcg_tree() (Waiman Long) [1796920]
-- [mm] memcg: reduce memcg tree traversals for stats collection (Waiman Long) [1796920]
-- [fs] vfs: show_vfsstat: do not ignore errors from show_devname method (Ian Kent) [1751787]
-- [fs] vfs: make mounts and mountstats honor root dir like mountinfo does (Ian Kent) [1751787]
-- [fs] xfs: bulkstat should copy lastip whenever userspace supplies one (Carlos Maiolino) [1786007]
-- [fs] xfs: attach dquots and reserve quota blocks during unwritten conversion (Carlos Maiolino) [1786005]
-- [fs] cifs: Fix NULL pointer dereference of devname (Leif Sahlberg) [1722592]
-- [x86] hyper-v: make hyperv_init() __init (Vitaly Kuznetsov) [1782192]
-
-* Wed Feb 05 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1126.1.el7]
-- [kernel] tick-sched: Update nohz load even if tick already stopped (Scott Wood) [1694877]
-- [powerpc] powerpc/pseries: safely roll back failed DLPAR cpu add (Desnes Augusto Nunes do Rosario) [1772210]
-- [powerpc] powerpc/pseries: address checkpatch warnings in dlpar_offline_cpu (Desnes Augusto Nunes do Rosario) [1772210]
-- [fs] fs/proc/proc_sysctl.c: Fix a NULL pointer dereference (Vladis Dronov) [1795522] {CVE-2019-20054}
-- [fs] fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links (Vladis Dronov) [1795522] {CVE-2019-20054}
-- [tools] cpupower: mperf_monitor: Update cpupower to use the RDPRU instruction (Janakarajan Natarajan) [1791014]
-- [tools] cpupower: mperf_monitor: Introduce per_cpu_schedule flag (Janakarajan Natarajan) [1791014]
-- [tools] cpupower: Move needs_root variable into a sub-struct (Janakarajan Natarajan) [1791014]
-- [fs] xfs: properly serialise fallocate against AIO+DIO (Carlos Maiolino) [1786004]
-- [fs] xfs: flush removing page cache in xfs_reflink_remap_prep (Carlos Maiolino) [1786004]
-- [edac] EDAC, skx, i10nm: Fix source ID register offset (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i10nm: Check ECC enabling status per channel (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i10nm: Add Intel additional Ice-Lake support (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx, i10nm: Make skx_common.c a pure library (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx_common: Add code to recognise new compound error code (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i10nm: Fix randconfig builds (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i10nm: Add a driver for Intel 10nm server processors (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx_edac: Delete duplicated code (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx_common: Separate common code out from skx_edac (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx: Move debugfs node under EDACs hierarchy (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx: Prepend hex formatting with 0x (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx: Fix function calling order in skx_exit() (Aristeu Rozanski) [1514705]
-- [edac] EDAC, skx_edac: Fix logical channel intermediate decoding (Aristeu Rozanski) [1514705]
-- [edac] EDAC, {i7core, sb, skx}_edac: Fix uncorrected error counting (Aristeu Rozanski) [1514705]
-- [edac] EDAC: Correct DIMM capacity unit symbol (Aristeu Rozanski) [1514705]
-- [x86] x86/mce: Add notifier_block forward declaration (Aristeu Rozanski) [1514705]
-- [edac] EDAC: Handle return value of kasprintf() (Aristeu Rozanski) [1514705]
-- [edac] EDAC, i5100: Convert to debugfs wrappers (Aristeu Rozanski) [1514705]
-- [edac] EDAC: Add debugfs wrappers (Aristeu Rozanski) [1514705]
-- [edac] EDAC: Carve out debugfs functionality (Aristeu Rozanski) [1514705]
-- [x86] x86/reboot: Always use NMI fallback when shutdown via reboot vector IPI fails (Grzegorz Halat) [1594848]
-- [scsi] scsi: qla2xxx: Fix unbound NVME response length (Himanshu Madhani) [1788669]
-
-* Thu Jan 30 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1125.1.el7]
-- [netdrv] ixgbevf: Use cached link state instead of re-reading the value for ethtool (Ken Cox) [1794812]
-- [ptp] ptp: free ptp device pin descriptors properly (Vladis Dronov) [1774657]
-- [ptp] ptp: fix the race between the release of ptp_clock and cdev (Vladis Dronov) [1774657]
-- [ptp] ptp: Fix pass zero to ERR_PTR() in ptp_clock_register (Vladis Dronov) [1774657]
-- [ptp] ptp: create "pins" together with the rest of attributes (Vladis Dronov) [1774657]
-- [ptp] ptp: use is_visible method to hide unused attributes (Vladis Dronov) [1774657]
-- [ptp] ptp: use kcalloc when allocating arrays (Vladis Dronov) [1774657]
-- [ptp] ptp: do not explicitly set drvdata in ptp_clock_register() (Vladis Dronov) [1774657]
-- [ptp] drivers/ptp: Fix kernel memory disclosure (Vladis Dronov) [1774657]
-- [ptp] ptp: Fix resource leak in case of error (Vladis Dronov) [1774657]
-- [netdrv] ptp: drivers: set the number of programmable pins (Vladis Dronov) [1774657]
-- [ptp] ptp: expose the programmable pins via sysfs (Vladis Dronov) [1774657]
-- [documentation] ptp: add the pin GET/SETFUNC ioctls to the testptp program (Vladis Dronov) [1774657]
-- [documentation] ptp: Allow selecting trigger/event index in testptp (Vladis Dronov) [1774657]
-- [documentation] ptp: add the PTP_SYS_OFFSET ioctl to the testptp program (Vladis Dronov) [1774657]
-- [fs] mark struct file that had write access grabbed by open() (Miklos Szeredi) [1679829]
-- [fs] fold __get_file_write_access() into its only caller (Miklos Szeredi) [1679829]
-- [powerpc] get rid of DEBUG_WRITECOUNT (Miklos Szeredi) [1679829]
-- [fs] don't bother with {get, put}_write_access() on non-regular files (Miklos Szeredi) [1679829]
-- [fs] gfs2: Use d_materialise_unique instead of d_splice_alias (2) (Andreas Grunbacher) [1784550]
-- [fs] gfs2: gfs2_create_inode(): don't bother with d_splice_alias() (Andreas Grunbacher) [1784550]
-- [fs] gfs2: bugger off early if O_CREAT open finds a directory (Andreas Grunbacher) [1784550]
-- [fs] libceph: fix PG split vs OSD (re)connect race (Ilya Dryomov) [1785656]
-- [scsi] Fix driver intialization failure for sli4 non nvme (Dick Kennedy) [1783899]
-- [netdrv] hv_netvsc: fix race that may miss tx queue wakeup (Mohammed Gamal) [1781322]
-
-* Mon Jan 27 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1124.1.el7]
-- [netdrv] net/ibmvnic: Fix typo in retry check (Steve Best) [1780300]
-- [netdrv] ibmvnic: Serialize device queries (Steve Best) [1780300]
-- [netdrv] ibmvnic: Bound waits for device queries (Steve Best) [1780300]
-- [netdrv] ibmvnic: Terminate waiting device threads after loss of service (Steve Best) [1780300]
-- [netdrv] ibmvnic: Fix completion structure initialization (Steve Best) [1780300]
-- [netdrv] net/ibmvnic: Ignore H_FUNCTION return from H_EOI to tolerate XIVE (Steve Best) [1780300]
-- [powerpc] powerpc/pseries/mobility: use cond_resched when updating device tree (Desnes Augusto Nunes do Rosario) [1759209]
-- [powerpc] powerpc/rtas: allow rescheduling while changing cpu states (Desnes Augusto Nunes do Rosario) [1759209]
-- [base] of: to support binding numa node to specified device in devicetree (Jeff Moyer) [1791883]
-- [s390] s390: wire up sys_renameat2 (Miklos Szeredi) [1773504]
-- [net] ipvs: do not use random local source address for tunnels (Xin Long) [1786676]
-- [misc] mei: me: add cannon point device ids for 4th device (Jerry Snitselaar) [1745139]
-- [misc] mei: me: add cannon point device ids (Jerry Snitselaar) [1745139]
-- [netdrv] bnxt_en: Support all variants of the 5750X chip family (Jonathan Toppins) [1789345]
-
-* Wed Jan 22 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1123.1.el7]
-- [kernel] tick: broadcast-hrtimer: Fix a race in bc_set_next (Vladis Dronov) [1785680]
-- [mm] mremap: remove LATENCY_LIMIT from mremap to reduce the number of TLB shootdowns (Rafael Aquini) [1781325]
-- [x86] x86/CPU: mask X86_CR4_PCIDE from trampoline_cr4_features in clear_in_cr4() too (Vitaly Kuznetsov) [1785626]
-- [scsi] scsi: ibmvfc: fix WARN_ON during event pool release (Desnes Augusto Nunes do Rosario) [1635959]
-- [dma] dma-mapping: relax warning for per-device areas (Desnes Augusto Nunes do Rosario) [1635959]
-- [kernel] sched: Fix schedule_tail() to disable preemption (Phil Auld) [1771094]
-- [virtio] scsi: virtio: Reduce BUG if total_sg > virtqueue size to WARN (Lu Lu) [1625065]
-- [netdrv] vmxnet3: turn off lro when rxcsum is disabled (Neil Horman) [1775367]
-- [x86] x86: respect memory size limiting via mem= parameter (Joel Savitz) [1750253]
-- [x86] sched/topology: Improve load balancing on AMD EPYC systems (Phil Auld) [1505941]
-- [kernel] sched/topology: Fix off by one bug (Phil Auld) [1505941]
-- [s390] s390/idle: fix cpu idle time calculation (Philipp Rudo) [1777505]
-- [vhost] vhost: Fix incorrect allocation size for vq indirect iovec (Eugenio Perez) [1749726]
-
-* Tue Jan 14 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1123.el7]
-- [mm] mm: prevent get_user_pages() from overflowing page refcount (Aristeu Rozanski) [1705005] {CVE-2019-11487}
-- [mm] mm/hugetlb.c: __get_user_pages ignores certain follow_hugetlb_page errors (Aristeu Rozanski) [1705005] {CVE-2019-11487}
-- [fs] CIFS: avoid using MID 0xFFFF (Leif Sahlberg) [1771255]
-- [net] netfilter: xt_TRACE: add explicitly nf_logger_find_get call (Phil Sutter) [1774444]
-- [wireless] rtlwifi: Fix potential overflow on P2P code (Josef Oskera) [1775236] {CVE-2019-17666}
-
-* Tue Jan 07 2020 Jan Stancek <jstancek@redhat.com> [3.10.0-1122.el7]
-- [drm] drm/amd/powerplay: use hardware fan control if no powerplay fan table (Lyude Paul) [1729286]
-- [nvme] nvme-fc: fix double-free scenarios on hw queues (Ewan Milne) [1731286]
-- [x86] kvm: vmx: use MSR_IA32_TSX_CTRL to hard-disable TSX on guest that lack it (Paolo Bonzini) [1779768]
-- [x86] kvm: vmx: implement MSR_IA32_TSX_CTRL disable RTM functionality (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm: x86: Mark expected switch fall-throughs (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm: x86: implement MSR_IA32_TSX_CTRL effect on CPUID (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm: x86: do not modify masked bits of shared MSRs (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm: x86: fix presentation of TSX feature in ARCH_CAPABILITIES (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [x86] kvm/x86: Export MDS_NO=0 to guests when TSX is enabled (Paolo Bonzini) [1779768] {CVE-2019-19338}
-- [s390] s390/qeth: ensure linear access to packet headers (Philipp Rudo) [1782927]
-- [s390] s390/qeth: guard against runt packets (Philipp Rudo) [1782927]
-- [s390] s390/qeth: consolidate skb allocation (Philipp Rudo) [1782927]
-- [s390] s390/qeth: clean up page frag creation (Philipp Rudo) [1782927]
-- [netdrv] i40e: Fix for persistent lldp support (Stefan Assmann) [1782689]
-
-* Tue Dec 17 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1121.el7]
-- [platform] thinkpad_acpi: Don't yell on unsupported brightness interfaces (Lyude Paul) [1305619]
-- [platform] thinkpad-acpi: fix handle locate for video and query of _BCL (Lyude Paul) [1305619]
-- [s390] kernel: avoid cpu yield in SMT environment (Philipp Rudo) [1777876]
-- [scsi] scsi: qla2xxx: Fix incorrect SFUB length used for Secure Flash Update MB Cmd (Himanshu Madhani) [1783016]
-- [scsi] scsi: qla2xxx: Added support for MPI and PEP regions for ISP28XX (Himanshu Madhani) [1783016]
-- [scsi] scsi: qla2xxx: Correctly retrieve and interpret active flash region (Himanshu Madhani) [1783016]
-- [powerpc] KVM: PPC: Book3S HV: Flush link stack on guest exit to host kernel (Gustavo Duarte) [1777710]
-- [powerpc] powerpc/book3s64: Fix link stack flush on context switch (Gustavo Duarte) [1777710]
-- [powerpc] powerpc/64s: support nospectre_v2 cmdline option (Gustavo Duarte) [1777710]
-- [net] openvswitch: fix flow command message size (Paolo Abeni) [1776578]
-- [block] brd: re-enable __GFP_HIGHMEM in brd_insert_page() (Jeff Moyer) [1781298]
-- [block] brd: remove dax support (Jeff Moyer) [1781298]
-- [nvme] nvme: don't access the inlined bio after nvmet request is completed (Ming Lei) [1631120]
-- [fs] epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() (Miklos Szeredi) [1780128]
-- [nvme] nvme: fix NULL pointer dereference in nvme_init_subsystem (Ewan Milne) [1781316]
-- [nvme] nvme-fabrics: allow duplicate connections to the discovery controller (Ewan Milne) [1781316]
-- [scsi] scsi: bnx2fc: timeout calculation invalid for bnx2fc_eh_abort() (Nilesh Javali) [1772966]
-
-* Thu Dec 12 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1120.el7]
-- [md] raid5: need to set STRIPE_HANDLE for batch head (Xiao Ni) [1774330]
-- [drm] drm/radeon: fix si_enable_smc_cac() failed issue (Dave Airlie) [1780026]
-- [block] block: don't change REQ_NR_BITS (Ming Lei) [1779712]
-
-* Mon Dec 09 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1119.el7]
-- [x86] mm: serialize against gup_fast in pmdp_splitting_flush() (Vitaly Kuznetsov) [1674266]
-- [vhost] vsock: split packets to send using multiple buffers (Stefano Garzarella) [1777349]
-- [md] md/raid10: prevent access of uninitialized resync_pages offset (Nigel Croxon) [1767935]
-- [x86] perf/x86: Modify error message in virtualized environment (Michael Petlan) [1759758]
-- [fs] cifs: Fix infinite loop when using hard mount option (Dave Wysochanski) [1770404]
-- [wireless] mwifiex: Fix heap overflow in mmwifiex_process_tdls_action_frame() (Stanislaw Gruszka) [1776157] {CVE-2019-14901}
-
-* Wed Dec 04 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1118.el7]
-- [net] ipv6: support more tunnel interfaces for EUI64 link-local generation (Guillaume Nault) [1770686]
-- [net] netfilter: masquerade: don't flush all conntracks if only one address deleted on device (Patrick Talbert) [1771396]
-- [net] netfilter: conntrack: resched in nf_ct_iterate_cleanup (Patrick Talbert) [1771396]
-- [net] ipvs: fix buffer overflow with sync daemon and service (Davide Caratti) [1725440]
-- [net] ipvs: fix rtnl_lock lockups caused by start_sync_thread (Davide Caratti) [1725440]
-- [net] ipvs: Pass ipvs not net to make_receive_sock (Davide Caratti) [1725440]
-- [net] ipvs: Pass ipvs not net to make_send_sock (Davide Caratti) [1725440]
-- [net] ipvs: Pass ipvs not net to start_sync_thread (Davide Caratti) [1725440]
-- [net] ipvs: Pass ipvs not net to ip_vs_genl_new_daemon (Davide Caratti) [1725440]
-- [net] ipvs: add sync_maxlen parameter for the sync daemon (Davide Caratti) [1725440]
-- [net] ipvs: call rtnl_lock early (Davide Caratti) [1725440]
-- [net] netfilter: don't use mutex_lock_interruptible() (Davide Caratti) [1725440]
-- [net] ipvs: fix memory leak in ip_vs_ctl.c (Davide Caratti) [1725440]
-- [wireless] mwifiex: fix possible heap overflow in mwifiex_process_country_ie() (Stanislaw Gruszka) [1776206]
-- [scsi] Revert "qla2xxx: Mark NVMe/FC initiator mode usage as technology preview" (Ewan Milne) [1642968]
-
-* Tue Dec 03 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1117.el7]
-- [x86] x86/speculation: Remove unneeded STIBP code (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/speculation: Fix redundant MDS mitigation message (Waiman Long) [1766540] {CVE-2019-11135}
-- [documentation] x86/speculation: Fix incorrect MDS/TAA mitigation status (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/speculation/taa: Fix printing of TAA_MSG_SMT on IBRS_ALL CPUs (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/tsx: Add config options to set tsx=on|off|auto (Waiman Long) [1766540] {CVE-2019-11135}
-- [documentation] x86/speculation/taa: Add documentation for TSX Async Abort (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/tsx: Add "auto" option to the tsx= cmdline parameter (Waiman Long) [1766540] {CVE-2019-11135}
-- [base] x86/speculation/taa: Add sysfs reporting for TSX Async Abort (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/speculation/taa: Add mitigation for TSX Async Abort (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/cpu: Add a "tsx=" cmdline option with TSX disabled by default (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/cpu: Add a helper function x86_read_arch_cap_msr() (Waiman Long) [1766540] {CVE-2019-11135}
-- [x86] x86/msr: Add the IA32_TSX_CTRL MSR (Waiman Long) [1766540] {CVE-2019-11135}
-- [documentation] documentation: Add ITLB_MULTIHIT documentation (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: mmu: Recovery of shattered NX large pages (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [virt] kvm: Add helper function for creating VM worker threads (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: mmu: ITLB_MULTIHIT mitigation (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [kernel] cpu/speculation: Uninline and export CPU mitigations helpers (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] cpu: Add Tremont to the cpu vulnerability whitelist (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] Add ITLB_MULTIHIT bug infrastructure (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: vmx, svm: always run with EFER.NXE=1 when shadow paging is active (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: add tracepoints around __direct_map and FNAME(fetch) (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: change kvm_mmu_page_get_gfn BUG_ON to WARN_ON (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: remove now unneeded hugepage gfn adjustment (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: make FNAME(fetch) and __direct_map more similar (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: mmu: Do not release the page inside mmu_set_spte() (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: x86: mmu: Remove unused parameter of __direct_map() (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [virt] kvm: Convert kvm_lock to a mutex (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [x86] kvm: mmu: drop vcpu param in gpte_access (Paolo Bonzini) [1690343] {CVE-2018-12207}
-- [virt] kvm: x86, powerpc: do not allow clearing largepages debugfs entry (Paolo Bonzini) [1690343] {CVE-2018-12207}
-
-* Mon Dec 02 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1116.el7]
-- [netdrv] net/mlx5: Fix auto group size calculation (Alaa Hleihel) [1769309]
-- [mm] x86/io: add interface to reserve io memtype for a resource range. (v1.1) (Dave Airlie) [1739623]
-- [sound] alsa: emux: Fix potential Spectre v1 vulnerabilities (Jaroslav Kysela) [1672561]
-- [s390] s390/smt: Fix s390 SMT reporting (Josh Poimboeuf) [1764184]
-- [mm] mm: swap: clean up swap readahead (Rafael Aquini) [1725396]
-- [mm] mm: do_swap_page: clean up parameter list passing a pointer to struct vm_fault (Rafael Aquini) [1725396]
-- [mm] mm: __handle_mm_fault: introduce explicit barrier after orig_pte dereference (Rafael Aquini) [1725396]
-- [fs] cachefiles: Fix page leak in cachefiles_read_backing_file while vmscan is active (David Howells) [1765975]
-
-* Wed Nov 27 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1115.el7]
-- [scsi] Fix stack tarce when lpfc driver is unloaded (Dick Kennedy) [1774744]
-- [scsi] qla2xxx: Update driver version (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix partial flash write of MBI (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix device connect issues in P2P configuration (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix a NULL pointer dereference (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix double scsi_done for abort path (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Make qla2x00_abort_srb() again decrease the sp reference count (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix driver unload hang (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix SRB leak on switch command timeout (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix premature timer expiration (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Uninline qla2x00_init_timer() (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Do command completion on abort timeout (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Retry PLOGI on FC-NVMe PRLI failure (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Add error handling for PLOGI ELS passthrough (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Inline the qla2x00_fcport_event_handler() function (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Dual FCP-NVMe target port support (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Use tabs instead of spaces for indentation (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix N2N link up fail (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix N2N link reset (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix a race condition between aborting and completing a SCSI command (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Introduce the function qla2xxx_init_sp() (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Really fix qla2xxx_eh_abort() (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Make qla24xx_async_abort_cmd() static (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Reduce the number of forward declarations (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Remove a superfluous forward declaration (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix stuck login session (Himanshu Madhani) [1731581]
-- [scsi] scsi: qla2xxx: Fix panic from use after free in qla2x00_async_tm_cmd (Himanshu Madhani) [1731581]
-- [media] cx24116: fix a buffer overflow when checking userspace params (Jarod Wilson) [1737279] {CVE-2015-9289}
-- [scsi] qedf: Initialize rport while creation of vport (Nilesh Javali) [1760746]
-- [fs] Fix the locking in dcache_readdir() and friends (Ondrej Mosnacek) [1510603]
-- [fs] much milder d_walk() race (Ondrej Mosnacek) [1510603]
-- [fs] libfs.c: new helper - next_positive() (Ondrej Mosnacek) [1510603]
-- [fs] dcache_{readdir, dir_lseek}(): don't bother with nested ->d_lock (Ondrej Mosnacek) [1510603]
-- [security] selinuxfs: don't open-code d_genocide() (Ondrej Mosnacek) [1510603]
-- [fs] fs/dcache: Enable automatic reclaim of excess negative dentries (Waiman Long) [1489573]
-- [fs] fs/dcache: Add sysctl parameter negative-dentry-limit as a soft limit on negative dentries (Waiman Long) [1489573]
-- [fs] fs/dcache: Move percpu count updates out of dcache_lru_lock (Waiman Long) [1489573]
-- [fs] fs/dcache: Don't set DCACHE_REFERENCED on dentries when first put into LRU (Waiman Long) [1489573]
-
-* Mon Nov 25 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1114.el7]
-- [kernel] sched/numa: Fix a possible divide-by-zero (Vladis Dronov) [1765959]
-- [x86] x86/boot/64: Round memory hole size up to next PMD page (Frank Ramsay) [1773762]
-- [x86] x86/boot/64: Make level2_kernel_pgt pages invalid outside kernel area (Frank Ramsay) [1773762]
-- [kernel] seccomp: Fix tracer exit notifications during fatal signals (Vladis Dronov) [1770484]
-- [x86] x86/ptrace: run seccomp after ptrace (Vladis Dronov) [1770484]
-- [fs] cifs: Fix retry mid list corruption on reconnects (Dave Wysochanski) [1614201]
-- [fs] cifs: add a warning if we try to to dequeue a deleted mid (Dave Wysochanski) [1614201]
-- [fs] cifs: Fix use after free of a mid_q_entry (Dave Wysochanski) [1614201]
-- [fs] Don't log confusing message on reconnect by default (Dave Wysochanski) [1614201]
-- [fs] ceph: mark Fw cap dirty after splice write (Zheng Yan) [1710751]
-- [fs] cifs: Force reval dentry if LOOKUP_REVAL flag is set (Dave Wysochanski) [1771657]
-- [fs] cifs: Force revalidate inode when dentry is stale (Dave Wysochanski) [1771657]
-- [fs] cifs: Gracefully handle QueryInfo errors during open (Dave Wysochanski) [1771657]
-
-* Fri Nov 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1113.el7]
-- [drm] drm/i915/cmdparser: Fix jump whitelist clearing (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Lower RM timeout to avoid DSI hard hangs (Dave Airlie) [1756816] {CVE-2019-0154}
-- [drm] drm/i915/gen8+: Add RC6 CTX corruption WA (Dave Airlie) [1756816] {CVE-2019-0154}
-- [drm] drm/i915/cmdparser: Ignore Length operands during command matching (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915/cmdparser: Add support for backward jumps (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915/cmdparser: Use explicit goto for error paths (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Add gen9 BCS cmdparsing (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Allow parsing of unsized batches (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Support ro ppgtt mapped cmdparser shadow buffers (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Add support for mandatory cmdparsing (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Remove Master tables from cmdparser (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Disable Secure Batches for gen6+ (Dave Airlie) [1756883] {CVE-2019-0155}
-- [drm] drm/i915: Rename gen7 cmdparser tables (Dave Airlie) [1756883] {CVE-2019-0155}
-- [fs] Fix error code in nfs_lookup_verify_inode() (Benjamin Coddington) [1761957]
-- [scsi] scsi: qla2xxx: Initialized mailbox to prevent driver load failure (Himanshu Madhani) [1770307]
-- [powerpc] powerpc/ptrace: run seccomp after ptrace (Vladis Dronov) [1760294]
-- [s390] s390/ptrace: run seccomp after ptrace (Vladis Dronov) [1760294]
-- [s390] s390/seccomp: fix error return for filtered system calls (Vladis Dronov) [1760294]
-- [netdrv] bnxt_en: flow_offload: offload tunnel decap rules via indirect callbacks (Davide Caratti) [1717422]
-- [x86] cpuidle-haltpoll: vcpu hotplug support (Marcelo Tosatti) [1771849]
-- [x86] kvm: x86: skip populating logical dest map if apic is not sw enabled (Bandan Das) [1738496]
-- [x86] kvm: x86: remove unnecessary recalculate_apic_map (Bandan Das) [1738496]
-- [scsi] scsi: bnx2fc: Handle scope bits when array returns BUSY or TSF (Nilesh Javali) [1750577]
-- [scsi] scsi: bnx2fc: remove set but not used variables 'task', 'port', 'orig_task' (Nilesh Javali) [1750577]
-- [scsi] scsi: bnx2fc: remove set but not used variables 'lport', 'host' (Nilesh Javali) [1750577]
-- [scsi] scsi: bnx2fc: remove set but not used variable 'fh' (Nilesh Javali) [1750577]
-- [scsi] scsi: qedi: Remove WARN_ON from clear task context (Nilesh Javali) [1461697]
-- [scsi] scsi: qedi: Remove WARN_ON for untracked cleanup (Nilesh Javali) [1461697]
-
-* Fri Nov 15 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1112.el7]
-- [scsi] scsi: mpt3sas: change allocation option (Tomas Henzl) [1763796]
-- [md] md: improve handling of bio with REQ_PREFLUSH in md_flush_request() (Xiao Ni) [1752061]
-- [kvm] KVM: x86: switch KVMCLOCK base to monotonic raw clock (Marcelo Tosatti) [1760668]
-- [net] mac80211: Reject malformed SSID elements (Stanislaw Gruszka) [1748266]
-- [net] cfg80211: wext: avoid copying malformed SSIDs (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: change qu with jf devices to use qu configuration (Stanislaw Gruszka) [1748266]
-- [net] mac80211: fix txq null pointer dereference (Stanislaw Gruszka) [1748266]
-- [net] nl80211: fix null pointer dereference (Stanislaw Gruszka) [1748266]
-- [net] cfg80211: initialize on-stack chandefs (Stanislaw Gruszka) [1748266]
-- [net] cfg80211: validate SSID/MBSSID element ordering assumption (Stanislaw Gruszka) [1748266]
-- [net] nl80211: validate beacon head (Stanislaw Gruszka) [1748266]
-- [net] mac80211: keep BHs disabled while calling drv_tx_wake_queue() (Stanislaw Gruszka) [1748266]
-- [net] cfg80211: Purge frame registrations on iftype change (Stanislaw Gruszka) [1748266]
-- [wireless] rtw88: pci: Use DMA sync instead of remapping in RX ISR (Stanislaw Gruszka) [1748266]
-- [wireless] rtw88: pci: Rearrange the memory usage for skb in RX ISR (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: fw: don't send GEO_TX_POWER_LIMIT command to FW version 36 (Stanislaw Gruszka) [1748266]
-- [net] nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds (Stanislaw Gruszka) [1748266]
-- [net] mac80211: Do not send Layer 2 Update frame before authorization (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: assign directly to iwl_trans->cfg in QuZ detection (Stanislaw Gruszka) [1748266]
-- [wireless] mwifiex: Fix three heap overflow at parsing element in cfg80211_ap_settings (Stanislaw Gruszka) [1748266]
-- [net] mac80211: Correctly set noencrypt for PAE frames (Stanislaw Gruszka) [1748266]
-- [net] mac80211: Don't memset RXCB prior to PAE intercept (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: handle switching killer Qu B0 NICs to C0 (Stanislaw Gruszka) [1748266]
-- [net] Revert "cfg80211: fix processing world regdomain when non modular" (Stanislaw Gruszka) [1748266]
-- [net] mac80211: fix possible sta leak (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: fix recognition of QuZ devices (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: don't switch FW to qnj when ax201 is detected (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: pcie: fix the byte count table format for 22560 devices (Stanislaw Gruszka) [1748266]
-- [wireless] iwlwifi: mvm: Allow multicast data frames only when associated (Stanislaw Gruszka) [1748266]
-- [netdrv] i40e: initialize ITRN registers with correct values (Stefan Assmann) [1630307]
-- [net] tuntap: synchronize through tfiles array instead of tun->numqueues (Eugenio Perez) [1713616]
-- [net] tuntap: fix use after free during release (Eugenio Perez) [1713616]
-- [net] tun: fix use after free for ptr_array (Eugenio Perez) [1713616]
-- [net] tun/tap: sanitize TUNSETSNDBUF input (Eugenio Perez) [1713616]
-- [block] block: Don't merge requests if integrity flags differ (Ming Lei) [1767605]
-- [block] blk-mq: insert rq with DONTPREP to hctx dispatch list when requeue (Ming Lei) [1767605]
-- [x86] x86/atomic: Fix smp_mb__{before,after}_atomic() (Prarit Bhargava) [1769569]
-- [netdrv] qede: fix NULL pointer deref in __qede_remove() (Manish Chopra) [1766574]
-- [fs] xfs: only trace buffer items if they exist (Brian Foster) [1768722]
-- [nvme] nvme: make fabrics command run on a separate request queue (David Milburn) [1769900]
-- [nvme] nvme: Restart request timers in resetting state (David Milburn) [1769900]
-- [nvme] nvme-rdma: fix possible use-after-free in connect timeout (David Milburn) [1769900]
-- [netdrv] i40e: enable X710 support (Stefan Assmann) [1764987]
-
-* Fri Nov 08 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1111.el7]
-- [md] md: support for queue flag QUEUE_FLAG_NO_SG_MERGE (Nigel Croxon) [1767472]
-- [net] ipv4: Return -ENETUNREACH if we can't create route but saddr is valid (Stefano Brivio) [1633140]
-- [net] ipv6: Rewind hlist offset on interrupted /proc/net/if_inet6 read (Stefano Brivio) [1753480]
-- [net] revert "[net] ipv6: Display all addresses in output of /proc/net/if_inet6" (Stefano Brivio) [1753480]
-- [net] sock: fix lockdep annotation in release_sock (Paolo Abeni) [1753150]
-- [mm] mm-vmstat-reduce-zone-lock-holding-time-by-proc-pagetypeinfo-fix (Waiman Long) [1757943]
-- [mm] mm, vmstat: reduce zone->lock holding time by /proc/pagetypeinfo (Waiman Long) [1757943]
-- [mm] mm, vmstat: hide /proc/pagetypeinfo from normal users (Waiman Long) [1757943]
-
-* Wed Nov 06 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1110.el7]
-- [nvme] nvme-pci: Fix controller freeze wait disabling (David Milburn) [1766279]
-- [net] mac80211: fix kfree() on stack memory in ieee80211_crypto_aes_gmac_decrypt() (Stanislaw Gruszka) [1764510]
-- [md] dm rq: fix handling underlying queue busy (Ming Lei) [1767482]
-
-* Sat Nov 02 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1109.el7]
-- [netdrv] net/mlx5e: Initialize on stack link modes bitmap (Alaa Hleihel) [1764272]
-- [netdrv] net/mlx5e: Fix ethtool self test: link speed (Alaa Hleihel) [1764272]
-- [netdrv] net/mlx5e: ethtool, Avoid setting speed to 56GBASE when autoneg off (Alaa Hleihel) [1764272]
-- [fs] xfs: end sync buffer I/O properly on shutdown error (Brian Foster) [1750602]
-- [fs] xfs: kill __xfs_buf_submit_common() (Brian Foster) [1750602]
-- [fs] xfs: combinesync buffer submission apis (Brian Foster) [1750602]
-- [fs] xfs: lobotomise xfs_trans_read_buf_map() (Brian Foster) [1750602]
-- [fs] cifs: Fix use after free of file info structures (Dave Wysochanski) [1757872]
-- [fs] vfs: Fix EOVERFLOW testing in put_compat_statfs64 (Eric Sandeen) [1758001]
-- [mm] mm, compaction: avoid isolating pinned pages (Rafael Aquini) [1344862]
-- [scsi] scsi: smartpqi: change TMF timeout from 60 to 30 seconds (Don Brace) [1709620]
-- [scsi] scsi: smartpqi: fix LUN reset when fw bkgnd thread is hung (Don Brace) [1709620]
-- [scsi] scsi: smartpqi: add inquiry timeouts (Don Brace) [1709620]
-- [scsi] scsi: smartpqi: increase LUN reset timeout (Don Brace) [1709620]
-- [firmware] x86, efi: never relocate kernel below lowest acceptable address (Kairui Song) [1732737]
-- [powerpc] powerpc: dump kernel log before carrying out fadump or kdump (Desnes Augusto Nunes do Rosario) [1750250]
-- [s390] s390/cpumsf: Check for CPU Measurement sampling (Philipp Rudo) [1765124]
-- [s390] scsi: zfcp: fix reaction on bit error threshold notification (Philipp Rudo) [1765123]
-- [mm] s390/mm: Fix swiotlb for protected virtualization (Philipp Rudo) [1765122]
-
-* Thu Oct 31 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1108.el7]
-- [powerpc] powerpc/pseries: Remove confusing warning message (Gustavo Duarte) [1748306]
-- [powerpc] powerpc/pseries: Call H_BLOCK_REMOVE when supported (Gustavo Duarte) [1748306]
-- [powerpc] powerpc/pseries: Read TLB Block Invalidate Characteristics (Gustavo Duarte) [1748306]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1761978]
-- [scsi] scsi: hpsa: add missing hunks in reset-patch (Joseph Szczypek) [1761978]
-- [tty] TTY: serial_core, add ->install (Kenneth Yin) [1443152]
-- [scsi] scsi: core: Avoid that SCSI device removal through sysfs triggers a deadlock (Ewan Milne) [1734685]
-- [fs] scsi: sysfs: Introduce sysfs_{un, }break_active_protection() (Ewan Milne) [1734685]
-
-* Tue Oct 29 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1107.el7]
-- [x86] x86/kdump: Reserve extra memory when SME or SEV is active (Kairui Song) [1724887]
-- [block] block: fix blk_recount_segments (Ming Lei) [1762459]
-- [nvme] nvme-pci: Fix a race in controller removal (Gopal Tiwari) [1761998]
-- [char] hpet: Fix output of hpet_mmap kernel parameter (Prarit Bhargava) [1764790]
-- [tools] perf tools: Apply new CPU topology sysfs attributes (Jiri Olsa) [1640900]
-- [tools] perf header: Rename "sibling cores" to "sibling sockets" (Jiri Olsa) [1640900]
-- [tools] perf stat: Support per-die aggregation (Jiri Olsa) [1640900]
-- [tools] perf stat: Support 'percore' event qualifier (Jiri Olsa) [1640900]
-- [tools] perf stat: Factor out aggregate counts printing (Jiri Olsa) [1640900]
-- [tools] perf tools: Add a 'percore' event qualifier (Jiri Olsa) [1640900]
-- [tools] perf header: Add die information in CPU topology (Jiri Olsa) [1640900]
-- [tools] perf cpumap: Retrieve die id information (Jiri Olsa) [1640900]
-- [tools] perf tools: Use sysfs__mountpoint() when reading cpu topology (Jiri Olsa) [1640900]
-- [tools] perf tools: Add numa_topology object (Jiri Olsa) [1640900]
-- [tools] perf header: Fix wrong node write in NUMA_TOPOLOGY feature (Jiri Olsa) [1640900]
-- [tools] perf tools: Add cpu_topology object (Jiri Olsa) [1640900]
-- [tools] perf header: Remove unused 'cpu_nr' field from 'struct cpu_topo' (Jiri Olsa) [1640900]
-- [acpi] ACPICA: Increase total number of possible Owner IDs (Frank Ramsay) [1756339]
-- [fs] SMB3: retry on STATUS_INSUFFICIENT_RESOURCES instead of failing write (Leif Sahlberg) [1764567]
-- [netdrv] mark the intel igc driver as tech preview (David Arcari) [1721615]
-- [netdrv] igc: Clean up unused shadow_vfta pointer (David Arcari) [1721615]
-- [netdrv] igc: Add Rx checksum support (David Arcari) [1721615]
-- [netdrv] igc: Add set_rx_mode support (David Arcari) [1721615]
-- [netdrv] igc: Add SCTP CRC checksumming functionality (David Arcari) [1721615]
-- [netdrv] igc: Add tx_csum offload functionality (David Arcari) [1721615]
-- [netdrv] igc: Remove unneeded PCI bus defines (David Arcari) [1721615]
-- [netdrv] igc: Add NVM checksum validation (David Arcari) [1721615]
-- [netdrv] igc: Remove useless forward declaration (David Arcari) [1721615]
-- [netdrv] ethernet: Delete unnecessary checks before the macro call "dev_kfree_skb" (David Arcari) [1721615]
-- [netdrv] igc: Add more SKUs for i225 device (David Arcari) [1721615]
-- [netdrv] igc: Update the MAC reset flow (David Arcari) [1721615]
-- [netdrv] igc: Remove the unused field from a device specification structure (David Arcari) [1721615]
-- [netdrv] igc: Remove the polarity field from a PHY information structure (David Arcari) [1721615]
-- [netdrv] igc: Prefer pcie_capability_read_word() (David Arcari) [1721615]
-- [netdrv] igc: Cleanup the redundant code (David Arcari) [1721615]
-- [netdrv] igc: Add flow control support (David Arcari) [1721615]
-- [netdrv] igc: Remove the obsolete workaround (David Arcari) [1721615]
-- [netdrv] igc: Clean up unused pointers (David Arcari) [1721615]
-- [netdrv] igc: Fix double definitions (David Arcari) [1721615]
-- [netdrv] igb/igc: warn when fatal read failure happens (David Arcari) [1721615]
-- [netdrv] Revert "mark the intel igc driver as tech preview" (David Arcari) [1721615]
-- [md] dm: Use kzalloc for all structs with embedded biosets/mempools (Mike Snitzer) [1766389]
-
-* Fri Oct 25 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1106.el7]
-- [net] sysfs: Fix mem leak in netdev_register_kobject (Stefano Brivio) [1752690] {CVE-2019-15916}
-- [fs] revert "[fs] cifs: use cifsInodeInfo->open_file_lock while iterating to avoid a panic (Dave Wysochanski) [1757872]
-- [fs] revert "[fs] cifs: add spinlock for the openFileList to cifsInodeInfo (Dave Wysochanski) [1757872]
-- [fs] revert "[fs] cifs: add more spinlocks to pretect against races" (Dave Wysochanski) [1757872]
-- [fs] fix inode leaks on d_splice_alias() failure exits (Miklos Szeredi) [1749390]
-- [mm] percpu: remove spurious lock dependency between percpu and sched (Vladis Dronov) [1744633]
-- [mm] percpu: stop printing kernel addresses (Vladis Dronov) [1744633]
-- [mm] percpu: use chunk scan_hint to skip some scanning (Vladis Dronov) [1744633]
-- [mm] percpu: convert chunk hints to be based on pcpu_block_md (Vladis Dronov) [1744633]
-- [mm] percpu: make pcpu_block_md generic (Vladis Dronov) [1744633]
-- [mm] percpu: use block scan_hint to only scan forward (Vladis Dronov) [1744633]
-- [mm] percpu: remember largest area skipped during allocation (Vladis Dronov) [1744633]
-- [mm] percpu: add block level scan_hint (Vladis Dronov) [1744633]
-- [mm] percpu: set PCPU_BITMAP_BLOCK_SIZE to PAGE_SIZE (Vladis Dronov) [1744633]
-- [mm] percpu: relegate chunks unusable when failing small allocations (Vladis Dronov) [1744633]
-- [mm] percpu: manage chunks based on contig_bits instead of free_bytes (Vladis Dronov) [1744633]
-- [mm] percpu: introduce helper to determine if two regions overlap (Vladis Dronov) [1744633]
-- [mm] percpu: do not search past bitmap when allocating an area (Vladis Dronov) [1744633]
-- [mm] percpu: update free path with correct new free region (Vladis Dronov) [1744633]
-- [mm] mm/percpu: add checks for the return value of memblock_alloc*() (Vladis Dronov) [1744633]
-- [mm] percpu: km: no need to consider pcpu_group_offsets (Vladis Dronov) [1744633]
-- [mm] percpu: use nr_groups as check condition (Vladis Dronov) [1744633]
-- [mm] percpu: stop leaking bitmap metadata blocks (Vladis Dronov) [1744633]
-- [fs] /proc/meminfo: add percpu populated pages count (Vladis Dronov) [1744633]
-- [mm] mm: Allow to kill tasks doing pcpu_alloc() and waiting for pcpu_balance_workfn() (Vladis Dronov) [1744633]
-- [mm] percpu: include linux/sched.h for cond_resched() (Vladis Dronov) [1744633]
-- [mm] percpu: add a schedule point in pcpu_balance_workfn() (Vladis Dronov) [1744633]
-- [mm] percpu: fix iteration to prevent skipping over block (Vladis Dronov) [1744633]
-- [mm] percpu: fix starting offset for chunk statistics traversal (Vladis Dronov) [1744633]
-- [mm] percpu: update header to contain bitmap allocator explanation (Vladis Dronov) [1744633]
-- [mm] percpu: update pcpu_find_block_fit to use an iterator (Vladis Dronov) [1744633]
-- [mm] percpu: use metadata blocks to update the chunk contig hint (Vladis Dronov) [1744633]
-- [mm] percpu: update free path to take advantage of contig hints (Vladis Dronov) [1744633]
-- [mm] percpu: update alloc path to only scan if contig hints are broken (Vladis Dronov) [1744633]
-- [mm] percpu: keep track of the best offset for contig hints (Vladis Dronov) [1744633]
-- [mm] percpu: skip chunks if the alloc does not fit in the contig hint (Vladis Dronov) [1744633]
-- [mm] percpu: add first_bit to keep track of the first free in the bitmap (Vladis Dronov) [1744633]
-- [mm] percpu: introduce bitmap metadata blocks (Vladis Dronov) [1744633]
-- [mm] percpu: replace area map allocator with bitmap (Vladis Dronov) [1744633]
-- [mm] percpu: generalize bitmap (un)populated iterators (Vladis Dronov) [1744633]
-- [mm] percpu: increase minimum percpu allocation size and align first regions (Vladis Dronov) [1744633]
-- [mm] percpu: introduce nr_empty_pop_pages to help empty page accounting (Vladis Dronov) [1744633]
-- [mm] percpu: change the number of pages marked in the first_chunk pop bitmap (Vladis Dronov) [1744633]
-- [mm] percpu: combine percpu address checks (Vladis Dronov) [1744633]
-- [mm] percpu: modify base_addr to be region specific (Vladis Dronov) [1744633]
-- [mm] percpu: setup_first_chunk rename schunk/dchunk to chunk (Vladis Dronov) [1744633]
-- [mm] percpu: end chunk area maps page aligned for the populated bitmap (Vladis Dronov) [1744633]
-- [mm] percpu: unify allocation of schunk and dchunk (Vladis Dronov) [1744633]
-- [mm] percpu: setup_first_chunk remove dyn_size and consolidate logic (Vladis Dronov) [1744633]
-- [mm] percpu: remove has_reserved from pcpu_chunk (Vladis Dronov) [1744633]
-- [mm] percpu: introduce start_offset to pcpu_chunk (Vladis Dronov) [1744633]
-- [mm] percpu: setup_first_chunk enforce dynamic region must exist (Vladis Dronov) [1744633]
-- [mm] percpu: update the header comment and pcpu_build_alloc_info comments (Vladis Dronov) [1744633]
-- [mm] percpu: expose pcpu_nr_empty_pop_pages in pcpu_stats (Vladis Dronov) [1744633]
-- [mm] percpu: change the format for percpu_stats output (Vladis Dronov) [1744633]
-- [mm] percpu: pcpu-stats change void buffer to int buffer (Vladis Dronov) [1744633]
-- [mm] percpu: fix static checker warnings in pcpu_destroy_chunk (Vladis Dronov) [1744633]
-- [mm] percpu: fix early calls for spinlock in pcpu_stats (Vladis Dronov) [1744633]
-- [mm] percpu: resolve err may not be initialized in pcpu_alloc (Vladis Dronov) [1744633]
-- [mm] percpu: add tracepoint support for percpu memory (Vladis Dronov) [1744633]
-- [mm] percpu: expose statistics about percpu memory via debugfs (Vladis Dronov) [1744633]
-- [mm] percpu: migrate percpu data structures to internal header (Vladis Dronov) [1744633]
-- [mm] percpu: add missing lockdep_assert_held to func pcpu_free_area (Vladis Dronov) [1744633]
-- [mm] percpu: ensure the requested alignment is power of two (Vladis Dronov) [1744633]
-- [mm] tree wide: use kvfree() than conditional kfree()/vfree() (Vladis Dronov) [1744633]
-- [mm] mm/percpu: use offset_in_page macro (Vladis Dronov) [1744633]
-- [mm] percpu: clean up of schunk->mapassignment in pcpu_setup_first_chunk (Vladis Dronov) [1744633]
-- [mm] mm/percpu.c: fix panic triggered by BUG_ON() falsely (Vladis Dronov) [1744633]
-- [mm] mm/percpu.c: fix potential memory leakage for pcpu_embed_first_chunk() (Vladis Dronov) [1744633]
-- [mm] mm/percpu.c: correct max_distance calculation for pcpu_embed_first_chunk() (Vladis Dronov) [1744633]
-- [mm] mm: percpu: use pr_fmt to prefix output (Vladis Dronov) [1744633]
-- [mm] mm: convert printk(KERN_<LEVEL> to pr_<level> (Vladis Dronov) [1744633]
-- [mm] mm: coalesce split strings (Vladis Dronov) [1744633]
-- [mm] mm: convert pr_warning to pr_warn (Vladis Dronov) [1744633]
-- [mm] percpu: use *pbto print bitmaps including cpumasks and nodemasks (Vladis Dronov) [1744633]
-- [mm] percpu: off by one in BUG_ON() (Vladis Dronov) [1744633]
-- [mm] mm/percpu.c: use memblock apis for early memory allocations (Vladis Dronov) [1744633]
-- [mm] percpu: use VMALLOC_TOTAL instead of VMALLOC_END - VMALLOC_START (Vladis Dronov) [1744633]
-- [mm] percpu: fix bootmem error handling in pcpu_page_first_chunk() (Vladis Dronov) [1744633]
-
-* Tue Oct 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1105.el7]
-- [nvme] nvme: Treat discovery subsystems as unique subsystems (Ewan Milne) [1731579]
-- [scsi] scsi: core: Log SCSI command age with errors (Ewan Milne) [1751716]
-- [security] selinux: fix context string corruption in convert_context() (Ondrej Mosnacek) [1759803]
-- [usb] xhci: Prevent deadlock when xhci adapter breaks during init (Torez Smith) [1710090]
-- [scsi] scsi: core: add new RDAC LENOVO/DE_Series device (Ewan Milne) [1699439]
-- [wireless] Correct strange error in Makefiles for building modules in separate directories (Neil Horman) [1753927]
-- [md] dm snapshot: rework COW throttling to fix deadlock (Mike Snitzer) [1758603]
-- [md] dm snapshot: introduce account_start_copy() and account_end_copy() (Mike Snitzer) [1758603]
-- [drm] i915: Stop reconfiguring our shmemfs mountpoint (Vladis Dronov) [1759980]
-- [kernel] perf/core: Fix perf_event_open() vs. execve() race (Jiri Olsa) [1701620] {CVE-2019-3901}
-
-* Thu Oct 17 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1104.el7]
-- [md] raid5: don't set STRIPE_HANDLE to stripe which is in batch list (Nigel Croxon) [1631765 1750287]
-- [kernel] alarmtimer: Use EOPNOTSUPP instead of ENOTSUPP (Vladis Dronov) [1760639]
-- [kernel] alarmtimer: Remove unused but set variable (Vladis Dronov) [1760639]
-- [x86] efi/x86: do not clean dummy variable in kexec path (Bhupesh Sharma) [1707669]
-- [cpuidle] cpuidle-haltpoll: return -ENODEV on modinit failure (Marcelo Tosatti) [1756843]
-- [x86] perf/x86/amd: Change/fix NMI latency mitigation to use a timestamp (David Arcari) [1730884]
-- [infiniband] RDMA/bnxt_re: Fix stack-out-of-bounds in bnxt_qplib_rcfw_send_message (Selvin Xavier) [1629037]
-- [infiniband] RDMA/bnxt_re: Increase depth of control path command queue (Selvin Xavier) [1629037]
-- [x86] x86/efi/pti: In __load_cr3(), EFI PGD has no shadow (Lenny Szubowicz) [1750767]
-- [char] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable (Prarit Bhargava) [1660800]
-
-* Mon Oct 14 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1103.el7]
-- [fs] xfs: fix missing ILOCK unlock when xfs_setattr_nonsize fails due to EDQUOT (Bill O'Donnell) [1751468]
-- [fs] xfs: Fix deadlock between AGI and AGF with RENAME_WHITEOUT (Brian Foster) [1759117]
-- [fs] binfmt_elf: switch to new creds when switching to new mm (Vladis Dronov) [1700360] {CVE-2019-11190}
-- [fs] revert "[fs] nfsd: Implement the COPY call" ("J. Bruce Fields") [1688067]
-- [fs] fs: do not fall back to splice in copy_file_range ("J. Bruce Fields") [1688067]
-- [fs] proc/sysctl: don't return ENOMEM on lookup when a table is unregistering (Carlos Maiolino) [1752099]
-- [fs] proc: Fix proc_sys_prune_dcache to hold a sb reference (Carlos Maiolino) [1752099]
-- [fs] proc/sysctl: Don't grab i_lock under sysctl_lock. (Carlos Maiolino) [1752099]
-- [fs] proc/sysctl: prune stale dentries during unregistering (Carlos Maiolino) [1752099]
-- [kvm] kvm: x86: always expose VIRT_SSBD to guests (Eduardo Habkost) [1744281]
-- [kvm] kvm: x86: fix reporting of AMD speculation bug CPUID leaf (Eduardo Habkost) [1744281]
-- [md] dm crypt: don't decrease device limits (Mike Snitzer) [1656103]
-- [netdrv] cxgb4: RHEL-only disable device dump (Jonathan Toppins) [1708513]
-- [s390] s390/cmf: set_schib_wait add timeout (Philipp Rudo) [1759508]
-- [s390] s390: add support for IBM z15 machines (Philipp Rudo) [1758627]
-- [tools] perf callchain: Honour the ordering of PERF_CONTEXT_{USER, KERNEL, etc} (Michael Petlan) [1758046]
-- [tools] perf callchain: Stop validating callchains by the max_stack sysctl (Michael Petlan) [1758046]
-- [tools] perf tools: Separate accounting of contexts and real addresses in a stack trace (Michael Petlan) [1758046]
-- [netdrv] net/ibmvnic: prevent more than one thread from running in reset (Steve Best) [1759809]
-- [netdrv] net/ibmvnic: unlock rtnl_lock in reset so linkwatch_event can run (Steve Best) [1759809]
-- [netdrv] ibmvnic: Warn unknown speed message only when carrier is present (Steve Best) [1759809]
-
-* Fri Oct 11 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1102.el7]
-- [netdrv] net/mlx5e: Fix number of vports for ingress ACL configuration (Alaa Hleihel) [1758857]
-- [netdrv] net/mlx5: E-Switch, Split VF and special vports for offloads mode (Alaa Hleihel) [1758857]
-- [rtc] rtc: opal: Fix OPAL RTC driver OPAL_BUSY loops (Alexey Klimov) [1752968]
-- [powerpc] powerpc/powernv: define a standard delay for OPAL_BUSY type retry loops (Alexey Klimov) [1752968]
-- [rtc] rtc-opal: Fix handling of firmware error codes, prevent busy loops (Alexey Klimov) [1752968]
-- [powerpc] powerpc/powernv: Only delay opal_rtc_read() retry when necessary (Alexey Klimov) [1752968]
-- [scsi] lpfc: Fix wrong lockdep assertion (Dick Kennedy) [1752570]
-- [netdrv] iavf: fix MAC address setting for VFs when filter is rejected (Stefan Assmann) [1698052]
-- [netdrv] iavf: allow permanent MAC address to change (Stefan Assmann) [1698052]
-- [x86] x86/stacktrace: Prevent access_ok() warnings in arch_stack_walk_user() (Jerome Marchand) [1757641]
-- [netdrv] i40e: clear __I40E_VIRTCHNL_OP_PENDING on invalid min Tx rate (Stefan Assmann) [1746636]
-- [kernel] timer: don't let base->timer_jiffies go backwards (Jan Stancek) [1752885]
-
-* Sat Oct 05 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1101.el7]
-- [tools] tools/power turbostat: fix buffer overrun (Prarit Bhargava) [1710537]
-- [tools] perf top: Fix global-buffer-overflow issue (Michael Petlan) [1757325]
-- [tools] perf top: Always sample time to satisfy needs of use of ordered queuing (Michael Petlan) [1757325]
-- [infiniband] IB/mad: Fix use-after-free in ib mad completion handling (Kamal Heib) [1748453]
-- [nvme] nvme: introduce NVME_QUIRK_IGNORE_DEV_SUBNQN (David Milburn) [1754940]
-- [netdrv] i40e: Add support for X710 device (Stefan Assmann) [1711843]
-- [watchdog] watchdog: iTCO: Add support for Cannon Lake PCH iTCO (Alexander Beregalov) [1711811]
-- [i2c] i2c: i801: Use iTCO version 6 in Cannon Lake PCH and beyond (Alexander Beregalov) [1711811]
-- [i2c] i2c: i801: Restore the presence state of P2SB PCI device after reading BAR (Alexander Beregalov) [1711811]
-- [tools] perf header: Assign proper ff->ph in perf_event__synthesize_features() (Michael Petlan) [1705531]
-- [kernel] sched/fair: Fix low cpu usage with high throttling by removing expiration of cpu-local slices (Phil Auld) [1752136]
-- [pci] PCI: hv: Avoid use of hv_pci_dev->pci_slot after freeing it (Mohammed Gamal) [1737567]
-- [pci] hv: Use bytes 4 and 5 from instance ID as the PCI domain numbers (Mohammed Gamal) [1634251]
-- [pci] hv: Detect and fix Hyper-V PCI domain number collision (Mohammed Gamal) [1634251]
-- [pci] hv: Serialize the present and eject work items (Mohammed Gamal) [1634251]
-- [scsi] scsi: qla2xxx: Use correct size in call to dma_free_coherent() in qla2400_sp_unmap() (Himanshu Madhani) [1668767]
-- [kernel] kernel/panic.c: Fix TAINT_UNSAFE_SMP comment (Prarit Bhargava) [1731549]
-
-* Tue Oct 01 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1100.el7]
-- [virt] KVM: coalesced_mmio: add bounds checking (Bandan Das) [1746798] {CVE-2019-14821}
-- [iommu] iommu/amd: Flush old domains in kdump kernel (Jerry Snitselaar) [1738735]
-- [iommu] Revert "iommu/amd: Suppress IO_PAGE_FAULTs in kdump kernel" (Jerry Snitselaar) [1738735]
-- [tools] perf script: Fix crash with printing mixed trace point and other events (Michael Petlan) [1741743]
-- [kvm] kvm/x86: Move MSR_IA32_ARCH_CAPABILITIES to array emulated_msrs (Paul Lai) [1708465]
-- [kvm] kvm: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts (Paul Lai) [1708465]
-- [kvm] kvm: vmx: Tell the nested hypervisor to skip L1D flush on vmentry (Paul Lai) [1708465]
-- [kvm] kvm: vmx: support MSR_IA32_ARCH_CAPABILITIES as a feature MSR (Paul Lai) [1708465]
-- [kvm] kvm: x86: Introduce kvm_get_msr_feature() (Paul Lai) [1708465]
-- [kvm] kvm: x86: Add a framework for supporting MSR-based features (Paul Lai) [1708465]
-- [hv] hv: vmbus: Offload the handling of channels to two workqueues (Mohammed Gamal) [1747352]
-- [hv] hv: vmbus: Use cpumask_var_t for on-stack cpu mask (Mohammed Gamal) [1747352]
-- [hv] hv: vmbus: Fix the offer_in_progress in vmbus_process_offer() (Mohammed Gamal) [1747352]
-- [drm] drm/nouveau/kms/nv50-: Don't create MSTMs for eDP connectors (Lyude Paul) [1728383]
-- [x86] x86/acpi: Prevent LAPIC id 0xff from being accounted (David Arcari) [1755008]
-- [x86] perf/x86/intel: Fix spurious NMI on fixed counter (Michael Petlan) [1755134]
-- [x86] perf/x86/intel: Fix race in intel_pmu_disable_event() (Michael Petlan) [1755134]
-
-* Wed Sep 25 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1099.el7]
-- [char] tpm: tpm_try_transmit() refactor error flow (Jerry Snitselaar) [1731225]
-- [powerpc] powerpc/pseries: correctly track irq state in default idle (Steve Best) [1751970]
-- [md] raid5 improve too many read errors msg by adding limits (Nigel Croxon) [1700665]
-- [netdrv] ixgbe: Prevent u8 wrapping of ITR value to something less than 10us (Ken Cox) [1750856]
-- [kernel] sched: Skip double execution of pick_next_task_fair() (Phil Auld) [1750819]
-
-* Mon Sep 23 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1098.el7]
-- [powerpc] powerpc/rtas: use device model APIs and serialization during LPM (Steve Best) [1742885]
-- [nvme] nvme: don't ask blk-mq to handle timed-out request (Ming Lei) [1750202]
-- [block] blk-mq: mark request as REQ_TIMEOUT when .timeout() is called (Ming Lei) [1750202]
-- [block] blk-mq: introduce blk_mq_clear_rq_complete() (Ming Lei) [1750202]
-- [block] blk-mq: remove 'sync' argument from __blk_mq_complete_request() (Ming Lei) [1750202]
-
-* Sat Sep 21 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1097.el7]
-- [tools] perf version: Fix segfault due to missing OPT_END() (Michael Petlan) [1750687]
-- [net] vsock: split dwork to avoid reinitializations (Artem Savkov) [1650408]
-- [fs] fscache: Don't use a constructor function on the slab allocator (David Howells) [1739996]
-- [tools] tools/power turbostat: Fix Haswell Core systems (Prarit Bhargava) [1715723]
-- [netdrv] net/ibmvnic: Fix missing { in __ibmvnic_reset (Steve Best) [1751815]
-- [netdrv] net/ibmvnic: free reset work of removed device from queue (Steve Best) [1751815]
-- [netdrv] ibmvnic: Do not process reset during or after device removal (Steve Best) [1751815]
-- [netdrv] ice: add missing ndo_size (Jonathan Toppins) [1752586]
-- [kernel] tracing: Fix wraparound problems in "uptime" trace clock (Aristeu Rozanski) [1507122]
-- [netdrv] e1000e: add workaround for possible stalled packet (Ken Cox) [1711234 1668912]
-- [scsi] virtio_scsi: support multi hw queue of blk-mq (Ming Lei) [1752305]
-- [drm] drm/edid: Fix a missing-check bug in drm_load_edid_firmware() (Lyude Paul) [1732709] {CVE-2019-12382}
-- [netdrv] e1000e: PCIm function state support (Ken Cox) [1689436]
-
-* Fri Sep 20 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1096.el7]
-- [net] ip_gre: fix parsing gre header in ipgre_err (Guillaume Nault) [1750474]
-- [net] ipip: only increase err_count for some certain type icmp in ipip_err (Guillaume Nault) [1750474]
-- [net] tunnels: Don't apply GRO to multiple layers of encapsulation. (Guillaume Nault) [1750474]
-- [net] ip_tunnel: fix ip tunnel lookup in collect_md mode (Guillaume Nault) [1750474]
-- [net] netfilter: ipset: Fix rename concurrency with listing (Stefano Brivio) [1751322]
-- [net] ipv4: Return error for RTA_VIA attribute (Stefano Brivio) [1751301]
-- [net] netem: fix backlog accounting for corrupted GSO frames (Davide Caratti) [1750670]
-- [net] netem: fix skb length BUG_ON in __skb_to_sgvec (Davide Caratti) [1750670]
-- [net] sched: act_sample: fix psample group handling on overwrite (Davide Caratti) [1750670]
-- [net] sched: don't dereference a->goto_chain to read the chain index (Davide Caratti) [1750670]
-- [net] l2tp: prevent pppol2tp_connect() from creating kernel sockets (Guillaume Nault) [1749931]
-- [net] l2tp: check sockaddr length in pppol2tp_connect() (Guillaume Nault) [1749931]
-- [net] l2tp: do not accept arbitrary sockets (Guillaume Nault) [1749931]
-- [net] l2tp: cast l2tp traffic counter to unsigned (Guillaume Nault) [1749931]
-- [net] l2tp: don't mask errors in pppol2tp_getsockopt() (Guillaume Nault) [1749931]
-- [net] l2tp: don't mask errors in pppol2tp_setsockopt() (Guillaume Nault) [1749931]
-- [net] l2tp: Correctly return -EBADF from pppol2tp_getname. (Guillaume Nault) [1749931]
-- [net] sctp: use transport pf_retrans in sctp_do_8_2_transport_strike (Xin Long) [1750092]
-- [net] sctp: fix the transport error_count check (Xin Long) [1750092]
-- [net] sctp: fix warning "NULL check before some freeing functions is not needed" (Xin Long) [1750092]
-- [net] sctp: change to hold sk after auth shkey is created successfully (Xin Long) [1750092]
-- [net] sctp: Free cookie before we memdup a new one (Xin Long) [1750092]
-- [net] Fix memory leak in sctp_process_init (Xin Long) [1750092]
-- [net] sctp: Check address length before reading address family (Xin Long) [1750092]
-- [net] sctp: initialize _pad of sockaddr_in before copying to user memory (Xin Long) [1750092]
-- [net] sctp: not copy sctp_sock pd_lobby in sctp_copy_descendant (Xin Long) [1750092]
-- [net] sctp: Replace use of sockets_allocated with specified macro. (Xin Long) [1750092]
-- [net] ipv6: fix neighbour resolution with raw socket (Stefano Brivio) [1724586]
-- [net] ipv6: constify rt6_nexthop() (Stefano Brivio) [1724586]
-
-* Thu Sep 19 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1095.el7]
-- [scsi] scsi: fnic: fix msix interrupt allocation (Govindarajulu Varadarajan) [1745053]
-- [scsi] scsi: fnic: print port speed only at driver init or speed change (Govindarajulu Varadarajan) [1745053]
-- [nvme] nvmet: fix setting ns queue's segment boundary (David Milburn) [1741853]
-- [nvme] nvmet: set loop queue's segment boundary mask as PAGE_SIZE - 1 (David Milburn) [1741853]
-- [nvme] nvme: update comment to make the code easier to read (David Milburn) [1741853]
-- [nvme] nvmet: Fix use-after-free bug when a port is removed (David Milburn) [1741853]
-- [nvme] nvmet: return a specified error it subsys_alloc fails (David Milburn) [1741853]
-- [nvme] nvmet: add safety check for subsystem lock during nvmet_ns_changed (David Milburn) [1741853]
-- [nvme] nvmet: use unlikely for req status check (David Milburn) [1741853]
-- [nvme] nvmet: support fabrics sq flow control (David Milburn) [1741853]
-- [nvme] nvme-loop: kill timeout handler (David Milburn) [1741853]
-- [netdrv] i40e: fix retrying in i40e_aq_get_phy_capabilities (Stefan Assmann) [1720236]
-- [netdrv] i40e: Persistent LLDP support (Stefan Assmann) [1720236]
-- [netdrv] i40e: Remove function i40e_update_dcb_config() (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix crash caused by stress setting of VF MAC addresses (Stefan Assmann) [1720236]
-- [netdrv] i40e: reset veb.tc_stats when resetting veb.stats (Stefan Assmann) [1720236]
-- [netdrv] i40e: Update FW API version to 1.9 (Stefan Assmann) [1720236]
-- [netdrv] i40e: Add drop mode parameter to set mac config (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix shifts of signed values (Stefan Assmann) [1720236]
-- [netdrv] i40e: add check on i40e_configure_tx_ring() return value (Stefan Assmann) [1720236]
-- [netdrv] i40e: Check if transceiver implements DDM before access (Stefan Assmann) [1720236]
-- [netdrv] i40e: reduce stack usage in i40e_set_fc (Stefan Assmann) [1720236]
-- [netdrv] i40e: no need to check return value of debugfs_create functions (Stefan Assmann) [1720236]
-- [netdrv] i40e: Remove unicast log when VF is leaving multicast mode (Stefan Assmann) [1720236]
-- [netdrv] i40e: verify string count matches even on early return (Stefan Assmann) [1720236]
-- [netdrv] i40e: Log info when PF is entering and leaving Allmulti mode (Stefan Assmann) [1720236]
-- [netdrv] i40e: Update visual effect for advertised FEC mode (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix code comments (Stefan Assmann) [1720236]
-- [netdrv] i40e: don't report link up for a VF who hasn't enabled queues (Stefan Assmann) [1720236]
-- [netdrv] i40e: Log disable-fw-lldp flag change by ethtool (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix incorrect ethtool statistics veb and veb.tc_ (Stefan Assmann) [1720236]
-- [netdrv] i40e: Use dev_get_drvdata (Stefan Assmann) [1720236]
-- [netdrv] net: Use skb accessors in network drivers (Stefan Assmann) [1720236]
-- [netdrv] i40e/i40e_virtchnl_pf: Use struct_size() in kzalloc() (Stefan Assmann) [1720236]
-- [netdrv] i40e: update copyright string (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix descriptor count manipulation (Stefan Assmann) [1720236]
-- [netdrv] i40e: missing priorities for any QoS traffic (Stefan Assmann) [1720236]
-- [netdrv] i40e: Add log entry while creating or deleting TC0 (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix incorrect function documentation comment (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix for missing "link modes" info in ethtool (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix 'Unknown bps' in dmesg for 2.5Gb/5Gb speeds (Stefan Assmann) [1720236]
-- [netdrv] i40e: mark expected switch fall-through (Stefan Assmann) [1720236]
-- [netdrv] i40e: Missing response checks in driver when starting/stopping FW LLDP (Stefan Assmann) [1720236]
-- [netdrv] i40e: remove duplicate stat calculation for tx_errors (Stefan Assmann) [1720236]
-- [netdrv] i40e: Check if the BAR size is large enough before writing to registers (Stefan Assmann) [1720236]
-- [netdrv] i40e: Missing response checks in driver when starting/stopping FW LLDP (Stefan Assmann) [1720236]
-- [netdrv] i40e: add input validation for virtchnl handlers (Stefan Assmann) [1720236]
-- [netdrv] i40e: Improve AQ log granularity (Stefan Assmann) [1720236]
-- [netdrv] i40e: Add bounds check for charray (Stefan Assmann) [1720236]
-- [netdrv] i40e: Use signed variable (Stefan Assmann) [1720236]
-- [netdrv] i40e: add constraints for accessing veb array (Stefan Assmann) [1720236]
-- [netdrv] i40e: let untrusted VF to create up to 16 VLANs (Stefan Assmann) [1720236]
-- [netdrv] i40e: add functions stubs to support EEE (Stefan Assmann) [1720236]
-- [netdrv] i40e: Check and set the PF driver state first in i40e_ndo_set_vf_mac (Stefan Assmann) [1720236]
-- [netdrv] i40e: Use LLDP ethertype define ETH_P_LLDP (Stefan Assmann) [1720236]
-- [netdrv] i40e: Memory leak in i40e_config_iwarp_qvlist (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix of memory leak and integer truncation in i40e_virtchnl.c (Stefan Assmann) [1720236]
-- [netdrv] i40e: Use struct_size() in kzalloc() (Stefan Assmann) [1720236]
-- [netdrv] i40e: Revert ShadowRAM checksum calculation change (Stefan Assmann) [1720236]
-- [netdrv] i40e: missing input validation on VF message handling by the PF (Stefan Assmann) [1720236]
-- [netdrv] i40e: Add support for X710 B/P & SFP+ cards (Stefan Assmann) [1720236]
-- [netdrv] i40e: Wrong truncation from u16 to u8 (Stefan Assmann) [1720236]
-- [netdrv] i40e: add num_vectors checker in iwarp handler (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix the typo in adding 40GE KR4 mode (Stefan Assmann) [1720236]
-- [netdrv] i40e: Setting VF to VLAN 0 requires restart (Stefan Assmann) [1720236]
-- [netdrv] i40e: add new pci id for X710/XXV710 N3000 cards (Stefan Assmann) [1720236]
-- [netdrv] i40e: VF's promiscuous attribute is not kept (Stefan Assmann) [1720236]
-- [netdrv] i40e: print PCI vendor and device ID during probe (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix misleading message about promisc setting on un-trusted VF (Stefan Assmann) [1720236]
-- [netdrv] i40e: update version number (Stefan Assmann) [1720236]
-- [netdrv] i40e: remove out-of-range comparisons in i40e_validate_cloud_filter (Stefan Assmann) [1720236]
-- [netdrv] i40e: Further implementation of LLDP (Stefan Assmann) [1720236]
-- [netdrv] i40e: Report advertised link modes on 40GBase_LR4, CR4 and fibre (Stefan Assmann) [1720236]
-- [netdrv] i40e: ShadowRAM checksum calculation change (Stefan Assmann) [1720236]
-- [netdrv] i40e: remove error msg when vf with port vlan tries to remove vlan 0 (Stefan Assmann) [1720236]
-- [netdrv] i40e: change behavior on PF in response to MDD event (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix for allowing too many MDD events on VF (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix misleading error message (Stefan Assmann) [1720236]
-- [netdrv] i40e: Able to add up to 16 MAC filters on an untrusted VF (Stefan Assmann) [1720236]
-- [netdrv] i40e: Report advertised link modes on 40GBASE_SR4 (Stefan Assmann) [1720236]
-- [netdrv] i40e: The driver now prints the API version in error message (Stefan Assmann) [1720236]
-- [netdrv] i40e: Changed maximum supported FW API version to 1.8 (Stefan Assmann) [1720236]
-- [netdrv] i40e: Remove misleading messages for untrusted VF (Stefan Assmann) [1720236]
-- [netdrv] i40e: Update i40e_init_dcb to return correct error (Stefan Assmann) [1720236]
-- [netdrv] i40e: Fix for 10G ports LED not blinking (Stefan Assmann) [1720236]
-- [netdrv] i40e: save PTP time before a device reset (Stefan Assmann) [1720236]
-- [netdrv] i40e: don't allow changes to HW VLAN stripping on active port VLANs (Stefan Assmann) [1720236]
-- [netdrv] i40e: Queues are reserved despite "Invalid argument" error (Stefan Assmann) [1720236]
-- [netdrv] i40e: move i40e_xsk_umem function (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix i40e_ptp_adjtime when given a negative delta (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix XDP_REDIRECT/XDP xmit ring cleanup race (Stefan Assmann) [1720236]
-- [netdrv] i40e: fix potential RX buffer starvation for AF_XDP (Stefan Assmann) [1720236]
-- [netdrv] net: bpf: remove XDP_QUERY_XSK_UMEM enumerator (Stefan Assmann) [1720236]
-
-* Wed Sep 18 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1094.el7]
-- [scsi] libiscsi: fall back to sendmsg for slab pages (Oleksandr Natalenko) [1720506]
-- [fs] ext4: do not delete unlinked inode from orphan list on failed truncate (Lukas Czerner) [1747387]
-- [fs] ext4: wait for outstanding dio during truncate in nojournal mode (Lukas Czerner) [1747387]
-- [fs] ext4: fix data corruption caused by overlapping unaligned and aligned IO (Lukas Czerner) [1747387]
-- [fs] ext4: actually request zeroing of inode table after grow (Lukas Czerner) [1747387]
-- [fs] jbd2: check superblock mapped prior to committing (Lukas Czerner) [1747387]
-- [fs] ext4: prohibit fstrim in norecovery mode (Lukas Czerner) [1747387]
-- [fs] ext4: cleanup bh release code in ext4_ind_remove_space() (Lukas Czerner) [1747387]
-- [fs] ext4: brelse all indirect buffer in ext4_ind_remove_space() (Lukas Czerner) [1747387]
-- [fs] ext4: report real fs size after failed resize (Lukas Czerner) [1747387]
-- [fs] ext4: add missing brelse() in add_new_gdb_meta_bg() (Lukas Czerner) [1747387]
-- [fs] ext4: add missing brelse() in add_new_gdb_meta_bg() (Lukas Czerner) [1747387]
-- [fs] ext4: avoid panic during forced reboot due to aborted journal (Lukas Czerner) [1747387]
-- [fs] ext4: avoid panic during forced reboot (Lukas Czerner) [1747387]
-- [fs] ext4: fix NULL pointer dereference while journal is aborted (Lukas Czerner) [1747387]
-- [fs] jbd2: fix invalid descriptor block checksum (Lukas Czerner) [1747387]
-- [fs] jbd2: clear dirty flag when revoking a buffer from an older transaction (Lukas Czerner) [1747387]
-- [fs] jbd2: fix deadlock while checkpoint thread waits commit thread to finish (Lukas Czerner) [1747387]
-- [fs] gfs2: Use async glocks for rename (Robert S Peterson) [1677686]
-- [fs] gfs2: create function gfs2_glock_update_hold_time (Robert S Peterson) [1677686]
-- [fs] gfs2: separate holder for rgrps in gfs2_rename (Robert S Peterson) [1677686]
-- [netdrv] net/mlx5e: Support LAG TX port affinity distribution (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5e: Expose new function for TIS destroy loop (Alaa Hleihel) [1724344]
-- [include] net/mlx5: Add lag_tx_port_affinity capability bit (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5e: Re-work TIS creation functions (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5e: Add device out of buffer counter (Alaa Hleihel) [1724344]
-- [include] net/mlx5: Add support for VNIC_ENV internal rq counter (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Fix the order of fc_stats cleanup (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Add flow counter pool (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Add flow counter bulk infrastructure (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Add flow counter bulk allocation hardware bits and command (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Refactor and optimize flow counter bulk query (Alaa Hleihel) [1724344]
-- [netdrv] net/mlx5: Move flow counters data structures from flow steering header (Alaa Hleihel) [1724344]
-- [netdrv] Add missing ndo_size parameter (Jonathan Toppins) [1715376]
-- [nvme] nvme: Revert Simplify metadata setup (David Milburn) [1746946]
-- [scsi] hpsa: bump driver version (Joseph Szczypek) [1741355]
-- [scsi] scsi: hpsa: remove printing internal cdb on tag collision (Joseph Szczypek) [1741355]
-- [scsi] scsi: hpsa: correct scsi command status issue after reset (Joseph Szczypek) [1741355]
-- [vhost] vhost: make sure log_num < in_num (Eugenio Perez) [1750880] {CVE-2019-14835}
-
-* Mon Sep 16 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1093.el7]
-- [wireless] ath9k_htc: use non-QoS NDP for AP probing (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [wireless] wil6210: compile with new cfg80211 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [wireless] rtw88: compile with new mac80211 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [wireless] mac80211: call rate_control_send_low() internally (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [wireless] Backport iwlwifi driver from linux-5.3-rc5 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [net] Backport mac80211 from linux-5.3-rc5 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [net] Backport wireless core from linux-5.3-rc5 (Stanislaw Gruszka) [1641110 1641098 1641096 1640935]
-- [net] devlink: fix double lock on devlink register dump (Paolo Abeni) [1750664]
-- [net] fix ifindex collision during namespace removal (Paolo Abeni) [1750810]
-- [net] neigh: fix use-after-free read in pneigh_get_next (Paolo Abeni) [1750810]
-- [net] gro: fix use-after-free read in napi_gro_frags() (Paolo Abeni) [1750810]
-- [net] openvswitch: fix csum updates for MPLS actions (Eelco Chaudron) [1749269]
-- [net] bridge: mcast: don't delete permanent entries when fast leave is enabled (Hangbin Liu) [1749658]
-- [net] bridge: delete local fdb on device init failure (Hangbin Liu) [1749658]
-- [net] bridge: stp: don't cache eth dest pointer before skb pull (Hangbin Liu) [1749658]
-- [net] bridge: mcast: fix stale ipv6 hdr pointer when handling v6 query (Hangbin Liu) [1749658]
-- [net] bridge: mcast: fix stale nsrcs pointer in igmp3/mld2 report handling (Hangbin Liu) [1749658]
-- [net] bridge: fix per-port af_packet sockets (Hangbin Liu) [1749658]
-- [net] bridge: multicast: use rcu to access port list from br_multicast_start_querier (Hangbin Liu) [1749658]
-- [net] bridge: Fix ethernet header pointer before check skb forwardable (Hangbin Liu) [1749658]
-- [net] bridge: fix early call to br_stp_change_bridge_id and plug newlink leaks (Hangbin Liu) [1749658]
-- [net] bridge: add vlan_tunnel to bridge port policies (Hangbin Liu) [1749658]
-- [net] bridge: fix returning of vlan range op errors (Hangbin Liu) [1749658]
-- [net] tcp: reset sk_send_head in tcp_write_queue_purge (Marcelo Leitner) [1748358] {CVE-2019-15239}
-- [net] netfilter: nf_log: don't hold nf_log_mutex during user access (Florian Westphal) [1749777]
-- [net] netfilter: nf_queue: augment nfqa_cfg_policy (Florian Westphal) [1749777]
-- [net] netfilter: nf_tables: add missing netlink attrs to policies (Florian Westphal) [1749777]
-- [net] netfilter: IDLETIMER: be syzkaller friendly (Florian Westphal) [1749777]
-- [net] netfilter: x_tables: fix missing timer initialization in xt_LED (Florian Westphal) [1749777]
-- [net] netfilter: xt_RATEEST: acquire xt_rateest_mutex for hash insert (Florian Westphal) [1749777]
-- [net] netfilter: xt_bpf: add overflow checks (Florian Westphal) [1749777]
-- [net] netfilter: x_tables: avoid stack-out-of-bounds read in xt_copy_counters_from_user (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: fix incorrect nf_ct_put during hash resize (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: make it safer when updating ct->status (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: Fix regression in CTA_STATUS processing (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: fix deadlock due to acquire _expect_lock twice (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: drop the incorrect cthelper module request (Florian Westphal) [1749777]
-- [net] netfilter: nfnetlink_queue: reject verdict request from different portid (Florian Westphal) [1749777]
-- [net] nf_conntrack: avoid kernel pointer value leak in slab name (Florian Westphal) [1749777]
-- [net] netfilter: nfnetlink: don't probe module if it exists (Florian Westphal) [1749777]
-- [net] netfilter: ctnetlink: put back references to master ct and expect objects (Florian Westphal) [1749777]
-- [net] netfilter: xt_socket: fix a stack corruption bug (Florian Westphal) [1749777]
-- [net] ifb: add multiqueue operation (Davide Caratti) [1746626]
-- [net] netfilter: ipset: Copy the right MAC address in bitmap:ip, mac and hash:ip, mac sets (Stefano Brivio) [1723609]
-- [net] netfilter: ipset: Actually allow destination MAC address for hash:ip, mac sets too (Stefano Brivio) [1723609]
-- [net] ipset: Fix memory accounting for hash types on resize (Stefano Brivio) [1711520]
-- [net] uapi: Add 802.11 Preauthentication to if_ether (Ivan Vecera) [1748261]
-
-* Mon Sep 16 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1092.el7]
-- [kernel] sched/core: Use TASK_ON_RQ_MIGRATING in __migrate_swap_task (Phil Auld) [1616140]
-- [kernel] sched/fair: Remove double_lock_balance() from load_balance() (Phil Auld) [1616140]
-- [kernel] sched/fair: Remove double_lock_balance() from active_load_balance_cpu_stop() (Phil Auld) [1616140]
-- [kernel] sched: Remove double_rq_lock() from __migrate_task() (Phil Auld) [1616140]
-- [kernel] sched: Fix CACHE_HOT_BUDY condition (Phil Auld) [1616140]
-- [kernel] sched: Clean up the task_hot() function (Phil Auld) [1616140]
-- [kernel] sched/deadline: Make update_curr_dl() more accurate (Phil Auld) [1616140]
-- [kernel] sched/deadline: Fix the intention to re-evalute tick dependency for offline CPU (Phil Auld) [1616140]
-- [kernel] sched/deadline: Fix switched_from_dl() warning (Phil Auld) [1616140]
-- [kernel] sched/deadline: Fix missing clock update (Phil Auld) [1616140]
-- [kernel] sched/deadline: Fix switching to -deadline (Phil Auld) [1616140]
-- [scsi] scsi: qla2xxx: Fix driver reload for ISP82xx (Himanshu Madhani) [1743185]
-- [scsi] scsi: qla2xxx: Fix flash read for Qlogic ISPs (Himanshu Madhani) [1743185]
-- [scsi] scsi: Ensure SCSI EH wakeup in when host_failed == host_busy (Ewan Milne) [1668869]
-- [netdrv] virtio_net: fix error return code in virtnet_probe() (Eugenio Perez) [1589888]
-- [netdrv] net_failover: fix typo in net_failover_slave_register() (Eugenio Perez) [1589888]
-- [netdrv] net_failover: Use netdev_features_t instead of u32 (Eugenio Perez) [1589888]
-- [documentation] [netdrv] virtio_net: Extend virtio to use VF datapath when available (Eugenio Perez) [1589888]
-- [uapi] [netdrv] virtio_net: Introduce VIRTIO_NET_F_STANDBY feature bit (Eugenio Perez) [1589888]
-- [netdrv] Introduce net_failover driver (Eugenio Perez) [1589888]
-- [net] Introduce generic failover module (Eugenio Perez) [1589888]
-
-* Fri Sep 13 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1091.el7]
-- [sound] ALSA: hda: Initialize power_state field properly (Jaroslav Kysela) [1750735]
-- [fs] userfaultfd_release: always remove uffd flags and clear vm_userfaultfd_ctx (Alex Gladkov) [1749766]
-- [security] KEYS: add missing permission check for request_key() destination (Vladis Dronov) [1543262] {CVE-2017-17807}
-- [security] KEYS: remove unnecessary get/put of explicit dest_keyring (Vladis Dronov) [1543262] {CVE-2017-17807}
-- [security] KEYS: Strip trailing spaces (Vladis Dronov) [1543262] {CVE-2017-17807}
-- [iommu] iommu/amd: Add support for X2APIC IOMMU interrupts (Suravee Suthikulpanit) [1734847]
-- [nvme] nvme-scsi: updating struct nvme_ctrl (Gopal Tiwari) [1749524]
-- [powercap] powercap/intel_rapl: add support for ICX (Steve Best) [1749265]
-- [nvme] nvmet-rdma: fix null dereference under heavy load (David Milburn) [1737251]
-- [nvme] nvmet-rdma: Add unlikely for response allocated check (David Milburn) [1737251]
-- [nvme] nvme-core: Fix extra device_put() call on error path (David Milburn) [1737251]
-- [nvme] nvme: avoid that deleting a controller triggers a circular locking complaint (David Milburn) [1737251]
-- [nvme] nvme: introduce a helper function for controller deletion (David Milburn) [1737251]
-- [nvme] nvme: unexport nvme_delete_ctrl_sync() (David Milburn) [1737251]
-- [nvme] nvme-rdma: fix possible use-after-free in connect error flow (David Milburn) [1737251]
-- [nvme] nvme-rdma: fix a NULL deref when an admin connect times out (David Milburn) [1737251]
-- [nvme] nvme: remove the .stop_ctrl callout (David Milburn) [1737251]
-- [hwtracing] intel_th: pci: Add support for another Lewisburg PCH (Jiri Olsa) [1714483]
-- [md] block: trace completion of all bios (Xiao Ni) [1741466]
-- [md] md/raid1, raid10: add blktrace records when IO is delayed (Xiao Ni) [1741466]
-- [md] md/bitmap: add blktrace event for writes to the bitmap (Xiao Ni) [1741466]
-- [md] md: add block tracing for bio_remapping (Xiao Ni) [1741466]
-- [md] md: add blktrace event for writes to superblock (Xiao Ni) [1741466]
-- [x86] efi/x86: drop task_lock() from efi_switch_mm() (Scott Wood) [1749081]
-- [scsi] scsi: qla2xxx: cleanup trace buffer initialization (Himanshu Madhani) [1749039]
-- [scsi] scsi: qla2xxx: qla2x00_alloc_fw_dump: set ha->eft (Himanshu Madhani) [1749039]
-
-* Tue Sep 10 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1090.el7]
-- [net] inet: switch IP ID generator to siphash (Xin Long) [1733067] {CVE-2019-10638}
-- [lib] siphash: add cryptographically secure PRF (Xin Long) [1733067] {CVE-2019-10638}
-- [fs] dcache: allow word-at-a-time name hashing with big-endian CPUs (Xin Long) [1733067] {CVE-2019-10638}
-- [net] tun: allow positive return values on dev_get_valid_name() call (Xin Long) [1723645] {CVE-2018-7191}
-- [net] tun: call dev_get_valid_name() before register_netdevice() (Xin Long) [1723645] {CVE-2018-7191}
-- [net] xfrm/xfrm_policy: fix dst dev null pointer dereference in collect_md mode (Hangbin Liu) [1725596]
-- [net] ipv4/icmp: fix rt dst dev null pointer dereference (Hangbin Liu) [1725596]
-- [net] ipv6_gre: Fix GRO to work on IPv6 over GRE tap (Hangbin Liu) [1725596]
-- [net] ip6_gre: add ip6 gre and gretap collect_md mode (Hangbin Liu) [1725596]
-- [net] ip6_gre: reload ipv6h in prepare_ip6gre_xmit_ipv6 (Hangbin Liu) [1725596]
-- [net] ip6_gre: Refactor ip6gre xmit codes (Hangbin Liu) [1725596]
-- [net] gre6: use log_ecn_error module parameter in ip6_tnl_rcv() (Hangbin Liu) [1725596]
-- [net] ip6_tunnel: collect_md xmit: Use ip_tunnel_key's provided src address (Hangbin Liu) [1725596]
-- [net] adding missing rcu_read_unlock in ipxip6_rcv (Hangbin Liu) [1725596]
-- [net] ip6_tunnel: fix ip6 tunnel lookup in collect_md mode (Hangbin Liu) [1725596]
-- [net] ip6_tunnel: fix potential issue in __ip6_tnl_rcv (Hangbin Liu) [1725596]
-- [net] ip6_tunnel: add collect_md mode to IPv6 tunnels (Hangbin Liu) [1725596]
-- [net] sched: fold tcf_block_cb_call() into tc_setup_cb_call() (Ivan Vecera) [1660900]
-- [net] sched: Remove egdev mechanism (Ivan Vecera) [1660900]
-- [net] fix IPv6 prefix route residue (Stefano Brivio) [1725990]
-- [net] vxlan: Don't assume linear buffers in error handler (Stefano Brivio) [1720150]
-- [net] geneve: Don't assume linear buffers in error handler (Stefano Brivio) [1720150]
-- [net] ipv6: Return error for RTA_VIA attribute (Stefano Brivio) [1725992]
-- [net] netlink: fix missing newline in the implementation of NL_SET_ERR_MSG (Ivan Vecera) [1724867]
-- [net] Make RX-FCS and HW GRO mutually exclusive (Ivan Vecera) [1745672]
-- [net] Make RX-FCS and LRO mutually exclusive (Ivan Vecera) [1745672]
-- [net] af_unix: split 'u->readlock' into two: 'iolock' and 'bindlock' (Vladis Dronov) [1582552]
-- [net] ppp: Remove direct skb_queue_head list pointer access. (Ivan Vecera) [1746914]
-- [net] fq: support filtering a given tin (Ivan Vecera) [1746900]
-- [net] inet: frags: re-introduce skb coalescing for local delivery (Guillaume Nault) [1632906]
-- [net] fib_rules: Added NLM_F_EXCL support to fib_nl_newrule (Hangbin Liu) [1700691]
-- [net] tun: use socket locks for sk_{attach, detatch}_filter (Paolo Abeni) [1725202]
-- [net] introduce lockdep_is_held and update various places to use it (Paolo Abeni) [1725202]
-- [net] tun, bpf: fix suspicious RCU usage in tun_{attach, detach}_filter (Paolo Abeni) [1725202]
-
-* Mon Sep 09 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1089.el7]
-- [fs] xfs: don't crash on null attr fork xfs_bmapi_read (Bill O'Donnell) [1719096]
-- [fs] gfs2: Clean up freeing struct gfs2_sbd (Robert S Peterson) [1737087]
-- [fs] dlm: Don't swamp the CPU with callbacks queued (Robert S Peterson) [1072066]
-- [fs] fs/proc/proc_sysctl.c: fix the default values of i_uid/i_gid on /proc/sys inodes (Alex Gladkov) [1713642]
-- [fs] dquot: For now explicitly don't support filesystems outside of init_user_ns (Alex Gladkov) [1713642]
-- [security] selinux: allow context mounts on tmpfs, ramfs, devpts within user namespaces (Alex Gladkov) [1713642]
-- [fs] vfs: Use upper filesystem inode in bprm_fill_uid() (Alex Gladkov) [1713642]
-- [fs] vfs: open() with O_CREAT should not create inodes with unknown ids (Alex Gladkov) [1713642]
-- [fs] mount: Prevent MNT_DETACH from disconnecting locked mounts (Alex Gladkov) [1713642]
-- [fs] fs: Update i_[ug]id_(read|write) to translate relative to s_user_ns (Alex Gladkov) [1713642]
-- [fs] quota: Ensure qids map to the filesystem (Alex Gladkov) [1713642]
-- [fs] vfs: Don't create inodes with a uid or gid unknown to the vfs (Alex Gladkov) [1713642]
-- [fs] vfs: Don't modify inodes with a uid or gid unknown to the vfs (Alex Gladkov) [1713642]
-- [fs] cred: Reject inodes with invalid ids in set_create_file_as() (Alex Gladkov) [1713642]
-- [fs] fs: Check for invalid i_uid in may_follow_link() (Alex Gladkov) [1713642]
-- [fs] vfs: Verify acls are valid within superblock's s_user_ns. (Alex Gladkov) [1713642]
-- [fs] userns: Handle -1 in k[ug]id_has_mapping when !CONFIG_USER_NS (Alex Gladkov) [1713642]
-- [fs] fs: Refuse uid/gid changes which don't map into s_user_ns (Alex Gladkov) [1713642]
-- [fs] selinux: Add support for unprivileged mounts from user namespaces (Alex Gladkov) [1713642]
-- [fs] fs: Use correct xattr length (Alex Gladkov) [1713642]
-- [fs] capabilities: Use d_find_any_alias() instead of d_find_alias() (Alex Gladkov) [1713642]
-- [fs] commoncap: Handle memory allocation failure. (Alex Gladkov) [1713642]
-- [fs] evm: Don't update hmacs in user ns mounts (Alex Gladkov) [1713642]
-- [fs] vfs: Don't allow changing the link count of an inode with an invalid uid or gid (Alex Gladkov) [1713642]
-- [fs] namei: permit linking with CAP_FOWNER in userns (Alex Gladkov) [1713642]
-- [fs] fs: Allow superblock owner to replace invalid owners of inodes (Alex Gladkov) [1713642]
-- [fs] fs: Allow superblock owner to access do_remount_sb() (Alex Gladkov) [1713642]
-- [fs] capabilities: Allow privileged user in s_user_ns to set security.* xattrs (Alex Gladkov) [1713642]
-- [fs] fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw filesystems (Alex Gladkov) [1713642]
-- [fs] fuse: Allow fully unprivileged mounts (Alex Gladkov) [1713642]
-- [fs] fuse: Restrict allow_other to the superblock's namespace or a descendant (Alex Gladkov) [1713642]
-- [fs] fuse: Support fuse filesystems outside of init_user_ns (Alex Gladkov) [1713642]
-- [fs] fuse: Fail all requests with invalid uids or gids (Alex Gladkov) [1713642]
-
-* Sun Sep 08 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1088.el7]
-- [sound] ALSA: Replace snd_malloc_pages() and snd_free_pages() with standard helpers, take#2 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: us122l: Use alloc_pages_exact() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Use container_of() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: podhd: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: variax: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: pod: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: sizeof (byte) is always 1, use that fact (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Drop superfluous timer helper function (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Assure canceling delayed work at disconnection (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: toneport: Fix broken usage of timer for delayed execution (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: use dynamic buffers (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Convert timers to use timer_setup() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Update DSD support quirks for Oppo and Rotel (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: DSD auto-detection for Playback Designs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: remove some dead code (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix possible NULL dereference at create_yamaha_midi_quirk() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Clean up check_input_term() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Remove superfluous bLength checks (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Unify the release of usb_mixer_elem_info objects (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Simplify parse_audio_unit() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: More validations of descriptor units (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Check mixer unit bitmap yet more strictly (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Fix memory leak at line6_init_pcm() error path (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix invalid NULL check in snd_emuusb_set_samplerate() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Add implicit fb quirk for Behringer UFX1604 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix a stack buffer overflow bug in check_input_term (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix an OOB bug in parse_audio_mixer_unit (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hiface: fix multiple memory leak bugs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Add Pioneer DDJ-SX3 PCM quirck (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Skip bSynchAddress endpoint check if it is invalid (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: fix PCM device order (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Unify audioformat release code (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: fix a memory leak bug (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix gpf in snd_usb_pipe_sanity_check (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Scarlett Gen 2 mixer interface (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Fix a typo (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Fix wrong altsetting for LINE6_PODHD500_1 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: fix Line6 Helix audio format rates (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix parse of UAC2 Extension Units (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Fix write on zero-sized buffer (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: fix sign unintended sign extension on left shifts (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Sanity checks for each pipe and EP types (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Enable .product_name override for Emagic, Unitor 8 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usx2y: fix a double free bug (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Fix a memory leak bug (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Handle the error from snd_usb_mixer_apply_create_quirk() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: line6: Avoid polluting led_* namespace (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb-audio: Add quirk for Focusrite Scarlett Solo (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usx2y: Fix potential NULL pointer dereference (Jaroslav Kysela) [1733130]
-- [sound] ALSA: usb: Clean up with new procfs helpers (Jaroslav Kysela) [1733130]
-- [sound] ALSA: x86: Avoid passing NULL to memory allocators (Jaroslav Kysela) [1733130]
-- [sound] ALSA: intel_hdmi: Use strlcpy() instead of strncpy() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: intel_hdmi: Use the new non-cached allocation (Jaroslav Kysela) [1733130]
-- [sound] ALSA: intel_hdmi: remove redundant variable cfg_val (Jaroslav Kysela) [1733130]
-- [sound] ALSA: emu10k1: Drop superfluous id-uniquification behavior (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Headphone Mic can't record after S3 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Add a quirk model for fixing Huawei Matebook X right speaker (Jaroslav Kysela) [1733130]
-- [documentation] ALSA: hda/realtek - Add model description for Chrome headset button quirk (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Enable micmute LED for Huawei laptops (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Add support of Zhaoxin controller (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Fix intermittent CORB/RIRB stall on Intel chips (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Enable internal speaker & headset mic of ASUS UX431FL (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add quirk for HP Pavilion 15 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fix overridden device-specific initialization (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Fix potential endless loop at applying quirks (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Blacklist PC beep for Lenovo ThinkCentre M73/93 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Check beep whitelist before assigning in all codecs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/ca0132 - Add new SBZ quirk (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Fixes inverted Conexant GPIO mic mute led (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Define a fallback_pin_fixup_tbl for alc269 family (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Expand pin_match function to match upcoming new tbls (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Drop unsol event handler for Intel HDMI codecs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Add a generic reboot_notify (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Let all conexant codec enter D3 when rebooting (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/sigmatel - remove unused variable 'stac9200_core_init' (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add quirk for HP Envy x360 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Set fifo_size for both playback and capture streams (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Inform too slow responses (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Apply workaround for another AMD chip 1022:1487 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Workaround for crackled sound on AMD controller (1022:1457) (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Don't override global PCM hw info flag (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Show the fatal CORB/RIRB error more clearly (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Add a conexant codec entry to let mute led work (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Don't report spurious jack state changes (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Fix i915 reverse port/pin mapping (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Remove duplicated define (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fixed Headphone Mic can't record on Dell platform (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Simplify snd_hdac_refresh_widgets() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Fix widget_mutex incomplete protection (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Fix race between creating and refreshing sysfs entries (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/ca0132 - remove redundant assignment to variable 'changed' (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Change front mic location for Lenovo M710q (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Add quirks for several Clevo notebook barebones (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - consider eld_valid also in sync_eld_via_acomp() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Add Elkhart Lake PCI ID (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: fix a mask for unsolicited event tags (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/ca0132: Use struct_size() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: Use struct_size() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Update headset mode for ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: move polling_mode flag to struct hdac_bus (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda: assign polling_mode after azx_bus_init (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Force polling mode on CNL for fixing codec communication (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Set default power save node to 0 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Check headset type by unplug and resume (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fix for Lenovo B50-70 inverted internal microphone bug (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Corrected fixup for System76 Gazelle (gaze14) (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Avoid superfluous COEF EAPD setups (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fixup headphone noise via runtime suspend (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Support low power consumption for ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/intel: add CometLake PCI IDs (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Support low power consumption for ALC295 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Consider eld_valid when reporting jack event (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/hdmi - Read the pin sense from register when repolling (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Apply the fixup for ASUS Q325UAR (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Register irq handler after the chip initialization (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - EAPD turn on later (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fixed Dell AIO speaker noise (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add new Dell platform for headset mode (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - add two more pin configuration sets to quirk table (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Add two more machines to the power_save_blacklist (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add quirk for Tuxedo XC 1509 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Move to ACT_INIT state (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset MIC of Acer TravelMate B114-21 with ALC233 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/ca0132 - Simplify alt firmware loading code (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist (Jaroslav Kysela) [1733130]
-- [sound] ALSA: hda - Record the current power state before suspend/resume calls (Jaroslav Kysela) [1733130]
-- [sound] ALSA: aloop: Support S24 sample formats (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Be more restrictive about when a drain is allowed (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Don't allow paritial drain operations on capture streams (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Prevent bypasses of set_params (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Fix regression on compressed capture streams (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: Fix stop handling on compressed capture streams (Jaroslav Kysela) [1733130]
-- [sound] ALSA: memalloc: Add fall-through annotation (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: fix incorrect order of dest_client/dest_ports arguments (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Fix potential concurrent access to the deleted pool (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: fix lost wakeup event scenarios in snd_pcm_drain (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Fix refcount_inc() on zero usage (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Break too long mutex context in the write loop (Jaroslav Kysela) [1733130]
-- [sound] ALSA: control: Use struct_size() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: oss: Use struct_size() helper (Jaroslav Kysela) [1733130]
-- [sound] ALSA: core: Don't refer to snd_cards array directly (Jaroslav Kysela) [1733130]
-- [sound] ALSA: core: Fix card races between register and disconnect (Jaroslav Kysela) [1733130]
-- [sound] ALSA: info: Fix racy addition/deletion of nodes (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Correct unlock sequence at snd_seq_client_ioctl_unlock() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Protect racy pool manipulation from OSS sequencer (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Simplify snd_seq_kernel_client_enqueue() helper (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Cover unsubscribe_port() in list_mutex (Jaroslav Kysela) [1733130]
-- [sound] ALSA: Revert "ALSA: seq: Protect in-kernel ioctl calls with mutex" (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Coding style fixes (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Simplify error path in snd_timer_open() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Fix race of get-subscription call vs port-delete ioctls (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Protect in-kernel ioctl calls with mutex (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Align temporary re-locking with irqsave version (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Revert active callback sync check at close (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: Fix OOB-reads from strlcpy (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Make snd_timer_close() really kill pending actions (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Check ack_list emptiness instead of bit flag (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Make sure to clear pending ack list (Jaroslav Kysela) [1733130]
-- [sound] ALSA: timer: Unify timer callback process code (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Don't suspend stream in unrecoverable PCM state (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Fix possible OOB access in PCM oss plugins (Jaroslav Kysela) [1733130]
-- [sound] ALSA: seq: oss: Fix Spectre v1 vulnerability (Jaroslav Kysela) [1733130]
-- [sound] ALSA: rawmidi: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Comment why read blocks when PCM is not running (Jaroslav Kysela) [1733130]
-- [sound] ALSA: PCM: check if ops are defined before suspending PCM (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Revert capture stream behavior change in blocking mode (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: remove a superfluous function declaration (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Fix tight loop of OSS capture stream (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Use the common error path in __snd_pcm_lib_xfer() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Drop unused snd_pcm_substream.file field (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Cleanup snd_pcm_stream_lock() & co (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Remove down_write() hack for snd_pcm_link_rwsem (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: More fine-grained PCM link locking (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Avoid confusing loop in snd_pcm_unlink() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Make PCM linked list consistent while re-grouping (Jaroslav Kysela) [1733130]
-- [sound] ALSA: pcm: Call snd_card_unref() inside in_pcm_file() (Jaroslav Kysela) [1733130]
-- [sound] ALSA: compress: prevent potential divide by zero bugs (Jaroslav Kysela) [1733130]
-- [x86] Revert "acpi: Prevent LAPIC id 0xff from being accounted" (David Arcari) [1744829]
-- [x86] x86/CPU: Add more Icelake model numbers (Steve Best) [1711819]
-- [md] raid5-cache: Need to do start() part job after adding journal device (Xiao Ni) [1737707]
-- [md] revert raid5-cache: use bio chaining (Xiao Ni) [1737707]
-
-* Fri Sep 06 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1087.el7]
-- [nvme] nvme-loop: init nvmet_ctrl fatal_err_work when allocate (Ming Lei) [1747135]
-- [block] block: don't call ioc_exit_icq() with the queue lock held for blk-mq (Ming Lei) [1747127]
-- [scsi] scsi: mpt3sas: Update driver version to 31.100.00.00 (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Run SAS DEVICE STATUS CHANGE EVENT from ISR (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Reduce the performance drop (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Handle fault during HBA initialization (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Add sysfs to know supported features (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Support MEMORY MOVE Tool box command (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Allow ioctls to blocked access status NVMe (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Enumerate SES of a managed PCIe switch (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Update MPI headers to 2.6.8 spec (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Gracefully handle online firmware update (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: memset request frame before reusing (Tomas Henzl) [1740501]
-- [scsi] scsi: mpt3sas: Add support for PCIe Lane margin (Tomas Henzl) [1740501]
-- [wireless] mwifiex: Fix heap overflow in mwifiex_uap_parse_tail_ies() (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Mark expected switch fall-through (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Fix skipped vendor specific IEs (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: fix 802.11n/WPA detection (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Don't abort on small, spec-compliant vendor IEs (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Abort at too short BSS descriptor element (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-- [wireless] mwifiex: Fix possible buffer overflows at parsing bss descriptor (Stanislaw Gruszka) [1721743 1714470] {CVE-2019-10126}
-
-* Wed Sep 04 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1086.el7]
-- [scsi] scsi: scsi_dh_alua: always use a 2 second delay before retrying RTPG (Ewan Milne) [1739159]
-- [scsi] scsi: scsi_dh_alua: Fix possible null-ptr-deref (Ewan Milne) [1739159]
-- [scsi] scsi: scsi_dh_alua: Correct comment for alua_alloc_pg() (Ewan Milne) [1739159]
-- [kernel] genirq: Fix race in register_irq_proc() (Vladis Dronov) [1550998]
-- [scsi] megaraid_sas: remove 'tech preview' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Update driver version to 07.710.50.00 (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add module parameter for FW Async event logging (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Enable msix_load_balance for Invader and later controllers (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Fix calculation of target ID (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Make some symbols static (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Update driver version to 07.710.06.00-rc1 (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Introduce various Aero performance modes (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Use high IOPS queues based on IO workload (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Set affinity for high IOPS reply queues (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Enable coalescing for high IOPS queues (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add support for High IOPS queues (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add support for MPI toolbox commands (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Offload Aero RAID5/6 division calculations to driver (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: RAID1 PCI bandwidth limit algorithm is applicable for only Ventura (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: megaraid_sas: Add check for count returned by HOST_DEVICE_LIST DCMD (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Handle sequence JBOD map failure at driver level (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Don't send FPIO to RL Bypass queue (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: In probe context, retry IOC INIT once if firmware is in fault (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Release Mutex lock before OCR in case of DCMD timeout (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Call disable_irq from process IRQ poll (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Remove few debug counters from IO path (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add 32 bit atomic descriptor support to AERO adapters (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Use struct_size() helper (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Remove unused including <linux/version.h> (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: use DEVICE_ATTR_{RO, RW} (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: use octal permissions instead of constants (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: make max_sectors visible in sys (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: remove set but not used variables 'buff_addr' and 'ci_h' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: remove set but not used variable 'sge_sz' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: remove set but not used variables 'host' and 'wait_time' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: remove set but not used variable 'cur_state' (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Update driver version to 07.708.03.00 (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Export RAID map through debugfs (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Fix MSI-X vector print (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add debug prints for device list (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add prints in suspend and resume path (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Print firmware interrupt status (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Print FW fault information (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Export RAID map id through sysfs (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Print BAR information from driver (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Dump system registers for debugging (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Dump system interface regs from sysfs (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add formatting option for megasas_dump (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Enhance internal DCMD timeout prints (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Enhance prints in OCR and TM path (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Load balance completions across all MSI-X (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: IRQ poll to avoid CPU hard lockups (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Block PCI config space access from userspace during OCR (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Rework code around controller reset (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: fw_reset_no_pci_access required for MFI adapters only (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Remove unused variable target_index (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: fix spelling mistake "oustanding" -> "outstanding" (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Make megasas_host_device_list_query() static (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: reduce module load time (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Remove a bunch of set but not used variables (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: driver version update (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Update structures for HOST_DEVICE_LIST DCMD (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Add support for DEVICE_LIST DCMD in driver (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Rework device add code in AEN path (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Rework code to get PD and LD list (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: Retry reads of outbound_intr_status reg (Tomas Henzl) [1736851]
-- [scsi] scsi: megaraid_sas: correct an info message (Tomas Henzl) [1736851]
-- [netdrv] hv_netvsc: fix network namespace issues with VF support (Mohammed Gamal) [1741334]
-- [netdrv] hv_netvsc: move VF to same namespace as netvsc device (Mohammed Gamal) [1741334]
-- [netdrv] hv_netvsc: set master device (Mohammed Gamal) [1741334]
-- [s390] s390/protvirt: avoid memory sharing for diag 308 set/store (Philipp Rudo) [1745609]
-- [netdrv] cxgb4: Add MPS refcounting for alloc/free mac filters (Jonathan Toppins) [1444795]
-- [netdrv] cxgb4: Add MPS TCAM refcounting for cxgb4 change mac (Jonathan Toppins) [1444795]
-- [netdrv] cxgb4: Add MPS TCAM refcounting for raw mac filters (Jonathan Toppins) [1444795]
-- [netdrv] cxgb4: Re-work the logic for mps refcounting (Jonathan Toppins) [1444795]
-- [scsi] scsi: libcxgbi: add a check for NULL pointer in cxgbi_check_route() (Jonathan Toppins) [1712130]
-
-* Tue Sep 03 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1085.el7]
-- [net] Add a define for LLDP ethertype (Ivan Vecera) [1745674]
-- [net] netns: provide pure entropy for net_hash_mix() (Paolo Abeni) [1737436] {CVE-2019-10639}
-- [net] macvlan: Support bonding events (Davide Caratti) [1733589]
-- [net] xfrm: fix sa selector validation (Sabrina Dubroca) [1738848]
-- [net] xfrm: Fix xfrm sel prefix length validation (Sabrina Dubroca) [1738848]
-- [net] macsec: fix checksumming after decryption (Sabrina Dubroca) [1738241]
-- [net] macsec: fix use-after-free of skb during RX (Sabrina Dubroca) [1738241]
-- [net] xfrm6: Remove xfrm_tunnel_notifier (Sabrina Dubroca) [1600467]
-- [net] udplite: fix partial checksum initialization (Hangbin Liu) [1734706]
-- [net] iptunnel: NULL pointer deref for ip_md_tunnel_xmit (Hangbin Liu) [1712790]
-- [net] socket: set sock->sk to NULL after calling proto_ops::release() (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] set sk to NULL when af_alg_release (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [net] sched: act_police: fix memory leak in case of invalid control action (Davide Caratti) [1729033]
-- [net] sched: act_police: disallow 'goto chain' on fallback control action (Davide Caratti) [1729033]
-- [net] sched: act_gact: disallow 'goto chain' on fallback control action (Davide Caratti) [1729033]
-- [net] udp: fix handling of CHECKSUM_COMPLETE packets (Davide Caratti) [1657877]
-- [net] ipv4: fix checksum annotation in udp4_csum_init (Davide Caratti) [1657877]
-- [net] ipv6: fix checksum annotation in udp6_csum_init (Davide Caratti) [1657877]
-- [net] add skb_checksum_complete_unset (Davide Caratti) [1657877]
-- [net] netfilter: nf_tables: fix race when create new element in dynset (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: take module reference when starting a batch (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix module unload race (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix flush after rule deletion in the same batch (Florian Westphal) [1711497]
-- [net] netfilter: nft_compat: use-after-free when deleting targets (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix use-after-free when deleting compat expressions (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: don't use position attribute on rule replacement (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix register ordering (Florian Westphal) [1711497]
-- [net] netfilter: nft_set: fix allocation size overflow in privsize callback. (Florian Westphal) [1711497]
-- [net] netfilter: nft_set_hash: add rcu_barrier() in the nft_rhash_destroy() (Florian Westphal) [1711497]
-- [net] netfilter: nft_dynset: continue to next expr if _OP_ADD succeeded (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: destroy the set if fail to add transaction (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix *leak* when expr clone fail (Florian Westphal) [1711497]
-- [net] netfilter: nf_tables: fix a wrong check to skip the inactive rules (Florian Westphal) [1711497]
-
-* Mon Sep 02 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1084.el7]
-- [crypto] api - Clear CRYPTO_ALG_DEAD bit before registering an alg (Vladis Dronov) [1739854]
-- [crypto] gcm - Fix IV buffer size in crypto_gcm_setkey (Vladis Dronov) [1739854]
-- [crypto] skcipher - Fix blkcipher walk OOM crash (Vladis Dronov) [1739854]
-- [crypto] cryptd - initialize child shash_desc on import (Vladis Dronov) [1739854]
-- [crypto] algif_skcipher - Fix race condition in skcipher_check_key (Vladis Dronov) [1739854]
-- [crypto] algif_hash - Fix race condition in hash_check_key (Vladis Dronov) [1739854]
-- [drm] drm/ast: Fixed reboot test may cause system hanged (Dave Airlie) [1739971]
-- [infiniband] RDMA/qedr: Fix the hca_type and hca_rev returned in device attributes (Manish Chopra) [1730480]
-- [netdrv] qed: RDMA - Fix the hw_ver returned in device attributes (Manish Chopra) [1730480]
-- [netdrv] qede: Handle infinite driver spinning for Tx timestamp (Manish Chopra) [1703778]
-- [fs] vfs: close race between getcwd() and d_move() (Miklos Szeredi) [1631631]
-- [net] sunrpc: Fix possible autodisconnect during connect due to old last_used (Dave Wysochanski) [1723537]
-- [netdrv] qed: Add support for Timestamping the unicast PTP packets (Manish Chopra) [1724205]
-- [powercap] powercap/intel_rapl: Support multi-die/package (David Arcari) [1744258]
-- [x86] perf/x86/intel/uncore: Support multi-die/package (David Arcari) [1744257]
-- [x86] perf/x86/intel/rapl: Support multi-die/package (David Arcari) [1744256]
-- [mm] mm/migrate: fix refcount handling when !hugepage_migration_supported() (Gustavo Duarte) [1726983]
-- [netdrv] bnx2x: Fix VF's VLAN reconfiguration in reload (Manish Chopra) [1729072]
-- [s390] s390: use S390_lowcore instead of tmp variable to load cr7 in set_fs (Yauheni Kaliuta) [1724027]
-
-* Tue Aug 27 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1083.el7]
-- [net] Bluetooth: Fix faulty expression for minimum encryption key size check (Gopal Tiwari) [1743085] {CVE-2019-9506}
-- [net] Bluetooth: Fix regression with minimum encryption key size alignment (Gopal Tiwari) [1743085] {CVE-2019-9506}
-- [net] Bluetooth: Align minimum encryption key size for LE and BR/EDR connections (Gopal Tiwari) [1743085] {CVE-2019-9506}
-- [fs] block/bio: Do not zero user pages (Ming Lei) [1724379]
-- [fs] block: Clear kernel memory before copying to user (Ming Lei) [1724379]
-- [firmware] Revert "efi: Disable local interrupts across efi run-time calls" (Lenny Szubowicz) [1729163]
-- [x86] x86/efi: Use efi_switch_mm() rather than manually twiddling with cr3 (Lenny Szubowicz) [1729163]
-- [x86] x86/efi: Replace efi_pgd with efi_mm.pgd (Lenny Szubowicz) [1729163]
-- [x86] efi: Use efi_mm in x86 as well as ARM (Lenny Szubowicz) [1729163]
-- [x86] x86/mm: Remove kernel_unmap_pages_in_pgd() and efi_cleanup_page_tables() (Lenny Szubowicz) [1729163]
-- [x86] x86/efi: Update efi_thunk() to use the the arch_efi_call_virt*() macros (Lenny Szubowicz) [1729163]
-- [tty] vt/fbcon: deinitialize resources in visual_init() after failed memory allocation (Grzegorz Halat) [1688780]
-- [video] fbcon: Fix vc attr at deinit (Grzegorz Halat) [1688780]
-- [tty] vt, get rid of weird source code flow (Grzegorz Halat) [1688780]
-- [tty] vt, remove reduntant check (Grzegorz Halat) [1688780]
-- [netdrv] be2net: eliminate enable field from be_aic_obj (Petr Oros) [1743152]
-- [netdrv] be2net: disable bh with spin_lock in be_process_mcc (Petr Oros) [1743152]
-- [netdrv] be2net: Synchronize be_update_queues with dev_watchdog (Petr Oros) [1743152]
-- [netdrv] be2net: Signal that the device cannot transmit during reconfiguration (Petr Oros) [1743152]
-- [netdrv] be2net: fix link failure after ethtool offline test (Petr Oros) [1743152]
-- [netdrv] be2net: Fix number of Rx queues used for flow hashing (Petr Oros) [1743152]
-- [netdrv] benet: remove broken and unused macro (Petr Oros) [1743152]
-- [netdrv] be2net: don't flip hw_features when VXLANs are added/deleted (Petr Oros) [1743152]
-- [netdrv] be2net: Mark expected switch fall-through (Petr Oros) [1743152]
-- [netdrv] be2net: fix spelling mistake "seqence" -> "sequence" (Petr Oros) [1743152]
-- [netdrv] be2net: Update the driver version to 12.0.0.0 (Petr Oros) [1743152]
-- [netdrv] be2net: gather debug info and reset adapter (only for Lancer) on a tx-timeout (Petr Oros) [1743152]
-- [netdrv] be2net: move rss_flags field in rss_info to ensure proper alignment (Petr Oros) [1743152]
-- [netdrv] be2net: re-order fields in be_error_recovert to avoid hole (Petr Oros) [1743152]
-- [netdrv] be2net: remove unused tx_jiffies field from be_tx_stats (Petr Oros) [1743152]
-- [netdrv] be2net: move txcp field in be_tx_obj to eliminate holes in the struct (Petr Oros) [1743152]
-- [netdrv] be2net: reorder fields in be_eq_obj structure (Petr Oros) [1743152]
-- [netdrv] be2net: remove unused old custom busy-poll fields (Petr Oros) [1743152]
-- [netdrv] be2net: remove unused old AIC info (Petr Oros) [1743152]
-- [netdrv] be2net: Fix error detection logic for BE3 (Petr Oros) [1743152]
-- [netdrv] bnxt_en: Fix ethtool selftest crash under error conditions (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Fix statistics context reservation logic for RDMA driver (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Cap the returned MSIX vectors to the RDMA driver (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Suppress error messages when querying DSCP DCB capabilities (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Disable bus master during PCI shutdown and driver unload (Jonathan Toppins) [1738649]
-- [netdrv] bnxt_en: Add PCI IDs for 57500 series NPAR devices (Jonathan Toppins) [1738655]
-- [netdrv] bnxt_en: Add device IDs 0x1806 and 0x1752 for 57500 devices (Jonathan Toppins) [1738655]
-- [x86] perf/x86: Apply more accurate check on hypervisor platform (Jiri Olsa) [1664851]
-
-* Sun Aug 25 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1082.el7]
-- [netdrv] ibmvnic: Unmap DMA address of TX descriptor buffers after use (Steve Best) [1743636]
-- [hwmon] hwmon/coretemp: Support multi-die/package (David Arcari) [1741952]
-- [x86] topology: fix typo in definition of topology_logical_die_id (David Arcari) [1741952]
-- [nvme] blk-mq: remove blk_mq_complete_request_sync (Ming Lei) [1730922]
-- [nvme] nvme: wait until all completed request's complete fn is called (Ming Lei) [1730922]
-- [nvme] nvme: don't abort completed request in nvme_cancel_request (Ming Lei) [1730922]
-- [block] blk-mq: introduce blk_mq_tagset_wait_completed_request() (Ming Lei) [1730922]
-- [block] blk-mq: introduce blk_mq_request_completed() (Ming Lei) [1730922]
-- [netdrv] gve: account for lack of netdev_xmit_more() definition (RHEL-only) (John Linville) [1728840]
-- [netdrv] gve: account for min_mtu and max_mtu (RHEL-only) (John Linville) [1728840]
-- [netdrv] gve: remove dependencies on 'static_assert' macro definition (RHEL-only) (John Linville) [1728840]
-- [netdrv] gve: Fix case where desc_cnt and data_cnt can get out of sync (John Linville) [1728840]
-- [netdrv] gve: replace kfree with kvfree (John Linville) [1728840]
-- [netdrv] gve: Remove the exporting of gve_probe (John Linville) [1728840]
-- [netdrv] gve: fix unused variable/label warnings (John Linville) [1728840]
-- [netdrv] gve: Fix error return code in gve_alloc_qpls() (John Linville) [1728840]
-- [netdrv] gve: fix -ENOMEM null check on a page allocation (John Linville) [1728840]
-- [netdrv] gve: Fix u64_stats_sync to initialize start (John Linville) [1728840]
-- [netdrv] gve: Add ethtool support (John Linville) [1728840]
-- [netdrv] gve: Add workqueue and reset support (John Linville) [1728840]
-- [netdrv] gve: Add transmit and receive support (John Linville) [1728840]
-- [netdrv] gve: Add basic driver framework for Compute Engine Virtual NIC (John Linville) [1728840]
-- [nvme] nvme-pci: add missing unlock for reset error (David Milburn) [1713065]
-- [nvme] nvme-pci: fix rapid add remove sequence (David Milburn) [1713065]
-- [fs] devpts: Change the owner of /dev/pts/ptmx to the mounter of /dev/pts (Alex Gladkov) [1522992]
-- [mm] coredump: fix race condition between collapse_huge_page() and core dumping (Andrea Arcangeli) [1722987]
-
-* Fri Aug 23 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1081.el7]
-- [crypto] crypto: blkcipher - fix crash flushing dcache in error path (Vladis Dronov) [1741525]
-- [crypto] crypto: remove direct blkcipher_walk dependency on transform (Vladis Dronov) [1741525]
-- [crypto] crypto: user - prevent operating on larval algorithms (Vladis Dronov) [1741525]
-- [x86] fs/proc/vmcore: Enable dumping of encrypted memory when SEV was active (Lianbo Jiang) [1719685]
-- [x86] x86/kexec: Set the C-bit in the identity map page table when SEV is active (Lianbo Jiang) [1719685]
-- [x86] x86/kexec: Do not map kexec area as decrypted when SEV is active (Lianbo Jiang) [1719685]
-- [mm] Revert "mm: Add invalid memory type to memremap_should_map_decrypted()" (Lianbo Jiang) [1719685]
-- [scsi] scsi: bnx2fc: fix bnx2fc_cmd refcount imbalance in send_srr (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: fix bnx2fc_cmd refcount imbalance in send_rec (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Update the driver version to 2.12.10 (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Limit the IO size according to the FW capability (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Do not allow both a cleanup completion and abort completion for the same request (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Separate out completion flags and variables for abort and cleanup (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Only put reference to io_req in bnx2fc_abts_cleanup if cleanup times out (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: Redo setting source FCoE MAC (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: fix incorrect cast to u64 on shift operation (Nilesh Javali) [1724582]
-- [scsi] scsi: bnx2fc: remove unneeded variable (Nilesh Javali) [1724582]
-- [scsi] scsi: qedi: update driver version to 8.37.0.20 (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: Check targetname while finding boot target information (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: remove set but not used variables 'cdev' and 'udev' (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: remove memset/memcpy to nfunc and use func instead (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: Adjust termination and offload ramrod timers (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: Abort ep termination if offload not scheduled (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: fix spelling mistake "oflload" -> "offload" (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: remove declaration of nvm_image from stack (Nilesh Javali) [1724577]
-- [scsi] scsi: qedi: Remove set but not used variable 'cls_sess' (Nilesh Javali) [1724577]
-- [tools] perf bench numa: Fix cpu0 binding (Michael Petlan) [1637662]
-- [powerpc] powerpc/pseries/mobility: rebuild cacheinfo hierarchy post-migration (Desnes Augusto Nunes do Rosario) [1720930]
-- [powerpc] powerpc/pseries/mobility: prevent cpu hotplug during DT update (Desnes Augusto Nunes do Rosario) [1720930]
-- [powerpc] powerpc/cacheinfo: add cacheinfo_teardown, cacheinfo_rebuild (Desnes Augusto Nunes do Rosario) [1720930]
-
-* Thu Aug 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1080.el7]
-- [s390] s390/cpumf: Add extended counter set definitions for model 8561 and 8562 (Philipp Rudo) [1738245]
-- [s390] s390/cpum_cf: Add support for CPU-MF SVN 6 (Philipp Rudo) [1738245]
-- [s390] s390/dasd: fix endless loop after read unit address configuration (Philipp Rudo) [1740654]
-- [cdrom] cdrom: allocate the sense buffer before calling blk_execute_rq (Maurizio Lombardi) [1722505]
-- [netdrv] net/mlx5e: Prevent encap flow counter update async to user query (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Fix matching of speed to PRM link modes (Alaa Hleihel) [1737464]
-- [include] net/mlx5: Fix modify_cq_in alignment (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Use reversed order when unregister devices (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Print a warning when LRO feature is dropped or not allowed (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fix MR registration flow to use UMR properly (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fix RSS Toeplitz setup to be aligned with the HW specification (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Prevent concurrent MR updates during invalidation (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fix clean_mr() to work in the expected order (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Use direct mkey destroy command upon UMR unreg failure (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fix unreg_umr to ignore the mkey state (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: IPoIB, Add error path in mlx5_rdma_setup_rn (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Rx, Fix checksum calculation for new hardware (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: E-Switch, Fix default encap mode (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Report correctly tag matching rendezvous capability (Alaa Hleihel) [1737464]
-- [infiniband] IB/mlx5: Fixed reporting counters on 2nd port for Dual port RoCE (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Fix mlx5_core_destroy_cq() error flow (Alaa Hleihel) [1737464]
-- [netdrv] mlx5: use RCU lock in mlx5_eq_cq_get() (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: E-Switch, Use correct flags when configuring vlan (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Replace reciprocal_scale in TX select queue function (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Update pci error handler entries and command translation (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Disable rxhash when CQE compress is enabled (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Allocate root ns memory using kzalloc to match kfree (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Avoid double free in fs init error unwinding path (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Fix error handling in mlx5_load() (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: fix csum adjustments caused by RXFCS (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Fix port tunnel GRE entropy control (Alaa Hleihel) [1737464 1721621]
-- [netdrv] net/mlx5e: Allow IPv4 ttl & IPv6 hop_limit rewrite for all L4 protocols (Alaa Hleihel) [1737464 1727577]
-- [netdrv] net/mlx5e: Disallow tc redirect offload cases we don't support (Alaa Hleihel) [1737464 1721626]
-- [netdrv] net/mlx5e: Support ndo_get_phys_port_name for PF under switchdev mode (Alaa Hleihel) [1737464 1721626]
-- [netdrv] net/mlx5e: Expose same physical switch_id for all representors (Alaa Hleihel) [1737464 1721626]
-- [netdrv] net/mlx5e: Support tagged tunnel over bond (Alaa Hleihel) [1721627 1737464 1721625]
-- [netdrv] net/mlx5: Avoid reloading already removed devices (Alaa Hleihel) [1737464 1706083]
-- [netdrv] net/mlx5: E-Switch, Fix double mutex initialization (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Fix possible modify header actions memory leak (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Fix no rewrite fields with the same match (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: reduce stack usage in mlx5_eswitch_termtbl_create (Alaa Hleihel) [1737464 1676558]
-- [netdrv] net/mlx5e: Use termination table for VLAN push actions (Alaa Hleihel) [1737464 1676558]
-- [include] net/mlx5: Introduce termination table bits (Alaa Hleihel) [1737464 1676558]
-- [netdrv] net/mlx5: E-Switch, don't use hardcoded values for FDB prios (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: Pass flow steering objects to fs_cmd (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Replace TC VLAN pop with VLAN 0 rewrite in prio tag mode (Alaa Hleihel) [1737464 1676558]
-- [netdrv] net/mlx5e: ACLs for priority tag mode (Alaa Hleihel) [1737464 1676558]
-- [include] net/mlx5: E-Switch: Introduce prio tag mode (Alaa Hleihel) [1737464 1676558]
-- [netdrv] net/mlx5e: Do not rewrite fields with the same match (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Allow VLAN rewrite of prio field with the same match (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Deny VLAN rewrite if there is no VLAN header match (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5e: Use helpers to get headers criteria and value pointers (Alaa Hleihel) [1737464]
-- [netdrv] net/mlx5: E-Switch, Refactor offloads flow steering init/cleanup (Alaa Hleihel) [1737464]
-- [fs] cifs: Do not reconnect TCP session in add_credits() (Leif Sahlberg) [1588123]
-- [fs] NFSv4: Replace closed stateids with the "invalid special stateid" (Steve Dickson) [1733347]
-- [fs] NFSv4: nfs_set_open_stateid must not trigger state recovery for closed state (Steve Dickson) [1733347]
-- [fs] NFSv4: Check the open stateid when searching for expired state (Steve Dickson) [1733347]
-- [fs] NFSv4: Clean up nfs4_delegreturn_done (Steve Dickson) [1733347]
-- [fs] NFSv4: cleanup nfs4_close_done (Steve Dickson) [1733347]
-- [fs] NFSv4: Retry NFS4ERR_OLD_STATEID errors in layoutreturn (Steve Dickson) [1733347]
-- [fs] pNFS: Retry NFS4ERR_OLD_STATEID errors in layoutreturn-on-close (Steve Dickson) [1733347]
-- [fs] NFSv4: Don't try to CLOSE if the stateid 'other' field has changed (Steve Dickson) [1733347]
-- [fs] NFSv4: Retry CLOSE and DELEGRETURN on NFS4ERR_OLD_STATEID. (Steve Dickson) [1733347]
-- [fs] NFS: Fix a typo in nfs_rename() (Steve Dickson) [1733347]
-- [fs] NFSv4: Fix open create exclusive when the server reboots (Steve Dickson) [1733347]
-- [fs] NFSv4: Add a tracepoint to document open stateid updates (Steve Dickson) [1733347]
-- [fs] NFSv4: Fix OPEN / CLOSE race (Steve Dickson) [1733347]
-- [fs] NFSv4: Place the GETATTR operation before the CLOSE (Steve Dickson) [1733347]
-- [fs] NFS: Retry the CLOSE if the embedded GETATTR is rejected with EACCES (Steve Dickson) [1733347]
-- [fs] NFSv4: Retry the DELEGRETURN if the embedded GETATTR is rejected with EACCES (Steve Dickson) [1733347]
-- [fs] sunrpc: Track writers of the 'channel' file to improve cache_listeners_exist (Dave Wysochanski) [1600616]
-- [fs] sunrpc/cache: handle missing listeners better. (Dave Wysochanski) [1600616]
-
-* Thu Aug 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1079.el7]
-- [block] floppy: fix out-of-bounds read in copy_buffer (Ming Lei) [1735567] {CVE-2019-14283}
-- [bluetooth] Bluetooth: hci_uart: check for missing tty operations (Gopal Tiwari) [1734236] {CVE-2019-10207}
-- [scsi] scsi: qedf: remove set but not used variables (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Update the driver version to 8.37.25.20 (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add return value to log message if scsi_add_host fails (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Print fcport information on wait for upload timeout (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check the return value of start_xmit (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Log message if scsi_add_host fails (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check for fcoe_libfc_config failure (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add comment to display logging levels (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add port_id for fcport into initiate_cleanup debug message (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add LBA to underrun debug messages (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Print scsi_cmd backpointer in good completion path if the command is still being used (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add driver state to 'driver_stats' debugfs node (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Change MSI-X load error message (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: remove memset/memcpy to nfunc and use func instead (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Remove set but not used variable 'fr_len' (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Update the driver version to 8.37.25.19 (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Fix lport may be used uninitialized warning (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Correctly handle refcounting of rdata (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Cleanup rrq_work after QEDF_CMD_OUTSTANDING is cleared (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check for tm_flags instead of cmd_type during cleanup (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add a flag to help debugging io_req which could not be cleaned (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Don't send ABTS for under run scenario (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Don't queue anything if upload is in progress (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check both the FCF and fabric ID before servicing clear virtual link (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: fc_rport_priv reference counting fixes (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add missing return in qedf_scsi_done() (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Wait for upload and link down processing during soft ctx reset (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add additional checks for io_req->sc_cmd validity (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: fixup bit operations (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: fixup locking in qedf_restart_rport() (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: missing kref_put in qedf_xmit() (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Check for link state before processing LL2 packets and send fipvlan retries (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add missing fc_disc_init call after allocating lport (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Correct the memory barriers in qedf_ring_doorbell (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Use a separate completion for cleanup commands (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Modify abort and tmf handler to handle edge condition and flush (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Modify flush routine to handle all I/Os and TMF (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Simplify s/g list mapping (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Add missing return in qedf_post_io_req() in the fcport offload check (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Correct xid range overlap between offloaded requests and libfc requests (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: Do not retry ELS request if qedf_alloc_cmd fails (Nilesh Javali) [1724578]
-- [scsi] scsi: qedf: no need to check return value of debugfs_create functions (Nilesh Javali) [1724578]
-- [acpi] nfit/ars: Avoid stale ARS results (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Allow root to busy-poll the ARS state machine (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Introduce scrub_flags (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Remove ars_start_flags (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Attempt short-ARS even in the no_init_ars case (Jeff Moyer) [1690976]
-- [acpi] nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot (Jeff Moyer) [1690976]
-- [kernel] sched/fair: Fix endless loop in idle_balance() (Phil Auld) [1740941]
-- [kernel] sched/fair: Prevent throttling in early pick_next_task_fair() (Phil Auld) [1740038]
-- [kernel] sched: Check for stop task appearance when balancing happens (Phil Auld) [1740038]
-- [kernel] sched/core: Fix endless loop in pick_next_task() (Phil Auld) [1740038]
-- [kernel] sched/fair: Push down check for high priority class task into idle_balance() (Phil Auld) [1740038]
-- [kernel] sched/rt: Fix picking RT and DL tasks from empty queue (Phil Auld) [1740038]
-
-* Mon Aug 19 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1078.el7]
-- [crypto] vmac - separate tfm and request context (Vladis Dronov) [1733561]
-- [block] block: blk_init_allocated_queue() set q->fq as NULL in the fail case (Ming Lei) [1739327] {CVE-2018-20856}
-- [kvm] KVM: nSVM: Fix nested guest support for PAUSE filtering (Gary Hook) [1670596]
-- [infiniband] RDMA/cxgb4: Report phys_state in query_port (Kamal Heib) [1727961]
-- [net] xprtrdma: Fix use-after-free in rpcrdma_post_recvs (Kamal Heib) [1724178]
-- [infiniband] RDMA/core: Fix race when resolving IP address (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Fill in wc byte_len with IB_WC_RECV_RDMA_WITH_IMM (Kamal Heib) [1724178]
-- [infiniband] ibverbs/rxe: Remove variable self-initialization (Kamal Heib) [1724178]
-- [infiniband] IB/ipoib: Add child to parent list only if device initialized (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: remove redundant assignment to variable ret (Kamal Heib) [1724178]
-- [infiniband] IB/ipoib: Remove memset after vzalloc in ipoib_cm.c (Kamal Heib) [1724178]
-- [infiniband] IB: Remove unneeded memset (Kamal Heib) [1724178]
-- [infiniband] RDMA/srp: Accept again source addresses that do not have a port number (Kamal Heib) [1724178]
-- [infiniband] RDMA/srp: Document srp_parse_in() arguments (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: check for allocation failure in uapi_add_elm() (Kamal Heib) [1724178]
-- [net] svcrdma: Ignore source port when computing DRC hash (Kamal Heib) [1724178]
-- [infiniband] RDMA/ipoib: Allow user space differentiate between valid dev_port (Kamal Heib) [1724178]
-- [infiniband] IB/cm: Reduce dependency on gid attribute ndev check (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Consider skb reserve space based on netdev of GID (Kamal Heib) [1724178]
-- [infiniband] IB/core: Set qp->real_qp before it may be accessed (Kamal Heib) [1724178]
-- [infiniband] RDMA/cm: Remove useless zeroing of static global variable (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Use correct sizing on buffers holding page DMA addresses (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: Allow the compiler to verify declaration and definition consistency (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: Annotate uverbs_request_next_ptr() return value as a __user pointer (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: Add a __user annotation to a pointer (Kamal Heib) [1724178]
-- [infiniband] RDMA/vmw_pvrdma: Skip zeroing device attrs (Kamal Heib) [1724178]
-- [infiniband] IB/iser: remove uninitialized variable len (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Fix slab-out-bounds access which lead to kernel crash later (Kamal Heib) [1724178]
-- [infiniband] RDMA/rxe: Use for_each_sg_page iterator on umem SGL (Kamal Heib) [1724178]
-- [infiniband] IB/iser: Fix dma_nents type definition (Kamal Heib) [1724178]
-- [infiniband] RDMA/core: Verify that memory window type is legal (Kamal Heib) [1724178]
-- [infiniband] RDMA/device: Call ib_cache_release_one() only from ib_device_release() (Kamal Heib) [1724178]
-- [infiniband] RDMA/device: Ensure that security memory is always freed (Kamal Heib) [1724178]
-- [infiniband] IB/core: Don't register each MAD agent for LSM notifier (Kamal Heib) [1724178]
-- [rdma] IB/core: Eliminate a hole in MAD agent struct (Kamal Heib) [1724178]
-- [infiniband] RDMA/cma: Rollback source IP address if failing to acquire device (Kamal Heib) [1724178]
-- [net] xprtrdma: Prevent leak of rpcrdma_rep objects (Kamal Heib) [1724178]
-- [net] xprtrdma: Remove request_module from backchannel (Kamal Heib) [1724178]
-- [infiniband] RDMA/uverbs: Optimize clearing of extra bytes in response (Kamal Heib) [1724178]
-- [rdma] RDMA/core: Remove unused header files mm.h, socket.h, scatterlist.h (Kamal Heib) [1724178]
-
-* Sat Aug 17 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1077.el7]
-- [md] dm thin metadata: check if in fail_io mode when setting needs_check (Mike Snitzer) [1739272]
-- [md] dm log writes: make sure super sector log updates are written in order (Mike Snitzer) [1739272]
-- [md] dm mpath: fix missing call of path selector type->end_io (Mike Snitzer) [1739272]
-- [md] dm delay: fix a crash when invalid device is specified (Mike Snitzer) [1739272]
-- [md] dm ioctl: harden copy_params()'s copy_from_user() from malicious users (Mike Snitzer) [1739272]
-- [md] dm cache metadata: verify cache has blocks in blocks_are_clean_separate_dirty() (Mike Snitzer) [1739272]
-- [md] dm cache: fix resize crash if user doesn't reload cache table (Mike Snitzer) [1739272]
-- [md] dm cache metadata: ignore hints array being too small during resize (Mike Snitzer) [1739272]
-- [md] dm cache metadata: save in-core policy_hint_size to on-disk superblock (Mike Snitzer) [1739272]
-- [crypto] crypto: vmx - ghash: do nosimd fallback manually (Desnes Augusto Nunes do Rosario) [1739765]
-- [crypto] crypto: vmx - Remove overly verbose printk from AES init routines (Desnes Augusto Nunes do Rosario) [1739765]
-- [crypto] powerpc: Create disable_kernel_{fp, altivec, vsx, spe}() (Desnes Augusto Nunes do Rosario) [1739765]
-- [crypto] crypto: vmx - CTR: always increment IV as quadword (Desnes Augusto Nunes do Rosario) [1739765]
-- [crypto] crypto: vmx - fix copy-paste error in CTR mode (Desnes Augusto Nunes do Rosario) [1739765]
-- [fs] udf: Use correct partition reference number for metadata (Eric Sandeen) [1694733]
-- [nvdimm] libnvdimm/namespace: Fix label tracking error (Jeff Moyer) [1699792]
-- [mm] x86/mm: Fix decoy address handling vs 32-bit builds (Jeff Moyer) [1628440]
-- [fs] dax: Don't access a freed inode (Jeff Moyer) [1628440]
-- [fs] dax: Check page->mapping isn't NULL (Jeff Moyer) [1628440]
-- [fs] dax: Avoid losing wakeup in dax_lock_mapping_entry (Jeff Moyer) [1628440]
-- [fs] dax: Fix deadlock in dax_lock_mapping_entry() (Jeff Moyer) [1628440]
-- [dax] device-dax: Add missing address_space_operations (Jeff Moyer) [1628440]
-- [mm] x86/mce: Fix set_mce_nospec() to avoid #GP fault (Jeff Moyer) [1628440]
-- [nvdimm] libnvdimm, pmem: Restore page attributes when clearing errors (Jeff Moyer) [1628440]
-- [x86] x86/memory_failure: Introduce {set, clear}_mce_nospec() (Jeff Moyer) [1628440]
-- [mm] x86/mm/pat: Prepare {reserve, free}_memtype() for "decoy" addresses (Jeff Moyer) [1628440]
-- [mm] mm, memory_failure: Teach memory_failure() about dev_pagemap pages (Jeff Moyer) [1628440]
-- [x86] x86/mm, mm/hwpoison: Don't unconditionally unmap kernel 1:1 pages (Jeff Moyer) [1628440]
-- [x86] x86/mm, mm/hwpoison: Clear PRESENT bit for kernel 1:1 mappings of poison pages (Jeff Moyer) [1628440]
-- [fs] filesystem-dax: Introduce dax_lock_mapping_entry() (Jeff Moyer) [1628440]
-- [mm] mm, memory_failure: Collect mapping size in collect_procs() (Jeff Moyer) [1628440]
-- [mm] mm, madvise_inject_error: Let memory_failure() optionally take a page reference (Jeff Moyer) [1628440]
-- [mm] mm, dev_pagemap: Do not clear ->mapping on final put (Jeff Moyer) [1628440]
-- [mm] mm, madvise_inject_error: Disable MADV_SOFT_OFFLINE for ZONE_DEVICE pages (Jeff Moyer) [1628440]
-- [fs] filesystem-dax: Set page->index (Jeff Moyer) [1628440]
-- [dax] device-dax: Set page->index (Jeff Moyer) [1628440]
-- [dax] device-dax: Enable page_mapping() (Jeff Moyer) [1628440]
-- [dax] pmem: fix device dax reference counting bug (Jeff Moyer) [1699625]
-
-* Fri Aug 16 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1076.el7]
-- [scsi] hpsa: bump revision (Joseph Szczypek) [1722624]
-- [scsi] scsi: hpsa: correct ioaccel2 chaining (Joseph Szczypek) [1722624]
-- [tools] x86/pkeys: add self-tests (Vladis Dronov) [1712587]
-- [x86] x86/pkeys: Properly copy pkey state at fork() (Vladis Dronov) [1712587]
-- [x86] x86: Cleanly separate use of asm-generic/mm_hooks.h (Vladis Dronov) [1712587]
-- [x86] x86/pkeys: Do not special case protection key 0 (Vladis Dronov) [1712587]
-- [mm] x86/pkeys: Override pkey when moving away from PROT_EXEC (Vladis Dronov) [1712587]
-- [mm] x86/mm/pkeys: Fix fill_sig_info_pkey (Vladis Dronov) [1712587]
-- [documentation] x86/pkeys: Update documentation about availability (Vladis Dronov) [1712587]
-- [documentation] x86/mm/pkeys: Fix typo in Documentation/x86/protection-keys.txt (Vladis Dronov) [1712587]
-- [x86] x86/pkeys: Check against max pkey to avoid overflows (Vladis Dronov) [1712587]
-- [include] pkeys: Remove easily triggered WARN (Vladis Dronov) [1712587]
-- [scsi] mpt3sas: remove 'tech preview' (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Use 63-bit DMA addressing on SAS35 HBA (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: support target smid fortask (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: clean up a couple sizeof() uses (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Fix msix load balance on and off settings (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Determine smp affinity on per HBA basis (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Use configured PCIe link speed, not max (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Remove CPU arch check to determine perf_mode (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: use DEVICE_ATTR_{RO, RW} (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: make driver options visible in sys (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Mark expected switch fall-through (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Update driver version to 29.100.00.00 (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Introduce perf_mode module parameter (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Enable interrupt coalescing on high iops (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Affinity high iops queues IRQs to local node (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: save and use MSI-X index for posting RD (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Use high iops queues under some circumstances (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: change _base_get_msix_index prototype (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Add flag high_iops_queues (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Add Atomic RequestDescriptor support on Aero (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: function pointers of request descriptor (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas_ctl: fix double-fetch bug in _ctl_ioctl_main() (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: fix indentation issue (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Fix kernel panic during expander reset (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Update mpt3sas driver version to 28.100.00.00 (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Improve the threshold value and introduce module param (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Load balance to improve performance and avoid soft lockups (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Irq poll to avoid CPU hard lockups (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: simplify interrupt handler (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Fix typo in request_desript_type (Tomas Henzl) [1721213]
-- [scsi] scsi: mpt3sas: Add missing breaks in switch statements (Tomas Henzl) [1721213]
-- [x86] topology: Create core_cpus and die_cpus sysfs attributes (David Arcari) [1641411]
-- [base] topology: Create package_cpus sysfs attribute (David Arcari) [1641411]
-- [x86] x86/topology: Define topology_logical_die_id() (David Arcari) [1641411]
-- [x86] x86/topology: Define topology_die_id() (David Arcari) [1641411]
-- [base] cpu/topology: Export die_id (David Arcari) [1641411]
-- [x86] x86/topology: Create topology_max_die_per_package() (David Arcari) [1641411]
-- [x86] x86/topology: Add CPUID.1F multi-die/package support (David Arcari) [1641411]
-- [x86] x86/smpboot: Rename match_die() to match_pkg() (David Arcari) [1641411]
-- [documentation] topology: Simplify cputopology.txt formatting and wording (David Arcari) [1641411]
-- [documentation] x86/topology: Fix documentation typo (David Arcari) [1641411]
-
-* Thu Aug 15 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1075.el7]
-- [kernel] sched: Fix race between task_group and sched_task_group (Oleksandr Natalenko) [1738415]
-- [iommu] x86/hyper-v: add msi_setup_irq/msi_alloc_irq stubs to fix x2apic mode (Vitaly Kuznetsov) [1736750]
-- [pci] PCI: hv: Fix a use-after-free bug in hv_eject_device_work() (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Add pci_destroy_slot() in pci_devices_present_work(), if necessary (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Add hv_pci_remove_slots() when we unload the driver (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Fix a memory leak in hv_eject_device_work() (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: support reporting serial number as slot information (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Remove unused reason for refcount handler (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Convert hv_pci_dev.refs from atomic_t to refcount_t (Mohammed Gamal) [1732924]
-- [pci] PCI: hv: Remove the bogus test in hv_eject_device_work() (Mohammed Gamal) [1732924]
-- [edac] EDAC, skx: Fix randconfig builds in a better way (Jeff Moyer) [1471701]
-- [edac] EDAC, skx: Fix randconfig builds (Jeff Moyer) [1471701]
-- [edac] EDAC, skx_edac: Add address translation for non-volatile DIMMs (Jeff Moyer) [1471701]
-- [acpi] ACPI/ADXL: Add address translation interface using an ACPI DSM (Jeff Moyer) [1471701]
-- [x86] x86/mce: Add macros for the corrected error count bit field (Jeff Moyer) [1471701]
-- [x86] x86/mce: Use BIT_ULL(x) for bit mask definitions (Jeff Moyer) [1471701]
-- [md] dm snapshot: fix oversights in optional discard support (Mike Snitzer) [1738340]
-- [md] dm snapshot: add optional discard support features (Mike Snitzer) [1738340]
-- [md] dm snapshot: Use fine-grained locking scheme (Mike Snitzer) [1738340]
-- [md] dm snapshot: Make exception tables scalable (Mike Snitzer) [1738340]
-- [md] dm snapshot: Replace mutex with rw semaphore (Mike Snitzer) [1738340]
-- [md] dm snapshot: Don't sleep holding the snapshot lock (Mike Snitzer) [1738340]
-- [include] list_bl: Add hlist_bl_add_before_behind helpers (Mike Snitzer) [1738340]
-- [md] dm snapshot: don't define direct_access if we don't support it (Mike Snitzer) [1738340]
-- [md] dm snapshot: Fix excessive memory usage and workqueue stalls (Mike Snitzer) [1738340]
-- [md] dm snapshot: remove stale FIXME in snapshot_map() (Mike Snitzer) [1738340]
-- [nvme] nvme-fc: Add message when creating new association (Ewan Milne) [1739152]
-- [nvme] nvme-fc: use separate work queue to avoid warning (Ewan Milne) [1739152]
-- [nvme] nvme-fc: correct csn initialization and increments on error (Ewan Milne) [1739152]
-- [nvme] nvmet-fc: use zero-sized array and struct_size() in kzalloc() (Ewan Milne) [1739152]
-- [nvme] nvmet-fc: bring Disconnect into compliance with FC-NVME spec (Ewan Milne) [1739152]
-- [nvme] nvmet-fc: fix issues with targetport assoc_list list walking (Ewan Milne) [1739152]
-- [nvme] nvme-fc: reject reconnect if io queue count is reduced to zero (Ewan Milne) [1739152]
-- [nvme] nvme-fc: initialize nvme_req(rq)->ctrl after calling __nvme_fc_init_request() (Ewan Milne) [1739152]
-- [nvme] nvme-fc: fix request private initialization (Ewan Milne) [1739152]
-- [nvme] nvmet-fc: fix kernel-doc headers (Ewan Milne) [1739152]
-- [nvme] nvme-fc: rework the request initialization code (Ewan Milne) [1739152]
-- [nvme] nvme-fc: introduce struct nvme_fcp_op_w_sgl (Ewan Milne) [1739152]
-- [nvme] nvme-fc: merge init_request methods (Ewan Milne) [1739152]
-- [iommu] iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE (Jerry Snitselaar) [1694181]
-- [netdrv] macvlan: allow setting LRO independently of lower device (Ivan Vecera) [1737236]
-- [fs] gfs2: gfs2_walk_metadata fix (Andreas Grunbacher) [1724362]
-- [fs] gfs2: Inode dirtying fix (Andreas Grunbacher) [1724362]
-- [fs] gfs2: Fix rounding error in gfs2_iomap_page_prepare (Andreas Grunbacher) [1733634 1724362]
-- [fs] gfs2: read journal in large chunks (Abhijith Das) [1655575]
-- [fs] gfs2: add a helper function to get_log_header that can be used elsewhere (Abhijith Das) [1655575]
-- [fs] gfs2: Get rid of gfs2_log_header_in (Abhijith Das) [1655575]
-- [fs] gfs2: changes to gfs2_log_XXX_bio (Abhijith Das) [1655575]
-- [fs] gfs2: add more timing info to journal recovery process (Abhijith Das) [1655575]
-- [fs] gfs2: time journal recovery steps accurately (Abhijith Das) [1655575]
-- [fs] gfs2: Clean up journal extent mapping (Abhijith Das) [1655575]
-- [mm] mm: fix insert_pfn regression (Jeff Moyer) [1739889]
-- [mm] slub: make dead caches discard free slabs immediately (Aristeu Rozanski) [1649189 1507149]
-- [mm] mm: charge/uncharge kmemcg from generic page allocator paths (Aristeu Rozanski) [1649189 1507149]
-- [mm] memcg: do not account memory used for cache creation (Aristeu Rozanski) [1649189 1507149]
-- [mm] memcg: also test for skip accounting at the page allocation level (Aristeu Rozanski) [1649189 1507149]
-- [fs] kmemcg: account certain kmem allocations to memcg (Aristeu Rozanski) [1649189 1507149]
-- [mm] vmalloc: allow to account vmalloc to memcg (Aristeu Rozanski) [1649189 1507149]
-- [mm] slab: add SLAB_ACCOUNT flag (Aristeu Rozanski) [1649189 1507149]
-- [include] memcg: only account kmem allocations marked as __GFP_ACCOUNT (Aristeu Rozanski) [1649189 1507149]
-- [include] mm: get rid of __GFP_KMEMCG (Aristeu Rozanski) [1649189 1507149]
-- [mm] slb: charge slabs to kmemcg explicitly (Aristeu Rozanski) [1649189 1507149]
-
-* Wed Aug 14 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1074.el7]
-- [hid] chicony: add another quirk for PixArt mouse (Oleksandr Natalenko) [1723390]
-- [netdrv] net/mlx4_en: ethtool, Remove unsupported SFP EEPROM high pages query (Alaa Hleihel) [1737465]
-- [netdrv] net/mlx4_core: Change the error print to info print (Alaa Hleihel) [1737465]
-- [infiniband] IB/mlx4: Fix race condition between catas error reset and aliasguid flows (Alaa Hleihel) [1737465]
-- [netdrv] net/mlx4_core: Fix qp mtt size calculation (Alaa Hleihel) [1737465]
-- [netdrv] bnx2x: Prevent load reordering in tx completion processing (Manish Chopra) [1733551]
-- [kernel] audit: add kernel set-up parameter to override default backlog limit (Richard Guy Briggs) [1738634]
-- [fs] fuse: fix "do not use iocb after it may have been freed" backport (Miklos Szeredi) [1731620]
-- [net] sunrpc: fix null-string checks on svc_process trace event (Desnes Augusto Nunes do Rosario) [1733275]
-- [fs] nfs/nfsd/sunrpc: enforce transport requirements for NFSv4 (Desnes Augusto Nunes do Rosario) [1733275]
-- [fs] sunrpc: turn bitfield flags in svc_version into bools (Desnes Augusto Nunes do Rosario) [1733275]
-- [net] sunrpc: Re-purpose trace_svc_process (Desnes Augusto Nunes do Rosario) [1733275]
-- [fs] autofs: add ignore mount option (Ian Kent) [1388149]
-- [fs] aio: get rid of unnecessary locking in aio_read_events_ring (Jeff Moyer) [1720750]
-- [fs] kernfs: don't set dentry->d_fsdata (Carlos Maiolino) [1656062]
-- [fs] kernfs: deal with kernfs_fill_super() failures (Carlos Maiolino) [1656062]
-- [fs] xfs: refactor xfs_buf_log_item reference count handling (Bill O'Donnell) [1583799]
-- [fs] xfs: clean up xfs_trans_brelse() (Bill O'Donnell) [1583799]
-- [fs] xfs: don't unlock invalidated buf on aborted tx commit (Bill O'Donnell) [1583799]
-- [hwtracing] tracing: Pass export pointer as argument to ->write() (Jiri Olsa) [1514700]
-- [hwtracing] stm class: ftrace: Add ftrace-export-over-stm driver (Jiri Olsa) [1514700]
-- [kernel] tracing: Add hook to function tracing for other subsystems to use (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix a module refcount leak in policy creation error path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: heartbeat: Fix whitespace (Jiri Olsa) [1514700]
-- [hwtracing] stm class: p_sys-t: Add support for CLOCKSYNC packets (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Add MIPI SyS-T protocol support (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Switch over to the protocol driver (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Factor out default framing protocol (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Add a helper for writing data packets (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Introduce framing protocol drivers (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Clean up stp_configfs_init (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Clarify configfs root type/operations names (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Rework policy node fallback (Jiri Olsa) [1514700]
-- [hwtracing] stm: fix build error on some arches (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Use vmalloc for the master map (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Make dummy's master/channel ranges configurable (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix a use-after-free (Jiri Olsa) [1514700]
-- [hwtracing] stm: Potential read overflow in stm_char_policy_set_ioctl() (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Fix an off-by-one in attribute store (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Ice Lake PCH support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix resource handling for ACPI glue layer (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix device removal logic (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Use correct device when freeing buffers (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add ACPI glue layer (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Allow forcing host mode through drvdata (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Pick up irq number from resources (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Don't touch switch routing in host mode (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Use correct method of finding hub (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Lewisburg PCH support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Cedar Fork PCH support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Perform time resync on capture start (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add global activate/deactivate callbacks for the glue layers (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Use drvdata for quirks (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Cannon Lake PCH-LP support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Cannon Lake PCH-H support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pti: Support Low Power Path output port type (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Enumerate Low Power Path output port type (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Use the real device in case of IOMMU domain allocation (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Make the switch allocate its subdevices (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Make SOURCE devices children of the root device (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Streamline the subdevice tree accessors (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Output devices without ports don't need assigning (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Enable bus mastering (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: use dev_groups and not dev_attrs for bus_type (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Gemini Lake support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Denverton SOC support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Don't leak module refcount on failure to activate (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Mark sth_stm_packet() with notrace (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: gth: Handle host mode correctly (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Support Host Debugger mode of operation (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Constify subdevices (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Kaby Lake PCH-H support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix a deadlock in modprobing (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Document output device callbacks (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: gth: Fix a source comment (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add runtime power management handling (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Broxton-M SOC support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Release resources on removal (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Set fops::owner to prevent module from unloading (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Hold output driver module reference while capture is active (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Serialize enabling/disabling (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix activating a subdevice without a driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pti: Create sysfs attributes using core driver's facility (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Create sysfs attributes using core driver's facility (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Allow subdevice drivers to bring in own attribute groups (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Handle kstrndup() failure (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pti: Do remove sysfs group on device removal (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Use real device index in the node names (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Set root device's drvdata early (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: sth: Sanitize packet callback's return values (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Release resources on read error (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: msu: Fix offset for wrapped block (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Update scratchpad bits according to enabled output activity (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: gth: Remove commented-out code (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Depend on HAS_IOMEM (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Broxton SOC support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: pci: Add Apollo Lake SOC support (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: INTEL_TH should depend on HAS_DMA (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Check for NULL instead of ERR_PTR (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Fix integer mismatch warnings (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add PTI output driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add Memory Storage Unit driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add Software Trace Hub driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add Global Trace Hub driver (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add pci glue layer for Intel(R) Trace Hub (Jiri Olsa) [1514700]
-- [hwtracing] intel_th: Add driver infrastructure for Intel(R) Trace Hub devices (Jiri Olsa) [1514700]
-- [hwtracing] stm: Mark the functions of writing STM with notrace (Jiri Olsa) [1514700]
-- [hwtracing] stm dummy: Mark dummy_stm_packet() with notrace (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix device leak in open error path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Add runtime power management handling (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Support devices that override software assigned masters (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Remove unnecessary pointer increment (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix stm device initialization order (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Do not leak the chrdev in error path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Remove a pointless line (Jiri Olsa) [1514700]
-- [hwtracing] stm class: stm_heartbeat: Make nr_devs parameter read-only (Jiri Olsa) [1514700]
-- [hwtracing] stm class: dummy_stm: Make nr_dummies parameter read-only (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix integer boundary checks for master range (Jiri Olsa) [1514700]
-- [hwtracing] stm class: dummy_stm: Add link callback for fault injection (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Plug stm device's unlink callback (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix a race in unlinking (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix unbalanced module/device refcounting (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Guard output assignment against concurrency (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix unlocking braino in the error path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Add heartbeat stm source device (Jiri Olsa) [1514700]
-- [hwtracing] stm class: dummy_stm: Create multiple devices (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Support devices with multiple instances (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Use driver's packet callback return value (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix master deallocation in device unregistering (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Use a signed return type for stm_find_master_chan (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Prevent user-controllable allocations (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix an off-by-one in master array allocation (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix link list locking (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Fix locking in unbinding policy path (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Select CONFIG_SRCU (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Hide STM-specific options if STM is disabled (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Select configfs (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Mark src::link __rcu (Jiri Olsa) [1514700]
-- [hwtracing] stm class: stm_console: Add kernel-console-over-stm driver (Jiri Olsa) [1514700]
-- [hwtracing] stm class: dummy_stm: Add dummy driver for testing stm class (Jiri Olsa) [1514700]
-- [hwtracing] stm class: Introduce an abstraction for System Trace Module devices (Jiri Olsa) [1514700]
-
-* Tue Aug 13 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1073.el7]
-- [scsi] scsi: core: set result when the command cannot be dispatched (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_transport_fc: nvme: display FC-NVMe port roles (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Quiesce warning if device does not report optimal I/O size (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Optimal I/O size should be a multiple of physical block size (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Fix typo in sd_first_printk() (Ewan Milne) [1737602]
-- [scsi] scsi: sd: fix entropy gathering for most rotational disks (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Fix cache_type_store() (Ewan Milne) [1737602]
-- [scsi] scsi: core: Remove scsi_block_when_processing_errors: message (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Contribute to randomness when running rotational device (Ewan Milne) [1737602]
-- [scsi] scsi: st: remove redundant pointer STbuffer (Ewan Milne) [1737602]
-- [scsi] scsi: sg: fix minor memory leak in error path (Ewan Milne) [1737602]
-- [scsi] scsi: core: check for equality of result byte values (Ewan Milne) [1737602]
-- [scsi] scsi: sg: clean up gfp_mask in sg_build_indirect (Ewan Milne) [1737602]
-- [scsi] scsi: core: sanitize++ in progress (Ewan Milne) [1737602]
-- [scsi] scsi: sg: allocate with __GFP_ZERO in sg_build_indirect() (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Defer spinning up drive while SANITIZE is in progress (Ewan Milne) [1737602]
-- [scsi] scsi: core: remove reference to scsi_show_extd_sense() (Ewan Milne) [1737602]
-- [scsi] scsi: core: Make scsi_result_to_blk_status() recognize CONDITION MET (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Remember that READ CAPACITY(16) succeeded (Ewan Milne) [1737602]
-- [scsi] scsi: core: Make SCSI Status CONDITION MET equivalent to GOOD (Ewan Milne) [1737602]
-- [scsi] scsi: core: use blk_mq_requeue_request in __scsi_queue_insert (Ewan Milne) [1737602]
-- [scsi] scsi: core: scsi_get_device_flags_keyed(): Always return device flags (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_devinfo: cleanly zero-pad devinfo strings (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_devinfo: handle non-terminated strings (Ewan Milne) [1737602]
-- [scsi] scsi: st: fix kernel-doc mismatch (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_error: DID_SOFT_ERROR comment clean up (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_error: Handle power-on reset unit attention (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_error: Do not retry illegal function error (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_devinfo: fixup string compare (Ewan Milne) [1737602]
-- [scsi] scsi: update description of logging_level bits (Ewan Milne) [1737602]
-- [scsi] scsi: ILLEGAL REQUEST + ASC==27 => target failure (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_transport_fc: Also check for NOTPRESENT in fc_remote_port_add() (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_transport_fc: set scsi_target_id upon rescan (Ewan Milne) [1737602]
-- [scsi] scsi: sg: fixup infoleak when using SG_GET_REQUEST_TABLE (Ewan Milne) [1737602]
-- [scsi] scsi: scsi-mq: Always unprepare before requeuing a request (Ewan Milne) [1737602]
-- [scsi] scsi: fix comment in scsi_device_set_state() (Ewan Milne) [1737602]
-- [scsi] scsi: st: fix blk_get_queue usage (Ewan Milne) [1737602]
-- [scsi] scsi: scsi_transport_fc: return -EBUSY for deleted vport (Ewan Milne) [1737602]
-- [scsi] scsi: Skip deleted devices in __scsi_device_lookup (Ewan Milne) [1737602]
-- [scsi] scsi: sd: Fix capacity calculation with 32-bit sector_t (Ewan Milne) [1737602]
-- [scsi] scsi: sr: Sanity check returned mode data (Ewan Milne) [1737602]
-- [scsi] scsi: sd: improve TUR handling in sd_check_events (Ewan Milne) [1737602]
-- [scsi] scsi_lib: untangle 0 and BLK_MQ_RQ_QUEUE_OK (Ewan Milne) [1737602]
-- [scsi] scsi: Fix use-after-free (Ewan Milne) [1737602]
-- [scsi] scsi: move function declarations to scsi_priv.h (Ewan Milne) [1737602]
-- [scsi] scsi: blacklist all RDAC devices for BLIST_NO_ULD_ATTACH (Ewan Milne) [1737602]
-- [scsi] SCSI: fix new bug in scsi_dev_info_list string matching (Ewan Milne) [1737602]
-- [scsi] st: clear ILI if Medium Error (Ewan Milne) [1737602]
-- [scsi] scsi-trace: Decode MAINTENANCE_IN and MAINTENANCE_OUT commands (Ewan Milne) [1737602]
-- [scsi] scsi: fc: use get/put_unaligned64 for wwn access (Ewan Milne) [1737602]
-- [scsi] scsi: remove scsi_show_sense_hdr() (Ewan Milne) [1737602]
-- [scsi] scsi: lpfc: Update lpfc version to 12.0.0.13 (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix BFS crash with DIX enabled (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix FDMI fc4type for nvme support (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix fcp_rsp_len checking on lun reset (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix incorrect logical link speed on trunks when links down (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix memory leak in abnormal exit path from lpfc_eq_create (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Rework misleading nvme not supported in firmware message (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix hardlockup in scsi_cmd_iocb_cmpl (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Prevent 'use after free' memory overwrite in nvmet LS handling (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix PT2PT PLOGI collison stopping discovery (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Revert message logging on unsupported topology (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix nvmet target abort cmd matching (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix alloc context on oas lun creations (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Update lpfc version to 12.0.0.12 (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: add check for loss of ndlp when sending RRQ (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: correct rcu unlock issue in lpfc_nvme_info_show (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: resolve lockdep warnings (Dick Kennedy) [1734049]
-- [scsi] lpfc: Add lockdep assertions (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Make lpfc_sli4_oas_verify static (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix a recently introduced compiler warning (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix missing wakeups on abort threads (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Remove unused functions (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Remove set-but-not-used variables (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Move trunk_errmsgfrom a header file into a .c file (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Annotate switch/case fall-through (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix indentation and balance braces (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Declare local functions static (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: avoid uninitialized variable warning (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: change snprintf to scnprintf for possible overflow (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fixup eq_clr_intr references (Dick Kennedy) [1734049]
-- [scsi] scsi: be2iscsi: lpfc: fix typo (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Update Copyright in driver version (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Enhance 6072 log string (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Add loopback testing to trunking mode (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix link speed reporting for 4-link trunk (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix handling of trunk links state reporting (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix protocol support on G6 and G7 adapters (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Correct boot bios information to FDMI registration (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix HDMI2 registration string for symbolic name (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix fc4type information for FDMI (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix FDMI manufacturer attribute value (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix driver crash in target reset handler (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Correct localport timeout duration error (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Convert bootstrap mbx polling from msleep to udelay (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Coordinate adapter error handling with offline handling (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Stop adapter if pci errors detected (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix SLI3 commands being issued on SLI4 devices (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix use-after-free mailbox cmd completion (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Fix error codes in lpfc_sli4_pci_mem_setup() (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: resolve static checker warning in lpfc_sli4_hba_unset (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: Correct __lpfc_sli_issue_iocb_s4 lockdep check (Dick Kennedy) [1734049]
-- [scsi] lpfc: Add lockdep assertions (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: cleanup: Remove excess check on NVME io submit code path (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: cleanup: remove nrport from nvme command structure (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: no need to check return value of debugfs_create functions (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: nvmet: avoid hang / use-after-free when destroying targetport (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: nvme: avoid hang / use-after-free when destroying localport (Dick Kennedy) [1734049]
-- [scsi] scsi: lpfc: lpfc_sli: Mark expected switch fall-throughs (Dick Kennedy) [1734049]
-
-* Mon Aug 12 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1072.el7]
-- [scsi] qla2xxx: Update driver version to 10.01.00.18.07.8-k (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Reject EH_{abort|device_reset|target_request} (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix Relogin to prevent modifying scan_state flag (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Correct error handling during initialization failures (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix NVMe port discovery after a short device port loss (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use common update-firmware-options routine for ISP27xx+ (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix hang in fcport delete path (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Allow NVMe IO to resume with short cable pull (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix abort timeout race condition (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix different size DMA Alloc/Unmap (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix DMA unmap leak (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Replace vmalloc + memset with vzalloc (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove unnecessary null check (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: move IO flush to the front of NVME rport unregistration (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix NVME cmd and LS cmd timeout race condition (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: on session delete, return nvme cmd (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix kernel crash after disconnecting NVMe devices (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: remove double assignment in qla2x00_update_fcport (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix hardlockup in abort command during driver remove (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Avoid that qlt_send_resp_ctio() corrupts memory (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Complain loudly about reference count underflow (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix race conditions in the code for aborting SCSI commands (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Split the __qla2x00_abort_all_cmds() function (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove a set-but-not-used variable (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use an on-stack completion in qla24xx_control_vp() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Check the size of firmware data structures at compile time (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Pass little-endian values to the firmware (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix use-after-free issues in qla2xxx_qpair_sp_free_dma() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix a qla24xx_enable_msix() error path (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Log the status code if a firmware command fails (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Avoid that Coverity complains about dereferencing a NULL rport pointer (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Avoid that qla2x00_mem_free() crashes if called twice (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Make qla2x00_mem_free() easier to verify (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: NULL check before some freeing functions is not needed (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove the fcport test from qla_nvme_abort_work() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move qla2x00_is_reserved_id() from qla_inline.h into qla_init.c (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move qla2x00_clear_loop_id() from qla_inline.h into qla_init.c (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove a set-but-not-used variable (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Declare qla2x00_find_new_loop_id() static (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move qla2x00_set_reserved_loop_ids() definition (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix a format specifier (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Update two source code comments (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix read offset in qla24xx_load_risc_flash() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move qla2x00_set_fcport_state() from a .h into a .c file (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove two superfluous casts (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove qla_tgt_cmd.data_work and qla_tgt_cmd.data_work_free (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Declare qla24xx_build_scsi_crc_2_iocbs() static (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move the port_state_strdefinition from a .h to a .c file (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Insert spaces where required (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix formatting of pointer types (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Leave a blank line after declarations (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use tabs to indent code (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix FC-AL connection target discovery (Himanshu Madhani) [1729270]
-- [scsi] scsi: tcm_qla2xxx: Minimize #include directives (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Unregister chrdev if module initialization fails (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use get/put_unaligned where appropriate (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Make qla2x00_process_response_queue() easier to read (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Declare local symbols static (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use ARRAY_SIZE() in the definition of QLA_LAST_SPEED (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove a comment that refers to the SCSI host lock (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: fix spelling mistake "alredy" -> "already" (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove useless set memory to zero use memset() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix driver unload when FC-NVMe LUNs are connected (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Cleanup redundant qla2x00_abort_all_cmds during unload (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Set remote port devloss timeout to 0 (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Cleanup fcport memory to prevent leak (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Use mutex protection during qla2x00_sysfs_read_fw_dump() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix fw dump corruption (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Further limit FLASH region write access from SysFS (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Disable T10-DIF feature with FC-NVMe during probe (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Increase the max_sgl_segments to 1024 (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Reset the FCF_ASYNC_{SENT|ACTIVE} flags (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Set the qpair in SRB to NULL when SRB is released (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Set the SCSI command result before calling the command done (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Simplify conditional check again (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix a small typo in qla_bsg.c (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Secure flash update support for ISP28XX (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add 28xx flash primary/secondary status/image mechanism (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Simplification of register address used in qla_tmpl.c (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Correction and improvement to fwdt processing (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Update flash read/write routine (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add support for multiple fwdump templates/segments (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Cleanups for NVRAM/Flash read/write path (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Correctly report max/min supported speeds (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add Serdes support for ISP28XX (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add Device ID for ISP28XX (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix routine qla27xx_dump_{mpi|ram}() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Remove FW default template (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add fw_attr and port_no SysFS node (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: check for kstrtol() failure (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: avoid printf format warning (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix panic in qla_dfs_tgt_counters_show (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add new FW dump template entry types (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix code indentation for qla27xx_fwdt_entry (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move marker request behind QPair (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Prevent SysFS access when chip is down (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add support for setting port speed (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Prevent multiple ADISC commands per session (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Check for FW started flag before aborting (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix unload when NVMe devices are configured (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add First Burst support for FC-NVMe devices (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: remove redundant null check on pointer sess (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Move debug messages before sending srb preventing panic (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix fw options handle eh_bus_reset() (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Restore FAWWPN of Physical Port only for loop down (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Prevent memory leak for CT req/rsp allocation (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix SRB allocation flag to avoid sleeping in IRQ context (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: allow session delete to finish before create (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: fix fcport null pointer access (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: flush IO on chip reset or sess delete (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix session cleanup hang (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Change default ZIO threshold (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix N2N target discovery with Local loop (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: no need to check return value of debugfs_create functions (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Fix DMA error when the DIF sg buffer crosses 4GB boundary (Himanshu Madhani) [1729270]
-- [scsi] scsi: qla2xxx: Add protection mask module parameters (Himanshu Madhani) [1729270]
-
-* Sat Aug 10 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1071.el7]
-- [kernel] kernel/sysctl.c: fix proc_do_large_bitmap for large input buffers (Eric Sandeen) [1737289]
-- [misc] objtool: Skip checking of dubious files (Josh Poimboeuf) [1710547]
-- [tools] objtool: Disable retpoline-related warnings (Josh Poimboeuf) [1710547]
-- [tools] objtool: Sync instruction decoder (Josh Poimboeuf) [1710547]
-- [kernel] sched/deadline: Correctly handle active 0-lag timers (Phil Auld) [1692252]
-- [kernel] sched/core: Allow __sched_setscheduler() in interrupts when PI is not used (Phil Auld) [1722234]
-- [kernel] sched, dl: Convert switched_{from, to}_dl() / prio_changed_dl() to balance callbacks (Phil Auld) [1722234]
-- [kernel] sched,dl: Remove return value from pull_dl_task() (Phil Auld) [1722234]
-- [kernel] sched, rt: Convert switched_{from, to}_rt() / prio_changed_rt() to balance callbacks (Phil Auld) [1722234]
-- [kernel] sched,rt: Remove return value from pull_rt_task() (Phil Auld) [1722234]
-- [kernel] sched: Allow balance callbacks for check_class_changed() (Phil Auld) [1722234]
-- [kernel] sched: Use replace normalize_task() with __sched_setscheduler() (Phil Auld) [1722234]
-- [kernel] sched: Handle priority boosted tasks proper in setscheduler() (Phil Auld) [1722234]
-- [kernel] sched: Fix broken setscheduler() (Phil Auld) [1722234]
-- [kernel] sched: Consider pi boosting in setscheduler() (Phil Auld) [1722234]
-- [kernel] sched: Replace post_schedule with a balance callback list (Phil Auld) [1722234]
-- [kernel] sched: Guarantee task priority in pick_next_task() (Phil Auld) [1722234]
-- [kernel] sched: Remove some #ifdeffery (Phil Auld) [1722234]
-- [kernel] sched: Clean up idle task SMP logic (Phil Auld) [1722234]
-- [kernel] sched: Fix hotplug task migration (Phil Auld) [1722234]
-- [kernel] sched/fair: Remove idle_balance() declaration in sched.h (Phil Auld) [1722234]
-- [kernel] sched: Push down pre_schedule() and idle_balance() (Phil Auld) [1722234]
-- [kernel] sched/fair: Optimize cgroup pick_next_task_fair() (Phil Auld) [1722234]
-- [kernel] sched/fair: Clean up the __clear_buddies_*() functions (Phil Auld) [1722234]
-- [kernel] sched: Push put_prev_task() into pick_next_task() (Phil Auld) [1722234]
-- [kernel] sched: Move rq->idle_stamp up to the core (Phil Auld) [1722234]
-- [kernel] sched: Fix race in idle_balance() (Phil Auld) [1722234]
-- [kernel] sched: Remove 'cpu' parameter from idle_balance() (Phil Auld) [1722234]
-- [kernel] sched/fair: Reset se-depth when task switched to FAIR (Phil Auld) [1722234]
-- [kernel] sched/fair: Track cgroup depth (Phil Auld) [1722234]
-
-* Fri Aug 09 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1070.el7]
-- [mm] mm/page_idle.c: fix oops because end_pfn is larger than max_pfn (Rafael Aquini) [1730471]
-- [mm] mm/mlock.c: mlockall error for flag MCL_ONFAULT (Rafael Aquini) [1730471]
-- [mm] hugetlb: use same fault hash key for shared and private mappings (Rafael Aquini) [1730471]
-- [mm] hugetlbfs: on restore reserve error path retain subpool reservation (Rafael Aquini) [1730471]
-- [mm] mm/memory.c: fix modifying of page protection by insert_pfn() (Rafael Aquini) [1730471]
-- [mm] mm, swap: bounds check swap_info array accesses to avoid NULL derefs (Rafael Aquini) [1730471]
-- [mm] mm/slub.c: remove an unused addr argument (Rafael Aquini) [1730471]
-- [mm] hugetlbfs: fix races and page leaks during migration (Rafael Aquini) [1730471]
-- [mm] mm, oom: fix use-after-free in oom_kill_process (Rafael Aquini) [1730471]
-- [mm] percpu: convert spin_lock_irq to spin_lock_irqsave (Rafael Aquini) [1730471]
-- [mm] mm/swapfile.c: use kvzalloc for swap_info_struct allocation (Rafael Aquini) [1730471]
-- [mm] hugetlbfs: fix kernel BUG at fs/hugetlbfs/inode.c:444! (Rafael Aquini) [1730471]
-- [mm] mm: Fix warning in insert_pfn() (Rafael Aquini) [1730471]
-- [mm] hugetlbfs: dirty pages as they are added to pagecache (Rafael Aquini) [1730471]
-- [mm] mm/swapfile.c: fix swap_count comment about nonexistent SWAP_HAS_CONT (Rafael Aquini) [1730471]
-- [mm] slab: __GFP_ZERO is incompatible with a constructor (Rafael Aquini) [1730471]
-- [mm] mm: fix the NULL mapping case in __isolate_lru_page() (Rafael Aquini) [1730471]
-- [mm] mm/filemap.c: fix NULL pointer in page_cache_tree_insert() (Rafael Aquini) [1730471]
-- [fs] block_invalidatepage(): only release page if the full page was invalidated (Rafael Aquini) [1730471]
-- [mm] mm/mempolicy.c: avoid use uninitialized preferred_node (Rafael Aquini) [1730471]
-- [mm] mm: pin address_space before dereferencing it while isolating an LRU page (Rafael Aquini) [1730471]
-- [fs] fs/hugetlbfs/inode.c: change put_page/unlock_page order in hugetlbfs_fallocate() (Rafael Aquini) [1730471]
-- [mm] mm: do not rely on preempt_count in print_vma_addr (Rafael Aquini) [1730471]
-- [mm] mm, swap: fix race between swap count continuation operations (Rafael Aquini) [1730471]
-- [mm] mm: meminit: mark init_reserved_page as __meminit (Rafael Aquini) [1730471]
-- [mm] mm/vmstat.c: fix wrong comment (Rafael Aquini) [1730471]
-- [mm] mm, hugetlb: do not allocate non-migrateable gigantic pages from movable zones (Rafael Aquini) [1730471]
-- [mm] mm: always flush VMA ranges affected by zap_page_range (Rafael Aquini) [1730471]
-- [mm] mm/mremap: fail map duplication attempts for private mappings (Rafael Aquini) [1730471]
-- [mm] mm/mmap.c: do not blow on PROT_NONE MAP_FIXED holes in the stack (Rafael Aquini) [1730471]
-- [mm] mm: numa: avoid waiting on freed migrated pages (Rafael Aquini) [1730471]
-- [mm] mm/memory-failure.c: use compound_head() flags for huge pages (Rafael Aquini) [1730471]
-- [fs] fs/block_dev: always invalidate cleancache in invalidate_bdev() (Rafael Aquini) [1730471]
-- [mm] percpu: remove unused chunk_alloc parameter from pcpu_get_pages() (Rafael Aquini) [1730471]
-- [mm] percpu: acquire pcpu_lock when updating pcpu_nr_empty_pop_pages (Rafael Aquini) [1730471]
-- [mm] mm: do not access page->mapping directly on page_endio (Rafael Aquini) [1730471]
-- [mm] mm/page_alloc: fix nodes for reclaim in fast path (Rafael Aquini) [1730471]
-- [mm] mm: alloc_contig_range: allow to specify GFP mask (Rafael Aquini) [1730471]
-- [mm] mm: vmscan: scan dirty pages even in laptop mode (Rafael Aquini) [1730471]
-- [mm] mm/mempolicy.c: do not put mempolicy before using its nodemask (Rafael Aquini) [1730471]
-- [mm] mm: fix set pageblock migratetype in deferred struct page init (Rafael Aquini) [1730471]
-- [mm] mm: delete unnecessary and unsafe init_tlb_ubc() (Rafael Aquini) [1730471]
-- [kernel] mm, mempolicy: task->mempolicy must be NULL before dropping final reference (Rafael Aquini) [1730471]
-- [mm] mm: use phys_addr_t for reserve_bootmem_region() arguments (Rafael Aquini) [1730471]
-- [mm] mm/huge_memory: replace VM_NO_THP VM_BUG_ON with actual VMA check (Rafael Aquini) [1730471]
-- [mm] mm: soft-offline: check return value in second __get_any_page() call (Rafael Aquini) [1730471]
-- [include] include/linux/memblock.h: fix ordering of 'flags' argument in comments (Rafael Aquini) [1730471]
-- [mm] rmap: fix theoretical race between do_wp_page and shrink_active_list (Rafael Aquini) [1730471]
-- [mm] mm/mremap.c: clean up goto just return ERR_PTR (Rafael Aquini) [1730471]
-- [mm] mremap should return -ENOMEM when __vm_enough_memory fail (Rafael Aquini) [1730471]
-- [mm] writeback: fix possible underflow in write bandwidth calculation (Rafael Aquini) [1730471]
-- [mm] writeback: add missing INITIAL_JIFFIES init in global_update_bandwidth() (Rafael Aquini) [1730471]
-- [mm] mm/memory.c: actually remap enough memory (Rafael Aquini) [1730471]
-- [mm] mm/compaction: fix wrong order check in compact_finished() (Rafael Aquini) [1730471]
-- [mm] mm, vmscan: prevent kswapd livelock due to pfmemalloc-throttled process being killed (Rafael Aquini) [1730471]
-- [mm] mm: fix anon_vma_clone() error treatment (Rafael Aquini) [1730471]
-- [mm] mm, thp: fix collapsing of hugepages on madvise (Rafael Aquini) [1730471]
-- [mm] cgroup/kmemleak: add kmemleak_free() for cgroup deallocations (Rafael Aquini) [1730471]
-- [mm] OOM, PM: OOM killed task shouldn't escape PM suspend (Rafael Aquini) [1730471]
-- [mm] mm, compaction: pass gfp mask to compact_control (Rafael Aquini) [1730471]
-- [mm] mm: rename allocflags_to_migratetype for clarity (Rafael Aquini) [1730471]
-- [mm] mm: page_alloc: abort fair zone allocation policy when remotes nodes are encountered (Rafael Aquini) [1730471]
-- [mm] mm: vmscan: only update per-cpu thresholds for online CPU (Rafael Aquini) [1730471]
-- [mm] mm, thp: replace smp_mb after atomic_add by smp_mb__after_atomic (Rafael Aquini) [1730471]
-- [mm] mm, thp: move invariant bug check out of loop in __split_huge_page_map (Rafael Aquini) [1730471]
-- [mm] thp: consolidate assert checks in __split_huge_page() (Rafael Aquini) [1730471]
-- [mm] mm: fix sleeping function warning from __put_anon_vma (Rafael Aquini) [1730471]
-- [mm] mm: cleanup add_to_page_cache_locked() (Rafael Aquini) [1730471]
-- [mm] mm: mempolicy: turn vma_set_policy() into vma_dup_policy() (Rafael Aquini) [1730471]
-- [mm] mm: mempool: update the kmemleak stack trace for mempool allocations (Rafael Aquini) [1618438]
-- [lib] lib: radix-tree: update the kmemleak stack trace for radix tree allocations (Rafael Aquini) [1618438]
-- [mm] mm: kmemleak: introduce kmemleak_update_trace() (Rafael Aquini) [1618438]
-- [mm] mm: kmemleak: use u to print ->checksum (Rafael Aquini) [1618438]
-
-* Thu Aug 08 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1069.el7]
-- [kernel] sched: Reduce contention in update_cfs_rq_blocked_load() (Marcelo Tosatti) [1734515]
-- [x86] cpuidle-haltpoll: disable host side polling when kvm virtualized (Marcelo Tosatti) [1734501]
-- [kvm] kvm: x86: add host poll control msrs (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: add haltpoll governor (Marcelo Tosatti) [1734501]
-- [cpuidle] governors: unify last_state_idx (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: add poll_limit_ns to cpuidle_device structure (Marcelo Tosatti) [1734501]
-- [cpuidle] add cpuidle-haltpoll driver (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Fix default time limit (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Disregard disable idle states (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Revise loop termination condition (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: menu: Fix wakeup statistics updates for polling state (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Avoid invoking local_clock() too often (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: poll_state: Add time limit to poll_idle() (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: Move polling state initialization code to separate file (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: Remove time measurement in poll state (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: Set polling in poll_idle (Marcelo Tosatti) [1734501]
-- [cpuidle] cpuidle: dont call poll_idle_init() for every cpu (Marcelo Tosatti) [1734501]
-- [documentation] Documentation: Add swapgs description to the Spectre v1 documentation (Waiman Long) [1724510]
-- [documentation] Documentation: Add section about CPU vulnerabilities for Spectre (Waiman Long) [1724510]
-- [x86] x86/speculation/swapgs: Exclude ATOMs from speculation through SWAPGS (Waiman Long) [1724510]
-- [x86] x86/speculation: Enable Spectre v1 swapgs mitigations (Waiman Long) [1724510] {CVE-2019-1125}
-- [x86] x86/speculation: Prepare entry code for Spectre v1 swapgs mitigations (Waiman Long) [1724510] {CVE-2019-1125}
-- [x86] x86/feature: Relocate X86_FEATURE_INVPCID_SINGLE (Waiman Long) [1724510] {CVE-2019-1125}
-- [net] ipv4: Fix memory leak in network namespace dismantle (Sabrina Dubroca) [1715925]
-- [net] ipv6: icmp: Updating pmtu for link local route (Guillaume Nault) [1722686]
-- [net] tcp: be more careful in tcp_fragment() (Marcelo Leitner) [1732106]
-- [net] netfilter/ipvs: clear ipvs_property flag when SKB net namespace changed (Davide Caratti) [1724554]
-- [net] sctp: count data bundling sack chunk for outctrlchunks (Xin Long) [1722706]
-- [net] ipv6: fix a lockdep splat (Paolo Abeni) [1725192]
-- [net] check before dereferencing netdev_ops during busy poll (Matteo Croce) [1718118]
-- [net] sched: cls_flower: fix infinite loop in fl_walk() (Davide Caratti) [1712737]
-- [net] sched: act_api: don't go to NULL chains (Davide Caratti) [1712918]
-
-* Wed Aug 07 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1068.el7]
-- [pci] PCI: Probe bridge window attributes once at enumeration-time (Myron Stowe) [1730931]
-- [misc] VMCI: Fix integer overflow in VMCI handle arrays (Cathy Avery) [1729586]
-- [tty] tty/hvc_console: fix console lock ordering with spinlock (Pankaj Gupta) [1561754]
-- [x86] x86/hyperv: Suppress "PCI: Fatal: No config space access function found" (Raghavendra Rao) [1733597]
-- [powerpc] Wire up sys_seccomp(), sys_getrandom() and sys_memfd_create() (Laurent Vivier) [1717952]
-- [s390] virtio/s390: fix race on airq_areas (Thomas Huth) [1642860]
-- [s390] virtio/s390: make airq summary indicators DMA (Hendrik Brueckner) [1642860]
-- [s390] virtio/s390: use DMA memory for ccw I/O and classic notifiers (Hendrik Brueckner) [1642860]
-- [s390] virtio/s390: add indirection to indicators access (Hendrik Brueckner) [1642860]
-- [s390] s390/airq: use DMA memory for adapter interrupts (Hendrik Brueckner) [1642860]
-- [s390] s390/cio: add basic protected virtualization support (Hendrik Brueckner) [1642860]
-- [s390] s390/cio: introduce DMA pools to cio (Hendrik Brueckner) [1642860]
-- [s390] s390/mm: force swiotlb for protected virtualization (Hendrik Brueckner) [1642860]
-- [s390] virtio/s390: DMA support for virtio-ccw (Hendrik Brueckner) [1642860]
-- [s390] virtio/s390: use vring_create_virtqueue (Hendrik Brueckner) [1642860]
-- [s390] s390/virtio: handle find on invalid queue gracefully (Hendrik Brueckner) [1642860]
-- [virtio] virtio: Honour 'may_reduce_num' in vring_create_virtqueue (Hendrik Brueckner) [1642860]
-- [block] virtio-blk: Consider virtio_max_dma_size() for maximum segment size (Hendrik Brueckner) [1642860]
-- [virtio] virtio: Introduce virtio_max_dma_size() (Hendrik Brueckner) [1642860]
-- [dma] dma: Introduce dma_max_mapping_size() (Hendrik Brueckner) [1642860]
-- [lib] swiotlb: Introduce swiotlb_max_mapping_size() (Hendrik Brueckner) [1642860]
-- [x86] kvm: x86: ioapic: Fix level-triggered EOI and IOAPIC reconfigure race (Peter Xu) [1729417]
-- [hv] hv: vmbus: Implement Direct Mode for stimer0 (Vitaly Kuznetsov) [1712344]
-- [x86] kvm: x86: vmx: fix vpid leak (Vitaly Kuznetsov) [1716188]
-- [netdrv] virtio-net: Fix operstate for virtio when no VIRTIO_NET_F_STATUS (Jens Freimann) [1607809]
-- [md] return -ENODEV if rdev has no mddev assigned (Nigel Croxon) [1717767]
-- [linux] sg: remove ->sg_magic member (Gopal Tiwari) [1703366]
-
-* Tue Aug 06 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1067.el7]
-- [documentation] dynamic-debug-howto.txt: update since new wildcard support (Joe Lawrence) [1719948]
-- [lib] dynamic_debug: add wildcard support to filter files/functions/modules (Joe Lawrence) [1719948]
-- [lib] lib/parser.c: add match_wildcard() function (Joe Lawrence) [1719948]
-- [tools] selftests/livepatch: Add functions.sh to TEST_PROGS_EXTENDED (Joe Lawrence) [1719948]
-- [tools] selftests/livepatch: use TEST_PROGS for test scripts (Joe Lawrence) [1719948]
-- [tools] livepatch/selftests: use "$@" to preserve argument list (Joe Lawrence) [1719948]
-- [kernel] livepatch: Module coming and going callbacks can proceed with all listed patches (Joe Lawrence) [1719948]
-- [lib] livepatch: Proper error handling in the shadow variables selftest (Joe Lawrence) [1719948]
-- [lib] livepatch: return -ENOMEM on ptr_id() allocation failure (Joe Lawrence) [1719948]
-- [kernel] livepatch: Introduce klp_for_each_patch macro (Joe Lawrence) [1719948]
-- [kernel] livepatch: core: Return EOPNOTSUPP instead of ENOSYS (Joe Lawrence) [1719948]
-- [samples] livepatch: samples: non static warnings fix (Joe Lawrence) [1719948]
-- [kernel] livepatch: Remove signal sysfs attribute (Joe Lawrence) [1719948]
-- [kernel] livepatch: Send a fake signal periodically (Joe Lawrence) [1719948]
-- [lib] selftests/livepatch: introduce tests (Joe Lawrence) [1719948]
-- [documentation] livepatch: Remove ordering (stacking) of the livepatches (Joe Lawrence) [1719948]
-- [documentation] livepatch: Atomic replace and cumulative patches documentation (Joe Lawrence) [1719948]
-- [kernel] livepatch: Remove Nop structures when unused (Joe Lawrence) [1719948]
-- [kernel] livepatch: Add atomic replace (Joe Lawrence) [1719948]
-- [kernel] livepatch: Use lists to manage patches, objects and functions (Joe Lawrence) [1719948]
-- [samples] livepatch: Simplify API by removing registration step (Joe Lawrence) [1719948]
-- [kernel] livepatch: Don't block the removal of patches loaded after a forced transition (Joe Lawrence) [1719948]
-- [kernel] livepatch: Consolidate klp_free functions (Joe Lawrence) [1719948]
-- [kernel] livepatch: Shuffle klp_enable_patch()/klp_disable_patch() code (Joe Lawrence) [1719948]
-- [kernel] livepatch: Change unsigned long old_addr -> void *old_func in struct klp_func (Joe Lawrence) [1719948]
-- [samples] livepatch: check kzalloc return values (Joe Lawrence) [1719948]
-- [kernel] livepatch: Replace synchronize_sched() with synchronize_rcu() (Joe Lawrence) [1719948]
-- [kernel] livepatch: Validate module/old func name length (Joe Lawrence) [1719948]
-- [kernel] livepatch: Remove reliable stacktrace check in klp_try_switch_task() (Joe Lawrence) [1719948]
-- [documentation] livepatch: Remove not longer valid limitations from the documentation (Joe Lawrence) [1719948]
-- [documentation] Doc: Fix double words in Documentation (Joe Lawrence) [1719948]
-- [documentation] Documentation: livepatch: add section about arch-specific code (Joe Lawrence) [1719948]
-- [documentation] Documentation: livepatch: outline Elf format and requirements for patch modules (Joe Lawrence) [1719948]
-- [ipc] ipc: drop non-RCU allocation (Vladis Dronov) [1733016]
-- [ipc] ipc/util.c: use kvfree() in ipc_rcu_free() (Vladis Dronov) [1733016]
-- [ipc] tree wide: use kvfree() than conditional kfree()/vfree() (Vladis Dronov) [1733016]
-- [ipc] do cyclic id allocation for the ipc object (Waiman Long) [1373519]
-- [ipc] conserve sequence numbers in ipcmni_extend mode (Waiman Long) [1373519]
-- [ipc] allow boot time extension of IPCMNI from 32k to 16M (Waiman Long) [1373519]
-- [ipc] IPCMNI limit check for semmni (Waiman Long) [1373519]
-- [ipc] IPCMNI limit check for msgmni and shmmni (Waiman Long) [1373519]
-- [ipc] util.c: further variable name cleanups (Waiman Long) [1373519]
-- [ipc] reorganize initialization of kern_ipc_perm.seq (Waiman Long) [1373519]
-- [kernel] ipc: Move IPCMNI from ipc.h into ipc/util.h (Waiman Long) [1373519]
-- [ipc] sysvipc: make get_maxid O(1) again (Waiman Long) [1373519]
-- [ipc] sysvipc: properly name ipc_addid() limit parameter (Waiman Long) [1373519]
-- [ipc] sysvipc: unteach ids->next_id for !CHECKPOINT_RESTORE (Waiman Long) [1373519]
-- [ipc] msg: increase MSGMNI, remove scaling (Waiman Long) [1373519]
-- [ipc] always handle a new value of auto_msgmni (Waiman Long) [1373519]
-- [ipc] convert use of typedef ctl_table to struct ctl_table (Waiman Long) [1373519]
-- [ipc] use device_initcall (Waiman Long) [1373519]
-- [ipc] delete seq_max field in struct ipc_ids (Waiman Long) [1373519]
-- [ipc] standardize code comments (Waiman Long) [1373519]
-- [ipc] whitespace cleanup (Waiman Long) [1373519]
-- [ipc] util.c: remove unnecessary work pending test (Waiman Long) [1373519]
-
-* Tue Aug 06 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1066.el7]
-- [fs] nfs: Cleanup if nfs_match_client is interrupted (Benjamin Coddington) [1695710]
-- [fs] nfs: Fix a double unlock from nfs_match, get_client (Benjamin Coddington) [1695710]
-- [fs] nfs: make nfs_match_client killable (Benjamin Coddington) [1695710]
-- [fs] nfsv4.1: Avoid false retries when RPC calls are interrupted (Benjamin Coddington) [1732427]
-- [fs] NFS4.1 handle interrupted slot reuse from ERR_DELAY (Benjamin Coddington) [1732427]
-- [fs] nfsv4.1: Fix the client behaviour on NFS4ERR_SEQ_FALSE_RETRY (Benjamin Coddington) [1732427]
-- [fs] xfs: don't ever put nlink > 0 inodes on the unlinked list (Carlos Maiolino) [1721498]
-- [fs] xfs: Initialize variables in xfs_alloc_get_rec before using them (Carlos Maiolino) [1721498]
-- [fs] xfs: ensure post-EOF zeroing happens after zeroing part of a file (Carlos Maiolino) [1721498]
-- [fs] xfs: don't trip over negative free space in xfs_reserve_blocks (Carlos Maiolino) [1721498]
-- [fs] xfs: allow empty transactions while frozen (Carlos Maiolino) [1721498]
-- [fs] xfs: xfs_iflush_abort() can be called twice on cluster writeback failure (Carlos Maiolino) [1721498]
-- [fs] xfs: More robust inode extent count validation (Carlos Maiolino) [1721498]
-- [fs] xfs: simplify xfs_bmap_punch_delalloc_range (Carlos Maiolino) [1721498]
-- [fs] xfs: update incore per-AG inode count (Carlos Maiolino) [1721498]
-- [fs] xfs: validate btree records on retrieval (Carlos Maiolino) [1721498]
-- [fs] xfs: push corruption -> ESTALE conversion to xfs_nfs_get_inode() (Carlos Maiolino) [1721498]
-- [fs] xfs: verify root inode more thoroughly (Carlos Maiolino) [1721498]
-- [fs] xfs: catch bad stripe alignment configurations (Carlos Maiolino) [1721498]
-- [fs] xfs: don't assert on corrupted unlinked inode list (Carlos Maiolino) [1721498]
-- [fs] xfs: explicitly pass buffer size to xfs_corruption_error (Carlos Maiolino) [1721498]
-- [fs] xfs: don't assert when on-disk btree pointers are garbage (Carlos Maiolino) [1721498]
-- [fs] xfs: strengthen btree pointer checks before use (Carlos Maiolino) [1721498]
-- [fs] xfs: introduce xfs_btree_debug_check_ptr (Carlos Maiolino) [1721498]
-- [fs] xfs: check directory bestfree information in the verifier (Carlos Maiolino) [1721498]
-- [fs] xfs: don't return garbage buffers in xfs_da3_node_read (Carlos Maiolino) [1721498]
-- [fs] xfs: don't ASSERT on short form btree root pointer of zero (Carlos Maiolino) [1721498]
-- [fs] xfs: btree lookup shouldn't ASSERT on empty btree nodes (Carlos Maiolino) [1721498]
-- [fs] xfs: xfs_alloc_get_rec should return EFSCORRUPTED for obvious bnobt corruption (Carlos Maiolino) [1721498]
-- [fs] xfs: remove redundant ASSERT on insufficient bestfree length in _leaf_addname (Carlos Maiolino) [1721498]
-- [fs] xfs: don't assert when reporting on-disk corruption while loading btree (Carlos Maiolino) [1721498]
-- [fs] xfs: verify AGI unlinked list contains valid blocks (Carlos Maiolino) [1721498]
-- [fs] xfs: xfs_rtword_t should be unsigned, not signed (Carlos Maiolino) [1721498]
-- [fs] xfs: fix inobt magic number check (Carlos Maiolino) [1721498]
-- [fs] xfs: fix double ijoin in xfs_inactive_symlink_rmt() (Carlos Maiolino) [1721498]
-- [fs] xfs: don't assert fail with AIL lock held (Carlos Maiolino) [1721498]
-- [fs] xfs: log item flags are racy (Carlos Maiolino) [1721498]
-- [fs] xfs: bmap debugging should never panic the system (Carlos Maiolino) [1721498]
-- [fs] xfs: print specific dqblk that failed verifiers (Carlos Maiolino) [1721498]
-- [fs] xfs: add full xfs_dqblk verifier (Carlos Maiolino) [1721498]
-- [fs] xfs: pass full xfs_dqblk to repair during quotacheck (Carlos Maiolino) [1721498]
-- [fs] xfs: check type in quota verifier during quotacheck (Carlos Maiolino) [1721498]
-- [fs] xfs: remove unused flags arg from xfs_dquot_verify (Carlos Maiolino) [1721498]
-- [fs] xfs: make xfs_buf_incore out of line (Carlos Maiolino) [1721498]
-- [fs] xfs: trace ATTR flags in xattr tracepoints (Carlos Maiolino) [1721498]
-- [fs] xfs: validate allocated inode number (Carlos Maiolino) [1721498]
-- [fs] xfs: fix intent use-after-free on abort (Carlos Maiolino) [1721498]
-- [fs] xfs: Remove "committed" argument of xfs_dir_ialloc (Carlos Maiolino) [1721498]
-- [fs] xfs: do not log/recover swapext extent owner changes for deleted inodes (Carlos Maiolino) [1721498]
-- [fs] xfs: clean up xfs_mount allocation and dynamic initializers (Carlos Maiolino) [1721498]
-- [fs] xfs: remove dead inode version setting code (Carlos Maiolino) [1721498]
-- [fs] xfs: don't accept inode buffers with suspicious unlinked chains (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor inode buffer verifier error logging (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor inode verifier error logging (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor bmap record validation (Carlos Maiolino) [1721498]
-- [fs] xfs: sanity-check the unused space before trying to use it (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor xfs_log_force_lsn (Carlos Maiolino) [1721498]
-- [fs] xfs: don't use XFS_BMAPI_ENTRIRE in xfs_get_blocks (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor xfs_log_force (Carlos Maiolino) [1721498]
-- [fs] xfs: merge _xfs_log_force_lsn and xfs_log_force_lsn (Carlos Maiolino) [1721498]
-- [fs] xfs: merge _xfs_log_force and xfs_log_force (Carlos Maiolino) [1721498]
-- [fs] xfs: remove the unused log_flushed variable in xfs_extent_busy_flush (Carlos Maiolino) [1721498]
-- [fs] xfs: remove an outdated comment for xfs_inode_item_committing (Carlos Maiolino) [1721498]
-- [fs] xfs: remove misleading comment text on xfs_inode_item_unlock (Carlos Maiolino) [1721498]
-- [fs] xfs: shutdown if block allocation overruns tx reservation (Carlos Maiolino) [1721498]
-- [fs] xfs: convert a few more directory asserts to corruption (Carlos Maiolino) [1721498]
-- [fs] xfs: don't iunlock the quota ip when quota block (Carlos Maiolino) [1721498]
-- [fs] xfs: remove unused m_dmevmask from xfs_mount struct (Carlos Maiolino) [1721498]
-- [fs] xfs: fall back to vmalloc when allocation log vector buffers (Carlos Maiolino) [1721498]
-- [fs] xfs: fix potential memory leak in mount option parsing (Carlos Maiolino) [1721498]
-- [fs] xfs: fix u32 type usage in sb validation function (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor inode verifier corruption error printing (Carlos Maiolino) [1721498]
-- [fs] Get rid of xfs_buf_log_item_t typedef (Carlos Maiolino) [1721498]
-- [fs] xfs: fix non-debug build compiler warnings (Carlos Maiolino) [1721498]
-- [fs] xfs: check sb_agblocks and sb_agblklog when validating superblock (Carlos Maiolino) [1721498]
-- [fs] xfs: btree format ifork loader should check for zero numrecs (Carlos Maiolino) [1721498]
-- [fs] xfs: attr leaf verifier needs to check for obviously bad count (Carlos Maiolino) [1721498]
-- [fs] xfs: cancel tx on xfs_defer_finish() error during xattr set/remove (Carlos Maiolino) [1721498]
-- [fs] xfs: destroy mutex pag_ici_reclaim_lock before free (Carlos Maiolino) [1721498]
-- [fs] xfs: change 0xp -> p in print messages (Carlos Maiolino) [1721498]
-- [fs] xfs: clarify units in the failed metadata io message (Carlos Maiolino) [1721498]
-- [fs] xfs: harden directory integrity checks some more (Carlos Maiolino) [1721498]
-- [fs] xfs: dump the first 128 bytes of any corrupt buffer (Carlos Maiolino) [1721498]
-- [fs] xfs: teach error reporting functions to take xfs_failaddr_t (Carlos Maiolino) [1721498]
-- [fs] xfs: standardize quota verification function outputs (Carlos Maiolino) [1721498]
-- [fs] xfs: separate dquot repair into a separate function (Carlos Maiolino) [1721498]
-- [fs] xfs: create a new buf_ops pointer to verify structure metadata (Carlos Maiolino) [1721498]
-- [fs] xfs: fail out of xfs_attr3_leaf_lookup_int if it looks corrupt (Carlos Maiolino) [1721498]
-- [fs] xfs: provide a centralized method for verifying inline fork data (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor short form directory structure verifier function (Carlos Maiolino) [1721498]
-- [fs] xfs: create structure verifier function for short form symlinks (Carlos Maiolino) [1721498]
-- [fs] xfs: create structure verifier function for shortform xattrs (Carlos Maiolino) [1721498]
-- [fs] xfs: optimize inline symlinks (Carlos Maiolino) [1721498]
-- [fs] xfs: verify dinode header first (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor verifier callers to print address of failing check (Carlos Maiolino) [1721498]
-- [fs] xfs: have buffer verifier functions report failing address (Carlos Maiolino) [1721498]
-- [fs] xfs: refactor xfs_verifier_error and xfs_buf_ioerror (Carlos Maiolino) [1721498]
-- [fs] xfs: remove XFS_WANT_CORRUPTED_RETURN from dir3 data verifiers (Carlos Maiolino) [1721498]
-- [fs] xfs: remove XFS_FSB_SANITY_CHECK (Carlos Maiolino) [1721498]
-- [fs] xfs: Show realtime device stats on statfs calls if realtime flags set (Carlos Maiolino) [1721498]
-- [fs] cifs: keep FileInfo handle live during oplock break (Leif Sahlberg) [1733329]
-
-* Mon Aug 05 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1065.el7]
-- [mm] mem-hotplug: fix node spanned pages when we have a node with only ZONE_MOVABLE (Baoquan He) [1694090]
-- [mm] memory-hotplug: fix comments in zone_spanned_pages_in_node() and zone_spanned_pages_in_node() (Baoquan He) [1694090]
-- [mm] mem-hotplug: fix node spanned pages when we have a movable node (Baoquan He) [1694090]
-- [mm] mm: report available pages as "MemTotal" for each NUMA node (Baoquan He) [1694090]
-- [mm] mmap: allow MAP_HUGETLB for hugetlbfs files v2 (Kenneth Yin) [1730100]
-- [s390] s390/protvirt: block kernel command line alteration (Hendrik Brueckner) [1642859]
-- [s390] s390/protvirt: add memory sharing for diag 308 set/store (Hendrik Brueckner) [1642859]
-- [s390] s390/uv: introduce guest side ultravisor code (Hendrik Brueckner) [1642859]
-- [s390] qdio: handle PENDING state for QEBSM devices (Philipp Rudo) [1731511]
-- [s390] qeth: be drop monitor friendly (Philipp Rudo) [1731508]
-- [net] af_iucv: remove GFP_DMA restriction for HiperTransport (Philipp Rudo) [1731510]
-- [netdrv] bnx2x: Disable multi-cos feature (Manish Chopra) [1704157]
-- [netdrv] bnxt_en: Add support for BCM957504 (Jonathan Toppins) [1673791]
-- [net] bluetooth: hidp: fix buffer overflow (Gopal Tiwari) [1723657] {CVE-2019-11884}
-- [scsi] core: use scmd_printk() to print which command timed out (Maurizio Lombardi) [1651706]
-- [cpufreq] pcc-cpufreq: Fail initialization if driver cannot be registered (David Arcari) [1718042]
-- [scsi] target/iblock: Fix overrun in WRITE SAME emulation (Maurizio Lombardi) [1729507]
-- [scsi] iscsi: set auth_protocol back to NULL if CHAP_A value is not supported (Maurizio Lombardi) [1726689]
-- [x86] umip: Make the UMIP activated message generic (David Arcari) [1719999]
-- [x86] umip: Print UMIP line only once (David Arcari) [1719999]
-- [x86] insn-eval: Fix use-after-free access to LDT entry (Rafael Aquini) [1728558] {CVE-2019-13233}
-- [x86] spec_ctrl: Use static_key for IBRS syscall path macros (Waiman Long) [1729548]
-- [powerpc] watchpoint: Restore NV GPRs while returning from exception (Steve Best) [1729856]
-- [powerpc] powerpc/tm: Fix oops on sigreturn on systems without TM (Steve Best) [1732823]
-- [powerpc] rtas: retry when cpu offline races with suspend/migration (Steve Best) [1727049]
-- [netdrv] ibmvnic: Fix unchecked return codes of memory allocations (Steve Best) [1718952]
-- [netdrv] ibmvnic: Refresh device multicast list after reset (Steve Best) [1718952]
-- [netdrv] ibmvnic: Do not close unopened driver during reset (Steve Best) [1718952]
-- [block] fix use-after-free on gendisk (Ming Lei) [1700091]
-- [block] blk-mq: Allow blocking queue tag iter callbacks (Ming Lei) [1665132]
-- [block] blk-mq: sync the update nr_hw_queues with blk_mq_queue_tag_busy_iter (Ming Lei) [1665132]
-- [tools] bpftool: Fix prog dump by tag (Jiri Olsa) [1697240]
-
-* Sat Aug 03 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1064.el7]
-- [ata] libata: remove WARN() for DMA or PIO command without data (David Milburn) [1725328]
-- [netdrv] atl1c: reserve min skb headroom (Florian Westphal) [1531461]
-- [netdrv] ibmvnic: Update carrier state after link state change (Gustavo Duarte) [1711667]
-- [netdrv] net/ibmvnic: Update MAC address settings after adapter reset (Gustavo Duarte) [1711667]
-- [s390] jump_label: replace stop_machine with smp_call_function (Hendrik Brueckner) [1720389 1720387]
-- [s390] zcrypt: Fix wrong dispatching for control domain CPRBs (Hendrik Brueckner) [1720389]
-- [nvme] nvme-rdma: always have a valid trsvcid (David Milburn) [1717536]
-- [nvme] nvme-rdma: use inet_pton_with_scope helper (David Milburn) [1717536]
-- [nvme] nvmet-rdma: use generic inet_pton_with_scope (David Milburn) [1717536]
-- [usb] hso: Fix OOB memory access in hso_probe/hso_get_config_data (Torez Smith) [1689304 1666659] {CVE-2018-19985 CVE-2018-20169}
-- [usb] check usb_get_extra_descriptor for proper size (Torez Smith) [1689304 1666659] {CVE-2018-19985 CVE-2018-20169}
-- [scripts] override locale from environment when running recordmcount.pl (Prarit Bhargava) [1721512]
-- [kernel] cpuset: restore sanity to cpuset_cpus_allowed_fallback() (Joel Savitz) [1721294]
-- [nvme] Fix u32 overflow in the number of namespace list calculation (Gopal Tiwari) [1720378]
-- [target] scsi: tcmu: avoid cmd/qfull timers updated whenever a new cmd comes (Maurizio Lombardi) [1630682]
-- [netdrv] nfp: ensure skb network header is set for packet redirect (Pablo Cascon) [1718900]
-- [kernel] userfaultfd: use RCU to free the task struct when fork fails (Andrea Arcangeli) [1718494]
-- [scsi] sg: protect against races between mmap() and SG_SET_RESERVED_SIZE (Ewan Milne) [1710533]
-- [scsi] sg: recheck MMAP_IO request length with lock held (Ewan Milne) [1710533]
-- [scsi] sg: reset 'res_in_use' after unlinking reserved array (Ewan Milne) [1710533]
-- [scsi] sg: protect accesses to 'reserved' page array (Ewan Milne) [1710533]
-- [net] af_key: do not use GFP_KERNEL in atomic contexts (Vladis Dronov) [1715917]
-- [net] Fix RCU splat in af_key (Vladis Dronov) [1715917]
-- [x86] aesni: initialize gcm(aes) cryptd child's key/authsize (Sabrina Dubroca) [1698551]
-- [block] blk-mq-pci: add a fallback when pci_irq_get_affinity returns NULL (Ming Lei) [1717059]
-- [pci] msi: Don't warn when irq_create_affinity_masks() returns NULL (Ming Lei) [1717059]
-- [lib] rhashtable: Still do rehash when we get EEXIST (Vladis Dronov) [1712450]
-- [kernel] sysctl.c: fix out-of-bounds access when setting file-max (Eric Sandeen) [1693737]
-- [kernel] sysctl: handle overflow for file-max (Eric Sandeen) [1693737]
-- [kernel] sysctl: handle overflow in proc_get_long (Eric Sandeen) [1693737]
-- [x86] perf/x86/intel: Add Tremont core PMU support (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Add Icelake support (Jiri Olsa) [1482406]
-- [x86] perf/x86: Support constraint ranges (Jiri Olsa) [1482406]
-- [x86] perf/x86/lbr: Avoid reading the LBRs when adaptive PEBS handles them (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Support adaptive PEBS v4 (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Fix unwind errors from PEBS entries (mk-II) (Jiri Olsa) [1482406]
-- [kernel] perf: Return empty callchain instead of NULL (Jiri Olsa) [1482406]
-- [kernel] perf: Make perf_callchain function static (Jiri Olsa) [1482406]
-- [x86] perf/x86: Support outputting XMM registers (Jiri Olsa) [1482406]
-- [x86] perf/x86: Fix incorrect PEBS_REGS (Jiri Olsa) [1482406]
-- [x86] perf/x86/kvm: Avoid unnecessary work in guest filtering (Jiri Olsa) [1482406]
-- [x86] cpufeature: Add facility to check for min microcode revisions (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Rename confusing 'freerunning PEBS' API and implementation to 'large PEBS' (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel/ds: Extract code of event update in short period (Jiri Olsa) [1482406]
-- [x86] perf/x86/intel: Extract memory code PEBS parser for reuse (Jiri Olsa) [1482406]
-
-* Fri Aug 02 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1063.el7]
-- [nvme] nvme-rdma: use dynamic dma mapping per command (David Milburn) [1637693]
-- [nvme] nvme-rdma: remove redundant reference between ib_device and tagset (David Milburn) [1637693]
-- [x86] apic: Fix device hotplug NULL pointer dereference (Prarit Bhargava) [1724644]
-- [fs] coredump: fix the setting of PF_DUMPCORE (Vladis Dronov) [1706150]
-- [fs] cifs: fix parsing of symbolic link error response (Leif Sahlberg) [1672539]
-- [fs] cifs: fix crash in cifs_dfs_do_automount (Leif Sahlberg) [1649907]
-- [fs] gfs2: Check for NULL dev_name on gfs2meta mount (Andrew Price) [1722499]
-- [fs] cifs: do not attempt cifs operation on smb2+ rename error (Leif Sahlberg) [1694201]
-- [fs] cifs: Fix copy_file_range for write on the same file (Leif Sahlberg) [1689108]
-- [fs] cifs: fix panic in smb2_reconnect (Leif Sahlberg) [1702264]
-- [fs] binfmt_misc.c: do not allow offset overflow (Bill O'Donnell) [1708066]
-- [fs] xfs: prohibit fstrim in norecovery mode (Bill O'Donnell) [1697229]
-- [fs] iomap: fix page_done callback for short writes (Andreas Grunbacher) [1724362]
-- [fs] fs: fold __generic_write_end back into generic_write_end (Andreas Grunbacher) [1724362]
-- [fs] iomap: don't mark the inode dirty in iomap_write_end (Andreas Grunbacher) [1724362]
-- [fs] gfs2: Fix iomap write page reclaim deadlock (Andreas Grunbacher) [1724362]
-- [fs] iomap: Add a page_prepare callback (Andreas Grunbacher) [1724362]
-- [fs] iomap: Fix use-after-free error in page_done callback (Andreas Grunbacher) [1724362]
-- [fs] fs: Turn __generic_write_end into a void function (Andreas Grunbacher) [1724362]
-- [fs] iomap: Clean up __generic_write_end calling (Andreas Grunbacher) [1724362]
-- [fs] nfs/pnfs: Bulk destroy of layouts needs to be safe w.r.t. umount (Benjamin Coddington) [1686179]
-- [fs] pnfs: Skip invalid stateids when doing a bulk destroy (Benjamin Coddington) [1686179]
-- [netdrv] mlx4/en_netdev: allow offloading VXLAN over VLAN (Paolo Abeni) [1733671]
-- [scsi] vmw_pscsi: Fix use-after-free in pvscsi_queue_lck() (David Milburn) [1720298]
-- [netdrv] ice: Implement pci_error_handler ops (Jonathan Toppins) [1673159]
-- [netdrv] bnxt_en: Reduce memory usage when running in kdump kernel (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix possible BUG() condition when calling pci_disable_msix() (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix aggregation buffer leak under OOM condition (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Improve NQ reservations (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix uninitialized variable usage in bnxt_rx_pkt() (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix statistics context reservation logic (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Pass correct extended TX port statistics size to firmware (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Fix possible crash in bnxt_hwrm_ring_free() under error conditions (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Free short FW command HWRM memory in error path in bnxt_init_one() (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Improve multicast address setup logic (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Reset device on RX buffer errors (Jonathan Toppins) [1715161]
-- [netdrv] bnxt_en: Improve RX consumer index validity check (Jonathan Toppins) [1715161]
-- [netdrv] mlx4_en: Fix reporting phy counters (Alaa Hleihel) [1716338]
-- [scsi] avoid leaking shost->bqt on scsi_add_host_with_dma() failure path (Vitaly Kuznetsov) [1702572]
-- [ata] scsi: use host wide tags by default (fixup) (Vitaly Kuznetsov) [1702572]
-- [netdrv] nfp: use kvcalloc() to allocate SW buffer descriptor arrays (Pablo Cascon) [1704203]
-- [kernel] sysctl: Use do_proc_do[u]intvec_conv for bounds-checking (Alex Gladkov) [1597153]
-- [kernel] sysctl: Add missing range check in do_proc_dointvec_minmax_conv (Alex Gladkov) [1597153]
-- [netdrv] mlx5e: Additional check for flow destination comparison (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Fix ethtool rxfh commands when CONFIG_MLX5_EN_RXNFC is disabled (Alaa Hleihel) [1710423]
-- [netdrv] mlx5: Imply MLXFW in mlx5_core (Alaa Hleihel) [1710423]
-- [netdrv] mlx5: Set completion EQs as shared resources (Alaa Hleihel) [1710423]
-- [infiniband] ib/mlx5: Verify DEVX general object type correctly (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Turn on HW tunnel offload in all TIRs (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Take common TIR context settings into a function (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Fix NULL pointer derefernce in set channels error flow (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Fix access to non-existing receive queue (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Move RSS params to a dedicated struct (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Refactor TIR configuration function (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: Move modify tirs hash functionality (Alaa Hleihel) [1710423]
-- [infiniband] rdma/mlx5: Do not allow the user to write to the clock page (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: XDP, Fix shifted flag index in RQ bitmap (Alaa Hleihel) [1710423]
-- [infiniband] rdma/mlx5: Initialize roce port info before multiport master init (Alaa Hleihel) [1710423]
-- [netdrv] mlx5e: ethtool, Remove unsupported SFP EEPROM high pages query (Alaa Hleihel) [1710423]
-- [infiniband] ib/mlx5: Fix scatter to CQE in DCT QP creation (Alaa Hleihel) [1710423]
-- [acpi] nfit: Fix nfit_intel_shutdown_status() command submission (Jeff Moyer) [1641418]
-- [infiniband] core, ipoib: Do not overreact to SM LID change event (Kamal Heib) [1707873]
-- [netdrv] brcmfmac: add subtype check for event handling in data path (Stanislaw Gruszka) [1704681] {CVE-2019-9503}
-- [netdrv] brcmfmac: assure SSID length from firmware is limited (Stanislaw Gruszka) [1704880] {CVE-2019-9500}
-- [bluetooth] btusb: Add support for Intel bluetooth device 8087:0029 (Gopal Tiwari) [1702163]
-- [bluetooth] btusb: Add support for Intel Bluetooth device 22560 [8087:0026] (Gopal Tiwari) [1702163]
-
-* Thu Jul 18 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1062.el7]
-- [fs] revert "xfs: disable copy_file_range() to avoid broken splice copy" (Eric Sandeen) [1731205]
-
-* Thu Jul 11 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1061.el7]
-- [linux] efi: Disable local interrupts across efi run-time calls (Lenny Szubowicz) [1716252]
-- [net] tcp: refine memory limit test in tcp_fragment() (Florian Westphal) [1723032]
-- [net] tcp: provide TCP_FRAG_IN_WRITE/RTX_QUEUE for tcp_fragment use (Florian Westphal) [1723032]
-
-* Mon Jul 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1060.el7]
-- [char] random: move FIPS continuous test to output functions (Herbert Xu) [1723910]
-- [netdrv] i40e: fix WoL support check (Stefan Assmann) [1720021]
-- [fs] revert "gfs2: Use d_materialise_unique instead of d_splice_alias" (Robert S Peterson) [1677686]
-- [mm] vmpressure: make sure there are no events queued after memcg is offlined (Vratislav Bendel) [1685447]
-- [mm] revert "mm: split page_type out from _mapcount" (David Hildenbrand) [1723689]
-- [mm] huge_memory: make pmd huge before dirty (Rafael Aquini) [1720278]
-- [mm] revert "don't split THP page when MADV_FREE syscall is called" (Rafael Aquini) [1720278]
-- [mm] revert "fix incorrect unlock error path in madvise_free_huge_pmd" (Rafael Aquini) [1720278]
-- [mm] revert "pmd dirty emulation in page fault handler" (Rafael Aquini) [1720278]
-- [mm] revert "thp: fix crash due race in MADV_FREE handling" (Rafael Aquini) [1720278]
-
-* Thu Jun 27 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1059.el7]
-- [scsi] scsi: megaraid_sas: return error when create DMA pool failed (Tomas Henzl) [1712861] {CVE-2019-11810}
-- [fs] cifs: cifs_read_allocate_pages: don't iterate through whole page array on ENOMEM (Leif Sahlberg) [1714220]
-- [fs] cifs: add more spinlocks to pretect against races (Leif Sahlberg) [1580165]
-- [fs] xfs: serialize unaligned dio writes against all other dio writes (Brian Foster) [1699800]
-- [fs] xfs: disable copy_file_range() to avoid broken splice copy (Brian Foster) [1688067]
-- [fs] ext4: check superblock mapped prior to committing (Lukas Czerner) [1721737]
-- [sound] alsa: alsa: hda - do not use ALC255_FIXUP_MIC_MUTE_LED for Huawei laptops (Jaroslav Kysela) [1721867]
-- [sound] alsa: revert "[sound] alsa: hda - Support led audio trigger" (Jaroslav Kysela) [1721867]
-- [mm] memory_hotplug: fix scan_movable_pages() for gigantic hugepages (Rafael Aquini) [1721503]
-- [mm] page_alloc: fix has_unmovable_pages for HugePages (Rafael Aquini) [1721503]
-- [mm] memory_hotplug: check zone_movable in has_unmovable_pages (Rafael Aquini) [1721503]
-- [mm] memory_hotplug: make has_unmovable_pages more robust (Rafael Aquini) [1721503]
-- [kernel] workqueue: Fix NULL pointer dereference (Denys Vlasenko) [1655834]
-
-* Fri Jun 21 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1058.el7]
-- [net] tcp: enforce tcp_min_snd_mss in tcp_mtu_probing() (Florian Westphal) [1719915] {CVE-2019-11479}
-- [net] tcp: add tcp_min_snd_mss sysctl (Florian Westphal) [1719915] {CVE-2019-11479}
-- [net] tcp: limit payload size of sacked skbs (Florian Westphal) [1719595] {CVE-2019-11477}
-- [net] tcp: pass previous skb to tcp_shifted_skb() (Florian Westphal) [1719595] {CVE-2019-11477}
-- [net] tcp: tcp_fragment() should apply sane memory limits (Florian Westphal) [1719850] {CVE-2019-11478}
-- [fs] Revert "Fix default behaviour for empty domains and add domainauto option" (Leif Sahlberg) [1710421]
-- [fs] libceph: handle an empty authorize reply (Ilya Dryomov) [1718305]
-- [scsi] qla2xxx: Mark NVMe/FC initiator mode usage as technology preview (Ewan Milne) [1721655]
-- [nvme] Removing DMA_ATTR_NO_WARN for dma_alloc_attrs (Gopal Tiwari) [1715433]
-- [netdrv] qlcnic: fix Tx descriptor corruption on 82xx devices (Manish Chopra) [1715481]
-- [mm] mincore.c: make mincore() more conservative (Rafael Aquini) [1664199] {CVE-2019-5489}
-- [kernel] pm/hibernate: exclude all PageOffline() pages (David Hildenbrand) [1718771]
-- [hv] hv_balloon: mark inflated pages PG_offline (David Hildenbrand) [1718771]
-- [kernel] kexec: export PG_offline to VMCOREINFO (David Hildenbrand) [1718771]
-- [kernel] mm: convert PG_balloon to PG_offline (David Hildenbrand) [1718771]
-- [kernel] mm: split page_type out from _mapcount (David Hildenbrand) [1718771]
-- [kernel] mm: clean up non-standard page->_mapcount users (David Hildenbrand) [1718771]
-- [kernel] mm: consolidate all page-flags helpers in <linux/page-flags.h> (David Hildenbrand) [1718771]
-- [kernel] mm: page-flags: clean up the page flag test, set, clear macros (David Hildenbrand) [1718771]
-- [kernel] alarmtimer: Prevent overflow for relative nanosleep (Artem Savkov) [1653677] {CVE-2018-13053}
-- [kernel] module.c: Only return -EEXIST for modules that have finished loading part II (Prarit Bhargava) [1704844]
-- [x86] mm: Create an SME workarea in the kernel for early encryption (Lianbo Jiang) [1718348]
-- [x86] mm: Identify the end of the kernel area to be reserved (Lianbo Jiang) [1718348]
-- [x86] kdump: Export the SME mask to vmcoreinfo (Lianbo Jiang) [1718348]
-- [fs] proc/vmcore: Fix i386 build error of missing copy_oldmem_page_encrypted() (Lianbo Jiang) [1718348]
-- [x86] kdump, proc/vmcore: Enable kdumping encrypted memory with SME enabled (Lianbo Jiang) [1718348]
-- [iommu] amd: Remap the IOMMU device table with the memory encryption mask for kdump (Lianbo Jiang) [1718348]
-- [kernel] kexec: Allocate decrypted control pages for kdump if SME is enabled (Lianbo Jiang) [1718348]
-- [x86] ioremap: Add an ioremap_encrypted() helper (Lianbo Jiang) [1718348]
-- [x86] pti: Do not create debugfs for the pti_enabled when SME is active (Lianbo Jiang) [1720997]
-- [x86] resctrl: Prevent NULL pointer dereference when local MBM is disabled (Prarit Bhargava) [1713547]
-- [s390] pkey: Indicate old mkvp only if old and current mkvp are different (Hendrik Brueckner) [1720388]
-- [s390] qdio: clear intparm during shutdown (Hendrik Brueckner) [1720390]
-- [s390] Remove VLAIS in ptff() and clear_table() (Yauheni Kaliuta) [1691710]
-- [s390] remove 31 bit support (Yauheni Kaliuta) [1691710]
-- [s390] timex: fix get_tod_clock_ext() inline assembly (Yauheni Kaliuta) [1691710]
-- [s390] Use for_each_set_bit_inv instead of for_each_set_bit_left (Yauheni Kaliuta) [1691710]
-- [s390] bitops: add for_each_set_bit_inv helper (Yauheni Kaliuta) [1691710]
-- [s390] bitops: rename find_first_bit_left() to find_first_bit_inv() (Yauheni Kaliuta) [1691710]
-- [s390] bitops: use flogr instruction to implement __ffs, ffs, __fls, fls and fls64 (Yauheni Kaliuta) [1691710]
-- [s390] bitops: use generic find bit functions / reimplement _left variant (Yauheni Kaliuta) [1691710]
-- [s390] bitops: remove CONFIG_SMP / simplify non-atomic bitops (Yauheni Kaliuta) [1691710]
-- [s390] bitops: make use of interlocked-access facility 1 instructions (Yauheni Kaliuta) [1691710]
-- [s390] bitops: fix inline assembly constraints (Yauheni Kaliuta) [1691710]
-
-* Fri Jun 14 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1057.el7]
-- [fs] ext4: zero out the unused memory region in the extent tree block (Lukas Czerner) [1715280] {CVE-2019-11833}
-- [fs] revert "lockd: Show pid of lockd for remote locks" (Benjamin Coddington) [1717377]
-- [scsi] qla2xxx: Allow IRQ balance to spread vectors across multiple CPU (Himanshu Madhani) [1713412]
-- [netdrv] i40e: Do not check VF state in i40e_ndo_get_vf_config (Stefan Assmann) [1701191]
-- [netdrv] qed: Backport missing hw ptp config hunks (Manish Chopra) [1712585]
-- [infiniband] rdma/qedr: Fix incorrect device rate (Manish Chopra) [1713577]
-- [watchdog] core: Add watchdog_thresh command line parameter (Prarit Bhargava) [1714612]
-- [x86] kvm: x86: Sync the pending Posted-Interrupts (Peter Xu) [1719525]
-- [x86] kvm: vmx: remove WARN_ON_ONCE in kvm_vcpu_trigger_posted_interrupt (Peter Xu) [1719525]
-
-* Wed Jun 12 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1056.el7]
-- [infiniband] ib/mlx5: Allow modify AV in DCI QP to RTR (Alaa Hleihel) [1714002]
-- [scsi] core: Allow state transitions from OFFLINE to BLOCKED (Ewan Milne) [1631136]
-- [edac] amd64: Set maximum channel layer size depending on family (Gary Hook) [1705210]
-- [edac] amd64: Adjust printed chip select sizes when interleaved (Gary Hook) [1705210]
-- [edac] amd64: Recognize x16 symbol size (Gary Hook) [1705210]
-- [edac] amd64: Support more than two Unified Memory Controllers (Gary Hook) [1705210]
-- [edac] amd64: Use a macro for iterating over Unified Memory Controllers (Gary Hook) [1705210]
-- [edac] amd64: Add Family 17h, models 10h-2fh support (Gary Hook) [1705210]
-- [vhost] vsock: add weight support (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] vhost_net: fix possible infinite loop (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] introduce vhost_exceeds_weight() (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] vhost_net: introduce vhost_exceeds_weight() (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] vhost_net: use packet weight for rx handler, too (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] vhost-net: set packet weight of tx polling to 2 * vq size (Jason Wang) [1702943] {CVE-2019-3900}
-- [vhost] don't read and process iotlb message with bad lenth (Jason Wang)
-- [vhost] correctly check the return value of translate_desc() in log_used() (Jason Wang) [1657577]
-- [vhost] log dirty page correctly (Jason Wang) [1657577]
-- [vhost] fix OOB in get_rx_bufs() (Jason Wang) [1710182]
-- [vhost] reject zero size iova range (Jason Wang)
-- [vhost] Fix Spectre V1 vulnerability (Jason Wang) [1672554]
-- [vhost] vhost_net: flush batched heads before trying to busy polling (Jason Wang) [1710182]
-- [vhost] vhost_net: batch used ring update in rx (Jason Wang) [1710182]
-- [x86] mark AMD Rome processors supported (David Arcari) [1543509]
-- [x86] microcode: Only load the microcode once on AMD systems (Prarit Bhargava) [1710942]
-
-* Fri Jun 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1055.el7]
-- [thermal] intel_powerclamp: fix truncated kthread name (David Arcari) [1716946]
-
-* Fri Jun 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1054.el7]
-- [pci] Rework pcie_retrain_link() wait loop (Myron Stowe) [1677010]
-- [pci] Work around Pericom PCIe-to-PCI bridge Retrain Link erratum (Myron Stowe) [1677010]
-- [pci] Factor out pcie_retrain_link() function (Myron Stowe) [1677010]
-- [cpufreq] intel_pstate: Ignore turbo active ratio in HWP (David Arcari) [1711969]
-- [fs] vmcore: Add a kernel parameter novmcoredd (Kairui Song) [1705859]
-- [netdrv] bonding/802.3ad: fix slave link initialization transition states (Jarod Wilson) [1702807]
-- [netdrv] rtw88: new Realtek 802.11ac driver (Stanislaw Gruszka) [1487002 1487018]
-- [kernel] bitfield: fix *_encode_bits() (Stanislaw Gruszka) [1487002 1487018]
-- [kernel] Add primitives for manipulating bitfields both in host- and fixed-endian (Stanislaw Gruszka) [1487002 1487018]
-- [netdrv] phy: turn carrier off on phy attach (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add generic Realtek PHY driver (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: load driver for all PHYs with a Realtek OUI (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: fix RTL8201F sysfs name (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: Support RTL8366RB variant (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add missing entry for RTL8211C to mdio_device_id table (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add support for RTL8211C (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add missing entry for RTL8211 to mdio_device_id table (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add support for RTL8211 (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add suspend/resume callbacks for RTL8211B (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: Use the dummy stubs for MMD register access for rtl8211b (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: use new helpers for paged register access (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add utility functions to read/write page addresses (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: use the same indentation for all #defines (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: group all register bit #defines for RTL821x_INER (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: rename RTL821x_INER_INIT to RTL8211B_INER_INIT (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: use the BIT and GENMASK macros (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: fix RTL8211F interrupt mode (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: add RTL8201F phy-id and functions (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: rename RTL8211F_PAGE_SELECT to RTL821x_PAGE_SELECT (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: fix enabling of the TX-delay for RTL8211F (Corinna Vinschen) [1706531]
-- [netdrv] phy: add RealTek RTL8211DN phy id (Corinna Vinschen) [1706531]
-- [netdrv] phy: Add support for Realtek RTL8211F (Corinna Vinschen) [1706531]
-- [netdrv] phy: export genphy_config_init() (Corinna Vinschen) [1706531]
-- [netdrv] phy: realtek: register/unregister multiple drivers properly (Corinna Vinschen) [1706531]
-- [netdrv] phy: Add RTL8201CP phy_driver to realtek (Corinna Vinschen) [1706531]
-- [netdrv] phy: rtl8211: fix interrupt on status link change (Corinna Vinschen) [1706531]
-- [nvme] fix memory leak for power latency tolerance (David Milburn) [1541904]
-- [base] pm / qos: Fix memory leak on resume_latency.notifiers (David Milburn) [1541904]
-- [x86] kvm: x86: use correct privilege level for sgdt/sidt/fxsave/fxrstor access (Paolo Bonzini) [1657358] {CVE-2018-10853}
-- [x86] kvm: x86: pass kvm_vcpu to kvm_read_guest_virt and kvm_write_guest_virt_system (Paolo Bonzini) [1657358] {CVE-2018-10853}
-- [x86] kvm: x86: introduce linear_{read,write}_system (Paolo Bonzini) [1657358] {CVE-2018-10853}
-- [x86] Update stepping values for Whiskey Lake U/Y (David Arcari) [1704810]
-
-* Sat Jun 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1053.el7]
-- [hid] wacom: generic: support LEDs (Benjamin Tissoires) [1710890]
-- [hid] wacom: leds: use the ledclass instead of custom made sysfs files (Benjamin Tissoires) [1710890]
-- [char] ipmi_si: fix use-after-free of resource->name (Tony Camuso) [1714408] {CVE-2019-11811}
-- [fs] gfs2: Use d_materialise_unique instead of d_splice_alias (Robert S Peterson) [1677686]
-- [fs] sunrpc: make visible processing error in bc_svc_process() ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] sunrpc: remove unused xpo_prep_reply_hdr callback ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] sunrpc: remove svc_tcp_bc_class ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] sunrpc: replace svc_serv->sv_bc_xprt by boolean flag ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] sunrpc: use-after-free in svc_process_common() ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [fs] svcauth_gss: Close connection when dropping an incoming message ("J. Bruce Fields") [1653675] {CVE-2018-16884}
-- [net] bridge: dont send notification when skb->len == 0 in rtnl_bridge_notify (Hangbin Liu) [1714831]
-- [net] tcp: purge write queue in tcp_connect_init() (Marcelo Leitner) [1713051]
-- [net] tcp: fix TCP_REPAIR_QUEUE bound checking (Marcelo Leitner) [1713051]
-- [net] tcp: don't read out-of-bounds opsize (Marcelo Leitner) [1713051]
-- [net] tcp: md5: reject TCP_MD5SIG or TCP_MD5SIG_EXT on established sockets (Marcelo Leitner) [1713051]
-- [net] tcp: fix tcp_mtu_probe() vs highest_sack (Marcelo Leitner) [1713051]
-- [net] tcp: fastopen: fix on syn-data transmit failure (Marcelo Leitner) [1713051]
-- [net] tcp: when rearming RTO, if RTO time is in past then fire RTO ASAP (Marcelo Leitner) [1713051]
-- [net] tcp: eliminate negative reordering in tcp_clean_rtx_queue (Marcelo Leitner) [1713051]
-- [net] tcp: fix wraparound issue in tcp_lp (Marcelo Leitner) [1713051]
-- [net] tcp: account for ts offset only if tsecr not zero (Marcelo Leitner) [1713051]
-- [net] tcp: initialize max window for a new fastopen socket (Marcelo Leitner) [1713051]
-- [net] tcp: consider recv buf for the initial window scale (Marcelo Leitner) [1713051]
-- [net] tcp: refresh skb timestamp at retransmit time (Marcelo Leitner) [1713051]
-- [net] tcp: fix tcpi_segs_in after connection establishment (Marcelo Leitner) [1713051]
-- [net] tcp: beware of alignments in tcp_get_info() (Marcelo Leitner) [1713051]
-- [net] tcp: properly scale window in tcp_v[46]_reqsk_send_ack() (Marcelo Leitner) [1713051]
-- [net] tcp: fix NULL deref in tcp_v4_send_ack() (Marcelo Leitner) [1713051]
-- [net] tcp: md5: fix lockdep annotation (Marcelo Leitner) [1713051]
-- [net] tcp: apply Kern's check on RTTs used for congestion control (Marcelo Leitner) [1713051]
-- [net] tcp: add proper TS val into RST packets (Marcelo Leitner) [1713051]
-- [net] tcp: fix FRTO undo on cumulative ACK of SACKed range (Marcelo Leitner) [1713051]
-- [net] tcp: align tcp_xmit_size_goal() on tcp_tso_autosize() (Marcelo Leitner) [1713051]
-- [net] tcp: fastopen: avoid negative sk_forward_alloc (Marcelo Leitner) [1713051]
-- [net] tcp: fastopen: fix rcv_wup initialization for TFO server on SYN/data (Marcelo Leitner) [1713051]
-- [net] tcp: make sure skb is not shared before using skb_get() (Marcelo Leitner) [1713051]
-- [net] tcp: Do not apply TSO segment limit to non-TSO packets (Marcelo Leitner) [1713051]
-- [net] openvswitch: load and reference the NAT helper. (Flavio Leitner) [1435252]
-- [net] openvswitch: load NAT helper (Flavio Leitner) [1435252]
-- [net] netfilter: introduce nf_conntrack_helper_put helper function (Flavio Leitner) [1435252]
-- [net] netfilter: xt_CT: fix refcnt leak on error path (Flavio Leitner) [1435252]
-- [net] netfilter: nf_nat: register NAT helpers. (Flavio Leitner) [1435252]
-- [net] netfilter: add API to manage NAT helpers. (Flavio Leitner) [1435252]
-- [net] netfilter: use macros to create module aliases. (Flavio Leitner) [1435252]
-- [net] openvswitch: add seqadj extension when NAT is used. (Flavio Leitner) [1435252]
-- [net] netfilter: nf_conntrack_sip: fix wrong memory initialisation (Flavio Leitner) [1435252]
-- [net] netfilter: Add helper array register/unregister functions (Flavio Leitner) [1435252]
-- [net] netfilter: nf_ct_helper: Fix helper unregister count. (Flavio Leitner) [1435252]
-- [net] netfilter: nf_ct_helper: define pr_fmt() (Flavio Leitner) [1435252]
-- [net] ip6_tunnel: be careful when accessing the inner header (Stefano Brivio) [1713294]
-- [net] ip_tunnel: be careful when accessing the inner header (Stefano Brivio) [1713294]
-- [net] ip_tunnel: better validate user provided tunnel names (Stefano Brivio) [1713294]
-- [net] ip_tunnel: fix potential issue in ip_tunnel_rcv (Stefano Brivio) [1713294]
-- [net] gro: Fix GRO flush when receiving a GSO packet. (Paolo Abeni) [1713013]
-- [net] devlink: Fix list access without lock while reading region (Paolo Abeni) [1713013]
-- [net] skb_scrub_packet(): Scrub offload_fwd_mark (Paolo Abeni) [1713013]
-- [net] ethtool: fix a privilege escalation bug (Paolo Abeni) [1713013]
-- [net] skb_segment() should not return NULL (Paolo Abeni) [1713013]
-- [net] fix possible out-of-bound read in skb_network_protocol() (Paolo Abeni) [1713013]
-- [net] flow_dissector: properly cap thoff field (Paolo Abeni) [1713013]
-- [net] ethtool: Initialize buffer when querying device channel settings (Paolo Abeni) [1713013]
-- [net] neighbour: fix crash at dumping device-agnostic proxy entries (Paolo Abeni) [1713013]
-- [net] netlabel: fix out-of-bounds memory accesses (Hangbin Liu) [1712920]
-- [net] ipv4: Fix use-after-free when flushing FIB tables (Hangbin Liu) [1712920]
-- [net] ping: fix a null pointer dereference (Hangbin Liu) [1712920]
-- [net] netfilter: rpfilter: bypass ipv4 lbcast packets with zeronet source (Guillaume Nault) [1704190]
-- [net] sched: act_ipt: fix refcount leak when replace fails (Davide Caratti) [1706791]
-- [net] sched: act_sample: fix divide by zero in the traffic path (Davide Caratti) [1706791]
-- [net] sched: fix ->get helper of the matchall cls (Davide Caratti) [1706791]
-- [net] sched: fix a race condition in tcindex_destroy() (Davide Caratti) [1706791]
-- [net] cls_flower: Remove filter from mask before freeing it (Davide Caratti) [1706791]
-- [net] sched: gred: pass the right attribute to gred_change_table_def() (Davide Caratti) [1706791]
-- [net] sched: act_pedit: fix dump of extended layered op (Davide Caratti) [1706791]
-- [net] sched: cls_api: deal with egdev path only if needed (Davide Caratti) [1706791]
-- [net] sched: fix error path in tcf_proto_create() when modules are not configured (Davide Caratti) [1706791]
-- [net] sched: fq: take care of throttled flows before reuse (Davide Caratti) [1706791]
-- [net] sched actions: fix dumping which requires several messages to user space (Davide Caratti) [1706791]
-- [net] sch_netem: fix skb leak in netem_enqueue() (Davide Caratti) [1706791]
-- [net] sched: Fix update of lastuse in act modules implementing stats_update (Davide Caratti) [1699910 1706791]
-- [net] sched: don't release reference on action overwrite (Davide Caratti) [1706791]
-- [powerpc] mm: move warning from resize_hpt_for_hotplug() (Laurent Vivier) [1693046]
-- [powerpc] pseries: Use pr_xxx() in lpar.c (Laurent Vivier) [1693046]
-- [powerpc] mm: Fix build break with BOOK3S_64=n and MEMORY_HOTPLUG=y (Laurent Vivier) [1693046]
-- [net] vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock (Stefano Garzarella) [1693996]
-- [mm] page_counter: let page_counter_try_charge() return bool (Davide Caratti) [1658641]
-- [kernel] unshare: Unsharing a thread does not require unsharing a vm (Alex Gladkov) [1597991]
-- [x86] kvm: x86: Add AMD's EX_CFG to the list of ignored MSRs (Eduardo Habkost) [1593190]
-- [x86] kvm: x86: Expose CLDEMOTE CPU feature to guest VM (Paul Lai) [1494704]
-
-* Tue May 28 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1052.el7]
-- [security] xattr: use RH_KABI_CONST to avoid security_inode_init_security checksum change (Cestmir Kalina) [1710633]
-- [crypto] hmac: require that the underlying hash algorithm is unkeyed (Neil Horman) [1708078]
-- [tty] Fix low_latency BUG (Aristeu Rozanski) [1710039]
-- [tty] n_tty: Fix termios_rwsem lockdep false positive (Artem Savkov) [1712744]
-- [netdrv] xen/netfront: fix waiting for xenbus state change (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: fix warn message as irq device name has '/' (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: wait xenbus state change when load module manually (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: fix queue name setting (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: Update features after registering netdev (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: Fix mismatched rtnl_unlock (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: Fix race between device setup and open (Vitaly Kuznetsov) [1704435]
-- [netdrv] xen-netfront: Use static attribute groups for sysfs entries (Vitaly Kuznetsov) [1704435]
-- [x86] kvm: x86: reduce collisions in mmu_page_hash (Radim Krcmar) [1631875]
-- [x86] kvm/mmu: reset MMU context when 32-bit guest switches PAE (Vitaly Kuznetsov) [1703797]
-
-* Fri May 24 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1051.el7]
-- [tools] power turbostat: Increase default buffer size (Prarit Bhargava) [1708539]
-- [md] dm thin metadata: do not write metadata if no changes occurred (Mike Snitzer) [1710051]
-- [md] dm thin metadata: add wrappers for managing write locking of metadata (Mike Snitzer) [1710051]
-- [md] dm thin metadata: check __commit_transaction()'s return (Mike Snitzer) [1710051]
-- [md] dm space map common: zero entire ll_disk (Mike Snitzer) [1710051]
-- [fs] xfs: always rejoin held resources during defer roll (Brian Foster) [1703315]
-- [fs] xfs: automatic dfops inode relogging (Brian Foster) [1703315]
-- [fs] xfs: automatic dfops buffer relogging (Brian Foster) [1703315]
-- [fs] xfs: reset dfops to initial state after finish (Brian Foster) [1703315]
-- [fs] xfs: return from _defer_finish with a clean transaction (Brian Foster) [1703315]
-- [fs] xfs: release new dquot buffer on defer_finish error (Brian Foster) [1703315]
-- [scsi] hpsa: correct static checker issue in reset handler (Joseph Szczypek) [1710594]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1710594]
-- [scsi] hpsa: correct device resets (Joseph Szczypek) [1710594]
-- [scsi] hpsa: do-no-complete-cmds-for-deleted-devices (Joseph Szczypek) [1710594]
-- [scsi] hpsa: wait longer for ptraid commands (Joseph Szczypek) [1710594]
-- [scsi] hpsa: check for tag collision (Joseph Szczypek) [1710594]
-- [scsi] hpsa: use local workqueue instead of system workqueues (Joseph Szczypek) [1710594]
-- [scsi] hpsa: correct simple mode (Joseph Szczypek) [1710594]
-- [scsi] hpsa: bump driver version (Joseph Szczypek) [1710594]
-- [scsi] hpsa: correct device id issues (Joseph Szczypek) [1710594]
-- [scsi] hpsa: check for lv removal (Joseph Szczypek) [1710594]
-- [nvme] lock NS list changes while handling command effects (David Milburn) [1672723]
-- [net] rtnetlink: always put IFLA_LINK for links with a link-netnsid (Sabrina Dubroca) [1705686]
-- [net] rtnetlink: add helpers to dump netnsid information (Sabrina Dubroca) [1705686]
-- [net] rtnetlink: add helper to put master and link ifindexes (Sabrina Dubroca) [1705686]
-- [net] neighbour: fix base_reachable_time(_ms) not effective immediatly when changed (Guillaume Nault) [1708253]
-
-* Tue May 21 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1050.el7]
-- [tools] perf annotate: Fix getting source line failure (Michael Petlan) [1701178]
-- [netdrv] qmi_wwan: apply SET_DTR quirk to Sierra WP7607 (Lubomir Rintel) [1678156]
-- [mm] tlb: Remove tlb_remove_table() non-concurrent condition (Vitaly Kuznetsov) [1448188]
-- [mm] move tlb_table_flush to tlb_flush_mmu_free (Vitaly Kuznetsov) [1448188]
-- [mm] tlb, x86/mm: Support invalidating TLB caches for RCU_TABLE_FREE (Vitaly Kuznetsov) [1448188]
-- [lib] locking/rwsem: Prevent decrement of reader count before increment (Waiman Long) [1708667]
-- [kernel] sched/topology: Introduce NUMA identity node sched domain (Suravee Suthikulpanit) [1566753]
-- [kernel] sched/fair: Do not re-read ->h_load_next during hierarchical load calculation (Phil Auld) [1707397]
-- [x86] livepatch: apply alternatives and paravirt patches after relocations (Artem Savkov) [1706733]
-- [powerpc] cbpf: disable jit (Yauheni Kaliuta) [1700744]
-- [powerpc] numa: document topology_updates_enabled, disable by default (Gustavo Duarte) [1705431]
-- [powerpc] numa: improve control of topology updates (Gustavo Duarte) [1705431]
-
-* Mon May 20 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1049.el7]
-- [x86] spectre: Fix an error message (Waiman Long) [1709296 1690335 1690348 1690358] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation/mds: Fix documentation typo (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] Correct the possible MDS sysfs values (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/mds: Add MDSUM variant to the MDS documentation (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add 'mitigations=' support for MDS (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] s390/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] powerpc/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [kernel] cpu/speculation: Add 'mitigations=' cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/l1tf: Increase l1tf memory limit for Nehalem+ (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spectre: Simplify spectre_v2 command line parsing (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Properly set/clear mds_idle_clear static key (Waiman Long) [1709296 1690358 1690348 1690335 1707292] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Print SMT vulnerable on MSBDS with mitigations off (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Fix comment (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add SMT warning message (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Move arch_smt_update() call to after mitigation decisions (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add mds=full, nosmt cmdline option (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [kernel] x86/speculation: Remove redundant arch_smt_update() invocation (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Update MDS mitigation status after late microcode load (Waiman Long) [1709296 1690358 1690348 1690335 1710501 1710498] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Add debugfs x86/smt_present file (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Disable automatic enabling of STIBP with SMT on (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] documentation: Add MDS vulnerability documentation (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] documentation: Move L1TF to separate directory (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation/mds: Add mitigation mode VMWERV (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add sysfs reporting for MDS (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add mitigation control for MDS (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation/mds: Conditionally clear CPU buffers on idle entry (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] kvm/vmx: Add MDS protection when L1D Flush is not active (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Clear CPU buffers on exit to user (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [documentation] x86/speculation/mds: Add mds_clear_cpu_buffers() (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] kvm: Expose X86_FEATURE_MD_CLEAR to guests (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add BUG_MSBDS_ONLY (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation/mds: Add basic bug infrastructure for MDS (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Consolidate CPU whitelists (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] msr-index: Cleanup bit defines (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] l1tf: Show actual SMT state (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Simplify sysfs report of VMX L1TF vulnerability (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [kernel] x86/speculation: Rework SMT state change (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Disable STIBP when enhanced IBRS is in use (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Move STIPB/IBPB string conditionals out of cpu_show_common() (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] speculation: Enable cross-hyperthread spectre v2 STIBP mitigation (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spectre_v2: Make spectre_v2_mitigation mode available (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Add X86_FEATURE_USE_IBPB (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] spec_ctrl: Add casting to fix compilation error (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [tools] x86/cpu: Sanitize FAM6_ATOM naming (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-- [x86] cpufeatures: Add Intel PCONFIG cpufeature (Waiman Long) [1709296 1690358 1690348 1690335] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
-
-* Sat May 11 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1048.el7]
-- [net] netfilter: ipset: do not call ipset_nest_end after nla_nest_cancel (Stefano Brivio) [1707191]
-- [net] vxlan: test dev->flags & IFF_UP before calling gro_cells_receive() (Stefano Brivio) [1707190]
-- [net] vxlan: test dev->flags & IFF_UP before calling netif_rx() (Stefano Brivio) [1707190]
-- [net] netfilter: x_tables: initialise match/target check parameter struct (Stefano Brivio) [1707186]
-- [net] netfilter: drop outermost socket lock in getsockopt() (Stefano Brivio) [1707186]
-- [net] netfilter: on sockopt() acquire sock lock only in the required scope (Stefano Brivio) [1707186]
-- [net] xfrm6_tunnel: Fix potential panic when unloading xfrm6_tunnel module (Stefano Brivio) [1707164]
-- [net] ipv6/flowlabel: wait rcu grace period before put_pid() (Stefano Brivio) [1707164]
-- [net] ipv6: sit: reset ip header pointer in ipip6_rcv (Stefano Brivio) [1707164]
-- [net] ipv6: Fix dangling pointer when ipv6 fragment (Stefano Brivio) [1707164]
-- [net] tcp: do not use ipv6 header for ipv4 flow (Stefano Brivio) [1707164]
-- [net] ipv6: tunnels: fix two use-after-free (Stefano Brivio) [1707164]
-- [net] ipv6: explicitly initialize udp6_addr in udp_sock_create6() (Stefano Brivio) [1707164]
-- [net] vti6: remove !skb->ignore_df check from vti6_xmit() (Stefano Brivio) [1707164]
-- [net] vti6: fix PMTU caching and reporting on xmit (Stefano Brivio) [1707164]
-- [net] ip6_tunnel: use the right value for ipv4 min mtu check in ip6_tnl_xmit (Stefano Brivio) [1707164]
-- [net] ipv6: add RTA_TABLE and RTA_PREFSRC to rtm_ipv6_policy (Stefano Brivio) [1707164]
-- [net] route: add missing nla_policy entry for RTA_MARK attribute (Stefano Brivio) [1707164]
-- [net] vti6: better validate user provided tunnel names (Stefano Brivio) [1707164]
-- [net] ip6_tunnel: better validate user provided tunnel names (Stefano Brivio) [1707164]
-- [net] ip6_gre: better validate user provided tunnel names (Stefano Brivio) [1707164]
-- [net] ipv6: sit: better validate user provided tunnel names (Stefano Brivio) [1707164]
-- [net] netfilter: ipv6: fix use-after-free Write in nf_nat_ipv6_manip_pkt (Stefano Brivio) [1707164]
-- [net] ip6_gre: remove the incorrect mtu limit for ipgre tap (Stefano Brivio) [1707164]
-- [net] vti: fix use after free in vti_tunnel_xmit/vti6_tnl_xmit (Stefano Brivio) [1707164]
-- [net] ipv6: fix memory leak with multiple tables during netns destruction (Stefano Brivio) [1707164]
-- [net] ipv6: reset fn->rr_ptr when replacing route (Stefano Brivio) [1707164]
-- [net] ipv6: RTF_PCPU should not be settable from userspace (Stefano Brivio) [1707164]
-- [net] vti6: Don't report path MTU below IPV6_MIN_MTU. (Stefano Brivio) [1707164]
-- [net] mld, igmp: Fix reserved tailroom calculation (Stefano Brivio) [1707164]
-- [net] tcp: prevent fetching dst twice in early demux code (Stefano Brivio) [1707164]
-- [net] ipv6: addrconf: add missing validate_link_af handler (Stefano Brivio) [1707164]
-- [net] test tailroom before appending to linear skb (Stefano Brivio) [1707181]
-- [net] ipv4: fix memory leaks in udp_sendmsg, ping_v4_sendmsg (Paolo Abeni) [1706748]
-- [net] ipv4: fix memory leaks in ip_cmsg_send() callers (Paolo Abeni) [1706748]
-- [net] xfrm6: Fix a offset value for network header in _decode_session6 (Sabrina Dubroca) [1705575]
-- [net] xfrm: Fix transport mode skb control buffer usage. (Sabrina Dubroca) [1705575]
-- [net] xfrm: Use __skb_queue_tail in xfrm_trans_queue (Sabrina Dubroca) [1705575]
-- [net] xfrm6: call kfree_skb when skb is toobig (Sabrina Dubroca) [1705575]
-- [net] xfrm: make local error reporting more robust (Sabrina Dubroca) [1705575]
-- [net] xfrm: Validate address prefix lengths in the xfrm selector. (Sabrina Dubroca) [1705575]
-- [net] xfrm: free skb if nlsk pointer is NULL (Sabrina Dubroca) [1705575]
-- [net] xfrm: fix missing dst_release() after policy blocking lbcast and multicast (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: prevent leaking 2 bytes of kernel memory (Sabrina Dubroca) [1705575]
-- [net] xfrm6: avoid potential infinite loop in _decode_session6() (Sabrina Dubroca) [1705575]
-- [net] xfrm6: Fix transport header offset in _decode_session6. (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: uncoditionally validate esn replay attribute struct (Sabrina Dubroca) [1705575]
-- [net] xfrm: make xfrm_replay_state_esn_len() return unsigned int (Sabrina Dubroca) [1705575]
-- [net] xfrm: Return error on unknown encap_type in init_state (Sabrina Dubroca) [1705575]
-- [net] xfrm: Reinject transport-mode packets through tasklet (Sabrina Dubroca) [1705575]
-- [net] xfrm: Clear sk_dst_cache when applying per-socket policy. (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: fix info leak in build_aevent() (Sabrina Dubroca) [1705575]
-- [net] xfrm: checkpatch errors with space (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: fix info leak in xfrm_notify_sa() (Sabrina Dubroca) [1705575]
-- [net] xfrm: provide correct dst in xfrm_neigh_lookup (Sabrina Dubroca) [1705575]
-- [net] xfrm_user: propagate sec ctx allocation errors (Sabrina Dubroca) [1705575]
-- [net] sctp: avoid running the sctp state machine recursively (Xin Long) [1702176]
-- [net] sched: fix refcnt leak in the error path of tcf_vlan_init() (Davide Caratti) [1706158]
-- [net] sched: act_tunnel_key: fix NULL pointer dereference during init (Davide Caratti) [1706158]
-- [net] sched: act_ipt: check for underflow in __tcf_ipt_init() (Davide Caratti) [1706158]
-- [net] sched: act_tunnel_key: fix NULL dereference when 'goto chain' is used (Davide Caratti) [1706158]
-- [net] sched: act_pedit: fix possible memory leak in tcf_pedit_init() (Davide Caratti) [1706158]
-- [net] sched: act_simple: fix parsing of TCA_DEF_DATA (Davide Caratti) [1706158]
-- [net] cls_flower: Fix incorrect idr release when failing to modify rule (Davide Caratti) [1706158]
-- [net] sched actions: fix refcnt leak in skbmod (Davide Caratti) [1706158]
-- [net] sched actions: fix invalid pointer dereferencing if skbedit flags missing (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of tcf_skbmod_init() (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of __tcf_ipt_init() (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of tcp_pedit_init() (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of tcf_act_police_init() (Davide Caratti) [1706158]
-- [net] sched: fix idr leak in the error path of tcf_simp_init() (Davide Caratti) [1706158]
-- [net] sched: fix NULL dereference on the error path of tcf_skbmod_init() (Davide Caratti) [1706158]
-- [net] sched: fix NULL dereference in the error path of tcf_sample_init() (Davide Caratti) [1706158]
-- [net] netfilter: xt_IDLETIMER: add sysfs filename checking routine (Andrea Claudi) [1700745]
-- [net] netfilter: x_tables: add and use xt_check_proc_name (Andrea Claudi) [1700745]
-- [net] netfilter: IDLETIMER: fix lockdep warning (Andrea Claudi) [1700745]
-- [net] netfilter: nat: fix double register in masquerade modules (Andrea Claudi) [1700745]
-- [net] netfilter: add missing error handling code for register functions (Andrea Claudi) [1700745]
-- [net] add LINUX_MIB_PFMEMALLOCDROP counter (Marcelo Leitner) [1696664]
-- [net] netfilter: ipv6: Don't preserve original oif for loopback address (Florian Westphal) [1701496]
-- [net] netfilter: ipv6: Preserve link scope traffic original oif (Florian Westphal) [1701496]
-- [net] netfilter: use skb_to_full_sk in ip6_route_me_harder (Florian Westphal) [1701496]
-- [net] netfilter: Fix potential use after free in ip6_route_me_harder() (Florian Westphal) [1701496]
-- [net] openvswitch: Fix push/pop ethernet validation (Eelco Chaudron) [1700852]
-- [net] bonding: use netpoll_poll_dev() helper (Hangbin Liu) [1694409]
-- [netdrv] nfp: disable netpoll on representors (Hangbin Liu) [1694409]
-- [net] netpoll: do not test NAPI_STATE_SCHED in poll_one_napi() (Hangbin Liu) [1694409]
-- [net] netpoll: make ndo_poll_controller() optional (Hangbin Liu) [1694409]
-- [net] netpoll: Rename netpoll_rx_enable/disable to netpoll_poll_disable/enable (Hangbin Liu) [1694409]
-- [net] netpoll: Move rx enable/disable into __dev_close_many (Hangbin Liu) [1694409]
-- [net] netpoll: remove return value from netpoll_rx_disable() (Hangbin Liu) [1694409]
-- [netdrv] iavf: add missing .ndo_size callback to iavf_netdev_ops (Stefan Assmann) [1707230]
-- [fs] cifs: Accept validate negotiate if server return NT_STATUS_NOT_SUPPORTED (Leif Sahlberg) [1697514]
-- [fs] cifs: fix a crash in flocks_remove_flock when releasing all file locks (Leif Sahlberg) [1527610]
-- [fs] pnfs: Avoid read/modify/write when it is not necessary (Benjamin Coddington) [1680648]
-- [fs] pnfs: Fix potential corruption of page being written (Benjamin Coddington) [1680648]
-- [fs] xfs: zero length symlinks are not valid (Bill O'Donnell) [1503032]
-- [md] batch flush requests. (Xiao Ni) [1576466]
-- [md] revert "md: fix lock contention for flush bios" (Xiao Ni) [1576466]
-- [scsi] Revert "[qla2xxx] Mark NVMe/FC initiator mode usage as technology preview" (Ewan Milne) [1707805]
-- [scsi] qla2xxx: Silence Successful ELS IOCB message (Himanshu Madhani) [1647051]
-- [scsi] qla2xxx: Fix device staying in blocked state (Himanshu Madhani) [1647051]
-- [iommu] amd: Set exclusion range correctly (Jerry Snitselaar) [1702763]
-- [mm] memcontrol: release kmemcg_id only when allocated (Aaron Tomlin) [1593417]
-- [kernel] cpu/hotplug: Create SMT sysfs interface for all arches (Josh Poimboeuf) [1693310]
-- [kernel] cpu/hotplug: Fix "SMT disabled by BIOS" detection for KVM (Josh Poimboeuf) [1693310]
-- [kernel] cpu/hotplug: Fix SMT supported evaluation (Josh Poimboeuf) [1693310]
-- [kernel] sched/smt: Expose sched_smt_present static key (Josh Poimboeuf) [1693310]
-- [kernel] sched/smt: Make sched_smt_present track topology (Josh Poimboeuf) [1693310]
-- [firmware] efi: Don't use spinlocks for efi vars (Waiman Long) [1705743]
-- [firmware] efi: Use a file local lock for efivars (Waiman Long) [1705743]
-- [firmware] efi: Merge boolean flag arguments (Waiman Long) [1705743]
-- [x86] efi: Add nonblocking option to efi_query_variable_store() (Waiman Long) [1705743]
-- [firmware] Do not use WARN_ON(!spin_is_locked()) (Waiman Long) [1705743]
-- [x86] mm, perf: Allow recursive faults from interrupts (Rafael Aquini) [1703167]
-
-* Thu May 09 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1047.el7]
-- [x86] Update stepping values for coffee lake desktop (David Arcari) [1704812]
-- [netdrv] generalize napi_complete_done() (Manish Chopra) [1686861]
-- [makefile] makefile: bump drm backport version (Dave Airlie) [1680275]
-- [gpu] revert "drm/qxl: drop prime import/export callbacks" (Dave Airlie) [1680275]
-- [gpu] drm/i915: Do not enable FEC without DSC (Dave Airlie) [1680275]
-- [gpu] drm/ttm: fix re-init of global structures (Dave Airlie) [1680275]
-- [gpu] revert "drm/virtio: drop prime import/export callbacks" (Dave Airlie) [1680275]
-- [gpu] revert "drm/i915/fbdev: Actually configure untiled displays" (Dave Airlie) [1680275]
-- [gpu] drm/amdgpu/gmc9: fix VM_L2_CNTL3 programming (Dave Airlie) [1680275]
-- [gpu] drm/ttm: fix out-of-bounds read in ttm_put_pages() v2 (Dave Airlie) [1680275]
-- [gpu] drm/amdkfd: use init_mqd function to allocate object for hid_mqd (CI) (Dave Airlie) [1680275]
-- [gpu] drm/nouveau/volt/gf117: fix speedo readout register (Dave Airlie) [1680275]
-- [gpu] drm/amdgpu: psp_ring_destroy cause psp->km_ring.ring_mem NULL (Dave Airlie) [1680275]
-- [gpu] drm/nouveau/debugfs: Fix check of pm_runtime_get_sync failure (Dave Airlie) [1680275]
-- [gpu] drm/udl: use drm_gem_object_put_unlocked (Dave Airlie) [1680275]
-- [gpu] drm/virtio: do NOT reuse resource ids (Dave Airlie) [1680275]
-- [gpu] drm/i915/dp: revert back to max link rate and lane count on eDP (Dave Airlie) [1680275]
-- [gpu] drm/udl: add a release method and delay modeset teardown (Dave Airlie) [1680275]
-- [gpu] drm/i915/gvt: do not deliver a workload if its creation fails (Dave Airlie) [1680275]
-- [gpu] drm/i915/gvt: do not let pin count of shadow mm go negative (Dave Airlie) [1680275]
-- [gpu] drm/dp/mst: Configure no_stop_bit correctly for remote i2c xfers (Dave Airlie) [1680275]
-- [gpu] drm: Reorder set_property_atomic to avoid returning with an active ww_ctx (Dave Airlie) [1680275]
-- [gpu] drm/fb-helper: fix leaks in error path of drm_fb_helper_fbdev_setup (Dave Airlie) [1680275]
-- [gpu] drm/nouveau: Stop using drm_crtc_force_disable (Dave Airlie) [1680275]
-- [gpu] drm: Auto-set allow_fb_modifiers when given modifiers at plane init (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Enable vblank interrupt during CRC capture (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Disconnect mpcc when changing tg (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Don't re-program planes for DPMS changes (Dave Airlie) [1680275]
-- [gpu] drm/sched: Fix entities with 0 rqs (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Clear stream->mode_changed after commit (Dave Airlie) [1680275]
-- [gpu] drm/amd/display: Fix reference counting for struct dc_sink (Dave Airlie) [1680275]
-- [gpu] drm/i915/icl: Fix the TRANS_DDI_FUNC_CTL2 bitfield macro (Dave Airlie) [1680275]
-- [gpu] drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check (Dave Airlie) [1680275]
-- [gpu] drm/i915: Mark AML 0x87CA as ULX (Dave Airlie) [1680275]
-- [gpu] drm/vgem: fix use-after-free when drm_gem_handle_create() fails (Dave Airlie) [1680275]
-- [gpu] drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's (Dave Airlie) [1680275]
-- [gpu] drm/vmwgfx: Don't double-free the mode stored in par->set_mode (Dave Airlie) [1680275]
-- [gpu] drm/amdgpu: fix invalid use of change_bit (Dave Airlie) [1680275]
-- [gpu] drm/amd/powerplay: correct power reading on fiji (Dave Airlie) [1680275]
-- [gpu] drm/radeon/evergreen_cs: fix missing break in switch statement (Dave Airlie) [1680275]
-- [gpu] drm/fb-helper: generic: Fix drm_fbdev_client_restore() (Dave Airlie) [1680275]
-- [gpu] drm: Block fb changes for async plane updates (Dave Airlie) [1680275]
-- [drm] disable uncached DMA optimization for ARM and arm64 (Dave Airlie) [1680275]
-
-* Mon May 06 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1046.el7]
-- [netdrv] mlx5: Remove unsupported tag for ConnectX-6 device (Kamal Heib) [1693568]
-- [netdrv] mlx5: Remove unsupported tag for BlueField device (Kamal Heib) [1640590]
-- [md] raid: raid5 preserve the writeback action after the parity check (Nigel Croxon) [1701350]
-- [md] Revert "[md] Don't jump to compute_result state from check_result state" (Nigel Croxon) [1701350]
-- [linux] mm: disable numa migration faults for dax vmas (Jeff Moyer) [1701444]
-- [mm] gup: don't leak pte_devmap references in the gup slow paths (Jeff Moyer) [1698371]
-- [tty] Fix lock order in tty_do_resize() (Aristeu Rozanski) [1684982]
-- [tty] n_tty: Access termios values safely (Aristeu Rozanski) [1684982]
-- [tty] Convert termios_mutex to termios_rwsem (Aristeu Rozanski) [1684982]
-- [kernel] sched/fair: Limit sched_cfs_period_timer() loop to avoid hard lockup (Phil Auld) [1686505]
-- [x86] intel_rdt: Make resctrl a mountpoint (Prarit Bhargava) [1702559]
-
-* Fri May 03 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1045.el7]
-- [netdrv] mac80211_hwsim: Fix possible Spectre-v1 for hwsim_world_regdom_custom (Stanislaw Gruszka) [1639674]
-- [net] nl80211: Fix possible Spectre-v1 for NL80211_TXRATE_HT (Stanislaw Gruszka) [1639674]
-- [net] nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds (Stanislaw Gruszka) [1639674]
-- [netdrv] mac80211_hwsim: fix possible memory leak in hwsim_new_radio_nl() (Stanislaw Gruszka) [1626463]
-- [scsi] csiostor: fix missing data copy in csio_scsi_err_handler() (Arjun Vynipadath) [1696189]
-- [scsi] csiostor: fix calls to dma_set_mask_and_coherent() (Arjun Vynipadath) [1696189]
-- [scsi] csiostor: drop serial_number usage (Arjun Vynipadath) [1696189]
-- [scsi] csiostor: no need to check return value of debugfs_create functions (Arjun Vynipadath) [1696189]
-- [mm] memcontrol: allow to disable kmem accounting for cgroup (Waiman Long) [1673157]
-- [pci] Reset Lenovo ThinkPad P50 nvgpu at boot if necessary (Lyude Paul) [1628644]
-- [pci] Probe for device reset support during enumeration (Lyude Paul) [1628644]
-- [cpufreq] intel_pstate: Also use CPPC nominal_perf for base_frequency (Prarit Bhargava) [1696122]
-- [acpi] cppc: Fix guaranteed performance handling (Prarit Bhargava) [1696122]
-- [powerpc] security: Fix spectre_v2 reporting (Gustavo Duarte) [1694459]
-- [powerpc] fsl: Update Spectre v2 reporting (Gustavo Duarte) [1694459]
-- [powerpc] fsl: Add nospectre_v2 command line argument (Gustavo Duarte) [1694459]
-- [powerpc] fsl: Fix spectre_v2 mitigations reporting (Gustavo Duarte) [1694459]
-- [powerpc] powernv: Query firmware for count cache flush settings (Gustavo Duarte) [1694459]
-- [powerpc] pseries: Query hypervisor for count cache flush settings (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Add support for software count cache flush (Gustavo Duarte) [1694459]
-- [powerpc] Introduce asm-prototypes.h (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Add new security feature flags for count cache flush (Gustavo Duarte) [1694459]
-- [powerpc] asm: Add a patch_site macro & helpers for patching instructions (Gustavo Duarte) [1694459]
-- [powerpc] Add helper to check if offset is within relative branch range (Gustavo Duarte) [1694459]
-- [powerpc] 64: Make meltdown reporting Book3S 64 specific (Gustavo Duarte) [1694459]
-- [powerpc] 64: Call setup_barrier_nospec() from setup_arch() (Gustavo Duarte) [1694459]
-- [powerpc] 64: Add CONFIG_PPC_BARRIER_NOSPEC (Gustavo Duarte) [1694459]
-- [powerpc] 64: Make stf barrier PPC_BOOK3S_64 specific (Gustavo Duarte) [1694459]
-- [powerpc] 64: Disable the speculation barrier from the command line (Gustavo Duarte) [1694459]
-- [powerpc] powerpc64s: Show ori31 availability in spectre_v1 sysfs file not v2 (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Enhance the information in cpu_show_spectre_v1() (Gustavo Duarte) [1694459]
-- [powerpc] 64: Use barrier_nospec in syscall entry (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Enable barrier_nospec based on firmware settings (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Patch barrier_nospec in modules (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Add support for ori barrier_nospec patching (Gustavo Duarte) [1694459]
-- [powerpc] 64s: Add barrier_nospec (Gustavo Duarte) [1694459]
-- [powerpc] reuse asm-generic/barrier.h (Gustavo Duarte) [1694459]
-- [s390] report new CPU capabilities (Hendrik Brueckner) [1690843]
-- [s390] smp: fix CPU hotplug deadlock with CPU rescan (Hendrik Brueckner) [1699797]
-
-* Thu May 02 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1044.el7]
-- [nvme] nvme-rdma: fix timeout handler (David Milburn) [1692548]
-- [cpufreq] intel_pstate: Add Skylake servers support (David Arcari) [1698453]
-- [pci] Lock each enable/disable num_vfs operation in sysfs (Ken Cox) [1698465]
-- [vfio] type1: Limit DMA mappings per container (Alex Williamson) [1695589] {CVE-2019-3882}
-- [hv] vmbus: Check for ring when getting debug info (Mohammed Gamal) [1691916]
-- [hv] vmbus: Return -EINVAL for the sys files for unopened channels (Mohammed Gamal) [1691916]
-- [netdrv] nfp: flower: fix implicit fallthrough warning (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: offload merge flows (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: support stats update for merge flows (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: generate merge flow rule (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: validate merge hint flows (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: handle merge hint messages (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: get flows by host context (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: allow tunnels to output to internal port (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: support fallback packets from internal ports (Pablo Cascon) [1700452]
-- [netdrv] nfp: allow fallback packets from non-reprs (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: allow offloading of matches on 'internal' ports (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: add infastructure for non-repr priv data (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: support multiple memory units for filter offloads (Pablo Cascon) [1700452]
-- [netdrv] nfp: flower: turn on recirc and merge hint support in firmware (Pablo Cascon) [1700452]
-- [netdrv] revert ixgbe: Replace GFP_ATOMIC with GFP_KERNEL (Ken Cox) [1692605]
-- [net] bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer (Gopal Tiwari) [1664555] {CVE-2019-3459}
-- [kernel] sched: Make scale_rt_power() deal with backward clocks (Oleksandr Natalenko) [1701115]
-- [s390] dasd: fix panic for failed online processing (Hendrik Brueckner) [1699796]
-
-* Fri Apr 26 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1043.el7]
-- [mm] oom_killer: Add task UID to printed info on an oom kill (Joel Savitz) [1691184]
-- [md] dm cache metadata: Fix loading discard bitset (Mike Snitzer) [1701619]
-- [scsi] arcmsr: call scsi_scan_host at the end of host initialization (Tomas Henzl) [1624367]
-- [scsi] cxgb4i: validate tcp sequence number only if chip version <= T5 (Arjun Vynipadath) [1696187]
-- [scsi] cxgb4i: get pf number from lldi->pf (Arjun Vynipadath) [1696187]
-- [netdrv] cxgb4vf: Call netif_carrier_off properly in pci_probe (Arjun Vynipadath) [1696165]
-- [netdrv] cxgb4vf: Enter debugging mode if FW is inaccessible (Arjun Vynipadath) [1696165]
-- [netdrv] cxgb4vf: Update port information in cxgb4vf_open() (Arjun Vynipadath) [1696165]
-- [netdrv] cxgb4vf: Few more link management changes (Arjun Vynipadath) [1696165]
-- [infiniband] rdma/iw_cxgb4: Always disconnect when QP is transitioning to TERMINATE state (Arjun Vynipadath) [1696185]
-- [infiniband] rdma/cxbg: Use correct sizing on buffers holding page DMA addresses (Arjun Vynipadath) [1696185]
-- [infiniband] cxgb4: kfree mhp after the debug print (Arjun Vynipadath) [1696185]
-- [infiniband] iw_cxgb4: cq/qp mask depends on bar2 pages in a host page (Arjun Vynipadath) [1696185]
-- [infiniband] iw_cxgb4: fix srqidx leak during connection abort (Arjun Vynipadath) [1696185]
-- [infiniband] iw_cxgb4: complete the cached SRQ buffers (Arjun Vynipadath) [1696185]
-- [infiniband] rdma/iw_cxgb4: Drop __GFP_NOFAIL (Arjun Vynipadath) [1696185]
-- [crypto] chelsio - Fixed Traffic Stall (Arjun Vynipadath) [1696191]
-- [crypto] chelsio - Fix passing zero to 'PTR_ERR' warning in chcr_aead_op (Arjun Vynipadath) [1696191]
-- [crypto] chelsio - Inline single pdu only (Arjun Vynipadath) [1696191]
-- [crypto] chelsio - avoid using sa_entry imm (Arjun Vynipadath) [1696191]
-- [linux] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping (Andrea Arcangeli) [1696080] {CVE-2019-3892}
-- [powerpc] Wire renameat2() syscall (Miklos Szeredi) [1624011]
-
-* Wed Apr 24 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1042.el7]
-- [scsi] remove scsi command from the device command list (Ming Lei) [1701086]
-- [block] Make blk_queue_enter() reexamine the DYING flag (Ming Lei) [1701348]
-- [block] wakeup tasks blocked on q->mq_freeze_wq (Ming Lei) [1701348]
-- [netdrv] mlx5-core: Mark ConnectX-6 Dx as unsupported device (Alaa Hleihel) [1685900]
-- [netdrv] mlx5: Update the list of the PCI supported devices (Alaa Hleihel) [1685900]
-- [netdrv] mlx5e: Switch to Toeplitz RSS hash by default (Alaa Hleihel) [1695493]
-- [netdrv] revert "net/mlx5e: Enable reporting checksum unnecessary also for L3 packets" (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Protect against non-uplink representor for encap (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Rx, Check ip headers sanity (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: FPGA, tls, idr remove on flow delete (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: FPGA, tls, hold rcu read lock a bit longer (Alaa Hleihel) [1695493]
-- [infiniband] ib/mlx5: Reset access mask when looping inside page fault handler (Alaa Hleihel) [1695493]
-- [infiniband] ib/mlx5: Compare only index part of a memory window rkey (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Consider tunnel type for encap contexts (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Cleanup attach encap function (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Update xon formula (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Update xoff formula (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: E-Switch, Fix esw manager vport indication for more vport commands (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: ethtool, Allow legacy link-modes configuration via non-extended ptys (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: ethtool, Fix type analysis of advertised link-mode (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Add a lock on tir list (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Add a missing check on idr_find, free buf (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Fix error handling when refreshing TIRs (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Decrease default mr cache size (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Remove redundant assignment (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Fix compilation warning in en_tc.c (Alaa Hleihel) [1695493]
-- [netdrv] mlx5e: Fix port buffer function documentation format (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Fix compilation warning in eq.c (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Delete unused FPGA QPN variable (Alaa Hleihel) [1695493]
-- [netdrv] mlx5: Fix code style issue in mlx driver (Alaa Hleihel) [1695493]
-- [infiniband] revert "ib/mlx5: Fix long EEH recover time with NVMe offloads" (Alaa Hleihel) [1695493]
-- [infiniband] rdma/mlx5: Fix function name typo 'fileds' -> 'fields' (Alaa Hleihel) [1695493]
-- [kernel] mlx5: Fix offsets of ifc reserved fields (Alaa Hleihel) [1695493]
-- [netdrv] mlx4_en: fix spelling mistake: "quiting" -> "quitting" (Alaa Hleihel) [1695493]
-- [netdrv] mlx4_core: Fix several coding style errors (Alaa Hleihel) [1695493]
-- [netdrv] mlx4_core: Fix return codes of unsupported operations (Alaa Hleihel) [1695493]
-- [netdrv] net/mlx5e: Replace TC VLAN pop and push actions with VLAN modify (Alaa Hleihel) [1692777]
-- [netdrv] net/mlx5e: Support VLAN modify action (Alaa Hleihel) [1692777]
-- [netdrv] net/mlx5e: Add VLAN ID rewrite fields (Alaa Hleihel) [1692777]
-- [documentation] cputopology.txt: standardize document format (David Arcari) [1700822]
-- [documentation] docs: Fix a couple typos (David Arcari) [1700822]
-- [documentation] documentation: Update cputopology.txt (David Arcari) [1700822]
-- [documentation] doc: Documentation/cputopology.txt fix typo (David Arcari) [1700822]
-- [documentation] x86/topology: Fix function name in documentation (David Arcari) [1700822]
-- [documentation] x86/topology: Document cpu_llc_id (David Arcari) [1700822]
-- [documentation] x86/documentation: Start documenting x86 topology (David Arcari) [1700822]
-- [hwmon] (coretemp) Simplify package management (David Arcari) [1700822]
-- [powercap] intel_rapl: fix and tidy up error handling (David Arcari) [1700822]
-- [powercap] intel rapl: Convert to hotplug state machine (David Arcari) [1700822]
-- [powercap] intel_rapl: Propagate error code when registration fails (David Arcari) [1700822]
-- [powercap] intel_rapl: Add missing domain data update on hotplug (David Arcari) [1700822]
-- [powercap] rapl: track lead cpu per package (David Arcari) [1700822]
-- [lib] cpumask: Export cpumask_any_but() (David Arcari) [1700822]
-- [x86] Replace cpu_**_mask() with topology_**_cpumask() (David Arcari) [1700822]
-- [x86] perf/amd: Remove need to check "running" bit in NMI handler (David Arcari) [1696764]
-- [x86] perf/amd: Resolve NMI latency issues for active PMCs (David Arcari) [1696764]
-- [x86] perf/amd: Resolve race condition when disabling PMC (David Arcari) [1696764]
-
-* Wed Apr 24 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1041.el7]
-- [fs] ext4: return error code from ext4_mb_good_group() (Lukas Czerner) [1079962]
-- [fs] ext4: try to initialize all groups we can in case of failure on ppc64 (Lukas Czerner) [1079962]
-- [fs] sunrpc: Clean up initialisation of the struct rpc_rqst (Benjamin Coddington) [1674359]
-- [fs] revert "[fs] xfs: use rhashtable to track buffer cache" (Brian Foster) [1658749]
-- [fs] fuse: only invalidate atime in direct read (Miklos Szeredi) [1674557]
-- [fs] fanotify: fix handling of events on child sub-directory (Miklos Szeredi) [1652436]
-- [fs] ovl: copy up inode flags (Miklos Szeredi) [1462393]
-- [fs] ovl: fix decode of dir file handle with multi lower layers (Miklos Szeredi) [1693457]
-- [fs] ovl: fix recursive oi->lock in ovl_link() (Miklos Szeredi) [1693457]
-- [fs] ovl: fix error handling in ovl_verify_set_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: fix format of setxattr debug (Miklos Szeredi) [1693457]
-- [fs] ovl: fix access beyond unterminated strings (Miklos Szeredi) [1693457]
-- [fs] ovl: fix memory leak on unlink of indexed file (Miklos Szeredi) [1693457]
-- [fs] ovl: fix oopses in ovl_fill_super() failure paths (Miklos Szeredi) [1693457]
-- [fs] nfsd: fix leaked file lock with nfs exported overlayfs (Miklos Szeredi) [1693457]
-- [fs] ovl: fix wrong use of impure dir cache in ovl_iterate() (Miklos Szeredi) [1693457]
-- [fs] ovl: use inode_insert5() to hash a newly created inode (Miklos Szeredi) [1693457]
-- [fs] ovl: Pass argument to ovl_get_inode() in a structure (Miklos Szeredi) [1693457]
-- [fs] ovl: set I_CREATING on inode being created (Miklos Szeredi) [1693457]
-- [fs] vfs: don't evict uninitialized inode (Miklos Szeredi) [1693457]
-- [fs] new primitive: discard_new_inode() (Miklos Szeredi) [1693457]
-- [fs] do d_instantiate/unlock_new_inode combinations safely (Miklos Szeredi) [1693457]
-- [fs] udf: fix the udf_iget() vs. udf_new_inode() races (Miklos Szeredi) [1693457]
-- [fs] vfs: factor out inode_insert5() (Miklos Szeredi) [1693457]
-- [fs] ovl: clean up copy-up error paths (Miklos Szeredi) [1693457]
-- [fs] ovl: return EIO on internal error (Miklos Szeredi) [1693457]
-- [fs] ovl: make ovl_create_real() cope with vfs_mkdir() safely (Miklos Szeredi) [1693457]
-- [fs] ovl: create helper ovl_create_temp() (Miklos Szeredi) [1693457]
-- [fs] ovl: return dentry from ovl_create_real() (Miklos Szeredi) [1693457]
-- [fs] ovl: struct cattr cleanups (Miklos Szeredi) [1693457]
-- [fs] ovl: strip debug argument from ovl_do_ helpers (Miklos Szeredi) [1693457]
-- [fs] ovl: remove WARN_ON() real inode attributes mismatch (Miklos Szeredi) [1693457]
-- [fs] ovl: Kconfig documentation fixes (Miklos Szeredi) [1693457]
-- [fs] ovl: update documentation for unionmount-testsuite (Miklos Szeredi) [1693457]
-- [fs] ovl: update documentation w.r.t "xino" feature (Miklos Szeredi) [1693457]
-- [fs] ovl: add support for "xino" mount and config options (Miklos Szeredi) [1693457]
-- [fs] ovl: consistent d_ino for non-samefs with xino (Miklos Szeredi) [1693457]
-- [fs] ovl: consistent i_ino for non-samefs with xino (Miklos Szeredi) [1693457]
-- [fs] ovl: constant st_ino for non-samefs with xino (Miklos Szeredi) [1693457]
-- [fs] ovl: allocate anon bdev per unique lower fs (Miklos Szeredi) [1693457]
-- [fs] ovl: factor out ovl_map_dev_ino() helper (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup ovl_update_time() (Miklos Szeredi) [1693457]
-- [fs] ovl: add WARN_ON() for non-dir redirect cases (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup setting OVL_INDEX (Miklos Szeredi) [1693457]
-- [fs] ovl: set d->is_dir and d->opaque for last path element (Miklos Szeredi) [1693457]
-- [fs] ovl: Do not check for redirect if this is last layer (Miklos Szeredi) [1693457]
-- [fs] ovl: lookup in inode cache first when decoding lower file handle (Miklos Szeredi) [1693457]
-- [fs] ovl: do not try to reconnect a disconnected origin dentry (Miklos Szeredi) [1693457]
-- [fs] ovl: disambiguate ovl_encode_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: set lower layer st_dev only if setting lower st_ino (Miklos Szeredi) [1693457]
-- [fs] ovl: fix lookup with middle layer opaque dir and absolute path redirects (Miklos Szeredi) [1693457]
-- [fs] ovl: Set d->last properly during lookup (Miklos Szeredi) [1693457]
-- [fs] ovl: set i_ino to the value of st_ino for NFS export (Miklos Szeredi) [1693457]
-- [fs] ovl: update Kconfig texts (Miklos Szeredi) [1693457]
-- [fs] ovl: redirect_dir=nofollow should not follow redirect for opaque lower (Miklos Szeredi) [1693457]
-- [fs] ovl: fix ptr_ret.cocci warnings (Miklos Szeredi) [1693457]
-- [fs] ovl: check ERR_PTR() return value from ovl_lookup_real() (Miklos Szeredi) [1693457]
-- [fs] ovl: check lower ancestry on encode of lower dir file handle (Miklos Szeredi) [1693457]
-- [fs] ovl: hash non-dir by lower inode for fsnotify (Miklos Szeredi) [1693457]
-- [fs] nfsd: store stat times in fill_pre_wcc() instead of inode times (Miklos Szeredi) [1693457]
-- [fs] nfsd: encode stat->mtime for getattr instead of inode->i_mtime (Miklos Szeredi) [1693457]
-- [fs] ovl: check ERR_PTR() return value from ovl_encode_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: fix regression in fsnotify of overlay merge dir (Miklos Szeredi) [1693457]
-- [fs] xfs: preserve i_rdev when recycling a reclaimable inode (Miklos Szeredi) [1693457]
-- [fs] ovl: wire up NFS export operations (Miklos Szeredi) [1693457]
-- [fs] ovl: lookup indexed ancestor of lower dir (Miklos Szeredi) [1693457]
-- [fs] ovl: lookup connected ancestor of dir in inode cache (Miklos Szeredi) [1693457]
-- [fs] ovl: hash non-indexed dir by upper inode for NFS export (Miklos Szeredi) [1693457]
-- [fs] ovl: decode pure lower dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode indexed dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode lower file handles of unlinked but open files (Miklos Szeredi) [1693457]
-- [fs] ovl: decode indexed non-dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode lower non-dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: encode lower file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: copy up before encoding non-connectable dir file handle (Miklos Szeredi) [1693457]
-- [fs] ovl: encode non-indexed upper file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode connected upper dir file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: decode pure upper file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: encode pure upper file handles (Miklos Szeredi) [1693457]
-- [fs] ovl: document NFS export (Miklos Szeredi) [1693457]
-- [fs] vfs: factor out helpers d_instantiate_anon() and d_alloc_anon() (Miklos Szeredi) [1693457]
-- [fs] ovl: store 'has_upper' and 'opaque' as bit flags (Miklos Szeredi) [1693457]
-- [fs] ovl: copy up of disconnected dentries (Miklos Szeredi) [1693457]
-- [fs] ovl: use d_splice_alias() in place of d_add() in lookup (Miklos Szeredi) [1693457]
-- [fs] ovl: do not pass overlay dentry to ovl_get_inode() (Miklos Szeredi) [1693457]
-- [fs] ovl: factor out ovl_get_index_fh() helper (Miklos Szeredi) [1693457]
-- [fs] ovl: whiteout orphan index entries on mount (Miklos Szeredi) [1693457]
-- [fs] ovl: whiteout index when union nlink drops to zero (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup dir index when dir nlink drops to zero (Miklos Szeredi) [1693457]
-- [fs] ovl: index directories on copy up for NFS export (Miklos Szeredi) [1693457]
-- [fs] ovl: index all non-dir on copy up for NFS export (Miklos Szeredi) [1693457]
-- [fs] ovl: create ovl_need_index() helper (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup temp index entries (Miklos Szeredi) [1693457]
-- [fs] ovl: verify directory index entries on mount (Miklos Szeredi) [1693457]
-- [fs] ovl: verify whiteout index entries on mount (Miklos Szeredi) [1693457]
-- [fs] ovl: use directory index entries for consistency verification (Miklos Szeredi) [1693457]
-- [fs] ovl: unbless lower st_ino of unverified origin (Miklos Szeredi) [1693457]
-- [fs] ovl: verify stored origin fh matches lower dir (Miklos Szeredi) [1693457]
-- [fs] ovl: add support for "nfs_export" configuration (Miklos Szeredi) [1693457]
-- [fs] ovl: update documentation of inodes index feature (Miklos Szeredi) [1693457]
-- [fs] ovl: generalize ovl_verify_origin() and helpers (Miklos Szeredi) [1693457]
-- [fs] ovl: simplify arguments to ovl_check_origin_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: factor out ovl_check_origin_fh() (Miklos Szeredi) [1693457]
-- [fs] ovl: store layer index in ovl_layer (Miklos Szeredi) [1693457]
-- [fs] ovl: force r/o mount when index dir creation fails (Miklos Szeredi) [1693457]
-- [fs] ovl: disable index when no xattr support (Miklos Szeredi) [1693457]
-- [fs] ovl: fix inconsistent d_ino for legacy merge dir (Miklos Szeredi) [1693457]
-- [fs] ovl: take mnt_want_write() for removing impure xattr (Miklos Szeredi) [1693457]
-- [fs] ovl: take mnt_want_write() for work/index dir setup (Miklos Szeredi) [1693457]
-- [fs] ovl: fix another overlay: warning prefix (Miklos Szeredi) [1693457]
-- [fs] ovl: take lower dir inode mutex outside upper sb_writers lock (Miklos Szeredi) [1693457]
-- [fs] ovl: fix failure to fsync lower dir (Miklos Szeredi) [1693457]
-- [fs] ovl: hash directory inodes for fsnotify (Miklos Szeredi) [1693457]
-- [fs] ovl: fix overlay: warning prefix (Miklos Szeredi) [1693457]
-- [fs] ovl: Use PTR_ERR_OR_ZERO() (Miklos Szeredi) [1693457]
-- [fs] ovl: Sync upper dirty data when syncing overlayfs (Miklos Szeredi) [1693457]
-- [fs] ovl: update ctx->pos on impure dir iteration (Miklos Szeredi) [1693457]
-- [fs] ovl: Pass ovl_get_nlink() parameters in right order (Miklos Szeredi) [1693457]
-- [fs] ovl: remove unneeded arg from ovl_verify_origin() (Miklos Szeredi) [1693457]
-- [fs] ovl: rename ufs to ofs (Miklos Szeredi) [1693457]
-- [fs] ovl: clean up getting lower layers (Miklos Szeredi) [1693457]
-- [fs] ovl: clean up workdir creation (Miklos Szeredi) [1693457]
-- [fs] ovl: clean up getting upper layer (Miklos Szeredi) [1693457]
-- [fs] ovl: move ovl_get_workdir() and ovl_get_lower_layers() (Miklos Szeredi) [1693457]
-- [fs] ovl: reduce the number of arguments for ovl_workdir_create() (Miklos Szeredi) [1693457]
-- [fs] ovl: change order of setup in ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: factor out ovl_free_fs() helper (Miklos Szeredi) [1693457]
-- [fs] ovl: grab reference to workbasedir early (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_indexdir() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_lower_layers() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_workdir() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_upper() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_lowerstack() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_workpath() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: split out ovl_get_upperpath() from ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] ovl: use path_put_init() in error paths for ovl_fill_super() (Miklos Szeredi) [1693457]
-- [fs] vfs: add path_put_init() (Miklos Szeredi) [1693457]
-- [fs] ovl: update cache version of impure parent on rename (Miklos Szeredi) [1693457]
-- [fs] ovl: relax same fs constraint for constant st_ino (Miklos Szeredi) [1693457]
-- [fs] ovl: return anonymous st_dev for lower inodes (Miklos Szeredi) [1693457]
-- [fs] ovl: allocate anonymous devs for lowerdirs (Miklos Szeredi) [1693457]
-- [fs] ovl: re-structure overlay lower layers in-memory (Miklos Szeredi) [1693457]
-- [fs] ovl: move include of ovl_entry.h into overlayfs.h (Miklos Szeredi) [1693457]
-- [fs] ovl: fix rmdir problem on non-merge dir with origin xattr (Miklos Szeredi) [1693457]
-- [fs] ovl: simplify ovl_check_empty_and_clear() (Miklos Szeredi) [1693457]
-- [fs] ovl: no direct iteration for dir with origin xattr (Miklos Szeredi) [1693457]
-- [fs] ovl: fix may_write_real() for overlayfs directories (Miklos Szeredi) [1693457]
-- [fs] ovl: don't allow writing ioctl on lower layer (Miklos Szeredi) [1693457]
-- [fs] ovl: fix relatime for directories (Miklos Szeredi) [1693457]
-- [fs] vfs: add flags to d_real() (Miklos Szeredi) [1693457]
-- [fs] ovl: cleanup d_real for negative (Miklos Szeredi) [1693457]
-- [fs] overlayfs, locking: Remove smp_mb__before_spinlock() usage (Miklos Szeredi) [1693457]
-- [fs] ovl: constant d_ino for non-merge dirs (Miklos Szeredi) [1693457]
-- [fs] ovl: constant d_ino across copy up (Miklos Szeredi) [1693457]
-- [fs] ovl: fix readdir error value (Miklos Szeredi) [1693457]
-- [fs] ovl: check snprintf return (Miklos Szeredi) [1693457]
-- [fs] overlayfs: use uuid_t instead of uuid_be (Miklos Szeredi) [1693457]
-- [fs] ovl: check if upperdir fs supports O_TMPFILE (Miklos Szeredi) [1693457]
-- [fs] vfs: create vfs helper vfs_tmpfile() (Miklos Szeredi) [1693457]
-- [fs] iget_locked et.al.: make sure we don't return bad inodes (Miklos Szeredi) [1693457]
-- [fs] ovl: wrappers for ->i_mutex access (Miklos Szeredi) [1693457]
-- [fs] NFSv4.1: Reinitialise sequence results before retransmitting a request (Benjamin Coddington) [1649747]
-- [fs] NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() (Benjamin Coddington) [1649747]
-- [fs] NFS: Fix I/O request leakages (Benjamin Coddington) [1649747]
-- [fs] sunrpc: fix 4 more call sites that were using stack memory with a scatterlist (Benjamin Coddington) [1649747]
-- [fs] xprtrdma: Yet another double DMA-unmap (Benjamin Coddington) [1649747]
-- [fs] SUNRPC: Fix leak of krb5p encode pages (Benjamin Coddington) [1649747]
-- [fs] NFSv4: Don't exit the state manager without clearing NFS4CLNT_MANAGER_RUNNING (Benjamin Coddington) [1649747]
-- [fs] nfs: Fix a missed page unlock after pg_doio() (Benjamin Coddington) [1649747]
-- [fs] NFSv4: Fix a tracepoint Oops in initiate_file_draining() (Benjamin Coddington) [1649747]
-- [fs] NFSv4: Fix a tracepoint Oops in initiate_file_draining() (Benjamin Coddington) [1649747]
-- [fs] NFS: Fix a typo in nfs_init_timeout_values() (Benjamin Coddington) [1649747]
-- [fs] NFSv4/flexfiles: Fix invalid deref in FF_LAYOUT_DEVID_NODE() (Benjamin Coddington) [1649747]
-- [fs] NFS: Add missing encode / decode sequence_maxsz to v4.2 operations (Benjamin Coddington) [1649747]
-- [fs] NFS: Fix a soft lockup in the delegation recovery code (Benjamin Coddington) [1649747]
-- [fs] NFS: Fix an I/O request leakage in nfs_do_recoalesce (Benjamin Coddington) [1649747]
-- [fs] NFSv4.1: Fix the r/wsize checking (Benjamin Coddington) [1649747]
-- [fs] NFSv4.1 fix infinite loop on I/O. (Benjamin Coddington) [1649747]
-- [fs] NFSv4: Fix a sleep in atomic context in nfs4_callback_sequence() (Benjamin Coddington) [1649747]
-- [fs] NFSv4 client live hangs after live data migration recovery (Benjamin Coddington) [1649747]
-- [fs] pnfs/blocklayout: off by one in bl_map_stripe() (Benjamin Coddington) [1649747]
-
-* Thu Apr 18 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1040.el7]
-- [char] ipmi: ipmi_si_hardcode.c: init si_type array to fix a crash (Tony Camuso) [1692236]
-- [char] ipmi_si: Fix crash when using hard-coded device (Tony Camuso) [1692236]
-- [char] ipmi: Remove platform driver overrides and use the id_table (Tony Camuso) [1692236]
-- [netdrv] cxgb4: Don't return EAGAIN when TCAM is full (Arjun Vynipadath) [1696163]
-- [netdrv] libcxgb: fix incorrect ppmax calculation (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: add tcb flags and tcb rpl struct (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: Update 1.23.3.0 as the latest firmware supported (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: Enable outer UDP checksum offload for T6 (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4/cxgb4vf: Fix up netdev->hw_features (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: Export sge_host_page_size to ulds (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4: Update 1.22.9.0 as the latest firmware supported (Arjun Vynipadath) [1696163]
-- [netdrv] cxgb4/cxgb4vf: Program hash region for {t4/t4vf}_change_mac() (Arjun Vynipadath) [1696163]
-- [net] team: set slave to promisc if team is already in promisc mode (Hangbin Liu) [1693637]
-- [net] revert "netfilter: ensure number of counters is >0 in do_replace()" (Xin Long) [1693963]
-- [net] netfilter: ensure number of counters is >0 in do_replace() (Xin Long) [1693963]
-- [net] vxlan: Don't call gro_cells_destroy() before device is unregistered (Andrea Claudi) [1692498]
-- [net] netfilter: nfnetlink: relax strict multicast group check from netlink_bind (Guillaume Nault) [1689049]
-- [net] netfilter: nfnetlink: fix insufficient validation in nfnetlink_bind (Guillaume Nault) [1689049]
-- [net] sctp: call sctp_auth_init_hmacs() in sctp_sock_migrate() (Xin Long) [1699698 1687639]
-- [net] sctp: move up sctp_auth_init_hmacs() in sctp_endpoint_init() (Xin Long) [1687639]
-- [net] sctp: sctp_sock_migrate() returns error if sctp_bind_addr_dup() fails (Xin Long) [1687639]
-- [net] sctp: don't compare hb_timer expire date before starting it (Xin Long) [1687639]
-- [net] sctp: call gso_reset_checksum when computing checksum in sctp_gso_segment (Xin Long) [1687639]
-- [net] sctp: set chunk transport correctly when it's a new asoc (Xin Long) [1687639]
-- [net] sctp: allocate sctp_sockaddr_entry with kzalloc (Xin Long) [1687639]
-- [net] sctp: initialize sin6_flowinfo for ipv6 addrs in sctp_inet6addr_event (Xin Long) [1687639]
-- [net] sctp: kfree_rcu asoc (Xin Long) [1687639]
-- [net] sctp: not allow to set asoc prsctp_enable by sockopt (Xin Long) [1698691 1687639]
-- [net] sctp: clear the transport of some out_chunk_list chunks in sctp_assoc_rm_peer (Xin Long) [1687639]
-- [net] sctp: fix race on sctp_id2asoc (Xin Long) [1687639]
-- [net] sctp: use the pmtu from the icmp packet to update transport pathmtu (Xin Long) [1687639]
-- [net] sctp: hold transport before accessing its asoc in sctp_transport_get_next (Xin Long) [1687639]
-- [net] sctp: fix the issue that pathmtu may be set lower than MINSEGMENT (Xin Long) [1687639]
-- [net] sctp: not allow transport timeout value less than HZ/5 for hb_timer (Xin Long) [1687639]
-- [net] sctp: remove sctp_chunk_put from fail_mark err path in sctp_ulpevent_make_rcvmsg (Xin Long) [1687639]
-- [net] sctp: delay the authentication for the duplicated cookie-echo chunk (Xin Long) [1687639]
-- [net] sctp: fix the issue that the cookie-ack with auth can't get processed (Xin Long) [1687639]
-- [net] sctp: use the old asoc when making the cookie-ack chunk in dupcook_d (Xin Long) [1687639]
-- [net] sctp: init active key for the new asoc in dupcook_a and dupcook_b (Xin Long) [1687639]
-- [net] sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 (Xin Long) [1687639]
-- [net] sctp: do not leak kernel memory to user space (Xin Long) [1687639]
-- [net] sctp: fix identification of new acks for SFR-CACC (Xin Long) [1687639]
-- [net] sctp: fix the handling of ICMP Frag Needed for too small eTUs (Xin Long) [1687639]
-- [net] sctp: do not retransmit upon FragNeeded if PMTU discovery is disabled (Xin Long) [1687639]
-- [net] tcp: handle inet_csk_reqsk_queue_add() failures (Guillaume Nault) [1664444]
-- [net] tcp/dccp: remove __reqsk_free() from inet_child_forget() (Guillaume Nault) [1664444]
-- [net] tcp/dccp: fix another race at listener dismantle (Guillaume Nault) [1664444]
-- [net] tcp/dccp: fix race at listener dismantle phase (Guillaume Nault) [1664444]
-- [net] openvswitch: Remove padding from packet before L3+ conntrack processing (Eelco Chaudron) [1684518]
-- [s390] cputime: fix incorrect system time (Hendrik Brueckner) [1698825]
-- [x86] platform/uv: Use efi_runtime_lock to serialise BIOS calls (Frank Ramsay) [1677704]
-- [x86] platform/uv: Use efi_enabled() instead of test_bit() (Frank Ramsay) [1677704]
-- [x86] platform/uv: Remove uv_bios_call_reentrant() (Frank Ramsay) [1677704]
-- [x86] platform/uv: Remove unnecessary #ifdef CONFIG_EFI (Frank Ramsay) [1677704]
-
-* Wed Apr 17 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1039.el7]
-- [kernel] modules: Only return -EEXIST for modules that have finished loading (Prarit Bhargava) [1658812]
-- [tools] power turbostat: Add Die column (Steve Best) [1698983]
-- [lib] idr: free the top layer if idr tree has the maximum height (Vladis Dronov) [1698115]
-- [misc] hpilo: Do not claim unsupported hardware (Joseph Szczypek) [1691151]
-- [misc] hpilo: Exclude unsupported device via blacklist (Joseph Szczypek) [1691151]
-- [scsi] scsi_error: Fix sdev->cmd_list usage in scsi_reset_provider() when using SCSI-MQ. (Ewan Milne) [1690686]
-- [nvme] cancel request synchronously (Ming Lei) [1688518]
-- [block] blk-mq: introduce blk_mq_complete_request_sync() (Ming Lei) [1688518]
-- [infiniband] rdma/vmw_pvrdma: Fix memory leak on pvrdma_pci_remove (Kamal Heib) [1698939]
-- [netdrv] ixgbe: extend PTP gettime function to read system clock (Ken Cox) [1697862]
-- [netdrv] mlx5: extend PTP gettime function to read system clock (Alaa Hleihel) [1697861]
-- [netdrv] mlx5: update timecounter at least twice per counter overflow (Alaa Hleihel) [1697861]
-- [netdrv] ibmvnic: Fix netdev feature clobbering during a reset (Steve Best) [1699039]
-- [netdrv] ibmvnic: Enable GRO (Steve Best) [1699039]
-- [net] xfrm: get rid of incorrect WARN (Davide Caratti) [1694585]
-- [net] veth: allow to setup multicast address for veth device (Hangbin Liu) [1572205]
-- [net] ipv4: fix buffer overflow in ip_options_compile() (Davide Caratti) [1694583]
-- [net] nf_tables: Remove TechPreview marker (Phil Sutter) [1671465]
-- [net] ptp: fix Spectre v1 vulnerability (Hangbin Liu) [1672568]
-- [net] sctp: get sctphdr by offset in sctp_compute_cksum (Xin Long) [1677495]
-- [net] sctp: force the params with right types for sctp csum apis (Xin Long) [1677495]
-- [net] route: set the deleted fnhe fnhe_daddr to 0 in ip_del_fnhe to fix a race (Xin Long) [1630136]
-- [net] ppp: fix pppoe_dev deletion condition in pppoe_release() (Guillaume Nault) [1589258]
-- [net] vxlan: Fix GRO cells race condition between receive and link delete (Andrea Claudi) [1687045]
-- [net] ipv6: fallback to full lookup if table lookup is unsuitable (Guillaume Nault) [1535977]
-- [net] ipv6: enforce egress device match in per table nexthop lookups (Guillaume Nault) [1535977]
-- [net] ipv6: Use passed in table for nexthop lookups (Guillaume Nault) [1535977]
-- [net] Fix nexthop lookups (Guillaume Nault) [1535977]
-- [net] ipv4: fix refcount leak in fib_check_nh() (Guillaume Nault) [1535977]
-- [net] Use passed in table for nexthop lookups (Guillaume Nault) [1535977]
-
-* Fri Apr 12 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1038.el7]
-- [tools] power turbostat: Add Icelake support (Steve Best) [1517661]
-- [netdrv] ibmvnic: Fix completion structure initialization (Steve Best) [1697107]
-- [pci] pm: Force devices to D0 in pci_pm_thaw_noirq() (Myron Stowe) [1628800]
-- [pci] pm: Restore the status of PCI devices across hibernation (Myron Stowe) [1628800]
-- [md] dm table: propagate BDI_CAP_STABLE_WRITES to fix sporadic checksum errors (Mike Snitzer) [1693466]
-- [md] dm: disable DISCARD if the underlying storage no longer supports it (Mike Snitzer) [1691930]
-- [message] scsi: mptsas: Fixup device hotplug for VMWare ESXi (Tomas Henzl) [1661906]
-- [nvme] nvmet: ignore EOPNOTSUPP for discard (Ewan Milne) [1524958]
-- [nvme] nvme-pci: fix memory leak on probe failure (David Milburn) [1689008]
-- [nvme] nvme-pci: limit max IO size and segments to avoid high order allocations (David Milburn) [1689008]
-- [powerpc] bpf: Fix generation of load/store DW instructions (Yauheni Kaliuta) [1684367]
-
-* Mon Apr 08 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1037.el7]
-- [fs] task_mmu.c: do not show VmExe bigger than total executable virtual memory (Rafael Aquini) [1690946]
-- [fs] blockdev: Fix livelocks on loop device (Lukas Czerner) [1686149]
-- [fs] ext4: fix crash during online resizing (Lukas Czerner) [1686149]
-- [fs] revert "[fs] Hang/soft lockup in d_invalidate with simultaneous calls" (Benjamin Coddington) [1696374]
-- [fs] revert "[fs] d_invalidate(): unhash immediately" (Benjamin Coddington) [1696374]
-- [fs] revert "[fs] mnt: fix __detach_mounts infinite loop" (Benjamin Coddington) [1696374]
-- [infiniband] ib/hfi1: Failed to drain send queue when QP is put into error state (Alex Estrin) [1695215]
-- [md] Don't jump to compute_result state from check_result state (Nigel Croxon) [1537033]
-- [iommu] amd: Reserve exclusion range in iova-domain (Jerry Snitselaar) [1691196]
-- [mm] thp: relocate flush_cache_range() in migrate_misplaced_transhuge_page() (Andrea Arcangeli) [1636066]
-- [mm] thp: fix mmu_notifier in migrate_misplaced_transhuge_page() (Andrea Arcangeli) [1636066]
-- [mm] thp: fix MADV_DONTNEED vs migrate_misplaced_transhuge_page race condition (Andrea Arcangeli) [1636066]
-- [mm] revert "mm: numa: defer TLB flush for THP migration as long as possible" (Andrea Arcangeli) [1636066]
-- [mm] thp/migration: switch from flush_tlb_range to flush_pmd_tlb_range (Andrea Arcangeli) [1636066]
-- [mm] migrate.c: stabilise page count when migrating transparent hugepages (Andrea Arcangeli) [1636066]
-- [mm] numa: add migrated transhuge pages to LRU the same way as base pages (Andrea Arcangeli) [1636066]
-- [mm] thp: fix MADV_DONTNEED vs. MADV_FREE race (Andrea Arcangeli) [1636066]
-- [powerpc] tm: Add TM Unavailable Exception (Steve Best) [1694778]
-- [powerpc] tm: Add commandline option to disable hardware transactional memory (Steve Best) [1694778]
-
-* Thu Apr 04 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1036.el7]
-- [documentation] Long-running irq handlers can stall RCU grace periods (Jerome Marchand) [1470510]
-- [netdrv] tg3: allow ethtool -p to work for NICs in down state (Jonathan Toppins) [1694928]
-- [netdrv] hv_netvsc: Fix unwanted wakeup after tx_disable (Mohammed Gamal) [1632653]
-- [tools] power turbostat: return the exit status of a command (David Arcari) [1642738]
-- [block] blk-mq: fix IO accounting in case of none io scheduler (Ming Lei) [1669684]
-- [md] dm thin: fix trailing semicolon in __remap_and_issue_shared_cell (Mike Snitzer) [1694179]
-- [md] dm thin: remove needless assignments in cell_error() and error_retry_list() (Mike Snitzer) [1694179]
-- [md] dm thin: add sanity checks to thin-pool and external snapshot creation (Mike Snitzer) [1694179]
-- [md] dm thin: fix bug where bio that overwrites thin block ignores FUA (Mike Snitzer) [1694179]
-- [md] dm thin: fix passdown_double_checking_shared_status() (Mike Snitzer) [1694179]
-- [md] dm thin: bump target version (Mike Snitzer) [1694179]
-- [md] dm thin: send event about thin-pool state change _after_ making it (Mike Snitzer) [1694179]
-- [md] dm thin metadata: fix __udivdi3 undefined on 32-bit (Mike Snitzer) [1694179]
-- [documentation] dm thin: include metadata_low_watermark threshold in pool status (Mike Snitzer) [1694179]
-- [documentation] dm thin: extend thinpool status format string with omitted fields (Mike Snitzer) [1694179]
-- [documentation] dm thin: fixes in thin-provisioning.txt (Mike Snitzer) [1694179]
-- [md] dm block manager: remove redundant unlikely annotation (Mike Snitzer) [1694179]
-- [md] dm: Avoid namespace collision with bitmap API (Mike Snitzer) [1694179]
-- [md] dm thin metadata: THIN_MAX_CONCURRENT_LOCKS should be 6 (Mike Snitzer) [1694179]
-- [x86] mce/amd, edac/mce_amd: Add new error descriptions for some SMCA bank types (Gary Hook) [1685269]
-- [edac] x86/mce/amd, edac/mce_amd: Add new McaTypes for CS, PSP, and SMU units (Gary Hook) [1685269]
-- [edac] x86/mce/amd, edac/mce_amd: Add new MP5, NBIO, and PCIE SMCA bank types (Gary Hook) [1685269]
-- [x86] mce/amd: Fix the thresholding machinery initialization order (Gary Hook) [1685269]
-- [x86] mce/amd: Read MCx_MISC block addresses on any CPU (Gary Hook) [1685269]
-- [x86] mce/amd: Cache SMCA MISC block addresses (Gary Hook) [1685269]
-- [x86] mce/amd: Carve out SMCA get_block_address() code (Gary Hook) [1685269]
-- [x86] mce/amd: Get address from already initialized block (Gary Hook) [1685269]
-- [x86] perf: Disable intel_bts when PTI (Jiri Olsa) [1643565]
-
-* Wed Apr 03 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1035.el7]
-- [fs] xfs: don't overflow xattr listent buffer (Miklos Szeredi) [1693856]
-- [security] selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock ("J. Bruce Fields") [1624848]
-- [fs] ovl: check whiteout in ovl_create_over_whiteout() (Miklos Szeredi) [1662265]
-- [fs] ovl: fix return value from ovl_posix_acl_create() (Miklos Szeredi) [1677705]
-- [fs] ceph: Fix append mode for sync/direct write (Zheng Yan) [1691227]
-- [kernel] bpf: fix inner map masking to prevent oob under speculation (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [kernel] bpf: prevent out of bounds speculation on pointer arithmetic (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [kernel] bpf: restrict unknown scalars of mixed signed bounds for unprivileged (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [kernel] bpf: move {prev_, }insn_idx into verifier env (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [kernel] bpf: Simplify ptr_min_max_vals adjustment (Jiri Olsa) [1673617] {CVE-2019-7308}
-- [s390] pkey: move pckmo subfunction available checks away from module init (Hendrik Brueckner) [1692781]
-- [x86] kvm/hyper-v: avoid spurious pending stimer on vCPU init (Vitaly Kuznetsov) [1687556]
-- [x86] kvm: x86: fix handling of role.cr4_pae and rename it to 'gpte_size' (Vitaly Kuznetsov) [1497611 1565739]
-- [x86] kvm: nvmx: Do not inherit quadrant and invalid for the root shadow EPT (Vitaly Kuznetsov) [1497611 1565739]
-- [x86] kvm/mmu: fix switch between root and guest MMUs (Vitaly Kuznetsov) [1497611 1565739]
-
-* Mon Apr 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1034.el7]
-- [kvm] KVM: x86: work around leak of uninitialized stack contents (Paolo Bonzini) [1671931] {CVE-2019-7222}
-- [linux] perf: Fix a race between ring_buffer_detach() and ring_buffer_attach() (Jiri Olsa) [1589335]
-- [netdrv] iwlwifi: add new card for 9260 series (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: update product name for 9260 and 9560 (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: add new cards for 22560, 9260 and killer series (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: remove support for 9000 A-step devices (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: add new cards for 9560, 9462, 9461 and killer series (Stanislaw Gruszka) [1641514]
-- [netdrv] iwlwifi: move common 9000 cfg parameters to common macro (Stanislaw Gruszka) [1641514]
-- [net] sctp: not allow pathmtu to be set greater than INT_MAX (Xin Long) [1653067]
-- [net] sock: consistent handling of extreme SO_SNDBUF/SO_RCVBUF values (Guillaume Nault) [1672321]
-- [net] geneve: correctly handle ipv6.disable module parameter (Jiri Benc) [1677049]
-- [net] neighbour: Avoid writing before skb->head in neigh_hh_output() (Stefano Brivio) [1636831]
-- [net] ipv6: Check available headroom in ip6_xmit() even without options (Stefano Brivio) [1636831]
-- [net] ipv6: fix possible use-after-free in ip6_xmit() (Stefano Brivio) [1636831]
-- [fs] block: fix integrity verificaton on READ bio (Ming Lei) [1689019]
-- [scsi] hpsa: remove timeout from TURs (Joseph Szczypek) [1584334]
-- [nvdimm] libnvdimm/security: Require nvdimm_security_setup_events() to succeed (Jeff Moyer) [1584975]
-- [tools] nfit_test: fix security state pull for nvdimm security nfit_test (Jeff Moyer) [1584975]
-- [nvdimm] libnvdimm/security: Fix nvdimm_security_state() state request selection (Jeff Moyer) [1584975]
-- [acpi] nfit: Remove duplicate set nd_set in acpi_nfit_init_interleave_set() (Jeff Moyer) [1584975]
-- [acpi] nfit: Fix race accessing memdev in nfit_get_smbios_id() (Jeff Moyer) [1584975]
-- [kernel] libnvdimm/dimm: Fix security capability detection for non-Intel NVDIMMs (Jeff Moyer) [1584975]
-- [acpi] nfit: Mark some functions as __maybe_unused (Jeff Moyer) [1584975]
-- [acpi] nfit: delete the function to_acpi_nfit_desc (Jeff Moyer) [1584975]
-- [acpi] nfit: delete the redundant header file (Jeff Moyer) [1584975]
-- [tools] mm, devm_memremap_pages: mark devm_memremap_pages() EXPORT_SYMBOL_GPL (Jeff Moyer) [1584975]
-- [nvdimm] libnvdimm/security: Quiet security operations (Jeff Moyer) [1584975]
-- [documentation] libnvdimm/security: Add documentation for nvdimm security support (Jeff Moyer) [1584975]
-- [tools] testing/nvdimm: add Intel DSM 1.8 support for nfit_test (Jeff Moyer) [1584975]
-- [tools] testing/nvdimm: Add overwrite support for nfit_test (Jeff Moyer) [1584975]
-- [tools] testing/nvdimm: Add test support for Intel nvdimm security DSMs (Jeff Moyer) [1584975]
-- [acpi] nfit, libnvdimm/security: add Intel DSM 1.8 master passphrase support (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm/security: Add security DSM overwrite support (Jeff Moyer) [1584975]
-- [acpi] nfit, libnvdimm: Add support for issue secure erase DSM to Intel nvdimm (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm: Add enable/update passphrase support for Intel nvdimms (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm: Add disable passphrase support to Intel nvdimm (Jeff Moyer) [1584975]
-- [security] keys-encrypted: add nvdimm key format type to encrypted keys (Jeff Moyer) [1584975]
-- [kernel] keys: Export lookup_user_key to external users (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm: Add unlock of nvdimm support for Intel DIMMs (Jeff Moyer) [1584975]
-- [kernel] locking/lockdep: Provide a type check for lock_is_held (Jeff Moyer) [1584975]
-- [nvdimm] acpi/nfit, libnvdimm: Add freeze security support to Intel nvdimm (Jeff Moyer) [1584975]
-- [acpi] nfit, libnvdimm: Introduce nvdimm_security_ops (Jeff Moyer) [1584975]
-- [acpi] nfit, libnvdimm: Store dimm id as a member to struct nvdimm (Jeff Moyer) [1584975]
-- [nvdimm] libnvdimm, namespace: Replace kmemdup() with kstrndup() (Jeff Moyer) [1584975]
-- [acpi] nfit: Adjust annotation for why return 0 if fail to find NFIT at start (Jeff Moyer) [1584975]
-- [nvdimm] libnvdimm, bus: Check id immediately following ida_simple_get (Jeff Moyer) [1584975]
-- [acpi] nfit: Fix user-initiated ARS to be "ARS-long" rather than "ARS-short" (Jeff Moyer) [1612419 1662223]
-- [nvdimm] libnvdimm, pfn: Pad pfn namespaces relative to other regions (Jeff Moyer) [1662226]
-- [tools] testing/nvdimm: Align test resources to 128M (Jeff Moyer) [1662226]
-- [lib] genalloc.c: make the avail variable an atomic_long_t (Jeff Moyer) [1662226]
-- [lib] genalloc.c: start search from start of chunk (Jeff Moyer) [1662226]
-- [lib] genalloc:support memory-allocation with bytes-alignment to genalloc (Jeff Moyer) [1662226]
-- [lib] genalloc.c: add power aligned algorithm (Jeff Moyer) [1662226]
-- [kernel] linux/genalloc.h: spinlock_t needs spinlock_types.h (Jeff Moyer) [1662226]
-- [acpi] nfit: Add support for Intel DSM 1.8 commands (Jeff Moyer) [1584975]
-- [acpi] revert "acpi, nfit: Further restrict userspace ARS start requests" (Jeff Moyer) [1612419 1662223]
-- [acpi] nfit: Fix ARS overflow continuation (Jeff Moyer) [1612419 1662223]
-- [tools] testing/nvdimm: Fix the array size for dimm devices (Jeff Moyer) [1689002]
-- [acpi] nfit: Further restrict userspace ARS start requests (Jeff Moyer) [1612419 1662223]
-- [acpi] nfit: Fix Address Range Scrub completion tracking (Jeff Moyer) [1612419 1662223]
-- [kernel] uapi: ndctl: Remove use of PAGE_SIZE (Jeff Moyer) [1689002]
-- [uapi] libnvdimm, namespace: make min namespace size 4K (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: Populate dirty shutdown data (Jeff Moyer) [1641418]
-- [acpi] nfit: Collect shutdown status (Jeff Moyer) [1641418]
-- [acpi] nfit: Introduce nfit_mem flags (Jeff Moyer) [1641418]
-- [nvdimm] libnvdimm, label: Fix sparse warning (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Use namespace index data to reduce number of label reads needed (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Split label init out from the logic for getting config data (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Remove empty if statement (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Clarify comment in sizeof_namespace_index (Jeff Moyer) [1634344 1643313]
-- [nvdimm] Sanity check labeloff (Jeff Moyer) [1634344 1643313]
-- [nvdimm] libnvdimm, dimm: Maximize label transfer size (Jeff Moyer) [1634344 1643313]
-- [nvdimm] libnvdimm, namespace: Drop the repeat assignment for variable dev->parent (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm, region: Fail badblocks listing for inactive regions (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm, pfn: during init, clear errors in the metadata area (Jeff Moyer) [1641567]
-- [nvdimm] libnvdimm: Set device node in nd_device_register (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm: Hold reference on parent while scheduling async init (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm: remove duplicate include (Jeff Moyer) [1689002]
-- [mm] fix BUG_ON() in vmf_insert_pfn_pud() from VM_MIXEDMAP removal (Jeff Moyer) [1622188]
-- [mm] dax: remove VM_MIXEDMAP for fsdax and device dax (Jeff Moyer) [1622188]
-- [x86] mm: Preserve _PAGE_DEVMAP across mprotect() calls (Jeff Moyer) [1641554]
-- [dax] device-dax: avoid hang on error before devm_memremap_pages() (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: improve emulation of smart injection (Jeff Moyer) [1632007]
-- [dax] super: Do not request a pointer kaddr when not required (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: kaddr and pfn can be NULL to ->direct_access() (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm, pmem: kaddr and pfn can be NULL to ->direct_access() (Jeff Moyer) [1689002]
-- [acpi] nfit: queue issuing of ars when an uc error notification comes in (Jeff Moyer) [1641488]
-- [tools] testing/nvdimm: Fix support for emulating controller temperature (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: Make DSM failure code injection an override (Jeff Moyer) [1632007]
-- [acpi] nfit: Prefer _DSM over _LSR for namespace label reads (Jeff Moyer) [1632007]
-- [nvdimm] libnvdimm: Introduce locked DIMM capacity support (Jeff Moyer) [1632007]
-- [acpi] nfit: Fix bus command validation (Jeff Moyer) [1689002]
-- [acpi] nfit: fix unchecked dereference in acpi_nfit_ctl (Jeff Moyer) [1689002]
-- [acpi] nfit: fix cmd_rc for acpi_nfit_ctl to always return a value (Jeff Moyer) [1689002]
-- [dax] dev-dax: check_vma: ratelimit dev_info-s (Jeff Moyer) [1689002]
-- [dax] Use dax_write_cache* helpers (Jeff Moyer) [1689002]
-- [documentation] acpi, nfit: Remove ecc_unit_size (Jeff Moyer) [1689002]
-- [documentation] acpi: nfit: document sysfs interface (Jeff Moyer) [1689002]
-- [nvdimm] libnvdimm: Debug probe times (Jeff Moyer) [1689002]
-- [acpi] nfit: constify *_attribute_group (Jeff Moyer) [1689002]
-- [tools] testing/nvdimm: add pfn device dependency (Jeff Moyer) [1689002]
-- [sched] core: Fix TASK_DEAD race in finish_task_switch() (Phil Auld) [1689789]
-- [x86] mce: Handle varying MCA bank counts (David Arcari) [1693352]
-
-* Fri Mar 29 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1033.el7]
-- [netdrv] mark the intel igc driver as tech preview (David Arcari) [1454918]
-- [netdrv] igc: Remove unneeded hw_dbg prints (David Arcari) [1454918]
-- [netdrv] igc: Fix the typo in igc_base.h header definition (David Arcari) [1454918]
-- [netdrv] igc: Add support for the ntuple feature (David Arcari) [1454918]
-- [netdrv] igc: Add support for statistics (David Arcari) [1454918]
-- [netdrv] igc: Extend the ethtool supporting (David Arcari) [1454918]
-- [netdrv] igc: Add multiple receive queues control supporting (David Arcari) [1454918]
-- [netdrv] igc: Use struct_size() helper (David Arcari) [1454918]
-- [netdrv] igc: Add ethtool support (David Arcari) [1454918]
-- [netdrv] igc: Remove the 'igc_get_phy_id_base' method (David Arcari) [1454918]
-- [netdrv] igc: Remove the 'igc_read_mac_addr_base' method (David Arcari) [1454918]
-- [netdrv] igc: Remove unneeded code (David Arcari) [1454918]
-- [netdrv] igc: Remove unused code (David Arcari) [1454918]
-- [netdrv] igc: Fix code redundancy (David Arcari) [1454918]
-- [netdrv] igc: Remove unreachable code from igc_phy.c file (David Arcari) [1454918]
-- [netdrv] igc: Remove obsolete IGC_ERR define (David Arcari) [1454918]
-- [netdrv] intel: consolidate NAPI and NAPI exit (David Arcari) [1454918]
-- [netdrv] igc: Clean up code (David Arcari) [1454918]
-- [netdrv] igc: Tidy up some white space (David Arcari) [1454918]
-- [netdrv] igc: fix error return handling from call to netif_set_real_num_tx_queues (David Arcari) [1454918]
-- [netdrv] igc: Remove set but not used variable 'pci_using_dac' (David Arcari) [1454918]
-- [netdrv] igc: Remove set but not used variables 'ctrl_ext, link_mode' (David Arcari) [1454918]
-- [netdrv] intel-ethernet: software timestamp skbs as late as possible (David Arcari) [1454918]
-- [netdrv] igc: Add watchdog (David Arcari) [1454918]
-- [netdrv] igc: Add setup link functionality (David Arcari) [1454918]
-- [netdrv] igc: Add code for PHY support (David Arcari) [1454918]
-- [netdrv] igc: Add NVM support (David Arcari) [1454918]
-- [netdrv] igc: Add HW initialization code (David Arcari) [1454918]
-- [netdrv] igc: Add transmit and receive fastpath and interrupt handlers (David Arcari) [1454918]
-- [netdrv] igc: Add support for Tx/Rx rings (David Arcari) [1454918]
-- [netdrv] igc: Add interrupt support (David Arcari) [1454918]
-- [netdrv] igc: Add netdev (David Arcari) [1454918]
-- [netdrv] igc: Add support for PF (David Arcari) [1454918]
-- [netdrv] igc: Add skeletal frame for Intel(R) 2.5G Ethernet Controller support (David Arcari) [1454918]
-- [netdrv] ibmvnic: Report actual backing device speed and duplex values (Steve Best) [1691790]
-- [infiniband] rdma/iwcm: Fix string truncation error (Kamal Heib) [1692128]
-- [infiniband] rdma/uverbs: Fix an error flow in ib_uverbs_poll_cq (Kamal Heib) [1692128]
-- [infiniband] rdma/device: Check that the rename is nop under the lock (Kamal Heib) [1692128]
-- [infiniband] rdma/device: Use __ib_device_get_by_name() in ib_device_rename() (Kamal Heib) [1692128]
-- [infiniband] ib/core: Fix potential memory leak while creating MAD agents (Kamal Heib) [1692128]
-- [infiniband] ib/core: Unregister notifier before freeing MAD security (Kamal Heib) [1692128]
-- [infiniband] scsi: rdma/srpt: Fix a credit leak for aborted commands (Kamal Heib) [1692128]
-- [infiniband] scsi: rdma/srpt: Fix handling of TMF submission failure (Kamal Heib) [1692128]
-- [infiniband] ib/ipoib: Make ipoib_intercept_dev_id_attr() static (Kamal Heib) [1692128]
-- [infiniband] ib/core: Destroy QP if XRC QP fails (Kamal Heib) [1692128]
-- [infiniband] ib/core: Declare local functions 'static' (Kamal Heib) [1692128]
-- [infiniband] ib/iser: Pass the correct number of entries for dma mapped SGL (Kamal Heib) [1692128]
-- [infiniband] rdma/ocrdma: Fix out of bounds index check in query pkey (Kamal Heib) [1692128]
-- [infiniband] ib/usnic: Fix out of bounds index check in query pkey (Kamal Heib) [1692128]
-- [net] xprtrdma: Fix ri_max_segs and the result of ro_maxpages (Kamal Heib) [1692128]
-- [rdma] ib/uverbs: fix a typo (Kamal Heib) [1692128]
-- [infiniband] rxe: fix error completion wr_id and qp_num (Kamal Heib) [1692128]
-- [kernel] tracing: Do a WARN_ON() if start_thread() in hwlat is called when thread exists (Jerome Marchand) [1691607]
-- [kernel] ftrace: Add missing check for existing hwlat thread (Jerome Marchand) [1691607]
-- [kernel] tracing: Do not call start/stop() functions when tracing_on does not change (Jerome Marchand) [1691607]
-- [cpufreq] Retry read lock of policy rwsem in show method (Waiman Long) [1628791]
-- [locking] rwsem: Exit read lock slowpath if queue empty & no writer (Waiman Long) [1691099]
-- [documentation] x86/speculation: Add PR_SPEC_DISABLE_NOEXEC (Waiman Long) [1671826]
-- [x86] speculation: Prevent stale SPEC_CTRL msr content (Waiman Long) [1671826]
-- [x86] speculation: Split out TIF update (Waiman Long) [1671826]
-- [x86] speculation: Reorganize speculation control MSRs update (Waiman Long) [1671826]
-- [x86] speculation: Rename SSBD update functions (Waiman Long) [1671826]
-- [x86] process: Optimize TIF checks in __switch_to_xtra() (Waiman Long) [1671826]
-- [tools] tools headers: Synchronize prctl.h ABI header (Waiman Long) [1671826]
-- [x86] gart: Exclude GART aperture from kcore (Kairui Song) [1532150]
-- [x86] gart: Exclude GART aperture from vmcore (Kairui Song) [1532150]
-
-* Thu Mar 28 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1032.el7]
-- [fs] fsnotify: fix ignore mask logic in fsnotify() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: Fix busy inodes during unmount (Miklos Szeredi) [1641065]
-- [fs] fsnotify: let connector point to an abstract object (Miklos Szeredi) [1641065]
-- [fs] fsnotify: pass connp and object type to fsnotify_add_mark() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: use typedef fsnotify_connp_t for brevity (Miklos Szeredi) [1641065]
-- [fs] fsnotify: add fsnotify_add_inode_mark() wrappers (Miklos Szeredi) [1641065]
-- [fs] fanotify: generalize fanotify_should_send_event() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: generalize send_to_group() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: generalize iteration of marks by object type (Miklos Szeredi) [1641065]
-- [fs] fsnotify: introduce marks iteration helpers (Miklos Szeredi) [1641065]
-- [fs] fsnotify: remove redundant arguments to handle_event() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: use type id to identify connector object type (Miklos Szeredi) [1641065]
-- [fs] fsnotify: fix typo in a comment about mark->g_list (Miklos Szeredi) [1641065]
-- [fs] fsnotify: fix ignore mask logic in send_to_group() (Miklos Szeredi) [1641065]
-- [fs] fsnotify: clean up fsnotify() (Miklos Szeredi) [1641065]
-- [fs] dnotify: Handle errors from fsnotify_add_mark_locked() in fcntl_dirnotify() (Miklos Szeredi) [1641065]
-- [fs] fuse: fix leaked aux requests (Miklos Szeredi) [1581904]
-- [fs] fuse: only reuse auxiliary request in fuse_writepage_in_flight() (Miklos Szeredi) [1581904]
-- [fs] fuse: clean up fuse_writepage_in_flight() (Miklos Szeredi) [1581904]
-- [fs] fuse: extract fuse_find_writeback() helper (Miklos Szeredi) [1581904]
-- [fs] fuse: decrement NR_WRITEBACK_TEMP on the right page (Miklos Szeredi) [1581904]
-- [fs] fuse: call pipe_buf_release() under pipe lock (Miklos Szeredi) [1581904]
-- [fs] fuse: handle zero sized retrieve correctly (Miklos Szeredi) [1581904]
-- [fs] fuse: continue to send FUSE_RELEASEDIR when FUSE_OPEN returns ENOSYS (Miklos Szeredi) [1581904]
-- [fs] fuse: fix leaked notify reply (Miklos Szeredi) [1581904]
-- [fs] fuse: add locking to max_background and congestion_threshold changes (Miklos Szeredi) [1581904]
-- [fs] fuse: use READ_ONCE on congestion_threshold and max_background (Miklos Szeredi) [1581904]
-- [fs] fuse: fix blocked_waitq wakeup (Miklos Szeredi) [1581904]
-- [fs] fuse: Add missed unlock_page() to fuse_readpages_fill() (Miklos Szeredi) [1581904]
-- [fs] fuse: Don't access pipe->buffers without pipe_lock() (Miklos Szeredi) [1581904]
-- [fs] fuse: don't keep dead fuse_conn at fuse_fill_super(). (Miklos Szeredi) [1581904]
-- [fs] fuse: fix control dir setup and teardown (Miklos Szeredi) [1581904]
-- [fs] fuse: fix congested state leak on aborted connections (Miklos Szeredi) [1581904]
-- [fs] fuse: Remove the buggy retranslation of pids in fuse_dev_do_read (Miklos Szeredi) [1581904]
-- [fs] fuse: atomic_o_trunc should truncate pagecache (Miklos Szeredi) [1581904]
-- [fs] fuse: fix READDIRPLUS skipping an entry (Miklos Szeredi) [1581904]
-- [fs] fuse: set mapping error in writepage_locked when it fails (Miklos Szeredi) [1581904]
-- [fs] fuse: initialize the flock flag in fuse_file on allocation (Miklos Szeredi) [1581904]
-- [fs] fuse: fix fuse_write_end() if zero bytes were copied (Miklos Szeredi) [1581904]
-- [fs] fuse: listxattr: verify xattr list (Miklos Szeredi) [1581904]
-- [fs] fuse: invalidate dir dentry after chmod (Miklos Szeredi) [1581904]
-- [fs] fuse: fix wrong assignment of ->flags in fuse_send_init() (Miklos Szeredi) [1581904]
-- [fs] fuse: fuse_flush must check mapping->flags for errors (Miklos Szeredi) [1581904]
-- [fs] fuse: fsync() did not return IO errors (Miklos Szeredi) [1581904]
-- [fs] fuse: do not use iocb after it may have been freed (Miklos Szeredi) [1581904]
-- [fs] fuse: break infinite loop in fuse_fill_write_pages() (Miklos Szeredi) [1581904]
-- [fs] fuse: initialize fc->release before calling it (Miklos Szeredi) [1581904]
-- [fs] fuse: set stolen page uptodate (Miklos Szeredi) [1581904]
-- [fs] fuse: notify: don't move pages (Miklos Szeredi) [1581904]
-- [fs] fuse: add FUSE_NO_OPEN_SUPPORT flag to INIT (Miklos Szeredi) [1581904]
-- [fs] fuse: s_time_gran fix (Miklos Szeredi) [1581904]
-- [fs] fuse: release temporary page if fuse_writepage_locked() failed (Miklos Szeredi) [1581904]
-- [fs] fuse: avoid scheduling while atomic (Miklos Szeredi) [1581904]
-- [fs] fuse: clear MS_I_VERSION (Miklos Szeredi) [1581904]
-- [fs] fuse: clear FUSE_I_CTIME_DIRTY flag on setattr (Miklos Szeredi) [1581904]
-- [fs] fuse: trust kernel i_ctime only (Miklos Szeredi) [1581904]
-- [fs] fuse: remove .update_time (Miklos Szeredi) [1581904]
-- [fs] fuse: allow ctime flushing to userspace (Miklos Szeredi) [1581904]
-- [fs] fuse: fuse: add time_gran to INIT_OUT (Miklos Szeredi) [1581904]
-- [fs] fuse: add .write_inode (Miklos Szeredi) [1581904]
-- [fs] fuse: clean up fsync (Miklos Szeredi) [1581904]
-- [fs] fuse: fuse: fallocate: use file_update_time() (Miklos Szeredi) [1581904]
-- [fs] fuse: update mtime on open(O_TRUNC) in atomic_o_trunc mode (Miklos Szeredi) [1581904]
-- [fs] fuse: update mtime on truncate(2) (Miklos Szeredi) [1581904]
-- [fs] fuse: do not use uninitialized i_mode (Miklos Szeredi) [1581904]
-- [fs] fuse: fix mtime update error in fsync (Miklos Szeredi) [1581904]
-- [fs] fuse: check fallocate mode (Miklos Szeredi) [1581904]
-- [fs] fuse: add __exit to fuse_ctl_cleanup (Miklos Szeredi) [1581904]
-- [fs] fuse: Turn writeback cache on (Miklos Szeredi) [1581904]
-- [fs] fuse: Fix O_DIRECT operations vs cached writeback misorder (Miklos Szeredi) [1581904]
-- [fs] fuse: fuse_flush() should wait on writeback (Miklos Szeredi) [1581904]
-- [fs] fuse: Implement write_begin/write_end callbacks (Miklos Szeredi) [1581904]
-- [fs] fuse: restructure fuse_readpage() (Miklos Szeredi) [1581904]
-- [fs] fuse: Flush files on wb close (Miklos Szeredi) [1581904]
-- [fs] fuse: Trust kernel i_mtime only (Miklos Szeredi) [1581904]
-- [fs] fuse: Trust kernel i_size only (Miklos Szeredi) [1581904]
-- [fs] fuse: Connection bit for enabling writeback (Miklos Szeredi) [1581904]
-- [fs] fuse: Prepare to handle short reads (Miklos Szeredi) [1581904]
-- [fs] fuse: Linking file to inode helper (Miklos Szeredi) [1581904]
-- [fs] pipe: kill ->map() and ->unmap() (Miklos Szeredi) [1581904]
-- [fs] fuse/dev: use atomic maps (Miklos Szeredi) [1581904]
-- [fs] fuse: support clients that don't implement 'open' (Miklos Szeredi) [1581904]
-- [fs] fuse: fix SetPageUptodate() condition in STORE (Miklos Szeredi) [1581904]
-- [fs] fuse: fix pipe_buf_operations (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: protect secondary requests from fuse file release (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: update bdi writeout when deleting secondary request (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: crop secondary requests (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: roll back changes if request not found (Miklos Szeredi) [1581904]
-- [fs] vfs: introduce d_instantiate_no_diralias() (Miklos Szeredi) [1581904]
-- [fs] fuse: writepage: skip already in flight (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: handle same page rewrites (Miklos Szeredi) [1581904]
-- [fs] fuse: writepages: fix aggregation (Miklos Szeredi) [1581904]
-- [fs] fuse: fix race in fuse_writepages() (Miklos Szeredi) [1581904]
-- [fs] fuse: Implement writepages callback (Miklos Szeredi) [1581904]
-- [fs] fuse: don't BUG on no write file (Miklos Szeredi) [1581904]
-- [fs] fuse: lock page in mkwrite (Miklos Szeredi) [1581904]
-- [fs] fuse: Prepare to handle multiple pages in writeback (Miklos Szeredi) [1581904]
-- [fs] fuse: Getting file for writeback helper (Miklos Szeredi) [1581904]
-- [fs] fuse: readdirplus: fix RCU walk (Miklos Szeredi) [1581904]
-- [fs] mm: use totalram_pages instead of num_physpages at runtime (Miklos Szeredi) [1581904]
-- [fs] fuse: another open-coded file_inode() (Miklos Szeredi) [1581904]
-- [fs] nfsd: Clean up legacy NFS WRITE argument XDR decoders (Kamal Heib) [1680282]
-- [fs] nfsd: cleanup dead codes and values in nfsd_write (Kamal Heib) [1680282]
-- [fs] nfsd: pass an integer for stable type to nfsd_vfs_write (Kamal Heib) [1680282]
-- [fs] nfs: If the VFS sets LOOKUP_REVAL then force a lookup of the dentry (Benjamin Coddington) [1627929]
-- [fs] mnt: fix __detach_mounts infinite loop (Benjamin Coddington) [1627929]
-- [fs] d_invalidate(): unhash immediately (Benjamin Coddington) [1627929]
-- [fs] Hang/soft lockup in d_invalidate with simultaneous calls (Benjamin Coddington) [1627929]
-- [x86] hyperv: Stop suppressing X86_FEATURE_PCID (Vitaly Kuznetsov) [1691421]
-- [x86] hyper-v: fix hyperv.h UAPI header (Vitaly Kuznetsov) [1692492]
-
-* Wed Mar 27 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1031.el7]
-- [fs] ext4: Fix data corruption caused by unaligned direct AIO (Lukas Czerner) [1684780]
-- [sound] alsa/hda: add more quirks for HP Z2 G4 and HP Z240 (Jaroslav Kysela) [1680180]
-- [mm] percpu: add support for __GFP_NOWARN flag (Jiri Olsa) [1690683]
-- [md] It's wrong to add len to sector_nr in raid10 reshape twice (Xiao Ni) [1528466]
-- [scsi] vmw_pvscsi: Return DID_RESET for status SAM_STAT_COMMAND_TERMINATED (Cathy Avery) [1637721]
-- [netdrv] cxgb4vf: Revert force link up behaviour (Arjun Vynipadath) [1629594 1615254]
-- [netdrv] cxgb4: Add VF Link state support (Arjun Vynipadath) [1629594 1615254]
-- [infiniband] ib/ipoib: Fix the use of ndo_change_mtu (Kamal Heib) [1692111]
-- [infiniband] rdmavt: Fix concurrency panics in QP post_send and modify to error (Alex Estrin) [1686441]
-- [infiniband] ib/mlx5: Fix mapping of link-mode to IB width and speed (Alaa Hleihel) [1688717]
-- [infiniband] ib/mlx5: Use mlx5 core to create/destroy a DEVX DCT (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Fix DCT creation bad flow (Alaa Hleihel) [1688717]
-- [infiniband] ib/mlx5: Set correct write permissions for implicit ODP MR (Alaa Hleihel) [1688717]
-- [netdrv] mlx5e: IPoIB, Fix RX checksum statistics update (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Avoid panic when setting vport rate (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Avoid panic when setting vport mac, getting vport config (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Remove redundant lag function to get pf num (Alaa Hleihel) [1688717]
-- [netdrv] mlx5e: Properly get the PF number phys port name ndo (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Consolidate update FTE for all removal changes (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Add a locked flag to node removal functions (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Add modify FTE helper function (Alaa Hleihel) [1688717]
-- [netdrv] mlx5: Fix multiple updates of steering rules in parallel (Alaa Hleihel) [1688717]
-- [netdrv] mlx5e: XDP, fix redirect resources availability check (Alaa Hleihel) [1688717]
-- [netdrv] mlx5e: FPGA, fix Innova IPsec TX offload data path performance (Alaa Hleihel) [1688717]
-- [netdrv] mlx4_core: Fix locking in SRIOV mode when switching between events and polling (Alaa Hleihel) [1688717]
-- [netdrv] mlx4_core: Fix reset flow when in command polling mode (Alaa Hleihel) [1688717]
-- [infiniband] ib/{hfi1, qib}: Fix WC.byte_len calculation for UD_SEND_WITH_IMM (Alex Estrin) [1682916]
-- [infiniband] ib/hfi1: Add limit test for RC/UC send via loopback (Alex Estrin) [1682916]
-- [net] bluetooth: hidp: buffer overflow in hidp_process_report (Gopal Tiwari) [1624391] {CVE-2018-9363}
-- [net] sched: act_csum: Fix csum calc for tagged packets (Ivan Vecera) [1676462]
-- [hid] increase maximum global item tag report size to 256 (Tony Camuso) [1517616]
-- [hid] debug: fix the ring buffer implementation (Torez Smith) [1635834] {CVE-2018-9516 CVE-2019-3819}
-- [hid] debug: check length before copy_to_user() (Torez Smith) [1635834] {CVE-2018-9516 CVE-2019-3819}
-- [tools] power turbostat: fix goldmont C-state limit decoding (Prarit Bhargava) [1641714]
-- [tools] power turbostat: consolidate duplicate model numbers (Prarit Bhargava) [1641714]
-- [tools] power turbostat: reduce debug output (Prarit Bhargava) [1641714]
-- [tools] power turbosat: fix AMD APIC-id output (Prarit Bhargava) [1641714]
-- [tools] power turbostat: version 18.07.27 (Prarit Bhargava) [1641714]
-- [tools] power turbostat: Read extended processor family from CPUID (Prarit Bhargava) [1641714]
-- [tools] power turbostat: fix x2apic debug message output file (Prarit Bhargava) [1641714]
-- [tools] power turbostat: fix bogus summary values (Prarit Bhargava) [1641714]
-- [tools] power turbostat: fix -S on UP systems (Prarit Bhargava) [1641714]
-- [tools] power turbostat: version 18.06.20 (Prarit Bhargava) [1641714]
-- [tools] power turbostat: add the missing command line switches (Prarit Bhargava) [1641714]
-- [tools] power turbostat: add single character tokens to help (Prarit Bhargava) [1641714]
-- [tools] power turbostat: alphabetize the help output (Prarit Bhargava) [1641714]
-- [tools] power turbostat: add optional APIC X2APIC columns (Prarit Bhargava) [1641714]
-- [tools] power turbostat: decode cpuid.1.HT (Prarit Bhargava) [1641714]
-- [crypto] qat - move temp buffers off the stack (Neil Horman) [1641143]
-- [crypto] qat - Fix KASAN stack-out-of-bounds bug in adf_probe() (Neil Horman) [1641143]
-- [crypto] qat - Remove VLA usage (Neil Horman) [1641143]
-- [crypto] qat/adf_aer - Replace GFP_ATOMIC with GFP_KERNEL in adf_dev_aer_schedule_reset() (Neil Horman) [1641143]
-- [crypto] treewide: kzalloc_node() -> kcalloc_node() (Neil Horman) [1641143]
-- [crypto] treewide: kzalloc() -> kcalloc() (Neil Horman) [1641143]
-- [crypto] qat - Add MODULE_FIRMWARE for all qat drivers (Neil Horman) [1641143]
-- [crypto] .gitignore: move *-asn1.[ch] patterns to the top-level .gitignore (Neil Horman) [1641143]
-- [crypto] qat - don't leak pointers to authenc keys (Neil Horman) [1641143]
-- [crypto] qat - Make several functions static (Neil Horman) [1641143]
-- [kernel] locking/lockdep: Increase lockdep dependency entries to 40k (Waiman Long) [1600404]
-- [kernel] irq: Implement irqaffinity=driver (Prarit Bhargava) [1632965]
-- [kernel] genirq: Fix null pointer reference in irq_set_affinity_hint() (Prarit Bhargava) [1632965]
-- [kernel] genirq: Remove bogus restriction in irq_move_mask_irq() (Prarit Bhargava) [1632965]
-- [kernel] genirq: Set initial affinity in irq_set_affinity_hint() (Prarit Bhargava) [1632965]
-- [powerpc] pseries/mobility: Extend start/stop topology update scope (Desnes Augusto Nunes do Rosario) [1671799]
-- [powerpc] pseries: Fix unitialized timer reset on migration (Desnes Augusto Nunes do Rosario) [1671799]
-- [acpi] nfit, x86/mce: Validate a MCE's address before using it (Jeff Moyer) [1662229]
-- [acpi] nfit, x86/mce: Handle only uncorrectable machine checks (Jeff Moyer) [1662229]
-- [x86] mce: Make correctable error detection look at the Deferred bit (Jeff Moyer) [1662229]
-- [x86] mm: Unbreak modules that use the DMA API (Gary Hook) [1676613 1662887]
-- [x86] perf/x86: Fixup typo in stub functions (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Fix memory corruption (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Implement support for TSX Force Abort (Waiman Long) [1688878]
-- [x86] Add TSX Force Abort CPUID/MSR (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Generalize dynamic constraint creation (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Make cpuc allocations consistent (Waiman Long) [1688878]
-- [x86] perf/x86/intel: Delay memory deallocation until x86_pmu_dead_cpu() (Waiman Long) [1688878]
-
-* Thu Mar 21 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1030.el7]
-- [netdrv] tg3: Fix vunmap() BUG_ON() triggered from tg3_free_consistent() (Jonathan Toppins) [1673455]
-- [misc] mei: request async autosuspend at the end of enumeration (Artem Savkov) [1676682]
-- [block] blk-mq: fix a hung issue when fsync (Ming Lei) [1674402]
-- [scsi] cxgb4i: add wait_for_completion() (Arjun Vynipadath) [1642436]
-- [scsi] cxgb4i: fix thermal configuration dependencies (Arjun Vynipadath) [1642436]
-- [scsi] cxgb4i: add DCB support for iSCSI connections (Arjun Vynipadath) [1642436]
-- [scsi] cxgbi: Convert timers to use timer_setup() (Arjun Vynipadath) [1642436]
-- [lib] rhashtable: add schedule points (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Documentation tweak (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable.c: use kvzalloc() in bucket_table_alloc() when possible (Christoph von Recklinghausen) [1666812]
-- [kernel] rhashtable: compact struct rhashtable_params (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Do not lower max_elems when max_size is zero (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Cap total number of entries to 2^31 (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: remove insecure_max_entries param (Christoph von Recklinghausen) [1666812]
-- [kernel] rhashtable: remove insecure_elasticity (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Fix RCU dereference annotation in rht_bucket_nested (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Fix use before NULL check in bucket_table_free (Christoph von Recklinghausen) [1666812]
-- [lib] rhashtable: Add nested tables (Christoph von Recklinghausen) [1666812]
-- [kernel] rcu: Fix soft lockup for rcu_nocb_kthread (Christoph von Recklinghausen) [1666812]
-- [firmware] efi: Add pstore variables to the deletion whitelist (Prarit Bhargava) [1303667]
-- [tools] efi: Make efivarfs entries immutable by default (Prarit Bhargava) [1303667]
-- [firmware] efi: Make our variable validation list include the guid (Prarit Bhargava) [1303667]
-- [firmware] efi: Do variable name validation tests in utf8 (Prarit Bhargava) [1303667]
-- [firmware] efivars: Stop passing a struct argument to efivar_validate() (Prarit Bhargava) [1303667]
-- [firmware] efivars: Check size of user object (Prarit Bhargava) [1303667]
-- [firmware] efivars: Use local variables instead of a pointer dereference (Prarit Bhargava) [1303667]
-- [tools] perf top: Move perf_top__reset_sample_counters() to after counts display (Jiri Olsa) [1680074]
-- [tools] perf top: Display slow reader warning when droping samples (Jiri Olsa) [1680074]
-- [tools] perf top: Save and display the drop count stats (Jiri Olsa) [1680074]
-- [tools] perf top: Drop samples which are behind the refresh rate (Jiri Olsa) [1680074]
-- [tools] perf top: Set the 'session_done' volatile variable when exiting (Jiri Olsa) [1680074]
-- [tools] perf top: Use cond variable instead of a lock (Jiri Olsa) [1680074]
-- [tools] perf top: Add processing thread (Jiri Olsa) [1680074]
-- [tools] perf top: Move lost events warning to helpline (Jiri Olsa) [1680074]
-- [tools] perf top: Save and display the lost count stats (Jiri Olsa) [1680074]
-- [tools] perf ordered_events: Add private data member (Jiri Olsa) [1680074]
-- [tools] perf ordered_events: Rework show_progress for __ordered_events__flush (Jiri Olsa) [1680074]
-- [tools] perf vendor events intel: Fix diverse typos (Jiri Olsa) [1680074]
-- [tools] perf stat: Fix CSV mode column output for non-cgroup events (Jiri Olsa) [1680074]
-- [tools] perf stat: Fix shadow stats for clock events (Jiri Olsa) [1680074]
-- [tools] perf symbols: Fix slowness due to -ffunction-section (Jiri Olsa) [1680074]
-- [tools] perf jvmti: Separate jvmti cmlr check (Jiri Olsa) [1680074]
-- [tools] perf vendor events: Add JSON metrics for Cascadelake server (Jiri Olsa) [1680074]
-- [tools] perf vendor events: Add stepping in CPUID string for x86 (Jiri Olsa) [1680074]
-- [tools] perf stat: Use perf_evsel__is_clocki() for clock events (Jiri Olsa) [1680074]
-- [tools] perf pmu: Suppress potential format-truncation warning (Jiri Olsa) [1680074]
-- [tools] perf script: Share code and output format for uregs and iregs output (Jiri Olsa) [1680074]
-- [tools] perf script: Add newline after uregs output (Jiri Olsa) [1680074]
-- [tools] tools build feature: Check if get_current_dir_name() is available (Jiri Olsa) [1680074]
-- [tools] perf tools: Fix crash on synthesizing the unit (Jiri Olsa) [1680074]
-- [tools] perf tools: Do not zero sample_id_all for group members (Jiri Olsa) [1680074]
-- [tools] perf tools: Fix undefined symbol scnprintf in libperf-jvmti.so (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Add MTC and CYC timestamps to debug log (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Add more event information to debug log (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Fix table find when table re-ordered (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add help window (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add Selected branches report (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Fall back to /usr/local/lib/libxed.so (Jiri Olsa) [1680074]
-- [tools] perf top: Display the LBR stats in callchain entry (Jiri Olsa) [1680074]
-- [tools] perf stat: Handle different PMU names with common prefix (Jiri Olsa) [1680074]
-- [tools] perf record: Support weak groups (Jiri Olsa) [1680074]
-- [tools] perf evlist: Move perf_evsel__reset_weak_group into evlist (Jiri Olsa) [1680074]
-- [tools] perf intel-pt/bts: Calculate cpumode for synthesized samples (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Insert callchain context into synthesized callchains (Jiri Olsa) [1680074]
-- [tools] perf tools: Don't clone maps from parent when synthesizing forks (Jiri Olsa) [1680074]
-- [tools] perf top: Start display thread earlier (Jiri Olsa) [1680074]
-- [tools] perf unwind: Take pgoff into account when reporting elf to libdwfl (Jiri Olsa) [1680074]
-- [tools] perf top: Do not use overwrite mode by default (Jiri Olsa) [1680074]
-- [tools] perf top: Allow disabling the overwrite mode (Jiri Olsa) [1680074]
-- [tools] perf trace: Beautify the umount's 'name' argument (Jiri Olsa) [1680074]
-- [tools] perf trace: Consider syscall aliases too (Jiri Olsa) [1680074]
-- [tools] perf trace beauty: Allow syscalls to mask an argument before considering it (Jiri Olsa) [1680074]
-- [tools] perf beauty: Introduce strarray__scnprintf_flags() (Jiri Olsa) [1680074]
-- [tools] perf beauty: Add a generator for MS_ mount/umount's flag constants (Jiri Olsa) [1680074]
-- [tools] perf script: Support total cycles count (Jiri Olsa) [1680074]
-- [tools] perf script: Implement --graph-function (Jiri Olsa) [1680074]
-- [tools] tools script: Add --call-trace and --call-ret-trace (Jiri Olsa) [1680074]
-- [tools] perf script: Make itrace script default to all calls (Jiri Olsa) [1680074]
-- [tools] perf script: Add --insn-trace for instruction decoding (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add All branches report (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add ability to display all the database tables (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add ability to shrink / enlarge font (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add ability to find symbols in the call-graph (Jiri Olsa) [1680074]
-- [tools] perf scripts python: exported-sql-viewer.py: Add support for multiple sub-windows (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Rename to exported-sql-viewer.py (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Refactor TreeItem class (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Add data helper functions (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Factor out CallGraphModel from TreeModel (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Remove use of setObjectName() (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Add a class for global data (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Separate the database details into a class (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Make a "Main" function (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Change icon (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Set a minimum window size (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Provide better default column sizes (Jiri Olsa) [1680074]
-- [tools] perf scripts python: call-graph-from-sql.py: Use SPDX license identifier (Jiri Olsa) [1680074]
-- [tools] perf script: Flush output stream after events in verbose mode (Jiri Olsa) [1680074]
-- [tools] perf script: Allow extended console debug output (Jiri Olsa) [1680074]
-- [tools] perf stat: Poll for monitored tasks being alive (Jiri Olsa) [1680074]
-- [tools] perf trace: Drop addr_location refcounts (Jiri Olsa) [1680074]
-- [tools] perf evsel: Mark a evsel as disabled when asking the kernel do disable it (Jiri Olsa) [1680074]
-- [tools] perf evsel: Introduce per event max_events property (Jiri Olsa) [1680074]
-- [tools] perf trace: Introduce --max-events (Jiri Olsa) [1680074]
-- [tools] tools lib subcmd: Introduce OPTION_ULONG (Jiri Olsa) [1680074]
-- [tools] perf symbols: Set PLT entry/header sizes properly on Sparc (Jiri Olsa) [1680074]
-- [tools] perf jitdump: Add Sparc support (Jiri Olsa) [1680074]
-- [tools] perf annotate: Add Sparc support (Jiri Olsa) [1680074]
-- [tools] perf record: Encode -k clockid frequency into Perf trace (Jiri Olsa) [1680074]
-- [tools] perf probe: Support SDT markers having reference counter (semaphore) (Jiri Olsa) [1680074]
-- [tools] perf python: More portable way to make CFLAGS work with clang (Jiri Olsa) [1680074]
-- [tools] perf python: Make clang_has_option() work on Python 3 (Jiri Olsa) [1680074]
-- [tools] perf tools: Free temporary 'sys' string in read_event_files() (Jiri Olsa) [1680074]
-- [tools] perf tools: Avoid double free in read_event_file() (Jiri Olsa) [1680074]
-- [tools] perf tools: Free 'printk' string in parse_ftrace_printk() (Jiri Olsa) [1680074]
-- [tools] perf tools: Cleanup trace-event-info 'tdata' leak (Jiri Olsa) [1680074]
-- [tools] perf strbuf: Match va_{add, copy} with va_end (Jiri Olsa) [1680074]
-- [tools] perf auxtrace: Include missing asm/bitsperlong.h to get BITS_PER_LONG (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Implement decoder flags for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf intel-pt: Add decoder flags for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf tools: Improve thread_stack__process() for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf tools: Improve thread_stack__event() for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf db-export: Add trace begin / end branch type variants (Jiri Olsa) [1680074]
-- [tools] perf script: Enhance sample flags for trace begin / end (Jiri Olsa) [1680074]
-- [tools] perf script: Print DSO for callindent (Jiri Olsa) [1680074]
-- [tools] perf script: Allow sym and dso without ip, addr (Jiri Olsa) [1680074]
-- [tools] tools lib subcmd: Support overwriting the pager (Jiri Olsa) [1680074]
-- [tools] perf tools: Report itrace options in help (Jiri Olsa) [1680074]
-- [tools] perf help: Add missing subcommand `version` (Jiri Olsa) [1680074]
-- [tools] perf tools: Initialize perf_data_file fd field (Jiri Olsa) [1680074]
-- [tools] perf util: Make copyfile_offset() global (Jiri Olsa) [1680074]
-- [tools] perf tools: Add 'struct perf_mmap' arg to record__write() (Jiri Olsa) [1680074]
-- [tools] perf auxtrace: Pass struct perf_mmap into mmap__read* functions (Jiri Olsa) [1680074]
-- [tools] perf tools: Remove perf_tool from event_op3 (Jiri Olsa) [1680074]
-- [tools] perf tools: Remove perf_tool from event_op2 (Jiri Olsa) [1680074]
-- [tools] tools Adopt PTR_ERR_OR_ZERO from the kernel err.h header (Jiri Olsa) [1680074]
-- [tools] perf ordered_events: Prevent crossing max_alloc_size (Jiri Olsa) [1680074]
-- [tools] perf ordered_events: Add 'struct ordered_events_buffer' layer (Jiri Olsa) [1680074]
-- [tools] perf tests: Fix record+probe_libc_inet_pton.sh without ping's debuginfo (Jiri Olsa) [1680074]
-- [tools] perf map: Turn some pr_warning() to pr_debug() (Jiri Olsa) [1680074]
-- [tools] perf annotate: Handle arm64 move instructions (Jiri Olsa) [1680074]
-- [tools] perf trace beauty: Alias 'umount' to 'umount2' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move the display functions to stat-display.c (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'metric_events' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'walltime_*' data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Propagate 'struct target' arg to sort_aggr_thread() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'no_merge' data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'big_num' data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Do not use the global 'evsel_list' in print functions (Jiri Olsa) [1680074]
-- [tools] perf stat: Move *_aggr_* data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move ru_* data to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'print_mixed_hw_group_error' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'print_free_counters_hint' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'null_run' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'walltime_nsecs_stats' pointer to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass 'evlist' to aggr_update_shadow() (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass 'struct perf_stat_config' to first_shadow_cpu() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'metric_only_len' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'run_count' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Use 'evsel->evlist' instead of 'evsel_list' in collect_all_aliases() (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass 'evlist' argument to print functions (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'target' argument to perf_evlist__print_counters() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'unit_width' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'metric_only' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'interval_clear' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move csv_* to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass a 'struct perf_stat_config' argument to global print functions (Jiri Olsa) [1680074]
-- [tools] perf stat: Pass 'struct perf_stat_config' argument to local print functions (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'struct perf_stat_config' argument to perf_evlist__print_counters() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move STAT_RECORD out of perf_evlist__print_counters() (Jiri Olsa) [1680074]
-- [tools] perf stat: Introduce perf_evlist__print_counters() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move perf_stat_synthesize_config() to stat.c (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'perf_event__handler_t' argument to perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'struct perf_evlist' argument to perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'struct perf_tool' argument to perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'struct perf_stat_config' argument to perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Rename 'is_pipe' argument to 'attrs' in perf_stat_synthesize_config() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move create_perf_stat_counter() to stat.c (Jiri Olsa) [1680074]
-- [tools] perf evsel: Introduce perf_evsel__store_ids() (Jiri Olsa) [1680074]
-- [tools] perf tools: Switch 'session' argument to 'evlist' in perf_event__synthesize_attrs() (Jiri Olsa) [1680074]
-- [tools] perf stat: Add 'identifier' flag to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Use local config arg for scale in create_perf_stat_counter() (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'no_inherit' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Move 'initial_delay' to 'struct perf_stat_config' (Jiri Olsa) [1680074]
-- [tools] perf stat: Use evsel->threads in create_perf_stat_counter() (Jiri Olsa) [1680074]
-- [tools] perf trace: Pass augmented args to the arg formatters when available (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Disallow precise_ip on BTS events (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Add generic branch tracing check to intel_pmu_has_bts() (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Move branch tracing setup to the Intel-specific source file (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Fix regression by default disabling perfmon v4 interrupt handling (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel/uncore: Support CoffeeLake 8th CBOX (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Export mem events only if there's PEBS support (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Add quirk for Goldmont Plus (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Add a separate Arch Perfmon v4 PMI handler (Jiri Olsa) [1680074]
-- [x86] perf/x86/intel: Factor out common code of PMI handler (Jiri Olsa) [1680074]
-- [kernel] perf: Suppress AUX/OVERWRITE records (Jiri Olsa) [1680074]
-
-* Thu Mar 21 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1029.el7]
-- [netdrv] ibmvnic: Fix non-atomic memory allocation in IRQ context (Desnes Augusto Nunes do Rosario) [1670667]
-- [netdrv] ibmvnic: Convert reset work item mutex to spin lock (Desnes Augusto Nunes do Rosario) [1670667]
-- [netdrv] ixgbe: fix warning: sysfs: cannot create duplicate filename (Ken Cox) [1688296]
-- [sound] alsa: asoc: intel: hdac_hdmi: add Icelake support (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda: hdmi - add Icelake support (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek - Add support headset mode for New DELL WYSE NB (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek - Add support headset mode for DELL WYSE AIO (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek: merge alc_fixup_headset_jack to alc295_fixup_chromebook (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek - Fixed Headset Mic JD not stable (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/realtek: Enable headset MIC of Acer TravelMate X514-51T with ALC255 (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda/tegra: avoid build error without CONFIG_PM (Jaroslav Kysela) [1517622]
-- [sound] alsa: hda: Avoid NULL pointer dereference at snd_hdac_stream_start() (Jaroslav Kysela) [1517622]
-- [sound] alsa: pcm: Fix function name in kernel-doc comment (Jaroslav Kysela) [1517622]
-- [security] selinux: always allow mounting submounts (Ondrej Mosnacek) [1077929]
-- [security] selinux: policydb: fix byte order and alignment issues (Ondrej Mosnacek) [1636973]
-- [security] selinux: overhaul sidtab to fix bug and improve performance (Ondrej Mosnacek) [1335986]
-- [security] selinux: use separate table for initial SID lookup (Ondrej Mosnacek) [1335986]
-- [security] selinux: refactor sidtab conversion (Ondrej Mosnacek) [1335986]
-- [kernel] audit: ignore fcaps on umount (Richard Guy Briggs) [1570612]
-- [kernel] audit: more filter PATH records keyed on filesystem magic (Richard Guy Briggs) [1570612]
-- [kernel] audit: filter PATH records keyed on filesystem magic (Richard Guy Briggs) [1382513]
-- [kernel] audit: remove unnecessary semicolon in audit_field_valid() (Richard Guy Briggs) [1382513]
-- [firmware] efi: Fix debugobjects warning on 'efi_rts_work' (Bhupesh Sharma) [1537527]
-- [x86] efi/x86: Handle page faults occurring while running EFI runtime services (Bhupesh Sharma) [1537527]
-- [firmware] efi: Make efi_rts_work accessible to efi page fault handler (Bhupesh Sharma) [1537527]
-- [firmware] efi: Use a work queue to invoke EFI Runtime Services (Bhupesh Sharma) [1537527]
-- [x86] efi/x86: Use non-blocking SetVariable() for efi_delete_dummy_variable() (Bhupesh Sharma) [1537527]
-- [firmware] efi: Replace runtime services spinlock with semaphore (Bhupesh Sharma) [1537527]
-- [firmware] efi/runtime-wrappers: Run UEFI Runtime Services with interrupts enabled (Bhupesh Sharma) [1537527]
-- [firmware] efi: runtime-wrapper: Get rid of the rtc_lock spinlock (Bhupesh Sharma) [1537527]
-- [firmware] efi/runtime-wrappers: Remove out of date comment regarding in_nmi() (Bhupesh Sharma) [1537527]
-- [firmware] efi/runtime-wrappers: Add a nonblocking version of QueryVariableInfo() (Bhupesh Sharma) [1537527]
-- [firmware] efi: Delete the in_nmi() conditional runtime locking (Bhupesh Sharma) [1537527]
-- [firmware] efi: Provide a non-blocking SetVariable() operation (Bhupesh Sharma) [1537527]
-- [firmware] efi: Implement mandatory locking for UEFI Runtime Services (Bhupesh Sharma) [1537527]
-- [iommu] amd: Allow to upgrade page-size (Jerry Snitselaar) [1676307]
-- [iommu] amd: Restart loop if cmpxchg64 succeeded in alloc_pte() (Jerry Snitselaar) [1676307]
-- [iommu] amd: Allow downgrading page-sizes in alloc_pte() (Jerry Snitselaar) [1676307]
-- [iommu] amd: Ignore page-mode 7 in free_sub_pt() (Jerry Snitselaar) [1676307]
-- [iommu] amd: Introduce free_sub_pt() function (Jerry Snitselaar) [1676307]
-- [iommu] amd: Collect page-table pages in freelist (Jerry Snitselaar) [1676307]
-- [mm] memcg, slab: simplify synchronization scheme (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: do not schedule cache destruction when last page goes away (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: separate memcg vs root cache creation paths (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: cleanup memcg cache creation (Aaron Tomlin) [1674401]
-- [mm] memcg: remove KMEM_ACCOUNTED_ACTIVATED flag (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: RCU protect memcg_params for root caches (Aaron Tomlin) [1674401]
-- [mm] slab: do not panic if we fail to create memcg cache (Aaron Tomlin) [1674401]
-- [mm] memcg: get rid of kmem_cache_dup() (Aaron Tomlin) [1674401]
-- [mm] memcg: fix possible NULL deref while traversing memcg_slab_caches list (Aaron Tomlin) [1674401]
-- [mm] memcg, slab: fix barrier usage when accessing memcg_caches (Aaron Tomlin) [1674401]
-- [mm] slab: clean up kmem_cache_create_memcg() error handling (Aaron Tomlin) [1674401]
-- [mm] memcg, kmem: use cache_from_memcg_idx instead of hard code (Aaron Tomlin) [1674401]
-- [mm] memcg, kmem: rename cache_from_memcg to cache_from_memcg_idx (Aaron Tomlin) [1674401]
-- [mm] memcg: make memcg_update_cache_sizes() static (Aaron Tomlin) [1674401]
-- [mm] memcg: fix kmem_account_flags check in memcg_can_account_kmem() (Aaron Tomlin) [1674401]
-- [powerpc] lib: fix book3s/32 boot failure due to code patching (Desnes Augusto Nunes do Rosario) [1637841]
-- [powerpc] Avoid code patching freed init sections (Desnes Augusto Nunes do Rosario) [1637841]
-- [kernel] asm/sections: add helpers to check for section data (Desnes Augusto Nunes do Rosario) [1637841]
-- [powerpc] lib/feature-fixups: use raw_patch_instruction() (Desnes Augusto Nunes do Rosario) [1637841]
-- [powerpc] lib/code-patching: refactor patch_instruction() (Desnes Augusto Nunes do Rosario) [1637841]
-- [powerpc] lib/code-patching: Use alternate map for patch_instruction() (Desnes Augusto Nunes do Rosario) [1637841]
-- [x86] intel_rdt: Show missing resctrl mount options (David Arcari) [1689045]
-- [x86] acpi: Prevent LAPIC id 0xff from being accounted (David Arcari) [1688286]
-
-* Wed Mar 20 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1028.el7]
-- [infiniband] rdma/bnxt_re: fix or'ing of data into an uninitialized struct member (Selvin Xavier) [1643182]
-- [netdrv] rdma/bnxt_en: Enable RDMA driver support for 57500 chip (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Update kernel user abi to pass chip context (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Add extended psn structure for 57500 adapters (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Enable GSI QP support for 57500 series (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Skip backing store allocation for 57500 series (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Add 64bit doorbells for 57500 series (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Add chip context to identify 57500 series (Selvin Xavier) [1643182]
-- [infiniband] rdma/bnxt_re: Query HWRM Interface version from FW (Selvin Xavier) [1643182]
-- [netdrv] qed: Fix iWARP syn packet mac address validation (Manish Chopra) [1682918]
-- [netdrv] qed: Fix iWARP buffer size provided for syn packet processing (Manish Chopra) [1682918]
-- [netdrv] qed: Read device port count from the shmem (Manish Chopra) [1682918]
-- [netdrv] qede: Add missing checks for tunnel enablement (Manish Chopra) [1682918]
-- [netdrv] qede: Add missing ndos initialization for VFs (Manish Chopra) [1682918]
-- [netdrv] qed: Fix EQ full firmware assert (Manish Chopra) [1682918]
-- [netdrv] qed: Consider TX tcs while deriving the max num_queues for PF (Manish Chopra) [1682918]
-- [netdrv] qede: Add ethtool interface for SmartAN query (Manish Chopra) [1682918]
-- [netdrv] qed*: Advance drivers version to 8.37.0.20 (Manish Chopra) [1682918]
-- [netdrv] qed: Add API for SmartAN query (Manish Chopra) [1682918]
-- [netdrv] qede: Fix system crash on configuring channels (Manish Chopra) [1682918]
-- [netdrv] qed: Assign UFP TC value to vlan priority in UFP mode (Manish Chopra) [1682918]
-- [netdrv] qed: fix indentation issue with statements in an if-block (Manish Chopra) [1682918]
-- [netdrv] qed: Change verbosity for coalescing message (Manish Chopra) [1682918]
-- [netdrv] bnx2x: Remove set but not used variable 'mfw_vn' (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Use struct_size() in kzalloc() (Manish Chopra) [1673194]
-- [netdrv] broadcom: Mark expected switch fall-throughs (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Bump up driver version to 1.713.36 (Manish Chopra) [1673194]
-- [netdrv] bnx2x: fix various indentation issues (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Fix NULL pointer dereference in bnx2x_del_all_vlans() on some hw (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Send update-svid ramrod with retry/poll flags enabled (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Enable PTP only on the PF that initializes the port (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Remove configured vlans as part of unload sequence (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Clear fip MAC when fcoe offload support is disabled (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Add storm FW version to ethtool driver query output (Manish Chopra) [1673194]
-- [netdrv] bnx2x: Add MBI version to ethtool driver query output (Manish Chopra) [1673194]
-- [netdrv] remove <net/busy_poll.h> inclusion when not needed (Manish Chopra) [1673194]
-- [netdrv] bnx2x: remove ndo_poll_controller (Manish Chopra) [1673194]
-- [netdrv] ixgbe: fix older devices that do not support IXGBE_MRQC_L3L4TXSWEN (Ken Cox) [1648746]
-- [cpufreq] intel_pstate: Add base_frequency attribute (Prarit Bhargava) [1648208]
-- [acpi] cppc: Add support for guaranteed performance (Prarit Bhargava) [1648208]
-- [idle] intel_idle: add support for Jacobsville (Steve Best) [1481749]
-- [x86] xen/qspinlock: Don't kick CPU if IRQ is not initialized (Vitaly Kuznetsov) [1681468]
-- [xen] grant-table: Use put_page instead of free_page (Vitaly Kuznetsov) [1545022]
-- [iommu] hyper-v: Add Hyper-V stub IOMMU driver (Vitaly Kuznetsov) [1661654]
-- [x86] hyper-v: Set x2apic destination mode to physical when x2apic is available (Vitaly Kuznetsov) [1661654]
-- [x86] hyper-v: Consolidate code for converting cpumask to vpset (Vitaly Kuznetsov) [1661654]
-- [x86] hyper-v: Fix the circular dependency in IPI enlightenment (Vitaly Kuznetsov) [1661654]
-- [pci] hv: Refactor hv_irq_unmask() to use cpumask_to_vpset() (Vitaly Kuznetsov) [1661654]
-- [pci] hv: Replace hv_vp_set with hv_vpset (Vitaly Kuznetsov) [1661654]
-- [pci] hv: Add __aligned(8) to struct retarget_msi_interrupt (Vitaly Kuznetsov) [1661654]
-- [x86] intel_rdt/mba_sc: Feedback loop to dynamically update mem bandwidth (Prarit Bhargava) [1620320]
-- [x86] intel_rdt/mba_sc: Prepare for feedback loop (Prarit Bhargava) [1620320]
-- [x86] intel_rdt/mba_sc: Add schemata support (Prarit Bhargava) [1620320]
-- [x86] intel_rdt/mba_sc: Add initialization support (Prarit Bhargava) [1620320]
-- [x86] intel_rdt/mba_sc: Enable/disable MBA software controller (Prarit Bhargava) [1620320]
-- [documentation] x86/intel_rdt/mba_sc: Documentation for MBA software controller(mba_sc) (Prarit Bhargava) [1620320]
-
-* Wed Mar 20 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1027.el7]
-- [fs] smb3: on kerberos mount if server doesn't specify auth type use krb5 (Leif Sahlberg) [1679395]
-- [fs] nfs: nfs_compare_mount_options always compare auth flavors (Steve Dickson) [1661620]
-- [fs] vfs: fix check for fallocate on active swapfile (Lukas Czerner) [1671293]
-- [fs] fs: prevent doing FALLOC_FL_ZERO_RANGE on append only file (Lukas Czerner) [1671293]
-- [fs] ext4: avoid kernel warning when writing the superblock to a dead device (Lukas Czerner) [1671293]
-- [fs] ext4: missing unlock/put_page() in ext4_try_to_write_inline_data() (Lukas Czerner) [1671293]
-- [fs] ext4: fix possible use after free in ext4_quota_enable (Lukas Czerner) [1671293]
-- [fs] ext4: fix buffer leak in __ext4_read_dirblock() on error path (Lukas Czerner) [1671293]
-- [fs] ext4: release bs.bh before re-using in ext4_xattr_block_find() (Lukas Czerner) [1671293]
-- [fs] ext4: fix possible leak of sbi->s_group_desc_leak in error path (Lukas Czerner) [1671293]
-- [fs] ext4: avoid possible double brelse() in add_new_gdb() on error path (Lukas Czerner) [1671293]
-- [fs] ext4: avoid buffer leak in ext4_orphan_add() after prior errors (Lukas Czerner) [1671293]
-- [fs] ext4: fix possible inode leak in the retry loop of ext4_resize_fs() (Lukas Czerner) [1671293]
-- [fs] ext4: fix missing cleanup if ext4_alloc_flex_bg_array() fails while resizing (Lukas Czerner) [1671293]
-- [fs] ext4: add missing brelse() update_backups()'s error path (Lukas Czerner) [1671293]
-- [fs] ext4: add missing brelse() in set_flexbg_block_bitmap()'s error path (Lukas Czerner) [1671293]
-- [fs] ext4: avoid potential extra brelse in setup_new_flex_group_blocks() (Lukas Czerner) [1671293]
-- [fs] ext4: initialize retries variable in ext4_da_write_inline_data_begin() (Lukas Czerner) [1671293]
-- [fs] ext4, dax: set ext4_dax_aops for dax files (Lukas Czerner) [1671293]
-- [fs] ext4, dax: add ext4_bmap to ext4_dax_aops (Lukas Czerner) [1671293]
-- [fs] ext4: don't mark mmp buffer head dirty (Lukas Czerner) [1671293]
-- [fs] ext4: fix online resizing for bigalloc file systems with a 1k block size (Lukas Czerner) [1671293]
-- [fs] ext4: fix online resize's handling of a too-small final block group (Lukas Czerner) [1671293]
-- [fs] ext4: recalucate superblock checksum after updating free blocks/inodes (Lukas Czerner) [1671293]
-- [fs] ext4: avoid arithemetic overflow that can trigger a BUG (Lukas Czerner) [1671293]
-- [fs] ext4: avoid divide by zero fault when deleting corrupted inline directories (Lukas Czerner) [1671293]
-- [fs] ext4: check to make sure the rename(2)'s destination is not freed (Lukas Czerner) [1671293]
-- [fs] ext4: fix spectre gadget in ext4_mb_regular_allocator() (Lukas Czerner) [1671293]
-- [fs] ext4: limit xattr size to INT_MAX (Lukas Czerner) [1671293]
-- [fs] ext4: check for NUL characters in extended attribute's name (Lukas Czerner) [1671293]
-- [fs] ext4: correctly detect when an xattr value has an invalid size (Lukas Czerner) [1671293]
-- [fs] ext4: Check that external xattr value block is zero (Lukas Czerner) [1671293]
-- [fs] ext4: reset error code in ext4_find_entry in fallback (Lukas Czerner) [1671293]
-- [fs] ext4: fix quota inconsistency during orphan cleanup for read-only mounts (Lukas Czerner) [1671293]
-- [fs] ext4: force revalidation of directory pointer after seekdir(2) (Lukas Czerner) [1671293]
-- [fs] ext4: fix offset overflow on 32-bit archs in ext4_iomap_begin() (Lukas Czerner) [1671293]
-- [fs] jbd2: if the journal is aborted then don't allow update of the log tail (Lukas Czerner) [1671293]
-- [fs] ext4: save error to disk in __ext4_grp_locked_error() (Lukas Czerner) [1671293]
-- [fs] ext4: fix a race in the ext4 shutdown path (Lukas Czerner) [1671293]
-- [fs] ext4: fix crash when a directory's i_size is too small (Lukas Czerner) [1671293]
-- [fs] ext4: fix fdatasync(2) after fallocate(2) operation (Lukas Czerner) [1671293]
-- [fs] ext4: fix incorrect quotaoff if the quota feature is enabled (Lukas Czerner) [1671293]
-- [fs] ext4: fix overflow caused by missing cast in ext4_resize_fs() (Lukas Czerner) [1671293]
-- [fs] ext4: fix fdatasync(2) after extent manipulation operations (Lukas Czerner) [1671293]
-- [fs] ext4: keep existing extra fields when inode expands (Lukas Czerner) [1671293]
-- [fs] ext4: clear lockdep subtype for quota files on quota off (Lukas Czerner) [1671293]
-- [fs] ext4: Set flags on quota files directly (Lukas Czerner) [1671293]
-- [fs] ext4: evict inline data when writing to memory map (Lukas Czerner) [1671293]
-- [fs] ext4: mark inode dirty after converting inline directory (Lukas Czerner) [1671293]
-- [fs] ext4: don't lock buffer in ext4_commit_super if holding spinlock (Lukas Czerner) [1671293]
-- [fs] ext4: clean up error handling when orphan list is corrupted (Lukas Czerner) [1671293]
-- [fs] ext4: fix crashes in dioread_nolock mode (Lukas Czerner) [1671293]
-- [fs] ext4: fix potential integer overflow (Lukas Czerner) [1671293]
-- [fs] dcache: Add negative dentries to LRU tail (Waiman Long) [1466038]
-- [fs] documentation: Fix grammatical error in sysctl/fs.txt & clarify negative dentry (Waiman Long) [1466038]
-- [fs] dcache: Track & report number of negative dentries (Waiman Long) [1466038]
-- [fs] dcache: convert dentry_stat.nr_unused to per-cpu counters (Waiman Long) [1466038]
-- [fs] bump inode and dentry counters to long (Waiman Long) [1466038]
-
-* Tue Mar 19 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1026.el7]
-- [usb] fix the usbfs flag sanitization for control transfers (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: Added support for Gemalto's Cinterion ALASxx WWAN interface (Torez Smith) [1657401]
-- [usb] xhci: pci: Enable Intel USB role mux on Apollo Lake platforms (Torez Smith) [1657401]
-- [usb] roles: intel_xhci: Fix Unbalanced pm_runtime_enable (Torez Smith) [1657401]
-- [usb] cdc-acm: correct counting of UART states in serial state notification (Torez Smith) [1657401]
-- [usb] cdc-acm: do not reset notification buffer index upon urb unlinking (Torez Smith) [1657401]
-- [usb] cdc-acm: fix race between reset and control messaging (Torez Smith) [1657401]
-- [usb] usbip: fix bug: kasan: slab-out-of-bounds in vhci_hub_control() (Torez Smith) [1657401]
-- [netdrv] usb: cancel pending work when unbinding smsc75xx (Torez Smith) [1657401]
-- [usb] xhci-mtk: resume USB3 roothub first (Torez Smith) [1657401]
-- [usb] xhci: Add missing CAS workaround for Intel Sunrise Point xHCI (Torez Smith) [1657401]
-- [usb] cdc_acm: Do not leak URB buffers (Torez Smith) [1657401]
-- [netdrv] smsc95xx: Check for Wake-on-LAN modes (Torez Smith) [1657401]
-- [netdrv] smsc75xx: Check for Wake-on-LAN modes (Torez Smith) [1657401]
-- [netdrv] r8152: Check for supported Wake-on-LAN Modes (Torez Smith) [1657401]
-- [netdrv] sr9800: Check for supported Wake-on-LAN modes (Torez Smith) [1657401]
-- [netdrv] ax88179_178a: Check for supported Wake-on-LAN modes (Torez Smith) [1657401]
-- [netdrv] asix: Check for supported Wake-on-LAN modes (Torez Smith) [1657401]
-- [usb] serial: simple: add Motorola Tetra MTP6550 id (Torez Smith) [1657401]
-- [usb] typec: mux: Take care of driver module reference counting (Torez Smith) [1657401]
-- [usb] core: safely deal with the dynamic quirk lists (Torez Smith) [1657401]
-- [usb] roles: Take care of driver module reference counting (Torez Smith) [1657401]
-- [usb] handle NULL config in usb_find_alt_setting() (Torez Smith) [1657401]
-- [usb] fix error handling in usb_driver_claim_interface() (Torez Smith) [1657401]
-- [usb] remove LPM management from usb_driver_claim_interface() (Torez Smith) [1657401]
-- [usb] usbdevfs: restore warning for nonsensical flags (Torez Smith) [1657401]
-- [usb] usbdevfs: sanitize flags more (Torez Smith) [1657401]
-- [usb] revert "usb: cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt()" (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: set DTR for modems in forced USB2 mode (Torez Smith) [1657401]
-- [usb] serial: option: add two-endpoints device-id flag (Torez Smith) [1657401]
-- [usb] serial: option: improve Quectel EP06 detection (Torez Smith) [1657401]
-- [usb] revert "cdc-acm: implement put_char() and flush_chars()" (Torez Smith) [1657401]
-- [usb] xhci: fix interrupt transfer error happened on MTK platforms (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: Support dynamic config on Quectel EP06 (Torez Smith) [1657401]
-- [usb] cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt() (Torez Smith) [1657401]
-- [usb] misc: uss720: Fix two sleep-in-atomic-context bugs (Torez Smith) [1657401]
-- [usb] Avoid use-after-free by flushing endpoints early in usb_set_interface() (Torez Smith) [1657401]
-- [usb] typec: fix kernel-doc notation warning for typec_match_altmode (Torez Smith) [1657401]
-- [usb] Don't die twice if PCI xhci host is not responding in resume (Torez Smith) [1657401]
-- [usb] uas: add support for more quirk flags (Torez Smith) [1657401]
-- [usb] Add quirk to support DJI CineSSD (Torez Smith) [1657401]
-- [usb] typec: fix kernel-doc parameter warning (Torez Smith) [1657401]
-- [usb] yurex: Check for truncation in yurex_read() (Torez Smith) [1657401]
-- [usb] yurex: Fix buffer over-read in yurex_write() (Torez Smith) [1657401]
-- [usb] xhci: Fix use after free for URB cancellation on a reallocated endpoint (Torez Smith) [1657401]
-- [usb] add quirk for WORLDE Controller KS49 or Prodipe MIDI 49C USB controller (Torez Smith) [1657401]
-- [usb] serial: ti_usb_3410_5052: fix array underflow in completion handler (Torez Smith) [1657401]
-- [usb] serial: io_ti: fix array underflow in completion handler (Torez Smith) [1657401]
-- [netdrv] r8152: disable RX aggregation on new Dell TB16 dock (Torez Smith) [1657401]
-- [netdrv] net/usb/r8152: remove the unneeded variable "ret" in rtl8152_system_suspend (Torez Smith) [1657401]
-- [usb] serial: pl2303: add a new device id for ATEN (Torez Smith) [1657401]
-- [usb] option: add support for DW5821e (Torez Smith) [1657401]
-- [netdrv] usb: sr9700: Replace mdelay() with msleep() in sr9700_bind() (Torez Smith) [1657401]
-- [netdrv] usb: pegasus: Replace mdelay() with msleep() in setup_pegasus_II() (Torez Smith) [1657401]
-- [media] uvcvideo: Handle control pipe protocol STALLs (Torez Smith) [1657401]
-- [media] uvcvideo: Remove a redundant check (Torez Smith) [1657401]
-- [media] uvcvideo: Fix minor spelling (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: fix interface number for DW5821e production firmware (Torez Smith) [1657401]
-- [usb] usbtmc: Add support for 32 bit compat applications (Torez Smith) [1657401]
-- [usb] core: handle hub C_PORT_OVER_CURRENT condition (Torez Smith) [1657401]
-- [usb] usbtmc: Add ioctl for termination character (Torez Smith) [1657401]
-- [usb] usbtmc: Add ioctl for EOM bit (Torez Smith) [1657401]
-- [usb] usbtmc: Add ioctl for trigger (Torez Smith) [1657401]
-- [usb] usbtmc: Add ioctls to set/get usb timeout (Torez Smith) [1657401]
-- [usb] usbtmc: use consistent timeout error (Torez Smith) [1657401]
-- [usb] usbtmc: Support Read Status Byte with SRQ per file (Torez Smith) [1657401]
-- [usb] xhci: Fix memory leak in xhci_endpoint_reset() (Torez Smith) [1657401]
-- [usb] typec: tcpm: Fix sink PDO starting index for PPS APDO selection (Torez Smith) [1657401]
-- [netdrv] usb: asix: replace mii_nway_restart in resume path (Torez Smith) [1657401]
-- [usb] serial: cp210x: make line-speed quantisation data driven (Torez Smith) [1657401]
-- [netdrv] usb: rtl8150: demote allmulti message to dev_dbg() (Torez Smith) [1657401]
-- [netdrv] usb: hso: use swap macro in hso_kick_transmit (Torez Smith) [1657401]
-- [usb] serial: iuu_phoenix: drop redundant input-speed re-encoding (Torez Smith) [1657401]
-- [usb] serial: iuu_phoenix: drop unused driver-data baud rate (Torez Smith) [1657401]
-- [usb] serial: mos7720: remove redundant variables iflag, mask and serial (Torez Smith) [1657401]
-- [usb] cdc_acm: Add quirk for Castles VEGA3000 (Torez Smith) [1657401]
-- [usb] host: ehci-sched: remove redundant pointer dev (Torez Smith) [1657401]
-- [usb] host: whci: remove redundant variable t (Torez Smith) [1657401]
-- [usb] xhci: dbc: remove redundant pointer dbc (Torez Smith) [1657401]
-- [usb] usb-misc: sisusbvga: remove redundant variable modey (Torez Smith) [1657401]
-- [usb] misc: uss720: remove redundant pointer usbdev (Torez Smith) [1657401]
-- [usb] usbip: remove redundant pointer ep (Torez Smith) [1657401]
-- [usb] serial: kl5kusb105: remove KLSI device id (Torez Smith) [1657401]
-- [usb] yurex: fix out-of-bounds uaccess in read handler (Torez Smith) [1657401]
-- [usb] typec: avoid format-overflow warning (Torez Smith) [1657401]
-- [usb] typec: unlock dp->lock on error exit path, and also zero ret if successful (Torez Smith) [1657401]
-- [usb] typec: fix dereference before null check on adev (Torez Smith) [1657401]
-- [usb] usbtest: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] quirks: add delay quirks for Corsair Strafe (Torez Smith) [1657401]
-- [usb] xhci: xhci-mem: off by one in xhci_stream_id_to_ring() (Torez Smith) [1657401]
-- [usb] serial: kobil_sct: add missing version error handling (Torez Smith) [1657401]
-- [usb] serial: kobil_sct: fix modem-status error handling (Torez Smith) [1657401]
-- [usb] serial: mos7840: fix status-register error handling (Torez Smith) [1657401]
-- [usb] serial: keyspan_pda: fix modem-status error handling (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: add support for Quectel EG91 (Torez Smith) [1657401]
-- [usb] serial: cp210x: add another USB ID for Qivicon ZigBee stick (Torez Smith) [1657401]
-- [usb] serial: ch341: fix type promotion bug in ch341_control_in() (Torez Smith) [1657401]
-- [netdrv] smsc75xx: Add workaround for gigabit link up hardware errata (Torez Smith) [1657401]
-- [netdrv] usb: asix: allow optionally getting mac address from device tree (Torez Smith) [1657401]
-- [usb] typec: fsusb302: Drop empty set_current_limit implementation (Torez Smith) [1657401]
-- [usb] mark expected switch fall-throughs (Torez Smith) [1657401]
-- [usb] wusbcore: security: cast sizeof to int for comparison (Torez Smith) [1657401]
-- [usb] typec: tcpm: Support for Alternate Modes (Torez Smith) [1657401]
-- [usb] typec: pi3usb30532: Start using generic state values (Torez Smith) [1657401]
-- [usb] typec: Add driver for DisplayPort alternate mode (Torez Smith) [1657401]
-- [usb] typec: Bus type for alternate modes (Torez Smith) [1657401]
-- [usb] typec: Register a device for every mode (Torez Smith) [1657401]
-- [usb] typec: mux: Get the mux identifier from function parameter (Torez Smith) [1657401]
-- [usb] typec: tcpm: Correctly report power_supply current and voltage for non pd supply (Torez Smith) [1657401]
-- [usb] xhci: dbc: Don't decrement runtime PM counter if DBC is not started (Torez Smith) [1657401]
-- [usb] update for tcpci drivers moving out of staging (Torez Smith) [1657401]
-- [netdrv] usb: Mark expected switch fall-throughs (Torez Smith) [1657401]
-- [usb] typec: function for checking cable plug orientation (Torez Smith) [1657401]
-- [kernel] usb: pd: include kernel.h (Torez Smith) [1657401]
-- [usb] typec: tcpci: move tcpci drivers out of staging (Torez Smith) [1657401]
-- [usb] typec: tcpm: add starting value for drp toggling (Torez Smith) [1657401]
-- [usb] typec: tcpm: support get typec and pd config from device properties (Torez Smith) [1657401]
-- [usb] typec: add API to get typec basic port power and data config (Torez Smith) [1657401]
-- [kernel] usb: typec: add fwnode to tcpc (Torez Smith) [1657401]
-- [usb] typec: tps6598x: Remove VLA usage (Torez Smith) [1657401]
-- [usb] cdc-wdm: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] cdc-wdm: don't enable interrupts in USB-giveback (Torez Smith) [1657401]
-- [usb] legousbtower: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] ldusb: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] iowarrior: remove intr_idx_lock (Torez Smith) [1657401]
-- [usb] adutux: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] wusbcore: remove excessive irqsave (Torez Smith) [1657401]
-- [usb] usb-skeleton: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] usblp: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] usbfs: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] core: use irqsave() in sg_complete() complete callback (Torez Smith) [1657401]
-- [usb] cdc-acm: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] host: ehci-npcm7xx: Fix some error codes in probe (Torez Smith) [1657401]
-- [usb] serial: digi_acceleport: rename tty flag variable (Torez Smith) [1657401]
-- [usb] serial: usb_wwan: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: ti_usb_3410_5052: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: symbolserial: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: sierra: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: sierra: fix potential deadlock at close (Torez Smith) [1657401]
-- [usb] serial: quatech2: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: mos7840: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: mos7720: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: io_ti: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: io_edgeport: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: digi_acceleport: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [usb] serial: cyberjack: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] r8152: napi hangup fix after disconnect (Torez Smith) [1657401]
-- [usb] usb host: Add USB ehci support for nuvoton npcm7xx platform (Torez Smith) [1657401]
-- [usb] cdc-acm: Decrement tty port's refcount if probe() fail (Torez Smith) [1657401]
-- [usb] mon: use ktime_get_real_ts64 instead of getnstimeofday64 (Torez Smith) [1657401]
-- [usb] xhci-hcd: Add get_resuming_ports method (Torez Smith) [1657401]
-- [usb] ehci-hcd: Add get_resuming_ports method (Torez Smith) [1657401]
-- [usb] Report wakeup events on root-hub ports (Torez Smith) [1657401]
-- [usb] typec: tcpm: fix logbuffer index is wrong if _tcpm_log is re-entered (Torez Smith) [1657401]
-- [usb] typec: tcpm: Fix a msecs vs jiffies bug (Torez Smith) [1657401]
-- [usb] cdc_acm: Add quirk for Uniden UBC125 scanner (Torez Smith) [1657401]
-- [usb] typec: ucsi: Fix for incorrect status data issue (Torez Smith) [1657401]
-- [usb] xhci: increase CRS timeout value (Torez Smith) [1657401]
-- [usb] xhci: tegra: fix runtime PM error handling (Torez Smith) [1657401]
-- [usb] xhci: remove the code build warning (Torez Smith) [1657401]
-- [usb] xhci: Fix kernel oops in trace_xhci_free_virt_device (Torez Smith) [1657401]
-- [usb] xhci: Fix perceived dead host due to runtime suspend race with event handler (Torez Smith) [1657401]
-- [usb] serial: cast sizeof() to int when comparing with error code (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: add support for the Dell Wireless 5821e module (Torez Smith) [1657401]
-- [netdrv] usb: rtl8150: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb: r8152: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb: kaweth: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb: hso: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb: cdc-phonet: use irqsave() in USB's complete callback (Torez Smith) [1657401]
-- [netdrv] usb/drivers: Remove useless hrtimer_active check (Torez Smith) [1657401]
-- [usb] serial: cp210x: add CESINEL device ids (Torez Smith) [1657401]
-- [usb] serial: cp210x: add Silicon Labs IDs for Windows Update (Torez Smith) [1657401]
-- [netdrv] cdc_ncm: avoid padding beyond end of skb (Torez Smith) [1657401]
-- [media] uvcvideo: Prevent setting unavailable flags (Torez Smith) [1657401]
-- [netdrv] usb: cdc_mbim: add flag FLAG_SEND_ZLP (Torez Smith) [1657401]
-- [usb] revert "xhci: Reset Renesas uPD72020x USB controller for 32-bit DMA issue" (Torez Smith) [1657401]
-- [usb] xhci: Add quirk to zero 64bit registers on Renesas PCIe controllers (Torez Smith) [1657401]
-- [usb] xhci: Allow more than 32 quirks (Torez Smith) [1657401]
-- [usb] xhci: force all memory allocations to node (Torez Smith) [1657401]
-- [usb] typec: fsusb302: no need to check return value of debugfs_create_dir() (Torez Smith) [1657401]
-- [usb] core: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] ehci-hcd: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] ohci: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] uhci: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] mon: no need to check return value of debugfs_create functions (Torez Smith) [1657401]
-- [usb] typec: tcpm: no need to check return value of debugfs_create_dir() (Torez Smith) [1657401]
-- [usb] hub: Per-port setting to reduce TRSTRCY to 10 ms (Torez Smith) [1657401]
-- [usb] hub: Per-port setting to use old enumeration scheme (Torez Smith) [1657401]
-- [usb] xhci: tegra: Fix runtime PM support (Torez Smith) [1657401]
-- [usb] core: message: remove extra endianness conversion in usb_set_isoch_delay (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: Add Netgear Aircard 779S (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: apply SET_DTR quirk to the SIMCOM shared device ID (Torez Smith) [1657401]
-- [usb] xhci: tegra: Add support for managing powergates (Torez Smith) [1657401]
-- [usb] xhci: tegra: Add runtime PM support (Torez Smith) [1657401]
-- [usb] xhci: tegra: Prepare for adding runtime PM support (Torez Smith) [1657401]
-- [usb] usb-storage: Add compatibility quirk flags for G-Technologies G-Drive (Torez Smith) [1657401]
-- [usb] usb-storage: Add support for FL_ALWAYS_SYNC flag in the UAS driver (Torez Smith) [1657401]
-- [usb] typec: wcove: Remove dependency on HW FSM (Torez Smith) [1657401]
-- [usb] roles: intel_xhci: Enable runtime PM (Torez Smith) [1657401]
-- [usb] typec: fusb302: Fix debugfs issue (Torez Smith) [1657401]
-- [usb] roles: intel_xhci: Always allow user control (Torez Smith) [1657401]
-- [usb] typec: Fix htmldocs warning (Torez Smith) [1657401]
-- [usb] typec: tcpm: Provide fwnode pointer as part of psy_cfg (Torez Smith) [1657401]
-- [usb] xhci: debugfs: add debugfs interface to enable compliance mode for a port (Torez Smith) [1657401]
-- [usb] xhci: debugfs: add usb ports to xhci debugfs (Torez Smith) [1657401]
-- [usb] xhci: xhci-mem: remove port_arrays and the code initializing them (Torez Smith) [1657401]
-- [usb] xhci-mtk: use xhci hub structures to get number of ports in roothubs (Torez Smith) [1657401]
-- [usb] xhci: xhci-hub: use port structure members instead of xhci_get_ports() (Torez Smith) [1657401]
-- [usb] xhci: use port structures instead of port arrays in xhci.c functions (Torez Smith) [1657401]
-- [usb] xhci: change xhci_test_and_clear_bit() to use new port structure (Torez Smith) [1657401]
-- [usb] xhci: change xhci_set_link_state() to work with port structures (Torez Smith) [1657401]
-- [usb] xhci: rename faked_port_index to hcd_portnum (Torez Smith) [1657401]
-- [usb] xhci: xhci-ring: use port structures for port event handler (Torez Smith) [1657401]
-- [usb] xhci: xhci-hub: use new port structures for cas and wake mask functions (Torez Smith) [1657401]
-- [usb] xhci: xhci-hub: use new port structures to get port address instead of port array (Torez Smith) [1657401]
-- [usb] xhci: Add helper to get xhci roothub from hcd (Torez Smith) [1657401]
-- [usb] xhci: set hcd pointers for xhci usb2 and usb3 roothub structures (Torez Smith) [1657401]
-- [usb] xhci: Create new structures to store xhci port information (Torez Smith) [1657401]
-- [usb] xhci: hisilicon: support HiSilicon STB xHCI host controller (Torez Smith) [1657401]
-- [usb] xhci: dbc: Add SPDX identifiers to dbc files (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: clean up flow control management (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: drop unnecessary urb_ variable prefixes (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: use non-underscore fixed types (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: fix IXON/IXOFF mixup (Torez Smith) [1657401]
-- [usb] usbtmc: Remove rigol_quirk (Torez Smith) [1657401]
-- [usb] serial: use tty_port_register_device() (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: fix bad unlock balance during stub_probe() (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: fix NULL-ptr deref and use-after-free errors (Torez Smith) [1657401]
-- [usb] xhci: Fix USB3 NULL pointer dereference at logical disconnect (Torez Smith) [1657401]
-- [usb] revert "usb: host: ehci: Use dma_pool_zalloc()" (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: run rebind from exit when module is removed (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: delete device from busid_table after rebind (Torez Smith) [1657401]
-- [usb] typec: tps6598x: handle block reads separately with plain-I2C adapters (Torez Smith) [1657401]
-- [usb] typec: tcpm: Release the role mux when exiting (Torez Smith) [1657401]
-- [usb] Accept bulk endpoints with 1024-byte maxpacket (Torez Smith) [1657401]
-- [usb] xhci: Fix use-after-free in xhci_free_virt_device (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: do not steal interfaces from class drivers (Torez Smith) [1657401]
-- [usb] serial: visor: handle potential invalid device configuration (Torez Smith) [1657401]
-- [usb] serial: option: adding support for ublox R410M (Torez Smith) [1657401]
-- [usb] serial: option: blacklist unused dwm-158 interfaces (Torez Smith) [1657401]
-- [usb] typec: tcpm: Fix incorrect 'and' operator (Torez Smith) [1657401]
-- [usb] usb-misc: sisusbvga: fix spelling mistake: "asymmeric" -> "asymmetric" (Torez Smith) [1657401]
-- [netdrv] usb: qmi_wwan: add support for ublox R410M PID 0x90b2 (Torez Smith) [1657401]
-- [usb] typec: tcpm: fix compiler warning about stupid things (Torez Smith) [1657401]
-- [usb] typec: tcpm: Add support for sink PPS related messages (Torez Smith) [1657401]
-- [usb] typec: tcpm: Represent source supply through power_supply (Torez Smith) [1657401]
-- [usb] typec: tcpm: Add core support for sink side PPS (Torez Smith) [1657401]
-- [usb] do not reset if a low-speed or full-speed device timed out (Torez Smith) [1657401]
-- [usb] core: hcd: mark expected switch fall-through (Torez Smith) [1657401]
-- [usb] USB 3.2 Add sysfs entries for a usb device rx_lanes and tx_lanes (Torez Smith) [1657401]
-- [usb] show USB 3.2 Dual-lane devices as Gen Xx2 during device enumeration (Torez Smith) [1657401]
-- [usb] set root hub lane counts (Torez Smith) [1657401]
-- [usb] Add support to store lane count used by USB 3.2 (Torez Smith) [1657401]
-- [usb] define HCD_USB32 speed option for hosts that support USB 3.2 dual-lane (Torez Smith) [1657401]
-- [usb] typec: tcpm: remove max_snk_mv/ma/mw (Torez Smith) [1657401]
-- [usb] typec: wcove: remove max_snk_* for sink config (Torez Smith) [1657401]
-- [usb] typec: fusb302: remove max_snk_* for sink config (Torez Smith) [1657401]
-- [usb] typec: tcpm: pdo matching optimization (Torez Smith) [1657401]
-- [usb] hub: Don't wait for connect state at resume for powered-off ports (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: refine probe and disconnect debug msgs to be useful (Torez Smith) [1657401]
-- [usb] storage: Replace mdelay with msleep in init_freecom (Torez Smith) [1657401]
-- [kernel] usb: audio-v2: Correct the comment for struct uac_clock_selector_descriptor (Torez Smith) [1657401]
-- [usb] roles: Fix potential NULL dereference in intel_xhci_usb_probe() (Torez Smith) [1657401]
-- [usb] xhci: Fix Kernel oops in xhci dbgtty (Torez Smith) [1657401]
-- [usb] select USB_COMMON for usb role switch config (Torez Smith) [1657401]
-- [usb] core: Add quirk for HP v222w 16GB Mini (Torez Smith) [1657401]
-- [usb] typec: ucsi: fix tracepoint related build error (Torez Smith) [1657401]
-- [usb] usbip: usbip_event: fix to not print kernel pointer address (Torez Smith) [1657401]
-- [usb] usbip: usbip_host: fix to hold parent lock for device_attach() calls (Torez Smith) [1657401]
-- [usb] usbip: vhci_hcd: Fix usb device and sockfd leaks (Torez Smith) [1657401]
-- [usb] usbip: vhci_hcd: check rhport before using in vhci_hub_control() (Torez Smith) [1657401]
-- [usb] Increment wakeup count on remote wakeup (Torez Smith) [1657401]
-- [usb] host: xhci-plat: Fix clock resource by adding a register clock (Torez Smith) [1657401]
-- [usb] xhci: Fix USB ports for Dell Inspiron 5775 (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: add Wistron Neweb D19Q1 (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: use jtag quirk for Arrow USB Blaster (Torez Smith) [1657401]
-- [usb] serial: cp210x: add ID for NI USB serial console (Torez Smith) [1657401]
-- [usb] serial: simple: add libtransistor console (Torez Smith) [1657401]
-- [netdrv] cdc_ether: flag the Cinterion AHS8 modem by gemalto as WWAN (Torez Smith) [1657401]
-- [usb] revert "usb: serial: ftdi_sio: add Id for Physik Instrumente E-870" (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: add Id for Physik Instrumente E-870 (Torez Smith) [1657401]
-- [netdrv] net-usb: add qmi_wwan if on lte modem wistron neweb d18q1 (Torez Smith) [1657401]
-- [netdrv] usb/qmi_wwan.c: Add USB id for lt4120 modem (Torez Smith) [1657401]
-- [netdrv] qmi_wwan: add BroadMobi BM806U 2020:2033 (Torez Smith) [1657401]
-- [usb] host: Remove the deprecated ATH79 USB host config options (Torez Smith) [1657401]
-- [usb] roles: Fix return value check in intel_xhci_usb_probe() (Torez Smith) [1657401]
-- [documentation] usb: core: Add USB_QUIRK_DELAY_CTRL_MSG to usbcore quirks (Torez Smith) [1657401]
-- [usb] core: Copy parameter string correctly and remove superfluous null check (Torez Smith) [1657401]
-- [usb] announce bcdDevice as well as idVendor, idProduct (Torez Smith) [1657401]
-- [usb] USB:fix USB3 devices behind USB3 hubs not resuming at hibernate thaw (Torez Smith) [1657401]
-- [usb] hub: Reduce warning to notice on power loss (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: add support for Harman FirmwareHubEmulator (Torez Smith) [1657401]
-- [usb] serial: cp210x: add ELDAT Easywave RX09 id (Torez Smith) [1657401]
-- [usb] serial: ftdi_sio: add RT Systems VX-8 cable (Torez Smith) [1657401]
-- [usb] typec: driver for Pericom PI3USB30532 Type-C cross switch (Torez Smith) [1657401]
-- [usb] roles: Add Intel xHCI USB role switch driver (Torez Smith) [1657401]
-- [usb] xhci: Add Intel extended cap / otg phy mux handling (Torez Smith) [1657401]
-- [usb] xhci: Add option to get next extended capability in list by passing id = 0 (Torez Smith) [1657401]
-- [usb] typec: tcpm: Use new Type-C switch/mux and usb-role-switch functions (Torez Smith) [1657401]
-- [usb] typec: tcpm: Set USB role switch to device mode when configured as such (Torez Smith) [1657401]
-- [usb] typec: Separate the definitions for data and power roles (Torez Smith) [1657401]
-- [usb] common: Small class for USB role switches (Torez Smith) [1657401]
-- [usb] typec: API for controlling USB Type-C Multiplexers (Torez Smith) [1657401]
-- [usb] core: introduce per-port over-current counters (Torez Smith) [1657401]
-- [usb] misc: uss720: more vendor/product ID's (Torez Smith) [1657401]
-- [usb] core: Add "quirks" parameter for usbcore (Torez Smith) [1657401]
-- [usb] core: urb: Check SSP isoc ep comp descriptor (Torez Smith) [1657401]
-- [usb] serial: option: use mass-storage class define (Torez Smith) [1657401]
-- [usb] serial: option: drop redundant interface-class test (Torez Smith) [1657401]
-- [usb] serial: option: reimplement interface masking (Torez Smith) [1657401]
-- [usb] wusbcore: crypto: Remove VLA usage (Torez Smith) [1657401]
-- [usb] xhci: Show what USB release number the xHC supports from protocol capablity (Torez Smith) [1657401]
-- [usb] xhci: Clear the host side toggle manually when endpoint is soft reset (Torez Smith) [1657401]
-- [usb] xhci: refactor xhci_urb_enqueue a bit with minor changes (Torez Smith) [1657401]
-- [usb] xhci: Don't always run the default stop endpoint command completion handler (Torez Smith) [1657401]
-- [usb] xhci: zero usb device slot_id member when disabling and freeing a xhci slot (Torez Smith) [1657401]
-- [usb] xhci: Remove ep_trb from finish_td() (Torez Smith) [1657401]
-- [usb] xhci: Remove ep_trb from xhci_cleanup_halted_endpoint() (Torez Smith) [1657401]
-- [usb] xhci: Clean up error code in xhci_dbc_tty_register_device() (Torez Smith) [1657401]
-- [netdrv] Remove unnecessary skb_copy_expand OOM messages (Torez Smith) [1657401]
-- [usb] typec: tcpm: fusb302: Do not log an error on -EPROBE_DEFER (Torez Smith) [1657401]
-- [usb] ohci: Fix NULL dereference in HCDs using HCD_LOCAL_MEM (Torez Smith) [1657401]
-- [usb] usbip: vudc: fix null pointer dereference on udc->lock (Torez Smith) [1657401]
-- [usb] typec: Start using ERR_PTR (Torez Smith) [1657401]
-- [usb] host: xhci-mtk: remove custom USB PHY handling (Torez Smith) [1657401]
-- [usb] clarify ACPI spec version and section number for _UPC & _PLD (Torez Smith) [1657401]
-- [usb] Don't disable Latency tolerance Messaging (LTM) before port reset (Torez Smith) [1657401]
-- [usb] adutux: Add waiting in transfer abortion (Torez Smith) [1657401]
-- [usb] typec: Re-use DEFINE_SHOW_ATTRIBUTE() macro (Torez Smith) [1657401]
-- [usb] host: whci: Re-use DEFINE_SHOW_ATTRIBUTE() macro (Torez Smith) [1657401]
-- [kernel] typec: tcpm: Add SDB header for Status message handling (Torez Smith) [1657401]
-- [kernel] typec: tcpm: Add ADO header for Alert message handling (Torez Smith) [1657401]
-- [kernel] typec: tcpm: Add PD Rev 3.0 definitions to PD header (Torez Smith) [1657401]
-- [usb] wusbcore: remove redundant re-assignment to pointer 'dev' (Torez Smith) [1657401]
-- [usb] usbip: Correct maximum value of CONFIG_USBIP_VHCI_HC_PORTS (Torez Smith) [1657401]
-- [usb] usbtest: Remove stack VLA usage (Torez Smith) [1657401]
-- [usb] xhci: Fix front USB ports on ASUS PRIME B350M-A (Torez Smith) [1657401]
-- [usb] usbmon: Read text within supplied buffer size (Torez Smith) [1657401]
-- [netdrv] usb: asix88179_178a: set permanent address once only (Torez Smith) [1657401]
-- [usb] storage: Add JMicron bridge 152d:2567 to unusual_devs.h (Torez Smith) [1657401]
-- [usb] xhci: dbc: Fix lockdep warning (Torez Smith) [1657401]
-- [usb] xhci: fix endpoint context tracer output (Torez Smith) [1657401]
-- [netdrv] cdc_eem: clean up bind error path (Torez Smith) [1657401]
-- [netdrv] kalmia: clean up bind error path (Torez Smith) [1657401]
-- [kernel] usbnet: fix potential deadlock on 32bit hosts (Torez Smith) [1657401]
-- [usb] adutux: Delete a misleading comment (Torez Smith) [1657401]
-- [usb] usb-skeleton: make MODULE_LICENSE and SPDX tag match (Torez Smith) [1657401]
-- [usb] revert "typec: tcpm: Only request matching pdos" (Torez Smith) [1657401]
-- [usb] quirks: add control message delay for 1b1c:1b20 (Torez Smith) [1657401]
-- [usb] uas: fix comparison for error code (Torez Smith) [1657401]
-- [netdrv] usb/kalmia: use ARRAY_SIZE for various array sizing calculations (Torez Smith) [1657401]
-- [netdrv] cdc_ether: flag the Cinterion PLS8 modem by gemalto as WWAN (Torez Smith) [1657401]
-- [video] console: Expand dummy functions for CFI (Torez Smith) [1657401]
-- [usb] console: sisusb2vga: Drop dummy con_font_get() (Torez Smith) [1657401]
-- [netdrv] r8152: fix tx packets accounting (Torez Smith) [1657401]
-- [media] uvcvideo: Use internal kernel integer types (Torez Smith) [1657401]
-- [media] uvcvideo: Apply flags from device to actual properties (Torez Smith) [1657401]
-- [netdrv] smsc75xx: fix smsc75xx_set_features() (Torez Smith) [1657401]
-- [usb] chaoskey: Use kasprintf() over strcpy()/strcat() (Torez Smith) [1657401]
-- [usb] host: ehci: Use dma_pool_zalloc() (Torez Smith) [1657401]
-- [usb] cdc_acm: prevent race at write to acm while system resumes (Torez Smith) [1657401]
-- [usb] Add delay-init quirk for Corsair K70 RGB keyboards (Torez Smith) [1657401]
-- [usb] ohci: Proper handling of ed_rm_list to handle race condition between usb_kill_urb() and finish_unlinks() (Torez Smith) [1657401]
-- [usb] host: ehci: always enable interrupt for qtd completion at test mode (Torez Smith) [1657401]
-- [usb] ldusb: add PIDs for new CASSY devices supported by this driver (Torez Smith) [1657401]
-- [usb] host: ehci: use correct device pointer for dma ops (Torez Smith) [1657401]
-- [usb] usbip: keep usbip_device sockfd state in sync with tcp_socket (Torez Smith) [1657401]
-- [usb] ohci-hcd: Fix race condition caused by ohci_urb_enqueue() and io_watchdog_func() (Torez Smith) [1657401]
-- [usb] serial: option: Add support for Quectel EP06 (Torez Smith) [1657401]
-- [usb] xhci: fix xhci debugfs errors in xhci_stop (Torez Smith) [1657401]
-- [usb] xhci: xhci debugfs device nodes weren't removed after device plugged out (Torez Smith) [1657401]
-- [usb] xhci: Fix xhci debugfs devices node disappearance after hibernation (Torez Smith) [1657401]
-- [usb] xhci: Fix NULL pointer in xhci debugfs (Torez Smith) [1657401]
-- [usb] xhci: Don't print a warning when setting link state for disabled ports (Torez Smith) [1657401]
-- [usb] xhci: workaround for AMD Promontory disabled ports wakeup (Torez Smith) [1657401]
-- [base] base: Unified device connection lookup (Torez Smith) [1657401]
-- [documentation] documentation sysfs-bus-usb: Add rx_lanes and tx_lanes introduced in USB 3.2 (Torez Smith) [1657401]
-
-* Fri Mar 15 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1025.el7]
-- [netdrv] bnxt_en: Drop oversize TX packets to prevent errors (Jonathan Toppins) [1686144]
-- [netdrv] bnxt_en: Fix typo in firmware message timeout logic (Jonathan Toppins) [1686144]
-- [netdrv] bnxt_en: Wait longer for the firmware message response to complete (Jonathan Toppins) [1686144]
-- [netdrv] mlxsw: spectrum_router: Add extack message for RIF and VRF overflow (Ivan Vecera) [1678657]
-- [netdrv] mlxsw: spectrum: router: Add support for address validator notifier (Ivan Vecera) [1678657]
-- [netdrv] enic: fix checksum validation for IPv6 (Govindarajulu Varadarajan) [1631569]
-- [netdrv] cisco: enic: Replace GFP_ATOMIC with GFP_KERNEL (Govindarajulu Varadarajan) [1631569]
-- [netdrv] enic: do not call enic_change_mtu in enic_probe (Govindarajulu Varadarajan) [1631569]
-- [netdrv] use core min/max MTU checking (Govindarajulu Varadarajan) [1631569]
-- [netdrv] enic: handle mtu change for vf properly (Govindarajulu Varadarajan) [1631569]
-- [netdrv] xdp/qede: setup xdp_rxq_info and intro xdp_rxq_info_is_reg (Manish Chopra) [1679753]
-- [netdrv] xdp: make the stack take care of the tear down (Manish Chopra) [1679753]
-- [netdrv] bpf: add meta pointer for direct access (Manish Chopra) [1679753]
-- [netdrv] qede: VF XDP support (Manish Chopra) [1679753]
-- [netdrv] qed: VF XDP support (Manish Chopra) [1679753]
-- [netdrv] qed*: Change maximal number of queues (Manish Chopra) [1679753]
-- [netdrv] qede: Fix XDP memory leak on unload (Manish Chopra) [1679753]
-- [netdrv] qede: Support XDP adjustment of headers (Manish Chopra) [1679753]
-- [netdrv] qede: Add support for ingress headroom (Manish Chopra) [1679753]
-- [netdrv] bpf: add initial bpf tracepoints (Manish Chopra) [1679753]
-- [netdrv] qede: Correct XDP forward unmapping (Manish Chopra) [1679753]
-- [netdrv] bpf, xdp: drop rcu_read_lock from bpf_prog_run_xdp and move to caller (Manish Chopra) [1679753]
-- [netdrv] qede: Add support for XDP_TX (Manish Chopra) [1679753]
-- [netdrv] qede: Add basic XDP support (Manish Chopra) [1679753]
-- [infiniband] hfi1: Close race condition on user context disable and close (Alex Estrin) [1680069]
-- [hid] intel-ish-hid: add MSI interrupt support (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: fixes incorrect error handling (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: Enable Ice Lake mobile (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: using list_head for ipc write queue (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use resource-managed api (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: Enhance API to get ring buffer sizes (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use helper function to search client id (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: ishtp: add helper function for client search (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use helper function to access client buffer (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: ishtp: add helper functions for client buffer operation (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use helper function for private driver data set/get (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: ishtp: add helper function for driver data get/set (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: Enable Sunrise Point-H ish driver (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: tx_buf memory leak on probe/remove (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: Prevent loading of driver on Mehlow (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: remove redundant variable num_frags (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: ipc: register more pm callbacks to support hibernation (Tony Camuso) [1517616]
-- [hid] treewide: devm_kzalloc() -> devm_kcalloc() (Tony Camuso) [1517616]
-- [hid] intel-ish-hid: use put_device() instead of kfree() (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: Stop using a static local buffer in get_report() (Tony Camuso) [1517616]
-- [hid] intel_ish-hid: Move header size check to inside the loop (Tony Camuso) [1517616]
-- [scsi] hpsa: add module parameter to disable irq affinity (Joseph Szczypek) [1644420]
-- [iommu] vt-d: Add debugfs support to show context internals (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Add debugfs support for Interrupt remapping (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Add debugfs support to show register contents (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Enable base Intel IOMMU debugfs support (Jerry Snitselaar) [1457023]
-- [kernel] iommu/vt-d: Update register definitions to VT-d 3.0 specification (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Relocate struct/function declarations to its header files (Jerry Snitselaar) [1457023]
-- [iommu] Enable debugfs exposure of IOMMU driver internals (Jerry Snitselaar) [1457023]
-- [iommu] vt-d: Handle domain agaw being less than iommu agaw (Jerry Snitselaar) [1686486]
-- [iommu] vt-d: Use memunmap to free memremap (Jerry Snitselaar) [1686486]
-- [iommu] amd/iommu: Fix Guest Virtual APIC Log Tail Address Register (Jerry Snitselaar) [1686486]
-- [iommu] amd: Return devid as alias for ACPI HID devices (Jerry Snitselaar) [1686486]
-- [iommu] amd: make sure TLB to be flushed before IOVA freed (Jerry Snitselaar) [1686486]
-- [iommu] amd: Fix schedule-while-atomic BUG in initialization code (Jerry Snitselaar) [1686486]
-- [iommu] vt-d: Allow to flush more than 4GB of device TLBs (Jerry Snitselaar) [1686486]
-- [iommu] iommu/amd: Fix IOMMU page flush when detach device from a domain (Suravee Suthikulpanit) [1672873]
-- [mm] swap: fix nr_rotate_swap leak in swapon() error case (Rafael Aquini) [1485248]
-- [mm] swap: use page-cluster as max window of VMA based swap readahead (Rafael Aquini) [1485248]
-- [kernel] mm: swap: don't use VMA based swap readahead if HDD is used as swap (Rafael Aquini) [1485248]
-- [mm] swap: add sysfs interface for VMA based swap readahead (Rafael Aquini) [1485248]
-- [mm] swap: VMA based swap readahead (Rafael Aquini) [1485248]
-- [mm] swap: fix swap readahead marking (Rafael Aquini) [1485248]
-- [mm] swap: add swap readahead hit statistics (Rafael Aquini) [1485248]
-- [mm] swap: add a simple detector for inappropriate swapin readahead (Rafael Aquini) [1485248]
-- [block] mtip32xx: fix memory corruption by initializing internal command header (Ming Lei) [1660292]
-- [block] blk-mq: complete req in softirq context in case of single queue (Ming Lei) [1631091]
-- [block] blk-mq: hold tag set lock before reinit queues (Ming Lei) [1638844]
-- [block] revert "blk-mq: fix hctx debugfs entry related race between update hw queues and cpu hotplug" (Ming Lei) [1638844]
-- [fs] cifs: fix for getdents with 4kb buffers (Leif Sahlberg) [1577640]
-- [fs] nfsd: deal with revoked delegations appropriately (Dave Wysochanski) [1552203]
-- [fs] vfs: Allocate anon_inode_inode in anon_inode_init() (Bill O'Donnell) [1504735]
-- [fs] remove now stale label in anon_inode_init() (Bill O'Donnell) [1504735]
-- [fs] Avoid userspace mounting anon_inodefs filesystem (Bill O'Donnell) [1504735]
-- [linux] Break up long walk of wait queue during wakeup (Larry Woodman) [1493845]
-- [kernel] nohz: Fix local_timer_softirq_pending() (Daniel Bristot de Oliveira) [1659332]
-- [kernel] nohz: Prevent a timer interrupt storm in tick_nohz_stop_sched_tick() (Daniel Bristot de Oliveira) [1659332]
-- [powerpc] livepatch: return -ERRNO values in save_stack_trace_tsk_reliable() (Joe Lawrence) [1658435]
-- [powerpc] livepatch: small cleanups in save_stack_trace_tsk_reliable() (Joe Lawrence) [1658435]
-- [powerpc] livepatch: relax reliable stack tracer checks for first-frame (Joe Lawrence) [1658435]
-- [powerpc] 64s: Make reliable stacktrace dependency clearer (Joe Lawrence) [1658435]
-- [powerpc] 64s: Clear on-stack exception marker upon exception return (Joe Lawrence) [1658435]
-- [powerpc] livepatch: Fix build error with kprobes disabled (Joe Lawrence) [1658435]
-- [powercap] intel_rapl: add support for Jacobsville (Steve Best) [1482403]
-- [x86] cpu: Add Atom Tremont (Jacobsville) (Steve Best) [1482403]
-- [powercap] intel_rapl: add Ice Lake mobile (Steve Best) [1483426]
-- [powercap] x86/cpu: Add Icelake model number (Steve Best) [1483426]
-- [s390] qeth: fix use-after-free in error path (Hendrik Brueckner) [1686041]
-- [s390] qeth: cancel close_dev work before removing a card (Hendrik Brueckner) [1686040]
-- [s390] qeth: conclude all event processing before offlining a card (Hendrik Brueckner) [1686039]
-- [s390] qeth: handle failure on workqueue creation (Hendrik Brueckner) [1686042]
-
-* Thu Mar 14 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1024.el7]
-- [netdrv] r8169: remove unneeded mmiowb barriers (Corinna Vinschen) [1646441]
-- [netdrv] revert "r8169: make use of xmit_more and __netdev_sent_queue" (Corinna Vinschen) [1646441]
-- [netdrv] revert "r8169: remove unneeded mmiowb barriers" (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Avoid pointer aliasing (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Load MAC address from device tree if present (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove rtl_wol_pll_power_down (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve WoL handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: enable EEE per default on RTL8168f (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add EEE support for RTL8168f (Corinna Vinschen) [1646441]
-- [netdrv] r8169: enable EEE per default on chip versions from RTL8168g (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add general EEE support for chip versions from RTL8168g (Corinna Vinschen) [1646441]
-- [netdrv] r8169: factor out PHY init sequence adjusting 10M and ALDPS (Corinna Vinschen) [1646441]
-- [netdrv] r8169: factor out disabling ALDPS (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve firmware handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove PCI DAC support (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rx buffer allocation (Corinna Vinschen) [1646441]
-- [netdrv] r8169: factor out getting ether_clk (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace mii_bus member with phy_device member in struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: reset chip synchronously in __rtl8169_resume (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add helpers for locking / unlocking the config registers (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl_pcie_state_l2l3_enable (Corinna Vinschen) [1646441]
-- [netdrv] r8169: initialize task workqueue only once (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded call in pcierr (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove rtl_get_events (Corinna Vinschen) [1646441]
-- [netdrv] r8169: load Realtek PHY driver module before r8169 (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't try to read counters if chip is in a PCI power-save state (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Add support for new Realtek Ethernet (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix WoL device wakeup enable (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve spurious interrupt detection (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix crash if CONFIG_DEBUG_SHIRQ is enabled (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded mmiowb barriers (Corinna Vinschen) [1646441]
-- [netdrv] realtek: Replace synchronize_sched() with synchronize_rcu() (Corinna Vinschen) [1646441]
-- [netdrv] r8169: make use of xmit_more and __netdev_sent_queue (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace macro TX_FRAGS_READY_FOR with a function (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use napi_consume_skb where possible (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify detecting chip versions with same XID (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove default chip versions (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove ancient GCC bug workaround in a second place (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve chip version identification (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify ocp functions (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove workaround for ancient gcc bug (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove manual padding in struct ring_info (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove "not PCI Express" message (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove print_mac_version (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use PCI_VDEVICE macro (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace event_slow with irq_mask (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unused interrupt sources (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use dev_get_drvdata where possible (Corinna Vinschen) [1646441]
-- [netdrv] r8169: merge rtl_irq_enable and rtl_irq_enable_all (Corinna Vinschen) [1646441]
-- [isdn] pci: add USR vendor id and use it in r8169 and w6692 driver (Corinna Vinschen) [1646441]
-- [netdrv] Convert phydev advertize and supported from u32 to link mode (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix broken Wake-on-LAN from S5 (poweroff) (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add support for Byte Queue Limits (Corinna Vinschen) [1646441]
-- [netdrv] r8169: handle all interrupt events in the hard irq handler (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix NAPI handling under high load (Corinna Vinschen) [1646441]
-- [netdrv] r8169: re-enable MSI-X on RTL8168g (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded call to netif_stop_queue in rtl8169_net_suspend (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify rtl8169_set_magic_reg (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Enable MSI-X on RTL8106e (Corinna Vinschen) [1646441]
-- [netdrv] r8169: set RX_MULTI_EN bit in RxConfig for 8168F-family chips (Corinna Vinschen) [1646441]
-- [netdrv] r8169: always autoneg on resume (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Disable clk during suspend / resume (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve a check in rtl_init_one (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl8169_irq_mask_and_ack (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use default watchdog timeout (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix autoneg issue on resume with RTL8168E (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove duplicated RTL8169s PHY initialization steps (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify RTL8169 PHY initialization (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Get and enable optional ether_clk clock (Corinna Vinschen) [1646441]
-- [netdrv] r8169: enable ASPM on RTL8106E (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Align ASPM/CLKREQ setting function with vendor driver (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Clear RTL_FLAG_TASK_*_PENDING when clearing RTL_FLAG_TASK_ENABLED (Corinna Vinschen) [1646441]
-- [netdrv] r8169: set TxConfig register after TX / RX is enabled, just like RxConfig (Corinna Vinschen) [1646441]
-- [kernel] r8169: add support for NCube 8168 network card (Corinna Vinschen) [1646441]
-- [netdrv] r8169: set RxConfig after tx/rx is enabled for RTL8169sb/8110sb devices (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't use MSI-X on RTL8106e (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't use MSI-X on RTL8168g (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't configure max jumbo frame size per chip version (Corinna Vinschen) [1646441]
-- [netdrv] realtek: use core min/max MTU checking (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't configure csum function per chip version (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify interrupt handler (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't include asm headers directly (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove version info (Corinna Vinschen) [1646441]
-- [netdrv] r8169: restore previous behavior to accept BIOS WoL settings (Corinna Vinschen) [1646441]
-- [netdrv] r8169: power down chip in probe (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't read chip phy status register (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove mii_if_info member from struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove rtl8169_set_speed_xmii (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_speed_down / phy_speed_up (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_mii_ioctl (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_ethtool_nway_reset (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_ethtool_(g|s)et_link_ksettings (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace open-coded PHY soft reset with genphy_soft_reset (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use phy_resume/phy_suspend (Corinna Vinschen) [1646441]
-- [netdrv] r8169: add basic phylib support (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix runtime suspend (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove old PHY reset hack (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove TBI 1000BaseX support (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use standard debug output functions (Corinna Vinschen) [1646441]
-- [netdrv] r8169: reject unsupported WoL options (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't check WoL when powering down PHY and interface is down (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve saved_wolopts handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve phy initialization when resuming (Corinna Vinschen) [1646441]
-- [netdrv] r8169: enable ASPM on RTL8168E-VL (Corinna Vinschen) [1646441]
-- [netdrv] r8169: align ASPM entry latency setting with vendor driver (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Reinstate ASPM Support (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Don't disable ASPM in the driver (Corinna Vinschen) [1646441]
-- [netdrv] r8169: Fix netpoll oops (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix network error on resume from suspend (Corinna Vinschen) [1646441]
-- [netdrv] r8169: fix powering up RTL8168h (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace get_protocol with vlan_get_protocol (Corinna Vinschen) [1646441]
-- [netdrv] r8169: avoid potentially misaligned access when getting mac address (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve PCI config space access (Corinna Vinschen) [1646441]
-- [netdrv] r8169: drop rtl_generic_op (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace longer if statements with switch statements (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify code by using ranges in switch clauses (Corinna Vinschen) [1646441]
-- [netdrv] r8169: drop member pll_power_ops from struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: merge r810x_pll_power_down/up into r8168_pll_power_down/up (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove 810x_phy_power_up/down (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded check in r8168_pll_power_down (Corinna Vinschen) [1646441]
-- [netdrv] r8169: move common initializations to tp->hw_start (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove calls to rtl_set_rx_mode (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify rtl_hw_start_8169 (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve handling of CPCMD quirk mask (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve CPlusCmd handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace magic number for INTT mask with a constant (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl8169_set_features (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded call to __rtl8169_set_features in rtl_open (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't use netif_info et al before net_device has been registered (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove jumbo_tx_csum from chip config struct (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve pci region handling (Corinna Vinschen) [1646441]
-- [netdrv] r8169: drop member txd_version from struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl8169_get_mac_version (Corinna Vinschen) [1646441]
-- [netdrv] r8169: don't display tp->mmio_addr address (Corinna Vinschen) [1646441]
-- [netdrv] r8169: drop member opts1_mask from struct rtl8169_private (Corinna Vinschen) [1646441]
-- [netdrv] r8169: change interrupt handler argument type (Corinna Vinschen) [1646441]
-- [netdrv] r8169: change argument type of counters handling functions (Corinna Vinschen) [1646441]
-- [netdrv] r8169: change hw_start argument type (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove rtl8169_map_to_asic (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace rx_buf_sz with a constant (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unneeded check in rtl8169_rx_fill (Corinna Vinschen) [1646441]
-- [netdrv] r8169: improve rtl8169_init_ring (Corinna Vinschen) [1646441]
-- [netdrv] r8169: simplify rtl8169_alloc_rx_data (Corinna Vinschen) [1646441]
-- [netdrv] r8169: switch to napi_schedule_irqoff (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use constant NAPI_POLL_WAIT (Corinna Vinschen) [1646441]
-- [netdrv] r8169: use skb_copy_to_linear_data in rtl8169_try_rx_copy (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove member align from struct rtl_cfg_info (Corinna Vinschen) [1646441]
-- [netdrv] r8169: remove unused member features from struct (Corinna Vinschen) [1646441]
-- [netdrv] r8169: replace magic numbers with PCI MRRS constant (Corinna Vinschen) [1646441]
-- [uapi] pci: Add two more values for PCIe Max_Read_Request_Size (Corinna Vinschen) [1646441]
-- [netdrv] phy: simplify genphy_config_eee_advert (Ivan Vecera) [1685646]
-- [netdrv] phy: add register modifying helpers returning 1 on change (Ivan Vecera) [1685646]
-- [netdrv] phy: make use of new MMD accessors (Ivan Vecera) [1685646]
-- [kernel] phy: provide full set of accessor functions to MMD registers (Ivan Vecera) [1685646]
-- [netdrv] phy: use unlocked accessors for indirect MMD accesses (Ivan Vecera) [1685646]
-- [netdrv] phy: fix wrong mask to phy_modify() (Ivan Vecera) [1685646]
-- [netdrv] phy: fix wrong masks to phy_modify() (Ivan Vecera) [1685646]
-- [netdrv] phy: Restore phy_resume() locking assumption (Ivan Vecera) [1685646]
-- [netdrv] phy: Fix the issue that netif always links up after resuming (Ivan Vecera) [1685646]
-- [kernel] phy: add helpers for setting/clearing bits in PHY registers (Ivan Vecera) [1685646]
-- [netdrv] phy: Have __phy_modify return 0 on success (Ivan Vecera) [1685646]
-- [netdrv] phy: convert read-modify-write to phy_modify() (Ivan Vecera) [1685646]
-- [netdrv] phy: add phy_modify() accessor (Ivan Vecera) [1685646]
-- [netdrv] phy: add paged phy register accessors (Ivan Vecera) [1685646]
-- [kernel] phy: add unlocked accessors (Ivan Vecera) [1685646]
-- [netdrv] mdiobus: add unlocked accessors (Ivan Vecera) [1685646]
-- [netdrv] phy: fix resume handling (Ivan Vecera) [1685646]
-- [netdrv] phy: Avoid deadlock during phy_error() (Ivan Vecera) [1685646]
-- [netdrv] phy: fix sign type error in genphy_config_eee_advert (Ivan Vecera) [1685646]
-- [netdrv] phy: add an option to disable EEE advertisement (Ivan Vecera) [1685646]
-- [trace] phy: add trace events for mdio accesses (Ivan Vecera) [1685646]
-- [netdrv] phy: Trigger state machine on state change and not polling (Ivan Vecera) [1685646]
-- [netdrv] phy: make some bits preserved while setup forced mode (Ivan Vecera) [1685646]
-- [netdrv] phy: Move PHY PM operations into phy_device (Ivan Vecera) [1685646]
-- [netdrv] phy: Make sure phy_start() always re-enables the phy interrupts (Ivan Vecera) [1685646]
-
-* Thu Mar 14 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1023.el7]
-- [netdrv] nfp: flower: fix cb_ident duplicate in indirect block register (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: ensure TCP flags can be placed in IPv6 frame (Pablo Cascon) [1637991]
-- [netdrv] nfp: convert to DEFINE_SHOW_ATTRIBUTE (Pablo Cascon) [1637991]
-- [netdrv] nfp: report more info when reconfiguration fails (Pablo Cascon) [1637991]
-- [netdrv] nfp: add offset to all TLV parsing errors (Pablo Cascon) [1637991]
-- [netdrv] nfp: add offloads on representors (Pablo Cascon) [1637991]
-- [netdrv] nfp: add locking around representor changes (Pablo Cascon) [1637991]
-- [netdrv] nfp: run don't require Qdiscs on representor netdevs (Pablo Cascon) [1637991]
-- [netdrv] nfp: run representor TX locklessly (Pablo Cascon) [1637991]
-- [netdrv] nfp: avoid oversized TSO headers with metadata prepend (Pablo Cascon) [1637991]
-- [netdrv] nfp: correct descriptor offsets in presence of metadata (Pablo Cascon) [1637991]
-- [netdrv] nfp: move queue variable init (Pablo Cascon) [1637991]
-- [netdrv] nfp: move temporary variables in nfp_net_tx_complete() (Pablo Cascon) [1637991]
-- [netdrv] nfp: copy only the relevant part of the TX descriptor for frags (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: prevent offload if rhashtable insert fails (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: release metadata on offload failure (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: remove unnecessary code in flow lookup (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: remove TC egdev offloads (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: offload tunnel decap rules via indirect TC blocks (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: increase scope of netdev checking functions (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: allow non repr netdev offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: use the new __netdev_tx_sent_queue() BQL optimisation (Pablo Cascon) [1637991]
-- [netdrv] nfp: parse vNIC TLV capabilities at alloc time (Pablo Cascon) [1637991]
-- [netdrv] nfp: pass ctrl_bar pointer to nfp_net_alloc (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: include geneve as supported offload tunnel type (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use geneve and vxlan helpers (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use the common netdev notifier (Pablo Cascon) [1637991]
-- [netdrv] nfp: register a notifier handler in a central location for the device (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: make nfp_fl_lag_changels_event() void (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: don't try to nack device unregister events (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: remove unnecessary iteration over devices (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add ipv6 set flow label and hop limit offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add ipv4 set ttl and tos offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use offsets provided by pedit instead of index for ipv6 (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix multiple keys per pedit action (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix pedit set actions for multiple partial masks (Pablo Cascon) [1637991]
-- [netdrv] nfp: devlink port split support for 1x100G CXP NIC (Pablo Cascon) [1637991]
-- [netdrv] nfp: replace long license headers with SPDX (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use host context count provided by firmware (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use stats array instead of storing stats per flow (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use rhashtable for flow caching (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: use rhashtable for flow caching (Pablo Cascon) [1637991]
-- [netdrv] nfp: avoid soft lockups under control message storm (Pablo Cascon) [1637991]
-- [netdrv] nfp: allow apps to request larger MTU on control vNIC (Pablo Cascon) [1637991]
-- [netdrv] nfp: warn on experimental TLV types (Pablo Cascon) [1637991]
-- [netdrv] nfp: remove ndo_poll_controller (Pablo Cascon) [1637991]
-- [netdrv] nfp: provide a better warning when ring allocation fails (Pablo Cascon) [1637991]
-- [netdrv] nfp: report FW vNIC stats in interface stats (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: reject tunnel encap with ipv6 outer headers for offloading (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix vlan match by checking both vlan id and vlan pcp (Pablo Cascon) [1637991]
-- [netdrv] nfp: replace spin_lock_bh with spin_lock in tasklet callback (Pablo Cascon) [1637991]
-- [netdrv] nfp: separate VXLAN and GRE feature handling (Pablo Cascon) [1637991]
-- [netdrv] nfp: validate rtsym accesses fall within the symbol (Pablo Cascon) [1637991]
-- [netdrv] nfp: prefix rtsym error messages with symbol name (Pablo Cascon) [1637991]
-- [netdrv] nfp: fix readq on absolute RTsyms (Pablo Cascon) [1637991]
-- [netdrv] nfp: wait for posted reconfigs when disabling the device (Pablo Cascon) [1637991]
-- [netdrv] nfp: make RTsym users handle absolute symbols correctly (Pablo Cascon) [1637991]
-- [netdrv] nfp: support access to absolute RTsyms (Pablo Cascon) [1637991]
-- [netdrv] nfp: convert all RTsym users to use new read/write helpers (Pablo Cascon) [1637991]
-- [netdrv] nfp: convert existing RTsym helpers to full target decoding (Pablo Cascon) [1637991]
-- [netdrv] nfp: pass cpp_id to nfp_cpp_map_area() (Pablo Cascon) [1637991]
-- [netdrv] nfp: add RTsym access helpers (Pablo Cascon) [1637991]
-- [netdrv] nfp: add basic errors messages to target logic (Pablo Cascon) [1637991]
-- [netdrv] nfp: save the MU locality field offset (Pablo Cascon) [1637991]
-- [netdrv] nfp: add support for indirect HWinfo lookup (Pablo Cascon) [1637991]
-- [netdrv] nfp: interpret extended FW load result codes (Pablo Cascon) [1637991]
-- [netdrv] nfp: attempt FW load from flash (Pablo Cascon) [1637991]
-- [netdrv] nfp: encapsulate NSP command arguments into structs (Pablo Cascon) [1637991]
-- [netdrv] nfp: clean up return types in kdoc comments (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add geneve option match offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add geneve option push action offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: allow matching on ipv4 UDP tunnel tos and ttl (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: set ip tunnel ttl from encap action (Pablo Cascon) [1637991]
-- [netdrv] nfp: fix variable dereferenced before check in nfp_app_ctrl_rx_raw() (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix port metadata conversion bug (Pablo Cascon) [1637991]
-- [netdrv] nfp: allow control message reception on data queues (Pablo Cascon) [1637991]
-- [netdrv] nfp: move repr handling on RX path (Pablo Cascon) [1637991]
-- [netdrv] nfp: protect from theoretical size overflows on HW descriptor ring (Pablo Cascon) [1637991]
-- [netdrv] nfp: restore correct ordering of fields in rx ring structure (Pablo Cascon) [1637991]
-- [netdrv] nfp: don't try to register XDP rxq structures on control queues (Pablo Cascon) [1637991]
-- [netdrv] nfp: don't fail probe on pci_sriov_set_totalvfs() errors (Pablo Cascon) [1637991]
-- [netdrv] nfp: avoid buffer leak when FW communication fails (Pablo Cascon) [1637991]
-- [netdrv] nfp: bring back support for offloading shared blocks (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: ensure dead neighbour entries are not offloaded (Pablo Cascon) [1637991]
-- [netdrv] nfp: add .ndo_init() and .ndo_uninit() callbacks (Pablo Cascon) [1637991]
-- [netdrv] nfp: avoid using getnstimeofday64() (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: enabled offloading of Team LAG (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: offload tos and tunnel flags for ipv4 udp tunnels (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: extract ipv4 udp tunnel ttl from route (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: ignore checksum actions when performing pedit actions (Pablo Cascon) [1637991]
-- [netdrv] nfp: populate bus-info on representors (Pablo Cascon) [1637991]
-- [netdrv] nfp: make use of napi_consume_skb() (Pablo Cascon) [1637991]
-- [netdrv] nfp: implement netpoll ndo (thus enabling netconsole) (Pablo Cascon) [1637991]
-- [netdrv] nfp: fail probe if serial or interface id is missing (Pablo Cascon) [1637991]
-- [netdrv] nfp: expose ring stats of inactive rings via ethtool (Pablo Cascon) [1637991]
-- [netdrv] nfp: stop limiting VFs to 0 (Pablo Cascon) [1637991]
-- [netdrv] nfp: cast sizeof() to int when comparing with error code (Pablo Cascon) [1637991]
-- [netdrv] nfp: reject binding to shared blocks (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix mpls ether type detection (Pablo Cascon) [1637991]
-- [netdrv] nfp: handle cls_flower command default case (Pablo Cascon) [1637991]
-- [netdrv] nfp: remove phys_port_name on flower's vNIC (Pablo Cascon) [1637991]
-- [netdrv] nfp: include all ring counters in interface stats (Pablo Cascon) [1637991]
-- [netdrv] nfp: don't pad strings in nfp_cpp_resource_find() to avoid gcc 8 warning (Pablo Cascon) [1637991]
-- [netdrv] nfp: allow apps to add extra stats to ports (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: report statistics from RED offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: add simple RED offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: add helpers for configuring queue marking levels (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: enable advanced queuing on demand (Pablo Cascon) [1637991]
-- [netdrv] nfp: prefix vNIC phys_port_name with 'n' (Pablo Cascon) [1637991]
-- [netdrv] nfp: return -EOPNOTSUPP from .ndo_get_phys_port_name for VFs (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: compute link aggregation action (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: implement host cmsg handler for LAG (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: monitor and offload LAG groups (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: add per repr private data for LAG offload (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: check for/turn on LAG support in firmware (Pablo Cascon) [1637991]
-- [netdrv] nfp: nfpcore: add rtsym writing function (Pablo Cascon) [1637991]
-- [netdrv] nfp: add ndo_set_mac_address for representors (Pablo Cascon) [1637991]
-- [netdrv] nfp: assign vNIC id as phys_port_name of vNICs which are not ports (Pablo Cascon) [1637991]
-- [netdrv] nfp: use split in naming of PCIe PF ports (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: force Ethternet port up (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: spawn port netdevs (Pablo Cascon) [1637991]
-- [netdrv] nfp: add devlink_eswitch_mode_set callback (Pablo Cascon) [1637991]
-- [netdrv] nfp: add app pointer to port representors (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: create project-specific vNIC structure (Pablo Cascon) [1637991]
-- [netdrv] nfp: abm: add initial active buffer management NIC skeleton (Pablo Cascon) [1637991]
-- [netdrv] nfp: core: allow 4-byte aligned accesses to Memory Units (Pablo Cascon) [1637991]
-- [netdrv] nfp: add shared buffer configuration (Pablo Cascon) [1637991]
-- [netdrv] nfp: add support for per-PCI PF mailbox (Pablo Cascon) [1637991]
-- [netdrv] nfp: move rtsym helpers to pf code (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: fix error path during representor creation (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: ignore duplicate cb requests for same rule (Pablo Cascon) [1637991]
-- [netdrv] nfp: flower: support offloading multiple rules with same cookie (Pablo Cascon) [1637991]
-- [netdrv] nfp: print PCIe link bandwidth on probe (Pablo Cascon) [1637991]
-- [netdrv] nfp: reset local locks on init (Pablo Cascon) [1637991]
-
-* Wed Mar 13 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1022.el7]
-- [infiniband] usnic_verbs: fix deadlock (Govindarajulu Varadarajan) [1569216]
-- [infiniband] ib/usnic: Fix locking when unregistering (Govindarajulu Varadarajan) [1569216]
-- [infiniband] ib/usnic: Fix potential deadlock (Govindarajulu Varadarajan) [1569216]
-- [netdrv] ib/mlx5: Fix the locking of SRQ objects in ODP events (Alaa Hleihel) [1683975]
-- [rdma] ib/mlx5: Remove dead code (Alaa Hleihel) [1683975]
-- [infiniband] ib/mlx5: Ranges in implicit ODP MR inherit its write access (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: Return success for PAGE_FAULT_RESUME in internal error state (Alaa Hleihel) [1683975]
-- [infiniband] ib/mlx5: Lock QP during page fault handling (Alaa Hleihel) [1683975]
-- [kernel] mlx5: Enumerate page fault types (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: Add interface to hold and release core resources (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: Release resource on error flow (Alaa Hleihel) [1683975]
-- [infiniband] ib/mlx5: Do not use hw_access_flags for be and CPU data (Alaa Hleihel) [1683975]
-- [infiniband] ib/mlx5: Remove set but not used variable (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Fix GRE key by controlling port tunnel entropy calculation (Alaa Hleihel) [1683975]
-- [kernel] mlx5: Introduce tunnel entropy control in PCMR register (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: Use read-modify-write when changing PCMR register values (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Don't overwrite pedit action when multiple pedit used (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Update hw flows when encap source mac changed (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Use the inner headers to determine tc/pedit offload limitation on decap flows (Alaa Hleihel) [1683975]
-- [netdrv] mlx5e: Properly set steering match levels for offloaded TC decap rules (Alaa Hleihel) [1683975]
-- [netdrv] mlx5: ethtool, Add ethtool support for 50Gbps per lane link modes (Alaa Hleihel) [1590191]
-- [infiniband] ib/mlx5: Add support for 50Gbps per lane link modes (Alaa Hleihel) [1590191]
-- [netdrv] mlx5: Add support to ext_* fields introduced in Port Type and Speed register (Alaa Hleihel) [1590191]
-- [kernel] mlx5: Add new fields to Port Type and Speed register (Alaa Hleihel) [1590191]
-- [netdrv] mlx5: Refactor queries to speed fields in Port Type and Speed register (Alaa Hleihel) [1590191]
-- [infiniband] ib/mlx5: Add 2X width support to query_port (Alaa Hleihel) [1590191]
-- [infiniband] ib/mlx5: Add HDR speed support to query port (Alaa Hleihel) [1590191]
-- [kernel] ib/mlx5: Report CapabilityMask2 in ib_query_port (Alaa Hleihel) [1590191]
-- [infiniband] ib/core: Add new IB rates (Alaa Hleihel) [1590191]
-- [rdma] ib/core: Add 2X port width (Alaa Hleihel) [1590191]
-- [rdma] ib/core: Add CapabilityMask2 to port attributes (Alaa Hleihel) [1590191]
-- [infiniband] rdma/core: Validate port number in query_pkey verb (Kamal Heib) [1657631]
-- [infiniband] rdma/srp: Propagate ib_post_send() failures to the SCSI mid-layer (Kamal Heib) [1657631]
-- [infiniband] rdma/srpt: Fix a use-after-free in the channel release code (Kamal Heib) [1657631]
-- [net] xprtrdma: Make sure Send CQ is allocated on an existing compvec (Kamal Heib) [1657631]
-- [net] svcrdma: Remove max_sge check at connect time (Kamal Heib) [1674030 1657631]
-- [infiniband] rdma/srp: Rework SCSI device reset handling (Kamal Heib) [1657631]
-- [infiniband] ib/uverbs: Fix OOPs in uverbs_user_mmap_disassociate (Kamal Heib) [1657631]
-- [infiniband] ib/ipoib: Fix for use-after-free in ipoib_cm_tx_start (Kamal Heib) [1657631]
-- [infiniband] ib/uverbs: Fix OOPs upon device disassociation (Kamal Heib) [1657631]
-- [infiniband] rdma/umem: Add missing initialization of owning_mm (Kamal Heib) [1657631]
-- [infiniband] rdma/vmw_pvrdma: Return the correct opcode when creating WR (Kamal Heib) [1667609 1657631]
-- [net] xprtrdma: Double free in rpcrdma_sendctxs_create() (Kamal Heib) [1657631]
-- [infiniband] rdma/nldev: Don't expose unsafe global rkey to regular user (Kamal Heib) [1657631]
-- [infiniband] ib/ipoib: drop useless LIST_HEAD (Kamal Heib) [1657631]
-- [net] xprtrdma: Ensure MRs are DMA-unmapped when posting LOCAL_INV fails (Kamal Heib) [1657631]
-- [infiniband] ib/umad: Avoid destroying device while it is accessed (Kamal Heib) [1657631]
-- [infiniband] ib/umad: Simplify and avoid dynamic allocation of class (Kamal Heib) [1657631]
-- [infiniband] rdma/iwcm: Don't copy past the end of dev_name() string (Kamal Heib) [1657631]
-- [infiniband] ib/rxe: Make counters thread safe (Kamal Heib) [1657631]
-- [infiniband] rdma/core: Delete RoCE GID in hw when corresponding IP is deleted (Kamal Heib) [1657631]
-- [infiniband] rdma/vmw_pvrdma: Use atomic memory allocation in create AH (Kamal Heib) [1657631]
-- [infiniband] ib/rxe: Fix incorrect cache cleanup in error flow (Kamal Heib) [1657631]
-- [rdma] uverbs: Fix typo in string concatenation macro (Kamal Heib) [1657631]
-- [infiniband] rdma/core: Sync unregistration with netlink commands (Kamal Heib) [1657631]
-- [infiniband] ib/mlx5: Fix bad flow upon DEVX mkey creation (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Add support for ODP for DEVX indirection mkey (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Manage indirection mkey upon DEVX flow for ODP (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: DEVX handling for indirection MKEY (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Allow XRC INI usage via verbs in DEVX context (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Allocate the per-port Q counter shared when DEVX is supported (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Use the correct commands for UMEM and UCTX allocation (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Use uid as part of alloc/dealloc transport domain (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Introduce uid as part of alloc/dealloc transport domain (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Allow XRC usage via verbs in DEVX context (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Update the supported DEVX commands (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Enforce DEVX privilege by firmware (Kamal Heib) [1685803]
-- [infiniband] ib/mlx5: Enable modify and query verbs objects via DEVX (Kamal Heib) [1685803]
-- [infiniband] ib/core: Enable getting an object type from a given uobject (Kamal Heib) [1685803]
-- [infiniband] ib/core: Introduce UVERBS_IDR_ANY_OBJECT (Kamal Heib) [1685803]
-- [infiniband] mlx5: Update mlx5_ifc with DEVX UCTX capabilities bits (Kamal Heib) [1685803]
-- [infiniband] mlx5: Add shared Q counter bits (Kamal Heib) [1685803]
-- [infiniband] rdma/mlx5: Use stages for callback to setup and release DEVX (Kamal Heib) [1685803]
-- [infiniband] rdma/uverbs: Mark ioctl responses with UVERBS_ATTR_F_VALID_OUTPUT (00/15) (Kamal Heib) [1663032]
-- [infiniband] ib/core: uverbs copy to struct or zero helper (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Implement an ioctl that can call write and write_ex handlers (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use only attrs for the write() handler signature (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Do not check the input length on create_cq/qp paths (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use the iterator for ib_uverbs_unmarshall_recv() (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Add a simple iterator interface for reading the command (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Simplify ib_uverbs_ex_query_device (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Fill in the response for IB_USER_VERBS_EX_CMD_MODIFY_QP (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_request() and core for write_ex handlers (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_request() for request copying (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_response() for remaining response copying (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Get rid of the 'callback' scheme in the compat path (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: fix ptr_ret.cocci warnings (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_attr_bundle to pass ucore for write/write_ex (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Remove out_len checks that are now done by the core (Kamal Heib) [1663032]
-- [rdma] uverbs: Use uverbs_attr_bundle to pass udata for ioctl() (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_attr_bundle to pass udata for write (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use uverbs_attr_bundle to pass udata for write_ex (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Prohibit write() calls with too small buffers (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Add structure size info to write commands (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Do not pass ib_uverbs_file to ioctl methods (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Make write() handlers return 0 on success (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Replace ib_uverbs_file with uverbs_attr_bundle for write (Kamal Heib) [1663032]
-- [uapi] rdma/uverbs: Add missing driver_data (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Check for NULL driver methods for every write call (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Make all the method functions in uverbs_cmd static (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Convert the write interface to use uverbs_api (Kamal Heib) [1663032]
-- [infiniband] rdma/verbs: Store the write/write_ex uapi entry points in the uverbs_api (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Require all objects to have a driver destroy function (Kamal Heib) [1663032]
-- [infiniband] rdma/mlx5: Use the uapi disablement APIs instead of code (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Add helpers to mark uapi functions as unsupported (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Factor out the add/get pattern into a helper (Kamal Heib) [1663032]
-- [infiniband] rdma/uverbs: Use a linear list to describe the compiled-in uapi (Kamal Heib) [1663032]
-- [infiniband] rdma/mlx5: Do not generate the uabi specs unconditionally (Kamal Heib) [1663032]
-
-* Tue Mar 12 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1021.el7]
-- [x86] kvm: nvmx: NMI-window and interrupt-window exiting should wake L2 from HLT (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: nsvm: fix switch to guest mmu (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Fix race in emulated page table writes (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx/nsvm: Fix bug which sets vcpu->arch.tsc_offset to L1 tsc_offset (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: reintroduce pte_list_remove, but including mmu_spte_clear_track_bits (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: rename pte_list_remove to __pte_list_remove (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: check if MMU reconfiguration is needed in init_kvm_nested_mmu() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: check if tdp/shadow MMU reconfiguration is needed (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/nvmx: introduce source data cache for kvm_init_shadow_ept_mmu() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: make space for source data caching in struct kvm_mmu (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: get rid of redundant kvm_mmu_setup() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: introduce guest_mmu (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu.c: add kvm_mmu parameter to kvm_mmu_free_roots() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu.c: set get_pdptr hook in kvm_init_shadow_ept_mmu() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: make vcpu->mmu a pointer to the current MMU (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: move vmcs12 EPTP consistency check to check_vmentry_prereqs() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: move host EFER consistency checks to VMFail path (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: return 0 in case kvm_mmu_memory_cache has min number of objects (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Clear reserved bits of #DB exit qualification (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: restore host state in nested_vmx_vmexit for VMFail (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: fix entry with pending interrupt if APICv is enabled (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: hide flexpriority from guest when disabled at the module level (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: check for existence of secondary exec controls before accessing (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Wake blocked vCPU in guest-mode if pending interrupt in virtual APICv (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: don't reset root in kvm_mmu_setup() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/lapic: always disable MMIO interface in x2APIC mode (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix loss of pending IRQ/NMI before entering L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Skip pae_root shadow allocation if tdp enabled (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/mmu: Combine flushing remote tlb in mmu_set_spte() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add multi-entry LRU cache for previous CR3s (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Support selectively freeing either current or previous MMU root (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add a root_hpa parameter to kvm_mmu->invlpg() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add ability to skip TLB flush when switching CR3 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Use fast CR3 switch for nested VMX (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Support resetting the MMU context without resetting roots (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add support for fast CR3 switch across different MMU modes (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Introduce KVM_REQ_LOAD_CR3 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Introduce kvm_mmu_calc_root_page_role() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Add fast CR3 switch code path (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Avoid taking MMU lock in kvm_mmu_sync_roots if no sync is needed (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Make sync_page() flush remote TLBs once only (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Restore exit qual for VM-entry failure due to MSR loading (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Nested VM-entry prereqs for event inj (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Don't expose private memslots to L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Add guest_mode to kvm_mmu_page_role (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Basic APIC virtualization controls have three settings (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Eliminate APIC access page sharing between L1 and L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Introduce lapic_mode enumeration (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Refactor mmu_free_roots() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: move MSR_IA32_TSC handling to x86.c (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: Properly update 'tsc_offset' to represent the running guest (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] Add check for APIC access address for vmentry of L2 guests (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Do not load EOI-exitmap while running L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: don't configure EPT identity map for unrestricted guest (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Update the exit_qualification access bits while walking an address (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Enforce NMI controls on vmentry of L2 guests (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Don't halt vcpu when L1 is injecting events to L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: shadow more fields that are read/written on every vmexits (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix bug of injecting L2 exception into L1 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm mmu: check pending exception before injecting APF (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: svm: prepare for new bit definition in nested_ctl (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix vmx_check_nested_events() return value in case an event was reinjected to L2 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: ioapic: Preserve read-only values in the redirection table (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: ioapic: Clear Remote IRR when entry is switched to edge-triggered (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: ioapic: Remove redundant check for Remote IRR in ioapic_set_irq (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: ioapic: Don't fire level irq when Remote IRR set (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix mmu context after VMLAUNCH/VMRESUME failure (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Validate the IA32_BNDCFGS on nested VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: extend usage of RET_MMIO_PF_* constants (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] arch/x86: remove redundant null checks before kmem_cache_destroy (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: cleanup init_rmode_identity_map() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: free_page can handle NULL (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix nested #PF intends to break L1's vmlauch/vmresume (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Handle deferred early VMLAUNCH/VMRESUME failure properly (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Handle VMLAUNCH/VMRESUME failure properly (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Remove nested_vmx_succeed after successful VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: async_pf: Fix #DF due to inject "Page not Present" and "Page Ready" exceptions simultaneously (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Validate the virtual-APIC address on nested VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix trying to cancel vmlauch/vmresume (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: use kvm_event_needs_reinjection (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Fix loss of exception which has not yet been injected (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: fix use of L1 MMIO areas in nested guests (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Avoid guest page table walk when gpa_available is set (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: simplify ept_misconfig (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Disallow illegal IA32_APIC_BASE MSR values (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Bail out immediately if there is no available mmu page (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: validate eptp pointer (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Add support for fast unprotection of nested guest page tables (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: svm: Limit PFERR_NESTED_GUEST_PAGE error_code check to L1 guest (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: fixes to nested virt interrupt injection (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: do not fill vm_exit_intr_error_code in prepare_vmcs12 (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Disallow VM-entry in MOV-SS shadow (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: async_pf: Force a nested vmexit if the injected #PF is async_pf (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: async_pf: Add L1 guest async_pf #PF vmexit handler (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: Simplify kvm_x86_ops->queue_exception parameter list (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fix nested_vmx_check_msr_bitmap_controls (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Validate the I/O bitmaps on nested VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Don't set vmcs12 to "launched" when VMLAUNCH fails (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Validate CR3 target count on nested VM-entry (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Flush TLB when the APIC-access address changes (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: VMCLEAR should not cause the vCPU to shut down (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: vmx: Use the hardware provided GPA instead of page walk (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: svm: Use the hardware provided GPA instead of page walk (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: svm: Add support for additional SVM NPF error codes (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: CPUID.01H:EDX.APIC[bit 9] should mirror IA32_APIC_BASE[11] (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: nvmx: Fetch VM_INSTRUCTION_ERROR from vmcs02 on vmx->fail (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm/x86: Replace smp_mb() with smp_store_mb/release() in the walk_shadow_page_lockless_begin/end() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: coalesce more page zapping in mmu_sync_children (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: move zap/flush to kvm_mmu_get_page (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: invert return value of mmu.sync_page and *kvm_sync_page* (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: cleanup __kvm_sync_page and its callers (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: use kvm_sync_page in kvm_sync_pages (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: move TLB flush out of __kvm_sync_page (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: introduce kvm_mmu_flush_or_zap (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: mmu: Fix ubsan warnings (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Remove unused parameter parent_pte from kvm_mmu_get_page() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Use for_each_rmap_spte macro instead of pte_list_walk() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Move parent_pte handling from kvm_mmu_get_page() to link_shadow_page() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Move initialization of parent_ptes out from kvm_mmu_alloc_page() (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Make mmu_set_spte() return emulate value (Vitaly Kuznetsov) [1565739 1497611]
-- [x86] kvm: x86: mmu: Add helper function to clear a bit in unsync child bitmap (Vitaly Kuznetsov) [1565739 1497611]
-
-* Mon Mar 11 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1020.el7]
-- [scsi] fnic: Remove set but not used variable 'vdev' (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: no need to check return value of debugfs_create functions (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Update fnic driver version to 1.6.0.47 (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Enable fnic devcmd2 interface (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Adding devcmd2 init and posting interfaces (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Add devcmd2 initialization helpers (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: fnic devcmd2 controller definitions (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: fnic devcmd2 interface definitions (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Impose upper limit on max. # of CQs processed per intr (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: RQ enable and then post descriptors (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: delaying vnic dev enable till after req intr (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Warn when calling done for IO not issued to fw (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Failing to queue aborts due to Q full cause terminate driver timeout (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Add port speed stat to fnic debug stats (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: use fnic_lock to guard fnic->state_flags (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: vnic_rq_clean change BUG_ON to WARN_ON (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: change fnic queue depth to 256 (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: support to display 20G port speed (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Use vzalloc (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: fix fnic_scsi_host_{start, end}_tag (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: replace gross legacy tag hack with blk-mq hack (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: switch to generic DMA API (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: fix spelling mistake in fnic stats "Abord" -> "Abort" (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: use kzalloc in fnic_fcoe_process_vlan_resp (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: add a space after p in printf format (Govindarajulu Varadarajan) [1631570]
-- [scsi] fnic: Fix coccinelle warnings (Govindarajulu Varadarajan) [1631570]
-- [scsi] qedi: Add ep_state for login completion on un-reachable targets (Nilesh Javali) [1643540]
-- [scsi] qedi: Update driver version to 8.33.0.21 (Nilesh Javali) [1643540]
-- [scsi] qedi: Move LL2 producer index processing in BH (Nilesh Javali) [1643540]
-- [scsi] qedi: add module param to set ping packet size (Nilesh Javali) [1643540]
-- [scsi] qedi: Add packet filter in light L2 Rx path (Nilesh Javali) [1643540]
-- [scsi] qedi: Check for session online before getting iSCSI TLV data (Nilesh Javali) [1643540]
-- [scsi] qedi: Allocate IRQs based on msix_cnt (Nilesh Javali) [1643540]
-- [scsi] qedi: Replace PAGE_SIZE with QEDI_PAGE_SIZE (Nilesh Javali) [1643540]
-- [scsi] qedi: Use zeroing allocator instead of allocator/memset (Nilesh Javali) [1643540]
-- [scsi] qedi: Fix spelling mistake "OUSTANDING" -> "OUTSTANDING" (Nilesh Javali) [1643540]
-- [scsi] qedi: Cleanup redundant QEDI_PAGE_SIZE macro definition (Nilesh Javali) [1643540]
-- [scsi] qedi: Fix a potential buffer overflow (Nilesh Javali) [1643540]
-- [scsi] qedi: Send driver state to MFW (Nilesh Javali) [1643540]
-- [scsi] qedi: tidy up a size calculation (Nilesh Javali) [1643540]
-- [scsi] qedi: Fix misleading indentation (Nilesh Javali) [1643540]
-- [scsi] treewide: kzalloc() -> kcalloc() (Nilesh Javali) [1643540]
-- [scsi] qedf: NULL check before some freeing functions is not needed (Nilesh Javali) [1643538]
-- [scsi] qedf: Send the driver state to MFW (Nilesh Javali) [1643538]
-- [target] scsi: target: make the pi_prot_format ConfigFS path readable (Maurizio Lombardi) [1684471]
-- [target] scsi: target/iscsi: fix error msg typo when create lio_qr_cache failed (Maurizio Lombardi) [1684471]
-- [target] scsi: target/tcmu: Fix queue_cmd_ring() declaration (Maurizio Lombardi) [1684471]
-- [target] scsi: target: replace fabric_ops.name with fabric_alias (Maurizio Lombardi) [1684471]
-- [target] scsi: target: drop unnecessary get_fabric_name() accessor from fabric_ops (Maurizio Lombardi) [1684471]
-- [target] scsi: target: drop unused pi_prot_format attribute storage (Maurizio Lombardi) [1684471]
-- [target] scsi: target: add emulate_pr backstore attr to toggle PR support (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Avoid that a kernel oops is triggered when COMPARE AND WRITE fails (Maurizio Lombardi) [1684471]
-- [target] scsi: target: Don't request modules that aren't even built (Maurizio Lombardi) [1684471]
-- [target] scsi: target: Set response length for REPORT TARGET PORT GROUPS (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Always call transport_complete_callback() upon failure (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Use sg_alloc_table() instead of open-coding it (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Remove the SCF_COMPARE_AND_WRITE_POST flag (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Remove an unused data member from struct xcopy_pt_cmd (Maurizio Lombardi) [1684471]
-- [target] scsi: target/core: Fix spelling in two source code comments (Maurizio Lombardi) [1684471]
-- [target] scsi: target: stash sess_err_stats on Data-Out timeout (Maurizio Lombardi) [1684471]
-- [target] scsi: target: split out helper for cxn timeout error stashing (Maurizio Lombardi) [1684471]
-- [target] scsi: target: log NOP ping timeouts as errors (Maurizio Lombardi) [1684471]
-- [target] scsi: target: log Data-Out timeouts as errors (Maurizio Lombardi) [1684471]
-- [target] scsi: target: use ISCSI_IQN_LEN in iscsi_target_stat (Maurizio Lombardi) [1684471]
-- [target] scsi: iscsi: target: fix spelling mistake "entires" -> "entries" (Maurizio Lombardi) [1684471]
-- [target] scsi: iscsi: target: Don't use stack buffer for scatterlist (Maurizio Lombardi) [1684471]
-- [target] scsi: iscsi: target: Fix conn_ops double free (Maurizio Lombardi) [1684471]
-- [vhost] scsi: target: loop, usb, vhost, xen: use target_remove_session (Maurizio Lombardi) [1684471]
-- [target] scsi: tcm_fc: use target_remove_session (Maurizio Lombardi) [1684471]
-- [target] scsi: target: srp, vscsi, sbp, qla: use target_remove_session (Maurizio Lombardi) [1684471]
-- [target] scsi: target: add session removal function (Maurizio Lombardi) [1684471]
-- [infiniband] scsi: target: rename target_alloc_session (Maurizio Lombardi) [1684471]
-- [target] scsi: target: fix __transport_register_session locking (Maurizio Lombardi) [1684471]
-- [scsi] bnx2fc: Fix error handling in probe() (Maurizio Lombardi) [1643544]
-- [scsi] bnx2fc: Fix NULL dereference in error handling (Maurizio Lombardi) [1643544]
-- [scsi] bnx2fc: Remove set but not used variable 'oxid' (Maurizio Lombardi) [1643544]
-- [scsi] bnx2fc_fcoe: Use skb_queue_walk_safe() (Maurizio Lombardi) [1643544]
-- [scsi] bnx2i: remove set but not used variable 'cid_num' (Maurizio Lombardi) [1643546]
-- [scsi] bnx2i: add error handling for ioremap_nocache (Maurizio Lombardi) [1643546]
-- [platform] x86: mxm-wmi: Evaluate wmi method with instance number 0x0 (Prarit Bhargava) [1667232]
-- [platform] x86: asus-wmi: Evaluate wmi method with instance number 0x0 (Prarit Bhargava) [1667232]
-- [platform] x86: acer-wmi: Using zero as first WMI instance number (Prarit Bhargava) [1667232]
-- [char] ipmi: msghandler: Fix potential Spectre v1 vulnerabilities (Tony Camuso) [1642673]
-- [char] ipmi:ssif: Fix handling of multi-part return messages (Tony Camuso) [1642673]
-- [char] ipmi: Replace synchronize_sched() with synchronize_rcu() (Tony Camuso) [1642673]
-- [char] ipmi: Fix timer race with module unload (Tony Camuso) [1642673]
-- [char] ipmi:ssif: Add support for multi-part transmit messages > 2 parts (Tony Camuso) [1642673]
-- [char] ipmi: Free the address list on module cleanup (Tony Camuso) [1642673]
-- [char] ipmi: Don't leave holes in the I2C address list in the ssif driver (Tony Camuso) [1642673]
-- [char] ipmi: Convert pr_xxx() to dev_xxx() in the BT code (Tony Camuso) [1642673]
-- [char] ipmi:dmi: Ignore IPMI SMBIOS entries with a zero base address (Tony Camuso) [1642673]
-- [char] ipmi:dmi: Use pr_fmt in the IPMI DMI code (Tony Camuso) [1642673]
-- [char] ipmi: Change to ktime_get_ts64() (Tony Camuso) [1642673]
-- [char] ipmi_si: fix potential integer overflow on large shift (Tony Camuso) [1642673]
-- [char] ipmi_si_pci: fix NULL device in ipmi_si error message (Tony Camuso) [1642673]
-- [char] ipmi: Convert printk(KERN_<level> to pr_<level>( (Tony Camuso) [1642673]
-- [char] ipmi: Use more common logging styles (Tony Camuso) [1642673]
-- [char] ipmi: msghandler: Add and use pr_fmt and dev_fmt, remove PFX (Tony Camuso) [1642673]
-- [char] pci:ipmi: Move IPMI PCI class id defines to pci_ids.h (Tony Camuso) [1642673]
-- [char] ipmi: Fix NULL pointer dereference in ssif_probe (Tony Camuso) [1642673]
-- [char] ipmi: Fix I2C client removal in the SSIF driver (Tony Camuso) [1642673]
-- [char] ipmi_ssif: Remove duplicate NULL check (Tony Camuso) [1642673]
-- [char] treewide: kzalloc() -> kcalloc() (Tony Camuso) [1642673]
-- [char] ipmi_si: Rename intf_num to si_num (Tony Camuso) [1642673]
-- [char] ipmi_ssif: Get rid of unused intf_num (Tony Camuso) [1642673]
-- [char] ipmi_devintf: Add an error return on invalid ioctls (Tony Camuso) [1642673]
-- [char] ipmi_ssif: Remove usecount handling (Tony Camuso) [1642673]
-- [char] ipmi: Fix some counter issues (Tony Camuso) [1642673]
-- [char] ipmi_devintf: Small lock rework (Tony Camuso) [1642673]
-- [char] ipmi: Clean up some style issues in the message handler (Tony Camuso) [1642673]
-- [char] ipmi: Break up i_ipmi_request (Tony Camuso) [1642673]
-- [char] ipmi:devintf: Clean up some coding style issues (Tony Camuso) [1642673]
-- [char] ipmi: Clean up some debug code (Tony Camuso) [1642673]
-- [char] ipmi:watchdog: Replace printk() with pr_xxx() (Tony Camuso) [1642673]
-- [char] ipmi:watchdog: Rework locking and handling (Tony Camuso) [1642673]
-- [char] ipmi: Add a maintenance mode for IPMB messages (Tony Camuso) [1642673]
-- [char] ipmi: Add a way to tune some timeouts (Tony Camuso) [1642673]
-- [char] ipmi/parisc: Add IPMI chassis poweroff for certain HP PA-RISC and IA-64 servers (Tony Camuso) [1642673]
-- [char] ipmi_ssif: Fix kernel panic at msg_done_handler (Tony Camuso) [1642673]
-- [char] ipmi:pci: Blacklist a Realtek "IPMI" device (Tony Camuso) [1642673]
-- [char] ipmi: Remove ACPI SPMI probing from the system interface driver (Tony Camuso) [1642673]
-- [char] ipmi: Remove ACPI SPMI probing from the SSIF (I2C) driver (Tony Camuso) [1642673]
-- [char] ipmi: missing error code in try_smi_init() (Tony Camuso) [1642673]
-- [char] ipmi: use ARRAY_SIZE for poweroff_functions array sizing calculation (Tony Camuso) [1642673]
-- [char] ipmi: Consolidate cleanup code (Tony Camuso) [1642673]
-- [char] ipmi: Remove some unnecessary initializations (Tony Camuso) [1642673]
-- [char] ipmi: Add or fix SPDX-License-Identifier in all files (Tony Camuso) [1642673]
-- [char] ipmi: Re-use existing macros for built-in properties (Tony Camuso) [1642673]
-- [char] ipmi:pci: Make the PCI defines consistent with normal Linux ones (Tony Camuso) [1642673]
-- [char] ipmi/powernv: Fix error return code in ipmi_powernv_probe() (Tony Camuso) [1642673]
-- [char] ipmi: Clear smi_info->thread to prevent use-after-free during module unload (Tony Camuso) [1642673]
-- [char] ipmi: use correct string length (Tony Camuso) [1642673]
-- [char] ipmi watchdog: fix typo in parameter description (Tony Camuso) [1642673]
-- [char] ipmi_si_platform: Fix typo in parameter description (Tony Camuso) [1642673]
-- [char] treewide: setup_timer() -> timer_setup() (Tony Camuso) [1642673]
-- [gpu] drm/amd/display: don't call dm_pp_ function from an fpu block (Rob Clark) [1655767]
-- [gpu] drm/cirrus: fix connector leak at unload (Rob Clark) [1523670]
-- [gpu] drm: backport from v5.0 (Rob Clark) [1642329 1642325 1641564 1641562 1616387 1642696 1642334 1642335 1655767 1642456 1640933 1633840 1633838 1633835 1519303]
-- [kernel] mutex: Fix w/w mutex deadlock injection (Rob Clark) [1655767]
-- [gpu] mm, drm/i915: mark pinned shmemfs pages as unevictable (Rob Clark) [1655767]
-- [kernel] rcu: Export init_rcu_head() and destroy_rcu_head() to GPL modules (Rob Clark) [1655767]
-- [acpi] acpi / video: Move ACPI_VIDEO_NOTIFY_* defines to acpi/video.h (Rob Clark) [1655767]
-- [kernel] sched/debug: Intruduce task_state_to_char() helper function (Rob Clark) [1655767]
-- [kernel] rcu: Provide grace-period piggybacking API (Rob Clark) [1655767]
-- [kernel] rcu: Export debug_init_rcu_head() and and debug_init_rcu_head() (Rob Clark) [1655767]
-- [kernel] misc: rtsx: rename SG_END macro (Rob Clark) [1655767]
-- [kernel] lib/scatterlist: Add SG_CHAIN and SG_END macros for LSB encodings (Rob Clark) [1655767]
-- [kernel] x86/uaccess, sched/preempt: Verify access_ok() context (Rob Clark) [1655767]
-- [kernel] list: introduce list_bulk_move_tail helper (Rob Clark) [1655767]
-- [kernel] linux/kernel.h: move DIV_ROUND_DOWN_ULL() macro (Rob Clark) [1655767]
-- [kernel] fbdev: Add FBINFO_HIDE_SMEM_START flag (Rob Clark) [1655767]
-- [kernel] linux/bitops.h: introduce BITS_PER_TYPE (Rob Clark) [1655767]
-- [kernel] Move ascii85 functions from i915 to linux/ascii85.h (Rob Clark) [1655767]
-- [sound] alsa: hda: Make audio component support more generic (Rob Clark) [1655767]
-- [sound] alsa: hda/i915: Associate audio component with devres (Rob Clark) [1655767]
-- [drm] i915: Split audio component to a generic type (Rob Clark) [1655767]
-- [kernel] pci: Export pcie_get_speed_cap and pcie_get_width_cap (Rob Clark) [1655767]
-- [kernel] string: drop __must_check from strscpy() and restore strscpy() usages in cgroup (Rob Clark) [1655767]
-- [lib] string: provide strscpy() (Rob Clark) [1655767]
-- [video] fbdev: add remove_conflicting_pci_framebuffers() (Rob Clark) [1655767]
-- [kernel] sched/preempt, mm/fault: Decouple preemption from the page fault logic (Rob Clark) [1655767]
-- [fs] callers of iov_copy_from_user_atomic() don't need pagecache_disable() (Rob Clark) [1655767]
-- [kernel] mm/fault, arch: Use pagefault_disable() to check for disabled pagefaults in the handler (Rob Clark) [1655767]
-- [mm] sched/preempt, mm/fault: Trigger might_sleep() in might_fault() with disabled pagefaults (Rob Clark) [1655767]
-- [kernel] sched/preempt, mm/fault: Count pagefault_disable() levels in pagefault_disabled (Rob Clark) [1655767]
-
-* Sat Mar 09 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1019.el7]
-- [documentation] alsa: fix Documentation/sound/alsa/HD-Audio-Models.txt (Jaroslav Kysela) [1657855]
-- [sound] alsa: opl3: remove redundant pointer opl3 (Jaroslav Kysela) [1657855]
-- [sound] alsa: opl3: Declare common variables properly (Jaroslav Kysela) [1657855]
-- [sound] alsa: Remove empty init and exit (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Nuke snd_pcm_lib_mmap_vmalloc() (Jaroslav Kysela) [1657855]
-- [sound] alsa: Clean up with new procfs helpers (Jaroslav Kysela) [1657855]
-- [sound] alsa: aloop: Reduced duplicated PCM ops definition (Jaroslav Kysela) [1657855]
-- [sound] alsa: ali5451: remove redundant pointer 'codec' (Jaroslav Kysela) [1657855]
-- [sound] alsa: fm801: add error handling for snd_ctl_add (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: add error handling for snd_ctl_add (Jaroslav Kysela) [1657855]
-- [sound] alsa: ctxfi: cthw20k2: Replace mdelay() with msleep() and usleep_range() (Jaroslav Kysela) [1657855]
-- [sound] alsa: ctxfi: use enum type CT_SUM_CTL where appropriate (Jaroslav Kysela) [1657855]
-- [sound] alsa: echoaudio: Drop superfluous macro (Jaroslav Kysela) [1657855]
-- [sound] alsa: echoaudio: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flag (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: Mark expected switch fall-throughs (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: remove redundant variable attn (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: remove redundant assignment to tmp (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda-beep: add SPDX identifiers (Jaroslav Kysela) [1657855]
-- [sound] alsa: ice1712: fix a missing check of snd_i2c_sendbytes (Jaroslav Kysela) [1657855]
-- [sound] alsa: trident: Suppress gcc string warning (Jaroslav Kysela) [1657855]
-- [sound] alsa: license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Jaroslav Kysela) [1657855]
-- [sound] alsa: treewide: Use array_size() in vmalloc() (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: Fix potential Spectre v1 vulnerabilities (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: fix possible info leak to userspace on SNDRV_EMU10K1_IOCTL_INFO (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: Fix missing __force annotation for user/kernel pointer cast (Jaroslav Kysela) [1657855]
-- [sound] alsa: emu10k1: fix spelling mistake: "Caputre" -> "Capture" (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs5535audio: Fix invalid endian conversion (Jaroslav Kysela) [1657855]
-- [sound] alsa: alsa:: ctxfi: cthw20k1: Replace mdelay() with msleep() (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs5535audio: remove redundant pointer 'dma' (Jaroslav Kysela) [1657855]
-- [sound] alsa: ca0106: Disable IZD on SB0570 DAC to fix audio pops (Jaroslav Kysela) [1657855]
-- [sound] alsa: au88x0: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs46xx: remove redundant pointer 'ins' (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs46xx: Clean up proc file creations (Jaroslav Kysela) [1657855]
-- [sound] alsa: cs46xx: Potential NULL dereference in probe (Jaroslav Kysela) [1657855]
-- [sound] alsa: au88xx: Add fall-through annotations (Jaroslav Kysela) [1657855]
-- [sound] alsa: atiixp_modem: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: atiixp: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: atiixp: fix fall-through annotations (Jaroslav Kysela) [1657855]
-- [sound] alsa: asihpi: remove redundant variable max_streams (Jaroslav Kysela) [1657855]
-- [sound] alsa: asihpi: clean up indentation, replace spaces with tab (Jaroslav Kysela) [1657855]
-- [sound] alsa: asihpi: Fix PCM format notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: lx6464es: Missing error code in snd_lx6464es_create() (Jaroslav Kysela) [1657855]
-- [sound] alsa: lx6464es: add error handling for pci_ioremap_bar (Jaroslav Kysela) [1657855]
-- [sound] alsa: lola: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: mixart: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: mixart: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: oxygen: initialize spdif_playback_enable to 0 (Jaroslav Kysela) [1657855]
-- [sound] alsa: oxygen: use match_string() helper (Jaroslav Kysela) [1657855]
-- [sound] alsa: virtuoso: add de-emphasis control (Jaroslav Kysela) [1657855]
-- [sound] alsa: riptide: Properly endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: rme9652: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1657855]
-- [sound] alsa: trident: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: sonicvibes: add error handling for snd_ctl_add (Jaroslav Kysela) [1657855]
-- [sound] alsa: sonicvibes: remove redundant pointer 'dir' (Jaroslav Kysela) [1657855]
-- [sound] alsa: vx222: Fix invalid endian conversions (Jaroslav Kysela) [1657855]
-- [sound] alsa: ymfpci: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci: Clean up with new procfs helpers (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Move card id proc creation into info.c (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Minor optimization (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Drop unused snd_info_entry.card field (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Add standard helpers for card proc file entries (Jaroslav Kysela) [1657855]
-- [sound] alsa: info: Always register entries recursively (Jaroslav Kysela) [1657855]
-- [sound] alsa: proc: Avoid possible leaks of snd_info_entry objects (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Simplify proc file destruction (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Unify snd_pcm_group initialization (Jaroslav Kysela) [1657855]
-- [sound] alsa: compress: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: opl4: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: emux: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: ac97: Fix incorrect bit shift at AC97-SPSA control write (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci: Remove empty init and exit (Jaroslav Kysela) [1657855]
-- [sound] alsa: rme32: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flag (Jaroslav Kysela) [1657855]
-- [sound] alsa: maestro3: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0m: Register irq handler after register initializations (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0m: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0: Fix fall-through annotations (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0: Use the new non-cached allocation for 440MX workaround (Jaroslav Kysela) [1657855]
-- [sound] alsa: intel8x0: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: ens137x: remove redundant array pcm_devs (Jaroslav Kysela) [1657855]
-- [sound] alsa: ens137x: remove redundant variable result (Jaroslav Kysela) [1657855]
-- [sound] alsa: arch: Mass conversion of smp_mb__*() (Jaroslav Kysela) [1657855]
-- [sound] alsa: bt87x: Proper endian notations (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add support for new T+A USB DAC (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Cleanup DSD whitelist (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add Opus #3 to quirks for native DSD support (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add quirk for MOTU MicroBook II (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix implicit fb endpoint setup by quirk (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Expose sample resolution through proc interface (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1657855]
-- [sound] alsa: asoc: intel: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Define snd_pcm_lib_preallocate_*() as returning void (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: sound card name from device tree (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Disable PC beep in passthrough on alc285 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Headset microphone support for System76 darp5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable audio jacks of ASUS UX362FA with ALC294 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Reduce click noise on Dell Precision 5820 headphone (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use a common helper for hp pin reference (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix lose hp_pins for disable auto mute (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Apply ALC294 hp init also for S4 resume (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fixed hp_pin no value (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Headset microphone and internal speaker support for System76 oryp5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix build error without CONFIG_PCI (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add quirk for HP EliteBook 840 G5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Use standard device registration for beep (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Proper endian notations for BDL pointers (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Fix implicit PCM format type conversion (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Fix mismatches for register mask and value in hdac controller (Jaroslav Kysela) [1657855]
-- [sound] alsa: don't call skl_init_chip() to reset intel skl soc (Jaroslav Kysela) [1657855]
-- [sound] alsa: enable interrupt after dma buffer initialization (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: export process_unsol_events() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: add driver flag for runtime PM (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: implement runtime suspend/resume (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: remove redundant clock enable API (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: add runtime PM callbacks (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: get clock handles early in probe (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: runtime power management support (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add mute LED support for HP ProBook 470 G5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: program stripe control for codec (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add verbs for stripe control (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: program stripe bits for controller (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add register offset for stripe control (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add api to program stripe control bits (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Fix a mask wrong issue in snd_hdac_stream_start() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix typo for ALC225 model (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Disable headset Mic VREF for headset mode of ALC225 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add unplug function into unplug state of Headset Mode for ALC225 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Support Dell headset mode for New AIO platform (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: clear pending irq handlers (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable the headset mic auto detection for ASUS laptops (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable audio jacks of ASUS UX391UA with ALC294 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add mute LED support for HP EliteBook 840 G4 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add support for Huawei WMI micmute LED (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: fix front speakers on Huawei MBXP (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - make pci_iounmap() call conditional (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable audio jacks of ASUS UX433FN/UX333FA with ALC294 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Enable audio jacks of ASUS UX533FD with ALC294 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: ALC294 mic and headset-mode fixups for ASUS X542UN (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix the mute LED regresion on Lenovo X1 Carbon (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Enable headset button support for new codec (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add jack button support (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add jack pointer and unsolicited event bits to callback (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fixed headphone issue for ALC700 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Fix mic issue on Acer AIO Veriton Z4860G/Z6860G (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: Fix mic issue on Acer AIO Veriton Z4660G (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add support for Acer Aspire C24-860 headset mic (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek: ALC286 mic and headset-mode fixups for Acer Aspire U27-880 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/hdmi - Add Tegra186 and Tegra194 support (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra - Probe up to 8 codecs (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix speaker output regression on Thinkpad T570 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add support for AMD Stoney Ridge (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/tegra: compatible string as shortname (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Support led audio trigger (Jaroslav Kysela) [1657855]
-- [sound] alsa: update dell-wmi mic-mute registration to new world order (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Support ALC300 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add auto-mute quirk for HP Spectre x360 laptop (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - fix the pop noise on headphone for lenovo laptops (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - fix headset mic detection for MSI MS-B171 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add ASRock N68C-S UCC the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - fix AE-5 pincfg (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add new ZxR quirk (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Call pci_iounmap() instead of iounmap() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add quirk entry for HP Pavilion 15 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Optimize for non-PCI configuration (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix incorrect clearance of thinkpad_acpi hooks (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Actually fix microphone issue (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add 2 more models to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix headphone pin config for ASUS G751 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix input effect controls for desktop cards (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add error checking in ca0132_build_controls() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Clean up patch_ca0132() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix microphone inconsistency issues (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda - Add ASUS G751 quirk model entry (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Add quirk for ASUS G751 laptop (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/sigmatel - Disable automute for Elo VuPoint (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Cannot adjust speaker's volume on Dell XPS 27 7760 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR exit commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR 600 ohm gain control (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Remove input select enum for ZxR (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR input/output select commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR DSP post-download commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR init commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add DBpro hda_codec_ops (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR pincfg (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add ZxR quirks + new quirk check function (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix surround sound with output effects (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Fix AE-5 control type (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add AE-5 exit function (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add AE-5 specific controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add input selection commands for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add output set commands for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Clean up ca0132_alt_out_select (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add DSP setup functions for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Merge post-dsp functions + cleanup (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Change firmware name and usage (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add AE-5 regular init setup (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add AE-5 pre-init and ca0113 functions (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Change ca0132_mmio_init for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Set AE-5 bools and select mixer (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add pincfg for AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add quirk for Sound BlasterX AE-5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Define new verbs and control params (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: fix unused variable warning (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Fix implicit definition of pci_iomap() on SH (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix cancel_work_sync() stall from jackpoll work (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Clean up jackpoll_ms option handling (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: move hda_codec.h to sound (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Remove substream allocation/free ops (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Use new non-cached allocation for non-snoop mode (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Check the non-cached stream buffers more explicitly (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add exit commands for Recon3D (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Change mixer controls for Recon3D (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add Recon3D input and output select commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add DSP setup defaults for Recon3D (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add Recon3D startup functions and setup (Jaroslav Kysela) [1657855]
-- [sound] alsa: treewide: kzalloc() -> kcalloc() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add bool variable to enable/disable pci region2 mmio (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add Recon3D pincfg (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add quirk ID and enum for Recon3D (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Add alt_functions unsolicited response (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Clean up ca0132_init function (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Create mmio gpio function to make code clearer (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add mute LED quirk for HP Spectre x360 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Correct Asrock B85M-ITX power_save blacklist entry (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/hdmi: Use single mutex unlock in error paths (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Sleep for 10ms after entering D3 on Conexant codecs (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Turn CX8200 into D3 as well upon reboot (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix a sparse warning about snd_ctl_elem_iface_t (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132 - Use NULL instead of 0 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Yet another Clevo P950 quirk entry (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add Panasonic CF-SZ6 headset jack quirk (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add mute led support for HP ProBook 455 G5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: use PCI_BASE_CLASS_DISPLAY to replace PCI_CLASS_DISPLAY_VGA (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Update a pci quirk device name (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add Recon3Di quirk for Gigabyte G1.Sniper Z97 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Handle pm failure during hotplug (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/hdmi - Don't fall back to generic when i915 binding fails (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add AZX_DCAPS_PM_RUNTIME for AMD Raven Ridge (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: split snd_hda_codec_new function (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Move in_pm accessors to HDA core (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Kill snd_hda_codec_update_cache() (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC882 & co (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC262 (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC268 (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC259 & co (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/realtek - Comprehensive model list for ALC662 & co (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Apply PRE_PROBE fixup after ALC269 codec variant setups (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/via - Use standard verb containers (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/via - Simplify control management (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/via - Rewrite with error goto (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/cirrus - Simplify creation of new controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/conexant - Clean up beep code (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use common helper for creating beep controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use common helper for creating ALC268 beep controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use common GPIO mask for ALC660VD ASUS fixup (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Simplify Dell XPS13 GPIO handling (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Convert some manual GPIO setups (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Simplify mute LED GPIO handling (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Simplify alc885_fixup_macpro_gpio() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Consolidate gpio_data and gpio_led (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add GPIO data update helper (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Manage GPIO bits commonly (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Allow skipping spec->init_amp detection (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add a quirk for FSC ESPRIMO U9210 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: make array ca0132_alt_chmaps static (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Simplify alc269_fixup_hp_line1_mic1_led() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Sanity check of unexpected cap_sync_hook override (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/sigmatel - Use common helper for mic mute LED (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Allow multiple ADCs for mic mute LED controls (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/conexant - Use the mic-mute LED helper (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Use the mic-mute LED helper for HP and others (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Use the common helper for thinkpad_acpi mic mute LED handling (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Move mic mute LED helper to the generic parser (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Force to link down at runtime suspend on ATI/AMD HDMI (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Fix DMic data rate for Alienware M17x R4 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Restore PCM Analog Mic-In2 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Don't test for QUIRK_NONE (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Restore behavior of QUIRK_ALIENWARE (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Delete redundant UNSOL event requests (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Delete pointless assignments to struct auto_pin_cfg fields (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Fix pop noise on Lenovo P50 & co (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Add shutup hint (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add dock and led support for HP ProBook 640 G4 (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: add dock and led support for HP EliteBook 830 G5 (Jaroslav Kysela) [1657855]
-- [sound] alsa: pci/hda: Remove unused, broken, header file (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Handle kzalloc() failure in snd_hda_attach_pcm_stream() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Refactor alc269_fixup_hp_mute_led_mic*() (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Intel NUC5i7RY to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: Use octal not symbolic permissions (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda - Fix runtime PM (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add ASRock H81M-HDS to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Gigabyte P55A-UD3 and Z87-D3HP to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Clevo W35xSS_370SS to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Intel NUC7i3BNB to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [documentation] alsa: hda/conexant - Add hp-mic-fix model string (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/conexant - Add fixup for HP Z2 G4 workstation (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: constify parameter table for effects (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: merge strings just for printk (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: constify read-only members of string array (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: constify templates for control element set (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: fix array_size.cocci warnings (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: use position offset macro of TLV data (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/realtek - Clevo P950ER ALC1220 Fixup (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda: Add Lenovo C50 All in one to the power_save blacklist (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add new control changes for SBZ + R3Di (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add ca0132_alt_set_vipsource (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add DSP Volume set and New mixers for SBZ + R3Di (Jaroslav Kysela) [1657855]
-- [sound] alsa: scripts/spelling.txt: add "followings" pattern and fix typo instances (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add alt_select_in/out for R3Di + SBZ (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add the ability to set src_id on scp commands (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add dsp setup + gpio functions for r3di (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add dsp setup related commands for the sbz (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: update core functions for sbz + r3di (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: add extra init functions for r3di + sbz (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add extra exit functions for R3Di and SBZ (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add PCI region2 iomap for SBZ (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: Add pincfg for SBZ + R3Di, add fp hp auto-detect (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: R3Di and SBZ quirk entires + alt firmware loading (Jaroslav Kysela) [1657855]
-- [sound] alsa: hda/ca0132: revert "[sound] pci: hda/ca0132 - use generic parser for some models" (Jaroslav Kysela) [1657855]
-- [sound] alsa: 6fire: remove unused variable card (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: fix check on snd_card_register (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: Add sanity checks for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: Fix invalid stream URBs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: Suppress kernel warning at page allocation failures (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: don't bother with access_ok() in ->dsp_load() (Jaroslav Kysela) [1657855]
-- [sound] alsa: usx2y: don't bother with memdup_user() for 16-byte structure (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Disable the quirk for Nura headset (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix an out-of-bound read in create_composite_quirks (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add vendor and product name for Dell WD19 Dock (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: update quirk for B&W PX to remove microphone (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix multiple definitions in AU0828_DEVICE() macro (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Fix NULL dereference at podhd_disconnect() (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Fix missing initialization before error path (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: add support for POD HD DESKTOP (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Use correct endpoint type for midi output (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Fix leftover URB at error-path during probe (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Add yet more sanity checks for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: Add a sanity check for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: line6: make snd_pcm_ops const (Jaroslav Kysela) [1657855]
-- [sound] alsa: hiface: Add sanity checks for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Drop superfluous ifndef (Jaroslav Kysela) [1657855]
-- [sound] alsa: caiaq: Add fall-through annotation (Jaroslav Kysela) [1657855]
-- [sound] alsa: caiaq: Add yet more sanity checks for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: caiaq: Fix stray URB at probe error path (Jaroslav Kysela) [1657855]
-- [sound] alsa: caiaq: Add a sanity check for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: caiaq: audio: use irqsave() in USB's complete callback (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Initial Power Domain support (Jaroslav Kysela) [1657855]
-- [sound] alsa: bcd2000: Add a sanity check for invalid EPs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: add boot quirk for Axe-Fx III (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: fix CM6206 register definitions (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add SMSL D1 to quirks for native DSD support (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Define registers for CM6206 (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: quirks: Replace mdelay() with msleep() and usleep_range() (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add support for Encore mDSD USB DAC (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Generic DSD detection for Thesycon-based implementations (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Remove explicitly listed Mytek devices (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Generic DSD detection for XMOS-based implementations (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: fix spelling mistake "Frequence" -> "Frequency" (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add custom mixer status quirks for RME CC devices (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Declare the common variable in header file (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: remove redundant check on err (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Tidy up logic for Processing Unit min/max values (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Avoid access before bLength check in build_audio_procunit() (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Remove set but not used variable 'first_ch_bits' (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Check mixer unit descriptors more strictly (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Unify virtual type units type to UAC3 values (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-midi: use irqsave() in USB's complete callback (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add native DSD support for Mytek DACs (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: remove redundant pointer 'urb' (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Allow changing from a bad sample rate (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Always check descriptor sizes in parser code (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add support for Processing Units in UAC3 (Jaroslav Kysela) [1657855]
-- [uapi] alsa: usb-audio: Add bi-directional terminal types (Jaroslav Kysela) [1657855]
-- [uapi] alsa: usb-audio: Fix parsing descriptor of UAC2 processing unit (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Processing Unit controls parsing in UAC2 (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add support for Selector Units in UAC3 (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Always create the interrupt pipe for the mixer (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add insertion control for UAC3 BADD (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Change in connectors control creation interface (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: uac3: Parse Input Terminal number of channels (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: UAC3 Add support for connector insertion (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: UAC3. Add support for mixer unit (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: mixer: volume quirk for CM102-A+/102S+ (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix invalid use of sizeof in parse_uac_endpoint_attributes() (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Operate UAC3 Power Domains in PCM callbacks (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: AudioStreaming Power Domain parsing (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: stream: fix potential memory leak during uac3 interface parsing (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Use Class Specific EP for UAC3 devices (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Apply rate limit to warning messages in URB complete callback (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Simplify PCM open/close callbacks (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Move autoresume call at the end of open (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Fix UAF decrement if card has no live interfaces in card.c (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Add UAC3 Power Domains to suspend/resume (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Allow non-vmalloc buffer for PCM buffers (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Avoid lowlevel device object (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb-audio: Follow standard coding style (Jaroslav Kysela) [1657855]
-- [sound] alsa: usb: add UAC3 BADD profiles support (Jaroslav Kysela) [1657855]
-- [sound] alsa: memalloc: Add non-cached buffer type (Jaroslav Kysela) [1657855]
-- [sound] alsa: memalloc: Simplify snd_malloc_dev_pages() calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: memalloc: Don't align the size to power-of-two (Jaroslav Kysela) [1657855]
-- [sound] alsa: memalloc: Don't exceed over the requested size (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Use standard lower_32_bits() and upper_32_bits() (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: signedness bug in snd_pcm_plug_alloc() (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1657855]
-- [sound] alsa: oss: Use kvzalloc() for local buffer allocations (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Fix starvation on down_write_nonblock() (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Call snd_pcm_unlink() conditionally at closing (Jaroslav Kysela) [1657855]
-- [sound] alsa: control: Fix missing __user annotation (Jaroslav Kysela) [1657855]
-- [sound] alsa: snd_ctl_elem_init_enum_names(): switch to vmemdup_user() (Jaroslav Kysela) [1657855]
-- [sound] alsa: replace_user_tlv(): switch to vmemdup_user() (Jaroslav Kysela) [1657855]
-- [sound] alsa: treewide: Use struct_size() for kmalloc()-family (Jaroslav Kysela) [1657855]
-- [sound] alsa: treewide: kmalloc() -> kmalloc_array() (Jaroslav Kysela) [1657855]
-- [sound] alsa: vmaster: use position offset macro of TLV data (Jaroslav Kysela) [1657855]
-- [uapi] alsa: control: complement TLV macro for db-minmax and db-linear types (Jaroslav Kysela) [1657855]
-- [uapi] alsa: core api: define offsets for TLV items (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Convert timers to use timer_setup() (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: catch invalid timer object creation (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Fix UBSAN warning at SNDRV_TIMER_IOCTL_NEXT_DEVICE ioctl (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Assure timer resolution access always locked (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Simplify timer hw resolution calls (Jaroslav Kysela) [1657855]
-- [sound] alsa: timer: Fix pause event notification (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Avoid open-code for getting timer resolution (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Do error checks at creating system ports (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: add error check in snd_seq_system_client_init() (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Drop unused 64bit division macros (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: fix spelling mistake "Unamed" -> "Unnamed" (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Fix leftovers at probe error path (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: A lightweight function to discard pending bytes (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: virmidi: Fix discarding the unsubscribed output (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Remove dead codes (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Minor cleanup of MIDI event parser helpers (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: virmidi: Use READ_ONCE/WRITE_ONCE() macros (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: virmidi: Offload the output event processing (Jaroslav Kysela) [1657855]
-- [sound] alsa: virmidi: Fix too long output trigger loop (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Use no intrruptible mutex_lock (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Fix UBSAN warning at SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT ioctl (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: oss: Use the standard fall-through annotation (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq_oss: Mark expected switch fall-through (Jaroslav Kysela) [1657855]
-- [sound] alsa: seq: Fix poll() error return (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Initialize allocated buffers (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Use kvmalloc() for buffers (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Minor code refactoring (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Simplify error paths (Jaroslav Kysela) [1657855]
-- [sound] alsa: rawmidi: Tidy up coding styles (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Update hardware pointer before start capture (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Return 0 when size < start_threshold in capture (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Fix snd_interval_refine first/last with open min/max (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Allow drivers to set R/W wait time (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Use snd_pcm_stop_xrun() for xrun injection (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: trace XRUN event at injection, too (Jaroslav Kysela) [1657855]
-- [sound] alsa: pcm: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1657855]
-- [sound] alsa: core: Assure control device to be registered at last (Jaroslav Kysela) [1657855]
-- [sound] alsa: control: fix a redundant-copy issue (Jaroslav Kysela) [1657855]
-- [sound] alsa: compress: Remove empty init and exit (Jaroslav Kysela) [1657855]
-- [sound] alsa: soc-compress: add support to snd_compr_set_runtime_buffer() (Jaroslav Kysela) [1657855]
-- [sound] alsa: compress: make use of runtime buffer for copy (Jaroslav Kysela) [1657855]
-- [sound] alsa: control: Consolidate helpers for adding and replacing ctl elements (Jaroslav Kysela) [1657855]
-- [sound] alsa: control: Fix race between adding and removing a user element (Jaroslav Kysela) [1657855]
-- [mm] alsa: new primitive: vmemdup_user() (Jaroslav Kysela) [1657855]
-
-* Fri Mar 08 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1018.el7]
-- [net] tuntap: fix multiqueue rx (Guillaume Nault) [1683025]
-- [net] netfilter: ipset: List timing out entries with "timeout 1" instead of zero (Stefano Brivio) [1684645]
-- [net] netfilter: nf_tables: bump set->ndeact on set flush (Stefano Brivio) [1576465]
-- [net] netfilter: nf_tables: deconstify walk callback function (Stefano Brivio) [1576465]
-- [net] netfilter: nf_tables: support for set flushing (Phil Sutter) [1576465]
-- [net] netfilter: nft_set: introduce nft_{hash, rbtree}_deactivate_one() (Phil Sutter) [1576465]
-- [net] netfilter: nf_tables: constify struct nft_ctx * parameter in nft_trans_alloc() (Phil Sutter) [1576465]
-- [net] ipv6: Display all addresses in output of /proc/net/if_inet6 (Stefano Brivio) [1661408]
-- [net] ip6mr: Fix potential Spectre v1 vulnerability (Stefano Brivio) [1666396]
-- [net] ipv4: Fix potential Spectre v1 vulnerability (Stefano Brivio) [1666396]
-- [net] sched: fix qdisc->running lockdep annotations (Paolo Abeni) [1680442]
-- [net] netfilter: ipset: fix ip_set_byindex function (Stefano Brivio) [1680426]
-- [net] netfilter: ipset: actually allow allowable CIDR 0 in hash:net, port, net (Stefano Brivio) [1680426]
-- [net] netfilter: ipset: Introduction of new commands and protocol version 7 (Stefano Brivio) [1680426]
-- [net] pktgen: Fix fall-through annotation (Ivan Vecera) [1680139]
-- [net] pktgen: convert safe uses of strncpy() to strcpy() to avoid string truncation warning (Ivan Vecera) [1680139]
-- [net] treewide: Use array_size() in vzalloc_node() (Ivan Vecera) [1680139]
-- [net] pktgen: Fix memory leak in pktgen_if_write (Ivan Vecera) [1680139]
-- [net] pktgen: use dynamic allocation for debug print buffer (Ivan Vecera) [1680139]
-- [net] pktgen: Remove VLA usage (Ivan Vecera) [1680139]
-- [net] pktgen: Clean read user supplied flag mess (Ivan Vecera) [1680139]
-- [net] pktgen: Remove brute-force printing of flags (Ivan Vecera) [1680139]
-- [net] pktgen: Add behaviour flags macro to generate flags/names (Ivan Vecera) [1680139]
-- [net] pktgen: Add missing !flag parameters (Ivan Vecera) [1680139]
-- [net] documentation/pktgen: Clearify how-to use pktgen samples (Ivan Vecera) [1680139]
-- [net] pktgen: document 32-bit timestamp overflow (Ivan Vecera) [1680139]
-- [net] pktgen: do not abuse IN6_ADDR_HSIZE (Ivan Vecera) [1680139]
-- [net] samples/pktgen: remove remaining old pktgen sample scripts (Ivan Vecera) [1680139]
-- [net] samples/pktgen: update sample03, no need for clones when bursting (Ivan Vecera) [1680139]
-- [net] samples/pktgen: add script pktgen_sample06_numa_awared_queue_irq_affinity.sh (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Add some helper functions (Ivan Vecera) [1680139]
-- [net] pktgen: Specify the index of first thread (Ivan Vecera) [1680139]
-- [net] pktgen: Specify num packets per thread (Ivan Vecera) [1680139]
-- [net] samples: Add an IPv6 '-6' option to the pktgen scripts (Ivan Vecera) [1680139]
-- [net] pktgen: remove sample script pktgen.conf-1-1-rdos (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample05_flow_per_thread.sh (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample04_many_flows.sh (Ivan Vecera) [1680139]
-- [net] pktgen: remove rcu locking in pktgen_change_name() (Ivan Vecera) [1680139]
-- [net] xfrm: fix a race in xfrm_state_lookup_byspi (Ivan Vecera) [1680139]
-- [net] samples: pktgen mode samples/tests for qdisc layer (Ivan Vecera) [1680139]
-- [net] pktgen: support injecting packets for qdisc testing (Ivan Vecera) [1680139]
-- [net] pktgen: Call destroy_hrtimer_on_stack() (Ivan Vecera) [1680139]
-- [kernel] timer: Export destroy_hrtimer_on_stack() (Ivan Vecera) [1680139]
-- [net] documentation: networking: fix spelling mistakes (Ivan Vecera) [1680139]
-- [net] pktgen: don't abuse current->state in pktgen_thread_worker() (Ivan Vecera) [1680139]
-- [net] pktgen: Remove unused 'allocated_skbs' field (Ivan Vecera) [1680139]
-- [net] pktgen: kill the "Wait for kthread_stop" code in pktgen_thread_worker() (Ivan Vecera) [1680139]
-- [net] pktgen: remove one sparse error (Ivan Vecera) [1680139]
-- [net] pktgen: add benchmark script pktgen_bench_xmit_mode_netif_receive.sh (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample03_burst_single_flow.sh (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample02_multiqueue.sh (Ivan Vecera) [1680139]
-- [net] pktgen: add sample script pktgen_sample01_simple.sh (Ivan Vecera) [1680139]
-- [net] pktgen: new pktgen helper functions for samples scripts (Ivan Vecera) [1680139]
-- [net] pktgen: make /proc/net/pktgen/pgctrl report fail on invalid input (Ivan Vecera) [1680139]
-- [net] pktgen: document ability to add same device to several threads (Ivan Vecera) [1680139]
-- [net] pktgen: doc were missing several config options (Ivan Vecera) [1680139]
-- [net] pktgen: adjust spacing in proc file interface output (Ivan Vecera) [1680139]
-- [net] pktgen: remove obsolete "max_before_softirq" from pktgen doc (Ivan Vecera) [1680139]
-- [net] pktgen: fix packet generation (Ivan Vecera) [1680139]
-- [net] pktgen: introduce xmit_mode '<start_xmit|netif_receive>' (Ivan Vecera) [1680139]
-- [net] pktgen: adjust flag NO_TIMESTAMP to be more pktgen compliant (Ivan Vecera) [1680139]
-- [net] pktgen: Correct documentation of module name and command (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Show the results rather than just commenting where they are (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Trap SIGINT (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Use bash as interpreter (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Remove setting of obsolete max_before_softirq parameter (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Correct comments about the thread config (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Delete unused function pg() (Ivan Vecera) [1680139]
-- [net] samples/pktgen: Add sample scripts for pktgen facility (Ivan Vecera) [1680139]
-- [net] pktgen: Fix grammar errors and some poor wording in documentation (Ivan Vecera) [1680139]
-- [net] pktgen: Delete the original date from documentation (Ivan Vecera) [1680139]
-- [net] spelling fixes (Ivan Vecera) [1680139]
-- [net] pktgen: Deletion of an unnecessary check before the function call "proc_remove" (Ivan Vecera) [1680139]
-- [net] pktgen: Convert pr_warning to pr_warn (Ivan Vecera) [1680139]
-- [net] pktgen: remove unnecessary break after goto (Ivan Vecera) [1680139]
-- [net] pktgen: RCU-ify "if_list" to remove lock in next_to_run() (Ivan Vecera) [1680139]
-- [net] pktgen: avoid expensive set_current_state() call in loop (Ivan Vecera) [1680139]
-- [net] pktgen: document tuning for max NIC performance (Ivan Vecera) [1680139]
-- [net] pktgen: Use seq_puts() where seq_printf() is not needed (Ivan Vecera) [1680139]
-- [net] pktgen: be friendly to LLTX devices (Ivan Vecera) [1680139]
-- [net] pktgen: fix xmit test for BQL enabled devices (Ivan Vecera) [1680139]
-- [net] pktgen: document all supported flags (Ivan Vecera) [1680139]
-- [net] pktgen: simplify error handling in pgctrl_write() (Ivan Vecera) [1680139]
-- [net] pktgen: fix out-of-bounds access in pgctrl_write() (Ivan Vecera) [1680139]
-- [net] pktgen: Use ether_addr_copy (Ivan Vecera) [1680139]
-- [net] {xfrm, pktgen} Fix compiling error when CONFIG_XFRM is not set (Ivan Vecera) [1680139]
-- [net] pktgen_dst_metrics[] can be static (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Document IPsec usage in pktgen.txt (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Show spi value properly when ipsec turned on (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Introduce xfrm_state_lookup_byspi for pktgen (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Construct skb dst for tunnel mode transformation (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Using "pgset spi xxx" to spedifiy SA for a given flow (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Add statistics counting when transforming (Ivan Vecera) [1680139]
-- [net] {pktgen, xfrm} Correct xfrm state lock usage when transforming (Ivan Vecera) [1680139]
-- [net] pktgen: Use ip_send_check() to compute checksum (Ivan Vecera) [1680139]
-- [net] ethtool: Added support for 50Gbps per lane link modes (Ivan Vecera) [1679751]
-- [net] sched: Fix for duplicate class dump (Phil Sutter) [1631177]
-- [net] netlink: ensure to loop over all netns in genlmsg_multicast_allns() (Phil Sutter) [1607306]
-- [net] ipv6: addrconf: break critical section in addrconf_verify_rtnl() (Ivan Vecera) [1678649]
-- [net] ipv6: addrconf: fix a lockdep splat (Ivan Vecera) [1678649]
-- [net] ipv6: Make inet6addr_validator a blocking notifier (Ivan Vecera) [1678649]
-- [net] ipv6: addrconf: cleanup locking in ipv6_add_addr (Ivan Vecera) [1678649]
-- [net] Ipvlan should return an error when an address is already in use. (Ivan Vecera) [1678649]
-- [net] sched: cls_flower: validate nested enc_opts_policy to avoid warning (Ivan Vecera) [1672341]
-- [net] sched: allow flower to match tunnel options (Ivan Vecera) [1672341]
-- [net] flow_dissector: allow dissection of tunnel options from metadata (Ivan Vecera) [1672341]
-- [net] dim: Update DIM start sample after each DIM iteration (Petr Oros) [1672279]
-- [net] ipv6: fib6_rules should return exact return value (Lorenzo Bianconi) [1592059]
-- [net] fib_rules: fix suppressor names and default values (Lorenzo Bianconi) [1592059]
-- [net] fib_rules: add .suppress operation (Lorenzo Bianconi) [1592059]
-
-* Fri Mar 08 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1017.el7]
-- [tools] power turbostat: fix show/hide issues resulting from mis-merge (Prarit Bhargava) [1678566]
-- [i2c] i801: Add support for Intel Ice Lake (David Arcari) [1684364]
-- [vfio] pci: Mask buggy SR-IOV VF INTx support (Myron Stowe) [1640882]
-- [scsi] core: introduce force_blk_mq (Ewan Milne) [1659146]
-- [scsi] revert "lpfc: use dma_set_mask_and_coherent" (Dick Kennedy) [1673678]
-- [md] raid1: don't clear bitmap bits on interrupted recovery (Xiao Ni) [1677312]
-- [md] dm cache: add support for discard passdown to the origin device (Mike Snitzer) [1628378]
-- [kernel] rcu: Don't wake rcuc/X kthreads on NOCB CPUs (Daniel Bristot de Oliveira) [1626129]
-- [nvme] fix subsystem multiple controllers support check (David Milburn) [1624860 1679493]
-- [nvme] expose subsys attribute to sysfs (David Milburn) [1624860 1679493]
-- [nvme] track subsystems (David Milburn) [1624860 1679493]
-- [mm] mm: migrate: don't rely on __PageMovable() of newpage after unlocking it (David Hildenbrand) [1665989]
-- [security] xattr: Constify ->name member of "struct xattr" (Aaron Tomlin) [1607307]
-- [char] tpm/tpm_crb: Avoid unaligned reads in crb_recv() (Jerry Snitselaar) [1642703 1679366]
-- [char] tpm: don't print error message in tpm_transmit_cmd when tpm still testing (Jerry Snitselaar) [1663298 1679366]
-- [char] tpm: tpm_i2c_nuvoton: use correct command duration for TPM 2.x (Jerry Snitselaar) [1642348 1679366]
-- [char] tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated (Jerry Snitselaar) [1679366]
-- [char] tpm: fix response size validation in tpm_get_random() (Jerry Snitselaar) [1679366]
-- [char] tpm: replace TPM_TRANSMIT_RAW with TPM_TRANSMIT_NESTED (Jerry Snitselaar) [1679366]
-- [char] tpm: Convert tpm_find_get_ops() to use tpm_default_chip() (Jerry Snitselaar) [1679366]
-- [char] tpm: Implement tpm_default_chip() to find a TPM chip (Jerry Snitselaar) [1679366]
-- [char] tpm: rename tpm_chip_find_get() to tpm_find_get_ops() (Jerry Snitselaar) [1679366]
-- [char] tpm: Return the actual size when receiving an unsupported command (Jerry Snitselaar) [1679366]
-- [char] tpm: separate cmd_ready/go_idle from runtime_pm (Jerry Snitselaar) [1642703 1671142 1679366]
-- [char] tpm: migrate tpm2_get_random() to use struct tpm_buf (Jerry Snitselaar) [1679366]
-- [char] tpm: migrate tpm2_get_tpm_pt() to use struct tpm_buf (Jerry Snitselaar) [1679366]
-- [char] tpm: migrate tpm2_probe() to use struct tpm_buf (Jerry Snitselaar) [1679366]
-- [char] tpm: migrate tpm2_shutdown() to use struct tpm_buf (Jerry Snitselaar) [1679366]
-- [char] tpm: reduce polling time to usecs for even finer granularity (Jerry Snitselaar) [1642704 1642345 1679366]
-- [char] tpm: fix use after free in tpm2_load_context() (Jerry Snitselaar) [1679366]
-- [char] tpm: reduce poll sleep time in tpm_transmit() (Jerry Snitselaar) [1642704 1642345 1679366]
-- [char] tpm: tpm_crb: relinquish locality on error path (Jerry Snitselaar) [1642703 1679366]
-- [char] tpm: Add explicit endianness cast (Jerry Snitselaar) [1679366]
-- [char] tpm: st33zp24: remove redundant null check on chip (Jerry Snitselaar) [1679366]
-- [char] tpm: move the delay_msec increment after sleep in tpm_transmit() (Jerry Snitselaar) [1679366]
-- [block] virtio-blk: modernize sysfs attribute creation (Ming Lei) [1635708]
-- [block] zram: register default groups with device_add_disk() (Ming Lei) [1635708]
-- [block] aoe: register default groups with device_add_disk() (Ming Lei) [1635708]
-- [nvme] register ns_id attributes as default sysfs groups (Ming Lei) [1635708]
-- [block] genhd: add 'groups' argument to device_add_disk (Ming Lei) [1635708]
-- [mm] fix MADV_[FREE|DONTNEED] TLB flush miss problem (Aaron Tomlin) [1677343]
-- [mm] mm: make tlb_flush_pending global (Aaron Tomlin) [1677343]
-- [mm] refactor TLB gathering API (Aaron Tomlin) [1677343]
-- [mm] mm: migrate: fix barriers around tlb_flush_pending (Aaron Tomlin) [1677343]
-- [mm] mm: migrate: prevent racy access to tlb_flush_pending (Aaron Tomlin) [1677343]
-- [mm] mprotect: flush TLB if potentially racing with a parallel reclaim leaving stale TLB entries (Aaron Tomlin) [1677343]
-- [mm] fix mprotect() behaviour on VM_LOCKED VMAs (Aaron Tomlin) [1677343]
-- [mm] mm: update mmu_gather range correctly (Aaron Tomlin) [1677343]
-- [mm] mmu_gather: move minimal range calculations into generic code (Aaron Tomlin) [1677343]
-- [mm] split 'tlb_flush_mmu()' into tlb flushing and memory freeing parts (Aaron Tomlin) [1677343]
-- [s390] mm: introduce ptep_flush_lazy helper (Aaron Tomlin) [1677343]
-- [powerpc] slb: Force a full SLB flush when we insert for a bad EA (Desnes Augusto Nunes do Rosario) [1590853]
-- [powerpc] Only disable HAVE_EFFICIENT_UNALIGNED_ACCESS on POWER7 little endian (Yauheni Kaliuta) [1659731]
-- [powerpc] Fix bad inline asm constraint in create_zero_mask() (Yauheni Kaliuta) [1657284]
-- [edac] x86/mce/amd, edac/mce_amd: Enumerate Reserved SMCA bank type (David Arcari) [1676301]
-- [x86] mce/amd: Pass the bank number to smca_get_bank_type() (David Arcari) [1676301]
-- [x86] mce/amd: Define a function to get SMCA bank type (David Arcari) [1676301]
-- [x86] mce/amd: Allow any CPU to initialize the smca_banks array (David Arcari) [1676301]
-- [x86] mce/amd: Carve out SMCA bank configuration (David Arcari) [1676301]
-- [x86] mce: Convert threshold_bank.cpus from atomic_t to refcount_t (David Arcari) [1676301]
-- [x86] ras/amd: Make sysfs names of banks more user-friendly (David Arcari) [1676301]
-- [x86] mce/amd: Make the init code more robust (David Arcari) [1676301]
-- [x86] ras: Hide SMCA bank names (David Arcari) [1676301]
-- [x86] cpu: avoid crash in get_cpu_cache_id() (David Arcari) [1626279]
-
-* Thu Mar 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1016.el7]
-- [netdrv] cxgb4: Mask out interrupts that are not enabled (Arjun Vynipadath) [1678729]
-- [netdrv] ice: fix overlong string, update stats output (Jonathan Toppins) [1684149]
-- [netdrv] ice: Fix for FC get rx/tx pause params (Jonathan Toppins) [1684149]
-- [netdrv] ice: use absolute vector ID for VFs (Jonathan Toppins) [1684149]
-- [netdrv] ice: check for a leaf node presence (Jonathan Toppins) [1684149]
-- [netdrv] ice: flush Tx pipe on disable queue timeout (Jonathan Toppins) [1684149]
-- [netdrv] ice: clear VF ARQLEN register on reset (Jonathan Toppins) [1684149]
-- [netdrv] ice: don't spam VFs with link messages (Jonathan Toppins) [1684149]
-- [netdrv] ice: only use the VF for ICE_VSI_VF in ice_vsi_release (Jonathan Toppins) [1684149]
-- [netdrv] ice: fix numeric overflow warning (Jonathan Toppins) [1684149]
-- [netdrv] ice: fix issue where host reboots on unload when iommu=on (Jonathan Toppins) [1684149]
-- [netdrv] ice: fix ice_remove_rule_internal vsi_list handling (Jonathan Toppins) [1684149]
-- [netdrv] ice: fix stack hogs from struct ice_vsi_ctx structures (Jonathan Toppins) [1684149]
-- [netdrv] ice: sizeof(<type>) should be avoided (Jonathan Toppins) [1684149]
-- [netdrv] ice: Fix added in VSI supported nodes calc (Jonathan Toppins) [1684149]
-- [netdrv] ice: Fix the calculation of ICE_MAX_MTU (Jonathan Toppins) [1684149]
-- [netdrv] ixgbevf: update driver version for RHEL7.7 (Ken Cox) [1637723]
-- [netdrv] xfrm: prefer secpath_set over secpath_dup (Ken Cox) [1637723]
-- [netdrv] intel: use secpath helpers in more places (Ken Cox) [1637723]
-- [netdrv] ixgbevf: add support for software timestamps (Ken Cox) [1637723]
-- [netdrv] ixgbe/ixgbevf: fix XFRM_ALGO dependency (Ken Cox) [1637723]
-- [netdrv] ixgbevf: off by one in ixgbevf_ipsec_tx() (Ken Cox) [1637723]
-- [netdrv] ixgbevf: fix msglen for ipsec mbx messages (Ken Cox) [1637723]
-- [netdrv] ixgbevf: remove ndo_poll_controller (Ken Cox) [1637723]
-- [netdrv] ixgbevf: enable VF IPsec offload operations (Ken Cox) [1637723]
-- [netdrv] ixgbevf: add VF IPsec offload code (Ken Cox) [1637723]
-- [netdrv] ixgbevf: add defines for IPsec offload request (Ken Cox) [1637723]
-- [netdrv] ixgbevf: VF2VF TCP RSS (Ken Cox) [1637723]
-- [netdrv] treewide: Use array_size() in vmalloc() (Ken Cox) [1637723]
-- [netdrv] ixgbevf: fix possible race in the reset subtask (Ken Cox) [1637723]
-- [netdrv] ixgbevf: Fix coexistence of malicious driver detection with XDP (Ken Cox) [1637723]
-- [netdrv] ixgbevf: fix MAC address changes through ixgbevf_set_mac() (Ken Cox) [1637723]
-- [netdrv] ixgbevf: fix ixgbevf_xmit_frame()'s return type (Ken Cox) [1637723]
-- [netdrv] ixgbevf: ensure xdp_ring resources are free'd on error exit (Ken Cox) [1637723]
-- [netdrv] ixgbevf: Add support for meta data (Ken Cox) [1637723]
-- [netdrv] ixgbevf: do not print registers to dmesg in ixgbevf_get_regs (Ken Cox) [1637723]
-- [netdrv] ixgbe: update driver version for RHEL7.7 (Ken Cox) [1637718]
-- [netdrv] xfrm: prefer secpath_set over secpath_dup (Ken Cox) [1637718]
-- [netdrv] intel: use secpath helpers in more places (Ken Cox) [1637718]
-- [netdrv] ixgbe/ixgbevf: fix XFRM_ALGO dependency (Ken Cox) [1637718]
-- [netdrv] ixgbe: use mii_bus to handle MII related ioctls (Ken Cox) [1637718]
-- [netdrv] ixgbe: register a mdiobus (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix race when the VF driver does a reset (Ken Cox) [1637718]
-- [netdrv] ixgbe: recognize 1000BaseLX SFP modules as 1Gbps (Ken Cox) [1637718]
-- [netdrv] ixgbe: Replace synchronize_sched() with synchronize_rcu() (Ken Cox) [1637718]
-- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Ken Cox) [1637718]
-- [netdrv] ixgbe: allow IPsec Tx offload in VEPA mode (Ken Cox) [1637718]
-- [netdrv] ixgbe: don't clear_bit on xdp_ring->state if xdp_ring is null (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix MAC anti-spoofing filter after VFLR (Ken Cox) [1637718]
-- [netdrv] remove <net/busy_poll.h> inclusion when not needed (Ken Cox) [1637718]
-- [netdrv] ixgbe: check return value of napi_complete_done() (Ken Cox) [1637718]
-- [netdrv] ixgbe: add AF_XDP zero-copy Tx support (Ken Cox) [1637718]
-- [netdrv] ixgbe: move common Tx functions to ixgbe_txrx_common.h (Ken Cox) [1637718]
-- [netdrv] ixgbe: add AF_XDP zero-copy Rx support (Ken Cox) [1637718]
-- [netdrv] ixgbe: move common Rx functions to ixgbe_txrx_common.h (Ken Cox) [1637718]
-- [netdrv] ixgbe: added Rx/Tx ring disable/enable functions (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix crash with VFs and flow director on interface flap (Ken Cox) [1637718]
-- [netdrv] ixgbe: remove redundant function ixgbe_fw_recovery_mode() (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix ixgbe TX hangs with XDP_TX beyond queue limit (Ken Cox) [1637718]
-- [netdrv] ixgbe: remove ndo_poll_controller (Ken Cox) [1637718]
-- [netdrv] intel-ethernet: use correct module license (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix the return value for unsupported VF offload (Ken Cox) [1637718]
-- [netdrv] ixgbe: disallow IPsec Tx offload when in SR-IOV mode (Ken Cox) [1637718]
-- [netdrv] ixgbe: add VF IPsec offload request message handling (Ken Cox) [1637718]
-- [netdrv] ixgbe: add VF IPsec offload enable flag (Ken Cox) [1637718]
-- [netdrv] ixgbe: add VF IPsec management (Ken Cox) [1637718]
-- [netdrv] ixgbe: prep IPsec constants for later use (Ken Cox) [1637718]
-- [netdrv] ixgbe: reload IPsec IP table after sa tables (Ken Cox) [1637718]
-- [netdrv] ixgbe: don't clear IPsec sa counters on HW clearing (Ken Cox) [1637718]
-- [netdrv] ixgbe: firmware recovery mode (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix driver behaviour after issuing VFLR (Ken Cox) [1637718]
-- [netdrv] ixgbe: Prevent unsupported configurations with XDP (Ken Cox) [1637718]
-- [netdrv] ixgbe: Replace GFP_ATOMIC with GFP_KERNEL (Ken Cox) [1637718]
-- [netdrv] ixgbe: Refactor queue disable logic to take completion time into account (Ken Cox) [1637718]
-- [netdrv] ixgbe: Reorder Tx/Rx shutdown to reduce time needed to stop device (Ken Cox) [1637718]
-- [netdrv] ixgbe: add ipsec security registers into ethtool register dump (Ken Cox) [1637718]
-- [netdrv] ixgbe: Do not allow LRO or MTU change with XDP (Ken Cox) [1637718]
-- [netdrv] ixgbe: Off by one in ixgbe_ipsec_tx() (Ken Cox) [1637718]
-- [netdrv] ixgbe: Be more careful when modifying MAC filters (Ken Cox) [1637718]
-- [netdrv] ixgbe: split XDP_TX tail and XDP_REDIRECT map flushing (Ken Cox) [1637718]
-- [netdrv] treewide: Use array_size() in vmalloc() (Ken Cox) [1637718]
-- [netdrv] treewide: kzalloc() -> kcalloc() (Ken Cox) [1637718]
-- [netdrv] treewide: kmalloc() -> kmalloc_array() (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix bit definitions and add support for testing for ipsec support (Ken Cox) [1637718]
-- [netdrv] ixgbe: Avoid loopback and fix boolean logic in ipsec_stop_data (Ken Cox) [1637718]
-- [netdrv] ixgbe: Move ipsec init function to before reset call (Ken Cox) [1637718]
-- [netdrv] ixgbe: Use CONFIG_XFRM_OFFLOAD instead of CONFIG_XFRM (Ken Cox) [1637718]
-- [netdrv] ixgbe: Fix setting of TC configuration for macvlan case (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix broken ipsec Rx with proper cast on spi (Ken Cox) [1637718]
-- [netdrv] ixgbe: check ipsec ip addr against mgmt filters (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix possible race in reset subtask (Ken Cox) [1637718]
-- [netdrv] ixgbe: introduce a helper to simplify code (Ken Cox) [1637718]
-- [netdrv] ixgbe: implement flush flag for ndo_xdp_xmit (Ken Cox) [1637718]
-- [netdrv] xdp: add flags argument to ndo_xdp_xmit API (Ken Cox) [1637718]
-- [netdrv] ixgbe: fix parsing of TC actions for HW offload (Ken Cox) [1637718]
-- [netdrv] xdp: change ndo_xdp_xmit API to support bulking (Ken Cox) [1637718]
-- [netdrv] revert "ixgbe: release lock for the duration of ixgbe_suspend_close()" (Ken Cox) [1637718]
-- [netdrv] ixgbe: release lock for the duration of ixgbe_suspend_close() (Ken Cox) [1637718]
-- [netdrv] xdp: rhashtable with allocator ID to pointer mapping (Ken Cox) [1637718]
-- [netdrv] xdp: transition into using xdp_frame for ndo_xdp_xmit (Ken Cox) [1637718]
-- [netdrv] xdp: transition into using xdp_frame for return API (Ken Cox) [1637718]
-- [netdrv] ixgbe: use xdp_return_frame API (Ken Cox) [1637718]
-- [netdrv] ixgbe: use tc_cls_can_offload_and_chain0() (Ken Cox) [1637718]
-- [netdrv] bpf, ixgbe: add meta data support (Ken Cox) [1637718]
-- [netdrv] bpf: add meta pointer for direct access (Ken Cox) [1637718]
-- [netdrv] ixgbe: use return codes from ndo_xdp_xmit that are distinguishable (Ken Cox) [1637718]
-- [netdrv] ixgbe: change ndo_xdp_xmit return code on xmit errors (Ken Cox) [1637718]
-- [netdrv] xdp: Add batching support to redirect map (Ken Cox) [1637718]
-- [netdrv] ixgbe: add initial support for xdp redirect (Ken Cox) [1637718]
-- [netdrv] ixgbe: Use pcie_flr() instead of duplicating it (Ken Cox) [1637718]
-- [netdrv] ixgbe: use kzalloc for allocating one thing (Ken Cox) [1637718]
-
-* Thu Mar 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1015.el7]
-- [iommu] iova: Make rcache flush optional on IOVA allocation failure (Jerry Snitselaar) [1615865]
-- [iommu] iova: Don't try to copy anchor nodes (Jerry Snitselaar) [1615865]
-- [iommu] iova: Try harder to allocate from rcache magazine (Jerry Snitselaar) [1615865]
-- [iommu] iova: Make rcache limit_pfn handling more robust (Jerry Snitselaar) [1615865]
-- [iommu] iova: Simplify domain destruction (Jerry Snitselaar) [1615865]
-- [iommu] iova: Simplify cached node logic (Jerry Snitselaar) [1615865]
-- [iommu] iova: Add rbtree anchor node (Jerry Snitselaar) [1615865]
-- [iommu] iova: Make dma_32bit_pfn implicit (Jerry Snitselaar) [1615865]
-- [iommu] iova: Extend rbtree node caching (Jerry Snitselaar) [1615865]
-- [iommu] iova: Optimise the padding calculation (Jerry Snitselaar) [1615865]
-- [iommu] iova: Optimise rbtree searching (Jerry Snitselaar) [1615865]
-- [iommu] iova: Consolidate code for adding new node to iovad domain rbtree (Jerry Snitselaar) [1615865]
-- [iommu] iova: Use rb_entry() (Jerry Snitselaar) [1615865]
-- [iommu] iova: Extend cached node lookup condition (Jerry Snitselaar) [1615865]
-- [kernel] iommu/iova: Fix compile error with CONFIG_IOMMU_IOVA=m (Jerry Snitselaar) [1615865]
-- [kernel] iommu: Add dummy implementations for !IOMMU_IOVA (Jerry Snitselaar) [1615865]
-- [pinctrl] intel: Add Intel Cedar Fork PCH pin controller support (Steve Best) [1482430]
-- [i2c] ismt: Add support for Intel Cedar Fork (Steve Best) [1482430]
-- [i2c] i801: Add support for Intel Cedar Fork (Steve Best) [1482430]
-- [scsi] scsi: smartpqi_init: fix boolean expression in pqi_device_remove_start (Don Brace) [1678479]
-- [cpufreq] intel_pstate: Register when ACPI PCCH is present (Prarit Bhargava) [1671693]
-- [linux] cpuset: Fix potential deadlock w/ set_mems_allowed (Waiman Long) [1679033]
-- [linux] audit: Add new syscalls to the perm=w filter (Richard Guy Briggs) [1642315]
-- [fs] autofs: add strictexpire mount option (Ian Kent) [1653208]
-- [fs] autofs: change catatonic setting to a bit flag (Ian Kent) [1653208]
-- [fs] autofs: simplify parse_options() function call (Ian Kent) [1653208]
-- [fs] autofs: add AUTOFS_EXP_FORCED flag (Ian Kent) [1653208]
-- [fs] autofs: make expire flags usage consistent with v5 params (Ian Kent) [1653208]
-- [fs] autofs: make autofs_expire_indirect() static (Ian Kent) [1653208]
-- [fs] autofs: make autofs_expire_direct() static (Ian Kent) [1653208]
-- [fs] autofs: fix clearing AUTOFS_EXP_LEAVES in autofs_expire_indirect() (Ian Kent) [1653208]
-- [fs] autofs: fix inconsistent use of now variable (Ian Kent) [1653208]
-- [fs] autofs: fix directory and symlink access (Ian Kent) [1580099]
-- [fs] autofs: fix slab out of bounds read in getname_kernel() (Ian Kent) [1657106]
-- [fs] quota: Properly return errors from dquot_writeback_dquots() (Lukas Czerner) [1680638]
-- [fs] quota: Fix race between dqput() and dquot_scan_active() (Lukas Czerner) [1680638]
-- [fs] xfs: perform file write checks before splice write (Brian Foster) [1677592]
-- [fs] xfs: print dangling delalloc extents (Brian Foster) [1677592]
-- [fs] devpts: Make devpts_kill_sb safe if fsi is NULL (Bill O'Donnell) [1662232]
-- [fs] fs: fix guard_bio_eod to check for real EOD errors (Carlos Maiolino) [1673853]
-- [fs] ext4: fix dir_nlink behaviour (Lukas Czerner) [1631374]
-- [fs] xfs: fix f_ffree value for statfs when project quota is set (Bill O'Donnell) [1665990]
-- [fs] xfs: don't screw up direct writes when freesp is fragmented (Brian Foster) [1667523]
-- [fs] cifs: check ntwrk_buf_start for NULL before dereferencing it (Leif Sahlberg) [1021460]
-- [fs] smb2: fix missing files in root share directory listing (Leif Sahlberg) [1607192]
-- [infiniband] IB/hfi1: Remove overly conservative VM_EXEC flag check (Alex Estrin) [1677757]
-- [netdrv] cnic: remove redundant pointer req and variable func (Maurizio Lombardi) [1643542]
-- [netdrv] cnic: tidy up a size calculation (Maurizio Lombardi) [1643542]
-- [netdrv] ibmveth: Do not process frames after calling napi_reschedule (Steve Best) [1683171]
-- [netdrv] cxgb4: Add new T6 PCI device ids 0x608b (Arjun Vynipadath) [1642475]
-- [netdrv] mlxsw: spectrum_switchdev: Do not leak RIFs when removing bridge (Ivan Vecera) [1667381]
-- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Neil Horman) [1670626]
-- [netdrv] vmxnet3: Replace msleep(1) with usleep_range() (Neil Horman) [1670626]
-- [netdrv] vmxnet3: use DMA memory barriers where required (Neil Horman) [1670626]
-- [netdrv] vmxnet3: set the DMA mask before the first DMA map operation (Neil Horman) [1670626]
-- [net] netfilter: nf_tables: fix nft_pktinfo initialization (Paolo Abeni) [1673138]
-- [net] ip6_gre: Request headroom in __gre6_xmit() (Jiri Benc) [1485785]
-- [net] api: fix compatibility of linux/in.h with netinet/in.h (Guillaume Nault) [1672242]
-- [net] netfilter: nf_nat: skip nat clash resolution for same-origin entries (Florian Westphal) [1648965]
-- [net] netfilter: nf_conntrack: resolve clash for matching conntracks (Florian Westphal) [1648965]
-- [net] netfilter: conntrack: skip clash resolution if nat is in place (Florian Westphal) [1648965]
-- [net] netfilter: conntrack: introduce clash resolution on insertion race (Florian Westphal) [1648965]
-- [net] netfilter: conntrack: fix race between confirmation and flush (Florian Westphal) [1648965]
-- [net] netfilter: conntrack: introduce nf_ct_acct_update() (Florian Westphal) [1648965]
-- [net] sched: act_tunnel_key: Don't dump dst port if it wasn't set (Ivan Vecera) [1660903]
-- [net] sched: act_tunnel_key: Allow key-less tunnels (Ivan Vecera) [1660903]
-- [net] tun: implement carrier change (Guillaume Nault) [1665389]
-- [net] netfilter: ipset: Make invalid MAC address checks consistent (Stefano Brivio) [1607252]
-- [net] netfilter: ipset: Allow matching on destination MAC address for mac and ipmac sets (Stefano Brivio) [1607252]
-- [net] igmp: Allow user-space configuration of igmp unsolicited report interval (Hangbin Liu) [1663941]
-- [net] igmp: Don't flush routing cache when force_igmp_version is modified (Hangbin Liu) [1663941]
-- [net] sysfs: Fix memory leak in XPS configuration (Paolo Abeni) [1623813]
-- [net] Fix a bug in removing queues from XPS map (Paolo Abeni) [1623813]
-- [net] Add support for XPS with QoS via traffic classes (Paolo Abeni) [1623813]
-- [net] Refactor removal of queues from XPS map and apply on num_tc changes (Paolo Abeni) [1623813]
-- [net] use *pb[l] to print bitmaps including cpumasks and nodemasks (Paolo Abeni) [1623813]
-- [powerpc] pseries: fix "of: error: Bad of_node_put() on /cpus" during DLPAR (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: Fix of_node_put() underflow during DLPAR remove (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: Fix phandle extraction for dynamic nodes (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] sysfs: Fix reference leak of cpu device_nodes present at boot (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: Fix parent_dn reference leak in add_dt_node() (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: remove dlpar_attach_node dependency on full path (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: re-use code from of_helpers module (Desnes Augusto Nunes do Rosario) [1674261]
-- [powerpc] pseries: extract of_helpers module (Desnes Augusto Nunes do Rosario) [1674261]
-- [x86] signals: Fix lower/upper bound reporting in compat siginfo (Rui Wang) [1573854]
-- [x86] signals: Add missing signal_compat code for x86 features (Rui Wang) [1573854]
-
-* Fri Mar 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1014.el7]
-- [netdrv] ice: add const qualifier to mac_addr parameter (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for new PHY types (Jonathan Toppins) [1454916]
-- [netdrv] ice: Offload SCTP checksum (Jonathan Toppins) [1454916]
-- [netdrv] ice: Allow for software timestamping (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement getting and setting ethtool coalesce (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for adaptive interrupt moderation (Jonathan Toppins) [1454916]
-- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move aggregator list into ice_hw instance (Jonathan Toppins) [1454916]
-- [netdrv] ice: Rework queue management code for reuse (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add ethtool private flag to make forcing link down optional (Jonathan Toppins) [1454916]
-- [netdrv] ice: Set physical link up/down when an interface is set up/down (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement support for normal get_eeprom[_len] ethtool ops (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add ethtool set_phys_id handler (Jonathan Toppins) [1454916]
-- [netdrv] ice: Configure RSS LUT and HASH KEY in rebuild path (Jonathan Toppins) [1454916]
-- [netdrv] ice: Refactor a few Tx scheduler functions (Jonathan Toppins) [1454916]
-- [netdrv] ice: Do not enable NAPI on q_vectors that have no rings (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix possible NULL pointer de-reference (Jonathan Toppins) [1454916]
-- [netdrv] ice: Use Tx|Rx in comments (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cosmetic formatting changes (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cleanup short function signatures (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cleanup ice_tx_timeout() (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix return value from NAPI poll (Jonathan Toppins) [1454916]
-- [netdrv] ice: Constify global structures that can/should be (Jonathan Toppins) [1454916]
-- [netdrv] ice: Do not set LAN_EN for MAC-VLAN filters (Jonathan Toppins) [1454916]
-- [netdrv] ice: Pass the return value of ice_init_def_sw_recp() (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cleanup duplicate control queue code (Jonathan Toppins) [1454916]
-- [netdrv] ice: Do autoneg based on VSI state (Jonathan Toppins) [1454916]
-- [netdrv] ice: Remove ICE_MAX_TXQ_PER_TXQG check when configuring Tx queue (Jonathan Toppins) [1454916]
-- [netdrv] ice: Destroy scheduler tree in reset path (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix to make VLAN priority tagged traffic to appear on all TCs (Jonathan Toppins) [1454916]
-- [netdrv] ice: Call pci_disable_sriov before stopping queues for VF (Jonathan Toppins) [1454916]
-- [netdrv] ice: Increase Rx queue disable timeout (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix NVM mask defines (Jonathan Toppins) [1454916]
-- [netdrv] ice: Avoid nested RTNL locking in ice_dis_vsi (Jonathan Toppins) [1454916]
-- [netdrv] ice: Calculate guaranteed VSIs per function and use it (Jonathan Toppins) [1454916]
-- [netdrv] ice: Remove node before releasing VSI (Jonathan Toppins) [1454916]
-- [netdrv] ice: Check for q_vector when stopping rings (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix debug print in ice_tx_timeout (Jonathan Toppins) [1454916]
-- [netdrv] ice: Change req_speeds to be u16 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix the bytecount sent to netdev_tx_sent_queue (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix tx_timeout in PF driver (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix napi delete calls for remove (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix typo in error message (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix flags for port VLAN (Jonathan Toppins) [1454916]
-- [netdrv] ice: Remove duplicate addition of VLANs in replay path (Jonathan Toppins) [1454916]
-- [netdrv] ice: Free VSI contexts during for unload (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix dead device link issue with flow control (Jonathan Toppins) [1454916]
-- [netdrv] ice: Check for reset in progress during remove (Jonathan Toppins) [1454916]
-- [netdrv] ice: Set carrier state and start/stop queues in rebuild (Jonathan Toppins) [1454916]
-- [netdrv] ice: Poll for link status change (Jonathan Toppins) [1454916]
-- [netdrv] ice: Allocate VF interrupts and set queue map (Jonathan Toppins) [1454916]
-- [netdrv] ice: Introduce ice_dev_onetime_setup (Jonathan Toppins) [1454916]
-- [netdrv] ice: Use capability count returned by the firmware (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update expected FW version (Jonathan Toppins) [1454916]
-- [netdrv] ice: Change device ID define names to align with branding string (Jonathan Toppins) [1454916]
-- [netdrv] ice: Make ice_msix_clean_rings static (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update version string (Jonathan Toppins) [1454916]
-- [netdrv] ice: Use the right function to enable/disable VSI (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add more flexibility on how we assign an ITR index (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix potential null pointer issues (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add code to go from ICE_FWD_TO_VSI_LIST to ICE_FWD_TO_VSI (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix forward to queue group logic (Jonathan Toppins) [1454916]
-- [netdrv] ice: Extend malicious operations detection logic (Jonathan Toppins) [1454916]
-- [netdrv] ice: Notify VF of link status change (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement virtchnl commands for AVF support (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add handlers for VF netdevice operations (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for VF reset events (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update VSI and queue management code to handle VF VSI (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add handler to configure SR-IOV (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support to detect SR-IOV capability and mailbox queues (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix error on driver remove (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for dynamic interrupt moderation (Jonathan Toppins) [1454916]
-- [netdrv] ice: Align ice_reset_req enum values to hardware reset values (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement ethtool hook for RSS switch (Jonathan Toppins) [1454916]
-- [netdrv] ice: Split irq_tracker into sw_irq_tracker and hw_irq_tracker (Jonathan Toppins) [1454916]
-- [netdrv] ice: Check for actual link state of port after reset (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement VSI replay framework (Jonathan Toppins) [1454916]
-- [netdrv] ice: Expand use of VSI handles part 2/2 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Expand use of VSI handles part 1/2 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Change pf state behavior to protect reset path (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 7/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 6/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 5/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 4/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 3/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 2/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Move common functions out of ice_main.c part 1/7 (Jonathan Toppins) [1454916]
-- [netdrv] ice: fix changing of ring descriptor size (ethtool -G) (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update to capabilities admin queue command (Jonathan Toppins) [1454916]
-- [netdrv] ice: Query the Tx scheduler node before adding it (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update comment for ice_fltr_mgmt_list_entry (Jonathan Toppins) [1454916]
-- [netdrv] ice: update fw version check logic (Jonathan Toppins) [1454916]
-- [netdrv] ice: update branding strings and supported device ids (Jonathan Toppins) [1454916]
-- [netdrv] ice: replace unnecessary memcpy with direct assignment (Jonathan Toppins) [1454916]
-- [netdrv] ice: use [sr]q.count when checking if queue is initialized (Jonathan Toppins) [1454916]
-- [netdrv] ice: remove ndo_poll_controller (Jonathan Toppins) [1454916]
-- [netdrv] intel-ethernet: use correct module license (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix and update driver version string (Jonathan Toppins) [1454916]
-- [netdrv] ice: Introduce SERVICE_DIS flag and service routine functions (Jonathan Toppins) [1454916]
-- [netdrv] ice: Enable VSI Rx/Tx pruning only when VLAN 0 is active (Jonathan Toppins) [1454916]
-- [netdrv] ice: Enable firmware logging during device initialization (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement ice_bridge_getlink and ice_bridge_setlink (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for Tx hang, Tx timeout and malicious driver detection (Jonathan Toppins) [1454916]
-- [netdrv] ice: Clean up register file (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement handlers for ethtool PHY/link operations (Jonathan Toppins) [1454916]
-- [netdrv] ice: Refactor VSI allocation, deletion and rebuild flow (Jonathan Toppins) [1454916]
-- [netdrv] ice: Refactor switch rule management structures and functions (Jonathan Toppins) [1454916]
-- [netdrv] ice: Code optimization for ice_fill_sw_rule() (Jonathan Toppins) [1454916]
-- [netdrv] ice: Prevent control queue operations during reset (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update request resource command to latest specification (Jonathan Toppins) [1454916]
-- [netdrv] ice: Updates to Tx scheduler code (Jonathan Toppins) [1454916]
-- [netdrv] ice: Rework flex descriptor programming (Jonathan Toppins) [1454916]
-- [netdrv] ice: Trivial formatting fixes (Jonathan Toppins) [1454916]
-- [netdrv] ice: Change struct members from bool to u8 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix potential return of uninitialized value (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix a few null pointer dereference issues (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update to interrupts enabled in OICR (Jonathan Toppins) [1454916]
-- [netdrv] ice: Set VLAN flags correctly (Jonathan Toppins) [1454916]
-- [netdrv] ice: Use order_base_2 to calculate higher power of 2 (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix bugs in control queue processing (Jonathan Toppins) [1454916]
-- [netdrv] ice: Clean control queues only when they are initialized (Jonathan Toppins) [1454916]
-- [netdrv] ice: Report stats for allocated queues via ethtool stats (Jonathan Toppins) [1454916]
-- [netdrv] ice: Cleanup magic number (Jonathan Toppins) [1454916]
-- [netdrv] ice: Remove unnecessary node owner check (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix multiple static analyser warnings (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update NVM AQ command functions (Jonathan Toppins) [1454916]
-- [netdrv] ice: Set rq_last_status when cleaning rq (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix insufficient memory issue in ice_aq_manage_mac_read (Jonathan Toppins) [1454916]
-- [netdrv] ice: Do not check INTEVENT bit for OICR interrupts (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix incorrect comment for action type (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix initialization for num_nodes_added (Jonathan Toppins) [1454916]
-- [netdrv] ice: Bug fixes in ethtool code (Jonathan Toppins) [1454916]
-- [netdrv] ice: Fix error return code in ice_init_hw() (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement filter sync, NDO operations and bump version (Jonathan Toppins) [1454916]
-- [netdrv] ice: Support link events, reset and rebuild (Jonathan Toppins) [1454916]
-- [netdrv] ice: Update Tx scheduler tree for VSI multi-Tx queue support (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add stats and ethtool support (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for VLANs and offloads (Jonathan Toppins) [1454916]
-- [netdrv] ice: Implement transmit and NAPI support (Jonathan Toppins) [1454916]
-- [netdrv] ice: Configure VSIs for Tx/Rx (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for switch filter programming (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for VSI allocation and deallocation (Jonathan Toppins) [1454916]
-- [netdrv] ice: Initialize PF and setup miscellaneous interrupt (Jonathan Toppins) [1454916]
-- [netdrv] ice: Get MAC/PHY/link info and scheduler topology (Jonathan Toppins) [1454916]
-- [netdrv] ice: Get switch config, scheduler config and device capabilities (Jonathan Toppins) [1454916]
-- [netdrv] ice: Start hardware initialization (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add support for control queues (Jonathan Toppins) [1454916]
-- [netdrv] ice: Add basic driver framework for Intel(R) E800 Series (Jonathan Toppins) [1454916]
-
-* Fri Mar 01 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1013.el7]
-- [infiniband] ib/mlx5: Make mlx5_ib_stage_odp_cleanup() static (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx4: Fix using wrong function to destroy sqp AHs under SRIOV (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Fix check for supported user flags when creating a QP (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Declare local functions 'static' (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Don't override existing ip_protocol (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move to use common phys port names for vport representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Allow MAC invalidation while spoofchk is ON (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Take lock with IRQs disabled to avoid deadlock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix wrong private flag usage causing checksum disable (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Reuse fold sw stats in representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix wrong (zero) TX drop counter indication for representor (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Present the representors SW stats when state is not opened (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Separate between ethtool and netdev software stats folding (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: Add masking for a few queries on HCA caps (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Force CHECKSUM_UNNECESSARY for short ethernet frames (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Signedness bug in UVERBS_HANDLER() (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix long EEH recover time with NVMe offloads (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx4: Remove unneeded NULL check (Alaa Hleihel) [1642498]
-- [kernel] rdma/mlx5: Delete declaration of already removed function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix wrong error code return on FEC query failure (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: drop useless LIST_HEAD (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Delete unreachable handle_atomic code by simplifying SW completion (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Continue driver initialization despite debugfs failure (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Enable TX on a DEVX flow table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix cb_ident duplicate in indirect block register (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix LAG requirement when CONFIG_MLX5_ESWITCH is off (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix query_nic_sys_image_guid() error during init (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support tunnel encap over tagged Ethernet (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Support VLAN encap ETH header generation (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Re-order route and encap header memory allocation (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Tunnel encap ETH header helper function (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Fail attempt to offload e-switch TC encap flows with vlan on underlay (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Tunnel routing output devs helper function (Alaa Hleihel) [1656385 1642498]
-- [netdrv] mlx5e: Fail attempt to offload e-switch TC flows with egress upper devices (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Handle LAG FW commands failure gracefully (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Make RoCE and SR-IOV LAG modes explicit (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Rename mlx5_lag_is_bonded() to __mlx5_lag_is_active() (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Allow co-enablement of uplink LAG and SRIOV (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Allow/disallow LAG according to pre-req only (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Adjustments for the activate LAG logic to run under sriov (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: Duplicate offloaded TC eswitch rules under uplink LAG (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: Offload TC e-switch rules with egress LAG device (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: In case of LAG, one switch parent id is used for all representors (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: Enhance flow counter scheme for offloaded TC eswitch rules (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: Infrastructure for duplicated offloading of TC flows (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5e: E-Switch, Add peer miss rules (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Introduce inter-device communication mechanism (Alaa Hleihel) [1642355 1642498]
-- [netdrv] mlx5: Fold the modify lag code into function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add lag affinity info to log (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Split the activate lag function into two routines (Alaa Hleihel) [1642498]
-- [kernel] mlx5: E-Switch, Introduce flow counter affinity (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Make EQE access methods inline (Alaa Hleihel) [1642498]
-- [infiniband] {net, ib}/mlx5: Move Page fault EQ and ODP logic to RDMA (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Generic EQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Different EQ types (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use multi threaded workqueue for page fault handling (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Privatize eq_table and friends (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, irq_info and rmap belong to eq_table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Create all EQs in one place (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Move all EQ logic to eq.c (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Remove redundant completion EQ list lock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, No need to store eq index as a field (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Remove unused fields and structures (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ, Use the right place to store/read IRQ affinity hint (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support multiple encapsulations for a TC flow (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Allow association of a flow to multiple encaps (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Change parse attr struct to accommodate multiple tunnel infos (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Support header rewrite actions with remote port mirroring (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Replace the split logic with extended destination (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Annul encap action ordering requirement (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Move flow attr reformat action bit to per dest flags (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Refactor eswitch flow attr for destination specific properties (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5: E-Switch, Rename esw attr mirror count field (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5: Consider encapsulation properties when comparing destinations (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5: Support extended destination format in flow steering command (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5: E-Switch, Change vhca id valid bool field to bit flag (Alaa Hleihel) [1642383 1642498]
-- [kernel] mlx5: Introduce extended destination fields (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Add GRE protocol offloading (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Move TC tunnel offloading code to separate source file (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Branch according to classified tunnel type (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Refactor VXLAN tunnel decap offloading code (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Refactor VXLAN tunnel encap offloading code (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Replace egdev with indirect block notifications (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Propagate the filter's net device to mlx5e structures (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Provide the TC filter netdev as parameter to flower callbacks (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Support TC indirect block notifications for eswitch uplink reprs (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Store eswitch uplink representor state on a dedicated struct (Alaa Hleihel) [1642362 1642498]
-- [kernel] mlx5: Revise gre and nvgre key formats (Alaa Hleihel) [1642362 1642498]
-- [netdrv] mlx5e: Remove the false indication of software timestamping support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Typo fix in del_sw_hw_rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Fix wrong early return in receive queue poll (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Cancel DIM work on close SQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove unused UDP GSO remaining counter (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid encap flows deletion attempt the 1st time a neigh is resolved (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Properly initialize flow attributes for slow path eswitch rule deletion (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid overriding the user provided priority for offloaded tc rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Err if asked to mirror a goto chain tc eswitch rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Verify MPWQE stride size is in range (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix default amount of channels for VF representors (Alaa Hleihel) [1642498]
-- [kernel] mlx5: E-Switch, Fix fdb cap bits swap (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Block DEVX umem from the non applicable cases (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix implicit ODP interrupted page fault (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: fix get_ip_proto() (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: Correctly set PFC param if global pause is turned off (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Fix build break when CONFIG_INET is off (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Change min MTU size to ETH_MIN_MTU (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx5: Initialize return variable in case pagefault was skipped (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix page fault handling for MW (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Skip non-ODP MR when handling a page fault (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Avoid load failure due to unknown link width (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix XRC QP support after introducing extended atomic (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Fix fence type for IB_WR_LOCAL_INV WR (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix failing ethtool query on FEC query error (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Removed unnecessary warnings in FEC caps query (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix wrong field name in FEC related functions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix a bug in turning off FEC policy in unsupported speeds (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix selftest for small MTUs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, verify received packet size in Linear Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Apply the correct check for supporting TC esw rules split (Alaa Hleihel) [1642383 1642498]
-- [netdrv] mlx5e: Adjust to max number of channles when re-attaching (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Always use the match level enum when parsing TC rule match (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Claim TC hw offloads support only under a proper build config (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Don't match on vlan non-existence if ethertype is wildcarded (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Reset QP after channels are closed (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: IPSec, Fix the SA context hash key (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Fix XRC SRQ umem valid bits (Alaa Hleihel) [1642498]
-- [netdrv] mlx4: Fix UBSAN warning of signed integer overflow (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Fix uninitialized variable compilation warning (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Zero out lkey field in SW2HW_MPT fw command (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx5: Allocate enough space for the FDB sub-namespaces (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Added 'raw_errors_laneX' fields to ethtool statistics (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Added "per_lane_error_counters" cap bit to PCAM (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool driver callback for query/set FEC policy (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add port FEC get/set functions (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add FEC fields to Port Phy Link Mode (PPLM) reg (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Remove counter from idr after removing it from list (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Take fs_counters dellist before addlist (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Refactor fragmented buffer struct fields and init flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support offloading tc priorities and chains for eswitch flows (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use a slow path rule instead if vxlan neighbour isn't available (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Enable setting goto slow path chain action (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid duplicated code for tc offloads add/del fdb rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: For TC offloads, always add new flow instead of appending the actions (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add a no-append flow insertion mode (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Add chains and priorities (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Have explicit API to delete fwd rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Split FDB fast path prio to multiple namespaces (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add cap bits for multi fdb encap (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Split TC add rule path for nic vs e-switch (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Change return type of tc add flow functions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use flow counter IDs and not the wrapping cache object (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Get counters for offloaded flows from callers (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add support for extended atomic operations (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Allow scatter to CQE without global signaled WRs (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Verify that driver supports user flags (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Support scatter to CQE for DC transport type (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Expose DC scatter to CQE capability bit (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix MR cache initialization (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Add support for flow tag to raw create flow (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove extraneous error check (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Verify DEVX object type (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Do not ignore netdevice TX/RX queues number (Alaa Hleihel) [1576416 1642498]
-- [netdrv] mlx5e: Initialize all netdev common structures in one place (Alaa Hleihel) [1576416 1642498]
-- [netdrv] mlx5e: Always initialize update stats delayed work (Alaa Hleihel) [1576416 1642498]
-- [netdrv] mlx5e: Gather common netdev init/cleanup functionality in one place (Alaa Hleihel) [1576416 1642498]
-- [netdrv] mlx5e: Add new counter for aRFS rule insertion failures (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add extack messages for TC offload failures (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: E-Switch, Add extack messages to devlink callbacks (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Cache the system image guid (Alaa Hleihel) [1624551 1642498]
-- [netdrv] mlx5e: Allow reporting of checksum unnecessary (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Enable reporting checksum unnecessary also for L3 packets (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add ethtool control of ring params to VF representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Enable multi-queue and RSS for VF representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Expose ethtool rss key size / indirection table functions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Expose function for building RSS params (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Provide explicit directive if to create inner indirect tirs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Provide flow dest when creating vport rx rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Extract creation of rep's default flow rule (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Enable stateless offloads for VF representor netdevs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Change VF representors' RQ type (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, Support masks for l3/l4 filters (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Enable DEVX on IB (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Enable DEVX white list commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Manage device uid for DEVX white list commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Expose RAW QP device handles to user space (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove superfluous version print (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set valid umem bit on DEVX (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of TD commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of XRCD commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of CQ creation (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid upon PD allocation (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of RQT commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of TIS commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of TIR commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of MCG commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of DCT commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of SRQ commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of SQ commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of RQ commands (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Set uid as part of QP creation (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Use uid as part of PD commands (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Update mlx5_ifc with DEVX UID bits (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Set uid as part of DCT commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Set uid as part of SRQ commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Set uid as part of SQ commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Set uid as part of RQ commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Set uid as part of QP commands (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Set uid as part of CQ commands (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Enable vport loopback when user context or QP mandate (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Allow creating RAW ethernet QP with loopback support (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Refactor transport domain bookkeeping logic (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Rename incorrect naming in IFC file (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Use rdma_user_mmap_io (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Allow transition of DCI QP to reset (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Allow creating a matcher for a NIC TX flow table (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add NIC TX namespace when getting a flow table (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add flow actions support to raw create flow (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Refactor raw flow creation (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Don't overwrite action if already set (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Refactor flow action parsing to be more generic (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable attaching packet reformat action to steering flows (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable reformat on NIC RX if supported (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable attaching DECAP action to steering flows (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable decap and packet reformat on flow tables (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Enable attaching modify header to steering flows (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add NIC TX steering support (Alaa Hleihel) [1641361 1642498]
-- [infiniband] ib/mlx5: Don't hold spin lock while checking device state (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: don't set CHECKSUM_COMPLETE on SCTP packets (Alaa Hleihel) [1467290 1642498]
-- [netdrv] mlx5e: Set ECN for received packets using CQE indication (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Replace PTP clock lock from RW lock to seq lock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move Q counters allocation and drop RQ to init_rx (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move mlx5e_priv_flags into en_ethtool.c (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add flow counters idr (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Store flow counters in a list (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add new list to store deleted flow counters (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Change flow counters addlist type to single linked list (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Extend packet reformat verbs (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add new flow action verb - packet reformat (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/uverbs: Add generic function to fill in flow action object (Alaa Hleihel) [1641361 1642498]
-- [infiniband] rdma/mlx5: Add a new flow action verb - modify header (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5e: Make function mlx5i_grp_sw_update_stats() static (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Use priv stats in completion rx flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Add ndo stats support for IPoIB child devices (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Add ndo stats support for IPoIB netdevices (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Initialize max_opened_tc in mlx5i_init flow (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Export packet reformat alloc/dealloc functions (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Pass a namespace for packet reformat ID allocation (Alaa Hleihel) [1641361 1642498]
-- [kernel] mlx5: Expose new packet reformat capabilities (Alaa Hleihel) [1641361 1642498]
-- [netdrv] {net, rdma}/mlx5: Rename encap to reformat packet (Alaa Hleihel) [1641361 1642498]
-- [kernel] mlx5: Move header encap type to IFC header file (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Break encap/decap into two separated flow table creation flags (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Add support for more namespaces when allocating modify header (Alaa Hleihel) [1641361 1642498]
-- [kernel] mlx5: Export modify header alloc/dealloc functions (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Add proper NIC TX steering flow tables support (Alaa Hleihel) [1641361 1642498]
-- [netdrv] mlx5: Cleanup flow namespace getter switch logic (Alaa Hleihel) [1641361 1642498]
-- [infiniband] ib/mlx5: Change TX affinity assignment in RoCE LAG mode (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add memic command opcode to command checker (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Fix atomic_mode enum values (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_en: use __netdev_tx_sent_queue() (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: add a missing <net/ip.h> include (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Add port and TID to MAD debug print (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Enable debug print of SMPs (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Use minimal rx and tx ring sizes on kdump kernel (Alaa Hleihel) [1641912 1524728 1642498]
-- [infiniband] rdma: Fix dependencies for rdma_user_mmap_io (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Remove unnecessary parentheses (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Use rdma_user_mmap_io (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx5: WQ, fixes for fragmented WQ buffers API (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5: Take only bit 24-26 of wqe.pftype_wq for page fault type (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix memory leak when setting fpga ipsec caps (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Unmap DMA addr from HCA before IOMMU (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Set vlan masks for all offloaded TC rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Fix out of bound access when setting vport rate (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid unbounded peer devices when unpairing TC hairpin rules (Alaa Hleihel) [1624551 1642498]
-- [infiniband] ib/mlx5: Destroy the DEVX object upon error flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: remove ndo_poll_controller (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, Read capabilities only when it is safe (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Check for SQ and not RQ state when modifying hairpin SQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix read from coherent memory (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix possible deadlock from lockdep when adding fte to fg (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, fix udp source port value (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Check for error in mlx5_attach_interface (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Consider PCI domain in search for next dev (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix not releasing read lock when adding flow rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Fix memory leak when creating switchdev mode FDB tables (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Use u16 for Work Queue buffer strides offset (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use u16 for Work Queue buffer fragment size (Alaa Hleihel) [1641348 1642498]
-- [netdrv] mlx5: Fix debugfs cleanup in the device init/remove flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix use-after-free in self-healing flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix SQ offset in QPs with small RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Delete unneeded function argument (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix leaking stack memory to userspace (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Improve argument name for add flow API (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Reorganize the makefile (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: clock.c depends on CONFIG_PTP_1588_CLOCK (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: vxlan.c depends on CONFIG_VXLAN (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move flow steering declarations into en/fs.h (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add CONFIG_MLX5_EN_ARFS for accelerated flow steering support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add CONFIG_MLX5_EN_RXNFC for ethtool rx nfc (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, move ethtool callbacks (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, l4 proto support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering, ip6 support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering flow parsing refactoring (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Ethtool steering flow validation refactoring (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Reduce command polling interval (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Unexport functions that need not be exported (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Remove unused mlx5_query_vport_admin_state (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Remove unused argument when creating legacy FDB (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Rename modify/query_vport state related enums (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Use max_num_eqs for calculation of required MSIX vectors (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Fix shift overflow in mlx5_ib_create_wq (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Mark expected switch fall-throughs (Alaa Hleihel) [1642498]
-- [netdrv] mellanox: fix the dport endianness in call of __inet6_lookup_established() (Alaa Hleihel) [1642498]
-- [infiniband] ib/uverbs: Use uverbs_alloc for allocations (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix uninitialized variable (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: handle DMA mapping error case for XDP redirect (Alaa Hleihel) [1642498]
-- [infiniband] ib/uverbs: Add UVERBS_ATTR_FLAGS_IN to the specs language (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Issue direct lookup on vxlan ports by vport representors (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, move vxlan logic to core driver (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, add sync lock for add/del vxlan port (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, return values for add/del port (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, rename from mlx5e to mlx5 (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, rename struct mlx5e_vxlan to mlx5_vxlan_port (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, move netdev only logic to en_main.c (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, add direct delete function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, cleanup an unused member in vxlan work (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, replace ports radix-tree with hash table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, check maximum number of UDP ports (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Vxlan, reflect 4789 UDP port default addition to software database (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Use function to access sq_dma object in fifo (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Move DB fields in TXQ-SQ struct (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Prefetch the xdp_frame data area (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add support for XDP_REDIRECT in device-out side (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Re-order fields of struct mlx5e_xdpsq (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Refactor XDP counters (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Make XDP xmit functions more generic (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add counter for XDP redirect in RX (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move XDP related code into new XDP files (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Restrict the combination of large MTU and XDP (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Gather all XDP pre-requisite checks in a single function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Do not recycle RX pages in interface down flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Replace call to MPWQE free with dealloc in interface down flow (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: avoid excessive warning msgs when creating VFs on 2nd port (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Offload TC matching on tos/ttl for ip tunnels (Alaa Hleihel) [1641360 1642498]
-- [netdrv] mlx5e: Support setup of tos and ttl for tunnel key TC action offload (Alaa Hleihel) [1641360 1642498]
-- [netdrv] mlx5e: Use ttl from route lookup on tc encap offload only if needed (Alaa Hleihel) [1641360 1642498]
-- [infiniband] ib/mlx5: Enable driver uapi commands for flow steering (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add support for a flow table destination for driver flow steering (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Support adding flow steering rule by raw description (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Introduce driver create and destroy flow methods (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Introduce flow steering matcher uapi object (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add support for flow table destination number (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add forward compatible support for the FTE match data (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use PARTIAL_GSO for UDP segmentation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support offloading double vlan push/pop tc actions (Alaa Hleihel) [1642344 1642498]
-- [netdrv] mlx5e: Refactor tc vlan push/pop actions offloading (Alaa Hleihel) [1642344 1642498]
-- [netdrv] mlx5e: Support offloading tc double vlan headers match (Alaa Hleihel) [1642344 1642498]
-- [netdrv] mlx5e: Remove redundant WARN when we cannot find neigh entry (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, Add debug prints (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, Enable tracing (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, parse traces and kernel tracing support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, events handling (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, register log buffer memory key (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, create trace buffer and copy strings database (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FW tracer, implement tracer logic (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove set but not used variables (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix tristate and description for MLX5 module (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Better return types for CQE API (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use ERR_CAST() instead of coding it (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add missing SET_DRIVER_VERSION command translation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add XRQ commands definitions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add core support for double vlan push/pop steering action (Alaa Hleihel) [1642344 1642498]
-- [kernel] mlx5: Expose MPEGC (Management PCIe General Configuration) structures (Alaa Hleihel) [1642498]
-- [kernel] mlx5: FW tracer, add hardware structures (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPsec, fix byte count in CQE (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Accel, add common metadata functions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, build TLS netdev from capabilities (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, add software statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, add Innova TLS rx data path (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, add innova rx support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Accel, add TLS rx offload routines (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, refactor variable names (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Check that supplied blue flame index doesn't overflow (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Melt consecutive calls to alloc_bfreg() in one call (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: fix uaccess beyond "count" in debugfs read/write handlers (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use 2-factor allocator calls (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Honor cnt_set_id_valid flag instead of set_id (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove unused port number parameter (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: fix uaccess beyond "count" in debugfs read/write handlers (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Expose dump and fill memory key (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add hardware definitions for dump_fill_mkey (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Limit scope of dump_fill_mkey function (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix GRE flow specification (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Remove set-but-not-used variables (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Don't leak UARs in case of free fails (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add counter for total num of NOP operations (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add counter for MPWQE filler strides (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add channel events counter (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add a counter for congested UMRs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add NAPI statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add XDP_TX completions statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add TX completions statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Use existing WQ local variable (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Convert large order kzalloc allocations to kvzalloc (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add UDP GSO remaining counter (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add UDP GSO support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Rate limit errors in command interface (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Support RoCE ICRC encapsulated error counter (Alaa Hleihel) [1641357 1642498]
-- [kernel] mlx5: Add RoCE RX ICRC encapsulated counter (Alaa Hleihel) [1641357 1642498]
-- [infiniband] rdma/mlx5: Refactor transport domain checks (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Expose DEVX tree (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add DEVX query EQN support (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add DEVX support for memory registration (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add support for DEVX query UAR (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add DEVX support for modify and query commands (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add obj create and destroy functionality (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Add support for DEVX general command (Alaa Hleihel) [1641355 1642498]
-- [infiniband] ib/mlx5: Introduce DEVX (Alaa Hleihel) [1641355 1642498]
-- [kernel] mlx5: Expose DEVX specification (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Prevent warns in dmesg upon firmware commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: Fix warnings during boot on driverinit param set failures (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: remove ndo_poll_controller (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Use cpumask_available for eq->affinity_mask (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Ensure that maximal send/receive SGE less than supported by HW (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4/en_rx: Mark expected switch fall-throughs (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4/mcg: Mark expected switch fall-throughs (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Use 4K pages for kernel QP's WQE buffer (Alaa Hleihel) [1647741 1641912 1642498]
-- [netdrv] mlx4_core: Allow MTTs starting at any index (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Use devlink region_snapshot parameter (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Add Crdump FW snapshot support (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Add health buffer address capability (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Add support for devlink reload and load driverinit values (Alaa Hleihel) [1641912 1641358 1642498]
-- [netdrv] mlx4: Add mlx4 initial parameters table and register it (Alaa Hleihel) [1641912 1641358 1642498]
-- [infiniband] ib/mlx4: Test port number before querying type (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Create slave AH's directly (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx5e: Cleanup of dcbnl related fields (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix QP fragmented buffer allocation (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5: Fix 'DON'T_TRAP' functionality (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, UBSAN fix undefined behavior in mlx5_eswitch_mode (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Don't allow aRFS for encapsulated packets (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fix quota counting in aRFS expire flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Adjust clock overflow work period (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Refine ets validation function (Alaa Hleihel) [1613971 1642498]
-- [infiniband] rdma/mlx5: Fix memory leak in mlx5_ib_create_srq() error path (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix command interface race in polling mode (Alaa Hleihel) [1669506 1642498]
-- [netdrv] mlx5: Fix incorrect raw command length parsing (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix wrong size allocation for QoS ETC TC regitster (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Avoid dealing with vport representors if not being e-switch manager (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix return value check in flow_counters_set_data() (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix memory leak in mlx5_ib_create_flow (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Update SPDX tags to show proper license (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: fix error return code in mlx5e_alloc_rq() (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Make function mlx5e_change_rep_mtu() static (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Make function mlx5_fpga_tls_send_teardown_cmd() static (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add counters read support (Alaa Hleihel) [1641352 1642498]
-- [infiniband] ib/mlx5: Add flow counters read support (Alaa Hleihel) [1641352 1642498]
-- [infiniband] ib/mlx5: Add flow counters binding support (Alaa Hleihel) [1641352 1642498]
-- [infiniband] ib/mlx5: Add counters create and destroy support (Alaa Hleihel) [1641352 1642498]
-- [kernel] mlx5: Export flow counter related API (Alaa Hleihel) [1641352 1642498]
-- [netdrv] mlx5: Use flow counter pointer as input to the query function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Separate cachelines of xmit and completion stats (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Always prefer Linear SKB configuration (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Enhance legacy Receive Queue memory scheme (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Use cyclic WQ in legacy RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Split WQ objects for different RQ types (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Remove HW LRO support in legacy RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Dedicate a function for copying SKB header (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Generalise function of SKB frag addition (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Generalise name of non-linear SKB head size (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Obsolete maintaining local copies of skb->len/data (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5: FPGA, Handle QP error event (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Increase aRFS flow tables size (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove redundant active_channels indication (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPOIB, Add a missing skb_pull (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5e: IPOIB, Fix overflowing SQ WQE memset (Alaa Hleihel) [1641354 1642498]
-- [infiniband] rdma/mlx5: Don't check return value of zap_vma_ptes() (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add FPGA QP error event (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add temperature warning event to log (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Get the number of offloaded TC rules from the correct table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Call DMA unmap with the right size (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Properly initialize dma direction on fpga conn send (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Abort FPGA init if the device reports no QP capability (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, print SBU identification on init (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Add device name (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA, Add doxygen for access type enum (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Introduce a new mini-CQE format (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Refactor CQE compression response (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Exposing a new mini-CQE format (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: fix TLS dependency (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Present SW stats when state is not opened (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid reset netdev stats on configuration changes (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Introducing new statistics rwlock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move phy link down events counter out of SW stats (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Use order-0 allocations for all WQ types (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5i: Use compilation flag in IPOIB header (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5e: TX, Use actual WQE size for SQ edge fill (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5e: Use WQ API functions instead of direct fields access (Alaa Hleihel) [1641354 1642498]
-- [netdrv] mlx5e: Split offloaded eswitch TC rules for port mirroring (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Parse mirroring action for offloaded TC eswitch flows (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-switch, Create a second level FDB flow table (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add cap bits for flow table destination in FDB table (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Reorganize and rename fdb flow tables (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Receive buffer support for DCBX (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Receive buffer configuration (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: PPTB and PBMC register firmware command support (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add pbmc and pptb in the port_access_reg_cap_mask (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move port speed code from en_ethtool.c to en/port.c (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fetch soft WQE's on fatal error state (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Remove debug prints of VMA pointers (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add HW vport counters to representor ethtool stats (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Offload TC eswitch rules for VFs belonging to different PFs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Explicitly set source e-switch in offloaded TC rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add source e-switch owner (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Explicitly set destination e-switch in FDB rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add destination e-switch owner (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Properly handle a vport destination when setting FTE (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Add merged e-switch cap (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Expose MPLS related tunneling offloads (Alaa Hleihel) [1641351 1642498]
-- [infiniband] ib/mlx5: Add support for MPLS flow specification (Alaa Hleihel) [1641351 1642498]
-- [infiniband] ib/mlx5: Add support for GRE flow specification (Alaa Hleihel) [1641351 1642498]
-- [infiniband] ib/mlx5: Use 'kvfree()' for memory allocated by 'kvzalloc()' (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Eswitch, Use 'kvfree()' for memory allocated by 'kvzalloc()' (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Vport, Use 'kvfree()' for memory allocated by 'kvzalloc()' (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove MLX5E_TEST_BIT macro (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use test bit in en accel xmit flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use __set_bit for adaptive-moderation bit in RQ state (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Report all channels with min RX WQEs timeout (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support offloaded TC flows with no matches on headers (Alaa Hleihel) [1618427 1642498]
-- [netdrv] mlx5e: Get the required HW match level while parsing TC flow matches (Alaa Hleihel) [1618427 1642498]
-- [netdrv] mlx5e: Properly order min inline mode setup while parsing TC matches (Alaa Hleihel) [1618427 1642498]
-- [netdrv] mlx5e: Use local actions var while processing offloaded TC flow actions (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Return success when TC offloaded fdb actions parsed ok (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Avoid redundant zeroing of offloaded TC flow attributes (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Clean static checker complaints on TC offload and VF reps code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove double defined DMAC header re-write element (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use u8 instead of int for LRO number of segments (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Skip redundant checks when providing NUD lastuse feedback (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove redundant vport context vlan update (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: fix spelling mistake: "modfiy" -> "modify" (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Cleanup unused field in Work Queue parameters (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix dump_command mailbox length printed (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Refactor num of blocks in mailbox calculation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Decrease level of prints about non-existent MKEY (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, Add error statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, Add Innova TLS TX offload data path (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TLS, Add Innova TLS TX support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Accel, Add TLS tx offload interface (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move defines out of ipsec code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Enable adaptive-TX moderation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: use page_pool for xdp_return_frame call (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: register a memory model when XDP is enabled (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: basic XDP_REDIRECT forward support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: remove some extraneous spaces in indentations (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: Save the qpn from the input modifier in RST2INIT wrapper (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Don't reuse RX page when XDP is set (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Fix an error handling path in 'mlx4_ib_rereg_user_mr()' (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Remove unnecessary parentheses (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: restore optimal ICM memory allocation (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Don't crash machine if zap_vma_ptes() fails (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Discard unknown SQP work requests (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Catch FW<->SW misalignment without machine crash (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Mark user MR as writable if actual virtual memory is writable (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Use msi_x module param to limit num of MSI-X irqs (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Add PCI calls for suspend/resume (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Report driver version to FW (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: optimizes get_fixed_ipv6_csum() (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Don't bother using skb_tx_hash in mlx4_en_select_queue (Alaa Hleihel) [1641912 1642498]
-- [netdrv] bpf: make mlx4 compatible w/ bpf_xdp_adjust_tail (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx5: IPSec, Fix a race between concurrent sandbox QP commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: When RXFCS is set, add FCS data into checksum calculation (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Fix build break when CONFIG_SMP=n (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Err if asked to offload TC match on frag being first (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Include VF RDMA stats in vport statistics (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Use proper spec flow label type (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Don't assume that medium blueFlame register exists (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: fix spelling mistake: "loobpack" -> "loopback" (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Properly check return value of mlx5_get_uars_page (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Fix represent correct netdevice in dual port RoCE (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Use unlimited rate when static rate is not supported (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Protect from shift operand overflow (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Fix multiple NULL-ptr deref errors in rereg_mr flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Properly deal with flow counters when deleting rules (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Avoid cleaning flow steering table twice during error flow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: TX, Use correct counter in dma_map error flow (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Fix mlx5_get_vector_affinity function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: DCBNL fix min inline header size for dscp (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Allow offloading ipv4 header re-write for icmp (Alaa Hleihel) [1676550 1642498]
-- [infiniband] mlx5: fix build errors when INFINIBAND_USER_ACCESS=m (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: remove duplicate header file (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Device memory mr registration support (Alaa Hleihel) [1641349 1642498]
-- [infiniband] mlx5: Mkey creation command adjustments (Alaa Hleihel) [1641349 1642498]
-- [infiniband] ib/mlx5: Device memory support in mlx5_ib (Alaa Hleihel) [1641349 1642498]
-- [kernel] mlx5: Query device memory capabilities (Alaa Hleihel) [1641349 1642498]
-- [infiniband] ib/mlx5: Add ability to hash by IPSEC_SPI when creating a TIR (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add information for querying IPsec capabilities (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add IPsec support for egress and ingress (Alaa Hleihel) [1642498]
-- [kernel] {net,ib}/mlx5: Add ipsec helper (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add modify_flow_action_esp verb (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Add implementation for create and destroy action_xfrm (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Initialize the parsing tree root without the help of uverbs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use pcie_bandwidth_available() to compute bandwidth (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Report PCIe link properties with pcie_print_link_status() (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Set EQE based as default TX interrupt moderation mode (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: RX, Recycle buffer of UMR WQEs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Keep single pre-initialized UMR WQE per RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove page_ref bulking in Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Support XDP over Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Refactor RQ XDP_TX indication (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use linear SKB in Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use inline MTTs in UMR WQEs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Do not busy-wait for UMR completion in Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Code movements in RX UMR WQE post (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Derive Striding RQ size from MTU (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPoIB, Fix spelling mistake (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Eliminate query xsrq dead code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use eq ptr from cq (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Recover Send Queue (SQ) from error state (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Dump xmit error completions (Alaa Hleihel) [1642498]
-- [infiniband] mlx5: Move dump error CQE function out of mlx5_ib for code sharing (Alaa Hleihel) [1642498]
-- [netdrv] mlx5_{ib, core}: Add query SQ state helper function (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Move all TX timeout logic to be under state lock (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove unused max inline related code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add ethtool priv-flag for Striding RQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Do not reset Receive Queue params on every type change (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove rq_headroom field from params (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove RQ MPWQE fields from params (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Use no-offset function in skb header copy (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Separate dma base address and offset in dma_sync call (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove unused define MLX5_MPWRQ_STRIDES_PER_PAGE (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Disable Striding RQ when PCI is slower than link (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Unify slow PCI heuristic (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add VLAN offload features to hw_enc_features (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add a helper macro in set features ndo (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Make choose LRO timeout function static (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Remove redundant check in get ethtool stats (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Protect from command bit overflow (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: E-Switch, Use same source for offloaded actions check (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Add interface down dropped packets statistics (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add packet dropped while vport down statistics (Alaa Hleihel) [1641346 1642498]
-- [netdrv] mlx5e: Add vnic steering drop statistics (Alaa Hleihel) [1641346 1642498]
-- [kernel] mlx5: Add support for QUERY_VNIC_ENV command (Alaa Hleihel) [1641346 1642498]
-- [netdrv] mlx5e: PFC stall prevention support (Alaa Hleihel) [1642498]
-- [kernel] mlx5e: Expose PFC stall prevention counters (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix use-after-free (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Remove call to ida_pre_get (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Packet packing enhancement for RAW QP (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Packet pacing enhancement (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Simplify clean and destroy MR calls (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Guard ODP specific assignments with specific CONFIG (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Unify error flows in rereg MR failure paths (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Return proper value for not-supported command (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Protect from NULL pointer derefence (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Maintain a single emergency page (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Only synchronize RCU once when removing mkeys (Alaa Hleihel) [1642498]
-- [kernel] ib/mlx5: Expose more priorities for bypass namespace (Alaa Hleihel) [1641347 1642498]
-- [infiniband] rdma/mlx5: Fix NULL dereference while accessing XRC_TGT QPs (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fix wrongly assigned CQ reference counter (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: IPSec, Add support for ESN (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Added common function for to_ipsec_sa_entry (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add flow-steering commands for FPGA IPSec implementation (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Refactor accel IPSec code (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Added required metadata capability for ipsec (Alaa Hleihel) [1642498]
-- [kernel] mlx5: Export ipsec capabilities (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: IPSec, Add command V2 support (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: IPSec, Add support for ESP trailer removal by hardware (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: IPSec, Generalize sandbox QP commands (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Flow steering cmd interface should get the fte when deleting (Alaa Hleihel) [1642498]
-- [kernel] {net, ib}/mlx5: Add flow steering helpers (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add empty egress namespace to flow steering core (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add shim layer between fs and cmd (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: FPGA and IPSec initialization to be before flow steering (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Removed not need synchronize_rcu (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Fixed sleeping inside atomic context (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: Wait for FPGA command responses with a timeout (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Fixed compilation issue when CONFIG_MLX5_ACCEL is disabled (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Removed not used parameters (Alaa Hleihel) [1642498]
-- [infiniband] rdma/mlx5: Refactor QP type check to be as early as possible (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Disable self loopback check when in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [netdrv] mlx5: E-Switch, Reload IB interface when switching devlink modes (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Add proper representors support (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: E-Switch, Add rule to forward traffic to vport (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Don't expose MR cache in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: When in switchdev mode, expose only raw packet capabilities (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Listen to netdev register/unresiter events in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Add match on vport when in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Allocate flow DB only on PF IB device (Alaa Hleihel) [1641347 1642498]
-- [infiniband] ib/mlx5: Add basic regiser/unregister representors code (Alaa Hleihel) [1641347 1642498]
-- [kernel] mlx5: E-Switch, Add definition of IB representor (Alaa Hleihel) [1641347 1642498]
-- [netdrv] mlx5: E-Switch, Optimize HW steering tables in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [netdrv] mlx5: E-Switch, Increase number of FTEs in FDB in switchdev mode (Alaa Hleihel) [1641347 1642498]
-- [netdrv] mlx5e: Eliminate build warnings on no previous prototype (Alaa Hleihel) [1642498]
-- [infiniband] ib/mlx5: Implement fragmented completion queue (CQ) (Alaa Hleihel) [1641348 1642498]
-- [kernel] mlx5: Remove redundant EQ API exports (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Move CQ completion and event forwarding logic to eq.c (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: CQ hold/put API (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: EQ add/del CQ API (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: Add missing likely/unlikely hints to cq events (Alaa Hleihel) [1642498]
-- [netdrv] mlx5: CQ Database per EQ (Alaa Hleihel) [1642498]
-- [netdrv] mlx5e: fix error return code in mlx5e_alloc_rq() (Alaa Hleihel) [1642498]
-- [netdrv] xdp/mlx5: setup xdp_rxq_info (Alaa Hleihel) [1642498]
-- [netdrv] mlx4_core: allocate ICM memory in page size chunks (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: Fix irq-unsafe spinlock usage (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: fix spelling mistake: "Inrerface" -> "Interface" and rephrase message (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Fix error handling in mlx4_init_port_info (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Fix an error handling path in 'mlx4_en_init_netdev()' (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Verify coalescing parameters are in range (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Fix integer overflow when calculating optimal MTT size (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: fix spelling mistake: "failedi" -> "failed" (Alaa Hleihel) [1641912 1642498]
-- [infiniband] rdma/mlx4: Add missed RSS hash inner header flag (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Check for egress flow steering (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_core: Report PCIe link properties with pcie_print_link_status() (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: CHECKSUM_COMPLETE support for fragments (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Eliminate duplicate barriers on weakly-ordered archs (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Add Scatter FCS support over WQ creation (Alaa Hleihel) [1641912 1642498]
-- [infiniband] ib/mlx4: Report TSO capabilities (Alaa Hleihel) [1641912 1642498]
-- [infiniband] mlx4_ib: zero out struct ib_pd when allocating (Alaa Hleihel) [1520335 1641912 1642498]
-- [infiniband] mlx4_ib: set user mr attributes in struct ib_mr (Alaa Hleihel) [1520335 1641912 1642498]
-- [netdrv] mlx4_en: try to use high order pages for RX rings (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: RX csum, pre-define enabled protocols for IP status masking (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Combine checks of end-cases in RX completion function (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Remove unnecessary warn print in reset config (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4_en: Add physical RX/TX bytes/packets counters (Alaa Hleihel) [1641912 1642498]
-- [netdrv] mlx4: setup xdp_rxq_info (Alaa Hleihel) [1641912 1642498]
-- [netdrv] revert "mlx5e: Avoid reset netdev stats on configuration changes" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: Present SW stats when state is not opened" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: IPoIB, Initialize max_opened_tc in mlx5i_init flow" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: IPoIB, Add ndo stats support for IPoIB netdevices" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: IPoIB, Add ndo stats support for IPoIB child devices" (Alaa Hleihel) [1642498]
-- [netdrv] revert "mlx5e: IPoIB, Use priv stats in completion rx flow" (Alaa Hleihel) [1642498]
-- [net] sched: register callbacks for indirect tc block binds (Ivan Vecera) [1657872]
-- [net] add netif_is_geneve() (Petr Oros) [1671092]
-- [kernel] overflow.h: Add arithmetic shift helper (Petr Oros) [1671092]
-- [kernel] cpumask: Add helper cpumask_available() (Petr Oros) [1671092]
-
-* Thu Feb 28 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1012.el7]
-- [tools] perf tools: Stop fallbacking to kallsyms for vdso symbols lookup (Jiri Olsa) [1680072]
-- [tools] perf tools: Pass build flags to traceevent build (Jiri Olsa) [1680072]
-- [tools] perf report: Don't crash on invalid inline debug information (Jiri Olsa) [1680072]
-- [tools] perf cpu_map: Align cpu map synthesized events properly (Jiri Olsa) [1680072]
-- [tools] perf tools: Fix use of alternatives to find JDIR (Jiri Olsa) [1680072]
-- [tools] perf evsel: Store ids for events with their own cpus perf_event__synthesize_event_update_cpus (Jiri Olsa) [1680072]
-- [tools] perf vendor events intel: Fix wrong filter_band* values for uncore events (Jiri Olsa) [1680072]
-- [tools] revert "perf tools: Fix PMU term format max value calculation" (Jiri Olsa) [1680072]
-- [tools] perf record: Use unmapped IP for inline callchain cursors (Jiri Olsa) [1680072]
-- [tools] perf python: Use -Wno-redundant-decls to build with PYTHON=python3 (Jiri Olsa) [1680072]
-- [tools] perf report: Don't try to map ip to invalid map (Jiri Olsa) [1680072]
-- [tools] perf script python: Fix export-to-sqlite.py sample columns (Jiri Olsa) [1680072]
-- [tools] perf script python: Fix export-to-postgresql.py occasional failure (Jiri Olsa) [1680072]
-- [tools] perf tools: Fix maps__find_symbol_by_name() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Fix parsing aarch64 branch instructions after objdump update (Jiri Olsa) [1680072]
-- [tools] perf probe powerpc: Ignore SyS symbols irrespective of endianness (Jiri Olsa) [1680072]
-- [tools] perf event-parse: Use fixed size string for comms (Jiri Olsa) [1680072]
-- [tools] perf util: Fix bad memory access in trace info (Jiri Olsa) [1680072]
-- [tools] perf evsel: Fix potential null pointer dereference in perf_evsel__new_idx() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Properly interpret indirect call (Jiri Olsa) [1680072]
-- [tools] perf tools: Remove ext from struct kmod_path (Jiri Olsa) [1680072]
-- [tools] perf tools: Add gzip_is_compressed function (Jiri Olsa) [1680072]
-- [tools] perf tools: Add lzma_is_compressed function (Jiri Olsa) [1680072]
-- [tools] perf tools: Add is_compressed callback to compressions array (Jiri Olsa) [1680072]
-- [tools] perf tools: Move the temp file processing into decompress_kmodule (Jiri Olsa) [1680072]
-- [tools] perf tools: Use compression id in decompress_kmodule() (Jiri Olsa) [1680072]
-- [tools] perf tools: Store compression id into struct dso (Jiri Olsa) [1680072]
-- [tools] perf tools: Add compression id into 'struct kmod_path' (Jiri Olsa) [1680072]
-- [tools] perf tools: Make is_supported_compression() static (Jiri Olsa) [1680072]
-- [tools] perf tools: Make decompress_to_file() function static (Jiri Olsa) [1680072]
-- [tools] perf tools: Get rid of dso__needs_decompress() call in __open_dso() (Jiri Olsa) [1680072]
-- [tools] perf tools: Get rid of dso__needs_decompress() call in symbol__disassemble() (Jiri Olsa) [1680072]
-- [tools] perf tools: Get rid of dso__needs_decompress() call in read_object_code() (Jiri Olsa) [1680072]
-- [tools] perf parser: Improve error message for PMU address filters (Jiri Olsa) [1680072]
-- [tools] perf tools: Disable parallelism for 'make clean' (Jiri Olsa) [1680072]
-- [tools] perf auxtrace: Fix queue resize (Jiri Olsa) [1680072]
-- [tools] perf python: Remove -mcet and -fcf-protection when building with clang (Jiri Olsa) [1680072]
-- [tools] perf tools: Make check-headers.sh check based on kernel dir (Jiri Olsa) [1680072]
-- [tools] perf tools: Fix check-headers.sh AND list path of execution (Jiri Olsa) [1680072]
-- [tools] perf report: Add --percent-type option (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add --percent-type option (Jiri Olsa) [1680072]
-- [tools] perf annotate: Display percent type in stdio output (Jiri Olsa) [1680072]
-- [tools] perf annotate: Make local period the default percent type (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add support to toggle percent type (Jiri Olsa) [1680072]
-- [tools] perf annotate: Pass browser percent_type in annotate_browser__calc_percent() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Pass 'struct annotation_options' to map_symbol__annotation_dump() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Pass struct annotation_options to symbol__calc_lines() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add percent_type to struct annotation_options (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add PERCENT_PERIOD_GLOBAL percent value (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add PERCENT_PERIOD_LOCAL percent value (Jiri Olsa) [1680072]
-- [tools] perf annotate: Add PERCENT_HITS_GLOBAL percent value (Jiri Olsa) [1680072]
-- [tools] perf annotate: Switch struct annotation_data::percent to array (Jiri Olsa) [1680072]
-- [tools] perf annotate: Loop group events directly in annotation__calc_percent() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Rename hist to sym_hist in annotation__calc_percent (Jiri Olsa) [1680072]
-- [tools] perf annotate: Rename local sample variables to data (Jiri Olsa) [1680072]
-- [tools] perf annotate: Rename struct annotation_line::samples* to data* (Jiri Olsa) [1680072]
-- [tools] perf annotate: Get rid of annotation__scnprintf_samples_period() (Jiri Olsa) [1680072]
-- [tools] perf annotate: Make annotation_line__max_percent static (Jiri Olsa) [1680072]
-- [tools] perf annotate: Make symbol__annotate_fprintf2() local (Jiri Olsa) [1680072]
-- [tools] perf tools: Drop unneeded bitmap_zero() calls (Jiri Olsa) [1680072]
-- [tools] perf trace: Use perf_evsel__sc_tp_{uint, ptr} for "id"/"args" handling syscalls:* events (Jiri Olsa) [1680072]
-- [tools] perf trace: Setup struct syscall_tp for syscalls:sys_{enter, exit}_NAME events (Jiri Olsa) [1680072]
-- [tools] perf trace: Rename some syscall_tp methods to raw_syscall (Jiri Olsa) [1680072]
-- [tools] perf trace: Allow setting up a syscall_tp struct without a format_field (Jiri Olsa) [1680072]
-- [tools] perf trace: Use beautifiers on syscalls:sys_enter_ handlers (Jiri Olsa) [1680072]
-- [tools] perf trace: Associate vfs_getname()'ed pathname with fd returned from 'openat' (Jiri Olsa) [1680072]
-- [tools] introduce test_and_clear_bit (Jiri Olsa) [1680072]
-- [tools] perf trace: Do not require --no-syscalls to suppress strace like output (Jiri Olsa) [1680072]
-- [tools] perf tools: Allow overriding MAX_NR_CPUS at compile time (Jiri Olsa) [1680072]
-- [tools] perf bpf: Show better message when failing to load an object (Jiri Olsa) [1680072]
-- [tools] perf list: Unify metric group description format with PMU event description (Jiri Olsa) [1680072]
-- [tools] perf c2c report: Fix crash for empty browser (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix indexing when invoking subtests (Jiri Olsa) [1680072]
-- [tools] perf trace: Beautify the AF_INET & AF_INET6 'socket' syscall 'protocol' args (Jiri Olsa) [1680072]
-- [tools] perf trace beauty: Add beautifiers for 'socket''s 'protocol' arg (Jiri Olsa) [1680072]
-- [tools] perf trace beauty: Do not print NULL strarray entries (Jiri Olsa) [1680072]
-- [tools] perf beauty: Add a generator for IPPROTO_ socket's protocol constants (Jiri Olsa) [1680072]
-- [tools] tools include uapi: Grab a copy of linux/in.h (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix complex event name parsing (Jiri Olsa) [1680072]
-- [tools] perf evlist: Fix error out while applying initial delay and LBR (Jiri Olsa) [1680072]
-- [tools] perf test: Fix subtest number when showing results (Jiri Olsa) [1680072]
-- [tools] perf stat: Get rid of extra clock display function (Jiri Olsa) [1680072]
-- [tools] perf tools: Use perf_evsel__match instead of open coded equivalent (Jiri Olsa) [1680072]
-- [tools] perf tools: Fix struct comm_str removal crash (Jiri Olsa) [1680072]
-- [tools] perf machine: Use last_match threads cache only in single thread mode (Jiri Olsa) [1680072]
-- [tools] perf machine: Add threads__set_last_match function (Jiri Olsa) [1680072]
-- [tools] perf machine: Add threads__get_last_match function (Jiri Olsa) [1680072]
-- [tools] perf tools: Synthesize GROUP_DESC feature in pipe mode (Jiri Olsa) [1680072]
-- [tools] perf script: Show correct offsets for DWARF-based unwinding (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix record+probe_libc_inet_pton.sh when event exists (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix record+probe_libc_inet_pton.sh to ensure cleanups (Jiri Olsa) [1680072]
-- [tools] perf tests: Fix record+probe_libc_inet_pton.sh for powerpc64 (Jiri Olsa) [1680072]
-- [tools] perf powerpc: Fix callchain ip filtering when return address is in a register (Jiri Olsa) [1680072]
-- [tools] perf powerpc: Fix callchain ip filtering (Jiri Olsa) [1680072]
-- [tools] perf list: Add missing documentation for --desc and --debug options (Jiri Olsa) [1680072]
-- [tools] perf stat: Add transaction flag (-T) support for s390 (Jiri Olsa) [1680072]
-- [tools] perf json: Add s390 transaction counter definition (Jiri Olsa) [1680072]
-- [tools] perf list: Add s390 support for detailed PMU event description (Jiri Olsa) [1680072]
-- [tools] perf hists: Clarify callchain disabling when available (Jiri Olsa) [1680072]
-- [tools] perf tests: Check that complex event name is parsed correctly (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel/uncore: Fix PCI BDF address of M3UPI on SKX (Jiri Olsa) [1680072]
-- [kernel] perf/ring_buffer: Prevent concurent ring buffer access (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel/uncore: Use boot_cpu_data.phys_proc_id instead of hardcorded physical package ID 0 (Jiri Olsa) [1680072]
-- [kernel] perf/core: Fix perf_pmu_unregister() locking (Jiri Olsa) [1680072]
-- [kernel] perf/core: Add sanity check to deal with pinned event failure (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel: Add support/quirk for the MISPREDICT bit on Knights Landing CPUs (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel: Support Extended PEBS for Goldmont Plus (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel/ds: Handle PEBS overflow for fixed counters (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel: Support PEBS on fixed counters (Jiri Olsa) [1680072]
-- [x86] perf/x86/intel: Introduce PMU flag for Extended PEBS (Jiri Olsa) [1680072]
-- [kernel] perf, tools: Use correct articles in comments (Jiri Olsa) [1680072]
-
-* Thu Feb 28 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-1011.el7]
-- [netdrv] intel: consolidate NAPI and NAPI exit (Stefan Assmann) [1637738]
-- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Stefan Assmann) [1637738]
-- [netdrv] remove <net/busy_poll.h> inclusion when not needed (Stefan Assmann) [1637738]
-- [netdrv] iavf: fix a typo (Stefan Assmann) [1637738]
-- [netdrv] intel-ethernet: use correct module license (Stefan Assmann) [1637738]
-- [netdrv] i40evf: remove ndo_poll_controller (Stefan Assmann) [1637738]
-- [netdrv] iavf: finish renaming files to iavf (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename most of i40e strings (Stefan Assmann) [1637738]
-- [netdrv] iavf: tracing infrastructure rename (Stefan Assmann) [1637738]
-- [netdrv] iavf: replace i40e_debug with iavf version (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename i40e_hw to iavf_hw (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename I40E_ADMINQ_DESC (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename device ID defines (Stefan Assmann) [1637738]
-- [netdrv] iavf: remove references to old names (Stefan Assmann) [1637738]
-- [netdrv] iavf: move i40evf files to new name (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename i40e_status to iavf_status (Stefan Assmann) [1637738]
-- [netdrv] iavf: rename functions and structs to new name (Stefan Assmann) [1637738]
-- [netdrv] iavf: diet and reformat (Stefan Assmann) [1637738]
-- [netdrv] intel-ethernet: rename i40evf to iavf (Stefan Assmann) [1637738]
-- [netdrv] i40e(vf): remove i40e_ethtool_stats.h header file (Stefan Assmann) [1637738]
-- [netdrv] i40evf: Don't enable vlan stripping when rx offload is turned on (Stefan Assmann) [1637738]
-- [netdrv] i40evf: set IFF_UNICAST_FLT flag for the VF (Stefan Assmann) [1637738]
-- [netdrv] i40evf: Validate the number of queues a PF sends (Stefan Assmann) [1637738]
-- [netdrv] i40evf: Change a VF mac without reloading the VF driver (Stefan Assmann) [1637738]
-- [netdrv] i40evf: update ethtool stats code and use helper functions (Stefan Assmann) [1637738]
-- [netdrv] i40e: Add AQ command for rearrange NVM structure (Stefan Assmann) [1637738]
-- [netdrv] i40e: Add additional return code to i40e_asq_send_command (Stefan Assmann) [1637738]
-- [netdrv] i40e/i40evf: remove redundant functions i40evf_aq_{set/get}_phy_register (Stefan Assmann) [1637738]
-- [netdrv] intel: Convert timers to use timer_setup() (Stefan Assmann) [1637738]
-- [netdrv] cls_flower: fix error values for commands not supported by drivers (Stefan Assmann) [1637738]
-- [netdrv] i40e: clean up several indentation issues (Stefan Assmann) [1637726]
-- [netdrv] i40e: increase indentation (Stefan Assmann) [1637726]
-- [netdrv] i40e: update version number (Stefan Assmann) [1637726]
-- [netdrv] i40e: remove debugfs tx_timeout support (Stefan Assmann) [1637726]
-- [netdrv] i40e: check queue pairs num in config queues handler (Stefan Assmann) [1637726]
-- [netdrv] i40e: Change unmatched function types (Stefan Assmann) [1637726]
-- [netdrv] i40e: Add support FEC configuration for Fortville 25G (Stefan Assmann) [1637726]
-- [netdrv] i40e: Limiting RSS queues to CPUs (Stefan Assmann) [1637726]
-- [netdrv] i40e: Remove umem from VSI (Stefan Assmann) [1637726]
-- [netdrv] i40e: extend PTP gettime function to read system clock (Stefan Assmann) [1637726]
-- [netdrv] i40e: define proper net_device::neigh_priv_len (Stefan Assmann) [1637726]
-- [netdrv] i40e: DRY rx_ptype handling code (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix VLAN.TCI == 0 RX HW offload (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix mac filter delete when setting mac address (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix kerneldoc for xsk methods (Stefan Assmann) [1637726]
-- [netdrv] i40e: Fix deletion of MAC filters (Stefan Assmann) [1637726]
-- [netdrv] intel: consolidate NAPI and NAPI exit (Stefan Assmann) [1637726]
-- [netdrv] i40e: prevent overlapping tx_timeout recover (Stefan Assmann) [1637726]
-- [netdrv] i40e: suppress bogus error message (Stefan Assmann) [1637726]
-- [netdrv] i40e: Use correct shift for VLAN priority (Stefan Assmann) [1637726]
-- [netdrv] i40e: always set ks->base.speed in i40e_get_settings_link_up (Stefan Assmann) [1637726]
-- [netdrv] i40e: don't restart nway if autoneg not supported (Stefan Assmann) [1637726]
-- [netdrv] i40e: Allow disabling FW LLDP on X722 devices (Stefan Assmann) [1637726]
-- [netdrv] i40e: update driver version (Stefan Assmann) [1637726]
-- [netdrv] i40e: Protect access to VF control methods (Stefan Assmann) [1637726]
-- [netdrv] i40e: Replace strncpy with strlcpy to ensure null termination (Stefan Assmann) [1637726]
-- [netdrv] i40e: Add capability flag for stopping FW LLDP (Stefan Assmann) [1637726]
-- [netdrv] i40e: Use a local variable for readability (Stefan Assmann) [1637726]
-- [netdrv] i40e: Replace spin_is_locked() with lockdep (Stefan Assmann) [1637726]
-- [netdrv] i40e: enable NETIF_F_NTUPLE and NETIF_F_HW_TC at driver load (Stefan Assmann) [1637726]
-- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Stefan Assmann) [1637726]
-- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Stefan Assmann) [1637726]
-- [netdrv] remove <net/busy_poll.h> inclusion when not needed (Stefan Assmann) [1637726]
-- [netdrv] i40e: Remove unnecessary print statement (Stefan Assmann) [1637726]
-- [netdrv] i40e: Use proper enum in i40e_ndo_set_vf_link_state (Stefan Assmann) [1637726]
-- [netdrv] i40e: disallow changing the number of descriptors when AF_XDP is on (Stefan Assmann) [1637726]
-- [netdrv] i40e: clean zero-copy XDP Rx ring on shutdown/reset (Stefan Assmann) [1637726]
-- [netdrv] i40e: clean zero-copy XDP Tx ring on shutdown/reset (Stefan Assmann) [1637726]
-- [netdrv] i40e: Remove unused msglen parameter from virtchnl functions (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix double 'NIC Link is Down' messages (Stefan Assmann) [1637726]
-- [netdrv] i40e: add a helper function to validate a VF based on the vf id (Stefan Assmann) [1637726]
-- [netdrv] i40e: use declared variables for pf and hw (Stefan Assmann) [1637726]
-- [netdrv] i40e: Unset promiscuous settings on VF reset (Stefan Assmann) [1637726]
-- [netdrv] i40e: Fix VF's link state notification (Stefan Assmann) [1637726]
-- [netdrv] intel-ethernet: use correct module license (Stefan Assmann) [1637726]
-- [netdrv] i40e(vf): remove i40e_ethtool_stats.h header file (Stefan Assmann) [1637726]
-- [netdrv] xsk: i40e: get rid of useless struct xdp_umem_props (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix possible compiler warning in xsk TX path (Stefan Assmann) [1637726]
-- [netdrv] i40e: add AF_XDP zero-copy Tx support (Stefan Assmann) [1637726]
-- [netdrv] i40e: move common Tx functions to i40e_txrx_common.h (Stefan Assmann) [1637726]
-- [netdrv] i40e: add AF_XDP zero-copy Rx support (Stefan Assmann) [1637726]
-- [netdrv] i40e: move common Rx functions to i40e_txrx_common.h (Stefan Assmann) [1637726]
-- [netdrv] i40e: refactor Rx path for re-use (Stefan Assmann) [1637726]
-- [netdrv] i40e: added queue pair disable/enable functions (Stefan Assmann) [1637726]
-- [netdrv] i40e: hold the rtnl lock on clearing interrupt scheme (Stefan Assmann) [1637726]
-- [netdrv] i40e: Check and correct speed values for link on open (Stefan Assmann) [1637726]
-- [netdrv] i40e: report correct statistics when XDP is enabled (Stefan Assmann) [1637726]
-- [netdrv] i40e: static analysis report from community (Stefan Assmann) [1637726]
-- [netdrv] i40e: use correct length for strncpy (Stefan Assmann) [1637726]
-- [netdrv] i40evf: Change a VF mac without reloading the VF driver (Stefan Assmann) [1637726]
-- [netdrv] i40e: move ethtool stats boiler plate code to i40e_ethtool_stats.h (Stefan Assmann) [1637726]
-- [netdrv] i40e: convert queue stats to i40e_stats array (Stefan Assmann) [1637726]
-- [netdrv] i40e_txrx: mark expected switch fall-through (Stefan Assmann) [1637726]
-- [netdrv] i40e_main: mark expected switch fall-through (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix i40e_add_queue_stats data pointer update (Stefan Assmann) [1637726]
-- [netdrv] i40e: Add AQ command for rearrange NVM structure (Stefan Assmann) [1637726]
-- [netdrv] i40e: Add additional return code to i40e_asq_send_command (Stefan Assmann) [1637726]
-- [netdrv] i40e: fix warning about shadowed ring parameter (Stefan Assmann) [1637726]
-- [netdrv] i40e: remove unnecessary i variable causing -Wshadow warning (Stefan Assmann) [1637726]
-- [netdrv] i40e: convert priority flow control stats to use helpers (Stefan Assmann) [1637726]
-- [netdrv] i40e: convert VEB TC stats to use an i40e_stats array (Stefan Assmann) [1637726]
-- [netdrv] i40e: Set fec_config when forcing link state (Stefan Assmann) [1637726]
-- [netdrv] i40e: add helper to copy statistic values into ethtool buffer (Stefan Assmann) [1637726]
-- [netdrv] i40e: add helper function for copying strings from stat arrays (Stefan Assmann) [1637726]
-- [netdrv] i40e: split XDP_TX tail and XDP_REDIRECT map flushing (Stefan Assmann) [1637726]
-- [netdrv] cls_flower: fix error values for commands not supported by drivers (Stefan Assmann) [1637726]
-- [netdrv] Convert random_ether_addr to eth_random_addr (Stefan Assmann) [1637726]
-- [netdrv] bpf, xdp, i40e: fix i40e_build_skb skb reserve and truesize (Stefan Assmann) [1637726]
-- [netdrv] i40e: remove ndo_xdp_flush call i40e_xdp_flush (Stefan Assmann) [1637726]
-- [netdrv] i40e: implement flush flag for ndo_xdp_xmit (Stefan Assmann) [1637726]
-- [netdrv] xdp: add flags argument to ndo_xdp_xmit API (Stefan Assmann) [1637726]
-- [netdrv] bpf, i40e: add meta data support (Stefan Assmann) [1637726]
-- [netdrv] bpf: add meta pointer for direct access (Stefan Assmann) [1637726]
-- [netdrv] xdp: change ndo_xdp_xmit API to support bulking (Stefan Assmann) [1637726]
-- [infiniband] rdma: Cleanup undesired pd->uobject usage (Stefan Assmann) [1642292]
-- [infiniband] i40iw: remove support for ib_get_vector_affinity (Stefan Assmann) [1642292]
-- [infiniband] i40iw: remove use of VLAN_TAG_PRESENT (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40iw: Fix incorrect iterator type (Stefan Assmann) [1642292]
-- [infiniband] nfiniband: i40iw, nes: don't use wall time for TCP sequence numbers (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40w: Hold read semaphore while looking after VMA (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Reorganize acquire/release of locks in i40iw_manage_apbvt (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40iw: Avoid panic when reading back the IRQ affinity hint (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40iw: Avoid reference leaks when processing the AEQ (Stefan Assmann) [1642292]
-- [infiniband] rdma/i40iw: Avoid panic when objects are being created and destroyed (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Fix memory leak in error path of create QP (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Extend port reuse support for listeners (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Replace GFP_ATOMIC with GFP_KERNEL in i40iw_l2param_change (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Replace GFP_ATOMIC with GFP_KERNEL in i40iw_make_listen_node (Stefan Assmann) [1642292]
-- [infiniband] i40iw: Replace GFP_ATOMIC with GFP_KERNEL in i40iw_add_mqh_4 (Stefan Assmann) [1642292]
-
-* Fri Feb 22 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1010.el7]
-- [tools] perf tools: Fix tracing_path_mount proper path (Jiri Olsa) [1672893]
-- [tools] perf tools: Use python-config --includes rather than --cflags (Jiri Olsa) [1672893]
-- [tools] perf script python: Fix dict reference counting (Jiri Olsa) [1672893]
-- [tools] perf stat: Fix --interval_clear option (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix compilation errors on gcc8 (Jiri Olsa) [1672893]
-- [tools] perf test shell: Prevent temporary editor files from being considered test scripts (Jiri Olsa) [1672893]
-- [tools] perf llvm-utils: Remove bashism from kernel include fetch script (Jiri Olsa) [1672893]
-- [tools] perf test shell: Make perf's inet_pton test more portable (Jiri Olsa) [1672893]
-- [tools] perf test shell: Replace '|&' with '2>&1 |' to work with more shells (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to EventClass.py (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to sched-migration.py (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to Util.py (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to SchedGui.py (Jiri Olsa) [1672893]
-- [tools] perf scripts python: Add Python 3 support to Core.py (Jiri Olsa) [1672893]
-- [tools] perf tools: Generate a Python script compatible with Python 2 and 3 (Jiri Olsa) [1672893]
-- [tools] build: Use HOSTLDFLAGS with fixdep (Jiri Olsa) [1672893]
-- [tools] build: Fixup host c flags (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix crash caused by accessing feat_ops[HEADER_LAST_FEATURE] (Jiri Olsa) [1672893]
-- [tools] perf script: Add missing output fields in a hint (Jiri Olsa) [1672893]
-- [tools] perf script: Fix crash because of missing evsel->priv (Jiri Olsa) [1672893]
-- [tools] perf stat: Remove duplicate event counting (Jiri Olsa) [1672893]
-- [tools] perf alias: Rebuild alias expression string to make it comparable (Jiri Olsa) [1672893]
-- [tools] perf alias: Remove trailing newline when reading sysfs files (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix a clang 7.0 compilation error (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix packet decoding of CYC packets (Jiri Olsa) [1672893]
-- [tools] perf tests: Add valid callback for parse-events test (Jiri Olsa) [1672893]
-- [tools] perf tests: Add event parsing error handling to parse events test (Jiri Olsa) [1672893]
-- [tools] perf report powerpc: Fix crash if callchain is empty (Jiri Olsa) [1672893]
-- [tools] perf test session topology: Fix test on s390 (Jiri Olsa) [1672893]
-- [tools] perf record: Support s390 random socket_id assignment (Jiri Olsa) [1672893]
-- [tools] perf script: Show hw-cache events (Jiri Olsa) [1672893]
-- [tools] perf c2c: Keep struct hist_entry at the end of struct c2c_hist_entry (Jiri Olsa) [1672893]
-- [tools] perf stat: Add event parsing error handling to add_default_attributes (Jiri Olsa) [1672893]
-- [tools] perf stat: Allow to specify specific metric column len (Jiri Olsa) [1672893]
-- [tools] perf stat: Fix metric column header display alignment (Jiri Olsa) [1672893]
-- [tools] perf stat: Use only color_fprintf call in print_metric_only (Jiri Olsa) [1672893]
-- [tools] perf stat: Add --interval-clear option (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix error index for pmu event parser (Jiri Olsa) [1672893]
-- [tools] perf hists: Reimplement hists__has_callchains() (Jiri Olsa) [1672893]
-- [tools] perf hists browser gtk: Use hist_entry__has_callchains() (Jiri Olsa) [1672893]
-- [tools] perf hists: Make hist_entry__has_callchains() work with 'perf c2c' (Jiri Olsa) [1672893]
-- [tools] perf hists: Save the callchain_size in struct hist_entry (Jiri Olsa) [1672893]
-- [tools] perf script python: Add dict fields introduction to Documentation (Jiri Olsa) [1672893]
-- [tools] perf script python: Add more PMU fields to event handler dict (Jiri Olsa) [1672893]
-- [tools] perf script python: Move dsoname code to a new function (Jiri Olsa) [1672893]
-- [tools] perf symbols: Add BSS symbols when reading from /proc/kallsyms (Jiri Olsa) [1672893]
-- [tools] perf annnotate: Make __symbol__inc_addr_samples handle src->histograms == NULL (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix "Unexpected indirect branch" error (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix MTC timing after overflow (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix decoding to accept CBR between FUP and corresponding TIP (Jiri Olsa) [1672893]
-- [tools] perf intel-pt: Fix sync_switch INTEL_PT_SS_NOT_TRACING (Jiri Olsa) [1672893]
-- [tools] perf script powerpc: Python script for hypervisor call statistics (Jiri Olsa) [1672893]
-- [tools] perf test record+probe_libc_inet_pton: Ask 'nm' for dynamic symbols (Jiri Olsa) [1672893]
-- [tools] perf map: Consider PTI entry trampolines in rip_2objdump() (Jiri Olsa) [1672893]
-- [tools] perf test code-reading: Fix perf_env setup for PTI entry trampolines (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix pmu events parsing rule (Jiri Olsa) [1672893]
-- [tools] perf stat: Display user and system time (Jiri Olsa) [1672893]
-- [tools] perf record: Enable arbitrary event names thru name= modifier (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix symbol and object code resolution for vdso32 and vdsox32 (Jiri Olsa) [1672893]
-- [tools] perf tests kmod-path: Add tests for vdso32 and vdsox32 (Jiri Olsa) [1672893]
-- [tools] perf hists: Check if a hist_entry has callchains before using them (Jiri Olsa) [1672893]
-- [tools] perf hists: Introduce hist_entry__has_callchain() method (Jiri Olsa) [1672893]
-- [tools] perf sched: Use sched->show_callchain where appropriate (Jiri Olsa) [1672893]
-- [tools] perf script: Check if evsel has callchains before trying to use it (Jiri Olsa) [1672893]
-- [tools] perf evsel: Add has_callchain() helper to make code more compact/clear (Jiri Olsa) [1672893]
-- [tools] perf report: No need to have report_callchain_help as a global (Jiri Olsa) [1672893]
-- [tools] perf test: Use header file util/debug.h (Jiri Olsa) [1672893]
-- [tools] perf annotate: Move objdump_path to struct annotation_options (Jiri Olsa) [1672893]
-- [tools] perf hists browser: Pass annotation_options from tool to browser (Jiri Olsa) [1672893]
-- [tools] perf annotate: Move disassembler_style global to annotation_options (Jiri Olsa) [1672893]
-- [tools] perf annotate: Adopt anotation options from symbol_conf (Jiri Olsa) [1672893]
-- [tools] perf annotate: Pass annotation_options to symbol__annotate() (Jiri Olsa) [1672893]
-- [tools] perf srcline: Make hist_entry srcline helper consistent with map's (Jiri Olsa) [1672893]
-- [tools] perf sort: Introduce addr_map_symbol__srcline() to make code more compact (Jiri Olsa) [1672893]
-- [tools] perf srcline: Introduce map__srcline() to make code more compact (Jiri Olsa) [1672893]
-- [tools] perf annotate stdio: Use annotation_options consistently (Jiri Olsa) [1672893]
-- [tools] perf annotate: Add comment about annotated_src->nr_histograms (Jiri Olsa) [1672893]
-- [tools] perf tools: Ditch the symbol_conf.nr_events global (Jiri Olsa) [1672893]
-- [tools] perf annotate: Replace symbol__alloc_hists() with symbol__hists() (Jiri Olsa) [1672893]
-- [tools] perf annotate: Stop using symbol_conf.nr_events global in symbol__hists() (Jiri Olsa) [1672893]
-- [tools] perf annotate: Introduce symbol__cycle_hists() (Jiri Olsa) [1672893]
-- [tools] perf annotate: Introduce symbol__hists() (Jiri Olsa) [1672893]
-- [tools] perf annotate: __symbol__inc_addr_samples() needs just annotated_source (Jiri Olsa) [1672893]
-- [tools] perf annotate: Introduce annotated_source__alloc_histograms (Jiri Olsa) [1672893]
-- [tools] perf annotate: Introduce constructor/destructor for annotated_source (Jiri Olsa) [1672893]
-- [tools] perf annotate: Split allocation of annotated_source struct (Jiri Olsa) [1672893]
-- [tools] perf annotate: __symbol__acount_cycles doesn't need notes (Jiri Olsa) [1672893]
-- [tools] perf annotate: Pass perf_evsel instead of just evsel->idx (Jiri Olsa) [1672893]
-- [tools] perf tools: No need to check if the argument to __get() function is NULL (Jiri Olsa) [1672893]
-- [tools] perf cgroup: Make evlist__find_cgroup() more compact (Jiri Olsa) [1672893]
-- [tools] perf probe: Use return of map__get() to make code more compact (Jiri Olsa) [1672893]
-- [tools] perf tools: Remove dead quote.[ch] code (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Amend the offset of sections that remap kernel text (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Copy x86 PTI entry trampoline sections (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Get rid of kernel_map (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Iterate phdrs (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Layout sections (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Calculate offset from phnum (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Keep a count of phdrs (Jiri Olsa) [1672893]
-- [tools] perf kcore_copy: Keep phdr data in a list (Jiri Olsa) [1672893]
-- [tools] perf annotate: Show group event string for stdio (Jiri Olsa) [1672893]
-- [tools] perf machine: Synthesize and process mmap events for x86 PTI entry trampolines (Jiri Olsa) [1672893]
-- [tools] perf machine: Create maps for x86 PTI entry trampolines (Jiri Olsa) [1672893]
-- [tools] perf machine: Allow for extra kernel maps (Jiri Olsa) [1672893]
-- [tools] perf machine: Fix map_groups__split_kallsyms() for entry trampoline symbols (Jiri Olsa) [1672893]
-- [tools] perf machine: Workaround missing maps for x86 PTI entry trampolines (Jiri Olsa) [1672893]
-- [tools] perf machine: Add nr_cpus_avail() (Jiri Olsa) [1672893]
-- [tools] perf annotate: Support '--group' option (Jiri Olsa) [1672893]
-- [tools] perf report: Use perf_evlist__force_leader to support '--group' (Jiri Olsa) [1672893]
-- [tools] perf evlist: Introduce force_leader() method (Jiri Olsa) [1672893]
-- [tools] perf tools: Fix kernel_start for PTI on x86 (Jiri Olsa) [1672893]
-- [tools] perf machine: Add machine__is() to identify machine arch (Jiri Olsa) [1672893]
-- [tools] perf annotate: Create hotkey 'c' to show min/max cycles (Jiri Olsa) [1672893]
-- [tools] perf annotate: Record the min/max cycles (Jiri Olsa) [1672893]
-- [tools] perf script: Show symbol offsets by default (Jiri Olsa) [1672893]
-- [tools] perf script: Show virtual addresses instead of offsets (Jiri Olsa) [1672893]
-- [tools] perf tools: Read the cache line size lazily (Jiri Olsa) [1672893]
-- [tools] tools include compiler-gcc: Add __pure attribute helper (Jiri Olsa) [1672893]
-- [tools] tools lib api fs tracing_path: Make tracing_events_path private (Jiri Olsa) [1672893]
-- [tools] tools lib api fs tracing_path: Introduce opendir() method (Jiri Olsa) [1672893]
-- [tools] perf parse-events: Use get/put_events_file() (Jiri Olsa) [1672893]
-- [tools] perf tools: Reuse the path to the tracepoint /events/ directory (Jiri Olsa) [1672893]
-- [tools] tools lib api fs tracing_path: Introduce get/put_events_file() helpers (Jiri Olsa) [1672893]
-- [tools] tools lib api: Unexport 'tracing_path' variable (Jiri Olsa) [1672893]
-- [tools] tools lib api: The tracing_mnt variable doesn't need to be global (Jiri Olsa) [1672893]
-- [tools] perf config: Call perf_config__init() lazily (Jiri Olsa) [1672893]
-- [tools] perf tools: Use the "_stest" symbol to identify the kernel map when loading kcore (Jiri Olsa) [1672893]
-- [tools] perf buildid-cache: Warn --purge-all failures (Jiri Olsa) [1672893]
-- [tools] perf tests parse-events: Add intel_pt parse test (Jiri Olsa) [1672893]
-- [tools] perf machine: Ditch find_kernel_function variants (Jiri Olsa) [1672893]
-- [tools] perf tools: fix spelling mistake: "builid" -> "buildid" (Jiri Olsa) [1672893]
-- [tools] perf symbols: Move split_kallsyms to struct map_groups (Jiri Olsa) [1672893]
-- [tools] perf symbols: kallsyms__delta() needs the kmap, not the map (Jiri Olsa) [1672893]
-- [tools] perf symbols: Remove unused dso__load_all_kallsyms() 'map' parameter (Jiri Olsa) [1672893]
-- [tools] perf symbols: Split kernel symbol processing from dso__load_sym() (Jiri Olsa) [1672893]
-- [tools] perf symbols: Remove needless goto (Jiri Olsa) [1672893]
-- [tools] perf symbols: Unify symbol maps (Jiri Olsa) [1672893]
-- [tools] perf symbols: Use map->prot in place of type==MAP__FUNCTION (Jiri Olsa) [1672893]
-- [tools] perf map: Use map->prot in place of type==MAP__FUNCTION (Jiri Olsa) [1672893]
-- [tools] perf symbols: Use symbol type instead of map->type (Jiri Olsa) [1672893]
-- [tools] perf symbols: No need to special case MAP__FUNCTION in fixup (Jiri Olsa) [1672893]
-- [tools] perf sort: Use mmap->prot on "dcacheline" formatting (Jiri Olsa) [1672893]
-- [tools] perf machine: Set PROT_EXEC for executable PERF_RECORD_MMAP records (Jiri Olsa) [1672893]
-- [tools] perf symbols: Store the ELF symbol type in the symbol struct (Jiri Olsa) [1672893]
-- [tools] perf map: Remove map_type arg from map_groups__find() (Jiri Olsa) [1672893]
-- [tools] perf thread: Make thread__find_map() search all maps (Jiri Olsa) [1672893]
-- [tools] perf thread: Ditch __thread__find_symbol() (Jiri Olsa) [1672893]
-- [tools] perf machine: Use machine__find_kernel_function() instead of open coded version (Jiri Olsa) [1672893]
-- [tools] perf thread: Remove addr_type arg from thread__find_cpumode_addr_location() (Jiri Olsa) [1672893]
-- [tools] perf symbols: Remove map_type arg from dso__find_symbol() (Jiri Olsa) [1672893]
-- [tools] perf map: Remove enum_type arg to map_groups__first() (Jiri Olsa) [1672893]
-- [tools] perf symbols: Unexport symbol_type__is_a() (Jiri Olsa) [1672893]
-- [tools] perf tools: Use kallsyms__is_function() (Jiri Olsa) [1672893]
-- [tools] tools lib symbols: Introduce kallsyms__is_function() (Jiri Olsa) [1672893]
-- [tools] perf symbols: Shorten dso__(first|last)_symbol() (Jiri Olsa) [1672893]
-- [tools] perf ui stdio: Use map_groups__fprintf() (Jiri Olsa) [1672893]
-- [tools] perf map: Shorten map_groups__find() signature (Jiri Olsa) [1672893]
-- [tools] perf tests vmlinux-kallsyms: Use map__for_each_symbol() instead of open coded equivalent (Jiri Olsa) [1672893]
-- [tools] perf tests vmlinux-kallsyms: Use machine__find_kernel_function(_by_name) (Jiri Olsa) [1672893]
-- [tools] perf machine: Remove needless map_type from machine__load_vmlinux_path() (Jiri Olsa) [1672893]
-- [tools] perf machine: Shorten machine__load_kallsyms() signature (Jiri Olsa) [1672893]
-- [tools] perf machine: Introduce machine__kernel_maps() (Jiri Olsa) [1672893]
-- [tools] perf documentation: Support for asciidoctor (Jiri Olsa) [1672893]
-- [tools] perf map: Shorten map_groups__find_by_name() signature (Jiri Olsa) [1672893]
-- [tools] perf thread: Make thread__find_symbol() return the symbol searched (Jiri Olsa) [1672893]
-- [tools] perf thread: Make thread__find_map() return the map (Jiri Olsa) [1672893]
-- [tools] perf script: Use thread__find_symbol() instead of ad-hoc equivalent (Jiri Olsa) [1672893]
-- [tools] perf thread: Introduce thread__find_symbol() (Jiri Olsa) [1672893]
-- [tools] perf tests: Let 'perf test list' display subtests (Jiri Olsa) [1672893]
-- [tools] perf thread: Introduce thread__find_map() (Jiri Olsa) [1672893]
-- [tools] perf map: Introduce map__has_symbols() (Jiri Olsa) [1672893]
-- [tools] perf dso: Add dso__has_symbols() method (Jiri Olsa) [1672893]
-- [tools] perf symbols: Use __map__is_kernel() instead of ad-hoc equivalent code (Jiri Olsa) [1672893]
-- [tools] perf top: Use __map__is_kernel() (Jiri Olsa) [1672893]
-- [tools] perf stat: Display length strings of each run for --table option (Jiri Olsa) [1672893]
-- [tools] perf stat: Add --table option to display time of each run (Jiri Olsa) [1672893]
-- [tools] perf stat: Display time in precision based on std deviation (Jiri Olsa) [1672893]
-- [tools] perf check-headers.sh: Add support to check 2 independent files (Jiri Olsa) [1672893]
-- [tools] perf check-headers.sh: Simplify arguments passing (Jiri Olsa) [1672893]
-- [tools] perf buildid-cache: Support --purge-all option (Jiri Olsa) [1672893]
-- [tools] perf buildid-cache: Support --list option (Jiri Olsa) [1672893]
-- [tools] perf tools intel-pt-decoder: Update insn.h from the kernel sources (Jiri Olsa) [1672893]
-- [tools] perf trace beauty prctl: Default header_dir to cwd to work without parms (Jiri Olsa) [1672893]
-- [x86] perf/x86/intel/uncore: Fix hardcoded index of Broadwell extra PCI devices (Jiri Olsa) [1672893]
-- [kernel] perf/core: Move inline keyword at the beginning of declaration (Jiri Olsa) [1672893]
-- [kernel] perf/core: Move the inline keyword at the beginning of the function declaration (Jiri Olsa) [1672893]
-- [kernel] perf/core: Fix group scheduling with mixed hw and sw events (Jiri Olsa) [1672893]
-- [netdrv] ena: update driver version from 2.0.2 to 2.0.3 (John Linville) [1677008]
-- [netdrv] ena: fix race between link up and device initalization (John Linville) [1677008]
-- [netdrv] igb: Bump version number (Corinna Vinschen) [1637731]
-- [netdrv] revert "igb: reduce CPU0 latency when updating statistics" (Corinna Vinschen) [1637731]
-- [netdrv] igb: Fix an issue that PME is not enabled during runtime suspend (Corinna Vinschen) [1637731]
-- [netdrv] igb: Change RXPBSIZE size when setting Qav mode (Corinna Vinschen) [1637731]
-- [netdrv] igb: reduce CPU0 latency when updating statistics (Corinna Vinschen) [1637731]
-- [netdrv] igb: fix uninitialized variables (Corinna Vinschen) [1637731]
-- [netdrv] intel: consolidate NAPI and NAPI exit (Corinna Vinschen) [1637731]
-- [netdrv] igb: Fix format with line continuation whitespace (Corinna Vinschen) [1637731]
-- [netdrv] igb: extend PTP gettime function to read system clock (Corinna Vinschen) [1637731]
-- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Corinna Vinschen) [1637731]
-- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Corinna Vinschen) [1637731]
-- [netdrv] igb: shorten maximum PHC timecounter update interval (Corinna Vinschen) [1637731]
-- [netdrv] igb: shorten maximum PHC timecounter update interval (Corinna Vinschen) [1637731]
-- [netdrv] igb: remove ndo_poll_controller (Corinna Vinschen) [1637731]
-- [netdrv] intel-ethernet: use correct module license (Corinna Vinschen) [1637731]
-- [netdrv] igb: Replace mdelay() with msleep() in igb_integrated_phy_loopback() (Corinna Vinschen) [1637731]
-- [netdrv] igb: Replace GFP_ATOMIC with GFP_KERNEL in igb_sw_init() (Corinna Vinschen) [1637731]
-- [netdrv] igb: Use an advanced ctx descriptor for launchtime (Corinna Vinschen) [1637731]
-- [netdrv] igb: e1000_phy: Mark expected switch fall-through (Corinna Vinschen) [1637731]
-- [netdrv] igb: e1000_82575: Mark expected switch fall-through (Corinna Vinschen) [1637731]
-- [netdrv] igb_main: Mark expected switch fall-throughs (Corinna Vinschen) [1637731]
-- [netdrv] igb: Remove unnecessary include of <linux/pci-aspm.h> (Corinna Vinschen) [1637731]
-- [netdrv] igb: Use dma_wmb() instead of wmb() before doorbell writes (Corinna Vinschen) [1637731]
-- [netdrv] igb: Add support for ETF offload (Corinna Vinschen) [1637731]
-- [netdrv] igb: Only call skb_tx_timestamp after descriptors are ready (Corinna Vinschen) [1637731]
-- [netdrv] igb: Refactor igb_offload_cbs() (Corinna Vinschen) [1637731]
-- [netdrv] igb: Only change Tx arbitration when CBS is on (Corinna Vinschen) [1637731]
-- [netdrv] igb: Refactor igb_configure_cbs() (Corinna Vinschen) [1637731]
-- [netdrv] cls_flower: fix error values for commands not supported by drivers (Corinna Vinschen) [1637731]
-- [netdrv] treewide: Use array_size() in vmalloc() (Corinna Vinschen) [1637731]
-- [netdrv] treewide: kzalloc() -> kcalloc() (Corinna Vinschen) [1637731]
-- [netdrv] treewide: kmalloc() -> kmalloc_array() (Corinna Vinschen) [1637731]
-- [netdrv] igb: Wait 10ms just once after TX queues reset (Corinna Vinschen) [1637731]
-- [netdrv] igb: Clear TSICR interrupts together with ICR (Corinna Vinschen) [1637731]
-- [netdrv] qed: Fix stack out of bounds bug (Manish Chopra) [1643532]
-- [netdrv] qed: Fix system crash in ll2 xmit (Manish Chopra) [1643532]
-- [netdrv] qed: Fix VF probe failure while FLR (Manish Chopra) [1643532]
-- [netdrv] qed: Fix LACP pdu drops for VFs (Manish Chopra) [1643532]
-- [netdrv] qed: Fix bug in tx promiscuous mode settings (Manish Chopra) [1643532]
-- [netdrv] qede: Error recovery process (Manish Chopra) [1643532]
-- [netdrv] qed: Add infrastructure for error detection and recovery (Manish Chopra) [1643532]
-- [netdrv] qed: Revise load sequence to avoid PCI errors (Manish Chopra) [1643532]
-- [netdrv] qed: Fix qed_ll2_post_rx_buffer_notify_fw() by adding a write memory barrier (Manish Chopra) [1643532]
-- [kernel] qed: Fix qed_chain_set_prod() for PBL chains with non power of 2 page count (Manish Chopra) [1643532]
-- [infiniband] qedr: Potential null ptr dereference of qp (Manish Chopra) [1643532]
-- [netdrv] qed: Fix an error code qed_ll2_start_xmit() (Manish Chopra) [1643532]
-- [netdrv] qed: Fix command number mismatch between driver and the mfw (Manish Chopra) [1643532]
-- [infiniband] ib/{mlx5, ocrdma, qedr, rxe}: Omit port validation from IB verbs (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "Dispalying" -> "Displaying" (Manish Chopra) [1643532]
-- [netdrv] qede: Register l2 queues with doorbell overflow recovery mechanism (Manish Chopra) [1643532]
-- [kernel] qed: Expose the doorbell overflow recovery mechanism to the protocol drivers (Manish Chopra) [1643532]
-- [netdrv] qed: Register light L2 queues with doorbell overflow recovery mechanism (Manish Chopra) [1643532]
-- [netdrv] qed: Register slowpath queue doorbell with doorbell overflow recovery mechanism (Manish Chopra) [1643532]
-- [netdrv] qed: Use the doorbell overflow recovery mechanism in case of doorbell overflow (Manish Chopra) [1643532]
-- [netdrv] qed: Add doorbell overflow recovery mechanism (Manish Chopra) [1643532]
-- [netdrv] qede - Add a statistic for a case where driver drops tx packet due to memory allocation failure (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "attnetion" -> "attention" (Manish Chopra) [1643532]
-- [netdrv] qed: Add support for MBI upgrade over MFW (Manish Chopra) [1643532]
-- [netdrv] qede: Update link status only when interface is ready (Manish Chopra) [1643532]
-- [netdrv] qede: Simplify the usage of qede-flags (Manish Chopra) [1643532]
-- [netdrv] qed: Display port_id in the UFP debug messages (Manish Chopra) [1643532]
-- [netdrv] qed: Fix QM getters to always return a valid pq (Manish Chopra) [1643532]
-- [netdrv] qed: Fix bitmap_weight() check (Manish Chopra) [1643532]
-- [netdrv] net/ethernet/qlogic/qed/qed_rdma.h: fix typo (Manish Chopra) [1643532]
-- [netdrv] qed: Fix reading wrong value in loop condition (Manish Chopra) [1643532]
-- [netdrv] qed: Fix rdma_info structure allocation (Manish Chopra) [1643532]
-- [netdrv] qed: Fix overriding offload_tc by protocols without APP TLV (Manish Chopra) [1643532]
-- [netdrv] qed: Fix PTT leak in qed_drain() (Manish Chopra) [1643532]
-- [netdrv] qed: Fix potential memory corruption (Manish Chopra) [1643532]
-- [netdrv] qed: Fix SPQ entries not returned to pool in error flows (Manish Chopra) [1643532]
-- [netdrv] qed: Fix blocking/unlimited SPQ entries leak (Manish Chopra) [1643532]
-- [netdrv] qed: Fix memory/entry leak in qed_init_sp_request() (Manish Chopra) [1643532]
-- [netdrv] qed: fix link config error handling (Manish Chopra) [1643532]
-- [netdrv] qed: Fix static checker warning (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "transcevier" -> "transceiver" (Manish Chopra) [1643532]
-- [netdrv] qed: Prevent link getting down in case of autoneg-off (Manish Chopra) [1643532]
-- [netdrv] qede: Check available link modes before link set from ethtool (Manish Chopra) [1643532]
-- [netdrv] qed: Add supported link and advertise link to display in ethtool (Manish Chopra) [1643532]
-- [netdrv] qed: Added supported transceiver modes, speed capability and board config to HSI (Manish Chopra) [1643532]
-- [netdrv] qed: Align local and global PTT to propagate through the APIs (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "Ireelevant" -> "Irrelevant" (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid implicit enum conversion in qed_ooo_submit_tx_buffers (Manish Chopra) [1643532]
-- [kernel] rdma/qedr: Remove enumerated type qed_roce_ll2_tx_dest (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "b_cb_registred" -> "b_cb_registered" (Manish Chopra) [1643532]
-- [netdrv] qed: Remove set but not used variable 'p_archipelago' (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid implicit enum conversion in qed_iwarp_parse_rx_pkt (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid constant logical operation warning in qed_vf_pf_acquire (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid implicit enum conversion in qed_roce_mode_to_flavor (Manish Chopra) [1643532]
-- [netdrv] qed: Fix mask parameter in qed_vf_prep_tunn_req_tlv (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid implicit enum conversion in qed_set_tunn_cls_info (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "toogle" -> "toggle" (Manish Chopra) [1643532]
-- [netdrv] qed: list usage cleanup (Manish Chopra) [1643532]
-- [netdrv] qede: Use FIELD_SIZEOF directly instead of reimplementing its function (Manish Chopra) [1643532]
-- [netdrv] qed: remove duplicated include from qed_cxt.c (Manish Chopra) [1643532]
-- [netdrv] qed*: Utilize FW 8.37.7.0 (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: remove set but not used variable 'ctx' (Manish Chopra) [1643532]
-- [netdrv] qed: Lower the severity of a dcbx log message (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "comparsion" -> "comparison" (Manish Chopra) [1643532]
-- [netdrv] qed: Avoid sending mailbox commands when MFW is not responsive (Manish Chopra) [1643532]
-- [netdrv] qed: Prevent a possible deadlock during driver load and unload (Manish Chopra) [1643532]
-- [netdrv] qed: Wait for MCP halt and resume commands to take place (Manish Chopra) [1643532]
-- [netdrv] qed: Wait for ready indication before rereading the shmem (Manish Chopra) [1643532]
-- [infiniband] qedr: Add user space support for SRQ (Manish Chopra) [1643532]
-- [infiniband] qedr: Add support for kernel mode SRQ's (Manish Chopra) [1643532]
-- [infiniband] qedr: Add wrapping generic structure for qpidr and adjust idr routines (Manish Chopra) [1643532]
-- [netdrv] qed/qede: qede_setup_tc() can be static (Manish Chopra) [1643532]
-- [netdrv] qede: Ingress tc flower offload (drop action) support (Manish Chopra) [1643532]
-- [netdrv] qede: Add destination ip based flow profile (Manish Chopra) [1643532]
-- [netdrv] qed/qede: Multi CoS support (Manish Chopra) [1643532]
-- [netdrv] qed: qed_dev: Mark expected switch fall-throughs (Manish Chopra) [1643532]
-- [netdrv] qed: Add Multi-TC RoCE support (Manish Chopra) [1643532]
-- [netdrv] qed: Add a flag which indicates if offload TC is set (Manish Chopra) [1643532]
-- [netdrv] qed: Add DCBX API - qed_dcbx_get_priority_tc() (Manish Chopra) [1643532]
-- [netdrv] qed: Make some functions static (Manish Chopra) [1643532]
-- [netdrv] qed: remove redundant functions qed_get_cm_pq_idx_rl (Manish Chopra) [1643532]
-- [netdrv] qed: remove redundant functions qed_set_gft_event_id_cm_hdr (Manish Chopra) [1643532]
-- [netdrv] qed: Correct Multicast API to reflect existence of 256 approximate buckets (Manish Chopra) [1643532]
-- [netdrv] qed: Fix possible race for the link state value (Manish Chopra) [1643532]
-- [netdrv] qede: Add driver callbacks for eeprom module query (Manish Chopra) [1643532]
-- [netdrv] qed: Add qed APIs for PHY module query (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake "successffuly" -> "successfully" (Manish Chopra) [1643532]
-- [netdrv] qed: off by one in qed_parse_mcp_trace_buf() (Manish Chopra) [1643532]
-- [netdrv] qed: remove redundant pointer 'name' (Manish Chopra) [1643532]
-- [netdrv] qede: Adverstise software timestamp caps when PHC is not available (Manish Chopra) [1643532]
-- [netdrv] qed: Fix use of incorrect size in memcpy call (Manish Chopra) [1643532]
-- [netdrv] qed: Fix setting of incorrect eswitch mode (Manish Chopra) [1643532]
-- [netdrv] qed: Limit msix vectors in kdump kernel to the minimum required count (Manish Chopra) [1643532]
-- [netdrv] qed: Do not advertise DCBX_LLD_MANAGED capability (Manish Chopra) [1643532]
-- [netdrv] qed: Add sanity check for SIMD fastpath handler (Manish Chopra) [1643532]
-- [netdrv] qed: Fix possible memory leak in Rx error path handling (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Fix NULL pointer dereference when running over iWARP without RDMA-CM (Manish Chopra) [1643532]
-- [netdrv] qed*: Utilize FW 8.37.2.0 (Manish Chopra) [1643532]
-- [netdrv] qed: use dma_zalloc_coherent instead of allocator/memset (Manish Chopra) [1643532]
-- [netdrv] qed: Add srq core support for RoCE and iWARP (Manish Chopra) [1643532]
-- [netdrv] qed*: Add link change count value to ethtool statistics display (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: fix spelling mistake: "adrresses" -> "addresses" (Manish Chopra) [1643532]
-- [netdrv] qed*: Support drop action classification (Manish Chopra) [1643532]
-- [netdrv] qede: Support flow classification to the VFs (Manish Chopra) [1643532]
-- [netdrv] qed*: Support other classification modes (Manish Chopra) [1643532]
-- [netdrv] qede: Validate unsupported configurations (Manish Chopra) [1643532]
-- [netdrv] qede: Refactor ethtool rx classification flow (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Fix doorbell bar mapping for dpi > 1 (Manish Chopra) [1643532]
-- [netdrv] qed: Fix mask for physical address in ILT entry (Manish Chopra) [1643532]
-- [netdrv] qede: Add build_skb() support (Manish Chopra) [1643532]
-- [netdrv] qed: Fix LL2 race during connection terminate (Manish Chopra) [1643532]
-- [netdrv] qed: Fix possibility of list corruption during rmmod flows (Manish Chopra) [1643532]
-- [netdrv] qed: LL2 flush isles when connection is closed (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake: "taskelt" -> "tasklet" (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake: "offloded" -> "offloaded" (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: fix spelling mistake: "failes" -> "fails" (Manish Chopra) [1643532]
-- [netdrv] qed: fix spelling mistake: "checksumed" -> "checksummed" (Manish Chopra) [1643532]
-- [netdrv] qed: Fix copying 2 strings (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Fix wmb usage in qedr (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Zero stack memory before copying to user space (Manish Chopra) [1643532]
-- [infiniband] qedr: fix spelling mistake: "hanlde" -> "handle" (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: eliminate duplicate barriers on weakly-ordered archs (Manish Chopra) [1643532]
-- [infiniband] rdma/qedr: Use pci_enable_atomic_ops_to_root() (Manish Chopra) [1643532]
-
-* Thu Feb 21 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1009.el7]
-- [netdrv] ibmvnic: Update driver queues after change in ring size support (Steve Best) [1674253]
-- [netdrv] ibmvnic: Fix RX queue buffer cleanup (Steve Best) [1674253]
-- [kernel] mm: Introduce kvcalloc() (Petr Oros) [1672317]
-- [scsi] qla2xxx: Use complete switch scan for RSCN events (Himanshu Madhani) [1655965]
-- [scsi] lpfc: Fix lpfc_wwn_set return code check (Dick Kennedy) [1672749]
-- [edac] amd64: Add Family 17h, models 10h-2fh support (Gary Hook) [1670608]
-- [acpi] apci / watchdog: enable acpi_watchdog_uses_rtc (David Arcari) [1663637]
-- [watchdog] hpwdt: Update driver version (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Do not claim unsupported hardware (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Exclude via blacklist (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Disable PreTimeout when Timeout is smaller (Joseph Szczypek) [1665272]
-- [documentation] watchdog: hpwdt: Update Driver Documentation (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Update version number (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Module paramerter alias (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Display module parameters (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Claim NMI from iLO (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Initialize pretimeout from module parameter (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Update driver version (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Add dynamic debug (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Programable Pretimeout NMI (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: remove allow_kdump module parameter (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Modify to use watchdog core (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Update nmi_panic message (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Update Module info and copyright (Joseph Szczypek) [1665272]
-- [documentation] documentation: hpwdt: fix selftests related file refs (Joseph Szczypek) [1665272]
-- [watchdog] hpwdt: Get rid of MODULE_ALIAS_MISCDEV statements (Joseph Szczypek) [1665272]
-- [netdrv] cross-tree: phase out dma_zalloc_coherent() (David Arcari) [1637730]
-- [netdrv] intel: consolidate NAPI and NAPI exit (David Arcari) [1637730]
-- [netdrv] e1000e: allow non-monotonic SYSTIM readings (David Arcari) [1483933 1637730]
-- [netdrv] intel-ethernet: use correct module license (David Arcari) [1637730]
-- [netdrv] treewide: kzalloc() -> kcalloc() (David Arcari) [1637730]
-- [netdrv] treewide: kmalloc() -> kmalloc_array() (David Arcari) [1637730]
-- [netdrv] intel: Cleanup the copyright/license headers (David Arcari) [1637730]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (David Arcari) [1637730]
-- [netdrv] ptp: e1000e: use helpers for converting ns to timespec (David Arcari) [1637730]
-- [netdrv] ptp: e1000e: convert to the 64 bit get/set time methods (David Arcari) [1637730]
-- [fs] proc/stat: Make the interrupt statistics more efficient (Waiman Long) [1676003]
-- [kernel] genirq: Avoid summation loops for /proc/stat (Waiman Long) [1676003]
-- [s390] zcrypt: fix specification exception on z196 during ap probe (Hendrik Brueckner) [1669535]
-- [s390] dasd: fix handling of internal requests (Hendrik Brueckner) [1667196]
-
-* Wed Feb 20 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1008.el7]
-- [net] vsock/virtio: reset connected sockets on device removal (Stefano Garzarella) [1609699]
-- [net] vsock/virtio: fix kernel panic after device hot-unplug (Stefano Garzarella) [1609699]
-- [netdrv] netxen: fix a missing check and an uninitialized use (Tony Camuso) [1548159]
-- [netdrv] qlogic: netxen: remove ndo_poll_controller (Tony Camuso) [1548159]
-- [netdrv] netxen_nic: Mark expected switch fall-throughs (Tony Camuso) [1548159]
-- [netdrv] qlogic: netxen: remove various redundant variables (Tony Camuso) [1548159]
-- [netdrv] Use octal not symbolic permissions (Tony Camuso) [1548159]
-- [kernel] io: change writeX_relaxed() to remove barriers (Petr Oros) [1668778]
-- [kernel] io: change readX_relaxed() to remove barriers (Petr Oros) [1668778]
-- [kernel] io: change inX() to have their own IO barrier overrides (Petr Oros) [1668778]
-- [kernel] io: change outX() to have their own IO barrier overrides (Petr Oros) [1668778]
-- [kernel] io: define stronger ordering for the default writeX() implementation (Petr Oros) [1668778]
-- [kernel] io: define stronger ordering for the default readX() implementation (Petr Oros) [1668778]
-- [kernel] io: define several IO & PIO barrier types for the asm-generic version (Petr Oros) [1668778]
-- [char] /dev/mem: Use more consistent data types (Petr Oros) [1668778]
-- [kernel] asm-generic/io.h: Implement generic {read, write}s*() (Petr Oros) [1668778]
-- [kernel] asm-generic/io.h: Reconcile I/O accessor overrides (Petr Oros) [1668778]
-- [platform] x86: intel_pmc_core: convert to DEFINE_SHOW_ATTRIBUTE (David Arcari) [1658079]
-- [platform] x86: intel_pmc_core: Decode Snoop / Non Snoop LTR (David Arcari) [1658079]
-- [platform] x86: intel_pmc_core: Fix LTR IGNORE Max offset (David Arcari) [1658079]
-- [platform] x86: intel_pmc_core: Show Latency Tolerance info (David Arcari) [1658079]
-- [platform] x86: intel_pmc: Convert to use SPDX identifier (David Arcari) [1658079]
-- [platform] x86: intel_pmc_core: Add CNP SLPS0 debug registers (David Arcari) [1658079]
-- [infiniband] ib/hfi1: Close VNIC sdma_progress sleep window (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Unreserve a reserved request when it is completed (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Consider LMC in 16B/bypass ingress packet check (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Incorrect sizing of sge for PIO will OOPs (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Limit VNIC use of SDMA engines to the available count (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Correctly process FECN and BECN in packets (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Ignore LNI errors before DC8051 transitions to Polling state (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Dump pio info for non-user send contexts (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix a latency issue for small messages (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix an out-of-bounds access in get_hw_stats (Alex Estrin) [1637242]
-- [infiniband] ib/qib: Fix an error code in qib_sdma_verbs_send() (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Move ruc_loopback to rdmavt (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Move send completion logic to rdmavt (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Move copy SGE logic into rdmavt (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Use VL15 for SM packets (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add mtu check for operational data VLs (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add static trace for iowait (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Prepare resource waits for dual leg (Alex Estrin) [1637242]
-- [infiniband] ib/rdmavt: Rename check_send_wqe as setup_wqe (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Error path MAD response size is incorrect (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Move UnsupportedVL bits definitions to the correct header (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: set_intr_bits uses incorrect source for register modification (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Missing return value in error path for user sdma (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Right size user_sdma sequence numbers and related variables (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove race conditions in user_sdma send path (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Eliminate races in the SDMA send error path (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Schedule multi RC/UC packets instead of posting (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Move URGENT IRQ enable to hfi1_rcvctrl() (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Rework the IRQ API to be more flexible (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: PCIe bus width retry (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Make the MSIx resource allocation a bit more flexible (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Prepare for new HFI1 MSIx API (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Get the hfi1_devdata structure as early as possible (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: tune_pcie_caps is arbitrarily placed, poorly (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove duplicated defines (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Rework file list in Makefile (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix destroy_qp hang after a link down (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix context recovery when PBC has an UnsupportedVL (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Invalid user input can result in crash (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix SL array bounds check (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Invalid NUMA node information can cause a divide by zero (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Suppress a compiler warning (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove incorrect call to do_interrupt callback (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Set in_use_ctxts bits for user ctxts only (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix incorrect mixing of ERR_PTR and NULL return values (Alex Estrin) [1637242]
-- [rdma] rdma/opa_addr.h: Fix an endianness issue (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove INTx support and simplify MSIx usage (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Reorg ctxtdata and rightsize fields (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove caches of chip CSRs (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove unused/writeonly devdata fields (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Rightsize ctxt_eager_bufs fields (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove rcvctrl from ctxtdata (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove rcvhdrq_size (Alex Estrin) [1637242]
-- [rdma] ib/rdmavt, ib/hfi1: Create device dependent s_flags (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove rcvhdrsize (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Move rhf_offset from devdata to ctxtdata (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Move normal functions from hfi1_devdata to const array (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix comment on default hdr entry size (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Rename exp_lock to exp_mutex (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add bypass register defines and replace blind constants (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Remove unused variable (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Ensure VL index is within bounds (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix user context tail allocation for DMA_RTAIL (Alex Estrin) [1637242]
-- [infiniband] ib/{rdmavt, hfi1}: Change hrtimer add to use pinned version (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Set port number for errorinfo MAD response (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Cleanup of exp_rcv (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add 16B Management Packet trace support (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Add support for 16B Management Packets (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Define 16B Management Packets (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib, rdmavt}: Move logic to allocate receive WQE into rdmavt (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, rdmavt, qib}: Implement CQ completion vector support (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Create common functions for affinity CPU mask operations (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Read CCE Revision register to verify the device is responsive (Alex Estrin) [1637242]
-- [infiniband] ib/{hfi1, qib}: Add handling of kernel restart (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Reorder incorrect send context disable (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Return correct value for device state (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Fix fault injection init/exit issues (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Complete check for locally terminated smp (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Return actual error value from program_rcvarray() (Alex Estrin) [1637242]
-- [infiniband] ib/hfi1: Prevent LNI hang when LCB can't obtain lanes (Alex Estrin) [1637242]
-
-* Tue Feb 19 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1007.el7]
-- [netdrv] bnxt_en: Disable interrupts when allocating CP rings or NQs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix context memory allocation (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix ring checking logic on 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Adjust default RX coalescing ticks to 10 us (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Support for 64-bit flow handle (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Increase context memory allocations on 57500 chips for RDMA (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Add Level 2 context memory paging support (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Enhance bnxt_alloc_ring()/bnxt_free_ring() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add support for 2nd firmware message channel (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Introduce bnxt_get_hwrm_resp_addr & bnxt_get_hwrm_seq_id routines (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Avoid arithmetic on void * pointer (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Use macros for firmware message doorbell offsets (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Set hwrm_intr_seq_id value to its inverted value (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.33 (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix ethtool self-test loopback (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: query force speeds before disabling autoneg mode (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not free port statistics buffer when device is down (Jonathan Toppins) [1471632 1643317]
-- [netdrv] bnxt_en: Save ring statistics before reset (Jonathan Toppins) [1471632 1643317]
-- [netdrv] bnxt_en: Return linux standard errors in bnxt_ethtool.c (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Don't set ETS on unused TCs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add ethtool -S priority counters (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add SR-IOV support for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Disable MSIX before re-reserving NQs/CMPL rings (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Reserve 1 stat_ctx for RDMA driver (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not modify max_stat_ctxs after RDMA driver requests/frees stat_ctxs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: get rid of num_stat_ctxs variable (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add bnxt_get_avail_cp_rings_for_en() helper function (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Store the maximum NQs available on the PF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt: remove printing of hwrm message (Jonathan Toppins) [1642057 1643317]
-- [netdrv] bnxt_en: Fix _bnxt_get_max_rings() for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Fix NQ/CP rings accounting on the new 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Keep track of reserved IRQs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix CNP CoS queue regression (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix filling time in bnxt_fill_coredump_record() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add software "missed_irqs" counter (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Workaround occasional TX timeout on 57500 A0 (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Disable RDMA support on the 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Fix rx_l4_csum_errors counter on 57500 devices (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Fix RSS context allocation (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Copy and paste bug in extended tx_stats (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add PCI ID for BCM57508 device (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Add new NAPI poll function for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Refactor bnxt_poll_work() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add coalescing setup for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Use bnxt_cp_ring_info struct pointer as parameter for RX path (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add RSS support for 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Increase RSS context array count and skip ring groups on 57500 chips (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Allocate/Free CP rings for 57500 series chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Modify bnxt_ring_alloc_send_msg() to support 57500 chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Add helper functions to get firmware CP ring ID (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Allocate completion ring structures for 57500 series chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Modify the ring reservation functions for 57500 series chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Adjust MSIX and ring groups for 57500 series chips (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Re-structure doorbells (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add 57500 new chip ID and basic structures (Jonathan Toppins) [1623230 1643317]
-- [netdrv] bnxt_en: Configure context memory on new devices (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Check context memory requirements from firmware (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add new flags to setup new page table PTE bits on newer devices (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Refactor bnxt_ring_struct (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update interrupt coalescing logic (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add maximum extended request length fw message support (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add additional extended port statistics (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.3 (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Remove unnecessary unsigned integer comparison and initialize variable (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: get the reduced max_irqs by the ones used by RDMA (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: free hwrm resources, if driver probe fails (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix enables field in HWRM_QUEUE_COS2BW_CFG request (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix VNIC reservations on the PF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add a driver specific gre_ver_check devlink parameter (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Use msix_vec_per_pf_max and msix_vec_per_pf_min devlink params (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: return proper error when FW returns HWRM_ERR_CODE_RESOURCE_ACCESS_DENIED (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Use ignore_ari devlink parameter (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix TX timeout during netpoll (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: don't try to offload VLAN 'modify' action (Jonathan Toppins) [1643317]
-- [netdrv] bnxt: Fix a uninitialized variable warning (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix VF mac address regression (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: remove set but not used variable 'addr_type' (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not adjust max_cp_rings by the ones used by RDMA (Jonathan Toppins) [1635842 1643317]
-- [netdrv] bnxt_en: Clean up unused functions (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix firmware signaled resource change logic in open (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: remove set but not used variable 'rx_stats' (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: take coredump_record structure off stack (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: avoid string overflow for record->system_name (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix strcpy() warnings in bnxt_ethtool.c (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not use the CNP CoS queue for networking traffic (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add DCBNL DSCP application protocol support (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add hwmon sysfs support to read temperature (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Notify firmware about IF state changes (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Move firmware related flags to a new fw_cap field in struct bnxt (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add BNXT_NEW_RM() macro (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add support for ethtool get dump (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update RSS setup and GRO-HW logic according to the latest spec (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add new VF resource allocation strategy mode (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add PHY retry logic (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add external loopback test to ethtool selftest (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Adjust timer based on ethtool stats-block-usecs settings (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Update firmware interface version to 1.9.2.25 (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: combine 'else if' and 'else' into single branch (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: remove redundant debug register dma mem allocation (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix for system hang if request_irq fails (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not modify max IRQ count after RDMA driver requests/frees IRQs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Support clearing of the IFF_BROADCAST flag (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Always set output parameters in bnxt_get_max_rings() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix inconsistent BNXT_FLAG_AGG_RINGS logic (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix the vlan_tci exact match check (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add bnxt_en initial params table and register it (Jonathan Toppins) [1643317]
-- [netdrv] bnxt: simplify cls_flower command switch and handle default case (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Report PCIe link properties with pcie_print_link_status() (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Always forward VF MAC address to the PF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Read phy eeprom A2h address only when optical diagnostics is supported (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Check unsupported speeds in bnxt_update_link() on PF only (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Fix firmware message delay loop regression (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Reserve rings at driver open if none was reserved at probe time (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Reserve RSS and L2 contexts for VF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Don't reserve rings on VF when min rings were not provisioned by PF (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Reserve rings in bnxt_set_channels() if device is down (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: add debugfs support for DIM (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: reduce timeout on initial HWRM calls (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Increase RING_IDLE minimum threshold to 50 (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not allow VF to read EEPROM (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Display function level rx/tx_discard_pkts via ethtool (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Simplify ring alloc/free error messages (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Do not set firmware time from VF driver on older firmware (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Check the lengths of encapsulated firmware responses (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Remap TC to hardware queues when configuring PFC (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add TC to hardware QoS queue mapping logic (Jonathan Toppins) [1643317]
-- [netdrv] bpf: make bnxt compatible w/ bpf_xdp_adjust_tail (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Add extended port statistics support (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Include additional hardware port statistics in ethtool -S (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Use a dedicated VNIC mode for RDMA (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Adjust default rings for multi-port NICs (Jonathan Toppins) [1643317]
-- [netdrv] bnxt_en: Eliminate duplicate barriers on weakly-ordered archs (Jonathan Toppins) [1643317]
-- [netdrv] xdp: make the stack take care of the tear down (Jonathan Toppins) [1643317]
-- [nvme] nvmet-rdma: fix response use after free (David Milburn) [1642873 1642670 1641542]
-- [nvme] validate controller state before rescheduling keep alive (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: fix surprise removal (David Milburn) [1642873 1642670 1641542]
-- [nvme] Free ctrl device name on init failure (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fc: resolve io failures during connect (David Milburn) [1642873 1642670 1641542]
-- [nvme] revert "nvmet-rdma: use a private workqueue for delete" (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fabrics: move controller options matching to fabrics (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: fix hot removal during error handling (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-fcloop: suppress a compiler warning (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-core: make implicit seed truncation explicit (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fc: fix kernel-doc headers (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: declare local symbols static (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: use strlcpy() instead of strcpy() (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: fix nvme_suspend_queue() kernel-doc header (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-core: rework a NQN copying operation (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: check for timeout in nvme_rdma_wait_for_cm() (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: use strcmp() instead of strncmp() for subsystem lookup (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: remove unreachable code (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: use a private workqueue for delete (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme_fc: add 'nvme_discovery' sysfs attribute to fc transport device (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet_fc: support target port removal with nvmet layer (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fc: fix for a minor typos (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: remove redundant module prefix (David Milburn) [1642873 1642670 1641542]
-- [nvme] fix typo in nvme_identify_ns_descs (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: fix possible bogus dereference under heavy load (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fcloop: Fix dropped LS's to removed target port (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-fabrics: fix ctrl_loss_tmo < 0 to reconnect forever (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: keep a port pointer in nvmet_ctrl (David Milburn) [1642873 1642670 1641542]
-- [nvme] simplify the API for getting log pages (David Milburn) [1642873 1642670 1641542]
-- [kernel] nvme.h: add support for the log specific field (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: don't use uuid_le type (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: centralize admin/io queue teardown sequence (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: centralize controller setup sequence (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: unquiesce queues when deleting the controller (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: mark expected switch fall-through (David Milburn) [1642873 1642670 1641542]
-- [nvme] cache struct nvme_ctrl reference to struct nvme_request (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-loop: merge init_request methods (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: add an error flow for post_recv failures (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: add unlikely check in the fast path (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet-rdma: support max(16KB, PAGE_SIZE) inline data (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: support up to 4 segments of inline data (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: add commands supported and effects log page (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: fixup crash on NULL device path (David Milburn) [1642873 1642670 1641542]
-- [nvme] don't enable AEN if not supported (David Milburn) [1642873 1642670 1641542]
-- [nvme] ensure forward progress during Admin passthru (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: reset keep alive timer in controller enable (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: don't override opts->queue_size (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: fix possible double free condition when failing to create a controller (David Milburn) [1642873 1642670 1641542]
-- [nvme] don't rely on the changed namespace list log (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: free smart-log buffer after use (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: fix error flow during mapping request data (David Milburn) [1642873 1642670 1641542]
-- [nvme] cleanup double shift issue (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: make CMB SQ mod-param read-only (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: remove HMB teardown on reset (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: queue creation fixes (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: remove unnecessary completion doorbell check (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: remove unnecessary nested locking (David Milburn) [1642873 1642670 1641542]
-- [nvme] use the changed namespaces list log to clear ns data changed AENs (David Milburn) [1642873 1642670 1641542]
-- [nvme] mark nvme_queue_scan static (David Milburn) [1642873 1642670 1641542]
-- [nvme] submit AEN event configuration on startup (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: mask pending AENs (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: add AEN configuration support (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: implement the changed namespaces log (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: split log page implementation (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: add a new nvmet_zero_sgl helper (David Milburn) [1642873 1642670 1641542]
-- [kernel] nvme.h: add AEN configuration symbols (David Milburn) [1642873 1642670 1641542]
-- [kernel] nvme.h: add the changed namespace list log (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme.h: untangle AEN notice definitions (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-loop: add support for multiple ports (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: simplify __nvme_submit_cmd (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: Rate limit the nvme timeout warnings (David Milburn) [1642873 1642670 1641542]
-- [nvme] fixup memory leak in nvme_init_identify() (David Milburn) [1642873 1642670 1641542]
-- [nvme] fix KASAN warning when parsing host nqn (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: remove duplicate NULL initialization for req->ns (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: make a few error messages more generic (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: Fix AER reset handling (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: set nvmeq->cq_vector after alloc cq/sq (David Milburn) [1642873 1642670 1641542]
-- [nvme] host: core: fix precedence of ternary operator (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: fix race between poll and IRQ completions (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: drop IRQ disabling on submission queue lock (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: split the nvme queue lock into submission and completion locks (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: handle completions outside of the queue lock (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: move ->cq_vector == -1 check outside of ->q_lock (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: remove cq check after submission (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-pci: simplify nvme_cqe_valid (David Milburn) [1642873 1642670 1641542]
-- [nvme] mark the result argument to nvme_complete_async_event volatile (David Milburn) [1642873 1642670 1641542]
-- [nvme] pci: Sync controller reset for AER slot_reset (David Milburn) [1642873 1642670 1641542]
-- [nvme] pci: Hold controller reference during async probe (David Milburn) [1642873 1642670 1641542]
-- [nvme] pci: Use async_schedule for initial reset work (David Milburn) [1642873 1642670 1641542]
-- [nvme] Add Quirk Delay before CHK RDY for Seagate Nytro Flash Storage (David Milburn) [1642873 1642670 1641542]
-- [nvme] fc: provide a descriptive error (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: filter newlines from user input (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvmet: return all zeroed buffer when we can't find an active namespace (David Milburn) [1642873 1642670 1641542]
-- [nvme] nvme-rdma: correctly check for target keyed sgl support (David Milburn) [1642873 1642670 1641542]
-- [nvme] don't hold nvmf_transports_rwsem for more than transport lookups (David Milburn) [1642873 1642670 1641542]
-- [nvme] add quirk to force medium priority for SQ creation (David Milburn) [1642873 1642670 1641542]
-- [nvme] Fix sync controller reset return (David Milburn) [1642873 1642670 1641542]
-- [netdrv] sfc: initialise found bitmap in efx_ef10_mtd_probe (Jarod Wilson) [1658087]
-- [netdrv] ibmvnic: Add ethtool private flag for driver-defined queue limits (Steve Best) [1671762]
-- [netdrv] ibmvnic: Introduce driver limits for ring sizes (Steve Best) [1671762]
-- [netdrv] ibmvnic: Increase maximum queue size limit (Steve Best) [1671762]
-- [kernel] tracing: Quiet gcc warning about maybe unused link variable (Artem Savkov) [1605060]
-- [kernel] tracing/kprobes: Fix trace_probe flags on enable_trace_kprobe() failure (Artem Savkov) [1605060]
-
-* Sun Feb 17 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1006.el7]
-- [kvm] KVM: nVMX: unconditionally cancel preemption timer in free_nested (Paolo Bonzini) [1671906] {CVE-2019-7221}
-- [kvm] kvm: fix kvm_ioctl_create_device() reference counting (Paolo Bonzini) [1671923] {CVE-2019-6974}
-- [target] scsi: target: iscsi: cxgbit: add missing spin_lock_init() (Arjun Vynipadath) [1642435]
-- [target] scsi: target: iscsi: cxgbit: fix csk leak (Arjun Vynipadath) [1642435]
-- [target] scsi: target: iscsi: cxgbit: fix csk leak (Arjun Vynipadath) [1642435]
-- [target] scsi: target: iscsi: cxgbit: use pr_debug() instead of pr_info() (Arjun Vynipadath) [1642435]
-- [x86] mm/fault: Allow stack access below rsp (Waiman Long) [1651416]
-- [md] raid5: fix data corruption of replacements after originals dropped (Nigel Croxon) [1636944]
-- [md] remove a bogus comment (Nigel Croxon) [1636944]
-- [md] r5cache: remove redundant pointer bio (Nigel Croxon) [1636944]
-- [md] raid10: fix that replacement cannot complete recovery after reassemble (Nigel Croxon) [1636944]
-- [md] fix memleak for mempool (Nigel Croxon) [1636944 1527943 1576466 1599780]
-- [md] Memory leak when flush bio size is zero (Nigel Croxon) [1636944 1527943 1576466 1599780]
-- [md] fix lock contention for flush bios (Nigel Croxon) [1636944 1527943 1576466 1599780]
-- [xen] xenbus driver must not accept invalid transaction ids (Vitaly Kuznetsov) [1663266]
-- [xen] xenbus: fix deadlock on writes to /proc/xen/xenbus (Vitaly Kuznetsov) [1663266]
-- [xen] xenbus: don't look up transaction IDs for ordinary writes (Vitaly Kuznetsov) [1663266]
-- [xen] xenbus: don't BUG() on user mode induced condition (Vitaly Kuznetsov) [1663266]
-- [xen] xenbus: Add proper handling of XS_ERROR from Xenbus for transactions (Vitaly Kuznetsov) [1663266]
-- [xen] fix potential integer overflow in queue_reply (Vitaly Kuznetsov) [1663266]
-
-* Sat Feb 16 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1005.el7]
-- [tools] perf tools: Fix perf.data format description of NRCPUS header (Jiri Olsa) [1672651]
-- [tools] perf script python: Add addr into perf sample dict (Jiri Olsa) [1672651]
-- [tools] perf data: Update documentation section on cpu topology (Jiri Olsa) [1672651]
-- [tools] perf bpf: Fix NULL return handling in bpf__prepare_load() (Jiri Olsa) [1672651]
-- [tools] Add IS_ERR_OR_NULL to err.h (Jiri Olsa) [1672651]
-- [tools] perf test: "Session topology" dumps core on s390 (Jiri Olsa) [1672651]
-- [tools] perf parse-events: Handle uncore event aliases in small groups properly (Jiri Olsa) [1672651]
-- [tools] perf tools: Add missing newline when parsing empty BPF proggie (Jiri Olsa) [1672651]
-- [tools] perf annotate: Display all available events on --stdio (Jiri Olsa) [1672651]
-- [tools] perf test: "probe libc's inet_pton" fails on s390 due to missing inline (Jiri Olsa) [1672651]
-- [tools] revert "perf pmu: Fix pmu events parsing rule" (Jiri Olsa) [1672651]
-- [tools] perf vendor events intel: Remove duplicated entry for westmereep-dp in mapfile.csv (Jiri Olsa) [1672651]
-- [tools] perf bench numa: Fix typo in options (Jiri Olsa) [1672651]
-- [tools] perf stat: Fix duplicate PMU name for interval print (Jiri Olsa) [1672651]
-- [tools] perf evsel: Only fall back group read for leader (Jiri Olsa) [1672651]
-- [tools] perf stat: Print out hint for mixed PMU group error (Jiri Olsa) [1672651]
-- [tools] perf pmu: Fix core PMU alias list for X86 platform (Jiri Olsa) [1672651]
-- [tools] perf record: Fix s390 undefined record__auxtrace_init() return value (Jiri Olsa) [1672651]
-- [tools] perf mem: Document incorrect and missing options (Jiri Olsa) [1672651]
-- [tools] perf evsel: Disable write_backward for leader sampling group events (Jiri Olsa) [1672651]
-- [tools] perf pmu: Fix pmu events parsing rule (Jiri Olsa) [1672651]
-- [tools] perf stat: Keep the / modifier separator in fallback (Jiri Olsa) [1672651]
-- [tools] perf list: Remove s390 specific strcmp_cpuid_cmp function (Jiri Olsa) [1672651]
-- [tools] perf machine: Set main kernel end address properly (Jiri Olsa) [1672651]
-- [tools] perf test bpf: Fixup BPF test using epoll_pwait syscall function probe (Jiri Olsa) [1672651]
-- [tools] perf tests mmap: Show which tracepoint is failing (Jiri Olsa) [1672651]
-- [tools] perf tools: Add '\n' at the end of parse-options error messages (Jiri Olsa) [1672651]
-- [tools] perf record: Remove suggestion to enable APIC (Jiri Olsa) [1672651]
-- [tools] perf record: Remove misleading error suggestion (Jiri Olsa) [1672651]
-- [tools] perf hists browser: Clarify top/report browser help (Jiri Olsa) [1672651]
-- [tools] perf mem: Allow all record/report options (Jiri Olsa) [1672651]
-- [tools] perf trace: Support MAP_FIXED_NOREPLACE (Jiri Olsa) [1672651]
-- [kernel] perf: Return proper values for user stack errors (Jiri Olsa) [1672651]
-- [tools] perf list: Add s390 support for detailed/verbose PMU event description (Jiri Olsa) [1672651]
-- [tools] perf script: Extend misc field decoding with switch out event type (Jiri Olsa) [1672651]
-- [tools] perf report: Extend raw dump (-D) out with switch out event type (Jiri Olsa) [1672651]
-- [tools] perf annotate: Handle variables in 'sub', 'or' and many other instructions (Jiri Olsa) [1672651]
-- [tools] perf annotate: Allow setting the offset level in .perfconfig (Jiri Olsa) [1672651]
-- [tools] perf report: Fix switching to another perf.data file (Jiri Olsa) [1672651]
-- [tools] perf record: Change warning for missing sysfs entry to debug (Jiri Olsa) [1672651]
-- [tools] perf sched: Fix documentation for timehist (Jiri Olsa) [1672651]
-- [tools] perf version: Print status for syscall_table (Jiri Olsa) [1672651]
-- [tools] perf tools: Rename HAVE_SYSCALL_TABLE to HAVE_SYSCALL_TABLE_SUPPORT (Jiri Olsa) [1672651]
-- [tools] perf script: Use HAVE_LIBXXX_SUPPORT to replace NO_LIBXXX (Jiri Olsa) [1672651]
-- [tools] perf tests bpf: Remove unused ptrace.h include from LLVM test (Jiri Olsa) [1672651]
-- [tools] perf jvmti: Give hints about package names needed to build (Jiri Olsa) [1672651]
-- [tools] perf annotate browser: Allow showing offsets in more than just jump targets (Jiri Olsa) [1672651]
-- [tools] perf annotate: Allow showing offsets in more than just jump targets (Jiri Olsa) [1672651]
-- [tools] perf tests: Run dwarf unwind test on arm32 (Jiri Olsa) [1672651]
-- [tools] tools headers: Restore READ_ONCE() C++ compatibility (Jiri Olsa) [1672651]
-- [tools] perf stat: Enable 1ms interval for printing event counters values (Jiri Olsa) [1672651]
-- [tools] perf tests clang: Fix function name for clang IR test (Jiri Olsa) [1672651]
-- [tools] perf clang: Add support for recent clang versions (Jiri Olsa) [1672651]
-- [tools] perf tools: Fix perf builds with clang support (Jiri Olsa) [1672651]
-- [tools] perf tools: No need to include namespaces.h in util.h (Jiri Olsa) [1672651]
-- [tools] perf hists browser: Show extra_title_lines in the 'D' debug hotkey (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Make auxtrace_queues__add_buffer() do CPU filtering (Jiri Olsa) [1672651]
-- [tools] perf report: Remove duplicated 'samples' in lost samples warning (Jiri Olsa) [1672651]
-- [tools] perf ui browser: Fixup cleaning unused lines at the bottom (Jiri Olsa) [1672651]
-- [tools] perf annotate browser: Fixup vertical line separating metrics from instructions (Jiri Olsa) [1672651]
-- [tools] perf annotate: Show group details on the title line (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Make auxtrace_queues__add_buffer() allocate struct buffer (Jiri Olsa) [1672651]
-- [tools] perf trace: Remove redundant ')' (Jiri Olsa) [1672651]
-- [tools] perf annotate stdio2: Print more descriptive event information header (Jiri Olsa) [1672651]
-- [tools] perf annotate browser: Show extra title line with event information (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce annotation__scnprintf_samples_period() method (Jiri Olsa) [1672651]
-- [tools] perf ui browser: Move the extra title lines from the hists browser (Jiri Olsa) [1672651]
-- [tools] perf hists: Move hists__scnprintf_title() away from the TUI code (Jiri Olsa) [1672651]
-- [tools] perf hists: Introduce hists__scnprint_title() (Jiri Olsa) [1672651]
-- [tools] perf hists browser: Rename perf_evsel_browser_title to a more descriptive name (Jiri Olsa) [1672651]
-- [tools] perf version: Add man page (Jiri Olsa) [1672651]
-- [tools] perf tools: Add 'perf -vv' as an alias to 'perf version --build-options' (Jiri Olsa) [1672651]
-- [tools] perf version: Print the compiled-in status of libraries (Jiri Olsa) [1672651]
-- [tools] perf config: Rename to HAVE_DWARF_GETLOCATIONS_SUPPORT (Jiri Olsa) [1672651]
-- [tools] perf config: Add some new -DHAVE_XXX to CFLAGS (Jiri Olsa) [1672651]
-- [tools] tools Add config.h header file (Jiri Olsa) [1672651]
-- [tools] perf trace: Show only failing syscalls (Jiri Olsa) [1672651]
-- [tools] perf tools: Add a "dso_size" sort order (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM z14 (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM z13 (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM zEC12 zBC12 (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM z196 (Jiri Olsa) [1672651]
-- [tools] perf vendor events s390: Add JSON files for IBM z10EC z10BC (Jiri Olsa) [1672651]
-- [tools] perf build: Fix check-headers.sh opts assignment (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use absolute addresses to calculate jump target offsets (Jiri Olsa) [1672651]
-- [tools] perf annotate: Defer searching for comma in raw line till it is needed (Jiri Olsa) [1672651]
-- [tools] perf annotate: Support jumping from one function to another (Jiri Olsa) [1672651]
-- [tools] perf annotate: Add "_local" to jump/offset validation routines (Jiri Olsa) [1672651]
-- [tools] perf python: Reference Py_None before returning it (Jiri Olsa) [1672651]
-- [tools] perf annotate: Mark jumps to outher functions with the call arrow (Jiri Olsa) [1672651]
-- [tools] perf annotate: Pass function descriptor to its instruction parsing routines (Jiri Olsa) [1672651]
-- [tools] perf annotate: No need to calculate notes->start twice (Jiri Olsa) [1672651]
-- [tools] perf annotate browser: Add 'P' hotkey to dump annotation to file (Jiri Olsa) [1672651]
-- [tools] perf report: Introduce --ignore-vmlinux command line option (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce --ignore-vmlinux command line option (Jiri Olsa) [1672651]
-- [tools] perf annotate: Add function header to --stdio2 (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use the default annotation options for --stdio2 (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move the default annotate options to the library (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce the --stdio2 output mode (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce annotation_line__filter() (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use a ops table for annotation_line__write() (Jiri Olsa) [1672651]
-- [tools] perf annotate: Finish the generalization of annotate_browser__write() (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce annotation_line__print_start() out of TUI code (Jiri Olsa) [1672651]
-- [tools] perf ui browser: Add vprintf() method (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce annotation_line__max_percent() (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce symbol__annotate2 method (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce init_column_widths() method out of TUI code (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move update_column_widths() to the generic lib (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move the column widths from the TUI to generic lib (Jiri Olsa) [1672651]
-- [tools] perf annotate: Introduce set_offsets() method out of TUI code (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move nr_{asm_}entries to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move 'start' to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate: Nuke struct browser_line (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move mark_jump_targets from the TUI to the annotation library (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move nr_jumps to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move jumps_percent_color to ui_browser (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move max_jump_sources to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate tui: Add browser__annotation() helper (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move pcnt_with() to the annotation library (Jiri Olsa) [1672651]
-- [tools] perf annotate: Stop using a global config struct (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move nr_events from annotate_browser to annotation struct (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move compute_ipc() to annotation library (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move annotation_line array from TUI to generic code (Jiri Olsa) [1672651]
-- [tools] perf annotate tui: Move have_cycles to struct annotation (Jiri Olsa) [1672651]
-- [tools] perf annotate tui: Use annotate_browser__cycles_width() mroe (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move cycles/IPC formatting width constants outside TUI (Jiri Olsa) [1672651]
-- [tools] perf annotate: Move annotation_options out of the TUI browser (Jiri Olsa) [1672651]
-- [tools] perf unwind: Report error from dwfl_attach_state (Jiri Olsa) [1672651]
-- [tools] perf probe: Use right type to access array elements (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use ops->target.name when available for unresolved call targets (Jiri Olsa) [1672651]
-- [tools] perf top: Document --ignore-vmlinux (Jiri Olsa) [1672651]
-- [tools] perf tools: Fix python extension build for gcc 8 (Jiri Olsa) [1672651]
-- [tools] perf tools: Fix snprint warnings for gcc 8 (Jiri Olsa) [1672651]
-- [tools] perf debug: Avoid setting 'quiet' to 'true' unnecessarily (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Update POWER9 events (Jiri Olsa) [1672651]
-- [tools] perf report: Support forced leader feature in pipe mode (Jiri Olsa) [1672651]
-- [tools] perf record: Synthesize features before events in pipe mode (Jiri Olsa) [1672651]
-- [tools] perf annotate: Use asprintf when formatting objdump command line (Jiri Olsa) [1672651]
-- [tools] perf machine: Fix mmap name setup (Jiri Olsa) [1672651]
-- [tools] perf stat: Make function perf_stat_evsel_id_init static (Jiri Olsa) [1672651]
-- [tools] perf llvm: Display eBPF compiling command in debug output (Jiri Olsa) [1672651]
-- [tools] perf top: Fix top.call-graph config option reading (Jiri Olsa) [1672651]
-- [tools] perf record: Avoid duplicate call of perf_default_config() (Jiri Olsa) [1672651]
-- [tools] perf unwind: Unwind with libdw doesn't take symfs into account (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Enable JSON events for ThunderX2 B0 (Jiri Olsa) [1672651]
-- [tools] perf report: Show zero counters as well in 'perf report --stat' (Jiri Olsa) [1672651]
-- [tools] perf stat: Fix core dump when flag T is used (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: add HiSilicon hip08 JSON file (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: fixup A53 to use recommended events (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Fixup ThunderX2 to use recommended events (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Add armv8-recommended.json (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Add support for arch standard events (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Relocate Cortex A53 JSONs to arm subdirectory (Jiri Olsa) [1672651]
-- [tools] perf vendor events arm64: Relocate ThunderX2 JSON to cavium subdirectory (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Add support for pmu events vendor subdirectory (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Drop support for unused topic directories (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Fix error code in json_events() (Jiri Olsa) [1672651]
-- [tools] perf vendor events: Drop incomplete multiple mapfile support (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Add cacheline address count column (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Add span header over cacheline data (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Display node for cacheline address (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Call calc_width() only for displayed entries (Jiri Olsa) [1672651]
-- [tools] perf c2c report: Make calc_width work with struct c2c_hist_entry (Jiri Olsa) [1672651]
-- [tools] perf c2c record: Record physical addresses in samples (Jiri Olsa) [1672651]
-- [tools] perf tests: Add mem2node object test (Jiri Olsa) [1672651]
-- [tools] perf tools: Add mem2node object (Jiri Olsa) [1672651]
-- [tools] perf env: Free memory nodes data (Jiri Olsa) [1672651]
-- [tools] perf tools: Update quipper information (Jiri Olsa) [1672651]
-- [tools] add WARN_ON_ONCE (Jiri Olsa) [1672651]
-- [tools] perf annotate: Handle s390 PC relative load and store instruction (Jiri Olsa) [1672651]
-- [tools] perf annotate: Support to display the IPC/Cycle in TUI mode (Jiri Olsa) [1672651]
-- [tools] perf report: Provide libtraceevent with a kernel symbol resolver (Jiri Olsa) [1672651]
-- [tools] perf build: Force llvm/clang test compile output to .make.output (Jiri Olsa) [1672651]
-- [tools] perf build: Add llvm/clang make targets to FILES (Jiri Olsa) [1672651]
-- [tools] perf build: Add llvm/clang/cxx make tests into FEATURE_TESTS_EXTRA (Jiri Olsa) [1672651]
-- [tools] perf tools: Update tags with .cpp files (Jiri Olsa) [1672651]
-- [tools] perf tools: Add MEM_TOPOLOGY feature to perf data file (Jiri Olsa) [1672651]
-- [tools] perf c2c: Use mem_info refcnt logic (Jiri Olsa) [1672651]
-- [tools] perf tools: Add refcnt into struct mem_info (Jiri Olsa) [1672651]
-- [tools] perf record: Remove progname from struct record (Jiri Olsa) [1672651]
-- [tools] perf record: Move machine variable down the function (Jiri Olsa) [1672651]
-- [tools] perf report: Display perf.data header info (Jiri Olsa) [1672651]
-- [tools] perf report: Fix the output for stdio events list (Jiri Olsa) [1672651]
-- [tools] perf annotate: Fix s390 target function disassembly (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Adjust overlap-checking to support sampling mode (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Remove a check for sampling mode (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Tidy old_buffer handling in intel_pt_get_trace() (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Get rid of intel_pt_use_buffer_pid_tid() (Jiri Olsa) [1672651]
-- [tools] perf intel-pt/bts: In auxtrace_record__init_intel() evlist is never NULL (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Fix timestamp following overflow (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Fix error recovery from missing TIP packet (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Fix sync_switch (Jiri Olsa) [1672651]
-- [tools] perf intel-pt: Fix overlap detection to identify consecutive buffers correctly (Jiri Olsa) [1672651]
-- [tools] perf pmu: Auto-merge PMU events created by prefix or glob match (Jiri Olsa) [1672651]
-- [tools] perf pmu: Display pmu name when printing unmerged events in stat (Jiri Olsa) [1672651]
-- [tools] perf pmu: Support wildcards on pmu name in dynamic pmu events (Jiri Olsa) [1672651]
-- [tools] perf tools: Correct title markers for asciidoctor (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Make auxtrace_queues__add_buffer() return buffer_ptr (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Rename some buffer-queuing functions (Jiri Olsa) [1672651]
-- [tools] perf auxtrace: Add missing parameters from kernel-doc comments (Jiri Olsa) [1672651]
-- [tools] perf trace: Support setting cgroups as targets (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Make the cgroup name be const char * (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Add evlist__add_default_cgroup() (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Add evlist__findnew_cgroup() (Jiri Olsa) [1672651]
-- [tools] perf record: Combine some auxtrace initialization into a single function (Jiri Olsa) [1672651]
-- [tools] perf sched map: Re-annotate shortname if thread comm changed (Jiri Olsa) [1672651]
-- [tools] perf sched: Move thread::shortname to thread_runtime (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Introduce cgroup__new() out of open coded equivalent (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Introduce find_cgroup() method (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Introduce cgroup__get() (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Rename close_cgroup() to cgroup__put() (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Introduce cgroup__delete() (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Rename 'struct cgroup_sel' to 'struct cgroup' (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Remove misplaced __maybe_unused (Jiri Olsa) [1672651]
-- [tools] perf annotate: Find 'call' instruction target symbol at parsing time (Jiri Olsa) [1672651]
-- [tools] perf record: Throttle user defined frequencies to the maximum allowed (Jiri Olsa) [1672651]
-- [tools] perf top: Allow asking for the maximum allowed sample rate (Jiri Olsa) [1672651]
-- [tools] perf top browser: Show sample_freq in browser title line (Jiri Olsa) [1672651]
-- [tools] perf record: Allow asking for the maximum allowed sample rate (Jiri Olsa) [1672651]
-- [tools] perf stat: Ignore error thread when enabling system-wide --per-thread (Jiri Olsa) [1672651]
-- [tools] perf cgroup: Simplify arguments when tracking multiple events (Jiri Olsa) [1672651]
-- [tools] perf stat: Use xyarray dimensions to iterate fds (Jiri Olsa) [1672651]
-- [tools] perf tools: Add Python 3 support (Jiri Olsa) [1672651]
-- [tools] perf python: Make twatch.py work with both python2 and python3 (Jiri Olsa) [1672651]
-- [tools] perf ftrace: Append an EOL when write tracing files (Jiri Olsa) [1672651]
-- [tools] perf machine: Fix paranoid check in machine__set_kernel_mmap() (Jiri Olsa) [1672651]
-- [tools] perf s390: Fix reading cpuid model information (Jiri Olsa) [1672651]
-- [tools] perf test: Fix test case 23 for s390 z/VM or KVM guests (Jiri Olsa) [1672651]
-- [tools] perf cpuid: Introduce a platform specific cpuid compare function (Jiri Olsa) [1672651]
-- [tools] perf annotate: Scan cpuid for s390 and save machine type (Jiri Olsa) [1672651]
-- [tools] perf record: Provide detailed information on s390 CPU (Jiri Olsa) [1672651]
-- [tools] perf trace powerpc: Use generated syscall table (Jiri Olsa) [1672651]
-- [tools] perf powerpc: Generate system call table from asm/unistd.h (Jiri Olsa) [1672651]
-- [tools] tools include powerpc: Grab a copy of arch/powerpc/include/uapi/asm/unistd.h (Jiri Olsa) [1672651]
-- [tools] perf report: Fix memory corruption in --branch-history mode --branch-history (Jiri Olsa) [1672651]
-- [tools] perf report: Fix wrong jump arrow (Jiri Olsa) [1672651]
-- [tools] perf report: Fix description for --mem-mode (Jiri Olsa) [1672651]
-- [tools] perf mem: Document a missing option (Jiri Olsa) [1672651]
-- [tools] perf kmem: Document a missing option & an argument (Jiri Olsa) [1672651]
-- [tools] perf annotate: Add missing arguments in Man page (Jiri Olsa) [1672651]
-- [tools] perf tools: Use target->per_thread and target->system_wide flags (Jiri Olsa) [1672651]
-- [tools] perf tools: Do not create kernel maps in sample__resolve() (Jiri Olsa) [1672651]
-- [tools] perf machine: Remove machine__load_kallsyms() (Jiri Olsa) [1672651]
-- [tools] perf machine: Don't search for active kernel start in __machine__create_kernel_maps (Jiri Olsa) [1672651]
-- [tools] perf machine: Generalize machine__set_kernel_mmap() (Jiri Olsa) [1672651]
-- [tools] perf machine: Move kernel mmap name into struct machine (Jiri Olsa) [1672651]
-- [tools] perf machine: Free root_dir in machine__init() error path (Jiri Olsa) [1672651]
-- [tools] tools lib symbol: Skip non-address kallsyms line (Jiri Olsa) [1672651]
-- [tools] perf stat: Add support to print counts after a period of time (Jiri Olsa) [1672651]
-- [tools] perf stat: Add support to print counts for fixed times (Jiri Olsa) [1672651]
-- [tools] perf report: Add support to display group output for non group events (Jiri Olsa) [1672651]
-- [tools] perf report: Ask for ordered events for --tasks option (Jiri Olsa) [1672651]
-- [tools] perf tools: Fix comment for sort__* compare functions (Jiri Olsa) [1672651]
-- [tools] perf tests: Fix dwarf unwind for stripped binaries (Jiri Olsa) [1672651]
-- [tools] tools lib api fs: Add sysfs__read_xll function (Jiri Olsa) [1672651]
-- [tools] tools lib api fs: Add filename__read_xll function (Jiri Olsa) [1672651]
-- [tools] perf script: Add --show-round-event to display PERF_RECORD_FINISHED_ROUND (Jiri Olsa) [1672651]
-- [tools] perf record: Put new line after target override warning (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Don't enable freeze-on-smi for PerfMon V1 (Jiri Olsa) [1672651]
-- [tools] perf/core: Store context switch out type in PERF_RECORD_SWITCH[_CPU_WIDE] (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel/uncore: Fix SBOX support for Broadwell CPUs (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel/uncore: Revert "Remove SBOX support for Broadwell server" (Jiri Olsa) [1672651]
-- [kernel] perf/core: Need CAP_SYS_ADMIN to create k/uprobe with perf_event_open() (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Move regs->flags EXACT bit init (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Add Cannon Lake support for RAPL profiling (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Fix PMU read for auto-reload (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel/ds: Introduce ->read() function for auto-reload events and flush the PEBS buffer there (Jiri Olsa) [1672651]
-- [x86] perf/x86: Introduce a ->read() callback in 'struct x86_pmu' (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Fix event update for auto-reload (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Properly save/restore the PMU state in the NMI handler (Jiri Olsa) [1672651]
-- [x86] perf/x86/intel: Fix large period handling on Broadwell CPUs (Jiri Olsa) [1672651]
-
-* Thu Feb 14 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1004.el7]
-- [fs] xfs: don't allow insert-range to shift extents past the maximum offset (Brian Foster) [1613405]
-- [fs] xfs: prevent creating negative-sized file via INSERT_RANGE (Brian Foster) [1613405]
-- [fs] xfs: fix s_maxbytes overflow problems (Brian Foster) [1613405]
-- [fs] xfs: quota: fix missed destroy of qi_tree_lock (Brian Foster) [1613405]
-- [fs] xfs: move xfs_iext_insert tracepoint to report useful information (Brian Foster) [1613405]
-- [fs] xfs: hold xfs_buf locked between shortform->leaf conversion and the addition of an attribute (Brian Foster) [1613405]
-- [fs] xfs: add the ability to join a held buffer to a defer_ops (Brian Foster) [1613405]
-- [fs] xfs: make iomap_begin functions trim iomaps consistently (Brian Foster) [1613405]
-- [fs] xfs: remove "no-allocation" reservations for file creations (Brian Foster) [1613405]
-- [fs] fs: xfs: remove duplicate includes (Brian Foster) [1613405]
-- [fs] xfs: remove unused parameter from xfs_writepage_map (Brian Foster) [1613405]
-- [fs] xfs: ubsan fixes (Brian Foster) [1613405]
-- [fs] xfs: fix leaks on corruption errors in xfs_bmap.c (Brian Foster) [1613405]
-- [fs] xfs: log recovery should replay deferred ops in order (Brian Foster) [1613405]
-- [fs] xfs: always free inline data before resetting inode fork during ifree (Brian Foster) [1613405]
-- [fs] xfs: abstract out dev_t conversions (Brian Foster) [1613405]
-- [fs] xfs: fix memory leak in xfs_iext_free_last_leaf (Brian Foster) [1613405]
-- [fs] xfs: fix type usage (Brian Foster) [1613405]
-- [fs] xfs: fix forgotten rcu read unlock when skipping inode reclaim (Brian Foster) [1613405]
-- [fs] xfs: on failed mount, force-reclaim inodes after unmounting quota controls (Brian Foster) [1613405]
-- [fs] xfs: remove u_int* type usage (Brian Foster) [1613405]
-- [fs] xfs: handle zero entries case in xfs_iext_rebalance_leaf (Brian Foster) [1613405]
-- [fs] xfs: add comments documenting the rebalance algorithm (Brian Foster) [1613405]
-- [fs] xfs: trivial indentation fixup for xfs_iext_remove_node (Brian Foster) [1613405]
-- [fs] xfs: remove a superflous assignment in xfs_iext_remove_node (Brian Foster) [1613405]
-- [fs] xfs: add some comments to xfs_iext_insert/xfs_iext_insert_node (Brian Foster) [1613405]
-- [fs] xfs: fix number of records handling in xfs_iext_split_leaf (Brian Foster) [1613405]
-- [fs] fs/xfs: Remove NULL check before kmem_cache_destroy (Brian Foster) [1613405]
-- [fs] xfs: mark xlog_verify_dest_ptr STATIC (Brian Foster) [1613405]
-- [fs] xfs: mark xlog_recover_check_summary STATIC (Brian Foster) [1613405]
-- [fs] xfs: mark xfs_btree_check_lblock and xfs_btree_check_ptr static (Brian Foster) [1613405]
-- [fs] xfs: remove unreachable error injection code in xfs_qm_dqget (Brian Foster) [1613405]
-- [fs] xfs: remove unused debug counts for xfs_lock_inodes (Brian Foster) [1613405]
-- [fs] xfs: mark xfs_errortag_ktype static (Brian Foster) [1613405]
-- [fs] xfs: always define STATIC to static noinline (Brian Foster) [1613405]
-- [fs] xfs: move xfs_bmbt_irec and xfs_exntst_t to xfs_types.h (Brian Foster) [1613405]
-- [fs] xfs: pass struct xfs_bmbt_irec to xfs_bmbt_validate_extent (Brian Foster) [1613405]
-- [fs] xfs: remove the nr_extents argument to xfs_iext_remove (Brian Foster) [1613405]
-- [fs] xfs: remove the nr_extents argument to xfs_iext_insert (Brian Foster) [1613405]
-- [fs] xfs: use a b+tree for the in-core extent list (Brian Foster) [1613405]
-- [fs] xfs: allow unaligned extent records in xfs_bmbt_disk_set_all (Brian Foster) [1613405]
-- [fs] xfs: remove support for inlining data/extents into the inode fork (Brian Foster) [1613405]
-- [fs] xfs: introduce the xfs_iext_cursor abstraction (Brian Foster) [1613405]
-- [fs] xfs: iterate over extents in xfs_bmap_extents_to_btree (Brian Foster) [1613405]
-- [fs] xfs: iterate over extents in xfs_iextents_copy (Brian Foster) [1613405]
-- [fs] xfs: pass an on-disk extent to xfs_bmbt_validate_extent (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_collapse_extents (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_del_extent_* (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_add_extent_unwritten_real (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_add_extent_hole_real (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_add_extent_hole_delay (Brian Foster) [1613405]
-- [fs] xfs: treat idx as a cursor in xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: remove a duplicate assignment in xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: don't create overlapping extents in xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: convert remaining xfs_sb_version_... checks to bool (Brian Foster) [1613405]
-- [fs] xfs: move error injection tags into their own file (Brian Foster) [1613405]
-- [fs] xfs: remove inode log format typedef (Brian Foster) [1613405]
-- [fs] xfs: remove redundant assignment to variable bit (Brian Foster) [1613405]
-- [fs] xfs: fix unused variable warning in xfs_buf_set_ref() (Brian Foster) [1613405]
-- [fs] xfs: abort dir/attr btree operation if btree is obviously weird (Brian Foster) [1613405]
-- [fs] xfs: refactor extended attribute list operation (Brian Foster) [1613405]
-- [fs] xfs: drain the buffer LRU on mount (Brian Foster) [1613405]
-- [fs] xfs: fix log block underflow during recovery cycle verification (Brian Foster) [1613405]
-- [fs] xfs: more robust recovery xlog buffer validation (Brian Foster) [1613405]
-- [fs] xfs: add a new xfs_iext_lookup_extent_before helper (Brian Foster) [1613405]
-- [fs] xfs: merge xfs_bmap_read_extents into xfs_iread_extents (Brian Foster) [1613405]
-- [fs] xfs: add asserts for the mmap lock in xfs_{insert, collapse}_file_space (Brian Foster) [1613405]
-- [fs] xfs: rewrite xfs_bmap_first_unused to make better use of xfs_iext_get_extent (Brian Foster) [1613405]
-- [fs] xfs: don't rely on extent indices in xfs_bmap_insert_extents (Brian Foster) [1613405]
-- [fs] xfs: don't rely on extent indices in xfs_bmap_collapse_extents (Brian Foster) [1613405]
-- [fs] xfs: update got in xfs_bmap_shift_update_extent (Brian Foster) [1613405]
-- [fs] xfs: remove xfs_bmse_shift_one (Brian Foster) [1613405]
-- [fs] xfs: split xfs_bmap_shift_extents (Brian Foster) [1613405]
-- [fs] xfs: remove XFS_BMAP_MAX_SHIFT_EXTENTS (Brian Foster) [1613405]
-- [fs] xfs: inline xfs_shift_file_space into callers (Brian Foster) [1613405]
-- [fs] xfs: remove if_rdev (Brian Foster) [1613405]
-- [fs] xfs: remove the never fully implemented UUID fork format (Brian Foster) [1613405]
-- [fs] xfs: remove XFS_BMAP_TRACE_EXLIST (Brian Foster) [1613405]
-- [fs] xfs: move pre/post-bmap tracing into xfs_iext_update_extent (Brian Foster) [1613405]
-- [fs] xfs: remove post-bmap tracing in xfs_bmap_local_to_extents (Brian Foster) [1613405]
-- [fs] xfs: make better use of the 'state' variable in xfs_bmap_del_extent_real (Brian Foster) [1613405]
-- [fs] xfs: add a xfs_bmap_fork_to_state helper (Brian Foster) [1613405]
-- [fs] xfs: create inode pointer verifiers (Brian Foster) [1613405]
-- [fs] xfs: refactor btree block header checking functions (Brian Foster) [1613405]
-- [fs] xfs: refactor btree pointer checks (Brian Foster) [1613405]
-- [fs] xfs: create block pointer check functions (Brian Foster) [1613405]
-- [fs] xfs: return a distinct error code value for IGET_INCORE cache misses (Brian Foster) [1613405]
-- [fs] xfs: buffer lru reference count error injection tag (Brian Foster) [1613405]
-- [fs] xfs: fail if xattr inactivation hits a hole (Brian Foster) [1613405]
-- [fs] xfs: check kthread_should_stop() after the setting of task state (Brian Foster) [1613405]
-- [fs] xfs: remove xfs_bmbt_get_state (Brian Foster) [1613405]
-- [fs] xfs: remove all xfs_bmbt_set_* helpers except for xfs_bmbt_set_all (Brian Foster) [1613405]
-- [fs] xfs: replace xfs_bmbt_lookup_ge with xfs_bmbt_lookup_first (Brian Foster) [1613405]
-- [fs] xfs: pass a struct xfs_bmbt_irec to xfs_bmbt_lookup_eq (Brian Foster) [1613405]
-- [fs] xfs: pass a struct xfs_bmbt_irec to xfs_bmbt_update (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bmap_add_extent_unwritten_real (Brian Foster) [1613405]
-- [fs] xfs: refactor delalloc accounting in xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bmap_add_extent_delay_real (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bmap_add_extent_hole_real (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bmap_add_extent_hole_delay (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_del_extent_real (Brian Foster) [1613405]
-- [fs] xfs: use the state defines in xfs_bmap_del_extent_real (Brian Foster) [1613405]
-- [fs] xfs: use correct state defines in xfs_bmap_del_extent_{cow, delay} (Brian Foster) [1613405]
-- [fs] xfs: move some more code into xfs_bmap_del_extent_real (Brian Foster) [1613405]
-- [fs] xfs: use xfs_bmap_del_extent_delay for the data fork as well (Brian Foster) [1613405]
-- [fs] xfs: rename bno to end in __xfs_bunmapi (Brian Foster) [1613405]
-- [fs] xfs: don't set XFS_BTCUR_BPRV_WASDEL in xfs_bunmapi (Brian Foster) [1613405]
-- [fs] xfs: use xfs_iext_get_extent instead of open coding it (Brian Foster) [1613405]
-- [fs] xfs: fix incorrect extent state in xfs_bmap_add_extent_unwritten_real (Brian Foster) [1613405]
-- [fs] xfs: simplify the xfs_getbmap interface (Brian Foster) [1613405]
-- [fs] xfs: rewrite getbmap using the xfs_iext_* helpers (Brian Foster) [1613405]
-- [fs] xfs: fix bmv_count confusion w/ shared extents (Brian Foster) [1613405]
-- [fs] xfs: teach get_bmapx about shared extents and the CoW fork (Brian Foster) [1613405]
-- [fs] xfs: cancel dirty pages on invalidation (Brian Foster) [1613405]
-- [fs] xfs: handle error if xfs_btree_get_bufs fails (Brian Foster) [1613405]
-- [fs] xfs: Fix bool initialization/comparison (Brian Foster) [1613405]
-- [fs] xfs: move more RT specific code under CONFIG_XFS_RT (Brian Foster) [1613405]
-- [fs] xfs: Don't log uninitialised fields in inode structures (Brian Foster) [1613405]
-- [fs] xfs: update i_size after unwritten conversion in dio completion (Brian Foster) [1613405]
-- [fs] xfs: remove redundant re-initialization of total_nr_pages (Brian Foster) [1613405]
-- [fs] xfs: Output warning message when discard option was enabled even though the device does not support discard (Brian Foster) [1613405]
-- [fs] xfs: kill meaningless variable 'zero' (Brian Foster) [1613405]
-- [fs] fs/xfs: Use pS printk format for direct addresses (Brian Foster) [1613405]
-- [fs] xfs: XFS_IS_REALTIME_INODE() should be false if no rt device present (Brian Foster) [1613405]
-- [fs] xfs: use kmem_free to free return value of kmem_zalloc (Brian Foster) [1613405]
-- [fs] xfs: open code end_buffer_async_write in xfs_finish_page_writeback (Brian Foster) [1613405]
-- [fs] xfs: fix compiler warnings (Brian Foster) [1613405]
-- [fs] xfs: fix incorrect log_flushed on fsync (Brian Foster) [1613405]
-- [fs] xfs: replace xfs_qm_get_rtblks with a direct call to xfs_bmap_count_leaves (Brian Foster) [1613405]
-- [fs] xfs: rewrite xfs_bmap_count_leaves using xfs_iext_get_extent (Brian Foster) [1613405]
-- [fs] xfs: use xfs_iext_*_extent helpers in xfs_bmap_split_extent_at (Brian Foster) [1613405]
-- [fs] xfs: add missing bmap cancel calls in error paths (Brian Foster) [1613405]
-- [fs] xfs: use xfs_iext_*_extent helpers in xfs_bmap_shift_extents (Brian Foster) [1613405]
-- [fs] xfs: move some code around inside xfs_bmap_shift_extents (Brian Foster) [1613405]
-- [fs] xfs: use xfs_iext_get_extent in xfs_bmap_first_unused (Brian Foster) [1613405]
-- [fs] xfs: switch xfs_bmap_local_to_extents to use xfs_iext_insert (Brian Foster) [1613405]
-- [fs] xfs: add a xfs_iext_update_extent helper (Brian Foster) [1613405]
-- [fs] xfs: relog dirty buffers during swapext bmbt owner change (Brian Foster) [1613405]
-- [fs] xfs: disallow marking previously dirty buffers as ordered (Brian Foster) [1613405]
-- [fs] xfs: move bmbt owner change to last step of extent swap (Brian Foster) [1613405]
-- [fs] xfs: skip bmbt block ino validation during owner change (Brian Foster) [1613405]
-- [fs] xfs: don't log dirty ranges for ordered buffers (Brian Foster) [1613405]
-- [fs] xfs: refactor buffer logging into buffer dirtying helper (Brian Foster) [1613405]
-- [fs] xfs: ordered buffer log items are never formatted (Brian Foster) [1613405]
-- [fs] xfs: remove unnecessary dirty bli format check for ordered bufs (Brian Foster) [1613405]
-- [fs] xfs: open-code xfs_buf_item_dirty() (Brian Foster) [1613405]
-- [fs] xfs: remove the ip argument to xfs_defer_finish (Brian Foster) [1613405]
-- [fs] xfs: rename xfs_defer_join to xfs_defer_ijoin (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_trans_roll (Brian Foster) [1613405]
-- [fs] xfs: check for race with xfs_reclaim_inode() in xfs_ifree_cluster() (Brian Foster) [1613405]
-- [fs] xfs: add log recovery tracepoint for head/tail (Brian Foster) [1613405]
-- [fs] xfs: handle -EFSCORRUPTED during head/tail verification (Brian Foster) [1613405]
-- [fs] xfs: add log item pinning error injection tag (Brian Foster) [1613405]
-- [fs] xfs: fix log recovery corruption error due to tail overwrite (Brian Foster) [1613405]
-- [fs] xfs: always verify the log tail during recovery (Brian Foster) [1613405]
-- [fs] xfs: fix recovery failure when log record header wraps log end (Brian Foster) [1613405]
-- [fs] buffer: set errors in mapping at the time that the error occurs (Brian Foster) [1613405]
-- [fs] xfs: refactor xfs_bunmapi_cow (Brian Foster) [1613405]
-- [fs] xfs: provide helper for counting extents from if_bytes (Brian Foster) [1613405]
-- [fs] xfs: don't reserve blocks for right shift transactions (Brian Foster) [1613405]
-- [fs] xfs: xfs_shift_file_space can be static (Brian Foster) [1613405]
-- [fs] xfs: Add support FALLOC_FL_INSERT_RANGE for fallocate (Brian Foster) [1613405]
-- [fs] fs: Add support FALLOC_FL_INSERT_RANGE for fallocate (Brian Foster) [1613405]
-
-* Wed Feb 13 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1003.el7]
-- [nvdimm] libnvdimm, pmem: Fix badblocks population for 'raw' namespaces (Frank Ramsay) [1672302]
-- [scsi] qla2xxx: Add new FC-NVMe enable BIT to enable FC-NVMe feature (Himanshu Madhani) [1671570]
-- [kernel] fs: handle kABI breakage regarding IMA enablement on s390x and ppc64 arches (Bruno Eduardo de Oliveira Meneguele) [1636601]
-- [s390] scsi: zfcp: fix posting too many status read buffers leading to adapter shutdown (Hendrik Brueckner) [1665154]
-- [crypto] chelsio - remove set but not used variables 'adap' (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - check set_msg_len overflow in generate_b0 (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - Fix wrong error counter increments (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - Reset counters on cxgb4 Detach (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - Handle PCI shutdown event (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - cleanup:send addr as value in function argument (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - Use same value for both channel in single WR (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - remove set but not used variable 'kctx_len' (Arjun Vynipadath) [1642432]
-- [crypto] chelsio: use skb_sec_path helper (Arjun Vynipadath) [1642432]
-- [crypto] chcr - ESN for Inline IPSec Tx (Arjun Vynipadath) [1642432]
-- [crypto] chcr - small packet Tx stalls the queue (Arjun Vynipadath) [1642432]
-- [crypto] chelsio - clean up various indentation issues (Arjun Vynipadath) [1642432]
-
-* Sat Feb 09 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1002.el7]
-- [net] ptp: uapi: change _IOW to IOWR in PTP_SYS_OFFSET_EXTENDED definition (Hangbin Liu) [1643974]
-- [net] ptp: check that rsv field is zero in struct ptp_sys_offset_extended (Hangbin Liu) [1643974]
-- [net] ptp: deprecate gettime64() in favor of gettimex64() (Hangbin Liu) [1643974]
-- [net] ptp: add PTP_SYS_OFFSET_EXTENDED ioctl (Hangbin Liu) [1643974]
-- [net] ptp: check gettime64 return code in PTP_SYS_OFFSET ioctl (Hangbin Liu) [1643974]
-- [net] ptp: reorder declarations in ptp_ioctl() (Hangbin Liu) [1643974]
-- [net] Add netif_is_vxlan() (Ivan Vecera) [1668019]
-- [net] vxlan: Export address checking functions (Ivan Vecera) [1668019]
-- [net] vxlan: Remove duplicated include from vxlan.h (Ivan Vecera) [1668019]
-- [net] sched: refactor flower walk to iterate over idr (Ivan Vecera) [1655892 1614816]
-- [net] sched: cls_flower: allocate mask dynamically in fl_change() (Ivan Vecera) [1666481]
-- [net] sched: cls_flower: Remove old entries from rhashtable (Ivan Vecera) [1666481]
-- [net] sched: cls_flower: Reject duplicated rules also under skip_sw (Ivan Vecera) [1666481]
-- [net] cls_flower: fix use after free in flower S/W path (Ivan Vecera) [1666481]
-- [net] cls_flower: Fix comparing of old filter mask with new filter (Ivan Vecera) [1666481]
-- [net] cls_flower: Fix missing free of rhashtable (Ivan Vecera) [1666481]
-- [net] net_sched: switch to rcu_work (Ivan Vecera) [1666481]
-- [net] cls_flower: Support multiple masks per priority (Ivan Vecera) [1666481]
-- [kernel] rcu, workqueue: Implement rcu_work (Ivan Vecera) [1666481]
-- [net] cls_bpf: don't decrement net's refcount when offload fails (Ivan Vecera) [1666481]
-- [net] cls_bpf: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1666481]
-- [net] bpf, cls: consolidate prog deletion path (Ivan Vecera) [1666481]
-
-* Fri Feb 08 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1001.el7]
-- [drm] drm/nouveau/kms/nv50-: also flush fb writes when rewinding push buffer (Ben Skeggs) [1669098]
-- [netdrv] net: ena: allow the driver to work with small number of msix vectors (John Linville) [1645282]
-- [netdrv] net/ena: switch to pci_alloc_irq_vectors (John Linville) [1645282]
-- [infiniband] RDMA/mthca: Clear QP objects during their allocation (Honggang Li) [1669490]
-- [nvme] nvme-rdma: fix possible double free of controller async event buffer (David Milburn) [1659532]
-- [nvme] nvme-rdma: fix possible free of a non-allocated async event buffer (David Milburn) [1659532]
-- [nvme] nvme-rdma: stop admin queue before freeing it (David Milburn) [1659532]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1641108]
-- [scsi] hpsa: switch to generic DMA API (Joseph Szczypek) [1641108]
-- [scsi] hpsa: treewide: treewide: kzalloc() -> kcalloc() (Joseph Szczypek) [1641108]
-- [scsi] hpsa: treewide: kmalloc() -> kmalloc_array() (Joseph Szczypek) [1641108]
-- [gpu] qxl: Make sure qxl_cursor memory is pinned (Gerd Hoffmann) [1600344]
-- [gpu] qxl: Remove unused qxl_bo_pin arguments (Gerd Hoffmann) [1600344]
-- [gpu] qxl: No need for NULL check before calling qxl_bo_unref() (Gerd Hoffmann) [1600344]
-- [scsi] mpt3sas: remove support for Andromeda (Tomas Henzl) [1667370]
-- [scsi] mpt3sas: mark Aero controllers as tech preview (Tomas Henzl) [1660791]
-- [scsi] megaraid_sas: mark Aero controllers as tech preview (Tomas Henzl) [1660289]
-- [scsi] megaraid: fix out-of-bound array accesses (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: driver version update (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: Use 63-bit DMA addressing (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: add retry logic in megasas_readl (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: changes to function prototypes (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: Introduce new Aero adapter type (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: Fix Ventura series based checks (Tomas Henzl) [1660289]
-- [scsi] megaraid_sas: NULL check before some freeing functions is not needed (Tomas Henzl) [1660289]
-- [scsi] mpt3sas: mpt3sas_scsih: Mark expected switch fall-through (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: fix memory ordering on 64bit writes (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: Update driver version to 27.101.00.00 (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: Replace readl with ioc->base_readl (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: Add separate function for aero doorbell reads (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: Introduce flag for aero based controllers (Tomas Henzl) [1660791]
-- [scsi] mpt3sas: fix spelling mistake "manufaucturing" -> "manufacturing" (Tomas Henzl) [1660791]
-- [scsi] be2iscsi: fix spelling mistake "Retreiving" -> "Retrieving" (Maurizio Lombardi) [1642657]
-- [scsi] be2iscsi: remove unused variable dmsg (Maurizio Lombardi) [1642657]
-- [scsi] be2iscsi: Update copyright (Maurizio Lombardi) [1642657]
-- [scsi] be2iscsi: Include null char in SET_HOST_DATA (Maurizio Lombardi) [1642657]
-- [scsi] be2iscsi: Use kasprintf (Maurizio Lombardi) [1642657]
-- [s390] setup: set control program code via diag 318 (Thomas Huth) [1642855]
-- [uapi] rdma: uapi: Add missing header files to Kbuild file (Kamal Heib) [1669949]
-
-* Thu Feb 07 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-1000.el7]
-- [infiniband] iw_cxgb4: Check for send WR also while posting write with completion WR (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/iw_cxgb4: Fix the unchecked ep dereference (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: Remove a set-but-not-used variable (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: only reconnect with MPAv1 if the peer aborts (Arjun Vynipadath) [1642419]
-- [infiniband] hw/cxgb4/qp.c: Use dma_zalloc_coherent (Arjun Vynipadath) [1642419]
-- [infiniband] cxgb4: use __vlan_hwaccel helpers (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: Use proper enumerated type in c4iw_bar2_addrs (Arjun Vynipadath) [1642419]
-- [infiniband] pci: Remove pci_unmap_addr() wrappers for DMA API (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: remove redundant null pointer check before kfree_skb (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: only allow 1 flush on user qps (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: pass window scale in flowc work request (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: Support FW write completion WR (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: RDMA write with immediate support (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: fix some info leaks (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: Simplify a structure initialization (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: Fix SRQ endianness annotations (Arjun Vynipadath) [1642419]
-- [infiniband] rdma/cxgb4: Restore the dropped uninitialized_var (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: remove duplicate memcpy() in c4iw_create_listen() (Arjun Vynipadath) [1642419]
-- [infiniband] iw_cxgb4: add INFINIBAND_ADDR_TRANS dependency (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: provide detailed driver-specific MR information (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: provide detailed driver-specific CQ information (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: provide detailed provider-specific CM_ID information (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: remove wr_id attributes (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: fix uninitialized variable warnings (Arjun Vynipadath) [1597594 1642419]
-- [infiniband] iw_cxgb4: dump detailed driver-specific QP information (Arjun Vynipadath) [1597594 1642419]
-- [netdrv] cxgb4/cxgb4vf: Link management changes (Arjun Vynipadath) [1642434 1642412]
-- [netdrv] cxgb4/l2t: Use struct_size() in kvzalloc() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix various indentation issues (Arjun Vynipadath) [1642412]
-- [netdrv] chelsio: Add a missing check on cudg_get_buffer (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove DEFINE_SIMPLE_DEBUGFS_FILE() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: number of VFs supported is not always 16 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove set but not used variables 'multitrc, speed' (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: use new fw interface to get the VIN and smt index (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/cxgb4vf: Fix mac_hlist initialization and free (Arjun Vynipadath) [1642434 1642412]
-- [netdrv] cxgb4: free mac_hlist properly (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Remove SGE_HOST_PAGE_SIZE dependency on page size (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix thermal zone build error (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4vf: fix memleak in mac_hlist initialization (Arjun Vynipadath) [1642434]
-- [netdrv] cxgb4vf: free mac_hlist properly (Arjun Vynipadath) [1642434]
-- [netdrv] cxgb4: Add new T6 PCI device ids 0x608a (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix the error path of cxgb4_uld_register() (Arjun Vynipadath) [1642412]
-- [netdrv] crypto: chelsio - Update ntx queue received from cxgb4 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix thermal configuration dependencies (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add thermal zone support (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: use FW_PORT_ACTION_L1_CFG32 for 32 bit capability (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove the unneeded locks (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Use proper enum in IEEE_FAUX_SYNC (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Use proper enum in cxgb4_dcb_handle_fw_update (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove duplicated include from cxgb4_main.c (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: update supported DCB version (Arjun Vynipadath) [1668570 1642412]
-- [netdrv] cxgb4: add per rx-queue counter for packet errors (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Fix endianness issue in t4_fwcache() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix abort_req_rss6 struct (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove redundant assignment to vlan_cmd.dropnovlan_fm (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: impose mandatory VLAN usage when non-zero TAG ID (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect hardware queue descriptors (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: when max_tx_rate is 0 disable tx rate limiting (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add new T5 PCI device ids 0x50af and 0x50b0 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove set but not used variable 'spd' (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: add support to display DCB info (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/t4_hw: mark expected switch fall-throughs (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/l2t: Mark expected switch fall-through (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: mk_act_open_req() buggers ->{local, peer}_ip on big-endian hosts (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: fix endian to test F_FW_PORT_CMD_DCBXDIS32 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: print ULD queue information managed by LLD (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: move Tx/Rx free pages collection to common code (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect number of free PSTRUCT page pointers (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: display number of rx and tx pages free (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect ASIC LA dumps from ULP TX (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: expose stats fetched from firmware via debugfs (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: remove stats fetched from firmware (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: specify IQTYPE in fw_iq_cmd (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Fix the condition to check if the card is T5 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add support to read actual provisioned resources (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add new T5 PCI device id 0x50ae (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add flag tc_flower_initialized (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: convert flower table to use rhashtable (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: when disabling dcb set txq dcb priority to 0 (Arjun Vynipadath) [1668570 1642412]
-- [netdrv] chelsio: Use zeroing memory allocator instead of allocator/memset (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Report PCIe link properties with pcie_print_link_status() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: clean up init_one (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add new T6 device ids (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect SGE PF/VF queue map (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: update LE-TCAM collection for T6 (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: add tc flower match support for tunnel VNI (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: collect hardware dump in second kernel (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Add new T5 device id (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: add new T5 device id's (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4vf: display pause settings (Arjun Vynipadath) [1642434]
-- [netdrv] cxgb4: LLD driver changes to support TLS (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: Inline TLS FW Interface (Arjun Vynipadath) [1642412]
-- [netdrv] libcxgb: replace vmalloc and memset with vzalloc (Arjun Vynipadath) [1642412]
-- [netdrv] libcxgb, cxgb4: use __skb_put_zero to simplfy code (Arjun Vynipadath) [1642412]
-- [netdrv] libcxgb: make skb_put & friends return void pointers (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: kmalloc() -> kmalloc_array() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: kzalloc() -> kcalloc() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: kzalloc_node() -> kcalloc_node() (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/cxgb4vf: Use octal not symbolic permissions (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4: use tc_cls_can_offload_and_chain0() (Arjun Vynipadath) [1642412]
-- [netdrv] locking/atomics: coccinelle/cxgb4: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE() (Arjun Vynipadath) [1642412]
-- [netdrv] convert clip_entry.refcnt from atomic_t to refcount_t (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4vf: make a couple of functions static (Arjun Vynipadath) [1642434]
-- [netdrv] cxgb4: Update comment for min_mtu (Arjun Vynipadath) [1642412]
-- [netdrv] cxgb4/cxgb4vf: use net core MTU range checking in more drivers (Arjun Vynipadath) [1642434 1642412]
-
-* Mon Feb 04 2019 Jan Stancek <jstancek@redhat.com> [3.10.0-999.el7]
-- [fs] xfs: fix error handling in xfs_bmap_extents_to_btree (Bill O'Donnell) [1602037] {CVE-2018-13095}
-- [fs] xfs: fix a null pointer dereference in xfs_bmap_extents_to_btree (Bill O'Donnell) [1602037] {CVE-2018-13095}
-- [fs] xfs: set format back to extents if xfs_bmap_extents_to_btree (Bill O'Donnell) [1602037] {CVE-2018-13095}
-- [fs] Enable CONFIG_PROC_VMCORE_DEVICE_DUMP by default (Kairui Song) [1642463]
-- [fs] vmcore: move get_vmcore_size out of __init (Kairui Song) [1642463]
-- [fs] vmcore: append device dumps to vmcore as elf notes (Kairui Song) [1642463]
-- [fs] vmcore: add API to collect hardware dump in second kernel (Kairui Song) [1642463]
-- [fs] cifs: connect to servername instead of IP for IPC$ share (Leif Sahlberg) [1647844]
-- [fs] autofs: improve ioctl sbi checks (Ian Kent) [1657103]
-- [fs] revert "[fs] nfs: Don't write back further requests if there is a pending write error" (Benjamin Coddington) [1656674]
-- [documentation] proc.txt: Add 2 missing fields for /proc/<pid>/status (Joel Savitz) [1607437]
-- [fs] sunrpc: Prevent duplicate XID allocation (Kamal Heib) [1662113]
-- [fs] lockd: Show pid of lockd for remote locks (Benjamin Coddington) [1644574]
-- [fs] xfs: don't call xfs_da_shrink_inode with NULL bp (Bill O'Donnell) [1601938] {CVE-2018-13094}
-- [fs] xfs: validate cached inodes are free when allocated (Bill O'Donnell) [1601780] {CVE-2018-13093}
-- [fs] nfs: Fix dentry revalidation on NFSv4 lookup ("J. Bruce Fields") [1648482]
-- [fs] rbd: avoid corruption on partially completed bios (Ilya Dryomov) [1613493]
-- [fs] NFSv4.0 fix client reference leak in callback (Steve Dickson) [1593255]
-
-* Sat Feb 02 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-998.el7]
-- [net] ipv6: suppress sparse warnings in IP6_ECN_set_ce() (Davide Caratti) [1657877]
-- [net] ipv6: update skb->csum when CE mark is propagated (Davide Caratti) [1657877]
-- [net] xfrm6: Fix IPv6 ECN decapsulation (Davide Caratti) [1657877]
-- [net] tcp: make new names of tcp isn generation functions available to drivers (Florian Westphal) [1658272]
-- [net] core: add __netdev_sent_queue as variant of __netdev_tx_sent_queue (Ivan Vecera) [1660907]
-- [net] netfilter: xt_socket: check sk before checking for netns. (Flavio Leitner) [1554261]
-- [net] skbuff: preserve sock reference when scrubbing the skb. (Flavio Leitner) [1554261]
-- [net] netfilter: check if the socket netns is correct. (Flavio Leitner) [1554261]
-- [net] netfilter: nf_tables: use hook state from xt_action_param structure (Flavio Leitner) [1554261]
-- [net] netfilter: Pass net into nf_xfrm_me_harder (Flavio Leitner) [1554261]
-- [net] netfilter: nf_conntrack: Add a struct net parameter to l4_pkt_to_tuple (Flavio Leitner) [1554261]
-- [net] netfilter: x_tables: move hook state into xt_action_param structure (Flavio Leitner) [1554261]
-- [net] netfilter: x_tables: fix cgroup matching on non-full sks (Flavio Leitner) [1554261]
-- [net] netfilter: Pass net to nf_dup_ipv4 and nf_dup_ipv6 (Flavio Leitner) [1554261]
-- [net] netfilter: nf_tables: Use pkt->net instead of computing net from the passed net_devices (Flavio Leitner) [1554261]
-- [net] netfilter: nf_tables: Pass struct net in nft_pktinfo (Flavio Leitner) [1554261]
-- [net] net_sched: em_meta: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] ipvs: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] netfilter: use skb_to_full_sk in ip_route_me_harder (Flavio Leitner) [1554261]
-- [net] use skb_to_full_sk() in skb_update_prio() (Flavio Leitner) [1554261]
-- [net] sched: cls_flow: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] netfilter: xt_owner: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] netfilter: nft_meta: use skb_to_full_sk() helper (Flavio Leitner) [1554261]
-- [net] xfrm: take care of request sockets (Flavio Leitner) [1554261]
-- [net] inet: constify ip_route_output_flow() socket argument (Flavio Leitner) [1554261]
-- [net] add skb_to_full_sk() helper and use it in selinux_netlbl_skbuff_setsid() (Flavio Leitner) [1554261]
-- [net] netfilter: x_tables: Use par->net instead of computing from the passed net devices (Flavio Leitner) [1554261]
-- [net] netfilter: x_tables: Pass struct net in xt_action_param (Flavio Leitner) [1554261]
-- [net] netfilter: ebtables: Simplify the arguments to ebt_do_table (Flavio Leitner) [1554261]
-- [net] netfilter: Store net in nf_hook_state (Flavio Leitner) [1554261]
-- [net] netfilter: Per network namespace netfilter hooks. (Flavio Leitner) [1554261]
-- [net] netfilter: don't pull include/linux/netfilter.h from netns headers (Flavio Leitner) [1554261]
-- [net] include missing headers in net/net_namespace.h (Flavio Leitner) [1554261]
-- [net] netfilter: nat: limit port clash resolution attempts (Florian Westphal) [1654777]
-- [net] netfilter: nat: remove l4 protocol port rovers (Florian Westphal) [1654777]
-- [net] netfilter: nat: cope with negative port range (Florian Westphal) [1654777]
-- [net] gro_cell: add napi_disable in gro_cells_destroy (Lorenzo Bianconi) [1656047]
-- [net] add napi_if_scheduled_mark_missed (Petr Oros) [1647135]
-- [net] ethtool: don't allow disabling queues with umem installed (Petr Oros) [1647135]
-- [net] xsk: add a simple buffer reuse queue (Petr Oros) [1647135]
-- [net] xsk: i40e: get rid of useless struct xdp_umem_props (Petr Oros) [1647135]
-- [net] xsk: expose xdp_umem_get_{data, dma} to drivers (Petr Oros) [1647135]
-- [net] xsk: fix potential race in SKB TX completion code (Petr Oros) [1647135]
-- [net] xsk: Fix umem fill/completion queue mmap on 32-bit (Petr Oros) [1647135]
-- [net] xsk: wire upp Tx zero-copy functions (Petr Oros) [1647135]
-- [net] xsk: add zero-copy support for Rx (Petr Oros) [1647135]
-- [net] xsk: introduce xdp_umem_page (Petr Oros) [1647135]
-- [net] xsk: moved struct xdp_umem definition (Petr Oros) [1647135]
-- [net] xsk: new descriptor addressing scheme (Petr Oros) [1647135]
-- [net] xsk: remove explicit ring structure from uapi (Petr Oros) [1647135]
-- [net] xsk: fill hole in struct sockaddr_xdp (Petr Oros) [1647135]
-- [net] xsk: clean up SPDX headers (Petr Oros) [1647135]
-- [net] xsk: statistics support (Petr Oros) [1647135]
-- [net] xsk: add Tx queue setup and mmap support (Petr Oros) [1647135]
-- [net] xsk: add umem completion queue support and mmap (Petr Oros) [1647135]
-- [net] bpf: introduce new bpf AF_XDP map type BPF_MAP_TYPE_XSKMAP (Petr Oros) [1647135]
-- [net] xsk: add Rx receive functions and poll support (Petr Oros) [1647135]
-- [net] xsk: add support for bind for Rx (Petr Oros) [1647135]
-- [net] xsk: add Rx queue setup and mmap support (Petr Oros) [1647135]
-- [net] xsk: add umem fill queue support and mmap (Petr Oros) [1647135]
-- [net] xsk: add user memory registration support sockopt (Petr Oros) [1647135]
-- [net] added netdevice operation for Tx (Petr Oros) [1647135]
-- [net] xdp: export xdp_rxq_info_unreg_mem_model (Petr Oros) [1647135]
-- [net] xdp: added bpf_netdev_command XDP_{QUERY, SETUP}_XSK_UMEM (Petr Oros) [1647135]
-- [net] xdp: add MEM_TYPE_ZERO_COPY (Petr Oros) [1647135]
-- [net] xdp: don't make drivers report attachment mode (Petr Oros) [1647135]
-- [net] xdp: add flags argument to ndo_xdp_xmit API (Petr Oros) [1647135]
-- [net] xdp: change ndo_xdp_xmit API to support bulking (Petr Oros) [1647135]
-- [net] xdp: transition into using xdp_frame for ndo_xdp_xmit (Petr Oros) [1647135]
-- [net] xdp: generic XDP handling of xdp_rxq_info (Petr Oros) [1647135]
-- [net] xdp: introduce xdp_return_frame_rx_napi (Petr Oros) [1647135]
-- [net] bpf: add meta pointer for direct access (Petr Oros) [1647135]
-- [net] sched: cls_flower: Support matching on ip tos and ttl for tunnels (Ivan Vecera) [1653404]
-- flow_dissector: Dissect tos and ttl from the tunnel info (Ivan Vecera) [1653404]
-- [net] sched: tunnel_key: Allow to set tos and ttl for tc based ip tunnels (Ivan Vecera) [1653404]
-- [net] flow_dissector: dissect tunnel info outside __skb_flow_dissect() (Ivan Vecera) [1653404]
-- [net] flow_dissector: dissect tunnel info (Ivan Vecera) [1653404]
-- [net] dst: Make skb parameter of skb{metadata_dst, tunnel_info}() const (Ivan Vecera) [1653404]
-- [net] sched: act_tunnel_key: fix memory leak in case of action replace (Ivan Vecera) [1656312]
-- [net] sched: fix NULL dereference in the error path of tunnel_key_init() (Ivan Vecera) [1656312]
-- [net] sched: properly cancel netlink dump on failure (Ivan Vecera) [1656312]
-- [net] sched: fix memory leak in act_tunnel_key_init() (Ivan Vecera) [1656312]
-- [net] sched: add tunnel option support to act_tunnel_key (Ivan Vecera) [1656312]
-- [net] check tunnel option type in tunnel flags (Ivan Vecera) [1656312]
-- [net] ip_tunnel, bpf: ip_tunnel_info_opts_{get, set} depends on CONFIG_INET (Ivan Vecera) [1656312]
-- [net] sched: act_tunnel_key: add extended ack support (Ivan Vecera) [1656312]
-- [net] netlink: implement RHEL specific implementation of NL_SET_ERR_MSG* (Ivan Vecera) [1656312]
-- [net] sched: act_tunnel_key: disambiguate metadata dst error cases (Ivan Vecera) [1656312]
-
-* Sat Feb 02 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-997.el7]
-- [netdrv] fm10k: bump driver version to match out-of-tree release (Neil Horman) [1637728]
-- [netdrv] fm10k: add missing device IDs to the upstream driver (Neil Horman) [1637728]
-- [netdrv] fm10k: ensure completer aborts are marked as non-fatal after a resume (Neil Horman) [1637728]
-- [netdrv] fm10k: fix SM mailbox full condition (Neil Horman) [1637728]
-- [netdrv] pci/aer: Remove pci_cleanup_aer_uncorrect_error_status() calls (Neil Horman) [1637728]
-- [netdrv] fm10k: remove ndo_poll_controller (Neil Horman) [1637728]
-- [netdrv] intel-ethernet: use correct module license (Neil Horman) [1637728]
-- [netdrv] fm10k: don't protect fm10k_queue_mac_request by fm10k_host_mbx_ready (Neil Horman) [1637728]
-- [netdrv] fm10k: warn if the stat size is unknown (Neil Horman) [1637728]
-- [netdrv] fm10k: use macro to avoid passing the array and size separately (Neil Horman) [1637728]
-- [netdrv] fm10k: use variadic arguments to fm10k_add_stat_strings (Neil Horman) [1637728]
-- [netdrv] fm10k: reduce duplicate fm10k_stat macro code (Neil Horman) [1637728]
-- [netdrv] fm10k: setup VLANs for l2 accelerated macvlan interfaces (Neil Horman) [1637728]
-- [netdrv] intel: Cleanup the copyright/license headers (Neil Horman) [1637728]
-- [netdrv] ixgbe/fm10k: Only support macvlan offload for types that support destination filtering (Neil Horman) [1637728]
-- [netdrv] ixgbe/fm10k: Drop tracking stats for macvlan broadcast/multicast (Neil Horman) [1637728]
-- [netdrv] macvlan: Use software path for offloaded local, broadcast, and multicast traffic (Neil Horman) [1637728]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Neil Horman) [1637728]
-- [netdrv] fm10k: bump version number (Neil Horman) [1637728]
-- [netdrv] fm10k: fix incorrect warning for function prototype (Neil Horman) [1637728]
-- [netdrv] fm10k: fix function doxygen comments (Neil Horman) [1637728]
-- [netdrv] fm10k: clarify action when updating the VLAN table (Neil Horman) [1637728]
-- [netdrv] fm10k: correct typo in fm10k_pf.c (Neil Horman) [1637728]
-- [netdrv] fm10k: don't assume VLAN 1 is enabled (Neil Horman) [1637728]
-- [netdrv] fm10k: stop adding VLAN 0 to the VLAN table (Neil Horman) [1637728]
-- [netdrv] fm10k: fix "failed to kill vid" message for VF (Neil Horman) [1637728]
-- [netdrv] fm10k: cleanup unnecessary parenthesis in fm10k_iov.c (Neil Horman) [1637728]
-- [netdrv] fm10k: Fix configuration for macvlan offload (Neil Horman) [1637728]
-- [netdrv] fm10k: mark PM functions as __maybe_unused (Neil Horman) [1637728]
-- [netdrv] ixgbe/fm10k: Record macvlan stats instead of Rx queue for macvlan offloaded rings (Neil Horman) [1637728]
-- [netdrv] bonding: count master 3ad stats separately (Jarod Wilson) [1657393]
-- [netdrv] bonding: add support for xstats and export 3ad stats (Jarod Wilson) [1657393]
-- [netdrv] bonding: add 3ad stats (Jarod Wilson) [1657393]
-- [netdrv] bonding: 3ad: remove bond_3ad_rx_indication's length argument (Jarod Wilson) [1657393]
-- [netdrv] bonding: adjust style of bond_3ad_rx_indication (Jarod Wilson) [1657393]
-- [netdrv] bonding: fix indentation issues, remove extra spaces (Jarod Wilson) [1657393]
-- [netdrv] bonding: Give bond_set_dev_addr() a return value (Jarod Wilson) [1657393]
-- [netdrv] bonding: convert to DEFINE_SHOW_ATTRIBUTE (Jarod Wilson) [1657393]
-- [netdrv] bonding: fix 802.3ad state sent to partner when unbinding slave (Jarod Wilson) [1657393]
-- [netdrv] bonding: fix length of actor system (Jarod Wilson) [1657393]
-- [netdrv] bonding: fix warning message (Jarod Wilson) [1657393]
-- [netdrv] bonding: avoid possible dead-lock (Jarod Wilson) [1657393]
-- [netdrv] bonding: pass link-local packets to bonding master also (Jarod Wilson) [1657393]
-- [netdrv] bonding: don't cast const buf in sysfs store (Jarod Wilson) [1657393]
-- [netdrv] sfc: suppress duplicate nvmem partition types in efx_ef10_mtd_probe (Jarod Wilson) [1658087]
-- [netdrv] sfc: extend MTD support for newer hardware (Jarod Wilson) [1671494 1658087]
-- [netdrv] sfc: phase out dma_zalloc_coherent() (Jarod Wilson) [1658087]
-- [netdrv] sfc: Replace spin_is_locked() with lockdep (Jarod Wilson) [1658087]
-- [netdrv] sfc: use the new __netdev_tx_sent_queue BQL optimisation (Jarod Wilson) [1658087]
-- [netdrv] sfc: add missing NVRAM partition types for EF10 (Jarod Wilson) [1658087]
-- [netdrv] sfc-falcon: remove ndo_poll_controller (Jarod Wilson) [1658087]
-- [netdrv] sfc: remove ndo_poll_controller (Jarod Wilson) [1658087]
-- [netdrv] sfc: falcon: mark expected switch fall-through (Jarod Wilson) [1658087]
-- [infiniband] rdma/bnxt_re: Avoid accessing the device structure after it is freed (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix system hang when registration with L2 driver fails (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Avoid resource leak in case the NQ registration fails (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Wait for delayed work to finish before device removal (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Limit max_pkey to 16 bit value (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix qp async event reporting (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Report out of sequence hw counters (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Expose rx discards and drop counters (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Prevent driver crash due to NULL pointer in error message print (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Drop L2 async events silently (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Avoid NULL check after accessing the pointer (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Remove the unnecessary version macro definition (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix recursive lock warning in debug kernel (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Add missing spin lock initialization (Selvin Xavier) [1637067]
-- [infiniband] bnxt_re: Fix couple of memory leaks that could lead to IOMMU call traces (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: qplib: add and use #define dev_fmt(fmt) "qplib: " fmt (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Modify a fall-through annotation (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix a bunch of off by one bugs in qplib_fp.c (Selvin Xavier) [1637067]
-- [infiniband] rdma/bnxt_re: Fix a couple off by one bugs (Selvin Xavier) [1637067]
-- [scsi] csiostor: fix NULL pointer dereference in csio_vport_set_state() (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: fix incorrect dma device in case of vport (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: switch to generic DMA API (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: use pci_zalloc_consistent (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: fix incorrect port capabilities (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: add a check for NULL pointer after kmalloc() (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: update ingress pack and pad boundary value (Arjun Vynipadath) [1642433]
-- [scsi] csiostor: kzalloc() -> kcalloc() (Arjun Vynipadath) [1642433]
-- [scsi] smartpqi: correct nr_hw_queues (Don Brace) [1641112]
-- [scsi] smartpqi: call pqi_free_interrupts() in pqi_shutdown() (Don Brace) [1641112]
-- [scsi] smartpqi: fix build warnings (Don Brace) [1641112]
-- [scsi] smartpqi: update driver version (Don Brace) [1641112]
-- [scsi] smartpqi: add ofa support (Don Brace) [1641112]
-- [scsi] smartpqi: increase fw status register read timeout (Don Brace) [1641112]
-- [scsi] smartpqi: bump driver version (Don Brace) [1641112]
-- [scsi] smartpqi: add smp_utils support (Don Brace) [1641112]
-- [scsi] smartpqi: correct lun reset issues (Don Brace) [1641112]
-- [scsi] smartpqi: correct volume status (Don Brace) [1641112]
-- [scsi] smartpqi: do not offline disks for transient did no connect conditions (Don Brace) [1641112]
-- [scsi] smartpqi: allow for larger raid maps (Don Brace) [1641112]
-- [scsi] smartpqi: check for null device pointers (Don Brace) [1641112]
-- [scsi] smartpqi: add support for huawei controllers (Don Brace) [1641112]
-- [scsi] smartpqi: enhance numa node detection (Don Brace) [1641112]
-- [scsi] smartpqi: wake up drives after os resumes from suspend (Don Brace) [1641112]
-- [scsi] smartpqi: fix disk name mount point (Don Brace) [1641112]
-- [scsi] smartpqi: add h3c ssid (Don Brace) [1641112]
-- [scsi] smartpqi: add sysfs attributes (Don Brace) [1641112]
-- [scsi] smartpqi: refactor sending controller raid requests (Don Brace) [1641112]
-- [scsi] smartpqi: turn off lun data caching for ptraid (Don Brace) [1641112]
-- [scsi] smartpqi: correct host serial num for ssa (Don Brace) [1641112]
-- [scsi] smartpqi: add no_write_same for logical volumes (Don Brace) [1641112]
-- [scsi] smartpqi: Add retries for device reset (Don Brace) [1641112]
-- [scsi] smartpqi: add support for PQI Config Table handshake (Don Brace) [1641112]
-- [scsi] smartpqi: fully convert to the generic DMA API (Don Brace) [1641112]
-- [scsi] smartpqi: bump driver version to 1.1.4-130 (Don Brace) [1641112]
-- [scsi] smartpqi: add inspur advantech ids (Don Brace) [1641112]
-- [scsi] smartpqi: improve error checking for sync requests (Don Brace) [1641112]
-- [scsi] smartpqi: improve handling for sync requests (Don Brace) [1641112]
-- [scsi] smartpqi: cleanup interrupt management (Don Brace) [1641112]
-- [scsi] smartpqi: switch to pci_alloc_irq_vectors (Don Brace) [1641112]
-- [block] blk-mq: align set->cmd_size to cache line size (Ming Lei) [1655199]
-- [scsi] isci: initialize shost fully before calling scsi_add_host() (Ming Lei) [1655199]
-
-* Thu Jan 31 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-996.el7]
-- [kernel] tick/nohz: Prevent bogus softirq pending warning (Phil Auld) [1664535]
-- [acpi] nfit: Fix command-supported detection (Charles Rose) [1665811]
-- [acpi] nfit: Block function zero DSMs (Charles Rose) [1665811]
-- [powerpc] bpf, ppc64, jit: fix overlooked trace variants (Yauheni Kaliuta) [1655371]
-- [edac] Drop per-memory controller buses (Aristeu Rozanski) [1630288 1641038]
-- [edac] Dont add devices under /sys/bus/edac (Aristeu Rozanski) [1630288 1641038]
-- [edac] Expose per-DIMM error counts in sysfs (Aristeu Rozanski) [1614516]
-- [edac] Increment correct counter in edac_inc_ue_error() (Aristeu Rozanski) [1614516]
-- [kernel] locking/rwsem: Fix (possible) missed wakeup (Waiman Long) [1547078]
-- [kernel] futex: Fix (possible) missed wakeup (Waiman Long) [1547078]
-- [kernel] futex: Use smp_store_release() in mark_wake_futex() (Waiman Long) [1547078]
-- [kernel] sched/wake_q: Fix wakeup ordering for wake_q (Waiman Long) [1547078]
-- [kernel] sched/wake_q: Document wake_q_add() (Waiman Long) [1547078]
-- [linux] ptr_ring: wrap back ->producer in __ptr_ring_swap_queue() (Ivan Vecera) [1668470]
-- [linux] ptr_ring: prevent integer overflow when calculating size (Ivan Vecera) [1668470]
-- [linux] ptr_ring: try vmalloc() when kmalloc() fails (Ivan Vecera) [1668470]
-- [linux] ptr_ring: fail early if queue occupies more than KMALLOC_MAX_SIZE (Ivan Vecera) [1668470]
-- [linux] ptr_ring: prevent queue load/store tearing (Ivan Vecera) [1668470]
-- [linux] ptr_ring: disallow lockless __ptr_ring_full (Ivan Vecera) [1668470]
-- [linux] ptr_ring: READ/WRITE_ONCE for __ptr_ring_empty (Ivan Vecera) [1668470]
-- [linux] ptr_ring: clean up documentation (Ivan Vecera) [1668470]
-- [linux] ptr_ring: keep consumer_head valid at all times (Ivan Vecera) [1668470]
-- [linux] ptr_ring: document usage around __ptr_ring_peek (Ivan Vecera) [1668470]
-- [linux] ptr_ring: add barriers (Ivan Vecera) [1668470]
-- [linux] ptr_ring: use kmalloc_array() (Ivan Vecera) [1668470]
-- [iommu] amd: Unmap all mapped pages in error path of map_sg (Jerry Snitselaar) [1666488]
-- [iommu] amd: Call free_iova_fast with pfn in map_sg (Jerry Snitselaar) [1666488]
-- [x86] efi-bgrt: Replace early_memremap() with memremap() (Lenny Szubowicz) [1481667]
-- [x86] efi-bgrt: Replace ioremap() with early_memremap() (Lenny Szubowicz) [1481667]
-- [powerpc] topology: Get topology for shared processors at boot (Diego Domingos) [1665071]
-- [powerpc] tm: Unset MSR[TS] if not recheckpointing (Gustavo Duarte) [1664837]
-- [s390] sclp: Allow to request adapter reset (Hendrik Brueckner) [1640682]
-- [s390] pci: add report_error attribute (Hendrik Brueckner) [1640682]
-- [s390] sclp: add error notification command (Hendrik Brueckner) [1640682]
-- [s390] sclp: move pci related commands to separate file (Hendrik Brueckner) [1640682]
-- [s390] fs: sysfs: don't pass count == 0 to bin file readers (Hendrik Brueckner) [1641030]
-- [s390] crypto: Enhance paes cipher to accept variable length key material (Hendrik Brueckner) [1641030]
-- [s390] pkey: Introduce new API for transforming key blobs (Hendrik Brueckner) [1641030]
-- [s390] pkey: Introduce new API for random protected key verification (Hendrik Brueckner) [1641030]
-- [s390] pkey: Add sysfs attributes to emit secure key blobs (Hendrik Brueckner) [1641030]
-- [s390] pkey: Add sysfs attributes to emit protected key blobs (Hendrik Brueckner) [1641030]
-- [s390] pkey: Define protected key blob format (Hendrik Brueckner) [1641030]
-- [s390] pkey: Introduce new API for random protected key generation (Hendrik Brueckner) [1641030]
-- [s390] configs: enable CONFIG_ZCRYPT_MULTIDEVNODES on s390 (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: fix broken zcrypt_send_cprb in-kernel api function (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: multiple zcrypt device nodes support (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: enable AP bus scan without a valid default domain (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: remove VLA usage from the AP bus (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: hex string mask improvements for apmask and aqmask (Hendrik Brueckner) [1641030]
-- [s390] zcrypt: AP bus support for alternate driver(s) (Hendrik Brueckner) [1641030]
-
-* Thu Jan 31 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-995.el7]
-- [infiniband] rdma/uverbs: Get rid of ucontext->tgid (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Avoid synchronize_srcu in the ODP MR destruction path (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Handle a half-complete start/end sequence (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Get rid of per_mm->notifier_count (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Use umem->owning_mm inside ODP (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Move all the ODP related stuff out of ucontext and into per_mm (Kamal Heib) [1655923]
-- [infiniband] ib/core: Fix oops in netdev_next_upper_dev_rcu() (Kamal Heib) [1655923]
-- [infiniband] ib/umem: Set correct address to the invalidation function (Kamal Heib) [1655923]
-- [infiniband] iser: set sector for ambiguous mr status errors (Kamal Heib) [1655923]
-- [infiniband] rdma/rdmavt: Fix rvt_create_ah function signature (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Add GIDs while changing MAC addr only for registered ndev (Kamal Heib) [1655923]
-- [infiniband] rdma/drivers: Use core provided API for registering device attributes (Kamal Heib) [1655923]
-- [infiniband] rdma/bnxt_re: Fix system crash during RDMA resource initialization (Kamal Heib) [1655923]
-- [net] svcrdma: Remove try_module_get from backchannel (Kamal Heib) [1655923]
-- [net] svcrdma: Remove ->release_rqst call in bc reply handler (Kamal Heib) [1655923]
-- [net] svcrdma: Reduce max_send_sges (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Fix comment for hw stats init for port == 0 (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Refactor ib_register_device() function (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Fix unwinding flow in case of error to register device (Kamal Heib) [1655923]
-- [infiniband] ib_srp: Remove WARN_ON in srp_terminate_io() (Kamal Heib) [1655923]
-- [rdma] core: Allow existing drivers to set one sysfs group per device (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: Remove unnecessary enum values (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Increase total number of RDMA ports across all devices (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Rename ports_parent to ports_kobj (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Do not expose unsupported counters (Kamal Heib) [1655923]
-- [infiniband] ib/mlx4: Refer to the device kobject instead of ports_parent (Kamal Heib) [1655923]
-- [infiniband] rdma/nldev: Allow IB device rename through RDMA netlink (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/core: Implement IB device rename function (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/core: Annotate timeout as unsigned long (Kamal Heib) [1655923]
-- [rdma] core: Align multiple functions to kernel coding style (Kamal Heib) [1655923]
-- [infiniband] rdma/cma: Remove unused timeout_ms parameter from cma_resolve_iw_route() (Kamal Heib) [1655923]
-- [infiniband] rdma/cm: Respect returned status of cm_init_av_by_path (Kamal Heib) [1655923]
-- [infiniband] ib/ipoib: Clear IPCB before icmp_send (Kamal Heib) [1655923]
-- [infiniband] rdma/restrack: Protect from reentry to resource return path (Kamal Heib) [1655923]
-- [infiniband] rdma/netdev: Fix netlink support in IPoIB (Kamal Heib) [1659075 1655923]
-- [netdrv] rdma/netdev: Hoist alloc_netdev_mqs out of the driver (Kamal Heib) [1659075 1655923]
-- [infiniband] rdma/restrack: Release task struct which was hold by CM_ID object (Kamal Heib) [1655923]
-- [infiniband] rdma/restrack: Consolidate task name updates in one place (Kamal Heib) [1655923]
-- [rdma] restrack: Un-inline set task implementation (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Check error status of rdma_find_ndev_for_src_ip_rcu (Kamal Heib) [1655923]
-- [rdma] netlink: Simplify netlink listener existence check (Kamal Heib) [1655923]
-- [infiniband] rdma: Remove unused parameter from ib_modify_qp_is_ok() (Kamal Heib) [1655923]
-- [infiniband] rdma/rxe: Remove unused addr_same() (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: avoid srq memory leak (Kamal Heib) [1655923]
-- [infiniband] ib/mthca: Fix error return code in __mthca_init_one() (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Fix RCU annotation for radix slot deference (Kamal Heib) [1655923]
-- [infiniband] rdma: Fix building with CONFIG_MMU=n (Kamal Heib) [1655923]
-- [net] xprtrdma: Clean up xprt_rdma_disconnect_inject (Kamal Heib) [1655923]
-- [net] xprtrdma: Add documenting comments (Kamal Heib) [1655923]
-- [net] xprtrdma: Report when there were zero posted Receives (Kamal Heib) [1655923]
-- [net] xprtrdma: Move rb_flags initialization (Kamal Heib) [1655923]
-- [net] xprtrdma: Don't disable BH's in backchannel server (Kamal Heib) [1655923]
-- [net] xprtrdma: Remove memory address of "ep" from an error message (Kamal Heib) [1655923]
-- [net] xprtrdma: Rename rpcrdma_qp_async_error_upcall (Kamal Heib) [1655923]
-- [net] xprtrdma: Simplify RPC wake-ups on connect (Kamal Heib) [1655923]
-- [net] xprtrdma: Re-organize the switch() in rpcrdma_conn_upcall (Kamal Heib) [1655923]
-- [net] xprtrdma: Eliminate "connstate" variable from rpcrdma_conn_upcall() (Kamal Heib) [1655923]
-- [net] xprtrdma: Conventional variable names in rpcrdma_conn_upcall (Kamal Heib) [1655923]
-- [net] xprtrdma: Rename rpcrdma_conn_upcall (Kamal Heib) [1655923]
-- [net] sunrpc: Report connect_time in seconds (Kamal Heib) [1655923]
-- [net] sunrpc: Fix connect metrics (Kamal Heib) [1655923]
-- [trace] xprtrdma: Name MR trace events consistently (Kamal Heib) [1655923]
-- [net] xprtrdma: Explicitly resetting MRs is no longer necessary (Kamal Heib) [1655923]
-- [net] xprtrdma: Create more MRs at a time (Kamal Heib) [1655923]
-- [net] xprtrdma: Reset credit grant properly after a disconnect (Kamal Heib) [1655923]
-- [net] xprtrdma: xprt_release_rqst_cong is called outside of transport_lock (Kamal Heib) [1655923]
-- [infiniband] rdma/cma: Introduce and use cma_ib_acquire_dev() (Kamal Heib) [1655923]
-- [infiniband] rdma/cma: Introduce and use cma_acquire_dev_by_src_ip() (Kamal Heib) [1655923]
-- [infiniband] rdma/cma: Allow accepting requests for multi port rdma device (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: replace kvfree with vfree (Kamal Heib) [1655923]
-- [infiniband] ib/iser: Fix possible NULL deref at iser_inv_desc() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Acquire and release mmap_sem on page range (Kamal Heib) [1655923]
-- [infiniband] ib/sa: simplify return code logic for ib_nl_send_msg() (Kamal Heib) [1655923]
-- [infiniband] ib/mthca: remove redundant inner check of mdev->mthca_flags (Kamal Heib) [1655923]
-- [infiniband] ib/mthca: switch to pci_alloc_irq_vectors (Kamal Heib) [1655923]
-- [infiniband] rdma/ulp: Use dev_name instead of ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/drivers: Use dev_name instead of ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/core: Use dev_name instead of ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] networking: make skb_put & friends return void pointers (Kamal Heib) [1655923]
-- [infiniband] rdma/drivers: Use dev_err/dbg/etc instead of pr_* + ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/core: Use dev_err/dbg/etc instead of pr_* + ibdev->name (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma: Fully setup the device name in ib_register_device (Kamal Heib) [1641919 1655923]
-- [infiniband] rdma/umem: Fix potential addition overflow (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Minor optimizations (Kamal Heib) [1655923]
-- [infiniband] ib/usnic: fix spelling mistake "unvalid" -> "invalid" (Kamal Heib) [1655923]
-- [infiniband] ib/nes: Remove unnecessary parentheses (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Get rid of struct ib_umem.odp_data (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Make ib_umem_odp into a sub structure of ib_umem (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Use ib_umem_odp in all function signatures connected to ODP (Kamal Heib) [1655923]
-- [infiniband] rdma/usnic: Do not use ucontext->tgid (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Do not use current->tgid to track the mm_struct (Kamal Heib) [1655923]
-- [infiniband] rdma/ucontext: Get rid of the old disassociate flow (Kamal Heib) [1655923]
-- [infiniband] rdma/ucontext: Add a core API for mmaping driver IO memory (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Fix error unwind in ib_uverbs_add_one (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Properly return the error code of rdma_set_src_addr_rcu (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Remove is_closed from ib_uverbs_file (Kamal Heib) [1655923]
-- [rdma] ib/rxe: Revise the ib_wr_opcode enum (Kamal Heib) [1655923]
-- [rdma] Remove duplicated include from ib_addr.h (Kamal Heib) [1655923]
-- [infiniband] ib/ipoib: Log sysfs 'dev_id' accesses from userspace (Kamal Heib) [1655923]
-- [infiniband] ib/ipoib: Use dev_port to expose network interface port numbers (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Consider net ns of gid attribute for RoCE (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Introduce rdma_read_gid_attr_ndev_rcu() to check GID attribute (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Simplify roce_resolve_route_from_path() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Protect against changing dst->dev during destination resolve (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Refer to network type instead of device type (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Use common code flow for IPv4/6 for addr resolve (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Rename rdma_copy_addr to rdma_copy_src_l2_addr (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Introduce and use rdma_set_src_addr() between IPv4 and IPv6 (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Let protocol specific function typecast sockaddr structure (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Avoid unnecessary sa_family overwrite (Kamal Heib) [1655923]
-- [infiniband] RDMA/core Introduce and use rdma_find_ndev_for_src_ip_rcu (Kamal Heib) [1655923]
-- [infiniband] remove redundant condition check before debugfs_remove (Kamal Heib) [1655923]
-- [rdma] uverbs: Move flow resources initialization (Kamal Heib) [1655923]
-- [infiniband] ib/uverbs: Add IDRs array attribute type to ioctl() interface (Kamal Heib) [1655923]
-- [rdma] core: Document QP @event_handler function (Kamal Heib) [1655923]
-- [rdma] core: Document CM @event_handler function (Kamal Heib) [1655923]
-- [infiniband] nes: Use skb_peek_next() and skb_queue_walk() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Assign device ifindex before publishing the device (Kamal Heib) [1655923]
-- [infiniband] rdma/umem: Restore lockdep check while downgrading lock (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Define client_data_lock as rwlock instead of spinlock (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Use simpler spin lock irq API from blocking context (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Remove context entries from list while unregistering device (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Use simplified list_for_each (Kamal Heib) [1655923]
-- [infiniband] rdma/core: No need to protect kfree with spin lock and semaphore (Kamal Heib) [1655923]
-- [infiniband] rdma/{cma, core}: Avoid callback on rdma_addr_cancel() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Rate limit MAD error messages (Kamal Heib) [1655923]
-- [infiniband] ib/ipoib: Ensure that MTU isn't less than minimum permitted (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Fail early if unsupported QP is provided (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Use device.groups to initialize device attributes (Kamal Heib) [1655923]
-- [infiniband] rdma/uverbs: Use cdev_device_add() instead of cdev_add() (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Depend on device_add() to add device attributes (Kamal Heib) [1655923]
-- [infiniband] rdma/core: Replace open-coded variant of get_device (Kamal Heib) [1655923]
-- [rdma] uverbs: Declare closing variable as boolean (Kamal Heib) [1655923]
-- [infiniband] rdma/nes: Delete impossible debug prints (Kamal Heib) [1655923]
-- [infiniband] ib/srp: Remove unnecessary unlikely() (Kamal Heib) [1655923]
-- [infiniband] ib/core: Add an unbound WQ type to the new CQ API (Kamal Heib) [1655923]
-- [rdma] uverbs: Add generic function to fill in flow action object (Kamal Heib) [1655923]
-- [rdma] uverbs: Add UVERBS_ATTR_CONST_IN to the specs language (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: fixes for rdma read retry (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: avoid back-to-back retries (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: fix for duplicate request processing and ack psns (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Refactor lookup memory function (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Avoid NULL check when search is successful (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Change pool state enums to capital letters (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Replace spinlock with rwlock (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: Simplify rxe_find_route() to avoid GID query for netdev (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: remove redudant qpn check (Kamal Heib) [1655923]
-- [infiniband] ib/rxe: vary the source udp port for receive scaling (Kamal Heib) [1655923]
-- [infiniband] Replace usnic_ib_netdev_event_to_string() with netdev_cmd_to_name() (Kamal Heib) [1655923]
-- [kernel] mm: add new mmget() helper (Kamal Heib) [1655923]
-- [kernel] mm: add new mmgrab() helper (Kamal Heib) [1655923]
-
-* Thu Jan 31 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-994.el7]
-- [pci] Extending pci=resource_alignment to specify device/vendor IDs (Masaki Kimura) [1640874]
-- [edac] sb_edac: Fix signedness bugs in *_get_ha() functions (Aristeu Rozanski) [1641576]
-- [edac] sb_edac: Fix reporting for patrol scrubber errors (Aristeu Rozanski) [1641576]
-- [netdrv] bnx2x: Provide VF link status in ndo_get_vf_config (Jonathan Toppins) [1643534]
-- [netdrv] bnx2x: Ignore bandwidth attention in single function mode (Jonathan Toppins) [1643534]
-- [netdrv] bnx2x: Add VF spoof-checking configuration (Jonathan Toppins) [1522586 1643534]
-- [netdrv] bnx2x: Mark expected switch fall-throughs (Jonathan Toppins) [1643534]
-- [netdrv] bnx2x: Assign unique DMAE channel number for FW DMAE transactions (Jonathan Toppins) [1484987 1643534]
-- [watchdog] simplify getting .drvdata (David Arcari) [1666393]
-- [acpi] acpi / watchdog: Prefer iTCO_wdt always when WDAT table uses RTC SRAM (David Arcari) [1666393]
-- [acpi] acpi / watchdog: Prefer iTCO_wdt on Lenovo Z50-70 (David Arcari) [1666393]
-- [acpi] acpi / watchdog: properly initialize resources (David Arcari) [1666393]
-- [acpi] acpi / watchdog: Fix init failure with overlapping register regions (David Arcari) [1666393]
-- [acpi] acpi / watchdog: Print out error number when device creation fails (David Arcari) [1666393]
-
-* Fri Jan 18 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-993.el7]
-- [fs] userfaultfd: clear flag if remap event not enabled (Peter Xu) [1658039]
-- [fs] proc: report no_new_privs state (Joel Savitz) [1665508]
-- [fs] gfs2: take jdata unstuff into account in do_grow (Robert S Peterson) [1660550]
-- [fs] proc: restrict kernel stack dumps to root (Joe Lawrence) [1638194] {CVE-2018-17972}
-- [fs] proc: use "unsigned int" for /proc/*/stack (Joe Lawrence) [1638194] {CVE-2018-17972}
-- [fs] xfs: use sync buffer I/O for sync delwri queue submission (Brian Foster) [1570022]
-- [fs] xfs: refactor buffer submission into a common helper (Brian Foster) [1570022]
-- [vhost] vsock: fix reset orphans race with close timeout (Stefan Hajnoczi) [1660954]
-- [vhost] vsock: fix vhost vsock cid hashing inconsistent (Stefan Hajnoczi) [1623776] {CVE-2018-14625}
-- [vhost] vsock: fix use-after-free in network stack callers (Stefan Hajnoczi) [1623776] {CVE-2018-14625}
-- [vhost] vsock: fix uninitialized vhost_vsock->guest_cid (Stefan Hajnoczi) [1623776] {CVE-2018-14625}
-- [lib] string_helpers.c: fix infinite loop in string_get_size() (Ewan Milne) [1660565]
-- [misc] vmci: Resource wildcard match fixed (Vitaly Kuznetsov) [1557261]
-- [misc] vmci: Doorbell create and destroy fixes (Vitaly Kuznetsov) [1557261]
-- [misc] genwqe: Fix size check (Steve Best) [1658761]
-- [md] dax: fix missing stripe_dax_memcpy_toiovecend typo (Benjamin Coddington) [1635818]
-- [block] blk-mq: fix updating tags depth (Ming Lei) [1610940]
-- [block] really disable runtime-pm for blk-mq (Ming Lei) [1610225]
-- [include] gso: Add UDP GSO facade (Alaa Hleihel) [1653440]
-- [nvme] rdma: fix double freeing of async event data (David Milburn) [1655786]
-- [scsi] storvsc: Fix a race in sub-channel creation that can cause panic (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: set callbacks on open (Mohammed Gamal) [1562041]
-- [hv] vmbus: fix subchannel removal (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: defer opening vmbus until first use (Mohammed Gamal) [1562041]
-- [hv] vmbus: split ring buffer allocation from open (Mohammed Gamal) [1562041]
-- [hv] vmbus: pass channel to hv_process_channel_removal (Mohammed Gamal) [1562041]
-- [hv] vmbus: Reset the channel callback in vmbus_onoffer_rescind() (Mohammed Gamal) [1562041]
-- [uio] hv_uio_generic: map ringbuffer phys addr (Mohammed Gamal) [1562041]
-- [uio] introduce UIO_MEM_IOVA (Mohammed Gamal) [1562041]
-- [hv] vmbus: add driver_override support (Mohammed Gamal) [1562041]
-- [hv] vmbus: keep pointer to ring buffer page (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: drop #ifdef DEBUG (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: increase size of receive and send buffers (Mohammed Gamal) [1562041]
-- [uio] add SPDX license tags (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: fix subchannel ring mmap (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: use correct channel in isr (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: make ring buffer attribute for primary channel (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: set size of ring buffer attribute (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: support sub-channels (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: fix new type mismatch warnings (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: fix type mismatch warnings (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: add rescind support (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: check that host supports monitor page (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: create send and receive buffers (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: use ISR callback method (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: use standard mmap for resources (Mohammed Gamal) [1562041]
-- [uio] uio_hv_generic: fix configuration comments (Mohammed Gamal) [1562041]
-- [x86] Mark AMD EPYC guests as supported (David Arcari) [1664507]
-- [x86] tsc: Make calibration refinement more robust (David Arcari) [1656745]
-- [s390] qeth: utilize virtual MAC for Layer2 OSD devices (Hendrik Brueckner) [1640649]
-
-* Wed Jan 16 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-992.el7]
-- [lib] scsi: klist: Make it safe to use klists in atomic context (Kamal Heib) [1655920]
-- [infiniband] rdma/ucma: Fix Spectre v1 vulnerability (Kamal Heib) [1655920]
-- [infiniband] ib/ucm: Fix Spectre v1 vulnerability (Kamal Heib) [1655920]
-- [infiniband] Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Set right entry state before releasing reference (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Free uapi on destroy (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Fix validity check for modify QP (Kamal Heib) [1655920]
-- [infiniband] ib/srp: Avoid that sg_reset -d ${srp_device} triggers an infinite loop (Kamal Heib) [1655920]
-- [infiniband] ucma: fix a use-after-free in ucma_resolve_ip() (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Atomically flush and mark closed the comp event queue (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Protect cma dev list with lock (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Fix error cleanup path of ib_uverbs_add_one() (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Avoid a race condition between start_xmit and cm_rep_handler (Kamal Heib) [1655920]
-- [infiniband] ib/core: Release object lock if destroy failed (Kamal Heib) [1655920]
-- [infiniband] rdma/ucma: check fd type in ucma_migrate_id() (Kamal Heib) [1655920]
-- [infiniband] ib/ucm: fix UCM link error (Kamal Heib) [1655920]
-- [infiniband] ib/core: Change filter function return type from int to bool (Kamal Heib) [1655920]
-- [infiniband] ib/core: Update GID entries for netdevice whose mac address changes (Kamal Heib) [1655920]
-- [infiniband] ib/core: Add default GIDs of the bond master netdev (Kamal Heib) [1655920]
-- [infiniband] ib/core: Consider adding default GIDs of bond device (Kamal Heib) [1655920]
-- [infiniband] ib/core: Delete lower netdevice default GID entries in bonding scenario (Kamal Heib) [1655920]
-- [infiniband] ib/core: Avoid confusing del_netdev_default_ips (Kamal Heib) [1655920]
-- [infiniband] ib/core: Add comment for change upper netevent handling (Kamal Heib) [1655920]
-- [infiniband] ib/ucm: Fix compiling ucm.c (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not check for device disassociation during ioctl (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Remove struct uverbs_root_spec and all supporting code (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Use uverbs_api to unmarshal ioctl commands (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Use uverbs_alloc for allocations (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Add a simple allocator to uverbs_attr_bundle (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Remove the ib_uverbs_attr pointer from each attr (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Provide implementation private memory for the uverbs_attr_bundle (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Use uverbs_api to manage the object type inside the uobject (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Build the specs into a radix tree at runtime (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Have the core code create the uverbs_root_spec (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Fix reading of 32 bit flags (Kamal Heib) [1655920]
-- [net] rpc: remove unneeded variable 'ret' in rdma_listen_handler (Kamal Heib) [1655920]
-- [net] svcrdma: Clean up Read chunk path (Kamal Heib) [1655920]
-- [net] svcrdma: Avoid releasing a page in svc_xprt_release() (Kamal Heib) [1655920]
-- [net] sunrpc: remove redundant variables 'checksumlen', 'blocksize' and 'data' (Kamal Heib) [1655920]
-- [net] xprtrdma: Fix disconnect regression (Kamal Heib) [1655920]
-- [infiniband] rdma/rxe: Set wqe->status correctly if an unexpected response is received (Kamal Heib) [1655920]
-- [infiniband] ib/ucm: Initialize sgid request GID attribute pointer (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Consolidate checking of the proposed child interface (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Maintain the child_intfs list from ndo_init/uninit (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Do not remove child devices from within the ndo_uninit (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Get rid of the sysfs_mutex (Kamal Heib) [1655920]
-- [infiniband] rdma/netdev: Use priv_destructor for netdev cleanup (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Move init code to ndo_init (Kamal Heib) [1655920]
-- [infiniband] use core MTU range checking in misc drivers (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Move all uninit code into ndo_uninit (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Use cancel_delayed_work_sync for neigh-clean task (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Get rid of IPOIB_FLAG_GOING_DOWN (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Set ah valid flag in multicast send flow (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Allow all DESTROY commands to succeed after disassociate (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not block disassociate during write() (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not pass struct ib_device to the ioctl methods (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not pass struct ib_device to the write based methods (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Lower the test for ongoing disassociation (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Allow uobject allocation to work concurrently with disassociate (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Allow RDMA_REMOVE_DESTROY to work concurrently with disassociate (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Convert 'bool exclusive' into an enum (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Consolidate uobject destruction (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Make the write path destroy methods use the same flow as ioctl (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Remove rdma_explicit_destroy() from the ioctl methods (Kamal Heib) [1655920]
-- [infiniband] rdma: Fix return code check in rdma_set_cq_moderation (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Prefix _ib to IB/RoCE specific functions (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Simplify gid type check in cma_acquire_dev() (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Avoid holding lock while initializing fields on stack (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Return bool instead of int (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Get rid of 1 bit boolean (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Constify path record, ib_cm_event, listen_id pointers (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Constify dst_addr argument (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Simplify rdma_resolve_addr() error flow (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Initialize resource type in __rdma_create_id() (Kamal Heib) [1655920]
-- [infiniband] rdma/providers: Remove pointless functions (Kamal Heib) [1655920]
-- [infiniband] i40iw: Implement get_vector_affinity API (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Check for verbs callbacks before using them (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Remove {create, destroy}_ah from mandatory verbs (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Fix check for return code from ib_create_srq (Kamal Heib) [1655920]
-- [infiniband] rdma/providers: Fix return value from create_srq callbacks (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Add UVERBS_ATTR_FLAGS_IN to the specs language (Kamal Heib) [1655920]
-- [rdma] core and ulps: Declare ib_post_send() and ib_post_recv() arguments const (Kamal Heib) [1655920]
-- [infiniband] ib/mlx5, ib_post_send(), ib_wr_reg_sig_mr: Do not modify the 'wr' argument (Kamal Heib) [1655920]
-- [infiniband] ib/mlx5: Add support for drain SQ & RQ (Kamal Heib) [1655920]
-- [infiniband] ib/mlx4: Add support for drain SQ & RQ (Kamal Heib) [1655920]
-- [infiniband] rdma/cxgb4: Add support for kernel mode SRQ's (Kamal Heib) [1655920]
-- [infiniband] rdma/cxgb4: Make c4iw_poll_cq_one() easier to analyze (Kamal Heib) [1655920]
-- [infiniband] rdma/cxgb4: Add support for srq functions & structs (Kamal Heib) [1655920]
-- [infiniband] rdma/cxgb4: Add support for 64Byte cqes (Kamal Heib) [1655920]
-- [infiniband] rdma: Constify the argument of the work request conversion functions (Kamal Heib) [1655920]
-- [infiniband] ib/mlx5: posting klm/mtt list inline in the send queue for reg_wr (Kamal Heib) [1655920]
-- [infiniband] ib/iser: Inline two work request conversion functions (Kamal Heib) [1655920]
-- [rdma] ib/cache: Restore compatibility for ib_query_gid (Kamal Heib) [1655920]
-- [infiniband] rdma/usnic: Suppress a compiler warning (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Do not ignore net namespace for unbound cm_id (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Consider netdevice for RoCE ports (Kamal Heib) [1655920]
-- [infiniband] ib/core: Introduce and use sgid_attr in CM requests (Kamal Heib) [1655920]
-- [infiniband] ib/usnic: usnic should not select INFINIBAND_USER_ACCESS (Kamal Heib) [1655920]
-- [infiniband] ib/core: Remove extra parentheses (Kamal Heib) [1655920]
-- [infiniband] rdma/ocrdma: Suppress a compiler warning (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Fix locking around struct ib_uverbs_file ucontext (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Move the FD uobj type struct file allocation to alloc_commit (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Always propagate errors from rdma_alloc_commit_uobject() (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Rework the locking for cleaning up the ucontext (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Revise and clarify the rwsem and uobjects_lock (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Clarify and revise uverbs_close_fd (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Revise the placement of get/puts on uobject (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Clarify the kref'ing ordering for alloc_commit (Kamal Heib) [1655920]
-- [rdma] ib/uverbs: Handle IDR and FD types without truncation (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Get rid of null_obj_type (Kamal Heib) [1655920]
-- [net] xprtrdma: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [net] rds: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [net] rds: Remove two WARN_ON() statements (Kamal Heib) [1655920]
-- [net] 9p: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [nvme] nvmet-rdma: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [nvme] nvme-rdma: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/srpt: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/srp: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/isert: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/iser: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Simplify ib_post_(send|recv|srq_recv)() calls (Kamal Heib) [1655920]
-- [rdma] ib/core: Allow ULPs to specify NULL as the third ib_post_(send|recv|srq_recv)() argument (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: Drop QP0 silently (Kamal Heib) [1655920]
-- [infiniband] ib/ipoib: Fix error return code in ipoib_dev_init() (Kamal Heib) [1655920]
-- [infiniband] ib: Support ib_flow creation in drivers (Kamal Heib) [1655920]
-- [rdma] ib/uverbs: Move ib_access_flags and ib_read_counters_flags to uapi (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Remove cma_multicast->igmp_joined (Kamal Heib) [1655920]
-- [infiniband] rdma/umem: Refactor exit paths in ib_umem_get (Kamal Heib) [1655920]
-- [infiniband] rdma/umem: Don't hold mmap_sem for too long (Kamal Heib) [1655920]
-- [infiniband] ib/srpt: Fix srpt_cm_req_recv() error path (2/2) (Kamal Heib) [1655920]
-- [infiniband] ib/srpt: Fix srpt_cm_req_recv() error path (1/2) (Kamal Heib) [1655920]
-- [infiniband] rdma/ocrdma: Make ocrdma_destroy_qp() easier to analyze (Kamal Heib) [1655920]
-- [infiniband] rdma/nes: Avoid complaints about unused variables (Kamal Heib) [1655920]
-- [rdma] ib: Enable uverbs_destroy_def_handler to be used by drivers (Kamal Heib) [1655920]
-- [infiniband] ib_srpt: use kvmalloc to allocate ring pointers (Kamal Heib) [1655920]
-- [uapi] ib/uverbs: Pass IB_UVERBS_QPF_GRH_REQUIRED to user space (Kamal Heib) [1655920]
-- [infiniband] rdma: Validate grh_required when handling AVs (Kamal Heib) [1655920]
-- [infiniband] rdma/hfi1: Move grh_required into update_sm_ah (Kamal Heib) [1655920]
-- [uapi] rdma: Fix storage of PortInfo CapabilityMask in the kernel (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Fix return code from ipoib_cm_dev_init (Kamal Heib) [1655920]
-- [infiniband] ib/core: Simplify check for RoCE route resolve (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Do not use uverbs_cmd_mask in the ioctl path (Kamal Heib) [1655920]
-- [infiniband] rdma/rw: Fix rdma_rw_ctx_signature_init() kernel-doc header (Kamal Heib) [1655920]
-- [infiniband] rdma/rxe: Simplify the error handling code in rxe_create_ah() (Kamal Heib) [1655920]
-- [infiniband] ib/iser: Remove set-but-not-used variables (Kamal Heib) [1655920]
-- [infiniband] rdma/ocrdma: Remove a set-but-not-used variable (Kamal Heib) [1655920]
-- [infiniband] ib/nes: Fix a compiler warning (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Remove set-but-not-used variables (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Remove ib_find_cached_gid() and ib_find_cached_gid_by_port() (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Fix use of sizeof() (Kamal Heib) [1655920]
-- [infiniband] networking: make skb_push & __skb_push return void pointers (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Prefer unsigned int to bare use of unsigned (Kamal Heib) [1655920]
-- [infiniband] rdma/ipoib: Use min_t() macro instead of min() (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Remove unused and erroneous msg sequence encoding (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Replace ib_ucq_object uverbs_file with the one in ib_uobject (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Remove ib_uobject_file (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Tidy up remaining references to ucontext (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Replace file->ucontext with file in uverbs_cmd.c (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Replace ib_ucontext with ib_uverbs_file in core function calls (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Move non driver related elements from ib_ucontext to ib_ufile (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Add a uobj_perform_destroy helper (Kamal Heib) [1655920]
-- [rdma] uverbs: Combine MIN_SZ_OR_ZERO with UVERBS_ATTR_STRUCT (Kamal Heib) [1655920]
-- [rdma] uverbs: Use UVERBS_ATTR_MIN_SIZE correctly and uniformly (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Remove UA_FLAGS (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Get rid of the & in method specifications (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Simplify UVERBS_OBJECT and _TREE family of macros (Kamal Heib) [1655920]
-- [rdma] uverbs: Simplify method definition macros (Kamal Heib) [1655920]
-- [rdma] uverbs: Simplify UVERBS_ATTR family of macros (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Split UVERBS_ATTR_FLOW_ACTION_ESP_HANDLE (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Store the specs_root in the struct ib_uverbs_device (Kamal Heib) [1655920]
-- [infiniband] ib/core: type promotion bug in rdma_rw_init_one_mr() (Kamal Heib) [1655920]
-- [infiniband] ib_srpt: Fix a use-after-free in __srpt_close_all_ch() (Kamal Heib) [1655920]
-- [infiniband] ib_srpt: Fix a use-after-free in srpt_close_ch() (Kamal Heib) [1655920]
-- [infiniband] ib/srp: Remove driver version and release data information (Kamal Heib) [1655920]
-- [infiniband] ib: Improve uverbs_cleanup_ucontext algorithm (Kamal Heib) [1655920]
-- [infiniband] ib/iser: set can_queue earlier to allow setting higher queue depth (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: don't clear the tx queue on every transfer (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Remove now useless rcu_lock in dst_fetch_ha (Kamal Heib) [1655920]
-- [infiniband] rdma/vmw_pvrdma: Delete unused function (Kamal Heib) [1655920]
-- [infiniband] ib/core: Check for rdma_protocol_ib only after validating port_num (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Remove redundant check (Kamal Heib) [1655920]
-- [infiniband] rdma/umem: Don't check for a negative return value of dma_map_sg_attrs() (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Don't overwrite NULL pointer with ZERO_SIZE_PTR (Kamal Heib) [1655920]
-- [infiniband] rdma/verbs: Drop kernel variant of destroy_flow (Kamal Heib) [1655920]
-- [infiniband] rdma/verbs: Drop kernel variant of create_flow (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Check existence of create_flow callback (Kamal Heib) [1655920]
-- [infiniband] ib/usnic: Update with bug fixes from core code (Kamal Heib) [1655920]
-- [infiniband] rdma/core: Remove unused ib cache functions (Kamal Heib) [1655920]
-- [infiniband] ib/mlx4: Use GID attribute from ah attribute (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Use sgid_attr from the AV (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Replace members of sa_path_rec with 'struct sgid_attr *' (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Pass the sgid_attr through various events (Kamal Heib) [1655920]
-- [infiniband] ib/cm: Keep track of the sgid_attr that created the cm id (Kamal Heib) [1655920]
-- [infiniband] ib: Make init_ah_attr_grh_fields set sgid_attr (Kamal Heib) [1655920]
-- [infiniband] ib: Make ib_init_ah_from_mcmember set sgid_attr (Kamal Heib) [1655920]
-- [infiniband] ib: Make ib_init_ah_attr_from_wc set sgid_attr (Kamal Heib) [1655920]
-- [infiniband] ib/core: Free GID table entry during GID deletion (Kamal Heib) [1655920]
-- [infiniband] rdma/cma: Consider net namespace while leaving multicast group (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Delete type and id from uverbs_obj_attr (Kamal Heib) [1655920]
-- [infiniband] ib/core: Expose ib_ucontext from a given ib_uverbs_file (Kamal Heib) [1655920]
-- [rdma] ib/core: Introduce DECLARE_UVERBS_GLOBAL_METHODS (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Allow an empty namespace in ioctl() framework (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Add a macro to define a type with no kernel known size (Kamal Heib) [1655920]
-- [rdma] ib/uverbs: Add PTR_IN attributes that are allocated/copied automatically (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Refactor uverbs_finalize_objects (Kamal Heib) [1655920]
-- [infiniband] ib/uverbs: Export uverbs idr and fd types (Kamal Heib) [1655920]
-- [infiniband] ib/core: add max_send_sge and max_recv_sge attributes (Kamal Heib) [1645162 1655920]
-- [infiniband] ib/rxe: avoid unnecessary NULL check (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: support for 802.1q VLAN on the listener (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: increase max MR limit (Kamal Heib) [1655920]
-- [infiniband] ib/mad: Use IDR for agent IDs (Kamal Heib) [1655920]
-- [infiniband] rdma: Convert drivers to use the AH's sgid_attr in post_wr paths (Kamal Heib) [1655920]
-- [infiniband] rdma: Hold the sgid_attr inside the struct ib_ah/qp (Kamal Heib) [1655920]
-- [infiniband] rdma: Convert drivers to use sgid_attr instead of sgid_index (Kamal Heib) [1655920]
-- [infiniband] ib{cm, core}: Introduce and use ah_attr copy, move, replace APIs (Kamal Heib) [1655920]
-- [infiniband] ib/core: Tidy ib_resolve_eth_dmac (Kamal Heib) [1655920]
-- [infiniband] ib/core: Add a sgid_attr pointer to struct rdma_ah_attr (Kamal Heib) [1655920]
-- [infiniband] ib: Ensure that all rdma_ah_attr's are zero initialized (Kamal Heib) [1655920]
-- [infiniband] ib/mad: Agent registration is process context only (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: Do not hide uABI stuff in memcpy (Kamal Heib) [1655920]
-- [infiniband] rdma/uverbs: Refactor flow_resources_alloc() function (Kamal Heib) [1655920]
-- [infiniband] rdma/nldev: Return port capability flag for IB only (Kamal Heib) [1655920]
-- [infiniband] ib/rxe: Use rdma GID API (Kamal Heib) [1655920]
-- [infiniband] ib: Replace ib_query_gid/ib_get_cached_gid with rdma_query_gid (Kamal Heib) [1655920]
-- [infiniband] ib/core: Make rdma_find_gid_by_filter support all protocols (Kamal Heib) [1655920]
-- [infiniband] ib/core: Provide rdma_ versions of the gid cache API (Kamal Heib) [1655920]
-- [infiniband] ib/core: Replace ib_query_gid with rdma_get_gid_attr (Kamal Heib) [1655920]
-- [infiniband] ib/core: Introduce GID attribute get, put and hold APIs (Kamal Heib) [1655920]
-- [infiniband] rdma: Use GID from the ib_gid_attr during the add_gid() callback (Kamal Heib) [1655920]
-- [infiniband] ib/core: Introduce GID entry reference counts (Kamal Heib) [1655920]
-- [infiniband] ib/core: Store default GID property per-table instead of per-entry (Kamal Heib) [1655920]
-- [infiniband] ib/core: Do not set the gid type when reserving default entries (Kamal Heib) [1655920]
-- [kernel] genirq: Introduce helper function irq_data_get_affinity_mask() (Ivan Vecera) [1658269]
-
-* Mon Jan 14 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-991.el7]
-- [scsi] ibmvscsi: set max_lun to 32 (Laurent Vivier) [1662237]
-- [scsi] ibmvscsi: display default value for max_id, max_lun and max_channel. (Laurent Vivier) [1662237]
-- [netdrv] hv_netvsc: Fix a network regression after ifdown/ifup (Mohammed Gamal) [1661632]
-- [netdrv] net/ibmvnic: Fix RTNL deadlock during device reset (Diego Domingos) [1648824 1648822]
-- [netdrv] net/ibmnvic: Fix deadlock problem in reset (Diego Domingos) [1648824 1648822]
-- [net] Add netif_is_gretap()/netif_is_ip6gretap() (Petr Oros) [1660901]
-- [net] Set sk_prot_creator when cloning sockets to the right proto (Andrea Claudi) [1657352] {CVE-2018-9568}
-- [net] devlink: Add helper function for safely copy string param (Petr Oros) [1653433]
-- [net] devlink: Fix param cmode driverinit for string type (Petr Oros) [1653433]
-- [net] devlink: Fix param set handling for string type (Petr Oros) [1653433]
-- [net] devlink: Add generic parameter msix_vec_per_pf_min (Petr Oros) [1653433]
-- [net] devlink: Add generic parameter msix_vec_per_pf_max (Petr Oros) [1653433]
-- [net] devlink: Add generic parameter ignore_ari (Petr Oros) [1653433]
-- [net] devlink: double free in devlink_resource_fill() (Petr Oros) [1653433]
-- [net] devlink: Add generic parameters region_snapshot (Petr Oros) [1653433]
-- [net] devlink: Add support for region snapshot read command (Petr Oros) [1653433]
-- [net] devlink: Add support for region snapshot delete command (Petr Oros) [1653433]
-- [net] devlink: Extend the support querying for region snapshot IDs (Petr Oros) [1653433]
-- [net] devlink: Add support for region get command (Petr Oros) [1653433]
-- [net] devlink: Add support for creating region snapshots (Petr Oros) [1653433]
-- [net] devlink: Add callback to query for snapshot id before snapshot create (Petr Oros) [1653433]
-- [net] devlink: Add support for creating and destroying regions (Petr Oros) [1653433]
-- [net] devlink: fix incorrect return statement (Petr Oros) [1653433]
-- [net] devlink: Add enable_sriov boolean generic parameter (Petr Oros) [1653433]
-- [net] devlink: Add generic parameters internal_err_reset and max_macs (Petr Oros) [1653433]
-- [net] devlink: Add devlink notifications support for params (Petr Oros) [1653433]
-- [net] devlink: Add support for get/set driverinit value (Petr Oros) [1653433]
-- [net] devlink: Add param set command (Petr Oros) [1653433]
-- [net] devlink: Add param get command (Petr Oros) [1653433]
-- [net] devlink: Add devlink_param register and unregister (Petr Oros) [1653433]
-- [net] remove unnecessary genlmsg_cancel() calls (Petr Oros) [1657816]
-- [net] devlink: don't take instance lock around eswitch mode set (Petr Oros) [1657816]
-- [net] devlink: introduce a helper to generate physical port names (Petr Oros) [1657816]
-- [net] devlink: extend attrs_set for setting port flavours (Petr Oros) [1657816]
-- [net] devlink: introduce devlink_port_attrs_set (Petr Oros) [1657816]
-- [net] devlink: Remove redundant free on error path (Petr Oros) [1657816]
-- [net] devlink: Change dpipe/resource get privileges (Petr Oros) [1657816]
-- [net] devlink: Maintain consistency in mac field name (Petr Oros) [1657816]
-- [net] fix race on decreasing number of TX queues (Erez Alfasi) [1658679]
-- [net] 8021q: move vlan offload registrations into vlan_core (Hangbin Liu) [1657650]
-- [net] ethtool: Add WAKE_FILTER and RX_CLS_FLOW_WAKE (Ivan Vecera) [1657886]
-- [netdrv] virtchnl: Whitespace and parenthesis cleanup (Ivan Vecera) [1658270]
-- [netdrv] virtchnl: use u8 type for a field in the virtchnl_filter struct (Ivan Vecera) [1658270]
-- [netdrv] virtchnl: Added support to exchange additional speed values (Ivan Vecera) [1658270]
-- [netdrv] i40e: Update status codes (Ivan Vecera) [1658270]
-- [netdrv] virtchnl: Fix off by one error (Ivan Vecera) [1658270]
-- [netdrv] virtchnl: white space and reorder (Ivan Vecera) [1658270]
-- [net] return NULL if metadata_dst allocation fails in metadata_dst_alloc (Lorenzo Bianconi) [1656697]
-- [net] act_sample: get rid of tcf_sample_cleanup_rcu() (Davide Caratti) [1654950]
-- [net] sched: act_sample: fix NULL dereference in the data path (Davide Caratti) [1654950]
-- [net] Make NETDEV_XXX commands enum { } (Ivan Vecera) [1654965]
-
-* Thu Jan 10 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-990.el7]
-- [scsi] csiostor: remove flush_scheduled_work() (Arjun Vynipadath) [1660882]
-- [scsi] lpfc: Update lpfc version to 12.0.0.10 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Adding ability to reset chip via pci bus reset (Dick Kennedy) [1642905]
-- [scsi] lpfc: Add log messages to aid in debugging fc4type discovery issues (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix discovery failure when PLOGI is defered (Dick Kennedy) [1642905]
-- [scsi] lpfc: update fault value on successful trunk events (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct MDS loopback diagnostics support (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix link state reporting for trunking when adapter is offline (Dick Kennedy) [1642905]
-- [scsi] lpfc: Enable Management features for IF_TYPE=6 (Dick Kennedy) [1658750 1642905]
-- [scsi] revert "scsi: lpfc: ls_rjt erroneus FLOGIs" (Dick Kennedy) [1642905]
-- [scsi] lpfc: update driver version to 12.0.0.9 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix dif and first burst use in write commands (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix driver release of fw-logging buffers (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct topology type reporting on G7 adapters (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct code setting non existent bits in sli4 ABORT WQE (Dick Kennedy) [1642905]
-- [scsi] lpfc: Defer LS_ACC to FLOGI on point to point logins (Dick Kennedy) [1642905]
-- [scsi] lpfc: ls_rjt erroneus FLOGIs (Dick Kennedy) [1642905]
-- [scsi] lpfc: rport port swap discovery issue (Dick Kennedy) [1642905]
-- [scsi] lpfc: Cap NPIV vports to 256 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix kernel Oops due to null pring pointers (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix a duplicate 0711 log message number (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix discovery failures during port failovers with lots of vports (Dick Kennedy) [1642905]
-- [scsi] lpfc: refactor mailbox structure context fields (Dick Kennedy) [1642905]
-- [scsi] lpfc: update manufacturer attribute to reflect Broadcom (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix panic when FW-log buffsize is not initialized (Dick Kennedy) [1642905]
-- [scsi] lpfc: Use dma_zalloc_coherent (Dick Kennedy) [1642905]
-- [scsi] lpfc: use dma_set_mask_and_coherent (Dick Kennedy) [1642905]
-- [scsi] lpfc: update driver version to 12.0.0.8 (Dick Kennedy) [1642905]
-- [scsi] lpfc: add Trunking support (Dick Kennedy) [1642905]
-- [scsi] lpfc: Implement GID_PT on Nameserver query to support faster failover (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct loss of fc4 type on remote port address change (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix odd recovery in duplicate FLOGIs in point-to-point (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct LCB RJT handling (Dick Kennedy) [1642905]
-- [scsi] lpfc: fcoe: Fix link down issue after 1000+ link bounces (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct errors accessing fw log (Dick Kennedy) [1642905]
-- [scsi] lpfc: Reset link or adapter instead of doing infinite nameserver PLOGI retry (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix LOGO/PLOGI handling when triggerd by ABTS Timeout event (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix lpfc_sli4_read_config return value check (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct speeds on SFP swap (Dick Kennedy) [1642905]
-- [scsi] lpfc: Remove set but not used variables 'tgtp' (Dick Kennedy) [1642905]
-- [scsi] lpfc: Remove set but not used variable 'psli' (Dick Kennedy) [1642905]
-- [scsi] lpfc: Remove set but not used variables 'fc_hdr' and 'hw_page_size' (Dick Kennedy) [1642905]
-- [scsi] lpfc: fix spelling mistake "Resrouce" -> "Resource" (Dick Kennedy) [1642905]
-- [scsi] lpfc: Synchronize access to remoteport via rport (Dick Kennedy) [1642905]
-- [scsi] lpfc: Remove set but not used variable 'sgl_size' (Dick Kennedy) [1642905]
-- [scsi] lpfc: update driver version to 12.0.0.7 (Dick Kennedy) [1642905]
-- [scsi] lpfc: add support to retrieve firmware logs (Dick Kennedy) [1642905]
-- [scsi] lpfc: reduce locking when updating statistics (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix errors in log messages (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct invalid EQ doorbell write on if_type=6 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct irq handling via locks when taking adapter offline (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct soft lockup when running mds diagnostics (Dick Kennedy) [1642905]
-- [scsi] lpfc: Correct race with abort on completion path (Dick Kennedy) [1642905]
-- [scsi] lpfc: Raise nvme defaults to support a larger io and more connectivity (Dick Kennedy) [1642905]
-- [scsi] lpfc: raise sg count for nvme to use available sg resources (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix GFT_ID and PRLI logic for RSCN (Dick Kennedy) [1642905]
-- [scsi] lpfc: remove an unnecessary NULL check (Dick Kennedy) [1642905]
-- [scsi] lpfc: Default fdmi_on to on (Dick Kennedy) [1642905]
-- [scsi] lpfc: update driver version to 12.0.0.6 (Dick Kennedy) [1642905]
-- [scsi] lpfc: Limit tracking of tgt queue depth in fast path (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix sysfs Speed value on CNA ports (Dick Kennedy) [1642905]
-- [scsi] lpfc: Fix ELS abort on SLI-3 adapters (Dick Kennedy) [1642905]
-- [s390] Add ebpf support (Jiri Olsa) [1657679]
-
-* Wed Jan 09 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-989.el7]
-- [md] Add split counter for raid1 write request in the right place (Xiao Ni) [1659951]
-- [block] blk-mq: punt failed direct issue to dispatch list (Ming Lei) [1656654]
-- [block] blk-mq: fix corruption with direct issue (Ming Lei) [1656654]
-- [xen] manage: Poweroff forcefully if user-space is not yet up. (Vitaly Kuznetsov) [1658196]
-- [mm] mincore: add hwpoison page handle (Waiman Long) [1661268]
-- [mm] hugetlb: filter out hugetlb pages if HUGEPAGE migration is not supported (Baoquan He) [1601867]
-- [mm] page_alloc: fail has_unmovable_pages when seeing reserved pages (Baoquan He) [1601867]
-- [mm] distinguish CMA and MOVABLE isolation in has_unmovable_pages() (Baoquan He) [1601867]
-- [mm] page_isolation: make set/unset_migratetype_isolate() file-local (Baoquan He) [1601867]
-- [mm] soft-offline: don't free target page in successful page migration (Baoquan He) [1601867]
-- [mm] memory_hotplug.c: check start_pfn in test_pages_in_a_zone() (Baoquan He) [1601867]
-- [mm] memory_hotplug: is_mem_section_removable() can return bool (Baoquan He) [1601867]
-- [base] base/memory.c: prohibit offlining of memory blocks with missing sections (Baoquan He) [1601867]
-- [mm] drop migrate type checks from has_unmovable_pages (Baoquan He) [1601867]
-- [x86] platform/uv: Add adjustable set memory block size function (Baoquan He) [1601867]
-- [mm] memory_hotplug: remove timeout from __offline_memory (Baoquan He) [1601867]
-- [mm] memory_hotplug: do not fail offlining too early (Baoquan He) [1601867]
-- [x86] mm/memory_hotplug: determine block size based on the end of boot memory (Baoquan He) [1601867]
-- [x86] mm: Streamline and restore probe_memory_block_size() (Baoquan He) [1601867]
-- [x86] mm: Use 2GB memory block size on large-memory x86-64 systems (Baoquan He) [1601867]
-- [x86] mm: probe memory block size for generic x86 64bit (Baoquan He) [1601867]
-- [x86] revert platform/uv: Add adjustable set memory block size function (Baoquan He) [1601867]
-- [x86] redhat: configs: enable CONFIG_NUMA_EMU (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Fix uniform-split numa emulation (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Introduce uniform split capability (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Fix emulated-to-physical node mapping (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Recalculate numa_nodes_parsed from emulated nodes (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Assign physnode_mask directly from numa_nodes_parsed (Rafael Aquini) [1641417]
-- [x86] numa_emulation: Refine the calculation of max_emu_nid and dfl_phys_nid (Rafael Aquini) [1641417]
-
-* Mon Jan 07 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-988.el7]
-- [tools] perf tools: Fix trigger class trigger_on() (Jiri Olsa) [1641373]
-- [tools] perf auxtrace: Prevent decoding when --no-itrace (Jiri Olsa) [1641373]
-- [tools] perf stat: Fix CVS output format for non-supported counters (Jiri Olsa) [1641373]
-- [tools] perf record: Fix crash in pipe mode (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Be more robust when drawing jump arrows (Jiri Olsa) [1641373]
-- [tools] perf top: Fix annoying fallback message on older kernels (Jiri Olsa) [1641373]
-- [tools] perf kallsyms: Fix the usage on the man page (Jiri Olsa) [1641373]
-- [tools] perf s390: Rework system call table creation by using syscall.tbl (Jiri Olsa) [1641373]
-- [tools] perf s390: Grab a copy of arch/s390/kernel/syscall/syscall.tbl (Jiri Olsa) [1641373]
-- [tools] perf data: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf tools: Substitute yet another strtoull() (Jiri Olsa) [1641373]
-- [tools] perf vendor events aarch64: Add JSON metrics for ARM Cortex-A53 Processor (Jiri Olsa) [1641373]
-- [tools] perf tools: Add trace/beauty/generated/ into .gitignore (Jiri Olsa) [1641373]
-- [tools] perf record: Fix period option handling (Jiri Olsa) [1641373]
-- [tools] perf evsel: Fix period/freq terms setup (Jiri Olsa) [1641373]
-- [tools] perf trace beauty flock: Move to separate object file (Jiri Olsa) [1641373]
-- [tools] perf evlist: Remove fcntl.h from evlist.h (Jiri Olsa) [1641373]
-- [tools] perf trace beauty futex: Beautify FUTEX_BITSET_MATCH_ANY (Jiri Olsa) [1641373]
-- [tools] perf trace: Do not print from time delta for interrupted syscall lines (Jiri Olsa) [1641373]
-- [tools] perf trace: Add --print-sample (Jiri Olsa) [1641373]
-- [tools] perf bpf: Remove misplaced __maybe_unused attribute (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update IvyTown files to V20 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update IvyBridge files to V20 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update BroadwellDE events to V7 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update SkylakeX events to V1.06 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Skylake events to V36 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Silvermont events to V14 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update IvyTown events to V20 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update IvyBridge events to V20 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update HaswellX events to V19 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Haswell events to V27 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Goldmont events to V12 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update BroadwellX events to V13 (Jiri Olsa) [1641373]
-- [tools] perf vendor events intel: Update Broadwell events to V22 (Jiri Olsa) [1641373]
-- [tools] perf trace: Remove audit-libs dependency if syscall tables are present (Jiri Olsa) [1641373]
-- [tools] perf trace: Obtain errno strings by using arch_syscalls__strerrno() (Jiri Olsa) [1641373]
-- [tools] perf util: Introduce architecture specific errno/name mapping (Jiri Olsa) [1641373]
-- [tools] tools include asm-generic: Grab errno.h and errno-base.h (Jiri Olsa) [1641373]
-- [tools] tools include arch: Grab a copy of errno.h for arch's supported by perf (Jiri Olsa) [1641373]
-- [tools] perf build: Display EXTRA features for VF=1 build (Jiri Olsa) [1641373]
-- [tools] perf symbols: Using O_CLOEXEC in do_open (Jiri Olsa) [1641373]
-- [tools] perf tools: Move conditional O_CLOEXEC to util.h (Jiri Olsa) [1641373]
-- [tools] perf bpf: Don't warn about unavailability of builtin clang, just fallback (Jiri Olsa) [1641373]
-- [tools] perf tools: Use ui__error() for reporting --fields errors (Jiri Olsa) [1641373]
-- [tools] perf tools: Get rid of unused 'swapped' parameter from perf_event__synthesize_sample() (Jiri Olsa) [1641373]
-- [tools] perf evsel: Ensure reserved member of PERF_SAMPLE_CPU is zero in perf_event__synthesize_sample() (Jiri Olsa) [1641373]
-- [tools] perf intel-pt/bts: Do not swap when synthesizing samples (Jiri Olsa) [1641373]
-- [tools] perf record: Fix failed memory allocation for get_cpuid_str (Jiri Olsa) [1641373]
-- [tools] perf script: Remove the time slices number limitation (Jiri Olsa) [1641373]
-- [tools] perf report: Remove the time slices number limitation (Jiri Olsa) [1641373]
-- [tools] perf util: Allocate time slices buffer according to number of comma (Jiri Olsa) [1641373]
-- [tools] perf report: Add an indication of what time slices are used (Jiri Olsa) [1641373]
-- [tools] perf util: Support no index time percent slice (Jiri Olsa) [1641373]
-- [tools] perf util: Improve error checking for time percent input (Jiri Olsa) [1641373]
-- [tools] perf script: Improve error msg when no first/last sample time found (Jiri Olsa) [1641373]
-- [tools] perf report: Improve error msg when no first/last sample time found (Jiri Olsa) [1641373]
-- [tools] perf callchains: Ask for PERF_RECORD_MMAP for data mmaps for DWARF unwinding (Jiri Olsa) [1641373]
-- [tools] perf trace: Setup DWARF callchains for non-syscall events when --max-stack is used (Jiri Olsa) [1641373]
-- [tools] perf unwind: Do not look just at the global callchain_param.record_mode (Jiri Olsa) [1641373]
-- [tools] perf callchain: Fix attr.sample_max_stack setting (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Fix get_field_str() for dynamic strings (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Fix missing break in FALSE case of pevent_filter_clear_trivial() (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Add UL suffix to MISSING_EVENTS (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Use asprintf when possible (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Show contents (in hex) of data of unrecognized type records (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Handle new pointer processing of bprint strings (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Simplify pointer print logic and fix pF (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Print value of unknown symbolic fields (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Show value of flags that have not been parsed (Jiri Olsa) [1641373]
-- [tools] tools lib traceevent: Fix bad force_token escape sequence (Jiri Olsa) [1641373]
-- [tools] perf trace: Fix setting of --call-graph/--max-stack for non-syscall events (Jiri Olsa) [1641373]
-- [tools] perf evsel: Check if callchain is enabled before setting it up (Jiri Olsa) [1641373]
-- [tools] perf tools: Fix copyfile_offset update of output offset (Jiri Olsa) [1641373]
-- [tools] perf trace: No need to set PERF_SAMPLE_IDENTIFIER explicitely (Jiri Olsa) [1641373]
-- [tools] perf script python: Add script to profile and resolve physical mem type (Jiri Olsa) [1641373]
-- [tools] perf evlist: Remove trailing semicolon (Jiri Olsa) [1641373]
-- [tools] perf evsel: Fix incorrect handling of type _TERM_DRV_CFG (Jiri Olsa) [1641373]
-- [tools] perf report: Introduce --mmaps (Jiri Olsa) [1641373]
-- [tools] perf report: Add --tasks option to display monitored tasks (Jiri Olsa) [1641373]
-- [tools] perf trace: Beautify 'gettid' syscall result (Jiri Olsa) [1641373]
-- [tools] perf report: Add --stats option to display quick data statistics (Jiri Olsa) [1641373]
-- [tools] perf tools: Make the tool's warning messages optional (Jiri Olsa) [1641373]
-- [tools] perf script: Add support to display lost events (Jiri Olsa) [1641373]
-- [tools] perf script: Add support to display sample misc field (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable LIBBABELTRACE by default (Jiri Olsa) [1641373]
-- [tools] perf script: Support time percent and multiple time ranges (Jiri Olsa) [1641373]
-- [tools] perf report: Support time percent and multiple time ranges (Jiri Olsa) [1641373]
-- [tools] perf tools: Create function to perform multiple time range checking (Jiri Olsa) [1641373]
-- [tools] perf tools: Create function to parse time percent (Jiri Olsa) [1641373]
-- [tools] perf record: Record the first and last sample time in the header (Jiri Olsa) [1641373]
-- [tools] perf header: Add infrastructure to record first and last sample time (Jiri Olsa) [1641373]
-- [tools] perf report: Fix a no annotate browser displayed issue (Jiri Olsa) [1641373]
-- [tools] perf report: Fix a wrong offset issue when using /proc/kcore (Jiri Olsa) [1641373]
-- [tools] perf tools: Fix compile error with libunwind x86 (Jiri Olsa) [1641373]
-- [tools] perf test bpf: Hook on epoll_pwait() (Jiri Olsa) [1641373]
-- [tools] perf tests bpf: Use SyS_epoll_wait alias (Jiri Olsa) [1641373]
-- [tools] perf test bpf: Use designated struct field initializers (Jiri Olsa) [1641373]
-- [tools] perf tools: Remove string.h, unistd.h and sys/stat.h from util.h (Jiri Olsa) [1641373]
-- [tools] perf test: Add libbpf pinning test (Jiri Olsa) [1641373]
-- [tools] perf test: Check environment before start real BPF test (Jiri Olsa) [1641373]
-- [tools] perf test bpf: Use epoll_wait() instead of epoll_pwait() (Jiri Olsa) [1641373]
-- [tools] perf test: Remove "test" and similar strings from test descriptions (Jiri Olsa) [1641373]
-- [tools] perf test: Print result for each BPF subtest (Jiri Olsa) [1641373]
-- [tools] perf test bpf: Improve message about expected samples (Jiri Olsa) [1641373]
-- [tools] perf test: Fix 'perf test BPF' when it fails to find a suitable vmlinux (Jiri Olsa) [1641373]
-- [tools] perf tools: Auto-complete for events with ':' (Jiri Olsa) [1641373]
-- [tools] perf tools: Return all events as auto-completions after comma (Jiri Olsa) [1641373]
-- [tools] perf tool: Improve bash command line auto-complete for multiple events with comma (Jiri Olsa) [1641373]
-- [tools] perf probe arm64: Fix symbol fixup issues due to ELF type (Jiri Olsa) [1641373]
-- [tools] perf evsel: Enable ignore_missing_thread for pid option (Jiri Olsa) [1641373]
-- [tools] perf s390: Always build with -fPIC (Jiri Olsa) [1641373]
-- [tools] revert "perf s390: Always build with -fPIC" (Jiri Olsa) [1641373]
-- [tools] perf probe: Support escaped character in parser (Jiri Olsa) [1641373]
-- [tools] perf string: Add {strdup, strpbrk}_esc() (Jiri Olsa) [1641373]
-- [tools] perf probe: Find versioned symbols from map (Jiri Olsa) [1641373]
-- [tools] perf probe: Add __return suffix for return events (Jiri Olsa) [1641373]
-- [tools] perf probe: Cut off the version suffix from event name (Jiri Olsa) [1641373]
-- [tools] perf probe: Add warning message if there is unexpected event name (Jiri Olsa) [1641373]
-- [tools] perf env: Adopt perf_env__arch() from the annotate code (Jiri Olsa) [1641373]
-- [tools] perf annotate: Use perf_env when obtaining the arch name (Jiri Olsa) [1641373]
-- [tools] perf annotate: Get the cpuid from evsel->evlist->env in symbol__annotate() (Jiri Olsa) [1641373]
-- [tools] perf trace: Use generated syscall table on s390 too (Jiri Olsa) [1641373]
-- [tools] perf s390: Generate system call table from asm/unistd.h (Jiri Olsa) [1641373]
-- [tools] perf perf: Remove duplicate includes (Jiri Olsa) [1641373]
-- [tools] perf test: Handle properly readdir DT_UNKNOWN (Jiri Olsa) [1641373]
-- [tools] perf utils: Move is_directory() to path.h (Jiri Olsa) [1641373]
-- [tools] perf stat: Resort '--per-thread' result (Jiri Olsa) [1641373]
-- [tools] perf stat: Remove --per-thread pid/tid limitation (Jiri Olsa) [1641373]
-- [tools] perf thread_map: Enumerate all threads from /proc (Jiri Olsa) [1641373]
-- [tools] perf stat: Update or print per-thread stats (Jiri Olsa) [1641373]
-- [tools] perf stat: Allocate shadow stats buffer for threads (Jiri Olsa) [1641373]
-- [tools] perf stat: Remove a set of shadow stats static variables (Jiri Olsa) [1641373]
-- [tools] perf stat: Print per-thread shadow stats (Jiri Olsa) [1641373]
-- [tools] perf stat: Update per-thread shadow stats (Jiri Olsa) [1641373]
-- [tools] perf stat: Create the runtime_stat init/exit function (Jiri Olsa) [1641373]
-- [tools] perf stat: Extend rbtree to support per-thread shadow stats (Jiri Olsa) [1641373]
-- [tools] perf stat: Define a structure for per-thread shadow stats (Jiri Olsa) [1641373]
-- [tools] perf report: Set browser mode right before setup_browser() (Jiri Olsa) [1641373]
-- [tools] perf c2c: Add a tip about cacheline events (Jiri Olsa) [1641373]
-- [tools] perf pmu: Add check for valid cpuid in perf_pmu__find_map() (Jiri Olsa) [1641373]
-- [tools] perf vendor events arm64: Add ThunderX2 implementation defined pmu core events (Jiri Olsa) [1641373]
-- [tools] perf tools arm64: Add support for get_cpuid_str function (Jiri Olsa) [1641373]
-- [tools] perf pmu: Pass pmu as a parameter to get_cpuid_str() (Jiri Olsa) [1641373]
-- [tools] perf s390: Always build with -fPIC (Jiri Olsa) [1641373]
-- [tools] perf thread_map: Add method to map all threads in the system (Jiri Olsa) [1641373]
-- [tools] perf stat: Add rbtree node_delete op (Jiri Olsa) [1641373]
-- [tools] perf rblist: Create rblist__exit() function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Fix objdump comment parsing for Intel mov dissassembly (Jiri Olsa) [1641373]
-- [tools] perf annotate: Fix unnecessary memory allocation for s390x (Jiri Olsa) [1641373]
-- [tools] perf bench futex: Sync waker threads (Jiri Olsa) [1641373]
-- [tools] tools build feature: Check if pthread_barrier_t is available (Jiri Olsa) [1641373]
-- [tools] perf bench futex: Use cpumaps (Jiri Olsa) [1641373]
-- [tools] perf intel-pt: Improve build messages for files that differ from the kernel (Jiri Olsa) [1641373]
-- [tools] perf report: Fix -D output for user metadata events (Jiri Olsa) [1641373]
-- [tools] perf buildid-cache: Document for Node.js USDT (Jiri Olsa) [1641373]
-- [tools] perf script: Allow computing 'perf stat' style metrics (Jiri Olsa) [1641373]
-- [tools] perf record: Synthesize thread map and cpu map (Jiri Olsa) [1641373]
-- [tools] perf record: Synthesize unit/scale/... in event update (Jiri Olsa) [1641373]
-- [tools] perf test: Disable test cases 19 and 20 on s390x (Jiri Olsa) [1641373]
-- [tools] tools headers: Follow the upstream UAPI header version 100 differ from the kernel (Jiri Olsa) [1641373]
-- [tools] perf tools: Move symbol__calc_percent() call to outside symbol__disassemble() (Jiri Olsa) [1641373]
-- [tools] perf tools: Change (symbol|annotation)__calc_percent return type to void (Jiri Olsa) [1641373]
-- [tools] perf top: Fix crash when annotating symbol (Jiri Olsa) [1641373]
-- [tools] perf callchain: Reset cursor arg instead of callchain_cursor (Jiri Olsa) [1641373]
-- [tools] perf buildid-cache: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf evlist: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf sched: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf timechart: Document missing --force option (Jiri Olsa) [1641373]
-- [tools] perf trace: Document missing option, colons (Jiri Olsa) [1641373]
-- [tools] perf inject: Document missing options (Jiri Olsa) [1641373]
-- [tools] perf lock: Document missing options (Jiri Olsa) [1641373]
-- [tools] perf evsel: Say which PMU Hardware event doesn't support sampling/overflow-interrupts (Jiri Olsa) [1641373]
-- [tools] perf c2c: Fix spelling mistakes in browser help text (Jiri Olsa) [1641373]
-- [tools] perf top: Remove a duplicate word (Jiri Olsa) [1641373]
-- [tools] perf top: Document missing options (Jiri Olsa) [1641373]
-- [tools] perf script: Allow printing period for non freq mode groups (Jiri Olsa) [1641373]
-- [tools] perf tools: Document some missing perf.data headers (Jiri Olsa) [1641373]
-- [tools] perf buildid-cache: Update help text for purge command (Jiri Olsa) [1641373]
-- [tools] perf tests: Add missing WRITE_ASS for new fields of perf_event_attr (Jiri Olsa) [1641373]
-- [tools] perf evsel: Enable type checking for perf_evsel_config_term types (Jiri Olsa) [1641373]
-- [tools] perf annotate: Align source and offset lines (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Add disasm_line__write function (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Use struct annotation_line in browser top (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Use struct annotation_line in find functions (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Use struct annotation_line in browser_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Change offsets to struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Change selection to struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Rename disasm_line__browser to browser_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Rename struct browser_disasm_line to browser_line (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Do not pass nr_events in disasm_rb_tree__insert (Jiri Olsa) [1641373]
-- [tools] perf annotate browser: Use samples data from struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate: Factor annotation_line__print from disasm_line__print (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line__print function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Remove struct source_line (Jiri Olsa) [1641373]
-- [tools] perf annotate: Remove disasm__calc_percent function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Remove disasm__calc_percent() from annotate_browser__calc_percent() (Jiri Olsa) [1641373]
-- [tools] perf annotate: Remove disasm__calc_percent() from disasm_line__print() (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add symbol__calc_lines function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add symbol__calc_percent function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add samples into struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotated_source__purge function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line__(new|delete) functions (Jiri Olsa) [1641373]
-- [tools] perf annotate: Move rb_node to struct annotation_line (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line__add function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line__next function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add evsel into struct annotation_line_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add offset/line/line_nr into struct annotate_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add map into struct annotate_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add arch into struct annotate_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add struct annotate_args (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add symbol__annotate function (Jiri Olsa) [1641373]
-- [tools] perf annotate: Move ipc/cycles into annotation_line struct (Jiri Olsa) [1641373]
-- [tools] perf annotate: Move line/offset into annotation_line struct (Jiri Olsa) [1641373]
-- [tools] perf annotate: Add annotation_line struct (Jiri Olsa) [1641373]
-- [tools] perf clang: Compile BPF script using builtin clang support (Jiri Olsa) [1641373]
-- [tools] perf clang: Support compile IR to BPF object and add testcase (Jiri Olsa) [1641373]
-- [tools] perf clang: Update test case to use real BPF script (Jiri Olsa) [1641373]
-- [tools] perf clang: Allow passing CFLAGS to builtin clang (Jiri Olsa) [1641373]
-- [tools] perf clang: Use real file system for #include (Jiri Olsa) [1641373]
-- [tools] perf clang: Add builtin clang support ant test case (Jiri Olsa) [1641373]
-- [tools] perf llvm: Extract helpers in llvm-utils.c (Jiri Olsa) [1641373]
-- [tools] perf bpf: fix typo: "ehough" -> "enough" (Jiri Olsa) [1641373]
-- [tools] perf bpf: Support BPF program attach to tracepoints (Jiri Olsa) [1641373]
-- [tools] perf bpf: Rename bpf__foreach_tev() to bpf__foreach_event() (Jiri Olsa) [1641373]
-- [tools] perf llvm: Allow dump llvm output object file using llvm.dump-obj (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Rename bpf_map__get_fd() to bpf_map__fd() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Use IS_ERR() reporting macros with bpf_map__get_def() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Rename bpf_map__get_name() to bpf_map__name() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Use IS_ERR() reporting macros with bpf_map__get_private() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Add libbpf_get_error() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Remove _get_ from non-refcount method names (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Make bpf_program__get_private() use IS_ERR() (Jiri Olsa) [1641373]
-- [tools] tools lib bpf: Rename set_private() to set_priv() (Jiri Olsa) [1641373]
-- [tools] perf bpf: Automatically create bpf-output event __bpf_stdout__ (Jiri Olsa) [1641373]
-- [tools] perf bpf: Clone bpf stdout events in multiple bpf scripts (Jiri Olsa) [1641373]
-- [tools] perf tools: Introduce bpf-output event (Jiri Olsa) [1641373]
-- [tools] perf tools: Apply tracepoint event definition options to BPF script (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable indices setting syntax for BPF map (Jiri Olsa) [1641373]
-- [tools] perf tools: Support setting different slots in a BPF map separately (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable passing event to BPF object (Jiri Olsa) [1641373]
-- [tools] perf record: Apply config to BPF objects before recording (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable BPF object configure syntax (Jiri Olsa) [1641373]
-- [tools] tools Adopt strstarts() from the kernel (Jiri Olsa) [1641373]
-- [tools] perf bpf: Rename bpf_prog_priv__clear() to clear_prog_priv() (Jiri Olsa) [1641373]
-- [tools] perf test: Add libbpf relocation checker (Jiri Olsa) [1641373]
-- [tools] perf build: Use FEATURE-DUMP in bpf subproject (Jiri Olsa) [1641373]
-- [tools] perf tools: Make perf depend on libbpf (Jiri Olsa) [1641373]
-- [tools] perf mmap: Simplify perf_mmap__read_init() (Jiri Olsa) [1641373]
-- [tools] perf mmap: Simplify perf_mmap__read_event() (Jiri Olsa) [1641373]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for bpf (Jiri Olsa) [1641373]
-- [tools] perf evlist: Remove 'overwrite' parameter from perf_evlist__mmap (Jiri Olsa) [1641373]
-- [tools] perf bpf: Add API to set values to map entries in a bpf object (Jiri Olsa) [1641373]
-- [tools] perf bpf: Rename bpf config to program config (Jiri Olsa) [1641373]
-- [tools] perf test: Print result for each LLVM subtest (Jiri Olsa) [1641373]
-- [tools] perf bpf: Use same BPF program if arguments are identical (Jiri Olsa) [1641373]
-- [tools] perf test: Test the BPF prologue adding infrastructure (Jiri Olsa) [1641373]
-- [tools] perf bpf: Generate prologue for BPF programs (Jiri Olsa) [1641373]
-- [tools] perf bpf: Add prologue for BPF programs for fetching arguments (Jiri Olsa) [1641373]
-- [tools] perf bpf: Allow BPF program config probing options (Jiri Olsa) [1641373]
-- [tools] perf bpf: Allow attaching BPF programs to modules symbols (Jiri Olsa) [1641373]
-- [tools] perf bpf: Allow BPF program attach to uprobe events (Jiri Olsa) [1641373]
-- [tools] perf test: Fix build of BPF and LLVM on older glibc libraries (Jiri Olsa) [1641373]
-- [tools] perf evsel: Do not use globals in config() (Jiri Olsa) [1641373]
-- [tools] perf test: Add 'perf test BPF' (Jiri Olsa) [1641373]
-- [tools] perf test: enhance the llvm tests: add kbuild test (Jiri Olsa) [1641373]
-- [tools] perf test: enhance the llvm test: update basic BPF test program (Jiri Olsa) [1641373]
-- [tools] perf tools: Make fetch_kernel_version() publicly available (Jiri Olsa) [1641373]
-- [tools] perf llvm: Pass LINUX_VERSION_CODE to BPF program when compiling (Jiri Olsa) [1641373]
-- [tools] perf llvm: Pass number of configured CPUs to clang compiler (Jiri Olsa) [1641373]
-- [tools] perf bpf: Mute libbpf when '-v' not set (Jiri Olsa) [1641373]
-- [tools] perf test: Keep test result clean if '-v' not set (Jiri Olsa) [1641373]
-- [tools] perf bpf: Improve BPF related error messages (Jiri Olsa) [1641373]
-- [tools] bpf tools: Improve libbpf error reporting (Jiri Olsa) [1641373]
-- [tools] perf tools: Compile scriptlets to BPF objects when passing '.c' to --event (Jiri Olsa) [1641373]
-- [tools] perf bpf: Attach eBPF filter to perf event (Jiri Olsa) [1641373]
-- [tools] perf bpf: Collect perf_evsel in BPF object files (Jiri Olsa) [1641373]
-- [tools] perf tools: Load eBPF object into kernel (Jiri Olsa) [1641373]
-- [tools] perf tools: Include errno.h where needed (Jiri Olsa) [1641373]
-- [tools] perf tools: Create probe points for BPF programs (Jiri Olsa) [1641373]
-- [tools] perf tools: Enable passing bpf object file to --event (Jiri Olsa) [1641373]
-- [tools] perf ebpf: Add the libbpf glue (Jiri Olsa) [1641373]
-- [tools] bpf tools: New API to get name from a BPF object (Jiri Olsa) [1641373]
-- [tools] perf tests: Add LLVM test for eBPF on-the-fly compiling (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel: Fix linear IP of PEBS real_ip on Haswell and later CPUs (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel/uncore: Fix multi-domain PCI CHA enumeration bug on Skylake servers (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel/uncore: Add missing filter constraint for SKX CHA event (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel: Don't accidentally clear high bits in bdw_limit_period() (Jiri Olsa) [1641373]
-- [kernel] perf/core: Fix ctx_event_type in ctx_resched() (Jiri Olsa) [1641373]
-- [x86] perf/x86/intel/uncore: Fix Skylake UPI event format (Jiri Olsa) [1641373]
-- [x86] events/intel/ds: Add PERF_SAMPLE_PERIOD into PEBS_FREERUNNING_FLAGS (Jiri Olsa) [1641373]
-- [kernel] perf: Export perf_event_update_userpage (Jiri Olsa) [1641373]
-- [tools] perf: Update PERF_RECORD_MISC_* comment for perf_event_header::misc bit 13 (Jiri Olsa) [1641373]
-- [tools] perf: Add sample_id to PERF_RECORD_ITRACE_START event comment (Jiri Olsa) [1641373]
-- [kernel] perf: Allocate context task_ctx_data for child event (Jiri Olsa) [1641373]
-
-* Fri Jan 04 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-987.el7]
-- [kernel] bpf: 32-bit RSH verification must truncate input before the ALU op (Jiri Olsa) [1641388] {CVE-2018-18445}
-- [tools] s390: Disable stress tests (Jiri Olsa) [1657679]
-- [tools] bpf selftest/s390x: Disable test that crosses prog size limit (Jiri Olsa) [1657679]
-- [tools] bpf selftest/s390x: disable bpf-to-bpf call tests (Jiri Olsa) [1657679]
-- [s390] wire up bpf syscall (Jiri Olsa) [1657679]
-- [s390] bpf, s390: fix potential memleak when later bpf_jit_prog fails (Jiri Olsa) [1657679]
-- [s390] bpf, s390x: remove obsolete exception handling from div/mod (Jiri Olsa) [1657679]
-- [s390] bpf: fix net.core.bpf_jit_enable race (Jiri Olsa) [1657679]
-- [s390] bpf, s390x: do not reload skb pointers in non-skb context (Jiri Olsa) [1657679]
-- [s390] bpf: take advantage of stack_depth tracking (Jiri Olsa) [1657679]
-- [s390] bpf, s390x: implement jiting of BPF_J{LT, LE, SLT, SLE} (Jiri Olsa) [1657679]
-- [s390] bpf, s390: fix jit branch offset related to ldimm64 (Jiri Olsa) [1657679]
-- [s390] bpf: Add jited_len to struct bpf_prog (Jiri Olsa) [1657679]
-- [s390] bpf: free up BPF_JMP | BPF_CALL | BPF_X opcode (Jiri Olsa) [1657679]
-- [s390] bpf: make jited programs visible in traces (Jiri Olsa) [1657679]
-- [s390] bpf: remove redundant check for non-null image (Jiri Olsa) [1657679]
-- [kernel] bpf: fix unlocking of jited image when module ronx not set (Jiri Olsa) [1657679]
-- [s390] bpf: fix recache skb->data/hlen for skb_vlan_push/pop (Jiri Olsa) [1657679]
-- [s390] bpf: reduce maximum program size to 64 KB (Jiri Olsa) [1657679]
-- [s390] bpf, s390: add support for constant blinding (Jiri Olsa) [1657679]
-- [s390] bpf: Enable build of trace_bpf* objects (Jiri Olsa) [1657679]
-- [s390] bpf: prepare bpf_int_jit_compile/bpf_prog_select_runtime apis (Jiri Olsa) [1657679]
-- [s390] bpf: remove stubs for cBPF from arch code (Jiri Olsa) [1657679]
-- [s390] bpf: Additional changes to compile trace_bpf_jit* (Jiri Olsa) [1657679]
-- [s390] bpf: Add v4.5 trace_bpf_jit.h (Jiri Olsa) [1657679]
-- [s390] bpf: Add v4.5 trace_bpf_jit_comp.c (Jiri Olsa) [1657679]
-- [s390] bpf: Add v4.5 trace_bpf_jit.S (Jiri Olsa) [1657679]
-- [s390] claim efficient unaligned access (Jiri Olsa) [1657679]
-- [kernel] printk/cache: mark printk_once test variable __read_mostly (Jiri Olsa) [1657679]
-- [scsi] lpfc: do not set queue->page_count to 0 if pc_sli4_params.wqpcnt is invalid (Ewan Milne) [1657981]
-
-* Thu Jan 03 2019 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-986.el7]
-- [scsi] qla2xxx: Update driver version to 10.00.00.12.07.7-k (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix for FC-NVMe discovery for NPIV port (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix NPIV handling for FC-NVMe (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Enable FC-NVME on NPIV ports (Himanshu Madhani) [1628301]
-- [scsi] revert "scsi: qla2xxx: Fix NVMe Target discovery" (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Timeouts occur on surprise removal of QLogic adapter (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Initialize port speed to avoid setting lower speed (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix a typo in MODULE_PARM_DESC (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove two arguments from qlafx00_error_entry() (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Make sure that qlafx00_ioctl_iosb_entry() initializes 'res' (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove a set-but-not-used variable (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Make qla2x00_sysfs_write_nvram() easier to analyze (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Declare local functions 'static' (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Improve several kernel-doc headers (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Modify fall-through annotations (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: fully convert to the generic DMA API (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Simplify conditional check (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove unnecessary self assignment (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Return switch command on a timeout (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move log messages before issuing command to firmware (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix for double free of SRB structure (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix recursive mailbox timeout (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix driver hang when FC-NVMe LUNs are configured (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix re-using LoopID when handle is in use (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix duplicate switch database entries (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix NVMe Target discovery (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix NVMe session hang on unload (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: don't allow negative thresholds (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix comment in MODULE_PARM_DESC in qla2xxx (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove set but not used variable 'ptr_dma' (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: fix typo "CT-PASSTRHU" -> "CT-PASSTHRU" (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix double increment of switch scan retry count (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix duplicate switch's Nport ID entries (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove stale debug trace message from tcm_qla2xxx (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix premature command free (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Reject bsg request if chip is down (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: shutdown chip if reset fail (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix stuck session in PLOGI state (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix early srb free on abort (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add mode control for each physical port (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix race condition for resource cleanup (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix dropped srb resource (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix port speed display on chip reset (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Check for Register disconnect (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Increase abort timeout value (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Allow FC-NVMe underrun to be handled by transport (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move ABTS code behind qpair (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove stale ADISC_DONE event (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix Remote port registration (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove ASYNC GIDPN switch command (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Reduce holding sess_lock to prevent CPU lock-up (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move {get|rel}_sp to base_qpair struct (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add support for ZIO6 interrupt threshold (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix out of order Termination and ABTS response (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add logic to detect ABTS hang and response completion (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add appropriate debug info for invalid RX_ID (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix deadlock between ATIO and HW lock (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Serialize mailbox request (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Terminate Plogi/PRLI if WWN is 0 (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Defer chip reset until target mode is enabled (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix iIDMA error (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove all rports if fabric scan retry fails (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Force fw cleanup on ADISC error (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Turn off IOCB timeout timer on IOCB completion (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Decrement login retry count for only plogi (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move rport registration out of internal work_list (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Remove redundant check for fcport deletion (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Update rscn_rcvd field to more meaningful scan_needed (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Use correct qpair for ABTS/CMD (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix incorrect port speed being set for FC adapters (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix process response queue for ISP26XX and above (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Migrate NVME N2N handling into state machine (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Save frame payload size from ICB (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix stalled relogin (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix race between switch cmd completion and timeout (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix Management Server NPort handle reservation logic (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Flush mailbox commands on chip reset (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix unintended Logout (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix session state stuck in Get Port DB (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix redundant fc_rport registration (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Silent erroneous message (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Prevent sysfs access when chip is down (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Add longer window for chip reset (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix login retry count (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix N2N link re-connect (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Cleanup for N2N code (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: remove irq save in qla2x00_poll() (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: remove the unused tcm_qla2xxx_cmd_wq (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix TMF and Multi-Queue config (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Convert QLA_TGT_ABTS to TARGET_SCF_LOOKUP_LUN_FROM_TAG (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Prevent relogin loop by removing stale code (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Use predefined get_datalen_for_atio() inline function (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix Inquiry command being dropped in Target mode (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Move GPSC and GFPNID out of session management (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Reduce redundant ADISC command for RSCNs (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Delete session for nport id change (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix Rport and session state getting out of sync (Himanshu Madhani) [1628301]
-- [scsi] qla2xxx: Fix sending ADISC command for login (Himanshu Madhani) [1628301]
-- [scsi] megaraid_sas_fusion: Mark expected switch fall-through (Tomas Henzl) [1642946]
-- [scsi] megaraid: megaraid_sas_base: Mark expected switch fall-through (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Add support for MegaRAID Aero controllers (Tomas Henzl) [1649386]
-- [scsi] megaraid_sas: Update driver version (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: modify max supported lds related print (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: remove unused macro (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: increase timeout for IOC INIT to 180seconds (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Remove double endian conversion (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Re-use max_mfi_cmds to calculate queue sizes (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Rename scratch_pad registers (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Remove spin lock for dpc operation (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: optimize raid context access in IO path (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fail init if heartbeat timer fails (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: For SRIOV, do not set STOP_ADP bit (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fix combined reply queue mode detection (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fix module parameter description (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fix goto labels in error handling (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: enable intx only if msix request fails (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Update copyright information (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Add check for reset adapter bit (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Fix msleep granularity (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Add support for FW snap dump (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Add watchdog thread to detect Firmware fault (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: switch to generic DMA API (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: fix a missing-check bug (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Support FW provided TM timeout values (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Return immediately from wait_for_adapter_operational after kill adapter (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Update controller info during resume (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Do not do Kill adapter if GET_CTRL_INFO times out (Tomas Henzl) [1642946]
-- [scsi] treewide: kzalloc() -> kcalloc() (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: fix spelling mistake: "disbale" -> "disable" (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: Do not log an error if FW successfully initializes (Tomas Henzl) [1642946]
-- [scsi] megaraid_sas: whitespace only (Tomas Henzl) [1642946]
-
-* Fri Dec 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-985.el7]
-- [nvme] nvme-pci: move nvme_kill_queues to nvme_remove_dead_ctrl (David Milburn) [1632440]
-
-* Wed Dec 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-984.el7]
-- [gpu] drm/dp_mst: Check if primary mstb is null (Lyude Paul) [1624580]
-- [input] psmouse: fix button reporting for basic protocols (Benjamin Tissoires) [1658669]
-- [input] psmouse: add support for 2nd wheel on A4Tech Dual-Scroll wheel mice (Benjamin Tissoires) [1658669]
-- [kernel] hrtimer: Allow hrtimer::function() to free the timer (Waiman Long) [1616251]
-- [kernel] hrtimer: Fix hrtimer_is_queued() hole (Waiman Long) [1616251]
-- [kernel] hrtimer: Remove HRTIMER_STATE_MIGRATE (Waiman Long) [1616251]
-- [kernel] hrtimer: Keep pointer to first timer and simplify __remove_hrtimer() (Waiman Long) [1616251]
-- [kernel] hrtimer: Use cpu_base->active_base for hotpath iterators (Waiman Long) [1616251]
-- [kernel] hrtimer: Update active_bases before calling hrtimer_force_reprogram() (Waiman Long) [1616251]
-- [kernel] seqlock: Better document raw_write_seqcount_latch() (Waiman Long) [1616251]
-- [kernel] seqcount: Introduce raw_write_seqcount_barrier() (Waiman Long) [1616251]
-- [kernel] seqcount: Rename write_seqcount_barrier() (Waiman Long) [1616251]
-- [kernel] lockdep: Revert lockdep check in raw_seqcount_begin() (Waiman Long) [1616251]
-- [kernel] seqlock: Use raw_ prefix instead of _no_lockdep (Waiman Long) [1616251]
-- [net] seqcount: Add lockdep functionality to seqcount/seqlock structures (Waiman Long) [1616251]
-- [x86] spec_ctrl: Don't report the use of retpoline on Skylake as vulnerable (Waiman Long) [1653428]
-
-* Wed Dec 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-983.el7]
-- [net] page_pool: Fix inconsistent lock state warning (Ivan Vecera) [1657001]
-- [net] xdp: allow page_pool as an allocator type in xdp_return_frame (Ivan Vecera) [1657001]
-- [net] page_pool: refurbish version of page_pool code (Ivan Vecera) [1657001]
-- [net] af_iucv: fix skb handling on HiperTransport xmit error (Hendrik Brueckner) [1644390]
-- [net] af_iucv: drop inbound packets with invalid flags (Hendrik Brueckner) [1644390]
-- [net] sched: cls_flower: Use correct inline function for assignment of vlan tpid (Ivan Vecera) [1653394]
-- [net] sched: flower: Fix null pointer dereference when run tc vlan command (Ivan Vecera) [1653394]
-- [net] sched: flower: Add supprt for matching on QinQ vlan headers (Ivan Vecera) [1653394]
-- [net] sched: flower: Dump the ethertype encapsulated in vlan (Ivan Vecera) [1653394]
-- [net] flow_dissector: Add support for QinQ dissection (Ivan Vecera) [1653394]
-- [net] sched: flower: Add support for matching on vlan ethertype (Ivan Vecera) [1653394]
-- [net] flow_dissector: Save vlan ethertype from headers (Ivan Vecera) [1653394]
-- [net] flow_dissector: Add limit for number of headers to dissect (Ivan Vecera) [1653394]
-- [net] flow_dissector: Cleanup control flow (Ivan Vecera) [1653394]
-- [net] do not abort bulk send on BQL status (Ivan Vecera) [1653881]
-- [net] bql: add __netdev_tx_sent_queue() (Ivan Vecera) [1653881]
-- [net] add documentation for BQL helpers (Ivan Vecera) [1653881]
-- [net] team: no need to do team_notify_peers or team_mcast_rejoin when disabling port (Hangbin Liu) [1651933]
-- [net] netfilter: nf_tables: fix oob access (Florian Westphal) [1628910]
-- [net] xfrm: policy: init locks early (Herbert Xu) [1641866]
-- [net] vlan: add support for tunnel offload (Davide Caratti) [1626213]
-- [net] vlan: Keep NETIF_F_HW_CSUM similar to other software devices (Davide Caratti) [1626213]
-- [net] core: make function ___gnet_stats_copy_basic() static (Eelco Chaudron) [1636891]
-- [net] sched: Add hardware specific counters to TC actions (Eelco Chaudron) [1636891]
-- [net] core: Add new basic hardware counter (Eelco Chaudron) [1636891]
-- [fs] sunrpc: safely reallow resvport min/max inversion (Steve Dickson) [1622167]
-- [fs] sunrpc: Prevent resvport min/max inversion via sysfs and module parameter (Steve Dickson) [1622167]
-- [fs] sunrpc: Prevent resvport min/max inversion via sysctl (Steve Dickson) [1622167]
-- [fs] sunrpc: Fix reserved port range calculation (Steve Dickson) [1622167]
-- [fs] fuse: don't need GETATTR after every READ (Miklos Szeredi) [1648781]
-- [fs] fuse: don't invalidate attrs when not using atime (Miklos Szeredi) [1648781]
-- [fs] Don't log expected error on DFS referral request (Leif Sahlberg) [1594377]
-- [fs] sunrpc: correct the computation for page_ptr when truncating (Frank Sorenson) [1640370]
-- [fs] revert "[fs] sunrpc: Ensure we always close the socket after a connection shuts down" (Dave Wysochanski) [1657399]
-
-* Tue Dec 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-982.el7]
-- [infiniband] rdma/uverbs: Expand primary and alt AV port checks (Kamal Heib) [1655897]
-- [infiniband] rdma/uverbs: Don't fail in creation of multiple flows (Kamal Heib) [1655897]
-- [infiniband] rdma/uverbs: Fix slab-out-of-bounds in ib_uverbs_ex_create_flow (Kamal Heib) [1655897]
-- [infiniband] rdma/uverbs: Protect from attempts to create flows on unsupported QP (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: Fix missing completion for mem_reg work requests (Kamal Heib) [1655897]
-- [infiniband] rdma/core: Save kernel caller name when creating CQ using ib_create_cq() (Kamal Heib) [1655897]
-- [rdma] Convert infiniband uverbs to struct_size (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Fix ordering of ucontext check in ib_uverbs_write (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: avoid double kfree skb (Kamal Heib) [1655897]
-- [net] svcrdma: Fix incorrect return value/type in svc_rdma_post_recvs (Kamal Heib) [1655897]
-- [rdma] restrack: Change SPDX tag to properly reflect license (Kamal Heib) [1655897]
-- [infiniband] fix a possible use-after-free bug (Kamal Heib) [1615040 1655897]
-- [infiniband] ib/isert: fix T10-pi check mask setting (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Add support for flow counters (Kamal Heib) [1655897]
-- [rdma] ib/core: Add support for flow counters (Kamal Heib) [1655897]
-- [infiniband] ib/core: Support passing uhw for create_flow (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Add read counters support (Kamal Heib) [1655897]
-- [rdma] ib/core: Introduce counters read verb (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Add create/destroy counters support (Kamal Heib) [1655897]
-- [rdma] ib/core: Introduce counters object and its create/destroy (Kamal Heib) [1655897]
-- [infiniband] ib/uverbs: Add an ib_uobject getter to ioctl() infrastructure (Kamal Heib) [1655897]
-- [net] xprtrdma: Remove transfertypes array (Kamal Heib) [1655897]
-- [net] xprtrdma: Add trace_xprtrdma_dma_map(mr) (Kamal Heib) [1655897]
-- [net] xprtrdma: Wait on empty sendctx queue (Kamal Heib) [1655897]
-- [net] xprtrdma: Move common wait_for_buffer_space call to parent function (Kamal Heib) [1655897]
-- [net] xprtrdma: Return -ENOBUFS when no pages are available (Kamal Heib) [1655897]
-- [infiniband] rdma/mad: Convert BUG_ONs to error flows (Kamal Heib) [1655897]
-- [infiniband] rdma/mad: Delete inaccessible BUG_ON (Kamal Heib) [1655897]
-- [infiniband] rdma/cma: Ignore unknown event (Kamal Heib) [1655897]
-- [infiniband] rdma/cm: Abort loop in case of CM dequeue (Kamal Heib) [1655897]
-- [infiniband] rdma/uverbs: Hoist the common process of disassociate_ucontext into ib core (Kamal Heib) [1655897]
-- [infiniband] rdma/core: Remove indirection through ib_cache_setup() (Kamal Heib) [1655897]
-- [rdma] ib/core: Make testing MR flags for writability a static inline function (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: avoid unnecessary export (Kamal Heib) [1655897]
-- [infiniband] ib/core: Introduce and use rdma_gid_table() (Kamal Heib) [1655897]
-- [infiniband] ib/core: Reduce the places that use zgid (Kamal Heib) [1655897]
-- [infiniband] rdma/ucm: Mark UCM interface as BROKEN (Kamal Heib) [1655897]
-- [infiniband] ib/core: Remove duplicate declaration of gid_cache_wq (Kamal Heib) [1655897]
-- [infiniband] rdma/ipoib: drop skb on path record lookup failure (Kamal Heib) [1655897]
-- [infiniband] rdma/cma: add rdma_iw_cm_id() and rdma_res_to_id() helpers (Kamal Heib) [1655897]
-- [infiniband] rdma/ipoib: Update paths on CLIENT_REREG/SM_CHANGE events (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: avoid calling WARN_ON_ONCE twice (Kamal Heib) [1655897]
-- [infiniband] ib/ipoib: replace local_irq_disable() with proper locking (Kamal Heib) [1655897]
-- [rdma] ib/uverbs: Introduce a MPLS steering match filter (Kamal Heib) [1655897]
-- [uapi] ib/uverbs: Expose MPLS flow spec to the user-kernel ABI header (Kamal Heib) [1655897]
-- [rdma] ib/uverbs: Introduce a GRE steering match filter (Kamal Heib) [1655897]
-- [uapi] ib/uverbs: Expose GRE flow spec to the user-kernel ABI header (Kamal Heib) [1655897]
-- [infiniband] ib/cm: Store and restore ah_attr during CM message processing (Kamal Heib) [1655897]
-- [infiniband] ib/cm: Store and restore ah_attr during LAP msg processing (Kamal Heib) [1655897]
-- [infiniband] ib/cm: Avoid AV ah_attr overwriting during LAP message handling (Kamal Heib) [1655897]
-- [infiniband] ib/core: Remove redundant return (Kamal Heib) [1655897]
-- [infiniband] rdma/nldev: remove mr iova attribute (Kamal Heib) [1596624 1655897]
-- [uapi] rdma/uapi: Fix uapi breakage (Kamal Heib) [1655897]
-- [infiniband] ib: Fix RDMA_RXE and INFINIBAND_RDMAVT dependencies for DMA_VIRT_OPS (Kamal Heib) [1655897]
-- [net] svcrdma: Persistently allocate and DMA-map Send buffers (Kamal Heib) [1655897]
-- [net] svcrdma: Simplify svc_rdma_send() (Kamal Heib) [1655897]
-- [net] svcrdma: Remove post_send_wr (Kamal Heib) [1655897]
-- [net] svcrdma: Don't overrun the SGE array in svc_rdma_send_ctxt (Kamal Heib) [1655897]
-- [net] svcrdma: Introduce svc_rdma_send_ctxt (Kamal Heib) [1655897]
-- [net] svcrdma: Clean up Send SGE accounting (Kamal Heib) [1655897]
-- [net] svcrdma: Refactor svc_rdma_dma_map_buf (Kamal Heib) [1655897]
-- [net] svcrdma: Allocate recv_ctxt's on CPU handling Receives (Kamal Heib) [1655897]
-- [net] svcrdma: Persistently allocate and DMA-map Receive buffers (Kamal Heib) [1655897]
-- [net] svcrdma: Preserve Receive buffer until svc_rdma_sendto (Kamal Heib) [1655897]
-- [net] svcrdma: Simplify svc_rdma_recv_ctxt_put (Kamal Heib) [1655897]
-- [net] svcrdma: Remove sc_rq_depth (Kamal Heib) [1655897]
-- [net] svcrdma: Introduce svc_rdma_recv_ctxt (Kamal Heib) [1655897]
-- [trace] svcrdma: Trace key RDMA API events (Kamal Heib) [1655897]
-- [trace] svcrdma: Trace key RPC/RDMA protocol events (Kamal Heib) [1655897]
-- [net] xprtrdma: Prepare RPC/RDMA includes for server-side trace points (Kamal Heib) [1655897]
-- [net] svcrdma: Use passed-in net namespace when creating RDMA listener (Kamal Heib) [1655897]
-- [net] svcrdma: Add proper SPDX tags for NetApp-contributed source (Kamal Heib) [1655897]
-- [infiniband] ib/core: Reuse gid_table_release_one() in table allocation failure (Kamal Heib) [1655897]
-- [infiniband] ib/core: Make gid_table_reserve_default() return void (Kamal Heib) [1655897]
-- [net] xprtrdma: Make rpcrdma_sendctx_put_locked() a static function (Kamal Heib) [1655897]
-- [net] xprtrdma: Remove rpcrdma_buffer_get_rep_locked() (Kamal Heib) [1655897]
-- [net] xprtrdma: Remove rpcrdma_buffer_get_req_locked() (Kamal Heib) [1655897]
-- [net] xprtrdma: Remove rpcrdma_ep_{post_recv, post_extra_recv} (Kamal Heib) [1655897]
-- [net] xprtrdma: Move Receive posting to Receive handler (Kamal Heib) [1655897]
-- [trace] xprtrdma: Clean up Receive trace points (Kamal Heib) [1655897]
-- [net] xprtrdma: Make rpc_rqst part of rpcrdma_req (Kamal Heib) [1655897]
-- [net] xprtrdma: Introduce ->alloc_slot call-out for xprtrdma (Kamal Heib) [1655897]
-- [net] sunrpc: Add a ->free_slot transport callout (Kamal Heib) [1655897]
-- [net] xprtrdma: Fix max_send_wr computation (Kamal Heib) [1655897]
-- [net] xprtrdma: Create transport's CM ID in the correct network namespace (Kamal Heib) [1655897]
-- [net] xprtrdma: Try to fail quickly if proto=rdma (Kamal Heib) [1655897]
-- [net] xprtrdma: Add proper SPDX tags for NetApp-contributed source (Kamal Heib) [1655897]
-- [infiniband] rdma/nldev: helper functions to add driver attributes (Kamal Heib) [1596624 1655897]
-- [infiniband] rdma/nldev: add driver-specific resource tracking (Kamal Heib) [1596624 1655897]
-- [infiniband] rdma/nldev: Add explicit pad attribute (Kamal Heib) [1596624 1655897]
-- [infiniband] ib/cxgb4: use skb_put_zero()/__skb_put_zero (Kamal Heib) [1655897]
-- [infiniband] ib/core: Use CONFIG_SECURITY_INFINIBAND to compile out security code (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: remove unused function variable (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: change rxe_set_mtu function type to void (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: Change rxe_rcv to return void (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: replace refcount_inc with skb_get (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: optimize the function duplicate_request (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: make rxe_release_udp_tunnel static (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: avoid export symbols (Kamal Heib) [1655897]
-- [infiniband] ib/rxe: make the variable static (Kamal Heib) [1655897]
-- [infiniband] rdma/rdma_cm: Delete rdma_addr_client (Kamal Heib) [1655897]
-- [infiniband] rdma/rdma_cm: Make rdma_addr_cancel into a fence (Kamal Heib) [1655897]
-- [infiniband] rdma/rdma_cm: Remove process_req and timer sorting (Kamal Heib) [1655897]
-- [net] sunrpc: Initialize rpc_rqst outside of xprt->reserve_lock (Kamal Heib) [1655897]
-- [net] sunrpc: Make num_reqs a non-atomic integer (Kamal Heib) [1655897]
-- [net] sunrpc: Make slot allocation more reliable (Kamal Heib) [1655897]
-- [net] treewide: Use array_size() in vzalloc_node() (Kamal Heib) [1655897]
-- [infiniband] treewide: Use array_size() in vzalloc() (Kamal Heib) [1655897]
-- [infiniband] treewide: kzalloc_node() -> kcalloc_node() (Kamal Heib) [1655897]
-- [infiniband] treewide: kzalloc() -> kcalloc() (Kamal Heib) [1655897]
-- [infiniband] treewide: kmalloc() -> kmalloc_array() (Kamal Heib) [1655897]
-- [infiniband] treewide: Use struct_size() for kmalloc()-family (Kamal Heib) [1655897]
-
-* Tue Dec 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-981.el7]
-- [pci] Add "PCIe" to pcie_print_link_status() messages (Eelco Chaudron) [1654186]
-- [pci] Check for PCIe Link downtraining (Eelco Chaudron) [1654186]
-- [tty] wipe buffer if not echoing data (Artem Savkov) [1644050]
-- [tty] wipe buffer (Artem Savkov) [1644050]
-- [tty] add rwsem to close race between copy_from_read_buf calls and reset_buffer_flags (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Fix stall at n_tty_receive_char_special() (Christoph von Recklinghausen) [1649343]
-- [tty] audit: Fix audit source (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Fix auditing support for cannonical mode (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Fix 4096-byte canonical reads (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Remove read_cnt (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Don't wrap input buffer indices at buffer size (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Get read_cnt through accessor (Christoph von Recklinghausen) [1649343]
-- [tty] Deprecate ldisc .chars_in_buffer() method (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Split n_tty_chars_in_buffer() for reader-only interface (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Line copy to user buffer in canonical mode (Christoph von Recklinghausen) [1649343]
-- [tty] n_tty: Factor canonical mode copy from n_tty_read() (Christoph von Recklinghausen) [1649343]
-- [tty] Make ldisc input flow control concurrency-friendly (Christoph von Recklinghausen) [1649343]
-- [tty] Simplify tty buffer/ldisc interface with helper function (Christoph von Recklinghausen) [1649343]
-- [pinctrl] sunrisepoint: Align GPIO number space with Windows (Steve Best) [1653546]
-- [kernel] workqueue: remove keventd_up() (Artem Savkov) [1637827]
-- [lib] debugobj, workqueue: remove keventd_up() usage (Artem Savkov) [1637827]
-- [mm] slab, workqueue: remove keventd_up() usage (Artem Savkov) [1637827]
-- [tty] workqueue: remove keventd_up() usage (Artem Savkov) [1637827]
-- [x86] mce, workqueue: remove keventd_up() usage (Artem Savkov) [1637827]
-- [kernel] workqueue: make workqueue available early during boot (Artem Savkov) [1637827]
-- [kernel] sched, nohz: Exclude isolated cores from load balancing (Phil Auld) [1653437]
-- [kernel] sched: Factor out the on_null_domain() checks in trigger_load_balance() (Phil Auld) [1653437]
-- [kernel] sched: Pass 'struct rq' to on_null_domain() (Phil Auld) [1653437]
-- [kernel] nohz: Fix missing tick reprogram when interrupting an inline softirq (Phil Auld) [1618798]
-- [x86] cpufeatures: Enumerate cldemote instruction (Steve Best) [1482765]
-- [x86] Mark Intel Apollo Lake supported (David Arcari) [1571340]
-
-* Tue Dec 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-980.el7]
-- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Corinna Vinschen) [1654839]
-- [netdrv] igbvf: Replace spin_is_locked() with lockdep (Corinna Vinschen) [1654839]
-- [netdrv] intel-ethernet: use correct module license (Corinna Vinschen) [1654839]
-- [netdrv] igbvf: netdev: Mark expected switch fall-through (Corinna Vinschen) [1654839]
-- [net] geneve, vxlan: Don't set exceptions if skb->len < mtu (Xin Long) [1639235]
-- [net] geneve, vxlan: Don't check skb_dst() twice (Xin Long) [1639235]
-- [net] geneve: cleanup hard coded value for Ethernet header length (Xin Long) [1639235]
-- [net] don't call update_pmtu unconditionally (Xin Long) [1639235]
-- [net] geneve: update skb dst pmtu on tx path (Xin Long) [1639235]
-- [net] vxlan: update skb dst pmtu on tx path (Xin Long) [1639235]
-- [net] unix: properly re-increment inflight counter of GC discarded candidates (Xin Long) [1639008]
-- [net] ipv4: don't let PMTU updates increase route MTU (Sabrina Dubroca) [1601814]
-- [net] ipv4: rate limit updating of next hop exceptions with same pmtu (Sabrina Dubroca) [1601814]
-- [net] ipv4: update fnhe_pmtu when first hop's MTU changes (Sabrina Dubroca) [1601814]
-- [net] dcb: Add dcbnl buffer attribute (Ivan Vecera) [1647161]
-- [net] ethtool: Add support for configuring PFC stall prevention in ethtool (Ivan Vecera) [1647488]
-- [net] igmp: fix incorrect unsolicit report count after link down and up (Hangbin Liu) [1623359]
-- [net] igmp: fix incorrect unsolicit report count when join group (Hangbin Liu) [1623359]
-- [net] igmp: make function __ip_mc_inc_group() static (Hangbin Liu) [1623359]
-- [net] igmp: Reduce Unsolicited report interval to 1s when using IGMPv3 (Hangbin Liu) [1623359]
-- [net] tcp: do not restart timewait timer on rst reception (Florian Westphal) [1623889]
-- [net] pppoe: take ->needed_headroom of lower device into account on xmit (Florian Westphal) [1643335]
-- [net] sock_diag: Fix spectre v1 gadget in __sock_diag_cmd() (Paolo Abeni) [1639772]
-
-* Mon Dec 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-979.el7]
-- [kernel] mm: clear __GFP_FS when PF_MEMALLOC_NOIO is set (Rafael Aquini) [1657714]
-- [mm] mempolicy: clean up __GFP_THISNODE confusion in policy_zonelist (Rafael Aquini) [1613081]
-- [mm] Use overflow helpers in kmalloc_array*() (Waiman Long) [1651847]
-- [mm] faster kmalloc_array(), kcalloc() (Waiman Long) [1651847]
-- [mfd] intel-lpss: Add Ice Lake PCI IDs (Steve Best) [1483480]
-- [mmc] sdhci-pci: Add support for Intel ICP (Gopal Tiwari) [1483495]
-- [ata] libata: whitelist all SAMSUNG MZ7KM* solid-state disks (David Milburn) [1652215]
-- [scsi] libiscsi: Allow sd_shutdown on bad transport (Chris Leech) [1630979]
-- [scsi] mpt3sas: Display message on Configurable secure HBA (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Add support for Aero controllers (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Bump driver version to 27.100.00.00 (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Fix driver modifying persistent data in Manufacturing page11 (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Don't modify EEDPTagMode field setting on SAS3.5 HBA devices (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Fix Sync cache command failure during driver unload (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Call sas_remove_host before removing the target devices (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Refactor mpt3sas_wait_for_ioc function (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Separate out mpt3sas_wait_for_ioc (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Added new #define variable IOC_OPERATIONAL_WAIT_COUNT (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Update MPI headers to support Aero controllers (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: switch to generic DMA API (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Remove unnecessary parentheses and simplify null checks (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Use dma_pool_zalloc (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Remove unused macro MPT3SAS_FMT (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: remove remaining use of MPT3SAS_FMT (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Convert logging uses with MPT3SAS_FMT without logging levels (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Remove KERN_WARNING from panic uses (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Convert logging uses with MPT3SAS_FMT and reply_q_name to s: (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Convert mlsleading uses of pr_<level> with MPT3SAS_FMT (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Convert uses of pr_<level> with MPT3SAS_FMT to ioc_<level> (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Add ioc_<level> logging macros (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Improve kernel-doc headers (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Split _base_reset_handler(), mpt3sas_scsih_reset_handler() and mpt3sas_ctl_reset_handler() (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Fix a race condition in mpt3sas_base_hard_reset_handler() (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Introduce struct mpt3sas_nvme_cmd (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Annotate switch/case fall-through (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Remove set-but-not-used variables (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Fix indentation (Tomas Henzl) [1642370]
-- [scsi] scripts/spelling.txt: add "overwritting" pattern and fix typo instances (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Update driver version "26.100.00.00" (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: As per MPI-spec, use combined reply queue for SAS3.5 controllers when HBA supports more than 16 MSI-x vectors (Tomas Henzl) [1649288]
-- [scsi] mpt3sas: Fix, False timeout prints for ioctl and other internal commands during controller reset (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Don't access the structure after decrementing it's instance reference count (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Incorrect command status was set/marked as not used (Tomas Henzl) [1642370]
-- [scsi] mpt3sas: Don't abort I/Os issued to NVMe drives while processing Async Broadcast primitive event (Tomas Henzl) [1642370]
-
-* Fri Dec 14 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-978.el7]
-- [netdrv] aquantia: fix rx checksum offload bits (Igor Russkikh) [1648333]
-- [netdrv] aquantia: allow rx checksum offload configuration (Igor Russkikh) [1648333]
-- [netdrv] aquantia: invalid checksumm offload implementation (Igor Russkikh) [1648333]
-- [netdrv] aquantia: fixed enable unicast on 32 macvlan (Igor Russkikh) [1648333]
-- [netdrv] aquantia: fix potential IOMMU fault after driver unbind (Igor Russkikh) [1648333]
-- [netdrv] aquantia: synchronized flow control between mac/phy (Igor Russkikh) [1648333]
-- [netdrv] aquantia: remove some redundant variable initializations (Igor Russkikh) [1648333]
-- [netdrv] aquantia: fix hw_atl_utils_fw_upload_dwords (Igor Russkikh) [1648333]
-- [netdrv] aquantia: Make some functions static (Igor Russkikh) [1648333]
-- [netdrv] aquantia: Implement rx/tx flow control ethtools callback (Igor Russkikh) [1648333]
-- [netdrv] aquantia: Improve adapter init/deinit logic (Igor Russkikh) [1648333]
-- [netdrv] ena: update driver version from 2.0.1 to 2.0.2 (John Linville) [1633418]
-- [netdrv] ena: fix crash during ena_remove() (John Linville) [1633418]
-- [netdrv] ena: fix crash during failed resume from hibernation (John Linville) [1633418]
-- [netdrv] ena: enable Low Latency Queues (John Linville) [1633418]
-- [netdrv] ena: Fix Kconfig dependency on X86 (John Linville) [1633418]
-- [netdrv] ena: fix indentations in ena_defs for better readability (John Linville) [1633418]
-- [netdrv] ena: update driver version to 2.0.1 (John Linville) [1633418]
-- [netdrv] ena: remove redundant parameter in ena_com_admin_init() (John Linville) [1633418]
-- [netdrv] ena: change rx copybreak default to reduce kernel memory pressure (John Linville) [1633418]
-- [netdrv] ena: limit refill Rx threshold to 256 to avoid latency issues (John Linville) [1633418]
-- [netdrv] ena: explicit casting and initialization, and clearer error handling (John Linville) [1633418]
-- [netdrv] ena: use CSUM_CHECKED device indication to report skb's checksum status (John Linville) [1633418]
-- [netdrv] ena: add functions for handling Low Latency Queues in ena_netdev (John Linville) [1633418]
-- [netdrv] ena: add functions for handling Low Latency Queues in ena_com (John Linville) [1633418]
-- [netdrv] ena: introduce Low Latency Queues data structures according to ENA spec (John Linville) [1633418]
-- [netdrv] ena: complete host info to match latest ENA spec (John Linville) [1633418]
-- [netdrv] ena: minor performance improvement (John Linville) [1633418]
-- [netdrv] ena: fix auto casting to boolean (John Linville) [1633418]
-- [netdrv] ena: fix NULL dereference due to untimely napi initialization (John Linville) [1633418]
-- [netdrv] ena: fix rare bug when failed restart/resume is followed by driver removal (John Linville) [1633418]
-- [netdrv] ena: fix warning in rmmod caused by double iounmap (John Linville) [1633418]
-- [netdrv] ena: remove ndo_poll_controller (John Linville) [1633418]
-- [netdrv] ena: fix incorrect usage of memory barriers (John Linville) [1633418]
-- [netdrv] ena: fix missing calls to READ_ONCE (John Linville) [1633418]
-- [netdrv] ena: fix missing lock during device destruction (John Linville) [1633418]
-- [netdrv] ena: fix potential double ena_destroy_device() (John Linville) [1633418]
-- [netdrv] ena: fix device destruction to gracefully free resources (John Linville) [1633418]
-- [netdrv] ena: fix driver when PAGE_SIZE == 64kB (John Linville) [1633418]
-- [netdrv] ena: fix surprise unplug NULL dereference kernel crash (John Linville) [1633418]
-- [netdrv] ena: Fix use of uninitialized DMA address bits field (John Linville) [1633418]
-- [netdrv] ena: Eliminate duplicate barriers on weakly-ordered archs (John Linville) [1633418]
-- [thunderbolt] Add Intel as copyright holder (Jarod Wilson) [1588927]
-- [thunderbolt] Convert rest of the driver files to use SPDX identifier (Jarod Wilson) [1588927]
-- [thunderbolt] Print connected devices (Jarod Wilson) [1588927]
-- [thunderbolt] Make the driver less verbose (Jarod Wilson) [1588927]
-- [thunderbolt] Remove a meaningless NULL pointer check before dma_pool_destroy (Jarod Wilson) [1588927]
-- [thunderbolt] Initialize after IOMMUs (Jarod Wilson) [1588927]
-- [thunderbolt] Do not handle ICM events after domain is stopped (Jarod Wilson) [1588927]
-- [thunderbolt] Add support for runtime PM (Jarod Wilson) [1588927]
-- [thunderbolt] Remove redundant variable 'approved' (Jarod Wilson) [1588927]
-- [thunderbolt] Use correct ICM commands in system suspend (Jarod Wilson) [1588927]
-- [thunderbolt] No need to take tb->lock in domain suspend/complete (Jarod Wilson) [1588927]
-- [thunderbolt] Do not unnecessarily call ICM get route (Jarod Wilson) [1588927]
-- [thunderbolt] Use 64-bit DMA mask if supported by the platform (Jarod Wilson) [1588927]
-- [thunderbolt] Fix small typo in variable name (Jarod Wilson) [1588927]
-
-* Wed Dec 12 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-977.el7]
-- [pinctrl] intel: Add Ice Lake PCH pin controller support (Steve Best) [1483412]
-- [fs] mm: /proc/pid/pagemap: hide swap entries from unprivileged users (Joe Lawrence) [1522595]
-- [fs] mm, pagemap: fix swap offset value for PMD migration entry (Joe Lawrence) [1522595]
-- [tools] pagemap: add mmap-exclusive bit for marking pages mapped only here (Joe Lawrence) [1522595]
-- [fs] pagemap: hide physical addresses from non-privileged users (Joe Lawrence) [1522595]
-- [fs] pagemap: rework hugetlb and thp report (Joe Lawrence) [1522595]
-- [tools] pagemap: switch to the new format and do some cleanup (Joe Lawrence) [1522595]
-- [tools] vm/page-types.c: support KPF_SOFTDIRTY bit (Joe Lawrence) [1522595]
-- [fs] mm: softdirty: unmapped addresses between VMAs are clean (Joe Lawrence) [1522595]
-- [fs] mm: softdirty: addresses before VMAs in PTE holes aren't softdirty (Joe Lawrence) [1522595]
-- [fs] mm: softdirty: respect VM_SOFTDIRTY in PTE holes (Joe Lawrence) [1522595]
-- [fs] pagemap: check permissions and capabilities at open time (Joe Lawrence) [1522595]
-- [fs] pagemap: do not leak physical addresses to non-privileged userspace (Joe Lawrence) [1522595]
-- [pci] shpchp: Separate existence of SHPC and permission to use it (Myron Stowe) [1633873]
-- [pci] shpchp: Manage SHPC unconditionally on non-ACPI systems (Myron Stowe) [1633873]
-- [pci] shpchp: Fix AMD POGO identification (Myron Stowe) [1633873]
-- [s390] qeth: fix length check in SNMP processing (Hendrik Brueckner) [1656015]
-- [s390] qeth: report 25Gbit link speed (Hendrik Brueckner) [1640651]
-- [s390] qeth: use LINK_MODE_* to report the link characteristics (Hendrik Brueckner) [1640651]
-- [s390] qeth: convert to ETHTOOL_GLINKSETTINGS API (Hendrik Brueckner) [1640651]
-- [s390] qeth: clean up qeth_set_ecmd_adv_sup() (Hendrik Brueckner) [1640651]
-- [s390] qeth: sanitize strings in debug messages (Hendrik Brueckner) [1652059]
-- [s390] qeth: remove outdated portname debug msg (Hendrik Brueckner) [1652059]
-- [s390] qeth: Fix potential array overrun in cmd/rc lookup (Hendrik Brueckner) [1652051]
-- [s390] qeth_core_mpc: Use ARRAY_SIZE instead of reimplementing its function (Hendrik Brueckner) [1652051]
-- [s390] kdump: Make elfcorehdr size calculation ABI compliant (Hendrik Brueckner) [1656017]
-- [s390] kdump: Fix elfcorehdr size calculation (Hendrik Brueckner) [1656017]
-
-* Tue Dec 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-976.el7]
-- [fs] userfaultfd: check VM_MAYWRITE was set after verifying the uffd is registered (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [netdrv] phy: add phy_speed_down and phy_speed_up (Ivan Vecera) [1655590]
-- [netdrv] phy: add helper phy_config_aneg (Ivan Vecera) [1655590]
-- [netdrv] phy: fix flag masking in __set_phy_supported (Ivan Vecera) [1655590]
-- [netdrv] phy: allow scanning busses with missing phys (Ivan Vecera) [1655590]
-- [netdrv] phy: remove parameter new_link from phy_mac_interrupt() (Ivan Vecera) [1655590]
-- [kernel] phy: core: use genphy version of callbacks read_status and config_aneg per default (Ivan Vecera) [1655590]
-- [net] ethtool: remove error check for legacy setting transceiver type (Ivan Vecera) [1655590]
-- [netdrv] phy: Keep reporting transceiver type (Ivan Vecera) [1655590]
-- [uapi] ethtool: Add back transceiver type (Ivan Vecera) [1655590]
-- [kernel] phy: Remove trailing semicolon in macro definition (Ivan Vecera) [1655590]
-- [netdrv] phy: hook up clause 45 autonegotiation restart (Ivan Vecera) [1655590]
-- [netdrv] phy: avoid genphy_aneg_done() for PHYs without clause 22 support (Ivan Vecera) [1655590]
-- [netdrv] phy: add 802.3 clause 45 support to phylib (Ivan Vecera) [1655590]
-- [netdrv] phy: test the right variable in phy_write_mmd() (Ivan Vecera) [1655590]
-- [netdrv] phy: restart phy autonegotiation after EEE advertisment change (Ivan Vecera) [1655590]
-- [netdrv] phy: avoid setting unsupported EEE advertisments (Ivan Vecera) [1655590]
-- [netdrv] phy: clean up mmd_phy_indirect() (Ivan Vecera) [1655590]
-- [netdrv] phy: remove the indirect MMD read/write methods (Ivan Vecera) [1655590]
-- [netdrv] phy: switch remaining users to phy_(read|write)_mmd() (Ivan Vecera) [1655590]
-- [netdrv] phy: make phy_(read|write)_mmd() generic MMD accessors (Ivan Vecera) [1655590]
-- [netdrv] phy: move phy MMD accessors to phy-core.c (Ivan Vecera) [1655590]
-- [netdrv] phy: Add missing driver check in phy_aneg_done() (Ivan Vecera) [1655590]
-- [netdrv] phy: Check phydev->drv (Ivan Vecera) [1655590]
-- [netdrv] phy: Fix PHY unbind crash (Ivan Vecera) [1655590]
-- [netdrv] phy: Add phy_ethtool_nway_reset (Ivan Vecera) [1655590]
-- [netdrv] phy: add phy_ethtool_{get|set}_link_ksettings (Ivan Vecera) [1655590]
-- [netdrv] mdio_bus: Fix MDIO bus scanning in __mdiobus_register() (Ivan Vecera) [1655590]
-- [netdrv] phylib: don't return NULL from get_phy_device() (Ivan Vecera) [1655590]
-- [netdrv] phy: add generic function to support ksetting support (Ivan Vecera) [1655590]
-- [netdrv] phy: Add API for {un}registering an mdio device to a bus (Ivan Vecera) [1655590]
-- [netdrv] phy: Add an mdio_device structure (Ivan Vecera) [1655590]
-- [netdrv] phy: Centralise print about attached phy (Ivan Vecera) [1655590]
-- [netdrv] phy: phy_{read|write}_mmd_indirect: get addr from phydev (Ivan Vecera) [1655590]
-- [netdrv] phy: add phydev_name() wrapper (Ivan Vecera) [1655590]
-- [kernel] phy: Add phydev_err() and phydev_dbg() macros (Ivan Vecera) [1655590]
-- [kernel] phy: Consistently use addr for address on an MII bus (Ivan Vecera) [1655590]
-- [netdrv] phylib: Add phy_set_max_speed helper (Ivan Vecera) [1655590]
-- [netdrv] phy: add locking to phy_read_mmd_indirect()/phy_write_mmd_indirect() (Ivan Vecera) [1655590]
-- [netdrv] phy: Support setting polarity in marvell phy driver (Ivan Vecera) [1655590]
-- [netdrv] phy: Pass mdix ethtool setting through to phy driver (Ivan Vecera) [1655590]
-- [netdrv] phy: avoid suspending twice a PHY (Ivan Vecera) [1655590]
-- [netdrv] phy: keep track of the PHY suspend state (Ivan Vecera) [1655590]
-- [netdrv] phy: utilize phy_suspend and phy_resume (Ivan Vecera) [1655590]
-- [netdrv] phy: Invalidate LP advertising flags when restarting or disabling AN (Ivan Vecera) [1655590]
-- [netdrv] phy: fix EEE checks inside the phy_init_eee (Ivan Vecera) [1655590]
-- [netdrv] phy: allow phy_init_eee() to work with internal PHYs (Ivan Vecera) [1655590]
-- [kernel] phy: export phy_{read,write}_mmd_indirect (Ivan Vecera) [1655590]
-- [netdrv] libphy: Add phy specific function to access mmd phy registers (Ivan Vecera) [1655590]
-- [netdrv] phy: export phy_suspend and phy_resume (Ivan Vecera) [1655590]
-- [netdrv] phy: fix uninitalized ethtool_wolinfo in phy_suspend (Ivan Vecera) [1655590]
-- [netdrv] phy: move PHY software reset to genphy_soft_reset (Ivan Vecera) [1655590]
-- [netdrv] phy: update port type for MoCA PHYs (Ivan Vecera) [1655590]
-- [kernel] phy: add MoCA PHY type (Ivan Vecera) [1655590]
-- [netdrv] phy: report link partner features through ethtool (Ivan Vecera) [1655590]
-- [kernel] phy: breakdown PHY_*_FEATURES defines (Ivan Vecera) [1655590]
-
-* Mon Dec 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-975.el7]
-- [scsi] scsi_transport_srp: Fix shost to rport translation (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Fix uverbs_attr_get_obj (Kamal Heib) [1641363]
-- [infiniband] nvmet, rxe: defer ip datagram sending to tasklet (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Fix kernel crash during MR deregistration flow (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Prevent reregistration of DM_MR to regular MR (Kamal Heib) [1641363]
-- [infiniband] ib: make INFINIBAND_ADDR_TRANS configurable (Kamal Heib) [1641363]
-- [infiniband] ib_srp: depend on INFINIBAND_ADDR_TRANS (Kamal Heib) [1641363]
-- [infiniband] ib_srpt: depend on INFINIBAND_ADDR_TRANS (Kamal Heib) [1641363]
-- [infiniband] ib/core: Fix deleting default GIDs when changing mac adddress (Kamal Heib) [1641363]
-- [infiniband] ib/core: Fix to avoid deleting IPv6 look alike default GIDs (Kamal Heib) [1641363]
-- [infiniband] ib/core: Don't allow default GID addition at non reseved slots (Kamal Heib) [1641363]
-- [infiniband] rdma/ucma: Check for a cm_id->device in all user calls that need it (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add missing braces in anonymous union initializers (Kamal Heib) [1641363]
-- [infiniband] rdma/ucma: ucma_context reference leak in error path (Kamal Heib) [1641363]
-- [net] sunrpc: Make RTT measurement more precise (Send) (Kamal Heib) [1641363]
-- [net] xprtrdma: Move creation of rl_rdmabuf to rpcrdma_create_req (Kamal Heib) [1641363]
-- [net] xprtrdma: Chain Send to FastReg WRs (Kamal Heib) [1641363]
-- [kernel] xprtrdma: "Support" call-only RPCs (Kamal Heib) [1641363]
-- [net] xprtrdma: Reduce number of MRs created by rpcrdma_mrs_create (Kamal Heib) [1641363]
-- [net] xprtrdma: ->send_request returns -EAGAIN when there are no free MRs (Kamal Heib) [1641363]
-- [net] xprtrdma: Remove xprt-specific connect cookie (Kamal Heib) [1641363]
-- [net] xprtrdma: Remove arbitrary limit on initiator depth (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add device memory registration ioctl support (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add alloc/free dm uverbs ioctl support (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add device memory capabilities reporting (Kamal Heib) [1641363]
-- [uapi] ib/uverbs: Expose device memory capabilities to user (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: Removed GID add/del dummy routines (Kamal Heib) [1641363]
-- [uapi] ib/uverbs: Introduce ESP steering match filter (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add modify ESP flow_action (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Introduce egress flow steering (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add action_handle flow steering specification (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add flow_action create and destroy verbs (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Refactor kern_spec_to_ib_spec_filter (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Add enum attribute type to ioctl() interface (Kamal Heib) [1641363]
-- [rdma] Use ib_gid_attr during GID modification (Kamal Heib) [1641363]
-- [infiniband] ib/providers: Avoid null netdev check for RoCE (Kamal Heib) [1641363]
-- [infiniband] ib/providers: Avoid zero GID check for RoCE (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refactor GID modify code for RoCE (Kamal Heib) [1641363]
-- [infiniband] ib/core: Simplify ib_query_gid to always refer to cache (Kamal Heib) [1641363]
-- [infiniband] rdma/providers: Simplify query_gid callback of RoCE providers (Kamal Heib) [1641363]
-- [infiniband] ib/qedr: Remove GID add/del dummy routines (Kamal Heib) [1641363]
-- [rdma] core: Update query_gid documentation for HCA drivers (Kamal Heib) [1641363]
-- [infiniband] rdma/mlx5: Fix definition of mlx5_ib_create_qp_resp (Kamal Heib) [1641363]
-- [trace] sunrpc: Save remote presentation address in svc_xprt for trace events (Kamal Heib) [1641363]
-- [trace] sunrpc: Move trace_svc_xprt_dequeue() (Kamal Heib) [1641363]
-- [trace] sunrpc: Simplify trace_svc_recv (Kamal Heib) [1641363]
-- [net] svc: Simplify ->xpo_secure_port (Kamal Heib) [1641363]
-- [infiniband] ib/ocrdma_hw: Remove redundant checks and goto labels (Kamal Heib) [1641363]
-- [infiniband] ib/ipoib: Delete unused struct (Kamal Heib) [1641363]
-- [rdma] cma: Move rdma_cm_state to cma_priv.h (Kamal Heib) [1641363]
-- [infiniband] ib/addr: Constify dst_entry pointer (Kamal Heib) [1641363]
-- [infiniband] rdma: Use u64_to_user_ptr everywhere (Kamal Heib) [1641363]
-- [infiniband] rdma/nldev: Provide netdevice name and index (Kamal Heib) [1596624 1641363]
-- [infiniband] ib/rxe: optimize mcast recv process (Kamal Heib) [1641363]
-- [infiniband] rdma/cma: Add rdma_port_space to UAPI (Kamal Heib) [1596624 1641363]
-- [rdma] cma: remove RDMA_PS_SDP (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refer to RoCE port property to decide building cache (Kamal Heib) [1641363]
-- [infiniband] ib/core: Search GID only for IB link layer (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refer to RoCE port property instead of GID table property (Kamal Heib) [1641363]
-- [infiniband] ib/core: Generate GID change event regardless of RoCE GID table property (Kamal Heib) [1641363]
-- [infiniband] ib/cm: Block processing alternate path handling RoCE Rx cm messages (Kamal Heib) [1641363]
-- [infiniband] ib/core: Protect against concurrent access to hardware stats (Kamal Heib) [1641363]
-- [uapi] ib/uverbs: UAPI pointers should use __aligned_u64 type (Kamal Heib) [1641363]
-- [uapi] rdma/ocrdma: Fix structure layout for ocrdma_alloc_pd (Kamal Heib) [1641363]
-- [rdma] ib/cma: Resolve route only while receiving CM requests (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refer to RoCE port property instead of GID table property (Kamal Heib) [1641363]
-- [infiniband] rdma/restrack: Remove ambiguity in resource track clean logic (Kamal Heib) [1641363]
-- [lib] bug: define the "cut here" string in a single place (Kamal Heib) [1641363]
-- [uapi] rdma/cxgb3: Use structs to describe the uABI instead of opencoding (Kamal Heib) [1641363]
-- [net] svcrdma: Clean up rdma_build_arg_xdr (Kamal Heib) [1641363]
-- [net] svcrdma: Consult max_qp_init_rd_atom when accepting connections (Kamal Heib) [1641363]
-- [net] svcrdma: Use pr_err to report Receive errors (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Enable ioctl() uAPI by default for new verbs (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Add macros to simplify adding driver specific attributes (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Move ioctl path of create_cq and destroy_cq to a new file (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Expose parsing tree of all common objects to providers (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Safely extend existing attributes (Kamal Heib) [1641363]
-- [rdma] ib/uverbs: Enable compact representation of uverbs_attr_spec (Kamal Heib) [1641363]
-- [uapi] ib/uverbs: Extend uverbs_ioctl header with driver_id (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Move to new headers and make naming consistent (Kamal Heib) [1641363]
-- [infiniband] ib/srp: Disallow duplicate RDMA/CM connections (Kamal Heib) [1641363]
-- [rdma] ib/core: Remove unimplemented ib_peek_cq (Kamal Heib) [1641363]
-- [infiniband] ib/core: Use rdma_is_port_valid() (Kamal Heib) [1641363]
-- [uapi] rdma/bnxt: Fix structure layout for bnxt_re_pd_resp (Kamal Heib) [1641363]
-- [infiniband] ib/core: Set speed string to SDR for invalid active rates (Kamal Heib) [1641363]
-- [infiniband] rdma/restrack: Don't rely on uninitialized variable in restrack_add flow (Kamal Heib) [1596624 1641363]
-- [uapi] rdma/mlx4: Move flag constants to uapi header (Kamal Heib) [1641363]
-- [rdma] ib/core: Move rdma_addr_find_l2_eth_by_grh to core_priv.h (Kamal Heib) [1641363]
-- [infiniband] ib/cm: Introduce and use helper function to get cm_port from path (Kamal Heib) [1641363]
-- [infiniband] ib/core: Refactor ib_init_ah_attr_from_path() for RoCE (Kamal Heib) [1641363]
-- [infiniband] ib/cm: Add and use a helper function to add cm_id's to the port list (Kamal Heib) [1641363]
-- [infiniband] ib/ocrdma: Removed GID add/del null routines (Kamal Heib) [1641363]
-- [infiniband] ib/core: Remove rdma_resolve_ip_route() as exported symbol (Kamal Heib) [1641363]
-- [infiniband] ib/cma: Use rdma_protocol_roce() and remove cma_protocol_roce_dev_port() (Kamal Heib) [1641363]
-- [infiniband] ib/core: Honor return status of ib_init_ah_from_mcmember() (Kamal Heib) [1641363]
-- [infiniband] ib/{core, ipoib}: Simplify ib_find_gid() for unused ndev (Kamal Heib) [1641363]
-- [infiniband] infiniband/ulp/srpt/ib_srpt.c: fix build with gcc-4.4.4 (Kamal Heib) [1641363]
-- [infiniband] infiniband/core/verbs.c: fix build with gcc-4.4.4 (Kamal Heib) [1641363]
-- [infiniband] rdma_rxe: make rxe work over 802.1q VLAN devices (Kamal Heib) [1641363]
-- [infiniband] rdma/verbs: Simplify modify QP check (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/pvrdma: Properly annotate QP states (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Ensure validity of current QP state value (Kamal Heib) [1641363]
-- [infiniband] ib: remove duplicate header files (Kamal Heib) [1641363]
-- [infiniband] rdma/nldev: provide detailed PD information (Kamal Heib) [1641363]
-- [infiniband] rdma/nldev: provide detailed MR information (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/nldev: provide detailed CQ information (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/nldev: provide detailed CM_ID information (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/cm: move rdma_id_private to cma_priv.h (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/nldev: common resource dumpit function (Kamal Heib) [1596624 1641363]
-- [infiniband] rdma/restrack: clean up res_to_dev() (Kamal Heib) [1596624 1641363]
-- [infiniband] ib/rxe: change the function rxe_init_device_param type (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: remove unnecessary rxe in rxe_send (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: remove unnecessary skb_clone (Kamal Heib) [1641363]
-- [infiniband] ib/srpt: Add RDMA/CM support (Kamal Heib) [1641363]
-- [infiniband] ib/srp: Use the IB_DEVICE_SG_GAPS_REG HCA feature if supported (Kamal Heib) [1641363]
-- [infiniband] remove redundant assignment to pointer 'rdi' (Kamal Heib) [1641363]
-- [infiniband] ib/rxe: Remove unused variable (char *rxe_qp_state_name[]) (Kamal Heib) [1641363]
-- [infiniband] ib/srp: Use pIS instead of inet_ntop() (Kamal Heib) [1641363]
-- [infiniband] revert "ib/srp: Avoid that a cable pull can trigger a kernel crash" (Kamal Heib) [1641363]
-- [infiniband] rdma/iwpm: Delete an error message for a failed memory allocation in iwpm_create_nlmsg() (Kamal Heib) [1641363]
-- [infiniband] ib/usnic: Delete an error message for a failed memory allocation in usnic_transport_init() (Kamal Heib) [1641363]
-- [infiniband] ib/uverbs: Tidy uverbs_uobject_add (Kamal Heib) [1641363]
-- [infiniband] rdma/verbs: Return proper error code for not supported system call (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Reduce number of command header flags checks (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Replace user's types with kernel's types (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Refactor the header validation logic (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Copy ex_hdr outside of SRCU read lock (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Move uncontext check before SRCU read lock (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Properly check command supported mask (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Refactor command header processing (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Unify return values of not supported command (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Return not supported error code for unsupported commands (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Fail as early as possible if not enough header data was provided (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Refactor flags checks and update return value (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Update sizeof users (Kamal Heib) [1641363]
-- [infiniband] rdma/uverbs: Convert command mask validity check function to be bool (Kamal Heib) [1641363]
-- [net] sunrpc: Improve ordering of transport processing (Kamal Heib) [1641363]
-- [trace] sunrpc: Fix parsing failure in trace points with XIDs (Kamal Heib) [1641363]
-- [trace] sunrpc: Fix tracepoint storage issues with svc_recv and svc_rqst_status (Kamal Heib) [1641363]
-- [trace] sunrpc: Don't allocate a full sockaddr_storage for tracing (Kamal Heib) [1641363]
-- [trace] sunrpc: fix tracepoint warning: unknown op '->' (Kamal Heib) [1641363]
-
-* Fri Dec 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-974.el7]
-- [fs] flexfiles: enforce per-mirror stateid only for v4 DSes (Steve Dickson) [1652850]
-- [fs] flexfiles: use per-mirror specified stateid for IO (Steve Dickson) [1652850]
-- [fs] nfsv4.x: fix lock recovery during delegation recall (Steve Dickson) [1634086]
-- [fs] nfs4: flex_file: ignore synthetic uid/gid for tightly coupled DSes (Steve Dickson) [1643694]
-- [fs] libceph: fall back to sendmsg for slab pages (Ilya Dryomov) [1647460]
-- [fs] cifs: Fix autonegotiate security settings mismatch (Leif Sahlberg) [1650148]
-- [fs] nfsd: COPY and CLONE operations require the saved filehandle to be set (Scott Mayhew) [1645353]
-- [fs] dlm: Fix Fix saving of NULL callbacks (Robert S Peterson) [1638017]
-- [fs] move the call of __d_drop(anon) into __d_materialise_unique(dentry, anon) (Zheng Yan) [1627001]
-- [fs] dcache: d_splice_alias should ignore DCACHE_DISCONNECTED (Zheng Yan) [1627001]
-- [fs] dcache: d_splice_alias should detect loops (Zheng Yan) [1627001]
-- [fs] dcache: d_splice_alias mustn't create directory aliases (Zheng Yan) [1627001]
-- [fs] dcache: close d_move race in d_splice_alias (Zheng Yan) [1627001]
-- [fs] dcache: move d_splice_alias (Zheng Yan) [1627001]
-- [fs] dcache: don't clear DCACHE_DISCONNECTED too early (Zheng Yan) [1627001]
-- [fs] dcache: Don't set DISCONNECTED on "pseudo filesystem" dentries (Zheng Yan) [1627001]
-- [fs] dcache: use IS_ROOT to decide where dentry is hashed (Zheng Yan) [1627001]
-- [fs] gfs2: Fix iomap buffer head reference counting bug (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fix iomap buffered write support for journaled files (2) (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fix iomap buffered write support for journaled files (Andreas Grunbacher) [1637147]
-- [fs] gfs2: gfs2_extent_length cleanup (Andreas Grunbacher) [1637147]
-- [fs] gfs2: iomap buffered write support (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Further iomap cleanups (Andreas Grunbacher) [1637147]
-- [fs] iomap: move IOMAP_F_BOUNDARY to gfs2 (Andreas Grunbacher) [1637147]
-- [fs] iomap: inline data should be an iomap type, not a flag (Andreas Grunbacher) [1637147]
-- [fs] iomap: add private pointer to struct iomap (Andreas Grunbacher) [1637147]
-- [fs] iomap: add a page_done callback (Andreas Grunbacher) [1637147]
-- [fs] iomap: generic inline data handling (Andreas Grunbacher) [1637147]
-- [fs] iomap: mark newly allocated buffer heads as new (Andreas Grunbacher) [1637147]
-- [fs] fs: factor out a __generic_write_end helper (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Iomap cleanups and improvements (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Remove ordered write mode handling from gfs2_trans_add_data (Andreas Grunbacher) [1637147]
-- [fs] gfs2: gfs2_stuffed_write_end cleanup (Andreas Grunbacher) [1637147]
-- [fs] gfs2: hole_size improvement (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Remove sdp->sd_jheightsize (Andreas Grunbacher) [1637147]
-- [fs] gfs2: gfs2_iomap_end tracepoint: log block address (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fix metadata read-ahead during truncate (2) (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Check for the end of metadata in punch_hole (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fixes to "Implement iomap for block_map" (2) (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fixes to "Implement iomap for block_map" (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Minor gfs2_page_add_databufs cleanup (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Add gfs2_max_stuffed_size (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Typo fixes (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Implement fallocate(FALLOC_FL_PUNCH_HOLE) (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Turn trunc_dealloc into punch_hole (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Generalize truncate code (Andreas Grunbacher) [1637147]
-- [fs] Turn gfs2_block_truncate_page into gfs2_block_zero_range (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Improve non-recursive delete algorithm (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Fix metadata read-ahead during truncate (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Remove minor gfs2_journaled_truncate inefficiencies (Andreas Grunbacher) [1637147]
-- [fs] gfs2: truncate: Remove unnecessary oldsize parameters (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Clean up trunc_start error path (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Remove pointless BUG_ON (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Add gfs2_blk2rgrpd comment and fix incorrect use (Andreas Grunbacher) [1637147]
-- [fs] gfs2: use ->invalidatepage() length argument (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Switch to invalidatepage_range (Andreas Grunbacher) [1637147]
-- [fs] GFS2: Merge ordered and writeback writepage (Andreas Grunbacher) [1637147]
-- [fs] gfs2: Put bitmap buffers in put_super (Andreas Grunbacher) [1643581 1637147]
-- [fs] cifs: fix return value for cifs_listxattr (Leif Sahlberg) [1247871]
-- [fs] cifs: smb2ops: Fix listxattr() when there are no EAs (Leif Sahlberg) [1247871]
-- [uapi] Fix SPDX tags for files referring to the 'OpenIB.org' license (Ivan Vecera) [1653376]
-- [uapi] tls: RX path for ktls (Ivan Vecera) [1653376]
-- [uapi] fix linux/tls.h userspace compilation error (Ivan Vecera) [1653376]
-- [uapi] license cleanup: add SPDX license identifier to uapi header files with a license (Ivan Vecera) [1653376]
-- [uapi] tls: kernel TLS support (Ivan Vecera) [1653376]
-- [kernel] stop_machine: Atomically queue and wake stopper threads (Phil Auld) [1557061]
-- [kernel] stop_machine: Disable preemption after queueing stopper threads (Phil Auld) [1557061]
-- [kernel] stop_machine: Disable preemption when waking two stopper threads (Phil Auld) [1557061]
-- [kernel] stop_machine, sched: Fix migrate_swap() vs. active_balance() deadlock (Phil Auld) [1557061]
-- [kernel] stop_machine: Make cpu_stop_queue_work() and stop_one_cpu_nowait() return bool (Phil Auld) [1557061]
-- [kernel] cpuset: Fix a backport error in update_nodemasks_hier() (Waiman Long) [1584689]
-- [x86] Treat R_X86_64_PLT32 as R_X86_64_PC32 (Yauheni Kaliuta) [1654807]
-
-* Thu Dec 06 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-973.el7]
-- [nvme] flush namespace scanning work just before removing namespaces (Ewan Milne) [1622487]
-- [hwmon] (nct6775) Fix potential Spectre v1 (Dean Nelson) [1639223]
-- [mm] page-writeback.c: fix range_cyclic writeback vs writepages deadlock (Brian Foster) [1591574]
-- [mm] madvise(madv_dodump): allow hugetlbfs pages (Jamie Bainbridge) [1641227]
-- [mm] memcontrol: factor out reclaim iterator loading and updating (Aristeu Rozanski) [1595932]
-- [kernel] locking/lockdep: Fix debug_locks off performance problem (Waiman Long) [1451547]
-- [kernel] locking/lockdep: Make class->ops a percpu counter and move it under CONFIG_DEBUG_LOCKDEP=y (Waiman Long) [1451547]
-- [kernel] locking/lockdep: Add a faster path in __lock_release() (Waiman Long) [1451547]
-- [x86] locking/x86: Use LOCK ADD for smp_mb() instead of MFENCE (Waiman Long) [1522387]
-- [x86] locking/x86: Drop a comment left over from X86_OOSTORE (Waiman Long) [1522387]
-- [x86] locking/x86: Add cc clobber for ADDL (Waiman Long) [1522387]
-- [x86] reuse asm-generic/barrier.h (Waiman Long) [1522387]
-- [x86] locking, arch: use WRITE_ONCE()/READ_ONCE() in smp_store_release()/smp_load_acquire() (Waiman Long) [1522387]
-- [x86] locking/arch: Rename set_mb() to smp_store_mb() (Waiman Long) [1522387]
-- [kernel] locking/arch: Add WRITE_ONCE() to set_mb() (Waiman Long) [1522387]
-- [x86] cpufeatures: Enumerate MOVDIR64B instruction (Steve Best) [1482755]
-- [x86] cpufeatures: Enumerate MOVDIRI instruction (Steve Best) [1482755]
-
-* Tue Dec 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-972.el7]
-- [tools] cpupower: Fix coredump on VMWare (Prarit Bhargava) [1626505]
-- [tools] cpupower: Fix AMD Family 0x17 msr_pstate size (Prarit Bhargava) [1626505]
-- [netdrv] tg3: Add PHY reset for 5717/5719/5720 in change ring and flow control paths (Steve Best) [1654699]
-- [pci] Match Root Port's MPS to endpoint's MPSS as necessary (Myron Stowe) [1524000]
-- [pci] Skip MPS logic for Virtual Functions (VFs) (Myron Stowe) [1524000]
-- [kernel] sched/fair: Fix bandwidth timer clock drift condition (Lauro Ramos Venancio) [1617975]
-- [mm] mremap: properly flush TLB before releasing the page (Rafael Aquini) [1649634] {CVE-2018-18281}
-- [mm] ipc: use private shmem or hugetlbfs inodes for shm segments (Ondrej Mosnacek) [1613056]
-- [security] selinux: fix mprotect PROT_EXEC regression caused by mm change (Ondrej Mosnacek) [1613056]
-- [x86] syscall: Fix ARRAY_INDEX_NOSPEC_SYSCALL data leak (Josh Poimboeuf) [1608424]
-- [x86] kvm: vmx: re-add ple_gap module parameter (Gary Hook) [1652933]
-
-* Fri Nov 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-971.el7]
-- [net] ip_tunnel: don't force DF when MTU is locked (Stefano Brivio) [1511372]
-- [net] geneve: ICMP error lookup handler (Stefano Brivio) [1511372]
-- [net] vxlan: ICMP error lookup handler (Stefano Brivio) [1511372]
-- [net] udp: Handle ICMP errors for tunnels with same destination port on both endpoints (Stefano Brivio) [1511372]
-- [net] ipv6/ndisc: Preserve IPv6 control buffer if protocol error handlers are called (Stefano Brivio) [1511372]
-- [net] sctp: update dst pmtu with the correct daddr (Xin Long) [1627270]
-- [net] sctp: check policy more carefully when getting pr status (Xin Long) [1637876]
-- [net] sctp: get pr_assoc and pr_stream all status with SCTP_PR_SCTP_ALL instead (Xin Long) [1637876]
-- [net] packet: fix a race in packet_bind() and packet_notifier() (Andrea Claudi) [1643681] {CVE-2018-18559}
-- [net] ipv6: rate-limit probes for neighbourless routes (Sabrina Dubroca) [1637821]
-- [net] ipv6: Re-arrange code in rt6_probe() (Sabrina Dubroca) [1637821]
-- [pci] Add pcie_print_link_status() to log link speed and whether it's limited (Myron Stowe) [1647773]
-- [pci] Add pcie_bandwidth_available() to compute bandwidth available to device (Myron Stowe) [1647773]
-- [pci] Add pcie_bandwidth_capable() to compute max supported link bandwidth (Myron Stowe) [1647773]
-- [pci] Add pcie_get_width_cap() to find max supported link width (Myron Stowe) [1647773]
-- [pci] Add pcie_get_speed_cap() to find max supported link speed (Myron Stowe) [1647773]
-- [pci] Add decoding for 16 GT/s link speed (Myron Stowe) [1647773]
-- [pci] Add sysfs max_link_speed/width, current_link_speed/width, etc (Myron Stowe) [1647773]
-- [mm] userfaultfd: allow get_mempolicy(MPOL_F_NODE|MPOL_F_ADDR) to trigger userfaults (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: shmem: uffdio_copy: set the page dirty if VM_WRITE is not set (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: shmem: add i_size checks (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: shmem/hugetlbfs: only allow to register VM_MAYWRITE vmas (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: shmem: allocate anonymous memory for MAP_PRIVATE shmem (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: use ENOENT instead of EFAULT if the atomic copy user fails (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd: disable irqs when taking the waitqueue lock (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd.c: remove redundant pointer uwq (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd: remove uffd flags from vma->vm_flags if UFFD_EVENT_FORK fails (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd: hugetlbfs: fix userfaultfd_huge_must_wait() pte access (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [mm] userfaultfd: prevent non-cooperative events vs mcopy_atomic races (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] userfaultfd: convert to use anon_inode_getfd() (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [fs] mm, userfaultfd, thp: avoid waiting when PMD under THP migration (Andrea Arcangeli) [1640519] {CVE-2018-18397}
-- [ata] ahci: Add PCI ids for Intel Bay Trail, Cherry Trail and Apollo Lake AHCI (David Arcari) [1643272]
-- [mfd] intel-lpss: Remove left over variable (David Arcari) [1643267]
-- [mfd] lpc_ich: Enable watchdog on Intel Apollo Lake PCH (David Arcari) [1643267]
-- [mfd] lpc_ich: Add support for Intel Apollo Lake SoC (David Arcari) [1643267]
-- [mfd] intel-lpss: Add default I2C device properties for Apollo Lake (David Arcari) [1643267]
-- [mfd] intel-lpss: Pass I2C configuration via properties on BXT (David Arcari) [1643267]
-- [mfd] lpss: Add Broxton ACPI IDs (David Arcari) [1643267]
-- [tools] selftests/powerpc: Move get_auxv_entry() into utils.c (Diego Domingos) [1632258]
-- [tools] selftests/powerpc: Add support for skipping tests (Diego Domingos) [1632258]
-- [tools] selftests: Add support files for powerpc tests (Diego Domingos) [1632258]
-- [hwmon] k10temp: Add support for AMD family 17h, model 30h CPUs (Gary Hook) [1643292]
-- [x86] amd_nb: Add PCI device IDs for family 17h, model 30h (Gary Hook) [1643292]
-- [x86] amd_nb: Add support for newer PCI topologies (Gary Hook) [1643292]
-- [hwmon] k10temp, x86/amd_nb: Consolidate shared device IDs (Gary Hook) [1643292]
-- [hwmon] (k10temp) Use API function to access System Management Network (Gary Hook) [1643292]
-- [x86] amd_nb: Add support for Raven Ridge CPUs (Gary Hook) [1643292]
-- [hwmon] (k10temp) Add support for AMD Ryzen w/ Vega graphics (Gary Hook) [1643292]
-- [hwmon] (k10temp) Add temperature offset for Ryzen 2700X (Gary Hook) [1643292]
-- [x86] cpu/amd: Apply the Erratum 688 fix when the BIOS doesn't (Gary Hook) [1643292]
-- [x86] pm: Set IRQCHIP_SKIP_SET_WAKE for IOAPIC IRQ chip objects (David Arcari) [1650250]
-
-* Thu Nov 29 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-970.el7]
-- [cdrom] fix improper type cast, which can leat to information leak (Maurizio Lombardi) [1652054]
-- [cdrom] Fix info leak/OOB read in cdrom_ioctl_drive_status (Maurizio Lombardi) [1628161] {CVE-2018-16658}
-- [net] rtnetlink: give a user socket to get_target_net() (Jiri Benc) [1630694] {CVE-2018-14646}
-- [net] Add variants of capable for use on on sockets (Jiri Benc) [1630694] {CVE-2018-14646}
-- [crypto] chelsio: Fix memory corruption in DMA Mapped buffers (Arjun Vynipadath) [1647732]
-- [gpu] drm/i915/gvt: changed DDI mode emulation type (Paul Lai) [1615476]
-- [gpu] drm/i915/gvt: fix a bug of partially write ggtt enties (Paul Lai) [1540520]
-- [i2c] i801: fix DNV's SMBCTRL register offset (David Arcari) [1628860]
-- [i2c] i801: Add support for Intel Broxton (David Arcari) [1651721]
-- [md] raid1: panic because of using freed memory (Xiao Ni) [1632575 1582673]
-- [md] Simplify ternary operations (Xiao Ni) [1627563]
-- [scsi] libfc: retry PRLI if we cannot analyse the payload (Chris Leech) [1631130]
-- [scsi] libfc: Do not drop down to FLOGI for fc_rport_login() (Chris Leech) [1625721]
-- [scsi] libfc: Do not login if the port is already started (Chris Leech) [1625721]
-- [scsi] libfc: don't advance state machine for incoming FLOGI (Chris Leech) [1625721]
-- [kernel] ring-buffer: Fix polling on trace_pipe (Jerome Marchand) [1647443]
-- [x86] acpi/cstate: Make APCI C1 FFH MWAIT C-state description vendor-neutral (Laura Abbott) [1627566]
-- [x86] tsc: Mark Intel ATOM_GOLDMONT TSC reliable (David Arcari) [1651718]
-- [x86] cpu/vmware: Do not trace vmware_sched_clock() (Vitaly Kuznetsov) [1650271]
-- [powerpc] fadump: re-register firmware-assisted dump if already registered (Steve Best) [1652864]
-
-* Thu Nov 29 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-969.el7]
-- [lib] locking/rwsem: Make owner store task pointer of last owning reader (Waiman Long) [1563798]
-- [lib] locking/rwsem: Add a new RWSEM_ANONYMOUSLY_OWNED flag (Waiman Long) [1563798]
-- [kernel] locking/rwsem: Fix up_read_non_owner() warning with DEBUG_RWSEMS (Waiman Long) [1563798]
-- [lib] locking/kconfig: Restructure the lock debugging menu (Waiman Long) [1563798]
-- [lib] locking/kconfig: Add LOCK_DEBUGGING_SUPPORT to make it more readable (Waiman Long) [1563798]
-- [lib] locking/rwsem: Add DEBUG_RWSEMS to look for lock/unlock mismatches (Waiman Long) [1563798]
-- [net] macsec: let the administrator set UP state even if lowerdev is down (Sabrina Dubroca) [1626004]
-- [net] macsec: update operstate when lower device changes (Sabrina Dubroca) [1626004]
-- [net] ipv6: check skb->protocol before lookup for nexthop (Hangbin Liu) [1615196]
-- [net] cls_matchall: fix tcf_unbind_filter missing (Hangbin Liu) [1614130]
-- [net] l2tp: pass tunnel pointer to ->session_create() (Andrea Claudi) [1637904] {CVE-2018-9517}
-- [net] rtnetlink: Add dump all for netconf (Paolo Abeni) [1634216]
-- [net] be careful with zero len iov (Paolo Abeni) [1622337]
-- [net] ipv6 Use get_hash_from_flowi6 for rt6 hash (Sabrina Dubroca) [1625454]
-- [powerpc] powernv/opal: Use standard interrupts property when available (Gustavo Duarte) [1577105]
-- [powerpc] powernv: process all OPAL event interrupts with kopald (Gustavo Duarte) [1577105]
-- [powerpc] opal: Wake up kopald polling thread before waiting for events (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Fix opal_event_shutdown() called with interrupts disabled (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Make opal_event_shutdown() callable from IRQ context (Gustavo Duarte) [1577105]
-- [powerpc] opal-irqchip: Use interrupt names if present (Gustavo Duarte) [1577105]
-- [powerpc] xics: Properly set Edge/Level type and enable resend (Gustavo Duarte) [1577105]
-- [powerpc] opal-irqchip: Fix deadlock introduced by "Fix double endian conversion" (Gustavo Duarte) [1577105]
-- [powerpc] opal-irqchip: Fix double endian conversion (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Increase opal-irqchip initcall priority (Gustavo Duarte) [1577105]
-- [powerpc] opal: Remove events notifier (Gustavo Duarte) [1577105]
-- [powerpc] powernv/opal-dump: Convert to irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/elog: Convert elog to opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/opal: Convert opal message events to opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/eeh: Update the EEH code to use the opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] hvc: Convert to using interrupts instead of opal events (Gustavo Duarte) [1577105]
-- [powerpc] ipmi/powernv: Convert to irq event interface (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Reorder OPAL subsystem initialisation (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Add a virtual irqchip for opal events (Gustavo Duarte) [1577105]
-- [powerpc] irqdomain: Relax failure path on setting up mappings (Gustavo Duarte) [1577105]
-- [powerpc] numa: Skip onlining a offline node in kdump path (Steve Best) [1650254]
-- [powerpc] tm: Fix stack pointer corruption in __tm_recheckpoint() (Steve Best) [1650247]
-- [powerpc] pseries/mm: call H_BLOCK_REMOVE (Steve Best) [1650255]
-- [powerpc] pseries/mm: factorize PTE slot computation (Steve Best) [1650255]
-- [powerpc] pseries/mm: Introducing FW_FEATURE_BLOCK_REMOVE (Steve Best) [1650255]
-- [powerpc] rtas: Fix a potential race between CPU-Offline & Migration (Steve Best) [1650249]
-- [powerpc] pseries: Disable CPU hotplug across migrations (Steve Best) [1650249]
-
-* Wed Nov 28 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-968.el7]
-- [tools] bpftool: fold hex keyword in command help (Jiri Olsa) [1640092]
-- [tools] bpftool: change time format for program 'loaded at:' information (Jiri Olsa) [1640092]
-- [tools] bpftool: make it easier to feed hex bytes to bpftool (Jiri Olsa) [1640092]
-- [tools] bpftool: Adjust to new print_bpf_insn interface (Jiri Olsa) [1640092]
-- [tools] bpftool: fix potential format truncation (Jiri Olsa) [1640092]
-- [tools] bpftool: fix dependency file path (Jiri Olsa) [1640092]
-- [tools] bpftool: add support for quotations in batch files (Jiri Olsa) [1640092]
-- [tools] bpftool: read from stdin when batch file name is "-" (Jiri Olsa) [1640092]
-- [tools] bpftool: support continuation lines in batch files (Jiri Olsa) [1640092]
-- [tools] bpftool: support comments in batch files (Jiri Olsa) [1640092]
-- [tools] bpftool: add bash completion for CFG dump (Jiri Olsa) [1640092]
-- [tools] bpftool: new command-line option and documentation for 'visual' (Jiri Olsa) [1640092]
-- [tools] bpftool: generate .dot graph from CFG information (Jiri Olsa) [1640092]
-- [tools] bpftool: add out edges for each basic-block (Jiri Olsa) [1640092]
-- [tools] bpftool: partition basic-block for each function in the CFG (Jiri Olsa) [1640092]
-- [tools] bpftool: detect sub-programs from the eBPF sequence (Jiri Olsa) [1640092]
-- [tools] bpftool: factor out xlated dump related code into separate file (Jiri Olsa) [1640092]
-- [tools] bpftool: remove unnecessary 'if' to reduce indentation (Jiri Olsa) [1640092]
-- [kernel] bpf/verifier: disallow pointer subtraction (Jiri Olsa) [1640092]
-- [kernel] bpf: use per htab salt for bucket hash (Jiri Olsa) [1640092]
-- [kernel] bpf/verifier: introduce BPF_PTR_TO_MAP_VALUE (Jiri Olsa) [1640092]
-- [kernel] bpf: add ability to charge bpf maps memory dynamically (Jiri Olsa) [1640092]
-- [tools] bpf: verifier: MOV64 don't mark dst reg unbounded (Jiri Olsa) [1640092]
-- [kernel] bpf: bpf_prog_array_alloc() should return a generic non-rcu pointer (Jiri Olsa) [1640092]
-- [kernel] bpf: don't leave partial mangled prog in jit_subprogs error path (Jiri Olsa) [1640092]
-- [kernel] bpf: hash map: decrement counter on error (Jiri Olsa) [1640092]
-- [kernel] bpf: fix panic in prog load calls cleanup (Jiri Olsa) [1640092]
-- [tools] bpf: reject passing modified ctx to helper functions (Jiri Olsa) [1640092]
-- [kernel] bpf: fix context access in tracing progs on 32 bit archs (Jiri Olsa) [1640092]
-- [kernel] bpf: avoid retpoline for lookup/update/delete calls on maps (Jiri Olsa) [1640092]
-- [kernel] bpf: show prog and map id in fdinfo (Jiri Olsa) [1640092]
-- [kernel] bpf: fixup error message from gpl helpers on license mismatch (Jiri Olsa) [1640092]
-- [kernel] bpf: bpf_prog_array_copy() should return -ENOENT if exclude_prog not found (Jiri Olsa) [1640092]
-- [kernel] bpf: avoid -Wmaybe-uninitialized warning (Jiri Olsa) [1640092]
-- [kernel] perf/core: add perf_get_event() to return perf_event given a struct file (Jiri Olsa) [1640092]
-- [kernel] bpf: get JITed image lengths of functions via syscall (Jiri Olsa) [1640092]
-- [kernel] bpf: fix multi-function JITed dump obtained via syscall (Jiri Olsa) [1640092]
-- [kernel] bpf: get kernel symbol addresses via syscall (Jiri Olsa) [1640092]
-- [kernel] bpf: support 64-bit offsets for bpf function calls (Jiri Olsa) [1640092]
-- [kernel] bpf: add __printf verification to bpf_verifier_vlog (Jiri Olsa) [1640092]
-- [kernel] bpf: enable stackmap with build_id in nmi context (Jiri Olsa) [1640092]
-- [kernel] bpf: fix references to free_bpf_prog_info() in comments (Jiri Olsa) [1640092]
-- [kernel] bpf: export bpf_event_output() (Jiri Olsa) [1640092]
-- [kernel] bpf: add faked "ending" subprog (Jiri Olsa) [1640092]
-- [kernel] bpf: centre subprog information fields (Jiri Olsa) [1640092]
-- [kernel] bpf: unify main prog and subprog (Jiri Olsa) [1640092]
-- [x86] bpf: Clean up non-standard comments, to make the code more readable (Jiri Olsa) [1640092]
-- [kernel] bpf/verifier: improve register value range tracking with ARSH (Jiri Olsa) [1640092]
-- [kernel] bpf: remove never-hit branches in verifier adjust_scalar_min_max_vals (Jiri Olsa) [1640092]
-- [kernel] bpf/verifier: refine retval R0 state for bpf_get_stack helper (Jiri Olsa) [1640092]
-- [kernel] bpf: add bpf_get_stack helper (Jiri Olsa) [1640092]
-- [kernel] bpf: change prototype for stack_map_get_build_id_offset (Jiri Olsa) [1640092]
-- [kernel] bpf: Add bpf_verifier_vlog() and bpf_verifier_log_needed() (Jiri Olsa) [1640092]
-- [kernel] bpf: Remove struct bpf_verifier_env argument from print_bpf_insn (Jiri Olsa) [1640092]
-- [kernel] bpf: add new jited info fields in bpf_dev_offload and bpf_prog_info (Jiri Olsa) [1640092]
-- [kernel] bpf: fix kallsyms handling for subprogs (Jiri Olsa) [1640092]
-- [kernel] bpf_obj_do_pin(): switch to vfs_mkobj(), quit abusing ->mknod() (Jiri Olsa) [1640092]
-- [kernel] new primitive: vfs_mkobj() (Jiri Olsa) [1640092]
-- [kernel] bpf: add a bpf_override_function helper (Jiri Olsa) [1640092]
-- [net] bpf: make jited programs visible in traces (Jiri Olsa) [1640092]
-- [kernel] bpf: add support for sys_enter_* and sys_exit_* tracepoints (Jiri Olsa) [1640092]
-- [kernel] tracing/kprobes: Avoid perf_trace_buf_*() if ->perf_events is empty (Jiri Olsa) [1640092]
-- [kernel] seqlock: Introduce raw_read_seqcount_latch() (Jiri Olsa) [1640092]
-- [kernel] rbtree: include rcu.h (Jiri Olsa) [1640092]
-- [kernel] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Jiri Olsa) [1640092]
-- [kernel] rbtree: Implement generic latch_tree (Jiri Olsa) [1640092]
-- [kernel] rcu: Move lockless_dereference() out of rcupdate.h (Jiri Olsa) [1640092]
-- [powerpc] bpf, ppc64: fix unexpected r0=0 exit path inside bpf_xadd (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc64: add JIT support for multi-function programs (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc64: pad function address loads with NOPs (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf, ppc64: fix out of bounds access in tail call (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf, ppc64: remove obsolete exception handling from div/mod (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: fix net.core.bpf_jit_enable race (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf, ppc64: do not reload skb pointers in non-skb context (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: take advantage of stack_depth tracking in powerpc JIT (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Use memset32() to pre-fill traps in BPF page(s) (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf, ppc64: implement jiting of BPF_J{LT, LE, SLT, SLE} (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: Add jited_len to struct bpf_prog (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: free up BPF_JMP | BPF_CALL | BPF_X opcode (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: powerpc: trace_bpf_jit_comp64.c: remove stubs for cBPF from arch code (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Introduce __PPC_SH64() (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Flush the entire JIT buffer (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Remove redundant check for non-null image (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Add support for bpf constant blinding (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Implement support for tail calls (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: Introduce accessors for using the tmp local stack space (Yauheni Kaliuta) [1637441]
-- [powerpc] Wire up sys_bpf() syscall (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf: finish porting ebpf to trace_ part of RHEL (Yauheni Kaliuta) [1637441]
-- [kernel] bpf: linux/bpf.h needs linux/numa.h (Yauheni Kaliuta) [1637441]
-- [powerpc] ebpf/jit: Implement JIT compiler for extended BPF (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf/jit: Introduce rotate immediate instructions (Yauheni Kaliuta) [1637441]
-- [powerpc] ppc: bpf: add reqired opcodes for ppc32 (Yauheni Kaliuta) [1637441]
-- [powerpc] add PPC_INST_LBZ opcode (Yauheni Kaliuta) [1637441]
-- [powerpc] bpf/jit: add function descriptor for PPC64v1 abi only (Yauheni Kaliuta) [1637441]
-- [powerpc] Define and use PPC64_ELF_ABI_v2/v1 (Yauheni Kaliuta) [1637441]
-
-* Thu Nov 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-967.el7]
-- [scsi] mpt3sas: Swap I/O memory read value back to cpu endianness (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Add an I/O barrier (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Fix calltrace observed while running IO & reset (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Update driver version "25.100.00.00" (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix possible memory leak (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: For NVME device, issue a protocol level reset (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Update MPI Headers (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Report Firmware Package Version from HBA Driver (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Cache enclosure pages during enclosure add (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Allow processing of events during driver unload (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Increase event log buffer to support 24 port HBA's (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Added support for SAS Device Discovery Error Event (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Enhanced handling of Sense Buffer (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Optimize I/O memory consumption in driver (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Lockless access for chain buffers (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Pre-allocate RDPQ Array at driver boot time (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Bug fix for big endian systems (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix spelling mistake: "disbale" -> "disable" (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Do not mark fw_event workqueue as WQ_MEM_RECLAIM (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: clarify mmio pointer types (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce function to clone mpi reply (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce function to clone mpi request (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce Base function for cloning (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce API to get BAR0 mapped buffer address (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Configure reply post queue depth, DMA and sgl tablesize (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Add PCI device ID for Andromeda (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: wait for and flush running commands on shutdown/unload (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix oops in error handlers after shutdown/unload (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: make function _get_st_from_smid static (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: lockless command submission (Tomas Henzl) [1513855]
-- [virtio_scsi] use cmd_size (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: simplify _wait_for_commands_to_complete() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: simplify mpt3sas_scsi_issue_tm() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: simplify task management functions (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: always use first reserved smid for ioctl passthrough (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: check command status before attempting abort (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Introduce mpt3sas_get_st_from_smid() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: open-code _scsih_scsi_lookup_get() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: separate out _base_recovery_check() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: use list_splice_init() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: set default value for cb_idx (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Proper handling of set/clear of "ATA command pending" flag (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Remove unused variable requeue_event (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Replace PCI pool old API (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: remove a stray KERN_INFO (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: cleanup _scsih_pcie_enumeration_event() (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix dma_addr_t casts (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Update mpt3sas driver version (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Fix sparse warnings (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Fix nvme drives checking for tlr (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: NVMe drive support for BTDHMAPPING ioctl command and log info (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Add-Task-management-debug-info-for-NVMe-drives (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: scan and add nvme device after controller reset (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Set NVMe device queue depth as 128 (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Handle NVMe PCIe device related events generated from firmware (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: API's to remove nvme drive from sml (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: API 's to support NVMe drive addition to SML (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Added support for nvme encapsulated request message (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: SGL to PRP Translation for I/Os to NVMe devices (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Recognize and act on iopriority info (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: Add nvme device support in slave alloc, target alloc and probe (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: fix an out of bound write (Tomas Henzl) [1513855]
-- [scsi] mpt3sas: switch to pci_alloc_irq_vectors (Tomas Henzl) [1513855]
-
-* Mon Nov 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-966.el7]
-- [kernel] sched/cputime: Accumulate vtime on top of nsec clocksource (Yauheni Kaliuta) [1436351]
-- [kernel] sched/cputime: Move the vtime task fields to their own struct (Yauheni Kaliuta) [1436351]
-- [kernel] sched/cputime: Rename vtime fields (Yauheni Kaliuta) [1436351]
-- [kernel] sched/cputime: Always set tsk->vtime_snap_whence after accounting vtime (Yauheni Kaliuta) [1436351]
-- [kernel] timer/sysclt: Restrict timer migration sysctl values to 0 and 1 (Phil Auld) [1619473]
-- [mm] slub: extend slub debug to handle multiple slabs (Aaron Tomlin) [1650336]
-- [mm] slub: relax CMPXCHG consistency restrictions (Aaron Tomlin) [1650102]
-- [mm] slub: convert SLAB_DEBUG_FREE to SLAB_CONSISTENCY_CHECKS (Aaron Tomlin) [1650102]
-- [mm] slub: fix/clean free_debug_processing return paths (Aaron Tomlin) [1650102]
-- [mm] slub: drop lock at the end of free_debug_processing (Aaron Tomlin) [1650102]
-- [fs] nfsdv4: use export cache flushtime for changeid on V4ROOT objects ("J. Bruce Fields") [1637101 1570022]
-- [fs] Add some missing debug fields in server and tcon structs (Leif Sahlberg) [1588912]
-- [fs] nfsv4: Fix _nfs4_do_setlk() (Benjamin Coddington) [1468559]
-- [fs] nfsv4: Don't add a new lock on an interrupted wait for LOCK (Benjamin Coddington) [1468559]
-- [fs] don't carry MAY_OPEN in op->acc_mode (Prarit Bhargava) [1590228]
-- [fs] allow open(dir, O_TMPFILE|..., 0) with mode 0 (Prarit Bhargava) [1590228]
-- [fs] sunrpc: Change rpc_print_iostats to rpc_clnt_show_stats and handle rpc_clnt clones (Dave Wysochanski) [1255395]
-- [fs] sunrpc: Add _add_rpc_iostats() to add rpc_iostats metrics (Dave Wysochanski) [1255395]
-- [fs] sunrpc: add _print_rpc_iostats() to output metrics for one RPC op (Dave Wysochanski) [1255395]
-- [x86] Mark Intel Cascade Lake supported (Steve Best) [1639980]
-
-* Wed Nov 14 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-965.el7]
-- [vfio] spapr: Fix missing mutex unlock when creating a window (David Gibson) [1612677]
-- [vfio] spapr_tce: Set window when adding additional groups to container (David Gibson) [1612677]
-- [vfio] spapr_tce: Check kzalloc() return when preregistering memory (David Gibson) [1612677]
-- [vfio] powerpc/mm/iommu, vfio/spapr: Put pages on VFIO container shutdown (David Gibson) [1612677]
-- [vfio] spapr: Reference mm in tce_container (David Gibson) [1612677]
-- [vfio] spapr: Postpone allocation of userspace version of TCE table (David Gibson) [1612677]
-- [vfio] powerpc/iommu: Stop using @current in mm_iommu_xxx (David Gibson) [1612677]
-- [vfio] spapr: Postpone default window creation (David Gibson) [1612677]
-- [vfio] spapr: Add a helper to create default DMA window (David Gibson) [1612677]
-- [vfio] vfio_iommu_spapr_tce: Remove unneeded iommu_group_get_iommudata (David Gibson) [1612677]
-- [powerpc] iommu: Pass mm_struct to init/cleanup helpers (David Gibson) [1612677]
-- [powerpc] powernv/ioda: Fix endianness when reading TCEs (David Gibson) [1612677]
-- [gpu] drm/i915: Add short HPD IRQ storm detection for non-MST systems (Lyude Paul) [1608704]
-- [gpu] drm/i915: Clarify flow for disabling IRQs on storms (Lyude Paul) [1608704]
-- [gpu] drm/i915: Fix threshold check in intel_hpd_irq_storm_detect() (Lyude Paul) [1608704]
-- [gpu] drm/i915: Fix NULL deref when re-enabling HPD IRQs on systems with MST (Lyude Paul) [1608704]
-- [gpu] drm/i915: Fix possible race in intel_dp_add_mst_connector() (Lyude Paul) [1608704]
-- [netdrv] treewide: devm_kzalloc() -> devm_kcalloc() (Ivan Vecera) [1647141]
-- [pci] iov: Add pci_sriov_configure_simple() (Ivan Vecera) [1647141]
-
-* Fri Nov 09 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-964.el7]
-- [security] Make [un]register_lsm_notifier() null ops if !selinux_enabled (Don Dutile) [1621072]
-- [iommu] amd: Clear memory encryption mask from physical address (Gary Hook) [1643293]
-- [watchdog] itco_wdt: Remove unused hooks (David Arcari) [1645537]
-- [watchdog] itco_wdt: Drop option vendorsupport=2 (David Arcari) [1645537]
-- [watchdog] itco_wdt: Add PMC specific noreboot update api (David Arcari) [1645537]
-- [watchdog] itco_wdt: cleanup set/unset no_reboot_bit functions (David Arcari) [1645537]
-- [watchdog] itco_wdt: Replace shutdown function with call to watchdog_stop_on_reboot (David Arcari) [1645537]
-- [watchdog] itco_wdt: Simplify module init function (David Arcari) [1645537]
-- [watchdog] itco_wdt: Use pdev for platform device and pci_dev for pci device (David Arcari) [1645537]
-- [watchdog] itco_wdt: Use device managed resources (David Arcari) [1645537]
-- [watchdog] itco_wdt: Use allocated data structures (David Arcari) [1645537]
-- [watchdog] itco_wdt: constify iTCO_wdt_pm structure (David Arcari) [1645537]
-- [watchdog] pm / watchdog: itco: stop watchdog during system suspend (David Arcari) [1645537]
-- [watchdog] drop owner assignment from platform_drivers (David Arcari) [1645537]
-- [watchdog] itco-wdt: handle 5th variation for Apollo Lake (David Arcari) [1645537]
-- [watchdog] fix checkpatch warnings and error (David Arcari) [1645537]
-- [watchdog] use dev_get_platdata() (David Arcari) [1645537]
-- [pinctrl] broxton: Convert unsigned to unsigned int (David Arcari) [1643270]
-- [pinctrl] intel: Convert to use SPDX identifier (David Arcari) [1643270]
-- [pinctrl] broxton: No need to take pointer of a pointer (David Arcari) [1643270]
-- [pinctrl] broxton: Rename apl-pinctrl driver (David Arcari) [1643270]
-- [pinctrl] broxton: Use correct PADCFGLOCK offset (David Arcari) [1643270]
-- [pinctrl] broxton: enable platform device in the absence of ACPI enumeration (David Arcari) [1643270]
-- [pinctrl] intel: fix bug of register offset calculation (David Arcari) [1643270]
-- [pinctrl] intel: Add Intel Broxton pin controller support (David Arcari) [1643270]
-- [x86] cpu: Add workaround for MONITOR instruction erratum on Goldmont based CPUs (David Arcari) [1594329]
-
-* Thu Nov 08 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-963.el7]
-- [netdrv] bonding/802.3ad: fix link_failure_count tracking (Jarod Wilson) [1641660]
-- [gpu] drm/i915/gvt: fix cleanup sequence in intel_gvt_clean_device (Paul Lai) [1599461]
-- [block] nvme: do not require GENERIC_HARDIRQ interfaces on s390 (Hendrik Brueckner) [1637637]
-- [kernel] edac: Raise the maximum number of memory controllers (Aristeu Rozanski) [1633763]
-- [nvme] nvme-pci: add a memory barrier to nvme_dbbuf_update_and_check_event (David Milburn) [1630481]
-- [md] raid5-cache: disable reshape completely (Nigel Croxon) [1358592]
-- [block] floppy: Do not copy a kernel pointer to user memory in FDGETPRM ioctl (Sanskriti Sharma) [1555420] {CVE-2018-7755}
-- [fs] kernel: proc: add cond_resched to /proc/kpage* read/write loop (Rafael Aquini) [1560020]
-- [fs] kernel: proc: export idle flag via kpageflags (Rafael Aquini) [1560020]
-- [mm] introduce idle page tracking (Rafael Aquini) [1560020]
-- [mm] bring back /sys/kernel/mm (Rafael Aquini) [1560020]
-- [mm] vmscan: get rid of throttle_vm_writeout (Rafael Aquini) [1641801]
-- [mm] vmscan: don't trigger congestion wait on dirty-but-not-writeout pages (Rafael Aquini) [1563411]
-- [mm] vmscan: avoid throttling reclaim for loop-back nfsd threads (Rafael Aquini) [1563411]
-- [mm] vmscan: unlock page while waiting on writeback (Rafael Aquini) [1563411]
-- [mm] vmscan: remove remains of kswapd-managed zone->all_unreclaimable (Rafael Aquini) [1563411]
-- [mm] vmscan: fix do_try_to_free_pages() livelock (Rafael Aquini) [1563411]
-- [mm] vmscan: use DIV_ROUND_UP for calculation of zone's balance_gap and correct comments (Rafael Aquini) [1563411]
-
-* Wed Nov 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-962.el7]
-- [documentation] proc.txt: Adding 'HardwareCorrupted' field and description (Prashant Dhamdhere) [1626099]
-- [gpu] drm/i915/query: Protect tainted function pointer lookup (Rob Clark) [1639677]
-- [gpu] drm/amdgpu/pm: Fix potential Spectre v1 (Rob Clark) [1639677]
-- [gpu] drm/i915/kvmgt: Fix potential Spectre v1 (Rob Clark) [1639677]
-- [tty] vt_ioctl: fix potential Spectre v1 (Prarit Bhargava) [1639191]
-- [mailbox] pcc: handle parse error (David Arcari) [1616195]
-- [scsi] vmw-pvscsi: return DID_BUS_BUSY for adapter-initated aborts (Neil Horman) [1613541]
-- [block] badblocks: fix wrong return value in badblocks_set if badblocks are disabled (Xiao Ni) [1476097]
-- [iommu] vt-d: Fix iotlb psi missing for mappings (Peter Xu) [1623856]
-- [iommu] vt-d: Introduce __mapping_notify_one() (Peter Xu) [1623856]
-- [pci] hv: Disable/enable IRQs rather than BH in hv_compose_msi_msg() (Mohammed Gamal) [1636237]
-- [pci] hv: Do not wait forever on a device that has disappeared (Mohammed Gamal) [1636237]
-- [pci] hv: Fix 2 hang issues in hv_compose_msi_msg() (Mohammed Gamal) [1636237]
-- [pci] hv: Do not sleep in compose_msi_msg() (Mohammed Gamal) [1636237]
-- [kernel] module: fix ddebug_remove_module() (Artem Savkov) [1497613]
-- [pinctrl] cannonlake: Fix HOSTSW_OWN register offset of H variant (Benjamin Tissoires) [1609926 1544041]
-- [pinctrl] cannonlake: Fix gpio base for GPP-E (Benjamin Tissoires) [1609926 1544041]
-- [pinctrl] cannonlake: Fix community ordering for H variant (Benjamin Tissoires) [1609926 1544041]
-- [pinctrl] intel: Do pin translation in other GPIO operations as well (Benjamin Tissoires) [1609926 1544041]
-- [pinctrl] intel: Implement intel_gpio_get_direction callback (Benjamin Tissoires) [1609926 1544041]
-- [platform] x86: dell-smbios-wmi: Correct a memory leak (Jarod Wilson) [1640399]
-- [powerpc] pseries: Fix of_node_put() underflow during reconfig remove (Steve Best) [1619714]
-- [powerpc] tm: Avoid possible userspace r1 corruption on reclaim (Desnes Augusto Nunes do Rosario) [1635307]
-- [powerpc] tm: Fix userspace r13 corruption (Desnes Augusto Nunes do Rosario) [1635307]
-- [powerpc] tm: Avoid SLB faults in treclaim/trecheckpoint when RI=0 (Desnes Augusto Nunes do Rosario) [1635307]
-- [x86] microcode: Update the new microcode revision unconditionally (Prarit Bhargava) [1599273]
-- [x86] microcode: Make sure boot_cpu_data.microcode is up-to-date (Prarit Bhargava) [1599273]
-- [x86] kprobes: Use 5-byte NOP when the code might be modified by ftrace (Josh Poimboeuf) [1577050]
-
-* Mon Nov 05 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-961.el7]
-- [powerpc] kvm: book3s hv: Snapshot timebase offset on guest entry (Laurent Vivier) [1627090]
-- [powerpc] kvm: book3s hv: Remove vcpu->arch.dec usage (Laurent Vivier) [1627090]
-- [x86] kvm: x86: ensure all MSRs can always be KVM_GET/SET_MSR'd (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: #GP when guest attempts to write MCi_STATUS register w/o 0 (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/hyper-v: inject #GP only when invalid SINTx vector is unmasked (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/hyper-v: remove stale entries from vec_bitmap/auto_eoi_bitmap on vector change (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: hyperv: avoid livelock in oneshot SynIC timers (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: hyperv: add KVM_CAP_HYPERV_SYNIC2 (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: Add kvm_vcpu_get_idx to get vcpu index in kvm->vcpus (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: fix NULL deref in vcpu_scan_ioapic (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: use delivery to self in hyperv synic (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: x86: hyperv: make function static to avoid compiling warning (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: hyper-v: do not do hypercall userspace exits if SynIC is disabled (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V VMBus hypercall userspace exit (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Reject Hyper-V hypercall continuation (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V SynIC timers tracepoints (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V SynIC tracepoints (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Update SynIC timers on guest entry only (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Skip SynIC vector check for QEMU side (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V fix SynIC timer disabling condition (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Reorg stimer_expiration() to better control timer restart (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V unify stimer_start() and stimer_restart() (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Drop stimer_stop() function (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V timers fix incorrect logical operation (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Remove Hyper-V SynIC timer stopping (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V SynIC timers (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V SynIC message slot pending clearing at SINT ack (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Added Hyper-V vcpu_to_hv_vcpu()/hv_vcpu_to_vcpu() helpers (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Rearrange func's declarations inside Hyper-V header (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V kvm exit (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: Hyper-V synthetic interrupt controller (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/x86: split ioapic-handled and EOI exit bitmaps (Vitaly Kuznetsov) [1631439]
-- [x86] kvm/irqchip: kvm_arch_irq_routing_update renaming split (Vitaly Kuznetsov) [1631439]
-- [x86] kvm: lapic: stop advertising DIRECTED_EOI when in-kernel IOAPIC is in use (Vitaly Kuznetsov) [1452546]
-
-* Mon Nov 05 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-960.el7]
-- [scsi] ipr: System hung while dlpar adding primary ipr adapter back (Diego Domingos) [1631781]
-- [scsi] qedi: Initialize the stats mutex lock (Chad Dupuis) [1633638]
-- [netdrv] ibmvnic: Include missing return code checks in reset function (Steve Best) [1633343]
-- [netdrv] qed: Add support for virtual link (Chad Dupuis) [1638178]
-- [netdrv] qed: Add missing device config for RoCE EDPM in UFP mode (Chad Dupuis) [1631593]
-- [netdrv] qed: Do not add VLAN 0 tag to untagged frames in multi-function mode (Chad Dupuis) [1631593]
-- [netdrv] qed: Fix populating the invalid stag value in multi function mode (Chad Dupuis) [1631593]
-- [s390] crypto: Fix return code checking in cbc_paes_crypt() (Philipp Rudo) [1633354]
-- [s390] qeth: use vzalloc for QUERY OAT buffer (Hendrik Brueckner) [1629864]
-- [s390] qdio: reset old sbal_state flags (Hendrik Brueckner) [1629868]
-- [s390] facilites: use stfle_fac_list array size for MAX_FACILITY_BIT (Hendrik Brueckner) [1628088]
-- [s390] qdio: simplify math in get_*_buffer_frontier() (Prashant Dhamdhere) [1600542]
-- [s390] keyboard: sanitize array index in do_kdsk_ioctl (Steve Best) [1639295]
-- [x86] mark amd rome as unsupported (David Arcari) [1638504]
-- [x86] paravirt: Fix some warning messages (Prarit Bhargava) [1626417] {CVE-2018-15594}
-- [x86] paravirt: Fix spectre-v2 mitigations for paravirt guests (Prarit Bhargava) [1626417] {CVE-2018-15594}
-
-* Wed Oct 31 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-959.el7]
-- [netdrv] qed: Fix link flap issue due to mismatching EEE capabilities (Chad Dupuis) [1636398]
-- [netdrv] qed: Fix shmem structure inconsistency between driver and the mfw (Chad Dupuis) [1634156]
-- [netdrv] qede: Add driver support for 20G link speed (Chad Dupuis) [1635470]
-- [netdrv] Add driver support for 20G link speed (Chad Dupuis) [1635470]
-- [vhost] vhost_net: keep private_data and rx_ring synced (Wei Xu) [1465912]
-- [vhost] vhost_net: initialize rx_ring in vhost_net_open() (Wei Xu) [1465912]
-- [netdrv] tap: free skb if flags error (Wei Xu) [1465912]
-- [netdrv] tun: free skb in early errors (Wei Xu) [1465912]
-- [vhost] fix skb leak in handle_rx() (Wei Xu) [1465912]
-- [vhost] vhost_net: try batch dequing from skb array (Wei Xu) [1465912]
-- [netdrv] tap: support receiving skb from msg_control (Wei Xu) [1465912]
-- [netdrv] tun: support receiving skb through msg_control (Wei Xu) [1465912]
-- [kernel] tap: export skb_array (Wei Xu) [1465912]
-- [kernel] tun: export skb_array (Wei Xu) [1465912]
-- [kernel] skb_array: introduce batch dequeuing (Wei Xu) [1465912]
-- [kernel] ptr_ring: introduce batch dequeuing (Wei Xu) [1465912]
-- [kernel] skb_array: introduce skb_array_unconsume (Wei Xu) [1465912]
-- [kernel] ptr_ring: add ptr_ring_unconsume (Wei Xu) [1465912]
-- [kernel] ptr_ring: batch ring zeroing (Wei Xu) [1465912]
-- [netdrv] nfp: don't depend on eth_tbl being available (Pablo Cascon) [1592881]
-- [netdrv] nfp: fix memory leak on FW load error (Pablo Cascon) [1592881]
-- [netdrv] nfp: add hwmon support (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: allow zero-length capabilities (Pablo Cascon) [1592881]
-- [netdrv] nfp: print a message when mutex wait is interrupted (Pablo Cascon) [1592881]
-- [netdrv] nfp: ignore signals when communicating with management FW (Pablo Cascon) [1592881]
-- [netdrv] nfp: use full 40 bits of the NSP buffer address (Pablo Cascon) [1592881]
-- [netdrv] nfp: add a separate counter for packets with CHECKSUM_COMPLETE (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: improve wrong FW response warnings (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add support for bpf_get_prandom_u32() (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add support for atomic add of unknown values (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: expose command delay slots (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add basic support for atomic adds (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add map deletes from the datapath (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add map updates from the datapath (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add helper for basic map call checks (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: add helper for validating stack pointers (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: rename map_lookup_stack() to map_call_stack_common() (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: detect packet reads could be cached, enable the optimisation (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: support unaligned read offset (Pablo Cascon) [1592881]
-- [netdrv] nfp: bpf: read from packet data cache for PTR_TO_PACKET (Pablo Cascon) [1592881]
-- [netdrv] nfp: flower: implement ip fragmentation match offload (Pablo Cascon) [1592881]
-- [netdrv] nfp: flower: refactor shared ip header in match offload (Pablo Cascon) [1592881]
-- [netdrv] Use octal not symbolic permissions (Pablo Cascon) [1592881]
-- [netdrv] nfp: advertise firmware for mixed 10G/25G mode (Pablo Cascon) [1592881]
-- [netdrv] nfp: add Makefiles to all directories (Pablo Cascon) [1592881]
-- [netdrv] nfp: flower: implement tcp flag match offload (Pablo Cascon) [1592881]
-- [netdrv] nfp: standardize FW header whitespace (Pablo Cascon) [1592881]
-- [netdrv] nfp: use tc_cls_can_offload_and_chain0() (Pablo Cascon) [1592881]
-- [netdrv] nfp: setup xdp_rxq_info (Pablo Cascon) [1592881]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Pablo Cascon) [1592881]
-
-* Tue Oct 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-958.el7]
-- [target] scsi: iscsi: Use bin2hex instead of a re-implementation (Maurizio Lombardi) [1627034] {CVE-2018-14633}
-- [target] scsi: iscsi: Use hex2bin instead of a re-implementation (Maurizio Lombardi) [1627034] {CVE-2018-14633}
-- [net] 8021q: create device with all possible features in wanted_features (Davide Caratti) [1640645]
-- [kernel] sched/fair: Fix throttle_list starvation with low CFS quota (Phil Auld) [1601153]
-- [kernel] cpuset: use trialcs->mems_allowed as a temp variable (Aristeu Rozanski) [1613248]
-- [kernel] cpuset: fix a warning when clearing configured masks in old hierarchy (Aristeu Rozanski) [1613248]
-- [kernel] cpuset: initialize effective masks when clone_children is enabled (Aristeu Rozanski) [1613248]
-- [mm] memcontrol: fix high scheduling latency source in mem_cgroup_reparent_charges (Andrea Arcangeli) [1632898]
-- [x86] boot: Fix kexec booting failure in the SEV bit detection code (Kairui Song) [1628828]
-- [x86] efi: Only load initrd above 4g on second try (Lenny Szubowicz) [1608955]
-- [x86] efi: Support initrd loaded above 4G (Lenny Szubowicz) [1608955]
-- [x86] efi: Generalize handle_ramdisks() and rename to handle_cmdline_files() (Lenny Szubowicz) [1608955]
-
-* Thu Oct 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-957.el7]
-- [mm] mlock: avoid increase mm->locked_vm on mlock() when already mlock2(, MLOCK_ONFAULT) (Rafael Aquini) [1633059]
-
-* Wed Oct 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-956.el7]
-- [block] blk-mq: fix hctx debugfs entry related race between update hw queues and cpu hotplug (Ming Lei) [1619988]
-- [nvme] nvme-pci: unquiesce dead controller queues (Ming Lei) [1632424]
-
-* Wed Oct 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-955.el7]
-- [netdrv] net/mlx5e: IPoIB, Set the netdevice sw mtu in ipoib enhanced flow (Alaa Hleihel) [1633652]
-- [netdrv] net/mlx5e: Fix traffic between VF and representor (Alaa Hleihel) [1633652]
-- [mm] vmscan: do not loop on too_many_isolated for ever (Waiman Long) [1632050]
-
-* Mon Sep 24 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-954.el7]
-- [fs] exec: Limit arg stack to at most 75 of _STK_LIM (Yauheni Kaliuta) [1625991] {CVE-2018-14634}
-- [fs] exec: account for argv/envp pointers (Yauheni Kaliuta) [1625991] {CVE-2018-14634}
-- [kernel] revert "sched/topology: Introduce NUMA identity node sched domain" (Gustavo Duarte) [1620031]
-- [powerpc] revert "powernv: Add a virtual irqchip for opal events" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv: Reorder OPAL subsystem initialisation" (Gustavo Duarte) [1617966]
-- [char] revert "ipmi/powernv: Convert to irq event interface" (Gustavo Duarte) [1617966]
-- [tty] revert "hvc: Convert to using interrupts instead of opal events" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv/eeh: Update the EEH code to use the opal irq domain" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv/opal: Convert opal message events to opal irq domain" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv/elog: Convert elog to opal irq domain" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv/opal-dump: Convert to irq domain" (Gustavo Duarte) [1617966]
-- [powerpc] revert "opal: Remove events notifier" (Gustavo Duarte) [1617966]
-- [powerpc] revert "powernv: Increase opal-irqchip initcall priority" (Gustavo Duarte) [1617966]
-- [powerpc] revert "opal-irqchip: Fix double endian conversion" (Gustavo Duarte) [1617966]
-- [powerpc] revert "opal-irqchip: Fix deadlock introduced by "Fix double endian conversion"" (Gustavo Duarte) [1617966]
-- [sound] alsa: hda/realtek - two more lenovo models need fixup of MIC_LOCATION (Jaroslav Kysela) [1611958]
-- [sound] alsa: hda/realtek - Fix the problem of two front mics on more machines (Jaroslav Kysela) [1611958]
-- [sound] alsa: hda/realtek - Enable mic-mute hotkey for several Lenovo AIOs (Jaroslav Kysela) [1611958]
-
-* Fri Sep 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-953.el7]
-- [cdrom] information leak in cdrom_ioctl_media_changed() (Sanskriti Sharma) [1578207] {CVE-2018-10940}
-- [mm] mlock: remove lru_add_drain_all() (Oleksandr Natalenko) [1624765]
-- [block] blk-mq: fix race between updating nr_hw_queues and switching io sched (Ming Lei) [1619988]
-- [block] blk-mq: avoid to map CPU into stale hw queue (Ming Lei) [1619988]
-- [block] blk-mq: fix sysfs inflight counter (Ming Lei) [1548261]
-- [block] blk-mq: count allocated but not started requests in iostats inflight (Ming Lei) [1548261]
-- [block] fix a crash caused by wrong API (Ming Lei) [1548261]
-- [block] blk-mq: enable checking two part inflight counts at the same time (Ming Lei) [1548261]
-- [block] blk-mq: provide internal in-flight variant (Ming Lei) [1548261]
-- [block] make part_in_flight() take an array of two ints (Ming Lei) [1548261]
-- [block] pass in queue to inflight accounting (Ming Lei) [1548261]
-- [x86] Mark Intel Cascade Lake supported (Steve Best) [1584343]
-
-* Tue Sep 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-952.el7]
-- [netdrv] mlx5e: IPoIB, Use priv stats in completion rx flow (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: IPoIB, Add ndo stats support for IPoIB child devices (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: IPoIB, Add ndo stats support for IPoIB netdevices (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: IPoIB, Initialize max_opened_tc in mlx5i_init flow (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: Present SW stats when state is not opened (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: Avoid reset netdev stats on configuration changes (Alaa Hleihel) [1618609]
-- [netdrv] mlx5e: Use bool as return type for mlx5e_xdp_handle (Alaa Hleihel) [1618609]
-- [netdrv] net: aquantia: memory corruption on jumbo frames (Igor Russkikh) [1628238]
-- [kernel] revert "platform/uv: Add adjustable set memory block size function" (Baoquan He) [1625143]
-- [x86] revert "mm: probe memory block size for generic x86 64bit" (Baoquan He) [1625143]
-- [x86] revert "mm: Use 2GB memory block size on large-memory x86-64 systems" (Baoquan He) [1625143]
-- [x86] revert "mm: Streamline and restore probe_memory_block_size()" (Baoquan He) [1625143]
-- [x86] revert "mm/memory_hotplug: determine block size based on the end of boot memory" (Baoquan He) [1625143]
-- [mm] revert "memory_hotplug: do not fail offlining too early" (Baoquan He) [1625143]
-- [mm] revert "memory_hotplug: remove timeout from __offline_memory" (Baoquan He) [1625143]
-- [kernel] revert "x86/platform/uv: Add adjustable set memory block size function" (Baoquan He) [1625143]
-
-* Mon Sep 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-951.el7]
-- [fs] fanotify: fix logic of events on child (Miklos Szeredi) [1597738]
-- [fs] cifs: add a check for session expiry (Leif Sahlberg) [1626358]
-- [fs] xfs: completely disable per-inode DAX behavior (Eric Sandeen) [1623150]
-- [fs] fs: get_rock_ridge_filename(): handle malformed NM entries (Bill O'Donnell) [1340778] {CVE-2016-4913}
-- [md] fix 'allow faster resync only on non-rotational media' underneath dm (Nigel Croxon) [1561162]
-- [md] Revert "allow faster resync only on non-rotational media" (Nigel Croxon) [1561162]
-- [mm] madvise: fix madvise() infinite loop under special circumstances (Rafael Aquini) [1552982] {CVE-2017-18208}
-- [infiniband] srpt: Support HCAs with more than two ports (Don Dutile) [1616192]
-- [infiniband] overflow.h: Add allocation size calculation helpers (Don Dutile) [1616192]
-- [net] ip_tunnel: clean the GSO bits properly (Flavio Leitner) [1607907]
-- [kernel] revert cpuset: fix a warning when clearing configured masks in old hierarchy (Aristeu Rozanski) [1626943]
-- [s390] sclp: Change SCLP console default buffer-full behavior (Hendrik Brueckner) [1625350]
-- [x86] kvm: Take out __exit annotation in vmx_exit() (Waiman Long) [1626560]
-- [x86] mark coffeelake-s 8+2 as supported (David Arcari) [1575457]
-- [x86] kvm: vmx: fixes for vmentry_l1d_flush module parameter (Marcelo Tosatti) [1619602]
-- [x86] speculation: Use ARCH_CAPABILITIES to skip L1D flush on vmentry (Marcelo Tosatti) [1619602]
-
-* Sat Sep 15 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-950.el7]
-- [kernel] posix-timer: Properly check sigevent->sigev_notify (Phil Auld) [1613711] {CVE-2017-18344}
-- [sound] alsa: rawmidi: Change resized buffers atomically (Denys Vlasenko) [1593087] {CVE-2018-10902}
-- [fs] Fix up non-directory creation in SGID directories (Miklos Szeredi) [1600953] {CVE-2018-13405}
-- [fs] pnfs: Layoutreturn must free the layout after the layout-private data (Scott Mayhew) [1625517]
-- [fs] sunrpc: Ensure we always close the socket after a connection shuts down (Steve Dickson) [1614950]
-- [fs] xfs: remove filestream item xfs_inode reference (Brian Foster) [1518623]
-- [mm] set IORESOURCE_SYSTEM_RAM to system RAM to fix memory hot-add failure (Larry Woodman) [1628349]
-- [firmware] efivars: Protect DataSize and Data in efivar_entry.var (Lenny Szubowicz) [1597868]
-
-* Fri Sep 14 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-949.el7]
-- [scsi] libsas: fix memory leak in sas_smp_get_phy_events() (Tomas Henzl) [1558582] {CVE-2018-7757}
-- [vhost] fix info leak due to uninitialized memory (Jason Wang) [1573705] {CVE-2018-1118}
-- [pci] Fix calculation of bridge window's size and alignment (Myron Stowe) [1623800]
-- [md] dm thin metadata: try to avoid ever aborting transactions (Mike Snitzer) [1614151]
-- [crypto] api: fix finding algorithm currently being tested (Herbert Xu) [1618701]
-- [sound] alsa: hda/realtek: Fix HP Headset Mic can't record (Jaroslav Kysela) [1622721]
-- [sound] alsa: hda/realtek - Fixup for HP x360 laptops with B&O speakers (Jaroslav Kysela) [1622721]
-- [sound] alsa: hda/realtek - Fixup mute led on HP Spectre x360 (Jaroslav Kysela) [1622721]
-- [target] scsi: tcmu: use u64 for dev_size (Xiubo Li) [1603363]
-- [target] scsi: tcmu: use match_int for dev params (Xiubo Li) [1603363]
-- [target] scsi: tcmu: do not set max_blocks if data_bitmap has been setup (Xiubo Li) [1603363]
-- [target] scsi: tcmu: unmap if dev is configured (Xiubo Li) [1603363]
-- [target] scsi: tcmu: check if dev is configured before block/reset (Xiubo Li) [1603363]
-- [target] scsi: tcmu: use lio core se_device configuration helper (Xiubo Li) [1603363]
-- [target] scsi: target: add helper to check if dev is configured (Xiubo Li) [1603363]
-- [target] scsi: tcmu: initialize list head (Xiubo Li) [1603363]
-- [target] scsi: target_core_user: fix double unlock (Xiubo Li) [1603363]
-- [s390] arch: Set IORESOURCE_SYSTEM_RAM flag for resources (Gary Hook) [1627889]
-- [x86] efi-bgrt: Switch all pr_err() to pr_notice() for invalid BGRT (Lenny Szubowicz) [1464241]
-- [x86] efi/bgrt: Don't ignore the BGRT if the 'valid' bit is 0 (Lenny Szubowicz) [1464241]
-- [x86] efi: Preface all print statements with efi* tag (Lenny Szubowicz) [1464241]
-- [x86] efi-bgrt: Switch pr_err() to pr_debug() for invalid BGRT (Lenny Szubowicz) [1464241]
-- [x86] efi-bgrt: Add error handling; inform the user when ignoring the BGRT (Lenny Szubowicz) [1464241]
-- [x86] efi: Check status field to validate BGRT header (Lenny Szubowicz) [1464241]
-
-* Tue Sep 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-948.el7]
-- [gpu] drm/nouveau/drm/nouveau: Don't forget to cancel hpd_work on suspend/unload (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/drm/nouveau: Prevent handling ACPI HPD events too early (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau: Fix deadlocks in nouveau_connector_detect() (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/drm/nouveau: Use pm_runtime_get_noresume() in connector_detect() (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/drm/nouveau: Fix deadlock with fb_helper with async RPM requests (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau: Remove duplicate poll_enable() in pmops_runtime_suspend() (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/drm/nouveau: Fix bogus drm_kms_helper_poll_enable() placement (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau: Reset MST branching unit before enabling (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau: Only write DP_MSTM_CTRL when needed (Lyude Paul) [1597881 1571927]
-- [gpu] drm/nouveau/kms/nv50-: ensure window updates are submitted when flushing mst disables (Lyude Paul) [1597881 1571927]
-- [vfio] vfio-pci: Disable binding to PFs with SR-IOV enabled (Alex Williamson) [1583487]
-- [mm] partially revert: remove per-zone hashtable of bitlock waitqueues (Jeff Moyer) [1623980]
-- [security] selinux: mark unsupported policy capabilities as reserved (Paul Moore) [1600850]
-- [x86] intel_rdt: Fix MBA resource initialization (Prarit Bhargava) [1610239]
-
-* Mon Sep 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-947.el7]
-- [net] ip: process in-order fragments efficiently (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] ipv6: defrag: drop non-last frags smaller than min mtu (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] ip: use rb trees for IP frag queue (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] revert ipv4: use skb coalescing in defragmentation (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] modify skb_rbtree_purge to return the truesize of all purged skbs (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] ip: discard IPv4 datagrams with overlapping segments (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] speed up skb_rbtree_purge() (Sabrina Dubroca) [1613924] {CVE-2018-5391}
-- [net] avoid skb_warn_bad_offload on IS_ERR (Andrea Claudi) [1624702]
-- [net] ipv4: fix incorrectly registered callback for sysctl_fib_multipath_hash_policy (Ivan Vecera) [1624356]
-- [net] ipset: list:set: Decrease refcount synchronously on deletion and replace (Stefano Brivio) [1593732]
-- [netdrv] cfg80211: let's wmm_rule be part of reg_rule structure (Stanislaw Gruszka) [1620108]
-- [netdrv] nl80211: Add wmm rule attribute to NL80211_CMD_GET_WIPHY dump command (Stanislaw Gruszka) [1620108]
-- [netdrv] iwlwifi: mvm: remove division by size of sizeof(struct ieee80211_wmm_rule) (Stanislaw Gruszka) [1620108]
-- [hv] vmbus: don't return values for uninitalized channels (Vitaly Kuznetsov) [1615500]
-- [md] dm raid: bump target version, update comments and documentation (Mike Snitzer) [1573988]
-- [md] dm raid: fix RAID leg rebuild errors (Mike Snitzer) [1573988]
-- [md] dm raid: fix rebuild of specific devices by updating superblock (Mike Snitzer) [1626094]
-- [md] dm raid: fix stripe adding reshape deadlock (Mike Snitzer) [1613039 1514539]
-- [md] dm raid: fix reshape race on small devices (Mike Snitzer) [1573988 1586123]
-- [acpi] acpica: reference counts: increase max to 0x4000 for large servers (Frank Ramsay) [1618758]
-- [gpu] drm/i915/cfl: Add a new CFL PCI ID (Rob Clark) [1533336]
-- [gpu] drm/i915/aml: Introducing Amber Lake platform (Rob Clark) [1533336]
-- [gpu] drm/i915/whl: Introducing Whiskey Lake platform (Rob Clark) [1533336]
-- [gpu] drm/nouveau/kms/nv50-: allocate push buffers in vidmem on pascal (Ben Skeggs) [1584963]
-- [gpu] drm/nouveau/fb/gp100-: disable address remapper (Ben Skeggs) [1584963]
-- [mm] kernel error swap_info_get: Bad swap offset entry (Mikulas Patocka) [1622747]
-- [s390] detect etoken facility (Hendrik Brueckner) [1625349]
-- [s390] lib: use expoline for all bcr instructions (Hendrik Brueckner) [1625349]
-- [x86] spec_ctrl: Don't turn off IBRS on idle with enhanced IBRS (Waiman Long) [1614143]
-- [x86] speculation: Support Enhanced IBRS on future CPUs (Waiman Long) [1614143]
-
-* Mon Sep 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-946.el7]
-- [netdrv] qed: Add new TLV to request PF to update MAC in bulletin board (Harish Patil) [1460150]
-- [netdrv] qed: use trust mode to allow VF to override forced MAC (Harish Patil) [1460150]
-- [netdrv] hv_netvsc: Fix napi reschedule while receive completion is busy (Mohammed Gamal) [1614503]
-- [netdrv] hv_netvsc: remove unneeded netvsc_napi_complete_done() (Mohammed Gamal) [1614503]
-- [scsi] qedi: Add the CRC size within iSCSI NVM image (Chad Dupuis) [1611573]
-- [char] ipmi: Move BT capabilities detection to the detect call (Frank Ramsay) [1618778]
-- [x86] kvm: update master clock before computing kvmclock_offset (Marcelo Tosatti) [1594034]
-
-* Fri Sep 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-945.el7]
-- [samples] bpf: Additional changes (Jiri Olsa) [1619721]
-- [samples] bpf: Add v4.16 sources (Jiri Olsa) [1619721]
-- [tools] perf python: Fix pyrf_evlist__read_on_cpu() interface (Jiri Olsa) [1620774]
-- [tools] perf mmap: Store real cpu number in 'struct perf_mmap' (Jiri Olsa) [1620774]
-- [netdrv] cxgb4: update 1.20.8.0 as the latest firmware supported (Arjun Vynipadath) [1622551]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1622551]
-- [netdrv] mlx5e: Fix null pointer access when setting MTU of vport representor (Erez Alfasi) [1625195]
-- [netdrv] mlx5e: Support configurable MTU for vport representors (Erez Alfasi) [1625195]
-- [netdrv] mlx5e: Save MTU in channels params (Erez Alfasi) [1625195]
-- [netdrv] be2net: Fix memory leak in be_cmd_get_profile_config() (Petr Oros) [1625703]
-- [netdrv] virtio-net: set netdevice mtu correctly (Mohammed Gamal) [1610416]
-- [netdrv] i40e: Prevent deleting MAC address from VF when set by PF (Stefan Assmann) [1614161]
-- [netdrv] i40evf: cancel workqueue sync for adminq when a VF is removed (Stefan Assmann) [1615829]
-- [netdrv] i40e: Fix for Tx timeouts when interface is brought up if DCB is enabled (Stefan Assmann) [1616149]
-- [netdrv] i40e: fix condition of WARN_ONCE for stat strings (Stefan Assmann) [1609173]
-- [uio] Revert "use request_threaded_irq instead" (Xiubo Li) [1560418]
-- [fs] seq_file: fix out-of-bounds read (Paolo Abeni) [1620002]
-- [md] RAID10 BUG_ON in raise_barrier when force is true and conf->barrier is 0 (Nigel Croxon) [1530776]
-- [md] allow faster resync only on non-rotational media (Nigel Croxon) [1561162]
-- [nvdimm] libnvdimm: fix ars_status output length calculation (Jeff Moyer) [1616304]
-- [cpufreq] Fix possible circular locking dependency (Waiman Long) [1529668]
-- [mm] memcg: delay memcg id freeing (Aristeu Rozanski) [1607249]
-- [mm] mlock: fix mlock accounting (Rafael Aquini) [1610652]
-- [mm] page-writeback: check-before-clear PageReclaim (Rafael Aquini) [1588002]
-- [mm] migrate: check-before-clear PageSwapCache (Rafael Aquini) [1588002]
-- [mm] mempolicy: fix crashes from mbind() merging vmas (Rafael Aquini) [1588002]
-- [x86] apic: Future-proof the TSC_DEADLINE quirk for SKX (Steve Best) [1624090]
-
-* Tue Sep 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-944.el7]
-- [net] ipvs: Fix panic due to non-linear skb (Davide Caratti) [1623088]
-- [net] ipv4: remove BUG_ON() from fib_compute_spec_dst (Lorenzo Bianconi) [1496779]
-- [net] ipv6: fix cleanup ordering for ip6_mr failure (Xin Long) [1622218]
-- [net] ipv6: reorder icmpv6_init() and ip6_mr_init() (Xin Long) [1622218]
-- [x86] subject: x86/efi: Access EFI MMIO data as unencrypted when SEV is active (Gary Hook) [1361286]
-- [x86] boot: Fix boot failure when SMP MP-table is based at 0 (Gary Hook) [1361286]
-- [x86] resource: Fix resource_size.cocci warnings (Gary Hook) [1361286]
-- [x86] kvm: Clear encryption attribute when SEV is active (Gary Hook) [1361286]
-- [x86] kvm: Decrypt shared per-cpu variables when SEV is active (Gary Hook) [1361286]
-- [kernel] percpu: Introduce DEFINE_PER_CPU_DECRYPTED (Gary Hook) [1361286]
-- [x86] Add support for changing memory encryption attribute in early boot (Gary Hook) [1361286]
-- [x86] io: Unroll string I/O when SEV is active (Gary Hook) [1361286]
-- [x86] boot: Add early boot support when running with SEV active (Gary Hook) [1361286]
-- [x86] mm: Add DMA support for SEV memory encryption (Gary Hook) [1361286]
-- [x86] mm, resource: Use PAGE_KERNEL protection for ioremap of memory pages (Gary Hook) [1361286]
-- [kernel] resource: Provide resource struct in resource walk callback (Gary Hook) [1361286]
-- [kernel] resource: Consolidate resource walking code (Gary Hook) [1361286]
-- [x86] efi: Access EFI data as encrypted when SEV is active (Gary Hook) [1361286]
-- [x86] mm: Include SEV for encryption memory attribute changes (Gary Hook) [1361286]
-- [x86] mm: Use encrypted access of boot related data with SEV (Gary Hook) [1361286]
-- [x86] mm: Add Secure Encrypted Virtualization (SEV) support (Gary Hook) [1361286]
-- [documentation] x86: Add AMD Secure Encrypted Virtualization (SEV) description (Gary Hook) [1361286]
-- [x86] mm: Remove unnecessary TLB flush for SME in-place encryption (Gary Hook) [1361286]
-- [x86] kexec: Remove walk_iomem_res() call with GART type (Gary Hook) [1361286]
-- [kernel] resource: Change walk_system_ram() to use System RAM type (Gary Hook) [1361286]
-- [kernel] kexec: Set IORESOURCE_SYSTEM_RAM for System RAM (Gary Hook) [1361286]
-- [x86] arch: Set IORESOURCE_SYSTEM_RAM flag for System RAM (Gary Hook) [1361286]
-- [x86] Set System RAM type and descriptor (Gary Hook) [1361286]
-- [kernel] resource: Handle resource flags properly (Gary Hook) [1361286]
-- [kernel] resource: Add System RAM resource type (Gary Hook) [1361286]
-
-* Mon Sep 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-943.el7]
-- [fs] timerfd: Protect the might cancel mechanism proper (Bill O'Donnell) [1485407] {CVE-2017-10661}
-- [fs] exec.c: Add missing 'audit_bprm()' call in 'exec_binprm()' (Bhupesh Sharma) [1496408]
-- [fs] gfs2: Don't set GFS2_RDF_UPTODATE when the lvb is updated (Robert S Peterson) [1600142]
-- [fs] gfs2: improve debug information when lvb mismatches are found (Robert S Peterson) [1600142]
-- [fs] gfs2: fix memory leak in rgrp lvbs (Robert S Peterson) [1600142]
-- [fs] gfs2: cleanup: call gfs2_rgrp_ondisk2lvb from gfs2_rgrp_out (Robert S Peterson) [1600142]
-- [fs] gfs2: Fix MAGIC check in LVBs (Robert S Peterson) [1600142]
-- [fs] gfs2: Do not reset flags on active reservations (Robert S Peterson) [1600142]
-- [fs] cifs: Fix stack out-of-bounds in smb(2, 3)_create_lease_buf() (Leif Sahlberg) [1598755]
-- [fs] cifs: store the leaseKey in the fid on SMB2_open (Leif Sahlberg) [1598755]
-- [fs] nfsd: further refinement of content of /proc/fs/nfsd/versions (Steve Dickson) [1614603]
-- [fs] nfsd: fix configuration of supported minor versions (Steve Dickson) [1614603]
-- [fs] nfsd: Fix display of the version string (Steve Dickson) [1614603]
-- [fs] nfsd: correctly range-check v4.x minor version when setting versions (Steve Dickson) [1614603]
-- [fs] ext4: Close race between direct IO and ext4_break_layouts() (Eric Sandeen) [1616301]
-- [fs] xfs: Close race between direct IO and xfs_break_layouts() (Eric Sandeen) [1616301]
-- [fs] ext4: handle layout changes to pinned DAX mappings (Eric Sandeen) [1614153]
-- [fs] dax: dax_layout_busy_page() warn on !exceptional (Eric Sandeen) [1614153]
-- [gpu] makefile: bump drm backport version (Rob Clark) [1600569]
-- [gpu] drm/nouveau/gem: off by one bugs in nouveau_gem_pushbuf_reloc_apply() (Rob Clark) [1600569]
-- [gpu] amd/dc/dce100: On dce100, set clocks to 0 on suspend (Rob Clark) [1600569]
-- [gpu] drm/amdgpu: fix swapped emit_ib_size in vce3 (Rob Clark) [1600569]
-- [gpu] drm/amd/powerplay: correct vega12 thermal support as true (Rob Clark) [1600569]
-- [gpu] drm/atomic: Initialize variables in drm_atomic_helper_async_check() to make gcc happy (Rob Clark) [1600569]
-- [gpu] drm/atomic: Check old_plane_state->crtc in drm_atomic_helper_async_check() (Rob Clark) [1600569]
-- [gpu] drm/amdgpu: Avoid reclaim while holding locks taken in MMU notifier (Rob Clark) [1600569]
-- [gpu] drm/dp/mst: Fix off-by-one typo when dump payload table (Rob Clark) [1600569]
-- [gpu] drm/atomic-helper: Drop plane->fb references only for drm_atomic_helper_shutdown() (Rob Clark) [1600569]
-- [gpu] drm/gma500: fix psb_intel_lvds_mode_valid()'s return type (Rob Clark) [1600569]
-- [gpu] drm/atomic: Handling the case when setting old crtc for plane (Rob Clark) [1600569]
-- [gpu] drm/amd/display: Fix dim display on DCE11 (Rob Clark) [1600569]
-- [gpu] drm/amdgpu: Remove VRAM from shared bo domains (Rob Clark) [1600569]
-- [gpu] drm/radeon: fix mode_valid's return type (Rob Clark) [1600569]
-- [gpu] drm/amd/display: remove need of modeset flag for overlay planes (V2) (Rob Clark) [1600569]
-- [gpu] drm/amd/display: Do not program interrupt status on disabled crtc (Rob Clark) [1600569]
-- [gpu] drm/amd/powerplay: Set higher SCLK&MCLK frequency than dpm7 in OD (v2) (Rob Clark) [1600569]
-- [gpu] drm/i915/glk: Add Quirk for GLK NUC HDMI port issues (Rob Clark) [1600569]
-- [gpu] drm/nouveau: Set DRIVER_ATOMIC cap earlier to fix debugfs (Rob Clark) [1600569]
-- [gpu] drm/nouveau/drm/nouveau: Fix runtime PM leak in nv50_disp_atomic_commit() (Rob Clark) [1600569]
-- [gpu] drm/nouveau: Avoid looping through fake MST connectors (Rob Clark) [1600569]
-- [gpu] drm/nouveau: Use drm_connector_list_iter_* for iterating connectors (Rob Clark) [1600569]
-- [gpu] drm/nouveau: Remove bogus crtc check in pmops_runtime_idle (Rob Clark) [1600569]
-- [gpu] revert "drm/amd/display: Don't return ddc result and read_bytes in same return value" (Rob Clark) [1600569]
-- [gpu] drm/i915: Fix hotplug irq ack on i965/g4x (Rob Clark) [1600569]
-- [gpu] drm/amdgpu: Reserve VM root shared fence slot for command submission (v3) (Rob Clark) [1600569]
-- [x86] unwind: Ensure stack grows down (Josh Poimboeuf) [1609717]
-
-* Fri Aug 31 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-942.el7]
-- [mm] fix devmem_is_allowed() for sub-page System RAM intersections (Joe Lawrence) [1524322]
-- [pci] Delay after FLR of Intel DC P3700 NVMe (Alex Williamson) [1592654]
-- [pci] Disable Samsung SM961/PM961 NVMe before FLR (Alex Williamson) [1542494]
-- [pci] Export pcie_has_flr() (Alex Williamson) [1592654 1542494]
-- [nvdimm] libnvdimm: Export max available extent (Jeff Moyer) [1611761]
-- [nvdimm] libnvdimm: Use max contiguous area for namespace size (Jeff Moyer) [1611761]
-- [mm] ipc/shm.c add ->pagesize function to shm_vm_ops (Jeff Moyer) [1609834]
-- [kernel] mm: disallow mappings that conflict for devm_memremap_pages() (Jeff Moyer) [1616044]
-- [kernel] memremap: fix softlockup reports at teardown (Jeff Moyer) [1616187]
-- [kernel] memremap: add scheduling point to devm_memremap_pages (Jeff Moyer) [1616187]
-- [mm] page_alloc: add scheduling point to memmap_init_zone (Jeff Moyer) [1616187]
-- [mm] memory_hotplug: add scheduling point to __add_pages (Jeff Moyer) [1616187]
-- [acpi] nfit: Fix scrub idle detection (Jeff Moyer) [1616041]
-- [x86] asm/memcpy_mcsafe: Fix copy_to_user_mcsafe() exception handling (Jeff Moyer) [1608674]
-- [nvdimm] libnvdimm, pmem: Fix memcpy_mcsafe() return code handling in nsio_rw_bytes() (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: advertise a write cache for nfit_test (Jeff Moyer) [1608674]
-- [tools] x86, nfit_test: Add unit test for memcpy_mcsafe() (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: fix missing newline in nfit_test_dimm 'handle' attribute (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: support nfit_test_dimm attributes under nfit_test.1 (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: allow custom error code injection (Jeff Moyer) [1608674]
-- [tools] libnvdimm, testing: update the default smart ctrl_temperature (Jeff Moyer) [1608674]
-- [tools] libnvdimm, testing: Add emulation for smart injection commands (Jeff Moyer) [1608674]
-- [tools] nfit_test: prevent parsing error of nfit_test.0 (Jeff Moyer) [1608674]
-- [tools] nfit_test: fix buffer overrun, add sanity check (Jeff Moyer) [1608674]
-- [tools] nfit_test: improve structure offset handling (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: force nfit_test to depend on instrumented modules (Jeff Moyer) [1608674]
-- [tools] libnvdimm/nfit_test: adding support for unit testing enable LSS status (Jeff Moyer) [1612421]
-- [tools] libnvdimm/nfit_test: add firmware download emulation (Jeff Moyer) [1612420]
-- [kernel] jiffies: add time comparison functions for 64 bit jiffies (Jeff Moyer) [1612420]
-- [tools] testing/nvdimm: smart alarm/threshold control (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: unit test clear-error commands (Jeff Moyer) [1608674]
-- [tools] testing/nvdimm: stricter bounds checking for error injection commands (Jeff Moyer) [1608674]
-- [tools] nfit_test: when clearing poison, also remove badrange entries (Jeff Moyer) [1608674]
-- [tools] nfit_test: add error injection DSMs (Jeff Moyer) [1612417]
-- [nvdimm] pmem: Switch to copy_to_iter_mcsafe() (Jeff Moyer) [1608674]
-- [fs] dax: Report bytes remaining in dax_iomap_actor() (Jeff Moyer) [1608674]
-- [lib] uio, lib: Fix CONFIG_ARCH_HAS_UACCESS_MCSAFE compilation (Jeff Moyer) [1608674]
-- [net] x86/asm/memcpy_mcsafe: Define copy_to_iter_mcsafe() (Jeff Moyer) [1608674]
-- [x86] asm/memcpy_mcsafe: Add write-protection-fault handling (Jeff Moyer) [1608674]
-- [x86] asm/memcpy_mcsafe: Return bytes remaining (Jeff Moyer) [1608674]
-- [x86] asm/memcpy_mcsafe: Add labels for __memcpy_mcsafe() write fault handling (Jeff Moyer) [1608674]
-- [x86] asm/memcpy_mcsafe: Remove loop unrolling (Jeff Moyer) [1608674]
-- [net] dax: Introduce a ->copy_to_iter dax operation (Jeff Moyer) [1608674]
-- [kernel] dax: remove default copy_from_iter fallback (Jeff Moyer) [1539264]
-- [fs] filesystem-dax: convert to dax_copy_from_iter() (Jeff Moyer) [1608674]
-- [md] dm log writes: record metadata flag for better flags record (Jeff Moyer) [1539264]
-- [md] dax, dm: allow device-mapper to operate without dax support (Jeff Moyer) [1539264]
-- [md] dm log writes: fix max length used for kstrndup (Jeff Moyer) [1539264]
-- [md] dm log writes: add support for DAX (Jeff Moyer) [1539264]
-- [md] dm log writes: add support for inline data buffers (Jeff Moyer) [1539264]
-- [md] dm log writes: fix >512b sectorsize support (Jeff Moyer) [1539264]
-- [md] dm log writes: don't use all the cpu while waiting to log blocks (Jeff Moyer) [1539264]
-- [md] dm log writes: fix check of kthread_run() return value (Jeff Moyer) [1539264]
-- [md] dm log writes: fix bug with too large bios (Jeff Moyer) [1539264]
-- [md] dm log writes: move IO accounting earlier to fix error path (Jeff Moyer) [1539264]
-- [md] dm log writes: use ULL suffix for 64-bit constants (Jeff Moyer) [1539264]
-- [md] dm: add log writes target (Jeff Moyer) [1539264]
-- [md] dm: add ->copy_from_iter() dax operation support (Jeff Moyer) [1539264]
-- [powerpc] fadump: cleanup crash memory ranges support (Gustavo Duarte) [1621969]
-- [powerpc] fadump: merge adjacent memory ranges to reduce PT_LOAD segements (Gustavo Duarte) [1621969]
-- [powerpc] fadump: handle crash memory ranges array index overflow (Gustavo Duarte) [1621969]
-- [powerpc] fadump: Unregister fadump on kexec down path (Gustavo Duarte) [1621969]
-- [powerpc] fadump: Return error when fadump registration fails (Gustavo Duarte) [1621969]
-- [powerpc] iommu: Do not call PageTransHuge() on tail pages (David Gibson) [1594347]
-- [powerpc] kvm: book3s hv: Migrate pinned pages out of CMA (David Gibson) [1594347]
-
-* Fri Aug 31 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-941.el7]
-- [tools] power turbostat: Allow for broken ACPI LPIT tables (Prarit Bhargava) [1614083]
-- [base] pm/runtime: Avoid false-positive warnings from might_sleep_if() (Paul Lai) [1615223]
-- [md] dm thin: stop no_space_timeout worker when switching to write-mode (Mike Snitzer) [1620251]
-- [netdrv] mlx5e: Only allow offloading decap egress (egdev) flows (Erez Alfasi) [1619641]
-- [netdrv] mlx5-core: Mark unsupported devices (Don Dutile) [1621824 1621810]
-- [netdrv] bnx2x: disable GSO where gso_size is too big for hardware (Jonathan Toppins) [1546760] {CVE-2018-1000026}
-- [net] create skb_gso_validate_mac_len() (Jonathan Toppins) [1546760] {CVE-2018-1000026}
-- [scsi] target: iscsi: cxgbit: fix max iso npdu calculation (Arjun Vynipadath) [1613307]
-- [scsi] csiostor: update csio_get_flash_params() (Arjun Vynipadath) [1613307]
-- [scsi] lpfc: Correct MDS diag and nvmet configuration (Dick Kennedy) [1616104]
-- [qla2xxx] Mark NVMe/FC initiator mode usage as technology preview (Ewan Milne) [1620258]
-- [nvme-fc] Take NVMe/FC initiator out of technology preview (Ewan Milne) [1620258]
-- [mm] inode: avoid softlockup in prune_icache_sb (Andrea Arcangeli) [1610560]
-- [mm] compaction: reschedule immediately if need_resched() is set (Andrea Arcangeli) [1610560]
-- [mm] compaction: properly signal and act upon lock and need_sched() contention (Andrea Arcangeli) [1610560]
-- [mm] compaction: cleanup isolate_freepages() (Andrea Arcangeli) [1610560]
-- [mm] compaction: encapsulate defer reset logic (Andrea Arcangeli) [1610560]
-- [mm] compaction.c: periodically schedule when freeing pages (Andrea Arcangeli) [1610560]
-- [powerpc] powernv/pci: Work around races in PCI bridge enabling (Gustavo Duarte) [1620041]
-- [powerpc] kdump: Handle crashkernel memory reservation failure (Pingfan Liu) [1621945]
-- [powerpc] ftrace: Match dot symbols when searching functions on ppc64 (Jerome Marchand) [1613136]
-- [x86] entry/64: Restore TRACE_IRQS_IRETQ in paranoid_exit (Scott Wood) [1561777]
-
-* Tue Aug 28 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-940.el7]
-- [net] sched: Fix missing res info when create new tc_index filter (Hangbin Liu) [1607687]
-- [net] sched: fix NULL pointer dereference when delete tcindex filter (Hangbin Liu) [1607687]
-- [net] dev: advertise the new ifindex when the netns iface changes (Michael Cambria) [1584287]
-- [net] dev: always advertise the new nsid when the netns iface changes (Michael Cambria) [1584287]
-- [net] Zero ifla_vf_info in rtnl_fill_vfinfo() (Hangbin Liu) [1614178]
-- [net] udpv6: Fix the checksum computation when HW checksum does not apply (Xin Long) [1619793]
-- [net] tc: ensure that offloading callback is called for MQPRIO qdisc (Ivan Vecera) [1618579]
-- [thunderbolt] move tb3 to full support status (Jarod Wilson) [1620372]
-- [kernel] x86/platform/uv: Add adjustable set memory block size function (Baoquan He) [1601867]
-- [mm] memory_hotplug: remove timeout from __offline_memory (Baoquan He) [1601867]
-- [mm] memory_hotplug: do not fail offlining too early (Baoquan He) [1601867]
-- [x86] mm/memory_hotplug: determine block size based on the end of boot memory (Baoquan He) [1601867]
-- [x86] mm: Streamline and restore probe_memory_block_size() (Baoquan He) [1601867]
-- [x86] mm: Use 2GB memory block size on large-memory x86-64 systems (Baoquan He) [1601867]
-- [x86] mm: probe memory block size for generic x86 64bit (Baoquan He) [1601867]
-- [x86] revert platform/uv: Add adjustable set memory block size function (Baoquan He) [1601867]
-
-* Mon Aug 27 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-939.el7]
-- [nvme] rdma: Fix command completion race at error recovery (David Milburn) [1610641]
-- [infiniband] revert vmw_pvrdma: Call ib_umem_release on destroy QP path (Don Dutile) [1618625]
-- [infiniband] iw_cxgb4: correctly enforce the max reg_mr depth (Arjun Vynipadath) [1613317]
-- [netdrv] net: aquantia: Fix IFF_ALLMULTI flag functionality (Igor Russkikh) [1608762]
-- [uio] fix possible circular locking dependency (Xiubo Li) [1613195]
-- [tools] power turbostat: Fix logical node enumeration to allow for non-sequential physical nodes (Prarit Bhargava) [1612902]
-- [tools] bpf selftest: Disable unsupported verifier tests (Jiri Olsa) [1615222]
-- [tools] bpf: fix panic due to oob in bpf_prog_test_run_skb (Jiri Olsa) [1615222]
-- [net] bpf: Align packet data properly in program testing framework (Jiri Olsa) [1615222]
-- [net] bpf: Do not dereference user pointer in bpf_test_finish() (Jiri Olsa) [1615222]
-- [tools] bpf: migrate ebpf ld_abs/ld_ind tests to test_verifier (Jiri Olsa) [1615222]
-- [tools] bpf: add verifier tests for accesses to map values (Jiri Olsa) [1615222]
-- [kernel] bpf: allow map helpers access to map values directly (Jiri Olsa) [1615222]
-- [kernel] cpuset: fix a warning when clearing configured masks in old hierarchy (Aristeu Rozanski) [1613248]
-- [kernel] percpu_ref: Update doc to dissuade users from depending on internal RCU grace periods (Prarit Bhargava) [1603603]
-- [kernel] percpu: READ_ONCE() now implies smp_read_barrier_depends() (Prarit Bhargava) [1603603]
-- [kernel] locking/barriers: Add implicit smp_read_barrier_depends() to READ_ONCE() (Prarit Bhargava) [1603603]
-- [kernel] compiler, atomics, kasan: Provide READ_ONCE_NOCHECK() (Prarit Bhargava) [1603603]
-- [kernel] percpu-refcount: init ->confirm_switch member properly (Prarit Bhargava) [1603603]
-- [kernel] percpu, locking: revert ("percpu: Replace smp_read_barrier_depends() with lockless_dereference()") (Prarit Bhargava) [1603603]
-- [x86] microcode: Allow late microcode loading with SMT disabled (Josh Poimboeuf) [1614515]
-- [x86] intel_rdt: Enable CMT and MBM on new Skylake stepping (Jiri Olsa) [1517736]
-
-* Tue Aug 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-938.el7]
-- [netdrv] mlx5e: Properly check if hairpin is possible between two functions (Alaa Hleihel) [1611567]
-- [netdrv] bnx2x: Fix invalid memory access in rss hash config path (Jonathan Toppins) [1615290]
-- [netdrv] iwlwifi: pcie: compare with number of IRQs requested for, not number of CPUs (Stanislaw Gruszka) [1616290]
-- [netdrv] ibmvnic: Update firmware error reporting with cause string (Steve Best) [1614652]
-- [netdrv] ibmvnic: Remove code to request error information (Steve Best) [1614652]
-- [scsi] fcoe: hold disc_mutex when traversing rport lists (Chris Leech) [1608481]
-- [scsi] libfc: hold disc_mutex in fc_disc_stop_rports() (Chris Leech) [1608481]
-- [scsi] libfc: fixup lockdep annotations (Chris Leech) [1608481]
-- [scsi] libfc: fixup 'sleeping function called from invalid context' (Chris Leech) [1608481]
-- [scsi] libfc: Add lockdep annotations (Chris Leech) [1608481]
-- [scsi] libiscsi: fix possible NULL pointer dereference in case of TMF (Chris Leech) [1613262]
-- [scsi] qla2xxx: Fix memory leak for allocating abort IOCB (Himanshu Madhani) [1609890]
-- [scsi] hpsa: correct enclosure sas address (Joseph Szczypek) [1613021]
-- [scsi] lpfc: Remove lpfc_enable_pbde as module parameter (Dick Kennedy) [1613975]
-- [scsi] lpfc: Fix list corruption on the completion queue (Dick Kennedy) [1554777]
-- [scsi] lpfc: Fix driver crash when re-registering NVME rports (Dick Kennedy) [1613955]
-- [scsi] lpfc: Correct LCB ACCept payload (Dick Kennedy) [1613959]
-- [x86] boot/kaslr: Skip specified number of 1GB huge pages when doing physical randomization (KASLR) (Baoquan He) [1451428]
-- [x86] boot/kaslr: Add two new functions for 1GB huge pages handling (Baoquan He) [1451428]
-- [x86] platform/uv: Add kernel parameter to set memory block size (Frank Ramsay) [1595892]
-- [x86] platform/uv: Use new set memory block size function (Frank Ramsay) [1595892]
-- [x86] platform/uv: Add adjustable set memory block size function (Frank Ramsay) [1595892]
-
-* Mon Aug 20 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-937.el7]
-- [fs] dax: use __pagevec_lookup in dax_layout_busy_page (Eric Sandeen) [1505291]
-- [fs] cifs: Fix slab-out-of-bounds in send_set_info() on SMB2 ACE setting (Leif Sahlberg) [1598765]
-- [fs] libceph: weaken sizeof check in ceph_x_verify_authorizer_reply() (Ilya Dryomov) [1614858]
-- [fs] libceph: check authorizer reply/challenge length before reading (Ilya Dryomov) [1614858]
-- [fs] libceph: implement CEPHX_V2 calculation mode (Ilya Dryomov) [1614858]
-- [fs] libceph: add authorizer challenge (Ilya Dryomov) [1614858]
-- [fs] libceph: factor out encrypt_authorizer() (Ilya Dryomov) [1614858]
-- [fs] libceph: factor out __ceph_x_decrypt() (Ilya Dryomov) [1614858]
-- [fs] libceph: factor out __prepare_write_connect() (Ilya Dryomov) [1614858]
-- [fs] libceph: store ceph_auth_handshake pointer in ceph_connection (Ilya Dryomov) [1614858]
-- [fs] nfsv4.0: Remove transport protocol name from non-UCS client ID (Steve Dickson) [1592911]
-- [fs] nfsv4.0: Remove cl_ipaddr from non-UCS client ID (Steve Dickson) [1592911]
-- [fs] aio: properly check iovec sizes (Jeff Moyer) [1337518] {CVE-2015-8830}
-- [fs] cifs: fix up section mismatch (Jeff Moyer) [1609877]
-- [fs] skip LAYOUTRETURN if layout is invalid (Steve Dickson) [1589995]
-- [fs] gfs2: Special-case rindex for gfs2_grow (Andreas Grunbacher) [1608687]
-- [fs] ext4: Fix WARN_ON_ONCE in ext4_commit_super() (Lukas Czerner) [1596766]
-- [fs] cachefiles: Wait rather than BUG'ing on Unexpected object collision (David Howells) [1356390]
-- [fs] cachefiles: Fix missing clear of the CACHEFILES_OBJECT_ACTIVE flag (David Howells) [1356390]
-- [fs] fscache: Fix reference overput in fscache_attach_object() error handling (David Howells) [1356390]
-- [fs] cachefiles: Fix refcounting bug in backing-file read monitoring (David Howells) [1356390]
-- [fs] fscache: Allow cancelled operations to be enqueued (David Howells) [1356390]
-- [fs] ext4: avoid running out of journal credits when appending to an inline file (Lukas Czerner) [1609759] {CVE-2018-10883}
-- [fs] jbd2: don't mark block as modified if the handle is out of credits (Lukas Czerner) [1609759] {CVE-2018-10883}
-- [fs] ext4: check for allocation block validity with block group locked (Lukas Czerner) [1597702]
-- [fs] ext4: fix check to prevent initializing reserved inodes (Lukas Czerner) [1597702]
-- [fs] ext4: fix false negatives *and* false positives in ext4_check_descriptors() (Lukas Czerner) [1597702]
-- [fs] ext4: add more mount time checks of the superblock (Lukas Czerner) [1597702]
-- [fs] ext4: fix bitmap position validation (Lukas Czerner) [1597702]
-- [fs] ext4: add more inode number paranoia checks (Lukas Czerner) [1597702]
-- [fs] ext4: clear i_data in ext4_inode_info when removing inline data (Lukas Czerner) [1597702]
-- [fs] ext4: include the illegal physical block in the bad map ext4_error msg (Lukas Czerner) [1597702]
-- [fs] ext4: verify the depth of extent tree in ext4_find_extent() (Lukas Czerner) [1597702]
-- [fs] ext4: only look at the bg_flags field if it is valid (Lukas Czerner) [1597702]
-- [fs] ext4: don't update checksum of new initialized bitmaps (Lukas Czerner) [1597702]
-- [fs] ext4: add validity checks for bitmap block numbers (Lukas Czerner) [1597702]
-- [fs] ext4: make sure bitmaps and the inode table don't overlap with bg descriptors (Lukas Czerner) [1597702]
-- [fs] ext4: always check block group bounds in ext4_init_block_bitmap() (Lukas Czerner) [1597702]
-- [fs] ext4: always verify the magic number in xattr blocks (Lukas Czerner) [1597702]
-- [fs] ext4: add corruption check in ext4_xattr_set_entry() (Lukas Czerner) [1597702]
-- [net] netlink: make sure -EBUSY won't escape from netlink_insert (Davide Caratti) [1608701]
-- [net] netfilter: nf_conntrack: don't resize NULL or freed hashtable (Davide Caratti) [1601662]
-- [net] ethtool: Ensure new ring parameters are within bounds during SRINGPARAM (Ivan Vecera) [1608318]
-- [net] ipv6: make DAD fail with enhanced DAD when nonce length differs (Jarod Wilson) [1608002]
-- [net] ipv6: allow userspace to add IFA_F_OPTIMISTIC addresses (Jarod Wilson) [1608002]
-- [net] ipv6: send unsolicited NA after DAD (Jarod Wilson) [1608002]
-- [net] ipv6: display hw address of source machine during ipv6 DAD failure (Jarod Wilson) [1608002]
-- [net] ipv6: send NS for DAD when link operationally up (Jarod Wilson) [1608002]
-- [net] ipv6: avoid dad-failures for addresses with NODAD (Jarod Wilson) [1608002]
-- [net] ipv6: send unsolicited NA if enabled for all interfaces (Jarod Wilson) [1608002]
-- [net] ipv6: send unsolicited NA on admin up (Jarod Wilson) [1608002]
-- [net] ipv6: addrconf: fix generation of new temporary addresses (Jarod Wilson) [1608002]
-- [net] ipv6: addrconf: Implemented enhanced DAD (RFC7527) (Jarod Wilson) [1608002]
-
-* Fri Aug 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-936.el7]
-- [usb] typec: ucsi: Increase command completion timeout value (Torez Smith) [1575838]
-- [cpufreq] Fix policy restore in suspend/resume (Prarit Bhargava) [1600240]
-- [netdrv] cxgb4: Add missing ndo_size param to mgmtm net_device_ops struct (Arjun Vynipadath) [1614152]
-- [netdrv] i40e: Remove duplicated prepare call in i40e_shutdown (Stefan Assmann) [1488477]
-- [netdrv] sfc: fix backport of replace asynchronous filter operations (Jarod Wilson) [1607726]
-- [netdrv] igb: Remove superfluous reset to PHY and page 0 selection (Corinna Vinschen) [1611610]
-- [netdrv] mlx5e: Set port trust mode to PCP as default (Alaa Hleihel) [1610866]
-- [netdrv] iwlwifi: add more card IDs for 9000 series (Stanislaw Gruszka) [1607982]
-- [netdrv] iwlwifi: add a bunch of new 9000 PCI IDs (Stanislaw Gruszka) [1607982]
-- [netdrv] iwlwifi: add shared clock PHY config flag for some devices (Stanislaw Gruszka) [1607982]
-- [vfio] pci: Make IGD support a configurable option (Alex Williamson) [1590513]
-- [md] dm cache metadata: set dirty on all cache blocks after a crash (Mike Snitzer) [1592944]
-- [md] dm snapshot: improve performance by switching out_of_order_list to rbtree (Mike Snitzer) [1611822]
-- [md] dm kcopyd: avoid softlockup in run_complete_job (Mike Snitzer) [1611822]
-- [md] dm snapshot: use mutex instead of rw_semaphore (Mike Snitzer) [1611822]
-- [firmware] dcdbas: Add support for WSMT ACPI table (Charles Rose) [1524003]
-- [firmware] dma-api: dcdbas: update DMA mask handing (Charles Rose) [1524003]
-- [acpi] acpica: tables: Add WSMT support (Charles Rose) [1524003]
-- [s390] qeth: don't clobber buffer on async TX completion (Hendrik Brueckner) [1613970]
-- [powerpc] pseries: Fix CONFIG_NUMA=n build (Gustavo Duarte) [1544437]
-- [powerpc] pseries: Add empty update_numa_cpu_lookup_table() for NUMA=n (Gustavo Duarte) [1544437]
-- [powerpc] pseries: Fix build break for SPLPAR=n and CPU hotplug (Gustavo Duarte) [1544437]
-- [powerpc] numa: Invalidate numa_cpu_lookup_table on cpu remove (Gustavo Duarte) [1544437]
-- [powerpc] vphn: Fix numa update end-loop bug (Gustavo Duarte) [1544437]
-- [powerpc] hotplug: Improve responsiveness of hotplug change (Gustavo Duarte) [1544437]
-- [powerpc] vphn: Improve recognition of PRRN/VPHN (Gustavo Duarte) [1544437]
-- [powerpc] vphn: Update CPU topology when VPHN enabled (Gustavo Duarte) [1544437]
-
-* Fri Aug 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-935.el7]
-- [x86] umip: Print a warning into the syslog if UMIP-protected instructions are used (Gopal Tiwari) [1456572]
-- [x86] umip: Identify the STR and SLDT instructions (Gopal Tiwari) [1456572]
-- [x86] umip: Print a line in the boot log that UMIP has been enabled (Gopal Tiwari) [1456572]
-- [x86] umip: Select X86_INTEL_UMIP by default (Gopal Tiwari) [1456572]
-- [tools] selftests/x86: Add tests for the STR and SLDT instructions (Gopal Tiwari) [1456572]
-- [tools] selftests/x86: Add tests for User-Mode Instruction Prevention (Gopal Tiwari) [1456572]
-- [x86] traps: Fix up general protection faults caused by UMIP (Gopal Tiwari) [1456572]
-- [x86] umip: Enable User-Mode Instruction Prevention at runtime (Gopal Tiwari) [1456572]
-- [x86] umip: Force a page fault when unable to copy emulated result to user (Gopal Tiwari) [1456572]
-- [x86] umip: Add emulation code for UMIP instructions (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add support to resolve 16-bit address encodings (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Handle 32-bit address encodings in virtual-8086 mode (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add wrapper function for 32 and 64-bit addresses (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add support to resolve 32-bit address encodings (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Compute linear address in several utility functions (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Extend get_seg_base_addr() to also obtain segment limit (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Incorporate segment base in linear address computation (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Indicate a 32-bit displacement if ModRM.mod is 0 and ModRM.rm is 101b (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add function to get default params of code segment (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add utility functions to get segment descriptor base address and limit (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add utility function to get segment descriptor (Gopal Tiwari) [1456572]
-- [kernel] sched/core: Idle_task_exit() shouldn't use switch_mm_irqs_off() (Gopal Tiwari) [1456572]
-- [kernel] sched/core: Add switch_mm_irqs_off() and use it in the scheduler (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add utility functions to get segment selector (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add utility function to identify string instructions (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Add a utility function to get register offsets (Gopal Tiwari) [1456572]
-- [x86] insn-eval: Do not BUG on invalid register type (Gopal Tiwari) [1456572]
-- [x86] mpx, x86/insn: Relocate insn util functions to a new insn-eval file (Gopal Tiwari) [1456572]
-- [x86] mpx: Fix off-by-one comparison with nr_registers (Gopal Tiwari) [1456572]
-- [x86] mpx: Do not use SIB.base if its value is 101b and ModRM.mod = 0 (Gopal Tiwari) [1456572]
-- [x86] mpx: Do not use SIB.index if its value is 100b and ModRM.mod is not 11b (Gopal Tiwari) [1456572]
-- [x86] mpx: Use signed variables to compute effective addresses (Gopal Tiwari) [1456572]
-- [x86] ptrace, x86: Make user_64bit_mode() available to 32-bit builds (Gopal Tiwari) [1456572]
-- [x86] mpx: Simplify handling of errors when computing linear addresses (Gopal Tiwari) [1456572]
-- [x86] uprobes/x86: Use existing definitions for segment override prefixes (Gopal Tiwari) [1456572]
-- [x86] boot: Relocate definition of the initial state of CR0 (Gopal Tiwari) [1456572]
-- [x86] mm: Relocate page fault error codes to traps.h (Gopal Tiwari) [1456572]
-- [x86] pkeys: Add fault handling for PF_PK page fault bit (Gopal Tiwari) [1456572]
-- [x86] entry: Use SYSCALL_DEFINE() macros for sys_modify_ldt() (Gopal Tiwari) [1456572]
-- [x86] ldt/64: Refresh DS and ES when modify_ldt changes an entry (Gopal Tiwari) [1456572]
-- [x86] ldt: Make all size computations unsigned (Gopal Tiwari) [1456572]
-- [x86] ldt: Make a size argument unsigned (Gopal Tiwari) [1456572]
-- [x86] mpx: Fix instruction decoder condition (Gopal Tiwari) [1456572]
-- [tools] selftests/x86: Add a fork() to entry_from_vm86 to catch fork bugs (Gopal Tiwari) [1456572]
-- [x86] ldt: Fix small LDT allocation for Xen (Gopal Tiwari) [1456572]
-- [x86] ldt: Correct LDT access in single stepping logic (Gopal Tiwari) [1456572]
-- [x86] ldt: Print the real LDT base address (Gopal Tiwari) [1456572]
-- [x86] ldt: Make modify_ldt synchronous (Gopal Tiwari) [1456572]
-- [x86] espfix: Make it possible to disable 16-bit support (Gopal Tiwari) [1456572]
-- [tools] selftests/x86/vm86: Fix entry_from_vm86 test on 64-bit kernels (Gopal Tiwari) [1456572]
-- [tools] x86/selftests, x86/vm86: Improve entry_from_vm86 selftest (Gopal Tiwari) [1456572]
-- [tools] x86/asm/entry/32, selftests: Add a selftest for kernel entries from VM86 mode (Gopal Tiwari) [1456572]
-- [tools] selftest, x86: fix incorrect comment (Gopal Tiwari) [1456572]
-- [tools] selftests, x86: Rework x86 target architecture detection (Gopal Tiwari) [1456572]
-- [tools] selftests, x86: Remove useless run_tests rule (Gopal Tiwari) [1456572]
-- [tools] selftests/x86: install tests (Gopal Tiwari) [1456572]
-- [tools] selftest/x86: have no dependency on all when cross building (Gopal Tiwari) [1456572]
-- [tools] selftest/x86: build both bitnesses (Gopal Tiwari) [1456572]
-- [tools] x86, selftests: Add single_step_syscall test (Gopal Tiwari) [1456572]
-- [tools] x86, selftests: Add sigreturn selftest (Gopal Tiwari) [1456572]
-- [x86] skip check for spurious faults for non-present faults (Gopal Tiwari) [1456572]
-
-* Wed Aug 15 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-934.el7]
-- [kernel] tracing/kprobe: Release kprobe print_fmt properly (Jiri Olsa) [1597984]
-- [kernel] perf/core: Fix perf_uprobe_init() (Jiri Olsa) [1597984]
-- [kernel] perf/core: Fix perf_kprobe_init() (Jiri Olsa) [1597984]
-- [kernel] perf/core: Implement the 'perf_uprobe' PMU (Jiri Olsa) [1597984]
-- [kernel] perf/core: Implement the 'perf_kprobe' PMU (Jiri Olsa) [1597984]
-- [kernel] tracing: Make alloc_rh_data/destroy_rh_data public (Jiri Olsa) [1597984]
-- [kernel] perf/core: prepare perf_event.h for new types: 'perf_kprobe' and 'perf_uprobe' (Jiri Olsa) [1597984]
-- [kernel] perf, bpf: Add BPF support to all perf_event types (Jiri Olsa) [1597984]
-- [tools] bpftool: Add RHEL7 related note to bpftool-cgroup man page (Jiri Olsa) [1593026]
-- [tools] Update bpf uapi headers (Jiri Olsa) [1593026]
-- [kernel] tracing: Fix possible out of bounds memory access when parsing enums (Jiri Olsa) [1593026]
-- [kernel] bpf: remove tracepoints from bpf core (Jiri Olsa) [1593026]
-- [kernel] bpf/tracing: fix a deadlock in perf_event_detach_bpf_prog (Jiri Olsa) [1593026]
-- [kernel] bpf: fix bpf_prog_array_copy_to_user warning from perf event prog query (Jiri Olsa) [1593026]
-- [kernel] bpf: set maximum number of attached progs to 64 for a single perf tp (Jiri Olsa) [1593026]
-- [kernel] bpf: avoid rcu_dereference inside bpf_event_mutex lock region (Jiri Olsa) [1593026]
-- [kernel] bpf: fix bpf_prog_array_copy_to_user() issues (Jiri Olsa) [1593026]
-- [kernel] bpf/tracing: fix kernel/events/core.c compilation error (Jiri Olsa) [1593026]
-- [kernel] bpf/tracing: allow user space to query prog array on the same tp (Jiri Olsa) [1593026]
-- [kernel] bpf: introduce BPF_PROG_QUERY command (Jiri Olsa) [1593026]
-- [kernel] bpf: permit multiple bpf attachments for a single perf event (Jiri Olsa) [1593026]
-- [kernel] bpf: use the same condition in perf event set/free bpf handler (Jiri Olsa) [1593026]
-- [kernel] perf, bpf: minimize the size of perf_trace_() tracepoint handler (Jiri Olsa) [1593026]
-- [trace] perf, bpf: allow bpf programs attach to tracepoints (Jiri Olsa) [1593026]
-- [trace] tracing/perf: Avoid perf_trace_buf_*() in perf_trace_##call() when possible (Jiri Olsa) [1593026]
-- [kernel] bpf: multi program support for cgroup+bpf (Jiri Olsa) [1593026]
-- [kernel] bpf: implement syscall command BPF_MAP_GET_NEXT_KEY for stacktrace map (Jiri Olsa) [1593026]
-- [kernel] bpf: extend stackmap to save binary_build_id+offset instead of address (Jiri Olsa) [1593026]
-- [kernel] bpf: use array_index_nospec in find_prog_type (Jiri Olsa) [1593026]
-- [kernel] bpf: fix possible spectre-v1 in find_and_alloc_map() (Jiri Olsa) [1593026]
-- [kernel] bpf/syscall: fix warning defined but not used (Jiri Olsa) [1593026]
-- [kernel] bpf: Check attach type at prog load time (Jiri Olsa) [1593026]
-- [kernel] bpf: offload: rename the ifindex field (Jiri Olsa) [1593026]
-- [kernel] bpf: offload: add infrastructure for loading programs for a specific netdev (Jiri Olsa) [1593026]
-- [kernel] bpf: fix truncated jump targets on heavy expansions (Jiri Olsa) [1593026]
-- [kernel] bpf: follow idr code convention (Jiri Olsa) [1593026]
-- [kernel] bpf: Prevent memory disambiguation attack (Jiri Olsa) [1593026]
-- [kernel] bpf: properly enforce index mask to prevent out-of-bounds speculation (Jiri Olsa) [1593026]
-- [kernel] bpf: Rename bpf_verifer_log (Jiri Olsa) [1593026]
-- [kernel] bpf: reconcile bpf_tail_call and stack_depth (Jiri Olsa) [1593026]
-- [kernel] bpf: export whether tail call has jited owner (Jiri Olsa) [1593026]
-- [net] bpf: get rid of pure_initcall dependency to enable jits (Jiri Olsa) [1593026]
-- [kernel] bpf: fix cb access in socket filter programs on tail calls (Jiri Olsa) [1593026]
-- [kernel] bpf: dev_map_alloc() shouldn't return NULL (Jiri Olsa) [1593026]
-- [kernel] bpf: remove tail_call and get_stackid helper declarations from bpf.h (Jiri Olsa) [1593026]
-- [kernel] bpf: update the comment about the length of analysis (Jiri Olsa) [1593026]
-- [kernel] bpf: Use correct #ifdef controller for trace_call_bpf() (Jiri Olsa) [1593026]
-- [kernel] bpf: comment why dots in filenames under BPF virtual FS are not allowed (Jiri Olsa) [1593026]
-- [kernel] bpf: avoid false sharing of map refcount with max_entries (Jiri Olsa) [1593026]
-- [kernel] perf, bpf: fix conditional call to bpf_overflow_handler (Jiri Olsa) [1593026]
-- [kernel] bpf: fix mlock precharge on arraymaps (Jiri Olsa) [1593026]
-- [kernel] bpf: add schedule points in percpu arrays management (Jiri Olsa) [1593026]
-- [kernel] bpf: fix numa_node validation (Jiri Olsa) [1593026]
-- [kernel] bpf: fix lockdep splat (Jiri Olsa) [1593026]
-- [tools] bpf: add test for the verifier equal logic bug (Jiri Olsa) [1593026]
-- [kernel] trace/bpf: remove helper bpf_perf_prog_read_value from tracepoint type programs (Jiri Olsa) [1593026]
-
-* Sat Aug 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-933.el7]
-- [kernel] cpu/hotplug: Fix 'online' sysfs entry with 'nosmt' (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: Enable 'nosmt' as late as possible (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: detect SMT disabled by BIOS (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [documentation] l1tf: fix typos (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: remove extra newline in 'vmentry_l1d_flush' sysfs file (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: initialize the vmx_l1d_flush_pages' content (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] x86/speculation/l1tf: Unbreak !__HAVE_ARCH_PFN_MODIFY_ALLOWED architectures (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [documentation] add section about cpu vulnerabilities (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] bugs, kvm: introduce boot-time control of l1tf mitigations (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: set cpu_smt_not_supported early (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: expose smt control init function (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: allow runtime control of l1d flush (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: serialize l1d flush parameter setter (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: add static key for flush always (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: move l1tf setup function (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: handle ept disabled state proper (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: drop l1tf msr list approach (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] litf: introduce vmx status variable (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] bugs: make cpu_show_common() static (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] bugs: concentrate bug reporting into a separate function (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: online siblings when smt control is turned on (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: use msr save list for ia32_flush_cmd if required (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: extend add_atomic_switch_msr() to allow vmenter only msrs (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: separate the vmx autoload guest/host number accounting (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: add find_msr() helper function (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm/vmx: split the vmx msr load structures to have an host/guest numbers (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: x86: mitigation for l1 cache terminal fault vulnerabilities, part 3 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] x86/kvm: warn user if kvm is loaded smt and l1tf cpu bug being present (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: boot ht siblings at least once, part 2 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] speculation/l1tf: fix typo in l1tf mitigation string (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [mm] x86, l1tf: protect _page_file ptes against speculation (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/hotplug: boot ht siblings at least once (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: boot ht siblings at least once (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] revert "x86/apic: ignore secondary threads if nosmt=force" (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] speculation/l1tf: fix up pte->pfn conversion for pae (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] speculation/l1tf: protect pae swap entries against l1tf (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/amd: move topoext reenablement before reading smp_num_siblings (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] speculation/l1tf: extend 64bit swap file size limit (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/amd: remove the pointless detect_ht() call (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] bugs: move the l1tf function and define pr_fmt properly (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: provide knobs to control smt, part 2 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] topology: provide topology_smt_supported() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] smp: provide topology_is_primary_thread(), part 2 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] apic: ignore secondary threads if nosmt=force (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/amd: evaluate smp_num_siblings early (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/amd: do not check cpuid max ext level before parsing smp info (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/intel: evaluate smp_num_siblings early (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/topology: provide detect_extended_topology_early() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu/common: provide detect_ht_early() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] cpu: remove the pointless cpu printout (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: provide knobs to control smt (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] cpu/hotplug: split do_cpu_down() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] smp: provide topology_is_primary_thread() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: fix build for config_numa_balancing=n (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] [x86] [kernel] x86, l1tf: sync with latest l1tf patches (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: protect _page_numa ptes and pmds against speculation (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [mm] l1tf: disallow non privileged high mmio prot_none mappings (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: report if too much memory for l1tf workaround (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [mm] x86, l1tf: limit swap file size to max_pa/2 (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] x86, l1tf: add sysfs reporting for l1tf (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: make sure the first page is always reserved (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: protect prot_none ptes against speculation (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: Protect swap entries against L1TF (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] l1tf: Increase 32bit PAE __PHYSICAL_PAGE_MASK (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] mm: fix swap entry comment and macro (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [kernel] spec_ctrl: sync with upstream cpu_set_bug_bits() (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] add support for l1d flush msr (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-- [x86] kvm: mitigation for L1 cache terminal fault vulnerabilities (Christoph von Recklinghausen) [1593384] {CVE-2018-3620}
-
-* Sat Aug 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-932.el7]
-- [powerpc] add missing barrier_nospec() in __get_user64_nocheck() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] rme9652: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] hdspm: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] asihpi: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] opl3: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] hda: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] seq: oss: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] seq: oss: Fix unbalanced use lock for synth MIDI device (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [net] atm: Fix potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] time: Protect posix clock array access against speculation (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] sys.c: fix potential Spectre v1 issue (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] autogroup: Fix possible Spectre-v1 indexing for sched_prio_to_weight (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] core: Fix possible Spectre-v1 indexing for ->aux_pages (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [ipc] sem: mitigate semnum index against spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [sound] control: Hardening for potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [usb] vhci_sysfs: fix potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [media] dvb_ca_en50221: prevent using slot_info for Spectre attacs (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [media] dvb_ca_en50221: sanity check slot number from userspace (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [atm] zatm: Fix potential Spectre v1 (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] kvm: Update spectre-v1 mitigation (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] kvm: Add memory barrier on vmcs field lookup (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] perf/msr: Fix possible Spectre-v1 indexing in the MSR driver (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] perf: Fix possible Spectre-v1 indexing for x86_pmu::event_map() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] perf: Fix possible Spectre-v1 indexing for hw_perf_event cache_* (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [net] nl80211: Sanitize array index in parse_txq_params (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] vfs, fdtable: Prevent bounds-check bypass via speculative execution (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] syscall: Sanitize syscall table de-references under speculation (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [powerpc] Use barrier_nospec in copy_from_user() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Introduce barrier_nospec for other arches (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] Introduce barrier_nospec (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] spectre_v1: Disable compiler optimizations over array_index_mask_nospec() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] Implement array_index_mask_nospec (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [Documentation] Document array_index_nospec (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Include <asm/barrier.h> dependency (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Allow index argument to have const-qualified type (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Kill array_index_nospec_mask_check() (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] nospec: Move array_index_nospec() parameter checking into separate macro (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [kernel] array_index_nospec: Sanitize speculative array de-references (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] uaccess: Use __uaccess_begin_nospec() and uaccess_try_nospec (Lauro Ramos Venancio) [1589035] {CVE-2018-3693}
-- [x86] always enable eager FPU by default on non-AMD processors (Paolo Bonzini) [1589048] {CVE-2018-3665}
-- [net] tcp: add tcp_ooo_try_coalesce() helper (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: call tcp_drop() from tcp_data_queue_ofo() (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: detect malicious patterns in tcp_collapse_ofo_queue() (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: avoid collapses in tcp_prune_queue() if possible (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: free batches of packets in tcp_prune_ofo_queue() (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] add rb_to_skb() and other rb tree helpers (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: fix a stale ooo_last_skb after a replace (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: use an RB tree for ooo receive queue (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: refine tcp_prune_ofo_queue() to not drop all packets (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [net] tcp: increment sk_drops for dropped rx packets (Paolo Abeni) [1611369] {CVE-2018-5390}
-- [netdrv] iwlwifi: api: Add geographic profile information to MCC_UPDATE_CMD (Stanislaw Gruszka) [1591601]
-- [net] mac80211: limit wmm params to comply with ETSI requirements (Stanislaw Gruszka) [1591601]
-- [netdrv] iwlwifi: mvm: query regdb for wmm rule if needed (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fix NULL pointer derference when querying regdb (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fix spelling mistake: "uknown" -> "unknown" (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: Call reg_notifier for self managed hints (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fix possible memory leak in regdb_query_country() (Stanislaw Gruszka) [1591601]
-- [net] regulatory: Rename confusing 'country IE' in log output (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: Add API to allow querying regdb for wmm_rule (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: don't require RTNL held for regdomain reads (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: read wmm rules from regulatory database (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fully initialize old channel for event (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: initialize regulatory keys/database later (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: fix CFG80211_EXTRA_REGDB_KEYDIR typo (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: implement regdb signature checking (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: reg: remove support for built-in regdb (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: support reloading regulatory database (Stanislaw Gruszka) [1591601]
-- [net] cfg80211: support loading regulatory database as firmware (Stanislaw Gruszka) [1591601]
-- [hid] revert "input: fix confusion on conflicting mappings" (Tony Camuso) [1610273]
-- [fs] lock: show locks taken by processes from another pidns (Jeff Layton) [1605096]
-- [fs] lock: skip lock owner pid translation in case we are in init_pid_ns (Jeff Layton) [1605096]
-- [mm] swap: divide-by-zero when zero length swap file on ssd (Joe Lawrence) [1608965]
-- [mm] swap: warn when a swap area overflows the maximum size (Joe Lawrence) [1608965]
-- [mm] kvfree the swap cluster info if the swap file is unsatisfactory (Joe Lawrence) [1608965]
-
-* Tue Jul 31 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-931.el7]
-- [nvme] nvmet-fc: fix target sgl list on large transfers (Ewan Milne) [1608612]
-- [kernel] tick/sched: Do not mess with an enqueued hrtimer (Prarit Bhargava) [1573486]
-- [gpu] qxl: hook monitors_config updates into crtc, not encoder (Gerd Hoffmann) [1544322]
-- [gpu] qxl: move qxl_send_monitors_config() (Gerd Hoffmann) [1544322]
-- [gpu] qxl: remove qxl_io_log() (Gerd Hoffmann) [1544322]
-- [netdrv] mlxsw: spectrum_switchdev: Fix port_vlan refcounting (Ivan Vecera) [1609339]
-- [netdrv] cxgb4: Added missing break in ndo_udp_tunnel_(add/del) (Arjun Vynipadath) [1608354]
-- [netdrv] atlantic: remove tech preview from driver (David Arcari) [1451438]
-- [netdrv] ibmvnic: Fix error recovery on login failure (Steve Best) [1609814]
-- [netdrv] ibmvnic: Revise RX/TX queue error messages (Steve Best) [1609814]
-- [netdrv] bonding: set default miimon value for non-arp modes if not set (Jarod Wilson) [1588874 1578995 1607939]
-- [netdrv] bonding: re-evaluate force_primary when the primary slave name changes (Jarod Wilson) [1607939]
-- [netdrv] include hash policy in LAG changeupper info (Jarod Wilson) [1607939]
-- [netdrv] bonding: introduce link change helper (Jarod Wilson) [1607939]
-- [netdrv] bonding: allow use of tx hashing in balance-alb (Jarod Wilson) [1607939]
-- [netdrv] bonding: use common mac addr checks (Jarod Wilson) [1607939]
-- [netdrv] bonding: don't queue up extraneous rlb updates (Jarod Wilson) [1607939]
-- [netdrv] bonding: use the skb_get/set_queue_mapping (Jarod Wilson) [1607939]
-- [netdrv] bonding: replace the return value type (Jarod Wilson) [1607939]
-- [netdrv] bonding: do not allow rlb updates to invalid mac (Jarod Wilson) [1607939]
-- [netdrv] bonding: do not set slave_dev npinfo before slave_enable_netpoll in bond_enslave (Jarod Wilson) [1607939]
-- [netdrv] Use octal not symbolic permissions (Jarod Wilson) [1607939]
-- [netdrv] bonding: Replace mac address parsing (Jarod Wilson) [1607939]
-- [netdrv] bonding: use nla_get_u64 to extract the value for IFLA_BOND_AD_ACTOR_SYSTEM (Jarod Wilson) [1607939]
-- [netdrv] bonding: Convert multiple netdev_info messages to netdev_dbg (Jarod Wilson) [1607939]
-- [netdrv] bonding: manual clean code which call skb_put_(data:zero) (Jarod Wilson) [1607939]
-- [netdrv] bonding: make skb_put & friends return void pointers (Jarod Wilson) [1607939]
-- [netdrv] bonding: use skb_put_data() (Jarod Wilson) [1607939]
-- [netdrv] bonding: fix wq initialization for links created via netlink (Jarod Wilson) [1607939]
-- [netdrv] bonding: initialize work-queues during creation of bond (Jarod Wilson) [1607939]
-- [netdrv] bonding: restructure arp-monitor (Jarod Wilson) [1607939]
-- [netdrv] bonding: Flip to the new dev walk API (Jarod Wilson) [1607939]
-- [netdrv] bonding: use new api ethtool_(get|set)_link_ksettings (Jarod Wilson) [1607939]
-- [netdrv] bonding: Remove deprecated create_singlethread_workqueue (Jarod Wilson) [1607939]
-- [netdrv] bonding: use return instead of goto (Jarod Wilson) [1607939]
-- [netdrv] bonding: Return correct error code (Jarod Wilson) [1607939]
-- [netdrv] bonding: 3ad: allow to set ad_actor settings while the bond is up (Jarod Wilson) [1607939]
-- [netdrv] bonding: 3ad: apply ad_actor settings changes immediately (Jarod Wilson) [1607939]
-- [netdrv] bonding: add slave device name for debug (Jarod Wilson) [1607939]
-- [netdrv] bonding: Send ALB learning packets using the right source (Jarod Wilson) [1607939]
-- [powerpc] powernv/ioda2: Fix calculation for memory allocated for TCE table (Laurent Vivier) [1577922]
-- [x86] mark whiskey-lake processor supported (David Arcari) [1533335]
-
-* Mon Jul 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-930.el7]
-- [uio] fix crash after the device is unregistered (Xiubo Li) [1560418]
-- [uio] change to use the mutex lock instead of the spin lock (Xiubo Li) [1560418]
-- [uio] use request_threaded_irq instead (Xiubo Li) [1560418]
-- [uio] Prevent device destruction while fds are open (Xiubo Li) [1560418]
-- [uio] Reduce return paths from uio_write() (Xiubo Li) [1560418]
-- [uio] fix incorrect memory leak cleanup (Xiubo Li) [1560418]
-- [uio] add missing error codes (Xiubo Li) [1560418]
-- [uio] fix false positive __might_sleep warning splat (Xiubo Li) [1560418]
-- [uio] Destroy uio_idr on module exit (Xiubo Li) [1560418]
-- [uio] don't free irq that was not requested (Xiubo Li) [1560418]
-- [uio] support memory sizes larger than 32 bits (Xiubo Li) [1560418]
-- [uio] we cannot mmap unaligned page contents (Xiubo Li) [1560418]
-- [uio] Pass pointers to virt_to_page(), not integers (Xiubo Li) [1560418]
-- [uio] fix memory leak (Xiubo Li) [1560418]
-- [uio] Request/free irq separate from dev lifecycle (Xiubo Li) [1560418]
-- [uio] Simplify uio error path by using devres functions (Xiubo Li) [1560418]
-- [kernel] makefile: bump drm backport version (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Dynamically probe for ATIF handle (v2) (Rob Clark) [1590914]
-- [gpu] drm/amdgpu: Add amdgpu_atpx_get_dhandle() (Rob Clark) [1590914]
-- [gpu] drm/udl: fix display corruption of the last line (Rob Clark) [1600556]
-- [gpu] drm: Use kvzalloc for allocating blob property memory (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Make struct amdgpu_atif private to amdgpu_acpi.c (Rob Clark) [1600556]
-- [gpu] drm/i915: Enable provoking vertex fix on Gen9 systems (Rob Clark) [1600556]
-- [gpu] drm/i915: Turn off g4x DP port in .post_disable() (Rob Clark) [1600556]
-- [gpu] drm/i915: Disallow interlaced modes on g4x DP outputs (Rob Clark) [1600556]
-- [gpu] drm/i915: Fix PIPESTAT irq ack on i965/g4x (Rob Clark) [1600556]
-- [gpu] drm/i915: Allow DBLSCAN user modes with eDP/LVDS/DSI (Rob Clark) [1600556]
-- [gpu] drm/amd/display: release spinlock before committing updates to stream (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: GPU vs CPU page size fixes in amdgpu_vm_bo_split_mapping (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Update pin_size values before unpinning BO (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Make amdgpu_vram_mgr_bo_invisible_size always accurate (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Refactor amdgpu_vram_mgr_bo_invisible_size helper (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Use kvmalloc_array for allocating VRAM manager nodes array (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Don't default to DC support for Kaveri and older (Rob Clark) [1600556]
-- [gpu] drm/qxl: Call qxl_bo_unref outside atomic context (Rob Clark) [1600556]
-- [gpu] drm/i915/dp: Send DPCD ON for MST before phy_up (Rob Clark) [1600556]
-- [gpu] drm/amd/display: Clear connector's edid pointer (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: fix clear_all and replace handling in the VM (v2) (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: fix the missed vcn fw version report (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Add APU support in vi_set_vce_clocks (Rob Clark) [1600556]
-- [gpu] drm/amdgpu: Add APU support in vi_set_uvd_clocks (Rob Clark) [1600556]
-- [gpu] drm/amd/display: Update color props when modeset is required (Rob Clark) [1600556]
-- [gpu] drm/amd/display: Make atomic-check validate underscan changes (Rob Clark) [1600556]
-- [gpu] drm/amd/display: Fix BUG_ON during CRTC atomic check update (Rob Clark) [1600556]
-- [gpu] drm/psr: Fix missed entry in PSR setup time table (Rob Clark) [1600556]
-- [gpu] drm/i915/lvds: Move acpi lid notification registration to registration phase (Rob Clark) [1600556]
-- [gpu] drm/i915: Disable LVDS on Radiant P845 (Rob Clark) [1600556]
-- [gpu] drm/ttm: fix backport problem with invalid dma attr (Rob Clark) [1588147]
-- [sound] asoc: add snd_soc_component_cache_sync() (Prarit Bhargava) [1597102]
-- [sound] asoc: add missing snd_soc_component_set_jack (Prarit Bhargava) [1597102]
-- [kernel] device property: Define type of PROPERTY_ENRTY_*() macros (Prarit Bhargava) [1597102]
-- [edac] sb_edac: Add support for systems with segmented PCI buses (Aristeu Rozanski) [1600649]
-- [edac] sb_edac: Fix out of bound writes during DIMM configuration on KNL (Aristeu Rozanski) [1600649]
-- [pci] Increase VPD access timeout to 125ms (Myron Stowe) [1608510]
-- [firmware] dell_rbu: make firmware payload memory uncachable (Charles Rose) [1563410]
-- [block] blk-mq: fail the request in case issue failure (Ming Lei) [1599682]
-- [block] blk-mq-debugfs: Add names for recently added flags (Ming Lei) [1588286]
-- [block] blk-mq-debugfs: Add 'kick' operation (Ming Lei) [1588286]
-- [block] blk-mq-debugfs: Show busy requests (Ming Lei) [1588286]
-- [block] blk-mq-debugfs: Show requeue list (Ming Lei) [1588286]
-- [block] blk-mq-debugfs: Show atomic request flags (Ming Lei) [1588286]
-- [scsi] ibmvfc: Avoid unnecessary port relogin (Steve Best) [1605080]
-- [nvdimm] linvdimm, pmem: Preserve read-only setting for pmem devices (Jeff Moyer) [1600496]
-- [nvdimm] fix btt partition scanning on boot (Jeff Moyer) [1600496]
-- [nvme] if_ready checks to fail io to deleting controller (Ewan Milne) [1598017]
-- [nvmet-fc] move tech preview warning to nvmet_fc_register_targetport call (Ewan Milne) [1608947]
-- [nvme-fc] move tech preview warning to nvme_fc_register_localport call (Ewan Milne) [1608947]
-- [scsi] qla2xxx: Return error when TMF returns (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix ISP recovery on unload (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix driver unload by shutting down chip (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix NPIV deletion by calling wait_for_sess_deletion (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix unintialized List head crash (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix NULL pointer dereference for fcport search (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Spinlock recursion in qla_target (Himanshu Madhani) [1599351]
-- [scsi] qla2xxx: Fix crash on qla2x00_mailbox_command (Himanshu Madhani) [1599351]
-- [netdrv] qed: Fix reading stale configuration information (Chad Dupuis) [1608063]
-- [netdrv] cxgb4: do not return DUPLEX_UNKNOWN when link is down (Arjun Vynipadath) [1603055]
-- [netdrv] rhmaintainers: update bnx2x driver maintainer (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Fix receiving tx-timeout in error or recovery state (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: use the right constant (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Collect the device debug information during Tx timeout (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Eliminate duplicate barriers on weakly-ordered archs (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Replace doorbell barrier() with wmb() (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: fix spelling mistake: "registeration" -> "registration" (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Deprecate pci_get_bus_and_slot() (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Replace WARN_ONCE with netdev_WARN_ONCE (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: Use NETIF_F_GRO_HW (Jonathan Toppins) [1548146]
-- [netdrv] bnx2x: fix slowpath null crash (Jonathan Toppins) [1548146]
-- [net] ipv6: flush nd cache on IFF_NOARP change (Michael Cambria) [1599964]
-- [net] ip6_tunnel: allow ip6gre dev mtu to be set below 1280 (Michael Cambria) [1607669]
-- [net] multicast: do not restore deleted record source filter mode to new one (Hangbin Liu) [1586321]
-- [net] multicast: remove useless parameter for group add (Hangbin Liu) [1586321]
-- [net] ipv6/mcast: init as INCLUDE when join SSM INCLUDE group (Hangbin Liu) [1586321]
-- [net] ipv4/igmp: init group mode as INCLUDE when join source group (Hangbin Liu) [1586321]
-- [net] ipv6: mcast: fix unsolicited report interval after receiving querys (Hangbin Liu) [1586321]
-- [net] ipv6: refactor ipv6_dev_mc_inc() (Hangbin Liu) [1586321]
-- [x86] microcode/amd: Do not load when running on a hypervisor (Vitaly Kuznetsov) [1607899]
-
-* Mon Jul 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-929.el7]
-- [iio] hid-sensor-magn-3d: Add support for rotation from north (Tony Camuso) [1559170]
-- [iio] hid: Fix hid_report_len usage (Tony Camuso) [1559170]
-- [iio] hid: core: Fix size as type u32 (Tony Camuso) [1559170]
-- [iio] hid-sensor-hub: Implement batch mode (Tony Camuso) [1559170]
-- [iio] hid-sensor-trigger: Change get poll value function order to avoid sensor properties losing after resume from S3 (Tony Camuso) [1559170]
-- [iio] hid-sensor: Store restore poll and hysteresis on S3 (Tony Camuso) [1559170]
-- [iio] accel: hid-sensor-accel-3d: Add timestamp (Tony Camuso) [1559170]
-- [iio] hid-sensor: Fix unbalanced pm_runtime_enable error (Tony Camuso) [1559170]
-- [iio] buffer: Introduced a function to assign the buffer specific attrs (Tony Camuso) [1559170]
-- [iio] hid: sensor-hub: Move the memset to sensor_hub_get_feature() (Tony Camuso) [1559170]
-- [iio] magnetometer: separate the values of attributes based on their usage type for HID compass sensor (Tony Camuso) [1559170]
-- [iio] hid: hid-sensor-hub: clear memory to avoid random data (Tony Camuso) [1559170]
-- [iio] inkern: add helpers to query available values from channels (Tony Camuso) [1559170]
-- [iio] core: add a callback to allow drivers to provide _available attributes (Tony Camuso) [1559170]
-- [iio] drop IIO_ST macro (Tony Camuso) [1559170]
-- [iio] hid-sensors: Increase the precision of scale to fix wrong reading interpretation (Tony Camuso) [1559170]
-- [iio] fix pressure data output unit in hid-sensor-attributes (Tony Camuso) [1559170]
-- [iio] orientation: hid-sensor-rotation: Add PM function (fix non working driver) (Tony Camuso) [1559170]
-- [iio] hid-sensor-attributes: Check sample_frequency/hysteresis write data legitimacy (Tony Camuso) [1559170]
-- [iio] hid: hid-dr: add input mapping for axis selection (Tony Camuso) [1559170]
-- [iio] Implement counter channel type and info constants (Tony Camuso) [1559170]
-- [kernel] iio: add IIO_ATTR_(RO, WO, RW) and IIO_DEVICE_ATTR_(RO, WO, RW) macros (Tony Camuso) [1559170]
-- [iio] Declare event_attrs field of iio_info structure as const (Tony Camuso) [1559170]
-- [iio] inkern: add iio_read_channel_offset helper (Tony Camuso) [1559170]
-- [iio] trigger: Add helper function to verify that a trigger belongs to the same device (Tony Camuso) [1559170]
-- [iio] Use kmalloc_array() in iio_scan_mask_set() (Tony Camuso) [1559170]
-- [iio] trigger: helpers to determine own trigger (Tony Camuso) [1559170]
-- [iio] ensure ret is initialized to zero before entering do loop (Tony Camuso) [1559170]
-- [iio] add resource managed triggered buffer init helpers (Tony Camuso) [1559170]
-- [iio] trigger: add resource managed (un)register (Tony Camuso) [1559170]
-- [iio] Add resource managed APIs devm_iio_channel_(get, release) in devres (Tony Camuso) [1559170]
-- [iio] hid-sensors: avoid unused function warning (Tony Camuso) [1559170]
-- [iio] hid-sensors: use asynchronous resume (Tony Camuso) [1559170]
-- [iio] fix sched WARNING "do not call blocking ops when !TASK_RUNNING" (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Add ISH quirk (Tony Camuso) [1559170]
-- [iio] buffer-dma: Use ARRAY_SIZE in for loop range (Tony Camuso) [1559170]
-- [iio] Refuse to register triggers with duplicate names (Tony Camuso) [1559170]
-- [iio] Fix error handling in iio_trigger_attach_poll_func (Tony Camuso) [1559170]
-- [iio] electricalconductivity: add IIO_ELECTRICALCONDUCTIVITY type (Tony Camuso) [1559170]
-- [iio] triggers: Make trigger ops structure explicitly non optional (Tony Camuso) [1559170]
-- [iio] Add support for creating IIO devices via configfs (Tony Camuso) [1559170]
-- [iio] core: mounting matrix support (Tony Camuso) [1559170]
-- [iio] core: Add devm_ APIs for iio_channel_(get, release)_all (Tony Camuso) [1559170]
-- [iio] core: Add devm_ APIs for iio_channel_(get, release) (Tony Camuso) [1559170]
-- [iio] common: hid-sensors: use tab for indention (Tony Camuso) [1559170]
-- [hid] simplify implement() a bit (Tony Camuso) [1559170]
-- [iio] Add channel for UV index (Tony Camuso) [1559170]
-- [iio] buffer: add missing descriptions in iio_buffer_access_funcs (Tony Camuso) [1559170]
-- [iio] fix config watermark initial value (Tony Camuso) [1559170]
-- [hid] uhid.c: check write() bitness using in_compat_syscall (Tony Camuso) [1559170]
-- [iio] core: implement iio_device_(claim|release)_direct_mode() (Tony Camuso) [1559170]
-- [iio] Fix typos in the struct iio_event_spec documentation comments (Tony Camuso) [1559170]
-- [iio] buffer-dmaengine: Use dmaengine_terminate_sync() (Tony Camuso) [1559170]
-- [iio] Add helper function for calculating scan index storage size (Tony Camuso) [1559170]
-- [iio] ph: add IIO_PH channel type (Tony Camuso) [1559170]
-- [iio] inkern: fix a NULL dereference on error (Tony Camuso) [1559170]
-- [iio] core: fix ptr_ret.cocci warnings (Tony Camuso) [1559170]
-- [iio] Make IIO value formating function globally available (Tony Camuso) [1559170]
-- [iio] inkern.c Use list_for_each_entry_safe (Tony Camuso) [1559170]
-- [iio] configfs: Introduce iio/configfs.h to provide a location for the configfs_subsystem (Tony Camuso) [1559170]
-- [iio] trigger: Introduce IIO hrtimer based trigger (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO software triggers (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO configfs support (Tony Camuso) [1559170]
-- [iio] configfs: allow dynamic group creation (Tony Camuso) [1559170]
-- [hid] enable hid device to suspend/resume asynchronously (Tony Camuso) [1559170]
-- [usb] quirks: Apply ALWAYS_POLL to all ELAN devices (Tony Camuso) [1559170]
-- [hid] debug: improve hid_debug_event() (Tony Camuso) [1559170]
-- [iio] fix some warning messages (Tony Camuso) [1559170]
-- [hid] core: use scnprintf in modalias_show() (Tony Camuso) [1559170]
-- [hid] Make report_descriptor available for all devices (Tony Camuso) [1559170]
-- [hid] convert bus code to use dev_groups (Tony Camuso) [1559170]
-- [iio] Add buffer enable/disable callbacks (Tony Camuso) [1559170]
-- [iio] Add support for indicating fixed watermarks (Tony Camuso) [1559170]
-- [iio] Add a DMAengine framework based buffer (Tony Camuso) [1559170]
-- [iio] Add generic DMA buffer infrastructure (Tony Camuso) [1559170]
-- [iio] iio_buffer_init(): Only set watermark if not already set (Tony Camuso) [1559170]
-- [iio] Set device watermark based on watermark of all attached buffers (Tony Camuso) [1559170]
-- [iio] resistance: add IIO_RESISTANCE channel type (Tony Camuso) [1559170]
-- [iio] chemical: Add IIO_CONCENTRATION channel type (Tony Camuso) [1559170]
-- [iio] Support triggered events (Tony Camuso) [1559170]
-- [iio] percolate error if event fd fails (Tony Camuso) [1559170]
-- [iio] Move generic buffer implementations to sub-directory (Tony Camuso) [1559170]
-- [iio] Move callback buffer to its own module (Tony Camuso) [1559170]
-- [iio] event: Remove negative error code from iio_event_poll (Tony Camuso) [1559170]
-- [iio] industrialio-buffer: Fix iio_buffer_poll return value (Tony Camuso) [1559170]
-- [kernel] iio: Add inverse unit conversion macros (Tony Camuso) [1559170]
-- [iio] trigger: Add missing fields in kernel docs (Tony Camuso) [1559170]
-- [iio] declare struct to fix warning (Tony Camuso) [1559170]
-- [kernel] iio: Add missing kernel doc field (Tony Camuso) [1559170]
-- [kernel] iio: Fix function parameter name in kernel doc (Tony Camuso) [1559170]
-- [iio] event: Add missing fields in kernel docs (Tony Camuso) [1559170]
-- [iio] buffer: Fix kernel docs warnings (Tony Camuso) [1559170]
-- [iio] core: Add function params for kernel docs (Tony Camuso) [1559170]
-- [iio] Fix parameters in iio_triggered_buffer_setup (Tony Camuso) [1559170]
-- [iio] allow userspace to flush the hwfifo with non-blocking reads (Tony Camuso) [1559170]
-- [iio] Add missing modifier names to core (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-prox: Fit assignment in one line (Tony Camuso) [1559170]
-- [iio] hid-sensor: Fix suspend/resume delay (Tony Camuso) [1559170]
-- [iio] Require strict scan mask matching in hardware mode (Tony Camuso) [1559170]
-- [iio] Specify supported modes for buffers (Tony Camuso) [1559170]
-- [iio] Always compute masklength (Tony Camuso) [1559170]
-- [iio] buffer: remove unneeded test (Tony Camuso) [1559170]
-- [iio] core: add high pass filter attributes (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Leave device in sane state on error (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Split enable and disable path into helper functions (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Verify configuration before starting to apply it (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Perform request_update() only for new buffers (Tony Camuso) [1559170]
-- [iio] __iio_update_buffers: Slightly refactor scan mask memory management (Tony Camuso) [1559170]
-- [iio] Replace printk in __iio_update_buffers with dev_dbg (Tony Camuso) [1559170]
-- [iio] Add I/Q modifiers (Tony Camuso) [1559170]
-- [iio] pressure: hid-sensor-press: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] orientation: hid-sensor-rotation: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] orientation: hid-sensor-incl-3d: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-als.c: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] gyro: hid-sensor-gyro-3d: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] accel: hid-sensor-accel-3d: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-prox: Fix memory leak in probe() (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Fix debug lock warning (Tony Camuso) [1559170]
-- [iio] hid-sensor-press: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-rotation: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-incl-3d: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-prox: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-als: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: Constify platform_device_id (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_OVERSAMPLING_RATIO (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_CALIBEMISSIVITY (Tony Camuso) [1559170]
-- [iio] kfifo: Set update_needed to false only if a buffer was allocated (Tony Camuso) [1559170]
-- [iio] pressure: hid-sensor-press: Fix modifier (Tony Camuso) [1559170]
-- [iio] add support for hardware fifo (Tony Camuso) [1559170]
-- [iio] add watermark logic to iio read and poll (Tony Camuso) [1559170]
-- [iio] sca3000: hide stufftoread logic (Tony Camuso) [1559170]
-- [iio] hid: hid-sensor-hub: Fix sparse warning (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix attribute read for logical usage id (Tony Camuso) [1559170]
-- [iio] core: Fix double free (Tony Camuso) [1559170]
-- [iio] Move iio userspace applications out of staging (Tony Camuso) [1559170]
-- [hid] microsoft: Add ID for NE7K wireless keyboard (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Enhance feature report set API (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Enhance get feature report API (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Extend API for async reads (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Add support for application collection (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Allow parallel synchronous reads (Tony Camuso) [1559170]
-- [hid] sensor-hub: correct dyn_callback_lock IRQ-safe change (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Correct documentation (Tony Camuso) [1559170]
-- [iio] Export userspace IIO headers (Tony Camuso) [1559170]
-- [iio] buffer: refactor buffer attributes setup (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_DEBOUNCE_COUNT and _TIME (Tony Camuso) [1559170]
-- [iio] core: Remove IIO_EV_TYPE_INSTANCE (Tony Camuso) [1559170]
-- [iio] core: Introduce CHANGE event type (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_CALIBWEIGHT (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_VELOCITY and IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z (Tony Camuso) [1559170]
-- [documentation] Add ABI documentation for offset and scaled humidity (Tony Camuso) [1559170]
-- [iio] core: Introduce DISTANCE channel type (Tony Camuso) [1559170]
-- [iio] core: Introduce ENERGY channel type (Tony Camuso) [1559170]
-- [iio] hid-sensor-press: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-incl-3d: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-prox: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-als: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: Introduce PM (Tony Camuso) [1559170]
-- [iio] hid_sensor_hub: Common PM functions (Tony Camuso) [1559170]
-- [iio] industrialio-event: Fix typo 's/dynically/dynamically/' (Tony Camuso) [1559170]
-- [iio] Add new operating mode for non triggered sw buffers (Tony Camuso) [1559170]
-- [iio] Deselect IIO_TRIGGER for IIO_KFIFO_BUF (Tony Camuso) [1559170]
-- [iio] kconfig: use bool instead of boolean for type definition attributes (Tony Camuso) [1559170]
-- [hid] input: fix confusion on conflicting mappings (Tony Camuso) [1559170]
-- [iio] buffer: fix custom buffer attributes copy (Tony Camuso) [1559170]
-- [iio] ensure scan index is unique at device register (Tony Camuso) [1559170]
-- [iio] inkern: add out of range error message (Tony Camuso) [1559170]
-- [iio] iio: Fix iio_channel_read return if channel havn't info (Tony Camuso) [1559170]
-- [iio] light: Annotate Kconfig entry with module name information (Tony Camuso) [1559170]
-- [iio] accel: Annotate Kconfig entries with module name information (Tony Camuso) [1559170]
-- [iio] trigger: Add a blank line after declarations (Tony Camuso) [1559170]
-- [iio] trigger: fix sysfs name on list mutex (Tony Camuso) [1559170]
-- [iio] core: Get rid of misleading comment (Tony Camuso) [1559170]
-- [iio] kfifo: Add resource management devm_iio_kfifo_allocate/free (Tony Camuso) [1559170]
-- [iio] kfifo: Remove unused argument in iio_kfifo_allocate (Tony Camuso) [1559170]
-- [iio] consumer.h: Fix scale factor in function comment (Tony Camuso) [1559170]
-- [iio] buffer: Drop get_length callback (Tony Camuso) [1559170]
-- [iio] buffer: Make length attribute read only for buffers without set_length (Tony Camuso) [1559170]
-- [iio] buffer: Allocate standard attributes in the core (Tony Camuso) [1559170]
-- [iio] buffer: Move iio_buffer_alloc_sysfs and iio_buffer_free_sysfs (Tony Camuso) [1559170]
-- [iio] Remove get_bytes_per_datum() from iio_buffer_access_funcs (Tony Camuso) [1559170]
-- [iio] Move buffer registration to the core (Tony Camuso) [1559170]
-- [iio] Unexport iio_scan_mask_set() (Tony Camuso) [1559170]
-- [iio] inkern: add iio_write_channel_raw (Tony Camuso) [1559170]
-- [iio] common: remove unnecessary sizeof(u8) (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_CHAN_INFO_CALIBHEIGHT (Tony Camuso) [1559170]
-- [iio] core: Introduce STEPS channel, ENABLE mask and INSTANCE event (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_EV_DIR_NONE (Tony Camuso) [1559170]
-- [iio] core: Introduce IIO_ACTIVITY channel (Tony Camuso) [1559170]
-- [iio] time: Expose get_monotonic_coarse64() for in-kernel uses (Tony Camuso) [1559170]
-- [iio] maintainers: Add IIO include files (Tony Camuso) [1559170]
-- [iio] Fix IIO_EVENT_CODE_EXTRACT_DIR bit mask (Tony Camuso) [1559170]
-- [hid] input: Fix TransducerSerialNumber implementation (Tony Camuso) [1559170]
-- [iio] inkern: Add of_xlate function to struct iio_info (Tony Camuso) [1559170]
-- [hid] input: force generic axis to be mapped to their user space axis (Tony Camuso) [1559170]
-- [iio] hid_sensor_hub: Fix indio_dev->trig assignment (Tony Camuso) [1559170]
-- [iio] trigger: modify return value for iio_trigger_get (Tony Camuso) [1559170]
-- [iio] inkern: fix overwritten -EPROBE_DEFER in of_iio_channel_get_by_name (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: use devm_ functions consistently (Tony Camuso) [1559170]
-- [iio] buffer: Wrong sized allocation of demux table elements (Tony Camuso) [1559170]
-- [iio] buffer: Coalesce adjacent demux table entries (Tony Camuso) [1559170]
-- [iio] buffer: Use roundup() instead of open-coding it (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Fix build warning (Tony Camuso) [1559170]
-- [iio] Use ktime_get_real_ns() (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Scan for usage attributes before setting up iio channels (Tony Camuso) [1559170]
-- [iio] buffer: Fix demux table creation (Tony Camuso) [1559170]
-- [iio] types: Added support for rotation from north usage attributes (Tony Camuso) [1559170]
-- [iio] core : events ABI for specifying period (Tony Camuso) [1559170]
-- [iio] core: Handle error when mask type is not separate (Tony Camuso) [1559170]
-- [iio] hid-sensors: make hid_sensor_get_reporting_interval static (Tony Camuso) [1559170]
-- [iio] hid-sensors: Fix compilation warning (Tony Camuso) [1559170]
-- [iio] hid-sensor-prox: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-als: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: Fix return values (Tony Camuso) [1559170]
-- [iio] hid-sensor-press: Fix return values (Tony Camuso) [1559170]
-- [hid] sensor-hub: fix potential memory leak (Tony Camuso) [1559170]
-- [iio] of_iio_channel_get_by_name() returns non-null pointers for error legs (Tony Camuso) [1559170]
-- [iio] Remove timestamp argument from iio_trigger_poll() and iio_trigger_poll_chained() (Tony Camuso) [1559170]
-- [iio] triggers: interrupt trigger - move out of staging (Tony Camuso) [1559170]
-- [hid] sensor-hub: make dyn_callback_lock IRQ-safe (Tony Camuso) [1559170]
-- [iio] hid-sensors: Get feature report from sensor hub after changing power state (Tony Camuso) [1559170]
-- [iio] hid-sensors: Set default unit of measure for report interval (Tony Camuso) [1559170]
-- [iio] always select ANON_INODES (Tony Camuso) [1559170]
-- [iio] hid-sensors: typo leads to potential forever loop (Tony Camuso) [1559170]
-- [iio] hid-sensors: proximity: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: pressure: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: pressure: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: inclinometer 3d: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: inclinometer 3d: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: gyro 3d: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: gyro 3d : adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: compass 3d: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: compass 3d: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: als: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: als: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: Add API to power on/off (Tony Camuso) [1559170]
-- [iio] hid-sensors: Add api to get poll value (Tony Camuso) [1559170]
-- [iio] hid-sensors: accelerometer 3d: Raw read support (Tony Camuso) [1559170]
-- [iio] hid-sensors: accelerometer 3d: adjust scale and offset (Tony Camuso) [1559170]
-- [iio] hid-sensors: Convert units and exponent (Tony Camuso) [1559170]
-- [iio] Add TEMP_AMBIENT and TEMP_OBJECT channel modifiers (Tony Camuso) [1559170]
-- [iio] hid-sensors: Added device rotation support (Tony Camuso) [1559170]
-- [iio] core: Add quaternion modifier (Tony Camuso) [1559170]
-- [iio] core: Modify scan element type (Tony Camuso) [1559170]
-- [iio] core: Introduce read_raw_multi (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix sleeping function called from invalid context (Tony Camuso) [1559170]
-- [iio] querying buffer scan_mask should return 0/1 (Tony Camuso) [1559170]
-- [iio] core: Fix bug in length of event info_mask and catch unhandled bits set in masks (Tony Camuso) [1559170]
-- [iio] inkern: add iio_read_channel_average_raw (Tony Camuso) [1559170]
-- [iio] event: Fix and cleanup locking (Tony Camuso) [1559170]
-- [iio] hid-sensors: Added Pressure Sensor driver (Tony Camuso) [1559170]
-- [iio] pressure: Add STMicroelectronics pressures driver (Tony Camuso) [1559170]
-- [iio] hid-sensors: Added Proximity Sensor Driver (Tony Camuso) [1559170]
-- [iio] Avoid unnecessary kasprintf (Tony Camuso) [1559170]
-- [iio] Don't include extended name in shared attributes (Tony Camuso) [1559170]
-- [iio] iio get rid of unneccessary error_ret (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Processing for duplicate physical ids (Tony Camuso) [1559170]
-- [iio] hid-sensor-hub: Remove hard coded indexes (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Add selector api (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: quirk for STM Sensor hub (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Fix buggy report descriptors (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix duplicate sysfs entry error (Tony Camuso) [1559170]
-- [iio] Remove support for the legacy event config interface (Tony Camuso) [1559170]
-- [iio] hid-sensors: Added Inclinometer 3D (Tony Camuso) [1559170]
-- [iio] Add support for humidity sensors (Tony Camuso) [1559170]
-- [iio] trigger: Convert to use ATTRIBUTE_GROUPS (Tony Camuso) [1559170]
-- [iio] Add support for blocking IO on buffers (Tony Camuso) [1559170]
-- [iio] kfifo_buf: Implement data_available() callback (Tony Camuso) [1559170]
-- [iio] Add data_available callback for buffers (Tony Camuso) [1559170]
-- [iio] hid-sensors: Fix power and report state (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: Add logical min and max (Tony Camuso) [1559170]
-- [iio] Minor kerneldoc fix for iio_trigger_write_current() (Tony Camuso) [1559170]
-- [iio] core: Move kernel doc to the right location (Tony Camuso) [1559170]
-- [iio] core: Implement devm_iio_device_(register, unregister) (Tony Camuso) [1559170]
-- [iio] hid-sensors: magnetometer : Add sensitivity (Tony Camuso) [1559170]
-- [iio] hid-sensors: light/als : Add sensitivity (Tony Camuso) [1559170]
-- [iio] hid-sensors: gyro : Add sensitivity (Tony Camuso) [1559170]
-- [iio] hid-sensors: accelerometer: Add sensitivity (Tony Camuso) [1559170]
-- [iio] hid_sensors: fix crash during trigger unregister (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix report size (Tony Camuso) [1559170]
-- [iio] core: Add misssing braces (Tony Camuso) [1559170]
-- [iio] core: Use pr_err instead of printk (Tony Camuso) [1559170]
-- [iio] Remove unused iio_sw_buffer_preenable() (Tony Camuso) [1559170]
-- [iio] triggered-buffer: Remove redundant call to iio_sw_buffer_preenable() (Tony Camuso) [1559170]
-- [iio] Update buffer's bytes per datum after updating the scan mask (Tony Camuso) [1559170]
-- [iio] buffer: Free active scan mask in iio_disable_all_buffers() (Tony Camuso) [1559170]
-- [iio] kfifo: Set update_needed to false after allocating a new buffer (Tony Camuso) [1559170]
-- [iio] kfifo: Empty buffer on update (Tony Camuso) [1559170]
-- [iio] kfifo: Protect against concurrent access from userspace (Tony Camuso) [1559170]
-- [iio] kfifo: Fix memory leak (Tony Camuso) [1559170]
-- [iio] buffer: Ignore noop requests for iio_update_buffers() (Tony Camuso) [1559170]
-- [iio] Add a hysteresis event info attribute (Tony Camuso) [1559170]
-- [iio] Extend the event config interface (Tony Camuso) [1559170]
-- [iio] Factor IIO value formating into its own function (Tony Camuso) [1559170]
-- [iio] Add a helper to free a list of IIO device attributes (Tony Camuso) [1559170]
-- [iio] buffer: Add proper locking for iio_update_buffers() (Tony Camuso) [1559170]
-- [iio] Wakeup poll and blocking reads when the device is unregistered (Tony Camuso) [1559170]
-- [iio] Return -ENODEV for file operations if the device has been unregistered (Tony Camuso) [1559170]
-- [iio] Add reference counting for buffers (Tony Camuso) [1559170]
-- [iio] call sensor hub open close function (Tony Camuso) [1559170]
-- [hid] Delay opening HID device (Tony Camuso) [1559170]
-- [iio] Remove debugfs entries in iio_device_unregister() (Tony Camuso) [1559170]
-- [iio] st_sensors: Use iio_push_to_buffers_with_timestamp() (Tony Camuso) [1559170]
-- [iio] Prevent race between IIO chardev opening and IIO device free (Tony Camuso) [1559170]
-- [iio] Pass scan mask as unsigned long (Tony Camuso) [1559170]
-- [iio] Stop sampling when the device is removed (Tony Camuso) [1559170]
-- [iio] Fix crash when scan_bytes is computed with active_scan_mask == NULL (Tony Camuso) [1559170]
-- [iio] fix: Keep a reference to the IIO device for open file descriptors (Tony Camuso) [1559170]
-- [iio] buffer_cb: Add missing iio_buffer_init() (Tony Camuso) [1559170]
-- [iio] Add iio_push_buffers_with_timestamp() helper (Tony Camuso) [1559170]
-- [iio] Minor cleanups of industrialio-buffer (Tony Camuso) [1559170]
-- [iio] iio_device_add_event_sysfs() bugfix (Tony Camuso) [1559170]
-- [iio] use anon_inode_getfd() with O_CLOEXEC flag (Tony Camuso) [1559170]
-- [iio] kfifo_buf: Use wake_up_interruptible_poll() (Tony Camuso) [1559170]
-- [iio] Remove unnecessary casts for iio_push_to_buffers() (Tony Camuso) [1559170]
-- [iio] iio_push_to_buffers(): Change type of 'data' to const void arch block configs COPYING CREDITS crypto Documentation drivers firmware fs include init ipc Kbuild Kconfig kernel lib MAINTAINERS (Tony Camuso) [1559170]
-- [iio] buffer: Simplify iio_buffer_is_active() (Tony Camuso) [1559170]
-- [iio] buffer_cb: Constify iio_cb_access (Tony Camuso) [1559170]
-- [iio] add info_mask_(shared_by_dir/shared_by_all) (Tony Camuso) [1559170]
-- [iio] drop info_mask from struct iio_dev (Tony Camuso) [1559170]
-- [iio] refactor info mask and ext_info attribute creation (Tony Camuso) [1559170]
-- [iio] Add INT_TIME (integration time) channel info attribute (Tony Camuso) [1559170]
-- [hid] move HID_REPORT_TYPES closer to the report-definitions (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: move to devm_kzalloc (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: change kmalloc + memcpy by kmemdup (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix indentation accross the code (Tony Camuso) [1559170]
-- [iio] Remove trailing ; from function definitions (Tony Camuso) [1559170]
-- [hid] hid-sensor-hub: fix style of comments (Tony Camuso) [1559170]
-- [iio] trigger: implement devm_iio_trigger_alloc/devm_iio_triger_free (Tony Camuso) [1559170]
-- [iio] Fix documentation of devm_iio_device_free() (Tony Camuso) [1559170]
-- [iio] core: Avoid double minus in sysfs output (Tony Camuso) [1559170]
-- [iio] core: implement devm_iio_device_alloc/devm_iio_device_free (Tony Camuso) [1559170]
-- [iio] Remove unnecessary _write_raw_get_fmt() in several hid-sensor drivers (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: Use devm_iio_device_alloc (Tony Camuso) [1559170]
-- [iio] light: hid-sensor-als: Use devm_iio_device_alloc (Tony Camuso) [1559170]
-- [iio] magnetometer: hid-sensor-magn-3d: Use devm_iio_device_alloc (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: Use devm_iio_device_alloc (Tony Camuso) [1559170]
-- [iio] hid-sensor-magn-3d: add module alias for autoload (Tony Camuso) [1559170]
-- [iio] hid-sensor-als: add module alias for autoload (Tony Camuso) [1559170]
-- [iio] hid-sensor-gyro-3d: add module alias for autoload (Tony Camuso) [1559170]
-- [iio] hid-sensor-accel-3d: add module alias for autoload (Tony Camuso) [1559170]
-- [documentation] devres: add IIO device alloc/free functions to list (Tony Camuso) [1559170]
-- [iio] trigger: Fix use_count race condition (Tony Camuso) [1559170]
-- [iio] trigger: sysfs Move out of staging (Tony Camuso) [1559170]
-- [iio] buffer: cleanup messages in iio_update_buffers() (Tony Camuso) [1559170]
-- [hid] revert "hid-sensor-hub: fix report size" (Tony Camuso) [1559170]
-- [hid] revert "hid-sensor-hub: Add ISH quirk" (Tony Camuso) [1559170]
-- [iio] revert "iio: call sensor hub open close function" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid_sensors: fix crash during trigger unregister" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Fix power and report state" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor-hub: Remove hard coded indexes" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Add API to power on/off" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Get feature report from sensor hub after changing power state" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid_sensor_hub: Fix indio_dev->trig assignment" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid_sensor_hub: Common PM functions" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Add api to get poll value" (Tony Camuso) [1559170]
-- [hid] revert "hid-sensor-hub: Enhance get feature report API" (Tony Camuso) [1559170]
-- [iio] revert "hid-sensor-hub: Enhance feature report set API" (Tony Camuso) [1559170]
-- [iio] revert "hid-sensor: Fix suspend/resume delay" (Tony Camuso) [1559170]
-- [iio] revert "iio: common: hid-sensors: use tab for indention" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: use asynchronous resume" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: avoid unused function warning" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor-trigger: Change get poll value function order to avoid sensor properties losing after resume from S3" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensors: Set default unit of measure for report interval" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor: Store restore poll and hysteresis on S3" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor: Fix unbalanced pm_runtime_enable error" (Tony Camuso) [1559170]
-- [iio] revert "iio: hid-sensor-hub: Implement batch mode" (Tony Camuso) [1559170]
-
-* Fri Jul 27 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-928.el7]
-- [vfio] Use get_user_pages_longterm correctly (Jeff Moyer) [1585133]
-- [vfio] disable filesystem-dax page pinning (Jeff Moyer) [1585133]
-- [md] dm, dax: Make sure dm_dax_flush() is called if device supports it (Jeff Moyer) [1601078]
-- [md] dm: prevent DAX mounts if not supported (Jeff Moyer) [1568240]
-- [md] dm: set QUEUE_FLAG_DAX accordingly in dm_table_set_restrictions() (Jeff Moyer) [1568240]
-- [md] dax: check for QUEUE_FLAG_DAX in bdev_dax_supported() (Jeff Moyer) [1568240]
-- [nvdimm] pmem: only set QUEUE_FLAG_DAX for fsdax mode (Jeff Moyer) [1568240]
-- [dax] change bdev_dax_supported() to support boolean returns (Jeff Moyer) [1568240]
-- [fs] allow per-device dax status checking for filesystems (Jeff Moyer) [1568240]
-- [nvdimm] libnvdimm, pmem: Do not flush power-fail protected CPU caches (Jeff Moyer) [1594344]
-- [nvdimm] libnvdimm, pmem: Unconditionally deep flush on *sync (Jeff Moyer) [1594344]
-- [kernel] memremap: Remove stale devres_free() call (Jeff Moyer) [1505291]
-- [kernel] mm: Fix devm_memremap_pages() collision handling (Jeff Moyer) [1505291]
-- [kernel] dax: fix vma_is_fsdax() helper (Jeff Moyer) [1505291]
-- [kernel] sched/wait: Improve __var_waitqueue() code generation (Jeff Moyer) [1505291]
-- [x86] memremap: fix altmap accounting at free (Jeff Moyer) [1505291]
-- [fs] xfs, dax: introduce xfs_break_dax_layouts() (Jeff Moyer) [1505291]
-- [fs] xfs: prepare xfs_break_layouts() for another layout type (Jeff Moyer) [1505291]
-- [fs] xfs: prepare xfs_break_layouts() to be called with XFS_MMAPLOCK_EXCL (Jeff Moyer) [1505291]
-- [fs] mm, dax: handle layout changes to pinned dax mappings (Jeff Moyer) [1505291]
-- [x86] mm: fix __gup_device_huge vs unmap (Jeff Moyer) [1505291]
-- [mm] introduce MEMORY_DEVICE_FS_DAX and CONFIG_DEV_PAGEMAP_OPS (Jeff Moyer) [1505291]
-- [kernel] memremap: split devm_memremap_pages() and memremap() infrastructure (Jeff Moyer) [1505291]
-- [kernel] memremap: merge find_dev_pagemap into get_dev_pagemap (Jeff Moyer) [1505291]
-- [nvdimm] memremap: change devm_memremap_pages interface to use struct dev_pagemap (Jeff Moyer) [1505291]
-- [mm] memremap: drop private struct page_map (Jeff Moyer) [1505291]
-- [kernel] memremap: simplify duplicate region handling in devm_memremap_pages (Jeff Moyer) [1505291]
-- [kernel] memremap: remove to_vmem_altmap (Jeff Moyer) [1505291]
-- [kernel] mm: optimize dev_pagemap reference counting around get_dev_pagemap (Jeff Moyer) [1505291]
-- [kernel] mm: move get_dev_pagemap out of line (Jeff Moyer) [1505291]
-- [mm] merge vmem_altmap_alloc into altmap_alloc_block_buf (Jeff Moyer) [1505291]
-- [mm] split altmap memory map allocation from normal case (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to memmap_init_zone (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to vmemmap_free (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to arch_remove_memory and __remove_pages (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to vmemmap_populate (Jeff Moyer) [1505291]
-- [mm] pass the vmem_altmap to arch_add_memory and __add_pages (Jeff Moyer) [1505291]
-- [kernel] memremap: provide stubs for vmem_altmap_offset and vmem_altmap_free (Jeff Moyer) [1505291]
-- [infiniband] ib/core: disable memory registration of filesystem-dax vmas (Jeff Moyer) [1585135]
-- [media] v4l2: disable filesystem-dax mapping support (Jeff Moyer) [1585135]
-- [media] mm: fail get_vaddr_frames() for filesystem-dax mappings (Jeff Moyer) [1585135]
-- [mm] introduce get_user_pages_longterm (Jeff Moyer) [1505291]
-- [kernel] sched/wait: Introduce wait_var_event() (Jeff Moyer) [1505291]
-- [mm] remove unused variable in memory hotplug (Jeff Moyer) [1505291]
-- [mm] remove per-zone hashtable of bitlock waitqueues (Jeff Moyer) [1505291]
-- [tools] powerpc: Fix DSCR inheritance over fork() (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add gitignore file for the new DSCR tests (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add thread based stress test for DSCR sysfs interfaces (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for all DSCR sysfs interfaces (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for DSCR inheritence across fork & exec (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for DSCR value inheritence across fork (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for DSCR SPR numbers (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for explicitly changing DSCR value (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Add test for system wide DSCR default (Desnes Augusto Nunes do Rosario) [1601315]
-- [tools] selftests/powerpc: Rename TARGETS in powerpc selftests makefile (Desnes Augusto Nunes do Rosario) [1601315]
-- [documentation] powerpc/dscr: Add documentation for DSCR support (Desnes Augusto Nunes do Rosario) [1601315]
-- [powerpc] dscr: Add some in-code documentation (Desnes Augusto Nunes do Rosario) [1601315]
-- [powerpc] kernel: Rename PACA_DSCR to PACA_DSCR_DEFAULT (Desnes Augusto Nunes do Rosario) [1601315]
-- [powerpc] kernel: Remove the unused extern dscr_default (Desnes Augusto Nunes do Rosario) [1601315]
-- [powerpc] Fix handling of DSCR related facility unavailable exception (Desnes Augusto Nunes do Rosario) [1601315]
-- [iommu] amd: Add support for IOMMU XT mode (Suravee Suthikulpanit) [1596723]
-- [iommu] amd: Add support for higher 64-bit IOMMU Control Register (Suravee Suthikulpanit) [1596723]
-- [x86] irq_remapping: Move irq remapping mode enum (Suravee Suthikulpanit) [1596723]
-- [x86] cpu/amd: Fix LLC ID bit-shift calculation (Suravee Suthikulpanit) [1543815]
-- [x86] cpu/amd: Derive CPU topology from CPUID function 0xB when available (Suravee Suthikulpanit) [1543815]
-- [x86] cpu: Modify detect_extended_topology() to return result (Suravee Suthikulpanit) [1543815]
-- [x86] cpu/amd: Calculate last level cache ID from number of sharing threads (Suravee Suthikulpanit) [1543815]
-- [x86] cpu: Rename intel_cacheinfo.c to cacheinfo.c (Suravee Suthikulpanit) [1543815]
-- [x86] kvm: nvmx: fix guest CR4 loading when emulating L2 to L1 exit ("Dr. David Alan Gilbert") [1603753]
-
-* Wed Jul 25 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-927.el7]
-- [input] elantech: fix V4 report decoding for module with middle key (Benjamin Tissoires) [1599622]
-- [input] elantech: enable middle button of touchpads on ThinkPad P52 (Benjamin Tissoires) [1599622]
-- [hid] logitech-dj: prevent false errors to be shown (Benjamin Tissoires) [1375230]
-- [char] crash driver: update for CONFIG_HARDENED_USERCOPY (Dave Anderson) [1602876]
-- [i2c] i801: Do not create iTCO watchdog when WDAT table exists (David Arcari) [1607816]
-- [target] scsi: tcmu: Don't pass KERN_ERR to pr_err (Xiubo Li) [1560418]
-- [target] scsi: target: remove target_find_device (Xiubo Li) [1560418]
-- [target] scsi: tcmu: add module wide block/reset_netlink support (Xiubo Li) [1560418]
-- [target] scsi: tcmu: simplify nl interface (Xiubo Li) [1560418]
-- [target] scsi: tcmu: track nl commands (Xiubo Li) [1560418]
-- [target] scsi: tcmu: delete unused __wait (Xiubo Li) [1560418]
-- [block] blk-mq: issue directly if hw queue isn't busy in case of 'none' (Ming Lei) [1599682]
-- [netdrv] xen-netfront: Fix hang on device removal (Vitaly Kuznetsov) [1595557]
-- [net] skbuff: Unconditionally copy pfmemalloc in __skb_clone() (Stefano Brivio) [1597706]
-- [net] Don't copy pfmemalloc flag in __copy_skb_header() (Stefano Brivio) [1597706]
-- [net] ipv4: be more aggressive when probing alternative gateways (Michael Cambria) [1524463]
-- [net] tcp: add RCU protection to ipv6 opt dereference (Paolo Abeni) [1353274]
-- [net] xfrm: Fix stack-out-of-bounds read on socket policy lookup (Ravi Aysola) [1499471]
-- [net] xfrm: Don't use sk_family for socket policy lookups (Ravi Aysola) [1499471]
-- [kernel] uapi: mark wmi.h to be included in kernel-headers (Jarod Wilson) [1517197]
-- [kernel] sched/debug: fix schedstats-induced sched domain corruption (Josh Poimboeuf) [1602345]
-- [s390] zcrypt: Support up to 256 crypto adapters (Hendrik Brueckner) [1568734]
-- [s390] qdio: don't retry EQBS after CCQ 96 (Hendrik Brueckner) [1603168]
-- [s390] qeth: fix error handling in adapter command callbacks (Hendrik Brueckner) [1603170]
-- [x86] perf: read the FREEZE_WHILE_SMM bit during boot (David Arcari) [1566249]
-- [x86] kvm: Don't use pvqspinlock code if only 1 vCPU (Waiman Long) [1602155]
-- [x86] acpi: Use proper macro for invalid node (Prarit Bhargava) [1576245]
-- [x86] acpi: Fix bug in associating hot-added CPUs with corresponding NUMA node (Prarit Bhargava) [1576245]
-- [x86] bugs: Switch the selection of mitigation from CPU vendor to CPU features (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs: Add AMD's SPEC_CTRL MSR usage (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs: Add AMD's variant of SSB_NO (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Fix VM guest SSBD problems (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Eliminate TIF_SSBD checks in IBRS on/off functions (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Disable SSBD update from scheduler if not user settable (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Make ssbd_enabled writtable (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Remove thread_info check in __wrmsr_on_cpu() (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Write per-thread SSBD state to spec_ctrl_pcp (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Add a read-only ssbd_enabled debugfs file (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs/intel: Set proper CPU features and setup RDS (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] kvm/vmx: Emulate MSR_IA32_ARCH_CAPABILITIES (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] kvm: svm: Implement VIRT_SPEC_CTRL support for SSBD (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation, kvm: Implement support for VIRT_SPEC_CTRL/LS_CFG (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs: Rework spec_ctrl base and mask logic (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Rework SPEC_CTRL update after late microcode loading (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Make sync_all_cpus_ibrs() write spec_ctrl_pcp value (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs: Unify x86_spec_ctrl_(set_guest, restore_host) (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Rework speculative_store_bypass_update() (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Add virtualized speculative store bypass disable support (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bugs, kvm: Extend speculation control for VIRT_SPEC_CTRL (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] kvm: Rename KVM SPEC_CTRL MSR functions to match upstream (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Handle HT correctly on AMD (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] cpufeatures: Add FEATURE_ZEN (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] cpufeatures: Disentangle SSBD enumeration (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] cpufeatures: Disentangle MSR_SPEC_CTRL enumeration from IBRS (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Use synthetic bits for IBRS/IBPB/STIBP (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] documentation/spec_ctrl: Do some minor cleanups (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] speculation: Make "seccomp" the default mode for Speculative Store Bypass (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] seccomp: Move speculation migitation control to arch code (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] seccomp: Add filter flag to opt-out of SSB mitigation (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] seccomp: Use PR_SPEC_FORCE_DISABLE (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] prctl: Add force disable speculation (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spectre_v2: No mitigation if CPU not affected and no command override (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] pti: Do not enable PTI on CPUs which are not vulnerable to Meltdown (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] bug: Add X86_BUG_CPU_MELTDOWN and X86_BUG_SPECTRE_V(12) (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] pti: Rename CONFIG_KAISER to CONFIG_PAGE_TABLE_ISOLATION (Waiman Long) [1584569] {CVE-2018-3639}
-- [x86] spec_ctrl: Sync up naming of SPEC_CTRL MSR bits with upstream (Waiman Long) [1584569] {CVE-2018-3639}
-
-* Thu Jul 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-926.el7]
-- [acpi] osl: speedup grace period in acpi_os_map_cleanup (Jeff Moyer) [1533059]
-- [kernel] ftrace/rcu: Do not trace debug_lockdep_rcu_enabled() (Scott Wood) [1600018]
-- [mm] Support binding swap device to a node (Larry Woodman) [1485167]
-- [input] leds: fix out of bound access (Oleksandr Natalenko) [1598667]
-- [input] leds: skip unnamed LEDs (Oleksandr Natalenko) [1598667]
-- [block] blk-mq: dequeue request one by one from sw queue if hctx is busy (Ming Lei) [1597068]
-- [block] blk-mq: don't queue more if we get a busy return (Ming Lei) [1597068]
-- [block] blk-mq: only attempt to merge bio if there is rq in sw queue (Ming Lei) [1597068]
-- [block] blk-mq: use list_splice_tail_init() to insert requests (Ming Lei) [1597068]
-- [netdrv] cxgb4: Add FORCE_PAUSE bit to 32 bit port caps (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: fix offset in collecting TX rate limit info (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: Check for kvzalloc allocation failure (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4/cxgb4vf: link management changes for new SFP (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: do L1 config when module is inserted (Arjun Vynipadath) [1595084]
-- [scsi] cxgb4: change the port capability bits definition (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: Correct ntuple mask validation for hash filters (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: fix the wrong conversion of Mbps to Kbps (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: copy mbox log size to PF0-3 adap instances (Arjun Vynipadath) [1595084]
-- [netdrv] cxgb4: zero the HMA memory (Arjun Vynipadath) [1595084]
-- [netdrv] mlx5: Fix required capability for manipulating MPFS (Alaa Hleihel) [1595687]
-- [netdrv] mlx5: E-Switch, Disallow vlan/spoofcheck setup if not being esw manager (Alaa Hleihel) [1595687]
-- [netdrv] mlx5e: Avoid dealing with vport representors if not being e-switch manager (Alaa Hleihel) [1595687]
-- [netdrv] mlx5: E-Switch, Avoid setup attempt if not being e-switch manager (Alaa Hleihel) [1595687]
-- [netdrv] mlx5: E-Switch, Move representors definition to a global scope (Alaa Hleihel) [1595687]
-- [netdrv] mlx5: E-Switch, Add callback to get representor device (Alaa Hleihel) [1595687]
-- [net] mlx5e: Don't attempt to dereference the ppriv struct if not being eswitch manager (Alaa Hleihel) [1592306]
-- [scsi] qedi: Add get_generic_tlv_data handler (Chad Dupuis) [1590824]
-- [scsi] qedi: Add support for populating ethernet TLVs (Chad Dupuis) [1590824]
-- [scsi] qedf: Add get_generic_tlv_data handler (Chad Dupuis) [1590824]
-- [scsi] qedf: Add support for populating ethernet TLVs (Chad Dupuis) [1590824]
-- [netdrv] qede: Add support for populating ethernet TLVs (Chad Dupuis) [1590824]
-- [netdrv] qed: Add driver infrastucture for handling mfw requests (Chad Dupuis) [1590824]
-- [netdrv] qed: Add support for processing iscsi tlv request (Chad Dupuis) [1590824]
-- [netdrv] qed: Add support for processing fcoe tlv request (Chad Dupuis) [1590824]
-- [netdrv] qed: Add support for tlv request processing (Chad Dupuis) [1590824]
-- [netdrv] qed: Add MFW interfaces for TLV request support (Chad Dupuis) [1590824]
-- [netdrv] qed: Fix use of incorrect shmem address (Chad Dupuis) [1590780]
-- [netdrv] qed: Fix shared memory inconsistency between driver and the MFW (Chad Dupuis) [1590780]
-- [netdrv] qed: Add support for Unified Fabric Port (Chad Dupuis) [1590780]
-- [netdrv] qed: Add support for multi function mode with 802.1ad tagging (Chad Dupuis) [1590780]
-- [netdrv] qed: Remove unused data member 'is_mf_default' (Chad Dupuis) [1590780]
-- [netdrv] qed*: Refactor mf_mode to consist of bits (Chad Dupuis) [1590780]
-
-* Tue Jul 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-925.el7]
-- [netdrv] net: aquantia: vlan unicast address list correct handling (Igor Russkikh) [1597734]
-- [netdrv] cxgb4: assume flash part size to be 4MB, if it can't be determined (Arjun Vynipadath) [1600473]
-- [netdrv] cxgb4: Support ethtool private flags (Arjun Vynipadath) [1529064]
-- [netdrv] cxgb4: Add support for FW_ETH_TX_PKT_VM_WR (Arjun Vynipadath) [1529064]
-- [netdrv] sfc: hold filter_sem consistently during reset (Jarod Wilson) [1597152]
-- [netdrv] sfc: avoid recursive use of the filter_sem (Jarod Wilson) [1597152]
-- [netdrv] sfc: correctly initialise filter rwsem for farch (Jarod Wilson) [1597152]
-- [netdrv] sfc: make function efx_rps_hash_bucket static (Jarod Wilson) [1597152]
-- [net] ipv4: reset fnhe_mtu_locked after cache route flushed (Sabrina Dubroca) [1599762]
-- [net] ipv6: token: allow for clearing the current device token (Michael Cambria) [1593094]
-- [net] dccp: do not send reset to already closed sockets (Stefano Brivio) [1598368]
-- [net] ip6_tunnel: get the min mtu properly in ip6_tnl_xmit (Xin Long) [1597115]
-- [net] ipv6: fix tunnel error handling (Xin Long) [1597122]
-- [netdrv] veth: Be more robust on network device creation when no attributes (William Townsend) [1546072]
-- [net] netlink: reset network header before passing to taps (William Townsend) [1543506]
-- [net] ipv6: fix NULL dereference in ip6_route_dev_notify() (Stefano Brivio) [1595097]
-- [net] core: remove WARN_ON from skb_try_coalesce (Florian Westphal) [1569664]
-- [net] tcp: Add mark for TIMEWAIT sockets (Ravi Aysola) [1576990]
-- [tools] perf mmap: Be consistent when checking for an unmaped ring buffer (Jiri Olsa) [1514635]
-- [tools] perf mmap: Fix accessing unmapped mmap in perf_mmap__read_done() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Discard head in overwrite_rb_find_range() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Simplify perf_mmap__read_init() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Simplify perf_mmap__read_event() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Simplify perf_mmap__consume() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Use stored 'overwrite' in perf_mmap__consume() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Use the stored data in perf_mmap__read_event() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Use the stored scope data in perf_mmap__push() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Store mmap scope in struct perf_mmap() (Jiri Olsa) [1514635]
-- [tools] perf evlist: Store 'overwrite' in struct perf_mmap (Jiri Olsa) [1514635]
-- [tools] perf mmap: Discard legacy interfaces for mmap read forward (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for task-exit (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for switch-tracking (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for sw-clock (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for time-to-tsc (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for perf-record (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for tp fields (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for mmap-basic (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for "keep tracking" test (Jiri Olsa) [1514635]
-- [tools] perf test: Switch to new perf_mmap__read_event() interface for 'code reading' test (Jiri Olsa) [1514635]
-- [tools] perf python: Switch to new perf_mmap__read_event() interface (Jiri Olsa) [1514635]
-- [tools] perf trace: Switch to new perf_mmap__read_event() interface (Jiri Olsa) [1514635]
-- [tools] perf kvm: Switch to new perf_mmap__read_event() interface (Jiri Olsa) [1514635]
-- [tools] perf top: Check the latency of perf_top__mmap_read() (Jiri Olsa) [1514635]
-- [tools] perf top: Switch default mode to overwrite mode (Jiri Olsa) [1514635]
-- [tools] perf top: Remove lost events checking (Jiri Olsa) [1514635]
-- [tools] perf hists browser: Add parameter to disable lost event warning (Jiri Olsa) [1514635]
-- [tools] perf top: Add overwrite fall back (Jiri Olsa) [1514635]
-- [tools] perf evsel: Expose the perf_missing_features struct (Jiri Olsa) [1514635]
-- [tools] perf top: Check per-event overwrite term (Jiri Olsa) [1514635]
-- [tools] perf mmap: Discard legacy interface for mmap read (Jiri Olsa) [1514635]
-- [tools] perf test: Update mmap read functions for backward-ring-buffer test (Jiri Olsa) [1514635]
-- [tools] perf mmap: Introduce perf_mmap__read_event() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Introduce perf_mmap__read_done() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Discard 'prev' in perf_mmap__read() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Add new return value logic for perf_mmap__read_init() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Introduce perf_mmap__read_init() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Cleanup perf_mmap__push() (Jiri Olsa) [1514635]
-- [tools] perf mmap: Recalculate size for overwrite mode (Jiri Olsa) [1514635]
-- [tools] perf evlist: Remove stale mmap read for backward (Jiri Olsa) [1514635]
-- [tools] perf tools: Rename 'backward' to 'overwrite' in evlist, mmap and record (Jiri Olsa) [1514635]
-- [tools] perf mmap: Don't discard prev in backward mode (Jiri Olsa) [1514635]
-- [tools] perf mmap: Fix perf backward recording (Jiri Olsa) [1514635]
-- [tools] perf mmap: Remove overwrite and check_messup from mmap read (Jiri Olsa) [1514635]
-- [tools] perf mmap: Remove overwrite from arguments list of perf_mmap__push (Jiri Olsa) [1514635]
-- [tools] perf evlist: Remove evlist->overwrite (Jiri Olsa) [1514635]
-- [tools] perf evlist: Remove 'overwrite' parameter from perf_evlist__mmap_ex (Jiri Olsa) [1514635]
-- [tools] perf evlist: Remove 'overwrite' parameter from perf_evlist__mmap (Jiri Olsa) [1514635]
-- [tools] perf tests: Set evlist of test__task_exit() to !overwrite (Jiri Olsa) [1514635]
-- [tools] perf tests: Set evlist of test__basic_mmap() to !overwrite (Jiri Olsa) [1514635]
-- [tools] perf tests: Set evlist of test__sw_clock_freq() to !overwrite (Jiri Olsa) [1514635]
-- [tools] perf tests: Set evlist of test__backward_ring_buffer() to !overwrite (Jiri Olsa) [1514635]
-
-* Mon Jul 16 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-924.el7]
-- [scsi] qla2xxx: Fix kernel crash due to late workqueue allocation (Himanshu Madhani) [1588915]
-- [nvme] nvme-fc: release io queues to allow fast fail (Ewan Milne) [1594926]
-- [nvme] move init of keep_alive work item to controller initialization (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: fix and refine state checks in __nvmf_check_ready (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: handle the admin-only case properly in nvmf_check_ready (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: refactor queue ready check (Ewan Milne) [1594926]
-- [nvme] nvme-fc: fix nulling of queue data on reconnect (Ewan Milne) [1594926]
-- [nvme] nvme-fc: remove reinit_request routine (Ewan Milne) [1594926]
-- [nvme] nvme-fc: change controllers first connect to use reconnect path (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: allow internal passthrough command on deleting controllers (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: allow duplicate connections to the discovery controller (Ewan Milne) [1594926]
-- [nvme] nvme-fabrics: centralize discovery controller defaults (Ewan Milne) [1594926]
-
-* Mon Jul 16 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-923.el7]
-- [security] selinux: bpf: Add addtional check for bpf object file receive (Jiri Olsa) [1593027]
-- [security] bpf: Add LSM hooks for bpf object related syscall (Jiri Olsa) [1593027]
-- [security] selinux: bpf: Add selinux check for eBPF syscall operations (Jiri Olsa) [1593027]
-- [fs] gfs2: Fix recovery issues for spectators (Robert S Peterson) [1511551]
-- [fs] lockd: lost rollback of set_grace_period() in lockd_down_net() (Scott Mayhew) [1598208]
-- [fs] lockd: double unregister of inetaddr notifiers (Scott Mayhew) [1598212]
-- [fs] mount: copy the port field into the cloned nfs_server structure (Steve Dickson) [1465259]
-- [fs] xfs: catch inode allocation state mismatch corruption (Carlos Maiolino) [1549127]
-- [fs] nfsd: don't advertise a SCSI layout for an unsupported request_queue (Benjamin Coddington) [1592284]
-- [fs] nfsd: Check queue type before submitting a SCSI request (Benjamin Coddington) [1592284]
-- [fs] block: Introduce queue flag QUEUE_FLAG_SCSI_PASSTHROUGH (Benjamin Coddington) [1592284]
-- [fs] pnfs: Always free the session slot on error in nfs4_layoutget_handle_exception (Steve Dickson) [1599853]
-- [fs] nfs: Remove nfs4_wait_for_completion_rpc_task() (Steve Dickson) [1599853]
-- [fs] nfs: Fix inconsistent indentation in nfs4proc.c (Steve Dickson) [1599853]
-- [acpi] numa: fix pxm to online numa node associations (Jeff Moyer) [1559290 1515085]
-- [dax] device-dax: allow MAP_SYNC to succeed (Jeff Moyer) [1568236 1515085]
-- [fs] rhel: get rid of FS_HAS_FO_EXTEND (Jeff Moyer) [1568236]
-- [kernel] rhel: switch get_fo_extend over to using the registered ops (Jeff Moyer) [1598279 1520492 1568236]
-- [fs] rhel: have file systems register their fo_extend structs (Jeff Moyer) [1568236]
-- [fs] rhel: add a file_operations_extend registration function (Jeff Moyer) [1568236]
-- [nvdimm] libnvdimm, dimm: handle EACCES failures from label reads (Jeff Moyer) [1585093 1515085]
-- [acpi] nfit, address-range-scrub: add module option to skip initial ars (Jeff Moyer) [1539278 1515085]
-- [acpi] nfit, address-range-scrub: rework and simplify ARS state machine (Jeff Moyer) [1539278 1515085]
-- [acpi] nfit, address-range-scrub: determine one platform max_ars value (Jeff Moyer) [1539278 1515085]
-- [nvdimm] libnvdimm, region: quiet region probe (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: use a safe lookup for dimm device name (Jeff Moyer) [1585106]
-- [nvdimm] libnvdimm, dimm: fix dpa reservation vs uninitialized label area (Jeff Moyer) [1515085]
-- [dax] device-dax: implement ->pagesize() for smaps to report MMUPageSize (Jeff Moyer) [1526251 1515085]
-- [mm] hugetlbfs: introduce ->pagesize() to vm_operations_struct (Jeff Moyer) [1526251 1515085]
-- [acpi] nfit, address-range-scrub: introduce nfit_spa->ars_state (Jeff Moyer) [1539278 1515085]
-- [nvdimm] libnvdimm: add an api to cast a 'struct nd_region' to its 'struct device' (Jeff Moyer) [1539278 1515085]
-- [acpi] nfit, address-range-scrub: fix scrub in-progress reporting (Jeff Moyer) [1539278 1515085]
-- [s390] dax: introduce CONFIG_DAX_DRIVER (Jeff Moyer) [1515085]
-- [dax] device-dax: Tell kbuild DEV_DAX_PMEM depends on DEV_DAX (Jeff Moyer) [1515085]
-- [acpi] nfit: fix region registration vs block-data-window ranges (Jeff Moyer) [1539278 1515085]
-- [acpi] nfit: rework NVDIMM leaf method detection (Jeff Moyer) [1585117 1515085]
-- [acpi] nfit: skip region registration for incomplete control regions (Jeff Moyer) [1585111 1515085]
-- [nvdimm] libnvdimm, label: change nvdimm_num_label_slots per UEFI 2.7 (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, label: change min label storage size per UEFI 2.7 (Jeff Moyer) [1515085]
-- [dax] device-dax: use module_nd_driver (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, pmem: use module_nd_driver (Jeff Moyer) [1515085]
-- [kernel] libnvdimm: provide module_nd_driver wrapper (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm: remove redundant assignment to pointer 'dev' (Jeff Moyer) [1515085]
-- [dax] device-dax: remove redundant __func__ in dev_dbg (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm: remove redundant __func__ in dev_dbg (Jeff Moyer) [1515085]
-- [acpi] nfit: remove redundant __func__ in dev_dbg (Jeff Moyer) [1515085]
-- [dax] ->direct_access does not sleep anymore (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: remove redundant initialization of 'nd_mapping' (Jeff Moyer) [1515085]
-- [acpi] nfit: fix register dimm error handling (Jeff Moyer) [1515085]
-- [dax] device-dax: Fix trailing semicolon (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, dax: fix 1GB-aligned namespaces vs physical misalignment (Jeff Moyer) [1526926 1515085]
-- [nvdimm] libnvdimm, pfn: fix start_pad handling for aligned namespaces (Jeff Moyer) [1515085]
-- [tools] nfit, libnvdimm: deprecate the generic SMART ioctl (Jeff Moyer) [1515085]
-- [acpi] nfit: fix health event notification (Jeff Moyer) [1526927 1515085]
-- [dax] fix general protection fault in dax_alloc_inode (Jeff Moyer) [1515085]
-- [dax] stop requiring a live device for dax_flush() (Jeff Moyer) [1515085]
-- [dax] quiet bdev_dax_supported() (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, badrange: remove a WARN for list_empty (Jeff Moyer) [1515085]
-- [tools] libnvdimm: move poison list functions to a new 'badrange' file (Jeff Moyer) [1515085]
-- [dax] dev/dax: fix uninitialized variable build warning (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: make a couple of functions static (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm: introduce 'flags' attribute for DIMM 'lock' and 'alias' status (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: fix label initialization to use valid seq numbers (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, pfn: make 'resource' attribute only readable by root (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, namespace: make 'resource' attribute only readable by root (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, region : make 'resource' attribute only readable by root (Jeff Moyer) [1515085]
-- [nvdimm] libnvdimm, dimm: clear 'locked' status on successful DIMM enable (Jeff Moyer) [1515085]
-- [x86] libnvdimm, pmem: remove global pmem api (Jeff Moyer) [1515085]
-- [x86] libnvdimm, pmem: move arch_invalidate_pmem() to libnvdimm (Jeff Moyer) [1515085]
-- [scsi] qla2xxx: Fix inconsistent DMA mem alloc/free (Himanshu Madhani) [1596344]
-- [scsi] lpfc: Revise copyright for new company language (Dick Kennedy) [1595381]
-- [scsi] lpfc: update driver version to 12.0.0.5 (Dick Kennedy) [1595381]
-- [scsi] lpfc: devloss timeout race condition caused null pointer reference (Dick Kennedy) [1595381]
-- [scsi] lpfc: Fix NVME Target crash in defer rcv logic (Dick Kennedy) [1595381]
-- [scsi] lpfc: Support duration field in Link Cable Beacon V1 command (Dick Kennedy) [1595381]
-- [scsi] lpfc: Make PBDE optimizations configurable (Dick Kennedy) [1595381]
-- [scsi] lpfc: Fix abort error path for NVMET (Dick Kennedy) [1595381]
-- [scsi] lpfc: Fix panic if driver unloaded when port is offline (Dick Kennedy) [1595381]
-- [scsi] lpfc: Fix driver not setting dpp bits correctly in doorbell word (Dick Kennedy) [1595381]
-- [scsi] lpfc: Add Buffer overflow check, when nvme_info larger than PAGE_SIZE (Dick Kennedy) [1595381]
-- [kernel] sched/topology: Introduce NUMA identity node sched domain (Suravee Suthikulpanit) [1566753]
-- [x86] handle node hole when initializing numa_meminfo (Larry Woodman) [1598086]
-- [mm] make memblock_overlaps_region() return bool (Larry Woodman) [1598086]
-
-* Fri Jul 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-922.el7]
-- [md] raid10 set default value for max_sectors (Nigel Croxon) [1494474]
-- [md] raid10: ignore discard error (Nigel Croxon) [1494474]
-- [md] raid5: Assigning NULL to sh->batch_head before testing bit R5_Overlap of a stripe (Nigel Croxon) [1494474]
-- [md] raid1: add error handling of read error from FailFast device (Nigel Croxon) [1494474]
-- [md] fix NULL dereference of mddev->pers in remove_and_add_spares() (Nigel Croxon) [1494474]
-- [md] raid10: check bio in r10buf_pool_free to void NULL pointer dereference (Nigel Croxon) [1494474]
-- [md] raid1: exit sync request if MD_RECOVERY_INTR is set (Nigel Croxon) [1494474]
-- [md] raid1: fix NULL pointer dereference (Nigel Croxon) [1494474]
-- [md] fix a potential deadlock of raid5/raid10 reshape (Nigel Croxon) [1494474]
-- [md] raid5: avoid string overflow warning (Nigel Croxon) [1494474]
-- [md] md raid10: fix NULL deference in handle_write_completed() (Nigel Croxon) [1494474]
-- [md] only allow remove_and_add_spares when no sync_thread running (Nigel Croxon) [1494474]
-- [md] document lifetime of internal rdev pointer (Nigel Croxon) [1494474]
-- [md] fix md_write_start() deadlock w/o metadata devices (Nigel Croxon) [1494474]
-- [md] Free bioset when md_run fails (Nigel Croxon) [1494474]
-- [md] md-multipath: Use seq_putc() in multipath_status() (Nigel Croxon) [1494474]
-- [md] raid5: simplify uninitialization of shrinker (Nigel Croxon) [1494474]
-- [md] r5cache: print more info of log recovery (Nigel Croxon) [1494474]
-- [md] raid1, raid10: silence warning about wait-within-wait (Nigel Croxon) [1494474]
-- [md] introduce new personality funciton start() (Nigel Croxon) [1494474]
-- [md] raid1/10: add missed blk plug (Nigel Croxon) [1494474]
-- [md] r5cache: move mddev_lock() out of r5c_journal_mode_set() (Nigel Croxon) [1494474]
-- [md] raid5: correct degraded calculation in raid5_error (Nigel Croxon) [1494474]
-- [md] release allocated bitset sync_set (Nigel Croxon) [1494474]
-- [md] bitmap: clear BITMAP_WRITE_ERROR bit before writing it to sb (Nigel Croxon) [1494474]
-- [md] be cautious about using ->curr_resync_completed for ->recovery_offset (Nigel Croxon) [1494474]
-- [md] don't check MD_SB_CHANGE_CLEAN in md_allow_write (Nigel Croxon) [1494474]
-- [md] remove redundant variable q (Nigel Croxon) [1494474]
-- [md] use lockdep_assert_held (Nigel Croxon) [1494474]
-- [md] remove special meaning of ->quiesce(.., 2) (Nigel Croxon) [1494474]
-- [md] forbid a RAID5 from having both a bitmap and a journal (Nigel Croxon) [1494474]
-- [md] raid5: Set R5_Expanded on parity devices as well as data (Nigel Croxon) [1494474]
-- [md] raid10: remove a couple of redundant variables and initializations (Nigel Croxon) [1494474]
-- [md] rename some md/ files to have an "md-" prefix (Nigel Croxon) [1494474]
-- [md] raid10: remove VLAIS (Nigel Croxon) [1494474]
-- [md] bitmap: revert a patch (Nigel Croxon) [1494474]
-- [md] always set THREAD_WAKEUP and wake up wqueue if thread existed (Nigel Croxon) [1494474]
-- [md] raid5: cap worker count (Nigel Croxon) [1494474]
-- [md] raid5: remove raid5_build_block (Nigel Croxon) [1494474]
-- [md] r5cache: call mddev_lock/unlock() in r5c_journal_mode_show (Nigel Croxon) [1494474]
-- [md] replace seq_release_private with seq_release (Nigel Croxon) [1494474]
-- [md] raid1/10: reset bio allocated from mempool (Nigel Croxon) [1494474]
-- [md] raid5: release/flush io in raid5_do_work() (Nigel Croxon) [1494474]
-- [md] bitmap: copy correct data for bitmap super (Nigel Croxon) [1494474]
-- [md] r5cache: fix io_unit handling in r5l_log_endio() (Nigel Croxon) [1494474]
-- [md] r5cache: call mddev_lock/unlock() in r5c_journal_mode_set (Nigel Croxon) [1494474]
-- [md] fix warnning for UP case (Nigel Croxon) [1494474]
-- [md] remove 'idx' from 'struct resync_pages' (Nigel Croxon) [1494474]
-- [md] bitmap: don't read page from device with Bitmap_sync (Nigel Croxon) [1494474]
-- [md] fix sleep in atomic (Nigel Croxon) [1494474]
-- [md] fix a null dereference (Nigel Croxon) [1494474]
-- [md] use a separate bio_set for synchronous IO. (Nigel Croxon) [1494474]
-- [md] fail if mddev->bio_set can't be created (Nigel Croxon) [1494474]
-- [md] change the initialization value for a spare device spot to MD_DISK_ROLE_SPARE (Nigel Croxon) [1494474]
-- [md] raid1: remove unused bio in sync_request_write (Nigel Croxon) [1494474]
-- [md] raid10: fix FailFast test for wrong device (Nigel Croxon) [1494474]
-- [md] make bio mergeable (Nigel Croxon) [1494474]
-- [md] namespace private helper names (Nigel Croxon) [1494474]
-- [md] report sector of stripes with check mismatches (Nigel Croxon) [1494474]
-- [md] uuid debug statement now in processor byte order (Nigel Croxon) [1494474]
-- [md] r5cache: handle sync with data in write back cache (Nigel Croxon) [1494474]
-- [md] r5cache: gracefully handle journal device errors for writeback mode (Nigel Croxon) [1494474]
-- [md] raid1/10: avoid unnecessary locking (Nigel Croxon) [1494474]
-- [md] raid5-cache: in r5l_do_submit_io(), submit io->split_bio first (Nigel Croxon) [1494474]
-- [md] raid5: make use of spin_lock_irq over local_irq_disable + spin_lock (Nigel Croxon) [1494474]
-- [md] raid10: skip spare disk as 'first' disk (Nigel Croxon) [1494474]
-- [md] clear WantReplacement once disk is removed (Nigel Croxon) [1494474]
-- [md] raid10: wait up frozen array in handle_write_completed (Nigel Croxon) [1494474]
-- [md] support disabling of create-on-open semantics (Nigel Croxon) [1494474]
-- [md] allow creation of mdNNN arrays via md_mod/parameters/new_array (Nigel Croxon) [1494474]
-- [md] raid1: factor out flush_bio_list() (Nigel Croxon) [1494474]
-- [md] raid1: abort delayed writes when device fails (Nigel Croxon) [1494474]
-- [md] raid10: abort delayed writes when device fails (Nigel Croxon) [1494474]
-- [md] raid1: avoid reusing a resync bio after error handling (Nigel Croxon) [1494474]
-- [md] MD_CLOSING needs to be cleared after called md_set_readonly or do_md_stop (Nigel Croxon) [1494474]
-- [md] raid10: reset the 'first' at the end of loop (Nigel Croxon) [1494474]
-- [md] raid6: Fix anomily when recovering a single device in RAID6 (Nigel Croxon) [1494474]
-- [md] update slab_cache before releasing new stripes when stripes resizing (Nigel Croxon) [1494474]
-- [md] raid1: kill warning on powerpc_pseries (Nigel Croxon) [1494474]
-- [md] raid5-cache: fix payload endianness problem in raid5-cache (Nigel Croxon) [1494474]
-- [md] raid10: avoid direct access to bvec table in handle_reshape_read_error (Nigel Croxon) [1494474]
-- [md] raid10: retrieve page from preallocated resync page array (Nigel Croxon) [1494474]
-- [md] raid10: don't use bio's vec table to manage resync pages (Nigel Croxon) [1494474]
-- [md] raid10: refactor code of read reshape's .bi_end_io (Nigel Croxon) [1494474]
-- [md] raid1: use bio helper in process_checks() (Nigel Croxon) [1494474]
-- [md] raid1: retrieve page from pre-allocated resync page array (Nigel Croxon) [1494474]
-- [md] raid1: don't use bio's vec table to manage resync pages (Nigel Croxon) [1494474]
-- [md] raid1: simplify r1buf_pool_free() (Nigel Croxon) [1494474]
-- [md] prepare for managing resync I/O pages in clean way (Nigel Croxon) [1494474]
-- [md] move two macros into md.h (Nigel Croxon) [1494474]
-- [md] fix several trivial typos in comments (Nigel Croxon) [1494474]
-- [md] raid10: refactor some codes from raid10 write request (Nigel Croxon) [1494474]
-- [md] raid10: stop using bi_phys_segments (Nigel Croxon) [1494474]
-- [md] revert md/raid5: limit request size according to implementation limits (Nigel Croxon) [1494474]
-- [md] raid5: remove over-loading of ->bi_phys_segments (Nigel Croxon) [1494474]
-- [md] raid5: use bio_inc_remaining() instead of repurposing bi_phys_segments as a counter (Nigel Croxon) [1494474]
-- [md] raid5: call bio_endio() directly rather than queueing for later (Nigel Croxon) [1494474]
-- [md] md rhel-only: Fix backport errors for ff875738 (Nigel Croxon) [1494474]
-- [md] raid5: simplfy delaying of writes while metadata is updated (Nigel Croxon) [1494474]
-- [md] r5cache: generate R5LOG_PAYLOAD_FLUSH (Nigel Croxon) [1494474]
-- [md] r5cache: handle R5LOG_PAYLOAD_FLUSH in recovery (Nigel Croxon) [1494474]
-- [md] add doc for raid5-cache (Nigel Croxon) [1494474]
-- [md] r5cache: improve recovery with read ahead page pool (Nigel Croxon) [1494474]
-- [md] raid5: sort bios (Nigel Croxon) [1494474]
-- [md] raid5-cache: bump flush stripe batch size (Nigel Croxon) [1494474]
-- [md] raid5: prioritize stripes for writeback (Nigel Croxon) [1494474]
-- [md] raid1: fix a trivial typo in comments (Nigel Croxon) [1494474]
-- [md] r5cache: fix set_syndrome_sources() for data in cache (Nigel Croxon) [1494474]
-- [md] fix super_offset endianness in super_1_rdev_size_change (Nigel Croxon) [1494474]
-- [md] don't impose the MD_SB_DISKS limit on arrays without metadata (Nigel Croxon) [1494474]
-- [md] move funcs from pers->resize to update_size (Nigel Croxon) [1494474]
-- [md] delete dead code (Nigel Croxon) [1494474]
-- [md] raid10: submit bio directly to replacement disk (Nigel Croxon) [1494474]
-- [md] linear: shutup lockdep warnning (Nigel Croxon) [1494474]
-- [md] raid5: Don't reinvent the wheel but use existing llist API (Nigel Croxon) [1494474]
-- [md] disable WRITE SAME if it fails in underlayer disks (Nigel Croxon) [1494474]
-- [md] raid5-cache: exclude reclaiming stripes in reclaim check (Nigel Croxon) [1494474]
-- [md] raid5-cache: stripe reclaim only counts valid stripes (Nigel Croxon) [1494474]
-- [md] ensure md devices are freed before module is unloaded (Nigel Croxon) [1494474]
-- [md] r5cache: improve journal device efficiency (Nigel Croxon) [1494474]
-- [md] r5cache: enable chunk_aligned_read with write back cache (Nigel Croxon) [1494474]
-- [md] raid5-cache: suspend reclaim thread instead of shutdown (Nigel Croxon) [1494474]
-- [md] raid5: only dispatch IO from raid5d for harddisk raid (Nigel Croxon) [1494474]
-- [md] md linear: fix a race between linear_add() and linear_congested() (Nigel Croxon) [1494474]
-- [md] r5cache: shift complex rmw from read path to write path (Nigel Croxon) [1494474]
-- [md] r5cache: flush data only stripes in r5l_recovery_log() (Nigel Croxon) [1494474]
-- [md] raid5: move comment of fetch_block to right location (Nigel Croxon) [1494474]
-- [md] r5cache: read data into orig_page for prexor of cached data (Nigel Croxon) [1494474]
-- [md] raid5-cache: delete meaningless code (Nigel Croxon) [1494474]
-- [md] r5cache: fix spelling mistake on "recoverying" (Nigel Croxon) [1494474]
-- [md] r5cache: assign conf->log before r5l_load_log() (Nigel Croxon) [1494474]
-- [md] r5cache: simplify handling of sh->log_start in recovery (Nigel Croxon) [1494474]
-- [md] raid5-cache: removes unnecessary write-through mode judgments (Nigel Croxon) [1494474]
-- [md] raid10: Refactor raid10_make_request (Nigel Croxon) [1494474]
-- [md] r5cache: handle FLUSH and FUA (Nigel Croxon) [1494474]
-- [md] raid5-cache: use bio chaining (Nigel Croxon) [1494474]
-
-* Fri Jul 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-921.el7]
-- [media] uvcvideo: Support realtek's UVC 1.5 device (Jarod Wilson) [1561502]
-- [crypto] chelsio: Remove separate buffer used for DMA map B0 block in CCM (Arjun Vynipadath) [1595086]
-- [crypto] chelsio - Send IV as Immediate for cipher algo (Arjun Vynipadath) [1595086]
-- [crypto] chelsio: request to HW should wrap (Arjun Vynipadath) [1595086]
-- [infiniband] iw_cxgb4: always set iw_cm_id.provider_data (Arjun Vynipadath) [1595085]
-- [infiniband] iw_cxgb4: Fix an error handling path in 'c4iw_get_dma_mr()' (Arjun Vynipadath) [1595085]
-- [infiniband] iw_cxgb4: Atomically flush per QP HW CQEs (Arjun Vynipadath) [1595085]
-- [infiniband] rdma/cxgb4: release hw resources on device removal (Arjun Vynipadath) [1595085]
-- [netdrv] bnxt_en: adding PCI ID for SMARTNIC VF support (Jonathan Toppins) [1520611]
-- [netdrv] bnxt_en: Add PCIe device ID for bcm58804 (Jonathan Toppins) [1520611]
-- [netdrv] bnxt: Add PCIe device IDs for bcm58802/bcm58808 (Jonathan Toppins) [1520611]
-- [mm] shm_mnt is as longterm as it gets (Aaron Tomlin) [1597314]
-- [block] blk-throttle: check stats_cpu before reading it from sysfs (Ming Lei) [1567748]
-- [block] do not use interruptible wait anywhere (Ming Lei) [1580045]
-- [md] dm thin: remove merge_bvec hooks (Mike Snitzer) [1595898]
-- [md] dm thin: handle running out of data space vs concurrent discard (Mike Snitzer) [1563697]
-- [md] dm thin metadata: remove needless work from __commit_transaction (Mike Snitzer) [1563697]
-- [kernel] ftrace: Fix compilation warning about control_ops_free (Gustavo Duarte) [1597877]
-- [kernel] alarmtimer: Do not signal SIGEV_NONE timers (Oleg Nesterov) [1524333]
-- [x86] kvm: svm: Implement pause loop exit logic in SVM (Gary Hook) [1563718]
-- [x86] kvm: svm: Add pause filter threshold (Gary Hook) [1563718]
-- [x86] kvm: vmx: Bring the common code to header file (Gary Hook) [1563718]
-- [x86] kvm: vmx: Remove ple_window_actual_max (Gary Hook) [1563718]
-- [x86] kvm: vmx: Fix the module parameters for vmx (Gary Hook) [1563718]
-- [s390] qeth: fix IPA command submission race (Hendrik Brueckner) [1594197]
-- [s390] qeth: don't dump control cmd twice (Hendrik Brueckner) [1594197]
-- [s390] qeth: fix SETIP command handling (Hendrik Brueckner) [1594197]
-- [s390] archrandom: Rework arch random implementation (Hendrik Brueckner) [1594181]
-- [s390] archrandom: Reconsider s390 arch random implementation (Hendrik Brueckner) [1594181]
-- [s390] scsi: zfcp: fix missing REC trigger trace on enqueue without ERP thread (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing REC trigger trace for all objects in ERP_FAILED (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing REC trigger trace on terminate_rport_io for ERP_FAILED (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing REC trigger trace on terminate_rport_io early return (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix misleading REC trigger trace where erp_action setup failed (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing SCSI trace for retry of abort / scsi_eh TMF (Hendrik Brueckner) [1594204]
-- [s390] scsi: zfcp: fix missing SCSI trace for result of eh_host_reset_handler (Hendrik Brueckner) [1594204]
-
-* Thu Jul 12 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-920.el7]
-- [tools] objtool, perf: Fix GCC 8 -Wrestrict error (Yauheni Kaliuta) [1593432]
-- [tools] give up on gcc ilog2() constant optimizations (Yauheni Kaliuta) [1593432]
-- [tools] include: Include missing headers for fls() and types in linux/log2.h (Yauheni Kaliuta) [1593432]
-- [tools] lib/subcmd/pager.c: do not alias select() params (Yauheni Kaliuta) [1593432]
-- [scsi] ipr: Format HCAM overlay ID 0x41 (Desnes Augusto Nunes do Rosario) [1591660]
-- [scsi] ipr: new IOASC update (Desnes Augusto Nunes do Rosario) [1591660]
-- [scsi] qla2xxx: Mask off Scope bits in retry delay (Himanshu Madhani) [1588132]
-- [scsi] aacraid: Fix PD performance regression over incorrect qd being set (Raghava Aditya Renukunta) [1595401]
-- [mm] add param that allows bootline control of hardened usercopy (Christoph von Recklinghausen) [1592517]
-- [fs] vfs/proc/kcore, x86/mm/kcore: Fix SMAP fault when dumping vsyscall user page (Christoph von Recklinghausen) [1562140]
-- [char] /dev/mem: Avoid overwriting "err" in read_mem() (Christoph von Recklinghausen) [1562140]
-- [fs] proc/kcore.c: use probe_kernel_read() instead of memcpy() (Christoph von Recklinghausen) [1562140]
-- [char] /dev/mem: Add bounce buffer for copy-out (Christoph von Recklinghausen) [1562140]
-- [fs] proc/kcore.c: Add bounce buffer for ktext data (Christoph von Recklinghausen) [1562140]
-- [fs] proc/kcore.c: Make bounce buffer global for read (Christoph von Recklinghausen) [1562140]
-- [mm] usercopy: Move enum for arch_within_stack_frames() (Christoph von Recklinghausen) [1562140]
-- [mm] usercopy: remove page-spanning test for now (Christoph von Recklinghausen) [1562140]
-- [mm] usercopy: fix overlap check for kernel text (Christoph von Recklinghausen) [1562140]
-- [security] HAVE_ARCH_HARDENED_USERCOPY is unconditional now (Christoph von Recklinghausen) [1562140]
-- [mm] SLUB hardened usercopy support (Christoph von Recklinghausen) [1562140]
-- [mm] SLAB hardened usercopy support (Christoph von Recklinghausen) [1562140]
-- [s390] uaccess: Enable hardened usercopy (Christoph von Recklinghausen) [1562140]
-- [powerpc] uaccess: Enable hardened usercopy (Christoph von Recklinghausen) [1562140]
-- [x86] uaccess: Enable hardened usercopy (Christoph von Recklinghausen) [1562140]
-- [security] Make the hardened user-copy code depend on having a hardened allocator (Christoph von Recklinghausen) [1562140]
-- [security] Grammar (Christoph von Recklinghausen) [1562140]
-- [mm] Hardened usercopy (Christoph von Recklinghausen) [1562140]
-- [x86] mm: Implement stack frame object validation (Christoph von Recklinghausen) [1562140]
-- [kernel] mm: Add is_migrate_cma_page (Christoph von Recklinghausen) [1562140]
-- [mm] slub: support left redzone (Christoph von Recklinghausen) [1562140]
-- [mm] slub: avoid duplicate creation on the first object (Christoph von Recklinghausen) [1562140]
-- [nvdimm] libnvdimm, btt: Fix an incompatibility in the log layout (Jeff Moyer) [1526905]
-- [nvdimm] libnvdimm, btt: add a couple of missing kernel-doc lines (Jeff Moyer) [1526905]
-- [kernel] hrtimer: Allow concurrent hrtimer_start() for self restarting timers (Oleksandr Natalenko) [1574387]
-- [pci] pciehp: Always enable occupied slot on probe (Myron Stowe) [1597948]
-- [firmware] dmi_scan: Always show system identification string (Prarit Bhargava) [1596711]
-- [infiniband] vmw_pvrdma: Release netdev when vmxnet3 module is removed (Neil Horman) [1588358]
-- [netdrv] r8169: fix mac address change (Corinna Vinschen) [1598112]
-- [netdrv] nfp: flower: free dst_entry in route table (Pablo Cascon) [1592928]
-- [netdrv] enic: do not overwrite error code (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: initialize enic->rfs_h.lock in enic_probe (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: fix UDP rss bits (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: set DMA mask to 47 bit (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: drop IP proto check for vxlan tunnel delete (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: fix boolreturn.cocci warnings (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: set IG desc cache flag in open (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: enable rq before updating rq descriptors (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: set UDP rss flag (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: Check if hw supports multi wq with vxlan offload (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: Add vxlan offload support for IPv6 pkts (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: Check inner ip proto for pseudo header csum (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: add wq clean up budget (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: add sw timestamp support (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: Add support for 'ethtool -g/-G' (Govindarajulu Varadarajan) [1532337]
-- [netdrv] enic: reset fetch index (Govindarajulu Varadarajan) [1532337]
-- [x86] perf/x86/intel/uncore: Clean up client IMC uncore (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Expose uncore_pmu_event*() functions (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Support IIO free-running counters on SKX (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Add infrastructure for free running counters (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Add new data structures for free running counters (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Correct fixed counter index check in generic code (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Correct fixed counter index check for NHM (Prarit Bhargava) [1514639]
-- [x86] perf/x86/intel/uncore: Introduce customized event_read() for client IMC uncore (Prarit Bhargava) [1514639]
-- [s390] pci: support multiple IRQ actions per MSI (Hendrik Brueckner) [1532560]
-- [s390] pci: do not report the relative IRQ number (Hendrik Brueckner) [1532560]
-- [s390] pci: avoid an MSI vector number of zero (Hendrik Brueckner) [1532560]
-- [s390] zcrypt: Fix CCA and EP11 CPRB processing failure memory leak (Hendrik Brueckner) [1594180]
-- [s390] qeth: when thread completes, wake up all waiters (Hendrik Brueckner) [1594198]
-- [s390] qeth: free netdevice when removing a card (Hendrik Brueckner) [1596110]
-- [s390] scsi: zfcp: fix infinite iteration on ERP ready list (Hendrik Brueckner) [1594206]
-- [s390] qeth: lock read device while queueing next buffer (Hendrik Brueckner) [1594207]
-- [s390] qdio: don't merge ERROR output buffers (Hendrik Brueckner) [1594208]
-
-* Wed Jul 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-919.el7]
-- [scripts] kbuild: de-duplicate fixdep usage (Yauheni Kaliuta) [1596301]
-- [scripts] kbuild: suppress annoying ... is up to date. message (Yauheni Kaliuta) [1596301]
-- [scripts] kbuild: Fix handling of backslashes in *.cmd files (Yauheni Kaliuta) [1596301]
-- [tools] perf list: Add support for PERF_COUNT_SW_BPF_OUT (Jiri Olsa) [1596329]
-- [fs] atomic_open(): fix the handling of create_error (Robert S Peterson) [1596155]
-- [kernel] handle suicide on late failure exits in execve() in search_binary_handler() (Bhupesh Sharma) [1496408]
-- [kernel] exec: cleanup the CONFIG_MODULES logic (Bhupesh Sharma) [1496408]
-- [fs] exec: kill ->load_binary != NULL check in search_binary_handler() (Bhupesh Sharma) [1496408]
-- [fs] exec: move allow_write_access/fput to exec_binprm() (Bhupesh Sharma) [1496408]
-- [fs] exec: proc_exec_connector() should be called only once (Bhupesh Sharma) [1496408]
-- [fs] exec: kill "int depth" in search_binary_handler() (Bhupesh Sharma) [1496408]
-- [fs] exec: introduce exec_binprm() for "depth == 0" code (Bhupesh Sharma) [1496408]
-- [fs] nfsv4: Fix a typo in nfs41_sequence_process (Steve Dickson) [1596713]
-- [fs] nfsv4: revert commit 5f83d86cf531d ("nfsv4.x: Fix wraparound issues..") (Steve Dickson) [1596713]
-- [fs] fs: don't scan the inode cache before SB_BORN is set (Bill O'Donnell) [1591800]
-- [fs] xfs: clear sb->s_fs_info on mount failure (Bill O'Donnell) [1591800]
-- [fs] xfs: add mount delay debug option (Bill O'Donnell) [1591800]
-- [fs] race of nfsd inetaddr notifiers vs nn->nfsd_serv change ("J. Bruce Fields") [1509323]
-- [fs] nfds: avoid gettimeofday for nfssvc_boot time ("J. Bruce Fields") [1509323]
-- [fs] race of lockd inetaddr notifiers vs nlmsvc_rqst change ("J. Bruce Fields") [1509323]
-- [hid] wacom: Correct logical maximum Y for 2nd-gen Intuos Pro large (Benjamin Tissoires) [1591499]
-- [netdrv] nfp: flower: remove headroom from max MTU calculation (Pablo Cascon) [1566474]
-- [netdrv] nfp: flower: offload phys port MTU change (Pablo Cascon) [1566474]
-- [netdrv] nfp: modify app MTU setting callbacks (Pablo Cascon) [1566474]
-- [netdrv] nfp: flower: set tunnel ttl value to net default (Pablo Cascon) [1586158]
-- [audio] alsa: Remove deprecated snd_card_create() (Jaroslav Kysela) [1591914]
-- [audio] alsa: media: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: mips: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: isa: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: firewire: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: arm: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: au1x00: convert to platform device (Jaroslav Kysela) [1591914]
-- [audio] alsa: parisc: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: pcmcia: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: ppc: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: sh: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: sparc: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: spi: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: hid: prodikeys: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: line6: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: usb: gadget: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [audio] alsa: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1591914]
-- [powerpc] fadump: Do not use hugepages when fadump is active (Gustavo Duarte) [1559113]
-- [powerpc] fadump: exclude memory holes while reserving memory in second kernel (Gustavo Duarte) [1559113]
-- [x86] mce: Save microcode revision in machine check records (Prarit Bhargava) [1568242]
-
-* Mon Jul 02 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-918.el7]
-- [netdrv] mlxsw: spectrum: Forbid creation of VLAN 1 over port/LAG (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Fix an error handling path in 'mlxsw_core_bus_device_register()' (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Do not remove mrouter port from MDB's ports list (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Don't use resource ID of 0 (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Pass mlxsw_core as arg of mlxsw_sp_kvdl_resources_register() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: Move "resources_query_enable" out of mlxsw_config_profile (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: Move "used_kvd_sizes" check to mlxsw_pci_config_profile (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Fix arg name of MLXSW_CORE_RES_VALID and MLXSW_CORE_RES_GET (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: remove kvd_hash_granularity from config profile struct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Change KVD linear parts from list to array (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: Fix handling of resource_size_param (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Fix flex actions header ifndef define construct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Fix initialization of struct mlxsw_sp_span_parms (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Handle MTU change of GRE netdevs (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Move mlxsw_sp_rif_ipip_lb_op() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add support for auto-negotiation disable mode (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Update the supported firmware to version 13.1620.192 (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Do not invalidate already invalid ACL groups (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Adapt ACL configuration to new firmware versions (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Reserved field in mbox profile shouldn't be set (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: pci: Set mbox dma addresses to zero when not used (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_buffers: Set a minimum quota for CPU port traffic (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Don't depend on ip_gre and ip6_gre (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move mlxsw_sp_span_gretap4_route() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Prevent duplicate mirrors (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Fix gact_ok offloading (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Check success of FDB add operation (Ivan Vecera) [1520304]
-- [netdrv] spectrum: Reference count VLAN entries (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Treat IPv6 unregistered multicast as broadcast (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Fix flex keys scratchpad offset conflict (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: prio: Handle graft command (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: prio: Delete child qdiscs when removing bands (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Update sch_prio stats to include sch_red related drops (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Update backlog handling of a child qdiscs (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Collect stats for sch_red based on priomap (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Add priority map per qdisc (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add priority counters (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Support qdisc per tclass (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Support mirror to ip6gretap (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Support mirror to gretap (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: Move a mirroring check to mlxsw_sp_span_entry_create (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: Handle config changes pertinent to SPAN (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Generalize SPAN support (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Keep mirror netdev in mlxsw_sp_span_entry (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Extract mlxsw_sp_span_entry_(de, )configure() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_span: Initialize span_entry.id eagerly (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: span: Remove span_entry by span_id (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Extend mlxsw_reg_mpat_pack() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add SPAN encapsulation to MPAT register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Support decoding IPv6 tunnel addresses (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Extract mlxsw_sp_l3addr_is_zero (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: avoid uninitialized variable warning (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: use div_u64() for 64-bit division (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Allow port enslavement to a VLAN-unaware bridge (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: Add support for per part occupancy (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: Add support for dynamic partition set (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_kvdl: Add support for linear division resources (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Do not unconditionally clear route offload indication (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move SPAN code to separate module (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Drop struct span_entry.used (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Fix a coding style nit (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Distinguish between IPv4/6 tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Add a forgotten include (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Fix error path in mlxsw_sp_vr_create (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: use tc_cls_can_offload_and_chain0() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Don't log an error on missing neighbor (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Remove unnecessary prefix lengths from LPM tree (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Pass FIB node to LPM tree unlink function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Use the nodes list as indication for empty FIB (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Add support for mirror action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Extend mlxsw_afa_ops for counter index and implement for Spectrum (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Extend and export SPAN API (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Add support for mirroring action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Make counter index allocated inside the action append (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Convert fwd_entry_ref list to be generic per-block resource list (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Extend mlxsw_afa_ops for counter index and implement for Spectrum (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Free LPM tree upon failure (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Upper-bound supported FW version (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Pass mlxsw_sp_port down to ruleset bind/unbind ops (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Implement TC block sharing (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Don't store netdev and ingress for ruleset unbind (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Reshuffle code around mlxsw_sp_acl_ruleset_create/destroy (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Make function mlxsw_sp_kvdl_part_occ() static (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Make function mlxsw_sp_qdisc_prio_unoffload static (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: documentation: Add resources ABI documentation (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: core: Add support for reload (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: pci: Add support for getting resource through devlink (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add support for getting kvdl occupancy (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_dpipe: Connect dpipe tables to resources (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Register KVD resources with devlink (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: pci: Add support for performing bus reset (Ivan Vecera) [1520304]
-- [netdrv] sched: red: don't reset the backlog on every stat dump (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Support stats for PRIO qdisc (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Support PRIO qdisc offload (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Configure default routing priority (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: add rdpm register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Add support for IPv6 non-equal-cost multipath (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Remove qdisc before setting a new one (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Create a generic replace function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Create a generic destroy function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Add an ops struct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Unite all handle checks (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Add tclass number to the mlxsw_sp_qdisc (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Make the clean stats function to be for RED only (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Clean qdisc statistics structs (Ivan Vecera) [1520304]
-- [netdrv] sch: red: Change offloaded xstats to be incremental (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: qdiscs: Move qdisc's declarations to its designated file (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Fix typo in firmware upgrade message (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_qdisc: Don't use variable array in mlxsw_sp_tclass_congestion_enable (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: pci: Wait after reset before accessing HW (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Relax sanity checks during enslavement (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Fix NULL pointer deref (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Remove batch neighbour deletion causing FW bug (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Disable MAC learning for ovs port (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: handle NETIF_F_HW_TC changes correctly (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Update nexthop RIF on update (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Handle encap to demoted tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Demote tunnels on VRF migration (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Offload decap only for up tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Do not try to create non-existing ports during unsplit (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Add batch neighbour deletion (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Update minimum firmware version to 13.1530.152 (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support general qdisc stats (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support RED xstats (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Collect tclass related stats periodically (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add ext and tc-cong counter groups (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support RED qdisc offload (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add cwtp & cwtpm registers (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Handle down of tunnel underlay (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Handle underlay device change (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Handle NETDEV_CHANGE on L3 tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support IPIP underlay VRF migration (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Onload conflicting tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Fix saddr deduction in mlxsw_sp_ipip_entry_create() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Generalize __mlxsw_sp_ipip_entry_update_tunnel() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Extract __mlxsw_sp_ipip_entry_update_tunnel() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Propagate extack for tunnel events (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_ipip_entry_ol_up_event() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Make mlxsw_sp_netdevice_ipip_ol_up_event() void (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_ipip_entry_ol_down_event() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_ipip: Split accessor functions (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move mlxsw_sp_ipip_netdev_(s, d)addr(, 4)() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_netdevice_ipip_can_offload() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Rename IPIP-related netdevice handlers (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Update multipath hash parameters upon netevents (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Align multipath hash parameters with kernel's (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add Router ECMP Configuration Register Version 2 (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Properly name netevent work struct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Embed netevent notifier block in router struct (Ivan Vecera) [1520304]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: i2c: Fix buffer increment counter for write transaction (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add high and low temperature thresholds (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Return extack message on abort due to fib rules (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Avoid magic number in PPCNT (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Change stats cache to be local (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr_tcam: Include the mr_tcam header file (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr: Make the function mlxsw_sp_mr_dev_vif_lookup static (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr: Fix various endianness issues (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add another partition to KVD linear (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Increase number of linear entries (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Populate adjacency entries according to weights (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Prepare for large adjacency groups (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Store weight in nexthop struct (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add ability to query KVDL allocation size (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Better represent KVDL partitions (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_dpipe: Add adjacency group size (Ivan Vecera) [1520304]
-- [netdrv] spectrum: Convert fib event handlers to use container_of on info arg (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Drop refcounting of IPIP entries (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support IPIP overlay VRF migration (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Support decap-only IP-in-IP tunnels (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Move mlxsw_sp_netdev_ipip_type() (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move netdevice NB to struct mlxsw_sp (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Support bridge mrouter notifications (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Add support for router port in SMID entries (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: router: Export the mlxsw_sp_router_port function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Propagate extack further for bridge enslavements (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add extack for VLAN enslavements (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add extack messages for enslave failures (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add missing error code on allocation failure (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Fix check for IS_ERR() instead of NULL (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr: Support trap-and-forward routes (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: mr_tcam: Add trap-and-forward multicast route (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add trap for multicast trap-and-forward routes (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: acl: Introduce ACL trap and forward action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Drop a redundant condition (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Fix a typo (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: fix uninitialized value in err (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: router: Don't ignore IPMR notifications (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Notify multicast router on RIF MTU changes (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Add multicast routes notification handling functionality (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: router: Squash the default route table to main (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add the multicast routing hardware logic (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add the multicast routing offloading logic (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_flower: Offload "ok" termination action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_acl: Propagate errors from mlxsw_afa_block_jump/continue (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Consider mrouter status for mdb changes (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Remove mrouter flood in mdb flush (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Update the mdb of mrouter port change (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Flood all mc packets to mrouter ports (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Flush the mdb when a port is being removed (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Flood mc when mc is disabled by user flag (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Use generic mc flood function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Disable mdb when mc is disabled (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Don't write mids to the HW when mc is disabled (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Break mid deletion into two function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Attach mid id allocation to HW write (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Break smid write function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Save mids list per bridge device (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Remove reference count from mid (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Add a ports bitmap to the mid db (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_switchdev: Change mc_router to mrouter (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Add multicast router traps and trap groups (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum_router: Export RIF dev access function (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Configure RIF to forward IPv4 multicast packets by default (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add Router Rules Copy Register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add the Router Multicast Forwarding Table Version 2 register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: resources: Add multicast ERIF list entries resource (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add the Router Interface Group Version 2 register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Add The Router TCAM Allocation register (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: reg: Rename the flexible action set length field (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: acl: Change trap ACL action to get the trap_id as a parameter (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: acl: Introduce mcrouter ACL action (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Move ACL flexible actions instance to spectrum (Ivan Vecera) [1520304]
-- [netdrv] mlxsw: spectrum: Change init order (Ivan Vecera) [1520304]
-- [net] sched: prio: Delete child qdiscs when removing bands (Ivan Vecera) [1585281]
-- [net] sched: prio: Add offload ability for grafting a child (Ivan Vecera) [1585281]
-- [net] sched: Don't warn on missmatching qlen and backlog for offloaded qdiscs (Ivan Vecera) [1585281]
-- [net] netfilter: nf_tables: reject hook configuration updates on existing chains (Ravi Aysola) [1373102]
-- [net] netfilter: nf_tables: introduce nft_chain_parse_hook() (Ravi Aysola) [1373102]
-- [net] ip_tunnel: restore binding to ifaces with a large mtu (Ivan Vecera) [1585284]
-- [net] ip_tunnel: Emit events for post-register MTU changes (Ivan Vecera) [1585284]
-- [net] ipv4: lock mtu in fnhe when received PMTU < net.ipv4.route.min_pmtu (Sabrina Dubroca) [1508392]
-- [net] route: Refactor rtable initialization (Sabrina Dubroca) [1508392]
-- [net] route: remove unsed variable in __mkroute_input (Sabrina Dubroca) [1508392]
-- [net] ipmr: properly check rhltable_init() return value (Ivan Vecera) [1584232]
-- [net] ipv4: ipmr: Don't forward packets already forwarded by hardware (Ivan Vecera) [1584232]
-- [net] ipv4: ipmr: Add the parent ID field to VIF struct (Ivan Vecera) [1584232]
-- [net] skbuff: Add the offload_mr_fwd_mark field (Ivan Vecera) [1584232]
-- [net] mroute: Check if rule is a default rule (Ivan Vecera) [1584232]
-- [net] ipmr: Add MFC offload indication (Ivan Vecera) [1584232]
-- [net] ipmr: Send FIB notifications on MFC and VIF entries (Ivan Vecera) [1584232]
-- [net] ipmr: Add FIB notification access functions (Ivan Vecera) [1584232]
-- [net] ipmr: Add reference count to MFC entries (Ivan Vecera) [1584232]
-- [net] fib: notifier: Add VIF add and delete event types (Ivan Vecera) [1584232]
-- [net] ipmr: improve hash scalability (Ivan Vecera) [1584232]
-- [net] ipmr, ip6mr: fix scheduling while atomic and a deadlock with ipmr_get_route (Ivan Vecera) [1584232]
-- [net] ipmr, ip6mr: return lastuse relative to now (Ivan Vecera) [1584232]
-- [net] net: ipmr/ip6mr: update lastuse on entry change (Ivan Vecera) [1584232]
-- [net] net: ipmr/ip6mr: add support for keeping an entry age (Ivan Vecera) [1584232]
-- [net] ipmr/ip6mr: Initialize the last assert time of mfc entries (Ivan Vecera) [1584232]
-- [net] ipmr: add mfc newroute/delroute netlink support (Ivan Vecera) [1584232]
-- [net] ipmr: fix setsockopt error return (Ivan Vecera) [1584232]
-- [net] ipmr: move pimsm_enabled to pim.h and rename (Ivan Vecera) [1584232]
-- [net] ipmr: move struct mr_table and VIF_EXISTS to mroute.h (Ivan Vecera) [1584232]
-- [net] ipmr: adjust mroute.h style and drop extern (Ivan Vecera) [1584232]
-- [net] ipmr: remove unused MFC_NOTIFY flag and make the flags enum (Ivan Vecera) [1584232]
-- [net] remove unnecessary mroute.h includes (Ivan Vecera) [1584232]
-- [net] ipmr, ip6mr: fix vif/tunnel failure race condition (Ivan Vecera) [1584232]
-- [net] ipmr: factor out common vif init code (Ivan Vecera) [1584232]
-- [net] ipmr: rearrange and cleanup setsockopt (Ivan Vecera) [1584232]
-- [net] ipmr: drop ip_mr_init() mrt_cachep null check as we'll panic if it fails (Ivan Vecera) [1584232]
-- [net] ipmr: drop an instance of CONFIG_IP_MROUTE_MULTIPLE_TABLES (Ivan Vecera) [1584232]
-- [net] ipmr: make ip_mroute_getsockopt more understandable (Ivan Vecera) [1584232]
-- [net] ipmr: fix code and comment style (Ivan Vecera) [1584232]
-- [net] ipmr: remove some pimsm ifdefs and simplify (Ivan Vecera) [1584232]
-- [net] ipmr: always define mroute_reg_vif_num (Ivan Vecera) [1584232]
-- [net] ipmr: move the tbl id check in ipmr_new_table (Ivan Vecera) [1584232]
-- [net] ipmr: fix static mfc/dev leaks on table destruction (Ivan Vecera) [1584232]
-- [net] ipmr: fix possible race resulting from improper usage of IP_INC_STATS_BH() in preemptible context (Ivan Vecera) [1584232]
-- [net] ipv4: Only compute net once in ipmr_forward_finish (Ivan Vecera) [1584232]
-- [net] ipv4: Don't recompute net in ipmr_queue_xmit (Ivan Vecera) [1584232]
-- [net] ipmr, ip6mr: call ip6mr_free_table() on failure path (Ivan Vecera) [1584232]
-- [net] ipmr: Replace comma with semicolon (Ivan Vecera) [1584232]
-- [net] ipmr: fix mfc notification flags (Ivan Vecera) [1584232]
-- [net] ipmr: change the prototype of ip_mr_forward() (Ivan Vecera) [1584232]
-- [netdrv] tun: send netlink notification when the device is modified (Ravi Aysola) [1277457]
-- [netdrv] tun: set the flags before registering the netdevice (Ravi Aysola) [1277457]
-- [netdrv] tun: export flags, uid, gid, queue information over netlink (Ravi Aysola) [1277457]
-
-* Mon Jul 02 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-917.el7]
-- [hwmon] (core) Order include files alphabetically (David Arcari) [1593277]
-- [hwmon] (core) Add basic pwm attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add fan attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add energy and humidity attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add power attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add current attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) Add voltage attribute support to new API (David Arcari) [1593277]
-- [hwmon] (core) New hwmon registration API (David Arcari) [1593277]
-- [infiniband] rdma/cma: Do not query GID during QP state transition to RTR (Don Dutile) [1593879]
-- [infiniband] ib/core: Make ib_mad_client_id atomic (Don Dutile) [1593879]
-- [infiniband] ib/rxe: avoid double kfree_skb (Don Dutile) [1593879]
-- [infiniband] ib/rxe: add RXE_START_MASK for rxe_opcode IB_OPCODE_RC_SEND_ONLY_INV (Don Dutile) [1593879]
-- [infiniband] ib/core: Honor port_num while resolving GID for IB link layer (Don Dutile) [1593879]
-- [infiniband] ib/umem: Use the correct mm during ib_umem_release (Don Dutile) [1593879]
-- [infiniband] rdma/ucma: Allow resolving address w/o specifying source address (Don Dutile) [1593879]
-- [infiniband] rdma/core: Avoid that ib_drain_qp() triggers an out-of-bounds stack access (Don Dutile) [1593879]
-- [infiniband] rdma/ucma: Don't allow setting RDMA_OPTION_IB_PATH without an RDMA device (Don Dutile) [1593879]
-- [net] xprtrdma: Fix list corruption / DMAR errors during MR recovery (Don Dutile) [1593879]
-- [net] xprtrdma: Fix corner cases when handling device removal (Don Dutile) [1593879]
-- [infiniband] ib/core: Fix error code for invalid GID entry (Don Dutile) [1593879]
-- [infiniband] rdma/iwpm: fix memory leak on map_info (Don Dutile) [1593879]
-- [infiniband] ib/ipoib: fix ipoib_start_xmit()'s return type (Don Dutile) [1593879]
-- [infiniband] ib/nes: fix nes_netdev_start_xmit()'s return type (Don Dutile) [1593879]
-- [infiniband] rdma/cma: Fix use after destroy access to net namespace for IPoIB (Don Dutile) [1593879]
-- [infiniband] ib/uverbs: Fix validating mandatory attributes (Don Dutile) [1593879]
-- [infiniband] ib/rxe: Fix for oops in rxe_register_device on ppc64le arch (Don Dutile) [1593879]
-- [rdma] ib/core: Fix comments of GID query functions (Don Dutile) [1593879]
-- [infiniband] ib/srp: Fix IPv6 address parsing (Don Dutile) [1593879]
-- [infiniband] ib/srpt: Fix an out-of-bounds stack access in srpt_zerolength_write() (Don Dutile) [1593879]
-- [infiniband] rdma/rxe: Fix an out-of-bounds read (Don Dutile) [1593879]
-- [infiniband] ib/srp: Fix srp_abort() (Don Dutile) [1593879]
-- [infiniband] ib/srp: Fix completion vector assignment algorithm (Don Dutile) [1593879]
-- [edac] amd64_edac: Fix reporting of Chip Select sizes on Fam17h (Charles Rose) [1592978]
-- [iommu] vt-d: Don't print the failure message when booting non-kdump kernel (Baoquan He) [1489397]
-- [mmc] Adding cmd_type REQ_TYPE_DRV_PRIV to mmc code path (Gopal Tiwari) [1456570]
-- [scsi] Revert 2nd application of "Fix a memory leak in scsi_host_dev_release()" (Prarit Bhargava) [1595049]
-- [block] blk-mq: reinit q->tag_set_list entry only after grace period (Ming Lei) [1584534]
-- [block] blk-mq: avoid starving tag allocation after allocating process migrates (Ming Lei) [1581220]
-- [block] blk-mq: update nr_requests when switching to 'none' scheduler (Ming Lei) [1585526]
-- [block] blk-mq: fix nr_requests wrong value when modify it from sysfs (Ming Lei) [1548251]
-- [kernel] cgroup: kill css_id (Aristeu Rozanski) [1470325]
-- [mm] memcontrol: fix cgroup creation failure after many small jobs (Aristeu Rozanski) [1470325]
-- [kernel] tracing/uprobes: Move argument fetching to uprobe_dispatcher() (Jiri Olsa) [1434115]
-- [kernel] tracing/uprobes: Rename uprobe_(trace, perf)_print() functions (Jiri Olsa) [1434115]
-- [kernel] tracing/uprobes: Fetch args before reserving a ring buffer (Jiri Olsa) [1434115]
-- [kernel] tracing/probes: Integrate duplicate set_print_fmt() (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Move common functions to trace_probe.h (Jiri Olsa) [1434115]
-- [kernel] tracing/uprobes: Convert to struct trace_probe (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Factor out struct trace_probe (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Remove unnecessary checking of trace_probe_is_enabled (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Turn trace_probe->files into list_head (Jiri Olsa) [1434115]
-- [kernel] tracing/kprobes: Kill probe_enable_lock (Jiri Olsa) [1434115]
-- [x86] mce: Check for alternate indication of machine check recovery on Skylake (Prarit Bhargava) [1588918]
-
-* Wed Jun 27 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-916.el7]
-- [tools] perf bench: Fix numa report output code (Jiri Olsa) [1533988]
-- [perf] core: Fix use-after-free in uprobe_perf_close() (Oleg Nesterov) [1567950]
-- [char] ipmi:ssif: Check dev before setting drvdata (Vitaly Kuznetsov) [1581620]
-- [pci] Revert location change of pci_(read, write)_config_(byte, word, dword) routines (Myron Stowe) [1591044]
-- [scsi] csiostor: Add a soft dep on cxgb4 driver (Arjun Vynipadath) [1584003]
-- [scsi] storvsc: Avoid allocating memory for temp cpumasks (Cathy Avery) [1588454]
-- [gpu] drm/nouveau/kms/nv50-: cursors always use core channel vram ctxdma (Lyude Paul) [1591026]
-- [gpu] drm/amdgpu: Count disabled CRTCs in commit tail earlier (Lyude Paul) [1583854]
-- [gpu] drm/amdgpu: Grab/put runtime PM references in atomic_commit_tail() (Lyude Paul) [1583854]
-- [netdrv] nfp: flower: split and limit cmsg skb lists (Pablo Cascon) [1574532]
-- [netdrv] nfp: flower: move route ack control messages out of the workqueue (Pablo Cascon) [1574532]
-- [mm] mempolicy: fix use after free when calling get_mempolicy (Augusto Caringi) [1576755] {CVE-2018-10675}
-- [kernel] locking: Introduce smp_mb__after_spinlock() (Waiman Long) [1496574]
-- [kernel] bpf: Set default value for bpf_jit_harden (Jiri Olsa) [1569058]
-- [x86] kvm: Update cpuid properly when CR4.OSXAVE or CR4.PKE is changed (Wei Huang) [1447267]
-
-* Fri Jun 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-915.el7]
-- [infiniband] i40iw: Use correct address in dst_neigh_lookup for IPv6 (Stefan Assmann) [1592574]
-- [netdrv] qede: Fix ref-cnt usage count (Chad Dupuis) [1574847]
-- [netdrv] r8169: fix setting driver_data after register_netdev (Corinna Vinschen) [1540595]
-- [netdrv] r8169: add helper tp_to_dev (Corinna Vinschen) [1540595]
-- [netdrv] r8169: change type of argument in rtl_disable/enable_clock_request (Corinna Vinschen) [1540595]
-- [netdrv] r8169: change type of first argument in rtl_tx_performance_tweak (Corinna Vinschen) [1540595]
-- [netdrv] r8169: simplify rtl_set_mac_address (Corinna Vinschen) [1540595]
-- [netdrv] r8169: switch to device-managed functions in probe (part 2) (Corinna Vinschen) [1540595]
-- [netdrv] r8169: Dereference MMIO address immediately before use (Corinna Vinschen) [1540595]
-- [netdrv] r8169: fix interrupt number after adding support for MSI-X interrupts (Corinna Vinschen) [1540595]
-- [netdrv] r8169: convert remaining feature flag and remove enum features (Corinna Vinschen) [1540595]
-- [netdrv] r8169: improve interrupt handling (Corinna Vinschen) [1540595]
-- [netdrv] r8169: simplify and improve check for dash (Corinna Vinschen) [1540595]
-- [netdrv] r8169: disable WOL per default (Corinna Vinschen) [1540595]
-- [netdrv] r8169: remove not needed PHY soft reset in rtl8168e_2_hw_phy_config (Corinna Vinschen) [1540595]
-- [netdrv] r8169: remove some WOL-related dead code (Corinna Vinschen) [1540595]
-- [netdrv] r8169: fix RTL8168EP take too long to complete driver initialization (Corinna Vinschen) [1540595]
-- [netdrv] r8169: fix memory corruption on retrieval of hardware statistics (Corinna Vinschen) [1540595]
-- [netdrv] r8169: improve runtime pm in general and suspend unused ports (Corinna Vinschen) [1540595]
-- [netdrv] r8169: improve runtime pm in rtl8169_check_link_status (Corinna Vinschen) [1540595]
-- [netdrv] r8169: remove unneeded rpm ops in rtl_shutdown (Corinna Vinschen) [1540595]
-- [netdrv] r8169: remove netif_napi_del in probe error path (Corinna Vinschen) [1540595]
-- [netdrv] r8169: switch to device-managed functions in probe (Corinna Vinschen) [1540595]
-- [netdrv] realtek: r8169: implement set_link_ksettings() (Corinna Vinschen) [1540595]
-- [netdrv] r8169: use same RTL8111EVL green settings as in vendor driver (Corinna Vinschen) [1540595]
-- [netdrv] r8169: fix RTL8111EVL EEE and green settings (Corinna Vinschen) [1540595]
-- [netdrv] realtek: r8169: remove redundant assignment to giga_ctrl (Corinna Vinschen) [1540595]
-- [netdrv] r8169: Add support for interrupt coalesce tuning (ethtool -C) (Corinna Vinschen) [1540595]
-- [netdrv] realtek: Convert timers to use timer_setup() (Corinna Vinschen) [1540595]
-- [netdrv] r8169: only enable PCI wakeups when WOL is active (Corinna Vinschen) [1540595]
-- [netdrv] r8169: Be drop monitor friendly (Corinna Vinschen) [1540595]
-- [netdrv] r8169: Do not increment tx_dropped in TX ring cleaning (Corinna Vinschen) [1540595]
-- [netdrv] r8169: replace init_timer with setup_timer (Corinna Vinschen) [1540595]
-- [netdrv] mii, smsc: Make mii_ethtool_get_link_ksettings and smc_netdev_get_ecmd return void (Corinna Vinschen) [1540595]
-- [netdrv] realtek: r8169: use new api ethtool_get|set_link_ksettings (Corinna Vinschen) [1540595]
-- [netdrv] generalize napi_complete_done() (Corinna Vinschen) [1540595]
-- [netdrv] i40evf: Fix a hardware reset support in VF driver (Stefan Assmann) [1518089]
-- [netdrv] i40evf: remove MAX_QUEUES and just use I40EVF_MAX_REQ_QUEUES (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Fix client header define (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Fix turning TSO, GSO and GRO on after (Stefan Assmann) [1518089]
-- [netdrv] i40e: fix reading LLDP configuration (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: cleanup incorrect function doxygen comments (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Replace GFP_ATOMIC with GFP_KERNEL in i40evf_add_vlan (Stefan Assmann) [1518089]
-- [netdrv] intel: Cleanup the copyright/license headers (Stefan Assmann) [1518089]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Stefan Assmann) [1518089]
-- [netdrv] i40evf: remove flags that are never used (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Reorder configure_clsflower to avoid deadlock on error (Stefan Assmann) [1518089]
-- [netdrv] i40evf/i40evf_main: Fix variable assignment in i40evf_parse_cls_flower (Stefan Assmann) [1518089]
-- [netdrv] i40evf: remove redundant array comparisons to 0 checks (Stefan Assmann) [1518089]
-- [netdrv] i40evf: pass struct virtchnl_filter by reference rather than by value (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: use SW variables for hang detection (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Fix double locking the same resource (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Add support to apply cloud filters (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Add support to configure bw via tc tool (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Alloc queues for ADq on VF (Stefan Assmann) [1518089]
-- [netdrv] i40evf: add ndo_setup_tc callback to i40evf (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Fix link up issue when queues are disabled (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Make VF reset warning message more clear (Stefan Assmann) [1518089]
-- [netdrv] i40evf: use __dev_(um)c_sync routines in set_rx_mode (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Use an iterator of the same type as the list (Stefan Assmann) [1518089]
-- [netdrv] i40evf: use GFP_ATOMIC under spin lock (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Add support for new mechanism of updating adaptive ITR (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Split container ITR into current_itr and target_itr (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Correctly populate rxitr_idx and txitr_idx (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Use usec value instead of reg value for ITR defines (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Don't bother setting the CLEARPBA bit (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Clean-up of bits related to using q_vector->reg_idx (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Clean up logic for adaptive ITR (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Only track one ITR setting per ring instead of Tx/Rx (Stefan Assmann) [1518089]
-- [netdrv] i40e: fix typo in function description (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Update DESC_NEEDED value to reflect larger value (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Record ITR register location in the q_vector (Stefan Assmann) [1518089]
-- [netdrv] i40e: cleanup unnecessary parens (Stefan Assmann) [1518089]
-- [netdrv] i40e: Display LLDP information on vSphere Web Client (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Use ring pointers to clean up _set_itr_per_queue (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Allow turning off offloads when the VF has VLAN set (Stefan Assmann) [1518089]
-- [netdrv] i40e: Add returning AQ critical error to SW (Stefan Assmann) [1518089]
-- [netdrv] i40evf: ignore link up if not running (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Detect and recover hung queue scenario (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Don't schedule reset_task when device is being removed (Stefan Assmann) [1518089]
-- [netdrv] i40evf: remove flush_scheduled_work call in i40evf_remove (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Enable NVMUpdate to retrieve AdminQ and add preservation flags for NVM update (Stefan Assmann) [1518089]
-- [netdrv] i40e: track id can be 0 (Stefan Assmann) [1518089]
-- [netdrv] i40e: change ppp name to ddp (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Drop i40evf_fire_sw_int as it is prone to races (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Clean-up flags for promisc mode to avoid high polling rate (Stefan Assmann) [1518089]
-- [netdrv] i40evf: Do not clear MSI-X PBA manually (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Bump driver versions (Stefan Assmann) [1518089]
-- [netdrv] i40evf: hold the critical task bit lock while opening (Stefan Assmann) [1518089]
-- [netdrv] i40evf: release bit locks in reverse order (Stefan Assmann) [1518089]
-- [netdrv] i40evf: use spinlock to protect (mac|vlan)_filter_list (Stefan Assmann) [1518089]
-- [netdrv] i40evf: don't rely on netif_running() outside rtnl_lock() (Stefan Assmann) [1518089]
-- [netdrv] i40e/i40evf: Account for frags split over multiple descriptors in check linearize (Stefan Assmann) [1518089]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Stefan Assmann) [1518089]
-- [netdrv] i40e: Enable cloud filters via tc-flower (Stefan Assmann) [1518089]
-- [netdrv] i40e: Admin queue definitions for cloud filters (Stefan Assmann) [1518089]
-- [netdrv] i40e: Add new PHY types for 25G AOC and ACC support (Stefan Assmann) [1518089]
-- [netdrv] i40e: use the more traditional 'i' loop variable (Stefan Assmann) [1518088]
-- [netdrv] i40e: add function doc headers for ethtool stats functions (Stefan Assmann) [1518088]
-- [netdrv] i40e: update data pointer directly when copying to the buffer (Stefan Assmann) [1518088]
-- [netdrv] i40e: fold prefix strings directly into stat names (Stefan Assmann) [1518088]
-- [netdrv] i40e: use WARN_ONCE to replace the commented BUG_ON size check (Stefan Assmann) [1518088]
-- [netdrv] i40e: split i40e_get_strings() into smaller functions (Stefan Assmann) [1518088]
-- [netdrv] i40e: always return all queue stat strings (Stefan Assmann) [1518088]
-- [netdrv] i40e: always return VEB stat strings (Stefan Assmann) [1518088]
-- [netdrv] i40e: free skb after clearing lock in ptp_stop (Stefan Assmann) [1518088]
-- [netdrv] i40e: separate hw_features from runtime changing flags (Stefan Assmann) [1518088]
-- [netdrv] i40evf: Fix a hardware reset support in VF driver (Stefan Assmann) [1518088]
-- [netdrv] i40e: free the skb after clearing the bitlock (Stefan Assmann) [1518088]
-- [netdrv] i40e: cleanup wording in a header comment (Stefan Assmann) [1518088]
-- [netdrv] i40e: add tx_busy to ethtool stats (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix recalculation of MSI-X vectors for VMDq (Stefan Assmann) [1518088]
-- [netdrv] i40e: cleanup whitespace for some ethtool stat definitions (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove duplicate pfc stats (Stefan Assmann) [1518088]
-- [netdrv] i40e: calculate ethtool stats size in a separate function (Stefan Assmann) [1518088]
-- [netdrv] i40e: use pI4b instead of byte swapping before dev_err (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: take into account queue map from vf when handling queues (Stefan Assmann) [1518088]
-- [netdrv] i40e: avoid overflow in i40e_ptp_adjfreq() (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix multiple issues with UDP tunnel offload filter configuration (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add advertising 10G LR mode (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix reading LLDP configuration (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: cleanup incorrect function doxygen comments (Stefan Assmann) [1518088]
-- [netdrv] intel: Cleanup the copyright/license headers (Stefan Assmann) [1518088]
-- [netdrv] xdp: transition into using xdp_frame for ndo_xdp_xmit (Stefan Assmann) [1518088]
-- [netdrv] xdp: transition into using xdp_frame for return API (Stefan Assmann) [1518088]
-- [netdrv] i40e: add support for XDP_REDIRECT (Stefan Assmann) [1518088]
-- [netdrv] i40e: tweak page counting for XDP_REDIRECT (Stefan Assmann) [1518088]
-- [netdrv] i40e: convert to use generic xdp_frame and xdp_return_frame API (Stefan Assmann) [1518088]
-- [netdrv] i40e: re-number feature flags to remove gaps (Stefan Assmann) [1518088]
-- [netdrv] i40e: stop using cmpxchg flow in i40e_set_priv_flags() (Stefan Assmann) [1518088]
-- [netdrv] i40e: hold the RTNL lock while changing interrupt schemes (Stefan Assmann) [1518088]
-- [netdrv] i40e: move client flags into state bits (Stefan Assmann) [1518088]
-- [netdrv] i40e: move I40E_FLAG_TEMP_LINK_POLLING to state field (Stefan Assmann) [1518088]
-- [netdrv] i40e: move AUTO_DISABLED flags into the state field (Stefan Assmann) [1518088]
-- [netdrv] i40e: move I40E_FLAG_UDP_FILTER_SYNC to the state field (Stefan Assmann) [1518088]
-- [netdrv] i40e: move I40E_FLAG_FILTER_SYNC to a state bit (Stefan Assmann) [1518088]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix the polling mechanism of GLGEN_RSTAT.DEVSTATE (Stefan Assmann) [1518088]
-- [netdrv] i40e: Prevent setting link speed on I40E_DEV_ID_25G_B (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix incorrect return types (Stefan Assmann) [1518088]
-- [netdrv] i40e: add doxygen comment for new mode parameter (Stefan Assmann) [1518088]
-- [netdrv] i40e: Prevent setting link speed on KX_X722 (Stefan Assmann) [1518088]
-- [netdrv] i40e: Properly check allowed advertisement capabilities (Stefan Assmann) [1518088]
-- [netdrv] i40e: restore TCPv4 input set when re-enabling ATR (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix for wrong partition id calculation on OCP mezz cards (Stefan Assmann) [1518088]
-- [netdrv] i40e: factor out re-enable functions for ATR and SB (Stefan Assmann) [1518088]
-- [netdrv] i40e: track filter type statistics when deleting invalid filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix permission check for VF MAC filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: Cleanup i40e_vlan_rx_register (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove i40e_fcoe files (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove some stray indenting (Stefan Assmann) [1518088]
-- [netdrv] i40e: check that pointer VSI is not null before dereferencing it (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: use SW variables for hang detection (Stefan Assmann) [1518088]
-- [netdrv] i40e: link_down_on_close private flag support (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add and delete cloud filter (Stefan Assmann) [1518088]
-- [netdrv] i40e: Service request to configure bandwidth for ADq on a VF (Stefan Assmann) [1518088]
-- [netdrv] i40e: Delete queue channel for ADq on VF (Stefan Assmann) [1518088]
-- [netdrv] i40e: Enable ADq and create queue channel/s on VF (Stefan Assmann) [1518088]
-- [netdrv] i40e: i40e: Change ethtool check from MAC to HW flag (Stefan Assmann) [1518088]
-- [netdrv] i40e: do not force filter failure in overflow promiscuous (Stefan Assmann) [1518088]
-- [netdrv] i40e: refactor promisc_changed in i40e_sync_vsi_filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: broadcast filters can trigger overflow promiscuous (Stefan Assmann) [1518088]
-- [netdrv] i40e: don't leak memory addresses (Stefan Assmann) [1518088]
-- [netdrv] i40e: Make local function i40e_get_link_speed static (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Add support for new mechanism of updating adaptive ITR (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Split container ITR into current_itr and target_itr (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Use usec value instead of reg value for ITR defines (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Don't bother setting the CLEARPBA bit (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Clean-up of bits related to using q_vector->reg_idx (Stefan Assmann) [1518088]
-- [netdrv] i40e: use changed_flags to check I40E_FLAG_DISABLE_FW_LLDP (Stefan Assmann) [1518088]
-- [netdrv] i40e: Warn when setting link-down-on-close while in MFP (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add delay after EMP reset for firmware to recover (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Clean up logic for adaptive ITR (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Only track one ITR setting per ring instead of Tx/Rx (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix typo in function description (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix the number of queues available to be mapped for use (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Update DESC_NEEDED value to reflect larger value (Stefan Assmann) [1518088]
-- [netdrv] i40e: Do not allow use more TC queue pairs than MSI-X vectors exist (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Record ITR register location in the q_vector (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix reported mask for ntuple filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: disallow programming multiple filters with same criteria (Stefan Assmann) [1518088]
-- [netdrv] i40e: program fragmented IPv4 filter input set (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix kdump failure (Stefan Assmann) [1518088]
-- [netdrv] i40e: cleanup unnecessary parens (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix FW_LLDP flag on init (Stefan Assmann) [1518088]
-- [netdrv] i40e: Implement an ethtool private flag to stop LLDP in FW (Stefan Assmann) [1518088]
-- [netdrv] i40e: change flags to use 64 bits (Stefan Assmann) [1518088]
-- [netdrv] i40e: Display LLDP information on vSphere Web Client (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Use ring pointers to clean up _set_itr_per_queue (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix for adding multiple ethtool filters on the same location (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add returning AQ critical error to SW (Stefan Assmann) [1518088]
-- [netdrv] i40e: use tc_cls_can_offload_and_chain0() (Stefan Assmann) [1518088]
-- [netdrv] i40e: flower: check if TC offload is enabled on a netdev (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix channel addition in reset flow (Stefan Assmann) [1518088]
-- [netdrv] i40e: Delete an error message for a failed memory allocation in i40e_init_interrupt_scheme() (Stefan Assmann) [1518088]
-- [netdrv] i40e: Disable iWARP VSI PETCP_ENA flag on netdev down events (Stefan Assmann) [1518088]
-- [netdrv] i40e: simplify pointer dereferences (Stefan Assmann) [1518088]
-- [netdrv] i40e: check for invalid DCB config (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Detect and recover hung queue scenario (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix for blinking activity instead of link LEDs (Stefan Assmann) [1518088]
-- [netdrv] i40e: avoid divide by zero (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Enable NVMUpdate to retrieve AdminQ and add preservation flags for NVM update (Stefan Assmann) [1518088]
-- [netdrv] i40e: track id can be 0 (Stefan Assmann) [1518088]
-- [netdrv] i40e: change ppp name to ddp (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove redundant initialization of read_size (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Bump driver versions (Stefan Assmann) [1518088]
-- [netdrv] i40e: add helper conversion function for link_speed (Stefan Assmann) [1518088]
-- [netdrv] i40e: update VFs of link state after GET_VF_RESOURCES (Stefan Assmann) [1518088]
-- [netdrv] i40e: display priority_xon and priority_xoff stats (Stefan Assmann) [1518088]
-- [netdrv] i40e: flower: Fix return value for unsupported offload (Stefan Assmann) [1518088]
-- [netdrv] i40e/i40evf: Account for frags split over multiple descriptors in check linearize (Stefan Assmann) [1518088]
-- [netdrv] i40e: Remove UDP support for big buffer (Stefan Assmann) [1518088]
-- [netdrv] i40e: setup xdp_rxq_info (Stefan Assmann) [1518088]
-- [netdrv] i40e: Fix reporting incorrect error codes (Stefan Assmann) [1518088]
-- [netdrv] i40e/virtchnl: fix application of sizeof to pointer (Stefan Assmann) [1518088]
-- [netdrv] i40e: Remove limit of 64 max queues per channel (Stefan Assmann) [1518088]
-- [netdrv] i40e: Enable cloud filters via tc-flower (Stefan Assmann) [1518088]
-- [netdrv] i40e: Clean up of cloud filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: Admin queue definitions for cloud filters (Stefan Assmann) [1518088]
-- [netdrv] i40e: Cloud filter mode for set_switch_config command (Stefan Assmann) [1518088]
-- [netdrv] i40e: Map TCs with the VSI seids (Stefan Assmann) [1518088]
-- [netdrv] i40e: mark PM functions as __maybe_unused (Stefan Assmann) [1518088]
-- [netdrv] intel: Convert timers to use timer_setup() (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix u64 division usage (Stefan Assmann) [1518088]
-- [netdrv] i40e: convert i40e_set_link_ksettings to new API (Stefan Assmann) [1518088]
-- [netdrv] i40e: rename 'change' variable to 'autoneg_changed' (Stefan Assmann) [1518088]
-- [netdrv] i40e: convert i40e_get_settings_link_up to new API (Stefan Assmann) [1518088]
-- [netdrv] i40e: convert i40e_phy_type_to_ethtool to new API (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add new PHY types for 25G AOC and ACC support (Stefan Assmann) [1518088]
-- [netdrv] i40e: group autoneg PHY types together (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix whitespace issues in i40e_ethtool.c (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix comment typo (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix i40e_phy_type_to_ethtool function header (Stefan Assmann) [1518088]
-- [netdrv] i40e: fix clearing link masks in i40e_get_link_ksettings (Stefan Assmann) [1518088]
-- [netdrv] i40e: add function header for i40e_get_rxfh (Stefan Assmann) [1518088]
-- [netdrv] i40e: remove ifdef SPEED_25000 (Stefan Assmann) [1518088]
-- [netdrv] i40e: rename 'cmd' variables in ethtool interface (Stefan Assmann) [1518088]
-- [netdrv] i40e: make const array patterns static, reduces object code size (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add support setting TC max bandwidth rates (Stefan Assmann) [1518088]
-- [netdrv] i40e: Refactor VF BW rate limiting (Stefan Assmann) [1518088]
-- [netdrv] i40e: Enable 'channel' mode in mqprio for TC configs (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add infrastructure for queue channel support (Stefan Assmann) [1518088]
-- [netdrv] i40e: Add macro for PF reset bit (Stefan Assmann) [1518088]
-- [netdrv] locking/atomics: coccinelle/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE() (Stefan Assmann) [1518088]
-- [netdrv] i40e: report BPF prog id during XDP_QUERY_PROG (Stefan Assmann) [1518088]
-- [netdrv] i40e: add support for XDP_TX action (Stefan Assmann) [1518088]
-- [netdrv] i40e: add XDP support for pass and drop actions (Stefan Assmann) [1518088]
-- [net] sctp: make use of pre-calculated len (Xin Long) [1590162]
-- [net] sctp: add a ceiling to optlen in some sockopts (Xin Long) [1590162]
-- [net] sctp: GFP_ATOMIC is not needed in sctp_setsockopt_events (Xin Long) [1590162]
-- [net] vti6: Change minimum MTU to IPV4_MIN_MTU, vti6 can carry IPv4 too (Ravi Aysola) [1576491]
-- [net] ifb: fix packets checksum (Jamie Bainbridge) [1571027]
-- [net] ipv4: Avoid crashing in ip_error (Lorenzo Bianconi) [1589069]
-- [net] act_mirred: get rid of tcfm_ifindex from struct tcf_mirred (Ivan Vecera) [1583607]
-- [net] netfilter: ipv4: fix NULL dereference (Ivan Vecera) [1586215]
-- [net] ipv4: Namespaceify ip_default_ttl sysctl knob (Ivan Vecera) [1586215]
-- [net] devlink: convert occ_get op to separate registration (Ivan Vecera) [1584825]
-- [net] devlink: Remove top_hierarchy arg for DEVLINK disabled path (Ivan Vecera) [1584825]
-- [net] devlink: Remove top_hierarchy arg to devlink_resource_register (Ivan Vecera) [1584825]
-- [net] devlink: Fix handling of resource_size_param (Ivan Vecera) [1584825]
-- [net] devlink: Fix resource coverity errors (Ivan Vecera) [1584825]
-- [net] devlink: Compare to size_new in case of resource child validation (Ivan Vecera) [1584825]
-- [net] devlink: Perform cleanup of resource_set cb (Ivan Vecera) [1584825]
-- [net] devlink: Move size validation to core (Ivan Vecera) [1584825]
-- [net] devlink: fix memory leak on 'resource' (Ivan Vecera) [1584825]
-- [net] devlink: Make some functions static (Ivan Vecera) [1584825]
-- [net] devlink: Add relation between dpipe and resource (Ivan Vecera) [1584825]
-- [net] devlink: Add support for reload (Ivan Vecera) [1584825]
-- [net] devlink: Add support for resource abstraction (Ivan Vecera) [1584825]
-- [net] devlink: Add per devlink instance lock (Ivan Vecera) [1584825]
-- [net] devlink: remove unused priv_size (Ivan Vecera) [1584825]
-- [net] ipv6: fix IPV6_PKTINFO with v4 mapped (Hangbin Liu) [1582550]
-- [net] ipv6: honor IPV6_PKTINFO with v4 mapped addresses on sendmsg (Hangbin Liu) [1582550]
-- [net] openvswitch: Don't swap table in nlattr_set() after OVS_ATTR_NESTED is found (Stefano Brivio) [1567613]
-- [net] Fix NETDEV_CHANGE notifier usage causing spurious arp flush (Xin Long) [1571615]
-- [vhost] Fix vhost_copy_to_user() (Hangbin Liu) [1551292]
-- [vhost] return bool from *_access_ok() functions (Hangbin Liu) [1551292]
-- [vhost] fix vhost_vq_access_ok() log check (Hangbin Liu) [1551292]
-- [vhost] correctly remove wait queue during poll failure (Hangbin Liu) [1551292]
-- [vhost] fix vhost ioctl signature to build with clang (Hangbin Liu) [1551292]
-- [vhost] validate log when IOTLB is enabled (Hangbin Liu) [1551292]
-- [vhost] do not try to access device IOTLB when not initialized (Hangbin Liu) [1551292]
-- [vhost] use mutex_lock_nested() in vhost_dev_lock_vqs() (Hangbin Liu) [1551292]
-- [net] xfrm: Fix memory leak of aead algorithm name (Herbert Xu) [1544367]
-- [net] bonding: process the err returned by dev_set_allmulti properly in bond_enslave (Xin Long) [1558481]
-- [net] bonding: move dev_mc_sync after master_upper_dev_link in bond_enslave (Xin Long) [1558481]
-- [net] bonding: fix the err path for dev hwaddr sync in bond_enslave (Xin Long) [1558481]
-- [net] 8021q: Fix one possible panic caused by BUG_ON in free_netdev (Hangbin Liu) [1535385]
-- [net] ip_gre: fix IFLA_MTU ignored on NEWLINK (Xin Long) [1488484]
-
-* Fri Jun 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-914.el7]
-- [target] tcmu: fix crash when removing the tcmu device (Xiubo Li) [1559232]
-- [target] tcmu: Recalculate the tcmu_cmd size to save cmd area memories (Xiubo Li) [1559232]
-- [target] tcmu: fix cmd user after free (Xiubo Li) [1559232]
-- [target] tcmu: allow userspace to reset ring (Xiubo Li) [1559232]
-- [target] target core: add device action configfs files (Xiubo Li) [1559232]
-- [target] add SAM_STAT_BUSY sense reason (Xiubo Li) [1559232]
-- [target] tcmu: fix error return code in tcmu_configure_device() (Xiubo Li) [1559232]
-- [target] target_core_user: add cmd id to broken ring message (Xiubo Li) [1559232]
-- [target] tcmu: don't block submitting context for block waits (Xiubo Li) [1559232]
-- [target] tcmu: simplify dbi thresh handling (Xiubo Li) [1559232]
-- [target] tcmu: fix free block calculation (Xiubo Li) [1559232]
-- [target] tcmu: prep queue_cmd_ring to be used by unmap wq (Xiubo Li) [1559232]
-- [target] tcmu: remove commands_lock (Xiubo Li) [1559232]
-- [target] tcmu: move expired command completion to unmap thread (Xiubo Li) [1559232]
-- [target] tcmu: fix page addr in tcmu_flush_dcache_range (Xiubo Li) [1559232]
-- [target] tcmu: Add a missing unlock on an error path (Xiubo Li) [1559232]
-- [target] tcmu: Fix some memory corruption (Xiubo Li) [1559232]
-- [target] tcmu: fix double se_cmd completion (Xiubo Li) [1559232]
-- [target] tcmu: Use macro to call container_of in tcmu_cmd_time_out_show (Xiubo Li) [1559232]
-- [target] tcmu: free old string on reconfig (Xiubo Li) [1559232]
-- [target] tcmu: Fix dev_config_store (Xiubo Li) [1559232]
-- [target] revert "tcmu: use idr for se_device dev index" (Xiubo Li) [1559232]
-- [target] tcmu: fix multiple uio open/close sequences (Xiubo Li) [1559232]
-- [target] tcmu: drop configured check in destroy (Xiubo Li) [1559232]
-- [target] tcmu: make array tcmu_attrib_attrs static const (Xiubo Li) [1559232]
-- [target] tcmu: Make dev_config configurable (Xiubo Li) [1559232]
-- [target] Support emulate_write_cache (Xiubo Li) [1559232]
-- [target] tcmu: fix error resetting qfull_time_out to default (Xiubo Li) [1559232]
-- [target] Add netlink command reply supported option for each device (Xiubo Li) [1559232]
-- [target] tcmu: fix crash during device removal (Xiubo Li) [1559232]
-- [target] tcmu: Fix trailing semicolon (Xiubo Li) [1559232]
-- [target] tcmu: clean up the scatter helper (Xiubo Li) [1559232]
-- [target] tcmu: clean up the code and with one small fix (Xiubo Li) [1559232]
-- [target] tcmu: simplify scatter_data_area error handling (Xiubo Li) [1559232]
-- [target] tcmu: Fix possbile memory leak / OOPs when recalculating cmd base size (Xiubo Li) [1559232]
-- [target] tcmu: release blocks for partially setup cmds (Xiubo Li) [1559232]
-- [target] tcmu: prevent corruption when invalid data page requested (Xiubo Li) [1559232]
-- [target] tcmu: allow global max blocks to be settable (Xiubo Li) [1559232]
-- [target] tcmu: fix unmap thread race (Xiubo Li) [1559232]
-- [target] tcmu: split unmap_thread_fn (Xiubo Li) [1559232]
-- [target] tcmu: merge common block release code (Xiubo Li) [1559232]
-- [target] tcmu: Fix possible to/from address overflow when doing the memcpy (Xiubo Li) [1559232]
-- [target] tcmu: Fix module removal due to stuck unmap_thread thread again (Xiubo Li) [1559232]
-- [target] tcmu: fix module removal due to stuck thread (Xiubo Li) [1559232]
-- [target] tcmu: Add global data block pool support (Xiubo Li) [1559232]
-- [target] tcmu: Add dynamic growing data area feature support (Xiubo Li) [1559232]
-- [target] tcmu: Skip Data-Out blocks before gathering Data-In buffer for BIDI case (Xiubo Li) [1559232]
-- [target] tcmu: Fix possible overwrite of t_data_sg's last iov[] (Xiubo Li) [1559232]
-- [virtio] virtio_pci: support enabling VFs (Paul Lai) [1584251]
-- [x86] kvm: add support for UMIP (Paul Lai) [1457461]
-- [x86] cpufeature: Add User-Mode Instruction Prevention definitions (Paul Lai) [1457461]
-- [x86] kvm: Expose new cpu features to guest (Paul Lai) [1494668]
-- [x86] cpufeatures: Enable new SSE/AVX/AVX512 CPU features (Paul Lai) [1494668]
-- [edac] skx_edac: Detect non-volatile DIMMs (Aristeu Rozanski) [1588177]
-- [firmware] dmi: Add function to look up a handle and return DIMM size (Aristeu Rozanski) [1588177]
-- [acpi] nfit: Add function to look up nvdimm device and provide SMBIOS handle (Aristeu Rozanski) [1588177]
-- [edac] Add new memory type for non-volatile DIMMs (Aristeu Rozanski) [1588177]
-- [edac] Drop duplicated array of strings for memory type names (Aristeu Rozanski) [1588177]
-- [tools] nfit_test Make private definitions to command emulation (Jeff Moyer) [1517757]
-- [uapi] libnvdimm: clean up command definitions (Jeff Moyer) [1517757]
-- [tools] nfit-test: Add platform cap support from ACPI 6.2a to test (Jeff Moyer) [1517757]
-- [nvdimm] libnvdimm, nfit: fix persistence domain reporting (Jeff Moyer) [1517757]
-- [nvdimm] libnvdimm, region: hide persistence_domain when unknown (Jeff Moyer) [1517757]
-- [nvdimm] libnvdimm: re-enable deep flush for pmem devices via fsync() (Jeff Moyer) [1517757]
-- [nvdimm] libnvdimm: expose platform persistence attribute for nd_region (Jeff Moyer) [1517757]
-- [kernel] acpi: nfit: add persistent memory control flag for nd_region (Jeff Moyer) [1517757]
-- [kernel] acpi: nfit: Add support for detect platform CPU cache flush on power loss (Jeff Moyer) [1517757]
-- [acpi] acpica: acpi 6.0a: Changes to the NFIT ACPI table (Jeff Moyer) [1517757]
-- [kernel] libnvdimm, pmem: disable dax flushing when pmem is fronting a volatile region (Jeff Moyer) [1517757]
-- [fs] proc: fix showing locks in /proc/pid/fdinfo/X (Adrian Reber) [1515811]
-- [fs] fix parallelism for rpc tasks (Steve Dickson) [1476875]
-- [fs] xfs: fix string handling in label get/set functions (Eric Sandeen) [1322930]
-- [fs] xfs: use xfs_trans_getsb in xfs_sync_sb_buf (Eric Sandeen) [1322930]
-- [fs] xfs: implement online get/set fs label (Eric Sandeen) [1322930]
-- [fs] xfs: move growfs core to libxfs (partial) (Eric Sandeen) [1322930]
-- [fs] xfs: one-shot cached buffers (Eric Sandeen) [1322930]
-- [fs] fs: copy BTRFS_IOC_[SG]ET_FSLABEL to vfs (Eric Sandeen) [1322930]
-- [scsi] smartpqi: update driver version (Don Brace) [1524694]
-- [scsi] smartpqi: fix critical ARM issue reading PQI index registers (Don Brace) [1524694]
-- [scsi] smartpqi: workaround fw bug for oq deletion (Don Brace) [1524694]
-- [scsi] smartpqi: add in new supported controllers (Don Brace) [1524694]
-- [scsi] smartpqi: allow static build ("built-in") (Don Brace) [1524694]
-- [scsi] smartpqi: Convert timers to use timer_setup() (Don Brace) [1524694]
-
-* Fri Jun 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-913.el7]
-- [tools] bpf selftest: Disable unprivilidged user tests (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Disable unsupported verifier tests (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Disable unsupported maps tests (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Disable unsupported object tests (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Add missing instructions (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Additional changes to compile bpf selftest (Jiri Olsa) [1311586]
-- [tools] bpf: fix broken BPF selftest build (Jiri Olsa) [1311586]
-- [tools] bpf selftest: Add v4.16 sources (Jiri Olsa) [1311586]
-- [tools] bpftool: Display license GPL compatible in prog show/list (Jiri Olsa) [1311586]
-- [tools] bpftool: silence 'missing initializer' warnings (Jiri Olsa) [1311586]
-- [tools] bpftool: Additional changes to compile bpftool (Jiri Olsa) [1311586]
-- [tools] bpftool: Add v4.16 sources (Jiri Olsa) [1311586]
-- [tools] libbpf: Additional changes to compile libbpf (Jiri Olsa) [1311586]
-- [tools] libbpf: Add v4.16 sources (Jiri Olsa) [1311586]
-- [tools] Enable bpf feature check (Jiri Olsa) [1311586]
-- [tools] Update filter.h header (Jiri Olsa) [1311586]
-- [tools] Update perf_event.h uapi header (Jiri Olsa) [1311586]
-- [tools] Update bpf uapi headers (Jiri Olsa) [1311586]
-- [kernel] bpf: Add tech preview taint for syscall (Jiri Olsa) [1311586]
-- [kernel] bpf: Disable non root access to BPF (Jiri Olsa) [1311586]
-- [s390] Ignore bpf syscall (Jiri Olsa) [1311586]
-- [kernel] bpf: enable bpf syscall on x64 and i386 (Jiri Olsa) [1311586]
-- [uapi] bpf: Add missing functions (Jiri Olsa) [1311586]
-- [kernel] bpf: Allow additional program types for testing (Jiri Olsa) [1311586]
-- [kernel] bpf: Limit the prog types in syscall (Jiri Olsa) [1311586]
-- [kernel] bpf: Add gpl_compatible flag to struct bpf_prog_info (Jiri Olsa) [1311586]
-- [x86] bpf, x64: fix memleak when not converging on calls (Jiri Olsa) [1311586]
-- [x86] bpf, x64: fix memleak when not converging after image (Jiri Olsa) [1311586]
-- [x86] bpf, x64: fix JIT emission for dead code (Jiri Olsa) [1311586]
-- [x86] bpf, x64: increase number of passes (Jiri Olsa) [1311586]
-- [kernel] bpf: allow xadd only on aligned memory (Jiri Olsa) [1311586]
-- [kernel] bpf: fix rcu lockdep warning for lpm_trie map_free callback (Jiri Olsa) [1311586]
-- [x86] bpf, x64: remove bpf_flush_icache (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save 5 bytes in prologue when ebpf insns came from cbpf (Jiri Olsa) [1311586]
-- [kernel] bpf: provide helper that indicates eBPF was migrated (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save few bytes when mul is in alu32 (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save several bytes when mul dest is r0/r3 anyway (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save several bytes by using mov over movabsq when possible (Jiri Olsa) [1311586]
-- [x86] bpf, x64: save one byte per shl/shr/sar when imm is 1 (Jiri Olsa) [1311586]
-- [x86] bpf, x64: implement retpoline for tail call (Jiri Olsa) [1311586]
-- [kernel] bpf: Remove unused callee_saved array (Jiri Olsa) [1311586]
-- [kernel] bpf: fix memory leak in lpm_trie map_free callback function (Jiri Olsa) [1311586]
-- [kernel] bpf: fix kernel page fault in lpm map trie_get_next_key (Jiri Olsa) [1311586]
-- [x86] bpf, x86_64: remove obsolete exception handling from div/mod (Jiri Olsa) [1311586]
-- [kernel] bpf: fix subprog verifier bypass by div/mod by 0 exception (Jiri Olsa) [1311586]
-- [kernel] bpf: make unknown opcode handling more robust (Jiri Olsa) [1311586]
-- [kernel] bpf: improve dead code sanitizing (Jiri Olsa) [1311586]
-- [kernel] bpf: Use the IS_FD_ARRAY() macro in map_update_elem() (Jiri Olsa) [1311586]
-- [kernel] bpf: fix incorrect kmalloc usage in lpm_trie MAP_GET_NEXT_KEY rcu region (Jiri Olsa) [1311586]
-- [kernel] bpf: add upper complexity limit to verifier log (Jiri Olsa) [1311586]
-- [x86] bpf, x86: small optimization in alu ops with imm (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: detect misconfigured mem, size argument pair (Jiri Olsa) [1311586]
-- [kernel] bpf: implement MAP_GET_NEXT_KEY command for LPM_TRIE map (Jiri Olsa) [1311586]
-- [kernel] bpf: arraymap: use bpf_map_init_from_attr() (Jiri Olsa) [1311586]
-- [kernel] bpf: arraymap: move checks out of alloc function (Jiri Olsa) [1311586]
-- [kernel] bpf: mark dst unknown on inconsistent (s, u)bounds adjustments (Jiri Olsa) [1311586]
-- [kernel] bpf: reject stores into ctx via st and xadd (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper for copying attrs to struct bpf_map (Jiri Olsa) [1311586]
-- [kernel] bpf: hashtab: move checks out of alloc function (Jiri Olsa) [1311586]
-- [kernel] bpf: hashtab: move attribute validation before allocation (Jiri Olsa) [1311586]
-- [kernel] bpf: add map_alloc_check callback (Jiri Olsa) [1311586]
-- [kernel] bpf: fix 32-bit divide by zero (Jiri Olsa) [1311586]
-- [kernel] bpf: fix divides by zero (Jiri Olsa) [1311586]
-- [kernel] bpf: Add merge fixes (Jiri Olsa) [1311586]
-- [kernel] bpf, array: fix overflow in max_entries and undefined behavior in index_mask (Jiri Olsa) [1311586]
-- [kernel] bpf: arsh is not supported in 32 bit alu thus reject it (Jiri Olsa) [1311586]
-- [kernel] bpf: fix spelling mistake: "obusing" -> "abusing" (Jiri Olsa) [1311586]
-- [kernel] bpf: export function to write into verifier log buffer (Jiri Olsa) [1311586]
-- [net] bpf: introduce BPF_JIT_ALWAYS_ON config (Jiri Olsa) [1311586]
-- [kernel] bpf: prevent out-of-bounds speculation (Jiri Olsa) [1311586]
-- [kernel] bpf: fix verifier GPF in kmalloc failure path (Jiri Olsa) [1311586]
-- [kernel] bpf: fix max call depth check (Jiri Olsa) [1311586]
-- [kernel] bpf: fix maximum stack depth tracking logic (Jiri Olsa) [1311586]
-- [kernel] bpf: fix stacksafe exploration when comparing states (Jiri Olsa) [1311586]
-- [kernel] bpf: allow for correlation of maps and helpers in dump (Jiri Olsa) [1311586]
-- [kernel] bpf: do not allow root to mangle valid pointers (Jiri Olsa) [1311586]
-- [kernel] bpf: fix integer overflows (Jiri Olsa) [1311586]
-- [kernel] bpf: don't prune branches when a scalar is replaced with a pointer (Jiri Olsa) [1311586]
-- [kernel] bpf: force strict alignment checks for stack pointers (Jiri Olsa) [1311586]
-- [kernel] bpf: fix missing error return in check_stack_boundary() (Jiri Olsa) [1311586]
-- [kernel] bpf: fix 32-bit ALU op verification (Jiri Olsa) [1311586]
-- [kernel] bpf: fix incorrect tracking of register size truncation (Jiri Olsa) [1311586]
-- [kernel] bpf: fix incorrect sign extension in check_alu_op() (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: fix bounds calculation on BPF_RSH (Jiri Olsa) [1311586]
-- [kernel] bpf: make function skip_callee static and return NULL rather than 0 (Jiri Olsa) [1311586]
-- [kernel] bpf: x64: add JIT support for multi-function programs (Jiri Olsa) [1311586]
-- [kernel] bpf: fix net.core.bpf_jit_enable race (Jiri Olsa) [1311586]
-- [kernel] bpf: add support for bpf_call to interpreter (Jiri Olsa) [1311586]
-- [kernel] bpf: teach verifier to recognize zero initialized stack (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce function calls (verification) (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce function calls (function boundaries) (Jiri Olsa) [1311586]
-- [kernel] bpf: add schedule points to map alloc/free (Jiri Olsa) [1311586]
-- [s390] bpf: correct broken uapi for BPF_PROG_TYPE_PERF_EVENT program type (Jiri Olsa) [1311586]
-- [kernel] bpf: correct broken uapi for BPF_PROG_TYPE_PERF_EVENT program type (Jiri Olsa) [1311586]
-- [kernel] bpf: cleanup register_is_null() (Jiri Olsa) [1311586]
-- [kernel] bpf: improve JEQ/JNE path walking (Jiri Olsa) [1311586]
-- [kernel] bpf: improve verifier liveness marks (Jiri Olsa) [1311586]
-- [kernel] bpf: don't mark FP reg as uninit (Jiri Olsa) [1311586]
-- [kernel] bpf: print liveness info to verifier log (Jiri Olsa) [1311586]
-- [kernel] bpf: fix stack state printing in verifier log (Jiri Olsa) [1311586]
-- [kernel] bpf: fix branch pruning logic (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce ARG_PTR_TO_MEM_OR_NULL (Jiri Olsa) [1311586]
-- [kernel] bpf: change bpf_perf_event_output arg5 type to ARG_CONST_SIZE_OR_ZERO (Jiri Olsa) [1311586]
-- [kernel] bpf: change bpf_probe_read_str arg2 type to ARG_CONST_SIZE_OR_ZERO (Jiri Olsa) [1311586]
-- [kernel] bpf: remove explicit handling of 0 for arg2 in bpf_probe_read (Jiri Olsa) [1311586]
-- [kernel] bpf: change helper bpf_probe_read arg2 type to ARG_CONST_SIZE_OR_ZERO (Jiri Olsa) [1311586]
-- [kernel] bpf: improve verifier ARG_CONST_SIZE_OR_ZERO semantics (Jiri Olsa) [1311586]
-- [kernel] bpf: offload: add infrastructure for loading programs for a specific netdev (Jiri Olsa) [1311586]
-- [kernel] bpf: fix verifier NULL pointer dereference (Jiri Olsa) [1311586]
-- [kernel] bpf: fix out-of-bounds access warning in bpf_check (Jiri Olsa) [1311586]
-- [kernel] bpf: also improve pattern matches for meta access (Jiri Olsa) [1311586]
-- [kernel] bpf: minor cleanups after merge (Jiri Olsa) [1311586]
-- [kernel] bpf: fix verifier memory leaks (Jiri Olsa) [1311586]
-- [kernel] bpf: reduce verifier memory consumption (Jiri Olsa) [1311586]
-- [kernel] bpf: fix off by one for range markings with L(T, E) patterns (Jiri Olsa) [1311586]
-- [security] bpf: Add LSM hooks for bpf object related syscall (Jiri Olsa) [1311586]
-- [kernel] bpf: Add file mode configuration into bpf maps (Jiri Olsa) [1311586]
-- [kernel] bpf: require CAP_NET_ADMIN when using devmap (Jiri Olsa) [1311586]
-- [kernel] bpf: do not test for PCPU_MIN_UNIT_SIZE before percpu allocations (Jiri Olsa) [1311586]
-- [kernel] bpf: move knowledge about post-translation offsets out of verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: remove the verifier ops from program structure (Jiri Olsa) [1311586]
-- [kernel] bpf: Add sched cls/act type (Jiri Olsa) [1311586]
-- [kernel] bpf: Add socket filter type (Jiri Olsa) [1311586]
-- [kernel] bpf: split verifier and program ops (Jiri Olsa) [1311586]
-- [kernel] bpf: disallow arithmetic operations on context pointer (Jiri Olsa) [1311586]
-- [kernel] bpf: verifier: set reg_type on context accesses in second pass (Jiri Olsa) [1311586]
-- [kernel] bpf: wire in data and data_end for cls_act_bpf (Jiri Olsa) [1311586]
-- [kernel] bpf: write back the verifier log buffer as it gets filled (Jiri Olsa) [1311586]
-- [kernel] bpf: move instruction printing into a separate file (Jiri Olsa) [1311586]
-- [kernel] bpf: move global verifier log into verifier environment (Jiri Olsa) [1311586]
-- [uapi] bpf: Use char in prog and map name (Jiri Olsa) [1311586]
-- [kernel] netfilter: xt_bpf: Fix XT_BPF_MODE_FD_PINNED mode of 'xt_bpf_info_v1' (Jiri Olsa) [1311586]
-- [kernel] bpf: Change bpf_obj_name_cpy() to better ensure map's name is init by 0 (Jiri Olsa) [1311586]
-- [kernel] bpf: fix liveness marking (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper bpf_perf_prog_read_value (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper bpf_perf_event_read_value for perf event array map (Jiri Olsa) [1311586]
-- [kernel] bpf: perf event change needed for subsequent bpf helpers (Jiri Olsa) [1311586]
-- [kernel] bpf: enforce return code for cgroup-bpf programs (Jiri Olsa) [1311586]
-- [kernel] bpf: fix bpf_tail_call() x64 JIT (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: improve disassembly of BPF_NEG instructions (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: improve disassembly of BPF_END instructions (Jiri Olsa) [1311586]
-- [kernel] bpf: add meta pointer for direct access (Jiri Olsa) [1311586]
-- [kernel] bpf: Optimize lpm trie delete (Jiri Olsa) [1311586]
-- [kernel] bpf: do not disable/enable BH in bpf_map_free_id() (Jiri Olsa) [1311586]
-- [kernel] bpf: Implement map_delete_elem for BPF_MAP_TYPE_LPM_TRIE (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: reject BPF_ALU64|BPF_END (Jiri Olsa) [1311586]
-- [kernel] bpf: Only set node->ref = 1 if it has not been set (Jiri Olsa) [1311586]
-- [kernel] bpf: Inline LRU map lookup (Jiri Olsa) [1311586]
-- [x86] bpf_jit: small optimization in emit_bpf_tail_call() (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: document liveness analysis (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: remove varlen_map_value_access flag (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: when pruning a branch, ignore its write marks (Jiri Olsa) [1311586]
-- [kernel] bpf: inline map in map lookup functions for array and htab (Jiri Olsa) [1311586]
-- [kernel] bpf: make htab inlining more robust wrt assumptions (Jiri Olsa) [1311586]
-- [kernel] bpf: fix map value attribute for hash of maps (Jiri Olsa) [1311586]
-- [kernel] bpf: fix liveness propagation to parent in spilled stack slots (Jiri Olsa) [1311586]
-- [kernel] bpf: devmap: remove unnecessary value size check (Jiri Olsa) [1311586]
-- [kernel] bpf: export bpf_prog_inc_not_zero (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: track liveness for pruning (Jiri Olsa) [1311586]
-- [kernel] bpf: enable BPF_J(LT, LE, SLT, SLE) opcodes in verifier (Jiri Olsa) [1311586]
-- [x86] bpf, x86: implement jiting of BPF_J(LT, LE, SLT, SLE) (Jiri Olsa) [1311586]
-- [kernel] bpf: add BPF_J(LT, LE, SLT, SLE) instructions (Jiri Olsa) [1311586]
-- [kernel] bpf: Extend check_uarg_tail_zero() checks (Jiri Olsa) [1311586]
-- [kernel] bpf: Move check_uarg_tail_zero() upward (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: increase complexity limit to 128k (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: more concise register state logs for constant var_off (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: track signed and unsigned min/max values (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: rework value tracking (Jiri Olsa) [1311586]
-- [kernel] bpf: fix bpf_prog_get_info_by_fd to dump correct xlated_prog_len (Jiri Olsa) [1311586]
-- [kernel] bpf: don't indicate success when copy_from_user fails (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: fix min/max handling in BPF_SUB (Jiri Olsa) [1311586]
-- [kernel] bpf: fix mixed signed/unsigned derived min/max value bounds (Jiri Olsa) [1311586]
-- [kernel] bpf: Implement show_options (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: add additional patterns to evaluate_reg_imm_alu (Jiri Olsa) [1311586]
-- [kernel] bpf: simplify narrower ctx access (Jiri Olsa) [1311586]
-- [uapi] bpf: BPF support for sock_ops (Jiri Olsa) [1311586]
-- [kernel] bpf: don't open-code memdup_user() (Jiri Olsa) [1311586]
-- [kernel] bpf: prevent leaking pointer via xadd on unpriviledged (Jiri Olsa) [1311586]
-- [kernel] bpf: Fix out-of-bound access on interpreters() (Jiri Olsa) [1311586]
-- [kernel] bpf: Add syscall lookup support for fd array and htab (Jiri Olsa) [1311586]
-- [kernel] bpf: possibly avoid extra masking for narrower load in verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: permits narrower load from bpf program context fields (Jiri Olsa) [1311586]
-- [kernel] bpf: reset id on spilled regs in clear_all_pkt_pointers (Jiri Olsa) [1311586]
-- [kernel] bpf: reset id on CONST_IMM transition (Jiri Olsa) [1311586]
-- [kernel] bpf: don't check spilled reg state for non-STACK_SPILLed type slots (Jiri Olsa) [1311586]
-- [uapi] bpf: update perf event helper functions documentation (Jiri Olsa) [1311586]
-- [kernel] perf, bpf: Add BPF support to all perf_event types (Jiri Olsa) [1311586]
-- [kernel] bpf: Remove the capability check for cgroup skb eBPF program (Jiri Olsa) [1311586]
-- [x86] bpf: take advantage of stack_depth tracking in x64 JIT (Jiri Olsa) [1311586]
-- [x86] bpf: change x86 JITed program stack layout (Jiri Olsa) [1311586]
-- [kernel] bpf: use different interpreter depending on required stack size (Jiri Olsa) [1311586]
-- [kernel] bpf: teach verifier to track stack depth (Jiri Olsa) [1311586]
-- [kernel] bpf: split bpf core interpreter (Jiri Olsa) [1311586]
-- [kernel] bpf: free up BPF_JMP | BPF_CALL | BPF_X opcode (Jiri Olsa) [1311586]
-- [kernel] bpf: fix wrong exposure of map_flags into fdinfo for lpm (Jiri Olsa) [1311586]
-- [kernel] bpf: properly reset caller saved regs after helper call and ld_abs/ind (Jiri Olsa) [1311586]
-- [kernel] bpf: fix incorrect pruning decision when alignment must be tracked (Jiri Olsa) [1311586]
-- [kernel] Make IP alignment calulations clearer (Jiri Olsa) [1311586]
-- [kernel] bpf: Handle multiple variable additions into packet pointers in verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: encapsulate verifier log state into a structure (Jiri Olsa) [1311586]
-- [kernel] bpf: adjust verifier heuristics (Jiri Olsa) [1311586]
-- [kernel] bpf: Add map_name to bpf_map_info (Jiri Olsa) [1311586]
-- [kernel] bpf: Allow selecting numa node during map creation (Jiri Olsa) [1311586]
-- [kernel] bpf: add devmap, a map for storing net device references (Jiri Olsa) [1311586]
-- [kernel] bpf: Add name, load_time, uid and map_ids to bpf_prog_info (Jiri Olsa) [1311586]
-- [kernel] bpf: Add strict alignment flag for BPF_PROG_LOAD (Jiri Olsa) [1311586]
-- [kernel] bpf: Do per-instruction state dumping in verifier when log_level > 1 (Jiri Olsa) [1311586]
-- [kernel] bpf: Track alignment of register values in the verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_OBJ_GET_INFO_BY_FD (Jiri Olsa) [1311586]
-- [kernel] bpf: Add jited_len to struct bpf_prog (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_MAP_GET_FD_BY_ID (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_PROG_GET_FD_BY_ID (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_(PROG|MAP)_GET_NEXT_ID command (Jiri Olsa) [1311586]
-- [kernel] bpf: Introduce bpf_map ID (Jiri Olsa) [1311586]
-- [kernel] bpf: Introduce bpf_prog ID (Jiri Olsa) [1311586]
-- [kernel] bpf: don't let ldimm64 leak map addresses on unprivileged (Jiri Olsa) [1311586]
-- [kernel] bpf: enhance verifier to understand stack pointer arithmetic (Jiri Olsa) [1311586]
-- [x86] bpf, x86_64/arm64: remove old ldimm64 artifacts from jits (Jiri Olsa) [1311586]
-- [kernel] bpf: map_get_next_key to return first key on NULL (Jiri Olsa) [1311586]
-- [kernel] bpf: lru: Lower the PERCPU_NR_SCANS from 16 to 4 (Jiri Olsa) [1311586]
-- [kernel] bpf: remove struct bpf_map_type_list (Jiri Olsa) [1311586]
-- [kernel] bpf: remove struct bpf_prog_type_list (Jiri Olsa) [1311586]
-- [kernel] bpf: reference may_access_skb() from __bpf_prog_run() (Jiri Olsa) [1311586]
-- [net] bpf: introduce BPF_PROG_TEST_RUN command (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: fix rejection of unaligned access checks for map_value_adj (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: fix alu ops against map_value(, _adj) register types (Jiri Olsa) [1311586]
-- [kernel] bpf: improve verifier packet range checks (Jiri Olsa) [1311586]
-- [kernel] bpf: Add hash of maps support (Jiri Olsa) [1311586]
-- [kernel] bpf: Add array of maps support (Jiri Olsa) [1311586]
-- [kernel] bpf: Fix and simplifications on inline map lookup (Jiri Olsa) [1311586]
-- [kernel] bpf: fix hashmap extra_elems logic (Jiri Olsa) [1311586]
-- [kernel] bpf: inline htab_map_lookup_elem() (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper inlining infra and optimize map_array lookup (Jiri Olsa) [1311586]
-- [kernel] bpf: adjust insn_aux_data when patching insns (Jiri Olsa) [1311586]
-- [kernel] bpf: refactor fixup_bpf_calls() (Jiri Olsa) [1311586]
-- [kernel] bpf: move fixup_bpf_calls() function (Jiri Olsa) [1311586]
-- [kernel] bpf: convert htab map to hlist_nulls (Jiri Olsa) [1311586]
-- [kernel] bpf: fix struct htab_elem layout (Jiri Olsa) [1311586]
-- [kernel] bpf: add get_next_key callback to LPM map (Jiri Olsa) [1311586]
-- [kernel] bpf: fix spelling mistake: "proccessed" -> "processed" (Jiri Olsa) [1311586]
-- [kernel] bpf: remove stubs for cBPF from arch code (Jiri Olsa) [1311586]
-- [kernel] bpf: reduce compiler warnings by adding fallthrough comments (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_F_ALLOW_OVERRIDE flag (Jiri Olsa) [1311586]
-- [kernel] bpf, lpm: fix overflows in trie_alloc checks (Jiri Olsa) [1311586]
-- [kernel] bpf: enable verifier to add 0 to packet ptr (Jiri Olsa) [1311586]
-- [kernel] bpf: add initial bpf tracepoints (Jiri Olsa) [1311586]
-- [kernel] trace: add variant without spacing in trace_print_hex_seq (Jiri Olsa) [1311586]
-- [kernel] bpf: enable verifier to better track const alu ops (Jiri Olsa) [1311586]
-- [kernel] bpf, lpm: fix kfree of im_node in trie_update_elem (Jiri Olsa) [1311586]
-- [kernel] bpf: add a longest prefix match trie map implementation (Jiri Olsa) [1311586]
-- [kernel] bpf: add bpf_probe_read_str helper (Jiri Olsa) [1311586]
-- [kernel] bpf: don't trigger OOM killer under pressure with map alloc (Jiri Olsa) [1311586]
-- [kernel] bpf, trace: make ctx access checks more robust (Jiri Olsa) [1311586]
-- [kernel] bpf: rework prog_digest into prog_tag (Jiri Olsa) [1311586]
-- [kernel] bpf: allow b/h/w/dw access for bpf's cb in ctx (Jiri Olsa) [1311586]
-- [kernel] bpf: pass original insn directly to convert_ctx_access (Jiri Olsa) [1311586]
-- [kernel] bpf: do not use KMALLOC_SHIFT_MAX (Jiri Olsa) [1311586]
-- [kernel] bpf: Make unnecessarily global functions static (Jiri Olsa) [1311586]
-- [kernel] bpf: Remove unused but set variable in __bpf_lru_list_shrink_inactive() (Jiri Olsa) [1311586]
-- [kernel] bpf: rename ARG_PTR_TO_STACK (Jiri Olsa) [1311586]
-- [kernel] bpf: allow helpers access to variable memory (Jiri Olsa) [1311586]
-- [kernel] bpf: allow adjusted map element values to spill (Jiri Olsa) [1311586]
-- [kernel] bpf: allow helpers access to map element values (Jiri Olsa) [1311586]
-- [kernel] bpf: split check_mem_access logic for map values (Jiri Olsa) [1311586]
-- [x86] bpf: change back to orig prog on too many passes (Jiri Olsa) [1311586]
-- [kernel] bpf: fix mark_reg_unknown_value for spilled regs on map value marking (Jiri Olsa) [1311586]
-- [kernel] bpf: fix overflow in prog accounting (Jiri Olsa) [1311586]
-- [kernel] bpf: dynamically allocate digest scratch buffer (Jiri Olsa) [1311586]
-- [kernel] bpf: add prog_digest and expose it via fdinfo/netlink (Jiri Olsa) [1311586]
-- [kernel] bpf: fix regression on verifier pruning wrt map lookups (Jiri Olsa) [1311586]
-- [kernel] bpf: fix state equivalence (Jiri Olsa) [1311586]
-- [kernel] bpf: fix loading of BPF_MAXINSNS sized programs (Jiri Olsa) [1311586]
-- [kernel] bpf: Preserve const register type on const OR alu ops (Jiri Olsa) [1311586]
-- [uapi] bpf: Add new cgroup attach type to enable sock modifications (Jiri Olsa) [1311586]
-- [kernel] bpf: BPF for lightweight tunnel infrastructure (Jiri Olsa) [1311586]
-- [kernel] bpf: fix states equal logic for varlen access (Jiri Olsa) [1311586]
-- [kernel] bpf: allow for mount options to specify permissions (Jiri Olsa) [1311586]
-- [kernel] bpf: add owner_prog_type and accounted mem to array map's fdinfo (Jiri Olsa) [1311586]
-- [kernel] bpf: add __must_check attributes to refcount manipulating helpers (Jiri Olsa) [1311586]
-- [kernel] bpf: fix range arithmetic for bpf map access (Jiri Olsa) [1311586]
-- [kernel] bpf: Fix compilation warning in __bpf_lru_list_rotate_inactive (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_MAP_TYPE_LRU_PERCPU_HASH (Jiri Olsa) [1311586]
-- [kernel] bpf: Add BPF_MAP_TYPE_LRU_HASH (Jiri Olsa) [1311586]
-- [kernel] bpf: Refactor codes handling percpu map (Jiri Olsa) [1311586]
-- [kernel] bpf: Add percpu LRU list (Jiri Olsa) [1311586]
-- [kernel] bpf: LRU List (Jiri Olsa) [1311586]
-- [kernel] bpf: Use u64_to_user_ptr() (Jiri Olsa) [1311586]
-- [kernel] bpf: Remove unused but set variables (Jiri Olsa) [1311586]
-- [kernel] bpf: fix map not being uncharged during map creation failure (Jiri Olsa) [1311586]
-- [kernel] bpf: fix htab map destruction when extra reserve is in use (Jiri Olsa) [1311586]
-- [kernel] bpf: Print function name in addition to function id (Jiri Olsa) [1311586]
-- [kernel] bpf: add helper for retrieving current numa node id (Jiri Olsa) [1311586]
-- [kernel] bpf: Detect identical PTR_TO_MAP_VALUE_OR_NULL registers (Jiri Olsa) [1311586]
-- [kernel] bpf: allow access into map value arrays (Jiri Olsa) [1311586]
-- [kernel] bpf: clean up put_cpu_var usage (Jiri Olsa) [1311586]
-- [kernel] bpf: Set register type according to is_valid_access() (Jiri Olsa) [1311586]
-- [kernel] bpf: recognize 64bit immediate loads as consts (Jiri Olsa) [1311586]
-- [kernel] bpf: enable non-core use of the verfier (Jiri Olsa) [1311586]
-- [kernel] bpf: expose internal verfier structures (Jiri Olsa) [1311586]
-- [kernel] bpf: don't (ab)use instructions to store state (Jiri Olsa) [1311586]
-- [kernel] bpf: direct packet write and access for helpers for clsact progs (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: enforce larger zero range for pkt on overloading stack buffs (Jiri Olsa) [1311586]
-- [kernel] bpf: fix range propagation on direct packet access (Jiri Olsa) [1311586]
-- [kernel] bpf: fix method of PTR_TO_PACKET reg id generation (Jiri Olsa) [1311586]
-- [kernel] bpf: add BPF_CALL_x macros for declaring helpers (Jiri Olsa) [1311586]
-- [kernel] bpf: add BPF_SIZEOF and BPF_FIELD_SIZEOF macros (Jiri Olsa) [1311586]
-- [kernel] bpf: minor cleanups in helpers (Jiri Olsa) [1311586]
-- [kernel] bpf: drop unnecessary context cast from BPF_PROG_RUN (Jiri Olsa) [1311586]
-- [kernel] perf, bpf: add perf events core support for BPF_PROG_TYPE_PERF_EVENT programs (Jiri Olsa) [1311586]
-- [kernel] bpf: perf_event progs should only use preallocated maps (Jiri Olsa) [1311586]
-- [kernel] bpf: support 8-byte metafield access (Jiri Olsa) [1311586]
-- [kernel] bpf: allow bpf_get_prandom_u32() to be used in tracing (Jiri Olsa) [1311586]
-- [kernel] bpf: allow helpers access the packet directly (Jiri Olsa) [1311586]
-- [kernel] bpf: restore behavior of bpf_map_update_elem (Jiri Olsa) [1311586]
-- [kernel] bpf: Add bpf_probe_write_user BPF helper to be called in tracers (Jiri Olsa) [1311586]
-- [kernel] bpf, events: fix offset in skb copy handler (Jiri Olsa) [1311586]
-- [kernel] bpf: fix implicit declaration of bpf_prog_add (Jiri Olsa) [1311586]
-- [kernel] bpf: enable direct packet data write for xdp progs (Jiri Olsa) [1311586]
-- [kernel] bpf: add bpf_prog_add api for bulk prog refcnt (Jiri Olsa) [1311586]
-- [kernel] cgroup: bpf: Add BPF_MAP_TYPE_CGROUP_ARRAY (Jiri Olsa) [1311586]
-- [kernel] trace/bpf_trace.c: work around gcc-4.4.4 anon union initialization bug (Jiri Olsa) [1311586]
-- [kernel] bpf: bpf_event_entry_gen's alloc needs to be in atomic context (Jiri Olsa) [1311586]
-- [kernel] bpf: avoid stack copy and use skb ctx for event output (Jiri Olsa) [1311586]
-- [kernel] bpf, perf: split bpf_perf_event_output (Jiri Olsa) [1311586]
-- [kernel] perf, events: add non-linear data support for raw records (Jiri Olsa) [1311586]
-- [kernel] bpf: make inode code explicitly non-modular (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce bpf_get_current_task() helper (Jiri Olsa) [1311586]
-- [kernel] bpf: refactor bpf_prog_get and type check into helper (Jiri Olsa) [1311586]
-- [kernel] bpf: generally move prog destruction to RCU deferral (Jiri Olsa) [1311586]
-- [kernel] bpf: don't use raw processor id in generic helper (Jiri Olsa) [1311586]
-- [kernel] bpf, trace: add BPF_F_CURRENT_CPU flag for bpf_perf_event_read (Jiri Olsa) [1311586]
-- [kernel] bpf: minor cleanups on fd maps and helpers (Jiri Olsa) [1311586]
-- [kernel] bpf, perf: delay release of BPF prog after grace period (Jiri Olsa) [1311586]
-- [kernel] bpf, maps: flush own entries on perf map release (Jiri Olsa) [1311586]
-- [kernel] bpf, maps: extend map_fd_get_ptr arguments (Jiri Olsa) [1311586]
-- [kernel] bpf, maps: add release callback (Jiri Olsa) [1311586]
-- [kernel] bpf: fix matching of data/data_end in verifier (Jiri Olsa) [1311586]
-- [kernel] bpf: teach verifier to recognize imm += ptr pattern (Jiri Olsa) [1311586]
-- [kernel] bpf: support decreasing order in direct packet access (Jiri Olsa) [1311586]
-- [kernel] bpf: direct packet access (Jiri Olsa) [1311586]
-- [kernel] bpf: fix missing header inclusion (Jiri Olsa) [1311586]
-- [kernel] bpf: rather use get_random_int for randomizations (Jiri Olsa) [1311586]
-- [net] bpf: split HAVE_BPF_JIT into cBPF and eBPF variant (Jiri Olsa) [1311586]
-- [x86] bpf, x86: add support for constant blinding (Jiri Olsa) [1311586]
-- [net] bpf: add generic constant blinding for use in jits (Jiri Olsa) [1311586]
-- [kernel] bpf: prepare bpf_int_jit_compile/bpf_prog_select_runtime apis (Jiri Olsa) [1311586]
-- [kernel] bpf: add bpf_patch_insn_single helper (Jiri Olsa) [1311586]
-- [x86] bpf, x86/arm64: remove useless checks on prog (Jiri Olsa) [1311586]
-- [kernel] bpf: minor cleanups in ebpf code (Jiri Olsa) [1311586]
-- [kernel] bpf: improve verifier state equivalence (Jiri Olsa) [1311586]
-- [kernel] bpf: cleanup verifier code (Jiri Olsa) [1311586]
-- [kernel] bpf: fix check_map_func_compatibility logic (Jiri Olsa) [1311586]
-- [kernel] bpf: fix refcnt overflow (Jiri Olsa) [1311586]
-- [kernel] bpf: fix double-fdput in replace_map_fd_with_map_ptr() (Jiri Olsa) [1311586]
-- [kernel] bpf: add event output helper for notifications/sampling/logging (Jiri Olsa) [1311586]
-- [kernel] bpf, trace: add BPF_F_CURRENT_CPU flag for bpf_perf_event_output (Jiri Olsa) [1311586]
-- [kernel] bpf: convert relevant helper args to ARG_PTR_TO_RAW_STACK (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: add ARG_PTR_TO_RAW_STACK type (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: add bpf_call_arg_meta for passing meta data (Jiri Olsa) [1311586]
-- [kernel] bpf/verifier: reject invalid LD_ABS | BPF_DW instruction (Jiri Olsa) [1311586]
-- [kernel] bpf: simplify verifier register state assignments (Jiri Olsa) [1311586]
-- [kernel] bpf, verifier: further improve search pruning (Jiri Olsa) [1311586]
-- [kernel] bpf: sanitize bpf tracepoint access (Jiri Olsa) [1311586]
-- [kernel] bpf: support bpf_get_stackid() and bpf_perf_event_output() in tracepoint programs (Jiri Olsa) [1311586]
-- [kernel] bpf: reject invalid names right in ->lookup() (Jiri Olsa) [1311586]
-- [kernel] bpf: add missing map_flags to bpf_map_show_fdinfo (Jiri Olsa) [1311586]
-- [kernel] bpf: avoid copying junk bytes in bpf_get_current_comm() (Jiri Olsa) [1311586]
-- [kernel] bpf: bpf_stackmap_copy depends on CONFIG_PERF_EVENTS (Jiri Olsa) [1311586]
-- [kernel] bpf: convert stackmap to pre-allocation (Jiri Olsa) [1311586]
-- [kernel] bpf: check for reserved flag bits in array and stack maps (Jiri Olsa) [1311586]
-- [kernel] bpf: pre-allocate hash map elements (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce percpu_freelist (Jiri Olsa) [1311586]
-- [kernel] bpf: prevent kprobe+bpf deadlocks (Jiri Olsa) [1311586]
-- [kernel] bpf: Mark __bpf_prog_run() stack frame as non-standard (Jiri Olsa) [1311586]
-- [kernel] bpf: add new arg_type that allows for 0 sized stack buffer (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_MAP_TYPE_STACK_TRACE (Jiri Olsa) [1311586]
-- [kernel] bpf: grab rcu read lock for bpf_percpu_hash_update (Jiri Olsa) [1311586]
-- [kernel] bpf: add lookup/update support for per-cpu hash and array maps (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_MAP_TYPE_PERCPU_ARRAY map (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_MAP_TYPE_PERCPU_HASH map (Jiri Olsa) [1311586]
-- [kernel] bpf: add BPF_PROG_ATTACH and BPF_PROG_DETACH commands (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Create stack frames in bpf_jit.S (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Annotate callable functions (Jiri Olsa) [1311586]
-- [kernel] bpf: Enable code compilation (Jiri Olsa) [1311586]
-- [kernel] bpf: introduce BPF_PROG_TYPE_PERF_EVENT program type (Jiri Olsa) [1311586]
-- [kernel] bpf: register BPF_PROG_TYPE_TRACEPOINT program type (Jiri Olsa) [1311586]
-- [kernel] bpf: add support for sys_enter_* and sys_exit_* tracepoints (Jiri Olsa) [1311586]
-- [kernel] tracing/syscall: Avoid perf_trace_buf_*() if sys_data->perf_events is empty (Jiri Olsa) [1311586]
-- [kernel] perf, bpf: allow bpf programs attach to tracepoints (Jiri Olsa) [1311586]
-- [kernel] bpf_trace: Make dependent on PERF_EVENTS (Jiri Olsa) [1311586]
-- [kernel] tracing, perf: Implement BPF programs attached to uprobes (Jiri Olsa) [1311586]
-- [kernel] perf: Fix race in BPF program unregister (Jiri Olsa) [1311586]
-- [kernel] tracing, perf: Implement BPF programs attached to kprobes (Jiri Olsa) [1311586]
-- [kernel] kernel tracing: Add struct ftrace_event_data (Jiri Olsa) [1311586]
-- [kernel] tracing: Add kprobe flag (Jiri Olsa) [1311586]
-- [trace] tracepoint: Use struct pointer instead of name hash for reg/unreg tracepoints (Jiri Olsa) [1311586]
-- [trace] perf: remove unused __addr variable (Jiri Olsa) [1311586]
-- [kernel] bpf: Add CONFIG_BPF_EVENTS into Kconfig (Jiri Olsa) [1311586]
-- [net] bpf: split eBPF out of NET (Jiri Olsa) [1311586]
-- [uapi] filter: move common defines into bpf_common.h (Jiri Olsa) [1311586]
-- [uapi] filter: split filter.h and expose eBPF to user space (Jiri Olsa) [1311586]
-- [uapi] bpf: add support for persistent maps/progs (Jiri Olsa) [1311586]
-- [uapi] bpf: Sync enum bpf_func_id with v4.5 code (Jiri Olsa) [1311586]
-- [uapi] bpf: Sync enums to v4.5 code in uapi bpf.h (Jiri Olsa) [1311586]
-- [uapi] bpf: Add bpf load syscall header bits (Jiri Olsa) [1311586]
-- [kernel] filter: move load_pointer() into filter.h (Jiri Olsa) [1311586]
-- [kernel] bpf: Adding filter block macros (Jiri Olsa) [1311586]
-- [uapi] bpf: Add missing macros to filter.h/bpf.h (Jiri Olsa) [1311586]
-- [kernel] bpf: consolidate JIT binary allocator (Jiri Olsa) [1311586]
-- [kernel] bpf: make eBPF interpreter images read-only (Jiri Olsa) [1311586]
-- [kernel] bpf: Sync struct bpf_prog with v4.5 code and add related declarations (Jiri Olsa) [1311586]
-- [kernel] bpf: fix missing header inclusion (Jiri Olsa) [1311586]
-- [kernel] bpf: split state from prandom_u32() and consolidate c/eBPF prngs (Jiri Olsa) [1311586]
-- [kernel] bpf: Sync needed bpf.h structs with v4.5 code (Jiri Olsa) [1311586]
-- [kernel] bpf: Add convert_ctx_access callback (Jiri Olsa) [1311586]
-- [kernel] bpf: Add verifier prototypes for helper functions (Jiri Olsa) [1311586]
-- [kernel] bpf: Add missing members to enum bpf_arg_type (Jiri Olsa) [1311586]
-- [kernel] bpf: verifier (add verifier core) (Jiri Olsa) [1311586]
-- [kernel] bpf: Split functions under CONFIG_BPF_SYSCALL in bpf.h (Jiri Olsa) [1311586]
-- [kernel] bpf: Make the bpf_prog_array_map more generic (Jiri Olsa) [1311586]
-- [kernel] bpf: allow bpf programs to tail-call other bpf programs (Jiri Olsa) [1311586]
-- [uapi] bpf: add 'flags' attribute to BPF_MAP_UPDATE_ELEM command (Jiri Olsa) [1311586]
-- [kernel] filter: make register naming more comprehensible (Jiri Olsa) [1311586]
-- [uapi] bpf: introduce bpf_perf_event_output() helper (Jiri Olsa) [1311586]
-- [kernel] perf, bpf: Add BPF support to all perf_event types (Jiri Olsa) [1311586]
-- [kernel] bpf: Add trace_bpf* jit functions (Jiri Olsa) [1311586]
-- [kernel] perf/bpf: Convert perf_event_array to use struct file (Jiri Olsa) [1311586]
-- [mm] maccess.c: actually return -EFAULT from strncpy_from_unsafe (Jiri Olsa) [1311586]
-- [mm] lib: move strncpy_from_unsafe() into mm/maccess.c (Jiri Olsa) [1311586]
-- [lib] introduce strncpy_from_unsafe() (Jiri Olsa) [1311586]
-- [kernel] bpf, inode: disallow userns mounts (Jiri Olsa) [1311586]
-- [kernel] bpf: Use mount_nodev not mount_ns to mount the bpf filesystem (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Change sk_load prefix to trace_sk_load for jit (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Additional changes for trace_bpf_jit.S (Jiri Olsa) [1311586]
-- [x86] bpf: Additional changes for trace_bpf_jit_comp.c (Jiri Olsa) [1311586]
-- [x86] asm/bpf: Add v4.5 trace_bpf_jit.S (Jiri Olsa) [1311586]
-- [x86] bpf: Add v4.5 trace_bpf_jit_comp.c (Jiri Olsa) [1311586]
-- [netdrv] bpf: Additional changes for network drivers (Jiri Olsa) [1311586]
-- [kernel] bpf: Additional changes for core.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Additional changes for bpf_trace.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Additional changes for syscall.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 Makefile (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 inode.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 bpf_trace.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 arraymap.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 hashtab.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 helpers.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 verifier.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 syscall.c (Jiri Olsa) [1311586]
-- [kernel] bpf: Add v4.5 core.c (Jiri Olsa) [1311586]
-- [uapi] bpf: Fix BPF_PROG_TYPE_XDP enum (Jiri Olsa) [1311586]
-- [kernel] /proc/module: fix building without kallsyms (Jiri Olsa) [1311586]
-- [kernel] /proc/module: use the same logic as /proc/kallsyms for address exposure (Jiri Olsa) [1311586]
-- [lib] random32: add prandom_init_once helper for own rngs (Jiri Olsa) [1311586]
-- [lib] random32: add prandom_seed_full_state helper (Jiri Olsa) [1311586]
-
-* Fri Jun 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-912.el7]
-- [fs] bio: fix __bio_map_user_iov() (Ming Lei) [1548263]
-- [fs] xfs: detect agfl count corruption and reset agfl (Brian Foster) [1569471]
-- [fs] ext4: remove i_ioend_count (Marco Benatto) [1561142]
-- [fs] nfsd: fix potential use-after-free in nfsd4_decode_getdeviceinfo (Scott Mayhew) [1573426]
-- [fs] xfs: don't fail when converting shortform attr to long form during ATTR_REPLACE (Carlos Maiolino) [1590625]
-- [fs] Fix 16-byte memory leak in gssp_accept_sec_context_upcall (Dave Wysochanski) [1579804]
-- [fs] nfsv4: Fix possible 1-byte stack overflow in nfs_idmap_read_and_verify_message (Dave Wysochanski) [1567623]
-- [fs] dax: remove extra put_dax call (Eric Sandeen) [1588686]
-- [fs] cifs: return error on invalid value written to cifsFYI (Leif Sahlberg) [1539617]
-- [fs] cifs: show the "w" bit for writeable /proc/fs/cifs/* files (Leif Sahlberg) [1539612]
-- [fs] dcache.c: add cond_resched() in shrink_dentry_list() (Aaron Tomlin) [1584693]
-- [fs] fs, dax: use page->mapping to warn if truncate collides with a busy page (Eric Sandeen) [1515087]
-- [fs] ext4, dax: introduce ext4_dax_aops (Eric Sandeen) [1515087]
-- [fs] xfs, dax: introduce xfs_dax_aops (Eric Sandeen) [1515087]
-- [fs] block, dax: remove dead code in blkdev_writepages() (Eric Sandeen) [1515087]
-- [fs] fs, dax: prepare for dax-specific address_space_operations (Eric Sandeen) [1515087]
-- [fs] dax: store pfns in the radix (Eric Sandeen) [1515087]
-- [fs] dax: require 'struct page' by default for filesystem dax (Eric Sandeen) [1515087]
-- [fs] mm, dax: introduce pfn_t_special() (Eric Sandeen) [1515087]
-- [fs] fs/dax.c: release PMD lock even when there is no PMD support in DAX (Eric Sandeen) [1515087]
-- [fs] ext4: auto disable dax instead of failing mount (Eric Sandeen) [1515087]
-- [fs] ext4: fix ENOSPC handling in DAX page fault handler (Eric Sandeen) [1515087]
-- [fs] dax: pass detailed error code from dax_iomap_fault() (Eric Sandeen) [1515087]
-- [fs] dax: fix PMD faults on zero-length files (Eric Sandeen) [1515087]
-- [fs] fs, dax: unify IOMAP_F_DIRTY read vs write handling policy in the dax core (Eric Sandeen) [1515087]
-- [fs] xfs: validate bdev support for DAX inode flag (Eric Sandeen) [1515087]
-- [fs] dax: use PG_PMD_COLOUR instead of open coding (Eric Sandeen) [1515087]
-- [fs] dax: explain how read(2)/write(2) addresses are validated (Eric Sandeen) [1515087]
-- [fs] tools headers: Syncronize mman.h ABI header (Eric Sandeen) [1471784]
-- [fs] xfs: support for synchronous DAX faults (Eric Sandeen) [1471784]
-- [fs] xfs: Implement xfs_filemap_pfn_mkwrite() using __xfs_filemap_fault() (Eric Sandeen) [1471784]
-- [fs] ext4: Support for synchronous DAX faults (Eric Sandeen) [1471784]
-- [fs] ext4: Simplify error handling in ext4_dax_huge_fault() (Eric Sandeen) [1471784]
-- [fs] dax: Implement dax_finish_sync_fault() (Eric Sandeen) [1471784]
-- [fs] dax, iomap: Add support for synchronous faults (Eric Sandeen) [1471784]
-- [fs] mm: Handle 0 flags in _calc_vm_trans() macro (Eric Sandeen) [1471784]
-- [fs] mm: Define MAP_SYNC and VM_SYNC flags (Eric Sandeen) [1471784]
-- [fs] dax: Allow tuning whether dax_insert_mapping_entry() (Eric Sandeen) [1471784]
-- [fs] dax: Allow dax_iomap_fault() to return pfn (Eric Sandeen) [1471784]
-- [fs] dax: Fix comment describing dax_iomap_fault() (Eric Sandeen) [1471784]
-- [fs] dax: Inline dax_pmd_insert_mapping() into the callsite (Eric Sandeen) [1471784]
-- [fs] dax: Inline dax_insert_mapping() into the callsite (Eric Sandeen) [1471784]
-- [fs] dax: initialize variable pfn before using it (Eric Sandeen) [1471784]
-- [fs] dax: Create local variable for vmf->flags & FAULT_FLAG_WRITE test (Eric Sandeen) [1471784]
-- [fs] dax: Create local variable for VMA in dax_iomap_pte_fault() (Eric Sandeen) [1471784]
-- [fs] dax: Factor out getting of pfn out of iomap (Eric Sandeen) [1471784]
-- [fs] dax: Simplify arguments of dax_insert_mapping() (Eric Sandeen) [1471784]
-- [fs] mm: Remove VM_FAULT_HWPOISON_LARGE_MASK (Eric Sandeen) [1471784]
-- [fs] mm: introduce MAP_SHARED_VALIDATE, a mechanism to safely define new mmap flags (Eric Sandeen) [1471784]
-- [fs] xfs: consolidate the various page fault handlers (Eric Sandeen) [1471784]
-- [fs] iomap: return VM_FAULT_* codes from iomap_page_mkwrite (Eric Sandeen) [1471784]
-- [fs] Remove VM_FOP_EXTEND mm flag (Eric Sandeen) [1471784]
-- [fs] dax: move all DAX radix tree defs to fs/dax.c (Eric Sandeen) [1492001]
-- [mm] dax: remove DAX code from page_cache_tree_insert() (Eric Sandeen) [1492001]
-- [fs] dax: use common 4k zero page for dax mmap reads (Eric Sandeen) [1492001]
-- [fs] dax: relocate some dax functions (Eric Sandeen) [1492001]
-- [mm] add vm_insert_mixed_mkwrite() (Eric Sandeen) [1492001]
-- [fs] libceph: fix legacy layout decode with pool 0 (Zheng Yan) [1585072]
-- [fs] rbd: destroy header_oloc in rbd_dev_release() (Zheng Yan) [1585072]
-- [fs] libceph: handle non-empty dest in ceph_{oloc, oid}_copy() (Zheng Yan) [1585072]
-- [fs] ceph: rados pool namespace support (Zheng Yan) [1585072]
-- [fs] libceph: make sure redirect does not change namespace (Zheng Yan) [1585072]
-- [fs] libceph: rados pool namespace support (Zheng Yan) [1585072]
-- [fs] libceph: using kfree_rcu() to simplify the code (Zheng Yan) [1585072]
-- [fs] libceph: introduce reference counted string (Zheng Yan) [1585072]
-- [fs] sunrpc: avoid warning in gss_key_timeout (Benjamin Coddington) [1418807]
-- [fs] sunrpc: Update RPCBIND_MAXNETIDLEN (Benjamin Coddington) [1418807]
-- [fs] NFS: Don't drop CB requests with invalid principals (Benjamin Coddington) [1418807]
-- [fs] NFSv4.1: nfs4_fl_prepare_ds must be careful about reporting success. (Benjamin Coddington) [1418807]
-- [fs] NFSv4: Also ask for attributes when downgrading to a READ-only state (Benjamin Coddington) [1418807]
-- [fs] NFSv4: Fix the underestimation of delegation XDR space reservation (Benjamin Coddington) [1418807]
-- [fs] NFSv4: Fix double frees in nfs4_test_session_trunk() (Benjamin Coddington) [1418807]
-- [fs] NFS: Fix NFSv2 security settings (Benjamin Coddington) [1418807]
-- [fs] NFSv4/pnfs: Fix an infinite layoutget loop (Benjamin Coddington) [1418807]
-- [fs] nfs: system crashes after NFS4ERR_MOVED recovery (Benjamin Coddington) [1418807]
-- [fs] xprtrdma: Fix latency regression on NUMA NFS/RDMA clients (Benjamin Coddington) [1418807]
-- [fs] pNFS: Prevent the layout header refcount going to zero in pnfs_roc() (Benjamin Coddington) [1418807]
-- [fs] NFS: Fix an incorrect type in struct nfs_direct_req (Benjamin Coddington) [1418807]
-- [fs] NFS: reject request for id_legacy key without auxdata (Benjamin Coddington) [1418807]
-- [fs] NFS: Add a cond_resched() to nfs_commit_release_pages() (Benjamin Coddington) [1418807]
-- [fs] SUNRPC: Fix a race in the receive code path (Benjamin Coddington) [1418807]
-- [fs] NFS: Fix typo in nomigration mount option (Benjamin Coddington) [1418807]
-- [fs] nfs: Fix ugly referral attributes (Benjamin Coddington) [1418807]
-- [fs] NFS: Avoid RCU usage in tracepoints (Benjamin Coddington) [1418807]
-- [fs] NFS: revalidate "." etc correctly on "open". (Benjamin Coddington) [1418807]
-- [fs] NFS: Fix uninitialized rpc_wait_queue (Benjamin Coddington) [1418807]
-- [fs] net: sunrpc: svcsock: fix NULL-pointer exception (Benjamin Coddington) [1418807]
-- [fs] NFSv4: Fix EXCHANGE_ID corrupt verifier issue (Benjamin Coddington) [1418807]
-- [fs] NFS: invalidate file size when taking a lock. (Benjamin Coddington) [1418807]
-- [fs] sunrpc: use constant time memory comparison for mac (Benjamin Coddington) [1418807]
-- [fs] NFS: only invalidate dentrys that are clearly invalid. (Benjamin Coddington) [1418807]
-- [fs] pNFS/flexfiles: Check the result of nfs4_pnfs_ds_connect (Benjamin Coddington) [1418807]
-- [fs] svcrpc: fix oops in absence of krb5 module (Benjamin Coddington) [1418807]
-- [fs] nfs: Fix "Don't increment lock sequence ID after NFS4ERR_MOVED" (Benjamin Coddington) [1418807]
-- [fs] SUNRPC: cleanup ida information when removing sunrpc module (Benjamin Coddington) [1418807]
-- [fs] nfs: Don't increment lock sequence ID after NFS4ERR_MOVED (Benjamin Coddington) [1418807]
-- [fs] NFSv4.x: hide array-bounds warning (Benjamin Coddington) [1418807]
-- [fs] NFSv4.1: work around -Wmaybe-uninitialized warning (Benjamin Coddington) [1418807]
-- [fs] sunrpc: fix write space race causing stalls (Benjamin Coddington) [1418807]
-- [fs] NFSv4.x: Fix a refcount leak in nfs_callback_up_net (Benjamin Coddington) [1418807]
-- [fs] sunrpc: Fix bit count when setting hashtable size to power-of-two (Benjamin Coddington) [1418807]
-- [fs] sunrpc: fix stripping of padded MIC tokens (Benjamin Coddington) [1418807]
-- [fs] nfs: fix nfs_size_to_loff_t (Benjamin Coddington) [1418807]
-- [fs] xfs: enhance dinode verifier (Bill O'Donnell) [1574948] {CVE-2018-10322}
-- [fs] xfs: move inode fork verifiers to xfs_dinode_verify (Bill O'Donnell) [1574948] {CVE-2018-10322}
-- [fs] ext4: fix hole length detection in ext4_ind_map_blocks() (Lukas Czerner) [1578707]
-- [fs] ext4: fix interaction between i_size, fallocate, and delalloc after a crash (Lukas Czerner) [1591697]
-- [fs] ext4: fix fencepost error in check for inode count overflow during resize (Lukas Czerner) [1591696]
-- [fs] ext4: do not update s_last_mounted of a frozen fs (Lukas Czerner) [1570889]
-- [fs] ext4: factor out helper ext4_sample_last_mounted() (Lukas Czerner) [1570889]
-- [fs] vfs: add the sb_start_intwrite_trylock() helper (Lukas Czerner) [1570889]
-- [fs] ext4: update mtime in ext4_punch_hole even if no blocks are released (Lukas Czerner) [1496545]
-- [fs] ext4: fail ext4_iget for root directory if unallocated (Lukas Czerner) [1569885] {CVE-2018-1092}
-- [fs] ext4: don't allow r/w mounts if metadata blocks overlap the superblock (Lukas Czerner) [1564561] {CVE-2018-1094}
-- [fs] ext4: set h_journal if there is a failure starting a reserved handle (Lukas Czerner) [1569527]
-- [fs] jbd2: fix use after free in jbd2_journal_start_reserved() (Lukas Czerner) [1442044]
-
-* Thu Jun 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-911.el7]
-- [tools] power turbostat: update version number (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Add Node in output (Prarit Bhargava) [1454489]
-- [tools] power turbostat: add node information into turbostat calculations (Prarit Bhargava) [1454489]
-- [tools] power turbostat: remove num_ from cpu_topology struct (Prarit Bhargava) [1454489]
-- [tools] power turbostat: rename num_cores_per_pkg to num_cores_per_node (Prarit Bhargava) [1454489]
-- [tools] power turbostat: track thread ID in cpu_topology (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Calculate additional node information for a package (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Fix node and siblings lookup data (Prarit Bhargava) [1454489]
-- [tools] power turbostat: set max_num_cpus equal to the cpumask length (Prarit Bhargava) [1454489]
-- [tools] power turbostat: if --num_iterations, print for specific number of iterations (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Add Cannon Lake support (Prarit Bhargava) [1454489]
-- [tools] power turbostat: delete duplicate #defines (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Correct SNB_C1/C3_AUTO_UNDEMOTE defines (Prarit Bhargava) [1454489]
-- [tools] power turbostat: add POLL and POLL column (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Fix --hide Pkpc10 (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Build-in "Low Power Idle" counters support (Prarit Bhargava) [1454489]
-- [tools] power turbostat: a small C-states dump readability immprovement (Prarit Bhargava) [1454489]
-- [tools] power turbostat: Don't make man pages executable (Prarit Bhargava) [1454489]
-- [tools] power turbostat: remove blank lines (Prarit Bhargava) [1454489]
-- [tools] power turbostat: dump BDX, SKX automatic C-state conversion bit (Prarit Bhargava) [1454489]
-- [tools] power turbostat: do not hard-code 25MHz crystal on SKX (Prarit Bhargava) [1454489]
-- [tools] power turbostat: fix possible sprintf buffer overflow (Prarit Bhargava) [1454489]
-- [tools] power turbostat: fix MSR_IA32_MISC_ENABLE MWAIT printout (Prarit Bhargava) [1454489]
-- [tools] power turbostat: fix printing on input (Prarit Bhargava) [1454489]
-- [tools] power turbostat: end current interval upon newline input (Prarit Bhargava) [1454489]
-- [tools] power turbostat: on sigusr1: sample, print and continue (Prarit Bhargava) [1454489]
-- [tools] power turbostat: on sigint: sample, print and exit (Prarit Bhargava) [1454489]
-- [tools] power turbostat: add --enable Time_Of_Day_Seconds (Prarit Bhargava) [1454489]
-- [tools] power turbostat: fix Skylake Xeon package C-state display (Prarit Bhargava) [1454489]
-- [ipc] msg: introduce msgctl(MSG_STAT_ANY) (Joe Lawrence) [1579402]
-- [ipc] sem: introduce semctl(SEM_STAT_ANY) (Joe Lawrence) [1579402]
-- [ipc] shm: introduce shmctl(SHM_STAT_ANY) (Joe Lawrence) [1579402]
-- [char] random: Wake up writers when random pools are zapped (Herbert Xu) [1458419]
-- [crypto] af_alg: Forbid bind(2) when nokey child sockets are present (Herbert Xu) [1555199]
-- [crypto] af_alg: Allow af_af_alg_release_parent to be called on nokey path (Herbert Xu) [1555199]
-- [kernel] seccomp: Sysctl to configure actions that are allowed to be logged (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Operation for checking if an action is available (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Sysctl to display available actions (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Switch from atomic_t to recount_t (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Clean up core dump logic (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Only dump core when single-threaded (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: dump core when using SECCOMP_RET_KILL (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: remove 2-phase API (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Refactor the filter callback and the API (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] seccomp: Remove nr parameter from secure_computing (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [kernel] audit: force seccomp event logging to honor the audit_enabled flag (Bruno Eduardo de Oliveira Meneguele) [1503305]
-- [pinctrl] cannonlake: Align GPIO number space with Windows (David Arcari) [1567849]
-- [pinctrl] intel: Allow custom GPIO base for pad groups (David Arcari) [1567849]
-- [pinctrl] intel: Make offset to interrupt status register configurable (David Arcari) [1567849]
-- [x86] kexec/64: Use gbpages for identity mappings if available (Pingfan Liu) [1503400]
-- [x86] mm: Add support for gbpages to kernel_ident_mapping_init() (Pingfan Liu) [1503400]
-- [x86] kvm: mmu: consider host cache mode in MMIO page check (Jeff Moyer) [1539279]
-- [x86] mm/pat: Export pat_enabled() (Jeff Moyer) [1539279]
-- [x86] mm: add a function to check if a pfn is UC/UC-/WC (Jeff Moyer) [1539279]
-- [x86] kvm: fix LAPIC timer drift when guest uses periodic mode ("Dr. David Alan Gilbert") [1584775]
-- [x86] kvm: remove APIC Timer periodic/oneshot spikes ("Dr. David Alan Gilbert") [1584775]
-- [powerpc] opal-irqchip: Fix deadlock introduced by "Fix double endian conversion" (Gustavo Duarte) [1577105]
-- [powerpc] opal-irqchip: Fix double endian conversion (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Increase opal-irqchip initcall priority (Gustavo Duarte) [1577105]
-- [powerpc] opal: Remove events notifier (Gustavo Duarte) [1577105]
-- [powerpc] powernv/opal-dump: Convert to irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/elog: Convert elog to opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/opal: Convert opal message events to opal irq domain (Gustavo Duarte) [1577105]
-- [powerpc] powernv/eeh: Update the EEH code to use the opal irq domain (Gustavo Duarte) [1577105]
-- [tty] hvc: Convert to using interrupts instead of opal events (Gustavo Duarte) [1577105]
-- [char] ipmi/powernv: Convert to irq event interface (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Reorder OPAL subsystem initialisation (Gustavo Duarte) [1577105]
-- [powerpc] powernv: Add a virtual irqchip for opal events (Gustavo Duarte) [1577105]
-- [scripts] redhat: fix kABI for -mprofile-kernel (Josh Poimboeuf) [1578960]
-- [kernel] redhat: fix kABI for dynamic ftrace on powerpc (Josh Poimboeuf) [1578960]
-- [samples] livepatch: Allow to call a custom callback when freeing shadow variables (Josh Poimboeuf) [1578960]
-- [samples] livepatch: Initialize shadow variables safely by a custom callback (Josh Poimboeuf) [1578960]
-- [samples] livepatch: Remove immediate feature (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Fix livepatch stack access (Josh Poimboeuf) [1578960]
-- [scripts] ftrace: allow architectures to specify ftrace compile options (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: send a fake signal to all blocking tasks (powerpc bits) (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch/powerpc: add TIF_PATCH_PENDING thread flag (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Implement reliable stack tracing for the consistency model (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Add live patching support on ppc64le (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Add livepatch stack to struct thread_info (Josh Poimboeuf) [1578960]
-- [powerpc] livepatch: Add livepatch header (Josh Poimboeuf) [1578960]
-- [kernel] ftrace: Make ftrace_location_range() global (Josh Poimboeuf) [1578960]
-- [powerpc] ftrace: Add Kconfig & Make glue for mprofile-kernel (Josh Poimboeuf) [1578960]
-- [powerpc] modules: Improve restore_r2() error message (Josh Poimboeuf) [1578960]
-- [powerpc] modules: Don't try to restore r2 after a sibling call (Josh Poimboeuf) [1578960]
-- [powerpc] modules: Never restore r2 for a mprofile-kernel style mcount() call (Josh Poimboeuf) [1578960]
-- [powerpc] ftrace: Add support for -mprofile-kernel ftrace ABI (Josh Poimboeuf) [1578960]
-- [powerpc] Use pr_fmt in module loader code (Josh Poimboeuf) [1578960]
-- [powerpc] modules: Add REL24 relocation support of livepatch symbols (Josh Poimboeuf) [1578960]
-- [powerpc] ftrace: Use $(CC_FLAGS_FTRACE) when disabling ftrace (Josh Poimboeuf) [1578960]
-- [powerpc] ftrace: Use generic ftrace_modify_all_code() (Josh Poimboeuf) [1578960]
-- [powerpc] module: Create a special stub for ftrace_caller() (Josh Poimboeuf) [1578960]
-- [powerpc] module: Mark module stubs with a magic value (Josh Poimboeuf) [1578960]
-- [powerpc] module: Only try to generate the ftrace_caller() stub once (Josh Poimboeuf) [1578960]
-- [powerpc] Create a helper for getting the kernel toc value (Josh Poimboeuf) [1578960]
-
-* Thu Jun 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-910.el7]
-- [netdrv] virtio_net: fix adding vids on big-endian (Laurent Vivier) [1585566]
-- [netdrv] mlx5e: Ignore attempts to offload multiple times a TC flow (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Use shared table for offloaded TC eswitch flows (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Prepare for shared table to keep TC eswitch flows (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Add ingress/egress indication for offloaded TC flows (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Offload tc vlan push/pop using HW action (Alaa Hleihel) [1588530]
-- [netdrv] mlx5: Add core support for vlan push/pop steering action (Alaa Hleihel) [1588530]
-- [netdrv] mlx5: Embed mlx5_flow_act into fs_fte (Alaa Hleihel) [1588530]
-- [netdrv] net, ib/mlx5: Add has_tag to mlx5_flow_act (Alaa Hleihel) [1588530]
-- [netdrv] ib/mlx5: Pass mlx5_flow_act struct instead of multiple arguments (Alaa Hleihel) [1588530]
-- [netdrv] mlx5: use tc_cls_can_offload_and_chain0() (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: hide an unused variable (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: E-Switch, Move send-to-vport rule struct to en_rep (Alaa Hleihel) [1591249]
-- [netdrv] mlx5: E-Switch, Create generic header struct to be used by representors (Alaa Hleihel) [1591249]
-- [netdrv] mlx5e: Move ethernet representors data into separate struct (Alaa Hleihel) [1591249]
-- [netdrv] mlx5: E-Switch, Simplify representor load/unload callback API (Alaa Hleihel) [1591249]
-- [netdrv] Bump version for RHEL-7.6 (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Add XDP queue stats reporting (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Delay tail write for XDP packets (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Add support for XDP_TX action (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Add XDP support for pass and drop actions (Ken Cox) [1520661 1518094]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: fix unused variable warning (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: remove redundant initialization of variable 'dma' (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add build_skb support (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: break out Rx buffer page management (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: allocate the rings as part of q_vector (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: make sure all frames fit minimum size requirements (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add support for padding packet (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: setup queue counts (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add support for using order 1 pages to receive large frames (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add ethtool private flag for legacy Rx (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: use page_address offset from page (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: use ARRAY_SIZE for various array sizing calculations (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: don't bother clearing tx_buffer_info in ixgbevf_clean_tx_ring() (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: improve performance and reduce size of ixgbevf_tx_map() (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: clear rx_buffer_info in configure instead of clean (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add counters for Rx page allocations (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: update code to better handle incrementing page count (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add support for DMA_ATTR_SKIP_CPU_SYNC/WEAK_ORDERING (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: use length to determine if descriptor is done (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: only DMA sync frame length (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: add function for checking if we can reuse page (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Fix kernel-doc format warnings (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: remove redundant setting of xcast_mode (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbevf: Use smp_rmb rather than read_barrier_depends (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbe: Initialize 64-bit stats seqcounts (Ken Cox) [1520661 1518094]
-- [netdrv] ixgbe: force VF to grab new MAC on driver reload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe/ixgbevf: Free IRQ when PCI error recovery removes the device (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: cleanup sparse warnings (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix memory leak on ipsec allocation (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: return error on unsupported SFP module when resetting (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] intel: Cleanup the copyright/license headers (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe/fm10k: Drop tracking stats for macvlan broadcast/multicast (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Drop support for macvlan specific unicast lists (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] Use octal not symbolic permissions (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: tweak page counting for XDP_REDIRECT (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: enable TSO with IPsec offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: no need for esp trailer if GSO (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: remove unneeded ipsec test in TX path (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: no need for ipsec csum feature check (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix read-modify-write in x550 phy setup (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add status reg reads to ixgbe_check_remove (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix disabling hide VLAN on VF reset (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Add receive length error counter (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: remove unneeded ipsec state free callback (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix ipsec trailer length (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: check for 128-bit authentication (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: prevent ptp_rx_hang from running when in FILTER_ALL mode (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Avoid to write the RETA table when unnecessary (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: remove redundant initialization of 'pool' (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] Bump version number for RHEL-7.6 (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: don't set RXDCTL.RLPML for 82599 (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix && vs || typo (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add support for reporting 5G link speed (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Don't report unsupported timestamping filters for X550 (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: use ARRAY_SIZE for array sizing calculation on array buf (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: register ipsec offload with the xfrm subsystem (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: ipsec offload stats (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: process the Tx ipsec offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: process the Rx ipsec offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: restore offloaded SAs after a reset (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add ipsec offload add and remove SA (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add ipsec data structures (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add ipsec engine start and stop routines (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add ipsec register access routines (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: clean up ipsec defines (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix kernel-doc format warnings (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix handling of macvlan Tx offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: avoid bringing rings up/down as macvlans are added/removed (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Do not manipulate macvlan Tx queues when performing macvlan offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe/fm10k: Record macvlan stats instead of Rx queue for macvlan offloaded rings (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Don't assume dev->num_tc is equal to hardware TC config (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Default to 1 pool always being allocated (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Assume provided MAC filter has been verified by macvlan (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Drop l2_accel_priv data pointer from ring struct (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Use ring values to test for Tx pending (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix limitations on macvlan so we can support up to 63 offloaded devices (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: deleting dfwd stations out of order can cause null ptr deref (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: There is no need to update num_rx_pools in L2 fwd offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Add support for macvlan offload RSS on X550 and clean-up pool handling (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Perform reinit any time number of VFs change (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix for unused variable warning with certain config (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix interaction between SR-IOV and macvlan offload (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Remove an obsolete comment about ITR (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: extend firmware version support (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: advertise highest capable link speed (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: remove unused enum latency_range (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: enable multicast on shutdown for WOL (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: setup xdp_rxq_info (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix skb list corruption on Power systems (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] bpf: rename ndo_xdp to ndo_bpf (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Fix Tx map failure path (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] intel: Convert timers to use timer_setup() (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix crash when injecting AER after failed reset (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Update adaptive ITR algorithm (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix the FWSM.PT check in ixgbe_mng_present() (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix use of uninitialized padding (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add counter for times Rx pages gets allocated, not recycled (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: split Tx/Rx ring clearing for ethtool loopback test (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add error checks when initializing the PHY (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: restore normal RSS after last macvlan offload is removed (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: declare ixgbe_mac_operations structures as const (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Clear SWFW_SYNC register during init (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: incorrect XDP ring accounting in ethtool tx_frame param (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: Use new PCI_DEV_FLAGS_NO_RELAXED_ORDERING flag (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix masking of bits read from IXGBE_VXLANCTRL register (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: NULL xdp_tx rings on resource cleanup (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] bpf: ixgbe: Report bpf_prog ID during XDP_QUERY_PROG (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: delay tail write to every 'n' packets (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add support for XDP_TX action (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: add XDP support for pass and drop actions (Ken Cox) [1520658 1515550 1519654 1518092]
-- [netdrv] ixgbe: fix build err, num_rx_queues is only available with CONFIG_RPS (Ken Cox) [1520658 1515550 1519654 1518092]
-
-* Wed Jun 20 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-909.el7]
-- [infiniband] iser: Do not reduce max_sectors (Alaa Hleihel) [1484104]
-- [kernel] rdma: Change all uapi headers to use __aligned_u64 instead of __u64 (Don Dutile) [1573883]
-- [kernel] rdma: Do not used __packed in uapi headers (Don Dutile) [1573883]
-- [infiniband] rdma/rxe: Fix uABI structure layouts for 32/64 compat (Don Dutile) [1573883]
-- [infiniband] rxe: Do not use 'struct sockaddr' in a uapi header (Don Dutile) [1573883]
-- [infiniband] rdma/rxe: Use structs to describe the uABI instead of opencoding (Don Dutile) [1573883]
-- [infiniband] rdma/rxe: Get rid of confusing udata parameter to rxe_cq_chk_attr (Don Dutile) [1573883]
-- [kernel] rdma/mlx4: Fix uABI structure layouts for 32/64 compat (Don Dutile) [1573883]
-- [infiniband] ib/mlx4: Move mlx4_uverbs_ex_query_device_resp to uapi/ (Don Dutile) [1573883]
-- [kernel] rdma/qedr: Fix uABI structure layouts for 32/64 compat (Don Dutile) [1573883]
-- [infiniband] rdma/ucma: Fix uABI structure layouts for 32/64 compat (Don Dutile) [1573883]
-- [kernel] rdma: Remove minor pahole differences between 32/64 (Don Dutile) [1573883]
-- [netdrv] e1000e: Ignore TSYNCRXCTL when getting I219 clock attributes (David Arcari) [1589302]
-- [netdrv] wil6210: missing length check in wmi_set_ie (Stanislaw Gruszka) [1590841] {CVE-2018-5848}
-- [netdrv] ethernet: Use octal not symbolic permissions (Ken Cox) [1548145]
-- [netdrv] bnx2: remove redundant initializations of pointers txr and rxr (Ken Cox) [1548145]
-- [netdrv] treewide: setup_timer() -> timer_setup() (Ken Cox) [1548145]
-- [netdrv] aquantia: driver should correctly declare vlan_features bits (Igor Russkikh) [1542881]
-- [netdrv] net: aquantia: fix unsigned numvecs comparison with less than zero (Igor Russkikh) [1586233]
-- [netdrv] net: aquantia: Limit number of vectors to actually allocated irqs (Igor Russkikh) [1586233]
-- [netdrv] cxgb4: do not fail vf instatiation in slave mode (Arjun Vynipadath) [1555206]
-- [netdrv] cxgb4/cxgb4vf: Notify link changes to OS-dependent code (Arjun Vynipadath) [1577743]
-- [netdrv] cxgb4: copy the length of cpl_tx_pkt_core to fw_wr (Arjun Vynipadath) [1579351]
-- [netdrv] cxgb4: avoid schedule while atomic (Arjun Vynipadath) [1579351]
-- [netdrv] cxgb4: enable inner header checksum calculation (Arjun Vynipadath) [1579351]
-- [netdrv] cxgb4: Fix (vxlan/geneve)_port initialization (Arjun Vynipadath) [1579351]
-- [netdrv] remove AMD xgbe mark_hardware_unsupported quirk (David Arcari) [1589397]
-- [netdrv] amd-xgbe: mark driver as tech preview (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Improve SFP 100Mbps auto-negotiation (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Update the BelFuse quirk to support SGMII (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Advertise FEC support with the KR re-driver (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Always attempt link training in KR mode (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add ethtool show/set channels support (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Prepare for ethtool set-channel support (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add ethtool show/set ring parameter support (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add ethtool support to retrieve SFP module info (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Remove field that indicates SFP diagnostic support (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Remove use of comm_owned field (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Read and save the port property registers during probe (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fix debug output of max channel counts (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Only use the SFP supported transceiver signals (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Improve KR auto-negotiation and training (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add pre/post auto-negotiation phy hooks (David Arcari) [1589397]
-- [netdrv] Use octal not symbolic permissions (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Restore PCI interrupt enablement setting on resume (David Arcari) [1589397]
-- [netdrv] amd-xgbe: fix comparison to bitshift when dealing with a mask (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Get rid of custom hex_dump_to_buffer() (David Arcari) [1589397]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (David Arcari) [1589397]
-- [netdrv] amd: Convert timers to use timer_setup() (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Interrupt summary bits are h/w version dependent (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add additional ethtool statistics (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add support for VXLAN offload capabilities (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Convert to using the new link mode settings (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add per queue Tx and Rx statistics (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add hardware features debug output (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Optimize DMA channel interrupt enablement (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add additional dynamic debug messages (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add support to handle device renaming (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Update TSO packet statistics accuracy (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Be sure driver shuts down cleanly on module removal (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Set the MII control width for the MAC interface (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Set the MDIO mode for 10000Base-T configuration (David Arcari) [1589397]
-- [netdrv] add missing interrupt.h include (David Arcari) [1589397]
-- [netdrv] amd-xgbe: fix spelling mistake: "avialable" -> "available" (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Adjust register settings to improve performance (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Simplify the burst length settings (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Prepare for more fine grained cache coherency controls (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add NUMA affinity support for IRQ hints (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add NUMA affinity support for memory allocations (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Re-issue interrupt if interrupt status not cleared (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Limit the I2C error messages that are output (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fixes for working with PHYs that support 2.5GbE (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Handle return code from software reset function (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Prevent looping forever if timestamp update fails (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Add a check for an skb in the timestamp path (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Use the proper register during PTP initialization (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fix SFP PHY supported/advertised settings (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Simplify mailbox interface rate change code (David Arcari) [1589397]
-- [netdrv] amd-xgbe: use PAGE_ALLOC_COSTLY_ORDER in xgbe_map_rx_buffer (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fix the ECC-related bit position definitions (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Fix jumbo MTU processing on newer hardware (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Enable IRQs only if napi_complete_done() is true (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Don't overwrite SFP PHY mod_absent settings (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Be sure to set MDIO modes on device (re)start (David Arcari) [1589397]
-- [netdrv] amd-xgbe: Stop the PHY before releasing interrupts (David Arcari) [1589397]
-- [netdrv] amd-xgbe: use centralized core mtu check (David Arcari) [1589397]
-- [netdrv] use net core MTU range checking in more drivers (David Arcari) [1589397]
-- [netdrv] configs: enable build of amd xgbe network driver (David Arcari) [1589397]
-- [netdrv] intel: Cleanup the copyright/license headers (Corinna Vinschen) [1518106]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Corinna Vinschen) [1518106]
-- [netdrv] igbvf: Use smp_rmb rather than read_barrier_depends (Corinna Vinschen) [1518106]
-- [netdrv] intel: Cleanup the copyright/license headers (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add support for adding offloaded clsflower filters (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add the skeletons for tc-flower offloading (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add MAC address support for ethtool nftuple filters (Corinna Vinschen) [1518105]
-- [netdrv] igb: Enable nfc filters to specify MAC addresses (Corinna Vinschen) [1518105]
-- [netdrv] igb: Allow filters to be added for the local MAC address (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add support for enabling queue steering in filters (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add support for MAC address filters specifying source addresses (Corinna Vinschen) [1518105]
-- [netdrv] igb: Enable the hardware traffic class feature bit for igb models (Corinna Vinschen) [1518105]
-- [netdrv] igb: Fix queue selection on MAC filters on i210 (Corinna Vinschen) [1518105]
-- [netdrv] igb: Fix not adding filter elements to the list (Corinna Vinschen) [1518105]
-- [netdrv] igb: Fix the transmission mode of queue 0 for Qav mode (Corinna Vinschen) [1518105]
-- [netdrv] Use octal not symbolic permissions (Corinna Vinschen) [1518105]
-- [netdrv] intel: add SPDX identifiers to all the Intel drivers (Corinna Vinschen) [1518105]
-- [netdrv] igb: Fix a test with HWTSTAMP_TX_ON (Corinna Vinschen) [1518105]
-- [netdrv] igb: Do not call netif_device_detach() when PCIe link goes missing (Corinna Vinschen) [1518105]
-- [netdrv] igb: Clear TXSTMP when ptp_tx_work() is timeout (Corinna Vinschen) [1518105]
-- [netdrv] igb: Delete an error message for a failed memory allocation in igb_enable_sriov() (Corinna Vinschen) [1518105]
-- [netdrv] igb: Free IRQs when device is hotplugged (Corinna Vinschen) [1518105]
-- [netdrv] igb: Clarify idleslope config constraints (Corinna Vinschen) [1518105]
-- [netdrv] igb: add function to get maximum RSS queues (Corinna Vinschen) [1518105]
-- [netdrv] igb: Allow to remove administratively set MAC on VFs (Corinna Vinschen) [1518105]
-- [netdrv] net_sch: cbs: Change TC_SETUP_CBS to TC_SETUP_QDISC_CBS (Corinna Vinschen) [1518105]
-- [netdrv] igb: Add support for CBS offload (Corinna Vinschen) [1518105]
-- [netdrv] locking/atomics: coccinelle/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE() (Corinna Vinschen) [1518105]
-- [netdrv] intel: Convert timers to use timer_setup() (Corinna Vinschen) [1518105]
-
-* Wed Jun 20 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-908.el7]
-- [pci] Allow release of resources that were never assigned (Rob Clark) [1519691 1515623 1566644]
-- [gpu] drm/nouveau/gr/gf100-: insert some WFIs during gr init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/clk: Use list_for_each_entry_from_reverse (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: fix temp/pwm visibility, skip hwmon when no sensors exist (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: fix nouveau_dsm_get_client_id()'s return type (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: fix mode_valid's return type (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/ce/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/dma/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/therm/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/pmu/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fault/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/bar/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/mmu/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/ltc/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fb/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/imem/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/tmr/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/bus/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/mc/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fuse/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/i2c/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gpio/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/ibus/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/top/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/devinit/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/bios/pll: limits table 5.0 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/bios/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/pci/gv100: initial support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/core: recognise gv100 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/core: increase maximum number of copy engines to 9 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: initial overlay support (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/gk104-: add support for (XA)2R10G10B10 formats (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/gk104-: support additional cursor sizes (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: separate blocklinear vs linear pitch (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: handle degamma LUT from window channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: plane updates don't always require image_set() (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: store window visibility in state (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: simplify swap interval handling (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: decouple window state changes, and update method submisssion (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: simplify tracking of channel interlocks (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: determine MST support from DP Info Table (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: extend window image data for stereo/planar formats (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: move drm format->hw conversion into common code (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: unify set/clr masks (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: allow specification of valid heads for a window (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: split base implementation by hardware class (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: split core implementation by hardware class (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: split each resource type into their own source files (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50: abstract OR interfaces so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50: handle SetControlOutputResource from head (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: abstract head interfaces so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50: modify core allocation so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: modify base allocation so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: modify cursor allocation so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: modify overlay allocation so the code can be split (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: move fb ctxdma tracking into windows (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: fix i2c-over-aux on anx9805 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms/nv50-: move code underneath dispnv50/ (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/kms: move display class instantiation to library (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/drm/nv50-: remove allocation of sw class (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: no need to create ctxdma for push buffers on fermi and up (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: remove fence wait code from deferred client work handler (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gem: tie deferred unmapping of buffers to VMA fence completion (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gem: attach fences to VMAs to track GPU usage (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gem: lookup VMAs for buffers referenced by pushbuf ioctl (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gp102-: setup stencil zbc (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gp100-: use correct registers for zbc colour/depth setup (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gp100-: fix attrib cb setup (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gp100-: fix pagepool setup (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-gm10x: update register lists (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: swap bundle and pagepool (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: calculate and use sm mapping table (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: port zcull tile mapping calculations from NVGPU (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: port tile mapping calculations from NVGPU (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise trap_mp (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: add missing reset sequence before golden context init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: delete duplicated grctx init code (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: update r408840 where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: update 419a3c where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r418e94 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r419e00 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: update 419eb0 where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: note missing 418800 modifications (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-gf119: update 419cb8 where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: support firmware-provided bundle/method everywhere (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise tpc_mask + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r419f78 + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise gpc_tpc_nr (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r406500 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise dist_skip_table + improve algorithm (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-gf119: modify max_ways_evict where required (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise alpha_beta_tables + improve algorithms (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise rop_mapping (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r4060a8 + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise tpc_per_gpc (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise sm_id/tpc_nr (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise patch_ltc, noting missing init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: support firmware-provided sw_ctx everywhere (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: delete duplicated init code (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_400054 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: apply be exception fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_shader_exceptions (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_504430 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_tex_hww_esr (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_ppc_exceptions (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_419c9c + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_419eb4 + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_419cc0 + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_sked_hww_esr (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_40601c (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_ds_hww_esr_2 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_fecs_exceptions + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100: write 0x400124 during init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_swdx_pes_mask (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: implement another chunk of bios-provided init (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_rop_active_fbps (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_num_active_ltcs (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_zcull (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_vsc_stream_master (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_bios (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: support clkgate_pack everywhere (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise r405a14 (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: support firmware-provided sw_nonctx everywhere (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/gr/gf100-: virtualise init_gpc_mmu + apply fixes from traces (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gp100-: force individual channels into a channel group (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gm107-: write instance address in channel runlist entry (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk208-: write pbdma timeout regs during initialisation (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk110-: support writing channel group runlist entries (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: poll for runlist update completion (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: add interfaces to support different runlist layouts (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: simplify definition of channel classes (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: require explicit runlist selection for channel allocation (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: support querying engines available on each runlist (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: allow fault recovery code to be called by other subdevs (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo/gk104-: accept engine contexts for CE3 and up (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fifo: support channel count query (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/device: support querying available engines of a specific type (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/device: implement a generic method to query device-specific properties (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: pass nvkm_memory objects for channel push buffers (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: add channel interfaces to control error interrupts (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: add channel interfaces to determine the user area (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: merge handling of pio and dma channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definiton of core channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definition of cursor channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definition of base channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definition of overlay immediate channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: simplify definition of overlay channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: replace user object with engine pointer in channels (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: initialise from the engine, rather than the user object (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: fetch mask of available piors during oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: fetch mask of available sors during oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: fetch mask of available dacs during oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: fetch mask of available heads during oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/disp/nv50-: delay subunit construction until oneinit (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fb/gm200-: fix overwriting of big page setting (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fb/gf100-: bump size of mmu debug buffers to match big page size (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fault/gp100: implement replayable fault buffer initialisation (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/fault: add infrastructure to support fault buffers (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/mc/gp100-: route fault buffer interrupts to FAULT (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/core: define FAULT subdev (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau/secboot: remove VLA usage (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm/nouveau: nouveau: use larger buffer in nvif_vmm_map (Rob Clark) [1519691 1515623 1457161]
-- [gpu] drm: backport from v4.17-rc7 (Rob Clark) [1519691 1515623 1523966 1520590 1515620 1515612 1519677 1519297 1517646]
-- [gpu] debugfs: Add debugfs_create_ulong() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] vfio: Simplify capability helper (Rob Clark) [1519691 1515623 1566644]
-- [gpu] vfio/pci: Intel IGD OpRegion support (Rob Clark) [1519691 1515623 1566644]
-- [gpu] vfio: ABI for mdev display dma-buf operation (Rob Clark) [1519691 1515623 1566644]
-- [gpu] x86/early-quirks: replace the magical increment start values (Rob Clark) [1519691 1515623 1566644]
-- [gpu] x86/early-quirks: export the stolen region as a resource (Rob Clark) [1519691 1515623 1566644]
-- [gpu] x86/early-quirks: Extend Intel graphics stolen memory placement to 64bit (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lib/scatterlist: Introduce and export __sg_alloc_table_from_pages (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lockdep: Introduce lock_acquire_exclusive()/shared() helper macros (Rob Clark) [1519691 1515623 1566644]
-- [gpu] ext4: avoid Y2038 overflow in recently_deleted() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] sched/nohz: Fix overflow error in scheduler_tick_max_deferment() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/task.h> (Rob Clark) [1519691 1515623 1566644]
-- [gpu] ratelimit: extend to print suppressed messages on release (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lib/string.c: add multibyte memset functions (Rob Clark) [1519691 1515623 1566644]
-- [gpu] x86/platform/intel/iosf_mbi: Add unlocked PMIC bus access notifier unregister (Rob Clark) [1519691 1515623 1566644]
-- [gpu] stddef.h: Introduce sizeof_field() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] pci: Add pci_enable_atomic_ops_to_root() (Rob Clark) [1519691 1515623 1566644]
-- [gpu] pci: Add pci_resize_resource() for resizing BARs (Rob Clark) [1519691 1515623 1566644]
-- [gpu] pci: Add resizable BAR infrastructure (Rob Clark) [1519691 1515623 1566644]
-- [gpu] pci: Add PCI resource type mask #define (Rob Clark) [1519691 1515623 1566644]
-- [gpu] math64, timers: Fix 32bit mul_u64_u32_shr() and friends (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lib/scatterlist: Avoid potential scatterlist entry overflow (Rob Clark) [1519691 1515623 1566644]
-- [gpu] lib/scatterlist: Fix offset type in sg_alloc_table_from_pages (Rob Clark) [1519691 1515623 1566644]
-
-* Mon Jun 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-907.el7]
-- [documentation] media: make symlink path relative (Bruno Eduardo de Oliveira Meneguele) [1128571]
-- [netdrv] bnxt_en: Add support for ndo_set_vf_trust (Jonathan Toppins) [1449512]
-- [security] selinux: kasan: slab-out-of-bounds in xattr_getsecurity (Paul Moore) [1584307]
-- [ipc] shm.c: add split function to shm_vm_ops (Desnes Augusto Nunes do Rosario) [1586152]
-- [pci] hv: Make sure the bus domain is really unique (Vitaly Kuznetsov) [1551091]
-- [acpi] pci: pci_link: Allow the absence of _PRS and change log level (Al Stone) [1574308]
-- [acpi] acpica: Recognize the _OSI string "Windows 2017.2" (Jarod Wilson) [1495223]
-- [acpi] acpica: Recognize the Windows 10 version 1607 and 1703 OSI strings (Jarod Wilson) [1495223]
-- [thunderbolt] Handle NULL boot ACL entries properly (Jarod Wilson) [1495223]
-- [thunderbolt] Prevent crash when ICM firmware is not running (Jarod Wilson) [1495223]
-- [pci] Improve "partially hidden behind bridge" log message (Jarod Wilson) [1495223]
-- [pci] Improve pci_scan_bridge() and pci_scan_bridge_extend() doc (Jarod Wilson) [1495223]
-- [pci] Move resource distribution for single bridge outside loop (Jarod Wilson) [1495223]
-- [pci] Account for all bridges on bus when distributing bus numbers (Jarod Wilson) [1495223]
-- [pci] acpi / hotplug / pci: Drop unnecessary parentheses (Jarod Wilson) [1495223]
-- [pci] acpi / hotplug / pci: Mark stale PCI devices disconnected (Jarod Wilson) [1495223]
-- [pci] acpi / hotplug / pci: Don't scan bridges managed by native hotplug (Jarod Wilson) [1495223]
-- [pci] hotplug: Add hotplug_is_native() (Jarod Wilson) [1495223]
-- [pci] shpchp: Add shpchp_is_native() (Jarod Wilson) [1495223]
-- [pci] shpchp: Use dev_printk() for OSHP-related messages (Jarod Wilson) [1495223]
-- [pci] shpchp: Remove get_hp_hw_control_from_firmware() wrapper (Jarod Wilson) [1495223]
-- [pci] shpchp: Remove acpi_get_hp_hw_control_from_firmware() flags (Jarod Wilson) [1495223]
-- [pci] shpchp: Rely on previous _OSC results (Jarod Wilson) [1495223]
-- [pci] shpchp: Request SHPC control via _OSC when adding host bridge (Jarod Wilson) [1495223]
-- [pci] shpchp: Convert SHPC to be builtin only (Jarod Wilson) [1495223]
-- [pci] pciehp: Make pciehp_is_native() stricter (Jarod Wilson) [1495223]
-- [pci] pciehp: Rename host->native_hotplug to host->native_pcie_hotplug (Jarod Wilson) [1495223]
-- [pci] pciehp: Request control of native hotplug only if supported (Jarod Wilson) [1495223]
-- [pci] pciehp: Clear Presence Detect and Data Link Layer Status Changed on resume (Jarod Wilson) [1495223]
-- [pci] portdrv: Rename and reverse sense of pcie_ports_auto (Jarod Wilson) [1495223]
-- [pci] portdrv: Remove unnecessary "pcie_ports=auto" parameter (Jarod Wilson) [1495223]
-- [pci] portdrv: Encapsulate pcie_ports_auto inside the port driver (Jarod Wilson) [1495223]
-- [pci] portdrv: Remove unnecessary include of <linux/pci-aspm.h> (Jarod Wilson) [1495223]
-- [pci] portdrv: Simplify PCIe feature permission checking (Jarod Wilson) [1495223]
-- [pci] portdrv: Disable port driver in compat mode (Jarod Wilson) [1495223]
-- [x86] pci/acpi: Fix regression caused by commit 4d6b4e69a245 (Jarod Wilson) [1495223]
-- [x86] pci/acpi: Use common interface to support PCI host bridge (Jarod Wilson) [1495223]
-- [x86] acpi/pci: Reset acpi_root_dev->domain to 0 when pci_ignore_seg is set (Jarod Wilson) [1495223]
-- [acpi] Add interface acpi_pci_root_create() (Jarod Wilson) [1495223]
-- [acpi] pci: Enhance ACPI core to support sparse IO space (Jarod Wilson) [1495223]
-- [pci] acpi / hotplug / pci: Check presence of slot itself in get_slot_status() (Jarod Wilson) [1495223]
-- [pci] Add wrappers for dev_printk() (Jarod Wilson) [1495223]
-- [tools] perf tests: Use arch__compare_symbol_names to compare symbols (Jiri Olsa) [1441815]
-- [tools] perf evsel: Fix swap for samples with raw data (Jiri Olsa) [1458228]
-- [tools] perf report: Fix regression when decoding intel_pt traces (Jiri Olsa) [1458228]
-- [tools] perf tools: Optimize sample parsing for ordered events (Jiri Olsa) [1458228]
-- [tools] perf ordered_events: Pass timestamp arg in perf_session__queue_event (Jiri Olsa) [1458228]
-- [tools] perf evlist: Add perf_evlist__parse_sample_timestamp function (Jiri Olsa) [1458228]
-- [tools] perf evsel: Centralize perf_sample initialization (Jiri Olsa) [1458228]
-- [kernel] sched/sysctl: Check user input value of sysctl_sched_time_avg (Lauro Ramos Venancio) [1579131]
-- [kernel] sched/deadline: Add documentation about GRUB reclaiming (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Reclaim bandwidth not used by dl tasks (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Base GRUB reclaiming on the inactive utilization (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Track the "total rq utilization" too (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Make GRUB a task's flag (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Do not reclaim the whole CPU bandwidth (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Implement GRUB accounting (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Fix the update of the total -deadline utilization (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Improve the tracking of active utilization (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Track the active utilization (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/deadline: Remove useless parameter from setup_new_dl_entity() (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/core: Fix remote wakeups (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/fair: Prepare to fix fairness problems on migration (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/core: Kill sched_class::task_waking to clean up the migration logic (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/fair: Prepare to fix fairness problems on migration (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/fair: Move record_wakee() (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/core: Fix task and run queue sched_info::run_delay inconsistencies (Lauro Ramos Venancio) [1425563]
-- [kernel] sched: Teach scheduler to understand TASK_ON_RQ_MIGRATING state (Lauro Ramos Venancio) [1425563]
-- [kernel] sched: Add wrapper for checking task_struct::on_rq (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/debug: Fix SCHED_WARN_ON() to return a value on !CONFIG_SCHED_DEBUG as well (Lauro Ramos Venancio) [1425563]
-- [kernel] sched/debug: Add SCHED_WARN_ON() (Lauro Ramos Venancio) [1425563]
-- [vfio] mdev: Re-order sysfs attribute creation (Alex Williamson) [1578258]
-- [vfio] mdev: Check globally for duplicate devices (Alex Williamson) [1578258]
-- [scsi] balance out autopm get/put calls in scsi_sysfs_add_sdev() (Eda Zhou) [1585794]
-- [scsi] use device_remove_file_self() instead of device_schedule_callback() (Eda Zhou) [1585794]
-- [nvme] allow duplicate controller if prior controller being deleted (Ewan Milne) [1584753]
-- [nvme] nvmet-fc: increase LS buffer count per fc port (Ewan Milne) [1584753]
-- [nvme] nvme-fabrics: remove unnecessary controller subnqn validation (Ewan Milne) [1584753]
-- [nvme] nvme-fc: remove setting DNR on exception conditions (Ewan Milne) [1584753]
-- [nvme] nvmet: switch loopback target state to connecting when resetting (Ewan Milne) [1584753]
-- [nvme] fix potential memory leak in option parsing (Ewan Milne) [1584753]
-- [nvme] expand nvmf_check_if_ready checks (Ewan Milne) [1584753]
-- [mm] compaction: release zone irqlock in isolate_freepages_block (Andrea Arcangeli) [1582793]
-- [mm] compaction: change the timing to check to drop the spinlock (Andrea Arcangeli) [1582793]
-- [fs] proc: do not access cmdline nor environ from file-backed areas (Oleg Nesterov) [1576338] {CVE-2018-1120}
-- [mm] replace access_process_vm() write parameter with gup_flags (Oleg Nesterov) [1576338]
-- [mm] replace access_remote_vm() write parameter with gup_flags (Oleg Nesterov) [1576338]
-- [mm] introduce get_user_pages_remote_flags() for __access_remote_vm() (Oleg Nesterov) [1576338]
-- [mm] replace __access_remote_vm() write parameter with gup_flags (Oleg Nesterov) [1576338]
-- [scsi] libsas: direct call probe and destruct (Tomas Henzl) [1560189] {CVE-2017-18232}
-- [x86] add _TIF_UPROBE to _TIF_DO_NOTIFY_MASK (Oleg Nesterov) [1579521]
-
-* Fri Jun 15 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-906.el7]
-- [infiniband] rdma/bnxt_re: Fix broken RoCE driver due to recent L2 driver changes (Jonathan Toppins) [1526120]
-- [kernel] dim: Support adaptive TX moderation (Jonathan Toppins) [1526120]
-- [kernel] dim: Rename *_get_profile() functions to *_get_rx_moderation() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Fix NULL pointer dereference at bnxt_free_irq() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Need to include RDMA rings in bnxt_check_rings() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Support max-mtu with VF-reps (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Ignore src port field in decap filter nodes (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: do not allow wildcard matches for L2 flows (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Fix ethtool -x crash when device is down (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add ULP calls to stop and restart IRQs (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Reserve completion rings and MSIX for bnxt_re RDMA driver (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Refactor bnxt_need_reserve_rings() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add IRQ remapping logic (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Change IRQ assignment for RDMA driver (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Improve ring allocation logic (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: fix clear flags in ethtool reset handling (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Check max_tx_scheduler_inputs value from firmware (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Update firmware interface to 1.9.1.15 (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Improve resource accounting for SRIOV (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Improve valid bit checking in firmware response message (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Check valid VNIC ID in bnxt_hwrm_vnic_set_tpa() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: close & open NIC, only when the interface is in running state (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Return standard Linux error codes for hwrm flow cmds (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Fix regressions when setting up MQPRIO TX rings (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Pass complete VLAN TCI to the stack (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Remove unwanted ovs-offload messages in some conditions (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Fix vnic accounting in the bnxt_check_rings() path (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Refactor the functions to reserve hardware rings (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: cleanup DIM work on device shutdown (Jonathan Toppins) [1526120]
-- [netdrv] bnxt: use tc_cls_can_offload_and_chain0() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add cache line size setting to optimize performance (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Forward VF MAC address to the PF (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add BCM5745X NPAR device IDs (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Expand bnxt_check_rings() to check all resources (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Implement new method for the PF to assign SRIOV resources (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Reserve resources for RFS (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Implement new method to reserve rings (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Set initial default RX and TX ring numbers the same in combined mode (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Add the new firmware API to query hardware resources (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Refactor hardware resource data structures (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Restore MSIX after disabling SRIOV (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Refactor bnxt_close_nic() (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Update firmware interface to 1.9.0 (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: don't update cpr->rx_bytes with uninitialized length len (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: add support for software dynamic interrupt moderation (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: setup xdp_rxq_info (Jonathan Toppins) [1526120]
-- [netdrv] broadcom: Use zeroing memory allocator than allocator/memset (Jonathan Toppins) [1526120]
-- [netdrv] bnxt_en: Use NETIF_F_GRO_HW (Jonathan Toppins) [1526120]
-- [netdrv] bnxt: delete some unreachable code (Jonathan Toppins) [1526120]
-- [kernel] dim: Fix fixpoint divide exception in net_dim_stats_compare (Jonathan Toppins) [1526120]
-- [net] Rename NETEVENT_MULTIPATH_HASH_UPDATE (Ivan Vecera) [1585245]
-- [net] ipv4: Send a netevent whenever multipath hash policy is changed (Ivan Vecera) [1585245]
-- [net] sched: fix tc_u_common lookup (Ivan Vecera) [1584592]
-- [net] sched: don't set q pointer for shared blocks (Ivan Vecera) [1584592]
-- [net] sched: silence uninitialized parent variable warning in tc_dump_tfilter (Ivan Vecera) [1584592]
-- [net] sched: allow ingress and clsact qdiscs to share filter blocks (Ivan Vecera) [1584592]
-- [net] sched: introduce ingress/egress block index attributes for qdisc (Ivan Vecera) [1584592]
-- [net] sched: use block index as a handle instead of qdisc when block is shared (Ivan Vecera) [1584592]
-- [net] sched: keep track of offloaded filters and check tc offload feature (Ivan Vecera) [1584592]
-- [net] sched: remove classid and q fields from tcf_proto (Ivan Vecera) [1584592]
-- [net] sched: remove handle propagation down to the drivers (Ivan Vecera) [1584592]
-- [net] sched: introduce block mechanism to handle netif_keep_dst calls (Ivan Vecera) [1584592]
-- [net] sched: avoid usage of tp->q in tcf_classify (Ivan Vecera) [1584592]
-- [net] sched: introduce shared filter blocks infrastructure (Ivan Vecera) [1584592]
-- [net] sched: introduce support for multiple filter chain pointers registration (Ivan Vecera) [1584592]
-- [net] sched: prio: work around gcc-4.4.4 union initializer issues (Ivan Vecera) [1584297]
-- [net] sched: prio: Add offload ability to PRIO qdisc (Ivan Vecera) [1584297]
-- [net] sched: red: avoid hashing NULL child (Ivan Vecera) [1583702]
-- [net] sched: red: don't reset the backlog on every stat dump (Ivan Vecera) [1583702]
-- [net] sched: red: Change the name of the stats struct to be generic (Ivan Vecera) [1583702]
-- [net] sched: red: Avoid illegal values (Ivan Vecera) [1583702]
-- [net] sched: Move offload check till after dump call (Ivan Vecera) [1583702]
-- [net] sched: red: Fix the new offload indication (Ivan Vecera) [1583702]
-- [net] sched: Remove TC_RED_OFFLOADED from uapi (Ivan Vecera) [1583702]
-- [net] sched: Move to new offload indication in RED (Ivan Vecera) [1583702]
-- [net] sched: Add TCA_HW_OFFLOAD (Ivan Vecera) [1583702]
-- [net] sched: red: work around gcc-4.4.4 anon union initializer issue (Ivan Vecera) [1583702]
-- [net] sched: mqprio: Change TC_SETUP_MQPRIO to TC_SETUP_QDISC_MQPRIO (Ivan Vecera) [1583702]
-- [net] sched: red: Add offload ability to RED qdisc (Ivan Vecera) [1583702]
-- [net] ip_tunnel: Rename & publish init_tunnel_flow (Ivan Vecera) [1585256]
-- [net] gre: Add is_gretap_dev, is_ip6gretap_dev (Ivan Vecera) [1585256]
-- [net] bridge: Export bridge multicast router state (Ivan Vecera) [1585206]
-- [net] bridge: Notify on bridge device mrouter state changes (Ivan Vecera) [1585206]
-- [net] vsock: set POLLOUT | POLLWRNORM for TCP_CLOSING (Stefan Hajnoczi) [1534473]
-- [net] xdp: move struct xdp_buff from filter.h to xdp.h (Neil Horman) [1569087]
-- [net] xdp: transition into using xdp_frame for return API (Neil Horman) [1569087]
-- [net] xdp: introduce a new xdp_frame type (Neil Horman) [1569087]
-- [net] xdp: introduce xdp_return_frame API and use in cpumap (Neil Horman) [1569087]
-- [net] xdp: setup xdp_rxq_info and intro xdp_rxq_info_is_reg (Neil Horman) [1569087]
-- [net] xdp: Add batching support to redirect map (Neil Horman) [1569087]
-- [net] xdp: add trace event for xdp redirect (Neil Horman) [1569087]
-- [net] xdp: add bpf_redirect helper function (Neil Horman) [1569087]
-- [net] ipv6: addrconf: don't evaluate keep_addr_on_down twice (Ivan Vecera) [1500871]
-- [net] ipv6: addrconf: increment ifp refcount before ipv6_del_addr() (Ivan Vecera) [1500871]
-- [net] ipv6: Regenerate host route according to node pointer upon interface up (Ivan Vecera) [1500871]
-- [net] ipv6: Do not duplicate DAD on link up (Ivan Vecera) [1500871]
-- [net] ipv6: regenerate host route if moved to gc list (Ivan Vecera) [1500871]
-- [net] ipv6: Fix idev->addr_list corruption (Ivan Vecera) [1500871]
-- [net] ipv6: use list_move instead of list_del/list_add (Ivan Vecera) [1500871]
-- [net] ipv6: Do not keep IPv6 addresses when IPv6 is disabled (Ivan Vecera) [1500871]
-- [net] ipv6: Always leave anycast and multicast groups on link down (Ivan Vecera) [1500871]
-- [net] ipv6: Delete host routes on an ifdown (Ivan Vecera) [1500871]
-- [net] ipv6: Do not keep linklocal and loopback addresses (Ivan Vecera) [1500871]
-- [net] ipv6: Fix refcnt on host routes (Ivan Vecera) [1500871]
-- [net] ipv6/l3mdev: Move host route on saved address if necessary (Ivan Vecera) [1500871]
-- [net] ipv6: Make address flushing on ifdown optional (Ivan Vecera) [1500871]
-- [net] bridge: check brport attr show in brport_show (Xin Long) [1540810]
-
-* Wed Jun 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-905.el7]
-- [misc] vmware balloon: Treat init like reset (Cathy Avery) [1540110]
-- [kernel] pidns: Don't have unshare(CLONE_NEWPID) imply CLONE_THREAD (Oleg Nesterov) [1577745]
-- [md] dm crypt: allow unaligned bv_offset (Mike Snitzer) [1571803]
-- [md] dm crypt: reject sector_size feature if device length is not aligned to it (Mike Snitzer) [1571803]
-- [md] dm crypt: use shifts instead of sector_div (Mike Snitzer) [1571803]
-- [md] dm crypt: optionally support larger encryption sector size (Mike Snitzer) [1571803]
-- [md] dm crypt: factor out crypt_ctr_optional (Mike Snitzer) [1571803]
-- [md] avoid NULL dereference to queue pointer (Ming Lei) [1581845]
-- [scsi] aacraid: Correct hba_send to include iu_type (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Insure command thread is not recursively stopped (Raghava Aditya Renukunta) [1519664]
-- [scsi] treewide: Fix typos in printk (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Auto detect INTx or MSIx mode during sync cmd processing (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Preserve MSIX mode in the OMR register (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Implement DropIO sync command (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: fix shutdown crash when init fails (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Delay for rescan worker needs to be 10 seconds (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Get correct lun count (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: remove redundant setting of variable c (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix driver oops with dead battery (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Update driver version to 50877 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove AAC_HIDE_DISK check in queue command (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove unused rescan variable (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Skip schedule rescan in case of kdump (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix hang while scanning in eh recovery (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Reschedule host scan in case of failure (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Use hotplug handling function in place of scsi_scan_host (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Block concurrent hotplug event handling (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Merge adapter setup with resolve luns (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Refactor resolve luns code and scsi functions (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Added macros to help loop through known buses and targets (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Process hba and container hot plug events in single function (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Merge func to get container information (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add helper function to set queue depth (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Save bmic phy information for each phy (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Create helper functions to get lun info (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Move function around to match existing code (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Untangle targets setup from report phy luns (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add target setup helper function (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Refactor and rename to make mirror existing changes (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Change phy luns function to use common bmic function (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Create bmic submission function from bmic identify (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Move code to wait for IO completion to shutdown func (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Refactor reset_host store function (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Allow reset_host sysfs var to recover Panicked Fw (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix ioctl reset hang (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Do not remove offlined devices (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix hang in kdump (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Do not attempt abort when Fw panicked (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix udev inquiry race condition (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix I/O drop during reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: remove unused variable managed_request_id (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Prevent crash in case of free interrupt during scsi EH path (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Perform initialization reset only once (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Check for PCI state of device in a generic way (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix controller initialization failure (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add a small delay after IOP reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: error: testing array offset 'bus' after use (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix 2T+ drives on SmartIOC-2000 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: report -ENOMEM to upper layer from aac_convert_sgraw2() (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: get rid of one level of indentation (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: fix indentation errors (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix command send race condition (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix out of bounds in aac_get_name_resp (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: complete all commands during bus reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: add fib flag to mark scsi command callback (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: enable sending of TMFs from aac_hba_send() (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: use aac_tmf_callback for reset fib (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: split off device, target, and bus reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: split off host reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: split off functions to generate reset FIB (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: reading out of bounds (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Don't copy uninitialized stack memory to userspace (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: fix leak of data from stack back to userspace (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Update driver version to 50834 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove reference to Series-9 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add reset debugging statements (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Enable ctrl reset for both hba and arc (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Make sure ioctl returns on controller reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Use correct function to get ctrl health (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Rework aac_src_restart (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Rework SOFT reset code (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Add periodic checks to see IOP reset status (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Rework IOP reset (Raghava Aditya Renukunta) [1519664]
-- [qscsi] aacraid: Using single reset mask for IOP reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Print ctrl status before eh reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Log count info of scsi cmds before reset (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Change wait time for fib completion (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove reset support from check_health (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Set correct Queue Depth for HBA1000 RAW disks (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Added 32 and 64 queue depth for arc natives (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Fix DMAR issues with iommu=pt (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: Remove __GFP_DMA for raw srb memory (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: pci_alloc_consistent() failures on ARM64 (Raghava Aditya Renukunta) [1519664]
-- [scsi] aacraid: fix PCI error recovery path (Raghava Aditya Renukunta) [1519664]
-- [mm] thp: fix crash due race in MADV_FREE handling (Rafael Aquini) [1562137]
-- [mm] pmd dirty emulation in page fault handler (Rafael Aquini) [1562137]
-- [mm] fix incorrect unlock error path in madvise_free_huge_pmd (Rafael Aquini) [1562137]
-- [mm] don't split THP page when MADV_FREE syscall is called (Rafael Aquini) [1562137]
-- [mm] ksm: mark stable page dirty (Rafael Aquini) [1562137]
-- [mm] move lazily freed pages to inactive list (Rafael Aquini) [1562137]
-- [mm] rename deactivate_page to deactivate_file_page (Rafael Aquini) [1562137]
-- [mm] page migration fix PageMlocked on migrated pages (Rafael Aquini) [1562137]
-- [mm] madvise: fail with ENOMEM when splitting vma will hit max_map_count (Rafael Aquini) [1562137]
-- [mm] madvise: free swp_entry in madvise_free (Rafael Aquini) [1562137]
-- [mm] madvise: fix freeing of locked page with MADV_FREE (Rafael Aquini) [1562137]
-- [mm] madvise: support madvise(MADV_FREE) (Rafael Aquini) [1562137]
-- [mm] move max_map_count bits into mm.h (Rafael Aquini) [1562137]
-- [mm] pagewalk: fix the comment for test_walk (Rafael Aquini) [1562137]
-- [mm] pagewalk: prevent positive return value of walk_page_test() from being passed to callers (Rafael Aquini) [1562137]
-- [mm] pagewalk: fix misbehavior of walk_page_range for vma(VM_PFNMAP) (Rafael Aquini) [1562137]
-- [mm] pagewalk: add walk_page_vma() (Rafael Aquini) [1562137]
-- [mm] pagewalk: improve vma handling (Rafael Aquini) [1562137]
-- [mm] pagewalk: call pte_hole() for VM_PFNMAP during walk_page_range (Rafael Aquini) [1562137]
-- [mm] rmap: use rmap_walk() in page_mkclean() (Rafael Aquini) [1562137]
-- [mm] rmap: use rmap_walk() in page_referenced() (Rafael Aquini) [1562137]
-- [mm] rmap: use rmap_walk() in try_to_munlock() (Rafael Aquini) [1562137]
-- [mm] rmap: use rmap_walk() in try_to_unmap() (Rafael Aquini) [1562137]
-- [mm] rmap: extend rmap_walk_xxx() to cope with different cases (Rafael Aquini) [1562137]
-- [mm] rmap: make rmap_walk to get the rmap_walk_control argument (Rafael Aquini) [1562137]
-- [mm] rmap: factor lock function out of rmap_walk_anon() (Rafael Aquini) [1562137]
-- [mm] rmap: factor nonlinear handling out of try_to_unmap_file() (Rafael Aquini) [1562137]
-- [x86] pti: Fix kexec warning on debug kernel (Waiman Long) [1539424]
-- [x86] spec_ctrl: Fix late microcode problem with AMD (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: Clean up entry code & remove unused APIs (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: Mask off SPEC_CTRL MSR bits that are managed by kernel (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: add support for SSBD to RHEL IBRS entry/exit macros (Waiman Long) [1566905] {CVE-2018-3639}
-- [fs] proc: Use underscores for SSBD in 'status' (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] bugs: Rename _RDS to _SSBD (Waiman Long) [1566905] {CVE-2018-3639}
-- [kernel] seccomp: Enable speculation flaw mitigations (Waiman Long) [1566905] {CVE-2018-3639}
-- [fs] proc: Provide details on speculation flaw mitigations (Waiman Long) [1566905] {CVE-2018-3639}
-- [kernel] nospec: Allow getting/setting on non-current task (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] speculation: Add prctl for Speculative Store Bypass mitigation (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] process: Allow runtime control of Speculative Store Bypass (Waiman Long) [1566905] {CVE-2018-3639}
-- [kernel] prctl: Add speculation control prctls (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] kvm/vmx: Expose SPEC_CTRL Bit(2) to the guest (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] bugs/amd: Add support to disable RDS on Fam(15, 16, 17)h if requested (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: Sync up RDS setting with IBRS code (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] bugs: Provide boot parameters for the spec_store_bypass_disable mitigation (Waiman Long) [1566905] {CVE-2018-3639}
-- [base] x86/bugs: Expose /sys/../spec_store_bypass (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] bugs: Read SPEC_CTRL MSR during boot and re-use (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] spec_ctrl: Use separate PCP variables for IBRS entry and exit (Waiman Long) [1566905] {CVE-2018-3639}
-- [x86] cpufeatures: Make CPU bugs sticky (Waiman Long) [1566905] {CVE-2018-3639}
-- [s390] scsi: zfcp: add port speed capabilities (Hendrik Brueckner) [1519355]
-
-* Wed Jun 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-904.el7]
-- [mmc] block: blk-mq: Potential NULL deref on mmc_blk_alloc_req() failure (Gopal Tiwari) [1456570]
-- [mmc] cqhci: Ensure macro parameters are wrapped in parentheses (Gopal Tiwari) [1456570]
-- [mmc] core: Remove code no longer needed after the switch to blk-mq (Gopal Tiwari) [1456570]
-- [mmc] block: Remove code no longer needed after the switch to blk-mq (Gopal Tiwari) [1456570]
-- [mmc] core: Remove option not to use blk-mq (Gopal Tiwari) [1456570]
-- [mmc] mmc_test: Ensure command queue is disabled for testing (Gopal Tiwari) [1456570]
-- [mmc] core: Ensure cmd_completion is initialized (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Add support for ACPI HID of AMD Controller with HS400 (Gopal Tiwari) [1456570]
-- [mmc] mmc_test: use ktime_get_ts64 for timestamps (Gopal Tiwari) [1456570]
-- [mmc] block: make function mmc_cqe_issue_type static (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: fix boolreturn.cocci warnings (Gopal Tiwari) [1456570]
-- [mmc] mmc_test: Do not use mmc_start_areq() anymore (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: Stop using legacy recovery (Gopal Tiwari) [1456570]
-- [mmc] block: Reduce polling timeout from 10 minutes to 10 seconds (Gopal Tiwari) [1456570]
-- [mmc] block: Add timeout_clks when calculating timeout (Gopal Tiwari) [1456570]
-- [mmc] block: Check for transfer state in card_busy_detect() (Gopal Tiwari) [1456570]
-- [mmc] block: Check the timeout correctly in card_busy_detect() (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: Check error bits and save the exception bit when polling card busy (Gopal Tiwari) [1456570]
-- [mmc] block: Make card_busy_detect() accumulate all response error bits (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: Separate card polling from recovery (Gopal Tiwari) [1456570]
-- [mmc] block: blk-mq: Add support for direct completion (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Add CQHCI support for Intel GLK (Gopal Tiwari) [1456570]
-- [mmc] cqhci: support for command queue enabled host (Gopal Tiwari) [1456570]
-- [mmc] block: Add CQE support (Gopal Tiwari) [1456570]
-- [mmc] block: Add blk-mq support (Gopal Tiwari) [1456570]
-- [mmc] core: Add parameter use_blk_mq (Gopal Tiwari) [1456570]
-- [mmc] block: Add error-handling comments (Gopal Tiwari) [1456570]
-- [mmc] core: Make mmc_pre_req() and mmc_post_req() available (Gopal Tiwari) [1456570]
-- [mmc] block: Simplify cleaning up the queue (Gopal Tiwari) [1456570]
-- [mmc] block: No need to export mmc_cleanup_queue() (Gopal Tiwari) [1456570]
-- [mmc] core: use usleep_range rather than HZ magic in mmc_delay() (Gopal Tiwari) [1456570]
-- [mmc] slot-gpio: call gpiod_to_irq() only when MMC_CAP_NEEDS_POLL is unset (Gopal Tiwari) [1456570]
-- [mmc] core: properly init drv_type (Gopal Tiwari) [1456570]
-- [mmc] core: prepend 0x to OCR entry in sysfs (Gopal Tiwari) [1456570]
-- [mmc] core: prepend 0x to pre_eol_info entry in sysfs (Gopal Tiwari) [1456570]
-- [mmc] block: Ensure that debugfs files are removed (Gopal Tiwari) [1456570]
-- [mmc] core: Do not leave the block driver in a suspended state (Gopal Tiwari) [1456570]
-- [mmc] block: Check return value of blk_get_request() (Gopal Tiwari) [1456570]
-- [mmc] block: Fix missing blk_put_request() (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Let devices define their own private data (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Tidy Intel slot probe functions into one (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Use helper function acpi_device_uid() (Gopal Tiwari) [1456570]
-- [mmc] sdhci: catch all errors when getting regulators (Gopal Tiwari) [1456570]
-- [mmc] core: export emmc revision (Gopal Tiwari) [1456570]
-- [mmc] kconfig: Enable CONFIG_MMC_SDHCI_IO_ACCESSORS (Gopal Tiwari) [1456570]
-- [mmc] sd: Fix signal voltage when there is no power cycle (Gopal Tiwari) [1456570]
-- [mmc] core: Factor out mmc_host_set_uhs_voltage() (Gopal Tiwari) [1456570]
-- [mmc] core: Export a few functions needed for blkmq support (Gopal Tiwari) [1456570]
-- [mmc] block: Factor out mmc_setup_queue() (Gopal Tiwari) [1456570]
-- [mmc] arm: 7805/1: mm: change max*pfn (Gopal Tiwari) [1456570]
-- [mmc] arm: 7797/1: mmc: Use dma_max_pfn(dev) (Gopal Tiwari) [1456570]
-- [mmc] block: Prepare CQE data (Gopal Tiwari) [1456570]
-- [mmc] block: Use local variables in mmc_blk_data_prep() (Gopal Tiwari) [1456570]
-- [mmc] mmc: Enable CQE's (Gopal Tiwari) [1456570]
-- [mmc] mmc: Enable Command Queuing (Gopal Tiwari) [1456570]
-- [mmc] core: Add support for handling CQE requests (Gopal Tiwari) [1456570]
-- [mmc] core: Introduce host claiming by context (Gopal Tiwari) [1456570]
-- [mmc] core: Remove unnecessary host claim (Gopal Tiwari) [1456570]
-- [mmc] block: Fix bug when removing RPMB chardev (Gopal Tiwari) [1456570]
-- [mmc] block: Delete mmc_access_rpmb() (Gopal Tiwari) [1456570]
-- [mmc] block: Convert RPMB to a character device (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Add support for Intel CDF (Gopal Tiwari) [1456570]
-- [mmc] Delete bounce buffer handling (Gopal Tiwari) [1456570]
-- [mmc] core: add driver strength selection when selecting hs400es (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Fix voltage switch for some Intel host controllers (Gopal Tiwari) [1456570]
-- [mmc] host: fix typo after MMC_DEBUG move (Gopal Tiwari) [1456570]
-- [mmc] block: Fix incorrectly initialized requests (Gopal Tiwari) [1456570]
-- [mmc] block: cast a informative log for no devidx available (Gopal Tiwari) [1456570]
-- [mmc] sdhci: Add quirk to indicate MMC_RSP_136 has CRC (Gopal Tiwari) [1456570]
-- [mmc] sdhci: Tidy reading 136-bit responses (Gopal Tiwari) [1456570]
-- [mmc] block: Reparametrize mmc_blk_ioctl_(multi)_cmd() (Gopal Tiwari) [1456570]
-- [mmc] block: Refactor mmc_blk_part_switch() (Gopal Tiwari) [1456570]
-- [mmc] block: Move duplicate check (Gopal Tiwari) [1456570]
-- [mmc] debugfs: Move block debugfs into block module (Gopal Tiwari) [1456570]
-- [mmc] ops: export mmc_get_status() (Gopal Tiwari) [1456570]
-- [mmc] block: Anonymize the drv op data pointer (Gopal Tiwari) [1456570]
-- [mmc] test: reduce stack usage in mmc_test_nonblock_transfer (Gopal Tiwari) [1456570]
-- [mmc] sdhci: fix SDHCI_QUIRK_NO_HISPD_BIT handling (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: use generic sdhci_set_bus_width() (Gopal Tiwari) [1456570]
-- [mmc] sdhci: key 8BITBUS bit off MMC_CAP_8_BIT_DATA (Gopal Tiwari) [1456570]
-- [mmc] core: Turn off CQE before sending commands (Gopal Tiwari) [1456570]
-- [mmc] host: Add CQE interface (Gopal Tiwari) [1456570]
-- [mmc] core: Add members to (Gopal Tiwari) [1456570]
-- [mmc] core: Add mmc_retune_hold_now() (Gopal Tiwari) [1456570]
-- [mmc] core: Remove unused MMC_CAP2_PACKED_CMD (Gopal Tiwari) [1456570]
-- [mmc] sdhci: add sdma_boundary member to struct sdhci_host (Gopal Tiwari) [1456570]
-- [mmc] sdhci: constify sdhci_pltfm_data structures (Gopal Tiwari) [1456570]
-- [mmc] core: remove the check of mmc_card_blockaddr for SD cards (Gopal Tiwari) [1456570]
-- [mmc] sdhci: ignore restoring the I/O state if MMC_POWER_OFF (Gopal Tiwari) [1456570]
-- [mmc] core: correct taac parameter according to the specification (Gopal Tiwari) [1456570]
-- [mmc] vub300: constify mmc_host_ops structures (Gopal Tiwari) [1456570]
-- [mmc] sdhci: pci: Fix up power if device has ACPI companion (Gopal Tiwari) [1456570]
-- [mmc] sdhci: acpi: Use new method to get ACPI companion (Gopal Tiwari) [1456570]
-- [mmc] Convert to using pOF instead of full_name (Gopal Tiwari) [1456570]
-- [mmc] Remove HIGHMEM dependency from mmc-spi driver (Gopal Tiwari) [1456570]
-- [mmc] host: via-sdmmc: constify pci_device_id (Gopal Tiwari) [1456570]
-- [mmc] sdhci: remove CONFIG_MMC_DEBUG from the driver (Gopal Tiwari) [1456570]
-- [mmc] kconfig: downgrade CONFIG_MMC_DEBUG for host drivers only (Gopal Tiwari) [1456570]
-- [mmc] core: turn the pr_info under CONFIG_MMC_DEBUG into pr_debug (Gopal Tiwari) [1456570]
-- [mmc] core: always check the length of sglist with total data size (Gopal Tiwari) [1456570]
-- [mmc] core: remove check of host->removed for rescan routine (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: remove unused struct sdhci_host variable (Gopal Tiwari) [1456570]
-- [mmc] block: remove unused struct mmc_card *card (Gopal Tiwari) [1456570]
-- [mmc] block: prevent propagating R1_OUT_OF_RANGE for open-ending mode (Gopal Tiwari) [1456570]
-- [mmc] block: fix lockdep splat when removing mmc_block module (Gopal Tiwari) [1456570]
-- [mmc] mmc: correct the logic for setting HS400ES signal voltage (Gopal Tiwari) [1456570]
-- [mmc] block: bypass the queue even if usage is present for hotplug (Gopal Tiwari) [1456570]
-- [mmc] block: Prevent new req entering queue after its cleanup (Gopal Tiwari) [1456570]
-- [mmc] block: Let MMC_IOC_MULTI_CMD return zero again for zero entries (Gopal Tiwari) [1456570]
-- [mmc] block: Initialize ret in mmc_blk_issue_drv_op() for MMC_DRV_OP_IOCTL (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Workaround conflict with PCI wifi on GPD Win handheld (Gopal Tiwari) [1456570]
-- [mmc] block: remove a call to blk_queue_bounce_limit (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Enable card detect wake for Intel BYT-related SD controllers (Gopal Tiwari) [1456570]
-- [mmc] slot-gpio: Add support to enable irq wake on cd_irq (Gopal Tiwari) [1456570]
-- [mmc] core: Remove MMC_CAP2_HC_ERASE_SZ (Gopal Tiwari) [1456570]
-- [mmc] core: for data errors, take response of stop cmd into account (Gopal Tiwari) [1456570]
-- [mmc] core: check also R1 response for stop commands (Gopal Tiwari) [1456570]
-- [mmc] core: Clarify code for sending CSD (Gopal Tiwari) [1456570]
-- [mmc] core: Drop mmc_all_send_cid() and use mmc_send_cxd_native() instead (Gopal Tiwari) [1456570]
-- [mmc] core: Re-factor code for sending CID (Gopal Tiwari) [1456570]
-- [mmc] core: Remove redundant code in mmc_send_cid() (Gopal Tiwari) [1456570]
-- [mmc] core: Make mmc_can_reset() static (Gopal Tiwari) [1456570]
-- [mmc] core: Move mmc_flush_cache() from core.c to mmc_ops.c (Gopal Tiwari) [1456570]
-- [mmc] core: Move mmc_interrupt_hpi() from core.c to mmc_ops.c (Gopal Tiwari) [1456570]
-- [mmc] core: Move mmc bkops functions from core.c to mmc_ops.c (Gopal Tiwari) [1456570]
-- [mmc] core: Don't export some eMMC specific functions from core.c (Gopal Tiwari) [1456570]
-- [mmc] sdio: Keep card runtime resumed while adding function devices (Gopal Tiwari) [1456570]
-- [mmc] sdhci-acpi: Remove unneeded acpi_bus_get_status() call (Gopal Tiwari) [1456570]
-- [mmc] block: Use __mmc_send_status() and drop get_card_status() (Gopal Tiwari) [1456570]
-- [mmc] block: Move boot partition locking into a driver op (Gopal Tiwari) [1456570]
-- [mmc] block: Move DRV OP issue function (Gopal Tiwari) [1456570]
-- [mmc] block: Tag DRV_OPs with a driver operation type (Gopal Tiwari) [1456570]
-- [mmc] block: remove req back pointer (Gopal Tiwari) [1456570]
-- [mmc] core: Delete error messages for failed memory allocations (Gopal Tiwari) [1456570]
-- [mmc] block: move multi-ioctl() to use block layer (Gopal Tiwari) [1456570]
-- [mmc] block: move single ioctl() commands to block requests (Gopal Tiwari) [1456570]
-- [mmc] block: Tag is_rpmb as bool (Gopal Tiwari) [1456570]
-- [mmc] core: Allocate per-request data using the block layer core (Gopal Tiwari) [1456570]
-- [mmc] core: Delete bounce buffer Kconfig option (Gopal Tiwari) [1456570]
-- [mmc] sdio: Add API to manage SDIO IRQs from a workqueue (Gopal Tiwari) [1456570]
-- [mmc] core: Prevent processing SDIO IRQs when none is claimed (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Use ACPI DSM to get driver strength for some Intel devices (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Don't re-tune with runtime pm for some Intel devices (Gopal Tiwari) [1456570]
-- [mmc] sdhci-pci: Let devices define their own private data (Gopal Tiwari) [1456570]
-- [kernel] blk-mq: update ->init_request and ->exit_request prototypes (Gopal Tiwari) [1456570]
-- [mmc] block: allow specifying (Gopal Tiwari) [1456570]
-- [mmc] acpi: bus: add stub (Gopal Tiwari) [1456570]
-- [mmc] block: allocate request (Gopal Tiwari) [1456570]
-- [lib] sd, mmc, virtio_blk, string_helpers: fix block size units (Gopal Tiwari) [1456570]
-- [mmc] blk-mq: make mq_ops a const pointer (Gopal Tiwari) [1456570]
-- [mmc] asm-generic: io: implement (Gopal Tiwari) [1456570]
-
-* Tue Jun 12 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-903.el7]
-- [crypto] salsa20: fix blkcipher_walk API usage (Bruno Eduardo de Oliveira Meneguele) [1543981] {CVE-2017-17805}
-- [crypto] algif_skcipher: Load TX SG list after waiting (Bruno Eduardo de Oliveira Meneguele) [1541875] {CVE-2017-13215}
-- [crypto] api - Keep failed instances alive (Herbert Xu) [1466244]
-- [crypto] add missing crypto module aliases (Herbert Xu) [1357080]
-- [crypto] rsa: Add Makefile dependencies to fix parallel builds (Herbert Xu) [1542374]
-- [crypto] cryptd: Add helpers to check whether a tfm is queued (Herbert Xu) [1579195]
-- [crypto] cryptd: Fix AEAD request context corruption (Herbert Xu) [1579195]
-- [security] let security modules use PTRACE_MODE_* with bitmasks (Joe Lawrence) [1574784]
-- [edac] sb_edac: Dont create a second memory controller if HA1 is not present (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Classify memory mirroring modes (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Avoid creating SOCK memory controller (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Bump driver version and do some cleanups (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Check if ECC enabled when at least one DIMM is present (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Drop NUM_CHANNELS from 8 back to 4 (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Carve out dimm-populating loop (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Fix mod_name (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Assign EDAC memory controller per h/w controller (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Dont use "Socket#" in the memory controller name (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Classify PCI-IDs by topology (Aristeu Rozanski) [1483004 1483026]
-- [edac] sb_edac: Get rid of ->show_interleave_mode() (Aristeu Rozanski) [1483004 1483026]
-- [edac] i7core, sb_edac: Dont return NOTIFY_BAD from mce_decoder callback (Aristeu Rozanski) [1483004 1483026]
-- [hid] input: Fix accessing freed memory during device disconnect (Aristeu Rozanski) [1576936]
-- [hid] input: Fix NULL pointer dereference when power_supply_register fails (Aristeu Rozanski) [1576936]
-- [scsi] sr: get/drop reference to device in revalidate and check_events (Ming Lei) [1583908]
-- [md] submit splitted bio via generic_make_request (Ming Lei) [1567865]
-- [md] Don't split write discard/same/erase bio in md linear/faulty/multipath (Ming Lei) [1567865]
-- [iommu] amd: Take into account that alloc_dev_data() may return NULL (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Fix scatterlist offset handling (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Clear Page Request Overflow fault bit (Jerry Snitselaar) [1483811]
-- [iommu] vt-d: Don't register bus-notifier under dmar_global_lock (Jerry Snitselaar) [1583770]
-- [iommu] amd: Finish TLB flush in amd_iommu_unmap() (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Prevent VMD child devices from being remapping targets (Jerry Snitselaar) [1583770]
-- [iommu] Make iommu_bus_notifier return NOTIFY_DONE rather than error code (Jerry Snitselaar) [1583770]
-- [iommu] amd: Fix incorrect error handling in amd_iommu_bind_pasid() (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Flush the IOTLB to get rid of the initial kdump mappings (Jerry Snitselaar) [1583770]
-- [iommu] iommu/amd: Clean up iommu_pc_get_set_reg() (Jerry Snitselaar) [1583770]
-- [iommu] amd: Fix error code path in early_amd_iommu_init() (Jerry Snitselaar) [1583770]
-- [iommu] vt-d: Fix NULL pointer dereference in device_to_iommu (Jerry Snitselaar) [1583770]
-- [mm] move_ptes: check pte dirty after its removal (Christoph von Recklinghausen) [1490234]
-- [mm] mremap: fix race between mremap() and page cleanning (Christoph von Recklinghausen) [1490234]
-- [mm] slab_common: fix the check for duplicate slab names (Alaa Hleihel) [1533918]
-- [mm] slab_common: Do not check for duplicate slab names (Alaa Hleihel) [1533918]
-- [x86] microcode: Make the late update update_lock a raw lock for RT (Scott Wood) [1581193]
-- [powerpc] signals: Discard transaction state from signal frames (Steve Best) [1586153]
-- [powerpc] kdump: Fix powernv build break when KEXEC_CORE=n (Desnes Augusto Nunes do Rosario) [1559434]
-- [powerpc] powernv/kdump: Fix cases where the kdump kernel can get HMI's (Desnes Augusto Nunes do Rosario) [1559434]
-- [powerpc] pseries: enable CPU hotplug interrupt source and sysfs (Laurent Vivier) [1532968]
-- [powerpc] pseries: Enable kernel CPU dlpar from sysfs (Laurent Vivier) [1532968]
-- [powerpc] pseries: Add CPU dlpar add functionality (Laurent Vivier) [1532968]
-- [powerpc] pseries: Add CPU dlpar remove functionality (Laurent Vivier) [1532968]
-- [powerpc] pseries: Update CPU hotplug error recovery (Laurent Vivier) [1532968]
-- [powerpc] pseries: Factor out common cpu hotplug code (Laurent Vivier) [1532968]
-- [i2c] i2c-core: Fix compilation on s390x (Thomas Huth) [1570090]
-- [s390] cmpxchg: use compiler builtins (Thomas Huth) [1570090]
-- [s390] 32bit: fix cmpxchg64 (Thomas Huth) [1570090]
-- [kernel] vgacon: dummy implementation for vgacon_text_force (Thomas Huth) [1570090]
-- [s390] setup: enable display support for KVM guest (Thomas Huth) [1570090]
-- [s390] char: Rename EBCDIC keymap variables (Thomas Huth) [1570090]
-- [video] kconfig: Remove HAS_IOMEM dependency for Graphics support (Thomas Huth) [1570090]
-- [video] console: Disable VGA text console support on cris (Thomas Huth) [1570090]
-- [s390] pci: handle insufficient resources during dma tlb flush (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: make lazy flush independent from the tlb_refresh bit (Hendrik Brueckner) [1539025]
-- [s390] pci: fix dma address calculation in map_sg (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: improve lazy flush for unmap (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: split dma_update_trans (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: improve map_sg (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: simplify dma address calculation (Hendrik Brueckner) [1539025]
-- [s390] pci_dma: remove dma address range check (Hendrik Brueckner) [1539025]
-- [s390] use expoline thunks in the BPF JIT (Hendrik Brueckner) [1583564]
-- [s390] remove indirect branch from do_softirq_own_stack (Hendrik Brueckner) [1583564]
-- [s390] move spectre sysfs attribute code (Hendrik Brueckner) [1583564]
-- [s390] kernel: use expoline for indirect branches (Hendrik Brueckner) [1583564]
-- [s390] ftrace: use expoline for indirect branches (Hendrik Brueckner) [1583564]
-- [s390] lib: use expoline for indirect branches (Hendrik Brueckner) [1583564]
-- [s390] move expoline assembler macros to a header (Hendrik Brueckner) [1583564]
-- [s390] correct module section names for expoline code revert (Hendrik Brueckner) [1583564]
-- [s390] add assembler macros for CPU alternatives (Hendrik Brueckner) [1583564]
-- [s390] ftrace: optimize mcount code (Hendrik Brueckner) [1583564]
-
-* Fri Jun 08 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-902.el7]
-- [fs] svcrpc: don't leak contexts on PROC_DESTROY (Dave Wysochanski) [1487722]
-- [fs] ceph: don't set read_ahead_kb to 0 by default (Ilya Dryomov) [1579539]
-- [fs] ext4: protect i_disksize update by i_data_sem in direct write path (Lukas Czerner) [1571735]
-- [fs] ext4: update i_disksize if direct write past ondisk size (Lukas Czerner) [1554212]
-- [fs] xfs: Correctly invert xfs_buftarg LRU isolation logic (Brian Foster) [1548378]
-- [fs] ceph: fix rsize/wsize capping in ceph_direct_read_write() (Ilya Dryomov) [1580500]
-- [fs] ceph: check if mds create snaprealm when setting quota (Ilya Dryomov) [1580500]
-- [fs] rbd: notrim map option (Ilya Dryomov) [1580500]
-- [fs] ceph: always update atime/mtime/ctime for new inode (Ilya Dryomov) [1580500]
-- [fs] rbd: support timeout in rbd_wait_state_locked() (Ilya Dryomov) [1580500]
-- [fs] rbd: refactor rbd_wait_state_locked() (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: report root dir quota usage in statfs (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: add counter for snaprealms with quota (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: cache inode pointer in ceph_snap_realm (Ilya Dryomov) [1580500]
-- [fs] ceph: fix root quota realm check (Ilya Dryomov) [1580500]
-- [fs] ceph: don't check quota for snap inode (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: update MDS when max_bytes is approaching (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: support for ceph.quota.max_bytes (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: don't allow cross-quota renames (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: support for ceph.quota.max_files (Ilya Dryomov) [1580500]
-- [fs] ceph: quota: add initial infrastructure to support cephfs quotas (Ilya Dryomov) [1580500]
-- [fs] rbd: remove VLA usage (Ilya Dryomov) [1580500]
-- [fs] rbd: fix spelling mistake: "reregisteration" -> "reregistration" (Ilya Dryomov) [1580500]
-- [fs] ceph: rename function drop_leases() to a more descriptive name (Ilya Dryomov) [1580500]
-- [fs] ceph: fix invalid point dereference for error case in mdsc destroy (Ilya Dryomov) [1580500]
-- [fs] ceph: return proper bool type to caller instead of pointer (Ilya Dryomov) [1580500]
-- [fs] ceph: optimize memory usage (Ilya Dryomov) [1580500]
-- [fs] ceph: optimize mds session register (Ilya Dryomov) [1580500]
-- [fs] libceph, ceph: add __init attribution to init funcitons (Ilya Dryomov) [1580500]
-- [fs] ceph: filter out used flags when printing unused open flags (Ilya Dryomov) [1580500]
-- [fs] ceph: don't wait on writeback when there is no more dirty pages (Ilya Dryomov) [1580500]
-- [fs] ceph: invalidate pages that beyond EOF in ceph_writepages_start() (Ilya Dryomov) [1580500]
-- [fs] ceph: mark the cap cache as unreclaimable (Ilya Dryomov) [1580500]
-- [fs] ceph: change variable name to follow common rule (Ilya Dryomov) [1580500]
-- [fs] ceph: optimizing cap reservation (Ilya Dryomov) [1580500]
-- [fs] ceph: release unreserved caps if having enough available caps (Ilya Dryomov) [1580500]
-- [fs] ceph: optimizing cap allocation (Ilya Dryomov) [1580500]
-- [fs] ceph: adding protection for showing cap reservation info (Ilya Dryomov) [1580500]
-- [fs] libceph: adding missing message types to ceph_msg_type_name() (Ilya Dryomov) [1580500]
-- [fs] rbd: get the latest osdmap when using an existing client (Ilya Dryomov) [1580500]
-- [fs] rbd: move rbd_get_client() below rbd_put_client() (Ilya Dryomov) [1580500]
-- [fs] rbd: remove redundant declaration of rbd_spec_put() (Ilya Dryomov) [1580500]
-- [fs] libceph: fix misjudgement of maximum monitor number (Ilya Dryomov) [1580500]
-- [fs] libceph, ceph: change permission for readonly debugfs entries (Ilya Dryomov) [1580500]
-- [fs] ceph: add newline to end of debug message format (Ilya Dryomov) [1580500]
-- [fs] libceph, ceph: change ceph_calc_file_object_mapping() signature (Ilya Dryomov) [1580500]
-- [fs] libceph: eliminate overflows in ceph_calc_file_object_mapping() (Ilya Dryomov) [1580500]
-- [fs] libceph: define new ceph_file_layout structure (Ilya Dryomov) [1580500]
-- [fs] rbd: set max_segment_size to UINT_MAX (Ilya Dryomov) [1580500]
-- [fs] ceph: fix dentry leak when failing to init debugfs (Ilya Dryomov) [1580500]
-- [fs] libceph, ceph: avoid memory leak when specifying same option several times (Ilya Dryomov) [1580500]
-- [fs] ceph: flush dirty caps of unlinked inode ASAP (Ilya Dryomov) [1580500]
-- [fs] ceph: improving efficiency of syncfs (Ilya Dryomov) [1580500]
-- [fs] libceph: check kstrndup() return value (Ilya Dryomov) [1580500]
-- [fs] ceph: try to allocate enough memory for reserved caps (Ilya Dryomov) [1580500]
-- [fs] ceph: fix race of queuing delayed caps (Ilya Dryomov) [1580500]
-- [fs] ceph: delete unreachable code in ceph_check_caps() (Ilya Dryomov) [1580500]
-- [fs] ceph: limit rate of cap import/export error messages (Ilya Dryomov) [1580500]
-- [fs] ceph: fix incorrect snaprealm when adding caps (Ilya Dryomov) [1580500]
-- [fs] ceph: fix un-balanced fsc->writeback_count update (Ilya Dryomov) [1580500]
-- [fs] ceph: track read contexts in ceph_file_info (Ilya Dryomov) [1580500]
-- [fs] ceph: avoid dereferencing invalid pointer during cached readdir (Ilya Dryomov) [1580500]
-- [fs] ceph: use atomic_t for ceph_inode_info::i_shared_gen (Ilya Dryomov) [1580500]
-- [fs] ceph: cleanup traceless reply handling for rename (Ilya Dryomov) [1580500]
-- [fs] ceph: voluntarily drop Fx cap for readdir request (Ilya Dryomov) [1580500]
-- [fs] ceph: properly drop caps for setattr request (Ilya Dryomov) [1580500]
-- [fs] ceph: voluntarily drop Lx cap for link/rename requests (Ilya Dryomov) [1580500]
-- [fs] ceph: voluntarily drop Ax cap for requests that create new inode (Ilya Dryomov) [1580500]
-- [fs] rbd: whitelist RBD_FEATURE_OPERATIONS feature bit (Ilya Dryomov) [1580500]
-- [fs] rbd: don't NULL out ->obj_request in rbd_img_obj_parent_read_full() (Ilya Dryomov) [1580500]
-- [fs] rbd: use kmem_cache_zalloc() in rbd_img_request_create() (Ilya Dryomov) [1580500]
-- [fs] rbd: obj_request->completion is unused (Ilya Dryomov) [1580500]
-- [fs] rbd: set max_segments to USHRT_MAX (Ilya Dryomov) [1580500]
-- [fs] rbd: reacquire lock should update lock owner client id (Ilya Dryomov) [1580500]
-- [fs] ceph: drop negative child dentries before try pruning inode's alias (Ilya Dryomov) [1580500]
-- [fs] rbd: default to single-major device number scheme (Ilya Dryomov) [1580500]
-- [fs] libceph: don't WARN() if user tries to add invalid key (Ilya Dryomov) [1580500]
-- [fs] rbd: set discard_alignment to zero (Ilya Dryomov) [1580500]
-- [fs] ceph: silence sparse endianness warning in encode_caps_cb (Ilya Dryomov) [1580500]
-- [fs] ceph: remove the bump of i_version (Ilya Dryomov) [1580500]
-- [fs] ceph: present consistent fsid, regardless of arch endianness (Ilya Dryomov) [1580500]
-- [fs] ceph: clean up spinlocking and list handling around cleanup_cap_releases() (Ilya Dryomov) [1580500]
-- [fs] rbd: get rid of rbd_mapping::read_only (Ilya Dryomov) [1580500]
-- [fs] rbd: fix and simplify rbd_ioctl_set_ro() (Ilya Dryomov) [1580500]
-- [fs] ceph: remove unused and redundant variable dropping (Ilya Dryomov) [1580500]
-- [fs] ceph: mark expected switch fall-throughs (Ilya Dryomov) [1580500]
-- [fs] ceph: -EINVAL on decoding failure in ceph_mdsc_handle_fsmap() (Ilya Dryomov) [1580500]
-- [fs] ceph: disable cached readdir after dropping positive dentry (Ilya Dryomov) [1580500]
-- [fs] ceph: fix bool initialization/comparison (Ilya Dryomov) [1580500]
-- [fs] ceph: handle 'session get evicted while there are file locks' (Ilya Dryomov) [1580500]
-- [fs] ceph: optimize flock encoding during reconnect (Ilya Dryomov) [1580500]
-- [fs] ceph: move spinlocking into ceph_encode_locks_to_buffer and ceph_count_locks (Ilya Dryomov) [1580500]
-- [fs] ceph: make lock_to_ceph_filelock() static (Ilya Dryomov) [1580500]
-- [fs] ceph: keep auth cap when inode has flocks or posix locks (Ilya Dryomov) [1580500]
-- [fs] ceph: use get_user_pages_fast() (Ilya Dryomov) [1580500]
-- [fs] ceph: properly queue cap snap for newly created snap realm (Ilya Dryomov) [1580500]
-- [fs] ceph: wait on writeback after writing snapshot data (Ilya Dryomov) [1580500]
-- [fs] ceph: fix capsnap dirty pages accounting (Ilya Dryomov) [1580500]
-- [fs] ceph: ignore wbc->range_(start, end) when write back snapshot data (Ilya Dryomov) [1580500]
-- [fs] ceph: fix "range cyclic" mode writepages (Ilya Dryomov) [1580500]
-- [fs] ceph: cleanup local variables in ceph_writepages_start() (Ilya Dryomov) [1580500]
-- [fs] ceph: optimize pagevec iterating in ceph_writepages_start() (Ilya Dryomov) [1580500]
-- [fs] ceph: make writepage_nounlock() invalidate page that beyonds EOF (Ilya Dryomov) [1580500]
-- [fs] ceph: properly get capsnap's size in get_oldest_context() (Ilya Dryomov) [1580500]
-- [fs] ceph: queue cap snap only when snap realm's context changes (Ilya Dryomov) [1580500]
-- [fs] ceph: remove stale check in ceph_invalidatepage() (Ilya Dryomov) [1580500]
-- [fs] ceph: handle race between vmtruncate and queuing cap snap (Ilya Dryomov) [1580500]
-- [fs] xfs: don't leak quotacheck dquots when cow recovery (Brian Foster) [1579873]
-- [fs] xfs: fix inobt inode allocation search optimization (Brian Foster) [1579873]
-- [fs] xfs: Fix per-inode DAX flag inheritance (Brian Foster) [1579873]
-- [fs] xfs: fix multi-AG deadlock in xfs_bunmapi (Brian Foster) [1579873]
-- [fs] xfs: check that dir block entries don't off the end of the buffer (Brian Foster) [1579873]
-- [fs] xfs: fix quotacheck dquot id overflow infinite loop (Brian Foster) [1579873]
-- [fs] xfs: check _btree_check_block value (Brian Foster) [1579873]
-- [fs] Revert "xfs: grab dquots without taking the ilock" (Brian Foster) [1579873]
-- [fs] xfs: assert locking precondition in xfs_readlink_bmap_ilocked (Brian Foster) [1579873]
-- [fs] xfs: assert locking precondition in xfs_attr_list_int_ilocked (Brian Foster) [1579873]
-- [fs] xfs: fixup xfs_attr_get_ilocked (Brian Foster) [1579873]
-- [fs] xfs: don't crash on unexpected holes in dir/attr btrees (Brian Foster) [1579873]
-- [fs] xfs: rename MAXPATHLEN to XFS_SYMLINK_MAXLEN (Brian Foster) [1579873]
-- [fs] xfs: Check for m_errortag initialization in xfs_errortag_test (Brian Foster) [1579873]
-- [fs] xfs: grab dquots without taking the ilock (Brian Foster) [1579873]
-- [fs] xfs: fix semicolon.cocci warnings (Brian Foster) [1579873]
-- [fs] xfs: replace log_badcrc_factor knob with error injection tag (Brian Foster) [1579873]
-- [fs] xfs: convert drop_writes to use the errortag mechanism (Brian Foster) [1579873]
-- [fs] xfs: remove unneeded parameter from XFS_TEST_ERROR (Brian Foster) [1579873]
-- [fs] xfs: expose errortag knobs via sysfs (Brian Foster) [1579873]
-- [fs] xfs: make errortag a per-mountpoint structure (Brian Foster) [1579873]
-- [fs] xfs: free uncommitted transactions during log recovery (Brian Foster) [1579873]
-- [fs] xfs: allow reading of already-locked remote symbolic link (Brian Foster) [1579873]
-- [fs] xfs: pass along transaction context when reading xattr block buffers (Brian Foster) [1579873]
-- [fs] xfs: pass along transaction context when reading directory block buffers (Brian Foster) [1579873]
-- [fs] xfs: return the hash value of a leaf1 directory block (Brian Foster) [1579873]
-- [fs] xfs: refactor the ifork block counting function (Brian Foster) [1579873]
-- [fs] xfs: make _bmap_count_blocks consistent wrt delalloc extent behavior (Brian Foster) [1579873]
-- [fs] xfs: check if an inode is cached and allocated (Brian Foster) [1579873]
-- [fs] xfs: export _inobt_btrec_to_irec and _ialloc_cluster_alignment for scrub (Brian Foster) [1579873]
-- [fs] xfs: export various function for the online scrubber (Brian Foster) [1579873]
-- [fs] xfs: always compile the btree inorder check functions (Brian Foster) [1579873]
-- [fs] xfs: remove double-underscore integer types (Brian Foster) [1579873]
-- [fs] xfs: avoid harmless gcc-7 warnings (Brian Foster) [1579873]
-- [fs] xfs: remove lsn relevant fields from xfs_trans structure and its users (Brian Foster) [1579873]
-- [fs] xfs: remove XFS_HSIZE (Brian Foster) [1579873]
-- [fs] xfs: define fatal assert build time tunable (Brian Foster) [1579873]
-- [fs] xfs: define bug_on_assert debug mode sysfs tunable (Brian Foster) [1579873]
-- [fs] xfs: refactor dir2 leaf readahead shadow buffer cleverness (Brian Foster) [1579873]
-- [fs] xfs: push buffer of flush locked dquot to avoid quotacheck deadlock (Brian Foster) [1579873]
-- [fs] xfs: use the common helper uuid_is_null() (Brian Foster) [1579873]
-- [fs] xfs: remove uuid_getnodeuniq and xfs_uu_t (Brian Foster) [1579873]
-- [fs] xfs: don't allow bmap on rt files (Brian Foster) [1579873]
-- [fs] xfs: fix spurious spin_is_locked() assert failures on non-smp kernels (Brian Foster) [1579873]
-- [fs] xfs: fix unaligned access in xfs_btree_visit_blocks (Brian Foster) [1579873]
-- [fs] xfs: fix warnings about unused stack variables (Brian Foster) [1579873]
-- [fs] xfs: BMAPX shouldn't barf on inline-format directories (Brian Foster) [1579873]
-- [fs] xfs: fix indlen accounting error on partial delalloc conversion (Brian Foster) [1579873]
-- [fs] xfs: fix use-after-free in xfs_finish_page_writeback (Brian Foster) [1579873]
-- [fs] xfs: publish UUID in struct super_block (Brian Foster) [1579873]
-- [fs] xfs: Allow user to kill fstrim process (Brian Foster) [1579873]
-- [fs] xfs: better log intent item refcount checking (Brian Foster) [1579873]
-- [fs] xfs: fix up quotacheck buffer list error handling (Brian Foster) [1579873]
-- [fs] xfs: don't use bool values in trace buffers (Brian Foster) [1579873]
-- [fs] xfs: corruption needs to respect endianess too! (Brian Foster) [1579873]
-- [fs] xfs: simplify validation of the unwritten extent bit (Brian Foster) [1579873]
-- [fs] xfs: remove unused values from xfs_exntst_t (Brian Foster) [1579873]
-- [fs] xfs: remove the unused XFS_MAXLINK_1 define (Brian Foster) [1579873]
-- [fs] xfs: more do_div cleanups (Brian Foster) [1579873]
-- [fs] xfs: remove use of do_div with 32-bit dividend in quota (Brian Foster) [1579873]
-- [fs] xfs: remove the trailing newline used in the fmt parameter of TP_printk (Brian Foster) [1579873]
-- [fs] xfs: prevent multi-fsb dir readahead from reading random blocks (Brian Foster) [1579873]
-- [fs] xfs: pass individual arguments to xfs_bmap_add_extent_hole_real (Brian Foster) [1579873]
-- [fs] xfs: remove custom do_div implementations (Brian Foster) [1579873]
-- [fs] xfs: simplify xfs_calc_dquots_per_chunk (Brian Foster) [1579873]
-- [fs] xfs: fold __xfs_trans_roll into xfs_trans_roll (Brian Foster) [1579873]
-- [fs] xfs: fix over-copying of getbmap parameters from userspace (Brian Foster) [1579873]
-- [fs] xfs: Remove obsolete declaration of xfs_buf_get_empty (Brian Foster) [1579873]
-- [fs] xfs: fix up inode validation failure message (Brian Foster) [1579873]
-- [fs] xfs: fix kernel memory exposure problems (Brian Foster) [1579873]
-- [fs] xfs: remove kmem_zalloc_greedy (Brian Foster) [1579873]
-- [fs] xfs: Use xfs_icluster_size_fsb() to calculate inode alignment mask (Brian Foster) [1579873]
-- [fs] xfs: fix and streamline error handling in xfs_end_io (Brian Foster) [1579873]
-- [fs] xfs: remove XFS_ALLOCTYPE_ANY_AG and XFS_ALLOCTYPE_START_AG (Brian Foster) [1579873]
-- [fs] xfs: simplify xfs_rtallocate_extent (Brian Foster) [1579873]
-- [fs] xfs: tune down agno asserts in the bmap code (Brian Foster) [1579873]
-- [fs] xfs: Use xfs_icluster_size_fsb() to calculate inode chunk alignment (Brian Foster) [1579873]
-- [fs] xfs: fix len comparison in xfs_extent_busy_trim (Brian Foster) [1579873]
-- [fs] xfs: improve busy extent sorting (Brian Foster) [1579873]
-- [fs] xfs: improve handling of busy extents in the low-level allocator (Brian Foster) [1579873]
-- [fs] xfs: don't fail xfs_extent_busy allocation (Brian Foster) [1579873]
-- [fs] xfs: correct null checks and error processing in xfs_initialize_perag (Brian Foster) [1579873]
-- [fs] xfs: introduce xfs_aligned_fsb_count (Brian Foster) [1579873]
-- [fs] xfs: allow unwritten extents in the CoW fork (Brian Foster) [1579873]
-- [fs] xfs: verify free block header fields (Brian Foster) [1579873]
-- [fs] xfs: check for obviously bad level values in the bmbt root (Brian Foster) [1579873]
-- [fs] xfs: filter out obviously bad btree pointers (Brian Foster) [1579873]
-- [fs] xfs: fail _dir_open when readahead fails (Brian Foster) [1579873]
-- [fs] xfs: fix toctou race when locking an inode to access the data map (Brian Foster) [1579873]
-- [fs] xfs: remove unused full argument from bmap (Brian Foster) [1579873]
-- [fs] xfs: remove unused struct declarations (Brian Foster) [1579873]
-- [fs] xfs: remove boilerplate around xfs_btree_init_block (Brian Foster) [1579873]
-- [fs] xfs: make xfs_btree_magic more generic (Brian Foster) [1579873]
-- [fs] xfs: glean crc status from mp not flags in xfs_btree_init_block_int (Brian Foster) [1579873]
-- [fs] xfs: prevent quotacheck from overloading inode lru (Brian Foster) [1579873]
-- [fs] xfs: extsize hints are not unlikely in xfs_bmap_btalloc (Brian Foster) [1579873]
-- [fs] xfs: verify dirblocklog correctly (Brian Foster) [1579873]
-- [fs] xfs: fix COW writeback race (Brian Foster) [1579873]
-- [fs] xfs: fix xfs_mode_to_ftype() prototype (Brian Foster) [1579873]
-- [fs] xfs: don't rely on ->total in xfs_alloc_space_available (Brian Foster) [1579873]
-- [fs] xfs: adjust allocation length in xfs_alloc_space_available (Brian Foster) [1579873]
-- [fs] xfs: fix bogus minleft manipulations (Brian Foster) [1579873]
-- [fs] xfs: bump up reserved blocks in xfs_alloc_set_aside (Brian Foster) [1579873]
-- [fs] xfs: nuke unused tracepoint definitions (Brian Foster) [1579873]
-- [fs] xfs: Always flush caches when integrity is required (Brian Foster) [1579873]
-- [fs] xfs: use rhashtable to track buffer cache (Brian Foster) [1579873]
-- [fs] xfs: optimise CRC updates (Brian Foster) [1579873]
-- [fs] xfs: make xfs btree stats less huge (Brian Foster) [1579873]
-- [fs] xfs: error out if trying to add attrs and anextents > 0 (Brian Foster) [1579873]
-- [fs] xfs: don't crash if reading a directory results in an unexpected hole (Brian Foster) [1579873]
-- [fs] xfs: complain if we don't get nextents bmap records (Brian Foster) [1579873]
-- [fs] xfs: check for bogus values in btree block headers (Brian Foster) [1579873]
-- [fs] xfs: forbid AG btrees with level == 0 (Brian Foster) [1579873]
-- [fs] xfs: several xattr functions can be void (Brian Foster) [1579873]
-- [fs] xfs: Move AGI buffer type setting to xfs_read_agi (Brian Foster) [1579873]
-- [fs] xfs: pass post-eof speculative prealloc blocks to bmapi (Brian Foster) [1579873]
-- [fs] xfs: track preallocation separately in xfs_bmapi_reserve_delalloc() (Brian Foster) [1579873]
-- [fs] fs: xfs: libxfs: constify xfs_nameops structures (Brian Foster) [1579873]
-- [fs] fs: xfs: xfs_icreate_item: constify xfs_item_ops structure (Brian Foster) [1579873]
-- [fs] xfs: add XBF_XBF_NO_IOACCT to buf trace output (Brian Foster) [1579873]
-- [fs] xfs: remove NULLEXTNUM (Brian Foster) [1579873]
-- [fs] xfs: remove xfs_bmap_search_extents (Brian Foster) [1579873]
-- [fs] xfs: use new extent lookup helpers xfs_file_iomap_begin_delay (Brian Foster) [1579873]
-- [fs] xfs: remove prev argument to xfs_bmapi_reserve_delalloc (Brian Foster) [1579873]
-- [fs] xfs: use new extent lookup helpers in __xfs_bunmapi (Brian Foster) [1579873]
-- [fs] xfs: use new extent lookup helpers in xfs_bmapi_write (Brian Foster) [1579873]
-- [fs] xfs: use new extent lookup helpers in xfs_bmapi_read (Brian Foster) [1579873]
-- [fs] xfs: cleanup xfs_bmap_last_before (Brian Foster) [1579873]
-- [fs] xfs: check return value of _trans_reserve_quota_nblks (Brian Foster) [1579873]
-- [fs] xfs: move dir_ino_validate declaration per xfsprogs (Brian Foster) [1579873]
-- [fs] libxfs: clean up _dir2_data_freescan (Brian Foster) [1579873]
-- [fs] libxfs: fix xfs_attr_shortform_bytesfit declaration (Brian Foster) [1579873]
-- [fs] libxfs: fix whitespace problems (Brian Foster) [1579873]
-- [fs] libxfs: synchronize dinode_verify with userspace (Brian Foster) [1579873]
-- [fs] libxfs: convert ushort to unsigned short (Brian Foster) [1579873]
-- [fs] xfs: rmap btree requires more reserved free space (Brian Foster) [1579873]
-- [fs] cifs: avoid a kmalloc in smb2_send_recv/SendReceive2 for the common case (Leif Sahlberg) [1582973]
-- [fs] cifs: remove small_smb2_init (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_lease_ack (Leif Sahlberg) [1582973]
-- [fs] cifs: remove unused variable from SMB2_read (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_oplock_break we get from server (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_query_info_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_query_directory_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_set_info_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2 read/write requests (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_lock_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_flush_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_create_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_sess_setup_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_tree_connect_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_echo_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_ioctl_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_close_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_tree_disconnect_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_logoff_req (Leif Sahlberg) [1582973]
-- [fs] cifs: remove rfc1002 header from smb2_negotiate_req (Leif Sahlberg) [1582973]
-- [fs] cifs: Add smb2_send_recv (Leif Sahlberg) [1582973]
-
-* Thu Jun 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-901.el7]
-- [target] iscsi: avoid NULL dereference in CHAP auth error path (Maurizio Lombardi) [1585081]
-- [iscsi-target] Fix non-immediate TMR reference leak (Maurizio Lombardi) [1585081]
-- [iscsi-target] Make TASK_REASSIGN use proper se_cmd->cmd_kref (Maurizio Lombardi) [1585081]
-- [target] Avoid early CMD_T_PRE_EXECUTE failures during ABORT_TASK (Maurizio Lombardi) [1585081]
-- [target] Fix quiese during transport_write_pending_qf endless loop (Maurizio Lombardi) [1585081]
-- [target] Fix caw_sem leak in transport_generic_request_failure (Maurizio Lombardi) [1585081]
-- [target] Fix QUEUE_FULL + SCSI task attribute handling (Maurizio Lombardi) [1585081]
-- [iSCSI-target] Use common error handling code in iscsi_decode_text_input() (Maurizio Lombardi) [1585081]
-- [target] iscsi: Detect conn_cmd_list corruption early (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix a race condition in iscsit_add_reject_from_cmd() (Maurizio Lombardi) [1585081]
-- [target] iscsi: Modify iscsit_do_crypto_hash_buf() prototype (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix endianness in an error message (Maurizio Lombardi) [1585081]
-- [target] iscsi: Use min() in iscsit_dump_data_payload() instead of open-coding it (Maurizio Lombardi) [1585081]
-- [target] iscsi: Define OFFLOAD_BUF_SIZE once (Maurizio Lombardi) [1585081]
-- [target] Inline transport_put_cmd() (Maurizio Lombardi) [1585081]
-- [target] Suppress gcc 7 fallthrough warnings (Maurizio Lombardi) [1585081]
-- [target] Move a declaration of a global variable into a header file (Maurizio Lombardi) [1585081]
-- [iscsi-target] fix memory leak in iscsit_release_discovery_tpg() (Maurizio Lombardi) [1585081]
-- [iscsi-target] fix memory leak in lio_target_tiqn_addtpg() (Maurizio Lombardi) [1585081]
-- [target] fix condition return in core_pr_dump_initiator_port() (Maurizio Lombardi) [1585081]
-- [target] fix match_token option in target_core_configfs.c (Maurizio Lombardi) [1585081]
-- [target] add sense code INSUFFICIENT REGISTRATION RESOURCES (Maurizio Lombardi) [1585081]
-- [target] fix double unmap data sg in core_scsi3_emulate_pro_register_and_move() (Maurizio Lombardi) [1585081]
-- [target] fix buffer offset in core_scsi3_pri_read_full_status (Maurizio Lombardi) [1585081]
-- [target] fix null pointer regression in core_tmr_drain_tmr_list (Maurizio Lombardi) [1585081]
-- [target] file: Do not return error for UNMAP if length is zero (Maurizio Lombardi) [1585081]
-- [target] Fix node_acl demo-mode + uncached dynamic shutdown regression (Maurizio Lombardi) [1585081]
-- [iscsi-target] Add login_keys_workaround attribute for non RFC initiators (Maurizio Lombardi) [1585081]
-- [target] Fix return sense reason in target_scsi3_emulate_pr_out (Maurizio Lombardi) [1585081]
-- [target] Fix cmd size for PR-OUT in passthrough_parse_cdb (Maurizio Lombardi) [1585081]
-- [target] Use macro for WRITE_VERIFY_32 operation codes (Maurizio Lombardi) [1585081]
-- [target] make device_mutex and device_list static (Maurizio Lombardi) [1585081]
-- [target] remove g_device_list (Maurizio Lombardi) [1585081]
-- [xcopy] loop over devices using idr helper (Maurizio Lombardi) [1585081]
-- [target] add helper to iterate over devices (Maurizio Lombardi) [1585081]
-- [target] add helper to find se_device by dev_index (Maurizio Lombardi) [1585081]
-- [target] use idr for se_device dev index (Maurizio Lombardi) [1585081]
-- [target] Fix COMPARE_AND_WRITE caw_sem leak during se_cmd quiesce (Maurizio Lombardi) [1585081]
-- [target] iscsi: Remove dead code from iscsit_process_scsi_cmd() (Maurizio Lombardi) [1585081]
-- [target] iscsi: Simplify iscsit_free_cmd() (Maurizio Lombardi) [1585081]
-- [target] iscsi: Remove second argument of __iscsit_free_cmd() (Maurizio Lombardi) [1585081]
-- [target] tcm_loop: Make TMF processing slightly faster (Maurizio Lombardi) [1585081]
-- [target] tcm_loop: Use target_submit_tmr() instead of open-coding this function (Maurizio Lombardi) [1585081]
-- [target] tcm_loop: Replace a waitqueue and a counter by a completion (Maurizio Lombardi) [1585081]
-- [target] tcm_loop: Merge struct tcm_loop_cmd and struct tcm_loop_tmr (Maurizio Lombardi) [1585081]
-- [target] Introduce a function that shows the command state (Maurizio Lombardi) [1585081]
-- [iscsi-target] Kill left-over iscsi_target_do_cleanup (Maurizio Lombardi) [1585081]
-- [target] Fix a deadlock between the XCOPY code and iSCSI session shutdown (Maurizio Lombardi) [1585081]
-- [target] Use get/put_unaligned_be*() instead of open coding these functions (Maurizio Lombardi) [1585081]
-- [target] Fix transport_init_se_cmd() (Maurizio Lombardi) [1585081]
-- [target] Remove se_device.dev_list (Maurizio Lombardi) [1585081]
-- [target] Use symbolic value for WRITE_VERIFY_16 (Maurizio Lombardi) [1585081]
-- [target] Add TARGET_SCF_LOOKUP_LUN_FROM_TAG support for ABORT_TASK (Maurizio Lombardi) [1585081]
-- [target] Add support for TMR percpu reference counting (Maurizio Lombardi) [1585081]
-- [target] reject COMPARE_AND_WRITE if emulate_caw is not set (Maurizio Lombardi) [1585081]
-- [iscsi-target] Avoid holding ->tpg_state_lock during param update (Maurizio Lombardi) [1585081]
-- [target] configfs: Kill se_lun->lun_link_magic (Maurizio Lombardi) [1585081]
-- [target] configfs: Kill se_device->dev_link_magic (Maurizio Lombardi) [1585081]
-- [target] remove dead code (Maurizio Lombardi) [1585081]
-- [net] target: introduce __skb_put_(zero, data, u8) (Maurizio Lombardi) [1585081]
-- [networking] target: make skb_push & __skb_push return void pointers (Maurizio Lombardi) [1585081]
-- [networking] target: make skb_put & friends return void pointers (Maurizio Lombardi) [1585081]
-- [iscsi-target] Reject immediate data underflow larger than SCSI transfer length (Maurizio Lombardi) [1585081]
-- [iscsi-target] Fix delayed logout processing greater than SECONDS_FOR_LOGOUT_COMP (Maurizio Lombardi) [1585081]
-- [target] Fix kref->refcount underflow in transport_cmd_finish_abort (Maurizio Lombardi) [1585081]
-- [target] Re-add check to reject control WRITEs with overflow data (Maurizio Lombardi) [1585081]
-- [target] Revert "Fix VERIFY and WRITE VERIFY command parsing" (Maurizio Lombardi) [1585081]
-- [target] fileio: Fix zero-length READ and WRITE handling (Maurizio Lombardi) [1585081]
-- [target] Don't force session reset if queue_depth does not change (Maurizio Lombardi) [1585081]
-- [target] Fix compare_and_write_callback handling for non GOOD status (Maurizio Lombardi) [1585081]
-- [target] fixup error message in target_tg_pt_gp_tg_pt_gp_id_store() (Maurizio Lombardi) [1585081]
-- [target] fixup error message in target_tg_pt_gp_alua_access_type_store() (Maurizio Lombardi) [1585081]
-- [target] Add WRITE_VERIFY_16 (Maurizio Lombardi) [1585081]
-- [target] Use kmalloc_array() in transport_kmap_data_sg() (Maurizio Lombardi) [1585081]
-- [target] Use kmalloc_array() in compare_and_write_callback() (Maurizio Lombardi) [1585081]
-- [target] Improve size determinations in two functions (Maurizio Lombardi) [1585081]
-- [target] Delete error messages for failed memory allocations (Maurizio Lombardi) [1585081]
-- [target] Use kcalloc() in two functions (Maurizio Lombardi) [1585081]
-- [iscsi-target] Improve size determinations in four functions (Maurizio Lombardi) [1585081]
-- [iscsi-target] Delete error messages for failed memory allocations (Maurizio Lombardi) [1585081]
-- [iscsi-target] Use kcalloc() in iscsit_allocate_iovecs() (Maurizio Lombardi) [1585081]
-- [tcm] make pi data verification configurable (Maurizio Lombardi) [1585081]
-- [target] Fix VERIFY and WRITE VERIFY command parsing (Maurizio Lombardi) [1585081]
-- [target] pr: update PR out action code table (Maurizio Lombardi) [1585081]
-- [target] iblock: convert iblock_req.pending from atomic_t to refcount_t (Maurizio Lombardi) [1585081]
-- [iscsi-target] use generic inet_pton_with_scope (Maurizio Lombardi) [1585081]
-- [iscsi-target] Drop work-around for legacy GlobalSAN initiator (Maurizio Lombardi) [1585081]
-- [iscsi-target] Fix early login failure statistics misses (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix iSCSI task reassignment handling (Maurizio Lombardi) [1585081]
-- [target] iscsi: Introduce a helper function for TMF translation (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix spelling of "reallegiance" (Maurizio Lombardi) [1585081]
-- [target] iscsi: Fix spelling of "perform" (Maurizio Lombardi) [1585081]
-- [iscsi-target] fix spelling mistake "Unsolicitied" -> "Unsolicited" (Maurizio Lombardi) [1585081]
-- [iscsi-target] graceful disconnect on invalid mapping to iovec (Maurizio Lombardi) [1585081]
-- [target] Avoid mappedlun symlink creation during lun shutdown (Maurizio Lombardi) [1585081]
-- [target] Drop pointless tfo->check_stop_free check (Maurizio Lombardi) [1585081]
-- [target] Fix VERIFY_16 handling in sbc_parse_cdb (Maurizio Lombardi) [1585081]
-- [target] pscsi: Fix TYPE_TAPE + TYPE_MEDIMUM_CHANGER export (Maurizio Lombardi) [1585081]
-- [target] Add counters for ABORT_TASK success + failure (Maurizio Lombardi) [1585081]
-- [target] Fix NULL dereference during LUN lookup + active I/O shutdown (Maurizio Lombardi) [1585081]
-- [target] Delete tmr from list before processing (Maurizio Lombardi) [1585081]
-- [target] Fix handling of aborted failed commands (Maurizio Lombardi) [1585081]
-- [target] Remove command flag CMD_T_DEV_ACTIVE (Maurizio Lombardi) [1585081]
-- [target] Remove command flag CMD_T_BUSY (Maurizio Lombardi) [1585081]
-- [target] Move session check from target_put_sess_cmd() into target_release_cmd_kref() (Maurizio Lombardi) [1585081]
-- [target] Inline transport_cmd_check_stop() (Maurizio Lombardi) [1585081]
-- [target] Remove an overly chatty debug message (Maurizio Lombardi) [1585081]
-- [target] Stop execution if CMD_T_STOP has been set (Maurizio Lombardi) [1585081]
-- [target] Correct transport_wait_for_tasks() documentation (Maurizio Lombardi) [1585081]
-- [target] Make core_tmr_abort_task() consider all commands (Maurizio Lombardi) [1585081]
-- [target] Remove se_tmr_req.tmr_lun (Maurizio Lombardi) [1585081]
-- [target] Fix COMPARE_AND_WRITE ref leak for non GOOD status (Maurizio Lombardi) [1585081]
-- [target] Fix multi-session dynamic se_node_acl double free OOPs (Maurizio Lombardi) [1585081]
-- [target] Fix early transport_generic_handle_tmr abort scenario (Maurizio Lombardi) [1585081]
-- [target] Use correct SCSI status during EXTENDED_COPY exception (Maurizio Lombardi) [1585081]
-- [target] Don't BUG_ON during NodeACL dynamic -> explicit conversion (Maurizio Lombardi) [1585081]
-- [target] support XCOPY requests without parameters (Maurizio Lombardi) [1585081]
-- [target] check for XCOPY parameter truncation (Maurizio Lombardi) [1585081]
-- [target] use XCOPY segment descriptor CSCD IDs (Maurizio Lombardi) [1585081]
-- [target] check XCOPY segment descriptor CSCD IDs (Maurizio Lombardi) [1585081]
-- [target] simplify XCOPY wwn->se_dev lookup helper (Maurizio Lombardi) [1585081]
-- [target] return UNSUPPORTED TARGET/SEGMENT DESC TYPE CODE sense (Maurizio Lombardi) [1585081]
-- [target] bounds check XCOPY total descriptor list length (Maurizio Lombardi) [1585081]
-- [target] bounds check XCOPY segment descriptor list (Maurizio Lombardi) [1585081]
-- [target] use XCOPY TOO MANY TARGET DESCRIPTORS sense (Maurizio Lombardi) [1585081]
-- [target] add XCOPY target/segment desc sense codes (Maurizio Lombardi) [1585081]
-- [target] Fix spelling mistake and unwrap multi-line text (Maurizio Lombardi) [1585081]
-- [target] user: Add an #include directive (Maurizio Lombardi) [1585081]
-- [sbp-target] Add an #include directive (Maurizio Lombardi) [1585081]
-- [sbp-target] Fix second argument of percpu_ida_alloc() (Maurizio Lombardi) [1585081]
-- [target] user: Fix a data type in tcmu_queue_cmd() (Maurizio Lombardi) [1585081]
-- [target] avoid accessing .bi_vcnt directly (Maurizio Lombardi) [1585081]
-- [target] tcm_fc: use CPU affinity for responses (Maurizio Lombardi) [1585081]
-- [target] tcm_fc: Update debugging statements to match libfc usage (Maurizio Lombardi) [1585081]
-- [target] tcm_fc: return detailed error in ft_sess_create() (Maurizio Lombardi) [1585081]
-- [target] tcm_fc: print command pointer in debug message (Maurizio Lombardi) [1585081]
-- [target] fix potential race window in target_sess_cmd_list_waiting() (Maurizio Lombardi) [1585081]
-- [target] Revert "Fix residual overflow handling in target_complete_cmd_with_length" (Maurizio Lombardi) [1585081]
-- [target] Don't override EXTENDED_COPY xcopy_pt_cmd SCSI status code (Maurizio Lombardi) [1585081]
-- [target] Make EXTENDED_COPY 0xe4 failure return COPY TARGET DEVICE NOT REACHABLE (Maurizio Lombardi) [1585081]
-- [target] fix spelling mistake: "limitiation" -> "limitation" (Maurizio Lombardi) [1585081]
-- [target] Fix residual overflow handling in target_complete_cmd_with_length (Maurizio Lombardi) [1585081]
-- [tcm_fc] set and unset FCP_SPPF_TARG_FCN (Maurizio Lombardi) [1585081]
-- [target] Fix ordered task CHECK_CONDITION early exception handling (Maurizio Lombardi) [1585081]
-- [target] Fix ordered task target_setup_cmd_from_cdb exception hang (Maurizio Lombardi) [1585081]
-- [target] Fix max_unmap_lba_count calc overflow (Maurizio Lombardi) [1585081]
-- [target] need_to_release is always false, remove redundant check and kfree (Maurizio Lombardi) [1585081]
-- [target] make close_session optional (Maurizio Lombardi) [1585081]
-- [target] make ->shutdown_session optional (Maurizio Lombardi) [1585081]
-- [target] remove acl_stop (Maurizio Lombardi) [1585081]
-- [target] consolidate and fix session shutdown (Maurizio Lombardi) [1585081]
-- [scsi] lpfc: update driver version to 12.0.0.4 (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix port initialization failure (Dick Kennedy) [1584377]
-- [scsi] lpfc: Don't return internal MBXERR_ERROR code from probe function (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix 16gb hbas failing cq create (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix crash in blk_mq layer when executing modprobe -r lpfc (Dick Kennedy) [1584377]
-- [scsi] lpfc: correct oversubscription of nvme io requests for an adapter (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix MDS diagnostics failure (Rx < Tx) (Dick Kennedy) [1584377]
-- [scsi] lpfc: fix spelling mistakes: "mabilbox" and "maibox" (Dick Kennedy) [1584377]
-- [scsi] lpfc: Comment cleanup regarding Broadcom copyright header (Dick Kennedy) [1584377]
-- [scsi] lpfc: update driver version to 12.0.0.3 (Dick Kennedy) [1584377]
-- [scsi] lpfc: Enhance log messages when reporting CQE errors (Dick Kennedy) [1584377]
-- [scsi] lpfc: Fix up log messages and stats counters in IO submit code path (Dick Kennedy) [1584377]
-- [scsi] lpfc: Driver NVME load fails when CPU cnt > WQ resource cnt (Dick Kennedy) [1584377]
-- [scsi] lpfc: Handle new link fault code returned by adapter firmware (Dick Kennedy) [1584377]
-- [scsi] lpfc: Correct fw download error message (Dick Kennedy) [1584377]
-- [scsi] lpfc: enhance LE data structure copies to hardware (Dick Kennedy) [1584377]
-- [scsi] lpfc: Change IO submit return to EBUSY if remote port is recovering (Dick Kennedy) [1584377]
-- [scsi] qla2xxx: Remove stale debug value for login_retry flag (Himanshu Madhani) [1578880]
-- [scsi] qla2xxx: Fix setting lower transfer speed if GPSC fails (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Update driver version to 10.00.00.06.07.6-k (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Correct setting of SAM_STAT_CHECK_CONDITION (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: correctly shift host byte (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix race condition between iocb timeout and initialisation (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix small memory leak in qla2x00_probe_one on probe failure (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fx00 copypaste typo (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fix error message on <qla2400 (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix Async GPN_FT for FCP and FC-NVMe scan (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Cleanup code to improve FC-NVMe error handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix FC-NVMe IO abort during driver reset (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix retry for PRLI RJT with reason of BUSY (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove nvme_done_list (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Return busy if rport going away (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix n2n_ae flag to prevent dev_loss on PDB change (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add FC-NVMe abort processing (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add changes for devloss timeout in driver (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Set IIDMA and fcport state before qla_nvme_register_remote() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove unneeded message and minor cleanup for FC-NVMe (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Restore ZIO threshold setting (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fix spelling mistake: "existant" -> "existent" (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use dma_pool_zalloc() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix function argument descriptions (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove unused symbols (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use p for printing pointers (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove FC_NO_LOOP_ID for FCP and FC-NVMe Discovery (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix crashes in qla2x00_probe_one on probe failure (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix FC-NVMe LUN discovery (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: ensure async flags are reset correctly (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: do not check login_state if no loop id is assigned (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fixup locking for session deletion (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix incorrect handle for abort IOCB (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix double free bug after firmware timeout (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Prevent relogin trigger from sending too many commands (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix a locking imbalance in qlt_24xx_handle_els() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Avoid triggering undefined behavior in qla2x00_mbx_completion() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add XCB counters to debugfs (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix queue ID for async abort with Multiqueue (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix warning for code intentation in __qla24xx_handle_gpdb_event() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix warning during port_name debug print (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix warning in qla2x00_async_iocb_timeout() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix recursion while sending terminate exchange (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: remove redundant assignment of d (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use zeroing allocator rather than allocator/memset (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Serialize session free in qlt_free_session_done (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Serialize session deletion by using work_lock (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove unused argument from qlt_schedule_sess_for_deletion() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Prevent multiple active discovery commands per session (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add retry limit for fabric scan logic (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Delay loop id allocation at login (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Increase verbosity of debug messages logged (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Allow relogin and session creation after reset (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add ability to use GPNFT/GNNFT for RSCN handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Properly extract ADISC error codes (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix GPNFT/GNNFT error handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove session creation redundant code (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Migrate switch registration commands away from mailbox interface (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix login state machine freeze (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Reduce trace noise for Async Events (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Reduce the use of terminate exchange (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add lock protection around host lookup (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add option for use reserve exch for ELS (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add switch command to simplify fabric discovery (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use known NPort ID for Management Server login (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Tweak resource count dump (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix session cleanup for N2N (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Allow target mode to accept PRLI in dual mode (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Don't call dma_free_coherent with IRQ disabled (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add ability to send PRLO (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use shadow register for ISP27XX (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Enable ATIO interrupt handshake for ISP27XX (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Move work element processing out of DPC thread (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Replace GPDB with async ADISC command (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix Firmware dump size for Extended login and Exchange Offload (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Chip reset uses wrong lock during IO flush (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add boundary checks for exchanges to be offloaded (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use chip reset to bring down laser on unload (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use IOCB path to submit Control VP MBX command (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix NULL pointer access for fcport structure (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix smatch warning in qla25xx_delete_ rsp|req _que (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: remove duplicate includes (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Suppress gcc 7 fall-through warnings (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix memory leak in dual/target mode (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix system crash in qlt_plogi_ack_unref (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove aborting ELS IOCB call issued as part of timeout (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Clear loop id after delete (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix scan state field for fcport (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Replace fcport alloc with qla2x00_alloc_fcport (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix abort command deadlock due to spinlock (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix PRLI state check (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix Relogin being triggered too fast (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Relogin to target port on a cable swap (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Recheck session state after RSCN (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix NPIV host cleanup in target mode (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix login state machine stuck at GPDB (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Serialize GPNID for multiple RSCN (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Retry switch command on time out (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix re-login for Nport Handle in use (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Move session delete to driver work queue (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix gpnid error processing (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix system crash for Notify ack timeout handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Suppress a kernel complaint in qla_init_base_qpair() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use ql2xnvmeenable to enable Q-Pair for FC-NVMe (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Cocci spatch "pool_zalloc-simple" (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Query FC4 type during RSCN processing (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Changes to support N2N logins (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Allow MBC_GET_PORT_DATABASE to query and save the port states (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add ATIO-Q processing for INTx mode (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Reinstate module parameter ql2xenablemsix (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Clear fc4f_nvme flag (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add LR distance support from nvram bit (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add support for minimum link speed (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: add missing includes for qla_isr (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: remove use of FC-specific error codes (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix WWPN/WWNN in debug message (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add command completion for error path (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix remoteport disconnect for FC-NVMe (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Simpify unregistration of FC-NVMe local/remote ports (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Added change to enable ZIO for FC-NVMe devices (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Move function prototype to correct header (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Cleanup FC-NVMe code (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix NVMe entry_type for iocb packet on BE system (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: avoid unused-function warning (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fix a bunch of typos and spelling mistakes (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Use FC-NVMe FC4 type for FDMI registration (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Send FC4 type NVMe to the management server (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Move #include qla_nvme.h to fix compile errors on RHEL 7 (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add FC-NVMe F/W initialization and transport registration (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add FC-NVMe command handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Add FC-NVMe port discovery and PRLI handling (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix oops in qla2x00_probe_one error path (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Allow SCSI-MQ to be enabled selectively (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix incorrect tcm_qla2xxx_free_cmd use during TMR ABORT (v2) (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Revert "qla2xxx: Fix incorrect tcm_qla2xxx_free_cmd use during TMR ABORT" (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix incorrect tcm_qla2xxx_free_cmd use during TMR ABORT (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix a recently introduced memory leak (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix Regression introduced by pci_alloc_irq_vectors_affinity call (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Cleaned up queue configuration code (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: remove irq_affinity_notifier (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: fix MSI-X vector affinity (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Utilize pci_alloc_irq_vectors/pci_free_irq_vectors calls (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Remove cpumask variable for qla2xxx_create_qpair() (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Avoid double completion of abort command (Himanshu Madhani) [1547714]
-- [scsi] qla2xxx: Fix NULL pointer crash due to active timer for ABTS (Himanshu Madhani) [1547714]
-
-* Wed Jun 06 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-900.el7]
-- [sound] alsa: asoc: config: update the rhel configurations for the recent changes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: do not use regmap_get_device() in rt5663_irq() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7219: change CONFIG_COMMON_CLK to CONFIG_COMMON_CLK_DA7219 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add missing includes for linux/module.h (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Hide local_irq_disable/enable() and local_irqsave/restore() (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: audio-v3: add BADD-specific values (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: mixer: make string parsing independent of mixer_build state (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: Only get AudioControl header for UAC1 class (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: stream: refactor uac3 audio interface parsing (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: stream: refactor uac1/2 audio interface parsing (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: stream: move audioformat alloc/init into separate function (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Clean up mixer element list traverse (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: acpi: add new fields for SOF support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: Add helper to find codec_dai from dai_name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add snd_soc_component_xxx_bias_level() (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq_file: Introduce DEFINE_SHOW_ATTRIBUTE() helper macro (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: recover system clock when device changes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: change FVCO maximum threshold (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: condition for clock disable (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: move key irq after jd done (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: codecs: add const to snd_soc_codec_driver structures (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: TDM support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: leave Class D gain at chip default (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: rename controls to match DAPM controls (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8824: new driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Enforce CONFIG_SND_DYNAMIC_MINORS for HDMI/DP codec (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Add missing cable lock to ctl API callbacks (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Mark paused device as inactive (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Fix access to not-yet-ready substream via cable (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Sync stale timer before release (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Fix racy hw constraints adjustment (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Fix inconsistent format due to incomplete rule (Jaroslav Kysela) [1535427]
-- [sound] alsa: aloop: Release cable upon open error path (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Give proper vendor/product name for Dell WD15 Dock (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add a quirck for B&W PX headphones (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add a quirk for Nura's first gen headset (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Allow to override the longname string (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add "Keep Interface" control (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add keep_iface flag (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Avoid superfluous usb_set_interface() calls (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Initialize Dell Dock playback volumes (Jaroslav Kysela) [1535427]
-- [sound] alsa: cs46xx: fix spelling mistake: "amplifer" -> "amplifier" (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/ca0132: fix build failure when a local macro is defined (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix incorrect usage of IS_REACHABLE() (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix races at MIDI encoding in snd_virmidi_output_trigger() (Jaroslav Kysela) [1535427]
-- [sound] alsa: vmaster: Propagate slave error (Jaroslav Kysela) [1535427]
-- [sound] alsa: vmaster: Zero-clear ctl before calling slave get (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix structure definition for X32 ABI (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Check PCM state at xfern compat ioctl (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: include linux/module.h as needed (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: add nau8824 sound card (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Not being able to find the codec ACPI-dev is an error (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: Add Playback DAI for fixup (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: Enable mclk and ssp sclk early for rt5663 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: Enable mclk and ssp sclk early (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Fix setting of SSP parameters in Kabylake machine driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Enable tdm slots for max98927 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use rtd->codec on Intel/haswell (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_rt5645: Analog Mic support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: don't use codec anymore (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Select RCCLK on init() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Change defaults to enable jack-detect, analog mics (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Add quirk for the VIOS LTH17 laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Add support for Bay Trail CR / SSP0 using boards (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Add new IN2_HS_IN3 input map and a quirk using it (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Rename IN3_MAP to IN1_HS_IN3_MAP (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Drop snd_soc_dai_set_bclk_ratio() call (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Configure PLL1 before using it (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Add quirk micbias OVCD configuration (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Only create jack if we have a jack-detect source (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Actually honor the DMIC_EN quirk if specified (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: Pass jack-src info via device-properties (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr-rt5651: add support for Line In (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr-rt5651: enable MinnowBoard Turbot quirks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr-rt5651: add quirk for IN3P which may also be used (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: fix Kiano DMI quirk (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: byt: Fix quirk for KIANO laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: byt: Introduce new map for dual mics (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: byt: Enable IN2 map quirk for a KIANO laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: soc: intel: byt: Introduce new custom IN2 map (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcht_es8316: remove useless code (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: acpi: remove hard-coded i2c-device name length (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcht_es8316: fix HID handling (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: board: Add BE DAI link for WoV and update DAPM machine map (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: sn95031: remove dead makefile about sn95031 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: sn95031: remove this code (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: remove mfld_machine (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kconfig: drop boiler plate text from config items (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kconfig: add some comments for if symbols (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: align/fix SKL/BXT/KBL Kconfigs (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: align Kconfig configurations for HiFi2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: align Kconfig dependencies for Haswell/Broadwell (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kconfig: Simplify-clarify ACPI/PCI dependencies (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Fix Kconfig with top-level selector (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: improve SND_SOC_INTEL_MACH dependencies (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Add help text for SND_SOC_INTEL_SST_TOPLEVEL (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: improve DMADEVICES dependency (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: fix Kconfig dependencies (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Add depends on X86 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: clarify Kconfig dependencies (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: reorder boards Kconfig by chronological order (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: add SOF firmare/topology file information (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Remove second shim read in register_poll (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: remove redundant variable dma_dev_name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Change kern log level to avoid unwanted messages (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Refine skl widget type check (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: remove second duplicated assignment to pointer 'res' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add dynamic module id support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Optimize UUID handling to fill pin info (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Decrease loglevel for topology loading (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: fix swapped order of function arguments dir and pin_index (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix descriptions for exported function args (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix uuid_module memory leak in failure case (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: make function skl_clk_round_rate static (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Re-order some code to silence a warning (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add extended I2S config blob support in Clock driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Do not check dev_type for dmic link type (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Check for NHLT ACPI header signature (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix typo (Jaroslav Kysela) [1535427]
-- [sound] asoc: intel: skylake: Add ssp clock driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: move machine drivers to dedicated KConfig (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Modify skl_dsp_set_dma_control API arguments (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Disable clock and power gating during FW/LIB download (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Ensure dai and dailink registration happens in sequence (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add channel map in updown mixer module IPC (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix updown mixer module format (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Request IRQ late only after all context are initialized (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Handle return value of platform_get_irq (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Free streams on suspend, re-alloc on resume (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Fix error-code check in sst_pause_stream() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Fix some style (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Fix the return value of 'sst_send_byte_stream_mrfld()' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Kill BUG_ON() usage (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Add sst_realloc_stream() function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Remove unused STREAM_DECODE and STREAM_RESET states (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Remove unnecessary sst_init_stream() function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: sst: Remove 2 unused members from stream_info struct (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Use kvzalloc() for suspend buffers (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: move all ACPI match tables to common module (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: common: use c99 syntax for ACPI/machine tables (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: atom: Remove unneeded linux/miscdevice.h include (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: atom: use cht_bsw_max98090 for Baytrail Chromebooks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5670: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: move ACPI common code out of Intel/sst tree (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcht_da7213: cosmetic fixes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_rt5672: fix card name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_rt5672: use actual HID in suspend/resume (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5670: add set_bclk_ratio in dai ops (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5670: refactor DMI quirks and fix Dell Venue settings (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Rewrite jack-type detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Add rt5651_jack_inserted() helper (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable Platform Clock during jack-type detect (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable sticky mode for OVCD (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Allow specifying the OVCD scale-factor through a device-property (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Allow specifying over-current threshold through a device-property (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Configure jack-detect source through a device-property (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Make rt5651_apply_properties() private (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Always keep OVCD enabled (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Only configure OVCD once at set_jack time (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable LDO and micbias1 supplies for jack-type detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Remove "JD Power" dapm supply (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Only configure LDO voltage once at boot (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Remove programming of PWR regs before force_bias_level() call (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Do not modify jd and PLL power bits from set_bias_level() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Do not modify the LDO voltage control bits from set_bias_level() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Fix bias_level confusion (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Remove is_sys_clk_from_pll() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Add rt5651_apply_properties() helper function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Use standard component set_jack callback (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Move 2 functions higher up in rt5651.c (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Move all jack-detect initialization to rt5651_set_jack_detect (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Remove unused rt5651_platform_data (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Fix regcache sync errors on resume (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: byt: Add headset jack (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable JD1_1 quirk for KIANO laptopt (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Rework quirk logic (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Enable jack detection on JD* pins (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5651: Convert rt5651 micbias1 to a supply widget (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5640: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: remove hard-coded compressed dailinks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: fix off-by-one dailink id (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: use helper to get codec_dai (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090: remove useless code, align with ChromeOS driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090: add gpio-based jack detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090_ti: Fix jack initialization (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090: add support for Baytrail (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_max98090: Fix I2S config + unused code (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5651: add MCLK, quirks and cleanups (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr-rt5651: fix capture routes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5640: cosmetic fixes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bytcr_rt5640: simplify MCLK quirk tests (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: boards: use devm_clk_get() unconditionally (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Fix uninitialized calibration value (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Fix rt5514_spi_burst_read() buffer passing (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Add the missing register in the readable table (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: codecs: make snd_soc_platform_driver const (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: only enable wakeup when fully initialized (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Add the sanity check for the driver_data in the resume function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: mark PM functions as __maybe_unused (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: check irq status to schedule data copy in resume function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Voice wakeup support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: Let the buf_size to align with period_bytes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: The ACPI also should use the function rt5514_parse_dp() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Make sure the DMIC delay will be happened after normal SUPPLY widgets power on (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: The DSP clock can be calibrated by the other clock source (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514: Revert Hotword Model control (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5514-spi: check irq status to schedule data copy (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt298: don't turn off HV and VREF if headset is detected (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt286: don't turn off HV and VREF if headset is detected (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rl6231: remove never matched if condition (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rl6231: get better PLL parameters (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rl6231: make arrays div and pd static const, reduces object code size (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98927: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use codec hw_write on max98927 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98927: Added max98927_dai_tdm_slot function (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98927: Added support for DSP_A and DSP_B format (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98357a: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Fix build (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi : Ensuring proper setting of output widget power state (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7219: make structure da7219_dai_clks_ops static (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7219: clkdev_drop usage depends on CONFIG_COMMON_CLK (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7219: Add common clock usage for providing DAI clks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi/nau8825/rt286/rt298/rt5663/da7219: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl_rt5663_max98927: Map BTN_0 to KEY_PLAYPAUSE (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Headset button support in kabylake machine driver (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: fix jack name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix jack name format substitution (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl_rt5663_rt5514_max98927: Map BTN_0 to KEY_PLAYPAUSE (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: kbl: Modify map for Headset Playback to fix pop-noise (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: fix issue that pop noise when start capture (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: improve crosstalk measurement protection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: improve semaphore control (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: set clear_irq when imm IRQ happened (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: nau8825: disable crosstalk by default (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98090: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: max98090: reduce verbosity on PLL unlock (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: ssm2518: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: ssm4567: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: ts3a227e: Map BTN_0 to KEY_PLAYPAUSE (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: ts3a227e: add acpi table (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Fix the wrong result of the first jack detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Check the JD status in the button pushing (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Delay and retry reading rt5663 ID register (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Add the function of impedance sensing (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5663: Change the dev getting function in rt5663_irq (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Add vendor id for Cannonlake HDMI codec (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: keep DAI driver pointer in private data (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Remove redundant assignments (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Refresh sysfs during hdmi device probe (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: clean up hdac_device variable names (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: clean up hdac_ext_device variable names (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: introduce macro to access HDMI private data (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Fix possible memory leak on parse and map nid failure (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Fix possible NULL pointer dereference (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: hdac_hdmi: Fix static checker warning for sprintf usage (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: es8316: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dmic: don't use codec anymore (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dmic: Add optional wakeup delay (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dmic: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dmic: Fix check of return value from read of 'num-channels' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: codecs: dmic: Make number of channels configurable (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7213: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7213: Improve a size determination in da7213_i2c_probe() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7213: Delete an error message for a failed memory allocation in da7213_fw_to_pdata() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: da7213: add support for DSP modes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645/rt5677: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: cht_bsw_rt5645: cosmetic fixes (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: add fallback case for jack detection support (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: add micbias power control select (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: change micbias widget type to supply (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: add platform data for the Teclast X80 Pro tablet (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: cleanup DMI matching code (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: set in2_diff flag for GPD win and pocket devices (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: Set card long_name for GPD win / pocket (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: reset RT5645_AD_DA_MIXER at probe (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: Wait for 400msec before concluding on value of RT5645_VENDOR_ID2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: remove unexisting route on new rt5645 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: rt5645: Make a few struct const (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: bdw-rt5677: Switch to devm_acpi_dev_add_driver_gpios() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Parse vendor tokens to build A-State table (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: Add Kabylake Dialog+Maxim machine driver entry (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Make local functions static (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: initialize return value properly (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix missing sentinel in sst_acpi_mach (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Parse nhlt and register clock device (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Find module id from UUID for bind params (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add BE DAI for WoV usecase (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Disable clock gating during firmware and library download (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Configure DSP clock source (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use rtd->codec on intel/skylake (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add dai load ops for dais from topology (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Add flag to check to register FE dais from topology (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: skylake: Fix potential NULL pointer dereference (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: haswell: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: baytrail: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: atom: make sst_platform_compr_ops const (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: intel: atom: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-utils: replace codec to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-utils: replace platform to component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-utils: add const to dummy_codec (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Check widget kcontrols before deref (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Fix bugs of freeing soc topology (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: fix some tiny memory leaks (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Check widget kcontrols before deref (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: create TLV data for dapm widgets (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Fix kcontrol name string handling (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Fix a potential memory leak in 'soc_tplg_dapm_widget_denum_create()' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: topology: Fix a potential NULL pointer dereference in 'soc_tplg_dapm_widget_denum_create()' (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: change mask in snd_soc_get/put_volsw_sx to unsigned int (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-io: Fix snd_soc_component_update_bits_legacy (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add Component level .read/.write (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add snd_soc_component_read32 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-dapm: Use empty struct initializer (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: add support to pinctrl dapm (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: fix debugfs read using path->connected (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: mark 'snd_soc_dapm_free_kcontrol' as static (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: add initialization for w_param_text pointer (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: Avoid creating kcontrol for params (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: Make snd_soc_dapm_add/del_routes use runtime mutex subclass (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: Refactor the code in snd_soc_dapm_new_pcm (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: dapm: fix error path in snd_soc_dapm_new_pcm (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: compress: Fixup error messages (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: compress: Remove some extraneous blank lines (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: compress: Correct handling of copy callback (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use rtd->codec on snd_soc_new_compress() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has snd_compr_ops (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-pcm: don't call flush_delayed_work() many times in soc_pcm_private_free() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: pcm: improve debug output for DPCM BE searching (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-pcm: rename .pmdown_time to .use_pmdown_time for Component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has snd_pcm_ops (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: remove unneeded dai->driver->ops check (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: remove rtd->platform checck (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: don't use rtd->codec on soc_dev_attr_is_visible() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: core: Fix typo roup->group (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: use DEFINE_SHOW_ATTRIBUTE() to decrease code duplication (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: use seq_file to dump the contents of dai_list, platform_list and codec_list (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: add missing EXPORT_SYMBOL_GPL() for snd_soc_rtdcom_lookup (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: snd_soc_rtdcom_lookup() cares component driver name (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add null_snd_soc_ops and reduce NULL ops check (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-pcm: check symmetry after hw_params (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: remove error due to probe deferral (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: remove rtd NULL check on soc_free_pcm_runtime() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: add missing EXPORT_SYMBOL_GPL() for snd_soc_disconnect_sync (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add snd_soc_disconnect_sync() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: soc_probe_dai() code simplification (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: fix build warning in soc-core.c (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: remove unneeded dai->driver check (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has non_legacy_dai_naming (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: care Codec <-> Codec case by non_legacy_dai_naming (Jaroslav Kysela) [1535427]
-- [sound] alsa: soc-core: don't call kfree() for component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: remove unnecessary message from snd_soc_register_component() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has endianness (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: snd_soc_component_driver has pmdown_time (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add Component level set_bias_level (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: add Component level pcm_new/pcm_free v2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: pcm: Sync delayed work before releasing resources (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: add snd_soc_add_component() (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: add component lookup functions (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: soc-core: remove dai_drv from snd_soc_component (Jaroslav Kysela) [1535427]
-- [sound] alsa: asoc: Add snd_soc_of_put_dai_link_codecs() helper function (Jaroslav Kysela) [1535427]
-- [sound] alsa: synth: emux: soundfont.c: Cleaning up memory leak (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Delete two error messages for a failed memory allocation in snd_emux_create_port() (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Adjust four checks for null pointers (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Improve a size determination in two functions (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Adjust one function call together with a variable assignment (Jaroslav Kysela) [1535427]
-- [sound] alsa: synth: use designated initializers (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: constify nrpn_conv_table structures (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: remove unused redundant variable p2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: stop if copy_from_user() fails (Jaroslav Kysela) [1535427]
-- [sound] alsa: synth: Fix conflicting OSS device registration on AWE32 (Jaroslav Kysela) [1535427]
-- [sound] alsa: emux: Fix mutex deadlock in OSS emulation (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: adc3: Fix channel mapping conversion for ADC3 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sanity checks for invalid EPs (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: add more quirks for DSD interfaces (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Integrate native DSD support for ITF-USB based DACs (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: FIX native DSD support for TEAC UD-501 DAC (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add native DSD support for Luxman DA-06 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add native DSD support for TEAC UD-301 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: move audioformat quirks to quirks.c (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: add more device quirks for USB DSD devices (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add native DSD support for Esoteric D-05X (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: support new Amanero Combo384 firmware version (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add native DSD support for Pro-Ject Pre Box S2 Digital (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Apply vendor ID matching for sample rate quirk (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sample rate quirk for Plantronics P610 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sample rate quirk for Plantronics C310/C520-M (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Support changing input on Sound Blaster E1 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Skip broken EU on Dell dock USB-audio (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sanity checks in UAC3 clock parsers (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: More strict sanity checks for clock parsers (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Refactor clock finder helpers (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sanity checks in v2 clock parsers (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: add implicit fb quirk for Axe-Fx III (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: simplify set_sync_ep_implicit_fb_quirk (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: add implicit fb quirk for Behringer UFX1204 (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix missing endian conversion (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix forgotten conversion of control query functions (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: fix memory leak on cval (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: update clock valid control (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: UAC2 jack detection (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix UAC2 get_ctl request with a RANGE attribute (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Proper fallback at get_term_name() (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix the missing ctl name suffix at parsing SU (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add check return value for usb_string() (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix out-of-bound error (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Fix potential out-of-bound access at parsing SU (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Add sanity checks to FE parser (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: uac1: Invalidate ctl on interrupt (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Kill stray URB at exiting (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: silence a static checker warning (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: fix uac control query argument (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb: initial USB Audio Device Class 3.0 support (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Change the semantics of the enable option (Jaroslav Kysela) [1535427]
-- [sound] alsa: usb-audio: Check out-of-bounds access by corrupted buffer descriptor (Jaroslav Kysela) [1535427]
-- [sound] alsa: x86: Make CONFIG_SND_X86 bool (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Skip jack and others for non-existing PCM streams (Jaroslav Kysela) [1535427]
-- [sound] alsa: ad1889: Replace mdelay with usleep_range in snd_ad1889_ac97_ready (Jaroslav Kysela) [1535427]
-- [sound] alsa: ad1889: Replace mdelay with usleep_range in snd_ad1889_init (Jaroslav Kysela) [1535427]
-- [sound] alsa: asihpi: clean up a couple of build warnings (Jaroslav Kysela) [1535427]
-- [sound] alsa: asihpi: fix a potential double-fetch bug when copying puhm (Jaroslav Kysela) [1535427]
-- [sound] alsa: au88x0: remove redundant assignment of variable i (Jaroslav Kysela) [1535427]
-- [sound] alsa: echoaudio: remove redundant initialization of pointer 'pipe' (Jaroslav Kysela) [1535427]
-- [sound] alsa: revert "alsa: echoaudio: purge contradictions between dimension matrix members and total number of members" (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: use dma_set_mask_and_coherent() (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: Reduce GFP_ATOMIC allocation (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: add a IOMMU workaround (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: make sure synth DMA pages are allocated with DMA functions (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: add optional debug printouts with DMA addresses (Jaroslav Kysela) [1535427]
-- [sound] alsa: emu10k1: remove reserved_page (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Sanity check of access to SPDIF controls array (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - change the location for one of two front mics (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Update ALC255 depop optimize (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add some fixes for ALC233 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Use a macro for snd_array iteration loops (Jaroslav Kysela) [1535427]
-- [sound] alsa: ice1712: define i2c eeprom addr to header file (Jaroslav Kysela) [1535427]
-- [sound] alsa: ice1724: Fix resume issues with Prodigy 7.1 HiFi (Jaroslav Kysela) [1535427]
-- [sound] alsa: ice1712: replace strcpy() with strlcpy() (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek: Add headset mic support for Intel NUC Skull Canyon (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - fix headset mic problem for Dell machines with alc236 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Add model string for Intel reference board quirk (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add support for ALC1220 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix ALC275 no sound issue (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add support for ALC236/ALC3204 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - adjust the location of one mic (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - set PINCFG_HEADSET_MIC to parse_flags (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix speaker no sound after system resume (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix Dell headset Mic can't record (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Always immediately update mute LED with pin VREF (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Make dock sound work on ThinkPad L570 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix dock line-out volume on Dell Precision 7520 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek: Limit mic boost on T480 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add headset mode support for Dell laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add support headset mode for DELL WYSE (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix pincfg at resume on Lenovo T470 dock (Jaroslav Kysela) [1548055 1535427]
-- [sound] alsa: hda/realtek: PCI quirk for Fujitsu U7x7 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Add headset mode support for Dell laptop (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Reduce the suspend time consumption for ALC256 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - update ALC215 depop optimize (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Support headset mode for ALC215/ALC285/ALC289 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Use IS_REACHABLE() for dependency on input (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Apply headphone noise quirk for another Dell XPS 13 variant (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - update ALC225 depop optimize (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Clean up ALC299 init code (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix missing COEF init for ALC225/295/299 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - change the location for one mic on a Lenovo machine (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - fix headset mic detection issue on a Dell machine (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - Fix Dell AIO LineOut issue (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/realtek - New codec support for ALC257 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Add vendor id for Cannonlake HDMI codec (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - program ICT bits to support HBR audio (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: add dock and led support for HP ProBook 640 G2 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: add dock and led support for HP EliteBook 820 G3 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Add MIC_NO_PRESENCE fixup for 2 HP machines (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Apply the existing quirk to iMac 14, 1 (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda/ca0132 - use ARRAY_SIZE (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - New VIA controller suppor no-snoop path (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Force polling mode on CFL for fixing codec communication (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Add Icelake PCI ID (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Revert power_save option default value (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Add a power_save blacklist (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Add Raven PCI ID (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - silence uninitialized variable warning in activate_amp_in() (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Make use of core codec functions to sync power state (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix yet remaining issue with vmaster 0dB initialization (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda - Fix incorrect TLV callback check introduced during set_fs() removal (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Fix too short HDMI/DP chmap reporting (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Drop useless WARN_ON() (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Copying sync power state helper to core (Jaroslav Kysela) [1535427]
-- [sound] alsa: hda: Avoid racy recreation of widget kobjects (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Add missing error checks in OSS emulation plugin builder (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix endless loop for XRUN recovery in OSS emulation (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix mutex unbalance in OSS emulation ioctls (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: potential uninitialized return values (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Return -EBUSY for OSS ioctls changing busy streams (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Avoid potential races between OSS ioctls and read/write (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix UAF in snd_pcm_oss_get_formats() (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Use ERESTARTSYS instead of EINTR in OSS emulation (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Allow aborting mutex lock at OSS read/write loops (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Abort properly at pending signal in OSS read/write loops (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix OSS sysex delivery in OSS emulation (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Remove spurious WARN_ON() at timer check (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix copy_from_user() call inside lock (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Process queue tempo/ppq change in a shot (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Enable 'use' locking in all configurations (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix possible UAF in snd_seq_check_queue() (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Clear client entry before deleting else at closing (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Remove superfluous snd_seq_queue_client_leave_cells() call (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: More protection for concurrent write and ioctl races (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Don't allow resizing pool in use (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Fix racy pool initializations (Jaroslav Kysela) [1550169 1535427] {CVE-2018-7566}
-- [sound] alsa: seq: Fix nested rwsem annotation for lockdep splat (Jaroslav Kysela) [1535427]
-- [sound] alsa: seq: Add sanity check for user-space pointer delivery (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Use krealloc() for resizing the rules array (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Remove yet superfluous WARN_ON() (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Set config update bits only when really changed (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Remove incorrect snd_BUG_ON() usages (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: update tstamp only if audio_tstamp changed (Jaroslav Kysela) [1535427]
-- [sound] alsa: core: Report audio_tstamp in snd_pcm_sync_ptr (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Return negative delays from SNDRV_PCM_IOCTL_DELAY (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Unify delay calculation in snd_pcm_status() and snd_pcm_delay() (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Clean up with snd_pcm_avail() and snd_pcm_hw_avail() helpers (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Remove WARN_ON() at snd_pcm_hw_params() error (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Use dma_bytes as size parameter in dma_mmap_coherent() (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Remove VLA usage (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix trailing semicolon (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Workaround for weird PulseAudio behavior on rewind error (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: remove redundant variable runtime (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Fix UAF at PCM release via PCM timer access (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: prevent UAF in snd_pcm_info (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Forcibly stop at disconnect callback (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: Don't call register and disconnect callbacks for internal PCM (Jaroslav Kysela) [1535427]
-- [sound] alsa: pcm: add SNDRV_PCM_FORMAT_(S,U)20 (Jaroslav Kysela) [1535427]
-- [sound] alsa: rawmidi: Avoid racy info ioctl via ctl device (Jaroslav Kysela) [1535427]
-- [sound] alsa: rawmidi: Fix missing input substream checks in compat ioctls (Jaroslav Kysela) [1535427]
-- [sound] alsa: timer: Remove kernel warning at compat ioctl error paths (Jaroslav Kysela) [1535427]
-- [sound] alsa: timer: Add missing mutex lock for compat ioctls (Jaroslav Kysela) [1535427]
-- [sound] alsa: fix kernel-doc build warning (Jaroslav Kysela) [1535427]
-- [sound] alsa: Use scnprintf() instead of snprintf() for show (Jaroslav Kysela) [1535427]
-- [sound] alsa: add snd_card_disconnect_sync() (Jaroslav Kysela) [1535427]
-- [sound] alsa: info: Use kvzalloc() for a temporary write buffer (Jaroslav Kysela) [1535427]
-- [sound] alsa: snd_hwdep_dsp_load(): don't bother with access_ok() (Jaroslav Kysela) [1535427]
-- [sound] alsa: timer: Limit max instances per timer (Jaroslav Kysela) [1535427]
-- [sound] alsa: hrtimer: make hrtimer_hw const and __initconst (Jaroslav Kysela) [1535427]
-- [sound] alsa: control: Fix a bunch of whitespace errors (Jaroslav Kysela) [1535427]
-- [sound] alsa: control: Fix memory corruption risk in snd_ctl_elem_read (Jaroslav Kysela) [1535427]
-
-* Wed Jun 06 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-899.el7]
-- [char] tpm: fix race condition in tpm_common_write() (Jerry Snitselaar) [1584435]
-- [mailbox] pcc: erroneous error message when parsing ACPI PCCT (Al Stone) [1568211]
-- [mailbox] pcc: Support HW-Reduced Communication Subspace type 2 (Al Stone) [1568211]
-- [kernel] acpica: acpi 6.1: Support for new PCCT subtable (Al Stone) [1568211]
-- [mailbox] pcc: fix channel calculation in get_pcc_channel() (Al Stone) [1568211]
-- [mailbox] pcc: Don't access an unmapped memory address space (Al Stone) [1568211]
-- [mailbox] pcc: optimized pcc_send_data (Al Stone) [1568211]
-- [mailbox] Restructure and simplify PCC mailbox code (Al Stone) [1568211]
-- [hid] hidraw: fix power sequence when closing device (Benjamin Tissoires) [1573282]
-- [hid] hidraw: fix warning destroying hidraw device files after parent (Benjamin Tissoires) [1573282]
-- [hid] hidraw: close underlying device at removal of last reader (Benjamin Tissoires) [1573282]
-- [hid] hidraw: Add spinlock in struct hidraw to protect list (Benjamin Tissoires) [1573282]
-- [hid] hidraw: fix improper mutex release (Benjamin Tissoires) [1573282]
-- [pci] Make error code types consistent in pci_{read, write}_config (Myron Stowe) [1523998]
-- [pci] Improve __pci_read_base() robustness (Myron Stowe) [1523998]
-- [pci] Short-circuit pci_device_is_present() for disconnected devices (Myron Stowe) [1523998]
-- [pci] msi: Skip disabling disconnected devices (Myron Stowe) [1523998]
-- [pci] Don't attempt config access to disconnected devices (Myron Stowe) [1523998]
-- [pci] Export PCI device config accessors (Myron Stowe) [1523998]
-- [pci] Use helper functions to access fields in struct msi_desc (Myron Stowe) [1523998]
-- [watchdog] acpi / watchdog: Fix off-by-one error at resource assignment (David Arcari) [1576173]
-- [watchdog] document watchdog_init_timeout() wdd parameter (David Arcari) [1576173]
-- [watchdog] watchdog_dev: mark expected switch fall-through (David Arcari) [1576173]
-- [watchdog] Fix kref imbalance seen if handle_boot_enabled=0 (David Arcari) [1576173]
-- [watchdog] Fix potential kref imbalance when opening watchdog (David Arcari) [1576173]
-- [whatchdog] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (David Arcari) [1576173]
-- [watchdog] introduce watchdog_worker_should_ping helper (David Arcari) [1576173]
-- [watchdog] core: add option to avoid early handling of watchdog (David Arcari) [1576173]
-- [watchdog] Introduce watchdog_stop_on_unregister helper (David Arcari) [1576173]
-- [watchdog] wdat_wdt: Ping the watchdog on resume (David Arcari) [1576173]
-- [watchdog] pretimeout: add pretimeout_available_governors attribute (David Arcari) [1576173]
-- [watchdog] pretimeout: add option to select a pretimeout governor in runtime (David Arcari) [1576173]
-- [watchdog] pretimeout: add panic pretimeout governor (David Arcari) [1576173]
-- [watchdog] pretimeout: add noop pretimeout governor (David Arcari) [1576173]
-- [watchdog] add watchdog pretimeout governor framework (David Arcari) [1576173]
-- [watchdog] wdat_wdt: Fix warning for using 0 as NULL (David Arcari) [1576173]
-- [watchdog] wdat_wdt: fix return value check in wdat_wdt_probe() (David Arcari) [1576173]
-- [watchdog] add pretimeout support to the core (David Arcari) [1576173]
-- [kernel] acpi / watchdog: Add support for WDAT hardware watchdog (David Arcari) [1576173]
-- [watchdog] core: Fix devres_alloc() allocation size (David Arcari) [1576173]
-- [watchdog] core: Clear WDOG_HW_RUNNING before calling the stop function (David Arcari) [1576173]
-- [watchdog] core: Fix error handling of watchdog_dev_init() (David Arcari) [1576173]
-- [watchdog] Implement status function in watchdog core (David Arcari) [1576173]
-- [watchdog] change watchdog_need_worker logic (David Arcari) [1576173]
-- [kernel] watchdog: Improve description of min_hw_heartbeat_ms (David Arcari) [1576173]
-- [watchdog] skip min and max timeout validity check when max_hw_heartbeat_ms is defined (David Arcari) [1576173]
-- [watchdog] Add a device managed API for watchdog_register_device() (David Arcari) [1576173]
-- [watchdog] core: Fix circular locking dependency (David Arcari) [1576173]
-- [watchdog] core: fix trivial typo in a comment (David Arcari) [1576173]
-- [watchdog] Ensure that wdd is not dereferenced if NULL (David Arcari) [1576173]
-- [watchdog] Add support for minimum time between heartbeats (David Arcari) [1576173]
-- [watchdog] Make stop function optional (David Arcari) [1576173]
-- [watchdog] Introduce WDOG_HW_RUNNING flag (David Arcari) [1576173]
-- [watchdog] Introduce hardware maximum heartbeat in watchdog core (David Arcari) [1576173]
-- [watchdog] Make set_timeout function optional (David Arcari) [1576173]
-- [watchdog] Drop pointer to watchdog device from struct watchdog_device (David Arcari) [1576173]
-- [watchdog] Add support for creating driver specific sysfs attributes (David Arcari) [1576173]
-- [kernel] watchdog: kill unref/ref ops (David Arcari) [1576173]
-- [hwmon] (sch56xx) Drop watchdog driver data reference count callbacks (David Arcari) [1576173]
-- [watchdog] Separate and maintain variables based on variable lifetime (David Arcari) [1576173]
-- [watchdog] diag288: Stop re-using watchdog core internal flags (David Arcari) [1576173]
-- [watchdog] Create watchdog device in watchdog_dev.c (David Arcari) [1576173]
-- [watchdog] core: add reboot notifier support (David Arcari) [1576173]
-- [kernel] watchdog: add units for timeout values in kerneldoc (David Arcari) [1576173]
-- [kernel] watchdog: fix some typos (David Arcari) [1576173]
-- [watchdog] core: propagate ping error code to the user space (David Arcari) [1576173]
-- [watchdog] watchdog_dev: Use single variable name for struct watchdog_device (David Arcari) [1576173]
-- [kernel] watchdog: Always evaluate new timeout against min_timeout (David Arcari) [1576173]
-- [watchdog] watchdog_dev: Use device tree alias for naming watchdogs (David Arcari) [1576173]
-- [watchdog] watchdog_core: Add watchdog registration deferral mechanism (David Arcari) [1576173]
-- [kernel] watchdog: simplify definitions of WATCHDOG_NOWAYOUT(_INIT_STATUS)? (David Arcari) [1576173]
-- [kernel] pm / sleep: Add macro to define common noirq system PM callbacks (David Arcari) [1576173]
-- [watchdog] core: Make dt "timeout-sec" property work on drivers w/out min/max (David Arcari) [1576173]
-- [watchdog] watchdog_core: Fix a trivial typo (David Arcari) [1576173]
-- [watchdog] core: don't try to stop device if not running (David Arcari) [1576173]
-- [kernel] kprobes: Propagate error from disarm_kprobe_ftrace() (Josh Poimboeuf) [1342875]
-- [kernel] kprobes: Propagate error from arm_kprobe_ftrace() (Josh Poimboeuf) [1342875]
-- [kernel] kprobes: makes kprobes/enabled works correctly for optimized kprobes (Josh Poimboeuf) [1342875]
-- [kernel] kprobes: set kprobes_all_disarmed earlier to enable re-optimization (Josh Poimboeuf) [1342875]
-- [mm] initialize pages on demand during boot (Masayoshi Mizuma) [1496330]
-- [mm] split deferred_init_range into initializing and freeing parts (Masayoshi Mizuma) [1496330]
-- [x86] topology: Update the 'cpu cores' field in /proc/cpuinfo correctly across CPU hotplug operations (Prarit Bhargava) [1582023]
-- [x86] get_user: Use pointer masking to limit speculation (Josh Poimboeuf) [1572653]
-- [x86] uaccess: Use __uaccess_begin_nospec() and uaccess_try_nospec (Josh Poimboeuf) [1572653]
-- [x86] Introduce __uaccess_begin_nospec() and uaccess_try_nospec (Josh Poimboeuf) [1572653]
-- [x86] locking/barriers: Add nospec_barrier() (Josh Poimboeuf) [1572653]
-- [x86] usercopy: Replace open coded stac/clac with __uaccess_(begin, end) (Josh Poimboeuf) [1572653]
-- [x86] reorganize SMAP handling in user space accesses (Josh Poimboeuf) [1572653]
-- [x86] uaccess: Tell the compiler that uaccess is unlikely to fault (Josh Poimboeuf) [1572653]
-- [x86] uaccess: fix sparse errors (Josh Poimboeuf) [1572653]
-- [powerpc] 64s: Move the data access exception out-of-line (Mauricio Oliveira) [1581036] {CVE-2018-3639}
-- [powerpc] 64s: Move the hdecrementer exception out-of-line (Mauricio Oliveira) [1581036] {CVE-2018-3639}
-- [powerpc] 64s: Move the decrementer exception out-of-line (Mauricio Oliveira) [1581036] {CVE-2018-3639}
-- [powerpc] 64s: Add support for a store forwarding barrier at kernel entry/exit (Mauricio Oliveira) [1581036] {CVE-2018-3639}
-- [s390] cpum_sf: ensure sample frequency of perf event attributes is non-zero (Hendrik Brueckner) [1582261]
-- [s390] qdio: fix access to uninitialized qdio_q fields (Hendrik Brueckner) [1582262]
-- [s390] dasd: fix failing path verification (Hendrik Brueckner) [1582260]
-- [s390] kdump: System memory overlap during standalone kdump (Hendrik Brueckner) [1582263]
-
-* Tue Jun 05 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-898.el7]
-- [infiniband] i40iw: Remove pre-production workaround for resource profile 1 (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Tear-down connection after CQP Modify QP failure (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Refactor of driver generated AEs (Stefan Assmann) [1576526]
-- [uapi] rdma/i40iw: Move uapi header to uapi (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: include linux/irq.h (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Improve CM node lookup time on connection setup (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Refactor handling of txpend list (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Free IEQ resources (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove setting of rem_addr.len (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove limit on re-posting AEQ entries to HW (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Zero-out consumer key on allocate stag for FMR (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove extra call to i40iw_est_sd() (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Replace mdelay with msleep in i40iw_wait_pe_ready (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Change accelerated flag to bool (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Notify user of established connection after QP in RTS (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Move MPA request event for loopback after connect (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Correct ARP index mask (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Do not free sqbuf when event is I40IW_TIMER_TYPE_CLOSE (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Allocate a sdbuf per CQP WQE (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Fix the connection ORD value for loopback (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Validate correct IRD/ORD connection parameters (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Ignore LLP_DOUBT_REACHABILITY AE (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Fix sequence number for the first partial FPDU (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Selectively teardown QPs on IP addr change event (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Add notifier for network device events (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Correct Q1/XF object count equation (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Use utility function roundup_pow_of_two() (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Set MAX_IRD_SIZE to 64 (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Reinitialize add_sd_cnt (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Use sqsize to initialize cqp_requests elements (Stefan Assmann) [1576526]
-- [infiniband] i40iw: remove unused 'timeval' struct member (Stefan Assmann) [1576526]
-- [infiniband] i40w: Remove garbage at end of INFINIBAND_I40IW Kconfig section (Stefan Assmann) [1576526]
-- [infiniband] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Move cqp_cmd_head init to CQP initialization (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove UDA QP from QoS list if creation fails (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Clear CQP Head/Tail during initialization (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Refactor queue depth calculation (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Reinitialize IEQ on MTU change (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Move ceq_valid to i40iw_sc_dev structure (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Account for IPv6 header when setting MSS (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove unused structures (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Move exception_lan_queue to VSI structure (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Remove unused static_rsrc from i40iw_create_qp_info (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Ignore AE source field in AEQE for some AEs (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Cleanup AE processing (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Convert timers to use timer_setup() (part 2) (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Convert timers to use timer_setup() (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Remove a set-but-not-used variable (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Suppress gcc 7 fall-through complaints (Stefan Assmann) [1576526]
-- [infiniband] rdma/i40iw: Fix a race condition (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Do not allow posting WR after QP is flushed (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Do not generate CQE for RTR on QP flush (Stefan Assmann) [1576526]
-- [infiniband] i40iw: Do not retransmit MPA request after it is ACKed (Stefan Assmann) [1576526]
-- [infiniband] i40iw: delete some stray tabs (Stefan Assmann) [1576526]
-- [netdrv] qede: Do not drop rx-checksum invalidated packets (Harish Patil) [1558328]
-- [netdrv] sfc: stop the TX queue before pushing new buffers (Jarod Wilson) [1547443]
-- [netdrv] sfc: fix ARFS expiry check on EF10 (Jarod Wilson) [1547443]
-- [netdrv] sfc: Use filter index rather than ID for rps_flow_id table (Jarod Wilson) [1547443]
-- [netdrv] sfc: ARFS filter IDs (Jarod Wilson) [1547443]
-- [netdrv] sfc: set and clear interrupt affinity hints (Jarod Wilson) [1547443]
-- [netdrv] sfc: check RSS is active for filter insert (Jarod Wilson) [1547443]
-- [netdrv] sfc: limit ARFS workitems in flight per channel (Jarod Wilson) [1547443]
-- [netdrv] sfc: pass the correctly bogus filter_id to rps_may_expire_flow() (Jarod Wilson) [1547443]
-- [netdrv] sfc: insert ARFS filters with replace_equal=true (Jarod Wilson) [1547443]
-- [netdrv] sfc: remove ctpio_dmabuf_start from stats (Jarod Wilson) [1547443]
-- [netdrv] sfc: Convert timers to use timer_setup() (Jarod Wilson) [1547443]
-- [netdrv] ibmvnic: Only do H_EOI for mobility events (Steve Best) [1583095]
-- [netdrv] ibmvnic: Fix partial success login retries (Steve Best) [1583095]
-- [netdrv] ibmvnic: Introduce hard reset recovery (Steve Best) [1583095]
-- [netdrv] ibmvnic: Set resetting state at earliest possible point (Steve Best) [1583095]
-- [netdrv] ibmvnic: Create separate initialization routine for resets (Steve Best) [1583095]
-- [netdrv] ibmvnic: Handle error case when setting link state (Steve Best) [1583095]
-- [netdrv] ibmvnic: Return error code if init interrupted by transport event (Steve Best) [1583095]
-- [netdrv] ibmvnic: Check CRQ command return codes (Steve Best) [1583095]
-- [netdrv] ibmvnic: Introduce active CRQ state (Steve Best) [1583095]
-- [netdrv] ibmvnic: Mark NAPI flag as disabled when released (Steve Best) [1583095]
-- [netdrv] virtchnl: Add filter data structures (Ivan Vecera) [1579466]
-- [netdrv] virtchnl: Add a macro to check the size of a union (Ivan Vecera) [1579466]
-- [netdrv] virtchnl: Add virtchl structures to support queue channels (Ivan Vecera) [1579466]
-- [net] xfrm4: Remove xfrm_tunnel_notifier (Herbert Xu) [1530476]
-- [net] export netdev_txq_to_tc to allow sch_mqprio to compile as module (Ivan Vecera) [1579358]
-- [net] sched: Identify hardware traffic classes using classid (Ivan Vecera) [1579358]
-- [net] mqprio: Reserve last 32 classid values for HW traffic classes and misc IDs (Ivan Vecera) [1579358]
-- [net] Add sysfs value to determine queue traffic class (Ivan Vecera) [1579358]
-- [net] Move functions for configuring traffic classes out of inline headers (Ivan Vecera) [1579358]
-- [net] pkt_cls: add new tc cls helper to check offload flag and chain index (Ivan Vecera) [1579263]
-- [net] ipv4: Fix graylist symbol change when edit fib_table (Hangbin Liu) [1511351]
-- [net] vlan: Pass ethtool get_ts_info queries to real device (Hangbin Liu) [1520356]
-- [net] vlan: Pass SIOC(SG)HWTSTAMP ioctls to real device (Hangbin Liu) [1520356]
-- [net] nf_reset: also clear nfctinfo bits (Florian Westphal) [1572983]
-- [net] vxlan: add ttl inherit support (Hangbin Liu) [1512782]
-
-* Fri Jun 01 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-897.el7]
-- [usb] typec: wcove: fix the sink capabilities (Torez Smith) [1540721]
-- [usb] sparc, leon: Select USB_UHCI_BIG_ENDIAN_(MMIO, DESC) (Torez Smith) [1540721]
-- [usb] Move USB_UHCI_BIG_ENDIAN_* out of USB_SUPPORT (Torez Smith) [1540721]
-- [usb] r8152: set rx mode early when linking on (Torez Smith) [1540721]
-- [usb] r8152: fix wrong checksum status for received IPv4 packets (Torez Smith) [1540721]
-- [usb] lan78xx: remove redundant initialization of pointer 'phydev' (Torez Smith) [1540721]
-- [usb] qmi_wwan: Add support for Quectel EP06 (Torez Smith) [1540721]
-- [usb] serial: keyspan: Drop firmware Kconfig options (Torez Smith) [1540721]
-- [usb] serial: pl2303: new device id for Chilitag (Torez Smith) [1540721]
-- [usb] misc: fix up some remaining DEVICE_ATTR() usages (Torez Smith) [1540721]
-- [usb] atm: fix up some remaining DEVICE_ATTR() usage (Torez Smith) [1540721]
-- [usb] move many drivers to use DEVICE_ATTR_WO (Torez Smith) [1540721]
-- [usb] move many drivers to use DEVICE_ATTR_RO (Torez Smith) [1540721]
-- [usb] move many drivers to use DEVICE_ATTR_RW (Torez Smith) [1540721]
-- [usb] misc: chaoskey: Use true and false for boolean values (Torez Smith) [1540721]
-- [usb] storage: remove old wording about how to submit a change (Torez Smith) [1540721]
-- [usb] storage: remove invalid URL from drivers (Torez Smith) [1540721]
-- [usb] usbnet: silence an unnecessary warning (Torez Smith) [1540721]
-- [usb] serial: remove redundant initializations of 'mos_parport' (Torez Smith) [1540721]
-- [usb] usbip: vhci_hcd: update 'status' file header and format (Torez Smith) [1540721]
-- [usb] serial: simple: add Motorola Tetra driver (Torez Smith) [1540721]
-- [usb] cdc-acm: apply quirk for card reader (Torez Smith) [1540721]
-- [usb] option: Add support for FS040U modem (Torez Smith) [1540721]
-- [usb] r8152: disable RX aggregation on Dell TB16 dock (Torez Smith) [1540721]
-- [usb] uhci: Add clk support to uhci-platform (Torez Smith) [1540721]
-- [usb] lan78xx: Fix failure in USB Full Speed (Torez Smith) [1540721]
-- [usb] uas: unconditionally bring back host after reset (Torez Smith) [1540721]
-- [usb] cdc-acm: Do not log urb submission errors on disconnect (Torez Smith) [1540721]
-- [usb] xhci-mtk: fix semicolon.cocci warnings (Torez Smith) [1540721]
-- [usb] misc: usb3503: make sure reset is low for at least 100us (Torez Smith) [1540721]
-- [usb] uas: ignore UAS for Norelsys NS1068(X) chips (Torez Smith) [1540721]
-- [usb] xhci-mtk: supports remote wakeup for mt2712 with two xHCI IPs (Torez Smith) [1540721]
-- [usb] clarify USB_DT_USB_SSP_CAP_SIZE(ssac) definition (Torez Smith) [1540721]
-- [usb] fix usbmon BUG trigger (Torez Smith) [1540721]
-- [usb] serial: ark3116: move TIOCGSERIAL ioctl case to function (Torez Smith) [1540721]
-- [usb] serial: ark3116: remove dummy TIOCSSERIAL ioctl (Torez Smith) [1540721]
-- [usb] usbip: vudc_tx: fix v_send_ret_submit() vulnerability to null xfer buffer (Torez Smith) [1540721]
-- [usb] usbip: remove kernel addresses from usb device and urb debug msgs (Torez Smith) [1540721]
-- [usb] usbip: fix vudc_rx: harden CMD_SUBMIT path to handle malicious input (Torez Smith) [1540721]
-- [usb] usbip: vhci: fix spelling mistake: "synchronuously" -> "synchronously" (Torez Smith) [1540721]
-- [usb] usbip: remove useless call in usbip_recv (Torez Smith) [1540721]
-- [usb] host: Use zeroing memory allocator rather than allocator/memset (Torez Smith) [1540721]
-- [usb] serial: cp210x: add new device ID ELV ALC 8xxx (Torez Smith) [1540721]
-- [usb] media: uvcvideo: Use ktime_t for stats (Torez Smith) [1540721]
-- [usb] usb: qmi_wwan: add support for YUGA CLM920-NC5 PID 0x9625 (Torez Smith) [1540721]
-- [usb] serial: cp210x: add IDs for LifeScan OneTouch Verio IQ (Torez Smith) [1540721]
-- [usb] xhci: Add XHCI_TRUST_TX_LENGTH for Renesas uPD720201 (Torez Smith) [1540721]
-- [usb] xhci: Fix use-after-free in xhci debugfs (Torez Smith) [1540721]
-- [usb] xhci: Fix xhci debugfs NULL pointer dereference in resume from hibernate (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: add id for Airbus DS P8GR (Torez Smith) [1540721]
-- [usb] pd: fix the offset for SVID specific commands (Torez Smith) [1540721]
-- [usb] Add device quirk for Logitech HD Pro Webcam C925e (Torez Smith) [1540721]
-- [usb] add RESET_RESUME for ELSA MicroLink 56K (Torez Smith) [1540721]
-- [usb] usbip: stub_rx: fix static checker warning on unnecessary checks (Torez Smith) [1540721]
-- [usb] usbip: prevent leaking socket pointer address in messages (Torez Smith) [1540721]
-- [usb] usbip: stub: stop printing kernel pointer addresses in messages (Torez Smith) [1540721]
-- [usb] usbip: vhci: stop printing kernel pointer addresses in messages (Torez Smith) [1540721]
-- [usb] Fix off by one in type-specific length check of BOS SSP capability (Torez Smith) [1531359 1540721]
-- [usb] serial: option: adding support for YUGA CLM920-NC5 (Torez Smith) [1540721]
-- [usb] usbtest: Add TEST 29, toggle sync, Clear toggle between bulk writes (Torez Smith) [1540721]
-- [usb] core: add support for USB_REQ_SET_ISOCH_DELAY (Torez Smith) [1540721]
-- [usb] qmi_wwan: set FLAG_SEND_ZLP to avoid network initiated disconnect (Torez Smith) [1540721]
-- [usb] usb: qmi_wwan: add Telit ME910 PID 0x1101 support (Torez Smith) [1540721]
-- [usb] serial: qcserial: add Sierra Wireless EM7565 (Torez Smith) [1540721]
-- [usb] serial: option: add support for Telit ME910 PID 0x1101 (Torez Smith) [1540721]
-- [usb] serial: io_edgeport: fix possible sleep-in-atomic (Torez Smith) [1540721]
-- [usb] qmi_wwan: add Sierra EM7565 1199:9091 (Torez Smith) [1540721]
-- [usb] revert "usb: core: only clean up what we allocated" (Torez Smith) [1540721]
-- [usb] xhci: make function xhci_dbc_free_req static (Torez Smith) [1540721]
-- [usb] xhci: fixup incorrect memset size parameter when clearing up DbC on exit (Torez Smith) [1540721]
-- [usb] remove the URB_NO_FSBR flag (Torez Smith) [1540721]
-- [usb] core: only clean up what we allocated (Torez Smith) [1540721]
-- [usb] xhci: fix TDS for MTK xHCI1.1 (Torez Smith) [1540721]
-- [usb] xhci: Don't add a virt_dev to the devs array before it's fully allocated (Torez Smith) [1540721]
-- [usb] xhci: add port status tracing for Get Hub Status requests (Torez Smith) [1540721]
-- [usb] xhci: add port status tracing for Get Port Status hub requests (Torez Smith) [1540721]
-- [usb] xhci: allow imod-interval to be configurable (Torez Smith) [1540721]
-- [usb] xhci: Cleanup printk debug message for ERST (Torez Smith) [1540721]
-- [usb] xhci: Cleanup printk debug message for registers (Torez Smith) [1540721]
-- [usb] xhci: Add DbC support in xHCI driver (Torez Smith) [1540721 1493823]
-- [usb] xhci: Make some static functions global (Torez Smith) [1540721]
-- [usb] xhci: remove unnecessary boolean parameter from xhci_alloc_command (Torez Smith) [1540721]
-- [usb] xhci: add helper to allocate command with input context (Torez Smith) [1540721]
-- [usb] xhci: remove unused variable ep_ring (Torez Smith) [1540721]
-- [usb] xhci: remove unused variable urb_priv (Torez Smith) [1540721]
-- [usb] xhci: remove unused variable ep (Torez Smith) [1540721]
-- [usb] xhci: remove unused variable last_freed_endpoint (Torez Smith) [1540721]
-- [usb] media: uvcvideo: Mark buffer error where overflow (Torez Smith) [1540721]
-- [usb] usbip: fix stub_send_ret_submit() vulnerability to null transfer_buffer (Torez Smith) [1540721]
-- [usb] usbip: prevent vhci_hcd driver from leaking a socket pointer address (Torez Smith) [1540721]
-- [usb] usbip: fix stub_rx: harden CMD_SUBMIT path to handle malicious input (Torez Smith) [1540721]
-- [usb] usbip: fix stub_rx: get_pipe() to validate endpoint number (Torez Smith) [1540721]
-- [usb] media: uvcvideo: Remove duplicate & operation (Torez Smith) [1540721]
-- [usb] uas and storage: Add US_FL_BROKEN_FUA for another JMicron JMS567 ID (Torez Smith) [1540721]
-- [usb] usbnet: fix alignment for frames with no ethernet header (Torez Smith) [1540721]
-- [usb] typec: tcpm: Only request matching pdos (Torez Smith) [1540721]
-- [usb] typec: tcpm: Validate source and sink caps (Torez Smith) [1540721]
-- [usb] early: Correct the endpoint type value for bulk in endpoint (Torez Smith) [1540721]
-- [usb] uas: Remove US_FL_NO_ATA_1X unusual device entries for Seagate devices (Torez Smith) [1540721]
-- [usb] storage: Remove obsolete "FIXME" (Torez Smith) [1540721]
-- [usb] typec: remove duplicate includes (Torez Smith) [1540721]
-- [usb] core: Fix logging messages with spurious periods after newlines (Torez Smith) [1540721]
-- [usb] xhci: fix panic in xhci_free_virt_devices_depth_first (Torez Smith) [1540721]
-- [usb] xhci: Don't show incorrect WARN message about events for empty rings (Torez Smith) [1554051 1540721]
-- [usb] usbip: Fix USB device hang due to wrong enabling of scatter-gather (Torez Smith) [1540721]
-- [usb] uas: Always apply US_FL_NO_ATA_1X quirk to Seagate devices (Torez Smith) [1540721]
-- [usb] quirks: Add no-lpm quirk for KY-688 USB 3.1 Type-C Hub (Torez Smith) [1540721]
-- [usb] hub: Cycle HUB power when initialization fails (Torez Smith) [1540721]
-- [usb] core: Add type-specific length check of BOS descriptors (Torez Smith) [1531359 1540721]
-- [usb] host: fix incorrect updating of offset (Torez Smith) [1540721]
-- [usb] ulpi: fix bus-node lookup (Torez Smith) [1540721]
-- [usb] usbfs: Filter flags passed in from user space (Torez Smith) [1540721]
-- [usb] add user selectable option for the whole USB Type-C Support (Torez Smith) [1540721]
-- [usb] of: clean up device-node helper (Torez Smith) [1540721]
-- [usb] ledtrig-usbport: fix of-node leak (Torez Smith) [1540721]
-- [usb] add device-tree support for interfaces (Torez Smith) [1540721]
-- [usb] typec: tcpm: fusb302: Resolve out of order messaging events (Torez Smith) [1540721]
-- [usb] typec: fusb302: Use dev_err during probe (Torez Smith) [1540721]
-- [usb] usbip: fix spelling mistake: "synchronuously" -> "synchronously" (Torez Smith) [1540721]
-- [usb] host: whci: remove redundant variable t (Torez Smith) [1540721]
-- [usb] core: lower log level when device is not able to deal with string (Torez Smith) [1540721]
-- [usb] serial: usb_debug: add new USB device id (Torez Smith) [1540721]
-- [usb] serial: ark3116: clean up return values of register accessors (Torez Smith) [1540721]
-- [usb] serial: iuu_phoenix: remove redundant assignment of DIV to itself (Torez Smith) [1540721]
-- [usb] serial: option: add Quectel BG96 id (Torez Smith) [1540721]
-- [usb] treewide: setup_timer() -> timer_setup() (Torez Smith) [1540721]
-- [usb] treewide: init_timer() -> setup_timer() (Torez Smith) [1540721]
-- [usb] au0828: Add timer to restart TS stream if no data arrives on bulk endpoint (Torez Smith) [1540721]
-- [usb] qmi_wwan: add Quectel BG96 2c7c:0296 (Torez Smith) [1540721]
-- [usb] usbnet: ipheth: fix potential null pointer dereference in ipheth_carrier_set (Torez Smith) [1540721]
-- [usb] usb: hso.c: remove unneeded DRIVER_LICENSE #define (Torez Smith) [1540721]
-- [usb] cdc_ncm: GetNtbFormat endian fix (Torez Smith) [1540721]
-- [usb] usbnet: ipheth: prevent TX queue timeouts when device not ready (Torez Smith) [1540721]
-- [usb] usbfs: compute urb->actual_length for isochronous (Torez Smith) [1540721]
-- [usb] core: message: remember to reset 'ret' to 0 when necessary (Torez Smith) [1540721]
-- [usb] usb: asix: fill null-ptr-deref in asix_suspend (Torez Smith) [1540721]
-- [usb] revert "net: usb: asix: fill null-ptr-deref in asix_suspend" (Torez Smith) [1540721]
-- [usb] qmi_wwan: Add missing skb_reset_mac_header-call (Torez Smith) [1540721]
-- [usb] qmi_wwan: fix divide by 0 on bad descriptors (Torez Smith) [1540721]
-- [usb] cdc_ether: fix divide by 0 on bad descriptors (Torez Smith) [1540721]
-- [usb] typec: Remove remaining redundant license text (Torez Smith) [1540721]
-- [usb] typec: add SPDX identifiers to some files (Torez Smith) [1540721]
-- [usb] host: xhci-debugfs: add SPDX lines (Torez Smith) [1540721]
-- [usb] add SPDX identifiers to all remaining Makefiles (Torez Smith) [1540721]
-- [usb] adutux: remove redundant variable minor (Torez Smith) [1540721]
-- [usb] core: add a new usb_get_ptm_status() helper (Torez Smith) [1540721]
-- [usb] core: add a 'type' parameter to usb_get_status() (Torez Smith) [1540721]
-- [usb] core: introduce a new usb_get_std_status() helper (Torez Smith) [1540721]
-- [usb] core: rename usb_get_status() 'type' argument to 'recip' (Torez Smith) [1540721]
-- [usb] core: add Status Type definitions (Torez Smith) [1540721]
-- [usb] host: ehci: Remove redundant license text (Torez Smith) [1540721]
-- [usb] host: whci: Remove redundant license text (Torez Smith) [1540721]
-- [usb] host: xhci: Remove redundant license text (Torez Smith) [1540721]
-- [usb] early: Remove redundant license text (Torez Smith) [1540721]
-- [usb] typec: Remove redundant license text (Torez Smith) [1540721]
-- [usb] usbip: Remove redundant license text (Torez Smith) [1540721]
-- [usb] wusbcore: Remove redundant license text (Torez Smith) [1540721]
-- [usb] usbip: use monotonic timestamps (Torez Smith) [1540721]
-- [usb] usbip: fix off-by-one frame number calculation (Torez Smith) [1540721]
-- [usb] serial: Change DbC debug device binding ID (Torez Smith) [1540721]
-- [usb] early: Use new USB product ID and strings for DbC device (Torez Smith) [1540721]
-- [usb] usb: asix: fill null-ptr-deref in asix_suspend (Torez Smith) [1540721]
-- [usb] Add delay-init quirk for Corsair K70 LUX keyboards (Torez Smith) [1540721]
-- [usb] serial: fix module-license macros (Torez Smith) [1540721]
-- [usb] common: Remove redundant license text (Torez Smith) [1540721]
-- [usb] usb-skeleton: Remove redundant license text (Torez Smith) [1540721]
-- [usb] core: Remove redundant license text (Torez Smith) [1540721]
-- [usb] image: Remove redundant license text (Torez Smith) [1540721]
-- [usb] class: Remove redundant license text (Torez Smith) [1540721]
-- [usb] atm: Remove redundant license text (Torez Smith) [1540721]
-- [usb] misc: Remove redundant license text (Torez Smith) [1540721]
-- [usb] storage: Remove redundant license text (Torez Smith) [1540721]
-- [usb] serial: Remove redundant license text (Torez Smith) [1540721]
-- [usb] add SPDX identifiers to all remaining files in usb/ (Torez Smith) [1540721]
-- [usb] core: move existing SPDX tags to top of the file (Torez Smith) [1540721]
-- [usb] xhci: tegra: use time64_t for printing timestamp (Torez Smith) [1540721]
-- [usb] license cleanup: add SPDX license identifier to uapi header files with a license (Torez Smith) [1540721]
-- [usb] license cleanup: add SPDX license identifier to uapi header files with no license (Torez Smith) [1540721]
-- [usb] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Torez Smith) [1540721]
-- [usb] usbtest: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] kconfig: clarify use of USB_PCI (Torez Smith) [1540721]
-- [usb] host: pci-quirks: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: xhci-hub: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: ehci-hcd: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: ohci-hcd: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: xhci-mem: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] host: xhci: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] image: mdc800: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] core: urb: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] storage: uas: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] usbip: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] usb-storage: make use of srb local variable (Torez Smith) [1540721]
-- [usb] typec: tps6598x: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] wusbcore: Use put_unaligned_le32 (Torez Smith) [1540721]
-- [usb] wusbcore: wa-xfer: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] hso: remove redundant unused variable dev (Torez Smith) [1540721]
-- [usb] serial: qcserial: add pid/vid for Sierra Wireless EM7355 fw update (Torez Smith) [1540721]
-- [usb] serial: kobil_sct: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] storage: sddr55: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] atm: cxacru: mark expected switch fall-throughs (Torez Smith) [1540721]
-- [usb] class: usbtmc: mark expected switch fall-through (Torez Smith) [1540721]
-- [usb] xhci-mtk: fix ptr_ret.cocci warnings (Torez Smith) [1540721]
-- [usb] cdc_ether: flag the Huawei ME906/ME909 as WWAN (Torez Smith) [1540721]
-- [usb] net/usb: add device id for TP-LINK UE300 USB 3.0 Ethernet (Torez Smith) [1540721]
-- [usb] Force disconnect Huawei 4G modem during suspend (Torez Smith) [1540721]
-- [usb] host: modify description for MTK xHCI config (Torez Smith) [1540721]
-- [usb] xhci-mtk: add optional mcu and dma bus clocks (Torez Smith) [1540721]
-- [usb] xhci-mtk: remove dummy wakeup debounce clocks (Torez Smith) [1540721]
-- [usb] xhci-mtk: support option to disable usb3 ports (Torez Smith) [1540721]
-- [usb] xhci-mtk: check clock stability of U3_MAC (Torez Smith) [1540721]
-- [usb] xhci-mtk: use ports count from xhci in xhci_mtk_sch_init() (Torez Smith) [1540721]
-- [usb] xhci-mtk: use dma_set_mask_and_coherent() in probe function (Torez Smith) [1540721]
-- [usb] misc: usbtest: remove duplicate & operation (Torez Smith) [1540721]
-- [usb] hub: Allow reset retry for USB2 devices on connect bounce (Torez Smith) [1540721]
-- [usb] core: fix out-of-bounds access bug in usb_get_bos_descriptor() (Torez Smith) [1540721]
-- [usb] usb: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] usb/usbnet: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] Apply hardware LPM attributes to 3.1 device (Torez Smith) [1540721]
-- [usb] quirks: add quirk for WORLDE MINI MIDI keyboard (Torez Smith) [1540721]
-- [usb] xhci: Convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] typec: wcove: fix uninitialized usbc_irq1 and usbc_irq2 (Torez Smith) [1540721]
-- [usb] typec: tcpm: reset the port on removal (Torez Smith) [1540721]
-- [usb] cdc_acm: Add quirk for Elatec TWN3 (Torez Smith) [1540721]
-- [usb] devio: revert "usb: devio: Don't corrupt user memory" (Torez Smith) [1540721]
-- [usb] xhci: Handle error condition in xhci_stop_device() (Torez Smith) [1540721]
-- [usb] xhci: Reset halted endpoint if trb is noop (Torez Smith) [1540721]
-- [usb] xhci: Cleanup current_cmd in xhci_cleanup_command_queue() (Torez Smith) [1540721]
-- [usb] serial: metro-usb: add MS7820 device id (Torez Smith) [1540721]
-- [usb] serial: drop unused core USB driver (Torez Smith) [1540721]
-- [usb] serial: metro-usb: add missing interrupt-out endpoint check (Torez Smith) [1540721]
-- [usb] serial: metro-usb: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: metro-usb: stop I/O after failed open (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: simplify init-session logic (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: clean up init-session messages (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: drop unused timer initialisation (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: fix memory leak on probe errors (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: fix I/O after failed probe and remove (Torez Smith) [1540721]
-- [usb] core: Add a helper function to check the validity of EP type in URB (Torez Smith) [1540721]
-- [usb] usbtest: fix NULL pointer dereference (Torez Smith) [1540721]
-- [usb] misc: usbtest: Fix overflow in usbtest_do_ioctl() (Torez Smith) [1540721]
-- [usb] serial: garmin_gps: convert timers to use timer_setup() (Torez Smith) [1540721]
-- [usb] cdc_ether: flag the u-blox TOBY-L2 and SARA-U2 as wwan (Torez Smith) [1540721]
-- [usb] serial: console: fix use-after-free after failed setup (Torez Smith) [1540721]
-- [usb] serial: console: fix use-after-free on disconnect (Torez Smith) [1540721]
-- [usb] xhci: trace slot context when calling xhci_configure_endpoint() (Torez Smith) [1540721]
-- [usb] xhci: allow TRACE to work with EVENT ring dequeue (Torez Smith) [1540721]
-- [usb] xhci: reduce device initiated resume time variance (Torez Smith) [1540721]
-- [usb] xhci: Handle USB transaction error on address command (Torez Smith) [1540721]
-- [usb] xhci: Remove xhci->mutex from xhci_alloc_dev() (Torez Smith) [1540721]
-- [usb] xhci: Return error when host is dead in xhci_disable_slot() (Torez Smith) [1540721]
-- [usb] xhci: Fix memory leak when xhci_disable_slot() returns error (Torez Smith) [1540721]
-- [usb] xhci: Fix potential memory leak in xhci_disable_slot() (Torez Smith) [1540721]
-- [usb] xhci: Disable slot even when virt-dev is null (Torez Smith) [1540721]
-- [usb] xhci: Add debugfs interface for xHCI driver (Torez Smith) [1540721]
-- [usb] xhci: add port speed ID to portsc tracing (Torez Smith) [1540721]
-- [usb] host: xhci support option to disable the xHCI USB2 HW LPM (Torez Smith) [1540721]
-- [usb] usb: speedtch: use setup_timer() helper (Torez Smith) [1540721]
-- [usb] usb: atm: cxacru: use setup_timer() helper (Torez Smith) [1540721]
-- [usb] usb: hcd: use setup_timer() helper (Torez Smith) [1540721]
-- [usb] typec: driver for TI TPS6598x USB Power Delivery controllers (Torez Smith) [1540721]
-- [usb] typec: wcove: start using tcpm for USB PD support (Torez Smith) [1540721]
-- [usb] rndis_host: support Novatel Verizon USB730L (Torez Smith) [1540721]
-- [usb] serial: qcserial: add Dell DW5818, DW5819 (Torez Smith) [1540721]
-- [usb] r8152: add Linksys USB3GIGV1 id (Torez Smith) [1540721]
-- [usb] cdc-wdm: ignore -EPIPE from GetEncapsulatedResponse (Torez Smith) [1540721]
-- [usb] devio: Don't corrupt user memory (Torez Smith) [1540721]
-- [usb] devio: Prevent integer overflow in proc_do_submiturb() (Torez Smith) [1540721]
-- [net] Remove useless function skb_header_release (Torez Smith) [1540721]
-- [usb] uas: fix bug in handling of alternate settings (Torez Smith) [1540721]
-- [usb] usb-storage: unusual_devs entry to fix write-access regression for Seagate external drives (Torez Smith) [1540721]
-- [usb] usb-storage: fix bogus hardware error messages for ATA pass-thru devices (Torez Smith) [1540721]
-- [usb] usb: catc: use setup_timer() helper (Torez Smith) [1540721]
-- [usb] lan78xx: Use default values loaded from EEPROM/OTP after reset (Torez Smith) [1540721]
-- [usb] lan78xx: Allow EEPROM write for less than MAX_EEPROM_SIZE (Torez Smith) [1540721]
-- [usb] lan78xx: Fix for eeprom read/write when device auto suspend (Torez Smith) [1540721]
-- [usb] core: harden cdc_parse_cdc_header (Torez Smith) [1540721]
-- [usb] fix out-of-bounds in usb_set_configuration (Torez Smith) [1540721]
-- [usb] serial: cp210x: add support for ELV TFD500 (Torez Smith) [1540721]
-- [usb] revert "xhci: Limit USB2 port wake support for AMD Promontory hosts" (Torez Smith) [1540721]
-- [usb] xhci: Fix sleeping with spin_lock_irq() held in ASmedia 1042A workaround (Torez Smith) [1540721]
-- [usb] xhci: fix wrong endpoint ESIT value shown in tracing (Torez Smith) [1540721]
-- [usb] pci-quirks.c: Corrected timeout values used in handshake (Torez Smith) [1540721]
-- [usb] xhci: fix finding correct bus_state structure for USB 3.1 hosts (Torez Smith) [1540721]
-- [usb] xhci: Free the right ring in xhci_add_endpoint() (Torez Smith) [1540721]
-- [usb] storage: make const arrays static, reduces object code size (Torez Smith) [1540721]
-- [usb] typec: tcpm: Rewrite comparison to NULL pointer (Torez Smith) [1540721]
-- [usb] Increase quirk delay for USB devices (Torez Smith) [1540721]
-- [usb] typec: fusb302: Move out of staging (Torez Smith) [1540721]
-- [usb] typec: tcpm: Move out of staging (Torez Smith) [1540721]
-- [usb] serial: option: add support for TP-Link LTE module (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: add id for Cypress WICED dev board (Torez Smith) [1540721]
-- [usb] smsc95xx: Configure pause time to 0xffff when tx flow control enabled (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: make vhci_hc_driver const (Torez Smith) [1540721]
-- [usb] phy: Avoid unchecked dereference warning (Torez Smith) [1540721]
-- [usb] xhci-mtk: add generic compatible string (Torez Smith) [1540721]
-- [usb] usbip: auto retry for concurrent attach (Torez Smith) [1540721]
-- [usb] serial: option: simplify 3 D-Link device entries (Torez Smith) [1540721]
-- [usb] serial: option: add support for D-Link DWM-157 C1 (Torez Smith) [1540721]
-- [usb] core: usbport: fix "bug: key not in .data" when lockdep is enabled (Torez Smith) [1540721]
-- [usb] cdc_ncm: flag the u-blox TOBY-L4 as wwan (Torez Smith) [1540721]
-- [usb] Add device quirk for Logitech HD Pro Webcam C920-C (Torez Smith) [1540721]
-- [usb] misc: lvstest: add entry to place port in compliance mode (Torez Smith) [1540721]
-- [usb] xhci: Support enabling of compliance mode for xhci 1.1 (Torez Smith) [1540721]
-- [usb] xhci: Fix regression when ATI chipsets detected (Torez Smith) [1540721]
-- [usb] quirks: add delay init quirk for Corsair Strafe RGB keyboard (Torez Smith) [1540721]
-- [usb] common: use of_property_read_bool() (Torez Smith) [1540721]
-- [usb] core: constify vm_operations_struct (Torez Smith) [1540721]
-- [usb] misc: ftdi-elan: fix duplicated code for different branches (Torez Smith) [1540721]
-- [usb] core: Avoid race of async_completed() w/ usbdev_release() (Torez Smith) [1540721]
-- [usb] make device_type const (Torez Smith) [1540721]
-- [usb] scsi: uas: move eh_bus_reset_handler to eh_device_reset_handler (Torez Smith) [1540721]
-- [usb] xhci: rework bus_resume and check ports are suspended before resuming them (Torez Smith) [1540721]
-- [usb] Increase root hub reset signaling time to prevent retry (Torez Smith) [1540721]
-- [usb] xhci: add port status tracing (Torez Smith) [1540721]
-- [usb] xhci: rename temp and temp1 variables (Torez Smith) [1540721]
-- [usb] xhci: Add port status decoder for tracing purposes (Torez Smith) [1540721]
-- [usb] xhci: add definitions for all port link states (Torez Smith) [1540721]
-- [usb] phy: Add USB charger support (Torez Smith) [1540721]
-- [usb] uapi: usb: Introduce USB charger type and state definition (Torez Smith) [1540721]
-- [usb] serial: pl2303: add new ATEN device id (Torez Smith) [1540721]
-- [usb] quirks: Add no-lpm quirk for Moshi USB to Ethernet Adapter (Torez Smith) [1540721]
-- [usb] Check for dropped connection before switching to full speed (Torez Smith) [1540721]
-- [usb] xhci: Add quirk for Certain failing HP keyboard on reset after resume (Torez Smith) [1540721]
-- [usb] atm: ueagle-atm: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] usbtmc: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] wusbcore: dev-sysfs: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] wusbcore: wusbhc: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] wusbcore: cbaf: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] usbsevseg: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] hcd: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] atm: make atmdev_ops const (Torez Smith) [1540721]
-- [usb] speedtch: constify usb_device_id (Torez Smith) [1540721]
-- [usb] hwa-hc: constify usb_device_id (Torez Smith) [1540721]
-- [usb] qmi_wwan: fix NULL deref on disconnect (Torez Smith) [1540721]
-- [usb] usb: rtl8150: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: r8152: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: kaweth: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: ipheth: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: cdc-phonet: constify usb_device_id (Torez Smith) [1540721]
-- [usb] usb: catc: constify usb_device_id and fix space before '[' error (Torez Smith) [1540721]
-- [usb] asix: Fix small memory leak in ax88772_unbind() (Torez Smith) [1540721]
-- [usb] asix: Ensure asix_rx_fixup_info members are all reset (Torez Smith) [1540721]
-- [usb] asix: Add rx->ax_skb = NULL after usbnet_skb_return() (Torez Smith) [1540721]
-- [usb] qmi_wwan: add D-Link DWM-222 device ID (Torez Smith) [1540721]
-- [usb] lan78xx: Fix to handle hard_header_len update (Torez Smith) [1540721]
-- [usb] lan78xx: USB fast connect/disconnect crash fix (Torez Smith) [1540721]
-- [usb] xhci: Reset Renesas uPD72020x USB controller for 32-bit DMA issue (Torez Smith) [1540721]
-- [usb] pci: Add pci_reset_function_locked() (Torez Smith) [1540721]
-- [usb] serial: option: add D-Link DWM-222 device ID (Torez Smith) [1540721]
-- [usb] whci-hcd: constify hc_driver structures (Torez Smith) [1540721]
-- [usb] hwa: constify hc_driver structures (Torez Smith) [1540721]
-- [usb] core: unlink urbs from the tail of the endpoint's urb_list (Torez Smith) [1540721]
-- [usb] usb-storage: fix deadlock involving host lock and scsi_done (Torez Smith) [1540721]
-- [usb] uas: Add US_FL_IGNORE_RESIDUE for Initio Corporation INIC-3069 (Torez Smith) [1540721]
-- [usb] hcd: Mark secondary HCD as dead if the primary one died (Torez Smith) [1540721]
-- [usb] core: hub: controller driver name may be NULL (Torez Smith) [1540721]
-- [usb] Convert to using pOF instead of full_name (Torez Smith) [1540721]
-- [usb] atm: remove unneeded MODULE_VERSION() usage (Torez Smith) [1540721]
-- [usb] cdc-wdm: remove unneeded DRIVER_VERSION define (Torez Smith) [1540721]
-- [usb] microtek: remove unneeded DRIVER_VERSION macro (Torez Smith) [1540721]
-- [usb] realtek_cr: remove unneeded MODULE_VERSION() usage (Torez Smith) [1540721]
-- [usb] usbip: remove unneeded MODULE_VERSION() usage (Torez Smith) [1540721]
-- [usb] misc: remove unneeded MODULE_VERSION() usage (Torez Smith) [1540721]
-- [usb] xhci: fix memleak in xhci_run() (Torez Smith) [1540721]
-- [usb] xhci: fix spinlock recursion for USB2 test mode (Torez Smith) [1540721]
-- [usb] xhci: fix 20000ms port resume timeout (Torez Smith) [1540721]
-- [usb] xhci: Issue stop EP command only when the EP state is running (Torez Smith) [1540721]
-- [usb] xhci: Fix NULL pointer dereference when cleaning up streams for removed host (Torez Smith) [1540721]
-- [usb] cdc_ncm: constify attribute_group structures (Torez Smith) [1540721]
-- [usb] usb: audio: specify exact endiannes of descriptors (Torez Smith) [1540721]
-- [usb] atm: ueagle-atm: fix spelling mistake: "submition" -> "submission" (Torez Smith) [1540721]
-- [usb] misc: ftdi-elan: compress return logic into one line (Torez Smith) [1540721]
-- [usb] misc: sisusbvga: compress return logic into one line (Torez Smith) [1540721]
-- [usb] storage: return on error to avoid a null pointer dereference (Torez Smith) [1540721]
-- [usb] cdc-acm: add device-id for quirky printer (Torez Smith) [1540721]
-- [usb] serial: cp210x: add support for Qivicon USB ZigBee dongle (Torez Smith) [1540721]
-- [usb] smsc95xx: use ethtool_op_get_ts_info() (Torez Smith) [1540721]
-- [usb] cdc_ncm: Set NTB format again after altsetting switch for Huawei devices (Torez Smith) [1540721]
-- [usb] serial: safe_serial: move __inline__ before return type (Torez Smith) [1540721]
-- [usb] cdc_mbim: apply "NDP to end" quirk to HP lt4132 (Torez Smith) [1540721]
-- [usb] cdc_ncm: Reduce memory use when kernel memory low (Torez Smith) [1540721]
-- [usb] usbdevfs: get rid of field-by-field copyin (Torez Smith) [1540721]
-- [usb] Add USB quirk for HVR-950q to avoid intermittent device resets (Torez Smith) [1540721]
-- [usb] usb hub_probe: rework ugly goto-into-compound-statement (Torez Smith) [1540721]
-- [usb] serial: cp210x: add ID for CEL EM3588 USB ZigBee stick (Torez Smith) [1540721]
-- [usb] usb: asix88179_178a: Add support for the Belkin B2B128 (Torez Smith) [1540721]
-- [usb] usbip: Fix uninitialized variable bug in vhci (Torez Smith) [1540721]
-- [usb] core: read USB ports from DT in the usbport LED trigger driver (Torez Smith) [1540721]
-- [usb] r8152: correct the definition (Torez Smith) [1540721]
-- [usb] serial: propagate late probe errors (Torez Smith) [1540721]
-- [usb] serial: refactor port endpoint setup (Torez Smith) [1540721]
-- [usb] manual clean code which call skb_put_(data:zero) (Torez Smith) [1540721]
-- [usb] replace more place to skb_put_(data:zero) (Torez Smith) [1540721]
-- [usb] introduce __skb_put_(zero, data, u8) (Torez Smith) [1540721]
-- [usb] xhci: Limit USB2 port wake support for AMD Promontory hosts (Torez Smith) [1540721]
-- [usb] mfd: intel_soc_pmic_bxtwc: Use chained IRQs for second level IRQ chips (Torez Smith) [1540721]
-- [usb] networking: add and use skb_put_u8() (Torez Smith) [1540721]
-- [usb] networking: make skb_push & __skb_push return void pointers (Torez Smith) [1540721]
-- [usb] networking: introduce and use skb_put_data() (Torez Smith) [1540721]
-- [usb] networking: convert many more places to skb_put_zero() (Torez Smith) [1540721]
-- [usb] r8152: move calling delay_autosuspend function (Torez Smith) [1540721]
-- [usb] r8152: split rtl8152_resume function (Torez Smith) [1540721]
-- [usb] xhci: cleanup finish_td() skip option (Torez Smith) [1540721]
-- [usb] xhci: cleanup virtual endoint structure, remove stopped_stream (Torez Smith) [1540721]
-- [usb] xhci: handle transfer events without TRB pointer (Torez Smith) [1540721]
-- [usb] xhci: support calling cleanup_halted_endpoint with soft retry (Torez Smith) [1540721]
-- [usb] xhci: Add support for endpoint soft reset (Torez Smith) [1540721]
-- [usb] xhci: refactor transfer event errors and completion codes (Torez Smith) [1540721]
-- [usb] xhci: remove endpoint ring cache (Torez Smith) [1540721]
-- [usb] Avoid unnecessary LPM enabling and disabling during suspend and resume (Torez Smith) [1540721]
-- [usb] r8152: add byte_enable for ocp_read_word function (Torez Smith) [1540721]
-- [usb] r8152: support RTL8153B (Torez Smith) [1540721]
-- [usb] r8152: support new chip 8050 (Torez Smith) [1540721]
-- [usb] usb / pci / pm: Allow the PCI core to do the resume cleanup (Torez Smith) [1540721]
-- [usb] serial: qcserial: new Sierra Wireless EM7305 device ID (Torez Smith) [1540721]
-- [usb] serial: option: add two Longcheer device ids (Torez Smith) [1540721]
-- [usb] qmi_wwan: new Telewell and Sierra device IDs (Torez Smith) [1540721]
-- [usb] r8152: give the device version (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: remove broken alt-speed handling (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: simplify TIOCSSERIAL flag logic (Torez Smith) [1540721]
-- [usb] of: fix root-hub device-tree node handling (Torez Smith) [1540721]
-- [usb] of: document reference taken by child-lookup helper (Torez Smith) [1540721]
-- [usb] core: fix device node leak (Torez Smith) [1540721]
-- [usb] misc: usbsevseg: Use sysfs_match_string() helper (Torez Smith) [1540721]
-- [usb] early: Remove trace_printk() callers in xhci-dbc (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Clean up the code by adding a new macro (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Add USB3 port status bits (Torez Smith) [1540721]
-- [usb] usbip: Add USB_SPEED_SUPER as valid arg (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Add USB3 SuperSpeed support (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Set the vhci structure up to work (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Rework vhci_hcd_init (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Move VHCI platform device into vhci struct (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Add vhci struct (Torez Smith) [1540721]
-- [usb] usbip: vhci-hcd: Rename function names to reflect their struct names (Torez Smith) [1540721]
-- [usb] Fix typo in the definition of Endpoint(out)Request (Torez Smith) [1540721]
-- [usb] usbip: set buffer pointers to NULL after free (Torez Smith) [1540721]
-- [usb] add usbfs ioctl to retrieve the connection speed (Torez Smith) [1540721]
-- [usb] serial: qcserial: expose methods for modem control (Torez Smith) [1540721]
-- [usb] usbip: convert to use DRIVER_ATTR_RW (Torez Smith) [1540721]
-- [usb] xhci: ASMedia ASM1042A chipset need shorts TX quirk (Torez Smith) [1540721]
-- [usb] xhci: Fix USB 3.1 supported protocol parsing (Torez Smith) [1540721]
-- [usb] r8152: replace napi_complete with napi_complete_done (Torez Smith) [1540721]
-- [usb] r8152: avoid rx queue more than 1000 packets (Torez Smith) [1540721]
-- [usb] r8152: check if disabling ALDPS is finished (Torez Smith) [1540721]
-- [usb] r8152: move the initialization to reset_resume function (Torez Smith) [1540721]
-- [usb] r8152: move the default coalesce setting for RTL8153 (Torez Smith) [1540721]
-- [usb] r8152: adjust U2P3 for RTL8153 (Torez Smith) [1540721]
-- [usb] r8152: adjust rtl8153_runtime_enable function (Torez Smith) [1540721]
-- [usb] r8152: move the setting of rx aggregation (Torez Smith) [1540721]
-- [usb] r8152: adjust the settings about MAC clock speed down for RTL8153 (Torez Smith) [1540721]
-- [usb] r8152: adjust lpm settings for RTL8153 (Torez Smith) [1540721]
-- [usb] r8152: add r8153_phy_status function (Torez Smith) [1540721]
-- [usb] Fix inconsistent teardown and release of private netdev state (Torez Smith) [1540721]
-- [usb] mii, smsc: Make mii_ethtool_get_link_ksettings and smc_netdev_get_ecmd return void (Torez Smith) [1540721]
-- [usb] Make use of ktime_* comparison functions (Torez Smith) [1540721]
-- [usb] xhci: Add helper to get hardware dequeue pointer for stopped rings (Torez Smith) [1540721]
-- [usb] xhci: Add stream id to xhci_dequeue_state structure (Torez Smith) [1540721]
-- [usb] xhci: Find out where an endpoint or stream stopped from its context (Torez Smith) [1540721]
-- [usb] optimize acpi companion search for usb port devices (Torez Smith) [1540721]
-- [usb] xhci: remove unused stopped_td pointer (Torez Smith) [1540721]
-- [usb] serial: upd78f0730: make constants static (Torez Smith) [1540721]
-- [usb] uhci: Add support for Aspeed BMC SoCs (Torez Smith) [1540721]
-- [usb] cdc-ether: divorce initialisation with a filter reset and a generic method (Torez Smith) [1540721]
-- [usb] smsc95xx: Support only IPv4 TCP/UDP csum offload (Torez Smith) [1540721]
-- [usb] uvcvideo: annotate a switch fall through (Torez Smith) [1540721]
-- [usb] media annotate fall-through (Torez Smith) [1540721]
-- [usb] net1080: Remove unused function nc_dump_ttl() (Torez Smith) [1540721]
-- [usb] r8152: Remove unused function usb_ocp_read() (Torez Smith) [1540721]
-- [usb] qmi_wwan: add another Lenovo EM74xx device ID (Torez Smith) [1540721]
-- [usb] ene_usb6250: turn off the Removable flag (Torez Smith) [1540721]
-- [usb] ene_usb6250: remove subroutine duplication (Torez Smith) [1540721]
-- [usb] ene_usb6250: implement REQUEST SENSE (Torez Smith) [1540721]
-- [usb] ene_usb6250: fix SCSI residue overwriting (Torez Smith) [1540721]
-- [usb] ene_usb6250: fix first command execution (Torez Smith) [1540721]
-- [usb] xhci: Fix command ring stop regression in 4.11 (Torez Smith) [1540721]
-- [usb] xhci: remove GFP_DMA flag from allocation (Torez Smith) [1540721]
-- [usb] xhci: fix lock-inversion problem (Torez Smith) [1540721]
-- [usb] host: xhci-ring: don't need to clear interrupt pending for MSI enabled hcd (Torez Smith) [1540721]
-- [usb] host: xhci-mem: allocate zeroed Scratchpad Buffer (Torez Smith) [1540721]
-- [usb] xhci: apply PME_STUCK_QUIRK and MISSING_CAS quirk for Denverton (Torez Smith) [1540721]
-- [usb] xhci: trace URB before giving it back instead of after (Torez Smith) [1540721]
-- [usb] serial: qcserial: add more Lenovo EM74xx device IDs (Torez Smith) [1540721]
-- [usb] iowarrior: use memdup_user (Torez Smith) [1540721]
-- [usb] host: remove unnecessary null check (Torez Smith) [1540721]
-- [usb] core: Check URB setup_packet and transfer_buffer sanity (Torez Smith) [1540721]
-- [usb] cdc-wdm: use memdup_user (Torez Smith) [1540721]
-- [usb] host: xhci: use max-port define (Torez Smith) [1540721]
-- [usb] hub: fix SS max number of ports (Torez Smith) [1540721]
-- [usb] hub: fix non-SS hub-descriptor handling (Torez Smith) [1540721]
-- [usb] hub: fix SS hub-descriptor handling (Torez Smith) [1540721]
-- [usb] usbip: fix nonconforming hub descriptor (Torez Smith) [1540721]
-- [usb] core: fix potential memory leak in error path during hcd creation (Torez Smith) [1540721]
-- [usb] iowarrior: fix info ioctl on big-endian hosts (Torez Smith) [1540721]
-- [usb] chaoskey: fix Alea quirk on big-endian hosts (Torez Smith) [1540721]
-- [usb] sisusb_con: fix coccinelle warning (Torez Smith) [1540721]
-- [usb] misc: legousbtower: Fix memory leak (Torez Smith) [1540721]
-- [usb] core: replace p with pK (Torez Smith) [1540721]
-- [usb] ene_usb6250: fix DMA to the stack (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: add Olimex ARM-USB-TINY(H) PIDs (Torez Smith) [1540721]
-- [usb] serial: io_ti: fix div-by-zero in set_termios (Torez Smith) [1540721]
-- [usb] serial: mct_u232: fix big-endian baud-rate handling (Torez Smith) [1540721]
-- [usb] serial: ir-usb: fix big-endian baud-rate debug printk (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: fix setting latency for unprivileged users (Torez Smith) [1540721]
-- [usb] serial: option: add Telit ME910 support (Torez Smith) [1540721]
-- [usb] ch9200: add missing USB-descriptor endianness conversions (Torez Smith) [1540721]
-- [usb] cdc_ncm: Fix TX zero padding (Torez Smith) [1540721]
-- [usb] usb: qmi_wwan: add Telit ME910 support (Torez Smith) [1540721]
-- [usb] host: xhci: remove #ifdef around PM functions (Torez Smith) [1540721]
-- [usb] misc: legousbtower: Fix buffers on stack (Torez Smith) [1540721]
-- [usb] revert "cdc-wdm: fix "out-of-sync" due to missing notifications" (Torez Smith) [1494216 1540721]
-- [usb] storage: e-mail update in usb/storage/unusual_devs.h (Torez Smith) [1540721]
-- [usb] host: xhci: print correct command ring address (Torez Smith) [1540721]
-- [usb] host: xhci: delete sp_dma_buffers for scratchpad (Torez Smith) [1540721]
-- [usb] host: xhci: using correct specification chapter reference for DCBAAP (Torez Smith) [1540721]
-- [usb] xhci: switch to pci_alloc_irq_vectors (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: add device ID for Microsemi/Arrow SF2PLUS Dev Kit (Torez Smith) [1540721]
-- [usb] serial: constify static arrays (Torez Smith) [1540721]
-- [usb] fix some references for /proc/bus/usb (Torez Smith) [1540721]
-- [usb] xhci: use correct flags for spin_lock_irqrestore() when setting port power (Torez Smith) [1540721]
-- [usb] smsc95xx: Add comments to the registers definition (Torez Smith) [1540721]
-- [usb] get rid of some ReST doc build errors (Torez Smith) [1540721]
-- [usb] otg-fsm: Prevent build warning "VDBG" redefined (Torez Smith) [1540721]
-- [usb] uvcvideo: Don't record timespec_sub (Torez Smith) [1540721]
-- [usb] uvcvideo: Fix empty packet statistic (Torez Smith) [1540721]
-- [usb] serial: quatech2: drop redundant tty_buffer_request_room (Torez Smith) [1540721]
-- [usb] serial: iuu_phoenix: drop excessive sanity checks (Torez Smith) [1540721]
-- [usb] xhci: bInterval quirk for TI TUSB73x0 (Torez Smith) [1540721]
-- [usb] xhci: refine xhci_decode_trb() (Torez Smith) [1540721]
-- [usb] xhci: fix link trb decoding (Torez Smith) [1540721]
-- [usb] xhci: remove xhci_dbg_ctx() (Torez Smith) [1540721]
-- [usb] xhci: remove xhci_debug_trb() (Torez Smith) [1540721]
-- [usb] xhci: remove ring debugging code (Torez Smith) [1540721]
-- [usb] xhci: remove enq_updates and deq_updates from ring (Torez Smith) [1540721]
-- [usb] xhci: remove error messages for failed memory allocation (Torez Smith) [1540721]
-- [usb] xhci: make several functions static (Torez Smith) [1540721]
-- [usb] xhci: remove xhci_dbg_ep_rings() (Torez Smith) [1540721]
-- [usb] xhci: add xhci_log_ring trace events (Torez Smith) [1540721]
-- [usb] xhci: Rework how we handle unresponsive or hoptlug removed hosts (Torez Smith) [1540721]
-- [usb] xhci: Do not halt the host until both HCD have disconnected their devices (Torez Smith) [1540721]
-- [usb] xhci: add slot and endpoint numbers to debug messages in handle_tx_event (Torez Smith) [1540721]
-- [usb] host: xhci: fix up Control Transfer TRB decoder (Torez Smith) [1540721]
-- [usb] host: xhci: add Slot and EP Context tracers (Torez Smith) [1540721]
-- [usb] host: xhci: extract xhci_slot_state_string() (Torez Smith) [1540721]
-- [usb] host: xhci: print device slot from URB tracers (Torez Smith) [1540721]
-- [usb] xhci: Add port test modes support for usb2 (Torez Smith) [1540721]
-- [usb] xhci: Expose xhci_start() function (Torez Smith) [1540721]
-- [usb] xhci: Add helper function xhci_disable_slot() (Torez Smith) [1540721]
-- [usb] xhci: Add helper function xhci_set_power_on() (Torez Smith) [1540721]
-- [usb] xhci: clear EINT bit in status correctly (Torez Smith) [1540721]
-- [usb] usbip: Remove unnecessary get_vdev() (Torez Smith) [1540721]
-- [usb] misc: refactor code (Torez Smith) [1540721]
-- [usb] misc: add missing continue in switch (Torez Smith) [1540721]
-- [usb] hcd: use correct device pointer for dma ops (Torez Smith) [1540721]
-- [usb] usbnet: pegasus: Use net_device_stats from struct net_device (Torez Smith) [1540721]
-- [usb] usbnet: kaweth: Use net_device_stats from struct net_device (Torez Smith) [1540721]
-- [usb] usbnet: Remove unused driver_name variable (Torez Smith) [1540721]
-- [usb] usbnet: support 64bit stats (Torez Smith) [1540721]
-- [usb] cdc-acm: remove unused element of struct acm (Torez Smith) [1540721]
-- [usb] cdc-acm: log message for serial state notification (Torez Smith) [1540721]
-- [usb] cdc-acm: reassemble fragmented notifications (Torez Smith) [1540721]
-- [usb] cdc-acm: fix possible invalid access when processing notification (Torez Smith) [1540721]
-- [usb] serial: drop obsolete open-race workaround (Torez Smith) [1540721]
-- [usb] serial: drop termios-flag debugging (Torez Smith) [1540721]
-- [usb] Proper handling of Race Condition when two USB class drivers try to call init_usb_class simultaneously (Torez Smith) [1540721]
-- [usb] usbtmc: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] lvstest: tighten endpoint sanity check (Torez Smith) [1540721]
-- [usb] serial: visor: clean up treo endpoint hack (Torez Smith) [1540721]
-- [usb] serial: visor: clean up clie_5 endpoint hack (Torez Smith) [1540721]
-- [usb] serial: visor: drop redundant calc_num_ports callback (Torez Smith) [1540721]
-- [usb] serial: ti_usb_3410_5052: always require a bulk-out endpoint (Torez Smith) [1540721]
-- [usb] serial: omninet: use generic write implementation (Torez Smith) [1540721]
-- [usb] serial: omninet: clean up port setup (Torez Smith) [1540721]
-- [usb] serial: mos7840: clean up endpoint sanity check (Torez Smith) [1540721]
-- [usb] serial: mos7720: always require an interrupt endpoint (Torez Smith) [1540721]
-- [usb] serial: mos7720: clean up mcs7715 port setup (Torez Smith) [1540721]
-- [usb] serial: io_ti: drop redundant read-urb check (Torez Smith) [1540721]
-- [usb] serial: io_ti: verify interrupt endpoint at probe (Torez Smith) [1540721]
-- [usb] serial: io_ti: always require a bulk-out endpoint (Torez Smith) [1540721]
-- [usb] serial: io_ti: use calc_num_endpoints to verify endpoints (Torez Smith) [1540721]
-- [usb] serial: ipaq: always register a single port (Torez Smith) [1540721]
-- [usb] serial: ipaq: use calc_num_endpoints to verify endpoints (Torez Smith) [1540721]
-- [usb] serial: aircable: use calc_num_endpoints to verify endpoints (Torez Smith) [1540721]
-- [usb] serial: pl2303: clean up legacy endpoint hack (Torez Smith) [1540721]
-- [usb] serial: move pl2303 hack out of usb-serial core (Torez Smith) [1540721]
-- [usb] serial: relax generic driver bulk-endpoint requirement (Torez Smith) [1540721]
-- [usb] serial: add calc_num_ports callback to generic driver (Torez Smith) [1540721]
-- [usb] serial: add probe callback to generic driver (Torez Smith) [1540721]
-- [usb] serial: allow subdrivers to modify port-endpoint mapping (Torez Smith) [1540721]
-- [usb] usb: qmi_wwan: add qmap mux protocol support (Torez Smith) [1540721]
-- [usb] core: fix up kerneldoc comment (Torez Smith) [1540721]
-- [usb] usblp: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] storage: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] cdc-acm: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] usb-skeleton: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] yurex: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] uss720: add debug endpoint-type check (Torez Smith) [1540721]
-- [usb] usblcd: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] legousbtower: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] ldusb: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] iowarrior: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] idmouse: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] ftdi-elan: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] chaoskey: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] appledisplay: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] adutux: refactor endpoint retrieval (Torez Smith) [1540721]
-- [usb] adutux: fix up error paths (Torez Smith) [1540721]
-- [usb] adutux: drop redundant sanity check (Torez Smith) [1540721]
-- [usb] core: add helpers to retrieve endpoints in reverse order (Torez Smith) [1540721]
-- [usb] core: add helpers to retrieve endpoints (Torez Smith) [1540721]
-- [usb] ehci: use bus->sysdev for DMA configuration (Torez Smith) [1540721]
-- [usb] xhci: use bus->sysdev for DMA configuration (Torez Smith) [1540721]
-- [usb] separate out sysdev pointer from usb_bus (Torez Smith) [1540721]
-- [usb] hub: Do not attempt to autosuspend disconnected devices (Torez Smith) [1540721]
-- [usb] hub: Fix error loop seen after hub communication errors (Torez Smith) [1540721]
-- [usb] lan78xx: update for phy_(read|write)_mmd_indirect() removal (Torez Smith) [1540721]
-- [usb] usb: pegasus: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] r8152: check hw version first (Torez Smith) [1540721]
-- [usb] usb: usb: remove old api ethtool_(get|set)_settings (Torez Smith) [1540721]
-- [usb] usb: asix: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: sr9700: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: smsc75xx: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: sierra_net: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: mcs7830: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: dm9601: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: cdc_ncm: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: sr9800: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: smsc95xx: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: usbnet: add new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] serial: Add DBC debug device support to usb_debug (Torez Smith) [1540721]
-- [usb] early: Add driver for xhci debug capability (Torez Smith) [1540721]
-- [usb] host: Allow to build ehci orion with mvebu SoCs (Torez Smith) [1540721]
-- [usb] misc: sisusb_con: fix coccinelle warning (Torez Smith) [1540721]
-- [usb] storage: karma: remove useless variable (Torez Smith) [1540721]
-- [usb] misc: ldusb: changed '*' location to fit coding Style (Torez Smith) [1540721]
-- [usb] misc: ldusb: Added Space after ', ' to fit the coding style (Torez Smith) [1540721]
-- [usb] misc: ldusb: fixed decimal permission coding issue (Torez Smith) [1540721]
-- [usb] misc: remove unnecessary code (Torez Smith) [1540721]
-- [usb] of: add functions to bind a companion controller (Torez Smith) [1540721]
-- [usb] add CONFIG_USB_PCI for system have both PCI HW and non-PCI based USB HW (Torez Smith) [1540721]
-- [usb] r8152: simply the arguments (Torez Smith) [1540721]
-- [usb] serial: whiteheat: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: symbolserial: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: spcp8x5: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: pl2303: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: oti6858: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: opticon: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: omninet: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: mos7720: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: kobil_sct: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: keyspan_pda: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: iuu_phoenix: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: io_edgeport: simplify and tighten endpoint check (Torez Smith) [1540721]
-- [usb] serial: digi_acceleport: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: cyberjack: simplify endpoint check (Torez Smith) [1540721]
-- [usb] serial: ark3116: simplify endpoint sanity check (Torez Smith) [1540721]
-- [usb] serial: add endpoint sanity check to core (Torez Smith) [1540721]
-- [usb] serial: replace runtime overflow check (Torez Smith) [1540721]
-- [usb] serial: allow up to 16 ports per device (Torez Smith) [1540721]
-- [usb] serial: refactor and clean up endpoint handling (Torez Smith) [1540721]
-- [usb] serial: clean up endpoint and port-counter types (Torez Smith) [1540721]
-- [usb] serial: clean up probe error paths (Torez Smith) [1540721]
-- [usb] host: Remove remaining pci_pool in comments (Torez Smith) [1540721]
-- [usb] misc: lvs: fix race condition in disconnect handling (Torez Smith) [1540721]
-- [usb] misc: remove unnecessary code (Torez Smith) [1540721]
-- [usb] atm: remove unnecessary code (Torez Smith) [1540721]
-- [usb] usb: rtl8150: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: r8152: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: catc: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] usb: asix88179_178a: use new api ethtool_(get|set)_link_ksettings (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: allow other bases for "event_char" (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: only allow valid event_char values (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: only allow valid latency timer values (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: detect BM chip with iSerialNumber bug (Torez Smith) [1540721]
-- [usb] serial: ftdi_sio: don't access latency timer on old chips (Torez Smith) [1540721]
-- [usb] hcd: move controller wakeup setting initialization to individual driver (Torez Smith) [1540721]
-- [usb] usb: early: remove unused code (Torez Smith) [1540721]
-- [usb] treewide: remove redundant #include <linux/kconfig.h> (Torez Smith) [1540721]
-- [usb] early/ehci-dbgp: make it explicitly non-modular (Torez Smith) [1540721]
-- [usb] ehci-dbgp: drop dead code (Torez Smith) [1540721]
-- [usb] driver core: add helper to reuse a device-tree node (Torez Smith) [1540721]
-- [usb] device: introduce per device dma_pfn_offset (Torez Smith) [1540721]
-- [usb] core: setup dma_pfn_offset for USB devices and, interfaces (Torez Smith) [1540721]
-
-* Wed May 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-896.el7]
-- [documentation] Better document the hardlockup_panic sysctl (Scott Wood) [1500127]
-- [documentation] Add document of L2_CDP command line parameter (Xiaolong Wang) [1526254]
-- [documentation] Add document of rdt command line options (Xiaolong Wang) [1526254]
-- [documentation] x86/intel_rdt: Add L2CDP support in documentation (Xiaolong Wang) [1526254]
-- [documentation] x86/intel_rdt: Update documentation (Xiaolong Wang) [1526254]
-- [kernel] signals: Use hrtimer for sigtimedwait() (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Minimize nohz off overhead (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Reduce timer migration overhead if disabled (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Remove code redundancy while calling get_nohz_timer_target() (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Use timer->base for flag checks (Daniel Bristot de Oliveira) [1568294]
-- [kernel] tracing: timer: Add deferrable flag to timer_start (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Remove FIFO "guarantee" (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timers: Sanitize catchup_timer_jiffies() usage (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Kick dynticks targets on mod_timer*() calls (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Spare IPI when deferrable timer is queued on idle remote targets (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Put usleep_range into the __sched section (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Remove pointless return value of do_usleep_range() (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Further simplify the SMP and HOTPLUG logic (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Don't initialize 'tvec_base' on hotplug (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timers: Make internal_add_timer() update ->next_timer if ->active_timers == 0 (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Allocate per-cpu tvec_base's statically (Daniel Bristot de Oliveira) [1568294]
-- [kernel] timer: Use variable head instead of &work_list in __run_timers() (Daniel Bristot de Oliveira) [1568294]
-- [linux] fsnotify: Fix fsnotify_mark_connector race (Miklos Szeredi) [1569921]
-- [nvme] nvme-pci: Separate IO and admin queue IRQ vectors (Ming Lei) [1568817]
-- [block] blk-mq: Allow PCI vector offset for mapping queues (Ming Lei) [1568817]
-- [block] blk-mq: order getting budget and driver tag (Ming Lei) [1568817]
-- [block] blk-mq: Avoid that submitting a bio concurrently with device removal triggers a crash (Ming Lei) [1568817]
-- [block] Fix a race between request queue removal and the block cgroup controller (Ming Lei) [1568817]
-- [block] Fix a race between the cgroup code and request queue initialization (Ming Lei) [1568817]
-- [block] Add 'lock' as third argument to blk_alloc_queue_node() (Ming Lei) [1568817]
-- [block] simplify blk_init_allocated_queue (Ming Lei) [1568817]
-- [mmc] block: Delete gendisk before cleaning up the request queue (Ming Lei) [1568817]
-- [block] zram: Delete gendisk before cleaning up the request queue (Ming Lei) [1568817]
-- [lib] sbitmap: use test_and_set_bit_lock()/clear_bit_unlock() (Ming Lei) [1568817]
-- [block] clear ctx pending bit under ctx lock (Ming Lei) [1568817]
-- [block] blk-mq: introduce BLK_STS_DEV_RESOURCE (Ming Lei) [1568817]
-- [block] blk-mq: Avoid that blk_mq_delay_run_hw_queue() introduces unintended delays (Ming Lei) [1568817]
-- [block] add kblock_mod_delayed_work_on() (Ming Lei) [1568817]
-- [block] blk-mq: remove blk_mq_delay_queue() (Ming Lei) [1568817]
-- [block] blk-mq: Rename blk_mq_request_direct_issue() into blk_mq_request_issue_directly() (Ming Lei) [1568817]
-- [block] blk-mq: don't dispatch request in blk_mq_request_direct_issue if queue is busy (Ming Lei) [1568817]
-- [block] blk-mq-sched: remove unused 'can_block' arg from blk_mq_sched_insert_request (Ming Lei) [1568817]
-- [md] blk-mq: improve DM's blk-mq IO merging via blk_insert_cloned_request feedback (Ming Lei) [1568817]
-- [block] blk-mq: factor out a few helpers from __blk_mq_try_issue_directly (Ming Lei) [1568817]
-- [block] blk-mq: Reduce the number of if-statements in blk_mq_mark_tag_wait() (Ming Lei) [1568817]
-- [block] blk-mq: Add locking annotations to hctx_lock() and hctx_unlock() (Ming Lei) [1568817]
-- [block] blk-mq: silence false positive warnings in hctx_unlock() (Ming Lei) [1568817]
-- [block] blk-mq: move hctx lock/unlock into a helper (Ming Lei) [1568817]
-- [acpi] osi: Add OEM _OSI strings to disable NVidia RTD3 (Jaroslav Kysela) [1581391]
-- [platform] x86: intel_pmc_core: Special case for Coffeelake (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add CannonLake PCH support (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Read base address from LPIT (Scott Wood) [1445478]
-- [acpi] acpi / lpit: Export lpit_read_residency_count_address() (Scott Wood) [1445478]
-- [acpi] lpit: Add Low Power Idle Table (LPIT) support (Scott Wood) [1445478]
-- [acpi] acpica: Add support for LPIT table (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Remove unused header file (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Convert to ICPU macro (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Substitute PCI with CPUID enumeration (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Refactor debugfs entries (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Fix file permission warnings (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Change driver to a module (Scott Wood) [1445478]
-- [platform] x86: Drop duplicate dependencies on X86 (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Fix kernel doc for pmc_dev (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Remove unused variable (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Remove unused EXPORTED API (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Make the driver PCH family agnostic (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: fix out-of-bounds accesses on stack (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add KBL CPUID support (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add LTR IGNORE debug feature (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add MPHY PLL clock gating status (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: ModPhy core lanes pg status (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Add PCH IP Power Gating Status (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: Fix PWRMBASE mask and mmio reg len (Scott Wood) [1445478]
-- [platform] x86: intel_pmc_core: avoid boot time warning for !CONFIG_DEBUGFS_FS (Scott Wood) [1445478]
-- [platform] intel_pmc_core: Convert to DEFINE_SIMPLE_ATTRIBUTE (Scott Wood) [1445478]
-- [platform] x86/pmc_core: Use Intel family name macros for pmc_core driver (Scott Wood) [1445478]
-- [platform] x86: Add PMC Driver for Intel Core SoC (Scott Wood) [1445478]
-- [kernel] userfaultfd: register uapi generic syscall (Rafael Aquini) [1560024]
-- [x86] membarrier: fix up sys_membarrier registration number (Rafael Aquini) [1560024]
-- [x86] pci: vmd: Assign vector zero to all bridges (Myron Stowe) [1515090]
-- [x86] pci: vmd: Move SRCU cleanup after bus, child device removal (Myron Stowe) [1515090]
-- [x86] pci: vmd: correct comment: VMD domains start at 0x10000, not 0x1000 (Myron Stowe) [1515090]
-- [x86] pci: host: Mark PCIe/PCI (MSI) cascade ISR as IRQF_NO_THREAD (Myron Stowe) [1515090]
-- [x86] pci: vmd: Fix suspend handlers defined-but-not-used warning (Myron Stowe) [1515090]
-- [x86] pci: vmd: Use SRCU as a local RCU to prevent delaying global RCU (Myron Stowe) [1515090]
-- [x86] pci: vmd: Remove unnecessary pci_set_drvdata() (Myron Stowe) [1515090]
-- [x86] pci: vmd: Eliminate index member from IRQ list (Myron Stowe) [1515090]
-- [x86] pci: vmd: Eliminate vmd_vector member from list type (Myron Stowe) [1515090]
-- [x86] pci: vmd: Convert to use pci_alloc_irq_vectors() API (Myron Stowe) [1515090]
-- [x86] pci: vmd: Allocate IRQ lists with correct MSI-X count (Myron Stowe) [1515090]
-- [powerpc] io: implement dummy relaxed accessor macros for writes (Ivan Vecera) [1582192]
-
-* Tue May 29 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-895.el7]
-- [netdrv] ibmvnic: Fix statistics buffers memory leak (Steve Best) [1580589]
-- [netdrv] ibmvnic: Fix non-fatal firmware error reset (Steve Best) [1580589]
-- [netdrv] ibmvnic: Free coherent DMA memory if FW map failed (Steve Best) [1580589]
-- [netdrv] fm10k: Use smp_rmb rather than read_barrier_depends (Neil Horman) [1518116]
-- [netdrv] intel: Convert timers to use timer_setup() (Neil Horman) [1518116]
-- [netdrv] fm10k: prefer s and __func__ for diagnostic prints (Neil Horman) [1518116]
-- [netdrv] fm10k: Fix misuse of net_ratelimit() (Neil Horman) [1518116]
-- [netdrv] fm10k: bump version number (Neil Horman) [1518116]
-- [netdrv] fm10k: use the MAC/VLAN queue for VF<->PF MAC/VLAN requests (Neil Horman) [1518116]
-- [netdrv] fm10k: introduce a message queue for MAC/VLAN messages (Neil Horman) [1518116]
-- [netdrv] fm10k: use generic PM hooks instead of legacy PCIe power hooks (Neil Horman) [1518116]
-- [netdrv] fm10k: use spinlock to implement mailbox lock (Neil Horman) [1518116]
-- [netdrv] fm10k: prepare_for_reset() when we lose PCIe Link (Neil Horman) [1518116]
-- [netdrv] fm10k: prevent race condition of __FM10K_SERVICE_SCHED (Neil Horman) [1518116]
-- [netdrv] fm10k: move fm10k_prepare_for_reset and fm10k_handle_reset (Neil Horman) [1518116]
-- [netdrv] fm10k: avoid divide by zero in rare cases when device is resetting (Neil Horman) [1518116]
-- [netdrv] fm10k: don't loop while resetting VFs due to VFLR event (Neil Horman) [1518116]
-- [netdrv] fm10k: simplify reading PFVFLRE register (Neil Horman) [1518116]
-- [netdrv] fm10k: avoid needless delay when loading driver (Neil Horman) [1518116]
-- [netdrv] fm10k: add missing fall through comment (Neil Horman) [1518116]
-- [netdrv] fm10k: avoid possible truncation of q_vector->name (Neil Horman) [1518116]
-- [netdrv] fm10k: fix typos on fall through comments (Neil Horman) [1518116]
-- [netdrv] fm10k: stop spurious link down messages when Tx FIFO is full (Neil Horman) [1518116]
-- [netdrv] fm10k: Use seq_putc() in fm10k_dbg_desc_break() (Neil Horman) [1518116]
-- [netdrv] fm10k: reschedule service event if we stall the PF<->SM mailbox (Neil Horman) [1518116]
-- [netdrv] fm10k: ensure we process SM mbx when processing VF mbx (Neil Horman) [1518116]
-- [netdrv] fm10k: use netdev_rss_key_fill() helper (Neil Horman) [1518116]
-- [netdrv] nfp: bpf: fix check of program max insn count (John Linville) [1557410]
-- [netdrv] nfp: populate MODULE_VERSION (John Linville) [1557410]
-- [netdrv] nfp: limit the number of TSO segments (John Linville) [1557410]
-- [netdrv] nfp: forbid disabling hw-tc-offload on representors while offload active (John Linville) [1557410]
-- [netdrv] nfp: don't advertise hw-tc-offload on non-port netdevs (John Linville) [1557410]
-- [netdrv] nfp: bpf: require ETH table (John Linville) [1557410]
-- [netdrv] nfp: bpf: fix immed relocation for larger offsets (John Linville) [1557410]
-- [netdrv] nfp: fix kdoc warnings on nested structures (John Linville) [1557410]
-- [netdrv] nfp: fix TLV offset calculation (John Linville) [1557410]
-- [netdrv] nfp: fix error return code in nfp_pci_probe() (John Linville) [1557410]
-- [netdrv] nfp: fix fw dump handling of absolute rtsym size (John Linville) [1557410]
-- [netdrv] nfp: bpf: use extack support to improve debugging (John Linville) [1557410]
-- [netdrv] nfp: bpf: plumb extack into functions related to XDP offload (John Linville) [1557410]
-- [netdrv] nfp: bpf: disable all ctrl vNIC capabilities (John Linville) [1557410]
-- [netdrv] nfp: allow apps to disable ctrl vNIC capabilities (John Linville) [1557410]
-- [netdrv] nfp: split reading capabilities out of nfp_net_init() (John Linville) [1557410]
-- [netdrv] nfp: read mailbox address from TLV caps (John Linville) [1557410]
-- [netdrv] nfp: read ME frequency from vNIC ctrl memory (John Linville) [1557410]
-- [netdrv] nfp: add TLV capabilities to the BAR (John Linville) [1557410]
-- [netdrv] nfp: improve app not found message (John Linville) [1557410]
-- [netdrv] nfp: protect each repr pointer individually with RCU (John Linville) [1557410]
-- [netdrv] nfp: add nfp_reprs_get_locked() helper (John Linville) [1557410]
-- [netdrv] nfp: register devlink after app is created (John Linville) [1557410]
-- [netdrv] nfp: release global resources only on the remove path (John Linville) [1557410]
-- [netdrv] nfp: core: make scalar CPP helpers fail on short accesses (John Linville) [1557410]
-- [netdrv] nfp: bpf: add short busy wait for FW replies (John Linville) [1557410]
-- [netdrv] bpf: offload: allow array map offload (John Linville) [1557410]
-- [netdrv] nfp: bpf: set new jit info fields (John Linville) [1557410]
-- [netdrv] nfp: bpf: reject program on instructions unknown to the JIT compiler (John Linville) [1557410]
-- [netdrv] nfp: bpf: print map lookup problems into verifier log (John Linville) [1557410]
-- [netdrv] nfp: bpf: implement bpf map offload (John Linville) [1557410]
-- [netdrv] nfp: bpf: add support for reading map memory (John Linville) [1557410]
-- [netdrv] nfp: bpf: add verification and codegen for map lookups (John Linville) [1557410]
-- [netdrv] nfp: bpf: add helpers for updating immediate instructions (John Linville) [1557410]
-- [netdrv] nfp: bpf: parse function call and map capabilities (John Linville) [1557410]
-- [netdrv] nfp: bpf: implement helpers for FW map ops (John Linville) [1557410]
-- [netdrv] nfp: bpf: add basic control channel communication (John Linville) [1557410]
-- [netdrv] nfp: bpf: add map data structure (John Linville) [1557410]
-- [netdrv] bpf: rename bpf_dev_offload -> bpf_prog_offload (John Linville) [1557410]
-- [netdrv] nfp: bpf: reuse verifier log for debug messages (John Linville) [1557410]
-- [netdrv] nfp: bpf: add signed jump insns (John Linville) [1557410]
-- [netdrv] nfp: hand over to BPF offload app at coarser granularity (John Linville) [1557410]
-- [netdrv] nfp: bpf: use a large constant in unresolved branches (John Linville) [1557410]
-- [netdrv] nfp: bpf: don't depend on high order allocations for program image (John Linville) [1557410]
-- [netdrv] nfp: bpf: relocate jump targets just before the load (John Linville) [1557410]
-- [netdrv] nfp: bpf: add helpers for modifying branch addresses (John Linville) [1557410]
-- [netdrv] nfp: bpf: move jump resolution to jit.c (John Linville) [1557410]
-- [netdrv] nfp: bpf: allow disabling TC offloads when XDP active (John Linville) [1557410]
-- [netdrv] nfp: bpf: don't allow changing MTU above BPF offload limit when active (John Linville) [1557410]
-- [netdrv] nfp: bpf: round up the size of the stack (John Linville) [1557410]
-- [netdrv] nfp: fix incumbent kdoc warnings (John Linville) [1557410]
-- [netdrv] nfp: add basic multicast filtering (John Linville) [1557410]
-- [netdrv] nfp: flower: implement the PORT_REIFY message (John Linville) [1557410]
-- [netdrv] nfp: add repr_preclean callback (John Linville) [1557410]
-- [netdrv] nfp: flower: obtain repr link state only from firmware (John Linville) [1557410]
-- [netdrv] bpf: offload: allow netdev to disappear while verifier is running (John Linville) [1557410]
-- [netdrv] nfp: bpf: allocate vNIC priv for keeping track of the offloaded program (John Linville) [1557410]
-- [netdrv] nfp: flower: compile Geneve encap actions (John Linville) [1557410]
-- [netdrv] nfp: flower: compile Geneve match fields (John Linville) [1557410]
-- [netdrv] nfp: flower: read extra feature support from fw (John Linville) [1557410]
-- [netdrv] nfp: flower: remove unused tun_mask variable (John Linville) [1557410]
-- [netdrv] nfp: set flags in the correct member of netdev_bpf (John Linville) [1557410]
-- [netdrv] nfp: bpf: correct printk formats for size_t (John Linville) [1557410]
-- [netdrv] nfp: bpf: optimize the adjust_head calls in trivial cases (John Linville) [1557410]
-- [netdrv] nfp: bpf: add basic support for adjust head call (John Linville) [1557410]
-- [netdrv] nfp: bpf: prepare for call support (John Linville) [1557410]
-- [netdrv] nfp: bpf: prepare for parsing BPF FW capabilities (John Linville) [1557410]
-- [netdrv] nfp: add nfp_cpp_area_size() accessor (John Linville) [1557410]
-- [netdrv] nfp: debug dump - decrease endian conversions (John Linville) [1557410]
-- [netdrv] nfp: flower: remove unused defines (John Linville) [1557410]
-- [netdrv] nfp: flower: remove dead code paths (John Linville) [1557410]
-- [netdrv] nfp: flower: do not assume mac/mpls matches (John Linville) [1557410]
-- [netdrv] xdp: make the stack take care of the tear down (John Linville) [1557410]
-- [netdrv] xdp: report flags program was installed with on query (John Linville) [1557410]
-- [netdrv] nfp: bpf: detect load/store sequences lowered from memory copy (John Linville) [1557410]
-- [netdrv] nfp: bpf: implement memory bulk copy for length bigger than 32-bytes (John Linville) [1557410]
-- [netdrv] nfp: bpf: implement memory bulk copy for length within 32-bytes (John Linville) [1557410]
-- [netdrv] nfp: bpf: factor out is_mbpf_load & is_mbpf_store (John Linville) [1557410]
-- [netdrv] nfp: bpf: encode indirect commands (John Linville) [1557410]
-- [netdrv] nfp: bpf: correct the encoding for No-Dest immed (John Linville) [1557410]
-- [netdrv] nfp: bpf: relax source operands check (John Linville) [1557410]
-- [netdrv] nfp: bpf: don't do ld/shifts combination if shifts are jump destination (John Linville) [1557410]
-- [netdrv] nfp: bpf: don't do ld/mask combination if mask is jump destination (John Linville) [1557410]
-- [netdrv] nfp: bpf: flag jump destination to guide insn combine optimizations (John Linville) [1557410]
-- [netdrv] nfp: bpf: record jump destination to simplify jump fixup (John Linville) [1557410]
-- [netdrv] nfp: bpf: support backward jump (John Linville) [1557410]
-- [netdrv] nfp: fix old kdoc issues (John Linville) [1557410]
-- [netdrv] nfp: remove unneeded RHEL-specific block comments (John Linville) [1557410]
-- [netdrv] nfp: use the correct index for link speed table (John Linville) [1545903]
-- [netdrv] nfp: always unmask aux interrupts at init (John Linville) [1545903]
-- [netdrv] nfp: bpf: keep track of the offloaded program (John Linville) [1545903]
-- [netdrv] cls_bpf: fix offload assumptions after callback conversion (John Linville) [1545903]
-- [netdrv] nfp: flower: add missing kdoc (John Linville) [1545903]
-- [netdrv] bpf: offload: move offload device validation out to the drivers (John Linville) [1545903]
-- [netdrv] nfp: remove false positive offloads in flower vxlan (John Linville) [1545903]
-- [netdrv] nfp: register flower reprs for egress dev offload (John Linville) [1545903]
-- [netdrv] mm: remove __GFP_COLD (John Linville) [1545903]
-- [netdrv] nfp flower action: Modified to use VLAN helper functions (John Linville) [1545903]
-- [netdrv] nfp: bpf: move to new BPF program offload infrastructure (John Linville) [1545903]
-- [netdrv] nfp: bpf: move translation prepare to offload.c (John Linville) [1545903]
-- [netdrv] nfp: bpf: move program prepare and free into offload.c (John Linville) [1545903]
-- [netdrv] nfp: bpf: require seamless reload for program replace (John Linville) [1545903]
-- [netdrv] nfp: bpf: refactor offload logic (John Linville) [1545903]
-- [netdrv] nfp: bpf: remove unnecessary include of nfp_net.h (John Linville) [1545903]
-- [netdrv] nfp: bpf: remove the register renumbering leftovers (John Linville) [1545903]
-- [netdrv] nfp: bpf: drop support for cls_bpf with legacy actions (John Linville) [1545903]
-- [netdrv] nfp: improve defines for constants in ethtool (John Linville) [1545903]
-- [netdrv] nfp: use a counter instead of log message for allocation failures (John Linville) [1545903]
-- [netdrv] nfp: switch to dev_alloc_page() (John Linville) [1545903]
-- [netdrv] nfp: bpf: fall back to core NIC app if BPF not selected (John Linville) [1545903]
-- [netdrv] nfp: reorganize the app table (John Linville) [1545903]
-- [netdrv] nfp: bpf: reject TC offload if XDP loaded (John Linville) [1545903]
-- [netdrv] nfp: flower: app should use struct nfp_repr (John Linville) [1545903]
-- [netdrv] nfp: bpf: support (BPF_ALU | BPF_ALU64) | BPF_NEG (John Linville) [1545903]
-- [netdrv] nfp: bpf: rename ALU_OP_NEG to ALU_OP_NOT (John Linville) [1545903]
-- [netdrv] sched: move the can_offload check from binding phase to rule insertion phase (John Linville) [1545903]
-- [netdrv] bpf: reduce verifier memory consumption (John Linville) [1545903]
-- [netdrv] nfp: inform the VF driver needs to be restarted after changing the MAC (John Linville) [1545903]
-- [netdrv] netronome: Convert timers to use timer_setup() (John Linville) [1545903]
-- [netdrv] nfp: bpf: optimize mov64 a little (John Linville) [1545903]
-- [netdrv] nfp: bpf: support stack accesses via non-constant pointers (John Linville) [1545903]
-- [netdrv] nfp: bpf: support accessing the stack beyond 64 bytes (John Linville) [1545903]
-- [netdrv] nfp: bpf: allow stack accesses via modified stack registers (John Linville) [1545903]
-- [netdrv] nfp: bpf: optimize the RMW for stack accesses (John Linville) [1545903]
-- [netdrv] nfp: bpf: add stack read support (John Linville) [1545903]
-- [netdrv] nfp: bpf: add stack write support (John Linville) [1545903]
-- [netdrv] nfp: bpf: refactor nfp_bpf_check_ptr() (John Linville) [1545903]
-- [netdrv] nfp: bpf: add helper for emitting nops (John Linville) [1545903]
-- [netdrv] nfp: use struct fields for 8 bit-wide access (John Linville) [1545903]
-- [netdrv] sched: avoid ndo_setup_tc calls for TC_SETUP_CLS* (John Linville) [1545903]
-- [netdrv] nfp: bpf: Convert ndo_setup_tc offloads to block callbacks (John Linville) [1545903]
-- [netdrv] nfp: flower: Convert ndo_setup_tc offloads to block callbacks (John Linville) [1545903]
-- [netdrv] nfp: Explicitly include linux/bug.h (John Linville) [1545903]
-- [netdrv] nfp: bpf: support direct packet access in TC (John Linville) [1545903]
-- [netdrv] nfp: bpf: direct packet access - write (John Linville) [1545903]
-- [netdrv] nfp: bpf: add support for direct packet access - read (John Linville) [1545903]
-- [netdrv] nfp: bpf: separate I/O from checks for legacy data load (John Linville) [1545903]
-- [netdrv] nfp: bpf: fix context accesses (John Linville) [1545903]
-- [netdrv] nfp: bpf: support BPF offload only on little endian (John Linville) [1545903]
-- [netdrv] nfp: bpf: implement byte swap instruction (John Linville) [1545903]
-- [netdrv] nfp: bpf: add mov helper (John Linville) [1545903]
-- [netdrv] nfp: bpf: fix compare instructions (John Linville) [1545903]
-- [netdrv] nfp: bpf: add missing return in jne_imm optimization (John Linville) [1545903]
-- [netdrv] nfp: bpf: reorder arguments to emit_ld_field_any() (John Linville) [1545903]
-- [netdrv] nfp: bpf: pass dst register to ld_field instruction (John Linville) [1545903]
-- [netdrv] nfp: bpf: byte swap the instructions (John Linville) [1545903]
-- [netdrv] nfp: bpf: pad code with valid nops (John Linville) [1545903]
-- [netdrv] nfp: bpf: calculate code store ECC (John Linville) [1545903]
-- [netdrv] nfp: bpf: move to datapath ABI version 2 (John Linville) [1545903]
-- [netdrv] nfp: bpf: encode extended LM pointer operands (John Linville) [1545903]
-- [netdrv] nfp: bpf: encode LMEM accesses (John Linville) [1545903]
-- [netdrv] nfp: add more white space to the instruction defines (John Linville) [1545903]
-- [netdrv] nfp: bpf: remove packet marking support (John Linville) [1545903]
-- [netdrv] nfp: bpf: remove register rename (John Linville) [1545903]
-- [netdrv] nfp: bpf: encode all 64bit shifts (John Linville) [1545903]
-- [netdrv] nfp: bpf: move software reg helpers and cmd table out of translator (John Linville) [1545903]
-- [netdrv] nfp: bpf: use the power of sparse to check we encode registers right (John Linville) [1545903]
-- [netdrv] nfp: bpf: lift the single-port limitation (John Linville) [1545903]
-- [netdrv] bpf, nfp: add meta data support (John Linville) [1545903]
-- [netdrv] bpf: add meta pointer for direct access (John Linville) [1545903]
-- [netdrv] nfp: don't reuse pointers in ring dumping (John Linville) [1545903]
-- [netdrv] bpf, nfp: implement jiting of BPF_J(LT,LE) (John Linville) [1545903]
-- [netdrv] bpf/verifier: rework value tracking (John Linville) [1545903]
-- [netdrv] Use octal not symbolic permissions (Ivan Vecera) [1530139]
-- [netdrv] emulex/benet: Constify *be_misconfig_evt_port_state (Ivan Vecera) [1530139]
-- [netdrv] be2net: Handle transmit completion errors in Lancer (Ivan Vecera) [1530139]
-- [netdrv] be2net: Fix HW stall issue in Lancer (Ivan Vecera) [1530139]
-- [netdrv] be2net: remove redundant initialization of 'head' and pointer txq (Ivan Vecera) [1530139]
-- [netdrv] be2net: networking block comments don't use an empty /* line (Ivan Vecera) [1530139]
-- [netdrv] be2net: use ARRAY_SIZE for array sizing calculation on array cmd_priv_map (Ivan Vecera) [1530139]
-- [netdrv] locking/atomics: coccinelle/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE() (Ivan Vecera) [1530139]
-- [infiniband] qib: Fix DMA api warning with debug kernel (Alex Estrin) [1573761]
-- [infiniband] isert: Fix for lib/dma_debug check_sync warning (Don Dutile) [1573752]
-- [infiniband] ib/hfi1: Use after free race condition in send context error path (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1: Fix memory leak in exception path in get_irq_affinity() (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1, rdmavt: Fix memory leak in hfi1_alloc_devdata() upon failure (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1: Fix NULL pointer dereference when invalid num_vls is used (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1: Fix loss of BECN with AHG (Alex Estrin) [1580114]
-- [infiniband] IB/hfi1 Use correct type for num_user_context (Alex Estrin) [1580114]
-- [infiniband] ib/hfi1: Fix handling of FECN marked multicast packet (Alex Estrin) [1580114]
-
-* Mon May 28 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-894.el7]
-- [net] netfilter: ipset: Use is_zero_ether_addr instead of static and memcmp (Stefano Brivio) [1557599]
-- [net] netfilter: xt_set: use pr ratelimiting (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix wraparound in hash:*net* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Missing nfnl_lock()/nfnl_unlock() is added to ip_set_net_exit() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix "don't update counters" mode when counters used at the matching (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: use swap macro instead of _manually_ swapping values (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: add resched points during set listing (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: use nfnl_mutex_is_locked (Stefano Brivio) [1557599]
-- [net] netfilter: mark expected switch fall-throughs (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: deduplicate prefixlen maps (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix sparse warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Compress return logic (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix adding an IPv4 range containing more than 2^31 addresses (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: ipset list may return wrong member count for set with timeout (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: remove unused function __ip_set_get_netlink (Stefano Brivio) [1557599]
-- [net] netfilter: Remove exceptional & on function name (Stefano Brivio) [1557599]
-- [net] netfilter: Remove unnecessary cast on void pointer (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Null pointer exception in ipset list:set (Stefano Brivio) [1557599]
-- [net] netfilter: sometimes valid entries in hash:* types of sets were evicted (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: hash: fix boolreturn.cocci warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: use setup_timer() and mod_timer() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: hash:ipmac type support added to ipset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix reported memory size for hash:* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Collapse same condition body to a single one (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Make struct htype per ipset family (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Optimize hash creation routine (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Make sure element data size is a multiple of u32 (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Make NLEN compile time constant for hash types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Simplify mtype_expire() for hash types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Remove redundant mtype_expire() arguments (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Count non-static extension memory for userspace (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add element count to all set types header (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add element count to hash headers (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Regroup ip_set_put_extensions and add extern (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Separate memsize calculation code into dedicated function (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Split extensions into separate files (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use kmalloc() in comment extension helper (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Improve skbinfo get/init helpers (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Headers file cleanup (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Mark some helper args as const (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Remove extra whitespaces in ip_set.h (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check IPSET_ATTR_ETHER netlink attribute length (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix set:list type crash when flush/dump set in parallel (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: allow a 0 netmask with hash_netiface type (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix hash type expire: release empty hash bucket block (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix hash:* type expiration (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix extension alignment (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix sleeping memory allocation in atomic context (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fixing unnamed union init (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Out of bound access in hash:net* types fixed (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix coding styles reported by checkpatch.pl (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Introduce RCU locking in list type (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Introduce RCU locking in hash:* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Introduce RCU locking in bitmap:* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Prepare the ipset core to use RCU at set level (Stefano Brivio) [1557599]
-- [net] netfilter: ipset Remove rbtree from hash:net, iface (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix parallel resizing and listing of the same set (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix cidr handling for hash:*net* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check CIDR value only when attribute is given (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Make sure we always return line number on batch (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Permit CIDR equal to the host address CIDR in IPv6 (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check extensions attributes before getting extensions (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use SET_WITH_*() helpers to test set extensions (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use MSEC_PER_SEC consistently (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: deinline ip_set_put_extensions() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use better include files in xt_set.c (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Improve preprocessor macros checks (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix hashing for ipv6 sets (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix ext_*() macros (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check for comment netlink attribute length (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Return bool values instead of int (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use HOST_MASK literal to represent host address CIDR len (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Check IPSET_ATTR_PORT only once (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Return ipset error instead of bool (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Preprocessor directices cleanup (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: No need to make nomatch bitfield (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Properly calculate extensions offsets and total length (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: make ip_set_get_ip*_port to use skb_network_offset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Give a better name to a macro in ip_set_core.c (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix sparse warning (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: fix boolreturn.cocci warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Explicitly add padding elements to hash:net, net and hash:net, port, net (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Simplify cidr handling for hash:*net* types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Indicate when /0 networks are supported (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Alignment problem between 64bit kernel 32bit userspace (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support updating extensions when the set is full (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: small potential read beyond the end of buffer (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: off by one in ip_set_nfnl_get_byindex() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: hash:mac type added to ipset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: send nonzero skbinfo extensions only (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension support to SET target (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension kernel support for the list set type (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension kernel support for the hash set types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension kernel support for the bitmap set types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add skbinfo extension kernel support in the ipset core (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix static checker warning in ip_set_core.c (Stefano Brivio) [1557599]
-- [net] netfilter: Convert pr_warning to pr_warn (Stefano Brivio) [1557599]
-- [net] netfilter: fix errors in printk (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix warn: integer overflows 'sizeof(*map) + size * set->dsize' (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Resolve missing-field-initializer warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: netnet, netportnet: Fix value range support for IPv4 (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Removed invalid IPSET_ATTR_MARKMASK validation (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: add forceadd kernel support for hash set types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Prepare the kernel for create option flags when no extension is needed (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: kernel: uapi: fix MARKMASK attr ABI breakage (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: add markmask for hash:ip, mark data type (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: add hash:ip, mark data type to ipset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add hash: fix coccinelle warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Follow manual page behavior for SET target on list:set (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: rename nfnl_dereference()/nfnl_set() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: use rbtree postorder iteration instead of opencoding (Stefano Brivio) [1557599]
-- [net] netfilter: Fix typo in Kconfig (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: fix incorret comparison in hash_netnet4_data_equal() (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: remove duplicate define (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix memory allocation for bitmap:port (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: The unnamed union initialization may lead to compilation error (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use netlink callback dump args only (Stefano Brivio) [1557599]
-- [net] netfilter: Fix common typo in "identify" (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add hash:net, port, net module to kernel (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use a common function at listing the extensions (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: For set:list types, replaced elements must be zeroed out (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix hash resizing with comments (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support comments in hash-type ipsets (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support comments in the list-type ipset (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support comments in bitmap-type ipsets (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support comments for ipset entries in the core (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Add hash:net, net module to kernel (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Kconfig: ipset needs NETFILTER_NETLINK (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: list:set: make sure all elements are checked by the gc (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support extensions which need a per data destroy function (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Generalize extensions support (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Move extension data to set structure (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Rename extension offset ids to extension ids (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Prepare ipset to support multiple networks for hash types (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Introduce new operation to get both setname and family (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Support package fragments for IPv4 protos without ports (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Use fix sized type for timeout in the extension part (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix "may be used uninitialized" warnings (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Fix sparse warnings due to missing rcu annotations (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Sparse warning about shadowed variable fixed (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Don't call ip_nest_end needlessly in the error path (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Validate the set family and not the set type family at swapping (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Consistent userspace testing with nomatch flag (Stefano Brivio) [1557599]
-- [net] netfilter: ipset: Skip really non-first fragments for IPv6 when getting port/protocol (Stefano Brivio) [1557599]
-- [net] tcp_memcontrol: remove dead per-memcg count of allocated sockets (Davide Caratti) [1554191]
-- [net] tcp_memcontrol: remove bogus hierarchy pressure propagation (Davide Caratti) [1554191]
-- [net] tcp_memcontrol: properly detect ancestor socket pressure (Davide Caratti) [1554191]
-- [net] sched: fix tc_u_common lookup (Ivan Vecera) [1572720]
-- [net] sched: fix panic when updating miniq (b, q)stats (Ivan Vecera) [1572720]
-- [net] sched: no need to free qdisc in RCU callback (Ivan Vecera) [1572720]
-- [net] sched: fix a missing rcu barrier in mini_qdisc_pair_swap() (Ivan Vecera) [1572720]
-- [net] sched: fix possible null pointer deref in tcf_block_put (Ivan Vecera) [1572720]
-- [net] sched: fix static key imbalance in case of ingress/clsact_init error (Ivan Vecera) [1572720]
-- [net] sched: fix clsact init error path (Ivan Vecera) [1572720]
-- [net] core: introduce mini_Qdisc and eliminate usage of tp->q for clsact fastpath (Ivan Vecera) [1572720]
-- [net] sched: introduce chain_head_change callback (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: use bitwise & rather than logical && on n->flags (Ivan Vecera) [1572720]
-- [net] sched: check NULL in tcf_block_put() (Ivan Vecera) [1572720]
-- [net] sched: move block offload unbind after all chains are flushed (Ivan Vecera) [1572720]
-- [netdrv] nfp: bpf: reject TC offload if XDP loaded (Ivan Vecera) [1572720]
-- [netdrv] nfp: flower: app should use struct nfp_repr (Ivan Vecera) [1572720]
-- [net] sched: remove ndo_setup_tc check from tc_can_offload (Ivan Vecera) [1572720]
-- [net] sched: remove tc_can_offload check from egdev call (Ivan Vecera) [1572720]
-- [net] sched: move the can_offload check from binding phase to rule insertion phase (Ivan Vecera) [1572720]
-- [net] sched: remove unused tc_should_offload helper (Ivan Vecera) [1572720]
-- [net] sched: remove unused is_classid_clsact_ingress/egress helpers (Ivan Vecera) [1572720]
-- [net] sched: remove unused classid field from tc_cls_common_offload (Ivan Vecera) [1572720]
-- [net] sched: avoid ndo_setup_tc calls for TC_SETUP_CLS* (Ivan Vecera) [1572720]
-- [netdrv] nfp: bpf: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] nfp: flower: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] mlx5e_rep: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] ixgbe: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] cxgb4: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] bnxt: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] mlx5e: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [netdrv] mlxsw: spectrum: Convert ndo_setup_tc offloads to block callbacks (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: call block callbacks for offload (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: swap u32_remove_hw_knode and u32_remove_hw_hnode (Ivan Vecera) [1572720]
-- [net] sched: cls_matchall: call block callbacks for offload (Ivan Vecera) [1572720]
-- [net] sched: use tc_setup_cb_call to call per-block callbacks (Ivan Vecera) [1572720]
-- [net] sched: introduce per-block callbacks (Ivan Vecera) [1572720]
-- [net] sched: use extended variants of block_get/put in ingress and clsact qdiscs (Ivan Vecera) [1572720]
-- [net] sched: add block bind/unbind notif. and extended block_get/put (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: use hash_ptr() for tc_u_hash (Ivan Vecera) [1572720]
-- [net] sched: propagate q and parent from caller down to tcf_fill_node (Ivan Vecera) [1572720]
-- [net] sched: use tcf_block_q helper to get q pointer for sch_tree_lock (Ivan Vecera) [1572720]
-- [net] sched: tcindex, fw, flow: use tcf_block_q helper to get struct Qdisc (Ivan Vecera) [1572720]
-- [net] sched: cls_u32: use block instead of q in tc_u_common (Ivan Vecera) [1572720]
-- [net] sched: ematch: obtain net pointer from blocks (Ivan Vecera) [1572720]
-- [net] sched: teach tcf_bind/unbind_filter to use block->q (Ivan Vecera) [1572720]
-- [net] sched: introduce tcf_block_q and tcf_block_dev helpers (Ivan Vecera) [1572720]
-- [net] sched: store net pointer in block and introduce qdisc_net helper (Ivan Vecera) [1572720]
-- [net] sched: store Qdisc pointer in struct block (Ivan Vecera) [1572720]
-- [scsi] export 'wwid' to sysfs (Eda Zhou) [1577281]
-- [iscsi-target] Fix iscsi_np reset hung task during parallel delete (Maurizio Lombardi) [1579217]
-- [scsi] qedf: Update copyright for 2018 (Chad Dupuis) [1566547]
-- [scsi] qedf: Add more defensive checks for concurrent error conditions (Chad Dupuis) [1566547]
-- [scsi] qedf: Set the UNLOADING flag when removing a vport (Chad Dupuis) [1566547]
-- [scsi] qedf: Add additional checks when restarting an rport due to ABTS timeout (Chad Dupuis) [1566547]
-- [scsi] qedf: If qed fails to enable MSI-X fail PCI probe (Chad Dupuis) [1566547]
-- [scsi] qedf: Honor default_prio module parameter even if DCBX does not converge (Chad Dupuis) [1566547]
-- [scsi] qedf: Improve firmware debug dump handling (Chad Dupuis) [1566547]
-- [scsi] qedf: Remove setting DCBX pending during soft context reset (Chad Dupuis) [1566547]
-- [scsi] qedf: Add task id to kref_get_unless_zero() debug messages when flushing requests (Chad Dupuis) [1566547]
-- [scsi] qedf: Check if link is already up when receiving a link up event from qed (Chad Dupuis) [1566547]
-- [scsi] qedf: Return request as DID_NO_CONNECT if MSI-X is not enabled (Chad Dupuis) [1566547]
-- [scsi] qedf: Release RRQ reference correctly when RRQ command times out (Chad Dupuis) [1566547]
-- [scsi] qedf: Honor priority from DCBX FCoE App tag (Chad Dupuis) [1566547]
-- [scsi] qedf: Add dcbx_not_wait module parameter so we won't wait for DCBX convergence to start discovery (Chad Dupuis) [1566547]
-- [scsi] qedf: Sanity check FCoE/FIP priority value to make sure it's between 0 and 7 (Chad Dupuis) [1566547]
-- [scsi] qedf: Add check for offload before flushing I/Os for target (Chad Dupuis) [1566547]
-- [scsi] qedf: Fix VLAN display when printing sent FIP frames (Chad Dupuis) [1566547]
-- [scsi] qedf: Add missing skb frees in error path (Chad Dupuis) [1566547]
-- [scsi] qedf: Increase the number of default FIP VLAN request retries to 60 (Chad Dupuis) [1566547]
-- [scsi] qedf: Synchronize rport restarts when multiple ELS commands time out (Chad Dupuis) [1566547]
-- [scsi] qedf: fix LTO-enabled build (Chad Dupuis) [1566547]
-- [scsi] qedf: remove redundant initialization of 'fcport' (Chad Dupuis) [1566547]
-- [scsi] qedf: Fix error return code in __qedf_probe() (Chad Dupuis) [1566547]
-- [scsi] qedi: Fix kernel crash during port toggle (Chad Dupuis) [1566549]
-- [scsi] qedi: fix build regression (Chad Dupuis) [1566549]
-- [scsi] qedi: fix building with LTO (Chad Dupuis) [1566549]
-- [scsi] qedi: Cleanup local str variable (Chad Dupuis) [1566549]
-- [scsi] qedi: Fix truncation of CHAP name and secret (Chad Dupuis) [1566549]
-- [x86] microcode: Load microcode on all cpus (Prarit Bhargava) [1568249]
-
-* Thu May 24 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-893.el7]
-- [fs] nfsd: restrict rd_maxcount to svc_max_payload in nfsd_encode_readdir (Scott Mayhew) [1574361]
-- [fs] nfsd: make nfsd4_scsi_identify_device retry with a larger buffer (Scott Mayhew) [1570969]
-- [fs] cifs: do not allow creating sockets except with SMB1 posix exensions (Leif Sahlberg) [1453123]
-- [fs] NFSv4.1: Fix up replays of interrupted requests (Steve Dickson) [1575768]
-- [fs] NFS: Make trace_nfs4_setup_sequence() available to NFS v4.0 (Steve Dickson) [1575768]
-- [fs] NFS: Merge the remaining setup_sequence functions (Steve Dickson) [1575768]
-- [fs] NFS: Check if the slot table is draining from nfs4_setup_sequence() (Steve Dickson) [1575768]
-- [fs] NFS: Handle setup sequence task rescheduling in a single place (Steve Dickson) [1575768]
-- [fs] NFS: Lock the slot table from a single place during setup sequence (Steve Dickson) [1575768]
-- [fs] NFS: Move slot-already-allocated check into nfs_setup_sequence() (Steve Dickson) [1575768]
-- [fs] NFS: Create a single nfs4_setup_sequence() function (Steve Dickson) [1575768]
-- [fs] NFS: Use nfs4_setup_sequence() everywhere (Steve Dickson) [1575768]
-- [fs] NFS: Change nfs4_setup_sequence() to take an nfs_client structure (Steve Dickson) [1575768]
-- [fs] NFS: Change nfs4_get_session() to take an nfs_client structure (Steve Dickson) [1575768]
-- [fs] NFS: Move nfs4_get_session() into nfs4_session.h (Steve Dickson) [1575768]
-- [fs] xfs: don't use ioends for direct write completions (Brian Foster) [1578943]
-- [fs] xfs: move misplaced error check in direct write completion (Brian Foster) [1578943]
-- [fs] SMB3: Validate negotiate request must always be signed (Leif Sahlberg) [1578183]
-- [fs] SMB: fix validate negotiate info uninitialised memory use (Leif Sahlberg) [1578183]
-- [fs] SMB: fix leak of validate negotiate info response buffer (Leif Sahlberg) [1578183]
-- [fs] CIFS: Fix NULL pointer deref on SMB2_tcon() failure (Leif Sahlberg) [1578183]
-- [fs] CIFS: do not send invalid input buffer on QUERY_INFO requests (Leif Sahlberg) [1578183]
-- [fs] cifs: Select all required crypto modules (Leif Sahlberg) [1578183]
-- [fs] CIFS: SMBD: Fix the definition for SMB2_CHANNEL_RDMA_V1_INVALIDATE (Leif Sahlberg) [1578183]
-- [fs] cifs: handle large EA requests more gracefully in smb2+ (Leif Sahlberg) [1578183]
-- [fs] SMB: Validate negotiate (to protect against downgrade) even if signing off (Leif Sahlberg) [1578183]
-- [fs] cifs: release auth_key.response for reconnect (Leif Sahlberg) [1578183]
-- [fs] CIFS: make arrays static const, reduces object code size (Leif Sahlberg) [1578183]
-- [fs] Update version of cifs module (Leif Sahlberg) [1578183]
-- [fs] cifs: hide unused functions (Leif Sahlberg) [1578183]
-- [fs] libceph: validate con->state at the top of try_write() (Ilya Dryomov) [1573126]
-- [fs] libceph: reschedule a tick in finish_hunting() (Ilya Dryomov) [1573126]
-- [fs] libceph: un-backoff on tick when we have a authenticated session (Ilya Dryomov) [1573126]
-- [crypto] testmgr - Allow leading zeros in RSA (Neil Horman) [1546163]
-- [crypto] testmgr - Fix incorrect values in PKCS#1 test vector (Neil Horman) [1546163]
-- [crypto] testmgr - add testvector for pkcs1pad(rsa) (Neil Horman) [1546163]
-- [crypto] hmac - add hmac IPAD/OPAD constant (Neil Horman) [1546163]
-- [crypto] qat - reduce stack size with KASAN (Neil Horman) [1546163]
-- [crypto] dh - Remove pointless checks for NULL 'p' and 'g' (Neil Horman) [1546163]
-- [crypto] qat - Clean up error handling in qat_dh_set_secret() (Neil Horman) [1546163]
-- [crypto] qat - mark expected switch fall-throughs in qat_uclo (Neil Horman) [1546163]
-- [crypto] qat - remove unused and redundant pointer vf_info (Neil Horman) [1546163]
-- [crypto] qat - pr_err() strings should end with newlines (Neil Horman) [1546163]
-- [crypto] qat - fix spelling mistake: "runing" -> "running" (Neil Horman) [1546163]
-- [crypto] qat - Use IPAD/OPAD constant (Neil Horman) [1546163]
-- [crypto] qat - use pcie_flr instead of duplicating it (Neil Horman) [1546163]
-- [netdrv] liquidio: bump up driver version to 1.7.2 to match newer NIC firmware (Felix Manlunas) [1548518]
-- [netdrv] liquidio: monitor all of Octeon's cores in watchdog thread (Felix Manlunas) [1548518]
-- [netdrv] liquidio: support use of ethtool to set link speed of CN23XX-225 cards (Felix Manlunas) [1548518]
-- [netdrv] liquidio vf: indicate that disabling rx vlan offload is not allowed (Felix Manlunas) [1535336 1548518]
-- [netdrv] liquidio: fix spelling mistake: "mac_tx_multi_collison" -> "mac_tx_multi_collision" (Felix Manlunas) [1548518]
-- [netdrv] liquidio: enhanced ethtool --set-channels feature (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function setup_glists to lio_core.c (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common definition octnic_gather to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function delete_glists to lio_core.c (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function list_delete_head to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function if_cfg_callback to lio_core.c (Felix Manlunas) [1548518]
-- [netdrv] liquidio: add support for ndo_get_stats64 instead of ndo_get_stats (Felix Manlunas) [1522697 1548518]
-- [netdrv] liquidio: move a couple of functions to lio_core.c (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Swap VF representor Tx and Rx statistics (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Added ndo_get_vf_stats support (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Enhanced ethtool stats (Felix Manlunas) [1548518]
-- [netdrv] liquidio: clean up Makefile for simpler composite object handling (Felix Manlunas) [1548518]
-- [netdrv] liquidio: prevent rx queues from getting stalled (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Prioritize control messages (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed duplicate Tx queue status check (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Renamed txqs_start to start_txqs (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Renamed txqs_stop to stop_txqs (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Renamed txqs_wake to wake_txqs (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Function call skb_iq for deriving queue from skb (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed one line function wake_q (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed one line function stop_q (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed netif_is_multiqueue check (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed start_txq function (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Removed one line function stop_txq (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function skb_iq to to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function txqs_start to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function txqs_wake to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Moved common function txqs_stop to octeon_network.h (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Added support for trusted VF (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Simplified napi poll (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Add support for liquidio 10GBase-T NIC (Felix Manlunas) [1548518]
-- [netdrv] liquidio: fix ndo_change_mtu to always return correct status to the caller (Felix Manlunas) [1548518]
-- [netdrv] liquidio: avoid doing useless work (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Resolved mbox read issue while reading more than one 64bit data (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Corrected Rx bytes counting (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Use zeroing memory allocator than allocator/memset (Felix Manlunas) [1548518]
-- [netdrv] liquidio: fix incorrect indentation of assignment statement (Felix Manlunas) [1548518]
-- [netdrv] mm: remove __GFP_COLD (Felix Manlunas) [1548518]
-- [netdrv] liquidio: Missing error code in liquidio_init_nic_module() (Felix Manlunas) [1548518]
-- [netdrv] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Felix Manlunas) [1548518]
-- [netdrv] vmxnet3: fix incorrect dereference when rxvlan is disabled (Neil Horman) [1570942]
-- [netdrv] hv_netvsc: Fix net device attach on older Windows hosts (Mohammed Gamal) [1569948]
-
-* Thu May 24 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-892.el7]
-- [documentation] dm thin: update Documentation to clarify when read_only is valid (Mike Snitzer) [1570199]
-- [lib] dma-debug: fix memory leak in debug_dma_alloc_coherent (Don Dutile) [1535622]
-- [lib] dma-debug.c: fix incorrect pfn calculation (Don Dutile) [1535622]
-- [lib] dma-debug.c: make locking work for RT (Don Dutile) [1535622]
-- [lib] dma-debug: use offset_in_page() macro (Don Dutile) [1535622]
-- [lib] dma-debug: add comment for failed to check map error (Don Dutile) [1535622]
-- [lib] dma-api: Teach the "DMA-from-stack" check about vmapped stacks (Don Dutile) [1535622]
-- [lib] rhel-only: Add null function for task_stack_vm_area() to simplify backports (Don Dutile) [1535622]
-- [lib] dma-debug: track bucket lock state for static checkers (Don Dutile) [1535622]
-- [lib] dma-debug: avoid spinlock recursion when disabling dma-debug (Don Dutile) [1535622]
-- [lib] dma-debug: switch check from _text to _stext (Don Dutile) [1535622]
-- [lib] dma-debug: check nents in dma_sync_sg* (Don Dutile) [1535622]
-- [lib] dma-debug: skip debug_dma_assert_idle() when disabled (Don Dutile) [1535622]
-- [lib] dma-debug: fix bucket_find_contain() (Don Dutile) [1535622]
-- [lib] dma-debug: modify check_for_stack output (Don Dutile) [1535622]
-- [mm] mlock: include VM_MIXEDMAP flag in the VM_SPECIAL list to avoid m(un)locking (Rafael Aquini) [1560030]
-- [mm] mlock: fix mlock count can not decrease in race condition (Rafael Aquini) [1560030]
-- [mm] mlock: add mlock flags to enable VM_LOCKONFAULT usage (Rafael Aquini) [1560030]
-- [mm] mlock: introduce VM_LOCKONFAULT (Rafael Aquini) [1560030]
-- [mm] mlock: wire up mlock2 system call on powerpc (Rafael Aquini) [1560030]
-- [mm] mlock: wire up mlock2 system call on s390 (Rafael Aquini) [1560030]
-- [mm] mlock: add new mlock2 system call (Rafael Aquini) [1560030]
-- [mm] mlock: refactor mlock, munlock, and munlockall code (Rafael Aquini) [1560030]
-- [mm] mlock: use offset_in_page macro (Rafael Aquini) [1560030]
-- [mm] mlock: reorganize mlockall() return values and remove goto-out label (Rafael Aquini) [1560030]
-- [mm] extract code to fault in a page from __get_user_pages() (Rafael Aquini) [1560030]
-- [mm] move mm_populate()-related code to mm/gup.c (Rafael Aquini) [1560030]
-- [mm] move gup() -> posix mlock() error conversion out of __mm_populate (Rafael Aquini) [1560030]
-- [mm] rename __mlock_vma_pages_range() to populate_vma_page_range() (Rafael Aquini) [1560030]
-- [mm] rename FOLL_MLOCK to FOLL_POPULATE (Rafael Aquini) [1560030]
-- [mm] mlock: reorder can_do_mlock to fix audit denial (Rafael Aquini) [1560030]
-- [mm] mlock: prepare params outside critical region (Rafael Aquini) [1560030]
-- [mm] mlock: place preemption point in do_mlockall() loop (Rafael Aquini) [1560030]
-- [mm] munlock: fix potential race with THP page split (Rafael Aquini) [1560030]
-- [mm] munlock: fix deadlock in __munlock_pagevec() (Rafael Aquini) [1560030]
-- [mm] munlock: fix a bug where THP tail page is encountered (Rafael Aquini) [1560030]
-- [mm] munlock: prevent walking off the end of a pagetable in no-pmd configuration (Rafael Aquini) [1560030]
-- [mm] munlock: manual pte walk in fast path instead of follow_page_mask() (Rafael Aquini) [1560030]
-- [mm] munlock: remove redundant get_page/put_page pair on the fast path (Rafael Aquini) [1560030]
-- [mm] munlock: bypass per-cpu pvec for putback_lru_page (Rafael Aquini) [1560030]
-- [mm] munlock: batch NR_MLOCK zone state updates (Rafael Aquini) [1560030]
-- [mm] munlock: batch non-THP page isolation and munlock+putback using pagevec (Rafael Aquini) [1560030]
-- [mm] munlock: remove unnecessary call to lru_add_drain() (Rafael Aquini) [1560030]
-- [watchdog] hpwdt: bump driver version (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: Claim NMIs generated by iLO5 (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: condition early return of NMI handler on iLO5 (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: Remove legacy NMI sourcing (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: fix unused variable warning (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: Check source of NMI (Joseph Szczypek) [1555073]
-- [watchdog] hpwdt: SMBIOS check (Joseph Szczypek) [1555073]
-- [kernel] sched/debug: Adjust newlines for better alignment (Joe Lawrence) [1505239]
-- [kernel] sched/debug: Fix per-task line continuation for console output (Joe Lawrence) [1505239]
-- [x86] sched: Allow topologies where NUMA nodes share an LLC (Prarit Bhargava) [1572441]
-- [s390] sthyi: add s390_sthyi system call (Hendrik Brueckner) [1519343]
-- [s390] sthyi: add cache to store hypervisor info (Hendrik Brueckner) [1519343]
-- [s390] sthyi: reorganize sthyi implementation (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: sthyi: fix sthyi inline assembly (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Fix STHYI buffer alignment for diag224 (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Limit sthyi execution (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Add sthyi emulation (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Extend diag 204 fields (Hendrik Brueckner) [1519343]
-- [s390] kvm: s390: Add operation exception interception handler (Hendrik Brueckner) [1519343]
-- [s390] Make diag224 public (Hendrik Brueckner) [1519343]
-- [s390] Make cpc_name accessible (Hendrik Brueckner) [1519343]
-- [s390] hypfs: Move diag implementation and data definitions (Hendrik Brueckner) [1519343]
-
-* Mon May 21 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-891.el7]
-- [block] update chunk_sectors in blk_stack_limits() (Ming Lei) [1565727]
-- [misc] mei: me: allow runtime pm for platform with D0i3 (Prarit Bhargava) [1537419]
-- [netdrv] qede: Fix gfp flags sent to rdma event node allocation (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix l2 initializations over iWARP personality (Chad Dupuis) [1548140]
-- [netdrv] qed: Add configuration information to register dump and debug data (Chad Dupuis) [1548140]
-- [netdrv] qed: Delete unused parameter p_ptt from mcp APIs (Chad Dupuis) [1548140]
-- [netdrv] qede: Ethtool flash update support (Chad Dupuis) [1548140]
-- [netdrv] qed: Adapter flash update support (Chad Dupuis) [1548140]
-- [netdrv] qed: Add APIs for flash access (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix PTT entry leak in the selftest error flow (Chad Dupuis) [1548140]
-- [netdrv] qed: Populate nvm image attribute shadow (Chad Dupuis) [1548140]
-- [netdrv] qed*: Utilize FW 8.33.11.0 (Chad Dupuis) [1548140]
-- [netdrv] qede: Fix barrier usage after tx doorbell write (Chad Dupuis) [1548140]
-- [netdrv] qed: Use true and false for boolean values (Chad Dupuis) [1548140]
-- [netdrv] qede: fix spelling mistake: "registeration" -> "registration" (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix QP state initialization race (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix rc initialization on CNQ allocation failure (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: fix QP's ack timeout configuration (Chad Dupuis) [1548140]
-- [netdrv] qede: Fix qedr link update (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix non TCP packets should be dropped on iWARP ll2 connection (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix MPA unalign flow in case header is split across two packets (Chad Dupuis) [1548140]
-- [netdrv] qed: Use after free in qed_rdma_free() (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix iWARP write and send with immediate (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix kernel panic when running fio over NFSoRDMA (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix iWARP connect with port mapper (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix ipv6 destination address resolution (Chad Dupuis) [1548140]
-- [netdrv] qlogic/qed: Constify *pkt_type_str (Chad Dupuis) [1548140]
-- [netdrv] qed: code indent should use tabs where possible (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: lower print level of flushed CQEs (Chad Dupuis) [1548140]
-- [netdrv] qed: Remove reserveration of dpi for kernel (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix potential use-after-free in qed_spq_post() (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix endian problems around imm_data (Chad Dupuis) [1548140]
-- [netdrv] qed: Use zeroing memory allocator than allocator/memset (Chad Dupuis) [1548140]
-- [netdrv] qed*: Advance drivers' version to 8.33.0.20 (Chad Dupuis) [1548140]
-- [netdrv] qed*: Utilize FW 8.33.1.0 (Chad Dupuis) [1548140]
-- [netdrv] scsi: qedi: Remove comparison of u16 idx with zero (Chad Dupuis) [1548140]
-- [netdrv] qed*: HSI renaming for different types of HW (Chad Dupuis) [1548140]
-- [netdrv] qed*: Refactoring and rearranging FW API with no functional impact (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Use zeroing memory allocator than allocator/memset (Chad Dupuis) [1548140]
-- [netdrv] qede: Use NETIF_F_GRO_HW (Chad Dupuis) [1548140]
-- [netdrv] net/ethernet/qlogic/qed: Fix __qed_spq_block() ordering (Chad Dupuis) [1548140]
-- [netdrv] qed: use kzalloc instead of kmalloc and memset (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix iWARP out of order flow (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Remove set-but-not-used variables (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Annotate iomem pointers correctly (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Declare local functions static (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Use NULL instead of 0 to represent a pointer (Chad Dupuis) [1548140]
-- [netdrv] qed: Add iWARP support for fpdu spanned over more than two tcp packets (Chad Dupuis) [1548140]
-- [netdrv] qed: Add support for MPA header being split over two tcp packets (Chad Dupuis) [1548140]
-- [netdrv] qed: Add support for freeing two ll2 buffers for corner cases (Chad Dupuis) [1548140]
-- [netdrv] qed: Add unaligned and packed packet processing (Chad Dupuis) [1548140]
-- [netdrv] qed: Add mpa buffer descriptors for storing and processing mpa fpdus (Chad Dupuis) [1548140]
-- [netdrv] qed: Add ll2 connection for processing unaligned MPA packets (Chad Dupuis) [1548140]
-- [netdrv] qed: Add LL2 slowpath handling (Chad Dupuis) [1548140]
-- [netdrv] qed: Add the source of a packet sent on an iWARP ll2 connection (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix initialization of ll2 offload feature (Chad Dupuis) [1548140]
-- [netdrv] qed: Add ll2 option for dropping a tx packet (Chad Dupuis) [1548140]
-- [netdrv] qed: Add ll2 ability of opening a secondary queue (Chad Dupuis) [1548140]
-- [netdrv] qed: Add ll2 option to limit the number of bds per packet (Chad Dupuis) [1548140]
-- [netdrv] qed: Delete redundant check on dcb_app priority (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Fix rdma_type initialization (Chad Dupuis) [1548140]
-- [netdrv] qed: iWARP - Add check for errors on a SYN packet (Chad Dupuis) [1548140]
-- [netdrv] qed: Fix maximum number of CQs for iWARP (Chad Dupuis) [1548140]
-- [netdrv] qed: Add iWARP out of order support (Chad Dupuis) [1548140]
-- [netdrv] qed: Add iWARP enablement support (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: fix build error without ipv6 (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Missing error code in qedr_init_user_queue() (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add support for iWARP in user space (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add iWARP connection management functions (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add iWARP connection management qp related callbacks (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add support for read with invalidate, supported in iWARP (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add iWARP support in existing verbs (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Add support for registering an iWARP device (Chad Dupuis) [1548140]
-- [netdrv] rdma/qedr: Rename the qedr_cm file as a preparation for iWARP support (Chad Dupuis) [1548140]
-- [infiniband] iw_cxgb4: Change error/warn prints to pr_debug (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: Add ib_device->get_netdev support (Arjun Vynipadath) [1523154]
-- [uapi] rdma/cxgb4: Use structs to describe the uABI instead of opencoding (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: initialize ib_mr fields for user mrs (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: print mapped ports correctly (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Add a sanity check in process_work() (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: make pointer reg_workq static (Arjun Vynipadath) [1523154]
-- [infiniband] cxgb4: use ktime_get for timestamps (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Annotate r2 and stag as __be32 (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Declare stag as __be32 (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Convert timers to use timer_setup() (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Remove a set-but-not-used variable (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Suppress gcc 7 fall-through complaints (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Remove the obsolete kernel module option 'c4iw_debug' (Arjun Vynipadath) [1523154]
-- [infiniband] rdma/cxgb4: Fix indentation (Arjun Vynipadath) [1523154]
-- [infiniband] ib/cxgb3, cxgb4: Remove unneeded config dependencies (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: fix misuse of integer variable (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: Use dsgl by default (Arjun Vynipadath) [1427035 1523154]
-- [infiniband] iw_cxgb4: introduce __skb_put_(zero, data, u8) (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: make skb_push & __skb_push return void pointers (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: make skb_put & friends return void pointers (Arjun Vynipadath) [1523154]
-- [infiniband] iw_cxgb4: convert many more places to skb_put_zero() (Arjun Vynipadath) [1523154]
-
-* Fri May 18 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-890.el7]
-- [char] tpm_tis: verify locality released before returning from release_locality (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: fix intermittent failure with self tests (Jerry Snitselaar) [1578136]
-- [char] tpm: add retry logic (Jerry Snitselaar) [1578136]
-- [char] tpm: self test failure should not cause suspend to fail (Jerry Snitselaar) [1578136]
-- [char] tpm2: add longer timeouts for creation commands (Jerry Snitselaar) [1578136]
-- [char] tpm_crb: use __le64 annotated variable for response buffer address (Jerry Snitselaar) [1578136]
-- [char] tpm: fix buffer type in tpm_transmit_cmd (Jerry Snitselaar) [1578136]
-- [char] tpm: tpm-interface: fix tpm_transmit/_cmd kdoc (Jerry Snitselaar) [1578136]
-- [kernel] tpm: cmd_ready command can be issued only after granting locality (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: Introduce flag TPM_TRANSMIT_RAW (Jerry Snitselaar) [1578136]
-- [char] tpm: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1578136]
-- [char] tpm: st33zp24: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1578136]
-- [char] tpm_i2c_infineon: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1578136]
-- [char] tpm_i2c_nuvoton: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1578136]
-- [char] tpm_tis: fix potential buffer overruns caused by bit glitches on the bus (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: remove unused variables (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: remove unused data fields from I2C and OF device ID tables (Jerry Snitselaar) [1578136]
-- [char] tpm: only attempt to disable the LPC CLKRUN if is already enabled (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: follow coding style for variable declaration in tpm_tis_core_init() (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: delete the TPM_TIS_CLK_ENABLE flag (Jerry Snitselaar) [1515099 1578136]
-- [kernel] tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd() (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm_tis: Move ilb_base_addr to tpm_tis_data (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm2-cmd: allow more attempts for selftest execution (Jerry Snitselaar) [1578136]
-- [char] tpm: return a TPM_RC_COMMAND_CODE response if command is not implemented (Jerry Snitselaar) [1578136]
-- [char] tpm: Move Linux RNG connection to hwrng (Jerry Snitselaar) [1578136]
-- [security] tpm: use struct tpm_chip for tpm_chip_find_get() (Jerry Snitselaar) [1578136]
-- [char] tpm: use idr_find(), not idr_find_slowpath() (Jerry Snitselaar) [1578136]
-- [kernel] tpm: add event log format version (Jerry Snitselaar) [1578136]
-- [char] tpm: rename event log provider files (Jerry Snitselaar) [1578136]
-- [kernel] tpm: move tpm_eventlog.h outside of drivers folder (Jerry Snitselaar) [1578136]
-- [char] tpm: use tpm_msleep() value as max delay (Jerry Snitselaar) [1578136]
-- [char] tpm: reduce tpm polling delay in tpm_tis_core (Jerry Snitselaar) [1578136 1515099]
-- [char] tpm: move wait_for_tpm_stat() to respective driver files (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm, tpm_tis: use ARRAY_SIZE() to define TPM_HID_USR_IDX (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: fix duplicate inline declaration specifier (Jerry Snitselaar) [1578136]
-- [char] tpm: fix type of a local variables in tpm_tis_spi.c (Jerry Snitselaar) [1578136]
-- [char] tpm: fix type of a local variable in tpm2_map_command() (Jerry Snitselaar) [1578136]
-- [char] tpm: fix type of a local variable in tpm2_get_cc_attrs_tbl() (Jerry Snitselaar) [1578136]
-- [char] tpm-dev-common: Reject too short writes (Jerry Snitselaar) [1578136]
-- [char] tpm: React correctly to RC_TESTING from TPM 2.0 self tests (Jerry Snitselaar) [1578136]
-- [char] tpm: Use dynamic delay to wait for TPM 2.0 self test result (Jerry Snitselaar) [1578136]
-- [char] tpm: Trigger only missing TPM 2.0 self tests (Jerry Snitselaar) [1578136]
-- [char] tpm_tis_spi: Use DMA-safe memory for SPI transfers (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm/tpm_crb: Use start method value from ACPI table directly (Jerry Snitselaar) [1578136]
-- [char] tpm: constify transmit data pointers (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm_tis: make array cmd_getticks static const to shrink object code size (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: migrate pubek_show to struct tpm_buf (Jerry Snitselaar) [1578136]
-- [char] tpm: ibmvtpm: simplify crq initialization and document crq format (Jerry Snitselaar) [1578136]
-- [char] tpm: replace msleep() with usleep_range() in TPM 1.2/2.0 generic drivers (Jerry Snitselaar) [1515099 1578136]
-- [char] tpm: tpm_crb: constify acpi_device_id (Jerry Snitselaar) [1578136]
-- [char] tpm: vtpm: constify vio_device_id (Jerry Snitselaar) [1578136]
-- [iommu] vt-d: Make use of iova deferred flushing (Jerry Snitselaar) [1519117]
-- [iommu] iova: Add flush timer (Jerry Snitselaar) [1519117]
-- [iommu] iova: Add locking to Flush-Queues (Jerry Snitselaar) [1519117]
-- [iommu] iova: Add flush counters to Flush-Queue implementation (Jerry Snitselaar) [1519117]
-- [iommu] iova: Implement Flush-Queue ring buffer (Jerry Snitselaar) [1519117]
-- [iommu] iova: Add flush-queue data structures (Jerry Snitselaar) [1519117]
-- [iommu] iova: Sort out rbtree limit_pfn handling (Jerry Snitselaar) [1519117]
-- [iommu] iova: Fix underflow bug in __alloc_and_insert_iova_range (Jerry Snitselaar) [1519117]
-- [iommu] vt-d: avoid dev iotlb logic for domains with no dev iotlbs (Jerry Snitselaar) [1519117]
-- [s390] qeth: on channel error, reject further cmd requests (Hendrik Brueckner) [1561974]
-- [s390] qeth: repair SBAL elements calculation (Hendrik Brueckner) [1559000]
-- [s390] dasd: Add discard support for FBA devices (Hendrik Brueckner) [1519354]
-- [s390] dasd: Define often used variable (Hendrik Brueckner) [1519354]
-- [s390] dasd: Make setting queue_max_segments more explicit (Hendrik Brueckner) [1519354]
-- [s390] dasd: fix performance drop (Hendrik Brueckner) [1519354]
-- [s390] dasd: mark DASD devices as non rotational (Hendrik Brueckner) [1519354]
-- [s390] dasd: Make raw I/O usable without prefix support (Hendrik Brueckner) [1519353]
-- [s390] dasd: Rename dasd_raw_build_cp() (Hendrik Brueckner) [1519353]
-- [s390] dasd: Refactor prefix_LRE() and related functions (Hendrik Brueckner) [1519353]
-- [s390] dasd: remove casts to dasd_*_private (Hendrik Brueckner) [1519353]
-- [s390] dasd: enable raw_track_access reads without direct I/O (Hendrik Brueckner) [1519353]
-- [s390] cpum_cf: rename IBM z13/z14 counter names (Hendrik Brueckner) [1519345]
-- [s390] add support for IBM z14 Model ZR1 (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: correct counter number of LAST_HOST_TRANSLATIONS (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: add hardware counter support for IBM z14 (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: correct variable naming (cleanup) (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: add IBM z13 counter event names (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: add support for the MT-diagnostic counter set (z13) (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: cleanup event/counter validation (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: update counter numbers to ecctr limits (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: Fix missing cpu hotplug notifier transition (Hendrik Brueckner) [1519345]
-- [s390] cpum_cf: Corrected return code for unauthorized counter sets (Hendrik Brueckner) [1519345]
-- [platform] x86: intel-vbtn: Reset wakeup capable flag on removal (Scott Wood) [1524975]
-- [platform] x86: intel-vbtn: Only activate tablet mode switch on 2-in-1's (Scott Wood) [1524975]
-- [platform] x86: intel-vbtn: Replace License by SPDX identifier (Scott Wood) [1524975]
-- [platform] x86: intel-vbtn: Remove redundant inclusions (Scott Wood) [1524975]
-- [platform] x86: intel-vbtn: Support tablet mode switch (Scott Wood) [1524975]
-- [platform] intel-hid: support KEY_ROTATE_LOCK_TOGGLE (Scott Wood) [1445055]
-- [platform] intel-hid: clean up and sort header files (Scott Wood) [1445055]
-- [platform] x86: intel-hid: Reset wakeup capable flag on removal (Scott Wood) [1445055]
-- [platform] intel-hid: add a DMI quirk to support Wacom MobileStudio Pro (Scott Wood) [1445055]
-- [platform] x86: intel-hid: Power button suspend on Dell Latitude 7275 (Scott Wood) [1445055]
-- [platform] x86: intel-hid: reduce unnecessary messages for normal users (Scott Wood) [1445055]
-- [platform] x86: intel-hid: Add missing ->thaw callback (Scott Wood) [1445055]
-- [platform] x86: intel-hid: do not set parents of input devices explicitly (Scott Wood) [1445055]
-- [platform] x86: intel-hid: remove redundant set_bit() call (Scott Wood) [1445055]
-- [platform] x86: intel-hid: use devm_input_allocate_device() for HID events input device (Scott Wood) [1445055]
-- [platform] x86: intel-hid: make intel_hid_set_enable() take a boolean argument (Scott Wood) [1445055]
-- [platform] x86: intel-hid: simplify enabling/disabling HID events (Scott Wood) [1445055]
-- [platform] x86: intel-hid: Support 5 button array (Scott Wood) [1445055]
-- [x86] kvm: Fix loss of pending INIT due to race (Radim Krcmar) [1569473]
-- [x86] microcode: Fix CPU synchronization routine (Prarit Bhargava) [1568249]
-- [x86] microcode: Attempt late loading only when new microcode is present (Prarit Bhargava) [1568249]
-- [x86] microcode: Synchronize late microcode loading (Prarit Bhargava) [1568249]
-- [x86] microcode: Request microcode on the BSP (Prarit Bhargava) [1568249]
-- [x86] microcode: Do not upload microcode if CPUs are offline (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Writeback and invalidate caches before updating microcode (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Check microcode revision before updating sibling threads (Prarit Bhargava) [1568249]
-- [x86] microcode: Get rid of struct apply_microcode_ctx (Prarit Bhargava) [1568249]
-- [x86] cpu: Add a microcode loader callback (Prarit Bhargava) [1568249]
-- [x86] microcode: Propagate return value from updating functions (Prarit Bhargava) [1568249]
-- [x86] microcode/amd: Change load_microcode_amd()'s param to bool to fix preemptibility bug (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Add a helper which gives the microcode revision (Prarit Bhargava) [1568249]
-- [x86] cpu: Add native CPUID variants returning a single datum (Prarit Bhargava) [1568249]
-- [x86] microcode/amd: Move private inlines to .c and mark local functions static (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Simplify generic_load_microcode() (Prarit Bhargava) [1568249]
-- [x86] microcode/intel: Do not issue microcode updates messages on each CPU (Prarit Bhargava) [1568249]
-
-* Thu May 17 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-889.el7]
-- [netdrv] sfc: fix flow type handling for RSS filters (Jarod Wilson) [1547443]
-- [netdrv] sfc: protect list of RSS contexts under a mutex (Jarod Wilson) [1547443]
-- [netdrv] sfc: return a better error if filter insertion collides with MC reboot (Jarod Wilson) [1547443]
-- [netdrv] sfc: use a semaphore to lock farch filters too (Jarod Wilson) [1547443]
-- [netdrv] sfc: give ef10 its own rwsem in the filter table instead of filter_lock (Jarod Wilson) [1547443]
-- [netdrv] sfc: replace asynchronous filter operations (Jarod Wilson) [1547443]
-- [netdrv] sfc: Use octal not symbolic permissions (Jarod Wilson) [1547443]
-- [netdrv] sfc: support FEC configuration through ethtool (Jarod Wilson) [1547443]
-- [netdrv] sfc: update MCDI protocol headers (Jarod Wilson) [1547443]
-- [netdrv] sfc: support RSS spreading of ethtool ntuple filters (Jarod Wilson) [1547443]
-- [netdrv] sfc: falcon: remove duplicated bit-wise or of LOOPBACK_SGMII (Jarod Wilson) [1547443]
-- [netdrv] sfc: mark some unexported symbols as static (Jarod Wilson) [1547443]
-- [netdrv] sfc: add suffix to large constant in ptp (Jarod Wilson) [1547443]
-- [netdrv] sfc: support Medford2 frequency adjustment format (Jarod Wilson) [1547443]
-- [netdrv] sfc: support second + quarter ns time format for receive datapath (Jarod Wilson) [1547443]
-- [netdrv] sfc: support separate PTP and general timestamping (Jarod Wilson) [1547443]
-- [netdrv] sfc: simplify RX datapath timestamping (Jarod Wilson) [1547443]
-- [netdrv] sfc: only advertise TX timestamping if we have the license for it (Jarod Wilson) [1547443]
-- [netdrv] sfc: on 8000 series use TX queues for TX timestamps (Jarod Wilson) [1547443]
-- [netdrv] sfc: MAC TX timestamp handling on the 8000 series (Jarod Wilson) [1547443]
-- [netdrv] sfc: only enable TX timestamping if the adapter is licensed for it (Jarod Wilson) [1547443]
-- [netdrv] sfc: use main datapath for HW timestamps if available (Jarod Wilson) [1547443]
-- [netdrv] sfc: add function to determine which TX timestamping method to use (Jarod Wilson) [1547443]
-- [netdrv] sfc: handle TX timestamps in the normal data path (Jarod Wilson) [1547443]
-- [netdrv] sfc: remove tx and MCDI handling from NAPI budget consideration (Jarod Wilson) [1547443]
-- [netdrv] mdio: add mdio45_ethtool_ksettings_get (Jarod Wilson) [1547443]
-- [netdrv] sfc: add bits for 25/50/100G supported/advertised speeds (Jarod Wilson) [1547443]
-- [netdrv] sfc: support the ethtool ksettings API properly so that 25/50/100G works (Jarod Wilson) [1547443]
-- [netdrv] sfc: basic MCDI mapping of 25/50/100G link speeds (Jarod Wilson) [1547443]
-- [netdrv] sfc: expose CTPIO stats on NICs that support them (Jarod Wilson) [1547443]
-- [netdrv] sfc: expose FEC stats on Medford2 (Jarod Wilson) [1547443]
-- [netdrv] sfc: support variable number of MAC stats (Jarod Wilson) [1547443]
-- [netdrv] sfc: update MCDI protocol headers (Jarod Wilson) [1547443]
-- [netdrv] sfc: populate the timer reload field (Jarod Wilson) [1547443]
-- [netdrv] sfc: update EF10 register definitions (Jarod Wilson) [1547443]
-- [netdrv] sfc: improve PTP error reporting (Jarod Wilson) [1547443]
-- [netdrv] sfc: add Medford2 (SFC9250) PCI Device IDs (Jarod Wilson) [1547443]
-- [netdrv] sfc: support VI strides other than 8k (Jarod Wilson) [1547443]
-- [netdrv] sfc: make mem_bar a function rather than a constant (Jarod Wilson) [1547443]
-- [netdrv] sfc: pass valid pointers from efx_enqueue_unwind (Jarod Wilson) [1547443]
-- [netdrv] sfc: falcon: use new api ethtool_(get|set)_link_ksetting (Jarod Wilson) [1547443]
-- [netdrv] sfc: use new api ethtool_(get|set)_link_ksettings (Jarod Wilson) [1547443]
-- [netdrv] sfc: Track RPS flow IDs per channel instead of per function (Jarod Wilson) [1547443]
-- [netdrv] sfc: use flow dissector helpers for aRFS (Jarod Wilson) [1547443]
-- [netdrv] mlx4_core: Fix memory leak while delete slave's resources (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Fix mixed PFC and Global pause user control requests (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Include GID type when deleting GIDs from HW table under RoCE (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Fix corruption of RoCEv2 IPv4 GIDs (Erez Alfasi) [1520295]
-- [netdrv] ib/mlx4: Fix incorrectly releasing steerable UD QPs when have only ETH ports (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Align behavior of set ring size flow via ethtool (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Add support to RSS hash for inner headers (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Change default QoS settings (Erez Alfasi) [1520295]
-- [netdrv] mlx4_core: Cleanup FMR unmapping flow (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: RX csum, reorder branches (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: RX csum, remove redundant branches and checks (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Remove unused ibpd parameter (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Potential buffer overflow in _mlx4_set_path() (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Fix mlx4_ib_alloc_mr error flow (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Add CQ moderation capability to query_device (Erez Alfasi) [1520295 1520339]
-- [infiniband] ib/mlx4: Exposing modify CQ callback to uverbs layer (Erez Alfasi) [1520295]
-- [netdrv] mlx4: Use Kconfig flag to remove support of old gen2 Mellanox devices (Erez Alfasi) [1520295]
-- [netdrv] mlx4: convert mlx4_srq.refcount from atomic_t to refcount_t (Erez Alfasi) [1520295]
-- [netdrv] mlx4: convert mlx4_qp.refcount from atomic_t to refcount_t (Erez Alfasi) [1520295]
-- [netdrv] mlx4: convert mlx4_cq.refcount from atomic_t to refcount_t (Erez Alfasi) [1520295]
-- [infiniband] ib/mlx4: Suppress gcc 7 fall-through complaints (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: XDP_TX, assign constant values of TX descs on ring creaion (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Obsolete call to generic write_desc in XDP xmit flow (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Replace netdev parameter with priv in XDP xmit function (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Increase number of default RX rings (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Limit the number of RX rings (Erez Alfasi) [1520295]
-- [netdrv] mlx4_en: Limit the number of TX rings (Erez Alfasi) [1520295]
-- [netdrv] mlx4: use setup_timer() helper (Erez Alfasi) [1520295]
-- [netdrv] mlx4: add XDP missing code (Erez Alfasi) [1563806]
-- [kernel] ib/mlx5: Respect new UMR capabilities (Alaa Hleihel) [1520297 1573661]
-- [infiniband] ib/mlx5: Enable ECN capable bits for UD RoCE v2 QPs (Alaa Hleihel) [1520297 1573661]
-- [netdrv] mlx5e: Sync netdev vxlan ports at open (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Avoid using the ipv6 stub in the TC offload neigh update path (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix memory usage issues in offloading TC flows (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix traffic being dropped on VF representor (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Verify coalescing parameters in range (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Make eswitch support to depend on switchdev (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Use 32 bits to store VF representor SQ number (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Don't override vport admin link state in switchdev mode (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Don't clean uninitialized UMR resources (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Fix cleanup order on unload (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Fix crash while accessing garbage pointer and freed memory (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Fix integer overflows in mlx5_ib_create_srq (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Fix out-of-bounds read in create_raw_packet_qp_rq (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Fix integer overflow while resizing CQ (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Fix an error code in __mlx5_ib_modify_qp() (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: When not in dual port RoCE mode, use provided port as native (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx: Set slid to zero in Ethernet completion struct (Alaa Hleihel) [1520297]
-- [netdrv] net, ib/mlx5: Raise fatal IB event when sys error occurs (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Avoid passing an invalid QP type to firmware (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Fix incorrect size of klms in the memory region (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix error handling when adding flow rules (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Fix drop counters use before creation (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Add header re-write to the checks for conflicting actions (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Use 128B cacheline size for 128B or larger cachelines (Alaa Hleihel) [1554070 1520297]
-- [netdrv] mlx5e: Specify numa node when allocating drop rq (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Return error if prio is specified when offloading eswitch vlan push (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Address static checker warnings on non-constant initializers (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Verify inline header size do not exceed SKB linear size (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix loopback self test when GRO is off (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix TCP checksum in LRO buffers (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: increase async EQ to avoid EQ overrun (Alaa Hleihel) [1520297]
-- [kernel] mlx5: fix mlx5_get_vector_affinity to start from completion vector 0 (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: IPoIB, Fix copy-paste bug in flow steering refactoring (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Avoid memory leak in case of XRCD dealloc failure (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add likely to the common RX checksum flow (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Extend the stats group API to have update_stats() (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Merge per priority stats groups (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add per-channel counters infrastructure, use it upon TX timeout (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Poll event queue upon TX timeout before performing full channels recovery (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add Event Queue meta data info for TX timeout logs (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Print delta since last transmit per SQ upon TX timeout (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Set hairpin queue size (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Enable setting hairpin queue size (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add RSS support for hairpin (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Vectorize the low level core hairpin object (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Enlarge the NIC TC offload steering prio to support two levels (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Refactor RSS related objects and code (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Set per priority hairpin pairs (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Use vhca id as the hairpin peer identifier (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Remove redundant allocation warning print (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix trailing semicolon (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Mmap the HCA's clock info to user-space (Alaa Hleihel) [1520297]
-- [uapi] mlx5e: Add clock info page to mlx5 core devices (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: remove redundant assignment of mdev (Alaa Hleihel) [1520297]
-- [kernel] dim: Fix int overflow (Alaa Hleihel) [1520297]
-- [kernel] dim: use struct net_dim_sample as arg to net_dim (Alaa Hleihel) [1520297]
-- [kernel] mlx5e: Move dynamic interrupt coalescing code to linux (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Change Mellanox references in DIM code (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Move generic functions to new file (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Move AM logic enums (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Remove rq references in mlx5e_rx_am (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Move interrupt moderation forward declarations (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Move interrupt moderation structs to new file (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Remove redundant checks in set_ringparam (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: E-switch, Add steering drop counters (Alaa Hleihel) [1520297 1467098]
-- [netdrv] mlx5e: IPoIB, Fix spelling mistake "functionts" -> "functions" (Alaa Hleihel) [1520334 1520297]
-- [netdrv] mlx5e: IPoIB, Add ethtool support to get child time stamping parameters (Alaa Hleihel) [1520334 1520297]
-- [netdrv] mlx5e: IPoIB, Add PTP ioctl support for child interface (Alaa Hleihel) [1520334 1520297]
-- [netdrv] mlx5e: IPoIB, Use correct timestamp in child receive flow (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Support offloading TC NIC hairpin flows (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Basic setup of hairpin object (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Hairpin pair core object setup (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Add hairpin definitions to the FW API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Replace WARN_ONCE with netdev_WARN_ONCE (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Set num_vhca_ports capability (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Don't advertise RAW QP support in dual port mode (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Route MADs for dual port RoCE (Alaa Hleihel) [1520297]
-- [kernel] net, ib/mlx5: Change set_roce_gid to take a port number (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Update counter implementation for dual port RoCE (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Change debugfs to have per port contents (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Implement dual port functionality in query routines (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move IB event processing onto a workqueue (Alaa Hleihel) [1520297]
-- [rdma] net, ib/mlx5: Manage port association for multiport RoCE (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Make netdev notifications multiport capable (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Reduce the use of num_port capability (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Set software owner ID during init HCA (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Fix race for multiple RoCE enable (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Add support for DC target QP (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Add support for DC Initiator QP (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Handle type IB_QPT_DRIVER when creating a QP (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Enable DC transport (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Add DCT command interface (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move locks initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move loopback initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move hardware counters initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move ODP initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Move RoCE/ETH initialization to the corresponding stage (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Create profile infrastructure to add and remove stages (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Separate ingress/egress namespaces for each vport (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix ingress/egress naming mistake (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: E-Switch, Use the name of static array instead of its address (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Enable QP creation with a given blue flame index (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Expose dynamic mmap allocation (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Extend UAR stuff to support dynamic allocation (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Report inner RSS capability (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Create a dedicated send to vport rule deletion function (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Move mlx5e only logic outside E-Switch (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Refactor load/unload of representors (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: E-Switch, Refactor vport representors initialization (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: revisit -Wmaybe-uninitialized warning (Alaa Hleihel) [1520297]
-- [infiniband] rdma/mlx5: Fix out-of-bound access while querying AH (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Remove timestamp set from netdevice open flow (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Update ptp_clock_event foreach PPS event (Alaa Hleihel) [1554076 1520297]
-- [netdrv] mlx5e: Don't override netdev features field unless in error flow (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Check support before TC swap in ETS init (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add error print in ETS init (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Keep updating ethtool statistics when the interface is down (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix error handling in load one (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix mlx5_get_uars_page to return error code (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix memory leak in bad flow of mlx5_alloc_irq_vectors (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Fix get vector affinity helper function (Alaa Hleihel) [1520297]
-- [netdrv] net, ib/mlx5: Don't disable local loopback multicast traffic when needed (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Fix congestion counters in LAG mode (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Fix misspelling in the error message and comment (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix defaulting RX ring size when not needed (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Fix features check of IPv6 traffic (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Fix rate limit packet pacing naming and struct (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: FPGA, return -EINVAL if size is zero (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Add CQ moderation capability to query_device (Alaa Hleihel) [1520297 1520337]
-- [kernel] ib/mlx5: Exposing modify CQ callback to uverbs layer (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Fix ABI alignment to 64 bit (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Add PCI write end padding support (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: CHECKSUM_COMPLETE offload for VLAN/QinQ packets (Alaa Hleihel) [1520297 1464870]
-- [netdrv] mlx5e: Add VLAN offloads statistics (Alaa Hleihel) [1520297 1464870]
-- [kernel] mlx5e: Add 802.1ad VLAN insertion support (Alaa Hleihel) [1520297 1464870]
-- [netdrv] mlx5e: Add 802.1ad VLAN filter steering rules (Alaa Hleihel) [1520297 1464870]
-- [netdrv] mlx5e: Declare bitmap using kernel macro (Alaa Hleihel) [1520297 1464870]
-- [netdrv] mlx5e: Enable CQE based moderation on TX CQ (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: IPoIB, Add inner TTC table to IPoIB flow steering (Alaa Hleihel) [1520334 1520297]
-- [netdrv] mlx5: Initialize destination_flow struct to 0 (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Enlarge the NIC TC offload table size (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: DCBNL, Add debug messages log (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Add support for ethtool msglvl support (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Support DSCP trust state to Ethernet's IP packet on SQ (Alaa Hleihel) [1520297 1460717]
-- [netdrv] mlx5e: Add dcbnl dscp to priority support (Alaa Hleihel) [1520297]
-- [kernel] mlx5: QPTS and QPDPM register firmware command support (Alaa Hleihel) [1520297]
-- [kernel] mlx5: Add MLX5_SET16 and MLX5_GET16 (Alaa Hleihel) [1520297]
-- [kernel] mlx5: QCAM register firmware command support (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch channels counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch ipsec counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch pme counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch per prio pfc counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch per prio traffic counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch pcie counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch ethernet extended counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch physical statistical counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch RFC 2819 counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch RFC 2863 counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch IEEE 802.3 counters to use stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch vport counters to use the stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Switch Q counters to use the stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mlx5e: Introduce stats group API (Alaa Hleihel) [1520297]
-- [netdrv] mellanox: Convert timers to use timer_setup() (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Add support for RSS on the inner packet (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Add tunneling offloads support (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Update tunnel offloads bits (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Support padded 128B CQE feature (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Support 128B CQE compression feature (Alaa Hleihel) [1520297]
-- [kernel] ib/mlx5: Add 128B CQE compression and padding HW bits (Alaa Hleihel) [1520297]
-- [uapi] ib/mlx5: Allow creation of a multi-packet RQ (Alaa Hleihel) [1520297 1386762]
-- [uapi] ib/mlx5: Expose multi-packet RQ capabilities (Alaa Hleihel) [1520297 1386762]
-- [netdrv] mlx5: convert fs_node.refcount from atomic_t to refcount_t (Alaa Hleihel) [1520297]
-- [kernel] mlx5: convert mlx5_cq.refcount from atomic_t to refcount_t (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Use ARRAY_SIZE (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Remove a set-but-not-used variable (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5: Suppress gcc 7 fall-through complaints (Alaa Hleihel) [1520297]
-- [infiniband] ib/mlx5:: pr_err() and mlx5_ib_dbg() strings should end with newlines (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: Remove redundant unlikely() (Alaa Hleihel) [1520297]
-- [netdrv] mlx5: use setup_timer() helper (Alaa Hleihel) [1520297]
-- [net] af_iucv: enable control sends in case of SEND_SHUTDOWN (Hendrik Brueckner) [1559003]
-- [net] core: Add drop counters to VF statistics (Ivan Vecera) [1574474]
-- [net] dcb: Add dscp to priority selector type (Ivan Vecera) [1574474]
-- [net] ipv6: fix a potential use after free in ip6_offload.c (Sabrina Dubroca) [1569898]
-- [net] ipv6: send netlink notifications for manually configured addresses (Lorenzo Bianconi) [1484434]
-- [net] documentation: ip-sysctl.txt: clarify disable_ipv6 (Lorenzo Bianconi) [1550648]
-- [net] ipv6: do not set routes if disable_ipv6 has been enabled (Lorenzo Bianconi) [1550648]
-- [net] sctp: handle two v4 addrs comparison in sctp_inet6_cmp_addr (Xin Long) [1564850]
-- [net] sctp: do not check port in sctp_inet6_cmp_addr (Xin Long) [1564850]
-- [net] team: fix netconsole setup over team (Xin Long) [1567270]
-- [net] dccp: check sk for closed state in dccp_sendmsg() (Stefano Brivio) [1571268] {CVE-2018-1130}
-- [net] ipv6: dccp: add missing bind_conflict to dccp_ipv6_mapped (Stefano Brivio) [1571268] {CVE-2018-1130}
-- [net] ethtool: extend RXNFC API to support RSS spreading of filter matches (Ivan Vecera) [1563726]
-- [net] bpf: add bpf_prog_sub (Neil Horman) [1553106]
-- [net] bpf: rename netdev_xdp to netdev_bpf (Neil Horman) [1553106]
-- [net] xdp: base API for new XDP rx-queue info concept (Neil Horman) [1553106]
-- [net] bpf: rename ndo_xdp to ndo_bpf (Neil Horman) [1553106]
-- [net] team: move dev_mc_sync after master_upper_dev_link in team_port_add (Xin Long) [1558195]
-- [net] team: Fix double free in error path (Xin Long) [1558195]
-- [net] team: fall back to hash if table entry is empty (Xin Long) [1558195]
-- [net] team: use a larger struct for mac address (Xin Long) [1558195]
-- [net] ipv6: Reflect MTU changes on PMTU of exceptions for MTU-less routes (Stefano Brivio) [1541270]
-
-* Wed May 16 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-888.el7]
-- [kernel] perf/core: Optimize perf_rotate_context() event scheduling (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix tree based event rotation (Jiri Olsa) [1482996]
-- [kernel] perf/core: Simpify perf_event_groups_for_each() (Jiri Olsa) [1482996]
-- [kernel] perf/core: Optimize ctx_sched_out() (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix event schedule order (Jiri Olsa) [1482996]
-- [kernel] perf/core: Cleanup the rb-tree code (Jiri Olsa) [1482996]
-- [kernel] perf/cor: Use RB trees for pinned/flexible groups (Jiri Olsa) [1482996]
-- [kernel] perf/core: Rewrite event timekeeping (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix perf_event_read() (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix crash in perf_event_read() (Jiri Olsa) [1482996]
-- [kernel] perf/bpf: extend the perf_event_read_local() interface, a.k.a. "bpf: perf event change needed for subsequent bpf helpers" (Jiri Olsa) [1482996]
-- [kernel] perf, bpf: Add BPF support to all perf_event types (Jiri Olsa) [1482996]
-- [kernel] perf/core: Fix perf_output_read_group() (Jiri Olsa) [1482996]
-- [tools] perf test: Adapt test case record+probe_libc_inet_pton.sh for s390 (Jiri Olsa) [1570591]
-- [tools] perf test: Fix exit code for record+probe_libc_inet_pton.sh (Jiri Olsa) [1570591]
-- [tools] perf tests: Rename trace+probe_libc_inet_pton to record+probe_libc_inet_pton (Jiri Olsa) [1570591]
-- [tools] perf tests: Switch trace+probe_libc_inet_pton to use record (Jiri Olsa) [1570591]
-- [tools] perf tests shell lib: Use a wildcard to remove the vfs_getname probe (Jiri Olsa) [1570591]
-- [tools] perf test: Fix test case inet_pton to accept inlines (Jiri Olsa) [1570591]
-- [tools] perf test: Fix test trace+probe_libc_inet_pton.sh for s390x (Jiri Olsa) [1570591]
-- [tools] perf test shell: Fix check open filename arg using 'perf trace' (Jiri Olsa) [1570591]
-- [tools] tools arch s390: Do not include header files from the kernel sources (Jiri Olsa) [1570591]
-- [tools] perf jvmti: Generate correct debug information for inlined code (Jiri Olsa) [1570591]
-- [tools] perf tools: Fix up build in hardened environments (Jiri Olsa) [1570591]
-- [tools] perf tools: Use shell function for perl cflags retrieval (Jiri Olsa) [1570591]
-- [tools] x86/decoder: Fix and update the opcodes map (Jiri Olsa) [1570591]
-- [tools] perf: Convert ACCESS_ONCE() to READ_ONCE() (Jiri Olsa) [1570591]
-- [tools] lib/traceevent/parse-filter.c: clean up clang build warning (Jiri Olsa) [1570591]
-- [tools] s390/perf: add perf register support for floating-point registers (Jiri Olsa) [1570591]
-- [tools] s390/perf: define common DWARF register string table (Jiri Olsa) [1570591]
-- [tools] s390/perf: add support for perf_regs and libdw (Jiri Olsa) [1570591]
-- [tools] s390/perf: add callback to perf to enable using AUX buffer (Jiri Olsa) [1570591]
-- [tools] perf intel-pt: Bring instruction decoder files into line with the kernel (Jiri Olsa) [1570591]
-- [tools] perf test: Fix test 21 for s390x (Jiri Olsa) [1570591]
-- [tools] perf bench numa: Fixup discontiguous/sparse numa nodes (Jiri Olsa) [1570591]
-- [tools] perf top: Use signal interface for SIGWINCH handler (Jiri Olsa) [1570591]
-- [tools] perf top: Fix window dimensions change handling (Jiri Olsa) [1570591]
-- [tools] perf top: Ignore kptr_restrict when not sampling the kernel (Jiri Olsa) [1570591]
-- [tools] perf record: Ignore kptr_restrict when not sampling the kernel (Jiri Olsa) [1570591]
-- [tools] perf report: Ignore kptr_restrict when not sampling the kernel (Jiri Olsa) [1570591]
-- [tools] perf evlist: Add helper to check if attr.exclude_kernel is set in all evsels (Jiri Olsa) [1570591]
-- [tools] perf test shell: Fix test case probe libc's inet_pton on s390x (Jiri Olsa) [1570591]
-- [tools] perf test shell: Fix check open filename arg using 'perf trace' on s390x (Jiri Olsa) [1570591]
-- [tools] perf annotate: Do not truncate instruction names at 6 chars (Jiri Olsa) [1570591]
-- [tools] perf help: Fix a bug during strstart() conversion (Jiri Olsa) [1570591]
-- [tools] perf machine: Guard against NULL in machine__exit() (Jiri Olsa) [1570591]
-- [tools] perf script: Fix --per-event-dump for auxtrace synth evsels (Jiri Olsa) [1570591]
-- [tools] perf evsel: Fix up leftover perf_evsel_stat usage via evsel->priv (Jiri Olsa) [1570591]
-- [tools] perf trace: Fix an exit code of trace__symbols_init (Jiri Olsa) [1570591]
-- [tools] perf record: Fix -c/-F options for cpu event aliases (Jiri Olsa) [1570591]
-- [tools] perf record: Generate PERF_RECORD_(MMAP, COMM, EXEC) with --delay (Jiri Olsa) [1570591]
-- [tools] perf evlist: Set the correct idx when adding dummy events (Jiri Olsa) [1570591]
-- [tools] perf srcline: Show correct function name for srcline of callchains (Jiri Olsa) [1570591]
-- [tools] perf srcline: Fix memory leak in addr2inlines() (Jiri Olsa) [1570591]
-- [tools] perf trace beauty: Implement pid_fd beautifier (Jiri Olsa) [1570591]
-- [tools] perf callchain: Fix double mapping al->addr for children without self period (Jiri Olsa) [1570591]
-- [tools] perf stat: Make --per-thread update shadow stats to show metrics (Jiri Olsa) [1570591]
-- [tools] perf stat: Move the shadow stats scale computation in perf_stat__update_shadow_stats (Jiri Olsa) [1570591]
-- [tools] perf tools: Add perf_data_file__write function (Jiri Olsa) [1570591]
-- [tools] perf tools: Add struct perf_data_file (Jiri Olsa) [1570591]
-- [tools] perf tools: Rename struct perf_data_file to perf_data (Jiri Olsa) [1570591]
-- [tools] perf script: Print information about per-event-dump files (Jiri Olsa) [1570591]
-- [tools] perf trace beauty prctl: Generate 'option' string table from kernel headers (Jiri Olsa) [1570591]
-- [tools] tools include uapi: Grab a copy of linux/prctl.h (Jiri Olsa) [1570591]
-- [tools] perf script: Allow creating per-event dump files (Jiri Olsa) [1570591]
-- [tools] perf evsel: Restore evsel->priv as a tool private area (Jiri Olsa) [1570591]
-- [tools] perf script: Use event_format__fprintf() (Jiri Olsa) [1570591]
-- [tools] perf script: Use pr_debug where appropriate (Jiri Olsa) [1570591]
-- [tools] perf script: Add a few missing conversions to fprintf style (Jiri Olsa) [1570591]
-- [tools] perf util: Enable handling of inlined frames by default (Jiri Olsa) [1570591]
-- [tools] perf report: Use srcline from callchain for hist entries (Jiri Olsa) [1570591]
-- [tools] perf report: Cache srclines for callchain nodes (Jiri Olsa) [1570591]
-- [tools] perf report: Cache failed lookups of inlined frames (Jiri Olsa) [1570591]
-- [tools] perf report: Properly handle branch count in match_chain() (Jiri Olsa) [1570591]
-- [tools] perf report: Compare symbol name for inlined frames when sorting (Jiri Olsa) [1570591]
-- [tools] perf callchain: Compare symbol name for inlined frames when matching (Jiri Olsa) [1570591]
-- [tools] perf script: Mark inlined frames and do not print DSO for them (Jiri Olsa) [1570591]
-- [tools] perf callchain: Mark inlined frames in output by " (inlined)" suffix (Jiri Olsa) [1570591]
-- [tools] perf report: Fall-back to function name comparison for -g srcline (Jiri Olsa) [1570591]
-- [tools] perf callchain: Create real callchain entries for inlined frames (Jiri Olsa) [1570591]
-- [tools] perf callchain: Refactor inline_list to store srcline string directly (Jiri Olsa) [1570591]
-- [tools] perf callchain: Refactor inline_list to operate on symbols (Jiri Olsa) [1570591]
-- [tools] perf callchain: Store srcline in callchain_cursor_node (Jiri Olsa) [1570591]
-- [tools] perf report: Remove code to handle inline frames from browsers (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add Goldmont Plus V1 event file (Jiri Olsa) [1570591]
-- [tools] perf kmem: Perform some cleanup if '--time' is given an invalid value (Jiri Olsa) [1570591]
-- [tools] perf script: Fix error handling path (Jiri Olsa) [1570591]
-- [tools] perf script: Use fprintf like printing uniformly (Jiri Olsa) [1570591]
-- [tools] perf tools: Introduce binary__fprintf() (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Fix incorrect cmask syntax for some Intel metrics (Jiri Olsa) [1570591]
-- [tools] perf tools: Do not check ABI headers in a detached tarball build (Jiri Olsa) [1570591]
-- [tools] perf annotate: Remove arch::cpuid_parse callback (Jiri Olsa) [1570591]
-- [tools] perf list: Fix group description in the man page (Jiri Olsa) [1570591]
-- [tools] perf mmap: Adopt push method from builtin-record.c (Jiri Olsa) [1570591]
-- [tools] perf record: Make record__mmap_read generic (Jiri Olsa) [1570591]
-- [tools] perf mmap: Move perf_mmap and methods to separate mmap.(ch) files (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Skylake Server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Skylake (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Sandy Bridge (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for JakeTown (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for IvyTown (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for IvyBridge (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Haswell Server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Haswell (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Broadwell Server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Update JSON metrics for Broadwell (Jiri Olsa) [1570591]
-- [tools] perf top: Add option to set the number of thread for event synthesize (Jiri Olsa) [1570591]
-- [tools] perf top: Implement multithreading for perf_event__synthesize_threads (Jiri Olsa) [1570591]
-- [tools] perf tools: Lock to protect comm_str rb tree (Jiri Olsa) [1570591]
-- [tools] perf tools: Lock to protect namespaces and comm list (Jiri Olsa) [1570591]
-- [tools] perf tools: Provide mutex wrappers for pthreads rwlocks (Jiri Olsa) [1570591]
-- [tools] perf trace beauty madvise: Generate 'behavior' string table from kernel headers (Jiri Olsa) [1570591]
-- [tools] perf tests: Remove Intel CQM perf test (Jiri Olsa) [1570591]
-- [tools] perf stat: Fix adding multiple event groups (Jiri Olsa) [1570591]
-- [tools] perf tools: Fix leaking rec_argv in error cases (Jiri Olsa) [1570591]
-- [tools] perf pmu: Improve error messages for missing PMUs (Jiri Olsa) [1570591]
-- [tools] perf machine: Optimize a bit the machine__findnew_thread() methods (Jiri Olsa) [1570591]
-- [tools] perf machine: Use hashtable for machine threads (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Skylake server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Broadwell DE (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Broadwell Server (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Haswell EP (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Ivy Town (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Haswell (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Ivy Bridge (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Sandy Bridge EP (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Sandy Bridge (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Skylake (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Add JSON metrics for Broadwell (Jiri Olsa) [1570591]
-- [tools] perf stat: Fall weak group back even for EBADF (Jiri Olsa) [1570591]
-- [tools] perf tools: Make copyfile_offset() static (Jiri Olsa) [1570591]
-- [tools] perf config: Allow creating empty config set for config file autogeneration (Jiri Olsa) [1570591]
-- [tools] perf config: Write a config file just once (Jiri Olsa) [1570591]
-- [tools] perf tools: Use scandir() to replace readdir() (Jiri Olsa) [1570591]
-- [tools] perf ui progress: Add size info into progress bar (Jiri Olsa) [1570591]
-- [tools] perf ui progress: Add ui specific init function (Jiri Olsa) [1570591]
-- [tools] perf tools: Add python-clean target (Jiri Olsa) [1570591]
-- [tools] perf script: Support user regs (Jiri Olsa) [1570591]
-- [tools] perf record: Support direct --user-regs arguments (Jiri Olsa) [1570591]
-- [tools] perf stat: Update walltime_nsecs_stats in interval mode (Jiri Olsa) [1570591]
-- [tools] perf stat: Hide internal duration_time counter (Jiri Olsa) [1570591]
-- [tools] perf stat: Support duration_time for metrics (Jiri Olsa) [1570591]
-- [tools] perf stat: Don't use ctx for saved values lookup (Jiri Olsa) [1570591]
-- [tools] perf list: Add metric groups to perf list (Jiri Olsa) [1570591]
-- [tools] perf stat: Support JSON metrics in perf stat (Jiri Olsa) [1570591]
-- [tools] perf stat: Print generic metric header even for failed expressions (Jiri Olsa) [1570591]
-- [tools] perf stat: Factor out generic metric printing (Jiri Olsa) [1570591]
-- [tools] perf vendor events: Support metric_group and no event name in JSON parser (Jiri Olsa) [1570591]
-- [tools] perf tools: Support weak groups in 'perf stat' (Jiri Olsa) [1570591]
-- [tools] perf sched timehist: Add pid and tid options (Jiri Olsa) [1570591]
-- [x86] perf/x86/intel: Plug memory leak in intel_pmu_init() (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix ctx::mutex deadlock (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix another perf, trace, cpuhp lock inversion (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix lock inversion between perf, trace, cpuhp (Jiri Olsa) [1570591]
-- [x86] perf/x86/rapl: Fix Haswell and Broadwell server RAPL event (Jiri Olsa) [1570591]
-- [uapi] perf/core: Add PERF_AUX_FLAG_COLLISION to report colliding samples (Jiri Olsa) [1570591]
-- [kernel] perf/core: Export AUX buffer helpers to modules (Jiri Olsa) [1570591]
-- [kernel] perf/core: Remove wrong barrier (Jiri Olsa) [1570591]
-- [kernel] perf/core: Make sure to update ctx time before using it (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix __perf_read_group_add() locking (Jiri Olsa) [1570591]
-- [kernel] perf/core: Update ctx time before detaching events (Jiri Olsa) [1570591]
-- [kernel] perf/core: Fix perf_event_read_value() locking (Jiri Olsa) [1570591]
-- [x86] perf/x86: Enable free running PEBS for REGS_USER/INTR (Jiri Olsa) [1570591]
-- [x86] perf/x86/intel: Hide TSX events when RTM is not supported (Jiri Olsa) [1570591]
-
-* Mon May 14 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-887.el7]
-- [fs] nfs41: do not return ENOMEM on LAYOUTUNAVAILABLE (Scott Mayhew) [1574002]
-- [fs] vfs: Return -ENXIO for negative SEEK_HOLE / SEEK_DATA offsets (Benjamin Coddington) [1572522]
-- [fs] nfs: Set FATTR4_WORD0_TYPE for . and .. entries (Scott Mayhew) [1562236]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Increase timeout by 1 sec for non-RAID fastpath IOs (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Use zeroing memory allocator than allocator/memset (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: fix selection of reply queue (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: switch to pci_alloc_irq_vectors (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: fix error handle in megasas_probe_one (Tomas Henzl) [1513838]
-- [scsi] megaraid: Use dma_pool_zalloc() (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: NVMe passthrough command support (Tomas Henzl) [1513838]
-- [scsi] megaraid: use ktime_get_real for firmware time (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: re-work DCMD refire code (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Expose fw_cmds_outstanding through sysfs (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Selectively apply stream detection based on IO type (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Update LD map after populating drv_map driver map copy (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Use megasas_wait_for_adapter_operational to detect controller state in IOCTL path (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Avoid firing DCMDs while OCR is in progress (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: unload flag should be set after scsi_remove_host is called (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Error handling for invalid ldcount provided by firmware in RAID map (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Reset ldio_outstanding in megasas_resume (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Return the DCMD status from megasas_get_seq_num (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: memset IOC INIT frame using correct size (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: zero out IOC INIT and stream detection memory (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: fix spelling mistake: "thershold" -> "threshold" (Tomas Henzl) [1513838]
-- [scsi] megaraid: Remove redundant code in megasas_alloc_cmds (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Add support for 64bit consistent DMA (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Do not limit queue_depth to 1k in non-RDPQ mode (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Retry with reduced queue depth when alloc fails for higher QD (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Incorrect processing of IOCTL frames for SMP/STP commands (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Move controller memory allocations and DMA mask settings from probe to megasas_init_fw (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Move initialization of instance parameters inside newly created function megasas_init_ctrl_params (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: remove instance->ctrl_info (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Pre-allocate frequently used DMA buffers (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Create separate functions for allocating and freeing controller DMA buffers (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Create separate functions to allocate ctrl memory (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: reduce size of fusion_context and use kmalloc for allocation (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: replace is_ventura with adapter_type checks (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Remove redundant checks for ctrl_context (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: replace instance->ctrl_context checks with instance->adapter_type (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: Add support for Crusader controllers (Tomas Henzl) [1513838]
-- [scsi] megaraid_sas: use adapter_type for all gen controllers (Tomas Henzl) [1513838]
-- [scsi] hpsa: cleanup whitespace (Joseph Szczypek) [1524691]
-- [scsi] hpsa: Use DEVICE_ATTR_RO (Joseph Szczypek) [1524691]
-- [scsi] hpsa: fix selection of reply queue (Joseph Szczypek) [1524691]
-- [scsi] hpsa: use designated initializers (Joseph Szczypek) [1524691]
-- [scsi] hpsa: free irq on q indexed by h->intr_mode and not i (Joseph Szczypek) [1524691]
-- [scsi] hpsa: use pci_alloc_irq_vectors and automatic irq affinity (Joseph Szczypek) [1524691]
-- [scsi] hpsa: Use vsnprintf extension phN (Joseph Szczypek) [1524691]
-- [scsi] hpsa: drop unneeded newline (Joseph Szczypek) [1524691]
-- [scsi] hpsa: remove an unnecessary NULL check (Joseph Szczypek) [1524691]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1524691]
-- [scsi] hpsa: add enclosure logical identifier (Joseph Szczypek) [1524691]
-- [scsi] hpsa: reduce warning messages on device removal (Joseph Szczypek) [1524691]
-- [scsi] hpsa: update queue depth for externals (Joseph Szczypek) [1524691]
-- [scsi] hpsa: update discovery polling (Joseph Szczypek) [1524691]
-- [scsi] hpsa: add controller checkpoint (Joseph Szczypek) [1524691]
-- [scsi] hpsa: clear tmpdevice in scan thread (Joseph Szczypek) [1524691]
-- [scsi] hpsa: cleanup sas_phy structures in sysfs when unloading (Joseph Szczypek) [1524691]
-- [scsi] hpsa: destroy sas transport properties before scsi_host (Joseph Szczypek) [1524691]
-- [scsi] hpsa: Fix configured_logical_drive_count check (Joseph Szczypek) [1524691]
-- [scsi] hpsa: remove the smp_handler stub (Joseph Szczypek) [1524691]
-- [scsi] csiostor: remove redundant assignment to pointer 'ln' (Arjun Vynipadath) [1523193]
-- [scsi] csiostor: fix spelling mistake: Couldnt -> Couldn't (Arjun Vynipadath) [1523193]
-- [scsi] csiostor: remove unneeded DRIVER_LICENSE #define (Arjun Vynipadath) [1523193]
-- [scsi] csiostor: Convert timers to use timer_setup() (Arjun Vynipadath) [1523193]
-- [linux] libata: enable host-wide tags (Ewan Milne) [1491014]
-- [ata] libata: remove ATA_FLAG_LOWTAG (Ewan Milne) [1491014]
-- [ata] Add a new flag to destinguish sas controller (Ewan Milne) [1491014]
-- [ata] libata: make sata_sil24 use fifo tag allocator (Ewan Milne) [1491014]
-- [ata] libata: move sas ata tag allocation to libata-scsi.c (Ewan Milne) [1491014]
-- [ata] libata: use blk taging (Ewan Milne) [1491014]
-- [nvme] Use admin command effects for admin commands (David Milburn) [1515584]
-- [nvme] nvmet: fix space padding in serial number (David Milburn) [1515584]
-- [nvme] nvme-pci: Remove unused queue parameter (David Milburn) [1515584]
-- [nvme] nvme-pci: Skip queue deletion if there are no queues (David Milburn) [1515584]
-- [nvme] target: fix buffer overflow (David Milburn) [1515584]
-- [nvme] don't send keep-alives to the discovery controller (David Milburn) [1515584]
-- [nvme] unexport nvme_start_keep_alive (David Milburn) [1515584]
-- [nvme] nvme-loop: fix kernel oops in case of unhandled command (David Milburn) [1560383 1515584]
-- [nvme] enforce 64bit offset for nvme_get_log_ext fn (David Milburn) [1515584]
-- [nvme] make nvme_get_log_ext non-static (David Milburn) [1515584]
-- [nvme] nvmet: constify struct nvmet_fabrics_ops (David Milburn) [1515584]
-- [nvme] nvmet: refactor configfs transport type handling (David Milburn) [1515584]
-- [nvme] nvmet: move device_uuid configfs attr definition to suitable place (David Milburn) [1515584]
-- [nvme] Add .stop_ctrl to nvme ctrl ops (David Milburn) [1515584]
-- [nvme] nvme-rdma: Allow DELETING state change failure in error_recovery (David Milburn) [1515584]
-- [nvme] nvme-rdma: Don't flush delete_wq by default during remove_one (David Milburn) [1515584]
-- [nvme] nvmet-rdma: Don't flush system_wq by default during remove_one (David Milburn) [1515584]
-- [nvme] nvmet-rdma: Fix use after free in nvmet_rdma_cm_handler() (David Milburn) [1515584]
-- [nvme] nvmet-rdma: Remove unused queue state (David Milburn) [1515584]
-- [nvme] nvmet_fc: prevent new io rqsts in possible isr completions (David Milburn) [1515584]
-- [nvme] nvme_fc: on remoteport reuse, set new nport_id and role (David Milburn) [1515584]
-- [nvme] nvme_fc: fix abort race on teardown with lld reject (David Milburn) [1515584]
-- [nvme] nvme_fc: io timeout should defer abort to ctrl reset (David Milburn) [1515584]
-- [nvme] nvme_fc: fix ctrl create failures racing with workq items (David Milburn) [1515584]
-- [nvme] nvme-pci: disable APST for Samsung NVMe SSD 960 EVO + ASUS PRIME Z370-A (David Milburn) [1515584]
-- [nvme] centralize ctrl removal prints (David Milburn) [1515584]
-- [nvme] nvme-pci: Add .get_address ctrl callback (David Milburn) [1515584]
-- [nvme] implement log page low/high offset and dwords (David Milburn) [1515584]
-- [nvme] change namespaces_mutext to namespaces_rwsem (David Milburn) [1515584]
-- [nvme] fix the dangerous reference of namespaces list (David Milburn) [1515584]
-- [nvme] nvme-pci: quiesce IO queues prior to disabling device HMB accesses (David Milburn) [1515584]
-- [nvme] use define instead of magic value for identify size (David Milburn) [1515584]
-- [nvme] nvme_fc: rework sqsize handling (David Milburn) [1515584]
-- [nvme] nvme-fabrics: Ignore nr_io_queues option for discovery controllers (David Milburn) [1515584]
-- [nvme] nvme-pci: Fix nvme queue cleanup if IRQ setup fails (David Milburn) [1515584]
-- [nvme] nvme-fabrics: don't check for non-NULL module in nvmf_register_transport (David Milburn) [1515584]
-- [nvme] nvme-rdma: fix sysfs invoked reset_ctrl error flow (David Milburn) [1515584]
-- [nvme] nvme-pci: Fix timeouts in connecting state (David Milburn) [1515584]
-- [nvme] nvme-pci: Remap CMB SQ entries on every controller reset (David Milburn) [1515584]
-- [nvme] fix the deadlock in nvme_update_formats (David Milburn) [1515584]
-- [nvme] Don't use a stack buffer for keep-alive command (David Milburn) [1515584]
-- [nvme] nvme_fc: cleanup io completion (David Milburn) [1515584]
-- [nvme] nvme_fc: correct abort race condition on resets (David Milburn) [1515584]
-- [nvme] delete NVME_CTRL_LIVE --> NVME_CTRL_CONNECTING transition (David Milburn) [1515584]
-- [nvme] nvme-rdma: use NVME_CTRL_CONNECTING state to mark init process (David Milburn) [1515584]
-- [nvme] rename NVME_CTRL_RECONNECTING state to NVME_CTRL_CONNECTING (David Milburn) [1515584]
-- [nvme] nvme-pci: introduce RECONNECTING state to mark initializing procedure (David Milburn) [1515584]
-- [nvme] nvme-rdma: remove redundant boolean for inline_data (David Milburn) [1515584]
-- [nvme] don't free uuid pointer before printing it (David Milburn) [1515584]
-- [nvme] nvme-pci: Suspend queues after deleting them (David Milburn) [1515584]
-- [nvme] nvme-pci: Fix queue double allocations (David Milburn) [1515584]
-- [nvme] nvme-pci: clean up SMBSZ bit definitions (David Milburn) [1515584]
-- [nvme] nvme-pci: clean up CMB initialization (David Milburn) [1515584]
-- [nvme] nvmet: release a ns reference in nvmet_req_uninit if needed (David Milburn) [1515584]
-- [nvme] nvme-fabrics: fix memory leak when parsing host ID option (David Milburn) [1515584]
-- [nvme] fix comment typos in nvme_create_io_queues (David Milburn) [1515584]
-- [nvme] host delete_work and reset_work on separate workqueues (David Milburn) [1515584]
-- [nvme] nvme-pci: allocate device queues storage space at probe (David Milburn) [1515584]
-- [nvme] allocate nvme_queue in correct node (David Milburn) [1515584]
-- [nvme] take refcount on transport module (David Milburn) [1515584]
-- [nvme] nvme-pci: fix NULL pointer reference in nvme_alloc_ns (David Milburn) [1515584]
-- [nvme] modify the debug level for setting shutdown timeout (David Milburn) [1515584]
-- [nvme] nvme-pci: don't open-code nvme_reset_ctrl (David Milburn) [1515584]
-- [nvme] nvmet: rearrange nvmet_ctrl_free() (David Milburn) [1515584]
-- [nvme] nvmet: fix error flow in nvmet_alloc_ctrl() (David Milburn) [1515584]
-- [nvme] nvme-pci: remove an unnecessary initialization in HMB code (David Milburn) [1515584]
-- [nvme] nvme-fabrics: protect against module unload during create_ctrl (David Milburn) [1515584]
-- [nvme] nvmet-fc: cleanup nvmet add_port/remove_port (David Milburn) [1515584]
-- [nvme] nvme_fcloop: refactor host/target io job access (David Milburn) [1515584]
-- [nvme] nvme_fcloop: rework to remove xxx_IN_ISR feature flags (David Milburn) [1515584]
-- [nvme] nvme_fcloop: disassocate local port structs (David Milburn) [1515584]
-- [nvme] nvme_fcloop: fix abort race condition (David Milburn) [1515584]
-- [nvme] nvmet: lower log level for each queue creation (David Milburn) [1515584]
-- [nvme] nvmet-rdma: lowering log level for chatty debug messages (David Milburn) [1515584]
-- [nvme] nvmet-rdma: removed queue cleanup from module exit (David Milburn) [1515584]
-- [s390] zcrypt: Fix wrong comparison leading to strange load balancing (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: Introduce QACT support for AP bus devices (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: Enable special header file flag for AU CPRP (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: CEX6S exploitation (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: externalize AP queue interrupt control (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: externalize AP config info query (Hendrik Brueckner) [1375258]
-- [s390] zcrypt: externalize test AP queue (Hendrik Brueckner) [1375258]
-- [s390] crypto: add s390 platform specific aes gcm support (Hendrik Brueckner) [1375263]
-- [s390] crypto: add inline assembly for KMA instruction to cpacf.h (Hendrik Brueckner) [1375263]
-- [s390] cpacf: Introduce kma instruction (Hendrik Brueckner) [1375263]
-- [s390] cpacf: query instructions use unique parameters for compatibility with KMA (Hendrik Brueckner) [1375263]
-
-* Fri May 11 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-886.el7]
-- [gpu] drm/nouveau: Fix deadlock in nv50_mstm_register_connector() (Lyude Paul) [1571927]
-- [netdrv] vmxnet3: segCnt can be 1 for LRO packets (Neil Horman) [1426680]
-- [netdrv] bnxt_en: Fix memory fault in bnxt_ethtool_init() (Jonathan Toppins) [1573936]
-- [uapi] input: Fix KEY_BRIGHTNESS_MIN definition (Prarit Bhargava) [1571274]
-- [acpi] acpi_pad: Fix memory leak in power saving threads (Lenny Szubowicz) [1542660]
-- [block] kyber: fix domain token leak during requeue (Ming Lei) [1548238]
-- [block] blk-mq: don't call io sched's .requeue_request when requeueing rq to ->dispatch (Ming Lei) [1548238]
-- [block] kyber: fix another domain token wait queue hang (Ming Lei) [1548238]
-- [block] kyber: fix hang on domain token wait queue (Ming Lei) [1548238]
-- [block] mq-deadline: add 'deadline' as a name alias (Ming Lei) [1548253]
-- [block] elevator: allow name aliases (Ming Lei) [1548253]
-- [block] elevator: mark parameter of elevator_aux_find() as const (Ming Lei) [1548253]
-- [block] elevator: move elevator_aux_find() to front of the file (Ming Lei) [1548253]
-- [block] blk-mq: quiesce queue before freeing queue (Ming Lei) [1548236]
-- [mm] hwpoison: disable memory error handling on 1GB hugepage (Aristeu Rozanski) [1525701]
-- [mm] hwpoison: call shake_page() after try_to_unmap() for mlocked page (Aristeu Rozanski) [1525701]
-- [mm] hwpoison: call shake_page() unconditionally (Aristeu Rozanski) [1525701]
-- [mm] madvise: pass return code of memory_failure() to userspace (Aristeu Rozanski) [1525701]
-- [mm] hwpoison: fix traversal of hugetlbfs pages to avoid printk flood (Aristeu Rozanski) [1525701]
-- [mm] hwpoison.c: fix held reference count after unpoisoning empty zero page (Aristeu Rozanski) [1525701]
-- [kernel] jump_label: Disable jump labels in __exit code (Josh Poimboeuf) [1541287]
-- [kernel] jump_label: Explicitly disable jump labels in __init code (Josh Poimboeuf) [1541287]
-- [kernel] sched: Enable SCHED_DEADLINE (Lauro Ramos Venancio) [1344565]
-- [s390] correct nospec auto detection init order (Hendrik Brueckner) [1558325]
-- [s390] add sysfs attributes for spectre (Hendrik Brueckner) [1558325]
-- [s390] report spectre mitigation via syslog (Hendrik Brueckner) [1558325]
-- [s390] add automatic detection of the spectre defense (Hendrik Brueckner) [1558325]
-- [s390] move nobp parameter functions to nospec-branch.c (Hendrik Brueckner) [1558325]
-- [s390] do not bypass BPENTER for interrupt system calls (Hendrik Brueckner) [1558325]
-- [s390] Replace IS_ENABLED(EXPOLINE_*) with IS_ENABLED(CONFIG_EXPOLINE_*) (Hendrik Brueckner) [1558325]
-- [s390] introduce execute-trampolines for branches (Hendrik Brueckner) [1558325]
-- [s390] run user space and KVM guests with modified branch prediction (Hendrik Brueckner) [1558325]
-- [s390] add optimized array_index_mask_nospec (Hendrik Brueckner) [1558325]
-- [s390] entry.s: fix spurious zeroing of r0 (Hendrik Brueckner) [1558325]
-- [s390] scrub registers on kernel entry and KVM exit (Hendrik Brueckner) [1558325]
-- [s390] align and prepare spectre mitigation for upstream commits (Hendrik Brueckner) [1558325]
-- [s390] alternative: use a copy of the facility bit mask (Hendrik Brueckner) [1558325]
-- [s390] crypto: Adjust s390 aes and paes cipher priorities (Hendrik Brueckner) [1569511]
-- [s390] cio: update chpid descriptor after resource accessibility event (Hendrik Brueckner) [1574467]
-- [s390] dasd: fix IO error for newly defined devices (Hendrik Brueckner) [1574454]
-- [s390] uprobes: implement arch_uretprobe_is_alive() (Hendrik Brueckner) [1574009]
-- [s390] dasd: configurable IFCC handling (Hendrik Brueckner) [1548504]
-- [x86] spec_ctrl: Always clear SPEC_CTRL MSRs when disabling IBRS (Waiman Long) [1574730]
-- [kernel] perf/hwbp: Simplify the perf-hwbp code, fix documentation (Eugene Syromiatnikov) [1569874] {CVE-2018-1000199}
-- [x86] kvm: fix icebp instruction handling (Paolo Bonzini) [1566837] {CVE-2018-1087}
-- [x86] entry/64: Don't use IST entry for #BP stack (Paolo Bonzini) [1567074] {CVE-2018-8897}
-
-* Tue May 08 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-885.el7]
-- [scsi] storvsc: Select channel based on available percentage of ring buffer to write (Cathy Avery) [1568513]
-- [kernel] scsi: vmbus: Add function to report available ring buffer to write in total ring size percentage (Cathy Avery) [1568513]
-- [scsi] storsvc: don't set a bounce limit (Cathy Avery) [1568513]
-- [netdrv] netvsc: Use the vmbus function to calculate ring buffer percentage (Cathy Avery) [1568513]
-- [scsi] storvsc: Set up correct queue depth values for IDE devices (Cathy Avery) [1568513]
-- [scsi] storvsc: Spread interrupts when picking a channel for I/O requests (Cathy Avery) [1568513]
-- [scsi] storvsc: Increase cmd_per_lun for higher speed devices (Cathy Avery) [1568513]
-- [scsi] storvsc: missing error code in storvsc_probe() (Cathy Avery) [1568513]
-- [scsi] cxgb4i: silence overflow warning in t4_uld_rx_handler() (Arjun Vynipadath) [1523190]
-- [scsi] cxgb4i: make skb_push & __skb_push return void pointers (Arjun Vynipadath) [1523190]
-- [scsi] iscsi: respond to netlink with unicast when appropriate (Chris Leech) [1330865]
-- [scsi] bnx2fc: Fix check in SCSI completion handler for timed out request (Chad Dupuis) [1566553]
-- [scsi] bnx2fc: fix spelling mistake: "Couldnt" -> "Couldn't" (Chad Dupuis) [1566553]
-- [scsi] bnx2i: Use zeroing allocator rather than allocator/memset (Chad Dupuis) [1566556]
-- [scsi] bnx2i: bnx2i_hwi: use swap macro in bnx2i_send_iscsi_nopout (Chad Dupuis) [1566556]
-- [scsi] bnx2i: Clean up unused pointers in bnx2i_hwi (Chad Dupuis) [1566556]
-- [scsi] cdrom: do not call check_disk_change() inside cdrom_open() (Maurizio Lombardi) [1538362]
-- [scsi] lpfc: update driver version to 12.0.0.2 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Correct missing remoteport registration during link bounces (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix NULL pointer reference when resetting adapter (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix nvme remoteport registration race conditions (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix driver not recovering NVME rports during target link faults (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix WQ/CQ creation for older asic's (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix NULL pointer access in lpfc_nvme_info_show (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix lingering lpfc_wq resource after driver unload (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix Abort request WQ selection (Dick Kennedy) [1519548]
-- [scsi] lpfc: Enlarge nvmet asynchronous receive buffer counts (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add per io channel NVME IO statistics (Dick Kennedy) [1519548]
-- [scsi] lpfc: Correct target queue depth application changes (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix multiple PRLI completion error path (Dick Kennedy) [1519548]
-- [scsi] lpfc: make several unions static, fix non-ANSI prototype (Dick Kennedy) [1519548]
-- [scsi] scsi_transport_fc: fix typos on 64/128 GBit define names (Dick Kennedy) [1519548]
-- [scsi] scsi_transport_fc: add 64GBIT and 128GBIT port speed definitions (Dick Kennedy) [1519548]
-- [scsi] lpfc: Change Copyright of 12.0.0.1 modified files to 2018 (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 12.0.0.1 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Memory allocation error during driver start-up on power8 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix mailbox wait for POST_SGL mbox command (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix SCSI lun discovery when port configured for both SCSI and NVME (Dick Kennedy) [1519548]
-- [scsi] lpfc: Streamline NVME Targe6t WQE setup (Dick Kennedy) [1519548]
-- [scsi] lpfc: Streamline NVME Initiator WQE setup (Dick Kennedy) [1519548]
-- [scsi] lpfc: Code cleanup for 128byte wqe data type (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix NVME Initiator FirstBurst (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add missing unlock in WQ full logic (Dick Kennedy) [1519548]
-- [scsi] lpfc: use __raw_writeX on DPP copies (Dick Kennedy) [1519548]
-- [scsi] lpfc: Change Copyright of 12.0.0.0 modified files to 2018 (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 12.0.0.0 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Work around NVME cmd iu SGL type (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix nvme embedded io length on new hardware (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add embedded data pointers for enhanced performance (Dick Kennedy) [1519548]
-- [scsi] lpfc: Enable fw download on if_type=6 devices (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add if_type=6 support for cycling valid bits (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add 64G link speed support (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add PCI Ids for if_type=6 hardware (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add push-to-adapter support to sli4 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add SLI-4 if_type=6 support to the code base (Dick Kennedy) [1519548]
-- [scsi] lpfc: Rework sli4 doorbell infrastructure (Dick Kennedy) [1519548]
-- [scsi] lpfc: Rework lpfc to allow different sli4 cq and eq handlers (Dick Kennedy) [1519548]
-- [scsi] lpfc: Update 11.4.0.7 modified files for 2018 Copyright (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 11.4.0.7 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix nonrecovery of NVME controller after cable swap (Dick Kennedy) [1519548]
-- [scsi] lpfc: Treat SCSI Write operation Underruns as an error (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix header inclusion in lpfc_nvmet (Dick Kennedy) [1519548]
-- [scsi] lpfc: Validate adapter support for SRIU option (Dick Kennedy) [1519548]
-- [scsi] lpfc: Indicate CONF support in NVMe PRLI (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix issue_lip if link is disabled (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix soft lockup in lpfc worker thread during LIP testing (Dick Kennedy) [1519548]
-- [scsi] lpfc: Allow set of maximum outstanding SCSI cmd limit for a target (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix RQ empty firmware trap (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix IO failure during hba reset testing with nvme io (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix PRLI handling when topology type changes (Dick Kennedy) [1519548]
-- [scsi] lpfc: Add WQ Full Logic for NVME Target (Dick Kennedy) [1519548]
-- [scsi] lpfc: correct debug counters for abort (Dick Kennedy) [1519548]
-- [scsi] lpfc: move placement of target destroy on driver detach (Dick Kennedy) [1519548]
-- [scsi] lpfc: Increase CQ and WQ sizes for SCSI (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix frequency of Release WQE CQEs (Dick Kennedy) [1519548]
-- [scsi] lpfc: fix a couple of minor indentation issues (Dick Kennedy) [1519548]
-- [scsi] lpfc: don't dereference localport before it has been null checked (Dick Kennedy) [1519548]
-- [scsi] lpfc: correct sg_seg_cnt attribute min vs default (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 11.4.0.6 (Dick Kennedy) [1519548]
-- [scsi] lpfc: Beef up stat counters for debug (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix infinite wait when driver unregisters a remote NVME port (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix issues connecting with nvme initiator (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix SCSI LUN discovery when SCSI and NVME enabled (Dick Kennedy) [1519548]
-- [scsi] lpfc: Increase SCSI CQ and WQ sizes (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix receive PRLI handling (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix -EOVERFLOW behavior for NVMET and defer_rcv (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix random heartbeat timeouts during heavy IO (Dick Kennedy) [1519548]
-- [scsi] lpfc: update driver version to 11.4.0.5 (Dick Kennedy) [1519548]
-- [scsi] lpfc: small sg cnt cleanup (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix driver handling of nvme resources during unload (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix crash during driver unload with running nvme traffic (Dick Kennedy) [1519548]
-- [scsi] lpfc: Correct driver deregistrations with host nvme transport (Dick Kennedy) [1519548]
-- [scsi] lpfc: correct port registrations with nvme_fc (Dick Kennedy) [1519548]
-- [scsi] lpfc: Adjust default value of lpfc_nvmet_mrq (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix display for debugfs queInfo (Dick Kennedy) [1519548]
-- [scsi] lpfc: Raise maximum NVME sg list size for 256 elements (Dick Kennedy) [1519548]
-- [scsi] lpfc: Fix NVME LS abort_xri (Dick Kennedy) [1519548]
-- [scsi] lpfc: Handle XRI_ABORTED_CQE in soft IRQ (Dick Kennedy) [1519548]
-- [scsi] lpfc: Expand WQE capability of every NVME hardware queue (Dick Kennedy) [1519548]
-
-* Mon May 07 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-884.el7]
-- [char] ipmi: retain ipmi_si for ipmi platform_device.name (Tony Camuso) [1567691]
-- [char] ipmi: Fix some error cleanup issues (Tony Camuso) [1573197]
-- [char] ipmi_si: Fix error handling of platform device (Tony Camuso) [1573197]
-- [input] elantech - add new icbody type 15 (Benjamin Tissoires) [1565527]
-- [input] elantech - make arrays debounce_packet static, reduces object code size (Benjamin Tissoires) [1565527]
-- [input] elantech - constify attribute_group structures (Benjamin Tissoires) [1565527]
-- [input] elantech - add Fujitsu Lifebook E546/E557 to force crc_enabled (Benjamin Tissoires) [1565527]
-- [input] elantech - force relative mode on a certain module (Benjamin Tissoires) [1565527]
-- [input] elantech - add Fujitsu Lifebook E547 to force crc_enabled (Benjamin Tissoires) [1565527]
-- [input] elantech - add Fujitsu Lifebook E556 to force crc_enabled (Benjamin Tissoires) [1565527]
-- [input] elantech - force needed quirks on Fujitsu H760 (Benjamin Tissoires) [1565527]
-- [input] elantech - fix Lenovo version typo (Benjamin Tissoires) [1565527]
-- [input] elantech - fix debug dump of the current packet (Benjamin Tissoires) [1565527]
-- [input] elantech - add more IC body types to the list (Benjamin Tissoires) [1565527]
-- [input] psmouse - use same format for secondary devices as for primary (Benjamin Tissoires) [1565527]
-- [input] elantech - mark protocols v2 and v3 as semi-mt (Benjamin Tissoires) [1565527]
-- [input] elantech - add Fujitsu Lifebook U745 to force crc_enabled (Benjamin Tissoires) [1565527]
-- [input] elantech - add special check for fw_version 0x470f01 touchpad (Benjamin Tissoires) [1565527]
-- [input] elantech - force resolution of 31 u/mm (Benjamin Tissoires) [1565527]
-- [input] elantech - add new icbody type (Benjamin Tissoires) [1565527]
-- [input] elantech - fix detection of touchpads where the revision matches a known rate (Benjamin Tissoires) [1565527]
-- [input] synaptics - add Lenovo 80 series ids to SMBus (Benjamin Tissoires) [1554926]
-- [input] trackpoint - combine calls to ps2_command() (Benjamin Tissoires) [1554926]
-- [input] libps2 - relax command byte ACK handling (Benjamin Tissoires) [1554926]
-- [kernel] input: libps2 - use BIT() for bitmask constants (Benjamin Tissoires) [1554926]
-- [input] libps2 - support retransmission of command data (Benjamin Tissoires) [1554926]
-- [input] libps2 - add debugging statements (Benjamin Tissoires) [1554926]
-- [input] psmouse - move sliced command implementation to libps2 (Benjamin Tissoires) [1554926]
-- [input] libps2 - use u8 for byte data (Benjamin Tissoires) [1554926]
-- [input] libps2 - fix switch statement formatting (Benjamin Tissoires) [1554926]
-- [input] psmouse - clean up code (Benjamin Tissoires) [1554926]
-- [input] psmouse - create helper for reporting standard buttons/motion (Benjamin Tissoires) [1554926]
-- [input] trackpoint - only expose supported controls for Elan, ALPS and NXP (Benjamin Tissoires) [1554926]
-- [input] psmouse - expose drift duration for IBM trackpoints (Benjamin Tissoires) [1554926]
-- [input] trackpoint - force 3 buttons if 0 button is reported (Benjamin Tissoires) [1554926]
-- [input] trackpoint - add new trackpoint firmware ID (Benjamin Tissoires) [1554926]
-- [input] trackpoint - assume 3 buttons when buttons detection fails (Benjamin Tissoires) [1554926]
-- [input] mouse - use local variables consistently (Benjamin Tissoires) [1554926]
-- [input] synaptics - use BIT() and GENMASK() macros (Benjamin Tissoires) [1554926]
-- [input] synaptics - add synaptics_query_int() (Benjamin Tissoires) [1554926]
-- [input] psmouse - fix data race in __ps2_command (Benjamin Tissoires) [1554926]
-- [input] psmouse - add small delay for IBM trackpoint pass-through mode (Benjamin Tissoires) [1554926]
-- [input] synaptics - prevent top button pad from creating smbus device (Benjamin Tissoires) [1554926]
-- [input] psmouse - fix Synaptics detection when protocol is disabled (Benjamin Tissoires) [1554926]
-- [input] synaptics - disable kernel tracking on SMBus devices (Benjamin Tissoires) [1554926]
-- [input] synaptics - fix device info appearing different on reconnect (Benjamin Tissoires) [1554926]
-- [input] synaptics - keep PS/2 around when RMI4_SMB is not enabled (Benjamin Tissoires) [1554926]
-- [input] synaptics - clear device info before filling in (Benjamin Tissoires) [1554926]
-- [input] psmouse - fix cleaning up SMBus companions (Benjamin Tissoires) [1554926]
-- [input] synaptics - add support for Intertouch devices (Benjamin Tissoires) [1554926]
-- [input] psmouse - add support for SMBus companions (Benjamin Tissoires) [1554926]
-- [input] psmouse - introduce notion of SMBus companions (Benjamin Tissoires) [1554926]
-- [input] psmouse - store pointer to current protocol (Benjamin Tissoires) [1554926]
-- [input] psmouse - implement fast reconnect option (Benjamin Tissoires) [1554926]
-- [input] serio - add fast reconnect option (Benjamin Tissoires) [1554926]
-- [input] synaptics - split device info into a separate structure (Benjamin Tissoires) [1554926]
-- [input] synaptics - do not mix logical and bitwise operations (Benjamin Tissoires) [1554926]
-- [input] synaptics - use SERIO_OOB_DATA to handle trackstick buttons (Benjamin Tissoires) [1554926]
-- [input] synaptics - dump ext10 capabilities as well (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - log when we create a guest serio port (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - unmask F03 interrupts when port is opened (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - do not delete interrupt memory too early (Benjamin Tissoires) [1554926]
-- [input] synaptics_rmi4 - remove unneeded MODULE_VERSION() usage (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - RMI4 can also use SMBUS version 3 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - limit the range of what GPIOs are buttons (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - constify attribute_group structures in F01 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - register F03 port as pass-through serio (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - change F12 clip to inactive border debug (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - use dev_driver_string when registering interrupt (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - when registering sensors do not call them "drivers" (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - cleanup SMbus mapping handling (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix endianness issue in SMBus transport (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix handling failures from rmi_enable_sensor (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - prevent null pointer dereference in f30 (Benjamin Tissoires) [1554926]
-- [input] rmi4 - f30: detect INPUT_PROP_BUTTONPAD from the button count (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - forward upper mechanical buttons to PS/2 guest (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - clean up F30 implementation (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix error return code in rmi_probe_interrupts() (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add rmi_find_function() (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add sysfs interfaces for hardware IDs (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix reversed conditions in enable/disable_irq_wake (Benjamin Tissoires) [1554926]
-- [input] constify device_type structures (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - use local variables consistently (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - correctly swap clip values if axes are swapped (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove redundant null check on rmi_dev (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - use Kconfig "if" to express dependency (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - select 'SERIO' when needed (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix F03 build error when serio is module (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix debug for sensor clip (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - store the attn data in the driver (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - allow to add attention data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - f03 - grab data passed by transport device (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for F03 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - have only one struct platform data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove EXPORT_SYMBOL_GPL for internal functions (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add rmi_enable/disable_irq (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove unused fields in struct rmi_driver_data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add SMBus support (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - set the ABS_MT_TOOL_TYPE bit to report tool type (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for controlling dribble packets in F12 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add parameters for dribble packets and palm detect gesture (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - handle incomplete input data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - move IRQ handling to rmi_driver (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add a couple of debug lines (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - factor out functions from probe (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - stop scanning PDT after two empty pages (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix register descriptor subpacket map construction (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - do not check for NULL when calling of_node_put() (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix maximum size check for F12 control register 8 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - use the RMI_F11_REL_BYTES define in rmi_f11_rel_pos_report (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove unneeded variable (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove pointer to rmi_function in f12_data (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - fix spelling in defines (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - remove check of Non-NULL array (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - using logical instead of bitwise AND (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for F30 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for F12 (Benjamin Tissoires) [1554926]
-- [input] synaptics-rmi4 - add support for 2D sensors and F11 (Benjamin Tissoires) [1554926]
-- [uapi] input: synaptics-rmi4 - add support for Synaptics RMI4 devices (Benjamin Tissoires) [1554926]
-- [uapi] input: psmouse - add a custom serio protocol to send extra information (Benjamin Tissoires) [1554926]
-- [input] psmouse - limit protocols that we try on passthrough ports (Benjamin Tissoires) [1554926]
-- [input] psmouse - factor out common protocol probing code (Benjamin Tissoires) [1554926]
-- [input] psmouse - clean up Cypress probe (Benjamin Tissoires) [1554926]
-- [input] psmouse - move protocol descriptions around (Benjamin Tissoires) [1554926]
-- [input] psmouse - fix comment style (Benjamin Tissoires) [1554926]
-- [input] psmouse - use switch statement in psmouse_process_byte() (Benjamin Tissoires) [1554926]
-- [input] psmouse - use IS_ENABLED instead of homegrown code (Benjamin Tissoires) [1554926]
-- [kernel] genirq: Add irq_get_trigger_type() to get IRQ flags (Benjamin Tissoires) [1554926]
-- [uapi] input: add MT_TOOL_PALM (Benjamin Tissoires) [1554926]
-- [input] MT - add support for balanced slot assignment (Benjamin Tissoires) [1554926]
-- [i2c] i801: Restore configuration at shutdown (Benjamin Tissoires) [1554926]
-- [i2c] i801: Save register SMBSLVCMD value only once (Benjamin Tissoires) [1554926]
-- [i2c] do not enable fall back to Host Notify by default (Benjamin Tissoires) [1554926]
-- [i2c] use an IRQ to report Host Notify events, not alert (Benjamin Tissoires) [1554926]
-- [i2c] i801: remove SMBNTFDDAT reads as they always seem to return 0 (Benjamin Tissoires) [1554926]
-- [i2c] i801: use the BIT() macro for FEATURES_* also (Benjamin Tissoires) [1554926]
-- [i2c] i801: use BIT() macro for bits definition (Benjamin Tissoires) [1554926]
-- [i2c] i801: minor formatting issues (Benjamin Tissoires) [1554926]
-- [i2c] i801: store and restore the SLVCMD register at load and unload (Benjamin Tissoires) [1554926]
-- [i2c] i2c-smbus: fix i2c_handle_smbus_host_notify documentation (Benjamin Tissoires) [1554926]
-- [i2c] i801: add support of Host Notify (Benjamin Tissoires) [1554926]
-- [uapi] i2c: smbus: add SMBus Host Notify support (Benjamin Tissoires) [1554926]
-- [i2c] add a protocol parameter to the alert callback (Benjamin Tissoires) [1554926]
-- [crypto] chelsio - Remove unwanted initialization (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - don't leak pointers to authenc keys (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Remove declaration of static function from header (Arjun Vynipadath) [1523191]
-- [crypto] chelsio -Split Hash requests for large scatter gather list (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix iv passed in fallback path for rfc3686 (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Update IV before sending request to HW (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Use kernel round function to align lengths (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - no csum offload for ipsec path (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Make function aead_ccm_validate_input static (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix indentation warning (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Remove dst sg size zero check (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Add authenc versions of ctr and sha (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix IV updated in XTS operation (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - check for sg null (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix Indentation (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - fix a type cast error (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Use GCM IV size constant (Arjun Vynipadath) [1523191]
-- [crypto] gcm - add GCM IV size constant (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - select CRYPTO_GF128MUL (Arjun Vynipadath) [1523191]
-- [crypto] chcr: ensure cntrl is initialized to fix bit-wise or'ing of garabage data (Arjun Vynipadath) [1523191]
-- [crypto] chcr: remove unused variables net_device, pi, adap and cntrl (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - make arrays sgl_ent_len and dsgl_ent_len static (Arjun Vynipadath) [1523191]
-- [crypto] chcr: Add support for Inline IPSec (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - Fix an error code in chcr_hash_dma_map() (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - remove redundant assignments to reqctx and dst_size (Arjun Vynipadath) [1523191]
-- [crypto] chcr - Replace _manual_ swap with swap macro (Arjun Vynipadath) [1523191]
-- [crypto] chelsio - pr_err() strings should end with newlines (Arjun Vynipadath) [1523191]
-- [net] vsock: make af_vsock.ko removable again (Stefan Hajnoczi) [1559688]
-
-* Fri May 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-883.el7]
-- [target] cxgbit: call neigh_event_send() to update MAC address (Arjun Vynipadath) [1523189]
-- [base] fix memory leak for ata_link_init (David Milburn) [1474183]
-- [fs] freeing unlinked file indefinitely delayed (Carlos Maiolino) [1248862]
-- [mm] tmpfs: fix shmem_evict_inode() warnings on i_blocks (Christoph von Recklinghausen) [1537382]
-- [hv] add SPDX license id to Kconfig (Mohammed Gamal) [1551622]
-- [hv] add SPDX license to trace (Mohammed Gamal) [1551622]
-- [hv] vmbus: do not mark HV_PCIE as perf_device (Mohammed Gamal) [1551622]
-- [hv] vmbus: respect what we get from hv_get_synint_state() (Mohammed Gamal) [1551622]
-- [hv] hv_balloon: trace post_status (Mohammed Gamal) [1551622]
-- [hv] hv_balloon: fix bugs in num_pages_onlined accounting (Mohammed Gamal) [1551622]
-- [hv] hv_balloon: simplify hv_online_page()/hv_page_online_one() (Mohammed Gamal) [1551622]
-- [hv] hv_balloon: fix printk loglevel (Mohammed Gamal) [1551622]
-- [hv] hv_vmbus: Correct the stale comments regarding cpu affinity (Mohammed Gamal) [1551622]
-- [hv] Synthetic typo correction (Mohammed Gamal) [1551622]
-- [hv] hyper-v: use GFP_KERNEL for hv_context.hv_numa_map (Mohammed Gamal) [1551622]
-- [hv] hv: vmbus: Fix ring buffer signaling (Mohammed Gamal) [1551622]
-- [hv] vmbus: add monitor_id and subchannel_id to sysfs per channel (Mohammed Gamal) [1551622]
-- [hv] vmbus: make channel attributes static (Mohammed Gamal) [1551622]
-- [hv] vmbus: unregister device_obj->channels_kset (Mohammed Gamal) [1551622]
-- [hv] vmbus: Remove x86-isms from arch independent drivers (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace channel events (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_send_tl_connect_request() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_release_relid() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_negotiate_version() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_teardown_gpadl() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_establish_gpadl() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_close_internal() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_open() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_request_offers() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_onversion_response() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_ongpadl_torndown() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_ongpadl_created() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_onopen_result() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_onoffer_rescind() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_onoffer() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_on_message() (Mohammed Gamal) [1551622]
-- [hv] hyper-v: trace vmbus_on_msg_dpc() (Mohammed Gamal) [1551622]
-- [hv] hv: vmbus: Expose per-channel interrupts and events counters (Mohammed Gamal) [1551622]
-- [hv] vmbus: Make panic reporting to be more useful (Mohammed Gamal) [1551622]
-- [hv] vmbus: initialize reserved fields in messages (Mohammed Gamal) [1551622]
-- [hv] vmbus: add per-channel sysfs info (Mohammed Gamal) [1551622]
-- [hv] hv: fcopy: restore correct transfer length (Mohammed Gamal) [1551622]
-- [hv] hv: kvp: Use MAX_ADAPTER_ID_SIZE for translating adapter id (Mohammed Gamal) [1551622]
-- [hv] hv: balloon: Show the max dynamic memory assigned (Mohammed Gamal) [1551622]
-- [hv] hv: balloon: Initialize last_post_time on startup (Mohammed Gamal) [1551622]
-- [hv] hv: balloon: Correctly update onlined page count (Mohammed Gamal) [1551622]
-- [hv] vmbus: add prefetch to ring buffer iterator (Mohammed Gamal) [1551622]
-- [hv] vmbus: more host signalling avoidance (Mohammed Gamal) [1551622]
-- [hv] vmbus: eliminate duplicate cached index (Mohammed Gamal) [1551622]
-- [hv] vmbus: refactor hv_signal_on_read (Mohammed Gamal) [1551622]
-- [hv] vmbus: simplify hv_ringbuffer_read (Mohammed Gamal) [1551622]
-- [gpu] drm/amdgpu: Fix deadlock on runtime suspend (Lyude Paul) [1563957]
-- [gpu] drm/radeon: Fix deadlock on runtime suspend (Lyude Paul) [1563957]
-- [gpu] drm/nouveau: Fix deadlock on runtime suspend (Lyude Paul) [1563957]
-- [gpu] drm: Allow determining if current task is output poll worker (Lyude Paul) [1563957]
-- [gpu] workqueue: Allow retrieval of current task's work struct (1/5) (Lyude Paul) [1563957]
-- [acpi] nfit: add 'Enable Latch System Shutdown Status' command support (Jeff Moyer) [1507717]
-- [acpi] nfit: add support for NVDIMM_FAMILY_INTEL v1.6 DSMs (Jeff Moyer) [1507717]
-- [acpi] nfit: hide unknown commands from nmemX/commands (Jeff Moyer) [1507717]
-- [tools] nfit: nfit_test supports translate SPA (Jeff Moyer) [1507717]
-- [acpi] nfit: Enable to show what feature is supported via ND_CMD_CALL for nfit_test (Jeff Moyer) [1507717]
-- [x86] kpti/kexec: fix wrong page address in clear_page (Dave Young) [1571162]
-- [x86] perf/intel/uncore: Add event constraint for BDX PCU (Prarit Bhargava) [1567782]
-- [x86] intel_rdt: Fix potential deadlock during resctrl mount (Jiri Olsa) [1483009]
-- [x86] intel_rdt: Fix potential deadlock during resctrl unmount (Jiri Olsa) [1483009]
-- [x86] intel_rdt: Fix incorrect returned value when creating rdgroup sub-directory in resctrl file system (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add command line parameter to control L2_CDP (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Enable L2 CDP in MSR IA32_L2_QOS_CFG (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add two new resources for L2 Code and Data Prioritization (CDP) (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Enumerate L2 Code and Data Prioritization (CDP) feature (Jiri Olsa) [1509785]
-- [documentation] x86/intel_rdt: Add documentation for "info/last_cmd_status" (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Fix a silent failure when writing zero value schemata (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Initialize bitmask of shareable resource if CDP enabled (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Remove redundant assignment (Jiri Olsa) [1509785]
-- [x86] intel_rdt/cqm: Make integer rmid_limbo_count static (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add diagnostics when making directories (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add diagnostics when writing the cpus file (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add diagnostics when writing the tasks file (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add diagnostics when writing the schemata file (Jiri Olsa) [1509785]
-- [x86] intel_rdt: Add framework for better RDT UI diagnostics (Jiri Olsa) [1509785]
-- [x86] vmware: set cpu capabilities during platform initialization (Vitaly Kuznetsov) [1507027]
-- [x86] vmware: Remove duplicate inclusion of asm/timer.h (Vitaly Kuznetsov) [1507027]
-- [x86] vmware: Add paravirt sched clock (Vitaly Kuznetsov) [1507027]
-- [x86] vmware: Add basic paravirt ops support (Vitaly Kuznetsov) [1507027]
-- [x86] vmware: Read tsc_khz only once at boot time (Vitaly Kuznetsov) [1507027]
-- [powerpc] pseries: Fix cpu hotplug crash with memoryless nodes (Serhii Popovych) [1507765]
-- [powerpc] numa: Ensure nodes initialized for hotplug (Serhii Popovych) [1507765]
-- [powerpc] numa: Use ibm, max-associativity-domains to discover possible nodes (Serhii Popovych) [1507765]
-- [powerpc] mm: Allow memory hotplug into an offline node (Serhii Popovych) [1507765]
-- [powerpc] mm: allow memory hotplug into a memoryless node (Serhii Popovych) [1507765]
-- [powerpc] numa: Reset node_possible_map to only node_online_map (Serhii Popovych) [1507765]
-
-* Fri May 04 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-882.el7]
-- [netdrv] ibmvnic: Clean actual number of RX or TX pools (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Clear pending interrupt after device reset (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Define vnic_login_client_data name field as unsized array (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Do not reset CRQ for Mobility driver resets (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Fix failover case for non-redundant configuration (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Fix reset scheduler error handling (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Zero used TX descriptor counter on reset (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] ibmvnic: Fix DMA mapping mistakes (Desnes Augusto Nunes do Rosario) [1519746]
-- [netdrv] cxgb4vf: Forcefully link up virtual interfaces (Arjun Vynipadath) [1523185]
-- [netdrv] cxgb4vf: Use dev_consume_skb_any() in place of consume_skb() (Arjun Vynipadath) [1523185]
-- [netdrv] cxgb4: Support firmware rdma write completion work request (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Support firmware rdma write with immediate work request (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support to query HW SRQ parameters (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support to initialise/read SRQ entries (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Adds CPL support for Shared Receive Queues (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: notify fatal error to uld drivers (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: copy vlan_id in ndo_get_vf_config (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4/cxgb4vf: add support for ndo_set_vf_vlan (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support for Inline IPSec Tx (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support for ethtool i2c dump (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: fix error return code in adap_init0() (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: fix missing break in switch and indent return statements (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: support new ISSI flash parts (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: depend on firmware event for link status (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Setup FW queues before registering netdev (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Fix queue free path of ULD drivers (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4/cxgb4vf: check fw caps to set link mode mask (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: do not display 50Gbps as unsupported speed (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: increase max tx rate limit to 100 Gbps (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: do not set needs_free_netdev for mgmt dev's (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: copy adap index to PF0-3 adapter instances (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add TP Congestion map entry for single-port (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: remove dead code when allocating filter (Arjun Vynipadath) [1523151]
-- [pci] cxgb4: Extend T3 PCI quirk to T4+ devices (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: free up resources of pf 0-3 (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Fix error handling path in 'init_one()' (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: avoid memcpy beyond end of source buffer (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: IPv6 filter takes 2 tids (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: restructure VF mgmt code (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Fix FW flash errors (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Check alignment constraint for T6 (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: use CLIP with LIP6 on T6 for TCAM filters (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4/cxgb4vf: support for XLAUI Port Type (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: display VNI correctly (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: add new T5 and T6 device id's (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Report tid start range correctly for T6 (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Simplify PCIe Completion Timeout setting (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add support for new flash parts (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Add HMA support (Arjun Vynipadath) [1523207 1523151]
-- [netdrv] cxgb4: add geneve offload support for T6 (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: implement ndo_features_check (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: add support for vxlan segmentation offload (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: implement udp tunnel callbacks (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: add data structures to support vxlan (Arjun Vynipadath) [1529694 1523151]
-- [netdrv] cxgb4: speed up on-chip memory read (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: rework on-chip memory read (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: fix trailing zero in CIM LA dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: use backdoor access to collect dumps when firmware crashed (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: fix incorrect condition for using firmware LDST commands (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: reset FW_OK flag on firmware crash (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: properly initialize variables (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: enable ZLIB_DEFLATE when building cxgb4 (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: use zlib deflate to compress firmware dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: update dump collection logic to use compression (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect TX rate limit info in UP CIM logs (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect PCIe configuration logs (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect egress and ingress SGE queue contexts (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: skip TX and RX payload regions in memory dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect HMA memory dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: RSS table is 4k for T6 (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect MC memory dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect on-chip memory information (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect vpd info directly from hardware (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect SGE queue context dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect LE-TCAM dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect hardware misc dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect hardware scheduler dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect PBT tables dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect MPS-TCAM dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect TID info dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect RSS dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect CIM queue configuration dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect hardware LA dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: fix overflow in collecting IBQ and OBQ dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect IBQ and OBQ dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect hardware module dumps (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect TP dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: update API for TP indirect register access (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect firmware mbox and device log dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect on-chip memory dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: collect register dump (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: implement ethtool dump data operations (Arjun Vynipadath) [1523208 1523151]
-- [netdrv] cxgb4: make symbol pedits static (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: fix endianness for vlan value in cxgb4_tc_flower (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: set filter type to 1 for ETH_P_IPV6 (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: fix error return code in cxgb4_set_hash_filter() (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to create hash-filters via tc-flower offload (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] chelsio/cxgb*: Convert timers to use timer_setup() (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to retrieve stats for hash filters (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to delete hash filter (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to create hash filters (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: initialize hash-filter configuration (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: save additional filter tuple field shifts in tp_params (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower support for L3/L4 rewrite (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: introduce fw_filter2_wr to prepare for L3/L4 rewrite support (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower support for ETH-SMAC rewrite (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: introduce SMT ops to prepare for SMAC rewrite support (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower support for ETH-DMAC rewrite (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower support for action PASS (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower match support for vlan (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower match support for TOS (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: make function ch_flower_stats_cb, fixes warning (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: fetch stats for offloaded tc flower flows (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add support to offload action vlan (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add basic tc flower offload support (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: add tc flower offload skeleton (Arjun Vynipadath) [1523206 1523151]
-- [netdrv] cxgb4: Fix conversion of (dev_)kfree_skb to dev_kfree/consume_skb_any (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: Initialize FR_NSMR_TPTE_WR support properly (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: introduce __skb_put_(zero, data, u8) (Arjun Vynipadath) [1523151]
-- [netdrv] cxgb4: make skb_put & friends return void pointers (Arjun Vynipadath) [1523151]
-- [lib] dql: dql_queued() should write first to reduce bus transactions (William Townsend) [1489665]
-- [net] sched: introduce helper to identify gact pass action (Ivan Vecera) [1570155]
-- [net] sched: cls_flower: Add support to handle first frag as match field (Davide Caratti) [1559804]
-- [net] eth: add devm version of alloc_etherdev_mqs function (Ivan Vecera) [1568001]
-- [net] eth: Fix sysfs_format_mac() code duplication (Ivan Vecera) [1568001]
-- [net] sched: Set the net-device for egress device instance (Ivan Vecera) [1557539]
-- [net] sched: Fix actions list corruption when adding offloaded tc flows (Ivan Vecera) [1557539]
-- [net] sched: remove unused tcf_exts_get_dev helper and cls_flower->egress_dev (Ivan Vecera) [1557539]
-- [net] sched: convert cls_flower->egress_dev users to tc_setup_cb_egdev infra (Ivan Vecera) [1557539]
-- [net] sched: introduce per-egress action device callbacks (Ivan Vecera) [1557539]
-- [net] sched: make tc_action_ops->get_dev return dev and avoid passing net (Ivan Vecera) [1557539]
-- [net] ipvs: skb_orphan in case of forwarding (William Townsend) [1554193]
-- [net] ipv4: add support for ECMP hash policy choice (Hangbin Liu) [1511351]
-- [net] ipv4: eliminate endianness warnings in ip_fib.h (Hangbin Liu) [1511351]
-- [net] Refactor path selection in __ip_route_output_key_hash (Hangbin Liu) [1511351]
-- [net] ipv4: consider TOS in fib_select_default (Hangbin Liu) [1511351]
-- [net] ipv4: fib_select_default should match the prefix (Hangbin Liu) [1511351]
-- [net] l2tp: fix negative assignment to unsigned int (Hangbin Liu) [1527251]
-- [net] l2tp: cleanup: remove redundant condition (Hangbin Liu) [1527251]
-- [net] l2tp: netlink: l2tp_nl_tunnel_send: set UDP6 checksum flags (Hangbin Liu) [1527251]
-- [net] l2tp: only set L2TP_ATTR_UDP_CSUM if AF_INET (Hangbin Liu) [1527251]
-- [net] l2tp: change L2TP_ATTR_UDP_ZERO_CSUM6_(RX, TX) attribute types (Hangbin Liu) [1527251]
-- [net] sched: cbs: Change TC_SETUP_CBS to TC_SETUP_QDISC_CBS (Ivan Vecera) [1557250]
-- [net] sched: Add support for HW offloading for CBS (Ivan Vecera) [1557250]
-- [net] sched: Introduce Credit Based Shaper (CBS) qdisc (Ivan Vecera) [1557250]
-- [net] sched: Add select_queue() class_ops for mqprio (Ivan Vecera) [1557250]
-- [net] sched: Change behavior of mq select_queue() (Ivan Vecera) [1557250]
-- [net] sched: Check for null dev_queue on create flow (Ivan Vecera) [1557250]
-
-* Thu May 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-881.el7]
-- [infiniband] rdma/bnxt_re: report vlan_id and sl in qp1 recv completion (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: use BIT_ULL() for 64-bit bit masks (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: qplib_fp: fix pointer cast (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix the ib_reg failure cleanup (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix incorrect DB offset calculation (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Unconditionly fence non wire memory operations (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Unpin SQ and RQ memory if QP create fails (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Disable atomic capability on bnxt_re adapters (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Use common error handling code in bnxt_qplib_alloc_dpi_tbl() (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Delete two error messages for a failed memory allocation in bnxt_qplib_alloc_dpi_tbl() (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix an error code in bnxt_qplib_create_srq() (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix static checker warning (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Add SRQ support for Broadcom adapters (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: expose detailed stats retrieved from HW (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Add support for MRs with Huge pages (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Enable RoCE on virtual functions (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: report RoCE device support at info level (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Use zeroing memory allocator than allocator/memset (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Remove redundant bnxt_qplib_disable_nq() call (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Remove unused vlan_tag variable (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Implement the shutdown hook of the L2-RoCE driver interface (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Fix incorrect usage of test_bit() (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Remove set-but-not-used variables (Selvin Xavier) [1550629]
-- [infiniband] rdma/bnxt_re: Suppress gcc 7 fall-through complaints (Selvin Xavier) [1550629]
-- [infiniband] ib/hfi1: Convert kzalloc_node and kcalloc to use kcalloc_node (Alex Estrin) [1501293 1483561]
-- [infiniband] hw/qib/qib_init.c: use kmalloc_array_node() (Alex Estrin) [1483561 1501293]
-- [infiniband] sw/rdmavt/qp.c: use kmalloc_array_node() (Alex Estrin) [1501293 1483561]
-- [infiniband] Remove now-redundant smp_read_barrier_depends() (Alex Estrin) [1501293 1483561]
-- [infiniband] rdmavt: Fix synchronization around percpu_ref (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/qib: remove qib_keys.c (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/qib: Cleanup qib_set_part_key() with direct returns (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/qib: remove redundant setting of any in for-loop (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/qib: Remove remaining code related to writing the EEPROM (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/qib: convert timers to use timer_setup() (Alex Estrin) [1483561 1501293]
-- [infiniband] ib/hfi1: Add 16B rcvhdr trace support (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Show fault stats in both TX and RX directions (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove blind constants from 16B update (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Convert PortXmitWait/PortVLXmitWait counters to flit times (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Do not override given pcie_pset value (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Optimize process_receive_ib() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unnecessary fecn and becn fields (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Look up ibport using a pointer in receive path (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Optimize packet type comparison using 9B and bypass code paths (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Compute BTH only for RDMA_WRITE_LAST/SEND_LAST packet (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove dependence on qp->s_hdrwords (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix for potential refcount leak in hfi1_open_file() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix for early release of sdma context (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Re-order IRQ cleanup to address driver cleanup race (Alex Estrin) [1501293 1483561]
-- [infiniband] fix ulp/opa_vnic/opa_vnic_vema.c kernel-doc notation (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Add trace for RNRNAK timer (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1, qib: Fix a concurrency issue with device name in logging (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Allocate CQ memory on the correct node (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix infinite loop in 8051 command error path (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Use correct numa node for SRQ allocation (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt, hfi1, qib: Remove get_card_name() downcall (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt, hfi1, qib: Self determine driver name (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: No need to cancel RNRNAK retry timer when it is running (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add RQ/SRQ information to QP stats (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Change slid arg in ingress_pkey_table_fail to 32bit (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi: Only read capability registers if the capability exists (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Use 4096 for default active MTU in query_qp (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Handle initial value of 0 for CCTI setting (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Send 'reboot' as planned down remote reason (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Prohibit invalid Init to Armed state transition (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Do not allocate PIO send contexts for VNIC (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unnecessary if check (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix a wrapping test to insure the correct timeout (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove wrapper function in mmu_rb (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Reduce 8051 command timeout (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Take advantage of kvzalloc_node in sdma initialization (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Don't modify num_user_contexts module parameter (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Insure int mask for in-kernel receive contexts is clear (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add tx_opcode_stats like the opcode_stats (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Validate PKEY for incoming GSI MAD packets (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Return actual operational VLs in port info query (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Convert timers to use timer_setup() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Convert timers to use timer_setup() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add MODULE_FIRMWARE statements (Alex Estrin) [1501293 1483561 1469811]
-- [infiniband] ib/hfi1: Set hdr_type when tx req is allocated (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Correct unnecessary acquisition of HW mutex (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix serdes loopback set-up (Alex Estrin) [1501293 1483561]
-- [infiniband] rdma/rdmavt: Suppress gcc 7 fall-through complaints (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Define hfi1_handle_cnp_tbl() once (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove set-but-not-used variables (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Suppress gcc 7 fall-through complaints (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/rdmavt: Correct issues with read-mostly and send size cache lines (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Prevent LNI out of sync by resetting host interface version (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix output trace issues from 16B change (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor reset_ctxt() IOCTL (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor get_user() IOCTLs (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor hfi_user_exp_rcv_invalid() IOCTLs (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor hfi_user_exp_rcv_clear() IOCTLs (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor hfi_user_exp_rcv_setup() IOCTL (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor get_base_info (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Fix parenthesis alignment issues (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor get_ctxt_info (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Refactor assign_ctxt() IOCTL (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add a safe wrapper for _rcd_get_by_index (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Extend input hdr tracing for packet type (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unused hfi1_cpulist variables (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Inline common calculation (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unnecessary error messages on alloc failures (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove unused link_default variable (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Set default_desc1 just one time (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Remove the debug trace message in pin_sdma_pages() (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Convert the macro AHG_HEADER_SET into an inline function (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/hfi1: Add new state complete decodes for LNI failures (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Add routing control information (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Properly set vesw port status (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Properly clear Mac Table Digest (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Properly return the total MACs in UC MAC list (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Allow reset of MAC address (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Set POD value for Ethernet MTU (Alex Estrin) [1501293 1483561]
-- [infiniband] ib/opa_vnic: Mark unused Ethernet MTU fields as reserved (Alex Estrin) [1501293 1483561]
-- [netdrv] cnic: Fix an error handling path in 'cnic_alloc_bnx2x_resc()' (Chad Dupuis) [1566552]
-- [netdrv] mlx5e: Add missing XDP hunks (Alaa Hleihel) [1563805]
-- [netdrv] ena: fix error handling in ena_down() sequence (John Linville) [1555249]
-- [netdrv] ena: unmask MSI-X only after device initialization is completed (John Linville) [1555249]
-- [netdrv] ena: increase ena driver version to 1.5.0 (John Linville) [1555249]
-- [netdrv] ena: add detection and recovery mechanism for handling missed/misrouted MSI-X (John Linville) [1555249]
-- [netdrv] ena: fix race condition between device reset and link up setup (John Linville) [1555249]
-- [netdrv] ena: increase ena driver version to 1.3.0 (John Linville) [1555249]
-- [netdrv] ena: add new admin define for future support of IPv6 RSS (John Linville) [1555249]
-- [netdrv] ena: add statistics for missed tx packets (John Linville) [1555249]
-- [netdrv] ena: add power management ops to the ENA driver (John Linville) [1555249]
-- [netdrv] ena: remove legacy suspend suspend/resume support (John Linville) [1555249]
-- [netdrv] ena: improve ENA driver boot time (John Linville) [1555249]
-- [netdrv] ena: fix wrong max Tx/Rx queues on ethtool (John Linville) [1555249]
-- [netdrv] ena: fix rare kernel crash when bar memory remap fails (John Linville) [1555249]
-- [netdrv] ena: reduce the severity of some printouts (John Linville) [1555249]
-- [netdrv] ena: Remove redundant unlikely() (John Linville) [1555249]
-- [netdrv] aquantia: Regression on reset with 1.x firmware (David Arcari) [1570787]
-- [netdrv] aquantia: Make function hw_atl_utils_mpi_set_speed() static (David Arcari) [1570787]
-- [netdrv] aquantia: oops when shutdown on already stopped device (David Arcari) [1570787]
-- [netdrv] aquantia: Implement pci shutdown callback (David Arcari) [1570787]
-- [netdrv] aquantia: treewide: setup_timer() -> timer_setup() (David Arcari) [1570787]
-
-* Wed May 02 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-880.el7]
-- [tools] perf trace: Call machine__exit() at exit (Jiri Olsa) [1540862]
-- [tools] perf symbols: Fix memory corruption because of zero length symbols (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel/bts: Fix exclusive event reference leak (Jiri Olsa) [1540862]
-- [tools] perf test shell trace+probe_libc_inet_pton.sh: Be compatible with Debian/Ubuntu (Jiri Olsa) [1540862]
-- [tools] perf xyarray: Fix wrong processing when closing evsel fd (Jiri Olsa) [1540862]
-- [tools] perf record: Fix documentation for a inexistent option '-l' (Jiri Olsa) [1540862]
-- [tools] perf hists: Add extra integrity checks to fmt_free() (Jiri Olsa) [1540862]
-- [tools] perf hists: Fix crash in perf_hpp__reset_output_field() (Jiri Olsa) [1540862]
-- [tools] perf pmu: Unbreak perf record for arm/arm64 with events with explicit PMU (Jiri Olsa) [1540862]
-- [tools] perf script: Add missing separator for "-F ip, brstack" (and brstackoff) (Jiri Olsa) [1540862]
-- [tools] perf test: Fix vmlinux failure on s390x part 2 (Jiri Olsa) [1540862]
-- [tools] perf test: Fix vmlinux failure on s390x (Jiri Olsa) [1540862]
-- [tools] perf tools: Fix syscalltbl build failure (Jiri Olsa) [1540862]
-- [tools] perf report: Fix debug messages with --call-graph option (Jiri Olsa) [1540862]
-- [tools] perf evsel: Fix attr.exclude_kernel setting for default cycles:p (Jiri Olsa) [1540862]
-- [tools] perf tools: Get all of tools/(arch, include)/ in the MANIFEST (Jiri Olsa) [1540862]
-- [tools] perf stat: Wait for the correct child (Jiri Olsa) [1540862]
-- [tools] perf tools: Support running perf binaries with a dash in their name (Jiri Olsa) [1540862]
-- [tools] perf config: Check not only section->from_system_config but also item's (Jiri Olsa) [1540862]
-- [tools] perf ui progress: Fix progress update (Jiri Olsa) [1540862]
-- [tools] perf ui progress: Make sure we always define step value (Jiri Olsa) [1540862]
-- [tools] perf tools: Open perf.data with O_CLOEXEC flag (Jiri Olsa) [1540862]
-- [tools] tools lib api: Fix make DEBUG=1 build (Jiri Olsa) [1540862]
-- [tools] perf tests: Fix compile when libunwind's unwind.h is available (Jiri Olsa) [1540862]
-- [tools] tools include linux: Guard against redefinition of some macros (Jiri Olsa) [1540862]
-- [tools] perf annotate browser: Help for cycling thru hottest instructions with TAB/shift+TAB (Jiri Olsa) [1540862]
-- [tools] perf stat: Only auto-merge events that are PMU aliases (Jiri Olsa) [1540862]
-- [tools] perf intel-pt: Fix syntax in documentation of config option (Jiri Olsa) [1540862]
-- [tools] perf trace: Support syscall name globbing (Jiri Olsa) [1540862]
-- [tools] perf syscalltbl: Support glob matching on syscall names (Jiri Olsa) [1540862]
-- [tools] perf report: Calculate the average cycles of iterations (Jiri Olsa) [1540862]
-- [tools] perf symbols: Fix plt entry calculation for ARM and AARCH64 (Jiri Olsa) [1540862]
-- [tools] perf probe: Fix kprobe blacklist checking condition (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Beautify pkey_(alloc, free, mprotect) arguments (Jiri Olsa) [1540862]
-- [tools] perf tools: Pass full path of FEATURES_DUMP (Jiri Olsa) [1540862]
-- [tools] perf tools: Robustify detection of clang binary (Jiri Olsa) [1540862]
-- [tools] tools lib: Allow external definition of CC, AR and LD (Jiri Olsa) [1540862]
-- [tools] perf tools: Allow external definition of flex and bison binary names (Jiri Olsa) [1540862]
-- [tools] tools build tests: Don't hardcode gcc name (Jiri Olsa) [1540862]
-- [tools] perf report: Group stat values on global event id (Jiri Olsa) [1540862]
-- [tools] perf values: Zero value buffers (Jiri Olsa) [1540862]
-- [tools] perf values: Fix allocation check (Jiri Olsa) [1540862]
-- [tools] perf values: Fix thread index bug (Jiri Olsa) [1540862]
-- [tools] perf report: Add dump_read function (Jiri Olsa) [1540862]
-- [tools] perf record: Set read_format for inherit_stat (Jiri Olsa) [1540862]
-- [tools] perf tools: Fix static build with newer toolchains (Jiri Olsa) [1540862]
-- [tools] perf stat: Fix path to PMU formats in documentation (Jiri Olsa) [1540862]
-- [tools] perf tools: Fix static linking with libunwind (Jiri Olsa) [1540862]
-- [tools] perf tools: Fix static linking with libdw from elfutils (Jiri Olsa) [1540862]
-- [tools] perf: Fix documentation for sysctls perf_event_paranoid and perf_event_mlock_kb (Jiri Olsa) [1540862]
-- [tools] perf tools: Really install manpages via 'make install-man' (Jiri Olsa) [1540862]
-- [tools] perf vendor events: Add Skylake server uncore event list (Jiri Olsa) [1540862]
-- [tools] perf vendor events: Add core event list for Skylake Server (Jiri Olsa) [1540862]
-- [tools] perf tools: Dedup events in expression parsing (Jiri Olsa) [1540862]
-- [tools] perf tools: Increase maximum number of events in expressions (Jiri Olsa) [1540862]
-- [tools] perf tools: Expression parser enhancements for metrics (Jiri Olsa) [1540862]
-- [tools] perf tools: Add utility function to detect SMT status (Jiri Olsa) [1540862]
-- [tools] perf evsel: Fix buffer overflow while freeing events (Jiri Olsa) [1540862]
-- [tools] perf xyarray: Save max_x, max_y (Jiri Olsa) [1540862]
-- [tools] perf annotate browser: Circulate percent, total-period and nr-samples view (Jiri Olsa) [1540862]
-- [tools] perf annotate browser: Support --show-nr-samples option (Jiri Olsa) [1540862]
-- [tools] perf annotate: Document --show-total-period option (Jiri Olsa) [1540862]
-- [tools] perf annotate stdio: Support --show-nr-samples option (Jiri Olsa) [1540862]
-- [tools] perf tools: Use default CPUINFO_PROC where it fits (Jiri Olsa) [1540862]
-- [tools] perf tools: Remove unused cpu_relax() macros (Jiri Olsa) [1540862]
-- [tools] perf events parse: Rename parse_events_parse arguments (Jiri Olsa) [1540862]
-- [tools] perf events parse: Use just one parse events state struct (Jiri Olsa) [1540862]
-- [tools] perf events parse: Rename parsing state struct to clearer name (Jiri Olsa) [1540862]
-- [tools] perf events parse: Remove some needless local variables (Jiri Olsa) [1540862]
-- [tools] perf trace: Fix off by one string allocation problem (Jiri Olsa) [1540862]
-- [tools] perf jevents: Support FCMask and PortMask (Jiri Olsa) [1540862]
-- [tools] perf test shell: Replace '|&' with '2>&1 |' to work with more shells (Jiri Olsa) [1540862]
-- [tools] perf script python: Add support for sqlite3 to call-graph-from-sql.py (Jiri Olsa) [1540862]
-- [tools] perf script python: Rename call-graph-from-postgresql.py to call-graph-from-sql.py (Jiri Olsa) [1540862]
-- [tools] perf script python: Add support for exporting to sqlite3 (Jiri Olsa) [1540862]
-- [tools] perf scripts python: Fix query in call-graph-from-postgresql.py (Jiri Olsa) [1540862]
-- [tools] perf scripts python: Fix missing call_path_id in export-to-postgresql script (Jiri Olsa) [1540862]
-- [tools] perf test shell vfs_getname: Skip for tools built with NO_LIBDWARF=1 (Jiri Olsa) [1540862]
-- [tools] perf test shell: Check if 'perf probe' is available, skip tests if not (Jiri Olsa) [1540862]
-- [tools] perf tests shell: Remove duplicate skip_if_no_debuginfo() function (Jiri Olsa) [1540862]
-- [tools] perf test shell: Add uprobes + backtrace ping test (Jiri Olsa) [1540862]
-- [tools] perf report: Fix module symbol adjustment for s390x (Jiri Olsa) [1540862]
-- [tools] perf srcline: Do not consider empty files as valid srclines (Jiri Olsa) [1540862]
-- [tools] perf util: Take elf_name as const string in dso__demangle_sym (Jiri Olsa) [1540862]
-- [tools] perf test shell: Add test using vfs_getname + 'perf trace' (Jiri Olsa) [1540862]
-- [tools] perf test shell: Add test using probe:vfs_getname and verifying results (Jiri Olsa) [1540862]
-- [tools] perf test shell: Move vfs_getname probe function to lib (Jiri Olsa) [1540862]
-- [tools] perf test shell: Install shell tests (Jiri Olsa) [1540862]
-- [tools] perf test shell: Add 'probe_vfs_getname' shell test (Jiri Olsa) [1540862]
-- [tools] perf test: Make 'list' use same filtering code as main 'perf test' (Jiri Olsa) [1540862]
-- [tools] perf test: Add infrastructure to run shell based tests (Jiri Olsa) [1540862]
-- [tools] perf test: Add 'struct test *' to the test functions (Jiri Olsa) [1540862]
-- [tools] perf test: Print result for each LLVM subtest (Jiri Olsa) [1540862]
-- [tools] perf test: Make 'list' subcommand match main 'perf test' numbering/matching (Jiri Olsa) [1540862]
-- [tools] perf tools: Add missing newline to expr parser error messages (Jiri Olsa) [1540862]
-- [tools] perf stat: Fix saved values rbtree lookup (Jiri Olsa) [1540862]
-- [tools] perf trace beautify ioctl: Beautify perf ioctl's 'cmd' arg (Jiri Olsa) [1540862]
-- [tools] perf trace beautify ioctl: Beautify vhost virtio ioctl's 'cmd' arg (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of linux/vhost.h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty ioctl: Pass _IOC_DIR to the per _IOC_TYPE scnprintf (Jiri Olsa) [1540862]
-- [tools] perf trace beautify ioctl: Beautify KVM ioctl's 'cmd' arg (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of linux/kvm.h (Jiri Olsa) [1540862]
-- [tools] perf trace beautify ioctl: Beautify sound ioctl's 'cmd' arg (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of sound/asound.h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty ioctl: Beautify DRM ioctl cmds (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab copies of drm/(drm, i915_drm).h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty ioctl: Improve 'cmd' beautifier (Jiri Olsa) [1540862]
-- [tools] tools perf: Do not check spaces/blank lines when checking header file copy drift (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of asm-generic/ioctls.h (Jiri Olsa) [1540862]
-- [tools] perf build: Clarify header version warning message (Jiri Olsa) [1540862]
-- [tools] perf data: Add doc when no conversion support compiled (Jiri Olsa) [1540862]
-- [tools] perf data: Add mmap(2) events to CTF conversion (Jiri Olsa) [1540862]
-- [tools] perf data: Add callchain to CTF conversion (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Set appropriate column width for period/percent (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Fix column header when toggling period/percent (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Clarify calculation of column header widths (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Fix --show-total-period (Jiri Olsa) [1540862]
-- [tools] perf annotate tui: Use sym_hist_entry in disasm_line_samples (Jiri Olsa) [1540862]
-- [tools] perf annotate: Fix storing per line sym_hist_entry (Jiri Olsa) [1540862]
-- [tools] perf annotate stdio: Set enough columns for --show-total-period (Jiri Olsa) [1540862]
-- [tools] perf sort: Use default sort if evlist is empty (Jiri Olsa) [1540862]
-- [tools] perf annotate: Do not overwrite perf_sample->weight (Jiri Olsa) [1540862]
-- [tools] perf stat: Use group read for event groups (Jiri Olsa) [1540862]
-- [tools] perf evsel: Add read_counter() (Jiri Olsa) [1540862]
-- [tools] perf tools: Add perf_evsel__read_size function (Jiri Olsa) [1540862]
-- [tools] perf tools: Add tools/include/uapi/asm-generic/fcntl.h to the MANIFEST (Jiri Olsa) [1540862]
-- [tools] perf annotate stdio: Fix column header when using --show-total-period (Jiri Olsa) [1540862]
-- [tools] perf jevents: Make build fail on JSON parse error (Jiri Olsa) [1540862]
-- [tools] perf report: Tag branch type/flag on "to" and tag cycles on "from" (Jiri Olsa) [1540862]
-- [tools] perf report: Make --branch-history work without callgraphs(-g) option in perf record (Jiri Olsa) [1540862]
-- [tools] perf script python: Generate hooks with additional argument (Jiri Olsa) [1540862]
-- [tools] perf script python: Add perf_sample dict to tracepoint handlers (Jiri Olsa) [1540862]
-- [tools] perf script python: Add sample_read to dict (Jiri Olsa) [1540862]
-- [tools] perf script python: Refactor creation of perf sample dict (Jiri Olsa) [1540862]
-- [tools] perf script python: Allocate memory only if handler exists (Jiri Olsa) [1540862]
-- [tools] perf script: Remove some bogus error handling (Jiri Olsa) [1540862]
-- [tools] perf top: Support lookup of symbols in other mount namespaces (Jiri Olsa) [1540862]
-- [tools] perf evsel: Add verbose output for sys_perf_event_open fallback (Jiri Olsa) [1540862]
-- [tools] perf jvmti: Fix linker error when libelf config is disabled (Jiri Olsa) [1540862]
-- [tools] perf annotate: Process tracing data in pipe mode (Jiri Olsa) [1540862]
-- [tools] perf tools: Add EXCLUDE_EXTLIBS and EXTRA_PERFLIBS to makefile (Jiri Olsa) [1540862]
-- [tools] perf cgroup: Fix refcount usage (Jiri Olsa) [1540862]
-- [tools] perf report: Fix kernel symbol adjustment for s390x (Jiri Olsa) [1540862]
-- [tools] perf annotate stdio: Fix --show-total-period (Jiri Olsa) [1540862]
-- [tools] perf annotate: Do not overwrite sample->period (Jiri Olsa) [1540862]
-- [tools] perf annotate: Store the sample period in each histogram bucket (Jiri Olsa) [1540862]
-- [tools] perf hists: Pass perf_sample to __symbol__inc_addr_samples() (Jiri Olsa) [1540862]
-- [tools] perf annotate: Rename 'sum' to 'nr_samples' in struct sym_hist (Jiri Olsa) [1540862]
-- [tools] perf annotate: Introduce struct sym_hist_entry (Jiri Olsa) [1540862]
-- [tools] tools lib: Update copy of strtobool from the kernel sources (Jiri Olsa) [1540862]
-- [tools] tools Adopt strstarts() from the kernel (Jiri Olsa) [1540862]
-- [tools] perf trace: Filter out 'sshd' in the tracer ancestry in syswide tracing (Jiri Olsa) [1540862]
-- [tools] perf trace: Introduce filter_loop_pids() (Jiri Olsa) [1540862]
-- [tools] perf trace beauty clone: Suppress unused args according to 'flags' arg (Jiri Olsa) [1540862]
-- [tools] perf trace beauty clone: Beautify syscall arguments (Jiri Olsa) [1540862]
-- [tools] tools include uapi: Grab a copy of linux/sched.h (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow specifying names to syscall arguments formatters (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow specifying number of syscall args for tracepointless syscalls (Jiri Olsa) [1540862]
-- [tools] perf trace: Ditch __syscall__arg_val() variant, not needed anymore (Jiri Olsa) [1540862]
-- [tools] perf trace: Use the syscall_fmt formatters without a tracepoint (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow allocating sc->arg_fmt even without the syscall tracepoint (Jiri Olsa) [1540862]
-- [tools] perf trace beauty mmap: Ignore 'fd' and 'offset' args for MAP_ANONYMOUS (Jiri Olsa) [1540862]
-- [tools] perf trace: Add missing ' = ' in the default formatting of syscall returns (Jiri Olsa) [1540862]
-- [tools] perf intel-pt: Always set no branch for dummy event (Jiri Olsa) [1540862]
-- [tools] perf intel-pt: Set no_aux_samples for the tracking event (Jiri Olsa) [1540862]
-- [tools] perf report: Show branch type in callchain entry (Jiri Olsa) [1540862]
-- [tools] perf report: Show branch type statistics for stdio mode (Jiri Olsa) [1540862]
-- [tools] perf util: Create branch.c/.h for common branch functions (Jiri Olsa) [1540862]
-- [tools] perf report: Refactor the branch info printing code (Jiri Olsa) [1540862]
-- [tools] perf record: Create a new option save_type in --branch-filter (Jiri Olsa) [1540862]
-- [tools] perf header: Add event desc to pipe-mode header (Jiri Olsa) [1540862]
-- [tools] perf tools: Add feature header record to pipe-mode (Jiri Olsa) [1540862]
-- [tools] perf tool: Add show_feature_header to perf_tool (Jiri Olsa) [1540862]
-- [tools] perf header: Change FEAT_OP* macros (Jiri Olsa) [1540862]
-- [tools] perf header: Add a buffer to struct feat_fd (Jiri Olsa) [1540862]
-- [tools] perf header: Make write_pmu_mappings pipe-mode friendly (Jiri Olsa) [1540862]
-- [tools] perf header: Use struct feat_fd in read header records (Jiri Olsa) [1540862]
-- [tools] perf header: Don't pass struct perf_file_section to process_##_feat (Jiri Olsa) [1540862]
-- [tools] perf header: Use struct feat_fd to process header records (Jiri Olsa) [1540862]
-- [tools] perf header: Use struct feat_fd for print (Jiri Olsa) [1540862]
-- [tools] perf header: Add struct feat_fd for write (Jiri Olsa) [1540862]
-- [tools] perf header: Revamp do_write() (Jiri Olsa) [1540862]
-- [tools] perf util: Add const modifier to buf in "writen" function (Jiri Olsa) [1540862]
-- [tools] perf header: Fail on write_padded error (Jiri Olsa) [1540862]
-- [tools] perf header: Add PROCESS_STR_FUN macro (Jiri Olsa) [1540862]
-- [tools] perf header: Encapsulate read and swap (Jiri Olsa) [1540862]
-- [tools] perf report: Enable finding kernel inline functions (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Simplify syscall return formatting (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify the 'arg' for DUPFD (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Do not suppress 'cmd' when zero, should be DUPFD (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow syscall arg formatters to request non suppression of zeros (Jiri Olsa) [1540862]
-- [tools] perf trace: Group per syscall arg formatter info into one struct (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify F_GETLEASE and F_SETLEASE arg/return (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export strarray for use in per-object beautifiers (Jiri Olsa) [1540862]
-- [tools] perf test sdt: Handle realpath() failure (Jiri Olsa) [1540862]
-- [tools] perf record: Do not ask for precise_ip with --no-samples (Jiri Olsa) [1540862]
-- [tools] perf evlist: Allow asking for max precise_ip in add_default() (Jiri Olsa) [1540862]
-- [tools] perf evsel: Allow asking for max precise_ip in new_cycles() (Jiri Olsa) [1540862]
-- [tools] tools build: Add test for setns() (Jiri Olsa) [1540862]
-- [tools] tools include uapi x86: Grab a copy of unistd.h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify F_GETOWN and F_SETOWN (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export the pid beautifier for use in more places (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Augment the return of F_DUPFD(_CLOEXEC) (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export the fd beautifier for use in more places (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Give syscall return beautifier more context (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify F_(GS)ETFD arg/return value (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl flags: Beautify F_SETFL arg (Jiri Olsa) [1540862]
-- [tools] perf trace beauty open flags: Move RDRW to the start of the output (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Beautify F_GETFL return value (Jiri Olsa) [1540862]
-- [tools] perf trace beauty open flags: Do not depend on the system's O_LARGEFILE define (Jiri Olsa) [1540862]
-- [tools] perf trace beauty open flags: Support O_TMPFILE and O_NOFOLLOW (Jiri Olsa) [1540862]
-- [tools] perf trace: Allow syscall_arg beautifiers to set a different return formatter (Jiri Olsa) [1540862]
-- [tools] perf beauty open: Detach the syscall_arg agnostic bits from the flags formatter (Jiri Olsa) [1540862]
-- [tools] perf trace: Beautify new write hint fcntl commands (Jiri Olsa) [1540862]
-- [tools] perf trace beauty fcntl: Basic 'arg' beautifier (Jiri Olsa) [1540862]
-- [tools] tools include uapi asm-generic: Grab a copy of fcntl.h (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Introduce syscall arg beautifier for long integers (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export the "int" and "hex" syscall arg formatters (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Allow accessing syscall args values in a syscall arg formatter (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Mask ignored fcntl 'arg' parameter (Jiri Olsa) [1540862]
-- [tools] perf trace: Only build tools/perf/trace/beauty/ when building 'perf trace' (Jiri Olsa) [1540862]
-- [tools] perf trace beauty: Export the strarrays scnprintf method (Jiri Olsa) [1540862]
-- [tools] Update uapi/linux/fcntl.h copy from the kernel (Jiri Olsa) [1540862]
-- [tools] perf trace: Beautify linux specific fcntl commands (Jiri Olsa) [1540862]
-- [tools] perf trace: Remove F_ from some of the fcntl command strings (Jiri Olsa) [1540862]
-- [tools] perf annotate: Implement visual marker for macro fusion (Jiri Olsa) [1540862]
-- [tools] perf annotate: Check for fused instructions (Jiri Olsa) [1540862]
-- [kernel] perf/core: Fix cgroup time when scheduling descendants (Jiri Olsa) [1540862]
-- [tools] perf callchain: Compare dsos (as well) for CCKEY_FUNCTION (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel/uncore: Correct num_boxes for IIO and IRP (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel/rapl: Add missing CPU IDs (Jiri Olsa) [1540862]
-- [x86] perf/x86/msr: Add missing CPU IDs (Jiri Olsa) [1540862]
-- [kernel] perf/aux: Only update ->aux_wakeup in non-overwrite mode (Jiri Olsa) [1540862]
-- [x86] perf/x86: Fix caps/ for !Intel (Jiri Olsa) [1540862]
-- [kernel] perf/core, pt, bts: Get rid of itrace_started (Jiri Olsa) [1540862]
-- [x86] perf/x86: Export some PMU attributes in caps/ directory (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel: Print LBR support statement after validation (Jiri Olsa) [1540862]
-- [x86] perf/x86: Only show format attributes when supported (Jiri Olsa) [1540862]
-- [kernel] tracing, perf: Adjust code layout in get_recursion_context() (Jiri Olsa) [1540862]
-- [kernel] perf/aux: Ensure aux_wakeup represents most recent wakeup index (Jiri Olsa) [1540862]
-- [kernel] perf/aux: Make aux_(head, wakeup) ring_buffer members long (Jiri Olsa) [1540862]
-- [kernel] perf/core: Reduce context switch overhead (Jiri Olsa) [1540862]
-- [x86] perf/x86/intel: Record branch type (Jiri Olsa) [1540862]
-- [x86] perf/x86: Move perf_event_intel_lbr.c ........ => x86/events/intel/lbr.c (Jiri Olsa) [1540862]
-- [tools] perf/core: Define the common branch type classification (Jiri Olsa) [1540862]
-
-* Mon Apr 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-879.el7]
-- [mm] hugetlb.c: clean up VM_WARN usage (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [linux] include/linux/mmdebug.h: fix VM_WARN(_*)() with CONFIG_DEBUG_VM=n (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [fs] hugetlbfs: check for pgoff value overflow v3 fix fix (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [fs] hugetlbfs: check for pgoff value overflow v3 (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [fs] hugetlbfs: check for pgoff value overflow (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [linux] include/linux/mmdebug.h: add VM_WARN_ONCE() (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [linux] include/linux/mmdebug.h: add VM_WARN which maps to WARN() (Chris von Recklinghausen) [1553005] {CVE-2018-7740}
-- [fs] Force log to disk before reading the AGF during a fstrim (Carlos Maiolino) [1248862]
-- [fs] gfs2: Remove inodes from ordered write list in gfs2_write_inode() (Abhijith Das) [1511599]
-- [fs] nfs: advance nfs_entry cookie only after decoding completes successfully (Frank Sorenson) [1468015]
-- [fs] gfs2: Zero out fallocated blocks in fallocate_chunk (Andreas Grunbacher) [1561016]
-- [fs] xprtrdma: Instrument allocation/release of rpcrdma_req/rep objects (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points to instrument QP and CQ access upcalls (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points in the client-side backchannel code paths (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points for connect events (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points to instrument MR allocation and recovery (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points to instrument memory invalidation (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points in reply decoder path (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points to instrument memory registration (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points in the RPC Reply handler paths (Benjamin Coddington) [1559349]
-- [fs] xprtrdma: Add trace points in RPC Call transmit paths (Benjamin Coddington) [1559349]
-- [fs] rpcrdma: infrastructure for static trace points in rpcrdma.ko (Benjamin Coddington) [1559349]
-- [fs] rdma/ib: Add trace point macros to display human-readable values (Benjamin Coddington) [1559349]
-- [fs] tracing: Add TRACE_DEFINE_ENUM() macro to map enums to their values (Benjamin Coddington) [1559349]
-- [fs] tracing: Give system name a pointer (Benjamin Coddington) [1559349]
-- [netdrv] hv_netvsc: Pass net_device parameter to revoke and teardown functions (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Ensure correct teardown message sequence order (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Split netvsc_revoke_buf() and netvsc_teardown_gpadl() (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Use Windows version instead of NVSP version on GPAD teardown (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Clean up extra parameter from rndis_filter_receive_data() (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: enable multicast if necessary (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Add range checking for rx packet offset and length (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Fix the return status in RX path (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: common detach logic (Mohammed Gamal) [1526392 1551625]
-- [netdrv] hv_netvsc: change GPAD teardown order on older versions (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: use RCU to fix concurrent rx and queue changes (Mohammed Gamal) [1551625 1526392]
-- [netdrv] hv_netvsc: disable NAPI before channel close (Mohammed Gamal) [1551625 1526392]
-- [netdrv] revert "hv_netvsc: Split netvsc_revoke_buf() and netvsc_teardown_gpadl()" (Mohammed Gamal) [1551625]
-- [netdrv] revert "hv_netvsc: Change GPADL teardown order according to Hyper-V version" (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: pass netvsc_device to rndis halt (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix locking during VF setup (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix locking for rx_mode (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: avoid repeated updates of packet filter (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix filter flags (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: propagate rx filters to VF (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: filter multicast/broadcast (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: defer queue selection to VF (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: use napi_schedule_irqoff (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix race in napi poll when rescheduling (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: cancel subchannel setup before halting device (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: fix error unwind handling if vmbus_open fails (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: only wake transmit queue if link is up (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: avoid retry on send during shutdown (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Use the num_online_cpus() for channel limit (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: empty current transmit aggregation if flow blocked (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: remove open_cnt reference count (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: pass netvsc_device to receive callback (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: simplify function args in receive status path (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: track memory allocation failures in ethtool stats (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: copy_to_send buf can be void (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: optimize initialization of RNDIS header (Mohammed Gamal) [1551625]
-- [kernel] vmbus: make hv_get_ringbuffer_availbytes local (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: use reciprocal divide to speed up percent calculation (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: replace divide with mask when computing padding (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: don't need local xmit_more (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: drop unused macros (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Set tx_table to equal weight after subchannels open (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Add initialization of tx_table in netvsc_device_add() (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Rename tx_send_table to tx_table (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Rename ind_table to rx_table (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Add ethtool handler to set and get TCP hash levels (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: Change the hash level variable to bit flags (Mohammed Gamal) [1551625]
-- [netdrv] hv_netvsc: report stop_queue and wake_queue (Mohammed Gamal) [1551625]
-- [mm] fork: introduce MADV_WIPEONFORK (Rafael Aquini) [1476297]
-- [x86] mpx: make mpx depend on x86-64 to free up VMA flag (Rafael Aquini) [1476297]
-- [x86] membarrier: provide core serializing command (Rafael Aquini) [1560024]
-- [kernel] membarrier: provide core serializing command, *_SYNC_CORE (Rafael Aquini) [1560024]
-- [x86] locking: implement sync_core_before_usermode() (Rafael Aquini) [1560024]
-- [kernel] locking: Introduce sync_core_before_usermode() (Rafael Aquini) [1560024]
-- [kernel] membarrier: provide GLOBAL_EXPEDITED command (Rafael Aquini) [1560024]
-- [kernel] sched: Introduce task_rcu_dereference() and try_get_task_struct() (Rafael Aquini) [1560024]
-- [powerpc] membarrier: skip memory barrier in switch_mm() (Rafael Aquini) [1560024]
-- [powerpc] wire up sys_membarrier() (Rafael Aquini) [1560024]
-- [s390] allocate sys_membarrier system call number (Rafael Aquini) [1560024]
-- [kernel] membarrier: document scheduler barrier requirements (Rafael Aquini) [1560024]
-- [kernel] membarrier: disable preemption when calling smp_call_function_many() (Rafael Aquini) [1560024]
-- [kernel] membarrier: provide register expedited private command (Rafael Aquini) [1560024]
-- [kernel] membarrier: provide expedited private command (Rafael Aquini) [1560024]
-- [kernel] membarrier: disable sys_membarrier when nohz_full is enabled (Rafael Aquini) [1560024]
-- [kernel] membarrier: system-wide memory barrier (Rafael Aquini) [1560024]
-
-* Wed Apr 25 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-878.el7]
-- [hwmon] (k10temp) Only apply temperature offset if result is positive (David Arcari) [1446653]
-- [hwmon] (k10temp) Add temperature offset for Ryzen 1900X (David Arcari) [1446653]
-- [hwmon] (k10temp) Correct model name for Ryzen 1600X (David Arcari) [1446653]
-- [hwmon] (k10temp) Add support for temperature offsets (David Arcari) [1446653]
-- [hwmon] (k10temp) Add support for family 17h (David Arcari) [1446653]
-- [hwmon] (k10temp) Move chip specific code into probe function (David Arcari) [1446653]
-- [hwmon] (k10temp) use permission-specific DEVICE_ATTR variants (David Arcari) [1446653]
-- [hwmon] (k10temp) Remove duplicate pci-id define (David Arcari) [1446653]
-- [tools] wmi: fix cross-compile var clobbering (Jarod Wilson) [1517197]
-- [tools] wmi: add a sample for dell smbios communication over WMI (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Removed duplicates in DMI whitelist (Jarod Wilson) [1517197]
-- [platform] x86: Fix dell driver init order (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Link all dell-smbios-* modules together (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Rename dell-smbios source to dell-smbios-base (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Correct some style warnings (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Correct notation for filtering (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: fix string overflow (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Removed duplicates in DMI whitelist (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: fix kbd_get_state's request value (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Allocate buffer on heap rather than globally (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Add 2-in-1 devices to the DMI whitelist (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: make some local functions static (Jarod Wilson) [1517197]
-- [platform] x86: dell-wmi: check for kmalloc() errors (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Use bool in struct quirk_entry for true/false fields (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Fix keyboard max lighting for Dell Latitude E6410 (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: fix error return code in dell_init() (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-wmi: Disable userspace interface if missing hotfix (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Allocate buffer before rfkill use (Jarod Wilson) [1517197]
-- [platform] x86: dell-*wmi*: Relay failed initial probe to dependent drivers (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-wmi: release mutex lock on WMI call failure (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-wmi: introduce userspace interface (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Add filtering support (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-smm: test for WSMT (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios-wmi: Add new WMI dispatcher driver (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Introduce dispatcher for SMM calls (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Add a sysfs interface for SMBIOS tokens (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: only run if proper oem string is detected (Jarod Wilson) [1517197]
-- [platform] x86: dell-smbios: Add pr_fmt definition to driver (Jarod Wilson) [1517197]
-- [platform] x86: dell-*: Add a generic dell-laptop notifier chain (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Fix bogus keyboard backlight sysfs interface (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Refactor kbd_led_triggers_store() (Jarod Wilson) [1517197]
-- [platform] x86: dell-laptop: Add Latitude 7480 and others to the DMI whitelist (Jarod Wilson) [1517197]
-- [pci] irq: Add pci_request_irq() and pci_free_irq() helpers (Ivan Vecera) [1568010]
-- [linux] genirq: Return the IRQ name from free_irq() (Ivan Vecera) [1568010]
-- [kernel] genirq: Fix indentation in remove_irq() (Ivan Vecera) [1568010]
-- [kernel] genirq: Prevent chip buslock deadlock (Ivan Vecera) [1568010]
-- [target] Re-add missing SCF_ACK_KREF assignment in (Mike Christie) [1561851]
-- [powerpc] dma: Fix memory leak (Prarit Bhargava) [1564602]
-- [of] fix memory leak related to safe_name() (Prarit Bhargava) [1564602]
-- [scsi] Fix a memory leak in scsi_host_dev_release() (Prarit Bhargava) [1564602]
-- [powerpc] kmemleak: Do not scan the DART table (Prarit Bhargava) [1564602]
-- [powerpc] mm: Free string after creating kmem cache (Prarit Bhargava) [1564602]
-- [powerpc] msi: Free the bitmap if it was slab allocated (Prarit Bhargava) [1564602]
-- [net] sched: actions: return explicit error when tunnel_key mode is not specified (Davide Caratti) [1554907]
-- [net] ipv6: the entire IPv6 header chain must fit the first fragment (Paolo Abeni) [1559964]
-- [net] ipv4: fix NULL dereference in free_fib_info_rcu() (Florian Westphal) [1535373]
-- [net] ipv4: add reference counting to metrics (Florian Westphal) [1535373]
-- [net] mqprio: fix potential null pointer dereference on opt (Ivan Vecera) [1557527]
-- [net] mqprio: Introduce new hardware offload mode and shaper in mqprio (Ivan Vecera) [1557527]
-- [lib] rhashtable: Fix rhlist duplicates insertion (Xin Long) [1559106]
-- [net] ipv6: fix access to non-linear packet in ndisc_fill_redirect_hdr_option() (Lorenzo Bianconi) [1533773]
-- [net] ip_gre: clear feature flags when incompatible o_flags are set (Lorenzo Bianconi) [1489629]
-- [net] ip_gre: add the support for i/o_flags update via ioctl (Lorenzo Bianconi) [1489629]
-- [net] ip_gre: add the support for i/o_flags update via netlink (Lorenzo Bianconi) [1489629]
-- [net] ip6_tunnel: update mtu properly for ARPHRD_ETHER tunnel device in tx path (Xin Long) [1527291]
-- [net] tcp/dccp: Re-arm TIME_WAIT reaping hangman timer if thread slot quota is exceeded (Stefano Brivio) [1533771]
-
-* Mon Apr 23 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-877.el7]
-- [nvme] nvme-fcloop: avoid possible uninitialized variable warning (David Milburn) [1519689]
-- [nvme] check hw sectors before setting chunk sectors (David Milburn) [1519689]
-- [nvme] call blk_integrity_unregister after queue is cleaned up (David Milburn) [1519689]
-- [nvme] nvme-pci: fix NULL pointer dereference in nvme_free_host_mem() (David Milburn) [1519689]
-- [nvme] nvme-rdma: fix memory leak during queue allocation (David Milburn) [1519689]
-- [nvme] nvme-fc: don't use bit masks for set/test_bit() numbers (David Milburn) [1519689]
-- [nvme] nvme-pci: add quirk for delay before CHK RDY for WDC SN200 (David Milburn) [1519689]
-- [nvme] nvmet-fc: correct ref counting error when deferred rcv used (David Milburn) [1519689]
-- [nvme] nvme-pci: avoid hmb desc array idx out-of-bound when hmmaxd set (David Milburn) [1519689]
-- [nvme] nvme-pci: disable APST on Samsung SSD 960 EVO + ASUS PRIME B350M-A (David Milburn) [1519689]
-- [nvme] nvmet_fc: fix better length checking (David Milburn) [1519689]
-- [nvme] nvmet: better data length validation (David Milburn) [1519689]
-- [nvme] send uevent for some asynchronous events (David Milburn) [1519689]
-- [nvme] unexport starting async event work (David Milburn) [1519689]
-- [nvme] remove handling of multiple AEN requests (David Milburn) [1519689]
-- [nvme] nvme-fc: remove unused "queue_size" field (David Milburn) [1519689]
-- [nvme] centralize AEN defines (David Milburn) [1519689]
-- [nvme] nvmet: remove redundant local variable (David Milburn) [1519689]
-- [nvme] nvmet: remove redundant memset if failed to get_smart_log failed (David Milburn) [1519689]
-- [nvme] fix eui_show() print format (David Milburn) [1519689]
-- [nvme] compare NQN string with right size (David Milburn) [1519689]
-- [nvme] nvmet: fix comment typos in admin-cmd.c (David Milburn) [1519689]
-- [nvme] nvme-rdma: fix nvme_rdma_create_queue_ib error flow (David Milburn) [1519689]
-- [nvme] nvmet-rdma: update queue list during ib_device removal (David Milburn) [1519689]
-- [nvme] check admin passthru command effects (David Milburn) [1519689]
-- [nvme] factor get log into a helper (David Milburn) [1519689]
-- [nvme] comment typo fixed in clearing AER (David Milburn) [1519689]
-- [nvme] Remove unused headers (David Milburn) [1519689]
-- [nvme] flush reset_work before safely continuing with delete operation (David Milburn) [1519689]
-- [nvme] nvme-rdma: reuse nvme_delete_ctrl when reconnect attempts expire (David Milburn) [1519689]
-- [nvme] consolidate common code from ->reset_work (David Milburn) [1519689]
-- [nvme] nvme-rdma: remove nvme_rdma_remove_ctrl (David Milburn) [1519689]
-- [nvme] move controller deletion to common code (David Milburn) [1519689]
-- [nvme] check for a live controller in nvme_dev_open (David Milburn) [1519689]
-- [nvme] get rid of nvme_ctrl_list (David Milburn) [1519689]
-- [nvme] switch controller refcounting to use struct device (David Milburn) [1519689]
-- [nvme] kobject: Export kobject_get_unless_zero() (David Milburn) [1519689]
-- [nvme] simplify nvme_open (David Milburn) [1519689]
-- [nvme] use kref_get_unless_zero in nvme_find_get_ns (David Milburn) [1519689]
-- [nvme] nvme-rdma: Add debug message when reaches timeout (David Milburn) [1519689]
-- [nvme] nvme-rdma: align nvme_rdma_device structure (David Milburn) [1519689]
-- [nvme] use ida_simple_(get,remove) for the controller instance (David Milburn) [1519689]
-- [nvme] nvmet: Change max_nsid in subsystem due to ns_disable if needed (David Milburn) [1519689]
-- [nvme] nvme-loop: Add BLK_MQ_F_NO_SCHED flag to admin tag set (David Milburn) [1519689]
-- [nvme] nvme-fc: Add BLK_MQ_F_NO_SCHED flag to admin tag set (David Milburn) [1519689]
-- [nvme] nvme-rdma: Add BLK_MQ_F_NO_SCHED flag to admin tag set (David Milburn) [1519689]
-- [nvme] nvme-pci: fix typos in comments (David Milburn) [1519689]
-- [nvme] nvme-rdma: stop controller reset if the controller is deleting (David Milburn) [1519689]
-- [nvme] nvme-rdma: change queue flag semantics DELETING -> ALLOCATED (David Milburn) [1519689]
-- [nvme] nvme-rdma: teardown admin/io queues once on error recovery (David Milburn) [1519689]
-- [nvme] nvme-rdma: move assignment to declaration (David Milburn) [1519689]
-- [nvme] nvme-rdma: fix wrong logging message (David Milburn) [1519689]
-- [nvme] nvme-rdma: pass tagset to directly nvme_rdma_free_tagset (David Milburn) [1519689]
-- [nvme] nvme-fabrics: request transport module (David Milburn) [1519689]
-- [nvme] use menu Kconfig interface (David Milburn) [1519689]
-- [nvme] nvme-rdma: Fix error status return in tagset allocation failure (David Milburn) [1519689]
-- [nvme] nvme-rdma: Fix possible double free in reconnect flow (David Milburn) [1519689]
-- [nvme] nvme-pci: Use PCI bus address for data/queues in CMB (David Milburn) [1519689]
-- [nvme] fix visibility of "uuid" ns attribute (David Milburn) [1519689]
-- [nvme] nvme-rdma: give up reconnect if state change fails (David Milburn) [1519689]
-- [nvme] nvme-core: Use nvme_wq to queue async events and fw activation (David Milburn) [1519689]
-- [nvme] nvmet: add support for reporting the host identifier (David Milburn) [1519689]
-- [nvme] factor metadata handling out of __nvme_submit_user_cmd (David Milburn) [1519689]
-- [nvme] allow calling nvme_change_ctrl_state from irq context (David Milburn) [1519689]
-- [nvme] honor RTD3 Entry Latency for shutdowns (David Milburn) [1519689]
-- [nvme] nvme-rdma: Use unlikely macro in the fast path (David Milburn) [1519689]
-- [nvme] rename AMS symbolic constants to fit specification (David Milburn) [1519689]
-- [nvme] add symbolic constants for CC identifiers (David Milburn) [1519689]
-- [nvme] fix identify namespace logging (David Milburn) [1519689]
-- [nvme] nvme-fabrics: log a warning if hostid is invalid (David Milburn) [1519689]
-- [nvme] nvme-rdma: call ops->reg_read64 instead of nvmf_reg_read64 (David Milburn) [1519689]
-- [nvme] nvme-rdma: cleanup error path in controller reset (David Milburn) [1519689]
-- [nvme] nvme-rdma: introduce nvme_rdma_start_queue (David Milburn) [1519689]
-- [nvme] nvme-rdma: rename nvme_rdma_init_queue to nvme_rdma_alloc_queue (David Milburn) [1519689]
-- [nvme] nvme-rdma: stop queues instead of simply flipping their state (David Milburn) [1519689]
-- [nvme] nvme-rdma: introduce configure/destroy io queues (David Milburn) [1519689]
-- [nvme] nvme-rdma: reuse configure/destroy_admin_queue (David Milburn) [1519689]
-- [nvme] nvme-rdma: don't free tagset on resets (David Milburn) [1519689]
-- [nvme] nvmet: use NVME_NSID_ALL (David Milburn) [1519689]
-- [nvme] nvme-rdma: disable the controller on resets (David Milburn) [1519689]
-- [nvme] nvme-rdma: move tagset allocation to a dedicated routine (David Milburn) [1519689]
-- [nvme] Add admin_tagset pointer to nvme_ctrl (David Milburn) [1519689]
-- [nvme] nvme-rdma: move nvme_rdma_configure_admin_queue code location (David Milburn) [1519689]
-- [nvme] nvme-rdma: remove NVME_RDMA_MAX_SEGMENT_SIZE (David Milburn) [1519689]
-- [nvme] nvmet: fix the return error code of target if host is not allowed (David Milburn) [1519689]
-- [nvme] add support for NVMe 1.3 Timestamp Feature (David Milburn) [1519689]
-- [nvme] define NVME_NSID_ALL (David Milburn) [1519689]
-- [nvme] add support for FW activation without reset (David Milburn) [1519689]
-- [nvme] nvmet-rdma: remove redundant empty device add callout (David Milburn) [1519689]
-- [nvme] nvme-rdma: remove redundant empty device add callout (David Milburn) [1519689]
-- [nvme] nvme-fabrics: Allow 0 as KATO value (David Milburn) [1519689]
-- [nvme] nvme-pci: initialize queue memory before interrupts (David Milburn) [1519689]
-- [nvme] nvme-pci: implement the HMB entry number and size limitations (David Milburn) [1519689]
-- [nvme] nvme-pci: propagate (some) errors from host memory buffer setup (David Milburn) [1519689]
-- [nvme] nvme-pci: use appropriate initial chunk size for HMB allocation (David Milburn) [1519689]
-- [nvme] nvme-pci: fix host memory buffer allocation fallback (David Milburn) [1519689]
-- [nvme] pci: serialize pci resets (David Milburn) [1543698]
-
-* Mon Apr 23 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-876.el7]
-- [net] svcrdma: Fix Read chunk round-up (Don Dutile) [1549856]
-- [net] xprtrdma: Fix BUG after a device removal (Don Dutile) [1549856]
-- [net] xprtrdma: Fix calculation of ri_max_send_sges (Don Dutile) [1549856]
-- [net] xprtrdma: Correct some documenting comments (Don Dutile) [1549856]
-- [net] xprtrdma: Fix "bytes registered" accounting (Don Dutile) [1549856]
-- [net] svcrdma: Post Receives in the Receive completion handler (Don Dutile) [1549856]
-- [net] xprtrdma: Introduce rpcrdma_mw_unmap_and_put (Don Dutile) [1549856]
-- [net] xprtrdma: Remove usage of "mw" (Don Dutile) [1549856]
-- [net] xprtrdma: Replace all usage of "frmr" with "frwr" (Don Dutile) [1549856]
-- [net] xprtrdma: Don't clear RPC_BC_PA_IN_USE on pre-allocated rpc_rqst's (Don Dutile) [1549856]
-- [net] xprtrdma: Split xprt_rdma_send_request (Don Dutile) [1549856]
-- [net] xprtrdma: buf_free not called for CB replies (Don Dutile) [1549856]
-- [net] xprtrdma: Move unmap-safe logic to rpcrdma_marshal_req (Don Dutile) [1549856]
-- [net] xprtrdma: Support IPv6 in xprt_rdma_set_port (Don Dutile) [1549856]
-- [net] xprtrdma: Remove another sockaddr_storage field (cdata::addr) (Don Dutile) [1549856]
-- [net] xprtrdma: Initialize the xprt address string array earlier (Don Dutile) [1549856]
-- [net] xprtrdma: Remove unused padding variables (Don Dutile) [1549856]
-- [net] xprtrdma: Remove ri_reminv_expected (Don Dutile) [1549856]
-- [net] xprtrdma: Per-mode handling for Remote Invalidation (Don Dutile) [1549856]
-- [net] xprtrdma: Eliminate unnecessary lock cycle in xprt_rdma_send_request (Don Dutile) [1549856]
-- [net] xprtrdma: Fix backchannel allocation of extra rpcrdma_reps (Don Dutile) [1549856]
-- [net] xprtrdma: Fix buffer leak after transport set up failure (Don Dutile) [1549856]
-- [infiniband] ib/rxe: remove redudant parameter in rxe_av_fill_ip_info (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: change the function rxe_av_fill_ip_info to void (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: change the function to void from int (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: remove unnecessary parameter in rxe_av_to_attr (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: change the function to void from int (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: remove redudant parameter in function (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: Change RDMA_RXE kconfig to use select (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Fix rxe_qp_cleanup() (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Fix a race condition in rxe_requester() (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Fix a race condition related to the QP error state (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: remove unnecessary skb_clone in xmit (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: add the static type to the variable (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Remove useless EXPORT_SYMBOL (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: Avoid passing unused index pointer which is optional (Don Dutile) [1520302 1549856]
-- [infiniband] ib/mthca: remove mthca_user.h (Don Dutile) [1549856]
-- [infiniband] ib/mthca: Fix gup usage in mthca_map_user_db() (Don Dutile) [1549856]
-- [infiniband] ib/mthca: Use zeroing memory allocator than allocator/memset (Don Dutile) [1549856]
-- [infiniband] ib/ocrdma: Use zeroing memory allocator than allocator/memset (Don Dutile) [1549856]
-- [infiniband] rdma/ocrdma: Fix permissions for OCRDMA_RESET_STATS (Don Dutile) [1549856]
-- [infiniband] ib/ocrdma: Remove unneeded conversions to bool (Don Dutile) [1549856]
-- [infiniband] nes: Change accelerated flag to bool (Don Dutile) [1549856]
-- [infiniband] nes: remove unused 'timeval' struct member (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Fix usage of user response structures in ABI file (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Use zeroing memory allocator than allocator/memset (Don Dutile) [1549856]
-- [uapi] rdma/vmw_pvrdma: Remove usage of BIT() from UAPI header (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Use refcount_t instead of atomic_t (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Use more specific sizeof in kcalloc (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Clarify QP and CQ is_kernel logic (Don Dutile) [1549856]
-- [uapi] rdma/vmw_pvrdma: Add UAR SRQ macros in ABI header file (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Do not re-calculate npages (Don Dutile) [1549856]
-- [infiniband] ib/iser: Combine substrings for three messages (Don Dutile) [1549856]
-- [infiniband] ib/iser: Delete an unnecessary variable initialisation in iser_send_data_out() (Don Dutile) [1549856]
-- [infiniband] ib/iser: Delete an error message for a failed memory allocation in iser_send_data_out() (Don Dutile) [1549856]
-- [infiniband] ib/srp: Add target_can_queue login parameter (Don Dutile) [1549856]
-- [scsi] ib/srp: Add RDMA/CM support (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Move the code for parsing struct ib_cm_req_event_param (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Preparations for adding RDMA/CM support (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Don't allow reordering of commands on wait list (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Fix a race condition related to wait list processing (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Fix login-related race conditions (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Log all zero-length writes and completions (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Simplify srpt_close_session() (Don Dutile) [1549856]
-- [infiniband] rdma/srpt: Fix RCU debug build error (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Rework multi-channel support (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Use the source GID as session name (Don Dutile) [1549856]
-- [infiniband] ib/srpt: One target per port (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Add P_Key support (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Rework srpt_disconnect_ch_sync() (Don Dutile) [1549856]
-- [infiniband] rdma/srpt: Fix RCU debug build error (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Make it safe to use RCU for srpt_device.rch_list (Don Dutile) [1549856]
-- [infiniband] ib/srp: Refactor srp_send_req() (Don Dutile) [1549856]
-- [infiniband] ib/srp: Improve path record query error message (Don Dutile) [1549856]
-- [infiniband] ib/srp: Use kstrtoull() instead of simple_strtoull() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Micro-optimize I/O context state manipulation (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Inline srpt_get_cmd_state() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Introduce srpt_format_guid() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Fix ACL lookup during login (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Reduce frequency of receive failure messages (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Convert a warning into a debug message (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Use the IPv6 format for GIDs in log messages (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Verify port numbers in srpt_event_handler() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Reduce the severity level of a log message (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Rename a local variable, a member variable and a constant (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Document all structure members in ib_srpt.h (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Fix kernel-doc warnings in ib_srpt.c (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Remove an unused structure member (Don Dutile) [1549856]
-- [infiniband] ib/srp: replace custom implementation of hex2bin() (Don Dutile) [1549856]
-- [infiniband] ib/ipoib: Do not warn if IPoIB debugfs doesn't exist (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Fix for potential no-carrier state (Don Dutile) [1520300 1549856 1548474]
-- [infiniband] ib/ipoib: Update pathrec field if not valid record (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Avoid memory leak if the SA returns a different DGID (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Warn when one port fails to initialize (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Replace printk with pr_warn (Don Dutile) [1520300 1549856]
-- [rdma] ucma: Introduce safer rdma_addr_size() variants (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Check that device exists prior to accessing it (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Check that device is connected prior to access it (Don Dutile) [1549856]
-- [infiniband] rdma/rdma_cm: Fix use after free race with process_one_req (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Correct option size check using optlen (Don Dutile) [1549856]
-- [infiniband] rdma/restrack: Move restrack_clean to be symmetrical to restrack_init (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Ensure that CM_ID exists prior to access it (Don Dutile) [1549856]
-- [rdma] verbs: Remove restrack entry from XRCD structure (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Fix use-after-free access in ucma_close (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Check AF family prior resolving address (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Don't allow join attempts for unsupported AF family (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Fix access to non-initialized CM_ID object (Don Dutile) [1549856]
-- [infiniband] rdma/core: Do not use invalid destination in determining port reuse (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Check that user doesn't overflow QP state (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Limit possible option size (Don Dutile) [1549856]
-- [infiniband] ib/core: Fix possible crash to access NULL netdev (Don Dutile) [1549856]
-- [infiniband] rdma/core: Reduce poll batch for direct cq polling (Don Dutile) [1549856]
-- [infiniband] ib/core : Add null pointer check in addr_resolve (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Fix kernel panic while using XRC_TGT QP type (Don Dutile) [1549856]
-- [infiniband] rdma/restrack: don't use uaccess_kernel() (Don Dutile) [1549856]
-- [infiniband] rdma/verbs: Check existence of function prior to accessing it (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Sanitize user entered port numbers prior to access it (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Fix circular locking dependency (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Fix bad unlock balance in ib_uverbs_close_xrcd (Don Dutile) [1549856]
-- [infiniband] rdma/restrack: Increment CQ restrack object before committing (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Protect from command mask overflow (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Fix unbalanced unlock on error path for rdma_explicit_destroy (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Improve lockdep_check (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Protect from races between lookup and destroy of uobjects (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Hold the uobj write lock after allocate (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Fix possible oops with duplicate ioctl attributes (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Add ioctl support for 32bit processes (Don Dutile) [1549856]
-- [uapi] ib/uverbs: Use __aligned_u64 for uapi headers (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Fix method merging in uverbs_ioctl_merge (Don Dutile) [1549856]
-- [rdma] ib/uverbs: Use u64_to_user_ptr() not a union (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Use inline data transfer for UHW_IN (Don Dutile) [1549856]
-- [rdma] ib/uverbs: Always use the attribute size provided by the user (Don Dutile) [1549856]
-- [rdma] restrack: Remove unimplemented XRCD object (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: Use the standard kConfig format for experimental (Don Dutile) [1549856]
-- [infiniband] ib: Update references to libibverbs (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid a potential OOPs for an unused optional parameter (Don Dutile) [1549856]
-- [rdma] ib/core: Map iWarp AH type to undefined in rdma_ah_find_type (Don Dutile) [1549856]
-- [infiniband] rdma/nldev: missing error code in nldev_res_get_doit() (Don Dutile) [1549856]
-- [uapi] rdma/netlink: Hide unimplemented NLDEV commands (Don Dutile) [1549856]
-- [uapi] rdma/nldev: Provide detailed QP information (Don Dutile) [1549856]
-- [uapi] rdma/nldev: Provide global resource utilization (Don Dutile) [1549856]
-- [infiniband] rdma/core: Add resource tracking for create and destroy PDs (Don Dutile) [1549856]
-- [infiniband] rdma/core: Add resource tracking for create and destroy CQs (Don Dutile) [1549856]
-- [infiniband] rdma/core: Add resource tracking for create and destroy QPs (Don Dutile) [1549856]
-- [rdma] restrack: Add general infrastructure to track RDMA resources (Don Dutile) [1549856]
-- [rdma] core: Save kernel caller name when creating PD and CQ objects (Don Dutile) [1549856]
-- [rdma] core: Use the MODNAME instead of the function name for pd callers (Don Dutile) [1549856]
-- [uapi] rdma: Move enum ib_cq_creation_flags to uapi headers (Don Dutile) [1549856]
-- [infiniband] rdma/cm: Fix access to uninitialized variable (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Use existing netif_is_bond_master function (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid SGID attributes query while converting GID from OPA to IB (Don Dutile) [1549856]
-- [infiniband] ib/umad: Fix use of unprotected device pointer (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Use an unambiguous errno for method not supported (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Update RoCE multicast routines to use net namespace (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Update cma_validate_port to honor net namespace (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Refactor to access multiple fields of rdma_dev_addr (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Check existence of netdevice during port validation (Don Dutile) [1549856]
-- [rdma] core: Simplify rdma_addr_get_sgid() to not support RoCE (Don Dutile) [1549856]
-- [infiniband] rdma/ucma: Use rdma cm API to query GID (Don Dutile) [1549856]
-- [rdma] cma: Introduce API to read GIDs for multiple transports (Don Dutile) [1549856]
-- [infiniband] ib/cq: Don't force IB_POLL_DIRECT poll context for ib_process_cq_direct (Don Dutile) [1549856]
-- [infiniband] ib/core: postpone WR initialization during queue drain (Don Dutile) [1549856]
-- [infiniband] ib/cma: use strlcpy() instead of strncpy() (Don Dutile) [1549856]
-- [rdma] core: Clarify rdma_ah_find_type (Don Dutile) [1549856]
-- [rdma] ib/core: Fix ib_wc structure size to remain in 64 bytes boundary (Don Dutile) [1549856]
-- [uapi] rdma: Mark imm_data as be32 in the verbs uapi header (Don Dutile) [1549856]
-- [infiniband] ib/core: Limit DMAC resolution to RoCE Connected QPs (Don Dutile) [1549856]
-- [infiniband] ib/core: Attempt DMAC resolution for only RoCE (Don Dutile) [1549856]
-- [infiniband] ib/core: Limit DMAC resolution to userspace QPs (Don Dutile) [1549856]
-- [infiniband] ib/core: Perform modify QP on real one (Don Dutile) [1549856]
-- [infiniband] fix sw/rdmavt/* kernel-doc notation (Don Dutile) [1549856]
-- [infiniband] fix core/fmr_pool.c kernel-doc notation (Don Dutile) [1549856]
-- [infiniband] fix core/verbs.c kernel-doc notation (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Fix rdma_cm path querying for RoCE (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Fix rdma_cm raw IB path setting for RoCE (Don Dutile) [1549856]
-- [rdma] cma, ucma: Simplify and rename rdma_set_ib_paths (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Provide a function to set RoCE path record L2 parameters (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Use the right net namespace for the rdma_cm_id (Don Dutile) [1549856]
-- [infiniband] ib/core: Increase number of char device minors (Don Dutile) [1549856]
-- [infiniband] ib/core: Remove the locking for character device bitmaps (Don Dutile) [1549856]
-- [infiniband] ib/core: Change roce_rescan_device to return void (Don Dutile) [1549856]
-- [rdma] ib/core: Introduce driver QP type (Don Dutile) [1549856]
-- [infiniband] rdma/core: Add encode/decode FDR/EDR rates (Don Dutile) [1549856]
-- [infiniband] ib/core: Fix two kernel warnings triggered by rxe registration (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Mark end of CMA ID messages (Don Dutile) [1549856]
-- [infiniband] rdma/nldev: Refactor setting the nldev handle to a common function (Don Dutile) [1549856]
-- [infiniband] rdma/core: Replace open-coded variant of put_device (Don Dutile) [1549856]
-- [infiniband] rdma/netlink: Simplify code of autoload modules (Don Dutile) [1549856]
-- [infiniband] drop unknown function from core_priv.h (Don Dutile) [1549856]
-- [infiniband] ib/core: Make sure that PSN does not overflow (Don Dutile) [1549856]
-- [infiniband] ib/core: Use rdma_cap_opa_mad to check for OPA (Don Dutile) [1549856]
-- [rdma] ib/sa: Check dlid before SA agent queries for ClassPortInfo (Don Dutile) [1549856]
-- [infiniband] remove duplicate includes (Don Dutile) [1549856]
-- [infiniband] ib/cm: Refactor to avoid setting path record software only fields (Don Dutile) [1549856]
-- [rdma] ib/core, umad, cm: Rename ib_init_ah_from_wc to ib_init_ah_attr_from_wc (Don Dutile) [1549856]
-- [rdma] ib/core, cm, cma, ipoib: Rename ib_init_ah_from_path to ib_init_ah_attr_from_path (Don Dutile) [1549856]
-- [infiniband] ib/cm: Fix sleeping while spin lock is held (Don Dutile) [1549856]
-- [infiniband] ib/cm: Handle address handle attribute init error (Don Dutile) [1549856]
-- [infiniband] ib/cm, umad: Handle av init error (Don Dutile) [1549856]
-- [rdma] ib/core, ipoib: Simplify ib_find_gid to search only for IB link layer (Don Dutile) [1549856]
-- [infiniband] rdma/core: Avoid copying ifindex twice (Don Dutile) [1549856]
-- [rdma] core, cma: Simplify rdma_translate_ip (Don Dutile) [1549856]
-- [rdma] ib/core: Removed unused function (Don Dutile) [1549856]
-- [infiniband] rdma/core: Avoid redundant memcpy in rdma_addr_find_l2_eth_by_grh (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid exporting module internal ib_find_gid_by_filter() (Don Dutile) [1549856]
-- [infiniband] ib/core: Refactor to avoid unnecessary check on GID lookup miss (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid unnecessary type cast (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Introduce and use helper functions to init work (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Avoid setting path record type twice (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Simplify netdev check (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Set default GID type as RoCE when resolving RoCE route (Don Dutile) [1549856]
-- [infiniband] ib/umem: Fix use of npages/nmap fields (Don Dutile) [1549856]
-- [infiniband] ib/cm: Add debug prints to ib_cm (Don Dutile) [1549856]
-- [infiniband] ib/core: Fix memory leak in cm_req_handler error flows (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Use correct size when writing netlink stats (Don Dutile) [1549856]
-- [infiniband] ib/core: Avoid exporting module internal function (Don Dutile) [1549856]
-- [infiniband] ib/core: Depend on IPv6 stack to resolve link local address for RoCEv2 (Don Dutile) [1549856]
-- [rdma] ib/core/cm: Fix generating a return AH for RoCEE (Don Dutile) [1549856]
-- [infiniband] rdma/iwpm: Fix uninitialized error code in iwpm_send_mapinfo() (Don Dutile) [1549856]
-- [infiniband] ib/core: Use PTR_ERR_OR_ZERO() (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Use refcount_dec_and_test to avoid warning (Don Dutile) [1549856]
-- [infiniband] rdma/vmw_pvrdma: Call ib_umem_release on destroy QP path (Don Dutile) [1549856]
-- [uapi] rdma/vmw_pvrdma: Add shared receive queue support (Don Dutile) [1549856]
-- [net] xprtrdma: Spread reply processing over more CPUs (Don Dutile) [1549856]
-- [net] xprtrdma: Update copyright notices (Don Dutile) [1549856]
-- [net] xprtrdma: Remove include for linux/prefetch.h (Don Dutile) [1549856]
-- [net] rpcrdma: Remove C structure definitions of XDR data items (Don Dutile) [1549856]
-- [net] xprtrdma: Put Send CQ in IB_POLL_WORKQUEUE mode (Don Dutile) [1549856]
-- [net] xprtrdma: Remove atomic send completion counting (Don Dutile) [1549856]
-- [net] xprtrdma: RPC completion should wait for Send completion (Don Dutile) [1549856]
-- [net] xprtrdma: Refactor rpcrdma_deferred_completion (Don Dutile) [1549856]
-- [net] xprtrdma: Add a field of bit flags to struct rpcrdma_req (Don Dutile) [1549856]
-- [net] xprtrdma: Add data structure to manage RDMA Send arguments (Don Dutile) [1549856]
-- [kernel] asm-generic: guard smp_store_release/load_acquire (Don Dutile) [1549856]
-- [kernel] arch: conditionally define smp_(mb,rmb,wmb) (Don Dutile) [1549856]
-- [net] xprtrdma: "Unoptimize" rpcrdma_prepare_hdr_sge() (Don Dutile) [1549856]
-- [net] xprtrdma: Change return value of rpcrdma_prepare_send_sges() (Don Dutile) [1549856]
-- [net] xprtrdma: Fix error handling in rpcrdma_prepare_msg_sges() (Don Dutile) [1549856]
-- [net] xprtrdma: Clean up SGE accounting in rpcrdma_prepare_msg_sges() (Don Dutile) [1549856]
-- [net] xprtrdma: Decode credits field in rpcrdma_reply_handler (Don Dutile) [1549856]
-- [net] xprtrdma: Invoke rpcrdma_reply_handler directly from RECV completion (Don Dutile) [1549856]
-- [net] xprtrdma: Refactor rpcrdma_reply_handler some more (Don Dutile) [1549856]
-- [net] xprtrdma: Move decoded header fields into rpcrdma_rep (Don Dutile) [1549856]
-- [net] xprtrdma: Throw away reply when version is unrecognized (Don Dutile) [1549856]
-- [net] svcrdma: Enqueue after setting XPT_CLOSE in completion handlers (Don Dutile) [1549856]
-- [net] svcrdma: Preserve CB send buffer across retransmits (Don Dutile) [1549856]
-- [net] xprtrdma: Remove ro_unmap_safe (Don Dutile) [1549856]
-- [net] xprtrdma: Use ro_unmap_sync in xprt_rdma_send_request (Don Dutile) [1549856]
-- [net] xprtrdma: Don't defer fencing an async RPC's chunks (Don Dutile) [1549856]
-- [infiniband] rdma/usnic: Instantiate data structures once (Don Dutile) [1549856]
-- [infiniband] rdma/usnic: Remove a set-but-not-used variable (Don Dutile) [1549856]
-- [infiniband] rdma/usnic: Make the compiler check declaration consistency during compilation (Don Dutile) [1549856]
-- [infiniband] ib/ocrdma_hw: remove unnecessary code in ocrdma_mbx_dealloc_lkey (Don Dutile) [1549856]
-- [infiniband] rdma/ocrdma: Remove set-but-not-used variables (Don Dutile) [1549856]
-- [infiniband] rdma/ocrdma: Suppress gcc 7 fall-through complaints (Don Dutile) [1549856]
-- [infiniband] rdma/ocrdma: Use NULL instead of 0 to represent a pointer (Don Dutile) [1549856]
-- [infiniband] ib/nes: Fix a race condition in nes_inetaddr_event() (Don Dutile) [1549856]
-- [infiniband] ib/ocrdma: pr_err() strings should end with newlines (Don Dutile) [1549856]
-- [infiniband] ib/nes: Remove set-but-not-used variables (Don Dutile) [1549856]
-- [infiniband] ib/nes: Suppress gcc 7 fall-through complaints (Don Dutile) [1549856]
-- [infiniband] ib/nes: Fix indentation (Don Dutile) [1549856]
-- [infiniband] ib/mthca: Fix indentation (Don Dutile) [1549856]
-- [infiniband] ib/rxe: don't crash, if allocation of crc algorithm failed (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: Convert timers to use timer_setup() (Don Dutile) [1520302 1549856]
-- [infiniband] rdma/rxe: Suppress gcc 7 fall-through complaints (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: put the pool on allocation failure (Don Dutile) [1520302 1549856]
-- [infiniband] ib/rxe: check for allocation failure on elem (Don Dutile) [1520302 1549856]
-- [infiniband] ib/srpt: Disable RDMA access by the initiator (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Ensure that modifying the use_srq configfs attribute works (Don Dutile) [1549856 1557122]
-- [infiniband] ib/srpt: Wait until channel release has finished during module unload (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Introduce srpt_disconnect_ch_sync() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Introduce helper functions for SRQ allocation and freeing (Don Dutile) [1549856 1557122]
-- [infiniband] ib/srpt: Post receive work requests after qp transition to INIT state (Don Dutile) [1549856]
-- [infiniband] ib/srp: Make CM timeout dependent on subnet timeout (Don Dutile) [1549856]
-- [infiniband] ib/srp: Cache global rkey (Don Dutile) [1549856]
-- [infiniband] ib/srp: Remove second argument of srp_destroy_qp() (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Change default behavior from using SRQ to using RC (Don Dutile) [1549856 1557122]
-- [target] ib/srpt: Accept GUIDs as port names (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Report login failures only once (Don Dutile) [1549856]
-- [infiniband] ib_srpt: Convert to target_alloc_session usage (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Cache global L_Key (Don Dutile) [1549856]
-- [infiniband] ib/srpt: Limit the send and receive queue sizes to what the HCA supports (Don Dutile) [1549856]
-- [infiniband] rdma/isert: Suppress gcc 7 fall-through complaints (Don Dutile) [1549856]
-- [infiniband] ib/ipoib: Fix lockdep issue found on ipoib_ib_dev_heavy_flush (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Restore MM behavior in case of tx_ring allocation failure (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib, iser: Consistent print format of vendor error (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Remove device when one port fails to init (Don Dutile) [1520300 1549856]
-- [infiniband] rdma/netlink: Fix locking around __ib_get_device_by_index (Don Dutile) [1520300 1549856]
-- [infiniband] ib/ipoib: Fix race condition in neigh creation (Don Dutile) [1520300 1549856]
-- [infiniband] ib/uverbs: Fix command checking as part of ib_uverbs_ex_modify_qp() (Don Dutile) [1549856]
-- [infiniband] ib/core: Init subsys if compiled to vmlinuz-core (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Make sure that PSN is not over max allowed (Don Dutile) [1549856]
-- [infiniband] ib: INFINIBAND should depend on HAS_DMA (Don Dutile) [1549856]
-- [rdma] core: Rename kernel modify_cq to better describe its usage (Don Dutile) [1549856]
-- [uapi] ib/uverbs: Add CQ moderation capability to query_device (Don Dutile) [1549856]
-- [uapi] ib/uverbs: Allow CQ moderation with modify CQ (Don Dutile) [1549856]
-- [rdma] core: Make function rdma_copy_addr return void (Don Dutile) [1549856]
-- [infiniband] rdma/core: avoid uninitialized variable warning in create_udata (Don Dutile) [1549856]
-- [rdma] ib/core: Add PCI write end padding flags for WQ and QP (Don Dutile) [1549856]
-- [rdma] umem: Avoid partial declaration of non-static function (Don Dutile) [1549856]
-- [rdma] ib/core: Fix calculation of maximum RoCE MTU (Don Dutile) [1549856]
-- [infiniband] ib/core: Fix unable to change lifespan entry for hw_counters (Don Dutile) [1549856]
-- [rdma] ib: Let ib_core resolve destination mac address (Don Dutile) [1549856]
-- [rdma] ib/core: Introduce and use rdma_create_user_ah (Don Dutile) [1549856]
-- [infiniband] rdma/uverbs: Make the code in ib_uverbs_cmd_verbs() less confusing (Don Dutile) [1549856]
-- [infiniband] rdma/iwcm: Remove a set-but-not-used variable (Don Dutile) [1549856]
-- [infiniband] rdma/cma: Avoid triggering undefined behavior (Don Dutile) [1549856]
-- [infiniband] ib/cm: Suppress gcc 7 fall-through complaints (Don Dutile) [1549856]
-- [rdma] ib/core: Fix endianness annotation in rdma_is_multicast_addr() (Don Dutile) [1549856]
-- [infiniband] ib/core: remove redundant check on prot_sg_cnt (Don Dutile) [1549856]
-- [rdma] ib/core: Simplify sa_path_set_(sd)lid() calls (Don Dutile) [1549856]
-- [infiniband] add MMU dependency for user_mem (Don Dutile) [1549856]
-- [infiniband] rdma/nes: Convert timers to use timer_setup() (Don Dutile) [1549856]
-- [kernel] timer: Prepare to change timer callback argument type (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: clean up INIT_UDATA() macro usage (Don Dutile) [1549856]
-- [infiniband] ib/uverbs: clean up INIT_UDATA_BUF_OR_NULL usage (Don Dutile) [1549856]
-- [infiniband] ib: Move PCI dependency from root KConfig to HW's KConfigs (Don Dutile) [1549856]
-- [infiniband] ib/core: fix spelling mistake: "aceess" -> "access" (Don Dutile) [1549856]
-
-* Sun Apr 22 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-875.el7]
-- [thunderbolt] Add support for Intel Titan Ridge (Jarod Wilson) [1495244]
-- [infiniband] mlx5: Set the default active rate and width to QDR and 4X (Honggang Li) [1554535]
-- [netdrv] thunderbolt: Run disconnect flow asynchronously when logout is received (Jarod Wilson) [1495229]
-- [netdrv] thunderbolt: Tear down connection properly on suspend (Jarod Wilson) [1495229]
-- [netdrv] thunderbolt: Stop using zero to mean no valid DMA mapping (Jarod Wilson) [1495229]
-- [netdrv] thunderbolt: Clear finished Tx frame bus address in tbnet_tx_callback() (Jarod Wilson) [1495229]
-- [netdrv] thunderbolt: Right shifting to zero bug in tbnet_handle_packet() (Jarod Wilson) [1495229]
-- [netdrv] Add support for networking over Thunderbolt cable (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Introduce USB only (SL4) security level (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add support for preboot ACL (Jarod Wilson) [1495229]
-- [thunderbolt] Add 'boot' attribute for devices (Jarod Wilson) [1495229]
-- [thunderbolt] Move driver ready handling to struct icm (Jarod Wilson) [1495229]
-- [thunderbolt] Add constant for approval timeout (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add tb_xdomain_find_by_route() (Jarod Wilson) [1495229]
-- [thunderbolt] Add tb_switch_find_by_route() (Jarod Wilson) [1495229]
-- [thunderbolt] Add tb_switch_get() (Jarod Wilson) [1495229]
-- [thunderbolt] Correct function name in kernel-doc comment (Jarod Wilson) [1495229]
-- [thunderbolt] Factor common ICM add and update operations out (Jarod Wilson) [1495229]
-- [thunderbolt] Handle rejected Thunderbolt devices (Jarod Wilson) [1495229]
-- [thunderbolt] Wait a bit longer for ICM to authenticate the active NVM (Jarod Wilson) [1495229]
-- [thunderbolt] Wait a bit longer for root switch config space (Jarod Wilson) [1495229]
-- [thunderbolt] Do not overwrite error code when domain adding fails (Jarod Wilson) [1495229]
-- [thunderbolt] Handle connecting device in place of host properly (Jarod Wilson) [1495229]
-- [thunderbolt] Serialize PCIe tunnel creation with PCI rescan (Jarod Wilson) [1495229]
-- [thunderbolt] Resume control channel after hibernation image is created (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add function to retrieve DMA device for the ring (Jarod Wilson) [1495229]
-- [thunderbolt] Mask ring interrupt properly when polling starts (Jarod Wilson) [1495229]
-- [thunderbolt] license cleanup: add SPDX GPL-2.0 license identifier to files with no license (Jarod Wilson) [1495229]
-- [thunderbolt] Drop sequence number check from tb_xdomain_match() (Jarod Wilson) [1495229]
-- [thunderbolt] Fix a couple right shifting to zero bugs (Jarod Wilson) [1495229]
-- [thunderbolt] Initialize Thunderbolt bus earlier (Jarod Wilson) [1495229]
-- [thunderbolt] Allocate ring HopID automatically if requested (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add polling mode for rings (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Use spinlock in NHI serialization (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Use spinlock in ring serialization (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Move ring descriptor flags to thunderbolt.h (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Export ring handling functions to modules (Jarod Wilson) [1495229]
-- [thunderbolt] Add support for frame mode (Jarod Wilson) [1495229]
-- [thunderbolt] Configure interrupt throttling for all interrupts (Jarod Wilson) [1495229]
-- [thunderbolt] Add support for XDomain discovery protocol (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Move tb_switch_phy_port_from_link() to thunderbolt.h (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Move thunderbolt domain structure to thunderbolt.h (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Move enum tb_cfg_pkg_type to thunderbolt.h (Jarod Wilson) [1495229]
-- [kernel] thunderbolt: Add support for XDomain properties (Jarod Wilson) [1495229]
-- [thunderbolt] Remove __packed from ICM message structures (Jarod Wilson) [1495229]
-- [kernel] byteorder: Move (cpu_to_be32, be32_to_cpu)_array() from Thunderbolt to core (Jarod Wilson) [1495229]
-- [platform] x86: intel-wmi-thunderbolt: Silence error cases (Jarod Wilson) [1495229]
-- [platform] x86: Add driver to force WMI Thunderbolt controller power status (Jarod Wilson) [1495229]
-- [documentation] thunderbolt: Add documentation how Thunderbolt bus can be used (Jarod Wilson) [1495229]
-- [netdrv] ibmvnic: Do not notify peers on parameter change resets (Desnes Augusto Nunes do Rosario) [1566205]
-- [netdrv] ibmvnic: Handle all login error conditions (Desnes Augusto Nunes do Rosario) [1566205]
-- [netdrv] e1000: Replace WARN_ONCE with netdev_WARN_ONCE (David Arcari) [1562064]
-- [netdrv] e1000: fix disabling already-disabled warning (David Arcari) [1562064]
-- [netdrv] e1000: Fix off-by-one in debug message (David Arcari) [1562064]
-- [netdrv] e1000: avoid null pointer dereference on invalid stat type (David Arcari) [1562064]
-- [netdrv] e1000: fix race condition between e1000_down() and e1000_watchdog (David Arcari) [1562064]
-- [netdrv] networking: introduce and use skb_put_data() (David Arcari) [1562064]
-- [netdrv] e1000: Omit private ndo_get_stats function (David Arcari) [1562064]
-- [netdrv] e1000: use new API ethtool_(get|set)_link_ksettings (David Arcari) [1562064]
-- [netdrv] e1000: use disable_hardirq() for e1000_netpoll() (David Arcari) [1562064]
-- [netdrv] intel: use core min/max MTU checking (David Arcari) [1562064]
-- [netdrv] e1000: call ndo_stop() instead of dev_close() when running offline selftest (David Arcari) [1562064]
-- [kernel] genirq: Provide disable_hardirq() (David Arcari) [1562064]
-- [netdrv] atlantic: fix spelling error in Kconfig file (David Arcari) [1546765]
-- [netdrv] atlantic: re-enabled mark_tech_preview (David Arcari) [1546765]
-- [netdrv] aquantia: driver version bump (David Arcari) [1546765]
-- [netdrv] aquantia: Allow live mac address changes (David Arcari) [1540028 1546765]
-- [netdrv] aquantia: Add tx clean budget and valid budget handling logic (David Arcari) [1546765]
-- [netdrv] aquantia: Change inefficient wait loop on fw data reads (David Arcari) [1546765]
-- [netdrv] aquantia: Fix a regression with reset on old firmware (David Arcari) [1546765]
-- [netdrv] aquantia: Fix hardware reset when SPI may rarely hangup (David Arcari) [1546765]
-- [netdrv] aquantia: Fix error handling in aq_pci_probe() (David Arcari) [1546765]
-- [netdrv] aquantia: make symbol hw_atl_boards static (David Arcari) [1546765]
-- [netdrv] aquantia: Fix error return code in aq_pci_probe() (David Arcari) [1546765]
-- [netdrv] aquantia: bump driver version to match aquantia internal numbering (David Arcari) [1546765]
-- [netdrv] aquantia: Report correct mediatype via ethtool (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce global AQC hardware reset sequence (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce support for new firmware on AQC cards (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce firmware ops callbacks (David Arcari) [1546765]
-- [netdrv] aquantia: Change confusing no_ff_addr to more meaningful name (David Arcari) [1546765]
-- [netdrv] aquantia: Remove create/destroy from hw ops (David Arcari) [1546765]
-- [netdrv] aquantia: Cleanup pci functions module (David Arcari) [1546765]
-- [netdrv] aquantia: Convert hw and caps structures to const static pointers (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce new AQC devices and capabilities (David Arcari) [1546765]
-- [netdrv] aquantia: Introduce new device ids and constants (David Arcari) [1546765]
-- [netdrv] aquantia: Fix internal stats calculation on rx (David Arcari) [1546765]
-- [netdrv] aquantia: Prepend hw access functions declarations with prefix (David Arcari) [1546765]
-- [netdrv] aquantia: Fix register definitions to linux style (David Arcari) [1546765]
-- [netdrv] aquantia: Eliminate aq_nic structure abstraction (David Arcari) [1546765]
-- [netdrv] aquantia: Simplify dependencies between pci modules (David Arcari) [1546765]
-- [netdrv] aquantia: Add const qualifiers for hardware ops tables (David Arcari) [1546765]
-- [netdrv] aquantia: Remove duplicate hardware descriptors declarations (David Arcari) [1546765]
-- [netdrv] aquantia: Cleanup hardware access modules (David Arcari) [1546765]
-- [netdrv] aquantia: Cleanup status flags accesses (David Arcari) [1546765]
-- [netdrv] aquantia: Eliminate AQ_DIMOF, replace with ARRAY_SIZE (David Arcari) [1546765]
-- [netdrv] aquantia: Limit number of MSIX irqs to the number of cpus (David Arcari) [1546765]
-- [netdrv] aquantia: call set_irq_affinity_hint before free_irq (David Arcari) [1546765]
-- [netdrv] aquantia: switch to pci_alloc_irq_vectors (David Arcari) [1546765]
-- [netdrv] aquantia: atlantic: remove tech preview (David Arcari) [1546765]
-- [security] selinux: add a map permission check for mmap (Paul Moore) [1458535]
-- [security] selinux: fix bug in conditional rules handling (Paul Moore) [1518352]
-- [security] selinux: ioctl_has_perm should be static (Paul Moore) [1518352]
-- [security] selinux: extended permissions for ioctls (Paul Moore) [1518352]
-- [security] add ioctl specific auditing to lsm_audit (Paul Moore) [1518352]
-- [security] selinux: remove unnecessary pointer reassignment (Paul Moore) [1518352]
-- [security] selinux: report permissive mode in avc: denied messages (Paul Moore) [1518352]
-- [crypto] cryptd: Add cryptd_max_cpu_qlen module parameter (Bruno Eduardo de Oliveira Meneguele) [1503626]
-- [crypto] aesni: Add support for 192 & 256 bit keys to AESNI RFC4106 (Bruno Eduardo de Oliveira Meneguele) [1568167]
-- [crypto] api: Only abort operations on fatal signal (Herbert Xu) [1397353]
-- [crypto] testmgr: Enable DH/ECDH in FIPS mode (Herbert Xu) [1523367]
-- [crypto] algif_hash: Fix result clobbering in recvmsg (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif_hash: Fix NULL hash crash with shash (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif_hash - Handle NULL hashes correctly (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif_hash: wait for crypto_ahash_init() to complete (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [net] crypto: algif - add and use sock_kzfree_s() instead of memzero_explicit() (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [net] Trap attempts to call sock_kfree_s() with a NULL pointer (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif - zeroize IV buffer (Bruno Eduardo de Oliveira Meneguele) [1548921]
-- [crypto] algif - zeroize message digest buffer (Bruno Eduardo de Oliveira Meneguele) [1548921]
-
-* Fri Apr 20 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-874.el7]
-- [pci] cnb: Add pcim_set_mwi(), a device-managed pci_set_mwi() (Ivan Vecera) [1567972]
-- [pci] acpi: Bail early in acpi_pci_add_bus() if there is no ACPI handle (Mohammed Gamal) [1539534]
-- [acpi] processor: Set default C1 idle state description (Prarit Bhargava) [1557603]
-- [hv] vmbus: Fix a rescind issue (Eduardo Otubo) [1518498]
-- [linux] slab.h: add kmalloc_array_node() and kcalloc_node() (Ivan Vecera) [1557630]
-- [iommu] amd: Limit the IOVA page range to the specified addresses (Gary Hook) [1546889]
-- [crypto] dh - Fix double free of ctx->p (Prarit Bhargava) [1562514]
-- [crypto] dh - fix memleak in setkey (Prarit Bhargava) [1562514]
-- [tty] vt: Fix the memory leak in visual_init (Prarit Bhargava) [1562514]
-- [video] fbcon: Fix memory leak in fbcon_exit() (Prarit Bhargava) [1562514]
-- [video] fbcon: Fix memory leak in con2fb_release_oldinfo() (Prarit Bhargava) [1562514]
-- [kernel] pm / sleep: Fix memory leak in pm_vt_switch_unregister() (Prarit Bhargava) [1562514]
-- [video] Release efifb's colormap in efifb_destroy() (Prarit Bhargava) [1562514]
-- [scsi] Fix memory leaks in scsi_alloc_sdev() (Prarit Bhargava) [1564749]
-- [of] platform: Do not reallocate device_rh (Prarit Bhargava) [1564749]
-- [scsi] Fix device_rh leak in scsi_alloc_target() (Prarit Bhargava) [1564749]
-- [md] dm: remove fmode_t argument from .prepare_ioctl hook (Mike Snitzer) [1562960]
-- [md] dm: hold DM table for duration of ioctl rather than use blkdev_get (Mike Snitzer) [1562960]
-- [block] blk-mq: quiesce queue during switching io sched and updating nr_requests (Ming Lei) [1566314]
-- [block] blk-mq: only run the hardware queue if IO is pending (Ming Lei) [1566314]
-- [block] don't call blk_mq_quiesce_queue() after queue is frozen (Ming Lei) [1566314]
-- [nvme] Fix a race condition related to stopping queues (Ming Lei) [1566314]
-- [firmware] fw_cfg: write vmcoreinfo details (Marc-Andre Lureau) [1533367]
-- [kernel] crash: export paddr_vmcoreinfo_note() (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: add DMA register (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: add a public uapi header (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: handle fw_cfg_read_blob() error (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: remove inline from fw_cfg_read_blob() (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: fix sparse warnings around FW_CFG_FILE_DIR read (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: fix sparse warning reading FW_CFG_ID (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: fix sparse warnings with fw_cfg_file (Marc-Andre Lureau) [1533367]
-- [firmware] fw_cfg: fix sparse warnings in fw_cfg_sel_endianness() (Marc-Andre Lureau) [1533367]
-- [firmware] revert "fw_cfg: add DMA register" (Marc-Andre Lureau) [1533367]
-- [firmware] revert "fw_cfg: do DMA read operation" (Marc-Andre Lureau) [1533367]
-- [firmware] revert "fw_cfg: write vmcoreinfo details" (Marc-Andre Lureau) [1533367]
-- [powerpc] kvm: book3s pr: Allow access to unprivileged MMCR2 register (Laurent Vivier) [1464913]
-- [powerpc] System reset avoid interleaving oops using die synchronisation (Mauricio Oliveira) [1564126]
-- [powerpc] Do not send system reset request through the oops path (Mauricio Oliveira) [1564126]
-- [powerpc] crash: Remove the test for cpu_online in the IPI callback (Mauricio Oliveira) [1564126]
-- [powerpc] pseries: Restore default security feature flags on setup (Mauricio Oliveira) [1561787]
-- [powerpc] Move default security feature flags (Mauricio Oliveira) [1561787]
-- [powerpc] pseries: Fix clearing of security feature flags (Mauricio Oliveira) [1561787]
-- [powerpc] 64s: Wire up cpu_show_spectre_v2() (Mauricio Oliveira) [1561787]
-- [powerpc] 64s: Wire up cpu_show_spectre_v1() (Mauricio Oliveira) [1561787]
-- [powerpc] pseries: Use the security flags in pseries_setup_rfi_flush() (Mauricio Oliveira) [1561787]
-- [powerpc] powernv: Use the security flags in pnv_setup_rfi_flush() (Mauricio Oliveira) [1561787]
-- [powerpc] 64s: Enhance the information in cpu_show_meltdown() (Mauricio Oliveira) [1561787]
-- [powerpc] 64s: Move cpu_show_meltdown() (Mauricio Oliveira) [1561787]
-- [powerpc] powernv: Set or clear security feature flags (Mauricio Oliveira) [1561787]
-- [powerpc] pseries: Set or clear security feature flags (Mauricio Oliveira) [1561787]
-- [powerpc] Add security feature flags for Spectre/Meltdown (Mauricio Oliveira) [1561787]
-- [powerpc] pseries: Add new H_GET_CPU_CHARACTERISTICS flags (Mauricio Oliveira) [1561787]
-- [powerpc] lib: seq: Add seq_buf_printf() (Mauricio Oliveira) [1561787]
-- [powerpc] rfi-flush: Call setup_rfi_flush() after LPM migration (Mauricio Oliveira) [1561785]
-- [powerpc] rfi-flush: Differentiate enabled and patched flush types (Mauricio Oliveira) [1561785]
-- [powerpc] rfi-flush: Always enable fallback flush on pseries (Mauricio Oliveira) [1561785]
-- [powerpc] rfi-flush: Make it possible to call setup_rfi_flush() again (Mauricio Oliveira) [1561785]
-- [powerpc] rfi-flush: Move the logic to avoid a redo into the debugfs code (Mauricio Oliveira) [1561785]
-- [powerpc] msi: Fix race condition in tearing down MSI interrupts (David Milburn) [1549680]
-- [x86] platform/uv: Fix critical UV MMR address error (Frank Ramsay) [1562945]
-
-* Thu Apr 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-873.el7]
-- [mmc] core: Export API to allow hosts to get the card address (Gopal Tiwari) [1549495]
-- [mmc] sdio: Fix sdio wait busy implement limitation (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Control the delay between tuning commands (Gopal Tiwari) [1549495]
-- [mmc] core: add proper be32 annotation (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Export sdhci_enable_sdio_irq() from sdhci.c (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Export sdhci_start_signal_voltage_switch() in sdhci.c (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Export sdhci_set_ios() from sdhci.c (Gopal Tiwari) [1549495]
-- [mmc] core: refactor mmc_request_done() (Gopal Tiwari) [1549495]
-- [mmc] core: refactor asynchronous request finalization (Gopal Tiwari) [1549495]
-- [mmc] core: move some code in mmc_start_areq() (Gopal Tiwari) [1549495]
-- [mmc] core: Factor out mrq preparation from mmc_start_request() (Gopal Tiwari) [1549495]
-- [mmc] core: Factor out debug prints from mmc_start_request() (Gopal Tiwari) [1549495]
-- [mmc] block: Factor out data preparation (Gopal Tiwari) [1549495]
-- [mmc] block: Change mmc_apply_rel_rw() to get block address from the request (Gopal Tiwari) [1549495]
-- [mmc] block: Disable Command Queue while RPMB is used (Gopal Tiwari) [1549495]
-- [mmc] mmc_test: Disable Command Queue while mmc_test is used (Gopal Tiwari) [1549495]
-- [mmc] Add functions to enable / disable the Command Queue (Gopal Tiwari) [1549495]
-- [mmc] queue: Share mmc request array between partitions (Gopal Tiwari) [1549495]
-- [mmc] block: Introduce queue semantics (Gopal Tiwari) [1549495]
-- [mmc] block: Use local var for mqrq_cur (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Set MMC_CAP_AGGRESSIVE_PM for BYT-related Intel controllers (Gopal Tiwari) [1549495]
-- [mmc] sdhci-acpi: Set MMC_CAP_AGGRESSIVE_PM for BYT-related Intel controllers (Gopal Tiwari) [1549495]
-- [mmc] sdhci: clarify the get_timeout_clock callback (Gopal Tiwari) [1549495]
-- [mmc] sdio: improve mmc_io_rw_extended (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Add runtime suspend/resume callbacks (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Let suspend/resume callbacks replace default callbacks (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Conditionally compile pm sleep functions (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Do not use suspend/resume callbacks with runtime pm (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Let devices define how to add the host (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Add CQE support (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Factor out sdhci_set_default_irqs (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Add sdhci_cleanup_host (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Get rid of 'extern' in header file (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Export sdhci_dumpregs (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Improve register dump print format (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Use sdhci_readl() not readl() in sdhci_dumpregs() (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Add response register to register dump (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Improve debug print format (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Reduce spin lock usage in sdhci_execute_tuning (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Do not use spin lock in set_ios paths (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Let drivers decide whether to use mmc_retune_needed() with pm (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Optimize delay loops (Gopal Tiwari) [1549495]
-- [mmc] core: simplify return code (Gopal Tiwari) [1549495]
-- [mmc] core: guard dereference of optional parameter (Gopal Tiwari) [1549495]
-- [mmc] sdio: fix alignment issue in struct sdio_func (Gopal Tiwari) [1549495]
-- [mmc] remove the discard_zeroes_data flag (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Disable runtime pm when the sdio_irq is enabled (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Do not disable interrupts in sdhci_intel_set_power (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Do not disable interrupts while waiting for clock (Gopal Tiwari) [1549495]
-- [mmc] ushc: fix NULL-deref at probe (Gopal Tiwari) [1549495]
-- [mmc] core: mmc_blk_rw_cmd_err - remove unused variable (Gopal Tiwari) [1549495]
-- [mmc] block: Fix cmd error reset failure path (Gopal Tiwari) [1549495]
-- [mmc] block: Fix is_waiting_last_req set incorrectly (Gopal Tiwari) [1549495]
-- [mmc] core: Fix access to HS400-ES devices (Gopal Tiwari) [1549495]
-- [mmc] core: add mmc prefix for blk_fixups (Gopal Tiwari) [1549495]
-- [mmc] core: move all quirks together into quirks.h (Gopal Tiwari) [1549495]
-- [mmc] core: improve the quirks for sdio devices (Gopal Tiwari) [1549495]
-- [mmc] core: move some sdio IDs out of quirks file (Gopal Tiwari) [1549495]
-- [mmc] core: change quirks.c to be a header file (Gopal Tiwari) [1549495]
-- [mmc] Adding AUTO_BKOPS_EN bit set for Auto BKOPS support (Gopal Tiwari) [1549495]
-- [mmc] MAN_BKOPS_EN inverse debug message logic (Gopal Tiwari) [1549495]
-- [mmc] core: start to break apart mmc_start_areq() (Gopal Tiwari) [1549495]
-- [mmc] block: respect bool returned from blk_end_request() (Gopal Tiwari) [1549495]
-- [mmc] block: return errorcode from mmc_sd_num_wr_blocks() (Gopal Tiwari) [1549495]
-- [mmc] queue: turn queue flags into bools (Gopal Tiwari) [1549495]
-- [mmc] block: rename mmc_active to areq (Gopal Tiwari) [1549495]
-- [mmc] block: refactor mmc_blk_rw_try_restart() (Gopal Tiwari) [1549495]
-- [mmc] core: rename mmc_start_req() to *areq() (Gopal Tiwari) [1549495]
-- [mmc] block: rename rqc and req (Gopal Tiwari) [1549495]
-- [mmc] block: inline the command abort and start new goto:s (Gopal Tiwari) [1549495]
-- [mmc] core: switch to ida_simple_ functions in block.c (Gopal Tiwari) [1549495]
-- [mmc] core/mmci: restore pre/post_req behaviour (Gopal Tiwari) [1549495]
-- [mmc] core: fix error path in mmc_host_alloc (Gopal Tiwari) [1549495]
-- [mmc] core: simplify ida handling (Gopal Tiwari) [1549495]
-- [mmc] core: Extend mmc_of_parse() to check for mmc-ddr-3_3v (Gopal Tiwari) [1549495]
-- [mmc] core: Invent MMC_CAP_3_3V_DDR (Gopal Tiwari) [1549495]
-- [mmc] core: Rename __mmc_set_signal_voltage() to mmc_set_signal_voltage() (Gopal Tiwari) [1549495]
-- [mmc] core: Clarify usage of mmc_set_signal_voltage() (Gopal Tiwari) [1549495]
-- [mmc] core: Remove redundant code in mmc_set_signal_voltage() (Gopal Tiwari) [1549495]
-- [mmc] block: stop passing around pointless return values (Gopal Tiwari) [1549495]
-- [mmc] block: introduce new_areq and old_areq (Gopal Tiwari) [1549495]
-- [mmc] block: inline command abortions (Gopal Tiwari) [1549495]
-- [mmc] block: do not assign mq_rq when aborting command (Gopal Tiwari) [1549495]
-- [mmc] block: break out mmc_blk_rw_start_new() (Gopal Tiwari) [1549495]
-- [mmc] block: break out mmc_blk_rw_cmd_abort() (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Clear SDHCI_HS400_TUNING flag after platform_execute_tuning (Gopal Tiwari) [1549495]
-- [mmc] sdhci-acpi: support deferred probe (Gopal Tiwari) [1549495]
-- [mmc] core: Move public functions from host.h to private headers (Gopal Tiwari) [1549495]
-- [mmc] core: Move public functions from card.h to private headers (Gopal Tiwari) [1549495]
-- [mmc] vub300: Don't use mmc_card_present() when validating for inserted card (Gopal Tiwari) [1549495]
-- [mmc] core: Move public functions from core.h to private headers (Gopal Tiwari) [1549495]
-- [mmc] core: First step in cleaning up private mmc header files (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Add support for HS200 tuning mode on AMD, eMMC-4.5.1 (Gopal Tiwari) [1549495]
-- [mmc] sdio: don't use rocr to check if the card could support UHS mode (Gopal Tiwari) [1549495]
-- [mmc] sdio: Factor out retry init card helper function (Gopal Tiwari) [1549495]
-- [mmc] core: Use kmalloc_array() in mmc_alloc_sg() (Gopal Tiwari) [1549495]
-- [mmc] slot-gpio: Don't override con_id when request descriptor (Gopal Tiwari) [1549495]
-- [mmc] sdhci-pci: Remove unused member cd_con_id (Gopal Tiwari) [1549495]
-- [mmc] host: Include interrupt.h in mmc host drivers that depends on it (Gopal Tiwari) [1549495]
-- [mmc] sdhci: Include leds.h (Gopal Tiwari) [1549495]
-- [mmc] sdhci-cadence: Include mmc.h (Gopal Tiwari) [1549495]
-- [mmc] use empty initializer list to zero-clear structures (Gopal Tiwari) [1549495]
-- [mmc] block: Replace "goto retry" by a proper do / while loop (Gopal Tiwari) [1549495]
-- [mmc] block: Avoid uninitialized warning in mmc_blk_issue_discard_rq() (Gopal Tiwari) [1549495]
-- [mmc] core: Export device lifetime information through sysfs (Gopal Tiwari) [1549495]
-
-* Thu Apr 19 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-872.el7]
-- [tools] cpupower: Fix cpupower working when cpu0 is offline (Gustavo Duarte) [1545301]
-- [tools] perf vendor events powerpc: Update POWER9 events (Gustavo Duarte) [1544754]
-- [tools] perf test powerpc: Fix 'Object code reading' test (Steve Best) [1544705]
-- [tools] perf test: Add test case for PERF_SAMPLE_PHYS_ADDR (Jiri Olsa) [1545923]
-- [tools] perf script: Support physical address (Jiri Olsa) [1545923]
-- [tools] perf mem: Support physical address (Jiri Olsa) [1545923]
-- [tools] perf sort: Add sort option for physical address (Jiri Olsa) [1545923]
-- [tools] perf tools: Support new sample type for physical address (Jiri Olsa) [1545923]
-- [kernel] perf/core, x86: Add PERF_SAMPLE_PHYS_ADDR (Jiri Olsa) [1545923]
-- [tools] perf symbols: Accept zero as the kernel base address (Jiri Olsa) [1532861]
-- [tools] perf annotate: Fix broken arrow at row 0 connecting jmp instruction to its target (Jiri Olsa) [1532861]
-- [tools] perf evsel: State in the default event name if attr.exclude_kernel is set (Jiri Olsa) [1532861]
-- [tools] perf evsel: Fix attr.exclude_kernel setting for default cycles:p (Jiri Olsa) [1532861]
-- [tools] perf unwind: Do not fail due to missing unwind support (Jiri Olsa) [1532861]
-- [tools] perf evsel: Set attr.exclude_kernel when probing max attr.precise_ip (Jiri Olsa) [1532861]
-- [tools] perf auxtrace: Add CPU filter support (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Do not use TSC packets for calculating CPU cycles to TSC (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Update documentation to include new ptwrite and power events (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add example script for power events and PTWRITE (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Synthesize new power and "ptwrite" events (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Move code in intel_pt_synth_events() to simplify attr setting (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Factor out intel_pt_set_event_name() (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Tidy messages into called function intel_pt_synth_event() (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Tidy Intel PT evsel lookup into separate function (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Join needlessly wrapped lines (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Remove unused instructions_sample_period (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Factor out common code synthesizing event samples (Jiri Olsa) [1532861]
-- [tools] perf script: Add synthesized Intel PT power and ptwrite events (Jiri Olsa) [1532861]
-- [tools] perf script: Add 'synth' field for synthesized event payloads (Jiri Olsa) [1532861]
-- [tools] perf auxtrace: Add itrace option to output power events (Jiri Olsa) [1532861]
-- [tools] perf auxtrace: Add itrace option to output ptwrite events (Jiri Olsa) [1532861]
-- [tools] tools Add byte-swapping macros to kernel.h (Jiri Olsa) [1532861]
-- [tools] perf script: Add 'synth' event type for synthesized events (Jiri Olsa) [1532861]
-- [tools] x86/insn: perf tools: Add new ptwrite instruction (Jiri Olsa) [1532861]
-- [tools] perf jit: fix typo: "incalid" -> "invalid" (Jiri Olsa) [1532861]
-- [tools] perf tools: Kill die() (Jiri Olsa) [1532861]
-- [tools] perf config: Do not die when parsing u64 or int config values (Jiri Olsa) [1532861]
-- [tools] perf tools: Replace error() with pr_err() (Jiri Olsa) [1532861]
-- [tools] perf tools: Remove warning() (Jiri Olsa) [1532861]
-- [tools] perf event-parse: Use pr_warning() (Jiri Olsa) [1532861]
-- [tools] perf config: Use pr_warning() (Jiri Olsa) [1532861]
-- [tools] perf help: Use pr_warning() (Jiri Olsa) [1532861]
-- [tools] perf help: Elliminate dup code for reporting (Jiri Olsa) [1532861]
-- [tools] perf help: Introduce exec_failed() to avoid code duplication (Jiri Olsa) [1532861]
-- [tools] perf script: Fix message because field list option is -F not -f (Jiri Olsa) [1532861]
-- [tools] perf tools: Fix message because cpu list option is -C not -c (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Fix transactions_sample_type (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Remove redundant initial_skip checks (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add decoder support for CBR events (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add reserved byte to CBR packet payload (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add decoder support for ptwrite and power event packets (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add documentation for new config terms (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add default config for pass-through branch enable (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Allow decoding with branch tracing disabled (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Add missing __fallthrough (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Clear FUP flag on error (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Use FUP always when scanning for an IP (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Ensure never to set 'last_ip' when packet 'count' is zero (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Fix last_ip usage (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Ensure IP is zero when state is INTEL_PT_STATE_NO_IP (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Fix missing stack clear (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Improve sample timestamp (Jiri Olsa) [1532861]
-- [tools] perf intel-pt: Move decoder error setting into one condition (Jiri Olsa) [1532861]
-- [tools] perf tools: Remove unused _ALL_SOURCE define (Jiri Olsa) [1532861]
-- [tools] perf evsel: Adopt find_process() (Jiri Olsa) [1532861]
-- [tools] perf config: Refactor the code using 'ret' variable in cmd_config() (Jiri Olsa) [1532861]
-- [tools] perf config: Check error cases of (show_spec, set)_config() (Jiri Olsa) [1532861]
-- [tools] perf ftrace: Add -D option for depth filter (Jiri Olsa) [1532861]
-- [tools] perf ftrace: Add option for function filtering (Jiri Olsa) [1532861]
-- [tools] perf ftrace: Move setup_pager before opening trace_pipe (Jiri Olsa) [1532861]
-- [tools] perf ftrace: Show error message when fails to set ftrace files (Jiri Olsa) [1532861]
-- [tools] perf script: Support -F brstackoff, dso (Jiri Olsa) [1532861]
-- [tools] perf script: Support -F brstack, dso and brstacksym, dso (Jiri Olsa) [1532861]
-- [tools] perf annotate: Return arch from symbol__disassemble() and save it in browser (Jiri Olsa) [1532861]
-- [tools] perf intel-pt/bts: Remove unused SAMPLE_SIZE defines and bts priv array (Jiri Olsa) [1532861]
-- [tools] Adopt __aligned from kernel sources (Jiri Olsa) [1532861]
-- [tools] Adopt __packed from kernel sources (Jiri Olsa) [1532861]
-- [tools] Adopt noinline from kernel sources (Jiri Olsa) [1532861]
-- [tools] perf tools: Use __maybe_unused consistently (Jiri Olsa) [1532861]
-- [tools] Adopt __scanf from kernel sources (Jiri Olsa) [1532861]
-- [tools] Adopt __printf from kernel sources (Jiri Olsa) [1532861]
-- [tools] Adopt __noreturn from kernel sources (Jiri Olsa) [1532861]
-- [tools] perf script: Allow adding and removing fields (Jiri Olsa) [1532861]
-- [tools] perf config: Invert an if statement to reduce nesting in cmd_config() (Jiri Olsa) [1532861]
-- [tools] perf annotate browser: Display titles in left frame (Jiri Olsa) [1532861]
-- [tools] perf report: Remove unnecessary check in annotate_browser_write() (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix potential double-fetch bug (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix group (cpu, task) validation (Jiri Olsa) [1532861]
-- [x86] Constify attribute_group structures (Jiri Olsa) [1532861]
-- [x86] Mark various structures and functions as 'static' (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix time on IOC_ENABLE (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix missing marker for skx_uncore_cha_extra_regs (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix SKX CHA event extra regs (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Remove invalid Skylake server CHA filter field (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix Skylake server CHA LLC_LOOKUP event umask (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix Skylake server PCU PMU event format (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel/uncore: Fix Skylake UPI PMU event masks (Jiri Olsa) [1532861]
-- [x86] perf/x86: Shut up false-positive -Wmaybe-uninitialized warning (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel: Add proper condition to run sched_task callbacks (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix locking for children siblings group read (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix scheduling regression of pinned groups (Jiri Olsa) [1532861]
-- [x86] perf/x86/intel: Fix debug_store reset field for freq events (Jiri Olsa) [1532861]
-- [x86] perf: Drop EXPORT of perf_check_microcode (Jiri Olsa) [1532861]
-- [kernel] perf/core: Remove unused perf_cgroup_event_cgrp_time() function (Jiri Olsa) [1532861]
-- [kernel] perf/core: Correct event creation with PERF_FORMAT_GROUP (Jiri Olsa) [1532861]
-- [kernel] perf/core: Fix error handling in perf_event_alloc() (Jiri Olsa) [1532861]
-- [kernel] perf/core: Remove some dead code (Jiri Olsa) [1532861]
-
-* Mon Apr 16 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-871.el7]
-- [block] virtio_blk: print capacity at probe time (Stefan Hajnoczi) [1530625]
-- [block] virtio_blk: fix incorrect message when disk is resized (Stefan Hajnoczi) [1530625]
-- [ata] libata: Fix memory leak of device_rh struct (Prarit Bhargava) [1563011]
-- [block] blk-mq: Only register debugfs attributes for blk-mq queues (Ming Lei) [1563601]
-- [x86] spec_ctrl: disable IBRS in idle, part 2 (Josh Poimboeuf) [1558668]
-- [x86] intel_rdt/cqm: Prevent use after free (Prarit Bhargava) [1527073]
-- [x86] platform/uv: Fix GAM Range Table entries less than 1GB (Frank Ramsay) [1549252]
-- [x86] kvm: lapic: Fixup LDR on load in x2apic ("Dr. David Alan Gilbert") [1502591]
-- [x86] kvm: lapic: Split out x2apic ldr calculation ("Dr. David Alan Gilbert") [1502591]
-- [x86] powercap: rapl: Add support for Cannon Lake (David Arcari) [1456702]
-- [x86] cpu: Add Cannonlake to Intel family (David Arcari) [1456702]
-- [fs] pNFS/flexfiles: Ensure we have enough buffer for layoutreturn (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Remove a redundant parameter in ff_layout_encode_ioerr() (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Support sending layoutstats in layoutreturn (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Minor refactoring before adding iostats to layoutreturn (Scott Mayhew) [1540784]
-- [fs] NFS: Fix up read of mirror stats (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Clean up layoutstats (Scott Mayhew) [1540784]
-- [fs] pNFS/flexfiles: Refactor encoding of the layoutreturn payload (Scott Mayhew) [1540784]
-- [fs] pNFS: Add a layoutreturn callback to performa layout-private setup (Scott Mayhew) [1540784]
-- [fs] pNFS: Allow layout drivers to manage private data in struct nfs4_layoutreturn (Scott Mayhew) [1540784]
-- [fs] NFSv4: Add a generic structure for managing layout-private information (Scott Mayhew) [1540784]
-- [fs] pnfs/blocklayout: RHEL remove tech preview warning for SCSI layout (Benjamin Coddington) [1563319]
-- [fs] pnfs/blocklayout: Add module alias for LAYOUT4_SCSI (Benjamin Coddington) [1563319]
-- [fs] pnfs/blocklayout: Ensure disk address in block device map (Benjamin Coddington) [1446141]
-- [fs] pnfs/blocklayout: pnfs_block_dev_map uses bytes, not sectors (Benjamin Coddington) [1446141]
-- [fs] pnfs/blocklayout: handle transient devices (Benjamin Coddington) [1446141]
-- [fs] pnfs/blocklayout: set PNFS_LAYOUTRETURN_ON_ERROR (Benjamin Coddington) [1446141]
-- [fs] vfs: Remove incorrect debugging WARN in prepend_path (Frank Sorenson) [1481732]
-- [fs] xfs: fix transaction allocation deadlock in IO path (Eric Sandeen) [1551111]
-- [fs] fs: Teach path_connected to handle nfs filesystems with multiple roots ("Eric W. Biederman") [1560817]
-- [fs] gfs2: Dirty source inode during rename (Andreas Grunbacher) [1505548]
-- [fs] cifs: don't log STATUS_NOT_FOUND errors for DFS (Leif Sahlberg) [1530304]
-- [fs] cifs: dump IPC tcon in debug proc file (Leif Sahlberg) [1530304]
-- [fs] cifs: use tcon_ipc instead of use_ipc parameter of SMB2_ioctl (Leif Sahlberg) [1530304]
-- [fs] cifs: make IPC a regular tcon (Leif Sahlberg) [1530304]
-- [fs] gfs2: Ignore trunc_dealloc requests that require more height (Robert S Peterson) [1541698]
-- [fs] gfs2: clear journal live bit in gfs2_log_flush (Robert S Peterson) [1541698]
-- [fs] eventpoll: fix uninitialized variable in epoll_ctl (Paul Moore) [1553256]
-- [net] off by one in inet6_pton() (Ivan Vecera) [1551750]
-- [net] vti6: Keep set MTU on link creation or change, validate it (Stefano Brivio) [1557268]
-- [net] ipv4: raise IP_MAX_MTU to theoretical limit (Stefano Brivio) [1557268]
-- [net] vti6: Properly adjust vti6 MTU from MTU of lower device (Stefano Brivio) [1557265]
-- [net] ip6_vti: adjust vti mtu according to mtu of lower device (Stefano Brivio) [1557265]
-- [net] vti4: Don't override MTU passed on link creation via IFLA_MTU (Stefano Brivio) [1557259]
-- [net] ip_tunnel: Clamp MTU to bounds on new link (Stefano Brivio) [1557259]
-- [net] xfrm: policy: check policy direction value (Bruno Eduardo de Oliveira Meneguele) [1479421] {CVE-2017-11600}
-- [net] ipv4: Allow unprivileged users to use per net sysctls (Florian Westphal) [1533405]
-- [net] ethtool: add ethtool_intersect_link_masks (Ivan Vecera) [1560668]
-- [net] ethtool: Add macro to clear a link mode setting (Ivan Vecera) [1560668]
-- [net] sock_diag: request _diag module only when the family or proto has been registered (Xin Long) [1544898]
-- [net] docs: segmentation-offloads.txt: add SCTP info (Xin Long) [1554767]
-- [net] gso: validate gso_type in GSO handlers (Xin Long) [1554767]
-- [net] sctp: Fix a big endian bug in sctp_diag_dump() (Xin Long) [1554767]
-- [net] sctp: add pr_debug for tracking asocs not found (Xin Long) [1554767]
-- [net] sctp: fix dst refcnt leak in sctp_v4_get_dst (Xin Long) [1554767]
-- [net] sctp: fix dst refcnt leak in sctp_v6_get_dst() (Xin Long) [1554767]
-- [net] sctp: do not allow the v4 socket to bind a v4mapped v6 address (Xin Long) [1554767]
-- [net] sctp: return error if the asoc has been peeled off in sctp_wait_for_sndbuf (Xin Long) [1554767]
-- [net] sctp: do not abandon the other frags in unsent outq if one msg has outstanding frags (Xin Long) [1554767]
-- [net] sctp: abandon the whole msg if one part of a fragmented message is abandoned (Xin Long) [1554767]
-- [net] sctp: only update outstanding_bytes for transmitted queue when doing prsctp_prune (Xin Long) [1554767]
-- [net] sctp: set frag_point in sctp_setsockopt_maxseg correctly (Xin Long) [1554767]
-- [net] sctp: Always set scope_id in sctp_inet6_skb_msgname (Xin Long) [1554767]
-- [net] sctp: use the right sk after waking up from wait_buf sleep (Xin Long) [1554767]
-- [net] sctp: do not free asoc when it is already dead in sctp_sendmsg (Xin Long) [1554767]
-- [net] sctp: fix a type cast warnings that causes a_rwnd gets the wrong value (Xin Long) [1554767]
-- [net] sctp: full support for ipv6 ip_nonlocal_bind & IP_FREEBIND (Xin Long) [1554767]
-- [net] sctp: add the missing sock_owned_by_user check in sctp_icmp_redirect (Xin Long) [1554767]
-- [net] sctp: do not mark sk dumped when inet_sctp_diag_fill returns err (Xin Long) [1554767]
-- [net] sctp: fix an use-after-free issue in sctp_sock_dump (Xin Long) [1554767]
-- [net] sctp: potential read out of bounds in sctp_ulpevent_type_enabled() (Xin Long) [1554767]
-- [net] sctp: fully initialize the IPv6 address in sctp_v6_to_addr() (Xin Long) [1554767]
-- [net] sctp: fix the check for _sctp_walk_params and _sctp_walk_errors (Xin Long) [1554767]
-- [net] sctp: don't dereference ptr before leaving _sctp_walk_(params, errors) (Xin Long) [1554767]
-- [net] sctp: set the value of flowi6_oif to sk_bound_dev_if to make sctp_v6_get_dst to find the correct route entry (Xin Long) [1554767]
-- [net] sctp: Add peeloff-flags socket option (Xin Long) [1554767]
-- [net] sctp: use get_unused_fd_flags(0) instead of get_unused_fd() (Xin Long) [1554767]
-- [net] sctp: adjust ssthresh when transport is idle (Xin Long) [1554767]
-- [net] sctp: adjust cwnd increase in Congestion Avoidance phase (Xin Long) [1554767]
-- [net] sctp: allow increasing cwnd regardless of ctsn moving or not (Xin Long) [1554767]
-- [net] sctp: update order of adjustments of partial_bytes_acked and cwnd (Xin Long) [1554767]
-- [net] sctp: uncork the old asoc before changing to the new one (Xin Long) [1554767]
-- [net] sctp: fix recursive locking warning in sctp_do_peeloff (Xin Long) [1554767]
-- [net] sctp: listen on the sock only when it's state is listening or closed (Xin Long) [1554767]
-- [net] sctp: out_qlen should be updated when pruning unsent queue (Xin Long) [1554767]
-- [net] netfilter: nf_nat_sctp: fix ICMP packet to be dropped accidently (Xin Long) [1554767]
-- [net] sctp: flush out queue once assoc state falls into SHUTDOWN_PENDING (Xin Long) [1554767]
-- [net] avoid skb_warn_bad_offload false positives on UFO (Davide Caratti) [1544920]
-- [net] skb_needs_check() accepts CHECKSUM_NONE for tx (Davide Caratti) [1544920]
-- [net] reduce skb_warn_bad_offload() noise (Davide Caratti) [1544920]
-- [net] remove open-coded skb_cow_head (Davide Caratti) [1544920]
-- [net] netfilter: nf_tables: fix inconsistent element expiration calculation (Florian Westphal) [1542802]
-- [net] netfilter: nft_dynset: fix element timeout for HZ != 1000 (Florian Westphal) [1542802]
-- [net] No line break on netdev_WARN* formatting (David Arcari) [1554418]
-- [net] Fix netdev_WARN_ONCE macro (David Arcari) [1554418]
-- [net] Introduce netdev_*_once functions (David Arcari) [1554418]
-- [net] print net_device reg_state in netdev_* unless it's registered (David Arcari) [1554418]
-- [net] ipv4: initialize flowi4_flags before calling fib_lookup() (Sabrina Dubroca) [1529263]
-- [net] ipv4: initialize flow flags in input path (Sabrina Dubroca) [1529263]
-- [net] sctp: verify size of a new chunk in _sctp_make_chunk() (Stefano Brivio) [1551906] {CVE-2018-5803}
-- [net] arp: flush arp cache on IFF_NOARP change (Sabrina Dubroca) [1544440]
-- [net] openvswitch: do not propagate headroom updates to internal port (Paolo Abeni) [1356643]
-- [net] fib_semantics: Don't match route with mismatching tclassid (Stefano Brivio) [1544949]
-
-* Fri Apr 13 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-870.el7]
-- [thunderbolt] tb: fix use after free in tb_activate_pcie_devices (Jeremy McNicoll) [1547702]
-- [netdrv] igb: add VF trust infrastructure (Corinna Vinschen) [1528195]
-- [netdrv] xen-netfront: transmit fully GSO-sized packets (Mohammed Gamal) [1554622]
-- [netdrv] hv_netvsc: Fix the TX/RX buffer default sizes (Mohammed Gamal) [1519187]
-- [netdrv] e1000e: Fix link check race condition (David Arcari) [1539749]
-- [netdrv] revert e1000e: Separate signaling for link check/link up (David Arcari) [1539749]
-- [netdrv] e1000e: allocate ring descriptors with dma_zalloc_coherent (David Arcari) [1518111]
-- [netdrv] e1000e: Fix check_for_link return value with autoneg off (David Arcari) [1518111]
-- [netdrv] e1000e: Avoid missed interrupts following ICR read (David Arcari) [1518111]
-- [netdrv] e1000e: Fix queue interrupt re-raising in Other interrupt (David Arcari) [1518111]
-- [netdrv] partial revert "e1000e: Avoid receiver overrun interrupt bursts" (David Arcari) [1518111]
-- [netdrv] e1000e: Remove Other from EIAC (David Arcari) [1518111]
-- [netdrv] e1000e: Avoid receiver overrun interrupt bursts (David Arcari) [1518111]
-- [netdrv] e1000e: Alert the user that C-states will be disabled by enabling jumbo frames (David Arcari) [1518111]
-- [netdrv] e1000e: Set HTHRESH when PTHRESH is used (David Arcari) [1518111]
-- [netdrv] e1000e: Cleanup to fix checkpatch missing blank lines (David Arcari) [1518111]
-- [netdrv] ibmvnic: Disable irqs before exiting reset from closed state (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Potential NULL dereference in clean_one_tx_pool() (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Remove unused TSO resources in TX pool structure (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update TX pool cleaning routine (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Improve TX buffer accounting (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update TX and TX completion routines (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update TX pool initialization routine (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update release TX pool routine (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Update and clean up reset TX pool routine (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Generalize TX pool structure (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Fix reset return from closed state (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Fix recent errata commit (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Handle TSO backing device errata (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Pad small packets to minimum MTU size (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Account for VLAN header length in TX buffers (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Account for VLAN tag in L2 Header descriptor (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Do not disable device during failover or partition migration (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Reorganize device close (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Clean up device close (Desnes Augusto Nunes do Rosario) [1559635]
-- [netdrv] ibmvnic: Do not attempt to login if RX or TX queues are not allocated (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Report queue stops and restarts as debug output (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Harden TX/RX pool cleaning (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Allocate statistics buffers during probe (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Fix TX descriptor tracking again (Desnes Augusto Nunes do Rosario) [1552020]
-- [netdrv] ibmvnic: Split counters for scrq/pools/napi (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Fix TX descriptor tracking (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Correct goto target for tx irq initialization failure (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Allocate max queues stats buffers (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Make napi usage dynamic (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Free and re-allocate scrqs when tx/rx scrqs change (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Move active sub-crq count settings (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Rename active queue count variables (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Check for NULL skb's in NAPI poll routine (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] ibmvnic: Keep track of supplementary TX descriptors (Desnes Augusto Nunes do Rosario) [1547983]
-- [netdrv] qed: Free reserved MR tid (Harish Patil) [1554217]
-- [netdrv] qed: Free RoCE ILT Memory on rmmod qedr (Harish Patil) [1554217]
-- [netdrv] tg3: Add Macronix NVRAM support (Jonathan Toppins) [1526123]
-- [netdrv] tg3: Enable PHY reset in MTU change path for 5720 (Jonathan Toppins) [1526123]
-- [netdrv] tg3: Add workaround to restrict 5762 MRRS to 2048 (Jonathan Toppins) [1526123]
-- [netdrv] tg3: Update copyright (Jonathan Toppins) [1526123]
-- [netdrv] vmxnet3: use correct flag to indicate LRO feature (Neil Horman) [1558685]
-- [netdrv] vmxnet3: avoid xmit reset due to a race in vmxnet3 (Neil Horman) [1558685]
-- [netdrv] vmxnet3: prepare for version 3 changes (Neil Horman) [1532362]
-- [netdrv] vmxnet3: increase default rx ring sizes (Neil Horman) [1532362]
-- [netdrv] vmxnet3: avoid format strint overflow warning (Neil Horman) [1532362]
-- [netdrv] vmxnet3: add receive data ring support (Neil Horman) [1532362]
-- [netdrv] vmxnet3: allow variable length transmit data ring buffer (Neil Horman) [1532362]
-- [netdrv] nfp: implement firmware flashing (Pablo Cascon) [1545768]
-- [netdrv] nfp: extend NSP infrastructure for configurable timeouts (Pablo Cascon) [1545768]
-- [netdrv] nfp: make use of MAC reinit (Pablo Cascon) [1545768]
-
-* Thu Apr 12 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-869.el7]
-- [platform] x86: thinkpad_acpi: suppress warning about palm detection (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: Accept flat mode for type 4 multi mode status (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: Implement tablet mode using GMMS method$ (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: add mapping for new hotkeys (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: guard generic hotkey case (Benjamin Berg) [1557298]
-- [platform] x86: thinkpad_acpi: Adding new hotkey ID for Lenovo thinkpad (Benjamin Berg) [1557298]
-- [platform] x86: dell-wmi: Add an event created by Dell Latitude 5495 (Jarod Wilson) [1526317]
-- [platform] x86: dell-*wmi*: Relay failed initial probe to dependent drivers (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi-descriptor: check if memory was allocated (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi-descriptor: split WMI descriptor into it's own driver (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: don't check length returned (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: clean up wmi descriptor check (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: increase severity of some failures (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Do not match on descriptor GUID modalias (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Update dell_wmi_check_descriptor_buffer() to new model (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Fix driver interface version query (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Convert to the WMI bus infrastructure (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Add a better description for "stealth mode" (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Add a comment explaining the 0xb2 magic number (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: remove sparse_keymap_free() calls (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi-aio: remove sparse_keymap_free() calls (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Add events created by Dell Rugged 2-in-1s (Jarod Wilson) [1526317]
-- [platform] x86: dell-wmi: Adjust wifi catcher to emit KEY_WLAN (Jarod Wilson) [1526317]
-- [platform] x86: wmi: Fix misuse of vsprintf extension pULL (Jarod Wilson) [1562200]
-- [platform] x86: wmi: fix off-by-one write in wmi_dev_probe() (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Call acpi_wmi_init() later (Jarod Wilson) [1562200]
-- [platform] x86: wmi: release mutex on module acquistion failure (Jarod Wilson) [1562200]
-- [platform] x86: dell-smbios-wmi: introduce userspace interface (Jarod Wilson) [1562200]
-- [platform] x86: dell-smbios: Prefix class/select with cmd_ (Jarod Wilson) [1562200]
-- [platform] x86: wmi: create userspace interface for drivers (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Don't allow drivers to get each other's GUID (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Add new method wmidev_evaluate_method (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Destroy on cleanup rather than unregister (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Cleanup exit routine in reverse order of init (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Sort include list (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Fix check for method instance number (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Fix error handling in acpi_wmi_init() (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Fix printing info about WDG structure (Jarod Wilson) [1562200]
-- [platform] x86: wmi*: Add recent copyright statements (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Require query for data blocks, rename writable to setable (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Add an interface for subdrivers to access sibling devices (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Bind the platform device, not the ACPI node (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Add a new interface to read block data (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Incorporate acpi_install_notify_handler (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Instantiate all devices before adding them (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Probe data objects for read and write capabilities (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Split devices into types and add basic sysfs attributes (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Fix error handling when creating devices (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Turn WMI into a bus driver (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Track wmi devices per ACPI device (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Clean up acpi_wmi_add (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Pass the acpi_device through to parse_wdg (Jarod Wilson) [1562200]
-- [platform] x86: wmi: Drop "Mapper (un)loaded" messages (Jarod Wilson) [1562200]
-- [platform] platform/x86/wmi.c: use generic UUID library (Jarod Wilson) [1562200]
-- [platform] wmi: Remove private pUL implementation (Jarod Wilson) [1562200]
-- [platform] wmi: Use bool function return values of true/false not 1/0 (Jarod Wilson) [1562200]
-- [platform] x86/wmi: delete unused wmi_data_lock mutex causing gcc warning (Jarod Wilson) [1562200]
-- [platform] wmi: Remove unnecessary null test (Jarod Wilson) [1562200]
-- [kernel] init.h: Update initcall_sync variants to fix build errors (Jarod Wilson) [1562200]
-- [platform] acpi: Clean up inclusions of ACPI header files (Jarod Wilson) [1562200]
-- [platform] x86, wmi fix modalias_show return values (Jarod Wilson) [1562200]
-- [platform] wmi: convert acpi_get_handle() to acpi_has_method() (Jarod Wilson) [1562200]
-- [platform] wmi: convert acpi_evaluate_object() to acpi_execute_simple_method() (Jarod Wilson) [1562200]
-- [platform] wmi: parse_wdg() should return kernel error codes (Jarod Wilson) [1562200]
-- [platform] x86: wmi: convert class code to use dev_groups (Jarod Wilson) [1562200]
-- [pci] Add device disconnected state (Myron Stowe) [1517629]
-- [pci] pciehp: Do not clear Presence Detect Changed during initialization (Myron Stowe) [1517629]
-- [pci] Distribute available resources to hotplug-capable bridges (Myron Stowe) [1517629]
-- [pci] Distribute available buses to hotplug-capable bridges (Myron Stowe) [1517629]
-- [pci] Do not allocate more buses than available in parent (Myron Stowe) [1517629]
-- [pci] Open-code the two pass loop when scanning bridges (Myron Stowe) [1517629]
-- [pci] Move pci_hp_add_bridge() to pci/probe.c (Myron Stowe) [1517629]
-- [pci] Add for_each_pci_bridge() helper (Myron Stowe) [1517629]
-- [char] ipmi_si: fix crash on parisc (Tony Camuso) [1541533]
-- [char] ipmi_si: Fix oops with PCI devices (Tony Camuso) [1541533]
-- [char] ipmi: Stop timers before cleaning up the module (Tony Camuso) [1541533]
-- [char] ipmi: get rid of pointless access_ok() (Tony Camuso) [1541533]
-- [char] ipmi_si: Delete an error message for a failed memory allocation in try_smi_init() (Tony Camuso) [1541533]
-- [char] ipmi_si: fix memory leak on new_smi (Tony Camuso) [1541533]
-- [char] ipmi: remove redundant initialization of bmc (Tony Camuso) [1541533]
-- [char] ipmi: pr_err() strings should end with newlines (Tony Camuso) [1541533]
-- [char] ipmi: Clean up some print operations (Tony Camuso) [1541533]
-- [char] ipmi: Make the DMI probe into a generic platform probe (Tony Camuso) [1541533]
-- [char] ipmi: Make the IPMI proc interface configurable (Tony Camuso) [1541533]
-- [char] ipmi_ssif: Add device attrs for the things in proc (Tony Camuso) [1541533]
-- [char] ipmi_si: Add device attrs for the things in proc (Tony Camuso) [1541533]
-- [char] driver core: add device_(add|remove)_group() helpers (Tony Camuso) [1541533]
-- [char] driver core: make device_(add|remove)_groups() public (Tony Camuso) [1541533]
-- [char] ipmi_si: remove ipmi_smi_alloc() function (Tony Camuso) [1541533]
-- [char] ipmi_si: Move port and mem I/O handling to their own files (Tony Camuso) [1541533]
-- [char] ipmi_si: Get rid of unused spacing and port fields (Tony Camuso) [1541533]
-- [char] ipmi_si: Move PARISC handling to another file (Tony Camuso) [1541533]
-- [char] ipmi_si: Move PCI setup to another file (Tony Camuso) [1541533]
-- [char] ipmi_si: Move platform device handling to another file (Tony Camuso) [1541533]
-- [char] ipmi_si: Move hardcode handling to a separate file (Tony Camuso) [1541533]
-- [char] ipmi_si: Move the hotmod handling to another file (Tony Camuso) [1541533]
-- [char] ipmi_si: Change ipmi_si_add_smi() to take just I/O info (Tony Camuso) [1541533]
-- [char] ipmi_si: Move io setup into io structure (Tony Camuso) [1541533]
-- [char] ipmi_si: Move irq setup handling into the io struct (Tony Camuso) [1541533]
-- [char] ipmi_si: Move some platform data into the io structure (Tony Camuso) [1541533]
-- [char] ipmi_si: Rename function to add smi, make it global (Tony Camuso) [1541533]
-- [char] ipmi: Convert DMI handling over to a platform device (Tony Camuso) [1541533]
-- [char] ipmi: Create a platform device for a DMI-specified IPMI interface (Tony Camuso) [1541533]
-- [char] ipmi: Convert IPMI GUID over to Linux guid_t (Tony Camuso) [1541533]
-- [char] ipmi: Rescan channel list on BMC changes (Tony Camuso) [1541533]
-- [char] ipmi: Move lun and address out of channel struct (Tony Camuso) [1541533]
-- [char] ipmi: Retry BMC registration on a failure (Tony Camuso) [1541533]
-- [char] ipmi: Rework device id and guid handling to catch changing BMCs (Tony Camuso) [1541533]
-- [char] ipmi: Use a temporary BMC for an interface (Tony Camuso) [1541533]
-- [char] ipmi: Dynamically fetch GUID periodically (Tony Camuso) [1541533]
-- [char] ipmi: Always fetch the guid through ipmi_get_device_id() (Tony Camuso) [1541533]
-- [char] ipmi: allow dynamic BMC version information (Tony Camuso) [1541533]
-- [char] ipmi: Don't use BMC product/dev ids in the BMC name (Tony Camuso) [1541533]
-- [char] ipmi: Make ipmi_demangle_device_id more generic (Tony Camuso) [1541533]
-- [char] ipmi: Add a reference from BMC devices to their interfaces (Tony Camuso) [1541533]
-- [char] ipmi: Get the device id through a function (Tony Camuso) [1541533]
-- [char] ipmi: Fix printing the BMC guid (Tony Camuso) [1541533]
-- [char] ipmi: Rework BMC registration (Tony Camuso) [1541533]
-- [char] ipmi: Fix issues with BMC refcounts (Tony Camuso) [1541533]
-- [char] ipmi: Check that the device type is BMC when scanning device (Tony Camuso) [1541533]
-- [char] ipmi: Move bmc find routing to below bmc device type (Tony Camuso) [1541533]
-- [char] ipmi: Fix getting the GUID data (Tony Camuso) [1541533]
-- [char] ipmi: make ipmi_poweroff_handler const (Tony Camuso) [1541533]
-- [char] ipmi: make ipmi_usr_hndl const (Tony Camuso) [1541533]
-- [char] ipmi: Make IPMI panic strings always available (Tony Camuso) [1541533]
-- [char] ipmi: fix unsigned long underflow (Tony Camuso) [1541533]
-- [char] ipmi: eliminate misleading print info when being probed via ACPI (Tony Camuso) [1541533]
-
-* Tue Apr 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-868.el7]
-- [fs] ext4: Fix data exposure after failed AIO DIO (Carlos Maiolino) [1347126]
-- [fs] direct-io: always call ->end_io if non-NULL (Carlos Maiolino) [1347126]
-- [fs] nfsd: special case truncates some more ("J. Bruce Fields") [1554627]
-- [fs] nfsd: minor nfsd_setattr cleanup ("J. Bruce Fields") [1554627]
-- [fs] Add missing structs and defines from recent SMB3.1.1 documentation (Leif Sahlberg) [1555078]
-- [fs] Fix encryption labels and lengths for SMB3.1.1 (Leif Sahlberg) [1555078]
-- [fs] smb3: Don't ignore O_SYNC/O_DSYNC and O_DIRECT flags (Leif Sahlberg) [1555078]
-- [fs] Update session and share information displayed for debugging SMB2/SMB3 (Leif Sahlberg) [1555078]
-- [fs] smb3: Warn user if trying to sign connection that authenticated as guest (Leif Sahlberg) [1555078]
-- [fs] smb3: Fix endian warning (Leif Sahlberg) [1555078]
-- [fs] Fix SMB3.1.1 guest authentication to Samba (Leif Sahlberg) [1555078]
-- [fs] smb3: Enable encryption for SMB3.1.1 (Leif Sahlberg) [1555078]
-- [fs] cifs: Clean up unused variables in smb2pdu.c (Leif Sahlberg) [1555076]
-- [fs] cifs: Display SMB2 error codes in the hex format (Leif Sahlberg) [1555076]
-- [fs] cifs: set oparms.create_options rather than or'ing in CREATE_OPEN_BACKUP_INTENT (Leif Sahlberg) [1555076]
-- [fs] cifs: Do not modify mid entry after submitting I/O in cifs_call_async (Leif Sahlberg) [1555076]
-- [fs] cifs: add SFM mapping for 0x01-0x1F (Leif Sahlberg) [1555076]
-- [fs] cifs: hide unused functions (Leif Sahlberg) [1555076]
-- [fs] cifs: set mapping error when page writeback fails in writepage or launder_pages (Leif Sahlberg) [1555076]
-- [fs] smb3: Add support for multidialect negotiate (SMB2.1 and later) (Leif Sahlberg) [1471950]
-- [fs] Fix warning messages when mounting to older servers (Leif Sahlberg) [1471950]
-- [fs] Improve security, move default dialect to SMB3 from old CIFS (Leif Sahlberg) [1471950]
-- [fs] Remove ifdef since SMB3 (and later) now STRONGLY preferred (Leif Sahlberg) [1471950]
-- [fs] cifs: add CONFIG_CIFS_DEBUG_KEYS to dump encryption keys (Leif Sahlberg) [1471950]
-- [fs] ext4: fix null pointer dereference on sbi (Jeff Moyer) [1526252]
-- [fs] dax: fix FS_DAX=n BLOCK=y compilation (Jeff Moyer) [1526252]
-- [fs] ext4: perform dax_device lookup at mount (Jeff Moyer) [1526252]
-- [fs] xfs: perform dax_device lookup at mount (Jeff Moyer) [1526252]
-- [fs] dax: introduce a fs_dax_get_by_bdev() helper (Jeff Moyer) [1526252]
-- [fs] dax, xfs, ext4: compile out iomap-dax paths in the FS_DAX=n case (Jeff Moyer) [1526252]
-- [fs] remove the pmem_dax_ops->flush abstraction (Jeff Moyer) [1471712]
-- [fs] dax, libnvdimm: remove wb_cache_pmem() indirection (Jeff Moyer) [1471712]
-- [fs] dax: replace clear_pmem() with open coded memset + dax_ops->flush (Jeff Moyer) [1471712]
-- [fs] dax: convert to dax_flush() (Jeff Moyer) [1471712]
-- [fs] libnvdimm, pmem: export a cache control attribute (Jeff Moyer) [1471712]
-- [fs] dm: add ->flush() dax operation support (Jeff Moyer) [1471712]
-- [fs] nfsd: remove blocked locks on client teardown (Scott Mayhew) [1504058]
-- [fs] xfs: Properly retry failed dquot items in case of error during buffer writeback (Carlos Maiolino) [1559410]
-- [fs] gfs2: fix flock panic issue (Robert S Peterson) [1551852]
-- [fs] gfs2: Prevent stopping kthreads twice in gfs2_make_fs_ro (Andreas Grunbacher) [1538344]
-- [fs] gfs2: Fix and clean up (GET,SET)FLAGS ioctl (Andreas Grunbacher) [1505875]
-- [nvme-fc] correct hang in nvme_ns_remove() (Ewan Milne) [1549232]
-- [nvme-fc] fix rogue admin cmds stalling teardown (Ewan Milne) [1549232]
-- [nvme-loop] check if queue is ready in queue_rq (Ewan Milne) [1549232]
-- [nvme-fc] check if queue is ready in queue_rq (Ewan Milne) [1549232]
-- [nvme-fabrics] introduce init command check for a queue that is not alive (Ewan Milne) [1549232]
-- [nvme-rdma] fix possible hang when issuing commands during ctrl removal (Ewan Milne) [1549232]
-- [nvme-rdma] fix merge error (Ewan Milne) [1549232]
-- [nvme-pci] quiesce/unquiesce admin_q instead of start/stop its hw queues (Ewan Milne) [1549232]
-- [nvme-loop] quiesce/unquiesce admin_q instead of start/stop its hw queues (Ewan Milne) [1549232]
-- [nvme-fc] quiesce/unquiesce admin_q instead of start/stop its hw queues (Ewan Milne) [1549232]
-- [nvme-rdma] quiesce/unquiesce admin_q instead of start/stop its hw queues (Ewan Milne) [1549232]
-- [blk-mq] Make it safe to quiesce and unquiesce from an interrupt handler (Ewan Milne) [1549232]
-- [blk-mq] clarify dispatch may not be drained/blocked by stopping queue (Ewan Milne) [1549232]
-- [blk-mq] don't stop queue for quiescing (Ewan Milne) [1549232]
-- [blk-mq] update comments on blk_mq_quiesce_queue() (Ewan Milne) [1549232]
-- [blk-mq] use QUEUE_FLAG_QUIESCED to quiesce queue (Ewan Milne) [1549232]
-- [blk-mq] use the introduced blk_mq_unquiesce_queue() (Ewan Milne) [1549232]
-- [blk-mq] introduce blk_mq_unquiesce_queue (Ewan Milne) [1549232]
-- [blk-mq] introduce blk_mq_quiesce_queue_nowait() (Ewan Milne) [1549232]
-- [blk-mq] move blk_mq_quiesce_queue() into include/linux/blk-mq.h (Ewan Milne) [1549232]
-- [scsi] lpfc: Fix regression error message displayed on boot (Dick Kennedy) [1550900]
-- [scsi] mpt3sas: Bump mpt3sas driver version to v16.100.01.00 (Tomas Henzl) [1545041]
-- [scsi] mpt3sas: Do not use 32-bit atomic request descriptor for Ventura controllers (Tomas Henzl) [1545041]
-- [scsi] megaraid_sas: driver version 07.702.06.00-rh3 (Tomas Henzl) [1544697]
-- [scsi] megaraid_sas: Do not use 32-bit atomic request descriptor for Ventura controllers (Tomas Henzl) [1544697]
-
-* Tue Apr 10 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-867.el7]
-- [net] ipv4: avoid unused variable warning for sysctl (Sabrina Dubroca) [1541250]
-- [net] ipv4: don't allow setting net.ipv4.route.min_pmtu below 68 (Sabrina Dubroca) [1541250]
-- [net] l2tp: make datapath resilient to packet loss when sequence numbers enabled (Davide Caratti) [1527799]
-- [net] l2tp: make datapath sequence number support RFC-compliant (Davide Caratti) [1527799]
-- [net] l2tp: do data sequence number handling in a separate func (Davide Caratti) [1527799]
-- [net] ipv4: Do not cache routing failures due to disabled forwarding (Lorenzo Bianconi) [1520244]
-- [net] ipv4: removed redundant conditional (Lorenzo Bianconi) [1520244]
-- [net] sit: fix IFLA_MTU ignored on NEWLINK (Xin Long) [1548318]
-- [net] ip6_tunnel: fix IFLA_MTU ignored on NEWLINK (Xin Long) [1549440]
-- [net] ip6_gre: process toobig in a better way (Xin Long) [1523075]
-- [net] ip6_gre: add the process for redirect in ip6gre_err (Xin Long) [1523075]
-- [net] ip6_gre: only increase err_count for some certain type icmpv6 in ip6gre_err (Xin Long) [1523075]
-- [net] ip6_gre: fix ip6gre_err() invalid reads (Xin Long) [1523075]
-- [net] ip6_tunnel: clean up ip4ip6 and ip6ip6's err_handlers (Xin Long) [1523077]
-- [net] ip6_tunnel: process toobig in a better way (Xin Long) [1523077]
-- [net] ip6_tunnel: add the process for redirect in ip6_tnl_err (Xin Long) [1523077]
-- [net] ip6_gre: init dev->mtu and dev->hard_header_len correctly (Stefano Brivio) [1548317]
-- [net] netfilter: nft_reject: restrict to INPUT/FORWARD/OUTPUT (Davide Caratti) [1549967]
-- [net] route: also update fnhe_genid when updating a route cache (Xin Long) [1523073]
-- [net] route: update fnhe_expires for redirect when the fnhe exists (Xin Long) [1523073]
-- [net] sctp: use right member as the param of list_for_each_entry (Xin Long) [1483445]
-- [net] sctp: reset owner sk for data chunks on out queues when migrating a sock (Xin Long) [1483445]
-- [net] gro: avoid reorders (Ivan Vecera) [1554456]
-- [net] Clarify dev_weight documentation for LRO and GRO_HW (Ivan Vecera) [1554456]
-- [net] Introduce NETIF_F_GRO_HW (Ivan Vecera) [1554456]
-- [net] mii, smsc: Make mii_ethtool_get_link_ksettings and smc_netdev_get_ecmd return void (Ivan Vecera) [1554965]
-- [net] mii: report 0 for unknown lp_advertising (Ivan Vecera) [1554965]
-- [net] mii: add generic function to support ksetting support (Ivan Vecera) [1554965]
-- [net] xfrm: fix stack access out of bounds with CONFIG_XFRM_SUB_POLICY (Sabrina Dubroca) [1551382]
-- [net] xfrm: xfrm_policy: silence compiler warning (Sabrina Dubroca) [1551382]
-- [net] xfrm: xfrm_policy: fix inline not at beginning of declaration (Sabrina Dubroca) [1551382]
-- [net] utils: generic inet_pton_with_scope helper (Ivan Vecera) [1551750]
-- [lib] kobject: Export kobj_ns_grab_current() and kobj_ns_drop() (Ivan Vecera) [1551750]
-- [lib] kobject: move EXPORT_SYMBOL() macros next to corresponding definitions (Ivan Vecera) [1551750]
-- [net] sctp: do not peel off an assoc from one netns to another one (Xin Long) [1520256]
-- [net] sctp: do not pr_err for the duplicated node in transport rhlist (Xin Long) [1541893]
-
-* Thu Apr 05 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-866.el7]
-- [net] ipsec: Fix aborted xfrm policy dump crash (Bruno Eduardo de Oliveira Meneguele) [1517290] {CVE-2017-16939}
-- [net] Mark TC HW offloading as Tech Preview (Ivan Vecera) [1503123]
-- [net] netfilter: ebtables: fix erroneous reject of last rule (Florian Westphal) [1552370] {CVE-2018-1068}
-- [net] netfilter: ebtables: CONFIG_COMPAT: don't trust userland offsets (Florian Westphal) [1552370] {CVE-2018-1068}
-- [net] netfilter: bridge: ebt_among: add more missing match size checks (Florian Westphal) [1552370] {CVE-2018-1068}
-- [net] netfilter: bridge: ebt_among: add missing match size checks (Florian Westphal) [1552370] {CVE-2018-1068}
-- [block] loop: fix concurrent lo_open/lo_release (Joe Lawrence) [1541228] {CVE-2018-5344}
-- [iscsi-target] Fix panic when adding second TCP connection to iSCSI session (Maurizio Lombardi) [1544670]
-- [md] dm: fix dropped return code from dm_get_bdev_for_ioctl (Mike Snitzer) [1562962]
-- [x86] kexec/64: Clear control page after PGD init (Waiman Long) [1540061]
-- [x86] pti: Rework the UEFI data corruption fix (Waiman Long) [1540061]
-
-* Tue Apr 03 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-865.el7]
-- [gpu] drm/i915/glk: IPC linetime watermark workaround for GLK (Lyude Paul) [1548651]
-- [gpu] drm/i915/cfl: Remove alpha support protection (Rob Clark) [1464911]
-- [gpu] drm/i915/cnl: Map VBT DDC Pin to BSpec DDC Pin (Rob Clark) [1464911]
-- [gpu] drm/i915: Add retries for LSPCON detection (Rob Clark) [1464911]
-- [gpu] drm/i915: Don't give up waiting on INVALID_MODE (Rob Clark) [1464911]
-- [netdrv] i40e: fix incorrect UP-TC mapping (Stefan Assmann) [1558159]
-- [pci] hv: Use effective affinity mask (Vitaly Kuznetsov) [1555239]
-- [nvme] pci: Fix EEH failure on ppc (Mauricio Oliveira) [1558499]
-- [iommu] amd: Add NULL sanity check for struct irq_2_irte.ir_data (Suravee Suthikulpanit) [1542697]
-
-* Fri Mar 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-864.el7]
-- [sound] hda: Fix a wrong FIXUP for alc289 on Dell machines (Jaroslav Kysela) [1548969]
-- [sound] hda: Fix headset mic detection problem for two Dell machines (Jaroslav Kysela) [1548969]
-- [sound] alsa: x86: Fix potential crash at error path (Jaroslav Kysela) [1551742]
-- [sound] alsa: x86: Fix missing spinlock and mutex initializations (Jaroslav Kysela) [1551742]
-- [sound] alsa: x86: hdmi: Add single_port option for compatible behavior (Jaroslav Kysela) [1551742]
-- [sound] alsa: x86: fix error return code in hdmi_lpe_audio_probe() (Jaroslav Kysela) [1551742]
-- [hid] wacom: Fix reporting of touch toggle (WACOM_HID_WD_MUTE_DEVICE) events (Benjamin Tissoires) [1551776]
-- [hid] wacom: generic: Send BTN_STYLUS3 when both barrel switches are set (Benjamin Tissoires) [1551783]
-- [hid] wacom: generic: Recognize WACOM_HID_WD_PEN as a type of pen collection (Benjamin Tissoires) [1551776]
-- [crypto] chelsio: Fix src buffer dma length (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: Move DMA un/mapping to chcr from lld cxgb4 driver (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: Remove unused parameter (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: Remove allocation of sg list to implement 2K limit of dsgl header (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: introduce __skb_put_zero() (Arjun Vynipadath) [1548047]
-- [crypto] chelsio: make skb_put & friends return void pointers (Arjun Vynipadath) [1548047]
-- [infiniband] rdma/bnxt_re: Avoid Hard lockup during error CQE processing (Selvin Xavier) [1549453]
-- [infiniband] rdma/bnxt_re: Add helper functions to handle async FW events (Selvin Xavier) [1549453]
-- [infiniband] rdma/bnxt_re: Synchronize destroy_qp with poll_cq (Selvin Xavier) [1538833]
-- [infiniband] rdma/bnxt_re: Avoid system hang during device (Selvin Xavier) [1547353]
-- [infiniband] rdma/bnxt_re: Fix system crash during load/unload (Selvin Xavier) [1547353]
-- [netdrv] i40e: Close client on suspend and restore client MSIx on resume (Stefan Assmann) [1538847]
-- [scsi] csiostor: add support for 32 bit port capabilities (Arjun Vynipadath) [1526163]
-- [netdrv] cxgb4/cxgbvf: Handle 32-bit fw port capabilities (Arjun Vynipadath) [1526163]
-- [netdrv] cxgb4vf: define get_fecparam ethtool callback (Arjun Vynipadath) [1526163]
-- [netdrv] cxgb4: ethtool forward error correction management support (Arjun Vynipadath) [1526163]
-- [netdrv] cxgb4: core hardware/firmware support for Forward Error Correction on a link (Arjun Vynipadath) [1526163]
-
-* Fri Mar 30 2018 Bruno E. O. Meneguele <bmeneg@redhat.com> [3.10.0-863.el7]
-- [fs] nfs: Fix unstable write completion (Scott Mayhew) [1544647]
-- [md] support to split big bio (Ming Lei) [1557434]
-- [block] introduce bio_split2() and bio_pair2_release() (Ming Lei) [1557434]
-- [nvme] fixup nvme_sysfs_delete() (David Milburn) [1543716 1451772 1440470]
-- [nvme] rdma: Use mr pool (David Milburn) [1547273]
-- [nvme] rdma: Check remotely invalidated rkey matches our expected rkey (David Milburn) [1547273]
-- [nvme] rdma: wait for local invalidation before completing a request (David Milburn) [1547273]
-- [nvme] rdma: don't complete requests before a send work request has completed (David Milburn) [1547273]
-- [nvme] rdma: don't suppress send completions (David Milburn) [1547273]
-- [xen] fix booting ballooned down hvm guest (Vitaly Kuznetsov) [1529437]
-- [powerpc] tm: Flush TM only if CPU has TM feature (David Gibson) [1544676] {CVE-2018-1091}
-- [powerpc] powernv: Support firmware disable of RFI flush (Mauricio Oliveira) [1553927]
-- [powerpc] pseries: Support firmware disable of RFI flush (Mauricio Oliveira) [1553927]
-- [powerpc] pseries: Add H_GET_CPU_CHARACTERISTICS flags & wrapper (Mauricio Oliveira) [1553927]
-- [x86] smpboot: Fix uncore_pci_remove() indexing bug when hot-removing a physical CPU (Prarit Bhargava) [1527731]
-- [x86] kvm: Fix device passthrough when SME is active (Suravee Suthikulpanit) [1557911]
-- [x86] apic: Set up through-local-APIC mode on the boot CPU if 'noapic' specified (Baoquan He) [1526411]
-- [x86] apic: Remove the (now) unused disable_IO_APIC() function (Baoquan He) [1521003]
-- [x86] apic: Fix restoring boot IRQ mode in reboot and kexec/kdump (Baoquan He) [1521003]
-- [x86] apic: Split disable_IO_APIC() into two functions to fix CONFIG_KEXEC_JUMP=y (Baoquan He) [1521003]
-- [x86] apic: Split out restore_boot_irq_mode() from disable_IO_APIC() (Baoquan He) [1521003]
-- [x86] tsc: Fix erroneous TSC rate on Skylake Xeon (Prarit Bhargava) [1466058]
-- [x86] tsc: Print tsc_khz, when it differs from cpu_khz (Prarit Bhargava) [1466058]
-- [x86] tsc: Future-proof native_calibrate_tsc() (Prarit Bhargava) [1466058]
-
-* Wed Mar 21 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-862.el7]
-- [netdrv] i40e: Fix attach VF to VM issue (Stefan Assmann) [1528123]
-- [netdrv] ixgbevf: Add check for ixgbe_mbox_api_13 to ixgbevf_probe when setting max_mtu (Ken Cox) [1556696]
-- [md] dm btree: fix serious bug in btree_split_beneath() (Mike Snitzer) [1557849]
-- [x86] pti: Disable PTI user page table update in EFI virtual mode (Waiman Long) [1540061]
-
-* Wed Mar 14 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-861.el7]
-- [netdrv] tg3: prevent scheduling while atomic splat (Jonathan Toppins) [1554590]
-- [nvme] validate admin queue before unquiesce (David Milburn) [1549733]
-
-* Tue Mar 06 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-860.el7]
-- [acpi] sbshc: remove raw pointer from printk() message (Baoquan He) [1547009] {CVE-2018-5750}
-- [fs] gfs2: fixes to "implement iomap for block_map" (Andreas Grunbacher) [1542594]
-- [x86] kvm: svm: disable virtual GIF and VMLOAD/VMSAVE (Paolo Bonzini) [1552090]
-
-* Mon Mar 05 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-859.el7]
-- [media] v4l2-compat-ioctl32.c: refactor compat ioctl32 logic fixup (Jarod Wilson) [1548430] {CVE-2017-13166}
-- [kernel] futex: Prevent overflow by strengthen input validation (Joe Lawrence) [1547585] {CVE-2018-6927}
-- [fs] Revert dcache_readdir back to ->readdir() ("Eric W. Biederman") [1525541]
-- [md] dm-raid: fix incorrect sync_ratio when degraded (Mike Snitzer) [1547979]
-- [mm] page_alloc: fix memmap_init_zone pageblock alignment (Daniel Vacek) [1525121]
-- [mm] revert kvmalloc: stress the vmalloc path in the debugging kernel (Jeff Moyer) [1550094]
-- [powerpc] 64s: Allow control of RFI flush via debugfs (Mauricio Oliveira) [1543067]
-- [powerpc] 64s: Improve RFI L1-D cache flush fallback (Mauricio Oliveira) [1543067]
-- [powerpc] 64s: Wire up cpu_show_meltdown() (Mauricio Oliveira) [1543067]
-- [x86] kvm: vmx: Cache IA32_DEBUGCTL in memory (Paolo Bonzini) [1537379]
-- [x86] spec_ctrl: avoid rmb() on full retpoline kernels (Paolo Bonzini) [1537379]
-- [x86] spec_ctrl: replace boot_cpu_has with a static key for IBRS checks (Paolo Bonzini) [1537379]
-- [x86] spec_ctrl: actually use static key for retpolines (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: optimize IBRS handling at vmenter/vmexit (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: mark RDMSR path as unlikely (Paolo Bonzini) [1537379]
-- [x86] kvm: use native_read_msr to read SPEC_CTRL (Paolo Bonzini) [1537379]
-- [x86] kvm/nvmx: Set the CPU_BASED_USE_MSR_BITMAPS if we have a valid L02 MSR bitmap (Paolo Bonzini) [1537379]
-- [x86] nvmx: Properly set spec_ctrl and pred_cmd before merging MSRs (Paolo Bonzini) [1537379]
-- [x86] kvm/vmx: Allow direct access to MSR_IA32_SPEC_CTRL (Paolo Bonzini) [1537379]
-- [x86] kvm: Add IBPB support (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: make MSR bitmaps per-VCPU (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: Do not disable intercepts for BNDCFGS (Paolo Bonzini) [1537379]
-- [x86] kvm: vmx: introduce alloc_loaded_vmcs (Paolo Bonzini) [1537379]
-- [x86] kvm: nvmx: Eliminate vmcs02 pool (Paolo Bonzini) [1537379]
-- [x86] kvm: nvmx: single function for switching between vmcs (Paolo Bonzini) [1537379]
-- [x86] kvm: Update the reverse_cpuid list to include CPUID_7_EDX (Paolo Bonzini) [1537379]
-- [x86] cpuid: Fix up "virtual" IBRS/IBPB/STIBP feature bits on Intel (Paolo Bonzini) [1537379]
-- [x86] cpufeatures: Clean up Spectre v2 related CPUID flags (Paolo Bonzini) [1537379]
-- [x86] cpufeatures: Add Intel feature bits for Speculation Control (Paolo Bonzini) [1537379]
-- [x86] cpufeatures: Add AMD feature bits for Speculation Control (Paolo Bonzini) [1537379]
-- [x86] cpufeatures: Add CPUID_7_EDX CPUID leaf (Paolo Bonzini) [1537379]
-- [x86] cpu: Fill in feature word 13, CPUID_8000_0008_EBX (Paolo Bonzini) [1537379]
-
-* Tue Feb 27 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-858.el7]
-- [tools] revert perf: Fix swap for samples with raw data (Jiri Olsa) [1458228]
-- [netdrv] ibmvnic: Fix early release of login buffer (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Clean RX pool buffers during device close (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Free RX socket buffer in case of adapter error (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Fix NAPI structures memory leak (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Fix login buffer memory leaks (Desnes Augusto Nunes do Rosario) [1545578]
-- [netdrv] ibmvnic: Wait until reset is complete to set carrier on (Desnes Augusto Nunes do Rosario) [1545578]
-- [block] disable runtime-pm for blk-mq (Ming Lei) [1548269]
-- [mm] revert memcontrol: fix cgroup creation failure after many small jobs (Aristeu Rozanski) [1548593 1517028]
-- [mm] revert cgroup: kill css_id (Aristeu Rozanski) [1548593 1517028]
-
-* Mon Feb 26 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-857.el7]
-- [media] v4l2-compat-ioctl32.c: refactor compat ioctl32 logic (Jarod Wilson) [1548430] {CVE-2017-13166}
-- [sound] alsa: seq: Fix use-after-free at creating a port (CVE-2017-15265) (Jaroslav Kysela) [1503381] {CVE-2017-15265}
-- [gpu] drm/radeon: insist on 32-bit DMA for Cedar on PPC64/PPC64LE (Rob Clark) [1546022]
-- [edac] disable only ghes_edac by default (Aristeu Rozanski) [1543078]
-- [edac] ghes: Model a single, logical memory controller (Aristeu Rozanski) [1543078]
-- [fs] cifs: release cifs root_cred after exit_cifs (Leif Sahlberg) [1525874]
-- [fs] gfs2: Fix fallocate chunk size (Andreas Grunbacher) [1545329]
-- [fs] gfs2: Fixes to "Implement iomap for block_map" (Andreas Grunbacher) [1542594]
-- [fs] gfs2: Clean up (lookup,fillup)_metapath (Andreas Grunbacher) [1542594]
-- [fs] iomap: warn on zero-length mappings (Andreas Grunbacher) [1542594]
-- [md] raid0: remove blank line printk from dump_zones() (John Pittman) [1534272]
-- [md] dm: use blkdev_get rather than bdgrab when issuing pass-through ioctl (Mike Snitzer) [1513037]
-- [mm] kvmalloc: stress the vmalloc path in the debugging kernel (Mikulas Patocka) [1523567]
-- [mm] fs: rework do_invalidatepage (Eric Sandeen) [1546079]
-- [net] netfilter: fix NULL ptr dereference in nf_send_reset() (Paolo Abeni) [1546148]
-
-* Sun Feb 25 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-856.el7]
-- [infiniband] ipoib: Add ipoib_enhanced module parameter (Slava Shwartsman) [1533013]
-- [netdrv] ibmvnic: Remove skb->protocol checks in ibmvnic_xmit (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: Reset long term map ID counter (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: queue reset when CRQ gets closed during reset (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: Ensure that buffers are NULL after free (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: Fix rx queue cleanup for non-fatal resets (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: fix empty firmware version and errors cleanup (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] ibmvnic: fix firmware version when no firmware level has been provided by the VIOS server (Desnes Augusto Nunes do Rosario) [1544356]
-- [netdrv] mlx5e: Fix offloading of E-Switch TC pedit actions (Slava Shwartsman) [1545640]
-- [netdrv] qed: Correct setting the number of completion queues for FCoE functions (Chad Dupuis) [1542188]
-- [netdrv] ixgbe: fix crash in build_skb Rx code path (Ken Cox) [1520428]
-- [netdrv] tg3: APE heartbeat changes (Jonathan Toppins) [1546217]
-- [powerpc] pseries/vio: Dispose of virq mapping on vdevice unregister (Gustavo Duarte) [1544009]
-- [s390] qeth: fix underestimated count of buffer elements (Hendrik Brueckner) [1544698]
-- [x86] kvm: fix singlestepping over syscall (Paolo Bonzini) [1464481] {CVE-2017-7518}
-- [x86] paravirt: fix kabi breakage in pv_mmu_ops (Jeff Moyer) [1546027]
-- [x86] uaccess: introduce copy_from_iter_flushcache for pmem / cache-bypass operations (Jeff Moyer) [1471678]
-
-* Tue Feb 20 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-855.el7]
-- [crypto] algif_skcipher: Remove custom release parent function (Bruno Eduardo de Oliveira Meneguele) [1529441]
-- [crypto] algif_hash: Remove custom release parent function (Bruno Eduardo de Oliveira Meneguele) [1537376]
-- [mailbox] pcc: Drop uninformative output during boot (Kazuhito Hagio) [1515571]
-- [edac] skx_edac: Fix detection of single-rank DIMMs (Aristeu Rozanski) [1482248]
-- [md] free unused memory after bitmap resize (Nigel Croxon) [1532767]
-- [fs] sunrpc: ensure correct error is reported by xs_tcp_setup_socket() (Steve Dickson) [1536582]
-- [fs] Revert "fixing infinite OPEN loop in 4.0 stateid recovery" (Steve Dickson) [1542191]
-- [scsi] use 'scsi_device_from_queue()' for scsi_dh (Mike Snitzer) [1546212]
-- [scsi] dh: add a common helper to get a scsi_device from a request_queue (Mike Snitzer) [1546212]
-- [scsi] qedi: Drop cqe response during connection recovery (Chad Dupuis) [1543503]
-- [scsi] qedi: Fix a possible sleep-in-atomic bug in qedi_process_tmf_resp (Chad Dupuis) [1543503]
-- [scsi] qla4xxx: skip error recovery in case of register disconnect (Himanshu Madhani) [1541766]
-- [x86] spectre: fix the kernel build without CONFIG_RETPOLINE (Josh Poimboeuf) [1543939]
-
-* Mon Feb 19 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-854.el7]
-- [tools] perf: Fix swap for samples with raw data (Jiri Olsa) [1458228]
-- [alsa] hda/realtek: Enable Thinkpad Dock device for ALC298 platform (Jaroslav Kysela) [1469623]
-- [crypto] rng: prevent entry into drbg test path from algif_rng (Bruno Eduardo de Oliveira Meneguele) [1485815]
-- [net] macvtap: add namespace support to the sysfs device class (Davide Caratti) [1544499]
-- [net] sched: cls_u32: fix cls_u32 on filter replace (Ivan Vecera) [1542013]
-- [net] netfilter: xt_TCPMSS: add more sanity tests on tcph->doff (Florian Westphal) [1543088] {CVE-2017-18017}
-
-* Thu Feb 15 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-853.el7]
-- [sound] alsa: seq: Make ioctls race-free (CVE-2018-1000004) (Jaroslav Kysela) [1537203] {CVE-2018-1000004}
-- [gpu] drm/i915/gvt: move write protect handler out of mmio emulation function (Paul Lai) [1525419]
-- [gpu] drm/i915/gvt: Factor intel_vgpu_page_track (Paul Lai) [1525419]
-- [fs] xfs: eliminate duplicate icreate tx reservation functions (Brian Foster) [1397653]
-- [fs] xfs: refactor inode chunk alloc/free tx reservation (Brian Foster) [1397653]
-- [fs] xfs: include an allocfree res for inobt modifications (Brian Foster) [1397653]
-- [fs] xfs: truncate transaction does not modify the inobt (Brian Foster) [1397653]
-- [fs] xfs: fix up agi unlinked list reservations (Brian Foster) [1397653]
-- [fs] xfs: include inobt buffers in ifree tx log reservation (Brian Foster) [1397653]
-- [fs] xfs: print transaction log reservation on overrun (Brian Foster) [1397653]
-- [fs] xfs: dump transaction usage details on log reservation overrun (Brian Foster) [1397653]
-- [fs] xfs: refactor xlog_cil_insert_items() to facilitate transaction dump (Brian Foster) [1397653]
-- [fs] xfs: separate shutdown from ticket reservation print helper (Brian Foster) [1397653]
-- [s390] gs: add compat regset for the guarded storage broadcast control block (Hendrik Brueckner) [1537067]
-- [x86] intel_rdt/cqm: avoid negative static key counts (Joe Lawrence) [1524901]
-- [x86] efi: Fix boot crash by always mapping boot service regions into new EFI page tables (Lenny Szubowicz) [1535243]
-
-* Wed Feb 14 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-852.el7]
-- [netdrv] bnxt_en: Fix the 'Invalid VF' id check in bnxt_vf_ndo_prep routine (Jonathan Toppins) [1532863]
-- [netdrv] bnxt_en: Fix population of flow_type in bnxt_hwrm_cfa_flow_alloc() (Jonathan Toppins) [1532863]
-- [netdrv] bnxt_en: Fix sources of spurious netpoll warnings (Jonathan Toppins) [1532863]
-- [mm] memcg, slab: do not destroy children caches if parent has aliases (Aristeu Rozanski) [1502818]
-- [mm] memcg, slab: fix races in per-memcg cache creation/destruction (Aristeu Rozanski) [1502818]
-- [mm] memcg, slab: clean up memcg cache initialization/destruction (Aristeu Rozanski) [1502818]
-- [mm] memcg, slab: kmem_cache_create_memcg(): fix memleak on fail path (Aristeu Rozanski) [1502818]
-- [block] Invalidate cache on discard v2 (Ming Lei) [1515920]
-- [x86] mm: Fix use-after-free of ldt_struct (Oleg Nesterov) [1543352] {CVE-2017-17053}
-
-* Mon Feb 12 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-851.el7]
-- [kernel] acct.c: fix the acct->needcheck check in check_free_space() (Oleg Nesterov) [1520791]
-- [mm] pm/hibernate: touch NMI watchdog when creating snapshot (Aristeu Rozanski) [1487022]
-- [mm] userfaultfd: clear the vma->vm_userfaultfd_ctx if UFFD_EVENT_FORK fails (Andrea Arcangeli) [1531285]
-- [block] blk-mq: Take tagset lock when updating hw queues (Ming Lei) [1528644]
-- [kernel] genirq/affinity: avoid deadlock in pci_alloc_irq_vectors_affinity (Ming Lei) [1528644]
-- [block] blk-mq: avoid IO hang during CPU hotplug by freezing queues in order (Ming Lei) [1528644]
-- [nvme] kick requeue list when requeueing a request instead of when starting the queues (Ming Lei) [1528644]
-- [scsi] dual scan thread bug fix (Ewan Milne) [1509331]
-- [scsi] fix our current target reap infrastructure (Ewan Milne) [1509331]
-- [s390] crypto: fix aes/paes Kconfig dependeny (Hendrik Brueckner) [1538139]
-- [s390] mm: fix BUG_ON in crst_table_upgrade (Hendrik Brueckner) [1500580]
-- [x86] paravirt: Remove 'noreplace-paravirt' cmdline option (Josh Poimboeuf) [1538911]
-- [x86] microcode/amd: Add support for fam17h microcode loading (Suravee Suthikulpanit) [1540104]
-- [x86] Use __nostackprotect for sme_encrypt_kernel (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Encrypt the initrd earlier for BSP microcode update (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Prepare sme_encrypt_kernel() for PAGE aligned encryption (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Centralize PMD flags in sme_encrypt_kernel() (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Use a struct to reduce parameters for SME PGD mapping (Suravee Suthikulpanit) [1540104]
-- [x86] mm: Clean up register saving in the __enc_copy() assembly code (Suravee Suthikulpanit) [1540104]
-
-* Sat Feb 10 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-850.el7]
-- [crypto] chelsio - Check error code with IS_ERR macro (Arjun Vynipadath) [1542351]
-- [crypto] chelsio - Use x8_ble gf multiplication to calculate IV (Arjun Vynipadath) [1542351]
-- [crypto] gf128mul - The x8_ble multiplication functions (Arjun Vynipadath) [1542351]
-- [crypto] gf128mul - rename the byte overflow tables (Arjun Vynipadath) [1542351]
-- [crypto] gf128mul - remove xx() macro (Arjun Vynipadath) [1542351]
-- [crypto] chelsio - Fix memory leak (Arjun Vynipadath) [1542351]
-- [scsi] libcxgbi: use GFP_ATOMIC in cxgbi_conn_alloc_pdu() (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: remove the stid on listen create failure (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: when flushing, complete all wrs in a chain (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: reflect the original WR opcode in drain cqes (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: Only validate the MSN for successful completions (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: only insert drain cqes if wq is flushed (Arjun Vynipadath) [1541085]
-- [infiniband] iw_cxgb4: put ep reference in pass_accept_req() (Arjun Vynipadath) [1541085]
-- [netdrv] be2net: restore properly promisc mode after queues reconfiguration (Ivan Vecera) [1535897]
-- [netdrv] ixgbe: Set DMA attributes individually (Ken Cox) [1536455]
-- [netdrv] iwlwifi: mvm: fix security bug in PN checking (Stanislaw Gruszka) [1538028]
-- [netdrv] ibmvnic: Wait for device response when changing MAC (Desnes Augusto Nunes do Rosario) [1540838]
-- [netdrv] ibmvnic: Don't handle RX interrupts when not up (Desnes Augusto Nunes do Rosario) [1532345]
-- [netdrv] ibmvnic: Fix pending MAC address changes (Desnes Augusto Nunes do Rosario) [1535368]
-- [netdrv] ibmvnic: Include header descriptor support for ARP packets (Desnes Augusto Nunes do Rosario) [1529748]
-- [netdrv] ibmvnic: Increase maximum number of RX/TX queues (Desnes Augusto Nunes do Rosario) [1529748]
-- [netdrv] ibmvnic: Rename IBMVNIC_MAX_TX_QUEUES to IBMVNIC_MAX_QUEUES (Desnes Augusto Nunes do Rosario) [1529748]
-- [net] cls_u32: fix use after free in u32_destroy_key() (Paolo Abeni) [1540821]
-- [net] properly release sk_frag.page (Lorenzo Bianconi) [1535775]
-- [net] netlink: Add netns check on taps (William Townsend) [1538738] {CVE-2017-17449}
-- [net] netfilter: xt_osf: Add missing permission checks (Florian Westphal) [1539230] {CVE-2017-17448}
-- [net] netfilter: nfnetlink_cthelper: Add missing permission checks (Florian Westphal) [1539230] {CVE-2017-17448}
-
-* Fri Feb 09 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-849.el7]
-- [tools] perf vendor events powerpc: Remove duplicate events (Mauricio Oliveira) [1521091]
-- [tools] perf vendor events powerpc: Update POWER9 events (Mauricio Oliveira) [1521091]
-- [thermal] doc change updates expected cur_state behavior (Brad Peters) [1211434]
-- [hid] Add PCI ID for Cannon Lake and Coffee Lake (Brad Peters) [1530141]
-- [edac] sb_edac: Fix missing DIMM sysfs entries with KNL SNC2/SNC4 mode (Aristeu Rozanski) [1536995]
-- [fs] sysfs: Use only return value from is_visible for the file mode (Jeff Moyer) [1533361]
-- [fs] nfsd: auth: Fix gid sorting when rootsquash enabled (Thiago Becker) [1516978]
-- [block] silently forbid sending any ioctl to a partition (Paolo Bonzini) [1438809]
-- [mm] fix collision between DAX PMD and PTEs (Jeff Moyer) [1528957]
-- [mm] always enable thp for dax mappings (Jeff Moyer) [1472025]
-- [mm] improve readability of transparent_hugepage_enabled() (Jeff Moyer) [1472025]
-- [acpi] acpi, nfit: validate commands against the device type (Al Stone) [1471819]
-- [acpi] acpi, nfit: add support for the _LSI, _LSR, and _LSW label methods (Al Stone) [1471819]
-
-* Fri Feb 09 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-848.el7]
-- [kernel] lockdep: Increase MAX_STACK_TRACE_ENTRIES for debug kernel (Waiman Long) [1532959]
-- [kernel] make groups_sort calling a responsibility group_info allocators (Thiago Becker) [1516978]
-- [kernel] watchdog: Prevent false positives with turbo modes (Jiri Olsa) [1493859]
-- [netdrv] xen-netfront: enable device after manual module load (Eduardo Otubo) [1472220]
-- [netdrv] ibmvnic: Fix IPv6 packet descriptors (Gustavo Duarte) [1536746]
-- [netdrv] ibmvnic: Fix IP offload control buffer (Gustavo Duarte) [1536746]
-- [netdrv] bnxt_en: Don't print Link speed -1 no longer supported messages (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Uninitialized variable in bnxt_tc_parse_actions() (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Need to unconditionally shut down RoCE in bnxt_shutdown (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: wildcard smac while creating tunnel decap filter (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: fix dst/src fid for vxlan encap/decap actions (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Fix a variable scoping in bnxt_hwrm_do_send_msg() (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Add ETH_RESET_AP support (Jonathan Toppins) [1522743]
-- [netdrv] net: ethtool: add support for reset of AP inside NIC interface (Jonathan Toppins) [1522743]
-- [netdrv] bnxt_en: Fix an error handling path in 'bnxt_get_module_eeprom()' (Jonathan Toppins) [1522743]
-- [powerpc] kvm: book3s: Provide information about hardware/firmware CVE workarounds (Serhii Popovych) [1532077] {CVE-2017-5754}
-- [powerpc] powernv/pci: Enable 64-bit devices to access >4GB DMA space (Mauricio Oliveira) [1506259]
-- [powerpc] powernv/pci: Add helper to check if a PE has a single vendor (Mauricio Oliveira) [1506259]
-- [x86] kvm: svm: Fix up enable_smi_window due to out-of-order backport (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Enable Virtual GIF feature (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Add Virtual GIF feature definition (Suravee Suthikulpanit) [1135003]
-- [x86] cpufeature,kvm/svm: Rename (shorten) the new virtualized VMSAVE/VMLOAD CPUID flag (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Enable Virtual VMLOAD VMSAVE feature (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Add Virtual VMLOAD VMSAVE feature definition (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Rename lbr_ctl field in the vmcb control area (Suravee Suthikulpanit) [1135003]
-- [x86] kvm: svm: Prepare for new bit definition in lbr_ctl (Suravee Suthikulpanit) [1135003]
-- [x86] fpu: Use early_param() for clearcpuid (Scott Wood) [1539423]
-
-* Tue Feb 06 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-847.el7]
-- [dma-buf] fix reservation_object_wait_timeout_rcu once more v2 (Lyude Paul) [1535631]
-- [fs] nfsd: fix panic in posix_unblock_lock called from nfs4_laundromat (Dave Wysochanski) [1539866]
-- [fs] xfs: validate sb_logsunit is a multiple of the fs blocksize (Bill O'Donnell) [1538495]
-- [fs] nfsv4: always set NFS_LOCK_LOST when a lock is lost (Steve Dickson) [1540324]
-- [scsi] qla2xxx: Update driver version (Himanshu Madhani) [1524717]
-- [scsi] qla2xxx: Fix memory corruption during hba reset test (Himanshu Madhani) [1524717]
-- [scsi] qla2xxx: Fix logo flag for qlt_free_session_done() (Himanshu Madhani) [1524717]
-- [scsi] qla2xxx: Reset the logo flag, after target re-login (Himanshu Madhani) [1524717]
-- [block] dm: fix incomplete request_queue initialization (Mike Snitzer) [1517771]
-- [block] allow gendisk's request_queue registration to be deferred (Mike Snitzer) [1517771]
-- [block] Protect less code with sysfs_lock in blk_(un,) register_queue() (Mike Snitzer) [1517771]
-- [block] properly protect the 'queue' kobj in blk_unregister_queue (Mike Snitzer) [1517771]
-
-* Tue Feb 06 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-846.el7]
-- [infiniband] iser-target: avoid reinitializing rdma contexts for isert commands (Don Dutile) [1540434]
-- [netdrv] nfp: implement ethtool FEC mode settings (John Linville) [1519199]
-- [netdrv] nfp: add helpers for FEC support (John Linville) [1519199]
-- [netdrv] nfp: add get/set link settings ndos to representors (John Linville) [1519199]
-- [netdrv] nfp: resync repr state when port table sync (John Linville) [1519199]
-- [netdrv] nfp: refactor nfp_app_reprs_set (John Linville) [1519199]
-- [netdrv] nfp: don't depend on compiler constant propagation (John Linville) [1519199]
-- [netdrv] vmxnet3: repair memory leak (Neil Horman) [1525354]
-- [cpufreq] governor: Serialize governor callbacks (David Arcari) [1538572]
-- [cpufreq] governor: split cpufreq_governor_dbs() (David Arcari) [1538572]
-- [cpufreq] governor: register notifier from cs_init() (David Arcari) [1538572]
-- [cpufreq] intel_pstate: Remove use of get_target_pstate_use_cpu_load(() (Prarit Bhargava) [1537502]
-- [cpufreq] revert intel_pstate: Use load-based P-state selection more widely (Prarit Bhargava) [1537502]
-- [cpufreq] Fix intel_pstate driver (Prarit Bhargava) [1537502]
-- [x86] fpu: Fix get_xsave_addr() behavior under virtualization ("Dr. David Alan Gilbert") [1534309]
-- [x86] kvm: fix usage of uninit spinlock in avic_vm_destroy() (Wei Huang) [1537402]
-- [x86] KVM: Fix CPUID function for word 6 (80000001_ECX) (Wei Huang) [1533358]
-- [kernel] print kdump kernel loaded status in stack dump (Lianbo Jiang) [1535754]
-- [kernel] kexec: add a kexec_crash_loaded() function (Lianbo Jiang) [1535754]
-
-* Mon Feb 05 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-845.el7]
-- [watchdog] hpwdt: remove indirect call in watchdog/hpwdt.c (Josh Poimboeuf) [1535644]
-- [kernel] x86/spec_ctrl: cleanup __ptrace_may_access (Josh Poimboeuf) [1535644]
-- [x86] bugs: Drop one "mitigation" from dmesg (Josh Poimboeuf) [1535644]
-- [x86] kvm: vmx: Make indirect call speculation safe (Josh Poimboeuf) [1535644]
-- [x86] kvm: x86: Make indirect calls in emulator speculation safe (Josh Poimboeuf) [1535644]
-- [x86] retpoline: Optimize inline assembler for vmexit_fill_RSB (Josh Poimboeuf) [1535644]
-- [x86] mce: Make machine check speculation protected (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: fix ptrace IBPB optimization (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: Avoid returns in IBRS-disabled regions (Josh Poimboeuf) [1535644]
-- [x86] spectre/meltdown: avoid the vulnerability directory to weaken kernel security (Josh Poimboeuf) [1535644]
-- [x86] unwind: fix livepatch regression with CALL_NOSPEC macro (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: Document retpolines and ibrs_enabled=3 (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: upgrade GCC retpoline warning to an error (Josh Poimboeuf) [1535644]
-- [x86] Use IBRS for firmware update path (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: stuff RSB on context switch with SMEP enabled (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: enforce sane combinations of IBRS and retpoline (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: use upstream RSB stuffing function (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: add ibrs_enabled=3 (ibrs_user) (Josh Poimboeuf) [1535644]
-- [kernel] x86/jump_label: warn on failed jump label patch (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: detect unretpolined modules (Josh Poimboeuf) [1535644]
-- [x86] retpoline: Add LFENCE to the retpoline/RSB filling RSB macros (Josh Poimboeuf) [1535644]
-- [x86] retpoline: Fill return stack buffer on vmexit (Josh Poimboeuf) [1535644]
-- [x86] retpoline/xen: Convert Xen hypercall indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline/hyperv: Convert assembler indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline/ftrace: Convert ftrace assembler indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline/entry: Convert entry assembler indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline/crypto: Convert crypto assembler indirect jumps (Josh Poimboeuf) [1535644]
-- [x86] retpoline: Add initial retpoline support (Josh Poimboeuf) [1535644]
-- [x86] jump_label: add asm support for static keys (Josh Poimboeuf) [1535644]
-- [x86] asm: Make asm/alternative.h safe from assembly (Josh Poimboeuf) [1535644]
-- [tools] objtool: Support new GCC 6 switch jump table pattern (Josh Poimboeuf) [1535644]
-- [tools] objtool: Detect jumps to retpoline thunks (Josh Poimboeuf) [1535644]
-- [x86] spectre: Add boot time option to select Spectre v2 mitigation (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: print features changed by microcode loading (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: refactor the init and microcode loading paths (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: move initialization of X86_FEATURE_IBPB_SUPPORT (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove SPEC_CTRL_PCP_IBPB bit (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove ibrs_enabled variable (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: add ibp_disabled variable (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: add X86_FEATURE_IBP_DISABLE (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove IBP disable for AMD model 0x16 (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove performance measurements from documentation (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: make ipbp_enabled read-only (Josh Poimboeuf) [1535644]
-- [x86] spec_ctrl: remove ibpb_enabled=2 mode (Josh Poimboeuf) [1535644]
-- [x86] cpu: Implement CPU vulnerabilites sysfs functions (Josh Poimboeuf) [1535644]
-- [base] sysfs/cpu: Add vulnerability folder (Josh Poimboeuf) [1535644]
-- [x86] cpu: Merge bugs.c and bugs_64.c (Josh Poimboeuf) [1535644]
-
-* Fri Feb 02 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-844.el7]
-- [tools] perf record: Fix wrong size in perf_record_mmap for last kernel module (Jiri Olsa) [1509073]
-- [testmgr] disable ECDH and DH in FIPS mode (Bruno Eduardo de Oliveira Meneguele) [1523357]
-- [kernel] cpumask: Fix cpumask leak in partition_sched_domains() (Joe Lawrence) [1534918]
-- [kernel] pm / hibernate: Restore processor state before using per-CPU variables (Prarit Bhargava) [1418896]
-- [x86] power/64: Fix hibernation return address corruption (Prarit Bhargava) [1418896]
-- [x86] pti/mm: Fix trampoline stack problem with XEN PV (Andrea Arcangeli) [1533542]
-- [x86] mm: Rework wbinvd, hlt operation in stop_this_cpu() (Suravee Suthikulpanit) [1522676]
-- [mm] swap: zswap: maybe_preload & refactoring (Jerome Marchand) [1532517]
-- [mm] ksm: add cond_resched() to the rmap_walks (Rafael Aquini) [1519517]
-- [mm] mprotect: add a cond_resched() inside change_pmd_range() (Rafael Aquini) [1519517]
-- [infiniband] rdma/bnxt_re: Fix the RoCE firmware version reported (Selvin Xavier) [1538406]
-- [netdrv] cxgb4: fix possible deadlock (Arjun Vynipadath) [1439204]
-- [netdrv] hv_netvsc: Fix the receive buffer size limit (Vitaly Kuznetsov) [1532169]
-- [netdrv] nfp: flower: vxlan: ensure no sleep in atomic context (John Linville) [1537927]
-- [netdrv] nfp: flower: prioritize stats updates (John Linville) [1537141]
-- [net] Fix double free and memory corruption in get_net_ns_by_id() (Aristeu Rozanski) [1531551] {CVE-2017-15129}
-
-* Wed Jan 31 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-843.el7]
-- [media] xc2028: avoid use after free (Torez Smith) [1402893] {CVE-2016-7913}
-- [kernel] module: avoid ifdefs for sig_enforce declaration (Bruno Eduardo de Oliveira Meneguele) [1531454]
-- [fs] sysfs: Do not warn about missing kernfs_node if kobj is not active (Vivek Goyal) [1534568]
-- [md] not clear ->safemode for external metadata array (Xiao Ni) [1526283]
-- [md] always clear ->safemode when md_check_recovery gets the mddev lock (Xiao Ni) [1526283]
-- [block] blk-mq: don't allow write on attributes of .seq_ops (Ming Lei) [1535949]
-- [scsi] lpfc: Fix SCSI io host reset causing kernel crash (Dick Kennedy) [1530120]
-- [scsi] lpfc: FLOGI failures are reported when connected to a private loop (Dick Kennedy) [1532307]
-- [scsi] qla2xxx: Fix NULL pointer crash due to probe failure (Himanshu Madhani) [1525810]
-- [scsi] core: check for device state in __scsi_remove_target() (Ewan Milne) [1537459]
-- [scsi] fixup kernel warning during rmmod() (Ewan Milne) [1537459]
-- [nvme] rdma: fix concurrent reset and reconnect (David Milburn) [1517602]
-- [nvdimm] btt: fix uninitialized err_lock (Jeff Moyer) [1524775]
-- [tools] testing/nvdimm: fix nfit_test buffer overflow (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: fix nfit_test shutdown crash (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: make iset cookie predictable (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: support for sub-dividing a pmem region (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: fix allocation range for mock flush hint tables (Jeff Moyer) [1375501]
-
-* Tue Jan 30 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-842.el7]
-- [crypto] aesni: add wrapper for generic gcm(aes) (Sabrina Dubroca) [1525527]
-- [crypto] aesni: fix typo in generic_gcmaes_decrypt (Sabrina Dubroca) [1525527]
-- [infiniband] iser-target: Fix possible use-after-free in connection establishment error (Don Dutile) [1519131]
-- [netdrv] hv_netvsc: Change GPADL teardown order according to Hyper-V version (Mohammed Gamal) [1529436]
-- [netdrv] hv_netvsc: Split netvsc_revoke_buf() and netvsc_teardown_gpadl() (Mohammed Gamal) [1529436]
-- [netdrv] cxgb4vf: Fix SGE FL buffer initialization logic for 64K pages (Arjun Vynipadath) [1538425]
-- [netdrv] bnxt_en: export a common switchdev PARENT_ID for all reps of an adapter (Jonathan Toppins) [1536308]
-- [netdrv] ibmvnic: Allocate and request vpd in init_resources (Gustavo Duarte) [1537433]
-- [netdrv] ibmvnic: Revert to previous mtu when unsupported value requested (Gustavo Duarte) [1537433]
-- [netdrv] ibmvnic: Modify buffer size and number of queues on failover (Gustavo Duarte) [1537433]
-- [netdrv] revert mlx5: Expose command polling interface (Don Dutile) [1533670]
-- [netdrv] revert mlx5: Add fast unload support in shutdown flow (Don Dutile) [1533670]
-- [net] ipv4: fib: Fix metrics match when deleting a route (Phil Sutter) [1526442]
-- [net] sched: fix use-after-free in tcf_block_put_ext (Ivan Vecera) [1533034]
-- [net] sched: get rid of rcu_barrier() in tcf_block_put_ext() (Ivan Vecera) [1533034]
-- [net] use for_each_netdev_safe() in rtnl_group_changelink() (Lorenzo Bianconi) [1523618]
-- [net] openvswitch: Fix pop_vlan action for double tagged frames (Eric Garver) [1522739]
-- [net] openvswitch: fix list corruption on force commit (Eric Garver) [1531680]
-- [net] tcp: Split BUG_ON() in tcp_tso_should_defer() into two assertions (Stefano Brivio) [1532373]
-- [net] ethtool: add support for forward error correction modes (Ivan Vecera) [1530634]
-- [net] vxlan: restore dev->mtu setting based on lower device (Stefano Brivio) [1520310]
-- [net] xfrm: add UDP encapsulation port in migrate message (Bruno Eduardo de Oliveira Meneguele) [1460790]
-- [net] xfrm: extend MIGRATE with UDP encapsulation port (Bruno Eduardo de Oliveira Meneguele) [1460790]
-- [net] xfrm: fix state migration copy replay sequence numbers (Bruno Eduardo de Oliveira Meneguele) [1460790]
-- [net] xfrm: Cleanup error handling of xfrm_state_clone (Bruno Eduardo de Oliveira Meneguele) [1460790]
-- [net] xfrm: checkpatch errors with foo * bar (Bruno Eduardo de Oliveira Meneguele) [1460790]
-
-* Mon Jan 29 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-841.el7]
-- [gpu] drm/vmwgfx: fix memory corruption with legacy/sou connectors (Rob Clark) [1525872]
-- [gpu] drm/nouveau/disp/gf119: add missing drive vfunc ptr (Rob Clark) [1532388]
-- [gpu] drm/i915: Apply Display WA #1183 on skl, kbl, and cfl (Rob Clark) [1532388]
-- [gpu] drm/i915: Disable DC states around GMBUS on GLK (Rob Clark) [1532388]
-- [gpu] drm/i915/skl+: debugfs entry to control IPC (Rob Clark) [1532388]
-- [gpu] drm/i915/bxt+: Enable IPC support (Rob Clark) [1532388]
-- [gpu] drm/i915/gen9+: Add has_ipc flag in device info structure (Rob Clark) [1532388]
-- [gpu] drm/i915/gen10: Calculate and enable transition WM (Rob Clark) [1532388]
-- [gpu] drm/i915/skl+: Optimize WM calculation (Rob Clark) [1532388]
-- [gpu] drm/i915: Fixed point fixed16 wrapper cleanup (Rob Clark) [1532388]
-- [gpu] drm/i915: Flush pending GTT writes before unbinding (Rob Clark) [1532388]
-- [gpu] drm: Add retries for lspcon mode detection (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: bypass lru touch for KIQ ring submission (Rob Clark) [1532388]
-- [gpu] drm/i915: Fix vblank timestamp/frame counter jumps on gen2 (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Use unsigned ring indices in amdgpu_queue_mgr_map (Rob Clark) [1532388]
-- [gpu] drm/i915: Prevent zero length "index" write (Rob Clark) [1532388]
-- [gpu] drm/i915: Don't try indexed reads to alternate slave addresses (Rob Clark) [1532388]
-- [gpu] drm/i915/gvt: Correct ADDR_4K/2M/1G_MASK definition (Rob Clark) [1532388]
-- [gpu] drm/i915/fbdev: Serialise early hotplug events with async fbdev config (Rob Clark) [1532388]
-- [gpu] drm/i915: Re-register PMIC bus access notifier on runtime resume (Rob Clark) [1532388]
-- [gpu] drm/i915: Fix false-positive assert_rpm_wakelock_held in i915_pmic_bus_access_notifier v2 (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Set adev->vcn.irq.num_types for VCN (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: move UVD/VCE and VCN structure out from union (Rob Clark) [1532388]
-- [gpu] drm/edid: Don't send non-zero YQ in AVI infoframe for HDMI 1.x sinks (Rob Clark) [1532388]
-- [gpu] drm/fb_helper: Disable all crtc's when initial setup fails (Rob Clark) [1532388]
-- [gpu] drm/amd/pp: fix typecast error in powerplay (Rob Clark) [1532388]
-- [gpu] drm/ttm: once more fix ttm_buffer_object_transfer (Rob Clark) [1532388]
-- [gpu] drm/radeon: fix atombios on big endian (Rob Clark) [1532388]
-- [gpu] drm/vblank: Tune drm_crtc_accurate_vblank_count() WARN down to a debug (Rob Clark) [1532388]
-- [gpu] drm/vblank: Fix flip event vblank count (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Remove check which is not valid for certain VBIOS (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Properly allocate VM invalidate eng v2 (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: fix error handling in amdgpu_bo_do_create (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: correct reference clock value on vega10 (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: Potential uninitialized variable in amdgpu_vm_update_directories() (Rob Clark) [1532388]
-- [gpu] drm/amdgpu: potential uninitialized variable in amdgpu_vce_ring_parse_cs() (Rob Clark) [1532388]
-- [gpu] revert "drm/radeon: dont switch vt on suspend" (Rob Clark) [1532388]
-- [x86] gpu: add CFL to early quirks (Rob Clark) [1532388]
-- [x86] gpu: CNL uses the same GMS values as SKL (Rob Clark) [1532388]
-- [x86] gpu: GLK uses the same GMS values as SKL (Rob Clark) [1532388]
-
-* Mon Jan 29 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-840.el7]
-- [i2c] designware: Find bus speed from ACPI (Gopal Tiwari) [1456705]
-- [i2c] core: Add function for finding the bus speed from ACPI, take 2 (Gopal Tiwari) [1456705]
-- [i2c] core: Cleanup I2C ACPI namespace, take 2 (Gopal Tiwari) [1456705]
-- [i2c] designware: Enable high speed mode (Gopal Tiwari) [1456705]
-- [i2c] designware: set the common config before the if else (Gopal Tiwari) [1456705]
-- [i2c] designware: Enable fast mode plus (Gopal Tiwari) [1456705]
-- [i2c] designware: get fast plus and high speed *CNT configuration (Gopal Tiwari) [1456705]
-- [i2c] designware: Move clk_freq into struct dw_i2c_dev (Gopal Tiwari) [1456705]
-- [i2c] i2c / acpi: add support for ACPI reconfigure notifications (Gopal Tiwari) [1456705]
-- [acpi] add support for ACPI reconfiguration notifiers (Gopal Tiwari) [1456705]
-- [acpi] scan: fix enumeration (visited) flags for bus rescans (Gopal Tiwari) [1456705]
-- [i2c] use pr_fmt in the core (Gopal Tiwari) [1456705]
-- [i2c] print more info when acpi_i2c_space_handler() fails (Gopal Tiwari) [1456705]
-- [i2c] add error message when obtaining idr fails (Gopal Tiwari) [1456705]
-- [i2c] improve error messages in i2c_register_adapter() (Gopal Tiwari) [1456705]
-- [i2c] cleanup i2c_register_adapter() by refactoring recovery init (Gopal Tiwari) [1456705]
-- [i2c] free idr when sanity checks in i2c_register_adapter() fail (Gopal Tiwari) [1456705]
-- [i2c] designware-pci: Make bus number allocation robust (Gopal Tiwari) [1456705]
-- [i2c] only check scl functions when using generic recovery (Gopal Tiwari) [1456705]
-- [i2c] let I2C masters ignore their children for PM (Gopal Tiwari) [1456705]
-- [i2c] core: use new 8 bit address helper function (Gopal Tiwari) [1456705]
-- [kernel] i2c: introduce helper function to get 8 bit address from a message (Gopal Tiwari) [1456705]
-- [i2c] immediately mark ourselves as registered (Gopal Tiwari) [1456705]
-- [i2c] do not use internal data from driver core (Gopal Tiwari) [1456705]
-- [i2c] Add generic support passing secondary devices addresses (Gopal Tiwari) [1456705]
-- [i2c] always enable RuntimePM for the adapter device (Gopal Tiwari) [1456705]
-- [i2c] i2c / acpi: Rework I2C device scanning (Gopal Tiwari) [1456705]
-- [i2c] core: Add support for best effort block read emulation (Gopal Tiwari) [1456705]
-- [i2c] doc: dt: describe generic bindings (Gopal Tiwari) [1456705]
-- [i2c] slave: print warning if slave flag not set (Gopal Tiwari) [1456705]
-- [i2c] support 10 bit and slave (Gopal Tiwari) [1456705]
-- [i2c] core: add and export of_get_i2c_adapter_by_node() interface (Gopal Tiwari) [1456705]
-- [i2c] core: manage i2c bus device refcount in i2c_get/put_adapter (Gopal Tiwari) [1456705]
-- [i2c] fix leaked device refcount on of_find_i2c_* error path (Gopal Tiwari) [1456705]
-- [i2c] take address space into account when checking for used addresses (Gopal Tiwari) [1456705]
-- [i2c] make address check indpendent from client struct (Gopal Tiwari) [1456705]
-- [i2c] rename address check functions (Gopal Tiwari) [1456705]
-- [i2c] core: only use set_scl for bus recovery after calling prepare_recovery (Gopal Tiwari) [1456705]
-- [i2c] core: Reduce stack size of acpi_i2c_space_handler() (Gopal Tiwari) [1456705]
-- [i2c] check for proper length of the reg property (Gopal Tiwari) [1456705]
-- [i2c] core: fix typo in comment (Gopal Tiwari) [1456705]
-- [i2c] apply address offset for slaves, too (Gopal Tiwari) [1456705]
-- [kernel] i2c: add a flag to mark clients as slaves (Gopal Tiwari) [1456705]
-- [i2c] slave: add error messages to slave core (Gopal Tiwari) [1456705]
-- [i2c] Mark adapter devices with pm_runtime_no_callbacks (Gopal Tiwari) [1456705]
-- [i2c] core: Export bus recovery functions (Gopal Tiwari) [1456705]
-- [i2c] change input parameter to i2c_adapter for prepare/unprepare_recovery (Gopal Tiwari) [1456705]
-- [i2c] documentation: i2c: describe the new slave mode (Gopal Tiwari) [1456705]
-- [i2c] clarify comments about the dev_released completion (Gopal Tiwari) [1456705]
-- [i2c] Only include slave support if selected (Gopal Tiwari) [1456705]
-- [i2c] designware: Do not calculate SCL timing parameters needlessly (Gopal Tiwari) [1456705]
-- [i2c] simplify boilerplate code for attribute groups (Gopal Tiwari) [1456705]
-- [i2c] do not try to load modules for of-registered devices (Gopal Tiwari) [1456705]
-- [i2c] acpi: Pick the first address if device has multiple (Gopal Tiwari) [1456705]
-- [i2c] Remove support for legacy PM (Gopal Tiwari) [1456705]
-- [i2c] core changes for slave support (Gopal Tiwari) [1456705]
-- [i2c] acpi: remove unneeded variable initialization (Gopal Tiwari) [1456705]
-- [i2c] acpi: Fix NULL Pointer dereference (Gopal Tiwari) [1456705]
-- [i2c] move acpi code back into the core (Gopal Tiwari) [1456705]
-- [i2c] add debug info when class instantiation was dropped (Gopal Tiwari) [1456705]
-- [i2c] acpi: Clean up I2C ACPI code and Add CONFIG_I2C_ACPI config (Gopal Tiwari) [1456705]
-- [i2c] acpi: Add i2c ACPI operation region support (Gopal Tiwari) [1456705]
-- [i2c] Add message transfer tracepoints for SMBUS (ver 2) (Gopal Tiwari) [1456705]
-- [i2c] Add message transfer tracepoints for I2C (Gopal Tiwari) [1456705]
-- [i2c] add deprecation warning for class based instantiation (Gopal Tiwari) [1456705]
-- [i2c] Use stable dev_name for ACPI enumerated I2C slaves (Gopal Tiwari) [1456705]
-- [i2c] attach/detach I2C client device to the ACPI power domain (Gopal Tiwari) [1456705]
-- [acpi] pm: allow child devices to ignore parent power state (Gopal Tiwari) [1456705]
-- [i2c] Not all adapters have a parent (Gopal Tiwari) [1456705]
-- [i2c] Remove redundant 'driver' field from the i2c_client struct (Gopal Tiwari) [1456705]
-- [media] core: Don't use i2c_client->driver (Gopal Tiwari) [1456705]
-- [acpi] pm: Make messages in acpi_device_set_power() print device names (Gopal Tiwari) [1456705]
-
-* Mon Jan 29 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-839.el7]
-- [powerpc] pseries: Make RAS IRQ explicitly dependent on DLPAR WQ (Serhii Popovych) [1533857]
-- [s390] cpuinfo: show facilities as reported by stfle (Hendrik Brueckner) [1535082]
-- [x86] locking/qspinlock: Fix kabi problem in a non-KVM/XEN VM (Waiman Long) [1533529]
-- [x86] platform/uv: Mark tsc_check_sync as an init function (Frank Ramsay) [1526066]
-- [x86] platform/uv: Add check of TSC state set by UV BIOS (Frank Ramsay) [1526066]
-- [x86] tsc: Provide a means to disable TSC ART (Frank Ramsay) [1526066]
-- [x86] tsc: Drastically reduce the number of firmware bug warnings (Frank Ramsay) [1526066]
-- [x86] tsc: Skip TSC test and error messages if already unstable (Frank Ramsay) [1526066]
-- [x86] tsc: Add option that TSC on Socket 0 being non-zero is valid (Frank Ramsay) [1526066]
-- [x86] tsc: Remove the TSC_ADJUST clamp (Frank Ramsay) [1526066]
-- [crypto] chcr - Avoid algo allocation in softirq (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Select device in Round Robin fashion (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Ensure Destination sg entry size less than 2k (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Add debug counters (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Add ctr mode and process large sg entries for cipher (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Avoid changing request structure (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Return correct error code (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix fallback key setting (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Pass lcb bit setting to firmware (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix error handling related to 'chcr_alloc_shash' (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Add fallback for AEAD algos (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Set hmac_ctrl bit to use HW register HMAC_CFG 456 (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Increase priority of AEAD algos (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix Smatch Complaint (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix wrong typecasting (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Change algo priority (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Change cra_flags for cipher algos (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Use cipher instead of Block Cipher in gcm setkey (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix key length for RFC4106 (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Fix panic on dma_unmap_sg (Arjun Vynipadath) [1458315]
-- [crypto] chcr - Add AEAD algos (Arjun Vynipadath) [1458315]
-- [crypto] aead - move aead_request_cast helper to aead.h (Arjun Vynipadath) [1458315]
-- [crypto] scatterwalk - Add scatterwalk_ffwd helper (Arjun Vynipadath) [1458315]
-- [netdrv] iwlwifi: pcie: fix DMA memory mapping / unmapping (Stanislaw Gruszka) [1501882]
-- [netdrv] ath10k: fix build errors with !CONFIG_PM (Stanislaw Gruszka) [1501882]
-- [netdrv] ath10k: fix core PCI suspend when WoWLAN is supported but disabled (Stanislaw Gruszka) [1501882]
-- [netdrv] ath9k: fix tx99 potential info leak (Stanislaw Gruszka) [1501882]
-- [netdrv] i40e: don't remove netdev->dev_addr when syncing uc list (Stefan Assmann) [1469354]
-- [netdrv] cxgb3: assign port id to net_device->dev_port (Arjun Vynipadath) [1530123]
-- [netdrv] bnx2x: Improve reliability in case of nested PCI errors (Michal Schmidt) [1529860]
-
-* Fri Jan 26 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-838.el7]
-- [thermal] initialize thermal zone device correctly (Lenny Szubowicz) [1487411]
-- [net] bluetooth: Prevent stack info leak from the EFS element (Gopal Tiwari) [1519633] {CVE-2017-1000410}
-- [tools] cpupower: fix potential memory leak (Prarit Bhargava) [1422951]
-- [tools] cpupower: bench: parse.c: fix several resource leaks (Prarit Bhargava) [1422951]
-- [usb] core: prevent malicious bNumInterfaces overflow (Torez Smith) [1536886] {CVE-2017-17558}
-- [misc] genwqe: Take R/W permissions into account when dealing with memory pages (Gustavo Duarte) [1528752]
-- [md] Call wait_barrier twice when underlaying device is blocked (Xiao Ni) [1527875]
-- [ata] ahci: Add Intel Cannon Lake PCH-H PCI ID (David Milburn) [1533333 1457266]
-- [block] elevator: lookup mq vs non-mq elevators (Ming Lei) [1526859]
-- [block] elevator: remove redundant warnings on IO scheduler switch (Ming Lei) [1526859]
-- [block] blk-mq: set mq-deadline as default scheduler for single queue device (Ming Lei) [1154525]
-- [nvme] dm mpath: backport blk_path_error() (Mike Snitzer) [1535615]
-- [nvme] fabrics: initialize default host->id in nvmf_host_default() (Ewan Milne) [1533963]
-- [nvme] fabrics: generate spec-compliant UUID NQNs (Ewan Milne) [1533963]
-- [scsi] lpfc: Fix ndlp ref count for pt2pt mode issue RSCN (Dick Kennedy) [1532295]
-- [scsi] lpfc: Linux LPFC driver does not process all RSCNs (Dick Kennedy) [1532295]
-- [scsi] lpfc: Driver fails to detect direct attach storage array (Dick Kennedy) [1532303]
-- [fs] gfs2: Use rhashtable walk interface in glock_hash_walk (Andreas Grunbacher) [1526134]
-- [fs] gfs2: Glock dump performance regression fix (Andreas Grunbacher) [1526134]
-- [fs] rhashtable: Add rhastable_walk_peek (Andreas Grunbacher) [1526134]
-- [fs] nfs: commit direct writes even if they fail partially (Benjamin Coddington) [1132610]
-- [fs] simple_xattr: permit 0-size extended attributes (Miklos Szeredi) [1532490]
-- [fs] xfs: don't change inode mode if ACL update fails (Bill O'Donnell) [1480671]
-- [fs] pnfs: fix nfs_direct_req ref leak when i/o falls back to the mds (Scott Mayhew) [1519649]
-
-* Tue Jan 23 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-837.el7]
-- [mm] cgroup: kill css_id (Aristeu Rozanski) [1470325]
-- [mm] memcontrol: fix cgroup creation failure after many small jobs (Aristeu Rozanski) [1470325]
-- [mm] device-dax: implement ->split() to catch invalid munmap attempts (Jeff Moyer) [1523344]
-- [mm] mm, hugetlbfs: introduce ->split() to vm_operations_struct (Jeff Moyer) [1523344]
-- [mm] move split_huge_page_pud/pmd sanity checks under the pte lock (Jeff Moyer) [1523344]
-- [mm] filemap: get rid of radix tree gfp mask for pagecache_get_page (Yasuyuki Kobayashi) [1469247]
-- [iommu] vt-d: Use domain instead of cache fetching (Peter Xu) [1531367]
-- [nvme] rdma: don't fully stop the controller in error recovery (David Milburn) [1532621]
-- [fs] don't call file_pos_write() if vfs_read/write(, v) fails (Ivan Vecera) [1534483]
-- [x86] syscall: int80 must not clobber r12-15 (Oleg Nesterov) [1531686]
-- [x86] syscall: change ia32_syscall() to create the full register frame in ia32_do_call() (Oleg Nesterov) [1531686]
-- [x86] KVM: VMX: remove I/O port 0x80 bypass on Intel hosts (Radim Krcmar) [1520349] {CVE-2017-1000407}
-- [kernel] livepatch: add locking to force and signal functions (Joe Lawrence) [1522957]
-- [kernel] livepatch: force transition to finish (Joe Lawrence) [1522957]
-- [kernel] livepatch: send a fake signal to all blocking tasks (Joe Lawrence) [1522957]
-- [infiniband] hfi1: Prevent a NULL dereference (Alex Estrin) [1535166]
-- [infiniband] qib: Fix comparison error with qperf compare/swap test (Alex Estrin) [1526145 1520402]
-- [infiniband] cm: Change sgid to IB GID when handling CM request (Alex Estrin) [1526145 1520402]
-- [infiniband] hfi1: Mask the path bits with the LMC for 16B RC Acks (Alex Estrin) [1526145 1520402]
-
-* Mon Jan 22 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-836.el7]
-- [x86] platform/uv/bau: Replace hard-coded values with MMR definitions (Frank Ramsay) [1535031]
-- [x86] platform/uv: Fix UV4A BAU MMRs (Frank Ramsay) [1535031]
-- [x86] platform/uv: Fix GAM MMR references in the UV x2apic code (Frank Ramsay) [1535031]
-- [x86] platform/uv: Fix GAM MMR changes in UV4A (Frank Ramsay) [1535031]
-- [x86] platform/uv: Add references to access fixed UV4A HUB MMRs (Frank Ramsay) [1535031]
-- [x86] platform/uv: Fix UV4A support on new Intel Processors (Frank Ramsay) [1535031]
-- [x86] platform/uv: Update uv_mmrs.h to prepare for UV4A fixes (Frank Ramsay) [1535031]
-- [md] dm raid: use rs_is_raid*() (Heinz Mauelshagen) [1388632]
-- [md] dm raid: simplify rs_get_progress() (Heinz Mauelshagen) [1388632]
-- [md] dm raid: ensure 'a' chars during reshape (Heinz Mauelshagen) [1388632]
-- [md] dm raid: avoid keeping raid set frozen (Heinz Mauelshagen) [1388632 1514215]
-- [md] dm raid: validate current raid sets redundancy (Heinz Mauelshagen) [1388632 1514500]
-- [md] dm-raid: bump target version to reflect numerous fixes (Heinz Mauelshagen) [1388632 1514215]
-- [md] dm raid: small cleanup and remove unsed struct raid_set member (Heinz Mauelshagen) [1388632]
-- [md] dm raid: fix rs_get_progress() synchronization state_ratio (Heinz Mauelshagen) [1388632 1508070]
-- [md] dm raid: avoid passing array_in_sync variable to raid_status() callees (Heinz Mauelshagen) [1388632]
-- [md] dm raid: display a consistent copy of the MD status via raid_status() (Heinz Mauelshagen) [1388632]
-- [md] dm raid: fix raid_resume() to keep raid set frozen as needed (Heinz Mauelshagen) [1388632]
-- [md] dm raid: add component device size checks to avoid runtime failure (Heinz Mauelshagen) [1388632]
-- [md] dm raid: fix raid set size revalidation (Heinz Mauelshagen) [1388632]
-- [md] dm raid: correct resizing state relative to reshape space in ctr (Heinz Mauelshagen) [1388632]
-- [md] dm raid: consume sizes after md_finish_reshape() completes changing them (Heinz Mauelshagen) [1388632]
-- [md] dm raid: fix deadlock caused by premature md_stop_writes() (Heinz Mauelshagen) [1388632 1514215]
-- [md] dm raid: add raid4_5_6 journal write-back support via journal_mode option (Heinz Mauelshagen) [1388632]
-- [tools] power turbostat: Make turbostat quiet by default (Prarit Bhargava) [1531825]
-- [acpi] battery: Fix doubly added battery on system suspend (Lenny Szubowicz) [1518210]
-
-* Mon Jan 22 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-835.el7]
-- [md] limit mdstat resync progress to max_sectors (Nigel Croxon) [1520449]
-- [mailbox] acpi/pcc: Use pr_debug() for debug messages in pcc_init() (Prarit Bhargava) [1529885]
-- [bluetooth] btusb: Update firmware filename for Intel 9x60 and later (Gopal Tiwari) [1530359]
-- [alsa] hda/realtek: Fix ALC700 family no sound issue (Jaroslav Kysela) [1520733]
-- [pci] Create SR-IOV virtfn/physfn links before attaching driver (Kamal Heib) [1416270]
-- [powercap] rapl: handle missing MSRs (Xiaolong Wang) [1369918]
-- [powercap] rapl: add package reference per domain (Xiaolong Wang) [1369918]
-- [powercap] rapl: reduce ipi calls (Xiaolong Wang) [1369918]
-- [block] blk-mq: fix kernel oops in blk_mq_tag_idle() (Ming Lei) [1517640]
-- [block] blk-mq: make sure the variable of 'blk_mq_aux_ops' is per variable of 'blk_mq_ops' (Ming Lei) [1525468]
-- [usb] core: Don't print a warning if interface driver rebind is deferred at resume (Jerry Snitselaar) [1459718]
-- [input] serio: drop warnings in case of EPROBE_DEFER from serio_find_driver() (Jerry Snitselaar) [1459718]
-- [base] bus: don't warn on deferred probe (Jerry Snitselaar) [1459718]
-- [kernel] stop using 'pK' for /proc/kallsyms pointer values (Lenny Szubowicz) [1532366]
-- [kernel] kallsyms.c: use __seq_open_private() (Lenny Szubowicz) [1532366]
-- [kernel] perf/core: Change the default paranoia level to 2 (Lenny Szubowicz) [1532366]
-- [powerpc] kvm: book3s hv: Always flush TLB in kvmppc_alloc_reset_hpt() (David Gibson) [1528958]
-- [s390] sclp: single increment assignment control (Hendrik Brueckner) [1456517]
-
-* Fri Jan 19 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-834.el7]
-- [infiniband] ib/mlx5: Fix mlx5_ib_alloc_mr error flow (Kamal Heib) [1534242]
-- [infiniband] ib/mlx5: Serialize access to the VMA list (Kamal Heib) [1534242]
-- [netdrv] mlx5: Stay in polling mode when command EQ destroy fails (Kamal Heib) [1534242]
-- [kernel] mlx5: Cleanup IRQs in case of unload failure (Kamal Heib) [1534242]
-- [netdrv] mlx5: Fix steering memory leak (Kamal Heib) [1534242]
-- [netdrv] mlx5: Fix error flow in CREATE_QP command (Kamal Heib) [1534242]
-- [netdrv] mlx5e: Prevent possible races in VXLAN control flow (Kamal Heib) [1533796]
-- [netdrv] mlx5e: Add refcount to VXLAN structure (Kamal Heib) [1533796]
-- [netdrv] mlx5e: Fix possible deadlock of VXLAN lock (Kamal Heib) [1533796]
-- [netdrv] mlx5e: Fix ETS BW check (Kamal Heib) [1532746]
-- [netdrv] revert "mlx5: move affinity hints assignments to generic code" (Kamal Heib) [1532632]
-- [infiniband] rdma/bnxt_re: Make room for mapping HW contexts beyond 32 entries (Selvin Xavier) [1532770]
-- [infiniband] core: Verify that QP is security enabled in create and destroy (Kamal Heib) [1533205]
-- [infiniband] ipoib: Fix for notify send CQ failure messages (Don Dutile) [1528386]
-- [infiniband] rdma/vmw_pvrdma: Avoid use after free due to QP/CQ/SRQ destroy (Don Dutile) [1531668]
-- [infiniband] rdma/vmw_pvrdma: Call ib_umem_release on destroy QP path (Don Dutile) [1531668]
-- [infiniband] iw_cxgb4: only clear the ARMED bit if a notification is needed (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: atomically flush the qp (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: only call the cq comp_handler when the cq is armed (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: Fix possible circular dependency locking warning (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: remove BUG_ON() usage (Arjun Vynipadath) [1526289]
-- [infiniband] rdma/cxgb4: Protect from possible dereference (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: add referencing to wait objects (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: allocate wait object for each ep object (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: allocate wait object for each qp object (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: allocate wait object for each cq object (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: allocate wait object for each memory object (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: change pr_debug to appropriate log level (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: Remove __func__ parameter from pr_debug() (Arjun Vynipadath) [1526289]
-- [infiniband] cxgb4: Remove some dead code (Arjun Vynipadath) [1526289]
-- [infiniband] iw_cxgb4: drop listen destroy replies if no ep found (Arjun Vynipadath) [1526289]
-- [infiniband] cxgb4: Convert PDBG to pr_debug the second (Arjun Vynipadath) [1526289]
-- [infiniband] cxgb4: Convert PDBG to pr_debug (Arjun Vynipadath) [1526289]
-- [netdrv] mlxsw: spectrum_dpipe: Fix entries dump of the adjacency table (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for controlling nexthop counters (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for adjacency table dump (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum: Add support for setting counters on nexthops (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: reg: Add support for counters on RATR (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add initial support for the router adjacency table (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add helpers for nexthop access (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Use helper to check for last neighbor (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Keep nexthops in a linked list (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: Add fields for mlxsw's meta header for adjacency table (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Fix indentation in header description (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for controlling IPv6 neighbor counters (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add support for setting counters on IPv6 neighbors (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for IPv6 host table dump (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Make host entry fill handler more generic (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add IPv6 neighbor access helper (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add IPv6 host table initial support (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Export IPv6 link local address check helper (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Fix host table dump (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum: compile-in dpipe support only if devlink is enabled (Ivan Vecera) [1521104]
-- [scripts] kbuild: Allow to specify composite modules with modname-m (Ivan Vecera) [1521104]
-- [scripts] kbuild: handle multi-objs dependency appropriately (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for controlling neighbor counters (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add support for IPv4 host table dump (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add support for setting counters on neighbors (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: reg: Make flow counter set type enum to be shared (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Add IPv4 host table initial support (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Fix label name (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_router: Add helpers for neighbor access (Ivan Vecera) [1521104]
-- [netdrv] mlxsw: spectrum_dpipe: Fix erif table op name space (Ivan Vecera) [1521104]
-
-* Fri Jan 19 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-833.el7]
-- [thunderbolt] Mark TB3 as tech_preview (Jeremy McNicoll) [1172010]
-- [acpi] introduce a function to find the first physical device (Jeremy McNicoll) [1172010]
-- [acpi] create empty dmi_table (Jeremy McNicoll) [1172010]
-- [acpi] acpi / scan: Enable GPEs before scanning the namespace (Jeremy McNicoll) [1172010]
-- [acpi] acpica: Make it possible to enable runtime GPEs earlier (Jeremy McNicoll) [1172010]
-- [acpi] acpica: Dispatch active GPEs at init time (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: include linux/err.h from header (Jeremy McNicoll) [1172010]
-- [acpi] acpi / sysfs: Provide quirk mechanism to prevent GPE flooding (Jeremy McNicoll) [1172010]
-- [kernel] efi: Add device path parser (Jeremy McNicoll) [1172010]
-- [kernel] acpi / bus: Make acpi_get_first_physical_node() public (Jeremy McNicoll) [1172010]
-- [acpi] acpica: events: Introduce acpi_mask_gpe() to implement GPE masking mechanism (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: core: remove regmap dependency (Jeremy McNicoll) [1172010]
-- [kernel] device property: don't bother the drivers with struct property_set (Jeremy McNicoll) [1172010]
-- [acpi] acpi / osi: Collect _OSI handling into one single file (Jeremy McNicoll) [1172010]
-- [acpi] acpi / osi: Cleanup _OSI("Linux") related code before introducing new support (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: Add backwards compatibility support for older EEPROM drivers (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: Add flag to export NVMEM to root only (Jeremy McNicoll) [1172010]
-- [lib] ucs2_string: Add ucs2 -> utf8 helper functions (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: Add a simple NVMEM framework for consumers (Jeremy McNicoll) [1172010]
-- [kernel] nvmem: Add a simple NVMEM framework for nvmem providers (Jeremy McNicoll) [1172010]
-- [acpi] acpica: events: Add support to return both enable/status register values for GPE and fixed event (Jeremy McNicoll) [1172010]
-- [acpi] acpica: events: Cleanup GPE dispatcher type obtaining code (Jeremy McNicoll) [1172010]
-- [acpi] acpica: Save current masks of enabled GPEs after enable register writes (Jeremy McNicoll) [1172010]
-- [acpi] Support _OSI("Darwin") correctly (Jeremy McNicoll) [1172010]
-- [pci] Suspend/resume quirks for Apple thunderbolt (Jeremy McNicoll) [1172010]
-- [kernel] pci: Add pci_fixup_suspend_late quirk pass (Jeremy McNicoll) [1172010]
-- [acpi] acpica: fix divergences of the commit - acpica: Expose OSI version (Jeremy McNicoll) [1172010]
-- [acpi] acpica: Add acpi_update_interfaces() public interface (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix reset response_type (Jeremy McNicoll) [1172010]
-- [thunderbolt] Allow clearing the key (Jeremy McNicoll) [1172010]
-- [thunderbolt] Make key root-only accessible (Jeremy McNicoll) [1172010]
-- [thunderbolt] Remove superfluous check (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not enumerate more ports from DROM than the controller has (Jeremy McNicoll) [1172010]
-- [thunderbolt] icm: Ignore mailbox errors in icm_suspend() (Jeremy McNicoll) [1172010]
-- [thunderbolt] use uuid_t instead of uuid_be (Jeremy McNicoll) [1172010]
-- [thunderbolt] Correct access permissions for active NVM contents (Jeremy McNicoll) [1172010]
-- [thunderbolt] fix spelling mistake: "missmatch" -> "mismatch" (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for host and device NVM firmware upgrade (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for Internal Connection Manager (ICM) (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not touch the hardware if the NHI is gone on resume (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for DMA configuration based mailbox (Jeremy McNicoll) [1172010]
-- [thunderbolt] Store Thunderbolt generation in the switch structure (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for NHI mailbox (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add new Thunderbolt PCI IDs (Jeremy McNicoll) [1172010]
-- [thunderbolt] Rework control channel to be more reliable (Jeremy McNicoll) [1172010]
-- [thunderbolt] Let the connection manager handle all notifications (Jeremy McNicoll) [1172010]
-- [thunderbolt] Expose make_header() to other files (Jeremy McNicoll) [1172010]
-- [thunderbolt] Expose get_route() to other files (Jeremy McNicoll) [1172010]
-- [thunderbolt] Move control channel messages to tb_msgs.h (Jeremy McNicoll) [1172010]
-- [thunderbolt] Read vendor and device name from DROM (Jeremy McNicoll) [1172010]
-- [thunderbolt] Refactor and fix parsing of port drom entries (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not fail if DROM data CRC32 is invalid (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fail switch adding operation if reading DROM fails (Jeremy McNicoll) [1172010]
-- [thunderbolt] Convert switch to a device (Jeremy McNicoll) [1172010]
-- [thunderbolt] Introduce thunderbolt bus and connection manager (Jeremy McNicoll) [1172010]
-- [thunderbolt] Allow passing NULL to tb_ctl_free() (Jeremy McNicoll) [1172010]
-- [thunderbolt] Rework capability handling (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add MSI-X support (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not warn about newer DROM versions (Jeremy McNicoll) [1172010]
-- [thunderbolt] Do not try to read UID if DROM offset is read as 0 (Jeremy McNicoll) [1172010]
-- [thunderbolt] No need to read UID of the root switch on resume (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use const buffer pointer in write operations (Jeremy McNicoll) [1172010]
-- [thunderbolt] Macro rename (Jeremy McNicoll) [1172010]
-- [thunderbolt] Compile on x86 only (Jeremy McNicoll) [1172010]
-- [thunderbolt] efi: Fix Kconfig dependencies harder (Jeremy McNicoll) [1172010]
-- [thunderbolt] efi: Fix Kconfig dependencies (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use Device ROM retrieved from EFI (Jeremy McNicoll) [1172010]
-- [thunderbolt] Don't declare Falcon Ridge unsupported (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for INTEL_FALCON_RIDGE_2C controller (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix double free of drom buffer (Jeremy McNicoll) [1172010]
-- [thunderbolt] Support 1st gen Light Ridge controller (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix typos and magic number (Jeremy McNicoll) [1172010]
-- [kernel] pci: Add Intel Thunderbolt device IDs (Jeremy McNicoll) [1172010]
-- [thunderbolt] Allow loading of module on recent Apple MacBooks with thunderbolt 2 controller (Jeremy McNicoll) [1172010]
-- [thunderbolt] Clear hops before overwriting (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use kcalloc (Jeremy McNicoll) [1172010]
-- [thunderbolt] Correct the size argument to devm_kzalloc (Jeremy McNicoll) [1172010]
-- [thunderbolt] select CRC32 in Kconfig (Jeremy McNicoll) [1172010]
-- [thunderbolt] Make tb_eeprom_get_drom_offset static (Jeremy McNicoll) [1172010]
-- [thunderbolt] Make enum tb_drom_entry_type unsigned (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix header declaration of tb_find_cap (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add casts to prevent endianness warnings (Jeremy McNicoll) [1172010]
-- [thunderbolt] fix format string for size_t (Jeremy McNicoll) [1172010]
-- [thunderbolt] add PCI dependency (Jeremy McNicoll) [1172010]
-- [thunderbolt] Staticize nhi_ids (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use NULL instead of 0 in nhi.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use NULL instead of 0 in ctl.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Use NULL instead of 0 in switch.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix build error in switch.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix build error in eeprom.c (Jeremy McNicoll) [1172010]
-- [thunderbolt] Fix nontrivial endpoint devices (Jeremy McNicoll) [1172010]
-- [thunderbolt] Read port configuration from eeprom (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add suspend/hibernate support (Jeremy McNicoll) [1172010]
-- [thunderbolt] Read switch uid from EEPROM (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add support for simple pci tunnels (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add path setup code (Jeremy McNicoll) [1172010]
-- [thunderbolt] Handle hotplug events (Jeremy McNicoll) [1172010]
-- [thunderbolt] Scan for downstream switches (Jeremy McNicoll) [1172010]
-- [thunderbolt] Enable plug events (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add thunderbolt capability handling (Jeremy McNicoll) [1172010]
-- [thunderbolt] Initialize root switch and ports (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add tb_regs.h (Jeremy McNicoll) [1172010]
-- [thunderbolt] Setup control channel (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add control channel interface (Jeremy McNicoll) [1172010]
-- [thunderbolt] Add initial cactus ridge NHI support (Jeremy McNicoll) [1172010]
-
-* Fri Jan 19 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-832.el7]
-- [x86] x86: vdso: use __pvclock_read_cycles (Prarit Bhargava) [1516321]
-- [x86] x86/vdso/pvclock: Protect STABLE check with the seqcount (Prarit Bhargava) [1516321]
-- [x86] x86, vdso, pvclock: Simplify and speed up the vdso pvclock reader (Prarit Bhargava) [1516321]
-- [x86] fpu: Make XSAVE check the base CPUID features before enabling (Scott Wood) [1457543]
-- [kernel] bitops: Add clear/set_bit32() to linux/bitops.h (Scott Wood) [1457543]
-- [x86] fpu: Remove the explicit clearing of XSAVE dependent features (Scott Wood) [1457543]
-- [x86] cpuid: Prevent out of bound access in do_clear_cpu_cap() (Scott Wood) [1457543]
-- [x86] fpu: Parse clearcpuid= as early XSAVE argument (Scott Wood) [1457543]
-- [x86] cpuid: Add generic table for CPUID dependencies (Scott Wood) [1457543]
-- [x86] Don't rely on VMWare emulating PAT MSR correctly (Cathy Avery) [1528577]
-- [x86] efifb: Add support for 64-bit frame buffer addresses (Rob Clark) [1529100]
-- [x86] mm: Change cachemode exports to non-gpl (Alex Williamson) [1528122]
-- [scsi] qla2xxx: Defer processing of GS IOCB calls (Himanshu Madhani) [1527540]
-- [scsi] qedf: Limit number of CQs (Chad Dupuis) [1525916]
-- [scsi] libcxgbi: simplify task->hdr allocation for mgmt cmds (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: fix skb use after free (Arjun Vynipadath) [1526290]
-- [scsi] cxgb4i: fix Tx skb leak (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: in case of vlan pass 0 as ifindex to find route (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: remove redundant check and close on csk (Arjun Vynipadath) [1526290]
-- [scsi] cxgb4i: call neigh_event_send() to update MAC address (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: use ndev->ifindex to find route (Arjun Vynipadath) [1526290]
-- [scsi] libcxgbi: add check for valid cxgbi_task_data (Arjun Vynipadath) [1526290]
-- [scsi] storvsc: Fix scsi_cmd error assignments in storvsc_handle_error (Cathy Avery) [1502601]
-- [scsi] storvsc: Avoid excessive host scan on controller change (Cathy Avery) [1502601]
-- [scsi] storvsc: Allow only one remove lun work item to be issued per lun (Cathy Avery) [1502601]
-- [platform] x86: intel-vbtn: Simplify autorelease logic (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: support panel front button (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: support KEY_ROTATE_LOCK_TOGGLE (Scott Wood) [1445052]
-- [uapi] input: add KEY_ROTATE_LOCK_TOGGLE (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: Support separate press/release events (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: support SW_TABLET_MODE (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: reduce unnecessary messages for normal users (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: match power button on press rather than release (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: add volume up and down (Scott Wood) [1445052]
-- [platform] x86: intel-vbtn: Switch to use devm_input_allocate_device (Scott Wood) [1445052]
-- [platform] x86: Use ACPI_FAILURE at appropriate places (Scott Wood) [1445052]
-- [platform] intel-vbtn: new driver for Intel Virtual Button (Scott Wood) [1445052]
-
-* Wed Jan 17 2018 Bruno E. O. Meneguele <brdeoliv@redhat.com> [3.10.0-831.el7]
-- [target] cxgbit: Abort the TCP connection in case of data out timeout (Arjun Vynipadath) [1526291]
-- [netdrv] net/mlx4_en: Fill all counters under one call of stats lock (Kamal Heib) [1525610]
-- [netdrv] net/mlx4_core: Fix wrong calculation of free counters (Kamal Heib) [1525610]
-- [netdrv] net/mlx4_en: Fix selftest for small MTUs (Kamal Heib) [1525610]
-- [infiniband] ib/mlx4: Increase maximal message size under UD QP (Kamal Heib) [1525610]
-- [netdrv] net/mlx4_en: Use __force to fix a sparse warning in TX datapath (Kamal Heib) [1525610]
-- [netdrv] net/mlx4_core: Fix cast warning in fw.c (Kamal Heib) [1525610]
-- [netdrv] net/mlx4: Fix endianness issue in qp context params (Kamal Heib) [1525610]
-- [netdrv] aquantia: Increment driver version (David Arcari) [1500365]
-- [netdrv] aquantia: Fix typo in ethtool statistics names (David Arcari) [1500365]
-- [netdrv] aquantia: Update hw counters on hw init (David Arcari) [1500365]
-- [netdrv] aquantia: Improve link state and statistics check interval callback (David Arcari) [1500365]
-- [netdrv] aquantia: Fill in multicast counter in ndev stats from hardware (David Arcari) [1500365]
-- [netdrv] aquantia: Fill ndev stat couters from hardware (David Arcari) [1500365]
-- [netdrv] aquantia: Extend stat counters to 64bit values (David Arcari) [1500365]
-- [netdrv] aquantia: Fix hardware DMA stream overload on large MRRS (David Arcari) [1500365]
-- [netdrv] aquantia: Fix actual speed capabilities reporting (David Arcari) [1500365]
-- [netdrv] aquantia: Make local functions static (David Arcari) [1500365]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1526288]
-- [netdrv] cxgb4: do DCB state reset in couple of places (Arjun Vynipadath) [1526288]
-- [netdrv] cxgb4: avoid stall while shutting down the adapter (Arjun Vynipadath) [1526288]
-- [scsi] csiostor: enable PCIe relaxed ordering if supported (Arjun Vynipadath) [1526951]
-- [netdrv] cxgb4: Use new PCI_DEV_FLAGS_NO_RELAXED_ORDERING flag (Arjun Vynipadath) [1526951]
-- [netdrv] cxgb4vf: Use new PCI_DEV_FLAGS_NO_RELAXED_ORDERING flag (Arjun Vynipadath) [1526951]
-- [netdrv] add .ndo_size to struct i40evf_netdev_ops (Stefan Assmann) [1520869]
-- [netdrv] revert e1000e: Avoid receiver overrun interrupt bursts (David Arcari) [1520875]
-- [netdrv] tg3: Fix rx hang on MTU change with 5717/5719 (Jonathan Toppins) [1528017]
-- [netdrv] mlx4_en: Fix the use of ndo_change_mtu (Kamal Heib) [1528820]
-- [netdrv] mlx5e: Fix the use of ndo_change_mtu (Kamal Heib) [1522612]
-- [infiniband] mlx5: Fix RoCE Address Path fields (Kamal Heib) [1525603]
-- [infiniband] mlx5: Assign send CQ and recv CQ of UMR QP (Kamal Heib) [1525603]
-- [netdrv] mlx5e: Add rollback on add VLAN failure (Kamal Heib) [1525603]
-- [netdrv] mlx5e: Rename VLAN related variables and functions (Kamal Heib) [1525603]
-- [netdrv] nfp: fix port stats for mac representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: fix vlan receive MAC statistics typo (Jonathan Toppins) [1518337]
-- [netdrv] nfp: output control messages to trace_devlink_hwmsg() (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add set tcp and udp header action flower offload (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add set ipv6 source and destination address (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add set ipv4 header action flower offload (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add set ethernet header action flower offload (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add IPv6 ttl and tos match offloading support (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add IPv4 ttl and tos match offloading support (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add mpls match offloading support (Jonathan Toppins) [1468286]
-- [netdrv] nfp: flower vxlan neighbour keep-alive (Jonathan Toppins) [1468286]
-- [netdrv] nfp: flower vxlan neighbour offload (Jonathan Toppins) [1468286]
-- [netdrv] nfp: offload vxlan IPv4 endpoints of flower rules (Jonathan Toppins) [1468286]
-- [netdrv] nfp: offload flower vxlan endpoint MAC addresses (Jonathan Toppins) [1468286]
-- [netdrv] nfp: compile flower vxlan tunnel set actions (Jonathan Toppins) [1468286]
-- [netdrv] nfp: compile flower vxlan tunnel metadata match fields (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add helper to get flower cmsg length (Jonathan Toppins) [1468286]
-- [netdrv] nfp: wait for the NSP resource to appear on boot (Jonathan Toppins) [1468286]
-- [netdrv] nfp: wait for board state before talking to the NSP (Jonathan Toppins) [1468286]
-- [netdrv] nfp: build the flower offload by default (Jonathan Toppins) [1468286]
-- [netdrv] nfp: be drop monitor friendly (Jonathan Toppins) [1468286]
-- [netdrv] nfp: move the start/stop app callbacks back (Jonathan Toppins) [1468286]
-- [netdrv] nfp: flower: base lifetime of representors on existence of lower vNIC (Jonathan Toppins) [1468286]
-- [netdrv] nfp: separate app vNIC init/clean from alloc/free (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add basic SR-IOV ndo functions to representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add basic SR-IOV ndo functions (Jonathan Toppins) [1468286]
-- [netdrv] nfp: fix copy paste in names and messages regarding vNICs (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add ethtool statistics for representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add pointer to vNIC config memory to nfp_port structure (Jonathan Toppins) [1468286]
-- [netdrv] nfp: report MAC statistics in ethtool (Jonathan Toppins) [1468286]
-- [netdrv] nfp: store pointer to MAC statistics in nfp_port (Jonathan Toppins) [1468286]
-- [netdrv] nfp: split software and hardware vNIC statistics (Jonathan Toppins) [1468286]
-- [netdrv] nfp: add helper for printing ethtool strings (Jonathan Toppins) [1468286]
-- [netdrv] nfp: don't report standard netdev statistics in ethtool (Jonathan Toppins) [1468286]
-- [netdrv] nfp: allow retreiving management FW logs on representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: provide ethtool_drvinfo on representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: link basic ethtool ops to representors (Jonathan Toppins) [1468286]
-- [netdrv] nfp: process control messages in workqueue in flower app (Jonathan Toppins) [1468286]
-- [netdrv] nfp: send control message when MAC representors are created (Jonathan Toppins) [1468286]
-- [netdrv] nfp: only use direct firmware requests (Jonathan Toppins) [1468286]
-- [kernel] firmware: define a facade for request_firmware_direct() (Jonathan Toppins) [1468286]
-- [base] firmware loader: simplify holding module for request_firmware (Jonathan Toppins) [1468286]
-- [netdrv] nfp: look for firmware image by device serial number and PCI name (Jonathan Toppins) [1468286]
-- [netdrv] nfp: remove the probe deferral when FW not present (Jonathan Toppins) [1468286]
-- [netdrv] nfp: set config bit (ifup/ifdown) on netdev open/close (Jonathan Toppins) [1468286]
-- [netdrv] igb: Use smp_rmb rather than read_barrier_depends (Corinna Vinschen) [1533447]
-- [netdrv] igb: Fix TX map failure path (Corinna Vinschen) [1533447]
-- [netdrv] igb: check memory allocation failure (Corinna Vinschen) [1533447]
-- [netdrv] e1000e: Fix e1000_check_for_copper_link_ich8lan return value (David Arcari) [1532240]
-- [netdrv] e1000e: fix the use of magic numbers for buffer overrun issue (David Arcari) [1532240]
-
-* Mon Jan 15 2018 Rafael Aquini <aquini@redhat.com> [3.10.0-830.el7]
-- [crypto] cryptd: Add cryptd_max_cpu_qlen module parameter (Jon Maxwell) [1522991]
-- [netdrv] revert "include linux/if.h, linux/ip.h and linux/in6.h" (Ivan Vecera) [1525606]
-- [netdrv] mlxsw: include explicitly linux/if.h to avoid build failure (Ivan Vecera) [1525606]
-- [x86] hyper-v: do kaiser_add_mapping() for HVCLOCK_TSC_PAGE (Vitaly Kuznetsov) [1533184]
-- [x86] spec_ctrl: move vmexit rmb in the last branch before IBRS (Andrea Arcangeli) [1533250]
-- [x86] spec_ctrl: satisfy the barrier like semantics of IBRS (Andrea Arcangeli) [1533250]
-- [s390] add ppa to system call and program check path (Jon Masters) [1532708]
-- [s390] spinlock: add gmb memory barrier (Jon Masters) [1532708]
-- [s390] introduce CPU alternatives (Jon Masters) [1532708]
-- [powerpc] spinlock: add gmb memory barrier (Mauricio Oliveira) [1531710]
-- [powerpc] Prevent Meltdown attack with L1-D$ flush (Mauricio Oliveira) [1531710]
-
-* Tue Jan 09 2018 Rafael Aquini <aquini@redhat.com> [3.10.0-829.el7]
-- [kernel] locking/barriers: prevent speculative execution based on Coverity scan results (Josh Poimboeuf) [1519786] {CVE-2017-5753}
-- [kernel] x86/spec_ctrl: don't call ptrace_has_cap in the IBPB ctx switch optimization (Andrea Arcangeli) [1531362]
-- [x86] kaiser/efi: unbreak tboot (Andrea Arcangeli) [1531851]
-- [x86] cpuidle_idle_call: fix double local_irq_enable() (Andrea Arcangeli) [1528420]
-- [x86] x86/kaiser/efi: unbreak EFI old_memmap (Andrea Arcangeli) [1531559]
-- [x86] kvm: x86: fix RSM when PCID is non-zero (Paolo Bonzini) [1530711]
-- [x86] x86/smpboot: Do not use smp_num_siblings in __max_logical_packages calculation (Prarit Bhargava) [1519503]
-- [x86] x86/topology: Add topology_max_smt_threads() (Prarit Bhargava) [1519503]
-- [net] ipv6: fix a potential deadlock in do_ipv6_setsockopt() (Hangbin Liu) [1527255]
-- [net] ipv4: fix a potential deadlock in mcast getsockopt() path (Hangbin Liu) [1527255]
-- [net] xfrm: fix null pointer dereference on state and tmpl sort (Sabrina Dubroca) [1522665]
-- [net] sit: update frag_off info (Hangbin Liu) [1518472]
-- [lib] idr_ext: Refactor idr_alloc_ext(), remove cast from idr_get_next_ext() (Ivan Vecera) [1509477]
-- [net] netfilter: uapi: correct UNTRACKED conntrack state bit number (Florian Westphal) [1526883]
-- [net] preserve behavior of ether_setup and allocate_etherdev_mqs (Ivan Vecera) [1527175]
-- [net] remove MTU limits for dummy and ifb device (Ivan Vecera) [1527175]
-- [net] dummy: expend mtu range for dummy device (Ivan Vecera) [1527175]
-- [net] remove MTU limits on a few ether_setup callers (Ivan Vecera) [1527175]
-- [net] dccp: use-after-free in DCCP code (Stefano Brivio) [1526271] {CVE-2017-8824}
-- [crypto] aesni: fix ivsize for generic gcm(aes) (Sabrina Dubroca) [1523032]
-- [net] ipv6: set all.accept_dad to 0 by default (Florian Westphal) [1515785]
-- [net] vsock: Don't set sk_state to TCP_CLOSE before testing it (Stefano Brivio) [1524204]
-- [net] devlink: Fix devlink_dpipe_table_register() stub signature. (Ivan Vecera) [1521093]
-- [net] devlink: Add IPv6 header for dpipe (Ivan Vecera) [1521093]
-- [net] devlink: Move dpipe entry clear function into devlink (Ivan Vecera) [1521093]
-- [net] devlink: Add support for dynamic table size (Ivan Vecera) [1521093]
-- [net] devlink: Add IPv4 header for dpipe (Ivan Vecera) [1521093]
-- [net] devlink: Add Ethernet header for dpipe (Ivan Vecera) [1521093]
-- [net] geneve: only configure or fill UDP_ZERO_CSUM6_RX/TX info when CONFIG_IPV6 (Hangbin Liu) [1520210]
-- [net] geneve: fix fill_info when link down (Hangbin Liu) [1520210]
-- [net] sched: cbq: create block for q->link.block (Eelco Chaudron) [1515911]
-- [net] netfilter: ipset: Fix race between dump and swap (Davide Caratti) [1488131]
-- [net] netfilter: ipset: fix race condition in ipset save, swap and delete (Davide Caratti) [1488131]
-- [net] netfilter: ipset: Make sure listing doesn't grab a set which is just being destroyed. (Davide Caratti) [1487985]
-
-* Mon Jan 08 2018 Rafael Aquini <aquini@redhat.com> [3.10.0-828.el7]
-- [fs] mnt: Take unprivileged use of the mntns out of tech preview ("Eric W. Biederman") [1487751]
-- [fs] mnt: Make may_detach_mounts one-way and use it in copy_mnt_ns ("Eric W. Biederman") [1487751]
-- [fs] selftests/capabilities: Fix the test_execve test ("Eric W. Biederman") [1487751]
-- [fs] mnt: Make propagate_umount less slow for overlapping mount propagation trees ("Eric W. Biederman") [1487751]
-- [fs] mnt: In propgate_umount handle visiting mounts in any order ("Eric W. Biederman") [1487751]
-- [fs] mnt: In umount propagation reparent in a separate pass ("Eric W. Biederman") [1487751]
-- [fs] don't forget to put old mntns in mntns_install ("Eric W. Biederman") [1487751]
-- [fs] make sure that mntns_install() doesn't end up with referral for root ("Eric W. Biederman") [1487751]
-- [fs] path_init(): don't bother with checking MAY_EXEC for LOOKUP_ROOT ("Eric W. Biederman") [1487751]
-- [fs] make sure that fchdir() won't accept referral points, etc ("Eric W. Biederman") [1487751]
-- [fs] mnt: Tuck mounts under others instead of creating shadow/side mounts ("Eric W. Biederman") [1487751]
-- [fs] Better permission checking for submounts ("Eric W. Biederman") [1487751]
-- [fs] reorganize do_make_slave() ("Eric W. Biederman") [1487751]
-- [fs] namespace.c: constify struct path passed to a bunch of primitives ("Eric W. Biederman") [1487751]
-- [fs] Constify path_is_under()'s arguments ("Eric W. Biederman") [1487751]
-- [fs] namespace.c: path_is_under can be boolean ("Eric W. Biederman") [1487751]
-- [fs] mnt: Add a per mount namespace limit on the number of mounts ("Eric W. Biederman") [1487751]
-- [fs] Treat foreign mounts as nosuid ("Eric W. Biederman") [1487751]
-- [fs] Limit file caps to the user namespace of the super block ("Eric W. Biederman") [1487751]
-- [fs] userns: Remove the now unnecessary FS_USERNS_DEV_MOUNT flag ("Eric W. Biederman") [1487751]
-- [fs] userns: Remove implicit MNT_NODEV fragility ("Eric W. Biederman") [1487751]
-- [fs] mnt: Simplify mount_too_revealing ("Eric W. Biederman") [1487751]
-- [fs] vfs: Generalize filesystem nodev handling ("Eric W. Biederman") [1487751]
-- [fs] ipc/mqueue: The mqueue filesystem should never contain executables ("Eric W. Biederman") [1487751]
-- [fs] kernfs: The cgroup filesystem also benefits from SB_I_NOEXEC ("Eric W. Biederman") [1487751]
-- [fs] mnt: Move the FS_USERNS_MOUNT check into sget_userns ("Eric W. Biederman") [1487751]
-- [fs] Add user namespace member to struct super_block ("Eric W. Biederman") [1487751]
-- [fs] proc: Convert proc_mount to use mount_ns ("Eric W. Biederman") [1487751]
-- [fs] vfs: Pass data, ns, and ns->userns to mount_ns ("Eric W. Biederman") [1487751]
-- [fs] mnt: Refactor fs_fully_visible into mount_too_revealing ("Eric W. Biederman") [1487751]
-- [fs] mnt: Account for MS_RDONLY in fs_fully_visible ("Eric W. Biederman") [1487751]
-- [fs] mnt: fs_fully_visible test the proper mount for MNT_LOCKED ("Eric W. Biederman") [1487751]
-- [fs] mnt: If fs_fully_visible fails call put_filesystem ("Eric W. Biederman") [1487751]
-- [fs] saner calling conventions for copy_mount_options() ("Eric W. Biederman") [1487751]
-- [fs] locks: Don't allow mounts in user namespaces to enable mandatory locking ("Eric W. Biederman") [1487751]
-- [fs] locks: Allow disabling mandatory locking at compile time ("Eric W. Biederman") [1487751]
-- [fs] mnt: fs_fully_visible enforce noexec and nosuid if !SB_I_NOEXEC ("Eric W. Biederman") [1487751]
-- [fs] vfs: Commit to never having exectuables on proc and sysfs ("Eric W. Biederman") [1487751]
-- [fs] mnt: Update fs_fully_visible to test for permanently empty directories ("Eric W. Biederman") [1487751]
-- [fs] sysctl: Allow creating permanently empty directories that serve as mountpoints ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Create mountpoints with sysfs_create_mount_point ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Add support for permanently empty directories to serve as mount points ("Eric W. Biederman") [1487751]
-- [fs] kernfs: Add support for always empty directories ("Eric W. Biederman") [1487751]
-- [fs] proc: Fix unbalanced hard link numbers ("Eric W. Biederman") [1487751]
-- [fs] proc: Allow creating permanently empty directories that serve as mount points ("Eric W. Biederman") [1487751]
-- [fs] gut proc_register() a bit ("Eric W. Biederman") [1487751]
-- [fs] Add helper functions for permanently empty directories ("Eric W. Biederman") [1487751]
-- [fs] vfs: Ignore unlocked mounts in fs_fully_visible ("Eric W. Biederman") [1487751]
-- [fs] mnt: Modify fs_fully_visible to deal with locked ro nodev and atime ("Eric W. Biederman") [1487751]
-- [fs] mnt: Refactor the logic for mounting sysfs and proc in a user namespace ("Eric W. Biederman") [1487751]
-- [fs] new helper: __legitimize_mnt() ("Eric W. Biederman") [1487751]
-- [fs] mnt: Fix fs_fully_visible to verify the root directory is visible ("Eric W. Biederman") [1487751]
-- [fs] namespace: convert devname allocation to kstrdup_const ("Eric W. Biederman") [1487751]
-- [fs] mnt: Carefully set CL_UNPRIVILEGED in clone_mnt ("Eric W. Biederman") [1487751]
-- [fs] umount: Disallow unprivileged mount force ("Eric W. Biederman") [1487751]
-- [fs] mnt: Implicitly add MNT_NODEV on remount when it was implicitly added by mount ("Eric W. Biederman") [1487751]
-- [fs] vfs: move getname() from callers to do_mount() ("Eric W. Biederman") [1487751]
-- [fs] namespace: suppress 'may be used uninitialized' warnings ("Eric W. Biederman") [1487751]
-- [fs] mnt: Change the default remount atime from relatime to the existing value ("Eric W. Biederman") [1487751]
-- [fs] mnt: Correct permission checks in do_remount ("Eric W. Biederman") [1487751]
-- [fs] mnt: Move the test for MNT_LOCK_READONLY from change_mount_flags into do_remount ("Eric W. Biederman") [1487751]
-- [fs] mnt: Only change user settable mount flags in remount ("Eric W. Biederman") [1487751]
-- [fs] vfs: Fix a regression in mounting proc ("Eric W. Biederman") [1487751]
-- [fs] fs_is_visible only needs namespace_sem held shared ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix warning when creating a sysfs group without attributes ("Eric W. Biederman") [1487751]
-- [fs] exit: proc: don't try to flush /proc/tgid/task/tgid ("Eric W. Biederman") [1487751]
-- [fs] proc: Have net show up under /proc/<tgid>/task/<tid> ("Eric W. Biederman") [1487751]
-- [fs] kobject: fix NULL pointer derefernce in kobj_child_ns_ops ("Eric W. Biederman") [1487751]
-- [fs] kernfs: don't depend on d_find_any_alias() when generating notifications ("Eric W. Biederman") [1487751]
-- [fs] kernfs: Now that kernfs has been rebuilt reenable INTEL_RDT ("Eric W. Biederman") [1487751]
-- [fs] kernfs: kernfs_notify() must be useable from non-sleepable contexts ("Eric W. Biederman") [1487751]
-- [fs] kernfs: introduce kernfs_pin_sb() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: move the last knowledge of sysfs out from kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix attribute_group bin file path on removal ("Eric W. Biederman") [1487751]
-- [fs] sysfs.h: don't return a void-valued expression in sysfs_remove_file ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make sure read buffer is zeroed ("Eric W. Biederman") [1487751]
-- [fs] kernfs, sysfs, cgroup: restrict extra perm check on open to sysfs ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add back missing error check in kernfs_fop_mmap() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix a subdir count leak ("Eric W. Biederman") [1487751]
-- [fs] kernfs: make kernfs_notify() trigger inotify events too ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_root->supers list ("Eric W. Biederman") [1487751]
-- [fs] kernfs: protect lazy kernfs_iattrs allocation with mutex ("Eric W. Biederman") [1487751]
-- [fs] kernfs: cache atomic_write_len in kernfs_open_file ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix off by one error ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix namespace refcnt leak ("Eric W. Biederman") [1487751]
-- [fs] sysfs: create bin_attributes under the requested group ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix kernfs_node_from_dentry() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix hash calculation in kernfs_rename_ns() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add CONFIG_KERNFS ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kobject: add sysfs wrapper for kernfs_enable_ns() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_get_parent(), kernfs_name/path() and friends ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_node_from_dentry(), kernfs_root_from_sb() and kernfs_rename() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add kernfs_open_file->priv ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_ops->atomic_write_len ("Eric W. Biederman") [1487751]
-- [fs] kernfs: allow nodes to be created in the deactivated state ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add missing kernfs_active() checks in directory operations ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement kernfs_syscall_ops->remount_fs() and ->show_options() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: rename kernfs_dir_ops to kernfs_syscall_ops ("Eric W. Biederman") [1487751]
-- [fs] kernfs: invoke dir_ops while holding active ref of the target node ("Eric W. Biederman") [1487751]
-- [fs] kernfs, sysfs, driver-core: implement kernfs_remove_self() and its wrappers ("Eric W. Biederman") [1487751]
-- [fs] kernfs: remove KERNFS_REMOVED ("Eric W. Biederman") [1487751]
-- [fs] kernfs: remove KERNFS_ACTIVE_REF and add kernfs_lockdep() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: remove kernfs_addrm_cxt ("Eric W. Biederman") [1487751]
-- [fs] kernfs: invoke kernfs_unmap_bin_file() directly from kernfs_deactivate() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: restructure removal path to fix possible premature return ("Eric W. Biederman") [1487751]
-- [fs] kernfs: replace kernfs_node->u.completion with kernfs_root->deactivate_waitq ("Eric W. Biederman") [1487751]
-- [fs] kernfs: make kernfs_deactivate() honor KERNFS_LOCKDEP flag ("Eric W. Biederman") [1487751]
-- [fs] fix "queues" uevent between network namespaces ("Eric W. Biederman") [1487751]
-- [fs] kernfs: associate a new kernfs_node with its parent on creation ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add struct dentry declaration in kernfs.h ("Eric W. Biederman") [1487751]
-- [fs] kernfs: fix get_active failure handling in kernfs_seq_*() ("Eric W. Biederman") [1487751]
-- [fs] kobject: Fix source code comment spelling ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add kernfs_dir_ops ("Eric W. Biederman") [1487751]
-- [fs] kernfs: allow negative dentries ("Eric W. Biederman") [1487751]
-- [fs] kernfs: update kernfs_rename_ns() to consider KERNFS_STATIC_NAME ("Eric W. Biederman") [1487751]
-- [fs] kernfs: mark static names with KERNFS_STATIC_NAME ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add REMOVED check to create and rename paths ("Eric W. Biederman") [1487751]
-- [fs] kernfs: add @mode to kernfs_create_dir[_ns]() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs/kernfs/ in internal functions and whatever is left ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs/kernfs/ in global variables ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs/kernfs/ in constants ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs/kernfs/ in various data structures ("Eric W. Biederman") [1487751]
-- [fs] kernfs: drop s_ prefix from kernfs_node members ("Eric W. Biederman") [1487751]
-- [fs] kernfs: s/sysfs_dirent/kernfs_node/ and rename its friends accordingly ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix use-after-free in sysfs_kill_sb() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: bail early from kernfs_file_mmap() to avoid spurious lockdep warning ("Eric W. Biederman") [1487751]
-- [fs] kobject: fix memory leak in kobject_set_name_vargs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: remove duplicated include from file.c ("Eric W. Biederman") [1487751]
-- [fs] kobject: remove kset from sysfs immediately in kset_unregister() ("Eric W. Biederman") [1487751]
-- [fs] kernfs: implement "trusted.*" xattr support ("Eric W. Biederman") [1487751]
-- [fs] kernfs: update sysfs_init_inode_attrs() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: remove cross inclusions of internal headers ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: implement kernfs_ns_enabled() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: make sysfs_dirent definition public ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move mount core code to fs/kernfs/mount.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare mount path for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: make super_blocks bind to different kernfs_roots ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: make inode number ida per kernfs_root ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Update __compat_only_sysfs_link_entry_to_kobj to it's upstream form ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: implement kernfs_create/destroy_root() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce sysfs_root_sd ("Eric W. Biederman") [1487751]
-- [fs] Don't return 0 from get_anon_bdev ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: no need to kern_mount() sysfs from sysfs_init() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: make sysfs_super_info->ns const ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: drop unused params from sysfs_fill_super() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move symlink core code to fs/kernfs/symlink.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move file core code to fs/kernfs/file.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move dir core code to fs/kernfs/dir.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move inode code to fs/kernfs/inode.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move internal decls to fs/kernfs/kernfs-internal.h ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs[_find_and]_get() and kernfs_put() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: revamp sysfs_dirent active_ref lockdep annotation ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: reorganize SYSFS_* constants ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_notify() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: add kernfs_ops->seq_{start|next|stop}() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: remove sysfs_add_one() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_create_file[_ns]() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: remove SYSFS_KOBJ_BIN_ATTR ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: add sysfs_dirent->s_attr.size ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_ops ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: move sysfs_open_file to linux/kernfs.h ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare open, release, poll paths for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare mmap path for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare write path for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: prepare read path for kernfs ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_create_dir[_ns]() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: replace sysfs_dirent->s_dir.kobj and ->s_attr.[bin_]attr with ->priv ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_setattr() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_rename[_ns]() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_create_link() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: introduce kernfs_remove[_by_name[_ns]]() ("Eric W. Biederman") [1487751]
-- [fs] sysfs, kernfs: add skeletons for kernfs ("Eric W. Biederman") [1487751]
-- [fs] kernfs: Temporarily remove kernfs the change from sysfs to kernfs can be replayed ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make __sysfs_add_one() fail if the parent isn't a directory ("Eric W. Biederman") [1487751]
-- [fs] sysfs: drop kobj_ns_type handling, take #2 ("Eric W. Biederman") [1487751]
-- [fs] revert "sysfs: handle duplicate removal attempts in sysfs_remove_group()" ("Eric W. Biederman") [1487751]
-- [fs] sysfs: use a separate locking class for open files depending on mmap ("Eric W. Biederman") [1487751]
-- [fs] sysfs: handle duplicate removal attempts in sysfs_remove_group() ("Eric W. Biederman") [1487751]
-- [fs] revert "sysfs: drop kobj_ns_type handling" ("Eric W. Biederman") [1487751]
-- [fs] sysfs: rename sysfs_assoc_lock and explain what it's about ("Eric W. Biederman") [1487751]
-- [fs] sysfs: use generic_file_llseek() for sysfs_file_operations ("Eric W. Biederman") [1487751]
-- [fs] sysfs: return correct error code on unimplemented mmap() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: separate out dup filename warning into a separate function ("Eric W. Biederman") [1487751]
-- [fs] sysfs: move sysfs_hash_and_remove() to fs/sysfs/dir.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove unused sysfs_get_dentry() prototype ("Eric W. Biederman") [1487751]
-- [fs] sysfs: honor bin_attr.attr.ignore_lockdep ("Eric W. Biederman") [1487751]
-- [fs] sysfs: merge sysfs_elem_bin_attr into sysfs_elem_attr ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix sysfs_write_file for bin file ("Eric W. Biederman") [1487751]
-- [fs] sysfs/bin: Fix size handling overflow for bin_attribute ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make sysfs_file_ops() follow ignore_lockdep flag ("Eric W. Biederman") [1487751]
-- [fs] sysfs: merge regular and bin file handling ("Eric W. Biederman") [1487751]
-- [fs] sysfs: prepare open path for unified regular / bin file handling ("Eric W. Biederman") [1487751]
-- [fs] sysfs: copy bin mmap support from fs/sysfs/bin.c to fs/sysfs/file.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs: add sysfs_bin_read() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: prepare path write for unified regular / bin file handling ("Eric W. Biederman") [1487751]
-- [fs] sysfs: collapse fs/sysfs/bin.c::fill_read() into read() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: skip bin_buffer->buffer while reading ("Eric W. Biederman") [1487751]
-- [fs] sysfs: use seq_file when reading regular files ("Eric W. Biederman") [1487751]
-- [fs] sysfs: use transient write buffer ("Eric W. Biederman") [1487751]
-- [fs] sysfs: add sysfs_open_file->sd and ->file ("Eric W. Biederman") [1487751]
-- [fs] sysfs: rename sysfs_buffer to sysfs_open_file ("Eric W. Biederman") [1487751]
-- [fs] sysfs: add sysfs_open_file_mutex ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove sysfs_buffer->ops ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove sysfs_buffer->needs_read_fill ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove unused sysfs_buffer->pos ("Eric W. Biederman") [1487751]
-- [fs] sysfs: introduce [__]sysfs_remove() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make __sysfs_remove_dir() recursive ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove sysfs_addrm_cxt->parent_sd ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Allow mounting without CONFIG_NET ("Eric W. Biederman") [1487751]
-- [fs] sysfs: @name comes before @ns ("Eric W. Biederman") [1487751]
-- [fs] sysfs: clean up sysfs_get_dirent() ("Eric W. Biederman") [1487751]
-- [fs] sysfs: drop kobj_ns_type handling ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Remove namespace handling from __compat_only_sysfs_link_entry_to_kobj ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove ktype->namespace() invocations in symlink code ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove ktype->namespace() invocations in directory code ("Eric W. Biederman") [1487751]
-- [fs] sysfs: make attr namespace interface less convoluted ("Eric W. Biederman") [1487751]
-- [fs] sysfs: drop semicolon from to_sysfs_dirent() definition ("Eric W. Biederman") [1487751]
-- [fs] sysfs: Restrict mounting sysfs ("Eric W. Biederman") [1487751]
-- [fs] userns: Better restrictions on when proc and sysfs can be mounted ("Eric W. Biederman") [1487751]
-- [fs] sysfs.h: remove attr_name() macro ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix up minor coding style issues in sysfs.h ("Eric W. Biederman") [1487751]
-- [fs] sysfs: sysfs.h: fix coding style issues ("Eric W. Biederman") [1487751]
-- [fs] sysfs: file.c: fix up broken string warnings ("Eric W. Biederman") [1487751]
-- [fs] sysfs: dir.c: fix up odd do/while indentation ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix up uaccess.h coding style warnings ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix up 80 column coding style issues ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix up space coding style issues ("Eric W. Biederman") [1487751]
-- [fs] sysfs: remove trailing whitespace ("Eric W. Biederman") [1487751]
-- [fs] sysfs: fix placement of EXPORT_SYMBOL() ("Eric W. Biederman") [1487751]
-- [fs] sysfs.h: fix __BIN_ATTR_RW() ("Eric W. Biederman") [1487751]
-- [fs] convert sysfs ("Eric W. Biederman") [1487751]
-- [fs] kobject: sanitize argument for format string ("Eric W. Biederman") [1487751]
-- [fs] sysfs_notify is only possible on file attributes ("Eric W. Biederman") [1487751]
-- [fs] sysfs: kill sysfs_sb declaration in fs/sysfs/inode.c ("Eric W. Biederman") [1487751]
-- [fs] sysfs: sysfs_link_sibling(): fix typo in comment ("Eric W. Biederman") [1487751]
-- [fs] overlayfs: Replace vfs_readdir with iterate_dir ("Eric W. Biederman") [1487751]
-- [fs] vfs: delete vfs_readdir function declaration ("Eric W. Biederman") [1487751]
-- [fs] switch dcache_readdir() users to ->iterate() ("Eric W. Biederman") [1487751]
-- [fs] introduce ->iterate(), ctx->pos, dir_emit() ("Eric W. Biederman") [1487751]
-- [fs] introduce iterate_dir() and dir_context ("Eric W. Biederman") [1487751]
-- [fs] powerpc/pci: Reorder pci bus/bridge unregistration during PHB removal ("Eric W. Biederman") [1487751]
-- [fs] scsi: mpt: Move scsi_remove_host() out of mptscsih_remove_host() ("Eric W. Biederman") [1487751]
-- [fs] scsi: sas: move scsi_remove_host call into sas_remove_host ("Eric W. Biederman") [1487751]
-- [fs] scsi_transport_sas: move bsg destructor into sas_rphy_remove ("Eric W. Biederman") [1487751]
-
-* Fri Jan 05 2018 Rafael Aquini <aquini@redhat.com> [3.10.0-827.el7]
-- [x86] entry: Invoke TRACE_IRQS_IRETQ in paranoid_userspace_restore_all (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] cpu: fix get_scattered_cpu_leaf for IBPB feature (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: show added cpuid flags in /proc/cpuinfo after late microcode update (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: svm: spec_ctrl at vmexit needs per-cpu areas functional (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: init_tss is supposed to go in the PAGE_ALIGNED per-cpu section (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: Eliminate redundnat FEATURE Not Present messages (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: skip IBRS/CR3 restore when paranoid exception returns to userland (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: set IBRS during resume from RAM if ibrs_enabled is 2 (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: allow use_ibp_disable only if both SPEC_CTRL and IBPB_SUPPORT are missing (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: Documentation spec_ctrl.txt (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: remove irqs_disabled() check from intel_idle() (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: use enum when setting ibrs/ibpb_enabled (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: undo speculation barrier for ibrs_enabled and noibrs_cmdline (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: introduce ibpb_enabled = 2 for IBPB instead of IBRS (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: introduce SPEC_CTRL_PCP_ONLY_IBPB (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: cleanup s/flush/sync/ naming when sending IPIs (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: set IBRS during CPU init if in ibrs_enabled == 2 (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: use IBRS_ENABLED instead of 1 (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: allow the IBP disable feature to be toggled at runtime (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: always initialize save_reg in ENABLE_IBRS_SAVE_AND_CLOBBER (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: ibrs_enabled() is expected to return > 1 (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: issue a __spec_ctrl_ibpb if a credential check isn't possible (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] ibpb: don't optimize spec_cntrl_ibpb on PREEMPT_RCU (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: clear registers after 32bit syscall stackframe is setup (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: reload spec_ctrl cpuid in all microcode load paths (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: Prevent unwanted speculation without IBRS (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Remove trampoline check from paranoid entry path (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Fix paranoid_exit() trampoline clobber (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Simplify trampoline stack restore code (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: remove SPEC_CTRL_DEBUG code (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: add noibrs noibpb boot options (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] syscall: Clear unused extra registers on 32-bit compatible syscall entrance (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: cleanup unnecessary ptregscall_common function (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: CLEAR_EXTRA_REGS and extra regs save/restore (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] syscall: Clear unused extra registers on syscall entrance (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: rescan cpuid after a late microcode update (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: add debugfs ibrs_enabled ibpb_enabled (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: consolidate the spec control boot detection (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm/spec_ctrl: allow IBRS to stay enabled in host userland (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: add debug aid to test the entry code without microcode (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: move stuff_RSB in spec_ctrl.h (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Stuff RSB for entry to kernel for non-SMEP platform (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Only set IBPB when the new thread cannot ptrace current thread (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Set IBPB upon context switch (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] idle: Disable IBRS when offlining cpu and re-enable on wakeup (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] idle: Disable IBRS entering idle and enable it on wakeup (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: implement spec ctrl C methods (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: save IBRS MSR value in save_paranoid for NMI (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] enter: Use IBRS on syscall and interrupts (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: swap rdx with rsi for nmi nesting detection (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: spec_ctrl_pcp and kaiser_enabled_pcp in same cachline (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] spec_ctrl: use per-cpu knob instead of ALTERNATIVES for ibpb and ibrs (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] enter: MACROS to set/clear IBRS and set IBPB (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: x86: add SPEC_CTRL to MSR and CPUID lists (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: svm: add MSR_IA32_SPEC_CTRL and MSR_IA32_PRED_CMD (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] svm: Set IBPB when running a different VCPU (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: vmx: add MSR_IA32_SPEC_CTRL and MSR_IA32_PRED_CMD (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: vmx: Set IBPB when running a different VCPU (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: x86: clear registers on VM exit (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kvm: Pad RSB on VM transition (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] cpu/amd: Control indirect branch predictor when SPEC_CTRL not available (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] feature: Report presence of IBPB and IBRS control (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] feature: Enable the x86 feature to control Speculation (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [tools] objtool: Don't print 'call dest' warnings for ignored functions (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [fs] udf: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [kernel] fs: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [kernel] userns: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [scsi] qla2xxx: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [netdrv] p54: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [netdrv] carl9170: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [media] uvcvideo: prevent speculative execution (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] cpu/amd: Remove now unused definition of MFENCE_RDTSC feature (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] cpu/amd: Make the LFENCE instruction serialized (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [kernel] locking/barriers: introduce new memory barrier gmb() (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: consider the init_mm.pgd a kaiser pgd (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: convert userland visible "kpti" name to "pti" (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: __load_cr3 in resume from RAM after kernel gs has been restored (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] kaiser/mm: fix pgd freeing in error path (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: disable global pages by default with KAISER (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] revert "x86/mm/kaiser: Disable global pages by default with KAISER" (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: Replace kaiser with kpti to sync with upstream (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add "kaiser" and "nokaiser" boot options (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map the trace idt tables in userland shadow pgd (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: fix RESTORE_CR3 crash in kaiser_stop_machine (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [security] x86/mm/kaiser: use stop_machine for enable/disable knob (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: use atomic ops to poison/unpoison user pagetables (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: use invpcid to flush the two kaiser PCID AISD (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: use two PCID ASIDs optimize the TLB during enter/exit kernel (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: stop patching flush_tlb_single (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: use PCID feature to make user and kernel switches faster (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: If INVPCID is available, use it to flush global mappings (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/64: Fix reboot interaction with CR4.PCIDE (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/64: Initialize CR4.PCIDE early (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Add a 'noinvpcid' boot option to turn off INVPCID (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Add the 'nopcid' boot option to turn off PCID (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: validate trampoline stack (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] entry: Move SYSENTER_stack to the beginning of struct tss_struct (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [kernel] x86/mm/kaiser: isolate the user mapped per cpu areas (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: selective boot time defaults (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: handle call to xen_pv_domain() on PREEMPT_RT (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser/xen: Dynamically disable KAISER when running under Xen PV (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [security] x86/mm/kaiser: add Kconfig (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: avoid false positives during non-kaiser pgd updates (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: Respect disabled CPU features (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: trampoline stack comments (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: stack trampoline (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: remove paravirt clock warning (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: re-enable vsyscalls (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: allow to build KAISER with KASRL (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: allow KAISER to be enabled/disabled at runtime (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: un-poison PGDs at runtime (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add a function to check for KAISER being enabled (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add debugfs file to turn KAISER on/off at runtime (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: disable native VSYSCALL (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map virtually-addressed performance monitoring buffers (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map debug IDT tables (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add kprobes text section (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map trace interrupt entry (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map entry stack per-cpu areas (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: map dynamically-allocated LDTs (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: make sure static PGDs are 8k in size (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: allow NX poison to be set in p4d/pgd (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: unmap kernel from userspace page tables (core patch) (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: mark per-cpu data structures required for entry/exit (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: introduce user-mapped per-cpu areas (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: add cr3 switches to entry code (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: remove scratch registers (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: prepare assembly for entry/exit CR3 switching (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/kaiser: Disable global pages by default with KAISER (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Document X86_CR4_PGE toggling behavior (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm/tlb: Make CR4-based TLB flushes more robust (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] mm: Do not set _PAGE_USER for init_mm page tables (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] increase robusteness of bad_iret fixup handler (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [x86] perf/x86/intel/uncore: Fix memory leaks on allocation failures (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-- [mm] fix bad rss-counter if remap_file_pages raced migration (Andrea Arcangeli) [1519801 1519798 1519786] {CVE-2017-5715 CVE-2017-5753 CVE-2017-5754}
-
-* Thu Dec 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-826.el7]
-- [tty] serial: 8250_pci: Add Amazon PCI serial device ID (Vitaly Kuznetsov) [1527545]
-- [tools] perf vendor events: Use more flexible pattern matching for CPU identification for mapfile.csv (Jiri Olsa) [1523766]
-- [tools] perf vendor events powerpc: remove suffix in mapfile (Jiri Olsa) [1523766]
-- [tools] perf vendor events: Add POWER9 PVRs to mapfile (Jiri Olsa) [1523766]
-- [tools] perf vendor events: Add POWER9 PMU events (Jiri Olsa) [1523766]
-- [tools] perf pmu-events: Support additional POWER8+ PVR in mapfile (Jiri Olsa) [1523766]
-- [tools] perf pmu: Extract function to get JSON alias map (Jiri Olsa) [1523766]
-- [tools] perf pmu: Add helper function is_pmu_core to detect PMU CORE devices (Jiri Olsa) [1523766]
-- [powerpc] Fix /proc/cpuinfo revision for POWER9 DD2 (David Gibson) [1526339]
-- [cpufreq] intel_pstate: Add support for Gemini Lake (Steve Best) [1456555]
-- [cpufreq] intel_pstate: Broxton support (Steve Best) [1456555]
-- [security] ima: log message to module appraisal error (Bruno Eduardo de Oliveira Meneguele) [1469473]
-- [security] ima: check signature enforcement against cmdline param instead of CONFIG (Bruno Eduardo de Oliveira Meneguele) [1469473]
-- [kernel] module: export module signature enforcement status (Bruno Eduardo de Oliveira Meneguele) [1469473]
-- [firmware] fw_cfg: write vmcoreinfo details (Baoquan He) [1493125]
-- [firmware] fw_cfg: do DMA read operation (Baoquan He) [1493125]
-- [firmware] fw_cfg: add DMA register (Baoquan He) [1493125]
-- [firmware] fw_cfg: fix driver remove (Baoquan He) [1493125]
-- [firmware] fw_cfg: fix the command line module name (Baoquan He) [1493125]
-- [firmware] qemu_fw_cfg.c: potential unintialized variable (Baoquan He) [1493125]
-- [firmware] qemu_fw_cfg.c: hold ACPI global lock during device access (Baoquan He) [1493125]
-- [firmware] qemu_fw_cfg: don't leak kobj on init error (Baoquan He) [1493125]
-- [firmware] fw_cfg register offsets on supported architectures only (Baoquan He) [1493125]
-- [firmware] qemu_fw_cfg.c: fix typo FW_CFG_DATA_OFF (Baoquan He) [1493125]
-- [firmware] create directory hierarchy for sysfs fw_cfg entries (Baoquan He) [1493125]
-- [firmware] introduce sysfs driver for QEMU's fw_cfg device (Baoquan He) [1493125]
-- [acpi] acpi / platform: provide default DMA mask (Baoquan He) [1493125]
-- [infiniband] ib/mlx4: Add contig support for control objects (Kamal Heib) [1520141]
-- [infiniband] ib/mlx4: Use optimal numbers of MTT entries (Kamal Heib) [1520141]
-- [infiniband] ib/mlx4: Fix RSS's QPC attributes assignments (Kamal Heib) [1520141]
-- [infiniband] ib/mlx4: Add report for RSS capabilities by vendor channel (Kamal Heib) [1520141]
-- [infiniband] rdma/netlink: Fix general protection fault (Don Dutile) [1523865]
-- [infiniband] ib/mlx4: Fix RSS hash fields restrictions (Don Dutile) [1523865]
-- [infiniband] ib/core: Don't enforce PKey security on SMI MADs (Don Dutile) [1523865]
-- [infiniband] ib/core: Bound check alternate path port number (Don Dutile) [1523865]
-
-* Tue Dec 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-825.el7]
-- [scsi] lpfc: Fix crash after bad bar setup on driver attachment (Dick Kennedy) [1441965]
-- [fs] cifs: fix NULL deref in SMB2_read (Leif Sahlberg) [1508380]
-- [fs] nfs: don't wait on commit in nfs_commit_inode() if there were no commit requests (Scott Mayhew) [1514371]
-- [fs] cifs: check rsp for NULL before dereferencing in SMB2_open (Leif Sahlberg) [1516680]
-- [fs] nfs: fix a deadlock in nfs client initialization (Scott Mayhew) [1506382]
-- [fs] nfsv4.0: Fix a lock leak in nfs40_walk_client_list (Scott Mayhew) [1506382]
-- [fs] nfs: Create a common nfs4_match_client() function (Scott Mayhew) [1506382]
-- [fs] blktrace: use existing disk debugfs directory (Eric Sandeen) [1521092]
-- [fs] debugfs: add debugfs_lookup() (Eric Sandeen) [1521092]
-- [x86] mm: revert x86_64 and arm64 ELF_ET_DYN_BASE base changes (Bhupesh Sharma) [1432288]
-- [fs] binfmt_elf: safely increment argv pointers (Bhupesh Sharma) [1432288]
-- [powerpc] move ELF_ET_DYN_BASE to 4GB / 4MB (Bhupesh Sharma) [1432288]
-- [x86] binfmt_elf: use ELF_ET_DYN_BASE only for PIE (Bhupesh Sharma) [1432288]
-- [netdrv] iwlwifi: mvm: support version 7 of the SCAN_REQ_UMAC FW command (Stanislaw Gruszka) [1525027]
-- [netdrv] mac80211_hwsim: Fix memory leak in hwsim_new_radio_nl() (Stanislaw Gruszka) [1501882]
-- [netdrv] brcmfmac: change driver unbind order of the sdio function devices (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: mvm: enable RX offloading with TKIP and WEP (Stanislaw Gruszka) [1516644 1501882]
-- [netdrv] iwlwifi: mvm: fix packet injection (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add new cards for 9260 and 22000 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: mvm: flush queue before deleting ROC (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: mvm: don't use transmit queue hang detection when it is not possible (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: mvm: mark MIC stripped MPDUs (Stanislaw Gruszka) [1516644 1501882]
-- [netdrv] iwlwifi: fix PCI IDs and configuration mapping for 9000 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add new cards for 8260 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add new cards for 8265 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add new cards for a000 series (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: pcie: sort IDs for the 9000 series for easier comparisons (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: add a new a000 device (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: fix wrong struct for a000 device (Stanislaw Gruszka) [1501882]
-- [netdrv] iwlwifi: fix firmware names for 9000 and A000 series hw (Stanislaw Gruszka) [1501882]
-- [netdrv] rtlwifi: fix uninitialized rtlhal->last_suspend_sec time (Stanislaw Gruszka) [1501882]
-- [netdrv] rtlwifi: rtl8192ee: Fix memory leak when loading firmware (Stanislaw Gruszka) [1501882]
-- [netdrv] rt2x00usb: mark device removed when get ENOENT usb error (Stanislaw Gruszka) [1501882]
-
-* Thu Dec 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-824.el7]
-- [netdrv] liquidio: do not consider packets dropped by network stack as driver Rx dropped (Felix Manlunas) [1510590]
-- [netdrv] liquidio: Fix an issue with multiple switchdev enable disables (Felix Manlunas) [1510590]
-- [netdrv] liquidio: bump up driver version to 1.7.0 to match newer NIC firmware (Felix Manlunas) [1510590]
-- [netdrv] liquidio: synchronize VF representor names with NIC firmware (Felix Manlunas) [1510590]
-- [netdrv] liquidio: remove redundant setting of inst_processed to zero (Felix Manlunas) [1510590]
-- [netdrv] liquidio: Configure switchdev with devlink (Felix Manlunas) [1510590]
-- [netdrv] liquidio: switchdev support for LiquidIO NIC (Felix Manlunas) [1510590]
-- [netdrv] liquidio: get rid of false alarm "Unknown cmd 27" in dmesg (Felix Manlunas) [1510590]
-- [netdrv] liquidio: fix kernel panic in VF driver (Felix Manlunas) [1506085 1510590]
-- [netdrv] liquidio: xmit_more support (Felix Manlunas) [1510590]
-- [netdrv] liquidio: deprecate 1-bit flag indicating watchdog kernel thread is running (Felix Manlunas) [1510590]
-- [netdrv] liquidio: pass date and time info to NIC firmware (Felix Manlunas) [1510590]
-- [netdrv] liquidio: fix timespec64_to_ns typo (Felix Manlunas) [1510590]
-- [netdrv] liquidio: mark expected switch fall-through in octeon_destroy_resources (Felix Manlunas) [1510590]
-- [netdrv] liquidio: remove unnecessary NULL check before kfree in delete_glists (Felix Manlunas) [1510590]
-- [netdrv] liquidio: update module parameter fw_type to reflect firmware type loaded (Felix Manlunas) [1510590]
-- [netdrv] liquidio: verify firmware version when auto-loaded from flash (Felix Manlunas) [1510590]
-- [netdrv] liquidio: allow override of firmware present in flash (Felix Manlunas) [1510590]
-- [netdrv] nfp: fix XPB register reads in debug dump (John Linville) [1525879]
-- [netdrv] nfp: fix absolute rtsym handling in debug dump (John Linville) [1525879]
-- [netdrv] nfp: flower: improve hashing of flows (John Linville) [1525600]
-- [netdrv] nfp: flower: restore RTNL locking around representor updates (John Linville) [1525600]
-- [netdrv] nfp: process MTU updates from firmware flower app (John Linville) [1525600]
-- [netdrv] nfp: process control messages in workqueue in flower app (John Linville) [1525600]
-- [netdrv] nfp: dump indirect ME CSRs (John Linville) [1520411]
-- [netdrv] nfp: dump CPP, XPB and direct ME CSRs (John Linville) [1520411]
-- [netdrv] nfp: dump firmware name (John Linville) [1520411]
-- [netdrv] nfp: dump single hwinfo field by key (John Linville) [1520411]
-- [netdrv] nfp: dump all hwinfo (John Linville) [1520411]
-- [netdrv] nfp: dump rtsyms (John Linville) [1520411]
-- [netdrv] nfp: dumpspec TLV traversal (John Linville) [1520411]
-- [netdrv] nfp: dump prolog (John Linville) [1520411]
-- [netdrv] nfp: load debug dump spec (John Linville) [1520411]
-- [netdrv] nfp: debug dump ethtool ops (John Linville) [1520411]
-- [netdrv] qede: Configure UDP ports in local context (Don Dutile) [1462432]
-- [netdrv] qede: Move all UDP port notifiers to single function (Don Dutile) [1462432]
-
-* Wed Dec 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-823.el7]
-- [i2c] revert I2C updates changeset (Gopal Tiwari) [1456705]
-- [misc] rtsx: Fix symbol clashes (Daniel Bristot de Oliveira) [1457800]
-- [misc] rtsx: Add support for RTS5260 (Daniel Bristot de Oliveira) [1457800]
-- [misc] mfd: rtsx: Do retry when DMA transfer error (Daniel Bristot de Oliveira) [1457800]
-- [misc] mfd: rts5249: Add support for RTS5250S power saving (Daniel Bristot de Oliveira) [1457800]
-- [scsi] run queue if SCSI device queue isn't ready and queue is idle (Ming Lei) [1523029]
-- [hwmon] ntc_thermistor: Fix dependencies (Gopal Tiwari) [1524404]
-- [block] drain queue before waiting for q_usage_counter becoming zero (Ming Lei) [1523022]
-- [target] tcmu: reconfigure netlink attr changes (Maurizio Lombardi) [1507794]
-- [target] tcmu: Make dev_size configurable via userspace (Maurizio Lombardi) [1507794]
-- [target] tcmu: allow max block and global max blocks to be settable (Mike Christie) [1480721 1480434]
-- [target] return SAM_STAT_TASK_SET_FULL for TCM_OUT_OF_RESOURCES (Mike Christie) [1480721 1480434]
-- [target] tcmu: fix crash when removing the tcmu device (Mike Christie) [1480721 1480434]
-- [target] tcmu: make ring buffer timer configurable (Mike Christie) [1480721 1480434]
-- [target] tcmu: Use sense_reason_t in tcmu_queue_cmd_ring (Mike Christie) [1480721 1480434]
-- [target] tcmu: sync up configfs attr setup (Mike Christie) [1507794 1480721 1480434]
-- [target] tcmu: Fix possbile memory leak / OOPs when recalculating cmd base size (Mike Christie) [1480721 1480434]
-- [target] tcmu: Fix flushing cmd entry dcache page (Mike Christie) [1480721 1480434]
-- [target] tcmu: Recalculate the tcmu_cmd size to save cmd area memories (Mike Christie) [1480721 1480434]
-- [target] tcmu: add io size helpers (Mike Christie) [1480721 1480434]
-- [netdrv] cxgb4: add new T6 pci device id's (Arjun Vynipadath) [1515315]
-- [netdrv] cxgb4: add new T5 pci device id's (Arjun Vynipadath) [1515315]
-- [netdrv] cxgb4: add new T6 pci device id's (Arjun Vynipadath) [1515315]
-- [netdrv] cxgb4: add new T5 pci device id's (Arjun Vynipadath) [1515315]
-- [netdrv] cxgb4: add new T5 pci device id's (Arjun Vynipadath) [1515315]
-
-* Wed Dec 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-822.el7]
-- [fs] ovl: don't follow redirects if redirect_dir=off (Miklos Szeredi) [1485392]
-- [fs] ovl: Put upperdentry if ovl_check_origin() fails (Miklos Szeredi) [1485392]
-- [fs] ovl: lockdep annotate of nested OVL_I(inode)->lock (Miklos Szeredi) [1485392]
-- [fs] ovl: do not cleanup unsupported index entries (Miklos Szeredi) [1485392]
-- [fs] ovl: handle ENOENT on index lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: fix EIO from lookup of non-indexed upper (Miklos Szeredi) [1485392]
-- [fs] ovl: Return -ENOMEM if an allocation fails ovl_lookup() (Miklos Szeredi) [1485392]
-- [fs] ovl: add NULL check in ovl_alloc_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: fix regression caused by exclusive upper/work dir protection (Miklos Szeredi) [1485392]
-- [fs] ovl: fix missing unlock_rename() in ovl_do_copy_up() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix dentry leak in ovl_indexdir_cleanup() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix dput() of ERR_PTR in ovl_cleanup_index() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix error value printed in ovl_lookup_index() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix false positive ESTALE on lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: check for bad and whiteout index on lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: do not cleanup directory and whiteout index entries (Miklos Szeredi) [1485392]
-- [fs] ovl: fix xattr get and set with selinux (Miklos Szeredi) [1485392]
-- [fs] ovl: remove unneeded check for IS_ERR() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix origin verification of index dir (Miklos Szeredi) [1485392]
-- [fs] ovl: mark parent impure on ovl_link() (Miklos Szeredi) [1485392]
-- [fs] ovl: fix random return value on mount (Miklos Szeredi) [1485392]
-- [fs] ovl: mark parent impure and restore timestamp on ovl_link_up() (Miklos Szeredi) [1485392]
-- [fs] ovl: document copying layers restrictions with inodes index (Miklos Szeredi) [1485392]
-- [fs] ovl: cleanup orphan index entries (Miklos Szeredi) [1485392]
-- [fs] ovl: persistent overlay inode nlink for indexed inodes (Miklos Szeredi) [1485392]
-- [fs] ovl: implement index dir copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: move copy up lock out (Miklos Szeredi) [1485392]
-- [fs] ovl: rearrange copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: add flag for upper in ovl_entry (Miklos Szeredi) [1485392]
-- [fs] ovl: use struct copy_up_ctx as function argument (Miklos Szeredi) [1485392]
-- [fs] ovl: base tmpfile in workdir too (Miklos Szeredi) [1485392]
-- [fs] ovl: factor out ovl_copy_up_inode() helper (Miklos Szeredi) [1485392]
-- [fs] ovl: extract helper to get temp file in copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: defer upper dir lock to tempfile link (Miklos Szeredi) [1485392]
-- [fs] ovl: hash overlay non-dir inodes by copy up origin (Miklos Szeredi) [1485392]
-- [fs] ovl: cleanup bad and stale index entries on mount (Miklos Szeredi) [1485392]
-- [fs] ovl: lookup index entry for copy up origin (Miklos Szeredi) [1485392]
-- [fs] ovl: verify index dir matches upper dir (Miklos Szeredi) [1485392]
-- [fs] ovl: verify upper root dir matches lower root dir (Miklos Szeredi) [1485392]
-- [fs] ovl: introduce the inodes index dir feature (Miklos Szeredi) [1485392]
-- [fs] ovl: generalize ovl_create_workdir() (Miklos Szeredi) [1485392]
-- [fs] ovl: relax same fs constrain for ovl_check_origin() (Miklos Szeredi) [1485392]
-- [fs] ovl: get exclusive ownership on upper/work dirs (Miklos Szeredi) [1485392]
-- [fs] vfs: introduce inode 'inuse' lock (Miklos Szeredi) [1485392]
-- [fs] ovl: move cache and version to ovl_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: use ovl_inode mutex to synchronize concurrent copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: move impure to ovl_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: move redirect to ovl_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: move __upperdentry to ovl_inode (Miklos Szeredi) [1485392]
-- [fs] ovl: compare inodes (Miklos Szeredi) [1485392]
-- [fs] ovl: use i_private only as a key (Miklos Szeredi) [1485392]
-- [fs] ovl: simplify getting inode (Miklos Szeredi) [1485392]
-- [fs] ovl: allocate an ovl_inode struct (Miklos Szeredi) [1485392]
-- [fs] ovl: fix nlink leak in ovl_rename() (Miklos Szeredi) [1485392]
-- [fs] ovl: don't set origin on broken lower hardlink (Miklos Szeredi) [1485392]
-- [fs] ovl: copy-up: don't unlock between lookup and link (Miklos Szeredi) [1485392]
-- [fs] tmpfs: generate random sb->s_uuid (Miklos Szeredi) [1485392]
-- [fs] ovl: filter trusted xattr for non-admin (Miklos Szeredi) [1485392]
-- [fs] ovl: mark upper merge dir with type origin entries "impure" (Miklos Szeredi) [1485392]
-- [fs] ovl: mark upper dir with type origin entries "impure" (Miklos Szeredi) [1485392]
-- [fs] ovl: remove unused arg from ovl_lookup_temp() (Miklos Szeredi) [1485392]
-- [fs] ovl: handle rename when upper doesn't support xattr (Miklos Szeredi) [1485392]
-- [fs] ovl: don't fail copy-up if upper doesn't support xattr (Miklos Szeredi) [1485392]
-- [fs] ovl: check on mount time if upper fs supports setting xattr (Miklos Szeredi) [1485392]
-- [fs] ovl: fix creds leak in copy up error path (Miklos Szeredi) [1485392]
-- [fs] ovl: select EXPORTFS (Miklos Szeredi) [1485392]
-- [fs] ovl: update documentation w.r.t. constant inode numbers (Miklos Szeredi) [1485392]
-- [fs] ovl: persistent inode numbers for upper hardlinks (Miklos Szeredi) [1485392]
-- [fs] ovl: merge getattr for dir and nondir (Miklos Szeredi) [1485392]
-- [fs] ovl: constant st_ino/st_dev across copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: persistent inode number for directories (Miklos Szeredi) [1485392]
-- [fs] ovl: set the ORIGIN type flag (Miklos Szeredi) [1485392]
-- [fs] ovl: lookup non-dir copy-up-origin by file handle (Miklos Szeredi) [1485392]
-- [fs] ovl: use an auxiliary var for overlay root entry (Miklos Szeredi) [1485392]
-- [fs] ovl: store file handle of lower inode on copy up (Miklos Szeredi) [1485392]
-- [fs] ovl: check if all layers are on the same fs (Miklos Szeredi) [1485392]
-- [fs] ovl: do not set overlay.opaque on non-dir create (Miklos Szeredi) [1485392]
-- [fs] ovl: check IS_APPEND() on real upper inode (Miklos Szeredi) [1485392]
-- [fs] vfs: ftruncate check IS_APPEND() on real upper inode (Miklos Szeredi) [1485392]
-- [fs] ovl: Use designated initializers (Miklos Szeredi) [1485392]
-- [fs] ovl: lockdep annotate of nested stacked overlayfs inode lock (Miklos Szeredi) [1485392]
-- [fs] ovl: drop CAP_SYS_RESOURCE from saved mounter's credentials (Miklos Szeredi) [1485392]
-- [fs] ovl: properly implement sync_filesystem() (Miklos Szeredi) [1485392]
-- [fs] ovl: concurrent copy up of regular files (Miklos Szeredi) [1485392]
-- [fs] ovl: introduce copy up waitqueue (Miklos Szeredi) [1485392]
-- [fs] ovl: copy up regular file using O_TMPFILE (Miklos Szeredi) [1485392]
-- [fs] ovl: rearrange code in ovl_copy_up_locked() (Miklos Szeredi) [1485392]
-- [fs] ovl: check if upperdir fs supports O_TMPFILE (Miklos Szeredi) [1485392]
-- [fs] ovl: fix possible use after free on redirect dir lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: fix reStructuredText syntax errors in documentation (Miklos Szeredi) [1485392]
-- [fs] ovl: fix return value of ovl_fill_super (Miklos Szeredi) [1485392]
-- [fs] ovl: clean up kstat usage (Miklos Szeredi) [1485392]
-- [fs] ovl: fold ovl_copy_up_truncate() into ovl_copy_up() (Miklos Szeredi) [1485392]
-- [fs] ovl: create directories inside merged parent opaque (Miklos Szeredi) [1485392]
-- [fs] ovl: opaque cleanup (Miklos Szeredi) [1485392]
-- [fs] ovl: show redirect_dir mount option (Miklos Szeredi) [1485392]
-- [fs] ovl: allow setting max size of redirect (Miklos Szeredi) [1485392]
-- [fs] ovl: allow redirect_dir to default to "on" (Miklos Szeredi) [1485392]
-- [fs] ovl: check for emptiness of redirect dir (Miklos Szeredi) [1485392]
-- [fs] ovl: redirect on rename-dir (Miklos Szeredi) [1485392]
-- [fs] ovl: lookup redirects (Miklos Szeredi) [1485392]
-- [fs] ovl: consolidate lookup for underlying layers (Miklos Szeredi) [1485392]
-- [fs] ovl: fix nested overlayfs mount (Miklos Szeredi) [1485392]
-- [fs] ovl: check namelen (Miklos Szeredi) [1485392]
-- [fs] ovl: split super.c (Miklos Szeredi) [1485392]
-- [fs] ovl: use d_is_dir() (Miklos Szeredi) [1485392]
-- [fs] ovl: simplify lookup (Miklos Szeredi) [1485392]
-- [fs] ovl: check lower existence of rename target (Miklos Szeredi) [1485392]
-- [fs] ovl: rename: simplify handling of lower/merged directory (Miklos Szeredi) [1485392]
-- [fs] ovl: get rid of PURE type (Miklos Szeredi) [1485392]
-- [fs] ovl: check lower existence when removing (Miklos Szeredi) [1485392]
-- [fs] ovl: add ovl_dentry_is_whiteout() (Miklos Szeredi) [1485392]
-- [fs] ovl: don't check sticky (Miklos Szeredi) [1485392]
-- [fs] ovl: don't check rename to self (Miklos Szeredi) [1485392]
-- [fs] ovl: treat special files like a regular fs (Miklos Szeredi) [1485392]
-- [fs] ovl: rename ovl_rename2() to ovl_rename() (Miklos Szeredi) [1485392]
-- [fs] ovl: use vfs_clone_file_range() for copy up if possible (Miklos Szeredi) [1485392]
-- [fs] Revert "ovl: get_write_access() in truncate" (Miklos Szeredi) [1485392]
-- [fs] ovl: update doc (Miklos Szeredi) [1485392]
-- [fs] vfs: fix vfs_clone_file_range() for overlayfs files (Miklos Szeredi) [1485392]
-- [fs] vfs: wire up compat ioctl for CLONE/CLONE_RANGE (Miklos Szeredi) [1485392]
-- [fs] vfs: allow vfs_clone_file_range() across mount points (Miklos Szeredi) [1485392]
-- [fs] Revert "vfs: rename: check backing inode being equal" (Miklos Szeredi) [1485392]
-- [fs] overlayfs: VFS: (Scripted) Convert S_ISLNK/DIR/REG(dentry->d_inode) to d_is_*(dentry) (Miklos Szeredi) [1485392]
-- [fs] overlayfs: Fix setting IOP_XATTR flag (Miklos Szeredi) [1485392]
-- [fs] allow O_TMPFILE to work with O_WRONLY (Carlos Maiolino) [1428677]
-- [fs] autofs - revert: take more care to not update last_used on path walk (Ian Kent) [1489542]
-
-* Wed Dec 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-821.el7]
-- [scsi] qla2xxx: Revert Add FC-NVMe port discovery and PRLI handling (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add FC-NVMe command handling (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add FC-NVMe F/W initialization and transport registration (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Send FC4 type NVMe to the management server (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Use FC-NVMe FC4 type for FDMI registration (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert fix a bunch of typos and spelling mistakes (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert avoid unused-function warning (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Fix NVMe entry_type for iocb packet on BE system (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Cleanup FC-NVMe code (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Move function prototype to correct header (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Added change to enable ZIO for FC-NVMe devices (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Simpify unregistration of FC-NVMe local/remote ports (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Fix remoteport disconnect for FC-NVMe (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert remove use of FC-specific error codes (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add command completion for error path (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Fix WWPN/WWNN in debug message (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert add missing includes for qla_isr (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Clear fc4f_nvme flag (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add support for minimum link speed (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add LR distance support from nvram bit (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Reset the logo flag, after target re-login (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Allow SCSI-MQ to be enabled selectively (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Move #include qla_nvme.h to fix compile errors on RHEL 7 (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Update driver version to 10.00.00.00.07.5-k (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add module param ql2xenablemsix (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Add ATIO-Q processing for INTx mode (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Allow MBC_GET_PORT_DATABASE to query and save the port states (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Changes to support N2N logins (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Use ql2xnvmeenable to enable Q-Pair for FC-NVMe (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Query FC4 type during RSCN processing (Ewan Milne) [1511452]
-- [scsi] qla2xxx: Revert Update driver version to 10.00.00.02.07.5-k (Ewan Milne) [1511452]
-
-* Sat Dec 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-820.el7]
-- [infiniband] ib/hfi1: Fix incorrect available receive user context count (Don Dutile) [1520270 1452831]
-- [infiniband] ib/opa-vnic: used RHEL extended struct for min/max_mtu params (Don Dutile) [1520270 1452831]
-- [infiniband] ib/core: Fix use workqueue without WQ_MEM_RECLAIM (Don Dutile) [1523349]
-- [infiniband] ib/core: Avoid crash on pkey enforcement failed in received MADs (Don Dutile) [1523349]
-- [infiniband] ib/srp: Avoid that a cable pull can trigger a kernel crash (Don Dutile) [1523349]
-- [infiniband] ib/cm: Fix memory corruption in handling CM request (Don Dutile) [1523349]
-- [infiniband] ib/srpt: Do not accept invalid initiator port names (Don Dutile) [1523349]
-- [infiniband] ib/hfi1: Initialize bth1 in 16B rc ack builder (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Allow MgmtAllowed on B2B setups (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Race condition between user notification and driver state (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Allow meta version 4 for platform configuration (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Add parsing for platform configuration format version 4 (Alex Estrin) [1519368]
-- [infiniband] ib/core: Use __be32 for LIDs in opa_is_extended_lid (Alex Estrin) [1519368]
-- [infiniband] ib/core: Do not warn on lid conversions for OPA (Alex Estrin) [1519368]
-- [infiniband] ib/core: Convert OPA AH to IB for Extended LIDs only (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Do not warn on lid conversions for OPA (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Mask out A bit from psn trace (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Eliminate allocation while atomic (Alex Estrin) [1519368]
-- [infiniband] ib/hfi1: Mask upper 16Bits of Extended LID prior to rvt_cq_entry (Alex Estrin) [1519368]
-- [infiniband] ib/rdmavt: Don't wait for resources in QP reset (Alex Estrin) [1519368]
-- [scsi] hpsa: bump driver version to 3.4.20-0-RH2 (Joseph Szczypek) [1516538]
-- [scsi] hpsa: correct logical volume removal (Joseph Szczypek) [1516538]
-- [scsi] hpsa: correct smart path enabled (Joseph Szczypek) [1516538]
-- [scsi] hpsa: change timeout for internal cmds (Joseph Szczypek) [1516538]
-- [nvme] nvme-fc: remove double put reference if admin connect fails (Ewan Milne) [1520954]
-- [char] ipmi: Prefer ACPI system interfaces over SMBIOS ones (Frank Ramsay) [1517935]
-- [x86] Mark Cascade Lake as unsupported (David Arcari) [1519949]
-- [md] fix deadlock error in recent patch (Nigel Croxon) [1506338]
-- [md] raid1: prevent freeze_array/wait_all_barriers deadlock (Nigel Croxon) [1506338]
-- [md] fix test in md_write_start() (Nigel Croxon) [1506338]
-- [md] allow metadata update while suspending (Nigel Croxon) [1506338]
-- [md] use mddev_suspend/resume instead of ->quiesce() (Nigel Croxon) [1506338]
-- [md] move suspend_hi/lo handling into core md code (Nigel Croxon) [1506338]
-- [md] don't call bitmap_create() while array is quiesced (Nigel Croxon) [1506338]
-- [md] always hold reconfig_mutex when calling mddev_suspend() (Nigel Croxon) [1506338]
-- [md] dm-raid: fix a race condition in request handling (Nigel Croxon) [1506338]
-- [md] fix a race condition for flush request handling (Nigel Croxon) [1506338]
-- [md] separate request handling (Nigel Croxon) [1506338]
-- [md] fix deadlock between mddev_suspend() and md_write_start() (Nigel Croxon) [1506338]
-- [md] initialise ->writes_pending in personality modules (Nigel Croxon) [1506338]
-- [md] use per-cpu counter for writes_pending (Nigel Croxon) [1506338]
-- [md] raid5: use md_write_start to count stripes, not bios (Nigel Croxon) [1506338]
-- [md] close a race with setting mddev->in_sync (Nigel Croxon) [1506338]
-- [md] factor out set_in_sync() (Nigel Croxon) [1506338]
-- [md] raid5: don't test ->writes_pending in raid5_remove_disk (Nigel Croxon) [1506338]
-- [md] fix relationship between wait_barrier and allow_barrier (Nigel Croxon) [1506338]
-- [md] mddev->writes_pending is incorrect (Nigel Croxon) [1506338]
-
-* Sat Dec 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-819.el7]
-- [hid] intel-ish-hid: Enable Gemini Lake ish driver (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Enable Cannon Lake ish driver (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: use dev_groups and not dev_attrs for bus_type (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: enable compile testing (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: fix format string for size_t (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: clarify locking in client code (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: fix potential uninitialized data usage (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: constify device_type structure (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc: check FW status to distinguish ISH resume paths (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: format 32-bit integers with X (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: add printf attribute to print_log() (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Remove unneeded linux/miscdevice.h include (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: use pUL for uuid formatting (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Fix potential race condition (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc: use msleep_interrupt() for wait (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc: change timed_wait_for_timeout() to be a function (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc: remove unused macro (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: initialize ts_format.reserved (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: request_irq failure (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Fix driver reinit failure (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Move DMA disable code to new function (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: consolidate ish wake up operation (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: Fix !CONFIG_PM build warning (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: Remove duplicated include from bus.c (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: Use kzalloc instead of kmalloc/memset (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: Convert list_for_each to entry variant (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: use module_pci_driver to simplify the code (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: use list_move_tail instead of list_del/list_add_tail (Gopal Tiwari) [1475903]
-- [hid] maintainers: Add Intel ISH (Gopal Tiwari) [1475903]
-- [hid] hid-sensor-hub: Add ISH quirk (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor-hub: Implement batch mode (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor: Fix unbalanced pm_runtime_enable error (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor: Store restore poll and hysteresis on S3 (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Set default unit of measure for report interval (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor-trigger: Change get poll value function order to avoid sensor properties losing after resume from S3 (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: avoid unused function warning (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: use asynchronous resume (Gopal Tiwari) [1475903]
-- [hid] iio: common: hid-sensors: use tab for indention (Gopal Tiwari) [1475903]
-- [hid] hid-sensor: Fix suspend/resume delay (Gopal Tiwari) [1475903]
-- [hid] hid-sensor-hub: Enhance feature report set API (Gopal Tiwari) [1475903]
-- [hid] hid-sensor-hub: Enhance get feature report API (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Add api to get poll value (Gopal Tiwari) [1475903]
-- [hid] iio: hid_sensor_hub: Common PM functions (Gopal Tiwari) [1475903]
-- [hid] iio: hid_sensor_hub: Fix indio_dev->trig assignment (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Get feature report from sensor hub after changing power state (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Add API to power on/off (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensor-hub: Remove hard coded indexes (Gopal Tiwari) [1475903]
-- [hid] iio: hid-sensors: Fix power and report state (Gopal Tiwari) [1475903]
-- [hid] iio: hid_sensors: fix crash during trigger unregister (Gopal Tiwari) [1475903]
-- [hid] iio: call sensor hub open close function (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ISH HID client driver (Gopal Tiwari) [1475903]
-- [hid] intel-ish-hid: ipc layer (Gopal Tiwari) [1475903]
-- [hid] intel_ish-hid: ISH Transport layer (Gopal Tiwari) [1475903]
-- [hid] documentation: hid: Intel ISH HID document (Gopal Tiwari) [1475903]
-- [hid] sensor: fix attributes in HID sensor interface (Gopal Tiwari) [1475903]
-- [hid] sensor: Custom and Generic sensor support (Gopal Tiwari) [1475903]
-- [gpu] drm/ttm: Always and only destroy bo->ttm_resv in ttm_bo_release_list (Lyude Paul) [1522929]
-- [gpu] drm/amdgpu: reserve root PD while releasing it (Lyude Paul) [1522929]
-- [gpu] dma-buf: make reservation_object_copy_fences rcu save (Lyude Paul) [1522929]
-- [gpu] drm/ttm: fix ttm_bo_cleanup_refs_or_queue once more (Lyude Paul) [1522929]
-- [gpu] drm/i915: avoid division by zero on cnl_calc_wrpll_link (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Do not add an extra page for precaution in the Gen10 LRC size (Rob Clark) [1520639]
-- [gpu] drm/i915: avoid potential uninitialized variable use (Rob Clark) [1520639]
-- [gpu] drm/i915/glk, cnl: Implement WaDisableScalarClockGating (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Add support slice/subslice/eu configs (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Add Gen10 LRC size (Rob Clark) [1520639]
-- [gpu] drm/i915/cnp: display wa #1179: WaHardHangonHotPlug (Rob Clark) [1520639]
-- [gpu] drm/i915: Shrink cnl_ddi_buf_trans (Rob Clark) [1520639]
-- [gpu] drm/i915/cnp: Don't touch other PCH clock gating bits (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Change the macro name to DPLL_CFGCR0_DCO_FRACTION_SHIFT (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Extend WM workaround with IPC for CNL (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaThrottleEUPerfToAvoidTDBackPressure:cnl(pre-prod) (Rob Clark) [1520639]
-- [gpu] drm/i915: Display WA #1133 WaFbcSkipSegments:cnl, glk (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Allow the reg_read ioctl to read the RCS TIMESTAMP register (Rob Clark) [1520639]
-- [gpu] drm/i915/cnp: wa 1181: Fix Backlight issue (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Fix DP max voltage (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Fix DDI hdmi level selection (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Move ddi buf trans related functions up (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Move voltage check into ddi buf trans functions (Rob Clark) [1520639]
-- [gpu] drm/i915: Enable voltage swing before enabling DDI_BUF_CTL (Rob Clark) [1520639]
-- [gpu] drm/i915: Align vswing sequences with old ddi buffer registers (Rob Clark) [1520639]
-- [gpu] drm/i915: decouple gen9 and gen10 dp signal levels (Rob Clark) [1520639]
-- [gpu] drm/i915: Introduce intel_ddi_dp_level (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Avoid ioremap_wc on Cannonlake as well (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaDisableI2mCycleOnWRPort (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WA FtrEnableFastAnisoL1BankingFix (Rob Clark) [1520639]
-- [gpu] drm/i915: Stop using long platform names on clock gating functions (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: don't hardcode DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaForceContextSaveRestoreNonCoherent (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaPushConstantDereferenceHoldDisable (Rob Clark) [1520639]
-- [gpu] drm/i915/cfl: Coffee Lake works on Kaby Lake PCH (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: extract cnl_set_procmon_ref_values (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: simplify cnl_procmon_values handling (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Apply large line width optimization (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: WaDisableEnhancedSBEVertexCaching (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Add WaDisableReplayBufferBankArbitrationOptimization (Rob Clark) [1520639]
-- [gpu] drm/i915/cnl: Introduce initial Cannonlake Workarounds (Rob Clark) [1520639]
-
-* Fri Dec 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-818.el7]
-- [net] ipv6: fib: Provide offload indication using nexthop flags (Ivan Vecera) [1519937]
-- [net] vxlan: fix the issue that neigh proxy blocks all icmpv6 packets (Lorenzo Bianconi) [1512250]
-- [net] netfilter: ipset: Fix allocation size of prefixes storage for hash:net, iface.t sets (Stefano Brivio) [1517397]
-- [net] gso: fix payload length when gso_size is zero (Lorenzo Bianconi) [1503996]
-- [net] ip6_gre: update dst pmtu if dev mtu has been updated by toobig in __gre6_xmit (Paolo Abeni) [1508318]
-- [net] ip6_gre: ip6gre_tap device should keep dst (Paolo Abeni) [1508318]
-- [net] ip_gre: ipgre_tap device should keep dst (Paolo Abeni) [1508318]
-- [net] tun: do not arm flow_gc_timer in tun_flow_init() (Hangbin Liu) [1510281]
-- [net] tun: avoid extra timer schedule in tun_flow_cleanup() (Hangbin Liu) [1510281]
-- [net] tun: do not block BH again in tun_flow_cleanup() (Hangbin Liu) [1510281]
-- [net] tun: Turn tun_flow_init() into void fn (Hangbin Liu) [1510281]
-- [net] route: Use ipv4_mtu instead of raw rt_pmtu (Davide Caratti) [1477041]
-- [net] ipv4: Don't increase PMTU with Datagram Too Big message (Davide Caratti) [1477041]
-- [net] tcp: limit GSO packets to half cwnd (Davide Caratti) [1477041]
-- [net] sched: crash on blocks with goto chain action (Ivan Vecera) [1513639]
-- [net] sched: fix crash when deleting secondary chains (Ivan Vecera) [1513639]
-- [net] cls_u32: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_tcindex: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_rsvp: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_route: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_matchall: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_fw: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_flower: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_flow: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_cgroup: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_bpf: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] cls_basic: use tcf_exts_get_net() before call_rcu() (Ivan Vecera) [1513639]
-- [net] net_sched: introduce tcf_exts_get_net() and tcf_exts_put_net() (Ivan Vecera) [1513639]
-- [net] net_sched: acquire RTNL in tc_action_net_exit() (Ivan Vecera) [1513639]
-- [tools] tc-testing: fix arg to ip command: -s -> -n (Ivan Vecera) [1513639]
-- [net] net_sched: remove tcf_block_put_deferred() (Ivan Vecera) [1513639]
-- [tools] selftests: Introduce a new test case to tc testsuite (Ivan Vecera) [1513639]
-- [tools] selftests: Introduce a new script to generate tc batch file (Ivan Vecera) [1513639]
-- [tools] tc-testing: add test for testing ife type (Ivan Vecera) [1513639]
-- [tools] selftests: Introduce tc testsuite (Ivan Vecera) [1513639]
-- [net] net_sched: fix call_rcu() race on act_sample module removal (Ivan Vecera) [1513639]
-- [net] net_sched: add rtnl assertion to tcf_exts_destroy() (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in tcindex filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in rsvp filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in route filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in u32 filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in matchall filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in fw filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in flower filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in flow filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in cgroup filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in bpf filter (Ivan Vecera) [1513639]
-- [net] net_sched: use tcf_queue_work() in basic filter (Ivan Vecera) [1513639]
-- [net] net_sched: introduce a workqueue for RCU callbacks of tc filter (Ivan Vecera) [1513639]
-- [net] vsock: add sock_diag interface (Stefano Brivio) [1470203]
-
-* Fri Dec 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-817.el7]
-- [mm] devm_memremap_pages: use multi-order radix for ZONE_DEVICE lookups (Jeff Moyer) [1489187]
-- [nvdimm] libnvdimm: fix SMART Health DSM payload definition (Jeff Moyer) [1457571]
-- [nvdimm] libnvdimm, namespace: fix btt claim class crash (Jeff Moyer) [1493833]
-- [nvdimm] libnvdimm, btt: fix format string warnings (Jeff Moyer) [1493833]
-- [nvdimm] libnvdimm, nfit: move the check on nd_reserved2 to the endpoint (Jeff Moyer) [1455961]
-- [acpi] libnvdimm, nfit: export an 'ecc_unit_size' sysfs attribute (Jeff Moyer) [1489186]
-- [nvdimm] libnvdimm, btt: check memory allocation failure (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm, label: fix index block size calculation (Jeff Moyer) [1457567]
-- [acpi] nfit: Fix COMPLETION_INITIALIZER_ONSTACK() abuse (Jeff Moyer) [1455958]
-- [nvdimm] libnvdimm, pfn, dax: limit namespace alignments to the supported set (Jeff Moyer) [1472049]
-- [nvdimm] libnvdimm, pfn, dax: show supported dax/pfn region alignments in sysfs (Jeff Moyer) [1472049]
-- [nvdimm] libnvdimm: rename nd_sector_size_{show, store} to nd_size_select_{show, store} (Jeff Moyer) [1472049]
-- [acpi] nfit: cleanup long de-reference chains in acpi_nfit_init_interleave_set (Jeff Moyer) [1471684]
-- [nvdimm] nfit, libnvdimm, region: export 'position' in mapping info (Jeff Moyer) [1508785]
-- [nvdimm] libnvdimm, btt: clean up warning and error messages (Jeff Moyer) [1493833]
-- [nvdimm] libnvdimm: fix integer overflow static analysis warning (Jeff Moyer) [1457567]
-- [dax] convert to bitmask for flags (Jeff Moyer) [1457555]
-- [kernel] dax, pmem: introduce an optional 'flush' dax_operation (Jeff Moyer) [1457556]
-- [nvdimm] libnvdimm, btt: rework error clearing (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm: fix potential deadlock while clearing errors (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm, btt: cache sector_size in arena_info (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm, btt: ensure that flags were also unchanged during a map_read (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm, btt: refactor map entry operations with macros (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm, btt: fix a missed NVDIMM_IO_ATOMIC case in the write path (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm: fix the clear-error check in nsio_rw_bytes (Jeff Moyer) [1471792]
-- [nvdimm] libnvdimm, btt: fix btt_rw_page not returning errors (Jeff Moyer) [1471795]
-- [nvdimm] acpi, nfit: quiet invalid block-aperture-region warnings (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, btt: BTT updates for UEFI 2.7 format (Jeff Moyer) [1472028 1457567]
-- [nvdimm] libnvdimm, nfit: enable support for volatile ranges (Jeff Moyer) [1455961]
-- [nvdimm] libnvdimm, pmem: fix persistence warning (Jeff Moyer) [1465367]
-- [nvdimm] libnvdimm: Stop using HPAGE_SIZE (Jeff Moyer) [1472049]
-- [dax] device-dax: fix 'passing zero to ERR_PTR()' warning (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm: fix badblock range handling of ARS range (Jeff Moyer) [1475473 1492054]
-- [nvdimm] libnvdimm, namespace: record 'lbasize' for pmem namespaces (Jeff Moyer) [1457567]
-- [nvdimm] acpi/nfit: Issue Start ARS to retrieve existing records (Jeff Moyer) [1457571]
-- [nvdimm] libnvdimm: New ACPI 6.2 DSM functions (Jeff Moyer) [1508785]
-- [acpi] nfit: Show bus_dsm_mask in sysfs (Jeff Moyer) [1508785]
-- [nvdimm] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru (Jeff Moyer) [1508785]
-- [nvdimm] acpi, nfit: Enable DSM pass thru for root functions (Jeff Moyer) [1508785]
-- [nvdimm] libnvdimm: passthru functions clear to send (Jeff Moyer) [1508785]
-- [nvdimm] libnvdimm, btt: convert some info messages to warn/err (Jeff Moyer) [1493833]
-- [nvdimm] libnvdimm, region, pmem: fix 'badblocks' sysfs_get_dirent() reference lifetime (Jeff Moyer) [1457571]
-- [acpi] nfit: Add support of NVDIMM memory error notification in ACPI 6.2 (Jeff Moyer) [1457571]
-- [nvdimm] libnvdimm, pmem: Add sysfs notifications to badblocks (Jeff Moyer) [1457571]
-- [nvdimm] libnvdimm, label: switch to using v1.2 labels by default (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: add address abstraction identifiers (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: add v1.2 label checksum support (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: update 'nlabel' and 'position' handling for local namespaces (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: populate 'isetcookie' for blk-aperture namespaces (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: populate the type_guid property for v1.2 namespaces (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: honor the lba size specified in v1.2 labels (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: add v1.2 interleave-set-cookie algorithm (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm, label: add v1.2 nvdimm label definitions (Jeff Moyer) [1457567]
-- [kernel] uuid: Take const on input of uuid_is_null() and guid_is_null() (Jeff Moyer) [1457567]
-- [kernel] acpi, nfit: Switch to use new generic UUID API (Jeff Moyer) [1457567]
-- [lib] uuid: hoist uuid_is_null() helper from libnvdimm (Jeff Moyer) [1457567]
-- [lib] uuid: don't export guid_index and uuid_index (Jeff Moyer) [1457567]
-- [lib] uuid: hoist helpers uuid_equal() and uuid_copy() from xfs (Jeff Moyer) [1457567]
-- [fs] xfs: use uuid_be to implement the uuid_t type (Jeff Moyer) [1457567]
-- [fs] xfs: use uuid_copy() helper to abstract uuid_t (Jeff Moyer) [1457567]
-- [lib] uuid: rename uuid types (Jeff Moyer) [1457567]
-- [nvdimm] uuid: remove uuid_be defintions from the uapi header (Jeff Moyer) [1457567]
-- [block] badblocks: fix overlapping check for clearing (Jeff Moyer) [1504042]
-- [block] badblocks: badblocks_set/clear update unacked_exist (Jeff Moyer) [1504042]
-- [dax] device-dax: fix sysfs duplicate warnings (Jeff Moyer) [1492048]
-- [dax] device-dax: fix 'dax' device filesystem inode destruction crash (Jeff Moyer) [1457559]
-- [acpi] nfit: Fix the memory error check in nfit_handle_mce() (Jeff Moyer) [1471692]
-- [x86] mce: Export memory_error() (Jeff Moyer) [1471692]
-- [dax] fix false CONFIG_BLOCK dependency (Jeff Moyer) [1457559]
-- [fs] filesystem-dax: fix broken __dax_zero_page_range() conversion (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm, btt: ensure that initializing metadata clears poison (Jeff Moyer) [1472053]
-- [nvdimm] libnvdimm: add an atomic vs process context flag to rw_bytes (Jeff Moyer) [1472053]
-- [dax] device-dax: kill NR_DEV_DAX (Jeff Moyer) [1457559]
-- [kernel] block, dax: move "select DAX" from BLOCK to FS_DAX (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm, pfn: fix 'npfns' vs section alignment (Jeff Moyer) [1472049]
-- [nvdimm] libnvdimm: handle locked label storage areas (Jeff Moyer) [1457557]
-- [nvdimm] libnvdimm: convert NDD_ flags to use bitops, introduce NDD_LOCKED (Jeff Moyer) [1457557]
-- [fs] block, dax: use correct format string in bdev_dax_supported (Jeff Moyer) [1457559]
-- [dax] device-dax: fix sysfs attribute deadlock (Jeff Moyer) [1472044]
-- [nvdimm] libnvdimm: restore "libnvdimm: band aid btt vs clear poison locking" (Jeff Moyer) [1472053]
-- [nvdimm] libnvdimm: fix nvdimm_bus_lock() vs device_lock() ordering (Jeff Moyer) [1472042]
-- [nvdimm] libnvdimm: rework region badblocks clearing (Jeff Moyer) [1457560]
-- [nvdimm] libnvdimm: fix clear poison locking with spinlock and GFP_NOWAIT allocation (Jeff Moyer) [1472053]
-- [acpi] nfit: kill ACPI_NFIT_DEBUG (Jeff Moyer) [1457567]
-- [nvdimm] libnvdimm: fix clear length of nvdimm_forget_poison() (Jeff Moyer) [1457560]
-- [nvdimm] libnvdimm: add support for clear poison list and badblocks for device dax (Jeff Moyer) [1457560]
-- [nvdimm] libnvdimm, pmem: fix a NULL pointer BUG in nd_pmem_notify (Jeff Moyer) [1472038]
-- [nvdimm] libnvdimm, region: sysfs trigger for nvdimm_flush() (Jeff Moyer) [1457556]
-- [nvdimm] libnvdimm: Add 'resource' sysfs attribute to regions (Jeff Moyer) [1457560]
-- [nvdimm] libnvdimm: add mechanism to publish badblocks at the region level (Jeff Moyer) [1457560]
-- [block] hide badblocks attribute by default (Jeff Moyer) [1471822]
-- [nvdimm] libnvdimm: fix phys_addr for nvdimm_clear_poison (Jeff Moyer) [1457560]
-- [kernel] x86, dax, pmem: remove indirection around memcpy_from_pmem() (Jeff Moyer) [1457559]
-- [kernel] block: remove block_device_operations ->direct_access() (Jeff Moyer) [1457559]
-- [kernel] block, dax: convert bdev_dax_supported() to dax_direct_access() (Jeff Moyer) [1457559]
-- [kernel] filesystem-dax: convert to dax_direct_access() (Jeff Moyer) [1457559]
-- [kernel] ext2, ext4, xfs: retrieve dax_device for iomap operations (Jeff Moyer) [1457559]
-- [kernel] dm: teach dm-targets to use a dax_device + dax_operations (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm, region: fix flush hint detection crash (Jeff Moyer) [1457559]
-- [kernel] dm: add dax_device and dax_operations support (Jeff Moyer) [1457559]
-- [md] dm: introduce upstream's cleanup_mapped_device() (Mike Snitzer) [1457559]
-- [kernel] dax: introduce dax_direct_access() (Jeff Moyer) [1457559]
-- [s390] dcssblk: add dax_operations support (Jeff Moyer) [1457559]
-- [block] brd: fix uninitialized use of brd->dax_dev (Jeff Moyer) [1457559]
-- [block] brd: add dax_operations support (Jeff Moyer) [1457559]
-- [powerpc] axon_ram: add dax_operations support (Jeff Moyer) [1457559]
-- [tools] pmem: add dax_operations support (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm: use devm_add_action_or_reset() (Jeff Moyer) [1457559]
-- [nvdimm] dax: introduce dax_operations (Jeff Moyer) [1457559]
-- [nvdimm] dax: add a facility to lookup a dax device by 'host' device name (Jeff Moyer) [1457559]
-- [x86] mce: Make the MCE notifier a blocking one (Jeff Moyer) [1471692]
-- [tools] acpi, nfit: fix module unload vs workqueue shutdown race (Jeff Moyer) [1472037]
-- [acpi] nfit: limit ->flush_probe() to initialization work (Jeff Moyer) [1472037]
-- [acpi] nfit: collate health state flags (Jeff Moyer) [1457555]
-- [acpi] nfit: support "map failed" dimms (Jeff Moyer) [1457555]
-- [acpi] nfit: add support for acpi 6.1 dimm state flags (Jeff Moyer) [1457555]
-- [acpi] nfit: remove unnecessary newline (Jeff Moyer) [1455958]
-- [acpi] nfit: allow specifying a default DSM family (Jeff Moyer) [1455958]
-- [acpi] nfit: allow override of built-in bitmasks for nvdimm DSMs (Jeff Moyer) [1455958]
-- [acpi] nfit, libnvdimm: fix interleave set cookie calculation (64-bit comparison) (Jeff Moyer) [1471684]
-- [nvdimm] nfit, libnvdimm: fix interleave set cookie calculation (Jeff Moyer) [1471684]
-- [tools] testing/nvdimm: test acpi 6.1 health state flags (Jeff Moyer) [1457555]
-- [tools] testing/nvdimm: dynamic label support (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: add manufacturing_{date|location} dimm properties (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: add virtual ramdisk range (Jeff Moyer) [1375501]
-- [tools] testing/nvdimm: test get_config_size DSM failures (Jeff Moyer) [1375501]
-- [nvdimm] revert "libnvdimm: band aid btt vs clear poison locking" (Jeff Moyer) [1472053]
-- [tools] dax: refactor dax-fs into a generic provider of 'struct dax_device' instances (Jeff Moyer) [1457559]
-- [dax] device-dax: rename 'dax_dev' to 'dev_dax' (Jeff Moyer) [1457559]
-- [dax] device-dax: improve fault handler debug output (Jeff Moyer) [1457559]
-- [tools] device-dax, tools/testing/nvdimm: enable device-dax with mock resources (Jeff Moyer) [1457559]
-- [nvdimm] libnvdimm: band aid btt vs clear poison locking (Jeff Moyer) [1465372]
-- [nvdimm] libnvdimm: fix reconfig_mutex, mmap_sem, and jbd2_handle lockdep splat (Jeff Moyer) [1471676]
-- [nvdimm] libnvdimm: fix blk free space accounting (Jeff Moyer) [1471683]
-- [dax] device-dax: utilize new cdev_device_add helper function (Jeff Moyer) [1457559]
-- [dax] device-dax: fix cdev leak (Jeff Moyer) [1457559]
-- [edac] x86/ras, edac, acpi: Assign MCE notifier handlers a priority (Jeff Moyer) [1471692]
-- [x86] mce: Dump MCE to dmesg if no consumers (Jeff Moyer) [1471692]
-
-* Fri Dec 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-816.el7]
-- [input] Fix device_rh memory leak (Prarit Bhargava) [1510344]
-- [gpu] drm/i915/gvt: Add support for PCIe extended configuration space (Paul Lai) [1458032]
-- [gpu] drm/i915/gvt: Add emulation for BAR2 (aperture) with normal file RW approach (Paul Lai) [1458032]
-- [gpu] drm/i915/kvmgt: Sanitize PCI bar emulation (Paul Lai) [1458032]
-- [pci] Move config space size macros to pci_regs.h (Paul Lai) [1458032]
-- [kernel] memremap: don't modify flags (Paul Lai) [1458032]
-- [virt] kvm: eventfd: fix NULL deref irqbypass consumer (Radim Krcmar) [1417618]
-- [net] vsock: fix outdated sk_state value in hvs_release() (Cathy Avery) [1505839]
-- [hv] hv_sock: add locking in the open/close/release code paths (Cathy Avery) [1505839]
-- [hv] vmbus: hvsock: add proper sync for vmbus_hvsock_device_unregister() (Cathy Avery) [1505839]
-- [mm] revert "memcontrol: fix cgroup creation failure after many small jobs" (Rafael Aquini) [1510790]
-- [mm] revert "cgroup: kill css_id" (Rafael Aquini) [1510790]
-- [fs] ext4: fix fault handling when mounted with -o dax,ro (Eric Sandeen) [1488468]
-- [s390] disassembler: increase show_code buffer size (Hendrik Brueckner) [1516667]
-- [s390] disassembler: add missing end marker for e7 table (Hendrik Brueckner) [1520837]
-- [s390] qeth: unbreak OSM and OSN support (Hendrik Brueckner) [1519447]
-- [s390] qeth: handle sysfs error during initialization (Hendrik Brueckner) [1519447]
-- [netdrv] mlxsw: spectrum: Fix error return code in mlxsw_sp_port_create() (Ivan Vecera) [1521069]
-- [netdrv] mlxsw: spectrum_router: Configure TIGCR on init (Ivan Vecera) [1521069]
-- [netdrv] mlxsw: reg: Add Tunneling IPinIP General Configuration Register (Ivan Vecera) [1521069]
-- [netdrv] mlxsw: core: Fix possible deadlock (Ivan Vecera) [1521069]
-- [netdrv] nfp: inherit the max_mtu from the PF netdev (John Linville) [1515619]
-- [netdrv] nfp: fix flower offload metadata flag usage (John Linville) [1518327]
-- [netdrv] nfp: refuse offloading filters that redirects to upper devices (John Linville) [1519464]
-- [netdrv] nfp: handle page allocation failures (John Linville) [1519464]
-- [netdrv] nfp: fix ethtool stats gather retry (John Linville) [1519464]
-- [netdrv] nfp: add whitelist of supported flow dissector (John Linville) [1519464]
-- [powerpc] kvm: ppc: book3s hv: Fix use after free in case of multiple resize requests (Serhii Popovych) [1516238]
-- [powerpc] kvm: ppc: book3s hv: Drop prepare_done from struct kvm_resize_hpt (Serhii Popovych) [1516238]
-- [powerpc] kvm: ppc: book3s hv: Check for kmalloc errors in ioctl (Serhii Popovych) [1516238]
-- [infiniband] rdma/bnxt_re: Set QP state in case of response completion errors (Jonathan Toppins) [1516610]
-- [infiniband] rdma/bnxt_re: Flush CQ notification Work Queue before destroying QP (Jonathan Toppins) [1516610]
-- [infiniband] rdma/bnxt_re: synchronize poll_cq and req_notify_cq verbs (Jonathan Toppins) [1516610]
-- [infiniband] bnxt_re: fix a crash in qp error event processing (Jonathan Toppins) [1515709]
-- [infiniband] bnxt_re: changing the ip address shouldn't affect new connections (Jonathan Toppins) [1515770]
-- [infiniband] rdma/bnxt_re: Add memory barriers when processing CQ/EQ entries (Jonathan Toppins) [1515777]
-
-* Thu Dec 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-815.el7]
-- [netdrv] mlx5e: IPoIB, Modify rdma netdev allocate and free to support PKEY (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Add PKEY child interface ethtool ops (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Add PKEY child interface ndos (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Add PKEY child interface nic profile (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Use hash-table to map between QPN to child netdev (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Support for setting PKEY index to underlay QP (Kamal Heib) [1517570 1456694]
-- [netdrv] ib/ipoib: Add ability to set PKEY index to lower device driver (Kamal Heib) [1517570 1456694]
-- [netdrv] ib/ipoib: Grab rtnl lock on heavy flush when calling ndo_open/stop (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5: Support for attaching multiple underlay QPs to root flow table (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5e: IPoIB, Move underlay QP init/uninit to separate functions (Kamal Heib) [1517570 1456694]
-- [netdrv] mlx5: PTP code migration to driver core section (Kamal Heib) [1456694]
-- [netdrv] mlx5: File renaming towards ptp core implementation (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add FGs and FTEs memory pool (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Allocate FTE object without lock (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Support multiple updates of steering rules in parallel (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Replace fs_node mutex with reader/writer semaphore (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Refactor FTE and FG creation code (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Export building of matched flow groups list (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Move the entry index allocator to flow group (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Avoid NULL pointer dereference on steering cleanup (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5: Fix creating a new FTE when an existing but full FTE exists (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Increase Striding RQ minimum size limit to 4 multi-packet WQEs (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Set page to null in case dma mapping fails (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix napi poll with zero budget (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Stop NAPI when irq balancer changes affinity (Kamal Heib) [1456694]
-- [netdrv] mlx5: Cancel health poll before sending panic teardown command (Kamal Heib) [1456694]
-- [netdrv] mlx5: Loop over temp list to release delay events (Kamal Heib) [1456694]
-- [netdrv] mlx5e/core/en_fs: fix pointer dereference after free in mlx5e_execute_l2_action (Kamal Heib) [1456694]
-- [netdrv] mlx5e: DCBNL, Implement tc with ets type and zero bandwidth (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Properly deal with encap flows add/del under neigh update (Kamal Heib) [1456694]
-- [netdrv] mlx5: Delay events till mlx5 interface's add complete for pci resume (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix health work queue spin lock to IRQ safe (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix wrong indentation in enable SRIOV code (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix static checker warning on steering tracepoints code (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix calculated checksum offloads counters (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Don't add/remove 802.1ad rules when changing 802.1Q VLAN filter (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Print netdev features correctly in error message (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Check encap entry state when offloading tunneled flows (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Disallow TC offloading of unsupported match/action combinations (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix erroneous freeing of encap header buffer (Kamal Heib) [1456694]
-- [netdrv] mlx5: Check device capability for maximum flow counters (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix FPGA capability location (Kamal Heib) [1456694]
-- [netdrv] mlx5e: IPoIB, Fix access to invalid memory address (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Distribute RSS table among all RX rings (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use kernel's mechanism to avoid missing NAPIs (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Slightly increase RX page-cache size (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Don't recycle page if moved to far NUMA (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Remove unnecessary fields in ICO SQ (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Type-specific optimizations for RX post WQEs function (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Non-atomic RQ state indicator for UMR WQE in progress (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Non-atomic indicator for ring enabled state (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Refactor data-path lro header function (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Early-return on empty completion queues (Kamal Heib) [1456694]
-- [netdrv] mlx5e: NAPI busy-poll when UMR post is in progress (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Small enhancements for RX MPWQE allocation and free (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use memset to init skbs_frags array to zeros (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Remove unnecessary wqe_sz field from RQ buffer (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Replace multiplication by stride size with a shift (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Reorganize struct mlx5e_rq (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Support RSS for GRE tunneled packets (Kamal Heib) [1467198 1456694]
-- [netdrv] mlx5e: Support TSO and TX checksum offloads for GRE tunnels (Kamal Heib) [1467198 1456694]
-- [netdrv] mlx5e: Use IP version matching to classify IP traffic (Kamal Heib) [1467198 1456694]
-- [netdrv] mlx5e: make mlx5e_profile const (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add tracepoints (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add hash table for flow groups in flow table (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add hash table to search FTEs in a flow-group (Kamal Heib) [1456694]
-- [netdrv] mlx5: Don't store reserved part in FTEs and FGs (Kamal Heib) [1456694]
-- [netdrv] mlx5: Convert linear search for free index to ida (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix wrong code indentation in conditional statement (Kamal Heib) [1456694]
-- [netdrv] mlx5: Remove a leftover unused variable (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add a blank line after declarations V2 (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use size_t to store byte offset in statistics descriptors (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use kernel types instead of uint*_t in ethtool callbacks (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Place constants on the right side of comparisons (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Avoid using multiple blank lines (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Properly indent within conditional statements (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add a blank line after declarations (Kamal Heib) [1456694]
-- [netdrv] mlx5: Avoid blank lines after/before open/close brace (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add outbound PCI buffer overflow counter (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5e: Add RX buffer fullness counters (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5: Add RX buffer fullness counters infrastructure (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5e: Add PCIe outbound stalls counters (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5: Add PCIe outbound stalls counters infrastructure (Kamal Heib) [1385322 1456694]
-- [netdrv] mlx5e: IPoIB, Add support for get_link_ksettings in ethtool (Kamal Heib) [1456694]
-- [netdrv] mlx5e: IPoIB, Fix driver name retrieved by ethtool (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Send PAOS command on interface up/down (Kamal Heib) [1456694]
-- [netdrv] mlx5: ensure 0 is returned when vport is zero (Kamal Heib) [1456694]
-- [netdrv] mlx5: remove unnecessary pci_set_drvdata() (Kamal Heib) [1456694]
-- [netdrv] mlx5: Increase the maximum flow counters supported (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix counter list hardware structure (Kamal Heib) [1456694]
-- [netdrv] mlx5: Delay events till ib registration ends (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add CONFIG_MLX5_ESWITCH Kconfig (Kamal Heib) [1456694]
-- [netdrv] mlx5: Separate between E-Switch and MPFS (Kamal Heib) [1456694]
-- [netdrv] mlx5: Unify vport manager capability check (Kamal Heib) [1456694]
-- [netdrv] mlx5e: NIC netdev init flow cleanup (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Rearrange netdevice ops structures (Kamal Heib) [1456694]
-- [netdrv] mlx5: fix spelling mistake: "alloated" -> "allocated" (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Enable local loopback in loopback selftest (Kamal Heib) [1456684 1456694]
-- [netdrv] mlx5e: Fix CQ moderation mode not set properly (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix inline header size for small packets (Kamal Heib) [1456694]
-- [netdrv] mlx5: E-Switch, Unload the representors in the correct order (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Properly resolve TC offloaded ipv6 vxlan tunnel source address (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Don't override user RSS upon set channels (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix dangling page pointer on DMA mapping error (Kamal Heib) [1456694]
-- [netdrv] mlx5: Remove the flag MLX5_INTERFACE_STATE_SHUTDOWN (Kamal Heib) [1456694]
-- [netdrv] mlx5: Skip mlx5_unload_one if mlx5_load_one fails (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix arm SRQ command for ISSI version 0 (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix DCB_CAP_ATTR_DCBX capability for DCBNL getcap (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Check for qos capability in dcbnl_initialize (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix mlx5_add_flow_rules call with correct num of dests (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Schedule overflow check work to mlx5e workqueue (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix wrong delay calculation for overflow check scheduling (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add missing support for PTP_CLK_REQ_PPS request (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Change 1PPS out scheme (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix broken disable 1PPS flow (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add field select to MTPPS register (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix mlx5_ifc_mtpps_reg_bits structure size (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix outer_header_zero() check size (Kamal Heib) [1456694]
-- [netdrv] mlx5e: IPoIB, Modify add/remove underlay QPN flows (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix command bad flow on command entry allocation failure (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix command completion after timeout access invalid structure (Kamal Heib) [1456694]
-- [netdrv] mlx5: Consider tx_enabled in all modes on remap (Kamal Heib) [1456694]
-- [netdrv] mlx5: Clean SRIOV eswitch resources upon VF creation failure (Kamal Heib) [1456694]
-- [netdrv] mlx5: IPSec, fix 64-bit division correctly (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5e: Initialize CEE's getpermhwaddr address buffer to 0xff (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add Makefiles for subdirectories (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Build wq.o even if MLX5_CORE_EN is not selected (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Fix datatype mismatch (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, make mlx5_fpga_device_brb static (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: IPSec, Fix 64-bit division on 32-bit builds (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Add missing include in lib/gid.c (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: fix memcpy limit? (Kamal Heib) [1456694]
-- [netdrv] mlx5: fix spelling mistake: "Allodating" -> "Allocating" (Kamal Heib) [1456694]
-- [netdrv] mlx5e: IPSec, Add IPSec ethtool stats (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5e: IPSec, Add Innova IPSec offload TX data path (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5e: IPSec, Add Innova IPSec offload RX data path (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Accel, Add IPSec acceleration interface (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Add SBU infrastructure (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Add SBU bypass and reset flows (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Add high-speed connection routines (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Add FW commands for FPGA QPs (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: FPGA, Move FPGA init/cleanup to init_once (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Add QP WQ support (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Make get_cqe routine not ethernet-specific (Kamal Heib) [1456677 1456694]
-- [netdrv] ib/mlx5: Respect mlx5_core reserved GIDs (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Add support for multiple RoCE enable (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Add reserved-gids support (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5: Set interface flags before cleanup in unload_one (Kamal Heib) [1456677 1456694]
-- [netdrv] mlx5e: Fix TX carrier errors report in get stats ndo (Kamal Heib) [1456694]
-- [netdrv] mlx5: Cancel delayed recovery work when unloading the driver (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix driver load error flow when firmware is stuck (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use device ID defines (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix offset of hca cap reserved field (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add header re-write offloading of IPv6 hop-limit (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Use macro for TC header re-write offload field mapping (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Offload TC matching on ip ttl (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Relocate the TC match on ip tos offload code section (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Introduce RX Page-Reuse (Kamal Heib) [1460489 1456694]
-- [netdrv] mlx5e: Enhance RX SKB headroom logic (Kamal Heib) [1460489 1456694]
-- [netdrv] mlx5e: Build SKB with exact frag_size (Kamal Heib) [1460489 1456694]
-- [netdrv] mlx5e: Support bpf_xdp_adjust_head() (Kamal Heib) [1456694]
-- [netdrv] mlx5: Add fast unload support in shutdown flow (Kamal Heib) [1456670 1456694]
-- [netdrv] mlx5: Expose command polling interface (Kamal Heib) [1456670 1456694]
-- [netdrv] mlx5e: Optimize update stats work (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Move and optimize query out of buffer function (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Reduce number of heap allocated buffers for update stats (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Rename physical symbol errors counter (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fix typo in warning if CQ moderation is not supported (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Use function to map aRFS into traffic type (Kamal Heib) [1456694]
-- [netdrv] mlx5: Undo LAG upon request to create virtual functions (Kamal Heib) [1456694]
-- [netdrv] mlx5: Avoid space after casting (Kamal Heib) [1456694]
-- [netdrv] mlx5: Align to match opening parenthesis (Kamal Heib) [1456694]
-- [netdrv] mlx5: Avoid blank lines before/after closing/opening braces (Kamal Heib) [1456694]
-- [netdrv] mlx5: Avoid using multiple blank lines (Kamal Heib) [1456694]
-- [netdrv] mlx5: Fix some spelling mistakes (Kamal Heib) [1456694]
-- [netdrv] mlx5: Update eqe_type_str() event names (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Fill advertised and supported port data from Hardware info (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Add support for reading connector type from PTYS (Kamal Heib) [1456694]
-- [netdrv] mlx5: Update flow table commands layout (Kamal Heib) [1456694]
-- [netdrv] mlx5e: Support header re-write of partial fields in TC pedit offload (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Use modify header ID cache for offloaded TC NIC flows (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Use modify header ID cache for offloaded TC E-Switch flows (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Add cache for HW modify header IDs (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Use short attribute form when adding/deleting offloaded TC flows (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Offload TC matching on ip tos / traffic-class (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Offload TC matching on tcp flags (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Remove TC header re-write offloading of ip tos (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Fix warnings around parsing of TC pedit actions (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Properly enforce disallowing of partial field re-write offload (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Allow TC csum offload if applied together with pedit action (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Add offloading of NIC TC pedit (header re-write) actions (Kamal Heib) [1456687 1456694]
-- [netdrv] mlx5e: Add parsing of TC pedit actions to HW format (Kamal Heib) [1456687 1456694]
-
-* Thu Dec 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-814.el7]
-- [i2c] introduce helper function to get 8 bit address from a message (Gopal Tiwari) [1456705]
-- [i2c] add a flag to mark clients as slaves (Gopal Tiwari) [1456705]
-- [i2c] acpi / scan: fix enumeration (visited) flags for bus rescans (Gopal Tiwari) [1456705]
-- [i2c] acpi: add support for ACPI reconfiguration notifiers (Gopal Tiwari) [1456705]
-- [i2c] acpi / pm: allow child devices to ignore parent power state (Gopal Tiwari) [1456705]
-- [i2c] designware: Find bus speed from ACPI (Gopal Tiwari) [1456705]
-- [i2c] acpi / pm: Make messages in acpi_device_set_power() print device names (Gopal Tiwari) [1456705]
-- [i2c] designware: Enable high speed mode (Gopal Tiwari) [1456705]
-- [i2c] designware: set the common config before the if else (Gopal Tiwari) [1456705]
-- [i2c] designware: Enable fast mode plus (Gopal Tiwari) [1456705]
-- [i2c] designware: get fast plus and high speed *CNT configuration (Gopal Tiwari) [1456705]
-- [i2c] designware: Move clk_freq into struct dw_i2c_dev (Gopal Tiwari) [1456705]
-- [i2c] designware-pci: Make bus number allocation robust (Gopal Tiwari) [1456705]
-- [i2c] designware: Do not calculate SCL timing parameters needlessly (Gopal Tiwari) [1456705]
-- [i2c] core: fix NULL pointer dereference under race condition (Gopal Tiwari) [1456705]
-- [i2c] export i2c_adapter_depth() (Gopal Tiwari) [1456705]
-- [i2c] core: Add function for finding the bus speed from ACPI, take 2 (Gopal Tiwari) [1456705]
-- [i2c] core: Cleanup I2C ACPI namespace, take 2 (Gopal Tiwari) [1456705]
-- [i2c] use pr_fmt in the core (Gopal Tiwari) [1456705]
-- [i2c] print more info when acpi_i2c_space_handler() fails (Gopal Tiwari) [1456705]
-- [i2c] add error message when obtaining idr fails (Gopal Tiwari) [1456705]
-- [i2c] improve error messages in i2c_register_adapter() (Gopal Tiwari) [1456705]
-- [i2c] cleanup i2c_register_adapter() by refactoring recovery init (Gopal Tiwari) [1456705]
-- [i2c] free idr when sanity checks in i2c_register_adapter() fail (Gopal Tiwari) [1456705]
-- [i2c] i2c / acpi: add support for ACPI reconfigure notifications (Gopal Tiwari) [1456705]
-- [i2c] Add generic support passing secondary devices addresses (Gopal Tiwari) [1456705]
-- [i2c] only check scl functions when using generic recovery (Gopal Tiwari) [1456705]
-- [i2c] allow adapter drivers to override the adapter locking (Gopal Tiwari) [1456705]
-- [i2c] let I2C masters ignore their children for PM (Gopal Tiwari) [1456705]
-- [i2c] core: use new 8 bit address helper function (Gopal Tiwari) [1456705]
-- [i2c] immediately mark ourselves as registered (Gopal Tiwari) [1456705]
-- [i2c] do not use internal data from driver core (Gopal Tiwari) [1456705]
-- [i2c] always enable RuntimePM for the adapter device (Gopal Tiwari) [1456705]
-- [i2c] i2c / acpi: Rework I2C device scanning (Gopal Tiwari) [1456705]
-- [i2c] core: Add support for best effort block read emulation (Gopal Tiwari) [1456705]
-- [i2c] slave: print warning if slave flag not set (Gopal Tiwari) [1456705]
-- [i2c] support 10 bit and slave addresses in sysfs 'new_device' (Gopal Tiwari) [1456705]
-- [i2c] take address space into account when checking for used addresses (Gopal Tiwari) [1456705]
-- [i2c] make address check indpendent from client struct (Gopal Tiwari) [1456705]
-- [i2c] rename address check functions (Gopal Tiwari) [1456705]
-- [i2c] apply address offset for slaves, too (Gopal Tiwari) [1456705]
-- [i2c] core: add and export of_get_i2c_adapter_by_node() interface (Gopal Tiwari) [1456705]
-- [i2c] core: manage i2c bus device refcount in i2c_[get|put]_adapter (Gopal Tiwari) [1456705]
-- [i2c] fix leaked device refcount on of_find_i2c_* error path (Gopal Tiwari) [1456705]
-- [i2c] core: only use set_scl for bus recovery after calling prepare_recovery (Gopal Tiwari) [1456705]
-- [i2c] core: Reduce stack size of acpi_i2c_space_handler() (Gopal Tiwari) [1456705]
-- [i2c] core: fix typo in comment (Gopal Tiwari) [1456705]
-- [i2c] check for proper length of the reg property (Gopal Tiwari) [1456705]
-- [i2c] slave: add error messages to slave core (Gopal Tiwari) [1456705]
-- [i2c] Mark adapter devices with pm_runtime_no_callbacks (Gopal Tiwari) [1456705]
-- [i2c] core: Export bus recovery functions (Gopal Tiwari) [1456705]
-- [i2c] change input parameter to i2c_adapter for prepare/unprepare_recovery (Gopal Tiwari) [1456705]
-- [i2c] clarify comments about the dev_released completion (Gopal Tiwari) [1456705]
-- [i2c] Only include slave support if selected (Gopal Tiwari) [1456705]
-- [i2c] do not try to load modules for of-registered devices (Gopal Tiwari) [1456705]
-- [i2c] simplify boilerplate code for attribute groups (Gopal Tiwari) [1456705]
-- [i2c] acpi: Pick the first address if device has multiple (Gopal Tiwari) [1456705]
-- [i2c] Remove support for legacy PM (Gopal Tiwari) [1456705]
-- [i2c] core changes for slave support (Gopal Tiwari) [1456705]
-- [i2c] acpi: remove unneeded variable initialization (Gopal Tiwari) [1456705]
-- [i2c] acpi: Fix NULL Pointer dereference (Gopal Tiwari) [1456705]
-- [i2c] move acpi code back into the core (Gopal Tiwari) [1456705]
-- [i2c] add debug info when class instantiation was dropped (Gopal Tiwari) [1456705]
-- [i2c] acpi: Clean up I2C ACPI code and Add CONFIG_I2C_ACPI config (Gopal Tiwari) [1456705]
-- [i2c] acpi: Add i2c ACPI operation region support (Gopal Tiwari) [1456705]
-- [i2c] Add message transfer tracepoints for SMBUS [ver #2] (Gopal Tiwari) [1456705]
-- [i2c] Add message transfer tracepoints for I2C (Gopal Tiwari) [1456705]
-- [i2c] add deprecation warning for class based instantiation (Gopal Tiwari) [1456705]
-- [i2c] Use stable dev_name for ACPI enumerated I2C slaves (Gopal Tiwari) [1456705]
-- [i2c] attach/detach I2C client device to the ACPI power domain (Gopal Tiwari) [1456705]
-- [i2c] Not all adapters have a parent (Gopal Tiwari) [1456705]
-- [i2c] Remove redundant 'driver' field from the i2c_client struct (Gopal Tiwari) [1456705]
-- [i2c] dt: describe generic bindings (Gopal Tiwari) [1456705]
-- [i2c] documentation: i2c: describe the new slave mode (Gopal Tiwari) [1456705]
-- [i2c] media: core: Don't use i2c_client->driver (Gopal Tiwari) [1456705]
-
-* Thu Dec 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-813.el7]
-- [scsi] cxlflash: Fix vlun resize failure in the shrink path (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Avoid double mutex unlock (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove unnecessary existence check (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fix an error handling path in 'cxlflash_disk_attach()' (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: return -EFAULT if copy_from_user() fails (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update debug prints in reset handlers (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update send_tmf() parameters (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Avoid double free of character device (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update TMF command processing (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove zeroing of private command data (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support WS16 unmap (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support AFU debug (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support LUN provisioning (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Refactor AFU capability checking (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Introduce host ioctl support (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Separate AFU internal command handling from AFU sync specifics (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Create character device to provide host management interface (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Add scsi command abort handler (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Flush pending commands in cleanup path (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Track pending scsi commands in each hardware queue (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Handle AFU sync failures (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Schedule asynchronous reset of the host (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Reset hardware queue context via specified register (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update cxlflash_afu_sync() to return errno (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Combine the send queue locks (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Select IRQ_POLL (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Introduce hardware queue steering (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Add hardware queues attribute (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support multiple hardware queues (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Improve asynchronous interrupt processing (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fix warnings/errors (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fix power-of-two validations (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove unnecessary DMA mapping (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fence EEH during probe (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support up to 4 ports (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: SISlite updates to support 4 ports (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Hide FC internals behind common access routine (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove port configuration assumptions (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support dynamic number of FC ports (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update sysfs helper routines to pass config structure (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Implement IRQ polling for RRQ processing (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Serialize RRQ access and support offlevel processing (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Separate RRQ processing from the RRQ interrupt handler (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Enable PCI device ID for future IBM CXL Flash AFU (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Cleanup prints (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Support SQ Command Mode (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Refactor context reset to share reset logic (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Migrate scsi command pointer to AFU command (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Migrate IOARRIN specific routines to function pointers (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Cleanup queuecommand() (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Cleanup send_tmf() (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove AFU command lock (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Wait for active AFU commands to timeout upon tear down (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove private command pool (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Use cmd_size for private commands (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Allocate memory instead of using command pool for AFU sync (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove unused buffer from AFU command (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Set sg_tablesize to 1 instead of SG_NONE (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Fix context reference tracking on detach (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Refactor WWPN setup (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Update documentation (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Remove adapter file descriptor cache (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Transition to application close model (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Add kref to context (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Cache owning adapter within context (Gustavo Duarte) [1456494]
-- [scsi] cxlflash: Avoid mutex when destroying context (Gustavo Duarte) [1456494]
-- [scsi] maintainers: Update cxlflash maintainers (Gustavo Duarte) [1456494]
-
-* Wed Dec 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-812.el7]
-- [x86] mm: fix get_user_pages() vs device-dax pud mappings (Luiz Capitulino) [1516984]
-- [x86] revert "fix get_user_pages() vs device-dax pud mappings" (Luiz Capitulino) [1516984]
-- [ata] libata: sata_down_spd_limit should return if driver has not recorded sstatus speed (David Milburn) [1457140]
-- [infiniband] ib/mlx5: use kvmalloc_array for mlx5_ib_wq (Don Dutile) [1511159]
-- [infiniband] ib/mlx4: use kvmalloc_array to allocate wrid (Don Dutile) [1511159]
-- [security] treewide: use kv[mz]alloc* rather than opencoded variants (Don Dutile) [1511159]
-- [security] keys: use kvfree() in add_key (Don Dutile) [1511159]
-- [kernel] wait: fix bit_waitqueue() to allow the use of vmalloc'd memory (Mike Snitzer) [1511159]
-- [net] use kvmalloc with __GFP_REPEAT rather than open coded variant (Don Dutile) [1511159]
-- [lib] rhashtable.c: simplify a strange allocation pattern (Don Dutile) [1511159]
-- [md] dm: allocate struct mapped_device with kvzalloc (Mike Snitzer) [1511159]
-- [md] dm ioctl: restore __GFP_HIGH in copy_params() (Don Dutile) [1511159]
-- [mm] swap: use kvzalloc to allocate some swap data structures (Don Dutile) [1511159]
-- [md] dm-ioctl.c: use kvmalloc rather than opencoded variant (Don Dutile) [1511159]
-- [fs] select: add vmalloc fallback for select(2) (Don Dutile) [1511159]
-- [fs] xattr.c: zero out memory copied to userspace in getxattr (Don Dutile) [1511159]
-- [fs] xattr: Use kvfree() (Don Dutile) [1511159]
-- [mm] support __GFP_REPEAT in kvmalloc_node for >32kB (Don Dutile) [1511159]
-- [mm] vmalloc: properly track vmalloc users (Don Dutile) [1511159]
-- [kernel] mm: introduce kv[mz]alloc helpers (Don Dutile) [1511159]
-- [kernel] locking/pvqspinlock: Implement hybrid PV queued/unfair locks (Waiman Long) [1511001]
-- [kernel] locking/qspinlock: Improve readability (Waiman Long) [1511001]
-- [kernel] locking/pvqspinlock: Move lock stealing count tracking code into pv_queued_spin_steal_lock() (Waiman Long) [1511001]
-- [kernel] tracing: Call clear_boot_tracer() at lateinit_sync (Jerome Marchand) [1477115]
-- [virtio] virtio_balloon: fix increment of vb->num_pfns in fill_balloon() (Andrew Jones) [1517280]
-- [virtio] virtio_balloon: fix deadlock on OOM (Andrew Jones) [1517280]
-- [netdrv] i40evf: Use smp_rmb rather than read_barrier_depends (Stefan Assmann) [1517143]
-- [netdrv] i40e: Use smp_rmb rather than read_barrier_depends (Stefan Assmann) [1517143]
-- [netdrv] i40e: restore promiscuous after reset (Stefan Assmann) [1517143]
-- [netdrv] i40evf: fix client notify of l2 params (Stefan Assmann) [1517143]
-- [netdrv] i40e: Fix FLR reset timeout issue (Stefan Assmann) [1517143]
-- [netdrv] i40e: fix the calculation of VFs mac addresses (Stefan Assmann) [1517143]
-- [netdrv] i40e: Fix for NUP NVM image downgrade failure (Stefan Assmann) [1517143]
-- [netdrv] i40e/i40evf: revert "i40e/i40evf: bump tail only in multiples of 8" (Stefan Assmann) [1517143]
-- [netdrv] i40e: only redistribute MSI-X vectors when needed (Stefan Assmann) [1517143]
-- [netdrv] i40e: Add programming descriptors to cleaned_count (Stefan Assmann) [1517143]
-- [netdrv] i40e: Fix incorrect use of tx_itr_setting when checking for Rx ITR setup (Stefan Assmann) [1517143]
-- [netdrv] virtchnl: Add pad fields to a couple of structures (Stefan Assmann) [1517143]
-- [netdrv] i40e/i40evf: rename vf_offload_flags to vf_cap_flags in struct virtchnl_vf_resource (Stefan Assmann) [1517143]
-- [netdrv] xen-netfront: remove warning when unloading module (Eduardo Otubo) [1472220]
-- [infiniband] ib/core: Only enforce security for InfiniBand (Don Dutile) [1515295]
-- [infiniband] ib/core: Only maintain real QPs in the security lists (Don Dutile) [1515295]
-- [infiniband] ib/core: Avoid unnecessary return value check (Don Dutile) [1515295]
-
-* Wed Dec 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-811.el7]
-- [gpu] drm/i915: Deconstruct struct sgt_dma initialiser (Rob Clark) [1512612]
-- [uapi] drm/i915: Reject unknown syncobj flags (Rob Clark) [1512612]
-- [gpu] drm/vmwgfx: Fix Ubuntu 17.10 Wayland black screen issue (Rob Clark) [1512612]
-- [gpu] drm/vmwgfx: constify vmw_fence_ops (Rob Clark) [1512612]
-- [gpu] drm/amdgpu: allow harvesting check for Polaris VCE (Rob Clark) [1512612]
-- [gpu] drm/amdgpu: return -ENOENT from uvd 6.0 early init for harvesting (Rob Clark) [1512612]
-- [gpu] drm/i915: Check incoming alignment for unfenced buffers (on i915gm) (Rob Clark) [1512612]
-- [gpu] drm/i915: Hold rcu_read_lock when iterating over the radixtree (vma idr) (Rob Clark) [1512612]
-- [gpu] drm/i915: Hold rcu_read_lock when iterating over the radixtree (objects) (Rob Clark) [1512612]
-- [gpu] drm/i915/edp: read edp display control registers unconditionally (Rob Clark) [1512612]
-- [gpu] drm/i915: Do not rely on wm preservation for ILK watermarks (Rob Clark) [1512612]
-- [gpu] drm/i915: Cancel the modeset retry work during modeset cleanup (Rob Clark) [1512612]
-- [gpu] drm/nouveau/kms/nv50: use the correct state for base channel notifier setup (Rob Clark) [1512612]
-- [gpu] drm/i915/gvt: Adding ACTHD mmio read handler (Rob Clark) [1512612]
-- [gpu] drm/i915/gvt: Extract mmio_read_from_hw() common function (Rob Clark) [1512612]
-- [gpu] drm/i915/gvt: Refine MMIO_RING_F() (Rob Clark) [1512612]
-- [gpu] drm/i915/gvt: properly check per_ctx bb valid state (Rob Clark) [1512612]
-- [gpu] drm/i915/perf: fix perf enable/disable ioctls with 32bits userspace (Rob Clark) [1512612]
-- [gpu] drm/amd/amdgpu: Remove workaround check for UVD6 on APUs (Rob Clark) [1512612]
-- [gpu] drm/amd/powerplay: fix uninitialized variable (Rob Clark) [1512612]
-- [gpu] drm/i915: Use a mask when applying WaProgramL3SqcReg1Default (Rob Clark) [1512612]
-- [gpu] drm/i915: Report -EFAULT before pwrite fast path into shmemfs (Rob Clark) [1512612]
-- [gpu] drm/i915/cnl: Fix PLL initialization for HDMI (Rob Clark) [1512612]
-- [gpu] drm/i915/cnl: Fix PLL mapping (Rob Clark) [1512612]
-- [gpu] drm/i915: Use bdw_ddi_translations_fdi for Broadwell (Rob Clark) [1512612]
-- [gpu] drm/i915: Fix eviction when the GGTT is idle but full (Rob Clark) [1512612]
-- [gpu] revert "drm/amdgpu: discard commands of killed processes" (Rob Clark) [1512612]
-- [gpu] drm/nouveau/fbcon: fix oops without fbdev emulation (Rob Clark) [1512612]
-- [gpu] drm/nouveau/kms/nv50: fix oops during DP IRQ handling on non-MST boards (Rob Clark) [1512612]
-- [gpu] drm/nouveau/bsp/g92: disable by default (Rob Clark) [1512612]
-- [gpu] drm/nouveau/mmu: flush tlbs before deleting page tables (Rob Clark) [1512612]
-- [gpu] drm/i915/bios: parse DDI ports also for CHV for HDMI DDC pin and DP AUX channel (Rob Clark) [1512612]
-- [gpu] drm/i915: Read timings from the correct transcoder in intel_crtc_mode_get() (Rob Clark) [1512612]
-- [gpu] drm/i915: Order two completing nop_submit_request (Rob Clark) [1512612]
-- [gpu] drm/i915: Silence compiler warning for hsw_power_well_enable() (Rob Clark) [1512612]
-- [gpu] drm/i915: Use crtc_state_is_legacy_gamma in intel_color_check (Rob Clark) [1512612]
-- [gpu] drm/i915/edp: Increase the T12 delay quirk to 1300ms (Rob Clark) [1512612]
-- [gpu] drm/i915/edp: Get the Panel Power Off timestamp after panel is off (Rob Clark) [1512612]
-- [gpu] drm/amdgpu: fix placement flags in amdgpu_ttm_bind (Rob Clark) [1512612]
-- [gpu] drm/atomic: Unref duplicated drm_atomic_state in drm_atomic_helper_resume() (Rob Clark) [1512612]
-- [drm] qxl: alloc & use shadow for dumb buffers (Rob Clark) [1512097]
-- [drm] qxl: replace QXL_INFO with DRM_DEBUG_DRIVER (Rob Clark) [1512097]
-
-* Tue Dec 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-810.el7]
-- [fs] dcache.c: avoid soft-lockup in dput() (Miklos Szeredi) [1431297]
-- [fs] dealing with the rest of shrink_dentry_list() livelock (Miklos Szeredi) [1431297]
-- [fs] dcache: add missing lockdep annotation (Miklos Szeredi) [1431297]
-- [fs] shrink_dentry_list(): take parent's ->d_lock earlier (Miklos Szeredi) [1431297]
-- [fs] expand dentry_kill(dentry, 0) in shrink_dentry_list() (Miklos Szeredi) [1431297]
-- [fs] split dentry_kill() (Miklos Szeredi) [1431297]
-- [fs] fold d_kill() and d_free() (Miklos Szeredi) [1431297]
-- [fs] fold try_prune_one_dentry() (Miklos Szeredi) [1431297]
-- [fs] fanotify: fix fsnotify_prepare_user_wait() failure (Miklos Szeredi) [1372260]
-- [fs] fsnotify: fix pinning group in fsnotify_prepare_user_wait() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: pin both inode and vfsmount mark (Miklos Szeredi) [1372260]
-- [fs] fsnotify: clean up fsnotify_prepare/finish_user_wait() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: make dnotify_fsnotify_ops const (Miklos Szeredi) [1372260]
-- [fs] maintainers: Update entries for notification subsystem (Miklos Szeredi) [1372260]
-- [fs] audit: Receive unmount event (Miklos Szeredi) [1372260]
-- [fs] audit: Fix use after free in audit_remove_watch_rule() (Miklos Szeredi) [1372260]
-- [fs] fanotify: don't expose EOPENSTALE to userspace (Miklos Szeredi) [1372260]
-- [fs] fsnotify: remove a stray unlock (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move ->free_mark callback to fsnotify_ops (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Add group pointer in fsnotify_init_mark() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Drop inode_mark.c (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove fsnotify_find_{inode|vfsmount}_mark() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove fsnotify_detach_group_marks() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Rename fsnotify_clear_marks_by_group_flags() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Inline fsnotify_clear_{inode|vfsmount}_mark_group() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove fsnotify_recalc_{inode|vfsmount}_mask() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove fsnotify_set_mark_{, ignored_}mask_locked() (Miklos Szeredi) [1372260]
-- [fs] fanotify: Release SRCU lock when waiting for userspace response (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Pass fsnotify_iter_info into handle_event handler (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Provide framework for dropping SRCU lock in ->handle_event (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove special handling of mark destruction on group shutdown (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Detach mark from object list when last reference is dropped (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move queueing of mark for destruction into fsnotify_put_mark() (Miklos Szeredi) [1372260]
-- [fs] inotify: Do not drop mark reference under idr_lock (Miklos Szeredi) [1372260]
-- [fs] fanotify: fix up KABI breakage due to mnt_fsnotify_marks type change (Miklos Szeredi) [1372260]
-- [fs] fanotify: fix up KABI breakage due to i_fsnotify_marks type change (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Free fsnotify_mark_connector when there is no mark attached (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Lock object list with connector lock (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove useless list deletion and comment (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Avoid double locking in fsnotify_detach_from_object() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove indirection from fsnotify_detach_mark() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Determine lock in fsnotify_destroy_marks() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move locking into fsnotify_find_mark() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move locking into fsnotify_recalc_mask() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move fsnotify_destroy_marks() (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove indirection from mark list addition (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Make fsnotify_mark_connector hold inode reference (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move object pointer to fsnotify_mark_connector (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Move mark list head from object into dedicated structure (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Update comments (Miklos Szeredi) [1372260]
-- [fs] audit_tree: Use mark flags to check whether mark is alive (Miklos Szeredi) [1372260]
-- [fs] audit: Abstract hash key handling (Miklos Szeredi) [1372260]
-- [fs] fanotify: Move recalculation of inode / vfsmount mask under mark_mutex (Miklos Szeredi) [1372260]
-- [fs] inotify: Remove inode pointers from debug messages (Miklos Szeredi) [1372260]
-- [fs] fsnotify: Remove unnecessary tests when showing fdinfo (Miklos Szeredi) [1372260]
-- [fs] fanotify: simplify the code of fanotify_merge (Miklos Szeredi) [1372260]
-- [fs] trim fsnotify hooks a bit (Miklos Szeredi) [1372260]
-- [fs] undo "fs: allow d_instantiate to be called with negative parent dentry" (Miklos Szeredi) [1372260]
-- [fs] untangle fsnotify_d_instantiate() a bit (Miklos Szeredi) [1372260]
-- [fs] sysctl: check for UINT_MAX before unsigned int min/max (Joe Lawrence) [1488518]
-- [fs] pipe: add proc_dopipe_max_size() to safely assign pipe_max_size (Joe Lawrence) [1488518]
-- [fs] pipe: avoid round_pipe_size() nr_pages overflow on 32-bit (Joe Lawrence) [1488518]
-- [fs] pipe: match pipe_max_size data type with procfs (Joe Lawrence) [1488518]
-- [fs] sysctl: add unsigned int range support (Joe Lawrence) [1488518]
-- [fs] sysctl: simplify unsigned int support (Joe Lawrence) [1488518]
-- [fs] sysctl: fold sysctl_writes_strict checks into helper (Joe Lawrence) [1488518]
-- [fs] sysctl: kdoc'ify sysctl_writes_strict (Joe Lawrence) [1488518]
-- [fs] sysctl: fix lax sysctl_check_table() sanity check (Joe Lawrence) [1488518]
-- [fs] sysctl: don't print negative flag for proc_douintvec (Joe Lawrence) [1488518]
-- [fs] sysctl: add sanity check for proc_douintvec (Joe Lawrence) [1488518]
-- [fs] sysctl: handle error writing UINT_MAX to u32 fields (Joe Lawrence) [1488518]
-- [fs] sysctl: enable strict writes (Joe Lawrence) [1488518]
-- [fs] sysctl: allow for strict write position handling (Joe Lawrence) [1488518]
-- [fs] sysctl: refactor sysctl string writing logic (Joe Lawrence) [1488518]
-- [fs] sysctl: clean up char buffer arguments (Joe Lawrence) [1488518]
-- [fs] pipe: cap initial pipe capacity according to pipe-max-size limit (Joe Lawrence) [1478268]
-- [fs] pipe: make account_pipe_buffers() return a value, and use it (Joe Lawrence) [1478268]
-- [fs] pipe: fix limit checking in alloc_pipe_info() (Joe Lawrence) [1478268]
-- [fs] pipe: simplify logic in alloc_pipe_info() (Joe Lawrence) [1478268]
-- [fs] pipe: fix limit checking in pipe_set_size() (Joe Lawrence) [1478268]
-- [fs] pipe: refactor argument for account_pipe_buffers() (Joe Lawrence) [1478268]
-- [fs] pipe: move limit checking logic into pipe_set_size() (Joe Lawrence) [1478268]
-- [fs] pipe: relocate round_pipe_size() above pipe_set_size() (Joe Lawrence) [1478268]
-
-* Tue Dec 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-809.el7]
-- [block] wake up all tasks blocked in get_request() (Ming Lei) [1491296]
-- [block] blk-mq: Avoid that request queue removal can trigger list corruption (Ming Lei) [1491296]
-- [block] scsi: Make SCSI quiesce and resume work reliably (Ming Lei) [1491296]
-- [block] Add the QUEUE_FLAG_PREEMPT_ONLY request queue flag (Ming Lei) [1491296]
-- [block] ide, scsi: Tell the block layer at request allocation time about preempt requests (Ming Lei) [1491296]
-- [block] Introduce BLK_MQ_REQ_PREEMPT (Ming Lei) [1491296]
-- [block] Introduce blk_get_request_flags() (Ming Lei) [1491296]
-- [block] Make q_usage_counter also track legacy requests (Ming Lei) [1491296]
-- [block] blk-mq: don't allocate driver tag upfront for flush rq (Ming Lei) [1471956]
-- [block] blk-mq: move blk_mq_put_driver_tag*() into blk-mq.h (Ming Lei) [1471956]
-- [block] blk-mq-sched: decide how to handle flush rq via RQF_FLUSH_SEQ (Ming Lei) [1471956]
-- [block] blk-flush: use blk_mq_request_bypass_insert() (Ming Lei) [1471956]
-- [block] pass 'run_queue' to blk_mq_request_bypass_insert (Ming Lei) [1471956]
-- [block] blk-flush: don't run queue for requests bypassing flush (Ming Lei) [1471956]
-- [block] blk-mq: put the driver tag of nxt rq before first one is requeued (Ming Lei) [1471956]
-- [block] directly insert blk-mq request from blk_insert_cloned_request() (Ming Lei) [1471956]
-- [block] blk-mq: improve tag waiting setup for non-shared tags (Ming Lei) [1471956]
-- [block] blk-mq: fix issue with shared tag queue re-running (Ming Lei) [1471956]
-- [block] blk-mq: put driver tag if dispatch budget can't be got (Ming Lei) [1471956]
-- [block] blk-mq: don't handle failure in .get_budget (Ming Lei) [1471956]
-- [block] scsi: don't get target/host busy_count in scsi_mq_get_budget() (Ming Lei) [1471956]
-- [block] blk-mq: don't restart queue when .get_budget returns BLK_STS_RESOURCE (Ming Lei) [1471956]
-- [block] scsi: implement .get_budget and .put_budget for blk-mq (Ming Lei) [1471956]
-- [block] scsi: allow passing in null rq to scsi_prep_state_check() (Ming Lei) [1471956]
-- [block] blk-mq-sched: improve dispatching from sw queue (Ming Lei) [1471956]
-- [block] blk-mq: introduce .get_budget and .put_budget in blk_mq_ops (Ming Lei) [1471956]
-- [block] kyber: check if there are requests in ctx in kyber_has_work() (Ming Lei) [1471956]
-- [block] sbitmap: introduce __sbitmap_for_each_set() (Ming Lei) [1471956]
-- [block] blk-mq-sched: move actual dispatching into one helper (Ming Lei) [1471956]
-- [block] blk-mq-sched: dispatch from scheduler IFF progress is made in ->dispatch (Ming Lei) [1471956]
-- [block] blk-mq: move .map_queues into aux_ops (Ming Lei) [1471956]
-- [block] blk-mq: move .reinit_request into aux_ops (Ming Lei) [1471956]
-- [block] blk-mq: introduce blk_mq_aux_ops (Ming Lei) [1471956]
-- [block] blk-mq: allocate space of 'request_aux' for flush rq (Ming Lei) [1471956]
-
-* Tue Dec 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-808.el7]
-- [x86] Mark Intel Gemini Lake supported (Steve Best) [1471103]
-- [x86] cpufeature: Add feature bit for Intel's Silicon Debug CPUID bit (Mohammed Gamal) [1517830]
-- [x86] x86/entry: add a few missing unwinder annotations (Josh Poimboeuf) [1518139]
-- [x86] x86/unwind: fix interrupt unwinding (Josh Poimboeuf) [1518139]
-- [x86] x86/dumpstack: Handle NULL stack pointer in show_trace_log_lvl() (Josh Poimboeuf) [1518139]
-- [x86] kvm: vmx: Fix vmx->nested freeing when no SMI handler (Ladi Prosek) [1488203]
-- [x86] kvm: svm: detect opening of SMI window using STGI intercept (Ladi Prosek) [1488203]
-- [x86] kvm: nsvm: fix SMI injection in guest mode (Ladi Prosek) [1488203]
-- [x86] kvm: nsvm: refactor nested_svm_vmrun (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: fix SMI injection in guest mode (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: set IDTR and GDTR limits when loading L1 host state (Ladi Prosek) [1488203]
-- [x86] kvm: x86: introduce ISA specific smi_allowed callback (Ladi Prosek) [1488203]
-- [x86] kvm: x86: introduce ISA specific SMM entry/exit callbacks (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: Refactor nested_vmx_run() (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: Split VMCS checks from nested_vmx_run() (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: Refactor nested_get_vmcs12_pages() (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: Prepare for checkpointing L2 state (Ladi Prosek) [1488203]
-- [x86] kvm: nvmx: fix instruction skipping during emulated vm-entry (Ladi Prosek) [1488203]
-- [x86] kvm: vmx: Move skip_emulated_instruction out of nested_vmx_check_vmcs12 (Ladi Prosek) [1488203]
-- [fs] ext4: Switch to iomap for SEEK_HOLE / SEEK_DATA (Bill O'Donnell) [1469359]
-- [fs] Do not defer completion for fs without FS_HAS_DIO_IODONE2 (Lukas Czerner) [1518054]
-- [fs] xfs: truncate pagecache before writeback in xfs_setattr_size() (Bill O'Donnell) [1516604]
-- [fs] more bio_map_user_iov() leak fixes (Ming Lei) [1503592] {CVE-2017-12190}
-- [fs] fix unbalanced page refcounting in bio_map_user_iov (Ming Lei) [1503592] {CVE-2017-12190}
-- [x86] kvm: svm: obey guest PAT (Suravee Suthikulpanit) [1478185]
-- [pci] pciehp: Fix race condition handling surprise link down (Myron Stowe) [1435819]
-- [crypto] shash - Fix has_key setting (Herbert Xu) [1505817]
-- [netdrv] ibmvnic: fix dma_mapping_error call (Desnes Augusto Nunes do Rosario) [1515843]
-- [netdrv] ibmvnic: Feature implementation of Vital Product Data (VPD) for the ibmvnic driver (Desnes Augusto Nunes do Rosario) [1515843]
-- [kernel] kbuild: Fix tar-pkg with relative $(objtree) (Don Zickus) [1518298]
-- [kernel] mm: cma: fix incorrect type conversion for size during dma allocation (Chris von Recklinghausen) [1495406] {CVE-2017-9725}
-- [kernel] mm: Sanitize 'move_pages()' permission checks (Chris von Recklinghausen) [1499610] {CVE-2017-14140}
-- [kernel] ptrace: use fsuid, fsgid, effective creds for fs access checks (Chris von Recklinghausen) [1499610] {CVE-2017-14140}
-- [kernel] __ptrace_may_access() should not deny sub-threads (Chris von Recklinghausen) [1499610] {CVE-2017-14140}
-- [kernel] x86/mm/32: Enable full randomization on i386 and X86_32 (Bhupesh Sharma) [1495406] {CVE-2017-9725}
-- [powerpc] kvm: ppc: book3s hv: Fix host crash on changing HPT size (David Gibson) [1512780]
-- [powerpc] kvm: ppc: book3s hv: Fix exclusion between HPT resizing and other HPT updates (Serhii Popovych) [1512780 1510771]
-- [powerpc] pseries: Report DLPAR capabilities (Gustavo Duarte) [1182019]
-
-* Fri Dec 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-807.el7]
-- [infiniband] bnxt_re: Don't issue cmd to delete GID for QP1 GID entry before the QP is destroyed (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Fix memory leak in FRMR path (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Remove RTNL lock dependency in bnxt_re_query_port (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Fix race between the netdev register and unregister events (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Free up devices in module_exit path (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Fix compare and swap atomic operands (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Stop issuing further cmds to FW once a cmd times out (Don Dutile) [1384857]
-- [infiniband] bnxt_re: Fix update of qplib_qp.mtu when modified (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: remove unnecessary call to memset (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Implement the alloc/get_hw_stats callback (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Allocate multiple notification queues (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: fix spelling mistake: "Deallocte" -> "Deallocate" (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Allow posting when QPs are in error (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Add vlan tag for untagged RoCE traffic when PFC is configured (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Delete unsupported modify_port function (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fix the value reported for local ack delay (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Report MISSED_EVENTS in req_notify_cq (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fix return value of poll routine (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Enable atomics only if host bios supports (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Specify RDMA component when allocating stats context (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fixed the max_rd_atomic support for initiator and destination QP (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Report supported value to IB stack in query_device (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Do not free the ctx_tbl entry if delete GID fails (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fix WQE Size posted to HW to prevent it from throwing error (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Free doorbell page index (DPI) during dealloc ucontext (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: checking for NULL instead of IS_ERR() (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Remove FMR support (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fix RQE posting logic (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Add HW workaround for avoiding stall for UD QPs (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Dereg MR in FW before freeing the fast_reg_page_list (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: HW workarounds for handling specific conditions (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Fixing the Control path command and response handling (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: Use IS_ERR_OR_NULL where appropriate (Don Dutile) [1384857]
-- [infiniband] rdma/bnxt_re: remove redundant initialization of rc to zero (Don Dutile) [1384857]
-
-* Fri Dec 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-806.el7]
-- [netdrv] revert "ath10k: fix napi_poll budget overflow" (Stanislaw Gruszka) [1501877]
-- [netdrv] ath10k: rebuild crypto header in rx data frames (Stanislaw Gruszka) [1501877]
-- [net] mac80211: don't compare TKIP TX MIC key in reinstall (Stanislaw Gruszka) [1501877]
-- [net] mac80211: validate user rate mask before configuring driver (Stanislaw Gruszka) [1501877]
-- [net] cfg80211: fix connect/disconnect edge cases (Stanislaw Gruszka) [1501877]
-- [net] mac80211: use constant time comparison with keys (Stanislaw Gruszka) [1501877]
-- [net] nl80211: Define policy for packet pattern attributes (Stanislaw Gruszka) [1501877]
-- [net] mac80211: accept key reinstall without changing anything (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: nvm: set the correct offsets to 3168 series (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: nvm-parse: unify channel flags printing (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: return -ENODATA when reading the temperature (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: stop dbgc recording before stopping DMA (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: do not print security error in monitor mode (Stanislaw Gruszka) [1501877]
-- [netdrv] brcmsmac: make some local variables 'static const' to reduce (Stanislaw Gruszka) [1501877]
-- [netdrv] brcmfmac: Add check for short event packets (Stanislaw Gruszka) [1501877]
-- [netdrv] rtlwifi: rtl8821ae: Fix connection lost problem (Stanislaw Gruszka) [1501877]
-- [netdrv] ath10k: mark PM functions as __maybe_unused (Stanislaw Gruszka) [1501877]
-- [netdrv] brcmfmac: setup passive scan if requested by user-space (Stanislaw Gruszka) [1501877]
-- [netdrv] brcmfmac: add length check in brcmf_cfg80211_escan_handler() (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: fix reorder buffer for 9000 devices (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: set status before calling (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: initialize status in (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: handle FIF_ALLMULTI when setting multicast (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: use IWL_HCMD_NOCOPY for MCAST_FILTER_CMD (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: wake the correct mac80211 queue (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: change state when queueing agg start work (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: send all non-bufferable frames on the probe (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: Flush non STA TX queues (Stanislaw Gruszka) [1501877]
-- [netdrv] iwlwifi: mvm: fix wowlan resume failed to load INIT ucode (Stanislaw Gruszka) [1501877]
-- [netdrv] mac80211: fix STA_SLOW_THRESHOLD htmldocs failure (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport mac80211_hwsim driver from linux-4.14-rc2 (Stanislaw Gruszka) [1486746 1477495]
-- [netdrv] Backport brcmsmac driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport brcmfmac driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport rtlwifi driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport rtl8187 driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport mwl8k driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport marvell driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport carl9170 driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport wil6210 driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport ath10k driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport ath9k driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport iwlegacy driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport iwlwifi driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495 1486992 1486999]
-- [netdrv] Backport rt2x00 driver from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport mac80211 from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-- [netdrv] Backport wireless core from linux-4.14-rc2 (Stanislaw Gruszka) [1477495]
-
-* Fri Dec 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-805.el7]
-- [kernel] Enable -Werror also for s390 builds in the main Makefile (Thomas Huth) [1500170]
-- [kernel] crash_core: Fix warning about CRASH_CORE_NOTE_BYTES redefinition (Thomas Huth) [1500170]
-- [kernel] time/timekeeping: Work around false positive GCC warning (Thomas Huth) [1500170]
-- [kernel] module: Fix downstream-only compiler warning in find_module_sections() (Thomas Huth) [1500170]
-- [security] selinux: security_load_policy: Silence frame-larger-than warning (Thomas Huth) [1500170]
-- [s390] Wire up seccomp syscall (Thomas Huth) [1500170]
-- [s390] kernel/ptrace: Move NT_S390_GS_CB/BC hunks to right table (Thomas Huth) [1500170]
-- [pci] msi: Silence compiler warning about unused variable on s390x (Thomas Huth) [1500170]
-- [fs] gfs2/dir: avoid uninitialized variable warning (Thomas Huth) [1500170]
-- [fs] mpage.c: fix mpage_writepage() for pages with buffers (Eric Sandeen) [1476389]
-- [fs] nfsd: Incoming xdr_bufs may have content in tail buffer (Steve Dickson) [1515992]
-- [hv] hv_netvsc: hide warnings about uninitialized/missing rndis device (Vitaly Kuznetsov) [1516618]
-- [hv] hv_netvsc: netvsc_teardown_gpadl() split (Vitaly Kuznetsov) [1516618]
-- [hv] vmbus: Fix bugs in rescind handling (Vitaly Kuznetsov) [1516618]
-- [hv] vmbus: Fix rescind handling issues (Vitaly Kuznetsov) [1516618]
-- [hv] hv_netvsc: preserve hw_features on mtu/channels/ringparam changes (Vitaly Kuznetsov) [1513264]
-- [usb] xhci: Identify USB 3.1 capable hosts by their port protocol capability (Torez Smith) [1456724]
-- [scsi] bnx2fc: Fix hung task messages when a cleanup response is not received during abort (Chad Dupuis) [1515346]
-- [block] nvme-pci: avoid dereference of symbol from unloaded module (Ming Lei) [1508298]
-- [block] Fix a race between blk_cleanup_queue() and timeout handling (Ming Lei) [1513725]
-- [block] blk-mq-tag: check for NULL rq when iterating tags (Ming Lei) [1513419]
-- [infiniband] vmw_pvrdma: switch to pci_alloc_irq_vectors (Don Dutile) [1454965]
-- [infiniband] ib/ipoib: Change number of TX wqe to 64 (Honggang Li) [1445667]
-- [infiniband] ib/ipoib: Use NAPI in UD/TX flows (Honggang Li) [1445667]
-- [infiniband] ib/ipoib: Get rid of the tx_outstanding variable in all modes (Honggang Li) [1445667]
-- [infiniband] ib/ipoib: Convert timers to use timer_setup() (Honggang Li) [1445667]
-
-* Thu Nov 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-804.el7]
-- [netdrv] bnxt_re: add MAY_USE_DEVLINK dependency (Jonathan Toppins) [1459659]
-- [netdrv] rdma/bnxt_re: add DCB dependency (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix IRQ coalescing regression (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: fix typo in bnxt_set_coalesce (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix randconfig build errors (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: alloc tc_info{} struct only when tc flower is enabled (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: query cfa flow stats periodically to compute 'lastused' attribute (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add hwrm FW cmds for cfa_encap_record and decap_filter (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add support for Flower based vxlan encap/decap offload (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Refactor and simplify coalescing code (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Reorganize the coalescing parameters (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add ethtool reset method (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Check maximum supported MTU from firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Optimize .ndo_set_mac_address() for VFs (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Get firmware package version one time (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Check for zero length value in bnxt_get_nvram_item() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Update firmware interface to 1.8.3.1 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: Move generic devlink code to new file (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix possible corruption in DCB parameters from firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix possible corrupted NVRAM parameters from firmware response (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix VF resource checking (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix VF PCIe link speed and width logic (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Don't use rtnl lock to protect link change logic in workqueue (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Improve VF/PF link change logic (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: don't consider building bnxt_tc.o if option not enabled (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Remove redundant unlikely() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: use setup_timer() helper (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: check for ingress qdisc in flower offload (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add a dummy definition for bnxt_vf_rep_get_fid() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add code to query TC flower offload stats (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add TC flower offload flow_alloc/free FW cmds (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: bnxt: add TC flower filter offload support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: fix clearing devlink ptr from bnxt struct (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Reduce default rings on multi-port cards (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Improve -ENOMEM logic in NAPI poll loop (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: initialize board_info values with proper enums (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: assign CPU affinity hints to bnxt_en IRQs (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Improve tx ring reservation logic (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Update firmware interface spec. to 1.8.1.4 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Do not setup MAC address in bnxt_hwrm_func_qcaps() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Free MSIX vectors when unregistering the device from bnxt_re (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix .ndo_setup_tc() to include XDP rings (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: fix spelling mistake: "swtichdev" -> "switchdev" (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: fix switchdev port naming for external-port-rep and vf-reps (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: use SWITCHDEV_SET_OPS() for setting vf_rep_switchdev_ops (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: include bnxt_vfr.c code under CONFIG_BNXT_SRIOV switch (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: fix unused variable warnings (Jonathan Toppins) [1459659]
-- [netdrv] bnxt: fix unsigned comparsion with 0 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Use SWITCHDEV_SET_OPS() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add support for port_attr_get and and get_phys_port_name (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add vf-rep RX/TX and netdev implementation (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: add support to enable VF-representors (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Set ETS min_bw parameter for older firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Report firmware DCBX agent (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Allow the user to set ethtool stats-block-usecs to 0 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add bnxt_get_num_stats() to centrally get the number of ethtool stats (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Implement ndo_bridge_{get|set}link methods (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Retrieve the hardware bridge mode from the firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Update firmware interface spec to 1.8.0 (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix SRIOV on big-endian architecture (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix bug in ethtool -L (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix race conditions in .ndo_get_stats64() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix netpoll handling (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add missing logic to handle TPA end error conditions (Jonathan Toppins) [1459659]
-- [netdrv] bpf: bnxt: Report bpf_prog ID during XDP_QUERY_PROG (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix xmit_more with BQL (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Pass in sh parameter to bnxt_set_dflt_rings() (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Implement xmit_more (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Optimize doorbell write operations for newer chips (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add additional chip ID definitions (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add a callback to inform RDMA driver during PCI shutdown (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add PCI IDs for BCM57454 VF devices (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Support for Short Firmware Message (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Restrict a PF in Multi-Host mode from changing port PHY configuration (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add 100G link speed reporting for BCM57454 ASIC in ethtool (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Pass DCB RoCE app priority to firmware (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Use short TX BDs for the XDP TX ring (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add interrupt test to ethtool -t selftest (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add PHY loopback to ethtool self-test (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add ethtool mac loopback self test (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add basic ethtool -t selftest support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add suspend/resume callbacks (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add ethtool set_wol method (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add ethtool get_wol method (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add pci shutdown method (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add basic WoL infrastructure (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix DMA unmapping of the RX buffers in XDP mode during shutdown (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Added PCI IDs for BCM57452 and BCM57454 ASICs (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add hardware NTUPLE filter for encapsulated packets (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Fix ethtool -l pre-set max combined channel (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add support for XDP_TX action (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add basic XDP support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Refactor tx completion path (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add a set of TX rings to support XDP (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add tx ring mapping logic (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Centralize logic to reserve rings (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Use event bit map in RX path (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add RX page mode support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Parameterize RX buffer offsets (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add bp->rx_dir field for rx buffer DMA direction (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Don't use DEFINE_DMA_UNMAP_ADDR to store DMA address in RX path (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Refactor rx SKB function (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Add IPV6 hardware RFS support (Jonathan Toppins) [1459659]
-- [netdrv] bnxt_en: Use napi_complete_done() (Jonathan Toppins) [1459659]
-- [netdrv] broadcom: use core min/max MTU checking (Jonathan Toppins) [1459659]
-
-* Thu Nov 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-803.el7]
-- [netdrv] nfp: convert to use .ndo_setup_tc_rh (John Linville) [1454760 1454745]
-- [netdrv] nfp: enable CONFIG_NFP_APP_FLOWER (John Linville) [1454745 1454760]
-- [netdrv] nfp: double free on error in probe (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove incorrect mask check for vlan matching (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix supported key layers calculation (John Linville) [1454760 1454745]
-- [netdrv] nfp: fix unchecked flow dissector use (John Linville) [1454745 1454760]
-- [netdrv] nfp: TX time stamp packets before HW doorbell is rung (John Linville) [1454760 1454745]
-- [netdrv] nfp: avoid buffer leak when representor is missing (John Linville) [1454760 1454745]
-- [netdrv] nfp: make sure representors are destroyed before their lower netdev (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't hold PF lock while enabling SR-IOV (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix infinite loop on umapping cleanup (John Linville) [1454745 1454760]
-- [netdrv] nfp: do not update MTU from BH in flower app (John Linville) [1454745 1454760]
-- [netdrv] nfp: Initialize RX and TX ring 64-bit stats seqcounts (John Linville) [1454760 1454745]
-- [netdrv] nfp: freeing the wrong variable (John Linville) [1454745 1454760]
-- [netdrv] nfp: flower: add missing clean up call to avoid memory leaks (John Linville) [1454745 1454760]
-- [netdrv] nfp: default to chained metadata prepend format (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove legacy MAC address lookup (John Linville) [1454745 1454760]
-- [netdrv] nfp: improve order of interfaces in breakout mode (John Linville) [1454745 1454760]
-- [netdrv] nfp: add control message passing capabilities to flower offloads (John Linville) [1454745 1454760]
-- [netdrv] nfp: add a stats handler for flower offloads (John Linville) [1454745 1454760]
-- [netdrv] nfp: add metadata to each flow offload (John Linville) [1454745 1454760]
-- [netdrv] nfp: add basic action capabilities to flower offloads (John Linville) [1454760 1454745]
-- [netdrv] nfp: extend flower matching capabilities (John Linville) [1454745 1454760]
-- [netdrv] nfp: extend flower add flow offload (John Linville) [1454745 1454760]
-- [netdrv] nfp: provide infrastructure for offloading flower based TC filters (John Linville) [1454760 1454745]
-- [netdrv] nfp: add phys_switch_id support (John Linville) [1454760 1454745]
-- [netdrv] nfp: flower: add Kconfig for flower app (John Linville) [1454760 1454745]
-- [netdrv] nfp: allocate a private workqueue for driver work (John Linville) [1454745 1454760]
-- [netdrv] nfp: reorder SR-IOV config and nfp_app SR-IOV callbacks (John Linville) [1454745 1454760]
-- [netdrv] nfp: handle SR-IOV already enabled when driver is probing (John Linville) [1454745 1454760]
-- [netdrv] nfp: wire get_phys_port_name on representors (John Linville) [1454745 1454760]
-- [netdrv] nfp: allow converting representor's netdev into nfp_port (John Linville) [1454745 1454760]
-- [netdrv] nfp: move representors' struct net_device_ops to shared code (John Linville) [1454760 1454745]
-- [netdrv] nfp: make the representor get stats app-independent (John Linville) [1454760 1454745]
-- [netdrv] nfp: spawn nfp_ports for PF and VF ports (John Linville) [1454745 1454760]
-- [netdrv] nfp: add nfp_app cleanup callback and make flower use it (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove unused nfp_cpp_area_check_range() (John Linville) [1454745 1454760]
-- [netdrv] nfp: add helper for mapping runtime symbols (John Linville) [1454745 1454760]
-- [netdrv] nfp: move area mapping helper into nfpcore (John Linville) [1454745 1454760]
-- [netdrv] nfp: explicitly check if application FW is loaded (John Linville) [1454745 1454760]
-- [netdrv] nfp: add VF and PF representors to flower app (John Linville) [1454745 1454760]
-- [netdrv] nfp: add flower app (John Linville) [1454760 1454745]
-- [netdrv] nfp: add support for control messages for flower app (John Linville) [1454760 1454745]
-- [netdrv] nfp: add support for tx/rx with metadata portid (John Linville) [1454760 1454745]
-- [netdrv] nfp: provide nfp_port to of nfp_net_get_mac_addr() (John Linville) [1454745 1454760]
-- [netdrv] nfp: app callbacks for SRIOV (John Linville) [1454745 1454760]
-- [netdrv] nfp: add stats and xmit helpers for representors (John Linville) [1454760 1454745]
-- [netdrv] nfp: general representor implementation (John Linville) [1454760 1454745]
-- [netdrv] nfp: map mac_stats and vf_cfg BARs (John Linville) [1454745 1454760]
-- [netdrv] nfp: move physical port init into a helper (John Linville) [1454745 1454760]
-- [netdrv] nfp: devlink add support for getting eswitch mode (John Linville) [1454745 1454760]
-- [netdrv] nfp: xdp: report if program is offloaded (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add support for XDP_FLAGS_HW_MODE (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: release the reference on offloaded programs (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: don't offload XDP programs in DRV_MODE (John Linville) [1454760 1454745]
-- [netdrv] nfp: xdp: move driver XDP setup into a separate function (John Linville) [1454760 1454745]
-- [netdrv] nfp: add VLAN filtering support (John Linville) [1454760 1454745]
-- [netdrv] bpf: nfp: Report bpf_prog ID during XDP_QUERY_PROG (John Linville) [1454760 1454745]
-- [netdrv] nfp: report application FW build name in ethtool -i (John Linville) [1454760 1454745]
-- [netdrv] nfp: keep MIP object around (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove automatic caching of HWInfo (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove automatic caching of RTsym table (John Linville) [1454745 1454760]
-- [netdrv] nfp: make sure to cancel port refresh on the error path (John Linville) [1454745 1454760]
-- [netdrv] nfp: advertise support for NFD ABI 0.5 (John Linville) [1454745 1454760]
-- [netdrv] nfp: create control vNICs and wire up rx/tx (John Linville) [1454760 1454745]
-- [netdrv] nfp: allow non-equal distribution of IRQs (John Linville) [1454745 1454760]
-- [netdrv] nfp: slice the netdev spawning function (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't clutter init code passing fw_ver around (John Linville) [1454745 1454760]
-- [netdrv] nfp: map all queue controllers at once (John Linville) [1454745 1454760]
-- [netdrv] nfp: make vNIC ctrl memory mapping function reusable (John Linville) [1454745 1454760]
-- [netdrv] nfp: add control vNIC datapath (John Linville) [1454760 1454745]
-- [netdrv] nfp: prepare config and enable for working without netdevs (John Linville) [1454760 1454745]
-- [netdrv] nfp: allow allocation and initialization of netdev-less vNICs (John Linville) [1454760 1454745]
-- [netdrv] nfp: make sure debug accesses don't depend on netdevs (John Linville) [1454745 1454760]
-- [netdrv] nfp: prepare print macros for use without netdev (John Linville) [1454745 1454760]
-- [netdrv] nfp: move nfp_net_vecs_init() (John Linville) [1454745 1454760]
-- [netdrv] nfp: reuse ring free code on close (John Linville) [1454760 1454745]
-- [netdrv] nfp: split out the allocation part of open (John Linville) [1454760 1454745]
-- [netdrv] nfp: reorder open and close functions (John Linville) [1454760 1454745]
-- [netdrv] nfp: move basic eBPF stats to app-specific code (John Linville) [1454760 1454745]
-- [netdrv] nfp: move bpf offload code to the BPF app (John Linville) [1454760 1454745]
-- [netdrv] nfp: move eBPF offload files to BPF app directory (John Linville) [1454760 1454745]
-- [netdrv] nfp: report app name in ethtool -i (John Linville) [1454760 1454745]
-- [netdrv] nfp: move port init to apps (John Linville) [1454760 1454745]
-- [netdrv] nfp: turn reading PCIe RTsym parameters into a helper (John Linville) [1454745 1454760]
-- [netdrv] nfp: add missing fall through statements (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't keep count for free buffers delayed kick (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't add ring size to index calculations (John Linville) [1454760 1454745]
-- [netdrv] nfp: fix print format for ring pointers in ring dumps (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't wait for resources indefinitely (John Linville) [1454745 1454760]
-- [netdrv] nfp: support variable NSP response lengths (John Linville) [1454745 1454760]
-- [netdrv] nfp: shorten CPP core probe logs (John Linville) [1454745 1454760]
-- [netdrv] nfp: support long reads and writes with the cpp helpers (John Linville) [1454760 1454745]
-- [netdrv] nfp: only try to get to PCIe ctrl memory if BARs are wide enough (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't set aux pointers if ioremap failed (John Linville) [1454760 1454745]
-- [netdrv] nfp: set driver VF limit (John Linville) [1454745 1454760]
-- [netdrv] nfp: add set_mac_address support while the interface is up (John Linville) [1454760 1454745]
-- [netdrv] nfp: add MAY_USE_DEVLINK dependency (John Linville) [1454745 1454760]
-- [netdrv] nfp: support port splitting via devlink (John Linville) [1454745 1454760]
-- [netdrv] nfp: calculate total port lanes for split (John Linville) [1454745 1454760]
-- [netdrv] nfp: register ports as devlink ports (John Linville) [1454745 1454760]
-- [netdrv] nfp: add helper for cleaning up vNICs (John Linville) [1454745 1454760]
-- [netdrv] nfp: add devlink support (John Linville) [1454745 1454760]
-- [netdrv] nfp: move mutex init out of net code (John Linville) [1454745 1454760]
-- [netdrv] nfp: refresh port state before reporting autonegotiation (John Linville) [1454745 1454760]
-- [netdrv] nfp: mark port state as stale if update failed (John Linville) [1454745 1454760]
-- [netdrv] nfp: mark port state as stale after reconfig (John Linville) [1454745 1454760]
-- [netdrv] nfp: provide linking on port structures (John Linville) [1454745 1454760]
-- [netdrv] nfp: move refresh tracking into the port structure (John Linville) [1454745 1454760]
-- [netdrv] nfp: update port state in place (John Linville) [1454745 1454760]
-- [netdrv] nfp: introduce nfp_port (John Linville) [1454760 1454745]
-- [netdrv] nfp: disallow mixing vNICs with and without NSP port entry (John Linville) [1454745 1454760]
-- [netdrv] nfp: introduce very minimal nfp_app (John Linville) [1454745 1454760]
-- [netdrv] nfp: add nfp_net_pf_free_vnic() function (John Linville) [1454745 1454760]
-- [netdrv] nfp: rename netdev/port to vNIC (John Linville) [1454760 1454745]
-- [netdrv] nfp: make nfp_net alloc/init/cleanup/free not depend on netdevs (John Linville) [1454760 1454745]
-- [netdrv] nfp: add nfp_cppcore_pcie_unit() helper (John Linville) [1454745 1454760]
-- [netdrv] nfp: eliminate an if statement in calculation of completed frames (John Linville) [1454760 1454745]
-- [netdrv] nfp: add a helper for wrapping descriptor index (John Linville) [1454760 1454745]
-- [netdrv] nfp: complete the XDP TX ring only when it's full (John Linville) [1454760 1454745]
-- [netdrv] nfp: add CHECKSUM_COMPLETE support (John Linville) [1454760 1454745]
-- [netdrv] nfp: version independent support for chained RSS metadata (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't assume RSS and IRQ moderation are always enabled (John Linville) [1454745 1454760]
-- [netdrv] nfp: support LSO2 capability (John Linville) [1454760 1454745]
-- [netdrv] nfp: rename l4_offset in struct nfp_net_tx_desc to lso_hdrlen (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't enable TSO on the device when disabled (John Linville) [1454745 1454760]
-- [netdrv] nfp: provide 256 bytes of XDP headroom in all configurations (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't completely refuse to work with old flashes (John Linville) [1454745 1454760]
-- [netdrv] nfp: avoid reading TX queue indexes from the device (John Linville) [1454760 1454745]
-- [netdrv] nfp: do simple XDP TX buffer recycling (John Linville) [1454760 1454745]
-- [netdrv] nfp: drop rx_ring param from buffer allocation (John Linville) [1454760 1454745]
-- [netdrv] nfp: replace -ENOTSUPP with -EOPNOTSUPP (John Linville) [1454760 1454745]
-- [netdrv] nfp: remove the refresh of all ports optimization (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix free list buffer size reporting (John Linville) [1454760 1454745]
-- [netdrv] nfp: add NSP routine to get static information (John Linville) [1454745 1454760]
-- [netdrv] nfp: parse metadata prepend before XDP runs (John Linville) [1454745 1454760]
-- [netdrv] nfp: make use of the DMA_ATTR_SKIP_CPU_SYNC attr (John Linville) [1454760 1454745]
-- [netdrv] nfp: don't dereference a null nn->eth_port to print a warning (John Linville) [1454745 1454760]
-- [netdrv] nfp: add support for .set_link_ksettings() (John Linville) [1454745 1454760]
-- [netdrv] nfp: NSP backend for link configuration operations (John Linville) [1454745 1454760]
-- [netdrv] nfp: add extended error messages (John Linville) [1454745 1454760]
-- [netdrv] nfp: turn NSP port entry into a union (John Linville) [1454745 1454760]
-- [netdrv] nfp: allow multi-stage NSP configuration (John Linville) [1454745 1454760]
-- [netdrv] nfp: separate high level and low level NSP headers (John Linville) [1454760 1454745]
-- [netdrv] nfp: report port type in ethtool (John Linville) [1454745 1454760]
-- [netdrv] nfp: report auto-negotiation in ethtool (John Linville) [1454745 1454760]
-- [netdrv] nfp: report link speed from NSP (John Linville) [1454745 1454760]
-- [netdrv] nfp: add port state refresh (John Linville) [1454745 1454760]
-- [netdrv] nfp: track link state changes (John Linville) [1454745 1454760]
-- [netdrv] nfp: add mutex protection for the port list (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't spawn netdevs for reconfigured ports (John Linville) [1454745 1454760]
-- [netdrv] nfp: add support for .get_link_ksettings() (John Linville) [1454760 1454745]
-- [netdrv] nfp: disable FW on reconfiguration errors (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove defensive checks around ndo_open()/ndo_close() (John Linville) [1454745 1454760]
-- [netdrv] nfp: flush xmit_more on error paths (John Linville) [1454760 1454745]
-- [netdrv] nfp: remove RX queue pointers (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't use netdev_warn() before netdev is registered (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix nfp_cpp_read()/nfp_cpp_write() error paths (John Linville) [1454745 1454760]
-- [netdrv] nfp: fix invalid area detection (John Linville) [1454745 1454760]
-- [netdrv] nfp: don't ignore return value of wait_event_interruptible (John Linville) [1454745 1454760]
-- [netdrv] nfp: correct return codes when msleep gets interrupted (John Linville) [1454745 1454760]
-- [netdrv] nfp: lock area cache earlier (John Linville) [1454745 1454760]
-- [netdrv] nfp: document expected locking in the core (John Linville) [1454745 1454760]
-- [netdrv] nfp: move mutex code out of nfp_cppcore.c (John Linville) [1454745 1454760]
-- [netdrv] nfp: remove cpp mutex cache (John Linville) [1454745 1454760]
-- [netdrv] nfp: fail graciously when someone tries to grab global lock (John Linville) [1454745 1454760]
-- [netdrv] nfp: disallow sharing mutexes on the same machine (John Linville) [1454745 1454760]
-- [netdrv] nfp: add support for xdp_adjust_head() (John Linville) [1454760 1454745]
-- [netdrv] nfp: prepare metadata handling for xdp_adjust_head() (John Linville) [1454760 1454745]
-- [netdrv] nfp: reorganize pkt_off variable (John Linville) [1454760 1454745]
-- [netdrv] nfp: validate rx offset from the BAR and size down it's field (John Linville) [1454760 1454745]
-- [netdrv] nfp: store dma direction in data path structure (John Linville) [1454760 1454745]
-- [netdrv] nfp: switch to using data path structures for reconfiguration (John Linville) [1454760 1454745]
-- [netdrv] nfp: use dp to carry xdp_prog at reconfig time (John Linville) [1454760 1454745]
-- [netdrv] nfp: use dp to carry mtu at reconfig time (John Linville) [1454760 1454745]
-- [netdrv] nfp: use dp to carry fl_bufsz at reconfig time (John Linville) [1454760 1454745]
-- [netdrv] nfp: use dp to carry number of stack tx rings and vectors (John Linville) [1454760 1454745]
-- [netdrv] nfp: pass new data path to ring reconfig (John Linville) [1454760 1454745]
-- [netdrv] nfp: move control BAR pointer into data path structure (John Linville) [1454745 1454760]
-- [netdrv] nfp: separate data path information from the reset of adapter structure (John Linville) [1454760 1454745]
-- [netdrv] nfp: prevent theoretical buffer overrun in nfp_eth_read_ports (John Linville) [1454745 1454760]
-- [netdrv] nfp: add metadata format bit (John Linville) [1454760 1454745]
-- [netdrv] nfp: avoid rearming the interrupts when in busy poll (John Linville) [1454760 1454745]
-- [netdrv] nfp: store device pointer for the fastpath (John Linville) [1454760 1454745]
-- [netdrv] nfp: reorder variables in nfp_net_tx() (John Linville) [1454745 1454760]
-- [netdrv] nfp: move more ring debug info to debugfs (John Linville) [1454760 1454745]
-- [netdrv] nfp: implement .ndo_get_phys_port_name() (John Linville) [1454760 1454745]
-- [netdrv] nfp: add support for reporting CRC32 hash function (John Linville) [1454760 1454745]
-- [netdrv] nfp: fix potential use after free on xdp prog (John Linville) [1454760 1454745]
-- [netdrv] nfp: correct DMA direction in XDP DMA sync (John Linville) [1454760 1454745]
-- [netdrv] nfp: Use PCI_DEVICE_ID_NETRONOME_NFP* defines (John Linville) [1454760 1454745]
-- [netdrv] bpf: add initial bpf tracepoints (John Linville) [1454760 1454745]
-- [netdrv] bpf, xdp: drop rcu_read_lock from bpf_prog_run_xdp and move to caller (John Linville) [1454760 1454745]
-- [netdrv] bpf: drop unnecessary context cast from BPF_PROG_RUN (John Linville) [1454760 1454745]
-- [netdrv] nfp: add support for offload of XDP programs (John Linville) [1454760 1454745]
-- [netdrv] nfp: remove unnecessary parameters from nfp_net_bpf_offload() (John Linville) [1454760 1454745]
-- [netdrv] nfp: add XDP support in the driver (John Linville) [1454760 1454745]
-- [netdrv] sched: tc_mirred: Rename public predicates 'is_tcf_mirred_redirect' and 'is_tcf_mirred_mirror' (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: zero extend 4 byte context loads (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: improve handling for disabled BPF syscall (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add offload of TC direct action mode (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add support for legacy redirect action (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add packet marking support (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: allow offloaded filters to update stats (John Linville) [1454760 1454745]
-- [netdrv] nfp: bpf: add hardware bpf offload (John Linville) [1454760 1454745]
-- [netdrv] nfp: add BPF to NFP code translator (John Linville) [1454760 1454745]
-- [netdrv] nfp: use centralized net_device min/max MTU checking (John Linville) [1454760 1454745]
-
-* Thu Nov 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-802.el7]
-- [netdrv] mlxsw: spectrum_router: Avoid expensive lookup during route removal (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Track RIF of IPIP next hops (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Move VRF refcounting (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Only handle IPv4 and IPv6 events (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Prevent mirred-related crash on removal (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Fix EEPROM access in case of SFP/SFP+ (Ivan Vecera) [1486860]
-- [netdrv] uapi/linux/if_tunnel.h: include linux/if.h, linux/ip.h and linux/in6.h (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support GRE tunnels (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add loopback accessors (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Register for IPIP_DECAP_ERROR trap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Use existing decap route (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support IPv4 underlay decap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support IPv6 overlay encap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support IPv4 overlay encap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Make nexthops typed (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_rt6_is_gateway() (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Extract mlxsw_sp_fi_is_gateway() (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Introduce loopback RIFs (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Support FID-less RIFs (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add mlxsw_sp_ipip_ops (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Publish mlxsw_sp_l3proto (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Give mlxsw_reg_ratr_pack a type parameter (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Extract mlxsw_reg_ritr_mac_pack() (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Routing Tunnel Decap Properties Register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add mlxsw_reg_ralue_act_ip2me_tun_pack() (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Move enum mlxsw_reg_ratr_trap_id (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RATR to support IP-in-IP tunnels (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RITR to support loopback device (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Set abort trap in all virtual routers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Forbid linking to devices that have uppers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Offload goto_chain termination action (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_acl: Provide helper to lookup ruleset (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_acl: Allow to get group_id value for a ruleset (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Offload multichain TC rules (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Fix mrouter flag update (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Use correct config option (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add support for nexthop group consolidation for IPv6 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Prepare nexthop group's hash table for IPv6 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Use one LPM tree for all virtual routers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Pass argument explicitly (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Return void from deletion functions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: make mlxsw_config_profile const (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Release multicast groups during fini (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Don't warn about valid situations (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't ignore IPv6 notifications (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Abort on source-specific routes (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Add support for route replace (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Add support for IPv6 routes addition / deletion (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Sanitize IPv6 FIB rules (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Demultiplex FIB event based on family (Ivan Vecera) [1452524]
-- [netdrv] mlxsw: spectrum_router: Refresh offload indication upon group refresh (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't check state when refreshing offload indication (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Provide offload indication using nexthop flags (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: core: Use correct EMAD transaction ID in debug message (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Simplify a piece of code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Clarify a piece of code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Simplify a piece of code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg.h: Namespace IP2ME registers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Update specification of reg_ritr_type (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix a typo (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg.h: Fix a typo (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_acl: Fix a typo (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix build when IPv6 isn't enabled (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't batch neighbour deletion (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't offload routes next in list (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Update prefix count for IPv6 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Rename functions to add / delete a FIB entry (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Drop unnecessary parameter (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Mark IPv4 specific function accordingly (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Create IPv4 specific entry struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Set abort trap for IPv6 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Allow IPv6 routes to be programmed (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RALUE register with IPv6 support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Extend virtual routers with IPv6 support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Make FIB node retrieval family agnostic (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't create FIB node during lookup (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't assume neighbour type (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Set activity interval according to both neighbour tables (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Periodically dump active IPv6 neighbours (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RAUHTD register with IPv6 support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Reflect IPv6 neighbours to the device (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Update RAUHT register with IPv6 support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Configure RIFs based on IPv6 addresses (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Flood unregistered multicast packets to router (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for IPv6 traps (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Enable IPv6 on router interfaces (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Enable IPv6 router (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Improve IPv6 unregistered multicast flooding (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for IPv6 MLDv1/2 traps (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Trap IPv4 packets with Router Alert option (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Mark packets trapped in router (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Add support for ip tos (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add tos to the ipv4 acl block (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: acl: Add ip tos acl element (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Add support for ip ttl (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add ttl to the ipv4 acl block (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: acl: Add ip ttl acl element (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Check status of memory allocation (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Remove unused variable (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix use-after-free in route replace (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add missing rollback (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix NULL pointer dereference (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for access cable info via ethtool (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add MCIA register for cable info access (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Pass port argument to module mapping functions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Simplify port split flow (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Mark only first LPM tree as reserved (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Remove support for bridge bypass FDB add/del (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Add support for learning FDB through notification (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Change switchdev notifier API (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Remove support for bypass bridge port attributes/vlan set (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Add support for querying supported bridge flags (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Remove support for bridge FDB learning sync (Ivan Vecera) [1486860]
-- [netdrv] spectrum_flower: Implement gact trap TC action offload (Ivan Vecera) [1486860]
-- [netdrv] acl: Introduce ACL trap action (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Introduce ACL trap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: pci: Fix size of trap_id field in CQE (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Align RIF index allocation with existing code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Fix typo inside enumeration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Tidy up header file (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Rename the firmware file (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Implement the ethtool flash_device callback (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add bridge dependency for spectrum (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: add helper for updating statistics on all actions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Implement common RIF core (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Implement common FID core (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Determine VR first when creating RIF (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Flood packets to router after RIF creation (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Destroy RIF only based on its struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Configure RIFs based on RIF struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Extend the RIF struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Allocate RIF prior to its configuration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Allocate FID prior to RIF configuration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Replace vPorts with Port-VLAN (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Don't create FIDs upon creation of VLAN uppers (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Don't lose bridge port device during enslavement (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Replace vPorts with Port-VLAN (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Change signature of FID leave function (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Introduce Port-VLAN structure (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Set port's mode according to FID mappings (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Adjust RIF configuration for new firmware versions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Validate firmware revision on init (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: core: Create the mlxsw_fw_rev struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add the needed callbacks for mlxfw integration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Management Component Data Access register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Management Component Control register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Management Component Query Information register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Add support for tcp flags (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add acl block containing tcp flags for ipv4 (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: acl: Add tcp flags acl element (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Avoid possible NULL pointer dereference (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_dpipe: Fix sparse warnings (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Fix rif counter freeing routine (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_dpipe: Fix incorrect entry index (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Default ports to non-virtual mode (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Move PVID code to appropriate place (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Don't batch learning operations (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Don't batch STP operations (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Don't batch VLAN operations (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Remove redundant check (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Initialize RIFs in a separate function (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Move FIB notification block to router struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Move RIFs array to its rightful place (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_switchdev: Reduce scope of bridge struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Reduce scope of router struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_buffer: Reduce scope of shared buffer struct (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Simplify VRF enslavement (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add FID miss trap (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Allow ports to work under OVS master (Ivan Vecera) [1486860]
-- [netdrv] add netif_is_ovs_port helper (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Teach mlxsw_sp_port_vlan_set to accept any vlan range (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_flower: Set dummy FID before forward action (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add dummy FID initialization (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Implement action to set FID (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Fix indent in mlxsw_sp_netdevice_port_upper_event (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: convert to pci_alloc_irq_vectors (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add Support for erif table entries access (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add rif helper functions (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Support for counters on router interfaces (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Router Interface Counter Register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add definition for egress rif table (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add placeholder for dpipe (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add counter fields to RITR register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_kvdl: Cosmetic kvdl allocator API change (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Query cell size from firmware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Refactor port buffer configuration (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_buffers: Query shared buffer size from firmware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Query maximum number of ports from firmware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Query number of LPM trees from firmware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Remove debugfs interface (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: fix swapped order of arguments packets and bytes (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Cosmetic naming change (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't abort on l3mdev rules (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add support for VRFs on top of bridges (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Add support for VRFs (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Don't destroy RIF if L3 slave (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Associate RIFs with correct VR (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Fix SPVMLR max record count (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Fix SPVM max record count (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for TC flower offload statistics (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for counters on TCAM entries (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for Policing and Counting action block (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add periodic ACL rule activity update (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for direct rule access (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_acl_tcam: Add support for retrieving TCAM entry activity (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for generic flow counter allocation (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Add Monitoring General Purpose Counter Set register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for counter allocator (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Make abort mechanism VR-aware (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Explicitly Associate RIFs with VRs (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Refactor virtual router handling (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Simplify LPM tree allocation (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Place RIF related code with router code (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Allow more route types to be programmed (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Destroy RIFs based on last removed address (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Associate PVID vPort with appropriate netdev (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Don't assume upper device's type (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Sanitize bridge's upper devices (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for flower matches on VLAN ID, PCP (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add support for vlan modify TC action (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: pci: Remove unused bit (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Fix helper function and port variable names (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Change ipv6 unregistered mc table (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Update mc_disabled flag by switchdev attr (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Extend port_orig_get for bridge devices (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add an option to flood mc by mc_router_port (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Separate bc and mc floods (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Change max vfid (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Make port flood update more generic (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Break flood set func to be per table (Ivan Vecera) [1486860]
-- [netdrv] mellanox: switchx2: use new api ethtool_{get|set}_link_ksettings (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: add psample dependency for spectrum (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: Fix HTGT register length (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum: Add packet sample offloading support (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: reg: add the Monitoring Packet Sampling Configuration Register (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: cmd: Fix API name comments for event-queues (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: Fix mlxsw_i2c_write return value (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: spectrum_router: Adjust placement of FIB abort warning (Ivan Vecera) [1486860]
-- [netdrv] mlxsw: use net core MTU range checking in more drivers (Ivan Vecera) [1486860]
-
-* Thu Nov 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-801.el7]
-- [x86] mm: Unbreak modules that rely on external PAGE_KERNEL availability (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Perform a single memremap() of efi memmap (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Mark any EFI boot services areas as encrypted before freeing (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add invalid memory type to memremap_should_map_decrypted() (Suravee Suthikulpanit) [1361287]
-- [x86] Use FIXMAP_PAGE_NOCACHE in set_fixmap_nocache() (Suravee Suthikulpanit) [1361287]
-- [x86] serial/8250/8250_early: Use set_fixmap_io in serial driver (Suravee Suthikulpanit) [1361287]
-- [x86] realmode: Fix decryption of trampoline area (Suravee Suthikulpanit) [1361287]
-- [x86] iommu/amd: Do not disable SWIOTLB if SME is active (Suravee Suthikulpanit) [1361287]
-- [x86] kvm/x86: Avoid clearing the C-bit in rsvd_bits() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Make the SME mask a u64 (Suravee Suthikulpanit) [1361287]
-- [x86] xen: do not use _PAGE_IOMAP PTE flag for I/O mappings (Suravee Suthikulpanit) [1361287]
-- [x86] xen: do not use _PAGE_IOMAP in xen_remap_domain_mfn_range() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Fix SME encryption stack ptr handling (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Fix regression with huge pages on PAE (Suravee Suthikulpanit) [1361287]
-- [x86] Enable PAT to use cache mode translation tables (Suravee Suthikulpanit) [1361287]
-- [x86] acpi, x86/mm: Remove encryption mask from ACPI page protection type (Suravee Suthikulpanit) [1361287]
-- [x86] mm, kexec: Fix memory corruption with SME on successive kexecs (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to make use of Secure Memory Encryption (Suravee Suthikulpanit) [1361287]
-- [kernel] compiler-gcc.h: Introduce __nostackprotector function attribute (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Add early cmdline parsing for options with arguments (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Pass in size to early cmdline parsing (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Simplify early command line parsing (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Fix early command-line parsing when partial word matches (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Fix early command-line parsing when matching at end (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to encrypt the kernel in-place (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Use proper encryption attributes with /dev/mem (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Clean up types in xlate_dev_mem_ptr() some more (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Clean up types in xlate_dev_mem_ptr() (Suravee Suthikulpanit) [1361287]
-- [x86] xen/x86: Remove SME feature in PV guests (Suravee Suthikulpanit) [1361287]
-- [x86] mm, kexec: Allow kexec to be used with SME (Suravee Suthikulpanit) [1361287]
-- [x86] kvm/x86/svm: Support Secure Memory Encryption within KVM (Suravee Suthikulpanit) [1361287]
-- [x86] drm, fbdev: Do not specify encrypted memory for video mappings (Suravee Suthikulpanit) [1361287]
-- [x86] boot/realmode: Check for memory encryption on the APs (Suravee Suthikulpanit) [1361287]
-- [x86] iommu/amd: Allow the AMD IOMMU to work with memory encryption (Suravee Suthikulpanit) [1361287]
-- [x86] cpu/amd: Make the microcode level available earlier in the boot (Suravee Suthikulpanit) [1361287]
-- [x86] swiotlb: Add warnings for use of bounce buffers with SME (Suravee Suthikulpanit) [1361287]
-- [x86] swiotlb: Add memory encryption support (Suravee Suthikulpanit) [1361287]
-- [x86] arch/x86/kernel/pci-dma.c: fix dma_generic_alloc_coherent() when CONFIG_DMA_CMA is enabled (Suravee Suthikulpanit) [1361287]
-- [x86] dma-mapping: fix GFP_ATOMIC macro usage (Suravee Suthikulpanit) [1361287]
-- [x86] realmode: Decrypt trampoline area if memory encryption is active (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support for changing the memory encryption attribute (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to access persistent memory in the clear (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Use memremap() to map the MPF and MPC data (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to access boot related data in the clear (Suravee Suthikulpanit) [1361287]
-- [x86] memremap: add arch specific hook for MEMREMAP_WB mappings (Suravee Suthikulpanit) [1361287]
-- [x86] memremap: check pfn validity before passing to pfn_to_page() (Suravee Suthikulpanit) [1361287]
-- [x86] memremap: add MEMREMAP_WC flag (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Update EFI pagetable creation to work with SME (Suravee Suthikulpanit) [1361287]
-- [x86] mm/pat: Don't implicitly allow _PAGE_RW in kernel_map_pages_in_pgd() (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Update efi_mem_type() to return an error rather than 0 (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Add an EFI table address match function (Suravee Suthikulpanit) [1361287]
-- [x86] boot/e820: Add support to determine the E820 type of an address (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Insure that boot memory areas are mapped properly (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support for early encryption/decryption of memory (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Extend early_memremap() support with additional attrs (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add SME support for read_cr3_pa() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Provide general kernel support for memory encryption (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in memtype related functions (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in setting page attributes (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in arch/x86/mm/init_64.c (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in track_pfn_remap() and track_pfn_insert() (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in mm/ioremap.c (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in mm/iomap_32.c (Suravee Suthikulpanit) [1361287]
-- [x86] Use new cache mode type in asm/pgtable.h (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Simplify p[g4um]d_page() macros (Suravee Suthikulpanit) [1361287]
-- [x86] asm: Move PUD_PAGE macros to page_types.h (Suravee Suthikulpanit) [1361287]
-- [x86] asm: Add pud/pmd mask interfaces to handle large PAT bit (Suravee Suthikulpanit) [1361287]
-- [x86] asm: Fix pud/pmd interfaces to handle large PAT bit (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add support to enable SME in early boot processing (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Split read_cr3() into read_cr3_pa() and __read_cr3() (Suravee Suthikulpanit) [1361287]
-- [x86] init: Clear 'init_level4_pgt' earlier (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Micro-optimize reset_early_page_tables() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Remove phys_to_virt() usage in ioremap() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Add Secure Memory Encryption (SME) support (Suravee Suthikulpanit) [1361287]
-- [x86] cpu/amd: Handle SME reduction in physical address size (Suravee Suthikulpanit) [1361287]
-- [x86] cpu/amd: Add the Secure Memory Encryption CPU feature (Suravee Suthikulpanit) [1361287]
-- [x86] mpparse, x86/acpi, x86/pci, x86/dmi, sfi: Use memremap() for RAM mappings (Suravee Suthikulpanit) [1361287]
-- [x86] mm/pat: Set write-protect cache mode for full PAT support (Suravee Suthikulpanit) [1361287]
-- [x86] cpu/amd: Document AMD Secure Memory Encryption (SME) (Suravee Suthikulpanit) [1361287]
-- [x86] efi: Add NV memory attribute (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Put __startup_64() into .head.text (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Rewrite startup_64() in C (Suravee Suthikulpanit) [1361287]
-- [x86] boot: Simplify kernel load address alignment check (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Use 'push' instead of 'call' in start_cpu() (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Optimize fixmap page fixup (Suravee Suthikulpanit) [1361287]
-- [x86] boot/64: Use defines for page size (Suravee Suthikulpanit) [1361287]
-- [x86] head: Remove useless zeroed word (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Remove flush_tlb() and flush_tlb_current_task() (Suravee Suthikulpanit) [1361287]
-- [x86] mm: Audit and remove any unnecessary uses of module.h (Suravee Suthikulpanit) [1361287]
-- [x86] asm: Make sure verify_cpu() has a good stack (Suravee Suthikulpanit) [1361287]
-
-* Wed Nov 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-800.el7]
-- [net] ipv4: fib: Only flush FIB aliases belonging to currently flushed table (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Dump tables during registration to FIB chain (Ivan Vecera) [1500886]
-- [net] Add module reference to FIB notifiers (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Add helpers to hold / drop a reference on rt6_info (Ivan Vecera) [1500886]
-- [net] ipv6: Regenerate host route according to node pointer upon loopback up (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Unlink replaced routes from their nodes (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Don't assume only nodes hold a reference on routes (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Add offload indication to routes (Ivan Vecera) [1500886]
-- [net] ipv6: fib_rules: Dump rules during registration to FIB chain (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Add in-kernel notifications for route add / delete (Ivan Vecera) [1500886]
-- [net] ipv6: fib: Add FIB notifiers callbacks (Ivan Vecera) [1500886]
-- [net] ipv6: fib_rules: Check if rule is a default rule (Ivan Vecera) [1500886]
-- [net] fib_rules: Implement notification logic in core (Ivan Vecera) [1500886]
-- [net] rocker: Ignore address families other than IPv4 (Ivan Vecera) [1500886]
-- [net] mlxsw: spectrum_router: Ignore address families other than IPv4 (Ivan Vecera) [1500886]
-- [net] core: Make the FIB notification chain generic (Ivan Vecera) [1500886]
-- [net] ipv4: fib: Set offload indication according to nexthop flags (Ivan Vecera) [1500886]
-- [net] ipv4: fib_rules: Dump FIB rules when registering FIB notifier (Ivan Vecera) [1500886]
-- [net] ipv4: fib_rules: Add notifier info to FIB rules notifications (Ivan Vecera) [1500886]
-- [net] ipv4: fib_rules: Check if rule is a default rule (Ivan Vecera) [1500886]
-- [net] ipv4: fib: Remove redundant argument (Ivan Vecera) [1500886]
-- [net] ipv4: fib: Move FIB notification code to a separate file (Ivan Vecera) [1500886]
-- [net] netfilter: conntrack: fix race between nf_conntrack proc read and hash resize (Matteo Croce) [1487465]
-- [net] netfilter: conntrack: fix lookup race during hash resize (Matteo Croce) [1487465]
-- [net] netfilter: conntrack: move generation seqcnt out of netns_ct (Matteo Croce) [1487465]
-- [net] netfilter: nf_tables: fix mismatch in big-endian system (lorenzo bianconi) [1451551]
-- [net] xdp: Build a facade of the driver facing xdp code to ease backports (Neil Horman) [1510502]
-
-* Mon Nov 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-799.el7]
-- [fs] ext4: Don't clear SGID when inheriting ACLs (Lukas Czerner) [1473480]
-- [fs] ext4: preserve i_mode if __ext4_set_acl() fails (Lukas Czerner) [1473480]
-- [fs] Avoid invalidation in interrupt context in dio_complete() (Lukas Czerner) [1457517]
-- [fs] Fix page cache inconsistency when mixing buffered and AIO DIO (Lukas Czerner) [1457517]
-- [fs] nfs: revert "nfs: Move the flock open mode check into nfs_flock()" (Benjamin Coddington) [1497225]
-- [fs] xfs: trim writepage mapping to within eof (Brian Foster) [1472081]
-- [fs] gfs2: Add calls to gfs2_holder_uninit in two error handlers (Andreas Grunbacher) [1505889]
-- [fs] ext4: fix data corruption for mmap writes (Lukas Czerner) [1461267]
-- [fs] gfs2: Implement SEEK_HOLE / SEEK_DATA via iomap (Andreas Grunbacher) [1132508]
-- [fs] gfs2: Switch fiemap implementation to use iomap (Andreas Grunbacher) [1132508]
-- [fs] gfs2: Implement iomap for block_map (Andreas Grunbacher) [1132508]
-- [fs] gfs2: Make height info part of metapath (Andreas Grunbacher) [1132508]
-- [fs] gfs2: Clarify gfs2_block_map (Andreas Grunbacher) [1132508]
-- [fs] iomap: Add IOMAP_F_DATA_INLINE flag (Andreas Grunbacher) [1132508]
-- [fs] iomap: Switch from blkno to disk offset (Andreas Grunbacher) [1132508]
-- [fs] xfs: fix contiguous dquot chunk iteration livelock (Bill O'Donnell) [1469359]
-- [fs] vfs: in iomap seek_{hole, data}, return -ENXIO for negative offsets (Bill O'Donnell) [1469359]
-- [fs] xfs: Switch to iomap for SEEK_HOLE / SEEK_DATA (Bill O'Donnell) [1469359]
-- [fs] xfs: rewrite xfs_dq_get_next_id using xfs_iext_lookup_extent (Bill O'Donnell) [1469359]
-- [fs] vfs: Add iomap_seek_hole and iomap_seek_data helpers (Bill O'Donnell) [1469359]
-- [fs] vfs: Add page_cache_seek_hole_data helper (Bill O'Donnell) [1469359]
-- [fs] xfs: new inode extent list lookup helpers (Bill O'Donnell) [1469359]
-- [fs] xfs: provide helper for counting extents from if_bytes (Bill O'Donnell) [1469359]
-- [fs] xfs: wait on new inodes during quotaoff dquot release (Bill O'Donnell) [1429193]
-- [fs] xfs: update ag iterator to support wait on new inodes (Bill O'Donnell) [1429193]
-- [fs] xfs: support ability to wait on new inodes (Bill O'Donnell) [1429193]
-- [fs] ext4: prevent data corruption with inline data + DAX (Eric Sandeen) [1493850]
-- [fs] ext4: prevent data corruption with journaling + DAX (Eric Sandeen) [1493850]
-- [fs] ext4: add ext4_should_use_dax() (Eric Sandeen) [1493850]
-- [fs] rbd: use GFP_NOIO for parent stat and data requests (Ilya Dryomov) [1510600]
-- [fs] ceph: unlock dangling spinlock in try_flush_caps() (Ilya Dryomov) [1510600]
-- [fs] kabi: Adjust O_TMPFILE support to use kABI safe struct inode_operations_wrapper (Carlos Maiolino) [1428677]
-- [fs] xfs: initialize default acls for ->tmpfile() (Carlos Maiolino) [1428677]
-- [fs] xfs: add O_TMPFILE support (Carlos Maiolino) [1428677]
-- [fs] ext[34]: fix double put in tmpfile (Carlos Maiolino) [1428677]
-- [fs] ext4: fix a BUG when opening a file with O_TMPFILE flag (Carlos Maiolino) [1428677]
-- [fs] ext4: ->tmpfile() support (Carlos Maiolino) [1428677]
-- [fs] Fix file mode for O_TMPFILE (Carlos Maiolino) [1428677]
-- [fs] path_openat(): fix double fput() (Carlos Maiolino) [1428677]
-- [fs] allow build_open_flags() to return an error (Carlos Maiolino) [1428677]
-- [fs] Safer ABI for O_TMPFILE (Carlos Maiolino) [1428677]
-- [fs] Allow do_tmpfile set I_LINKABLE inode state (Carlos Maiolino) [1428677]
-- [fs] Implement O_TMPFILE (Carlos Maiolino) [1428677]
-- [fs] fuse: allow server to run in different pid_ns (Miklos Szeredi) [1438767]
-- [fs] fuse: Add support for pid namespaces (Miklos Szeredi) [1438767]
-- [fs] cifs: fix oplock break deadlocks (Leif Sahlberg) [1513280]
-- [fs] cifs: Fix some return values in case of error in 'crypt_message' (Leif Sahlberg) [1513280]
-- [fs] cifs: Improve readdir verbosity (Leif Sahlberg) [1513280]
-- [fs] cifs: transport: Use time_after for time comparison (Leif Sahlberg) [1513280]
-- [fs] smb2: Fix share type handling (Leif Sahlberg) [1513280]
-- [fs] cifs: cifsacl: Use a temporary ops variable to reduce code length (Leif Sahlberg) [1513280]
-- [fs] Don't delay freeing mids when blocked on slow socket write of request (Leif Sahlberg) [1513280]
-- [fs] cifs: silence lockdep splat in cifs_relock_file() (Leif Sahlberg) [1513280]
-- [fs] cifs: add misssing SFM mapping for doublequote (Leif Sahlberg) [1513280]
-- [fs] cifs: fix CIFS_IOC_GET_MNT_INFO oops (Leif Sahlberg) [1513280]
-- [fs] cifs: fix mapping of SFM_SPACE and SFM_PERIOD (Leif Sahlberg) [1513280]
-- [fs] cifs: fix CIFS_ENUMERATE_SNAPSHOTS oops (Leif Sahlberg) [1513280]
-- [fs] cifs: fix leak in FSCTL_ENUM_SNAPS response handling (Leif Sahlberg) [1513280]
-- [fs] cifs: fix IPv6 link local, with scope id, address parsing (Leif Sahlberg) [1513280]
-- [fs] cifs: small underflow in cnvrtDosUnixTm() (Leif Sahlberg) [1513280]
-- [fs] cifs: don't check for failure from mempool_alloc() (Leif Sahlberg) [1513280]
-
-* Fri Nov 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-798.el7]
-- [net] rtnetlink: fix missing size for IFLA_IF_NETNSID (Jiri Benc) [1497774]
-- [net] rtnetlink: use netnsid to query interface (Jiri Benc) [1497774]
-- [net] openvswitch: reliable interface indentification in port dumps (Jiri Benc) [1497774]
-- [net] export peernet2id_alloc (Jiri Benc) [1497774]
-- [net] rtnetlink: advertise the new nsid when the netns iface changes (Jiri Benc) [1497774]
-- [net] rtnelink: Move link dump consistency check out of the loop (Jiri Benc) [1497774]
-- [net] rtnetlink: Improve handling of failures on link and route dumps (Jiri Benc) [1497774]
-- [net] openvswitch: Fix an error handling path in 'ovs_nla_init_match_and_action()' (Jiri Benc) [1497774]
-- [net] openvswitch: fix skb_panic due to the incorrect actions attrlen (Jiri Benc) [1497774]
-- [net] openvswitch: Remove unnecessary newlines from OVS_NLERR uses (Jiri Benc) [1497774]
-- [net] openvswitch: fix potential out of bound access in parse_ct (Jiri Benc) [1497774]
-- [net] openvswitch: Optimize operations for OvS flow_stats (Jiri Benc) [1497774]
-- [net] openvswitch: Optimize updating for OvS flow_stats (Jiri Benc) [1497774]
-- [net] openvswitch: Fix for force/commit action failures (Jiri Benc) [1497774]
-- [net] openvswitch: fix mis-ordered comment lines for ovs_skb_cb (Jiri Benc) [1497774]
-- [net] openvswitch: Avoid using stack larger than 1024 (Jiri Benc) [1497774]
-- [net] openvswitch: warn about missing first netlink attribute (Jiri Benc) [1497774]
-- [net] openvswitch: Add eventmask support to CT action (Jiri Benc) [1497774]
-- [net] openvswitch: Typo fix (Jiri Benc) [1497774]
-- [net] openvswitch: Delete conntrack entry clashing with an expectation (Jiri Benc) [1497774]
-- [net] openvswitch: Fix ovs_flow_key_update() (Jiri Benc) [1497774]
-- [net] openvswitch: Fix refcount leak on force commit (Jiri Benc) [1497774]
-- [net] openvswitch: Refactor sample and recirc actions implementation (Jiri Benc) [1497774]
-- [net] openvswitch: Optimize sample action for the clone use cases (Jiri Benc) [1497774]
-- [net] openvswitch: Refactor recirc key allocation (Jiri Benc) [1497774]
-- [net] openvswitch: Deferred fifo API change (Jiri Benc) [1497774]
-- [net] openvswitch: Add missing case OVS_TUNNEL_KEY_ATTR_PAD (Jiri Benc) [1497774]
-- [net] openvswitch: Set the ipv6 source tunnel key address attribute correctly (Jiri Benc) [1497774]
-- [net] openvswitch: actions: fixed a brace coding style warning (Jiri Benc) [1497774]
-- [net] openvswitch: Set event bit after initializing labels (Jiri Benc) [1497774]
-- [net] openvswitch: Set internal device max mtu to ETH_MAX_MTU (Jiri Benc) [1497774]
-- [net] openvswitch: Pack struct sw_flow_key (Jiri Benc) [1497774]
-- [net] openvswitch: Add force commit (Jiri Benc) [1497774]
-- [net] openvswitch: Add original direction conntrack tuple to sw_flow_key (Jiri Benc) [1497774]
-- [net] openvswitch: Inherit master's labels (Jiri Benc) [1497774]
-- [net] openvswitch: Refactor labels initialization (Jiri Benc) [1497774]
-- [net] openvswitch: Simplify labels length logic (Jiri Benc) [1497774]
-- [net] openvswitch: Unionize ovs_key_ct_label with a u32 array (Jiri Benc) [1497774]
-- [net] openvswitch: Do not trigger events for unconfirmed connections (Jiri Benc) [1497774]
-- [net] openvswitch: Simplify do_execute_actions() (Jiri Benc) [1497774]
-- [net] openvswitch: upcall: Fix vlan handling (Jiri Benc) [1497774]
-- [net] openvswitch: Add a missing break statement (Jiri Benc) [1497774]
-- [net] openvswitch: allow L3 netdev ports (Jiri Benc) [1497774]
-- [net] openvswitch: add Ethernet push and pop actions (Jiri Benc) [1497774]
-- [net] openvswitch: netlink: support L3 packets (Jiri Benc) [1497774]
-- [net] openvswitch: add processing of L3 packets (Jiri Benc) [1497774]
-- [net] openvswitch: support MPLS push and pop for L3 packets (Jiri Benc) [1497774]
-- [net] openvswitch: pass mac_proto to ovs_vport_send (Jiri Benc) [1497774]
-- [net] openvswitch: add mac_proto field to the flow key (Jiri Benc) [1497774]
-- [net] openvswitch: use hard_header_len instead of hardcoded ETH_HLEN (Jiri Benc) [1497774]
-- [net] openvswitch: use core MTU range checking in core net infra (Jiri Benc) [1497774]
-- [net] openvswitch: remove unnecessary EXPORT_SYMBOLs (Jiri Benc) [1497774]
-- [net] openvswitch: remove unused functions (Jiri Benc) [1497774]
-- [net] openvswitch: use alias for genetlink family names (Jiri Benc) [1497774]
-- [net] openvswitch: 802.1ad uapi changes (Jiri Benc) [1497774]
-- [net] openvswitch: Free tmpl with tmpl_free (Jiri Benc) [1497774]
-- [net] openvswitch: use __u32 from linux/types.h (Jiri Benc) [1497774]
-- [net] openvswitch: Only set mark and labels with a commit flag (Jiri Benc) [1497774]
-- [net] openvswitch: Set mark and labels before confirming (Jiri Benc) [1497774]
-- [net] openvswitch: Add packet len info to upcall (Jiri Benc) [1497774]
-- [net] openvswitch: Add packet truncation support (Jiri Benc) [1497774]
-- [net] ip_tunnels: define IP_TUNNEL_OPTS_MAX and use it (Jiri Benc) [1497774]
-- [net] oenvswitch: Change pseudohdr argument of inet_proto_csum_replace* to be a bool (Jiri Benc) [1497774]
-- [net] openvswitch: remove extraneous include (Jiri Benc) [1497774]
-- [net] ipv6: orphan skbs in reassembly unit (Jiri Benc) [1497774]
-- [net] netfilter: conntrack: remove unused netns_ct member (Jiri Benc) [1497774]
-- [net] netfilter: conntrack: avoid excess memory allocation (Jiri Benc) [1497774]
-- [net] netfilter: conntrack: support a fixed size of 128 distinct labels (Jiri Benc) [1497774]
-- [net] netfilter: connlabels: move helpers to xt_connlabel (Jiri Benc) [1497774]
-- [net] openvswitch: correctly fragment packet with mpls headers (Jiri Benc) [1497774]
-- [net] openvswitch: use mpls_hdr (Jiri Benc) [1497774]
-- [net] mpls: move mpls_hdr to a common location (Jiri Benc) [1497774]
-- [net] openvswitch: mpls: set network header correctly on key extract (Jiri Benc) [1497774]
-- [net] veth: Set features for MPLS (Jiri Benc) [1497774]
-- [net] mpls: Fixups for GSO (Jiri Benc) [1497774]
-- [net] mpls: Allow mpls_gso and mpls_router to be built as modules (Jiri Benc) [1497774]
-- [net] mpls: spelling: s/conceved/conceived/, s/as/a/ (Jiri Benc) [1497774]
-- [net] mpls: Refactor how the mpls module is built (Jiri Benc) [1497774]
-- [net] Remove MPLS GSO feature (Jiri Benc) [1497774]
-- [net] mpls: Allow mpls_gso to be built as module (Jiri Benc) [1497774]
-- [net] mpls: Fix mpls_gso handler (Jiri Benc) [1497774]
-- [net] genetlink: Make family a signed integer (Jiri Benc) [1497774]
-- [net] genetlink: Fix generic netlink family unregister (Jiri Benc) [1497774]
-- [net] genetlink: fix counting regression on ctrl_dumpfamily() (Jiri Benc) [1497774]
-- [net] genetlink: fix error return code in genl_register_family() (Jiri Benc) [1497774]
-- [net] genetlink: use idr to track families (Jiri Benc) [1497774]
-- [kernel] kabi: add RH_KABI_CONST (Jiri Benc) [1497774]
-- [net] genetlink: statically initialize families (Jiri Benc) [1497774]
-- [net] drop_monitor: fix the value of maxattr (Jiri Benc) [1497774]
-- [net] genetlink: no longer support using static family IDs (Jiri Benc) [1497774]
-- [net] genetlink: introduce and use genl_family_attrbuf() (Jiri Benc) [1497774]
-- [net] nfnetlink: remove nfnetlink_alloc_skb (Jiri Benc) [1497774]
-- [net] revert "genl: Add genlmsg_new_unicast() for unicast message allocation" (Jiri Benc) [1497774]
-- [net] openvswitch: revert: "Enable memory mapped Netlink i/o" (Jiri Benc) [1497774]
-- [net] netlink: remove mmapped netlink support (Jiri Benc) [1497774]
-- [net] genetlink: simplify genl_notify (Jiri Benc) [1497774]
-- [net] genetlink: synchronize socket closing and family removal (Jiri Benc) [1497774]
-- [net] genetlink: document parallel_ops (Jiri Benc) [1497774]
-- [net] netlink: call unbind when releasing socket (Jiri Benc) [1497774]
-- [net] netlink: update listeners directly when removing socket (Jiri Benc) [1497774]
-- [net] netlink: rename netlink_unbind() to netlink_undo_bind() (Jiri Benc) [1497774]
-- [net] netlink: implement unbind to netlink_setsockopt NETLINK_DROP_MEMBERSHIP (Jiri Benc) [1497774]
-
-* Wed Nov 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-797.el7]
-- [md] dm bufio: fix integer overflow when limiting maximum cache size (Mike Snitzer) [1512096]
-- [md] dm: clear all discard attributes in queue_limits when discards are disabled (Mike Snitzer) [1512096]
-- [md] dm: do not set 'discards_supported' in targets that do not need it (Mike Snitzer) [1512096]
-- [md] dm: discard support requires all targets in a table support discards (Mike Snitzer) [1512096]
-- [md] dm mpath: remove annoying message of 'blk_get_request() returned -11' (Mike Snitzer) [1512096]
-- [md] dm space map metadata: use ARRAY_SIZE (Mike Snitzer) [1512096]
-- [md] dm: small cleanup in dm_get_md() (Mike Snitzer) [1512096]
-- [md] dm: fix race between dm_get_from_kobject() and __dm_destroy() (Mike Snitzer) [1512096]
-- [md] dm cache: lift common migration preparation code to alloc_migration() (Mike Snitzer) [1512096]
-- [md] dm cache: remove usused deferred_cells member from struct cache (Mike Snitzer) [1512096]
-- [md] dm cache policy smq: allocate cache blocks in order (Mike Snitzer) [1512096]
-- [md] dm cache policy smq: change max background work from 10240 to 4096 blocks (Mike Snitzer) [1512096]
-- [md] dm cache background tracker: limit amount of background work that may be issued at once (Mike Snitzer) [1512096]
-- [md] dm cache policy smq: take origin idle status into account when queuing writebacks (Mike Snitzer) [1512096]
-- [md] dm cache policy smq: handle races with queuing background_work (Mike Snitzer) [1512096]
-- [md] dm cache: pass cache structure to mode functions (Mike Snitzer) [1512096]
-- [md] dm cache: fix race condition in the writeback mode overwrite_bio optimisation (Mike Snitzer) [1512095]
-- [md] dm raid: fix panic when attempting to force a raid to sync (Mike Snitzer) [1512096]
-- [x86] x86/smpboot: Fix __max_logical_packages estimate (Prarit Bhargava) [1474709]
-- [x86] x86/topology: Avoid wasting 128k for package id array (Prarit Bhargava) [1474709]
-- [x86] perf/x86/intel/uncore: Cache logical pkg id in uncore driver (Prarit Bhargava) [1474709]
-- [x86] kvm: mmu: always terminate page walks at level 1 (Paolo Bonzini) [1500381] {CVE-2017-12188}
-- [x86] kvm: nvmx: update last_nonleaf_level when initializing nested EPT (Paolo Bonzini) [1500381] {CVE-2017-12188}
-- [net] act_tunnel_key: fix NULL pointer dereference in tunnel_key_release() (Davide Caratti) [1511309]
-- [net] act_tunnel_key: fix wrong pointer dereference in tcf_idr_create() (Davide Caratti) [1511309]
-- [net] packet: in packet_do_bind, test fanout with bind_lock held (Hangbin Liu) [1505429] {CVE-2017-15649}
-- [net] packet: hold bind lock when rebinding to fanout hook (Hangbin Liu) [1505429] {CVE-2017-15649}
-- [net] packet: Do not call fanout_release from atomic contexts (Hangbin Liu) [1505429] {CVE-2017-15649}
-- [net] packet: fix races in fanout_add() (Hangbin Liu) [1505429] {CVE-2017-15649}
-- [net] bonding: remove rtmsg_ifinfo called after bond_lower_state_changed (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_CHANGELOWERSTATE event process back to rtnetlink_event (Stefano Brivio) [1505975]
-- [net] bonding: remove rtmsg_ifinfo called in bond_master_upper_dev_link (Stefano Brivio) [1505975]
-- [net] rtnetlink: do not set notification for tx_queue_len in do_setlink (Stefano Brivio) [1505975]
-- [net] rtnetlink: check DO_SETLINK_NOTIFY correctly in do_setlink (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_CHANGEUPPER event process back in rtnetlink_event (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_POST_TYPE_CHANGE event process back in rtnetlink_event (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_CHANGE_TX_QUEUE_LEN event process back in rtnetlink_event (Stefano Brivio) [1505975]
-- [net] rtnetlink: bring NETDEV_CHANGEMTU event process back in rtnetlink_event (Stefano Brivio) [1505975]
-- [net] revert "rtnetlink: Do not generate notifications for CHANGEADDR event" (Stefano Brivio) [1505975]
-- [net] rtnetlink: use the new rtnl_get_event() interface (Vlad Yasevich) [1438106]
-- [net] rtnl: Add support for netdev event to link messages (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for NETDEV_CHANGE_TX_QUEUE_LEN event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for NETDEV_CHANGEUPPER event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for CHANGELOWERSTATE event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for PRECHANGEUPPER event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for POST_TYPE_CHANGE event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for CHANGEADDR event (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notification for UDP_TUNNEL_PUSH_INFO (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Do not generate notifications for MTU events (Vlad Yasevich) [1438106]
-- [net] rtnetlink: Convert rtnetlink_event to white list (Vlad Yasevich) [1438106]
-- [crypto] rsa: Disable fips admission of rsa crypto (Neil Horman) [1475478]
-- [crypto] testmgr - add test cases for CRC32 (Neil Horman) [1475478]
-- [crypto] Add missing chunk from addition of zlib tests (Neil Horman) [1475478]
-- [crypto] acomp - update testmgr with support for acomp (Neil Horman) [1475478]
-- [crypto] qat - avoid an uninitialized variable warning (Neil Horman) [1475478]
-- [crypto] qat - comply with crypto_akcipher_maxsize() (Neil Horman) [1475478]
-- [crypto] qat - comply with crypto_kpp_maxsize() (Neil Horman) [1475478]
-- [crypto] testmgr - fix !x==y confusion (Neil Horman) [1475478]
-- [crypto] scomp - add support for deflate rfc1950 (zlib) (Neil Horman) [1475478]
-- [crypto] scomp - allow registration of multiple scomps (Neil Horman) [1475478]
-- [crypto] acomp - allow registration of multiple acomps (Neil Horman) [1475478]
-- [crypto] kpp - constify buffer passed to crypto_kpp_set_secret() (Neil Horman) [1475478]
-- [crypto] qat - increase number of supported devices (Neil Horman) [1475478]
-- [crypto] qat - modify format of dev top level debugfs entries (Neil Horman) [1475478]
-- [crypto] qat - replace hardcoded BIT(0) in vf_isr (Neil Horman) [1475478]
-- [crypto] qat - fix comments describing adf_disable_sriov() (Neil Horman) [1475478]
-- [crypto] qat - fix indentation (Neil Horman) [1475478]
-- [crypto] acomp - add support for deflate via scomp (Neil Horman) [1475478]
-- [crypto] acomp - add driver-side scomp interface (Neil Horman) [1475478]
-- [crypto] acomp - add asynchronous compression api (Neil Horman) [1475478]
-- [kernel] audit: Record fanotify access control decisions (Steve Grubb) [1451872]
-
-* Tue Nov 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-796.el7]
-- [fs] vfs: fix softlockup in shrink_dcache_for_umount() (Miklos Szeredi) [1471875]
-- [fs] cifs: check MaxPathNameComponentLength != 0 before using it (Leif Sahlberg) [1484619]
-- [fs] cifs: remove endian related sparse warning (Leif Sahlberg) [1484619]
-- [fs] cifs: return ENAMETOOLONG for overlong names in cifs_open()/cifs_lookup() (Leif Sahlberg) [1484619]
-- [fs] dlm: Eliminate CF_CONNECT_PENDING flag (Robert S Peterson) [1498538]
-- [fs] dlm: use sock_create_lite inside tcp_accept_from_sock (Robert S Peterson) [1498538]
-- [fs] dlm: Fix saving of NULL callbacks (Robert S Peterson) [1498538]
-- [pci] Detach driver before procfs & sysfs teardown on device remove (Alex Williamson) [1447196]
-- [hid] wacom: switch Dell canvas into highres mode (Benjamin Tissoires) [1507821]
-- [x86] module: Detect and skip invalid relocations (Josh Poimboeuf) [1512763]
-- [x86] kvm: svm: add support for RDTSCP (Eduardo Habkost) [1511805]
-- [x86] tsc: Force TSC_ADJUST register to value >= zero (Prarit Bhargava) [1497055]
-- [x86] tsc: Validate cpumask pointer before accessing it (Prarit Bhargava) [1497055]
-- [x86] tsc: Try to adjust TSC if sync test fails (Prarit Bhargava) [1497055]
-- [x86] tsc: Prepare warp test for TSC adjustment (Prarit Bhargava) [1497055]
-- [x86] tsc: Move sync cleanup to a safe place (Prarit Bhargava) [1497055]
-- [x86] tsc: Sync test only for the first cpu in a package (Prarit Bhargava) [1497055]
-- [x86] tsc: Verify TSC_ADJUST from idle (Prarit Bhargava) [1497055]
-- [x86] tsc: Store and check TSC ADJUST MSR (Prarit Bhargava) [1497055]
-- [x86] tsc: Detect random warps (Prarit Bhargava) [1497055]
-- [s390] noexec: execute kexec datamover without DAT (Hendrik Brueckner) [1513893]
-- [s390] fix transactional execution control register handling (Hendrik Brueckner) [1513894]
-- [nvme] update timeout module parameter type (David Milburn) [1507889]
-- [virt] kvm: make pid available for uevents without debugfs (Paolo Bonzini) [1469484]
-- [virt] revert "kvm: introduce guest count uevent" (Paolo Bonzini) [1469484]
-- [virt] kvm: trigger uevents when creating or destroying a VM (Paolo Bonzini) [1469484]
-- [netdrv] bonding: fix slave stuck in BOND_LINK_FAIL state (Jarod Wilson) [1500430 1496837 1493777]
-- [netdrv] bonding: discard lowest hash bit for 802.3ad layer 3+4 (Jarod Wilson) [1493777]
-- [netdrv] bonding: speed/duplex update at NETDEV_UP event (Jarod Wilson) [1493777]
-- [netdrv] e1000e: Be drop monitor friendly (David Arcari) [1505547]
-- [netdrv] e1000e: apply burst mode settings only on default (David Arcari) [1505547]
-- [netdrv] e1000e: fix buffer overrun while the I219 is processing DMA transactions (David Arcari) [1505547]
-- [netdrv] e1000e: Avoid receiver overrun interrupt bursts (David Arcari) [1505547]
-- [netdrv] e1000e: Separate signaling for link check/link up (David Arcari) [1505547]
-- [netdrv] e1000e: Fix return value test (David Arcari) [1505547]
-- [netdrv] e1000e: Fix wrong comment related to link detection (David Arcari) [1505547]
-- [netdrv] e1000e: Fix error path in link detection (David Arcari) [1505547]
-- [netdrv] e1000e: use setup_timer() helper (David Arcari) [1505547]
-- [netdrv] ibmvnic: Add vnic client data to login buffer (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Set state UP (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Fix failover error path for non-fatal resets (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Update reset infrastructure to support tunable parameters (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Let users change net device features (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Enable TSO support (Gustavo Duarte) [1508849]
-- [netdrv] ibmvnic: Enable scatter-gather support (Gustavo Duarte) [1508849]
-
-* Tue Nov 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-795.el7]
-- [mm] huge pagecache: mmap_sem is unlocked when truncation splits pmd (Eric Sandeen) [1514874]
-- [mm] thp: skip file huge pmd on copy_huge_pmd() (Jeff Moyer) [1513722]
-- [mm] fix memory leak in copy_huge_pmd() (Jeff Moyer) [1513722]
-- [mm] dax: fix DAX PMD pgoff usage (Jeff Moyer) [1513605]
-- [kernel] fix device-dax pud write-faults triggered by get_user_pages() (Larry Woodman) [1457572 1457561]
-- [dax] explicitly set noop_backing_dev_info (Larry Woodman) [1457572 1457561]
-- [tools] fix mock pmem_direct_access() implementation (Larry Woodman) [1457572 1457561]
-- [x86] Remove paravirt ops pmd_update[_defer] and pte_update_defer (Larry Woodman) [1457572 1457561]
-- [dax] switch to srcu, fix rcu_read_lock() vs pte allocation (Larry Woodman) [1471656 1457572 1457561]
-- [mm] fix cache mode tracking in vm_insert_mixed() (Larry Woodman) [1457572 1457561]
-- [kernel] fix cache mode of dax pmd mappings (Larry Woodman) [1457572 1457561]
-- [mm] update with WRITE_ONCE/READ_ONCE (Larry Woodman) [1457572 1457561]
-- [kernel] do not hint for NUMA balancing on VM_MIXEDMAP mappings (Larry Woodman) [1457572 1457561]
-- [mm] skip VM_HUGETLB and VM_MIXEDMAP VMA for lazy mbind (Larry Woodman) [1457572 1457561]
-- [x86] Honour passed pgprot in track_pfn_insert() and track_pfn_remap() (Larry Woodman) [1457572 1457561]
-- [dax] revert "rhel: device-dax: only support page-sized faults" (Larry Woodman) [1457572 1457561]
-- [x86] fix get_user_pages() vs device-dax pud mappings (Larry Woodman) [1457572 1457561]
-- [dax] fix pud fault fallback handling (Larry Woodman) [1457572 1457561]
-- [dax] fix pmd/pte fault fallback handling (Larry Woodman) [1457572 1457561]
-- [mm] replace FAULT_FLAG_SIZE with parameter to huge_fault (Larry Woodman) [1457572 1457561]
-- [dax] Support for transparent PUD pages for device DAX (Larry Woodman) [1457572 1457561]
-- [mm] dd support for PUD-sized transparent hugepages (Larry Woodman) [1457572 1457561]
-- [mm] change ->pmd_fault to ->huge_fault (Larry Woodman) [1457572 1457561]
-- [mm] change pmd_fault() to take only vmf parameter (Larry Woodman) [1457572 1457561]
-- [mm] make pmd_fault() and friends be the same as fault() (Larry Woodman) [1457572 1457561]
-- [mm] join struct fault_env and vm_fault (Larry Woodman) [1457572 1457561]
-- [mm] do not pass mm_struct into handle_mm_fault (Larry Woodman) [1457572 1457561]
-
-* Tue Nov 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-794.el7]
-- [security] keys: trusted: fix writing past end of buffer in trusted_read() (David Howells) [1509152 1503242]
-- [security] keys: return full count in keyring_read() if buffer is too small (David Howells) [1509152 1503242]
-- [lib] assoc_array: Fix a buggy node-splitting case (David Howells) [1503242 1501286] {CVE-2017-1219}
-- [security] keys: load key flags and expiry time atomically in proc_keys_show() (David Howells) [1503242]
-- [security] keys: Load key expiry time atomically in keyring_search_iterator() (David Howells) [1503242]
-- [security] keys: load key flags and expiry time atomically in key_validate() (David Howells) [1503242]
-- [security] keys: don't let add_key() update an uninstantiated key (David Howells) [1503242]
-- [security] keys: Fix race between updating and finding a negative key (David Howells) [1503242]
-- [security] keys: encrypted: fix dereference of NULL user_key_payload (David Howells) [1503242]
-- [security] keys: big_key: Use key preparsing (David Howells) [1503242]
-- [security] keys: properly zero out sensitive key material in big_key (David Howells) [1503242]
-- [security] keys: use kmemdup() in request_key_auth_new() (David Howells) [1503242]
-- [security] keys: reset parent each time before searching key_user_tree (David Howells) [1503242]
-- [security] keys: prevent KEYCTL_READ on negative key (David Howells) [1503242 1498371]
-- [security] keys: prevent creating a different user's keyrings (David Howells) [1503242]
-- [security] keys: fix writing past end of user-supplied buffer in keyring_read() (David Howells) [1503242]
-- [security] keys: fix key refcount leak in keyctl_read_key() (David Howells) [1503242]
-- [security] keys: fix key refcount leak in keyctl_assume_authority() (David Howells) [1503242]
-- [security] keys: don't revoke uninstantiated key in request_key_auth_new() (David Howells) [1503242]
-- [security] keys: fix cred refcount leak in request_key_auth_new() (David Howells) [1503242]
-- [lib] oid_registry.c: x.509: fix the buffer overflow in the utility function for OID string (David Howells) [1503242]
-- [crypto] crypto : asymmetric_keys : verify_pefile:zero memory content before freeing (David Howells) [1503242]
-- [security] keys: sanitize key structs before freeing (David Howells) [1503242]
-- [security] keys: trusted: sanitize all key material (David Howells) [1503242]
-- [security] keys: encrypted: sanitize all key material (David Howells) [1503242]
-- [security] keys: user_defined: sanitize key payloads (David Howells) [1503242]
-- [security] keys: sanitize add_key() and keyctl() key payloads (David Howells) [1503242]
-- [security] keys: fix freeing uninitialized memory in key_update() (David Howells) [1503242]
-- [security] keys: encrypted: use constant-time HMAC comparison (David Howells) [1503242]
-- [crypto] hash - Add helpers to zero stack request/descriptor (David Howells) [1503242]
-- [security] keys: encrypted: fix race causing incorrect HMAC calculations (David Howells) [1503242]
-- [security] keys: Fix stale key registration at error path (David Howells) [1503242]
-- [security] keys: encrypted: fix buffer overread in valid_master_desc() (David Howells) [1503242]
-- [security] keys: put keyring if install_session_keyring_to_cred() fails (David Howells) [1503242]
-- [security] keys: Delete an error message for a failed memory allocation in get_derived_key() (David Howells) [1503242]
-- [security] use READ_ONCE instead of deprecated ACCESS_ONCE (David Howells) [1503242]
-- [security] keys: add CONFIG_KEYS_COMPAT to Kconfig (David Howells) [1503242]
-- [crypto] pkcs#7: pkcs7_validate_trust(): initialize the _trusted output argument (David Howells) [1503242]
-- [crypto] x.509: Handle midnight alternative notation in GeneralizedTime (David Howells) [1503242]
-- [crypto] x.509: Support leap seconds (David Howells) [1503242]
-- [crypto] x.509: Fix leap year handling again (David Howells) [1503242]
-- [crypto] x.509: Fix the time validation [ver #2] (David Howells) [1503242]
-- [crypto] pkcs#7: Improve and export the X.509 ASN.1 time object decoder (David Howells) [1503242]
-- [crypto] asymmetric_keys - Fix unaligned access in x509_get_sig_params() (David Howells) [1503242]
-- [crypto] pkcs7 - Fix unaligned access in pkcs7_verify() (David Howells) [1503242]
-- [crypto] pkcs#7: Handle PKCS#7 messages that contain no X.509 certs (David Howells) [1503242]
-- [crypto] pkcs#7: Better handling of unsupported crypto (David Howells) [1503242]
-- [crypto] keys: Set pr_fmt() in asymmetric key signature handling (David Howells) [1503242]
-- [crypto] keys: Fix public_key asymmetric key subtype name (David Howells) [1503242]
-- [crypto] rsa: Don't select non-existent symbol (David Howells) [1503242]
-- [crypto] keys: The RSA public key algorithm needs to select MPILIB (David Howells) [1503242]
-- [security] ima: provide support for arbitrary hash algorithms (David Howells) [1503242]
-- [security] keys: fix dereferencing NULL payload with nonzero length (David Howells) [1464851]
-- [security] keys: Fix handling of stored error in a negatively instantiated user key (David Howells) [1466457 1411622] {CVE-2015-8539 CVE-2017-7472}
-- [security] keys: fix keyctl_set_reqkey_keyring() to not leak thread keyrings (David Howells) [1466457 1450158] {CVE-2015-8539 CVE-2017-7472}
-- [security] keys: Differentiate uses of rcu_dereference_key() and user_key_payload() (David Howells) [1466457] {CVE-2015-8539 CVE-2017-7472}
-- [security] keys: Use memzero_explicit() for secret data (David Howells) [1466457] {CVE-2015-8539 CVE-2017-7472}
-- [security] keys: Fix an error code in request_master_key() (David Howells) [1466457] {CVE-2015-8539 CVE-2017-7472}
-
-* Mon Nov 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-793.el7]
-- [fs] writeback: fix a subtle race condition in I_DIRTY clearing (Eric Sandeen) [1492058]
-- [fs] ext4: fix data corruption with EXT4_GET_BLOCKS_ZERO (Eric Sandeen) [1492058]
-- [fs] dax: fix deadlock due to misaligned PMD faults (Eric Sandeen) [1492040]
-- [fs] fs/dax.c: fix inefficiency in dax_writeback_mapping_range() (Eric Sandeen) [1492058]
-- [fs] dax: fix race between colliding PMD & PTE entries (Eric Sandeen) [1492052]
-- [fs] dax: fix PMD data corruption when fault races with write (Eric Sandeen) [1492051]
-- [fs] dax: fix data corruption when fault races with write (Eric Sandeen) [1492051]
-- [fs] ext4: return to starting transaction in ext4_dax_huge_fault() (Eric Sandeen) [1492051]
-- [fs] mm: fix data corruption due to stale mmap reads (Eric Sandeen) [1492051]
-- [fs] Revert "block: use DAX for partition table reads" (Eric Sandeen) [1492058]
-- [fs] dax: prevent invalidation of mapped DAX entries (Eric Sandeen) [1492051]
-- [fs] dax: fix radix tree insertion race (Eric Sandeen) [1473838]
-- [fs] mm,fs,dax: mark dax_iomap_pmd_fault as const (Eric Sandeen) [1492058]
-- [fs] iomap: constify struct iomap_ops (Eric Sandeen) [1492058]
-- [fs] dax: fix build warnings with FS_DAX and !FS_IOMAP (Eric Sandeen) [1492058]
-- [fs] ext4: Add select for CONFIG_FS_IOMAP (Eric Sandeen) [1492058]
-- [mm] dax: wrprotect pmd_t in dax_mapping_entry_mkclean (Larry Woodman) [1457572]
-- [mm] add follow_pte_pmd() (Larry Woodman) [1457572]
-- [mm] x86/include/asm/pgtable.h: add pmd_[dirty|mkclean] for THP (Larry Woodman) [1457572]
-- [mm] mincore: add support for DAX huge page mappings (Larry Woodman) [1457572]
-- [mm] ext2/4, xfs: call thp_get_unmapped_area() for pmd mappings (Larry Woodman) [1457572]
-- [mm] thp, dax: add thp_get_unmapped_area for pmd mappings (Larry Woodman) [1457572]
-- [mm] dax: re-enable dax pmd mappings (Larry Woodman) [1457572 1383493]
-- [mm] allow GFP_{FS, IO} for page_cache_read page cache allocation (Larry Woodman) [1457572 1383493]
-- [mm] fix compilation issues is DAX PMD code (Larry Woodman) [1457572 1383493]
-- [mm] mm, x86: get_user_pages() for dax mappings (Larry Woodman) [1457572 1383493]
-- [mm] mm, dax: dax-pmd vs thp-pmd vs hugetlbfs-pmd (Larry Woodman) [1457572 1383493]
-- [mm] dax: add tracepoint to dax_insert_mapping() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoint to dax_writeback_one() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_writeback_mapping_range() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_load_hole() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_pfn_mkwrite() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_iomap_pte_fault() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] ext4: Simplify DAX fault path (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: Call ->iomap_begin without entry lock during dax fault (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: Finish fault completely when loading holes (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: Avoid page invalidation races and unnecessary radix tree traversals (Larry Woodman) [1457569 1383493 1457572]
-- [mm] Invalidate DAX radix tree entries only if appropriate (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_pmd_insert_mapping() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoints to dax_pmd_load_hole() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: update MAINTAINERS entries for FS DAX (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: add tracepoint infrastructure, PMD tracing (Larry Woodman) [1457569 1383493 1457572]
-- [mm] tracing: add __print_flags_u64() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: clear dirty entry tags on cache flush (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: protect PTE modification on WP fault by radix tree entry lock (Larry Woodman) [1457569 1383493 1457572]
-- [mm] dax: make cache flushing protected by entry lock (Larry Woodman) [1457569 1383493 1457572]
-- [mm] export follow_pte() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] change return values of finish_mkwrite_fault() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] provide helper for finishing mkwrite faults (Larry Woodman) [1457569 1383493 1457572]
-- [mm] pass vm_fault structure into do_page_mkwrite() (Larry Woodman) [1457569 1383493 1457572]
-- [mm] move handling of COW faults into DAX code (Larry Woodman) [1457569 1383493 1457572]
-- [mm] allow full handling of COW faults in ->fault handlers (Larry Woodman) [1457569 1383493 1457572]
-- [mm] factor out functionality to finish page faults (Larry Woodman) [1457569 1383493 1457572]
-- [mm] extend struct vm_fault (Larry Woodman) [1457569 1383493 1457572]
-
-* Mon Nov 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-792.el7]
-- [tools] revert "tools/power turbostat: stop migrating, unless '-m'" (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update version number (Prarit Bhargava) [1514290]
-- [tools] power turbostat: decode MSR_IA32_MISC_ENABLE only on Intel (Prarit Bhargava) [1514290]
-- [tools] power turbostat: stop migrating, unless '-m' (Prarit Bhargava) [1514290]
-- [tools] power turbostat: if --debug, print sampling overhead (Prarit Bhargava) [1514290]
-- [tools] power turbostat: hide SKL counters, when not requested (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update version number (Prarit Bhargava) [1514290]
-- [tools] power turbostat: fix impossibly large CPUc1 value (Prarit Bhargava) [1514290]
-- [tools] power turbostat: turbostat.8 add missing column definitions (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update HWP dump to decimal from hex (Prarit Bhargava) [1514290]
-- [tools] power turbostat: enable package THERM_INTERRUPT dump (Prarit Bhargava) [1514290]
-- [tools] power turbostat: show missing Core and GFX power on SKL and KBL (Prarit Bhargava) [1514290]
-- [tools] power turbostat: bugfix: GFXMHz column not changing (Prarit Bhargava) [1514290]
-- [tools] power turbostat: version 17.02.24 (Prarit Bhargava) [1514290]
-- [tools] power turbostat: bugfix: --add u32 was printed as u64 (Prarit Bhargava) [1514290]
-- [tools] power turbostat: show error on exec (Prarit Bhargava) [1514290]
-- [tools] power turbostat: dump p-state software config (Prarit Bhargava) [1514290]
-- [tools] power turbostat: show package number, even without --debug (Prarit Bhargava) [1514290]
-- [tools] power turbostat: support "--hide C1" etc (Prarit Bhargava) [1514290]
-- [tools] power turbostat: move --Package and --processor into the --cpu option (Prarit Bhargava) [1514290]
-- [tools] power turbostat: turbostat.8 update (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update --list feature (Prarit Bhargava) [1514290]
-- [tools] power turbostat: use wide columns to display large numbers (Prarit Bhargava) [1514290]
-- [tools] power turbostat: Add --list option to show available header names (Prarit Bhargava) [1514290]
-- [tools] power turbostat: fix zero IRQ count shown in one-shot command mode (Prarit Bhargava) [1514290]
-- [tools] power turbostat: add --cpu parameter (Prarit Bhargava) [1514290]
-- [tools] power turbostat: print sysfs C-state stats (Prarit Bhargava) [1514290]
-- [tools] power turbostat: extend --add option to accept /sys path (Prarit Bhargava) [1514290]
-- [tools] power turbostat: skip unused counters on BDX (Prarit Bhargava) [1514290]
-- [tools] power turbostat: fix decoding for GLM, DNV, SKX turbo-ratio limits (Prarit Bhargava) [1514290]
-- [tools] power turbostat: skip unused counters on SKX (Prarit Bhargava) [1514290]
-- [tools] turbostat: Move functions to correct location (Prarit Bhargava) [1514290]
-- [tools] power turbostat: use tsc_tweak everwhere it is needed (Prarit Bhargava) [1514290]
-- [tools] power turbostat: Baytrail c-state support (Prarit Bhargava) [1514290]
-- [tools] power turbostat: print system config, unless --quiet (Prarit Bhargava) [1514290]
-- [tools] power turbostat: decode MSR_MISC_FEATURE_CONTROL (Prarit Bhargava) [1514290]
-- [tools] power turbostat: decode CPUID(6).TURBO (Prarit Bhargava) [1514290]
-- [x86] x86 msr_index.h: Define MSR_MISC_FEATURE_CONTROL (Prarit Bhargava) [1514290]
-- [tools] power turbostat: dump Atom P-states correctly (Prarit Bhargava) [1514290]
-- [x86] x86 msr-index.h: Define Atom specific core ratio MSR locations (Prarit Bhargava) [1514290]
-- [tools] power turbostat: add precision to --debug frequency output (Prarit Bhargava) [1514290]
-- [tools] power turbostat: use new name for MSR_PKG_CST_CONFIG_CONTROL (Prarit Bhargava) [1514290]
-- [x86] msr-index.h: Define MSR_PKG_CST_CONFIG_CONTROL (Prarit Bhargava) [1514290]
-- [tools] power turbostat: update MSR_PKG_CST_CONFIG_CONTROL decoding (Prarit Bhargava) [1514290]
-- [tools] power turbostat: decode Baytrail CC6 and MC6 demotion configuration (Prarit Bhargava) [1514290]
-- [tools] power turbostat: BYT does not have MSR_MISC_PWR_MGMT (Prarit Bhargava) [1514290]
-- [powercap] x86/cpu: Rename Merrifield2 to Moorefield (Prarit Bhargava) [1514290]
-- [tools] power turbostat: Display HWP OOB status (Prarit Bhargava) [1514290]
-- [tools] power turbostat: Replace MSR_NHM_TURBO_RATIO_LIMIT (Prarit Bhargava) [1514290]
-
-* Mon Nov 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-791.el7]
-- [infiniband] rdma/nldev: Enforce device index check for port callback (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: OOPs in rdma_nl_rcv_msg() from misinterpreted flag (Don Dutile) [1499364 1462433]
-- [infiniband] rdma/qedr: Parse vlan priority as sl (Don Dutile) [1499364 1462433]
-- [infiniband] rdma/qedr: Parse VLAN ID correctly and ignore the value of zero (Don Dutile) [1499364 1462433 1456694]
-- [infiniband] ib/mlx5: Fix label order in error path handling (Don Dutile) [1499364 1456694]
-- [infiniband] rdma/iwpm: Properly mark end of NL messages (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Unsuccessful PCIe caps tuning should not fail driver load (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: On error, fix use after free during user context setup (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Return correct value in general interrupt handler (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Check eeprom config partition validity (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Only reset QSFP after link up and turn off AOC TX (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Turn off AOC TX after offline substates (Don Dutile) [1499364 1452789 1456694]
-- [infiniband] ib/mlx5: Fix NULL deference on mlx5_ib_update_xlt failure (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Simplify mlx5_ib_cont_pages (Don Dutile) [1499364 1456694 1456699]
-- [infiniband] ib/ipoib: Fix inconsistency with free_netdev and free_rdma_netdev (Don Dutile) [1499364 1456699]
-- [infiniband] ib/ipoib: Fix sysfs Pkey create<->remove possible deadlock (Don Dutile) [1499364 1456699]
-- [infiniband] ib: Correct MR length field to be 64-bit (Don Dutile) [1499364]
-- [infiniband] ib/core: Fix qp_sec use after free access (Don Dutile) [1499364]
-- [infiniband] ib/core: Fix typo in the name of the tag-matching cap struct (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Fix reporting correct opcodes for completion (Don Dutile) [1499364 1454965 1456694]
-- [infiniband] ib/mlx5: fix debugfs cleanup (Don Dutile) [1499364 1456694]
-- [infiniband] ib/ocrdma: fix incorrect fall-through on switch statement (Don Dutile) [1499364 1456699]
-- [infiniband] ib/ipoib: Suppress the retry related completion errors (Don Dutile) [1499364 1456699]
-- [infiniband] ib/core: Fix for core panic (Don Dutile) [1499364 1462433]
-- [netdrv] qed: remove unnecessary call to memset (Don Dutile) [1499364 1462433 1456692]
-- [infiniband] ib/mlx4: fix sprintf format warning (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/netlink: clean up message validity array initializer (Don Dutile) [1499364]
-- [infiniband] rdam/netlink: Fix out-of-bound access while checking message validity (Don Dutile) [1499364]
-- [net] xprtrdma: Use xprt_pin_rqst in rpcrdma_reply_handler (Don Dutile) [1499364]
-- [net] sunrpc: fix a list corruption issue in xprt_release() (Don Dutile) [1499364]
-- [net] sunrpc: Add a separate spinlock to protect the RPC request receive list (Don Dutile) [1499364]
-- [net] sunrpc: Don't hold the transport lock across socket copy operations (Don Dutile) [1499364]
-- [net] sunrpc: Fix up socket autodisconnect (Don Dutile) [1499364]
-- [net] svcrdma: Estimate Send Queue depth properly (Don Dutile) [1499364]
-- [infiniband] rdma core: Add rdma_rw_mr_payload() (Don Dutile) [1499364]
-- [net] svcrdma: Limit RQ depth (Don Dutile) [1499364]
-- [net] svcrdma: Populate tail iovec when receiving (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: Use ARRAY_SIZE macro (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: fix incorrect size allocation for dev->caps.spec_qps (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: fix memory leaks on error exit path (Don Dutile) [1499364 1456692]
-- [infiniband] ib/core: Expose ioctl interface through experimental Kconfig (Don Dutile) [1499364]
-- [infiniband] ib/core: Assign root to all drivers (Don Dutile) [1499364]
-- [infiniband] ib/core: Add completion queue (cq) object actions (Don Dutile) [1499364]
-- [infiniband] ib/core: Add legacy driver's user-data (Don Dutile) [1499364]
-- [infiniband] ib/core: Export ioctl enum types to user-space (Don Dutile) [1499364]
-- [infiniband] ib/core: Explicitly destroy an object while keeping uobject (Don Dutile) [1499364]
-- [infiniband] ib/core: Add macros for declaring methods and attributes (Don Dutile) [1499364]
-- [infiniband] ib/core: Add uverbs merge trees functionality (Don Dutile) [1499364]
-- [infiniband] ib/core: Add DEVICE object and root tree structure (Don Dutile) [1499364]
-- [infiniband] ib/core: Declare an object instead of declaring only type attributes (Don Dutile) [1499364]
-- [infiniband] ib/core: Add new ioctl interface (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Fix a signedness (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Report network header type in WC (Don Dutile) [1499364 1454965]
-- [infiniband] ib/core: Add might_sleep() annotation to ib_init_ah_from_wc() (Don Dutile) [1499364]
-- [infiniband] ib/cm: Fix sleeping in atomic when RoCE is used (Don Dutile) [1499364 1462433]
-- [netdrv] qed: fix spelling mistake: "calescing" -> "coalescing" (Don Dutile) [1499364 1462433]
-- [infiniband] ib/core: Add support to finalize objects in one transaction (Don Dutile) [1499364]
-- [infiniband] ib/core: Add a generic way to execute an operation on a uobject (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4: Add user mac FW update support (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: Fix misplaced brackets of sizeof (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: Make explicit conversion to 64bit value (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: Dynamically allocate structs at mlx4_slave_cap (Don Dutile) [1499364 1456692]
-- [infiniband] documentation: Hardware tag matching (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Support IB_SRQT_TM (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Add XRQ support (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fill XRQ capabilities (Don Dutile) [1499364 1456694]
-- [infiniband] ib/uverbs: Expose XRQ capabilities (Don Dutile) [1499364]
-- [infiniband] ib/uverbs: Add new SRQ type IB_SRQT_TM (Don Dutile) [1499364]
-- [infiniband] ib/uverbs: Add XRQ creation parameter to UAPI (Don Dutile) [1499364]
-- [infiniband] ib/core: Add new SRQ type IB_SRQT_TM (Don Dutile) [1499364]
-- [infiniband] ib/core: Separate CQ handle in SRQ context (Don Dutile) [1499364]
-- [infiniband] ib/core: Add XRQ capabilities (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Update HW layout definitions (Don Dutile) [1499364 1456694 1456704]
-- [infiniband] ib/rxe: Handle NETDEV_CHANGE events (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Avoid ICRC errors by copying into the skb first (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Another fix for broken receive queue draining (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Remove unneeded initialization in prepare6() (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Fix up rxe_qp_cleanup() (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Add dst_clone() in prepare_ipv6_hdr() (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Fix destination cache for IPv6 (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Fix up the responder's find_resources() function (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Remove dangling prototype (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Disable completion upcalls when a CQ is destroyed (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Move refcounting earlier in rxe_send() (Don Dutile) [1499364 1456704 1452789 1451799]
-- [infiniband] ib/rdmavt: Handle dereg of inuse MRs properly (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: Convert qp_stats debugfs interface to use new iterator API (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Convert qp_stats debugfs interface to use new iterator API (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Convert hfi1_error_port_qps() to use new QP iterator (Don Dutile) [1499364 1452789]
-- [infiniband] ib/rdmavt: Add QP iterator API for QPs (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use accessor to determine ring size (Don Dutile) [1499364 1452789]
-- [infiniband] ib/qib: Stricter bounds checking for copy to buffer (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hif1: Remove static tracing from SDMA hot path (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Acquire QSFP cable information on loopback (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: constify vm_operations_struct (Don Dutile) [1499364 1452789]
-- [infiniband] ib/usnic: check for allocation failure (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add opcode states to qp_stats (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add received request info to qp_stats (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix whitespace alignment issue for MAD (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Move structure and MACRO definitions in user_sdma.c to user_sdma.h (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Move structure definitions from user_exp_rcv.c to user_exp_rcv.h (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove duplicate definitions of num_user_pages() function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix the bail out code in pin_vector_pages() function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Clean up pin_vector_pages() function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Clean up user_sdma_send_pkts() function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Clean up hfi1_user_exp_rcv_setup function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Improve local kmem_cache_alloc performance (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Ratelimit prints from sdma_interrupt (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: Stricter bounds checking for copy and array access (Don Dutile) [1499364 1451799]
-- [infiniband] ib/qib: Remove unnecessary memory allocation for boardname (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/{qib, hfi1}: Avoid flow control testing for RDMA write operation (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/rdmavt: Use rvt_put_swqe() in rvt_clear_mr_ref() (Don Dutile) [1499364 1451799 1456694]
-- [infiniband] ib/mlx5: Report mlx5 enhanced multi packet WQE capability (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Allow posting multi packet send WQEs if hardware supports (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add support for multi underlay QP (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fix integer overflow when page_shift == 31 (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fix memory leak in clean_mr error path (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Decouple MR allocation and population flows (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Enable UMR for MRs created with reg_create (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Expose software parsing for Raw Ethernet QP (Don Dutile) [1499364 1456694 1462433]
-- [infiniband] rdma/qedr: fix spelling mistake: "invlaid" -> "invalid" (Don Dutile) [1499364 1462433]
-- [infiniband] ib: Avoid ib_modify_port() failure for RoCE devices (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Update device query parameters and port caps (Don Dutile) [1499364 1454965]
-- [infiniband] rdma/vmw_pvrdma: Add RoCEv2 support (Don Dutile) [1499364 1454965 1456699]
-- [infiniband] ib/ipoib: Enable ioctl for to IPoIB rdma netdevs (Don Dutile) [1499364 1456699]
-- [infiniband] rdma/nes: Remove zeroed parameter from port query callback (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mlx4: Properly annotate link layer variable (Don Dutile) [1499364 1456692 1456694]
-- [infiniband] rdma/mlx5: Limit scope of get vector affinity local function (Don Dutile) [1499364 1456694 1456704]
-- [infiniband] ib/rxe: Make rxe_counter_name static (Don Dutile) [1499364 1456704 1456699]
-- [infiniband] ib/ipoib: Sync between remove_one to sysfs calls that use rtnl_lock (Don Dutile) [1499364 1456699 1456692]
-- [infiniband] ib/mlx4: Check that reserved fields in mlx4_ib_create_qp_rss are zero (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Remove redundant attribute in mlx4_ib_create_qp_rss struct (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Fix struct mlx4_ib_create_wq alignment (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Fix RSS QP type in creation verb (Don Dutile) [1499364 1456692 1456694]
-- [infiniband] ib/mlx5: Add necessary delay drop assignment (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fix some spelling mistakes (Don Dutile) [1499364 1456694 1456692]
-- [infiniband] ib/mlx4: Fix some spelling mistakes (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mthca: Make explicit conversion to 64bit value (Don Dutile) [1499364]
-- [infiniband] rdma/usnic: Fix remove address space warning (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mlx4: Remove gfp_mask argument from acquire_group call (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/core: Refactor get link layer wrapper (Don Dutile) [1499364]
-- [infiniband] rdma/core: Delete BUG() from unreachable flow (Don Dutile) [1499364]
-- [infiniband] core: Cleanup device capability enum (Don Dutile) [1499364]
-- [infiniband] (core, ulp): Convert register/unregister event handler to be void (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mlx4: Fix create qp command alignment (Don Dutile) [1499364 1456692]
-- [infiniband] rdma/mlx4: Don't use uninitialized variable (Don Dutile) [1499364 1456692]
-- [infiniband] ib/uverbs: Introduce and use helper functions to copy ah attributes (Don Dutile) [1499364]
-- [infiniband] ib/cma: Fix erroneous validation of supported default GID type (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_core: make mlx4_profile const (Don Dutile) [1499364 1456692]
-- [infiniband] Autoload netlink client modules (Don Dutile) [1499364]
-- [infiniband] rdma: Allow demand loading of NETLINK_RDMA (Don Dutile) [1499364]
-- [infiniband] rdma: Fix return value check for ib_get_eth_speed() (Don Dutile) [1499364]
-- [net] xprtrdma: Re-arrange struct rx_stats (Don Dutile) [1499364 1454965]
-- [infiniband] ib/pvrdma: Remove unused function (Don Dutile) [1499364 1454965 1452789]
-- [infiniband] ib/hfi1: Add kernel receive context info to debugfs (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove HFI1_VERBS_31BIT_PSN option (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove pstate from hfi1_pportdata (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Stricter bounds checking of MAD trap index (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Load fallback platform configuration per HFI device (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add flag for platform config scratch register read (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Document phys port state bits not used in IB (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Check xchg returned value for queuing link down entry (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: fix spelling mistake: "Maximim" -> "Maximum" (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Enable RDMA_CAP_OPA_AH in hfi driver to support extended LIDs (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Enhance PIO/SDMA send for 16B (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add 16B RC/UC support (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/rdmavt, hfi1, qib: Enhance rdmavt and hfi1 to use 32 bit lids (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Add 16B trace support (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add 16B UD support (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Determine 9B/16B L2 header type based on Address handle (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add support to process 16B header errors (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add support to send 16B bypass packets (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add support to receive 16B bypass packets (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/rdmavt, hfi1, qib: Modify check_ah() to account for extended LIDs (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hf1: User context locking is inconsistent (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Protect context array set/clear with spinlock (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use host_link_state to read state when DC is shut down (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove lstate from hfi1_pportdata (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove pmtu from the QP structure (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Revert egress pkey check enforcement (Don Dutile) [1499364 1452789]
-- [infiniband] ib/core: Fix input len in multiple user verbs (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Replace PCI pool old API (Don Dutile) [1499364 1456694 1456692]
-- [netdrv] mlx4: Replace PCI pool old API (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mthca: Replace PCI pool old API (Don Dutile) [1499364 1452789]
-- [infiniband] Add OPA extended LID support (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: add const to bin_attribute structures (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: add const to bin_attribute structures (Don Dutile) [1499364 1451799]
-- [infiniband] infiniband: avoid overflow warning (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Remove unneeded check (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Convert pr_info to pr_warn (Don Dutile) [1499364 1456704 1454965]
-- [infiniband] pvrdma: constify pci_device_id (Don Dutile) [1499364 1454965]
-- [infiniband] nes: constify pci_device_id (Don Dutile) [1499364]
-- [infiniband] mthca: constify pci_device_id (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: fix spelling mistake in variable name continious (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: fix spelling mistake: "failng" -> "failing" (Don Dutile) [1499364 1451799]
-- [infiniband] iwcm: Don't allocate iwcm workqueue with WQ_MEM_RECLAIM (Don Dutile) [1499364]
-- [infiniband] cm: Don't allocate ib_cm workqueue with WQ_MEM_RECLAIM (Don Dutile) [1499364]
-- [infiniband] rdma/core: make ib_device.add method optional (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4: fix spelling mistake: "availible" -> "available" (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4: sizeof style usage (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4: remove unnecessary pci_set_drvdata() (Don Dutile) [1499364 1456692]
-- [net] xprtrdma: Remove imul instructions from chunk list encoders (Don Dutile) [1499364]
-- [net] xprtrdma: Remove imul instructions from rpcrdma_convert_iovs() (Don Dutile) [1499364]
-- [netdrv] Change Kconfig description (Don Dutile) [1499364]
-- [netdrv] Allow Mellanox switch devices to be configured if only I2C bus is set (Don Dutile) [1499364]
-- [net] xprtrdma: Clean up rpcrdma_bc_marshal_reply() (Don Dutile) [1499364]
-- [net] xprtrdma: Harden chunk list encoding against send buffer overflow (Don Dutile) [1499364]
-- [net] xprtrdma: Set up an xdr_stream in rpcrdma_marshal_req() (Don Dutile) [1499364]
-- [net] xprtrdma: Remove rpclen from rpcrdma_marshal_req (Don Dutile) [1499364]
-- [net] xprtrdma: Clean up rpcrdma_marshal_req() synopsis (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Export node_type (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Provide port state and physical link state (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Export LID mask control (LMC) (Don Dutile) [1499364]
-- [infiniband] rdma/netink: Export lids and sm_lids (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Advertise IB subnet prefix (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Export node_guid and sys_image_guid (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Export FW version (Don Dutile) [1499364]
-- [infiniband] Simplify get firmware interface (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Expose device and port capability masks (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Implement nldev port doit callback (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Add nldev port dumpit implementation (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Add nldev device doit implementation (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Implement nldev device dumpit calback (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Add nldev initialization flows (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Add netlink device definitions to UAPI (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Update copyright (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Convert LS to doit callback (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Reduce indirection access to cb_table (Don Dutile) [1499364]
-- [infiniband] netlink: Add and implement doit netlink callback (Don Dutile) [1499364]
-- [infiniband] core: Add and expose static device index (Don Dutile) [1499364]
-- [infiniband] rdma/core: Add iterator over ib_devices (Don Dutile) [1499364]
-- [infiniband] netlink: Rename netlink callback struct (Don Dutile) [1499364]
-- [infiniband] netlink: Simplify and rename ibnl_chk_listeners (Don Dutile) [1499364]
-- [infiniband] netlink: Rename and remove redundant parameter from ibnl_multicast (Don Dutile) [1499364]
-- [infiniband] netlink: Rename and remove redundant parameter from ibnl_unicast* (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Simplify the put_msg and put_attr (Don Dutile) [1499364]
-- [infiniband] netlink: Add flag to consolidate common handling (Don Dutile) [1499364]
-- [infiniband] rdma/iwcm: Remove extra EXPORT_SYMBOLS (Don Dutile) [1499364]
-- [infiniband] rdma/iwcm: Remove useless check of netlink client validity (Don Dutile) [1499364]
-- [infiniband] rdma/netlink: Avoid double pass for RDMA netlink messages (Don Dutile) [1499364]
-- [infiniband] netlink: Remove redundant owner option for netlink callbacks (Don Dutile) [1499364]
-- [infiniband] netlink: Remove netlink clients infrastructure (Don Dutile) [1499364]
-- [infiniband] core: Add wait/retry version of ibnl_unicast (Don Dutile) [1499364 1456694]
-- [infiniband] mlx5: support ->get_vector_affinity (Don Dutile) [1499364 1456694]
-- [infiniband] core: expose affinity mappings per completion vector (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: move affinity hints assignments to generic code (Don Dutile) [1499364 1456694]
-- [kernel] pci: add an API to get node from vector (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5e: don't assume anything on the irq affinity mappings of the device (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: convert to generic pci_alloc_irq_vectors (Don Dutile) [1499364 1456694]
-- [infiniband] ib/cm: Set appropriate slid and dlid when handling CM request (Don Dutile) [1499364]
-- [infiniband] ib/cm: Create appropriate path records when handling CM request (Don Dutile) [1499364]
-- [infiniband] ib/cm: Add OPA Path record support to CM (Don Dutile) [1499364]
-- [infiniband] ib/core: Change wc.slid from 16 to 32 bits (Don Dutile) [1499364]
-- [infiniband] ib/core: Change port_attr.sm_lid from 16 to 32 bits (Don Dutile) [1499364]
-- [infiniband] ib/core: Change port_attr.lid size from 16 to 32 bits (Don Dutile) [1499364]
-- [infiniband] ib/mad: Change slid in RMPP recv from 16 to 32 bits (Don Dutile) [1499364 1456699]
-- [infiniband] ib/ipoib: Increase local_lid to 32 bits (Don Dutile) [1499364 1456699]
-- [infiniband] ib/srpt: Increase lid and sm_lid to 32 bits (Don Dutile) [1499364]
-- [infiniband] ib/core: Convert ah_attr from OPA to IB when copying to user (Don Dutile) [1499364]
-- [net] xprtrdma: Clean up XDR decoding in rpcrdma_update_granted_credits() (Don Dutile) [1499364]
-- [net] xprtrdma: Remove rpcrdma_rep::rr_len (Don Dutile) [1499364]
-- [net] xprtrdma: Remove opcode check in Receive completion handler (Don Dutile) [1499364]
-- [net] xprtrdma: Replace rpcrdma_count_chunks() (Don Dutile) [1499364]
-- [net] sunrpc: Add generic helpers for xdr_stream encode/decode (Don Dutile) [1499364]
-- [net] xprtrdma: Refactor rpcrdma_reply_handler() (Don Dutile) [1499364]
-- [net] xprtrdma: Harden backchannel call decoding (Don Dutile) [1499364]
-- [net] xprtrdma: Add xdr_init_decode to rpcrdma_reply_handler() (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Always perform offline transition (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Prevent link down request double queuing (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Create workqueue for link events (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/{rdmavt, hfi1, qib}: Fix panic with post receive and SGE compression (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Disambiguate corruption and uninitialized error cases (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Only set fd pointer when base context is completely initialized (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Do not enable disabled port on cable insert (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Harden state transition to Armed and Active (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Split copy_to_user data copy for better security (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Verify port data VLs credits on transition to Armed (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Move saving PCI values to a separate function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix initialization failure for debug firmware (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix code consistency for if/else blocks in chip.c (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Send MAD traps until repressed (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Pass the context pointer rather than the index (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use context pointer rather than context index (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Size rcd array index correctly and consistently (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove unused user context data members (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Assign context does not clean up file descriptor correctly on error (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Serve the most starved iowait entry first (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix bar0 mapping to use write combining (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Check return values from PCI config API calls (Don Dutile) [1499364 1452789]
-- [infiniband] ib/cma: Fix default RoCE type setting (Don Dutile) [1499364 1462433]
-- [infiniband] rdma/qedr: notify user application of supported WIDs (Don Dutile) [1499364 1462433]
-- [infiniband] rdma/qedr: notify user application if DPM is supported (Don Dutile) [1499364 1462433]
-- [netdrv] qed: enhanced per queue max coalesce value (Don Dutile) [1499364 1462433]
-- [netdrv] qed: Read per queue coalesce from hardware (Don Dutile) [1499364 1462433]
-- [netdrv] qed: Add support for vf coalesce configuration (Don Dutile) [1499364 1462433]
-- [netdrv] qede: Add ethtool support for Energy efficient ethernet (Don Dutile) [1499364 1462433]
-- [netdrv] qed: Add support for Energy efficient ethernet (Don Dutile) [1499364 1462433]
-- [netdrv] qed/qede: Add setter APIs support for RX flow classification (Don Dutile) [1499364 1462433]
-- [netdrv] qede: Add getter APIs support for RX flow classification (Don Dutile) [1499364 1462433 1456692]
-- [netdrv] mlx4_en: remove unnecessary error check (Don Dutile) [1499364 1456692]
-- [netdrv] mlx4_en: remove unnecessary returned value (Don Dutile) [1499364 1456692 1452789]
-- [infiniband] ib/hfi1: Add receiving queue info to qp_stats (Don Dutile) [1499364 1452789 1456692]
-- [infiniband] ib/mlx4: Expose RSS capabilities (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Add support for RSS QP (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Add support for WQ indirection table related verbs (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Add support for WQ related verbs (Don Dutile) [1499364 1456692]
-- [infiniband] (ib, net)/mlx4: Add resource utilization support (Don Dutile) [1499364 1456692]
-- [infiniband] ib/mlx4: Add inline-receive support (Don Dutile) [1499364 1456692 1456694]
-- [infiniband] ib/mlx5: Expose extended error counters (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Fix cached MR allocation flow (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Report RX checksum capabilities for IPoIB (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Report enhanced capabilities for IPoIB (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add multicast flow steering support for underlay QP (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add support for QP with a given source QPN (Don Dutile) [1499364 1456694]
-- [infiniband] ib/uverbs: Enable QP creation with a given source QP number (Don Dutile) [1499364]
-- [infiniband] ib/core: Enable QP creation with a given source QP number (Don Dutile) [1499364]
-- [infiniband] ib/core: Add support for RoCEv2 multicast (Don Dutile) [1499364]
-- [infiniband] ib/core: Set RoCEv2 MGID according to spec (Don Dutile) [1499364]
-- [infiniband] ib/core: Fix the validations of a multicast LID in attach or detach operations (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add delay drop configuration and statistics (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add support to dropless RQ (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Introduce general notification event (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Introduce set delay drop command (Don Dutile) [1499364 1456694]
-- [infiniband] ib/core: Introduce delay drop for a WQ (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Restore IB guid/policy for virtual functions (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add debug control parameters for congestion control (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Change logic for dispatching IB events for port state (Don Dutile) [1499364 1456694]
-- [infiniband] ib/mlx5: Add raw ethernet local loopback support (Don Dutile) [1499364 1456694]
-- [netdrv] mlx5: Add raw ethernet local loopback firmware command (Don Dutile) [1499364 1456694]
-- [infiniband] rdma: Remove useless MODULE_VERSION (Don Dutile) [1499364]
-- [infiniband] ib/core: Add generic function to extract IB speed from netdev (Don Dutile) [1499364]
-- [infiniband] ib/usnic: Implement get_netdev hook (Don Dutile) [1499364 1451799]
-- [infiniband] ib/qib: remove duplicate code (Don Dutile) [1499364 1451799]
-- [infiniband] ib/cma: Set default gid type to RoCEv2 (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Constify static rxe_vm_ops (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Use __func__ to print function's name (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Use DEVICE_ATTR_RO macro to show parent field (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Prefer 'unsigned int' to bare use of 'unsigned' (Don Dutile) [1499364 1456704]
-- [infiniband] ib/rxe: Use "foo *bar" instead of "foo * bar" (Don Dutile) [1499364 1456704 1452789]
-- [infiniband] ib/hfi1: Handle missing magic values in config file (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Resolve kernel panics by reference counting receive contexts (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Initialize TID lists to avoid crash on cleanup (Don Dutile) [1499364 1452789 1451799]
-- [infiniband] ib/qib: Replace deprecated pci functions with new API (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Add traces for TID operations (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use a template for tid reg/unreg (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove reading platform configuration from EFI variable (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Create common expected receive verbs/PSM code (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Set proper logging levels on QSFP cable error events (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix DC 8051 host info flag array (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1, qib: Do not send QKey trap for UD qps (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Modify handling of physical link state by Host Driver (Don Dutile) [1499364 1452789]
-- [infiniband] ib/core: Allow QP state transition from reset to error (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add error checking for buffer overrun in OPA aggregate (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove subtraction of uninitialized value (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Use QPN mask to avoid overflow (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Fix spelling mistake in linkdown reason (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/rdmavt: Remove duplicated functions (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Fix up sdma_init function comment (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Reclassify type of messages printed for platform config logic (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove atomic SDMA_REQ_HAS_ERROR bit operation (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove atomic SDMA_REQ_SEND_DONE bit operation (Don Dutile) [1499364 1452831 1451799 1452789]
-- [infiniband] ib/core, rdmavt, hfi1, opa-vnic: Send OPA cap_mask3 in trap (Don Dutile) [1499364 1452831 1451799 1452789]
-- [infiniband] ib/hfi1: Replace deprecated pci functions with new API (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Name function prototype parameters for affinity module (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Optimize cachelines for user SDMA request structure (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Don't remove RB entry when not needed (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/rdmavt: Compress adjacent SGEs in rvt_lkey_ok() (Don Dutile) [1499364 1451799 1452789]
-- [infiniband] ib/hfi1: Setup common IB fields in hfi1_packet struct (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Separate input/output header tracing (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Add functions to parse BTH/IB headers (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove unused mk_qpn function (Don Dutile) [1499364 1452789]
-- [infiniband] ib/hfi1: Remove unnecessary initialization from tx request (Don Dutile) [1499364 1452789]
-- [net] sunrpc: Allow xprt->ops->timer method to sleep (Don Dutile) [1499364]
-
-* Mon Nov 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-790.el7]
-- [x86] mce/amd: Always give panic severity for UC errors in kernel context (Suravee Suthikulpanit) [1493197]
-- [x86] acpi/cstate: Allow ACPI C1 FFH MWAIT use on AMD systems (Suravee Suthikulpanit) [1508650]
-- [x86] kvm: x86: don't print warning messages for unimplemented msrs (Bandan Das) [1297021]
-- [s390] scsi: zfcp: fix erp_action use-before-initialize in REC action trace (Hendrik Brueckner) [1503935]
-- [scsi] sd: Do not override max_sectors_kb sysfs setting (Ewan Milne) [1507941]
-- [scsi] lpfc: Fix hard lock up NMI in els timeout handling (Dick Kennedy) [1503933]
-- [scsi] lpfc: Fix a precedence bug in lpfc_nvme_io_cmd_wqe_cmpl() (Dick Kennedy) [1513061]
-- [nvme] fixup wwid_show() check for null_uuid (David Milburn) [1513142]
-- [nvme] lpfc: tie in to new dev_loss_tmo interface in nvme transport (David Milburn) [1508583]
-- [nvme] nvme-fc: decouple ns references from lldd references (David Milburn) [1508583]
-- [nvme] nvme-fc: fix localport resume using stale values (David Milburn) [1508583]
-- [nvme] nvmet: fix fatal_err_work deadlock (David Milburn) [1508583]
-- [nvme] nvme-fc: add dev_loss_tmo timeout and remoteport resume support (David Milburn) [1508583]
-- [nvme] allow controller RESETTING to RECONNECTING transition (David Milburn) [1508583]
-- [nvme] nvme-fc: check connectivity before initiating reconnects (David Milburn) [1508583]
-- [nvme] nvme-fc: add a dev_loss_tmo field to the remoteport (David Milburn) [1508583]
-- [nvme] nvme-fc: change ctlr state assignments during reset/reconnect (David Milburn) [1508583]
-- [nvme] nvme-fc: merge __nvme_fc_schedule_delete_work into __nvme_fc_del_ctrl (David Milburn) [1508583]
-- [nvme] nvme-fc: avoid workqueue flush stalls (David Milburn) [1508583]
-- [iommu] amd: Free already flushed ring-buffer entries before full-check (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Remove amd_iommu_disabled check from amd_iommu_detect() (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Free IOMMU resources when disabled on command line (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Set global pointers to NULL after freeing them (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Check for error states first in iommu_go_to_state() (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add new init-state IOMMU_CMDLINE_DISABLED (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Rename free_on_init_error() (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Suppress IO_PAGE_FAULTs in kdump kernel (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Remove queue_release() function (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add per-domain timer to flush per-cpu queues (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add flush counters to struct dma_ops_domain (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add locking to per-domain flush-queue (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Make use of the per-domain flush queue (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Add per-domain flush-queue data structures (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Rip out old queue flushing code (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Reduce delay waiting for command buffer space (Suravee Suthikulpanit) [1508644]
-- [iommu] amd: Reduce amount of MMIO when submitting commands (Suravee Suthikulpanit) [1508644]
-- [netdrv] qlcnic: remove redundant zero check on retries counter (Harish Patil) [1479140]
-- [netdrv] qlcnic: add const to bin_attribute structure (Harish Patil) [1479140]
-- [netdrv] qlcnic: remove unnecessary static in qlcnic_dump_fw() (Harish Patil) [1479140]
-- [netdrv] qlcnic: Fix tunnel offload for 82xx adapters (Harish Patil) [1479140]
-- [netdrv] qlcnic: Fix a sleep-in-atomic bug in qlcnic_82xx_hw_write_wx_2M and qlcnic_82xx_hw_read_wx_2M (Harish Patil) [1479140]
-- [netdrv] qlcnic: Update version to 5.3.66 (Harish Patil) [1479140]
-- [netdrv] qlcnic: Fix link configuration with autoneg disabled (Harish Patil) [1479140]
-- [netdrv] qlcnic: fix unchecked return value (Harish Patil) [1479140]
-- [netdrv] qlogic: qlcnic_sysfs: constify bin_attribute structures (Harish Patil) [1479140]
-- [netdrv] qlogic: qlcnic: use new api ethtool_{get|set}_link_ksettings (Harish Patil) [1479140]
-- [netdrv] qlcnic: Fix a memory leak in error handling path (Harish Patil) [1479140]
-- [netdrv] generalize napi_complete_done() (Harish Patil) [1479140]
-- [netdrv] qlogic: use core min/max MTU checking (Harish Patil) [1479140]
-
-* Fri Nov 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-789.el7]
-- [infiniband] ib/hfi1: update to new mmu_notifier semantic (Don Dutile) [1499363 1452789]
-- [infiniband] ib/umem: update to new mmu_notifier semantic (Don Dutile) [1499363]
-- [infiniband] ib/mlx5: Always return success for RoCE modify port (Don Dutile) [1499363 1456694]
-- [infiniband] ib/mlx5: Fix Raw Packet QP event handler assignment (Don Dutile) [1499363 1456694]
-- [infiniband] ib/core: Avoid accessing non-allocated memory when inferring port type (Don Dutile) [1499363]
-- [netdrv] mlx4_core: Enable 4K UAR if SRIOV module parameter is not enabled (Don Dutile) [1499363 1456692]
-- [infiniband] ib/uverbs: Fix NULL pointer dereference during device removal (Don Dutile) [1499363]
-- [infiniband] ib/core: Protect sysfs entry on ib_unregister_device (Don Dutile) [1499363]
-- [infiniband] rdma/vmw_pvrdma: Report CQ missed events (Don Dutile) [1499363 1454965]
-- [netdrv] qed: Fix a memory allocation failure test in 'qed_mcp_cmd_init()' (Don Dutile) [1499363 1462433]
-- [netdrv] rdma/mlx5: Fix existence check for extended address vector (Don Dutile) [1499363 1456694]
-- [infiniband] ib/uverbs: Fix device cleanup (Don Dutile) [1499363]
-- [infiniband] rdma/uverbs: Prevent leak of reserved field (Don Dutile) [1499363]
-- [infiniband] ib/core: Fix race condition in resolving IP to MAC (Don Dutile) [1499363]
-- [netdrv] mlx4_core: Fixes missing capability bit in flags2 capability dump (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_core: Fix namespace misalignment in QinQ VST support commit (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_core: Fix sl_to_vl_change bit offset in flags2 dump (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Fix wrong indication of Wake-on-LAN (WoL) support (Don Dutile) [1499363 1456692]
-- [infiniband] ib/ipoib: Notify on modify QP failure only when relevant (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Remove double pointer assigning (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Clean error paths in add port (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Add get statistics support to SRIOV VF (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Add multicast packets statistics (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Set IPOIB_NEIGH_TBL_FLUSH after flushed completion initialization (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Prevent setting negative values to max_nonsrq_conn_qp (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Make sure no in-flight joins while leaving that mcast (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Use cancel_delayed_work_sync when needed (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Fix race between light events and interface restart (Don Dutile) [1499363 1456699]
-- [infiniband] rdma/core: Initialize port_num in qp_attr (Don Dutile) [1499363]
-- [infiniband] rdma/uverbs: Fix the check for port number (Don Dutile) [1499363]
-- [infiniband] ib/cma: Fix reference count leak when no ipv4 addresses are set (Don Dutile) [1499363]
-- [infiniband] rdma/iser: don't send an rkey if all data is written as immadiate-data (Don Dutile) [1499363]
-- [infiniband] rxe: fix broken receive queue draining (Don Dutile) [1499363]
-- [infiniband] rdma/qedr: Prevent memory overrun in verbs' user responses (Don Dutile) [1499363 1462433]
-- [infiniband] ib/mlx4: Fix CM REQ retries in paravirt mode (Don Dutile) [1499363 1456692]
-- [infiniband] ib/rdmavt: Setting of QP timeout can overflow jiffies computation (Don Dutile) [1499363 1452789]
-- [infiniband] ib/core: Fix sparse warnings (Don Dutile) [1499363]
-- [infiniband] ib/mlx5: Fix a warning message (Don Dutile) [1499363 1456694]
-- [infiniband] rdma/ocrdma: Fix error codes in ocrdma_create_srq() (Don Dutile) [1499363]
-- [infiniband] rdma/ocrdma: Fix an error code in ocrdma_alloc_pd() (Don Dutile) [1499363]
-- [infiniband] ib/ipoib: Fix error code in ipoib_add_port() (Don Dutile) [1499363 1456699]
-- [infiniband] ib/rxe: Set dma_mask and coherent_dma_mask (Don Dutile) [1499363 1456704]
-- [infiniband] ib/rxe: Fix kernel panic from skb destructor (Don Dutile) [1499363 1456704]
-- [infiniband] ib/ipoib: Let lower driver handle get_stats64 call (Don Dutile) [1499363 1456699]
-- [infiniband] ib/core: Add ordered workqueue for RoCE GID management (Don Dutile) [1499363]
-- [infiniband] ib/mlx5: Clean mr_cache debugfs in case of failure (Don Dutile) [1499363 1456694]
-- [infiniband] ib/core: Remove NOIO QP create flag (Don Dutile) [1499363]
-- [netdrv] {net, ib}/mlx4: Remove gfp flags argument (Don Dutile) [1499363 1456692]
-- [infiniband] ib/{rdmavt, qib, hfi1}: Remove gfp flags argument (Don Dutile) [1499363 1452789]
-- [infiniband] ib/ipoib: Convert IPoIB to memalloc_noio_* calls (Don Dutile) [1499363 1456699]
-- [infiniband] ib/ipoib: Forward MTU change to driver below (Don Dutile) [1499363 1456699]
-- [infiniband] ib: Convert msleep below 20ms to usleep_range (Don Dutile) [1499363]
-- [infiniband] ib/uverbs: Make use of ib_modify_qp variant to avoid resolving DMAC (Don Dutile) [1499363]
-- [infiniband] ib/core: Introduce modify QP operation with udata (Don Dutile) [1499363]
-- [infiniband] ib/core: Don't resolve IP address to the loopback device (Don Dutile) [1499363]
-- [infiniband] ib/core: Namespace is mandatory input for address resolution (Don Dutile) [1499363]
-- [infiniband] ib/iser: Fix connection teardown race condition (Don Dutile) [1499363]
-- [infiniband] rdma/core: Document confusing code (Don Dutile) [1499363]
-- [infiniband] mlx5: Avoid that mlx5_ib_sg_to_klms() overflows the klms[] array (Don Dutile) [1499363 1456694]
-- [infiniband] ib/hfi1: Ensure dd->gi_mask can not be overflowed (Don Dutile) [1499363 1452789]
-- [netdrv] mlx4_en: remove unnecessary returned value check (Don Dutile) [1499363 1456692]
-- [net] xprtrdma: Fix documenting comments in frwr_ops.c (Don Dutile) [1499363]
-- [net] xprtrdma: Replace PAGE_MASK with offset_in_page() (Don Dutile) [1499363]
-- [net] xprtrdma: FMR does not need list_del_init() (Don Dutile) [1499363]
-- [net] xprtrdma: Demote "connect" log messages (Don Dutile) [1499363]
-- [net] xprtrdma: Don't defer MR recovery if ro_map fails (Don Dutile) [1499363]
-- [net] xprtrdma: Fix FRWR invalidation error recovery (Don Dutile) [1499363]
-- [net] xprtrdma: Fix client lock-up after application signal fires (Don Dutile) [1499363]
-- [net] xprtrdma: Rename rpcrdma_req::rl_free (Don Dutile) [1499363]
-- [net] xprtrdma: Pass only the list of registered MRs to ro_unmap_sync (Don Dutile) [1499363]
-- [net] xprtrdma: Pre-mark remotely invalidated MRs (Don Dutile) [1499363]
-- [net] xprtrdma: On invalidation failure, remove MWs from rl_registered (Don Dutile) [1499363]
-- [net] svcrdma: fix an incorrect check on -E2BIG and -EINVAL (Don Dutile) [1499363]
-- [infiniband] ib/rxe: do not copy extra stack memory to skb (Don Dutile) [1499363]
-- [net] svcrdma: Remove svc_rdma_chunk_ctxt::cc_dir field (Don Dutile) [1499363]
-- [net] svcrdma: use offset_in_page() macro (Don Dutile) [1499363]
-- [net] svcrdma: Clean up after converting svc_rdma_recvfrom to rdma_rw API (Don Dutile) [1499363]
-- [net] svcrdma: Clean-up svc_rdma_unmap_dma (Don Dutile) [1499363]
-- [net] svcrdma: Remove frmr cache (Don Dutile) [1499363]
-- [net] svcrdma: Remove unused Read completion handlers (Don Dutile) [1499363]
-- [net] svcrdma: Properly compute .len and .buflen for received RPC Calls (Don Dutile) [1499363]
-- [net] svcrdma: Use generic RDMA R/W API in RPC Call path (Don Dutile) [1499363]
-- [net] svcrdma: Clean up svc_rdma_build_read_chunk() (Don Dutile) [1499363]
-- [net] svcrdma: Add recvfrom helpers to svc_rdma_rw.c (Don Dutile) [1499363]
-- [netdrv] qed: Fix printk option passed when printing ipv6 addresses (Don Dutile) [1499363 1462433]
-- [infiniband] ib/iser: Handle lack of memory management extentions correctly (Don Dutile) [1499363]
-- [infiniband] iser-target: Avoid isert_conn->cm_id dereference in isert_login_recv_done (Don Dutile) [1499363]
-- [infiniband] ib/srpt: Make a debug statement in srpt_abort_cmd() more informative (Don Dutile) [1499363]
-- [infiniband] ib/core, opa_vnic, hfi1, mlx5: Properly free rdma_netdev (Don Dutile) [1499363]
-- [infiniband] rdma/uverbs: Check port number supplied by user verbs cmds (Don Dutile) [1499363]
-- [netdrv] mlx4_en: make mlx4_log_num_mgm_entry_size static (Don Dutile) [1499363 1456692]
-- [netdrv] qed: Add iWARP support for physical queue allocation (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Add iWARP protocol support in context allocation (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP CM add error handling (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP implement disconnect flows (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP CM add active side connect (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP CM add passive side connect (Don Dutile) [1499363 1462435]
-- [netdrv] qed: initialize ll2_syn_handle at start of function (Don Dutile) [1499363 1462433]
-- [netdrv] qed: iWARP CM add listener functions and initial SYN processing (Don Dutile) [1499363 1462435]
-- [netdrv] qed: iWARP CM - setup a ll2 connection for handling SYN packets (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Add iWARP support in ll2 connections (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Rename some ll2 related defines (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Implement iWARP initialization, teardown and qp operations (Don Dutile) [1499363 1462435]
-- [netdrv] qed: Introduce iWARP personality (Don Dutile) [1499363 1462435]
-- [netdrv] mlx4_en: Do not allocate redundant TX queues when TC is disabled (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Add dynamic variable to hold the number of user priorities (UP) (Don Dutile) [1499363 1456692]
-- [infiniband] ib/opa_vnic: Use spinlock instead of mutex for stats_lock (Don Dutile) [1499363 1452831]
-- [infiniband] ib/opa_vnic: Use GFP_ATOMIC while sending trap (Don Dutile) [1499363 1452831]
-- [netdrv] mlx4: fix spelling mistake: "enforcment" -> "enforcement" (Don Dutile) [1499363 1456692]
-- [net] svcrdma: Don't account for Receive queue "starvation" (Don Dutile) [1499363]
-- [net] svcrdma: Improve Reply chunk sanity checking (Don Dutile) [1499363]
-- [net] svcrdma: Improve Write chunk sanity checking (Don Dutile) [1499363]
-- [net] svcrdma: Improve Read chunk sanity checking (Don Dutile) [1499363]
-- [net] svcrdma: Remove svc_rdma_marshal.c (Don Dutile) [1499363]
-- [net] svcrdma: Avoid Send Queue overflow (Don Dutile) [1499363]
-- [net] svcrdma: Squelch disconnection messages (Don Dutile) [1499363]
-- [netdrv] mlx5e: IPSec, Innova IPSec offload infrastructure (Don Dutile) [1499363 1456694]
-- [netdrv] mlx4: fix spelling mistake: "coalesing" -> "coalescing" (Don Dutile) [1499363 1456692]
-- [netdrv] mlx5e: IPoIB, Support the flash device ethtool callback (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5e: Support the flash device ethtool callback (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5: Add mlxfw callbacks (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5: Add helper functions to set/query MCC/MCDA/MCQI registers (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5: Enhance MCAM reg to allow query on access reg support (Don Dutile) [1499363 1466367]
-- [netdrv] mlx5: Add MCC (Management Component Control) register definitions (Don Dutile) [1499363 1466367]
-- [netdrv] qed*: Rename qed_roce_if.h to qed_rdma_if.h (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Split rdma content between qed_rdma and qed_roce (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Duplicate qed_roce.[ch] to qed_rdma.[ch] (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Cleanup qed_roce before duplicating it (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Fix compilation without QED_RDMA (Don Dutile) [1499363 1462433]
-- [netdrv] qed: SPQ async callback registration (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Wait for resources before FUNC_CLOSE (Don Dutile) [1499363 1462433]
-- [netdrv] qed*: Set rdma generic functions prefix (Don Dutile) [1499363 1462433]
-- [netdrv] qed*: qede_roce.[ch] -> qede_rdma.[ch] (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Disable RoCE dpm when DCBx change occurs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: RoCE EDPM to honor PFC (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Chain support for external PBL (Don Dutile) [1499363 1462433]
-- [netdrv] mlx5e: IPoIB, Add ioctl support to IPoIB device driver (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Add PTP support to IPoIB device driver (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Get more TX statistics (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Handle change_mtu (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: Use hard_mtu as part of the mlx5e_priv struct (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Change parameters default values (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: Add new profile function update_carrier (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Add ethtool support (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: Prevent PFC call for non ethernet ports (Don Dutile) [1499363 1385325]
-- [netdrv] mlx5e: IPoIB, Move to a separate directory (Don Dutile) [1499363 1385325]
-- [netdrv] mlx4_en: Refactor mlx4_en_free_tx_desc (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Replace TXBB_SIZE multiplications with shift operations (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Increase default TX ring size (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Improve stack xmit function (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Improve transmit CQ polling (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Improve receive data-path (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Optimized single ring steering (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Remove unused argument in TX datapath function (Don Dutile) [1499363 1456692]
-- [netdrv] qed: Fix an off by one bug (Don Dutile) [1499363 1462433]
-- [infiniband] ib: nes: convert to use DRIVER_ATTR_RW (Don Dutile) [1499363 1462433]
-- [netdrv] qed: add qed_int_sb_init() stub function (Don Dutile) [1499363 1462433]
-- [netdrv] qed: collect GSI port statistics (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Call rx_release_cb() when flushing LL2 (Don Dutile) [1499363 1462433]
-- [netdrv] qed: No need for LL2 frags indication (Don Dutile) [1499363 1462433]
-- [netdrv] qed*: LL2 callback operations (Don Dutile) [1499363 1462433]
-- [netdrv] qed: LL2 code relocations (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Cleaner seperation of LL2 inputs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Revise ll2 Rx completion (Don Dutile) [1499363 1462433]
-- [netdrv] qed: LL2 to use packed information for tx (Don Dutile) [1499363 1462433]
-- [netdrv] mlx5e: Remove limitation of single NIC offloaded TC action per rule (Don Dutile) [1499363 1456694]
-- [infiniband] ib/mlx4: Bump driver version (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_en: Bump driver version (Don Dutile) [1499363 1456692]
-- [netdrv] mlx4_core: Bump driver version (Don Dutile) [1499363 1456692]
-- [netdrv] qed: VFs to try utilizing the doorbell bar (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Multiple qzone queues for VFs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: IOV db support multiple queues per qzone (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Make VF legacy a bitfield (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Assign a unique per-queue index to queue-cid (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Pass vf_params when creating a queue-cid (Don Dutile) [1499363 1462433]
-- [netdrv] qed*: L2 interface to use the SB structures directly (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Create L2 queue database (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Add bitmaps for VF CIDs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Add support for changing iSCSI mac (Don Dutile) [1499363 1462433]
-- [netdrv] qed: No need to reset SBs on IOV init (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Reset IGU CAM to default on init (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Hold a single array for SBs (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Provide auxiliary for getting free VF SB (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Remove assumption on SB order in IGU (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Encapsulate interrupt counters in struct (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Add aux. function translating sb_id -> igu_sb_id (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Distinguish between sb_id and igu_sb_id (Don Dutile) [1499363]
-- [netdrv] qed: IGU read revised (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Minor refactoring in interrupt code (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Make qed_int_cau_conf_pi() static (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Cache alignemnt padding to match host (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Mask parities after occurance (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Print multi-bit attentions properly (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Diffrentiate adapter-specific attentions (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Get rid of the attention-arrays (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Support dynamic s-tag change (Don Dutile) [1499363 1462433]
-- [netdrv] qed: QL41xxx VF MSI-x table (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Don't inherit RoCE DCBx for V2 (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Correct DCBx update scheme (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Add missing static/local dcbx info (Don Dutile) [1499363 1462433]
-- [netdrv] mlxfw: Properly handle dependancy with non-loadable mlx5 (Don Dutile) [1499363 1466367]
-- [netdrv] mlxfw: Make the module selectable (Don Dutile) [1499363 1466367]
-- [netdrv] mlxfw: fix a NULL dereference (Don Dutile) [1499363 1466367]
-- [netdrv] mlxfw: remove redundant goto on error check (Don Dutile) [1499363 1466367]
-- [netdrv] mlxfw: select CONFIG_XZ_DEC (Don Dutile) [1499363 1466367]
-- [netdrv] Add the mlxfw module for Mellanox firmware flash process (Don Dutile) [1499363 1466367]
-- [netdrv] qed: Replace set_id() api with set_name() (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Log probe of PCI device (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Provide MBI information in dev_info (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Enable RoCE parser searching on fp init (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Flush slowpath tasklet on stop (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Remove BB_A0 references (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Drop the 's' from num_ports_in_engines (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Log incorrectly installed board (Don Dutile) [1499363 1462433]
-- [netdrv] qed: !main_ptt for tunnel configuration (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Align DP_ERR style with other DP macros (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Fix sparse warnings (Don Dutile) [1499363 1462433]
-- [netdrv] update drivers to handle HWTSTAMP_FILTER_NTP_ALL (Don Dutile) [1499363]
-- [netdrv] qede: Support 1G advertisment (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Fix setting of Management bitfields (Don Dutile) [1499363 1462433]
-- [netdrv] qede: qedr closure after setting state (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Correct print in iscsi error-flow (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Revise alloc/setup/free flow (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Free previous connections when releasing iSCSI (Don Dutile) [1499363]
-- [netdrv] qede: Don't use an internal MAC field (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Add missing Status-block free (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Honor user request for Tx buffers (Don Dutile) [1499363 1462433]
-- [netdrv] qede: Allow WoL to activate by default (Don Dutile) [1499363]
-- [netdrv] mlx5e: Fix possible memory leak (Don Dutile) [1499363 1456694]
-- [netdrv] qed: Remove unused including <linux/version.h> (Don Dutile) [1499363 1462433]
-- [netdrv] qed: Utilize FW 8.20.0.0 (Don Dutile) [1499363 1462433]
-- [infiniband] ib/mlx5: Bump driver version (Don Dutile) [1499363 1456694]
-- [netdrv] mlx5: Bump driver version (Don Dutile) [1499363 1456694]
-- [netdrv] mlx5: FPGA, Add basic support for Innova (Don Dutile) [1499363 1456672]
-- [netdrv] mlx5: Introduce trigger_health_work function (Don Dutile) [1499363 1456694]
-- [netdrv] mlx5: Update the list of the PCI supported devices (Don Dutile) [1499363 1456690]
-- [netdrv] {net, ib}/mlx5: Replace mlx5_vzalloc with kvzalloc (Don Dutile) [1499363 1456694]
-- [infiniband] ib/core: Fix static analysis warning in ib_policy_change_task (Don Dutile) [1499363 1464478]
-- [infiniband] ib/core: Fix uninitialized variable use in check_qp_port_pkey_settings (Don Dutile) [1499363 1464478]
-- [security] selinux: Add a cache for quicker retreival of PKey SIDs (Don Dutile) [1499363 1464478]
-- [security] selinux: Add IB Port SMP access vector (Don Dutile) [1499363 1464478]
-- [security] selinux: Implement Infiniband PKey "Access" access vector (Don Dutile) [1499363 1464478]
-- [security] selinux: Allocate and free infiniband security hooks (Don Dutile) [1499363 1464478]
-- [security] selinux: Create policydb version for Infiniband support (Don Dutile) [1499363 1464478]
-- [infiniband] ib/core: Enforce security on management datagrams (Don Dutile) [1499363 1464478]
-- [security] selinux lsm ib/core: Implement LSM notification system (Don Dutile) [1499363 1464478]
-- [infiniband] ib/core: Enforce PKey security on QPs (Don Dutile) [1499363 1464478]
-- [infiniband] ib/core: IB cache enhancements to support Infiniband security (Don Dutile) [1499363 1464478]
-- [security] selinux: Update policy version to support constraints info (Don Dutile) [1499363 1464478]
-
-* Fri Nov 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-788.el7]
-- [infiniband] i40iw: Fix port number for query QP (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Add missing memory barriers (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Add support for port reuse on active side connections (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Add missing VLAN priority (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Call i40iw_cm_disconn on modify QP to disconnect (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Prevent multiple netdev event notifier registrations (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fail open if there are no available MSI-X vectors (Stefan Assmann) [1466401]
-- [infiniband] i40iw: make some structures const (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: Remove unused argument (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Improve CQP timeout logic (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fix potential fcn_id_array out of bounds (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Use correct alignment for CQ0 memory (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fix typecast of tcp_seq_num (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Correct variable names (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fix parsing of query/commit FPM buffers (Stefan Assmann) [1466401]
-- [infiniband] i40iw: fix spelling mistake: "allloc_buf" -> "alloc_buf" (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fixes for static checker warnings (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Simplify code (Stefan Assmann) [1466401]
-- [infiniband] ib/i40iw: Fix error code in i40iw_create_cq() (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Free QP PBLEs when the QP is destroyed (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Avoid memory leak of CQP request objects (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Update list correctly (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Add missing memory barrier (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Free QP resources on CQP destroy QP failure (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Release cm_id ref on PCI function reset (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Utilize iwdev->reset during PCI function reset (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Do not poll CCQ after it is destroyed (Stefan Assmann) [1466401]
-- [infiniband] i40iw: Fix order of cleanup in close (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: fix duplicated code for different branches (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: Fix device initialization error path (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: ACK MPA Reject frame (Stefan Assmann) [1466401]
-- [infiniband] rdma/i40iw: Don't set 0-length FULPDU RTR indication control flag (Stefan Assmann) [1466401]
-- [infiniband] ib/i40iw: use setup_timer (Stefan Assmann) [1466401]
-
-* Thu Nov 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-787.el7]
-- [scsi] remove various unused blist flags (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: remove synchronous STPG support (Mike Snitzer) [1499107]
-- [scsi] scsi_devinfo: remove synchronous ALUA for NETAPP devices (Mike Snitzer) [1499107]
-- [scsi] scsi_dh: move .rescan to an auxiliary structure (Mike Snitzer) [1499107]
-- [scsi] scsi_dh: fix RHEL7 kABI breakage (Mike Snitzer) [1475380]
-- [scsi] revert: scsi: handle more device handler setup/teardown in common code (Mike Snitzer) [1475380]
-- [scsi] Add scsi_vpd_tpg_id() (Mike Snitzer) [1475380]
-- [scsi] Add scsi_vpd_lun_id() (Mike Snitzer) [1475380]
-- [scsi] scsi_dh_alua: Warn if the first argument of alua_rtpg_queue() is NULL (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Ensure that alua_activate() calls the completion function (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Check scsi_device_get() return value (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Fix RCU annotations (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Fix a reference counting bug (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: fix missing kref_put() in alua_rtpg_work() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Fix memory leak in alua_rtpg() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: do not fail for unknown VPD identification (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: uninitialized variable in alua_rtpg() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Declare local functions static (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Update version to 2.0 (Mike Snitzer) [1499107]
-- [scsi] scsi_dh: add 'rescan' callback (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Send TEST UNIT READY to poll for transitioning (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: update all port states (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Recheck state on unit attention (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Add new blacklist flag 'BLIST_SYNC_ALUA' (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Allow workqueue to run synchronously (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Use workqueue for RTPG (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: remove 'rel_port' from alua_dh_data structure (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: move optimize_stpg evaluation (Mike Snitzer) [1499107]
-- [scsi] revert commit a8e5a2d593cb ("[scsi] scsi_dh_alua: ALUA handler attach should succeed while TPG is transitioning") (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: simplify alua_initialize() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use unique device id (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Use separate alua_port_group structure (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: allocate RTPG buffer separately (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: switch to scsi_execute_req_flags() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: call alua_rtpg() if stpg fails (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Make stpg synchronous (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: separate out alua_stpg() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Pass buffer as function argument (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Remove stale variables (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use scsi_vpd_tpg_id() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: simplify sense code handling (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: rework alua_check_tpgs() to return the tpgs mode (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use unaligned access macros (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use flag for RTPG extended header (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: fixup description of stpg_endio() (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: return standard SCSI return codes in submit_rtpg (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: use standard logging functions (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: sanitze sense code handling (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: improved logging (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Use vpd_pg83 information (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_alua: Disable ALUA handling for non-disk devices (Mike Snitzer) [1499107]
-- [scsi] fix device handler detach oops (Mike Snitzer) [1499107]
-- [scsi] handle more device handler setup_teardown in common code (Mike Snitzer) [1499107]
-- [scsi] device handlers must have attach and detach methods (Mike Snitzer) [1499107]
-- [scsi] remove struct scsi_dh_devlist (Mike Snitzer) [1499107]
-- [scsi] use container_of to get at device handler private data (Mike Snitzer) [1499107]
-- [scsi] scsi_dh: get module reference outside of device handler (Mike Snitzer) [1499107]
-- [scsi] scsi_dh_hp_sw: fix return value on failed allocation (Mike Snitzer) [1499107]
-- [scsi] revert "scsi_dh_alua: Fix memory leak in alua_bus_attach()" (Mike Snitzer) [1499107]
-
-* Thu Nov 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-786.el7]
-- [pinctrl] intel: Read back TX buffer state (Xiaolong Wang) [1511744]
-- [pinctrl] intel: Add Intel Denverton pin controller support (Xiaolong Wang) [1384731]
-- [net] revert "net: use lib/percpu_counter API for fragmentation mem accounting" (Jesper Brouer) [1508499]
-- [net] inet_diag: Fix up addresses in v4-mapped SYN-RECV TCP pseudo sockets (Stefano Brivio) [1372520]
-- [net] netfilter: nf_ct_sip: allow tab character in SIP headers (Davide Caratti) [1461348]
-- [net] netfilter: nf_ct_sip: correct allowed characters in Call-ID SIP header (Davide Caratti) [1461348]
-- [net] netfilter: nf_ct_sip: correct parsing of continuation lines in SIP headers (Davide Caratti) [1461348]
-- [net] ipvs: update real-server binding of outgoing connections in SIP-pe (Davide Caratti) [1461348]
-- [net] ipvs: make drop_entry protection effective for SIP-pe (Davide Caratti) [1461348]
-- [net] ipvs: don't alter conntrack in OPS mode (Davide Caratti) [1461348]
-- [net] ipvs: optimize release of connections in OPS mode (Davide Caratti) [1461348]
-- [net] ipvs: handle connections started by real-servers (Davide Caratti) [1461348]
-- [net] ipvs: rerouting to local clients is not needed anymore (Davide Caratti) [1461348]
-- [net] ipv4: Namespecify the tcp_keepalive_intvl sysctl knob (Hangbin Liu) [1476667]
-- [net] ipv4: Namespecify tcp_keepalive_probes sysctl knob (Hangbin Liu) [1476667]
-- [net] ipv4: Namespaceify tcp_keepalive_time sysctl knob (Hangbin Liu) [1476667]
-- [mm] mm/memory_hotplug: define find_{smallest|biggest}_section_pfn as unsigned long (Yasuaki Ishimatsu) [1500440]
-- [mm] mm/memory_hotplug: change pfn_to_section_nr/section_nr_to_pfn macro to inline function (Yasuaki Ishimatsu) [1500440]
-- [mm] filemap: don't plant shadow entries without radix tree node (Waiman Long) [1509891]
-- [mm] Fix panic due to NULL pointer dereference in __memcg_kmem_get_cache() (Larry Woodman) [1490495]
-- [usb] xhci: set missing SuperSpeedPlus Link Protocol bit in roothub descriptor (Torez Smith) [1496645]
-- [drm] i915: Add interface to reserve fence registers for vGPU (Paul Lai) [1449711]
-- [drm] i915/gvt: Fix GPU hang after reusing vGPU instance across different guest OS (Paul Lai) [1458689]
-- [pci] pci/msi: Ignore affinity if pre/post vector count is more than min_vecs (Myron Stowe) [1509390]
-- [pci] pci/msi: fix the pci_alloc_irq_vectors_affinity stub (Myron Stowe) [1509390]
-- [virt] vfio/pci: Virtualize Maximum Read Request Size (Alex Williamson) [1499021]
-- [virt] vfio/pci: Virtualize Maximum Payload Size (Alex Williamson) [1499021]
-- [virt] vfio: Stall vfio_del_group_dev() for container group detach (Alex Williamson) [1499022]
-- [virt] vfio: fix noiommu vfio_iommu_group_get reference count (Alex Williamson) [1499022]
-- [virt] vfio/pci: Fix handling of RC integrated endpoint PCIe capability size (Alex Williamson) [1499022]
-- [virt] vfio/pci: Use pci_try_reset_function() on initial open (Alex Williamson) [1499022]
-- [virt] vfio: Remove unnecessary uses of vfio_container.group_lock (Alex Williamson) [1499022]
-- [virt] vfio: New external user group/file match (Alex Williamson) [1499022]
-- [virt] kvm-vfio: Decouple only when we match a group (Alex Williamson) [1499022]
-- [virt] vfio: Fix group release deadlock (Alex Williamson) [1499022]
-- [virt] vfio: fix a typo in comment of function vfio_pin_pages (Alex Williamson) [1499022]
-- [scsi] virtio_scsi: let host do exception handling (Paolo Bonzini) [1501309]
-- [edac] skx_edac: Handle systems with segmented PCI busses (Yasuyuki Kobayashi) [1492511 1500572]
-- [block] loop: Add PF_LESS_THROTTLE to block/loop device thread (Ming Lei) [1511107]
-- [crypto] x86/sha1 - Fix reads beyond the number of blocks passed (Herbert Xu) [1469200]
-- [netdrv] sfc: remove redundant variable start (Jarod Wilson) [1479400]
-- [netdrv] sfc: don't warn on successful change of MAC (Jarod Wilson) [1479400]
-- [netdrv] sfc: support rx-fcs and rx-all (Jarod Wilson) [1479400]
-- [kernel] percpu-refcount: support synchronous switch to atomic mode (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: allow operation mode switching operations to be called concurrently (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: restructure operation mode switching (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: unify staggered atomic switching wait behavior (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: reorganize __percpu_ref_switch_to_atomic() and relocate percpu_ref_switch_to_atomic() (Prarit Bhargava) [1511619]
-- [kernel] percpu_ref: remove unnecessary RCU grace period for staggered atomic switching confirmation (Prarit Bhargava) [1511619]
-
-* Wed Nov 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-785.el7]
-- [netdrv] mlx5e: Avoid doing a cleanup call if the profile doesn't have it (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Properly check applicability of devlink eswitch commands (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Fix min inline value for VF rep SQs (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Fix timestamping capabilities reporting (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Wait for FW readiness before initializing command interface (Don Dutile) [1456694 1499362]
-- [infiniband] ib/ipoib: Fix memory leak in create child syscall (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Fix access to un-initialized napi struct (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Delete napi in device uninit default (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Limit call to free rdma_netdev for capable devices (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Fix memory leaks for child interfaces priv (Don Dutile) [1456699 1499362]
-- [infiniband] rxe: Fix a sleep-in-atomic bug in post_one_send (Don Dutile) [1456704 1499362]
-- [infiniband] rdma/qedr: Add 64KB PAGE_SIZE support to user-space queues (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: Initialize byte_len in WC of READ and SEND commands (Don Dutile) [1462433 1499362]
-- [netdrv] qed: fix dump of context data (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5: Enable 4K UAR only when page size is bigger than 4K (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Fix wrong indications in DIM due to counter wraparound (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Added BW check for DIM decision mechanism (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Remove several module events out of ethtool stats (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Continue health polling until it is explicitly stopped (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Fix create vport flow table flow (Don Dutile) [1385325 1499362]
-- [netdrv] mlx4: Check if Granular QoS per VF has been enabled before updating QP qos_vport (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: Fix the check in attaching steering rules (Don Dutile) [1456692 1499362]
-- [infiniband] rdma/sa: Fix kernel panic in CMA request handler flow (Don Dutile) [1499362]
-- [infiniband] rdma/umem: Fix missing mmap_sem in get umem ODP call (Don Dutile) [1499362]
-- [infiniband] rdma/core: not to set page dirty bit if it's already set (Don Dutile) [1499362]
-- [infiniband] rdma/uverbs: Declare local function static and add brackets to sizeof (Don Dutile) [1499362]
-- [infiniband] rdma/netlink: Reduce exposure of RDMA netlink functions (Don Dutile) [1499362]
-- [infiniband] rdma/srp: Fix NULL deref at srp_destroy_qp() (Don Dutile) [1499362]
-- [infiniband] rdma/ipoib: Limit the ipoib_dev_uninit_default scope (Don Dutile) [1456699 1499362]
-- [infiniband] rdma/ipoib: Replace netdev_priv with ipoib_priv for ipoib_get_link_ksettings (Don Dutile) [1456699 1499362]
-- [infiniband] rdma/qedr: add null check before pointer dereference (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/mlx5: set UMR wqe fence according to HCA cap (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Define interface bits for fencing UMR wqe (Don Dutile) [1456694 1499362]
-- [infiniband] rdma/mlx4: Fix MAD tunneling when SRIOV is enabled (Don Dutile) [1456692 1499362]
-- [infiniband] rdma/hfi1: change PCI bar addr assignments to Linux API functions (Don Dutile) [1452789 1499362]
-- [infiniband] rdma/hfi1: fix array termination by appending NULL to attr array (Don Dutile) [1452789 1499362]
-- [infiniband] rdma/nes: ACK MPA Reply frame (Don Dutile) [1499362]
-- [infiniband] rdma/nes: Don't set 0-length FULPDU RTR indication control flag (Don Dutile) [1499362]
-- [netdrv] mlx5: avoid build warning for uniprocessor (Don Dutile) [1456694 1499362]
-- [net] xprtrdma: Delete an error message for a failed memory allocation in xprt_rdma_bc_setup() (Don Dutile) [1499362]
-- [netdrv] mlx5: fix bug reading rss_hash_type from CQE (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: IPoIB, handle RX packet correctly (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: Use the correct delete call on offloaded TC encap entry detach (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5e: add CONFIG_INET dependency (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Fix uninitialized data in aRFS infrastructure (Don Dutile) [1462433 1499362]
-- [netdrv] mlx4_core: Use min3 to select number of MSI-X vectors (Don Dutile) [1456692 1499362]
-- [netdrv] mlx5: Use underlay QPN from the root name space (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: IPoIB, Only support regular RQ for now (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: Fix setup TC ndo (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Fix ethtool pause support and advertise reporting (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Use the correct pause values for ethtool advertising (Don Dutile) [1456694 1499362]
-- [uapi] smc_diag.h: fix include from userland (Don Dutile) [1499362]
-- [uapi] includes linux/types.h before exporting files (Don Dutile) [1499362]
-- [netdrv] qede: Split PF/VF ndos (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct doorbell configuration for !4Kb pages (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Tell QM the number of tasks (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Fix VF removal sequence (Don Dutile) [1462433 1499362]
-- [netdrv] mlx4_core: Reduce harmless SRIOV error message to debug level (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4_en: Avoid adding steering rules with invalid ring (Don Dutile) [1456692 1499362]
-- [kernel] treewide: spelling: correct diffrent[iate] and banlance typos (Don Dutile) [1499362]
-- [infiniband] ib/srpt: Avoid that aborting a command triggers a kernel warning (Don Dutile) [1499362]
-- [infiniband] ib/srpt: Fix abort handling (Don Dutile) [1499362]
-- [infiniband] rxe: expose num_possible_cpus() cnum_comp_vectors (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Update caller's CRC for RXE_MEM_TYPE_DMA memory type (Don Dutile) [1456704 1499362]
-- [infiniband] ib/hfi1: Clean up on context initialization failure (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix an assign/ordering issue with shared context IDs (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Clean up context initialization (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Correctly clear the pkey (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Search shared contexts on the opened device, not all devices (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Remove atomic operations for SDMA_REQ_HAVE_AHG bit (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Use filedata rather than filepointer (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Name function prototype parameters (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix a subcontext memory leak (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Return an error on memory allocation failure (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Adjust default eager_buffer_size to 8MB (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Get rid of divide when setting the tx request header (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix yield logic in send engine (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1, ib/rdmavt: Move r_adefered to r_lock cache line (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix checks for Offline transient state (Don Dutile) [1452789 1499362]
-- [netdrv] mlx5: Enable IPoIB acceleration (Don Dutile) [1456694 1499362]
-- [netdrv] qede: Fix possible misconfiguration of advertised autoneg value (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Fix overriding of supported autoneg value (Don Dutile) [1462433 1499362]
-- [netdrv] qed*: Fix possible overflow for status block id field (Don Dutile) [1462433 1499362]
-- [netdrv] qed*: Fix issues in the ptp filter config implementation (Don Dutile) [1462433 1499362]
-- [netdrv] qede: Fix concurrency issue in PTP Tx path processing (Don Dutile) [1462433 1499362]
-- [infiniband] ib/ocrdma: fix out of bounds access to local buffer (Don Dutile) [1499362]
-- [infiniband] ib/mlx4: Fix incorrect order of formal and actual parameters (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Change flush logic so it adheres to the variable name (Don Dutile) [1456692 1499362]
-- [infiniband] mlx5: Fix mlx5_ib_map_mr_sg mr length (Don Dutile) [1456694 1499362]
-- [infiniband] ib/rxe: Don't clamp residual length to mtu (Don Dutile) [1456704 1499362]
-- [infiniband] ib/sa: Add support to query OPA path records (Don Dutile) [1499362]
-- [infiniband] ib/sa: Add OPA path record type (Don Dutile) [1499362]
-- [infiniband] ib/sa: Add OPA addr header (Don Dutile) [1499362]
-- [infiniband] ib/sa: Split struct sa_path_rec based on IB and ROCE specific fields (Don Dutile) [1499362]
-- [infiniband] ib/sa: Introduce path record specific types (Don Dutile) [1499362]
-- [infiniband] ib/sa: Rename ib_sa_path_rec to sa_path_rec (Don Dutile) [1499362]
-- [infiniband] ib/cm: Add braces when using sizeof (Don Dutile) [1499362]
-- [infiniband] ib/core: Define 'opa' rdma_ah_attr type (Don Dutile) [1499362]
-- [infiniband] ib/core: Define 'ib' and 'roce' rdma_ah_attr types (Don Dutile) [1499362]
-- [infiniband] ib/core: Use rdma_ah_attr accessor functions (Don Dutile) [1499362]
-- [infiniband] ib/core: Add accessor functions for rdma_ah_attr fields (Don Dutile) [1499362]
-- [infiniband] ib/pvrdma: Rename ib_ah_attr related functions (Don Dutile) [1454965 1499362]
-- [infiniband] ib/mthca: Rename to_ib_ah_attr to to_rdma_ah_attr (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Rename to_ib_ah_attr to to_rdma_ah_attr (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx4: Rename to_ib_ah_attr to to_rdma_ah_attr (Don Dutile) [1456692 1499362]
-- [infiniband] ib/core: Rename ib_destroy_ah to rdma_destroy_ah (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename ib_query_ah to rdma_query_ah (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename ib_modify_ah to rdma_modify_ah (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename ib_create_ah to rdma_create_ah (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename struct ib_ah_attr to rdma_ah_attr (Don Dutile) [1499362]
-- [infiniband] ib/rxe: Initialize ib_ah_attr during query_ah (Don Dutile) [1456704 1499362]
-- [infiniband] ib/core: Check for global flag when using ah_attr (Don Dutile) [1499362]
-- [infiniband] ib/core: Add braces when using sizeof (Don Dutile) [1499362]
-- [infiniband] ib/ipoib: Remove 'else' when the 'if' has a return (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ocrdma: Add identifier names to function definitions (Don Dutile) [1499362]
-- [netdrv] qed: Prevent warning without CONFIG_RFS_ACCEL (Don Dutile) [1462433 1499362]
-- [netdrv] qed: output the DPM status and WID count (Don Dutile) [1462433 1499362]
-- [netdrv] qed: align DPI configuration to HW requirements (Don Dutile) [1462433 1499362]
-- [netdrv] qed: verify RoCE resource bitmaps are released (Don Dutile) [1462433 1499362]
-- [netdrv] qed: add error handling flow to TID deregistratin posting failure (Don Dutile) [1462433 1499362]
-- [netdrv] qed: remove unused SQ error state (Don Dutile) [1462433 1499362]
-- [netdrv] qed: configure the RoCE max message size (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Unlock on error in qed_vf_pf_acquire() (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5: E-Switch, Avoid redundant memory allocation (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Disable HW LRO when PCI is slower than link on striding RQ (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Use u8 as ownership type in mlx5e_get_cqe() (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Use prefetchw when a write is to follow (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Optimize poll ICOSQ completion queue (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Act on delay probe time updates (Don Dutile) [1456687 1499362]
-- [kernel] [netdrv] mlx5e: Update neighbour 'used' state using HW flow rules counters (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Add support to neighbour update flow (Don Dutile) [1499362 1456687]
-- [netdrv] mlx5e: Add neighbour hash table to the representors (Don Dutile) [1456687 1499362]
-- [net] add addrconf.h to ip6_route.h (Don Dutile) [1499362]
-- [kernel] locking/refcount: Remove the half-implemented refcount_sub() API (Don Dutile) [1499362]
-- [lib] locking/refcount: Create unchecked atomic_t implementation (Don Dutile) [1499362]
-- [lib] refcount: change EXPORT_SYMBOL markings (Don Dutile) [1499362]
-- [lib] locking/refcount: Add refcount_t API kernel-doc comments (Don Dutile) [1499362 1456687]
-- [lib] locking/refcounts: Change WARN() to WARN_ONCE() (Don Dutile) [1499362 1456687]
-- [kernel] locking/refcounts: Add missing kernel.h header to have UINT_MAX defined (Don Dutile) [1456687 1499362]
-- [lib] locking/refcounts: Out-of-line everything (Don Dutile) [1456687 1499362]
-- [lib] refcount_t: Introduce a special purpose refcount type (Don Dutile) [1456687 1499362]
-- [kernel] locking/atomics: Add _{acquire|release|relaxed}() variants of some atomic operations (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Read neigh parameters with proper locking (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Use flag to properly monitor a flow rule offloading state (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Remove output device parameter from create encap header helpers definition (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Move the encap entry structure from the eswitch header (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Remove encap entry pointer from the eswitch flow attributes (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Extendable vport representor netdev private data (Don Dutile) [1499362 1456694]
-- [infiniband] ib/sa: Add support to query opa classport info (Don Dutile) [1499362]
-- [trace] iommu: Remove pci.h include from trace/events/iommu.h (Don Dutile) [1499362]
-- [infiniband] ib/core: Move opa_class_port_info definition to header file (Don Dutile) [1499362]
-- [infiniband] ib/core: Add rdma_cap_opa_ah to expose opa address handles (Don Dutile) [1499362]
-- [infiniband] ib/sa: Modify SA to implicitly cache Class Port info (Don Dutile) [1499362]
-- [infiniband] ib/sa: Move functions update_sm_ah() and ib_sa_event() (Don Dutile) [1499362]
-- [infiniband] ib/sa: Remove unwanted braces (Don Dutile) [1499362]
-- [infiniband] ib/sa: Add braces when using sizeof (Don Dutile) [1499362]
-- [infiniband] ib/sa: Fix lines longer than 80 columns (Don Dutile) [1499362]
-- [infiniband] ib/hfi1: Use bool in process_ecn (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi: Protect against writable mmap (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix unbalanced braces around else (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Convert Lx to llx (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix misspelling in comment (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Permanently enable P_Key checking in HFI (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Cache neighbor secure data after link up (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Adjust high temperature warning for QSFP cable (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Fix softlockup issue (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Use defines from common headers (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Add functions to parse 9B headers (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Rename hdr2sc to hfi1_9B_get_sc5 (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Return SC2VL mappings to FM with VL15 instead of ILLEGAL_VL (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Validate the TID count before using it (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt/hfi1/qib: Use the MGID and MLID for multicast addressing (Don Dutile) [1452789 1499362]
-- [infiniband] ib/core: For multicast functions, verify that LIDs are multicast LIDs (Don Dutile) [1499362]
-- [infiniband] ib/hfi1: Correct MulticastMask/CollectiveMask info to SMA output (Don Dutile) [1452789 1499362]
-- [infiniband] ib/core: If the MGID/MLID pair is not on the list return an error (Don Dutile) [1499362]
-- [infiniband] ib/qib: use setup_timer (Don Dutile) [1499362]
-- [infiniband] ib/nes: use setup_timer (Don Dutile) [1499362]
-- [infiniband] ib/nes: Fix incorrect type in assignment (Don Dutile) [1499362]
-- [infiniband] ib/usnic: Simplify the code to balance loc/unlock calls (Don Dutile) [1499362]
-- [infiniband] ib/usnic: Explicitly include usnic headers (Don Dutile) [1499362]
-- [infiniband] ib/core: Mark local uverbs_std_types functions to be static (Don Dutile) [1499362]
-- [infiniband] ib/rxe: fix typo: "algorithmi" -> "algorithm" (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rdmavt: restore IRQs on error path in rvt_create_ah() (Don Dutile) [1452789 1499362]
-- [infiniband] rdma/qedr: add support for send+invalidate in poll CQ (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: destroy CQ only after HW releases it (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: enhance destroy flow for GSI QP (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: properly check atomic capabilities (Don Dutile) [1462433 1499362]
-- [infiniband] rdma/qedr: reset access control when registering a MR (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Acquire/release ptt_ptp lock when enabling/disabling PTP (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Remove the un-needed ptp header file (Don Dutile) [1462433 1499362]
-- [netdrv] qede: Add support for PTP resource locking (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Add support for PTP resource locking (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Add support for MFW resource locking (Don Dutile) [1462433 1499362]
-- [net] svcrdma: Clean out old XDR encoders (Don Dutile) [1499362]
-- [net] svcrdma: Remove the req_map cache (Don Dutile) [1499362]
-- [net] svcrdma: Remove unused RDMA Write completion handler (Don Dutile) [1499362]
-- [net] svcrdma: Reduce size of sge array in struct svc_rdma_op_ctxt (Don Dutile) [1499362]
-- [net] svcrdma: Clean up RPC-over-RDMA backchannel reply processing (Don Dutile) [1499362]
-- [net] svcrdma: Report Write/Reply chunk overruns (Don Dutile) [1499362]
-- [net] svcrdma: Clean up RDMA_ERROR path (Don Dutile) [1499362]
-- [net] svcrdma: Use rdma_rw API in RPC reply path (Don Dutile) [1499362]
-- [net] svcrdma: Introduce local rdma_rw API helpers (Don Dutile) [1499362]
-- [net] svcrdma: Clean up svc_rdma_get_inv_rkey() (Don Dutile) [1499362]
-- [net] svcrdma: Add helper to save pages under I/O (Don Dutile) [1499362]
-- [net] svcrdma: Eliminate RPCRDMA_SQ_DEPTH_MULT (Don Dutile) [1499362]
-- [net] svcrdma: Add svc_rdma_map_reply_hdr() (Don Dutile) [1499362]
-- [net] svcrdma: Move send_wr to svc_rdma_op_ctxt (Don Dutile) [1499362]
-- [net] xprtrdma: Remove rpcrdma_buffer::rb_pool (Don Dutile) [1499362]
-- [net] xprtrdma: Squelch ENOBUFS warnings (Don Dutile) [1499362]
-- [net] xprtrdma: Annotate receive workqueue (Don Dutile) [1499362]
-- [net] xprtrdma: Revert commit d0f36c46deea (Don Dutile) [1499362]
-- [net] xprtrdma: Restore transport after device removal (Don Dutile) [1499362]
-- [net] xprtrdma: Refactor rpcrdma_ep_connect (Don Dutile) [1499362]
-- [net] xprtrdma: Support unplugging an HCA from under an NFS mount (Don Dutile) [1499362]
-- [net] xprtrdma: Use same device when mapping or syncing DMA buffers (Don Dutile) [1499362]
-- [net] xprtrdma: Refactor rpcrdma_ia_open() (Don Dutile) [1499362]
-- [net] xprtrdma: Detect unreachable NFS/RDMA servers more reliably (Don Dutile) [1499362]
-- [net] sunrpc: Export xprt_force_disconnect() (Don Dutile) [1499362]
-- [net] xprtrdma: Cancel refresh worker during buffer shutdown (Don Dutile) [1499362]
-- [infiniband] ib/vmw_pvrdma: Spare annotate imm_data (Don Dutile) [1454965 1499362]
-- [infiniband] ib/mlx5: Add ODP support to MW (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Extract page fault code (Don Dutile) [1456694 1499362]
-- [infiniband] ib/umem: Add support to huge ODP (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Add contiguous ODP support (Don Dutile) [1456694 1499362]
-- [infiniband] ib/umem: Add contiguous ODP support (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Decrease verbosity level of ODP errors (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Fix implicit MR GC (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Fix UMR size calculation (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Fix function updating xlt emergency path (Don Dutile) [1456694 1499362]
-- [infiniband] ib: Replace ib_umem page_size by page_shift (Don Dutile) [1499362]
-- [infiniband] ib/hfi1: Use pcie_flr() instead of duplicating it (Don Dutile) [1452789 1499362]
-- [kernel] pci: Export pcie_flr() (Don Dutile) [1452789 1499362]
-- [infiniband] ib/core: change the return type to void (Don Dutile) [1499362]
-- [infiniband] ib/hfi: Fix up comments in engine mapping (Don Dutile) [1452789 1499362]
-- [infiniband] uverbs: Fix integer overflows (Don Dutile) [1499362]
-- [infiniband] {net, ib}/{rxe, usnic}: Utilize generic mac to eui32 function (Don Dutile) [1456704 1499362]
-- [infiniband] ib/usnic: Remove unused functions (Don Dutile) [1499362]
-- [infiniband] ib/iser: fix spelling mistake: "unexepected" -> "unexpected" (Don Dutile) [1499362]
-- [netdrv] qed: fix invalid use of sizeof in qed_alloc_qm_data() (Don Dutile) [1462433 1499362]
-- [netdrv] qed - VF tunnelling support [VXLAN/GENEVE/GRE] (Don Dutile) [1462433 1499362]
-- [netdrv] qed/qede: Add UDP ports in bulletin board (Don Dutile) [1462433 1499362]
-- [netdrv] qede: Disable tunnel offloads for non offloaded UDP ports (Don Dutile) [1462433 1499362]
-- [netdrv] qed/qede: Enable tunnel offloads based on hw configuration (Don Dutile) [1462433 1499362]
-- [netdrv] qed: refactor tunnelling - API/Structs (Don Dutile) [1462433 1499362]
-- [kernel] [netdrv] qed: Add support for static dcbx (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Support dcbnl IEEE selector field (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Add additional DCBx debug messages (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Separate RoCE DCBx support for V2 (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Cleanup DCBx unnecessary parameters (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5: fix warning about missing prototype (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: hide unused functions (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: E-Switch, Add control for encapsulation (Don Dutile) [1499362]
-- [netdrv] mlx5: E-Switch, Refactor fast path FDB table creation in switchdev mode (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Add support for active_width and active_speed in RoCE (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Set mlx5_query_roce_port's return value to void (Don Dutile) [1456694 1499362]
-- [infiniband] ib/core: Add HDR speed enum (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Set correct SL in completion for RoCE (Don Dutile) [1456694 1499362]
-- [infiniband] ib/cma: Send MRA for reply messages (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Support congestion related counters (Don Dutile) [1456663 1499362]
-- [infiniband] ib/mthca: Check validity of output parameter pointer (Don Dutile) [1499362]
-- [infiniband] ib/mlx5: Add drop flow steering rule support (Don Dutile) [1456687 1499362]
-- [infiniband] ib/core: Introduce drop flow specification (Don Dutile) [1456687 1499362]
-- [infiniband] ib/mlx5: Use IP version matching to classify IP traffic (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Add inner spec and IPv6 validation in user's flow attribute list (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Fix wrong use of kfree at bad flow in create_cq_user (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Enlarge autogroup flow table (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Check supported flow table size (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Change vma from shared to private (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx5: Take write semaphore when changing the vma struct (Don Dutile) [1456694 1499362]
-- [infiniband] ib/mlx4: Change vma from shared to private (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Take write semaphore when changing the vma struct (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Reduce SRIOV multicast cleanup warning message to debug level (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Fix ib device initialization error flow (Don Dutile) [1456692 1499362]
-- [infiniband] ib/mlx4: Support RAW Ethernet when RoCE is disabled (Don Dutile) [1456692 1499362]
-- [infiniband] ib/core: Fix sysfs registration error flow (Don Dutile) [1499362]
-- [infiniband] ib/core: Fix kernel crash during fail to initialize device (Don Dutile) [1499362]
-- [infiniband] ib/ipoib: Fix deadlock between ipoib_stop and mcast join flow (Don Dutile) [1456699 1499362]
-- [infiniband] ib/rxe: Cache dst in QP instead of getting it for each send (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Offload CRC calculation when possible (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Do not export module's private function (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Avoid accessing timers for non RC QPs (Don Dutile) [1456704 1499362]
-- [infiniband] ib/rxe: Add port protocol stats (Don Dutile) [1456664 1499362]
-- [netdrv] mlx5e: IPoIB, Fix error handling in mlx5_rdma_netdev_alloc() (Don Dutile) [1385325 1499362]
-- [infiniband] ib/hfi1: Coding style improvement (make sizeof use safer) (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Remove intermediate var in hfi1_user_sdma_alloc_queues() (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Use kcalloc() in hfi1_user_sdma_alloc_queues() (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Use kcalloc() in hfi1_user_exp_rcv_init() (Don Dutile) [1452789 1499362]
-- [netdrv] qede: allocate enough data for ->arfs_fltr_bmap (Don Dutile) [1462433 1499362]
-- [infiniband] cxgb3: Convert PDBG to pr_debug (Don Dutile) [1499362]
-- [net] locking/atomic, kref: Add kref_read() (Don Dutile) [1499362]
-- [infiniband] cxgb3: Use more common logging style (Don Dutile) [1499362]
-- [infiniband] ib/ipoib: Support acceleration options callbacks (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Use defined function for netdev_priv function (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Rename qpn to be dqpn in ipoib_send and post_send functions (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Separate control from HW operation on ipoib_open/stop ndo (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Separate control and data related initializations (Don Dutile) [1456699 1499362]
-- [infiniband] ib/ipoib: Introduce RDMA netdev interface and IPoIB structs (Don Dutile) [1456699 1499362]
-- [infiniband] ib/hfi1: VNIC SDMA support (Don Dutile) [1452831 1499362]
-- [infiniband] ib/hfi1: Virtual Network Interface Controller (VNIC) HW support (Don Dutile) [1452831 1499362]
-- [netdrv] mlx4: suppress 'may be used uninitialized' warning (Don Dutile) [1456692 1499362]
-- [infiniband] ib/hfi1: OPA_VNIC RDMA netdev support (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: VNIC Ethernet Management Agent (VEMA) function (Don Dutile) [1499362]
-- [infiniband] ib/opa-vnic: VNIC Ethernet Management Agent (VEMA) interface (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: VNIC MAC table support (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: VNIC statistics support (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: VNIC Ethernet Management (EM) structure definitions (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: Virtual Network Interface Controller (VNIC) netdev (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: Virtual Network Interface Controller (VNIC) interface (Don Dutile) [1452831 1499362]
-- [infiniband] ib/opa-vnic: RDMA NETDEV interface (Don Dutile) [1452831 1499362]
-- [infiniband] rdma/uverbs: Initialize cq_context appropriately (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename uverbs event file structure (Don Dutile) [1499362]
-- [infiniband] ib/core: Don't use is_async in event files to infer events size (Don Dutile) [1499362]
-- [infiniband] ib/core: A small refactor in destroy WQ handler (Don Dutile) [1499362]
-- [infiniband] ib/core: Nullify ib_uobject during allocation (Don Dutile) [1499362]
-- [infiniband] ib/core: Don't pass the lock state to _rdma_remove_commit_uobject (Don Dutile) [1499362]
-- [infiniband] ib/core: Rename write flag to exclusive in rdma_core (Don Dutile) [1499362]
-- [netdrv] qede: Add aRFS support (Don Dutile) [1462433 1499362]
-- [netdrv] qed: aRFS infrastructure support (Don Dutile) [1462433 1499362]
-- [infiniband] hw/mlx5: Add New bit to check over QP creation (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: E-switch vport manager is valid for ethernet only (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, RX handler (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: RX handlers per netdev profile (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, Xmit flow (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: Xmit flow break down (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, Underlay QP (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, Basic netdev ndos open/close (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, TX TIS creation (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, RSS flow steering tables (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, RX steering RSS RQTs and TIRs (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: IPoIB, Add netdevice profile skeleton (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5e: More generic netdev management API (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5: Enable flow-steering for IB link (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5: Refactor create flow table method to accept underlay QP (Don Dutile) [1385325 1499362]
-- [netdrv] mlx5: Add IPoIB enhanced offloads bits to mlx5_ifc (Don Dutile) [1385325 1499362]
-- [netdrv] cxgb3: Use net_device_stats from struct net_device (Don Dutile) [1499362]
-- [netdrv] qede: Add support for ingress headroom (Don Dutile) [1462433 1499362]
-- [netdrv] qede: Update receive statistic once per NAPI (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5e: Set default RX moderation parameters on driver load (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Reuse alloc cq code for all CQs allocation (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Show board id in ethtool driver information (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Change FW sub_minor display to 4 zeros padding (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Make mlx5e_modify_rqs_vsd a static function (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Add support for RXFCS feature flag (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5: Update the list of the PCI supported devices (Don Dutile) [1481607 1499362]
-- [netdrv] qed: Make OOO archipelagos into an array (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Provide iSCSI statistics to management (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Add missing stat for new isles (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Don't close the OUT_EN during init (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Configure cacheline size in HW (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Don't use main-ptt in unrelated flows (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Warn PTT usage by wrong hw-function (Don Dutile) [1462433 1499362]
-- [netdrv] mlx4: trust shinfo->gso_segs (Don Dutile) [1456692 1499362]
-- [netdrv] qed: fix missing break in OOO_LB_TC case (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5e: fix build error without CONFIG_SYSFS (Don Dutile) [1456694 1499362]
-- [infiniband] ib/hfi1: Eliminate synchronize_rcu() in mr delete (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Add transmit fault injection feature (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Add receive fault injection feature (Don Dutile) [1452789 1499362]
-- [lib] fault-inject: add ratelimit option (Don Dutile) [1499362]
-- [infiniband] ib/hfi1: Ensure VL index is within bounds (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt: Avoid reseting wqe send_flags in unreserve (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt, ib/hfi1: Fix timer migration regressions (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Add a patch value to the firmware version string (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Check for QSFP presence before attempting reads (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Check device id early during init (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt: Add swqe completion trace (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt: Add tracing for cq entry and poll (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt: Add additional fields to post send trace (Don Dutile) [1452789 1499362]
-- [infiniband] ib/rdmavt, ib/hfi1, ib/qib: Make wc opcode translation driver dependent (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: NULL pointer dereference when freeing rhashtable (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Cache registers during state change (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Race hazard avoidance in user SDMA driver (Don Dutile) [1452789 1499362]
-- [infiniband] ib/hfi1: Force logical link down (Don Dutile) [1452789 1499362]
-- [infiniband] ib/ipoib: ibx: failed to create mcg debug file (Don Dutile) [1456699 1499362]
-- [infiniband] ib/core: Change completion channel to use the reworked objects schema (Don Dutile) [1499362]
-- [infiniband] ib/core: Add support for fd objects (Don Dutile) [1499362]
-- [infiniband] ib/core: Add lock to multicast handlers (Don Dutile) [1499362]
-- [infiniband] ib/core: Change idr objects to use the new schema (Don Dutile) [1499362]
-- [infiniband] ib/core: Add idr based standard types (Don Dutile) [1499362]
-- [infiniband] ib/core: Add support for idr types (Don Dutile) [1499362]
-- [infiniband] ib/core: Refactor idr to be per uverbs_file (Don Dutile) [1499362]
-- [netdrv] qed: Add a missing error code (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Manage with less memory regions for RoCE (Don Dutile) [1462433 1499362]
-- [netdrv] qed: RoCE doesn't need to use SRC (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct TM ILT lines in presence of VFs (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Fix TM block ILT allocation (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Revise QM cofiguration (Don Dutile) [1462433 1499362]
-- [netdrv] ethernet/mellanox/mlx5/core/en_ethtool.c: fix build with gcc-4.4.4 (Don Dutile) [1499362]
-- [netdrv] ethernet/mellanox/mlx5/core/en_main.c: fix build with gcc-4.4.4 (Don Dutile) [1456694 1499362]
-- [net] add explicit interrupt.h includes (Don Dutile) [1499362]
-- [netdrv] qed: Use BDQ resource for storage protocols (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Utilize resource-lock based scheme (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Support management-based resource locking (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Send pf-flr as part of initialization (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Move to new load request scheme (Don Dutile) [1462433 1499362]
-- [netdrv] qed: hw_init() to receive parameter-struct (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct HW stop flow (Don Dutile) [1462433 1499362]
-- [netdrv] mlx5e: Add offloading of E-Switch TC pedit (header re-write) actions (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5: Introduce alloc/dealloc modify header context commands (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5: Introduce modify header structures, commands and steering action definitions (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5: Reorder few command cases to reflect their natural order (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5: Add helper to initialize a flow steering actions struct instance (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Properly deal with resource cleanup when adding TC flow fails (Don Dutile) [1499362 1456687]
-- [netdrv] mlx5e: Add intermediate struct for TC flow parsing attributes (Don Dutile) [1456687 1499362]
-- [netdrv] mlx5e: Add NIC attributes for offloaded TC flows (Don Dutile) [1499362]
-- [netdrv] mlx5e: Add prefix for e-switch offloaded TC flow attributes (Don Dutile) [1499362 1456687]
-- [netdrv] mlx5e: Fail safe mtu and lro setting (Don Dutile) [1499362 1456659]
-- [netdrv] mlx5e: Fail safe tc setup (Don Dutile) [1499362 1456659]
-- [netdrv] mlx5e: Fail safe cqe compressing/moderation mode setting (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Fail safe ethtool settings (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Introduce switch channels (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Minimize mlx5e_{open/close}_locked (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: CQ and RQ don't need priv pointer (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Isolate open_channels from priv->params (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Split open/close channels to stages (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Refactor refresh TIRs (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Redirect RQT refactoring (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Introduce mlx5e_channels (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Set netdev->rx_cpu_rmap on netdev creation (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Set SQ max rate on mlx5e_open_txqsq rather on open_channel (Don Dutile) [1456659 1499362]
-- [netdrv] mlx5e: Different SQ types (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Generalize SQ create/modify/destroy functions (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Proper names for SQ/RQ/CQ functions (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Generalize tx helper functions for different SQ types (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Move mlx5e_rq struct declaration (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: XDP TX forwarding support (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Single bfreg (UAR) for all mlx5e SQs and netdevs (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Xmit, no write combining (Don Dutile) [1456694 1499362]
-- [netdrv] mlx5e: Use dma_rmb rather than rmb in CQE fetch routine (Don Dutile) [1456694 1499362]
-- [netdrv] qed: Reserve VF feature before PF (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Don't waste SBs unused by RoCE (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Reduce verbosity of unimplemented MFW messages (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct endian order of MAC passed to MFW (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Pass src/dst sizes when interacting with MFW (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Revise MFW command locking (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Always publish VF link from leading hwfn (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Raise verbosity of Malicious VF indications (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Make qed_iov_mark_vf_flr() return bool (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Deprecate VF multiple queue-stop (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Uniform IOV queue validation (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Correct default VF coalescing configuration (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Set HW-channel to ready before ACKing VF (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Clean VF malicious indication when disabling IOV (Don Dutile) [1462433 1499362]
-- [netdrv] qed: Increase verbosity of VF -> PF errors (Don Dutile) [1462433 1499362]
-- [infiniband] utilize the new cdev_set_parent function (Don Dutile) [1499362]
-- [infiniband] ib/ucm: utilize new cdev_device_add helper function (Don Dutile) [1499362]
-- [kernel] chardev: add helper function to register char devs with a struct device (Don Dutile) [1499362]
-- [netdrv] mlx4: remove duplicate code in mlx4_en_process_rx_cq() (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: make validate_loopback() more generic (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: factorize page_address() calls (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: do not access rx_desc from mlx4_en_process_rx_cq() (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: add rx_alloc_pages counter in ethtool -S (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: add page recycling in receive path (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: use order-0 pages for RX (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: removal of frag_sizes[] (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: reduce rx ring page_cache size (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: rx_headroom is a per port attribute (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: get rid of frag_prefix_size (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: remove order field from mlx4_en_frag_info (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: dma_dir is a mlx4_en_priv attribute (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4: xdp: Reserve headroom for receiving packet when XDP prog is active (Don Dutile) [1456692 1499362]
-- [netdrv] mellanox: use core min/max MTU checking (Don Dutile) [1456692 1499362]
-- [netdrv] mlx4_en: use napi_complete_done() return value (Don Dutile) [1456692 1499362]
-- [infiniband] ib/rxe: double free on error (Don Dutile) [1499362]
-- [infiniband] ib/rxe: Suppress sparse warnings (Don Dutile) [1456704 1499362]
-- [infiniband] ib/bnxt_re: Fix frame stack compilation warning (Don Dutile) [1384857 1499362]
-- [net] xprtrdma: fix double include of module.h (Don Dutile) [1499362]
-- [infiniband] vmw_pvrdma: fix [un]register_netdevice_notifier (Don Dutile) [1454965 1499362]
-
-* Tue Nov 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-784.el7]
-- [x86] intel_rdt: Turn off most RDT features on Skylake (Jiri Olsa) [1486121]
-- [x86] intel_rdt: Add command line options for resource director technology (Jiri Olsa) [1486121]
-- [x86] intel_rdt: Move special case code for Haswell to a quirk function (Jiri Olsa) [1486121]
-- [x86] intel_rdt: Remove redundant ternary operator on return (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Improve limbo list processing (Jiri Olsa) [1457533]
-- [x86] intel_rdt/mbm: Fix MBM overflow handler during CPU hotplug (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Modify the intel_pqr_state for better performance (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Clear the default RMID during hotcpu (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Show bitmask of shareable resource with other executing units (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Documentation for resctrl based RDT Monitoring (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Fix a typo in Documentation (Jiri Olsa) [1457533]
-- [x86] documentation, x86, resctrl: Recommend locking for resctrlfs (Jiri Olsa) [1457533]
-- [x86] intel_rdt/mbm: Handle counter overflow (Jiri Olsa) [1457533]
-- [x86] intel_rdt/mbm: Add mbm counter initialization (Jiri Olsa) [1457533]
-- [x86] intel_rdt/mbm: Basic counting of MBM events (total and local) (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add CPU hotplug support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add sched_in support (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Introduce rdt_enable_key for scheduling (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add mount,umount support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add rmdir support (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Separate the ctrl bits from rmdir (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add mon_data (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Prepare for RDT monitor data support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add cpus file support (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Prepare to add RDT monitor cpus file support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add tasks file support (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Change closid type from int to u32 (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add mkdir support for RDT monitoring (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Prepare for RDT monitoring mkdir support (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add info files for RDT monitoring (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Simplify info and base file lists (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add RMID (Resource monitoring ID) management (Jiri Olsa) [1457533]
-- [x86] intel_rdt/cqm: Add RDT monitoring initialization (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Make rdt_resources_all more readable (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Cleanup namespace to support RDT monitoring (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Mark rdt_root and closid_alloc as static (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Change file names to accommodate RDT monitor code (Jiri Olsa) [1457533]
-- [x86] maintainers: Add maintainer for Intel RDT resource allocation (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Introduce a common compile option for RDT (Jiri Olsa) [1457533]
-- [x86] intel_rdt: Select KERNFS when enabling INTEL_RDT_A (Jiri Olsa) [1457533]
-- [x86] perf/cqm: Wipe out perf based cqm (Jiri Olsa) [1457533]
-- [x86] documentation, x86: Intel Memory bandwidth allocation (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Fix memory leak on mount failure (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Return error for incorrect resource names in schemata (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Trim whitespace while parsing schemata input (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Fix padding when resource is enabled via mount (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Get rid of anon union (Jiri Olsa) [1379551]
-- [x86] intel_rdt/mba: Add schemata file support for MBA (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Make schemata file parsers resource specific (Jiri Olsa) [1379551]
-- [x86] intel_rdt/mba: Add info directory files for Memory Bandwidth Allocation (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Make information files resource specific (Jiri Olsa) [1379551]
-- [x86] intel_rdt/mba: Add primary support for Memory Bandwidth Allocation (MBA) (Jiri Olsa) [1379551]
-- [x86] intel_rdt/mba: Memory bandwith allocation feature detect (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Add resource specific msr update function (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Move CBM specific data into a struct (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Cleanup namespace to support multiple resource types (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Organize code properly (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Init padding only if a device exists (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Add cpus_list rdtgroup file (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Cleanup kernel-doc (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Update schemata read to show data in tabular format (Jiri Olsa) [1379551]
-- [x86] intel_rdt: Implement "update" mode when writing schemata file (Jiri Olsa) [1379551]
-- [kernel] tracing/kprobes: Allow to create probe with a module name starting with a digit (Jiri Olsa) [1422117]
-- [kernel] trace/kprobes: Allow return probes with offsets and absolute addresses (Jiri Olsa) [1422117]
-
-* Tue Nov 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-783.el7]
-- [netdrv] ibmvnic: Fix calculation of number of TX header descriptors (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: generalize napi_complete_done() (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: constify vio_device_id (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Correct 'unused variable' warning in build (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Add netdev_dbg output for debugging (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Clean up resources on probe failure (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Report rx buffer return codes as netdev_dbg (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Implement .get_channels (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Implement .get_ringparam (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Convert vnic server reported statistics to cpu endian (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Implement per-queue statistics reporting (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Initialize SCRQ's during login renegotiation (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Check for transport event on driver resume (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix assignment of RX/TX IRQ's (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Correct return code checking for ibmvnic_init during probe (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix error handling when registering long-term-mapped buffers (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix incorrectly defined ibmvnic_request_map_rsp structure (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Return from ibmvnic_resume if not in VNIC_OPEN state (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: driver initialization for kdump/kexec (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Exit polling routine correctly during adapter reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove VNIC_CLOSING check from pending_scrq (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Sanitize entire SCRQ buffer on reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Ensure that TX queues are disabled in __ibmvnic_close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Activate disabled RX buffer pools on reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove netdev notify for failover resets (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Client-initiated failover (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Return failure on attempted mtu change (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove module author mailing address (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Reset sub-crqs during driver reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Reset tx/rx pools on driver reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Reset the CRQ queue during driver reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Check adapter state during ibmvnic_poll (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Deactivate RX pool buffer replenishment on H_CLOSED (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Halt TX and report carrier off on H_CLOSED return code (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Non-fatal error handling (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix cleanup of SKB's on driver close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Send gratuitous arp on reset (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Handle failover after failed init crq (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Track state of adapter napis (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: fix missing unlock on error in __ibmvnic_reset() (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move queue restarting in ibmvnic_tx_complete (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Record SKB RX queue during poll (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Continue skb processing after skb completion error (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Check for driver reset first in ibmvnic_xmit (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Wait for any pending scrqs entries at driver close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Clean up tx pools when closing (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Whitespace correction in release_rx_pools (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Delete napi's when releasing driver resources (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Updated reset handling (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Replace is_closed with state field (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move resource initialization to its own routine (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move initialization of sub crqs to ibmvnic_init (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Split initialization of scrqs to its own routine (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Free skb's in cases of failure in transmit (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Validate napi exist before disabling them (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Add set_link_state routine for setting adapter link state (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move initialization of the stats token to ibmvnic_open (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Only retrieve error info if present (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Insert header on VLAN tagged received frame (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Set real number of rx queues (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove unused bouce buffer (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Allocate zero-filled memory for sub crqs (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Disable irq prior to close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Correct crq and resource releasing (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove inflight list (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Do not disable IRQ after scheduling tasklet (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fixup atomic API usage (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Unmap longer term buffer before free (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix ibmvnic_change_mac_addr struct format (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Report errors when failing to release sub-crqs (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Cleanup failure path in ibmvnic_open (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Create init/release routines for stats token (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Merge the two release_sub_crq_queue routines (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Create init and release routines for the rx pool (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Create init and release routines for the tx pool (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Create init and release routines for the bounce buffer (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Update main crq initialization and release (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove debugfs support (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Remove unused net_stats member from struct ibmvnic_adapter (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Correct ibmvnic handling of device open/close (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move ibmvnic adapter intialization to its own routine (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move login to its own routine (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Move login and queue negotiation into ibmvnic_open (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Free tx/rx scrq pointer array when releasing sub-crqs (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Allocate number of rx/tx buffers agreed on by firmware (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix overflowing firmware/hardware TX queue (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Make CRQ interrupt tasklet wait for all capabilities crqs (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Use common counter for capabilities checks (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Handle processing of CRQ messages in a tasklet (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix endian errors in error reporting output (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix endian error when requesting device capabilities (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix initial MTU settings (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Call napi_disable instead of napi_enable in failure path (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Initialize completion variables before starting work (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: use new api ethtool_{get|set}_link_ksettings (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: drop duplicate header seq_file.h (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: Fix size of debugfs name buffer (Gustavo Duarte) [1391561]
-- [netdrv] ibmvnic: use net core MTU range checking (Gustavo Duarte) [1391561]
-
-* Mon Nov 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-782.el7]
-- [fs] gfs2: Take inode off order_write list when setting jdata flag (Robert S Peterson) [1492678]
-- [fs] gfs2: flush the log and all pages for jdata as we do for WB_SYNC_ALL (Robert S Peterson) [1492678]
-- [fs] gfs2: Move log buffer accounting to transaction (Robert S Peterson) [1492678]
-- [fs] gfs2: Move log buffer lists into transaction (Robert S Peterson) [1492678]
-- [fs] gfs2: Fix use-after-free race when calling gfs2_remove_from_ail (Robert S Peterson) [1492678]
-- [fs] gfs2: aggressively issue revokes in gfs2_log_flush (Robert S Peterson) [1492678]
-- [fs] xfs: reinit btree pointer on attr tree inactivation walk (Carlos Maiolino) [1469296]
-- [fs] xfs: toggle readonly state around xfs_log_mount_finish (Eric Sandeen) [1395978]
-- [fs] xfs: write unmount record for ro mounts (Eric Sandeen) [1395978]
-- [netdrv] xen-netfront: reset skb network header before checksum (Vitaly Kuznetsov) [1487854]
-- [netdrv] xen-netfront: add support for IPv6 offloads (Vitaly Kuznetsov) [1487854]
-- [netdrv] xen-netfront: use new skb_checksum_setup function (Vitaly Kuznetsov) [1487854]
-- [net] consolidate duplicate code is skb_checksum_setup() helpers (Vitaly Kuznetsov) [1487854]
-- [net] add skb_checksum_setup (Vitaly Kuznetsov) [1487854]
-- [xen] xen-netback: handle IPv6 TCP GSO packets from the guest (Vitaly Kuznetsov) [1487854]
-- [x86] x86/vmware: Skip timer_irq_works() check on VMware (Vitaly Kuznetsov) [1507026 1507025]
-- [x86] x86/vmware: Skip lapic calibration on VMware (Vitaly Kuznetsov) [1507026 1507025]
-- [scsi] ipr: Set no_report_opcodes for RAID arrays (Gustavo Duarte) [1456498]
-- [scsi] ipr: Fix scsi-mq lockdep issue (Gustavo Duarte) [1456498]
-- [s390] mm: fix write access check in gup_huge_pmd() (Hendrik Brueckner) [1506126]
-- [s390] cpcmd, vmcp: avoid GFP_DMA allocations (Hendrik Brueckner) [1496111]
-- [powerpc] hotplug-mem: Fix missing endian conversion of aa_index (Serhii Popovych) [1508331]
-- [security] Introduce v3 namespaced file capabilities ("Eric W. Biederman") [1467386]
-- [security] selinux: Perform both commoncap and selinux xattr checks ("Eric W. Biederman") [1467386]
-
-* Fri Nov 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-781.el7]
-- [mm] userfaultfd: provide pid in userfault msg - add feat union (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: provide pid in userfault msg (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: add feature to request for a signal delivery (Andrea Arcangeli) [1476833]
-- [mm] fs/userfaultfd.c: drop dead code (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: report UFFDIO_ZEROPAGE as available for shmem VMAs (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: shmem: wire up shmem_mfill_zeropage_pte (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: mcopy_atomic: introduce mfill_atomic_pte helper (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: shmem: add shmem_mfill_zeropage_pte for userfaultfd support (Andrea Arcangeli) [1476833]
-- [mm] shmem: introduce shmem_inode_acct_block (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: non-cooperative: notify about unmap of destination during mremap (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: non-cooperative: closing the uffd without triggering SIGBUS (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: non-cooperative: flush event_wqh at release time (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: replace ENOSPC with ESRCH in case mm has gone during copy/zeropage (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd_zeropage: return -ENOSPC in case mm has gone (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: hugetlbfs: prevent UFFDIO_COPY to fill beyond the end of i_size (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: non-cooperative: fix fork use after free (Andrea Arcangeli) [1476833]
-- [mm] userfaultfd: hugetlbfs: remove superfluous page unlock in VM_SHARED case (Andrea Arcangeli) [1476833]
-- [mm] zram, ppc64: enable zram on ppc64 (Jerome Marchand) [1441166]
-- [mm] mm/zsmalloc: simplify zs_max_alloc_size handling (Jerome Marchand) [1441166]
-- [kernel] cpuset: Allow v2 behavior in v1 cgroup (Waiman Long) [947004]
-- [kernel] cgroup: Add mount flag to enable cpuset to use v2 behavior in v1 cgroup (Waiman Long) [947004]
-- [kernel] cpuset: fix the WARN_ON() in update_nodemasks_hier() (Waiman Long) [947004]
-- [kernel] cpuset: export effective masks to userspace (Waiman Long) [947004]
-- [kernel] cpuset: allow writing offlined masks to cpuset.cpus/mems (Waiman Long) [947004]
-- [kernel] cpuset: enable onlined cpu/node in effective masks (Waiman Long) [947004]
-- [kernel] cpuset: refactor cpuset_hotplug_update_tasks() (Waiman Long) [947004]
-- [kernel] cpuset: make cs->{cpus, mems}_allowed as user-configured masks (Waiman Long) [947004]
-- [kernel] cpuset: apply cs->effective_{cpus,mems} (Waiman Long) [947004]
-- [kernel] cpuset: initialize top_cpuset's configured masks at mount (Waiman Long) [947004]
-- [kernel] cpuset: use effective cpumask to build sched domains (Waiman Long) [947004]
-- [kernel] cpuset: inherit ancestor's masks if effective_{cpus, mems} becomes empty (Waiman Long) [947004]
-- [kernel] cpuset: update cs->effective_{cpus, mems} when config changes (Waiman Long) [947004]
-- [kernel] cpuset: update cpuset->effective_{cpus, mems} at hotplug (Waiman Long) [947004]
-- [kernel] cpuset: add cs->effective_cpus and cs->effective_mems (Waiman Long) [947004]
-- [kernel] cpuset: Add a dummy cgroup_on_dfl() function (Waiman Long) [947004]
-- [kernel] cpuset: fix a regression in validating config change (Waiman Long) [947004]
-- [kernel] cpuset: rename @cont to @cgrp (Waiman Long) [947004]
-- [kernel] cpuset: fix to migrate mm correctly in a corner case (Waiman Long) [947004]
-- [kernel] cpuset: allow to move tasks to empty cpusets (Waiman Long) [947004]
-- [kernel] cpuset: allow to keep tasks in empty cpusets (Waiman Long) [947004]
-- [kernel] cpuset: introduce effective_{cpumask|nodemask}_cpuset() (Waiman Long) [947004]
-- [kernel] cpuset: record old_mems_allowed in struct cpuset (Waiman Long) [947004]
-- [kernel] cpuset: remove async hotplug propagation work (Waiman Long) [947004]
-- [kernel] cpuset: let hotplug propagation work wait for task attaching (Waiman Long) [947004]
-- [kernel] cpuset: re-structure update_cpumask() a bit (Waiman Long) [947004]
-- [kernel] cpuset: remove cpuset_test_cpumask() (Waiman Long) [947004]
-- [kernel] cpuset: remove unnecessary variable in cpuset_attach() (Waiman Long) [947004]
-- [kernel] cpuset: cleanup guarantee_online_{cpus|mems}() (Waiman Long) [947004]
-- [kernel] cpuset: remove redundant check in cpuset_cpus_allowed_fallback() (Waiman Long) [947004]
-
-* Fri Nov 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-780.el7]
-- [fs] xfs: add support for superblock writeback list (Brian Foster) [1497235]
-- [fs] fs/fs-writeback.c: add a new writeback list for sync (Brian Foster) [1497235]
-- [fs] inode: rename i_wb_list to i_io_list (Brian Foster) [1497235]
-- [fs] sync: serialise per-superblock sync operations (Brian Foster) [1497235]
-- [fs] inode: convert inode_sb_list_lock to per-sb (Brian Foster) [1497235]
-- [fs] xfs: use iomap new flag for newly allocated delalloc blocks (Brian Foster) [1479473]
-- [fs] xfs: Honor FALLOC_FL_KEEP_SIZE when punching ends of files (Brian Foster) [1479473]
-- [fs] xfs: resurrect debug mode drop buffered writes mechanism (Brian Foster) [1479473]
-- [fs] xfs: clear delalloc and cache on buffered write failure (Brian Foster) [1479473]
-- [fs] xfs: defer should abort intent items if the trans roll fails (Brian Foster) [1479473]
-- [fs] xfs: add xfs_trim_extent (Brian Foster) [1479473]
-- [fs] libxfs: v3 inodes are only valid on crc-enabled filesystems (Brian Foster) [1479473]
-- [fs] xfs: unset MS_ACTIVE if mount fails (Brian Foster) [1479473]
-- [fs] xfs: don't take the IOLOCK exclusive for direct I/O page invalidation (Brian Foster) [1479473]
-- [fs] xfs: add some 'static' annotations (Brian Foster) [1479473]
-- [fs] xfs: refactor swapext code (Brian Foster) [1479473]
-- [fs] xfs: various swapext cleanups (Brian Foster) [1479473]
-- [fs] xfs: return work remaining at the end of a bunmapi operation (Brian Foster) [1479473]
-- [fs] xfs: update atime before I/O in xfs_file_dio_aio_read (Brian Foster) [1479473]
-- [fs] xfs: remote attribute blocks aren't really userdata (Brian Foster) [1479473]
-- [fs] xfs: Propagate dentry down to inode_change_ok() (Brian Foster) [1479473]
-- [fs] xfs: defer should allow ->finish_item to request a new transaction (Brian Foster) [1479473]
-- [fs] xfs: count the blocks in a btree (Brian Foster) [1479473]
-- [fs] xfs: create a standard btree size calculator code (Brian Foster) [1479473]
-- [fs] xfs: track log done items directly in the deferred pending work item (Brian Foster) [1479473]
-- [fs] xfs: don't log the entire end of the AGF (Brian Foster) [1479473]
-- [fs] xfs: don't perform lookups on zero-height btrees (Brian Foster) [1479473]
-- [fs] xfs: fix bogus space reservation in xfs_iomap_write_allocate (Brian Foster) [1479473]
-- [fs] xfs: move (and rename) the deferred bmap-free tracepoints (Brian Foster) [1479473]
-- [fs] xfs: collapse single use static functions (Brian Foster) [1479473]
-- [fs] xfs: remove unnecessary parentheses from log redo item recovery functions (Brian Foster) [1479473]
-- [fs] xfs: remove unnecesary lshift/rshift key initialization (Brian Foster) [1479473]
-- [fs] xfs: add tracepoints and error injection for deferred extent freeing (Brian Foster) [1479473]
-- [fs] xfs: refactor redo intent item processing (Brian Foster) [1479473]
-- [fs] xfs: rename flist/free_list to dfops (Brian Foster) [1479473]
-- [fs] xfs: change xfs_bmap_{finish, cancel, init, free} -> xfs_defer_* (Brian Foster) [1479473]
-- [fs] xfs: rework xfs_bmap_free callers to use xfs_defer_ops (Brian Foster) [1479473]
-- [fs] xfs: enable the xfs_defer mechanism to process extents to free (Brian Foster) [1479473]
-- [fs] xfs: clean up typedef usage in the EFI/EFD handling code (Brian Foster) [1479473]
-- [fs] xfs: add tracepoints for the deferred ops mechanism (Brian Foster) [1479473]
-- [fs] xfs: move deferred operations into a separate file (Brian Foster) [1479473]
-- [fs] xfs: refactor btree owner change into a separate visit-blocks function (Brian Foster) [1479473]
-- [fs] xfs: add function pointers for get/update keys to the btree (Brian Foster) [1479473]
-- [fs] xfs: during btree split, save new block key & ptr for future insertion (Brian Foster) [1479473]
-- [fs] xfs: set *stat=1 after iroot realloc (Brian Foster) [1479473]
-- [fs] xfs: fix locking of the rt bitmap/summary inodes (Brian Foster) [1479473]
-- [fs] xfs: fix attr shortform structure alignment on cris (Brian Foster) [1479473]
-- [fs] xfs: remove EXPERIMENTAL tag from sparse inode feature (Brian Foster) [1479473]
-- [fs] libxfs: directory node splitting does not have an extra block (Brian Foster) [1479473]
-- [fs] xfs: remove dax code from object file when disabled (Brian Foster) [1479473]
-- [fs] xfs: remove __arch_pack (Brian Foster) [1479473]
-- [fs] xfs: kill xfs_dir2_inou_t (Brian Foster) [1479473]
-- [fs] xfs: kill xfs_dir2_sf_off_t (Brian Foster) [1479473]
-- [fs] xfs: remove the magic numbers in xfs_btree_block-related len macros (Brian Foster) [1479473]
-- [fs] xfs: indentation fix in xfs_btree_get_iroot() (Brian Foster) [1479473]
-- [fs] xfs: don't allow negative error tags (Brian Foster) [1479473]
-- [fs] xfs: refactor btree maxlevels computation (Brian Foster) [1479473]
-- [fs] xfs: convert list of extents to free into a regular list (Brian Foster) [1479473]
-- [fs] xfs: separate freelist fixing into a separate helper (Brian Foster) [1479473]
-- [fs] xfs: rearrange xfs_bmap_add_free parameters (Brian Foster) [1479473]
-- [fs] xfs: check for a valid error_tag in errortag_add (Brian Foster) [1479473]
-- [fs] xfs: enable buffer deadlock postmortem diagnosis via ftrace (Brian Foster) [1479473]
-- [fs] xfs: check offsets of variable length structures (Brian Foster) [1479473]
-- [fs] xfs: refactor xfs_reserve_blocks() to handle ENOSPC correctly (Brian Foster) [1479473]
-- [fs] xfs: reduce lock hold times in buffer writeback (Brian Foster) [1479473]
-- [fs] xfs: define XFS_IOC_FREEZE even if FIFREEZE is defined (Brian Foster) [1479473]
-- [fs] xfs: make several functions static (Brian Foster) [1479473]
-- [fs] xfs: remove spurious shutdown type check from xfs_bmap_finish() (Brian Foster) [1479473]
-
-* Fri Nov 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-779.el7]
-- [fs] xfs: report zeroed or not correctly in xfs_zero_range() (Eric Sandeen) [1496513]
-- [fs] iomap: fix integer truncation issues in the zeroing and dirtying helpers (Eric Sandeen) [1496513]
-- [fs] xfs: disable per-inode DAX flag (Eric Sandeen) [1496513]
-- [fs] xfs: actually report xattr extents via iomap (Eric Sandeen) [1496513]
-- [fs] mm, fs: check for fatal signals in do_generic_file_read() (Eric Sandeen) [1496513]
-- [fs] fs: break out of iomap_file_buffered_write on fatal signals (Eric Sandeen) [1496513]
-- [fs] dax: Fix sleep in atomic contex in grab_mapping_entry() (Eric Sandeen) [1496513]
-- [fs] dax: rip out get_block based IO support (Eric Sandeen) [1496513]
-- [fs] ext4: rip out DAX handling from direct IO path (Eric Sandeen) [1496513]
-- [fs] ext4: convert DAX faults to iomap infrastructure (Eric Sandeen) [1496513]
-- [fs] ext4: avoid split extents for DAX writes (Eric Sandeen) [1496513]
-- [fs] ext4: DAX iomap write support (Eric Sandeen) [1496513]
-- [fs] ext4: use iomap for zeroing blocks in DAX mode (Eric Sandeen) [1496513]
-- [fs] ext4: factor out checks from ext4_file_write_iter() (Eric Sandeen) [1496513]
-- [fs] ext4: convert DAX reads to iomap infrastructure (Eric Sandeen) [1496513]
-- [fs] dax: Introduce IOMAP_FAULT flag (Eric Sandeen) [1496513]
-- [fs] xfs: use struct iomap based DAX PMD fault path (Eric Sandeen) [1496513]
-- [fs] dax: add struct iomap based DAX PMD support (Eric Sandeen) [1496513]
-- [fs] dax: dax_iomap_fault() needs to call iomap_end() (Eric Sandeen) [1496513]
-- [fs] dax: add dax_iomap_sector() helper function (Eric Sandeen) [1496513]
-- [fs] dax: correct dax iomap code namespace (Eric Sandeen) [1496513]
-- [fs] xfs: use iomap to implement DAX (Eric Sandeen) [1496513]
-- [fs] xfs: refactor xfs_setfilesize (Eric Sandeen) [1496513]
-- [fs] xfs: take the ilock shared if possible in xfs_file_iomap_begin (Eric Sandeen) [1496513]
-- [fs] dax: provide an iomap based fault handler (Eric Sandeen) [1496513]
-- [fs] dax: provide an iomap based dax read/write path (Eric Sandeen) [1496513]
-- [fs] fs: Do to trim high file position bits in iomap_page_mkwrite_actor (Eric Sandeen) [1496513]
-- [fs] iomap: add IOMAP_REPORT (Eric Sandeen) [1496513]
-- [fs] iomap: expose iomap_apply outside iomap.c (Eric Sandeen) [1496513]
-- [fs] iomap: add IOMAP_F_NEW flag (Eric Sandeen) [1496513]
-- [fs] xfs: Add buffered IO support back to get_block for splice (Eric Sandeen) [1496513]
-- [fs] xfs: rewrite and optimize the delalloc write path (Eric Sandeen) [1496513]
-- [fs] xfs: make xfs_inode_set_eofblocks_tag cheaper for the common case (Eric Sandeen) [1496513]
-- [fs] xfs: factor our a helper to calculate the EOF alignment (Eric Sandeen) [1496513]
-- [fs] xfs: move xfs_bmbt_to_iomap up (Eric Sandeen) [1496513]
-- [fs] iomap: add a flag to report shared extents (Eric Sandeen) [1496513]
-- [fs] fs: add iomap_file_dirty (Eric Sandeen) [1496513]
-- [fs] iomap: don't set FIEMAP_EXTENT_MERGED for extent based filesystems (Eric Sandeen) [1496513]
-- [fs] xfs: (re-)implement FIEMAP_FLAG_XATTR (Eric Sandeen) [1496513]
-- [fs] xfs: simplify xfs_file_iomap_begin (Eric Sandeen) [1496513]
-- [fs] iomap: mark ->iomap_end as optional (Eric Sandeen) [1496513]
-- [fs] iomap: prepare iomap_fiemap for attribute mappings (Eric Sandeen) [1496513]
-- [fs] iomap: fiemap should honor the FIEMAP_FLAG_SYNC flag (Eric Sandeen) [1496513]
-- [fs] xfs: kill xfs_zero_remaining_bytes (Eric Sandeen) [1496513]
-- [fs] xfs: split xfs_free_file_space in manageable pieces (Eric Sandeen) [1496513]
-- [fs] xfs: use xfs_zero_range in xfs_zero_eof (Eric Sandeen) [1496513]
-- [fs] xfs: handle 64-bit length in xfs_iozero (Eric Sandeen) [1496513]
-- [fs] xfs: use iomap infrastructure for DAX zeroing (Eric Sandeen) [1496513]
-- [fs] xfs: use iomap fiemap implementation (Eric Sandeen) [1496513]
-- [fs] xfs: implement iomap based buffered write path (Eric Sandeen) [1496513]
-- [fs] xfs: reorder zeroing and flushing sequence in truncate (Eric Sandeen) [1496513]
-- [fs] xfs: make xfs_bmbt_to_iomap available outside of xfs_pnfs.c (Eric Sandeen) [1496513]
-- [fs] fs: iomap based fiemap implementation (Eric Sandeen) [1496513]
-- [fs] fs: support DAX based iomap zeroing (Eric Sandeen) [1496513]
-- [fs] fs: introduce iomap infrastructure (Eric Sandeen) [1496513]
-- [fs] fs: move struct iomap from exportfs.h to a separate header (Eric Sandeen) [1496513]
-- [fs] block_dev: remove DAX leftovers (Eric Sandeen) [1496513]
-- [fs] block: remove BLK_DEV_DAX config option (Eric Sandeen) [1496513]
-
-* Thu Nov 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-778.el7]
-- [kernel] livepatch: __klp_disable_patch() should never be called for disabled patches (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Correctly call klp_post_unpatch_callback() in error paths (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add transition notices (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: move transition "complete" notice into klp_complete_transition() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add (un)patch callbacks (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Add more checks for FTRACE_FL_DISABLED in processing ip records (Josh Poimboeuf) [1430637]
-- [x86] stacktrace: Avoid recording save_stack_trace() wrappers (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Remove raw stack dump (Josh Poimboeuf) [1430637]
-- [x86] unwind: Fix oprofile module link error (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Fix show_stack() task pointer regression (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Remove dump_trace() and related callbacks (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Convert show_trace_log_lvl() to use the new unwinder (Josh Poimboeuf) [1430637]
-- [x86] oprofile/x86: Convert x86_backtrace() to use the new unwinder (Josh Poimboeuf) [1430637]
-- [x86] stacktrace: Convert save_stack_trace_*() to use the new unwinder (Josh Poimboeuf) [1430637]
-- [x86] perf/x86: Convert perf_callchain_kernel() to use the new unwinder (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Remove NULL task pointer convention (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Remove unnecessary stack pointer arguments (Josh Poimboeuf) [1430637]
-- [x86] oprofile/x86: Add regs->ip to oprofile trace (Josh Poimboeuf) [1430637]
-- [x86] perf/x86: Check perf_callchain_store() error (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: unpatch all klp_objects if klp_module_coming fails (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Small shadow variable documentation fixes (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: __klp_shadow_get_or_alloc() is local to shadow.c (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: introduce shadow variable API (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Fix interrupt and exception stack boundary checks (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Fix stacking of patches with respect to RCU (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Make livepatch dependent on !TRIM_UNUSED_KSYMS (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Reduce the time of finding module symbols (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add missing printk newlines (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Cancel transition a safe way for immediate patches (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: make klp_mutex proper part of API (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: allow removal of a disabled patch (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add /proc/<pid>/patch_state (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: change to a per-task consistency model (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: store function sizes (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: use kstrtobool() in enabled_store() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: move patching functions into patch.c (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: remove unnecessary object loaded check (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: separate enabled and patched states (Josh Poimboeuf) [1430637]
-- [kernel] livepatch/x86: add TIF_PATCH_PENDING thread flag (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: create temporary klp_update_patch_state() stub (Josh Poimboeuf) [1430637]
-- [x86] x86/entry: define _TIF_ALLWORK_MASK flags explicitly (Josh Poimboeuf) [1430637]
-- [kernel] stacktrace/x86: add function for detecting reliable stack traces (Josh Poimboeuf) [1430637]
-- [x86] x86/unwind: update unwinder for livepatch (Josh Poimboeuf) [1430637]
-- [kernel] x86/entry: annotate entry code call locations for livepatch unwinder (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: doc: remove the limitation for schedule() patching (Josh Poimboeuf) [1430637]
-- [kernel] documentation/livepatch: Fix stale link to gmame (Josh Poimboeuf) [1430637]
-- [x86] x86/boot: Move the _stext marker to before the boot code (Josh Poimboeuf) [1430637]
-- [x86] x86/boot/64: Put a real return address on the idle task stack (Josh Poimboeuf) [1430637]
-- [x86] x86/boot/64: Use a common function for starting CPUs (Josh Poimboeuf) [1430637]
-- [x86] x86/unwind: Add new unwind interface and implementations (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Add recursion checking for all stacks (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Add support for unwinding empty IRQ stacks (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Add get_stack_info() interface (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Simplify in_exception_stack() (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Allow preemption in show_stack_log_lvl() and dump_trace() (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Add get_stack_pointer() and get_frame_pointer() (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack: Make printk_stack_address() more generally useful (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack/ftrace: Don't print unreliable addresses in print_context_stack_bp() (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack/ftrace: Mark function graph handler function as unreliable (Josh Poimboeuf) [1430637]
-- [x86] ftrace/x86: Implement HAVE_FUNCTION_GRAPH_RET_ADDR_PTR (Josh Poimboeuf) [1430637]
-- [x86] x86/dumpstack/ftrace: Convert dump_trace() callbacks to use ftrace_graph_ret_addr() (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Add ftrace_graph_ret_addr() stack unwinding helpers (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Add return address pointer to ftrace_ret_stack (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Remove CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST from config (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Only allocate the ret_stack 'fp' field when needed (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Remove 64-byte gap at end of irq stack (Josh Poimboeuf) [1430637]
-- [kernel] x86/dumpstack: Remove extra brackets around "<EOE>" (Josh Poimboeuf) [1430637]
-- [kernel] x86/asm/head: Rename 'stack_start' -> 'initial_stack' (Josh Poimboeuf) [1430637]
-- [kernel] x86/dumpstack: Remove show_trace() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: use arch_klp_init_object_loaded() to finish arch-specific tasks (Josh Poimboeuf) [1430637]
-- [kernel] x86/dumpstack: Try harder to get a call trace on stack overflow (Josh Poimboeuf) [1430637]
-- [kernel] x86/dumpstack: Honor supplied @regs arg (Josh Poimboeuf) [1430637]
-- [kernel] x86: avoid avoid passing around 'thread_info' in stack dumping code (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: make object/func-walking helpers more robust (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Add some basic livepatch documentation (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: robustify klp_register_patch() API error checking (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Allow architectures to specify an alternate ftrace location (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: reuse module loader code to write relocations (Josh Poimboeuf) [1430637]
-- [kernel] module: preserve Elf information for livepatch modules (Josh Poimboeuf) [1430637]
-- [kernel] elf: add livepatch-specific Elf constants (Josh Poimboeuf) [1430637]
-- [kernel] sscanf: implement basic character sets (Josh Poimboeuf) [1430637]
-- [kernel] livepatch/module: remove livepatch module notifier (Josh Poimboeuf) [1430637]
-- [kernel] modules: split part of complete_formation() into prepare_coming_module() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Fix the error message about unresolvable ambiguity (Josh Poimboeuf) [1430637]
-- [kernel] klp: remove CONFIG_LIVEPATCH dependency from klp headers (Josh Poimboeuf) [1430637]
-- [kernel] klp: remove superfluous errors in asm/livepatch.h (Josh Poimboeuf) [1430637]
-- [kernel] perf: generalize perf_callchain (Josh Poimboeuf) [1430637]
-- [kernel] ftrace/module: remove ftrace module notifier (Josh Poimboeuf) [1430637]
-- [kernel] ftrace/module: Call clean up function when module init fails early (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: change the error message in asm/livepatch.h header files (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Fix the race between ftrace and insmod (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Add infrastructure for delayed enabling of module functions (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Cleanup of global variables ftrace_new_pgs and ftrace_update_cnt (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Cleanup module page permission changes (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: function, sympos scheme in livepatch sysfs directory (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add sympos as disambiguator field to klp_reloc (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add old_sympos as disambiguator field to klp_func (Josh Poimboeuf) [1430637]
-- [kernel] module: Add module_{enable,disable}_ro() (Josh Poimboeuf) [1430637]
-- [kernel] module: Use the same logic for setting and unsetting RO/NX (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: x86: fix relocation computation with kASLR (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Fix crash with !CONFIG_DEBUG_SET_MODULE_RONX (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Improve error handling in klp_disable_func() (Josh Poimboeuf) [1430637]
-- [kernel] ftrace: Format MCOUNT_ADDR address as type unsigned long (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add module locking around kallsyms calls (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: annotate klp_init() with __init (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: introduce patch/func-walking helpers (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: make kobject in klp_object statically allocated (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Prevent patch inconsistencies if the coming module notifier fails (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: match return value to function signature (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: x86: make kASLR logic more accurate (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add support on s390 (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: Fix subtle race with coming and going modules (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: remove unnecessary call to klp_find_object_module() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: fix RCU usage in klp_find_external_symbol() (Josh Poimboeuf) [1430637]
-- [kernel] x86/kernel: Fix output of show_stack_log_lvl() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: RCU protect struct klp_func all the time when used in klp_ftrace_handler() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: remove extern specifier from header files (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: fix format string in kobject_init_and_add() (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: simplify disable error path (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: add missing newline to error message (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: rename config to CONFIG_LIVEPATCH (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: fix uninitialized return value (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: support for repatching a function (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: enforce patch stacking semantics (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: fix deferred module patching order (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: handle ancient compilers with more grace (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: kconfig: use bool instead of boolean (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: samples: fix usage example comments (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: use FTRACE_OPS_FL_IPMODIFY (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: move x86 specific ftrace handler code to arch/x86 (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: samples: add sample live patching module (Josh Poimboeuf) [1430637]
-- [kernel] livepatch: kernel: add support for live patching (Josh Poimboeuf) [1430637]
-- [kernel] powerpc/ftrace: simplify prepare_ftrace_return (Josh Poimboeuf) [1430637]
-- [kernel] x86: Fix dumpstack_64 irq stack handling (Josh Poimboeuf) [1430637]
-- [kernel] x86: Fix dumpstack_64 to keep state of "used" variable in loop (Josh Poimboeuf) [1430637]
-- [kernel] x86: Clean up dumpstack_64.c code (Josh Poimboeuf) [1430637]
-- [x86] dumpstack: Fix printk_address for direct addresses (Josh Poimboeuf) [1430637]
-- [kernel] s390/ftrace: prepare_ftrace_return() function call order (Josh Poimboeuf) [1430637]
-- [x86] revert "dumpstack: Remove raw stack dump" (Josh Poimboeuf) [1430637]
-
-* Thu Nov 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-777.el7]
-- [usb] xhci: Bad Ethernet performance plugged in ASM1042A host (Torez Smith) [1459020]
-- [usb] lib/string: add sysfs_match_string helper (Torez Smith) [1456565]
-- [usb] typec: include linux/device.h in ucsi.h (Torez Smith) [1456565]
-- [usb] typec: ucsi: Add ACPI driver (Torez Smith) [1456565]
-- [usb] typec: Add support for UCSI interface (Torez Smith) [1456565]
-- [usb] typec: Add a sysfs node to manage port type (Torez Smith) [1456565]
-- [usb] typec: update partner power delivery support with opmode (Torez Smith) [1456565]
-- [usb] typec: Don't prevent using constant typec_mode_desc initializers (Torez Smith) [1456565]
-- [usb] typec: add driver for Intel Whiskey Cove PMIC USB Type-C PHY (Torez Smith) [1456565]
-- [usb] USB Type-C connector class (Torez Smith) [1456565]
-- [usb] usb-storage: enable use of host wide tags for UAS driver (Torez Smith) [1435752]
-- [usb] hso: register netdev later to avoid a race condition (Torez Smith) [1435752]
-- [usb] hso: fix module unloading (Torez Smith) [1435752]
-- [usb] plusb: Add support for PL-27A1 (Torez Smith) [1435752]
-- [usb] kaweth: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] ch9200: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] lan78xx: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] sr9700: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] cx82310_eth: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] smsc75xx: use skb_cow_head() to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] smsc95xx: Use skb_cow_head to deal with cloned skbs (Torez Smith) [1435752]
-- [usb] qmi_wwan: add QMI_QUIRK_SET_DTR for Telit PID 0x1201 (Torez Smith) [1435752]
-- [usb] usbnet: make sure no NULL pointer is passed through (Torez Smith) [1435752]
-- [usb] r8152: The Microsoft Surface docks also use R8152 v2 (Torez Smith) [1435752]
-- [usb] xhci: Manually give back cancelled URB if we can't queue it for cancel (Torez Smith) [1435752]
-- [usb] xhci: Set URB actual length for stopped control transfers (Torez Smith) [1435752]
-- [usb] fix linked-list corruption in rh_call_control() (Torez Smith) [1435752]
-- [usb] r8152: prevent the driver from transmitting packets with carrier off (Torez Smith) [1435752]
-- [usb] r8152: fix the rx early size of RTL8153 (Torez Smith) [1435752]
-- [usb] r8152: set the RMS of RTL8153 according to the mtu (Torez Smith) [1435752]
-- [usb] qmi_wwan: Add USB IDs for MDM6600 modem on Motorola Droid 4 (Torez Smith) [1435752]
-- [usb] qmi_wwan: add Dell DW5811e (Torez Smith) [1435752]
-- [usb] r8152: fix the list rx_done may be used without initialization (Torez Smith) [1435752]
-- [usb] serial: qcserial: add Dell DW5811e (Torez Smith) [1435752]
-- [usb] hub: Fix crash after failure to read BOS descriptor (Torez Smith) [1435752]
-- [usb] usbtmc: fix probe error path (Torez Smith) [1435752]
-- [usb] usbtmc: add missing endpoint sanity check (Torez Smith) [1435752]
-- [usb] serial: option: add Quectel UC15, UC20, EC21, and EC25 modems (Torez Smith) [1435752]
-- [usb] usb-core: Add LINEAR_FRAME_INTR_BINTERVAL USB quirk (Torez Smith) [1435752]
-- [usb] wusbcore: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] uss720: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] lvtest: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] idmouse: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] scripts/spelling.txt: add "disble(d)" pattern and fix typo instances (Torez Smith) [1435752]
-- [usb] host: xhci-dbg: HCIVERSION should be a binary number (Torez Smith) [1435752]
-- [usb] xhci: remove dummy extra_priv_size for size of xhci_hcd struct (Torez Smith) [1435752]
-- [usb] xhci-mtk: check hcc_params after adding primary hcd (Torez Smith) [1435752]
-- [usb] usb-storage: Add ignore-residue quirk for Initio INIC-3619 (Torez Smith) [1435752]
-- [usb] iowarrior: fix NULL-deref in write (Torez Smith) [1435752]
-- [usb] iowarrior: fix NULL-deref at probe (Torez Smith) [1435752]
-- [usb] serial: safe_serial: fix information leak in completion handler (Torez Smith) [1435752]
-- [usb] serial: io_ti: fix information leak in completion handler (Torez Smith) [1435752]
-- [usb] serial: omninet: drop open callback (Torez Smith) [1435752]
-- [usb] serial: omninet: fix reference leaks at open (Torez Smith) [1435752]
-- [usb] serial: io_ti: fix NULL-deref in interrupt callback (Torez Smith) [1435752]
-- [usb] serial: digi_acceleport: fix OOB-event processing (Torez Smith) [1435752]
-- [usb] asix_devices: fix missing return code check on call to asix_write_medium_mode (Torez Smith) [1435752]
-- [usb] cdc-wdm: remove logically dead code (Torez Smith) [1435752]
-- [usb] serial: keyspan: drop header file (Torez Smith) [1435752]
-- [usb] serial: io_edgeport: drop io-tables header file (Torez Smith) [1435752]
-- [usb] misc: usbtest: remove redundant check on retval < 0 (Torez Smith) [1435752]
-- [usb] serial: upd78f0730: sort device ids (Torez Smith) [1435752]
-- [usb] serial: upd78f0730: add ID for EVAL-ADXL362Z (Torez Smith) [1435752]
-- [usb] lan78xx: fix build errors when linux/phy*.h is removed from dsa.h (Torez Smith) [1435752]
-- [usb] ohci-hub: fix typo in dbg_port macro (Torez Smith) [1435752]
-- [usb] serial: mos7840: fix another NULL-deref at open (Torez Smith) [1435752]
-- [usb] serial: console: clean up sanity checks (Torez Smith) [1435752]
-- [usb] serial: metro-usb: drop redundant URB reinitialisation (Torez Smith) [1435752]
-- [usb] serial: metro-usb: drop function-tracing debugging (Torez Smith) [1435752]
-- [usb] serial: metro-usb: drop redundant URB unlink (Torez Smith) [1435752]
-- [usb] serial: metro-usb: drop unused interrupt-out callback (Torez Smith) [1435752]
-- [usb] xhci-mtk: make the reference clock optional (Torez Smith) [1435752]
-- [usb] usb-misc: sisusbvga: remove dead code (Torez Smith) [1435752]
-- [usb] serial: sierra: fix bogus alternate-setting assumption (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: fix line-status over-reporting (Torez Smith) [1435752]
-- [usb] serial: cp210x: add new IDs for GE Bx50v3 boards (Torez Smith) [1435752]
-- [usb] misc: adutux: remove redundant error check on copy_to_user return code (Torez Smith) [1435752]
-- [usb] serial: keyspan_pda: fix receive sanity checks (Torez Smith) [1435752]
-- [usb] serial: digi_acceleport: fix incomplete rx sanity check (Torez Smith) [1435752]
-- [usb] serial: digi_acceleport: fix OOB data sanity check (Torez Smith) [1435752]
-- [usb] serial: ark3116: use port device for info and error messages (Torez Smith) [1435752]
-- [usb] serial: ark3116: remove redundant interrupt-urb check (Torez Smith) [1435752]
-- [usb] serial: ark3116: fix endpoint-check return value (Torez Smith) [1435752]
-- [usb] uvcvideo: (cosmetic) Remove a superfluous assignment (Torez Smith) [1435752]
-- [usb] cdc-acm: fix TIOCGSERIAL flags (Torez Smith) [1435752]
-- [usb] serial: add uPD78F0730 USB to Serial Adaptor Driver (Torez Smith) [1435752]
-- [usb] serial: drop unused ASYNC flags (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: clean up ioctl handler (Torez Smith) [1435752]
-- [usb] r8152: fix the wrong spelling (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: fix extreme low-latency setting (Torez Smith) [1435752]
-- [usb] xhci: refactor xhci_urb_enqueue (Torez Smith) [1435752]
-- [usb] xhci: simplify how we store TDs in urb private data (Torez Smith) [1435752]
-- [usb] xhci: Rename variables related to transfer descritpors (Torez Smith) [1435752]
-- [usb] xhci: rename size variable to num_tds (Torez Smith) [1435752]
-- [usb] host: xhci: add xhci_virt_device tracer (Torez Smith) [1435752]
-- [usb] host: xhci: remove newline from tracer (Torez Smith) [1435752]
-- [usb] host: xhci: convert several if() to a single switch statement (Torez Smith) [1435752]
-- [usb] host: xhci: add urb_enqueue/dequeue/giveback tracers (Torez Smith) [1435752]
-- [usb] host: xhci: make a generic TRB tracer (Torez Smith) [1435752]
-- [usb] host: xhci: combine event TRB completion debugging messages (Torez Smith) [1435752]
-- [usb] host: xhci: convert to list_for_each_entry_safe() (Torez Smith) [1435752]
-- [usb] xhci: use the trb_to_noop() helper for command trbs (Torez Smith) [1435752]
-- [usb] xhci: Introduce helper to turn one TRB into a no-op (Torez Smith) [1435752]
-- [usb] host: xhci: unconditionally call xhci_unmap_td_bounce_buffer() (Torez Smith) [1435752]
-- [usb] host: xhci: check for a valid ring when unmapping bounce buffer (Torez Smith) [1435752]
-- [usb] host: xhci: remove bogus __releases()/__acquires() annotation (Torez Smith) [1435752]
-- [usb] host: xhci: introduce xhci_td_cleanup() (Torez Smith) [1435752]
-- [usb] host: xhci: reorder variable definitions (Torez Smith) [1435752]
-- [usb] host: xhci: use slightly better list helpers (Torez Smith) [1435752]
-- [usb] host: xhci: remove unneded semicolon (Torez Smith) [1435752]
-- [usb] host: xhci: simplify irq handler return (Torez Smith) [1435752]
-- [usb] host: xhci: rename completion codes to match spec (Torez Smith) [1435752]
-- [usb] host: xhci: print HCIVERSION on debug (Torez Smith) [1435752]
-- [usb] host: xhci: change pre-increments to post-increments (Torez Smith) [1435752]
-- [usb] xhci: remove unnecessary return in xhci_pci_setup() (Torez Smith) [1435752]
-- [usb] xhci: use list_is_singular for cmd_list (Torez Smith) [1435752]
-- [usb] xhci: avoid unnecessary calculation (Torez Smith) [1435752]
-- [usb] xhci: remove unnecessary assignment (Torez Smith) [1435752]
-- [usb] xhci: add quirk flag for broken PED bits (Torez Smith) [1435752]
-- [usb] xhci: Put warning message on a single line (Torez Smith) [1435752]
-- [usb] host: xhci: Remove unused 'addr_64' variable in xhci_hcd structure (Torez Smith) [1435752]
-- [usb] xhci: remove unnecessary second abort try (Torez Smith) [1435752]
-- [usb] xhci: remove unnecessary check for pending timer (Torez Smith) [1435752]
-- [usb] xhci: detect stop endpoint race using pending timer instead of counter (Torez Smith) [1435752]
-- [usb] xhci: rename EP_HALT_PENDING to EP_STOP_CMD_PENDING (Torez Smith) [1435752]
-- [usb] xhci: simplify if statement to make it more readable (Torez Smith) [1435752]
-- [usb] storage: sddr09: Remove a set-but-not-used variable (Torez Smith) [1435752]
-- [usb] ulpi: Support device discovery via DT (Torez Smith) [1435752]
-- [usb] xhci-mtk: add reference clock (Torez Smith) [1435752]
-- [usb] hcd: initialize hcd->flags to 0 when rm hcd (Torez Smith) [1435752]
-- [usb] storage: ene_ub6250: remove unused variable (Torez Smith) [1435752]
-- [usb] core: update comments for send message functions (Torez Smith) [1435752]
-- [usb] serial: opticon: fix CTS retrieval at open (Torez Smith) [1435752]
-- [usb] serial: ti_usb_3410_5052: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: ssu100: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: spcp8x5: fix modem-status handling (Torez Smith) [1435752]
-- [usb] serial: quatech2: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: pl2303: fix line-setting error handling (Torez Smith) [1435752]
-- [usb] serial: mos7840: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: mos7720: fix control-message error handling (Torez Smith) [1435752]
-- [usb] serial: mct_u232: fix modem-status error handling (Torez Smith) [1435752]
-- [usb] serial: iuu_phoenix: remove unused buffer from open (Torez Smith) [1435752]
-- [usb] serial: io_edgeport: fix descriptor error handling (Torez Smith) [1435752]
-- [usb] serial: io_edgeport: fix epic-descriptor handling (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: fix latency-timer error handling (Torez Smith) [1435752]
-- [usb] serial: ftdi_sio: fix modem-status error handling (Torez Smith) [1435752]
-- [usb] serial: ark3116: fix open error handling (Torez Smith) [1435752]
-- [usb] serial: ark3116: fix register-accessor error handling (Torez Smith) [1435752]
-- [usb] serial: kl5kusb105: remove unused termios structure (Torez Smith) [1435752]
-- [usb] serial: kl5kusb105: clean up struct definition (Torez Smith) [1435752]
-- [usb] serial: kl5kusb105: remove dead code (Torez Smith) [1435752]
-- [usb] serial: kl5kusb105: make logging less verbose (Torez Smith) [1435752]
-- [usb] serial: ch341: change initial line-control settings (Torez Smith) [1435752]
-- [usb] serial: ch341: rename LCR variable in set_termios (Torez Smith) [1435752]
-- [usb] serial: ch341: rename modem-status register (Torez Smith) [1435752]
-- [usb] serial: ch341: rename shadow modem-control register (Torez Smith) [1435752]
-- [usb] serial: ch341: clean up control debug messages (Torez Smith) [1435752]
-- [usb] serial: ch341: fix modem-status handling (Torez Smith) [1435752]
-- [usb] serial: cypress_m8: remove unused variable (Torez Smith) [1435752]
-- [usb] locking/atomic, kref: Avoid more abuse (Torez Smith) [1435752]
-- [usb] cdc-ether: usbnet_cdc_zte_status() can be static (Torez Smith) [1435752]
-- [usb] Increase usbfs transfer limit (Torez Smith) [1435752]
-- [usb] make the MTK XHCI driver compile for older MIPS SoCs (Torez Smith) [1435752]
-- [usb] Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Torez Smith) [1435752]
-- [usb] treewide: remove redundant #include <linux/kconfig.h> (Torez Smith) [1435752]
-- [usb] Skip auto handoff for TI and RENESAS usb controllers (Torez Smith) [1435752]
-- [usb] xhci: Fix race related to abort operation (Torez Smith) [1435752]
-- [usb] xhci: Use delayed_work instead of timer for command timeout (Torez Smith) [1435752]
-- [usb] tty: vt, cleanup and document con_scroll (Torez Smith) [1435752]
-- [usb] r8152: reset the bmu (Torez Smith) [1435752]
-- [usb] uas: remove can_queue set in host template (Torez Smith) [1435752]
-- [usb] scsi: rename SCSI_MAX_{SG, SG_CHAIN}_SEGMENTS (Torez Smith) [1435752]
-- [usb] uas: Limit qdepth at the scsi-host level (Torez Smith) [1435752]
-- [usb] uas: Fix slave queue_depth not being set (Torez Smith) [1435752]
-- [usb] usb-storage: Fix scsi-sd failure "Invalid field in cdb" for USB adapter JMicron (Torez Smith) [1435752]
-- [usb] scsi: use host wide tags by default (Torez Smith) [1435752]
-- [usb] scsi: always assign block layer tags if enabled (Torez Smith) [1435752]
-
-* Wed Nov 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-776.el7]
-- [netdrv] i40e/i40evf: don't trust VF to reset itself (Stefan Assmann) [1454890]
-- [netdrv] i40e: Retry AQC GetPhyAbilities to overcome I2CRead hangs (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: bundle more descriptors when allocating buffers (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: bump tail only in multiples of 8 (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: always set the CLEARPBA flag when re-enabling interrupts (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: fix incorrect default ITR values on driver load (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix mac filter removal timing issue (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: organize and re-number feature flags (Stefan Assmann) [1454890]
-- [netdrv] i40evf: enable support for VF VLAN tag stripping control (Stefan Assmann) [1454890]
-- [netdrv] i40e: Display error message if module does not meet thermal requirements (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: use DECLARE_BITMAP for state (Stefan Assmann) [1454890]
-- [netdrv] i40e: redfine I40E_PHY_TYPE_MAX (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: spread CPU affinity hints across online CPUs only (Stefan Assmann) [1454890]
-- [netdrv] i40e: Stop dropping 802.1ad tags - eth proto 0x88a8 (Stefan Assmann) [1454890]
-- [netdrv] i40e: make i40evf_map_rings_to_vectors void (Stefan Assmann) [1454890]
-- [netdrv] i40evf: Enable VF to request an alternate queue allocation (Stefan Assmann) [1454890]
-- [netdrv] i40e: use admin queue for setting LEDs behavior (Stefan Assmann) [1454890]
-- [netdrv] i40e: Add support for 'ethtool -m' (Stefan Assmann) [1454890]
-- [netdrv] i40e: Fix reporting of supported link modes (Stefan Assmann) [1454890]
-- [netdrv] i40e: refactor FW version checking (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix ring to vector mapping (Stefan Assmann) [1454890]
-- [netdrv] i40e: shutdown all IRQs and disable MSI-X when suspended (Stefan Assmann) [1454890]
-- [netdrv] i40evf: lower message level (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: rename bytes_per_int to bytes_per_usec (Stefan Assmann) [1454890]
-- [netdrv] i40evf: use setup_timer() helper (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: avoid dynamic ITR updates when polling or low packet rate (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: remove ULTRA latency mode (Stefan Assmann) [1454890]
-- [netdrv] i40e: invert logic for checking incorrect cpu vs irq affinity (Stefan Assmann) [1454890]
-- [netdrv] i40e: initialize our affinity_mask based on cpu_possible_mask (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: support for VF VLAN tag stripping control (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix possible snprintf truncation of q_vector->name (Stefan Assmann) [1454890]
-- [netdrv] i40e: prevent snprintf format specifier truncation (Stefan Assmann) [1454890]
-- [netdrv] i40e: Store the requested FEC information (Stefan Assmann) [1454890]
-- [netdrv] i40evf: use netdev variable in reset task (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: use cmpxchg64 when updating private flags in ethtool (Stefan Assmann) [1454890]
-- [netdrv] i40e: separate hw_features from runtime changing flags (Stefan Assmann) [1454890]
-- [netdrv] i40evf: prevent VF close returning before state transitions to DOWN (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: adjust packet size to account for double VLANs (Stefan Assmann) [1454890]
-- [netdrv] i40evf: remove unnecessary __packed (Stefan Assmann) [1454890]
-- [netdrv] i40evf: Use le32_to_cpu before evaluating HW desc fields (Stefan Assmann) [1454890]
-- [netdrv] i40evf: add some missing includes (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: remove mismatched type warnings (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: update WOL and I40E_AQC_ADDR_VALID_MASK flags (Stefan Assmann) [1454890]
-- [netdrv] i40evf: assign num_active_queues inside i40evf_alloc_queues (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: proper update of the page_offset field (Stefan Assmann) [1454890]
-- [netdrv] i40evf: Add support for Adaptive Virtual Function (Stefan Assmann) [1454890]
-- [netdrv] virtchnl: finish conversion to virtchnl interface (Stefan Assmann) [1454890]
-- [netdrv] i40evf/virtchnl: whitespace cleanups (Stefan Assmann) [1454890]
-- [netdrv] virtchnl: rename i40e to generic virtchnl (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: create and use new unified header file (Stefan Assmann) [1454890]
-- [netdrv] i40evf: drop i40e_type.h include (Stefan Assmann) [1454890]
-- [netdrv] i40evf: disable unused flags (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix merge error in older patch (Stefan Assmann) [1454890]
-- [netdrv] i40evf: fix duplicate lines (Stefan Assmann) [1454890]
-- [netdrv] i40evf: hide unused variable (Stefan Assmann) [1454890]
-- [netdrv] i40evf: allocate queues before we setup the interrupts and q_vectors (Stefan Assmann) [1454890]
-- [netdrv] i40evf: remove I40E_FLAG_FDIR_ATR_ENABLED (Stefan Assmann) [1454890]
-- [netdrv] i40evf: remove needless min_t() on num_online_cpus()*2 (Stefan Assmann) [1454890]
-- [netdrv] i40e: use DECLARE_BITMAP for state fields (Stefan Assmann) [1454890]
-- [netdrv] i40e: separate PF and VSI state flags (Stefan Assmann) [1454890]
-- [netdrv] i40e: remove unnecessary msleep() delay in i40e_free_vfs (Stefan Assmann) [1454890]
-- [netdrv] i40e: remove I40E_FLAG_IN_NETPOLL entirely (Stefan Assmann) [1454890]
-- [netdrv] i40e: new AQ commands (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add tracepoints (Stefan Assmann) [1454890]
-- [netdrv] i40e: Fix support for flow director programming status (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Remove VF Rx csum offload for tunneled packets (Stefan Assmann) [1454890]
-- [netdrv] i40evf: Use net_device_stats from struct net_device (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Use build_skb to build frames (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add support for padding start of frames (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add support for using order 1 pages with a 3K buffer (Stefan Assmann) [1454890]
-- [netdrv] i40e: remove I40E_FLAG_NEED_LINK_UPDATE (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add capability exchange for outer checksum (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Change the way we limit the maximum frame size for Rx (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add legacy-rx private flag to allow fallback to old Rx flow (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Break i40e_fetch_rx_buffer up to allow for reuse of frag code (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Pull out code for cleaning up Rx buffers (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Pull code for grabbing and syncing rx_buffer from fetch_buffer (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Use length to determine if descriptor is done (Stefan Assmann) [1454890]
-- [netdrv] i40e: use register for XL722 control register read/write (Stefan Assmann) [1454890]
-- [netdrv] i40evf: enforce descriptor write-back mechanism for VF (Stefan Assmann) [1454890]
-- [netdrv] i40evf: dereference VSI after VSI has been null checked (Stefan Assmann) [1454890]
-- [netdrv] i40e: Drop FCoE code from core driver files (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Clean-up process_skb_fields (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Fix use after free in Rx cleanup path (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Update code to better handle incrementing page count (Stefan Assmann) [1454890]
-- [netdrv] i40evf: use new api ethtool_{get|set}_link_ksettings (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Change version from 1.6.27 to 2.1.7 (Stefan Assmann) [1454890]
-- [netdrv] i40e/i40evf: Add support for mapping pages with DMA attributes (Stefan Assmann) [1454890]
-- [netdrv] i40evf: add client interface (Stefan Assmann) [1454890]
-- [netdrv] intel: use core min/max MTU checking (Stefan Assmann) [1454890]
-
-* Wed Nov 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-775.el7]
-- [netdrv] i40e/i40evf: don't trust VF to reset itself (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix link reporting (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix memory leak related filter programming status (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix comment about locking for __i40e_read_nvm_word() (Stefan Assmann) [1454892]
-- [netdrv] i40e: Avoid some useless variables and initializers in NVM functions (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix a typo (Stefan Assmann) [1454892]
-- [netdrv] i40e: use a local variable instead of calculating multiple times (Stefan Assmann) [1454892]
-- [netdrv] i40e: Retry AQC GetPhyAbilities to overcome I2CRead hangs (Stefan Assmann) [1454892]
-- [netdrv] i40e: add check for return from find_first_bit call (Stefan Assmann) [1454892]
-- [netdrv] i40e: allow XPS with QoS enabled (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: bundle more descriptors when allocating buffers (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: bump tail only in multiples of 8 (Stefan Assmann) [1454892]
-- [netdrv] i40e: reduce lrxqthresh from 2 to 1 (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: always set the CLEARPBA flag when re-enabling interrupts (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: fix incorrect default ITR values on driver load (Stefan Assmann) [1454892]
-- [netdrv] i40e: use the safe hash table iterator when deleting mac filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix flags declaration (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: organize and re-number feature flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: ignore skb->xmit_more when deciding to set RS bit (Stefan Assmann) [1454892]
-- [netdrv] i40e: do not enter PHY debug mode while setting LEDs behaviour (Stefan Assmann) [1454892]
-- [netdrv] i40e: implement split PCI error reset handler (Stefan Assmann) [1454892]
-- [netdrv] i40e: Properly maintain flow director filters list (Stefan Assmann) [1454892]
-- [netdrv] i40e: Display error message if module does not meet thermal requirements (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix merge error (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: use DECLARE_BITMAP for state (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix incorrect register definition (Stefan Assmann) [1454892]
-- [netdrv] i40e: redfine I40E_PHY_TYPE_MAX (Stefan Assmann) [1454892]
-- [netdrv] i40e: re-enable PTP L4 capabilities for XL710 if FW >6.0 (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: spread CPU affinity hints across online CPUs only (Stefan Assmann) [1454892]
-- [netdrv] i40e: add private flag to control source pruning (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix a typo in i40e_pf documentation (Stefan Assmann) [1454892]
-- [netdrv] i40e: Stop dropping 802.1ad tags - eth proto 0x88a8 (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix client notify of VF reset (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix handling of vf_states variable (Stefan Assmann) [1454892]
-- [netdrv] i40e: ensure reset occurs when disabling VF (Stefan Assmann) [1454892]
-- [netdrv] i40e: make use of i40e_vc_disable_vf (Stefan Assmann) [1454892]
-- [netdrv] i40e: drop i40e_pf *pf from i40e_vc_disable_vf() (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't hold spinlock while resetting VF (Stefan Assmann) [1454892]
-- [netdrv] i40e: use admin queue for setting LEDs behavior (Stefan Assmann) [1454892]
-- [netdrv] i40e: Add support for 'ethtool -m' (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix reporting of supported link modes (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix a potential NULL pointer dereference (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove logically dead code (Stefan Assmann) [1454892]
-- [netdrv] i40e: limit lan queue count in large CPU count machine (Stefan Assmann) [1454892]
-- [netdrv] i40e: refactor FW version checking (Stefan Assmann) [1454892]
-- [netdrv] i40e: Enable VF to negotiate number of allocated queues (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: Add compile time static asserts to validate structure sizes (Stefan Assmann) [1454892]
-- [netdrv] i40e: shutdown all IRQs and disable MSI-X when suspended (Stefan Assmann) [1454892]
-- [netdrv] i40e: prevent service task from running while we're suspended (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't clear suspended state until we finish resuming (Stefan Assmann) [1454892]
-- [netdrv] i40e: use newer generic PM support instead of legacy PM callbacks (Stefan Assmann) [1454892]
-- [netdrv] i40e: use separate state bit for miscellaneous IRQ setup (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix for flow director counters not wrapping as expected (Stefan Assmann) [1454892]
-- [netdrv] i40e: relax warning message in case of version mismatch (Stefan Assmann) [1454892]
-- [netdrv] i40e: simplify member variable accesses (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix link down message when interface is brought up (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix unqualified module message while bringing link up (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: rename bytes_per_int to bytes_per_usec (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: avoid dynamic ITR updates when polling or low packet rate (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: remove ULTRA latency mode (Stefan Assmann) [1454892]
-- [netdrv] i40e: invert logic for checking incorrect cpu vs irq affinity (Stefan Assmann) [1454892]
-- [netdrv] i40e: initialize our affinity_mask based on cpu_possible_mask (Stefan Assmann) [1454892]
-- [netdrv] i40e: move enabling icr0 into i40e_update_enable_itr (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove workaround for resetting XPS (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix for unused value issue found by static analysis (Stefan Assmann) [1454892]
-- [netdrv] i40e: 25G FEC status improvements (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: support for VF VLAN tag stripping control (Stefan Assmann) [1454892]
-- [netdrv] i40e: force VMDQ device name truncation (Stefan Assmann) [1454892]
-- [netdrv] i40e: Use correct flag to enable egress traffic for unicast promisc (Stefan Assmann) [1454892]
-- [netdrv] i40e: prevent snprintf format specifier truncation (Stefan Assmann) [1454892]
-- [netdrv] i40e: Store the requested FEC information (Stefan Assmann) [1454892]
-- [netdrv] i40e: Update state variable for adminq subtask (Stefan Assmann) [1454892]
-- [netdrv] i40e: synchronize nvmupdate command and adminq subtask (Stefan Assmann) [1454892]
-- [netdrv] i40e: prevent changing ITR if adaptive-rx/tx enabled (Stefan Assmann) [1454892]
-- [netdrv] i40e: move check for avoiding VID=0 filters into i40e_vsi_add_vlan (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: use cmpxchg64 when updating private flags in ethtool (Stefan Assmann) [1454892]
-- [netdrv] i40e: Detect ATR HW Evict NVM issue and disable the feature (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove workaround for Open Firmware MAC address (Stefan Assmann) [1454892]
-- [netdrv] i40e: separate hw_features from runtime changing flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix a bug with VMDq RSS queue allocation (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: adjust packet size to account for double VLANs (Stefan Assmann) [1454892]
-- [netdrv] i40e: Initialize 64-bit statistics TX ring seqcount (Stefan Assmann) [1454892]
-- [netdrv] i40e: handle setting administratively set MAC address back to zero (Stefan Assmann) [1454892]
-- [netdrv] i40e: display correct UDP tunnel type name (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: remove mismatched type warnings (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: make IPv6 ATR code clearer (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix odd formatting and indent (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix up 32 bit timespec references (Stefan Assmann) [1454892]
-- [netdrv] i40e: Handle admin Q timeout when releasing NVM (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove WQ_UNBOUND and the task limit of our workqueue (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix for trace found with S4 state (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix incorrect variable assignment (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't hold RTNL lock for the entire reset (Stefan Assmann) [1454892]
-- [netdrv] i40e: Handle PE_CRITERR properly with IWARP enabled (Stefan Assmann) [1454892]
-- [netdrv] i40e: clear only cause_ena bit (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix disabling overflow promiscuous mode (Stefan Assmann) [1454892]
-- [netdrv] i40e: Add support for OEM firmware version (Stefan Assmann) [1454892]
-- [netdrv] i40e: genericize the partition bandwidth control (Stefan Assmann) [1454892]
-- [netdrv] i40e: Add message for unsupported MFP mode (Stefan Assmann) [1454892]
-- [netdrv] i40e: Support firmware CEE DCB UP to TC map re-definition (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix potential out of bound array access (Stefan Assmann) [1454892]
-- [netdrv] i40e: comment that udp_port must be in host byte order (Stefan Assmann) [1454892]
-- [netdrv] i40e: use dev_dbg instead of dev_info when warning about missing routine (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: update WOL and I40E_AQC_ADDR_VALID_MASK flags (Stefan Assmann) [1454892]
-- [netdrv] networking: make skb_put & friends return void pointers (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix a sleep-in-atomic bug (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix handling of HW ATR eviction (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: proper update of the page_offset field (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix state flags for bit set and clean operations of PF (Stefan Assmann) [1454892]
-- [netdrv] i40e/virtchnl: move function to virtchnl (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: finish conversion to virtchnl interface (Stefan Assmann) [1454892]
-- [netdrv] i40evf/virtchnl: whitespace cleanups (Stefan Assmann) [1454892]
-- [netdrv] i40e/virtchnl: refactor code for validate checks (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: convert to new macros (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: move some code to core driver (Stefan Assmann) [1454892]
-- [netdrv] virtchnl: rename i40e to generic virtchnl (Stefan Assmann) [1454892]
-- [netdrv] i40e: use new unified virtchnl header file (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: create and use new unified header file (Stefan Assmann) [1454892]
-- [netdrv] i40e: Check for memory allocation failure (Stefan Assmann) [1454892]
-- [netdrv] i40e: check for Tx timestamp timeouts during watchdog (Stefan Assmann) [1454892]
-- [netdrv] i40e: use pf data structure directly in i40e_ptp_rx_hang (Stefan Assmann) [1454892]
-- [netdrv] i40e: add statistic indicating number of skipped Tx timestamps (Stefan Assmann) [1454892]
-- [netdrv] i40e: avoid permanent lock of *_PTP_TX_IN_PROGRESS (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix race condition with PTP_TX_IN_PROGRESS bits (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove hw_disabled_flags in favor of using separate flag bits (Stefan Assmann) [1454892]
-- [netdrv] i40e: use DECLARE_BITMAP for state fields (Stefan Assmann) [1454892]
-- [netdrv] i40e: separate PF and VSI state flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove unnecessary msleep() delay in i40e_free_vfs (Stefan Assmann) [1454892]
-- [netdrv] i40e: amortize wait time when disabling lots of VFs (Stefan Assmann) [1454892]
-- [netdrv] i40e: Reprogram port offloads after reset (Stefan Assmann) [1454892]
-- [netdrv] i40e: rename index to port to avoid confusion (Stefan Assmann) [1454892]
-- [netdrv] i40e: make use of i40e_reset_all_vfs when initializing new VFs (Stefan Assmann) [1454892]
-- [netdrv] i40e: properly spell I40E_VF_STATE_* flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: use i40e_stop_rings_no_wait to implement PORT_SUSPENDED state (Stefan Assmann) [1454892]
-- [netdrv] i40e: reset all VFs in parallel when rebuilding PF (Stefan Assmann) [1454892]
-- [netdrv] i40e: split some code in i40e_reset_vf into helpers (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix CONFIG_BUSY checks in i40e_set_settings function (Stefan Assmann) [1454892]
-- [netdrv] i40e: factor out queue control from i40e_vsi_control_(tx|rx) (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't hold RTNL lock while waiting for VF reset to finish (Stefan Assmann) [1454892]
-- [netdrv] i40e: new AQ commands (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add tracepoints (Stefan Assmann) [1454892]
-- [netdrv] i40e: dump VF information in debugfs (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fix support for flow director programming status (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Use build_skb to build frames (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add support for padding start of frames (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add support for using order 1 pages with a 3K buffer (Stefan Assmann) [1454892]
-- [netdrv] i40e: clean up historic deprecated flag definitions (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove I40E_FLAG_NEED_LINK_UPDATE (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove extraneous loop in i40e_vsi_wait_queues_disabled (Stefan Assmann) [1454892]
-- [netdrv] i40e: allow look-up of MAC address from Open Firmware or IDPROM (Stefan Assmann) [1454892]
-- [netdrv] i40e: Simplify i40e_detect_recover_hung_queue logic (Stefan Assmann) [1454892]
-- [netdrv] i40e: Decrease the scope of rtnl lock (Stefan Assmann) [1454892]
-- [netdrv] i40e: Swap use of pf->flags and pf->hw_disabled_flags for ATR Eviction (Stefan Assmann) [1454892]
-- [netdrv] i40e: update error message when trying to add invalid filters (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add capability exchange for outer checksum (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix for queue timing delays (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Change the way we limit the maximum frame size for Rx (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add legacy-rx private flag to allow fallback to old Rx flow (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Break i40e_fetch_rx_buffer up to allow for reuse of frag code (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Pull out code for cleaning up Rx buffers (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Pull code for grabbing and syncing rx_buffer from fetch_buffer (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Use length to determine if descriptor is done (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove FDIR_REQUIRES_REINIT driver flag (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove a useless goto statement (Stefan Assmann) [1454892]
-- [netdrv] i40e: Check for new arq elements before leaving the adminq subtask loop (Stefan Assmann) [1454892]
-- [netdrv] i40e: use register for XL722 control register read/write (Stefan Assmann) [1454892]
-- [netdrv] i40e: Clean up handling of private flags (Stefan Assmann) [1454892]
-- [netdrv] i40e: Drop FCoE code that always evaluates to false or 0 (Stefan Assmann) [1454892]
-- [netdrv] i40e: Drop FCoE code from core driver files (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Clean-up process_skb_fields (Stefan Assmann) [1454892]
-- [netdrv] i40e: removed no longer needed delays (Stefan Assmann) [1454892]
-- [netdrv] i40e: Fixed race conditions in VF reset (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Fix use after free in Rx cleanup path (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix configuration of RSS table with DCB (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Update code to better handle incrementing page count (Stefan Assmann) [1454892]
-- [netdrv] i40e: make use of hlist_for_each_entry_continue (Stefan Assmann) [1454892]
-- [netdrv] i40e: add support for SCTPv4 FDir filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: implement support for flexible word payload (Stefan Assmann) [1454892]
-- [netdrv] i40e: add parsing of flexible filter fields from userdef (Stefan Assmann) [1454892]
-- [netdrv] i40e: partition the ring_cookie to get VF index (Stefan Assmann) [1454892]
-- [netdrv] i40e: allow changing input set for ntuple filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: restore default input set for each flow type (Stefan Assmann) [1454892]
-- [netdrv] i40e: check current configured input set when adding ntuple filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: correctly honor the mask fields for ETHTOOL_SRXCLSRLINS (Stefan Assmann) [1454892]
-- [netdrv] i40e: always remove old filter when adding new FDir filter (Stefan Assmann) [1454892]
-- [netdrv] i40e: explicitly fail on extended MAC field for ethtool_rx_flow_spec (Stefan Assmann) [1454892]
-- [netdrv] i40e: add counters for UDP/IPv4 and IPv4 filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't re-enable ATR when flushing filters if SB has TCP4/IPv4 rules (Stefan Assmann) [1454892]
-- [netdrv] i40e: reset fd_tcp_rule count when restoring filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: remove redundant check for fd_tcp_rule when restoring filters (Stefan Assmann) [1454892]
-- [netdrv] i40e: exit ATR mode only when adding TCP/IPv4 filter succeeds (Stefan Assmann) [1454892]
-- [netdrv] i40e: return immediately when failing to add fdir filter (Stefan Assmann) [1454892]
-- [netdrv] i40e: rework exit flow of i40e_add_fdir_ethtool (Stefan Assmann) [1454892]
-- [netdrv] i40e: don't use arrays for (src|dst)_ip (Stefan Assmann) [1454892]
-- [netdrv] i40e: send correct port number to AdminQ when enabling UDP tunnels (Stefan Assmann) [1454892]
-- [netdrv] i40e: use new api ethtool_{get|set}_link_ksettings (Stefan Assmann) [1454892]
-- [netdrv] i40e: rename auto_disable_flags to hw_disabled_flags (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Change version from 1.6.27 to 2.1.7 (Stefan Assmann) [1454892]
-- [netdrv] i40e: Allow untrusted VFs to have more filters (Stefan Assmann) [1454892]
-- [netdrv] i40e/i40evf: Add support for mapping pages with DMA attributes (Stefan Assmann) [1454892]
-- [netdrv] i40e: Clarify steps in MAC/VLAN filters initialization routine (Stefan Assmann) [1454892]
-- [netdrv] i40e: fix ethtool to get EEPROM data from X722 interface (Stefan Assmann) [1454892]
-- [netdrv] intel: use core min/max MTU checking (Stefan Assmann) [1454892]
-
-* Tue Nov 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-774.el7]
-- [net] rename ndo_setup_tc callback and remove it from kABI (Ivan Vecera) [1445420]
-- [net] sched: avoid matching qdisc with zero handle (Ivan Vecera) [1445420]
-- [net] sched: cls_flower: Set egress_dev mark when calling into the HW driver (Ivan Vecera) [1445420]
-- [net] net_sched: remove cls_flower idr on failure (Ivan Vecera) [1445420]
-- [net] sched: don't use GFP_KERNEL under spin lock (Ivan Vecera) [1445420]
-- [net] sched: fix use-after-free in tcf_action_destroy and tcf_del_walker (Ivan Vecera) [1445420]
-- [net] sched: Change act_api and act_xxx modules to use IDR (Ivan Vecera) [1445420]
-- [net] sched: Change cls_flower to use IDR (Ivan Vecera) [1445420]
-- [lib] idr: implement extended variant of idr (Ivan Vecera) [1445420]
-- [lib] idr: fix NULL pointer dereference when ida_remove(unallocated_id) (Ivan Vecera) [1445420]
-- [lib] idr: fix unexpected ID-removal when idr_remove(unallocated_id) (Ivan Vecera) [1445420]
-- [lib] idr: fix overflow bug during maximum ID calculation at maximum height (Ivan Vecera) [1445420]
-- [net] net_sched: fix order of queue length updates in qdisc_replace() (Ivan Vecera) [1445420]
-- [net] sched: hfsc: fix curve activation in hfsc_change_class() (Ivan Vecera) [1445420]
-- [net] net_sched: always reset qdisc backlog in qdisc_reset() (Ivan Vecera) [1445420]
-- [net] net_sched: gen_estimator: fix scaling error in bytes/packets samples (Ivan Vecera) [1445420]
-- [net] net_sched: carefully handle tcf_block_put() (Ivan Vecera) [1445420]
-- [net] net_sched: fix reference counting of tc filter chain (Ivan Vecera) [1445420]
-- [net] net_sched: get rid of tcfa_rcu (Ivan Vecera) [1445420]
-- [net] sched: fix pointer check in gen_handle (Ivan Vecera) [1445420]
-- [net] sched: fix memleak for chain zero (Ivan Vecera) [1445420]
-- [net] sched: Use __qdisc_drop instead of kfree_skb in sch_prio and sch_qfq (Ivan Vecera) [1445420]
-- [net] net_sched: add reverse binding for tc class (Ivan Vecera) [1445420]
-- [net] sch_tbf: fix two null pointer dereferences on init failure (Ivan Vecera) [1445420]
-- [net] sch_sfq: fix null pointer dereference on init failure (Ivan Vecera) [1445420]
-- [net] sch_netem: avoid null pointer deref on init failure (Ivan Vecera) [1445420]
-- [net] sch_fq_codel: avoid double free on init failure (Ivan Vecera) [1445420]
-- [net] sch_cbq: fix null pointer dereferences on init failure (Ivan Vecera) [1445420]
-- [net] sch_hfsc: fix null pointer deref and double free on init failure (Ivan Vecera) [1445420]
-- [net] sch_hhf: fix null pointer dereference on init failure (Ivan Vecera) [1445420]
-- [net] sch_multiq: fix double free on init failure (Ivan Vecera) [1445420]
-- [net] sch_htb: fix crash on init failure (Ivan Vecera) [1445420]
-- [net] act_ife: use registered ife_type as fallback (Ivan Vecera) [1445420]
-- [net] if_ether: add forces ife lfb type (Ivan Vecera) [1445420]
-- [net] sched: sfq: drop packets after root qdisc lock is released (Ivan Vecera) [1445420]
-- [net] net_sched: fix a refcount_t issue with noop_qdisc (Ivan Vecera) [1445420]
-- [net] net_sched: kill u32_node pointer in Qdisc (Ivan Vecera) [1445420]
-- [net] net_sched: remove tc class reference counting (Ivan Vecera) [1445420]
-- [net] net_sched: introduce tclass_del_notify() (Ivan Vecera) [1445420]
-- [net] net_sched: get rid of more forward declarations (Ivan Vecera) [1445420]
-- [net] sched: add couple of goto_chain helpers (Ivan Vecera) [1445420]
-- [net] sched: don't do tcf_chain_flush from tcf_chain_destroy (Ivan Vecera) [1445420]
-- [net] sched: fix use after free when tcf_chain_destroy is called multiple times (Ivan Vecera) [1445420]
-- [net] sched: Fix the logic error to decide the ingress qdisc (Ivan Vecera) [1445420]
-- [net] sched: fix p_filter_chain check in tcf_chain_flush (Ivan Vecera) [1445420]
-- [net] sched: Add the invalid handle check in qdisc_class_find (Ivan Vecera) [1445420]
-- [net] sched: fix NULL pointer dereference when action calls some targets (Ivan Vecera) [1445420]
-- [net] sched: cls_flower: fix ndo_setup_tc type for stats call (Ivan Vecera) [1445420]
-- [net] qdisc: add tracepoint qdisc:qdisc_dequeue for dequeued SKBs (Ivan Vecera) [1445420]
-- [net] sched: hfsc: opencode trivial set_active() and set_passive() (Ivan Vecera) [1445420]
-- [net] net_sched: call qlen_notify only if child qdisc is empty (Ivan Vecera) [1445420]
-- [net] net_sched: remove warning from qdisc_hash_add (Ivan Vecera) [1445420]
-- [net] sched: sfq: update hierarchical backlog when drop packet (Ivan Vecera) [1445420]
-- [net] net_sched: reset pointers to tcf blocks in classful qdiscs' destructors (Ivan Vecera) [1445420]
-- [net] sched: hfsc: allocate tcf block for hfsc root class (Ivan Vecera) [1445420]
-- [net] sched: remove cops->tcf_cl_offload (Ivan Vecera) [1445420]
-- [net] sched: use newly added classid identity helpers (Ivan Vecera) [1445420]
-- [net] sched: propagate classid down to offload drivers (Ivan Vecera) [1445420]
-- [net] sched: Add helpers to identify classids (Ivan Vecera) [1445420]
-- [net] sched: set xt_tgchk_param par.nft_compat as 0 in ipt_init_target (Ivan Vecera) [1445420]
-- [net] sched: set xt_tgchk_param par.net properly in ipt_init_target (Ivan Vecera) [1445420]
-- [net] net_sched: get rid of some forward declarations (Ivan Vecera) [1445420]
-- [net] sched: get rid of struct tc_to_netdev (Ivan Vecera) [1445420]
-- [net] sched: change return value of ndo_setup_tc for driver supporting mqprio only (Ivan Vecera) [1445420]
-- [net] sched: move prio into cls_common (Ivan Vecera) [1445420]
-- [net] sched: push cls related args into cls_common structure (Ivan Vecera) [1445420]
-- [netdrv] mlxsw: spectrum: rename cls arg in matchall processing (Ivan Vecera) [1445420]
-- [netdrv] mlxsw: spectrum: push cls_flower and cls_matchall setup_tc processing into separate functions (Ivan Vecera) [1445420]
-- [netdrv] mlx5e_rep: push cls_flower setup_tc processing into a separate function (Ivan Vecera) [1445420]
-- [netdrv] mlx5e: push cls_flower and mqprio setup_tc processing into separate functions (Ivan Vecera) [1445420]
-- [netdrv] ixgbe: push cls_u32 and mqprio setup_tc processing into separate functions (Ivan Vecera) [1445420]
-- [netdrv] cxgb4: push cls_u32 setup_tc processing into a separate function (Ivan Vecera) [1445420]
-- [net] sched: make egress_dev flag part of flower offload struct (Ivan Vecera) [1445420]
-- [net] sched: rename TC_SETUP_MATCHALL to TC_SETUP_CLSMATCHALL (Ivan Vecera) [1445420]
-- [net] sched: make type an argument for ndo_setup_tc (Ivan Vecera) [1445420]
-- [net] net_sched: use void pointer for filter handle (Ivan Vecera) [1445420]
-- [net] net_sched: refactor notification code for RTM_DELTFILTER (Ivan Vecera) [1445420]
-- [net] sched: avoid atomic swap in tcf_exts_change (Ivan Vecera) [1445420]
-- [net] sched: cls_u32: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_route: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_flow: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_cgroup: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_bpf: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_basic: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_matchall: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_fw: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_flower: no need to call tcf_exts_change for newly allocated struct (Ivan Vecera) [1445420]
-- [net] sched: cls_fw: rename fw_change_attrs function (Ivan Vecera) [1445420]
-- [net] sched: cls_bpf: rename cls_bpf_modify_existing function (Ivan Vecera) [1445420]
-- [net] sched: use tcf_exts_has_actions instead of exts->nr_actions (Ivan Vecera) [1445420]
-- [net] sched: remove check for number of actions in tcf_exts_exec (Ivan Vecera) [1445420]
-- [net] sched: fix return value of tcf_exts_exec (Ivan Vecera) [1445420]
-- [net] sched: remove redundant helpers tcf_exts_is_predicative and tcf_exts_is_available (Ivan Vecera) [1445420]
-- [net] sched: use tcf_exts_has_actions in tcf_exts_exec (Ivan Vecera) [1445420]
-- [net] sched: change names of action number helpers to be aligned with the rest (Ivan Vecera) [1445420]
-- [net] sched: remove unneeded tcf_em_tree_change (Ivan Vecera) [1445420]
-- [net] sched: sch_atm: use Qdisc_class_common structure (Ivan Vecera) [1445420]
-- [net] sched: actions: add time filter for action dumping (Ivan Vecera) [1445420]
-- [net] sched: actions: dump more than TCA_ACT_MAX_PRIO actions per batch (Ivan Vecera) [1445420]
-- [net] sched: actions: Use proper root attribute table for actions (Ivan Vecera) [1445420]
-- [net] netlink: Add new type NLA_BITFIELD32 (Ivan Vecera) [1445420]
-- [net] sched: actions: rename act_get_notify() to tcf_get_notify() (Ivan Vecera) [1445420]
-- [net] sched: Fix one possible panic when no destroy callback (Ivan Vecera) [1445420]
-- [net] sched: act_tunnel_key: make UDP checksum configurable (Ivan Vecera) [1445420]
-- [net] sched: act_tunnel_key: request UDP checksum by default (Ivan Vecera) [1445420]
-- [net] act_pedit: fix an error code (Ivan Vecera) [1445420]
-- [net] net_sched: move tcf_lock down after gen_replace_estimator() (Ivan Vecera) [1445420]
-- [net] propagate tc filter chain index down the ndo_setup_tc call (Ivan Vecera) [1445420]
-- [net] sched: introduce helper to identify gact trap action (Ivan Vecera) [1445420]
-- [net] sched: introduce a TRAP control action (Ivan Vecera) [1445420]
-- [net] sched: select cls when cls_act is enabled (Ivan Vecera) [1445420]
-- [net] sched: cls_flower: add support for matching on ip tos and ttl (Ivan Vecera) [1445420]
-- [net] sched: add helper for updating statistics on all actions (Ivan Vecera) [1445420]
-- [net] net_sched: only create filter chains for new filters/actions (Ivan Vecera) [1445420]
-- [net] sched: flower: add support for matching on tcp flags (Ivan Vecera) [1445420]
-- [net] sched: cls_api: make reclassify return all the way back to the original tp (Ivan Vecera) [1445420]
-- [net] sched: cls_matchall: fix null pointer dereference (Ivan Vecera) [1445420]
-- [net] sched: fix filter flushing (Ivan Vecera) [1445420]
-- [net] sched: properly assign RCU pointer in tcf_chain_tp_insert/remove (Ivan Vecera) [1445420]
-- [net] sched: add termination action to allow goto chain (Ivan Vecera) [1445420]
-- [net] sched: push tp down to action init (Ivan Vecera) [1445420]
-- [net] sched: introduce multichain support for filters (Ivan Vecera) [1445420]
-- [net] sched: push chain dump to a separate function (Ivan Vecera) [1445420]
-- [net] sched: introduce helpers to work with filter chains (Ivan Vecera) [1445420]
-- [net] sched: move TC_H_MAJ macro call into tcf_auto_prio (Ivan Vecera) [1445420]
-- [net] sched: replace nprio by a bool to make the function more readable (Ivan Vecera) [1445420]
-- [net] sched: rename tcf_destroy_chain helper (Ivan Vecera) [1445420]
-- [net] sched: introduce tcf block infractructure (Ivan Vecera) [1445420]
-- [net] sched: move tc_classify function to cls_api.c (Ivan Vecera) [1445420]
-- [net] fix compile error in skb_orphan_partial() (Ivan Vecera) [1445420]
-- [net] netem: fix skb_orphan_partial() (Ivan Vecera) [1445420]
-- [net] sched: optimize class dumps (Ivan Vecera) [1445420]
-- [net] sched: act_csum: Add accessors for offloading drivers (Ivan Vecera) [1445420]
-- [net] sched: remove redundant null check on head (Ivan Vecera) [1445420]
-- [net] sched: add helpers to handle extended actions (Ivan Vecera) [1445420]
-- [net] flower: check unused bits in MPLS fields (Ivan Vecera) [1445420]
-- [net] sched: actions: Complete the JUMPX opcode (Ivan Vecera) [1445420]
-- [net] cls_flower: add support for matching MPLS fields (v2) (Ivan Vecera) [1445420]
-- [net] net_sched: remove useless NULL to tp->root (Ivan Vecera) [1445420]
-- [net] net_sched: move the empty tp check from ->destroy() to ->delete() (Ivan Vecera) [1445420]
-- [net] allow configuring default qdisc (Ivan Vecera) [1445420]
-- [net] net_sched: check noop_qdisc before qdisc_hash_add() (Ivan Vecera) [1445420]
-- [net] sched: choke: remove some dead code (Ivan Vecera) [1445420]
-- [net] net_sched: use setup_deferrable_timer (Ivan Vecera) [1445420]
-- [net] sched: choke: remove dead filter classify code (Ivan Vecera) [1445420]
-- [net] sched: act_csum: don't mangle TCP and UDP GSO packets (Ivan Vecera) [1445420]
-- [net] sch_dsmark: fix invalid skb_cow() usage (Ivan Vecera) [1445420]
-- [net] sched: fq_codel: Avoid set-but-unused variable (Ivan Vecera) [1445420]
-- [net] sched: act_ife: Staticfy find_decode_metaid() (Ivan Vecera) [1445420]
-- [net] mqprio: Modify mqprio to pass user parameters via ndo_setup_tc (Ivan Vecera) [1445420]
-- [net] mqprio: Change handling of hw u8 to allow for multiple hardware offload modes (Ivan Vecera) [1445420]
-- [net] replace callings of .ndo_setup_tc by wrapper (Ivan Vecera) [1445420]
-- [net] netem: apply correct delay when rate throttling (Ivan Vecera) [1445420]
-- [net] sch_tbf: Remove bogus semicolon in if() conditional. (Ivan Vecera) [1445420]
-- [net] act_connmark: avoid crashing on malformed nlattrs with null parms (Ivan Vecera) [1445420]
-- [net] sched: make default fifo qdiscs appear in the dump (Ivan Vecera) [1445420]
-- [net] sched: act_skbmod: remove unneeded rcu_read_unlock in tcf_skbmod_dump (Ivan Vecera) [1445420]
-- [net] sched: actions: decrement module reference count after table flush. (Ivan Vecera) [1445420]
-- [net] pkt_sched: Remove useless qdisc_stab_lock (Ivan Vecera) [1445420]
-- [net] sched: cls_u32: Reflect HW offload status (Ivan Vecera) [1445420]
-- [net] sched: have stub for tcf_destroy_chain in case NET_CLS is not configured (Ivan Vecera) [1445420]
-- [net] sched: Fix accidental removal of errout goto (Ivan Vecera) [1445420]
-- [net] net_sched: fix error recovery at qdisc creation (Ivan Vecera) [1445420]
-- [net] sched: check negative err value to safe one level of indent (Ivan Vecera) [1445420]
-- [net] sched: add missing curly braces in else branch in tc_ctl_tfilter (Ivan Vecera) [1445420]
-- [net] sched: move err set right before goto errout in tc_ctl_tfilter (Ivan Vecera) [1445420]
-- [net] sched: push TC filter protocol creation into a separate function (Ivan Vecera) [1445420]
-- [net] sched: move tcf_proto_destroy and tcf_destroy_chain helpers into cls_api (Ivan Vecera) [1445420]
-- [net] sched: rename tcf_destroy to tcf_destroy_proto (Ivan Vecera) [1445420]
-- [net] act_pedit: Introduce 'add' operation (Ivan Vecera) [1445420]
-- [net] act_pedit: Support using offset relative to the conventional network headers (Ivan Vecera) [1445420]
-- [net] sched: act_mirred: remove duplicated include from act_mirred.c (Ivan Vecera) [1445420]
-- [net] sched: act_ife: Change to use ife module (Ivan Vecera) [1445420]
-- [net] Introduce ife encapsulation module (Ivan Vecera) [1445420]
-- [net] sched: act_ife: Unexport ife_tlv_meta_encode (Ivan Vecera) [1445420]
-- [net] sched: act_psample: Remove unnecessary ASSERT_RTNL (Ivan Vecera) [1445420]
-- [net] sched: act_sample: Fix error path in init (Ivan Vecera) [1445420]
-- [net] sched: Introduce sample tc action (Ivan Vecera) [1445420]
-- [net] Introduce psample, a new genetlink channel for packet sampling (Ivan Vecera) [1445420]
-- [net] sched: Add accessor functions to pedit keys for offloading drivers (Ivan Vecera) [1445420]
-- [net] fq_codel: Avoid regenerating skb flow hash unless necessary (Ivan Vecera) [1445420]
-- [net] sched: actions: fix refcnt when GETing of action after bind (Ivan Vecera) [1445420]
-- [net] sched: act_csum: compute crc32c on SCTP packets (Ivan Vecera) [1445420]
-- [net] sched: Kconfig: select LIBCRC32C if NET_ACT_CSUM is selected (Ivan Vecera) [1445420]
-- [net] cls_u32: don't bother explicitly initializing ->divisor to zero (Ivan Vecera) [1445420]
-- [net] tc: convert tc_at to tc_at_ingress (Ivan Vecera) [1445420]
-- [net] tc: convert tc_verd to integer bitfields (Ivan Vecera) [1445420]
-- [net] tc: extract skip classify bit from tc_verd (Ivan Vecera) [1445420]
-- [net] tc: make MAX_RECLASSIFY_LOOP local (Ivan Vecera) [1445420]
-- [net] tc: remove unused tc_verd fields (Ivan Vecera) [1445420]
-- [net] dev_weight: TX/RX orthogonality (Ivan Vecera) [1445420]
-- [net] sched: fix soft lockup in tc_classify (Ivan Vecera) [1445420]
-- [net] net_sched: sch_netem: use rb_entry() (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: use rb_entry() (Ivan Vecera) [1445420]
-- [net] net_sched: gen_estimator: complete rewrite of rate estimators (Ivan Vecera) [1445420]
-- [net] uapi: export tc_skbmod.h (Ivan Vecera) [1445420]
-- [net] net_sched: gen_estimator: account for timer drifts (Ivan Vecera) [1445420]
-- [net] sched: pedit: make sure that offset is valid (Ivan Vecera) [1445420]
-- [net] sched: Export tc_tunnel_key so its UAPI accessible (Ivan Vecera) [1445420]
-- [net] bpf: reuse dev_is_mac_header_xmit for redirect (Ivan Vecera) [1445420]
-- [net] sched: filters: fix filter handle ID in tfilter_notify_chain() (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: use hash_ptr() (Ivan Vecera) [1445420]
-- [net] sched: filters: pass netlink message flags in event notification (Ivan Vecera) [1445420]
-- [net] tc_act: Remove tcf_act macro (Ivan Vecera) [1445420]
-- [net] qdisc: catch misconfig of attaching qdisc to tx_queue_len zero device (Ivan Vecera) [1445420]
-- [net] qdisc: IFF_NO_QUEUE drivers should use consistent TX queue len (Ivan Vecera) [1445420]
-- [net] make default TX queue length a defined constant (Ivan Vecera) [1445420]
-- [net] net_sched: actions: use nla_parse_nested() (Ivan Vecera) [1445420]
-- [net] sched: filters: fix notification of filter delete with proper handle (Ivan Vecera) [1445420]
-- [net] skbedit: allow the user to specify bitmask for mark (Ivan Vecera) [1445420]
-- [net] sch_htb: do not report fake rate estimators (Ivan Vecera) [1445420]
-- [net] sched: em_meta: Fix 'meta vlan' to correctly recognize zero VID frames (Ivan Vecera) [1445420]
-- [net] sched: act_mirred: Implement ingress actions (Ivan Vecera) [1445420]
-- [net] sched: act_mirred: Refactor detection whether dev needs xmit at mac header (Ivan Vecera) [1445420]
-- [net] sched: act_mirred: Rename tcfm_ok_push to tcfm_mac_header_xmit and make it a bool (Ivan Vecera) [1445420]
-- [net] net_sched: reorder pernet ops and act ops registrations (Ivan Vecera) [1445420]
-- [net] net_sched: do not broadcast RTM_GETTFILTER result (Ivan Vecera) [1445420]
-- [net] skbuff: Limit skb_vlan_pop/push() to expect skb->data at mac header (Ivan Vecera) [1445420]
-- [net] sched: act_vlan: Push skb->data to mac_header prior calling skb_vlan_*() functions (Ivan Vecera) [1445420]
-- [net] sched: pkt_cls: change tc actions order to be as the user sets (Ivan Vecera) [1445420]
-- [net] act_ife: Fix false encoding (Ivan Vecera) [1445420]
-- [net] act_ife: Fix external mac header on encode (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: account for schedule/timers drifts (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: add low_rate_threshold parameter (Ivan Vecera) [1445420]
-- [net] sched: actions: fix GETing actions (Ivan Vecera) [1445420]
-- [net] sched: act_vlan: Introduce TCA_VLAN_ACT_MODIFY vlan action (Ivan Vecera) [1445420]
-- [net] skbuff: Export __skb_vlan_pop (Ivan Vecera) [1445420]
-- [net] net_sched: check NULL on error path in route4_change() (Ivan Vecera) [1445420]
-- [net] sched: actions police: peg drop stats for conforming traffic (Ivan Vecera) [1445420]
-- [net] sched: ife action: Introduce skb tcindex metadata encap decap (Ivan Vecera) [1445420]
-- [net] sched: ife action: add 16 bit helpers (Ivan Vecera) [1445420]
-- [net] sched: add and use qdisc_skb_head helpers (Ivan Vecera) [1445420]
-- [net] sched: replace __skb_dequeue with __qdisc_dequeue_head (Ivan Vecera) [1445420]
-- [net] sched: remove qdisc arg from __qdisc_dequeue_head (Ivan Vecera) [1445420]
-- [net] sched: don't use skb queue helpers (Ivan Vecera) [1445420]
-- [net] pie: use qdisc_dequeue_head wrapper (Ivan Vecera) [1445420]
-- [net] pkt_sched: fq: use proper locking in fq_dump_stats() (Ivan Vecera) [1445420]
-- [net] net_sched: Introduce skbmod action (Ivan Vecera) [1445420]
-- [net] sched: use IS_ENABLED() instead of checking for built-in or module (Ivan Vecera) [1445420]
-- [net] minor optimization in qdisc_qstats_cpu_drop() (Ivan Vecera) [1445420]
-- [net] qdisc: fix a module refcount leak in qdisc_create_dflt() (Ivan Vecera) [1445420]
-- [net] sched: fix encoding to use real length (Ivan Vecera) [1445420]
-- [net] net_sched: properly handle failure case of tcf_exts_init() (Ivan Vecera) [1445420]
-- [net] sched: avoid duplicates in qdisc dump (Ivan Vecera) [1445420]
-- [net] sched: fix handling of singleton qdiscs with qdisc_hash (Ivan Vecera) [1445420]
-- [net] net_sched: allow flushing tc police actions (Ivan Vecera) [1445420]
-- [net] net_sched: unify the init logic for act_police (Ivan Vecera) [1445420]
-- [net] net_sched: convert tcf_exts from list to pointer array (Ivan Vecera) [1445420]
-- [net] net_sched: remove an unnecessary list_del() (Ivan Vecera) [1445420]
-- [net] net_sched: remove the leftover cleanup_a() (Ivan Vecera) [1445420]
-- [net] fix up a few missing hashtable.h conflict resolutions (Ivan Vecera) [1445420]
-- [net] sched: convert qdisc linked list to hashtable (Ivan Vecera) [1445420]
-- [net] resolve symbol conflicts with generic hashtable.h (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: remove unused cl_myfadj (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: keep fsc and virtual times in sync; fix an old bug (Ivan Vecera) [1445420]
-- [net] net_sched: get rid of struct tcf_common (Ivan Vecera) [1445420]
-- [net] net_sched: move tc_action into tcf_common (Ivan Vecera) [1445420]
-- [net] sched: sch_htb: clamp xstats tokens to fit into 32-bit int (Ivan Vecera) [1445420]
-- [net] hfsc: reduce hfsc_sched to 14 cachelines (Ivan Vecera) [1445420]
-- [net] sched: actions: skbedit convert to use more modern nla_put_xxx (Ivan Vecera) [1445420]
-- [net] sched: actions: skbedit add support for mod-ing skb pkt_type (Ivan Vecera) [1445420]
-- [net] simplify and make pkt_type_ok() available for other users (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: anchor virtual curve at proper vt in hfsc_change_fsc() (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: go passive after vt update (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: remove leftover dlist and droplist (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: add unlikely() in qdisc_peek_len() (Ivan Vecera) [1445420]
-- [net] sched: sch_hfsc: handle corner cases where head may change invalidating calculated deadline (Ivan Vecera) [1445420]
-- [net] net_sched: netem: do not call qdisc_drop() with a NULL skb (Ivan Vecera) [1445420]
-- [net] net_sched: generalize bulk dequeue (Ivan Vecera) [1445420]
-- [net] net_sched: sch_htb: export class backlog in dumps (Ivan Vecera) [1445420]
-- [net] net_sched: fq_codel: cache skb->truesize into skb->cb (Ivan Vecera) [1445420]
-- [net] net_sched: drop packets after root qdisc lock is released (Ivan Vecera) [1445420]
-- [net] act_ife: acquire ife_mod_lock before reading ifeoplist (Ivan Vecera) [1445420]
-- [net] act_ife: only acquire tcf_lock for existing actions (Ivan Vecera) [1445420]
-- [net] htb: call qdisc_root with rcu read lock held (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_pie: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_netem: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_htb: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_hhf: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: fq_codel: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_fq: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: sch_codel: defer skb freeing in codel_change() (Ivan Vecera) [1445420]
-- [net] net_sched: sch_choke: defer skb freeing (Ivan Vecera) [1445420]
-- [net] net_sched: add the ability to defer skb freeing (Ivan Vecera) [1445420]
-- [net] net sched actions: bug fix dumping actions directly didnt produce NLMSG_DONE (Ivan Vecera) [1445420]
-- [net] net_sched: make tcf_hash_check() boolean (Ivan Vecera) [1445420]
-- [net] act_ipt: fix a bind refcnt leak (Ivan Vecera) [1445420]
-- [net] net_sched: prio: insure proper transactional behavior (Ivan Vecera) [1445420]
-- [net] act_police: rename tcf_act_police_locate() to tcf_act_police_init() (Ivan Vecera) [1445420]
-- [net] net_sched: remove internal use of TC_POLICE_* (Ivan Vecera) [1445420]
-- [net] net_sched: prio: properly report out of memory errors (Ivan Vecera) [1445420]
-- [net] sched: remove NET_XMIT_POLICED (Ivan Vecera) [1445420]
-- [net] net_sched: remove generic throttled management (Ivan Vecera) [1445420]
-- [net] net_sched: netem: remove qdisc_is_throttled() use (Ivan Vecera) [1445420]
-- [net] net_sched: cbq: remove a flaky use of qdisc_is_throttled() (Ivan Vecera) [1445420]
-- [net] net_sched: sch_plug: use a private throttled status (Ivan Vecera) [1445420]
-- [net] sched: fix qdisc->running lockdep annotations (Ivan Vecera) [1445420]
-- [net] sched: place state, next_sched and gso_skb in same cacheline again (Ivan Vecera) [1445420]
-- [net] sched: remove qdisc->drop (Ivan Vecera) [1445420]
-- [net] sched: remove qdisc_rehape_fail (Ivan Vecera) [1445420]
-- [net] cbq: remove TCA_CBQ_POLICE support (Ivan Vecera) [1445420]
-- [net] cbq: remove TCA_CBQ_OVL_STRATEGY support (Ivan Vecera) [1445420]
-- [net] qfq: don't leak skb if kzalloc fails (Ivan Vecera) [1445420]
-- [net] cls_u32: be more strict about skip-sw flag for knodes (Ivan Vecera) [1445420]
-- [net] cls_u32: catch all hardware offload errors (Ivan Vecera) [1445420]
-- [net] sched: fix missing doc annotations (Ivan Vecera) [1445420]
-- [net] net_sched: add missing paddattr description (Ivan Vecera) [1445420]
-- [net] sched: fix tc_should_offload for specific clsact classes (Ivan Vecera) [1445420]
-- [net] act_police: fix a crash during removal (Ivan Vecera) [1445420]
-- [net] sched: do not acquire qdisc spinlock in qdisc/class stats dump (Ivan Vecera) [1445420]
-- [net] net_sched: transform qdisc running bit into a seqcount (Ivan Vecera) [1445420]
-- [net] cls_u32: fix error code for invalid flags (Ivan Vecera) [1445420]
-- [net] net_sched: avoid too many hrtimer_start() calls (Ivan Vecera) [1445420]
-- [net] also make sch_handle_egress() drop monitor ready (Ivan Vecera) [1445420]
-- [net] net sched: ife action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: skbedit action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: simple action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: mirred action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: ipt action fix late binding (Ivan Vecera) [1445420]
-- [net] net sched: vlan action fix late binding (Ivan Vecera) [1445420]
-- [net] export tc ife uapi header (Ivan Vecera) [1445420]
-- [net] make sch_handle_ingress() drop monitor ready (Ivan Vecera) [1445420]
-- [net] add __sock_wfree() helper (Ivan Vecera) [1445420]
-- [net] sched: align nlattr properly when needed (Ivan Vecera) [1445420]
-- [net] qdisc: constify meta_type_ops structures (Ivan Vecera) [1445420]
-- [net] net_sched: fix a memory leak in tc action (Ivan Vecera) [1445420]
-- [net] net_sched: dsmark: use qdisc_dequeue_peeked() (Ivan Vecera) [1445420]
-- [net] act_ife: fix a typo in kmemdup() parameters (Ivan Vecera) [1445420]
-- [net] sched: use pfifo_fast for non real queues (Ivan Vecera) [1445420]
-- [net] sch_mqprio: Fix build with older gcc. (Ivan Vecera) [1445420]
-- [net] Support to encoding decoding skb prio on IFE action (Ivan Vecera) [1445420]
-- [net] Support to encoding decoding skb mark on IFE action (Ivan Vecera) [1445420]
-- [net] introduce IFE action (Ivan Vecera) [1445420]
-- [net] net_sched: update hierarchical backlog too (Ivan Vecera) [1445420]
-- [net] net_sched: add network namespace support for tc actions (Ivan Vecera) [1445420]
-- [net] net_sched: prepare tcf_hashinfo_destroy() for netns support (Ivan Vecera) [1445420]
-- [net] bpf: try harder on clones when writing into skb (Ivan Vecera) [1445420]
-- [net] net_sched: Improve readability of filter processing (Ivan Vecera) [1445420]
-- [net] net_sched fix: reclassification needs to consider ether protocol changes (Ivan Vecera) [1445420]
-- [net] pack tc_cls_u32_knode struct slighter better (Ivan Vecera) [1445420]
-- [net] net_sched: drr: check for NULL pointer in drr_dequeue (Ivan Vecera) [1445420]
-- [kernel] timer: add setup_deferrable_timer macro (Ivan Vecera) [1445420]
-- [net] sched: add clsact qdisc (Ivan Vecera) [1445420]
-- [net] sched: add skb_at_tc_ingress helper (Ivan Vecera) [1445420]
-- [net] net_sched: make qdisc_tree_decrease_qlen() work for non mq (Ivan Vecera) [1445420]
-- [net] net_sched: fix qdisc_tree_decrease_qlen() races (Ivan Vecera) [1445420]
-- [net] sched: kill dead code in sch_choke.c (Ivan Vecera) [1445420]
-- [net] sch_hhf: fix return value of hhf_drop() (Ivan Vecera) [1445420]
-- [net] sched: make sch_blackhole.c explicitly non-modular (Ivan Vecera) [1445420]
-- [net] act_mirred: always release tcf hash (Ivan Vecera) [1445420]
-- [net] revert "net_sched: move tp->root allocation into fw_init()" (Ivan Vecera) [1445420]
-- [net] act_connmark: Remember the struct net instead of guessing it. (Ivan Vecera) [1445420]
-- [net] sch_dsmark: improve memory locality (Ivan Vecera) [1445420]
-- [net] sched: don't break line in tc_classify loop notification (Ivan Vecera) [1445420]
-- [net] sched: consolidate tc_classify{, _compat} (Ivan Vecera) [1445420]
-- [net] net_sched: convert rsvp to call tcf_exts_destroy from rcu callback (Ivan Vecera) [1445420]
-- [net] net_sched: convert tcindex to call tcf_exts_destroy from rcu callback (Ivan Vecera) [1445420]
-- [net] net_sched: make tcf_hash_destroy() static (Ivan Vecera) [1445420]
-- [net] netfilter: nf_conntrack: add direction support for zones (Ivan Vecera) [1445420]
-- [net] act_mirred: avoid calling tcf_hash_release() when binding (Ivan Vecera) [1445420]
-- [net] sch_choke: drop all packets in queue during reset (Ivan Vecera) [1445420]
-- [net] sch_plug: purge buffered packets during reset (Ivan Vecera) [1445420]
-- [net] net_sched: fix a use-after-free in sfq (Ivan Vecera) [1445420]
-- [net] pkt_sched: sch_qfq: remove unused member of struct qfq_sched (Ivan Vecera) [1445420]
-- [net] net_sched: gen_estimator: extend pps limit (Ivan Vecera) [1445420]
-- [net] sched: Simplify em_ipset_match (Ivan Vecera) [1445420]
-- [net] pkt_sched: sch_qfq: remove redundant -if- control statement (Ivan Vecera) [1445420]
-- [net] sched: pkt_cls: remove unused macros from uapi (Ivan Vecera) [1445420]
-- [net] dev: reduce both ingress hook ifdefs (Ivan Vecera) [1445420]
-- [net] add CONFIG_NET_INGRESS to enable ingress filtering (Ivan Vecera) [1445420]
-- [net] sched: deprecate enqueue_root() (Ivan Vecera) [1445420]
-- [net] net_sched: gred: use correct backlog value in WRED mode (Ivan Vecera) [1445420]
-- [net] sched: Call skb_get_hash_perturb in sch_hhf (Ivan Vecera) [1445420]
-- [net] sched: act_connmark: don't zap skb->nfct (Ivan Vecera) [1445420]
-- [net] net_sched: move tp->root allocation into fw_init() (Ivan Vecera) [1445420]
-- [net] net_sched: move tp->root allocation into route4_init() (Ivan Vecera) [1445420]
-- [net] sched: export tc_connmark.h so it is uapi accessible (Ivan Vecera) [1445420]
-- [net] Remove state argument from skb_find_text() (Ivan Vecera) [1445420]
-- [net] ematch: Fix auto-loading of ematch modules. (Ivan Vecera) [1445420]
-- [net] gen_stats.c: Duplicate xstats buffer for later use (Ivan Vecera) [1445420]
-- [net] act_connmark: fix dependencies better (Ivan Vecera) [1445420]
-- [net] cls_basic: return from walking on match in basic_get (Ivan Vecera) [1445420]
-- [net] cls_bpf: fix auto generation of per list handles (Ivan Vecera) [1445420]
-- [net] cls_bpf: fix size mismatch on filter preparation (Ivan Vecera) [1445420]
-- [net] act_connmark: Add missing dependency on NF_CONNTRACK_MARK (Ivan Vecera) [1445420]
-- [net] sched: Introduce connmark action (Ivan Vecera) [1445420]
-- [net] sched: sch_teql: Remove unused function (Ivan Vecera) [1445420]
-- [net] skbuff: don't zero tc members when freeing skb (Ivan Vecera) [1445420]
-- [net] kconfig: use bool instead of boolean for type definition attributes (Ivan Vecera) [1445420]
-- [net] Update old iproute2 and Xen Remus links (Ivan Vecera) [1445420]
-- [net] tc_act: export uapi header file (Ivan Vecera) [1445420]
-- [net] sched: fix act file names in header comment (Ivan Vecera) [1445420]
-- [net] add rbnode to struct sk_buff (Ivan Vecera) [1445420]
-- [net] sch_pie: schedule the timer after all init succeed (Ivan Vecera) [1445420]
-- [net] net_sched: restore qdisc quota fairness limits after bulk dequeue (Ivan Vecera) [1445420]
-- [net] ematch: Fix early ending of inverted containers. (Ivan Vecera) [1445420]
-- [net] sched: implement qstat helper routines (Ivan Vecera) [1445420]
-- [net] ematch: Fix matching of inverted containers. (Ivan Vecera) [1445420]
-- [net] sched: fix compile warning in cls_u32 (Ivan Vecera) [1445420]
-- [net] sched: cls_u32: rcu can not be last node (Ivan Vecera) [1445420]
-- [net] sched: use __skb_queue_head_init() where applicable (Ivan Vecera) [1445420]
-- [net] net_sched: sfq: remove unused macro (Ivan Vecera) [1445420]
-- [net] netfilter: xt_string: Remove unnecessary initialization of struct ts_state (Ivan Vecera) [1445420]
-- [net] cbq: now_rt removal (Ivan Vecera) [1445420]
-- [net] cbq: incorrectly low bandwidth setting blocks limited traffic (Ivan Vecera) [1445420]
-- [net] net_sched: remove exceptional & on function name (Ivan Vecera) [1445420]
-- [net] net_sched: cancel nest attribute on failure in tcf_exts_dump() (Ivan Vecera) [1445420]
-- [net] em_canid: remove useless statements from em_canid_change (Ivan Vecera) [1445420]
-- [net] net_sched: drr: warn when qdisc is not work conserving (Ivan Vecera) [1445420]
-- [net] use the new API kvfree() (Ivan Vecera) [1445420]
-- [net] sch_hhf: fix comparison of qlen and limit (Ivan Vecera) [1445420]
-- [net] sched: lock imbalance in hhf qdisc (Ivan Vecera) [1445420]
-- [net] Allow tc changes in user namespaces (Ivan Vecera) [1445420]
-- [net] net_sched: return nla_nest_end() instead of skb->len (Ivan Vecera) [1445420]
-- [net] sch_tbf: Remove holes in struct tbf_sched_data. (Ivan Vecera) [1445420]
-- [net] sch_netem: replace magic numbers with enumerate in get_loss_clg (Ivan Vecera) [1445420]
-- [net] sch_netem: replace magic numbers with enumerate in GE model (Ivan Vecera) [1445420]
-- [net] sch_netem: change some func's param from "struct Qdisc *" to "struct netem_sched_data *" (Ivan Vecera) [1445420]
-- [net] sch_netem: return errcode before setting params (Ivan Vecera) [1445420]
-- [net] sched: Cleanup PIE comments (Ivan Vecera) [1445420]
-- [net] add and use skb_gso_transport_seglen() (Ivan Vecera) [1445420]
-- [net] sch_netem: replace magic numbers with enumerate (Ivan Vecera) [1445420]
-- [net] net_sched: act: pick a different type for act_xt (Ivan Vecera) [1445420]
-- [net] replace macros net_random and net_srandom with direct calls to prandom (Ivan Vecera) [1445420]
-- [net] hhf qdisc: fix jiffies-time conversion. (Ivan Vecera) [1445420]
-- [net] pkt_sched: PIE AQM scheme (Ivan Vecera) [1445420]
-- [net] sch: fix the typo in register_qdisc() (Ivan Vecera) [1445420]
-- [net] hhf: make qdisc ops static (Ivan Vecera) [1445420]
-- [net] sch_dsmark: use correct func name in print messages (Ivan Vecera) [1445420]
-- [net] sch_htb: use /* comments (Ivan Vecera) [1445420]
-- [net] net_sched: replace pr_warning with pr_warn (Ivan Vecera) [1445420]
-- [net] sch_cbq: remove unnecessary null pointer check (Ivan Vecera) [1445420]
-- [net] act_police: remove unnecessary null pointer check (Ivan Vecera) [1445420]
-- [net] qdisc: hhf: Heavy-Hitter Filter (HHF) qdisc (Ivan Vecera) [1445420]
-- [net] sch_htb: remove unnecessary NULL pointer judgment (Ivan Vecera) [1445420]
-- [net] net_sched: expand control flow of macro SKIP_NONLOCAL (Ivan Vecera) [1445420]
-- [net] net_sched: sfq: put sfq_unlink in a do - while loop (Ivan Vecera) [1445420]
-- [net] net_sched: add space around '>' and before '(' (Ivan Vecera) [1445420]
-- [net] net_sched: cls_bpf: use tabs to do indent (Ivan Vecera) [1445420]
-- [net] sched: htb: fix the calculation of quantum (Ivan Vecera) [1445420]
-- [net] Fix FSF address in file headers (Ivan Vecera) [1445420]
-- [net] include/net/: Fix FSF address in file headers (Ivan Vecera) [1445420]
-- [net] netem: fix loss 4 state model (Ivan Vecera) [1445420]
-- [net] netem: markov loss model transition fix (Ivan Vecera) [1445420]
-- [net] netem: free skb's in tree on reset (Ivan Vecera) [1445420]
-- [net] tc: export tc_defact.h to userspace (Ivan Vecera) [1445420]
-- [net] qdisc: basic classifier - remove unnecessary initialization (Ivan Vecera) [1445420]
-- [net] qdisc: meta return ENOMEM on alloc failure (Ivan Vecera) [1445420]
-- [net] netem: Introduce skb_orphan_partial() helper (Ivan Vecera) [1445420]
-- [net] pkt_sched: sch_qfq: remove forward declaration of qfq_update_agg_ts (Ivan Vecera) [1445420]
-- [net] pkt_sched: sch_qfq: improve efficiency of make_eligible (Ivan Vecera) [1445420]
-- [net] sched: Add __GFP_NOWARN to k.alloc calls with v.alloc fallbacks (Ivan Vecera) [1445420]
-- [net] kabi: prepare protection for struct Qdisc (Ivan Vecera) [1445420]
-- [net] kabi: remove RH_KABI_ macros from sch_generic.h (Ivan Vecera) [1445420]
-- [net] kabi: use different sch_generic.h for checksums generation (Ivan Vecera) [1445420]
-- [net] kabi: introduce shadow sch_generic.h for generating correct checksums (Ivan Vecera) [1445420]
-
-* Tue Nov 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-773.el7]
-- [fs] nfs: RPC_MAX_AUTH_SIZE is in bytes ("J. Bruce Fields") [1495321]
-- [fs] gfs2: Support negative atimes (Andreas Grunbacher) [1505849]
-- [fs] gfs2: Update ctime in setflags ioctl (Andreas Grunbacher) [1505822]
-- [fs] gfs2: Fix xattr fsync (Andreas Grunbacher) [1505552]
-- [fs] locks: Remove fl_nspid and use fs-specific l_pid for remote locks (Benjamin Coddington) [1449486]
-- [fs] locks: Filter /proc/locks output on proc pid ns (Benjamin Coddington) [1449486]
-- [fs] Make file credentials available to the seqfile interfaces (Benjamin Coddington) [1449486]
-- [fs] locks: Use allocation rather than the stack in fcntl_getlk() (Benjamin Coddington) [1449486]
-- [fs] locks: pass kernel struct flock to fcntl_getlk/setlk (Benjamin Coddington) [1449486]
-- [x86] perf/x86: Fix incorrect use of do_div() in NMI warning (Prarit Bhargava) [1501587]
-- [iommu] amd: don't sleep in invalid context (Jerry Snitselaar) [1505837]
-- [block] blktrace: Fix potential deadlock between delete & sysfs ops (Waiman Long) [1351904]
-- [video] video/logo: tidyup fb_logo_late_init initcall timing (Rob Clark) [1509707]
-- [video] video/logo: prevent use of logos after they have been freed (Rob Clark) [1509707]
-- [video] fbdev: Nuke FBINFO_MODULE (Rob Clark) [1509707]
-- [netdrv] xen-netfront, xen-netback: Use correct minimum MTU values (Mohammed Gamal) [1502554]
-- [netdrv] use core MTU range checking in virt drivers (Mohammed Gamal) [1502554 1497228]
-- [netdrv] cxgb3: Check and handle the dma mapping errors (Arjun Vynipadath) [1459387 953400]
-- [netdrv] amd: fix pci device ids (Prarit Bhargava) [1486046]
-- [kernel] module_device_table: fix some callsites (Prarit Bhargava) [1486046]
-- [kernel] module: fix types of device tables aliases (Prarit Bhargava) [1486046]
-- [kernel] module: remove MODULE_GENERIC_TABLE (Prarit Bhargava) [1486046]
-- [kernel] module: allow multiple calls to MODULE_DEVICE_TABLE() per module (Prarit Bhargava) [1486046]
-- [kernel] sched/topology: Fix memory leak in __sdt_alloc() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Simplify sched_group_mask() usage (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Rewrite get_group() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched: Use cached value of span instead of calling sched_domain_span() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched: Fix memory leakage in build_sched_groups() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Add a few comments (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Fix overlapping sched_group_capacity (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Small cleanup (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Fix overlapping sched_group_mask (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Remove FORCE_SD_OVERLAP (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Move comment about asymmetric node setups (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Optimize build_group_mask() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Verify the first group matches the child domain (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Simplify build_overlap_sched_groups() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Fix building of overlapping sched-groups (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/fair, cpumask: Export for_each_cpu_wrap() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched/topology: Refactor function build_overlap_sched_groups() (Lauro Ramos Venancio) [1373534]
-- [kernel] sched: Rename a misleading variable in build_overlap_sched_groups() (Lauro Ramos Venancio) [1373534]
-- [powerpc] uprobes: Implement arch_uretprobe_is_alive() (Gustavo Duarte) [1357435]
-- [security] capabilities: fix logic for effective root or real root (Richard Guy Briggs) [1465626]
-
-* Mon Nov 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-772.el7]
-- [md] raid5-ppl: check recovery_offset when performing ppl recovery (Nigel Croxon) [1455932]
-- [md] raid5-ppl: don't resync after rebuild (Nigel Croxon) [1455932]
-- [md] raid5: preserve STRIPE_ON_UNPLUG_LIST in break_stripe_batch_list (Nigel Croxon) [1455932]
-- [md] raid5: fix a race condition in stripe batch (Nigel Croxon) [1455932]
-- [md] bitmap: disable bitmap_resize for file-backed bitmaps (Nigel Croxon) [1455932]
-- [md] raid5-ppl: Recovery support for multiple partial partiy logs (Nigel Croxon) [1455932]
-- [md] Runtime support for multiple ppls (Nigel Croxon) [1455932]
-- [md] cleanup mddev flag clear for takeover (Nigel Croxon) [1455932]
-- [md] notify about new spare disk in the container (Nigel Croxon) [1455932]
-- [md] raid5: add thread_group worker async_tx_issue_pending_all (Nigel Croxon) [1455932]
-- [md] Raid5 should update rdev->sectors after reshape (Nigel Croxon) [1455932]
-- [md] don't use flush_signals in userspace processes (Nigel Croxon) [1455932]
-- [md] md0: optimize raid0 discard handling (Nigel Croxon) [1455932]
-- [md] don't return -EAGAIN in md_allow_write for external metadata arrays (Nigel Croxon) [1455932]
-- [md] raid5-ppl: use a single mempool for ppl_io_unit and header_page (Nigel Croxon) [1455932]
-- [md] raid5-ppl: partial parity calculation optimization (Nigel Croxon) [1455932]
-- [md] raid5-ppl: use resize_stripes() when enabling or disabling ppl (Nigel Croxon) [1455932]
-- [md] raid5: use consistency_policy to remove journal feature (Nigel Croxon) [1455932]
-- [md] raid5-ppl: move no_mem_stripes to struct ppl_conf (Nigel Croxon) [1455932]
-- [md] add raid4/5/6 journal mode switching API (Nigel Croxon) [1455932]
-- [md] raid1: stop using bi_phys_segment (Nigel Croxon) [1455932]
-- [md] raid1, raid10: move rXbio accounting closer to allocation (Nigel Croxon) [1455932]
-- [md] r5cache: disable write back for degraded array (Nigel Croxon) [1455932]
-- [md] revert "fix suspend/write deadlock" (Nigel Croxon) [1455932]
-- [md] revert "fix single core deadlock" (Nigel Croxon) [1455932]
-
-* Fri Nov 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-771.el7]
-- [scsi] megaraid_sas: driver version 07.702.06.00-rh2 (Tomas Henzl) [1506606]
-- [scsi] megaraid_sas: Resize MFA frame used for IOC INIT to 4k (Tomas Henzl) [1506606]
-- [scsi] megaraid_sas: Update current host time to FW during IOC Init (Tomas Henzl) [1506606]
-- [nvme] nvme-fc: remove NVME_FC_MAX_SEGMENTS (Ewan Milne) [1508065]
-- [nvme] nvme-fc: add support for duplicate_connect option (Ewan Milne) [1508065]
-- [nvme] nvme-rdma: add support for duplicate_connect option (Ewan Milne) [1508065]
-- [nvme] nvme-fabrics: fixup "nvme: add helper to compare options to controller" (Ewan Milne) [1508065]
-- [nvme] add helper to compare options to controller (Ewan Milne) [1508065]
-- [nvme] add duplicate_connect option (Ewan Milne) [1508065]
-- [nvme] nvme-fabrics: fixup "nvme: add hostid token to fabric options" (Ewan Milne) [1508065]
-- [nvme] add hostid token to fabric options (Ewan Milne) [1508065]
-- [nvme] nvme-fc: fix backporting error (Ewan Milne) [1508065]
-- [scsi] mpt3sas: Bump mpt3sas driver version to v16.100.00.00 (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Adding support for SAS3616 HBA device (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fix possibility of using invalid Enclosure Handle for SAS device after host reset (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Display chassis slot information of the drive (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Updated MPI headers to v2.00.48 (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fix IO error occurs on pulling out a drive from RAID1 volume created on two SATA drive (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fix removal and addition of vSES device during host reset (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Reduce memory footprint in kdump kernel (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fixed memory leaks in driver (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Processing of Cable Exception events (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: remove redundant copy_from_user in _ctl_getiocinfo (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: fix pr_info message continuation (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Fix memory allocation failure test in 'mpt3sas_base_attach()' (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: fix format overflow warning (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: Replace PCI pool old API (Tomas Henzl) [1458161]
-- [scsi] mpt3sas: remove redundant wmb (Tomas Henzl) [1458161]
-- [scsi] libfc: fix a deadlock in fc_rport_work (Govindarajulu Varadarajan) [1507105]
-- [scsi] libfc: Fixup disc_mutex handling (Govindarajulu Varadarajan) [1507105]
-- [scsi] fcoe: Stop fc_rport_priv structure leak (Govindarajulu Varadarajan) [1507105]
-- [scsi] libfc: Update rport reference counting (Govindarajulu Varadarajan) [1507105]
-
-* Fri Nov 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-770.el7]
-- [net] ipv6: remove from fib tree aged out RTF_CACHE dst (Paolo Abeni) [1412920]
-- [net] netfilter: allow logging from non-init namespaces (Stefano Brivio) [1506324]
-- [net] openvswitch: add ct_clear action (Eric Garver) [1501415]
-- [net] geneve: Fix function matching VNI and tunnel ID on big-endian (Jakub Sitnicki) [1467288]
-- [net] geneve: maximum value of VNI cannot be used (Jakub Sitnicki) [1467288]
-- [net] geneve: add missing rx stats accounting (Jakub Sitnicki) [1467288]
-- [net] geneve: fix needed_headroom and max_mtu for collect_metadata (Jakub Sitnicki) [1467288]
-- [net] geneve: fix fill_info when using collect_metadata (Jakub Sitnicki) [1467288]
-- [net] geneve: fix incorrect setting of UDP checksum flag (Jakub Sitnicki) [1467288]
-- [net] geneve: lock RCU on TX path (Jakub Sitnicki) [1467288]
-- [net] geneve: fix ip_hdr_len reserved for geneve6 tunnel (Jakub Sitnicki) [1467288]
-- [net] geneve: Optimize geneve device lookup (Jakub Sitnicki) [1467288]
-- [net] geneve: Remove redundant socket checks (Jakub Sitnicki) [1467288]
-- [net] geneve: Merge ipv4 and ipv6 geneve_build_skb() (Jakub Sitnicki) [1467288]
-- [net] geneve: Unify LWT and netdev handling (Jakub Sitnicki) [1467288]
-- [net] geneve: avoid using stale geneve socket (Jakub Sitnicki) [1467288]
-- [net] geneve: use core MTU range checking in core net infra (Jakub Sitnicki) [1467288]
-- [net] devlink: Prevent port_type_set() callback when it's not needed (Ivan Vecera) [1497105]
-- [net] devlink: rename devlink_eswitch_fill to devlink_nl_eswitch_fill (Eelco Chaudron) [1497105]
-- [net] devlink: use nla_put_failure goto label instead of out (Eelco Chaudron) [1497105]
-- [net] devlink: allow to fillup eswitch attrs even if mode_get op does not exist (Eelco Chaudron) [1497105]
-- [net] devlink: fix potential memort leak (Eelco Chaudron) [1497105]
-- [net] devlink: fix return value check in devlink_dpipe_header_put() (Eelco Chaudron) [1497105]
-- [net] devlink: Support for pipeline debug (dpipe) (Eelco Chaudron) [1497105]
-- [net] devlink: Add E-Switch encapsulation control (Eelco Chaudron) [1497105]
-- [net] devlink: fix the name of eswitch commands (Eelco Chaudron) [1497105]
-- [crypto] aesni: add generic gcm(aes) (Sabrina Dubroca) [1493112]
-- [crypto] scatterwalk: Remove unnecessary BUG in scatterwalk_start (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make AVX2 AES-GCM work with all valid auth_tag_len (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make AVX2 AES-GCM work with any aadlen (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make AVX AES-GCM work with all valid auth_tag_len (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make AVX AES-GCM work with any aadlen (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make non-AVX AES-GCM work with all valid auth_tag_len (Sabrina Dubroca) [1493112]
-- [crypto] aesni: make non-AVX AES-GCM work with any aadlen (Sabrina Dubroca) [1493112]
-- [crypto] aesni: fix build on x86 (32bit) (Sabrina Dubroca) [1493112]
-- [crypto] aesni: AVX and AVX2 version of AESNI-GCM encode and decode (Sabrina Dubroca) [1493112]
-- [net] vsock: always call vsock_init_tables() (Stefano Brivio) [1470203]
-- [tools] vsock: add tools/testing/vsock/vsock_diag_test (Stefano Brivio) [1470203]
-- [net] vsock: add sock_diag interface (Stefano Brivio) [1470203]
-- [net] vsock: use TCP state constants for sk_state (Stefano Brivio) [1470203]
-- [net] vsock: move __vsock_in_bound/connected_table() to af_vsock.h (Stefano Brivio) [1470203]
-- [net] vsock: export socket tables for sock_diag interface (Stefano Brivio) [1470203]
-
-* Fri Nov 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-769.el7]
-- [drm] upstream sync to v4.14-rc4 (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [sound] alsa: x86: Register multiple PCM devices for the LPE audio card (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [sound] drm/i915: Clean up the LPE audio platform data (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [sound] drm/i915: Remove hdmi_connected from LPE audio pdata (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [sound] drm/i915: Replace tmds_clock_speed and link_rate with just ls_clock (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [drm] upstream sync to v4.13 (Rob Clark) [1450372 1457050 1457047 1451447 1453043 1421907 1441862 1449539 1469438 1457374 1457377 1458281 1458625 1470097]
-- [kernel] workqueue: Provide destroy_delayed_work_on_stack() (Rob Clark) [1470097]
-- [lib] bitmap: add alignment offset for bitmap_find_next_zero_area() (Rob Clark) [1470097]
-- [x86] platform/intel/iosf_mbi: Add a PMIC bus access notifier (Rob Clark) [1470097]
-- [x86] platform/intel/iosf_mbi: Add a mutex for P-Unit access (Rob Clark) [1470097]
-- [x86] platform/iosf_mbi: Source cleanup (Rob Clark) [1470097]
-- [x86] platform/iosf_mbi: Move to dedicated folder (Rob Clark) [1470097]
-- [x86] platform/intel/iosf: Add debugfs config option for IOSF (Rob Clark) [1470097]
-- [x86] platform/intel/iosf: Add Braswell PCI ID (Rob Clark) [1470097]
-- [x86] iosf: Add debugfs support (Rob Clark) [1470097]
-- [kernel] workqueue: declare system_highpri_wq (Rob Clark) [1470097]
-- [kernel] linux/kernel.h: Add ALIGN_DOWN macro (Rob Clark) [1470097]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <uapi/linux/sched/types.h> (Rob Clark) [1470097]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/clock.h> (Rob Clark) [1470097]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/mm.h> (Rob Clark) [1470097]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/signal.h> (Rob Clark) [1470097]
-- [kernel] pci: Recognize Thunderbolt devices (Rob Clark) [1470097]
-- [kernel] locking/atomic, kref: Add kref_read() (Rob Clark) [1470097]
-- [dma] dma-buf: avoid scheduling on fence status query v2 (Rob Clark) [1478422]
-
-* Thu Nov 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-768.el7]
-- [acpi] ghes: invert logic for enabling GHES (Aristeu Rozanski) [1451916]
-- [edac] Fix PAGES_TO_MiB macro misuse (Aristeu Rozanski) [1451916]
-- [edac] ghes_edac: Remove redundant memory_type array (Aristeu Rozanski) [1451916]
-- [edac] ghes_edac: Use snprintf() to silence a static checker warning (Aristeu Rozanski) [1451916]
-- [x86] x86: kvm: use alternatives for VMCALL vs. VMMCALL if kernel text is read-only (Rafael Aquini) [1048983]
-- [x86] x86: cpufeature: Fix AMD AVIC bit (Rafael Aquini) [1048983]
-- [mm] configs: Enable DEBUG_PAGEALLOC on debug kernels (Waiman Long) [1481847]
-- [mm] s390: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] powerpc: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] x86/mm: Disable 1GB direct mappings when disabling 2MB mappings (Waiman Long) [1481847]
-- [mm] x86: also use debug_pagealloc_enabled() for free_init_pages (Waiman Long) [1481847]
-- [mm] x86: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] x86/mm/pat: Make split_page_count() check for empty levels to fix /proc/meminfo output (Waiman Long) [1481847]
-- [mm] sound: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] vmalloc: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] slub: query dynamic DEBUG_PAGEALLOC setting (Waiman Long) [1481847]
-- [mm] slab: clean up DEBUG_PAGEALLOC processing code (Waiman Long) [1481847]
-- [mm] debug_pagealloc: ask users for default setting of debug_pagealloc (Waiman Long) [1481847]
-- [mm] debug-pagealloc: make debug-pagealloc boottime configurable (Waiman Long) [1481847]
-- [mm] debug-pagealloc: prepare boottime configurable on/off (Waiman Long) [1481847]
-- [mm] page_ext: resurrect struct page extending code for debugging (Waiman Long) [1481847]
-- [mm] debug-pagealloc: cleanup page guard code (Waiman Long) [1481847]
-- [mm] debug-pagealloc: correct freepage accounting and order resetting (Waiman Long) [1481847]
-- [scsi] scsi_dh_alua: Fix memory leak in alua_bus_attach() (Waiman Long) [1448308]
-- [kernel] module: Fix memory leakage of module_ext structure (Waiman Long) [1448308]
-- [kernel] debugobjects: Make kmemleak ignore debug objects (Waiman Long) [1452625 1448308]
-- [kernel] s390/kexec: consolidate crash_map/unmap_reserved_pages() and arch_kexec_protect(unprotect)_crashkres() (Xunlei Pang) [1486982]
-- [kernel] kexec: do a cleanup for function kexec_load (Xunlei Pang) [1486982]
-- [kernel] kexec: make a pair of map/unmap reserved pages in error path (Xunlei Pang) [1486982]
-- [kernel] kexec: provide arch_kexec_protect(unprotect)_crashkres() (Xunlei Pang) [1486982]
-- [kernel] kexec: introduce a protection mechanism for the crashkernel reserved memory (Xunlei Pang) [1486982]
-- [kernel] ptrace: fix wait_on_bit(JOBCTL_TRAPPING_BIT) on big endian machines (Oleg Nesterov) [1481590]
-
-* Thu Nov 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-767.el7]
-- [fs] nfsv4.2: fix size storage for nfs42_proc_copy (Steve Dickson) [1468276]
-- [fs] nfsv4.1: Fix a race where CB_NOTIFY_LOCK fails to wake a waiter (Benjamin Coddington) [1476344]
-- [fs] xfs: Capture state of the right inode in xfs_iflush_done (Carlos Maiolino) [1352385]
-- [fs] xfs: Properly retry failed inode items in case of error during buffer writeback (Carlos Maiolino) [1352385]
-- [fs] xfs: Add infrastructure needed for error propagation during buffer IO failure (Carlos Maiolino) [1352385]
-- [fs] xfs: remove xfs_trans_ail_delete_bulk (Carlos Maiolino) [1352385]
-- [fs] smb3: Work around mount failure when using SMB3 dialect to Macs (Leif Sahlberg) [1506433]
-- [fs] Set unicode flag on cifs echo request to avoid Mac error (Leif Sahlberg) [1506433]
-- [mm] filemap: fix mapping->nrpages double accounting in fuse (Waiman Long) [1493455]
-- [mm] Using BUG_ON() as an assert() is _never_ acceptable (Waiman Long) [1493455]
-- [mm] fix deadlock when using dm-thin on loopback device (Mikulas Patocka) [1382654]
-- [mm] memcg, slab: never try to merge memcg caches (Aristeu Rozanski) [1442618]
-- [x86] boot/kaslr: Work around firmware bugs by excluding EFI_BOOT_SERVICES_* and EFI_LOADER_* from KASLR's choice (Kazuhito Hagio) [1458129]
-- [net] netfilter: x_tables: don't use seqlock when fetching old counters (Florian Westphal) [1503702]
-- [net] netfilter: x_tables: make xt_replace_table wait until old rules are not used anymore (Florian Westphal) [1503702]
-- [edac] edac, skx_edac: Fix non static symbol warnings (Aristeu Rozanski) [1482253]
-- [edac] edac, ie31200: Add Intel Kaby Lake CPU support (Aristeu Rozanski) [1482253]
-- [edac] edac, ie31200_edac: Add Skylake support (Aristeu Rozanski) [1482253]
-- [tools] perf scripting python: Add ppc64le to audit uname list (Gustavo Duarte) [1487498]
-- [sound] alsa: hda: Abort capability probe on invalid capability (Jaroslav Kysela) [1456631]
-- [sound] alsa: hda: Abort capability probe at invalid register read (Jaroslav Kysela) [1456631]
-- [virtio] virtio-balloon: coding format cleanup (David Hildenbrand) [1503473]
-- [virtio] virtio-balloon: deflate via a page list (David Hildenbrand) [1503473]
-- [virtio] virtio_balloon: disable VIOMMU support (David Hildenbrand) [1503473]
-- [virtio] allow drivers to validate features (David Hildenbrand) [1503473]
-- [netdrv] aquantia: Bad udp rate on default interrupt coalescing (David Arcari) [1505539]
-- [netdrv] aquantia: Enable coalescing management via ethtool interface (David Arcari) [1505539]
-- [netdrv] aquantia: mmio unmap was not performed on driver removal (David Arcari) [1505539]
-- [netdrv] aquantia: Fixed transient link up/down/up notification (David Arcari) [1505539]
-- [netdrv] aquantia: Add queue restarts stats counter (David Arcari) [1505539]
-- [netdrv] aquantia: Reset nic statistics on interface up/down (David Arcari) [1505539]
-- [kernel] sched: Move h_load calculation to task_h_load() (Lauro Ramos Venancio) [1460641]
-- [powerpc] mm/hugetlb: Filter out hugepage size not supported by page table layout (Steve Best) [1495748]
-
-* Wed Nov 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-766.el7]
-- [hid] wacom: Always increment hdev refcount within wacom_get_hdev_data (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Clear ABS_MISC when tool leaves proximity (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Send MSC_SERIAL and ABS_MISC when leaving prox (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Correct coordinate system of touchring and pen twist (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Properly report negative values from Intuos Pro 2 Bluetooth (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: leds: Dont try to control the EKRs read-only LEDs (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: bits shifted too much for 9th and 10th buttons (Aristeu Rozanski) [1475409 1462363]
-- [hid] hid_wacom: revert hid_wacom: temporaly disable power_supply usage from driver (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Do not completely map WACOM_HID_WD_TOUCHRINGSTATUS usage (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Improve generic name generation (Aristeu Rozanski) [1475409 1462363]
-- [hid] introduce hid_is_using_ll_driver (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Remove comparison of u8 mode with zero and simplify (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: fix mistake in printk (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Refactor generic battery handling (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Add ability to provide explicit battery status info (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Report AES battery information (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Ignore HID_DG_BATTERYSTRENTH == 0 (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Scale battery capacity measurements to percentages (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Have wacom_tpc_irq guard against possible NULL dereference (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Override incorrect logical maximum contact identifier (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Treat HID_DG_TOOLSERIALNUMBER as unsigned (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Move wacom_remote_irq and wacom_remote_status_irq (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: sync pad events only for actual packets (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Bamboo One Medium does not have touch (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: call _query_tablet_data() for BAMBOO_TOUCH (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Dont add ghost interface as shared data (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Wacom mouse is only provided for opaque tablets (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: dont manually release resources for the EKR (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Correct Intuos Pro 2 resolution (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: support touch on/off softkey (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: add mode change touch key (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: add 3 tablet touch keys (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Bluetooth IRQ for Intuos Pro should handle prox/range (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: dont apply generic settings to old devices (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Fix poor prox handling in wacom_pl_irq (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: support generic touch switch (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: add vendor defined touch (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: add support for touchring (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: remove input_event_flag (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Support 2nd-gen Intuos Pros Bluetooth classic interface (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Move WAC_CMD_* into wacom_wac.h (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Enable HID_GENERIC codepath for Bluetooth devices (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: do not attempt to switch mode while in probe (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: remove warning while disconnecting devices (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: release the resources before leaving despite devm (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Fix sibling detection regression (Aristeu Rozanski) [1475409 1462363]
-- [hid] remove use of DRIVER_LICENSE (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Dont sync input on empty input packets (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Pad supports more than buttons (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Send data only when the interface is defined (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Dont return a value for wacom_wac_event (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Declare tool ID 0x84a as an Intuos eraser (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Dont clear bits unintentionally (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Extend pad support (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for battery status on pen and pad interfaces (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Introduce pad support (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for sensor offsets (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Fix sensor outbounds and redefine as offsets from each edge (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Support tool ID and additional tool types (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Read and internally use corrected Intuos tool IDs (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for vendor-defined "Sense" usage (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for vendor-defined "Fingerwheel" usage (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for vendor-defined "Distance" usage (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Support and use Custom HID mode and usages (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Add support for height, tilt, and twist usages (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: generic: Strip off excessive name prefixing (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Detect and correct descriptors missing HID_DG_BARRELSWITCH2 (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Refactor button-to-key translation into function (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Have WACOM_PEN_FIELD and WACOM_FINGER_FIELD recgonize more fields (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: Update vendor-defined usage names to better match standards (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: fix return value of get_property (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Fix possible NULL pointer dereference on early uevent (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Fix NULL pointer dereference during bq27x00_battery probe (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Increment power supply use counter when obtaining references (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Add power_supply_put for decrementing device reference counter (Aristeu Rozanski) [1475409 1462363]
-- [hid] wacom: switch battery to devres (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Change ownership from driver to core (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Add API for safe access of power supply function attrs (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Move run-time configuration to separate structure (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Add driver private data (Aristeu Rozanski) [1475409 1462363]
-- [hid] power_supply: Move of_node out of the #ifdef CONFIG_OF (Aristeu Rozanski) [1475409 1462363]
-
-* Tue Oct 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-765.el7]
-- [s390] hwrng: remember rng chosen by user (Hendrik Brueckner) [1375266]
-- [s390] hwrng: use rng source with best quality (Hendrik Brueckner) [1375266]
-- [s390] trng: Introduce s390 TRNG device driver (Hendrik Brueckner) [1375266]
-- [s390] crypto: Provide s390 specific arch random functionality (Hendrik Brueckner) [1375266]
-- [s390] crypto: Add new subfunctions to the cpacf PRNO function (Hendrik Brueckner) [1375266]
-- [s390] crypto: Renaming PPNO to PRNO (Hendrik Brueckner) [1375266]
-- [s390] qeth: use diag26c to get MAC address on L2 (Hendrik Brueckner) [1479463]
-- [s390] diag: add diag26c support (Hendrik Brueckner) [1479463]
-- [s390] qeth: no ETH header for outbound AF_IUCV (Hendrik Brueckner) [1479461]
-- [s390] qeth: size calculation outbound buffers (Hendrik Brueckner) [1479461]
-- [s390] qdio: clear DSCI prior to scanning multiple input queues (Hendrik Brueckner) [1467954]
-- [s390] pageattr: handle numpages parameter correctly (Hendrik Brueckner) [1489742]
-- [s390] pageattr: avoid unnecessary page table splitting (Hendrik Brueckner) [1489742]
-- [s390] add no-execute support (Hendrik Brueckner) [1489742]
-- [s390] mm: align swapper_pg_dir to 16k (Hendrik Brueckner) [1489742]
-- [s390] vmem: simplify vmem code for read-only mappings (Hendrik Brueckner) [1489742]
-- [s390] pageattr: allow kernel page table splitting (Hendrik Brueckner) [1489742]
-- [s390] pgtable: make pmd and pud helper functions available (Hendrik Brueckner) [1489742]
-- [s390] mm: always use PAGE_KERNEL when mapping pages (Hendrik Brueckner) [1489742]
-- [s390] vmem: introduce and use SEGMENT_KERNEL and REGION3_KERNEL (Hendrik Brueckner) [1489742]
-- [s390] vmem: align segment and region tables to 16k (Hendrik Brueckner) [1489742]
-- [s390] pgtable: introduce and use generic csp inline asm (Hendrik Brueckner) [1489742]
-- [s390] pageattr: do a single TLB flush for change_page_attr (Hendrik Brueckner) [1489742]
-- [s390] mm: make use of ipte range facility (Hendrik Brueckner) [1489742]
-- [s390] mm: remove change bit override support (Hendrik Brueckner) [1489742]
-- [s390] mm: implement dirty bits for large segment table entries (Hendrik Brueckner) [1489742]
-- [s390] s390/ptrace: guarded storage regset for the current task (Hendrik Brueckner) [1375261]
-- [s390] s390/gs: add regset for the guarded storage broadcast control block (Hendrik Brueckner) [1375261]
-- [s390] add a system call for guarded storage (Hendrik Brueckner) [1375261]
-- [s390] s390/3270: fix allocation of tty3270_screen structure (Daniel Vacek) [1495587]
-- [s390] s390/3270: fix use after free of tty3270_screen structure (Daniel Vacek) [1495587]
-- [s390] s390/3270: fix return value check in tty3270_resize_work() (Daniel Vacek) [1495587]
-
-* Tue Oct 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-764.el7]
-- [net] netfilter: ipset: pernet ops must be unregistered last (Florian Westphal) [1505215]
-- [net] ipvs: fix ipv6 route unreach panic (Davide Caratti) [1503766]
-- [net] macsec: add genl family module alias (Sabrina Dubroca) [1467335]
-- [net] macsec: double accounting of dropped rx/tx packets (Sabrina Dubroca) [1467335]
-- [net] macsec: fix validation failed in asynchronous operation. (Sabrina Dubroca) [1467335]
-- [net] macsec: remove first zero and add attribute name in comments (Sabrina Dubroca) [1467335]
-- [net] macsec: Fix header length if SCI is added if explicitly disabled (Sabrina Dubroca) [1467335]
-- [net] macsec: use core MTU range checking in core net infra (Sabrina Dubroca) [1467335]
-- [net] macsec: set network devtype (Sabrina Dubroca) [1467335]
-- [net] macsec: enable GRO and RPS on macsec devices (Sabrina Dubroca) [1467335]
-- [net] gro_cells: gro_cells_receive now return error code (Sabrina Dubroca) [1467335]
-- [net] bridge: switchdev: Use an helper to clear forward mark (Ivan Vecera) [1500896]
-- [net] bridge: switchdev: Clear forward mark when transmitting packet (Ivan Vecera) [1500896]
-- [net] bridge: add tracepoint in br_fdb_update (Ivan Vecera) [1500896]
-- [net] bridge: fdb add and delete tracepoints (Ivan Vecera) [1500896]
-- [net] bridge: check for null fdb->dst before notifying switchdev drivers (Ivan Vecera) [1500896]
-- [net] bridge: fix dest lookup when vlan proto doesn't match (Ivan Vecera) [1500896]
-- [net] bridge: mdb: fix leak on complete_info ptr on fail path (Ivan Vecera) [1500896]
-- [net] bridge: allow ext learned entries to change ports (Ivan Vecera) [1500896]
-- [net] bridge: constify attribute_group structures. (Ivan Vecera) [1500896]
-- [net] bridge: Receive notification about successful FDB offload (Ivan Vecera) [1500896]
-- [net] bridge: Add support for notifying devices about FDB add/del (Ivan Vecera) [1500896]
-- [net] switchdev: Change notifier chain to be atomic (Ivan Vecera) [1500896]
-- [net] bridge: Add support for calling FDB external learning under rcu (Ivan Vecera) [1500896]
-- [net] bridge: Add support for offloading port attributes (Ivan Vecera) [1500896]
-- [net] switchdev: Add support for querying supported bridge flags by hardware (Ivan Vecera) [1500896]
-- [net] bridge: fix a null pointer dereference in br_afspec (Ivan Vecera) [1500896]
-- [net] bridge: Export multicast enabled state (Ivan Vecera) [1500896]
-- [net] bridge: Export VLAN filtering state (Ivan Vecera) [1500896]
-- [net] bridge: netlink: account for IFLA_BRPORT_{B, M}CAST_FLOOD size and policy (Ivan Vecera) [1500896]
-- [net] bridge: Fix improper taking over HW learned FDB (Ivan Vecera) [1500896]
-- [net] bridge: add per-port broadcast flood flag (Ivan Vecera) [1500896]
-- [net] bridge: notify on hw fdb takeover (Ivan Vecera) [1500896]
-- [net] bridge: allow to add externally learned entries from user-space (Ivan Vecera) [1500896]
-- [net] bridge: allow SW learn to take over HW fdb entries (Ivan Vecera) [1500896]
-- [net] bridge: resolve a false alarm of lockdep (Ivan Vecera) [1500896]
-- [net] bridge: Fix error path in nbp_vlan_init (Ivan Vecera) [1500896]
-- [net] bridge: don't indicate expiry on NTF_EXT_LEARNED fdb entries (Ivan Vecera) [1500896]
-- [net] bridge: vlan_tunnel: explicitly reset metadata attrs to NULL on failure (Ivan Vecera) [1500896]
-- [net] bridge: fdb: converge fdb_delete_by functions into one (Ivan Vecera) [1500896]
-- [net] bridge: fdb: add proper lock checks in searching functions (Ivan Vecera) [1500896]
-- [net] bridge: fdb: converge fdb searching functions into one (Ivan Vecera) [1500896]
-- [net] switchdev: bridge: Offload mc router ports (Ivan Vecera) [1500896]
-- [net] bridge: mcast: Merge the mc router ports deletions to one function (Ivan Vecera) [1500896]
-- [net] switchdev: bridge: Offload multicast disabled (Ivan Vecera) [1500896]
-- [net] bridge: vlan tunnel id info range fill size calc cleanups (Ivan Vecera) [1500896]
-- [net] bridge: avoid unnecessary read of jiffies (Ivan Vecera) [1500896]
-- [net] bridge: remove unnecessary check for vtbegin in br_fill_vlan_tinfo_range (Ivan Vecera) [1500896]
-- [net] bridge: tunnel: fix attribute checks in br_parse_vlan_tunnel_info (Ivan Vecera) [1500896]
-- [net] bridge: remove redundant check to see if err is set (Ivan Vecera) [1500896]
-- [net] bridge: fdb: write to used and updated at most once per jiffy (Ivan Vecera) [1500896]
-- [net] bridge: move write-heavy fdb members in their own cache line (Ivan Vecera) [1500896]
-- [net] bridge: move to workqueue gc (Ivan Vecera) [1500896]
-- [net] bridge: modify bridge and port to have often accessed fields in one cache line (Ivan Vecera) [1500896]
-- [net] bridge: vlan dst_metadata hooks in ingress and egress paths (Ivan Vecera) [1500896]
-- [net] bridge: per vlan dst_metadata netlink support (Ivan Vecera) [1500896]
-- [net] bridge: uapi: add per vlan tunnel info (Ivan Vecera) [1500896]
-- [net] bridge: move maybe_deliver_addr() inside #ifdef (Ivan Vecera) [1500896]
-- [net] bridge: multicast to unicast (Ivan Vecera) [1500896]
-- [net] bridge: sparse fixes in br_ip6_multicast_alloc_query() (Ivan Vecera) [1500896]
-- [net] bridge: Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Ivan Vecera) [1500896]
-- [net] bridge: shorten ageing time on topology change (Ivan Vecera) [1500896]
-- [net] bridge: add helper to set topology change (Ivan Vecera) [1500896]
-- [net] bridge: add helper to offload ageing time (Ivan Vecera) [1500896]
-- [net] bridge: mcast: add MLDv2 querier support (Ivan Vecera) [1500896]
-- [net] bridge: mcast: add IGMPv3 query support (Ivan Vecera) [1500896]
-- [net] switchdev: Remove redundant variable (Ivan Vecera) [1500896]
-- [net] bridge: use core MTU range checking in core net infra (Ivan Vecera) [1500896]
-- [net] netfilter: nf_tables: set pktinfo->thoff at AH header if found (Stefano Brivio) [1358624]
-- [net] nf_log: Report attempt to load conflicting logger (Stefano Brivio) [1349358]
-- [net] arp: fixed -Wuninitialized compiler warning (Eric Garver) [1450205]
-- [net] arp: always override existing neigh entries with gratuitous ARP (Eric Garver) [1450205]
-- [net] arp: postpone addr_type calculation to as late as possible (Eric Garver) [1450205]
-- [net] arp: decompose is_garp logic into a separate function (Eric Garver) [1450205]
-- [net] arp: fixed error in a comment (Eric Garver) [1450205]
-- [net] neighbour: update neigh timestamps iff update is effective (Eric Garver) [1450205]
-- [net] arp: honour gratuitous ARP _replies_ (Eric Garver) [1450205]
-- [net] ipv4: arp: update neighbour address when a gratuitous arp is received and arp_accept is set (Eric Garver) [1450205]
-- [net] vxlan: factor out VXLAN-GPE next protocol (Jiri Benc) [1467280]
-- [net] ether: add NSH ethertype (Jiri Benc) [1467280]
-- [net] vxlan: fix remcsum when GRO on and CHECKSUM_PARTIAL boundary is outer UDP (Jiri Benc) [1467280]
-- [net] geneve/vxlan: offload ports on register/unregister events (Jiri Benc) [1308630 1467280]
-- [net] geneve/vxlan: add support for NETDEV_UDP_TUNNEL_DROP_INFO (Jiri Benc) [1308630 1467280]
-- [net] call udp_tunnel_get_rx_info when NETIF_F_RX_UDP_TUNNEL_PORT is toggled (Jiri Benc) [1308630 1467280]
-- [net] add infrastructure to un-offload UDP tunnel port (Jiri Benc) [1308630 1467280]
-- [net] check UDP tunnel RX port offload feature before calling tunnel ndo ndo (Jiri Benc) [1308630 1467280]
-- [net] add new netdevice feature for offload of RX port for UDP tunnels (Jiri Benc) [1308630 1467280]
-- [net] vxlan: correctly set vxlan->net when creating the device in a netns (Jiri Benc) [1467280]
-- [net] vxlan: fix incorrect nlattr access in MTU check (Jiri Benc) [1467280]
-- [net] vxlan: allow multiple VXLANs with same VNI for IPv6 link-local addresses (Jiri Benc) [1467280]
-- [net] vxlan: fix snooping for link-local IPv6 addresses (Jiri Benc) [1467280]
-- [net] vxlan: check valid combinations of address scopes (Jiri Benc) [1467280]
-- [net] vxlan: improve validation of address family configuration (Jiri Benc) [1467280]
-- [net] vxlan: get rid of redundant vxlan_dev.flags (Jiri Benc) [1467280]
-- [net] vxlan: refactor verification and application of configuration (Jiri Benc) [1467280]
-- [net] vxlan: dont migrate permanent fdb entries during learn (Jiri Benc) [1467280]
-- [net] vxlan: use a more suitable function when assigning NULL (Jiri Benc) [1467280]
-- [net] vxlan: fix ND proxy when skb doesn't have transport header offset (Jiri Benc) [1467280]
-- [net] vxlan: vxlan dev should inherit lowerdev's gso_max_size (Jiri Benc) [1467280]
-- [net] vxlan: don't age NTF_EXT_LEARNED fdb entries (Jiri Benc) [1467280]
-- [net] vxlan: fix ovs support (Jiri Benc) [1467280]
-- [net] vxlan: use appropriate family on L3 miss (Jiri Benc) [1467280]
-- [net] vxlan: lock RCU on TX path (Jiri Benc) [1467280]
-- [net] vxlan: don't allow overwrite of config src addr (Jiri Benc) [1467280]
-- [net] vxlan: correctly validate VXLAN ID against VXLAN_N_VID (Jiri Benc) [1467280]
-- [net] vxlan: remove unused variable saddr in neigh_reduce (Jiri Benc) [1467280]
-- [net] vxlan: add changelink support (Jiri Benc) [1467280]
-- [net] vxlan: remove vni zero check and drop for COLLECT_METADATA (Jiri Benc) [1467280]
-- [net] vxlan: support fdb and learning in COLLECT_METADATA mode (Jiri Benc) [1467280]
-- [net] ip_tunnels: new IP_TUNNEL_INFO_BRIDGE flag for ip_tunnel_info mode (Jiri Benc) [1467280]
-- [net] vxlan: do not age static remote mac entries (Jiri Benc) [1467280]
-- [net] vxlan: don't flush static fdb entries on admin down (Jiri Benc) [1467280]
-- [net] vxlan: preserve type of dst_port parm for encap_bypass_if_local() (Jiri Benc) [1467280]
-- [net] vxlan: fix byte order of vxlan-gpe port number (Jiri Benc) [1467280]
-- [net] vxlan: Set ports in flow key when doing route lookups (Jiri Benc) [1467280]
-- [net] vxlan: fix a potential issue when create a new vxlan fdb entry (Jiri Benc) [1467280]
-- [net] vxlan: Fix uninitialized variable warnings (Jiri Benc) [1467280]
-- [net] vxlan: remove unsed vxlan_dev_dst_port() (Jiri Benc) [1467280]
-- [net] vxlan: simplify vxlan xmit (Jiri Benc) [1467280]
-- [net] vxlan: simplify RTF_LOCAL handling (Jiri Benc) [1467280]
-- [net] vxlan: improve vxlan route lookup checks (Jiri Benc) [1467280]
-- [net] vxlan: simplify exception handling (Jiri Benc) [1467280]
-- [net] vxlan: avoid checking socket multiple times (Jiri Benc) [1467280]
-- [net] vxlan: avoid vlan processing in vxlan device (Jiri Benc) [1467280]
-- [net] vxlan: hide unused local variable (Jiri Benc) [1467280]
-- [net] vxlan: avoid using stale vxlan socket (Jiri Benc) [1467280]
-- [net] vxlan: use core MTU range checking in core net infra (Jiri Benc) [1467280]
-- [net] vxlan: Update tx_errors statistics if vxlan_build_skb return err (Jiri Benc) [1467280]
-- [net] vxlan: call peernet2id() in fdb notification (Jiri Benc) [1467280]
-- [net] vxlan: remove the useless header file protocol.h (Jiri Benc) [1467280]
-- [net] vxlan: lwt: Fix vxlan local traffic (Jiri Benc) [1467280]
-- [net] vxlan: lwt: Use source ip address during route lookup (Jiri Benc) [1467280]
-- [net] fixup comments after "Future-proof tunnel offload handlers" (Jiri Benc) [1467280]
-- [net] vxlan/geneve: Remove deprecated tunnel specific UDP offload functions (Jiri Benc) [1467280]
-- [netdrv] fm10k: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Jiri Benc) [1467280]
-- [net] ipv6: fix net.ipv6.conf.all.accept_dad behaviour for real (Matteo Croce) [1334439]
-- [net] ipv6: fix net.ipv6.conf.all interface DAD handlers (Matteo Croce) [1334439]
-- [net] ipv6: addrconf: Fix recursive spin lock call (Matteo Croce) [1334439]
-- [net] ipv6: Add a sysctl to make optimistic addresses useful candidates (Matteo Croce) [1334439]
-
-* Mon Oct 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-763.el7]
-- [hid] i2c-hid: Limit reads to wMaxInputLength bytes for input events (Benjamin Tissoires) [1452237]
-- [hid] multitouch: do not blindly set EV_KEY or EV_ABS bits (Benjamin Tissoires) [1452237]
-- [hid] multitouch: optimize the sticky fingers timer (Benjamin Tissoires) [1452237]
-- [hid] multitouch: fix rare Win 8 cases when the touch up event gets missing (Benjamin Tissoires) [1452237]
-- [hid] multitouch: use BIT macro (Benjamin Tissoires) [1452237]
-- [hid] multitouch: Support PTP Stick and Touchpad device (Benjamin Tissoires) [1452237]
-- [hid] multitouch: change for touch height/width (Benjamin Tissoires) [1452237]
-- [hid] multitouch: fix LG Melfas touchscreen (Benjamin Tissoires) [1452237]
-- [hid] multitouch: do not retrieve all reports for all devices (Benjamin Tissoires) [1452237]
-- [hid] multitouch: handle external buttons for Precision Touchpads (Benjamin Tissoires) [1452237]
-- [hid] multitouch: enable palm rejection for Windows Precision Touchpad (Benjamin Tissoires) [1452237]
-- [hid] input: automatically set EV_ABS bit in input_set_abs_params (Benjamin Tissoires) [1452237]
-- [hid] revert "hid: multitouch: enable palm rejection if device implements confidence usage" (Benjamin Tissoires) [1452237]
-- [hid] multitouch: Add MT_QUIRK_NOT_SEEN_MEANS_UP to Surface Pro 3 (Benjamin Tissoires) [1452237]
-- [hid] alps: fix multitouch cursor issue (Benjamin Tissoires) [1489630]
-- [hid] alps: fix error return code in alps_input_configured() (Benjamin Tissoires) [1489630]
-- [hid] alps: fix stick device not working after resume (Benjamin Tissoires) [1489630]
-- [hid] alps: Fix memory leak (Benjamin Tissoires) [1489630]
-- [hid] alps: a few cleanups (Benjamin Tissoires) [1489630]
-- [hid] alps: pass correct sizes to hid_hw_raw_request() (Benjamin Tissoires) [1489630]
-- [hid] alps: struct u1_dev *priv is internal to the driver (Benjamin Tissoires) [1489630]
-- [hid] alps: match alps devices in core (Benjamin Tissoires) [1489630]
-- [hid] add Alps I2C HID Touchpad-Stick support (Benjamin Tissoires) [1489630]
-- [hid] i2c: Call acpi_device_fix_up_power for ACPI-enumerated devices (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: move header file out of I2C realm (Benjamin Tissoires) [1452237 1489630]
-- [hid] remove initial reading of reports at connect (Benjamin Tissoires) [1411429]
-- [hid] i2c-hid: Add sleep between POWER ON and RESET (Benjamin Tissoires) [1452237 1489630]
-- [hid] fix missing irq field (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: fix build (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Disable IRQ before freeing buffers (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: force the IRQ level trigger only when not set (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: add a simple quirk to fix device defects (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: set power sleep before shutdown (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c_hid: enable i2c-hid devices to suspend/resume asynchronously (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: fix OOB write in i2c_hid_set_or_send_report() (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Add hid-over-i2c name to i2c id table (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Prevent sending reports from racing with device reset (Benjamin Tissoires) [1452237 1489630]
-- [hid] Drop owner assignment from i2c_driver (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Fill in physical device providing HID functionality (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Do not set the ACPI companion field in the HID device (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: fix harmless test_bit() issue (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: The interrupt should be level sensitive (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Do not free buffers in i2c_hid_stop() (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: prevent buffer overflow in early IRQ (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: fix race condition reading reports (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: print the correct data in dbg msg (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: hid report descriptor retrieval changes (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: don't push static constants on stack for *ph (Benjamin Tissoires) [1452237 1489630]
-- [hid] acpi / i2c-hid: replace open-coded _DSM code with helper functions (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: Stop querying for init reports (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: convert acpi_evaluate_object() to acpi_evaluate_integer() (Benjamin Tissoires) [1452237 1489630]
-- [hid] i2c-hid: use correct type for ACPI _DSM parameter (Benjamin Tissoires) [1452237 1489630]
-
-* Mon Oct 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-762.el7]
-- [x86] perf/x86/msr: Merge fixes (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Add missing Intel models (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Use Intel family macros for MSR events code (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Fix SMI overflow (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Add AMD PTSC (Performance Time-Stamp Counter) support (Jiri Olsa) [1457458]
-- [x86] perf/x86: Move perf_event_msr.c .............. => x86/events/msr.c (Jiri Olsa) [1457458]
-- [x86] arch/x86/kernel/cpu/perf_event_msr.c: use sign_extend64() for sign extension (Jiri Olsa) [1457458]
-- [x86] perf/x86: Change test_aperfmperf() and test_intel() to static (Jiri Olsa) [1457458]
-- [x86] perf/x86/msr: Fix the MSR driver build (Jiri Olsa) [1457458]
-- [x86] perf/x86: Fix MSR PMU driver (Jiri Olsa) [1457458]
-- [x86] perf/x86: Add an MSR PMU driver (Jiri Olsa) [1457458]
-- [x86] perf stat: Add support to measure SMI cost (Jiri Olsa) [1457458]
-- [x86] tools lib api fs: Add sysfs__write_int function (Jiri Olsa) [1457458]
-- [x86] perf/x86: Add sysfs entry to freeze counters on SMI (Jiri Olsa) [1457458]
-- [tools] perf tests attr: Make hw events optional (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix group stat tests (Jiri Olsa) [1308907]
-- [tools] perf test attr: Fix ignored test case result (Jiri Olsa) [1308907]
-- [tools] perf test attr: Fix python error on empty result (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix task term values (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Add optional term (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix stat sample_type setup (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix precise_ip setup (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix sample_period setup (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix cpu test disabled term setup (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Add proper return values (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix no-delay test (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Fix record dwarf test (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Add 1s for exclude_kernel and task base bits (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Rename compare_data to data_equal (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Make compare_data global (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Add test_attr__ready function (Jiri Olsa) [1308907]
-- [tools] perf tests attr: Do not store failed events (Jiri Olsa) [1308907]
-- [tools] perf tests: Add platform dependency to test 15 (Jiri Olsa) [1308907]
-
-* Mon Oct 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-761.el7]
-- [block] fix warning when I/O elevator is changed as request_queue is being removed (Ming Lei) [1492441]
-- [block] warn if sharing request queue across gendisks (Ming Lei) [1492441]
-- [block] move .issue_stat from request to request_aux (Ming Lei) [1458104]
-- [block] disable blk-stat (Ming Lei) [1458104]
-- [block] blk-mq: use rq_aux()->internal_tag (Ming Lei) [1458104]
-- [block] blk-mq: introduce request_aux (Ming Lei) [1458104]
-- [block] blk-tag: don't touch .internal_tag (Ming Lei) [1458104]
-- [block] configs: add CONFIG_BLK_DEBUG_FS (Ming Lei) [1458104]
-- [block] configs: add CONFIG_MQ_IOSCHED_KYBER (Ming Lei) [1458104]
-- [block] configs: add CONFIG_MQ_IOSCHED_DEADLINE (Ming Lei) [1458104]
-- [block] blk-mq-sched: mark_tech_preview on mq-deadline and kyber (Ming Lei) [1458104]
-- [block] blk-mq: fix another kabi warning (Ming Lei) [1458104]
-- [block] blk-mq: fix kabi warning (Ming Lei) [1458104]
-- [block] avoid to break kabi for blk-mq io scheduler backporting (Ming Lei) [1458104]
-- [block] call elevator callback via aux->ops (Ming Lei) [1458104]
-- [block] kyber: pass mq callback to aux->ops.mq (Ming Lei) [1458104]
-- [block] mq-deadline: pass mq callback to aux->ops.mq (Ming Lei) [1458104]
-- [block] cfq: pass new callback to aux->ops.sq (Ming Lei) [1458104]
-- [block] introduce elevator_type_aux for fixing kabi violation (Ming Lei) [1458104]
-- [block] blk-mq: use RH_KABI_EXTEND for sched_data and sched_tags (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: remove poll_stat (Ming Lei) [1458104]
-- [block] scsi_error: fix nasty allocating request on stack (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: fix device sched directory for default scheduler (Ming Lei) [1458104]
-- [block] mq-deadline: add debugfs attributes (Ming Lei) [1458104]
-- [block] kyber: add debugfs attributes (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: allow schedulers to register debugfs attributes (Ming Lei) [1458104]
-- [block] blk-mq: untangle debugfs and sysfs (Ming Lei) [1458104]
-- [block] blk-mq: move debugfs declarations to a separate header file (Ming Lei) [1458104]
-- [block] blk-mq: Do not invoke queue operations on a dead queue (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: get rid of a bunch of boilerplate (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: rename hw queue directories from <n> to hctx<n> (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: don't open code strstrip() (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: error on long write to queue "state" file (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: clean up flag definitions (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: separate flags with | (Ming Lei) [1458104]
-- [block] blk-mq: Show operation, cmd_flags and rq_flags names (Ming Lei) [1458104]
-- [block] blk-mq: Make blk_flags_show() callers append a newline character (Ming Lei) [1458104]
-- [block] blk-mq: Move the "state" debugfs attribute one level down (Ming Lei) [1458104]
-- [block] blk-mq: Unregister debugfs attributes earlier (Ming Lei) [1458104]
-- [block] blk-mq: Only unregister hctxs for which registration succeeded (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: Rename functions for registering and unregistering the mq directory (Ming Lei) [1458104]
-- [block] blk-mq: Let blk_mq_debugfs_register() look up the queue name (Ming Lei) [1458104]
-- [block] blk-mq: Register <dev>/queue/mq after having registered <dev>/queue (Ming Lei) [1458104]
-- [block] blk-mq: register device instead of disk (Ming Lei) [1458104]
-- [block] blk-mq: Show symbolic names for hctx state and flags (Ming Lei) [1458104]
-- [block] blk-mq: Export queue state through /sys/kernel/debug/block/*/state (Ming Lei) [1458104]
-- [block] mq-deadline: Enable auto-loading when built as module (Ming Lei) [1458104]
-- [block] add code to track actual device queue depth (Ming Lei) [1458104]
-- [block] blk-mq: merge bio into sw queue before plugging (Ming Lei) [1458104 1154525]
-- [block] blk-mq: ensure that bd->last is always set correctly (Ming Lei) [1458104]
-- [block] blk-mq: fix performance regression with shared tags (Ming Lei) [1458104]
-- [block] blk-mq: Restart a single queue if tag sets are shared (Ming Lei) [1458104]
-- [block] blk-mq: Make it safe to use RCU to iterate over blk_mq_tag_set.tag_list (Ming Lei) [1458104]
-- [block] mtip32xx: avoid to read HOST_CAP from HW in .queue_rq() (Ming Lei) [1458104]
-- [block] blk-mq-sched: fix performance regression of mq-deadline (Ming Lei) [1458104]
-- [block] blk-stat: convert blk-stat bucket callback to signed (Ming Lei) [1458104]
-- [block] blk-mq: introduce Kyber multiqueue I/O scheduler (Ming Lei) [1458104]
-- [block] blk-mq-sched: make completed_request() callback more useful (Ming Lei) [1458104]
-- [block] blk-mq: export helpers (Ming Lei) [1458104]
-- [block] blk-mq: add shallow depth option for blk_mq_get_tag() (Ming Lei) [1458104]
-- [block] sbitmap: add sbitmap_get_shallow() operation (Ming Lei) [1458104]
-- [block] scsi: add new scsi-command flag for tagged commands (Ming Lei) [1458104]
-- [block] blk-mq: fix leak of q->stats (Ming Lei) [1458104]
-- [block] fix stacked driver stats init and free (Ming Lei) [1458104]
-- [block] blk-stat: convert to callback-based statistics reporting (Ming Lei) [1458104]
-- [block] blk-stat: move BLK_RQ_STAT_BATCH definition to blk-stat.c (Ming Lei) [1458104]
-- [block] blk-stat: use READ and WRITE instead of BLK_STAT_{READ, WRITE} (Ming Lei) [1458104]
-- [block] blk-stat: fix blk_stat_sum() if all samples are batched (Ming Lei) [1458104]
-- [block] blk-mq: move debugfs_remove() of disk dir to blk_release_queue() (Ming Lei) [1458104]
-- [block] use same block debugfs directory for blk-mq and blktrace (Ming Lei) [1458104]
-- [block] blktrace: make do_blk_trace_setup() static (Ming Lei) [1458104]
-- [block] fix debugfs config conditional in struct request_queue (Ming Lei) [1458104]
-- [block] blk-mq-debug: Introduce debugfs_create_files() (Ming Lei) [1458104]
-- [block] blk-mq-debug: Make show() operations interruptible (Ming Lei) [1458104]
-- [block] blk-mq-debug: Avoid that sparse complains about req_flags_t usage (Ming Lei) [1458104]
-- [block] blk-mq-debugfs: Add missing __acquires() / __releases() annotations (Ming Lei) [1458104]
-- [block] blk-mq: fix debugfs compilation issues (Ming Lei) [1458104]
-- [block] blk-mq: move hctx and ctx counters from sysfs to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: move hctx io_poll, stats, and dispatched from sysfs to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: add tags and sched_tags bitmaps to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: move tags and sched_tags info from sysfs to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: export software queue pending map to debugfs (Ming Lei) [1458104]
-- [block] sbitmap: add helpers for dumping to a seq_file (Ming Lei) [1458104]
-- [block] blk-mq: add extra request information to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: move hctx->dispatch and ctx->rq_list from sysfs to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: add hctx->{state,flags} to debugfs (Ming Lei) [1458104]
-- [block] blk-mq: create debugfs directory tree (Ming Lei) [1458104]
-- [block] blk-stat: fix a few cases of missing batch flushing (Ming Lei) [1458104]
-- [block] blk-stat: fix a typo (Ming Lei) [1458104]
-- [block] add scalable completion tracking of requests (Ming Lei) [1458104]
-- [block] mtip32xx: convert internal command issue to block IO path (Ming Lei) [1458104]
-- [block] mtip32xx: abstract out "are any commands active" helper (Ming Lei) [1458104]
-- [block] mtip32xx: kill atomic argument to mtip_quiesce_io() (Ming Lei) [1458104]
-- [block] mtip32xx: get rid of 'atomic' argument to mtip_exec_internal_command() (Ming Lei) [1458104]
-- [block] mtip32xx: use runtime tag to initialize command header (Ming Lei) [1458104]
-- [block] blk-mq: fix direct issue (Ming Lei) [1458104]
-- [block] blk-mq: pass correct hctx to blk_mq_try_issue_directly (Ming Lei) [1458104]
-- [block] get rid of blk-mq default scheduler choice Kconfig entries (Ming Lei) [1458104]
-- [block] blk-mq: Fix preempt count imbalance (Ming Lei) [1458104]
-- [block] blk-mq: fix schedule-while-atomic with scheduler attached (Ming Lei) [1458104]
-- [block] blk-mq: use true instead of 1 for blk_mq_queue_data.last (Ming Lei) [1458104]
-- [block] blk-mq: make driver tag failure path easier to follow (Ming Lei) [1458104]
-- [block] blk-mq-sched: provide hooks for initializing hardware queue data (Ming Lei) [1458104]
-- [block] blk-mq-sched: separate mark hctx and queue restart operations (Ming Lei) [1458104]
-- [block] blk-mq: use sbq wait queues instead of restart for driver tags (Ming Lei) [1458104]
-- [block] blk-mq: fix schedule-under-preempt for blocking drivers (Ming Lei) [1458104]
-- [block] block-mq: don't re-queue if we get a queue error (Ming Lei) [1458104]
-- [block] blk-mq: streamline blk_mq_make_request (Ming Lei) [1458104]
-- [block] blk-mq: split the plug and sync cases in blk_mq_make_request (Ming Lei) [1458104]
-- [block] blk-mq: improve blk_mq_try_issue_directly (Ming Lei) [1458104]
-- [block] blk-mq: merge mq and sq make_request instances (Ming Lei) [1458104]
-- [block] deal with stale req count of plug list (Ming Lei) [1458104]
-- [block] blk-mq: remove BLK_MQ_F_DEFER_ISSUE (Ming Lei) [1458104]
-- [block] blk-mq: immediately dispatch big size request (Ming Lei) [1458104]
-- [block] immediately dispatch big size request (Ming Lei) [1458104]
-- [block] blk-mq: remap queues when adding/removing hardware queues (Ming Lei) [1458104]
-- [block] blk-mq-sched: fix crash in switch error path (Ming Lei) [1458104]
-- [block] blk-mq-sched: set up scheduler tags when bringing up new queues (Ming Lei) [1458104]
-- [block] blk-mq-sched: refactor scheduler initialization (Ming Lei) [1458104]
-- [block] blk-mq: use the right hctx when getting a driver tag fails (Ming Lei) [1458104]
-- [block] blk-mq: errors in did_work calculation (Ming Lei) [1458104]
-- [block] do not put mq context in blk_mq_alloc_request_hctx (Ming Lei) [1458104]
-- [block] blk-mq-sched: don't run the queue async from blk_mq_try_issue_directly() (Ming Lei) [1458104]
-- [block] blk-mq: move update of tags->rqs to __blk_mq_alloc_request() (Ming Lei) [1458104]
-- [block] blk-mq: kill blk_mq_set_alloc_data() (Ming Lei) [1458104]
-- [block] blk-mq: make blk_mq_alloc_request_hctx() allocate a scheduler request (Ming Lei) [1458104]
-- [block] blk-mq-sched: Allocate sched reserved tags as specified in the original queue tagset (Ming Lei) [1458104]
-- [block] don't defer flushes on blk-mq + scheduling (Ming Lei) [1458104]
-- [block] blk-mq-sched: ask scheduler for work, if we failed dispatching leftovers (Ming Lei) [1458104]
-- [block] blk-mq: don't special case flush inserts for blk-mq-sched (Ming Lei) [1458104]
-- [block] blk-mq-sched: don't add flushes to the head of requeue queue (Ming Lei) [1458104]
-- [block] blk-mq: have blk_mq_dispatch_rq_list() return if we queued IO or not (Ming Lei) [1458104]
-- [block] do not allow updates through sysfs until registration completes (Ming Lei) [1458104]
-- [block] blk-mq-sched: don't hold queue_lock when calling exit_icq (Ming Lei) [1458104]
-- [block] set make_request_fn manually in blk_mq_update_nr_hw_queues (Ming Lei) [1458104]
-- [block] blk-mq: pass bio to blk_mq_sched_get_rq_priv (Ming Lei) [1458104]
-- [block] move req_set_nomerge to blk.h (Ming Lei) [1458104]
-- [block] factor out req_set_nomerge (Ming Lei) [1458104]
-- [block] blk-mq-sched: (un)register elevator when (un)registering queue (Ming Lei) [1458104]
-- [block] free merged request in the caller (Ming Lei) [1458104]
-- [block] blk-mq-sched: bypass the scheduler for flushes entirely (Ming Lei) [1458104]
-- [block] blk-merge: return the merged request (Ming Lei) [1458104]
-- [block] elevator: fix loading wrong elevator type for blk-mq devices (Ming Lei) [1458104]
-- [block] blk-mq: don't fail allocating driver tag for stopped hw queue (Ming Lei) [1458104]
-- [block] blk-mq-sched: add flush insertion into blk_mq_sched_insert_request() (Ming Lei) [1458104]
-- [block] blk-mq-sched: change ->dispatch_requests() to ->dispatch_request() (Ming Lei) [1458104]
-- [block] blk-mq-sched: fix starvation for multiple hardware queues and shared tags (Ming Lei) [1458104]
-- [block] blk-mq: release driver tag on a requeue event (Ming Lei) [1458104]
-- [block] blk-mq: fix potential race in queue restart and driver tag allocation (Ming Lei) [1458104]
-- [block] blk-mq: improve scheduler queue sync/async running (Ming Lei) [1458104]
-- [block] blk-mq-sched: check for successful allocation before assigning tag (Ming Lei) [1458104]
-- [block] blk-mq: don't lose flags passed in to blk_mq_alloc_request() (Ming Lei) [1458104]
-- [block] blk-mq: only apply active queue tag throttling for driver tags (Ming Lei) [1458104]
-- [block] blk-mq: allow resize of scheduler requests (Ming Lei) [1458104]
-- [block] blk-mq: stop hardware queue in blk_mq_delay_queue() (Ming Lei) [1458104]
-- [block] blk-mq-tag: remove redundant check for 'data->hctx' being non-NULL (Ming Lei) [1458104]
-- [block] elevator: fix unnecessary put of elevator in failure case (Ming Lei) [1458104]
-- [block] blk-cgroup: don't quiesce the queue on policy activate/deactivate (Ming Lei) [1458104]
-- [block] sbitmap: fix wakeup hang after sbq resize (Ming Lei) [1458104]
-- [block] sbitmap: use smp_mb__after_atomic() in sbq_wake_up() (Ming Lei) [1458104]
-- [block] blk-cgroup: ensure that we clear the stop bit on quiesced queues (Ming Lei) [1458104]
-- [block] blk-mq-sched: allow setting of default IO scheduler (Ming Lei) [1458104]
-- [block] mq-deadline: add blk-mq adaptation of the deadline IO scheduler (Ming Lei) [1458104]
-- [block] blk-mq-sched: add framework for MQ capable IO schedulers (Ming Lei) [1458104]
-- [block] blk-mq: split tag ->rqs[] into two (Ming Lei) [1458104]
-- [block] blk-mq: abstract out helpers for allocating/freeing tag maps (Ming Lei) [1458104]
-- [block] blk-mq-tag: cleanup the normal/reserved tag allocation (Ming Lei) [1458104]
-- [block] blk-mq: export some helpers we need to the scheduling framework (Ming Lei) [1458104]
-- [block] blk-mq: un-export blk_mq_free_hctx_request() (Ming Lei) [1458104]
-- [block] move rq_ioc() to blk.h (Ming Lei) [1458104]
-- [block] move existing elevator ops to union (Ming Lei) [1458104]
-- [block] blk-flush: run the queue when inserting blk-mq flush (Ming Lei) [1458104]
-- [block] elevator: make the rqhash helpers exported (Ming Lei) [1458104]
-- [block] blk-mq: abstract out blk_mq_dispatch_rq_list() helper (Ming Lei) [1458104]
-- [block] cfq-iosched: fix the setting of IOPS mode on SSDs (Ming Lei) [1458104]
-- [block] Make CFQ default to IOPS mode on SSDs (Ming Lei) [1458104]
-- [block] do not merge requests without consulting with io scheduler (Ming Lei) [1458104]
-- [block] blk-mq: get rid of confusing blk_map_ctx structure (Ming Lei) [1458104]
-- [block] blk-mq: remove non-blocking pass in blk_mq_map_request (Ming Lei) [1458104]
-- [block] blk-mq: get rid of manual run of queue with __blk_mq_run_hw_queue() (Ming Lei) [1458104]
-- [block] sbitmap: initialize weight to zero (Ming Lei) [1458104]
-- [block] sbitmap: don't update the allocation hint on clear after resize (Ming Lei) [1458104]
-- [block] sbitmap: re-initialize allocation hints after resize (Ming Lei) [1458104]
-- [block] sbitmap: randomize initial alloc_hint values (Ming Lei) [1458104]
-- [block] sbitmap: push alloc policy into sbitmap_queue (Ming Lei) [1458104]
-- [block] sbitmap: push per-cpu last_tag into sbitmap_queue (Ming Lei) [1458104]
-- [block] sbitmap: allocate wait queues on a specific node (Ming Lei) [1458104]
-- [block] blk-mq: abstract tag allocation out into sbitmap library (Ming Lei) [1458104]
-- [block] blk-mq: add tag allocation policy (Ming Lei) [1458104]
-- [block] support different tag allocation policy (Ming Lei) [1458104]
-- [block] revert "blk-mq-tag: fix wakeup hang after tag resize" (Ming Lei) [1458104]
-
-* Fri Oct 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-760.el7]
-- [scsi] fnic: do not call host reset from command abort (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: fix format string overflow warning (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: changing queue command to return result DID_IMM_RETRY when rport is init (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: correct speed display and add support for 25, 40 and 100G (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: added timestamp reporting in fnic debug stats (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Zero io_cmpl_skip on fw reset completion (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Adding debug IO and Abort latency counter to fnic stats (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Adding Check Condition counter to misc fnicstats (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Avoid false out-of-order detection for aborted command (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Fix for "Number of Active IOs" in fnicstats becoming negative (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: minor cleanup in fnic_fcpio_itmf_cmpl_handler, removing else case (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: Ratelimit printks to avoid flooding when vlan is not set by the switch.i (Govindarajulu Varadarajan) [1448553]
-- [scsi] fnic: switch to pci_alloc_irq_vectors (Govindarajulu Varadarajan) [1448553]
-- [nvme] nvme-fabrics: Convert nvmf_transports_mutex to an rwsem (Ewan Milne) [1503181]
-- [nvme] nvme-fc: retry initial controller connections 3 times (Ewan Milne) [1503181]
-- [nvme] nvme-fc: fix iowait hang (Ewan Milne) [1503181]
-- [nvme] nvmet: synchronize sqhd update (Ewan Milne) [1503181]
-- [nvme] nvme-fc: correct io timeout behavior (Ewan Milne) [1503181]
-- [nvme] nvme-fc: correct io termination handling (Ewan Milne) [1503181]
-- [nvme] nvme-fc: move remote port get/put/free location (Ewan Milne) [1503181]
-- [nvme] nvme-fc: create fc class and transport device (Ewan Milne) [1503181]
-- [nvme] nvme-fc: add uevent for auto-connect (Ewan Milne) [1503181]
-- [nvme] nvmet: bump NVMET_NR_QUEUES to 128 (Ewan Milne) [1503181]
-- [nvme] nvme-fcloop: fix port deletes and callbacks (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: sync header templates with comments (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: ensure target queue id within range (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: on port remove call put outside lock (Ewan Milne) [1503181]
-- [nvme] fix sqhd reference when admin queue connect fails (Ewan Milne) [1503181]
-- [nvme] nvmet: implement valid sqhd values in completions (Ewan Milne) [1503181]
-- [nvme] allow timed-out ios to retry (Ewan Milne) [1503181]
-- [nvme] stop aer posting if controller state not live (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: fix failing max io queue connections (Ewan Milne) [1503181]
-- [nvme] nvme-fc: use transport-specific sgl format (Ewan Milne) [1503181]
-- [nvme] nvme: add transport SGL definitions (Ewan Milne) [1503181]
-- [nvme] remove FC transport-specific error values (Ewan Milne) [1503181]
-- [scsi] qla2xxx: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [scsi] lpfc: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [nvme] nvmet-fcloop: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [nvme] nvme-fc: remove use of FC-specific error codes (Ewan Milne) [1503181]
-- [nvme] nvmet-fc: simplify sg list handling (Ewan Milne) [1503181]
-- [nvme] nvme-fc: Reattach to localports on re-registration (Ewan Milne) [1503181]
-- [nvme] nvmet-fcloop: remove ALL_OPTS define (Ewan Milne) [1503181]
-- [scsi] sd: Implement blacklist option for WRITE SAME w/ UNMAP (Ewan Milne) [1462594]
-
-* Thu Oct 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-759.el7]
-- [x86] dumpstack: Remove raw stack dump (Scott Wood) [1479560]
-- [x86] kvm: hyperv: fix locking of struct kvm_hv fields (Ladi Prosek) [1504524]
-- [x86] kvm: document lock orders (Ladi Prosek) [1504524]
-- [x86] kvm: x86: Hyper-V tsc page setup (Ladi Prosek) [1504524]
-- [x86] kvm: x86: always fill in vcpu->arch.hv_clock (Ladi Prosek) [1504524]
-- [x86] kvm/x86: Hyper-V internal helper to read MSR HV_X64_MSR_TIME_REF_COUNT (Ladi Prosek) [1504524]
-- [x86] mm: add page_cache_get_speculative() protection when .flush_tlb_others is overridden (Vitaly Kuznetsov) [1465471]
-- [x86] mm: add IPIs to pmdp_invalidate() when .flush_tlb_others is overridden (Vitaly Kuznetsov) [1465471]
-- [x86] hyperv: Fix hypercalls with extended CPU ranges for TLB flushing (Vitaly Kuznetsov) [1465471]
-- [x86] hyperv: Don't use percpu areas for pcpu_flush/pcpu_flush_ex structures (Vitaly Kuznetsov) [1465471]
-- [x86] hyperv: Clear vCPU banks between calls to avoid flushing unneeded vCPUs (Vitaly Kuznetsov) [1465471]
-- [x86] tracing/hyper-v: Trace hyperv_mmu_flush_tlb_others() (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Support extended CPU ranges for TLB flush hypercalls (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Use hypercall for remote TLB flush (Vitaly Kuznetsov) [1465471]
-- [x86] mm: Enable RCU based page table freeing (CONFIG_HAVE_RCU_TABLE_FREE=y) (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Globalize vp_index (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Implement rep hypercalls (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Use fast hypercall for HVCALL_SIGNAL_EVENT (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Introduce fast hypercall implementation (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Make hv_do_hypercall() inline (Vitaly Kuznetsov) [1465471]
-- [x86] hyper-v: Include hyperv/ only when CONFIG_HYPERV is set (Vitaly Kuznetsov) [1465471]
-- [x86] hv: Issue explicit EOI when autoeoi is not enabled (Vitaly Kuznetsov) [1465471]
-- [x86] hyperv: fix warning about missing prototype (Vitaly Kuznetsov) [1465471]
-- [x86] vmbus: remove no longer used signal_policy (Vitaly Kuznetsov) [1465471]
-- [x86] kvm/x86: Rename Hyper-V long spin wait hypercall (Vitaly Kuznetsov) [1465471]
-- [x86] hv: Move VMBus hypercall codes into Hyper-V UAPI header (Vitaly Kuznetsov) [1465471]
-
-* Thu Oct 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-758.el7]
-- [pinctrl] intel: Add Intel Gemini Lake pin controller support (Steve Best) [1457198]
-- [char] Do not disable driver and bus shutdown hook when class shutdown hook is set (Jerry Snitselaar) [1500155]
-- [char] tpm: Issue a TPM2_Shutdown for TPM2 devices (Jerry Snitselaar) [1500155]
-- [drivers] Add "shutdown" to "struct class" (Jerry Snitselaar) [1500155]
-- [kernel] rh_taint: Add management approval to documentation (Prarit Bhargava) [1505972]
-- [kernel] cgroup: kill css_id (Aristeu Rozanski) [1470325]
-- [mm] memcontrol: fix cgroup creation failure after many small jobs (Aristeu Rozanski) [1470325]
-- [mm] memcg: fix thresholds for 32b architectures (Waiman Long) [1487852]
-- [mm] hmm: synchronize hmm with upstream (Jerome Glisse) [1470733]
-- [nvme] revert "kick requeue list when requeueing a request instead of when starting the queues" (David Milburn) [1504584]
-- [nvme] nvmet: preserve controller serial number between reboots (David Milburn) [1480179]
-- [nvme] fix uninitialized prp2 value on small transfers (David Milburn) [1493707]
-- [netdrv] tun: add device name(iff) field to proc fdinfo entry (John Linville) [1503209]
-- [netdrv] tg3: use setup_timer() helper (Jonathan Toppins) [1459662]
-- [netdrv] tg3: clean up redundant initialization of tnapi (Jonathan Toppins) [1459662]
-- [netdrv] tg3: Be drop monitor friendly (Jonathan Toppins) [1459662]
-- [netdrv] tg3: Add the ability to conditionally build w/ HWMON (Jonathan Toppins) [1459662]
-- [netdrv] enic: use setup_timer() helper (Stefan Assmann) [1448560]
-- [netdrv] enic: use setup_timer() helper (Stefan Assmann) [1448560]
-- [netdrv] cisco: enic: Fic an error handling path in 'vnic_dev_init_devcmd2()' (Stefan Assmann) [1448560]
-- [netdrv] enic: Fix format truncation warning (Stefan Assmann) [1448560]
-- [netdrv] enic: unmask intr only when napi is complete (Stefan Assmann) [1448560]
-- [security] selinux: Generalize support for NNP/nosuid SELinux domain transitions (Paul Moore) [1480521]
-- [security] selinux: allow per-file labeling for cgroupfs (Paul Moore) [1429573]
-- [security] selinux: wrap cgroup seclabel support with its own policy capability (Paul Moore) [1429573]
-- [security] selinux: allow changing labels for cgroupfs (Paul Moore) [1429573]
-- [security] selinux: renumber the superblock options (Paul Moore) [1429573]
-- [security] selinux: rename SE_SBLABELSUPP to SBLABEL_MNT (Paul Moore) [1429573]
-
-* Wed Oct 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-757.el7]
-- [bluetooth] Add support for Intel Bluetooth device 9460/9560 [8087:0aaa] (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add protocol check to hci_uart_tx_wakeup() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add protocol check to hci_uart_dequeue() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add protocol check to hci_uart_send_frame() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add missing clear HCI_UART_PROTO_READY (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Ensure hu->hdev set to NULL before freeing hdev (Gopal Tiwari) [1457085]
-- [bluetooth] hci_ldisc: Add missing return in hci_uart_init_work() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_uart: remove unused hci_uart_init_tty (Gopal Tiwari) [1457085]
-- [bluetooth] hci_uart: add support for word alignment (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: remove unnecessary wakeup interrupt number sanity check (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: disable platform wakeup interrupt in suspend failure path (Gopal Tiwari) [1457085]
-- [bluetooth] hci_intel: add missing tty-device sanity check (Gopal Tiwari) [1457085]
-- [bluetooth] hci_bcm: add missing tty-device sanity check (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: cleanup code in return from btmrvl_sdio_suspend() (Gopal Tiwari) [1457085]
-- [bluetooth] hci_bcm: Support platform enumeration (Gopal Tiwari) [1457085]
-- [bluetooth] btrtl: Change message for missing config file (Gopal Tiwari) [1457085]
-- [bluetooth] Added support for Rivet Networks Killer 1535 (Gopal Tiwari) [1457085]
-- [bluetooth] hci_intel: Add support Intel Bluetooth device 9160/9260 for UART (Gopal Tiwari) [1457085]
-- [bluetooth] hci_intel: Fix firmware file name to use hw_variant (Gopal Tiwari) [1457085]
-- [bluetooth] btusb: Add support for Intel Bluetooth devices 9160/9260 [8087:0025] (Gopal Tiwari) [1457085]
-- [bluetooth] Use switch statement for Intel hardware variants (Gopal Tiwari) [1457085]
-- [bluetooth] bluecard: use setup_timer (Gopal Tiwari) [1457085]
-- [bluetooth] hci_bcm: Fix clock (un)prepare (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: fix spelling mistake: "unregester" -> "unregister" (Gopal Tiwari) [1457085]
-- [bluetooth] btqcomsmd: fix compile-test dependency (Gopal Tiwari) [1457085]
-- [bluetooth] hci_qca: fix spelling mistake: "Spurrious" -> "Spurious" (Gopal Tiwari) [1457085]
-- [bluetooth] btmrvl: fix spelling mistake: "caibration" -> "calibration" (Gopal Tiwari) [1457085]
-- [bluetooth] btqcomsmd: Allow driver to build if COMPILE_TEST is enabled (Gopal Tiwari) [1457085]
-- [bluetooth] Add another AR3012 04ca:3018 device (Gopal Tiwari) [1457085]
-- [bluetooth] hci_bcm: Add support for BCM2E95 and BCM2E96 (Gopal Tiwari) [1457085]
-- [bluetooth] btbcm: Add a delay for module reset (Gopal Tiwari) [1457085]
-- [bluetooth] btusb: Add support for 413c:8143 (Gopal Tiwari) [1457085]
-- [bluetooth] btusb: Use an error label for error paths (Gopal Tiwari) [1457085]
-- [bluetooth] btqcomsmd: Fix module autoload (Gopal Tiwari) [1457085]
-- [bluetooth] btusb: add support for 0bb4:0306 (Gopal Tiwari) [1457085]
-
-* Wed Oct 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-756.el7]
-- [md] dm ioctl: fix alignment of event number in the device list (Mike Snitzer) [1475380]
-- [md] dm raid: fix incorrect status output at the end of a "recover" process (Mike Snitzer) [1492250]
-- [md] dm ioctl: constify ioctl lookup table (Mike Snitzer) [1492250]
-- [md] dm: constify argument arrays (Mike Snitzer) [1492250]
-- [md] dm rq: do not update rq partially in each ending bio (Mike Snitzer) [1492250]
-- [md] dm rq: make dm-sq requeuing behavior consistent with dm-mq behavior (Mike Snitzer) [1492250]
-- [md] dm mpath: do not lock up a CPU with requeuing activity (Mike Snitzer) [1492250]
-- [md] dm raid: avoid mddev->suspended access (Mike Snitzer) [1492250]
-- [md] dm raid: fix activation check in validate_raid_redundancy() (Mike Snitzer) [1492250]
-- [md] dm raid: remove WARN_ON() in raid10_md_layout_to_format() (Mike Snitzer) [1492250]
-- [md] dm raid: stop using BUG() in __rdev_sectors() (Mike Snitzer) [1492250]
-- [md] dm: fix printk() rate limiting code (Mike Snitzer) [1492250]
-- [md] dm: convert DM printk macros to pr_<level> macros (Mike Snitzer) [1492250]
-- [md] dm bio prison: use rb_entry() rather than container_of() (Mike Snitzer) [1492250]
-- [md] dm ioctl: report event number in DM_LIST_DEVICES (Mike Snitzer) [1475380]
-- [md] dm ioctl: add a new DM_DEV_ARM_POLL ioctl (Mike Snitzer) [1475380]
-- [md] dm: add basic support for using the select or poll function (Mike Snitzer) [1475380]
-- [md] dm thin: do not queue freed thin mapping for next stage processing (Mike Snitzer) [1492250]
-- [md] dm bufio: make the parameter 'retain_bytes' unsigned long (Mike Snitzer) [1492250]
-- [md] dm bufio: check new buffer allocation watermark every 30 seconds (Mike Snitzer) [1492250]
-- [md] dm bufio: avoid a possible ABBA deadlock (Mike Snitzer) [1492250]
-- [md] dm mpath: make it easier to detect unintended I_O request flushes (Mike Snitzer) [1492250]
-- [md] dm mpath: cleanup QUEUE_IF_NO_PATH bit manipulation by introducing assign_bit() (Mike Snitzer) [1492250]
-- [md] dm mpath: micro-optimize the hot path relative to MPATHF_QUEUE_IF_NO_PATH (Mike Snitzer) [1492250]
-- [md] dm: introduce enum dm_queue_mode to cleanup related code (Mike Snitzer) [1492250]
-- [md] dm mpath: verify __pg_init_all_paths locking assumptions at runtime (Mike Snitzer) [1492250]
-- [md] dm: verify suspend_locking assumptions at runtime (Mike Snitzer) [1492250]
-- [md] dm rq: check blk_mq_register_dev() return value in dm_mq_init_request_queue() (Mike Snitzer) [1492250]
-- [md] dm mpath: delay requeuing while path initialization is in progress (Mike Snitzer) [1492250]
-- [md] dm mpath: avoid that path removal can trigger an infinite loop (Mike Snitzer) [1492250]
-- [md] dm mpath: split and rename activate_path() to prepare for its expanded use (Mike Snitzer) [1492250]
-- [md] dm ioctl: prevent stack leak in dm ioctl call (Mike Snitzer) [1492250]
-- [md] dm ioctl: remove double parentheses (Mike Snitzer) [1492250]
-- [md] dm: remove dummy dm_table definition (Mike Snitzer) [1492250]
-- [md] dm table: replace while loops with for loops (Mike Snitzer) [1492250]
-- [md] dm raid: select the Kconfig option CONFIG_MD_RAID0 (Mike Snitzer) [1492250]
-- [md] dm crypt: replace custom implementation of hex2bin() (Mike Snitzer) [1492250]
-- [md] dm crypt: remove obsolete references to per-CPU state (Mike Snitzer) [1492250]
-- [md] dm crypt: use WQ_HIGHPRI for the IO and crypt workqueues (Mike Snitzer) [1492250]
-- [md] dm block manager: remove an unused argument from dm_block_manager_create() (Mike Snitzer) [1492250]
-
-* Wed Oct 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-755.el7]
-- [net] udp: fix bcast packet reception (Paolo Abeni) [1493238]
-- [net] udp: perform source validation for mcast early demux (Paolo Abeni) [1493238]
-- [net] ipv4: early demux can return an error code (Paolo Abeni) [1493238]
-- [net] ipv6: expose RFC4191 route preference via rtnetlink (Hangbin Liu) [1500463]
-- [net] check type when freeing metadata dst (Paolo Abeni) [1497116]
-- [net] store port/representator id in metadata_dst (Paolo Abeni) [1497116]
-- [net] tcp: avoid fragmenting peculiar skbs in SACK (Hangbin Liu) [1499039]
-- [net] handle NAPI_GRO_FREE_STOLEN_HEAD case also in napi_frags_finish() (Hangbin Liu) [1469357]
-- [net] Drop secpath on free after gro merge (Hangbin Liu) [1469357]
-- [net] adjust skb->truesize in ___pskb_trim() (Hangbin Liu) [1469357]
-- [net] tcp: do not underestimate skb->truesize in tcp_trim_head() (Hangbin Liu) [1469357]
-- [net] skb_condense() can also deal with empty skbs (Hangbin Liu) [1469357]
-- [net] udp: under rx pressure, try to condense skbs (Hangbin Liu) [1469357]
-- [drm] i915: Revert "don't rcu-sync from shrinker" (Waiman Long) [1488956]
-- [kernel] cpu/hotplug: Disable prove_locking for cpu_hotplug.mutex (Waiman Long) [1488956]
-- [kernel] rcu: Eliminate deadlock between CPU hotplug and expedited grace periods (Waiman Long) [1488956]
-- [powerpc] kvm: ppc: book3s hv: Prevent double-free on HPT resize commit path (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Advertise availablity of HPT resizing on KVM HV (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: KVM-HV HPT resizing implementation (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Outline of KVM-HV HPT resizing implementation (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Create kvmppc_unmap_hpte_helper() (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Allow KVM_PPC_ALLOCATE_HTAB ioctl() to change HPT size (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Split HPT allocation from activation (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Don't store values derivable from HPT order (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Gather HPT related variables into sub-structure (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: Rename kvm_alloc_hpt() for clarity (David Gibson) [1305400]
-- [powerpc] kvm: ppc: book3s hv: HPT resizing documentation and reserved numbers (David Gibson) [1305400]
-
-* Wed Oct 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-754.el7]
-- [x86] kvm: mmu: fix permission_fault() (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: use ept a/d in vmcs02 iff used in vmcs12 (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: fix AD condition when handling EPT violation (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Don't use INVVPID when EPT is enabled (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: allow A/D bits to be disabled in an mmu (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: make spte mmio mask more explicit (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: dead code thanks to access tracking (Paolo Bonzini) [1469685]
-- [x86] mmu: don't pass *kvm to spte_write_protect and spte_*_dirty (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: fix EPT permissions as reported in exit qualification (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: off by one in vmx_write_pml_buffer() (Paolo Bonzini) [1469685]
-- [x86] nvmx: Advertise PML to L1 hypervisor (Paolo Bonzini) [1469685]
-- [x86] nvmx: Implement emulated Page Modification Logging (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: Add a hook for arch specific dirty logging emulation (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: support EPT accessed/dirty bits (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: MMU support for EPT accessed/dirty bits (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: remove bogus check for invalid EPT violation (Paolo Bonzini) [1469685]
-- [x86] vmx: refine validity check for guest linear address (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Verify that restored PTE has needed perms in fast page fault (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Move pgtbl walk inside retry loop in fast_page_fault (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Update comment in mark_spte_for_access_track (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Set SPTE_SPECIAL_MASK within mmu.c (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Rename EPT_VIOLATION_READ/WRITE/INSTR constants (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Lockless access tracking for Intel CPUs without EPT A bits (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Do not use bit 63 for tracking special SPTEs (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Introduce a no-tracking version of mmu_spte_update (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: Fix typos (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Refactor accessed/dirty checks in mmu_spte_update/clear (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Fast Page Fault path retries (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Use symbolic constants for EPT Violation Exit Qualifications (Paolo Bonzini) [1469685]
-- [x86] kvm: hyperv: support HV_X64_MSR_TSC_FREQUENCY and HV_X64_MSR_APIC_FREQUENCY (Paolo Bonzini) [1469685]
-- [x86] kvm/x86: Hyper-V HV_X64_MSR_VP_RUNTIME support (Paolo Bonzini) [1469685]
-- [x86] kvm/x86: Hyper-V HV_X64_MSR_VP_INDEX export for QEMU (Paolo Bonzini) [1469685]
-- [x86] kvm/x86: Hyper-V HV_X64_MSR_RESET msr (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: speedup update_permission_bitmask (Paolo Bonzini) [1469685]
-- [x86] doc: add "an user" pattern and fix typo instances (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Correct a VMX instruction error code for VMPTRLD (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Don't validate disabled secondary controls (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Shadow "high" parts of shadowed 64-bit VMCS fields (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Check memory operand to INVVPID (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Raise #UD on unsupported RDSEED (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Raise #UD on unsupported RDRAND (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: cache secondary exec controls (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: use general helpers for some cpuid manipulation (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: generalize guest_cpuid_has_ helpers (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: X86_FEATURE_NRIPS is not scattered anymore (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: allow host to access guest MSR_IA32_BNDCFGS (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Check value written to IA32_BNDCFGS (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: Guest BNDCFGS requires guest MPX support (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: INVPCID support (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: don't flush VMCS12 during VMXOFF or VCPU teardown (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: do not pin the VMCS12 (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Refactor handle_vmptrld() (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: mark vmcs12 pages dirty on L2 exit (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix interrupt window request with "Acknowledge interrupt on exit" (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: support RDRAND and RDSEED exiting (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: add missing exit reasons (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix posted intr delivery when vcpu is in guest mode (Paolo Bonzini) [1469685]
-- [x86] irq: Define a global vector for nested posted interrupts (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: vmx_complete_nested_posted_interrupt() can't fail (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: kmap() can't fail (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: remove unused field (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix loss of L2's NMI blocking state (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: track NMI blocking state separately for each VMCS (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Fix invalid guest state detection after task-switch emulation (Paolo Bonzini) [1469685]
-- [x86] kvm: async_pf: avoid async pf injection when in guest mode (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: we support 1GB EPT pages (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: keep preemption timer enabled during L2 execution (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: introduce vm_{entry, exit}_control_reset_shadow (Paolo Bonzini) [1469685]
-- [x86] revert "kvm: nested vmx: disable perf cpuid reporting" (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix exception injection (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Don't enable EPT A/D feature if EPT feature is disabled (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: fix nested EPT detection (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: Fix enable VPID conditions (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix nested VPID vmx exec control (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: reset nested_run_pending if the vCPU is going to be reset (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: Fix pending events injection (Paolo Bonzini) [1469685]
-- [x86] kvm: nvmx: do not warn when MSR bitmap address is not backed (Paolo Bonzini) [1469685]
-- [x86] kvm: vmx: advertise support for ept execute only (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: track read permission explicitly for shadow EPT page tables (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: don't set the present bit unconditionally (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: remove is_present_gpte() (Paolo Bonzini) [1469685]
-- [x86] kvm: mmu: extend the is_present check to 32 bits (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Consolidate BUG_ON checks for reverse-mapped sptes (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Remove is_rmap_spte() and use is_shadow_present_pte() (Paolo Bonzini) [1469685]
-- [x86] kvm: x86: mmu: Rename spte_is_locklessly_modifiable() (Paolo Bonzini) [1469685]
-
-* Tue Oct 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-753.el7]
-- [scsi] be2iscsi: Update driver version (Chris Leech) [1457833]
-- [scsi] be2iscsi: Remove A-circumflex character in copyright marking (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix misc static analysis errors (Chris Leech) [1457833]
-- [scsi] be2iscsi: Add cmd to set host data (Chris Leech) [1457833]
-- [scsi] be2iscsi: Modify IOCTL to fetch user configured IQN (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix _get_initname buffer overflow (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix _modify_eq_delay buffer overflow (Chris Leech) [1457833]
-- [scsi] be2iscsi: Free msi_name and disable HW intr (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix return value in mgmt_open_connection (Chris Leech) [1457833]
-- [scsi] be2iscsi: Fix boot flags in sysfs (Chris Leech) [1457833]
-- [scsi] be2iscsi: Replace PCI pool old API (Chris Leech) [1457833]
-- [scsi] be2iscsi: switch to pci_alloc_irq_vectors (Chris Leech) [1457833]
-- [scsi] be2iscsi: Update driver version (Chris Leech) [1457833]
-- [scsi] be2iscsi: Update Copyright (Chris Leech) [1457833]
-- [scsi] be2iscsi: Check size before copying ASYNC handle (Chris Leech) [1457833]
-- [scsi] be2iscsi: Remove free_list for ASYNC handles (Chris Leech) [1457833]
-- [scsi] be2iscsi: Use num_cons field in Rx CQE (Chris Leech) [1457833]
-- [scsi] be2iscsi: Increase HDQ default queue size (Chris Leech) [1457833]
-- [scsi] qla2xxx: Update driver version to 10.00.00.02.07.5-k (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Query FC4 type during RSCN processing (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Use ql2xnvmeenable to enable Q-Pair for FC-NVMe (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Changes to support N2N logins (Chad Dupuis) [1316281]
-- [scsi] qla2xxx: Allow MBC_GET_PORT_DATABASE to query and save the port states (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add ATIO-Q processing for INTx mode (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add module param ql2xenablemsix (Chad Dupuis) [1316281]
-- [scsi] qla2xxx: Update driver version to 10.00.00.00.07.5-k (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Move #include qla_nvme.h to fix compile errors on RHEL 7 (Chad Dupuis) [1316281]
-- [scsi] qla2xxx: Allow SCSI-MQ to be enabled selectively (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Reset the logo flag, after target re-login (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add LR distance support from nvram bit (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add support for minimum link speed (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Clear fc4f_nvme flag (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: add missing includes for qla_isr (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Fix WWPN/WWNN in debug message (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add command completion for error path (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Fix remoteport disconnect for FC-NVMe (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Simpify unregistration of FC-NVMe local/remote ports (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Added change to enable ZIO for FC-NVMe devices (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Move function prototype to correct header (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Cleanup FC-NVMe code (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Fix NVMe entry_type for iocb packet on BE system (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: avoid unused-function warning (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: fix a bunch of typos and spelling mistakes (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Use FC-NVMe FC4 type for FDMI registration (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Send FC4 type NVMe to the management server (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add FC-NVMe F/W initialization and transport registration (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add FC-NVMe command handling (Himanshu Madhani) [1316281]
-- [scsi] qla2xxx: Add FC-NVMe port discovery and PRLI handling (Himanshu Madhani) [1316281]
-- [target] iscsi-target: Set session_fall_back_to_erl0 when forcing reinstatement (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Always wait for kthread_should_stop() before kthread exit (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Fix initial login PDU asynchronous socket close OOPs (Maurizio Lombardi) [1366062]
-- [target] target/iscsi: Fix indentation in iscsi_target_start_negotiation() (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Fix early sk_data_ready LOGIN_FLAGS_READY race (Maurizio Lombardi) [1366062]
-- [target] Fix missing complete during ABORT_TASK + CMD_T_FABRIC_STOP (Maurizio Lombardi) [1366062]
-- [target] target/iscsi: Fix double free in lio_target_tiqn_addtpg() (Maurizio Lombardi) [1366062]
-- [target] Fix race between iscsi-target connection shutdown + ABORT_TASK (Maurizio Lombardi) [1366062]
-- [target] Fix missing complete during ABORT_TASK + CMD_T_FABRIC_STOP (Maurizio Lombardi) [1366062]
-- [target] configfs: make configfs compatible with new API (Maurizio Lombardi) [1366062]
-- [target] allow ALUA setup for some passthrough backends (Maurizio Lombardi) [1366062]
-- [target] tcmu: Allow cmd_time_out to be set to zero (disabled) (Maurizio Lombardi) [1366062]
-- [target] target/user: PGR Support (Maurizio Lombardi) [1366062]
-- [target] tcmu: Convert cmd_time_out into backend device attribute (Maurizio Lombardi) [1366062]
-- [target] export lio pgr/alua support as device attr (Maurizio Lombardi) [1366062]
-- [target] add a new add_wwn_groups fabrics method (Maurizio Lombardi) [1366062]
-- [target] initialize the nacl base CIT begfore init_nodeacl (Maurizio Lombardi) [1366062]
-- [target] remove ->fabric_cleanup_nodeacl (Maurizio Lombardi) [1366062]
-- [target] ib_srpt: Convert acl lookup to modern get_initiator_node_acl usage (Maurizio Lombardi) [1366062]
-- [target] configfs: switch ->default groups to a linked list (Maurizio Lombardi) [1366062]
-- [target] Fix target_release_cmd_kref shutdown comp leak (Maurizio Lombardi) [1366062]
-- [target] Avoid DataIN transfers for non-GOOD SAM status (Maurizio Lombardi) [1366062]
-- [target] Remove enum transport_lunflags_table (Maurizio Lombardi) [1366062]
-- [target] target/iblock: pass WRITE_SAME to device if possible (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: Convert to TARGET_SCF_ACK_KREF I/O + TMR krefs (Maurizio Lombardi) [1366062]
-- [target] sbp-target: Convert to TARGET_SCF_ACK_KREF I/O krefs (Maurizio Lombardi) [1366062]
-- [target] sbp-target: Conversion to percpu_ida tag pre-allocation (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: Convert to target_alloc_session usage (Maurizio Lombardi) [1366062]
-- [target] Convert demo-mode only drivers to target_alloc_session (Maurizio Lombardi) [1366062]
-- [target] Add target_alloc_session() helper function (Maurizio Lombardi) [1366062]
-- [target] Drop incorrect ABORT_TASK put for completed commands (Maurizio Lombardi) [1366062]
-- [target] target/transport: add flag to indicate CPU Affinity is observed (Maurizio Lombardi) [1366062]
-- [target] Fix incorrect unmap_zeroes_data_store return (Maurizio Lombardi) [1366062]
-- [target] Drop legacy se_cmd->task_stop_comp + REQUEST_STOP usage (Maurizio Lombardi) [1366062]
-- [target] Fix race with SCF_SEND_DELAYED_TAS handling (Maurizio Lombardi) [1366062]
-- [target] Fix remote-port TMR ABORT + se_cmd fabric stop (Maurizio Lombardi) [1366062]
-- [target] Fix TAS handling for multi-session se_node_acls (Maurizio Lombardi) [1366062]
-- [target] Fix LUN_RESET active TMR descriptor handling (Maurizio Lombardi) [1366062]
-- [target] Fix LUN_RESET active I/O handling for ACK_KREF (Maurizio Lombardi) [1366062]
-- [target] Fix WRITE_SAME/DISCARD conversion to linux 512b sectors (Maurizio Lombardi) [1366062]
-- [target] Obtain se_node_acl->acl_kref during get_initiator_node_acl (Maurizio Lombardi) [1366062]
-- [target] Convert ACL change queue_depth se_session reference usage (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Fix potential dead-lock during node acl delete (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: Convert acl lookup to modern get_initiator_node_acl usage (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: Wait for command completion before freeing a session (Maurizio Lombardi) [1366062]
-- [target] Fix a memory leak in target_dev_lba_map_store() (Maurizio Lombardi) [1366062]
-- [target] Support aborting tasks with a 64-bit tag (Maurizio Lombardi) [1366062]
-- [target] Remove an unused variable (Maurizio Lombardi) [1366062]
-- [target] Fix indentation in target_core_configfs.c (Maurizio Lombardi) [1366062]
-- [target] target/fcoe: Add tag support to tcm_fc (Maurizio Lombardi) [1366062]
-- [target] qla2xxx: Add selective command queuing (Maurizio Lombardi) [1366062]
-- [target] use offset_in_page macro (Maurizio Lombardi) [1366062]
-- [target] fix deprecated attribute names in dmesg (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Add LBPRZ attribute + control CDB emulation (Maurizio Lombardi) [1366062]
-- [target] sbp-target: Remove a superfluous forward declaration (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Fix indentation + spelling + unreachable code (Maurizio Lombardi) [1366062]
-- [target] Fix spelling + remove set-but-not-used variables (Maurizio Lombardi) [1366062]
-- [kernel] configfs: Drop unused parameter from configfs_undepend_item() (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: Show address of tpg in configfs (Maurizio Lombardi) [1366062]
-- [target] fix COMPARE_AND_WRITE non zero SGL offset data corruption (Maurizio Lombardi) [1366062]
-- [target] Invoke release_cmd() callback without holding a spinlock (Maurizio Lombardi) [1366062]
-- [target] Fix race for SCF_COMPARE_AND_WRITE_POST checking (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: return -ENOMEM instead of -1 in case of failed kmalloc() (Maurizio Lombardi) [1366062]
-- [target] use per-attribute show and store methods (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Avoid OFMarker + IFMarker negotiation (Maurizio Lombardi) [1366062]
-- [target] Make TCM_WRITE_PROTECT failure honor D_SENSE bit (Maurizio Lombardi) [1366062]
-- [target] Fix target_sense_desc_format NULL pointer dereference (Maurizio Lombardi) [1366062]
-- [target] Propigate backend read-only to core_tpg_add_lun (Maurizio Lombardi) [1366062]
-- [target] Fix PR registration + APTPL RCU conversion regression (Maurizio Lombardi) [1366062]
-- [target] Remove no-op conditional (Maurizio Lombardi) [1366062]
-- [target] Fix max_cmd_sn increment w/o cmdsn mutex regressions (Maurizio Lombardi) [1366062]
-- [target] Attach EXTENDED_COPY local I/O descriptors to xcopy_pt_sess (Maurizio Lombardi) [1366062]
-- [target] target/qla2xxx: Honor max_data_sg_nents I/O transfer limit (Maurizio Lombardi) [1366062]
-- [target] Drop iSCSI use of mutex around max_cmd_sn increment (Maurizio Lombardi) [1366062]
-- [target] Drop unlikely before IS_ERR(_OR_NULL) (Maurizio Lombardi) [1366062]
-- [target] Shrink struct se_cmd by rearranging fields (Maurizio Lombardi) [1366062]
-- [target] Remove cmd->se_ordered_id (unused except debug log lines) (Maurizio Lombardi) [1366062]
-- [target] add support for START_STOP_UNIT SCSI opcode (Maurizio Lombardi) [1366062]
-- [target] improve unsupported opcode message (Maurizio Lombardi) [1366062]
-- [target] allow underflow/overflow for PR OUT etc. commands (Maurizio Lombardi) [1366062]
-- [target] remove initiatorname field in se_acl_lun (Maurizio Lombardi) [1366062]
-- [target] remove unused lun_flags field from se_lun (Maurizio Lombardi) [1366062]
-- [target] Return descriptor format sense data in case the LU spans 64bit sectors (Maurizio Lombardi) [1366062]
-- [target] Return ABORTED_COMMAND sense key for PI errors (Maurizio Lombardi) [1366062]
-- [target] Split transport_send_check_condition_and_sense() (Maurizio Lombardi) [1366062]
-- [target] Inline transport_get_sense_codes() (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: Send I_T_NEXUS_LOSS_OCCURRED UA (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: Remove SAS vestigies (Maurizio Lombardi) [1366062]
-- [target] target/rd: always chain S/G list (Maurizio Lombardi) [1366062]
-- [target] Fix handling of small allocation lengths in REPORT LUNS (Maurizio Lombardi) [1366062]
-- [target] REPORT LUNS should return LUN 0 even for dynamic ACLs (Maurizio Lombardi) [1366062]
-- [target] target/iscsi: Fix double free of a TUR followed by a solicited NOPOUT (Maurizio Lombardi) [1366062]
-- [target] Perform RCU callback barrier before backend/fabric unload (Maurizio Lombardi) [1366062]
-- [target] target/configfs: handle match_int() errors (Maurizio Lombardi) [1366062]
-- [target] Do not return 0 from aptpl and alua configfs store functions (Maurizio Lombardi) [1366062]
-- [target] Indicate success if writing 0 to pi_prot_type (Maurizio Lombardi) [1366062]
-- [target] target/rd: Set ramdisk as non rotational device (Maurizio Lombardi) [1366062]
-- [target] Add extra TYPE_DISK + protection checks for INQUIRY SPT (Maurizio Lombardi) [1366062]
-- [target] target/spc: Set SPT correctly in Extended INQUIRY Data VPD page (Maurizio Lombardi) [1366062]
-- [target] target/pr: Fix possible uninitialized variable usage (Maurizio Lombardi) [1366062]
-- [target] Bump core version to v5.0 (Maurizio Lombardi) [1366062]
-- [target] remove target_core_configfs.h (Maurizio Lombardi) [1366062]
-- [target] remove unused TARGET_CORE_CONFIG_ROOT define (Maurizio Lombardi) [1366062]
-- [target] consolidate version defines (Maurizio Lombardi) [1366062]
-- [target] implement WRITE_SAME with UNMAP bit using ->execute_unmap (Maurizio Lombardi) [1366062]
-- [target] simplify UNMAP handling (Maurizio Lombardi) [1366062]
-- [target] replace se_cmd->execute_rw with a protocol_data field (Maurizio Lombardi) [1366062]
-- [target] Send UA when changing LUN inventory (Maurizio Lombardi) [1366062]
-- [target] Send UA upon LUN RESET tmr completion (Maurizio Lombardi) [1366062]
-- [target] Send UA on ALUA target port group change (Maurizio Lombardi) [1366062]
-- [target] Convert se_lun->lun_deve_lock to normal spinlock (Maurizio Lombardi) [1366062]
-- [target] use 'se_dev_entry' when allocating UAs (Maurizio Lombardi) [1366062]
-- [target] Remove 'ua_nacl' pointer from se_ua structure (Maurizio Lombardi) [1366062]
-- [target] Remove TARGET_MAX_LUNS_PER_TRANSPORT (Maurizio Lombardi) [1366062]
-- [target] use 64-bit LUNs (Maurizio Lombardi) [1366062]
-- [target] Drop duplicate + unused se_dev_check_wce (Maurizio Lombardi) [1366062]
-- [target] Drop unnecessary core_tpg_register TFO parameter (Maurizio Lombardi) [1366062]
-- [target] Drop se_lun->lun_active for existing percpu lun_ref (Maurizio Lombardi) [1366062]
-- [target] Drop lun_sep_lock for se_lun->lun_se_dev RCU usage (Maurizio Lombardi) [1366062]
-- [target] Subsume se_port + t10_alua_tg_pt_gp_member into se_lun (Maurizio Lombardi) [1366062]
-- [target] Simplify LUN shutdown code (Maurizio Lombardi) [1366062]
-- [target] simplify backend attribute implementation (Maurizio Lombardi) [1366062]
-- [target] consolidate backend attribute implementations (Maurizio Lombardi) [1366062]
-- [target] simplify backend driver registration (Maurizio Lombardi) [1366062]
-- [target] Drop left-over se_lun->lun_status (Maurizio Lombardi) [1366062]
-- [target] Only reset specific dynamic entries during lun_group creation (Maurizio Lombardi) [1366062]
-- [target] Drop unused se_lun->lun_acl_list (Maurizio Lombardi) [1366062]
-- [target] Convert core_tpg_deregister to use list splice (Maurizio Lombardi) [1366062]
-- [target] Convert se_tpg->acl_node_lock to ->acl_node_mutex (Maurizio Lombardi) [1366062]
-- [target] Convert se_portal_group->tpg_lun_list to RCU hlist (Maurizio Lombardi) [1366062]
-- [target] target/pr: cleanup core_scsi3_pr_seq_non_holder (Maurizio Lombardi) [1366062]
-- [target] target/pr: Change alloc_registration to avoid pr_reg_tg_pt_lun (Maurizio Lombardi) [1366062]
-- [target] target/pr: Use atomic bitop for se_dev_entry->deve_flags reservation check (Maurizio Lombardi) [1366062]
-- [target] Convert se_node_acl->device_list to RCU hlist (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: fix variable name typo in iscsi_check_acceptor_state() (Maurizio Lombardi) [1366062]
-- [target] fix a log message in se_dev_set_emulate_rest_reord() (Maurizio Lombardi) [1366062]
-- [target] remove ->put_session method (Maurizio Lombardi) [1366062]
-- [target] target_core_configfs.h is not needed in fabric drivers (Maurizio Lombardi) [1366062]
-- [target] remove struct target_fabric_configfs_template (Maurizio Lombardi) [1366062]
-- [target] put struct target_fabric_configfs on a diet (Maurizio Lombardi) [1366062]
-- [target] don't copy fabric ops (Maurizio Lombardi) [1366062]
-- [target] Remove set-but-not-used-variables (Maurizio Lombardi) [1366062]
-- [target] Move task tag into struct se_cmd + support 64-bit tags (Maurizio Lombardi) [1366062]
-- [target] move transport ID handling to the core (Maurizio Lombardi) [1366062]
-- [lib] introduce crc_t10dif_update() (Maurizio Lombardi) [1366062]
-- [target] remove the get_fabric_proto_ident method (Maurizio Lombardi) [1366062]
-- [target] change core_tpg_register prototype (Maurizio Lombardi) [1366062]
-- [target] tcm_fc: stop using se_tpg_fabric_ptr (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: stop using se_tpg_fabric_ptr (Maurizio Lombardi) [1366062]
-- [target] target/iscsi: stop using se_tpg_fabric_ptr (Maurizio Lombardi) [1366062]
-- [target] handle odd SG mapping for data transfer memory (Maurizio Lombardi) [1366062]
-- [target] Fix inconsistent address passed to kunmap_atomic() in sbc_dif_copy_prot() (Maurizio Lombardi) [1366062]
-- [target] move node ACL allocation to core code (Maurizio Lombardi) [1366062]
-- [target] refactor node ACL allocation (Maurizio Lombardi) [1366062]
-- [target] refactor init/drop_nodeacl methods (Maurizio Lombardi) [1366062]
-- [target] make the tpg_get_default_depth method optional (Maurizio Lombardi) [1366062]
-- [target] sbp_target: remove struct sbp_nacl (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: remove struct tcm_loop_nacl (Maurizio Lombardi) [1366062]
-- [target] target/transport: Always initialize bidi fields in se_cmd (Maurizio Lombardi) [1366062]
-- [target] target/loop: Enable VARLEN CDB support (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: remove support for obsolete markers (Maurizio Lombardi) [1366062]
-- [target] fix DPO and FUA bit checks (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Fix sbc_dif_verify inconsistent map/unmap (Maurizio Lombardi) [1366062]
-- [target] target/file: Remove fd_prot bounce buffer (Maurizio Lombardi) [1366062]
-- [target] Merge sbc_verify_dif_read|write (Maurizio Lombardi) [1366062]
-- [target] use kvfree() in session alloc and free (Maurizio Lombardi) [1366062]
-- [target] Correct a comment (Maurizio Lombardi) [1366062]
-- [target] Move passthrough CDB parsing into a common function (Maurizio Lombardi) [1366062]
-- [target] Fix se_tpg_tfo->tf_subsys regression + remove tf_subsystem (Maurizio Lombardi) [1366062]
-- [target] Drop signal_pending checks after interruptible lock acquire (Maurizio Lombardi) [1366062]
-- [target] Add missing parentheses (Maurizio Lombardi) [1366062]
-- [target] Fix bidi command handling (Maurizio Lombardi) [1366062]
-- [target] iscsi: fix minor memory leak (Maurizio Lombardi) [1366062]
-- [target] Make core_tmr_abort_task() skip TMFs (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Update sbc_dif_generate pr_debug output (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Make internal DIF emulation honor ->prot_checks (Maurizio Lombardi) [1366062]
-- [target] target/sbc: Return INVALID_CDB_FIELD if DIF + sess_prot_type disabled (Maurizio Lombardi) [1366062]
-- [target] Ensure sess_prot_type is saved across session restart (Maurizio Lombardi) [1366062]
-- [target] target/rd: Don't pass incomplete scatterlist entries to sbc_dif_verify_* (Maurizio Lombardi) [1366062]
-- [target] Remove the unused flag SCF_ACK_KREF (Maurizio Lombardi) [1366062]
-- [target] simplify the target template registration API (Maurizio Lombardi) [1366062]
-- [target] Update fabric_ops to latest code (Maurizio Lombardi) [1366062]
-- [target] replace strict_strtoul() with kstrtoul() (Maurizio Lombardi) [1366062]
-- [target] simplify target_xcopy_init_pt_lun (Maurizio Lombardi) [1366062]
-- [target] remove the unused SCF_CMD_XCOPY_PASSTHROUGH flag (Maurizio Lombardi) [1366062]
-- [target] target/rd: reduce code duplication in rd_execute_rw() (Maurizio Lombardi) [1366062]
-- [target] tcm_loop: fixup tpgt string to integer conversion (Maurizio Lombardi) [1366062]
-- [target] iscsi/iser-target: Add fabric_prot_type attribute support (Maurizio Lombardi) [1366062]
-- [target] loopback: Add fabric_prot_type attribute support (Maurizio Lombardi) [1366062]
-- [target] target/rd: Add checks for backend DIF emulation (Maurizio Lombardi) [1366062]
-- [target] target/iblock: Add checks for backend DIF emulation (Maurizio Lombardi) [1366062]
-- [target] target/file: Add checks for backend DIF emulation (Maurizio Lombardi) [1366062]
-- [target] Add internal READ_INSERT support (Maurizio Lombardi) [1366062]
-- [target] Move cmd->prot_op check into target_read_prot_action (Maurizio Lombardi) [1366062]
-- [target] Add internal WRITE_STRIP support (Maurizio Lombardi) [1366062]
-- [target] Move cmd->prot_op check into target_write_prot_action (Maurizio Lombardi) [1366062]
-- [target] Update SPC/SBC emulation for sess_prot_type (Maurizio Lombardi) [1366062]
-- [target] Add protected fabric + unprotected device support (Maurizio Lombardi) [1366062]
-- [target] Convert DIF emulation to use cmd->prot_type (Maurizio Lombardi) [1366062]
-- [target] add missing sense_reason_t annotations (Maurizio Lombardi) [1366062]
-- [target] add __releases annotation to target_release_cmd_kref (Maurizio Lombardi) [1366062]
-- [target] mark tcm_loop_primary static (Maurizio Lombardi) [1366062]
-- [target] move external declarations to a headers (Maurizio Lombardi) [1366062]
-- [target] Better handling of AllRegistrants reservations (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Drop legacy iscsi_target_tq.c logic (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: don't export static symbol (Maurizio Lombardi) [1366062]
-- [target] Convert fabric module autoload failures to pr_debug (Maurizio Lombardi) [1366062]
-- [target] iscsi-target: Expose per endpoint dynamic_sessions attribute (Maurizio Lombardi) [1366062]
-- [target] Add target_show_dynamic_sessions attribute helper (Maurizio Lombardi) [1366062]
-
-* Tue Oct 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-752.el7]
-- [kernel] radix-tree: RHEL-only kABI patch (Larry Woodman) [1383492]
-- [kernel] radix-tree tests: properly initialize mutex (Larry Woodman) [1383492]
-- [kernel] radix-tree tests: add iteration test (Larry Woodman) [1383492]
-- [kernel] radix tree: fix sibling entry handling in radix_tree_descend() (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: Test radix_tree_replace_slot() for multiorder entries (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix comment about "exceptional" bits (Larry Woodman) [1383492]
-- [kernel] tools/testing/radix-tree/linux/gfp.h: fix bitrotted value (Larry Woodman) [1383492]
-- [kernel] radix-tree: implement radix_tree_maybe_preload_order() (Larry Woodman) [1383492]
-- [kernel] testing/radix-tree: fix a macro expansion bug (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix radix_tree_iter_retry() for tagged iterators (Larry Woodman) [1383492]
-- [kernel] radix-tree: free up the bottom bit of exceptional entries for reuse (Larry Woodman) [1383492]
-- [kernel] radix-tree: make radix_tree_descend() more useful (Larry Woodman) [1383492]
-- [kernel] radix-tree: introduce radix_tree_replace_clear_tags() (Larry Woodman) [1383492]
-- [kernel] radix-tree: tidy up __radix_tree_create() (Larry Woodman) [1383492]
-- [kernel] radix-tree: tidy up range_tag_if_tagged (Larry Woodman) [1383492]
-- [kernel] radix-tree: tidy up next_chunk (Larry Woodman) [1383492]
-- [kernel] radix-tree: change naming conventions in radix_tree_shrink (Larry Woodman) [1383492]
-- [kernel] radix-tree: rename radix_tree_is_indirect_ptr() (Larry Woodman) [1383492]
-- [kernel] radix-tree: rename indirect_to_ptr() to entry_to_node() (Larry Woodman) [1383492]
-- [kernel] radix-tree: rename ptr_to_indirect() to node_to_entry() (Larry Woodman) [1383492]
-- [kernel] radix-tree: rename INDIRECT_PTR to INTERNAL_NODE (Larry Woodman) [1383492]
-- [kernel] radix-tree: remove root->height (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: remove dependencies on height (Larry Woodman) [1383492]
-- [kernel] radix-tree: remove a use of root->height from delete_node (Larry Woodman) [1383492]
-- [kernel] radix-tree: replace node->height with node->shift (Larry Woodman) [1383492]
-- [kernel] radix-tree: split node->path into offset and height (Larry Woodman) [1383492]
-- [kernel] radix-tree: miscellaneous fixes (Larry Woodman) [1383492]
-- [kernel] radix-tree: add copyright statements (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix radix_tree_dump() for multi-order entries (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix radix_tree_range_tag_if_tagged() for multiorder entries (Larry Woodman) [1383492]
-- [kernel] radix-tree: add test for radix_tree_locate_item() (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite radix_tree_locate_item (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix radix_tree_create for sibling entries (Larry Woodman) [1383492]
-- [kernel] radix-tree test suite: add multi-order tag test (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite radix_tree_tag_get (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite radix_tree_tag_clear (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite radix_tree_tag_set (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: multi-order iteration test (Larry Woodman) [1383492]
-- [kernel] radix-tree: add support for multi-order iterating (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix multiorder BUG_ON in radix_tree_insert (Larry Woodman) [1383492]
-- [kernel] radix-tree: rewrite __radix_tree_lookup (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix several shrinking bugs with multiorder entries (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: start adding multiorder tests (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix extending the tree for multi-order entries at offset 0 (Larry Woodman) [1383492]
-- [kernel] radix-tree: introduce radix_tree_load_root() (Larry Woodman) [1383492]
-- [kernel] radix-tree: remove restriction on multi-order entries (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix deleting a multi-order entry through an alias (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix sibling entry insertion (Larry Woodman) [1383492]
-- [kernel] radix-tree: add missing sibling entry functionality (Larry Woodman) [1383492]
-- [kernel] radix-tree: introduce CONFIG_RADIX_TREE_MULTIORDER (Larry Woodman) [1383492]
-- [kernel] radix-tree: remove unused looping macros (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: rebuild when headers change (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: keep regression test runs short (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: allow testing other fan-out values (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: add tests for radix_tree_locate_item() (Larry Woodman) [1383492]
-- [kernel] radix tree test suite: fix build (Larry Woodman) [1383492]
-- [kernel] radix-tree: introduce radix_tree_empty (Larry Woodman) [1383492]
-- [kernel] radix-tree tests: add test for radix_tree_iter_next (Larry Woodman) [1383492]
-- [kernel] radix-tree tests: add regression3 test (Larry Woodman) [1383492]
-- [kernel] radix-tree, shmem: introduce radix_tree_iter_next() (Larry Woodman) [1383492]
-- [kernel] radix_tree: add radix_tree_dump (Larry Woodman) [1383492]
-- [kernel] radix_tree: add support for multi-order entries (Larry Woodman) [1383492]
-- [kernel] radix_tree: loop based on shift count, not height (Larry Woodman) [1383492]
-- [kernel] radix_tree: tag all internal tree nodes as indirect pointers (Larry Woodman) [1383492]
-- [kernel] radix tree test harness (Larry Woodman) [1383492]
-- [kernel] radix-tree: add an explicit of bitops.h (Larry Woodman) [1383492]
-- [kernel] radix-tree: fix oops after radix_tree_iter_retry (Larry Woodman) [1383492]
-- [kernel] linux/radix-tree.h: fix error in docs about locks (Larry Woodman) [1383492]
-- [kernel] radix-tree: replace preallocated node array with linked list (Larry Woodman) [1383492]
-- [kernel] lib/radix-tree.c: change to simpler include (Larry Woodman) [1383492]
-- [kernel] lib/radix-tree.c: kernel-doc warning fix (Larry Woodman) [1383492]
-- [kernel] mm: replace __get_cpu_var uses with this_cpu_ptr (Larry Woodman) [1383492]
-- [kernel] lib/radix-tree.c: swapoff tmpfs radix_tree: remember to rcu_read_unlock (Larry Woodman) [1383492]
-
-* Tue Oct 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-751.el7]
-- [powerpc] perf: Cleanup of PM_BR_CMPL vs. PM_BRU_CMPL in Power9 event list (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add PM_LD_MISS_L1 and PM_BR_2PATH to power9 event list (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Factor out PPMU_ONLY_COUNT_RUN check code from power8 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Update default sdar_mode value for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add POWER9 alternate PM_RUN_CYC and PM_RUN_INST_CMPL events (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix SDAR_MODE value for continous sampling on Power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix branch event code for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix oops when kthread execs user process (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix Power9 test_adder fields (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add Power8 mem_access event to sysfs (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Support to export SIERs bit in Power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Support to export SIERs bit in Power8 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Support to export MMCRA[TEC*] field to userspace (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Export memory hierarchy info to user space (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Handle sdar_mode for marked event in power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix perf_get_data_addr() for power9 DD1 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: use is_kernel_addr macro in perf_get_misc_flags() (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Avoid FAB_*_MATCH checks for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add restrictions to PMC5 in power9 DD1 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Use Instruction Counter value (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Use PM_INST_DISP for generic instructions sample (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add alternative event table and function for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add PM_INST_DISP event to Power9 event list (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Factor out event_alternative function (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Use MSR to report privilege level on P9 DD1 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix PM_BRU_CMPL event code for power9 (Mauricio Oliveira) [1494439]
-- [powerpc] perf: macros for power9 format encoding (Mauricio Oliveira) [1494439]
-- [powerpc] perf: power9 raw event format encoding (Mauricio Oliveira) [1494439]
-- [powerpc] perf: update attribute_group data structure (Mauricio Oliveira) [1494439]
-- [powerpc] perf: factor out the event format field (Mauricio Oliveira) [1494439]
-- [powerpc] sparse: Make a bunch of things static (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix incorrect event codes in power9-event-list (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Export Power9 generic and cache events to sysfs (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Power9 PMU support (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Add power9 event list macros for generic and cache events (Mauricio Oliveira) [1494439]
-- [powerpc] perf: factor out power8 pmu functions (Mauricio Oliveira) [1494439]
-- [powerpc] perf: factor out power8 pmu macros and defines (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix ABIv2 kernel backtraces (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Clear all MMCR settings before calling compute_mmcr() (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Replace raw event hex values with #defines (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Fix misleading comment in pmao_restore_workaround() (Mauricio Oliveira) [1494439]
-- [powerpc] perf/hv-gpci: Increase request buffer size (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Remove PPMU_HAS_SSLOT flag for Power8 (Mauricio Oliveira) [1494439]
-- [powerpc] perf/powerpc: Add support for PERF_SAMPLE_BRANCH_CALL (Mauricio Oliveira) [1494439]
-- [powerpc] perf: Change type of the bhrb_users variable (Mauricio Oliveira) [1494439]
-- [powerpc] book3s: Add a cpu table entry for different POWER9 revs (Mauricio Oliveira) [1494439]
-- [powerpc] Add POWER9 cputable entry (Mauricio Oliveira) [1494439]
-- [powerpc] Add HWCAP bits for Power9 (Mauricio Oliveira) [1494439]
-- [powerpc] Use defines for __init_tlb_power[78] (Mauricio Oliveira) [1494439]
-- [powerpc] book3s: Fix flush_tlb cpu_spec hook to take a generic argument (Mauricio Oliveira) [1494439]
-
-* Tue Oct 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-750.el7]
-- [s390] virtio/s390: deprecate old transport (Thomas Huth) [1495285]
-- [s390] virtio: change virtio_feature_desc:features type to __le32 (Thomas Huth) [1495285]
-- [s390] virtio/s390: virtio: constify virtio_config_ops structures (Thomas Huth) [1495285]
-- [s390] virtio/s390: add missing \n to end of dev_err message (Thomas Huth) [1495285]
-- [s390] virtio/s390: support READ_STATUS command for virtio-ccw (Thomas Huth) [1495285]
-- [s390] virtio: make ccw explicitly non-modular (Thomas Huth) [1495285]
-- [s390] virtio/s390: size of SET_IND payload (Thomas Huth) [1495285]
-- [s390] virtio/s390: use dev_to_virtio (Thomas Huth) [1495285]
-- [s390] virtio: make find_vqs() checkpatch.pl-friendly [s390x part] (Thomas Huth) [1495285]
-- [s390] virtio/s390: handle error values in irb (Thomas Huth) [1495285]
-- [s390] virtio/s390: handle failures of READ_VQ_CONF ccw (Thomas Huth) [1495285]
-- [s390] virtio/s390: rename s390/kvm -> drivers/s390/virtio (Thomas Huth) [1495285]
-- [s390] kvm: s390: virtio-ccw: don't overwrite config space values (Thomas Huth) [1495285]
-- [s390] kvm: s390: virtio_ccw: remove unused variable (Thomas Huth) [1495285]
-- [s390] s390/crypt: use the correct module alias for paes_s390 (Hendrik Brueckner) [1380348]
-- [s390] s390/crypt: fix missing unlock in ctr_paes_crypt on error path (Hendrik Brueckner) [1380348]
-- [s390] s390/crypt: Add protected key AES module (Hendrik Brueckner) [1380348]
-- [iommu] vt-d: Tylersburg isoch identity map check is done too late (Jerry Snitselaar) [1457037]
-- [pinctrl] pinctrl/amd: save pin registers over suspend/resume (Prarit Bhargava) [1499279]
-- [pinctrl] pinctrl: amd: fix error return code in amd_gpio_probe() (Prarit Bhargava) [1499279]
-- [pinctrl] pinctrl/amd: Use regular interrupt instead of chained (Prarit Bhargava) [1499279]
-- [pinctrl] pinctrl/amd: Update contact information for AMD pinctrl/amd (Prarit Bhargava) [1499279]
-- [pinctrl] pinctrl: amd: make use of raw_spinlock variants (Prarit Bhargava) [1499279]
-- [cpufreq] Fix suspend/resume (Prarit Bhargava) [1499802]
-
-* Mon Oct 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-749.el7]
-- [iommu] kvm: svm: Add irqchip_split() checks before enabling AVIC (Jerry Snitselaar) [1484757]
-- [iommu] kvm: Add struct kvm_vcpu pointer parameter to get_enable_apicv() (Jerry Snitselaar) [1484757]
-- [iommu] kvm: svm: Refactor AVIC vcpu initialization into avic_init_vcpu() (Jerry Snitselaar) [1484757]
-- [iommu] amd: Check if domain is NULL in get_domain() and return -EBUSY (Jerry Snitselaar) [1062729]
-- [iommu] amd: Fix section mismatch warning (Jerry Snitselaar) [1062729]
-- [iommu] amd: Fix compiler warning in copy_device_table() (Jerry Snitselaar) [1062729]
-- [iommu] amd: Disable iommu only if amd_iommu=off is specified (Jerry Snitselaar) [1062729]
-- [iommu] amd: Disable IOMMUs at boot if they are enabled (Jerry Snitselaar) [1062729]
-- [iommu] amd: Don't copy GCR3 table root pointer (Jerry Snitselaar) [1062729]
-- [iommu] amd: Allocate memory below 4G for dev table if translation pre-enabled (Jerry Snitselaar) [1062729]
-- [iommu] amd: Use is_attach_deferred call-back (Jerry Snitselaar) [1062729]
-- [iommu] Add is_attach_deferred call-back to iommu-ops (Jerry Snitselaar) [1062729]
-- [iommu] amd: Do sanity check for address translation and irq remap of old dev table entry (Jerry Snitselaar) [1062729]
-- [iommu] amd: Copy old trans table from old kernel (Jerry Snitselaar) [1062729]
-- [iommu] amd: Add function copy_dev_tables() (Jerry Snitselaar) [1062729]
-- [iommu] amd: Define bit fields for DTE particularly (Jerry Snitselaar) [1062729]
-- [iommu] amd: Add several helper functions (Jerry Snitselaar) [1062729]
-- [iommu] amd: Detect pre enabled translation (Jerry Snitselaar) [1062729]
-- [iommu] amd: Enable ga_log_intr when enabling guest_mode (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix interrupt remapping when disable guest_mode (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix IOMMU lookup for SR-IOV Virtual Functions (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Make sure RMRRs are mapped before domain goes public (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Split up get_domain_for_dev function (Jerry Snitselaar) [1499325]
-- [iommu] kvm: svm: fix unsigned compare less than zero comparison (Jerry Snitselaar) [1133711]
-- [iommu] svm: Implements update_pi_irte hook to setup posted interrupt (Jerry Snitselaar) [1133711]
-- [iommu] svm: Introduce AMD IOMMU avic_ga_log_notifier (Jerry Snitselaar) [1133711]
-- [iommu] svm: Introduces AVIC per-VM ID (Jerry Snitselaar) [1133711]
-- [iommu] kvm: Provide function for VCPU lookup by id (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix the left value check of cmd buffer (Jerry Snitselaar) [1411581]
-- [iommu] amd: Missing error code in amd_iommu_init_device() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix group refcounting (Jerry Snitselaar) [1411581]
-- [iommu] amd: Tell kmemleak about the irq_remap_table (Jerry Snitselaar) [1411581]
-- [iommu] Allow taking a reference on a group directly (Jerry Snitselaar) [1411581]
-- [iommu] Use irte_ops->set_affinity() function hook (Jerry Snitselaar) [1411581]
-- [iommu] Handle 32 and 128-bit interrupt remapping table entry (Jerry Snitselaar) [1411581]
-- [iommu] amd: Enable vAPIC interrupt remapping mode by default (Jerry Snitselaar) [1411581]
-- [iommu] amd: Implements irq_set_vcpu_affinity() hook to setup vapic mode for pass-through devices (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduce amd_iommu_update_ga() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Adding GALOG interrupt handler (Jerry Snitselaar) [1411581]
-- [iommu] amd: Detect and initialize guest vAPIC log (Jerry Snitselaar) [1411581]
-- [iommu] amd: Add support for multiple IRTE formats (Jerry Snitselaar) [1411581]
-- [iommu] x86/irq: Add struct amd_ir_data pointer in struct irq_2_irte (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduce interrupt remapping ops structure (Jerry Snitselaar) [1411581]
-- [iommu] amd: Move and introduce new IRTE-related unions and structures (Jerry Snitselaar) [1411581]
-- [iommu] amd: Detect and enable guest vAPIC support (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix boot warning when device 00:00.0 is not iommu covered (Jerry Snitselaar) [1411581]
-- [iommu] amd: Adding Extended Feature Register check for PC support (Jerry Snitselaar) [1411581]
-- [iommu] amd: No need to wait iommu completion if no dte irq entry change (Jerry Snitselaar) [1411581]
-- [iommu] amd: Free domain id when free a domain of struct dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use standard bitmap operation to set bitmap (Jerry Snitselaar) [1411581]
-- [iommu] amd: Clean up the cmpxchg64 invocation (Jerry Snitselaar) [1411581]
-- [iommu] amd: Don't put completion-wait semaphore on stack (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove AMD_IOMMU_STATS (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix non static symbol warning (Jerry Snitselaar) [1411581]
-- [iommu] Simplify and fix ida handling (Jerry Snitselaar) [1499325]
-- [iommu] Simplify init function (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Remove unnecassary qi clflushes (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Don't reject NTB devices due to scope mismatch (Jerry Snitselaar) [1499325]
-- [iommu] amd: Initialize dma-ops domains with 3-level page-table (Jerry Snitselaar) [1411581]
-- [iommu] amd: Update Alias-DTE in update_device_table() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use container_of to get dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush iova queue before releasing dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Handle IOMMU_DOMAIN_DMA in ops->domain_free call-back (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use dev_data->domain in get_domain() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Optimize map_sg and unmap_sg (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduce dir2prot() helper (Jerry Snitselaar) [1411581]
-- [iommu] amd: Implement timeout to flush unmap queues (Jerry Snitselaar) [1411581]
-- [iommu] amd: Implement flush queue (Jerry Snitselaar) [1411581]
-- [iommu] amd: Allow NULL pointer parameter for domain_flush_complete() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Set up data structures for flush queue (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove align-parameter from __map_single() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove other remains of old address allocator (Jerry Snitselaar) [1411581]
-- [iommu] amd: Make use of the generic IOVA allocator (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove special mapping code for dma_ops path (Jerry Snitselaar) [1411581]
-- [iommu] amd: Pass gfp-flags to iommu_map_page() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Implement apply_dm_region call-back (Jerry Snitselaar) [1411581]
-- [iommu] amd: Create a list of reserved iova addresses (Jerry Snitselaar) [1411581]
-- [iommu] amd: Allocate iova_domain for dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Select IOMMU_IOVA for AMD IOMMU (Jerry Snitselaar) [1499325]
-- [iommu] Add apply_dm_region call-back to iommu-ops (Jerry Snitselaar) [1411581]
-- [iommu] remove unused priv field from struct iommu_ops (Jerry Snitselaar) [1411581]
-- [iommu] Add MMIO mapping type (Jerry Snitselaar) [1411581]
-- [iommu] provide of_xlate pointer unconditionally (Jerry Snitselaar) [1411581]
-- [iommu] Update struct iommu_ops comments (Jerry Snitselaar) [1411581]
-- [iommu] amd: Init unity mappings only for dma_ops domains (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove create_workqueue (Jerry Snitselaar) [1411581]
-- [iommu] amd: Set AMD iommu callbacks for platform bus driver (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix infinite loop in free_all_cpu_cached_iovas (Jerry Snitselaar) [1499325]
-- [iommu] amd: Initialize devid variable before using it (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix overflow of iommu->domains array (Jerry Snitselaar) [1499325]
-- [iommu] iova: Disable preemption around use of this_cpu_ptr() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Enable QI on all IOMMUs before setting root entry (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Use per-cpu IOVA caching (Jerry Snitselaar) [1499325]
-- [iommu] iova: introduce per-cpu caching to iova allocation (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: change intel-iommu to use IOVA frame numbers (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: only unmap mapped entries (Jerry Snitselaar) [1499325]
-- [iommu] intel-iommu: integrate DMA CMA (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: correct flush_unmaps pfn usage (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: per-cpu deferred invalidation queues (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: refactoring of deferred flush entries (Jerry Snitselaar) [1499325]
-- [iommu] amd: Remove statistics code (Jerry Snitselaar) [1411581]
-- [iommu] amd: Don't use IS_ERR_VALUE to check integer values (Jerry Snitselaar) [1411581]
-- [iommu] amd: Signedness bug in acpihid_device_group() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Set AMD iommu callbacks for amba bus (Jerry Snitselaar) [1411581]
-- [iommu] amd: Manage iommu_group for ACPI HID devices (Jerry Snitselaar) [1411581]
-- [iommu] amd: Add iommu support for ACPI HID devices (Jerry Snitselaar) [1411581]
-- [iommu] acpi: Add acpi_device_uid() for convenience (Jerry Snitselaar) [1411581]
-- [iommu] amd: Make call-sites of get_device_id aware of its return value (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduces ivrs_acpihid kernel parameter (Jerry Snitselaar) [1411581]
-- [iommu] amd: Add new map for storing IVHD dev entry type HID (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix checking of pci dma aliases (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use the most comprehensive IVHD type that the driver can support (Jerry Snitselaar) [1411581]
-- [iommu] amd: Modify ivhd_header structure to support type 11h and 40h (Jerry Snitselaar) [1411581]
-- [iommu] Allow selecting page sizes per domain (Jerry Snitselaar) [1411581]
-- [iommu] x86/vt-d: Fix comment for dma_pte_free_pagetable() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Improve fault handler error messages (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Ratelimit fault handler (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Silence an uninitialized variable warning (Jerry Snitselaar) [1499325]
-- [iommu] Don't overwrite domain pointer when there is no default_domain (Jerry Snitselaar) [1499325]
-- [iommu] Fix second argument of trace_map() to report correct paddr (Jerry Snitselaar) [1499325]
-- [iommu] amd: Make a symbol static (Jerry Snitselaar) [1411581]
-- [iommu] perf/x86/amd: Add IOMMU Performance Counter resource management (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Use BUS_NOTIFY_REMOVED_DEVICE in hotplug path (Jerry Snitselaar) [1499325]
-- [iommu] amd: Detach device from domain before removal (Jerry Snitselaar) [1411581]
-- [iommu] amd: Apply workaround for ATS write permission check (Jerry Snitselaar) [1411581]
-- [iommu] amd: Correct the wrong setting of alias DTE in do_attach (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix 64-bit accesses to 32-bit DMAR_GSTS_REG (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Fix up error handling in alloc_iommu (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Check the return value of iommu_device_create() (Jerry Snitselaar) [1499325]
-- [iommu] amd: Preallocate dma_ops apertures based on dma_mask (Jerry Snitselaar) [1411581]
-- [iommu] amd: Use trylock to aquire bitmap_lock (Jerry Snitselaar) [1411581]
-- [iommu] amd: Make dma_ops_domain->next_index percpu (Jerry Snitselaar) [1411581]
-- [iommu] amd: Relax locking in dma_ops path (Jerry Snitselaar) [1411581]
-- [iommu] amd: Initialize new aperture range before making it visible (Jerry Snitselaar) [1411581]
-- [iommu] amd: Build io page-tables with cmpxchg64 (Jerry Snitselaar) [1411581]
-- [iommu] amd: Allocate new aperture ranges in dma_ops_alloc_addresses (Jerry Snitselaar) [1411581]
-- [iommu] amd: Optimize dma_ops_free_addresses (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove need_flush from struct dma_ops_domain (Jerry Snitselaar) [1411581]
-- [iommu] amd: Iterate over all aperture ranges in dma_ops_area_alloc (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush iommu tlb in dma_ops_free_addresses (Jerry Snitselaar) [1411581]
-- [iommu] amd: Rename dma_ops_domain->next_address to next_index (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove 'start' parameter from dma_ops_area_alloc (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush iommu tlb in dma_ops_aperture_alloc() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Retry address allocation within one aperture (Jerry Snitselaar) [1411581]
-- [iommu] amd: Move aperture_range.offset to another cache-line (Jerry Snitselaar) [1411581]
-- [iommu] amd: Add dma_ops_aperture_alloc() function (Jerry Snitselaar) [1411581]
-- [iommu] amd: Pass correct shift to iommu_area_alloc() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush the IOMMU TLB before the addresses are freed (Jerry Snitselaar) [1411581]
-- [iommu] amd: Flush IOMMU TLB on __map_single error path (Jerry Snitselaar) [1411581]
-- [iommu] amd: Introduce bitmap_lock in struct aperture_range (Jerry Snitselaar) [1411581]
-- [iommu] amd: Move 'struct dma_ops_domain' definition to amd_iommu.c (Jerry Snitselaar) [1411581]
-- [iommu] amd: Warn only once on unexpected pte value (Jerry Snitselaar) [1411581]
-- [iommu] amd: Constify mmu_notifier_ops structures (Jerry Snitselaar) [1411581]
-- [iommu] amd: Cleanup error handling in do_fault() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Do proper access checking before calling handle_mm_fault() (Jerry Snitselaar) [1411581]
-- [iommu] Move default domain allocation to iommu_group_get_for_dev() (Jerry Snitselaar) [1499325]
-- [iommu] Remove is_pci_dev() fall-back from iommu_group_get_for_dev (Jerry Snitselaar) [1499325]
-- [iommu] Add device_group call-back to x86 iommu drivers (Jerry Snitselaar) [1411581]
-- [iommu] Add generic_device_group() function (Jerry Snitselaar) [1411581]
-- [iommu] Export and rename iommu_group_get_for_pci_dev() (Jerry Snitselaar) [1411581]
-- [iommu] Revive device_group iommu-ops call-back (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove find_last_devid_on_pci() (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove first/last_device handling (Jerry Snitselaar) [1411581]
-- [iommu] amd: Initialize amd_iommu_last_bdf for DEV_ALL (Jerry Snitselaar) [1411581]
-- [iommu] amd: Cleanup buffer allocation (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove cmd_buf_size and evt_buf_size from struct amd_iommu (Jerry Snitselaar) [1411581]
-- [iommu] amd: Align DTE flag definitions (Jerry Snitselaar) [1411581]
-- [iommu] amd: Remove old alias handling code (Jerry Snitselaar) [1411581]
-- [iommu] amd: Set alias DTE in do_attach/do_detach (Jerry Snitselaar) [1411581]
-- [iommu] amd: WARN when __[attach|detach]_device are called with irqs enabled (Jerry Snitselaar) [1411581]
-- [iommu] amd: Don't disable IRQs in __detach_device (Jerry Snitselaar) [1411581]
-- [iommu] amd: Do not iterate over alias-list in __[attach|detach]_device (Jerry Snitselaar) [1411581]
-- [iommu] amd: Do not BUG_ON in __detach_device() (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix return value check of parse_ioapics_under_ir() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Propagate error-value from ir_parse_ioapic_hpet_scope() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Adjust the return value of the parse_ioapics_under_ir (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Fix ATSR handling for Root-Complex integrated endpoints (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Switch from ioremap_cache to memremap (Jerry Snitselaar) [1499325]
-- [iommu] amd: Don't clear DTE flags when modifying it (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix BUG when faulting a PROT_NONE VMA (Jerry Snitselaar) [1411581]
-- [iommu] amd: Fix NULL pointer deref on device detach (Jerry Snitselaar) [1411581]
-- [iommu] amd: Prevent binding other PCI drivers to IOMMU PCI devices (Jerry Snitselaar) [1411581]
-- [iommu] amd: Drop null test before destroy functions (Jerry Snitselaar) [1411581]
-- [iommu] amd: Return positive value in amd_iommu_detect() (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Fix memory leak in dmar_insert_one_dev_info() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Access iomem correctly (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Make two functions static (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Use BUG_ON instead of if () BUG() (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Return false instead of 0 in irq_remapping_cap() (Jerry Snitselaar) [1499325]
-- [iommu] amd: Use BUG_ON instead of if () BUG() (Jerry Snitselaar) [1411581]
-- [iommu] vt-d: Report domain usage in sysfs (Jerry Snitselaar) [1499325]
-- [iommu] vt-d: Avoid format string leaks into iommu_device_create (Jerry Snitselaar) [1499325]
-- [iommu] Make the iova library a module (Jerry Snitselaar) [1411581]
-- [iommu] iova: Export symbols (Jerry Snitselaar) [1411581]
-- [iommu] iova: Move iova cache management to the iova library (Jerry Snitselaar) [1411581]
-- [iommu] iova: Avoid over-allocating when size-aligned (Jerry Snitselaar) [1499325]
-
-* Mon Oct 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-748.el7]
-- [netdrv] igbvf: convert msleep to mdelay in atomic context (Corinna Vinschen) [1454905]
-- [netdrv] igbvf: after mailbox write, wait for reply (Corinna Vinschen) [1454905]
-- [netdrv] igbvf: add lock around mailbox ops (Corinna Vinschen) [1454905]
-- [netdrv] igbvf: Use net_device_stats from struct net_device (Corinna Vinschen) [1454905]
-- [netdrv] igb/igbvf: Add VF MAC filter request capabilities (Corinna Vinschen) [1454905]
-- [netdrv] igbvf: use new API ethtool_{get|set}_link_ksettings (Corinna Vinschen) [1454905]
-- [netdrv] intel: use core min/max MTU checking (Corinna Vinschen) [1454905]
-- [netdrv] igb: do not drop PF mailbox lock after read of VF message (Corinna Vinschen) [1454902]
-- [netdrv] igb: expose mailbox unlock method (Corinna Vinschen) [1454902]
-- [netdrv] igb: add argument names to mailbox op function declarations (Corinna Vinschen) [1454902]
-- [netdrv] igb: Remove incorrect "unexpected SYS WRAP" log message (Corinna Vinschen) [1454902]
-- [netdrv] igb: protect TX timestamping from API misuse (Corinna Vinschen) [1454902]
-- [netdrv] igb: Fix error of RX network flow classification (Corinna Vinschen) [1454902]
-- [netdrv] igb: make a few local functions static (Corinna Vinschen) [1454902]
-- [netdrv] igb: Remove useless argument (Corinna Vinschen) [1454902]
-- [netdrv] igb: check for Tx timestamp timeouts during watchdog (Corinna Vinschen) [1454902]
-- [netdrv] igb: add statistic indicating number of skipped Tx timestamps (Corinna Vinschen) [1454902]
-- [netdrv] igb: avoid permanent lock of *_PTP_TX_IN_PROGRESS (Corinna Vinschen) [1454902]
-- [netdrv] igb: fix race condition with PTP_TX_IN_PROGRESS bits (Corinna Vinschen) [1454902]
-- [netdrv] igb: mark PM functions as __maybe_unused (Corinna Vinschen) [1454902]
-- [netdrv] igb: Explicitly select page 0 at initialization (Corinna Vinschen) [1454902]
-- [netdrv] igb: Enable reading of wake up packet (Corinna Vinschen) [1454902]
-- [netdrv] igb/igbvf: Add VF MAC filter request capabilities (Corinna Vinschen) [1454902]
-- [netdrv] igb: improve MAC filter handling (Corinna Vinschen) [1454902]
-- [netdrv] igb: use new API ethtool_{get|set}_link_ksettings (Corinna Vinschen) [1454902]
-- [netdrv] igb/ixgbe: Fix typo in igb_build_skb and/or ixgbe_build_skb code comment (Corinna Vinschen) [1454902]
-- [netdrv] igb: Re-add support for build_skb in igb (Corinna Vinschen) [1454902]
-- [netdrv] igb: Break out Rx buffer page management (Corinna Vinschen) [1454902]
-- [netdrv] igb: Add support for padding packet (Corinna Vinschen) [1454902]
-- [netdrv] igb: Add support for using order 1 pages to receive large frames (Corinna Vinschen) [1454902]
-- [netdrv] igb: Add support for ethtool private flag to allow use of legacy Rx (Corinna Vinschen) [1454902]
-- [netdrv] igb: Use page_address offset from page instead of masking virtual address (Corinna Vinschen) [1454902]
-- [netdrv] igb: Only sync size of expected frame in ethtool testing (Corinna Vinschen) [1454902]
-- [netdrv] igb: Limit maximum frame Rx based on MTU (Corinna Vinschen) [1454902]
-- [netdrv] igb: Don't bother clearing Tx buffer_info in igb_clean_tx_ring (Corinna Vinschen) [1454902]
-- [netdrv] igb: Clear Rx buffer_info in configure instead of clean (Corinna Vinschen) [1454902]
-- [netdrv] igb: Use length to determine if descriptor is done (Corinna Vinschen) [1454902]
-- [netdrv] igb: Add support for DMA_ATTR_WEAK_ORDERING (Corinna Vinschen) [1454902]
-- [netdrv] scripts/spelling.txt: add "overwritting" pattern and fix typo instances (Corinna Vinschen) [1454902]
-- [netdrv] mm: rename __page_frag functions to __page_frag_cache, drop order from drain (Corinna Vinschen) [1454902]
-- [netdrv] igb: update code to better handle incrementing page count (Corinna Vinschen) [1454902]
-- [netdrv] igb: update driver to make use of DMA_ATTR_SKIP_CPU_SYNC (Corinna Vinschen) [1454902]
-- [netdrv] ptp: igb: Use the high resolution frequency method (Corinna Vinschen) [1454902]
-- [netdrv] intel: use core min/max MTU checking (Corinna Vinschen) [1454902]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-747.el7]
-- [netdrv] netxen_nic: netxen_netdev_ops fields for MTU range checking (Tony Camuso) [1457478]
-- [netdrv] qlogic: make device_attribute const (Tony Camuso) [1457478]
-- [netdrv] netxen: fix incorrect loop counter decrement (Tony Camuso) [1457478]
-- [netdrv] netxen_nic: Remove unused pointer hdr in netxen_setup_minidump() (Tony Camuso) [1457478]
-- [netdrv] netxen_nic: set rcode to the return status from the call to netxen_issue_cmd (Tony Camuso) [1457478]
-- [netdrv] netxen_nic: remove redundant check if retries is zero (Tony Camuso) [1457478]
-- [netdrv] qlogic: netxen: constify bin_attribute structures (Tony Camuso) [1457478]
-- [netdrv] qlogic: netxen: use new api ethtool_{get|set}_link_ksettings (Tony Camuso) [1457478]
-- [netdrv] generalize napi_complete_done() (Tony Camuso) [1457478]
-- [netdrv] use net core MTU range checking in more drivers (Tony Camuso) [1457478]
-- [netdrv] be2net: fix TSO6/GSO issue causing TX-stall on Lancer/BEx (Ivan Vecera) [1449601]
-- [netdrv] benet: fix set but not used warning (Ivan Vecera) [1449601]
-- [netdrv] benet: Use time_before_eq for time comparison (Ivan Vecera) [1449601]
-- [netdrv] ethernet: use net core MTU range checking in more drivers (Ivan Vecera) [1449601]
-- [netdrv] bnx2x: Use pci_ari_enabled() instead of local copy (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: use setup_timer() helper (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: use core min/max MTU checking (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: fix format overflow warning (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: make a couple of const arrays static (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Don't log mc removal needlessly (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: fix pf2vf bulletin DMA mapping leak (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Fix Multi-Cos (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Remove open coded carrier check (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: spelling: correct diffrent[iate] and banlance typos (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Get rid of useless temporary variable (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Reuse bnx2x_null_format_ver() (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: Replace custom scnprintf() (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: fix spelling mistake in macros HW_INTERRUT_ASSERT_SET_* (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: fix typos in comment (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: generalize napi_complete_done() (Michal Schmidt) [1479145]
-- [netdrv] bnx2x: switch to napi_complete_done() (Michal Schmidt) [1479145]
-- [netdrv] intel: use core min/max MTU checking (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Bump version number (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Resolve warnings for -Wimplicit-fallthrough (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Resolve truncation warning for q_vector->name (Ken Cox) [1454899]
-- [netdrv] ixgbe/ixgbevf: Enables TSO for MPLS encapsulated packets (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Check for RSS key before setting value (Ken Cox) [1454899]
-- [netdrv] ixgbevf: Fix errors in retrieving RETA and RSS from PF (Ken Cox) [1454899]
-- [netdrv] ixgbevf: fix size of queue stats length (Ken Cox) [1454899]
-- [netdrv] ixgbevf: use new api ethtool_{get|set}_link_ksettings (Ken Cox) [1454899]
-- [netdrv] ixgbevf: get rid of custom busy polling code (Ken Cox) [1454899]
-- [netdrv] ixgbe: Return error when getting PHY address if PHY access is not supported (Ken Cox) [1372079]
-- [netdrv] i40e: use cpumask_copy instead of direct assignment (Stefano Brivio) [1483724]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-746.el7]
-- [x86] kvm: nvmx: Don't allow L2 to access the hardware CR8 (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: do not use KVM_REQ_EVENT for APICv interrupt injection (Paolo Bonzini) [1498473]
-- [x86] kvm/x86: update the comment of memory barrier in the vcpu_enter_guest() (Paolo Bonzini) [1498473]
-- [x86] kvm/x86: Call smp_wmb() before increasing tlbs_dirty (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: do not scan IRR twice on APICv vmentry (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: move sync_pir_to_irr from apic_find_highest_irr to callers (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: preparatory changes for APICv cleanups (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: avoid atomic operations on APICv vmentry (Paolo Bonzini) [1498473]
-- [x86] kvm: nvmx: move nested events check to kvm_vcpu_running (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: do not scan IRR when delivering an interrupt (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: do not set KVM_REQ_EVENT unnecessarily on PPR update (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: remove unnecessary KVM_REQ_EVENT on PPR update (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: speed up TPR below threshold vmexits (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: add VCPU stat for KVM_REQ_EVENT processing (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: clear pending interrupts on KVM_SET_LAPIC (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: make hwapic_isr_update and hwapic_irr_update look the same (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: Fix reentrancy issues with preempt notifiers (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: Fix lapic timer injection delay (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: reorganize restart_apic_timer (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: reorganize start_hv_timer (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: Fix preempt the preemption timer cancel (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: make function static to avoid compiling warning (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: use ktime_get instead of seeking the hrtimer_clock_base (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: add APIC Timer periodic/oneshot mode VMX preemption timer support (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: rename start/cancel_hv_tscdeadline to start/cancel_hv_timer (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: introduce kvm_get_lapic_target_expiration_tsc() (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: guarantee the timer is in tsc-deadline mode (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: extract start_sw_period() to handle periodic/oneshot mode (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: adjust preemption timer correctly when goes TSC backward (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: fix access preemption timer stuff even if kernel_irqchip=off (Paolo Bonzini) [1498473]
-- [x86] kvm: nvmx: avoid incorrect preemption timer vmexit in nested guest (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: fix missed cancellation of TSC deadline timer (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: introduce cancel_hv_tscdeadline (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: fix underflow in TSC deadline calculation (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: hook preemption timer support (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: support using the vmx preemption timer for tsc deadline timer (Paolo Bonzini) [1498473]
-- [x86] kvm: lapic: separate start_sw_tscdeadline from start_apic_timer (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: make backwards_tsc_observed a per-VM variable (Paolo Bonzini) [1498473]
-- [x86] kvm: Introduce kvm_write_guest_offset_cached() (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: Fix residual mmio emulation request to userspace (Paolo Bonzini) [1498473]
-- [x86] kvm: mmu: Fix softlockup due to mmu_lock is held too long (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: use list_last_entry (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: Fix load damaged SSEx MXCSR register (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: fix maintaining of kvm_clock stability on guest CPU hotplug (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: remaster kvm_write_tsc code (Paolo Bonzini) [1498473]
-- [x86] kvm: nvmx: Disallow userspace-injected exceptions in guest mode (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: fix user triggerable warning in kvm_apic_accept_events() (Paolo Bonzini) [1498473]
-- [x86] kvm: x86: cleanup the page tracking SRCU instance (Paolo Bonzini) [1498473]
-- [x86] kvm/x86: Avoid async PF to end RCU read-side critical section early in PREEMPT=n kernel (Paolo Bonzini) [1498473]
-- [x86] kvm/x86: Handle async PF in RCU read-side critical sections (Paolo Bonzini) [1498473]
-- [x86] kvm: async_pf: make rcu irq exit if not triggered from idle task (Paolo Bonzini) [1498473]
-- [x86] kvm: async_pf: fix rcu_irq_enter() with irqs enabled (Paolo Bonzini) [1498473]
-- [x86] kvm, powerpc: Serialize wq active checks in ops->vcpu_kick (Paolo Bonzini) [1498473]
-- [x86] kvm: Serialize wq active checks in kvm_vcpu_wake_up() (Paolo Bonzini) [1498473]
-- [x86] kvm,async_pf: Use swq_has_sleeper() (Paolo Bonzini) [1498473]
-- [x86] sched/wait: Add swq_has_sleeper() (Paolo Bonzini) [1498473]
-- [x86] kvm, x86: Fix apf_task_wake_one() wq serialization (Paolo Bonzini) [1498473]
-- [x86] kvm,lapic: Justify use of swait_active() (Paolo Bonzini) [1498473]
-- [x86] sched/wait: Remove the lockless swait_active() check in swake_up*() (Paolo Bonzini) [1498473]
-- [x86] kvm, rt: change async pagefault code locking for PREEMPT_RT (Paolo Bonzini) [1498473]
-- [x86] kvm: Use simple waitqueue for vcpu->wq (Paolo Bonzini) [1498473]
-- [x86] wait.[ch]: Introduce the simple waitqueue (swait) implementation (Paolo Bonzini) [1498473]
-- [x86] iommu/vt-d: Add a command line parameter for VT-d posted-interrupts (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: simplify and fix vmx_vcpu_pi_load (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: avoid double list add with VT-d posted interrupts (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: extract __pi_post_block (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: rename vmx_pre/post_block to pi_pre/post_block (Paolo Bonzini) [1498473]
-- [x86] kvm: vmx: do not change SN bit in vmx_update_pi_irte() (Paolo Bonzini) [1498473]
-- [x86] fix hot-unplug races in VT-d posted interrupt patches (Paolo Bonzini) [1498473]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-745.el7]
-- [net] xfrm: move xfrm_garbage_collect out of xfrm_policy_flush (Paul Moore) [1453103]
-- [net] l2tp: initialise session's refcount before making it reachable (Sabrina Dubroca) [1492006]
-- [net] l2tp: fix race condition in l2tp_tunnel_delete (Sabrina Dubroca) [1492006]
-- [net] l2tp: prevent creation of sessions on terminated tunnels (Sabrina Dubroca) [1492006]
-- [net] l2tp: fix duplicate session creation (Sabrina Dubroca) [1492006]
-- [net] l2tp: fix race in l2tp_recv_common() (Sabrina Dubroca) [1492006]
-- [net] ipv6: do not set sk_destruct in IPV6_ADDRFORM sockopt (Xin Long) [1499475]
-- [net] use is_vlan_dev() helper function (Ivan Vecera) [1500976]
-- [net] constify netif_is_* helpers net_device param (Ivan Vecera) [1500976]
-- [net] hyper-v: hv_sock mark as Tech Preview (Cathy Avery) [1485358]
-- [netdrv] vmbus: don't acquire the mutex in vmbus_hvsock_device_unregister() (Cathy Avery) [1485358]
-- [net] hv_sock: implements Hyper-V transport for Virtual Sockets (AF_VSOCK) (Cathy Avery) [1485358]
-- [net] sk_buff: remove support for csum_bad in sk_buff (Sabrina Dubroca) [1497092]
-- [net] switchdev: add SET_SWITCHDEV_OPS helper (Jiri Benc) [1497085]
-- [net] introduce __skb_put_[zero, data, u8] (Jiri Benc) [1497085]
-- [net] add and use skb_put_u8() (Jiri Benc) [1497085]
-- [net] make skb_push & __skb_push return void pointers (Jiri Benc) [1497085]
-- [net] make skb_pull & friends return void pointers (Jiri Benc) [1497085]
-- [net] make skb_put & friends return void pointers (Jiri Benc) [1497085]
-- [net] pktgen: use reset to set mac header (Jiri Benc) [1497085]
-- [net] move pskb_put() to core code (Jiri Benc) [1497085]
-- [net] introduce and use skb_put_data() (Jiri Benc) [1497085]
-- [net] convert many more places to skb_put_zero() (Jiri Benc) [1497085]
-- [net] skbuff: make skb_put_zero() return void (Jiri Benc) [1497085]
-- [net] skbuff: introduce skb_put_zero() (Jiri Benc) [1497085]
-- [net] ether: MAC address helpers (Jiri Benc) [1497085]
-- [kernel] params: Add module param type 'ullong' (Jiri Benc) [1497085]
-- [kernel] params: improve standard definitions (Jiri Benc) [1497085]
-- [kernel] params: fix handling of signed integer types (Jiri Benc) [1497085]
-- [kernel] replace strict_strto*() with kstrto*() (Jiri Benc) [1497085]
-- [net] flow_dissector: add support for dissection of misc ip header fields (Jonathan Toppins) [1497129]
-- [net] flow_dissector: add support for dissection of tcp flags (Jonathan Toppins) [1497129]
-- [net] flow_dissector: add mpls support (v2) (Jonathan Toppins) [1497129]
-- [net] flow_dissector: correct size of storage for ARP (Jonathan Toppins) [1497129]
-- [net] flow_dissector: Move GRE dissection into a separate function (Jonathan Toppins) [1497129]
-- [net] flow_dissector: rename "proto again" goto label (Jonathan Toppins) [1497129]
-- [net] flow_dissector: Fix GRE header error path (Jonathan Toppins) [1497129]
-- [net] flow_dissector: Move MPLS dissection into a separate function (Jonathan Toppins) [1497129]
-- [net] flow_dissector: Move ARP dissection into a separate function (Jonathan Toppins) [1497129]
-- [net] tcp: __tcp_hdrlen() helper (Jonathan Toppins) [1497129]
-- [net] tun: handle register_netdevice() failures properly (Sabrina Dubroca) [1497100]
-- [net] mac80211: free netdev on dev_alloc_name() error (Sabrina Dubroca) [1497100]
-- [net] Fix inconsistent teardown and release of private netdev state (Sabrina Dubroca) [1497100]
-- [net] vsock: Add virtio vsock vsockmon hooks (Stefano Brivio) [1470219]
-- [net] vsock: Add vsockmon device (Stefano Brivio) [1470219]
-- [net] vsock: Add vsockmon tap functions (Stefano Brivio) [1470219]
-- [net] ethtool: add CRC32 as an RSS hash function (Ivan Vecera) [1481580]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-744.el7]
-- [s390] pkey: Introduce new API for secure key verification (Hendrik Brueckner) [1380349]
-- [s390] pkey: Fix wrong handling of secure key with old MKVP (Hendrik Brueckner) [1380349]
-- [s390] pkey: Introduce pkey kernel module (Hendrik Brueckner) [1380349]
-- [s390] crypto: Add PCKMO inline function (Hendrik Brueckner) [1380349]
-- [s390] crypto: simplify CPACF encryption / decryption functions (Hendrik Brueckner) [1380349]
-- [s390] crypto: cpacf function detection (Hendrik Brueckner) [1380349]
-- [s390] crypto: simplify init / exit functions (Hendrik Brueckner) [1380349]
-- [s390] crypto: simplify return code handling (Hendrik Brueckner) [1380349]
-- [s390] crypto: cleanup cpacf function codes (Hendrik Brueckner) [1380349]
-- [s390] crypto: allow to query all known cpacf functions (Hendrik Brueckner) [1380349]
-- [s390] crypto: cleanup and move the header with the cpacf definitions (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix missing newlines at some debug feature messages (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Add some debug messages on failure (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Removed unneeded debug feature directory creation (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: tracepoint definitions for zcrypt device driver (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Rework ap init in case of out of range domain param (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Rework debug feature invocations (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix blocking queue device after unbind/bind (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: export additional symbols (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Enable request count reset for cards and queues (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: use spin_lock_bh for all queue locks and unlocks (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: get rid of variable length arrays (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: add missing memory clobber to ap_qci inline assembly (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix ap_max_domain_id for older machine types (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Correct function bits for CEX2x and CEX3x cards (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fixed attrition of AP adapters and domains (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Introduce new zcrypt device status API (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: add multi domain support (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Introduce workload balancing (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: get rid of ap_poll_requests (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: header for the AP inline assmblies (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: simplify message type handling (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Move the ap bus into kernel (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix zcrypt suspend/resume behavior (Hendrik Brueckner) [1380349]
-- [s390] crypto: use basic blocks for ap bus inline assemblies (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix cryptographic device id in kernel messages (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix AP queue handling if queue is full (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix initialisation when zcrypt is built-in (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix kernel crash on systems without AP bus support (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: use system work queue for ap_scan_bus (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: remove support for PCICC and PCICA cards (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: introduce state machine for the AP bus (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: use explicit return code for flushed requests (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: cleanup AP bus timer code (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: fix suspend/resume of AP bus devices (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: fix memory leak with ap configuration data (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: remove duplicate low level functions (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: enable odd RSA modulus sizes in CRT format (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: enable s390 hwrng to seed kernel entropy (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fix invalid domain handling during ap module unload (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: fixed ap poll timer behavior (Hendrik Brueckner) [1380349]
-- [s390] ap_bus: remove 31 bit support (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: Fixed possible race condition in zcrypt module handling (Hendrik Brueckner) [1380349]
-- [s390] ap_bus: Make modules parameters visible in sysfs (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: add length check for aligned data to avoid overflow in msg-type 6 (Hendrik Brueckner) [1380349]
-- [s390] zcrypt: additional check to avoid overflow in msg-type 6 requests (Hendrik Brueckner) [1380349]
-
-* Fri Oct 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-743.el7]
-- [fs] nfsd: Fix general protection fault in release_lock_stateid() ("J. Bruce Fields") [1500815]
-- [fs] nfs/filelayout: fix oops when freeing filelayout segment (Steve Dickson) [1463784]
-- [fs] nfs/filelayout: Fix racy setting of fl->dsaddr in filelayout_check_deviceid() (Steve Dickson) [1463784]
-- [fs] nfs/filelayout: fix NULL pointer dereference in fl_pnfs_update_layout() (Steve Dickson) [1463784]
-- [fs] nfs/filelayout: call GETDEVICEINFO after pnfs_layout_process completes (Steve Dickson) [1463784]
-- [fs] NFS store nfs4_deviceid in struct nfs4_filelayout_segment (Steve Dickson) [1463784]
-- [fs] nfs: flexfilelayout: remove v3-only data server limitation (Scott Mayhew) [1495198]
-- [mm] mm, hugetlb: use pte_present() instead of pmd_present() in follow_huge_pmd() (Rafael Aquini) [1472460]
-- [mm] fix invalid node in alloc_migrate_target() (Rafael Aquini) [1472460]
-- [mm] add !pte_present() check on existing hugetlb_entry callbacks (Rafael Aquini) [1472460]
-- [mm] fs/proc/meminfo.c: include cma info in proc/meminfo (Serhii Popovych) [1430990]
-- [mm] cma: split cma-reserved in dmesg log (Serhii Popovych) [1430990]
-- [lib] swiotlb: ensure that page-sized mappings are page-aligned (Stanislaw Gruszka) [1487054]
-- [sound] alsa - fix saa7134-alsa module unload oops (Jaroslav Kysela) [1474569]
-- [block] blk-mq: map all HWQ also in hyperthreaded system (Ming Lei) [1489737]
-- [x86] pinctrl: intel: Add Intel Lewisburg GPIO support (Prarit Bhargava) [1490513]
-- [x86] apic: Update TSC_DEADLINE quirk with additional SKX stepping (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Silence "FW_BUG TSC_DEADLINE disabled due to Errata" on hypervisors (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Silence "FW_BUG TSC_DEADLINE disabled due to Errata" on CPUs without the feature (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Add TSC_DEADLINE quirk due to errata (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Change the lapic name in deadline mode (Vitaly Kuznetsov) [1503160]
-- [x86] timers/apic: Fix imprecise timer interrupts by eliminating TSC clockevents frequency roundoff error (Vitaly Kuznetsov) [1503160]
-- [x86] apic: Serialize LVTT and TSC_DEADLINE writes (Vitaly Kuznetsov) [1503160]
-- [x86] kaslr: Enable KASLR by default (Baoquan He) [1491226]
-- [x86] x86/boot/kaslr: Prefer mirrored memory regions for the kernel physical address (Baoquan He) [1446684]
-- [x86] efi: Introduce efi_early_memdesc_ptr to get pointer to memmap descriptor (Baoquan He) [1446684]
-- [x86] x86/boot/kaslr: Rename process_e820_entry() into process_mem_region() (Baoquan He) [1446684]
-- [x86] x86/boot/kaslr: Switch to pass struct mem_vector to process_e820_entry() (Baoquan He) [1446684]
-- [x86] x86/boot/kaslr: Wrap e820 entries walking code into new function process_e820_entries() (Baoquan He) [1446684]
-- [x86] ftrace/x86: Set ftrace_stub to weak to prevent gcc from using short jumps to it (Jerome Marchand) [1502872]
-- [x86] pci: vmd: Free up IRQs on suspend path (Myron Stowe) [1498945]
-- [x86] x86/intel_idle: add Gemini Lake support (Steve Best) [1464886]
-- [x86] intel_idle: add BXT support (Steve Best) [1464886]
-- [mfd] intel-lpss: Add Intel Gemini Lake PCI IDs (Steve Best) [1457134]
-- [mfd] lpss: Add PCI IDs for Intel Broxton B-Step platform (Steve Best) [1457134]
-- [mfd] lpss: Add Intel Broxton PCI IDs (Steve Best) [1457134]
-- [kernel] audit: add ambient capabilities to CAPSET and BPRM_FCAPS records (Richard Guy Briggs) [1465614]
-- [kernel] audit: remove unnecessary curly braces from switch/case statements (Richard Guy Briggs) [1465614]
-- [kernel] sched: add macros to define bitops for task atomic flags (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: Replace BUG(!spin_is_locked()) with assert_spin_lock (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] sched: fix confusing PFA_NO_NEW_PRIVS constant (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: implement SECCOMP_FILTER_FLAG_TSYNC (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: allow mode setting across threads (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: introduce writer locking (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: split filter prep from check and apply (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] sched: move no_new_privs into new atomic flags (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: add "seccomp" syscall (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: split mode setting routines (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: extract check/assign mode helpers (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] seccomp: create internal mode-setting function (Bruno Eduardo de Oliveira Meneguele) [1458278]
-- [kernel] maintainers: create seccomp entry (Bruno Eduardo de Oliveira Meneguele) [1458278]
-
-* Thu Oct 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-742.el7]
-- [net] netfilter: xtables: add scheduling opportunity in get_counters (Florian Westphal) [1485515]
-- [net] netfilter: x_tables: pack percpu counter allocations (Florian Westphal) [1485515]
-- [net] netfilter: x_tables: pass xt_counters struct to counter allocator (Florian Westphal) [1485515]
-- [net] netfilter: x_tables: pass xt_counters struct instead of packet counter (Florian Westphal) [1485515]
-- [net] sched: cls_matchall: fix crash when used with classful qdisc (Davide Caratti) [1460213]
-- [net] Define SCM_TIMESTAMPING_PKTINFO on all architectures (Hangbin Liu) [1421164]
-- [net] ethernet: update drivers to make both SW and HW TX timestamps (Hangbin Liu) [1421164]
-- [net] allow simultaneous SW and HW transmit timestamping (Hangbin Liu) [1421164]
-- [net] add new control message for incoming HW-timestamped packets (Hangbin Liu) [1421164]
-- [net] add function to retrieve original skb device using NAPI ID (Hangbin Liu) [1421164]
-- [net] tcp: fix SCM_TIMESTAMPING_OPT_STATS for normal skbs (Hangbin Liu) [1421164]
-- [net] skbuff: Introduce skb_mac_offset() (Hangbin Liu) [1421164]
-- [net] ip6_tunnel: do not allow loading ip6_tunnel if ipv6 is disabled in cmdline (Xin Long) [1491091]
-- [net] ip6_gre: skb_push ipv6hdr before packing the header in ip6gre_header (Xin Long) [1491105]
-- [net] ipv6: avoid unregistering inet6_dev for loopback (Hangbin Liu) [1491465]
-- [net] ipv4: do metrics match when looking up and deleting a route (Xin Long) [1475642]
-- [net] udp: force symbol checksum change for lookup functions (Paolo Abeni) [1444980]
-- [net] udp: inuse checks can quit early for reuseport (Paolo Abeni) [1444980]
-- [net] udp reuseport: fix packet of same flow hashed to different socket (Paolo Abeni) [1444980]
-- [net] soreuseport: Resolve merge conflict for v4/v6 ordering fix (Paolo Abeni) [1444980]
-- [net] revert: "udp_offload: put sk before returning" (Paolo Abeni) [1444980]
-- [net] udp: no longer use SLAB_DESTROY_BY_RCU (Paolo Abeni) [1444980]
-- [net] add SOCK_RCU_FREE socket flag (Paolo Abeni) [1444980]
-- [net] sock: introduce sk_destruct() (Paolo Abeni) [1444980]
-- [net] soreuseport: fix ordering for mixed v4/v6 sockets (Paolo Abeni) [1444980]
-- [net] soreuseport: fix NULL ptr dereference SO_REUSEPORT after bind (Paolo Abeni) [1444980]
-- [net] udp: fix potential infinite loop in SO_REUSEPORT logic (Paolo Abeni) [1444980]
-- [net] soreuseport: fast reuseport UDP socket selection (Paolo Abeni) [1444980]
-- [net] soreuseport: define reuseport groups (Paolo Abeni) [1444980]
-- [net] udp6: Drop SCORE2_MAX optimization in socket lookup (Paolo Abeni) [1444980]
-- [net] udp: Neaten and reduce size of compute_score functions (Paolo Abeni) [1444980]
-- [net] udp: Neaten function pointer calls and add braces (Paolo Abeni) [1444980]
-- [net] udp: remove blank line between set and test (Paolo Abeni) [1444980]
-- [net] udp: remove else after return (Paolo Abeni) [1444980]
-
-* Thu Oct 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-741.el7]
-- [sound] alsa: SoC - codecs - regmap fix (Jaroslav Kysela) [1463624]
-- [sound] alsa: SoC - codecs - fix the  of header files (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: uapi: Add new tokens for module common data (Jaroslav Kysela) [1463624]
-- [sound] alsa: SoC - Intel SST Haswell - add missing trace header file (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: add const to snd_soc_codec_driver structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: Add DMI match for Geminilake reference platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: disable IRQ when jack is NULL (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix jack type detect error (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt298 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: Add DMI match for Broxton-P reference platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix null deref on acpi driver data (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix capture doesn't work at some cases (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: reset AD dilter is there is no MCLK (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: Don't enable IRQ in i2c_probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: enable IRQ for jack detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix remove unnedded clk setting (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: fix wrong setting of gpio2_en (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: Make rt298_index_def const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: correct index default value (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: set register non-volatile by default (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rl6347a: Clean up unneeded inclusion of header files (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt298: remove meanless pr_info (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop owner assignment from i2c_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add rt298 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Allow bespoke configuration post widget creation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: make function stub static (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: fix boot warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Constify reg_default tables (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmi: Mark all struct dmi_system_id instances const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: constify gpio_chip structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Constify snd_soc_dai_ops variables (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: add const to snd_soc_codec_driver structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: reset dma_offset at hw_params (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add the sanity checks of the buffer related address (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Support the DSP recording continuously after the hotwording triggered (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514-spi: Remove unneeded linux/miscdevice.h include (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Remove superfluous linux/kthread.h inclusion (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514-spi: Convert to use devm_* API (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Fix the issue that the variable dereferenced before checking (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Guard Hotword Model bytes loading (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: expose Hotword Model control (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: make array rt5514_dai static (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Eliminate the noise in the ASRC case (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Use the IS_ENABLED to supports the module build (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: constify acpi_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add the I2S ASRC support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Support the TDM docking mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: constify snd_soc_dai_ops structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Move the auto disable DSP function to set_bias_level() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add ACPI match ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add more width and channels support in the TDM mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: fix gcc-7 warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Unconfuse the rt5514 at probe / resume time (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Avoid relying on uninitialized "val" value (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Mark rt5514_i2c_driver as static (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add the DMIC initial delay to wait it ready (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: make the volume TLV to match the units 0.01dB (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5514 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: Add the MCLK handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: add rt5514 SPI driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5514: add rt5514 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Changed device property read function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Modified DAPM widget and map to enable/disable VI sense path (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Added PM suspend and resume function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Modified chip default register values (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Added missing \n to end of dev_err messages (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98927: Updated volatile register list (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove cache_bypass from snd_soc_codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add support for Maxim Integrated MAX98927 Amplifier (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Add delay for jack plug in (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Fine tune for the headphone output pop sound (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Seprate the DC offset between headphone and headset (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Add the delay time to correct the calibration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: constify acpi_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Correct the mixer switch setting and remove redundant routing path (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Modify the default value for ASRC function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: constify snd_soc_dai_ops structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Add the manual offset field to compensate the DC offset (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: add in missing loop counter to avoid infinite loop (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Modify the power sequence for reducing the pop sound (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Optimize the Jack Type detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Update the calibration funciton (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Update the HW default values based on the shipping version (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Check the JD status in the resume function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: Fix the IRQ issue (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: rename rt5668 as rt5663 v2 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add jd function for rt5663 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: fix a debug statement (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: fix platform_no_drv_owner.cocci warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: fix sparse warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5663: refine error handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add rt5663 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add es8316 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Update driver to use device_property* FW functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Fix incorrect usage of bitwise '&' operator for SRM check (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: add ACPI support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on da7213 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Improve 32KHz mode PLL locking (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Refactor sysclk(), pll() functions to improve handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Improve driver efficiency with regards to MCLK usage (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Default to 64 BCLKs per WCLK to support all formats (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Allow PLL disable/bypass when using 32KHz sysclk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Update PLL ranges to improve locking at frequency boundary (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Default PC counter to free-running when DAI disabled (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Add checking of SRM lock status before enabling DAI (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Add DAI DAPM event to control DAI clocks (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Add support to handle mclk data provided to driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Add DT support to codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop owner assignment from i2c_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Replace direct snd_soc_codec dapm field access (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Move bias level update to the core (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add snd_soc_kcontrol_codec() helper function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec: Simplify ASoC probe code (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Use SOC_ENUM_SINGLE_DECL() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Use params_width() rather than memory format (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7213: Fix setting dmic_samplephase and dmic_clk_rate (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: Add da7213 codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: max98090: remove superflous check for 'micbias' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop owner assignment from i2c_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: spi: Drop owner assignment from spi_drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Revise the wrong name in the header file (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Remove never used variables (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Refactor code to avoid comparison unsigned >= 0 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Hide platform data in the module sources (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Move platform code to board file (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Introduce proper table for ACPI enumeration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add OF device ID table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add ACPI support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5677 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: use gpiochip data pointer (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Avoid duplicate the same test in each switch case (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: set PLL_CTRL2 non-volatile (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Reconfigure PLL1 after resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: use 'active low' logic for reset pin (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Avoid the pop sound that comes from the filter power (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Allow arbitrary block read/write via SPI (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fix rt5677 spi driver build (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add function "rl6231_get_pre_div" to correct the dmic clock calculation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Return error if devm_gpiod_get_optional return ERR_PTR (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Remove NULL test for desc before gpiod_set_value_cansleep call (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Switch to use unified device property API (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Switch to use descriptor-based gpiod API (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Include gpio driver header (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Prefix hexadecimal ID register value with 0x in error print (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace direct snd_soc_codec dapm field access (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add reset-gpio dts option (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add DMIC ASRC detect function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: add i2s asrc clk src selection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fixed wrong DMIC ref clock (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Move bias level update to the core (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Route all bias level updates through the core (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: add register patch for PLL (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: add API to select ASRC clock source (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Keep the LDO2 powered while used in the suspend mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the chip type to distinguish the setting of the clock source (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Correct the routing paths of that after IF1/2 DACx Mux (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fix SPI dependency (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace w->codec snd_soc_dapm_to_codec(w->dapm) (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the slot_width "25" support in the TDM mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Use the regmap functions instead of the snd_soc functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Modify the behavior that updates the PLL parameter (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the MICBIAS VDD setting in the platform data (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Adjust the routing of "PLL1" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the ASRC support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Revise the filter powers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fixed rt5677_dsp_vad_put rt5677_dsp_vad_get panic (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: make volume TLV closer to reality (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Fix the issue that the regmap_range "rt5677_ranges" cannot be accessed (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Set the slow charge of the vref in the end of the power sequences (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Follow the gpio naming rule to rename the irq function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Align the reg_default table with tab character (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Modify the default value of the MX-8E[4] for ASRC function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add TDM channel mux in DAC side of IF1 and IF2 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Use specific r/w function for DSP mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Minor coding style and typo fix (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add TDM channel mapping function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: rt5677_irq_init() can be static (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: add GPIO IRQ support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: fix build when kernel compiled without GPIOLIB support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Print more information if setting DAI clock failed (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Support DSP function for VAD application (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add option to configure gpio as floating/pullup/pulldown (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add dts properties for input/output differential configuration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add a configuration option for LDO2_POW pin (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add sidetone function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the TDM function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Remove return value checking for gpiochip_remove() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add the GPIO function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add DMIC2 clock selection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Remove the redundant definition in head file (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: correct mismatch widget name (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Modify the voltage level in the BIAS OFF stage (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Convert to use rl6231_pll_calc (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Add a PMD case to MICBIAS1 event (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace the string "Gain" to "Volume" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace the string "source" to "Source" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Replace the string "micbias1" to "MICBIAS1" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Remove unneeded goto in rt5677_i2c_probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Convert to use rl6231_calc_dmic_clk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Convert to use rl6231_get_clk_info (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5677: Convert to use module_i2c_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add RT5677 CODEC driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Fix HP detection procedure for all MCLK frequencies (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Connect output enable register to DAIOUT (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Improve pop/click performance for sensitive HPs (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: fix inappropriate condition statement (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Disable AAD if codec is not a wake-up source (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Reset codec gracefully, if still active (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Support HP detect procedure when MCLK not present (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: software reset codec at probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on da7219 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Make more efficient use of MCLK within driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Convert driver to use generic device/fwnode functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7129: Add missing of acpi.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Add initial ACPI id for device (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Disallow unsupported 32KHz clock setting in set_dai_sysclk() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Update PLL ranges and dividers to improve locking (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Correct BCLK inversion for DSP DAI format mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Add regmap patch to support old silicon (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Remove support for 32KHz PLL mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Add support for 1.6V micbias level (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Remove internal LDO features of codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Update REFERENCES reg default, in-line with HW (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Disable regulators on probe() failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Fix Sidetone to work regardless of DAI capture (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Use logical instead of bitwise OR for boolean expression (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Fix da7219->alc_en state when enabling ALC (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Improve error checking of mclk enable/disable (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Use of_match_ptr() when assigning match table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: da7219: Improve error handling for regulator supplies (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: Add da7219 codec driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: correct typo of semaphore comment (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: change crosstalk-bypass property to bool type (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: debug message of crosstalk bypass (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: make crosstalk function optional (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: fix jack type detection issue after resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: default value for property (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: nau8825: automatic BCLK and LRC divde in master mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: rt286: add Thinkpad Helix 2 to force_combo_jack_table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5640: Add "10EC3276" ACPI ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5640: use msleep() for long delays (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5640: move DAC2 Power to rt5640_dapm_widgets (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: set high voltage for capless power (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: Add jack detection workaround for MINIX Z83-4 based devices (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: make rt5645_platform_data const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5645: add quirks for Asus T100HA (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: Add quirk override by module option (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: enable speaker protection features (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: del btn_check_timer on remove (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: Add jack detection workaround for GPD Win (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: add inv_jd1_1 flag (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: rename jd_invert flag in platform data (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: read jd1_1 status for jd detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: Add OF device ID table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: fix error handling for gpio detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: add ACPI ID 10EC3270 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5670: add jack detection quirk for Dell Venue 5585 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: add symmetric_rates flag (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: merge ADC L/R Mux (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: fix incompatible pointer type of set_sysclk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: move set_sysclk to codec level (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: remove duplicate route (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: fix wrong audio route (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5670: fix jd mode for Lenovo Miix 2 10 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5670: add Thinkpad Tablet 10 quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codecs: rt5670: add quirk for Lenovo Thinkpad 10 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5651: remove unexisting Muxes (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: ssm4567: Add OF device ID table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add the vendor nid for Geminilake HDMI (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: constify snd_soc_dai_ops structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Update sig_bits based on converter capability (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: don't update the iterator in pcm list remove (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: avoid reference to invalid variable of the pin list (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add device id for Geminilake (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add machine pin widget for each port (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Use ASoC jack instead of snd_jack (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add support for multiple ports to a PCM (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Configure pin verbs for MST (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Handle MST pin jack detection at boot/resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add MST verb support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Add support to handle MST capable pin (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Begin to add support for DP Multi-stream audio (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Move channel info from pin to PCM structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Register widget event handlers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: use audio component framework to read ELD (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: hdac_hdmi: Enable pin and converter in prepare (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec: use enable pin to control dmic start and stop (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: codec: add DT support in dmic codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-utils: make snd_soc_platform_driver const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: show index in debug when adding DAPM routes (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Dont free template strings whilst they are in use (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: rephrase deferred binding warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Fix usage of SND_SOC_TPLG_INDEX_ALL during load (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: remove unused 'err' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: dapm: Add new widget type for constructing DAPM graphs on DSPs (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Allow bespoke configuration post widget creation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: use j for internal loop counter (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: topology: Fix to store enum text values (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: do not close shared backend dailink (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: jack: Manage gpios via devres (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: jack: fix snd_soc_codec_set_jack return error (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: dapm: handle probe deferrals (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: dapm: fix some pointer error handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: device property: Fix usecount for of_graph_get_port_parent() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: snd_soc_unregister_component() unregister all component (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: use snd_soc_component_get_dapm() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add a sanity check before using dai driver name (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: Allow searching dai driver name in snd_soc_find_dai (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add Component level set_jack (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add Component level set_pll (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add Component level set_sysclk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove duplicate definition of dapm_routes/num_dapm_routes (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove duplicate definition of dapm_widgets/num_dapm_widgets (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove duplicate definition of controls/num_controls (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: use snd_soc_rtdcom_add() and convert to consistent operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: add snd_soc_rtdcom_xxx() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: bunch up bit field for snd_soc_pcm_runtime (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove snd_soc_platform_trigger() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove .bespoke_trigger from snd_soc_platform_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove .delay from snd_soc_platform_driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Introduce SOC_SINGLE_S8_TLV() macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove snd_soc_pcm_set/get_drvdata() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: jack - check status of GPIO-based pins on resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: jack: add snd_soc_codec_set_jack (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-pcm: Remove unused 'debugfs_dpcm_state' entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: remove cache_bypass from snd_soc_codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove duplicate mutex_unlock from snd_soc_unregister_component() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: rename "cmpnt" to "component" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: Use IS_ERR_OR_NULL() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: Remove unneeded dentry member from snd_soc_codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: fix pcm-creation regression (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: fix semicolon.cocci warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop invalid DMI fields when setting card long name from DMI info (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add snd_soc_get_dai_id() function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Provide a dummy wrapper of snd_soc_set_dmi_name() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: verify Sound Card normality (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: core: remove pointless auxiliary from snd_soc_component (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: don't dereference NULL pcm_{new,free} (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Add space around '=' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Drop unnecessary debugfs ifdef (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove OF adjusting for snd_soc_of_parse_card_name (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove OF adjusting for snd_soc_of_parse_audio_prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove OF adjusting for snd_soc_of_parse_audio_simple_widgets (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: remove OF adjusting for snd_soc_of_parse_audio_routing (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: core: add optional pcm_new callback for DAI driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: core: Add API to use DMI name in sound card long name (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Fixup some small kernel-doc typos (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: add Component level pcm_new/pcm_free (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Fix use-after-free at card unregistration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: soc-core: enable "dai-format" on snd_soc_of_parse_daifmt() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: compress: Set reasonable compress id string (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: compress: Delete error messages for a failed memory allocation in snd_soc_new_compress() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: compress: Derive substream from stream based on direction (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add IPC to configure the copier secondary pins (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add map for Maxim IV Feedback (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add jack port initialize in kbl machine drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add MST route change to kbl machine drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Update module id in pin connections (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Parse and update module config structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Populate module data from topology manifest (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add driver structures to be filled from topology manifest (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Commonize parsing of format tokens (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Parse multiple manifest data blocks (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix uninitialized return (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix DSP core ref count for init failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to free correct dev id in free_irq (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to free resources for dsp_init failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to free dsp resource on ipc_init failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5670: Fix GPIO headset detection regression (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Remove superfluous snd_soc_jack_free_gpios() call (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Headset button support in kabylake machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Enabling ASRC for RT5663 codec on kabylake platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl_rt5663_rt5514_max98927: Add rt5514 spi dailink (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: medfield: Delete an error message for a failed memory allocation in snd_mfld_mc_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: constify snd_compr_codec_caps structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: make skl_dsp_fw_ops const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: make snd_pcm_hw_constraint_list const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: make snd_soc_platform_driver const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: constify pci_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: add pci id for cnl (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: add dsp ops for cannonlake (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: Add sst library functions for cnl platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: Unstatify common ipc functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Move platform specific init to platform dsp_init() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cnl: Add cnl dsp functions and registers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add dsp cores management (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Use num_core to allocate instead of macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add num of cores in dsp ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add map for new DAIs for Multi-Playback & Echo Ref (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add DAI links for Multi-Playback & Echo-reference (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: kbl: Add new FEs for Multi-Playback & Echo-Reference (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Use correct nuvoton codec ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix potential null pointer dereference (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove return check for skl_codec_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Remove code loader reference in cleanup (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Reset the controller in probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Enabling 4 slot IV feedback for max98927 on Kabylake platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Use MCLK instead of BLCK as the sysclock for RT5514 codec on kabylake platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Enabling ASRC for RT5663 codec on kabylake platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake RT5663 machine driver entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake machine driver for RT5663 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: board: Fix missing sentinel for bxt_board_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix missing sentinels in sst_acpi_mach (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: board: Add Geminilake platform support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: board: Remove .owner initialization in bxt_rt298 driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: fix type in debug message (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix default dma_buffer_size (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove driver debugfs exit (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: explicitly add the headers sst-dsp.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add support to read firmware registers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add sram address to sst_addr structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Debugfs facility to dump module config (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add debugfs support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht_bsw_rt5672: 19.2MHz clock for Baytrail platforms (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Move codec sysclk config to codec_init function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: skl_rt286: Add deepbuffer dai link (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix dma buffer size calculation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add deep buffer support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake RT5663+RT5514+MAX98927 machine driver entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Convert all sst_codecs data definition to c99 style (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake machine driver for RT5514, RT5663 and MAX98927 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: byt-max98090: Add GPIO ACPI mapping table (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skl: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: byt: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: add machine driver for BYT/CHT + ES8316 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: boards: Add 4-channel DMIC fixup (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add enum control for mic selection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add mic-select module type (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: Delete sst_shim_regs64; saved regs are never used (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake RT5663+MAX98927 machine driver entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Add Kabylake Realtek Maxim machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Improve machine driver selection based on quirk data (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Move quirk to identify correct machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Create a helper to search for matching machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Convert skl machine data to C99 style (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Convert atom machine data to C99 style (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Support for multiple data blocks (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to parse consecutive string tkns in manifest (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix IPC rx_list corruption (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: Remove unused function sst_restore_shim64() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: cht_bsw_max98090_ti: Remove unused function cht_get_codec_dai() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: fix spelling mistake: "allocationf" -> "allocation" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: localize variable without external linkage (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix typo for token d0i3 caps (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Move i915 registration to worker thread (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Return negative error code (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix unused variable warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: fix uninitialized pointer use (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add loadable module support on KBL platform (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Modify load_lib_ipc arguments for a nowait version (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Register dsp_fw_ops for kabylake (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Modify arguments to reuse module transfer function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Commonize library load (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Move sst common initialization to a helper function (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: bytcr_rt5640: log quirk configuration errors (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: bytcr_rt5640: Fix a typo and quirk parameter type (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Fix PM and non-atomic crash in bytcr drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: bytcr_rt5640: Allow quirk set via module option (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: Call snd_soc_set_dmi_name() unconditionally (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix a couple user after free bugs (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Uninitialized variable in probe_codec() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: update Thinkpad 10 quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add support for deferred DSP module bind (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: fix spelling mistake: "Timout" -> "Timeout" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix module state after unbind and delete (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix DMA position reporting for capture stream (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Rearrangement of code to cleanup SKL SST library (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: remove hard coded ACPI path (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove redundant vmixer handler (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Don't unload module when in use (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add 16-bit constraint to FE bxt_rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Use the sig_bits to define dai bps capability (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: remove unused variable data and associated code (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Don't print FW version repeatedly (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Update bxt_da7219_max98357a to add a new (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix parameter overwrite for KPB Module (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix module load when module size > DMA buffer size (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove get dsp_ops in cleanup routine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Disable notifications at boot after DSP FW init (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Remove BE prepare ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Reload the firmware in case of D3 failure (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Update DSP core state in D0 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Disable interrupt when DSP is in D3 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix not to stop src pipe in pre pmd event handler (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Fix to delete DSP pipe after stopping pipe (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Enable bytcht_nocodec machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: boards: add card for MinnowBoardMax/Up I2S access (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: enable BYT/CHT+DA7213 machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: add machine driver for BYT/CHT + DA7213 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: code cleanup for pin fixup limitation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: use a helper macro to rounding-up calculation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: fix invalid memory access due to wrong reference of pointer (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: optimize ROM init retries (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Store the FW/Library context at boot (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bdw-rt5677: Use devm_gpiod_get() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: fix spelling mistake: "allocationf" -> "allocation" (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Add jack port initialize in bxt_rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add Geminlake IDs (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Check device type to get endpoint configuration (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Add jack port initialize in da7219_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add jack port initialize in nau88l25_ssm4567 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add jack port initialize in nau88l25_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add jack port initialize in rt286 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Create ASoC jack for hdmi in bxt_da7219_max98357 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Create ASoC jack for hdmi in bxt_rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Create ASoC jack for hdmi in nau88l25_ssm4567 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Create ASoC jack for hdmi in skl_nau88l25_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Create ASoC jack for hdmi in rt286 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add route change to nau88l25_ssm4567 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add route change to nau88l25_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Add route change to rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Report Platform ID info from NHLT (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: add channel map support in bxt_da7219_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: Add route change to da7219_max98357a machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add route change to rt286 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxt: add channel map support in rt298 machine (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: cht-bsw-rt5645: fix unused variable compiler warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht-bsw-rt5645: fix DAI formats (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: add support for ALC3270 codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht-bsw-rt5645: select ASRC source based on routing quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht-bsw-rt5645: add quirks for SSP0/AIF1/AIF2 routing (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: baytrail: add quirk for Lenovo Thinkpad 10 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht_bsw_rt5645: harden ACPI device detection (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: add machine driver for baytrail-rt5645 hardware (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: rt5645: add support for RT5648 (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: add support for Realtek 5651 on Cherrytrail (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: Add HP Pavilion x2 10-p000 machine entry (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: cht_bsw_rt5645: add Baytrail MCLK support (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: fix frame polarity (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: boards: remove .pm_ops in all Atom/DPCM machine drivers (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: atom: Configure media_loop1 and sprot_loop in stereo (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Use set_tdm_slot to set the dma channel (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: boards: Remove ignore_suspend for WoV streams (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: set the resume point to LPIB (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Don't reset pass-through pipe in BE prepare (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: Use DMI name for sound card long name in Broadwell machine driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: remove ignored dependencies (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: select DW_DMAC_CORE since it's mandatory (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: rename SND_SST_MFLD_PLATFORM to SND_SST_ATOM_HIFI2_PLATFORM (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: remove redundant select SND_SOC_INTEL_SST (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bxtn: Use DSP poll API to poll FW status (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: common: Update dsp register poll implementation (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Clean up manifest info (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: bytcr_rt5640: quirks for Insyde devices (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Removed unused skl_get_format() (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Add helper function to setup host/link dma (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Configure DMA in PRE_PMD handler of Mixer (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: Update link_index and format in pipe params (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: remove unused 'ret_val' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: remove unused 'msg_high' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: sst: remove unused 'ops' (Jaroslav Kysela) [1463624]
-- [sound] alsa: asoc: intel: skylake: remove unused 'ret' (Jaroslav Kysela) [1463624]
-- [sound] alsa: revert "[sound] alsa: dmaengine: dw: pass platform data via struct dw_dma_chip" (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: export probe()/remove() and Co to users (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: some Intel devices has no memcpy support (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: define DW_DMA_MAX_NR_MASTERS (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: amend description of dma_dev field (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: split dma-dw.h to platform and private parts (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: move private definitions to regs.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: move dw_dmac.h to where it belongs to (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: pci: add ID for WildcatPoint PCH (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: use dw_dmac autoconfiguration in PCI driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: always export dw_dma_{en,dis}able (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: add PCI IDs for Braswell DMAs (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: remove DEFINE_PCI_DEVICE_TABLE macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: convert to use SET_LATE_SYSTEM_SLEEP_PM_OPS (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: Add suspend and resume handling for PCI mode DW_DMAC (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: add a PCI ID for Intel Haswell SoC (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: add PCI part of the driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: introduce dw_dma_on() helper (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: move clock operations to platform.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: introduce generic filter function (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: apply both HS interfaces and remove slave_id usage (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: convert dw_dma_slave to use explicit HS interfaces (Jaroslav Kysela) [1463624]
-- [sound] alsa: avr32: at32ap700x: don't rely on default DMA masters (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: don't perform DMA when dmaengine_submit is called (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: add debug message to dwc_dostart_first_queued (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: introduce dwc_dostart_first_queued() helper (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: check return code of dma_async_device_register() (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: fix regression in dw_probe() function (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: enable clock before access (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: went back to plain {request,free}_irq() calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: allocate memory in two stages in probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: remove leftovers in the comment blocks (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: use pad instead of casting dma_addr_t (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: join split up messages (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: fix style of multiline comment (Jaroslav Kysela) [1463624]
-- [sound] alsa: dmaengine: dw: use DMA_COMPLETE for dma completion status (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: return DMA_PAUSED only if cookie status is DMA_IN_PROGRESS (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: return DMA_SUCCESS immediately from device_tx_status() (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: allow shared interrupts (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: improve comparison with ~0 (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: dw: split driver to library part and platform code (Jaroslav Kysela) [1463624]
-- [sound] alsa: dma: move dw_dmac driver to an own directory (Jaroslav Kysela) [1463624]
-- [sound] alsa: gpio: acpi: Add managed variant of acpi_dev_add_driver_gpios() (Jaroslav Kysela) [1463624]
-- [sound] alsa: acpi / gpio: Driver GPIO mappings for ACPI GPIOs (Jaroslav Kysela) [1463624]
-- [sound] alsa: regmap: Mark reg_defaults in regmap_multi_reg_write as const (Jaroslav Kysela) [1463624]
-- [sound] alsa: regmap: new API regmap_multi_reg_write() definition (Jaroslav Kysela) [1463624]
-- [sound] alsa: device property: Add function to search for named child of device (Jaroslav Kysela) [1463624]
-- [sound] alsa: of_graph: add of_graph_get_endpoint_count() (Jaroslav Kysela) [1463624]
-- [sound] alsa: of_graph: add of_graph_get_port_parent() (Jaroslav Kysela) [1463624]
-- [sound] alsa: of_graph: add of_graph_get_remote_endpoint() (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: introduce of_graph_get_remote_node (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: errno.h in of_graph.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: fix a build error to of_graph_get_endpoint_by_regs function (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: add helper for getting endpoint node of specific identifiers (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: Explicitly linux/types.h in of_graph.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: Add of_graph_get_port_by_id function (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: Add for_each_endpoint_of_node helper macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: Fix of_graph_parse_endpoint stub for !CONFIG_OF builds (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: move common endpoint parsing to of (Jaroslav Kysela) [1463624]
-- [sound] alsa: v4l: of: Remove struct v4l2_of_endpoint remote field (Jaroslav Kysela) [1463624]
-- [sound] alsa: of: move graph helpers from media/v4l2-core to of (Jaroslav Kysela) [1463624]
-- [sound] alsa: v4l: of: Return an int in v4l2_of_parse_endpoint() (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Avoid MST pipe handling for LPE audio (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Remove the unused pending_notify from LPE platform data (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Stop pretending to mask/unmask LPE audio interrupts (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Split snd_intelhad into card and PCM specific structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Prepare LPE audio ctls for multiple PCMs (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Clear the pdata.notify_lpe_audio pointer before teardown (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Fix runtime PM for LPE audio (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't enable runtime PM as default (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Use runtime PM autosuspend (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't bail out from PCM ops when disconnected (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Minor code rearrangement (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Stop the stream when buffer is processed after disconnection (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Avoid register accesses during disconnection (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't return an error from chmap ctl at disconnected (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix memory leak in had_build_channel_allocation_map() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Use snd_pcm_stop_xrun() for connection / disconnection paths (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Implement jack control (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused stream.running field (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Handle reset at prepare callback (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Support S16 format (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Support S32 format (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Allow no-period-wakeup setup (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Allow single period PCM operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't pass SNDRV_PCM_INFO_BATCH flag (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Cache AUD_CONFIG register value (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Rearrange defines (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: mark hdmi suspend/resume functions as __maybe_unused (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix driver name string overflow (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Rename had_enable_audio_int() to had_ack_irqs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop suspicious U24 format support (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Refactor PCM process engine (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Unify local function prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Minor cleanup of reset buffer procedure (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't check connection in lowlevel accessors (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Explicit specify 32bit DMA (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Rename drv_status to connected (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Yet more tidy-up and clean-ups (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Simplify comments (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Set CA bits for DisplayPort too (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Create ELD control element (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Clean up unused defines and inclusions (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Reduce redundant register field names (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Use the standard ELD bytes definitions (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Move stream status into pcm_stream_info (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Implement runtime PM (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Properly manage PCM substream lifetype (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused fields from pcm_stream_info (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop redundant had_stream_pvt (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop superfluous state field (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop flag_underrun field (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix racy access to chmap (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove superfluous irqsave flags (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Constfy tables (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove _v[12] suffices (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Tidy up codes (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop had_get_hwstate() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove superfluous check at resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix sleep-in-atomic via i915 notification (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop superfluous PCM private_free (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused fields from snd_intelhad struct (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove indirect call of snd_pcm_period_elapsed() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix for CONFIG_PM=n (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Replace pr_xxx() with dev_xxx() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fold intel_hdmi_audio_if.c into main file (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Flatten two abstraction layers (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused hdmi_audio_query() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Call snd_card_register() at the end (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Embed snd_intelhad into snd_card (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Move dma_mask debug print into intel_hdmi_lpe_audio.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused hw_silence field (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Move the global underrun_count to struct snd_intelhad (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop the global platform device reference (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Fix possible stale interrupt calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Fix use after free in lpe_audio_platdev_destroy() (Jaroslav Kysela) [1463624]
-- [sound] alsa: gpu: drm: i915l intel_lpe_audio: Fix kerneldoc comments (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Pass platform device to LPE audio notifier (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Pass pipe to LPE audio notification (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: add DisplayPort amp unmute for LPE audio mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: add DP support in LPE audio mode (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: Add support for audio driver notifications (Jaroslav Kysela) [1463624]
-- [sound] alsa: drm/i915: setup bridge for HDMI LPE audio driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Handle the error from hdmi_audio_probe() properly (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Use config base depending on the pipe (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: fix resource_size.cocci warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop unused mid_hdmi_audio_is_busy() (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Call event callback directly (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop useless mutex at probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Pass snd_intelhad object to helpers (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop snd_intel_had_interface indirect calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Replace indirect query_ops with direct calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Replace indirect register ops with direct calls (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Don't set PCM state to DISCONNECTED (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: hdmi: fix returnvar.cocci warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Drop indirect calls of had_ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: Remove v1 ops and structs (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: intel_hdmi: add definitions and logic for DP audio (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: hdmi: continue playback even when display resolution changes (Jaroslav Kysela) [1463624]
-- [sound] alsa: x86: hdmi: Add audio support for BYT and CHT (Jaroslav Kysela) [1463624]
-- [sound] alsa: add Intel HDMI LPE audio driver for BYT/CHT-T (Jaroslav Kysela) [1463624]
-- [sound] alsa: 6fire: Use common error handling code in usb6fire_chip_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: usx2y: Use common error handling code in submit_urbs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: us122l: Use common error handling code in us122l_create_card() (Jaroslav Kysela) [1463624]
-- [sound] alsa: usx2y: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-midi: Use common error handling code in __snd_usbmidi_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Add delay quirk for H650e/Jabra 550a USB headsets (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: add DSD support for new Amanero PID (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: don't retry snd_usb_ctl_msg after timeout (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Add mute TLV for playback volumes on C-Media devices (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Apply sample rate quirk to Sennheiser headset (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: caiaq: audio: Delete two error messages for a failed memory allocation in alloc_urbs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: Delete an error message for a failed memory allocation in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: usx2y: Delete an error message for a failed memory allocation in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: line6: remove unnecessary initialization to PODHD500X (Jaroslav Kysela) [1463624]
-- [sound] alsa: line6: add support for POD HD500X (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: Avoid VLA in mixer_us16x08.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: Fix a typo in Tascam US-16x08 mixer element (Jaroslav Kysela) [1463624]
-- [sound] alsa: revert "alsa: usb-audio: purge needless variable length array" (Jaroslav Kysela) [1463624]
-- [sound] alsa: us122l: enable compile testing (Jaroslav Kysela) [1463624]
-- [sound] alsa: us122l: clean up US144 handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: fix Amanero Combo384 quirk on big-endian hosts (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: replace /proc/bus/usb by /dev/bus/usb (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Fake also USB device id when alias is given (Jaroslav Kysela) [1463624]
-- [sound] alsa: lib/vsprintf.c: remove Z support (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Tidy up mixer_us16x08.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Fix memory leak and corruption in mixer_us16x08.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: purge needless variable length array (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: localize function without external linkage (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: localize one-referrer variable (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: Tascam US-16x08 DSP mixer quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Implement mic-mute LED mode enum (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - rename dell_led_set_func to dell_micmute_led_set_func (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - use dell_micmute_led_set() instead of dell_app_wmi_led_set() (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda_intel: add card number to irq description (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Remove superfluous header inclusions (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/ca0132 - Fix memory leak at error path (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix forget to free resource in error handling code path in hda_codec_driver_probe (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Enable jack detection function for Intel ALC700 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix regression of hdmi eld control created based on invalid pcm (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add stereo mic quirk for Lenovo G50-70 (17aa:3978) (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Fix pincfg for Dell XPS 13 9370 (Jaroslav Kysela) [1463624]
-- [sound] alsa: 6fire: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Add Cannonlake PCI ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix speaker output from VAIO VPCL14M1R (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add mute led support for HP ProBook 440 G4 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - No loopback on ALC225/ALC295 codec (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Update headset mode for ALC225 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Update headset mode for ALC298 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add missing NVIDIA GPU codec IDs to patch table (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add hdmi id for a Geminilake variant (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - New codec device ID for ALC1220 (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Protect call to dma_mmap_coherent() by check for HAS_DMA (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - change the location for one of two front microphones (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix unbalance of i915 module refcount (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Remove GPIO_MASK (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Fix typo of pincfg for Dell quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - New codecs support for ALC215/ALC285/ALC289 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Remove ALC285 device ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix doubly initialization of i915 component (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: constify attribute_group structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Support Dell headset mode for ALC3271 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Minor code refactoring for Intel HDMI codec parsers (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Bind with i915 component before codec binding (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Skip card registration when no codec is found (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix endless loop of codec configure (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - set input_path bitmap to zero after moving it to new place (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - There is no loopback mixer in the ALC234/274/294 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Add default procedure for suspend and resume state (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Support headset mode for ALC234/ALC274/ALC294 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix potential race at unregistration and unsol events (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add AZX_DRIVER_SKL for simplification (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Apply quirks to Broxton-T, too (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Add ALC256 HP depop function (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add Coffelake PCI ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek - Reorder ALC269 ASUS quirk entries (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/realtek: Fix mic and headset jack sense on Asus X705UD (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix applying MSI dual-codec mobo quirk (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - apply STAC_9200_DELL_M22 quirk for Dell Latitude D430 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Provide dual-codecs model option for a few Realtek codecs (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Apply dual-codec quirk for MSI Z270-Gaming mobo (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl3: Kill unused set_fs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Fix a typo in comment (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Remove the use of set_fs() (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Remove the generic bind ctl helpers (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Move bind-mixer switch codes to generic parser (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix cpu lockup when stopping the cmd dmas (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add mute led support for HP EliteBook 840 G3 (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add HP ZBook 15u G3 Conexant CX20724 GPIO mute leds (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Move common haswell init to a helper (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - add DP MST audio support (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Add Geminilake id to SKL_PLUS (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Allow to enable/disable vmaster build explicitly (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - set intel audio clock to a proper value (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - add more ML register definitions (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Improved position reporting on SKL+ (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Move SKL+ vendor specific register definitions to hda_register.h (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Avoid tricky macros (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/ca0132: Limit values for chip addresses to 32-bit (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Fix LLCH register read (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda/ca0132: Remove double parentheses (Jaroslav Kysela) [1463624]
-- [sound] alsa: platform/x86: dell-laptop: import dell_micmute_led_set() from leds/dell-led.c (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Add Geminilake HDMI codec ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda - Add Geminilake PCI ID (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: check stream decoupled register state (Jaroslav Kysela) [1463624]
-- [sound] alsa: Fix forgotten dependency fix for tristate OSS sequencer kconfig (Jaroslav Kysela) [1463624]
-- [sound] alsa: emux: Fix/cleanup old ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1463624]
-- [sound] alsa: atmel: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1463624]
-- [sound] alsa: atmel_abdac: clk_round_rate() can return a zero upon error (Jaroslav Kysela) [1463624]
-- [sound] alsa: atmel: Fix possible array overflow (Jaroslav Kysela) [1463624]
-- [sound] alsa: oxygen: xonar dg(x): make model_xonar_dg const (Jaroslav Kysela) [1463624]
-- [sound] alsa: asihpi: Kill BUG_ON() usages (Jaroslav Kysela) [1463624]
-- [sound] alsa: ymfpci: Use common error handling code in snd_ymfpci_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ymfpci: Use common error handling code in snd_card_ymfpci_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: hdspm: Use common error handling code in snd_hdspm_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Use common code in hdsp_get_iobox_version() (Jaroslav Kysela) [1463624]
-- [sound] alsa: maestro3: Use common error handling code in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: Remove null check before kfree (Jaroslav Kysela) [1463624]
-- [sound] alsa: asihpi: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: vx: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl3: Put missing KERN_CONT prefix (Jaroslav Kysela) [1463624]
-- [sound] alsa: cmipci: Use common error handling code in snd_cmipci_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: Use common error handling code in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcsp: Use common error handling code in snd_card_pcsp_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: Add support for STAudio ADCIII (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: Fix forgotten user-copy conversion in init code (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Use common error handling code in two functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: mpu401: Adjust four checks for null pointers (Jaroslav Kysela) [1463624]
-- [sound] alsa: mpu401: Use common error handling code in snd_mpu401_uart_new() (Jaroslav Kysela) [1463624]
-- [sound] alsa: mpu401: Delete an error message for a failed memory allocation in snd_mpu401_uart_new() (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl3: Delete an error message for a failed memory allocation in snd_opl3_new() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ca0106: Delete an error message for a failed memory allocation in snd_ca0106_pcm_open_capture_channel() (Jaroslav Kysela) [1463624]
-- [sound] alsa: mixart: Delete an error message for a failed memory allocation in snd_mixart_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcxhr: Delete an error message for a failed memory allocation in pcxhr_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Adjust seven checks for null pointers (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Improve eight size determinations (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Delete an error message for a failed memory allocation in snd_hdspm_create() (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Adjust five checks for null pointers (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Use common error handling code in snd_rme96_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Delete two error messages for a failed memory allocation in snd_rme96_probe() (Jaroslav Kysela) [1463624]
-- [sound] alsa: trident: Delete an error message for a failed memory allocation in snd_trident_tlb_alloc() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcxhr: fix string overflow warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: fix format overflow warnings (Jaroslav Kysela) [1463624]
-- [sound] alsa: mixart: fix string overflow warning (Jaroslav Kysela) [1463624]
-- [sound] alsa: fm801: Initialize chip after IRQ handler is registered (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl4: Move inline before return type (Jaroslav Kysela) [1463624]
-- [sound] alsa: synth: Select snd-emux-synth explicitly (Jaroslav Kysela) [1463624]
-- [sound] alsa: vx: vx_pcm: constify vx_pcm_playback_ops and vx_pcm_capture_ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: alsa : pcsp: pcsp_lib: constify snd_pcsp_playback_ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme32: Deliver indirect-PCM transfer error (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: Deliver indirect-PCM transfer error (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs46xx: Deliver indirect-PCM transfer error (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: Get rid of set_fs() usage (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs4281: Fix the leftover comment (Jaroslav Kysela) [1463624]
-- [sound] alsa: ak411x: Use array instead of offsetof() (Jaroslav Kysela) [1463624]
-- [sound] alsa: vx222: Use container_of() (Jaroslav Kysela) [1463624]
-- [sound] alsa: ali5451: fix spelling mistake in "ali_capture_preapre" (Jaroslav Kysela) [1463624]
-- [sound] alsa: oxygen: simply setting of the shortname for Xonar DG cards (Jaroslav Kysela) [1463624]
-- [sound] alsa: au88x0: avoid theoretical uninitialized access (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: Fix the incorrect check of dma_set_mask() call (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: Fallback DMA mask to 32bit (Jaroslav Kysela) [1463624]
-- [sound] alsa: vx: remove 'out of memory' message (Jaroslav Kysela) [1463624]
-- [sound] alsa: scripts/spelling.txt: add "overwriten" pattern and fix typo instances (Jaroslav Kysela) [1463624]
-- [sound] alsa: scripts/spelling.txt: add "an union" pattern and fix typo instances (Jaroslav Kysela) [1463624]
-- [sound] alsa: scripts/spelling.txt: add "swith" pattern and fix typo instances (Jaroslav Kysela) [1463624]
-- [sound] alsa: nm256: constify snd_ac97_res_table (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: make hw structures const (Jaroslav Kysela) [1463624]
-- [sound] alsa: intel8x0: constify ac97_pcm structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: atiixp: constify ac97_pcm structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pci: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: mpu401: constify pnp_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: make snd_kcontrol_new const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcxhr: make snd_kcontrol_new const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pci: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: ymfpci: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: trident: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: riptide: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcxhr: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: ctxfi: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: mixart: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: lx6464es: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: lola: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs5535audio: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: korg1212: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs46xx: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: ca0106: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: aw2: make snd_pcm_hardware const (Jaroslav Kysela) [1463624]
-- [sound] alsa: trident: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: sis7019: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: intel8x0m: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: intel8x0: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: echoaudio: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: au88x0: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: ali5451: constify snd_pcm_ops structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usbusx2y: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: us122l: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: ua101: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: snd-usb-caiaq: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: bcd2000: constify usb_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: add const to snd_akm4xxx structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: add const to snd_ak4xxx_private structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: constify pci_device_id (Jaroslav Kysela) [1463624]
-- [sound] alsa: via82xx: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: sonicvibes: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: hdspm: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: hdsp: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme32: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: nm256: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: intel8x0: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1724: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: hda: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: es1938: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: ens137x: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: fm801: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs46xx: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: cmipci: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: bt87x: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: azt3328: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: au88x0: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: atiixp: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: ali5451: Constify hw_constraints (Jaroslav Kysela) [1463624]
-- [sound] alsa: mixart: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: cs46xx: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: ice1712: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-line6: constify snd_kcontrol_new strucutre array (Jaroslav Kysela) [1463624]
-- [sound] alsa: line6: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: usb-audio: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: pci: constify snd_kcontrol_new structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: emu10k1: constify snd_emux_operators structure (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: cage TLV_DB_RANGE_HEAD in kernel land because it was obsoleted (Jaroslav Kysela) [1463624]
-- [sound] alsa: rename TLV-related macros so that they're friendly to user applications (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: move layout of TLV payload to UAPI header (Jaroslav Kysela) [1463624]
-- [sound] alsa: topology: Export ID types for TLV controls (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Fix negative appl_ptr handling in pcm-indirect helpers (Jaroslav Kysela) [1463624]
-- [sound] alsa: doc: Fix enum snd_jack_types comments (Jaroslav Kysela) [1463624]
-- [sound] alsa: compress: fix documentation errors (Jaroslav Kysela) [1463624]
-- [sound] alsa: memalloc.h - fix wrong truncation of dma_addr_t (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: probe events when parameters are changed actually (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add tracepoints for final selection process of hardware parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Skip ack callback without actual appl_ptr update (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add 'applptr' event of tracepoint (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: unify codes to operate application-side position on PCM buffer (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: localize snd_pcm_hw_params_choose() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add local header file for snd-pcm module (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Remove unused functions declaration (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Remove unused SNDRV_PCM_IOCTL1_{FALSE,TRUE} defines (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: fix the comments that refers to kernel-doc (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Use static inline for snd_pcm_lib_alloc_vmalloc_buffer() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Fix kerneldoc for params_*() functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Convert params_*() with static inline functions (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Define dummy snd_pcm_suspend() for CONFIG_PM=n (Jaroslav Kysela) [1463624]
-- [sound] alsa: Use IS_ENABLED() in common headers (Jaroslav Kysela) [1463624]
-- [sound] alsa: compress: Remove unused variable (Jaroslav Kysela) [1463624]
-- [sound] alsa: hwdep: prevent a harmless shift wrapping bug (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Cancel pending autoload work at unbinding device (Jaroslav Kysela) [1463624]
-- [sound] alsa: core: Use pS printk format for direct addresses (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Unify ioctl functions for playback and capture streams (Jaroslav Kysela) [1463624]
-- [sound] alsa: Get rid of card power_lock (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Fix power lock unbalance via OSS emulation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Correct broken procfs set up (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: TLV data is unavailable at initial state of user-defined element set (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: queue TLV event for a set of user-defined element (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: delegate TLV eventing to each driver (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Adjust nine function calls together with a variable assignment (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Use common error handling code in _snd_pcm_new() (Jaroslav Kysela) [1463624]
-- [sound] alsa: core: Fix unexpected error at replacing user TLV (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: use counting semaphore as write lock for ELEM_WRITE operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: code refactoring for ELEM_READ/ELEM_WRITE operations (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: queue events within locking of controls_rwsem for ELEM_WRITE operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: 2nd attempt at fixing race creating a queue (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Fix CONFIG_SND_SEQ_MIDI dependency (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: code refactoring for TLV request handler to user element set (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: code refactoring TLV ioctl handler (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: obsolete user_ctl_lock (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: use counting semaphore as write lock for TLV write/command operations (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: queue events within locking of controls_rwsem for TLV operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Simplify check for dma_mmap_coherent() availability (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: constify attribute_group structures (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Disable only control mmap for explicit appl_ptr sync (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Add an ioctl to specify the supported protocol version (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Add the explicit appl_ptr sync support (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Fix possible inconsistent appl_ptr update via mmap (Jaroslav Kysela) [1463624]
-- [sound] alsa: core: Follow standard EXPORT_SYMBOL() declarations (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Follow standard EXPORT_SYMBOL() declarations (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Follow standard EXPORT_SYMBOL() declarations (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Don't treat NULL chmap as a fatal error (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: remove SNDRV_PCM_IOCTL1_INFO internal command (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Use common PCM_RUNTIME_CHECK() for sanity checks (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Preprocess PAUSED or SUSPENDED stream before PREPARE (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Allow dropping stream directly after resume (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Apply power lock globally to common ioctls (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Clean up SNDRV_PCM_IOCTL_PAUSE code (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use s instead of c for format of PCM buffer tracepoints (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Allow the modular sequencer registration (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: return error immediately for parameters handling (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Reorganize kconfig and build (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Allow the tristate build of OSS emulation (Jaroslav Kysela) [1463624]
-- [sound] alsa: Make CONFIG_SND_OSSEMUL user-selectable (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use friendly name for id of PCM substream in trace print (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: move fixup of info flag after selecting single parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: calculate non-mask/non-interval parameters always when possible (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use helper functions to refer parameters as constants (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add comment about application of rule to PCM parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use helper functions to check whether parameters are determined (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: adaption of code formatting (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: remove function local variable with alternative evaluation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use goto statement instead of while statement to reduce indentation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add a helper function to apply parameter rules (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add a helper function to constrain interval-type parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add a helper function to constrain mask-type parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: obsolete RULES_DEBUG local macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: enable parameter tracepoints only when CONFIG_SND_DEBUG is enabled (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: tracepoints for refining PCM parameters (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Build OSS writev/readv helpers conditionally (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Kill set_fs() in PCM OSS layer (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Direct in-kernel read/write support (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Simplify snd_pcm_playback_silence() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Unify read/write loop (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: More unification of PCM transfer codes (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Call directly the common read/write helpers (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Shuffle codes (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Check PCM state by a common helper function (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Drop the old copy and silence ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: hdsp: Convert to the new PCM ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme9652: Convert to the new PCM ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme96: Convert to the new PCM ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: rme32: Convert to the new PCM copy ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: korg1212: Convert to the new PCM ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: nm256: Convert to new PCM copy ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: es1938: Convert to the new PCM copy ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: dummy: Convert to new PCM copy ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Introduce copy_user, copy_kernel and fill_silence ops (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: pcm_local.h and remove some extraneous tabs (Jaroslav Kysela) [1463624]
-- [sound] alsa: declare snd_kcontrol_new structures as const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Call ack() whenever appl_ptr is updated (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: remove entry limitation for list operation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Remove set_fs() in PCM core code (Jaroslav Kysela) [1463624]
-- [sound] alsa: control: Simplify snd_ctl_elem_list() implementation (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Simplify forward/rewind codes (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Use a common helper for PCM state check and hwsync (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm/oss: mark snd_pcm_plug_slave_format arg as const (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use "do {} while (0)" for empty macro (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: constify function local and read-only table (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm/oss: refer to parameters instead of copying to reduce usage of kernel stack (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: use helper function to refer parameter as read-only (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: add const qualifier for read-only table for sampling rate (Jaroslav Kysela) [1463624]
-- [sound] alsa: opl4: Use IS_REACHABLE() (Jaroslav Kysela) [1463624]
-- [sound] alsa: pcm: Build pcm notifier code conditionally (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Don't break snd_use_lock_sync() loop by timeout (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Fix race during FIFO resize (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Fix racy cell insertions during snd_seq_pool_done() (Jaroslav Kysela) [1463624]
-- [sound] alsa: seq: Fix link corruption by event error handling (Jaroslav Kysela) [1463624]
-
-* Thu Oct 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-740.el7]
-- [scsi] qla2xxx: Move initialization of work element earlier (Himanshu Madhani) [1500417]
-- [scsi] qla2xxx: Fix uninitialized work element (Himanshu Madhani) [1500417]
-- [scsi] lpfc: change version to 11.4.0.4 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: correct nvme sg segment count check (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix oops of nvme host during driver unload (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Extend RDP support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Ensure io aborts interlocked with the target (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix secure firmware updates (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash in lpfc_nvme_fcp_io_submit during LIP (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Disable NPIV support if NVME is enabled (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix oops if nvmet_fc_register_targetport fails (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Revise NVME module parameter descriptions for better clarity (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Set missing abort context (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Reduce log spew on controller reconnects (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix FCP hba_wqidx assignment (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Move CQ processing to a soft IRQ (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Make ktime sampling more accurate (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: PLOGI failures during NPIV testing (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix warning messages when NVME_TARGET_FC not defined (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix lpfc nvme host rejecting IO with Not Ready message (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash receiving ELS while detaching driver (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix pci hot plug crash in list_add call (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix pci hot plug crash in timer management routines (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Cocci spatch "pool_zalloc-simple" (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove redundant null check on eqe (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: use proper format string for dma_addr_t (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: avoid false-positive gcc-8 warning (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: avoid an unused function warning (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: lpfc version bump 11.4.0.3 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix "integer constant too large" error on 32bit archs (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add Buffer to Buffer credit recovery support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove console log clutter (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix bad sgl reposting after 2nd adapter reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme target failure after 2nd adapter reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix relative offset error on large nvmet target ios (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix MRQ > 1 context list handling (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Limit amount of work processed in IRQ (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Correct issues with FAWWN and FDISCs (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVME PRLI handling during RSCN (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash in lpfc nvmet when fc port is reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix duplicate NVME rport entries and namespaces (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix handling of FCP and NVME FC4 types in Pt2Pt topology (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Correct return error codes to align with nvme_fc transport (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: convert info messages to standard messages (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix oops when NVME Target is discovered in a nonNVME environment (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix rediscovery on switch blade pull (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix loop mode target discovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix plogi collision that causes illegal state transition (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove useless code in lpfc_sli4_bsg_link_diag_test (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Replace PCI pool old API (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: support nvmet_fc defer_rcv callback (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: don't double count abort errors (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: spin_lock_irq() is not nestable (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix refcount error on node list (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme io stoppage after link bounce (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: update to revision to 11.4.0.1 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Driver responds LS_RJT to Beacon Off ELS - Linux (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash in lpfc_sli_ringtxcmpl_put when nvmet gets an abort request (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash doing IO with resets (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash after firmware flash when IO is running (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix SLI3 drivers attempting NVME ELS commands (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Break up IO ctx list into a separate get and put list (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Reduce time spent in IRQ for received NVME commands (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Vport creation is failing with "Link Down" error (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme_info sysfs output to be consistent (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix system panic when express lane enabled (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: update to revision to 11.4.0.0 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add auto EQ delay logic (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix defects reported by Coverity Scan (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix vports not logging into target (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix PRLI retry handling when target rejects it (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix System panic after loading the driver (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash on powering off BFS VM with passthrough device (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix return value of board_mode store routine in case of online failure (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix counters so outstandng NVME IO count is accurate (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix Port going offline after multiple resets (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvmet node ref count handling (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix Lun Priority level shown as NA (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add changes to assist in NVMET debugging (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme port role handling in sysfs and debugfs handlers (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix transition nvme-i rport handling to nport only (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add nvme initiator devloss support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: make a couple of functions static (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix spelling mistake "entrys" -> "entries" (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: debugfs: get rid of pointless access_ok() (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: prevent potential null pointer dereference (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Avoid NULL pointer dereference in lpfc_els_abort() (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvmet_fc: fix format string (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] nvmet-fc: remove target cpu scheduling flag (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix build issue if NVME_FC_TARGET is not defined (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NULL pointer dereference during PCI error recovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: update version to 11.2.0.14 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add MDS Diagnostic support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVMEI's handling of NVMET's PRLI response attributes (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Cleanup entry_repost settings on SLI4 queues (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix debugfs root inode "lpfc" not getting deleted on driver unload (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVME I+T not registering NVME as a supported FC4 type (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Added recovery logic for running out of NVMET IO context resources (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Separate NVMET RQ buffer posting from IO resources SGL/iocbq/context (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Separate NVMET data buffer pool fir ELS/CT (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NMI watchdog assertions when running nvmet IOPS tests (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVMEI driver not decrementing counter causing bad rport state (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvmet RQ resource needs for large block writes (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Adding additional stats counters for nvme (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix system crash when port is reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix used-RPI accounting problem (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: ensure els_wq is being checked before destroying it (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: double lock typo in lpfc_ns_rsp() (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: lpfc_get_wwpn at wrong offset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix memory corruption of the lpfc_ncmd->list pointers (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: revison 11.2.0.12 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Update ABORT processing for NVMET (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix implicit logo and RSCN handling for NVMET (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add Fabric assigned WWN support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix max_sgl_segments settings for NVME / NVMET (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix crash after issuing lip reset (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix driver load issues when MRQ=8 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Remove hba lock from NVMET issue WQE (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] Fix nvme initiator handling when not enabled (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix driver usage of 128B WQEs when WQ_CREATE is V1 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix driver unload/reload operation (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix PRLI ACC rsp for NVME (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix extra line print in rqpair debug print (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Remove NULL ptr check before kfree (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Remove unused defines for NVME PostBuf (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix spelling in comments (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Add debug messages for nvme/fcp resource allocation (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix log message in completion path (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix rejected nvme LS Req (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme unregister port timeout (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Standardize nvme SGL segment count (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] nvmet_fc: Rework target side abort handling (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] nvmet_fc: add req_release to lldd api (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] nvmet_fc: add target feature flags for upcall isr contexts (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix potential buffer overflow (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix building without debugfs support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix PT2PT PRLI reject (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc version bump for rhel7.5 nvme to 11.2.0.11 (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Finalize Kconfig options for nvme (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Rework lpfc Kconfig for NVME options (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: add missing Kconfig NVME dependencies (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: replace init_timer by setup_timer (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: code cleanups in NVME initiator discovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: use div_u64 for 64-bit division (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: code cleanups in NVME initiator base (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove dead sli3 nvme code (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: correct double print (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Rename LPFC_MAX_EQ_DELAY to LPFC_MAX_EQ_DELAY_EQID_CNT (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: add NVME exchange aborts (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix nvme allocation bug on failed nvme_fc_register_localport (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix IO submission if WQ is full (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix NVME CMD IU byte swapped word 1 problem (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Fix RCTL value on NVME LS request and response (Dick Kennedy) [1385844 1461977 1387768]
-- [lpfc] Fix crash during Hardware error recovery on SLI3 adapters (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: fix missing spin_unlock on sql_list_lock (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: don't dereference dma_buf-&gt; iocbq before null check (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: sanity check hrq is null before dereferencing it (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: remove redundant assignment of sgel (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] Update lpfc version to 11.2.0.8 for rhel7.5 with NVME support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: Update copyrights (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: NVME: Target: Add debugfs support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: NVME: Target: bind to nvmet_fc api (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Target: Merge into FC discovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Target: Receive buffer updates (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Target: Base modifications (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Initiator: Add debugfs support (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Initiator: bind to nvme_fc api (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Initiator: Merge into FC discovery (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: nvme: Initiator: Base modifications (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: refactor debugfs queue dump routines (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: refactor debugfs queue prints (Dick Kennedy) [1385844 1461977 1387768]
-- [scsi] lpfc: minor code cleanups (Dick Kennedy) [1385844 1461977 1387768]
-
-* Wed Oct 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-739.el7]
-- [infiniband] lx5e: Fix race in mlx5e_sw_stats and mlx5e_vport_stats (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Fix ETHTOOL_GRXCLSRLALL handling (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Fix small packet threshold (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix UAR memory leak (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Make sure the FW max encap size is enough for ipv6 tunnels (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Make sure the FW max encap size is enough for ipv4 tunnels (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix driver load bad flow when having fw initializing timeout (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix issue in populating the PFC config paramters (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix possible system hang in the dcbnl-getdcbx() path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix sending an invalid PFC error mask to MFW (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix possible error in populating max_tc field (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: set XPT_CONG_CTRL flag for bc xprt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/qib: fix false-postive maybe-uninitialized warning (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cq: Don't process more than the given budget (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: increment msn only when completing a request (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] uapi: fix rdma/mlx5-abi.h userspace compilation errors (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Update documentation link (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/ocrdma: fix a type issue in ocrdma_put_pd_num() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/vmw_pvrdma: Activate device on link up (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/vmw_pvrdma: Dont hardcode QP header page (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/vmw_pvrdma: Cleanup unused variables (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] Fix alignment of mmap cookies to support VIPT caching (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Protect against self-requeue of a cq work item (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Avoid supporting udp tunnel port ndo for VF reps (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Use the proper UAPI values when offloading TC vlan actions (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] xprtrdma: Squelch kbuild sparse complaint (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix interrupt flags on Rx LL2 (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Prevent creation of too-big u32-chains (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: add IPV6 dependency (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Don't use attention PTT for configuring BW (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Fix race with multiple VFs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] sunrpc: flag transports as having congestion control (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_en: Use __skb_fill_page_desc() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4: Change ENOTSUPP to EOPNOTSUPP (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma_cm: fail iwarp accepts w/o connection params (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed*: Fix link indication race (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Don't allocate SBs using main PTT (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qede: Prevent index problems in loopback test (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Reflect PF link when initializing VF (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qede: Free netdevice only after stoping slowpath (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qede: Initialize lock and slowpath workqueue early (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Reserve doorbell BAR space for present CPUs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Read queue state before releasing buffer (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Release CQ resource under lock on failure (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx4: fix potential divide by 0 in mlx4_en_auto_moderation() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/srp: Drain the send queue before destroying a QP (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Add support for draining IB_POLL_DIRECT completion queues (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/srp: Improve an error path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/srp: Make a diagnostic message more informative (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/srp: Document locking conventions (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/qedr: Fix some error handling (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/vmw_pvrdma: Expose vendor error to ULPs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: use size_t for passing array length (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Remove redudant label (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: remove the unnecessary memory free (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Code reuse with memdup_copy (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, qib, rdmavt: Move AETH defines to rdma/ib_hdrs.h (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Add rvt_rnr_tbl_to_usec function (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Do not set physical link state if DC is in the shutdown state (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Modify logging frequency of DCC errors (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rdmavt, ib/hfi1, ib/qib: Correct ack count for passive (RTR) QPs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/qib: Updates to use rdmavt's SGE helper routines (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, rdmavt: Move SGE state helper routines into rdmavt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, rdmavt: Update copy_sge to use boolean arguments (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/qib: Use new rdmavt timers (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Use new rdmavt timers (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rdmavt: Adding timer logic to rdmavt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, qib, rdmavt: Move AETH credit functions into rdmavt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1, qib, rdmavt: Move two IB event functions into rdmavt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Check upper-case EFI variables (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Reduce oversized fields in struct hfi1_packet (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Add additional fields to qp_stats (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Allocate context data on memory node (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rdmavt: Use per-CPU reference count for MRs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Access hfi1_ibport through rcd pointer (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Correct error calldown locking (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Use static CTLE with Preset 6 for integrated HFIs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Ensure read of producer s_head is correct (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/hfi1: Correct defered count after processing qp_wait_list (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: use setup_timer to simplify the code (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/iser: Protect completion context active_qps update (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx4: do not fire tasklet unless necessary (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qede: Add driver support for PTP (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Add infrastructure for PTP support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx4: do not use rwlock in fast path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Destination and source addr families must match (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Add default RoCE TOS to CMA configfs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Remove pointer casting from void to net_device (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix configuration of port capabilities (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix blue flame buffer size calculation (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx4: Remove unused variable from function declaration (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib: Query ports via the core instead of direct into the driver (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib: Add protocol for USNIC (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx4: Support raw packet protocol (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Support raw packet protocol (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Add raw packet protocol (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add implicit MR support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Expose MR cache for mlx5_ib (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add null_mkey access (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/umem: Indicate that process is being terminated (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/umem: Update on demand page (ODP) support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Add implicit MR flag (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add port counter support for Receive WQs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Expose Q counters groups only if they are supported by FW (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Remove deprecated module parameter (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Assign DSCP for R-RoCE QPs Address Path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Avoid SMP MADs from VFs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add additional checks before processing MADs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Return error for unsupported signature type (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix out-of-bound access (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rhel-only: Add CONFIG_INFINIBAND_BNXT_RE (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/bnxt_re: fix for "bnxt_en: Update to firmware interface spec 1.7.0." (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/bnxt_re: Add bnxt_re driver build support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/bnxt_re: Add bnxt_re RoCE driver (Don Dutile) [1456687 1456667 1409099 1386645 1385649 1385309]
-- [infiniband] xprtrdma: Refactor management of mw_list field (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] xprtrdma: Handle stale connection rejection (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] xprtrdma: Properly recover FRWRs with in-flight FASTREG WRs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] sunrpc: fix build errors when linux/phy*.h is removed from sa.h (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Poll CQs in "workqueue" mode (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Combine list fields in struct svc_rdma_op_ctxt (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Remove unused sc_dto_q field (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Clean up backchannel send header encoding (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Clean up RPC-over-RDMA Call header decoder (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Clean up RPC-over-RDMA Reply header encoder (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] svcrdma: Another sendto chunk list parsing update (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: fix another maybe-uninitialized false-positive (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_en: fix a condition (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Bring back bfreg uar map dedicated pointer (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Tx, no inline copy on ConnectX-5 (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: TX WQE update (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Configure cache line size for start and end padding (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix static checker warnings (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] cxgb4: get rid of custom busy poll code (Don Dutile) [1456687 1456667 1409099 1386645 1385649 1385309]
-- [infiniband] lx4_en: Check the enabling pptx/pprx flags in SET_PORT wrapper flow (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_en: Check the enabling mtu flag in SET_PORT wrapper flow (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_en: Pass user MTU value to Firmware at set port command (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_core: Get num_tc using netdev_get_num_tc (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_core: Add resource alloc/dealloc debugging (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4_core: Device revision support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4: Replace ENOSYS with better fitting error codes (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Add inline function to validate port (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Fix reversed test (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Remove the unnecessary error check (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/qib: Remove empty function (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: create struct ib_port_cache (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: function interface change (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Allow port reuse for rdma_id (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/cma: Add debug messages to error flows (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Remove unnecessary returned value check (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/isert: fix spelling mistake: "teminating" -> "terminating" (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mad: Add port_num to error message (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/vmw_pvrdma: Remove unused qp_type (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/core: Fix typo in comment (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: CQE compression control code reuse (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Reduce memory consumption on kdump kernel (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Enable Eth VFs to query their min-inline value for user-space (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Push min-inline mode resolution helper into the core (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Add support for setting VF min rate (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Support SRIOV TC encapsulation offloads for IPv6 tunnels (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Maximize ip tunnel key usage on the TC offloading path (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Use the full tunnel key info for encapsulation offload house-keeping (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: TC ipv4 tunnel encap offload cosmetic changes (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Add TC offloads matching on IPv6 encapsulation headers (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Use exact encap header size for the FW input buffer (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx4: use rb_entry() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx4: support __GFP_MEMALLOC for rx (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5e: Receive s-tagged packets in promiscuous mode (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Add support to s-tag in mlx5 firmware interface (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix version printout in case of health issue (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Remove information print after attempt to load mlx5_ib module (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed: Replace memset with eth_zero_addr (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/cma: use cached port state when bind loopback (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/cma: resolve to first active ib port (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: export ib_get_cached_port_state (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: add port state cache (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Change list_del to list_del_init in the tx object (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Replace list_del of the neigh->list with list_del_init (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Use debug prints instead of warnings in RNR WC status (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Add detailed error message to dev_queue_xmit call (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: rtnl_unlock can not come after free_netdev (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Fix deadlock between rmmod and set_mode (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Fix deadlock over vlan_mutex (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: Set device connection mode only when needed (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/ipoib: When given an invalid UD MTU, give debug msg (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/ocrdma: Replace BUG() with BUG_ON() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Fix incorrect structure packing for booleans (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/qedr: restructure functions that create/destroy QPs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/qib: use rb_entry() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/hfi1: drop pci_link_reset() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/qib: drop qib_pci_link_reset() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/nes: use designated initializers (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Fix an skb leak (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Fix reference leaks in memory key invalidation code (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Fix a MR reference leak in check_rkey() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Generate a completion for all failed work requests (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Introduce functions for queue draining (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Add a runtime check in alloc_index() (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Issue warnings once (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Let the compiler check the type of the cleanup functions (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Enable type checking on SKB_TO_PKT() and PKT_TO_SKB() arguments (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Remove superfluous casts (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Remove an unused variable and an unused argument (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Remove an unused function (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/rxe: Constify the pool name (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma: Adding ethertype ETH_P_IBOE (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Unify style of IOCTL commands (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Rename RDMA magic number (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Move HFI1 IOCTL declarations to common file (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/hfi1: Avoid redeclaration error (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Move legacy MAD IOCTL declarations to common file (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] rdma/core: Commonize RDMA IOCTL declarations location (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Activate support for 4K UARs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Support 4k UAR for libmlx5 (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Allow future extension of libmlx5 input data (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Use blue flame register allocator in mlx5_ib (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Add interface to get reference to a UAR (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Introduce blue flame register allocator (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix retrieval of index to first hi class bfreg (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] mlx5: Fix naming convention with respect to UARs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix error handling order in create_kernel_qp (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Fix kernel to user leak prevention logic (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Improve MR check (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add ODP atomics support (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] {net,ib}/mlx5: Refactor page fault handling (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Update PAGE_FAULT_RESUME layout (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add MR cache for large UMR regions (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add support for big MRs (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Refactor UMR post send format (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Support new MR features (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Add helper mlx5_ib_post_send_wait (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] ib/mlx5: Reorder code in query device command (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] lx5: Fix offset naming for reserved fields in hca_cap_bits (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-- [infiniband] qed*: Add support for ndo_set_vf_trust (Don Dutile) [1385309 1385649 1386645 1409099 1456667 1456687]
-
-* Tue Oct 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-738.el7]
-- [kernel] audit: ensure that 'audit=1' actually enables audit for PID 1 (Paul Moore) [1487352]
-- [tools] perf c2c: Fix remote HITM detection for Skylake (Jiri Olsa) [1485994]
-- [tools] perf test: Add test cases for new data source encoding (Jiri Olsa) [1485994]
-- [tools] perf tools: Add support for printing new mem_info encodings (Jiri Olsa) [1485994]
-- [uapi] perf/x86: Fix data source decoding for Skylake (Jiri Olsa) [1485994]
-- [x86] perf/x86: Move Nehalem PEBS code to flag (Jiri Olsa) [1485994]
-- [x86] kvm: x86: Fix potential preemption when get the current kvmclock timestamp (Marcelo Tosatti) [1496522]
-- [x86] kvm: x86: remove irq disablement around KVM_SET_CLOCK/KVM_GET_CLOCK (Marcelo Tosatti) [1496522]
-- [x86] nmi: Use raw lock (Scott Wood) [1465546]
-- [dma] s390, ppc: Remove dma_supported for s390 and powerpc (Don Dutile) [1499440]
-- [s390] Cleanup arch/s390/Kconfig DMA_ATTRS (Don Dutile) [1499440]
-- [s390] qdio: avoid reschedule of outbound tasklet once killed (Hendrik Brueckner) [1499699]
-- [s390] lib: export udelay_simple for systemtap (Hendrik Brueckner) [1499014]
-- [scsi] csiostor: fail probe if fw does not support FCoE (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: update module version (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: add check for supported fw version (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Avoid content leaks and casts (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: add support for Chelsio T6 adapters (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: fix use after free in csio_hw_use_fwconfig() (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Fix completion usage (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: fix an error code in csio_hw_init() (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Use firmware version from cxgb4/t4fw_version.h (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: T5 Firmware fix and cleanup (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Removed file csio_hw_t4.c (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Remove T4 FCoE Support (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: fix sparse warnings (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: firmware upgrade fix (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Use pci_enable_msix_range() instead of pci_enable_msix() (Arjun Vynipadath) [1458318]
-- [scsi] csiostor: Remove superfluous call to pci_disable_msix() (Arjun Vynipadath) [1458318]
-- [char] ipmi:ssif: Add missing unlock in error branch (Tony Camuso) [1457807]
-- [char] ipmi: constify bmc_dev_attr_group and bmc_device_type (Tony Camuso) [1457807]
-- [char] ipmi: get rid of field-by-field __get_user() (Tony Camuso) [1457807]
-- [char] ipmi: get COMPAT_IPMICTL_RECEIVE_MSG in sync with the native one (Tony Camuso) [1457807]
-- [char] ipmi:ssif: Use i2c_adapter_id instead of adapter->nr (Tony Camuso) [1457807]
-- [char] ipmi: Use the proper default value for register size in ACPI (Tony Camuso) [1457807]
-- [char] ipmi_ssif: remove redundant null check on array client->adapter->name (Tony Camuso) [1457807]
-- [char] ipmi: Pick up slave address from SMBIOS on an ACPI device (Tony Camuso) [1457807]
-- [char] ipmi/watchdog: fix watchdog timeout set on reboot (Tony Camuso) [1457807]
-- [char] ipmi_ssif: unlock on allocation failure (Tony Camuso) [1457807]
-- [char] ipmi/watchdog: fix wdog hang on panic waiting for ipmi response (Tony Camuso) [1457807]
-- [char] ipmi_si: use smi_num for init_name (Tony Camuso) [1457807]
-- [char] Move platform device creation earlier in the initialization (Tony Camuso) [1457807]
-- [char] ipmi: bt-bmc: Add ast2500 compatible string (Tony Camuso) [1457807]
-- [char] ipmi/bt-bmc: change compatible node to 'aspeed, ast2400-ibt-bmc' (Tony Camuso) [1457807]
-- [char] ipmi_ssif: use setup_timer (Tony Camuso) [1457807]
-- [char] ipmi: Fix kernel panic at ipmi_ssif_thread() (Tony Camuso) [1457807]
-- [char] ipmi_si: Clean up printks (Tony Camuso) [1457807]
-- [mm] page_cgroup: Fix Kernel bug during boot with memory cgroups enabled (Larry Woodman) [1483747]
-- [fs] ext4: fix off-by-one on max nr_pages in ext4_find_unwritten_pgoff() (Bill O'Donnell) [1458728]
-- [fs] flexfiles: fix leak of nfs4_ff_ds_version arrays (Steve Dickson) [1496533]
-- [fs] nfs: Fix 2 use after free issues in the I/O code (Steve Dickson) [1496506]
-- [fs] pnfs: Use the standard I/O stateid when calling LAYOUTGET (Steve Dickson) [1496503]
-- [fs] nfsv4: Use correct inode in _nfs4_opendata_to_nfs4_state() (Steve Dickson) [1496500]
-- [fs] nfsv4.1: Fix a race in nfs4_proc_layoutget (Steve Dickson) [1478509]
-- [fs] nfsv4: fix a reference leak caused WARNING messages (Steve Dickson) [1478507]
-- [fs] nfsv4: Fix an rcu lock leak (Steve Dickson) [1478505]
-- [fs] nfs: Don't write back further requests if there is a pending write error (Steve Dickson) [1478486]
-- [fs] nfs: flexfiles: fix kernel OOPS if MDS returns unsupported DS type (Steve Dickson) [1478511]
-- [fs] pnfs/flexfiles: Handle expired layout segments in ff_layout_initiate_commit() (Steve Dickson) [1478511]
-- [fs] nfs: Fix another COMMIT race in pNFS (Steve Dickson) [1478511]
-- [fs] nfs: Fix a COMMIT race in pNFS (Steve Dickson) [1478511]
-- [fs] pnfs: Ensure we commit the layout if it has been invalidated (Steve Dickson) [1478487]
-- [fs] flexfiles: Fix up the ff_layout_write_pagelist failure path (Steve Dickson) [1478487]
-- [fs] PNFS for stateid errors retry against MDS first (Steve Dickson) [1458863]
-- [fs] PNFS fix EACCESS on commit to DS handling (Steve Dickson) [1458863]
-- [fs] PNFS fix fallback to MDS if got error on commit to DS (Steve Dickson) [1458863]
-- [fs] pnfs: Fix a deadlock when coalescing writes and returning the layout (Steve Dickson) [1478500]
-- [fs] pnfs: Don't clear the layout return info if there are segments to return (Steve Dickson) [1478500]
-
-* Fri Oct 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-737.el7]
-- [nvme] fix the definition of the doorbell buffer config support bit (David Milburn) [1454365 1456486 1457880]
-- [nvme] pci: use dma memory for the host memory buffer descriptors (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: default MR page size to 4k (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: set cqe_seen on polled completions (David Milburn) [1457880 1456486 1454365]
-- [nvme] fabrics: fix reporting of unrecognized options (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: eliminate incorrect static markers on local variables (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: correct use after free on list teardown (David Milburn) [1457880 1456486 1454365]
-- [nvme] don't overwrite identify sn/fr with 0-bytes (David Milburn) [1457880 1456486 1454365]
-- [nvme] fix nvme reset command timeout handling (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: fix CMB sysfs file removal in reset path (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add defer_req callback for deferment of cmd buffer return (David Milburn) [1457880 1456486 1454365]
-- [nvme] strip trailing 0-bytes in wwid_show (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: fix HMB size calculation (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: revise TRADDR parsing (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: address target disconnect race conditions in fcp io submit (David Milburn) [1457880 1456486 1454365]
-- [nvme] fabrics commands should use the fctype field for data direction (David Milburn) [1457880 1456486 1454365]
-- [nvme] also provide a UUID in the WWID sysfs attribute (David Milburn) [1457880 1456486 1454365]
-- [nvme] don't report 0-bytes in serial number (David Milburn) [1457880 1456486 1454365]
-- [nvme] Move serial number from controller to subsystem (David Milburn) [1457880 1456486 1454365]
-- [nvme] prefix version configfs file with attr (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Fix an error handling path in 'nvme_probe()' (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Remove nvme_setup_prps BUG_ON (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix byte swapping in nvmet_fc_ls_create_association (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: add module parameter for io queue depth (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: compile warnings in nvme_alloc_host_mem() (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Accept variable pad lengths on Create Association LS (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: revise Create Association descriptor length (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: unconditionally recycle the request mr (David Milburn) [1457880 1456486 1454365]
-- [nvme] split nvme_uninit_ctrl into stop and uninit (David Milburn) [1457880 1456486 1454365]
-- [nvme] kick requeue list when requeueing a request instead of when starting the queues (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: remove race conditions from IB signalling (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: use blk_mq_delay_run_hw_queue instead of open-coding it (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: update tagset nr_hw_queues after queues reinit (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: update tagset nr_hw_queues after reconnecting/resetting (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: update tagset nr_hw_queues after reconnecting/resetting (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: don't override opts->nr_io_queues (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: rename to nvme_pci_configure_admin_queue (David Milburn) [1457880 1456486 1454365]
-- [nvme] move ctrl cap to struct nvme_ctrl (David Milburn) [1457880 1456486 1454365]
-- [nvme] move queue_count to the nvme_ctrl (David Milburn) [1457880 1456486 1454365]
-- [nvme] Quirks for PM1725 controllers (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: register ib_client to not deadlock in device removal (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix error recovery on link down (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix crashes on bad opcodes (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Fix crash when nvme controller connection fails (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: replace ioabort msleep loop with completion (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix double calls to nvme_cleanup_cmd() (David Milburn) [1457880 1456486 1454365]
-- [nvme] fabrics: verify that a controller returns the correct NQN (David Milburn) [1457880 1456486 1454365]
-- [nvme] simplify nvme_dev_attrs_are_visible (David Milburn) [1457880 1456486 1454365]
-- [nvme] read the subsystem NQN from Identify Controller (David Milburn) [1457880 1454365 1456486]
-- [nvme] remove a misleading comment on struct nvme_ns (David Milburn) [1457880 1456486 1454365]
-- [nvme] explicitly disable APST on quirked devices (David Milburn) [1389600]
-- [nvme] use a single NVME_AQ_DEPTH and relax it to 32 (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: factor out the cqe reading mechanics from __nvme_process_cq (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: factor out cqe handling into a dedicated routine (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Introduce nvme_ring_cq_doorbell (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Fix stuck nvme reset (David Milburn) [1457880 1456486 1454365]
-- [nvme] implement NS Optimal IO Boundary from 1.3 Spec (David Milburn) [1457880 1456486 1454365]
-- [nvme] no need to wait for the reset when keepalive fails (David Milburn) [1457880 1456486 1454365]
-- [nvme] move reset workqueue handling to common code (David Milburn) [1454365 1456486 1457880]
-- [nvme] pci: Remove watchdog timer (David Milburn) [1457880 1456486 1454365]
-- [nvme] move protection information check into nvme_setup_rw (David Milburn) [1457880 1456486 1454365]
-- [nvme] mark shutdown_timeout static (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: fix error code in nvme_rdma_create_ctrl() (David Milburn) [1457880 1456486 1454365]
-- [nvme] fabrics: keep track of nvmet connect error status (David Milburn) [1457880 1456486 1454365]
-- [nvme] add fields into identify controller data structure (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Remove a set-but-not-used variable (David Milburn) [1457880 1456486 1454365]
-- [nvme] use ctrl->device consistently for logging (David Milburn) [1457880 1456486 1454365]
-- [nvme] allow overriding the NVMe VS via configfs (David Milburn) [1457880 1456486 1454365]
-- [nvme] add uuid field to nvme_ns and populate via configfs (David Milburn) [1451199]
-- [nvme] implement namespace identify descriptor list (David Milburn) [1451199]
-- [nvme] provide UUID value to userspace (David Milburn) [1451199]
-- [nvme] get list of namespace descriptors (David Milburn) [1451199]
-- [nvme] rename uuid to nguid in nvme_ns (David Milburn) [1451199]
-- [nvme] introduce NVMe Namespace Identification Descriptor structures (David Milburn) [1457880 1456486 1454365]
-- [nvme] use NVME_IDENTIFY_DATA_SIZE (David Milburn) [1457880 1456486 1454365]
-- [nvme] [lib] add sg_zero_buffer() helper (David Milburn) [1457880 1456486 1454365]
-- [nvme] nvme-pci: remove redundant includes (David Milburn) [1454365 1456486 1457880]
-- [nvme] nvme-pci: remap BAR0 to cover admin CQ doorbell for large stride (David Milburn) [1457880 1456486 1454365]
-- [nvme] move nr_reconnects to nvme_ctrl (David Milburn) [1457880 1456486 1454365]
-- [nvme] queue ns scanning and async request from nvme_wq (David Milburn) [1457880 1456486 1454365]
-- [nvme] Move transports to use nvme-core workqueue (David Milburn) [1457880 1456486 1454365]
-- [nvme] Don't allow to reset a reconnecting controller (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Get rid of CONNECTED state (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: rework rdma connection establishment error path (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: make nvme_rdma_(create|destroy)_queue_ib symmetrical (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Make queue flags bit numbers and not shifts (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: get rid of unused ctrl lock (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: get rid of unused controller lock (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: implement host memory buffer support (David Milburn) [1454365 1456486 1457880]
-- [nvme] [kernel] dma-mapping: introduce the DMA_ATTR_NO_WARN attribute (David Milburn) [1457880 1456486 1454365]
-- [nvme] save hmpre and hmmin in struct nvme_ctrl (David Milburn) [1457880 1456486 1454365]
-- [nvme] add dword 12 - 15 fields to struct nvme_features (David Milburn) [1457880 1456486 1454365]
-- [nvme] add struct nvme_host_mem_buf_desc and HMB flags (David Milburn) [1457880 1456486 1454365]
-- [nvme] relax APST default max latency to 100ms (David Milburn) [1389600]
-- [nvme] only consider exit latency when choosing useful non-op power states (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix missing put reference on controller create failure (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: on lldd/transport io error, terminate association (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: fast fail incoming requests while we reconnect (David Milburn) [1468743]
-- [nvme] pci: fix multiple ctrl removal scheduling (David Milburn) [1454365 1456486 1457880]
-- [nvme] fix hang in remove path (David Milburn) [1457880 1456486 1454365]
-- [nvme] Quirk APST on Intel 600P/P3100 devices (David Milburn) [1389600]
-- [nvme] replace is_flags field in nvme_ctrl_ops with a flags field (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: consistencly use ctrl->device for logging (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: remove extra controller reference taken on reconnect (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: correct nvme status set on abort (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: set logging level on resets/deletes (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: revise comment on teardown (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Support ctrl_loss_tmo (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: get rid of local reconnect_delay (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: support devices with queue size < 32 (David Milburn) [1457880 1456486 1454365]
-- [nvme] release the sq ref on rdma read errors (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: remove target cpu scheduling flag (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: stop queues on error detection (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: require target or discovery role for fc-nvme targets (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: correct port role bits (David Milburn) [1457880 1456486 1454365]
-- [nvme] unmap CMB and remove sysfs file in reset path (David Milburn) [1457880 1456486 1454365]
-- [nvme] scsi: remove nvme_trans_security_protocol (David Milburn) [1457880 1456486 1454365]
-- [nvme] scsi: Consider LBA format in IO splitting calculation (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: avoid memory corruption caused by calling nvmf_free_options() twice (David Milburn) [1457880 1456486 1454365]
-- [nvme] Add nvme_core.force_apst to ignore the NO_APST quirk (David Milburn) [1389600]
-- [nvme] Display raw APST configuration via DYNAMIC_DEBUG (David Milburn) [1389600]
-- [nvme] Fix APST comment (David Milburn) [1389600]
-- [nvme] fcloop: mark two symbols static (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: properly endian swap sq_head (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: mark the sqhd field as __le16 (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix endianess annoations for nvmet_fc_format_rsp_hdr (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: mark nvmet_fc_handle_fcp_rqst static (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: mark two symbols static (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add controller reset support (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add aen abort to teardown (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix command id check (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Change traddr field separator to a colon (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Add ls aborts on remote port teardown (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Move LS's to rport (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add missing reference in add_port (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Rework target side abort handling (David Milburn) [1457880 1456486 1454365]
-- [nvme] fcloop: split job struct from transport for req_release (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add req_release to lldd api (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: add target feature flags for upcall isr contexts (David Milburn) [1457880 1456486 1454365]
-- [nvme] convert from kmap to nvmet_copy_from_sgl (David Milburn) [1457880 1456486 1454365]
-- [nvme] improve performance for virtual NVMe devices (David Milburn) [1454365 1456486 1457880]
-- [nvme] pci: Don't set reserved SQ create flags (David Milburn) [1457880 1456486 1454365]
-- [nvme] Quirk APST off on THNSF5256GPUK TOSHIBA (David Milburn) [1389600]
-- [nvme] Adjust the Samsung APST quirk (David Milburn) [1389600]
-- [nvme] make nvme_error_status private (David Milburn) [1457880 1456486 1454365]
-- [nvme] split nvme status from block req->errors (David Milburn) [1454365 1456486 1457880]
-- [nvme] fc: fix status code handling in nvme_fc_fcpio_done (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Fix sqsize wrong assignment based on ctrl MQES capability (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Fix sqsize wrong assignment based on ctrl MQES capability (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: Fix sqsize wrong assignment based on ctrl MQES capability (David Milburn) [1457880 1456486 1454365]
-- [nvme] move the retries count to struct nvme_request (David Milburn) [1454365 1456486 1457880]
-- [nvme] mark nvme_max_retries static (David Milburn) [1457880 1456486 1454365]
-- [nvme] cleanup nvme_req_needs_retry (David Milburn) [1457880 1456486 1454365]
-- [nvme] move ->retries setup to nvme_setup_cmd (David Milburn) [1457880 1456486 1454365]
-- [nvme] factor request completion code into a common helper (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: drop ctrl for all command completions (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: increment request retries counter before requeuing (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: increment request retries counter before requeuing (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: increment request retries counter before requeuing (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Clean up host fcpio done status handling (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Clear SG list to avoid double frees (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: correct LS validation (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Sync NVME LS reject reasons with spec (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Add check of status_code in ERSP_IU (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: Sync FC-NVME header with standard (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: retrieve iod from the cqe command_id (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: remove unneeded (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: fix module_init (theoretical) error path (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: fix module_init (theoretical) error path (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: fix module_init (theoretical) error path (David Milburn) [1457880 1456486 1454365]
-- [nvme] use symbolic constants for log identifiers (David Milburn) [1457880 1456486 1454365]
-- [nvme] Introduced helper routine for controller status check (David Milburn) [1457880 1456486 1454365]
-- [nvme] fixed avoided printing nvmet: twice in error logs (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: remove some code duplication (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Give some more grace for rdma connection establishment (David Milburn) [1457880 1456486 1454365]
-- [nvme] fix byte swap in nvmet_parse_io_cmd (David Milburn) [1457880 1456486 1454365]
-- [nvme] add missing byte swap in nvmet_get_smart_log (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: handle cpu unplug when re-establishing the controller (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: handle cpu unplug when re-establishing the controller (David Milburn) [1457880 1456486 1454365]
-- [nvme] confirm sq percpu has scheduled and switched to atomic (David Milburn) [1457880 1456486 1454365]
-- [nvme] loop: fix a possible use-after-free when destroying the admin queue (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: add support for host_traddr (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: Fix error handling (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: use nvme cm status helper (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: move nvme cm status helper to .h file (David Milburn) [1457880 1456486 1454365]
-- [nvme] rdma: use rdma connection reject helper functions (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: don't bother to validate ioccsz and iorcsz (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: No special case for queue busy on IO (David Milburn) [1457880 1456486 1454365]
-- [nvme] core: Fix race kicking freed request_queue (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Disable on removal when disconnected (David Milburn) [1457880 1456486 1454365]
-- [nvme] Enable autonomous power state transitions (David Milburn) [1457880 1456486 1454365]
-- [nvme] [base] pm/qos: Export dev_pm_qos_update_user_latency_tolerance (David Milburn) [1457880 1456486 1454365]
-- [nvme] [base] pm/qos: Fix writing 'auto' to pm_qos_latency_tolerance_us (David Milburn) [1457880 1456486 1454365]
-- [nvme] [base] pm/qos: Improve sysfs pm_qos_latency_tolerance validation (David Milburn) [1457880 1456486 1454365]
-- [nvme] Add a quirk mechanism that uses identify_ctrl (David Milburn) [1454365 1456486 1457880]
-- [nvme] make nvmf_register_transport require a create_ctrl callback (David Milburn) [1457880 1456486 1454365]
-- [nvme] Use CNS as 8-bit field and avoid endianness conversion (David Milburn) [1457880 1456486 1454365]
-- [nvme] add semicolon in nvme_command setting (David Milburn) [1457880 1456486 1454365]
-- [nvme] fix build with gcc-4.4.4 (David Milburn) [1457880 1456486 1454365]
-- [nvme] avoid dereferencing nvmet_req (David Milburn) [1457880 1456486 1454365]
-- [nvme] Make controller state visible via sysfs (David Milburn) [1457880 1456486 1454365]
-- [nvme] Make cntlid globally unique (David Milburn) [1457880 1456486 1454365]
-- [nvme] fc: cleanup of abort flag processing in fcp_op_done (David Milburn) [1457880 1456486 1454365]
-- [nvme] admin-cmd: fix spelling mistake: Counld -> Could (David Milburn) [1457880 1456486 1454365]
-- [nvme] pci: Don't mark IOD as aborted if abort wasn't sent (David Milburn) [1457880 1456486 1454365]
-- [nvme] scsi: don't rely on BLK_MAX_CDB (David Milburn) [1457880 1456486 1454365]
-
-* Thu Oct 12 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-736.el7]
-- [s390] pci: correct hotplug related issues (Hendrik Brueckner) [1486403]
-- [s390] pci: recognize name clashes with uids (Hendrik Brueckner) [1486403]
-- [s390] pci: provide more debug information (Hendrik Brueckner) [1486403]
-- [s390] pci: fix handling of PEC 306 (Hendrik Brueckner) [1486403]
-- [s390] pci: improve pci hotplug (Hendrik Brueckner) [1486403]
-- [s390] pci: introduce clp_get_state (Hendrik Brueckner) [1486403]
-- [s390] pci: improve error handling during fmb (de)registration (Hendrik Brueckner) [1486403]
-- [s390] pci: improve unreg_ioat error handling (Hendrik Brueckner) [1486403]
-- [s390] pci: improve error handling during interrupt deregistration (Hendrik Brueckner) [1486403]
-- [s390] pci: don't cleanup in arch_setup_msi_irqs (Hendrik Brueckner) [1486403]
-- [s390] scsi: zfcp: trace HBA FSF response by default on dismiss or timedout late response (Hendrik Brueckner) [1494576]
-- [s390] scsi: zfcp: fix payload with full FCP_RSP IU in SCSI trace records (Hendrik Brueckner) [1494576]
-- [s390] scsi: zfcp: fix missing trace records for early returns in TMF eh handlers (Hendrik Brueckner) [1494576]
-- [s390] scsi: zfcp: fix passing fsf_req to SCSI trace on TMF to correlate with HBA (Hendrik Brueckner) [1494576]
-- [s390] scsi: zfcp: fix capping of unsuccessful GPN_FT SAN response trace records (Hendrik Brueckner) [1494576]
-- [media] stk1160: Remove '.' from Kconfig (Prarit Bhargava) [1498552]
-- [scripts] kconfig: Regenerate *.c_shipped files after previous changes (Prarit Bhargava) [1498552]
-- [scripts] kconfig: Introduce the "imply" keyword (Prarit Bhargava) [1498552]
-- [scripts] kconfig: Regenerate shipped zconf.{hash, lex}.c files (Prarit Bhargava) [1498552]
-- [scripts] kconfig: warn of unhandled characters in Kconfig commands (Prarit Bhargava) [1498552]
-- [scripts] kconfig: allow use of relations other than (in)equality (Prarit Bhargava) [1498552]
-- [scripts] kconfig: re-generate *.c_shipped files after previous change (Prarit Bhargava) [1498552]
-- [scripts] kconfig: don't silently ignore unhandled characters (Prarit Bhargava) [1498552]
-- [scripts] kbuild: trivial - use tabs for code indent where possible (Prarit Bhargava) [1498552]
-- [scripts] kconfig: make allnoconfig disable options behind EMBEDDED and EXPERT (Prarit Bhargava) [1498552]
-- [scripts] kconfig: remove unused definition from scanner (Prarit Bhargava) [1498552]
-- [scripts] kconfig: regenerate bison parser (Prarit Bhargava) [1498552]
-- [scripts] kconfig: do not special-case 'MODULES' symbol (Prarit Bhargava) [1498552]
-- [kernel] modules: do not depend on kconfig to set 'modules' option to symbol MODULES (Prarit Bhargava) [1498552]
-- [acpi] acpi / dptf: move int340x_thermal.c to the DPTF folder (Prarit Bhargava) [1496811]
-- [acpi] acpi / dptf: Add DPTF power participant driver (Prarit Bhargava) [1496811]
-- [scsi] storvsc: fix memory leak on ring buffer busy (Cathy Avery) [1469095]
-- [scsi] storvsc: use default I/O timeout handler for FC devices (Cathy Avery) [1469095]
-- [scsi] storvsc: remove unnecessary channel inbound lock (Cathy Avery) [1469095]
-- [scsi] storvsc: use in place iterator function (Cathy Avery) [1469095]
-- [scsi] storvsc: Add support for FC rport (Cathy Avery) [1469095]
-- [scsi] scsi_transport_fc: Add dummy initiator role to rport (Cathy Avery) [1469095]
-- [scsi] storvsc: remove return at end of void function (Cathy Avery) [1469095]
-- [tools] perf bench: Copy kernel files needed to build mem{cpy, set} x86_64 benchmarks (Jeff Moyer) [1437205]
-- [x86] mce: Fix copy/paste error in exception table entries (Jeff Moyer) [1437205]
-- [x86] mce: Improve memcpy_mcsafe() (Jeff Moyer) [1437205]
-- [x86] mm, x86/mce: Fix return type/value for memcpy_mcsafe() (Jeff Moyer) [1437205]
-- [x86] mm, x86/mce: Add memcpy_mcsafe() (Jeff Moyer) [1437205]
-- [x86] mce: Check for faults tagged in EXTABLE_CLASS_FAULT exception table entries (Jeff Moyer) [1437205]
-- [x86] mce: Add PCI quirks to identify Xeons with machine check recovery (Jeff Moyer) [1437205]
-- [x86] x86/cpufeature: Carve out X86_FEATURE_* (Jeff Moyer) [1437205]
-- [x86] x86/headers: Don't asm/processor.h in asm/atomic.h (Jeff Moyer) [1437205]
-- [kernel] jump_label: remove bug.h, atomic.h dependencies for HAVE_JUMP_LABEL (Jeff Moyer) [1437205]
-- [x86] x86/mm: add mcsafe exception table mechanism (Jeff Moyer) [1437205]
-- [tools] perf bench mem: Prepare the x86-64 build for upstream memcpy_mcsafe() changes (Jeff Moyer) [1437205]
-- [pci] dpc: Add local struct device pointers (Myron Stowe) [1499031]
-- [pci] dpc: Add eDPC support (Myron Stowe) [1499031]
-- [pci] dpc: Fix control register setting (Myron Stowe) [1499031]
-- [pci] dpc: Skip DPC event if device is not present (Myron Stowe) [1499031]
-- [pci] dpc: Wait for Root Port busy to clear (Myron Stowe) [1499031]
-- [pci] dpc: Decode extended reasons (Myron Stowe) [1499031]
-- [pci] Make DPC explicitly non-modular (Myron Stowe) [1499031]
-- [pci] Remove DPC tristate module option (Myron Stowe) [1499031]
-- [pci] Bind DPC to Root Ports as well as Downstream Ports (Myron Stowe) [1499031]
-- [pci] Fix whitespace in struct dpc_dev (Myron Stowe) [1499031]
-- [pci] Convert Downstream Port Containment driver to use devm_* functions (Myron Stowe) [1499031]
-- [security] selinux: fix double free in selinux_parse_opts_str() (Paul Moore) [1456843]
-- [s390] report new vector facilities (Hendrik Brueckner) [1375265]
-- [s390] scsi: zfcp: fix queuecommand for scsi_eh commands when DIX enabled (Hendrik Brueckner) [1494577]
-- [s390] qeth: fix L3 next-hop in xmit qeth hdr (Hendrik Brueckner) [1490787]
-- [ata] libata: Fix device_rh removal warning (Prarit Bhargava) [1455942]
-- [i2c] i801: Add support for Intel Gemini Lake (Steve Best) [1457268]
-- [tools] power turbostat: initial Gemini Lake SOC support (Steve Best) [1465246]
-- [powercap] intel_rapl: Add support for Gemini Lake (Steve Best) [1464887]
-
-* Wed Oct 11 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-735.el7]
-- [fs] ext4: in ext4_seek_{hole, data}, return -ENXIO for negative offsets (Bill O'Donnell) [1494317]
-- [fs] cifs: show 'soft' in the mount options for hard mounts (Leif Sahlberg) [1490774]
-- [fs] cifs: Reconnect expired SMB sessions (Leif Sahlberg) [1477052]
-- [fs] nfsd: give out fewer session slots as limit approaches (Dave Wysochanski) [1492234]
-- [fs] nfsd: increase DRC cache limit (Dave Wysochanski) [1492234]
-- [fs] ext4: fix off-by-in loop termination in ext4_find_unwritten_pgoff() (Bill O'Donnell) [1469363]
-- [fs] ext4: fix SEEK_HOLE (Bill O'Donnell) [1469363]
-- [netdrv] atlantic: fix iommu errors (David Arcari) [1490698]
-- [netdrv] aquantia: Fix transient invalid link down/up indications (David Arcari) [1452077]
-- [netdrv] aquantia: Fix Tx queue hangups (David Arcari) [1452077]
-- [netdrv] aquantia: use centralized core mtu check (David Arcari) [1452077]
-- [netdrv] aquantia: Setup max_mtu in ndev to enable jumbo frames (David Arcari) [1452077]
-- [netdrv] aquantia: set net_device mtu when mtu is changed (David Arcari) [1452077]
-- [netdrv] aquantia: Fixes for aq_ndev_change_mtu (David Arcari) [1452077]
-- [netdrv] aquantia: Show info message if bad firmware version detected (David Arcari) [1452077]
-- [netdrv] aquantia: Fix for multicast filter handling (David Arcari) [1452077]
-- [netdrv] aquantia: Fix for incorrect speed index (David Arcari) [1452077]
-- [netdrv] aquantia: Workaround for HW checksum bug (David Arcari) [1452077]
-- [netdrv] aquantia: Fix for number of RSS queues (David Arcari) [1452077]
-- [netdrv] aquantia: Extra spinlocks removed (David Arcari) [1452077]
-- [netdrv] aquantia: atlantic: remove declaration of hw_atl_utils_hw_set_power (David Arcari) [1452077]
-- [netdrv] aquantia: remove redundant checks on error status (David Arcari) [1452077]
-- [netdrv] intel: use core min/max MTU checking (David Arcari) [1454906]
-- [netdrv] e1000e: Initial Support for IceLake (David Arcari) [1454906]
-- [netdrv] e1000e: add check on e1e_wphy() return value (David Arcari) [1454906]
-- [netdrv] e1000e: Undo e1000e_pm_freeze if __e1000_shutdown fails (David Arcari) [1454906]
-- [netdrv] e1000e: add statistic indicating number of skipped Tx timestamps (David Arcari) [1454906]
-- [netdrv] e1000e: fix race condition around skb_tstamp_tx() (David Arcari) [1454906]
-- [netdrv] update drivers to make both SW and HW TX timestamps (David Arcari) [1454906]
-- [netdrv] e1000e: fix PTP on e1000_pch_lpt variants (David Arcari) [1454906]
-- [netdrv] sfc: don't try and read ef10 data on non-ef10 NIC (Jarod Wilson) [1479400]
-- [netdrv] sfc: Add ethtool -m support for QSFP modules (Jarod Wilson) [1479400]
-- [netdrv] sfc: don't read beyond unicast address list (Jarod Wilson) [1474250 1479400]
-- [netdrv] sfc: correct comment on efx_mcdi_process_event (Jarod Wilson) [1479400]
-- [netdrv] sfc: change Unknown MCDI event message to print full event (Jarod Wilson) [1479400]
-- [netdrv] sfc: fix attempt to translate invalid filter ID (Jarod Wilson) [1479400]
-- [netdrv] sfc: Fix MCDI command size for filter operations (Jarod Wilson) [1449449 1479400]
-- [netdrv] sfc: remove duplicate up_write on VF filter_sem (Jarod Wilson) [1479400]
-- [netdrv] sfc: revert changes to NIC revision numbers (Jarod Wilson) [1479400]
-- [netdrv] sfc: don't rearm interrupts if busy polling (Jarod Wilson) [1479400]
-- [netdrv] sfc: use core min/max MTU checking (Jarod Wilson) [1479400]
-- [scsi] cxgb4i: assign rxqs in round robin mode (Arjun Vynipadath) [1458307]
-- [scsi] cxgbi: fix build with EXTRA_CFLAGS (Arjun Vynipadath) [1458307]
-- [scsi] cxgb4i: Call into recently added cxgb4 ipv6 api (Arjun Vynipadath) [1458307]
-- [iscsi] target: fix invalid flags in text response (Arjun Vynipadath) [1458312]
-- [iscsi] target: fix memory leak in iscsit_setup_text_cmd() (Arjun Vynipadath) [1458312]
-- [iscsi] cxgbit: add missing __kfree_skb() (Arjun Vynipadath) [1458312]
-- [iscsi] cxgbit: fix sg_nents calculation (Arjun Vynipadath) [1458312]
-- [iscsi] cxgbit: Add an #include directive (Arjun Vynipadath) [1458312]
-- [infiniband] iw_cxgb4: don't use WR keys/addrs for 0 byte reads (Arjun Vynipadath) [1458304]
-- [infiniband] cxgb4: Fix error codes in c4iw_create_cq() (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Fix memory leaks during module exit (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/iw_cxgb4: Avoid touch after free error in ARP failure handlers (Arjun Vynipadath) [1458304]
-- [infiniband] iw_cxgb4: check return value of alloc_skb (Arjun Vynipadath) [1458304]
-- [infiniband] cxgb4: Use more common logging style (Arjun Vynipadath) [1458304]
-- [infiniband] iw_cxgb4: clean up send_connect() (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Use AF_INET for sin_family field (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Handle NET_XMIT return codes (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Wake up waiters after flushing the qp (Arjun Vynipadath) [1458304]
-- [infiniband] rdma/cxgb4: Limit MRs to < 8GB for T4/T5 devices (Arjun Vynipadath) [1458304]
-
-* Wed Oct 11 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-734.el7]
-- [netdrv] ixgbe: Disable flow control for XFI (Ken Cox) [1452423]
-- [netdrv] ixgbe: Do not support flow control autonegotiation for X553 (Ken Cox) [1452423]
-- [netdrv] ixgbe: Update NW_MNG_IF_SEL support for X553 (Ken Cox) [1452423]
-- [netdrv] ixgbe: Enable LASI interrupts for X552 devices (Ken Cox) [1452423]
-- [netdrv] ixgbe: Ensure MAC filter was added before setting MACVLAN (Ken Cox) [1452423]
-- [netdrv] ixgbe: pci_set_drvdata must be called before register_netdev (Ken Cox) [1452423]
-- [netdrv] ixgbe: Resolve cppcheck format string warning (Ken Cox) [1452423]
-- [netdrv] ixgbe: fix writes to PFQDE (Ken Cox) [1452423]
-- [netdrv] ixgbe: Bump version number (Ken Cox) [1452423]
-- [netdrv] ixgbe: check for Tx timestamp timeouts during watchdog (Ken Cox) [1452423]
-- [netdrv] ixgbe: add statistic indicating number of skipped Tx timestamps (Ken Cox) [1452423]
-- [netdrv] ixgbe: avoid permanent lock of *_PTP_TX_IN_PROGRESS (Ken Cox) [1452423]
-- [netdrv] ixgbe: fix race condition with PTP_TX_IN_PROGRESS bits (Ken Cox) [1452423]
-- [netdrv] ixgbe: Resolve warnings for -Wimplicit-fallthrough (Ken Cox) [1452423]
-- [netdrv] ixgbe: Resolve truncation warning for q_vector->name (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add error checking to setting VF MAC (Ken Cox) [1452423]
-- [netdrv] ixgbe: Correct thermal sensor event check (Ken Cox) [1452423]
-- [netdrv] ixgbe: enable L3/L4 filtering for Tx switched packets (Ken Cox) [1452423]
-- [netdrv] ixgbe: Remove MAC X550EM_X 1Gbase-t led_[on|off] support (Ken Cox) [1452423]
-- [netdrv] ixgbe: initialize u64_stats_sync structures early at ixgbe_probe (Ken Cox) [1452423]
-- [netdrv] ixgbe/ixgbevf: Enables TSO for MPLS encapsulated packets (Ken Cox) [1452423]
-- [netdrv] ixgbe: Check for RSS key before setting value (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add 1000Base-T device based on X550EM_X MAC (Ken Cox) [1452905 1452423]
-- [netdrv] ixgbe: Allow setting zero MAC address for VF (Ken Cox) [1452423]
-- [netdrv] ixgbe: clean macvlan MAC filter table on VF reset (Ken Cox) [1452423]
-- [netdrv] ixgbe: Acquire PHY semaphore before device reset (Ken Cox) [1452423]
-- [netdrv] ixgbe: Fix output from ixgbe_dump (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add support for maximum headroom when using build_skb (Ken Cox) [1452423]
-- [netdrv] ixgbe: add check for VETO bit when configuring link for KR (Ken Cox) [1452423]
-- [netdrv] ixgbe: Remove unused define (Ken Cox) [1452423]
-- [netdrv] ixgbe: do not use adapter->num_vfs when setting VFs via module parameter (Ken Cox) [1452423]
-- [netdrv] ixgbe: return early instead of wrap block in if statement (Ken Cox) [1452423]
-- [netdrv] ixgbe: move num_vfs_macvlans allocation into separate function (Ken Cox) [1452423]
-- [netdrv] ixgbe: add default setup_link for x550em_a MAC type (Ken Cox) [1452423]
-- [netdrv] ixgbe: list X553 backplane speeds correctly (Ken Cox) [1452908 1452423]
-- [netdrv] ixgbe: Add X552 XFI backplane support (Ken Cox) [1452908 1452423]
-- [netdrv] ixgbe: Complete support for X553 sgmii (Ken Cox) [1452908 1452423]
-- [netdrv] ixgbe: Remove driver config for KX4 PHY (Ken Cox) [1452423]
-- [netdrv] ixgbe: Remove pr_cont uses (Ken Cox) [1452423]
-- [netdrv] ixgbe: Avoid Tx hang by not allowing more than the number of VFs supported (Ken Cox) [1452423]
-- [netdrv] igb/ixgbe: Fix typo in igb_build_skb and/or ixgbe_build_skb code comment (Ken Cox) [1452423]
-- [netdrv] intel: ixgbe: use new api ethtool_{get|set}_link_ksettings (Ken Cox) [1452423]
-- [netdrv] ixgbe: Limit use of 2K buffers on architectures with 256B or larger cache lines (Ken Cox) [1452423]
-- [netdrv] ixgbe: update the rss key on h/w, when ethtool ask for it (Ken Cox) [1452423]
-- [netdrv] scripts/spelling.txt: add "applys" pattern and fix typo instances (Ken Cox) [1452423]
-- [netdrv] ixgbe: Don't bother clearing buffer memory for descriptor rings (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add support for build_skb (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add private flag to control buffer mode (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add support for padding packet (Ken Cox) [1452423]
-- [netdrv] ixgbe: Break out Rx buffer page management (Ken Cox) [1452423]
-- [netdrv] ixgbe: Use length to determine if descriptor is done (Ken Cox) [1452423]
-- [netdrv] ixgbe: Make use of order 1 pages and 3K buffers independent of FCoE (Ken Cox) [1452423]
-- [netdrv] ixgbe: Update code to better handle incrementing page count (Ken Cox) [1452423]
-- [netdrv] ixgbe: Update driver to make use of DMA attributes in Rx path (Ken Cox) [1452423]
-- [netdrv] ixgbe: Only DMA sync frame length (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add function for checking to see if we can reuse page (Ken Cox) [1452423]
-- [netdrv] ixgbe: prefix Data Center Bridge ops struct (Ken Cox) [1452423]
-- [netdrv] ixgbe: Support 2.5Gb and 5Gb speed (Ken Cox) [1452423]
-- [netdrv] ixgbe: get rid of custom busy polling code (Ken Cox) [1452423]
-- [netdrv] ixgbe: Flip to the new dev walk API (Ken Cox) [1452423]
-- [netdrv] intel: use core min/max MTU checking (Ken Cox) [1452423]
-- [netdrv] ixgbe: Error handler for duplicate filter locations in hardware for cls_u32 offloads (Ken Cox) [1452423]
-- [netdrv] ixgbe: Fix deleting link filters for cls_u32 offloads (Ken Cox) [1452423]
-- [netdrv] ixgbe: Match on multiple headers for cls_u32 offloads (Ken Cox) [1452423]
-- [netdrv] ixgbe: Add support for redirect action to cls_u32 offloads (Ken Cox) [1452423]
-- [netdrv] ixgbe: Extend cls_u32 offload to support UDP headers (Ken Cox) [1452423]
-- [netdrv] ixgbe: Fix cls_u32 offload support for L4 ports (Ken Cox) [1452423]
-- [netdrv] ixgbe: Fix cls_u32 offload support for fields with masks (Ken Cox) [1452423]
-- [netdrv] ixgbe: fix error handling in TC cls_u32 offload routines (Ken Cox) [1452423]
-- [netdrv] cls_u32: move TC offload feature bit into cls_u32 offload logic (Ken Cox) [1452423]
-- [netdrv] ixgbe: abort with cls u32 divisor groups greater than 1 (Ken Cox) [1452423]
-- [netdrv] ixgbe: add support for tc_u32 offload (Ken Cox) [1452423]
-- [netdrv] ixgbe: limit combined total of macvlan and SR-IOV VFs (Ken Cox) [1452423]
-- [netdrv] bnx2: use setup_timer() helper (Ken Cox) [1479143]
-- [netdrv] generalize napi_complete_done() (Ken Cox) [1479143]
-- [netdrv] bnx2: use READ_ONCE() instead of barrier() (Ken Cox) [1479143]
-- [netdrv] bnx2: use new api ethtool_{get|set}_link_ksettings (Ken Cox) [1479143]
-- [netdrv] bnx2: Wait for in-flight DMA to complete at probe stage (Ken Cox) [1374594 1479143]
-- [netdrv] bnx2: RHEL only patch to use new min/max MTU code without breaking KABI (Ken Cox) [1479143]
-- [netdrv] ethernet/broadcom: use core min/max MTU checking (Ken Cox) [1479143]
-
-* Tue Oct 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-733.el7]
-- [fs] ceph: fix __choose_mds() for LSSNAP request (Ilya Dryomov) [1489426]
-- [fs] ceph: avoid panic in create_session_open_msg() if utsname() returns NULL (Ilya Dryomov) [1489426]
-- [fs] libceph: don't allow bidirectional swap of pg-upmap-items (Ilya Dryomov) [1489426]
-- [fs] ceph: stop on-going cached readdir if mds revokes FILE_SHARED cap (Ilya Dryomov) [1489426]
-- [fs] ceph: fix message order check in handle_cap_export() (Ilya Dryomov) [1489426]
-- [fs] ceph: fix NULL pointer dereference in ceph_flush_snaps() (Ilya Dryomov) [1489426]
-- [fs] ceph: adjust 36 checks for NULL pointers (Ilya Dryomov) [1489426]
-- [fs] ceph: delete an unnecessary return statement in update_dentry_lease() (Ilya Dryomov) [1489426]
-- [fs] ceph: ENOMEM pr_err in __get_or_create_frag() is redundant (Ilya Dryomov) [1489426]
-- [fs] ceph: check negative offsets in ceph_llseek() (Ilya Dryomov) [1489426]
-- [fs] ceph: more accurate statfs (Ilya Dryomov) [1489426]
-- [fs] ceph: properly set snap follows for cap reconnect (Ilya Dryomov) [1489426]
-- [fs] ceph: don't use CEPH_OSD_FLAG_ORDERSNAP (Ilya Dryomov) [1489426]
-- [fs] ceph: include snapc in debug message of write (Ilya Dryomov) [1489426]
-- [fs] ceph: make sure flushsnap messages are sent in proper order (Ilya Dryomov) [1489426]
-- [fs] ceph: fix -EOLDSNAPC handling (Ilya Dryomov) [1489426]
-- [fs] ceph: send LSSNAP request to auth mds of directory inode (Ilya Dryomov) [1489426]
-- [fs] ceph: cleanup ceph_readdir_prepopulate() (Ilya Dryomov) [1489426]
-- [fs] ceph: new cap message flags indicate if there is pending capsnap (Ilya Dryomov) [1489426]
-- [fs] ceph: nuke startsync op (Ilya Dryomov) [1489426]
-- [fs] rbd: silence bogus uninitialized use warning in rbd_acquire_lock() (Ilya Dryomov) [1489426]
-- [fs] ceph: validate correctness of some mount options (Ilya Dryomov) [1489426]
-- [fs] ceph: limit osd write size (Ilya Dryomov) [1489426]
-- [fs] ceph: limit osd read size to CEPH_MSG_MAX_DATA_LEN (Ilya Dryomov) [1489426]
-- [fs] ceph: remove unused cap_release_safety mount option (Ilya Dryomov) [1489426]
-- [fs] libceph: make RECOVERY_DELETES feature create a new interval (Ilya Dryomov) [1489426]
-- [fs] libceph: upmap semantic changes (Ilya Dryomov) [1489426]
-- [fs] crush: assume weight_set != null imples weight_set_size > 0 (Ilya Dryomov) [1489426]
-- [fs] libceph: fallback for when there isn't a pool-specific choose_arg (Ilya Dryomov) [1489426]
-- [fs] libceph: don't call ->reencode_message() more than once per message (Ilya Dryomov) [1489426]
-- [fs] libceph: make encode_request_*() work with r_mempool requests (Ilya Dryomov) [1489426]
-- [fs] libceph: potential NULL dereference in ceph_msg_data_create() (Ilya Dryomov) [1489426]
-- [fs] ceph: fix race in concurrent readdir (Ilya Dryomov) [1489426]
-- [fs] libceph: don't call encode_request_finish() on MOSDBackoff messages (Ilya Dryomov) [1489426]
-- [fs] libceph: use alloc_pg_mapping() in __decode_pg_upmap_items() (Ilya Dryomov) [1489426]
-- [fs] libceph: set -EINVAL in one place in crush_decode() (Ilya Dryomov) [1489426]
-- [fs] libceph: NULL deref on osdmap_apply_incremental() error path (Ilya Dryomov) [1489426]
-- [fs] libceph: fix old style declaration warnings (Ilya Dryomov) [1489426]
-- [fs] libceph: advertise support for NEW_OSDOP_ENCODING and SERVER_LUMINOUS (Ilya Dryomov) [1489426]
-- [fs] libceph: osd_state is 32 bits wide in luminous (Ilya Dryomov) [1489426]
-- [fs] crush: remove an obsolete comment (Ilya Dryomov) [1489426]
-- [fs] crush: crush_init_workspace starts with struct crush_work (Ilya Dryomov) [1489426]
-- [fs] libceph, crush: per-pool crush_choose_arg_map for crush_do_rule() (Ilya Dryomov) [1489426]
-- [fs] crush: implement weight and id overrides for straw2 (Ilya Dryomov) [1489426]
-- [fs] libceph: apply_upmap() (Ilya Dryomov) [1489426]
-- [fs] libceph: compute actual pgid in ceph_pg_to_up_acting_osds() (Ilya Dryomov) [1489426]
-- [fs] libceph: pg_upmap[_items] infrastructure (Ilya Dryomov) [1489426]
-- [fs] libceph: ceph_decode_skip_* helpers (Ilya Dryomov) [1489426]
-- [fs] libceph: kill __{insert, lookup, remove}_pg_mapping() (Ilya Dryomov) [1489426]
-- [fs] libceph: introduce and switch to decode_pg_mapping() (Ilya Dryomov) [1489426]
-- [fs] libceph: don't pass pgid by value (Ilya Dryomov) [1489426]
-- [fs] libceph: respect RADOS_BACKOFF backoffs (Ilya Dryomov) [1489426]
-- [fs] libceph: make DEFINE_RB_* helpers more general (Ilya Dryomov) [1489426]
-- [fs] libceph: avoid unnecessary pi lookups in calc_target() (Ilya Dryomov) [1489426]
-- [fs] libceph: use target pi for calc_target() calculations (Ilya Dryomov) [1489426]
-- [fs] libceph: always populate t->target_{oid, oloc} in calc_target() (Ilya Dryomov) [1489426]
-- [fs] libceph: make sure need_resend targets reflect latest map (Ilya Dryomov) [1489426]
-- [fs] libceph: delete from need_resend_linger before check_linger_pool_dne() (Ilya Dryomov) [1489426]
-- [fs] libceph: resend on PG splits if OSD has RESEND_ON_SPLIT (Ilya Dryomov) [1489426]
-- [fs] libceph: drop need_resend from calc_target() (Ilya Dryomov) [1489426]
-- [fs] libceph: MOSDOp v8 encoding (actual spgid + full hash) (Ilya Dryomov) [1489426]
-- [fs] libceph: ceph_connection_operations::reencode_message() method (Ilya Dryomov) [1489426]
-- [fs] libceph: encode_{pgid,oloc}() helpers (Ilya Dryomov) [1489426]
-- [fs] libceph: introduce ceph_spg, ceph_pg_to_primary_shard() (Ilya Dryomov) [1489426]
-- [fs] libceph: new pi->last_force_request_resend (Ilya Dryomov) [1489426]
-- [fs] libceph: fold [l]req->last_force_resend into ceph_osd_request_target (Ilya Dryomov) [1489426]
-- [fs] libceph: support SERVER_JEWEL feature bits (Ilya Dryomov) [1489426]
-- [fs] libceph: advertise support for OSD_POOLRESEND (Ilya Dryomov) [1489426]
-- [fs] libceph: handle non-empty dest in ceph_{oloc, oid}_copy() (Ilya Dryomov) [1489426]
-- [fs] libceph: new features macros (Ilya Dryomov) [1489426]
-- [fs] libceph: remove ceph_sanitize_features() workaround (Ilya Dryomov) [1489426]
-- [fs] ceph: update ceph_dentry_info::lease_session when necessary (Ilya Dryomov) [1489426]
-- [fs] ceph: avoid accessing freeing inode in ceph_check_delayed_caps() (Ilya Dryomov) [1489426]
-- [fs] ceph: avoid invalid memory dereference in the middle of umount (Ilya Dryomov) [1489426]
-- [fs] ceph: getattr before read on ceph.* xattrs (Ilya Dryomov) [1489426]
-- [fs] ceph: don't re-send interrupted flock request (Ilya Dryomov) [1489426]
-- [fs] ceph: cleanup writepage_nounlock() (Ilya Dryomov) [1489426]
-- [fs] ceph: redirty page when writepage_nounlock() skips unwritable page (Ilya Dryomov) [1489426]
-- [fs] ceph: remove useless page->mapping check in writepage_nounlock() (Ilya Dryomov) [1489426]
-- [fs] ceph: update the 'approaching max_size' code (Ilya Dryomov) [1489426]
-- [fs] ceph: re-request max size after importing caps (Ilya Dryomov) [1489426]
-- [fs] ceph: unify inode i_ctime update (Ilya Dryomov) [1489426]
-- [fs] ceph: check i_nlink while converting a file handle to dentry (Ilya Dryomov) [1489426]
-- [fs] ceph: check that the new inode size is within limits in ceph_fallocate() (Ilya Dryomov) [1489426]
-- [fs] libceph: cleanup old messages according to reconnect seq (Ilya Dryomov) [1489426]
-- [fs] libceph: NULL deref on crush_decode() error path (Ilya Dryomov) [1489426]
-- [fs] libceph: fix error handling in process_one_ticket() (Ilya Dryomov) [1489426]
-- [fs] libceph: validate blob_struct_v in process_one_ticket() (Ilya Dryomov) [1489426]
-- [fs] libceph: drop version variable from ceph_monmap_decode() (Ilya Dryomov) [1489426]
-- [fs] libceph: make ceph_msg_data_advance() return void (Ilya Dryomov) [1489426]
-- [fs] libceph: use kbasename() and kill ceph_file_part() (Ilya Dryomov) [1489426]
-
-* Mon Oct 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-732.el7]
-- [netdrv] liquidio: fix build errors when CONFIG_DYNAMIC_DEBUG=y and both PF and VF drivers are built as loadable modules (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix crash in presence of zeroed-out base address regs (Felix Manlunas) [1451436]
-- [netdrv] liquidio: show NIC's U-Boot version in a dev_info() message (Felix Manlunas) [1451436]
-- [netdrv] liquidio: change manner of detecting whether or not NIC firmware is loaded (Felix Manlunas) [1451436]
-- [netdrv] liquidio: make VF driver notify NIC firmware of MTU change (Felix Manlunas) [1451436]
-- [netdrv] liquidio: move macro definition to a proper place (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix use of pf in pass-through mode in a virtual machine (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove support for deprecated f/w cmd OCTNET_CMD_RESET_PF (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix Smatch error (Felix Manlunas) [1451436]
-- [netdrv] liquidio: with embedded f/w, issue droq credits before enablement (Felix Manlunas) [1451436]
-- [netdrv] liquidio: with embedded f/w, don't reload f/w, issue pf flr at exit (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix spelling mistake: "interuupt" -> "interrupt" (Felix Manlunas) [1451436]
-- [netdrv] liquidio: update VF's netdev->extended->max_mtu if there's a change in PF's MTU (Felix Manlunas) [1451436]
-- [netdrv] liquidio: added support for ethtool --set-channels feature (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved octeon_setup_interrupt to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_legacy_intr_handler to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_msix_intr_handler to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix issues with fw_type module parameter (Felix Manlunas) [1451436]
-- [netdrv] liquidio: added support for ethtool --set-ring feature (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_setup_io_queues to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_napi_poll to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_napi_drv_callback to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved liquidio_push_packet to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved octeon_setup_droq to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved update_txq_status to lio_core.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved wait_for_pending_requests to octeon_network.h (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix duplicated code for different branches (Felix Manlunas) [1451436]
-- [netdrv] liquidio: update debug console logging mechanism (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved ptp_enable to octeon_device structure (Felix Manlunas) [1451436]
-- [netdrv] liquidio: removed check for queue size alignment (Felix Manlunas) [1451436]
-- [netdrv] liquidio: rx/tx queue cleanup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: napi cleanup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix misspelled firmware image filenames (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix wrong info about vf rx/tx ring parameters reported to ethtool (Felix Manlunas) [1451436]
-- [netdrv] liquidio: moved console_bitmask module param to lio_main.c (Felix Manlunas) [1451436]
-- [netdrv] liquidio: add missing strings in oct_dev_state_str array (Felix Manlunas) [1451436]
-- [netdrv] liquidio: set sriov_totalvfs correctly (Felix Manlunas) [1451436]
-- [netdrv] liquidio: bump up driver version to match newer NIC firmware (Felix Manlunas) [1451436]
-- [netdrv] liquidio: cleanup: removed cryptic and misleading macro (Felix Manlunas) [1451436]
-- [netdrv] liquidio: standardization: use min_t instead of custom macro (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix implicit irq include causing build failures (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lio_main: remove unnecessary static in setup_io_queues() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lio_vf_main: remove unnecessary static in setup_io_queues() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lowmem: init allocated memory to 0 (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lowmem: do not dereference null ptr (Felix Manlunas) [1451436]
-- [netdrv] liquidio: lowmem: init allocated memory to 0 (Felix Manlunas) [1451436]
-- [netdrv] liquidio: support new firmware statistic fw_err_pki (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix possible eeprom format string overflow (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix bug in soft reset failure detection (Felix Manlunas) [1451436]
-- [netdrv] liquidio: stop using huge static buffer, save 4096k in .data (Felix Manlunas) [1451436]
-- [netdrv] liquidio: replace info-pointer mode with buffer-pointer-only mode (Felix Manlunas) [1451436]
-- [netdrv] liquidio: implement vlan filter enable and disable (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix VF driver off-by-one bug when setting ethtool -C ethX rx-frames (Felix Manlunas) [1451436]
-- [netdrv] liquidio: disallow enabling firmware debug from a VF (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Fix checkpatch errors with references crossing single line (Felix Manlunas) [1451436]
-- [netdrv] liquidio: VF interrupt initialization cleanup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix inaccurate count of napi-processed rx packets reported to Octeon (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix rare pci_driver.probe failure of VF driver (Felix Manlunas) [1451436]
-- [netdrv] liquidio: handle HWTSTAMP_FILTER_NTP_ALL (Felix Manlunas) [1451436]
-- [netdrv] liquidio: make the spinlock octeon_devices_lock static (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix PF falsely indicating success at setting MAC address of a nonexistent VF (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix insmod failure when multiple NICs are plugged in (Felix Manlunas) [1451436]
-- [netdrv] liquidio: silence a locking static checker warning (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove unnecessary variable assignment (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix VF incorrectly indicating that it successfully set its VLAN (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix Octeon core watchdog timeout false alarm (Felix Manlunas) [1451436]
-- [netdrv] liquidio: clear the correct memory (Felix Manlunas) [1451436]
-- [netdrv] liquidio: add explicit interrupt.h includes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: refactor interrupt moderation code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: do not reset Octeon if NIC firmware was preloaded (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix tx completions in napi poll (Felix Manlunas) [1451436]
-- [netdrv] liquidio: allocate RX buffers in OOM conditions in PF and VF (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix Coverity scan errors (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix for vf mac addr command sent to nic firmware (Felix Manlunas) [1451436]
-- [netdrv] liquidio: add debug error messages to report command timeout (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove duplicate code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix wrong information about link modes reported to ethtool (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use meaningful names for IRQs (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove/replace invalid code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: optimize DMA in NUMA systems (Felix Manlunas) [1451436]
-- [netdrv] liquidio: add support for XPS (Felix Manlunas) [1451436]
-- [netdrv] liquidio: improve UDP TX performance (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix build errors when linux/phy*.h is removed from dsa.h (Felix Manlunas) [1451436]
-- [netdrv] liquidio: do not dereference pointer if it's NULL (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix for iq and droq cnts going negative (Felix Manlunas) [1451436]
-- [netdrv] liquidio: generalize napi_complete_done() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Avoid accessing skb after submitting to input queue (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Remove usage of net_device last_rx member (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use fallback for selecting txq (Felix Manlunas) [1451436]
-- [netdrv] liquidio vf: reduce load time of module (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove unnecessary code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: store the L4 hash of rx packets in skb (Felix Manlunas) [1451436]
-- [netdrv] liquidio: simplify octeon_flush_iq() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix wrong information about channels reported to ethtool (Felix Manlunas) [1451436]
-- [netdrv] liquidio vf: fix incorrect struct being used (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove PTP support in 23XX adapters (Felix Manlunas) [1451436]
-- [netdrv] liquidio: optimize reads from Octeon PCI console (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF error handling (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF timestamp (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF ethtool stats (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF vxlan (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF vlan support (Felix Manlunas) [1451436]
-- [netdrv] liquidio VF rx data and ctl path (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF TX buffers (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF xmit (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF scatter gather lists (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF mac address (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF link status (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF offload features (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF init and destroy (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF interrupt (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF mailbox (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: init VF softcommand queues (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF register access (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF queue setup (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF config setup (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF registration (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF register definitions (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: bitwise vs logical AND typo (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: fix for new check patch errors (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: copyrights changes and alignment (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: code cleanup (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: device states (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: VF related operations (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: mailbox interrupt processing (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: Mailbox support (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: sysfs VF config support (Felix Manlunas) [1451436]
-- [netdrv] liquidio cn23xx: HW config for VF support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use core min/max MTU checking (Felix Manlunas) [1451436]
-- [netdrv] liquidio: cn23xx: fix a loop timeout (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX pause frame support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX napi support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX health monitoring (Felix Manlunas) [1451436]
-- [netdrv] liquidio: ethtool and led control support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX octeon3 instruction (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX IQ access (Felix Manlunas) [1451436]
-- [netdrv] liquidio: RX control commands (Felix Manlunas) [1451436]
-- [netdrv] liquidio: link and control commands (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX firmware download (Felix Manlunas) [1451436]
-- [netdrv] liquidio: MSIX support for CN23XX (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX queue manipulation (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX register setup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX device init and sriov config (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX queue definitions (Felix Manlunas) [1451436]
-- [netdrv] liquidio: CN23XX register definitions (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Common enable irq function (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Firmware version management (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Consolidate common functionality (Felix Manlunas) [1451436]
-- [netdrv] liquidio: declare liquidio_set_rxcsum_command static (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Response header changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Remove redundant code (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Droq validation (Felix Manlunas) [1451436]
-- [netdrv] liquidio: MTU limits (Felix Manlunas) [1451436]
-- [netdrv] liquidio: free resources during shutdown (Felix Manlunas) [1451436]
-- [netdrv] liquidio: iq/oq limits (Felix Manlunas) [1451436]
-- [netdrv] liquidio: softcommand delay (Felix Manlunas) [1451436]
-- [netdrv] liquidio: IQ synchronization (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Macro replacements (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Vxlan support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: remove unused including <linux/version.h> (Felix Manlunas) [1451436]
-- [netdrv] liquidio: ddr timeout (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Support priv flag (Felix Manlunas) [1451436]
-- [netdrv] liquidio: ptp info (Felix Manlunas) [1451436]
-- [netdrv] liquidio: New xaui info (Felix Manlunas) [1451436]
-- [netdrv] liquidio: New statistics support (Felix Manlunas) [1451436]
-- [netdrv] liquidio: tx rx interrupt moderation (Felix Manlunas) [1451436]
-- [netdrv] liquidio: chip reset changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: New unload state (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Firmware image download (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Napi rx/tx traffic (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Vlan filtering (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Vlan offloads changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: soft command buffer limits (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Introduce new octeon2/3 header (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Replace ifidx for FW commands (Felix Manlunas) [1451436]
-- [netdrv] liquidio: New driver FW command structure (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Consider PTP for packet size calculations (Felix Manlunas) [1451436]
-- [netdrv] liquidio: RX desc alloc changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: RX queue alloc changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Scatter gather list per IQ (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Host queue mapping changes (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Avoid double free during soft command (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: Remove deprecated create_workqueue (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: request_manager: Remove create_workqueue (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: response_manager: Remove create_workqueue (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use kmemdup (Felix Manlunas) [1451436]
-- [netdrv] liquidio: replace netdev->trans_start update with helper (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: fix check for in progress flag (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: Return correct error code (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: use helpers ns_to_timespec64() (Felix Manlunas) [1451436]
-- [netdrv] cavium: liquidio: constify pci_error_handlers structures (Felix Manlunas) [1451436]
-- [netdrv] liquidio: get rid of unnecessary initializations in .get_drvinfo() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: use kzalloc in setup_glist() (Felix Manlunas) [1451436]
-- [netdrv] liquidio: Delete unnecessary checks before the function call "vfree" (Felix Manlunas) [1451436]
-- [netdrv] liquidio: fix some error handling in lio_set_phys_id() (Felix Manlunas) [1451436]
-- [netdrv] Modify liquidio Kconfig for crc lib (Felix Manlunas) [1451436]
-- [netdrv] Fix Cavium liquidio build related errors and warnings (Felix Manlunas) [1451436]
-- [netdrv] reference new cavium directory in Makefile and Kconfig (Felix Manlunas) [1451436]
-- [netdrv] Add support of Cavium liquidio ethernet adapters (Felix Manlunas) [1451436]
-- [kernel] pci: Add Cavium PCI vendor id (Felix Manlunas) [1451436]
-
-* Mon Oct 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-731.el7]
-- [char] tpm: do not suspend/resume if power stays on (Jerry Snitselaar) [1456939]
-- [char] tpm: use tpm2_pcr_read() in tpm2_do_selftest() (Jerry Snitselaar) [1456939]
-- [char] tpm: use tpm_buf functions in tpm2_pcr_read() (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: make ilb_base_addr static (Jerry Snitselaar) [1456939]
-- [char] tpm: consolidate the TPM startup code (Jerry Snitselaar) [1456939]
-- [char] tpm: Enable CLKRUN protocol for Braswell systems (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_crb: fix priv->cmd_size initialisation (Jerry Snitselaar) [1456939]
-- [char] tpm: fix a kernel memory leak in tpm-sysfs.c (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_atmel: remove unnecessary NULL check (Jerry Snitselaar) [1456939]
-- [char] tpm: vtpm_proxy: Prevent userspace from sending driver command (Jerry Snitselaar) [1456939]
-- [char] tpm: vtpm_proxy: Implement request_locality function (Jerry Snitselaar) [1456939]
-- [char] tpm: vtpm_proxy: Suppress error logging when in closed state (Jerry Snitselaar) [1456939]
-- [char] tpm, tpmrm: Mark tpmrm_write as static (Jerry Snitselaar) [1456939]
-- [char] tpm: remove struct tpm_pcrextend_in (Jerry Snitselaar) [1456939]
-- [char] tpm, tpm_infineon: remove useless snprintf() calls (Jerry Snitselaar) [1456939]
-- [char] tpm: fix byte order related arithmetic inconsistency in tpm_getcap() (Jerry Snitselaar) [1456939]
-- [char] tpm: Apply a sane minimum adapterlimit value for retransmission (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Consolidate the platform and acpi probe flow (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Use platform_get_irq (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Fix IRQ autoprobing when using platform_device (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: convert to using locality callbacks (Jerry Snitselaar) [1456939]
-- [char] tpm: move TPM 1.2 code of tpm_pcr_extend() to tpm1_pcr_extend() (Jerry Snitselaar) [1456939]
-- [char] tpm: move endianness conversion of ordinals to tpm_input_header (Jerry Snitselaar) [1456939]
-- [char] tpm: move endianness conversion of TPM_TAG_RQU_COMMAND to tpm_input_header (Jerry Snitselaar) [1456939]
-- [char] acpica: Add header support for TPM2 table changes (Jerry Snitselaar) [1456939]
-- [char] tpm: Fix reference count to main device (Jerry Snitselaar) [1456939]
-- [char] tpm: fix handling of the TPM 2.0 event logs (Jerry Snitselaar) [1456939]
-- [char] tpm_crb: remove a cruft constant (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_crb: Enable TPM CRB interface for ARM64 (Jerry Snitselaar) [1456939]
-- [char] acpica: Update TPM2 ACPI table (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_crb: fix unused warnings on suspend/resume functions (Jerry Snitselaar) [1456939]
-- [char] tpm: add sleep only for retry in i2c_nuvoton_write_status() (Jerry Snitselaar) [1456939]
-- [char] vtpm: Fix missing NULL check (Jerry Snitselaar) [1456939]
-- [char] tpm2: add session handle context saving and restoring to the space code (Jerry Snitselaar) [1456939]
-- [char] tpm: expose spaces via a device link /dev/tpmrm<n> (Jerry Snitselaar) [1456939]
-- [char] tpm: split out tpm-dev.c into tpm-dev.c and tpm-common-dev.c (Jerry Snitselaar) [1456939]
-- [char] tpm: infrastructure for TPM spaces (Jerry Snitselaar) [1456939]
-- [char] tpm: validate TPM 2.0 commands (Jerry Snitselaar) [1456939]
-- [char] tpm: export tpm2_flush_context_cmd (Jerry Snitselaar) [1456939]
-- [char] tpm: move length validation to tpm_transmit() (Jerry Snitselaar) [1456939]
-- [char] tpm: select CONFIG_CRYPTO (Jerry Snitselaar) [1456939]
-- [char] tpm: msleep() delays - replace with usleep_range() in i2c nuvoton driver (Jerry Snitselaar) [1456939]
-- [char] tpm_tis_core: Choose appropriate timeout for reading burstcount (Jerry Snitselaar) [1456939]
-- [char] tpm: declare tpm2_get_pcr_allocation() as static (Jerry Snitselaar) [1456939]
-- [char] tpm: Fix expected number of response bytes of TPM1.2 PCR Extend (Jerry Snitselaar) [1456939]
-- [char] tpm: fix misspelled "facilitate" in module parameter description (Jerry Snitselaar) [1456939]
-- [char] tpm: silence an array overflow warning (Jerry Snitselaar) [1456939]
-- [char] tpm: fix the type of owned field in cap_t (Jerry Snitselaar) [1456939]
-- [char] tpm: add securityfs support for TPM 2.0 firmware event log (Jerry Snitselaar) [1456939]
-- [char] tpm: enhance read_log_of() to support Physical TPM event log (Jerry Snitselaar) [1456939]
-- [char] tpm: enhance TPM 2.0 PCR extend to support multiple banks (Jerry Snitselaar) [1456939]
-- [char] tpm: implement TPM 2.0 capability to get active PCR banks (Jerry Snitselaar) [1456939]
-- [char] tpm: fix RC value check in tpm2_seal_trusted (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: fix iTPM probe via probe_itpm() function (Jerry Snitselaar) [1456939]
-- [char] tpm: Begin the process to deprecate user_read_timer (Jerry Snitselaar) [1456939]
-- [char] tpm: remove tpm_read_index and tpm_write_index from tpm.h (Jerry Snitselaar) [1456939]
-- [char] tpm: Check size of response before accessing data (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: use default timeout value if chip reports it as zero (Jerry Snitselaar) [1456939]
-- [char] tpm: Do not print an error message when doing TPM auto startup (Jerry Snitselaar) [1456939]
-- [char] tpm, tpm_crb: Handle 64-bit resource in crb_check_resource() (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm_tis_spi: drop duplicate header module.h (Jerry Snitselaar) [1456939]
-- [char] tpm/st33zp24: Remove unneeded linux/miscdevice.h include (Jerry Snitselaar) [1456939]
-- [char] tpm/vtpm: fix kdoc warnings (Jerry Snitselaar) [1456939]
-- [char] tmp: use pdev for parent device in tpm_chip_alloc (Jerry Snitselaar) [1456939]
-- [char] tpm/tpm2-chip: fix kdoc errors (Jerry Snitselaar) [1456939]
-- [char] tpm: add kdoc for tpm_transmit and tpm_transmit_cmd (Jerry Snitselaar) [1456939]
-- [char] tpm: adjust return value of tpm_read_log (Jerry Snitselaar) [1456939]
-- [char] tpm: vtpm_proxy: conditionally call tpm_chip_unregister (Jerry Snitselaar) [1456939]
-- [char] tpm: Fix handling of missing event log (Jerry Snitselaar) [1456939]
-- [char] tpm: Check the bios_dir entry for NULL before accessing it (Jerry Snitselaar) [1456939]
-- [char] tpm: return -ENODEV if np is not set (Jerry Snitselaar) [1456939]
-- [char] tpm: cleanup of printk error messages (Jerry Snitselaar) [1456939]
-- [char] tpm: replace of_find_node_by_name() with dev of_node property (Jerry Snitselaar) [1456939]
-- [char] tpm: redefine read_log() to handle ACPI/OF at runtime (Jerry Snitselaar) [1456939]
-- [char] tpm: fix the missing .owner in tpm_bios_measurements_ops (Jerry Snitselaar) [1456939]
-- [char] tpm: have event log use the tpm_chip (Jerry Snitselaar) [1456939]
-- [char] tpm: drop tpm1_chip_register(/unregister) (Jerry Snitselaar) [1456939]
-- [char] tpm: replace dynamically allocated bios_dir with a static array (Jerry Snitselaar) [1456939]
-- [char] tpm: replace symbolic permission with octal for securityfs files (Jerry Snitselaar) [1456939]
-- [char] tpm: fix kerneldoc tpm2_unseal_trusted name typo (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Allow tpm_tis to be bound using DT (Jerry Snitselaar) [1456939]
-- [char] tpm, tpm_vtpm_proxy: add kdoc comments for VTPM_PROXY_IOC_NEW_DEV (Jerry Snitselaar) [1456939]
-- [char] tpm: define a generic open() method for ascii & bios measurements (Jerry Snitselaar) [1456939]
-- [char] documentation: tpm: add the Physical TPM device tree binding documentation (Jerry Snitselaar) [1456939]
-- [char] documentation: tpm: add the IBM Virtual TPM device tree binding documentation (Jerry Snitselaar) [1456939]
-- [char] tpm: Get rid of TPM_CHIP_FLAG_REGISTERED (Jerry Snitselaar) [1456939]
-- [char] tpm tis: Do not print timeout messages twice (Jerry Snitselaar) [1456939]
-- [char] tpm_tis: Check return values from get_burstcount (Jerry Snitselaar) [1456939]
-- [char] tpm: place kdoc just above tpm_pcr_extend (Jerry Snitselaar) [1456939]
-- [char] tpm: sanitize constant expressions (Jerry Snitselaar) [1456939]
-- [char] tpm: Clean up reading of timeout and duration capabilities (Jerry Snitselaar) [1456939]
-- [char] tpm: Check return code of wait_for_tpm_stat (Jerry Snitselaar) [1456939]
-- [char] ima: the reason for TPM-bypass mode (Jerry Snitselaar) [1456939]
-
-* Fri Oct 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-730.el7]
-- [scsi] bnx2fc: Plug CPU hotplug race (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: remove obsolete bnx2fc_eh_host_reset() definition (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Update version number to 2.11.8 (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Make rport_terminate_io callback a NOOP (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: If IO is still in cleanup then do not return to SCSI layer (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Adjust bnx2fc_npiv_create_vports for WWNNs from NVRAM that are zero (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Update copyright for 2017 (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Check for connection offload before sending RRQ (Maurizio Lombardi) [1461963]
-- [scsi] bnx2fc: Add filters to the non-offload FCoE receive path (Maurizio Lombardi) [1461963]
-- [scsi] smartpqi: update driver version (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup raid map warning message (Don Brace) [1457414]
-- [scsi] smartpqi: update controller ids (Don Brace) [1457414]
-- [scsi] smartpqi: remove the smp_handler stub (Don Brace) [1457414]
-- [scsi] smartpqi: change driver version to 1.1.2-125 (Don Brace) [1457414]
-- [scsi] smartpqi: add in new controller ids (Don Brace) [1457414]
-- [scsi] smartpqi: update kexec and power down support (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup doorbell register usage (Don Brace) [1457414]
-- [scsi] smartpqi: update pqi passthru ioctl (Don Brace) [1457414]
-- [scsi] smartpqi: enhance BMIC cache flush (Don Brace) [1457414]
-- [scsi] smartpqi: add pqi reset quiesce support (Don Brace) [1457414]
-- [scsi] smartpqi: remove sanitize_inquiry_string (Don Brace) [1457414]
-- [scsi] smartpqi: limit transfer length to 1MB (Don Brace) [1457414]
-- [scsi] smartpqi: mark PM functions as __maybe_unused (Don Brace) [1457414]
-- [scsi] smartpqi: bump driver version (Don Brace) [1457414]
-- [scsi] smartpqi: remove writeq/readq function definitions (Don Brace) [1457414]
-- [scsi] smartpqi: add module parameters (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup list initialization (Don Brace) [1457414]
-- [scsi] smartpqi: add raid level show (Don Brace) [1457414]
-- [scsi] smartpqi: make ioaccel references consistent (Don Brace) [1457414]
-- [scsi] smartpqi: enhance device add and remove messages (Don Brace) [1457414]
-- [scsi] smartpqi: update timeout on admin commands (Don Brace) [1457414]
-- [scsi] smartpqi: map more raid errors to SCSI errors (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup controller branding (Don Brace) [1457414]
-- [scsi] smartpqi: update rescan worker (Don Brace) [1457414]
-- [scsi] smartpqi: update device offline (Don Brace) [1457414]
-- [scsi] smartpqi: correct aio error path (Don Brace) [1457414]
-- [scsi] smartpqi: add lockup action (Don Brace) [1457414]
-- [scsi] smartpqi: remove qdepth calculations for logical volumes (Don Brace) [1457414]
-- [scsi] smartpqi: change return value for LUN reset operations (Don Brace) [1457414]
-- [scsi] smartpqi: add ptraid support (Don Brace) [1457414]
-- [scsi] smartpqi: update copyright (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup messages (Don Brace) [1457414]
-- [scsi] smartpqi: add new PCI device IDs (Don Brace) [1457414]
-- [scsi] smartpqi: minor driver cleanup (Don Brace) [1457414]
-- [scsi] smartpqi: correct BMIC identify physical drive (Don Brace) [1457414]
-- [scsi] smartpqi: eliminate redundant error messages (Don Brace) [1457414]
-- [scsi] smartpqi: make pdev pointer names consistent (Don Brace) [1457414]
-- [scsi] smartpqi: add pqi_wait_for_completion_io (Don Brace) [1457414]
-- [scsi] smartpqi: correct bdma hw bug (Don Brace) [1457414]
-- [scsi] smartpqi: add heartbeat check (Don Brace) [1457414]
-- [scsi] smartpqi: add suspend and resume support (Don Brace) [1457414]
-- [scsi] smartpqi: enhance resets (Don Brace) [1457414]
-- [scsi] smartpqi: add supporting events (Don Brace) [1457414]
-- [scsi] smartpqi: add in controller checkpoint for controller lockups (Don Brace) [1457414]
-- [scsi] smartpqi: set pci completion timeout (Don Brace) [1457414]
-- [scsi] smartpqi: cleanup interrupt management (Don Brace) [1457414]
-- [scsi] smartpqi: correct remove scsi devices (Don Brace) [1457414]
-- [scsi] smartpqi: raid bypass lba calculation fix (Don Brace) [1457414]
-- [scsi] bnx2i: missing error code in bnx2i_ep_connect() (Maurizio Lombardi) [1461965]
-- [scsi] qla2xxx: Update driver version to 9.00.00.00.07.5-k (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix an integer overflow in sysfs code (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix slow mem alloc behind lock (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Do not call abort handler function during chip reset (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Ability to process multiple SGEs in Command SGL for CT passthrough commands (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Skip zero queue count entry during FW dump capture (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Increase ql2xmaxqdepth to 64 (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Enable Async TMF processing (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Cleanup NPIV host in target mode during config teardown (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove potential macro parameter side-effect in ql_dump_regs() (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Print correct mailbox registers in failed summary (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix task mgmt handling for NPIV (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Allow SNS fabric login to be retried (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add timeout ability to wait_for_sess_deletion() (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Move logging default mask to execute once only (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use sp->free instead of hard coded call (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Prevent sp->free null/uninitialized pointer dereference (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add ability to autodetect SFP type (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use fabric name for Get Port Speed command (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Change ha->wq max_active value to default (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove extra register read (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix NPIV host enable after chip reset (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use BIT_6 to acquire FAWWPN from switch (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Handle PCIe error for driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Update fw_started flags at qpair creation (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix target multiqueue configuration (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: fix spelling mistake of variable sfp_additonal_info (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: use dma_mapping_error to check map errors (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix system crash while triggering FW dump (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Off by one in qlt_ctio_to_cmd() (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix crash due to NULL pointer dereference of ctx (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Protect access to qpair members with qpair->qp_lock (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Include Exchange offload/Extended Login into FW dump (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Move target stat counters from vha to qpair (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove datasegs_per_cmd and datasegs_per_cont field (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove unused tgt_enable_64bit_addr flag (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add debug logging routine for qpair (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add function call to qpair for door bell (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: use shadow register for ISP27XX (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: move fields from qla_hw_data to qla_qpair (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add fw_started flags to qpair (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix mailbox failure while deleting Queue pairs (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Enable Target Multi Queue (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Preparation for Target MQ (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Combine Active command arrays (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: don't include <generated/utsrelease.h> (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix compile warning (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: remove redundant null check on tgt (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove extra register read (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove unused irq_cmd_count field (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Accelerate SCSI BUSY status generation in target mode (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove redundant wait when target is stopped (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add ql2xiniexchg parameter (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Turn on FW option for exchange check (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Cleanup debug message IDs (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Change scsi host lookup method (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix name server relogin (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Convert 32-bit LUN usage to 64-bit (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use flag PFLG_DISCONNECTED (Himanshu Madhani) [1460030]
-- [scsi] tcm_qla2xxx: Do not allow aborted cmd to advance (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix path recovery (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Retain loop test for fwdump length exceeding buffer length (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Replace usage of spin_lock with spin_lock_irqsave (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Allow ABTS, PURX, RIDA on ATIOQ for ISP83XX/27XX (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove an unused structure member (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix crash due to mismatch mumber of Q-pair creation for Multi queue (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix NULL pointer access due to redundant fc_host_port_name call (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix recursive loop during target mode configuration for ISP25XX leaving system unresponsive (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: don't disable a not previously enabled PCI device (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: remove some redundant pointer assignments (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix delayed response to command for loop mode/direct connect (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add DebugFS node to display Port Database (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Only allow operational MBX to proceed during RESET (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use IOCB interface to submit non-critical MBX (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add async new target notification (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Export DIF stats via debugfs (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Improve T10-DIF/PI handling in driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Allow relogin to proceed if remote login did not finish (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix sess_lock & hardware_lock lock order problem (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix inadequate lock protection for ABTS (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix request queue corruption (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix memory leak for abts processing (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix ql_dump_buffer (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: fix spelling mistake: "seperator" -> "separator" (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix response queue count for Target mode (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Fix a warning reported by the "smatch" static checker (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Avoid using variable-length arrays (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Simplify usage of SRB structure in driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Improve RSCN handling in driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove unused reverse_ini_mode (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add Dual mode support in the driver (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Add framework for async fabric discovery (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Track I-T nexus as single fc_port struct (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Use d_id instead of s_id for more clarity (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Remove direct access of scsi_status field in se_cmd (Himanshu Madhani) [1460030]
-- [scsi] qla2xxx: Properly initialize IO statistics (Himanshu Madhani) [1460030]
-- [scsi] hpsa: fix spelling mistake: "encrypytion" -> "encryption" (Joseph Szczypek) [1457412]
-
-* Fri Oct 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-729.el7]
-- [netdrv] cxgb4: ptp_clock_register() returns error pointers (Arjun Vynipadath) [1466404]
-- [netdrv] cxgb4: Support for get_ts_info ethtool method (Arjun Vynipadath) [1466404]
-- [netdrv] cxgb4: Add PTP Hardware Clock (PHC) support (Arjun Vynipadath) [1466404]
-- [netdrv] cxgb4: time stamping interface for PTP (Arjun Vynipadath) [1466404]
-- [netdrv] cxgb4: fix memory leak (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix pause frame count in t4_get_port_stats (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Ignore MPS_TX_INT_CAUSE Bubble for T6 (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix stack out-of-bounds read due to wrong size to t4_record_mbox() (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: update latest firmware version supported (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Clear On FLASH config file after a FW upgrade (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: display serial config and vpd versions (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Update register ranges of T4/T5/T6 adapters (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Use Firmware params to get buffer-group map (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Update T6 Buffer Group and Channel Mappings (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: add new T6 pci device id's (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: fix memory leak in init_one() (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix tids count for ipv6 offload connection (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: implement ndo_set_vf_rate() (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: fix incorrect cim_la output for T6 (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: FW upgrade fixes (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: keep carrier off before registering netdev (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: add new T5 pci device id (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: add new T5 pci device id (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Remove redundant code in t4_uld_clean_up() (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Add new T5 and T6 pci device id's (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Update proper netdev stats for rx drops (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: hide unused warnings (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Remove redundant memset before memcpy (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix misleading packet/frame count stats (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Support compressed error vector for T6 (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: mark cxgb_setup_tc() static (Arjun Vynipadath) [1458296]
-- [netdrv] cxgb4: Fix missing initialization of win0_lock (Arjun Vynipadath) [1458296]
-
-* Fri Oct 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-728.el7]
-- [mfd] intel-lpss: Add Intel Cannonlake PCI IDs (David Arcari) [1457647]
-- [clk] fractional-divider: support for divider bypassing (David Arcari) [1457647]
-- [i2c] i801: Add support for Intel Cannon Lake (David Arcari) [1457647]
-- [i2c] i801: sort IDs alphabetically (David Arcari) [1457647]
-- [i2c] i801: Cleanup Intel Kaby Lake support (David Arcari) [1457647]
-- [vt] fix Scroll Lock LED trigger name (Benjamin Tissoires) [1470932 1256895]
-- [vt] keyboard: define LED triggers for VT keyboard lock states (Benjamin Tissoires) [1470932 1256895]
-- [vt] keyboard: define LED triggers for VT LED states (Benjamin Tissoires) [1470932 1256895]
-- [input] export LEDs as class devices in sysfs (Benjamin Tissoires) [1470932 1256895]
-- [edac] pnd2: Properly toggle hidden state for P2SB PCI device (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Build in a minimal sideband driver for Apollo Lake (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Conditionally unhide/hide the P2SB PCI device to read BAR (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Mask off the lower four bits of a BAR (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Fix Apollo Lake DIMM detection (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Make function sbi_send() static (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2: Return proper error value from apl_rd_reg() (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2_edac: Fix reported DIMM number (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2_edac: Fix !EDAC_DEBUG build (Aristeu Rozanski) [1479627 1273769]
-- [edac] pnd2_edac: Add new EDAC driver for Intel SoC platforms (Aristeu Rozanski) [1479627 1273769]
-- [kernel] rh_taint: Document functions (Prarit Bhargava) [1489896]
-- [cpufreq] revert "intel_pstate: skip scheduler hook when in "performance" mode" (Prarit Bhargava) [1497253]
-
-* Thu Oct 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-727.el7]
-- [fs] nfsv4: Fix memory and state leak in _nfs4_open_and_get_state (Steve Dickson) [1478450]
-- [fs] nfsv4: Fix a hang in OPEN related to server reboot (Steve Dickson) [1478458]
-- [fs] flexfiles: never nfs4_mark_deviceid_unavailable (Steve Dickson) [1478456]
-- [fs] flexfiles: If the layout is invalid, it must be updated before retrying (Steve Dickson) [1478454]
-- [fs] pnfs: Fix a reference leak in _pnfs_return_layout (Steve Dickson) [1478449]
-- [fs] nfsv4.1: Fix a deadlock in layoutget (Steve Dickson) [1478447]
-- [fs] nfsv4: Fix client recovery when server reboots multiple times (Steve Dickson) [1478443]
-- [fs] flexfiles: delete deviceid, don't mark inactive (Steve Dickson) [1478439]
-- [fs] flexfiles: Fix ff_layout_add_ds_error_locked() (Steve Dickson) [1478438]
-- [fs] pnfs: Release NFS_LAYOUT_RETURN when invalidating the layout stateid (Steve Dickson) [1478431]
-- [fs] pnfs: Fix use after free issues in pnfs_do_read() (Steve Dickson) [1478460]
-- [fs] pnfs: Ensure we check layout segment validity in the pg_init() callback (Steve Dickson) [1478460]
-- [fs] cifs: store results of cifs_reopen_file to avoid infinite wait (Leif Sahlberg) [1496637]
-- [fs] cifs: remove bad_network_name flag (Leif Sahlberg) [1496637]
-- [fs] cifs: reconnect thread reschedule itself (Leif Sahlberg) [1496637]
-- [fs] cifs: handle guest access errors to Windows shares (Leif Sahlberg) [1496637]
-- [fs] Reset TreeId to zero on SMB2 TREE_CONNECT (Leif Sahlberg) [1496637]
-- [fs] cifs: Fix build failure with smb2 (Leif Sahlberg) [1496637]
-- [fs] cifs: Fix maximum SMB2 header size (Leif Sahlberg) [1484099]
-- [fs] cifs: Add support for writing attributes on SMB2+ (Leif Sahlberg) [1110709]
-- [fs] cifs: Add support for reading attributes on SMB2+ (Leif Sahlberg) [1110709]
-- [fs] cifs: Use smb 2 - 3 and cifsacl mount options setacl function (Leif Sahlberg) [1110709]
-- [fs] cifs: prototype declaration and definition to set acl for smb 2 - 3 and cifsacl mount options (Leif Sahlberg) [1110709]
-- [fs] cifs: Use smb 2 - 3 and cifsacl mount options getacl functions (Leif Sahlberg) [1110709]
-- [fs] cifs: prototype declaration and definition for smb 2 - 3 and cifsacl mount options (Leif Sahlberg) [1110709]
-- [fs] Minor cleanup of xattr query function (Leif Sahlberg) [1110709]
-- [fs] cifs: implement get_dfs_refer for SMB2+ (Leif Sahlberg) [1481303]
-- [fs] cifs: use DFS pathnames in SMB2+ Create requests (Leif Sahlberg) [1481303]
-- [fs] cifs: set signing flag in SMB2+ TreeConnect if needed (Leif Sahlberg) [1481303]
-- [fs] cifs: let ses->ipc_tid hold smb2 TreeIds (Leif Sahlberg) [1481303]
-- [fs] cifs: add use_ipc flag to SMB2_ioctl() (Leif Sahlberg) [1481303]
-- [fs] cifs: add build_path_from_dentry_optional_prefix() (Leif Sahlberg) [1481303]
-- [fs] cifs: move DFS response parsing out of SMB1 code (Leif Sahlberg) [1481303]
-- [fs] cifs: Fix null pointer deref during read resp processing (Leif Sahlberg) [1403319]
-- [fs] cifs: Handle mismatched open calls (Leif Sahlberg) [1403319]
-- [fs] revert "cifs: Fix null pointer deref during read resp processing" (Leif Sahlberg) [1403319]
-
-* Thu Oct 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-726.el7]
-- [x86] perf/x86/intel: Add Goldmont Plus CPU PMU support (Jiri Olsa) [1464895]
-- [x86] x86/mce: Enable PPIN for Knights Landing/Mill (Scott Wood) [1440834]
-- [x86] x86/mce: Include the PPIN in MCE records when available (Scott Wood) [1440834]
-- [x86] xen/vcpu: Handle xen_vcpu_setup() failure at boot (Vitaly Kuznetsov) [1482594]
-- [x86] xen/vcpu: Handle xen_vcpu_setup() failure in hotplug (Vitaly Kuznetsov) [1482594]
-- [x86] xen/pvh*: Support > 32 VCPUs at domain restore (Vitaly Kuznetsov) [1482594]
-- [x86] xen/vcpu: Simplify xen_vcpu related code (Vitaly Kuznetsov) [1482594]
-- [x86] xen: globalize have_vcpu_info_placement (Vitaly Kuznetsov) [1482594]
-- [xen] grant: Implement an grant frame array struct (Vitaly Kuznetsov) [1482876]
-- [xen] grant-table: Refactor gnttab_init (Vitaly Kuznetsov) [1482876]
-- [xen] grants: Remove gnttab_max_grant_frames dependency on gnttab_init (Vitaly Kuznetsov) [1482876]
-- [xen] Grant table address, xen_hvm_resume_frames, is a phys_addr not a pfn (Vitaly Kuznetsov) [1482876]
-- [misc] mei: drop amthif internal client (Jeremy McNicoll) [1457532]
-- [misc] mei: replace callback structures used as list head by list_head (Jeremy McNicoll) [1457532]
-- [misc] mei: drop unreachable code in mei_start (Jeremy McNicoll) [1457532]
-- [misc] mei: validate the message header only in first fragment (Jeremy McNicoll) [1457532]
-- [misc] mei: hw: fix a spelling mistake (Jeremy McNicoll) [1457532]
-- [misc] mei: make mei_cl_bus_rescan static (Jeremy McNicoll) [1457532]
-- [misc] mei: implement fsync (Jeremy McNicoll) [1457532]
-- [misc] mei: bus: elminate variable length arrays (Jeremy McNicoll) [1457532]
-- [misc] mei: hbm: remove variable length arrays (Jeremy McNicoll) [1457532]
-- [misc] mei: add pci driver ops shutdown handler (Jeremy McNicoll) [1457532]
-
-* Wed Oct 04 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-725.el7]
-- [fs] nfsv4: Fix up mirror allocation (Scott Mayhew) [1483654]
-- [fs] xfs: bad assertion for delalloc an extent that start at i_size (Carlos Maiolino) [1449075]
-- [fs] pnfs: Force a retry of LAYOUTGET if the stateid doesn't match our cache (Steve Dickson) [1477346]
-- [fs] nfsv4: Don't check file access when reclaiming state (Steve Dickson) [1477353]
-- [fs] pnfs: Don't mark the layout as freed if the last lseg is marked for return (Steve Dickson) [1477353]
-- [fs] pnfs: Sync the layout state bits in pnfs_cache_lseg_for_layoutreturn (Steve Dickson) [1477353]
-- [fs] pnfs: Fix bugs in _pnfs_return_layout (Steve Dickson) [1477353]
-- [fs] pnfs: Clear all layout segment state in pnfs_mark_layout_stateid_invalid (Steve Dickson) [1477353]
-- [fs] pnfs: Prevent unnecessary layoutreturns after delegreturn (Steve Dickson) [1477353]
-- [fs] pnfs: Enable layoutreturn operation for return-on-close (Steve Dickson) [1477353]
-- [fs] nfsv4: Add encode/decode of the layoutreturn op in OPEN_DOWNGRADE (Steve Dickson) [1477353]
-- [fs] pnfs: Clean up - add a helper to initialise struct layoutreturn_args (Steve Dickson) [1477353]
-- [fs] nfsv4: Add encode/decode of the layoutreturn op in DELEGRETURN (Steve Dickson) [1477353]
-- [fs] nfsv4: Add encode/decode of the layoutreturn op in CLOSE (Steve Dickson) [1477353]
-- [fs] nfsv4: Fix missing operation accounting in NFS4_dec_delegreturn_sz (Steve Dickson) [1477353]
-- [fs] pnfs: Don't mark layout segments invalid on layoutreturn in pnfs_roc (Steve Dickson) [1477353]
-- [fs] pnfs: Get rid of unnecessary layout parameter in encode_layoutreturn callback (Steve Dickson) [1477353]
-- [fs] nfsv4: Ignore LAYOUTRETURN result if the layout doesn't match or is invalid (Steve Dickson) [1477353]
-- [fs] pnfs: Skip checking for return-on-close if the layout is invalid (Steve Dickson) [1477353]
-- [fs] pnfs: Fix race in pnfs_wait_on_layoutreturn (Steve Dickson) [1477353]
-- [fs] pnfs: Remove spurious wake up in pnfs_layout_remove_lseg() (Steve Dickson) [1477353]
-- [fs] pnfs: Do not free layout segments that are marked for return (Steve Dickson) [1477353]
-- [fs] pnfs: On error, do not send LAYOUTGET until the LAYOUTRETURN has completed (Steve Dickson) [1477353]
-- [fs] pnfs: Delay getting the layout header in CB_LAYOUTRECALL handlers (Steve Dickson) [1477353]
-- [fs] nfsv4: Don't ask for the change attribute when reclaiming state (Steve Dickson) [1477353]
-- [fs] pnfs: Clear NFS_LAYOUT_RETURN_REQUESTED when invalidating the layout stateid (Steve Dickson) [1477353]
-- [fs] pnfs: Don't clear the layout stateid if a layout return is outstanding (Steve Dickson) [1477353]
-- [fs] nfs: nfs_prime_dcache must validate the filename (Steve Dickson) [1477353]
-- [fs] nfsv4: Optimise away forced revalidation when we know the attributes are OK (Steve Dickson) [1477353]
-- [fs] nfsv4: Don't request close-to-open attribute when holding a delegation (Steve Dickson) [1477353]
-- [fs] nfsv4: Don't request a GETATTR on open_downgrade (Steve Dickson) [1477353]
-- [fs] nfsv4: If recovery failed for a specific open stateid, then don't retry (Steve Dickson) [1477336]
-- [fs] nfsv4.1: Even if the stateid is OK, we may need to recover the open modes (Steve Dickson) [1477336]
-- [fs] nfsv4: Fix retry issues with nfs41_test/free_stateid (Steve Dickson) [1477336]
-- [fs] nfsv4: Open state recovery must account for file permission changes (Steve Dickson) [1477336]
-- [fs] nfsv4: nfs4_copy_delegation_stateid() must fail if the delegation is invalid (Steve Dickson) [1477336]
-- [fs] nfsv4: Mark the lock and open stateids as invalid after freeing them (Steve Dickson) [1477336]
-- [fs] nfsv4: Don't test open_stateid unless it is set (Steve Dickson) [1477336]
-- [fs] nfs: Always call nfs_inode_find_state_and_recover() when revoking a delegation (Steve Dickson) [1477336]
-- [fs] nfsv4: Don't report revoked delegations as valid in nfs_have_delegation() (Steve Dickson) [1477336]
-
-* Wed Oct 04 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-724.el7]
-- [mm] swap: Remove WARN_ON_ONCE() in free_swap_slot() (Jerome Marchand) [1400689]
-- [mm] swap: don't BUG_ON() due to uninitialized swap slot cache (Jerome Marchand) [1400689]
-- [mm] swapfile.c: fix swap space leak in error path of swap_free_entries() (Jerome Marchand) [1400689]
-- [mm] swap: Fix a race in free_swap_and_cache() (Jerome Marchand) [1400689]
-- [mm] swap: skip readahead only when swap slot cache is enabled (Jerome Marchand) [1400689]
-- [mm] swap: enable swap slots cache usage (Jerome Marchand) [1400689]
-- [mm] swap: add cache for swap slots allocation (Jerome Marchand) [1400689]
-- [mm] swap: free swap slots in batch (Jerome Marchand) [1400689]
-- [mm] swap: allocate swap slots in batches (Jerome Marchand) [1400689]
-- [mm] swap: skip readahead for unreferenced swap slots (Jerome Marchand) [1400689]
-- [mm] swap: split swap cache into 64MB trunks (Jerome Marchand) [1400689]
-- [mm] swap: add cluster lock (Jerome Marchand) [1400689]
-- [mm] swap: fix kernel message in swap_info_get() (Jerome Marchand) [1400689]
-- [mm] don't use radix tree writeback tags for pages in swap cache (Jerome Marchand) [1400689]
-- [mm] swap: add swap_cluster_list (Jerome Marchand) [1400689]
-- [mm] swap: make cluster allocation per-cpu (Jerome Marchand) [1400689]
-- [mm] swap: fix races exposed by swap discard (Jerome Marchand) [1400689]
-- [mm] swap: make swap discard async (Jerome Marchand) [1400689]
-- [mm] swap: change block allocation algorithm for SSD (Jerome Marchand) [1400689]
-- [mmc] mmc: sdhci-pci: Add support for Intel CNP (David Arcari) [1457650]
-- [mmc] mmc: sdhci-pci: Use macros in pci_ids definition (David Arcari) [1457650]
-- [mmc] mmc: sdhci-pci: Move a function to avoid later forward declaration (David Arcari) [1457650]
-- [netdrv] bonding: use ETH_MAX_MTU as max mtu (Jarod Wilson) [1493777]
-- [netdrv] bonding: fix tlb_dynamic_lb default value (Jarod Wilson) [1493777]
-- [netdrv] bonding: Fix transmit load balancing in balance-alb mode if specified by sysfs (Jarod Wilson) [1493777 1492980]
-- [netdrv] bonding: ratelimit failed speed/duplex update warning (Jarod Wilson) [1493777]
-- [netdrv] bonding: require speed/duplex only for 802.3ad, alb and tlb (Jarod Wilson) [1493777]
-- [netdrv] bonding: constify attribute_group structures (Jarod Wilson) [1493777]
-- [netdrv] bonding: warn user when 802.3ad speed is unknown (Jarod Wilson) [1493777]
-- [netdrv] bonding: fix 802.3ad support for 14G speed (Jarod Wilson) [1493777]
-- [netdrv] bonding: Prevent duplicate userspace notification (Jarod Wilson) [1493777]
-- [netdrv] bonding: Don't update slave->link until ready to commit (Jarod Wilson) [1493777]
-- [netdrv] bonding: check nla_put_be32 return value (Jarod Wilson) [1493777]
-- [netdrv] bonding: deliver link-local packets with skb->dev set to link that packets arrived on (Jarod Wilson) [1493777]
-- [netdrv] bonding: trivial: style fixes (Jarod Wilson) [1493777]
-- [netdrv] add definition of ETH_MAX_MTU (Jarod Wilson) [1493777 1480542]
-
-* Tue Oct 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-723.el7]
-- [netdrv] hv_netvsc: Fix the real number of queues of non-vRSS cases (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: make const array ver_list static, reduces object code size (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: fix send buffer failure on MTU change (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: increase default receive buffer size (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: avoid unnecessary wakeups on subchannel creation (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: fix deadlock on hotplug (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Fix the channel limit in netvsc_set_rxfh() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Simplify the limit check in netvsc_set_channels() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Simplify num_chn checking in rndis_filter_device_add() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Clean up an unused parameter in rndis_filter_set_rss_param() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: allow driver to be removed even if VF is present (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: cleanup datapath switch (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix deadlock betwen link status and removal (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Fix rndis_filter_close error during netvsc_remove (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Add ethtool handler to set and get UDP hash levels (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Clean up unused parameter from netvsc_get_rss_hash_opts() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hv_netvsc: Clean up unused parameter from netvsc_get_hash() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] vmbus: remove unused vmbus_sendpacket_ctl (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] vmbus: remove unused vmubs_sendpacket_pagebuffer_ctl (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] vmbus: remove unused vmbus_sendpacket_multipagebuffer (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: keep track of some non-fatal overload conditions (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: allow controlling send/recv buffer size (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove unnecessary check for NULL hdr (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove unnecessary cast of void pointer (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: whitespace cleanup (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: no need to allocate send/receive on numa node (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: check error return when restoring channels and mtu (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: propagate MAC address change to VF slave (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: don't signal host twice if empty (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: delay setup of VF device (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: make sure and unregister datapath (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix rtnl deadlock on unregister of vf (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: transparent VF management (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] hyperv: netvsc: Neaten netvsc_send_pkt by using a temporary (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: signal host if receive ring is emptied (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix error unwind on device setup failure (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: optimize receive completions (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove unnecessary indirection of page_buffer (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: don't print pointer value in error message (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix warnings reported by lockdep (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix return value for set_channels (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove no longer used max_num_rss queues (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: rtnetlink.h (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix netvsc_set_channels (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: prefetch the first incoming ring element (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: Remove redundant use of ipv6_hdr() (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: remove bogus rtnl_unlock (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: fix ptr_ret.cocci warnings (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: add rtnl annotations in rndis (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: save pointer to parent netvsc_device in channel table (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: need rcu_derefence when accessing internal device info (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: use ERR_PTR to avoid dereference issues (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: change logic for change mtu and set_queues (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: change order of steps in setting queues (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: add some rtnl_dereference annotations (Vitaly Kuznetsov) [1474300 1477784]
-- [netdrv] netvsc: force link update after MTU change (Vitaly Kuznetsov) [1474300 1477784]
-
-* Tue Oct 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-722.el7]
-- [rdma] ib/core: Restore I/O MMU, s390 and powerpc support (Don Dutile) [1494648]
-- [rdma] ib/rxe, ib/rdmavt: Use dma_virt_ops instead of duplicating it (Don Dutile) [1494648]
-- [lib] dma-virt: remove dma_supported and mapping_error methods (Don Dutile) [1494648]
-- [rdma] ib/core: Remove ib_device.dma_device (Don Dutile) [1494648]
-- [nvme] nvme-rdma: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/srpt: Modify a debug statement (Don Dutile) [1494648]
-- [infiniband] ib/ipath: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/ehca: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/srp: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/iser: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/ipoib: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/rxe: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/vmw_pvrdma: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/rxe: Remove a pointless indirection layer (Don Dutile) [1494648]
-- [infiniband] ib/usnic: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/qib: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/qedr: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/ocrdma: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/nes: Remove a superfluous assignment statement (Don Dutile) [1494648]
-- [infiniband] ib/mthca: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/mlx5: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/mlx4: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/i40iw: Remove a superfluous assignment statement (Don Dutile) [1494648]
-- [infiniband] ib/hfi1: Switch from dma_device to dev.parent (Don Dutile) [1494648]
-- [infiniband] ib/cxgb4: Set dev.parent instead of dma_device (Don Dutile) [1494648]
-- [infiniband] ib/cxgb3: Set dev.parent instead of dma_device (Don Dutile) [1494648]
-- [infiniband] ib/core: Use dev.parent instead of dma_device (Don Dutile) [1494648]
-- [infiniband] ib/core: Initialize ib_device.dev.parent earlier (Don Dutile) [1494648]
-- [infiniband] ib/qib: Remove DMA mapping code (Don Dutile) [1494648]
-- [infiniband] ib/hf1: Remove DMA mapping code (Don Dutile) [1494648]
-- [net] ib/core: Change the type of an ib_dma_alloc_coherent() argument (Don Dutile) [1494648]
-- [rdma] ib/core: Remove ib_dma_*map_single_attrs() (Don Dutile) [1494648]
-- [lib] dma-virt: Add dma_virt_ops (Don Dutile) [1494648]
-- [kernel] treewide: Consolidate get_dma_ops() implementations (Don Dutile) [1494648]
-- [kernel] treewide: Consolidate set_dma_ops() implementations (Don Dutile) [1494648]
-- [iommu] treewide: Move dma_ops from struct dev_archdata into struct device (Don Dutile) [1494648]
-- [kernel] dma: add calls for dma_map_page_attrs and dma_unmap_page_attrs (Don Dutile) [1494648]
-- [kernel] dma-mapping.h: preserve unmap info for CONFIG_DMA_API_DEBUG (Don Dutile) [1494648]
-- [kernel] dma-mapping: add dma_{map,unmap}_resource (Don Dutile) [1494648]
-- [lib] dma-debug: add support for resource mappings (Don Dutile) [1494648]
-- [lib] dma-debug: Fix dma_debug_entry offset calculation (Don Dutile) [1494648]
-- [lib] dma-debug: prevent early callers from crashing (Don Dutile) [1494648]
-- [lib] dma-debug: introduce dma_debug_disabled (Don Dutile) [1494648]
-- [lib] dma debug: account for cachelines and read-only mappings in overlap tracking (Don Dutile) [1494648]
-- [lib] dma-debug: fix overlap detection (Don Dutile) [1494648]
-- [mm] dma-debug: introduce debug_dma_assert_idle() (Don Dutile) [1494648]
-- [kernel] dma-mapping: add {map, unmap}_resource to dma_map_ops (Don Dutile) [1494648]
-- [kernel] dma-mapping: avoid oops when parameter cpu_addr is null (Don Dutile) [1494648]
-- [kernel] dma-mapping: use offset_in_page macro (Don Dutile) [1494648]
-- [kernel] dma-mapping: always provide the dma_map_ops based implementation (Don Dutile) [1494648]
-- [kernel] dma-mapping: tidy up dma_parms default handling (Don Dutile) [1494648]
-- [kernel] dma-mapping: Clarify output of dma_map_sg (Don Dutile) [1494648]
-- [kernel] dma-mapping: consolidate dma_set_mask (Don Dutile) [1494648]
-- [kernel] dma-mapping: consolidate dma_supported (Don Dutile) [1494648]
-- [kernel] dma-mapping: cosolidate dma_mapping_error (Don Dutile) [1494648]
-- [kernel] dma-mapping: consolidate dma_{alloc, free}_noncoherent (Don Dutile) [1494648]
-- [x86] dma-mapping: Fix arch_dma_alloc_attrs() oops with NULL dev (Don Dutile) [1494648]
-- [x86] pci/dma: Fix gfp flags for coherent DMA memory allocation (Don Dutile) [1494648]
-- [kernel] dma-mapping: consolidate dma_{alloc, free}_{attrs, coherent} (Don Dutile) [1494648]
-- [kernel] arm: 7795/1: mm: dma-mapping: Add dma_max_pfn(dev) helper function (Don Dutile) [1494648]
-- [s390] Use bool function return values of true/false not 1/0 (Don Dutile) [1494648]
-- [s390] Implement dma_{alloc,free}_attrs() (Don Dutile) [1494648]
-- [s390] dma: remove gratuitous brackets (Don Dutile) [1494648]
-- [x86] Deinline dma_free_attrs() (Don Dutile) [1494648]
-- [x86] Deinline dma_alloc_attrs() (Don Dutile) [1494648]
-- [of] platform: Allocate rh extension to device struct earlier (Don Dutile) [1494648]
-
-* Mon Oct 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-721.el7]
-- [netdrv] netvsc: fix race on sub channel creation (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Initialize 64-bit stats seqcount (Mohammed Gamal) [1465469]
-- [netdrv] revert "netvsc: optimize calculation of number of slots" (Mohammed Gamal) [1465469]
-- [netdrv] hv_netvsc: Fix the carrier state error when data path is off (Mohammed Gamal) [1465469]
-- [netdrv] hv_netvsc: Remove unnecessary var link_state from struct netvsc_device_info (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: don't access netdev->num_rx_queues directly (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fold in get_outbound_net_device (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: pass net_device to netvsc_init_buf and netvsc_connect_vsp (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: mark error cases as unlikely (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use typed pointer for internal state (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use hv_get_bytes_to_read (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: optimize calculation of number of slots (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: move filter setting to rndis_device (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix net poll mode (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix rcu dereference warning from ethtool (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Add #include's for csum_* function declarations (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: make sure napi enabled before vmbus_open (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix calculation of available send sections (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix use after free on module removal (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Deal with rescinded channels correctly (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix RCU warning in get_stats (Mohammed Gamal) [1465469]
-- [netdrv] hv_netvsc: Exclude non-TCP port numbers from vRSS hashing (Mohammed Gamal) [1465469]
-- [netdrv] hv_netvsc: Fix the queue index computation in forwarding case (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use napi_consume_skb (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Initialize all channel related state prior to opening the channel (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix dereference before null check errors (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Properly initialize the return value (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: Fix a bug in sub-channel handling (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix and cleanup rndis_filter_set_packet_filter (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: eliminate unnecessary skb == NULL checks (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use refcount_t for keeping track of sub channels (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: remove unnecessary lock on shutdown (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: uses RCU instead of removal flag (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: use RCU to protect inner device structure (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: change max channel calculation (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: handle offline mtu and channel change (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix NAPI performance regression (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: remove unused #define (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: add comments about callback's and NAPI (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: avoid race with callback (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix hang on netvsc module removal (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: need napi scheduled during removal (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: handle select_queue when device is being removed (Mohammed Gamal) [1465469]
-- [netdrv] hyperv: use new api ethtool_{get|set}_link_ksettings (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: replace netdev_alloc_skb_ip_align with napi_alloc_skb (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: enable GRO (Mohammed Gamal) [1465469 1408651]
-- [netdrv] netvsc: implement NAPI (Mohammed Gamal) [1465469]
-- [kernel] vmbus: introduce in-place packet iterator (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: don't overload variable in same function (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix use-after-free in netvsc_change_mtu() (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: fix typo on statistics (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: call netif_receive_skb (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: simplify get next send section (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: report per-channel stats in ethtool statistics (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: account for packets/bytes transmitted after completion (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: eliminate per-device outstanding send counter (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: simplify rndis_filter_remove (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: don't pass void * to internal device_add (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: optimize receive path (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: group all per-channel state together (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: remove unused variables (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: enhance transmit select_queue (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: allow get/set of RSS indirection table (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: allow more flexible setting of number of channels (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: add ethtool ops to get/set RSS key (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: report rss field values (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: report number of rx queues in ethtool (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: negotiate checksum and segmentation parameters (Mohammed Gamal) [1465469]
-- [netdrv] netvsc: remove no longer needed receive staging buffers (Mohammed Gamal) [1465469]
-
-* Fri Sep 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-720.el7]
-- [mm] introduce dedicated WQ_MEM_RECLAIM workqueue to do lru_add_drain_all (Waiman Long) [1476040]
-- [mfd] lpc_ich: Add support for Intel Bay Trail SoC (David Arcari) [1491814]
-- [xen] xen: don't copy bogus duplicate entries into kernel page tables (Vitaly Kuznetsov) [1487754]
-- [xen] xen/pvh: MMU changes for PVH (Vitaly Kuznetsov) [1487754]
-- [tty] serial: 8250_pnp: Enable PNP_CONSOLE for console ports (Prarit Bhargava) [1489468]
-- [tty] pnp: Allow console to override ACPI device sleep (Prarit Bhargava) [1489468]
-- [tty] tty: serial: 8250_core: provide a function to export uart_8250_port (Prarit Bhargava) [1489468]
-- [tty] serial: Move "uart_console" def to core header file (Prarit Bhargava) [1489468]
-- [pci] Allow PCI express root ports to find themselves (Myron Stowe) [1492839]
-- [pci] fix oops when try to find Root Port for a PCI device (Myron Stowe) [1492839]
-- [pci] Disable Relaxed Ordering for some Intel processors (Myron Stowe) [1492839]
-- [pci] Disable PCIe Relaxed Ordering if unsupported (Myron Stowe) [1492839]
-- [x86] x86/hyperv: Read TSC frequency from a synthetic MSR (Vitaly Kuznetsov) [1457866]
-- [x86] x86/hyperv: Handle unknown NMIs on one CPU when unknown_nmi_panic (Vitaly Kuznetsov) [1457866]
-- [x86] x86/mm/kaslr: Do not adapt the size of the direct mapping section for SGI UV system (Baoquan He) [1457046]
-- [x86] x86/uv: Introduce a helper function to check UV system at earlier stage (Baoquan He) [1457046]
-- [x86] amd: Limit cpu_core_id fixup to families older than F17h (Suravee Suthikulpanit) [1477397]
-- [x86] cpu/amd: Fix Zen SMT topology (Suravee Suthikulpanit) [1477397]
-- [x86] cpu/amd: Bring back Compute Unit ID (Suravee Suthikulpanit) [1477397]
-- [x86] cpu/amd: Fix Bulldozer topology (Suravee Suthikulpanit) [1477397]
-- [x86] cpu/amd: Clean up cpu_llc_id assignment per topology feature (Suravee Suthikulpanit) [1477397]
-- [x86] cpu: Get rid of compute_unit_id (Suravee Suthikulpanit) [1477397]
-- [x86] kvm: vmx: Do not BUG() on out-of-bounds guest IRQ (Paolo Bonzini) [1490781] {CVE-2017-1000}
-- [sound] alsa: timer: Use common error handling code in alsa_timer_init() (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Adjust a condition check in snd_timer_resolution() (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Follow standard EXPORT_SYMBOL() declarations (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Wrap with spinlock for queue access (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Improve user queue reallocation (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Fix missing queue indices reset at SNDRV_TIMER_IOCTL_SELECT (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Fix race between read and ioctl (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Info leak in snd_timer_user_tinterrupt() (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: remove some dead code (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [sound] alsa: timer: Reject user params with too small ticks (Jaroslav Kysela) [1465999] {CVE-2017-1000380}
-- [kernel] procfs: treat parked tasks as sleeping for task state (Joe Lawrence) [1488504]
-- [kernel] rcutree: Fix panic_on_rcu_stall() (Pratyush Anand) [1490673]
-- [netdrv] mlx5: Avoid using pending command interface slots (Don Dutile) [1463367]
-- [powerpc] perf: Fix book3s kernel to userspace backtraces (Gustavo Duarte) [1492669]
-
-* Thu Sep 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-719.el7]
-- [tools] perf probe: Fix probe definition for inlined functions (Jiri Olsa) [1480522]
-- [tools] perf unwind: Report module before querying isactivation in dwfl unwind (Jiri Olsa) [1480522]
-- [tools] perf tools: Fix build with ARCH=x86_64 (Jiri Olsa) [1480522]
-- [tools] perf clang: Update test case to use real BPF script (Jiri Olsa) [1480522]
-- [tools] perf evsel: Fix probing of precise_ip level for default cycles event (Jiri Olsa) [1480522]
-- [tools] perf symbols: Kill dso__build_id_is_kmod() (Jiri Olsa) [1480522]
-- [tools] perf symbols: Keep DSO->symtab_type after decompress (Jiri Olsa) [1480522]
-- [tools] perf tests: Decompress kernel module before objdump (Jiri Olsa) [1480522]
-- [tools] perf tools: Consolidate error path in __open_dso() (Jiri Olsa) [1480522]
-- [tools] perf tools: Decompress kernel module when reading DSO data (Jiri Olsa) [1480522]
-- [tools] perf annotate: Use dso__decompress_kmodule_path() (Jiri Olsa) [1480522]
-- [tools] perf tools: Introduce dso__decompress_kmodule_{fd, path} (Jiri Olsa) [1480522]
-- [tools] perf tools: Fix a memory leak in __open_dso() (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix symbolic link of build-id cache (Jiri Olsa) [1480522]
-- [tools] perf script python: Remove dups in documentation examples (Jiri Olsa) [1480522]
-- [tools] perf script python: Updated trace_unhandled() signature (Jiri Olsa) [1480522]
-- [tools] perf script python: Fix wrong code snippets in documentation (Jiri Olsa) [1480522]
-- [tools] perf script: Fix documentation errors (Jiri Olsa) [1480522]
-- [tools] perf script: Fix outdated comment for perf-trace-python (Jiri Olsa) [1480522]
-- [tools] perf probe: Fix examples section of documentation (Jiri Olsa) [1480522]
-- [tools] perf annotate: Add missing powerpc triplet (Jiri Olsa) [1480522]
-- [tools] perf symbols: Use correct filename for compressed modules in build-id cache (Jiri Olsa) [1480522]
-- [tools] perf symbols: Set module info when build-id event found (Jiri Olsa) [1480522]
-- [tools] perf header: Set proper module name when build-id event found (Jiri Olsa) [1480522]
-- [tools] perf stat: Only print NMI watchdog hint when enabled (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix branch instruction with multiple operands (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix failure when filename has special chars (Jiri Olsa) [1480522]
-- [tools] perf tools: Put caller above callee in --children mode (Jiri Olsa) [1480522]
-- [tools] perf report: Do not drop last inlined frame (Jiri Olsa) [1480522]
-- [tools] perf report: Always honor callchain order for inlined nodes (Jiri Olsa) [1480522]
-- [tools] perf script: Add --inline option for debugging (Jiri Olsa) [1480522]
-- [tools] perf report: Fix off-by-one for non-activation frames (Jiri Olsa) [1480522]
-- [tools] perf report: Fix memory leak in addr2line when called by addr2inlines (Jiri Olsa) [1480522]
-- [tools] perf report: Don't crash on invalid maps in `-g srcline` mode (Jiri Olsa) [1480522]
-- [tools] tools build: Fixup sched_getcpu feature test (Jiri Olsa) [1480522]
-- [tools] perf tests kmod-path: Don't fail if compressed modules aren't supported (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix AArch64 comment char (Jiri Olsa) [1480522]
-- [tools] perf tools: Fix spelling mistakes (Jiri Olsa) [1480522]
-- [tools] perf config: Refactor a duplicated code for obtaining config file name (Jiri Olsa) [1480522]
-- [tools] perf symbols: Allow user probes on versioned symbols (Jiri Olsa) [1480522]
-- [tools] tools lib string: Adopt prefixcmp() from perf and subcmd (Jiri Olsa) [1480522]
-- [tools] perf units: Move parse_tag_value() to units.[ch] (Jiri Olsa) [1480522]
-- [tools] perf ui gtk: Move gtk .so name to the only place where it is used (Jiri Olsa) [1480522]
-- [tools] perf tools: Move HAS_BOOL define to where perl headers are used (Jiri Olsa) [1480522]
-- [tools] perf memswap: Split the byteswap memory range wrappers from util.[ch] (Jiri Olsa) [1480522]
-- [tools] perf tools: Move event prototypes from util.h to event.h (Jiri Olsa) [1480522]
-- [tools] perf buildid: Move prototypes from util.h to build-id.h (Jiri Olsa) [1480522]
-- [tools] powerpc/perf: Define big-endian version of perf_mem_data_src (Jiri Olsa) [1480522]
-- [tools] treewide: Fix typos in printk (Jiri Olsa) [1480522]
-- [tools] perf tools: Fix the code to strip command name (Jiri Olsa) [1480522]
-- [tools] perf tools: Use just forward declarations for struct thread where possible (Jiri Olsa) [1480522]
-- [tools] perf tools: Add the right header to obtain PERF_ALIGN() (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove poll.h and wait.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove string.h, unistd.h and sys/stat.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove stale prototypes from builtin.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove string.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove sys/ioctl.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove a few more needless includes from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Include sys/param.h where needed (Jiri Olsa) [1480522]
-- [tools] perf callchain: Move callchain specific routines from util.[ch] (Jiri Olsa) [1480522]
-- [tools] perf tools: Add compress.h for the *_decompress_to_file() headers (Jiri Olsa) [1480522]
-- [tools] perf mem: Fix display of data source snoop indication (Jiri Olsa) [1480522]
-- [tools] perf debug: Move dump_stack() and sighandler_dump_stack() to debug.h (Jiri Olsa) [1480522]
-- [tools] perf kvm: Make function only used by 'perf kvm' static (Jiri Olsa) [1480522]
-- [tools] perf tools: Move timestamp routines from util.h to time-utils.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Move units conversion/formatting routines to separate object (Jiri Olsa) [1480522]
-- [tools] perf tools: Add signal.h to places using its definitions (Jiri Olsa) [1480522]
-- [tools] perf unwind: Provide only forward declarations for pointer types (Jiri Olsa) [1480522]
-- [tools] perf tools: Ditch unused strchrnul() reimplementation (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove regex.h and fnmatch.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove include dirent.h from util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove misplaced __maybe_unused in some functions (Jiri Olsa) [1480522]
-- [tools] perf tools: Use api/fs/tracing_path.h where needed (Jiri Olsa) [1480522]
-- [tools] perf tools: No need to include bitops.h in util.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Move path related functions to util/path.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Don't include terminal handling headers in util.h (Jiri Olsa) [1480522]
-- [tools] perf str{filter, list}: Disentangle headers (Jiri Olsa) [1480522]
-- [tools] perf tools: Include errno.h where needed (Jiri Olsa) [1480522]
-- [tools] perf tools: Move extra string util functions to util/string2.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Move srcline definitions to separate header (Jiri Olsa) [1480522]
-- [tools] perf tools: Move print_binary definitions to separate files (Jiri Olsa) [1480522]
-- [tools] tools include: Include missing headers for fls() and types in linux/log2.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Move sane ctype stuff from util.h to sane_ctype.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Ditch unused PATH_SEP, STRIP_EXTENSION (Jiri Olsa) [1480522]
-- [tools] perf tools: Replace STR() calls with __stringify() (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove PRI[xu] macros from perf.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Including missing inttypes.h header (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove unused macros from util.h (Jiri Olsa) [1480522]
-- [tools] tools include: Drop ARRAY_SIZE() definition from linux/hashtable.h (Jiri Olsa) [1480522]
-- [tools] perf tools: Add include <linux/kernel.h> where ARRAY_SIZE() is used (Jiri Olsa) [1480522]
-- [tools] objtool: Drop ARRAY_SIZE() definition, tools/include/linux/kernel.h has it now (Jiri Olsa) [1480522]
-- [tools] tools include: Move ARRAY_SIZE() to linux/kernel.h (Jiri Olsa) [1480522]
-- [tools] tools include: Adopt __same_type() and __must_be_array() from the kernel (Jiri Olsa) [1480522]
-- [tools] tools include: Introduce linux/bug.h, from the kernel sources (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove FLEX_ARRAY definition (Jiri Olsa) [1480522]
-- [tools] perf unwind arm64: Add missing errno.h header (Jiri Olsa) [1480522]
-- [tools] revert "perf tools: Fix include of linux/mman.h" (Jiri Olsa) [1480522]
-- [tools] perf util: Hint missing file when tool tips fail to load (Jiri Olsa) [1480522]
-- [tools] tools build: Fix feature detection redefinion of build flags (Jiri Olsa) [1480522]
-- [tools] perf tools: Disable JVMTI if no ELF support available (Jiri Olsa) [1480522]
-- [tools] perf trace: Add usage of --no-syscalls in man page (Jiri Olsa) [1480522]
-- [tools] perf stat: Fix bug in handling events in error state (Jiri Olsa) [1480522]
-- [tools] perf tools: Pass PYTHON config to feature detection (Jiri Olsa) [1480522]
-- [tools] perf annotate: Use stripped line instead of raw disassemble line (Jiri Olsa) [1480522]
-- [tools] perf annotate: Refactor the code to parse disassemble lines with {l, r}trim() (Jiri Olsa) [1480522]
-- [tools] perf tools: Do not print missing features in pipe-mode (Jiri Olsa) [1480522]
-- [tools] perf session: Don't rely on evlist in pipe mode (Jiri Olsa) [1480522]
-- [tools] perf annotate: Process attr and build_id records (Jiri Olsa) [1480522]
-- [tools] perf tools: Describe pipe mode in perf.data-file-fomat.txt (Jiri Olsa) [1480522]
-- [tools] perf inject: Copy events when reordering events in pipe mode (Jiri Olsa) [1480522]
-- [tools] perf inject: Don't proceed if perf_session__process_event() fails (Jiri Olsa) [1480522]
-- [tools] perf annotate s390: Implement jump types for perf annotate (Jiri Olsa) [1480522]
-- [tools] perf string: Simplify ltrim() implementation (Jiri Olsa) [1480522]
-- [tools] perf tools: Refactor the code to strip command name with {l, r}trim() (Jiri Olsa) [1480522]
-- [tools] perf pmu: Refactor wordwrap() with ltrim() (Jiri Olsa) [1480522]
-- [tools] perf ui browser: Refactor the code to parse color configs with ltrim() (Jiri Olsa) [1480522]
-- [tools] perf stat: Refactor the code to strip csv output with ltrim() (Jiri Olsa) [1480522]
-- [tools] perf evsel: Return exact sub event which failed with EPERM for wildcards (Jiri Olsa) [1480522]
-- [tools] perf script: Use strtok_r() when parsing output field list (Jiri Olsa) [1480522]
-- [tools] perf callchains: Switch from strtok() to strtok_r() when parsing options (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix missing number of samples for source_line_samples (Jiri Olsa) [1480522]
-- [tools] perf tools: Don't die on a print function (Jiri Olsa) [1480522]
-- [tools] perf tools: Handle allocation failures gracefully (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove die() call (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add missing space in json descriptions (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore_arb JSON support (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Skylake client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Broadwell client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Haswell client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Ivy Bridge client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add uncore events for Sandy Bridge client (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Add missing UNC_M_DCLOCKTICKS for Broadwell DE uncore (Jiri Olsa) [1480522]
-- [tools] perf sdt powerpc: Add argument support (Jiri Olsa) [1480522]
-- [tools] perf trace: Beautify statx syscall 'flag' and 'mask' arguments (Jiri Olsa) [1480522]
-- [tools] perf tools: Do not fail in case of empty HOME env variable (Jiri Olsa) [1480522]
-- [tools] tools include uapi: Grab copies of stat.h and fcntl.h (Jiri Olsa) [1480522]
-- [tools] perf utils: fix spelling mistake: "Invalud" -> "Invalid" (Jiri Olsa) [1480522]
-- [tools] perf trace: Handle unpaired raw_syscalls:sys_exit event (Jiri Olsa) [1480522]
-- [tools] perf report: Drop cycles 0 for LBR print (Jiri Olsa) [1480522]
-- [tools] perf/sdt/x86: Move OP parser to tools/perf/arch/x86/ (Jiri Olsa) [1480522]
-- [tools] perf/sdt/x86: Add renaming logic for (missing) 8 bit registers (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove support for command aliases (Jiri Olsa) [1480522]
-- [tools] perf utils: Readlink /proc/self/exe to find the perf binary (Jiri Olsa) [1480522]
-- [tools] perf utils: Null terminate buf in read_ftrace_printk() (Jiri Olsa) [1480522]
-- [tools] perf utils: use sizeof(buf) - 1 in readlink() call (Jiri Olsa) [1480522]
-- [tools] perf tests: Do not assume that readlink() returns a null terminated string (Jiri Olsa) [1480522]
-- [tools] perf test: Add a test case for SDT event (Jiri Olsa) [1480522]
-- [tools] perf buildid: Do not assume that readlink() returns a null terminated string (Jiri Olsa) [1480522]
-- [tools] perf buildid: Do not update SDT cache with null filename (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix a bug of division by zero when calculating percent (Jiri Olsa) [1480522]
-- [tools] perf annotate: Fix a bug following symbolic link of a build-id file (Jiri Olsa) [1480522]
-- [tools] perf report: Enable sorting by srcline as key (Jiri Olsa) [1480522]
-- [tools] perf report: Show inline stack for browser mode (Jiri Olsa) [1480522]
-- [tools] perf report: Show inline stack for stdio mode (Jiri Olsa) [1480522]
-- [tools] perf report: Introduce --inline option (Jiri Olsa) [1480522]
-- [tools] perf report: Find the inline stack for a given address (Jiri Olsa) [1480522]
-- [tools] perf report: Refactor common code in srcline.c (Jiri Olsa) [1480522]
-- [tools] perf tools: Remove unused 'prefix' from builtin functions (Jiri Olsa) [1480522]
-- [tools] perf list sdt: Show option in man page (Jiri Olsa) [1480522]
-- [tools] perf auxtrace: Fix no_size logic in addr_filter__resolve_kernel_syms() (Jiri Olsa) [1480522]
-- [tools] perf trace: Fixup thread refcounting (Jiri Olsa) [1480522]
-- [tools] perf trace: Fix up error path indentation (Jiri Olsa) [1480522]
-- [tools] perf trace: Check for vfs_getname.pathname length (Jiri Olsa) [1480522]
-- [tools] perf list: Move extra details printing to new option (Jiri Olsa) [1480522]
-- [tools] perf pmu: Add support for MetricName JSON attribute (Jiri Olsa) [1480522]
-- [tools] perf list: Support printing MetricExpr with --debug (Jiri Olsa) [1480522]
-- [tools] perf stat: Output JSON MetricExpr metric (Jiri Olsa) [1480522]
-- [tools] perf pmu: Support MetricExpr header in JSON event list (Jiri Olsa) [1480522]
-- [tools] perf vendor events intel: Update Intel uncore JSON event files (Jiri Olsa) [1480522]
-- [tools] perf tools: Add a simple expression parser for JSON (Jiri Olsa) [1480522]
-- [tools] perf pmu: Special case uncore_ prefix (Jiri Olsa) [1480522]
-- [tools] perf pmu: Expand PMU events by prefix match (Jiri Olsa) [1480522]
-- [tools] perf tools: Factor out PMU matching in parser (Jiri Olsa) [1480522]
-- [tools] perf stat: Handle partially bad results with merging (Jiri Olsa) [1480522]
-- [tools] perf stat: Collapse identically named events (Jiri Olsa) [1480522]
-- [tools] perf stat: Factor out callback for collecting event values (Jiri Olsa) [1480522]
-- [tools] perf annotate: Add comment clarifying how the source code line is parsed (Jiri Olsa) [1480522]
-- [tools] perf annotate: More exactly grep -v of the objdump command (Jiri Olsa) [1480522]
-- [tools] perf sdt x86: Add renaming logic for rNN and other registers (Jiri Olsa) [1480522]
-- [tools] perf probe: Add sdt probes arguments into the uprobe cmd string (Jiri Olsa) [1480522]
-- [tools] perf sdt: Add scanning of sdt probes arguments (Jiri Olsa) [1480522]
-- [tools] perf probe: Return errno when not hitting any event (Jiri Olsa) [1480522]
-- [tools] perf probe: Change MAX_CMDLEN (Jiri Olsa) [1480522]
-- [tools] tools headers: Sync {tools/, }arch/powerpc/include/uapi/asm/kvm.h (Jiri Olsa) [1480522]
-- [tools] perf probe: Fix concat_probe_trace_events (Jiri Olsa) [1480522]
-- [tools] perf stat: Correct --no-aggr description (Jiri Olsa) [1480522]
-- [tools] perf tools: Handle partial AUX records and print a warning (Jiri Olsa) [1480522]
-- [tools] tools include: Sync {, tools/}include/uapi/linux/perf_event.h (Jiri Olsa) [1480522]
-- [tools] tools lib api fs: Introduce sysfs__read_bool (Jiri Olsa) [1480522]
-- [tools] perf timechart: Use OPT_PARENT for common options (Jiri Olsa) [1480522]
-- [tools] perf lock: Make 'f' part of the common 'lock_options' (Jiri Olsa) [1480522]
-- [tools] perf lock: Subcommands should include common options (Jiri Olsa) [1480522]
-- [tools] perf script: Add 'brstackinsn' for branch stacks (Jiri Olsa) [1480522]
-- [tools] perf tools: Make perf_event__synthesize_mmap_events() scale (Jiri Olsa) [1480522]
-- [tools] perf probe: Introduce util func is_sdt_event() (Jiri Olsa) [1480522]
-- [tools] perf powerpc: Choose local entry point with kretprobes (Jiri Olsa) [1480522]
-- [tools] perf kretprobes: Offset from reloc_sym if kernel supports it (Jiri Olsa) [1480522]
-- [tools] perf probe: Factor out the ftrace README scanning (Jiri Olsa) [1480522]
-- [tools] perf sched timehist: Add --next option (Jiri Olsa) [1480522]
-- [tools] perf hists browser: Fix typo in function switch_data_file (Jiri Olsa) [1480522]
-- [tools] perf report: Document +field style argument support for --field option (Jiri Olsa) [1480522]
-- [tools] perf sort: Fix segfault with basic block 'cycles' sort dimension (Jiri Olsa) [1480522]
-- [tools] perf tools: Ignore generated files pmu-events/{jevents, pmu-events.c} for git (Jiri Olsa) [1480522]
-- [tools] perf tools: Missing c2c command in command-list (Jiri Olsa) [1480522]
-- [tools] perf c2c: Fix display bug when using pipe (Jiri Olsa) [1480522]
-- [tools] perf c2c: Clarify help message of --stats option (Jiri Olsa) [1480522]
-- [tools] perf report: Hide tip message when -q option is given (Jiri Olsa) [1480522]
-- [tools] tools build: Use the same CC for feature detection and actual build (Jiri Olsa) [1480522]
-- [tools] perf bench futex: Fix build on musl + clang (Jiri Olsa) [1480522]
-- [tools] perf bench futex: Use __maybe_unused (Jiri Olsa) [1480522]
-- [tools] tools build: Add test for sched_getcpu() (Jiri Olsa) [1480522]
-- [tools] perf tools: Force uncore events to system wide monitoring (Jiri Olsa) [1480522]
-- [tools] perf intel-pt/bts: Add missing initialization (Jiri Olsa) [1480522]
-- [tools] perf probe: Generalize probe event file open routine (Jiri Olsa) [1480522]
-- [tools] perf ftrace: Use pager for displaying result (Jiri Olsa) [1480522]
-- [tools] perf ftrace: Add support for -a and -C option (Jiri Olsa) [1480522]
-- [tools] perf cpumap: Introduce cpu_map__snprint_mask() (Jiri Olsa) [1480522]
-- [tools] perf ftrace: Add support for --pid option (Jiri Olsa) [1480522]
-- [tools] perf tools: Allow sorting by symbol size (Jiri Olsa) [1480522]
-- [tools] perf evlist: Clarify a bit the use of perf_mmap->refcnt (Jiri Olsa) [1480522]
-- [tools] perf thread_map: Convert thread_map.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf thread: convert thread.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf evlist: Convert perf_map.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf map: Convert map_groups.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf map: Convert map.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf dso: Convert dso.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf comm: Convert comm_str.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf cpumap: Convert cpu_map.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] perf cgroup: Convert cgroup_sel.refcnt from atomic_t to refcount_t (Jiri Olsa) [1480522]
-- [tools] tools include: Adopt kernel's refcount.h (Jiri Olsa) [1480522]
-- [tools] tools include: Add UINT_MAX def to kernel.h (Jiri Olsa) [1480522]
-- [tools] tools include: Provide gcc based cmpxchg fallback for !x86 (Jiri Olsa) [1480522]
-- [tools] tools include: Introduce atomic_cmpxchg_{relaxed, release}() (Jiri Olsa) [1480522]
-- [tools] tools arch x86: Introduce atomic_cmpxchg() (Jiri Olsa) [1480522]
-- [tools] tools arch x86: Include asm/cmpxchg.h (Jiri Olsa) [1480522]
-- [tools] tools include: Adopt __compiletime_error (Jiri Olsa) [1480522]
-- [tools] perf stat: Issue a HW watchdog disable hint (Jiri Olsa) [1480522]
-- [tools] perf vendor events: Add mapping for KnightsMill PMU events (Jiri Olsa) [1480522]
-- [x86] perf/x86/intel: Add 1G DTLB load/store miss support for SKL (Jiri Olsa) [1480522]
-- [kernel] perf/aux: Correct return code of rb_alloc_aux() if !has_aux(ev) (Jiri Olsa) [1480522]
-- [kernel] perf/callchain: Force USER_DS when invoking perf_callchain_user() (Jiri Olsa) [1480522]
-- [x86] perf/x86: Fix Broadwell-EP DRAM RAPL events (Jiri Olsa) [1480522]
-- [x86] perf/x86: Fix spurious NMI with PEBS Load Latency event (Jiri Olsa) [1480522]
-- [x86] perf/x86/intel/pt: Allow the disabling of branch tracing (Jiri Olsa) [1480522]
-- [x86] perf/x86/intel/pt: Handle VMX better (Jiri Olsa) [1480522]
-- [kernel] perf/core: Add a flag for partial AUX records (Jiri Olsa) [1480522]
-- [kernel] perf/core: Keep AUX flags in the output handle (Jiri Olsa) [1480522]
-- [x86] perf/x86: Add Top Down events to Intel Goldmont (Jiri Olsa) [1480522]
-
-* Thu Sep 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-718.el7]
-- [x86] kvm, pkeys: do not use PKRU value in vcpu->arch.guest_fpu.state (Paul Lai) [1387360]
-- [x86] kvm: x86: simplify handling of PKRU (Paul Lai) [1387360]
-- [x86] kvm: x86: block guest protection keys unless the host has them enabled (Paul Lai) [1387360]
-- [x86] kvm, pkeys: expose CPUID/CR4 to guest (Paul Lai) [1387360]
-- [x86] kvm, pkeys: add pkeys support for permission_fault (Paul Lai) [1387360]
-- [x86] kvm, pkeys: introduce pkru_mask to cache conditions (Paul Lai) [1387360]
-- [x86] kvm, pkeys: save/restore PKRU when guest/host switches (Paul Lai) [1387360]
-- [x86] kvm, pkeys: add pkeys support for xsave state (Paul Lai) [1387360]
-- [x86] kvm, pkeys: disable pkeys for guests in non-paging mode (Paul Lai) [1387360]
-- [x86] kvm: x86: remove magic number with enum cpuid_leafs (Paul Lai) [1387360]
-- [x86] kvm: mmu: return page fault error code from permission_fault (Paul Lai) [1387360]
-- [kernel] s390/mm: simplify arch_get_unmapped_area[_topdown] (Adrian Reber) [1466682]
-- [kernel] s390/mm: make TASK_SIZE independent from the number of page table levels (Adrian Reber) [1466682]
-- [kernel] s390: wire up separate socketcalls system calls (Adrian Reber) [1466682]
-- [kernel] s390: wire up memfd_create syscall (Adrian Reber) [1466682]
-- [kernel] s390/gup: handle zero nr_pages case correctly (Adrian Reber) [1466682]
-- [kernel] s390: TASK_SIZE for kernel threads (Adrian Reber) [1466682]
-- [netdrv] ena: implement RHEL7.5 version of change_mtu (John Linville) [1478896]
-- [netdrv] ena: update ena driver to version 1.2.0 (John Linville) [1478896]
-- [netdrv] ena: update driver's rx drop statistics (John Linville) [1478896]
-- [netdrv] ena: use lower_32_bits()/upper_32_bits() to split dma address (John Linville) [1478896]
-- [netdrv] ena: separate skb allocation to dedicated function (John Linville) [1478896]
-- [netdrv] ena: use napi_schedule_irqoff when possible (John Linville) [1478896]
-- [netdrv] ena: add support for out of order rx buffers refill (John Linville) [1478896]
-- [netdrv] ena: add reset reason for each device FLR (John Linville) [1478896]
-- [netdrv] ena: change sizeof() argument to be the type pointer (John Linville) [1478896]
-- [netdrv] ena: add hardware hints capability to the driver (John Linville) [1478896]
-- [netdrv] ena: change return value for unsupported features unsupported return value (John Linville) [1478896]
-- [netdrv] ena: update ena driver to version 1.1.7 (John Linville) [1478896]
-- [netdrv] ena: bug fix in lost tx packets detection mechanism (John Linville) [1478896]
-- [netdrv] ena: disable admin msix while working in polling mode (John Linville) [1478896]
-- [netdrv] ena: fix theoretical Rx hang on low memory systems (John Linville) [1478896]
-- [netdrv] ena: add missing unmap bars on device removal (John Linville) [1478896]
-- [netdrv] ena: fix race condition between submit and completion admin command (John Linville) [1478896]
-- [netdrv] ena: add missing return when ena_com_get_io_handlers() fails (John Linville) [1478896]
-- [netdrv] ena: fix bug that might cause hang after consecutive open/close interface (John Linville) [1478896]
-- [netdrv] ena: fix rare uncompleted admin command false alarm (John Linville) [1478896]
-- [netdrv] ena: remove superfluous check in ena_remove() (John Linville) [1478896]
-- [netdrv] ena: update driver version to 1.1.2 (John Linville) [1478896]
-- [netdrv] ena: change condition for host attribute configuration (John Linville) [1478896]
-- [netdrv] ena: change driver's default timeouts (John Linville) [1478896]
-- [netdrv] ena: reduce the severity of ena printouts (John Linville) [1478896]
-- [netdrv] ena: use READ_ONCE to access completion descriptors (John Linville) [1478896]
-- [netdrv] ena: fix potential access to freed memory during device reset (John Linville) [1478896]
-- [netdrv] ena: refactor ena_get_stats64 to be atomic context safe (John Linville) [1478896]
-- [netdrv] ena: fix NULL dereference when removing the driver after device reset failed (John Linville) [1478896]
-- [netdrv] ena: fix RSS default hash configuration (John Linville) [1478896]
-- [netdrv] ena: fix ethtool RSS flow configuration (John Linville) [1478896]
-- [netdrv] ena: fix queues number calculation (John Linville) [1478896]
-- [netdrv] ena: remove ntuple filter support from device feature list (John Linville) [1478896]
-- [netdrv] ena: use setup_timer() and mod_timer() (John Linville) [1478896]
-
-* Thu Sep 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-717.el7]
-- [fs] vfs: clear remainder of 'full_fds_bits' in dup_fd() (Mateusz Guzik) [1462034]
-- [fs] vfs: Fix pathological performance case for __alloc_fd() (Mateusz Guzik) [1462034]
-- [fs] vfs: conditionally clear close-on-exec flag (Mateusz Guzik) [1462034]
-- [fs] file.c: don't acquire files->file_lock in fd_install() (Mateusz Guzik) [1462034]
-- [fs] gfs2: Fix debugfs glocks dump (Andreas Grunbacher) [1493067]
-- [fs] gfs2: Replace rhashtable_walk_init with rhashtable_walk_enter (Andreas Grunbacher) [1493067]
-- [fs] gfs2: Deduplicate gfs2_{glocks,glstats}_open (Andreas Grunbacher) [1493067]
-- [net] remove explicit do_softirq() from busy_poll_stop() (Ivan Vecera) [1489406]
-- [net] Busy polling should ignore sender CPUs (Ivan Vecera) [1489406]
-- [net] solve a NAPI race (Ivan Vecera) [1489406]
-- [net] napi_watchdog() can use napi_schedule_irqoff() (Ivan Vecera) [1489406]
-- [net] remove __napi_complete() (Ivan Vecera) [1489406]
-- [net] netpoll: more efficient locking (Ivan Vecera) [1489406]
-- [net] busy-poll: return busypolling status to drivers (Ivan Vecera) [1489406]
-- [net] busy-poll: remove need_resched() from sk_can_busy_loop() (Ivan Vecera) [1489406]
-- [net] busy-poll: allow preemption in sk_busy_loop() (Ivan Vecera) [1489406]
-- [net] netpoll: Drop budget parameter from NAPI polling call hierarchy (Ivan Vecera) [1489406]
-- [net] netpoll: Close race condition between poll_one_napi and napi_disable (Ivan Vecera) [1489406]
-- [net] ip6_gre: update mtu properly in ip6gre_err (Xin Long) [1487475]
-- [net] sctp: fix missing wake ups in some situations (Marcelo Leitner) [1442784]
-- [net] tcp: don't annotate mark on control socket from tcp_v6_send_response() (Matteo Croce) [1469857]
-- [net] netfilter: use fwmark_reflect in nf_send_reset (Matteo Croce) [1469857]
-- [net] tcp: fix mark propagation with fwmark_reflect enabled (Matteo Croce) [1469857]
-- [net] Documentation: Add missing descriptions for fwmark_reflect for ipv4 and ipv6 (Matteo Croce) [1469857]
-- [net] ipv6: data of fwmark_reflect sysctl needs to be updated on netns construction (Matteo Croce) [1469857]
-- [net] Use fwmark reflection in PMTU discovery (Matteo Croce) [1469857]
-- [net] add a sysctl to reflect the fwmark on replies (Matteo Croce) [1469857]
-- [net] team: fix memory leaks (Matteo Croce) [1448266]
-- [net] ipv6: accept 64k - 1 packet length in ip6_find_1stfragopt() (Stefano Brivio) [1477010] {CVE-2017-7542}
-- [net] ipv6: avoid overflow of offset in ip6_find_1stfragopt (Sabrina Dubroca) [1477010] {CVE-2017-7542}
-- [scsi] ses: Fix wrong page error (Maurizio Lombardi) [1380720]
-- [scsi] ses: make page2 support optional (Maurizio Lombardi) [1380720]
-- [scsi] ses: Fixup error message 'failed to get diagnostic page 0xffffffea' (Maurizio Lombardi) [1380720]
-- [scsi] ses: check return code from ses_recv_diag() (Maurizio Lombardi) [1380720]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: call megasas_dump_frame with correct IO frame size (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: modified few prints in OCR and IOC INIT path (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: replace internal FALSE/TRUE definitions with false/true (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Return pended IOCTLs with cmd_status MFI_STAT_WRONG_STATE in case adapter is dead (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: use vmalloc for crash dump buffers and driver's local RAID map (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Use SMID for Task abort case only (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Check valid aen class range to avoid kernel panic (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Fix endianness issues in DCMD handling (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Do not re-fire shutdown DCMD after OCR (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Call megasas_complete_cmd_dpc_fusion every 1 second while there are pending commands (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: Use synchronize_irq in target reset case (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: set minimum value of resetwaittime to be 1 secs (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: mismatch of allocated MFI frame size and length exposed in MFI MPT pass through command (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: fix allocate instance->pd_info twice (Tomas Henzl) [1458133]
-- [scsi] megaraid: remove DRIVER_ATTR() usage (Tomas Henzl) [1458133]
-- [scsi] megaraid: Replace PCI pool old API (Tomas Henzl) [1458133]
-- [scsi] megaraid_sas: fix memleak in megasas_alloc_cmdlist_fusion (Tomas Henzl) [1458133]
-- [scsi] megaraid: remove expensive inline from megasas_return_cmd (Tomas Henzl) [1458133]
-- [scsi] qedi: off by one in qedi_get_cmd_from_tid() (Chad Dupuis) [1461962]
-- [scsi] qedi: Limit number for CQ queues (Chad Dupuis) [1461962]
-- [scsi] qedi: Fix return code in qedi_ep_connect() (Chad Dupuis) [1461962]
-- [scsi] qedi: Add ISCSI_BOOT_SYSFS to Kconfig (Chad Dupuis) [1461962]
-- [scsi] qedi: fix another spelling mistake: "alloction" -> "allocation" (Chad Dupuis) [1461962]
-- [scsi] qedf: drop bus reset handler (Chad Dupuis) [1461960]
-- [scsi] qedf: Update driver version to 8.20.5.0 (Chad Dupuis) [1461960]
-- [scsi] qedf: Fix up modinfo parameter name for 'debug' in modinfo output (Chad Dupuis) [1461960]
-- [scsi] qedf: Covert single-threaded workqueues to regular workqueues (Chad Dupuis) [1461960]
-- [scsi] qedf: Corrent VLAN tag insertion in fallback VLAN case (Chad Dupuis) [1461960]
-- [scsi] qedf: Use granted MAC from the FCF for the FCoE source address if it is available (Chad Dupuis) [1461960]
-- [scsi] qedf: Set WWNN and WWPN based on values from qed (Chad Dupuis) [1461960]
-- [scsi] qedf: fix spelling mistake: "offlading" -> "offloading" (Chad Dupuis) [1461960]
-- [scsi] qedf: Merge a few quoted strings split across lines (Chad Dupuis) [1461960]
-- [scsi] qedf: Use 'dma_zalloc_coherent' to reduce code verbosity (Chad Dupuis) [1461960]
-- [scsi] qedf: Fix a return value in case of error in 'qedf_alloc_global_queues' (Chad Dupuis) [1461960]
-- [scsi] qedf: Check if sense buffer has been allocated during completion (Chad Dupuis) [1461960]
-- [scsi] qedf: Update version number to 8.18.22.0 (Chad Dupuis) [1461960]
-- [scsi] qedf: Add change_queue_depth member to scsi_host_template() (Chad Dupuis) [1461960]
-- [scsi] qedf: Change cmd_per_lun in scsi_host_template to 32 to increase performance (Chad Dupuis) [1461960]
-- [scsi] qedf: Move some prints to a debug level so they do not print when no debugging is enabled (Chad Dupuis) [1461960]
-- [scsi] qedf: Fixup unnecessary parantheses around test_bit operations (Chad Dupuis) [1461960]
-- [scsi] qedf: Add non-offload receive filters (Chad Dupuis) [1461960]
-- [scsi] qedf: Add bus_reset No-op (Chad Dupuis) [1461960]
-- [scsi] qedf: Use same logic for SCSI host reset and FC lip_reset (Chad Dupuis) [1461960]
-- [scsi] qedf: Set qed logging level to QED_LEVEL_NOTICE (Chad Dupuis) [1461960]
-- [scsi] qedf: Add fka_period SCSI host attribute to show fip keep alive period (Chad Dupuis) [1461960]
-- [scsi] qedf: Check that fcport is offloaded before dereferencing pointers in initiate_abts|cleanup (Chad Dupuis) [1461960]
-- [scsi] qedf: Look at all descriptors when processing a clear virtual link (Chad Dupuis) [1461960]
-- [scsi] qedf: Honor qed_ops->common->set_fp_int() return code (Chad Dupuis) [1461960]
-- [scsi] qedf: Update copyright to 2017 (Chad Dupuis) [1461960]
-- [scsi] qedf: Enable basic FDMI information (Chad Dupuis) [1461960]
-- [scsi] qedf: Avoid reading past end of buffer (Chad Dupuis) [1461960]
-- [scsi] qedf: Cleanup the type of io_log->op (Chad Dupuis) [1461960]
-- [scsi] qedf: properly update arguments position in function call (Chad Dupuis) [1461960]
-- [scsi] qedi: qedf: Use designated initializers (Chad Dupuis) [1461960]
-- [scsi] qedf: Fix crash due to unsolicited FIP VLAN response (Chad Dupuis) [1461960]
-- [scsi] qedf: Use vsprintf extension pad (Chad Dupuis) [1461960]
-
-* Wed Sep 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-716.el7]
-- [block] blk_mq: linux/blk-mq.h does not include all the headers it depends on (Ming Lei) [1389540 1458104]
-- [block] blk-mq: kill unused blk_mq_create_mq_map() (Ming Lei) [1389540 1458104]
-- [kernel] blk-mq: get rid of the cpumask in struct blk_mq_tags (Ming Lei) [1389540 1458104]
-- [nvme] remove the post_scan callout (Ming Lei) [1389540]
-- [nvme] switch to use pci_alloc_irq_vectors (Ming Lei) [1389540]
-- [kernel] blk-mq: provide a default queue mapping for PCI device (Ming Lei) [1389540 1458104]
-- [kernel] blk-mq: remove ->map_queue (Ming Lei) [1389540 1458104]
-- [block] blk-mq: really fix plug list flushing for nomerge queues (Ming Lei) [1389540 1458104]
-- [block] fix plug list flushing for nomerge queues (Ming Lei) [1389540 1458104]
-- [block] blk-mq: free hctx->ctxs in queue's release handler (Ming Lei) [1389540 1458104]
-- [kernel] blk-mq: fix iteration of busy bitmap (Ming Lei) [1389540 1458104]
-- [block] blk-mq: reduce unnecessary software queue looping (Ming Lei) [1389540 1458104]
-- [kernel] genirq/affinity: Fix calculating vectors to assign (Ming Lei) [1389540]
-- [kernel] irq/affinity: Fix extra vecs calculation (Ming Lei) [1389540]
-- [kernel] irq/affinity: Fix CPU spread for unbalanced nodes (Ming Lei) [1389540]
-- [pci] msi: Update MSI/MSI-X bits in PCIEBUS-HOWTO (Ming Lei) [1389540]
-- [pci] msi: Document pci_alloc_irq_vectors(), deprecate pci_enable_msi() (Ming Lei) [1389540]
-- [pci] msi: Return -ENOSPC if pci_enable_msi_range() can't get enough vectors (Ming Lei) [1389540]
-- [pci] portdrv: Use pci_irq_alloc_vectors() (Ming Lei) [1389540]
-- [pci] msi: Check that we have a legacy interrupt line before using it (Ming Lei) [1389540]
-- [pci] msi: Return failure when msix_setup_entries() fails (Ming Lei) [1389540]
-- [netdrv] amd-xgbe: Update PCI support to use new IRQ functions (Ming Lei) [1389540]
-- [pci] msi: Fix msi_capability_init() kernel-doc warnings (Ming Lei) [1389540]
-- [pci] msi: Don't apply affinity if there aren't enough vectors left (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Fix node generation from cpumask (Ming Lei) [1389540]
-- [pci] msi: Check for NULL affinity mask in pci_irq_get_affinity() (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Use default affinity mask for reserved vectors (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Take reserved vectors into account when spreading irqs (Ming Lei) [1389540]
-- [kernel] pci: Remove the irq_affinity mask from struct pci_dev (Ming Lei) [1389540]
-- [kernel] pci/msi: Provide pci_alloc_irq_vectors_affinity() (Ming Lei) [1389540]
-- [pci] msi: Propagate IRQ affinity description through the MSI code (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Handle pre/post vectors in irq_create_affinity_masks() (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Handle pre/post vectors in irq_calc_affinity_vectors() (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Introduce struct irq_affinity (Ming Lei) [1389540]
-- [pci] doc: Add missing parameter for msi_setup (Ming Lei) [1389540]
-- [kernel] pci/msi: Retrieve affinity for a vector (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Remove old irq spread infrastructure (Ming Lei) [1389540]
-- [kernel] genirq/msi: Switch to new irq spreading infrastructure (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Provide smarter irq spreading infrastructure (Ming Lei) [1389540]
-- [kernel] genirq/msi: Add cpumask allocation to alloc_msi_entry (Ming Lei) [1389540]
-- [pci] Call pci_intx() when using legacy interrupts in pci_alloc_irq_vectors() (Ming Lei) [1389540]
-- [kernel] pci: Use positive flags in pci_alloc_irq_vectors() (Ming Lei) [1389540]
-- [kernel] genirq/affinity: Use get/put_online_cpus around cpumask operations (Ming Lei) [1389540]
-- [kernel] pci: Spread interrupt vectors in pci_alloc_irq_vectors() (Ming Lei) [1389540]
-- [kernel] pci: Provide sensible IRQ vector alloc/free routines (Ming Lei) [1389540]
-- [pci] Make the "entries" argument to pci_enable_msix() optional (Ming Lei) [1389540]
-- [pci] Switch msix_program_entries() to use pci_msix_desc_addr() (Ming Lei) [1389540]
-- [pci] Add pci_msix_desc_addr() helper (Ming Lei) [1389540]
-- [kernel] genirq: Add a helper to spread an affinity mask for MSI/MSI-X vectors (Ming Lei) [1389540]
-- [kernel] genirq/msi: Make use of affinity aware allocations (Ming Lei) [1389540]
-- [kernel] genirq: introduce _affinity version of irq_alloc_hwirq (Ming Lei) [1389540]
-- [kernel] genirq: Use affinity hint in irqdesc allocation (Ming Lei) [1389540]
-- [kernel] genirq: Add affinity hint to irq allocation (Ming Lei) [1389540]
-- [kernel] genirq: Introduce IRQD_AFFINITY_MANAGED flag (Ming Lei) [1389540]
-- [kernel] genirq: Provide and use __irq_can_set_affinity() (Ming Lei) [1389540]
-
-* Fri Sep 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-715.el7]
-- [fs] pnfs: Fix a deadlock between read resends and layoutreturn (Steve Dickson) [1477350]
-- [fs] pnfs: Ensure LAYOUTGET and LAYOUTRETURN are properly serialised (Steve Dickson) [1477343]
-- [fs] nfsv4.1: Fix regression in callback retry handling (Steve Dickson) [1477306]
-- [fs] nfsv4: Ensure we don't re-test revoked and freed stateids (Dave Wysochanski) [1459733]
-- [fs] nfsd: Limit end of page list when decoding NFSv4 WRITE ("J. Bruce Fields") [1485509]
-- [fs] xfs: stop searching for free slots in an inode chunk when there are none (Carlos Maiolino) [1472639]
-- [fs] xfs: remove bli from AIL before release on transaction abort (Bill O'Donnell) [1428663]
-- [fs] xfs: release bli from transaction properly on fs shutdown (Bill O'Donnell) [1428663]
-- [fs] gfs2: Fix non-recursive truncate bug (Robert S Peterson) [1486061]
-- [fs] ext4: drop the EXT4_STATE_DELALLOC_RESERVED flag (Lukas Czerner) [1433215]
-- [fs] ext4: prepare to drop EXT4_STATE_DELALLOC_RESERVED (Lukas Czerner) [1433215]
-- [fs] ext4: pass allocation_request struct to ext4_(alloc, splice)_branch (Lukas Czerner) [1433215]
-- [fs] cifs: Fix null pointer deref during read resp processing (Sachin Prabhu) [1429710]
-- [fs] cifs: Fix possible use after free in demultiplex thread (Sachin Prabhu) [1429710]
-- [fs] cifs: Allow to switch on encryption with seal mount option (Sachin Prabhu) [1429710]
-- [fs] cifs: RHEL 7 Changes to replace bvec iter (Sachin Prabhu) [1429710]
-- [fs] cifs: Add capability to decrypt big read responses (Sachin Prabhu) [1429710]
-- [fs] cifs: Add a modified cifs_read_page_from_socket() (Sachin Prabhu) [1429710]
-- [fs] cifs: RHEL 7 Changes to replace kvec iter (Sachin Prabhu) [1429710]
-- [fs] cifs: Decrypt and process small encrypted packets (Sachin Prabhu) [1429710]
-- [fs] cifs: Add copy into pages callback for a read operation (Sachin Prabhu) [1429710]
-- [fs] cifs: Add mid handle callback (Sachin Prabhu) [1429710]
-- [fs] cifs: Add transform header handling callbacks (Sachin Prabhu) [1429710]
-- [fs] cifs: RHEL 7 modifications for aead differences (Sachin Prabhu) [1429710]
-- [fs] cifs: Encrypt SMB3 requests before sending (Sachin Prabhu) [1429710]
-- [fs] cifs: Enable encryption during session setup phase (Sachin Prabhu) [1429710]
-- [fs] cifs: Add capability to transform requests before sending (Sachin Prabhu) [1429710]
-- [fs] cifs: Separate RFC1001 length processing for SMB2 read (Sachin Prabhu) [1429710]
-- [fs] cifs: Separate SMB2 sync header processing (Sachin Prabhu) [1429710]
-- [fs] cifs: Send RFC1001 length in a separate iov (Sachin Prabhu) [1429710]
-- [fs] cifs: Make send_cancel take rqst as argument (Sachin Prabhu) [1429710]
-- [fs] cifs: Make SendReceive2() takes resp iov (Sachin Prabhu) [1429710]
-- [fs] cifs: Separate SMB2 header structure (Sachin Prabhu) [1429710]
-- [fs] cifs: Add soft dependencies (Sachin Prabhu) [1429710]
-- [fs] cifs: Only select the required crypto modules (Sachin Prabhu) [1429710]
-- [fs] cifs: Simplify SMB2 and SMB311 dependencies (Sachin Prabhu) [1429710]
-- [fs] Fix default behaviour for empty domains and add domainauto option (Sachin Prabhu) [1429710]
-- [fs] cifs: use 16phN for formatting md5 sum (Sachin Prabhu) [1429710]
-- [fs] cifs_readv_receive: use cifs_read_from_socket() (Sachin Prabhu) [1429710]
-- [fs] cifs: merge the hash calculation helpers (Sachin Prabhu) [1429710]
-- [fs] cifs: Check for timeout on Negotiate stage (Leif Sahlberg) [1426555]
-- [fs] cifs: Fix df output for users with quota limits (Leif Sahlberg) [1464155]
-
-* Thu Sep 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-714.el7]
-- [infiniband] ib/vmw_pvrdma: Fix incorrect cleanup on pvrdma_pci_probe error path (Don Dutile) [1454965]
-- [infiniband] ib/vmw_pvrdma: Don't leak info from alloc_ucontext (Don Dutile) [1454965]
-- [kernel] vmxnet3: Move PCI Id to pci_ids.h (Don Dutile) [1454965]
-- [pinctrl] intel: Add Intel Cannon Lake PCH-H pin controller support (David Arcari) [1457654]
-- [pinctrl] intel: Add Intel Cannon Lake PCH pin controller support (David Arcari) [1457654]
-- [pinctrl] intel: Make it possible to specify mode per pin in a group (David Arcari) [1457654]
-- [pinctrl] intel: Add support for variable size pad groups (David Arcari) [1457654]
-- [pinctrl] intel: unlock on error in intel_config_set_pull() (David Arcari) [1457654]
-- [pinctrl] intel: Add support for 1k additional pull-down (David Arcari) [1457654]
-- [pinctrl] intel: Add support for hardware debouncer (David Arcari) [1457654]
-- [kernel] pinctrl / gpio: Introduce .set_config() callback for GPIO chips (David Arcari) [1457654]
-- [kernel] pinctrl: Allow configuration of pins from gpiolib based drivers (David Arcari) [1457654]
-- [vhost] vhost_net: correctly check tx avail during rx busy polling (Jason Wang) [1487551]
-- [tools] power/cpupower: allow running without cpu0 (Prarit Bhargava) [1375782]
-- [xen] balloon: don't online new memory initially (Vitaly Kuznetsov) [1490770]
-- [kernel] audit: unswing cap_* fields in PATH records (Richard Guy Briggs) [1465558]
-- [kernel] module: keep percpu symbols in module's symtab (Joe Lawrence) [1451907]
-- [security] selinux: remove AVC init audit log message (Richard Guy Briggs) [1465625]
-
-* Thu Sep 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-713.el7]
-- [s390] syscalls: Fix out of bounds arguments access (Jiri Olsa) [1436323]
-- [x86] ras/therm_throt: Do not log a fake MCE for thermal events (Prarit Bhargava) [1465345]
-- [x86] early_ioremap: Increase FIX_BTMAPS_SLOTS to 8 (Lenny Szubowicz) [1487221]
-- [pci] Identify Enhanced Allocation (EA) BAR Equivalent resources in sysfs (Myron Stowe) [1489540]
-- [pci] Use cached copy of PCI_EXP_SLTCAP_HPC bit (Myron Stowe) [1489540]
-- [pci] Supply CPU physical address (not bus address) to iomem_is_exclusive() (Myron Stowe) [1489540]
-- [pci] Add Downstream Port Containment driver (Myron Stowe) [1489540]
-- [pci] Add Downstream Port Containment portdrv service type (Myron Stowe) [1489540]
-- [pci] Widen portdrv service type from 4 bits to 8 bits (Myron Stowe) [1489540]
-- [pci] Fix spelling errors (Myron Stowe) [1489540]
-- [pci] pci: acpiphp_ibm: Avoid uninitialized variable reference (Myron Stowe) [1489540]
-- [pci] pci: Refine PCI support check in pcibios_init() (Myron Stowe) [1489540]
-- [netdrv] fm10k: do not enqueue mailbox when host not ready (Neil Horman) [1454908]
-- [netdrv] fm10k: disable receive queue when configuring ring (Neil Horman) [1454908]
-- [netdrv] fm10k: update function header comment for fm10k_get_stats64 (Neil Horman) [1454908]
-- [netdrv] fm10k: allow service task to reschedule itself (Neil Horman) [1454908]
-- [netdrv] fm10k: future-proof state bitmaps using DECLARE_BITMAP (Neil Horman) [1454908]
-- [netdrv] fm10k: use a BITMAP for flags to avoid race conditions (Neil Horman) [1454908]
-- [netdrv] fm10k: correctly check if interface is removed (Neil Horman) [1454908]
-- [netdrv] fm10k: remove FM10K_FLAG_DEBUG_STATS (Neil Horman) [1454908]
-- [netdrv] fm10k: report the receive timestamp in FM10K_CB(skb)->tstamp (Neil Horman) [1454908]
-- [netdrv] fm10k: Limit dma sync of RX buffers to actual packet size (Neil Horman) [1454908]
-- [netdrv] fm10k: bump version number (Neil Horman) [1454908]
-- [netdrv] fm10k: do not clear global mailbox interrupt bits (Neil Horman) [1454908]
-- [netdrv] fm10k: request reset when mbx->state changes (Neil Horman) [1454908]
-- [netdrv] fm10k: remove extraneous variable definition in fm10k_ethtool.c (Neil Horman) [1454908]
-- [netdrv] fm10k-shared: use mac-> instead of hw->mac (Neil Horman) [1454908]
-- [netdrv] i40e: point wb_desc at the nvm_wb_desc during i40e_read_nvm_aq (Stefan Assmann) [1484232]
-- [netdrv] i40e: avoid NVM acquire deadlock during NVM update (Stefan Assmann) [1484232]
-- [netdrv] cxgb4vf: Initialize mdio_addr before using it (Arjun Vynipadath) [1458299]
-- [target] fix SAM_STAT_BUSY/TASK_SET_FULL handling (Mike Christie) [1480052]
-- [target] do not require a transport_complete for SCF_TRANSPORT_TASK_SENSE (Mike Christie) [1412979]
-- [tcmu] fix sense handling during completion (Mike Christie) [1412979]
-- [tcmu] target: add helper to copy sense to se_cmd buffer (Mike Christie) [1412979]
-- [tcmu] export alua support in configfs (Mike Christie) [1469773]
-- [net] l2cap: prevent stack overflow on incoming bluetooth packet (Neil Horman) [1489789] {CVE-2017-1000251}
-- [lib] rbtree: Make lockless searches non-fatal (Waiman Long) [1472994]
-
-* Wed Sep 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-712.el7]
-- [cpufreq] intel_pstate: Correct the busy calculation for KNL (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix ratio setting for min_perf_pct (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: constify attribute_group structures (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: skip scheduler hook when in "performance" mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Remove max/min fractions to limit performance (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid division by 0 in min_perf_pct_min() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: use updated msr-index.h HWP.EPP values (Prarit Bhargava) [1465349]
-- [x86] msr-index.h: define HWP.EPP values (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Eliminate intel_pstate_get_min_max() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not walk policy->cpus (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Drop struct cpu_defaults (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Modify check in intel_pstate_update_status() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Drop driver_registered variable (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Skip unnecessary PID resets on init (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Set HWP sampling interval once (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clean up intel_pstate_busy_pid_reset() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fold intel_pstate_reset_all_pid() into the caller (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Initialize pid_params statically (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Drop pointless initialization of PID parameters (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Eliminate struct perf_limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid transient updates of cpuinfo.max_freq (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Active mode P-state limits rework (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use load-based P-state selection more widely (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Support HWP processors in all operation modes (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix policy data management in passive mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: One set of global limits in active mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid percentages in limits-related computations (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Correct frequency setting in the HWP mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Update pid_params.sample_rate_ns in pid_param_set() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Drop redundant wrapper function (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not reinit performance limits in ->setpolicy (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix intel_pstate_verify_policy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix global settings in active mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid triggering cpu_frequency tracepoint unnecessarily (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix intel_cpufreq_verify_policy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not use performance_limits in passive mode (Prarit Bhargava) [1465349]
-- [kernel] sched/headers: Prepare for new header dependencies before moving code to <linux/sched/cpufreq.h> (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix limits issue with operation mode switching (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Calculate guaranteed performance for HWP (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Make HWP limits compatible with legacy (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Lower frequency than expected under no_turbo (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Operation mode control from sysfs (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Expose global sysfs attributes upfront (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix sysfs limits enforcement for performance policy (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Always keep all limits settings in sync (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use locking in intel_cpufreq_verify_policy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use locking in intel_pstate_resume() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not expose PID parameters in passive mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Support for energy performance hints with HWP (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Add locking around HWP requests (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: fix intel_pstate_exit_perf_limits() prototype (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Set EPP/EPB to 0 in performance mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: increase precision of performance limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: round up min_perf limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Generic governors support (Prarit Bhargava) [1465349]
-- [kernel] cpufreq: Support for fast frequency switching (Prarit Bhargava) [1465349]
-- [cpufreq] acpi-cpufreq: Make read and write operations more efficient (Prarit Bhargava) [1465349]
-- [cpufreq] Introduce cpufreq_start_governor() (Prarit Bhargava) [1465349]
-- [cpufreq] Rename __cpufreq_governor() to cpufreq_governor() (Prarit Bhargava) [1465349]
-- [acpi] cpufreq: intel_pstate: Request P-states control from SMM if needed (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use CPU load based algorithm for PM_MOBILE (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: protect limits variable (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Reduce impact due to rounding error (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Per CPU P-State limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Always set max P-state in performance mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Set P-state upfront in performance mode (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Remove PID debugfs when not used (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix struct pstate_adjust_policy kerneldoc (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clarify comment in get_target_pstate_use_performance() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Add more out-of-band IDs (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Check cpuid for MSR_HWP_INTERRUPT (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Update cpu_frequency tracepoint every time (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: clean remnant struct element (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix MSR_CONFIG_TDP_x addressing in core_get_max_pstate() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Replace MSR_NHM_TURBO_RATIO_LIMIT (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Declare pid_params/pstate_funcs/hwp_active __read_mostly (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix incorrect placement of __initdata (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not clear utilization update hooks on policy changes (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Adjust _PSS[0] freqeuency if needed (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix ->set_policy() interface for no_turbo (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Downgrade print level for _PPC (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Simplify conditional in intel_pstate_set_policy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clean up get_target_pstate_use_performance() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use sample.core_avg_perf in get_avg_pstate() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clarify average performance computation (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid unnecessary synchronize_sched() during initialization (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Clean up intel_pstate_get() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Ignore _PPC processing under HWP (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix intel_pstate_get() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix HWP on boot CPU after system resume (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Enable PPC enforcement for servers (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Adjust policy->max (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Enforce _PPC limits (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Fix processing for turbo activation ratio (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use average P-State instead of current P-State (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid getting stuck in high P-states when idle (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use pr_fmt (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid pointless FRAC_BITS shifts under div_fp() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Documenation for structures (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: fix inconsistency in setting policy limits (Prarit Bhargava) [1465349]
-- [kernel] cpufreq: Move scheduler-related code to the sched directory (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Avoid extra invocation of intel_pstate_sample() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not set utilization update hook too early (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not call wrmsrl_on_cpu() with disabled interrupts (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Do not skip samples partially (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Remove freq calculation from intel_pstate_calc_busy() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Move intel_pstate_calc_busy() into get_target_pstate_use_performance() (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Optimize calculation for max/min_perf_adj (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Remove extra conversions in pid calculation (Prarit Bhargava) [1465349]
-- [kernel] cpufreq: Add mechanism for registering utilization update callbacks (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Replace timers with utilization update callbacks (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: disable HWP notifications (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Account for IO wait time (Prarit Bhargava) [1465349]
-- [cpufreq] cpufreq / cppc: Initialize policy->min to lowest nonlinear performance (Prarit Bhargava) [1465349]
-- [mailbox] Make startup and shutdown ops optional (Prarit Bhargava) [1465349]
-- [sound] scripts/spelling.txt: add regsiter -> register spelling mistake (Prarit Bhargava) [1465349]
-- [mailbox] skip complete wait event if timer expired (Prarit Bhargava) [1465349]
-- [mailbox] handle empty message in tx_tick (Prarit Bhargava) [1465349]
-- [mailbox] always wait in mbox_send_message for blocking Tx mode (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: add sysfs entries for CPPC perf capabilities (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Read lowest nonlinear perf in cppc_get_perf_caps() (Prarit Bhargava) [1465349]
-- [mailbox] check ->last_tx_done for NULL in case of timer-based polling (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Fix per-CPU pointer management in acpi_cppc_processor_probe() (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Fix crash in acpi_cppc_processor_exit() (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: set an error code on probe error path (Prarit Bhargava) [1465349]
-- [cpufreq] sched/x86: Change CONFIG_SCHED_ITMT to CONFIG_SCHED_MC_PRIO (Prarit Bhargava) [1465349]
-- [x86] sched: Add SD_ASYM_PACKING flags to x86 ITMT CPU (Prarit Bhargava) [1465349]
-- [kernel] acpi/bus: Set _OSC for diverse core support (Prarit Bhargava) [1465349]
-- [acpi] bus: Enable HWP CPPC objects (Prarit Bhargava) [1465349]
-- [cpufreq] intel_pstate: Use CPPC to get max performance (Prarit Bhargava) [1465349]
-- [x86] sysctl: Add sysctl for ITMT scheduling feature (Prarit Bhargava) [1465349]
-- [x86] topology: Define x86's arch_update_cpu_topology (Prarit Bhargava) [1465349]
-- [x86] Enable Intel Turbo Boost Max Technology 3.0 (Prarit Bhargava) [1465349]
-- [kernel] sched: Extend scheduler's asym packing (Prarit Bhargava) [1465349]
-- [kernel] sched: Move CFS tasks to CPUs with higher capacity (Prarit Bhargava) [1465349]
-- [kernel] sched: Add struct rq::cpu_capacity_orig (Prarit Bhargava) [1465349]
-- [cpufreq] cpufreq / cppc: Add MODULE_DEVICE_TABLE for cppc_cpufreq driver (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Correct desired_perf calculation (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Support PCC with interrupt flag (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Avoid overflow when calculating desired_perf (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Force reporting values in KHz to fix user space interface (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Add prefix cppc to cpudata structure name (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Add support for functional fixed hardware address (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: check for error bit in PCC status field (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: move all PCC related information into pcc_data (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: add sysfs support to compute delivered performance (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: set a non-zero value for transition_latency (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: support for batching CPPC requests (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: acquire pcc_lock only while accessing PCC subspace (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: restructure read/writes for efficient sys mapped reg ops (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Prevent cpc_desc_ptr points to the invalid data (Prarit Bhargava) [1465349]
-- [acpi] cppc: Return error if _CPC is invalid on a CPU (Prarit Bhargava) [1465349]
-- [cpufreq] acpi / cppc: Add module support for cppc_cpufreq driver (Prarit Bhargava) [1465349]
-- [mailbox] Stop using ENOSYS for anything other than unimplemented syscalls (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: use MRTT/MPAR to decide if/when a req can be sent (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: replace writeX/readX to PCC with relaxed version (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: optimized cpc_read and cpc_write (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Optimize PCC Read Write operations (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Initialize and check CPUFreq CPU co-ord type correctly (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Use h/w reduced version of the PCCT structure (Prarit Bhargava) [1465349]
-- [cpufreq] cppc: Delete an unnecessary check before the function call kfree() (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: Fix potential memory leak (Prarit Bhargava) [1465349]
-- [acpi] acpi / cppc: signedness bug in register_pcc_channel() (Prarit Bhargava) [1465349]
-- [cpufreq] acpi / cppc: Add a CPUFreq driver for use with CPPC (Prarit Bhargava) [1465349]
-- [acpi] Introduce CPU performance controls using CPPC (Prarit Bhargava) [1465349]
-- [kernel] mailbox: switch to hrtimer for tx_complete polling (Prarit Bhargava) [1465349]
-- [kernel] mailbox: Add ability for clients to request channels by name (Prarit Bhargava) [1465349]
-- [mailbox] Fix up error handling in mbox_request_channel() (Prarit Bhargava) [1465349]
-- [kernel] mailbox: Make mbox_chan_ops const (Prarit Bhargava) [1465349]
-- [mailbox] check for bit set before polling (Prarit Bhargava) [1465349]
-- [mailbox] Add support for Platform Communication Channel (Prarit Bhargava) [1465349]
-- [kernel] mailbox: add tx_prepare client callback (Prarit Bhargava) [1465349]
-- [mailbox] Don't unnecessarily re-arm the polling timer (Prarit Bhargava) [1465349]
-- [kernel] mailbox: Introduce framework for mailbox (Prarit Bhargava) [1465349]
-- [acpi] acpica: acpi 5.1: Update for PCCT table changes (Prarit Bhargava) [1465349]
-- [acpi] acpica: tables: Add full support for the PCCT table, update table definition (Prarit Bhargava) [1465349]
-- [kernel] acpi / i915: Fix incorrect <acpi/acpi.h> inclusions via <linux/acpi_io.h> (Prarit Bhargava) [1465349]
-- [kernel] of: make of_property_for_each_{u32|string}() use parameters if OF is not enabled (Prarit Bhargava) [1465349]
-- [x86] io: implement dummy relaxed accessor macros for writes (Prarit Bhargava) [1465349]
-
-* Wed Sep 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-711.el7]
-- [hv] vmbus: re-enable channel tasklet (Mohammed Gamal) [1467258]
-- [hv] x86/mshyperv: Remove excess #includes from mshyperv.h (Mohammed Gamal) [1467258]
-- [hv] x86/hyperv: Check frequency MSRs presence according to the specification (Mohammed Gamal) [1467258]
-- [hv] vmbus: Close timing hole that can corrupt per-cpu page (Mohammed Gamal) [1467258]
-- [hv] vmbus: Reuse uuid_le_to_bin() helper (Mohammed Gamal) [1467258]
-- [hv] vmbus: Increase the time between retries in vmbus_post_msg() (Mohammed Gamal) [1491843 1467258]
-- [hv] vmbus: Get the current time from the current clocksource (Mohammed Gamal) [1467258]
-- [hv] properly delay KVP packets when negotiation is in progress (Mohammed Gamal) [1467258]
-- [hv] vmbus: Fix rescind handling (Mohammed Gamal) [1467258]
-- [hv] util: Make hv_poll_channel() a little more efficient (Mohammed Gamal) [1467258]
-- [hv] vmbus: Fix error code returned by vmbus_post_msg() (Mohammed Gamal) [1467258]
-- [hv] Base autoeoi enablement based on hypervisor hints (Mohammed Gamal) [1467258]
-- [hv] Fix a typo (Mohammed Gamal) [1467258]
-- [hv] vmbus: expose debug info for drivers (Mohammed Gamal) [1467258]
-- [hv] vmbus: make channel_message table constant (Mohammed Gamal) [1467258]
-- [hv] vmbus: make channel_message table constant (Mohammed Gamal) [1467258]
-- [hv] hyperv: remove unnecessary return variable (Mohammed Gamal) [1467258]
-- [hv] vmbus: fix spelling errors (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove unnecessary initialization (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove useless return's (Mohammed Gamal) [1467258]
-- [hv] vmbus: only reschedule tasklet if time limit exceeded (Mohammed Gamal) [1467258]
-- [hv] vmbus: Don't leak memory when a channel is rescinded (Mohammed Gamal) [1467258]
-- [hv] vmbus: Don't leak channel ids (Mohammed Gamal) [1467258]
-- [hv] util: move waiting for release to hv_utils_transport itself (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove hv_event_tasklet_disable/enable (Mohammed Gamal) [1467258]
-- [hv] vmbus: use rcu for per-cpu channel list (Mohammed Gamal) [1467258]
-- [hv] vmbus: replace modulus operation with subtraction (Mohammed Gamal) [1467258]
-- [hv] vmbus: constify parameters where possible (Mohammed Gamal) [1467258]
-- [hv] vmbus: expose hv_begin/end_read (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove conditional locking of vmbus_write (Mohammed Gamal) [1467258]
-- [hv] vmbus: add direct isr callback mode (Mohammed Gamal) [1467258]
-- [hv] vmbus: change to per channel tasklet (Mohammed Gamal) [1467258]
-- [hv] vmbus: callback is in softirq not workqueue (Mohammed Gamal) [1467258]
-- [hv] vmbus: put related per-cpu variable together (Mohammed Gamal) [1467258]
-- [hv] vmbus: remove unused kickq argument to sendpacket (Mohammed Gamal) [1467258]
-- [hv] vmbus: drop no longer used kick_q argument (Mohammed Gamal) [1467258]
-- [hv] vmbus: use kernel bitops for traversing interrupt mask (Mohammed Gamal) [1467258]
-- [hv] Fix the bug in generating the guest ID (Mohammed Gamal) [1467258]
-- [hv] Log the negotiated IC versions (Mohammed Gamal) [1467258]
-- [hv] vmbus: Use all supported IC versions to negotiate (Mohammed Gamal) [1467258]
-- [hv] balloon: add a fall through comment to hv_memory_notifier() (Mohammed Gamal) [1467258]
-- [hv] hv: vmbus: Cleanup hyperv_vmbus.h (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define an APIs to manage interrupt state (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define an API to retrieve virtual processor index (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define APIs to manipulate the synthetic interrupt controller (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define APIs to manipulate the event page (Mohammed Gamal) [1467258]
-- [hv] vmbus: Define APIs to manipulate the message page (Mohammed Gamal) [1467258]
-- [hv] vmbus: Get rid of an unsused variable (Mohammed Gamal) [1467258]
-- [hv] vmbus: Restructure the clockevents code (Mohammed Gamal) [1467258]
-- [hv] hv: Move struct hv_timer_message_payload into UAPI Hyper-V x86 header (Mohammed Gamal) [1467258]
-- [hv] vmbus: Move the code to signal end of message (Mohammed Gamal) [1467258]
-- [hv] hv: Move struct hv_message into UAPI Hyper-V x86 header (Mohammed Gamal) [1467258]
-- [hv] hv: Move HV_SYNIC_STIMER_COUNT into Hyper-V UAPI x86 header (Mohammed Gamal) [1467258]
-- [hv] util: backup: Fix a rescind processing issue (Mohammed Gamal) [1467258]
-- [hv] util: fcopy: Fix a rescind processing issue (Mohammed Gamal) [1467258]
-- [hv] util: kvp: Fix a rescind processing issue (Mohammed Gamal) [1467258]
-- [hv] vmbus: Get rid of the unused irq variable (Mohammed Gamal) [1467258]
-- [hv] hv: vmbus: Prevent sending data on a rescinded channel (Mohammed Gamal) [1467258]
-- [hv] vmbus: Fix a rescind handling bug (Mohammed Gamal) [1467258]
-
-* Tue Sep 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-710.el7]
-- [net] tcp: initialize rcv_mss to TCP_MIN_MSS instead of 0 (Davide Caratti) [1487061] {CVE-2017-14106}
-- [net] tcp: fix 0 divide in __tcp_select_window() (Davide Caratti) [1487061] {CVE-2017-14106}
-- [net] ip6mr: fix notification device destruction (Matteo Croce) [1445046]
-- [net] ip6mr: fix static mfc/dev leaks on table destruction (Matteo Croce) [1445046]
-- [net] openvswitch: Use inverted tuple in ovs_ct_find_existing() if NATted (Aaron Conole) [1457439]
-- [net] dev: add per net_device packet type chains (Florian Westphal) [1462344]
-- [net] add a postfix to old ndo_change_mtu (Ivan Vecera) [1480542]
-- [net] report right mtu value in error message (Ivan Vecera) [1480542]
-- [net] deprecate eth_change_mtu, remove usage (Ivan Vecera) [1480542]
-- [net] centralize net_device min/max MTU checking (Ivan Vecera) [1480542]
-- [net] sit: use __GFP_NOWARN for user controlled allocation (Matteo Croce) [1472074]
-- [mm] add documentation for page fragment APIs (Ivan Vecera) [1476339]
-- [mm] rename __page_frag functions to __page_frag_cache, drop order from drain (Ivan Vecera) [1476339]
-- [mm] rename __alloc_page_frag to page_frag_alloc and __free_page_frag to page_frag_free (Ivan Vecera) [1476339]
-- [mm] add support for releasing multiple instances of a page (Ivan Vecera) [1476339]
-- [netdrv] pppoe: fix memory corruption in padt work structure (Matteo Croce) [1382363]
-- [net] tcp: reset sk_rx_dst in tcp_disconnect() (Jamie Bainbridge) [1467770]
-- [net] mangle zero checksum in skb_checksum_help() (Xin Long) [1485791]
-- [net] sctp: Avoid out-of-bounds reads from address storage (Stefano Brivio) [1484355] {CVE-2017-7558}
-- [net] netfilter: nft_ct: fix expiration getter (Matteo Croce) [1427111]
-- [net] make ndo_get_stats64 a void function (Ivan Vecera) [1481795]
-- [net] ipv4: Do not allow MAIN to be alias for new LOCAL w/ custom rules (Ivan Vecera) [1464119]
-- [net] ipv4: Fix memory leak in exception case for splitting tries (Ivan Vecera) [1464119]
-- [net] ipv4: Restore fib_trie_flush_external function and fix call ordering (Ivan Vecera) [1464119]
-- [net] ipv4: Remove fib_local variable (Ivan Vecera) [1464119]
-- [net] ipv4: fill in table id when replacing a route (Ivan Vecera) [1464119]
-- [net] fib_trie: Cleanup ip_fib_net_exit code path (Ivan Vecera) [1464119]
-- [net] fib_trie: Fix warning on fib4_rules_exit (Ivan Vecera) [1464119]
-- [net] fib_trie: Provide a deterministic order for fib_alias w/ tables merged (Ivan Vecera) [1464119]
-- [net] fib_trie: Avoid NULL pointer if local table is not allocated (Ivan Vecera) [1464119]
-- [net] fib_trie: Only display main table in /proc/net/route (Ivan Vecera) [1464119]
-- [net] fib_trie: Fix uninitialized variable warning (Ivan Vecera) [1464119]
-- [net] ipv4: FIB Local/MAIN table collapse (Ivan Vecera) [1464119]
-- [net] fib_trie: Make fib_table rcu safe (Ivan Vecera) [1464119]
-- [net] ipv6: dad: don't remove dynamic addresses if link is down (Matteo Croce) [1319674]
-- [pci] dma: add calls for dma_map_page_attrs and dma_unmap_page_attrs (Ivan Vecera) [1477162]
-- [net] add missing dev_put() in __netdev_adjacent_dev_insert (Lance Richardson) [1467801]
-- [net] sctp: ensure ep is not destroyed before doing the dump (Xin Long) [1466107]
-- [net] sctp: return next obj by passing pos + 1 into sctp_transport_get_idx (Xin Long) [1466107]
-- [net] xfrm_user: validate XFRM_MSG_NEWAE incoming ESN size harder (Hannes Frederic Sowa) [1435670] {CVE-2017-7184}
-- [net] xfrm_user: validate XFRM_MSG_NEWAE XFRMA_REPLAY_ESN_VAL replay_window (Hannes Frederic Sowa) [1435670] {CVE-2017-7184}
-
-* Thu Aug 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-709.el7]
-- [block] blk-mq-tag: fix wakeup hang after tag resize (Ming Lei) [1472434]
-- [x86] xen/x86: Don't BUG on CPU0 offlining (Vitaly Kuznetsov) [1464095]
-- [ipc] mqueue: fix a use-after-free in sys_mq_notify() (Davide Caratti) [1476126] {CVE-2017-11176}
-- [net] ping: check minimum size on ICMP header length (Matteo Croce) [1481573] {CVE-2016-8399}
-- [net] udp: consistently apply ufo or fragmentation (Davide Caratti) [1481535] {CVE-2017-1000112}
-- [net] udp: account for current skb length when deciding about UFO (Davide Caratti) [1481535] {CVE-2017-1000112}
-- [net] ipv4: Should use consistent conditional judgement for ip fragment in __ip_append_data and ip_finish_output (Davide Caratti) [1481535] {CVE-2017-1000112}
-- [net] packet: fix tp_reserve race in packet_set_ring (Stefano Brivio) [1481940] {CVE-2017-1000111}
-- [net] ethernet: update drivers to handle HWTSTAMP_FILTER_NTP_ALL (Ivan Vecera) [1481817]
-- [net] define receive timestamp filter for NTP (Ivan Vecera) [1481817]
-- [net] netfilter: ipset: move registration message to init from net_init (Sabrina Dubroca) [1226051]
-- [net] netfilter: ipset: Add net namespace for ipset (Sabrina Dubroca) [1226051]
-- [net] netfilter: ipset: Rename simple macro names to avoid namespace issues (Sabrina Dubroca) [1226051]
-- [net] netfilter: ipset: order matches and targets separatedly in xt_set.c (Sabrina Dubroca) [1226051]
-- [net] sunrpc: fix regression in connection error reporting (Davide Caratti) [1446453]
-- [net] tcp: remove poll() flakes when receiving RST (Davide Caratti) [1446453]
-- [net] ipv6: only call ip6_route_dev_notify() once for NETDEV_UNREGISTER (Matteo Croce) [1468935]
-- [net] sctp: fix ICMP processing if skb is non-linear (Matteo Croce) [1450529]
-- [net] Remove usage of net_device last_rx member (Ivan Vecera) [1476348]
-- [net] batch of last_rx update avoidance in ethernet drivers (Ivan Vecera) [1476348]
-- [net] add a comment on netdev->last_rx (Ivan Vecera) [1476348]
-- [net] tcp: don't use F-RTO on non-recurring timeouts (Jakub Sitnicki) [1257096]
-- [hv] x86/vdso: Add VCLOCK_HVCLOCK vDSO clock read method (Vitaly Kuznetsov) [1410023]
-- [hv] x86/hyperv: Move TSC reading method to asm/mshyperv.h (Vitaly Kuznetsov) [1410023]
-- [hv] x86/hyperv: Implement hv_get_tsc_page() (Vitaly Kuznetsov) [1410023]
-- [hv] x86/hyperv: Hide unused label (Vitaly Kuznetsov) [1410023]
-- [hv] Turn off write permission on the hypercall page (Vitaly Kuznetsov) [1410023]
-- [hv] export current Hyper-V clocksource (Vitaly Kuznetsov) [1410023]
-- [hv] restore TSC page cleanup before kexec (Vitaly Kuznetsov) [1410023]
-- [hv] restore hypervcall page cleanup before kexec (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the check for hypercall page setup (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the crash notification function (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the extracting of Hypervisor version information (Vitaly Kuznetsov) [1410023]
-- [hv] hv: vmbus: Consolidate all Hyper-V specific clocksource code (Vitaly Kuznetsov) [1410023]
-- [hv] hv: vmbus: Move Hypercall invocation code out of common code (Vitaly Kuznetsov) [1410023]
-- [hv] hv vmbus: Move Hypercall page setup out of common code (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the definition of generate_guest_id() (Vitaly Kuznetsov) [1410023]
-- [hv] vmbus: Move the definition of hv_x64_msr_hypercall_contents (Vitaly Kuznetsov) [1410023]
-- [hv] x86, hyperv: Move a variable to avoid an unused variable warning (Vitaly Kuznetsov) [1410023]
-- [fs] lockd: fix lockd shutdown race (Scott Mayhew) [1430517]
-- [fs] xfs: use GPF_NOFS when allocating btree cursors (Carlos Maiolino) [1238562]
-- [fs] gfs2: Withdraw for IO errors writing to the journal or statfs (Robert S Peterson) [1429547]
-- [fs] gfs2: stuffed directories not setting nfs cookies (Robert S Peterson) [1397414]
-- [fs] cifs: Fix SMB3 mount without specifying a security mechanism (Leif Sahlberg) [1083869]
-- [fs] smb2: Enforce sec= mount option (Leif Sahlberg) [1083869]
-- [fs] nfsv4: Add missing nfs_put_lock_context() (Benjamin Coddington) [1476826]
-- [fs] nfs: discard nfs_lockowner structure (Benjamin Coddington) [1476826]
-- [fs] nfsv4: enhance nfs4_copy_lock_stateid to use a flock stateid if there is one (Benjamin Coddington) [1476826]
-- [fs] nfsv4: change nfs4_select_rw_stateid to take a lock_context inplace of lock_owner (Benjamin Coddington) [1476826]
-- [fs] nfsv4: change nfs4_do_setattr to take an open_context instead of a nfs4_state (Benjamin Coddington) [1476826]
-- [fs] nfsv4: add flock_owner to open context (Benjamin Coddington) [1476826]
-- [fs] nfs: remove l_pid field from nfs_lockowner (Benjamin Coddington) [1476826]
-- [mm] fix huge zero page accounting in smaps report (Oleg Nesterov) [1409913 1447952]
-- [mm] workingset: turn shadow node shrinker bugs into warnings (Waiman Long) [1441710]
-- [mm] workingset: fix crash in shadow node shrinker caused by replace_page_cache_page() (Waiman Long) [1441710]
-- [mm] hugetlb: warn the user when issues arise on boot due to hugepages (Steve Best) [1484498]
-- [powerpc] mm: use hugetlb_bad_size() (Steve Best) [1484498]
-
-* Mon Aug 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-708.el7]
-- [scsi] ses: do not add a device to an enclosure if enclosure_add_links() fails (Maurizio Lombardi) [1473286]
-- [scsi] tcm_qla2xxx: Mark Target Mode operation as Tech Preview (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable Exchange offload support (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable Extended Logins support (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix wrong argument in sp done callback (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Remove SRR code (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Make trace flags more readable (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Cleanup TMF code translation from qla_target (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Disable out-of-order processing by default in firmware (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix erroneous invalid handle message (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Reduce exess wait during chip reset (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Terminate exchange if corrupted (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix crash due to null pointer access (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Collect additional information to debug fw dump (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Reset reserved field in firmware options to 0 (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Set tcm_qla2xxx version to automatically track qla2xxx version (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Include ATIO queue in firmware dump when in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix wrong IOCB type assumption (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Add SCSI command jammer/discard capability (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add DebugFS node for target sess list (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Use ATIO type to send correct tmr response (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix stale pointer access (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix TMR ABORT interaction issue between qla2xxx and TCM (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix warning reported by static checker (Himanshu Madhani) [1327621]
-- [scsi] qla2xxxx: avoid type mismatch in comparison (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Check for online flag instead of active reset when transmitting responses (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Set all queues to 4k (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Disable ZIO at start time (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Move atioq to a different lock to reduce lock contention (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add irq affinity notification (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Remove dependency on hardware_lock to reduce lock contention (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Replace QLA_TGT_STATE_ABORTED with a bit (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Wait for all conflicts before ack'ing PLOGI (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Delete session if initiator is gone from FW (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Added interface to send explicit LOGO (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add FW resource count in DebugFS (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable Target counters in DebugFS (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: terminate exchange when command is aborted by LIO (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: added sess generations to detect RSCN update races (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: drop cmds/tmrs arrived while session is being deleted (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: disable scsi_transport_fc registration in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Abort stale cmds on qla_tgt_wq when plogi arrives (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: delay plogi/prli ack until existing sessions are deleted (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: cleanup cmd in qla workqueue before processing TMR (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: kill sessions/log out initiator on RSCN and port down events (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: fix command initialization in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Remove msleep in qlt_send_term_exchange (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: release request queue reservation (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add flush after updating ATIOQ consumer index (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable target mode for ISP27XX (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix hardware lock/unlock issue causing kernel panic (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: adjust debug flags (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: pass timeout as HZ independent value (Himanshu Madhani) [1327621]
-- [treewide] Add missing vmalloc.h inclusion (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Set TARGET_PROT_ALL for sup_prot_ops (Himanshu Madhani) [1327621]
-- [qla2_target] remove MSG_*_TAG defines (Himanshu Madhani) [1327621]
-- [qla_target] improve qlt_unmap_sg() (Himanshu Madhani) [1327621]
-- [qla_target] make some global functions static (Himanshu Madhani) [1327621]
-- [qla_target] remove unused parameter (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add memory barrier before ringing doorbell (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add flags for tracing the target commands (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix hang due to cmd_kref not decrementing (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Do not send SS_RESIDUAL_UNDER with SAM_STAT_BUSY (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add support for QFull throttling and Term Exchange retry (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Increase the request queue size to 8K for ISP2031 (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Host reset handling in ABTS path (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Handle chip reset in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add Host reset handling in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Add counter for message (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable SLER conditionally in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Remove verbose messages in target mode (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Use correct offset to req-q-out for reserve calculation (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix schedule_delayed_work() for target timeout calculations (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix sparse warnings in tcm_qla2xxx.c (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix sparse warning in qla_target.c (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix qlt_lport_register base_vha callback race (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: ABTS cause double free of qla_tgt_cmd + (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: fix sparse warnings introduced by previous target mode t10-dif patch (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: fix kernel NULL pointer access (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Convert to percpu_ida session tag pre-allocation (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: T10-Dif: add T10-PI support (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Fix kernel panic on selective retransmission request (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Fix NAA formatted name for NPIV WWPNs (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Check + fail when npiv_vports_inuse exists in shutdown (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Perform configfs depend/undepend for base_tpg (Himanshu Madhani) [1327621]
-- [scsi] tcm_qla2xxx: Add NPIV specific enable/disable attribute logic (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Configure NPIV fc_vport via tcm_qla2xxx_npiv_make_lport (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enhancements to enable NPIV support for QLOGIC ISPs with TCM/LIO (Himanshu Madhani) [1327621]
-- [target] Add TFO->abort_task for aborted task resources release (Himanshu Madhani) [1327621]
-- [target] make queue_tm_rsp() return void (Himanshu Madhani) [1327621]
-- [target] Remove TF_CIT_TMPL macro (Himanshu Madhani) [1327621]
-- [qla_target] remove qlt_check_fcport_exist (Himanshu Madhani) [1327621]
-- [target] Pass in transport supported PI at session initialization (Himanshu Madhani) [1327621]
-- [target] qla2xxx: Remove QLA_TPG_ATTRIB macro (Himanshu Madhani) [1327621]
-- [target] qla2xxx: Make demo_mode_login_only modifiable (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: rename vendor|hba _indentifer to vendor|hba _identifer (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: make msix_entries const (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: silence -Wformat-security warning (Himanshu Madhani) [1327621]
-- [scsi] qla2xxx: Enable CONFIG_TCM_QLA2XXX (Himanshu Madhani) [1327621]
-
-* Fri Aug 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-707.el7]
-- [x86] x86/mm: Remove CONFIG_DEBUG_NX_TEST (Rafael Aquini) [1301699]
-- [x86] x86/boot/kaslr: Fix kexec crash due to 'virt_addr' calculation bug (Baoquan He) [1467561]
-- [x86] x86/boot/kaslr: Add checking for the offset of kernel virtual address randomization (Baoquan He) [1467561]
-- [x86] revert "boot/kaslr: Skip kernel text relocation if no kaslr action is done" (Baoquan He) [1467561]
-- [x86] dell-laptop: Add keyboard backlight timeout AC settings (Gopal Tiwari) [1457415]
-- [x86] amd: Derive L3 shared_cpu_map from cpu_llc_shared_mask (Suravee Suthikulpanit) [1477399]
-- [mm] page_alloc: ratelimit PFNs busy info message (Jonathan Toppins) [1383179]
-- [pci] Fix source include in drivers/pci/Kconfig (Prarit Bhargava) [1484168]
-- [lib] devres: add a helper function for ioremap_wc (Ivan Vecera) [1482223]
-- [s390] Disable KVM code in the s390x kernel (Thomas Huth) [1456183]
-- [netdrv] igb: support BCM54616 PHY (John Linville) [1471984]
-- [netdrv] mlx4_en: don't set CHECKSUM_COMPLETE on SCTP packets (Davide Caratti) [1462059]
-- [netdrv] brcmfmac: fix possible buffer overflow in brcmf_cfg80211_mgmt_tx() (Stanislaw Gruszka) [1474784] {CVE-2017-7541}
-- [kernel] radix-tree: 'slot' can be NULL in radix_tree_next_slot() (Larry Woodman) [1471710]
-- [kernel] ftrace/graph: Add ftrace_graph_max_depth kernel parameter (Pratyush Anand) [1478331]
-- [kernel] sched: fix typo on topology error message ("Bruno E. O. Meneguele") [1477479]
-- [powerpc] tm: Fix saving of TM SPRs in core dump (Gustavo Duarte) [1480652]
-- [cpupower] Add support for new AMD family 0x17 (Suravee Suthikulpanit) [1477317]
-- [cpupower] Fix bug where return value was not used (Suravee Suthikulpanit) [1477317]
-
-* Fri Aug 25 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-706.el7]
-- [tools] perf tools: Update x86's syscall_64.tbl, adding pkey_(alloc, free, mprotect) (Rui Wang) [1272615]
-- [x86] mm/pkeys: Do not skip PKRU register if debug registers are not used (Rui Wang) [1272615]
-- [x86] debug: Only print out DR registers if they are not power-on defaults (Rui Wang) [1272615]
-- [x86] cpufeature, x86/mm/pkeys: Fix broken compile-time disabling of pkeys (Rui Wang) [1272615]
-- [x86] pkeys: remove cruft from never-merged syscalls (Rui Wang) [1272615]
-- [powerpc] Ignore the pkey system calls for now (Rui Wang) [1272615]
-- [s390] ignore pkey system calls (Rui Wang) [1272615]
-- [kernel] x86/pkeys: Fix pkeys build breakage for some non-x86 arches (Rui Wang) [1272615]
-- [uapi] generic syscalls: kill cruft from removed pkey syscalls (Rui Wang) [1272615]
-- [x86] pkeys: Update documentation (Rui Wang) [1272615]
-- [x86] pkeys: Allow configuration of init_pkru (Rui Wang) [1272615]
-- [kernel] x86/pkeys: Default to a restrictive init PKRU (Rui Wang) [1272615]
-- [x86] pkeys: Add details of system call use to Documentation/ (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add missing Documentation (Rui Wang) [1272615]
-- [uapi] generic syscalls: Wire up memory protection keys syscalls (Rui Wang) [1272615]
-- [x86] Wire up protection keys system calls (Rui Wang) [1272615]
-- [mm] x86/pkeys: Allocation/free syscalls (Rui Wang) [1272615]
-- [mm] x86/pkeys: Make mprotect_key() mask off additional vm_flags (Rui Wang) [1272615]
-- [mm] Implement new pkey_mprotect() system call (Rui Wang) [1272615]
-- [mm] mprotect.c: don't imply PROT_EXEC on non-exec fs (Rui Wang) [1272615]
-- [x86] mm/pkeys: Fix compact mode by removing protection keys' XSAVE buffer manipulation (Rui Wang) [1272615]
-- [x86] pkey: introduce write_pkru() for KVM (Rui Wang) [1272615]
-- [x86] mm/pkeys: Fix mismerge of protection keys CPUID bits (Rui Wang) [1272615]
-- [uapi] mm/pkeys: Fix siginfo ABI breakage caused by new u64 field (Rui Wang) [1272615]
-- [x86] mm/pkeys: Fix access_error() denial of writes to write-only VMA (Rui Wang) [1272615]
-- [mm] core, x86/mm/pkeys: Add execute-only protection keys support (Rui Wang) [1272615]
-- [mm] mmap: use offset_in_page macro (Rui Wang) [1272615]
-- [x86] mm/pkeys: Create an x86 arch_calc_vm_prot_bits() for VMA flags (Rui Wang) [1272615]
-- [kernel] x86/mm/pkeys: Allow kernel to modify user pkey rights register (Rui Wang) [1272615]
-- [x86] fpu: Allow setting of XSAVE state (Rui Wang) [1272615]
-- [x86] mm: Factor out LDT init from context init (Rui Wang) [1272615]
-- [mm] core, x86/mm/pkeys: Add arch_validate_pkey() (Rui Wang) [1272615]
-- [mm] core, arch, powerpc: Pass a protection key in to calc_vm_flag_bits() (Rui Wang) [1272615]
-- [mm] mpx: add "vm_flags_t vm_flags" arg to do_mmap_pgoff() (Rui Wang) [1272615]
-- [mm] do_mmap_pgoff: cleanup the usage of file_inode() (Rui Wang) [1272615]
-- [x86] mm/pkeys: Actually enable Memory Protection Keys in the CPU (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add Kconfig prompt to existing config option (Rui Wang) [1272615]
-- [fs] x86/mm/pkeys: Dump pkey from VMA in /proc/pid/smaps (Rui Wang) [1272615]
-- [x86] mm/pkeys: Dump PKRU with other kernel registers (Rui Wang) [1272615]
-- [mm] core, x86/mm/pkeys: Differentiate instruction fetches (Rui Wang) [1272615]
-- [x86] mm/pkeys: Optimize fault handling in access_error() (Rui Wang) [1272615]
-- [mm] core: Do not enforce PKEY permissions on remote mm access (Rui Wang) [1272615]
-- [iommu] amd: Correctly set flags for handle_mm_fault call (Rui Wang) [1272615]
-- [mm] gup, x86/mm/pkeys: Check VMAs and PTEs for protection keys (Rui Wang) [1272615]
-- [mm] gup: Factor out VMA fault permission checking (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add functions to fetch PKRU (Rui Wang) [1272615]
-- [x86] mm/pkeys: Fill in pkey field in siginfo (Rui Wang) [1272615]
-- [kernel] signals, pkeys: Notify userspace about protection key faults (Rui Wang) [1272615]
-- [x86] mm/pkeys: Pass VMA down in to fault signal generation code (Rui Wang) [1272615]
-- [mm] vm: add VM_FAULT_SIGSEGV handling support (Rui Wang) [1272615]
-- [kernel] x86/mm/pkeys: Add arch-specific VMA protection bits (Rui Wang) [1272615]
-- [mm] core, x86/mm/pkeys: Store protection bits in high VMA flags (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add new 'PF_PK' page fault error code bit (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add PTE bits for storing protection key (Rui Wang) [1272615]
-- [x86] fpu, x86/mm/pkeys: Add PKRU xsave fields and data structures (Rui Wang) [1272615]
-- [x86] cpu, x86/mm/pkeys: Define new CR4 bit (Rui Wang) [1272615]
-- [x86] cpufeature, x86/mm/pkeys: Add protection keys related CPUID definitions (Rui Wang) [1272615]
-- [x86] mm/pkeys: Add Kconfig option (Rui Wang) [1272615]
-- [media] ivtv: Convert to get_user_pages_unlocked() (Rui Wang) [1272615]
-- [virt] mm/gup: Introduce get_user_pages_remote() (Rui Wang) [1272615]
-- [mm] gup: use get_user_pages_unlocked (Rui Wang) [1272615]
-- [mm] process_vm_access: tidy up a bit (Rui Wang) [1272615]
-- [mm] process_vm_access: don't bother with returning the amounts of bytes copied (Rui Wang) [1272615]
-- [mm] process_vm_rw_pages(): pass accurate amount of bytes (Rui Wang) [1272615]
-- [mm] process_vm_access: take get_user_pages/put_pages one level up (Rui Wang) [1272615]
-- [mm] process_vm_access: switch to copy_page_to_iter/iov_iter_copy_from_user (Rui Wang) [1272615]
-- [mm] process_vm_access: switch to iov_iter (Rui Wang) [1272615]
-- [mm] untangling process_vm_..., part 4 (Rui Wang) [1272615]
-- [mm] untangling process_vm_..., part 3 (Rui Wang) [1272615]
-- [mm] untangling process_vm_..., part 2 (Rui Wang) [1272615]
-- [mm] untangling process_vm_..., part 1 (Rui Wang) [1272615]
-
-* Thu Aug 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-705.el7]
-- [tools] perf symbols: Fix symbols__fixup_end heuristic for corner cases (Jiri Olsa) [1478485]
-- [tools] scripts/spelling.txt: add "overide" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [kernel] scripts/spelling.txt: add "disble(d)" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [tools] Provide a definition of WARN_ON (Jiri Olsa) [1478485]
-- [tools] perf record: Honor --quiet option properly (Jiri Olsa) [1478485]
-- [tools] perf annotate: Add -q/--quiet option (Jiri Olsa) [1478485]
-- [tools] perf diff: Add -q/--quiet option (Jiri Olsa) [1478485]
-- [tools] perf report: Add -q/--quiet option (Jiri Olsa) [1478485]
-- [tools] perf utils: Check verbose flag properly (Jiri Olsa) [1478485]
-- [tools] perf utils: Add perf_quiet_option() (Jiri Olsa) [1478485]
-- [tools] perf record: Add -a as default target (Jiri Olsa) [1478485]
-- [tools] perf stat: Add -a as default target (Jiri Olsa) [1478485]
-- [tools] perf tools: Fail on using multiple bits long terms without value (Jiri Olsa) [1478485]
-- [tools] perf tools: Move new_term arguments into struct parse_events_term template (Jiri Olsa) [1478485]
-- [tools] perf build: Add special fixdep cleaning rule (Jiri Olsa) [1478485]
-- [tools] perf tools: Replace _SC_NPROCESSORS_CONF with max_present_cpu in cpu_topology_map (Jiri Olsa) [1478485]
-- [tools] perf header: Make build_cpu_topology skip offline/absent CPUs (Jiri Olsa) [1478485]
-- [tools] perf cpumap: Add cpu__max_present_cpu() (Jiri Olsa) [1478485]
-- [tools] perf session: Fix DEBUG=1 build with clang (Jiri Olsa) [1478485]
-- [tools] tools lib traceevent: It's preempt not prempt (Jiri Olsa) [1478485]
-- [tools] perf python: Filter out -specs=/a/b/c from the python binding cc options (Jiri Olsa) [1478485]
-- [tools] tools perf scripting python: clang doesn't have -spec, remove it (Jiri Olsa) [1478485]
-- [tools] scripts/spelling.txt: add "an one" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [tools] scripts/spelling.txt: add "an union" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [tools] scripts/spelling.txt: add "an user" pattern and fix typo instances (Jiri Olsa) [1478485]
-- [tools] cgroup, perf_event: make perf_event controller work on cgroup2 hierarchy (Jiri Olsa) [1478485]
-- [tools] lib/find_bit.c: micro-optimise find_next_*_bit (Jiri Olsa) [1478485]
-- [tools] lib, traceevent: add PRINT_HEX_STR variant (Jiri Olsa) [1478485]
-- [tools] perf tools: Add missing parse_events_error() prototype (Jiri Olsa) [1478485]
-- [tools] perf pmu: Fix check for unset alias->unit array (Jiri Olsa) [1478485]
-- [tools] perf intel pt decoder: clang has no -Wno-override-init (Jiri Olsa) [1478485]
-- [tools] perf evsel: Do not put a variable sized type not at the end of a struct (Jiri Olsa) [1478485]
-- [tools] perf probe: Avoid accessing uninitialized 'map' variable (Jiri Olsa) [1478485]
-- [tools] perf tools: Do not put a variable sized type not at the end of a struct (Jiri Olsa) [1478485]
-- [tools] perf record: Do not put a variable sized type not at the end of a struct (Jiri Olsa) [1478485]
-- [tools] perf tests: Synthesize struct instead of using field after variable sized type (Jiri Olsa) [1478485]
-- [tools] perf bench numa: Make sure dprintf() is not defined (Jiri Olsa) [1478485]
-- [tools] revert "perf bench futex: Sanitize numeric parameters" (Jiri Olsa) [1478485]
-- [tools] tools lib subcmd: Make it an error to pass a signed value to OPTION_UINTEGER (Jiri Olsa) [1478485]
-- [tools] Set the maximum optimization level according to the compiler being used (Jiri Olsa) [1478485]
-- [tools] Suppress request for warning options not existent in clang (Jiri Olsa) [1478485]
-- [tools] perf symbols: dso->name is an array, no need to check it against NULL (Jiri Olsa) [1478485]
-- [tools] perf tests record: No need to test an array against NULL (Jiri Olsa) [1478485]
-- [tools] perf symbols: No need to check if sym->name is NULL (Jiri Olsa) [1478485]
-- [tools] perf evsel: Inform how to make a sysctl setting permanent (Jiri Olsa) [1478485]
-- [tools] tools lib traceevent plugin function: Initialize 'index' variable (Jiri Olsa) [1478485]
-- [tools] tools lib traceevent: Initialize lenght on OLD_RING_BUFFER_TYPE_TIME_STAMP (Jiri Olsa) [1478485]
-- [tools] perf scripting perl: Fix compile error with some perl5 versions (Jiri Olsa) [1478485]
-- [tools] perf diff: Change default setting to "delta-abs" (Jiri Olsa) [1478485]
-- [tools] perf diff: Add diff.compute config option (Jiri Olsa) [1478485]
-- [tools] perf diff: Add diff.order config option (Jiri Olsa) [1478485]
-- [tools] perf diff: Add 'delta-abs' compute method (Jiri Olsa) [1478485]
-- [tools] tools include: Introduce linux/compiler-gcc.h (Jiri Olsa) [1478485]
-- [tools] perf intel-pt: Use __fallthrough (Jiri Olsa) [1478485]
-- [tools] perf tests: Avoid possible truncation with dirent->d_name + snprintf (Jiri Olsa) [1478485]
-- [tools] perf bench numa: Avoid possible truncation when using snprintf() (Jiri Olsa) [1478485]
-- [tools] perf header: Fix handling of PERF_EVENT_UPDATE__SCALE (Jiri Olsa) [1478485]
-- [tools] perf thread_map: Correctly size buffer used with dirent->dt_name (Jiri Olsa) [1478485]
-- [tools] perf top: Use __fallthrough (Jiri Olsa) [1478485]
-- [tools] tools strfilter: Use __fallthrough (Jiri Olsa) [1478485]
-- [tools] tools string: Use __fallthrough in perf_atoll() (Jiri Olsa) [1478485]
-- [tools] tools include: Add a __fallthrough statement (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Broadwell DE (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Xeon Phi (Knights Landing) (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Sandy Bridge Server (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for IvyBridge Server (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Broadwell Server (Jiri Olsa) [1478485]
-- [tools] perf vendor events intel: Add uncore events for Haswell Server processor (Jiri Olsa) [1478485]
-- [tools] perf tools: Fix include of linux/mman.h (Jiri Olsa) [1478485]
-- [tools] tools lib traceevent: Robustify do_generate_dynamic_list_file (Jiri Olsa) [1478485]
-- [tools] perf tools: Use zfree() to avoid keeping dangling pointers (Jiri Olsa) [1478485]
-- [tools] perf tools: Use zfree() instead of ad hoc equivalent (Jiri Olsa) [1478485]
-- [tools] perf tools: Add missing check for failure in a zalloc() call (Jiri Olsa) [1478485]
-- [tools] perf tools: Only increase index if perf_evsel__new_idx() succeeds (Jiri Olsa) [1478485]
-- [tools] perf probe: Add option --symfs (Jiri Olsa) [1478485]
-- [tools] perf symbols: Take into account symfs setting when reading file build ID (Jiri Olsa) [1478485]
-- [tools] perf sdt: Show proper hint when event not yet in place via 'perf probe' (Jiri Olsa) [1478485]
-- [tools] perf list: Add debug support for outputing alias string (Jiri Olsa) [1478485]
-- [tools] perf pmu: Support event aliases for non cpu// pmus (Jiri Olsa) [1478485]
-- [tools] perf pmu: Support per pmu json aliases (Jiri Olsa) [1478485]
-- [tools] perf jevents: Add support for parsing uncore json files (Jiri Olsa) [1478485]
-- [tools] perf jevents: Parse eventcode as number (Jiri Olsa) [1478485]
-- [tools] x86/events: Remove last remnants of old filenames (Jiri Olsa) [1478485]
-- [x86] perf/x86: Avoid exposing wrong/stale data in intel_pmu_lbr_read_32() (Jiri Olsa) [1478485]
-- [kernel] perf/core: Better explain the inherit magic (Jiri Olsa) [1478485]
-- [kernel] perf/core: Simplify perf_event_free_task() (Jiri Olsa) [1478485]
-- [kernel] perf/core: Fix event inheritance on fork() (Jiri Olsa) [1478485]
-- [kernel] perf/core: Fix use-after-free in perf_release() (Jiri Olsa) [1478485]
-- [kernel] perf/core: Fix the perf_cpu_time_max_percent check (Jiri Olsa) [1478485]
-- [kernel] perf/core: Fix perf_event_enable_on_exec() timekeeping (again) (Jiri Olsa) [1478485]
-- [kernel] perf/core: Remove confusing comment and move put_ctx() (Jiri Olsa) [1478485]
-- [x86] perf/x86/intel: Add Kaby Lake support (Jiri Olsa) [1478485]
-- [kernel] perf/core: Allow kernel filters on CPU events (Jiri Olsa) [1478485]
-- [kernel] perf/core: Do error out on a kernel filter on an exclude_filter event (Jiri Olsa) [1478485]
-
-* Tue Aug 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-704.el7]
-- [fs] sunrpc: Handle EADDRNOTAVAIL on connection failures (Dave Wysochanski) [1479043]
-- [fs] gfs2: Defer deleting inodes under memory pressure (Andreas Grunbacher) [1321079]
-- [fs] gfs2: gfs2_evict_inode: Put glocks asynchronously (Andreas Grunbacher) [1321079]
-- [fs] gfs2: Get rid of gfs2_set_nlink (Andreas Grunbacher) [1321079]
-- [fs] gfs2: gfs2_glock_get: Wait on freeing glocks (Andreas Grunbacher) [1321079]
-- [fs] gfs2: gfs2_create_inode: Keep glock across iput (Andreas Grunbacher) [1321079]
-- [fs] gfs2: Clean up glock work enqueuing (Andreas Grunbacher) [1321079]
-- [fs] gfs2: Protect gl->gl_object by spin lock (Andreas Grunbacher) [1321079]
-- [fs] gfs2: Get rid of flush_delayed_work in gfs2_evict_inode (Andreas Grunbacher) [1321079]
-- [fs] revert "gfs2: Wait for iopen glock dequeues" (Andreas Grunbacher) [1321079]
-- [fs] gfs2: fix code parameter error in inode_go_lock (Andreas Grunbacher) [1480789]
-- [fs] gfs2: Clear gl_object when deleting an inode in gfs2_delete_inode (Robert S Peterson) [1471151]
-- [fs] gfs2: Clear gl_object if gfs2_create_inode fails (Robert S Peterson) [1471151]
-- [fs] gfs2: Set gl_object in inode lookup only after block type check (Robert S Peterson) [1471151]
-- [fs] gfs2: Introduce helpers for setting and clearing gl_object (Robert S Peterson) [1471151]
-- [fs] gfs2: Switch to rhashtable_lookup_get_insert_fast (Andreas Grunbacher) [1477688]
-- [fs] rhashtable: Add rhashtable_lookup_get_insert_fast (Andreas Grunbacher) [1477688]
-- [fs] gfs2: forcibly flush ail to relieve memory pressure (Abhijith Das) [1389079]
-- [fs] gfs2: Fix glock rhashtable rcu bug (Andreas Grunbacher) [1477721]
-- [fs] gfs2: Non-recursive delete (Robert S Peterson) [1359239]
-- [fs] gfs2: Remove gl_spin define (Andreas Grunbacher) [1433507]
-- [fs] xfs: Move handling of missing page into one place in xfs_find_get_desired_pgoff() (Bill O'Donnell) [1460446]
-- [fs] xfs: Fix off-by-in in loop termination in xfs_find_get_desired_pgoff() (Bill O'Donnell) [1460446]
-- [fs] xfs: Fix missed holes in SEEK_HOLE implementation (Bill O'Donnell) [1460446]
-- [fs] locks: don't check for race with close when setting OFD lock (Jeff Layton) [1444778]
-- [fs] locks: only validate the lock vs. f_mode in F_SETLK codepaths (Jeff Layton) [1444778]
-- [fs] locks: rename FL_FILE_PVT and IS_FILE_PVT to use "*_OFDLCK" instead (Jeff Layton) [1444778]
-- [fs] arm: fix handling of F_OFD_... in oabi_fcntl64() (Jeff Layton) [1444778]
-- [fs] locks: rename file-private locks to "open file description locks" (Jeff Layton) [1444778]
-- [fs] locks: require that flock->l_pid be set to 0 for file-private locks (Jeff Layton) [1444778]
-- [fs] locks: add new fcntl cmd values for handling file private locks (Jeff Layton) [1444778]
-- [fs] locks: skip deadlock detection on FL_FILE_PVT locks (Jeff Layton) [1444778]
-- [fs] locks: pass the cmd value to fcntl_getlk/getlk64 (Jeff Layton) [1444778]
-- [fs] locks: report l_pid as -1 for FL_FILE_PVT locks (Jeff Layton) [1444778]
-- [fs] locks: make /proc/locks show IS_FILE_PVT locks as type "FLPVT" (Jeff Layton) [1444778]
-- [fs] locks: rename locks_remove_flock to locks_remove_file (Jeff Layton) [1444778]
-- [fs] locks: consolidate checks for compatible filp->f_mode values in setlk handlers (Jeff Layton) [1444778]
-- [fs] locks: fix posix lock range overflow handling (Jeff Layton) [1444778]
-- [fs] locks: add __acquires and __releases annotations to locks_start and locks_stop (Jeff Layton) [1444778]
-- [fs] locks: remove "inline" qualifier from fl_link manipulation functions (Jeff Layton) [1444778]
-- [fs] cifs: Add new system calls to cifs in kABI compatible way (Sachin Prabhu) [1416385]
-- [fs] cifs: do not return number of bytes written for ioctl CIFS_IOC_COPYCHUNK_FILE (Sachin Prabhu) [1416385]
-- [fs] cifs: introduce cifs_copy_file_range() (Sachin Prabhu) [1416385]
-- [fs] smb3: Rename clone_range to copychunk_range (Sachin Prabhu) [1416385]
-- [fs] cifs: Fix duplicate line introduced by clone_file_range patch (Sachin Prabhu) [1416385]
-- [fs] cifs: avoid unused variable and label (Sachin Prabhu) [1416385]
-- [fs] vfs: pull btrfs clone API to vfs layer(cifs_only) (Sachin Prabhu) [1416385]
-- [fs] include/linux/printk.h: include pr_fmt in pr_debug_ratelimited (Sachin Prabhu) [1472823]
-- [fs] printk: pr_debug_ratelimited: check state first to reduce "callbacks suppressed" messages (Sachin Prabhu) [1472823]
-
-* Fri Aug 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-703.el7]
-- [kernel] clocksource: Use a plain u64 instead of cycle_t (Ivan Vecera) [1476351]
-- [net] gso: Validate assumption of frag_list segementation (Matteo Croce) [1447695]
-- [net] gso: Support frag_list splitting with head_frag (Matteo Croce) [1447695]
-- [net] tcp: tcp_make_synack() should clear skb->tstamp (Matteo Croce) [1473533]
-- [net] vlan: Set correct source MAC address with TX VLAN offload enabled (Jarod Wilson) [1474741]
-- [net] ipv4: ip_do_fragment: fix headroom tests (Stefano Brivio) [1474927]
-- [net] netfilter: ipt_CLUSTERIP: fix use-after-free of proc entry (Stefano Brivio) [1474438]
-- [net] netfilter: ipt_CLUSTERIP: do not hold dev (Stefano Brivio) [1472892]
-- [net] netfilter: ipt_CLUSTERIP: fix build error without procfs (Stefano Brivio) [1472892]
-- [net] netfilter: ipt_CLUSTERIP: check duplicate config when initializing (Stefano Brivio) [1472892]
-- [net] ipv6: Don't increase IPSTATS_MIB_FRAGFAILS twice in ip6_fragment() (Stefano Brivio) [1470627]
-- [net] ipv6: ip6_fragment: fix headroom tests and skb leak (Stefano Brivio) [1470627]
-- [net] netfilter: kill the fake untracked conntrack objects (Paolo Abeni) [1317099]
-- [net] netfilter: add and use nf_ct_set helper (Paolo Abeni) [1317099]
-- [net] skbuff: add and use skb_nfct helper (Paolo Abeni) [1317099]
-- [net] netfilter: reduce direct skb->nfct usage (Paolo Abeni) [1317099]
-- [net] netfilter: reset netfilter state when duplicating packet (Paolo Abeni) [1317099]
-- [net] netfilter: conntrack: no need to pass ctinfo to error handler (Paolo Abeni) [1317099]
-- [net] l2tp: Make l2tp_ip6 namespace aware (Xin Long) [1465711]
-- [net] udp: avoid ufo handling on IP payload compression packets (Stefano Brivio) [1464161]
-- [net] don't global ICMP rate limit packets originating from loopback (Jesper Brouer) [1461282]
-- [net] ip6_tunnel: disable caching when the traffic class is inherited (Stefano Brivio) [1396593]
-- [net] ipv6: use TOS marks from sockets for routing decision (Stefano Brivio) [1396593]
-- [net] neighbour: Really delete an arp/neigh entry on "ip neigh delete" or "arp -d" (Hangbin Liu) [1383691]
-- [net] neighbour: fix nlmsg_pid in notifications (Hangbin Liu) [1383691]
-- [net] neighbour: remove dynamic neigh table registration support (Hangbin Liu) [1383691]
-- [net] neigh: guard against NULL solicit() method (Xin Long) [1463887]
-- [net] packet: Allow packets with only a header (but no payload) (Jakub Sitnicki) [1444521]
-- [net] packet: bail out of packet_snd() if L2 header creation fails (Jakub Sitnicki) [1444521]
-- [net] packet: make packet_snd fail on len smaller than l2 header (Jakub Sitnicki) [1444521]
-
-* Wed Aug 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-702.el7]
-- [scsi] bnx2fc: fix race condition in bnx2fc_get_host_stats() (Maurizio Lombardi) [1455520]
-- [scsi] hpsa: bump driver version (Joseph Szczypek) [1404073]
-- [scsi] hpsa: remove abort handler (Joseph Szczypek) [1404073]
-- [scsi] hpsa: send ioaccel requests with 0 length down raid path (Joseph Szczypek) [1404073]
-- [scsi] hpsa: separate monitor events from rescan worker (Joseph Szczypek) [1404073]
-- [scsi] hpsa: correct queue depth for externals (Joseph Szczypek) [1404073]
-- [scsi] hpsa: cleanup reset handler (Joseph Szczypek) [1404073]
-- [scsi] hpsa: correct resets on retried commands (Joseph Szczypek) [1404073]
-- [scsi] hpsa: rescan later if reset in progress (Joseph Szczypek) [1404073]
-- [scsi] hpsa: do not reset enclosures (Joseph Szczypek) [1404073]
-- [scsi] hpsa: update reset handler (Joseph Szczypek) [1404073]
-- [scsi] hpsa: do not get enclosure info for external devices (Joseph Szczypek) [1404073]
-- [scsi] hpsa: update identify physical device structure (Joseph Szczypek) [1404073]
-- [scsi] qedi: Add support for offload iSCSI Boot (Chad Dupuis) [1459312]
-- [net] qed: Support NVM-image reading API (Chad Dupuis) [1459312]
-- [net] qed: Share additional information with qedf (Chad Dupuis) [1459312]
-- [net] qed: Correct order of wwnn and wwpn (Chad Dupuis) [1459312]
-- [net] qed: Inform qedi the number of possible CQs (Chad Dupuis) [1459312]
-- [net] vti: Add pmtu handling to vti_xmit (Xin Long) [1467521]
-- [s390] af_iucv: correctly copy SKB data (add missing hunk from 04d0ec) (Hendrik Brueckner) [1459782]
-- [net] sctp: change to save MSG_MORE flag into assoc (Xin Long) [1409365]
-- [net] sctp: add support for MSG_MORE (Xin Long) [1409365]
-- [net] dccp: call inet_add_protocol after register_pernet_subsys in dccp_v6_init (Xin Long) [1462417]
-- [net] dccp: call inet_add_protocol after register_pernet_subsys in dccp_v4_init (Xin Long) [1462417]
-- [net] 6lowpan: fix fragmentation hash locking (David Arcari) [1461542]
-- [net] 6lowpan: re-enable support for the secret rebuild timer (David Arcari) [1461542]
-- [net] sctp: disable BH in sctp_for_each_endpoint (Xin Long) [1451569]
-- [net] dst: Fix an intermittent pr_emerg warning about lo becoming free (Xin Long) [1458111]
-- [net] ipv6: fix calling in6_ifa_hold incorrectly for dad work (Xin Long) [1459493]
-- [net] sctp: fix src address selection if using secondary addresses for ipv6 (Xin Long) [1460106]
-- [net] ipv6: check sk sk_type and protocol early in ip_mroute_set/getsockopt (Xin Long) [1460115]
-- [net] packet: deliver VLAN TPID to userspace (Eric Garver) [1427245]
-- [net] packet: fill the gap of TPACKET_ALIGNMENT with zeros (Eric Garver) [1427245]
-- [net] ipv6: check raw payload size correctly in ioctl (Jamie Bainbridge) [1447240]
-- [net] bridge: netlink: check vlan_default_pvid range (Ivan Vecera) [1464444]
-- [net] fix mistake with TCP cgroup memory pressure check (Florian Westphal) [1456547]
-
-* Tue Aug 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-701.el7]
-- [fs] ceph: use pd to print dentry (Ilya Dryomov) [1450262]
-- [fs] ceph: fix memory leak in __ceph_setxattr() (Ilya Dryomov) [1450262]
-- [fs] ceph: fix file open flags on ppc64 (Ilya Dryomov) [1450262]
-- [fs] ceph: choose readdir frag based on previous readdir reply (Ilya Dryomov) [1450262]
-- [fs] rbd: exclusive map option (Ilya Dryomov) [1450262]
-- [fs] rbd: return ResponseMessage result from rbd_handle_request_lock() (Ilya Dryomov) [1450262]
-- [fs] rbd: kill rbd_is_lock_supported() (Ilya Dryomov) [1450262]
-- [fs] rbd: support updating the lock cookie without releasing the lock (Ilya Dryomov) [1450262]
-- [fs] rbd: store lock cookie (Ilya Dryomov) [1450262]
-- [fs] rbd: ignore unlock errors (Ilya Dryomov) [1450262]
-- [fs] rbd: fix error handling around rbd_init_disk() (Ilya Dryomov) [1450262]
-- [fs] rbd: move rbd_unregister_watch() call into rbd_dev_image_release() (Ilya Dryomov) [1450262]
-- [fs] rbd: move rbd_dev_destroy() call out of rbd_dev_image_release() (Ilya Dryomov) [1450262]
-- [fs] ceph: when seeing write errors on an inode, switch to sync writes (Ilya Dryomov) [1450262]
-- [fs] ceph: handle epoch barriers in cap messages (Ilya Dryomov) [1450262]
-- [fs] libceph: add an epoch_barrier field to struct ceph_osd_client (Ilya Dryomov) [1450262]
-- [fs] libceph: abort already submitted but abortable requests when map or pool goes full (Ilya Dryomov) [1450262]
-- [fs] libceph: allow requests to return immediately on full conditions if caller wishes (Ilya Dryomov) [1450262]
-- [fs] libceph: remove req->r_replay_version (Ilya Dryomov) [1450262]
-- [fs] ceph: make seeky readdir more efficient (Ilya Dryomov) [1450262]
-- [fs] ceph: close stopped mds' session (Ilya Dryomov) [1450262]
-- [fs] ceph: fix potential use-after-free (Ilya Dryomov) [1450262]
-- [fs] ceph: allow connecting to mds whose rank >= mdsmap::m_max_mds (Ilya Dryomov) [1450262]
-- [fs] ceph: fix wrong check in ceph_renew_caps() (Ilya Dryomov) [1450262]
-- [fs] libceph: supported_features module parameter (Ilya Dryomov) [1450262]
-- [fs] libceph, ceph: always advertise all supported features (Ilya Dryomov) [1450262]
-- [fs] ceph: fix recursion between ceph_set_acl() and __ceph_setattr() (Ilya Dryomov) [1450262]
-- [fs] libceph: force GFP_NOIO for socket allocations (Ilya Dryomov) [1450262]
-- [fs] libceph: osd_request_timeout option (Ilya Dryomov) [1450262]
-- [fs] rbd: supported_features bus attribute (Ilya Dryomov) [1450262]
-- [fs] libceph: fix crush_decode() for older maps (Ilya Dryomov) [1450262]
-- [fs] libceph, rbd, ceph: WRITE | ONDISK -> WRITE (Ilya Dryomov) [1450262]
-- [fs] libceph: get rid of ack vs commit (Ilya Dryomov) [1450262]
-- [fs] ceph: remove special ack vs commit behavior (Ilya Dryomov) [1450262]
-- [fs] ceph: tidy some white space in get_nonsnap_parent() (Ilya Dryomov) [1450262]
-- [fs] crush: fix dprintk compilation (Ilya Dryomov) [1450262]
-- [fs] crush: do is_out test only if we do not collide (Ilya Dryomov) [1450262]
-- [fs] ceph: remove req from unsafe list when unregistering it (Ilya Dryomov) [1450262]
-- [fs] rbd: constify device_type structure (Ilya Dryomov) [1450262]
-- [fs] rbd: kill obj_request->object_name and rbd_segment_name_cache (Ilya Dryomov) [1450262]
-- [fs] rbd: store and use obj_request->object_no (Ilya Dryomov) [1450262]
-- [fs] rbd: RBD_V{1,2}_DATA_FORMAT macros (Ilya Dryomov) [1450262]
-- [fs] rbd: factor out __rbd_osd_req_create() (Ilya Dryomov) [1450262]
-- [fs] rbd: set offset and length outside of rbd_obj_request_create() (Ilya Dryomov) [1450262]
-- [fs] rbd: support for data-pool feature (Ilya Dryomov) [1450262]
-- [fs] rbd: introduce rbd_init_layout() (Ilya Dryomov) [1450262]
-- [fs] rbd: use rbd_obj_bytes() more (Ilya Dryomov) [1450262]
-- [fs] rbd: remove now unused rbd_obj_request_wait() and helpers (Ilya Dryomov) [1450262]
-- [fs] rbd: switch rbd_obj_method_sync() to ceph_osdc_call() (Ilya Dryomov) [1450262]
-- [fs] libceph: pass reply buffer length through ceph_osdc_call() (Ilya Dryomov) [1450262]
-- [fs] rbd: do away with obj_request in rbd_obj_read_sync() (Ilya Dryomov) [1450262]
-- [fs] rbd: initialize rbd_dev->header_oloc early (Ilya Dryomov) [1450262]
-- [fs] rbd: kill rbd_image_header::{crypt_type, comp_type} (Ilya Dryomov) [1450262]
-- [fs] rbd: use kstrndup() in rbd_header_from_disk() (Ilya Dryomov) [1450262]
-- [fs] libceph: bump CEPH_PG_MAX_SIZE to 32 (Ilya Dryomov) [1450262]
-- [fs] libceph: don't go through with the mapping if the PG is too wide (Ilya Dryomov) [1450262]
-- [fs] crush: merge working data and scratch (Ilya Dryomov) [1450262]
-- [fs] crush: remove mutable part of CRUSH map (Ilya Dryomov) [1450262]
-- [fs] libceph: add osdmap_set_crush() helper (Ilya Dryomov) [1450262]
-- [fs] libceph: remove unneeded stddef.h include (Ilya Dryomov) [1450262]
-- [fs] ceph: do a LOOKUP in d_revalidate instead of GETATTR (Ilya Dryomov) [1450262]
-- [fs] ceph: call update_dentry_lease even when r_locked dir is not set (Ilya Dryomov) [1450262]
-- [fs] ceph: vet the target and parent inodes before updating dentry lease (Ilya Dryomov) [1450262]
-- [fs] ceph: don't update_dentry_lease unless we actually got one (Ilya Dryomov) [1450262]
-- [fs] ceph: add a new flag to indicate whether parent is locked (Ilya Dryomov) [1450262]
-- [fs] ceph: convert bools in ceph_mds_request to a new r_req_flags field (Ilya Dryomov) [1450262]
-- [fs] ceph: drop session argument to ceph_fill_trace (Ilya Dryomov) [1450262]
-- [fs] ceph: remove "Debugging hook" from ceph_fill_trace (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid calling ceph_renew_caps() infinitely (Ilya Dryomov) [1450262]
-- [fs] ceph: make sure flushing inode in proper session's cap_flushing list (Ilya Dryomov) [1450262]
-- [fs] ceph: update readpages osd request according to size of pages (Ilya Dryomov) [1450262]
-- [fs] ceph: fix bogus endianness change in ceph_ioctl_set_layout (Ilya Dryomov) [1450262]
-- [fs] libceph: use BUG() instead of BUG_ON(1) (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid updating mds_wanted too frequently (Ilya Dryomov) [1450262]
-- [fs] ceph: pass parent inode info to ceph_encode_dentry_release if we have it (Ilya Dryomov) [1450262]
-- [fs] ceph: fix unsafe dcache access in ceph_encode_dentry_release (Ilya Dryomov) [1450262]
-- [fs] ceph: pass parent dir ino info to build_dentry_path (Ilya Dryomov) [1450262]
-- [fs] ceph: clean up unsafe d_parent accesses in build_dentry_path (Ilya Dryomov) [1450262]
-- [fs] ceph: clean up unsafe d_parent access in __choose_mds (Ilya Dryomov) [1450262]
-- [fs] ceph: fix bad endianness handling in parse_reply_info_extra (Ilya Dryomov) [1450262]
-- [fs] ceph: fix endianness bug in frag_tree_split_cmp (Ilya Dryomov) [1450262]
-- [fs] ceph: fix endianness of getattr mask in ceph_d_revalidate (Ilya Dryomov) [1450262]
-- [fs] libceph: make sure ceph_aes_crypt() IV is aligned (Ilya Dryomov) [1450262]
-- [fs] ceph: fix ceph_get_caps() interruption (Ilya Dryomov) [1450262]
-- [fs] ceph: fix get_oldest_context() (Ilya Dryomov) [1450262]
-- [fs] ceph: fix mds cluster availability check (Ilya Dryomov) [1450262]
-- [fs] libceph: remove now unused finish_request() wrapper (Ilya Dryomov) [1450262]
-- [fs] libceph: always signal completion when done (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid creating orphan object when checking pool permission (Ilya Dryomov) [1450262]
-- [fs] ceph: properly set issue_seq for cap release (Ilya Dryomov) [1450262]
-- [fs] ceph: add flags parameter to send_cap_msg (Ilya Dryomov) [1450262]
-- [fs] ceph: update cap message struct version to 10 (Ilya Dryomov) [1450262]
-- [fs] ceph: define new argument structure for send_cap_msg (Ilya Dryomov) [1450262]
-- [fs] ceph: move xattr initialzation before the encoding past the ceph_mds_caps (Ilya Dryomov) [1450262]
-- [fs] ceph: fix minor typo in unsafe_request_wait (Ilya Dryomov) [1450262]
-- [fs] ceph: record truncate size/seq for snap data writeback (Ilya Dryomov) [1450262]
-- [fs] ceph: check availability of mds cluster on mount (Ilya Dryomov) [1450262]
-- [fs] ceph: try getting buffer capability for readahead/fadvise (Ilya Dryomov) [1450262]
-- [fs] ceph: fix scheduler warning due to nested blocking (Ilya Dryomov) [1450262]
-- [fs] ceph: fix printing wrong return variable in ceph_direct_read_write() (Ilya Dryomov) [1450262]
-- [fs] crush: include mapper.h in mapper.c (Ilya Dryomov) [1450262]
-- [fs] fix ceph_write_end() (Ilya Dryomov) [1450262]
-- [fs] ceph: don't set req->r_locked_dir in ceph_d_revalidate (Ilya Dryomov) [1450262]
-- [fs] libceph: initialize last_linger_id with a large integer (Ilya Dryomov) [1450262]
-- [fs] ceph: fix uninitialized dentry pointer in ceph_real_mount() (Ilya Dryomov) [1450262]
-- [fs] ceph: fix readdir vs fragmentation race (Ilya Dryomov) [1450262]
-- [fs] ceph: fix error handling in ceph_read_iter (Ilya Dryomov) [1450262]
-- [fs] crush: remove redundant local variable (Ilya Dryomov) [1450262]
-- [fs] crush: don't normalize input of crush_ln iteratively (Ilya Dryomov) [1450262]
-- [fs] libceph: ceph_build_auth() doesn't need ceph_auth_build_hello() (Ilya Dryomov) [1450262]
-- [fs] libceph: use CEPH_AUTH_UNKNOWN in ceph_auth_build_hello() (Ilya Dryomov) [1450262]
-- [fs] rbd: use kmalloc_array() in rbd_header_from_disk() (Ilya Dryomov) [1450262]
-- [fs] ceph: use list_move instead of list_del/list_add (Ilya Dryomov) [1450262]
-- [fs] ceph: handle CEPH_SESSION_REJECT message (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid accessing / when mounting a subpath (Ilya Dryomov) [1450262]
-- [fs] ceph: fix mandatory flock check (Ilya Dryomov) [1450262]
-- [fs] ceph: ignore error from invalidate_inode_pages2_range() in direct write (Ilya Dryomov) [1450262]
-- [fs] ceph: fix error handling of start_read() (Ilya Dryomov) [1450262]
-- [fs] rbd: add rbd_obj_request_error() helper (Ilya Dryomov) [1450262]
-- [fs] rbd: img_data requests don't own their page array (Ilya Dryomov) [1450262]
-- [fs] rbd: don't call rbd_osd_req_format_read() for !img_data requests (Ilya Dryomov) [1450262]
-- [fs] rbd: rework rbd_img_obj_exists_submit() error paths (Ilya Dryomov) [1450262]
-- [fs] rbd: don't crash or leak on errors in rbd_img_obj_parent_read_full_callback() (Ilya Dryomov) [1450262]
-- [fs] rbd: move bumping img_request refcount into rbd_obj_request_submit() (Ilya Dryomov) [1450262]
-- [fs] rbd: mark the original request as done if stat request fails (Ilya Dryomov) [1450262]
-- [fs] rbd: clean up asserts in rbd_img_obj_request_submit() helpers (Ilya Dryomov) [1450262]
-- [fs] rbd: change rbd_obj_request_submit() signature (Ilya Dryomov) [1450262]
-- [fs] ceph: do not modify fi->frag in need_reset_readdir() (Ilya Dryomov) [1450262]
-- [fs] ceph: initialize pathbase in the !dentry case in encode_caps_cb() (Ilya Dryomov) [1450262]
-- [fs] rbd: nuke the 32-bit pool id check (Ilya Dryomov) [1450262]
-- [fs] ceph: fix null pointer dereference in ceph_flush_snaps() (Ilya Dryomov) [1450262]
-- [fs] ceph: Correctly return NXIO errors from ceph_llseek (Ilya Dryomov) [1450262]
-- [fs] ceph: Mark the file cache as unreclaimable (Ilya Dryomov) [1450262]
-- [fs] ceph: optimize cap flush waiting (Ilya Dryomov) [1450262]
-- [fs] ceph: cleanup ceph_flush_snaps() (Ilya Dryomov) [1450262]
-- [fs] ceph: kick cap flushes before sending other cap message (Ilya Dryomov) [1450262]
-- [fs] ceph: introduce an inode flag to indicates if snapflush is needed (Ilya Dryomov) [1450262]
-- [fs] ceph: avoid sending duplicated cap flush message (Ilya Dryomov) [1450262]
-- [fs] ceph: unify cap flush and snapcap flush (Ilya Dryomov) [1450262]
-- [fs] ceph: use list instead of rbtree to track cap flushes (Ilya Dryomov) [1450262]
-- [fs] ceph: update types of some local varibles (Ilya Dryomov) [1450262]
-- [fs] ceph: include 'follows' of pending snapflush in cap reconnect message (Ilya Dryomov) [1450262]
-- [fs] ceph: update cap reconnect message to version 3 (Ilya Dryomov) [1450262]
-- [fs] ceph: mount non-default filesystem by name (Ilya Dryomov) [1450262]
-- [fs] libceph: fsmap.user subscription support (Ilya Dryomov) [1450262]
-- [fs] ceph: handle LOOKUP_RCU in ceph_d_revalidate (Ilya Dryomov) [1450262]
-- [fs] ceph: allow dentry_lease_is_valid to work under RCU walk (Ilya Dryomov) [1450262]
-- [fs] ceph: clear d_fsinfo pointer under d_lock (Ilya Dryomov) [1450262]
-- [fs] ceph: remove ceph_mdsc_lease_release (Ilya Dryomov) [1450262]
-- [fs] ceph: fix NULL dereference in ceph_queue_cap_snap() (Ilya Dryomov) [1450262]
-- [fs] ceph: wait unsafe sync writes for evicting inode (Ilya Dryomov) [1450262]
-- [fs] ceph: fix use-after-free bug in ceph_direct_read_write() (Ilya Dryomov) [1450262]
-- [fs] ceph: reduce i_nr_by_mode array size (Ilya Dryomov) [1450262]
-- [fs] ceph: set user pages dirty after direct IO read (Ilya Dryomov) [1450262]
-- [fs] ceph: fix d_obtain_alias() misuses (Ilya Dryomov) [1450262]
-- [fs] ceph: fix wake_up_session_cb() (Ilya Dryomov) [1450262]
-- [fs] ceph: don't use truncate_pagecache() to invalidate read cache (Ilya Dryomov) [1450262]
-- [fs] ceph: handle interrupted ceph_writepage() (Ilya Dryomov) [1450262]
-- [fs] ceph: make ceph_update_writeable_page() uninterruptible (Ilya Dryomov) [1450262]
-- [fs] libceph: make ceph_osdc_wait_request() uninterruptible (Ilya Dryomov) [1450262]
-- [fs] ceph: handle -EAGAIN returned by ceph_update_writeable_page() (Ilya Dryomov) [1450262]
-- [fs] ceph: make fault/page_mkwrite return VM_FAULT_OOM for -ENOMEM (Ilya Dryomov) [1450262]
-- [fs] ceph: block non-fatal signals for fault/page_mkwrite (Ilya Dryomov) [1450262]
-- [fs] ceph: make logical calculation functions return bool (Ilya Dryomov) [1450262]
-- [fs] ceph: improve fragtree change detection (Ilya Dryomov) [1450262]
-- [fs] ceph: keep leaf frag when updating fragtree (Ilya Dryomov) [1450262]
-- [fs] ceph: fix dir_auth check in ceph_fill_dirfrag() (Ilya Dryomov) [1450262]
-- [fs] ceph: don't assume frag tree splits in mds reply are sorted (Ilya Dryomov) [1450262]
-- [fs] ceph: using hash value to compose dentry offset (Ilya Dryomov) [1450262]
-- [fs] ceph: don't forbid marking directory complete after forward seek (Ilya Dryomov) [1450262]
-- [fs] ceph: record 'offset' for each entry of readdir result (Ilya Dryomov) [1450262]
-- [fs] ceph: define 'end/complete' in readdir reply as bit flags (Ilya Dryomov) [1450262]
-- [fs] ceph: define struct for dir entry in readdir reply (Ilya Dryomov) [1450262]
-- [fs] ceph: simplify 'offset in frag' (Ilya Dryomov) [1450262]
-- [fs] ceph: remove unnecessary checks in __dcache_readdir (Ilya Dryomov) [1450262]
-- [fs] ceph: search cache postion for dcache readdir (Ilya Dryomov) [1450262]
-- [fs] ceph: use CEPH_MDS_OP_RMXATTR request to remove xattr (Ilya Dryomov) [1450262]
-- [fs] ceph: report mount root in session metadata (Ilya Dryomov) [1450262]
-- [fs] ceph: don't show symlink target in debugfs/mdsc (Ilya Dryomov) [1450262]
-- [fs] ceph: don't call truncate_pagecache in ceph_writepages_start (Ilya Dryomov) [1450262]
-- [fs] ceph: renew caps for read/write if mds session got killed. (Ilya Dryomov) [1450262]
-- [fs] ceph: CEPH_FEATURE_MDSENC support (Ilya Dryomov) [1450262]
-- [fs] ceph_fill_trace(): don't bother with d_instantiate(dn, NULL) (Ilya Dryomov) [1450262]
-- [fs] rbd: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO (Ilya Dryomov) [1450262]
-
-* Mon Aug 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-700.el7]
-- [fs] dentry name snapshots (Miklos Szeredi) [1470403] {CVE-2017-7533}
-- [fs] Make statfs properly return read-only state after emergency remount (Carlos Maiolino) [1411446]
-- [fs] xfs: fix off-by-one on max nr_pages in xfs_find_get_desired_pgoff() (Eryu Guan) [1458997]
-- [fs] xfs: rework the inline directory verifiers (Brian Foster) [1440716]
-- [fs] xfs: verify inline directory data forks (Brian Foster) [1440716]
-- [fs] xfs: sanity check inode di_mode (Brian Foster) [1440716]
-- [fs] xfs: sanity check inode mode when creating new dentry (Brian Foster) [1440716]
-- [fs] xfs: replace xfs_mode_to_ftype table with switch statement (Brian Foster) [1440716]
-- [fs] xfs: add missing include dependencies to xfs_dir2.h (Brian Foster) [1440716]
-- [fs] xfs: sanity check directory inode di_size (Brian Foster) [1440716]
-- [fs] xfs: make the ASSERT() condition likely (Brian Foster) [1440716]
-- [fs] xfs: don't allow di_size with high bit set (Brian Foster) [1440716]
-- [fs] xfs: return an error when an inline directory is too small (Brian Foster) [1440716]
-- [fs] nfs: Always wait for I/O completion before unlock (Benjamin Coddington) [1462270]
-- [fs] locks: fix unlock when fcntl_setlk races with a close (Benjamin Coddington) [1462270]
-- [fs] locks: remove conditional lock release in middle of flock_lock_file (Jeff Layton) [1461552]
-- [pci] pci/aspm: Handle PCI-to-PCIe bridges as roots of PCIe hierarchies (Myron Stowe) [1441156]
-- [pci] pci/aspm: Don't retrain link if ASPM not possible (Myron Stowe) [1441156]
-- [pci] Enumerate switches below PCI-to-PCIe bridges (Myron Stowe) [1441156]
-- [scsi] Add STARGET_CREATED_REMOVE state to scsi_target_state (Ewan Milne) [1468727]
-- [scsi] qla2xxx: Fix extraneous ref on sp's after adapter break (Himanshu Madhani) [1448909]
-- [s390] compat: fix sys_sched_getattr compat wrapper (Arjun Vynipadath) [1471677]
-- [nvme] Test unit Ready broken for nvme drvices (David Milburn) [1478457]
-- [netdrv] aquantia: Switch to use napi_gro_receive (David Arcari) [1444348]
-
-* Wed Aug 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-699.el7]
-- [x86] efi: Setup separate EFI page tables in kexec paths (Bhupesh Sharma) [1102454]
-- [x86] platform/uv: Fix support for EFI_OLD_MEMMAP after BIOS callback updates (Bhupesh Sharma) [1102454]
-- [x86] efi: Map in physical addresses in efi_map_region_fixed (Bhupesh Sharma) [1102454]
-- [x86] platform/uv: Skip UV runtime services mapping in the efi_runtime_disabled case (Bhupesh Sharma) [1102454]
-- [x86] uv: Update uv_bios_call() to use efi_call_virt_pointer() (Bhupesh Sharma) [1102454]
-- [x86] efi: Convert efi_call_virt() to efi_call_virt_pointer() (Bhupesh Sharma) [1102454]
-- [x86] efi: Enable runtime call flag checking (Bhupesh Sharma) [1102454]
-- [firmware] efi/runtime-wrappers: Remove redundant #ifdefs (Bhupesh Sharma) [1102454]
-- [x86] efi: Move to generic {__, }efi_call_virt() (Bhupesh Sharma) [1102454]
-- [firmware] efi/runtime-wrappers: Add {__, }efi_call_virt() templates (Bhupesh Sharma) [1102454]
-- [x86] efi: Build our own page table structures (Bhupesh Sharma) [1102454]
-- [x86] efi: Hoist page table switching code into efi_call_virt() (Bhupesh Sharma) [1102454]
-- [x86] efi: Clean up the efi_call_phys_[prolog|epilog]() save/restore interaction (Bhupesh Sharma) [1102454]
-- [x86] efi: Fix 7-parameter efi_call()s (Bhupesh Sharma) [1102454]
-- [x86] asm/efi: Create a stack frame in efi_call() (Bhupesh Sharma) [1102454]
-- [x86] platform/uv: Bring back the call to map_low_mmrs in uv_system_init (Bhupesh Sharma) [1102454]
-- [x86] mm/pat: Ensure cpa->pfn only contains page frame numbers (Bhupesh Sharma) [1102454]
-- [kernel] efi/x86: Move UEFI Runtime Services wrappers to generic code (Bhupesh Sharma) [1102454]
-- [x86] platform/uv: Remove EFI memmap quirk for UV2+ (Bhupesh Sharma) [1102454]
-- [kernel] efi: Use correct type for struct efi_memory_map::phys_map (Bhupesh Sharma) [1102454]
-- [x86] efi: Fix boot crash by mapping EFI memmap entries bottom-up at runtime, instead of top-down (Bhupesh Sharma) [1102454]
-- [x86] efi: Disable interrupts around EFI calls, not in the epilog/prolog calls (Bhupesh Sharma) [1102454]
-- [x86] efi: Mark initialization code as such (Bhupesh Sharma) [1102454]
-- [x86] efi: Update comment regarding required phys mapped EFI services (Bhupesh Sharma) [1102454]
-- [x86] efi: Clear EFI_RUNTIME_SERVICES if failing to enter virtual mode (Bhupesh Sharma) [1102454]
-- [kernel] efi: Move noefi early param code out of x86 arch code (Bhupesh Sharma) [1102454]
-- [x86] arch/x86: Do not access EFI memory map if it is not available (Bhupesh Sharma) [1102454]
-- [firmware] efi: Use early_mem*() instead of early_io*() (Bhupesh Sharma) [1102454]
-- [x86] efi: Use early_memunmap() to squelch sparse errors (Bhupesh Sharma) [1102454]
-- [x86] mm: sparse warning fix for early_memremap (Bhupesh Sharma) [1102454]
-- [x86] efi: Move all workarounds to a separate file quirks.c (Bhupesh Sharma) [1102454]
-- [x86] efi: Delete out-of-date comments of efi_query_variable_store (Bhupesh Sharma) [1102454]
-- [kernel] efi: Move facility flags to struct efi (Bhupesh Sharma) [1102454]
-
-* Tue Aug 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-698.el7]
-- [pci] aer: Log aer_inject error injections (Myron Stowe) [1466886]
-- [pci] aer: Log actual error causes in aer_inject (Myron Stowe) [1466886]
-- [pci] aer: Use dev_warn() in aer_inject (Myron Stowe) [1466886]
-- [pci] aer: Fix aer_inject error codes (Myron Stowe) [1466886]
-- [pci] aer: Use list_first_entry_or_null() to simplify code (Myron Stowe) [1466886]
-- [pci] aer: Restore pci_ops pointer while calling original pci_ops (Myron Stowe) [1466886]
-- [pci] aer: Rename pci_ops_aer to aer_inj_pci_ops (Myron Stowe) [1466886]
-- [pci] aer: Flush workqueue on device remove to avoid use-after-free (Myron Stowe) [1466886]
-- [pci] Fix unaligned accesses in VC code (Myron Stowe) [1466891]
-- [pci] Do not treat EPROBE_DEFER as device attach failure (Myron Stowe) [1466891]
-- [pci] Fix BUG on device attach failure (Myron Stowe) [1466891]
-- [pci] Simplify pci_create_attr() control flow (Myron Stowe) [1466891]
-- [pci] Don't leak memory if sysfs_create_bin_file() fails (Myron Stowe) [1466891]
-- [pci] Wait for up to 1000ms after FLR reset (Myron Stowe) [1466891]
-- [pci] Support SR-IOV on any function type (Myron Stowe) [1466891]
-- [pci] Consolidate PCI DMA constants and interfaces in linux/pci-dma-compat.h (Myron Stowe) [1466891]
-- [pci] Move pci_dma_* helpers to common code (Myron Stowe) [1466891]
-- [pci] Cleanup pci/pcie/Kconfig whitespace (Myron Stowe) [1466891]
-- [pci] Include pci/hotplug Kconfig directly from pci/Kconfig (Myron Stowe) [1466891]
-- [pci] Include pci/pcie/Kconfig directly from pci/Kconfig (Myron Stowe) [1466891]
-- [pci] Fix broken URL for Dell biosdevname (Myron Stowe) [1466891]
-- [pci] Remove includes of asm/pci-bridge.h (Myron Stowe) [1466891]
-- [pci] Remove empty asm-generic/pci-bridge.h (Myron Stowe) [1466891]
-- [pci] Remove includes of empty asm-generic/pci-bridge.h (Myron Stowe) [1466891]
-- [pci] pme: Restructure pcie_pme_suspend() to prevent compiler warning (Myron Stowe) [1466891]
-- [pci] pme: Remove redundant port lookup (Myron Stowe) [1466891]
-- [pci] Check device_attach() return value always (Myron Stowe) [1466891]
-- [pci] pci / pm: handle failure to enable wakeup on PCIe PME (Myron Stowe) [1466891]
-- [pci] pci / pm: Make PCIe PME interrupts wake up from suspend-to-idle (Myron Stowe) [1466891]
-- [pci] shpchp: Constify hpc_ops structure (Myron Stowe) [1462837]
-- [pci] Use to_pci_dev() instead of open-coding it (Myron Stowe) [1462837]
-- [pci] Add function 1 DMA alias quirk for Lite-On/Plextor M6e/Marvell 88SS9183 (Myron Stowe) [1462837]
-- [pci] Avoid iterating through memory outside the resource window (Myron Stowe) [1462837]
-- [pci] Fix minimum allocation address overwrite (Myron Stowe) [1462837]
-- [pci] ibmphp: Remove unneeded NULL test (Myron Stowe) [1462837]
-- [pci] hotplug: Use list_for_each_entry() to simplify code (Myron Stowe) [1462837]
-- [pci] acpiphp_ibm: Fix null dereferences on null ibm_slot (Myron Stowe) [1462837]
-- [x86] pci: Simplify pci_bios_{read,write} (Myron Stowe) [1462837]
-- [pci] Simplify config space size computation (Myron Stowe) [1462837]
-- [x86] pci: Clarify AMD Fam10h config access restrictions comment (Myron Stowe) [1462837]
-- [pci] Print warnings for all invalid expansion ROM headers (Myron Stowe) [1462837]
-- [pci] Check for PCI_HEADER_TYPE_BRIDGE equality, not bitmask (Myron Stowe) [1462837]
-- [pci] aspm: Make sysfs link_state_store() consistent with link_state_show() (Myron Stowe) [1462837]
-
-* Tue Aug 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-697.el7]
-- [pinctrl] intel: Set pin direction properly (David Arcari) [1467490]
-- [pinctrl] intel: set default handler to be handle_bad_irq() (David Arcari) [1467490]
-- [pinctrl] intel: Only restore pins that are used by the driver (David Arcari) [1467490]
-- [pinctrl] intel: Configure GPIO chip IRQ as wakeup interrupts (David Arcari) [1467490]
-- [pinctrl] intel: Protect set wake flow by spin lock (David Arcari) [1467490]
-- [pinctrl] intel: Prevent force threading of the interrupt handler (David Arcari) [1467490]
-- [pinctrl] intel: Use raw_spinlock for locking (David Arcari) [1467490]
-- [pinctrl] intel: implement gpio_irq_enable (David Arcari) [1467490]
-- [pinctrl] intel: fix offset calculation issue of register PAD_OWN (David Arcari) [1467490]
-- [pinctrl] intel: fix bug of register offset calculation (David Arcari) [1467490]
-- [pinctrl] intel: make the high level interrupt working (David Arcari) [1467490]
-- [pinctrl] intel: Use devm_pinctrl_register() for pinctrl registration (David Arcari) [1467490]
-- [kernel] gpio/pinctrl: sunxi: stop poking around in private vars (David Arcari) [1467490]
-- [pinctrl] intel: use gpiochip data pointer (David Arcari) [1467490]
-- [kernel] gpio: add a data pointer to gpio_chip (David Arcari) [1467490]
-- [pinctrl] intel: Allow requesting pins which are in ACPI mode as GPIOs (David Arcari) [1467490]
-- [pinctrl] intel: Add support for multiple GPIO chips sharing the interrupt (David Arcari) [1467490]
-- [gpio] handle also nested irqchips in the chained handler set-up (David Arcari) [1467490]
-- [gpio] set parent irq on chained handlers (David Arcari) [1467490]
-- [gpio] do not set up hardware for IRQ_TYPE_NONE (David Arcari) [1467490]
-- [kernel] gpio: support threaded interrupts in irqchip helpers (David Arcari) [1467490]
-- [kernel] gpio: unmap gpio irqs properly (David Arcari) [1467490]
-- [gpio] set data first, then chip and handler (David Arcari) [1467490]
-- [i2c] i801: Allow ACPI SystemIO OpRegion to conflict with PCI BAR (David Arcari) [1464196]
-- [i2c] i801: Add runtime PM support with autosuspend (David Arcari) [1464196]
-- [rtc] interface: Validate alarm-time before handling rollover (Steve Best) [1458401]
-- [rtc] interface: fix infinite loop in initializing the alarm (Steve Best) [1458401]
-- [rtc] opal: Handle disabled TPO in opal_get_tpo_time() (Steve Best) [1458401]
-- [hid] plantronics: Update to map volume up/down controls (Torez Smith) [1245271]
-- [hid] plantronics: remove superfluous .probe() (Torez Smith) [1245271]
-- [hid] plantronics: fix errant mouse events (Torez Smith) [1245271]
-- [misc] mei: make sysfs modalias format similar as uevent modalias (Pratyush Anand) [1451599]
-- [netdrv] e1000e: Add Support for 38.4MHZ frequency (David Arcari) [1475413]
-- [netdrv] e1000e: Add Support for CannonLake (David Arcari) [1475413]
-- [netdrv] e1000e: Initial Support for CannonLake (David Arcari) [1475413]
-- [netdrv] bonding: commit link status change after propose (Jarod Wilson) [1469987 1469790]
-- [netdrv] bonding: avoid NETDEV_CHANGEMTU event when unregistering slave (Jarod Wilson) [1470603]
-
-* Mon Aug 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-696.el7]
-- [x86] platform/uv/bau: Disable BAU on single hub configurations (Frank Ramsay) [1473353 1472455]
-- [x86] platform/uv/bau: Fix congested_response_us not taking effect (Frank Ramsay) [1472455]
-- [x86] mce: Look in genpool instead of mcelog for pending error records (Oleksandr Natalenko) [1468257]
-- [x86] Avoid using object after free in genpool (Oleksandr Natalenko) [1468257]
-- [x86] kvm: svm: suppress unnecessary NMI singlestep on GIF=0 and nested exit (Ladi Prosek) [1440025]
-- [x86] kvm: svm: don't NMI singlestep over event injection (Ladi Prosek) [1440025]
-- [x86] kvm: svm: hide TF/RF flags used by NMI singlestep (Ladi Prosek) [1440025]
-- [x86] kvm: nsvm: do not forward NMI window singlestep VM exits to L1 (Ladi Prosek) [1440025]
-- [x86] kvm: svm: introduce disable_nmi_singlestep helper (Ladi Prosek) [1440025]
-- [x86] intel-family.h: Add GEMINI_LAKE SOC (Steve Best) [1461882]
-- [tools] perf machine: Fix segfault for kernel.kptr_restrict=2 (Jiri Olsa) [1464682]
-- [tools] perf symbols: Accept symbols starting at address 0 (Jiri Olsa) [1464682]
-- [powerpc] perf: Add per-event excludes on Power8 (Jiri Olsa) [1458868]
-- [powerpc] perf: Pass the struct perf_events down to compute_mmcr() (Jiri Olsa) [1458868]
-- [powerpc] fadump: provide a helpful error message (Pingfan Liu) [1438695]
-- [powerpc] fadump: avoid holes in boot memory area when fadump is registered (Pingfan Liu) [1438695]
-- [powerpc] fadump: avoid duplicates in crash memory ranges (Pingfan Liu) [1438695]
-- [powerpc] fadump: Update fadump documentation (Pingfan Liu) [1438695]
-- [powerpc] fadump: Reserve memory at an offset closer to bottom of RAM (Pingfan Liu) [1438695]
-- [powerpc] Fix dedotify for binutils >= 2.26 (Gustavo Duarte) [1464009]
-- [powerpc] Simplify module TOC handling (Gustavo Duarte) [1464009]
-
-* Mon Aug 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-695.el7]
-- [mm] rmap: use pte lock not mmap_sem to set PageMlocked (Andrea Arcangeli) [1450367]
-- [mm] rmap: cleanup ttu_flags (Andrea Arcangeli) [1450367]
-- [mm] rmap: don't call mmu_notifier_invalidate_page() during munlock (Andrea Arcangeli) [1450367]
-- [mm] thp: respect MPOL_PREFERRED policy with non-local node (Larry Woodman) [1476709]
-- [mm] page-writeback.c: fix divide by zero in bdi_dirty_limits() (Jerome Marchand) [1465430]
-- [fs] proc: revert /proc/<pid>/maps [stack:TID] annotation (Waiman Long) [1448534]
-- [x86] kvm: vmx: check apicv is active before using VT-d posted interrupt (Paul Lai) [1377197]
-- [x86] vmware: Use tsc_khz value for calibrate_cpu() (Prarit Bhargava) [1475716]
-- [x86] apic: Handle zero vector gracefully in clear_vector_irq() (Prarit Bhargava) [1441091]
-- [char] ipmi: use rcu lock around call to intf->handlers->sender() (Tony Camuso) [1419765]
-- [misc] cxl: Force context lock during EEH flow (Steve Best) [1457389]
-- [kernel] alarmtimer: Prevent overflow of relative timers (Prarit Bhargava) [1458643]
-- [netdrv] cxgb4: Fix netdev_features flag (Arjun Vynipadath) [1361097]
-- [netdrv] cxgb4: avoid crash on PCI error recovery path (Gustavo Duarte) [1456990]
-- [netdrv] bonding: fix 802.3ad support for 5G and 50G speeds (Jarod Wilson) [1461334]
-- [cpufreq] intel_pstate: Fix unsafe HWP MSR access (Steve Best) [1457552]
-
-* Thu Aug 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-694.el7]
-- [fs] xfs: use ->b_state to fix buffer I/O accounting release race (Brian Foster) [1452228]
-- [fs] fix the regression from "direct-io: Fix negative return from dio read beyond eof" (Eric Sandeen) [1473549]
-- [fs] direct-io: Fix negative return from dio read beyond eof (Eric Sandeen) [1473549]
-- [pci] hv: Use vPCI protocol version 1.2 (Vitaly Kuznetsov) [1459202]
-- [pci] hv: Add vPCI version protocol negotiation (Vitaly Kuznetsov) [1459202]
-- [pci] hv: Use page allocation for hbus structure (Vitaly Kuznetsov) [1459202]
-- [pci] hv: Fix comment formatting and use proper integer fields (Vitaly Kuznetsov) [1459202]
-- [nvme] Free bio_aux struct when done with bio (David Milburn) [1455553]
-- [nvme] nvmet-rdma: occasionally flush ongoing controller teardown (Slava Shwartsman) [1467998]
-- [crypto] api - Move alg ref count init to crypto_check_alg (Herbert Xu) [1473593]
-- [netdrv] cxgb4: reduce resource allocation in kdump kernel (Sai Vemuri) [1379762]
-- [netdrv] cxgb4: fix a NULL dereference (Sai Vemuri) [1379762]
-- [netdrv] cxgb4: fix BUG() on interrupt deallocating path of ULD (Mauricio Oliveira) [1465554]
-- [netdrv] bonding: Fix transmit load balancing in balance-alb mode (Jarod Wilson) [1473481]
-- [powerpc] eeh: Fix partial hotplug criterion (Gustavo Duarte) [1458508]
-- [powerpc] eeh: Fix wrong argument passed to eeh_rmv_device() (Gustavo Duarte) [1458508]
-- [firewire] net: guard against rx buffer overflows (Neil Horman) [1393792] {CVE-2016-8633}
-
-* Thu Jul 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-693.el7]
-- [x86] crypto: sha1-ssse3 - Disable avx2 (Benjamin Coddington) [1346106]
-- [net] geneve: fix hlist corruption (Jiri Benc) [1464292]
-- [net] vxlan: fix hlist corruption (Jiri Benc) [1464292]
-- [net] vxlan: fix use-after-free on deletion (Jiri Benc) [1464292]
-
-* Thu Jul 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-692.el7]
-- [pci] Avoid FLR for Intel 82579 NICs (Jarod Wilson) [966840]
-- [net] netfilter: nf_ct_dccp/sctp: fix memory leak after netns cleanup (Davide Caratti) [1458687]
-- [net] netfilter: udplite: Remove duplicated udplite4/6 declaration (Davide Caratti) [1458687]
-- [net] netfilter: nat: merge udp and udplite helpers (Davide Caratti) [1458687]
-- [net] netfilter: merge udp and udplite conntrack helpers (Davide Caratti) [1458687]
-- [netdrv] mlx5: Tolerate irq_set_affinity_hint() failures (Kamal Heib) [1465830]
-- [netdrv] bonding: Restore old symlink names in sysfs to preserve ABI (Neil Horman) [1461892]
-
-* Thu Jun 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-691.el7]
-- [redhat] spec: Update dracut dependency to enable more algorithms as FIPS compliant (Rafael Aquini) [1466097]
-
-* Wed Jun 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-690.el7]
-- [mm] fix new crash in unmapped_area_topdown() (Larry Woodman) [1463241] {CVE-2017-1000364}
-- [mm] larger stack guard gap, between vmas (Larry Woodman) [1463241] {CVE-2017-1000364}
-- [mm] Revert "enlarge stack guard gap" (Larry Woodman) [1463241] {CVE-2017-1000364}
-- [crypto] testmgr - Reenable sha1/aes in FIPS mode (Herbert Xu) [1465234]
-- [crypto] testmgr - mark more algorithms as FIPS compliant (Herbert Xu) [1465234]
-- [target] tcmu: break up free_device callback (Mike Christie) [1430225]
-- [target] tcmu: perfom device add and del synchronously (Mike Christie) [1430225]
-- [target] tcmu: use idr for se_device dev index (Mike Christie) [1430225]
-- [target] tcmu: prep for sync add/rm device support (Mike Christie) [1430225]
-
-* Tue Jun 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-689.el7]
-- [net] bridge: allow IPv6 when multicast flood is disabled (Ivan Vecera) [1464167]
-
-* Tue Jun 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-688.el7]
-- [s390] move _text symbol to address higher than zero (Jiri Olsa) [1464800]
-- [netdrv] cxgb4: notify uP to route ctrlq compl to rdma rspq (Sai Vemuri) [1463324]
-- [powerpc] Add HAVE_PERF_USER_STACK_DUMP support (Jiri Olsa) [1449182]
-- [tools] perf report: Ensure the perf DSO mapping matches what libdw sees (Jiri Olsa) [1449182]
-- [tools] perf report: Include partial stacks unwound with libdw (Jiri Olsa) [1449182]
-- [tools] perf: libdw support for powerpc (Jiri Olsa) [1449182]
-- [firmware] efi/esrt: Cleanup bad memory map log messages (Prarit Bhargava) [1380812]
-- [firmware] efi/esrt: Fix typo in pr_err() message (Prarit Bhargava) [1380812]
-- [firmware] efi/esrt: Use memremap not ioremap to access ESRT table in memory (Prarit Bhargava) [1380812]
-- [firmware] efi: Work around ia64 build problem with ESRT driver (Prarit Bhargava) [1380812]
-- [firmware] efi/esrt: Don't preformat name (Prarit Bhargava) [1380812]
-- [firmware] efi: Make efi/esrt.c driver explicitly non-modular (Prarit Bhargava) [1380812]
-- [firmware] efi/esrt: Fix some compiler warnings (Prarit Bhargava) [1380812]
-- [firmware] efi: Add esrt support (Prarit Bhargava) [1380812]
-- [firmware] efi: Rename efi_guid_unparse to efi_guid_to_str (Prarit Bhargava) [1380812]
-
-* Mon Jun 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-687.el7]
-- [fs] mntns: Remove incorrect put_mnt_ns ("Eric W. Biederman") [1463072]
-- [md] dm raid: fix oops on upgrading to extended superblock format (Mike Snitzer) [1464274]
-- [md] dm io: fix duplicate bio completion due to missing ref count (Mike Snitzer) [1461519]
-- [net] gro_cells: mark napi struct as not busy poll candidates (Eelco Chaudron) [1460078]
-- [x86] boot/kaslr: Skip kernel text relocation if no kaslr action is done (Baoquan He) [1458738]
-- [char] tpm/tpm_crb: enter the low power state upon device suspend (Jerry Snitselaar) [1463001]
-- [input] wacom: fix Wacom Cintiq 27QHD max pressure (Aristeu Rozanski) [1461910]
-- [kernel] nohz: Fix spurious warning when hrtimer and clockevent get out of sync (Frederic Weisbecker) [1366043]
-- [kernel] nohz: Fix buggy tick delay on IRQ storms (Frederic Weisbecker) [1366043]
-- [kernel] nohz: Reset next_tick cache even when the timer has no regs (Frederic Weisbecker) [1366043]
-- [kernel] nohz: Fix collision between tick and other hrtimers, again (Frederic Weisbecker) [1366043]
-- [kernel] nohz: Add hrtimer sanity check (Frederic Weisbecker) [1366043]
-- [kernel] revert "nohz: Fix collision between tick and other hrtimers" (Frederic Weisbecker) [1366043]
-- [powerpc] do not make the entire heap executable (Denys Vlasenko) [1330064]
-
-* Wed Jun 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-686.el7]
-- [fs] nfsv4.1: Keep a reference on lock states while checking (Scott Mayhew) [1458721]
-- [fs] nfsv4.1: Handle NFS4ERR_OLD_STATEID in nfs4_reclaim_open_state (Scott Mayhew) [1458721]
-- [fs] nfsv4: Don't call close if the open stateid has already been cleared (Scott Mayhew) [1458721]
-- [fs] nfsv4: Fix CLOSE races with OPEN (Scott Mayhew) [1458721]
-- [fs] nfsv4.1: Fix a regression in DELEGRETURN (Scott Mayhew) [1458721]
-- [fs] nfs: nfs_rename() - revalidate directories on -ERESTARTSYS (Benjamin Coddington) [1459404]
-- [fs] revert "nfs: nfs_rename() handle -ERESTARTSYS dentry left behind" (Benjamin Coddington) [1459404]
-- [s390] pci: moving check and allocation of device_rh ahead (Wei Xu) [1455117]
-- [netdrv] cxgb4: handle serial flash interrupt (Sai Vemuri) [1462266]
-- [netdrv] cxgb4: fix to bring link down after adapter crash (Sai Vemuri) [1462266]
-- [netdrv] cxgb4: handle interrupt raised when FW crashes (Sai Vemuri) [1462266]
-- [security] keys: Change the name of the dead type to ".dead" to prevent user access (David Howells) [1439264] {CVE-2017-6951}
-- [security] keys: Protect request_key() against a type with no match function (David Howells) [1433216] {CVE-2017-2647}
-- [security] keys: Disallow keyrings beginning with '.' to be joined as session keyrings (David Howells) [1389309] {CVE-2016-9604}
-
-* Mon Jun 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-685.el7]
-- [mm] enlarge stack guard gap (Larry Woodman) [1452733] {CVE-2017-1000364}
-- [mm] userfaultfd: shmem: handle coredumping in handle_userfault() (Andrea Arcangeli) [1462267]
-- [fs] nfs: Don't send mode again in post-EXCLUSIVE4_1 SETATTR with umask (Benjamin Coddington) [1449466]
-- [hid] hid_wacom: temporaly disable power_supply usage from driver (Aristeu Rozanski) [1458348]
-- [drm] mgag200: Fix to always set HiPri for G200e4 V2 (Rob Clark) [1461985]
-- [nvme] submit nvme_admin_activate_fw to admin queue (David Milburn) [1456978]
-- [netdrv] i40e: set VFs to untrusted mode by default (Stefan Assmann) [1462105]
-- [netdrv] tun: use symmetric hash (Jason Wang) [1458645]
-- [crypto] qat: copy back iv on completion (Neil Horman) [1446394]
-- [crypto] chcr - Fix txq ids (Sai Vemuri) [1457392]
-- [crypto] chcr - fix itnull.cocci warnings (Sai Vemuri) [1426189]
-- [crypto] chcr - Change flow IDs (Sai Vemuri) [1426189]
-- [crypto] chcr - Check device is allocated before use (Sai Vemuri) [1426189]
-
-* Mon Jun 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-684.el7]
-- [crypto] cryptd - process CRYPTO_ALG_INTERNAL (Herbert Xu) [1459191]
-- [crypto] testmgr - don't use interruptible wait in tests (Herbert Xu) [1459191]
-- [crypto] testmgr - use CRYPTO_ALG_INTERNAL (Herbert Xu) [1459191]
-- [crypto] testmgr - Disable fips-allowed for authenc() and des() ciphers (Herbert Xu) [1459191]
-- [x86] crypto: twofish_avx - mark Twofish AVX helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: serpent_sse2 - mark Serpent SSE2 helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: serpent_avx - mark Serpent AVX helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: serpent_avx2 - mark Serpent AVX2 helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: cast6_avx - mark CAST6 helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: camellia_aesni_avx - mark AVX Camellia helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: cast5_avx - mark CAST5 helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: camellia_aesni_avx2 - mark AES-NI Camellia helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: clmulni - mark ghash clmulni helper ciphers (Herbert Xu) [1459191]
-- [x86] crypto: aesni - mark AES-NI helper ciphers (Herbert Xu) [1459191]
-- [crypto] testmgr - add aead cbc des, des3_ede tests (Herbert Xu) [1459191]
-- [crypto] testmgr - add aead null encryption test vectors (Herbert Xu) [1459191]
-- [crypto] algif_skcipher - initialize upon init request (Herbert Xu) [1459191]
-- [crypto] af_alg - zeroize key data (Herbert Xu) [1459191]
-- [crypto] fix broken crypto_register_instance() module handling (Herbert Xu) [1459191]
-- [crypto] api - remove instance when test failed (Herbert Xu) [1459191]
-- [crypto] api - Change crypto_unregister_instance argument type (Herbert Xu) [1459191]
-- [crypto] api - Fix races in crypto_unregister_instance (Herbert Xu) [1459191]
-- [crypto] rng - Zero seed in crypto_rng_reset (Herbert Xu) [1459191]
-- [crypto] cmac - allow usage in FIPS mode (Herbert Xu) [1459191]
-- [crypto] drbg - remove FIPS 140-2 continuous test (Herbert Xu) [1459191]
-- [crypto] testmgr - mark authenticated ctr(aes) also as FIPS able (Herbert Xu) [1459191]
-- [crypto] drbg - do not call drbg_instantiate in healt test (Herbert Xu) [1459191]
-- [crypto] rsa - allow keys >= 2048 bits in FIPS mode (Herbert Xu) [1459191]
-- [crypto] testmgr - mark ctr(des3_ede) as fips_allowed (Herbert Xu) [1459191]
-- [crypto] testmgr - Allow ecb(cipher_null) in FIPS mode (Herbert Xu) [1459191]
-- [crypto] ansi_cprng - ANSI X9.31 DRNG is not allowed in FIPS 140-2 (Herbert Xu) [1459191]
-
-* Mon Jun 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-683.el7]
-- [mm] hmm: RHEL specific, properly handle pte_file() case within HMM (Jerome Glisse) [1460044]
-- [mm] hmm: remove extra sanity check to avoid crash (Jerome Glisse) [1459259]
-- [md] revert "dm mirror: use all available legs on multiple failures" (Mike Snitzer) [1436374]
-- [md] dm-raid: up target version to show MD deadlock fixes are present (Heinz Mauelshagen) [1443999]
-- [md] fix suspend/write deadlock (Heinz Mauelshagen) [1443999]
-- [md] fix single core deadlock (Heinz Mauelshagen) [1443999]
-- [x86] complete introduction of feature word 16 (Paolo Bonzini) [1413348]
-- [drm] amdgpu: Program ring for vce instance 1 at its register space (Rob Clark) [1458391]
-- [drm] amdgpu: change wptr to 64 bits (Rob Clark) [1458391]
-- [scsi] lpfc: Null pointer dereference when log_verbose is set to 0xffffffff (Maurizio Lombardi) [1459443]
-- [kernel] sched/deadline: Use the revised wakeup rule for suspending constrained dl tasks (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Fix dl_bw comment (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Zero out positive runtime after throttling constrained tasks (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Use deadline instead of period when calculating overflow (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Throttle a constrained deadline task activated after the deadline (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Make sure the replenishment timer fires in the next period (Xunlei Pang) [1433064]
-- [kernel] sched/deadline: Add missing update_rq_clock() in dl_task_timer() (Xunlei Pang) [1433064]
-- [target] tcmu: increase ring buffer size (Mike Christie) [1407015]
-- [netdrv] bnx2x: Don't post statistics to malicious VFs (Michal Schmidt) [1449872]
-- [netdrv] bnx2x: Allow vfs to disable txvlan offload (Michal Schmidt) [1449872]
-- [infiniband] rdma/iw_cxgb4: fix the calculation of ipv6 header size (Sai Vemuri) [1458389]
-
-* Thu Jun 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-682.el7]
-- [char] random: Fix crashes with sparse node ids (Herbert Xu) [1457281 1270982]
-- [char] random: use for_each_online_node() to iterate over NUMA nodes (Herbert Xu) [1457281 1270982]
-- [char] random: strengthen input validation for RNDADDTOENTCNT (Herbert Xu) [1457281 1270982]
-- [char] random: add backtracking protection to the CRNG (Herbert Xu) [1270982 1457281]
-- [char] random: make /dev/urandom scalable for silly userspace programs (Herbert Xu) [1270982 1457281]
-- [char] random: replace non-blocking pool with a Chacha20-based CRNG (Herbert Xu) [1270982 1457281]
-- [char] random: properly align get_random_int_hash (Herbert Xu) [1270982 1457281]
-- [char] random: print a warning for the first ten uninitialized random users (Herbert Xu) [1270982 1457281]
-- [char] random: initialize the non-blocking pool via add_hwgenerator_randomness() (Herbert Xu) [1270982 1457281]
-- [kernel] random: Add callback API for random pool readiness (Herbert Xu) [1270982 1457281]
-- [char] random: Fix fast_mix() function (Herbert Xu) [1270982 1457281]
-- [char] random: limit the contribution of the hw rng to at most half (Herbert Xu) [1270982 1457281]
-- [char] random: check for increase of entropy_count because of signed conversion (Herbert Xu) [1270982 1457281]
-- [char] random: use registers from interrupted code for CPU's w/o a cycle counter (Herbert Xu) [1270982 1457281]
-- [char] random: use an improved fast_mix() function (Herbert Xu) [1270982 1457281]
-- [char] random: clean up interrupt entropy accounting for archs w/o cycle counters (Herbert Xu) [1270982 1457281]
-- [char] random: only update the last_pulled time if we actually transferred entropy (Herbert Xu) [1270982 1457281]
-- [char] random: remove unneeded hash of a portion of the entropy pool (Herbert Xu) [1270982 1457281]
-- [char] random: always update the entropy pool under the spinlock (Herbert Xu) [1270982 1457281]
-- [char] random: fix nasty entropy accounting bug (Herbert Xu) [1270982 1457281]
-- [char] random: fix BUG_ON caused by accounting simplification (Herbert Xu) [1270982 1457281]
-- [kernel] random: Add arch_has_random[_seed]() (Herbert Xu) [1270982 1457281]
-- [char] random: If we have arch_get_random_seed*(), try it before blocking (Herbert Xu) [1270982 1457281]
-- [char] random: Use arch_get_random_seed*() at init time and once a second (Herbert Xu) [1270982 1457281]
-- [kernel] x86, random: Enable the RDSEED instruction (Herbert Xu) [1270982 1457281]
-- [char] random: use the architectural HWRNG for the SHA's IV in extract_buf() (Herbert Xu) [1270982 1457281]
-- [char] random: clarify bits/bytes in wakeup thresholds (Herbert Xu) [1270982 1457281]
-- [char] random: entropy_bytes is actually bits (Herbert Xu) [1270982 1457281]
-- [char] random: simplify accounting code (Herbert Xu) [1270982 1457281]
-- [char] random: tighten bound on random_read_wakeup_thresh (Herbert Xu) [1270982 1457281]
-- [char] random: forget lock in lockless accounting (Herbert Xu) [1270982 1457281]
-- [char] random: simplify accounting logic (Herbert Xu) [1270982 1457281]
-- [char] random: fix comment on "account" (Herbert Xu) [1270982 1457281]
-- [char] random: simplify loop in random_read (Herbert Xu) [1270982 1457281]
-- [char] random: fix description of get_random_bytes (Herbert Xu) [1270982 1457281]
-- [char] random: fix comment on proc_do_uuid (Herbert Xu) [1270982 1457281]
-- [char] random: fix typos / spelling errors in comments (Herbert Xu) [1270982 1457281]
-- [char] random: add debugging code to detect early use of get_random_bytes() (Herbert Xu) [1270982 1457281]
-- [char] random: initialize the last_time field in struct timer_rand_state (Herbert Xu) [1270982 1457281]
-- [char] random: don't zap entropy count in rand_initialize() (Herbert Xu) [1270982 1457281]
-- [char] random: make add_timer_randomness() fill the nonblocking pool first (Herbert Xu) [1270982 1457281]
-- [char] random: convert DEBUG_ENT to tracepoints (Herbert Xu) [1270982 1457281]
-- [char] random: push extra entropy to the output pools (Herbert Xu) [1270982 1457281]
-- [char] random: drop trickle mode (Herbert Xu) [1270982 1457281]
-- [char] random: adjust the generator polynomials in the mixing function slightly (Herbert Xu) [1270982 1457281]
-- [char] random: speed up the fast_mix function by a factor of four (Herbert Xu) [1270982 1457281]
-- [char] random: cap the rate which the /dev/urandom pool gets reseeded (Herbert Xu) [1270982 1457281]
-- [char] random: optimize the entropy_store structure (Herbert Xu) [1270982 1457281]
-- [char] random: optimize spinlock use in add_device_randomness() (Herbert Xu) [1270982 1457281]
-- [char] random: fix the tracepoint for get_random_bytes(_arch) (Herbert Xu) [1270982 1457281]
-- [char] random: mix in architectural randomness earlier in extract_buf() (Herbert Xu) [1270982 1457281]
-
-* Tue Jun 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-681.el7]
-- [fs] mnt: Move unprivileged use of the mntns to tech preview ("Eric W. Biederman") [1350553]
-- [fs] nfs: Don't print a pNFS error if we aren't using pNFS (Benjamin Coddington) [1459899]
-- [fs] pnfs: add a new mechanism to select a layout driver according to an ordered list (Benjamin Coddington) [1459899]
-- [fs] pnfs: track multiple layout types in fsinfo structure (Benjamin Coddington) [1459899]
-- [fs] nfsd: Fix up the "supattr_exclcreat" attributes ("J. Bruce Fields") [1460376]
-- [fs] nfsd: encoders mustn't use unitialized values in error cases ("J. Bruce Fields") [1460365]
-- [fs] nfs: Fix initialization of nfs_page_array->npages (Benjamin Coddington) [1457284]
-- [net] ipv6: Fix leak in ipv6_gso_segment() (Eric Garver) [1459950] {CVE-2017-9074}
-- [net] ipv6: xfrm: Handle errors reported by xfrm6_find_1stfragopt() (Eric Garver) [1459950] {CVE-2017-9074}
-- [net] ipv6: Check ip6_find_1stfragopt() return value properly (Eric Garver) [1459950] {CVE-2017-9074}
-- [net] ipv6: Prevent overrun when parsing v6 header options (Eric Garver) [1459950] {CVE-2017-9074}
-- [net] document that no more GSO bits can be added (Jiri Benc) [1439252]
-- [net] fix GSO_PARTIAL support (Jiri Benc) [1439252]
-- [net] udp: remove remote checksum offload (Jiri Benc) [1439252]
-- [net] vxlan: remove remote checksum offload for egress (Jiri Benc) [1439252]
-- [net] ip6_offload: check segs for NULL in ipv6_gso_segment (Jiri Benc) [1439252]
-- [net] vxlan: eliminate cached dst leak (Lance Richardson) [1396552]
-- [net] bridge: start hello timer only if device is up (Xin Long) [1452093]
-- [net] bridge: fix hello and hold timers starting/stopping (Xin Long) [1452093]
-- [net] bridge: start hello_timer when enabling KERNEL_STP in br_stp_start (Xin Long) [1452093]
-- [net] vlan: Propagate MAC address to VLANs (Jarod Wilson) [1446356]
-- [s390] crash: Fix KEXEC_NOTE_BYTES definition (Xunlei Pang) [1458988]
-- [scsi] cxgb4i, libcxgbi: in error case RST tcp conn (Sai Vemuri) [1457996]
-- [scsi] cxgb4i: update module description (Sai Vemuri) [1457995]
-- [netdrv] cxgb4: Update IngPad and IngPack values (Sai Vemuri) [1439468]
-- [netdrv] cxgb4: avoid enabling napi twice to the same queue (Sai Vemuri) [1457993]
-- [netdrv] cxgb4: retrieve port information from firmware (Sai Vemuri) [1457987]
-- [netdrv] cxgb4: save tid while creating server filter (Sai Vemuri) [1451448]
-- [netdrv] qed: Don't log missing periodic stats by default (Harish Patil) [1456338]
-- [netdrv] qed: Fix error in the dcbx app meta data initialization (Harish Patil) [1456338]
-- [crypto] algif_skcipher - Add key check exception for cipher_null ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] algif_hash - Require setkey before accept(2) ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] hash - Add crypto_ahash_has_setkey ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] algif_skcipher - Add nokey compatibility path ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] af_alg - Add nokey compatibility path ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] af_alg - Fix socket double-free when accept fails ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] af_alg - Disallow bind/setkey/... after accept(2) ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [crypto] algif_skcipher - Require setkey before accept(2) ("Bruno E. O. Meneguele") [1386234] {CVE-2015-8970}
-- [kernel] ptrace: fix fork event messages across pid namespaces ("Eric W. Biederman") [1458353]
-- [infiniband] rdma/cxgb4: Increase epd buff size for debug interface (Sai Vemuri) [1457999]
-- [infiniband] rdma/iser: Fix possible mr leak on device removal event (Sai Vemuri) [1457984]
-- [infiniband] rdma/iw_cxgb4: calculate t4_eq_status_entries properly (Sai Vemuri) [1458002]
-- [infiniband] iw_cxgb4: Guard against null cm_id in dump_ep/qp (Sai Vemuri) [1457403]
-
-* Mon Jun 12 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-680.el7]
-- [fs] buffer.c: call thaw_super during emergency thaw (Mateusz Guzik) [1375033]
-- [fs] block_dev.c: return the right error in thaw_bdev() (Mateusz Guzik) [1375033]
-- [fs] revert "xfs: fix bogus space reservation in xfs_iomap_write_allocate" (Bill O'Donnell) [1446484]
-- [hv] vmbus: Raise retry/wait limits in vmbus_post_msg() (Vitaly Kuznetsov) [1452009]
-- [md] raid1: ignore discard error (Nigel Croxon) [1435822]
-- [usb] ohci-pci: add qemu quirk (Gerd Hoffmann) [1301872]
-- [x86] boot/kaslr: Change the 'KASLR disabled' message from warning to debug printing (Baoquan He) [1458644]
-- [drm] nouveau/tmr: fully separate alarm execution/pending lists (Ben Skeggs) [1450742]
-- [drm] nouveau: enable autosuspend only when it'll actually be used (Ben Skeggs) [1450742]
-- [drm] nouveau: replace multiple open-coded runpm support checks with function (Ben Skeggs) [1450742]
-- [virt] kvm: fix spin_lock_init order on x86 (Luiz Capitulino) [1459739]
-- [acpi] nfit: Fix memory corruption/Unregister mce decoder on failure (Prarit Bhargava) [1448312]
-- [tools] perf trace: Add mmap alias for s390 (Jiri Olsa) [1436323 1347055]
-- [tools] perf test: Disable breakpoint signal tests for powerpc (Jiri Olsa) [1436323 1347055]
-- [netdrv] sfc-falcon: register proper netdevice_notifier (Jarod Wilson) [1389671]
-- [netdrv] mlx5: E-Switch, Correctly deal with inline mode on ConnectX-5 (Kamal Heib) [1456551]
-- [netdrv] vfio/pci: Add Intel XXV710 to hidden INTx devices (Stefan Assmann) [1458160]
-- [netdrv] pci: Add Intel XXV710 to broken INTx masking quirk (Stefan Assmann) [1458160]
-- [netdrv] cxgb4: Shutdown adapter if firmware times out or errors out (Sai Vemuri) [1385866]
-- [netdrv] cxgb4: Increase max number of tc u32 links (Sai Vemuri) [1385866]
-- [netdrv] cxgb4: Fix uld_send() for ctrl pkts (Sai Vemuri) [1385866]
-- [netdrv] cxgb4: add support for drop and redirect actions (Sai Vemuri) [1385866]
-- [netdrv] cxgb4: add support for offloading u32 filters (Sai Vemuri) [1385866]
-- [security] selinux: allow security_sb_clone_mnt_opts to enable/disable native labeling behavior (Scott Mayhew) [1454617]
-- [infiniband] target: Fix unknown fabric callback queue-full errors (Sai Vemuri) [1454788]
-- [infiniband] iscsi-target: Propigate queue_data_in + queue_status errors (Sai Vemuri) [1454788]
-- [infiniband] iser-target: Fix queue-full response handling (Sai Vemuri) [1454788]
-- [infiniband] iser-target: avoid posting a recv buffer twice (Sai Vemuri) [1454788]
-- [infiniband] ib/addr: Fix setting source address in addr6_resolve() (Paolo Abeni) [1414097]
-- [infiniband] avoid dereferencing uninitialized dst on error path (Paolo Abeni) [1414097]
-- [infiniband] call ipv6 route lookup via the stub interface (Paolo Abeni) [1414097]
-- [infiniband] ib/rxe: Fix kernel panic in send (Kamal Heib) [1459549]
-
-* Mon Jun 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-679.el7]
-- [scsi] kabi workaround for scsi_internal_device_block (Tomas Henzl) [1450206]
-- [scsi] mpt3sas: Avoid sleeping in interrupt context (Tomas Henzl) [1450206]
-- [scsi] scsi-mq: Wait for .queue_rq() if necessary (Tomas Henzl) [1450206]
-- [fs] nfsd: fix supported attributes for acl & labels (Scott Mayhew) [1449877]
-- [fs] nfsd4: fix null dereference on replay ("J. Bruce Fields") [1452242]
-- [fs] pnfs: Fix the check for requests in range of layout segment (Benjamin Coddington) [1452929]
-- [fs] vfs: fix locks_lock_file_wait() on overlayfs (Miklos Szeredi) [1456242]
-- [hv] hv_utils: fix TimeSync work on pre-TimeSync-v4 hosts (Vitaly Kuznetsov) [1447906]
-- [hv] hv_utils: drop .getcrosststamp() support from PTP driver (Vitaly Kuznetsov) [1447906]
-- [mm] mempolicy.c: fix error handling in set_mempolicy and mbind ("Bruno E. O. Meneguele") [1443541] {CVE-2017-7616}
-- [mm] shmem: fix shm fallocate() list corruption (Waiman Long) [1438389]
-- [md] raid1: prefer disk without bad blocks (Nigel Croxon) [1456741]
-- [dma] dmaengine: ioatdma: add BDX-EP PCI dev IDs (Xiaolong Wang) [1369330]
-- [drm] i915: Do not drop pagetables when empty (Lyude Paul) [1454339]
-- [drm] i915/gvt: not to restore in-context mmio (Paul Lai) [1448762]
-- [char] ipmi: create hardware-independent softdep for ipmi_devintf (Tony Camuso) [1456865]
-- [nvme] Correct NVMF enum values to match NVMe-oF rev 1.0 (David Milburn) [1455784]
-- [block] blk-mq: remove blk_mq_abort_requeue_list() (Ming Lei) [1445595]
-- [nvme] avoid to use blk_mq_abort_requeue_list() (Ming Lei) [1445595]
-- [nvme] use blk_mq_start_hw_queues() in nvme_kill_queues() (Ming Lei) [1445595]
-- [block] block new I/O just after queue is set as dying (Ming Lei) [1445595]
-- [block] rename blk_mq_freeze_queue_start() (Ming Lei) [1445595]
-- [block] add a read barrier in blk_queue_enter() (Ming Lei) [1445595]
-- [block] blk-mq: comment on races related with timeout handler (Ming Lei) [1445595]
-- [netdrv] net, virtio_net: replace the magic value (Jason Wang) [1450300]
-- [netdrv] ixgbe: fix incorrect status check (Ken Cox) [1452421]
-- [netdrv] ixgbe: add missing configuration for rate select 1 (Ken Cox) [1452421]
-- [netdrv] ixgbe: always call setup_mac_link for multispeed fiber (Ken Cox) [1452421]
-- [netdrv] ixgbe: add write flush when configuring CS4223/7 (Ken Cox) [1452421]
-- [netdrv] ixgbe: correct CS4223/7 PHY identification (Ken Cox) [1452421]
-- [netdrv] ath9k_htc: fix NULL-deref at probe (Stanislaw Gruszka) [1449094]
-- [netdrv] ath9k_htc: Add support of AirTies 1eda:2315 AR9271 device (Stanislaw Gruszka) [1449094]
-- [netdrv] mwifiex: pcie: fix cmd_buf use-after-free in remove/reset (Stanislaw Gruszka) [1449094]
-- [netdrv] rtlwifi: rtl8821ae: setup 8812ae RFE according to device type (Stanislaw Gruszka) [1449094]
-- [netdrv] brcmfmac: Ensure pointer correctly set if skb data location changes (Stanislaw Gruszka) [1449094]
-- [netdrv] brcmfmac: Make skb header writable before use (Stanislaw Gruszka) [1449094]
-- [netdrv] be2net: Update the driver version to 11.4.0.0 (Ivan Vecera) [1455768]
-- [netdrv] be2net: Fix UE detection logic for BE3 (Ivan Vecera) [1455768]
-- [netdrv] e1000e: Don't return uninitialized stats (Jarod Wilson) [1455721]
-- [infiniband] rdma/i40iw: Remove MSS change support (Stefan Assmann) [1448168]
-- [infiniband] ib/hfi1: Prevent kernel QP post send hard lockups (Alex Estrin) [1451917]
-- [infiniband] ib/hfi1: Protect the global dev_cntr_names and port_cntr_names (Alex Estrin) [1454919]
-
-* Mon Jun 05 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-678.el7]
-- [net] pending_confirm is not used anymore (Lance Richardson) [1450203]
-- [net] use dst_confirm_neigh for UDP, RAW, ICMP, L2TP (Lance Richardson) [1450203]
-- [net] add confirm_neigh method to dst_ops (Lance Richardson) [1450203]
-- [net] tcp: replace dst_confirm with sk_dst_confirm (Lance Richardson) [1450203]
-- [net] sctp: add dst_pending_confirm flag (Lance Richardson) [1450203]
-- [net] add dst_pending_confirm flag to skbuff (Lance Richardson) [1450203]
-- [net] sock: add sk_dst_pending_confirm flag (Lance Richardson) [1450203]
-- [net] macvlan: Fix performance issues with vlan tagged packets (Vlad Yasevich) [1289475]
-- [net] sctp: do not inherit ipv6_{mc|ac|fl}_list from parent (Florian Westphal) [1455609] {CVE-2017-8890 CVE-2017-9075 CVE-2017-9076 CVE-2017-9077}
-- [net] ipv6/dccp: do not inherit ipv6_mc_list from parent (Florian Westphal) [1455609] {CVE-2017-8890 CVE-2017-9075 CVE-2017-9076 CVE-2017-9077}
-- [net] dccp/tcp: do not inherit mc_list from parent (Florian Westphal) [1455609] {CVE-2017-8890 CVE-2017-9075 CVE-2017-9076 CVE-2017-9077}
-- [net] tcp: do not inherit fastopen_req from parent (Florian Westphal) [1455609] {CVE-2017-8890 CVE-2017-9075 CVE-2017-9076 CVE-2017-9077}
-- [netdrv] virtio_net: enable TSO/checksum offloads for Q-in-Q vlans (Eric Garver) [1423935]
-- [netdrv] be2net: Fix offload features for Q-in-Q packets (Eric Garver) [1423935]
-- [net] vlan: Fix tcp checksum offloads in Q-in-Q vlans (Eric Garver) [1423935]
-- [net] sched: act_mirred: Use passed lastuse argument (Ivan Vecera) [1455296]
-- [net] sched: act_mirred: allow statistic updates from offloaded actions (Ivan Vecera) [1455296]
-- [net] sctp: set new_asoc temp when processing dupcookie (Xin Long) [1450786]
-- [net] netfilter: conntrack: fix false CRC32c mismatch using paged skb (Davide Caratti) [1353218]
-- [net] ipv6: fix out of bound writes in __ip6_append_data() (Hangbin Liu) [1453057]
-- [net] skbuff: improve description of CHECKSUM_{COMPLETE, UNNECESSARY} (Davide Caratti) [1072503]
-- [net] openvswitch: more accurate checksumming in queue_userspace_packet() (Davide Caratti) [1072503]
-- [net] more accurate checksumming in validate_xmit_skb() (Davide Caratti) [1072503]
-- [net] use skb->csum_not_inet to identify packets needing crc32c (Davide Caratti) [1072503]
-- [net] introduce skb_crc32c_csum_help (Davide Caratti) [1072503]
-- [net] Elaborate on checksum offload interface description (Davide Caratti) [1072503]
-- [net] skbuff: add stub to help computing crc32c on SCTP packets (Davide Caratti) [1072503]
-- [net] ipv6: reorder ip6_route_dev_notifier after ipv6_dev_notf (Xin Long) [1450281]
-- [net] ipv6: initialize route null entry in addrconf_init() (Xin Long) [1450281]
-- [net] l2tp: hold tunnel socket when handling control frames in l2tp_ip and l2tp_ip6 (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] l2tp: fix address test in __l2tp_ip6_bind_lookup() (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] l2tp: fix lookup for sockets not bound to a device in l2tp_ip (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] l2tp: fix racy socket lookup in l2tp_ip and l2tp_ip6 bind() (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] l2tp: hold socket before dropping lock in l2tp_ip{, 6}_recv() (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] ipv6: lock socket in ip6_datagram_connect() (Florian Westphal) [1441554]
-- [net] l2tp: fix racy SOCK_ZAPPED flag check in l2tp_ip{, 6}_bind() (Florian Westphal) [1441554] {CVE-2016-10200}
-- [net] sched: cls: also reject deleting all filters when TCA_KIND present (Ivan Vecera) [1450137]
-- [net] sched: cls: allow for deleting all filters for given parent (Ivan Vecera) [1450137]
-- [net] sched: act_vlan: Add priority option (Ivan Vecera) [1450145]
-- [net] sched: indentation and other OCD stylistic fixes (Ivan Vecera) [1450145]
-
-* Fri Jun 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-677.el7]
-- [powerpc] fadump: update about offset where fadump is reserved (Gustavo Duarte) [1384941]
-- [powerpc] fadump: add a warning when 'fadump_reserve_mem=' is specified (Gustavo Duarte) [1384941]
-- [powerpc] fadump: update documentation about crashkernel parameter reuse (Gustavo Duarte) [1384941]
-- [powerpc] fadump: reuse crashkernel parameter for fadump memory reservation (Gustavo Duarte) [1384941]
-- [powerpc] fadump: remove dependency with CONFIG_KEXEC (Gustavo Duarte) [1384941]
-- [kernel] ia64: reuse append_elf_note() and final_note() functions (Gustavo Duarte) [1384941]
-- [kernel] crash: move crashkernel parsing and vmcore related code under CONFIG_CRASH_CORE (Gustavo Duarte) [1384941]
-- [kernel] sched/cputime: Fix NO_HZ_FULL getrusage() monotonicity regression (Aaron Tomlin) [1452621]
-- [kernel] sched/cputime: Guarantee stime + utime == rtime (Aaron Tomlin) [1452621]
-- [kernel] sched: Use swap() macro in scale_stime() (Aaron Tomlin) [1452621]
-- [kernel] sched, time: Fix build error with 64 bit cputime_t on 32 bit systems (Aaron Tomlin) [1452621]
-- [kernel] userns: Preserve bug compatibility on failure for chrome ("Eric W. Biederman") [1443482]
-- [kernel] ptrace: fix PTRACE_LISTEN race corrupting task->state (Oleg Nesterov) [1450683]
-- [x86] kvm: x86: Expose Intel VPOPCNTDQ feature to guest (Paul Lai) [1415961]
-- [x86] cpufeature: Add AVX512_VPOPCNTDQ feature (Paul Lai) [1415961]
-- [x86] kvm: x86: Expose Intel AVX512IFMA/AVX512VBMI/SHA features to guest (Paul Lai) [1415961]
-- [x86] cpufeatures: Enable new AVX512 cpu features (Paul Lai) [1415961]
-- [x86] kaslr: Use the right memcpy() implementation (Baoquan He) [1440928]
-- [x86] documentation/kernel-parameters.txt: Update 'memmap=' boot option description (Baoquan He) [1440928]
-- [x86] kaslr: Handle the memory limit specified by the 'memmap=' and 'mem=' boot options (Baoquan He) [1440928]
-- [x86] kaslr: Parse all 'memmap=' boot option entries (Baoquan He) [1440928]
-- [x86] boot/param: Move next_arg() function to lib/cmdline.c for later reuse (Baoquan He) [1440928]
-- [x86] params: handle quotes properly for values not of form foo="bar" (Baoquan He) [1440928]
-- [x86] efi: Correct ident mapping of efi old_map when kalsr enabled (Baoquan He) [1441185]
-- [x86] kaslr: Fix kexec kernel boot crash when KASLR randomization fails (Baoquan He) [1449443]
-- [x86] efi-bgrt: Fix kernel panic when mapping BGRT data (Gopal Tiwari) [1447685]
-- [x86] mark AMD Naples SP3 processors supported (David Arcari) [1455601]
-- [x86] set x86_model_id in early_identify_cpu for unsupported check (David Arcari) [1455601]
-- [s390] cpum_cf: use perf software context for hardware counters (Hendrik Brueckner) [1454881]
-- [perf] symbols: Accept symbols starting at address 0 (Jiri Olsa) [1140522]
-- [perf] tools: Be consistent on the type of map->symbols[] interator (Jiri Olsa) [1140522]
-
-* Fri Jun 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-676.el7]
-- [mm] hmm: workaround kABI breakage because of new migrate mode enum (Jerome Glisse) [1444991]
-- [mm] migrate: allow migrate_vma() to alloc new page on empty entry v2 (Jerome Glisse) [1444991]
-- [mm] migrate: support un-addressable ZONE_DEVICE page in migration v2 (Jerome Glisse) [1444991]
-- [mm] migrate: migrate_vma() unmap page from vma while collecting pages (Jerome Glisse) [1444991]
-- [mm] migrate: new memory migration helper for use with device memory v4 (Jerome Glisse) [1444991]
-- [mm] migrate: new migrate mode MIGRATE_SYNC_NO_COPY (Jerome Glisse) [1444991]
-- [mm] hmm/devmem: support device memory in CPU snapshot helpers (Jerome Glisse) [1444991]
-- [mm] hmm/devmem: dummy HMM device for ZONE_DEVICE memory v3 (Jerome Glisse) [1444991]
-- [mm] hmm/devmem: device memory hotplug using ZONE_DEVICE v4 (Jerome Glisse) [1444991]
-- [mm] private-memory: new type of ZONE_DEVICE for unaddressable memory v2 (Jerome Glisse) [1444991]
-- [mm] put_page: move ZONE_DEVICE page reference decrement v2 (Jerome Glisse) [1444991]
-- [mm] memory_hotplug: introduce add_pages (Jerome Glisse) [1444991]
-- [mm] hmm/mirror: device page fault handler (Jerome Glisse) [1444991]
-- [mm] hmm/mirror: helper to snapshot CPU page table v3 (Jerome Glisse) [1444991]
-- [mm] hmm/mirror: mirror process address space on device with HMM helpers v3 (Jerome Glisse) [1444991]
-- [mm] hmm: heterogeneous memory management (HMM for short) v3 (Jerome Glisse) [1444991]
-- [mm] hmm: heterogeneous memory management documentation (Jerome Glisse) [1444991]
-- [mm] hmm: remove old code to prepare for lastest patchset backport (Jerome Glisse) [1444991]
-
-* Mon May 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-675.el7]
-- [mm] hugetlbfs: fix offset overflow in hugetlbfs mmap (Andrea Arcangeli) [1455315]
-- [mm] hugetlbfs: initialize shared policy as part of inode allocation (Andrea Arcangeli) [1455315]
-- [mm] hugetlb: don't call region_abort if region_chg fails (Andrea Arcangeli) [1455315]
-- [mm] ksm: optimize refile of stable_node_dup at the head of the chain (Andrea Arcangeli) [1447745]
-- [mm] ksm: swap the two output parameters of chain/chain_prune (Andrea Arcangeli) [1447745]
-- [mm] ksm: cleanup stable_node chain collapse case (Andrea Arcangeli) [1447745]
-- [mm] ksm: fix use after free with merge_across_nodes = 0 (Andrea Arcangeli) [1447745]
-- [mm] vmscan: Do not wait for page writeback for GFP_NOFS allocations (Rafael Aquini) [1433103]
-- [mm] vmscan: disable memcg direct reclaim stalling if cgroup writeback support is in use (Rafael Aquini) [1433103]
-- [mm] add private lock to serialize memory hotplug operations (Jeff Moyer) [1438579]
-- [mm] validate device_hotplug is held for memory hotplug (Jeff Moyer) [1438579]
-- [mm] devm_memremap_pages: hold device_hotplug lock over mem_hotplug_{begin, done} (Jeff Moyer) [1438579]
-- [mm] fix devm_memremap_pages crash, use mem_hotplug_{begin, done} (Jeff Moyer) [1438579]
-- [mm] hotplug: fix concurrent memory hot-add deadlock (Jeff Moyer) [1438579]
-- [mm] mem-hotplug: implement get/put_online_mems (Jeff Moyer) [1438579]
-- [mm] cpu/mem hotplug: add try_online_node() for cpu_up() (Jeff Moyer) [1438579]
-- [mm] x86/mm/hotplug: Don't remove PGD entries in remove_pagetable() (Jeff Moyer) [1438579]
-- [x86] mm: Tighten x86 /dev/mem with zeroing reads ("Bruno E. O. Meneguele") [1449677] {CVE-2017-7889}
-- [x86] mce/amd: Give a name to MCA bank 3 when accessed with legacy MSRs (David Arcari) [1454807]
-- [x86] boot/kaslr: Disable KASLR by default (Baoquan He) [1449762]
-- [x86] microcode/intel: access the initrd at the relocated address (Pingfan Liu) [1448767]
-- [x86] toshiba_acpi: Do not register vendor backlight when acpi_video bl is available (Jeremy McNicoll) [1305617]
-- [drm] i915: don't rcu-sync from shrinker (Rob Clark) [1443028]
-- [pci] msi: Stop disabling MSI/MSI-X in pci_device_shutdown() (Prarit Bhargava) [1207693]
-- [kernel] workqueue: schedule WORK_CPU_UNBOUND work on wq_unbound_cpumask CPUs (Waiman Long) [1452675]
-- [kernel] workqueue: handle NUMA_NO_NODE for unbound pool_workqueue (Waiman Long) [1452675]
-
-* Mon May 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-674.el7]
-- [target] Add target_core_user.h to included headers (Andy Grover) [1451522]
-- [scsi] qedi: Fix endpoint NULL panic during recovery (Chad Dupuis) [1452748]
-- [scsi] qedi: set max_fin_rt default value (Chad Dupuis) [1452748]
-- [scsi] qedi: Set firmware tcp msl timer value (Chad Dupuis) [1452748]
-- [scsi] qedi: Fix endpoint NULL panic in qedi_set_path (Chad Dupuis) [1452748]
-- [scsi] qedi: Set dma_boundary to 0xfff (Chad Dupuis) [1452748]
-- [scsi] qedi: Correctly set firmware max supported BDs (Chad Dupuis) [1452748]
-- [scsi] qedi: Fix bad pte call trace when iscsiuio is stopped (Chad Dupuis) [1452748]
-- [fs] nfs: Fix use after free in write error path (Steve Dickson) [1441883]
-- [fs] fs: return -EOPNOTSUPP if clone is not supported ("J. Bruce Fields") [1449156]
-- [fs] btrfs: use linux/sizes.h to represent constants (Bill O'Donnell) [1451546]
-- [fs] cifs: Do not send echoes before Negotiate is complete (Sachin Prabhu) [1452060]
-- [md] raid1: Use a new variable to count flighting sync requests (Xiao Ni) [1379764]
-- [md] raid1: handle flush request correctly (Xiao Ni) [1379764]
-- [md] raid1: fix a use-after-free bug (Xiao Ni) [1379764]
-- [md] raid1: avoid unnecessary spin locks in I/O barrier code (Xiao Ni) [1379764]
-- [md] raid1: a new I/O barrier implementation to remove resync window (Xiao Ni) [1379764]
-- [md] raid1: Refactor raid1_make_request (Xiao Ni) [1379764]
-- [md] handle read-only member devices better (Nigel Croxon) [1442776]
-- [base] pm / sleep: prohibit devices probing during suspend/hibernation (Don Zickus) [1184229]
-- [base] drivercore: Make probe deferral more quiet (Don Zickus) [1184229]
-- [base] drivercore: deferral race condition fix (Don Zickus) [1184229]
-- [nvme] nvme-rdma: Support ctrl_loss_tmo (David Milburn) [1452321 1442735]
-- [nvme] nvme-fabrics: Allow ctrl loss timeout configuration (David Milburn) [1452321 1442735]
-- [nvme] nvme-rdma: get rid of local reconnect_delay (David Milburn) [1452321 1442735]
-- [nvme] nvmet-rdma: Fix a possible uninitialized variable dereference (David Milburn) [1437723]
-- [block] fix bio_will_gap() for first bvec with offset (Ming Lei) [1443807]
-- [tools] power turbostat: denverton: use HW CC1 counter, skip C3, C7 (Prarit Bhargava) [1447265]
-- [tools] power turbostat: bug fixes to --add, --show/--hide features (Prarit Bhargava) [1447265]
-- [tools] power turbostat: Add --show and --hide parameters (Prarit Bhargava) [1447265]
-- [tools] power turbostat: fix bugs in --add option (Prarit Bhargava) [1447265]
-- [netdrv] bonding: fix randomly populated arp target array (Jarod Wilson) [1450184]
-- [netdrv] bonding: fix accounting of active ports in 3ad (Jarod Wilson) [1368265]
-- [netdrv] vmxnet3: ensure that adapter is in proper state during force_close (Neil Horman) [1449021]
-- [netdrv] tg3: don't clear stats while tg3_close (Jonathan Toppins) [1455222]
-- [netdrv] tg3: Fix race condition in tg3_get_stats64() (Jonathan Toppins) [1455222]
-- [infiniband] ib/ipoib: add get_link_ksettings in ethtool (Kamal Heib) [1450970]
-- [infiniband] ib/device: Convert ib-comp-wq to be CPU-bound (Kamal Heib) [1437727]
-
-* Fri May 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-673.el7]
-- [drm] nouveau/kms/nv50: skip core channel cursor update on position-only chang (Ben Skeggs) [1451524]
-- [drm] nouveau/kms/nv50: fix source-rect-only plane updates (Ben Skeggs) [1451524]
-- [drm] nouveau/kms: Increase max retries in scanout position queries (Ben Skeggs) [1451524]
-- [drm] nouveau/therm: remove ineffective workarounds for alarm bugs (Ben Skeggs) [1449338]
-- [drm] nouveau/tmr: avoid processing completed alarms when adding a new one (Ben Skeggs) [1449338]
-- [drm] nouveau/tmr: fix corruption of the pending list when rescheduling an ala (Ben Skeggs) [1449338]
-- [drm] nouveau/tmr: handle races with hw when updating the next alarm time (Ben Skeggs) [1449338]
-- [drm] nouveau/tmr: ack interrupt before processing alarms (Ben Skeggs) [1449338]
-- [drm] nouveau/fb/ram/gf100-: remove 0x10f200 read (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gf100-: Fix 32 bit wraparound in new ram detection (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gf100-: rework ram detection (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gm200: split ram implementation from gm107 (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gf108: split implementation from gf100 (Ben Skeggs) [1371629]
-- [drm] nouveau/fb/gf100-: modify constructors to allow more customisation (Ben Skeggs) [1371629]
-- [media] usb: uvc: remove unnecessary & operation (Torez Smith) [1444758]
-- [media] usb: uvc: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1444758]
-- [media] uvcvideo: Correct speed testing (Torez Smith) [1444758]
-- [media] uvcvideo: Disable hardware timestamps by default (Torez Smith) [1444758]
-- [media] uvcvideo: Fix incorrect bandwidth with Chicony device 04f2:b50b (Torez Smith) [1444758]
-- [media] uvcvideo: Set buffer field to V4L2_FIELD_NONE (Torez Smith) [1444758]
-- [media] v4l: uvcvideo: Fix buffer completion size check (Torez Smith) [1444758]
-- [media] v4l2: uvcvideo: Allow using larger buffers (Torez Smith) [1444758]
-- [media] uvc: fix sparse warning (Torez Smith) [1444758]
-- [media] uvcvideo: Fix clock param realtime setting (Torez Smith) [1444758]
-- [media] uvcvideo: Fix marking buffer erroneous in case of FID toggling (Torez Smith) [1444758]
-- [media] uvcvideo: Do not use usb_set_interface on bulk EP (Torez Smith) [1444758]
-- [media] uvcvideo: Update uvc_endpoint_max_bpi to handle USB_SPEED_WIRELESS devices (Torez Smith) [1444758]
-- [media] uvc/lirc_serial: Fix some warnings on parisc arch (Torez Smith) [1444758]
-- [sound] alsa: hda - Simplify bound-beep mute control for ALC268 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - No loopback on ALC299 codec (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Add Dual Codecs support for Lenovo P520/420 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Use a helper function for renaming kctl names (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Support Gigabyte Gaming board with dual Realtek codecs (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Fix headset microphone detection for ASUS N551 and N751 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - fix a problem for lineout on a Dell AIO machine (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Adding a group of pin definition to fix headset problem (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Fix speaker support for Asus AiO ZN270IE (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Fix headset mic and speaker on Asus X441SA/X441UV (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Fix headset and mic on several Asus laptops with ALC256 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Fix headset mic on several Asus laptops with ALC255 (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda/realtek - Add support for Acer Aspire E5-475 headset mic (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Add subwoofer support for Dell Inspiron 17 7000 Gaming (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Fix micmute hotkey problem for a lenovo AIO machine (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - Allow to enable/disable vmaster build explicitly (Jaroslav Kysela) [1422328]
-- [sound] alsa: hda - A new flag to enforce prefix to each pin (Jaroslav Kysela) [1422328]
-
-* Fri May 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-672.el7]
-- [netdrv] bnxt_en: Call bnxt_dcb_init() after getting firmware DCBX configuration (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Check status of firmware DCBX agent before setting DCB_CAP_DCBX_HOST (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: allocate enough space for ->ntp_fltr_bmap (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Check the FW_LLDP_AGENT flag before allowing DCBX host agent (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Update firmware interface spec to 1.7.6.2 (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Fix VF attributes reporting (Jonathan Toppins) [1451915]
-- [netdrv] bnxt_en: Cap the msix vector with the max completion rings (Jonathan Toppins) [1451915]
-- [netdrv] mlx5: E-Switch, Don't allow changing inline mode when flows are configured (Jonathan Toppins) [1446112]
-- [netdrv] mlx5e: Change the TC offload rule add/del code path to be per NIC or E-Switch (Jonathan Toppins) [1446112]
-- [netdrv] mlx5: Add missing entries for set/query rate limit commands (Jonathan Toppins) [1446112]
-- [netdrv] mlx5: E-Switch, Enlarge the FDB size for the switchdev mode (Jonathan Toppins) [1446117]
-- [netdrv] mlx5e: Avoid wrong identification of rules on deletion (Jonathan Toppins) [1446119]
-- [netdrv] mlx5e: Support adding ingress tc rule when egress device flag is set (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Disable preemption when doing TC statistics upcall (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Support TC encapsulation offloads with upper devices (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Fix a -Wmaybe-uninitialized warning (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Properly handle FW errors while adding TC rules (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Fix kbuild warnings for uninitialized parameters (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Set inline mode requirements for matching on IP fragments (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Properly get address type of encapsulation IP headers (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: TC ipv4 tunnel encap offload error flow fixes (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Warn when rejecting offload attempts of IP tunnels (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Properly handle offloading of source udp port for IP tunnels (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Offload TC matching on packets being IP fragments (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Remove flow encap entry in the correct place (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Refactor tc del flow to accept mlx5e_tc_flow instance (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Remove redundant hashtable lookup in configure flower (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Correct cleanup order when deleting offloaded TC rules (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Enforce min inline mode when offloading flows (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Support HW (offloaded) and SW counters for SRIOV switchdev mode (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add basic TC tunnel set action for SRIOV offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC tunnel release action for SRIOV offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Support encap id when setting new steering entry (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Add creation flags when adding new flow table (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Handle matching on vlan priority for offloaded TC rules (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add tc support for FWD rule with counter (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Add multi dest support (Jonathan Toppins) [1383217]
-- [netdrv] sched: tc_mirred: Rename public predicates 'is_tcf_mirred_redirect' and 'is_tcf_mirred_mirror' (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: shut up maybe-uninitialized warning (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC vlan match parsing (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC vlan action for SRIOV offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Put elements related to offloaded TC rule in one struct (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: E-Switch, Set the vport when registering the uplink rep (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Use correct flow dissector key on flower offloading (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC offload support for the VF representors netdevice (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC HW support for FDB (SRIOV e-switch) offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Add TC drop and mirred/redirect action parsing for SRIOV offloads (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Adjustments in the TC offload code towards reuse for SRIOV (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Offload TC flow counters only when supported (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Refactor mlx5_add_flow_rule (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Hardware offloaded flower filter statistics support (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Refactor mlx5e flow steering structs (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Add user chosen levels when allocating flow tables (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Support offload cls_flower with skbedit mark action (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Support offload cls_flower with drop action (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Improve set features ndo resiliency (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: Introduce tc offload support (Jonathan Toppins) [1383217]
-- [netdrv] mlx5e: revert commented out flow dissector changes (Jonathan Toppins) [1383217]
-- [netdrv] mlx5: Add devlink interface (Jonathan Toppins) [1383217]
-- [net] net_sched: act_vlan: add helper inlines to access tcf_vlan info (Jonathan Toppins) [1383217]
-
-* Mon May 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-671.el7]
-- [scsi] smartpqi: bump driver version for RHEL-7.4 (Don Brace) [1441396]
-- [scsi] smartpqi: ensure controller is in SIS mode at init (Don Brace) [1441396]
-- [scsi] smartpqi: enhance kdump (Don Brace) [1441396]
-- [scsi] lpfc: Fix scsi task management error message (Maurizio Lombardi) [1451022]
-- [scsi] lpfc: Fix Express lane queue creation (Maurizio Lombardi) [1451022]
-- [scsi] lpfc: correct rdp diag portnames (Maurizio Lombardi) [1451022]
-- [scsi] lpfc: Correct WQ creation for pagesize (Maurizio Lombardi) [1451022]
-- [net] mac80211: reject ToDS broadcast data frames (Stanislaw Gruszka) [1449091]
-- [net] mac80211: fix MU-MIMO follow-MAC mode (Stanislaw Gruszka) [1449091]
-- [net] mac80211: unconditionally start new netdev queues with iTXQ support (Stanislaw Gruszka) [1449091]
-- [net] cfg80211: check rdev resume callback only for registered wiphy (Stanislaw Gruszka) [1449091]
-- [netdrv] iwlwifi: mvm: support ibss in dqa mode (Stanislaw Gruszka) [1449091]
-- [netdrv] iwlwifi: mvm: writing zero bytes to debugfs causes a crash (Stanislaw Gruszka) [1449091]
-- [netdrv] iwlwifi: mvm: fix accessing fw_id_to_mac_id (Stanislaw Gruszka) [1449091]
-- [net] nl80211: fix dumpit error path RTNL deadlocks (Stanislaw Gruszka) [1449091]
-- [netdrv] ath10k: fix incorrect wlan_mac_base in qca6174_regs (Stanislaw Gruszka) [1449091]
-- [powerpc] kvm: ppc: book 3s: xics: Don't lock twice when checking for resend (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book 3s: xics: Implement ICS P/Q states (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Counters for passthrough IRQ stats (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Set server for passed-through interrupts (David Gibson) [1430371]
-- [powerpc] opal: Add real mode call wrappers (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Update irq stats for IRQs handled in real mode (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Handle passthrough interrupts in guest (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Convert kvmppc_read_intr to a C function (David Gibson) [1430371]
-- [powerpc] Add simple cache inhibited MMIO accessors (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Enable IRQ bypass (David Gibson) [1430371]
-- [powerpc] kvm: ppc: select IRQ_BYPASS_MANAGER (David Gibson) [1430371]
-- [powerpc] powernv: Provide facilities for EOI, usable from real mode (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book3s hv: Introduce kvmppc_passthru_irqmap (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book 3s: xics: Fix potential issue with duplicate IRQ resends (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book 3s: xics: correct the real mode ICP rejecting counter (David Gibson) [1430371]
-- [powerpc] kvm: ppc: book 3s: xics cleanup: remove XICS_RM_REJECT (David Gibson) [1430371]
-- [powerpc] 64: Fix race condition in setting lock bit in idle/wakeup code (David Gibson) [1430371]
-- [powerpc] powernv: Rename idle_power7.S to idle_book3s.S (David Gibson) [1430371]
-
-* Fri May 19 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-670.el7]
-- [fs] NFS append COMMIT after synchronous COPY (Steve Dickson) [1445418]
-- [fs] nfs: Fix O_DIRECT verifier problems (Steve Dickson) [1445418]
-- [fs] nfsv4: Fix reboot recovery in copy offload (Steve Dickson) [1445418]
-- [fs] nfsv4.2: Fix writeback races in nfs4_copy_file_range (Steve Dickson) [1445418]
-- [fs] nfs: Ensure we reset the write verifier 'committed' value on resend (Steve Dickson) [1445418]
-- [fs] nfs: Cache aggressively when file is open for writing (Scott Mayhew) [1415203]
-- [fs] nfs: Don't flush caches for a getattr that races with writeback (Scott Mayhew) [1415203]
-- [fs] super.c: fix race between freeze_super() and thaw_super() (Brian Foster) [1383739]
-- [md] dm space map disk: fix some book keeping in the disk space map (Mike Snitzer) [1450419]
-- [md] dm thin metadata: call precommit before saving the roots (Mike Snitzer) [1450419]
-- [usb] revert "xhci: Workaround to get Intel xHCI reset working more reliably" (Torez Smith) [1376639]
-- [pci] Add ACS quirk for Intel Union Point (Myron Stowe) [1449796]
-- [drm] virtio: fix virtio_gpu_cursor_formats (Laurent Vivier) [1436557]
-- [drm] virtio: fix virtio_gpu_mode_dumb_create (Laurent Vivier) [1436960]
-- [drm] virtio: add virtio_gpu_translate_format (Laurent Vivier) [1436960]
-- [x86] kvm: x86: lower default for halt_poll_ns (Paolo Bonzini) [1365428]
-- [x86] kvm: nvmx: initialize PML fields in vmcs02 (Paolo Bonzini) [1440022]
-- [x86] kvm: nvmx: do not leak PML full vmexit to L1 (Paolo Bonzini) [1440022]
-- [scsi] virtio_scsi: Always try to read VPD pages (David Gibson) [1436675]
-- [tools] perf annotate s390: Fix perf annotate error -95 (Jiri Olsa) [1443651]
-- [vhost] tun: rx batching (Wei Xu) [1401433]
-- [vhost] tun: tx batching (Wei Xu) [1401433]
-- [vhost] better detection of available buffers (Wei Xu) [1401433]
-- [vhost] tun: Use netif_receive_skb instead of netif_rx (Wei Xu) [1401433]
-- [netdrv] mlx5e: Fix loopback selftest (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: remove IEEE/CEE mode check when setting DCBX mode (Jonathan Toppins) [1448565]
-- [netdrv] mlx5: Don't save PCI state when PCI error is detected (Jonathan Toppins) [1448565]
-- [netdrv] mlx5: Fix create autogroup prev initializer (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Fix wrong CQE decompression (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Update MPWQE stride size when modifying CQE compress state (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Fix broken CQE compression initialization (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Do not reduce LRO WQE size when not using build_skb (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: Register/unregister vport representors on interface attach/detach (Jonathan Toppins) [1448565]
-- [netdrv] mlx5e: s390 system compilation fix (Jonathan Toppins) [1448565]
-- [netdrv] bnx2x: Align RX buffers (Michal Schmidt) [1440648]
-- [netdrv] mlx5: Avoid dereferencing uninitialized pointer (Kamal Heib) [1450735]
-- [netdrv] i40e: reduce wait time for adminq command completion (Stefan Assmann) [1447212]
-- [netdrv] xen-netfront: avoid crashing on resume after a failure in talk_to_netback() (Vitaly Kuznetsov) [1447293]
-- [netdrv] cxgb4: avoid disabling FEC by default (Sai Vemuri) [1449482]
-- [netdrv] hv_netvsc: change netvsc device default duplex to FULL (Vitaly Kuznetsov) [1450371]
-- [powerpc] kprobe: Fix oops when kprobed on 'stdu' instruction (Pratyush Anand) [1448286]
-- [powerpc] mm: Ensure IRQs are off in switch_mm() (David Gibson) [1437794]
-- [infiniband] ib/srp: Fix race conditions related to task management (Don Dutile) [1444155]
-- [infiniband] ib/srp: Avoid that duplicate responses trigger a kernel bug (Don Dutile) [1444155]
-- [infiniband] ib/srp: Avoid using IB_MR_TYPE_SG_GAPS (Don Dutile) [1444155]
-- [infiniband] ib/qib, ib/hfi1: Fix MR reference count leak on write with immediate (Don Dutile) [1366458]
-- [infiniband] ib/hfi1: Defer setting VL15 credits to link-up interrupt (Alex Estrin) [1451290]
-
-* Thu May 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-669.el7]
-- [md] dm cache metadata: fail operations if fail_io mode has been established (Mike Snitzer) [1448904]
-- [md] dm cache: handle kmalloc failure allocating background_tracker struct (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: don't do any writebacks unless IDLE (Mike Snitzer) [1450483]
-- [md] dm cache: simplify the IDLE vs BUSY state calculation (Mike Snitzer) [1450483]
-- [md] dm cache: track all IO to the cache rather than just the origin device's IO (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: stop preemptively demoting blocks (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: put newly promoted entries at the top of the multiqueue (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: be more aggressive about triggering a writeback (Mike Snitzer) [1450483]
-- [md] dm cache policy smq: only demote entries in bottom half of the clean multiqueue (Mike Snitzer) [1450483]
-- [md] dm cache: fix incorrect 'idle_time' reset in IO tracker (Mike Snitzer) [1450483]
-- [acpi] button: Do not propagate wakeup-from-suspend events (Lenny Szubowicz) [1246944]
-- [acpi] button: fix button driver compile error when CONFIG_PM_SLEEP is undefined (Lenny Szubowicz) [1246944]
-- [s390] dasd: allow 0 for path_threshold attribute (Hendrik Brueckner) [1447738]
-- [s390] dasd: suppress command reject error for query host access command (Hendrik Brueckner) [1440709]
-- [s390] dasd: check if query host access feature is supported (Hendrik Brueckner) [1440709]
-- [x86] mm: Fix boot crash caused by incorrect loop count calculation in sync_global_pgds() (Baoquan He) [1440196]
-- [x86] efi: Consolidate region mapping logic (Bhupesh Sharma) [1446102]
-- [x86] efi: Map RAM into the identity page table for mixed mode (Bhupesh Sharma) [1446102]
-- [powerpc] mm: Add support for runtime configuration of ASLR limits (Bhupesh Sharma) [1412802]
-- [mm] aslr: use get_random_long() (Bhupesh Sharma) [1412802]
-- [kernel] char: random: add get_random_long() (Bhupesh Sharma) [1412802]
-- [x86] mm: support ARCH_MMAP_RND_BITS (Bhupesh Sharma) [1412802]
-- [mm] mmap: add new /proc tunable for mmap_base ASLR (Bhupesh Sharma) [1412802]
-- [x86] use simpler API for random address requests (Bhupesh Sharma) [1412802]
-- [kernel] random: simplify API for random address requests (Bhupesh Sharma) [1412802]
-- [kernel] powerpc: Wire up sys_seccomp(), sys_getrandom() and sys_memfd_create() (Herbert Xu) [1432218]
-- [kernel] s390: wire up seccomp and getrandom syscalls (Herbert Xu) [1432218]
-- [netdrv] mlx4_en: Change the error print to debug print (Kamal Heib) [1334054]
-- [netdrv] nfp: add missing .ndo_size to net_device_ops structure (John Linville) [1449381]
-- [netdrv] enic: Add missing ndo_size param to net_device_ops struct (Stefan Assmann) [1449376]
-- [netdrv] aquantia: Fix "ethtool -S" crash when adapter down (David Arcari) [1446250]
-- [netdrv] cxgb4: Add missing ndo_size param to net_device_ops struct (Don Dutile) [1449379]
-- [netdrv] fjes: Do not load fjes driver if extended socket device is not power on (Yasuaki Ishimatsu) [1436380]
-- [netdrv] fjes: Do not load fjes driver if system does not have extended socket device (Yasuaki Ishimatsu) [1436380]
-
-* Tue May 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-668.el7]
-- [net] ethtool: remove unused __ethtool_get_settings (Ivan Vecera) [1449330]
-- [net] core: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [net] sysfs: Print link speed as signed integer (Ivan Vecera) [1449330]
-- [net] 8021q: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [scsi] fcoe: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [net] team: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [net] macvlan: use __ethtool_get_ksettings (Ivan Vecera) [1449330]
-- [net] sched: actions: allocate act cookie early (Ivan Vecera) [1447674]
-- [net] sched: actions: do not overwrite status of action creation (Ivan Vecera) [1447674]
-- [net] sched: actions: Add support for user cookies (Ivan Vecera) [1447674]
-- [net] netlink: Add nla_memdup() to wrap kmemdup() use on nlattr (Ivan Vecera) [1447674]
-- [net] sched: act_tunnel_key: Fix setting UDP dst port in metadata under IPv6 (Ivan Vecera) [1445398]
-- [net] sched: act_tunnel_key: Add UDP dst port option (Ivan Vecera) [1445398]
-- [net] dst: Add dst port to dst_metadata utility functions (Ivan Vecera) [1445398]
-- [net] sched: act_tunnel_key: add helper inlines to access tcf_tunnel_key (Ivan Vecera) [1445398]
-- [net] sched: act_tunnel_key: Remove rcu_read_lock protection (Ivan Vecera) [1445398]
-- [net] sched: Introduce act_tunnel_key (Ivan Vecera) [1445398]
-- [net] vxlan: do not output confusing error message (Jiri Benc) [1445054]
-- [net] vxlan: correctly handle ipv6.disable module parameter (Jiri Benc) [1445054]
-- [net] sched: actions: aggregate dumping of actions timeinfo (Ivan Vecera) [1442088]
-- [net] sched: actions: introduce timestamp for firsttime use (Ivan Vecera) [1442088]
-- [net] sched: actions: use tcf_lastuse_update for consistency (Ivan Vecera) [1442088]
-- [net] sched: actions: policer missing timestamp processing (Ivan Vecera) [1442088]
-- [net] sched: align nlattr properly when needed (Ivan Vecera) [1442088]
-- [net] ipvs: explicitly forbid ipv6 service/dest creation if ipv6 mod is disabled (Paolo Abeni) [1439235]
-- [net] ipv6: implement ipv6_mod_enabled (Paolo Abeni) [1439235]
-
-* Tue May 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-667.el7]
-- [fs] sunrpc: fix refcounting problems with auth_gss messages (Steve Dickson) [1406925]
-- [fs] sunrpc: allow for upcalls for same uid but different gss service (Steve Dickson) [1406925]
-- [fs] nfs: move rw_mode to nfs_pageio_header (Benjamin Coddington) [1441370]
-- [fs] nfs: move nfs_pgarray_set() to open code (Benjamin Coddington) [1441370]
-- [fs] nfs: Use GFP_NOIO for two allocations in writeback (Benjamin Coddington) [1441370]
-- [fs] nfsd: move blocked lock handling under a dedicated spinlock (Benjamin Coddington) [1377710]
-- [fs] nfsd: set the MAY_NOTIFY_LOCK flag in OPEN replies (Benjamin Coddington) [1377710]
-- [fs] nfsd: add a LRU list for blocked locks (Benjamin Coddington) [1377710]
-- [fs] nfsd: have nfsd4_lock use blocking locks for v4.1+ locks (Benjamin Coddington) [1377710]
-- [fs] nfsd: plumb in a CB_NOTIFY_LOCK operation (Benjamin Coddington) [1377710]
-- [fs] nfsd: Get reference of lockowner when coping file_lock (Benjamin Coddington) [1377710]
-- [fs] nfsd: New helper nfs4_get_stateowner() for atomic_inc sop reference (Benjamin Coddington) [1377710]
-- [fs] locks: Copy fl_lmops information for conflock in locks_copy_conflock() (Benjamin Coddington) [1377710]
-- [fs] locks: defer freeing locks in locks_delete_lock until after i_lock has been dropped (Benjamin Coddington) [1377710]
-- [fs] locks: don't reuse file_lock in __posix_lock_file (Benjamin Coddington) [1377710]
-- [fs] locks: New ops in lock_manager_operations for get/put owner (Benjamin Coddington) [1377710]
-- [fs] locks: Rename __locks_copy_lock() to locks_copy_conflock() (Benjamin Coddington) [1377710]
-- [fs] nfs: allow blocking locks to be awoken by lock callbacks (Benjamin Coddington) [1377710]
-- [fs] nfs: move nfs4 lock retry attempt loop to a separate function (Benjamin Coddington) [1377710]
-- [fs] nfs: move nfs4_set_lock_state call into caller (Benjamin Coddington) [1377710]
-- [fs] nfs: add handling for CB_NOTIFY_LOCK in client (Benjamin Coddington) [1377710]
-- [fs] nfs: track whether server sets MAY_NOTIFY_LOCK flag (Benjamin Coddington) [1377710]
-- [fs] nfs: add a new NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK constant (Benjamin Coddington) [1377710]
-- [fs] nfs: use safe, interruptible sleeps when waiting to retry LOCK (Benjamin Coddington) [1377710]
-- [fs] nfs: eliminate pointless and confusing do_vfs_lock wrappers (Benjamin Coddington) [1377710]
-- [fs] nfs: the length argument to read_buf should be unsigned (Benjamin Coddington) [1377710]
-- [fs] Move locks API users to locks_lock_inode_wait() (Benjamin Coddington) [1377710]
-- [fs] locks: introduce locks_lock_inode_wait() (Benjamin Coddington) [1377710]
-- [scsi] lpfc: Fix panic on BFS configuration (Maurizio Lombardi) [1443116]
-- [scsi] lpfc: The lpfc driver does not issue RFF_ID and RFT_ID in the correct sequence (Ewan Milne) [1430272]
-
-* Thu May 11 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-666.el7]
-- [i2c] piix4: Request the SMBUS semaphore inside the mutex (David Arcari) [1446660]
-- [i2c] piix4: Fix request_region size (David Arcari) [1446660]
-- [i2c] piix4: Avoid race conditions with IMC (David Arcari) [1446660]
-- [i2c] piix4: Pre-shift the port number (David Arcari) [1446660]
-- [i2c] piix4: Always use the same type for port (David Arcari) [1446660]
-- [i2c] piix4: Support alternative port selection register (David Arcari) [1446660]
-- [i2c] piix4: don't regress on bus names (David Arcari) [1446660]
-- [i2c] piix4: Fully initialize SB800 before it is registered (David Arcari) [1446660]
-- [i2c] piix4: Fix SB800 locking (David Arcari) [1446660]
-- [i2c] piix4: remove unneeded assignments (David Arcari) [1446660]
-- [i2c] piix4: Add adapter port name support for SB800 chipset (David Arcari) [1446660]
-- [i2c] piix4: Add support for multiplexed main adapter in SB800 (David Arcari) [1446660]
-- [i2c] piix4: Convert piix4_main_adapter to array (David Arcari) [1446660]
-- [i2c] i2c-piix4: Use Macro for AMD CZ SMBus device ID (David Arcari) [1446660]
-- [i2c] delete non-required instances of include <linux/init.h> (David Arcari) [1446660]
-- [i2c] piix4: Standardize log messages (David Arcari) [1446660]
-- [i2c] piix4: Use different message for AMD Auxiliary SMBus Controller (David Arcari) [1446660]
-- [i2c] piix4: Add support for AMD ML and CZ SMBus changes (David Arcari) [1446660]
-- [i2c] piix4: Add support for secondary SMBus on AMD SB800 and AMD FCH chipsets (David Arcari) [1446660]
-- [hwmon] (jc42) Add I2C_CLASS_HWMON to detection class (David Arcari) [1446660]
-- [hwmon] (jc42) Add support for Microchip MCP9808 temperature sensor (David Arcari) [1446660]
-- [hwmon] (jc42) Add support for additional IDT temperature sensors (David Arcari) [1446660]
-- [hwmon] (jc42) Allow negative hysteresis temperatures (David Arcari) [1446660]
-- [hwmon] (jc42) Fix integer overflow when writing hysteresis value (David Arcari) [1446660]
-- [hwmon] (jc42) Fix integer overflow (David Arcari) [1446660]
-- [hwmon] (jc42) Use sign_extend32 for sign extension (David Arcari) [1446660]
-- [hwmon] (jc42) Add support for STTS2004 and AT30TSE004 (David Arcari) [1446660]
-- [hwmon] (jc42) Convert function macros into functions (David Arcari) [1446660]
-- [hwmon] (jc42) Rearrange code to avoid forward declarations (David Arcari) [1446660]
-- [hwmon] (jc42) fix coccinelle warnings (David Arcari) [1446660]
-- [hwmon] (jc42) Convert to use devm_hwmon_device_register_with_groups (David Arcari) [1446660]
-
-* Wed May 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-665.el7]
-- [scsi] qla2xxx: Allow vref count to timeout on vport delete (Himanshu Madhani) [1441897]
-- [vfio] type1: Reduce repetitive calls in vfio_pin_pages_remote() (Alex Williamson) [1438403]
-- [vfio] type1: Prune vfio_pin_page_external() (Alex Williamson) [1438403]
-- [vfio] type1: Remove locked page accounting workqueue (Alex Williamson) [1438403]
-- [acpi] acpica: tables: Update FADT handling (Lenny Szubowicz) [1411246]
-- [acpi] acpica: acpi 6.0: Add changes for FADT table (Lenny Szubowicz) [1411246]
-- [misc] vmci: Use 32bit atomics for queue headers on X86_32 (Cathy Avery) [1437109]
-- [misc] vmci: Guard against overflow in queue pair allocation (Cathy Avery) [1437109]
-- [misc] vmci: Check userland-provided datagram size (Cathy Avery) [1437109]
-- [misc] vmci: Fix two UVA mapping bugs (Cathy Avery) [1437109]
-- [misc] vmci: integer overflow in vmci_datagram_dispatch() (Cathy Avery) [1437109]
-- [misc] vmci: fix error handling path when registering guest driver (Cathy Avery) [1437109]
-- [misc] vmw_vmci: Convert driver to use get_user_pages_fast() (Cathy Avery) [1437109]
-- [misc] vmci: Add support for virtual IOMMU (Cathy Avery) [1437109]
-- [misc] vmci: Remove non-blocking/pinned queuepair support (Cathy Avery) [1437109]
-- [net] vsock: Only check error on skb_recv_datagram when skb is NULL (Cathy Avery) [1437109]
-- [x86] xen: don't crash under Xen hypervisors which present bogus topology (Vitaly Kuznetsov) [1443627]
-- [fs] gfs2: Allow glocks to be unlocked after withdraw (Robert S Peterson) [1404005]
-- [fs] svcrpc: fix memory leak in gssp_accept_sec_context_upcall ("J. Bruce Fields") [1447776]
-- [fs] cifs_get_root shouldn't use path with tree name (Sachin Prabhu) [1373153]
-- [fs] Fix match_prepath() (Sachin Prabhu) [1418107]
-- [fs] locks: __break_lease cleanup in preparation of allowing direct removal of leases (Scott Mayhew) [1444338]
-- [fs] xfs: bufferhead chains are invalid after end_page_writeback (Brian Foster) [1445158]
-- [md] dm cache policy smq: cleanup free_target_met() and clean_target_met() (Mike Snitzer) [1448210]
-- [md] dm cache policy smq: allow demotions to happen even during continuous IO (Mike Snitzer) [1448210]
-- [md] dm cache policy smq: make the cleaner policy write-back more aggressively (Mike Snitzer) [1437251]
-- [md] dm cache: set/clear the cache core's dirty_bitset when loading mappings (Mike Snitzer) [1437251]
-- [md] dm crypt: rewrite (wipe) key in crypto layer using random data (Mike Snitzer) [1444337 1445816]
-- [md] dm mpath: requeue after a small delay if blk_get_request() fails (Mike Snitzer) [1445816]
-- [md] dm era: save spacemap metadata root after the pre-commit (Mike Snitzer) [1445816]
-- [md] dm thin: fix a memory leak when passing discard bio down (Mike Snitzer) [1445816]
-- [md] dm btree: fix for dm_btree_find_lowest_key() (Mike Snitzer) [1445816]
-- [block] fix blk_integrity_register to use template's interval_exp if not 0 (Mike Snitzer) [1445816]
-- [block] blk: Ensure users for current->bio_list can see the full list (Ming Lei) [1447313]
-- [block] blk: improve order of bio handling in generic_make_request() (Ming Lei) [1447313]
-- [netdrv] macvtap: read skb from skb array (Wei Xu) [1447143]
-- [netdrv] Change TECH Preview message to match driver name (David Arcari) [1444721]
-- [netdrv] aquantia: Fix driver name reported by ethtool (David Arcari) [1444721]
-- [netdrv] ib/mlx5: Add port_xmit_wait to counter registers read (Kamal Heib) [1448020 1447995 1447788]
-- [netdrv] ib/mlx5: Add missing hw counters (Kamal Heib) [1448020 1447995 1447788]
-- [netdrv] mlx5e: Initialize ndo_size (Kamal Heib) [1448020 1447995 1447788]
-- [powerpc] eeh: Refactor EEH PE reset functions (Gustavo Duarte) [1428706]
-
-* Mon May 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-664.el7]
-- [fs] nfsd: stricter decoding of write-like NFSv2/v3 ops ("J. Bruce Fields") [1443204] {CVE-2017-7895}
-- [fs] nfsd4: minor NFSv2/v3 write decoding cleanup ("J. Bruce Fields") [1443204] {CVE-2017-7895}
-- [fs] nfsd: check for oversized NFSv2/v3 arguments ("J. Bruce Fields") [1442407] {CVE-2017-7645}
-- [net] macsec: dynamically allocate space for sglist (Sabrina Dubroca) [1445545] {CVE-2017-7477}
-- [net] macsec: avoid heap overflow in skb_to_sgvec (Sabrina Dubroca) [1445545] {CVE-2017-7477}
-- [net] bridge: move bridge multicast cleanup to ndo_uninit (Xin Long) [1434682]
-- [net] bridge: netlink: register netdevice before executing changelink (Xin Long) [1434682]
-- [net] bridge: implement missing ndo_uninit() (Xin Long) [1434682]
-- [net] team: call netdev_change_features out of team lock (Xin Long) [1429679]
-- [net] netfilter: nf_tables: add support for inverted logic in nft_lookup (Hangbin Liu) [1441103]
-- [netdrv] bonding: avoid defaulting hard_header_len to ETH_HLEN on slave removal (Honggang Li) [1425030]
-- [kernel] kallsyms: don't overload absolute symbol type for percpu symbols (Josh Poimboeuf) [1447175]
-- [kernel] kallsyms: fix percpu vars on x86-64 with relocation (Josh Poimboeuf) [1447175]
-- [kernel] kallsyms: generalize address range checking (Josh Poimboeuf) [1447175]
-- [powerpc] Update TM user feature bits in scan_features() (David Gibson) [1445883]
-- [powerpc] Update cpu_user_features2 in scan_features() (David Gibson) [1445883]
-- [powerpc] tm: Abort syscalls in active transactions (David Gibson) [1445883]
-- [powerpc] selftests/powerpc: Add transactional syscall test (David Gibson) [1445883]
-- [powerpc] selftests/powerpc: Make git ignore all binaries in powerpc test suite (David Gibson) [1445883]
-- [powerpc] Disable CPU_FTR_TM if TM is disabled by firmware (David Gibson) [1445883]
-
-* Tue May 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-663.el7]
-- [x86] kvm: x86: fix emulation of RSM and IRET instructions (Ladi Prosek) [1441510]
-- [pci] hv: Allocate interrupt descriptors with GFP_ATOMIC (Vitaly Kuznetsov) [1442282]
-- [pci] hv: Specify CPU_AFFINITY_ALL for MSI affinity when >= 32 CPUs (Vitaly Kuznetsov) [1442282]
-- [pci] hv: Lock PCI bus on device eject (Vitaly Kuznetsov) [1442282]
-- [pci] hv: Properly handle PCI bus remove (Vitaly Kuznetsov) [1442282]
-- [edac] sb_edac: Add Knights Mill support (Aristeu Rozanski) [1432437]
-- [edac] {sb, skx}_edac: Use Intel model macros instead of open-coding them (Aristeu Rozanski) [1432437]
-- [edac] sb_edac: Fix Knights Landing (Aristeu Rozanski) [1432437]
-- [edac] sb_edac: Readd accidentally dropped Broadwell-D support (Aristeu Rozanski) [1432437]
-- [edac] sb_edac: Use cpu family/model in driver detection (Aristeu Rozanski) [1432437]
-- [netdrv] bnx2x: add missing configuration of VF VLAN filters (Michal Schmidt) [1445770]
-- [netdrv] bnx2x: fix incorrect filter count in an error message (Michal Schmidt) [1445770]
-- [netdrv] bnx2x: do not rollback VF MAC/VLAN filters we did not configure (Michal Schmidt) [1445770]
-- [netdrv] bnx2x: fix detection of VLAN filtering feature for VF (Michal Schmidt) [1445770]
-- [netdrv] bnx2x: lower verbosity of VF stats debug messages (Michal Schmidt) [1445770]
-- [powerpc] powernv: Expose OPAL firmware symbol map (Gustavo Duarte) [1444807]
-
-* Tue May 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-662.el7]
-- [drm] config: enable GVT (Rob Clark) [1380115]
-- [drm] makefile: update DRM version (Rob Clark) [1422186]
-- [drm] i915/gvt: set the correct default value of CTX STATUS PTR (Rob Clark) [1422186]
-- [drm] fb-helper: Allow var->x/yres(_virtual) < fb->width/height again (Rob Clark) [1422186]
-- [drm] nouveau: initial support (display-only) for GP107 (Rob Clark) [1422186]
-- [drm] nouveau/kms/nv50: fix double dma_fence_put() when destroying plane state (Rob Clark) [1422186]
-- [drm] nouveau/mmu/nv4a: use nv04 mmu rather than the nv44 one (Rob Clark) [1422186]
-- [drm] nouveau/mpeg: mthd returns true on success now (Rob Clark) [1422186]
-- [drm] i915: Do .init_clock_gating() earlier to avoid it clobbering watermarks (Rob Clark) [1422186]
-- [drm] i915: Avoid rcu_barrier() from reclaim paths (shrinker) (Rob Clark) [1422186]
-- [drm] i915: Stop using RP_DOWN_EI on Baytrail (Rob Clark) [1422186]
-- [drm] i915: Drop support for I915_EXEC_CONSTANTS_* execbuf parameters (Rob Clark) [1422186]
-- [drm] i915: Only enable hotplug interrupts if the display interrupts are enabled (Rob Clark) [1422186]
-- [drm] i915: Reject HDMI 12bpc if the sink doesn't indicate support (Rob Clark) [1422186]
-- [drm] i915: Avoid tweaking evaluation thresholds on Baytrail v3 (Rob Clark) [1422186]
-- [drm] i915: Nuke debug messages from the pipe update critical section (Rob Clark) [1422186]
-- [drm] i915: Store a permanent error in obj->mm.pages (Rob Clark) [1422186]
-- [drm] i915/gen9: Increase PCODE request timeout to 50ms (Rob Clark) [1422186]
-- [drm] i915: Squelch any ktime/jiffie rounding errors for wait-ioctl (Rob Clark) [1422186]
-- [drm] i915/fbdev: Stop repeating tile configuration on stagnation (Rob Clark) [1422186]
-- [drm] i915: Move updating color management to before vblank evasion (Rob Clark) [1422186]
-- [drm] i915: Fix forcewake active domain tracking (Rob Clark) [1422186]
-- [drm] i915: actually drive the BDW reserved IDs (Rob Clark) [1422186]
-- [drm] i915: more .is_mobile cleanups for BDW (Rob Clark) [1422186]
-- [drm] i915: fix INTEL_BDW_IDS definition (Rob Clark) [1422186]
-- [drm] edid: constify edid quirk list (Rob Clark) [1422186]
-- [drm] vmwgfx: fix integer overflow in vmw_surface_define_ioctl() (Rob Clark) [1422186]
-- [drm] vmwgfx: Remove getparam error message (Rob Clark) [1422186]
-- [drm] ttm, drm/vmwgfx: Relax permission checking when opening surfaces (Rob Clark) [1422186]
-- [drm] vmwgfx: avoid calling vzalloc with a 0 size in vmw_get_cap_3d_ioctl() (Rob Clark) [1422186]
-- [drm] vmwgfx: NULL pointer dereference in vmw_surface_define_ioctl() (Rob Clark) [1422186]
-- [drm] vmwgfx: Type-check lookups of fence objects (Rob Clark) [1422186]
-- [drm] i915: Split intel_engine allocation and initialisation (Rob Clark) [1380115]
-- [drm] nouveau/kms/nv50: fix setting of HeadSetRasterVertBlankDmi method (Rob Clark) [1422186]
-- [drm] vfio: Rework group release notifier warning (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix firmware loading interface for GVT-g golden HW state (Rob Clark) [1380115]
-- [drm] i915/gvt: remove the redundant info NULL check (Rob Clark) [1380115]
-- [drm] i915/gvt: adjust mem size for low resolution type (Rob Clark) [1380115]
-- [drm] i915/gvt: exclude cfg space from failsafe mode (Rob Clark) [1380115]
-- [drm] i915/gvt: Activate/de-activate vGPU in mdev ops (Rob Clark) [1380115]
-- [drm] i915/gvt: Use force single submit flag to distinguish gvt request from i915 request (Rob Clark) [1380115]
-- [drm] i915: make context status notifier head be per engine (Rob Clark) [1380115]
-- [drm] i915/gvt: set shadow entry to scratch page while p2m failed (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix guest fail to read EDID leading to black guest console issue (Rob Clark) [1380115]
-- [drm] i915/gvt: fix wrong offset when loading RCS mocs (Rob Clark) [1380115]
-- [drm] i915/gvt: add write handler for mmio mbctl (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix gvt scheduler interval time (Rob Clark) [1380115]
-- [drm] i915/gvt: scan shadow indirect context image when valid (Rob Clark) [1380115]
-- [drm] i915/kvmgt: fix suspicious rcu dereference usage (Rob Clark) [1380115]
-- [drm] i915/gvt: Remove bogus retry around i915_wait_request (Rob Clark) [1380115]
-- [drm] i915/gvt: correct the ggtt valid bit check in pipe control command (Rob Clark) [1380115]
-- [drm] i915/gvt: replace the gvt_err with gvt_vgpu_err (Rob Clark) [1380115]
-- [drm] i915/gvt: handle force-nonpriv registers, cmd parser part (Rob Clark) [1380115]
-- [drm] i915/gvt: set ring buffer size to default for guc submission (Rob Clark) [1380115]
-- [drm] i915/gvt: change some gvt_err to gvt_dbg_cmd (Rob Clark) [1380115]
-- [drm] i915/gvt: protect RO and Rsvd bits of virtual vgpu configuration space (Rob Clark) [1380115]
-- [drm] i915/gvt: handle workload lifecycle properly (Rob Clark) [1380115]
-- [drm] i915/gvt: fix an error for F_RO flag (Rob Clark) [1380115]
-- [drm] i915/gvt: use pfn_valid for better checking (Rob Clark) [1380115]
-- [drm] i915/gvt: set SFUSE_STRAP properly for vitual monitor detection (Rob Clark) [1380115]
-- [drm] i915/gvt: fix an error for one register (Rob Clark) [1380115]
-- [drm] i915/gvt: add more registers into handlers list (Rob Clark) [1380115]
-- [drm] i915/gvt: have more registers with F_CMD_ACCESS flags set (Rob Clark) [1380115]
-- [drm] i915/gvt: add some new MMIOs to cmd_access white list (Rob Clark) [1380115]
-- [drm] i915/gvt: fix pcode mailbox write emulation of BDW (Rob Clark) [1380115]
-- [drm] i915/gvt: add resolution definition for vGPU type (Rob Clark) [1380115]
-- [drm] i915/gvt: Add more edid definition support (Rob Clark) [1380115]
-- [drm] i915/gvt: adjust to fixed vGPU types (Rob Clark) [1380115]
-- [drm] i915/gvt: remove unnecessary error msg from gtt write (Rob Clark) [1380115]
-- [drm] i915/gvt: refine pcode write emulation (Rob Clark) [1380115]
-- [drm] i915/gvt: clear the vGPU reset logic (Rob Clark) [1380115]
-- [drm] i915/gvt: decrease priority of output msg for untracked mmio (Rob Clark) [1380115]
-- [drm] i915/gvt: set default value to 0 for unhandled mmio regs (Rob Clark) [1380115]
-- [drm] i915/gvt: add cmd_access to GEN7_HALF_SLICE_CHICKEN1 (Rob Clark) [1380115]
-- [drm] i915/gvt: force-nopriv register handling (Rob Clark) [1380115]
-- [drm] i915/gvt: add more registers to context save/restore list (Rob Clark) [1380115]
-- [drm] i915/gvt: fix unhandled mmio warnings (Rob Clark) [1380115]
-- [drm] i915/gvt: add a NULL pointer check to avoid kernel panic (Rob Clark) [1380115]
-- [drm] i915/gvt: enter failsafe mode when guest requires more resources (Rob Clark) [1380115]
-- [drm] i915/gvt: handle fence reg access during GPU reset (Rob Clark) [1380115]
-- [drm] i915/gvt: introduced failsafe mode into vgpu (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix check error on opregion.c (Rob Clark) [1380115]
-- [drm] i915/gvt: return error code if dma map iova failed (Rob Clark) [1380115]
-- [drm] i915/gvt: optimize the inhibit context mmio load (Rob Clark) [1380115]
-- [drm] i915/gvt: add sprite plane flip done support (Rob Clark) [1380115]
-- [drm] i915/gvt: add missing display part reset for vGPU reset (Rob Clark) [1380115]
-- [drm] i915/gvt: Fix shadow context descriptor (Rob Clark) [1380115]
-- [drm] i915/gvt: fix crash at function release_shadow_wa_ctx (Rob Clark) [1380115]
-- [drm] i915/gvt: enable IOMMU for gvt (Rob Clark) [1380115]
-- [drm] i915/gvt: map pfn for PTE entry in kvm (Rob Clark) [1380115]
-- [drm] i915/gvt: Map shadow page before using it in shadow page table (Rob Clark) [1380115]
-- [drm] i915/gvt: reduce the line of interrupt logs and log friendly (Rob Clark) [1380115]
-- [drm] i915/gvt: remove a redundant end of line in debug log (Rob Clark) [1380115]
-- [drm] i915/gvt: remove a noisy unimportant log in sched_policy (Rob Clark) [1380115]
-- [drm] i915/gvt/kvmgt: remove some dead code (Rob Clark) [1380115]
-- [drm] i915/gvt: fix vgpu type size init (Rob Clark) [1380115]
-- [drm] i915/gvt: use normal mmio read function for firmware exposure (Rob Clark) [1380115]
-- [drm] i915/gvt: remove detect_host() MPT hook (Rob Clark) [1380115]
-- [drm] i915/gvt: move intel iommu detection to intel_gvt_init() (Rob Clark) [1380115]
-- [drm] i915: make intel_gvt_init() later instead of too early (Rob Clark) [1380115]
-- [drm] i915/gvt: add more resolutions in virtual edid (Rob Clark) [1380115]
-- [drm] i915: A hotfix for making aliasing PPGTT work for GVT-g (Rob Clark) [1380115 1422186]
-- [drm] i915: Let execlist_update_context() cover !FULL_PPGTT mode (Rob Clark) [1380115 1422186]
-- [drm] i915: Move the release of PT page to the upper caller (Rob Clark) [1380115 1422186]
-- [drm] i915/kvmgt: Hold struct kvm reference (Rob Clark) [1422186]
-- [drm] radeon: Override fpfn for all VRAM placements in radeon_evict_flags (Rob Clark) [1422186]
-- [drm] reference count event->completion (Rob Clark) [1422186]
-- [drm] amd/amdgpu: add POLARIS12 PCI ID (Rob Clark) [1422186]
-- [drm] amdgpu: reinstate oland workaround for sclk (Rob Clark) [1422186]
-- [drm] amdgpu/si: add dpm quirk for Oland (Rob Clark) [1422186]
-- [drm] i915/lspcon: Fix resume time initialization due to unasserted HPD (Rob Clark) [1422186]
-- [drm] i915/gen9+: Enable hotplug detection early (Rob Clark) [1422186]
-- [drm] i915/lspcon: Enable AUX interrupts for resume time initialization (Rob Clark) [1422186]
-- [drm] i915/gvt: Fix superfluous newline in GVT_DISPLAY_READY env var (Rob Clark) [1380115 1422186]
-- [drm] i915: Fix not finding the VBT when it overlaps with OPREGION_ASLE_EXT (Rob Clark) [1422186]
-- [drm] i915: Pass timeout==0 on to i915_gem_object_wait_fence() (Rob Clark) [1422186]
-- [drm] i915: Check for timeout completion when waiting for the rq to submitted (Rob Clark) [1422186]
-- [drm] i915: Avoid spurious WARNs about the wrong pipe in the PPS code (Rob Clark) [1422186]
-- [drm] i915: Recreate internal objects with single page segments if dmar fails (Rob Clark) [1422186]
-- [drm] Cancel drm_fb_helper_resume_work on unload (Rob Clark) [1422186]
-- [drm] Cancel drm_fb_helper_dirty_work on unload (Rob Clark) [1422186]
-- [drm] i915/gvt: Disable access to stolen memory as a guest (Rob Clark) [1422186]
-- [drm] atomic: fix an error code in mode_fixup() (Rob Clark) [1422186]
-- [drm] ttm: Make sure BOs being swapped out are cacheable (Rob Clark) [1422186]
-- [drm] edid: Add EDID_QUIRK_FORCE_8BPC quirk for Rotel RSX-1058 (Rob Clark) [1422186]
-- [drm] radeon: handle vfct with multiple vbios images (Rob Clark) [1422186]
-- [drm] ast: Fix AST2400 POST failure without BMC FW or VBIOS (Rob Clark) [1422186]
-- [drm] ast: Call open_key before enable_mmio in POST code (Rob Clark) [1422186]
-- [drm] ast: Fix test for VGA enabled (Rob Clark) [1422186]
-- [drm] revert "drm/amdgpu: update tile table for oland/hainan" (Rob Clark) [1422186]
-- [drm] amdgpu/pm: check for headless before calling compute_clocks (Rob Clark) [1422186]
-- [drm] amdgpu: add more cases to DCE11 possible crtc mask setup (Rob Clark) [1422186]
-
-* Mon May 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-661.el7]
-- [scsi] sd: Consider max_xfer_blocks if opt_xfer_blocks is unusable (Ewan Milne) [1436582]
-- [scsi] revert "lpfc: Revert: Fix eh_deadline setting for sli3 adapters" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Correct WQ creation for pagesize" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: minor code cleanups" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: refactor debugfs queue prints" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: refactor debugfs queue dump routines" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Initiator: Base modifications" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Initiator: Merge into FC discovery" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Initiator: bind to nvme_fc api" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Initiator: Add debugfs support" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: Base modifications" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: Receive buffer updates" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: Merge into FC discovery" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: bind to nvmet_fc api" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: NVME Target: Add debugfs support" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Update copyrights" (Ewan Milne) [1444045]
-- [scsi] revert "Update lpfc version to 11.2.0.8 with NVME support" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: remove redundant assignment of sgel" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: sanity check hrq is null before dereferencing it" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: don't dereference dma_buf-&gt; iocbq before null check" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: fix missing spin_unlock on sql_list_lock" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix crash during Hardware error recovery on SLI3 adapters" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix RCTL value on NVME LS request and response" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix NVME CMD IU byte swapped word 1 problem" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix IO submission if WQ is full" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix nvme allocation bug on failed nvme_fc_register_localport" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: add NVME exchange aborts" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Rename LPFC_MAX_EQ_DELAY to LPFC_MAX_EQ_DELAY_EQID_CNT" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: correct double print" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: remove dead sli3 nvme code" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: correct rdp diag portnames" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: code cleanups in NVME initiator discovery" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Fix eh_deadline setting for sli3 adapters" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: replace init_timer by setup_timer" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: add missing Kconfig NVME dependencies" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Rework lpfc Kconfig for NVME options" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Finalize Kconfig options for nvme" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: The lpfc driver does not issue RFF_ID and RFT_ID in the correct sequence" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc version bump for nvme to 11.2.0.11" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: cleanup of abort flag processing in fcp_op_done" (Ewan Milne) [1444045]
-- [nvme] revert "nvme-fc: don't bother to validate ioccsz and iorcsz" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Sync FC-NVME header with standard" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Add check of status_code in ERSP_IU" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: Sync NVME LS reject reasons with spec" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: correct LS validation" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: Clear SG list to avoid double frees" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Clean up host fcpio done status handling" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: add target feature flags for upcall isr contexts" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: add req_release to lldd api" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fcloop: split job struct from transport for req_release" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: Rework target side abort handling" (Ewan Milne) [1444045]
-- [nvme] revert "nvmet_fc: add missing reference in add_port" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Move LS's to rport" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: Add ls aborts on remote port teardown" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: fix command id check" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: add aen abort to teardown" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: add controller reset support" (Ewan Milne) [1444045]
-- [nvme] revert "nvme-fc: add .map_queue entry to blk_mq_ops" (Ewan Milne) [1444045]
-- [nvme] revert "nvme_fc: avoid double kfree(), don't call nvme_cleanup_cmd() in nvme_fc_unmap_data()" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: Mark NVMe and NVMe Target support as tech preview" (Ewan Milne) [1444045]
-- [scsi] revert "lpfc: code cleanups in NVME initiator base" (Ewan Milne) [1444045]
-- [scsi] qla2xxx: Update message for module parameter (Himanshu Madhani) [1445879]
-
-* Sat Apr 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-660.el7]
-- [kernel] tick/broadcast-hrtimer: Set name of the ce_broadcast_hrtimer (Prarit Bhargava) [1443846]
-- [kernel] sched: Transform resched_task() into resched_curr() (Waiman Long) [1418778]
-- [kernel] sched/core: Remove false-positive warning from wake_up_process() (Waiman Long) [1436128]
-- [iommu] vt-d: Make sure IOMMUs are off when intel_iommu=off (Baoquan He) [1441413]
-- [fs] xfs: drop iolock from reclaim context to appease lockdep (Brian Foster) [1441364]
-- [fs] xfs: fix eofblocks race with file extending async dio writes (Brian Foster) [1441364]
-- [fs] xfs: sync eofblocks scans under iolock are livelock prone (Brian Foster) [1441364]
-- [fs] xfs: pull up iolock from xfs_free_eofblocks() (Brian Foster) [1441364]
-- [mm] memblock: fix memblock_next_valid_pfn() (Frank Ramsay) [1438940]
-- [mm] page_alloc: skip over regions of invalid pfns where possible (Frank Ramsay) [1438940]
-- [x86] llvmlinux: Fix "incomplete type const struct x86cpu_device_id" (Ming Lei) [1367596 1437476]
-- [x86] xen: do not re-use pirq number cached in pci device msi msg data (Vitaly Kuznetsov) [1433831]
-- [x86] kvm: x86: Add MSR_AMD64_DC_CFG to the list of ignored MSRs (Ladi Prosek) [1440025]
-- [x86] perf/intel/rapl: Fix module name collision with powercap intel-rapl (David Arcari) [1445833]
-- [x86] Mark AMD Naples/Ryzen as unsupported (David Arcari) [1444841]
-- [x86] mpx: saving FPU in do_bounds() (Rui Wang) [1443281]
-- [x86] mm: fix gup_pte_range() vs DAX mappings (Jeff Moyer) [1443284]
-- [x86] mm/gup: Simplify get_user_pages() PTE bit handling (Jeff Moyer) [1443284]
-- [x86] revert "mm: Fix gup_huge_p?d() to handle large PAT bit" (Jeff Moyer) [1443284]
-- [x86] revert "mm: Simplify get_user_pages() PTE bit handling" (Jeff Moyer) [1443284]
-- [x86] revert "mm: fix gup_pte_range() vs DAX mappings" (Jeff Moyer) [1443284]
-- [scsi] Avoid that SCSI queues get stuck (Ming Lei) [1441114]
-- [scsi] blk-mq: Introduce blk_mq_delay_run_hw_queue() (Ming Lei) [1441114]
-- [scsi] qedi: Add PCI device-ID for QL41xxx adapters (Chad Dupuis) [1432622]
-- [netdrv] qed: Correct MSI-x for storage (Harish Patil) [1432196]
-- [netdrv] qed*: Add support for QL41xxx adapters (Harish Patil) [1432196]
-- [netdrv] qedf: fix wrong le16 conversion (Harish Patil) [1432196]
-- [netdrv] qed*: Utilize Firmware 8.15.3.0 (Harish Patil) [1432196]
-- [netdrv] qed: Don't free a QP more than once (Harish Patil) [1432196]
-- [netdrv] be2net: VxLAN offload should be re-enabled when only 1 UDP port is left (Ivan Vecera) [1427258]
-
-* Thu Apr 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-659.el7]
-- [virtio] virtio_balloon: prevent uninitialized variable use (David Hildenbrand) [1439570]
-- [virtio] virtio-balloon: use actual number of stats for stats queue buffers (David Hildenbrand) [1439570]
-- [virtio] virtio_balloon: init 1st buffer in stats vq (David Hildenbrand) [1439570]
-- [virtio] update balloon size in balloon "probe" (David Hildenbrand) [1439570]
-- [virtio] virtio_balloon: Allow to resize and update the balloon stats in parallel (David Hildenbrand) [1439570]
-- [virtio] virtio_balloon: Use a workqueue instead of "vballoon" kthread (David Hildenbrand) [1439570]
-- [virtio] virtio-balloon: do not call blocking ops when !TASK_RUNNING (David Hildenbrand) [1439570]
-- [netdrv] e1000e: fix timing for 82579 Gigabit Ethernet controller (Jarod Wilson) [1442918 1383529]
-- [netdrv] revert "e1000e: driver trying to free already-free irq" (Jarod Wilson) [1442918 1383529]
-- [netdrv] sfc: tx ring can only have 2048 entries for all EF10 NICs (Jarod Wilson) [1389480]
-- [netdrv] sfc: limit the number of receive queues (Jarod Wilson) [1389480]
-- [netdrv] sfc: don't insert mc_list on low-latency firmware if it's too long (Jarod Wilson) [1389480]
-- [netdrv] sfc: cleanup a condition in efx_udp_tunnel_del() (Jarod Wilson) [1389480]
-- [netdrv] sfc: fix IPID endianness in TSOv2 (Jarod Wilson) [1389480]
-- [netdrv] sfc: avoid max() in array size (Jarod Wilson) [1389480]
-- [netdrv] sfc: fix "an one" typo instances (Jarod Wilson) [1389480]
-- [netdrv] bnx2x: prevent crash when accessing PTP with interface down (Michal Schmidt) [1344743]
-- [netdrv] bnx2x: fix possible overrun of VFPF multicast addresses array (Michal Schmidt) [1445814]
-- [netdrv] ib/mlx5: Verify that Q counters are supported (Kamal Heib) [1442597]
-- [netdrv] mlx5e: Count LRO packets correctly (Kamal Heib) [1440660]
-- [netdrv] mlx5e: Count GSO packets correctly (Kamal Heib) [1440660]
-- [powerpc] Emulation support for load/store instructions on LE (Bhupesh Sharma) [1436294]
-- [powerpc] sstep: Return directly after a failed address_ok() in emulate_step() (Bhupesh Sharma) [1436294]
-- [powerpc] sstep: Fix emulation fall-through (Bhupesh Sharma) [1436294]
-- [powerpc] sstep: Fix sstep.c compile on powerpcspe (Bhupesh Sharma) [1436294]
-- [powerpc] Fix compilation of emulate_step() (Bhupesh Sharma) [1436294]
-- [powerpc] Implement emulation of string loads and stores (Bhupesh Sharma) [1436294]
-- [powerpc] Emulate icbi, mcrf and conditional-trap instructions (Bhupesh Sharma) [1436294]
-- [powerpc] Split out instruction analysis part of emulate_step() (Bhupesh Sharma) [1436294]
-
-* Wed Apr 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-658.el7]
-- [netdrv] qed: Enable iSCSI Out-of-Order (Harish Patil) [1432632]
-- [netdrv] qed: Correct out-of-bound access in OOO history (Harish Patil) [1432632]
-- [netdrv] qed: Fix mapping leak on LL2 rx flow (Harish Patil) [1432632]
-- [netdrv] qed: Align CIDs according to DORQ requirement (Harish Patil) [1432632]
-- [vhost] introduce O(1) vq metadata cache (Wei Xu) [1425127 1283257]
-- [vhost] add missing __user annotations (Wei Xu) [1283257 1425127]
-- [vhost] make interval tree static inline (Wei Xu) [1283257 1425127]
-- [vhost] detect 32 bit integer wrap around (Wei Xu) [1283257 1425127]
-- [uapi] vhost: new device IOTLB API (Wei Xu) [1425127 1283257]
-- [vhost] convert pre sorted vhost memory array to interval tree (Wei Xu) [1425127 1283257]
-- [vhost] introduce vhost memory accessors (Wei Xu) [1425127 1283257]
-- [vhost] remove unnecessary forward declarations in vhost.h (Wei Xu) [1283257 1425127]
-- [vhost] replace  with & on data path (Wei Xu) [1283257 1425127]
-- [uapi] virtio: new feature to detect IOMMU device quirk (Wei Xu) [1425127 1283257]
-- [virtio] virtio_pci: Use the DMA API if enabled (Wei Xu) [1283257 1425127]
-- [virtio] virtio_mmio: Use the DMA API if enabled (Wei Xu) [1283257 1425127]
-- [virtio] Silence uninitialized variable warning (Wei Xu) [1283257 1425127]
-- [kernel] virtio: Add improved queue allocation API (Wei Xu) [1283257 1425127]
-- [tools] virtio_ring: Support DMA APIs (Wei Xu) [1283257 1425127]
-- [virtio] vring: Introduce vring_use_dma_api() (Wei Xu) [1283257 1425127]
-- [kernel] s390/dma: Allow per device dma ops (Wei Xu) [1425127 1283257]
-- [lib] dma: Provide simple noop dma ops (Wei Xu) [1283257 1425127]
-- [fs] ext4: fix an ext3 collapse range regression in xfstests (Lukas Czerner) [1435541]
-- [fs] btrfs: Use __u64 in exported linux/btrfs.h (Bill O'Donnell) [1437489]
-- [fs] nfs: Fix missing pg_cleanup after nfs_pageio_cond_complete() (Benjamin Coddington) [1358574]
-- [fs] pnfs: return status from nfs4_pnfs_ds_connect (Benjamin Coddington) [1350261]
-- [fs] lockd: Introduce nlmclnt_operations (Benjamin Coddington) [1240357]
-- [fs] nfs: Add an iocounter wait function for async RPC tasks (Benjamin Coddington) [1240357]
-- [fs] nfs: Use wait_on_atomic_t() for unlock after readahead (Benjamin Coddington) [1240357]
-- [fs] locks: Set FL_CLOSE when removing flock locks on close() (Benjamin Coddington) [1240357]
-- [fs] nfs: Move the flock open mode check into nfs_flock() (Benjamin Coddington) [1240357]
-- [fs] nfs4: remove a redundant lock range check (Benjamin Coddington) [1240357]
-- [fs] sunrpc: don't pass on-stack memory to sg_set_buf (Benjamin Coddington) [1346106]
-- [fs] nfs: Fix old dentry rehash after move (Benjamin Coddington) [1349647]
-- [fs] locks: allow __break_lease to sleep even when break_time is 0 ("J. Bruce Fields") [1088012]
-- [fs] nfsd: opt in to labeled nfs per export ("J. Bruce Fields") [1406885]
-- [fs] NFSv4.1 fix infinite loop on IO BAD_STATEID error (Steve Dickson) [1437584]
-- [fs] NFS prevent double free in async nfs4_exchange_id (Steve Dickson) [1431756]
-- [fs] NFSv4.1 respect server's max size in CREATE_SESSION (Steve Dickson) [1431757]
-- [fs] nfs: Don't disconnect open-owner on NFS4ERR_BAD_SEQID (Steve Dickson) [1431755]
-- [fs] nfs: fix the fault nrequests decreasing for nfs_inode COPY (Steve Dickson) [1436301]
-- [fs] sunrpc, nfs: Add and use dprintk_cont macros (Steve Dickson) [1436301]
-- [fs] vfs: guard end of device for mpage interface (Ming Lei) [1309318]
-- [fs] vfs: make guard_bh_eod() more generic (Ming Lei) [1309318]
-- [fs] autofs: dont hold spin lock over direct mount expire (Ian Kent) [1320588]
-- [fs] autofs: constify misc struct path instances (Ian Kent) [1320588]
-- [fs] autofs: use path_has_submounts() to fix unreliable have_submount() checks (Ian Kent) [1320588]
-- [fs] autofs: use path_is_mountpoint() to fix unreliable d_mountpoint() checks (Ian Kent) [1320588]
-- [fs] autofs: change autofs4_wait() to take struct path (Ian Kent) [1320588]
-- [fs] autofs: change autofs4_expire_wait()/do_expire_wait() to take struct path (Ian Kent) [1320588]
-- [fs] vfs: add path_has_submounts() (Ian Kent) [1320588]
-- [fs] vfs: add path_is_mountpoint() helper (Ian Kent) [1320588]
-- [fs] vfs: change d_manage() to take a struct path (Ian Kent) [1320588]
-- [fs] xfs: handle array index overrun in xfs_dir2_leaf_readbuf() (Carlos Maiolino) [1440860]
-- [fs] xfs: use dedicated log worker wq to avoid deadlock with cil wq (Brian Foster) [1422225]
-- [fs] xfs: fix bogus space reservation in xfs_iomap_write_allocate (Brian Foster) [1435738]
-
-* Mon Apr 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-657.el7]
-- [md] dm raid: fix table line argument order in status (Mike Snitzer) [1435020]
-- [fs] proc: fix GPF in /proc/$PID/map_files (Carlos Maiolino) [1438001]
-- [fs] gfs2: Re-enable fallocate for the rindex (Andrew Price) [1399830]
-- [fs] config: enable dlm for ppc64le (Andrew Price) [1429822]
-- [fs] configs: enable gfs2 for ppc64le (Andrew Price) [1429830]
-- [fs] nfs: Allow getattr to also report readdirplus cache hits (Dave Wysochanski) [1442068]
-- [fs] nfs: Be more targeted about readdirplus use when doing lookup/revalidation (Dave Wysochanski) [1442068]
-- [fs] nfs: Fix a performance regression in readdir (Dave Wysochanski) [1442068]
-- [fs] nfs: tidy up nfs_show_mountd_netid (Steve Dickson) [1395068]
-- [fs] pnfs: consolidate the different range intersection tests (Steve Dickson) [1436736]
-- [fs] pnfs/flexfiles: Only send layoutstats updates for mirrors that were updated (Steve Dickson) [1436736]
-- [fs] pnfs/flexfiles: Don't attempt to send layoutstats if there are no entries (Steve Dickson) [1436736]
-- [x86] cpufeature: Enable RING3MWAIT for Knights Mill (Xiaolong Wang) [1387697]
-- [x86] cpufeature: Enable RING3MWAIT for Knights Landing (Xiaolong Wang) [1387697]
-- [x86] cpufeature: Add RING3MWAIT to CPU features (Xiaolong Wang) [1387697]
-- [x86] elf: Add HWCAP2 to expose ring 3 MONITOR/MWAIT (Xiaolong Wang) [1387697]
-- [x86] msr: Add MSR_MISC_FEATURE_ENABLES and RING3MWAIT bit (Xiaolong Wang) [1387697]
-- [x86] Fix typo preventing msr_set/clear_bit from having an effect (Xiaolong Wang) [1387697]
-- [x86] kvm: x86: bump KVM_(SOFT_)MAX_VCPUS to 384 (Radim Krcmar) [1433954]
-- [x86] kvm: x86: fix out-of-bounds accesses of rtc_eoi map (Radim Krcmar) [1433954]
-- [x86] kvm: x86: bump KVM_MAX_VCPU_ID to 1023 (Radim Krcmar) [1433954]
-- [x86] kvm: introduce KVM_MAX_VCPU_ID (Radim Krcmar) [1433954]
-- [x86] kvm: fix page struct leak in handle_vmon (Paolo Bonzini) [1417825] {CVE-2017-2596}
-- [x86] intel_rdt: Fix the notifier priority crash (Jiri Olsa) [1442204]
-- [xen] balloon: Set balloon's initial state to number of existing RAM pages (Vitaly Kuznetsov) [1437309]
-- [pci] Avoid output of ioapic probe error (David Arcari) [1377960]
-- [scsi] storvsc: remove bogus code to transfer struct scatterlist (Cathy Avery) [1429882]
-- [scsi] storvsc: properly handle SRB_ERROR when sense message is present (Cathy Avery) [1429882]
-- [scsi] storvsc: use tagged SRB requests if supported by the device (Cathy Avery) [1429882]
-- [scsi] storvsc: Enable multi-queue support (Cathy Avery) [1429882]
-- [scsi] storvsc: Remove the restriction on max segment size (Cathy Avery) [1429882]
-- [gpio] acpi: Return -EPROBE_DEFER if the gpiochip was not found (Gopal Tiwari) [1415450]
-- [block] blk-mq: don't complete un-started request in timeout handler (Ming Lei) [1429353]
-- [kernel] compiler-gcc: integrate the various compiler-gcc[345].h files (Rafael Aquini) [1367596]
-- [kernel] compiler-gcc.h: neatening (Rafael Aquini) [1367596]
-- [kernel] lib: make memzero_explicit more robust against dead store elimination (Rafael Aquini) [1367596]
-- [kernel] lib: memzero_explicit: use barrier instead of OPTIMIZER_HIDE_VAR (Rafael Aquini) [1367596]
-- [kernel] compiler: introduce __alias(symbol) shortcut (Rafael Aquini) [1367596]
-- [kernel] compiler-intel.h: Remove duplicate definition (Rafael Aquini) [1367596]
-- [powerpc] mm: Add missing global TLB invalidate if cxl is active (Steve Best) [1440776]
-
-* Thu Apr 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-656.el7]
-- [documentation] ipvs: Document sysctl pmtu_disc (Hangbin Liu) [1415642]
-- [documentation] ipvs: Document sysctl sync_ports (Hangbin Liu) [1415642]
-- [documentation] ipvs: Document sysctl sync_qlen_max and sync_sock_size (Hangbin Liu) [1415642]
-- [documentation] ipvs: fix sync_threshold description and add sync_refresh_period, sync_retries (Hangbin Liu) [1415642]
-- [net] neigh: do not modify unlinked entries (Jakub Sitnicki) [1389292]
-- [net] revert "tcp: fix the timid additive increase on stretch ACKs" (Hannes Frederic Sowa) [1418870]
-- [net] revert "tcp: fix stretch ACK bugs in Reno" (Hannes Frederic Sowa) [1418870]
-- [net] revert "tcp: fix tcp_cong_avoid_ai() credit accumulation bug with decreases in w" (Hannes Frederic Sowa) [1418870]
-- [netdrv] macvtap: fix use after free for skb_array during release (Wei Xu) [1414006]
-- [netdrv] macvtap: correctly free skb during socket destruction (Wei Xu) [1414006]
-- [netdrv] macvtap: switch to use skb array (Wei Xu) [1414006]
-- [netdrv] macvtap: Do not double-count received packets (Wei Xu) [1414006]
-- [netdrv] macvlan: fix leak in macvlan_handle_frame (Wei Xu) [1414006]
-- [net] tun: remove unnecessary sk_receive_queue (Wei Xu) [1352741]
-- [net] tun: Don't assume type tun in tun_device_event (Wei Xu) [1352741]
-- [net] tun: fix build warnings (Wei Xu) [1352741]
-- [net] tun: switch to use skb array for tx (Wei Xu) [1352741]
-- [net] introduce NETDEV_CHANGE_TX_QUEUE_LEN (Wei Xu) [1352741]
-- [net] ptr_ring: fix race conditions when resizing (Wei Xu) [1352741]
-- [net] skb_array: add wrappers for resizing (Wei Xu) [1352741]
-- [net] ptr_ring: support resizing multiple queues (Wei Xu) [1352741]
-- [net] skb_array: minor tweak (Wei Xu) [1352741]
-- [net] ptr_ring: support zero length ring (Wei Xu) [1352741]
-- [net] skb_array: resize support (Wei Xu) [1352741]
-- [net] ptr_ring: resize support (Wei Xu) [1352741]
-- [net] skb_array: array based FIFO for skbs (Wei Xu) [1352741]
-- [net] ptr_ring: array based FIFO for pointers (Wei Xu) [1352741]
-- [net] packet: fix overflow in check for tp_reserve (Hangbin Liu) [1441172] {CVE-2017-7308}
-- [net] packet: fix overflow in check for tp_frame_nr (Hangbin Liu) [1441172] {CVE-2017-7308}
-- [net] packet: fix overflow in check for priv area size (Hangbin Liu) [1441172] {CVE-2017-7308}
-- [net] tcp: minimize false-positives on TCP/GRO check (Marcelo Leitner) [1438309]
-- [net] audit: normalize NETFILTER_PKT (Richard Guy Briggs) [1382494]
-- [net] netfilter: use consistent ipv4 network offset in xt_AUDIT (Richard Guy Briggs) [1382494]
-- [net] netfilter: Convert uses of __constant_<foo> to <foo> (Richard Guy Briggs) [1382494]
-
-* Tue Apr 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-655.el7]
-- [scsi] sg: check length passed to SG_NEXT_CMD_LEN ("Ewan D. Milne") [1439047] {CVE-2017-7187}
-- [scsi] ipr: do not set DID_PASSTHROUGH on CHECK CONDITION (Steve Best) [1441747]
-- [scsi] storvsc: Support manual scan of FC hosts on Hyper-V (Cathy Avery) [1425469]
-- [fs] proc/kcore: update physical address for kcore ram and text (Pratyush Anand) [1419888]
-- [pci] pciehp: Leave power indicator on when enabling already-enabled slot (Myron Stowe) [1435818]
-- [pci] pciehp: Prioritize data-link event over presence detect (Myron Stowe) [1435818]
-- [pci] cpqphp: Add missing call to pci_disable_device() (Myron Stowe) [1435818]
-- [pci] pciehp: Remove useless pciehp_get_latch_status() calls (Myron Stowe) [1435818]
-- [pci] pciehp: Clean up dmesg "Slot(s)" messages (Myron Stowe) [1435818]
-- [pci] pciehp: Remove unnecessary guard (Myron Stowe) [1435818]
-- [pci] pciehp: Don't re-read Slot Status when handling surprise event (Myron Stowe) [1435818]
-- [pci] pciehp: Don't re-read Slot Status when queuing hotplug event (Myron Stowe) [1435818]
-- [pci] pciehp: Process all hotplug events before looking for new ones (Myron Stowe) [1435818]
-- [pci] pciehp: Return IRQ_NONE when we can't read interrupt status (Myron Stowe) [1435818]
-- [pci] pciehp: Rename pcie_isr() locals for clarity (Myron Stowe) [1435818]
-- [pci] Fix all whitespace issues (Myron Stowe) [1435818]
-- [pci] pciehp: Always protect pciehp_disable_slot() with hotplug mutex (Myron Stowe) [1435818]
-- [netdrv] bonding: handle link transition from FAIL to UP correctly (Jarod Wilson) [1412921]
-- [netdrv] bonding: attempt to better support longer hw addresses (Jarod Wilson) [1412921]
-- [netdrv] bonding: fix active-backup transition (Jarod Wilson) [1412921]
-- [netdrv] bonding: refine bond_fold_stats() wrap detection (Jarod Wilson) [1412921]
-- [netdrv] bonding: avoid printing while holding a spinlock (Jarod Wilson) [1412921]
-- [netdrv] bonding: correctly update link status during mii-commit phase (Jarod Wilson) [1412921]
-- [netdrv] bonding: make speed, duplex setting consistent with link state (Jarod Wilson) [1412921]
-- [netdrv] bonding: improve link-status update in mii-monitoring (Jarod Wilson) [1412921]
-- [netdrv] bonding: split bond_set_slave_link_state into two parts (Jarod Wilson) [1412921]
-- [netdrv] bonding: reduce scope of some global variables (Jarod Wilson) [1412921]
-- [netdrv] bonding: remove "port-moved" state that was never implemented (Jarod Wilson) [1412921]
-- [netdrv] bonding: remove hardcoded value (Jarod Wilson) [1412921]
-- [netdrv] bonding: Remove unnecessary returned value check (Jarod Wilson) [1412921]
-- [netdrv] bonding: quit messing with IOCTL (Jarod Wilson) [1412921]
-- [netdrv] bonding: Fix bonding crash (Jarod Wilson) [1412921]
-- [netdrv] bonding: fix the typo (Jarod Wilson) [1412921]
-- [netdrv] bonding: Enforce active-backup policy for IPoIB bonds (Jarod Wilson) [1412921]
-- [kernel] uapi: Fix exposed undefined u32 and u64 types to userland through /usr/include/linux/md_p.h (Rafael Aquini) [1443158]
-- [powerpc] mm: Use appropriate ESID mask in copro_calculate_slb() (Gustavo Duarte) [1437942]
-
-* Mon Apr 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-654.el7]
-- [kernel] x86/e820: Don't merge consecutive E820_PRAM ranges (Jeff Moyer) [1351098]
-- [kernel] x86/boot: Fix kdump, cleanup aborted E820_PRAM max_pfn manipulation (Jeff Moyer) [1351098]
-- [kernel] scripts/sortextable: support objects with more than 64K sections (Joe Lawrence) [1440222]
-- [kernel] sched/idle: Add missing checks to the exit condition of cpu_idle_poll() (Gustavo Duarte) [1437869]
-- [md] raid5-ppl: runtime PPL enabling or disabling (Nigel Croxon) [1434872]
-- [md] raid5-ppl: support disk hot add/remove with PPL (Nigel Croxon) [1434872]
-- [md] raid5-ppl: load and recover the log (Nigel Croxon) [1434872]
-- [md] add sysfs entries for PPL (Nigel Croxon) [1434872]
-- [md] raid5-ppl: Partial Parity Log write logging implementation (Nigel Croxon) [1434872]
-- [md] raid5: separate header for log functions (Nigel Croxon) [1434872]
-- [md] superblock changes for PPL (Nigel Croxon) [1434872]
-- [x86] mm: fix gup_pte_range() vs DAX mappings (Jeff Moyer) [1436283]
-- [x86] mm: Simplify get_user_pages() PTE bit handling (Jeff Moyer) [1436283]
-- [x86] mm: Fix gup_huge_p?d() to handle large PAT bit (Jeff Moyer) [1436283]
-- [x86] Mark Intel Knights Mill processor as supported (Steve Best) [1381298]
-- [x86] kvm: x86: Add AVX512_4VNNIW and AVX512_4FMAPS support (Paul Lai) [1382116]
-- [x86] cpuid: Provide get_scattered_cpuid_leaf() (Paul Lai) [1382116]
-- [x86] cpuid: Cleanup cpuid_regs definitions (Paul Lai) [1382116]
-- [x86] cpufeature: Add AVX512_4VNNIW and AVX512_4FMAPS features (Paul Lai) [1382116 1380821]
-- [x86] smpboot: Prevent false positive out of bounds cpumask access warning (Baoquan He) [1440629]
-- [hid] hid-wacom: support 27QHDT using the new driver (Aristeu Rozanski) [1391668]
-- [scsi] ses: don't get power status of SES device slot on probe (Gustavo Duarte) [1434768]
-- [char] tpm_tis_spi: Add small delay after last transfer (Jerry Snitselaar) [1385571]
-- [char] tpm_tis_spi: Remove limitation of transfers to MAX_SPI_FRAMESIZE bytes (Jerry Snitselaar) [1385571]
-- [char] tpm_tis_spi: Check correct byte for wait state indicator (Jerry Snitselaar) [1385571]
-- [char] tpm_tis_spi: Abort transfer when too many wait states are signaled (Jerry Snitselaar) [1385571]
-- [char] tpm_tis_spi: Use single function to transfer data (Jerry Snitselaar) [1385571]
-- [block] nvme: Complete all stuck requests (David Milburn) [1439623]
-- [block] blk-mq: Provide freeze queue timeout (David Milburn) [1439623]
-- [block] blk-mq: Export blk_mq_freeze_queue_wait (David Milburn) [1439623]
-- [netdrv] mlx5: Increase number of max QPs in default profile (Kamal Heib) [1436238]
-- [netdrv] i40e: only register client on iWarp-capable devices (Stefan Assmann) [1437246]
-- [netdrv] i40e: close client on remove and shutdown (Stefan Assmann) [1429866]
-- [netdrv] i40e: register existing client on probe (Stefan Assmann) [1429866]
-- [netdrv] i40e: remove client instance on driver unload (Stefan Assmann) [1429866]
-- [netdrv] i40e: fix RSS queues only operating on PF0 (Stefan Assmann) [1429866]
-- [netdrv] i40e: initialize params before notifying of l2_param_changes (Stefan Assmann) [1429866]
-- [netdrv] i40e: KISS the client interface (Stefan Assmann) [1429866]
-- [netdrv] i40e: fix up recent proxy and wol bits for X722_SUPPORT (Stefan Assmann) [1429866]
-- [netdrv] i40e: Acquire NVM lock before reads on all devices (Stefan Assmann) [1429866]
-- [netdrv] i40e: Do not enable NAPI on q_vectors that have no rings (Stefan Assmann) [1429866]
-- [infiniband] i40iw: Receive netdev events post INET_NOTIFIER state (Stefan Assmann) [1429866]
-- [powerpc] prom: Increase minimum RMA size to 512MB (Gustavo Duarte) [1411321]
-
-* Fri Apr 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-653.el7]
-- [scsi] qla2xxx: Turn ql2xmqsupport off by default (Himanshu Madhani) [1441782]
-- [scsi] lpfc: code cleanups in NVME initiator base (Ewan Milne) [1384922]
-- [scsi] lpfc: Mark NVMe and NVMe Target support as tech preview (Ewan Milne) [1384922]
-- [nvme] nvme_fc: avoid double kfree(), don't call nvme_cleanup_cmd() in nvme_fc_unmap_data() (Ewan Milne) [1384922]
-- [nvme] nvme-fc: add .map_queue entry to blk_mq_ops (Ewan Milne) [1384922]
-- [nvme] nvme_fc: add controller reset support (Ewan Milne) [1384922]
-- [nvme] nvme_fc: add aen abort to teardown (Ewan Milne) [1384922]
-- [nvme] nvme_fc: fix command id check (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Add ls aborts on remote port teardown (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Move LS's to rport (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: add missing reference in add_port (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: Rework target side abort handling (Ewan Milne) [1384922]
-- [nvme] nvme_fcloop: split job struct from transport for req_release (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: add req_release to lldd api (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: add target feature flags for upcall isr contexts (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Clean up host fcpio done status handling (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: Clear SG list to avoid double frees (Ewan Milne) [1384922]
-- [nvme] nvme_fc: correct LS validation (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: Sync NVME LS reject reasons with spec (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Add check of status_code in ERSP_IU (Ewan Milne) [1384922]
-- [nvme] nvme_fc: Sync FC-NVME header with standard (Ewan Milne) [1384922]
-- [nvme] nvme-fc: don't bother to validate ioccsz and iorcsz (Ewan Milne) [1384922]
-- [nvme] nvmet_fc: cleanup of abort flag processing in fcp_op_done (Ewan Milne) [1384922]
-- [scsi] lpfc version bump for nvme to 11.2.0.11 (Ewan Milne) [1384922]
-- [scsi] lpfc: The lpfc driver does not issue RFF_ID and RFT_ID in the correct sequence (Ewan Milne) [1384922]
-- [scsi] lpfc: Finalize Kconfig options for nvme (Ewan Milne) [1384922]
-- [scsi] lpfc: Rework lpfc Kconfig for NVME options (Ewan Milne) [1384922]
-- [scsi] lpfc: add missing Kconfig NVME dependencies (Ewan Milne) [1384922]
-- [scsi] lpfc: replace init_timer by setup_timer (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix eh_deadline setting for sli3 adapters (Ewan Milne) [1384922]
-- [scsi] lpfc: code cleanups in NVME initiator discovery (Ewan Milne) [1384922]
-- [scsi] lpfc: correct rdp diag portnames (Ewan Milne) [1384922]
-- [scsi] lpfc: remove dead sli3 nvme code (Ewan Milne) [1384922]
-- [scsi] lpfc: correct double print (Ewan Milne) [1384922]
-- [scsi] lpfc: Rename LPFC_MAX_EQ_DELAY to LPFC_MAX_EQ_DELAY_EQID_CNT (Ewan Milne) [1384922]
-- [scsi] lpfc: add NVME exchange aborts (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix nvme allocation bug on failed nvme_fc_register_localport (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix IO submission if WQ is full (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix NVME CMD IU byte swapped word 1 problem (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix RCTL value on NVME LS request and response (Ewan Milne) [1384922]
-- [scsi] lpfc: Fix crash during Hardware error recovery on SLI3 adapters (Ewan Milne) [1384922]
-- [scsi] lpfc: fix missing spin_unlock on sql_list_lock (Ewan Milne) [1384922]
-- [scsi] lpfc: don't dereference dma_buf-&gt; iocbq before null check (Ewan Milne) [1384922]
-- [scsi] lpfc: sanity check hrq is null before dereferencing it (Ewan Milne) [1384922]
-- [scsi] lpfc: remove redundant assignment of sgel (Ewan Milne) [1384922]
-- [scsi] Update lpfc version to 11.2.0.8 with NVME support (Ewan Milne) [1384922]
-- [scsi] lpfc: Update copyrights (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: Add debugfs support (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: bind to nvmet_fc api (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: Merge into FC discovery (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: Receive buffer updates (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Target: Base modifications (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Initiator: Add debugfs support (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Initiator: bind to nvme_fc api (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Initiator: Merge into FC discovery (Ewan Milne) [1384922]
-- [scsi] lpfc: NVME Initiator: Base modifications (Ewan Milne) [1384922]
-- [scsi] lpfc: refactor debugfs queue dump routines (Ewan Milne) [1384922]
-- [scsi] lpfc: refactor debugfs queue prints (Ewan Milne) [1384922]
-- [scsi] lpfc: minor code cleanups (Ewan Milne) [1384922]
-- [scsi] lpfc: Correct WQ creation for pagesize (Ewan Milne) [1384922]
-- [scsi] lpfc: Revert: Fix eh_deadline setting for sli3 adapters (Ewan Milne) [1384922]
-
-* Thu Apr 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-652.el7]
-- [gpu] drm/ast: Handle configuration without P2A bridge (Rob Clark) [1422342 1415055 1351050 1406119]
-- [gpu] drm/vmwgfx: Work around drm removal of control nodes (Rob Clark) [1425111 1406119]
-- [video] efifb: prevent null-deref when iterating dmi_list (Rob Clark) [1358107 1406119]
-- [kernel] pm / sleep: add configurable delay for pm_test (Rob Clark) [1406119]
-- [gpu] drm/mgag200: Added support for the new device G200eH3 (Rob Clark) [1385845 1385100 1406119]
-- [documentation] rhel: remove drm from DocBook build (Rob Clark) [1406119]
-- [drm] upstream sync to v4.10 (Rob Clark) [1390444 1390443 1330441 1330436 1310324 1406119 1386946 1385880 1385851 1385820 1385760 1385757 1384392 1380814 1377723 1373255 1339127 1305619 1211380]
-- [acpi] acpi / video: Fix lockdep issue (Rob Clark) [1406119]
-- [kernel] virtio: make find_vqs() checkpatch.pl-friendly (Rob Clark) [1406119]
-- [kernel] sched: Export sched_setscheduler_nocheck (Rob Clark) [1406119]
-- [kernel] relay: add global mode support for buffer-only channels (Rob Clark) [1406119]
-- [kernel] kthread: export kthread functions (Rob Clark) [1406119]
-- [x86] locking/atomic, arch/x86: Implement atomic{, 64}_fetch_{add, sub, and, or, xor}() (Rob Clark) [1406119]
-- [sound] drm/i915/dp: DP audio API changes for MST (Rob Clark) [1406119]
-- [x86] drm/i915: Remove .is_mobile field from platform struct (Rob Clark) [1406119]
-- [x86] drm/i915: Account for TSEG size when determining 865G stolen base (Rob Clark) [1406119]
-- [x86] Silence 32bit compiler warning in intel_graphics_stolen() (Rob Clark) [1406119]
-- [x86] drm/i915: Function per early graphics quirk (Rob Clark) [1406119]
-- [x86] drm/i915: Canonicalize stolen memory calculations (Rob Clark) [1406119]
-- [x86] Provide atomic_{or,xor,and} (Rob Clark) [1406119]
-- [x86] Force inlining of atomic ops (Rob Clark) [1406119]
-- [x86] asm: Always inline atomics (Rob Clark) [1406119]
-- [asm-generic] locking, arch: Use ACCESS_ONCE() instead of cast to volatile in atomic_read() (Rob Clark) [1406119]
-- [x86] locking,x86: Kill atomic_or_long() (Rob Clark) [1406119]
-- [kernel] kernel.h: add u64_to_user_ptr() (Rob Clark) [1406119]
-- [kernel] io-mapping: Fixup for different names of writecombine (Rob Clark) [1406119]
-- [kernel] io-mapping.h: s/PAGE_KERNEL_IO/PAGE_KERNEL/ (Rob Clark) [1406119]
-- [kernel] io-mapping: Always create a struct to hold metadata about the io-mapping (Rob Clark) [1406119]
-- [kernel] io-mapping: Specify mapping size for io_mapping_map_wc() (Rob Clark) [1406119]
-- [kernel] rcu: Add rcu_pointer_handoff() (Rob Clark) [1406119]
-
-* Thu Apr 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-651.el7]
-- [netdrv] mlxsw: spectrum_flower: Remove bogus warns in mlxsw_sp_flower_destroy (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: acl: Use PBS type for forward action (Ivan Vecera) [1434591]
-- [netdrv] spectrum: flower: Treat ETH_P_ALL as a special case and translate for HW (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: acl: Fix mlxsw_afa_block_commit error path (Ivan Vecera) [1434591]
-- [netdrv] spectrum: acl_tcam: Fix catchall prio value (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: spectrum: Implement TC flower offload (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: spectrum: Introduce ACL core with simple TCAM implementation (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: resources: Add ACL related resources (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: spectrum: Introduce basic set of flexible key blocks (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: core: Introduce flexible actions support (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: core: Introduce flexible keys support (Ivan Vecera) [1434591]
-- [kernel] include/linux/rwsem.h: add '<linux/err.h>' include (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine Extended Flexible Action Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine Policy Based Switching Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine Rules Copy Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine Port Binding Table (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine TCAM Entry Register Version 2 (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine TCAM Allocation Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine ACL Group Table register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: reg: Add Policy-Engine ACL Register (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: item: Add helpers for getting pointer into payload for char buffer item (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: item: Add 8bit item helpers (Ivan Vecera) [1434591]
-- [netdrv] mlxsw: spectrum_router: Add support for route replace (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Add support for route append (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Correctly handle identical routes (Ivan Vecera) [1434587]
-- [net] ipv4: fib: Add events for FIB replace and append (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Don't reflect LINKDOWN nexthops (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Flush resources when RIF is deleted (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Reflect nexthop status changes (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Use trap action only for some route types (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Determine offload status using generic function (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: More accurately set offload flag (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Refactor nexthop init routine (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Remove FIB info from FIB entry struct (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Store routes in a more generic way (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Add gateway indication to nexthop group (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Use nexthop's scope to set action type (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Store nexthops in a hash table (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Store nexthop groups in a hash table (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Nullify nexthop's neigh pointer (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Fix typo in comment (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Don't read 'nud_state' without lock (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Remove redundant check (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Simplify neighbour reflection (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum_router: Use ordered workqueue for neigh updates (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: core: Queue work immediately instead of delaying it (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: pci: Fix EQE structure definition (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: switchx2: Fix memory leak at skb reallocation (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum: Fix memory leak at skb reallocation (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum: Change ENOTSUPP to EOPNOTSUPP (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum: Fix order of commands in port remove function (Ivan Vecera) [1434587]
-- [netdrv] mlxsw: spectrum: Make the add_matchall_tc_entry symmetric (Ivan Vecera) [1434587]
-
-* Wed Apr 12 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-650.el7]
-- [net] sctp: get sock from transport in sctp_transport_update_pmtu (Xin Long) [1412865]
-- [net] sctp: check for dst and pathmtu update in sctp_packet_config (Xin Long) [1412865]
-- [net] sctp: remove return value from sctp_packet_init/config (Xin Long) [1412865]
-- [net] revert "inet: frag: remove hash size assumptions from callers" (David Arcari) [1431878]
-- [scsi] qla2xxx: Update driver version to 8.07.00.38.07.4-k1 (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Defer marking device lost when receiving an RSCN (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Fix typo in driver (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Fix crash in qla2xxx_eh_abort on bad ptr (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Avoid that issuing a LIP triggers a kernel crash (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Add fix to read correct register value for ISP82xx (Himanshu Madhani) [1436940]
-- [scsi] qla2xxx: Disable the adapter and skip error recovery in case of register disconnect (Himanshu Madhani) [1436940]
-- [scsi] ses: Fix SAS device detection in enclosure (Maurizio Lombardi) [1394089]
-- [scsi] lpfc: Make default for lpfc_use_blk_mq to off (Ewan Milne) [1438933]
-- [scsi] hpsa: cleanup PCI IDs in hpsa driver (Joseph Szczypek) [1433008]
-- [scsi] storvsc: Workaround for virtual DVD SCSI version (Cathy Avery) [1437552]
-- [scsi] drivers: add blist flags (Cathy Avery) [1437552]
-- [iommu] vt-d: fix range computation when making room for large pages (Alex Williamson) [1435612]
-- [target] replace ALUA transition wait/flush with mutex (Mike Christie) [1429008 1407016]
-- [target] tcmu: Allow cmd_time_out to be set to zero (disabled) (Mike Christie) [1429008 1407016]
-- [target] fix race during implicit transition work flushes (Mike Christie) [1429008 1407016]
-- [target] allow userspace to set state to transitioning (Mike Christie) [1429008 1407016]
-- [target] fix ALUA transition timeout handling (Mike Christie) [1429008 1407016]
-- [target] export protocol identifier (Mike Christie) [1429008 1407016]
-- [target] Use system workqueue for ALUA transitions (Mike Christie) [1429008 1407016]
-- [target] fail ALUA transitions for pscsi (Mike Christie) [1429008 1407016]
-- [target] allow ALUA setup for some passthrough backends (Mike Christie) [1429008 1407016]
-- [target] Use a PASSTHROUGH flag instead of transport_types (Mike Christie) [1429008 1407016]
-- [target] user: Fix use-after-free of tcmu_cmds if they are expired (Mike Christie) [1429008 1407016]
-- [target] tcmu: Convert cmd_time_out into backend device attribute (Mike Christie) [1429008 1407016]
-- [target] tcmu: make cmd timeout configurable (Mike Christie) [1429008 1407016]
-- [target] tcmu: add helper to check if dev was configured (Mike Christie) [1429008 1407016]
-- [target] tcmu: return on first Opt parse failure (Mike Christie) [1429008 1407016]
-- [target] tcmu: allow hw_max_sectors greater than 128 (Mike Christie) [1429008 1407016]
-- [infiniband] ib/mlx5: Support creation of a WQ with scatter FCS offload (Kamal Heib) [1409510]
-- [infiniband] ib/mlx5: Enable QP creation with cvlan offload (Kamal Heib) [1409510]
-- [infiniband] ib/mlx5: Enable WQ creation and modification with cvlan offload (Kamal Heib) [1409510]
-- [infiniband] ib/mlx5: Expose vlan offloads capabilities (Kamal Heib) [1409510]
-- [infiniband] ib/uverbs: Enable QP creation with cvlan offload (Kamal Heib) [1409510]
-- [uapi] ib/uverbs: Enable WQ creation and modification with cvlan offload (Kamal Heib) [1409510]
-- [uapi] ib/uverbs: Expose vlan offloads capabilities (Kamal Heib) [1409510]
-- [rdma] ib/core: Add scatter FCS flag to use in WQ creation (Kamal Heib) [1409510]
-- [rdma] ib/core: Enable QP creation with cvlan offload (Kamal Heib) [1409510]
-- [rdma] ib/core: Enable WQ creation and modification with cvlan offload (Kamal Heib) [1409510]
-- [rdma] ib/core: Expose vlan offloads capabilities (Kamal Heib) [1409510]
-- [netdrv] mlx4: reduce OOM risk on arches with large pages (Kamal Heib) [1438409]
-- [netdrv] ib/mlx4: Take source GID by index from HW GID table (Kamal Heib) [1438404]
-- [netdrv] mlx4_en: fix overflow in mlx4_en_init_timestamp() (Kamal Heib) [1438400]
-- [netdrv] mlx4_core: Fix VF overwrite of module param which disables DMFS on new probed PFs (Kamal Heib) [1438385]
-- [netdrv] mlx4: && vs & typo (Kamal Heib) [1438373]
-- [netdrv] mlx4: Spoofcheck and zero MAC can't coexist (Kamal Heib) [1438373]
-- [netdrv] mlx4_core: Avoid delays during VF driver device shutdown (Kamal Heib) [1438365]
-- [powerpc] Add ppc64 hard lockup detector support (Gustavo Duarte) [1226123]
-- [powerpc] oprofile: Disable oprofile NMI timer on ppc64 (Gustavo Duarte) [1226123]
-- [powerpc] boot: Fix zImage TOC alignment (Gustavo Duarte) [1395838]
-- [powerpc] pseries: Don't give a warning when HPT resizing isn't available (David Gibson) [1431922]
-
-* Wed Apr 12 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-649.el7]
-- [netdrv] mlxsw: spectrum_router: Avoid potential packets loss (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Remove unused variable (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Correctly reallocate adjacency entries (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Correctly remove nexthop groups (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Mark split ports as such (Ivan Vecera) [1414400]
-- [net] ipv4: fib: Replay events when registering FIB notifier (Ivan Vecera) [1414400]
-- [netdrv] rocker: Register FIB notifier before creating ports (Ivan Vecera) [1414400]
-- [netdrv] rocker: Implement FIB offload in deferred work (Ivan Vecera) [1414400]
-- [netdrv] rocker: Create an ordered workqueue for FIB offload (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement FIB offload in deferred work (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Create an ordered workqueue for FIB offload (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Don't reflect dead neighs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Change order of operations in removal path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Add missing rollback in error path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_buffers: Limit size of pools (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: resources: Add maximum buffer size (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchib: add MLXSW_PCI dependency (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add policers for trap groups (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add QoS Policer Configuration Register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: resources: Add max cpu policers resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Create a different trap group list for each device (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add BGP trap (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Change trap groups setting (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: resources: Add max trap groups resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Change emad trap group settings (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Add option to choose trap group (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Change trap set function (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchib: Use generic listener struct for events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Use generic listener struct for events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use generic listener struct for events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Introduce generic macro for event (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Use generic listener struct for rx traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use generic listener struct for rx traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Expose generic macros for rx trap (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Create a generic function to register / unregister traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unused traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Implement thermal zone (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Management Fan Speed Limit register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: minimal: Add I2C support for Mellanox ASICs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Invoke driver's init/fini methods only if defined (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Introduce support for I2C bus (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Add bus capability flag (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Flush FIB tables during fini (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add FIB abort warning (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Fix pwm_frequency field size in MFCR register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Correctly dump neighbour activity (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix refcount bug on span entries (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Ignore FIB notification events for non-init namespaces (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix handling of neighbour structure (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Fix the FW ready mask length (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Remove unused including <generated/utsrelease.h> (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix incorrect reuse of MID entries (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchib: Introduce SwitchIB and SwitchIB silicon driver (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Add IB port support (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Add eth prefix to port create and remove (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Add port type (Eth/IB) set API (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Add "eth" prefix to mlxsw_core_port_set (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Add Infiniband switch partition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Make devlink port instances independent of spectrum/switchx2 port instances (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add local-port to Infiniband port mapping (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Infiniband support to PTYS (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add eth prefix to PTYS pack and unpack (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Fix port speed configuration (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Add support for physical port names (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Move port used check outside port remove function (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Move port used check outside port remove function (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Check if port is usable before calling port create (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Zero payload buffers for couple of registers (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Set physical device for port netdevice (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Set physical device for port netdevice (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Move PCI id table definitions into driver modules (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Rename header with HW definitions (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove extra whitespace (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Compare only trees which are in use during tree get (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Save requested prefix bitlist when creating tree (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Convert resources into array (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: cmd: Push resource query defines to cmd.h (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Generare register names automatically (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Use helper macro to define registers (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: item: Make char *buf arg constant for getters (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: item: Make struct mlxsw_item args const (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Fix reset wait for SwitchX2 (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Fix ethernet port initialization (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Make mlxsw_sp_router_fib4_del return void and remove warn (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Use correct tree index for binding (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Flip to the new dev walk API (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Fix misuse of hard_header_len (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix misuse of hard_header_len (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: avoid potential uninitialized data usage (Ivan Vecera) [1414400]
-- [netdrv] doc: update switchdev L3 section (Ivan Vecera) [1414400]
-- [net] switchdev: remove FIB offload infrastructure (Ivan Vecera) [1414400]
-- [netdrv] rocker: use FIB notifications instead of switchdev calls (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Use FIB notifications instead of switchdev calls (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: remove redundant check if err is zero (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Implement max rif resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add max router interface resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add some miscellaneous resources (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Implement max virtual routers resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add max virtual routers resource (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: profile: Add KVD resources to profile config (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add KVD size relate resources (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: lag resources- use resources data instead of consts (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add lag related resources to resources query (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Make offloads stats functions static (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Change the RX LAG hash function from XOR to CRC (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix sparse warnings (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Implement offload stats ndo and expose HW stats by default (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add support for new ethtool API (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Indicate support of multiple port types (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Report port type according to operational speed (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Report link partner's advertised speeds (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Correctly report autonegotiation (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Set port type before setting its address (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix error path in mlxsw_sp_router_init (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use existing flood setup when adding VLANs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't take multiple references on a FID (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix netevent notifier registration (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix error path in mlxsw_sp_module_init (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix fib entry update path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix failure caused by double fib removal from HW (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Mirror certain packets to CPU (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Allow different traps to have different actions (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Simplify traps definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't set learning when creating vPorts (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unnecessary check in FDB processing (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Offload learning to the switch ASIC (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Configure learning for VLAN-aware bridge port (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't abort on first error when removing VLANs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Make VLAN deletion function symmetric (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Limit number of FDB records per learning session (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: router: Enable neighbors to be created on stacked devices (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add missing flood to router port (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_buffers: Fix pool value handling in mlxsw_sp_sb_tc_pool_bind_set (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Allow packets to be trapped from any PG (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Unmap 802.1Q FID before destroying it (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add missing rollbacks in error path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Fix missing op field fill-up (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Trap loop-backed packets (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add missing packet traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Mark port as active before registering it (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Create PVID vPort before registering netdevice (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove redundant errors from the code (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't return upon error in removal path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Fix use after free (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add missing DCB rollback in error path (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Do not override PAUSE settings (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Do not assume PAUSE frames are disabled (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Fix compilation error when CLS_ACT isn't set (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add support in matchall mirror TC offloading (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add the Monitoring Port Analyzer register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Monitoring Port Analyzer Table register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Shared Buffer Internal Buffer register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add max span resources to resources query (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: pci: Add resources query implementation (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Expose per-tc counters via ethtool (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Expose per-priority counters via ethtool (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Prevent invalid ingress buffer mapping (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Prevent overwrite of DCB capability fields (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't emit errors when PFC is disabled (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Indicate support for autonegotiation (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Force link training according to admin state (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Return -ENOENT in case of error (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Trace EMAD messages (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Add the unresolved next-hops probes (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add the nexthop neigh activity update (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement next-hop routing (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM ECMP Update Register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Adjacency Table register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Introduce simplistic KVD linear area manager (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Define sizes of KVD areas (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: Add KVD sizes configuration into profile (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Offload neighbours based on NUD state change (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Periodically update the kernel's neigh table (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Unicast Host Table Dump register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Unicast Host Table register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add private neigh table (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Enable L3 interfaces on top of bridge devices (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Configure FIDs based on bridge events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Unsplit the vFID range (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Introduce support for router interfaces (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Edit RIF properties based on netdev events (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add couple of lower device helper functions (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement fib4 add/del switchdev obj ops (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Unicast Entry Register definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add virtual router management (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement LPM trees management (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Tree Binding Register definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Structure Tree Register definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Algorithmic LPM Tree Allocation Register definition (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Implement private fib (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add traps needed for router implementation (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use action 'discard' when removing traps (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router Interface Table Register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add FDB action to forward to router (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add router interface struct (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum_router: Add basic ipv4 router initialization (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Initialize ports at the end of init sequence (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: reg: Add Router General Configuration Register (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove RIF from PVID vPort when joining / leaving LAG (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Sync PVID vPort LAG status (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove VLANs configuration via SELF flag (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Send untagged packets through a port netdev (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add debug prints (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Free resources upon vPort destruction (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Refactor FDB flushing logic (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't count on FID being present (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Add FID get / set functions (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Check if port is vPort using its VID (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use per-FID struct for the VLAN-aware bridge (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unused function argument (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use join / leave functions for vFID operations (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Make vFID struct generic (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use FID instead of vFID to setup flooding (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Create a function to map vPort's FID (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use only one function to create vFIDs (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove redundant function argument (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use DECLARE_BITMAP() macro (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Centralize VLAN-aware bridge ref counting (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unnecessary function argument (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Make unlinking functions return void (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use WARN_ON() return value (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Remove unnecessary checks from event processing (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Forbid LAG slave from having VLAN uppers (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Sanitize port netdev upper devices (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Use notifier_from_errno() in notifier block (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: switchx2: Don't count internal TX header bytes to stats (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: spectrum: Don't count internal TX header bytes to stats (Ivan Vecera) [1414400]
-- [netdrv] mlxsw: core: Remove deprecated create_workqueue (Ivan Vecera) [1414400]
-
-* Mon Apr 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-648.el7]
-- [x86] intel_rdt: Put group node in rdtgroup_kn_unlock (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Remove duplicate inclusion of linux/cpu.h (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Implement show_options() for resctrlfs (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Call intel_rdt_sched_in() with preemption disabled (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Update task closid immediately on CPU in rmdir and unmount (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Fix setting of closid when adding CPUs to a group (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Update percpu closid immeditately on CPUs affected by changee (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Reset per cpu closids on unmount (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Prevent deadlock against hotplug lock (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Protect info directory from removal (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add info files to Documentation (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Export the minimum number of set mask bits in sysfs (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Propagate error in rdt_mount() properly (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add a missing #include (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add scheduler hook (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add schemata file (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add tasks files (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add cpus file (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add mkdir to resctrl file system (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add "info" files to resctrl file system (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add basic resctrl filesystem support (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Build structures for each resource based on cache topology (Jiri Olsa) [1288964]
-- [x86] documentation, x86: Documentation for Intel resource allocation user interface (Jiri Olsa) [1288964]
-- [x86] cqm: Share PQR_ASSOC related data between CQM and CAT (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Pick up L3/L2 RDT parameters from CPUID (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add Haswell feature discovery (Jiri Olsa) [1288964]
-- [x86] intel_rdt: Add CONFIG, Makefile, and basic initialization (Jiri Olsa) [1288964]
-- [x86] cpufeature: Add RDT CPUID feature bits (Jiri Olsa) [1288964]
-- [x86] cpufeature: Move some of the scattered feature bits to x86_capability (Jiri Olsa) [1288964]
-- [x86] intel: Add get_cpu_cache_id function (Jiri Olsa) [1288964]
-- [x86] intel_cacheinfo: Enable cache id in cache info (Jiri Olsa) [1288964]
-- [x86] cacheinfo: Introduce cache id (Jiri Olsa) [1288964]
-
-* Mon Apr 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-647.el7]
-- [tty] n_hdlc: get rid of racy n_hdlc.tbuf ("Herton R. Krzesinski") [1429920] {CVE-2017-2636}
-- [fs] mnt: Prevent pivot_root from creating a loop in the mount tree (Aristeu Rozanski) [1151483] {CVE-2014-7970}
-- [fs] ceph: remove bogus warnings from ceph_releasepage (Jeff Layton) [1428973]
-- [fs] ceph: get caps when handling splice() (Jeff Layton) [1428973]
-- [fs] jbd2: avoid infinite loop when destroying aborted journal (Lukas Czerner) [1433886]
-- [fs] jbd2: fix checkpoint list cleanup (Lukas Czerner) [1433886]
-- [fs] jbd2: simplify calling convention around __jbd2_journal_clean_checkpoint_list (Lukas Czerner) [1433886]
-- [fs] sunrpc: Silence WARN_ON when NFSv4.1 over RDMA is in use (Sachin Prabhu) [1428039]
-- [fs] sunrpc: Don't engage exponential backoff when connection attempt is rejected ("J. Bruce Fields") [1433390]
-- [net] ping: implement proper locking (Jakub Sitnicki) [1438998] {CVE-2017-2671}
-- [lib] Remove string from parman config selection (Ivan Vecera) [1382040]
-- [net] sched: cls_matchall: Reflect HW offloading status (Ivan Vecera) [1382040]
-- [net] sched: cls_matchall: Dump the classifier flags (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Send notification before deleting FIB alias (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Send deletion notification with actual FIB alias type (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Notify about nexthop status changes (Ivan Vecera) [1382040]
-- [lib] Introduce priority array area manager (Ivan Vecera) [1382040]
-- [kernel] list: introduce list_for_each_entry_from_reverse helper (Ivan Vecera) [1382040]
-- [net] sched: tc_mirred: Rename public predicates 'is_tcf_mirred_redirect' and 'is_tcf_mirred_mirror' (Ivan Vecera) [1382040]
-- [net] ipv4: fix value of ->nlmsg_flags reported in RTM_NEWROUTE events (Ivan Vecera) [1382040]
-- [net] ipv4: include NLM_F_APPEND flag in append route notifications (Ivan Vecera) [1382040]
-- [net] for rate-limited ICMP replies save one atomic operation (Sabrina Dubroca) [1428684]
-- [net] reduce cycles spend on ICMP replies that gets rate limited (Sabrina Dubroca) [1428684]
-- [net] icmp: add a global rate limitation (Sabrina Dubroca) [1428684]
-- [net] diag: add missing declarations (Xin Long) [1430276]
-- [net] sctp: use GFP_USER for user-controlled kmalloc (Xin Long) [1430276]
-- [net] sctp: Add process name and pid to deprecation warnings (Xin Long) [1430276]
-- [net] sctp: Reduce log spamming for sctp setsockopt (Xin Long) [1430276]
-- [net] sctp: sctp_association_init: put refs in reverse order (Xin Long) [1430276]
-- [net] sctp: process fwd tsn chunk only when prsctp is enabled (Xin Long) [1430276]
-- [net] sctp: sctp gso should set feature with NETIF_F_SG when calling skb_segment (Xin Long) [1430276]
-- [net] sctp: sctp_transport_lookup_process should rcu_read_unlock when transport is null (Xin Long) [1430276]
-- [net] sctp: change sk state only when it has assocs in sctp_shutdown (Xin Long) [1430276]
-- [net] sctp: assign assoc_id earlier in __sctp_connect (Xin Long) [1430276]
-- [net] sctp: fix SSN comparision (Xin Long) [1430276]
-- [net] sctp: forbid negative length (Xin Long) [1430276]
-- [net] sctp: remove the old ttl expires policy (Xin Long) [1430276]
-- [net] sctp: change to check peer prsctp_capable when using prsctp polices (Xin Long) [1430276]
-- [net] sctp: remove prsctp_param from sctp_chunk (Xin Long) [1430276]
-- [net] sctp: move sent_count to the memory hole in sctp_chunk (Xin Long) [1430276]
-- [net] sctp: fix the handling of SACK Gap Ack blocks (Xin Long) [1430276]
-- [net] sctp: fix overrun in sctp_diag_dump_one() (Xin Long) [1430276]
-- [net] sctp: always initialise sctp_ht_iter::start_fail (Xin Long) [1430276]
-- [net] sctp: terminate rhashtable walk correctly (Xin Long) [1430276]
-- [net] sctp: fix error return code in sctp_init() (Xin Long) [1430276]
-- [net] sctp: use in_compat_syscall for sctp_getsockopt_connectx3 (Xin Long) [1430276]
-- [net] sctp: keep owned chunk in destructor_arg instead of skb->cb (Xin Long) [1430276]
-- [x86] build: Build compressed x86 kernels as PIE when !CONFIG_RELOCATABLE as well (Scott Wood) [1438995]
-- [x86] build: Build compressed x86 kernels as PIE (Scott Wood) [1438995]
-- [block] blk-mq: Fix tagset reinit in the presence of cpu hot-unplug (David Milburn) [1437721]
-
-* Fri Apr 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-646.el7]
-- [fs] kernfs: Enable kernfs build by default in RHEL7 (Carlos Maiolino) [1396983]
-- [fs] kernfs: Fix kernfs interface differences (Carlos Maiolino) [1396983]
-- [fs] kernfs: move the last knowledge of sysfs out from kernfs (Carlos Maiolino) [1396983]
-- [fs] sysfs: fix namespace refcnt leak (Carlos Maiolino) [1396983]
-- [fs] kernfs, sysfs, cgroup: restrict extra perm check on open to sysfs (Carlos Maiolino) [1396983]
-- [fs] kernfs: add back missing error check in kernfs_fop_mmap() (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix a subdir count leak (Carlos Maiolino) [1396983]
-- [fs] kernfs: protect lazy kernfs_iattrs allocation with mutex (Carlos Maiolino) [1396983]
-- [fs] kernfs: cache atomic_write_len in kernfs_open_file (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix off by one error. (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix kernfs_node_from_dentry() (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix hash calculation in kernfs_rename_ns() (Carlos Maiolino) [1396983]
-- [fs] kernfs: add CONFIG_KERNFS (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement kernfs_get_parent(), kernfs_name/path() and friends (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement kernfs_node_from_dentry(), kernfs_root_from_sb() and kernfs_rename() (Carlos Maiolino) [1396983]
-- [fs] kernfs: add kernfs_open_file->priv (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement kernfs_ops->atomic_write_len (Carlos Maiolino) [1396983]
-- [fs] kernfs: allow nodes to be created in the deactivated state (Carlos Maiolino) [1396983]
-- [fs] kernfs: add missing kernfs_active() checks in directory operations (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement kernfs_syscall_ops->remount_fs() and ->show_options() (Carlos Maiolino) [1396983]
-- [fs] kernfs: rename kernfs_dir_ops to kernfs_syscall_ops (Carlos Maiolino) [1396983]
-- [fs] kernfs: invoke dir_ops while holding active ref of the target node (Carlos Maiolino) [1396983]
-- [fs] kernfs, sysfs, driver-core: implement kernfs_remove_self() and its wrappers (Carlos Maiolino) [1396983]
-- [fs] kernfs: remove KERNFS_REMOVED (Carlos Maiolino) [1396983]
-- [fs] kernfs: remove KERNFS_ACTIVE_REF and add kernfs_lockdep() (Carlos Maiolino) [1396983]
-- [fs] kernfs: remove kernfs_addrm_cxt (Carlos Maiolino) [1396983]
-- [fs] kernfs: invoke kernfs_unmap_bin_file() directly from kernfs_deactivate() (Carlos Maiolino) [1396983]
-- [fs] kernfs: restructure removal path to fix possible premature return (Carlos Maiolino) [1396983]
-- [fs] kernfs: replace kernfs_node->u.completion with kernfs_root->deactivate_waitq (Carlos Maiolino) [1396983]
-- [fs] kernfs: make kernfs_deactivate() honor KERNFS_LOCKDEP flag (Carlos Maiolino) [1396983]
-- [fs] kernfs: associate a new kernfs_node with its parent on creation (Carlos Maiolino) [1396983]
-- [fs] kernfs: add struct dentry declaration in kernfs.h (Carlos Maiolino) [1396983]
-- [fs] kernfs: fix get_active failure handling in kernfs_seq_*() (Carlos Maiolino) [1396983]
-- [fs] kernfs: add kernfs_dir_ops (Carlos Maiolino) [1396983]
-- [fs] kernfs: allow negative dentries (Carlos Maiolino) [1396983]
-- [fs] kernfs: update kernfs_rename_ns() to consider KERNFS_STATIC_NAME (Carlos Maiolino) [1396983]
-- [fs] kernfs: mark static names with KERNFS_STATIC_NAME (Carlos Maiolino) [1396983]
-- [fs] kernfs: add REMOVED check to create and rename paths (Carlos Maiolino) [1396983]
-- [fs] kernfs: add @mode to kernfs_create_dir[_ns]() (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs/kernfs/ in internal functions and whatever is left (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs/kernfs/ in global variables (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs/kernfs/ in constants (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs/kernfs/ in various data structures (Carlos Maiolino) [1396983]
-- [fs] kernfs: drop s_ prefix from kernfs_node members (Carlos Maiolino) [1396983]
-- [fs] kernfs: s/sysfs_dirent/kernfs_node/ and rename its friends accordingly (Carlos Maiolino) [1396983]
-- [fs] sysfs: bail early from kernfs_file_mmap() to avoid spurious lockdep warning (Carlos Maiolino) [1396983]
-- [fs] kernfs: implement "trusted.*" xattr support (Carlos Maiolino) [1396983]
-- [fs] kernfs: update sysfs_init_inode_attrs() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: remove cross inclusions of internal headers (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: implement kernfs_ns_enabled() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: make sysfs_dirent definition public (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move mount core code to fs/kernfs/mount.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: prepare mount path for kernfs (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: make inode number ida per kernfs_root (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: implement kernfs_create/destroy_root() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move symlink core code to fs/kernfs/symlink.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move file core code to fs/kernfs/file.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move dir core code to fs/kernfs/dir.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move inode code to fs/kernfs/inode.c (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move internal decls to fs/kernfs/kernfs-internal.h (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs[_find_and]_get() and kernfs_put() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: revamp sysfs_dirent active_ref lockdep annotation (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_notify() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: add kernfs_ops->seq_{start|next|stop}() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_create_file[_ns]() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_ops (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: move sysfs_open_file to include/linux/kernfs.h (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_create_dir[_ns]() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_setattr() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_rename[_ns]() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_create_link() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: introduce kernfs_remove[_by_name[_ns]]() (Carlos Maiolino) [1396983]
-- [fs] sysfs, kernfs: add skeletons for kernfs (Carlos Maiolino) [1396983]
-
-* Thu Apr 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-645.el7]
-- [ntb] ntb_netdev not covering all receive errors (Suravee Suthikulpanit) [1303727]
-- [ntb] use ethtool_cmd_speed_set helper to set ethtool speed value (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_netdev: Fix list_for_each_entry exit issue (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_netdev: Fix skb free issue in open (Suravee Suthikulpanit) [1303727]
-- [ntb] correct ntb_peer_spad_read for case when callback is not supplied (Suravee Suthikulpanit) [1303727]
-- [ntb] correct ntb_spad_count comment typo (Suravee Suthikulpanit) [1303727]
-- [ntb] Make _addr functions optional in the API (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix documentation for ntb_peer_db_clear (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_transport: Remove unnecessary call to ntb_peer_spad_read (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix 'request_irq()' and 'free_irq()' inconsistancy (Suravee Suthikulpanit) [1303727]
-- [ntb] fix SKX NTB config space size register offsets (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_transport: Limit memory windows based on available, scratchpads (Suravee Suthikulpanit) [1303727]
-- [ntb] Register and offset values fix for memory window (Suravee Suthikulpanit) [1303727]
-- [ntb] add support for hotplug feature (Suravee Suthikulpanit) [1303727]
-- [ntb] Adding Skylake Xeon NTB support (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: potential info leak in debugfs (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_hw_intel: init peer_addr in struct intel_ntb_dev (Suravee Suthikulpanit) [1303727]
-- [ntb] make DMA_OUT_RESOURCE_TO HZ independent (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_transport: make DMA_OUT_RESOURCE_TO HZ independent (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_hw_intel: Fix typo in module parameter descriptions (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_pingpong: Fix db_init parameter description (Suravee Suthikulpanit) [1303727]
-- [ntb] add DMA error handling for RX DMA (Suravee Suthikulpanit) [1303727]
-- [ntb] add DMA error handling for TX DMA (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_hw_intel: use local variable pdev (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_hw_intel: show BAR size in debugfs info (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: clear link_is_up flag when the link goes down (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_pingpong: Add a debugfs file to get the ping count (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: Add link status and files to debugfs (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: Postpone memory window initialization for the user (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Wait for link before running test (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Return results by reading the run file (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Improve thread handling to increase robustness (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Schedule based on time not on performance (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_transport: Check the number of spads the hardware supports (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: Add memory window debug support (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_perf: Allow limiting the size of the memory windows (Suravee Suthikulpanit) [1303727]
-- [ntb] allocate number transport entries depending on size of ring size (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: bug: Ensure the buffer size is large enough to return all spads (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_tool: Fix infinite loop bug when writing spad/peer_spad file (Suravee Suthikulpanit) [1303727]
-- [ntb] Remove _addr functions from ntb_hw_amd (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix incorrect clean up routine in ntb_perf (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix incorrect return check in ntb_perf (Suravee Suthikulpanit) [1303727]
-- [ntb] fix possible NULL dereference (Suravee Suthikulpanit) [1303727]
-- [ntb] add missing setup of translation window (Suravee Suthikulpanit) [1303727]
-- [ntb] stop link work when we do not have memory (Suravee Suthikulpanit) [1303727]
-- [ntb] stop tasklet from spinning forever during shutdown (Suravee Suthikulpanit) [1303727]
-- [ntb] perf test: fix address space confusion (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix macro parameter conflict with field name (Suravee Suthikulpanit) [1303727]
-- [ntb] Add support for AMD PCI-Express Non-Transparent Bridge (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb perf tool (Suravee Suthikulpanit) [1303727]
-- [ntb] Address out of DMA descriptor issue with NTB (Suravee Suthikulpanit) [1303727]
-- [ntb] Clear property bits in BAR value (Suravee Suthikulpanit) [1303727]
-- [ntb] ntb_process_tx error path bug (Suravee Suthikulpanit) [1303727]
-- [ntb] fix 32-bit compiler warning (Suravee Suthikulpanit) [1303727]
-- [ntb] unify translation addresses (Suravee Suthikulpanit) [1303727]
-- [ntb] invalid buf pointer in multi-MW setups (Suravee Suthikulpanit) [1303727]
-- [ntb] remove unused variable (Suravee Suthikulpanit) [1303727]
-- [ntb] fix access of free-ed pointer (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix issue where we may be accessing NULL ptr (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix range check on memory window index (Suravee Suthikulpanit) [1303727]
-- [ntb] Improve index handling in B2B MW workaround (Suravee Suthikulpanit) [1303727]
-- [ntb] Use unique DMA channels for TX and RX (Suravee Suthikulpanit) [1303727]
-- [ntb] Remove dma_sync_wait from ntb_async_rx (Suravee Suthikulpanit) [1303727]
-- [ntb] Clean up QP stats info (Suravee Suthikulpanit) [1303727]
-- [ntb] Make the transport list in order of discovery (Suravee Suthikulpanit) [1303727]
-- [ntb] Add PCI Device IDs for Broadwell Xeon (Suravee Suthikulpanit) [1303727]
-- [ntb] Add flow control to the ntb_netdev (Suravee Suthikulpanit) [1303727]
-- [ntb] avoid format string in dev_set_name (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix dereference before check (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix zero size or integer overflow in ntb_set_mw (Suravee Suthikulpanit) [1303727]
-- [ntb] Schedule to receive on QP link up (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix oops in debugfs when transport is half-up (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix transport stats for multiple devices (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix ntb_transport out-of-order RX update (Suravee Suthikulpanit) [1303727]
-- [ntb] Add split BAR output for debugfs stats (Suravee Suthikulpanit) [1303727]
-- [ntb] Change WARN_ON_ONCE to pr_warn_once on unsafe (Suravee Suthikulpanit) [1303727]
-- [ntb] Print driver name and version in module init (Suravee Suthikulpanit) [1303727]
-- [ntb] Increase transport MTU to 64k from 16k (Suravee Suthikulpanit) [1303727]
-- [ntb] Rename Intel code names to platform names (Suravee Suthikulpanit) [1303727]
-- [ntb] Default to CPU memcpy for performance (Suravee Suthikulpanit) [1303727]
-- [ntb] Improve performance with write combining (Suravee Suthikulpanit) [1303727]
-- [ntb] Use NUMA memory in Intel driver (Suravee Suthikulpanit) [1303727]
-- [ntb] Use NUMA memory and DMA chan in transport (Suravee Suthikulpanit) [1303727]
-- [ntb] Rate limit ntb_qp_link_work (Suravee Suthikulpanit) [1303727]
-- [ntb] Add tool test client (Suravee Suthikulpanit) [1303727]
-- [ntb] Add ping pong test client (Suravee Suthikulpanit) [1303727]
-- [ntb] Add parameters for Intel SNB B2B addresses (Suravee Suthikulpanit) [1303727]
-- [ntb] Reset transport QP link stats on down (Suravee Suthikulpanit) [1303727]
-- [ntb] Do not advance transport RX on link down (Suravee Suthikulpanit) [1303727]
-- [ntb] Differentiate transport link down messages (Suravee Suthikulpanit) [1303727]
-- [ntb] Check the device ID to set errata flags (Suravee Suthikulpanit) [1303727]
-- [ntb] Enable link for Intel root port mode in probe (Suravee Suthikulpanit) [1303727]
-- [ntb] Read peer info from local SPAD in transport (Suravee Suthikulpanit) [1303727]
-- [ntb] Split ntb_hw_intel and ntb_transport drivers (Suravee Suthikulpanit) [1303727]
-- [ntb] Add NTB hardware abstraction layer (Suravee Suthikulpanit) [1303727]
-- [ntb] Move files in preparation for NTB abstraction (Suravee Suthikulpanit) [1303727]
-- [ntb] initialize max_mw for Atom before using it (Suravee Suthikulpanit) [1303727]
-- [ntb] iounmap MW reg and vbase in error path (Suravee Suthikulpanit) [1303727]
-- [ntb] Adding split BAR support for Haswell platforms (Suravee Suthikulpanit) [1303727]
-- [ntb] use errata flag set via DID to implement workaround (Suravee Suthikulpanit) [1303727]
-- [ntb] conslidate reading of PPD to move platform detection earlier (Suravee Suthikulpanit) [1303727]
-- [ntb] move platform detection to separate function (Suravee Suthikulpanit) [1303727]
-- [ntb] debugfs device entry (Suravee Suthikulpanit) [1303727]
-- [ntb] Add alignment check to meet hardware requirement (Suravee Suthikulpanit) [1303727]
-- [ntb] correct the spread of queues over mw's (Suravee Suthikulpanit) [1303727]
-- [ntb] Use pci_enable_msix_range() instead of pci_enable_msix() (Suravee Suthikulpanit) [1303727]
-- [ntb] Split ntb_setup_msix() into separate BWD/SNB routines (Suravee Suthikulpanit) [1303727]
-- [ntb] Use pci_msix_vec_count() to obtain number of MSI-Xs (Suravee Suthikulpanit) [1303727]
-- [ntb] Code Style Clean-up (Suravee Suthikulpanit) [1303727]
-- [ntb] client event cleanup (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix leakage of ntb_device::msix_entries[] array (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix typo in setting one translation register (Suravee Suthikulpanit) [1303727]
-- [ntb] Disable interrupts and poll under high load (Suravee Suthikulpanit) [1303727]
-- [ntb] Enable Snoop on Primary Side (Suravee Suthikulpanit) [1303727]
-- [ntb] Document HW errata (Suravee Suthikulpanit) [1303727]
-- [ntb] remove duplicate defines (Suravee Suthikulpanit) [1303727]
-- [ntb] correct dmaengine_get/put usage (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix ntb_transport link down race (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix missed call to pci_enable_msix() (Suravee Suthikulpanit) [1303727]
-- [ntb] Fix NTB-RP Link Up (Suravee Suthikulpanit) [1303727]
-- [ntb] Xeon Doorbell errata workaround (Suravee Suthikulpanit) [1303727]
-- [ntb] convert to dmaengine_unmap_data (Suravee Suthikulpanit) [1303727]
-- [ntb] clean up unnecessary MSI/MSI-X capability find (Suravee Suthikulpanit) [1303727]
-- [ntb] Update Version (Suravee Suthikulpanit) [1303727]
-- [ntb] Comment Fix (Suravee Suthikulpanit) [1303727]
-- [ntb] Remove unused variable (Suravee Suthikulpanit) [1303727]
-- [ntb] Remove References of non-B2B BWD HW (Suravee Suthikulpanit) [1303727]
-- [ntb] NTB-RP support (Suravee Suthikulpanit) [1303727]
-- [ntb] Rename Variables for NTB-RP (Suravee Suthikulpanit) [1303727]
-- [ntb] Use DMA Engine to Transmit and Receive (Suravee Suthikulpanit) [1303727]
-- [ntb] Enable 32bit Support (Suravee Suthikulpanit) [1303727]
-- [ntb] Update Device IDs (Suravee Suthikulpanit) [1303727]
-- [ntb] BWD Link Recovery (Suravee Suthikulpanit) [1303727]
-- [ntb] Xeon Errata Workaround (Suravee Suthikulpanit) [1303727]
-- [dma] async_memcpy: convert to dmaengine_unmap_data (Suravee Suthikulpanit) [1303727]
-- [dma] dmaengine: reference counted unmap data (Suravee Suthikulpanit) [1303727]
-- [dma] dmaengine: add support to provide error result from a DMA transation (Suravee Suthikulpanit) [1303727]
-- [dma] dmaengine: Add helper function to prep for error reporting (Suravee Suthikulpanit) [1303727]
-- [dma] dmaengine: prepare for generic 'unmap' data (Suravee Suthikulpanit) [1303727]
-
-* Thu Apr 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-644.el7]
-- [kernel] userns: Avoid panics by reserving space in user_table for future ucounts ("Eric W. Biederman") [1340238]
-- [mm] slab.h: fix argument order in cache_from_obj's error message (Aristeu Rozanski) [1437645]
-- [x86] platform/uv: Fix calculation of Global Physical Address (Frank Ramsay) [1434837]
-- [pci] Support INTx masking on ConnectX-4 with firmware x.14.1100+ (Myron Stowe) [1437132]
-- [pci] Convert Mellanox broken INTx quirks to be for listed devices only (Myron Stowe) [1437132]
-- [pci] Convert broken INTx masking quirks from HEADER to FINAL (Myron Stowe) [1437132]
-- [acpi] apei: Fix leaked resources (Jerome Marchand) [1173433]
-- [acpi] apei: erst: Fixed leaked resources in erst_init (Jerome Marchand) [1173433]
-- [scsi] ipr: Driver version 2.6.4 (Gustavo Duarte) [1406512]
-- [scsi] ipr: Fix SATA EH hang (Gustavo Duarte) [1406512]
-- [scsi] ipr: Error path locking fixes (Gustavo Duarte) [1406512]
-- [scsi] ipr: Fix abort path race condition (Gustavo Duarte) [1406512]
-- [scsi] ipr: Remove redundant initialization (Gustavo Duarte) [1406512]
-- [scsi] ipr: Fix missed EH wakeup (Gustavo Duarte) [1406512]
-- [netdrv] be2net: Fix endian issue in logical link config command (David Arcari) [1384389]
-- [netdrv] fjes: Fix wrong netdevice feature flags (Yasuaki Ishimatsu) [1435603]
-- [netdrv] bnxt_en: Correct the order of arguments to netdev_err() in bnxt_set_tpa() (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Fix NULL pointer dereference in reopen failure path (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Ignore 0 value in autoneg supported speed from firmware (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Check if firmware LLDP agent is running (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Call bnxt_ulp_stop() during tx timeout (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Perform function reset earlier during probe (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: use eth_hw_addr_random() (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: fix pci cleanup in bnxt_init_one() failure path (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Fix NULL pointer dereference in a failure path during open (Jonathan Toppins) [1433476]
-- [netdrv] bnxt_en: Reject driver probe against all bridge devices (Jonathan Toppins) [1433476]
-- [netdrv] mlx5e: Reorder update stats (Kamal Heib) [1409101]
-- [netdrv] mlx5: Move cached hca caps to designated caps struct (Kamal Heib) [1409101]
-- [netdrv] mlx5e: Expose PCIe statistics to ethtool (Kamal Heib) [1409101]
-- [netdrv] mlx5: Add MPCNT register infrastructure (Kamal Heib) [1409101]
-- [netdrv] mlx5e: Expose physical layer statistical counters to ethtool (Kamal Heib) [1409101]
-- [netdrv] mlx5: Add PPCNT physical layer statistical group infrastructure (Kamal Heib) [1409101]
-- [netdrv] mlx5: Query and cache PCAM, MCAM registers on initialization (Kamal Heib) [1409101]
-- [netdrv] mlx5: Implement PCAM, MCAM access register commands (Kamal Heib) [1409101]
-- [netdrv] mlx5: Expose PCAM, MCAM registers infrastructure (Kamal Heib) [1409101]
-- [netdrv] mlx5e: Implement 1PPS support (Kamal Heib) [1386723]
-- [netdrv] mlx5: Add MTPPS and MTPPSE registers infrastructure (Kamal Heib) [1386723]
-- [infiniband] ib/mlx5: Replace ENOTSUPP usage with EOPNOTSUPP (Kamal Heib) [1386747]
-- [infiniband] ib/mlx5: Add flow tag support (Kamal Heib) [1386747]
-- [infiniband] ib/uverbs: Add support for flow tag (Kamal Heib) [1386747]
-- [rdma] ib/core: Introduce flow tag specification (Kamal Heib) [1386747]
-- [netdrv] mlx5: Consolidate flow rules regardless their flow tag (Kamal Heib) [1386747]
-
-* Tue Apr 04 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-643.el7]
-- [net] flow_dissector: check if arp_eth is null rather than arp (Jonathan Toppins) [1393375]
-- [net] sched: cls_rsvp: complete rcu conversion (Jonathan Toppins) [1393375]
-- [net] sched: cls_tcindex: fix another crash in cls_tcindex (Jonathan Toppins) [1393375]
-- [net] sched: act_mirred: fix a typo in get_dev (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: mark tech preview (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Reflect HW offload status (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Properly handle classifier flags dumping (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: expose priority to offloading netdevice (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Correct matching on ICMPv6 code (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: reduce fl_change stack size (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Disallow duplicate internal elements (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Support matching on ARP (Jonathan Toppins) [1393375]
-- [net] flow_disector: ARP support (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Fix missing addr_type in classify (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Mandate mask when matching on flags (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Use masked key when calling HW offloads (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Use mask for addr_type (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Support matching on ICMP type and code (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add support for matching on flags (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Set the filter Hardware device for all use-cases (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add offload support using egress Hardware device (Jonathan Toppins) [1393375]
-- [net] sched: move tc offload macros to pkt_cls.h (Jonathan Toppins) [1393375]
-- [net] sched: avoid unused variable warning (Jonathan Toppins) [1393375]
-- [net] sched: act_mirred: Add new tc_action_ops get_dev() (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Provide a filter to replace/destroy hardware filter functions (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Try to offload only if skip_hw flag isn't set (Jonathan Toppins) [1393375]
-- [net] sched: Add separate check for skip_hw flag (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: remove from hashtable only in case skip sw flag is not set (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: respect rcu grace period on cls destruction (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add UDP port to tunnel parameters (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Allow setting encapsulation fields as used key (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Support matching on SCTP ports (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: merge filter delete/destroy common code (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: add missing unbind call when destroying flows (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Use a proper mask value for enc key id parameter (Jonathan Toppins) [1393375]
-- [net] sched: stylistic cleanups (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Specify vlan attributes format in the UAPI header (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Remove an unused field from the filter key structure (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Support masking for matching on tcp/udp ports (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Classify packet in ip tunnels (Jonathan Toppins) [1393375]
-- [net] dst: Utility functions to build dst_metadata without supplying an skb (Jonathan Toppins) [1393375]
-- [net] ip_tunnels: Introduce tunnel_id_to_key32() and key32_to_tunnel_id() (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: fix use of uninitialized ethertype variable in cls_flower (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add vlan support (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Avoid dissection of unmasked keys (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Return error when hw can't offload and skip_sw is set (Jonathan Toppins) [1393375]
-- [net] sched: fix tc_should_offload for specific clsact classes (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Introduce support in SKIP SW flag (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Hardware offloaded filters statistics support (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Fix pointer cast (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Introduce hardware offload support (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: set key address type when present (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: fix panic on filter replace (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: flower fix typo (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Add full IPv6 addresses to flow_keys (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Get skb hash over flow_keys structure (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: Fix compile error (Jonathan Toppins) [1393375]
-- [net] sched: cls_flower: introduce Flower classifier (Jonathan Toppins) [1393375]
-
-* Tue Apr 04 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-642.el7]
-- [pci] Enable access to non-standard VPD for Chelsio devices (Sai Vemuri) [1241921]
-- [x86] efi: Do not handle BGRT image in kdump kernel (Bhupesh Sharma) [1268946]
-- [net] qed: Add support for hardware offloaded FCoE (Chad Dupuis) [1384085]
-- [scsi] qedf: Add QLogic FastLinQ offload FCoE driver framework (Chad Dupuis) [1384085]
-- [scsi] qedi: Fix memory leak in tmf response processing (Chad Dupuis) [1384083]
-- [scsi] qedi: Fix possible memory leak in qedi_iscsi_update_conn() (Chad Dupuis) [1384083]
-- [scsi] qedi: fix build, depends on UIO (Chad Dupuis) [1384083]
-- [scsi] qedi: Add QLogic FastLinQ offload iSCSI driver framework (Chad Dupuis) [1384083]
-- [misc] mei: don't wait for os version message reply (Jerry Snitselaar) [1435102]
-- [misc] mei: me: add lewisburg device ids (Jerry Snitselaar) [1435102]
-- [char] tpm_crb: request and relinquish locality 0 (Jerry Snitselaar) [1402149]
-- [char] tpm: make check_locality return bool (Jerry Snitselaar) [1402149]
-- [char] tpm_crb: check for bad response size (Jerry Snitselaar) [1402149]
-- [char] tpm_crb: encapsulate crb_wait_for_reg_32 (Jerry Snitselaar) [1402149]
-- [char] tpm_crb: map locality registers (Jerry Snitselaar) [1402149]
-- [char] tpm crb: Work around BIOS's that report the wrong ACPI region size (Jerry Snitselaar) [1402149]
-- [tools] perf bench numa: Add more comment for -c option (Jiri Olsa) [1018964]
-- [crypto] ccp - Assign DMA commands to the channel's CCP (Suravee Suthikulpanit) [1420977]
-- [netdrv] iwlwifi: mvm: cleanup pending frames in DQA mode (Stanislaw Gruszka) [1431840]
-- [netdrv] mlx4_en: Adding support of turning off link autonegotiation via ethtool (Kamal Heib) [1409502]
-- [cpufreq] intel_pstate: Disable energy efficiency optimization (Prarit Bhargava) [1408828]
-- [powerpc] powernv: Handle OPAL_WRONG_STATE in opal_get_sensor_data() (Steve Best) [1412551]
-- [powerpc] powerpc/64: Fix checksum folding in csum_add() (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/64: Use optimized checksum routines on little-endian (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/64: Fix checksum folding in csum_tcpudp_nofold and ip_fast_csum_nofold (Gustavo Duarte) [1430834]
-- [powerpc] Update parameters for csum_tcpudp_magic & csum_tcpudp_nofold (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: Fix again csum_partial_copy_generic() (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: Fix csum_partial_copy_generic() (Gustavo Duarte) [1430834]
-- [powerpc] lib: Clarify that adde is an instruction and we mean plural (Gustavo Duarte) [1430834]
-- [powerpc] simplify csum_add(a, b) in case a or b is constant 0 (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: optimise csum_partial() loop (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: optimise a few instructions in csum_partial() (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: rewrite csum_partial_copy_generic() based on copy_tofrom_user() (Gustavo Duarte) [1430834]
-- [powerpc] inline ip_fast_csum() (Gustavo Duarte) [1430834]
-- [powerpc] powerpc/32: checksum_wrappers_64 becomes checksum_wrappers (Gustavo Duarte) [1430834]
-- [powerpc] mark xer clobbered in csum_add() (Gustavo Duarte) [1430834]
-- [powerpc] add support for csum_add() (Gustavo Duarte) [1430834]
-- [powerpc] put csum_tcpudp_magic inline (Gustavo Duarte) [1430834]
-- [firmware] efi: Expose underlying UEFI firmware platform size to userland (Lenny Szubowicz) [1434959]
-
-* Mon Apr 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-641.el7]
-- [x86] mm/kaslr: EFI region is mistakenly included into KASLR VA space for randomization (Baoquan He) [1424943]
-- [x86] kconfig: Remove misleading note regarding hibernation and KASLR (Baoquan He) [1424943]
-- [kernel] uaccess.h: Include linux/sched.h (Baoquan He) [1424943]
-- [x86] microcode/amd: Fix load of builtin microcode with randomized memory (Baoquan He) [1424943]
-- [x86] microcode/amd: Make amd_ucode_patch[] static (Baoquan He) [1424943]
-- [x86] microcode/amd: Fix initrd loading with CONFIG_RANDOMIZE_MEMORY=y (Baoquan He) [1424943]
-- [x86] asm, x86/microcode: Add __PAGE_OFFSET_BASE define on 32-bit (Baoquan He) [1424943]
-- [x86] microcode/intel: Fix initrd loading with CONFIG_RANDOMIZE_MEMORY=y (Baoquan He) [1424943]
-- [x86] microcode: Fix loading precedence (Baoquan He) [1424943]
-- [kernel] kexec: export the value of phys_base instead of symbol address (Baoquan He) [1424943]
-- [kernel] kexec: export KERNEL_IMAGE_SIZE to vmcoreinfo (Baoquan He) [1424943]
-- [x86] revert "kdump, vmcoreinfo: report memory sections virtual addresses" (Baoquan He) [1424943]
-- [kernel] kdump, vmcoreinfo: report memory sections virtual addresses (Baoquan He) [1424943]
-- [x86] mm/64: Enable KASLR for vmemmap memory region (Baoquan He) [1424943]
-- [x86] ptdump: Add section for EFI runtime services (Baoquan He) [1424943]
-- [x86] mm/kaslr: Increase BRK pages for KASLR memory randomization (Baoquan He) [1424943]
-- [x86] mm/kaslr: Fix physical memory calculation on KASLR memory randomization (Baoquan He) [1424943]
-- [x86] mm: Do not reference phys addr beyond kernel (Baoquan He) [1424943]
-- [x86] mm: Add memory hotplug support for KASLR memory randomization (Baoquan He) [1424943]
-- [x86] mm: Enable KASLR for vmalloc memory regions (Baoquan He) [1424943]
-- [x86] mm: Enable KASLR for physical mapping memory regions (Baoquan He) [1424943]
-- [x86] asm: Remove unused L3_PAGE_OFFSET (Baoquan He) [1424943]
-- [x86] mm: Implement ASLR for kernel memory regions (Baoquan He) [1424943]
-- [x86] mm: Separate variable for trampoline PGD (Baoquan He) [1424943]
-- [x86] mm: Add PUD VA support for physical mapping (Baoquan He) [1424943]
-- [x86] mm: Use pte_none() to test for empty PTE (Baoquan He) [1424943]
-- [x86] mm: Update physical mapping variable names (Baoquan He) [1424943]
-- [x86] revert "Use pte_none() to test for empty PTE" (Baoquan He) [1424943]
-- [kernel] sched: Remove lockdep check in sched_move_task() (Oleg Nesterov) [1388158]
-- [kernel] sched/autogroup: Do not use autogroup->tg in zombie threads (Oleg Nesterov) [1388158]
-- [kernel] sched/autogroup: Fix autogroup_move_group() to never skip sched_move_task() (Oleg Nesterov) [1388158]
-- [kernel] sched: Change autogroup_move_group() to use for_each_thread() (Oleg Nesterov) [1388158]
-- [kernel] audit: log module name on delete_module (Richard Guy Briggs) [1426659]
-- [kernel] audit: add feature audit_lost reset (Richard Guy Briggs) [1249813]
-- [kernel] audit: Audit proc/<pid>/cmdline aka proctitle (Richard Guy Briggs) [1299527]
-- [kernel] mm: Create utility function for accessing a tasks commandline value (Richard Guy Briggs) [1299527]
-- [kernel] perf/core: Introduce PMU_EV_CAP_READ_ACTIVE_PKG (Jiri Olsa) [1434753] {CVE-2017-6001}
-- [kernel] perf/core: Generalize event->group_flags (Jiri Olsa) [1434753] {CVE-2017-6001}
-- [kernel] perf/core: Fix concurrent sys_perf_event_open() vs. 'move_group' race (Jiri Olsa) [1434753] {CVE-2017-6001}
-- [kernel] powerpc: Fix copy_file_range syscall (Prarit Bhargava) [1436879]
-- [kernel] s390: set NR_syscalls to 376 (Prarit Bhargava) [1436879]
-- [kernel] userns: Remove user namespaces from tech preview status ("Eric W. Biederman") [1340238]
-- [kernel] userns: By default allow 0 user namespaces in RHEL7 ("Eric W. Biederman") [1340238]
-- [kernel] ucount: Remove the atomicity from ucount->count ("Eric W. Biederman") [1340238]
-- [kernel] userns: Make ucounts lock irq-safe ("Eric W. Biederman") [1340238]
-- [kernel] userns: When the per user per user namespace limit is reached return ENOSPC ("Eric W. Biederman") [1340238]
-- [kenrel] userns: Document per user per user namespace limits ("Eric W. Biederman") [1340238]
-- [kernel] mntns: Add a limit on the number of mount namespaces ("Eric W. Biederman") [1340238 1322495] {CVE-2016-6213}
-- [kernel] netns: Add a limit on the number of net namespaces ("Eric W. Biederman") [1340238]
-- [kernel] ipcns: Add a limit on the number of ipc namespaces ("Eric W. Biederman") [1340238]
-- [kernel] ipc: Initialize ipc_namespace->user_ns early ("Eric W. Biederman") [1340238]
-- [kernel] utsns: Add a limit on the number of uts namespaces ("Eric W. Biederman") [1340238]
-- [kernel] pidns: Add a limit on the number of pid namespaces ("Eric W. Biederman") [1340238]
-- [kernel] userns: Generalize the user namespace count into ucount ("Eric W. Biederman") [1340238]
-- [kernel] userns: Make the count of user namespaces per user ("Eric W. Biederman") [1340238]
-- [kernel] userns: Add a limit on the number of user namespaces ("Eric W. Biederman") [1340238]
-- [kernel] userns: Add per user namespace sysctls ("Eric W. Biederman") [1340238]
-- [kernel] userns: Free user namespaces in process context ("Eric W. Biederman") [1340238]
-- [kernel] sysctl: Stop implicitly passing current into sysctl_table_root.lookup ("Eric W. Biederman") [1340238]
-
-* Fri Mar 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-640.el7]
-- [md] dm error: add DAX support (Jeff Moyer) [1384648 1384644]
-- [dax] rhel: device-dax: only support page-sized faults (Jeff Moyer) [1383489]
-- [md] dm: allow bio-based table to be upgraded to bio-based with DAX support (Jeff Moyer) [1384648 1384644]
-- [md] dm snap: add fake origin_direct_access (Jeff Moyer) [1384648 1384644]
-- [md] dm stripe: add DAX support (Jeff Moyer) [1384644]
-- [md] dm linear: add DAX support (Jeff Moyer) [1384648]
-- [uapi] dm: add infrastructure for DAX support (Jeff Moyer) [1384648 1384644]
-- [kernel] dax: enable dax in the presence of known media errors (badblocks) (Jeff Moyer) [1383825]
-- [dax] device-dax: fix pmd/pte fault fallback handling (Jeff Moyer) [1383489]
-- [dax] fix debug output typo (Jeff Moyer) [1383489]
-- [nvdimm] libnvdimm, pfn: fix memmap reservation size versus 4K alignment (Jeff Moyer) [1383825]
-- [acpi] nfit: fix acpi_nfit_flush_probe() crash (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: do not delete namespace-id 0 (Jeff Moyer) [1383827]
-- [nvdimm] constify device_type structures (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: fix pmem namespace leak, delete when size set to zero (Jeff Moyer) [1383827]
-- [nvdimm] pmem: return EIO on read_pmem() failure (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: fix mishandled nvdimm_clear_poison() return value (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: replace mutex_is_locked() warnings with lockdep_assert_held (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, pfn: fix align attribute (Jeff Moyer) [1383825]
-- [tools] testing/nvdimm: unit test acpi_nfit_ctl() (Jeff Moyer) [1383825]
-- [acpi] nfit: fix bus vs dimm confusion in xlat_status (Jeff Moyer) [1383825]
-- [acpi] nfit: validate ars_status output buffer size (Jeff Moyer) [1383825]
-- [kernel] acpi, nfit, libnvdimm: fix / harden ars_status output length handling (Jeff Moyer) [1383825]
-- [acpi] nfit: fix extended status translations for ACPI DSMs (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, e820: use module_platform_driver (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: use octal for permissions (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: avoid multiple sector calculations (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: remove else after return in nsio_rw_bytes() (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: fix the type of name variable (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm: use consistent naming for request_mem_region() (Jeff Moyer) [1383825]
-- [dax] add region 'id', 'size', and 'align' attributes (Jeff Moyer) [1383489]
-- [dax] device-dax: fix private mapping restriction, permit read-only (Jeff Moyer) [1383489]
-- [dax] device-dax: fail all private mapping attempts (Jeff Moyer) [1383489]
-- [dax] device-dax: check devm_nsio_enable() return value (Jeff Moyer) [1383489]
-- [dax] device-dax: fix percpu_ref_exit ordering (Jeff Moyer) [1383489]
-- [dax] use correct dev_t value (Jeff Moyer) [1383489]
-- [dax] convert devm_create_dax_dev to PTR_ERR (Jeff Moyer) [1383489]
-- [dax] fix mapping size check (Jeff Moyer) [1383489]
-- [dax] fix device-dax region base (Jeff Moyer) [1383489]
-- [dax] check resource alignment at dax region/device create (Jeff Moyer) [1383489]
-- [dax] unmap/truncate on device shutdown (Jeff Moyer) [1383489]
-- [uapi] dax: define a unified inode/address_space for device-dax mappings (Jeff Moyer) [1383489]
-- [dax] convert to the cdev api (Jeff Moyer) [1383489]
-- [dax] embed a struct device in dax_dev (Jeff Moyer) [1383489]
-- [dax] rename fops from dax_dev_ to dax_ (Jeff Moyer) [1383489]
-- [dax] reorder dax_fops function definitions (Jeff Moyer) [1383489]
-- [dax] cleanup needlessly global symbol warnings (Jeff Moyer) [1383489]
-- [dax] use devm_add_action_or_reset() (Jeff Moyer) [1383489]
-- [nvdimm] use the right length of "pmem" (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: check and clear poison before writing to pmem (Jeff Moyer) [1383825]
-- [nvdimm] make CONFIG_NVDIMM_DAX 'bool' (Jeff Moyer) [1383489]
-- [nvdimm] pmem: report error on clear poison failure (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: potential NULL deref on allocation error (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm: allow a platform to force enable label support (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm: use generic iostat interfaces (Jeff Moyer) [1383825]
-- [kernel] blk: introduce generic io stat accounting help function (Jeff Moyer) [1383825]
-- [nvdimm] /dev/dax: fix Kconfig dependency build breakage (Jeff Moyer) [1383489]
-- [nvdimm] libnvdimm, namespace: allow creation of multiple pmem-namespaces per region (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: lift single pmem limit in scan_labels() (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: filter out of range labels in scan_labels() (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: enable allocation of multiple pmem namespaces (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: update label implementation for multi-pmem (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: expand pmem device naming scheme for multi-pmem (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, region: update nd_region_available_dpa() for multi-pmem support (Jeff Moyer) [1383827]
-- [kernel] libnvdimm, namespace: sort namespaces by dpa at init (Jeff Moyer) [1383827]
-- [kernel] libnvdimm, namespace: allow multiple pmem-namespaces per region at scan time (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: unify blk and pmem label scanning (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, namespace: refactor uuid_show() into a namespace_to_uuid() helper (Jeff Moyer) [1383827]
-- [nvdimm] libnvdimm, label: convert label tracking to a linked list (Jeff Moyer) [1383827]
-- [kernel] libnvdimm, region: move region-mapping input-paramters to nd_mapping_desc (Jeff Moyer) [1383825]
-- [nvdimm] reduce duplicated wpq flushes (Jeff Moyer) [1383825]
-- [kernel] libnvdimm: clear the internal poison_list when clearing badblocks (Jeff Moyer) [1383825]
-- [nvdimm] pmem: reduce kmap_atomic sections to the memcpys only (Jeff Moyer) [1383825]
-- [kernel] x86, pmem: use memcpy_mcsafe() for memcpy_from_pmem() (Jeff Moyer) [1383825]
-- [acpi] nfit: don't start a full scrub by default for an MCE (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, region: fix flush hint table thinko (Jeff Moyer) [1383825]
-- [nvdimm] remove duplicate nd_mapping declaration (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm, namespace: debug invalid interleave-set-cookie values (Jeff Moyer) [1383825]
-- [acpi] nfit: fail DSMs that return non-zero status by default (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: fix devm_nvdimm_memremap() error path (Jeff Moyer) [1383825]
-- [nvdimm] fix PHYS_PFN/PFN_PHYS mixup (Jeff Moyer) [1428115]
-- [nvdimm] libnvdimm: allow legacy (e820) pmem region to clear bad blocks (Jeff Moyer) [1383825]
-- [acpi] nfit, mce: Fix SPA matching logic in MCE handler (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: Fix nvdimm_probe error on NVDIMM-N (Jeff Moyer) [1385037]
-- [nvdimm] Spelling s/unacknoweldged/unacknowledged/ (Jeff Moyer) [1383825]
-- [tools] testing/nvdimm: unit test for acpi_nvdimm_notify() (Jeff Moyer) [1383825]
-- [kernel] acpi, nfit: add dimm device notification support (Jeff Moyer) [1383825]
-- [tools] testing/nvdimm: unit test for acpi_nfit_notify() (Jeff Moyer) [1383825]
-- [tools] testing/nvdimm: fix SIGTERM vs hotplug crash (Jeff Moyer) [1383825]
-- [acpi] nfit: check for the correct event code in notifications (Jeff Moyer) [1369563]
-- [nvdimm] btt: add a size attribute for BTTs (Jeff Moyer) [1379275]
-- [acpi] libnvdimm, nd_blk: mask off reserved status bits (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm-btt: Delete an unnecessary check before the function call "__nd_device_register" (Jeff Moyer) [1379275]
-- [tools] nfit: do an ARS scrub on hitting a latent media error (Jeff Moyer) [1383825]
-- [acpi] nfit: move to nfit/ sub-directory (Jeff Moyer) [1383825]
-- [mm] /dev/dax, core: file operations and dax-mmap (Jeff Moyer) [1383489]
-- [tools] /dev/dax, pmem: direct access to persistent memory (Jeff Moyer) [1383489]
-- [kernel] nfit, libnvdimm: allow an ARS scrub to be triggered on demand (Jeff Moyer) [1383825]
-- [nvdimm] libnvdimm: register nvdimm_bus devices with an nd_bus driver (Jeff Moyer) [1383825]
-- [nvdimm] pmem: clarify a debug print in pmem_clear_poison (Jeff Moyer) [1383825]
-- [tools] nfit, tools/testing/nvdimm/: unify shutdown paths (Jeff Moyer) [1383825]
-- [tools] libnvdimm: move ->module to struct nvdimm_bus_descriptor (Jeff Moyer) [1383825]
-- [tools] nfit: cleanup acpi_nfit_init calling convention (Jeff Moyer) [1383825]
-- [acpi] nfit: fix _FIT evaluation memory leak + use after free (Jeff Moyer) [1383825]
-- [acpi] nfit: treat virtual ramdisk SPA as pmem region (Jeff Moyer) [1383825]
-- [kernel] block: add QUEUE_FLAG_DAX for devices to advertise their DAX support (Jeff Moyer) [1384648 1384644]
-- [nvdimm] libnvdimm: IS_ERR() usage cleanup (Jeff Moyer) [1383825]
-
-* Fri Mar 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-639.el7]
-- [netdrv] mark the aquantia ethernet driver as tech-preview (David Arcari) [1406021]
-- [netdrv] aquantia: Reset is_gso flag when EOP reached (David Arcari) [1406021]
-- [netdrv] aquantia: Fix for LSO with IPv6 (David Arcari) [1406021]
-- [netdrv] aquantia: Missing spinlock initialization (David Arcari) [1406021]
-- [netdrv] aquantia: Fix packet type detection (TCP/UDP) for IPv6 (David Arcari) [1406021]
-- [netdrv] aquantia: Remove adapter re-opening when MTU changed (David Arcari) [1406021]
-- [netdrv] aquantia: Fix for RX checksum offload (David Arcari) [1406021]
-- [netdrv] aquantia: Copying tx buffers is not needed (David Arcari) [1406021]
-- [netdrv] aquantia: Fixed memory allocation if AQ_CFG_RX_FRAME_MAX > 1 page (David Arcari) [1406021]
-- [netdrv] aquantia: Fixed incorrect buff->len calculation (David Arcari) [1406021]
-- [netdrv] aquantia: Call netdev_register after all initialized (David Arcari) [1406021]
-- [netdrv] aquantia: Null pointer check for aq_nic_ndev_alloc (David Arcari) [1406021]
-- [netdrv] aquantia: Using NETDEV_TX_OK instead 0 (David Arcari) [1406021]
-- [netdrv] aquantia: Fixed missing rtnl_unlock (David Arcari) [1406021]
-- [netdrv] aquantia: Superfluous initialization of "err" (David Arcari) [1406021]
-- [netdrv] aquantia: Using module_pci_driver (David Arcari) [1406021]
-- [netdrv] aquantia: Removed busy_count field (David Arcari) [1406021]
-- [netdrv] aquantia: Removed extra assignment for skb->dev (David Arcari) [1406021]
-- [netdrv] aquantia: remove function aq_ring_tx_deinit (David Arcari) [1406021]
-- [netdrv] aquantia: Add 2500/5000 mbit link modes support (David Arcari) [1406021]
-- [netdrv] aquantia: fix dma_mapping_error test (David Arcari) [1406021]
-- [netdrv] aquantia: atlantic: use new api ethtool_{get|set}_link_ksettings (David Arcari) [1406021]
-- [netdrv] generalize napi_complete_done() (David Arcari) [1406021]
-- [netdrv] aquantia: return -ETIME in macro AQ_HW_WAIT_FOR (David Arcari) [1406021]
-- [netdrv] aquantia: remove another redundant err check (David Arcari) [1406021]
-- [netdrv] aquantia: remove redundant err check (David Arcari) [1406021]
-- [netdrv] aquantia: Integrate AQtion 2.5/5 GB NIC driver (David Arcari) [1406021]
-- [netdrv] aquantia: Receive side scaling (David Arcari) [1406021]
-- [netdrv] aquantia: Ethtool support (David Arcari) [1406021]
-- [netdrv] aquantia: Hardware interface and utility functions (David Arcari) [1406021]
-- [netdrv] aquantia: Atlantic hardware abstraction layer (David Arcari) [1406021]
-- [netdrv] aquantia: PCI operations (David Arcari) [1406021]
-- [netdrv] aquantia: Vector operations (David Arcari) [1406021]
-- [netdrv] aquantia: Atlantic A0 and B0 specific functions (David Arcari) [1406021]
-- [netdrv] aquantia: Support for NIC-specific code (David Arcari) [1406021]
-- [netdrv] aquantia: Low-level hardware interfaces (David Arcari) [1406021]
-- [netdrv] aquantia: Add ring support code (David Arcari) [1406021]
-- [netdrv] aquantia: Common functions and definitions (David Arcari) [1406021]
-- [netdrv] aquantia: Make and configuration files (David Arcari) [1406021]
-- [uapi] ethtool: add support for 2500BaseT and 5000BaseT link modes (David Arcari) [1406021]
-- [uapi] ethtool: add support for 1000BaseX and missing 10G link modes (David Arcari) [1406021]
-
-* Fri Mar 31 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-638.el7]
-- [netdrv] ieee802154: atusb: fix driver to work with older firmware versions (David Arcari) [1415327]
-- [netdrv] at86rf230: Allow slow GPIO pins for "rstn" (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: do not use the stack for address fetching to make it DMA able (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: make sure we set a randaom extended address if fetching fails (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: do not use the stack for buffers to make them DMA able (David Arcari) [1415327]
-- [bluetooth] btmrvl: drop duplicate header slab.h (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: implement .set_frame_retries ops callback (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: try to read permanent extended address from device (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: store firmware version after retrieval for later use (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: sync header file from firmware for new features (David Arcari) [1415327]
-- [netdrv] ieee802154: fakelb: print number of created fake devices during probe (David Arcari) [1415327]
-- [netdrv] at86rf230: fix cca ed values for rf233 (David Arcari) [1415327]
-- [net] ieee802154: check device type (David Arcari) [1415327]
-- [bluetooth] hci_qca: Use setup_timer Kernel API instead of init_timer (David Arcari) [1415327]
-- [bluetooth] hci_h5: Use setup_timer Kernel API instead of init_timer (David Arcari) [1415327]
-- [bluetooth] hci_bcsp: Use setup_timer Kernel API instead of init_timer (David Arcari) [1415327]
-- [net] bluetooth: __ variants of u8 and friends are not neccessary inside kernel (David Arcari) [1415327]
-- [netdrv] ieee802154: drop duplicate header delay.h (David Arcari) [1415327]
-- [net] bluetooth: Fix using the correct source address type (David Arcari) [1415327]
-- [netdrv] ieee802154: constify ieee802154_ops structures (David Arcari) [1415327]
-- [bluetooth] btwilink: Fix probe return value (David Arcari) [1415327]
-- [net] bluetooth: Fix append max 11 bytes of name to scan rsp data (David Arcari) [1415327]
-- [bluetooth] hci_bcm: Fix autosuspend PM for Lenovo ThinkPad 8 (David Arcari) [1415327]
-- [bluetooth] btusb: Fix atheros firmware download error (David Arcari) [1415327]
-- [net] bluetooth: Refactor append name and appearance (David Arcari) [1415327]
-- [net] bluetooth: Add appearance to default scan rsp data (David Arcari) [1415327]
-- [net] bluetooth: Fix local name in scan rsp (David Arcari) [1415327]
-- [bluetooth] btusb: add entry for Marvell 8997 chipset (David Arcari) [1415327]
-- [bluetooth] Use single return in hci_uart_tty_ioctl() call (David Arcari) [1415327]
-- [bluetooth] BCSP fails to ACK re-transmitted frames from the peer (David Arcari) [1415327]
-- [bluetooth] Tidy-up coding style in hci_bcsp.c (David Arcari) [1415327]
-- [bluetooth] btwilink: Save the packet type before sending (David Arcari) [1415327]
-- [net] bluetooth: Fix not updating scan rsp when adv off (David Arcari) [1415327]
-- [bluetooth] Add a new 04ca:3011 QCA_ROME device (David Arcari) [1415327]
-- [net] bluetooth: Fix NULL pointer dereference in mgmt context (David Arcari) [1415327]
-- [net] bluetooth: Set appearance only for LE capable controllers (David Arcari) [1415327]
-- [net] bluetooth: Fix missing ext info event when setting appearance (David Arcari) [1415327]
-- [net] bluetooth: Add supported data types to ext info changed event (David Arcari) [1415327]
-- [net] bluetooth: Add appearance to Read Ext Controller Info command (David Arcari) [1415327]
-- [net] bluetooth: Factor appending EIR to separate helper (David Arcari) [1415327]
-- [net] bluetooth: Refactor read_ext_controller_info handler (David Arcari) [1415327]
-- [bluetooth] hci_uart: Add Marvell support (David Arcari) [1415327]
-- [bluetooth] hci_uart: Add Nokia Protocol identifier (David Arcari) [1415327]
-- [bluetooth] hci_bcm: Change protocol name (David Arcari) [1415327]
-- [net] bluetooth: Increment management interface revision (David Arcari) [1415327]
-- [net] bluetooth: Fix advertising instance validity check for flags (David Arcari) [1415327]
-- [net] bluetooth: Unify advertising instance flags check (David Arcari) [1415327]
-- [net] bluetooth: Remove unused parameter from tlv_data_is_valid function (David Arcari) [1415327]
-- [net] bluetooth: Add support for appearance in scan rsp (David Arcari) [1415327]
-- [net] bluetooth: Add support for local name in scan rsp (David Arcari) [1415327]
-- [bluetooth] btrtl: Add RTL8822BE Bluetooth device (David Arcari) [1415327]
-- [net] bluetooth: Fix not registering BR/EDR SMP channel with force_bredr flag (David Arcari) [1415327]
-- [net] bluetooth: Use kzalloc instead of kmalloc/memset (David Arcari) [1415327]
-- [net] bluetooth: Increase the subsystem minor version number (David Arcari) [1415327]
-- [net] bluetooth: Fix reason code used for rejecting SCO connections (David Arcari) [1415327]
-- [bluetooth] btqca: remove null checks on edl->data as it is an array (David Arcari) [1415327]
-- [net] bluetooth: Fix wrong New Settings event when closing HCI User Channel (David Arcari) [1415327]
-- [net] bluetooth: Send control open and close messages for HCI user channels (David Arcari) [1415327]
-- [netdrv] fakelb: fix schedule while atomic (David Arcari) [1415327]
-- [net] bluetooth: Append local name and CoD to Extended Controller Info (David Arcari) [1415327]
-- [net] bluetooth: Add framework for Extended Controller Information (David Arcari) [1415327]
-- [bluetooth] btusb: Mark CW6622 devices to have broken link key commands (David Arcari) [1415327]
-- [bluetooth] Remove deprecated create_singlethread_workqueue (David Arcari) [1415327]
-- [net] bluetooth: Handle HCI raw socket transition from unbound to bound (David Arcari) [1415327]
-- [net] bluetooth: Send control open and close messages for HCI raw sockets (David Arcari) [1415327]
-- [net] bluetooth: Add extra channel checks for control open/close messages (David Arcari) [1415327]
-- [net] bluetooth: Assign the channel early when binding HCI sockets (David Arcari) [1415327]
-- [net] bluetooth: Send control open and close only when cookie is present (David Arcari) [1415327]
-- [net] bluetooth: Use numbers for subsystem version string (David Arcari) [1415327]
-- [net] bluetooth: Introduce helper functions for socket cookie handling (David Arcari) [1415327]
-- [bluetooth] add WCNSS dependency for HCI driver (David Arcari) [1415327]
-- [net] bluetooth: Use command status event for Set IO Capability errors (David Arcari) [1415327]
-- [net] bluetooth: Fix wrong Get Clock Information return parameters (David Arcari) [1415327]
-- [net] bluetooth: Use individual flags for certain management events (David Arcari) [1415327]
-- [net] bluetooth: mgmt: Fix sending redundant event for Advertising Instance (David Arcari) [1415327]
-- [net] bluetooth: Add support for sending MGMT commands and events to monitor (David Arcari) [1415327]
-- [net] bluetooth: Add support for sending MGMT open and close to monitor (David Arcari) [1415327]
-- [net] bluetooth: Introduce helper to pack mgmt version information (David Arcari) [1415327]
-- [net] bluetooth: Store control socket cookie and comm information (David Arcari) [1415327]
-- [net] bluetooth: Check SOL_HCI for raw socket options (David Arcari) [1415327]
-- [bluetooth] bcm203x: don't print error when allocating urb fails (David Arcari) [1415327]
-- [bluetooth] btusb: Add support for 0cf3:e009 (David Arcari) [1415327]
-- [net] bluetooth: add printf format attribute to hci_set_[fh]w_info() (David Arcari) [1415327]
-- [bluetooth] btusb, hci_intel: Fix wait_on_bit_timeout() return value checks (David Arcari) [1415327]
-- [bluetooth] Introduce Qualcomm WCNSS SMD based HCI driver (David Arcari) [1415327]
-- [net] bluetooth: Add HCI device identifier for Qualcomm SMD (David Arcari) [1415327]
-- [net] 6lowpan: ndisc: no overreact if no short address is available (David Arcari) [1415327]
-- [net] bluetooth: Add combined LED trigger for controller power (David Arcari) [1415327]
-- [net] bluetooth: Put led_trigger field behind CONFIG_BT_LEDS (David Arcari) [1415327]
-- [char] miscdevice: Use module_misc_device() macro (David Arcari) [1415327]
-- [kernel] miscdevice: Add helper macro for misc device boilerplate (David Arcari) [1415327]
-- [net] bluetooth: Fix hci_sock_recvmsg when MSG_TRUNC is not set (David Arcari) [1415327]
-- [net] bluetooth: Fix bt_sock_recvmsg when MSG_TRUNC is not set (David Arcari) [1415327]
-- [net] bluetooth: split sk_filter in l2cap_sock_recv_cb (David Arcari) [1415327]
-- [net] bluetooth: Fix memory leak at end of hci requests (David Arcari) [1415327]
-- [net] mac802154: use rate limited warnings for malformed frames (David Arcari) [1415327]
-- [net] mac802154: don't warn on unsupported frames (David Arcari) [1415327]
-- [net] mac802154: set phy net namespace for new ifaces (David Arcari) [1415327]
-- [bluetooth] btmrvl: reset is_suspending flag in failure path (David Arcari) [1415327]
-- [bluetooth] bpa10x: Add support for hci_set_fw_info (David Arcari) [1415327]
-- [net] bluetooth: Add debugfs fields for hardware and firmware info (David Arcari) [1415327]
-- [lib] kasprintf.c: introduce kvasprintf_const (David Arcari) [1415327]
-- [net] bluetooth: Move hci_recv_frame and hci_recv_diag prototypes (David Arcari) [1415327]
-- [net] bluetooth: Fix l2cap_sock_setsockopt() with optname BT_RCVMTU (David Arcari) [1415327]
-- [kernel] misc: ti-st: Use int instead of fuzzy char for callback status (David Arcari) [1415327]
-- [net] bluetooth: Increment management interface revision (David Arcari) [1415327]
-- [net] bluetooth: Add Authentication Failed reason to Disconnected Mgmt event (David Arcari) [1415327]
-- [netdrv] mrf24j40: avoid uninitialized byte in SPI transfer to radio (David Arcari) [1415327]
-- [bluetooth] Add support of 13d3:3490 AR3012 device (David Arcari) [1415327]
-- [bluetooth] hci_intel: Remove LPM enabling from setup procedure (David Arcari) [1415327]
-- [net] bluetooth: Rename HCI_BREDR into HCI_PRIMARY (David Arcari) [1415327]
-- [netdrv] fakelb: allow to run as monitor (David Arcari) [1415327]
-- [net] ieee802154: cleanup WARN_ON for fc fetch (David Arcari) [1415327]
-- [netdrv] atusb: don't change csma settings while set channel (David Arcari) [1415327]
-- [net] 6lowpan: ndisc: set invalid unicast short addr to unspec (David Arcari) [1415327]
-- [net] ieee802154: fix skb get fc on big endian (David Arcari) [1415327]
-- [net] ieee802154: 6lowpan: fix intra pan id check (David Arcari) [1415327]
-- [net] ieee802154: add ieee802154_skb_src_pan helper (David Arcari) [1415327]
-- [net] ieee802154: add ieee802154_skb_dst_pan helper (David Arcari) [1415327]
-- [bluetooth] btusb: add support for device 0489:e092 (David Arcari) [1415327]
-- [bluetooth] btmrvl: fix slab-out-of-bounds access in btmrvl_sdio (David Arcari) [1415327]
-- [net] bluetooth: Fix hci_sock_recvmsg return value (David Arcari) [1415327]
-- [net] bluetooth: Fix bt_sock_recvmsg return value (David Arcari) [1415327]
-- [net] ieee802154: allow netns create of lowpan interface (David Arcari) [1415327]
-- [net] ieee802154: add netns support (David Arcari) [1415327]
-- [net] nl802154: move PAD to right position (David Arcari) [1415327]
-- [net] 6lowpan: ndisc: add missing 802.15.4 only check (David Arcari) [1415327]
-- [net] 6lowpan: ndisc: fix double read unlock (David Arcari) [1415327]
-- [net] 6lowpan: add support for 802.15.4 short addr handling (David Arcari) [1415327]
-- [net] 6lowpan: add support for getting short address (David Arcari) [1415327]
-- [net] 6lowpan: introduce 6lowpan-nd (David Arcari) [1415327]
-- [net] ipv6: introduce neighbour discovery ops (David Arcari) [1415327]
-- [net] ipv6: export several functions (David Arcari) [1415327]
-- [net] ndisc: add __ndisc_fill_addr_option function (David Arcari) [1415327]
-- [net] ndisc: add __ndisc_opt_addr_data function (David Arcari) [1415327]
-- [net] ndisc: add __ndisc_opt_addr_space function (David Arcari) [1415327]
-- [net] addrconf: put prefix address add in an own function (David Arcari) [1415327]
-- [net] 6lowpan: remove ipv6 module request (David Arcari) [1415327]
-- [net] 6lowpan: add 802.15.4 short addr slaac (David Arcari) [1415327]
-- [net] 6lowpan: add private neighbour data (David Arcari) [1415327]
-- [net] ieee802154: fix logic error in ieee802154_llsec_parse_dev_addr (David Arcari) [1415327]
-- [netdrv] ieee802154/adf7242: syntax error ifdef DEBUG (David Arcari) [1415327]
-- [bluetooth] Add USB ID 13D3:3487 to ath3k (David Arcari) [1415327]
-- [net] bluetooth: fix power_on vs close race (David Arcari) [1415327]
-- [bluetooth] hci_intel: Fix null gpio desc pointer dereference (David Arcari) [1415327]
-- [bluetooth] btmrvl: add platform specific wakeup interrupt support (David Arcari) [1415327]
-- [net] bluetooth: Add defines for SPI and I2C (David Arcari) [1415327]
-- [bluetooth] ath3k: Silence uninitialized variable warning (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: update my copyright years for this driver (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: implement .set_cca_mode ops callback (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: implement .set_cca_ed_level ops callback (David Arcari) [1415327]
-- [netdrv] ieee802154: atusb: implement .set_csma_params ops callback (David Arcari) [1415327]
-- [netdrv] at86rf230: increase sleep to off timings (David Arcari) [1415327]
-- [net] 6lowpan: move mac802154 header (David Arcari) [1415327]
-- [net] 6lowpan: add lowpan_is_ll function (David Arcari) [1415327]
-- [net] 6lowpan: move eui64 uncompress function (David Arcari) [1415327]
-- [net] 6lowpan: iphc: remove unnecessary zero data (David Arcari) [1415327]
-- [net] 6lowpan: iphc: rename add lowpan prefix (David Arcari) [1415327]
-- [net] 6lowpan: move lowpan_802154_dev to 6lowpan (David Arcari) [1415327]
-- [net] 6lowpan: change naming for lowpan private data (David Arcari) [1415327]
-- [net] ieee802154: 6lowpan: fix short addr hash (David Arcari) [1415327]
-- [net] nl802154: avoid address change while running lowpan (David Arcari) [1415327]
-- [net] ieee802154: add short address helpers (David Arcari) [1415327]
-- [kernel] ieee802154: cleanups for ieee802154.h (David Arcari) [1415327]
-- [netdrv] mrf24j40: apply the security-enabled bit on secured outbound frames (David Arcari) [1415327]
-- [netdrv] mrf24j40: fix security-enabled processing on inbound frames (David Arcari) [1415327]
-- [kernel] ieee802154: add security bit check function (David Arcari) [1415327]
-- [bluetooth] hci_bcsp: fix code style (David Arcari) [1415327]
-- [netdrv] ieee802154/adf7242: fix memory leak of firmware (David Arcari) [1415327]
-- [net] 6lowpan: iphc: fix handling of link-local compression (David Arcari) [1415327]
-- [net] bluetooth: Allow setting BT_SECURITY_FIPS with setsockopt (David Arcari) [1415327]
-- [bluetooth] hci_ldisc: Fix null pointer derefence in case of early data (David Arcari) [1415327]
-- [bluetooth] hci_bcm: Add BCM2E71 ACPI ID (David Arcari) [1415327]
-- [net] bluetooth: Ignore unknown advertising packet types (David Arcari) [1415327]
-- [net] bluetooth: Fix setting NO_BREDR advertising flag (David Arcari) [1415327]
-- [net] ipv6: Add checks for 6LOWPAN ARP type (David Arcari) [1415327]
-- [net] tcp: avoid infinite loop in tcp_splice_read() (Davide Caratti) [1430580] {CVE-2017-6214}
-- [net] ipv4: keep skb->dst around in presence of IP options (Sabrina Dubroca) [1433201] {CVE-2017-5970}
-- [net] neigh: only allow init_net to change the default neigh_parms (Hangbin Liu) [1434277]
-- [net] neigh: no need to call lookup_neigh_parms in neigh_parms_alloc (Hangbin Liu) [1434277]
-- [net] ipv6: Paritially checksum full MTU frames (Vlad Yasevich) [1420109]
-- [net] ipv6: Should use consistent conditional judgement for ip6 fragment between __ip6_append_data and ip6_finish_output (Vlad Yasevich) [1420109]
-- [net] udp: disallow UFO for sockets with SO_NO_CHECK option (Vlad Yasevich) [1420109]
-- [net] udp: only allow UFO for packets from SOCK_DGRAM sockets (Vlad Yasevich) [1420109]
-- [net] ipv6: make ECMP route replacement less greedy (Xin Long) [1430267]
-- [net] ipv6: fix multipath route replace error recovery (Xin Long) [1430267]
-- [net] ipv6: fix ECMP route replacement (Xin Long) [1430267]
-- [net] ipv6: do not delete previously existing ECMP routes if add fails (Xin Long) [1430267]
-
-* Thu Mar 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-637.el7]
-- [net] flow_dissector: skb_flow_get_be16() can be static (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Update pptp handling to avoid null pointer deref. (Jonathan Toppins) [1428557]
-- [net] flow dissector: ICMP support (Jonathan Toppins) [1428557]
-- [net] flow_dissector: __skb_flow_dissect() must cap its return value (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add enums for encapsulation keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: __skb_get_hash_symmetric arg can be const (Jonathan Toppins) [1428557]
-- [net] flow_dissector: fix vlan tag handling (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Check skb for VLAN only if skb specified. (Jonathan Toppins) [1428557]
-- [net] flow_dissector: rps: Fix uninitialized flow_keys used in __skb_get_hash possibly (Jonathan Toppins) [1428557]
-- [net] flow_dissector: rps: Add the const for the parameter of flow_keys_have_l4 (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Get vlan priority in addition to vlan id (Jonathan Toppins) [1428557]
-- [net] flow_dissector: For stripped vlan, get vlan info from skb->vlan_tci (Jonathan Toppins) [1428557]
-- [net] rps: Inspect PPTP encapsulated by GRE to get flow hash (Jonathan Toppins) [1428557]
-- [net] pptp: fix byte order warnings (Jonathan Toppins) [1428557]
-- [net] packet: Use symmetric hash for PACKET_FANOUT_HASH. (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Make dissector_uses_key() and skb_flow_dissector_target() public (Jonathan Toppins) [1428557]
-- [net] eth: Pull header from first fragment via eth_get_headlen (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Use same pointer for IPv4 and IPv6 addresses (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Correctly handle parsing FCoE (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix fragment handling for header length computation (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Check for IP fragmentation even if not using IPv4 address (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Copy inner L3 and L4 headers as unaligned on GRE TEB (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix unaligned access in __skb_flow_dissector when used by eth_get_headlen (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Use 'const' where possible. (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix function argument ordering dependency (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Move __get_hash_from_flowi{4, 6} into flow_dissector.c (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Don't use bit fields. (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Ignore flow dissector return value from ___skb_get_hash (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add control/reporting of encapsulation (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add flag to stop parsing when an IPv6 flow label is seen (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add flag to stop parsing at L3 (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Support IPv6 fragment header (Jonathan Toppins) [1428557]
-- [net] ipv6: introduce ipv6_authlen and IP6_OFFSET (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add control/reporting of fragmentation (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add flags argument to skb_flow_dissector functions (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Jump to exit code in __skb_flow_dissect (Jonathan Toppins) [1428557]
-- [net] flowi: Abstract out functions to get flow hash based on flowi (Jonathan Toppins) [1428557]
-- [net] Make __skb_set_sw_hash a general function (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add functions to get skb->hash based on flow structures (Jonathan Toppins) [1428557]
-- [net] Set sk_txhash from a random number (Jonathan Toppins) [1428557]
-- [net] break flow vs skbuff header dependency (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Move skb related functions to skbuff.h (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Pre-initialize ip_proto in __skb_flow_dissect() (Jonathan Toppins) [1428557]
-- [net] flow_dissector: fix ipv6 dst, hop-by-hop and routing ext hdrs (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add support for dst, hop-by-hop and routing ext hdrs (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix MPLS entropy label handling in flow dissector (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add MPLS entropy label in flow_keys (Jonathan Toppins) [1428557]
-- [net] mpls: Change reserved label names to be consistent with netbsd (Jonathan Toppins) [1428557]
-- [net] mpls: Move reserved label definitions (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add GRE keyid in flow_keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add IPv6 flow label to flow_keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add VLAN ID to flow_keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Get rid of IPv6 hash addresses flow keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add keys for TIPC address (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add full IPv6 addresses to flow_keys (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Get skb hash over flow_keys structure (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Remove superfluous setting of key_basic (Jonathan Toppins) [1428557]
-- [net] mpls: Add definition for IPPROTO_MPLS (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Simplify GRE case in flow_dissector (Jonathan Toppins) [1428557]
-- [net] flow_dissector: do not break if ports are not needed in flowlabel (Jonathan Toppins) [1428557]
-- [net] flow_dissector: remove bogus return in tipc section (Jonathan Toppins) [1428557]
-- [net] flow_dissector: call init_default_flow_dissectors() earlier (Jonathan Toppins) [1428557]
-- [net] flow_dissector: change port array into src, dst tuple (Jonathan Toppins) [1428557]
-- [net] flow_dissector: introduce support for Ethernet addresses (Jonathan Toppins) [1428557]
-- [net] flow_dissector: introduce support for ipv6 addressses (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add missing header includes (Jonathan Toppins) [1428557]
-- [net] flow_dissector: use programable dissector in skb_flow_dissect and friends (Jonathan Toppins) [1428557]
-- [net] flow_dissector: introduce programable flow_dissector (Jonathan Toppins) [1428557]
-- [net] flow_dissector: fix doc for skb_get_poff (Jonathan Toppins) [1428557]
-- [net] move __skb_tx_hash to dev.c (Jonathan Toppins) [1428557]
-- [net] move __skb_get_hash function declaration to flow_dissector.h (Jonathan Toppins) [1428557]
-- [net] flow_dissector: fix doc for __skb_get_hash and remove couple of empty lines (Jonathan Toppins) [1428557]
-- [net] move *skb_get_poff declarations into correct header (Jonathan Toppins) [1428557]
-- [net] flow_dissector: remove unused function flow_get_hlen declaration (Jonathan Toppins) [1428557]
-- [net] change name of flow_dissector header to match the .c file name (Jonathan Toppins) [1428557]
-- [net] sched: sch_choke: Use flow_keys_digest (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Add flow_keys digest (Jonathan Toppins) [1428557]
-- [net] sched: Call skb_get_hash_perturb in sch_sfq (Jonathan Toppins) [1428557]
-- [net] sched: Call skb_get_hash_perturb in sch_sfb (Jonathan Toppins) [1428557]
-- [net] sched: Call skb_get_hash_perturb in sch_fq_codel (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add tipc support (Jonathan Toppins) [1428557]
-- [net] sched: fix skb->protocol use in case of accelerated vlan path (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Fix alignment issue in __skb_flow_get_ports (Jonathan Toppins) [1428557]
-- [net] fix comments for __skb_flow_get_ports() (Jonathan Toppins) [1428557]
-- [net] flow_dissector: Use IPv6 flow label in flow_dissector (Jonathan Toppins) [1428557]
-- [net] Convert uses of __constant_<foo> to <foo> (Jonathan Toppins) [1428557]
-- [net] flow_dissector: small optimizations in IPv4 dissect (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add 802.1ad support (Jonathan Toppins) [1428557]
-- [net] flow_dissector: add support for IPPROTO_IPV6 (Jonathan Toppins) [1428557]
-- [net] flow_dissector: clean up IPIP case (Jonathan Toppins) [1428557]
-
-* Thu Mar 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-636.el7]
-- [scsi] megaraid_sas: Driver version upgrade (Tomas Henzl) [1433861]
-- [scsi] megaraid_sas: raid6 also require cpuSel check same as raid5 (Tomas Henzl) [1433861]
-- [scsi] megaraid_sas: add correct return type check for ldio hint logic for raid1 (Tomas Henzl) [1433861]
-- [scsi] hpsa: fix volume offline state (Joseph Szczypek) [1384611]
-- [scsi] hpsa: update version to 3.4.18-0-RH1 (Joseph Szczypek) [1384611]
-- [scsi] hpsa: do not timeout reset operations (Joseph Szczypek) [1384611]
-- [scsi] hpsa: limit outstanding rescans (Joseph Szczypek) [1384611]
-- [scsi] hpsa: update check for logical volume status (Joseph Szczypek) [1384611]
-- [scsi] hpsa: remove coalescing settings for ioaccel2 (Joseph Szczypek) [1384611]
-- [scsi] hpsa: remove memory allocate failure message (Joseph Szczypek) [1384611]
-- [scsi] hpsa: fallback to use legacy REPORT PHYS command (Joseph Szczypek) [1384611]
-- [scsi] hpsa: use phN for short hex dumps (Joseph Szczypek) [1384611]
-- [scsi] hpsa: add 'ctlr_num' sysfs attribute (Joseph Szczypek) [1384611]
-- [scsi] hpsa: use correct DID_NO_CONNECT hostbyte (Joseph Szczypek) [1384611]
-- [scsi] hpsa: use bus '3' for legacy HBA devices (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct logical resets (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Remove unneeded void pointer cast (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct call to hpsa_do_reset (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct scsi 6byte lba calculation (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Check for null devices in ioaccel submission patch (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Prevent sending bmic commands to externals (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Check for vpd support before sending (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Check for null device pointers (Joseph Szczypek) [1384611]
-- [scsi] hpsa: Determine device external status earlier (Joseph Szczypek) [1384611]
-- [scsi] hpsa: change hpsa_passthru_ioctl timeout (Joseph Szczypek) [1384611]
-- [scsi] hpsa: update driver to 3.4.16-0-RH1 (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct handling of HBA device removal (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct ioaccel2 error procecssing (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct ioaccel state change operation (Joseph Szczypek) [1384611]
-- [scsi] hpsa: add timeouts for driver initiated commands (Joseph Szczypek) [1384611]
-- [scsi] hpsa: add sas_address to sysfs device attibute (Joseph Szczypek) [1384611]
-- [scsi] hpsa: correct initialization order issue (Joseph Szczypek) [1384611]
-- [scsi] hpsa: set the enclosure identifier to zero (Joseph Szczypek) [1384611]
-- [scsi] hpsa: remove function definition for sanitize_inquiry_string (Joseph Szczypek) [1384611]
-
-* Wed Mar 29 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-635.el7]
-- [infiniband] ib/hfi1: Process qp wait list in IRQ thread periodically (Don Dutile) [1382806 1417286]
-- [infiniband] ib/ipoib: Add destination address when re-queue packet (Don Dutile) [1417286]
-- [netdrv] mlx4_core: Use cq quota in SRIOV when creating completion EQs (Don Dutile) [1429188 1417286]
-- [uapi] rdma: Don't reference kernel private header from UAPI header (Don Dutile) [1385326 1417286]
-- [infiniband] ib/rxe: Fix mem_check_range integer overflow (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Fix resid update (Don Dutile) [1384574 1417286]
-- [netdrv] mlx4: Invoke softirqs after napi_reschedule (Don Dutile) [1417286]
-- [netdrv] mlx4: Fix memory leak after mlx4_en_update_priv() (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_core: Avoid command timeouts during VF driver device shutdown (Don Dutile) [1385329 1417286 1429188]
-- [netdrv] mlx5e: Check ets capability before ets query FW command (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Fix update of hash function/key via ethtool (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Modify TIRs hash only when it's needed (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: E-Switch, Re-enable RoCE on mode change only after FDB destroy (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: E-Switch, Err when retrieving steering name-space fails (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Return EOPNOTSUPP when failing to get steering name-space (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Change ENOTSUPP to EOPNOTSUPP (Don Dutile) [1385330 1417286]
-- [infiniband] rdma/cma: Fix unknown symbol when CONFIG_IPV6 is not enabled (Don Dutile) [1417286]
-- [infiniband] ib/rxe: Prevent from completer to operate on non valid QP (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Fix rxe dev insertion to rxe_dev_list (Don Dutile) [1384574 1417286]
-- [infiniband] ib/umem: Release pid in error and ODP flow (Don Dutile) [1417286]
-- [infiniband] rdma/qedr: Dispatch port active event from qedr_add (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Fix and simplify memory leak in PD alloc (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Fix RDMA CM loopback (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Fix formatting (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Mark three functions as static (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Don't reset QP when queues aren't flushed (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Don't spam dmesg if QP is in error state (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Remove CQ spinlock from CM completion handlers (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Return max inline data in QP query result (Don Dutile) [1275823 1417286]
-- [uapi] rdma/qedr: Add uapi header qedr-abi.h (Don Dutile) [1275823 1417286]
-- [infiniband] rdma/qedr: Fix MTU returned from QP query (Don Dutile) [1275823 1417286]
-- [rdma] core: Add the function ib_mtu_int_to_enum (Don Dutile) [1417286]
-- [uapi] ib/cxgb3: fix misspelling in header guard (Don Dutile) [1417286]
-- [infiniband] ib/iser: remove unused variable from iser_conn struct (Don Dutile) [1417286]
-- [infiniband] ib/iser: Fix sg_tablesize calculation (Don Dutile) [1417286]
-- [infiniband] ib/srp: fix invalid indirect_sg_entries parameter value (Don Dutile) [1417286]
-- [infiniband] ib/srp: fix mr allocation when the device supports sg gaps (Don Dutile) [1417286]
-- [netdrv] mlx5e: Do not recycle pages from emergency reserve (Don Dutile) [1385330 1417286]
-- [netdrv] qed: avoid possible stack overflow in qed_ll2_acquire_connection (Don Dutile) [1275823 1417286]
-- [netdrv] mlx5e: Remove unused variable (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Remove unnecessary checks when setting num channels (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4_en: Remove unnecessary checks when setting num channels (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_core: Eliminate warning messages for SRQ_LIMIT under SRIOV (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_core: Fix when to save some qp context flags for dynamic VST to VGT transitions (Don Dutile) [1385329 1417286 1429188]
-- [netdrv] mlx4_core: Fix racy CQ (Completion Queue) free (Don Dutile) [1385329 1417286 1429188]
-- [netdrv] mlx4: do not call napi_schedule() without care (Don Dutile) [1385329 1417286]
-- [net] svcrdma: avoid duplicate dma unmapping during error recovery (Don Dutile) [1417286]
-- [netdrv] mlx5: Only cancel recovery work when cleaning up device (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Remove WARN_ONCE from adaptive moderation code (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Un-register uplink representor on nic_disable (Don Dutile) [1385330 1417286]
-- [infiniband] iw_cxgb4: do not send RX_DATA_ACK CPLs after close/abort (Don Dutile) [1385866 1417286]
-- [infiniband] iw_cxgb4: free EQ queue memory on last deref (Don Dutile) [1417517 1385866 1417286]
-- [infiniband] iw_cxgb4: refactor sq/rq drain logic (Don Dutile) [1416914 1385866 1417286]
-- [kernel] mlx4_core: Fix raw qp flow steering rules under SRIOV (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_en: Fix type mismatch for 32-bit systems (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4: Remove BUG_ON from ICM allocation routine (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_en: Fix bad WQE issue (Don Dutile) [1385329 1417286 1429188]
-- [netdrv] mlx4_core: Use-after-free causes a resource leak in flow-steering detach (Don Dutile) [1385329 1417286]
-- [netdrv] mlx5e: Disable netdev after close (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Don't sync netdev state when not registered (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Check ets capability before initializing ets settings (Don Dutile) [1386547 1385330 1417286]
-- [kernel] revert "net/mlx5: Add MPCNT register infrastructure" (Don Dutile) [1385330 1417286]
-- [netdrv] revert "net/mlx5e: Expose PCIe statistics to ethtool" (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Prevent setting multicast macs for VFs (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Release FTE lock in error flow (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Mask destination mac value in ethtool steering rules (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Avoid shadowing numa_node (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Cancel recovery work in remove flow (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Check FW limitations on log_max_qp before setting it (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Disable RoCE on the e-switch management port under switchdev mode (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4_en: Fix user prio field in XDP forward (Don Dutile) [1385329 1417286]
-- [infiniband] ib/rxe: Don't check for null ptr in send() (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Drop future atomic/read packets rather than retrying (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Use BTH_PSN_MASK when ACKing duplicate sends (Don Dutile) [1384574 1417286]
-- [infiniband] qedr: Always notify the verb consumer of flushed CQEs (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: clear the vendor error field in the work completion (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: post_send/recv according to QP state (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: ignore inline flag in read verbs (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: modify QP state to error when destroying it (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: return correct value on modify qp (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: return error if destroy CQ failed (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: configure the number of CQEs on CQ creation (Don Dutile) [1275823 1417286]
-- [rdma] ib/cma: Fix a race condition in iboe_addr_get_sgid() (Don Dutile) [1417286]
-- [net] rds: use rb_entry() (Don Dutile) [1417286]
-- [netdrv] mlx5: use rb_entry() (Don Dutile) [1385330 1417286]
-- [infiniband] ib/rxe: Fix a memory leak in rxe_qp_cleanup() (Don Dutile) [1384574 1417286]
-- [netdrv] chelsio: cxgb3: use new api ethtool_{get|set}_link_ksettings (Don Dutile) [1417286]
-- [infiniband] ib/mlx4: fix improper return value (Don Dutile) [1385329 1417286]
-- [infiniband] ib/ocrdma: fix bad initialization (Don Dutile) [1385876 1417286]
-- [infiniband] nes: return value of skb_linearize should be handled (Don Dutile) [1417286]
-- [infiniband] ib/core: fix unmap_sg argument (Don Dutile) [1417286]
-- [infiniband] ib/mthca: Replace pci_pool_alloc by pci_pool_zalloc (Don Dutile) [1417286]
-- [infiniband] mlx5, calc_sq_size(): Make a debug message more informative (Don Dutile) [1385330 1417286]
-- [infiniband] mlx5: Remove a set-but-not-used variable (Don Dutile) [1385330 1417286]
-- [infiniband] mlx5: Use { } instead of { 0 } to init struct (Don Dutile) [1385330 1417286]
-- [infiniband] ib/srp: Make writing the add_target sysfs attr interruptible (Don Dutile) [1417286]
-- [infiniband] ib/srp: Make mapping failures easier to debug (Don Dutile) [1417286]
-- [infiniband] ib/srp: Make login failures easier to debug (Don Dutile) [1417286]
-- [infiniband] ib/srp: Introduce a local variable in srp_add_one() (Don Dutile) [1417286]
-- [infiniband] ib/multicast: Check ib_find_pkey() return value (Don Dutile) [1417286]
-- [infiniband] ipoib: Avoid reading an uninitialized member variable (Don Dutile) [1417286]
-- [infiniband] ib/mad: Fix an array index check (Don Dutile) [1417286]
-- [infiniband] ib/mlx4: Rework special QP creation error path (Don Dutile) [1385329 1417286]
-- [infiniband] ib/usnic: simplify IS_ERR_OR_NULL to IS_ERR (Don Dutile) [1417286]
-- [infiniband] ib/core: Issue DREQ when receiving REQ/REP for stale QP (Don Dutile) [1417286]
-- [infiniband] ib/nes: use new api ethtool_{get|set}_link_ksettings (Don Dutile) [1417286]
-- [infiniband] ib/isert: do not ignore errors in dma_map_single() (Don Dutile) [1417286]
-- [infiniband] rdma: fix buggy code that the compiler warns about (Don Dutile) [1385848 1417286]
-- [infiniband] ib/rdmavt: Avoid queuing work into a destroyed cq kthread worker (Don Dutile) [1385848 1417286]
-- [infiniband] ib/mlx5: avoid bogus -Wmaybe-uninitialized warning (Don Dutile) [1385330 1417286]
-- [uapi] rdma uapi: Use __kernel_sockaddr_storage (Don Dutile) [1417286]
-- [infiniband] ib_isert: log the connection reject message (Don Dutile) [1417286]
-- [net] rds_rdma: log the connection reject message (Don Dutile) [1417286]
-- [infiniband] ib_iser: log the connection reject message (Don Dutile) [1417286]
-- [rdma] rdma_cm: add rdma_consumer_reject_data helper function (Don Dutile) [1417286]
-- [rdma] rdma_cm: add rdma_is_consumer_reject() helper function (Don Dutile) [1417286]
-- [rdma] rdma_cm: add rdma_reject_msg() helper function (Don Dutile) [1417286]
-- [infiniband] qedr: remove pointless NULL check in qedr_post_send() (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: Use list_move_tail instead of list_del/list_add_tail (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: Fix possible memory leak in qedr_create_qp() (Don Dutile) [1275823 1417286]
-- [infiniband] qedr: return -EINVAL if pd is null and avoid null ptr dereference (Don Dutile) [1275823 1417286]
-- [rdma] ib/mad: Eliminate redundant SM class version defines for OPA (Don Dutile) [1417286]
-- [infiniband] ib/mlx5: Properly adjust rate limit on QP state transitions (Don Dutile) [1385326 1385330 1417286]
-- [uapi] ib/uverbs: Extend modify_qp and support packet pacing (Don Dutile) [1385326 1417286]
-- [rdma] ib/core: Support rate limit for packet pacing (Don Dutile) [1385326 1417286]
-- [uapi] ib/mlx5: Report mlx5 packet pacing capabilities when querying device (Don Dutile) [1385326 1385330 1417286]
-- [infiniband] ib/mlx5: Support RAW Ethernet when RoCE is disabled (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Rename RoCE related helpers to reflect being Eth ones (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Refactor registration to netdev notifier (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Use u64 for UMR length (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Avoid system crash when enabling many VFs (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Assign SRQ type earlier (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx4: Fix out-of-range array index in destroy qp flow (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx5: Make create/destroy_ah available to userspace (Don Dutile) [1385330 1417286]
-- [uapi] ib/mlx5: Use kernel driver to help userspace create ah (Don Dutile) [1385330 1417286]
-- [rdma] ib/core: Let create_ah return extended response to user (Don Dutile) [1417286]
-- [uapi] ib/mlx5: Report that device has udata response in create_ah (Don Dutile) [1385330 1417286]
-- [rdma] ib/core: Change ib_resolve_eth_dmac to use it in create AH (Don Dutile) [1417286]
-- [infiniband] ib/mlx5: Add support to match inner packet fields (Don Dutile) [1386703 1385330 1417286]
-- [rdma] ib/core: Introduce inner flow steering (Don Dutile) [1386703 1417286]
-- [infiniband] ib/mlx5: Support Vxlan tunneling specification (Don Dutile) [1385330 1417286]
-- [uapi] ib/uverbs: Add support for Vxlan protocol (Don Dutile) [1386703 1417286]
-- [rdma] ib/core: Align structure ib_flow_spec_type (Don Dutile) [1386703 1417286]
-- [rdma] ib/core: Add flow spec tunneling support (Don Dutile) [1386703 1417286]
-- [uapi] ib/mlx5: Add support for CQE compressing (Don Dutile) [1385330 1417286]
-- [uapi] ib/mlx5: Report mlx5 CQE compression caps during query (Don Dutile) [1385330 1417286]
-- [uapi] ib/mlx5: Report mlx5 multi packet WQE caps during query (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Report multi packet WQE capabilities (Don Dutile) [1385330 1417286]
-- [infiniband] ib/rxe: Increase max number of completions to 32k (Don Dutile) [1384574 1417286]
-- [infiniband] ib/mlx4: Check if GRH is available before using it (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: When no DMFS for IPoIB, don't allow NET_IF QPs (Don Dutile) [1385329 1417286]
-- [infiniband] ib/rxe: Hold refs when running tasklets (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Wait for tasklets to finish before tearing down QP (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Fix ref leak in duplicate_request() (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Fix ref leak in rxe_create_qp() (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Add support for IB_CQ_REPORT_MISSED_EVENTS (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Add support for zero-byte operations (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Unblock loopback by moving skb_out increment (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Don't update the response PSN unless it's going forwards (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Advance the consumer pointer before posting the CQE (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Remove buffer used for printing IP address (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Remove unneeded cast in rxe_srq_from_attr() (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Use DEFINE_SPINLOCK() for spinlock (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: avoid putting a large struct rxe_qp on stack (Don Dutile) [1384574 1417286]
-- [infiniband] ib/hfi1: Define platform_config_table_limits once (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: constify mmu_notifier_ops structure (Don Dutile) [1382806 1417286]
-- [rdma] ib/rdmavt, ib/hfi1, ib/qib: Add inlines for mtu division (Don Dutile) [1382806 1381986 1417286]
-- [infiniband] ib/hfi1, ib/qib: use rvt swqe mr deref helper (Don Dutile) [1382806 1381986 1417286]
-- [rdma] ib/rdmavt: Add swqe mr deref helper (Don Dutile) [1385848 1417286]
-- [infiniband] ib/hfi1: Avoid credit return allocation for cpu-less NUMA nodes (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1, ib/qib: Use new send completion helper (Don Dutile) [1382806 1381986 1417286]
-- [rdma] ib/rdmavt: Add a send completion helper (Don Dutile) [1385848 1417286]
-- [infiniband] ib/qib: Use standard refcount wrapper for QPs (Don Dutile) [1381986 1417286]
-- [infiniband] ib/hfi1: Use reference count wrapper for MRs (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Replace qp->refcount release code with standard driver wrapper (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Preserve external device completed bit (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Remove critical section gap in sc_buffer_alloc() (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Remove usage of qp->s_cur_sge (Don Dutile) [1382806 1417286]
-- [infiniband] ib/rdmavt: Add trace of MR segs (Don Dutile) [1385848 1417286]
-- [infiniband] ib/hfi1: Add special setting for low power AOC (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Remove definition of unused hfi1_affinity struct (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Remove dependence on qp->s_cur_size (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Show statistics counters under IB stats interface (Don Dutile) [1382806 1417286]
-- [infiniband] ib/rdmavt: Fix trace hierarchy (Don Dutile) [1385848 1417286]
-- [uapi] ib/hfi1: Disable header suppression for short packets (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Export 8051 memory and LCB registers via debugfs (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Use non-atomic __test_and_clear_bit in hot path (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Fix dc8051 multiple qword memory reads (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Read new EPROM format (Don Dutile) [1382806 1417286]
-- [netdrv] mlx5e: use pad format string for dma_addr_t (Don Dutile) [1385330 1417286]
-- [netdrv] cxgb4/cxgb4vf: Remove deprecated module parameters (Don Dutile) [1385866 1417286]
-- [infiniband] iw_cxgb4: Fix error return code in c4iw_rdev_open() (Don Dutile) [1385866 1417286]
-- [crypto] chcr - checking for IS_ERR() instead of NULL (Don Dutile) [1417286]
-- [netdrv] mlx4: use reset to set mac header (Don Dutile) [1385329 1417286]
-- [infiniband] remove WARN that is not kernel bug (Don Dutile) [1417286]
-- [infiniband] ib/ipoib: Remove and fix debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/isert: Remove and fix debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/rxe: Remove and fix debug prints after allocation failure (Don Dutile) [1384574 1417286]
-- [infiniband] ib/ocrdma: Remove and fix debug prints after allocation failure (Don Dutile) [1385876 1417286]
-- [infiniband] ib/usninc: Remove and fix debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/mthca: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/nes: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/qib: Remove debug prints after allocation failure (Don Dutile) [1381986 1417286]
-- [infiniband] ib/cxgb4: Remove debug prints after allocation failure (Don Dutile) [1385866 1417286]
-- [infiniband] ib/cxgb3: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/hfi1: Remove debug prints after allocation failure (Don Dutile) [1382806 1417286]
-- [infiniband] ib/mlx5: Remove debug prints after allocation failure (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx4: Remove debug prints after allocation failure (Don Dutile) [1385329 1417286]
-- [infiniband] ib/core: Release allocated memory in cache setup failure (Don Dutile) [1417286]
-- [infiniband] ib/core: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [infiniband] ib/mad: Remove debug prints after allocation failure (Don Dutile) [1417286]
-- [netdrv] mlx4: fix use-after-free in mlx4_en_fold_software_stats() (Don Dutile) [1385329 1417286]
-- [netdrv] mlx5e: Save the represntor netdevice as part of the representor (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: skip loopback selftest with !CONFIG_INET (Don Dutile) [1386660 1385330 1417286]
-- [netdrv] mlx5e: Create UMR MKey per RQ (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Move function mlx5e_create_umr_mkey (Don Dutile) [1385330 1417286]
-- [kernel] mlx5e: Implement Fragmented Work Queue (WQ) (Don Dutile) [1368400 1428349 1417286 1385330]
-- [net] svcrdma: Further clean-up of svc_rdma_get_inv_rkey() (Don Dutile) [1417286]
-- [net] svcrdma: Break up dprintk format in svc_rdma_accept() (Don Dutile) [1417286]
-- [net] svcrdma: Remove unused variable in rdma_copy_tail() (Don Dutile) [1417286]
-- [net] svcrdma: Remove unused variables in xprt_rdma_bc_allocate() (Don Dutile) [1417286]
-- [net] svcrdma: Remove svc_rdma_op_ctxt::wc_status (Don Dutile) [1417286]
-- [net] svcrdma: Remove DMA map accounting (Don Dutile) [1417286]
-- [net] svcrdma: Remove BH-disabled spin locking in svc_rdma_send() (Don Dutile) [1417286]
-- [net] svcrdma: Renovate sendto chunk list parsing (Don Dutile) [1417286]
-- [net] svcrdma: Clear xpt_bc_xps in xprt_setup_rdma_bc() error exit arm (Don Dutile) [1417286]
-- [netdrv] ethernet :mellanox :mlx5: Replace pci_pool_alloc by pci_pool_zalloc (Don Dutile) [1385330 1417286]
-- [netdrv] ethernet :mellanox :mlx4: Replace pci_pool_alloc by pci_pool_zalloc (Don Dutile) [1385329 1417286]
-- [kernel] pci: mm: add pci_pool_zalloc() call (Don Dutile) [1417286]
-- [crypto] chcr - Move tfm ctx variable to request context (Don Dutile) [1417286]
-- [crypto] chcr - Use SHASH_DESC_ON_STACK (Don Dutile) [1417286]
-- [crypto] chcr - Adjust Dest. buffer size (Don Dutile) [1417286]
-- [crypto] chcr - Calculate Reverse round key in setkey callback (Don Dutile) [1417286]
-- [crypto] chcr - Remove dynamic allocation (Don Dutile) [1417286]
-- [crypto] chcr - Fixes Unchecked dereference inside function (Don Dutile) [1417286]
-- [crypto] chcr - Added new structure chcr_wr (Don Dutile) [1417286]
-- [crypto] chcr - Cosmetic change (Don Dutile) [1417286]
-- [net] xprtrdma: Relocate connection helper functions (Don Dutile) [1417286]
-- [net] xprtrdma: Update dprintk in rpcrdma_count_chunks (Don Dutile) [1417286]
-- [net] xprtrdma: Shorten QP access error message (Don Dutile) [1417286]
-- [net] xprtrdma: Squelch "max send, max recv" messages at connect time (Don Dutile) [1417286]
-- [net] xprtrdma: Update documenting comment (Don Dutile) [1417286]
-- [net] xprtrdma: Refactor FRMR invalidation (Don Dutile) [1417286]
-- [net] xprtrdma: Avoid calls to ro_unmap_safe() (Don Dutile) [1417286]
-- [net] xprtrdma: Address coverity complaint about wait_for_completion() (Don Dutile) [1417286]
-- [net] xprtrdma: Support for SG_GAP devices (Don Dutile) [1417286]
-- [net] xprtrdma: Make FRWR send queue entry accounting more accurate (Don Dutile) [1417286]
-- [net] xprtrdma: Cap size of callback buffer resources (Don Dutile) [1417286]
-- [netdrv] mlx4: give precise rx/tx bytes/packets counters (Don Dutile) [1385329 1417286]
-- [scsi] srp_transport: Move queuecommand() wait code to SCSI core (Don Dutile) [1417286]
-- [netdrv] mlx5e: Add CQE compression user control (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Moves pflags to priv->params (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Add support for loopback selftest (Don Dutile) [1386660 1385330 1417286]
-- [netdrv] mlx5e: Add support for ethtool self diagnostics test (Don Dutile) [1386660 1385330 1417286]
-- [netdrv] mlx5e: Add DCBX control interface (Don Dutile) [1386547 1385330 1417286]
-- [netdrv] mlx5e: ConnectX-4 firmware support for DCBX (Don Dutile) [1386547 1385330 1417286]
-- [kernel] mlx5: Add DCBX firmware commands support (Don Dutile) [1386547 1385330 1417286]
-- [netdrv] mlx5e: Read ETS settings directly from firmware (Don Dutile) [1386547 1385330 1417286]
-- [kernel] mlx5e: Support DCBX CEE API (Don Dutile) [1386547 1385330 1417286]
-- [netdrv] mlx5e: Add qos capability check (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4: do not use priv->stats_lock in mlx4_en_auto_moderation() (Don Dutile) [1385329 1417286]
-- [netdrv] mlx5: remove a duplicate condition (Don Dutile) [1385330 1417286]
-- [netdrv] cxgb4: fix memory leak on txq_info (Don Dutile) [1385330 1385866 1417286]
-- [netdrv] mlx4: reorganize struct mlx4_en_tx_ring (Don Dutile) [1385330 1385329 1417286]
-- [netdrv] mlx5: E-Switch, Add control for inline mode (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Enable to query min inline for a specific vport (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Support VF vport link state control for SRIOV switchdev mode (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4: avoid unnecessary dirtying of critical fields (Don Dutile) [1385329 1417286]
-- [target] cxgb4: Allocate Tx queues dynamically (Don Dutile) [1385866 1417286]
-- [netdrv] mlx5e: Expose PCIe statistics to ethtool (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Add MPCNT register infrastructure (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Set driver version into firmware (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Set driver version infrastructure (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Add port module event counters to ethtool stats (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Add handling for port module event (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Port module event hardware structures (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Make the command interface cache more flexible (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4_core: Use device ID defines (Don Dutile) [1385329 1417286]
-- [kernel] pci: Add Mellanox device IDs (Don Dutile) [1387321 1417286]
-- [net] rds: tcp: Force every connection to be initiated by numerically smaller IP address (Don Dutile) [1417286]
-- [net] rds: tcp: Track peer's connection generation number (Don Dutile) [1417286]
-- [net] rds: tcp: set RDS_FLAG_RETRANSMITTED in cp_retrans list (Don Dutile) [1417286]
-- [netdrv] mlx5e: remove napi_hash_del() calls (Don Dutile) [1385330 1417286]
-- [netdrv] mlx4_en: remove napi_hash_del() call (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: Fix port query for 56Gb Ethernet links (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: Put non zero value in max_ah device attribute (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: Handle well-known-gid in mad_demux processing (Don Dutile) [1385329 1417286]
-- [rdma] ib/mlx4: Handle IPv4 header when demultiplexing MAD (Don Dutile) [1385329 1417286]
-- [infiniband] ib/mlx4: Set traffic class in AH (Don Dutile) [1385329 1417286]
-- [infiniband] ib/ipoib: Remove can't use GFP_NOIO warning (Don Dutile) [1362586 1417286]
-- [infiniband] ib/mlx5: Limit mkey page size to 2GB (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Fix reported max SGE calculation (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Wait for all async command completions to complete (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Put non zero value in max_ah (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Fix atomic cap in indirect UMR (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Replace numerical constant with predefined MACRO (Don Dutile) [1385330 1417286]
-- [infiniband] ib/core: Save QP in ib_flow structure (Don Dutile) [1417286]
-- [infiniband] ib/hfi1: Optimize pio_buf and send_context structs (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Get rid of divide in pio buffer allocator (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Add active channel and backplane support for integrated devices (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Optimize devdata cachelines (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Unify access to GUID entries (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Optimize pio cachelines (Don Dutile) [1382806 1417286]
-- [rdma] ib/rdmvat: Organize hot path calldowns into a single cacheline (Don Dutile) [1382806 1417286]
-- [rdma] ib/hfi1: Optimize lkey validation structures (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Inline sdma_txclean() for verbs pio (Don Dutile) [1382806 1417286]
-- [infiniband] ib/hfi1: Add unique txwait_lock for txreq events (Don Dutile) [1382806 1417286]
-- [netdrv] mlx5e: Add basic TC tunnel set action for SRIOV offloads (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5e: Add ndo_udp_tunnel_add to VF representors (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Support encap id when setting new steering entry (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Add creation flags when adding new flow table (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Check max encap header size capability (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Move alloc/dealloc encap commands declarations to common header file (Don Dutile) [1385330 1417286]
-- [net] rds: tcp: start multipath acceptor loop at 0 (Don Dutile) [1417286]
-- [net] rds: tcp: report addr/port info based on TCP socket in rds-info (Don Dutile) [1417286]
-- [scsi] replace custom approach to hexdump small buffers (Don Dutile) [1417286]
-- [netdrv] mlx4_en: Refactor the XDP forwarding rings scheme (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_en: add xdp forwarding and data write support (Don Dutile) [1385329 1417286]
-- [netdrv] mlx4_en: Add TX_XDP for CQ types (Don Dutile) [1385329 1417286]
-- [netdrv] mlx5e: Add tc support for FWD rule with counter (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Add option to add fwd rule with counter (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Add multi dest support (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Group similer rules under the same fte (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Refactor find_flow_rule (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Use fte status to decide on firmware command (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Don't unlock fte while still using it (Don Dutile) [1385330 1417286]
-- [netdrv] mlx5: Add SRIOV VF max rate configuration support (Don Dutile) [1386713 1385330 1417286]
-- [netdrv] mlx5: Introduce E-switch QoS management (Don Dutile) [1386713 1385330 1417286]
-- [kernel] mlx5: Introduce TSAR manipulation firmware commands (Don Dutile) [1386713 1385330 1417286]
-- [netdrv] mlx5: Add ConnectX-5 PCIe 4.0 VF device ID (Don Dutile) [1385330 1387321 1417286]
-- [netdrv] mlx5: Fix length of async_event_mask (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Ensure SRQ physical address structure endianness (Don Dutile) [1385330 1417286]
-- [kernel] mlx5: Update struct mlx5_ifc_xrqc_bits (Don Dutile) [1385330 1417286]
-- [infiniband] ib/mlx5: Skip handling unknown events (Don Dutile) [1385330 1417286]
-- [infiniband] ib/ipoib: Flip to new dev walk API (Don Dutile) [1417286]
-- [infiniband] ib/core: Flip to the new dev walk API (Don Dutile) [1417286]
-- [net] rds: Remove duplicate prefix from rds_conn_path_error use (Don Dutile) [1417286]
-- [net] rds: Remove unused rds_conn_error (Don Dutile) [1417286]
-- [infiniband] ib/rxe: Fix sending out loopback packet on netdev interface (Don Dutile) [1384574 1417286]
-- [infiniband] ib/rxe: Avoid scheduling tasklet for userspace QP (Don Dutile) [1384574 1417286]
-
-* Tue Mar 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-634.el7]
-- [net] pktgen: add needed include file (Ivan Vecera) [1382040]
-- [net] Add net-device param to the get offloaded stats ndo (Ivan Vecera) [1382040]
-- [net] core: Correctly iterate over lower adjacency list (Ivan Vecera) [1382040]
-- [net] switchdev: Execute bridge ndos only for bridge ports (Ivan Vecera) [1382040]
-- [net] Fix compilation error when CLS_ACT isn't set (Ivan Vecera) [1382040]
-- [net] Add couple of lower device helper functions (Ivan Vecera) [1382040]
-- [net] pktgen: fix UDP checksum computation (Ivan Vecera) [1382040]
-- [net] pktgen: Add UDPCSUM flag to support UDP checksums (Ivan Vecera) [1382040]
-- [net] devlink: Add E-Switch inline mode control (Ivan Vecera) [1382040]
-- [net] neigh: Fix netevent NETEVENT_DELAY_PROBE_TIME_UPDATE notification (Ivan Vecera) [1382040]
-- [net] sched: cls_matchall: Fix error path (Ivan Vecera) [1382040]
-- [net] sched: matchall: Fix configuration race (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Allow for consistent FIB dumping (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Convert FIB notification chain to be atomic (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Add fib_info_hold() helper (Ivan Vecera) [1382040]
-- [net] ipv4: fib: Export free_fib_info() (Ivan Vecera) [1382040]
-- [net] neigh: Send netevent after marking neigh as dead (Ivan Vecera) [1382040]
-- [net] sched: respect rcu grace period on cls destruction (Ivan Vecera) [1382040]
-- [net] fib: introduce FIB info offload flag helpers (Ivan Vecera) [1382040]
-- [net] fib: introduce FIB notification infrastructure (Ivan Vecera) [1382040]
-- [net] core: Add offload stats to if_stats_msg (Ivan Vecera) [1382040]
-- [net] netdevice: Add offload statistics ndo (Ivan Vecera) [1382040]
-- [net] sched: act_mirred: Add helper inlines to access tcf_mirred info. (Ivan Vecera) [1382040]
-- [net] sched: act_mirred: add helper inlines to access tcf_mirred info (Ivan Vecera) [1382040]
-- [net] sched: Add match-all classifier hw offloading. (Ivan Vecera) [1382040]
-- [net] sched: introduce Match-all classifier (Ivan Vecera) [1382040]
-- [kernel] devlink: fix trace format string (Ivan Vecera) [1382040]
-- [kernel] tracing: change owner name to driver name for devlink hwmsg tracepoint (Ivan Vecera) [1382040]
-- [net] devlink: add hardware messages tracing facility (Ivan Vecera) [1382040]
-- [net] neigh: Send a notification when DELAY_PROBE_TIME changes (Ivan Vecera) [1382040]
-- [kernel] list_nulls: fix missing header (Ivan Vecera) [1382040]
-- [net] gro: use min_t() in skb_gro_reset_offset() (Slava Shwartsman) [1371812]
-- [net] gro: Disable frag0 optimization on IPv6 ext headers (Slava Shwartsman) [1371812]
-- [net] gro: Enter slow-path if there is no tailroom (Slava Shwartsman) [1371812]
-- [scsi] be2iscsi: do not lock the session->lock spinlock twice (Maurizio Lombardi) [1436346]
-- [scsi] be2iscsi: Fix closing of connection (Maurizio Lombardi) [1394016]
-- [scsi] be2iscsi: Check tag in beiscsi_mccq_compl_wait (Maurizio Lombardi) [1394016]
-
-* Tue Mar 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-633.el7]
-- [tools] perf diff: Fix -o/--order option behavior (again) (Jiri Olsa) [1425612]
-- [tools] perf diff: Fix segfault on 'perf diff -o N' option (Jiri Olsa) [1425612]
-- [tools] perf ftrace: Add ftrace.tracer config option (Jiri Olsa) [1425612]
-- [tools] perf tools: Create for_each_event macro for tracepoints iteration (Jiri Olsa) [1425612]
-- [tools] tools lib api fs: Add bpf_fs filesystem detector (Jiri Olsa) [1425612]
-- [tools] tools perf util: Make rm_rf(path) argument const (Jiri Olsa) [1425612]
-- [tools] perf callchain: Reference count maps (Jiri Olsa) [1425612]
-- [tools] perf tools: Propagate perf_config() errors (Jiri Olsa) [1425612]
-- [tools] perf config: Do not consider an error not to have any perfconfig file (Jiri Olsa) [1425612]
-- [tools] perf ftrace: Remove needless code setting default tracer (Jiri Olsa) [1425612]
-- [tools] perf ftrace: Make 'function_graph' be the default tracer (Jiri Olsa) [1425612]
-- [tools] perf ftrace: Introduce new 'ftrace' tool (Jiri Olsa) [1425612]
-- [tools] perf util: Add more debug message on failure path (Jiri Olsa) [1425612]
-- [tools] perf util: Save pid-cmdline mapping into tracing header (Jiri Olsa) [1425612]
-- [tools] perf scripting perl: Do not die() when not founding event for a type (Jiri Olsa) [1425612]
-- [tools] perf probe: Delete an unnecessary assignment in try_to_find_absolute_address() (Jiri Olsa) [1425612]
-- [tools] perf probe: Delete an unnecessary check in try_to_find_absolute_address() (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix wrong register name for arm64 (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Coalesce by default only by pid, iaddr (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Display Total records column in offset view (Jiri Olsa) [1425612]
-- [tools] perf hists browser: Add e/c hotkeys to expand/collapse callchain for current entry (Jiri Olsa) [1425612]
-- [tools] perf hists browser: Put hist_entry folding logic into single function (Jiri Olsa) [1425612]
-- [tools] perf unwind: Fix looking up dwarf unwind stack info (Jiri Olsa) [1425612]
-- [tools] perf evlist: Fix typo in deliver_sample() (Jiri Olsa) [1425612]
-- [tools] perf tools: Move two variables usied in libperf from perf.c (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Show total wait times for summary (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add --state option (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Account thread wait time separately (Jiri Olsa) [1425612]
-- [tools] perf script: Also allow forcing reading of non-root owned files by root (Jiri Olsa) [1425612]
-- [tools] perf script: Fix man page about --dump-raw-trace option (Jiri Olsa) [1425612]
-- [tools] tools lib subcmd: Fix missing member name (Jiri Olsa) [1425612]
-- [tools] perf tools: Remove unneccessary feature-dwarf warning (Jiri Olsa) [1425612]
-- [tools] perf pmu: Factor out scale conversion code (Jiri Olsa) [1425612]
-- [tools] perf record: Add switch-output time option argument (Jiri Olsa) [1425612]
-- [tools] perf record: Add switch-output size warning (Jiri Olsa) [1425612]
-- [tools] perf record: Add switch-output size option argument (Jiri Olsa) [1425612]
-- [tools] perf record: Change switch-output option to take optional argument (Jiri Olsa) [1425612]
-- [tools] perf record: Add struct switch_output (Jiri Olsa) [1425612]
-- [tools] perf tools: Add unit_number__scnprintf function (Jiri Olsa) [1425612]
-- [tools] perf evlist: Fix typo in perf_evlist__start_workload() (Jiri Olsa) [1425612]
-- [tools] perf trace: Allow specifying list of syscalls and events in -e/--expr/--event (Jiri Olsa) [1425612]
-- [tools] perf kallsyms: Introduce tool to look for extended symbol information on the running kernel (Jiri Olsa) [1425612]
-- [tools] perf machine: Add a kallsyms loading constructor (Jiri Olsa) [1425612]
-- [tools] tools lib subcmd: Add missing linux/kernel.h include to subcmd.h (Jiri Olsa) [1425612]
-- [tools] perf jvmti: Create libdir directory before installing libperf-jvmti.so (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix to probe on gcc generated functions in modules (Jiri Olsa) [1425612]
-- [tools] perf probe: Add error checks to offline probe post-processing (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix to show correct locations for events on modules (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix to probe on gcc generated symbols for offline kernel (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix --funcs to show correct symbols for offline module (Jiri Olsa) [1425612]
-- [tools] perf symbols: Robustify reading of build-id from sysfs (Jiri Olsa) [1425612]
-- [tools] perf tools: Install tools/lib/traceevent plugins with install-bin (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Fix prev/next_prio for deadline tasks (Jiri Olsa) [1425612]
-- [tools] perf record: Fix --switch-output documentation and comment (Jiri Olsa) [1425612]
-- [tools] perf record: Make __record_options static (Jiri Olsa) [1425612]
-- [tools] tools lib subcmd: Add OPT_STRING_OPTARG_SET option (Jiri Olsa) [1425612]
-- [tools] perf probe: Fix to get correct modname from elf header (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Show total scheduling time (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Fix invalid period calculation (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Remove hardcoded 'comm_width' check at print_summary (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Enlarge default 'comm_width' (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Honour 'comm_width' when aligning the headers (Jiri Olsa) [1425612]
-- [tools] perf diff: Do not overwrite valid build id (Jiri Olsa) [1425612]
-- [tools] perf annotate: Don't throw error for zero length symbols (Jiri Olsa) [1425612]
-- [tools] perf bench futex: Fix lock-pi help string (Jiri Olsa) [1425612]
-- [tools] perf annotate: Fix jump target outside of function address range (Jiri Olsa) [1425612]
-- [tools] perf annotate: Support jump instruction with target as second operand (Jiri Olsa) [1425612]
-- [tools] perf record: Force ignore_missing_thread for uid option (Jiri Olsa) [1425612]
-- [tools] perf evsel: Allow to ignore missing pid (Jiri Olsa) [1425612]
-- [tools] perf thread_map: Add thread_map__remove function (Jiri Olsa) [1425612]
-- [tools] perf evsel: Use variable instead of repeating lengthy FD macro (Jiri Olsa) [1425612]
-- [tools] perf mem: Fix --all-user/--all-kernel options (Jiri Olsa) [1425612]
-- [tools] perf tools: Remove some needless __maybe_unused (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Show callchains for idle stat (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add -I/--idle-hist option (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Skip non-idle events when necessary (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Save callchain when entering idle (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Introduce struct idle_time_data (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Split is_idle_sample() (Jiri Olsa) [1425612]
-- [tools] perf tools: Move headers check into bash script (Jiri Olsa) [1425612]
-- [tools] make use of make variable CURDIR instead of calling pwd (Jiri Olsa) [1425612]
-- [tools] add more bitmap functions (Jiri Olsa) [1425612]
-- [tools] perf tools: Explicitly document that --children is enabled by default (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Cleanup idle_max_cpu handling (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Handle zero sample->tid properly (Jiri Olsa) [1425612]
-- [tools] perf callchain: Introduce callchain_cursor__copy() (Jiri Olsa) [1425612]
-- [tools] perf sched: Cleanup option processing (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Improve error message when analyzing wrong file (Jiri Olsa) [1425612]
-- [tools] perf tools: Move perf build related variables under non fixdep leg (Jiri Olsa) [1425612]
-- [tools] perf tools: Force fixdep compilation at the start of the build (Jiri Olsa) [1425612]
-- [tools] perf tools: Move PERF-VERSION-FILE target into rules area (Jiri Olsa) [1425612]
-- [tools] perf build: Check LLVM version in feature check (Jiri Olsa) [1425612]
-- [tools] perf annotate: Show raw form for jump instruction with indirect target (Jiri Olsa) [1425612]
-- [tools] perf tools: Add non config targets (Jiri Olsa) [1425612]
-- [tools] perf tools: Cleanup build directory before each test (Jiri Olsa) [1425612]
-- [tools] perf tools: Move python/perf.so target into rules area (Jiri Olsa) [1425612]
-- [tools] perf tools: Move install-gtk target into rules area (Jiri Olsa) [1425612]
-- [tools] tools build: Move tabs to spaces where suitable (Jiri Olsa) [1425612]
-- [tools] tools build: Make the .cmd file more readable (Jiri Olsa) [1425612]
-- [tools] perf build: Add clang and llvm compile and linking support (Jiri Olsa) [1425612]
-- [tools] tools build: Add feature detection for clang (Jiri Olsa) [1425612]
-- [tools] tools build: Add feature detection for LLVM (Jiri Olsa) [1425612]
-- [tools] perf tools: Pass context to perf hook functions (Jiri Olsa) [1425612]
-- [tools] tools build: Fix objtool build with clang (Jiri Olsa) [1425612]
-- [tools] tools build: Make fixdep parsing wait for last target (Jiri Olsa) [1425612]
-- [tools] perf annotate: AArch64 support (Jiri Olsa) [1425612]
-- [tools] perf annotate: Use arch->objdump.comment_char in dec__parse() (Jiri Olsa) [1425612]
-- [tools] perf report: Add option to specify time window of interest (Jiri Olsa) [1425612]
-- [tools] perf kmem: Add option to specify time window of interest (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add option to specify time window of interest (Jiri Olsa) [1425612]
-- [tools] perf script: Add option to specify time window of interest (Jiri Olsa) [1425612]
-- [tools] perf tools: Move parse_nsec_time to time-utils.c (Jiri Olsa) [1425612]
-- [tools] perf tools: Add time-based utility functions (Jiri Olsa) [1425612]
-- [tools] perf script: Add option to stop printing callchain (Jiri Olsa) [1425612]
-- [tools] perf kmem stat: Track memory freed (Jiri Olsa) [1425612]
-- [tools] perf test: Remove "test" and similar strings from test descriptions (Jiri Olsa) [1425612]
-- [tools] perf tools: Introduce perf hooks (Jiri Olsa) [1425612]
-- [tools] perf trace: Update tid/pid filtering option to leverage symbol_conf (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Handle cpu migration events (Jiri Olsa) [1425612]
-- [tools] perf annotate: Show invalid jump offset in error message (Jiri Olsa) [1425612]
-- [tools] perf ui helpline: Provide a printf variant (Jiri Olsa) [1425612]
-- [tools] perf tools: Add missing struct definition in probe_event.h (Jiri Olsa) [1425612]
-- [tools] perf record: Fix segfault when running with suid and kptr_restrict is 1 (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Enlarge max stack depth by 2 (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Mark schedule function in callchains (Jiri Olsa) [1425612]
-- [tools] perf callchain: Add option to skip ignore symbol when printing callchains (Jiri Olsa) [1425612]
-- [tools] perf annotate: Initial PowerPC support (Jiri Olsa) [1425612]
-- [tools] perf annotate: Improve support for ARM (Jiri Olsa) [1425612]
-- [tools] perf annotate: Allow arches to have a init routine and a priv area (Jiri Olsa) [1425612]
-- [tools] perf annotate: Introduce alternative method of keeping instructions table (Jiri Olsa) [1425612]
-- [tools] perf annotate: Remove duplicate 'name' field from disasm_line (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add -V/--cpu-visual option (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add call graph options (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add -w/--wakeups option (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Add summary options (Jiri Olsa) [1425612]
-- [tools] perf sched timehist: Introduce timehist command (Jiri Olsa) [1425612]
-- [tools] perf evsel: Support printing callchains with arrows (Jiri Olsa) [1425612]
-- [tools] perf symbols: Print symbol offsets conditionally (Jiri Olsa) [1425612]
-- [tools] perf c2c: Support cascading options (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Display total HITMs on default (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add struct c2c_stats::tot_hitm field (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add -f/--force option (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Setup browser after opening perf.data (Jiri Olsa) [1425612]
-- [tools] perf tools: Show event fd in debug output (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Add retrieval of preempt count and latency flags (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Use USECS_PER_SEC instead of hardcoded number (Jiri Olsa) [1425612]
-- [tools] perf annotate: Add per arch instructions annotate handlers (Jiri Olsa) [1425612]
-- [tools] perf annotate: Allow arches to specify functions to skip (Jiri Olsa) [1425612]
-- [tools] perf annotate: Start supporting cross arch annotation (Jiri Olsa) [1425612]
-- [tools] perf report: Show branch info in callchain entry for browser mode (Jiri Olsa) [1425612]
-- [tools] perf report: Show branch info in callchain entry for stdio mode (Jiri Olsa) [1425612]
-- [tools] perf report: Calculate and return the branch flag counting (Jiri Olsa) [1425612]
-- [tools] perf report: Create a symbol_conf flag for showing branch flag counting (Jiri Olsa) [1425612]
-- [tools] perf report: Add branch flag to callchain cursor node (Jiri Olsa) [1425612]
-- [tools] perf config: Mark where are config items from (user or system) (Jiri Olsa) [1425612]
-- [tools] perf config: Add support setting variables in a config file (Jiri Olsa) [1425612]
-- [tools] perf config: Validate config variable arguments before trying use them (Jiri Olsa) [1425612]
-- [tools] perf config: Add support for getting config key-value pairs (Jiri Olsa) [1425612]
-- [tools] perf kvmti: Remove unused Makefile file (Jiri Olsa) [1425612]
-- [tools] perf jvmti: Plug compilation into perf build (Jiri Olsa) [1425612]
-- [tools] tools build: Add jvmti feature detection support (Jiri Olsa) [1425612]
-- [tools] tools build: Add CFLAGS_REMOVE_* support (Jiri Olsa) [1425612]
-- [tools] perf intel-pt: Update documentation about context switch events (Jiri Olsa) [1425612]
-- [tools] perf callchain: Fixup help/config for no-unwinding (Jiri Olsa) [1425612]
-- [tools] perf tools: Add missing object file to the python binding linkage list (Jiri Olsa) [1425612]
-- [tools] perf scripting: Don't die if scripting can't be setup, disable it (Jiri Olsa) [1425612]
-- [tools] perf scripting: Avoid leaking the scripting_context variable (Jiri Olsa) [1425612]
-- [tools] Update asm-generic/mman-common.h copy from the kernel (Jiri Olsa) [1425612]
-- [tools] perf list: Support matching by topic (Jiri Olsa) [1425612]
-- [tools] perf tools: Introduce timestamp__scnprintf_usec() (Jiri Olsa) [1425612]
-- [tools] perf sched map: Always show task comm with -v (Jiri Olsa) [1425612]
-- [tools] perf sched map: Apply cpu color when there's an activity (Jiri Olsa) [1425612]
-- [tools] perf sched: Make common options cascading (Jiri Olsa) [1425612]
-- [tools] tools lib subcmd: Suppport cascading options (Jiri Olsa) [1425612]
-- [tools] perf bench futex: Sanitize numeric parameters (Jiri Olsa) [1425612]
-- [tools] perf bench futex: Avoid worker cacheline bouncing (Jiri Olsa) [1425612]
-- [tools] perf list: Make vendor event matching case insensitive (Jiri Olsa) [1425612]
-- [tools] perf trace: Use the syscall raw_syscalls:sys_enter timestamp (Jiri Olsa) [1425612]
-- [tools] perf trace: Remove thread_trace->exit_time (Jiri Olsa) [1425612]
-- [tools] perf bench futex: Cache align the worker struct (Jiri Olsa) [1425612]
-- [tools] perf tools: Use normal error reporting when processing PERF_RECORD_READ events (Jiri Olsa) [1425612]
-- [tools] perf tools: Normalize sq_quote_argv() error reporting (Jiri Olsa) [1425612]
-- [tools] perf bench mem: Move boilerplate memory allocation to the infrastructure (Jiri Olsa) [1425612]
-- [tools] perf trace: Implement --delay (Jiri Olsa) [1425612]
-- [tools] perf hists browser: Dynamically change verbosity level (Jiri Olsa) [1425612]
-- [tools] perf pmu: Only print Using CPUID message once (Jiri Olsa) [1425612]
-- [tools] perf jit: Add jitdump format specification document (Jiri Olsa) [1425612]
-- [tools] perf jit: Check JITHEADER_VERSION (Jiri Olsa) [1425612]
-- [tools] perf jit: Generate .eh_frame/.eh_frame_hdr in DSO (Jiri Olsa) [1425612]
-- [tools] perf jit: Add unwinding support (Jiri Olsa) [1425612]
-- [tools] perf jit: Do not assume pgoff is zero (Jiri Olsa) [1425612]
-- [tools] perf jit: Make perf skip unknown records (Jiri Olsa) [1425612]
-- [tools] perf jit: Remove unecessary padding in jitdump file (Jiri Olsa) [1425612]
-- [tools] perf jit: Enable jitdump support without dwarf (Jiri Olsa) [1425612]
-- [tools] perf jit: Improve error messages from JVMTI (Jiri Olsa) [1425612]
-- [tools] perf jit: Add NT_GNU_BUILD_ID definition for older distros (Jiri Olsa) [1425612]
-- [tools] perf jit: Avoid returning garbage for a ret variable (Jiri Olsa) [1425612]
-- [tools] perf tools: Implement branch_type event parameter (Jiri Olsa) [1425612]
-- [tools] perf record: Improve documentation of event parameters (Jiri Olsa) [1425612]
-- [tools] perf header: Display feature name on write failure (Jiri Olsa) [1425612]
-- [tools] perf header: Display missing features (Jiri Olsa) [1425612]
-- [tools] perf report: Move captured info to generic header info (Jiri Olsa) [1425612]
-- [tools] tools lib: Add for_each_clear_bit macro (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Add version for traceevent shared object (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Rename LIB_FILE to LIB_TARGET (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Add do_install_mkdir Makefile function (Jiri Olsa) [1425612]
-- [tools] tools lib traceevent: Add install_headers target (Jiri Olsa) [1425612]
-- [tools] perf script: Support insn and insnlen (Jiri Olsa) [1425612]
-- [tools] perf intel-pt/bts: Report instruction bytes and length in sample (Jiri Olsa) [1425612]
-- [tools] perf intel-pt/bts: Tidy instruction buffer size usage (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add --show-all option (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add --no-source option (Jiri Olsa) [1425612]
-- [tools] perf c2c: Add man page and credits (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add help windows (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Iterate node display in browser (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add support to manage symbol name length (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add cacheline index entry (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Recalc width of global sort entries (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Allow to set cacheline sort fields (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add support to choose local HITMs (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Limit the cachelines table entries (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Allow to report callchains (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add c2c related stats stdio output (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add shared cachelines stats stdio output (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add global stats stdio output (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add TUI cacheline browser (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add main TUI browser (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add stdio output support (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Set final resort fields (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Setup number of header lines for hists (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add src line sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'cpucnt' sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add stats related sort keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'node' sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'symbol' and 'dso' sort keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'tid' sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'pid' sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add dram related sort keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add hitm/store percent related sort keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add hitm percent sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add total loads sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add total record sort key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add llc load miss dimension key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add llc and remote loads related dimension keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add loads related dimension keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add stores related dimension keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add hitm related dimension keys (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'iaddr' dimension key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'offset' dimension key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add 'dcacheline' dimension key (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add header macros (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Decode c2c_stats for hist entries (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add cacheline hists processing (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add sample processing (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Fallback to standard dimensions (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add sort_entry dimension support (Jiri Olsa) [1425612]
-- [tools] perf c2c report: Add dimension support (Jiri Olsa) [1425612]
-- [tools] perf c2c: Add report subcommand (Jiri Olsa) [1425612]
-- [tools] perf c2c: Add record subcommand (Jiri Olsa) [1425612]
-- [tools] perf c2c: Add c2c command (Jiri Olsa) [1425612]
-- [tools] perf c2c: Introduce c2c_add_stats function (Jiri Olsa) [1425612]
-- [tools] perf c2c: Introduce c2c_decode_stats function (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Support couple more POWER8 PVRs in mapfile (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add power8 PMU events (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add WestmereEX V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add WestmereEP-SP V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add WestmereEP-DP V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add SandyBridge V15 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Silvermont V13 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Skylake V24 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add NehalemEX V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add NehalemEP V2 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add KnightsLanding V9 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Jaketown V20 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add IvyTown V19 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add IvyBridge V18 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add HaswellX V17 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Haswell V24 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Goldmont V8 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Bonnell V4 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add BroadwellX V10 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add Broadwell V17 event file (Jiri Olsa) [1425612]
-- [tools] perf vendor events: Add BroadwellDE V5 event file (Jiri Olsa) [1425612]
-- [x86] perf/x86/intel/pt: Add format strings for PTWRITE and power event tracing (Jiri Olsa) [1425612]
-- [kernel] perf/core: Try parent PMU first when initializing a child event (Jiri Olsa) [1425612]
-- [kernel] perf/core: Optimize event rescheduling on active contexts (Jiri Olsa) [1425612]
-- [kernel] perf/core: Don't re-schedule CPU flexible events needlessly (Jiri Olsa) [1425612]
-- [kernel] perf/core: Fix PERF_RECORD_MMAP2 prot/flags for anonymous memory (Jiri Olsa) [1425612]
-- [kernel] perf/core: Fix use-after-free bug (Jiri Olsa) [1425612]
-- [x86] perf/x86/intel: Handle exclusive threadid correctly on CPU hotplug (Jiri Olsa) [1425612]
-- [x86] perf/x86: Reject non sampling events with precise_ip (Jiri Olsa) [1425612]
-- [kernel] perf/x86/intel: Account interrupts for PEBS errors (Jiri Olsa) [1425612]
-- [kernel] perf/core: Fix sys_perf_event_open() vs. hotplug (Jiri Olsa) [1425612]
-- [x86] perf/x86/intel: Use ULL constant to prevent undefined shift behaviour (Jiri Olsa) [1425612]
-- [x86] perf/x86: Fix overlap counter scheduling bug (Jiri Olsa) [1425612]
-- [x86] perf/x86/pebs: Fix handling of PEBS buffer overflows (Jiri Olsa) [1425612]
-- [tools] hw_breakpoint: Allow watchpoint of length 3, 5, 6 and 7 (Jiri Olsa) [1425612]
-- [x86] perf/x86: Fix exclusion of BTS and LBR for Goldmont (Jiri Olsa) [1425612]
-
-* Mon Mar 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-632.el7]
-- [crypto] tcrypt - Add new mode for sha512_mb (Herbert Xu) [1379518]
-- [crypto] sha512-mb - Crypto computation (x4 AVX2) (Herbert Xu) [1379518]
-- [crypto] sha512-mb - Algorithm data structures (Herbert Xu) [1379518]
-- [crypto] sha512-mb - submit/flush routines for AVX2 (Herbert Xu) [1379518]
-- [crypto] sha512-mb - Enable SHA512 multibuffer support (Herbert Xu) [1379518]
-- [crypto] sha512-mb - SHA512 multibuffer job manager and glue code (Herbert Xu) [1379518]
-- [crypto] tcrypt - Add speed tests for SHA multibuffer algorithms (Herbert Xu) [1379518]
-- [crypto] sha256-mb - Crypto computation (x8 AVX2) (Herbert Xu) [1379518]
-- [crypto] sha256-mb - Algorithm data structures (Herbert Xu) [1379518]
-- [crypto] sha256-mb - submit/flush routines for AVX2 (Herbert Xu) [1379518]
-- [crypto] sha256-mb - Enable multibuffer support (Herbert Xu) [1379518]
-- [crypto] sha256-mb - SHA256 multibuffer job manager and glue code (Herbert Xu) [1379518]
-- [crypto] sha1-mb - async implementation for sha1-mb (Herbert Xu) [1379518]
-- [crypto] sha1-mb - stylistic cleanup (Herbert Xu) [1379518]
-- [crypto] sha-mb - Fix load failure (Herbert Xu) [1379518]
-- [crypto] mcryptd - Fix load failure (Herbert Xu) [1379518]
-- [crypto] sha-mb - mark Multi buffer SHA1 helper cipher (Herbert Xu) [1379518]
-- [crypto] tcrypt - print cra driver name in tcrypt tests output (Herbert Xu) [1379518]
-- [crypto] tcrypt - Added speed tests for AEAD crypto alogrithms in tcrypt test suite (Herbert Xu) [1379518]
-- [crypto] jitterentropy - drop duplicate header module.h (Herbert Xu) [1270982]
-- [crypto] jitterentropy - use ktime_get_ns as fallback (Herbert Xu) [1270982]
-- [crypto] jitterentropy - remove unnecessary information from a comment (Herbert Xu) [1270982]
-- [crypto] jitterentropy - use safe format string parameters (Herbert Xu) [1270982]
-- [crypto] jitterentropy - Delete unnecessary checks before the function call "kzfree" (Herbert Xu) [1270982]
-- [crypto] jitterentropy - avoid compiler warnings (Herbert Xu) [1270982]
-- [crypto] drbg - use pragmas for disabling optimization (Herbert Xu) [1270982]
-- [crypto] jitterentropy - remove timekeeping_valid_for_hres (Herbert Xu) [1270982]
-- [crypto] jitterentropy - add jitterentropy RNG (Herbert Xu) [1270982]
-- [crypto] algif_rng - zeroize buffer with random data (Herbert Xu) [1270982]
-- [crypto] algif_rng - fix sparse non static symbol warning (Herbert Xu) [1270982]
-- [crypto] algif_rng - enable RNG interface compilation (Herbert Xu) [1270982]
-- [crypto] algif_rng - add random number generator support (Herbert Xu) [1270982]
-- [crypto] fips - allow tests to be disabled in FIPS mode (Herbert Xu) [1314179]
-- [crypto] xts - fix compile errors (Herbert Xu) [1314179]
-- [crypto] xts - consolidate sanity check for keys (Herbert Xu) [1314179]
-- [crypto] memneq - fix for archs without efficient unaligned access (Herbert Xu) [1314179]
-- [crypto] more robust crypto_memneq (Herbert Xu) [1314179]
-- [crypto] crypto_memneq - add equality testing of memory regions w/o timing leaks (Herbert Xu) [1314179]
-- [crypto] testmgr - Fix GCM test vector IV overrun (Herbert Xu) [1386657]
-- [crypto] qat - Fix DMA on stack memory (Herbert Xu) [1364724]
-- [crypto] algif_hash - Only export and import on sockets with data (Herbert Xu) [1387632] {CVE-2016-8646}
-
-* Mon Mar 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-631.el7]
-- [fs] userfaultfd: remove wrong comment from userfaultfd_ctx_get() (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: use __SetPageSwapBacked in shmem_mcopy_atomic_pte() (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: userfaultfd_remove revalidate vma in MADV_DONTNEED (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: fix fork fctx->new memleak (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: shmem: __do_fault requires VM_FAULT_NOPAGE (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: release all ctx in dup_userfaultfd_complete (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: robustness check (Andrea Arcangeli) [1373606]
-- [kernel] userfaultfd: non-cooperative: rollback userfaultfd_exit (Andrea Arcangeli) [1373606]
-- [documentation] userfaultfd: documentation update (Andrea Arcangeli) [1373606]
-- [fs] scripts/spelling.txt: add "an user" pattern and fix typo instances (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd_copy: return -ENOSPC in case mm has gone (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: mcopy_atomic: return -ENOENT when no compatible VMA found (Andrea Arcangeli) [1373606]
-- [kernel] userfaultfd: non-cooperative: add event for exit() notification (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add event for memory unmap to mm/fremap.c (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add event for memory unmaps (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: rename *EVENT_MADVDONTNEED to *EVENT_REMOVE (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add madvise() event for MADV_REMOVE request (Andrea Arcangeli) [1373606]
-- [mm] mprotect: use pmd_trans_unstable instead of taking the pmd_lock (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: backport build fixes (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add UFFDIO_COPY support for shared mappings (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: hugetlbfs: UFFD_FEATURE_MISSING_SHMEM (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: backport build fixes (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: avoid a lockup resulting from corrupted page->flags (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: avoid leaking blocks and used blocks in UFFDIO_COPY (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: lock the page before adding it to pagecache (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: shmem: allow registration of shared memory ranges (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: add userfaultfd hook for shared memory faults (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: use shmem_mcopy_atomic_pte for shared memory (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: introduce vma_is_shmem (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: shmem: add shmem_mcopy_atomic_pte for userfaultfd support (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: introduce vma_can_userfault (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: hugetlbfs: UFFD_FEATURE_MISSING_HUGETLBFS (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: reserve count on error in __mcopy_atomic_hugetlb (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: gup: support VM_FAULT_RETRY (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: hugetlbfs: userfaultfd_huge_must_wait for hugepmd ranges (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: hugetlbfs: allow registration of ranges containing huge pages (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add userfaultfd hugetlb hook (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: fix __mcopy_atomic_hugetlb retry/error processing (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add __mcopy_atomic_hugetlb for huge page UFFDIO_COPY (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add hugetlb_mcopy_atomic_pte for userfaultfd support (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: hugetlbfs: add copy_huge_page_from_user for hugetlb userfaultfd support (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: wake userfaults after UFFDIO_UNREGISTER (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: avoid MADV_DONTNEED race condition (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add madvise() event for MADV_DONTNEED request (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: optimize mremap_userfaultfd_complete() (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: non-cooperative: add mremap() event (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: dup_userfaultfd: use mm_count instead of mm_users (Andrea Arcangeli) [1373606]
-- [kernel] userfaultfd: non-cooperative: Add fork() event (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: report all available features to userland (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: add ability to report non-PF events from uffd descriptor (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: non-cooperative: Split the find_userfault() routine (Andrea Arcangeli) [1373606]
-- [mm] userfaultfd: use vma_is_anonymous (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: convert BUG() to WARN_ON_ONCE() (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: correct comment about UFFD_FEATURE_PAGEFAULT_FLAG_WP (Andrea Arcangeli) [1373606]
-- [uapi] userfaultfd: document _IOR/_IOW (Andrea Arcangeli) [1373606]
-- [mm] introduce vma_is_anonymous(vma) helper (Andrea Arcangeli) [1373606]
-- [fs] userfaultfd: fix SIGBUS resulting from false rwsem wakeups (Andrea Arcangeli) [1373606]
-
-* Mon Mar 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-630.el7]
-- [mm] hugetlb.c: fix reservation race when freeing surplus pages (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: use huge_pte_lock instead of opencoding the lock (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: use the right pte val for compare in hugetlb_cow (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix huge page reservation leak in private mapping error paths (Andrea Arcangeli) [1430172]
-- [mm] remove unnecessary condition in remove_inode_hugepages (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: improve locking in dissolve_free_huge_pages() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: check for reserved hugepages during memory offline (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix memory offline with hugepage size > memory block size (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix incorrect hugepages count during mem hotplug (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix huge_pte_alloc BUG_ON (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: avoid soft lockup in set_max_huge_pages() (Andrea Arcangeli) [1430172]
-- [mm] hwpoison: remove incorrect comments (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: simplify hugetlb unmap (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix huge page reserve accounting for private mappings (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: add same zone check in pfn_range_valid_gigantic() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: use first_memory_node (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: introduce hugetlb_bad_size() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: optimize minimum size (min_size) accounting (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: hugetlb_no_page: rate-limit warning message (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: fix incorrect proc nr_hugepages value (Andrea Arcangeli) [1430172]
-- [fs] hugetlbfs: unmap pages if page fault raced with hole punch update locking (Andrea Arcangeli) [1430172]
-- [fs] mm/hugetlbfs: unmap pages if page fault raced with hole punch (Andrea Arcangeli) [1430172]
-- [fs] hugetlbfs/inode.c: fix bugs in hugetlb_vmtruncate_list() (Andrea Arcangeli) [1430172]
-- [mm] fix locking order in mm_take_all_locks() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: fix resv map memory leak for placeholder entries (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix hugepage memory leak caused by wrong reserve count (Andrea Arcangeli) [1430172]
-- [fs] mm/hugetlbfs: fix bugs in fallocate hole punch of areas with holes (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: trivial comment fix (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: optimize when NUMA=n (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: use memory policy when available (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: make node_hstates array static (Andrea Arcangeli) [1430172]
-- [fs] hugetlbfs: add hugetlbfs_fallocate() update locking (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: add hugetlbfs_fallocate() (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: New huge_add_to_page_cache helper routine (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: alloc_huge_page handle areas hole punched by fallocate (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: vma_has_reserves() needs to handle fallocate hole punch (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: truncate_hugepages() takes a range of pages (Andrea Arcangeli) [1430172]
-- [fs] hugetlbfs: hugetlb_vmtruncate_list() needs to take a range to delete (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: expose hugetlb fault mutex for use by fallocate (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: add region_del() to delete a specific range of entries (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: add cache of descriptors to resv_map for region_add (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: compute/return the number of regions added by region_add() (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: make vma_has_reserves() return bool (Andrea Arcangeli) [1430172]
-- [mm] hugetlb.c: make vma_shareable() return bool (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: handle races in alloc_huge_page and hugetlb_reserve_pages (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: document the reserve map/region tracking routines (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: introduce minimum hugepage order (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: accept subpool min_size mount option and setup accordingly (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: add minimum size accounting to subpools (Andrea Arcangeli) [1430172]
-- [mm] hugetlbfs: add minimum size tracking fields to subpool structure (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: abort __get_user_pages if current has been oom killed (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: close race when setting PageTail for gigantic pages (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: fix type of hugetlb_treat_as_movable variable (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: move the error handle logic out of normal code path (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: use vma_resv_map() map types (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: remove resv_map_put (Andrea Arcangeli) [1430172]
-- [mm] hugetlb: use already existing interface huge_page_shift (Andrea Arcangeli) [1430172]
-
-* Mon Mar 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-629.el7]
-- [lib] locking/rwsem: Fix rwsem kABI issues (Waiman Long) [1416924]
-- [lib] locking/rwsem: Scan the wait_list for readers only once (Waiman Long) [1416924]
-- [lib] locking/rwsem: Return void in __rwsem_mark_wake() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Streamline the rwsem_optimistic_spin() code (Waiman Long) [1416924]
-- [lib] locking/rwsem: Improve reader wakeup code (Waiman Long) [1416924]
-- [kernel] locking/rwsem: Protect all writes to owner by WRITE_ONCE() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Add reader-owned state to the owner field (Waiman Long) [1416924]
-- [asm-generic] locking/rwsem: Remove rwsem_atomic_add() and rwsem_atomic_update() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Convert sem->count to 'atomic_long_t' (Waiman Long) [1416924]
-- [lib] locking/rwsem: Optimize write lock by reducing operations in slowpath (Waiman Long) [1416924]
-- [lib] locking/rwsem: Rework zeroing reader waiter->task (Waiman Long) [1416924]
-- [lib] locking/rwsem: Enable lockless waiter wakeup(s) (Waiman Long) [1416924]
-- [lib] locking/rwsem: Reduce spinlock contention in wakeup after up_read()/up_write() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Fix lock optimistic spinning when owner is not running (Waiman Long) [1416924]
-- [lib] locking: Remove ACCESS_ONCE() usage (Waiman Long) [1416924]
-- [lib] locking/rwsem: Check for active lock before bailing on spinning (Waiman Long) [1416924]
-- [lib] locking/rwsem: Avoid deceiving lock spinners (Waiman Long) [1416924]
-- [lib] locking/rwsem: Set lock ownership ASAP (Waiman Long) [1416924]
-- [lib] locking/rwsem: Document barrier need when waking tasks (Waiman Long) [1416924]
-- [lib] locking/rwsem: Use task->state helpers (Waiman Long) [1416924]
-- [kernel] locking/mcs: Better differentiate between MCS variants (Waiman Long) [1416924]
-- [lib] locking/rwsem: Avoid double checking before try acquiring write lock (Waiman Long) [1416924]
-- [lib] locking/rwsem: Move EXPORT_SYMBOL() lines to follow function definition (Waiman Long) [1416924]
-- [lib] locking/rwsem: Add CONFIG_RWSEM_SPIN_ON_OWNER (Waiman Long) [1416924]
-- [kernel] locking/rwsem: Reduce the size of struct rw_semaphore (Waiman Long) [1416924]
-- [kernel] locking/spinlocks/mcs: Micro-optimize osq_unlock() (Waiman Long) [1416924]
-- [lib] locking/spinlocks/mcs: Introduce and use init macro and function for osq locks (Waiman Long) [1416924]
-- [lib] locking/spinlocks/mcs: Convert osq lock to atomic_t to reduce overhead (Waiman Long) [1416924]
-- [kernel] locking/spinlocks/mcs: Rename optimistic_spin_queue() to optimistic_spin_node() (Waiman Long) [1416924]
-- [lib] locking/rwsem: Allow conservative optimistic spinning when readers have lock (Waiman Long) [1416924]
-- [lib] locking/rwsem: Fix checkpatch.pl warnings (Waiman Long) [1416924]
-- [kernel] locking/rwsem: Fix warnings for CONFIG_RWSEM_GENERIC_SPINLOCK (Waiman Long) [1416924]
-- [lib] locking/rwsem: Support optimistic spinning (Waiman Long) [1416924]
-- [lib] rwsem: Add comments to explain the meaning of the rwsem's count field (Waiman Long) [1416924]
-- [lib] asmlinkage: Mark rwsem functions that can be called from assembler asmlinkage (Waiman Long) [1416924]
-
-* Fri Mar 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-628.el7]
-- [md] dm cache metadata: fix metadata2 format's blocks_are_clean_separate_dirty (Mike Snitzer) [1434155]
-- [pci] hv: Use device serial number as PCI domain (Vitaly Kuznetsov) [1429743]
-- [pci] hv: Fix wslot_to_devfn() to fix warnings on device removal (Vitaly Kuznetsov) [1429743]
-- [net] bridge: netlink: call br_changelink() during br_dev_newlink() (Ivan Vecera) [1433293]
-- [net] Reduce queue allocation to one in kdump kernel (Sai Vemuri) [1379762]
-- [net] sched: Reflect HW offload status (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: be more strict about skip-sw flag (Ivan Vecera) [1390693]
-- [net] sched: fix a typo in tc_for_each_action() (Ivan Vecera) [1390693]
-- [net] sched: act_gact: Update statistics when offloaded to hardware (Ivan Vecera) [1390693]
-- [net] sched: Enable netdev drivers to update statistics of offloaded actions (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: Add support for skip-sw flag to tc u32 classifier. (Ivan Vecera) [1390693]
-- [net] sched: Move TCA_CLS_FLAGS_SKIP_HW to uapi header file. (Ivan Vecera) [1390693]
-- [net] sched: act_skbedit: Utility functions for mark action (Ivan Vecera) [1390693]
-- [net] sched: Macro instead of CONFIG_NET_CLS_ACT ifdef (Ivan Vecera) [1390693]
-- [net] sched: cls_u32 add bit to specify software only rules (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: move TC offload feature bit into cls_u32 offload logic (Ivan Vecera) [1390693]
-- [net] sched: consolidate offload decision in cls_u32 (Ivan Vecera) [1390693]
-- [net] sched: tc: helper functions to query action types (Ivan Vecera) [1390693]
-- [net] sched: add cls_u32 offload hooks for netdevs (Ivan Vecera) [1390693]
-- [net] sched: avoid calling tcf_unbind_filter() in call_rcu callback (Ivan Vecera) [1390693]
-- [net] sched: cls_u32 changes to knode must appear atomic to readers (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: fix missed pcpu_success free_percpu (Ivan Vecera) [1390693]
-- [net] sched: cls_u32: add missing rcu_assign_pointer and annotation (Ivan Vecera) [1390693]
-- [x86] platform/uv/bau: Fix HUB errors by remove initial write to sw-ack register (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Implement uv4_wait_completion with read_status (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Add wait_completion to bau_operations (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Add status mmr location fields to bau_control (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Cleanup bau_operations declaration and instances (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Add payload descriptor qualifier (Frank Ramsay) [1422564]
-- [x86] platform/uv/bau: Add uv_bau_version enumerated constants (Frank Ramsay) [1422564]
-- [x86] platform: Remove warning message for duplicate NMI handlers (Frank Ramsay) [1433021]
-- [s390] vmlogrdr: fix IUCV buffer allocation (Hendrik Brueckner) [1431699]
-- [s390] dcssblk: fix device size calculation in dcssblk_direct_access() (Hendrik Brueckner) [1431700]
-- [tools] power turbostat: Support Knights Mill (KNM) (Steve Best) [1381293]
-- [vhost] lockless enqueuing (Wei Xu) [1401436]
-- [vhost] simplify work flushing (Wei Xu) [1401436]
-- [netdrv] i40e: don't add more vectors to num_lan_msix than number of CPUs (Stefan Assmann) [1396127]
-- [netdrv] bonding: add 802.3ad support for 25G speeds (Jarod Wilson) [1431202]
-- [powercap] rapl: Add Knights Mill CPUID (Steve Best) [1381291]
-- [wireless] Update rt2x00 driver to work with cfg80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Update mwifiex driver to compile with cfg80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Update brcmfmac driver to compile with cfg80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Update iwlegacy driver to compile with cfg80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Backport iwlwifi driver from linux-4.11-rc1 (Stanislaw Gruszka) [1387986 1385917 1385746 1351045 1421597]
-- [wireless] Backport wil6210 driver from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Backport ath10k driver from linux-4.11-rc1 (Stanislaw Gruszka) [1385738 1351053 1351049 1421597]
-- [wireless] Backport ath9k driver from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Backport net/mac80211 from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-- [wireless] Backport net/wireless from linux-4.11-rc1 (Stanislaw Gruszka) [1421597]
-
-* Fri Mar 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-627.el7]
-- [staging] usbip: remove staged driver (Torez Smith) [1383823]
-- [netdrv] sierra_net: Skip validating irrelevant fields for IDLE LSIs (Torez Smith) [1383823]
-- [netdrv] sierra_net: Add support for IPv6 and Dual-Stack Link Sense Indications (Torez Smith) [1383823]
-- [netdrv] catc: Use heap buffer for memory size test (Torez Smith) [1383823]
-- [netdrv] catc: Combine failure cleanup code in catc_probe() (Torez Smith) [1383823]
-- [netdrv] rtl8150: Use heap buffers for all register access (Torez Smith) [1383823]
-- [netdrv] pegasus: Use heap buffers for all register access (Torez Smith) [1383823]
-- [usb] serial: pl2303: add ATEN device ID (Torez Smith) [1383823]
-- [netdrv] r8152: check rx after napi is enabled (Torez Smith) [1383823]
-- [netdrv] r8152: re-schedule napi for tx (Torez Smith) [1383823]
-- [netdrv] r8152: avoid start_xmit to schedule napi when napi is disabled (Torez Smith) [1383823]
-- [netdrv] r8152: avoid start_xmit to call napi_schedule during autosuspend (Torez Smith) [1383823]
-- [usb] Add quirk for WORLDE easykey.25 MIDI keyboard (Torez Smith) [1383823]
-- [netdrv] qmi_wwan/cdc_ether: add device ID for HP lt2523 (Novatel E371) WWAN card (Torez Smith) [1383823]
-- [netdrv] r8152: don't execute runtime suspend if the tx is not empty (Torez Smith) [1383823]
-- [usb] serial: option: add device ID for HP lt2523 (Novatel E371) (Torez Smith) [1383823]
-- [netdrv] r8152: fix rtl8152_post_reset function (Torez Smith) [1383823]
-- [usb] serial: qcserial: add Dell DW5570 QDL (Torez Smith) [1383823]
-- [netdrv] r8152: fix the sw rx checksum is unavailable (Torez Smith) [1383823]
-- [usb] xhci: fix deadlock at host remove by running watchdog correctly (Torez Smith) [1383823]
-- [usb] serial: ch341: fix control-message error handling (Torez Smith) [1383823]
-- [netdrv] r8152: fix rx issue for runtime suspend (Torez Smith) [1383823]
-- [netdrv] r8152: split rtl8152_suspend function (Torez Smith) [1383823]
-- [usb] wusbcore: Fix one more crypto-on-the-stack bug (Torez Smith) [1383823]
-- [usb] serial: kl5kusb105: fix line-state error handling (Torez Smith) [1383823]
-- [usb] serial: ch341: fix baud rate and line-control handling (Torez Smith) [1383823]
-- [usb] serial: ch341: fix line settings after reset-resume (Torez Smith) [1383823]
-- [usb] serial: ch341: fix open error handling (Torez Smith) [1383823]
-- [usb] serial: ch341: fix modem-control and B0 handling (Torez Smith) [1383823]
-- [usb] serial: ch341: fix open and resume after B0 (Torez Smith) [1383823]
-- [usb] serial: ch341: fix initial modem-control state (Torez Smith) [1383823]
-- [usb] fix problems with duplicate endpoint addresses (Torez Smith) [1383823]
-- [usb] storage: unusual_uas: Add JMicron JMS56x to unusual device (Torez Smith) [1383823]
-- [usb] hub: Move hub_port_disable() to fix warning if PM is disabled (Torez Smith) [1383823]
-- [netdrv] usb: asix_devices: add .reset_resume for USB PM (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: spcp8x5: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: quatech2: fix sleep-while-atomic in close (Torez Smith) [1383823]
-- [usb] serial: pl2303: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: oti6858: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: omninet: fix NULL-derefs at open and disconnect (Torez Smith) [1383823]
-- [usb] serial: mos7840: fix misleading interrupt-URB comment (Torez Smith) [1383823]
-- [usb] serial: mos7840: remove unused write URB (Torez Smith) [1383823]
-- [usb] serial: mos7840: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: mos7720: remove obsolete port initialisation (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix parallel probe (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix parport use-after-free on probe errors (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix use-after-free on probe errors (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: kobil_sct: fix NULL-deref in write (Torez Smith) [1383823]
-- [usb] serial: keyspan_pda: verify endpoints at probe (Torez Smith) [1383823]
-- [usb] serial: iuu_phoenix: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: io_ti: bind to interface after fw download (Torez Smith) [1383823]
-- [usb] serial: io_ti: fix I/O after disconnect (Torez Smith) [1383823]
-- [usb] serial: io_ti: fix another NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: io_ti: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: io_edgeport: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] serial: garmin_gps: fix memory leak on failed URB submit (Torez Smith) [1383823]
-- [usb] serial: cyberjack: fix NULL-deref at open (Torez Smith) [1383823]
-- [usb] host: xhci: handle COMP_STOP from SETUP phase too (Torez Smith) [1383823]
-- [usb] xhci: apply XHCI_PME_STUCK_QUIRK to Intel Apollo Lake (Torez Smith) [1383823]
-- [usb] xhci: hold lock over xhci_abort_cmd_ring() (Torez Smith) [1383823]
-- [usb] xhci: Handle command completion and timeout race (Torez Smith) [1383823]
-- [usb] host: xhci: Fix possible wild pointer when handling abort command (Torez Smith) [1383823]
-- [usb] xhci: fix possible wild pointer (Torez Smith) [1383823]
-- [usb] return error code when platform_get_irq fails (Torez Smith) [1383823]
-- [usb] xhci: fix return value of xhci_setup_device() (Torez Smith) [1383823]
-- [usb] xhci: free xhci virtual devices with leaf nodes first (Torez Smith) [1383823]
-- [usb] serial: option: add dlink dwm-158 (Torez Smith) [1383823]
-- [usb] serial: option: add support for Telit LE922A PIDs 0x1040, 0x1041 (Torez Smith) [1383823]
-- [netdrv] lan78xx: add LAN7801 MAC only support (Torez Smith) [1383823]
-- [kernel] usb: cdc_mbim: add quirk for supporting Telit LE922A (Torez Smith) [1383823]
-- [usb] misc: rio500: fix result type for error message (Torez Smith) [1383823]
-- [usb] core: usbport: Use proper LED API to fix potential crash (Torez Smith) [1383823]
-- [netdrv] usb: set error code when usb_alloc_urb fails (Torez Smith) [1383823]
-- [kernel] usb: hcd.h: construct hub class request constants from simpler constants (Torez Smith) [1383823]
-- [usb] cdc-acm: add device id for GW Instek AFG-125 (Torez Smith) [1383823]
-- [kernel] fsl/usb: Workarourd for USB erratum-A005697 (Torez Smith) [1383823]
-- [usb] hub: Wait for connection to be reestablished after port reset (Torez Smith) [1383823]
-- [netdrv] usb: qmi_wwan: add support for Telit LE922A PID 0x1040 (Torez Smith) [1383823]
-- [netdrv] cdc_ether: Fix handling connection notification (Torez Smith) [1383823]
-- [netdrv] asix: Fix AX88772_suspend() USB vendor commands failure issues (Torez Smith) [1383823]
-- [usb] serial: kl5kusb105: abort on open exception path (Torez Smith) [1383823]
-- [usb] serial: kl5kusb105: fix open error path (Torez Smith) [1383823]
-- [usb] fix improper return value when kzalloc fails (Torez Smith) [1383823]
-- [usb] return correct errno on failures (Torez Smith) [1383823]
-- [usb] return correct errno code when krealloc fails (Torez Smith) [1383823]
-- [usb] ohci: use dma_pool_zalloc (Torez Smith) [1383823]
-- [usb] serial: cp210x: use tcflag_t to fix incompatible pointer type (Torez Smith) [1383823]
-- [usb] cdc-acm: handle read pipe errors (Torez Smith) [1383823]
-- [usb] cdc-acm: remove is_int_ep from acm structure (Torez Smith) [1383823]
-- [usb] cdc-acm: store in and out pipes in acm structure (Torez Smith) [1383823]
-- [usb] cdc-acm: refactor killing urbs (Torez Smith) [1383823]
-- [usb] cdc-acm: avoid interface_to_usbdev call (Torez Smith) [1383823]
-- [usb] cdc-acm: reindent log messages (Torez Smith) [1383823]
-- [usb] core: urb make use of usb_endpoint_maxp_mult (Torez Smith) [1383823]
-- [usb] hub: Fix auto-remount of safely removed or ejected USB-3 devices (Torez Smith) [1383823]
-- [usb] serial: cp210x: add ID for the Zone DPMX (Torez Smith) [1383823]
-- [netdrv] usb: lan78xx: Utilize phy_ethtool_nway_reset (Torez Smith) [1383823]
-- [usb] Fix USB CB/CBI storage devices with CONFIG_VMAP_STACK=y (Torez Smith) [1383823]
-- [usb] xhci-mem: use passed in GFP flags instead of GFP_KERNEL (Torez Smith) [1383823]
-- [usb] xhci: move slot_id from xhci_hcd to xhci_command structure (Torez Smith) [1383823]
-- [usb] xhci: remove the use of xhci->addr_dev (Torez Smith) [1383823]
-- [usb] xhci: cleanup cmd_completion in xhci_virt_device (Torez Smith) [1383823]
-- [usb] xhci: add helper to get the endpoint state of a endpoint context (Torez Smith) [1383823]
-- [usb] xhci: clean up error_bitmask usage (Torez Smith) [1383823]
-- [usb] xhci: Remove duplicate xhci urb giveback functions (Torez Smith) [1383823]
-- [usb] xhci: Giveback urb in finish_td directly (Torez Smith) [1383823]
-- [usb] xhci: refactor handle_tx_event() urb giveback (Torez Smith) [1383823]
-- [usb] xhci: fix non static symbol warning (Torez Smith) [1383823]
-- [usb] xhci: cleanup and refactor td_to_noop() (Torez Smith) [1383823]
-- [usb] xhci: refactor and cleanup process_isoc_td() (Torez Smith) [1383823]
-- [usb] xhci: rename endpoint related trb variables (Torez Smith) [1383823]
-- [usb] xhci: cleanup and refactor process_bulk_intr_td() (Torez Smith) [1383823]
-- [usb] xhci: cleanup and refactor process_ctrl_td() (Torez Smith) [1383823]
-- [usb] xhci: remove extra URB_SHORT_NOT_OK checks in xhci, core handles most cases (Torez Smith) [1383823]
-- [usb] xhci: add trb_is_noop() helper function (Torez Smith) [1383823]
-- [usb] xhci: use trb helper functions when possible (Torez Smith) [1383823]
-- [usb] xhci: don't try to reset the host if it is unaccessible (Torez Smith) [1383823]
-- [usb] xhci: cleanup error message if halting the host failed (Torez Smith) [1383823]
-- [usb] xhci: remove unnecessary xhci_quiesce call before xhci_halt (Torez Smith) [1383823]
-- [netdrv] r8152: Fix error path in open function (Torez Smith) [1383823]
-- [usb] uhci: report non-PME wakeup signalling for Intel hardware (Torez Smith) [1383823]
-- [usb] serial: fix invalid user-pointer checks (Torez Smith) [1383823]
-- [usb] cdc-acm: use get_icount tty operation (Torez Smith) [1383823]
-- [usb] cdc-acm: fix invalid user-pointer check (Torez Smith) [1383823]
-- [usb] cdc-acm: fix TIOCMIWAIT (Torez Smith) [1383823]
-- [netdrv] net driver: Add Cypress GX3 VID=04b4 PID=3610 (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: add support for TI CC3200 LaunchPad (Torez Smith) [1383823]
-- [usb] storage: drop freezer.h usage (Torez Smith) [1383823]
-- [usb] wusbcore: wusbhc: use permission-specific DEVICE_ATTR variants (Torez Smith) [1383823]
-- [usb] wusbcore: dev-sysfs: use permission-specific DEVICE_ATTR variants (Torez Smith) [1383823]
-- [usb] cdc-acm: fix uninitialized variable (Torez Smith) [1383823]
-- [usb] misc: usbtest: remove unnecessary & operation (Torez Smith) [1383823]
-- [usb] host: ehci: remove unnecessary max_packet() macro (Torez Smith) [1383823]
-- [usb] core: endpoint: remove unnecessary & operation (Torez Smith) [1383823]
-- [usb] core: devices: remove unnecessary & operation (Torez Smith) [1383823]
-- [usb] host: xhci: purge GET_MAX_PACKET() (Torez Smith) [1383823]
-- [uapi] usb: ch9: make usb_endpoint_maxp() return only packet size (Torez Smith) [1383823]
-- [usb] misc: usbtest: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1383823]
-- [usb] host: xhci: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1383823]
-- [usb] host: ehci: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1383823]
-- [usb] core: devices: make use of new usb_endpoint_maxp_mult() (Torez Smith) [1383823]
-- [netdrv] lan78xx: Use irq_domain for phy interrupt from USB Int. EP (Torez Smith) [1383823]
-- [uapi] usb: add helper to extract bits 12:11 of wMaxPacketSize (Torez Smith) [1383823]
-- [netdrv] r8152: Fix broken RX checksums (Torez Smith) [1383823]
-- [usb] core: add missing license information to some files (Torez Smith) [1383823]
-- [netdrv] kalmia: avoid potential uninitialized variable use (Torez Smith) [1383823]
-- [usb] xhci-mtk: make IPPC register optional (Torez Smith) [1383823]
-- [usb] ohci: make ohci-da8xx a separate driver (Torez Smith) [1383823]
-- [usb] core: Added devspec sysfs entry for devices behind the usb hub (Torez Smith) [1383823]
-- [kernel] tty: vgacon+sisusb, move scrolldelta to a common helper (Torez Smith) [1383823]
-- [usb] serial: ch341: add debug output for chip version (Torez Smith) [1383823]
-- [usb] serial: ch341: add support for parity, frame length, stop bits (Torez Smith) [1383823]
-- [usb] serial: ch341: reinitialize chip on reconfiguration (Torez Smith) [1383823]
-- [usb] serial: ch341: add register and USB request definitions (Torez Smith) [1383823]
-- [usb] ohci-da8xx: Remove code that references mach (Torez Smith) [1383823]
-- [usb] hwrng: chaoskey - drop workaround for old hwrng core limitation (Torez Smith) [1383823]
-- [usb] ehci: merge all cases that disable the IO watchdog (Torez Smith) [1383823]
-- [usb] ehci: elide I/O watchdog on AMD parts (Torez Smith) [1383823]
-- [usb] usbtmc: Add, clarify and fix comments (Torez Smith) [1383823]
-- [kernel] usb: fix a typo in usb_class_driver documentation (Torez Smith) [1383823]
-- [usb] increase ohci watchdog delay to 275 msec (Torez Smith) [1383823]
-- [usb] serial: cp210x: return -EIO on short control transfers (Torez Smith) [1383823]
-- [usb] serial: cp210x: clean up CSIZE handling (Torez Smith) [1383823]
-- [usb] serial: fix potential NULL-dereference at probe (Torez Smith) [1383823]
-- [usb] xhci: use default USB_RESUME_TIMEOUT when resuming ports (Torez Smith) [1383823]
-- [usb] xhci: workaround for hosts missing CAS bit (Torez Smith) [1383823]
-- [usb] xhci: add restart quirk for Intel Wildcatpoint PCH (Torez Smith) [1383823]
-- [usb] serial: cp210x: fix tiocmget error handling (Torez Smith) [1383823]
-- [usb] wusb: fix error return code in wusb_prf() (Torez Smith) [1383823]
-- [netdrv] r8152: add new products of Lenovo (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: add support for Infineon TriBoard TC2X7 (Torez Smith) [1383823]
-- [usb] wusb: Stop using the stack for sg crypto scratch space (Torez Smith) [1383823]
-- [netdrv] asix: Avoid looping when the device does not respond (Torez Smith) [1383823]
-- [netdrv] qmi_wwan: add support for Quectel EC21 and EC25 (Torez Smith) [1383823]
-- [netdrv] usb: lan78xx: use new api ethtool_{get|set}_link_ksettings (Torez Smith) [1383823]
-- [usb] host: ehci-sead3: Remove SEAD-3 EHCI code (Torez Smith) [1383823]
-- [usb] revert "usbtmc: convert to devm_kzalloc" (Torez Smith) [1383823]
-- [usb] serial: cp210x: Add ID for a Juniper console (Torez Smith) [1383823]
-- [usb] kconfig: using select for USB_COMMON dependency (Torez Smith) [1383823]
-- [usb] hub: change CLEAR_FEATURE to SET_FEATURE (Torez Smith) [1383823]
-- [usb] core: Introduce a USB port LED trigger (Torez Smith) [1383823]
-- [usb] core: hcd: add missing header dependencies (Torez Smith) [1383823]
-- [usb] misc: legousbtower: Fix NULL pointer deference (Torez Smith) [1383823]
-- [usb] cdc-acm: hardening against malicious devices (Torez Smith) [1383823]
-- [netdrv] r8152: disable ALDPS and EEE before setting PHY (Torez Smith) [1383823]
-- [netdrv] r8152: remove r8153_enable_eee (Torez Smith) [1383823]
-- [netdrv] r8152: move PHY settings to hw_phy_cfg (Torez Smith) [1383823]
-- [netdrv] r8152: move enabling PHY (Torez Smith) [1383823]
-- [netdrv] r8152: move some functions (Torez Smith) [1383823]
-- [usb] change bInterval default to 10 ms (Torez Smith) [1383823]
-- [usb] ohci: Allow ohci on omap5 also (Torez Smith) [1383823]
-- [usb] host: xhci-tegra: Fix error return code in tegra_xusb_probe() (Torez Smith) [1383823]
-- [usb] ezusb: constify local structures (Torez Smith) [1383823]
-- [usb] wusbcore: add in missing white space in error message text (Torez Smith) [1383823]
-- [usb] cdc-acm: cleaning up debug in data submission path (Torez Smith) [1383823]
-- [usb] cdc-acm: cleanup debugging in submission path (Torez Smith) [1383823]
-- [kernel] scsi: introduce a quirk for false cache reporting (Torez Smith) [1383823]
-- [usb] kconfig: let USB_ULPI_BUS depends on USB_COMMON (Torez Smith) [1383823]
-- [usb] serial: simple: add support for another Infineon flashloader (Torez Smith) [1383823]
-- [usb] cdc-acm: delete obsolete debug messages (Torez Smith) [1383823]
-- [usb] cdc-wdm: add terminating newline (Torez Smith) [1383823]
-- [usb] kconfig: move ulpi bus support out of host (Torez Smith) [1383823]
-- [usb] xhci: fix null pointer dereference in stop command timeout function (Torez Smith) [1383823]
-- [netdrv] kaweth: remove obsolete debugging statements (Torez Smith) [1383823]
-- [netdrv] lan78xx: mark symbols static where possible (Torez Smith) [1383823]
-- [netdrv] hso: Convert printk to pr_<level> (Torez Smith) [1383823]
-- [netdrv] hso: Use a more common logging style (Torez Smith) [1383823]
-- [netdrv] smsc95xx: Add mdix control via ethtool (Torez Smith) [1383823]
-- [netdrv] smsc95xx: Add register define (Torez Smith) [1383823]
-- [kernel] usb: ulpi: make ops struct constant (Torez Smith) [1383823]
-- [kernel] usb: ulpi: remove "dev" field from struct ulpi_ops (Torez Smith) [1383823]
-- [kernel] usb: ulpi: rename operations {read|write}_dev to simply {read|write} (Torez Smith) [1383823]
-- [kernel] usb: ulpi: remove calls to old api callbacks (Torez Smith) [1383823]
-- [kernel] usb: ulpi: add new api functions, {read|write}_dev() (Torez Smith) [1383823]
-- [usb] ulpi: move setting of ulpi->dev parent up in ulpi_register() (Torez Smith) [1383823]
-- [usb] core: use IS_ENABLED() instead of checking for built-in or module (Torez Smith) [1383823]
-- [netdrv] pegasus: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [netdrv] r8152: fix the coding style with checkpatch.pl (Torez Smith) [1383823]
-- [netdrv] asix: autoneg will set WRITE_MEDIUM reg (Torez Smith) [1383823]
-- [netdrv] asix: see 802.3 spec for phy reset (Torez Smith) [1383823]
-- [netdrv] asix: Fix AX88772x resume failures (Torez Smith) [1383823]
-- [netdrv] asix: Avoid looping when the device is disconnected (Torez Smith) [1383823]
-- [netdrv] asix: Add in_pm parameter (Torez Smith) [1383823]
-- [netdrv] r8152: constify ethtool_ops structures (Torez Smith) [1383823]
-- [usb] wusbcore: wa-nep: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] wusbcore: security: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] wusbcore: crypto: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] usb-skeleton: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] storage: sddr09: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] storage: alauda: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: yurex: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: uss720: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: usbsevseg: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: usblcd: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: trancevibrator: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: lvstest: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: legousbtower: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: ldusb: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: iowarrior: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: idmouse: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: ftdi-elan: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: cytherm: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: cypress_cy7c63: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: appledisplay: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] misc: adutux: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] host: xhci: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] host: xhci-tegra: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] host: uhci-hcd: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] core: urb: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] core: message: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] core: hub: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] core: hcd: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] class: usbtmc: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] atm: usbatm: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] atm: ueagle-atm: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] atm: speedtch: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] atm: cxacru: don't print on ENOMEM (Torez Smith) [1383823]
-- [usb] serial: option: add WeTelecom 0x6802 and 0x6803 products (Torez Smith) [1383823]
-- [usb] avoid left shift by -1 (Torez Smith) [1383823]
-- [usb] fix typo in wMaxPacketSize validation (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove unused variables (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: use C_X macros (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove useless NULL-testing (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove useless dev_dbg messages (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: do not use __uX types (Torez Smith) [1383823]
-- [usb] serial: use IS_ENABLED() instead of checking for built-in or module (Torez Smith) [1383823]
-- [usb] serial: option: add WeTelecom WM-D200 (Torez Smith) [1383823]
-- [netdrv] kaweth: fix oops upon failed memory allocation (Torez Smith) [1383823]
-- [netdrv] kaweth: fix firmware download (Torez Smith) [1383823]
-- [usb] xhci: don't dereference a xhci member after removing xhci (Torez Smith) [1383823]
-- [usb] xhci: Fix panic if disconnect (Torez Smith) [1383823]
-- [usb] xhci: really enqueue zero length TRBs (Torez Smith) [1383823]
-- [usb] xhci: always handle "Command Ring Stopped" events (Torez Smith) [1383823]
-- [usb] cdc-acm: fix wrong pipe type on rx interrupt xfers (Torez Smith) [1383823]
-- [kernel] usb: bcma: support old USB 2.0 controller on Northstar devices (Torez Smith) [1383823]
-- [usb] whci: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [usb] cdc-wdm: cleanup debug messages (Torez Smith) [1383823]
-- [usb] wusbcore: wa-xfer: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] wusbcore: wa-nep: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] usb-skeleton: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] storage: usb: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: yurex: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: uss720: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: sisusbvga: sisusb: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: lvstest: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: legousbtower: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: ldusb: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: iowarrior: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: ftdi-elan: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: appledisplay: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: adutux: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] class: usbtmc: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] atm: usbatm: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] atm: ueagle-atm: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] atm: cxacru: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] serial: mos7840: fix non-atomic allocation in write path (Torez Smith) [1383823]
-- [usb] serial: mos7720: fix non-atomic allocation in write path (Torez Smith) [1383823]
-- [netdrv] usb: usbnet: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [netdrv] usb: lan78xx: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [netdrv] usb: hso: don't print error when allocating urb fails (Torez Smith) [1383823]
-- [usb] misc: usbtest: add fix for driver hang (Torez Smith) [1383823]
-- [usb] cdc-wdm: Clear read pipeline in case of error (Torez Smith) [1383823]
-- [usb] core: of.c: fix defined but not declare warning (Torez Smith) [1383823]
-- [usb] remove redundant dependency on USB_SUPPORT (Torez Smith) [1383823]
-- [usb] remove race condition in usbfs/libusb when using reap-after-disconnect (Torez Smith) [1383823]
-- [usb] devio, do not warn when allocation fails (Torez Smith) [1383823]
-- [usb] ehci: change order of register cleanup during shutdown (Torez Smith) [1383823]
-- [usb] validate wMaxPacketValue entries in endpoint descriptors (Torez Smith) [1383823]
-- [kernel] usb: ulpi: Automatically set driver::owner with ulpi_driver_register() (Torez Smith) [1383823]
-- [usb] storage: fix runtime pm issue in usb_stor_probe2 (Torez Smith) [1383823]
-- [usb] cdc-wdm: fix "out-of-sync" due to missing notifications (Torez Smith) [1383823]
-- [usb] ftdi-elan: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [usb] appledisplay: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [usb] lvstest: Remove deprecated create_singlethread_workqueue (Torez Smith) [1383823]
-- [usb] misc: Add driver for usb4604 (Torez Smith) [1383823]
-- [usb] misc: ftdi-elan: Fix off-by-one memory corruptions (Torez Smith) [1383823]
-- [usb] misc: usbtest: usbtest_do_ioctl may return positive integer (Torez Smith) [1383823]
-- [usb] hub: change the locking in hub_activate (Torez Smith) [1383823]
-- [usb] hub: fix up early-exit pathway in hub_activate (Torez Smith) [1383823]
-- [usb] hub: Fix unbalanced reference count/memory leak/deadlocks (Torez Smith) [1383823]
-- [usb] serial: fix memleak in driver-registration error path (Torez Smith) [1383823]
-- [usb] serial: option: add support for Telit LE920A4 (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: add device ID for WICED USB UART dev board (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: add PIDs for Ivium Technologies devices (Torez Smith) [1383823]
-- [usb] serial: option: add D-Link DWM-156/A3 (Torez Smith) [1383823]
-- [netdrv] cdc_ether: Improve ZTE MF823/831/910 handling (Torez Smith) [1383823]
-- [usb] cdc-acm: beautify probe() (Torez Smith) [1383823]
-- [usb] cdc-wdm: use the common CDC parser (Torez Smith) [1383823]
-- [usb] cdc-acm: cleanup error handling (Torez Smith) [1383823]
-- [usb] cdc-acm: use the common parser (Torez Smith) [1383823]
-- [usb] usbnet: move the CDC parser into USB core (Torez Smith) [1383823]
-- [netdrv] rndis_host: Set valid random MAC on buggy devices (Torez Smith) [1383823]
-- [usb] serial: use variable for status (Torez Smith) [1383823]
-- [usb] serial: option: add support for Telit LE910 PID 0x1206 (Torez Smith) [1383823]
-- [netdrv] r8152: add MODULE_VERSION (Torez Smith) [1383823]
-- [usb] serial: cp210x: use kmemdup (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: use functions rather than macros (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove ti_usb_3410_5052.h (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: use __packed (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: remove useless comments (Torez Smith) [1383823]
-- [usb] quirks: Add no-lpm quirk for Elan (Torez Smith) [1383823]
-- [netdrv] r8152: Add support for setting pass through MAC address on RTL8153-AD (Torez Smith) [1383823]
-- [netdrv] r8152: remove cancel_delayed_work_sync in rtl8152_set_speed (Torez Smith) [1383823]
-- [netdrv] r8152: remove a netif_carrier_off in rtl8152_open function (Torez Smith) [1383823]
-- [netdrv] r8152: remove rtl_phy_reset function (Torez Smith) [1383823]
-- [netdrv] r8152: remove the setting of LAN_WAKE_EN (Torez Smith) [1383823]
-- [netdrv] r8152: fix runtime function for RTL8152 (Torez Smith) [1383823]
-- [netdrv] cdc_ncm: workaround for EM7455 "silent" data interface (Torez Smith) [1383823]
-- [usb] xhci: free the correct ring (Torez Smith) [1383823]
-- [netdrv] r8152: clear LINK_OFF_WAKE_EN after autoresume (Torez Smith) [1383823]
-- [netdrv] usbnet: Stop RX Q on MTU change (Torez Smith) [1383823]
-- [usb] don't free bandwidth_mutex too early (Torez Smith) [1383823]
-- [kernel] xhci: get rid of platform data (Torez Smith) [1383823]
-- [usb] xhci: rename and simplify last_trb_on_last_seg() helper (Torez Smith) [1383823]
-- [usb] xhci: remove enqueue_is_link() helper (Torez Smith) [1383823]
-- [usb] xhci: rework inc_deq() and fix off by one error (Torez Smith) [1383823]
-- [usb] xhci: use and add separate function for checking for link trbs (Torez Smith) [1383823]
-- [usb] xhci: clean up event ring checks from inc_enq() (Torez Smith) [1383823]
-- [usb] xhci: TD-fragment, align the unsplittable case with a bounce buffer (Torez Smith) [1383823]
-- [usb] xhci: align the last trb before link if it is easily splittable (Torez Smith) [1383823]
-- [usb] xhci: don't rely on precalculated value of needed trbs in the enqueue loop (Torez Smith) [1383823]
-- [usb] xhci: use boolean to indicate last trb in td remainder calculation (Torez Smith) [1383823]
-- [usb] xhci: properly prepare zero packet TD after normal bulk TD (Torez Smith) [1383823]
-- [usb] xhci: rename ep_ring variable in queue_bulk_tx(), no functional change (Torez Smith) [1383823]
-- [kernel] tty: vt, convert more macros to functions (Torez Smith) [1383823]
-- [kernel] tty: vt, remove consw->con_bmove (Torez Smith) [1383823]
-- [kernel] tty: vt, consw->con_set_palette cleanup (Torez Smith) [1383823]
-- [kernel] tty: vt, consw->con_scrolldelta cleanup (Torez Smith) [1383823]
-- [usb] sisusb: remove dummy variables (Torez Smith) [1383823]
-- [kernel] usb: ehci: declare hostpc register as zero-length array (Torez Smith) [1383823]
-- [usb] gadget: move gadget API functions to udc-core (Torez Smith) [1383823]
-- [usb] misc: remove outdated USB LED driver (Torez Smith) [1383823]
-- [netdrv] r8152: modify the check of the flag of PHY_RESET in set_speed function (Torez Smith) [1383823]
-- [netdrv] r8152: correct the rx early size (Torez Smith) [1383823]
-- [netdrv] r8152: disable MAC clock speed down (Torez Smith) [1383823]
-- [netdrv] r8152: save the speed (Torez Smith) [1383823]
-- [netdrv] r8152: move the setting for the default speed (Torez Smith) [1383823]
-- [netdrv] r8152: move the settings of PHY to a work queue (Torez Smith) [1383823]
-- [usb] common: otg-fsm: add license to usb-otg-fsm (Torez Smith) [1383823]
-- [netdrv] r8152: replace netdev_alloc_skb_ip_align with napi_alloc_skb (Torez Smith) [1383823]
-- [usb] misc: usb3503: Clean up on driver unbind (Torez Smith) [1383823]
-- [usb] misc: usb3503: Set platform data (Torez Smith) [1383823]
-- [usb] microtek: Use "foo *bar" instead of "foo * bar" (Torez Smith) [1383823]
-- [usb] cdc-acm: Space prohibited before close parenthesis ')' (Torez Smith) [1383823]
-- [usb] echi-hcd: Add ehci_setup check before echi_shutdown (Torez Smith) [1383823]
-- [usb] ohci: Don't mark EDs as ED_OPER if scheduling fails (Torez Smith) [1383823]
-- [usb] hwrng: chaoskey - Fix URB warning due to timeout on Alea (Torez Smith) [1383823]
-- [usb] hwrng: chaoskey - Add support for Araneus Alea I USB RNG (Torez Smith) [1383823]
-- [usb] ehci: avoid undefined pointer arithmetic and placate UBSAN (Torez Smith) [1383823]
-- [usb] quirks: Add no-lpm quirk for Acer C120 LED Projector (Torez Smith) [1383823]
-- [usb] quirks: Fix sorting (Torez Smith) [1383823]
-- [usb] xhci: fix platform quirks overwrite regression in 4.7-rc1 (Torez Smith) [1383823]
-- [netdrv] usbnet: smsc95xx: fix link detection for disabled autonegotiation (Torez Smith) [1383823]
-- [netdrv] pegasus: simplify logical constraint (Torez Smith) [1383823]
-- [netdrv] usb: ch9200: use kmemdup (Torez Smith) [1383823]
-- [netdrv] cdc_ncm: update datagram size after changing mtu (Torez Smith) [1383823]
-- [netdrv] revert "net: pegasus: remove dead coding" (Torez Smith) [1383823]
-- [netdrv] pegasus: remove dead coding (Torez Smith) [1383823]
-- [netdrv] asix: Fix offset calculation in asix_rx_fixup() causing slow transmissions (Torez Smith) [1383823]
-- [usb] ohci-jz4740: Remove obsolete driver (Torez Smith) [1383823]
-- [usb] serial: ti_usb_3410_5052: add MOXA UPORT 11x0 support (Torez Smith) [1383823]
-- [usb] serial: fix minor-number allocation (Torez Smith) [1383823]
-- [usb] serial: quatech2: fix use-after-free in probe error path (Torez Smith) [1383823]
-- [usb] serial: keyspan: fix debug and error messages (Torez Smith) [1383823]
-- [usb] serial: keyspan: fix URB unlink (Torez Smith) [1383823]
-- [usb] serial: keyspan: fix use-after-free in probe error path (Torez Smith) [1383823]
-- [usb] serial: io_edgeport: fix memory leaks in probe error path (Torez Smith) [1383823]
-- [usb] serial: io_edgeport: fix memory leaks in attach error path (Torez Smith) [1383823]
-- [usb] host: xhci-rcar: Avoid long wait in xhci_reset() (Torez Smith) [1383823]
-- [usb] wusbcore: Do not initialise statics to 0 (Torez Smith) [1383823]
-- [usb] wusbcore: Remove space before ', ' and '(' (Torez Smith) [1383823]
-- [usb] serial: cp210x: clean up CRTSCTS flag code (Torez Smith) [1383823]
-- [usb] serial: cp210x: get rid of magic numbers in CRTSCTS flag code (Torez Smith) [1383823]
-- [usb] serial: cp210x: fix hardware flow-control disable (Torez Smith) [1383823]
-- [netdrv] usbnet: smsc95xx: silence an uninitialized variable warning (Torez Smith) [1383823]
-- [netdrv] usbnet/smsc75xx: silence uninitialized variable warning (Torez Smith) [1383823]
-- [usb] serial: option: add even more ZTE device ids (Torez Smith) [1383823]
-- [usb] serial: option: add more ZTE device ids (Torez Smith) [1383823]
-- [usb] sisusbvga: correct speed testing (Torez Smith) [1383823]
-- [usb] misc: usbtest: fix pattern tests for scatterlists (Torez Smith) [1383823]
-- [kernel] usb: leave LPM alone if possible when binding/unbinding interface drivers (Torez Smith) [1383823]
-- [netdrv] rtl8152: correct speed testing (Torez Smith) [1383823]
-- [netdrv] usbnet: correct speed testing (Torez Smith) [1383823]
-- [usb] serial: option: add support for Cinterion PH8 and AHxx (Torez Smith) [1383823]
-- [kernel] tty: vt, make color_table const (Torez Smith) [1383823]
-- [net] tty: Replace TTY_THROTTLED bit tests with tty_throttled() (Torez Smith) [1383823]
-- [usb] ehci: make all debugging depend on CONFIG_DYNAMIC_DEBUG (Torez Smith) [1383823]
-- [usb] Add driver for UCSI (Torez Smith) [1383823]
-- [usb] xhci: tegra: Add Tegra210 support (Torez Smith) [1383823]
-- [usb] xhci: Add NVIDIA Tegra XUSB controller driver (Torez Smith) [1383823]
-- [usb] core: move root hub's device node assignment after it is added to bus (Torez Smith) [1383823]
-- [usb] Use "foo *bar" instead of "foo * bar" (Torez Smith) [1383823]
-- [usb] Remove unnecessary space before function pointer arguments (Torez Smith) [1383823]
-- [kernel] usb: core: hub: hub_port_init lock controller instead of bus (Torez Smith) [1383823]
-- [usb] devio: declare usbdev_vm_ops as static (Torez Smith) [1383823]
-- [usb] misc: usbtest: fix error of urb allocation (Torez Smith) [1383823]
-- [usb] core: buffer: avoid NULL pointer dereferrence (Torez Smith) [1383823]
-- [usb] hcd: do not call whc_clean_up on wch_init call failure (Torez Smith) [1383823]
-- [usb] xhci: remove duplicate code of interval checking (Torez Smith) [1383823]
-- [usb] xhci: remove duplicate function xhci_urb_to_transfer_ring (Torez Smith) [1383823]
-- [usb] xhci: merge xhci_queue_bulk_tx and queue_bulk_sg_tx functions (Torez Smith) [1383823]
-- [usb] usb: core: Minimize irq disabling in usb_sg_cancel() (Torez Smith) [1383823]
-- [usb] usb: core: Don't disable irqs in usb_sg_wait() during URB submit (Torez Smith) [1383823]
-- [usb] storage: fix multi-line comment style (Torez Smith) [1383823]
-- [usb] storage: scsiglue: limit USB3 devices to 2048 sectors (Torez Smith) [1383823]
-- [usb] storage: scsiglue: further describe our 240 sector limit (Torez Smith) [1383823]
-- [usb] hub: admit devices are SS+ (Torez Smith) [1383823]
-- [kernel] usb: correct intervals for SS+ (Torez Smith) [1383823]
-- [kernel] usb: LTM also for USB 3.1 (Torez Smith) [1383823]
-- [usb] serial: use IS_ENABLED() instead of checking for FOO || FOO_MODULE (Torez Smith) [1383823]
-- [usb] serial: ftdi_sio: constify ftdi_sio_quirk structures (Torez Smith) [1383823]
-- [usb] wusbcore: remove unreachable code (Torez Smith) [1383823]
-- [usb] whci-hcd: add more checks for dma mapping error (Torez Smith) [1383823]
-- [usb] xhci: fix typo in babble endpoint handling comment (Torez Smith) [1383823]
-- [uapi] usb: pd: additional feature selectors (Torez Smith) [1383823]
-- [uapi] usb: pd: define specific requests (Torez Smith) [1383823]
-- [uapi] usb: add descriptors from USB Power Delivery spec (Torez Smith) [1383823]
-- [usb] common: rework CONFIG_USB_COMMON logic (Torez Smith) [1383823]
-- [kernel] usb: otg-fsm: support multiple instances (Torez Smith) [1383823]
-- [kernel] usb: otg-fsm: Add documentation for struct otg_fsm (Torez Smith) [1383823]
-- [acpi] acpica: linux: Allow ACPICA inclusion for CONFIG_ACPI=n builds (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: linux: Add support to exclude <asm/acenv.h> inclusion (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: linux headers: Add <asm/acenv.h> to remove mis-ordered inclusion of <asm/acpi.h> (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: linux headers: Add <acpi/platform/aclinuxex.h> (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: linux header: Add support for stubbed externals (Prarit Bhargava) [1432953 1383823]
-- [acpi] acpica: osl: Add configurability for generic external functions (Prarit Bhargava) [1383823 1432953]
-- [acpi] acpica: Add support to allow host OS to redefine individual OSL prototypes (Prarit Bhargava) [1432953 1383823]
-
-* Thu Mar 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-626.el7]
-- [netdrv] nfp: consolidate two PCI device tables/structures into one (John Linville) [1406197]
-- [netdrv] nfp: don't tell FW about the reserved buffer space (John Linville) [1406197]
-- [netdrv] nfp: allow application firmware to limit number of SR-IOV VFs (John Linville) [1406197]
-- [netdrv] nfp: return nfp_rtsym_read_le() errors correctly (John Linville) [1406197]
-- [netdrv] nfp: add very basic access to NSP logs (John Linville) [1406197]
-- [netdrv] nfp: report NSP ABI version in ethtool FW version (John Linville) [1406197]
-- [netdrv] nfp: store NSP ABI version in state structure (John Linville) [1406197]
-- [netdrv] nfp: report manufacturing info on load (John Linville) [1406197]
-- [netdrv] nfp: refactor NSP initialization and add error message (John Linville) [1406197]
-- [netdrv] nfp: add the PF driver (John Linville) [1406197]
-- [netdrv] nfp: allocate irqs in lower driver (John Linville) [1406197]
-- [netdrv] nfp: add port layer to debugfs directories (John Linville) [1406197]
-- [netdrv] nfp: add support for service processor access (John Linville) [1406197]
-- [netdrv] nfp: add rtsym support (John Linville) [1406197]
-- [netdrv] nfp: add MIP reading support (John Linville) [1406197]
-- [netdrv] nfp: add support for reading nffw info (John Linville) [1406197]
-- [netdrv] nfp: add hwinfo support (John Linville) [1406197]
-- [netdrv] nfp: add support for resources (John Linville) [1406197]
-- [netdrv] nfp: add CPP access core (John Linville) [1406197]
-- [netdrv] nfp: rename the driver and add new main file (John Linville) [1406197]
-- [kernel] bitfield.h: add FIELD_FIT() helper (John Linville) [1406197]
-- [kernel] add basic register-field manipulation macros (John Linville) [1406197]
-- [netdrv] netronome: don't access real_num_rx_queues directly (John Linville) [1406197]
-- [netdrv] nfp: reorganize nfp_net_rx() to get packet offsets early (John Linville) [1406197]
-- [netdrv] nfp: add support for ethtool .set_channels (John Linville) [1406197]
-- [netdrv] nfp: move RSS indirection table init into a separate function (John Linville) [1406197]
-- [netdrv] nfp: add helper to reassign rings to IRQ vectors (John Linville) [1406197]
-- [netdrv] nfp: loosen relation between rings and IRQs vectors (John Linville) [1406197]
-- [netdrv] nfp: reuse ring helpers on .ndo_open() path (John Linville) [1406197]
-- [netdrv] nfp: rename ring allocation helpers (John Linville) [1406197]
-- [netdrv] nfp: centralize runtime reconfiguration logic (John Linville) [1406197]
-- [netdrv] nfp: add support for ethtool .get_channels (John Linville) [1406197]
-- [netdrv] nfp: bring back support for different ring counts (John Linville) [1406197]
-- [netdrv] nfp: replace num_irqs with max_r_vecs (John Linville) [1406197]
-- [netdrv] nfp: remove nfp_net_irqs_wanted() (John Linville) [1406197]
-- [netdrv] nfp: use unsigned int for vector/ring counts (John Linville) [1406197]
-- [netdrv] nfp: create separate define for max number of vectors (John Linville) [1406197]
-- [netdrv] nfp: use AND instead of modulo to get ring indexes (John Linville) [1406197]
-- [netdrv] nfp: add separate buffer allocation function for napi (John Linville) [1406197]
-- [netdrv] nfp: use alloc_frag() and build_skb() (John Linville) [1406197]
-- [netdrv] nfp: add buffer drop/recycle helper for RX (John Linville) [1406197]
-- [netdrv] nfp: centralize the buffer size calculation (John Linville) [1406197]
-- [netdrv] nfp: remove inline attributes and dead code (John Linville) [1406197]
-- [netdrv] nfp: remove unnecessary call to ether_setup() (John Linville) [1406197]
-- [netdrv] nfp: remove support for nfp3200 (John Linville) [1406197]
-- [netdrv] nfp: backport definitions of nn_{read,write}* (John Linville) [1406197]
-- [netdrv] nfp: simplify nfp_net_poll() (John Linville) [1406197]
-- [netdrv] xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend() (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Improve error handling during initialization (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Rework the fix for Rx stall during OOM and network stress (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen/netfront: set default upper limit of tx/rx queues to 8 (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Fix Rx stall during network stress and OOM (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: cast grant table reference first to type int (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: do not cast grant table reference to signed short (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: only napi_synchronize() if running (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Use setup_timer (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: request Tx response events more often (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: update num_queues to real created (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: always set num queues if possible (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: respect user provided max_queues (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Remove the meaningless code (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: only clean up queues if present (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: properly destroy queues when removing device (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: refactor making Tx requests (Vitaly Kuznetsov) [1102638]
-- [xen] add page_to_mfn() (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: refactor skb slot counting (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: use different locks for Rx and Tx stats (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: remove residual dead code (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: always keep the Rx ring full of requests (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: print correct number of queues (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: release per-queue Tx and Rx resource when disconnecting (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: fix locking in connect error path (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: call netif_carrier_off() only once when disconnecting (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: don't nest queue locks in xennet_connect() (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: recreate queues correctly when reconnecting (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: fix oops when disconnected from backend (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: initialise queue name in xennet_init_queue (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Add support for multiple queues (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Factor queue-specific data into queue struct (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: fix array initialization bug (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: Call dev_kfree_skb_any instead of dev_kfree_skb (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: handle backend CLOSED without CLOSING (Vitaly Kuznetsov) [1102638]
-- [netdrv] xen-netfront: fix missing rx_refill_timer when allocate memory failed (Vitaly Kuznetsov) [1102638]
-
-* Thu Mar 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-625.el7]
-- [net] sched: cls_u32: complete the check for non-forced case in u32_destroy() (Ivan Vecera) [1428588]
-- [net] sched: fix a use-after-free in tc_ctl_tfilter() (Ivan Vecera) [1428588]
-- [net] sched: destroy proto tp when all filters are gone (Ivan Vecera) [1428588]
-- [net] sched: fq_codel: return non zero qlen in class dumps (Ivan Vecera) [1428588]
-- [net] sched: close another race condition in tcf_mirred_release() (Ivan Vecera) [1428588]
-- [net] sched: Add description for cpu_bstats argument (Ivan Vecera) [1428588]
-- [net] sched: fix missing free per cpu on qstats (Ivan Vecera) [1428588]
-- [net] sched: act_pedit: check binding before calling tcf_hash_release() (Ivan Vecera) [1428588]
-- [net] sched: fix refcount imbalance in actions (Ivan Vecera) [1428588]
-- [net] sched: act_mirred: remove spinlock in fast path (Ivan Vecera) [1428588]
-- [net] sched: act_gact: remove spinlock in fast path (Ivan Vecera) [1428588]
-- [net] sched: act_gact: read tcfg_ptype once (Ivan Vecera) [1428588]
-- [net] sched: act_gact: use a separate packet counters for gact_determ() (Ivan Vecera) [1428588]
-- [net] sched: act_gact: make tcfg_pval non zero (Ivan Vecera) [1428588]
-- [net] sched: add percpu stats to actions (Ivan Vecera) [1428588]
-- [net] sched: extend percpu stats helpers (Ivan Vecera) [1428588]
-- [net] sched: invoke ->attach() after setting dev->qdisc (Ivan Vecera) [1428588]
-- [net] set qdisc pkt len before tc_classify (Ivan Vecera) [1428588]
-- [net] kill useless net_*_ingress_queue() definitions when NET_CLS_ACT is unset (Ivan Vecera) [1428588]
-- [net] sched: use counter to break reclassify loops (Ivan Vecera) [1428588]
-- [net] sched: fix typo in net_device ifdef (Ivan Vecera) [1428588]
-- [net] sched: further simplify handle_ing (Ivan Vecera) [1428588]
-- [net] sched: consolidate handle_ing and ing_filter (Ivan Vecera) [1428588]
-- [net] tc: remove unused redirect ttl (Ivan Vecera) [1428588]
-- [net] sched: run ingress qdisc without locks (Ivan Vecera) [1428588]
-- [net] sched: remove TC_MUNGED bits (Ivan Vecera) [1428588]
-- [net] use jump label patching for ingress qdisc in __netif_receive_skb_core (Ivan Vecera) [1428588]
-- [net] sched: fix panic in rate estimators (Ivan Vecera) [1428588]
-- [net] sched: cls: use nla_nest_cancel instead of nlmsg_trim (Ivan Vecera) [1428588]
-- [net] sched: cls_basic: fix error path in basic_change() (Ivan Vecera) [1428588]
-- [net] sched: cls: remove unused op put from tcf_proto_ops (Ivan Vecera) [1428588]
-- [net] sched: cls_cgroup: remove unnecessary if (Ivan Vecera) [1428588]
-- [net] sched: cls_flow: remove duplicate assignments (Ivan Vecera) [1428588]
-- [net] sched: cls_flow: remove faulty use of list_for_each_entry_rcu (Ivan Vecera) [1428588]
-- [net] sched: cls_bpf: remove faulty use of list_for_each_entry_rcu (Ivan Vecera) [1428588]
-- [net] sched: cls_bpf: remove unnecessary iteration and use passed arg (Ivan Vecera) [1428588]
-- [net] sched: cls_basic: remove unnecessary iteration and use passed arg (Ivan Vecera) [1428588]
-- [net] sched: tc_vlan: fix type of tcfv_push_vid (Ivan Vecera) [1428588]
-- [net] sched: introduce vlan action (Ivan Vecera) [1428588]
-- [net] sched: initialize bstats syncp (Ivan Vecera) [1428588]
-- [net] sched: fix unused variables in __gnet_stats_copy_basic_cpu() (Ivan Vecera) [1428588]
-- [net] sched: do not use tcf_proto 'tp' argument from call_rcu (Ivan Vecera) [1428588]
-- [net] sched: remove tcf_proto from ematch calls (Ivan Vecera) [1428588]
-- [net] sched: enable per cpu qstats (Ivan Vecera) [1428588]
-- [net] sched: restrict use of qstats qlen (Ivan Vecera) [1428588]
-- [net] sched: make bstats per cpu and estimator RCU safe (Ivan Vecera) [1428588]
-- [net] sched: fix errno in tcindex_set_parms() (Ivan Vecera) [1428588]
-- [net] sched: remove the first parameter from tcf_exts_destroy() (Ivan Vecera) [1428588]
-- [net] sched: hold tcf_lock in netdevice notifier (Ivan Vecera) [1428588]
-- [net] sched: add cond_resched() to class and qdisc dump (Ivan Vecera) [1428588]
-- [net] sched: do not use rcu in tc_dump_qdisc() (Ivan Vecera) [1428588]
-- [net] sched: move the sanity test in qdisc_list_add() (Ivan Vecera) [1428588]
-- [net] sched: htb: do not acquire qdisc lock in dump operations (Ivan Vecera) [1428588]
-- [net] sched: act: clean up tca_action_flush() (Ivan Vecera) [1428588]
-- [net] sched: act: refuse to remove bound action outside (Ivan Vecera) [1428588]
-- [net] sched: act: move tcf_hashinfo_init() into tcf_register_action() (Ivan Vecera) [1428588]
-- [net] sched: act: remove capab from struct tc_action_ops (Ivan Vecera) [1428588]
-- [net] sched: act: refactor cleanup ops (Ivan Vecera) [1428588]
-- [net] sched: act: hide struct tcf_common from API (Ivan Vecera) [1428588]
-- [net] sched: act: export tcf_hash_search() instead of tcf_hash_lookup() (Ivan Vecera) [1428588]
-- [net] sched: act: fetch hinfo from a->ops->hinfo (Ivan Vecera) [1428588]
-- [net] sched: replace macros net_random and net_srandom with direct calls to prandom (Ivan Vecera) [1428588]
-- [net] sched: act: use tcf_hash_release() in net/sched/act_police.c (Ivan Vecera) [1428588]
-- [net] sched: act: remove struct tcf_act_hdr (Ivan Vecera) [1428588]
-- [net] sched: act: clean up notification functions (Ivan Vecera) [1428588]
-- [net] sched: act: move idx_gen into struct tcf_hashinfo (Ivan Vecera) [1428588]
-- [net] sched: action: make local function static (Ivan Vecera) [1428588]
-- [net] sched: act: action flushing missaccounting (Ivan Vecera) [1428588]
-- [net] sched: Remove unnecessary checks for act->ops (Ivan Vecera) [1428588]
-- [net] sched: act: Dont increment refcnt on replace (Ivan Vecera) [1428588]
-- [net] sched: set root qdisc before change() in attach_default_qdiscs() (Ivan Vecera) [1428588]
-- [net] sched: remove unnecessary parentheses while return (Ivan Vecera) [1428588]
-- [net] sched: give visibility to mq slave qdiscs (Ivan Vecera) [1428588]
-- [net] netem: missing break in ge loss generator (Ivan Vecera) [1428588]
-- [net] netem: fix gemodel loss generator (Ivan Vecera) [1428588]
-- [net] gen_stats: Remove extern from function prototypes (Ivan Vecera) [1428588]
-
-* Thu Mar 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-624.el7]
-- [nvme] redhat: mark NVMe over FC as tech preview (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Fix missing dma sync to nvme data structures (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Call fatal_error from keep-alive timout expiration (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: cancel fatal error and flush async work before free controller (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: delete controllers deletion upon subsystem release (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet_fc: correct logic in disconnect queue LS handling (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: fix nvme_rdma_queue_is_ready (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet/fcloop: remove some logically dead code performing redundant ret checks (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: fix KATO offset in Set Features (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] fc: simplify error handling of nvme_fc_create_hw_io_queues (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] fc: correct some printk information (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] scsi: Remove START STOP emulation (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] pci: Delete misleading queue-wrap comment (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] simplify stripe quirk (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme : Use correct scnprintf in cmb show (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] pci: Log PCI_STATUS when the controller dies (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Add FC LLDD loopback driver to test FC-NVME (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Add target support for FC transport (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Add host support for FC transport (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] admin-cmd: Added smart-log command support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Add host_traddr options field to host infrastructure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] untangle 0 and BLK_MQ_RQ_QUEUE_OK (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] don't pass the full CQE to nvme_complete_async_event (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme: introduce struct nvme_request (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-fabrics: Add FC transport LLDD api definitions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-fabrics: Add FC transport FC-NVME definitions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-fabrics: Add FC transport error codes to nvme.h (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [uapi] Add type 0x28 NVME type code to scsi fc headers (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: patch target code in prep for FC transport support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: set sqe.command_id in core not transports (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] parser: add u64 number parser (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: align to generic ib_event logging helper (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: align to generic ib_event logging helper (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: remove redundant define (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Adjust source code indentation (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] scsi: Remove set-but-not-used variables (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Fix possible infinite loop triggered on hot namespace removal (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Fix a memory leak in an nvmf_create_ctrl() error path (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Fix memory leaks in nvmf_parse_options() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: force queue size to respect controller capability (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Fix REJ status code (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme: move NVMe class code to pci_ids.h (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: blk_account_io_start() takes a bool (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] don't schedule multiple resets (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] pci: Don't free queues on error (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: drain the queue-pair just before freeing it (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: stop and free io queues on connect failure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: don't forget to delete a queue from the list of connection failed (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Don't queue fatal error work if csts.cfs is set (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: reject non-connect commands before the queue is live (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Fix possible NULL deref when handling rdma cm events (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: use symbolic constants for CNS values (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] use symbolic constants for CNS values (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add an enum for cns values (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: resync with nvme-cli (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme: Add tertiary number to NVME_VS (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme : Add sysfs entry for NVMe CMBs when appropriate (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Delete created IO queues on reset (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Stop probing a removed device (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Pass pointers, not dma addresses, to nvme_get/set_features() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] scsi: Remove power management support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Make dsm number of ranges zero based (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Use direct IO for writes (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: revise host transport option descriptions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: rework nvmf_get_address() for variable options (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: account higher order dispatch (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: allow the driver to pass in a queue mapping (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: only allocate a single mq_map per tag_set (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: don't redistribute hardware queues on a CPU hotplug event (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: skip unmapped queues in blk_mq_alloc_request_hctx (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: only clear queue flags after successful connect (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: fix null pointer dereference on req->mr (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: use ib_client API to detect device removal (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: add DELETING queue flag (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: destroy nvme queue rdma resources on connect failure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme_rdma: keep a ref on the ctrl during delete/flush (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Get rid of redundant defines (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Get rid of duplicate variable (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: get a reference when reusing a nvme_host structure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-fabrics: change NQN UUID to big-endian format (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: set sqsize to 0-based value, per spec (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: fix sqsize/hsqsize per spec (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] fabrics: define admin sqsize min default, per spec (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: +1 to *queue_size from hsqsize/hrqsize (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Fix use after free (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: initialize ret to zero to avoid returning garbage (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: start async event handler after reconnecting to a controller (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: Fix controller serial number inconsistency (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Don't use the inline buffer in order to avoid allocation for small reads (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: Correctly handle RDMA device hot removal (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Make sure to shutdown the controller if we can (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: Remove duplicate call to nvme_remove_namespaces (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Free the I/O tags when we delete the controller (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Remove duplicate call to nvme_remove_namespaces (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Fix device removal handling (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Queue ns scanning after a sucessful reconnection (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Don't leak uninitialized memory in connect request private data (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] make NVME_RDMA depend on BLOCK (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] fabrics drivers don't need the nvme-pci driver (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] quirk: Add a delay before checking device ready for memblaze device (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Fix nvme_get/set_features() with a NULL result pointer (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] Fix race triggered by blk_set_queue_dying() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Prevent controller state invalid transition (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: fix deadlock in blk_mq_register_disk() error path (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] pci: Provide SR-IOV support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] don't allocate unused nvme_major (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Limit command retries (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: fix nvme-loop Kconfig dependencies (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: fix return value check in nvmet_subsys_alloc() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: add-remove ctrl repeat fix (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: Remove tl_retry_count (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: Don't use tl_retry_count (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: fix the return value of nvme_rdma_reinit_request() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: use IB_PD_UNSAFE_GLOBAL_RKEY (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] ib/core: add support to create a unsafe global rkey to ib_create_pd (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-rdma: add a NVMe over Fabrics RDMA host driver (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet-rdma: add a NVMe over Fabrics RDMA target driver (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme-rdma.h: Add includes for nvme rdma_cm negotiation (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] add new reconnecting controller state (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: Introduce blk_mq_reinit_tagset (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvmet: fix an error code (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: add configfs dependency (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-loop: add a NVMe loopback host driver (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] scatterlist: move SG pool code from SCSI driver to lib/sg_pool.c (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [scsi] rename SG related struct and functions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [scsi] replace "mq" with "first_chunk" in SG functions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [scsi] replace "scsi_data_buffer" with "sg_table" in SG functions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvmet: add a generic NVMe target (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] configfs: switch ->default groups to a linked list (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] add keep-alive support (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: Add keep-alive opcode and identify controller attribute (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] nvme-fabrics: add a generic NVMe over Fabrics library (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add NVMe over Fabrics definitions (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] add fabrics sysfs attributes (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Modify and export sync command submission for fabrics (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] allow transitioning from NEW to LIVE state (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: add blk_mq_alloc_request_hctx (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] move the workaround for I/O queue-less controllers from PCIe to core (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme: factor out a add nvme_is_write helper (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] blk-mq: add a flags parameter to blk_mq_alloc_request (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] allow for size limitations from transport drivers (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add AER constants (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add constants for PSDT and FUSE values (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add NVM command set SQE/CQE size defines (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: Add get_log_page command strucure (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] nvme.h: add RTD3R, RTD3E and OAES fields (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [block] blk-mq: actually hook up defer list when running requests (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] Fix removal in case of active namespace list scanning method (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] move nvme_cancel_request() to common code (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [nvme] update and rename nvme_cancel_io to nvme_cancel_request (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [kernel] block: add REQ_OP definitions and helpers (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] drivers/scsi/scsi_debug.c: resolve sg buffer const-ness issue (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] scatterlist: mark input buffer parameters as 'const' (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-- [lib] scatterlist.c: fix kerneldoc for sg_pcopy_{to, from}_buffer() (David Milburn) [1384526 1389755 1366753 1374291 1383834]
-
-* Tue Mar 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-623.el7]
-- [scsi] aacraid: Fix potential null access (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix typo in blink status (Scott Benesh) [1384213]
-- [scsi] aacraid: remove redundant zero check on ret (Scott Benesh) [1384213]
-- [scsi] aacraid: Fixed expander hotplug for SMART family (Scott Benesh) [1384213]
-- [scsi] aacraid: Update driver version (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix a potential spinlock double unlock bug (Scott Benesh) [1384213]
-- [scsi] aacraid: Save adapter fib log before an IOP reset (Scott Benesh) [1384213]
-- [scsi] aacraid: Reorder Adapter status check (Scott Benesh) [1384213]
-- [scsi] aacraid: Skip IOP reset on controller panic (SMART Family) (Scott Benesh) [1384213]
-- [scsi] aacraid: Decrease adapter health check interval (Scott Benesh) [1384213]
-- [scsi] aacraid: Reload offlined drives after controller reset (Scott Benesh) [1384213]
-- [scsi] aacraid: Skip wellness sync on controller failure (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix sync fibs time out on controller reset (Scott Benesh) [1384213]
-- [scsi] aacraid: Added sysfs for driver version (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix memory leak in fib init path (Scott Benesh) [1384213]
-- [scsi] aacraid: Prevent E3 lockup when deleting units (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix for excessive prints on EEH (Scott Benesh) [1384213]
-- [scsi] aacraid: Use correct channel number for raw srb (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix camel case (Scott Benesh) [1384213]
-- [scsi] aacraid: avoid open-coded upper_32_bits (Scott Benesh) [1384213]
-- [scsi] aacraid: rcode is unsigned and should be signed int (Scott Benesh) [1384213]
-- [scsi] aacraid: update version (Scott Benesh) [1384213]
-- [scsi] aacraid: Change Driver Version Prefix (Scott Benesh) [1384213]
-- [scsi] aacraid: Update copyrights (Scott Benesh) [1384213]
-- [scsi] aacraid: Retrieve HBA host information ioctl (Scott Benesh) [1384213]
-- [scsi] aacraid: Added ioctl to trigger IOP/IWBR reset (Scott Benesh) [1384213]
-- [scsi] aacraid: Added new IWBR reset (Scott Benesh) [1384213]
-- [scsi] aacraid: VPD 83 type3 support (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support to abort cmd and reset lun (Scott Benesh) [1384213]
-- [scsi] aacraid: Add task management functionality (Scott Benesh) [1384213]
-- [scsi] aacraid: Include HBA direct interface (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support for hotplug (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support to set QD of attached drives (Scott Benesh) [1384213]
-- [scsi] aacraid: Retrieve Queue Depth from Adapter FW (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support for periodic wellness sync (Scott Benesh) [1384213]
-- [scsi] aacraid: Reworked aac_command_thread (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support for read medium error (Scott Benesh) [1384213]
-- [scsi] aacraid: Added support for response path (Scott Benesh) [1384213]
-- [scsi] aacraid: Process Error for response I/O (Scott Benesh) [1384213]
-- [scsi] aacraid: Reworked scsi command submission path (Scott Benesh) [1384213]
-- [scsi] aacraid: Retrieve and update the device types (Scott Benesh) [1384213]
-- [scsi] aacraid: Added sa firmware support (Scott Benesh) [1384213]
-- [scsi] aacraid: added support for init_struct_8 (Scott Benesh) [1384213]
-- [scsi] aacraid: Added aacraid.h include guard (Scott Benesh) [1384213]
-- [scsi] aacraid: Remove duplicate irq management code (Scott Benesh) [1384213]
-- [scsi] aacraid: Replace <asm/uaccess.h> with <linux/uaccess.h> globally (Scott Benesh) [1384213]
-- [scsi] aacraid: Fix INTx/MSI-x issue with older controllers (Scott Benesh) [1384213]
-- [scsi] aacraid: mark aac_src_select_comm() static (Scott Benesh) [1384213]
-- [scsi] aacraid: use kmemdup (Scott Benesh) [1384213]
-- [scsi] qla2xxx: Fix apparent cut-n-paste error (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Fix Target mode handling with Multiqueue changes (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Add Block Multi Queue functionality (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Add multiple queue pair functionality (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Fix NULL pointer deref in QLA interrupt (Chad Dupuis) [1414957]
-- [scsi] qla2xxx: Add irq affinity notification (Chad Dupuis) [1414957]
-
-* Tue Mar 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-622.el7]
-- [fs] vfs: In d_path don't call d_dname on a mount point (Aristeu Rozanski) [1418962]
-- [hv] util: don't forget to init host_ts.lock (Vitaly Kuznetsov) [1388419]
-- [hv] hv_utils: implement Hyper-V PTP source (Vitaly Kuznetsov) [1388419]
-- [hv] export current Hyper-V clocksource (Vitaly Kuznetsov) [1388419]
-- [hv] utils: Fix the mapping between host version and protocol to use (Vitaly Kuznetsov) [1388419]
-- [hv] hv_util: Avoid dynamic allocation in time synch (Vitaly Kuznetsov) [1388419]
-- [hv] utils: Support TimeSync version 4.0 protocol samples (Vitaly Kuznetsov) [1388419]
-- [hv] utils: Use TimeSync samples to adjust the clock after boot (Vitaly Kuznetsov) [1388419]
-- [mm] memory_hotplug: set magic number to page->freelist instead of page->lru.next (Yasuaki Ishimatsu) [1417692]
-- [mm] sparse: use page_private() to get page->private value (Yasuaki Ishimatsu) [1417692]
-- [mm] sparsemem: fix a bug in free_map_bootmem when CONFIG_SPARSEMEM_VMEMMAP (Yasuaki Ishimatsu) [1417696]
-- [mm] sparsemem: use PAGES_PER_SECTION to remove redundant nr_pages parameter (Yasuaki Ishimatsu) [1417696]
-- [x86] numa: Online memory-less nodes at boot time (Rui Wang) [1405893]
-- [x86] mm/numa: Drop dead code and rename setup_node_data() to setup_alloc_data() (Rui Wang) [1405893]
-- [x86] revert "mce: Do not panic when single core has reached a timeout" (Xunlei Pang) [1256375]
-- [x86] mce: Handle broadcasted MCE gracefully with kexec (Xunlei Pang) [1256375]
-- [net] dccp/tcp: fix routing redirect race (Eric Garver) [1387485]
-- [net] ipv6: don't increase size when refragmenting forwarded ipv6 skbs (Florian Westphal) [1430571]
-- [net] bridge: drop netfilter fake rtable unconditionally (Florian Westphal) [1430571]
-- [net] ipv6: avoid write to a possibly cloned skb (Florian Westphal) [1430571]
-- [net] netfilter: bridge: honor frag_max_size when refragmenting (Florian Westphal) [1430571]
-- [net] l2tp: Avoid schedule while atomic in exit_net (Lance Richardson) [1429687]
-- [net] l2tp: protect tunnel->del_work by ref_count (Lance Richardson) [1429687]
-- [net] sctp: deny peeloff operation on asocs with threads sleeping on it (Hangbin Liu) [1429497] {CVE-2017-5986 CVE-2017-6353}
-- [net] sctp: avoid BUG_ON on sctp_wait_for_sndbuf (Hangbin Liu) [1429497] {CVE-2017-5986 CVE-2017-6353}
-- [net] sctp: set sin_port for addr param when checking duplicate address (Xin Long) [1308362]
-- [net] sctp: sctp_transport_dst_check should check if transport pmtu is dst mtu (Xin Long) [1412865]
-- [net] sctp: call rcu_read_lock before checking for duplicate transport nodes (Xin Long) [1383938]
-- [net] sctp: check duplicate node before inserting a new transport (Xin Long) [1383938]
-- [net] sctp: sctp_epaddr_lookup_transport should be protected by rcu_read_lock (Xin Long) [1383938]
-- [net] sctp: use new rhlist interface on sctp transport rhashtable (Xin Long) [1383938]
-- [net] Add netdev all_adj_list refcnt propagation to fix panic (Adrian Reber) [1425010]
-- [hid] usbhid: change return error of usbhid_output_report (Benjamin Tissoires) [1401381]
-- [scsi] storvsc: properly set residual data length on errors (Cathy Avery) [1364282]
-- [sound] alsa: hda - add support for docking station for HP 840 G3 (Jaroslav Kysela) [1312217]
-- [sound] alsa: hda - add support for docking station for HP 820 G2 (Jaroslav Kysela) [1312217]
-- [kernel] rcu: Reverse rcu_dereference_check() conditions (Waiman Long) [1432967]
-- [kernel] signals: avoid unnecessary taking of sighand->siglock (Waiman Long) [1412194]
-
-* Tue Mar 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-621.el7]
-- [fs] autofs: take more care to not update last_used on path walk (Ian Kent) [1413523]
-- [fs] autofs: remove duplicated AUTOFS_DEV_IOCTL_SIZE definition (Ian Kent) [1413523]
-- [fs] autofs: add command enum/macros for root-dir ioctls (Ian Kent) [1413523]
-- [fs] autofs: update ioctl documentation regarding struct autofs_dev_ioctl (Ian Kent) [1413523]
-- [fs] autofs: fix wrong ioctl documentation regarding devid (Ian Kent) [1413523]
-- [fs] autofs: fix typo in Documentation (Ian Kent) [1413523]
-- [fs] autofs: remove wrong comment (Ian Kent) [1413523]
-- [fs] autofs: constify find_autofs_mount() callback (Ian Kent) [1413523]
-- [fs] autofs: refactor ioctl fn vector in iookup_dev_ioctl() (Ian Kent) [1413523]
-- [fs] autofs: remove possibly misleading /* #define DEBUG */ (Ian Kent) [1413523]
-- [fs] autofs4: move linux/auto_dev-ioctl.h to uapi/linux (Ian Kent) [1413523]
-- [fs] autofs: move inclusion of linux/limits.h to uapi (Ian Kent) [1413523]
-- [fs] autofs: fix print format for ioctl warning message (Ian Kent) [1413523]
-- [fs] autofs: add autofs_dev_ioctl_version() for AUTOFS_DEV_IOCTL_VERSION_CMD (Ian Kent) [1413523]
-- [fs] autofs: fix dev ioctl number range check (Ian Kent) [1413523]
-- [fs] autofs: fix pr_debug() message (Ian Kent) [1413523]
-- [fs] autofs: update struct autofs_dev_ioctl in Documentation (Ian Kent) [1413523]
-- [fs] autofs: fix Documentation regarding devid on ioctl (Ian Kent) [1413523]
-- [fs] autofs: remove AUTOFS_DEVID_LEN (Ian Kent) [1413523]
-- [fs] autofs: don't fail to free_dev_ioctl(param) (Ian Kent) [1413523]
-- [fs] autofs: remove obsolete sb fields (Ian Kent) [1413523]
-- [fs] autofs: use autofs4_free_ino() to kfree dentry data (Ian Kent) [1413523]
-- [fs] autofs: remove ino free in autofs4_dir_symlink() (Ian Kent) [1413523]
-- [fs] autofs: add WARN_ON(1) for non dir/link inode case (Ian Kent) [1413523]
-- [fs] autofs: fix autofs4_fill_super() error exit handling (Ian Kent) [1413523]
-- [fs] autofs: test autofs versions first on sb initialization (Ian Kent) [1413523]
-- [fs] autofs: drop unnecessary extern in autofs_i.h (Ian Kent) [1413523]
-- [fs] autofs: fix typos in Documentation/filesystems/autofs4.txt (Ian Kent) [1413523]
-- [fs] autofs: use dentry flags to block walks during expire (Ian Kent) [1413523]
-- [fs] qstr: constify instances in autofs4 (Ian Kent) [1413523]
-- [fs] autofs: don't get stuck in a loop if vfs_write() returns an error (Ian Kent) [1413523]
-- [fs] autofs races (Ian Kent) [1413523]
-- [fs] autofs4: fix string.h include in auto_dev-ioctl.h (Ian Kent) [1413523]
-- [fs] autofs4: use pr_xxx() macros directly for logging (Ian Kent) [1413523]
-- [fs] autofs4: change log print macros to not insert newline (Ian Kent) [1413523]
-- [fs] autofs4: make autofs log prints consistent (Ian Kent) [1413523]
-- [fs] autofs4: fix some white space errors (Ian Kent) [1413523]
-- [fs] autofs4: fix invalid ioctl return in autofs4_root_ioctl_unlocked() (Ian Kent) [1413523]
-- [fs] autofs4: fix coding style line length in autofs4_wait() (Ian Kent) [1413523]
-- [fs] autofs4: fix coding style problem in autofs4_get_set_timeout() (Ian Kent) [1413523]
-- [fs] autofs4: coding style fixes (Ian Kent) [1413523]
-- [fs] autofs: show pipe inode in mount options (Ian Kent) [1413523]
-- [fs] autofs4: don't bother with d_instantiate(dentry, NULL) in ->lookup() (Ian Kent) [1413523]
-- [fs] vfs: normal filesystems (and lustre): d_inode() annotations (Ian Kent) [1413523]
-- [fs] vfs: Convert S_ISLNK/DIR/REG(dentry->d_inode) to d_is_*(dentry) (Ian Kent) [1413523]
-- [fs] autofs4 copy_dev_ioctl(): keep the value of ->size we'd used for allocation (Ian Kent) [1413523]
-- [fs] autofs4: Wrong format for printing dentry (Ian Kent) [1413523]
-- [fs] assorted conversions to p[dD] (Ian Kent) [1413523]
-- [fs] autofs: the documentation I wanted to read (Ian Kent) [1413523]
-- [fs] autofs4: d_manage() should return -EISDIR when appropriate in rcu-walk mode (Ian Kent) [1413523]
-- [fs] autofs4: avoid taking fs_lock during rcu-walk (Ian Kent) [1413523]
-- [fs] autofs4: make "autofs4_can_expire" idempotent (Ian Kent) [1413523]
-- [fs] autofs4: factor should_expire() out of autofs4_expire_indirect (Ian Kent) [1413523]
-- [fs] autofs4: allow RCU-walk to walk through autofs4 (Ian Kent) [1413523]
-- [fs] autofs4: comment typo: remove a a doubled word (Ian Kent) [1413523]
-- [fs] autofs4: remove some unused inline functions (Ian Kent) [1413523]
-- [fs] autofs4: don't take spinlock when not needed in autofs4_lookup_expiring (Ian Kent) [1413523]
-- [fs] autofs4: remove a redundant assignment (Ian Kent) [1413523]
-- [fs] autofs4: remove unused autofs4_ispending() (Ian Kent) [1413523]
-- [fs] vfs: allow ->d_manage() to declare -EISDIR in rcu_walk mode (Ian Kent) [1413523]
-- [fs] autofs4: fix false positive compile error (Ian Kent) [1413523]
-- [fs] autofs4/dev-ioctl.c: add __init to autofs_dev_ioctl_init (Ian Kent) [1413523]
-- [fs] autofs4: check dev ioctl size before allocating (Ian Kent) [1413523]
-- [fs] autofs: use IS_ROOT to replace root dentry checks (Ian Kent) [1413523]
-- [fs] autofs4: close the races around autofs4_notify_daemon() (Ian Kent) [1413523]
-
-* Tue Mar 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-620.el7]
-- [fs] fix unpaired rcu lock in prepend_path() ("Eric W. Biederman") [1247935]
-- [fs] Add may_detach_mounts sysctl to hide new behavior ("Eric W. Biederman") [1247935]
-- [fs] proc: Update proc_flush_task_mnt to use d_invalidate ("Eric W. Biederman") [1247935]
-- [fs] mnt: Protect the mountpoint hashtable with mount_lock ("Eric W. Biederman") [1247935]
-- [fs] mnt: Clear mnt_expire during pivot_root ("Eric W. Biederman") [1247935]
-- [fs] clone_private_mount() doesn't need to touch namespace_sem ("Eric W. Biederman") [1247935]
-- [fs] remove a bogus claim about namespace_sem being held by callers of mnt_alloc_id() ("Eric W. Biederman") [1247935]
-- [fs] namespace: update event counter when umounting a deleted dentry ("Eric W. Biederman") [1247935]
-- [fs] mnt: In detach_mounts detach the appropriate unmounted mount ("Eric W. Biederman") [1247935]
-- [fs] mnt: Clarify and correct the disconnect logic in umount_tree ("Eric W. Biederman") [1247935]
-- [fs] mnt: Update detach_mounts to leave mounts connected ("Eric W. Biederman") [1247935]
-- [fs] mnt: Fix the error check in __detach_mounts ("Eric W. Biederman") [1247935]
-- [fs] mnt: Honor MNT_LOCKED when detaching mounts ("Eric W. Biederman") [1247935]
-- [fs] fs_pin: Allow for the possibility that m_list or s_list go unused ("Eric W. Biederman") [1247935]
-- [fs] mnt: Factor umount_mnt from umount_tree ("Eric W. Biederman") [1247935]
-- [fs] mnt: Factor out unhash_mnt from detach_mnt and umount_tree ("Eric W. Biederman") [1247935]
-- [fs] mnt: Fail collect_mounts when applied to unmounted mounts ("Eric W. Biederman") [1247935]
-- [fs] mnt: Don't propagate unmounts to locked mounts ("Eric W. Biederman") [1247935]
-- [fs] mnt: On an unmount propagate clearing of MNT_LOCKED ("Eric W. Biederman") [1247935]
-- [fs] mnt: Delay removal from the mount hash ("Eric W. Biederman") [1247935]
-- [fs] mnt: Add MNT_UMOUNT flag ("Eric W. Biederman") [1247935]
-- [fs] mnt: In umount_tree reuse mnt_list instead of mnt_hash ("Eric W. Biederman") [1247935]
-- [fs] mnt: Don't propagate umounts in __detach_mounts ("Eric W. Biederman") [1247935]
-- [fs] mnt: Improve the umount_tree flags ("Eric W. Biederman") [1247935]
-- [fs] mnt: Use hlist_move_list in namespace_unlock ("Eric W. Biederman") [1247935]
-- [fs] switch the IO-triggering parts of umount to fs_pin ("Eric W. Biederman") [1247935]
-- [fs] new fs_pin killing logics ("Eric W. Biederman") [1247935]
-- [fs] allow attaching fs_pin to a group not associated with some superblock ("Eric W. Biederman") [1247935]
-- [fs] get rid of the second argument of acct_kill() ("Eric W. Biederman") [1247935]
-- [fs] take count and rcu_head out of fs_pin ("Eric W. Biederman") [1247935]
-- [fs] pull bumping refcount into ->kill() ("Eric W. Biederman") [1247935]
-- [fs] kill pin_put() ("Eric W. Biederman") [1247935]
-- [fs] btrfs: don't invalidate root dentry when subvolume deletion fails ("Eric W. Biederman") [1247935]
-- [fs] mnt: Fix a memory stomp in umount ("Eric W. Biederman") [1247935]
-- [fs] vfs: Remove d_drop calls from d_revalidate implementations ("Eric W. Biederman") [1247935]
-- [fs] vfs: Make d_invalidate return void ("Eric W. Biederman") [1247935]
-- [fs] vfs: Merge check_submounts_and_drop and d_invalidate ("Eric W. Biederman") [1247935]
-- [fs] vfs: Remove unnecessary calls of check_submounts_and_drop ("Eric W. Biederman") [1247935]
-- [fs] vfs: Lazily remove mounts on unlinked files and directories ("Eric W. Biederman") [1247935]
-- [fs] vfs: More precise tests in d_invalidate ("Eric W. Biederman") [1247935]
-- [fs] vfs: Document the effect of d_revalidate on d_find_alias ("Eric W. Biederman") [1247935]
-- [fs] autofs - remove obsolete d_invalidate() from expire ("Eric W. Biederman") [1247935]
-- [fs] vfs: Add a function to lazily unmount all mounts from any dentry ("Eric W. Biederman") [1247935]
-- [fs] vfs: factor out lookup_mountpoint from new_mountpoint ("Eric W. Biederman") [1247935]
-- [fs] vfs: Keep a list of mounts on a mount point ("Eric W. Biederman") [1247935]
-- [fs] vfs: Don't allow overwriting mounts in the current mount namespace ("Eric W. Biederman") [1247935]
-- [fs] delayed mntput ("Eric W. Biederman") [1247935]
-- [fs] Add a missing permission check to do_umount ("Eric W. Biederman") [1247935]
-- [fs] fix EBUSY on umount() from MNT_SHRINKABLE ("Eric W. Biederman") [1247935]
-- [fs] get rid of propagate_umount() mistakenly treating slaves as busy ("Eric W. Biederman") [1247935]
-- [fs] fix copy_tree() regression ("Eric W. Biederman") [1247935]
-- [fs] death to mnt_pinned ("Eric W. Biederman") [1247935]
-- [fs] make fs/{namespace, super}.c forget about acct.h ("Eric W. Biederman") [1247935]
-- [fs] take fs_pin stuff to fs/* ("Eric W. Biederman") [1247935]
-- [fs] start carving bsd_acct_struct up ("Eric W. Biederman") [1247935]
-- [fs] acct: move mnt_pin() upwards ("Eric W. Biederman") [1247935]
-- [fs] make acct_kill() wait for file closing ("Eric W. Biederman") [1247935]
-- [fs] drop ->s_umount around acct_auto_close() ("Eric W. Biederman") [1247935]
-- [fs] acct: get rid of acct_lock for acct->count ("Eric W. Biederman") [1247935]
-- [fs] acct: get rid of acct_list ("Eric W. Biederman") [1247935]
-- [fs] acct: simplify check_free_space() ("Eric W. Biederman") [1247935]
-- [fs] acct: new lifetime rules ("Eric W. Biederman") [1247935]
-- [fs] acct: serialize acct_on() ("Eric W. Biederman") [1247935]
-- [fs] acct() should honour the limits from the very beginning ("Eric W. Biederman") [1247935]
-- [fs] split the slow path in acct_process() off ("Eric W. Biederman") [1247935]
-- [fs] separate namespace-independent parts of filling acct_t ("Eric W. Biederman") [1247935]
-- [fs] acct: switch to __kernel_write() ("Eric W. Biederman") [1247935]
-- [fs] acct: encode_comp_t(0) is 0, fortunately.. ("Eric W. Biederman") [1247935]
-- [fs] vfs: Make delayed_free() call free_vfsmnt() ("Eric W. Biederman") [1247935]
-- [fs] switch mnt_hash to hlist ("Eric W. Biederman") [1247935]
-- [fs] keep shadowed vfsmounts together ("Eric W. Biederman") [1247935]
-- [fs] resizable namespace.c hashes ("Eric W. Biederman") [1247935]
-- [fs] vfs: Is mounted should be testing mnt_ns for NULL or error ("Eric W. Biederman") [1247935]
-- [fs] fix bogus read_seqretry() checks introduced in b37199e ("Eric W. Biederman") [1247935]
-- [fs] rcuwalk: recheck mount_lock after mountpoint crossing attempts ("Eric W. Biederman") [1247935]
-- [fs] fix bogus path_put() of nd->root after some unlazy_walk() failures ("Eric W. Biederman") [1247935]
-- [fs] get rid of {lock, unlock}_rcu_walk() ("Eric W. Biederman") [1247935]
-- [fs] Use RH_KABI_EXTEND to wrap nameidata.m_seq ("Eric W. Biederman") [1247935]
-- [fs] RCU'd vfsmounts ("Eric W. Biederman") [1247935]
-- [fs] pid_namespace: make freeing struct pid_namespace rcu-delayed ("Eric W. Biederman") [1247935]
-- [fs] fuse: rcu-delay freeing fuse_conn ("Eric W. Biederman") [1247935]
-- [fs] ncpfs: rcu-delay unload_nls() and freeing ncp_server ("Eric W. Biederman") [1247935]
-- [fs] fat: rcu-delay unloading nls and freeing sbi ("Eric W. Biederman") [1247935]
-- [fs] adfs: delayed freeing of sbi ("Eric W. Biederman") [1247935]
-- [fs] hpfs: make freeing sbi and codetables rcu-delayed ("Eric W. Biederman") [1247935]
-- [fs] make freeing super_block rcu-delayed ("Eric W. Biederman") [1247935]
-- [fs] move taking vfsmount_lock down into prepend_path() ("Eric W. Biederman") [1247935]
-- [fs] vfs: make d_path() get the root path under RCU ("Eric W. Biederman") [1247935]
-- [fs] vfs: don't copy things to user space holding the rcu readlock ("Eric W. Biederman") [1247935]
-- [fs] vfs: make getcwd() get the root and pwd path under rcu ("Eric W. Biederman") [1247935]
-- [fs] vfs: move get_fs_root_and_pwd() to single caller ("Eric W. Biederman") [1247935]
-- [fs] split __lookup_mnt() in two functions ("Eric W. Biederman") [1247935]
-- [fs] Readd include of linux/lglock.h in fs/internal.h to preserve the kabi ("Eric W. Biederman") [1247935]
-- [fs] new helpers: lock_mount_hash/unlock_mount_hash ("Eric W. Biederman") [1247935]
-- [fs] don't bother with vfsmount_lock in mounts_poll() ("Eric W. Biederman") [1247935]
-- [fs] namespace.c: get rid of mnt_ghosts ("Eric W. Biederman") [1247935]
-- [fs] fold dup_mnt_ns() into its only surviving caller ("Eric W. Biederman") [1247935]
-- [fs] mnt_set_expiry() doesn't need vfsmount_lock ("Eric W. Biederman") [1247935]
-- [fs] finish_automount() doesn't need vfsmount_lock for removal from expiry list ("Eric W. Biederman") [1247935]
-- [fs] namespace.c: bury long-dead define ("Eric W. Biederman") [1247935]
-- [fs] fold mntfree() into mntput_no_expire() ("Eric W. Biederman") [1247935]
-- [fs] do_remount(): pull touch_mnt_namespace() up ("Eric W. Biederman") [1247935]
-- [fs] dup_mnt_ns(): get rid of pointless grabbing of vfsmount_lock ("Eric W. Biederman") [1247935]
-- [fs] initialize namespace_sem statically ("Eric W. Biederman") [1247935]
-- [fs] put_mnt_ns(): use drop_collected_mounts() ("Eric W. Biederman") [1247935]
-
-* Mon Mar 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-619.el7]
-- [fs] ext4: unmap metadata when zeroing blocks (Eric Sandeen) [1430424]
-- [fs] ext4: handle transient ENOSPC properly for DAX (Eric Sandeen) [1347247 1430424]
-- [mm] dax: fix deadlock with DAX 4k holes (Eric Sandeen) [1430424]
-- [fs] ext4: avoid split extents for DAX writes (Eric Sandeen) [1430424]
-- [fs] ext4: only set S_DAX if DAX is really supported (Eric Sandeen) [1430424]
-- [fs] dax: move put_(un)locked_mapping_entry() in dax.c (Eric Sandeen) [1430424]
-- [fs] dax: move RADIX_DAX_* defines to dax.h (Eric Sandeen) [1430424]
-- [fs] dax: remove dax_pmd_fault() (Eric Sandeen) [1430424]
-- [mm] dax: coordinate locking for offsets in PMD range (Eric Sandeen) [1430424]
-- [fs] dax: consistent variable naming for DAX entries (Eric Sandeen) [1430424]
-- [fs] dax: remove the last BUG_ON() from fs/dax.c (Eric Sandeen) [1430424]
-- [fs] dax: make 'wait_table' global variable static (Eric Sandeen) [1430424]
-- [fs] dax: remove buffer_size_valid() (Eric Sandeen) [1430424]
-- [fs] ext4: tell DAX the size of allocation holes (Eric Sandeen) [1430424]
-- [fs] ext4: more efficient SEEK_DATA implementation (Eric Sandeen) [1430424]
-- [fs] ext4: return hole from ext4_map_blocks() (Eric Sandeen) [1430424]
-- [fs] ext4: factor out determining of hole size (Eric Sandeen) [1430424]
-- [fs] ext4: allow DAX writeback for hole punch (Eric Sandeen) [1430424]
-- [fs] xfs: fix locking for DAX writes (Eric Sandeen) [1430424]
-- [fs] dax: don't pass buffer_head to copy_user_dax (Eric Sandeen) [1430424]
-- [fs] dax: don't pass buffer_head to dax_insert_mapping (Eric Sandeen) [1430424]
-- [mm] silently skip readahead for DAX inodes (Eric Sandeen) [1366943 1430424]
-- [fs] xfs: don't invalidate whole file on DAX read/write (Eric Sandeen) [1430424]
-- [fs] dax: remote unused fault wrappers (Eric Sandeen) [1430424]
-- [fs] dax: Remove i_mmap_lock protection (Eric Sandeen) [1430424]
-- [mm] dax: Use radix tree entry lock to protect cow faults (Eric Sandeen) [1430424]
-- [mm] dax: New fault locking (Eric Sandeen) [1430424]
-- [mm] dax: Allow DAX code to replace exceptional entries (Eric Sandeen) [1430424]
-- [fs] dax: Define DAX lock bit for radix tree exceptional entry (Eric Sandeen) [1430424]
-- [fs] dax: Make huge page handling depend of CONFIG_BROKEN (Eric Sandeen) [1430424]
-- [fs] dax: Fix condition for filling of PMD holes (Eric Sandeen) [1430424]
-- [fs] dax: fix a comment in dax_zero_page_range and dax_truncate_page (Eric Sandeen) [1430424]
-- [fs] dax: for truncate/hole-punch, do zeroing through the driver if possible (Eric Sandeen) [1430424]
-- [fs] dax: export a low-level __dax_zero_page_range helper (Eric Sandeen) [1430424]
-- [fs] dax: use sb_issue_zerout instead of calling dax_clear_sectors (Eric Sandeen) [1430424]
-- [fs] dax: fallback from pmd to pte on error (Eric Sandeen) [1430424]
-- [fs] dax: Remove redundant inode size checks (Eric Sandeen) [1430424]
-- [fs] dax: Remove pointless writeback from dax_do_io() (Eric Sandeen) [1430424]
-- [fs] dax: Remove zeroing from dax_io() (Eric Sandeen) [1430424]
-- [fs] dax: Remove dead zeroing code from fault handlers (Eric Sandeen) [1430424]
-- [fs] dax: Remove complete_unwritten argument (Eric Sandeen) [1430424]
-- [fs] dax: move RADIX_DAX_ definitions to dax.c (Eric Sandeen) [1430424]
-- [fs] dax: call get_blocks() with create == 1 for write faults to unwritten extents (Eric Sandeen) [1430424]
-- [fs] ext4: cleanup handling of bh->b_state in DAX mmap (Eric Sandeen) [1430424]
-- [fs] ext4: fix bh->b_state corruption (Eric Sandeen) [1430424]
-- [fs] xfs: split direct I/O and DAX path (Eric Sandeen) [1430424]
-- [fs] xfs: direct calls in the direct I/O path (Eric Sandeen) [1430424]
-- [fs] xfs: fold xfs_vm_do_dio into xfs_vm_direct_IO (Eric Sandeen) [1430424]
-- [fs] xfs: using generic_file_direct_write() is unnecessary (Eric Sandeen) [1430424]
-- [fs] xfs: stop using generic_file_read_iter for direct I/O (Eric Sandeen) [1430424]
-- [fs] xfs: split xfs_file_read_iter into buffered and direct I/O helpers (Eric Sandeen) [1430424]
-- [fs] xfs: remove s_maxbytes enforcement in xfs_file_read_iter (Eric Sandeen) [1430424]
-- [fs] xfs: kill ioflags (Eric Sandeen) [1430424]
-- [fs] xfs: don't pass ioflags around in the ioctl path (Eric Sandeen) [1430424]
-
-* Mon Mar 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-618.el7]
-- [fs] vfs: pull btrfs clone API to vfs layer (Bill O'Donnell) [1399590]
-- [fs] btrfs: add .copy_file_range file operation (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix btrfs_compat_ioctl failures on non-compat ioctls (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix truncate down when no_holes feature is enabled (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix deadlock between direct IO and fast fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix false enospc error when truncating heavily reflinked file (Bill O'Donnell) [1399590]
-- [fs] btrfs: adjust outstanding_extents counter properly when dio write is split (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lockdep warning about log_mutex (Bill O'Donnell) [1399590]
-- [fs] btrfs: use down_read_nested to make lockdep silent (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix locking when we put back a delayed ref that's too new (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix error handling when run_delayed_extent_op fails (Bill O'Donnell) [1399590]
-- [fs] btrfs: return the actual error value from from btrfs_uuid_tree_iterate (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race in btrfs_free_dummy_fs_info() (Bill O'Donnell) [1399590]
-- [fs] btrfs: limit async_work allocation and worker func duration (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix tree search logic when replaying directory entry deletes (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix deadlock caused by fsync when logging directory entries (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix enospc in hole punching (Bill O'Donnell) [1399590]
-- [fs] btrfs: improve delayed refs iterations (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Add comments explaining how btrfs qgroup works (Bill O'Donnell) [1399590]
-- [fs] btrfs: Ensure proper sector alignment for btrfs_free_reserved_data_space (Bill O'Donnell) [1399590]
-- [fs] btrfs: abort transaction if fill_holes() fails (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix file extent corruption (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup: use already calculated value in btrfs_should_throttle_delayed_refs() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix qgroup rescan worker initialization (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix emptiness check for dirtied extent buffers at check_leaf() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix BUG_ON in btrfs_mark_buffer_dirty (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix relocation incorrectly dropping data references (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix races on root_log_ctx lists (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix WARNING in btrfs_select_ref_head() (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove some no-op casts (Bill O'Donnell) [1399590]
-- [fs] btrfs: pass correct args to btrfs_async_run_delayed_refs() (Bill O'Donnell) [1399590]
-- [fs] btrfs: make file clone aware of fatal signals (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Prevent qgroup->reserved from going subzero (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill BUG_ON in do_relocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix incremental send failure caused by balance (Bill O'Donnell) [1399590]
-- [fs] revert "btrfs: let btrfs_delete_unused_bgs() to clean relocated bgs" (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests: uninline member definitions in free_space_extent (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests: constify free space extent specs (Bill O'Donnell) [1399590]
-- [fs] btrfs: expand free space tree sanity tests to catch endianness bug (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix extent buffer bitmap tests on big-endian systems (Bill O'Donnell) [1399590]
-- [fs] btrfs: catch invalid free space trees (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix mount -o clear_cache, space_cache=v2 (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix free space tree bitmaps on big-endian systems (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove unnecessary btrfs_mark_buffer_dirty in split_leaf (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't BUG() during drop snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix btrfs_no_printk stub helper (Bill O'Donnell) [1399590]
-- [fs] btrfs: memset to avoid stale content in btree leaf (Bill O'Donnell) [1399590]
-- [fs] btrfs: parent_start initialization cleanup (Bill O'Donnell) [1399590]
-- [fs] btrfs: Remove already completed TODO comment (Bill O'Donnell) [1399590]
-- [fs] btrfs: Do not reassign count in btrfs_run_delayed_refs (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix a possible umount deadlock (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak in do_walk_down (Bill O'Donnell) [1399590]
-- [fs] btrfs: unsplit printed strings (Bill O'Donnell) [1399590]
-- [fs] btrfs: clean the old superblocks before freeing the device (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill BUG_ON in run_delayed_tree_ref (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't leak reloc root nodes on error (Bill O'Donnell) [1399590]
-- [fs] btrfs: squash lines for simple wrapper functions (Bill O'Donnell) [1399590]
-- [fs] btrfs: improve check_node to avoid reading corrupted nodes (Bill O'Donnell) [1399590]
-- [fs] btrfs: add error handling for extent buffer in print tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove BUG_ON in start_transaction (Bill O'Donnell) [1399590]
-- [fs] btrfs: memset to avoid stale content in btree node block (Bill O'Donnell) [1399590]
-- [fs] btrfs: return gracefully from balance if fs tree is corrupted (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill BUG_ON()'s in btrfs_mark_extent_written (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill the start argument to read_extent_buffer_pages (Bill O'Donnell) [1399590]
-- [fs] btrfs: add a flags field to btrfs_fs_info (Bill O'Donnell) [1399590]
-- [fs] btrfs: extend btrfs_set_extent_delalloc and its friends to support in-band dedupe and subpage size patchset (Bill O'Donnell) [1399590]
-- [fs] btrfs: add dynamic debug support (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix warning "variable 'gen' set but not used" (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix warning "variable 'blocksize' set but not used" (Bill O'Donnell) [1399590]
-- [fs] btrfs: let btrfs_delete_unused_bgs() to clean relocated bgs (Bill O'Donnell) [1399590]
-- [fs] btrfs: bail out if block group has different mixed flag (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak in reading btree blocks (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix check_shared for fiemap ioctl (Bill O'Donnell) [1399590]
-- [fs] btrfs: create example debugfs file only in debugging build (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix perms on demonstration debugfs interface (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak of block group cache (Bill O'Donnell) [1399590]
-- [fs] btrfs: ensure that file descriptor used with subvol ioctls is a dir (Bill O'Donnell) [1399590]
-- [fs] btrfs: handle quota reserve failure properly (Bill O'Donnell) [1399590]
-- [fs] btrfs: use filemap_check_errors() (Bill O'Donnell) [1399590]
-- [mm] export filemap_check_errors() to modules (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce tickets_id to determine whether asynchronous metadata reclaim work makes progress (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove root_log_ctx from ctx list before btrfs_sync_log returns (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not decrease bytes_may_use when replaying extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix one bug that process may endlessly wait for ticket in wait_reserve_ticket() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix endless loop in balancing block groups (Bill O'Donnell) [1399590]
-- [fs] btrfs: kill invalid ASSERT() in process_all_refs() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lockdep warning on deadlock against an inode's log mutex (Bill O'Donnell) [1399590]
-- [fs] btrfs: detect corruption when non-root leaf has zero item (Bill O'Donnell) [1399590]
-- [fs] btrfs: check btree node's nritems (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't create or leak aliased root while cleaning up orphans (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix em leak in find_first_block_group (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not background blkdev_put() (Bill O'Donnell) [1399590]
-- [fs] btrfs: clarify do_chunk_alloc()'s return value (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix fsfreeze hang caused by delayed iputs deal (Bill O'Donnell) [1399590]
-- [fs] btrfs: update btrfs_space_info's bytes_may_use timely (Bill O'Donnell) [1399590]
-- [fs] btrfs: divide btrfs_update_reserved_bytes() into two functions (Bill O'Donnell) [1399590]
-- [fs] btrfs: use correct offset for reloc_inode in prealloc_file_extent_cluster() (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Fix qgroup incorrectness caused by log replay (Bill O'Donnell) [1399590]
-- [fs] btrfs: relocation: Fix leaking qgroups numbers on data extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Refactor btrfs_qgroup_insert_dirty_extent() (Bill O'Donnell) [1399590]
-- [fs] btrfs: waiting on qgroup rescan should not always be interruptible (Bill O'Donnell) [1399590]
-- [fs] btrfs: properly track when rescan worker is running (Bill O'Donnell) [1399590]
-- [fs] btrfs: flush_space: treat return value of do_chunk_alloc properly (Bill O'Donnell) [1399590]
-- [fs] btrfs: add ASSERT for block group's memory leak (Bill O'Donnell) [1399590]
-- [fs] btrfs: backref: Fix soft lockup in __merge_refs function (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak of reloc_root (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix __MAX_CSUM_ITEMS (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove unused function btrfs_add_delayed_qgroup_reserve() (Bill O'Donnell) [1399590]
-- [fs] btrfs: improve performance on fsync against new inode after rename/unlink (Bill O'Donnell) [1399590]
-- [fs] btrfs: be more precise on errors when getting an inode from disk (Bill O'Donnell) [1399590]
-- [fs] btrfs: send, don't bug on inconsistent snapshots (Bill O'Donnell) [1399590]
-- [fs] btrfs: send, avoid incorrect leaf accesses when sending utimes operations (Bill O'Donnell) [1399590]
-- [fs] btrfs: send, add missing error check for calls to path_loop() (Bill O'Donnell) [1399590]
-- [fs] btrfs: send, fix failure to move directories with the same name around (Bill O'Donnell) [1399590]
-- [fs] btrfs: add missing check for writeback errors on fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_relocate_chunk pass extent_root to btrfs_end_transaction (Bill O'Donnell) [1399590]
-- [fs] btrfs: convert nodesize macros to static inlines (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce BTRFS_MAX_ITEM_SIZE (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup, remove prototype for btrfs_find_root_ref (Bill O'Donnell) [1399590]
-- [fs] btrfs: copy_to_sk drop unused root parameter (Bill O'Donnell) [1399590]
-- [fs] btrfs: simpilify btrfs_subvol_inherit_props (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests, use BTRFS_FS_STATE_DUMMY_FS_INFO instead of dummy root (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests, require fs_info for root (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests, move initialization into tests/ (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_test_opt and friends should take a btrfs_fs_info (Bill O'Donnell) [1399590]
-- [fs] btrfs: plumb fs_info into btrfs_work (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove obsolete part of comment in statfs (Bill O'Donnell) [1399590]
-- [fs] btrfs: hide test-only member under ifdef (Bill O'Donnell) [1399590]
-- [fs] btrfs: Add ratelimit to btrfs printing (Bill O'Donnell) [1399590]
-- [kernel] ratelimit: add initialization macro (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unexpected balance crash due to BUG_ON (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix panic in balance due to EIO (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix eb memory leak due to readpage failure (Bill O'Donnell) [1399590]
-- [fs] btrfs: change BUG_ON()'s to ASSERT()'s in backref_cache_cleanup() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix free space calculation in dump_space_info() (Bill O'Donnell) [1399590]
-- [fs] btrfs: subpage-blocksize: Rate limit scrub error message (Bill O'Donnell) [1399590]
-- [fs] btrfs: expand cow_file_range() to support in-band dedup and subpage-blocksize (Bill O'Donnell) [1399590]
-- [fs] btrfs: make sure device is synced before return (Bill O'Donnell) [1399590]
-- [fs] btrfs: reorg btrfs_close_one_device() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Cleanup compress_file_range() (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup BUG_ON in merge_bio (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix slab accounting flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: Replace -ENOENT by -ERANGE in btrfs_get_acl() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Handle uninitialised inode eviction (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix read_node_slot to return errors (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix double free of fs root (Bill O'Donnell) [1399590]
-- [fs] btrfs: error out if generic_bin_search get invalid arguments (Bill O'Donnell) [1399590]
-- [fs] btrfs: check inconsistence between chunk and block group (Bill O'Donnell) [1399590]
-- [fs] btrfs: add missing bytes_readonly attribute file in sysfs (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix delalloc accounting after copy_from_user faults (Bill O'Donnell) [1399590]
-- [fs] btrfs: avoid deadlocks during reservations in btrfs_truncate_block (Bill O'Donnell) [1399590]
-- [fs] btrfs: use FLUSH_LIMIT for relocation in reserve_metadata_bytes (Bill O'Donnell) [1399590]
-- [fs] btrfs: fill relocation block rsv after allocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: always use trans->block_rsv for orphans (Bill O'Donnell) [1399590]
-- [fs] btrfs: change how we calculate the global block rsv (Bill O'Donnell) [1399590]
-- [fs] btrfs: use root when checking need_async_flush (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't bother kicking async if there's nothing to reclaim (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix release reserved extents trace points (Bill O'Donnell) [1399590]
-- [fs] btrfs: add tracepoints for flush events (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix delalloc reservation amount tracepoint (Bill O'Donnell) [1399590]
-- [fs] btrfs: trace pinned extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce ticketed enospc infrastructure (Bill O'Donnell) [1399590]
-- [fs] btrfs: add tracepoint for adding block groups (Bill O'Donnell) [1399590]
-- [fs] btrfs: warn_on for unaccounted spaces (Bill O'Donnell) [1399590]
-- [fs] btrfs: change delayed reservation fallback behavior (Bill O'Donnell) [1399590]
-- [fs] btrfs: always reserve metadata for delalloc extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix callers of btrfs_block_rsv_migrate (Bill O'Donnell) [1399590]
-- [fs] btrfs: add bytes_readonly to the spaceinfo at once (Bill O'Donnell) [1399590]
-- [fs] btrfs: Force stripesize to the value of sectorsize (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix disk_i_size update bug when fallocate() fails (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix error handling in map_private_extent_buffer (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix error return code in btrfs_init_test_fs() (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't do nocow check unless we have to (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix deadlock in delayed_ref_async_start (Bill O'Donnell) [1399590]
-- [fs] btrfs: track transid for delayed ref flushing (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_check_super_valid: Allow 4096 as stripesize (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove build fixup for qgroup_account_snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: use new error message helper in qgroup_account_snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: avoid blocking open_ctree from cleaner_kthread (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't BUG_ON() in btrfs_orphan_add (Bill O'Donnell) [1399590]
-- [fs] btrfs: account for non-CoW'd blocks in btrfs_abort_transaction (Bill O'Donnell) [1399590]
-- [fs] btrfs: check if extent buffer is aligned to sectorsize (Bill O'Donnell) [1399590]
-- [fs] btrfs: Use correct format specifier (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Fix extent buffer bitmap test fail on BE system (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Fix test_bitmaps fail on 64k sectorsize (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Use macros instead of constants and add missing newline (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Support testing all possible sectorsizes and nodesizes (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Execute page straddling test only when nodesize < PAGE_SIZE (Bill O'Donnell) [1399590]
-- [fs] btrfs: advertise which crc32c implementation is being used at module load (Bill O'Donnell) [1399590]
-- [fs] btrfs: add validadtion checks for chunk loading (Bill O'Donnell) [1399590]
-- [fs] btrfs: add more validation checks for superblock (Bill O'Donnell) [1399590]
-- [fs] btrfs: clear uptodate flags of pages in sys_array eb (Bill O'Donnell) [1399590]
-- [fs] btrfs: deal with duplciates during extent_map insertion in btrfs_get_extent (Bill O'Donnell) [1399590]
-- [fs] btrfs: self-tests: Support non-4k page size (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix integer overflow when calculating bytes_per_bitmap (Bill O'Donnell) [1399590]
-- [fs] btrfs: test_check_exists: Fix infinite loop when searching for free space entries (Bill O'Donnell) [1399590]
-- [fs] btrfs: end transaction if we abort when creating uuid root (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between device replace and read repair (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between device replace and discard (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between device replace and chunk allocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race setting block group back to RW mode during device replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unprotected assignment of the left cursor for device replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race setting block group readonly during device replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between device replace and block group removal (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between readahead and device replace/removal (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix handling of faults from btrfs_copy_from_user (Bill O'Donnell) [1399590]
-- [fs] btrfs: scrub: Set bbio to NULL before calling btrfs_map_block (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unexpected return value of fiemap (Bill O'Donnell) [1399590]
-- [fs] btrfs: free sys_array eb as soon as possible (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak during RAID 5/6 device replacement (Bill O'Donnell) [1399590]
-- [fs] btrfs: add semaphore to synchronize direct IO writes with fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between block group relocation and nocow writes (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between fsync and direct IO writes for prealloc extents (Bill O'Donnell) [1399590]
-- [fs] btrfs: pin log earlier when renaming (Bill O'Donnell) [1399590]
-- [fs] btrfs: unpin log if rename operation fails (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't do unnecessary delalloc flushes when relocating (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't wait for unrelated IO to finish before relocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix empty symlink after creating symlink and fsync parent dir (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix for incorrect directory entries after fsync log replay (Bill O'Donnell) [1399590]
-- [fs] btrfs: build fixup for qgroup_account_snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: qgroup: Fix qgroup accounting when creating snapshot (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix fspath error deallocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: make find_workspace warn if there are no workspaces (Bill O'Donnell) [1399590]
-- [fs] btrfs: make find_workspace always succeed (Bill O'Donnell) [1399590]
-- [fs] btrfs: preallocate compression workspaces (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename and document compression workspace members (Bill O'Donnell) [1399590]
-- [fs] btrfs: GFP_NOFS does not GFP_HIGHMEM (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch to common message helpers in open_ctree, adjust messages (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix int32 overflow in shrink_delalloc() (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't force mounts to wait for cleaner_kthread to delete one or more subvolumes (Bill O'Donnell) [1399590]
-- [fs] btrfs: add write protection to SET_FEATURES ioctl (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lock dep warning move scratch super outside of chunk_mutex (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix BUG_ON condition in scrub_setup_recheck_block() (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove BUG_ON()'s in btrfs_map_block (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix divide error upon chunk's stripe_len (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: protect reading label by lock (Bill O'Donnell) [1399590]
-- [fs] btrfs: add check to sysfs handler of label (Bill O'Donnell) [1399590]
-- [fs] btrfs: add read-only check to sysfs handler of features (Bill O'Donnell) [1399590]
-- [fs] btrfs: reuse existing variable in scrub_stripe, reduce stack usage (Bill O'Donnell) [1399590]
-- [fs] btrfs: use dynamic allocation for root item in create_subvol (Bill O'Donnell) [1399590]
-- [fs] btrfs: clone: use vmalloc only as fallback for nodesize bufer (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use vmalloc only as fallback for clone_sources_tmp (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use vmalloc only as fallback for clone_roots (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use temporary variable to store allocation size (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use vmalloc only as fallback for read_buf (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use vmalloc only as fallback for send_buf (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lock dep warning, move scratch dev out of device_list_mutex and uuid_mutex (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: silence an integer overflow warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: avoid overflowing f_bfree (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix mixed block count of available space (Bill O'Donnell) [1399590]
-- [fs] btrfs: allow balancing to dup with multi-device (Bill O'Donnell) [1399590]
-- [fs] btrfs: ioctl: reorder exclusive op check in RM_DEV (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup assigning next active device with a check (Bill O'Donnell) [1399590]
-- [fs] btrfs: s_bdev is not null after missing replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: pass the right error code to the btrfs_std_error (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to convert_extent_bit (Bill O'Donnell) [1399590]
-- [fs] btrfs: make state preallocation more speculative in __set_extent_bit (Bill O'Donnell) [1399590]
-- [fs] btrfs: untangle gotos a bit in convert_extent_bit (Bill O'Donnell) [1399590]
-- [fs] btrfs: untangle gotos a bit in __clear_extent_bit (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_record_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_extent_new (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_extent_defrag (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_extent_delalloc (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to clear_extent_dirty (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to clear_record_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to clear_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink gfp parameter to set_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs_tree.h migration, item types and defines (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, move struct btrfs_ioctl_defrag_range_args (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, move balance flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, move feature flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, qgroup limit flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: uapi/linux/btrfs.h migration, move BTRFS_LABEL_SIZE (Bill O'Donnell) [1399590]
-- [fs] btrfs: refactor btrfs_dev_replace_start for reuse (Bill O'Donnell) [1399590]
-- [fs] btrfs: use fs_info directly (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename flags for vol args v2 (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename btrfs_find_device_by_user_input (Bill O'Donnell) [1399590]
-- [fs] btrfs: use existing device constraints table btrfs_raid_array (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce raid-type to error-code table, for minimum device constraint (Bill O'Donnell) [1399590]
-- [fs] btrfs: pass number of devices to btrfs_check_raid_min_devices (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename __check_raid_min_devices (Bill O'Donnell) [1399590]
-- [fs] btrfs: optimize check for stale device (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce device delete by devid (Bill O'Donnell) [1399590]
-- [fs] btrfs: make use of btrfs_scratch_superblocks() in btrfs_rm_device() (Bill O'Donnell) [1399590]
-- [fs] btrfs: enhance btrfs_find_device_by_user_input() to check device path (Bill O'Donnell) [1399590]
-- [fs] btrfs: make use of btrfs_find_device_by_user_input() (Bill O'Donnell) [1399590]
-- [fs] btrfs: create helper btrfs_find_device_by_user_input() (Bill O'Donnell) [1399590]
-- [fs] btrfs: clean up and optimize __check_raid_min_device() (Bill O'Donnell) [1399590]
-- [fs] btrfs: create helper function __check_raid_min_devices() (Bill O'Donnell) [1399590]
-- [fs] btrfs: create a helper function to read the disk super (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not create empty block group if we have allocated data (Bill O'Donnell) [1399590]
-- [fs] btrfs: __btrfs_buffered_write: Pass valid file offset when releasing delalloc space (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup error handling in extent_write_cached_pages (Bill O'Donnell) [1399590]
-- [fs] btrfs: make mapping->writeback_index point to the last written page (Bill O'Donnell) [1399590]
-- [fs] btrfs: bugfix: handle FS_IOC32_{GETFLAGS, SETFLAGS, GETVERSION} in btrfs_ioctl (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix typos in comments (Bill O'Donnell) [1399590]
-- [fs] btrfs: Refactor btrfs_lock_cluster() to kill compiler warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove save_error_info() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Simplify conditions about compress while mapping btrfs flags to inode flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: move error handling code together in ctree.h (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove unused function btrfs_assert() (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename btrfs_std_error to btrfs_handle_fs_error (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix file/data loss caused by fsync after rename and new inode (Bill O'Donnell) [1399590]
-- [fs] btrfs: Reset IO error counters before start of device replacing (Bill O'Donnell) [1399590]
-- [fs] btrfs: Add qgroup tracing (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't use src fd for printk (Bill O'Donnell) [1399590]
-- [fs] btrfs: fallback to vmalloc in btrfs_compare_tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: handle non-fatal errors in btrfs_qgroup_inherit() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Output more info for enospc_debug mount option (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix invalid reference in replace_path (Bill O'Donnell) [1399590]
-- [fs] btrfs: Improve FL_KEEP_SIZE handling in fallocate (Bill O'Donnell) [1399590]
-- [fs] btrfs: transaction_kthread() is not freezable (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleaner_kthread() doesn't need explicit freeze (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not write corrupted metadata blocks to disk (Bill O'Donnell) [1399590]
-- [fs] btrfs: csum_tree_block: return proper errno value (Bill O'Donnell) [1399590]
-- [fs] btrfs: use radix_tree_iter_retry() (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix misspellings in comments (Bill O'Donnell) [1399590]
-- [fs] btrfs: Print Warning only if ENOSPC_DEBUG is enabled (Bill O'Donnell) [1399590]
-- [fs] btrfs: scrub: silence an uninitialized variable warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: move btrfs_compression_type to compression.h (Bill O'Donnell) [1399590]
-- [fs] btrfs: rename btrfs_print_info to btrfs_print_mod_info (Bill O'Donnell) [1399590]
-- [fs] btrfs: Show a warning message if one of objectid reaches its highest value (Bill O'Donnell) [1399590]
-- [fs] btrfs: use kbasename in btrfsic_mount (Bill O'Donnell) [1399590]
-- [fs] btrfs: do not collect ordered extents when logging that inode exists (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race when checking if we can skip fsync'ing an inode (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix listxattrs not listing all xattrs packed in the same item (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix deadlock between direct IO reads and buffered writes (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix extent_same allowing destination offset beyond i_size (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix file loss on log replay after renaming a file and fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unreplayable log after snapshot delete + parent dir fsync (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix lockdep deadlock warning due to dev_replace (Bill O'Donnell) [1399590]
-- [fs] btrfs: drop unused argument in btrfs_ioctl_get_supported_features (Bill O'Donnell) [1399590]
-- [fs] btrfs: add GET_SUPPORTED_FEATURES to the control device ioctls (Bill O'Donnell) [1399590]
-- [fs] btrfs: change max_inline default to 2048 (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove error message from search ioctl for nonexistent tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: avoid uninitialized variable warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leak of fs_info in block group cache (Bill O'Donnell) [1399590]
-- [fs] btrfs: Continue write in case of can_not_nocow (Bill O'Donnell) [1399590]
-- [fs] btrfs: drop null testing before destroy functions (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix build warning (Bill O'Donnell) [1399590]
-- [fs] btrfs: use proper type for failrec in extent_state (Bill O'Donnell) [1399590]
-- [fs] btrfs: Replace CURRENT_TIME by current_fs_time() (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove open-coded swap() in backref.c:__merge_refs (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove redundant error check (Bill O'Donnell) [1399590]
-- [fs] btrfs: simplify expression in btrfs_calc_trans_metadata_size() (Bill O'Donnell) [1399590]
-- [fs] btrfs: check reserved when deciding to background flush (Bill O'Donnell) [1399590]
-- [fs] btrfs: add transaction space reservation tracepoints (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix truncate_space_check (Bill O'Donnell) [1399590]
-- [fs] btrfs: change how we update the global block rsv (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: ignore creating reada_extent for a non-existent device (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: avoid undone reada extents in btrfs_reada_wait (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: limit max works count (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: simplify dev->reada_in_flight processing (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Fix a debug code typo (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Jump into cleanup in direct way for __readahead_hook() (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Use fs_info instead of root in __readahead_hook's argument (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Pass reada_extent into __readahead_hook directly (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: move reada_extent_put to place after __readahead_hook() (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Remove level argument in severial functions (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: bypass adding extent when all zone failed (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: add all reachable mirrors into reada device list (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Move is_need_to_readahead contition earlier (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Avoid many times of empty loop (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Add missed segment checking in reada_find_zone (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: reduce additional fs_info->reada_lock in reada_find_zone (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: Fix in-segment calculation for reada (Bill O'Donnell) [1399590]
-- [fs] btrfs: Introduce new mount option alias for nologreplay (Bill O'Donnell) [1399590]
-- [fs] btrfs: Introduce new mount option to disable tree log replay (Bill O'Donnell) [1399590]
-- [fs] btrfs: Introduce new mount option usebackuproot to replace recovery (Bill O'Donnell) [1399590]
-- [fs] btrfs: teach print_leaf about temporary item subtypes (Bill O'Donnell) [1399590]
-- [fs] btrfs: teach print_leaf about permanent item subtypes (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch dev stats item to the permanent item key (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce key type for persistent permanent items (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch balance item to the temporary item key (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce key type for persistent temporary items (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch to kcalloc in btrfs_cmp_data_prepare (Bill O'Donnell) [1399590]
-- [fs] btrfs: extent same: use GFP_KERNEL for page array allocations (Bill O'Donnell) [1399590]
-- [fs] btrfs: device add and remove: use GFP_KERNEL (Bill O'Donnell) [1399590]
-- [fs] btrfs: readdir: use GFP_KERNEL (Bill O'Donnell) [1399590]
-- [fs] btrfs: fallocate: use GFP_KERNEL (Bill O'Donnell) [1399590]
-- [fs] btrfs: let callers of btrfs_alloc_root pass gfp flags (Bill O'Donnell) [1399590]
-- [fs] btrfs: scrub: use GFP_KERNEL on the submission path (Bill O'Donnell) [1399590]
-- [fs] btrfs: reada: use GFP_KERNEL everywhere (Bill O'Donnell) [1399590]
-- [fs] btrfs: send: use GFP_KERNEL everywhere (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove no longer used function extent_read_full_page_nolock() (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_ioctl_clone: Truncate complete page after performing clone operation (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix block size returned to user space (Bill O'Donnell) [1399590]
-- [fs] btrfs: Limit inline extents to root->sectorsize (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_submit_direct_hook: Handle map_length < bio vector length (Bill O'Donnell) [1399590]
-- [fs] btrfs: Use eb->start, seq as search key for tree modification log (Bill O'Donnell) [1399590]
-- [fs] btrfs: Search for all ordered extents that could span across a page (Bill O'Donnell) [1399590]
-- [fs] btrfs: btrfs_page_mkwrite: Reserve space in sectorsized units (Bill O'Donnell) [1399590]
-- [fs] btrfs: fallocate: Work with sectorsized blocks (Bill O'Donnell) [1399590]
-- [fs] btrfs: direct i/o read: Work on sectorsized blocks (Bill O'Donnell) [1399590]
-- [fs] btrfs: __btrfs_buffered_write: Reserve/release extents aligned to block size (Bill O'Donnell) [1399590]
-- [fs] btrfs: revert: btrfs: synchronize incompat feature bits with sysfs files (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't use GFP_HIGHMEM for free-space-tree bitmap kzalloc (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: check initialization state before updating features (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between fsync and lockless direct IO writes (Bill O'Donnell) [1399590]
-- [fs] btrfs: add free space tree to the cow-only list (Bill O'Donnell) [1399590]
-- [fs] btrfs: add free space tree to lockdep classes (Bill O'Donnell) [1399590]
-- [fs] btrfs: tweak free space tree bitmap allocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: tests: switch to GFP_KERNEL (Bill O'Donnell) [1399590]
-- [fs] btrfs: synchronize incompat feature bits with sysfs files (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: introduce helper for syncing bits with sysfs files (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: add free-space-tree bit attribute (Bill O'Donnell) [1399590]
-- [fs] btrfs: sysfs: fix typo in compat_ro attribute definition (Bill O'Donnell) [1399590]
-- [fs] btrfs: raid56: Use raid_write_end_io for scrub (Bill O'Donnell) [1399590]
-- [fs] btrfs: Remove unnecessary ClearPageUptodate for raid56 (Bill O'Donnell) [1399590]
-- [fs] btrfs: use rbio->nr_pages to reduce calculation (Bill O'Donnell) [1399590]
-- [fs] btrfs: Use unified stripe_page's index calculation (Bill O'Donnell) [1399590]
-- [fs] btrfs: Fix calculation of rbio->dbitmap's size calculation (Bill O'Donnell) [1399590]
-- [fs] btrfs: merge functions for wait snapshot creation (Bill O'Donnell) [1399590]
-- [fs] btrfs: delete unused argument in btrfs_copy_from_user (Bill O'Donnell) [1399590]
-- [fs] btrfs: Use direct way to determine raid56 write/recover mode (Bill O'Donnell) [1399590]
-- [fs] btrfs: Small cleanup for get index_srcdev loop (Bill O'Donnell) [1399590]
-- [fs] btrfs: Enhance chunk validation check (Bill O'Donnell) [1399590]
-- [fs] btrfs: Enhance super validation check (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix typo in log message when starting a balance (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove duplicate const specifier (Bill O'Donnell) [1399590]
-- [fs] btrfs: clean up an error code in btrfs_init_space_info() (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix iterator with update error in backref.c (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix output of compression message in btrfs_parse_options() (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup, stop casting for extent_map->lookup everywhere (Bill O'Donnell) [1399590]
-- [fs] btrfs: Check metadata redundancy on balance (Bill O'Donnell) [1399590]
-- [fs] btrfs: preallocate path for snapshot creation at ioctl time (Bill O'Donnell) [1399590]
-- [fs] btrfs: allocate root item at snapshot ioctl time (Bill O'Donnell) [1399590]
-- [fs] btrfs: do an allocation earlier during snapshot creation (Bill O'Donnell) [1399590]
-- [fs] btrfs: use smaller type for btrfs_path locks (Bill O'Donnell) [1399590]
-- [fs] btrfs: use smaller type for btrfs_path lowest_level (Bill O'Donnell) [1399590]
-- [fs] btrfs: use smaller type for btrfs_path reada (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup, use enum values for btrfs_path reada (Bill O'Donnell) [1399590]
-- [fs] btrfs: constify static arrays (Bill O'Donnell) [1399590]
-- [fs] btrfs: constify remaining structs with function pointers (Bill O'Donnell) [1399590]
-- [fs] btrfs tests: replace whole ops structure for free space tests (Bill O'Donnell) [1399590]
-- [fs] btrfs: use list_for_each_entry* in backref.c (Bill O'Donnell) [1399590]
-- [fs] btrfs: use list_for_each_entry_safe in free-space-cache.c (Bill O'Donnell) [1399590]
-- [fs] btrfs: use list_for_each_entry* in check-integrity.c (Bill O'Donnell) [1399590]
-- [fs] btrfs: use linux/sizes.h to represent constants (Bill O'Donnell) [1399590]
-- [fs] btrfs: cleanup, remove stray return statements (Bill O'Donnell) [1399590]
-- [fs] btrfs: zero out delayed node upon allocation (Bill O'Donnell) [1399590]
-- [fs] btrfs: pass proper enum type to start_transaction() (Bill O'Donnell) [1399590]
-- [fs] btrfs: switch __btrfs_fs_incompat return type from int to bool (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove unused inode argument from uncompress_inline() (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't use slab cache for struct btrfs_delalloc_work (Bill O'Donnell) [1399590]
-- [fs] btrfs: drop duplicate prefix from scrub workqueues (Bill O'Donnell) [1399590]
-- [fs] btrfs: verbose error when we find an unexpected item in sys_array (Bill O'Donnell) [1399590]
-- [fs] btrfs: better packing of btrfs_delayed_extent_op (Bill O'Donnell) [1399590]
-- [fs] btrfs: Support convert to -d dup for btrfs-convert (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't leave dangling dentry if symlink creation failed (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race between free space endio workers and space cache writeout (Bill O'Donnell) [1399590]
-- [fs] btrfs: don't run delayed references while we are creating the free space tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix compiling with CONFIG_BTRFS_DEBUG enabled (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix unprotected list operations at btrfs_write_dirty_block_groups (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix locking bugs when defragging leaves (Bill O'Donnell) [1399590]
-- [fs] btrfs: add free space tree mount option (Bill O'Donnell) [1399590]
-- [fs] btrfs: wire up the free space tree to the extent tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: add free space tree sanity tests (Bill O'Donnell) [1399590]
-- [fs] btrfs: implement the free space B-tree (Bill O'Donnell) [1399590]
-- [fs] btrfs: introduce the free space B-tree on-disk format (Bill O'Donnell) [1399590]
-- [fs] btrfs: refactor caching_thread() (Bill O'Donnell) [1399590]
-- [fs] btrfs: add helpers for read-only compat bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: add extent buffer bitmap sanity tests (Bill O'Donnell) [1399590]
-- [fs] btrfs: add extent buffer bitmap operations (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix deadlock between direct IO write and defrag/readpages (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix memory leaks after transaction is aborted (Bill O'Donnell) [1399590]
-- [fs] btrfs: fix race when finishing dev replace leading to transaction abort (Bill O'Donnell) [1399590]
-- [fs] btrfs: make set_range_writeback return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make extent_range_redirty_for_io return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make extent_range_clear_dirty_for_io return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make end_extent_writepage return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make extent_clear_unlock_delalloc return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make clear_extent_buffer_uptodate return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: make set_extent_buffer_uptodate return void (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove a trivial helper btrfs_set_buffer_uptodate (Bill O'Donnell) [1399590]
-- [fs] btrfs: use GFP_KERNEL for xattr and acl allocations (Bill O'Donnell) [1399590]
-- [fs] btrfs: use GFP_KERNEL for allocations of workqueues (Bill O'Donnell) [1399590]
-- [fs] btrfs: use GFP_KERNEL for allocations in ioctl handlers (Bill O'Donnell) [1399590]
-- [fs] btrfs: remove wait from struct btrfs_delalloc_work (Bill O'Donnell) [1399590]
-- [fs] btrfs: sink parameter wait to btrfs_alloc_delalloc_work (Bill O'Donnell) [1399590]
-- [fs] btrfs: make btrfs_close_one_device static (Bill O'Donnell) [1399590]
-- [fs] btrfs: make lock_extent static inline (Bill O'Donnell) [1399590]
-- [fs] btrfs: drop unused parameter from lock_extent_bits (Bill O'Donnell) [1399590]
-- [fs] btrfs: make clear_extent_bit helpers static inline (Bill O'Donnell) [1399590]
-- [fs] btrfs: make set_extent_bit helpers static inline (Bill O'Donnell) [1399590]
-
-* Fri Mar 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-617.el7]
-- [mmc] core: fix multi-bit bus width without high-speed mode (Don Zickus) [1430497]
-- [mmc] sdhci: Ignore unexpected CARD_INT interrupts (Don Zickus) [1430497]
-- [mmc] core: Restore parts of the polling policy when switch to HS/HS DDR (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Only powered up enabled acpi child devices (Don Zickus) [1430497]
-- [mmc] sd: Meet alignment requirements for raw_ssr DMA (Don Zickus) [1430497]
-- [mmc] core: Further fix thread wake-up (Don Zickus) [1430497]
-- [mmc] sdhci: Fix to handle MMC_POWER_UNDEFINED (Don Zickus) [1430497]
-- [mmc] sdhci-cadence: add Socionext UniPhier specific compatible string (Don Zickus) [1430497]
-- [mmc] block: Move files to core (Don Zickus) [1430497]
-- [mmc] sdhci-cadence: add Cadence SD4HC support (Don Zickus) [1430497]
-- [mmc] sdhci: export sdhci_execute_tuning() (Don Zickus) [1430497]
-- [mmc] sdhci: Tidy tuning loop (Don Zickus) [1430497]
-- [mmc] sdhci: Simplify tuning block size logic (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out tuning helper functions (Don Zickus) [1430497]
-- [mmc] sdhci: Use mmc_abort_tuning() (Don Zickus) [1430497]
-- [mmc] mmc: Introduce mmc_abort_tuning() (Don Zickus) [1430497]
-- [mmc] sdhci: Always allow tuning to fall back to fixed sampling (Don Zickus) [1430497]
-- [mmc] sdhci: Fix tuning reset after exhausting the maximum number of loops (Don Zickus) [1430497]
-- [mmc] sdhci: Fix recovery from tuning timeout (Don Zickus) [1430497]
-- [mmc] revert "mmc: sdhci: Reset cmd and data circuits after tuning failure" (Don Zickus) [1430497]
-- [mmc] mmc: Relax checking for switch errors after HS200 switch (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: support 80860F14 UID 2 SDIO bus (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Use ACPI to get max frequency for Intel NI byt sdio (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Add PCI ID for Intel NI byt sdio (Don Zickus) [1430497]
-- [mmc] mmc_test: remove BUG_ONs and deploy error handling (Don Zickus) [1430497]
-- [mmc] queue: remove BUG_ON for bounce_sg (Don Zickus) [1430497]
-- [mmc] sdio_uart: remove meaningless BUG_ON (Don Zickus) [1430497]
-- [mmc] core: remove BUG_ONs from core.c (Don Zickus) [1430497]
-- [mmc] core: remove BUG_ONs from sd (Don Zickus) [1430497]
-- [mmc] core: remove BUG_ONs from mmc (Don Zickus) [1430497]
-- [mmc] debugfs: remove BUG_ON from mmc_ext_csd_open (Don Zickus) [1430497]
-- [mmc] core: remove BUG_ONs from sdio (Don Zickus) [1430497]
-- [mmc] mmc: Add Command Queue definitions (Don Zickus) [1430497]
-- [mmc] queue: Introduce queue depth and use it to allocate and free (Don Zickus) [1430497]
-- [mmc] queue: Factor out mmc_queue_reqs_free_bufs() (Don Zickus) [1430497]
-- [mmc] queue: Factor out mmc_queue_alloc_sgs() (Don Zickus) [1430497]
-- [mmc] queue: Factor out mmc_queue_alloc_bounce_sgs() (Don Zickus) [1430497]
-- [mmc] queue: Factor out mmc_queue_alloc_bounce_bufs() (Don Zickus) [1430497]
-- [mmc] queue: Fix queue thread wake-up (Don Zickus) [1430497]
-- [mmc] block: Fix 4K native sector check (Don Zickus) [1430497]
-- [mmc] block: Restore line inadvertently removed with packed commands (Don Zickus) [1430497]
-- [mmc] sdhci-of-esdhc: fix host version for T4240-R1.0-R2.0 (Don Zickus) [1430497]
-- [mmc] block: delete packed command support (Don Zickus) [1430497]
-- [mmc] delete is_first_req parameter from pre-request callback (Don Zickus) [1430497]
-- [mmc] core: Update CMD13 polling policy when switch to HS DDR mode (Don Zickus) [1430497]
-- [mmc] core: Allow CMD13 polling when switching to HS mode for mmc (Don Zickus) [1430497]
-- [mmc] core: Enable __mmc_switch() to change bus speed timing for the host (Don Zickus) [1430497]
-- [mmc] core: Check SWITCH_ERROR bit from each CMD13 response when polling (Don Zickus) [1430497]
-- [mmc] core: Rename ignore_crc to retry_crc_err to reflect its purpose (Don Zickus) [1430497]
-- [mmc] core: Remove redundant __mmc_send_status() (Don Zickus) [1430497]
-- [mmc] core: Retry instead of ignore at CRC errors when polling for busy (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Allow deferred probe for sd card detect gpio (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Add support for Intel GLK (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_enable_clk (Don Zickus) [1430497]
-- [mmc] dw_mmc: use the cookie's enum values for post/pre_req() (Don Zickus) [1430497]
-- [mmc] block: move packed command struct init (Don Zickus) [1430497]
-- [mmc] block: rename data to blkdata (Don Zickus) [1430497]
-- [mmc] mmc_test: Uninitialized return value (Don Zickus) [1430497]
-- [mmc] sdhci: remove unneeded (void *) casts in sdhci_(pltfm_)priv() (Don Zickus) [1430497]
-- [mmc] core: Add helper to see if a host can be retuned (Don Zickus) [1430497]
-- [mmc] core: use enum mmc_blk_status properly (Don Zickus) [1430497]
-- [mmc] block: convert ecc_err to a bool (Don Zickus) [1430497]
-- [mmc] block: make gen_err a bool variable (Don Zickus) [1430497]
-- [mmc] sdhci: Use sdhci-caps-mask and sdhci-caps to change the caps read during __sdhci_read_caps (Don Zickus) [1430497]
-- [mmc] core: Don't power off the card when starting the host (Don Zickus) [1430497]
-- [mmc] core: expose the capability of gpio card detect (Don Zickus) [1430497]
-- [mmc] core: Don't use ->card_busy() and CMD13 in combination when polling (Don Zickus) [1430497]
-- [mmc] core: Factor out code related to polling in __mmc_switch() (Don Zickus) [1430497]
-- [mmc] core: Clarify code which deals with polling in __mmc_switch() (Don Zickus) [1430497]
-- [mmc] core: Make mmc_switch_status() available for mmc core (Don Zickus) [1430497]
-- [mmc] rtsx_usb_sdmmc: Enable runtime PM autosuspend (Don Zickus) [1430497]
-- [mmc] sdhci: put together into one condition checking (Don Zickus) [1430497]
-- [mmc] sdhci-of-esdhc: fixup PRESENT_STATE read (Don Zickus) [1430497]
-- [mmc] mmc: Use 500ms as the default generic CMD6 timeout (Don Zickus) [1430497]
-- [mmc] mmc_test: Fix "Commands during non-blocking write" tests (Don Zickus) [1430497]
-- [mmc] sdhci: Fix missing enhanced strobe setting during runtime resume (Don Zickus) [1430497]
-- [mmc] sdhci: Reset cmd and data circuits after tuning failure (Don Zickus) [1430497]
-- [mmc] sdhci: Fix unexpected data interrupt handling (Don Zickus) [1430497]
-- [mmc] sdhci: Fix CMD line reset interfering with ongoing data transfer (Don Zickus) [1430497]
-- [mmc] rtsx_usb_sdmmc: Handle runtime PM while changing the led (Don Zickus) [1430497]
-- [mmc] rtsx_usb_sdmmc: Avoid keeping the device runtime resumed when unused (Don Zickus) [1430497]
-- [mmc] sdhci: cast unsigned int to unsigned long long to avoid unexpeted error (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Fix bus power failing to enable for some Intel controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Let devices define their own sdhci_ops (Don Zickus) [1430497]
-- [mmc] sdhci: Rename sdhci_set_power() to sdhci_set_power_noreg() (Don Zickus) [1430497]
-- [mmc] sdhci: Fix SDHCI_QUIRK2_STOP_WITH_TC (Don Zickus) [1430497]
-- [mmc] core: Annotate cmd_hdr as __le32 (Don Zickus) [1430497]
-- [mmc] core: changes frequency to hs_max_dtr when selecting hs400es (Don Zickus) [1430497]
-- [mmc] core: switch to 1V8 or 1V2 for hs400es mode (Don Zickus) [1430497]
-- [mmc] block: add missing header dependencies (Don Zickus) [1430497]
-- [mmc] mfd: rtsx_usb: Avoid setting ucr->current_sg.status (Don Zickus) [1430497]
-- [mmc] core: don't try to switch block size for dual rate mode (Don Zickus) [1430497]
-- [mmc] sdhci-of-arasan: Set controller to test mode when no CD bit (Don Zickus) [1430497]
-- [mmc] rtsx_usb: use new macro for R1 without CRC (Don Zickus) [1430497]
-- [mmc] rtsx_pci: use new macro for R1 without CRC (Don Zickus) [1430497]
-- [mmc] add define for R1 response without CRC (Don Zickus) [1430497]
-- [mmc] card: do away with indirection pointer (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Set MMC_CAP_CMD_DURING_TFR for Intel eMMC controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Set MMC_CAP_CMD_DURING_TFR for Intel eMMC controllers (Don Zickus) [1430497]
-- [mmc] sdhci: Support cap_cmd_during_tfr requests (Don Zickus) [1430497]
-- [mmc] mmc_test: Add tests for sending commands during transfer (Don Zickus) [1430497]
-- [mmc] core: Add support for sending commands during data transfer (Don Zickus) [1430497]
-- [mmc] sdhci-brcmstb: Fix incorrect capability (Don Zickus) [1430497]
-- [mmc] core: Optimize the mmc erase size alignment (Don Zickus) [1430497]
-- [mmc] core: Factor out the alignment of erase size (Don Zickus) [1430497]
-- [mmc] core: Use a default maximum erase timeout (Don Zickus) [1430497]
-- [mmc] sdhci-pci: enable SD card interface on Merrifield (Don Zickus) [1430497]
-- [mmc] sdhci-pci: enable SDIO interface on Intel Merrifield (Don Zickus) [1430497]
-- [mmc] sdhci-pci: refactor intel_mrfld_mmc_probe_slot() (Don Zickus) [1430497]
-- [mmc] dw_mmc: add reset support to dwmmc host controller (Don Zickus) [1430497]
-- [mmc] block: don't use CMD23 with very old MMC cards (Don Zickus) [1430497]
-- [mmc] sdhci: Remove ->platform_init() callback as it's no longer used (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Convert to use managed functions (part2) (Don Zickus) [1430497]
-- [mmc] sdio: deploy error handling instead of triggering BUG_ON (Don Zickus) [1430497]
-- [mmc] block: remove the check of packed for packed request routine (Don Zickus) [1430497]
-- [mmc] core: Add error message when switching fails in mmc_select_hs() (Don Zickus) [1430497]
-- [mmc] sdhci: Do not allow tuning procedure to be interrupted (Don Zickus) [1430497]
-- [mmc] sdhci-brcmstb: Delete owner assignment (Don Zickus) [1430497]
-- [mmc] sd: Export SD Status via "ssr" device attribute (Don Zickus) [1430497]
-- [mmc] vub300: don't print error when allocating urb fails (Don Zickus) [1430497]
-- [mmc] rtsx_pci: Remove deprecated create_singlethread_workqueue (Don Zickus) [1430497]
-- [mmc] rtsx_pci: Enable MMC_CAP_ERASE to allow erase/discard/trim requests (Don Zickus) [1430497]
-- [mmc] rtsx_pci: Use the provided busy timeout from the mmc core (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: Drop define for SDHCI_PLTFM_PMOPS (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: Convert to use the SET_SYSTEM_SLEEP_PM_OPS (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: Make sdhci_pltfm_suspend|resume() static (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Simplify code by using SET_SYSTEM_SLEEP_PM_OPS (Don Zickus) [1430497]
-- [mmc] sdhci-pci-core: Simplify code by using SET_SYSTEM_SLEEP_PM_OPS (Don Zickus) [1430497]
-- [mmc] Change the max discard sectors and erase response when HW busy detect (Don Zickus) [1430497]
-- [mmc] sdhci: Request regulators before reading capabilities (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Use MRFLD as abbreviation of Merrifield (Don Zickus) [1430497]
-- [mmc] sdhci: add standard hw auto retuning support (Don Zickus) [1430497]
-- [mmc] sdhci: using common mmc_regulator_set_vqmmc() (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Convert to use managed functions pcim_* and devm_* (Don Zickus) [1430497]
-- [mmc] core: Extend sysfs with DSR register (Don Zickus) [1430497]
-- [mmc] core: expose MMC_CAP2_NO_* to dt (Don Zickus) [1430497]
-- [mmc] core: Extend sysfs with OCR register (Don Zickus) [1430497]
-- [mmc] sdhci: add define for suspend/resume capability (Don Zickus) [1430497]
-- [mmc] core: Allow hosts to specify non-support for MMC commands (Don Zickus) [1430497]
-- [mmc] sdhci: sdhci_execute_tuning() must delete timer (Don Zickus) [1430497]
-- [mmc] sdhci: Avoid STOP cmd triggering warning in sdhci_send_command() (Don Zickus) [1430497]
-- [mmc] sdhci: Do not reset cmd or data circuits that are in use (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_auto_cmd12() (Don Zickus) [1430497]
-- [mmc] sdhci: Allow for finishing multiple requests (Don Zickus) [1430497]
-- [mmc] sdhci: Separate timer timeout for command and data requests (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_data_line_cmd() (Don Zickus) [1430497]
-- [mmc] sdhci: Ensure all requests get errored out (Don Zickus) [1430497]
-- [mmc] sdhci: Clear pointers when a request finishes (Don Zickus) [1430497]
-- [mmc] sdhci: Track whether a reset is pending (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_needs_reset() (Don Zickus) [1430497]
-- [mmc] sdhci: Factor out sdhci_finish_mrq() (Don Zickus) [1430497]
-- [mmc] sdhci: Move host->data warning (Don Zickus) [1430497]
-- [mmc] sdhci: Reduce the use of host->mrq (Don Zickus) [1430497]
-- [mmc] sdhci: Get rid of host->busy_handle (Don Zickus) [1430497]
-- [mmc] sdhci: Record what command is using the data lines (Don Zickus) [1430497]
-- [mmc] sdhci: Simplify sdhci_finish_command() by clearing host->cmd at the start (Don Zickus) [1430497]
-- [mmc] sdhci: Get rid of redundant BUG_ONs (Don Zickus) [1430497]
-- [mmc] sdhci: Move busy signal handling into sdhci_finish_cmd() (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Do not runtime suspend at the end of sdhci_pci_probe() (Don Zickus) [1430497]
-- [mmc] sdhci: Add sdhci_read_caps() (Don Zickus) [1430497]
-- [mmc] sdhci: Tidy caps variables in sdhci_setup_host() (Don Zickus) [1430497]
-- [mmc] sdhci: Make signal voltage support explicit (Don Zickus) [1430497]
-- [mmc] sdhci: Split sdhci_add_host() (Don Zickus) [1430497]
-- [mmc] sdhci: Do not call implementations of mmc host ops directly (Don Zickus) [1430497]
-- [mmc] dw_mmc: remove the quirks flags (Don Zickus) [1430497]
-- [mmc] core: Allow hosts to specify non-support for SD commands (Don Zickus) [1430497]
-- [mmc] sdhci: use pr_err for sdhci_dumpregs (Don Zickus) [1430497]
-- [mmc] host: use the defined function to check whether card is removable (Don Zickus) [1430497]
-- [mmc] sdhci-of-arasan: Add ability to export card clock (Don Zickus) [1430497]
-- [mmc] sdhci-brcmstb: Add driver for Broadcom BRCMSTB SoCs (Don Zickus) [1430497]
-- [mmc] block: Fix tag condition with packed writes (Don Zickus) [1430497]
-- [mmc] core: Disable HPI for certain Hynix eMMC cards (Don Zickus) [1430497]
-- [mmc] core: Only change mode if mmc_select_bus_width() is successful (Don Zickus) [1430497]
-- [mmc] Set pref erase size based on size (Don Zickus) [1430497]
-- [mmc] mmc: Fix HS switch failure in mmc_select_hs400() (Don Zickus) [1430497]
-- [mmc] mmc: fix switch timeout issue caused by jiffies precision (Don Zickus) [1430497]
-- [mmc] mmc: do not use CMD13 to get status after speed mode switch (Don Zickus) [1430497]
-- [mmc] mmc: Use ->card_busy() to detect busy cards in __mmc_switch() (Don Zickus) [1430497]
-- [mmc] sdhci: Fix sdhci_card_busy() (Don Zickus) [1430497]
-- [mmc] debugfs: add HS400 enhanced strobe description (Don Zickus) [1430497]
-- [mmc] core: implement enhanced strobe support (Don Zickus) [1430497]
-- [mmc] core: add mmc-hs400-enhanced-strobe support (Don Zickus) [1430497]
-- [mmc] sdhci: fix wakeup configuration (Don Zickus) [1430497]
-- [mmc] block: correct 4KB alignment check (Don Zickus) [1430497]
-- [mmc] sdhci: remove comment regarding timeout during tuning (Don Zickus) [1430497]
-- [mmc] block: fix packed command header endianness (Don Zickus) [1430497]
-- [mmc] block: fix free of uninitialized 'idata->buf' (Don Zickus) [1430497]
-- [mmc] x86, mmc: Use Intel family name macros for mmc driver (Don Zickus) [1430497]
-- [mmc] fix mmc mode selection for HS-DDR and higher (Don Zickus) [1430497]
-- [mmc] remove lots of IS_ERR_VALUE abuses (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Remove MMC_CAP_BUS_WIDTH_TEST for Intel controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Remove MMC_CAP_BUS_WIDTH_TEST for Intel controllers (Don Zickus) [1430497]
-- [mmc] longer timeout for long read time quirk (Don Zickus) [1430497]
-- [mmc] block: Pause re-tuning while switched to the RPMB partition (Don Zickus) [1430497]
-- [mmc] block: Always switch back to main area after RPMB access (Don Zickus) [1430497]
-- [mmc] core: Add a facility to "pause" re-tuning (Don Zickus) [1430497]
-- [mmc] mmc: Fix partition switch timeout for some eMMCs (Don Zickus) [1430497]
-- [mmc] sdio: fall back to SDIO 1.0 for broken 1.1 cards (Don Zickus) [1430497]
-- [mmc] block: improve logging of handling emmc timeouts (Don Zickus) [1430497]
-- [mmc] sdhci: removed unneeded function wrappers (Don Zickus) [1430497]
-- [mmc] core: remove the invalid message in mmc_select_timing (Don Zickus) [1430497]
-- [mmc] core: fix using wrong io voltage if mmc_select_hs200 fails (Don Zickus) [1430497]
-- [mmc] mmc: Attempt to flush cache before reset (Don Zickus) [1430497]
-- [mmc] sh_mmcif: remove obsolete support for sh7372 (Don Zickus) [1430497]
-- [mmc] block: Convert to IDA for partition device indexes (Don Zickus) [1430497]
-- [mmc] block: Release index in partition allocation error path (Don Zickus) [1430497]
-- [mmc] core: Convert from IDR to IDA for host indexes (Don Zickus) [1430497]
-- [mmc] sdhci: use IS_ENABLE(CONFIG_LEDS_CLASS) to enable LED struct members (Don Zickus) [1430497]
-- [mmc] sdhci: use IS_REACHABLE(CONFIG_LEDS_CLASS) to enable LED code (Don Zickus) [1430497]
-- [mmc] sdhci: Remove SDHCI_SDR104_NEEDS_TUNING (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: call platform_get_irq() before sdhci_alloc_host() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: move devm_ioremap_resource() up (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: use devm_ioremap_resource() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: use devm_ioremap() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: use devm_request_mem_region() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: check return value of platform_get_irq() (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: drop error message for too small MMIO resource size (Don Zickus) [1430497]
-- [mmc] core: drop unnecessary bit checking (Don Zickus) [1430497]
-- [mmc] sdhci: Tidy together LED code (Don Zickus) [1430497]
-- [mmc] sdhci: Fix error paths in sdhci_add_host() (Don Zickus) [1430497]
-- [mmc] sdhci: Remove redundant condition (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Set MMC_CAP_AGGRESSIVE_PM for Broxton controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Set MMC_CAP_AGGRESSIVE_PM for Broxton controllers (Don Zickus) [1430497]
-- [mmc] sdhci: Remove SDHCI_QUIRK2_NEED_DELAY_AFTER_INT_CLK_RST (Don Zickus) [1430497]
-- [mmc] sdhci: Introduce sdhci_calc_clk() (Don Zickus) [1430497]
-- [mmc] sdhci: Move sdhci_runtime_pm_bus_off|on() to avoid pre-definition (Don Zickus) [1430497]
-- [mmc] sdhci-pic32: remove owner assignment (Don Zickus) [1430497]
-- [mmc] sdhci: Remove redundant runtime PM calls (Don Zickus) [1430497]
-- [mmc] core: Do regular power cycle when lacking eMMC HW reset support (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Remove redundant runtime PM calls (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Remove redundant runtime PM calls (Don Zickus) [1430497]
-- [mmc] dw_mmc: remove unused EVENT_XFER_ERROR (Don Zickus) [1430497]
-- [mmc] dw_mmc: fix warning reported by kernel-doc (Don Zickus) [1430497]
-- [mmc] host: add note that set_ios needs to handle 0Hz properly (Don Zickus) [1430497]
-- [mmc] core: Provide tracepoints for request processing (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Reduce Baytrail eMMC/SD/SDIO hangs (Don Zickus) [1430497]
-- [mmc] block: Use the mmc host device index as the mmcblk device index (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Add support and PCI IDs for more Broxton host controllers (Don Zickus) [1430497]
-- [mmc] sdhci: Fix regression setting power on Trats2 board (Don Zickus) [1430497]
-- [mmc] sdhci-pci: Do not set DMA mask in enable_dma() (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: Remove enable_dma() hook (Don Zickus) [1430497]
-- [mmc] sdhci: Set DMA mask when adding host (Don Zickus) [1430497]
-- [mmc] block: fix ABI regression of mmc_blk_ioctl (Don Zickus) [1430497]
-- [mmc] core: remove redundant memset of sdio_read_cccr (Don Zickus) [1430497]
-- [mmc] core: remove redundant memset of mmc_decode_cid (Don Zickus) [1430497]
-- [mmc] sdhci: Fix override of timeout clk wrt max_busy_timeout (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: add QCOM controllers (Don Zickus) [1430497]
-- [mmc] sdhci-pltfm: remove priv variable from sdhci_pltfm_host (Don Zickus) [1430497]
-- [mmc] sdhci: further code simplication (Don Zickus) [1430497]
-- [mmc] sdhci: consolidate the DMA/ADMA size/address quicks (Don Zickus) [1430497]
-- [mmc] sdhci: prepare DMA address/size quirk handling consolidation (Don Zickus) [1430497]
-- [mmc] sdhci: cleanup DMA un-mapping (Don Zickus) [1430497]
-- [mmc] sdhci: clean up host cookie handling (Don Zickus) [1430497]
-- [mmc] sdhci: always unmap a mapped data transfer in sdhci_post_req() (Don Zickus) [1430497]
-- [mmc] sdhci: pass the cookie into sdhci_pre_dma_transfer() (Don Zickus) [1430497]
-- [mmc] sdhci: factor out sdhci_pre_dma_transfer() from sdhci_adma_table_pre() (Don Zickus) [1430497]
-- [mmc] sdhci: move sdhci_pre_dma_transfer() (Don Zickus) [1430497]
-- [mmc] sdhci: factor out common DMA cleanup in sdhci_finish_data() (Don Zickus) [1430497]
-- [mmc] sdhci: avoid walking SG list for writes (Don Zickus) [1430497]
-- [mmc] sdhci: clean up coding style in sdhci_adma_table_pre() (Don Zickus) [1430497]
-- [mmc] sdhci: allocate alignment and DMA descriptor buffer together (Don Zickus) [1430497]
-- [mmc] sdhci: fix data timeout (part 2) (Don Zickus) [1430497]
-- [mmc] sdhci: fix data timeout (part 1) (Don Zickus) [1430497]
-- [mmc] sdhci: further fix for DMA unmapping in sdhci_post_req() (Don Zickus) [1430497]
-- [mmc] sdhci: plug DMA mapping leak on error (Don Zickus) [1430497]
-- [mmc] sdhci: avoid unnecessary mapping/unmapping of align buffer (Don Zickus) [1430497]
-- [mmc] sdhci: fix command response CRC error handling (Don Zickus) [1430497]
-- [mmc] sdhci: clean up command error handling (Don Zickus) [1430497]
-- [mmc] sdhci: move initialisation of command error member (Don Zickus) [1430497]
-- [mmc] sdhci: Allow CAPS check for SDHCI_CAN_64BIT to use overridden caps (Don Zickus) [1430497]
-- [mmc] sdhci-pic32: Add PIC32 SDHCI host controller driver (Don Zickus) [1430497]
-- [mmc] dw_mmc: remove DW_MCI_QUIRK_BROKEN_CARD_DETECTION quirk (Don Zickus) [1430497]
-- [mmc] dw_mmc: remove struct block_settings (Don Zickus) [1430497]
-- [mmc] core: report tuning command execution failure reason (Don Zickus) [1430497]
-- [mmc] block: shut up "retrying because a re-tune was needed" message (Don Zickus) [1430497]
-- [mmc] core: improve mmc_of_parse_voltage() to return better status (Don Zickus) [1430497]
-- [mmc] core: shut up "voltage-ranges unspecified" pr_info() (Don Zickus) [1430497]
-- [mmc] block: don't use the OR operation for flag of data (Don Zickus) [1430497]
-- [mmc] core: remove the MMC_DATA_STREAM flag (Don Zickus) [1430497]
-- [mmc] sanitize 'bus width' in debug output (Don Zickus) [1430497]
-- [mmc] core: use the defined function to check whether card is removable (Don Zickus) [1430497]
-- [mmc] mmc_test: mention that '0' runs all tests (Don Zickus) [1430497]
-- [mmc] mmcif: don't depend on MMC_BLOCK (Don Zickus) [1430497]
-- [mmc] make MAN_BKOPS_EN message a debug (Don Zickus) [1430497]
-- [mmc] sdhci-acpi: enable sdhci-acpi device to suspend/resume asynchronously (Don Zickus) [1430497]
-- [mmc] core: enable mmc host device to suspend/resume asynchronously (Don Zickus) [1430497]
-- [mmc] debugfs: Add a restriction to mmc debugfs clock setting (Don Zickus) [1430497]
-- [mmc] remove unnecessary assignment statements before return (Don Zickus) [1430497]
-
-* Fri Mar 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-616.el7]
-- [fs] cifs: initialize file_info_lock (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix a possible double locking of mutex during reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix a possible memory corruption during reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix a possible memory corruption in push locks (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix missing nls unload in smb2_reconnect() (Sachin Prabhu) [1416808]
-- [fs] cifs: Decrease verbosity of ioctl call (Sachin Prabhu) [1416808]
-- [fs] smb3: parsing for new snapshot timestamp mount parm (Sachin Prabhu) [1416808]
-- [fs] Call echo service immediately after socket reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: Retrieve uid and gid from special sid if enabled (Sachin Prabhu) [1416808]
-- [fs] cifs: Add new mount option to set owner uid and gid from special sids in acl (Sachin Prabhu) [1416808]
-- [fs] cifs: Reset read oplock to NONE if we have mandatory locks after reopen (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix persistent handles re-opening on reconnect (Sachin Prabhu) [1416808]
-- [fs] smb2: Separate RawNTLMSSP authentication from SMB2_sess_setup (Sachin Prabhu) [1416808]
-- [fs] smb2: Separate Kerberos authentication from SMB2_sess_setup (Sachin Prabhu) [1416808]
-- [fs] Expose cifs module parameters in sysfs (Sachin Prabhu) [1416808]
-- [fs] Cleanup missing frees on some ioctls (Sachin Prabhu) [1416808]
-- [fs] Enable previous version support (Sachin Prabhu) [1416808]
-- [fs] Do not send SMB3 SET_INFO request if nothing is changing (Sachin Prabhu) [1416808]
-- [fs] smb3: Add mount parameter to allow user to override max credits (Sachin Prabhu) [1416808]
-- [fs] cifs: reopen persistent handles on reconnect (Sachin Prabhu) [1416808]
-- [fs] Clarify locking of cifs file and tcon structures and make more granular (Sachin Prabhu) [1416808]
-- [fs] cifs: keep guid when assigning fid to fileinfo (Sachin Prabhu) [1416808]
-- [fs] smb3: GUIDs should be constructed as random but valid uuids (Sachin Prabhu) [1416808]
-- [fs] Set previous session id correctly on SMB3 reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: Limit the overall credit acquired (Sachin Prabhu) [1416808]
-- [fs] Display number of credits available (Sachin Prabhu) [1416808]
-- [fs] cifs: get rid of unused arguments of CIFSSMBWrite() (Sachin Prabhu) [1416808]
-- [fs] cifs: don't use ->d_time (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix a possible invalid memory access in smb2_query_symlink() (Sachin Prabhu) [1416808]
-- [fs] cifs: fix crash due to race in hmac(md5) handling (Sachin Prabhu) [1416808]
-- [fs] cifs: unbreak TCP session reuse (Sachin Prabhu) [1416808]
-- [fs] File names with trailing period or space need special case conversion (Sachin Prabhu) [1416808]
-- [fs] Fix reconnect to not defer smb3 session reconnect long after socket reconnect (Sachin Prabhu) [1416808]
-- [fs] cifs: check hash calculating succeeded (Sachin Prabhu) [1416808]
-- [fs] cifs: stuff the fl_owner into "pid" field in the lock request (Sachin Prabhu) [1416808]
-- [fs] cifs: Remove some obsolete comments (Sachin Prabhu) [1416808]
-- [fs] remove directory incorrectly tries to set delete on close on non-empty directories (Sachin Prabhu) [1416808]
-- [fs] Update cifs.ko version to 2.09 (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix removexattr for os2.* xattrs (Sachin Prabhu) [1416808]
-- [fs] cifs: Check for equality with ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT (Sachin Prabhu) [1416808]
-- [fs] cifs: Fix xattr name checks (Sachin Prabhu) [1416808]
-- [fs] cifs: kill more bogus checks in ->...xattr() methods (Sachin Prabhu) [1416808]
-- [fs] don't bother with ->d_inode->i_sb - it's always equal to ->d_sb (Sachin Prabhu) [1416808]
-- [fs] mm, fs: remove remaining PAGE_CACHE_* and page_cache_{get, release} usage(cifs only) (Sachin Prabhu) [1416808]
-- [fs] mm, fs: get rid of PAGE_CACHE_* and page_cache_{get, release} macros(cifs only) (Sachin Prabhu) [1416808]
-- [fs] lib: update single-char callers of strtobool()(cifs only) (Sachin Prabhu) [1416808]
-- [fs] Add helper kstrtobool_from_user (Sachin Prabhu) [1416808]
-- [fs] cifs_get_root(): use lookup_one_len_unlocked() (Sachin Prabhu) [1416808]
-- [fs] Fix cifs_uniqueid_to_ino_t() function for s390x (Sachin Prabhu) [1416808]
-- [fs] wrappers for ->i_mutex access (Sachin Prabhu) [1416808]
-- [fs] cifs: remove redundant check for null string pointer (Sachin Prabhu) [1416808]
-- [fs] cifs: Add decryption and encryption key generation (Sachin Prabhu) [1416808]
-- [fs] cifs: Allow using O_DIRECT with cache=loose (Sachin Prabhu) [1416808]
-- [fs] posix acls: Remove duplicate xattr name definitions (cifs only) (Sachin Prabhu) [1416808]
-- [fs] libceph: don't set weight to IN when OSD is destroyed (Ilya Dryomov) [1427556]
-- [fs] xfs: allocate log vector buffers outside CIL context lock (Brian Foster) [1410906]
-- [fs] procfs: expose umask in /proc/<PID>/status (Miklos Szeredi) [1391413]
-- [fs] gfs2: Prevent BUG from occurring when normal Withdraws occur (Robert S Peterson) [1404005]
-- [fs] ext4: fix mmp use after free during unmount (Lukas Czerner) [1386651]
-- [fs] jbd2: fix incorrect unlock on j_list_lock (Lukas Czerner) [1403346]
-- [fs] nfs: nfs_rename() handle -ERESTARTSYS dentry left behind (Benjamin Coddington) [1349647]
-- [fs] nfsv4.0: always send mode in SETATTR after EXCLUSIVE4 (Benjamin Coddington) [1415780]
-- [fs] xfs: split indlen reservations fairly when under reserved (Brian Foster) [1423393]
-- [fs] xfs: handle indlen shortage on delalloc extent merge (Brian Foster) [1423393]
-- [netdrv] bna: use new api ethtool_{get|set}_link_ksettings (Jonathan Toppins) [1386007]
-- [netdrv] bna: use correct type specifier (2) (Jonathan Toppins) [1386007]
-- [netdrv] bna: use correct type specifications (Jonathan Toppins) [1386007]
-- [scsi] bfa: Increase requested firmware version to 3.2.5.1 (Jonathan Toppins) [1386007]
-- [netdrv] bna: Update the Driver and Firmware Version (Jonathan Toppins) [1386007]
-- [kernel] watchdog: prevent false hardlockup on overloaded system (Don Zickus) [1399881]
-- [security] keys: request_key() should reget expired keys rather than give EKEYEXPIRED (David Howells) [1408330]
-- [security] keys: Simplify KEYRING_SEARCH_{NO, DO}_STATE_CHECK flags (David Howells) [1408330]
-
-* Fri Mar 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-615.el7]
-- [net] sched: sch_sfb: keep backlog updated with qlen (Ivan Vecera) [1382040]
-- [net] sched: sch_qfq: keep backlog updated with qlen (Ivan Vecera) [1382040]
-- [net] switchdev: Fix return value of switchdev_port_fdb_dump() (Ivan Vecera) [1382040]
-- [net] sched: netem: fix a use after free (Ivan Vecera) [1382040]
-- [net] sched: fix pfifo_head_drop behavior vs backlog (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: fix NET_XMIT_CN behavior (Ivan Vecera) [1382040]
-- [net] sched: keep backlog updated with qlen (Ivan Vecera) [1382040]
-- [net] sched: sch_tbf: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: sch_red: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: sch_drr: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: sch_prio: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: sch_hfsc: always keep backlog updated (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: fix memory limitation drift (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: add memory limitation per queue (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: add batch ability to fq_codel_drop() (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: explicitly reset flows in ->reset() (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: fix return value of fq_codel_drop() (Ivan Vecera) [1382040]
-- [net] sched: fq_codel: fix a use-after-free (Ivan Vecera) [1382040]
-- [net] rtnetlink: fix FDB size computation (Ivan Vecera) [1382040]
-- [net] dev: Fix non-RCU based lower dev walker (Ivan Vecera) [1382040]
-- [net] Introduce new api for walking upper and lower devices (Ivan Vecera) [1382040]
-- [net] rtnetlink: fdb dump: optimize by saving last interface markers (Ivan Vecera) [1382040]
-- [net] rtnetlink: wrap .ndo_fdb_dump calls (Ivan Vecera) [1382040]
-- [net] rtnetlink: Pass VLAN ID to rtnl_fdb_notify (Ivan Vecera) [1382040]
-- [net] rtnetlink: fix fdb notification flags (Ivan Vecera) [1382040]
-- [net] fq: Port memory limit mechanism from fq_codel (Ivan Vecera) [1382040]
-- [net] fq: split out backlog update logic (Ivan Vecera) [1382040]
-- [net] fq: add fair queuing framework (Ivan Vecera) [1382040]
-- [net] codel: split into multiple files (Ivan Vecera) [1382040]
-- [net] codel: generalize the implementation (Ivan Vecera) [1382040]
-- [net] Add skb_get_hash_perturb (Ivan Vecera) [1382040]
-- [net] Only do flow_dissector hash computation once per packet (Ivan Vecera) [1382040]
-- [net] sch_dsmark: update backlog as well (Ivan Vecera) [1382040]
-- [net] sch_htb: update backlog as well (Ivan Vecera) [1382040]
-- [net] sched: update hierarchical backlog too (Ivan Vecera) [1382040]
-- [net] sched: introduce qdisc_replace() helper (Ivan Vecera) [1382040]
-- [net] codel: add ce_threshold attribute (Ivan Vecera) [1382040]
-- [net] codel: fix maxpacket/mtu confusion (Ivan Vecera) [1382040]
-- [net] use ktime_get_ns() and ktime_get_real_ns() helpers (Ivan Vecera) [1382040]
-- [net] codel: Avoid undefined behavior from signed overflow (Ivan Vecera) [1382040]
-- [net] sock: backport __sock_queue_rcv_skb() (Ivan Vecera) [1382040]
-- [net] sock: convert sk_peek_offset functions to WRITE_ONCE (Ivan Vecera) [1382040]
-- [net] Add and use skb_copy_datagram_msg() helper (Ivan Vecera) [1382040]
-- [net] ipv6: Export fib6_get_table and nd_tbl (Ivan Vecera) [1382040]
-
-* Fri Mar 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-614.el7]
-- [fs] nfsv4: Label stateids with the type (Steve Dickson) [1349668]
-- [fs] pnfs: Files and flexfiles always need to commit before layoutcommit (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Clean up calls to pnfs_set_layoutcommit() (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix layoutcommit after a commit to DS (Steve Dickson) [1349668]
-- [fs] pnfs/files: Fix layoutcommit after a commit to DS (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix a deadlock on LAYOUTGET (Steve Dickson) [1349668]
-- [fs] nfs: Fix used uninitialized warn in nfs4_slot_seqid_in_use() (Steve Dickson) [1349668]
-- [fs] nfs4: fix missing-braces warning (Steve Dickson) [1349668]
-- [fs] nfsv4.2: Fix a reference leak in nfs42_proc_layoutstats_generic (Steve Dickson) [1349668]
-- [fs] pnfs: Fix atime updates on pNFS clients (Steve Dickson) [1349668]
-- [fs] nfsv4: Fix a race when updating an open_stateid (Steve Dickson) [1349668]
-- [fs] nfsv4: Fix a race in nfs_inode_reclaim_delegation() (Steve Dickson) [1349668]
-- [fs] nfsv4: Pass the stateid to the exception handler in nfs4_read/write_done_cb (Steve Dickson) [1349668]
-- [fs] nfsv4.1: nfs4_layoutget_handle_exception handle revoked state (Steve Dickson) [1349668]
-- [fs] nfsv4: nfs4_handle_setlk_error() handle expiration as revoke case (Steve Dickson) [1349668]
-- [fs] nfsv4: nfs4_handle_delegation_recall_error() handle expiration as revoke case (Steve Dickson) [1349668]
-- [fs] nfsv4: nfs4_do_handle_exception() handle revoke/expiry of a single stateid (Steve Dickson) [1349668]
-- [fs] nfsv4: nfs_inode_find_state_and_recover() should check all stateids (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Ensure we call FREE_STATEID if needed on close/delegreturn/locku (Steve Dickson) [1349668]
-- [fs] nfsv4.1: FREE_STATEID can be asynchronous (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Ensure we always run TEST/FREE_STATEID on locks (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Allow revoked stateids to skip the call to TEST_STATEID (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Don't deadlock the state manager on the SEQUENCE status flags (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Remove obsolete and incorrrect assignment in nfs4_callback_sequence (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Close callback races for OPEN, LAYOUTGET and LAYOUTRETURN (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Defer bumping the slot sequence number until we free the slot (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Delay callback processing when there are referring triples (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Fix Oopsable condition in server callback races (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Fix the CREATE_SESSION slot number accounting (Steve Dickson) [1349668]
-- [fs] pnfs: Don't forget the layout stateid if there are outstanding LAYOUTGETs (Steve Dickson) [1349668]
-- [fs] pnfs: Clear out all layout segments if the server unsets lrp->res.lrs_present (Steve Dickson) [1349668]
-- [fs] pnfs: Fix pnfs_set_layout_stateid() to clear NFS_LAYOUT_INVALID_STID (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Don't recheck delegations that have already been checked (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Deal with server reboots during delegation expiration recovery (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Test delegation stateids when server declares "some state revoked" (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Allow callers of nfs_remove_bad_delegation() to specify a stateid (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Add a helper function to deal with expired stateids (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Allow test_stateid to handle session errors without waiting (Steve Dickson) [1349668]
-- [fs] nfsv4.1: Don't check delegations that are already marked as revoked (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix an Oopsable condition when connection to the DS fails (Steve Dickson) [1349668]
-- [fs] pnfs: The client must not do I/O to the DS if it's lease has expired (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Set reasonable default retrans values for the data channel (Steve Dickson) [1349668]
-- [fs] nfs: Allow the mount option retrans=0 (Steve Dickson) [1349668]
-- [fs] pnfs: Handle NFS4ERR_OLD_STATEID correctly in LAYOUTSTAT calls (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix layoutstat periodic reporting (Steve Dickson) [1349668]
-- [fs] Remove "tech preview" label for flexfile driver (Steve Dickson) [1349668]
-- [fs] nfsv4: Cap the transport reconnection timer at 1/2 lease period (Steve Dickson) [1349668]
-- [fs] sunrpc: Limit the reconnect backoff timer to the max RPC message timeout (Steve Dickson) [1349668]
-- [fs] sunrpc: Fix reconnection timeouts (Steve Dickson) [1349668]
-- [fs] sunrpc: Reduce latency when send queue is congested (Steve Dickson) [1349668]
-- [fs] sunrpc: RPC transport queue must be low latency (Steve Dickson) [1349668]
-- [fs] sunrpc: Consolidate xs_tcp_data_ready and xs_data_ready (Steve Dickson) [1349668]
-- [fs] sunrpc: Small optimisation of client receive (Steve Dickson) [1349668]
-- [fs] nfsv4: Clean up lookup of SECINFO_NO_NAME (Steve Dickson) [1349668]
-- [fs] pnfs: Remove redundant smp_mb() from pnfs_init_lseg() (Steve Dickson) [1349668]
-- [fs] pnfs: Cleanup - do layout segment initialisation in one place (Steve Dickson) [1349668]
-- [fs] pnfs: Remove redundant stateid invalidation (Steve Dickson) [1349668]
-- [fs] pnfs: Remove redundant pnfs_mark_layout_returned_if_empty() (Steve Dickson) [1349668]
-- [fs] pnfs: Clear the layout metadata if the server changed the layout stateid (Steve Dickson) [1349668]
-- [fs] pnfs: Cleanup - don't open code pnfs_mark_layout_stateid_invalid() (Steve Dickson) [1349668]
-- [fs] nfs: pnfs_mark_matching_lsegs_return() should match the layout sequence id (Steve Dickson) [1349668]
-- [fs] pnfs: Do not set plh_return_seq for non-callback related layoutreturns (Steve Dickson) [1349668]
-- [fs] pnfs: Ensure layoutreturn acts as a completion for layout callbacks (Steve Dickson) [1349668]
-- [fs] pnfs: Fix CB_LAYOUTRECALL stateid verification (Steve Dickson) [1349668]
-- [fs] pnfs: Always update the layout barrier seqid on LAYOUTGET (Steve Dickson) [1349668]
-- [fs] pnfs: Always update the layout stateid if NFS_LAYOUT_INVALID_STID is set (Steve Dickson) [1349668]
-- [fs] pnfs: Clear the layout return tracking on layout reinitialisation (Steve Dickson) [1349668]
-- [fs] pnfs: LAYOUTRETURN should only update the stateid if the layout is valid (Steve Dickson) [1349668]
-- [fs] pnfs/files: filelayout_write_done_cb must call nfs_writeback_update_inode() (Steve Dickson) [1349668]
-- [fs] mount: use sec= that was specified on the command line (Steve Dickson) [1349668]
-- [fs] fixing infinite OPEN loop in 4.0 stateid recovery (Steve Dickson) [1349668]
-- [fs] nfs/pnfs: Do not clobber existing pgio_done_cb in nfs4_proc_read_setup (Steve Dickson) [1349668]
-- [fs] sunrpc: Detect immediate closure of accepted sockets (Steve Dickson) [1349668]
-- [fs] sunrpc: accept() may return sockets that are still in SYN_RECV (Steve Dickson) [1349668]
-- [fs] pnfs: Fix post-layoutget error handling in pnfs_update_layout() (Steve Dickson) [1349668]
-- [fs] pnfs: Fix LAYOUTGET handling of NFS4ERR_BAD_STATEID and NFS4ERR_EXPIRED (Steve Dickson) [1349668]
-- [fs] pnfs: Handle NFS4ERR_RECALLCONFLICT correctly in LAYOUTGET (Steve Dickson) [1349668]
-- [fs] pnfs: Separate handling of NFS4ERR_LAYOUTTRYLATER and RECALLCONFLICT (Steve Dickson) [1349668]
-- [fs] nfs: Fix another OPEN_DOWNGRADE bug (Steve Dickson) [1349668]
-- [fs] nfs: Fix potential race in nfs_fhget() (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Mark the layout stateid invalid when all segments are removed (Steve Dickson) [1349668]
-- [fs] nfs: Fix a double page unlock (Steve Dickson) [1349668]
-- [fs] pnfs_nfs: fix _cancel_empty_pagelist (Steve Dickson) [1349668]
-- [fs] nfs/pnfs: handle bad delegation stateids in nfs4_layoutget_handle_exception (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Add sparse lock annotations for pnfs_find_alloc_layout (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Layout stateids start out as being invalid (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Ensure we handle delegation errors in nfs4_proc_layoutget() (Steve Dickson) [1349668]
-- [fs] nfs: fix anonymous member initializer build failure with older compilers (Steve Dickson) [1349668]
-- [fs] pnfs: pnfs_update_layout needs to consider if strict iomode checking is on (Steve Dickson) [1349668]
-- [fs] nfs/flexfiles: Use the layout segment for reading unless it a IOMODE_RW and reading is disabled (Steve Dickson) [1349668]
-- [fs] nfs/flexfiles: Helper function to detect FF_FLAGS_NO_READ_IO (Steve Dickson) [1349668]
-- [fs] nfs: avoid race that crashes nfs_init_commit (Steve Dickson) [1349668]
-- [fs] pnfs: make pnfs_layout_process more robust (Steve Dickson) [1349668]
-- [fs] pnfs: rework LAYOUTGET retry handling (Steve Dickson) [1349668]
-- [fs] pnfs: lift retry logic from send_layoutget to pnfs_update_layout (Steve Dickson) [1349668]
-- [fs] pnfs: fix bad error handling in send_layoutget (Steve Dickson) [1349668]
-- [fs] flexfiles: add kerneldoc header to nfs4_ff_layout_prepare_ds (Steve Dickson) [1349668]
-- [fs] flexfiles: remove pointless setting of NFS_LAYOUT_RETURN_REQUESTED (Steve Dickson) [1349668]
-- [fs] pnfs: only tear down lsegs that precede seqid in LAYOUTRETURN args (Steve Dickson) [1349668]
-- [fs] pnfs: keep track of the return sequence number in pnfs_layout_hdr (Steve Dickson) [1349668]
-- [fs] pnfs: record sequence in pnfs_layout_segment when it's created (Steve Dickson) [1349668]
-- [fs] pnfs: don't merge new ff lsegs with ones that have LAYOUTRETURN bit set (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: When initing reads or writes, we might have to retry connecting to DSes (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: When checking for available DSes, conditionally check for MDS io (Steve Dickson) [1349668]
-- [fs] pnfs/flexfile: Fix erroneous fall back to read/write through the MDS (Steve Dickson) [1349668]
-- [fs] nfs: Reclaim writes via writepage are opportunistic (Steve Dickson) [1349668]
-- [fs] pnfs: Fix a leaked layoutstats flag (Steve Dickson) [1349668]
-- [fs] nfs4: client: do not send empty SETATTR after OPEN_CREATE (Steve Dickson) [1349668]
-- [fs] Fixing oops in callback path (Steve Dickson) [1349668]
-- [fs] nfs: don't share mounts between network namespaces (Steve Dickson) [1349668]
-- [fs] nfs: Save struct inode * inside nfs_commit_info to clarify usage of i_lock (Steve Dickson) [1349668]
-- [fs] pnfs: set NFS_IOHDR_REDO in pnfs_read_resend_pnfs (Steve Dickson) [1349668]
-- [fs] nfs: missing wakeup in nfs_unblock_sillyrename() (Steve Dickson) [1349668]
-- [fs] nfsv4.x/pnfs: Fix a race between layoutget and bulk recalls (Steve Dickson) [1349668]
-- [fs] nfsv4.x/pnfs: Fix a race between layoutget and pnfs_destroy_layout (Steve Dickson) [1349668]
-- [fs] nfs4: fix stateid handling for the NFS v4.2 operations (Steve Dickson) [1349668]
-- [fs] pnfs: Always set NFS_LAYOUT_RETURN_REQUESTED with lo->plh_return_iomode (Steve Dickson) [1349668]
-- [fs] pnfs: Fix pnfs_mark_matching_lsegs_return() (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Fix NFS4ERR_RETRY_UNCACHED_REP in nfs4_callback_sequence (Steve Dickson) [1349668]
-- [fs] nfs: Cleanup - rename NFS_LAYOUT_RETURN_BEFORE_CLOSE (Steve Dickson) [1349668]
-- [fs] pnfs: Fix missing layoutreturn calls (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Allow multiple callbacks in flight (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Fix wraparound issues when validing the callback sequence id (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Enforce the ca_maxresponsesize_cached on the back channel (Steve Dickson) [1349668]
-- [fs] nfsv4.x: CB_SEQUENCE should return NFS4ERR_DELAY if still executing (Steve Dickson) [1349668]
-- [fs] nfsv4.x: Remove hard coded slotids in callback channel (Steve Dickson) [1349668]
-- [fs] nfs: Simplify nfs_request_add_commit_list() arguments (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Improve merging of errors in LAYOUTRETURN (Steve Dickson) [1349668]
-- [fs] nfs: Fix a compile warning about unused variable in nfs_generic_pg_pgios() (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Cleanup constify struct pnfs_layout_range arguments (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Cleanup copying of pnfs_layout_range structures (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Cleanup pnfs_mark_matching_lsegs_invalid() (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Fix a race in initiate_file_draining() (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: pnfs_error_mark_layout_for_return() must always return layout (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: pnfs_mark_matching_lsegs_return() should set the iomode (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Use nfs4_stateid_copy for copying stateids (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Don't pass stateids by value to pnfs_send_layoutreturn() (Steve Dickson) [1349668]
-- [fs] nfs: Relax requirements in nfs_flush_incompatible (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Don't queue up a new commit if the layout segment is invalid (Steve Dickson) [1349668]
-- [fs] nfs: Allow multiple commit requests in flight per file (Steve Dickson) [1349668]
-- [fs] nfs/pnfs: Fix up pNFS write reschedule layering violations and bugs (Steve Dickson) [1349668]
-- [fs] nfs: Ensure we revalidate attributes before using execute_ok() (Steve Dickson) [1349668]
-- [fs] nfsv4: List stateid information in the callback tracepoints (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Don't return NFS4ERR_DELAY unnecessarily in CB_LAYOUTRECALL (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Ensure we enforce RFC5661 Section 12.5.5.2.1 (Steve Dickson) [1349668]
-- [fs] pnfs: If we have to delay the layout callback, mark the layout for return (Steve Dickson) [1349668]
-- [fs] nfsv4.1/pnfs: Add a helper to mark the layout as returned (Steve Dickson) [1349668]
-- [fs] pnfs: Ensure nfs4_layoutget_prepare returns the correct error (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Ensure we record layoutstats even if RPC is terminated early (Steve Dickson) [1349668]
-- [fs] pnfs: Add flag to track if we've called nfs4_ff_layout_stat_io_start_read/write (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Fix a statistics gathering imbalance (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Don't mark the entire layout as failed, when returning it (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: count io stat in rpc_count_stats callback (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: do not mark delay-like status as DS failure (Steve Dickson) [1349668]
-- [fs] pnfs/flexfiles: Support server-supplied layoutstats sampling period (Steve Dickson) [1349668]
-- [fs] nfs: Flush reclaim writes using FLUSH_COND_STABLE (Steve Dickson) [1349668]
-- [fs] nfs: Background flush should not be low priority (Steve Dickson) [1349668]
-- [fs] nfs: do not initialise statics to 0 (Steve Dickson) [1349668]
-- [fs] nfsv4: Fix unused variable warnings in nfs4_init_*_client_string() (Steve Dickson) [1349668]
-- [fs] Adding tracepoint to cached open (Steve Dickson) [1349668]
-- [fs] nfs: fix missing assignment in nfs4_sequence_done tracepoint (Steve Dickson) [1349668]
-- [fs] nfs42: handle layoutstats stateid error (Steve Dickson) [1349668]
-- [fs] sunrpc: set SOCK_FASYNC (Steve Dickson) [1349668]
-- [fs] sunrpc: init xdr_stream for zero iov_len, page_len (Steve Dickson) [1349668]
-- [fs] sunrpc/cache: fix off-by-one in qword_get() (Steve Dickson) [1349668]
-- [fs] sunrpc: Fix a missing break in rpc_anyaddr() (Steve Dickson) [1349668]
-- [fs] sunrpc: drop unused xs_reclassify_socketX() helpers (Steve Dickson) [1349668]
-
-* Thu Mar 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-613.el7]
-- [net] sctp: also copy sk_tsflags when copying the socket (Hangbin Liu) [1389283]
-- [net] timestamp: allow reading recv cmsg on errqueue with origin tstamp (Hangbin Liu) [1389283]
-- [net] timestamp: only report sw timestamp if reporting bit is set (Hangbin Liu) [1389283]
-- [net] timestamp: move timestamp flags out of sk_flags (Hangbin Liu) [1389283]
-- [net] timestamp: extend SCM_TIMESTAMPING ancillary data struct (Hangbin Liu) [1389283]
-- [net] Improve SO_TIMESTAMPING documentation and fix a minor code bug (Hangbin Liu) [1389283]
-- [net] ipv6: make IPV6_RECVPKTINFO work for ipv4 datagrams (Hangbin Liu) [1389283]
-- [net] ipv6: transp_v6.h: style neatening (Hangbin Liu) [1389283]
-- [net] ipv6: Clean up indentation in net/ipv6/transp_v6.h (Hangbin Liu) [1389283]
-- [net] tunnel: set inner protocol in network gro hooks (Paolo Abeni) [1427781]
-- [net] gro_cells: remove spinlock protecting receive queues (Jiri Benc) [1429597]
-- [netdrv] virtio-net: Update the mtu code to match virtio spec (Aaron Conole) [1412234]
-- [netdrv] virtio_net: Update the feature bit to comply with spec (Aaron Conole) [1412234]
-- [netdrv] virtio-net: Add initial MTU advice feature (Aaron Conole) [1412234]
-- [net] ipv6: Set skb->protocol properly for local output (Jakub Sitnicki) [1336001]
-- [net] ipv4: Set skb->protocol properly for local output (Jakub Sitnicki) [1336001]
-- [net] sit: fix a double free on error path (Jakub Sitnicki) [1336001]
-- [net] ipv6: pointer math error in ip6_tnl_parse_tlv_enc_lim() (Jakub Sitnicki) [1336001]
-- [net] ipv6: fix ip6_tnl_parse_tlv_enc_lim() (Jakub Sitnicki) [1336001]
-- [net] ip6_tunnel: must reload ipv6h in ip6ip6_tnl_xmit() (Jakub Sitnicki) [1336001]
-- [net] ip6_tunnel: Clear IP6CB in ip6tunnel_xmit() (Jakub Sitnicki) [1336001]
-- [net] ip6_tunnel: fix ip6_tnl_lookup (Jakub Sitnicki) [1336001]
-- [net] sit: correct IP protocol used in ipip6_err (Jakub Sitnicki) [1336001]
-- [net] tunnel: Clear IPCB(skb)->opt before dst_link_failure called (Jakub Sitnicki) [1336001]
-- [net] ip_tunnel: fix ipv4 pmtu check to honor inner ip header df (Jakub Sitnicki) [1336001]
-- [net] ipip: fix one sparse error (Jakub Sitnicki) [1336001]
-- [net] sit: fix some __be16/u16 mismatches (Jakub Sitnicki) [1336001]
-- [net] fou: Fix typo in returning flags in netlink (Jakub Sitnicki) [1336001]
-- [net] ipip, sit: fix ipv4_{update_pmtu,redirect} calls (Jakub Sitnicki) [1336001]
-- [net] openvswitch: add NETIF_F_HW_VLAN_STAG_TX to internal dev (Eric Garver) [1155732]
-- [net] openvswitch: fix vlan subtraction from packet length (Eric Garver) [1155732]
-- [net] openvswitch: vlan: remove wrong likely statement (Eric Garver) [1155732]
-- [net] openvswitch: 802.1AD Flow handling, actions, vlan parsing, netlink attributes (Eric Garver) [1155732]
-- [net] vlan: Check for vlan ethernet types for 8021.q or 802.1ad (Eric Garver) [1155732]
-- [net] fib_trie: Correct /proc/net/route off by one error (Hannes Frederic Sowa) [1426372]
-- [net] ipv4: panic in leaf_walk_rcu due to stale node pointer (Hannes Frederic Sowa) [1426372]
-- [net] documentation: ipv6: add documentation for stable_secret, idgen_delay and idgen_retries knobs (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: addrconf: always initialize sysctl table data (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: addrconf: use stable address generator for ARPHRD_NONE (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: automatically enable stable privacy mode if stable_secret set (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: fix sparse warnings in privacy stable addresses generation (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: introduce idgen_delay and idgen_retries knobs (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: do retries on stable privacy addresses (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: collapse state_lock and lock (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: introduce IFA_F_STABLE_PRIVACY flag (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: generation of stable privacy addresses for link-local and autoconf (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: introduce secret_stable to ipv6_devconf (Hannes Frederic Sowa) [1418812]
-- [net] ipv6: remove unused function ipv6_inherit_linklocal() (Hannes Frederic Sowa) [1418812]
-- [net] tcp/dccp: avoid starving bh on connect (Paolo Abeni) [1401419]
-
-* Thu Mar 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-612.el7]
-- [hid] hid-wacom: rename driver and dont use it on already supported devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [lib] kobject: grab an extra reference on kobject->sd to allow duplicate deletes (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Update last_slot_field during pre_report phase (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - add touch_arbitration parameter to wacom module (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Augment oVid and oPid with heuristics for HID_GENERIC (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add WACOM_DEVICETYPE_DIRECT for Cintiqs and similar (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: power_supply: provide the actual model_name (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: power_supply: remove ac information (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: power_supply: mark the type as USB (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: attach the power_supply on first connection (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: have one power_supply per remote (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: allocate one input node per remote (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: have one array of struct remotes instead of many arrays (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: use devres groups to manage resources (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: have proper allocator and destructor (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: rework fail path in probe() and parse_and_register() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: have the wacom resources dynamically allocated (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ekr: add a worker to add/remove resources on addition/removal (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: leds: dynamically allocate LED groups (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: devres manage the shared data too (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use devres to allocate driver data (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use devm_kasprintf for allocating the name of the remote (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: convert LEDs to devres (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: put the managed resources in a group (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: switch inputs to devres (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: switch battery to devres (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use one work queue per task (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: untie leds from inputs (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: remove cleanup of wacom->remote_dir from wacom_clean_inputs() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: store the type in wacom->shared for INTUOSHT and INTUOSHT2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: actually report the battery level for wireless connected (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: add missed stylus_in_proximity line back (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add fuzz factor to distance and tilt axes (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for DTK-1651 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Support switching from vendor-defined device mode on G9 and G11 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Initialize hid_data.inputmode to -1 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix Bamboo ONE oops (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: close the wireless receiver on remove() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: cleanup input devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: reuse wacom_parse_and_register() in wireless_work (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: move down wireless_work() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: break out parsing of device and registering of input (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: break out wacom_intuos_get_tool_type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Add quirks for INTUOSHT2 in range events (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Cleanup touch arbitration logic (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - make sure wacom_intuos_inout only process in/out events (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - request tool info only when we get general events (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Use correct report to query pen ID from INTUOSHT2 devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] use kobj_to_dev() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] use to_hid_device() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Fix pad button range for CINTIQ_COMPANION_2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Fix touchring value reporting (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report strip2 values in ABS_RY (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Limit touchstrip data to 13 bits (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: bitwise vs logical ORs (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Apply lowres quirk to BAMBOO_TOUCH devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Rename wacom ID report ID macros (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Clean up value reading (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Further clean up wacom_intuos_general packet decoder (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Replace magic masks and comparisons with switch cases (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Centralize Intuos pen packet decoding (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Slim down wacom_intuos_pad processing (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Move Intuos pad handling code into dedicated function (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Delete an unnecessary check before kobject_put() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fixup quirks setup for WACOM_DEVICETYPE_PAD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add outbounding area for DTU1141 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Call wacom_query_tablet_data only after hid_hw_start (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Fix ABS_MISC reporting for Cintiq Companion 2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Remove useless conditions from wacom_query_tablet_data (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix Intuos wireless report id issue (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Expect touch_max touches if HID_DG_CONTACTCOUNT not present (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Tie cached HID_DG_CONTACTCOUNT indices to report ID (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report full pressure range for Intuos, Cintiq 13HD Touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for Cintiq Companion 2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add four new Intuos devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Cleanup unsupported device_type for BAMBOO_PT (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: wacom_setup_numbered_buttons is local to wacom_wac (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for Express Key Remote (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Set button bits based on a new numbered_buttons (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Use tablet-provided touch height/width values for INTUOSHT (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Simplify wacom_pl_irq (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report correct device resolution when using the wireless adapater (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Do not repeatedly attempt to set device mode on error (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Remove WACOM_QUIRK_NO_INPUT (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Replace WACOM_QUIRK_MONITOR with WACOM_DEVICETYPE_WL_MONITOR (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Use calculated pkglen for wireless touch interface (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report touch width/height/orientation for GENERIC devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Ignore contacts in excess of declared contact count (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Perform all event processing as part of report processing (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Set default device name to value from wacom->features (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Properly free inputs if wacom_allocate_inputs fails (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: remove the extra Pen interface for Wacom Bamboo PAD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Delete unnecessary checks before the function call "input_free_device" (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Enable pad device for older Bamboo Touch tablets (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: NULL dereferences on error in probe() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Introduce new touch_input device (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Split apart wacom_setup_pentouch_input_capabilites (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Introduce a new WACOM_DEVICETYPE_PAD device_type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Treat features->device_type values as flags (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Simplify wacom_update_name (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Handle failing HID_DG_CONTACTMAX requests (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Have wacom_{get, set}_report retry on -EAGAIN, not -EPIPE (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix an Oops caused by wacom_wac_finger_count_touches (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Fail probe if HID_GENERIC device has unknown device_type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Discover device_type from HID descriptor for all devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Do not add suffix to name of devices with an unknown type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: retrieve name from HID descriptor for generic devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for DTU-1141 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Simplify check for presence of single-finger touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: remove unused packet lengths (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: move unit and unitExpo initialization to wacom_calculate_res (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: move all quirks to wacom_setup_device_quirks (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for Cintiq 13HD Touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: set stylus_in_proximity before checking touch_down (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use wacom_wac_finger_count_touches to set touch_down (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: remove hardcoded WACOM_QUIRK_MULTI_INPUT (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: check for wacom->shared before following the pointer (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: ask for a in-prox report when it was missed (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add battery presence indicator to wireless tablets (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: drop WACOM_PKGLEN_STATUS (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Status packet provides charging, not powered bit (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report battery status for Intuos Pro and Intuos5 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Provide battery charge state to system over USB if available (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Allow dynamic battery creation/destruction (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Centralize updating of wacom_wac battery status (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Move handling of Intuos status packets to seperate function (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: rely on actual touch down count to decide touch_down (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: do not send pen events before touch is up/forced out (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: add full support of the Wacom Bamboo PAD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: store the hid_device pointers of the sibling devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for I2C connected devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: do not directly use input_mt_report_pointer_emulation (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add missing ABS_MISC event and feature declaration for 27QHD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [uapi] hid: wacom: add support for Cintiq 27QHD and 27QHD touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: consolidate input capability settings for pen and touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: make sure touch arbitration is applied consistently (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report ABS_MISC event for Cintiq Companion Hybrid (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: peport In Range event according to the spec (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: process invalid Cintiq and Intuos data in wacom_intuos_inout() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: add support of the Pen of the Bamboo Pad (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: use WACOM_*_FIELD macros in wacom_usage_mapping() (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report input events for each finger on generic devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Initialize MT slots for generic devices at post_parse_hid (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Update maximum X/Y accounding to outbound offset (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for DTU-1031X (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: add defines for new Cintiq and DTU outbound tracking (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Consult the application usage when determining field type (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: PAD is independent with pen/touch (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add angular resolution data to some ABS axes (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Report ABS_TILT_{X, Y} as signed values (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Bamboo pen-only tablet does not support PAD (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Cleanup input_capabilities for Graphire 4 and Bamboo Fun (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - return ENODEV for failed wacom_setup_pad_input_capabilities (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for Intuos Pen Medium (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - make sure touch_input is valid before using it (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] make hid_report_len as a static inline function in hid.h (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix freeze on open when autosuspend is on (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: re-add accidentally dropped Lenovo PID (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: implement the finger part of the HID generic handling (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] hid: wacom: implement generic HID handling for pen generic devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: move allocation of inputs earlier (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: split out input allocation and registration (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: rename failN with some meaningful information (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: fix timeout on probe for some wacoms (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: make the WL connection friendly for the desktop (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - enable LED support for Wireless Intuos5/Pro (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - remove report_id from wacom_get_report interface (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Clean up of sysfs (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom - Add default permission defines for sysfs attributes (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] wacom: Add support for the Cintiq Companion (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - cleanup multitouch code when touch_max is 2 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - fix compiler warning if !CONFIG_PM (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - only register once the MODULE_* macros (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - add copyright note and bump version to 2.0 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - remove passing id for wacom_set_report (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - check for bluetooth protocol while setting OLEDs (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: HID - remove hid-wacom Bluetooth driver (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - handle Intuos 4 BT in wacom.ko (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - handle Graphire BT tablets in wacom.ko (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - prepare the driver to include BT devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - add support for 0x12C ISDv4 sensor (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - register an ac power supply for wireless devices (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - use a uniq name for the battery device (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - enhance Wireless Receiver battery reporting (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - put a flag when the led are initialized (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - support up to 2048 pressure levels with ISDv4 (Aristeu Rozanski) [1346348 1388646 1385026]
-- [hid] input: wacom - move the USB (now hid) Wacom driver in drivers/hid (Aristeu Rozanski) [1346348 1388646 1385026]
-- [uapi] input: add SW_MUTE_DEVICE switch definition (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] input: wacom - switch from an USB driver to a HID driver (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] power_supply core: support use of devres to register/unregister a power supply (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] power_supply: allow power supply devices registered w/o wakeup source (Aristeu Rozanski) [1346348 1388646 1385026]
-- [kernel] power_supply: Prevent suspend until power supply events are processed (Aristeu Rozanski) [1346348 1388646 1385026]
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-611.el7]
-- [fs] ext4: fix NULL pointer dereference in ext4_mark_inode_dirty() (Lukas Czerner) [1429223]
-- [fs] ext4: reject inodes with negative size (Lukas Czerner) [1429223]
-- [fs] ext4: return EROFS if device is r/o and journal replay is needed (Lukas Czerner) [1429223]
-- [fs] ext4: preserve the needs_recovery flag when the journal is aborted (Lukas Czerner) [1429223]
-- [fs] jbd2: don't leak modified metadata buffers on an aborted journal (Lukas Czerner) [1429223]
-- [fs] ext4: trim allocation requests to group size (Lukas Czerner) [1429223]
-- [fs] ext4: return -ENOMEM instead of success (Lukas Czerner) [1429223]
-- [fs] ext4: add sanity checking to count_overhead() (Lukas Czerner) [1429223]
-- [fs] ext4: use more strict checks for inodes_per_block on mount (Lukas Czerner) [1429223]
-- [fs] ext4: fix in-superblock mount options processing (Lukas Czerner) [1429223]
-- [fs] ext4: fix stack memory corruption with 64k block size (Lukas Czerner) [1429223]
-- [fs] ext4: fix mballoc breakage with 64k block size (Lukas Czerner) [1429223]
-- [fs] ext4: release bh in make_indexed_dir (Lukas Czerner) [1429223]
-- [fs] ext4: bugfix for mmaped pages in mpage_release_unused_pages() (Lukas Czerner) [1429223]
-- [fs] ext4: reinforce check of i_dtime when clearing high fields of uid and gid (Lukas Czerner) [1429223]
-- [fs] ext4: avoid deadlock when expanding inode size (Lukas Czerner) [1429223]
-- [fs] ext4: properly align shifted xattrs when expanding inodes (Lukas Czerner) [1429223]
-- [fs] ext4: fix xattr shifting when expanding inodes part 2 (Lukas Czerner) [1429223]
-- [fs] ext4: fix xattr shifting when expanding inodes (Lukas Czerner) [1429223]
-- [fs] ext4: validate that metadata blocks do not overlap superblock (Lukas Czerner) [1429223]
-- [fs] ext4: short-cut orphan cleanup on error (Lukas Czerner) [1429223]
-- [fs] ext4: fix reference counting bug on block allocation error (Lukas Czerner) [1429223]
-- [fs] ext4: validate s_reserved_gdt_blocks on mount (Lukas Czerner) [1429223]
-- [fs] ext4: don't call ext4_should_journal_data() on the journal inode (Lukas Czerner) [1429223]
-- [fs] ext4: check for extents that wrap around (Lukas Czerner) [1429223]
-- [fs] ext4: silence UBSAN in ext4_mb_init() (Lukas Czerner) [1429223]
-- [fs] ext4: address UBSAN warning in mb_find_order_for_block() (Lukas Czerner) [1429223]
-- [fs] ext4: fix oops on corrupted filesystem (Lukas Czerner) [1429223]
-- [fs] ext4: fix hang when processing corrupted orphaned inode list (Lukas Czerner) [1429223]
-- [fs] ext4: add lockdep annotations for i_data_sem (Lukas Czerner) [1429223]
-- [fs] jbd2: fix FS corruption possibility in jbd2_journal_destroy() on umount path (Lukas Czerner) [1429223]
-- [fs] ext4: iterate over buffer heads correctly in move_extent_per_page() (Lukas Czerner) [1429223]
-- [fs] ext4: don't read blocks from disk after extents being swapped (Lukas Czerner) [1429223]
-- [fs] jbd2: Fix unreclaimed pages after truncate in data=journal mode (Lukas Czerner) [1429223]
-- [fs] ext4, jbd2: ensure entering into panic after recording an error in superblock (Lukas Czerner) [1429223]
-- [fs] fix calculation of meta_bg descriptor backups (Lukas Czerner) [1429223]
-- [fs] ext4: replace open coded nofail allocation in ext4_free_blocks() (Lukas Czerner) [1429223]
-- [fs] ext4: don't retry file block mapping on bigalloc fs with non-extent file (Lukas Czerner) [1429223]
-- [fs] jbd2: fix ocfs2 corrupt when updating journal superblock fails (Lukas Czerner) [1429223]
-- [fs] jbd2: use GFP_NOFS in jbd2_cleanup_journal_tail() (Lukas Czerner) [1429223]
-- [fs] jbd2: fix r_count overflows leading to buffer overflow in journal recovery (Lukas Czerner) [1429223]
-- [fs] ext4: move check under lock scope to close a race (Lukas Czerner) [1429223]
-- [fs] ext4: Define EFSCORRUPTED error value (Lukas Czerner) [1429223]
-- [fs] ext4: fix deadlock during page writeback (Lukas Czerner) [1321523]
-- [fs] ext4: fix data exposure after a crash (Lukas Czerner) [1321523]
-- [fs] ext4: fix fencepost in s_first_meta_bg validation (Lukas Czerner) [1332503] {CVE-2016-10208}
-- [fs] ext4: sanity check the block and cluster size at mount time (Lukas Czerner) [1332503] {CVE-2016-10208}
-- [fs] ext4: validate s_first_meta_bg at mount time (Lukas Czerner) [1332503] {CVE-2016-10208}
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-610.el7]
-- [kernel] audit: Fix sleep in atomic (Paul Moore) [1410862]
-- [uio] uio-hv-generic: mark as Tech Preview (Vitaly Kuznetsov) [1396534]
-- [uio] uio-hv-generic: store physical addresses instead of virtual (Vitaly Kuznetsov) [1396534]
-- [documentation] doc: add documentation for uio-hv-generic (Vitaly Kuznetsov) [1396534]
-- [uio] uio-hv-generic: new userspace i/o driver for VMBus (Vitaly Kuznetsov) [1396534]
-- [kernel] vmbus: add support for dynamic device id's (Vitaly Kuznetsov) [1396534]
-- [kernel] hv: vmbus: add a hvsock flag in struct hv_driver (Vitaly Kuznetsov) [1396534]
-- [scsi] cxlflash: Cancel scheduled workers before stopping AFU (Gustavo Duarte) [1427396]
-- [vfio] Replace module request with softdep (Alex Williamson) [1420572]
-- [vfio] mdev: Use a module softdep for vfio_mdev (Alex Williamson) [1420572]
-- [x86] kvm: x86: bump KVM_SOFT_MAX_VCPUS to 288 (Radim Krcmar) [1388961]
-- [x86] kvm: x86: allow hotplug of VCPU with APIC ID over 0xff (Radim Krcmar) [1388961]
-- [x86] kvm: x86: make interrupt delivery fast and slow path behave the same (Radim Krcmar) [1388961]
-- [x86] kvm: x86: replace kvm_apic_id with kvm_{x, x2}apic_id (Radim Krcmar) [1388961]
-- [x86] pci: vmd: Synchronize with RCU freeing MSI IRQ descs (Myron Stowe) [1388664]
-- [x86] pci: vmd: Fix infinite loop executing irq's (Myron Stowe) [1388664]
-- [x86] pci: vmd: Initialize list item in IRQ disable (Myron Stowe) [1388688]
-- [pci] Allow additional bus numbers for hotplug bridges (Myron Stowe) [1388688]
-- [x86] pci/vmd: Use untracked irq handler (Myron Stowe) [1388688]
-- [kernel] genirq: Add untracked irq handler (Myron Stowe) [1388688]
-- [x86] pci: Retrofit Intel Volume Management Device (VMD) driver (Myron Stowe) [1388688]
-- [x86] pci: Allow DMA ops specific to a PCI domain (Myron Stowe) [1388688]
-- [x86] kvm/page_track: export symbols for external usage (Paul Lai) [1380113]
-- [x86] kvm/page_track: call notifiers with kvm_page_track_notifier_node (Paul Lai) [1380113]
-- [x86] kvm: x86: add track_flush_slot page track notifier (Paul Lai) [1380113]
-- [x86] kvm: mtrr: fix kvm_mtrr_check_gfn_range_consistency page fault (Paul Lai) [1380113]
-- [x86] kvm: mtrr: remove MSR 0x2f8 (Paul Lai) [1380113] {CVE-2016-3713}
-- [x86] kvm: page_track: fix access to NULL slot (Paul Lai) [1380113]
-- [x86] kvm: mmu: apply page track notifier (Paul Lai) [1380113]
-- [x86] kvm: mmu: simplify mmu_need_write_protect (Paul Lai) [1380113]
-- [x86] kvm: mmu: use page track for non-leaf shadow pages (Paul Lai) [1380113]
-- [x86] kvm: page track: add notifier support (Paul Lai) [1380113]
-- [x86] kvm: mmu: clear write-flooding on the fast path of tracked page (Paul Lai) [1380113]
-- [x86] kvm: mmu: let page fault handler be aware tracked page (Paul Lai) [1380113]
-- [x86] kvm: page track: introduce kvm_slot_page_track_{add, remove}_page (Paul Lai) [1380113]
-- [x86] kvm: page track: add the framework of guest page tracking (Paul Lai) [1380113]
-- [x86] kvm: mmu: introduce kvm_mmu_slot_gfn_write_protect (Paul Lai) [1380113]
-- [x86] kvm: mmu: introduce kvm_mmu_gfn_{allow, disallow}_lpage (Paul Lai) [1380113]
-- [x86] kvm: mmu: rename has_wrprotected_page to mmu_gfn_lpage_is_disallowed (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Move handle_mmio_page_fault() call to kvm_mmu_page_fault() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Consolidate quickly_check_mmio_pf() and is_mmio_page_fault() (Paul Lai) [1380113]
-- [x86] kvm: mtrr: treat memory as writeback if MTRR is disabled in guest CPUID (Paul Lai) [1380113]
-- [x86] kvm: mtrr: observe maxphyaddr from guest CPUID, not host (Paul Lai) [1380113]
-- [x86] kvm: mtrr: fix fixed MTRR segment look up (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Encapsulate the type of rmap-chain head in a new struct (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Eliminate an extra memory slot search in mapping_level() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Remove mapping_level_dirty_bitmap() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Move mapping_level_dirty_bitmap() call in mapping_level() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Simplify force_pt_level calculation code in FNAME(page_fault)() (Paul Lai) [1380113]
-- [x86] kvm: x86: mmu: Make force_pt_level bool (Paul Lai) [1380113]
-- [x86] kvm: mtrr: Use default type for non-MTRR-covered gfn before WARN_ON (Paul Lai) [1380113]
-- [x86] kvm: mtrr: simplify kvm_mtrr_get_guest_memory_type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: fix memory type handling if MTRR is completely disabled (Paul Lai) [1380113]
-- [x86] kvm: mtrr: do not map huge page for non-consistent range (Paul Lai) [1380113]
-- [x86] kvm: mtrr: simplify kvm_mtrr_get_guest_memory_type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: introduce mtrr_for_each_mem_type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: introduce fixed_mtrr_addr_* functions (Paul Lai) [1380113]
-- [x86] kvm: mtrr: sort variable MTRRs (Paul Lai) [1380113]
-- [x86] kvm: mtrr: introduce var_mtrr_range (Paul Lai) [1380113]
-- [x86] kvm: mtrr: introduce fixed_mtrr_segment table (Paul Lai) [1380113]
-- [x86] kvm: mtrr: improve kvm_mtrr_get_guest_memory_type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: do not split 64 bits MSR content (Paul Lai) [1380113]
-- [x86] kvm: mtrr: clean up mtrr default type (Paul Lai) [1380113]
-- [x86] kvm: mtrr: remove mtrr_state.have_fixed (Paul Lai) [1380113]
-- [x86] kvm: mtrr: handle MSR_MTRRcap in kvm_mtrr_get_msr (Paul Lai) [1380113]
-- [x86] kvm: x86: move MTRR related code to a separate file (Paul Lai) [1380113]
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-609.el7]
-- [md] dm cache: significant rework to leverage dm-bio-prison-v2 (Mike Snitzer) [1430028]
-- [md] dm bio prison v2: new interface for the bio prison (Mike Snitzer) [1430028]
-- [md] dm: flush queued bios when process blocks to avoid deadlock (Mike Snitzer) [1430028]
-- [md] dm stats: fix a leaked s->histogram_boundaries array (Mike Snitzer) [1430028]
-- [md] dm space map metadata: constify dm_space_map structures (Mike Snitzer) [1430028]
-- [md] dm cache metadata: use cursor api in blocks_are_clean_separate_dirty() (Mike Snitzer) [1430028]
-- [md] dm persistent data: add cursor skip functions to the cursor APIs (Mike Snitzer) [1430028]
-- [md] dm cache metadata: use dm_bitset_new() to create the dirty bitset in format 2 (Mike Snitzer) [1430028]
-- [md] dm bitset: add dm_bitset_new() (Mike Snitzer) [1430028]
-- [md] dm cache metadata: name the cache block that couldn't be loaded (Mike Snitzer) [1430028]
-- [md] dm cache metadata: add "metadata2" feature (Mike Snitzer) [1430028]
-- [md] dm cache metadata: use bitset cursor api to load discard bitset (Mike Snitzer) [1430028]
-- [md] dm bitset: introduce cursor api (Mike Snitzer) [1430028]
-- [md] dm btree: use GFP_NOFS in dm_btree_del() (Mike Snitzer) [1430028]
-- [md] dm space map common: memcpy the disk root to ensure it's arch aligned (Mike Snitzer) [1430028]
-- [md] dm block manager: add unlikely() annotations on dm_bufio error paths (Mike Snitzer) [1430028]
-- [md] dm cache: fix corruption seen when using cache > 2TB (Mike Snitzer) [1430028]
-- [md] dm raid: bump the target version (Mike Snitzer) [1430028]
-- [md] dm raid: fix data corruption on reshape request (Mike Snitzer) [1430028]
-- [md] dm raid: fix raid "check" regression due to improper cleanup in raid_message() (Mike Snitzer) [1430028]
-- [md] dm raid: cleanup awkward branching in raid_message() option processing (Mike Snitzer) [1430028]
-- [md] dm raid: use mddev rather than rdev->mddev (Mike Snitzer) [1430028]
-- [md] dm raid: use read_disk_sb() throughout (Mike Snitzer) [1430028]
-- [md] dm raid: add raid4/5/6 journaling support (Mike Snitzer) [1430028]
-- [md] dm raid: be prepared to accept arbitrary '- -' tuples (Mike Snitzer) [1430028]
-- [md] dm raid: fix transient device failure processing (Mike Snitzer) [1430028]
-- [md] dm mpath: cleanup -Wbool-operation warning in choose_pgpath() (Mike Snitzer) [1430028]
-- [powerpc] pseries: Advertise HPT resizing support via CAS (David Gibson) [1305399]
-- [kernel] rh_kabi: Provide better error messages for size and align checks (Prarit Bhargava) [1425864]
-- [kernel] sched: Move p->nr_cpus_allowed check to select_task_rq() (Lauro Ramos Venancio) [1428028]
-- [char] random: printk notifications for urandom pool initialization (Herbert Xu) [1298643]
-- [acpi] acpica: utilities: Fix local printf issue (Prarit Bhargava) [1430397]
-- [block] relax check on sg gap (Cathy Avery) [1413656]
-- [block] check virt boundary in bio_will_gap() (Cathy Avery) [1413656]
-- [block] Check for gaps on front and back merges (Cathy Avery) [1413656]
-- [block] blk-mq: Avoid memory reclaim when remapping queues (Gustavo Duarte) [1356663]
-- [block] block: kmemleak: Track the page allocations for struct request (Gustavo Duarte) [1356663]
-- [block] blk-mq: Fix failed allocation path when mapping queues (Gustavo Duarte) [1356663]
-- [block] blk-mq: Always schedule hctx->next_cpu (Gustavo Duarte) [1356663]
-- [block] fix use-after-free in seq file (Denys Vlasenko) [1418551] {CVE-2016-7910}
-- [netdrv] ixgbe: Update driver version for RHEL 7.4 (Ken Cox) [1383524]
-- [netdrv] libcxgb: fix error check for ip6_route_output() (Sai Vemuri) [1385866]
-- [netdrv] libcxgb: remove unused including <linux/version.h> (Sai Vemuri) [1385866]
-- [target] libcxgb: export ppm release and tagmask set api (Sai Vemuri) [1385866]
-- [scsi] libcxgbi: return error if interface is not up (Sai Vemuri) [1385866]
-- [scsi] cxgb4i: libcxgbi: add missing module_put() (Sai Vemuri) [1385866]
-- [scsi] cxgb4i: Add a missing call to neigh_release (Sai Vemuri) [1385866]
-- [scsi] libcxgbi: fix incorrect DDP resource cleanup (Sai Vemuri) [1385866]
-- [scsi] cxgb4i: Set completion bit in work request (Sai Vemuri) [1385866]
-- [scsi] cxgb3i, cxgb4i: fix symbol not declared sparse warning (Sai Vemuri) [1385866]
-- [scsi] cxgb3i: add iSCSI DDP support (Sai Vemuri) [1385866]
-- [scsi] cxgb4i,libcxgbi: add iSCSI DDP support (Sai Vemuri) [1385866]
-- [scsi] cxgb3i, cxgb4i, libcxgbi: remove iSCSI DDP support (Sai Vemuri) [1385866]
-- [iscsi] iscsi-target: fix iscsi cmd leak (Sai Vemuri) [1429179]
-- [iscsi] target/iscsi: Fix unsolicited data seq_end_offset calculation (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: add T6 iSCSI DDP completion feature (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: Enable DDP for T6 only if data sequence and pdu are in order (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: Use T6 specific macros to get ETH/IP hdr len (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: use cxgb4_tp_smt_idx() to get smt idx (Sai Vemuri) [1429179]
-- [iscsi] target/iscsi: split iscsit_check_dataout_hdr() (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: Use T6 specific macro to set the force bit (Sai Vemuri) [1429179]
-- [iscsi] target/cxgbit: Fix endianness annotations (Sai Vemuri) [1429179]
-- [netdrv] cxgb4: Implement ndo_get_phys_port_id for mgmt dev (Sai Vemuri) [1138664]
-- [netdrv] cxgb4: Initialize mbox lock and list for mgmt dev (Sai Vemuri) [1138664]
-- [netdrv] cxgb4: Synchronize access to mailbox (Sai Vemuri) [1138664]
-- [netdrv] cxgb4: Add port description for new cards (Sai Vemuri) [1416916]
-- [netdrv] cxgb4/cxgb4vf: Display 25G and 100G link speed (Sai Vemuri) [1416916]
-- [infiniband] iw_cxgb4: set correct FetchBurstMax for QPs (Sai Vemuri) [1416910]
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-608.el7]
-- [char] tpm: Only call pm_runtime_get_sync if device has a parent (Jerry Snitselaar) [1402539]
-- [char] tmp/tpm_crb: implement runtime pm for tpm_crb (Jerry Snitselaar) [1402539]
-- [char] tpm/tpm_crb: open code the crb_init into acpi_add (Jerry Snitselaar) [1402539]
-- [char] tmp/tpm_crb: fix Intel PTT hw bug during idle state (Jerry Snitselaar) [1402539]
-- [char] tpm/tpm_crb: implement tpm crb idle state (Jerry Snitselaar) [1402539]
-- [char] tpm_tis: fix the error handling of init_tis() (Jerry Snitselaar) [1383554]
-- [char] tpm: remove invalid min length check from tpm_do_selftest() (Jerry Snitselaar) [1383554]
-- [char] tpm: add check for minimum buffer size in tpm_transmit() (Jerry Snitselaar) [1383554]
-- [char] tpm: constify TPM 1.x header structures (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_crb: fix the over 80 characters checkpatch warring (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_crb: drop useless cpu_to_le32 when writing to registers (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_crb: cache cmd_size register value (Jerry Snitselaar) [1383554]
-- [char] tmp/tpm_crb: drop include to platform_device (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_tis: remove unused itpm variable (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: fix incorrect values of cmdReady and goIdle bits (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: refine the naming of constants (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: remove wmb()'s (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: fix crb_req_canceled behavior (Jerry Snitselaar) [1383554]
-- [char] tpm: use tpm_pcr_read_dev() in tpm_do_selftest() (Jerry Snitselaar) [1383554]
-- [char] tpm: use tpm_transmit_cmd() in tpm2_probe() (Jerry Snitselaar) [1383554]
-- [char] tpm: replace tpm_gen_interrupt() with tpm_tis_gen_interrupt() (Jerry Snitselaar) [1383554]
-- [char] tpm: remove unnecessary externs from tpm.h (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Remove useless tpm_gen_interrupt (Jerry Snitselaar) [1383554]
-- [char] tpm: fix a race condition in tpm2_unseal_trusted() (Jerry Snitselaar) [1383554]
-- [char] tpm: invalid self test error message (Jerry Snitselaar) [1383554]
-- [char] tpm: Add TPM 2.0 support to the Nuvoton i2c driver (NPCT6xx family) (Jerry Snitselaar) [1383554]
-- [char] tpm: Factor out common startup code (Jerry Snitselaar) [1383554]
-- [char] tpm: use devm_add_action_or_reset (Jerry Snitselaar) [1383554]
-- [char] tpm2_i2c_nuvoton: add irq validity check (Jerry Snitselaar) [1383554]
-- [char] tpm: read burstcount from TPM_STS in one 32-bit transaction (Jerry Snitselaar) [1383554]
-- [char] tpm: fix byte-order for the value read by tpm2_get_tpm_pt (Jerry Snitselaar) [1383554]
-- [char] tpm_tis_core: convert max timeouts from msec to jiffies (Jerry Snitselaar) [1383554]
-- [char] tpm_crb: fix address space of the return pointer in crb_map_res() (Jerry Snitselaar) [1383554]
-- [char] tpm_vtpm_proxy: fix address space of a user pointer in vtpmx_fops_ioctl() (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_tis_spi: Add support for spi phy (Jerry Snitselaar) [1383554]
-- [char] tpm/tpm_tis: Split tpm_tis driver into a core and TCG TIS compliant phy (Jerry Snitselaar) [1383554]
-- [char] tpm_tis: Introduce intermediate layer for TPM access (Jerry Snitselaar) [1383554]
-- [char] tpm: tpm_tis: Share common data between phys (Jerry Snitselaar) [1383554]
-- [char] tpm: Add include guards in tpm.h (Jerry Snitselaar) [1383554]
-- [char] tpm: Fix suspend regression (Jerry Snitselaar) [1383554]
-- [char] tpm: fix for typo in tpm/tpm_ibmvtpm.c (Jerry Snitselaar) [1383554]
-- [char] tpm: select ANON_INODES for proxy driver (Jerry Snitselaar) [1383554]
-- [char] tpm: Fix IRQ unwind ordering in TIS (Jerry Snitselaar) [1383554]
-- [char] tpm: Proxy driver for supporting multiple emulated TPMs (Jerry Snitselaar) [1383554]
-- [char] tpm: Introduce TPM_CHIP_FLAG_VIRTUAL (Jerry Snitselaar) [1383554]
-- [char] tpm: Remove all uses of drvdata from the TPM Core (Jerry Snitselaar) [1383554]
-- [char] tpm: Remove useless priv field in struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: Move tpm_vendor_specific data related with PTP specification to tpm_chip (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'locality' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'read_queue' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'irq' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'iobase' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop list from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop the field 'time_expired' from struct tpm_chip (Jerry Snitselaar) [1383554]
-- [char] tpm: drop 'base' from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop manufacturer_id from struct tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop tpm_atmel specific fields from tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: drop int_queue from tpm_vendor_specific (Jerry Snitselaar) [1383554]
-- [char] tpm: check for TPM_CHIP_FLAG_TPM2 before calling tpm2_shutdown() (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Remove unneeded tpm_reg in get_burstcount (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Drop two useless checks in ACPI probe path (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/i2c: Drop two useless checks in ACPI probe path (Jerry Snitselaar) [1383554]
-- [char] tpm: fix crash in tpm_tis deinitialization (Jerry Snitselaar) [1383554]
-- [char] tpm: cleanup tpm_tis_remove() (Jerry Snitselaar) [1383554]
-- [char] tpm: fix tpm_bios_log_setup stub prototype (Jerry Snitselaar) [1383554]
-- [char] tpm: Replace device number bitmap with IDR (Jerry Snitselaar) [1383554]
-- [char] tpm: Split out the devm stuff from tpmm_chip_alloc (Jerry Snitselaar) [1383554]
-- [char] tpm: Get rid of module locking (Jerry Snitselaar) [1383554]
-- [char] tpm: Provide strong locking for device removal (Jerry Snitselaar) [1383554]
-- [char] tpm: Get rid of devname (Jerry Snitselaar) [1383554]
-- [char] tpm: Get rid of chip->pdev (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Change xxx_request_resources header (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/i2c: Change xxx_request_resources header (Jerry Snitselaar) [1383554]
-- [char] tpm: st33zp24: Add support for acpi probing for spi device (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Add support for acpi probing for i2c device (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Extend Copyright headers (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Improve st33zp24_spi_evaluate_latency (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Auto-select core module (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24: Remove unneeded CONFIG_OF switches (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Remove field spi_xfer from st33zp24_spi_phy structure (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Remove useless use of memcpy (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Use functions name with st33zp24_spi_ prefix (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Remove nbr_dummy_bytes variable usage (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Add missing device table for spi phy (Jerry Snitselaar) [1383554]
-- [char] tpm/st33zp24/spi: Add st33zp24 spi phy (Jerry Snitselaar) [1383554]
-
-* Wed Mar 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-607.el7]
-- [net] sched: respect rcu grace period on cls destruction (Ivan Vecera) [1420506]
-- [net] sched: cls_cgroup tear down exts and ematch from rcu callback (Ivan Vecera) [1420506]
-- [net] sched: act_mirred: fix a race condition on mirred_list (Ivan Vecera) [1420506]
-- [net] sched: cls_flow: fix panic on filter replace (Ivan Vecera) [1420506]
-- [net] sched: cls_bpf: fix panic on filter replace (Ivan Vecera) [1420506]
-- [net] sched: fix call_rcu() race on classifier module unloads (Ivan Vecera) [1420506]
-- [net] sched: fix struct tc_u_hnode layout in u32 (Ivan Vecera) [1420506]
-- [net] sched: fix suspicious rcu_dereference_check in net/sched/sch_fq_codel.c (Ivan Vecera) [1420506]
-- [net] sched: fix another regression in cls_tcindex (Ivan Vecera) [1420506]
-- [net] sched: cls_cgroup need tcf_exts_init in all cases (Ivan Vecera) [1420506]
-- [net] sched: cls_u32: fix unsued cpu variable (Ivan Vecera) [1420506]
-- [net] sched: cls_fw: add missing tcf_exts_init call in fw_change() (Ivan Vecera) [1420506]
-- [net] sched: fix a null pointer dereference in tcindex_set_parms() (Ivan Vecera) [1420506]
-- [net] sched: fix memory leak in cls_tcindex (Ivan Vecera) [1420506]
-- [net] sched: use tcindex_filter_result_init() (Ivan Vecera) [1420506]
-- [net] sched: fix suspicious RCU usage in tcindex_classify() (Ivan Vecera) [1420506]
-- [net] sched: fix an allocation bug in tcindex_set_parms() (Ivan Vecera) [1420506]
-- [net] sched: fix suspicious RCU usage in cls_bpf_classify() (Ivan Vecera) [1420506]
-- [net] sched: suspicious RCU usage in qdisc_watchdog (Ivan Vecera) [1420506]
-- [net] sched: cls_cgroup fix possible memory leak of 'new' (Ivan Vecera) [1420506]
-- [net] sched: fix error return code in fw_change_attrs() (Ivan Vecera) [1420506]
-- [net] sched: rcu'ify cls_bpf (Ivan Vecera) [1420506]
-- [net] sched: rcu'ify cls_rsvp (Ivan Vecera) [1420506]
-- [net] sched: make cls_u32 lockless (Ivan Vecera) [1420506]
-- [net] sched: avoid generating same handle for u32 filters (Ivan Vecera) [1420506]
-- [net] sched: change "foo* bar" to "foo *bar" (Ivan Vecera) [1420506]
-- [net] sched: make cls_u32 per cpu (Ivan Vecera) [1420506]
-- [net] sched: RCU cls_tcindex (Ivan Vecera) [1420506]
-- [net] sched: RCU cls_route (Ivan Vecera) [1420506]
-- [net] sched: fw use RCU (Ivan Vecera) [1420506]
-- [net] sched: cls_flow use RCU (Ivan Vecera) [1420506]
-- [net] sched: cls_cgroup use RCU (Ivan Vecera) [1420506]
-- [net] sched: cls_basic use RCU (Ivan Vecera) [1420506]
-- [net] sched: rcu-ify tcf_proto (Ivan Vecera) [1420506]
-- [net] sched: qdisc: use rcu prefix and silence sparse warnings (Ivan Vecera) [1420506]
-- [net] sched: use no more than one page in struct fw_head (Ivan Vecera) [1420506]
-- [net] sched: optimize tcf_match_indev() (Ivan Vecera) [1420506]
-- [net] sched: add struct net pointer to tcf_proto_ops->dump (Ivan Vecera) [1420506]
-- [net] sched: Fix dumping of non-existing actions' stats (Ivan Vecera) [1420506]
-- [net] sched: copy exts->type in tcf_exts_change() (Ivan Vecera) [1420506]
-- [net] sched: fix an oops in tcindex filter (Ivan Vecera) [1420506]
-- [net] sched: act: allow to clear all actions as well (Ivan Vecera) [1420506]
-- [net] sched: cls: check if we could overwrite actions when changing a filter (Ivan Vecera) [1420506]
-- [net] sched: sch_htb: let skb->priority refer to non-leaf class (Ivan Vecera) [1420506]
-- [net] sched: avoid casting void pointer (Ivan Vecera) [1420506]
-- [net] sched: fix regression in tc_action_ops (Ivan Vecera) [1420506]
-- [net] sched: fix a regression in tcf_proto_lookup_ops() (Ivan Vecera) [1420506]
-- [net] sched: fix a regression in tc actions (Ivan Vecera) [1420506]
-- [net] sched: convert tcf_proto_ops to use struct list_head (Ivan Vecera) [1420506]
-- [net] sched: convert tc_action_ops to use struct list_head (Ivan Vecera) [1420506]
-- [net] sched: convert tcf_hashinfo to hlist and use spinlock (Ivan Vecera) [1420506]
-- [net] sched: init struct tcf_hashinfo at register time (Ivan Vecera) [1420506]
-- [net] sched: cls: refactor out struct tcf_ext_map (Ivan Vecera) [1420506]
-- [net] sched: act: use standard struct list_head (Ivan Vecera) [1420506]
-- [net] sched: remove get_stats from tc_action_ops (Ivan Vecera) [1420506]
-- [net] sched: Use default action walker methods (Ivan Vecera) [1420506]
-- [net] sched: Provide default walker function for actions (Ivan Vecera) [1420506]
-- [net] sched: Use default action lookup functions (Ivan Vecera) [1420506]
-- [net] sched: Default action lookup method for actions (Ivan Vecera) [1420506]
-- [net] sched: Fail if missing mandatory action operation methods (Ivan Vecera) [1420506]
-
-* Tue Mar 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-606.el7]
-- [misc] mei: bus: enable OS version only for SPT and newer (Jerry Snitselaar) [1404064]
-- [misc] mei: send OS type to the FW (Jerry Snitselaar) [1404064]
-- [misc] mei: enable to set the internal flag for client write (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: use module_mei_cl_driver macro (Jerry Snitselaar) [1404064]
-- [kernel] mei: bus: add module_mei_cl_driver helper macro (Jerry Snitselaar) [1404064]
-- [nfc] mei: bus: fix received data size check in NFC fixup (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: demote error to debug level upon disconnect (Jerry Snitselaar) [1404064]
-- [misc] mei: show the HBM protocol versions in the device attributes (Jerry Snitselaar) [1404064]
-- [documentation] mei: add ABI documentation for fw_status exported through sysfs (Jerry Snitselaar) [1404064]
-- [documentation] mei: sysfs: add Documentation mei class attributes (Jerry Snitselaar) [1404064]
-- [misc] mei: txe: don't clean an unprocessed interrupt cause (Jerry Snitselaar) [1404064]
-- [misc] mei: stop the stall timer worker if not needed (Jerry Snitselaar) [1404064]
-- [misc] mei: me: add kaby point device ids (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: fix deadlock in initialization during a reset (Jerry Snitselaar) [1404064]
-- [misc] mei: drop unused file transaction states (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop mei_amthif_read (Jerry Snitselaar) [1404064]
-- [misc] mei: enqueue consecutive reads (Jerry Snitselaar) [1404064]
-- [misc] mei: add wrapper for queuing control commands (Jerry Snitselaar) [1404064]
-- [misc] mei: use consistent naming for TX control flow credits (Jerry Snitselaar) [1404064]
-- [misc] mei: rx flow control counter (Jerry Snitselaar) [1404064]
-- [misc] mei: prepare read cb for fixed address clients on the receive path only (Jerry Snitselaar) [1404064]
-- [misc] mei: drop redundant krealloc and checks in irq read (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop mei_clear_lists function (Jerry Snitselaar) [1404064]
-- [misc] mei: add read callback on demand for fixed_address clients (Jerry Snitselaar) [1404064]
-- [misc] mei: add file pointer to the host client structure (Jerry Snitselaar) [1404064]
-- [misc] mei: move read cb to complete queue if not connected (Jerry Snitselaar) [1404064]
-- [misc] mei: fix return value on disconnection (Jerry Snitselaar) [1404064]
-- [misc] mei: drop read complete queue emptiness check (Jerry Snitselaar) [1404064]
-- [misc] mei: hbm: add missing argument in the kdoc (Jerry Snitselaar) [1404064]
-- [misc] mei: recover after errors in runtime pm flow (Jerry Snitselaar) [1404064]
-- [misc] mei: drop mei_io_cb_alloc_buf (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: use mei_cl_alloc_cb for allocating cbs (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop mei_amthif_send_cmd (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: enable poll for async events (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop iamthif_current_cb (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: fix request cancel (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop READ_COMPLETE state (Jerry Snitselaar) [1404064]
-- [misc] mei: don't use wake_up_interruptible for wr_ctrl (Jerry Snitselaar) [1404064]
-- [misc] mei: drop wr_msg from the mei_dev structure (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: call mei_cl_read_start under device lock (Jerry Snitselaar) [1404064]
-- [misc] mei: fix waiting for wr_ctrl for corner cases (Jerry Snitselaar) [1404064]
-- [misc] mei: don't clean control queues on notify request timeout (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: discard not read messages (Jerry Snitselaar) [1404064]
-- [misc] mei: fix NULL dereferencing during FW initiated disconnection (Jerry Snitselaar) [1404064]
-- [misc] mei: drop global me_client_index (Jerry Snitselaar) [1404064]
-- [misc] mei: do not pin module if cldrv->probe() failed (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: use scnprintf in *_show (Jerry Snitselaar) [1404064]
-- [misc] mei: me: add broxton pci device ids (Jerry Snitselaar) [1404064]
-- [misc] mei: fix format string in debug prints (Jerry Snitselaar) [1404064]
-- [misc] mei: fix double freeing of a cb during link reset (Jerry Snitselaar) [1404064]
-- [misc] mei: split amthif client init from end of clients enumeration (Jerry Snitselaar) [1404064]
-- [misc] mei: hbm: send immediate reply flag in enum request (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: run rescan on me_clients list change (Jerry Snitselaar) [1404064]
-- [misc] mei: drop reserved host client ids (Jerry Snitselaar) [1404064]
-- [misc] mei: hbm: warn about fw-initiated disconnect (Jerry Snitselaar) [1404064]
-- [misc] mei: fixed address clients for the new platforms (Jerry Snitselaar) [1404064]
-- [misc] mei: fill file pointer in read cb for fixed address client (Jerry Snitselaar) [1404064]
-- [misc] mei: discard replies from unconnected fixed address clients (Jerry Snitselaar) [1404064]
-- [misc] mei: clean write queues and wake waiters on disconnect (Jerry Snitselaar) [1404064]
-- [misc] mei: wake blocked write on link reset (Jerry Snitselaar) [1404064]
-- [misc] mei: drop superfluous closing bracket from write traces (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: check if the device is enabled before data transfer (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: fix notification event delivery (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: fix RX event scheduling (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: interrupt reader on link reset (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: use rx_wait queue also for amthif client (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: drop parameter validation from mei_amthif_write (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: replace amthif_rd_complete_list with rd_completed (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: allow only one request at a time (Jerry Snitselaar) [1404064]
-- [misc] mei: rename variable names 'file_object' to fp (Jerry Snitselaar) [1404064]
-- [misc] mei: constify struct file pointer (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: don't drop read packets on timeout (Jerry Snitselaar) [1404064]
-- [misc] mei: amthif: don't copy from an empty buffer (Jerry Snitselaar) [1404064]
-- [misc] mei: call stop on failed char device register (Jerry Snitselaar) [1404064]
-- [misc] mei: fix possible integer overflow issue (Jerry Snitselaar) [1404064]
-- [misc] mei: debugfs: allow hbm features list dump in earlier stages (Jerry Snitselaar) [1404064]
-- [misc] mei: debugfs: adjust active clients print buffer (Jerry Snitselaar) [1404064]
-- [misc] mei: trace pci configuration space io (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: whitelist the watchdog client (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: re-register device on event (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: add activation debugfs entry (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: register wd device only if required (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: add status debugfs entry (Jerry Snitselaar) [1404064]
-- [watchdog] mei_wdt: implement MEI iAMT watchdog driver (Jerry Snitselaar) [1404064]
-- [kernel] mei: bus: complete variable rename of type struct mei_cl_device (Jerry Snitselaar) [1404064]
-- [kernel] mei: fixup function prototypes in mei_cl_bus.h (Jerry Snitselaar) [1404064]
-- [misc] mei: wd: drop the watchdog code from the core mei driver (Jerry Snitselaar) [1404064]
-- [misc] mei: drop nfc leftovers from the mei driver (Jerry Snitselaar) [1404064]
-- [misc] mei: always copy the read buffer if data is ready (Jerry Snitselaar) [1404064]
-- [misc] mei: prevent queuing new flow control credit (Jerry Snitselaar) [1404064]
-- [misc] mei: bus: remove redundant uuid string in debug messages (Jerry Snitselaar) [1404064]
-- [kernel] debugfs: Export bool read/write functions (Jerry Snitselaar) [1404064]
-
-* Tue Mar 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-605.el7]
-- [infiniband] ib: Query ports via the core instead of direct into the driver (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Set maj_err and min_err in i40iw_sc_cqp_create (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: fix some indenting in i40iw_sc_vsi_init() (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] rdma/i40iw: use designated initializers (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Set 128B as the only supported RQ WQE size (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Reorganize structures to align with HW capabilities (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix incorrect check for error (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Assign MSS only when it is a new MTU (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix race condition in terminate timer's handler (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix memory leak in CQP destroy when in reset (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix QP flush to not hang on empty queues or failure (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix double free of QP (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Use correct src address in memcpy to rdma stats counters (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove macros I40IW_STAG_KEY_FROM_STAG and I40IW_STAG_INDEX_FROM_STAG (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add request for reset on CQP timeout (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Code cleanup, remove check of PBLE pages (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Correctly fail loopback connection if no listener (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fill in IRD value when on connect request (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Set TOS field in IP header (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add NULL check for ibqp event handler (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Replace list_for_each_entry macro with safe version (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add IP addr handling on netdev events (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add missing cleanup on device close (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add 2MB page support (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Utilize physically mapped memory regions (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix incorrect assignment of SQ head (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove variable flush_code and check to set qp->sq_flush (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove check on return from device_init_pestat() (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Use runtime check for IS_ENABLED(CONFIG_IPV6) (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Use actual page size (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove NULL check for cm_node->iwdev (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove checks for more than 48 bytes inline data (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Query device accounts for internal rsrc (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Optimize inline data copy (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Fix for LAN handler removal (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Correct values for max_recv_sge, max_send_sge (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Use vector when creating CQs (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Convert page_size to encoded value (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Set MAX IRD, MAX ORD size to max supported value (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Remove workaround for pre-production errata (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Enable message packing (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw: Add Quality of Service support (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] ib/i40iw: Remove debug prints after allocation failure (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw_cm: Remove deprecated create_singlethread_workqueue (Stefan Assmann) [1381753 1381749 1381740]
-- [infiniband] i40iw_main: Remove deprecated create_singlethread_workqueue (Stefan Assmann) [1381753 1381749 1381740]
-- [netdrv] enic: add vxlan offload on tx path (Stefan Assmann) [1388239]
-- [netdrv] enic: add udp_tunnel ndo for vxlan offload (Stefan Assmann) [1388239]
-- [netdrv] enic: add devcmds for vxlan offload (Stefan Assmann) [1388239]
-- [netdrv] enic: Remove local ndo_busy_poll() implementation (Stefan Assmann) [1388239]
-- [netdrv] generalize napi_complete_done() (Stefan Assmann) [1388239]
-- [netdrv] enic: set skb->hash type properly (Stefan Assmann) [1388239]
-- [netdrv] enic: fix rq disable (Stefan Assmann) [1388239]
-- [netdrv] enic: use correct type specifier (Stefan Assmann) [1388239]
-- [netdrv] enic: move to new ethtool api {get|set}_link_ksettings (Stefan Assmann) [1388239]
-- [netdrv] enic: add support for set/get rss hash key (Stefan Assmann) [1388239]
-- [netdrv] enic: use netdev_rss_key_fill() helper (Stefan Assmann) [1388239]
-- [netdrv] enic: remove #ifdef CONFIG_RFS_ACCEL around filter structures (Stefan Assmann) [1388239]
-- [netdrv] enic: Add Accelerated RFS support (Stefan Assmann) [1388239]
-- [netdrv] enic: Add tunable_ops support for rx_copybreak (Stefan Assmann) [1388239]
-- [netdrv] enic: use pci_zalloc_consistent (Stefan Assmann) [1388239]
-- [netdrv] enic: use spin_lock(wq_lock) instead of spin_lock_irqsave(wq_lock) (Stefan Assmann) [1388239]
-- [netdrv] enic: support skb->xmit_more (Stefan Assmann) [1388239]
-- [netdrv] enic: use napi_schedule_irqoff() (Stefan Assmann) [1388239]
-
-* Tue Mar 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-604.el7]
-- [netdrv] i40e: mark the value passed to csum_replace_by_diff as __wsum (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Fix TSO checksum pseudo-header adjustment (Stefan Assmann) [1383523]
-- [netdrv] i40e: refactor AQ CMD buffer debug printing (Stefan Assmann) [1383523]
-- [netdrv] i40e: Fix Adaptive ITR enabling (Stefan Assmann) [1383523]
-- [netdrv] i40evf: add comment (Stefan Assmann) [1383523]
-- [netdrv] i40evf: free rings in remove function (Stefan Assmann) [1383523]
-- [netdrv] i40e: Save link FEC info from link up event (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add bus number info to i40e_bus_info struct (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf : Changed version from 1.6.25 to 1.6.27 (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: eliminate i40e_pull_tail() (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Moves skb from i40e_rx_buffer to i40e_ring (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Limit DMA sync of RX buffers to actual packet size (Stefan Assmann) [1383523]
-- [netdrv] i40evf: track outstanding client request (Stefan Assmann) [1383523]
-- [netdrv] i40e: Remove FPK HyperV VF device ID (Stefan Assmann) [1383523]
-- [netdrv] i40e: Quick refactor to start moving data off stack and into Tx buffer info (Stefan Assmann) [1383523]
-- [netdrv] i40evf: remove unused device ID (Stefan Assmann) [1383523]
-- [netdrv] i40e: Deprecating unused macro (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add functions which apply correct PHY access method for read and write operation (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add FEC for 25g (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add support for 25G devices (Stefan Assmann) [1383523]
-- [netdrv] Changed version from 1.6.21 to 1.6.25 (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: napi_poll must return the work done (Stefan Assmann) [1383523]
-- [netdrv] i40e: simplify txd use count calculation (Stefan Assmann) [1383523]
-- [netdrv] i40evf: protect against NULL msix_entries and q_vectors pointers (Stefan Assmann) [1383523]
-- [netdrv] i40evf: check for msix_entries null dereference (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Move some i40evf_reset_task code to separate function (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add protocols over MCTP to i40e_aq_discover_capabilities (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Be much more verbose about what we can and cannot offload (Stefan Assmann) [1383523]
-- [netdrv] i40e: Implementation of ERROR state for NVM update state machine (Stefan Assmann) [1383523]
-- [netdrv] i40e: Reorder logic for coalescing RS bits (Stefan Assmann) [1383523]
-- [netdrv] i40evf: avoid an extra msleep while (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Changed version from 1.6.19 to 1.6.21 (Stefan Assmann) [1383523]
-- [netdrv] i40e: Drop redundant Rx descriptor processing code (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Changed version from 1.6.16 to 1.6.19 (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: fix interrupt affinity bug (Stefan Assmann) [1383523]
-- [netdrv] i40e: group base mode VF offload flags (Stefan Assmann) [1383523]
-- [netdrv] i40evf: support queue-specific settings for interrupt moderation (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Add txring_txq function to match fm10k and ixgbe (Stefan Assmann) [1383523]
-- [netdrv] i40e: Fix Flow Director raw_buf cleanup (Stefan Assmann) [1383523]
-- [netdrv] i40evf: enable adaptive interrupt throttling (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Changed version to 1.6.16 (Stefan Assmann) [1383523]
-- [netdrv] i40e: add encap csum VF offload flag (Stefan Assmann) [1383523]
-- [netdrv] i40evf: remove unnecessary error checking against i40e_shutdown_adminq (Stefan Assmann) [1383523]
-- [netdrv] i40e: Limit TX descriptor count in cases where frag size is greater than 16K (Stefan Assmann) [1383523]
-- [netdrv] i40evf: remove unnecessary error checking against i40evf_up_complete (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Fix link state event handling (Stefan Assmann) [1383523]
-- [netdrv] i40e: avoid potential null pointer dereference when assigning len (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Open RDMA Client after reset (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Fix indentation (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add support for HMC resource and profile for X722 (Stefan Assmann) [1383523]
-- [netdrv] i40e: Fix byte ordering in ARP NS code for X722 (Stefan Assmann) [1383523]
-- [netdrv] i40e: refactor tail_bump check (Stefan Assmann) [1383523]
-- [netdrv] i40evf: report link speed (Stefan Assmann) [1383523]
-- [netdrv] i40e: use alloc_workqueue instead of create_singlethread_workqueue (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf-Bump version from 1.6.11 to 1.6.12 (Stefan Assmann) [1383523]
-- [netdrv] i40evf: add missing rtnl_lock() around i40evf_set_interrupt_capability (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf-bump version to 1.6.11 (Stefan Assmann) [1383523]
-- [netdrv] i40evf: add hyperv dev ids (Stefan Assmann) [1383523]
-- [netdrv] i40e: Remove device ID 0x37D4 (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: remove useless initializer (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Fix i40e_rx_checksum (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Bump version from 1.5.16 to 1.6.4 (Stefan Assmann) [1383523]
-- [netdrv] i40evf: always activate correct MAC address filter (Stefan Assmann) [1383523]
-- [netdrv] i40evf: don't overflow buffer (Stefan Assmann) [1383523]
-- [netdrv] i40e: Add allmulti support for the VF (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Allocate Rx buffers properly (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Remove unused hardware receive descriptor code (Stefan Assmann) [1383523]
-- [netdrv] i40evf: refactor receive routine (Stefan Assmann) [1383523]
-- [netdrv] i40evf: Drop packet split receive routine (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Remove reference to ring->dtype (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Refactor tunnel interpretation (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: Add support for GSO partial with UDP_TUNNEL_CSUM and GRE_CSUM (Stefan Assmann) [1383523]
-- [netdrv] i40evf: make use of BIT() macro to avoid signed left shift (Stefan Assmann) [1383523]
-- [netdrv] i40e/i40evf: fix I40E_MASK signed shift overflow warnings (Stefan Assmann) [1383523]
-
-* Mon Mar 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-603.el7]
-- [infiniband] rdma/qedr: Return success when not changing QP state (Don Dutile) [1414913 1417285]
-- [net] xprtrdma: Shrink send SGEs array (Don Dutile) [1416849 1417285]
-- [net] xprtrdma: Reduce required number of send SGEs (Don Dutile) [1416849 1417285]
-- [net] xprtrdma: Disable pad optimization by default (Don Dutile) [1416849 1417285]
-- [net] xprtrdma: Per-connection pad optimization (Don Dutile) [1416849 1417285]
-- [net] xprtrdma: Fix Read chunk padding (Don Dutile) [1416849 1417285]
-- [netdrv] mlx5: Fix Kconfig help text (Don Dutile) [1385330 1417285]
-- [netdrv] cxgb4/cxgb4vf: Assign netdev->dev_port with port ID (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5e: Change the SQ/RQ operational state to positive logic (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Don't flush SQ on error (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Don't notify HW when filling the edge of ICO SQ (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Fix query ISSI flow (Don Dutile) [1238192 1385330 1417285]
-- [netdrv] mlx5: Remove duplicate pci dev name print (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Verify module parameters (Don Dutile) [1385330 1417285]
-- [net] rds: tcp: unregister_netdevice_notifier() in error path of rds_tcp_init_net (Don Dutile) [1417285]
-- [netdrv] cxgb4: Add PCI device ID for new adapter (Don Dutile) [1385866 1417285]
-- [netdrv] mlx4: Fix uninitialized fields in rule when adding promiscuous mode to device managed flow steering (Don Dutile) [1385329 1417285]
-- [kernel] revert "net/mlx4_en: Avoid unregister_netdev at shutdown flow" (Don Dutile) [1385329 1417285]
-- [netdrv] mlx5: drop duplicate header delay.h (Don Dutile) [1385330 1417285]
-- [netdrv] mlx4_en: Free netdev resources under state lock (Don Dutile) [1385329 1417285]
-- [infiniband] iw_cxgb4: invalidate the mr when posting a read_w_inv wr (Don Dutile) [1385866 1417285]
-- [infiniband] ib/rxe: Update qp state for user query (Don Dutile) [1384574 1417285]
-- [infiniband] ib/rxe: Clear queue buffer when modifying QP to reset (Don Dutile) [1384574 1417285]
-- [infiniband] ib/rxe: Fix handling of erroneous WR (Don Dutile) [1384574 1417285]
-- [infiniband] ib/rxe: Fix kernel panic in UDP tunnel with GRO and RX checksum (Don Dutile) [1384574 1417285]
-- [infiniband] ib/mlx4: Fix create CQ error flow (Don Dutile) [1385329 1417285]
-- [infiniband] ib/mlx4: Check gid_index return value (Don Dutile) [1385329 1417285]
-- [infiniband] ib/mlx5: Fix NULL pointer dereference on debug print (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Fix fatal error dispatching (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Resolve soft lock on massive reg MRs (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Use cache line size to select CQE stride (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Validate requested RQT size (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Fix memory leak in query device (Don Dutile) [1385330 1417285]
-- [infiniband] ib/core: Avoid unsigned int overflow in sg_alloc_table (Don Dutile) [1417285]
-- [infiniband] ib/core: Add missing check for addr_resolve callback return value (Don Dutile) [1417285]
-- [infiniband] ib/core: Set routable RoCE gid type for ipv4/ipv6 networks (Don Dutile) [1417285]
-- [infiniband] ib/cm: Mark stale CM id's whenever the mad agent was unregistered (Don Dutile) [1417285]
-- [infiniband] ib/uverbs: Fix leak of XRC target QPs (Don Dutile) [1417285]
-- [netdrv] cxgb4: do not call napi_hash_del() (Don Dutile) [1385866 1417285]
-- [infiniband] ib/hfi1: Remove incorrect IS_ERR check (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Prevent hardware counter names from being cut off (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix ECN processing in prescan_rxq (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix status error code for unsupported packets (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Relocate rcvhdrcnt module parameter check (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix rnr_timer addition (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Delete unused lock (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Clean up unused argument (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Remove leftover snoop references (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix a potential memory leak in hfi1_create_ctxts() (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Return ENODEV for unsupported PCI device ids (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix an Oops on pci device force remove (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix integrity check flags default values (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Remove redundant sysfs irq affinity entry (Don Dutile) [1382806 1417285]
-- [infiniband] ib/rdmavt: rdmavt can handle non aligned page maps (Don Dutile) [1385848 1417285]
-- [infiniband] shut up a maybe-uninitialized warning (Don Dutile) [1417285]
-- [net] xprtrdma: Fix DMAR failure in frwr_op_map() after reconnect (Don Dutile) [1417285]
-- [netdrv] mlx5: Fix invalid pointer reference when prof_sel parameter is invalid (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: E-Switch, Set the actions for offloaded rules properly (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Disallow changing name-space for VF representors (Don Dutile) [1385330 1417285]
-- [netdrv] cxgb4: correct device ID of T6 adapter (Don Dutile) [1385866 1417285]
-- [net] svcrdma: backchannel cannot share a page for send and rcv buffers (Don Dutile) [1417285]
-- [netdrv] mlx5: Simplify a test (Don Dutile) [1385330 1417285]
-- [netdrv] mlx4_en: Save slave ethtool stats command (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Fix potential deadlock in port statistics flow (Don Dutile) [1385329 1417285]
-- [kernel] mlx4: Fix firmware command timeout during interrupt test (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Do not access comm channel if it has not yet been initialized (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Process all completions in RX rings after port goes up (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Resolve dividing by zero in 32-bit system (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Change the default value of enable_qos (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Avoid setting ports to auto when only one port type is supported (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Fix the resource-type enum in res tracker to conform to FW spec (Don Dutile) [1385329 1417285]
-- [net] rds: debug messages are enabled by default (Don Dutile) [1417285]
-- [netdrv] cxgb4: Fix error handling in alloc_uld_rxqs() (Don Dutile) [1385866 1417285]
-- [netdrv] ib/mlx4: avoid a -Wmaybe-uninitialize warning (Don Dutile) [1385329 1417285]
-- [netdrv] mlx5: Avoid passing dma address 0 to firmware (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: PCI error recovery health care simulation (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Fix race between PCI error handlers and health work (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Clear health sick bit when starting health poll (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Change the acl enable prototype to return status (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Unregister netdev before detaching it (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Choose best nearest LRO timeout (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Correctly initialize last use of flow counters (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Fix autogroups groups num not decreasing (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Keep autogroups list ordered (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Always Query HCA caps after setting them (Don Dutile) [1385330 1417285]
-- [kernel] {net, ib}/mlx5: Make cache line size determination at runtime (Don Dutile) [1385330 1417285]
-- [net] sunrpc: fix some missing rq_rbuffer assignments (Don Dutile) [1275823 1417285]
-- [netdrv] cxgb4: Fix number of queue sets corssing the limit (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: fix memory leak of qe on error exit path (Don Dutile) [1385866 1417285]
-- [infiniband] qedr: Add events support and register IB device (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add GSI support (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add LL2 RoCE interface (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add support for data path (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add support for memory registeration verbs (Don Dutile) [1275823 1417285]
-- [uapi] qedr: Add support for QP verbs (Don Dutile) [1275823 1417285]
-- [uapi] qedr: Add support for PD,PKEY and CQ verbs (Don Dutile) [1275823 1417285]
-- [uapi] qedr: Add support for user context verbs (Don Dutile) [1275823 1417285]
-- [infiniband] qedr: Add support for RoCE HW init (Don Dutile) [1275823 1417285]
-- [uapi] qedr: Add RoCE driver framework (Don Dutile) [1275823 1417285]
-- [kernel] mlx5: Add MLX5_ARRAY_SET64 to fix BUILD_BUG_ON (Don Dutile) [1385330 1417285]
-- [netdrv] iw_cxgb4: add fast-path for small REG_MR operations (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: advertise support for FR_NSMR_TPTE_WR (Don Dutile) [1385866 1417285]
-- [infiniband] ib/core: correctly handle rdma_rw_init_mrs() failure (Don Dutile) [1417285]
-- [infiniband] ib/srp: Fix infinite loop when FMR sg[0].offset != 0 (Don Dutile) [1417285]
-- [infiniband] ib/srp: Remove an unused argument (Don Dutile) [1417285]
-- [infiniband] ib/core: Improve ib_map_mr_sg() documentation (Don Dutile) [1417285]
-- [kernel] ib/mlx4: Fix possible vl/sl field mismatch in LRH header in QP1 packets (Don Dutile) [1385329 1417285]
-- [uapi] ib/mthca: Move user vendor structures (Don Dutile) [1417285]
-- [uapi] ib/nes: Move user vendor structures (Don Dutile) [1417285]
-- [uapi] ib/ocrdma: Move user vendor structures (Don Dutile) [1385876 1417285]
-- [uapi] ib/mlx4: Move user vendor structures (Don Dutile) [1385329 1417285]
-- [uapi] ib/cxgb4: Move user vendor structures (Don Dutile) [1385866 1417285]
-- [uapi] ib/cxgb3: Move user vendor structures (Don Dutile) [1417285]
-- [uapi] ib/mlx5: Move and decouple user vendor structures (Don Dutile) [1385330 1417285]
-- [rdma] ib/{core,hw}: Add constant for node_desc (Don Dutile) [1417285]
-- [infiniband] ipoib: Make ipoib_warn ratelimited (Don Dutile) [1417285]
-- [infiniband] ib/mlx4/alias_guid: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/ipoib_verbs: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/ipoib: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/nes: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx4/mcg: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx4/mad: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx4: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx5/odp: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx5: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mthca: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] iw_cxgb4: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/qib: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] iw_cxgb3: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/iwcm: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/addr: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/cma: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/ucma: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/multicast: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mad: Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/sa : Remove deprecated create_singlethread_workqueue (Don Dutile) [1417285]
-- [infiniband] ib/mlx5: LAG QP load balancing (Don Dutile) [1385219 1385330 1417285]
-- [infiniband] ib/mlx5: Set unique device name on LAG (Don Dutile) [1385219 1385330 1417285]
-- [infiniband] ib/mlx5: Port status track LAG master, when LAG is active (Don Dutile) [1385219 1385330 1417285]
-- [infiniband] ib/mlx5: Merge vports flow steering during LAG (Don Dutile) [1385219 1385330 1417285]
-- [infiniband] ib/mlx5: Port events in RoCE now rely on netdev events (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Track asynchronous events on a receive work queue (Don Dutile) [1385330 1417285]
-- [infiniband] ib/mlx5: Add support of more IPv6 fields to flow steering (Don Dutile) [1385308 1385330 1417285]
-- [infiniband] ib/mlx5: Add support in TOS and protocol to flow steering (Don Dutile) [1385308 1385330 1417285]
-- [uapi] ib/core: Add more fields to IPv6 flow specification (Don Dutile) [1385308 1385330 1417285]
-- [uapi] ib/uverbs: Add more fields to IPv4 flow specification (Don Dutile) [1385308 1385330 1417285]
-- [rdma] ib/uverbs: Add support to extend flow steering specifications (Don Dutile) [1385308 1385330 1417285]
-- [infiniband] ib/mlx5: Add validation to flow specifications parsing (Don Dutile) [1385308 1385330 1417285]
-- [infiniband] ib/mlx4: Add validation to flow specifications parsing (Don Dutile) [1385308 1385330 1417285]
-- [infiniband] ib/mlx5: Add sniffer support to steering (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Increase flow table reference count in create rule (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Fix coverity warning (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Save flow table priority handler instead of index (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Fix steering resource leak (Don Dutile) [1385256 1385330 1417285]
-- [infiniband] ib/mlx5: Add port counter support for raw packet QP (Don Dutile) [1385307 1385330 1417285]
-- [infiniband] ib/mlx5: Refactor raw packet QP modify function (Don Dutile) [1385307 1385330 1417285]
-- [infiniband] ib/mlx5: Expose RSS related capabilities (Don Dutile) [1385330 1417285]
-- [uapi] ib/uverbs: Expose RSS related capabilities (Don Dutile) [1417285]
-- [rdma] ib/core: Expose RSS related capabilities (Don Dutile) [1417285]
-- [infiniband] ib/rxe: improved debug prints & code cleanup (Don Dutile) [1384574 1417285]
-- [infiniband] rdma_rxe: Ensure rdma_rxe init occurs at correct time (Don Dutile) [1384574 1417285]
-- [infiniband] ib/rxe: Properly honor max IRD value for rd/atomic (Don Dutile) [1384574 1417285]
-- [rdma] ib/{rxe, core, rdmavt}: Fix kernel crash for reg MR (Don Dutile) [1385848 1384574 1417285]
-- [infiniband] ib/rdmavt: Trivial function comment corrected (Don Dutile) [1385848 1417285]
-- [netdrv] cxgb4: unexport cxgb4_dcb_enabled (Don Dutile) [1385866 1417285]
-- [infiniband] ib/hfi1: Fix trace of atomic ack (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Update SMA ingress checks for response packets (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Use EPROM platform configuration read (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add ability to read platform config from the EPROM (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Restore EPROM read ability (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add new debugfs sdma_cpu_list file (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add irq affinity notification handler (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add a new VL sysfs attribute for sdma engines (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Add sysfs interface for affinity setup (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix resource release in context allocation (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Remove unused variable from devdata (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Cleanup tasklet refs in comments (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Adjust hardware buffering parameter (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Act on external device timeout (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix defered ack race with qp destroy (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Combine shift copy and byte copy for SGE reads (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Do not read more than a SGE length (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Extend i2c timeout (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Increase default settings of max_cqes and max_qps (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Remove filtering of Set(PkeyTable) in HFI SMA (Don Dutile) [1382806 1417285]
-- [infiniband] ib/qib: Remove qpt_mask global (Don Dutile) [1381986 1417285]
-- [infiniband] ib/hfi1: Consolidate pio control masks into single definition (Don Dutile) [1382806 1417285]
-- [infiniband] ib/rdmavt, ib/hfi1: Add lockdep asserts for lock debug (Don Dutile) [1385848 1417285]
-- [infiniband] ib/rdmavt: Add qp init function (Don Dutile) [1385848 1417285]
-- [infiniband] ib/rdmavt: Move reset calldown to reset path (Don Dutile) [1385848 1417285]
-- [infiniband] ib/hfi1: Move iowait_init() to priv allocate (Don Dutile) [1382806 1417285]
-- [infiniband] ib/rdmavt: Correct sparse annotation (Don Dutile) [1385848 1417285]
-- [infiniband] ib/hfi1: Fix locking scheme for affinity settings (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix user-space buffers mapping with IOMMU enabled (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Fix the count of user packets submitted to an SDMA engine (Don Dutile) [1382806 1417285]
-- [infiniband] ib/hfi1: Move serdes tune inside link start function (Don Dutile) [1382806 1417285]
-- [infiniband] ib/qib,ib/hfi: Use core common header file (Don Dutile) [1382806 1417285]
-- [rdma] ib/core: Add ib headers for general use (Don Dutile) [1417285]
-- [netdrv] mlx5: Add ndo_poll_controller() implementation (Don Dutile) [1385330 1417285]
-- [netdrv] mlx4: remove unused fields (Don Dutile) [1385329 1417285]
-- [netdrv] cxgb4: mark symbols static where possible (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: fix -ve error check on a signed iq (Don Dutile) [1385866 1417285]
-- [kernel] mlx4: Add VF vlan protocol 802.1ad support (Don Dutile) [1386553 1385329 1417285]
-- [netdrv] mlx4_en: Disable vlan HW acceleration when in VF vlan protocol 802.1ad mode (Don Dutile) [1386553 1385329 1417285]
-- [kernel] mlx4_core: Preparation for VF vlan protocol 802.1ad (Don Dutile) [1386553 1385329 1417285]
-- [netdrv] mlx4_core: Fix QUERY FUNC CAP flags (Don Dutile) [1386553 1385329 1417285]
-- [rdma] ib/core: remove ib_get_dma_mr (Don Dutile) [1417285]
-- [infiniband] ib/srp: use IB_PD_UNSAFE_GLOBAL_RKEY (Don Dutile) [1417285]
-- [infiniband] ib/iser: use IB_PD_UNSAFE_GLOBAL_RKEY (Don Dutile) [1417285]
-- [net] ib/core: add support to create a unsafe global rkey to ib_create_pd (Don Dutile) [1417285]
-- [rdma] ib/core: rename pd->local_mr to pd->__internal_mr (Don Dutile) [1417285]
-- [net] svcrdma: support Remote Invalidation (Don Dutile) [1417285]
-- [net] svcrdma: Server-side support for rpcrdma_connect_private (Don Dutile) [1417285]
-- [net] svcrdma: Skip put_page() when send_reply() fails (Don Dutile) [1417285]
-- [net] svcrdma: Tail iovec leaves an orphaned DMA mapping (Don Dutile) [1417285]
-- [net] xprtrdma: use complete() instead complete_all() (Don Dutile) [1417285]
-- [netdrv] cxgb4: fix signed wrap around when decrementing index idx (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5: E-Switch, Support VLAN actions in the offloads mode (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Refactor retrival of skb from rx completion element (cqe) (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Put elements related to offloaded TC rule in one struct (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: E-Switch, Allow fine tuning of eswitch vport push/pop vlan (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: E-Switch, Set vport representor fields explicitly on registration (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: E-Switch, Set the vport when registering the uplink rep (Don Dutile) [1385330 1417285]
-- [netdrv] cxgb4: Convert to use simple_open() (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Have a clear separation between different SQ types (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Dynamic RQ type infrastructure (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Slightly reduce hardware LRO size (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Union RQ RX info per RQ type (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5e: Build RX SKB on demand (Don Dutile) [1385330 1417285]
-- [kernel] ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Don Dutile) [1417285]
-- [netdrv] cxgb4: add parser to translate u32 filters to internal spec (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: add common api support for configuring filters (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: move common filter code to separate file (Don Dutile) [1385866 1417285]
-- [netdrv] mlx4_core: Fix deadlock when switching between polling and event fw commands (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_core: Use RCU to perform radix tree lookup for SRQ (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Fix wrong indentation (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: Add branch prediction hints in RX data-path (Don Dutile) [1385329 1417285]
-- [netdrv] mlx4_en: add page recycle to prepare rx ring for tx support (Don Dutile) [1385329 1417285]
-- [netdrv] mlx5: clean function declarations in eswitch.c up (Don Dutile) [1385330 1417285]
-- [net] xprtrdma: Eliminate rpcrdma_receive_worker() (Don Dutile) [1417285]
-- [net] xprtrdma: Rename rpcrdma_receive_wc() (Don Dutile) [1417285]
-- [net] xprtrmda: Report address of frmr, not mw (Don Dutile) [1417285]
-- [net] xprtrdma: Support larger inline thresholds (Don Dutile) [1417285]
-- [net] xprtrdma: Use gathered Send for large inline messages (Don Dutile) [1417285]
-- [net] xprtrdma: Basic support for Remote Invalidation (Don Dutile) [1417285]
-- [net] xprtrdma: Client-side support for rpcrdma_connect_private (Don Dutile) [1417285]
-- [kernel] rpcrdma: RDMA/CM private message data structure (Don Dutile) [1417285]
-- [net] xprtrdma: Move recv_wr to struct rpcrdma_rep (Don Dutile) [1417285]
-- [net] xprtrdma: Move send_wr to struct rpcrdma_req (Don Dutile) [1417285]
-- [net] xprtrdma: Simplify rpcrdma_ep_post_recv() (Don Dutile) [1417285]
-- [net] xprtrdma: Eliminate "ia" argument in rpcrdma_{alloc, free}_regbuf (Don Dutile) [1417285]
-- [net] xprtrdma: Delay DMA mapping Send and Receive buffers (Don Dutile) [1417285]
-- [net] xprtrdma: Replace DMA_BIDIRECTIONAL (Don Dutile) [1417285]
-- [net] xprtrdma: Use smaller buffers for RPC-over-RDMA headers (Don Dutile) [1417285]
-- [net] xprtrdma: Initialize separate RPC call and reply buffers (Don Dutile) [1417285]
-- [net] sunrpc: Add a transport-specific private field in rpc_rqst (Don Dutile) [1417285]
-- [net] sunrpc: Separate buffer pointers for RPC Call and Reply messages (Don Dutile) [1417285]
-- [net] sunrpc: Generalize the RPC buffer release API (Don Dutile) [1417285]
-- [net] sunrpc: Generalize the RPC buffer allocation API (Don Dutile) [1417285]
-- [net] sunrpc: Refactor rpc_xdr_buf_init() (Don Dutile) [1417285]
-- [net] xprtrdma: Eliminate INLINE_THRESHOLD macros (Don Dutile) [1417285]
-- [netdrv] cxgb4: Fix return value check in cfg_queues_uld() (Don Dutile) [1385866 1417285]
-- [crypto] chcr - Fix memory corruption (Don Dutile) [1385866 1417285]
-- [target] chcr/cxgb4i/cxgbit/rdma/cxgb4: Allocate resources dynamically for all cxgb4 ULD's (Don Dutile) [1385866 1417285]
-- [crypto] chcr: Fix non static symbol warning (Don Dutile) [1385866 1417285]
-- [crypto] Added Chelsio Menu to the Kconfig file (Don Dutile) [1385866 1417285]
-- [crypto] chcr: Support for Chelsio's Crypto Hardware (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5e: Implement RX mapped page cache for page recycle (Don Dutile) [1385310 1385330 1417285]
-- [netdrv] mlx5e: Introduce API for RX mapped pages (Don Dutile) [1385310 1385330 1417285]
-- [netdrv] mlx5e: Single flow order-0 pages for Striding RQ (Don Dutile) [1385310 1385330 1417285]
-- [infiniband] ib/rdmavt, ib/qib, ib/hfi1: Use new QP put get routines (Don Dutile) [1381986 1382806 1385848 1417285]
-- [rdma] ib/rdmavt: Add functions to get and release QP references (Don Dutile) [1385848 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_rx_data_ack() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_abort_rpl() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_abort_req() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_close_con_req() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_mk_tid_release() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_compute_wscale() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_best_mtu() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_is_neg_adv() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_find_route6() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_find_route() (Don Dutile) [1385866 1417285]
-- [target] libcxgb, iw_cxgb4, cxgbit: add cxgb_get_4tuple() (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4vf: don't offload Rx checksums for IPv6 fragments (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5: Organize device list API in one place (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5e: Restore vlan filter after seamless reset (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5e: Implement mlx5e interface attach/detach callbacks (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Implement vports admin state backup/restore (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Align sriov/eswitch modules with the new load/unload flow (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Implement eswitch attach/detach flows (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Implement SRIOV attach/detach flows (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Split the load/unload flow into hardware and software flows (Don Dutile) [1385214 1385330 1417285]
-- [kernel] mlx5: Introduce attach/detach to interface API (Don Dutile) [1385214 1385330 1417285]
-- [kernel] mlx5: SRIOV core code refactoring (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] mlx5: Skip waiting for vf pages in internal error (Don Dutile) [1385214 1385330 1417285]
-- [netdrv] cxgb4: Add support for ndo_get_vf_config (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4/cxgb4vf: fix spelling mistake "provissioned" -> "provisioned" (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: Remove unused including <linux/version.h> (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: add support for tx max rate limiting (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: add support for per queue tx scheduling (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: add support for tx traffic scheduling classes (Don Dutile) [1385866 1417285]
-- [netdrv] mlx5/core: Use memdup_user() rather than duplicating its implementation (Don Dutile) [1385330 1417285]
-- [netdrv] cxgb4: Simplify the return expression (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: Register changes and fw defines for crypto (Don Dutile) [1385866 1417285]
-- [netdrv] cxgb4: Add support for dynamic allocation of resources for ULD (Don Dutile) [1385866 1417285]
-- [kernel] mlx5: Add sniffer namespaces (Don Dutile) [1385256 1385330 1417285]
-- [kernel] mlx5: Introduce sniffer steering hardware capabilities (Don Dutile) [1385256 1385330 1417285]
-- [netdrv] mlx5: Configure IB devices according to LAG state (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Vport LAG creation support (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Add LAG flow steering namespace (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: LAG demux flow table support (Don Dutile) [1385219 1385330 1417285]
-- [netdrv] mlx5: LAG and SRIOV cannot be used together (Don Dutile) [1385219 1385330 1417285]
-- [netdrv] mlx5e: Avoid port remapping of mlx5e netdev TISes (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Get RoCE netdev (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Implement RoCE LAG feature (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Add HW interfaces used by LAG (Don Dutile) [1385219 1385330 1417285]
-- [kernel] mlx5: Separate query_port_proto_oper for IB and EN (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Expose mlx5e_link_mode (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Update struct mlx5_ifc_xrqc_bits (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Modify RQ bitmask from mlx5 ifc (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Introduce alloc_encap and dealloc_encap commands (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Update mlx5_ifc.h for vxlan encap/decap (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Enable setting minimum inline header mode for VFs (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Improve driver log messages (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Unify and improve command interface (Don Dutile) [1385330 1417285]
-- [kernel] {net, ib}/mlx5: Modify QP commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] {net, ib}/mlx5: QP/XRCD commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] {net, ib}/mlx5: MKey/PSV commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] {net,ib}/mlx5: CQ commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: EQ commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: Pages management commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: MCG commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [netdrv] mlx5: PD and UAR commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Access register and MAD IFC commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [kernel] mlx5: Init/Teardown hca commands via mlx5 ifc (Don Dutile) [1385330 1417285]
-- [net] rds: add __printf format attribute to error reporting functions (Don Dutile) [1417285]
-
-* Mon Mar 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-602.el7]
-- [netdrv] qed: Conserve RDMA resources when !QEDR (Harish Patil) [1391272]
-- [netdrv] qed: Support Multicast on Tx-switching (Harish Patil) [1391272]
-- [netdrv] qed*: RSS indirection based on queue-handles (Harish Patil) [1391272]
-- [netdrv] qede: Remove unnecessary datapath dereference (Harish Patil) [1391272]
-- [netdrv] qede - mark SKB as encapsulated (Harish Patil) [1391272]
-- [netdrv] qede: Postpone reallocation until NAPI end (Harish Patil) [1391272]
-- [netdrv] qed*: Change maximal number of queues (Harish Patil) [1391272]
-- [netdrv] qede: Split filtering logic to its own file (Harish Patil) [1391272]
-- [netdrv] qede: Break datapath logic into its own file (Harish Patil) [1391272]
-- [netdrv] qed*: Update to dual-license (Harish Patil) [1391272]
-- [netdrv] qed*: Advance driver versions to 8.10.10.20 (Harish Patil) [1391272]
-- [netdrv] qed: fix old-style function definition (Harish Patil) [1391272]
-- [netdrv] qede: fix general protection fault may occur on probe (Harish Patil) [1391272]
-- [netdrv] qede: use reset to set network header (Harish Patil) [1391272]
-- [netdrv] qed: Add iSCSI out of order packet handling (Harish Patil) [1391272]
-- [netdrv] qed: Add support for hardware offloaded iSCSI (Harish Patil) [1391272]
-- [netdrv] qede: Better utilize the qede_[rt]x_queue (Harish Patil) [1391272]
-- [netdrv] qede: Don't check netdevice for rx-hash (Harish Patil) [1391272]
-- [netdrv] qed*: Handle-based L2-queues (Harish Patil) [1391272]
-- [netdrv] qede: Revise state locking scheme (Harish Patil) [1391272]
-- [netdrv] qede: Refactor data-path Rx flow (Harish Patil) [1391272]
-- [netdrv] qede: Refactor statistics gathering (Harish Patil) [1391272]
-- [netdrv] qede: Remove 'num_tc' (Harish Patil) [1391272]
-- [netdrv] qed: Optimize qed_chain datapath usage (Harish Patil) [1391272]
-- [netdrv] qede: Optimize aggregation information size (Harish Patil) [1391272]
-- [netdrv] qed: Correct rdma params configuration (Harish Patil) [1391272]
-- [netdrv] qed: configure ll2 RoCE v1/v2 flavor correctly (Harish Patil) [1391272]
-- [netdrv] qed: Prevent stack corruption on MFW interaction (Harish Patil) [1391272]
-- [netdrv] qede: Correctly map aggregation replacement pages (Harish Patil) [1391272]
-- [netdrv] qed: Correct VF mac number (Harish Patil) [1391272]
-- [netdrv] qede: Don't override priv_flags (Harish Patil) [1391272]
-- [netdrv] qed: Learn resources from management firmware (Harish Patil) [1391272]
-- [netdrv] qed: Use VF-queue feature (Harish Patil) [1391272]
-- [netdrv] qed: Learn of RDMA capabilities per-device (Harish Patil) [1391272]
-- [netdrv] qede: Decouple ethtool caps from qed (Harish Patil) [1391272]
-- [netdrv] qed*: Add support for WoL (Harish Patil) [1391272]
-- [netdrv] qed: Add nvram selftest (Harish Patil) [1391272]
-- [netdrv] qed*: Management firmware - notifications and defaults (Harish Patil) [1391272]
-- [netdrv] qede: Fix statistics' strings for Tx/Rx queues (Harish Patil) [1391272]
-- [netdrv] qede: Fix out-of-bound fastpath memory access (Harish Patil) [1391272]
-- [netdrv] qede: Fix incorrrect usage of APIs for un-mapping DMA memory (Harish Patil) [1391272]
-- [netdrv] qed: Zero-out the buffer paased to dcbx_query() API (Harish Patil) [1391272]
-- [netdrv] qede: Reconfigure rss indirection direction table when rss count is updated (Harish Patil) [1391272]
-- [netdrv] qed*: Reduce the memory footprint for Rx path (Harish Patil) [1391272]
-- [netdrv] qede: Loopback implementation should ignore the normal traffic (Harish Patil) [1391272]
-- [netdrv] qede: get_channels() need to populate max tx/rx coalesce values (Harish Patil) [1391272]
-- [netdrv] qed: Use list_move_tail instead of list_del/list_add_tail (Harish Patil) [1391272]
-- [netdrv] qed: Remove useless set memory to zero use memset() (Harish Patil) [1391272]
-- [netdrv] qed: Fix possible race when reading firmware return code (Harish Patil) [1391272]
-- [netdrv] qed: Handle malicious VFs events (Harish Patil) [1391272]
-- [netdrv] qed: Allow chance for fast ramrod completions (Harish Patil) [1391272]
-- [netdrv] qed*: Allow unicast filtering (Harish Patil) [1391272]
-- [netdrv] qede: Prevent GSO on long Geneve headers (Harish Patil) [1391272]
-- [netdrv] qede: GSO support for tunnels with outer csum (Harish Patil) [1391272]
-- [netdrv] qed: Pass MAC hints to VFs (Harish Patil) [1391272]
-- [netdrv] qed: Additional work toward cleaning C=1 (Harish Patil) [1391272]
-- [netdrv] qede: Do not allow RSS config for 100G devices (Harish Patil) [1391272]
-- [netdrv] qed*: Fix Kconfig dependencies with INFINIBAND_QEDR (Harish Patil) [1391272]
-- [netdrv] qed: Fix static checker warning (Harish Patil) [1391272]
-- [netdrv] qed: fix old-style function definition (Harish Patil) [1391272]
-- [netdrv] qed: Fix to use list_for_each_entry_safe() when delete items (Harish Patil) [1391272]
-- [netdrv] qed: Add RoCE ll2 & GSI support (Harish Patil) [1391272]
-- [netdrv] qed: Add support for memory registeration verbs (Harish Patil) [1391272]
-- [netdrv] qed: Add support for QP verbs (Harish Patil) [1391272]
-- [netdrv] qed: PD,PKEY and CQ verb support (Harish Patil) [1391272]
-- [netdrv] qed: Add support for RoCE hw init (Harish Patil) [1391272]
-- [netdrv] qede: Add qedr framework (Harish Patil) [1391272]
-- [netdrv] qed: Add Light L2 support (Harish Patil) [1391272]
-- [netdrv] qed: Fix stack corruption on probe (Harish Patil) [1391272]
-- [netdrv] qed: mark symbols static where possible (Harish Patil) [1391272]
-- [netdrv] qede: mark qede_set_features() static (Harish Patil) [1391272]
-- [netdrv] qed*: Add support for the ethtool get_regs operation (Harish Patil) [1391272]
-- [netdrv] qed: Add support for debug data collection (Harish Patil) [1391272]
-- [netdrv] qed: add missing header dependencies (Harish Patil) [1391272]
-- [netdrv] qed: Add infrastructure for debug data collection (Harish Patil) [1391272]
-- [netdrv] qed: Remove OOM messages (Harish Patil) [1391272]
-- [netdrv] qed: fix kzalloc-simple.cocci warnings (Harish Patil) [1391272]
-- [netdrv] qed: Clear dcbx memory buffers before the usage (Harish Patil) [1391272]
-- [netdrv] qed: Set selection-field while configuring the app entry in ieee mode (Harish Patil) [1391272]
-- [netdrv] qed*: Disallow dcbx configuration for VF interfaces (Harish Patil) [1391272]
-- [netdrv] qede: hide 32-bit compile warning (Harish Patil) [1391272]
-- [netdrv] qede: Add support for Tx/Rx-only queues (Harish Patil) [1391272]
-- [netdrv] qed: Fix address macros (Harish Patil) [1391272]
-- [netdrv] qed: Change locking scheme for VF channel (Harish Patil) [1391272]
-- [netdrv] qed*: Add support for VFs over legacy PFs (Harish Patil) [1391272]
-- [netdrv] qed: Prevent VFs from pause flooding (Harish Patil) [1391272]
-- [netdrv] qed: Add support for legacy VFs (Harish Patil) [1391272]
-- [netdrv] qed: FLR of active VFs might lead to FW assert (Harish Patil) [1391272]
-- [netdrv] qed: utilize FW 8.10.10.0 (Harish Patil) [1391272]
-- [netdrv] qede: Fix forcing high speeds (Harish Patil) [1391272]
-- [netdrv] qed*: Fix pause setting (Harish Patil) [1391272]
-- [netdrv] qede: Fix Tx timeout due to xmit_more (Harish Patil) [1391272]
-- [netdrv] qed: Add support for NCSI statistics (Harish Patil) [1391272]
-- [netdrv] qede: Add support for per-queue stats (Harish Patil) [1391272]
-- [netdrv] qede: Add support for capturing additional stats in ethtool-stats display (Harish Patil) [1391272]
-- [netdrv] qed*: Add and modify some prints (Harish Patil) [1391272]
-- [netdrv] qed*: Trivial modifications (Harish Patil) [1391272]
-- [netdrv] qed*: Semantic changes (Harish Patil) [1391272]
-- [netdrv] qed: Fix possible memory leak in qed_dcbnl_get_ieee_pfc() (Harish Patil) [1391272]
-- [netdrv] qed*: Add support for ethtool link_ksettings callbacks (Harish Patil) [1391272]
-- [netdrv] qed: Update app count when adding a new dcbx app entry to the table (Harish Patil) [1391272]
-- [netdrv] qed: Add dcbx app support for IEEE Selection Field (Harish Patil) [1391272]
-- [netdrv] qed: Use ieee mfw-mask to get ethtype in ieee-dcbx mode (Harish Patil) [1391272]
-- [netdrv] qed: Remove the endian-ness conversion for pri_to_tc value (Harish Patil) [1391272]
-- [netdrv] qed: Use DEFINE_SPINLOCK() for spinlock (Harish Patil) [1391272]
-- [netdrv] qed: Fail driver load in 100g MSI mode (Harish Patil) [1391272]
-- [netdrv] qed: Fix error return code in qed_resc_alloc() (Harish Patil) [1391272]
-- [netdrv] qed: do not use unitialized variable (Harish Patil) [1391272]
-- [netdrv] qed: Prevent over-usage of vlan credits by PF (Harish Patil) [1391272]
-- [netdrv] qed: Correct min bandwidth for 100g (Harish Patil) [1391272]
-- [netdrv] qede: Reset statistics on explicit down (Harish Patil) [1391272]
-- [netdrv] qed: Don't over-do producer cleanup for Rx (Harish Patil) [1391272]
-- [netdrv] qed: Fix removal of spoof checking for VFs (Harish Patil) [1391272]
-- [netdrv] qede: Don't try removing unconfigured vlans (Harish Patil) [1391272]
-- [netdrv] qed: Fix setting/clearing bit in completion bitmap (Harish Patil) [1391272]
-- [netdrv] qede: Bump up driver version to 8.10.1.20 (Harish Patil) [1391272]
-- [netdrv] qede: Add get/set rx copy break tunable support (Harish Patil) [1391272]
-- [netdrv] qede: Utilize xmit_more (Harish Patil) [1391272]
-- [netdrv] qede: qede_poll refactoring (Harish Patil) [1391272]
-- [netdrv] qede: Add support for handling IP fragmented packets (Harish Patil) [1391272]
-- [netdrv] qed: Protect the doorbell BAR with the write barriers (Harish Patil) [1391272]
-- [netdrv] qede: Fix the static checker warnings (Harish Patil) [1391272]
-- [netdrv] qed: Fix static checker warnings (Harish Patil) [1391272]
-- [netdrv] qede: Add support for coalescing config read/update (Harish Patil) [1391272]
-- [netdrv] qed: Add support for coalescing config read/update (Harish Patil) [1391272]
-- [netdrv] qed: Add missing port-mode (Harish Patil) [1391272]
-- [netdrv] qed: Fix returning unlimited SPQ entries (Harish Patil) [1391272]
-- [netdrv] qed*: Don't reset statistics on inner reload (Harish Patil) [1391272]
-- [netdrv] qed: Prevent VF from Tx-switching 'promisc' (Harish Patil) [1391272]
-- [netdrv] qed: Correct default vlan behavior (Harish Patil) [1391272]
-- [netdrv] qede: Add dcbnl support (Harish Patil) [1391272]
-- [netdrv] qed: Add dcbnl support (Harish Patil) [1391272]
-- [netdrv] qed: Add support for query/config dcbx (Harish Patil) [1391272]
-- [netdrv] qed: potential overflow in qed_cxt_src_t2_alloc() (Harish Patil) [1391272]
-- [netdrv] qed: PF to reply to unknown messages (Harish Patil) [1391272]
-- [netdrv] qed: PF enforce MAC limitation of VFs (Harish Patil) [1391272]
-- [netdrv] qed: Move doorbell calculation from VF to PF (Harish Patil) [1391272]
-- [netdrv] qed: Make PF more robust against malicious VF (Harish Patil) [1391272]
-- [netdrv] qed: PF-VF resource negotiation (Harish Patil) [1391272]
-- [netdrv] qed: Relax VF firmware requirements (Harish Patil) [1391272]
-- [netdrv] qed: Fix next-ptr chains for BE / 32-bit (Harish Patil) [1391272]
-- [netdrv] qed: Initialize hardware for new protocols (Harish Patil) [1391272]
-- [netdrv] qed: Add iscsi/rdma personalities (Harish Patil) [1391272]
-- [netdrv] qed: Add common HSI for new protocols (Harish Patil) [1391272]
-- [netdrv] qed: Revisit chain implementation (Harish Patil) [1391272]
-- [netdrv] qed: fix qed_fill_link() error handling (Harish Patil) [1391272]
-- [netdrv] qed: Don't config min BW on 100g on link flap (Harish Patil) [1391272]
-- [netdrv] qed: Prevent 100g from working in MSI (Harish Patil) [1391272]
-- [netdrv] qed: Add missing 100g init mode (Harish Patil) [1391272]
-- [netdrv] qed: Save min/max accross dcbx-change (Harish Patil) [1391272]
-- [netdrv] qed: Fix allocation in interrupt context (Harish Patil) [1391272]
-- [netdrv] qede: Don't expose self-test for VFs (Harish Patil) [1391272]
-- [netdrv] qede: Reload on GRO changes (Harish Patil) [1391272]
-- [netdrv] qede: Fix VF minimum BW setting (Harish Patil) [1391272]
-- [netdrv] qed/qede: update driver version to 8.7.1.43 (Harish Patil) [1372930]
-
-* Mon Mar 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-601.el7]
-- [scsi] qla2xxx: Update driver version to 8.07.00.38.07.4-k (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Fix scsi scan hang triggered if adapter fails during init (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: fix spelling mistake "retyring" -> "retrying" (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: small cleanup in qla2x00_wait_for_hba_ready() (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Fix BBCR offset (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Fix duplicate message id (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Separate ISP type bits out from device type (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Correction to function qla26xx_dport_diagnostics() (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add support to handle Loop Init error Asynchronus event (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Let DPORT be enabled purely by nvram (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add bsg interface to support statistics counter reset (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add bsg interface to support D_Port Diagnostics (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Check for device state before unloading the driver (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Properly reset firmware statistics (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Make debug buffer log easier to view (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add module parameter alternate/short names (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Set FLOGI retry in additional firmware options for P2P (N2N) mode (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Shutdown board on thermal shutdown aen (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Add ram area DDR for fwdump template entry T262 (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Remove sysfs node fw_dump_template (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: setup data needed in ISR before setting up the ISR (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Remove erroneous unused macro qla82xx_get_temp_val1() (Chad Dupuis) [1384091]
-- [scsi] qla2xxx: Indicate out-of-memory with -ENOMEM (Chad Dupuis) [1384091]
-- [scsi] be2iscsi: Reinit SGL handle, CID tables after TPE (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Use GFP_ATOMIC under spin lock (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Update driver version (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add checks to validate CID alloc/free (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove wq_name from beiscsi_hba (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove unused struct members (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove redundant receive buffers posting (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix iSCSI cmd cleanup IOCTL (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Set WRB invalid bit for SkyHawk (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Take iscsi_task ref in abort handler (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix for crash in beiscsi_eh_device_reset (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix use of invalidate command table req (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: set errno on error path (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: set errno on error path (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: allocate enough memory in beiscsi_boot_get_sinfo() (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: mark symbols static where possible (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Replace _bh with _irqsave/irqrestore (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: _bh for io_sgl_lock and mgmt_sgl_lock (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add missing unlock for mbox_lock (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove redundant iscsi_wrb desc memset (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix error return code (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Update the driver version (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Update copyright information (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix queue and connection parameters (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix async PDU handling path (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add FUNCTION_RESET during driver unload (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fail the sessions immediately after TPE (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add TPE recovery feature (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add V1 of EPFW cleanup IOCTL (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix POST check and reset sequence (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Move functions to right files (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Add IOCTL to check UER supported (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix to add timer for UE detection (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix to make boot discovery non-blocking (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix checks for HBA in error state (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove isr_lock and dead code (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Remove alloc_mcc_tag & beiscsi_pci_soft_reset (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Check all zeroes IP before issuing IOCTL (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Handle only NET_PARAM in iface_get_param (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Rename iface get/set/create/destroy APIs (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Update iface handle before any set param (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Move VLAN code to common iface_set_param (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix release of DHCP IP in static mode (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix gateway APIs to support IPv4 & IPv6 (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Set and return right iface v4/v6 states (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Reduce driver load/unload time (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Replace _bh version for mcc_lock spinlock (Maurizio Lombardi) [1382263]
-- [scsi] be2iscsi: Fix to use correct configuration values (Maurizio Lombardi) [1382263]
-- [scsi] megaraid_sas: handle dma_addr_t right on 32-bit (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: array overflow in megasas_dump_frame() (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Change RAID_1_10_RMW_CMDS to RAID_1_PEER_CMDS and set value to 2 (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Indentation and smatch warning fixes (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Cleanup VD_EXT_DEBUG and SPAN_DEBUG related debug prints (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Increase internal command pool (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Use synchronize_irq to wait for IRQs to complete (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Bail out the driver load if ld_list_query fails (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Change build_mpt_mfi_pass_thru to return void (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: During OCR, if get_ctrl_info fails do not continue with OCR (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Do not set fp_possible if TM capable for non-RW syspdIO, change fp_possible to bool (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Remove unused pd_index from megasas_build_ld_nonrw_fusion (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: megasas_return_cmd does not memset IO frame to zero (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: max_fw_cmds are decremented twice, remove duplicate (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: update can_queue only if the new value is less (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Change max_cmd from u32 to u16 in all functions (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: set pd_after_lb from MR_BuildRaidContext and initialize pDevHandle to MR_DEVHANDLE_INVALID (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: latest controller OCR capability from FW before sending shutdown DCMD (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: avoid unaligned access in ioctl path (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: big endian support changes (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Big endian RDPQ mode fix (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: MR_TargetIdToLdGet u8 to u16 and avoid invalid raid-map access (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: In validate raid map, raid capability is not converted to cpu format for all lds (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: reduce size of fusion_context and use vmalloc if kmalloc fails (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: add print in device removal path (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: enhance debug logs in OCR context (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: set residual bytes count during IO completion (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: raid 1 write performance for large io (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: NVME fast path io support (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: NVME interface target prop added (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: NVME Interface detection and prop settings (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: change issue_dcmd to return void from int (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: megasas_get_request_descriptor always return valid desc (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Use DID_REQUEUE (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: RAID map is accessed for SYS PDs when use_seqnum_jbod_fp is not set (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: Refactor MEGASAS_IS_LOGICAL macro using sdev (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: 32 bit descriptor fire cmd optimization (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: raid 1 fast path code optimize (Tomas Henzl) [1417038]
-- [scsi] megaraid_sas: cpu select rework (Tomas Henzl) [1417038]
-- [scsi] megaraid: Revert "scsi: megaraid_sas: Enable or Disable Fast path based on the PCI Threshold Bandwidth" (Tomas Henzl) [1417038]
-- [maintainers] Updating maintainers list for Cisco FNI and SNIC drivers (Maurizio Lombardi) [1388217]
-- [scsi] fnic: Avoid sending reset to firmware when another reset is in progress (Maurizio Lombardi) [1388217]
-- [scsi] fnic: Correcting rport check location in fnic_queuecommand_lck (Maurizio Lombardi) [1388217]
-- [scsi] fnic: use kernel's 'pM' format option to print MAC (Maurizio Lombardi) [1388217]
-- [scsi] fnic: pci_dma_mapping_error() doesn't return an error code (Maurizio Lombardi) [1388217]
-
-* Fri Mar 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-600.el7]
-- [powerpc] pseries: Automatically resize HPT for memory hot add/remove (David Gibson) [1305399]
-- [mm] memblock: don't mark memblock_phys_mem_size() as __init (David Gibson) [1305399]
-- [powerpc] mm: Split hash page table sizing heuristic into a helper (David Gibson) [1305399]
-- [powerpc] pseries: Add support for hash table resizing (David Gibson) [1305399]
-- [powerpc] pseries: Add hypercall wrappers for hash page table resizing (David Gibson) [1305399]
-- [powerpc] Remove the celleb support (David Gibson) [1305399]
-- [tty] hvc: remove celleb-only beat driver (David Gibson) [1305399]
-- [powerpc] ptrace: Fix cppcheck issue in gpr32_set_common/gpr32_get_common() (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Fix coredump since ptrace TM changes (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for Performance Monitor registers (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for EBB registers (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPPC_TAR, NT_PPC_PPR, NT_PPC_DSCR (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable NT_PPC_TM_CTAR, NT_PPC_TM_CPPR, NT_PPC_TM_CDSCR (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for TM SPR state (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPC_CVSX (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPC_CVMX (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPC_CFPR (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable support for NT_PPC_CGPR (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Adapt gpr32_get, gpr32_set functions for transaction (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable in transaction NT_PPC_VSX ptrace requests (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable in transaction NT_PPC_VMX ptrace requests (Gustavo Duarte) [1187582]
-- [powerpc] ptrace: Enable in transaction NT_PRFPREG ptrace requests (Gustavo Duarte) [1187582]
-- [powerpc] process: Add the function flush_tmregs_to_thread (Gustavo Duarte) [1187582]
-- [powerpc] elf: Add powerpc specific core note sections (Gustavo Duarte) [1187582]
-- [powerpc] tm: Drop tm_orig_msr from thread_struct (Gustavo Duarte) [1187582]
-- [powerpc] pseries: Advertise Hot Plug Event support to firmware (Thomas Huth) [1305399 1323417]
-- [powerpc] prom: Switch to using structs for ibm_architecture_vec (Thomas Huth) [1305399 1323417]
-- [powerpc] prom: Define structs for client architecture vectors (Thomas Huth) [1305399 1323417]
-- [powerpc] prom: Fix sub-processor option passed to ibm, client-architecture-support (Thomas Huth) [1305399 1323417]
-- [powerpc] Add macros for the ibm_architecture_vec[] lengths (Thomas Huth) [1305399 1323417]
-- [powerpc] pseries: Implement indexed-count hotplug memory remove (Thomas Huth) [1323417]
-- [powerpc] pseries: Implement indexed-count hotplug memory add (Thomas Huth) [1323417]
-- [powerpc] pseries: Fix build break when MEMORY_HOTREMOVE=n (Thomas Huth) [1323417]
-- [powerpc] pseries: Introduce memory hotplug READD operation (Thomas Huth) [1323417]
-- [powerpc] pseries: Revert 'Auto-online hotplugged memory' (Thomas Huth) [1323417]
-- [powerpc] pseries: Make the acquire/release of the drc for memory a seperate step (Thomas Huth) [1323417]
-- [powerpc] pseries: Remove call to memblock_add() (Thomas Huth) [1323417]
-- [powerpc] pseries: Auto-online hotplugged memory (Thomas Huth) [1323417]
-- [powerpc] pseries: Use lmb_is_removable() to check removability (Thomas Huth) [1323417]
-- [powerpc] Fix unused function warning 'lmb_to_memblock' (Thomas Huth) [1323417]
-- [powerpc] of: Introduce device tree node flag helpers (Thomas Huth) [1323417]
-- [powerpc] pseries: Correct possible read beyond dlpar sysfs buffer (Thomas Huth) [1323417]
-- [powerpc] pseries: fix memory leak in queue_hotplug_event() error path (Thomas Huth) [1323417]
-- [powerpc] pseries: Use kernel hotplug queue for PowerVM hotplug events (Thomas Huth) [1323417]
-- [powerpc] pseries: Add support for hotplug interrupt source (Thomas Huth) [1323417]
-- [powerpc] pseries: Add pseries hotplug workqueue (Thomas Huth) [1323417]
-- [powerpc] pseries: Dynamic add entires to associativity lookup array (Thomas Huth) [1323417]
-- [powerpc] pseries: Move property cloning into its own routine (Thomas Huth) [1323417]
-- [powerpc] pseries: Update LMB associativity index during DLPAR add/remove (Thomas Huth) [1323417]
-- [powerpc] pseries: Refactor dlpar_add_lmb() code (Thomas Huth) [1323417]
-- [powerpc] pseries: Consolidate CPU hotplug code to hotplug-cpu.c (Thomas Huth) [1323417]
-- [powerpc] Ensure global functions include their prototype (Thomas Huth) [1323417]
-- [powerpc] arch/powerpc: replace obsolete strict_strto* calls (Thomas Huth) [1323417]
-- [powerpc] pseries: Verify CPU doesn't exist before adding (Thomas Huth) [1323417]
-- [powerpc] pseries: Release DRC when configure_connector fails (Thomas Huth) [1323417]
-- [powerpc] pseries: use kmemdup rather than duplicating its implementation (Thomas Huth) [1323417]
-- [powerpc] pseries: Fix possible leaked device node reference (Thomas Huth) [1323417]
-- [powerpc] pseries: Fix compile of memory hotplug without CONFIG_MEMORY_HOTREMOVE (Thomas Huth) [1323417]
-- [powerpc] pseries: Correct memory hotplug locking (Thomas Huth) [1323417]
-- [powerpc] pseries: Implement memory hotplug remove in the kernel (Thomas Huth) [1323417]
-- [powerpc] pseries: Implement memory hotplug add in the kernel (Thomas Huth) [1323417]
-- [powerpc] pseries: Create new device hotplug entry point (Thomas Huth) [1323417]
-- [powerpc] pseries: Declare the acquire/release drc index routines (Thomas Huth) [1323417]
-- [powerpc] Remove ppc_md.remove_memory (Thomas Huth) [1323417]
-- [powerpc] Fix comment typos in hotplug-memory.c (Thomas Huth) [1323417]
-- [powerpc] pseries: Define rtas hotplug event sections (Thomas Huth) [1323417]
-
-* Fri Mar 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-599.el7]
-- [kernel] tracing: Do not have 'comm' filter override event 'comm' field (Pratyush Anand) [1399999]
-- [kernel] tracing: Allow triggers to filter for CPU ids and process names (Pratyush Anand) [1399999]
-- [x86] apic: Order irq_enter/exit() calls correctly vs. ack_APIC_irq() (George Beshers) [1404816]
-- [x86] apic: Fix suspicious RCU usage in smp_trace_call_function_interrupt() (George Beshers) [1404816]
-- [x86] Consolidate irq entering inlines (George Beshers) [1404816]
-- [net] ip_tunnel: Create percpu gro_cell (Jiri Benc) [1424076]
-- [net] udp: fix errorneous sk_filter removal (Paolo Abeni) [1388467]
-- [net] l2tp: do not use udp_ioctl() (Paolo Abeni) [1388467]
-- [net] udp: properly cope with csum errors (Paolo Abeni) [1388467]
-- [net] udp: be less conservative with sock rmem accounting (Paolo Abeni) [1388467]
-- [net] udplite: fix NULL pointer dereference (Paolo Abeni) [1388467]
-- [net] udp: do fwd memory scheduling on dequeue (Paolo Abeni) [1388467]
-- [net] sock: add an explicit sk argument for ip_cmsg_recv_offset() (Paolo Abeni) [1388467]
-- [net] udp: use it's own memory accounting schema (Paolo Abeni) [1388467]
-- [net] udp: implement memory accounting helpers (Paolo Abeni) [1388467]
-- [net] sock: factor out helpers for memory and queue manipulation (Paolo Abeni) [1388467]
-- [net] Fix inverted test in __skb_recv_datagram (Paolo Abeni) [1388467]
-- [net] enable more fine-grained datagram reception control (Paolo Abeni) [1388467]
-- [net] add common accessor for setting dropcount on packets (Paolo Abeni) [1388467]
-- [net] ipvs: SH fallback and L4 hashing (Jakub Sitnicki) [1365002]
-- [net] ipvs: provide iph to schedulers (Jakub Sitnicki) [1365002]
-- [acpi] acpi / sysfs: Fix an issue for LoadTable opcode (Prarit Bhargava) [1425195]
-- [acpi] acpica: tables: Add new table events indicating table installation/uninstallation (Prarit Bhargava) [1425195]
-- [acpi] acpica: tables: Remove wrong table event macros (Prarit Bhargava) [1425195]
-- [misc] cxl: fix nested locking hang during EEH hotplug (Steve Best) [1429625]
-- [misc] cxl: Prevent read/write to AFU config space while AFU not configured (Steve Best) [1429625]
-- [edac] enable skx_edac (Aristeu Rozanski) [1273747]
-- [edac] skx_edac: Add EDAC driver for Skylake (Aristeu Rozanski) [1273747]
-- [netdrv] broadcom: bnx2x: use new api ethtool_{get|set}_link_ksettings (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: avoid two atomic ops per page on x86 (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Fix printk() message errors (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Prevent tunnel config for 577xx (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Correct ringparam estimate when DOWN (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: fix improper return value (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: use reset to set network header (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: switch to napi_complete_done() (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: cleanup ETH_* defines (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: free the mac filter group list before freeing the cmd (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: allocate mac filtering pending list in PAGE_SIZE increments (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: allocate mac filtering 'mcast_list' in PAGE_SIZE increments (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: don't reset chip on cleanup if PCI function is offline (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Add support for segmentation of tunnels with outer checksums (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Don't flush multicast MACs (Michal Schmidt) [1391238]
-- [netdrv] bnx2x: Move all UDP port notifiers to single function (Michal Schmidt) [1391238]
-- [netdrv] cxgb4vf: Fix queue allocation for 40G adapter (Sai Vemuri) [1250931]
-- [netdrv] cxgb4: Fix issue while re-registering VF mgmt netdev (Sai Vemuri) [1250931]
-- [netdrv] cxgb4/cxgb4vf: Add set VF mac address support (Sai Vemuri) [1250931]
-- [netdrv] cxgb4: Add control net_device for configuring PCIe VF (Sai Vemuri) [1250931]
-- [infiniband] iw_cxgb4: set *bad_wr for post_send/post_recv errors (Sai Vemuri) [1416917]
-
-* Thu Mar 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-598.el7]
-- [netdrv] e1000e: driver trying to free already-free irq (Jarod Wilson) [1383529]
-- [netdrv] e1000e/ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Jarod Wilson) [1383529]
-- [netdrv] e1000e: Use pci_(request|release)_mem_regions (Jarod Wilson) [1383529]
-- [netdrv] e1000e: don't modify SYSTIM registers during SIOCSHWTSTAMP ioctl (Jarod Wilson) [1383529]
-- [netdrv] e1000e: mark shifted values as unsigned (Jarod Wilson) [1383529]
-- [netdrv] e1000e: use BIT() macro for bit defines (Jarod Wilson) [1383529]
-- [netdrv] e1000e: e1000e_cyclecounter_read(): do overflow check only if needed (Jarod Wilson) [1383529]
-- [netdrv] e1000e: e1000e_cyclecounter_read(): fix er32(SYSTIML) overflow check (Jarod Wilson) [1383529]
-- [netdrv] e1000e: Cleanup consistency in ret_val variable usage (Jarod Wilson) [1383529]
-- [netdrv] e1000e: fix ethtool autoneg off for non-copper (Jarod Wilson) [1383529]
-- [netdrv] e1000e: call ndo_stop() instead of dev_close() when running offline selftest (Jarod Wilson) [1383529]
-- [netdrv] sfc: do not device_attach if a reset is pending (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: forget filters from sw table if hw replies ENOENT on removing them (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fix filter_id misinterpretation in edge case (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: only fall back to a lower interrupt mode if it is supported (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: MSI-X is the only interrupt mode for EF10 VFs (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fix swapped arguments to efx_ef10_handle_rx_event_errors (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: configure UDP tunnel offload ports (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: update mcdi_pcol definitions for MC_CMD_SET_TUNNEL_ENCAP_UDP_PORTS (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: call mcdi_reboot_detected() when MC reboots during an MCDI command (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: harden driver against MC resets during initial probe (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: set csum_level for encapsulated packets (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: process RX event inner checksum flags (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: report 4-tuple UDP hashing to ethtool, if it's enabled (Jarod Wilson) [1389480 1386061 1385378 1385133]
-- [netdrv] sfc: enable 4-tuple RSS hashing for UDP (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [net] Delete trailing semi-colon from definition of netdev_WARN() (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fix an off by one bug (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc-falcon: get rid of custom busy polling code (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: get rid of custom busy polling code (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fix an off-by-one compare on an array size (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: generalize napi_complete_done() (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: insert catch-all filters for encapsulated traffic (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: refactor debug-or-warnings printks (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [net] implement netif_cond_dbg macro (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: fixes to filter restore handling (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: reduce severity of PIO buffer alloc failures (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: read back RX hash config from the NIC when querying it with ethtool -x (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: support setting RSS hash key through ethtool API (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: get PIO buffer size from the NIC (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: allow PIO more often (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: Replace memset with eth_zero_addr (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: efx_get_phys_port_id() can be static (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: stop setting dev_port (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: implement ndo_get_phys_port_name (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: support ndo_get_phys_port_id even when !CONFIG_SFC_SRIOV (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: don't report RX hash keys to ethtool when RSS wasn't enabled (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc-falcon: declare module version (same as ethtool drvinfo version) (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: declare module version (same as ethtool drvinfo version) (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: remove EFX_BUG_ON_PARANOID, use EFX_WARN_ON_[ONCE_]PARANOID instead (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: remove RESET_TYPE_RX_RECOVERY (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] ethernet: sfc: Add Kconfig entry for vendor Solarflare (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] sfc: don't select SFC_FALCON (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] sfc: fix debug message format string in efx_farch_handle_rx_not_ok (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] sfc: separate out SFC4000 ("Falcon") support into new sfc-falcon driver (Jarod Wilson) [1385133 1385378 1386061 1389480 1389671]
-- [netdrv] sfc: remove unneeded variable (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: remove Software TSO (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: handle failure to allocate TSOv2 contexts (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: Firmware-Assisted TSO version 2 (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: Update EF10 register definitions (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: Update MCDI protocol definitions (Jarod Wilson) [1385133 1385378 1386061 1389480]
-- [netdrv] sfc: remove napi_hash_del() call (Jarod Wilson) [1385133 1385378 1386061 1389480]
-
-* Thu Mar 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-597.el7]
-- [netdrv] igb/igbvf: Don't use lco_csum to compute IPv4 checksum (Corinna Vinschen) [1383528]
-- [netdrv] igbvf: bump version to igbvf-2.4.0 (Corinna Vinschen) [1383528]
-- [netdrv] igb/igbvf: Add support for GSO partial (Corinna Vinschen) [1383528]
-- [netdrv] igb: Fix hw_dbg logging in igb_update_flash_i210 (Corinna Vinschen) [1383527]
-- [netdrv] igb: add i211 to i210 PHY workaround (Corinna Vinschen) [1383527]
-- [netdrv] igb: close/suspend race in netif_device_detach (Corinna Vinschen) [1383527]
-- [netdrv] igb: reset the PHY before reading the PHY ID (Corinna Vinschen) [1383527]
-- [netdrv] igb: use igb_adapter->io_addr instead of e1000_hw->hw_addr (Corinna Vinschen) [1383527]
-- [netdrv] igb: Workaround for igb i210 firmware issue (Corinna Vinschen) [1383527]
-- [netdrv] igb: correct register comments (Corinna Vinschen) [1383527]
-- [netdrv] igb: Realign bad indentation (Corinna Vinschen) [1383527]
-- [netdrv] igb/igbvf: Don't use lco_csum to compute IPv4 checksum (Corinna Vinschen) [1383527]
-- [netdrv] igb: restore PPS signal on igb_ptp_reset (Corinna Vinschen) [1383527]
-- [netdrv] igb: bump version to igb-5.4.0 (Corinna Vinschen) [1383527]
-- [netdrv] igb: fix non static symbol warning (Corinna Vinschen) [1383527]
-- [netdrv] ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Corinna Vinschen) [1383527]
-- [netdrv] igb: fix error code in igb_add_ethtool_nfc_entry() (Corinna Vinschen) [1383527]
-- [netdrv] igb: support RX flow classification by VLAN (Corinna Vinschen) [1383527]
-- [netdrv] igb: support RX flow classification by ethertype (Corinna Vinschen) [1383527]
-- [netdrv] igb: add support of RX network flow classification (Corinna Vinschen) [1383527]
-- [netdrv] igb: fix adjusting PTP timestamps for Tx/Rx latency (Corinna Vinschen) [1383527]
-- [netdrv] igb: Only DMA sync frame length (Corinna Vinschen) [1383527]
-- [netdrv] igb: call igb_ptp_suspend during suspend/resume cycle (Corinna Vinschen) [1383527]
-- [netdrv] igb: implement igb_ptp_suspend (Corinna Vinschen) [1383527]
-- [netdrv] igb: re-use igb_ptp_reset in igb_ptp_init (Corinna Vinschen) [1383527]
-- [netdrv] igb: introduce IGB_PTP_OVERFLOW_CHECK flag (Corinna Vinschen) [1383527]
-- [netdrv] igb: introduce ptp_flags variable and use it to replace IGB_FLAG_PTP (Corinna Vinschen) [1383527]
-- [netdrv] ethernet/intel: Use pci_(request|release)_mem_regions (Corinna Vinschen) [1383527]
-- [netdrv] igb/igbvf: Add support for GSO partial (Corinna Vinschen) [1383527]
-- [netdrv] igb: adjust PTP timestamps for Tx/Rx latency (Corinna Vinschen) [1383527]
-- [netdrv] igb: make igb_update_pf_vlvf static (Corinna Vinschen) [1383527]
-- [netdrv] igb: use BIT() macro or unsigned prefix (Corinna Vinschen) [1383527]
-- [netdrv] generalize napi_complete_done() (Ivan Vecera) [1382354]
-- [netdrv] be2net: get rid of custom busy poll code (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix initial MAC setting (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix MAC addr setting on privileged BE3 VFs (Ivan Vecera) [1382354]
-- [netdrv] be2net: don't delete MAC on close on unprivileged BE3 VFs (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix status check in be_cmd_pmac_add() (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix unicast list filling (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix accesses to unicast list (Ivan Vecera) [1382354]
-- [netdrv] benet: stricter vxlan offloading check in be_features_check (Ivan Vecera) [1382354]
-- [netdrv] emulex: benet: use new api ethtool_{get|set}_link_ksettings (Ivan Vecera) [1382354]
-- [netdrv] be2net: Add DEVSEC privilege to SET_HSW_CONFIG command (Ivan Vecera) [1382354]
-- [netdrv] be2net: do not call napi_hash_del() (Ivan Vecera) [1382354]
-- [netdrv] be2net: Enable VF link state setting for BE3 (Ivan Vecera) [1382354]
-- [netdrv] be2net: Fix TX stats for TSO packets (Ivan Vecera) [1382354]
-- [netdrv] be2net: Update Copyright string in be_hw.h (Ivan Vecera) [1382354]
-- [netdrv] be2net: NCSI FW section should be properly updated with ethtool for BE3 (Ivan Vecera) [1382354]
-- [netdrv] be2net: Provide an alternate way to read pf_num for BEx chips (Ivan Vecera) [1382354]
-- [netdrv] be2net: fix non static symbol warnings (Ivan Vecera) [1382354]
-- [netdrv] be2net: mark symbols static where possible (Ivan Vecera) [1382354]
-- [netdrv] be2net: Update the driver version to 11.1.0.0 (Ivan Vecera) [1382354]
-- [netdrv] be2net: Fix mac address collision in some configurations (Ivan Vecera) [1382354]
-- [netdrv] be2net: Avoid redundant addition of mac address in HW (Ivan Vecera) [1382354]
-- [netdrv] be2net: Add privilege level check for OPCODE_COMMON_GET_EXT_FAT_CAPABILITIES SLI cmd (Ivan Vecera) [1382354]
-- [netdrv] be2net: Issue COMMON_RESET_FUNCTION cmd during driver unload (Ivan Vecera) [1382354]
-- [netdrv] be2net: Support UE recovery in BEx/Skyhawk adapters (Ivan Vecera) [1382354]
-- [netdrv] be2net: replace polling with sleeping in the FW completion path (Ivan Vecera) [1382354]
-- [netdrv] be2net: Avoid unnecessary firmware updates of multicast list (Ivan Vecera) [1382354]
-- [netdrv] be2net: do not remove vids from driver table if be_vid_config() fails (Ivan Vecera) [1382354]
-- [netdrv] be2net: clear vlan-promisc setting before programming the vlan list (Ivan Vecera) [1382354]
-
-* Thu Mar 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-596.el7]
-- [netdrv] amd-xgbe: Check xgbe_init() return code (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add a hardware quirk for register definitions (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix IRQ processing when running in single IRQ mode (David Arcari) [1339783]
-- [netdrv] Rename CONFIG_PM to CONFIG_PM_SLEEP in XGBE driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Update connection validation for backplane mode (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix maximum GPIO value check (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix possible uninitialized variable (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix up some coccinelle identified warnings (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix mask appliciation for Clause 37 register (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for a KR redriver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for MDIO attached PHYs (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for SFP+ modules (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add I2C support for sideband communication (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add ECC status support for the device memory (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for new DMA interrupt mode (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Allow for a greater number of Rx queues (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add PCI device support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add a workaround for Tx timestamp issue (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Guard against incorrectly generated interrupts (David Arcari) [1339783]
-- [netdrv] xgbe: use new api ethtool_{get|set}_link_ksettings (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for supporting PCI devices (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Update how to determine DMA channel status (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Support for 64-bit management counter registers (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for a new PCS register access method (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for clause 37 auto-negotiation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for introduction of clause 37 autoneg (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for working with more than one type of phy (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Perform priority-based hardware FIFO allocation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prepare for priority-based FIFO allocation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix formatting of PCS register dump (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix error return code in xgbe_probe() (David Arcari) [1339783]
-- [netdrv] xgbe: constify get_netdev_ops and get_ethtool_ops (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Reset running devices after resume from hibernate (David Arcari) [1339783]
-- [netdrv] amd-xgbe: use correct format specifier (David Arcari) [1339783]
-- [netdrv] relax setup_tc ndo op handle restriction (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Mask auto-negotiation interrupts in ISR (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check Rx queue fifos before stopping Rx DMA (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Do traffic class setup when called through dcbnl (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix the mapping of priorities to traffic classes (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Enable/disable PFC per traffic class (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Verify forced speed matches the active speedset (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use __napi_schedule_irqoff (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Change from napi_complete to napi_complete_done (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Disable VLAN filtering when in promiscuous mode (David Arcari) [1339783]
-- [netdrv] rework setup_tc ndo op to consume general tc operand (David Arcari) [1339783]
-- [netdrv] rework ndo tc op to consume additional qdisc handle parameter (David Arcari) [1339783]
-- [netdrv] amd-xgbe: fix a couple timeout loops (David Arcari) [1339783]
-- [netdrv] move skb_mark_napi_id() into core networking stack (David Arcari) [1339783]
-- [netdrv] device property: acpi: Make use of the new DMA Attribute APIs (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix race between access of desc and desc index (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use wmb before updating current descriptor count (David Arcari) [1339783]
-- [netdrv]  get rid of unnecessary initializations in .get_drvinfo() (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use system workqueue for device restart (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check for successful buffer allocation before use (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove the XGBE_LINK state bit (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use device workqueue instead of system workqueue (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add receive buffer unavailable statistic (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Simplify calculation and setting of queue fifos (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add ethtool error and debug messages (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add ethtool support for setting the msglevel (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use proper DT / ACPI precedence checking (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove an unneeded semicolon on a switch statement (David Arcari) [1339783]
-- [netdrv] amd-xgbe: fix potential memory leak in xgbe-debugfs (David Arcari) [1339783]
-- [netdrv] treewide: fix typos in comment blocks (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix DMA API debug warning (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add the __GFP_NOWARN flag to Rx buffer allocation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Unify coherency checking logic with device_dma_is_coherent() (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use disable_irq_nosync from within timer function (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add more netif_dbg output to the driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix initial mode when auto-negotiation is disabled (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add setting of a missing hardware feature (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove manual check and set of dma_mask pointer (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix flow control setting logic (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Support defining PHY resources in ETH device node (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Move the PHY support into amd-xgbe (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Fix initial mode when autoneg is disabled (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Rework the Rx path SKB allocation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add netif_* message support to the driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add additional stats to be reported via ethtool (David Arcari) [1339783]
-- [netdrv] batch of last_rx update avoidance in ethernet drivers (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add hardware dependency (David Arcari) [1339783]
-- [netdrv] ethernet: amd: AMD_XGBE should depend on HAS_DMA (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for the netdev Tx watchdog (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Move Rx mode configuration into init (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Allow rx-frames coalescing to be changed anytime (David Arcari) [1339783]
-- [netdrv] ptp: xgbe: convert to the 64 bit get/set time methods (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use napi_alloc_skb when allocating skb in softirq (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix Rx coalescing reporting (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove Tx coalescing (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Set DMA mask based on hardware register value (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use the new DMA memory barriers where appropriate (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Clarify output message about queues (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Provide support for auto-negotiation timeout (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Use the phy_driver flags field (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Use phydev advertising field vs supported (David Arcari) [1339783]
-- [netdrv] ethernet: codespell comment spelling fixes (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Request IRQs only after driver is fully setup (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: PHY KX/KR mode differences (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check per channel DMA interrupt use in main ISR (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Set RSS enablement based on hardware features (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Adjust for zero-based traffic class count (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use proper Rx flow control register (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Allow certain PHY settings to be set by UEFI (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add ACPI support (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Use the proper auto-negotiation XNP registers (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Properly support the FEC auto-negotiation (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Change auto-negotiation logic (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove need for Tx path spinlock (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Simplify the Rx desciptor ring tracking (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Clear all state during a device restart (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: On suspend, save CTRL1 reg for use on resume (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add check to be sure amd-xgbe-phy driver is used (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Checkpatch fixes (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Checkpatch fixes (David Arcari) [1339783]
-- [netdrv] rename vlan_tx_* helpers since "tx" is misleading there (David Arcari) [1339783]
-- [netdrv] xgbe: convert to timecounter adjtime (David Arcari) [1339783]
-- [netdrv] time: move the timecounter/cyclecounter code into its own file (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Let AMD_XGBE_PHY depend on HAS_IOMEM (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use disable_irq_nosync when in IRQ context (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Prevent Tx cleanup stall (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Associate Tx SKB with proper ring descriptor (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Do not clear interrupt indicator (David Arcari) [1339783]
-- [netdrv] amd-xgbe: IRQ names require allocated memory (David Arcari) [1339783]
-- [netdrv] ethtool: Support for configurable RSS hash function (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for the skb->xmit_more flag (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Perform Tx coalescing on a packet basis (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove unused variable (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add BQL support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Separate Tx/Rx ring data fields into new structs (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Incorporate Smatch coding suggestion (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Tx engine must not be active before stopping it (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add a read memory barrier to Tx/Rx path (David Arcari) [1339783]
-- [netdrv] amd-xgbe: use netdev_rss_key_fill() helper (David Arcari) [1339783]
-- [netdrv] amd-xgbe: fix ->rss_hash_type (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix sparse endian warnings (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check for complete packet on skb allocation error (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Free channel/ring structures later (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Let AMD_XGBE depend on HAS_IOMEM (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Sync PCS and PHY modes after reset (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix a spelling error (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add receive side scaling ethtool support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Provide support for receive side scaling (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for per DMA channel interrupts (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Implement split header receive support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use page allocations for Rx buffers (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use the u32 data type for descriptors (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Rename pre_xmit function to dev_xmit (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Move ring allocation to device open (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix napi Rx budget accounting (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Properly handle feature changes via ethtool (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Fix build break for missing declaration (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Enable interrupts for all management counters (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Treat certain counter registers as 64 bit (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Checkpatch driver fixes (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Checkpatch driver fixes (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Enhance parallel detection to support KR speed (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Check device for current speed mode (KR/KX) (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix initialization of the wrong spin lock (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use the Tx queue count for Tx flow control support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix the xpcs mmd debugfs support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Reported fifo size from hardware is not correct (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Check for Tx hardware queue flushing support (David Arcari) [1339783]
-- [netdrv] amd: xgbe: fix duplicate #include of linux/phy.h (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Perform phy connect/disconnect at dev open/stop (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Use dma_set_mask_and_coherent to set DMA mask (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Allow more time for Rx/Tx to become ready (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove unnecessary spinlocks (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add traffic class support (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Print out the auto-negotiation method used (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Updates to KR training initiation (David Arcari) [1339783]
-- [netdrv] amd-xgbe-phy: Updates to rate change complete check (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Base queue fifo size and enablement on ring count (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Update/fix 2.5GbE support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add hardware timestamp support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add dma-coherent to device bindings documentation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix error return code in xgbe_probe() (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove the adjustments needed for fixed speed (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Base AXI DMA cache settings on device tree (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Performance enhancements (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Call netif_napi_del on ndo_stop operation (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Clear the proper MTL interrupt register (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Fix debugfs compatibility change with kstrtouint (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Resolve checkpatch warning about sscanf usage (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Change destination address filtering support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Add support for VLAN filtering (David Arcari) [1339783]
-- [netdrv] amd-xgbe: VLAN Rx tag stripping fix (David Arcari) [1339783]
-- [netdrv] amd-xgbe: VLAN Tx tag insertion fix (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Make defines in xgbe.h unique (David Arcari) [1339783]
-- [netdrv] amd-xgbe: unwind on error in xgbe_mdio_register() (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Rename MAX_DMA_CHANNELS to avoid powerpc conflict (David Arcari) [1339783]
-- [netdrv] amd-xgbe: fix unused variable compilation warning in phylib driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Remove unnecessary include (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Maintainer information (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Configuration and build support (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Initial AMD 10GbE phylib driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: Initial AMD 10GbE platform driver (David Arcari) [1339783]
-- [netdrv] amd-xgbe: AMD 10GbE device bindings documentation (David Arcari) [1339783]
-
-* Thu Mar 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-595.el7]
-- [netdrv] ixgbevf: Add support for VF promiscuous mode (Ken Cox) [1383525]
-- [netdrv] ixgbevf: restore hw_addr on resume or error (Ken Cox) [1383525]
-- [netdrv] ixgbevf: fix AER error handling (Ken Cox) [1383525]
-- [netdrv] ixgbevf: handle race between close and suspend on shutdown (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Handle previously-freed msix_entries (Ken Cox) [1383525]
-- [netdrv] ixgbevf: add spinlocks for MTU change calls (Ken Cox) [1383525]
-- [netdrv] ixgbevf: fix incorrect MAC address on load (Ken Cox) [1383525]
-- [netdrv] ixgbevf: only check Tx queue enablement when debugging (Ken Cox) [1383525]
-- [netdrv] ixgbevf: change hw_dbg to use netdev_dbg (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Commonize mailbox write/read (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Add range checking for setting MTU (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Protect ixgbevf_reset_subtask from remove event (Ken Cox) [1383525]
-- [netdrv] ixgbevf: Add lock around ixgbevf_reinit_locked call (Ken Cox) [1383525]
-- [netdrv] ixgbevf: add VF support for new hardware (Ken Cox) [1383525]
-- [netdrv] ixgbevf: bump version number (Ken Cox) [1383525]
-- [netdrv] ixgbevf: fix NACK check in ixgbevf_set_uc_addr_vf() (Ken Cox) [1383525]
-- [netdrv] ixgbevf: ixgbevf_write/read_posted_mbx should use IXGBE_ERR_MBX to initialize ret_val (Ken Cox) [1383525]
-- [netdrv] ixgbe: Add PF support for VF promiscuous mode (Ken Cox) [1383524]
-- [netdrv] ixgbe: Implement support for firmware-controlled PHYs (Ken Cox) [1333482 1383524]
-- [netdrv] ixgbe: Implement firmware interface to access some PHYs (Ken Cox) [1383524]
-- [netdrv] ixgbe: Remove unused firmware version functions and method (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix issues with EEPROM access (Ken Cox) [1383524]
-- [netdrv] ixgbe: Configure advertised speeds correctly for KR/KX backplane (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix incorrect bitwise operations of PTP Rx timestamp flags (Ken Cox) [1383524]
-- [netdrv] ixgbe: fix AER error handling (Ken Cox) [1383524]
-- [netdrv] ixgbe: handle close/suspend race with netif_device_detach/present (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix reporting of 100Mb capability (Ken Cox) [1383524]
-- [netdrv] ixgbe: Reduce I2C retry count on X550 devices (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add bounds check for x540 LED functions (Ken Cox) [1383524]
-- [netdrv] ixgbe: add mask for 64 RSS queues (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix check for ixgbe_phy_x550em_ext_t reset (Ken Cox) [1383524]
-- [netdrv] ixgbe: Report driver version to firmware for x550 devices (Ken Cox) [1383524]
-- [netdrv] ixgbe: do not disable FEC from the driver (Ken Cox) [1383524]
-- [netdrv] ixgbe/ixgbevf: Don't use lco_csum to compute IPv4 checksum (Ken Cox) [1383524]
-- [netdrv] ixgbe: ixgbe_atr() compute l4_proto only if non-paged data has network/transport headers (Ken Cox) [1383524]
-- [netdrv] ixgbe: ixgbe_atr() should access udp_hdr(skb) only for UDP packets (Ken Cox) [1383524]
-- [netdrv] ixgbe: Correct X550 phy ID (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add X553 FW ALEF support (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: set device if before calling get_invariants (Ken Cox) [1383524]
-- [netdrv] ixgbe: use link instead of I2C combined abstraction (Ken Cox) [1383524]
-- [netdrv] ixgbe: remove SFP ixfi support (Ken Cox) [1383524]
-- [netdrv] ixgbe: Handle previously-freed msix_entries (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add X553 PHY FC autoneg support (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: fix link status check for copper X550em (Ken Cox) [1383524]
-- [netdrv] ixgbe: do not use ixgbe specific mdio defines (Ken Cox) [1383524]
-- [netdrv] ixgbe: Update setup PHY link to unset all speeds (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: Add support to retrieve and store LED link active (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: Add X552 iXFI configuration helper function (Ken Cox) [1371722 1383524]
-- [netdrv] ixgbe: fix panic when using macvlan with l2-fwd-offload enabled (Ken Cox) [1383524]
-- [netdrv] ixgbe: enable tx queues after link up (Ken Cox) [1383524]
-- [netdrv] ixgbe: reset before SRIOV init to avoid mailbox issues (Ken Cox) [1383524]
-- [netdrv] ixgbe: Support 4 queue RSS on VFs with 1 or 2 queue RSS on PF (Ken Cox) [1383524]
-- [netdrv] ixgbe: Limit reporting of redirection table if SR-IOV is enabled (Ken Cox) [1383524]
-- [netdrv] ixgbe: Allow setting multiple queues when SR-IOV is enabled (Ken Cox) [1383524]
-- [netdrv] ixgbe: Use MDIO_PRTAD_NONE consistently (Ken Cox) [1383524]
-- [netdrv] ixgbe: Indicate support for pause frames in all cases (Ken Cox) [1383524]
-- [netdrv] ixgbe: Resolve NULL reference by setting {read, write}_reg_mdi (Ken Cox) [1383524]
-- [netdrv] ixgbe: make ixgbe_led_on/off_t_x550em static (Ken Cox) [1383524]
-- [netdrv] ixgbe: simplify the logic for setting VLAN filtering (Ken Cox) [1383524]
-- [netdrv] ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Ken Cox) [1383524]
-- [netdrv] ixgbe: use IS_ENABLED() instead of checking for built-in or module (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add support for new X557 device (Ken Cox) [1383524]
-- [netdrv] ixgbe: add device to MDIO speed setting (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix led interface for X557 devices (Ken Cox) [1383524]
-- [netdrv] ixgbe: add support for geneve Rx offload (Ken Cox) [1383524]
-- [netdrv] ixgbe: fully disable hardware RSC logic when disabling RSC (Ken Cox) [1383524]
-- [netdrv] ixgbe: report correct media type for KR, KX and KX4 interfaces (Ken Cox) [1383524]
-- [netdrv] ixgbe: Do not clear RAR entry when clearing VMDq for SAN MAC (Ken Cox) [1383524]
-- [netdrv] ixgbe: use atomic bitwise operations when handling reset requests (Ken Cox) [1383524]
-- [netdrv] ixgbe: only check Tx queue enablement when debugging (Ken Cox) [1383524]
-- [netdrv] ixgbe: Re-enable ability to toggle VLAN filtering (Ken Cox) [1383524]
-- [netdrv] ixgbe: Force VLNCTRL.VFE to be set in all VMDq paths (Ken Cox) [1383524]
-- [netdrv] ixgbe: cleanup crosstalk fix (Ken Cox) [1383524]
-- [netdrv] ixgbe: remove redundant check on ret_val (Ken Cox) [1383524]
-- [netdrv] ixgbe: Add missing destroy_workqueue() on error in ixgbe_init_module() (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix minor typo while freeing irq (Ken Cox) [1383524]
-- [netdrv] ixgbe: Change register variable to unsigned (Ken Cox) [1383524]
-- [netdrv] ixgbevf: Correct parameter sent to LED function (Ken Cox) [1383524]
-- [netdrv] ixgbe: napi_poll must return the work done (Ken Cox) [1383524]
-- [netdrv] ixgbe: fixup comments after "Future-proof tunnel offload handlers" (Ken Cox) [1383524]
-- [netdrv] ixgbe: Correct reporting of timestamping for x550 (Ken Cox) [1383524]
-- [netdrv] ethernet/intel: Use pci_(request|release)_mem_regions (Ken Cox) [1383524]
-- [netdrv] ixgbe: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Ken Cox) [1383524]
-- [netdrv] ixgbe: Fix VLAN features error (Ken Cox) [1383524]
-- [netdrv] ixgbe/ixgbevf: Add support for GSO partial (Ken Cox) [1383524]
-- [netdrv] ixgbe/ixgbevf: Add support for bulk free in Tx cleanup & cleanup boolean logic (Ken Cox) [1383524]
-- [netdrv] ixgbe: add a callback to set the maximum transmit bitrate (Ken Cox) [1383524]
-- [netdrv] ixgbe: use eth_platform_get_mac_address() (Ken Cox) [1383524]
-- [netdrv] ixgbe: bulk free SKBs during TX completion cleanup cycle (Ken Cox) [1383524]
-
-* Wed Mar 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-594.el7]
-- [net] bridge: set error code on failure (Ivan Vecera) [1352289]
-- [net] bridge: multicast: restore perm router ports on multicast enable (Ivan Vecera) [1352289]
-- [net] bridge: add the multicast_flood flag attribute to brport_attrs (Ivan Vecera) [1352289]
-- [net] bridge: add address and vlan to fdb warning messages (Ivan Vecera) [1352289]
-- [net] netfilter: bridge: clarify bridge/netfilter message (Ivan Vecera) [1352289]
-- [net] bridge: add helper to call /sbin/bridge-stp (Ivan Vecera) [1352289]
-- [net] bridge: add per-port multicast flood flag (Ivan Vecera) [1352289]
-- [net] bridge: change unicast boolean to exact pkt_type (Ivan Vecera) [1352289]
-- [net] bridge: don't increment tx_dropped in br_do_proxy_arp (Ivan Vecera) [1352289]
-- [net] bridge: re-introduce 'fix parsing of MLDv2 reports' (Ivan Vecera) [1352289]
-- [net] bridge: switchdev: Add forward mark support for stacked devices (Ivan Vecera) [1352289]
-- [net] switchdev: Support parent ID comparison for stacked devices (Ivan Vecera) [1352289]
-- [net] team: loadbalance: push lacpdus to exact delivery (Ivan Vecera) [1352289]
-- [net] bridge: export also pvid flag in the xstats flags (Ivan Vecera) [1352289]
-- [net] bridge: export vlan flags with the stats (Ivan Vecera) [1352289]
-- [net] bridge: consolidate bridge and port linkxstats calls (Ivan Vecera) [1352289]
-- [net] switchdev: Put export declaration in the right place (Ivan Vecera) [1352289]
-- [net] bridge: Fix problems around fdb entries pointing to the bridge device (Ivan Vecera) [1352289]
-- [net] bridge: Fix incorrect re-injection of LLDP packets (Ivan Vecera) [1352289]
-- [net] bridge: br_set_ageing_time takes a clock_t (Ivan Vecera) [1352289]
-- [net] bridge: fix br_stp_enable_bridge comment (Ivan Vecera) [1352289]
-- [net] switchdev: change ageing_time type to clock_t (Ivan Vecera) [1352289]
-- [net] bridge: remove _deliver functions and consolidate forward code (Ivan Vecera) [1352289]
-- [net] bridge: drop skb2/skb0 variables and use a local_rcv boolean (Ivan Vecera) [1352289]
-- [net] bridge: rearrange flood vs unicast receive paths (Ivan Vecera) [1352289]
-- [net] bridge: minor style adjustments in br_handle_frame_finish (Ivan Vecera) [1352289]
-- [net] bridge: extend MLD/IGMP query stats (Ivan Vecera) [1352289]
-- [net] net_sched: fix mirrored packets checksum (Ivan Vecera) [1352289]
-- [net] ipv4: Fix ip_skb_dst_mtu to use the sk passed by ip_finish_output (Ivan Vecera) [1352289]
-- [net] bridge: add support for IGMP/MLD stats and export them via netlink (Ivan Vecera) [1352289]
-- [net] rtnetlink: add support for the IFLA_STATS_LINK_XSTATS_SLAVE attribute (Ivan Vecera) [1352289]
-- [net] bridge: fix vlan stats continue counter (Ivan Vecera) [1352289]
-- [net] bridge: Fix ipv6 mc snooping if bridge has no ipv6 address (Ivan Vecera) [1352289]
-- [net] bridge: Fix incorrect re-injection of STP packets (Ivan Vecera) [1352289]
-- [net] bridge: fix igmp / mld query parsing (Ivan Vecera) [1352289]
-- [net] bridge: fix old ioctl unlocked net device walk (Ivan Vecera) [1352289]
-- [net] bridge: netlink: export per-vlan stats (Ivan Vecera) [1352289]
-- [net] bridge: vlan: learn to count (Ivan Vecera) [1352289]
-- [net] rtnetlink: add linkxstats callbacks and attribute (Ivan Vecera) [1352289]
-- [net] rtnetlink: allow rtnl_fill_statsinfo to save private state counter (Ivan Vecera) [1352289]
-- [net] bridge: fix potential use-after-free when hook returns QUEUE or STOLEN verdict (Ivan Vecera) [1352289]
-- [net] bridge: mcast: add support for more router port information dumping (Ivan Vecera) [1352289]
-- [net] bridge: mcast: add support for temporary port router (Ivan Vecera) [1352289]
-- [net] bridge: mcast: do nothing if port's multicast_router is set to the same val (Ivan Vecera) [1352289]
-- [net] bridge: mcast: use names for the different multicast_router types (Ivan Vecera) [1352289]
-- [net] fix bridge multicast packet checksum validation (Ivan Vecera) [1352289]
-- [net] bridge: use kobj_to_dev instead of to_dev (Ivan Vecera) [1352289]
-- [net] netlink: Rightsize IFLA_AF_SPEC size calculation (Ivan Vecera) [1352289]
-- [net] inet: ip_skb_dst_mtu() should use sk_fullsock() (Ivan Vecera) [1352289]
-- [net] bridge: Add br_netif_receive_skb remove netif_receive_skb_sk (Ivan Vecera) [1352289]
-- [net] bridge: Introduce br_send_bpdu_finish (Ivan Vecera) [1352289]
-- [net] bridge: fix igmpv3 / mldv2 report parsing (Ivan Vecera) [1352289]
-- [net] netfilter: bridge: fix IPv6 packets not being bridged with CONFIG_IPV6=n (Ivan Vecera) [1352289]
-- [net] fix wrong skb_get() usage / crash in IGMP/MLD parsing code (Ivan Vecera) [1352289]
-- [net] bridge: netlink: account for the IFLA_BRPORT_PROXYARP_WIFI attribute size and policy (Ivan Vecera) [1352289]
-- [net] bridge: netlink: account for the IFLA_BRPORT_PROXYARP attribute size and policy (Ivan Vecera) [1352289]
-- [net] bridge: Don't segment multiple tagged packets on bridge device (Ivan Vecera) [1352289]
-- [net] bridge: stp: when using userspace stp stop kernel hello and hold timers (Ivan Vecera) [1352289]
-- [net] bridge: mdb: notify on router port add and del (Ivan Vecera) [1352289]
-- [net] bridge: Fix setting a flag in br_fill_ifvlaninfo_range(). (Ivan Vecera) [1352289]
-- [net] bridge: mcast: fix br_multicast_dev_del warn when igmp snooping is not defined (Ivan Vecera) [1352289]
-- [net] bridge: multicast: treat igmpv3 report with INCLUDE and no sources as a leave (Ivan Vecera) [1352289]
-- [net] bridge: multicast: add a comment to br_port_state_selection about blocking state (Ivan Vecera) [1352289]
-- [net] bridge: multicast: restore router configuration on port link down/up (Ivan Vecera) [1352289]
-- [net] bridge: fix multicast router rlist endless loop (Ivan Vecera) [1352289]
-- [net] bridge: fix br_multicast_query_expired() bug (Ivan Vecera) [1352289]
-- [net] bridge: skip fdb add if the port shouldn't learn (Ivan Vecera) [1352289]
-- [net] bridge: allow setting hash_max + multicast_router if interface is down (Ivan Vecera) [1352289]
-- [net] bridge: change BR_GROUPFWD_RESTRICTED to allow forwarding of LLDP frames (Ivan Vecera) [1352289]
-- [net] fix two sparse warnings introduced by IGMP/MLD parsing exports (Ivan Vecera) [1352289]
-- [net] Export IGMP/MLD message validation code (Ivan Vecera) [1352289]
-- [net] bridge: multicast: call skb_checksum_{simple_, }validate (Ivan Vecera) [1352289]
-- [net] bridge/mdb: remove wrong use of NLM_F_MULTI (Ivan Vecera) [1352289]
-- [net] act_mirred: Fix bogus header when redirecting from VLAN (Ivan Vecera) [1352289]
-- [net] bridge: Extend Proxy ARP design to allow optional rules for Wi-Fi (Ivan Vecera) [1352289]
-- [net] bridge: add compile-time assert for cb struct size (Ivan Vecera) [1352289]
-- [net] mark some potential candidates __read_mostly (Ivan Vecera) [1352289]
-- [net] bridge: reject DSA-enabled master netdevices as bridge members (Ivan Vecera) [1352289]
-- [net] bridge: use MDBA_SET_ENTRY_MAX for maxtype in nlmsg_parse() (Ivan Vecera) [1352289]
-- [net] bridge: only provide proxy ARP when CONFIG_INET is enabled (Ivan Vecera) [1352289]
-- [net] bridge: Add ability to enable TSO (Ivan Vecera) [1352289]
-- [net] bridge: Add missing policy entry for IFLA_BRPORT_FAST_LEAVE (Ivan Vecera) [1352289]
-- [net] bridge: Add support for IEEE 802.11 Proxy ARP (Ivan Vecera) [1352289]
-- [net] udp_tunnel: Only build ip6_udp_tunnel.c when IPV6 is selected (Ivan Vecera) [1352289]
-- [net] dsa: reduce number of protocol hooks (Ivan Vecera) [1352289]
-- [net] br_multicast: Replace rcu_assign_pointer() with RCU_INIT_POINTER() (Ivan Vecera) [1352289]
-- [net] bridge: export knowledge about the presence of IGMP/MLD queriers (Ivan Vecera) [1352289]
-- [net] bridge: adding stubs for multicast exports (Ivan Vecera) [1352289]
-- [net] bridge: fix smatch warning / potential null pointer dereference (Ivan Vecera) [1352289]
-- [net] bridge: fix compile error when compiling without IPv6 support (Ivan Vecera) [1352289]
-- [net] bridge: memorize and export selected IGMP/MLD querier port (Ivan Vecera) [1352289]
-- [net] bridge: un-comment br_multicast_list_adjacent() (Ivan Vecera) [1352289]
-- [net] bridge: adhere to querier election mechanism specified by RFCs (Ivan Vecera) [1352289]
-- [net] vlan: rename __vlan_find_dev_deep() to __vlan_find_dev_deep_rcu() (Ivan Vecera) [1352289]
-- [net] netpoll: Remove gfp parameter from __netpoll_setup (Ivan Vecera) [1352289]
-- [net] bridge: Use ether_addr_copy and ETH_ALEN (Ivan Vecera) [1352289]
-- [net] bridge: fix netconsole setup over bridge (Ivan Vecera) [1352289]
-- [net] bridge: use spin_lock_bh() in br_multicast_set_hash_max (Ivan Vecera) [1352289]
-- [net] netlink: cleanup rntl_af_register (Ivan Vecera) [1352289]
-- [net] bridge: change "foo* bar" to "foo *bar" (Ivan Vecera) [1352289]
-- [net] bridge: add space before '(/{', after ', ', etc. (Ivan Vecera) [1352289]
-- [net] bridge: remove unnecessary condition judgment (Ivan Vecera) [1352289]
-- [net] more spelling fixes (Ivan Vecera) [1352289]
-- [net] revert "bridge: only expire the mdb entry when query is received" (Ivan Vecera) [1352289]
-- [net] bridge: update mdb expiration timer upon reports. (Ivan Vecera) [1352289]
-- [net] Miscellaneous conversions to ETH_ALEN (Ivan Vecera) [1352289]
-- [net] bridge: correct the comment for file br_sysfs_br.c (Ivan Vecera) [1352289]
-- [net] bridge: fix rcu check warning in multicast port group (Ivan Vecera) [1352289]
-- [net] bridge: cleanup netpoll code (Ivan Vecera) [1352289]
-- [net] bridge: do not call setup_timer() multiple times (Ivan Vecera) [1352289]
-- [net] bridge: fix some kernel warning in multicast timer (Ivan Vecera) [1352289]
-- [net] bridge: fix a typo in comments (Ivan Vecera) [1352289]
-- [net] bridge: only expire the mdb entry when query is received (Ivan Vecera) [1352289]
-- [netdrv] phy: Don't increment MDIO bus refcount unless it's a different owner (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed_phy: fix of_node leak in fixed_phy_unregister (Ivan Vecera) [1382040]
-- [netdrv] revert "phy: IRQ cannot be shared" (Ivan Vecera) [1382040]
-- [netdrv] phy: Manage fixed PHY address space using IDA (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed: Fix removal of phys (Ivan Vecera) [1382040]
-- [netdrv] phy: Avoid polling PHY with PHY_IGNORE_INTERRUPTS (Ivan Vecera) [1382040]
-- [netdrv] phy: fix PHY_RUNNING in phy_state_machine (Ivan Vecera) [1382040]
-- [netdrv] phy: Fix phy_mac_interrupt() (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed_phy: pass 'irq' to fixed_phy_add() (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed_phy: Add gpio to determine link up/down. (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed_phy: handle link-down case (Ivan Vecera) [1382040]
-- [netdrv] phy: adjust fixed_phy_register() return value (Ivan Vecera) [1382040]
-- [netdrv] revert "net: phy: Set the driver when registering an MDIO bus device" (Ivan Vecera) [1382040]
-- [netdrv] phy: resume phydev when going to RESUMING (Ivan Vecera) [1382040]
-- [netdrv] phy: Check for aneg completion before setting state to PHY_RUNNING (Ivan Vecera) [1382040]
-- [netdrv] phylib: Remove unnecessary condition check in phy (Ivan Vecera) [1382040]
-- [netdrv] phy: re-apply PHY fixups during phy_register_device (Ivan Vecera) [1382040]
-- [netdrv] phy: expose phy_aneg_done API for use by drivers (Ivan Vecera) [1382040]
-- [net] ethtool: export conversion function between u32 and link mode (Ivan Vecera) [1382040]
-- [netdrv] mdio: Move mdiobus_read/write operatings into mdio.h (Ivan Vecera) [1382040]
-- [netdrv] phy: Add nested variants of mdiobus read/write (Ivan Vecera) [1382040]
-- [netdrv] phy: add phy_device_remove() (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed-phy: properly validate phy in fixed_phy_update_state() (Ivan Vecera) [1382040]
-- [netdrv] of_mdio: fix MDIO phy device refcounting (Ivan Vecera) [1382040]
-- [netdrv] phy: add proper phy struct device refcounting (Ivan Vecera) [1382040]
-- [netdrv] phy: fix mdiobus module safety (Ivan Vecera) [1382040]
-- [netdrv] phy: fix of_mdio_find_bus() device refcount leak (Ivan Vecera) [1382040]
-- [netdrv] phy: add fixed_phy_update_state() - update state of fixed_phy (Ivan Vecera) [1382040]
-- [netdrv] phy: Allow FIXED_PHY to be modular (Ivan Vecera) [1382040]
-- [netdrv] phy: export fixed_phy_register() (Ivan Vecera) [1382040]
-- [netdrv] phy: provide stub for fixed_phy_set_link_update (Ivan Vecera) [1382040]
-- [netdrv] phy: fix sparse warning in fixed.c (Ivan Vecera) [1382040]
-- [netdrv] phy: fixed: return an error for Clause 45 over 22 reads (Ivan Vecera) [1382040]
-- [netdrv] phy: extend fixed driver with fixed_phy_register() (Ivan Vecera) [1382040]
-- [netdrv] phy: decouple PHY id and PHY address in fixed PHY driver (Ivan Vecera) [1382040]
-- [netdrv] phy: Ensure the MDIO bus module is held (Ivan Vecera) [1382040]
-- [netdrv] phy: Set the driver when registering an MDIO bus device (Ivan Vecera) [1382040]
-- [netdrv] mdio_bus: fix devm_mdiobus_alloc_size export (Ivan Vecera) [1382040]
-- [netdrv] mdio_bus: implement devm_mdiobus_alloc/devm_mdiobus_free (Ivan Vecera) [1382040]
-- [netdrv] phy: allow driver to implement their own aneg_done (Ivan Vecera) [1382040]
-- [netdrv] phy: add genphy_aneg_done() (Ivan Vecera) [1382040]
-- [netdrv] phy: cleanup 10g code (Ivan Vecera) [1382040]
-- [netdrv] phylib: Support attaching to generic 10g driver (Ivan Vecera) [1382040]
-- [netdrv] phylib: Add generic 10G driver (Ivan Vecera) [1382040]
-- [netdrv] phylib: turn genphy_driver to an array (Ivan Vecera) [1382040]
-- [netdrv] phylib: introduce PHY_INTERFACE_MODE_XGMII for 10G PHY (Ivan Vecera) [1382040]
-- [netdrv] phylib: Add Clause 45 read/write functions (Ivan Vecera) [1382040]
-- [netdrv] phylib: make phy_scan_fixups() static (Ivan Vecera) [1382040]
-- [netdrv] phylib: remove unused adjust_state() callback (Ivan Vecera) [1382040]
-- [netdrv] phy: kill excess empty lines (Ivan Vecera) [1382040]
-- [netdrv] phy: kill excess code (Ivan Vecera) [1382040]
-- [netdrv] phy: kill useless local variables (Ivan Vecera) [1382040]
-- [netdrv] phy: coding style fixes (Ivan Vecera) [1382040]
-- [netdrv] phy: coding style fixes (Ivan Vecera) [1382040]
-- [netdrv] phy: IRQ cannot be shared (Ivan Vecera) [1382040]
-- [netdrv] phy: fix checkpatch errors (Ivan Vecera) [1382040]
-- [netdrv] phy: suspend phydev when going to HALTED (Ivan Vecera) [1382040]
-- [netdrv] phy: resume/suspend PHYs on attach/detach (Ivan Vecera) [1382040]
-- [netdrv] phy: provide phy_resume/phy_suspend helpers (Ivan Vecera) [1382040]
-- [netdrv] phy: consolidate PHY reset in phy_init_hw() (Ivan Vecera) [1382040]
-- [netdrv] phy: use phy_init_hw instead of open-coding it (Ivan Vecera) [1382040]
-- [netdrv] phy: allow drivers to flag a PHY device as internal (Ivan Vecera) [1382040]
-- [netdrv] phy: add phy_mac_interrupt() to use with PHY_IGNORE_INTERRUPT (Ivan Vecera) [1382040]
-- [netdrv] phy: fix the use of PHY_IGNORE_INTERRUPT (Ivan Vecera) [1382040]
-- [netdrv] phylib: queue work on system_power_efficient_wq (Ivan Vecera) [1382040]
-
-* Wed Mar 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-593.el7]
-- [fs] fsnotify: Remove fsnotify_duplicate_mark() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: Fix possible use-after-free in inode iteration on umount (Miklos Szeredi) [1427454]
-- [fs] fsnotify: constify the places working with ->f_path (Miklos Szeredi) [1427454]
-- [fs] constify fsnotify_parent() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: constify 'data' (Miklos Szeredi) [1427454]
-- [fs] fsnotify: constify 'data' passed to ->handle_event() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: clean up spinlock assertions (Miklos Szeredi) [1427454]
-- [fs] fanotify: fix possible false warning when freeing events (Miklos Szeredi) [1427454]
-- [fs] fanotify: use notification_lock instead of access_lock (Miklos Szeredi) [1427454]
-- [fs] fsnotify: convert notification_mutex to a spinlock (Miklos Szeredi) [1427454]
-- [fs] fsnotify: drop notification_mutex before destroying event (Miklos Szeredi) [1427454]
-- [fs] fsnotify: support overlayfs (Miklos Szeredi) [1427454]
-- [fs] fsnotify: avoid spurious EMFILE errors from inotify_init() (Miklos Szeredi) [1421964]
-- [fs] fsnotify: turn fsnotify reaper thread into a workqueue job (Miklos Szeredi) [1427454]
-- [fs] fs/notify/inode_mark.c: use list_next_entry in fsnotify_unmount_inodes (Miklos Szeredi) [1427454]
-- [fs] inotify: actually check for invalid bits in sys_inotify_add_watch() (Miklos Szeredi) [1427454]
-- [fs] inotify: hide internal kernel bits from fdinfo (Miklos Szeredi) [1427454]
-- [fs] fsnotify: get rid of fsnotify_destroy_mark_locked() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: remove mark->free_list (Miklos Szeredi) [1427454]
-- [fs] fsnotify: document mark locking (Miklos Szeredi) [1427454]
-- [fs] fsnotify: fix check in inotify fdinfo printing (Miklos Szeredi) [1427454]
-- [fs] notify: optimize inotify/fsnotify code for unwatched files (Miklos Szeredi) [1427454]
-- [fs] fsnotify: remove obsolete documentation (Miklos Szeredi) [1427454]
-- [fs] notify: don't use module_init for non-modular inotify_user code (Miklos Szeredi) [1427454]
-- [fs] fanotify: fix event filtering with FAN_ONDIR set (Miklos Szeredi) [1427454]
-- [fs] fanotify: don't set FAN_ONDIR implicitly on a marks ignored mask (Miklos Szeredi) [1427454]
-- [fs] fanotify: don't recalculate a marks mask if only the ignored mask changed (Miklos Szeredi) [1427454]
-- [fs] fanotify: only destroy mark when both mask and ignored_mask are cleared (Miklos Szeredi) [1427454]
-- [fs] sched, fanotify: Deal with nested sleeps (Miklos Szeredi) [1427454]
-- [fs] fsnotify: remove destroy_list from fsnotify_mark (Miklos Szeredi) [1427454]
-- [fs] fsnotify: unify inode and mount marks handling (Miklos Szeredi) [1427454]
-- [fs] sched, inotify: Deal with nested sleeps (Miklos Szeredi) [1427454]
-- [fs] fanotify: enable close-on-exec on events' fd when requested in fanotify_init() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: don't put user context if it was never assigned (Miklos Szeredi) [1427454]
-- [fs] fs/notify/group.c: make fsnotify_final_destroy_group() static (Miklos Szeredi) [1427454]
-- [fs] notify: don't show f_handle if exportfs_encode_inode_fh failed (Miklos Szeredi) [1427454]
-- [fs] fsnotify/fdinfo: use named constants instead of hardcoded values (Miklos Szeredi) [1427454]
-- [fs] inotify: convert use of typedef ctl_table to struct ctl_table (Miklos Szeredi) [1427454]
-- [fs] fanotify: check file flags passed in fanotify_init (Miklos Szeredi) [1427454]
-- [fs] fs/notify/fanotify/fanotify_user.c: fix FAN_MARK_FLUSH flag checking (Miklos Szeredi) [1427454]
-- [fs] fs/notify/mark.c: trivial cleanup (Miklos Szeredi) [1427454]
-- [fs] fanotify: fan_mark_flush: avoid having to provide a fake/invalid fd and path (Miklos Szeredi) [1427454]
-- [fs] fanotify: move unrelated handling from copy_event_to_user() (Miklos Szeredi) [1427454]
-- [fs] fanotify: reorganize loop in fanotify_read() (Miklos Szeredi) [1427454]
-- [fs] fsnotify: update comments concerning locking scheme (Miklos Szeredi) [1427454]
-- [fs] inotify: fix race when adding a new watch (Miklos Szeredi) [1427454]
-- [fs] dnotify: replace dnotify_mark_mutex with mark mutex of dnotify_group (Miklos Szeredi) [1427454]
-- [fs] fanotify: put duplicate code for adding vfsmount/inode marks into an own function (Miklos Szeredi) [1427454]
-- [fs] fanotify: fix races when adding/removing marks (Miklos Szeredi) [1427454]
-- [fs] fanotify: quit wanking with FASYNC in ->release() (Miklos Szeredi) [1427454]
-- [fs] devpts: clean up interface to pty drivers (Miklos Szeredi) [1421008]
-- [fs] devpts: if initialization failed, don't crash when opening /dev/ptmx (Miklos Szeredi) [1421008]
-
-* Wed Mar 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-592.el7]
-- [fs] xfs: undo block reservation correctly in xfs_trans_reserve() (Eric Sandeen) [1425557]
-- [fs] xfs: reset b_first_retry_time when clear the retry status of xfs_buf_t (Eric Sandeen) [1425557]
-- [fs] xfs: clear _XBF_PAGES from buffers when readahead page (Eric Sandeen) [1425557]
-- [fs] xfs: don't wrap ID in xfs_dq_get_next_id (Eric Sandeen) [1425557 1418182 1405626]
-- [fs] xfs: don't print warnings when xfs_log_force fails (Eric Sandeen) [1425557]
-- [fs] xfs: fix max_retries _show and _store functions (Eric Sandeen) [1425557]
-- [fs] xfs: ignore leaf attr ichdr.count in verifier during log replay (Eric Sandeen) [1425557]
-- [fs] xfs: pass state not whichfork to trace_xfs_extlist (Eric Sandeen) [1425557]
-- [fs] xfs: set AGI buffer type in xlog_recover_clear_agi_bucket (Eric Sandeen) [1425557]
-- [fs] xfs: fix unbalanced inode reclaim flush locking (Eric Sandeen) [1425557]
-- [fs] xfs: check minimum block size for CRC filesystems (Eric Sandeen) [1425557]
-- [fs] xfs: fix up xfs_swap_extent_forks inline extent handling (Eric Sandeen) [1425557 1412945]
-- [fs] xfs: don't call xfs_sb_quota_from_disk twice (Eric Sandeen) [1425557]
-- [fs] xfs: clean up _calc_dquots_per_chunk (Eric Sandeen) [1425557]
-- [fs] xfs: normalize "infinite" retries in error configs (Eric Sandeen) [1425557]
-- [fs] xfs: fix signed integer overflow (Eric Sandeen) [1425557]
-- [fs] xfs: fix superblock inprogress check (Eric Sandeen) [1425557]
-- [fs] gfs2: Avoid alignment hole in struct lm_lockname (Robert S Peterson) [1425450]
-- [fs] gfs2: Add missing rcu locking for glock lookup (Robert S Peterson) [1425450]
-- [fs] nfs: Ignore connections that have cl_rpcclient uninitialized (Benjamin Coddington) [1421557]
-- [fs] nfsv4: fix getacl ERANGE for some ACL buffer sizes ("J. Bruce Fields") [1427974]
-- [fs] nfsv4: fix getacl head length estimation ("J. Bruce Fields") [1427974]
-- [fs] sunrpc: replace generic auth_cred hash with auth-specific function (Frank Sorenson) [1371693]
-- [fs] sunrpc: add RPCSEC_GSS hash_cred() function (Frank Sorenson) [1371693]
-- [fs] sunrpc: add auth_unix hash_cred() function (Frank Sorenson) [1371693]
-- [fs] sunrpc: add generic_auth hash_cred() function (Frank Sorenson) [1371693]
-- [fs] sunrpc: add hash_cred() function to rpc_authops struct (Frank Sorenson) [1371693]
-
-* Wed Mar 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-591.el7]
-- [netdrv] scripts/spelling.txt: add "varible" pattern and fix typo instances (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Invoke softirqs after napi_reschedule (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove duplicate device id from PCI table (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: mark the value passed to csum_replace_by_diff as __wsum (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Error handling for link event (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: properly convert le16 value to CPU format (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: convert to cpu from le16 to generate switch_id correctly (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor AQ CMD buffer debug printing (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix Adaptive ITR enabling (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove unnecessary call to i40e_update_link_info (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: enable mc magic pkt wakeup during power down (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix disable overflow promiscuous mode (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Save more link abilities when using ethtool (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid race condition when sending filters to firmware for addition (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: allow i40e_update_filter_state to skip broadcast filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't warn every time we clear an Rx timestamp register (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Save link FEC info from link up event (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add bus number info to i40e_bus_info struct (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Clean up dead code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf : Changed version from 1.6.25 to 1.6.27 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: update comment explaining where FDIR buffers are freed (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: eliminate i40e_pull_tail() (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Moves skb from i40e_rx_buffer to i40e_ring (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Limit DMA sync of RX buffers to actual packet size (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't check params until after checking for client instance (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add interrupt rate limit verbosity (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor macro INTRL_USEC_TO_REG (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove unused function (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Quick refactor to start moving data off stack and into Tx buffer info (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove unnecessary __packed (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Deprecating unused macro (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: when adding or removing MAC filters, correctly handle VLANs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid O(n^2) loop when deleting all filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: rename i40e_put_mac_in_vlan and i40e_del_mac_all_vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: no need to check is_vsi_in_vlan before calling i40e_del_mac_all_vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fold the i40e_is_vsi_in_vlan check into i40e_put_mac_in_vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't allow i40e_vsi_(add|kill)_vlan to operate when VID<1 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't truncate match_method assignment (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: move all updates for VLAN mode into i40e_sync_vsi_filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use (add|rm)_vlan_all_mac helper functions when changing PVID (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: factor out addition/deletion of VLAN per each MAC address (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: delete filter after adding its replacement when converting (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor i40e_update_filter_state to avoid passing aq_err (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: recalculate vsi->active_filters from hash contents (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: defeature support for PTP L4 frame detection on XL710 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: lock service task correctly (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add functions which apply correct PHY access method for read and write operation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add FEC for 25g (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add support for 25G devices (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use unsigned printf format specifier for active_filters count (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] Changed version from 1.6.21 to 1.6.25 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Blink LED on 1G BaseT boards (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove code to handle dev_addr specially (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: napi_poll must return the work done (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: restore workaround for removing default MAC filter (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: simplify txd use count calculation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Driver prints log message on link speed change (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: change message to only appear when extra debug info is wanted (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: replace for memcpy with single memcpy call in ethtool (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: set broadcast promiscuous mode for each active VLAN (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix for ethtool Supported link modes (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Pass unknown PHY type for unknown PHYs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove unreachable code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix panic on SPARC while changing num of desc (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add protocols over MCTP to i40e_aq_discover_capabilities (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix trivial typo in naming of i40e_sync_filters_subtask (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add Clause22 implementation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid duplicate private flags definitions (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove second check of VLAN_N_VID in i40e_vlan_rx_add_vid (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove error_param_int label from i40e_vc_config_promiscuous_mode_msg (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Be much more verbose about what we can and cannot offload (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: removed unreachable code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Implementation of ERROR state for NVM update state machine (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix for division by zero (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: clear mac filter count on reset (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Reorder logic for coalescing RS bits (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add common function for finding VSI by type (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: replace PTP Rx timestamp hang logic (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use a mutex instead of spinlock in PTP user entry points (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: correct check for reading TSYNINDX from the receive descriptor (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove duplicate add/delete adminq command code for filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid looping to check whether we're in VLAN mode (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix MAC filters when removing VLANs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: properly cleanup on allocation failure in i40e_sync_vsi_filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: store MAC/VLAN filters in a hash with the MAC Address as key (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: implement __i40e_del_filter and use where applicable (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: When searching all MAC/VLAN filters, ignore removed filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor i40e_put_mac_in_vlan to avoid changing f->vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: move i40e_put_mac_in_vlan and i40e_del_mac_all_vlan (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: make use of __dev_uc_sync and __dev_mc_sync (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: drop is_vf and is_netdev fields in struct i40e_mac_filter (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add missing \n to end of dev_err message (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: disable MSI-X interrupts if we cannot reserve enough vectors (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix configure TCs after initial DCB disable (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Clean up handling of msglevel flags and debug parameter (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix bit logic error in failure case (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Changed version from 1.6.19 to 1.6.21 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Removal of workaround for simple MAC address filter deletion (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix for long link down notification time (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Drop redundant Rx descriptor processing code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix confusing dmesg info for ethtool -L option (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Make struct i40e_stats const (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Changed version from 1.6.16 to 1.6.19 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: fix interrupt affinity bug (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: group base mode VF offload flags (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: reopen client after reset (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Drop code for unsupported flow types (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove unused function i40e_vsi_lookup (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Bit test mask correction (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Rewrite Flow Director busy wait loop (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix client interaction (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid NULL pointer dereference and recursive errors on early PCI error (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix sideband flow director vector allocation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix MSI-X vector redistribution if hw limit is reached (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: check if vectors are already depleted when doing VMDq allocation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40evf: support queue-specific settings for interrupt moderation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't configure zero-size RSS table (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Strip out debugfs hook for Flow Director filter programming (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Split Flow Director descriptor config into separate function (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Add txring_txq function to match fm10k and ixgbe (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix Flow Director raw_buf cleanup (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Increase minimum number of allocated VSI (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Changed version to 1.6.16 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: removing unreachable code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: check conflicting ntuple/sideband rules when re-enabling ATR (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: cleanup ATR auto_disable_flags use (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add encap csum VF offload flag (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix deleting mac filters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove 100 Mbps SGMII support for X722 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Limit TX descriptor count in cases where frag size is greater than 16K (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix for extra byte swap in tunnel setup (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix to check for NULL (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: return correct opcode to VF (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix "dump port" command when NPAR enabled (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix setting user defined RSS hash key (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] ptp_clock: future-proofing drivers against PTP subsystem becoming optional (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix kernel panic on enable/disable LLDP (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Fix indentation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove XSTRINGIFY macro definitions and uses (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use matching format identifiers (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add support for HMC resource and profile for X722 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix byte ordering in ARP NS code for X722 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor tail_bump check (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use alloc_workqueue instead of create_singlethread_workqueue (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Expose 'trust' flag to userspace via ndo_get_vf_config (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove a stray unlock (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf-Bump version from 1.6.11 to 1.6.12 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Allow RSS Hash set with less than four parameters (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix memory leak (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix lookup table when RSS disabled/enabled (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Don't notify client of VF reset during VF creation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't allow reduction of channels below active FD rules (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix static analysis tool warning (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: reset RX csum error stat with other pf stats (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Reset VLAN filter count when resetting (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix a bug where a client close can be called before an open is complete (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Use list_move instead of list_del/list_add (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] ethernet/intel: Use pci_(request|release)_mem_regions (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Explicitly write platform-specific mac address after PF reset (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add missing link advertise setting (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf-bump version to 1.6.11 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: refactor Rx filter handling (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Remove device ID 0x37D4 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: remove useless initializer (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix to show correct Advertised Link Modes when link is down (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: avoid null pointer dereference (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: use valid online CPU on q_vector initialization (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: enable VSI broadcast promiscuous mode instead of adding broadcast filter (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Fix i40e_rx_checksum (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Bump version from 1.5.16 to 1.6.4 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add VSI info to macaddr messages (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: set default VSI without a reset (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Fix RSS to not be limited by the number of CPUs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Removing unnecessary code which caused supported link mode bug (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix missing DA cable check (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Save PCI state before suspend (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Clean up MSIX IRQs before suspend (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add a call to set the client interface down (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: write HENA for VFs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add hw struct local variable (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: add functions to control default VSI (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Move all UDP port notifiers to single function (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix an uninitialized variable bug (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Bump version from 1.5.10 to 1.5.16 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: don't add broadcast filter for VFs (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: properly report Rx packet hash (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: set context to use VSI RSS LUT for SR-IOV (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Correct UDP packet header for non_tunnel-ipv6 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: change Rx hang message into a WARN_ONCE (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Refactor ethtool get_settings (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: lie to the VF (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add vf-true-promisc-support priv flag (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Implement the API function for aq_set_switch_config (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Add support for disabling all link and change bits needed for PHY interactions (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fix misleading indentation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Test memory before ethtool alloc succeeds (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Remove unused hardware receive descriptor code (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40evf: Drop packet split receive routine (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Refactor receive routine (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Remove reference to ring->dtype (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: Drop packet split receive routine (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Refactor tunnel interpretation (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: Add support for GSO partial with UDP_TUNNEL_CSUM and GRE_CSUM (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: make use of BIT() macro to prevent left shift of signed values (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e/i40evf: fix I40E_MASK signed shift overflow warnings (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: keep VFs trusted by default (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fixup of commit 4e312a9e3b (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fixup of commit f77ccd1220 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: fixup of commit e306fbc5e1 (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40e: remove RHEL-only FCOE message (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-- [netdrv] i40iw: remove tech-preview (Stefan Assmann) [1374546 1390452 1390449 1385344 1384456 1378964 1371500 1348490 1383521]
-
-* Tue Mar 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-590.el7]
-- [kernel] acpi / hotplug / pci: Make device_is_managed_by_native_pciehp() public (Myron Stowe) [1418060]
-- [pci] acpi / hotplug / pci: Use cached copy of PCI_EXP_SLTCAP_HPC bit (Myron Stowe) [1418060]
-- [pci] Unfold conditions to block runtime PM on PCIe ports (Myron Stowe) [1418060]
-- [pci] Consolidate conditions to allow runtime PM on PCIe ports (Myron Stowe) [1418060]
-- [pci] Activate runtime PM on a PCIe port only if it can suspend (Myron Stowe) [1418060]
-- [pci] Speed up algorithm in pci_bridge_d3_update() (Myron Stowe) [1418060]
-- [pci] Autosense device removal in pci_bridge_d3_update() (Myron Stowe) [1418060]
-- [pci] Don't acquire ref on parent in pci_bridge_d3_update() (Myron Stowe) [1418060]
-- [pci] pciehp: Clear attention LED on device add (Myron Stowe) [1418060]
-- [pci] Fix bridge_d3 update on device removal (Myron Stowe) [1418060]
-- [pci] acpi / hotplug / pci: Runtime resume bridges before bus rescans (Myron Stowe) [1418060]
-- [pci] pciehp: Ignore interrupts during D3cold (Myron Stowe) [1418060]
-- [pci] Add runtime PM support for PCIe ports (Myron Stowe) [1418060]
-- [pci] Power on bridges before scanning new devices (Myron Stowe) [1418060]
-- [kernel] pci: Put PCIe ports into D3 during suspend (Myron Stowe) [1418060]
-- [pci] Don't clear d3cold_allowed for PCIe ports (Myron Stowe) [1418060]
-- [pci] pci / pm: Tune down retryable runtime suspend error messages (Myron Stowe) [1418060]
-- [acpi] invoke acpi_device_wakeup() with correct parameters (Myron Stowe) [1418060]
-- [pci] Shuffle pci-acpi.c functions to group them logically (Myron Stowe) [1418060]
-- [acpi] acpi / pm: Always enable wakeup GPEs when enabling device wakeup (Myron Stowe) [1418060]
-- [kernel] acpi / pm: Revork the handling of ACPI device wakeup notifications (Myron Stowe) [1418060]
-- [kernel] pm: Create PM workqueue if runtime PM is not configured too (Myron Stowe) [1418060]
-- [kernel] acpi: Clean up inclusions of ACPI header files (Myron Stowe) [1418060]
-- [kernel] tracing: Fix return value of ftrace_raw_output_prep() (Pratyush Anand) [1365958]
-- [kernel] tracing: remove unused ftrace_output_event() prototype (Pratyush Anand) [1365958]
-- [kernel] tracing: Fix hwlat kthread migration (Pratyush Anand) [1365958]
-- [kernel] tracing: Have max_latency be defined for HWLAT_TRACER as well (Pratyush Anand) [1365958]
-- [kernel] tracing: #ifdef out uses of max trace when CONFIG_TRACER_MAX_TRACE is not set (Pratyush Anand) [1365958]
-- [kernel] tracing: Add NMI tracing in hwlat detector (Pratyush Anand) [1365958]
-- [kernel] tracing: Have hwlat trace migrate across tracing_cpumask CPUs (Pratyush Anand) [1365958]
-- [kernel] tracing: Add documentation for hwlat_detector tracer (Pratyush Anand) [1365958]
-- [kernel] tracing: Added hardware latency tracer (Pratyush Anand) [1365958]
-- [kernel] tracing: Make tracing_cpumask available for all instances (Pratyush Anand) [1365958]
-- [kernel] tracing: Set up infrastructure to allow tracers for instances (Pratyush Anand) [1365958]
-- [kernel] tracing: Move tracing_max_latency into trace_array (Pratyush Anand) [1365958]
-- [kernel] tracing: Pass trace_array to flag_changed callback (Pratyush Anand) [1365958]
-- [kernel] tracing: Pass trace_array to set_flag callback (Pratyush Anand) [1365958]
-- [kernel] tracing: Add trace_seq_has_overflowed() and trace_handle_return() (Pratyush Anand) [1365958]
-- [kernel] tracing: Move raw output code from macro to standalone function (Pratyush Anand) [1365958]
-- [kernel] tracing: Add entry->next_cpu to trace_ctxwake_bin() (Pratyush Anand) [1365958]
-- [kernel] tracing: Use trace_seq_puts()/trace_seq_putc() where possible (Pratyush Anand) [1365958]
-- [kernel] x86/xen/kdump: Replace CONFIG_KEXEC with CONFIG_KEXEC_CORE (Xunlei Pang) [1415443]
-- [kernel] revert "x86/panic: Replace CONFIG_KEXEC_CORE with CONFIG_KEXEC" (Xunlei Pang) [1415443]
-- [kernel] kexec: move some memembers and definitions within the scope of CONFIG_KEXEC_FILE (Xunlei Pang) [1415443]
-- [kernel] kexec: split kexec_load syscall from kexec core code (Xunlei Pang) [1415443]
-- [kernel] kexec: split kexec_file syscall code to kexec_file.c (Xunlei Pang) [1415443]
-- [kernel] use macros from compiler.h instead of __attribute__((...)) (Xunlei Pang) [1415443]
-- [kernel] kexec, kconfig: spell "architecture" properly (Xunlei Pang) [1415443]
-- [kernel] kexec: simplify conditional (Xunlei Pang) [1415443]
-- [kernel] kexec: remove never used member destination in kimage (Xunlei Pang) [1415443]
-- [kernel] kexec: fix a typo in comment (Xunlei Pang) [1415443]
-- [kernel] kexec: allocate the kexec control page with KEXEC_CONTROL_MEMORY_GFP (Xunlei Pang) [1415443]
-- [kernel] kexec: remove unnecessary KERN_ERR from kexec.c (Xunlei Pang) [1415443]
-- [kernel] kexec: remove the unused function parameter (Xunlei Pang) [1415443]
-- [kernel] kexec: take the segment adding out of locate_mem_hole functions (Xunlei Pang) [1415443]
-- [net] netfilter: conntrack: validate SCTP crc32c in PREROUTING (Davide Caratti) [1353218]
-- [net] netfilter: select LIBCRC32C together with SCTP conntrack (Davide Caratti) [1353218]
-- [net] netfilter: nat: skip checksum on offload SCTP packets (Davide Caratti) [1401578]
-- [net] dccp: fix freeing skb too early for IPV6_RECVPKTINFO (Hannes Frederic Sowa) [1423463] {CVE-2017-6074}
-- [scsi] lpfc: Fix eh_deadline setting for sli3 adapters (Ewan Milne) [1366564]
-- [scsi] mpt2sas: fix a print at driver exit and change version string (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Updating driver version to v15.100.00.00 (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Fix Firmware fault state 0x2100 during heavy 4K RR FIO stress test (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Fix for Crusader to achieve product targets with SAS devices (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Added print to notify cable running at a degraded speed (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: disable ASPM for MPI2 controllers (Tomas Henzl) [1417040]
-- [scsi] mpt3sas: Force request partial completion alignment (Tomas Henzl) [1418286]
-- [scsi] libfc: Don't have fc_exch_find log errors on a new exchange (Chris Leech) [1378320]
-- [net-next] treewide: use is_vlan_dev() helper function (Maurizio Lombardi) [1385134]
-- [scsi] bnx2fc: Mark symbols static where possible (Maurizio Lombardi) [1385134]
-- [scsi] bnx2fc: Simplify code (Maurizio Lombardi) [1385134]
-
-* Tue Mar 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-589.el7]
-- [md] dm round robin: revert "use percpu 'repeat_count' and 'current_path'" (Mike Snitzer) [1422567]
-- [md] dm rq: cope with DM device destruction while in dm_old_request_fn() (Mike Snitzer) [1412854]
-- [x86] ptp_kvm: try to detect hypercall availability (Marcelo Tosatti) [1419783]
-- [x86] ptp: add kvm PTP driver (Marcelo Tosatti) [1419783]
-- [x86] kvm: x86: add KVM_HC_CLOCK_PAIRING hypercall (Marcelo Tosatti) [1419783]
-- [x86] kvmclock: export kvmclock clocksource pointer (Marcelo Tosatti) [1419783]
-- [x86] perf/x86/amd/uncore: Update sysfs attributes for Family17h processors (Suravee Suthikulpanit) [1391664 1391662]
-- [x86] perf/x86/amd/uncore: Update the number of uncore counters (Suravee Suthikulpanit) [1391664 1391662]
-- [x86] perf/x86/amd/uncore: Rename 'L2' to 'LLC' (Suravee Suthikulpanit) [1391664 1391662]
-- [fs] binfmt_elf.c:load_elf_binary(): return -EINVAL on zero-length mappings (Bhupesh Sharma) [1415893]
-- [kernel] mm: fold arch_randomize_brk into ARCH_HAS_ELF_RANDOMIZE (Bhupesh Sharma) [1415893]
-- [fs] mm: split ET_DYN ASLR from mmap ASLR (Bhupesh Sharma) [1415893]
-- [s390] redefine randomize_et_dyn for ELF_ET_DYN_BASE (Bhupesh Sharma) [1415893]
-- [kernel] mm: expose arch_mmap_rnd when available (Bhupesh Sharma) [1415893]
-- [s390] standardize mmap_rnd() usage (Bhupesh Sharma) [1415893]
-- [s390] mmap: randomize mmap base for bottom up direction (Bhupesh Sharma) [1415893]
-- [powerpc] standardize mmap_rnd() usage (Bhupesh Sharma) [1415893]
-- [x86] standardize mmap_rnd() usage (Bhupesh Sharma) [1415893]
-- [fs] binfmt_elf.c: fix bug in loading of PIE binaries (Bhupesh Sharma) [1415893]
-- [lib] locking/spinlock/debug: Remove spinlock lockup detection code (Waiman Long) [1425209]
-- [tools] cpupower: Fix no-rounding MHz frequency output (Prarit Bhargava) [1427742]
-- [crypto] mcryptd - Check mcryptd algorithm compatibility (Herbert Xu) [1402133] {CVE-2016-10147}
-- [crypto] mcryptd - process CRYPTO_ALG_INTERNAL (Herbert Xu) [1402133] {CVE-2016-10147}
-- [crypto] vmx - Fix memory corruption caused by p8_ghash (Gustavo Duarte) [1403693]
-- [crypto] ghash-generic - move common definitions to a new header file (Gustavo Duarte) [1403693]
-- [crypto] vmx - Increase priority of aes-cbc cipher (Gustavo Duarte) [1403693]
-- [crypto] vmx - Fix ABI detection (Gustavo Duarte) [1403693]
-- [crypto] vmx - comply with ABIs that specify vrsave as reserved (Gustavo Duarte) [1403693]
-- [crypto] vmx - fix null dereference in p8_aes_xts_crypt (Gustavo Duarte) [1391563]
-- [crypto] vmx - Fix aes_p8_xts_decrypt build failure (Gustavo Duarte) [1391563]
-- [crypto] vmx - Adding asm subroutines for XTS (Gustavo Duarte) [1391563]
-- [crypto] vmx - Adding support for XTS (Gustavo Duarte) [1391563]
-- [kernel] printk: Do not disable preemption for accessing printk_func (Scott Wood) [1427305]
-- [firmware] dmi_scan: add SBMIOS entry and DMI tables (Prarit Bhargava) [1386195]
-- [firmware] efi: dmi: List SMBIOS3 table before SMBIOS table (Prarit Bhargava) [1386195]
-- [platform] x86: thinkpad_acpi: Initialize local in_tablet_mode and type (Lyude Paul) [1389438]
-- [platform] x86: thinkpad_acpi: Add support for X1 Yoga (2016) Tablet Mode (Lyude Paul) [1389438]
-- [platform] x86: thinkpad_acpi: Move tablet detection into separate function (Lyude Paul) [1389438]
-
-* Mon Mar 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-588.el7]
-- [documentation] x86/boot: Fix KASLR and memmap= collision (Baoquan He) [1290840]
-- [documentation] x86, boot: Fix warning due to undeclared strlen() (Baoquan He) [1290840]
-- [documentation] x86/mm: Refactor KASLR entropy functions (Baoquan He) [1290840]
-- [documentation] x86/power/64: Use __pa() for physical address computation (Baoquan He) [1290840]
-- [documentation] x86/power/64: Always create temporary identity mapping correctly (Baoquan He) [1290840]
-- [documentation] x86/power/64: Do not refer to __PAGE_OFFSET from assembly code (Baoquan He) [1290840]
-- [documentation] x86/kaslr, x86/power: Remove x86 hibernation restrictions (Baoquan He) [1290840]
-- [documentation] x86/power/64: Fix kernel text mapping corruption during image restoration (Baoquan He) [1290840]
-- [documentation] x86/asm, x86/power/hibernate: Use local labels in asm (Baoquan He) [1290840]
-- [documentation] x86/doc: Correct limits in Documentation/x86/x86_64/mm.txt (Baoquan He) [1290840]
-- [documentation] x86/kaslr: Fix typo in the KASLR_FLAG documentation (Baoquan He) [1290840]
-- [x86] 64: Disable the mm track code during boot stage (Baoquan He) [1290840]
-- [x86] __force_order doesn't need to be an actual variable (Baoquan He) [1290840]
-- [x86] kaslr: Fix boot crash with certain memory configurations (Baoquan He) [1290840]
-- [x86] kaslr: Allow randomization below the load address (Baoquan He) [1290840]
-- [x86] kaslr: Extend kernel image physical address randomization to addresses larger than 4G (Baoquan He) [1290840]
-- [x86] kaslr: Randomize virtual address separately (Baoquan He) [1290840]
-- [x86] kaslr: Clarify identity map interface (Baoquan He) [1290840]
-- [x86] boot: Refuse to build with data relocations (Baoquan He) [1290840]
-- [x86] kaslr: Clarify purpose of each get_random_long() (Baoquan He) [1290840]
-- [x86] kaslr: Add virtual address choosing function (Baoquan He) [1290840]
-- [x86] kaslr: Return earliest overlap when avoiding regions (Baoquan He) [1290840]
-- [x86] kaslr: Add 'struct slot_area' to manage random_addr slots (Baoquan He) [1290840]
-- [x86] boot: Add missing file header comments (Baoquan He) [1290840]
-- [x86] kaslr: Initialize mapping_info every time (Baoquan He) [1290840]
-- [x86] boot: Comment what finalize_identity_maps() does (Baoquan He) [1290840]
-- [x86] kaslr: Build identity mappings on demand (Baoquan He) [1290840]
-- [x86] boot: Split out kernel_ident_mapping_init() (Baoquan He) [1290840]
-- [x86] boot: Clean up indenting for asm/boot.h (Baoquan He) [1290840]
-- [x86] boot: Double BOOT_HEAP_SIZE to 64KB (Baoquan He) [1290840]
-- [x86] kaslr: Improve comments around the mem_avoid[] logic (Baoquan He) [1290840]
-- [x86] boot: Simplify pointer casting in choose_random_location() (Baoquan He) [1290840]
-- [x86] kaslr: Consolidate mem_avoid[] entries (Baoquan He) [1290840]
-- [x86] boot: Clean up pointer casting (Baoquan He) [1290840]
-- [x86] boot: Warn on future overlapping memcpy() use (Baoquan He) [1290840]
-- [x86] boot: Extract error reporting functions (Baoquan He) [1290840]
-- [x86] boot: Correctly bounds-check relocations (Baoquan He) [1290840]
-- [x86] kaslr: Clean up unused code from old 'run_size' and rename it to 'kernel_total_size' (Baoquan He) [1290840]
-- [x86] boot: Fix "run_size" calculation (Baoquan He) [1290840]
-- [x86] boot: Calculate decompression size during boot not build (Baoquan He) [1290840]
-- [x86] boot: Move compressed kernel to the end of the decompression buffer (Baoquan He) [1290840]
-- [x86] mm: Page align the '_end' symbol to avoid pfn conversion bugs (Baoquan He) [1290840]
-- [x86] kaslr: Handle kernel relocations above 2G correctly (Baoquan He) [1290840]
-- [x86] boot: Rename overlapping memcpy() to memmove() (Baoquan He) [1290840]
-- [x86] kaslr: Warn when KASLR is disabled (Baoquan He) [1290840]
-- [x86] boot: Make memcpy() handle overlaps (Baoquan He) [1290840]
-- [x86] boot: Clean up things used by decompressors (Baoquan He) [1290840]
-- [x86] kaslr: Drop CONFIG_RANDOMIZE_BASE_MAX_OFFSET (Baoquan He) [1290840]
-- [x86] kaslr: Update description for decompressor worst case size (Baoquan He) [1290840]
-- [x86] kaslr: Rename "random" to "random_addr" (Baoquan He) [1290840]
-- [x86] kaslr: Clarify purpose of kaslr.c (Baoquan He) [1290840]
-- [x86] boot: Clarify purpose of functions in misc.c (Baoquan He) [1290840]
-- [x86] boot: Rename "real_mode" to "boot_params" (Baoquan He) [1290840]
-- [x86] kaslr: Remove unneeded boot_params argument (Baoquan He) [1290840]
-- [x86] kaslr: Rename aslr.c to kaslr.c (Baoquan He) [1290840]
-- [x86] boot: Don't compile early_serial_console.c when !CONFIG_EARLY_PRINTK (Baoquan He) [1290840]
-- [x86] boot: Don't compile aslr.c when !CONFIG_RANDOMIZE_BASE (Baoquan He) [1290840]
-- [x86] boot: Use the usual -y -n mechanism for objects in vmlinux (Baoquan He) [1290840]
-- [lib] decompressors: use real out buf size for gunzip with kernel (Baoquan He) [1290840]
-- [lib] decompressors: fix "no limit" output buffer length (Baoquan He) [1290840]
-- [lib] initramfs: support initramfs that is bigger than 2GiB (Baoquan He) [1290840]
-- [lib] decompress_inflate.c: include appropriate header file (Baoquan He) [1290840]
-- [x86] boot: Add hex output for debugging (Baoquan He) [1290840]
-- [x86] kaslr: fix build due to missing ALIGN definition (Baoquan He) [1290840]
-- [x86] introduce kaslr_offset() (Baoquan He) [1290840]
-- [x86] mm/kaslr: Propagate KASLR status to kernel proper (Baoquan He) [1290840]
-- [x86] revert "x86/mm/aslr: Propagate base load address calculation" (Baoquan He) [1290840]
-- [x86] asm/boot/64: Use __BOOT_TSS instead of literal $0x20 (Baoquan He) [1290840]
-- [x86] mm/aslr: Avoid PAGE_SIZE redefinition for UML subarch (Baoquan He) [1290840]
-- [x86] mm/aslr: Propagate base load address calculation (Baoquan He) [1290840]
-- [x86] asm/boot: Use already defined KEEP_SEGMENTS macro in head_{32, 64}.S (Baoquan He) [1290840]
-- [x86] build: replace Perl script with Shell script (Baoquan He) [1290840]
-- [x86] boot: Skip relocs when load address unchanged (Baoquan He) [1290840]
-- [x86] Use $(OBJDUMP) instead of plain objdump (Baoquan He) [1290840]
-- [x86] kaslr: Handle Gold linker for finding bss/brk (Baoquan He) [1290840]
-- [x86] x86-64: Use RIP-relative addressing for most per-CPU accesses (Baoquan He) [1290840]
-- [x86] x86-64: Handle PC-relative relocations on per-CPU data (Baoquan He) [1290840]
-- [x86] kaslr: Prevent .bss from overlaping initrd (Baoquan He) [1290840]
-- [x86] boot: Document intermediates more clearly (Baoquan He) [1290840]
-- [x86] boot, kaslr: Fix nuisance warning on 32-bit builds (Baoquan He) [1290840]
-- [x86] kaslr: Avoid the setup_data area when picking location (Baoquan He) [1290840]
-- [kernel] x86, kaslr: boot-time selectable with hibernation (Baoquan He) [1290840]
-- [kernel] pm / hibernate: introduce "nohibernate" boot parameter (Baoquan He) [1290840]
-- [x86] kaslr: fix module lock ordering problem (Baoquan He) [1290840]
-- [x86] kaslr: randomize module base load address (Baoquan He) [1290840]
-- [x86] mm/arch: use NUMA_NO_NODE (Baoquan He) [1290840]
-- [x86] kaslr: add missed "static" declarations (Baoquan He) [1290840]
-- [x86] kaslr: export offset in VMCOREINFO ELF notes (Baoquan He) [1290840]
-- [x86] kaslr: Clarify RANDOMIZE_BASE_MAX_OFFSET (Baoquan He) [1290840]
-- [x86] kaslr: Remove unused including <linux/version.h> (Baoquan He) [1290840]
-- [x86] kaslr: Use char array to gain sizeof sanity (Baoquan He) [1290840]
-- [x86] kaslr: Add a circular multiply for better bit diffusion (Baoquan He) [1290840]
-- [x86] kaslr: Mix entropy sources together as needed (Baoquan He) [1290840]
-- [x86] relocs: Add percpu fixup for GNU ld 2.23 (Baoquan He) [1290840]
-- [x86] boot: Rename get_flags() and check_flags() to *_cpuflags() (Baoquan He) [1290840]
-- [x86] kaslr: Raise the maximum virtual address to -1 GiB on x86_64 (Baoquan He) [1290840]
-- [x86] kaslr: Report kernel offset on panic (Baoquan He) [1290840]
-- [x86] kaslr: Select random position from e820 maps (Baoquan He) [1290840]
-- [x86] kaslr: Provide randomness functions (Baoquan He) [1290840]
-- [x86] kaslr: Return location from decompress_kernel (Baoquan He) [1290840]
-- [x86] boot: Move CPU flags out of cpucheck (Baoquan He) [1290840]
-- [x86] relocs: Add more per-cpu gold special cases (Baoquan He) [1290840]
-- [x86] mkpiggy.c: Explicitly close the output file (Baoquan He) [1290840]
-- [x86] relocs: Move ELF relocation handling to C (Baoquan He) [1290840]
-
-* Mon Mar 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-587.el7]
-- [kernel] tasklist_lock: Change from rwlock_t to qrwlock_t (Waiman Long) [1241990]
-- [kernel] qrwlock: Build wrapper headers and functions on top of qrwlock (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Reduce reader/writer to reader lock transfer latency (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Better optimization for interrupt context readers (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Rename functions to queued_*() (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Don't contend with readers when setting _QW_WAITING (Waiman Long) [1241990]
-- [kernel] locking/qrwlock: Rename QUEUE_RWLOCK to QUEUED_RWLOCKS (Waiman Long) [1241990]
-- [kernel] x86, locking/rwlocks: Enable qrwlocks on x86 (Waiman Long) [1241990]
-- [kernel] locking/rwlocks: Introduce 'qrwlocks' - fair, queued rwlocks (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Block kernel module loading on old kernel (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Handle ticket unlock code in old kernel modules (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Maintain same kABI signature as ticket locks (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Fix double hash race (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Fix spin_unlock_wait() some more (Waiman Long) [1241990]
-- [kernel] locking/pvstat: Separate wait_again and spurious wakeup stats (Waiman Long) [1241990]
-- [kernel] locking, qspinlock: Fix spin_is_locked() and spin_unlock_wait() (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Fix division by zero in qstat_read() (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Move __ARCH_SPIN_LOCK_UNLOCKED to qspinlock_types.h (Waiman Long) [1241990]
-- [kernel] x86/locking: Create stack frame in PV unlock (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Queue node adaptive spinning (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Allow limited lock stealing (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Collect slowpath lock statistics (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock, x86: Optimize the PV unlock code path (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Avoid redundant read of next pointer (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Prefetch the next node cacheline (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Kick the PV CPU unconditionally when _Q_SLOW_VAL (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Fix performance regression under unaccelerated VMs (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Only kick CPU at unlock time (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Order pv_unhash() after cmpxchg() on unlock slowpath (Waiman Long) [1241990]
-- [kernel] locking: Clean up pvqspinlock warning (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Fix kernel panic in locking-selftest (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Rename QUEUED_SPINLOCK to QUEUED_SPINLOCKS (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: replace xchg() by the more descriptive set_mb() (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock, x86: Enable PV qspinlock for Xen (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock, x86: Enable PV qspinlock for KVM (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock, x86: Implement the paravirt qspinlock call patching (Waiman Long) [1241990]
-- [kernel] locking/pvqspinlock: Implement simple paravirt support for the qspinlock (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Revert to test-and-set on hypervisors (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Use a simple write to grab the lock (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Optimize for smaller NR_CPUS (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Extract out code snippets for the next patch (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Add pending bit (Waiman Long) [1241990]
-- [kernel] locking/qspinlock, x86: Enable x86-64 to use queued spinlocks (Waiman Long) [1241990]
-- [kernel] locking/qspinlock: Introduce a simple generic 4-byte queued spinlock (Waiman Long) [1241990]
-- [kernel] percpu: Make __verify_pcu_ptr handle per cpu pointers to arrays (Waiman Long) [1241990]
-- [kernel] compiler: Allow 1- and 2-byte smp_load_acquire() and smp_store_release() (Waiman Long) [1241990]
-
-* Fri Mar 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-586.el7]
-- [sound] alsa: remove unused dmaengine bits (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Replace MBI_REG_READ with constant 0x10 (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-midi: correct speed checking (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: correct speed checking (Jaroslav Kysela) [1399503]
-- [sound] alsa: pcm: Allow 32 bit sample format in IEC958 channel status helper (Jaroslav Kysela) [1399503]
-- [sound] alsa: pcm: add IEC958 channel status helper for hw_params (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: set sel_i2s_pre_div1 to 2 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5645 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: Add ACPI ID 10EC5640 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: add DAC1 soft volume func control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: set RT5645_PRIV_INDEX as volatile (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: fix reg-2f default value (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: patch reg-0x8a (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rl6347a: Use dev_err for I2C communication error prints (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on ssm4567 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on ssm2518 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on sn95031 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: Add missing 10EC5072 ACPI ID (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: Enable Braswell platform workaround for Dell Wyse 3040 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: increse LDO power (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: Enable MCLK detection (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5670 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: patch reg-0x8a (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5670: fix HP Playback Volume control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5651 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: polling jd status in all conditions (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5645: Add dmi_system_id "Google Setzer" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5640: add Mono ADC Capture Switch control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5640: enable MCLK detection (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt5640: add internal clock source support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt5640 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on rt286 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rt286: set combo jack for Kabylake (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: rl6231: add 19.2M to 4.096M pll preset table (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: fix invalid configuration in Pre-Scalar of FLL (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: correct the function name of register (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: disable sinc filter for high THD of ADC (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: lock longer to avoid playback pop upon resume (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: FLL parameters finetune (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: AD/DA over sampling rate configuration (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: Disable short Frame Sync detection logic (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: fix bug in FLL parameter (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on nau8825 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: fix static check error about semaphone control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: fix bug in playback when suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: drop redundant idiom when converting integer to boolean (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: jack connection decision with different insertion logic (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: mark pm functions __maybe_unused (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: cross talk suppression measurement function (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: correct typo in biquad filter coefficients (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: non-clock jack detection for power saving at standby (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: add programmable biquad filter control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: Export I2C module alias information (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: assign DAC Ch to match headset L/R (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: change output power for interrupt (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: reduce standby power consumption (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: improve FLL function for better performance (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: nau8825: support different clock source for FLL function (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on wm98357a (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: fix spelling mistake "montior" -> "monitor" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Add device id for Kabylake (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Increase loglevel of hex dump printed (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Fix potential NULL dereference (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Remove the unused 'timeout' variable (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: add link management (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Potential NULL deref in hdac_hdmi_get_spk_alloc() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Register chmap controls and ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: Add multichannel support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: hdac_hdmi: parse eld for channel map capability (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: codec duplicated callback function goes to component on dmic (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: Add component pin control functions (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dpcm: Avoid putting stream state to STOP when FE stream is paused (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Make return type of dpcm_state_string() const char * (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dpcm: print dai_link name of BE other than FE (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dpcm: Don't apply symmetry for BE with hw param fixup (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dpcm: play nice with CODEC<->CODEC links (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: fix shift used for second item in snd_soc_get_enum_double (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Implement stereo mixer control support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Support second register for DAPM control updates (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix kcontrol creation for output driver widget (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix value setting for _ENUM_DOUBLE MUX's second channel (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix possible uninitialized variable in snd_soc_dapm_get_volsw() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix typos in comment (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Add a dummy snd_pcm_runtime to avoid NULL pointer access (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Export snd_soc_dapm_new_control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: Fix to return correct path list in is_connected_ep (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: dapm: support user-defined stop condition in dai_get_connected_widgets (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: compress: Add support for compress dai ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: compress: Fix leak of a widget list in soc_compr_open_fe (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: compress: Pass error out of soc_compr_pointer (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: adjust for graph on snd_soc_of_parse_audio_simple_widgets (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: adjust for graph on snd_soc_of_parse_card_name (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: adjust for graph on snd_soc_of_parse_audio_prefix (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: snd_soc_get_dai_name() become non static (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: soc-core: adjust for graph on snd_soc_of_parse_audio_routing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: If a platform doesn't have an of_node use parent's node (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: Clean up DAPM before the card debugfs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Fix leak of rtd in soc_bind_dai_link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: remove codec duplicated callback function (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: use of_property_read_bool (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Add kerneldoc comments for snd_soc_find_dai (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Export snd_soc_find_dai() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Define API to find a dai link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Fix binding and probing of auxiliary components (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: add Component level suspend/resume (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: replace aux_comp_list to component_dev_list (Jaroslav Kysela) [1399503]
-- [sound] alsa: bump PCM protocol to 2.0.13 (Jaroslav Kysela) [1399503]
-- [sound] alsa: Provide a CLOCK_MONOTONIC_RAW timestamp type (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Update physical DAI link configuration for version 5 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Rename be_dai_elems to dai_elems in manifest (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: kfree kcontrol->private_value before freeing kcontrol (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: avoid uninitialized kcontrol_type (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Only free TLV for volume mixers of a widget (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Allow a widget to have multiple enum controls (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Check name strings of physical DAI links (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Add voice wake up flag for DAI links (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Rename functions & variables for physical DAIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Rename struct and type for physical DAIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Rename the function to create a FE link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Add support to configure existing physical DAI links (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Add flags and private data to PCM (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Only use valid names of PCM for the kernel DAI & DAI link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Make PCM backward compatible from ABI v4 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Make manifest backward compatible from ABI v4 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Fix error return code in soc_tplg_dapm_widget_create() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Add support for configuring existing BE DAIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Fix memory leak in widget creation (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Check size mismatch of ABI objects before parsing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Check failure to create a widget (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Set CPU DAI name and enable DPCM by default for FE link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Support topology file of ABI v4 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Define DAI physical PCM data formats (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Reenable use from userspace (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Add sig_bits to stream caps (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Add the types for BE DAI (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: Set the link ID when creating a FE DAI link (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: topology: ABI - Define types for vendor tuples (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Cannot adjust speaker's volume on a Dell AIO (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - add sanity check to force the separate stream tags (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - fix Lewisburg audio issue (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/patch_sigmatel: Add AmigaOne X1000 pinconfigs (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Always setup isochronous transfer properties (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs46xx: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Add support headphone Mic for ALC221 of HP platform (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - New codec support of ALC1220 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Make single_cmd option to stop the fallback mechanism (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: Constify snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: pci: Constify snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: Constify snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: Constify snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: rawmidi: Add const to snd_rawmidi_ops (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/ca0132 - fix possible NULL pointer use (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - add DP mst verb support (Jaroslav Kysela) [1399503]
-- [sound] alsa: vx: Don't try to update capture stream before running (Jaroslav Kysela) [1399503]
-- [sound] alsa: vx: Fix possible transfer overflow (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix deadlock of controller device lock at unbinding (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Add new codec ID ALC299 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix click noises on Samsung Ativ Book 8 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Apply ALC269_FIXUP_NO_SHUTUP on HDA_FIXUP_ACT_PROBE (Jaroslav Kysela) [1399503]
-- [sound] alsa: mixart: fix a comment typo (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Support both DSD LE/BE Amanero firmware versions (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs5535audio: fix unused warnings on resume/suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - adding a new NV HDMI/DP codec ID in the driver (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: Fix race at creating a queue (Jaroslav Kysela) [1399503]
-- [sound] alsa: revert "alsa: line6: Only determine control port properties if needed" (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: Don't handle loop timeout at snd_seq_pool_done() (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add a quirk for Plantronics BT600 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Release FW ctx in cleanup (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr-rt5640: fix settings in internal clock mode (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: test EP_FLAG_RUNNING at urb completion (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix irq/process data synchronization (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Apply asus-mode8 fixup to ASUS X71SL (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix up GPIO for ASUS ROG Ranger (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix to fail safely if module not available in path (Jaroslav Kysela) [1399503]
-- [sound] alsa: revert "alsa: usb-audio: Fix race at stopping the stream" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: fallback mechanism if MCLK is not enabled (Jaroslav Kysela) [1399503]
-- [sound] alsa: printk/sound: handle more message headers (Jaroslav Kysela) [1399503]
-- [sound] alsa: hiface: Fix M2Tech hiFace driver sampling rate change (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Eliminate noise at the start of DSD playback (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add native DSD support for TEAC 501/503 DAC (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add QuickCam Communicate Deluxe/S7500 to volume_control_quirks (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: add implicit fb quirk for Axe-Fx II (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs46xx: add a new line (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: update bxt_da7219_max98357a to support quad ch dmic capture (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: more tolerant packetsize (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: avoid setting of sample rate multiple times on bus (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Gate the mic jack on HP Z1 Gen3 AiO (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: when comparing pin configurations, ignore assoc in addition to seq (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: save FW version (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Add sysfs entry in order to store FW version (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix race at stopping the stream (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: core: replace codec_dev_list to component_dev_list on Card (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: cht_bsw_rt5672: Use HID translation unit (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Fix crash at suspend/resume without card registration (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Replace kthread with work (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add missing 10EC5672 ACPI ID matching for Cherry Trail (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix bogus error return in snd_usb_create_stream() (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Claim pod x3 usb data interface (Jaroslav Kysela) [1399503]
-- [sound] alsa: echoaudio: Fix improper return value in function load_asic (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Make some messages to debug level (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Add support for headset MIC for ALC622 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/ca0132 - Add quirk for Alienware 15 R2 2016 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Removed the unused I2S blob structure (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Don't use dma I2S config structure in kernel (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - fix headset-mic problem on a Dell laptop (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - ignore the assoc and seq when comparing pin configurations (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: cht_bsw_rt5645: Fix leftover kmalloc (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: mfld: Make static string arrays 'const 'char * const []' (Jaroslav Kysela) [1399503]
-- [sound] alsa: emu10k1: Use workqueue instead of kthread for emu1010 fw polling (Jaroslav Kysela) [1399503]
-- [sound] alsa: emu10k1: Simplify firmware loader code (Jaroslav Kysela) [1399503]
-- [sound] alsa: emu10k1: Fix emu1010 dock attach check (Jaroslav Kysela) [1399503]
-- [sound] alsa: ac97: Fix kernel-doc error with sphinx formatter (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix use-after-free of usb_device at disconnect (Jaroslav Kysela) [1399503]
-- [sound] alsa: pci: don't opencode IS_REACHABLE() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytct_rt5640: change default capture settings (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: detect audio routing with CHAN package (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: common: add ACPI package extraction utility (Jaroslav Kysela) [1399503]
-- [sound] alsa: oss: don't opencode IS_REACHABLE() (Jaroslav Kysela) [1399503]
-- [sound] alsa: rawmidi: don't opencode IS_REACHABLE() (Jaroslav Kysela) [1399503]
-- [sound] alsa: opl3: don't opencode IS_REACHABLE() (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix mic regression by ASRock mobo fixup (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - add a new condition to check if it is thinkpad (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Flush pending D0i3 request on suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: remove pci device enabling calls on suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix typo (Jaroslav Kysela) [1399503]
-- [sound] alsa: info: Return error for invalid read/write (Jaroslav Kysela) [1399503]
-- [sound] alsa: info: Limit the proc text input size (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add D0i3 mode ref counting (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add support for specifying D0i3 configuration (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add support for LPMode (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add D0iX callbacks (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add support for programming D0i3C (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add D0iX IPCs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add sst_ipc_tx_message_nopm (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add check_dsp_lp_on callback on IPC (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Add debug information related to FW version (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix to turn off hdmi power on probe failure (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add quirk for Syntek STK1160 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix a shift wrapping bug (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: Fix time account regression (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix surround output pins for ASRock B150M mobo (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: constify snd_soc_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: broadwell: constify snd_soc_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: sst-bxt-da7219_max98357a: fix obsoleted initializer for array (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Always acquire runtime pm ref on unload (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: add terminate entry for dmi_system_id tables (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for two Dell laptops (Jaroslav Kysela) [1399503]
-- [sound] alsa: asihpi: fix kernel memory disclosure (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Adding a new group of pin cfg into ALC295 pin quirk table (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - allow 40 bit DMA mask for NVidia devices (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: fix a crash in line6_hwdep_write() (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: fix passing wrong pointer in function call of compatibility layer (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix a failure of micmute led when having multi adcs (Jaroslav Kysela) [1399503]
-- [sound] alsa: treewide: remove redundant #include <linux/kconfig.h> (Jaroslav Kysela) [1399503]
-- [sound] alsa: kthread: kthread worker API cleanup (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: haswell depends on sst-firmware (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Fix POD X3 Live audio input (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: report JACK_LINEOUT event (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Use DPIB to update position for Playback stream (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: fix memory leak of module on error exit path (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: sst-bxt-rt298: fix obsoleted initializers for array (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: sst-bxt-da7219_max98357a: fix obsoleted initializers for array (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Add the top speaker pin config for HP Spectre x360 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add DMIC channel constraint for bxt machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Adding one more ALC255 pin definition for headset problem (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-line6: use the same declaration as definition in header for MIDI manufacturer ID (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: Add bdw-rt5677 machine driver (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: remove status, it is shadowing status of a higher scope (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: add missing \n to end of dev_err/dev_dbg messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: add missing \n to end of dev_* messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add table for module id for quick ref (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update to use instance ids generated (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Use private instance id of modules in IPC (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add module instance id generation APIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Extend DragonFly dB scale quirk to cover other variants (Jaroslav Kysela) [1399503]
-- [sound] alsa: ali5451: Fix out-of-bound position reporting (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: snd-usb-line6 depends on CONFIG_SND_HWDEP (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: fix ifnullfree.cocci warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add hwdep interface to access the POD control messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Cleanup podhd initialization (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Only determine control port properties if needed (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add support for POD X3 Live (only USB ID differs from POD X3) (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add support for POD X3 (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Allow processing of raw incoming messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Distinguish device init (ctrl EP) and MIDI data transfer (int EP) (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add LINE6_CAP_IN_NEEDS_OUT, a void playback stream during capture (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Allow different channel numbers for in/out (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Support assymetrical in/out configurations (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Add high-speed USB support (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Enable different number of URBs for frame transfers (Jaroslav Kysela) [1399503]
-- [sound] alsa: compress: fix some missing and misplaced \n in messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: hdac: add missing \n to end of dev_err messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: au88x0: Add missing \n to end of dev_err message (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add 32bit support (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: fix to copy from/to user space (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: pci: constify local structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for several Dell laptops (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Skip Realtek SKU check for Lenovo machines (Jaroslav Kysela) [1399503]
-- [sound] alsa: rawmidi: Fix possible deadlock with virmidi registration (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: Fix zero-division by continue of uninitialized instance (Jaroslav Kysela) [1399503]
-- [sound] alsa: squash lines for simple wrapper functions (Jaroslav Kysela) [1399503]
-- [sound] alsa: pcm: Fix avail to return error if stream is suspended (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: fix IOSF_MBI dependency (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: sst: fix to spelling mistake: "susupend" -> "suspend" (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: fix NULL pointer dereference in read()/ioctl() race (Jaroslav Kysela) [1399503]
-- [sound] alsa: bt87x: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: oxygen: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: ad1889: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs5535audio: constify snd_pcm_ops structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Unload all the loadable modules (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix DMA control config size (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix the inverted logic check (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: check manifest size (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: add a missing star in a memcpy call (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Fix message handling during drop stream (Jaroslav Kysela) [1399503]
-- [sound] alsa: cs46xx: fix typo "seconadry" -> "secondary" (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: initialize whole fields of automatic variable with union type (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Enable subwoofer on Dell Inspiron 7559 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Add headset mic quirk for Dell Inspiron 5468 (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add sample rate inquiry quirk for B850V3 CP2114 (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: fix NULL pointer dereference on memory allocation failure (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: fix division by zero after SNDRV_TIMER_IOCTL_CONTINUE (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - fix headset mic detection for MSI MS-B120 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Parse manifest data (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: uapi: intel: skylake: Define vendor specific tokens (Jaroslav Kysela) [1399503]
-- [sound] alsa: uapi: Add three missing header files to Kbuild file (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Remove dfw config and associated structures (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Parse vendor tokens to build module data (Jaroslav Kysela) [1399503]
-- [sound] alsa: hdspm: fix spelling mistake "Externel" -> "External" (Jaroslav Kysela) [1399503]
-- [sound] alsa: compress: Use memdup_user() rather than duplicating its implementation (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: rmove print for failure of kmalloc (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: fine-tune Tenor error compensation value (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: use TEAC UD-H01 quirk for more devices (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: move udh01_fb_quirk setting to quirks.c (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Fix POD sysfs attributes segfault (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Give up on the lock while URBs are released (Jaroslav Kysela) [1399503]
-- [sound] alsa: line6: Remove double line6_pcm_release() after failed acquire (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: obsolete change of address limit (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: change ioctl command operation to get data in kernel space (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: add an alternative way to handle ioctl requests (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq: add documentation for snd_seq_kernel_client_ctl (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: sst: fix ix spelling mistake: "capablities" -> "capabilites" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: quirk for Acer Aspire SWS-012 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: fix 0-day warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: log quirks (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: Add quirk for Teclast X98 Air 3G tablet (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add quirks for MinnowBoard MAX (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: add MCLK support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: add IN3 map (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: default routing and quirks on Baytrail-CR (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: fix dai/clock setup for SSP0 routing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt56040: additional routing quirks (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: Change DAI link's be_id to a generic id (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: add SSP2_AIF2 routing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: enable configuration of SSP0 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: add definitions for modem/SSP0 interface (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: auto-detection of Baytrail-CR (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: enable differential mic quirk (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr_rt5640: quirk for mono speaker (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bytcr-rt5640: add Asus T100TAF quirks (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix error return code in skl_probe() (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb: caiaq: audio: don't print error when allocating urb fails (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: remove module id query at runtime (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Populate modules after loading (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: modify snd_skl_get_module_info args (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Manage power well properly for resume (Jaroslav Kysela) [1399503]
-- [sound] alsa: alsa - hda: Add support for link audio time reporting (Jaroslav Kysela) [1399503]
-- [sound] alsa: alsa - hda: Add support for parsing new HDA capabilities (Jaroslav Kysela) [1399503]
-- [sound] alsa: alsa - ext hda: remove bus_parse_capabilities (Jaroslav Kysela) [1399503]
-- [sound] alsa: convert users to core bus_parse_capabilities (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - move bus_parse_capabilities to core (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add quirk for ELP HD USB Camera (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Add a sample rate quirk for Creative Live! Cam Socialize HD (VF0610) (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add module processing domain support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix a comment style (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add library loading support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: fix noderef.cocci warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add library loading IPCs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bxt: Parse UUIDs once (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Parse UUIDs once (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: add additional args to module parsing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: add support for tplg manifest load (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: split fw and dsp initialization (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: modify skl_get_dsp_ops() (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Move modules query to runtime (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for two dell machines (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: Fix krealloc() with __GFP_ZERO usage (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: add AMD Bonaire AZ PCI ID with proper driver caps (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Check list empty while getting module info (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - On-board speaker fixup on ACER Veriton (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Can't adjust speaker's volume on a Dell AIO (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Delete an unnecessary check before the function call "release_firmware" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix NULL Pointer exception in dynamic_debug (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Fix quirks code is not called (Jaroslav Kysela) [1399503]
-- [sound] alsa: echoaudio: purge contradictions between dimension matrix members and total number of members (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Fix conflicting pcm dev drvdata on haswell (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: board: add kabylake nau88l25_ssm4567 machine id (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: board: add kabylake nau88l25_max98357a machine id (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: kbl: add kabylake additional machine entries (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: reduce machine name for skl_nau88l25_max98357a (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: reduce machine name for skl_nau88l25_ssm4567 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix fw reload failure (Jaroslav Kysela) [1399503]
-- [sound] alsa: mixart: don't print an unintialized variable on error (Jaroslav Kysela) [1399503]
-- [sound] alsa: ak4114: remove redundant check on err being < 0 (Jaroslav Kysela) [1399503]
-- [sound] alsa: ak4117: remove redundant check on err being < 0 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: add AMD Stoney PCI ID with proper driver caps (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: board: add kabylake machine id (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: add kablake device IDs (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - fix use-after-free after module unload (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Fix sst-dsp dependency on dw stuff (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: statify cht_quirk (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: cht: fix uninit variable warning (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix to use the actual size for TLV control (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add surface3 entry in CHT-RT5645 machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: Add quirk for Surface 3 (Jaroslav Kysela) [1399503]
-- [sound] alsa: pcm: Free chmap at PCM free callback, too (Jaroslav Kysela) [1399503]
-- [sound] alsa: ctl: Stop notification after disconnection (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - add new pin definition in alc225 pin quirk table (Jaroslav Kysela) [1399503]
-- [sound] alsa: control: add dimension validator for userspace elements (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek: Add Lenovo L460 to docking unit fixup (Jaroslav Kysela) [1399503]
-- [sound] alsa: timer: Fix negative queue usage by racy accesses (Jaroslav Kysela) [1399503]
-- [sound] alsa: riptide: Use DIV_ROUND_UP (Jaroslav Kysela) [1399503]
-- [sound] alsa: au88x0: Fix calculation in vortex_wtdma_bufshift() (Jaroslav Kysela) [1399503]
-- [sound] alsa: echoaudio: Fix memory allocation (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Increase loglevel of debug messages (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: common: increase the loglevel of "FW Poll Status" (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - fix read before array start (Jaroslav Kysela) [1399503]
-- [sound] alsa: dummy: Fix a use-after-free at closing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: atom: fix missing breaks that would cause the wrong operation to execute (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix the headset mic jack detection on Dell machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Support multi-core in Broxton (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Support multi-core in Skylake (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add DSP muti-core infrastructure (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update comment style (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add pm ops for broxton-rt298 machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Disable async suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: revert "asoc: intel: Add support for PM ops in bxt-rt298" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: kconfig: formatting update (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: kconfig: fix build when ACPI is not enabled (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/tegra: iomem fixups for sparse warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq_timer: use monotonic times internally (Jaroslav Kysela) [1399503]
-- [sound] alsa: ctxfi: Change structure initialisation to C99 style (Jaroslav Kysela) [1399503]
-- [sound] alsa: usb-audio: Change structure initialisation to C99 style (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda: fix some klockwork scan warnings (Jaroslav Kysela) [1399503]
-- [sound] alsa: seq_oss: Change structure initialisation to C99 style (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - ALC891 headset mode for Dell (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Check for module list being NULL (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Initialize module list for Broxton (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add support for PM ops in bxt-rt298 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update DSP stall bits (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update FW purge for Broxton (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Enable firmware reload in suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Update ignore suspend for bxt-rt298 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add FE rate & channel constraints for bxt-rt298 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add DMIC 4 channel support for bxt machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: compress: Add function to indicate the stream has gone bad (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add DSP firmware manifest parsing (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Report position in pointer query (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Copy the pipe parameter by pipe type (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Set the DSP pipe type (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Create Pipe to widget list in soc probe (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Clean up of driver resources in suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Avoid freeing up of unallocated memory/mcps (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Disable SRAM Retention before D3 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Don't pause stopped pipeline while deleting (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Set the pipe state to paused when paused (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Reset DSP pipe when host/link DMA is reset (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek: Add T560 docking unit fixup (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for Dell machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Turn off loopback mixing as default (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add Broxton-P Dialog+Maxim machine driver entry (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add Broxton-P Dialog Maxim machine driver (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: configure DMIC for machine sklnau8825max (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: configure DMIC for machine sklnau8825adi (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Find uuids for Broxton (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Find uuids for Skylake (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add strip extended manifest utility (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Use UUID in binary format (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Strip manifest for Broxton platform (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Strip manifest for Skylake platform (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Don't use local pointer for firmware (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: bxtn: Add Broxton DSP support (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add api to retrieve dmic array info from nhlt (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Use refcap device for mono recording (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add channel constraints for refcap (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: add function stub when ACPI is not enabled (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - Add support for new codecs ALC700/ALC701/ALC703 (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda/realtek - ALC256 speaker noise issue (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headset mic detection problem for one Dell machine (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - Fix headphone noise on Dell XPS 13 9360 (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: add link management (Jaroslav Kysela) [1399503]
-- [sound] alsa: hdac: add link pm and ref counting (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: fix up for DAI link's be_id change (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Fix printk formatting (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: Add Broxton-P machine driver (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add more SSP DAIs (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix memory leak in nhlt init (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: remove ignore_suspend for WoV streams (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Suspend PCMs when marked as active suspend (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Prevent sending Set DMA Control IPC if the widget is "On" (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix memory leak during init instance (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Fix the NULL pointer exception in dsp_clean up (Jaroslav Kysela) [1399503]
-- [sound] alsa: dmaengine: dw: pass platform data via struct dw_dma_chip (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Update channel map based on runtime params (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: skylake: Add multichannel support for HDMI (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: Update skl_nau88l25_ssm4567 driver to support chmap (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: intel: boards: Update skl_nau88l25_max98357a driver to support chmap (Jaroslav Kysela) [1399503]
-- [sound] alsa: asoc: skl_rt286: Fix to support hdmi channel map support (Jaroslav Kysela) [1399503]
-- [sound] alsa: hda - add helper to get channels from cap bits (Jaroslav Kysela) [1399503]
-
-* Thu Mar 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-585.el7]
-- [kernel] locking/mutex: Explicitly mark task as running after wakeup (Gustavo Duarte) [1423397]
-- [kernel] sched/core: Fix an SMP ordering race in try_to_wake_up() vs. schedule() (Gustavo Duarte) [1423400]
-- [kernel] sched/fair: Fix nohz.next_balance update (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Improve load balancing in the presence of idle CPUs (Lauro Ramos Venancio) [1420450]
-- [kernel] sched/fair: Fix stale overloaded status in the busiest group finding logic (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Improve sysbench performance by fixing spurious active migration (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Assign correct scheduling domain to 'sd_llc' (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Avoid NULL dereference on sd_busy (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Remove unnecessary iteration over sched domains to update nr_busy_cpus (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Pass 'struct rq' to rebalance_domains() (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Pass 'struct rq' to nohz_idle_balance() (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Use this_rq() helper (Lauro Ramos Venancio) [1420450]
-- [kernel] sched: Fix potential near-infinite distribute_cfs_runtime() loop (Lauro Ramos Venancio) [1399391]
-- [kernel] percpu-refcount: fix reference leak during percpu-atomic transition (Jeff Moyer) [1418333]
-- [kernel] prctl: take mmap sem for writing to protect against others (Mateusz Guzik) [1374860]
-- [fs] proc: read mm's {arg, env}_{start, end} with mmap semaphore taken (Mateusz Guzik) [1374860]
-- [fs] vfs: fix put_compat_statfs64() does not handle errors (Larry Woodman) [1366543]
-- [mm] hugetlb: don't use reserved during VM_SHARED mapping cow (Larry Woodman) [1385473]
-- [mm] filemap: optimize copy_page_to/from_iter_iovec (Mikulas Patocka) [1362715]
-- [mm] vma_merge: correct false positive from __vma_unlink->validate_mm_rb (Andrea Arcangeli) [1374548]
-- [mm] vma_merge: fix race vm_page_prot race condition against rmap_walk (Andrea Arcangeli) [1374548]
-- [mm] fix use-after-free if memory allocation failed in vma_adjust() (Andrea Arcangeli) [1374548]
-- [mm] thp: really limit transparent hugepage allocation to local node (Aaron Tomlin) [1425895]
-- [mm] mempolicy.c: merge alloc_hugepage_vma to alloc_pages_vma (Aaron Tomlin) [1425895]
-- [mm] thp: allocate transparent hugepages on local node (Aaron Tomlin) [1425895]
-- [mm] mempolicy: unexport get_vma_policy() and remove its "task" arg (Aaron Tomlin) [1425895]
-- [mm] mempolicy: kill do_set_mempolicy()->down_write(&mm->mmap_sem) (Aaron Tomlin) [1425895]
-- [mm] mempolicy: fix show_numa_map() vs exec() + do_set_mempolicy() race (Aaron Tomlin) [1425895]
-- [mm] mempolicy: introduce __get_vma_policy(), export get_task_policy() (Aaron Tomlin) [1425895]
-- [mm] mempolicy: remove the "task" arg of vma_policy_mof() and simplify it (Aaron Tomlin) [1425895]
-- [mm] mempolicy: sanitize the usage of get_task_policy() (Aaron Tomlin) [1425895]
-- [mm] mempolicy: change get_task_policy() to return default_policy rather than NULL (Aaron Tomlin) [1425895]
-- [mm] mempolicy: change alloc_pages_vma() to use mpol_cond_put() (Aaron Tomlin) [1425895]
-- [mm] proc/maps: make vm_is_stack() logic namespace-friendly (Aaron Tomlin) [1425895]
-- [fs] proc/maps: replace proc_maps_private->pid with "struct inode *inode" (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: update m->version in the main loop in m_start() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: reintroduce m->version logic (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: introduce m_next_vma() helper (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: simplify m_start() to make it readable (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: kill the suboptimal and confusing m->version logic (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: shift "priv->task = NULL" from m_start() to m_stop() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: cleanup the "tail_vma" horror in m_next() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: simplify the vma_stop() logic (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: shift mm_access() from m_start() to proc_maps_open() (Aaron Tomlin) [1425895]
-- [fs] proc: introduce proc_mem_open() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: unify/simplify do_maps_open() and numa_maps_open() (Aaron Tomlin) [1425895]
-- [fs] proc/task_mmu.c: don't use task->mm in m_start() and show_*map() (Aaron Tomlin) [1425895]
-- [mm] mempolicy.c: parameter doc uniformization (Aaron Tomlin) [1425895]
-- [mm] mempolicy: return NULL if node is NUMA_NO_NODE in get_task_policy (Aaron Tomlin) [1425895]
-
-* Thu Mar 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-584.el7]
-- [hv] make CPU offlining prevention fine-grained (Vitaly Kuznetsov) [1396335]
-- [hv] switch to cpuhp state machine for synic init/cleanup (Vitaly Kuznetsov) [1396335]
-- [hv] don't reset hv_context.tsc_page on crash (Vitaly Kuznetsov) [1396335]
-- [hv] init percpu_list in hv_synic_alloc() (Vitaly Kuznetsov) [1396335]
-- [hv] allocate synic pages for all present CPUs (Vitaly Kuznetsov) [1396335]
-- [hv] change clockevents unbind tactics (Vitaly Kuznetsov) [1396335]
-- [x86] Make sure IDT is page aligned (Lenny Szubowicz) [1422235]
-- [drm] virtio-gpu: disable VIRGL with BE kernel (Laurent Vivier) [1413817]
-- [s390] topology/sysfs: provide drawer id and siblings attributes (Hendrik Brueckner) [1380774]
-- [s390] topology: add drawer scheduling domain level (Hendrik Brueckner) [1380774]
-- [scsi] cxgb4i: libcxgbi: cxgb4: add T6 iSCSI completion feature (Sai Vemuri) [1417523]
-- [scsi] cxgb4i: libcxgbi: add active open cmd for T6 adapters (Sai Vemuri) [1417523]
-- [scsi] cxgb4i: use cxgb4_tp_smt_idx() to get smt_idx (Sai Vemuri) [1417523]
-- [block] mtip32xx: set error code on failure (David Milburn) [1384915 1385883]
-- [block] mtip32xx: Improvement in code readability when memdup_user() fails (David Milburn) [1384915 1385883]
-- [block] mtip32xx: mark symbols static where possible (David Milburn) [1384915 1385883]
-- [block] mtip32xx: fix checks for dma mapping errors (David Milburn) [1384915 1385883]
-- [iommu] vt-d: Don't over-free page table directories (Myron Stowe) [1418404]
-- [netdrv] be2net: Increase skb headroom size to 256 bytes (Ivan Vecera) [1379825]
-- [powerpc] eeh: Null check uses of eeh_pe_bus_get (Steve Best) [1427224]
-- [powerpc] pseries: Use H_CLEAR_HPT to clear MMU hash table during kexec (Steve Best) [1423396]
-- [security] don't crash when selinux is disabled (Miklos Szeredi) [1425499]
-- [security] selinux: fix off-by-one in setprocattr (Paul Moore) [1422369] {CVE-2017-2618}
-
-* Thu Mar 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-583.el7]
-- [netdrv] bnxt_en: Fix bnxt_setup_tc() error message (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Print FEC settings as part of the linkup dmesg (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Do not setup PHY unless driving a single PF (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Allow NETIF_F_NTUPLE to be enabled on VFs (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Retry failed NVM_INSTALL_UPDATE with defragmentation flag (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update to firmware interface spec 1.7.0 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: remove useless memset's in drivers get_stats64 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix RTNL lock usage on bnxt_get_port_module_status() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix RTNL lock usage on bnxt_update_link() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix bnxt_reset() in the slow path task (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix "uninitialized variable" bug in TPA code path (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add the ulp_sriov_cfg hooks for bnxt_re RDMA driver (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add support for ethtool -p (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update to firmware interface spec to 1.6.1 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Clear TPA flags when BNXT_FLAG_NO_AGG_RINGS is set (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix compiler warnings when CONFIG_RFS_ACCEL is not defined (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Handle no aggregation ring gracefully (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Set default completion ring for async events (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Implement new scheme to reserve tx rings (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Assign additional vnics to VFs (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add new hardware RFS mode (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Refactor code that determines RFS capability (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add function to get vnic capability (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Refactor TPA code path (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix and clarify link_info->advertising (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Improve the IRQ disable sequence during shutdown (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Remove busy poll logic in the driver (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add interface to support RDMA driver (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Refactor the driver registration function with firmware (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Reserve RDMA resources by default (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Improve completion ring allocation for VFs (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Move function reset to bnxt_init_one() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Enable MSIX early in bnxt_init_one() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add bnxt_set_max_func_irqs() (Jonathan Toppins) [1382378]
-- [netdrv] broadcom: propagate error code (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add PFC statistics (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Implement DCBNL to support host-based DCBX (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update firmware header file to latest 1.6.0 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Re-factor bnxt_setup_tc() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: do not busy-poll when link is down (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix a VXLAN vs GENEVE issue (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: add a missing rcu synchronization (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add ethtool -n|-N rx-flow-hash support (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add UDP RSS support for 57X1X chips (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Enhance autoneg support (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update firmware interface spec to 1.5.4 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix VF virtual link state (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix ring arithmetic in bnxt_setup_tc() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: do not call napi_hash_add() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix build error for kernesl without RTC-LIB (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fixed the VF link status after a link state change (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Support for "ethtool -r" command (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Pad TX packets below 52 bytes (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Call firmware to approve the random VF MAC address (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Re-arrange bnxt_hwrm_func_qcaps() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix ethtool -l|-L inconsistent channel counts (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Added support for Secure Firmware Update (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update to firmware interface spec 1.5.1 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Simplify PCI device names and add additinal PCI IDs (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Use RSS flags defined in the bnxt_hsi.h file (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Fix TX push operation on ARM64 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Log a message, if enabling NTUPLE filtering fails (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Improve ntuple filters by checking destination MAC address (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Remove locking around txr->dev_state (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add BCM58700 PCI device ID for NS2 Nitro (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Workaround Nitro A0 RX hardware bug (part 4) (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Workaround Nitro A0 hardware RX bug (part 3) (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Workaround Nitro A0 hardware RX bug (part 2) (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Workaround Nitro A0 hardware RX bug (part 1) (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add basic support for Nitro in North Star 2 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: initialize rc to zero to avoid returning garbage (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: fix a condition (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Allow statistics DMA to be configurable using ethtool -C (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Assign netdev->dev_port with port ID (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Allow promiscuous mode for VF if default VLAN is enabled (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Increase maximum supported MTU to 9500 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Enable MRU enables bit when configuring VNIC MRU (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add support for firmware updates for additional processors (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Request firmware reset after successful firwmare update (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add support for updating flash more securely (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Do function reset on the 1st PF open only (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Update firmware spec. to 1.3.0 (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: VF/NPAR should return -EOPNOTSUPP for unsupported ethtool ops (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: Move GENEVE support from hard-coded port to using port notifier (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: Update drivers to support unified UDP encapsulation offload functions (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Support new ETHTOOL_{G|S}LINKSETTINGS API (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Don't allow autoneg on cards that don't support it (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Handle VF_CFG_CHANGE event from firmware (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add new function bnxt_reset() (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Add function for VF driver to query default VLAN (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Simplify VLAN receive logic (Jonathan Toppins) [1382378]
-- [netdrv] bnxt_en: Enable and disable RX CTAG and RX STAG VLAN acceleration together (Jonathan Toppins) [1382378]
-- [netdrv] bnxt: Add support for segmentation of tunnels with outer checksums (Jonathan Toppins) [1382378]
-
-* Thu Mar 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-582.el7]
-- [acpi] tools/power/acpi: Update Intel copyright (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Remove direct kernel source include reference (Prarit Bhargava) [1425180]
-- [acpi] acpica: macosx: Fix wrong sem_destroy definition (Prarit Bhargava) [1425180]
-- [acpi] acpica: macosx: Fix anonymous semaphore implementation (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: fix typo in printk in ec help message (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup for all string-to-integer conversions (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib: Eliminate acpi_os_XXXFile()/acpi_log_error and link clibrary fxxx()/errno/perror() instead (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib: Add -nostdinc support for EFI layer (Prarit Bhargava) [1425180]
-- [acpi] acpica: msvc9: Fix <sys/stat.h> inclusion order issue (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib: Fix wrong mini C library usage (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib/efi: Fix wrong order of standard integer types/IO handles (Prarit Bhargava) [1425180]
-- [acpi] acpica: clib: Fix build issues when ACPI_USE_STANDARD_HEADERS is not defined by converting size_t to acpi_size (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Fix a duplicate variable definition (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Add correct acpi_gbl_debug_timeout export to allow acpiexec to link (Prarit Bhargava) [1425180]
-- [acpi] acpica: iasl/disassembler: Add a check for missing filename (Prarit Bhargava) [1425180]
-- [acpi] tools/acpi: use CROSS_COMPILE to define prefix (Prarit Bhargava) [1425180]
-- [acpi] acpica: Move all ASCII utilities to a common file (Prarit Bhargava) [1425180]
-- [acpi] acpica: divergence: remove unwanted spaces for typedef (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: close file only if it is open (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Update for strtoul64 merger (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add support for QNX 6.6 platform (Prarit Bhargava) [1425180]
-- [acpi] acpica: getopt: Comment update, no functional change (Prarit Bhargava) [1425180]
-- [acpi] acpica: core: Major update for code formatting, no functional changes (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Add userspace AML interface support (Prarit Bhargava) [1425180]
-- [acpi] acpica: iasl: General cleanup of the file suffix #defines (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Enable build for EC userspace tool (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Add descend support in ACPI tools Makefile (Prarit Bhargava) [1425180]
-- [acpi] acpica: De-macroize calls to standard C library functions (Prarit Bhargava) [1425180]
-- [acpi] acpi / acpidump: Update acpidump manual (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Convert the default behavior to dump from /sys/firmware/acpi/tables (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Allow customized tables to be dumped without accessing /dev/mem (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add dragon_fly support to unix file mapping file (Prarit Bhargava) [1425180]
-- [acpi] acpica: Fix a sscanf format string (Prarit Bhargava) [1425180]
-- [acpi] acpica: unix: Cleanup to use ACPI_TO_INTEGER() to calc page offset (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpiexec: Do not put STDIN into raw mode unless it is a terminal (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add ACPI 1.0 RSDP support (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpihelp: Add UUID support, restructure some existing files (Prarit Bhargava) [1425180]
-- [acpi] acpica: utprint/oslibcfs: cleanup - no functional change (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Update acpidump to reduce source code differences (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Introduce acpi_log_error() to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Reduce freopen() invocations to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Replace file IOs with new APIs to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Remove exit() from generic layer to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add memory/string OSL usage to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: common: Enhance acpi_getopt() to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: common: Enhance cm_get_file_size() to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: application: Enhance ACPI_USAGE_xxx/ACPI_OPTION with acpi_os_printf() to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Add formatted printing APIs (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Add portable file IO to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Clean up acpi_os_printf()/acpi_os_vprintf() stubs (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Cleanup DEFINE_ACPI_GLOBALS by moving acpi_ut_init_global() from utglobal.c to utinit.c (Prarit Bhargava) [1425180]
-- [acpi] acpica: osl: Update environments to improve portability (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add support for ACPI 1.0 GUID in Linux (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Fix repetitive table dump in -n mode (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Add new mechanism to skip NULL entries in RSDT and XSDT (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add support to force using RSDT (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Fix truncated RSDP signature validation (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Fix code issue in invoking fread in the loop (Prarit Bhargava) [1425180]
-- [acpi] acpi / tools: Introduce ec_access.c - tool to access the EC (Prarit Bhargava) [1425180]
-- [acpi] tools/power/acpi: Minor bugfixes (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Update man page (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Remove old acpidump source (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Update Makefile to build acpidump from ACPICA (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Cleanup tools/power/acpi makefiles (Prarit Bhargava) [1425180]
-- [acpi] acpica: Remove bool usage from ACPICA (Prarit Bhargava) [1425180]
-- [acpi] Fix x86 regression related to early mapping size limitation (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Add mechanism to control early table checksum verification (Prarit Bhargava) [1425180]
-- [acpi] acpica: Fix buffer allocation issue for generic_serial_bus region accesses (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add support to generate acpidump release (Prarit Bhargava) [1425180]
-- [acpi] acpica: table manager: Split tbinstal.c into two files (Prarit Bhargava) [1425180]
-- [acpi] acpica: table manager: Misc cleanup and renames, no functional change (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Add acpi_install_table() API for early table installation (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Avoid SSDT installation with acpi_gbl_disable_ssdt_table_load (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Cleanup ACPI_TABLE_ORIGIN_xxx flags (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Fix table checksums verification before installation (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Fix unbalanced table validations (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Clean up split INSTALLED/VALIDATED table state logics (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Fix multiple ACPI_FREE()s around acpi_tb_add_table() (Prarit Bhargava) [1425180]
-- [acpi] acpica: tables: Fix the issues in handling virtual addressed tables (Prarit Bhargava) [1425180]
-- [acpi] acpica: Remove indent divergences to reduce maintenance overhead (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add a missing field for debug dump of mutex objects (Prarit Bhargava) [1425180]
-- [acpi] acpica: Update use of acpi_os_wait_events_complete interface (Prarit Bhargava) [1425180]
-- [acpi] acpica: disassembler: Add decoding of Notify() values (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Update new structures and add missing file (Prarit Bhargava) [1425180]
-- [acpi] acpica: disassembler: Add support to decode _HID and _CID values (Prarit Bhargava) [1425180]
-- [acpi] acpica: unload operator: Emit a warning if and when it is ever used (Prarit Bhargava) [1425180]
-- [acpi] acpica: Update comments for ACPICA name - no functional change (Prarit Bhargava) [1425180]
-- [acpi] acpica: utstring: Check array index bound before use (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Remove integer types translation protection (Prarit Bhargava) [1425180]
-- [acpi] acpica: acpidump: Add sparse declarators support (Prarit Bhargava) [1425180]
-- [acpi] acpica: utilities: Cleanup declarations of the acpi_gbl_debug_file global (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup the option of forcing the use of the RSDT (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup asmlinkage for ACPICA APIs (Prarit Bhargava) [1425180]
-- [acpi] acpica: Update acpidump related header file changes (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup exception codes (Prarit Bhargava) [1425180]
-- [acpi] Export acpi_os_get*() functions (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add new statistics interface (Prarit Bhargava) [1425180]
-- [acpi] acpica: Add EXPORT_ACPI_INTERFACES macro to external interface modules (Prarit Bhargava) [1425180]
-- [acpi] acpica: Cleanup memory allocation macros and configurability (Prarit Bhargava) [1425180]
-- [acpi] acpica: tablemanager: Export acpi_tb_scan_memory_for_rsdp() (Prarit Bhargava) [1425180]
-- [acpi] acpica: Export acpi_tb_validate_rsdp() (Prarit Bhargava) [1425180]
-
-* Wed Mar 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-581.el7]
-- [x86] kvm: vmx: use correct vmcs_read/write for guest segment selector/base (Radim Krcmar) [1420755]
-- [x86] kvm: x86: do not save guest-unsupported XSAVE state (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix emulation of "MOV SS, null selector" (Radim Krcmar) [1420755] {CVE-2017-2583}
-- [x86] kvm: x86: flush pending lapic jump label updates on module unload (Radim Krcmar) [1420755]
-- [kernel] jump_labels: API for flushing deferred jump label updates (Radim Krcmar) [1420755]
-- [x86] kvm: x86: reset MMU on KVM_SET_VCPU_EVENTS (Radim Krcmar) [1420755]
-- [x86] kvm: x86: check for pic and ioapic presence before use (Radim Krcmar) [1420755]
-- [x86] kvm: x86: drop error recovery in em_jmp_far and em_ret_far (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix out-of-bounds access in lapic (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix missed SRCU usage in kvm_lapic_set_vapic_addr (Radim Krcmar) [1420755]
-- [x86] kvm: Disable irq while unregistering user notifier (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: VMCLEAR an active shadow VMCS after last use (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix wbinvd_dirty_mask use-after-free (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: Fix kernel panics induced by illegal INVEPT/INVVPID types (Radim Krcmar) [1420755]
-- [x86] kvm: x86: memset whole irq_eoi (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: Fix the NMI IDT-vectoring handling (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: postpone VMCS changes on MSR_IA32_APICBASE write (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: fix msr bitmaps to prevent L2 from accessing L0 x2APIC (Radim Krcmar) [1420755]
-- [x86] kvm: x86: nvmx: maintain internal copy of current VMCS (Radim Krcmar) [1420755]
-- [x86] kvm: vmx: handle PML full VMEXIT that occurs during event delivery (Radim Krcmar) [1420755]
-- [virt] kvm: nvmx: Fix memory corruption when using VMCS shadowing (Radim Krcmar) [1420755]
-- [virt] kvm: vmx: ensure VMCS is current while enabling PML (Radim Krcmar) [1420755]
-- [virt] kvm: nvmx: vmx instructions: fix segment checks when L1 is in long mode (Radim Krcmar) [1420755]
-- [virt] kvm: Fix irq route entries exceeding KVM_MAX_IRQ_ROUTES (Radim Krcmar) [1420755]
-- [x86] svm: bitwise vs logical op typo (Radim Krcmar) [1420755]
-- [virt] kvm: cap halt polling at exactly halt_poll_ns (Radim Krcmar) [1420755]
-- [virt] kvm: async_pf: do not warn on page allocation failures (Radim Krcmar) [1420755]
-- [x86] kvm: x86: fix conversion of addresses to linear in 32-bit protected mode (Radim Krcmar) [1420755]
-- [x86] kvm: x86: only channel 0 of the i8254 is linked to the HPET (Radim Krcmar) [1420755]
-- [x86] kvm: vmx: fix the writing POSTED_INTR_NV (Radim Krcmar) [1420755]
-- [x86] kvm: x86: correctly print #AC in traces (Radim Krcmar) [1420755]
-- [kernel] static_key: WARN on usage before jump_label_init was called (Radim Krcmar) [1420755]
-- [x86] kvm: nvmx: check host CR3 on vmentry and vmexit (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: introduce nested_vmx_load_cr3 and call it on vmentry (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: propagate errors from prepare_vmcs02 (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: fix CR3 load if L2 uses PAE paging and EPT (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: support descriptor table exits (Ladi Prosek) [1326138]
-- [x86] kvm: nvmx: invvpid handling improvements (Ladi Prosek) [1326138]
-- [x86] kvm: vmx: clean up declaration of VPID/EPT invalidation types (Ladi Prosek) [1326138]
-- [x86] nvmx: mark ept single context invalidation as supported (Ladi Prosek) [1326138]
-- [x86] kvm: x86: drop TSC offsetting kvm_x86_ops to fix KVM_GET/SET_CLOCK (Marcelo Tosatti) [1415766]
-- [x86] kvm: x86: do not go through vcpu in __get_kvmclock_ns (Marcelo Tosatti) [1415766]
-- [uapi] kvm: kvmclock: let KVM_GET_CLOCK return whether the master clock is in use (Marcelo Tosatti) [1415766]
-- [x86] kvm: x86: introduce get_kvmclock_ns (Marcelo Tosatti) [1415766]
-- [x86] kvm: x86: initialize kvmclock_offset (Marcelo Tosatti) [1415766]
-- [x86] pvclock: introduce seqcount-like API (Marcelo Tosatti) [1415766]
-- [x86] pvclock: Get rid of __pvclock_read_cycles in function pvclock_read_flags (Marcelo Tosatti) [1415766]
-- [x86] pvclock: Cleanup to remove function pvclock_get_nsec_offset (Marcelo Tosatti) [1415766]
-
-* Wed Mar 01 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-580.el7]
-- [crypto] ccp - Fix double add when creating new DMA command (Suravee Suthikulpanit) [1390820 1420977]
-- [crypto] ccp - Fix DMA operations when IOMMU is enabled (Suravee Suthikulpanit) [1390820 1420977]
-- [crypto] ccp: Do not support CCP crypto API in RHEL7 (Suravee Suthikulpanit) [1390820]
-- [dma] dmaengine: Make channel allocation callbacks optional (Suravee Suthikulpanit) [1390820]
-- [dma] dmaengine: Rework dma_chan_get (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix handling of RSA exponent on a v5 device (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Clean up the LSB slot allocation code (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - remove unneeded code (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - change bitfield type to unsigned ints (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix non static symbol warning (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - change type of struct member lsb to signed (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Make syslog errors human-readable (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - clean up data structure (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix return value check in ccp_dmaengine_register() (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - use kmem_cache_zalloc instead of kmem_cache_alloc/memset (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - add missing release in ccp_dmaengine_register (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix non static symbol warning (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Enable use of the additional CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Enable DMA service on a v5 CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Add support for the RNG in a version 5 CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Let a v5 CCP provide the same function as v3 (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Refactor code to enable checks for queue space (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Refactor code supporting the CCP's RNG (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Refactor the storage block allocation code (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - refactoring: symbol cleanup (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Shorten the fields of the action structure (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Abstract PCI info for the CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix non-conforming comment style (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - constify ccp_actions structure (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Ensure all dependencies are specified (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Register the CCP as a DMA resource (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix RT breaking #include <linux/rwlock_types.h> (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - fix lock acquisition code (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Add abstraction for device-specific calls (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - CCP versioning support (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Support for multiple CCPs (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Remove check for x86 family and model (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - use to_pci_dev and to_platform_device (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Use precalculated hash from headers (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Use module name in driver structures (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Change references to accelerator to offload (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Replace BUG_ON with WARN_ON and a return code (Suravee Suthikulpanit) [1390820]
-- [crypto] drivers - Fix Kconfig selects (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Protect against poorly marked end of sg list (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Remove unused structure field (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Convert calls to their devm_ counterparts (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Update CCP build support (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Updates for checkpatch warnings/errors (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - terminate ccp_support array with empty element (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Check for CCP before registering crypto algs (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Do not sign extend input data to CCP (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Remove "select OF" from Kconfig (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Base AXI DMA cache settings on device tree (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Modify PCI support in prep for arm64 support (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Use pci_enable_msix_range() instead of pci_enable_msix() (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Perform completion callbacks using a tasklet (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Move HMAC calculation down to ccp ops file (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Fix ccp_run_passthru_cmd dma variable assignments (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - CCP device enabled/disabled changes (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Change data length declarations to u64 (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - Remove redundant dev_set_drvdata (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - CCP Kconfig fixes (Suravee Suthikulpanit) [1390820]
-- [crypto] crytpo: ccp - fix coccinelle warnings (Suravee Suthikulpanit) [1390820]
-- [crypto] crytpo: ccp - CCP device driver build files (Suravee Suthikulpanit) [1390820]
-- [crypto] ccp - CCP device driver and interface support (Suravee Suthikulpanit) [1390820]
-- [acpi] revert "acpi / apd: Remove CLK_IS_ROOT" (Suravee Suthikulpanit) [1422966]
-- [tty] serial: 8250dw: Add device HID for future AMD UART controller (Suravee Suthikulpanit) [1422966]
-
-* Tue Feb 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-579.el7]
-- [fs] red hat kabi: Added flag signifying the use of file_operations_extend structure (Steve Dickson) [1356123]
-- [fs] red hat kabi: Remove the file operations that cause the kABI breakage (Steve Dickson) [1356123]
-- [fs] red hat kabi: Add new system call to nfs in a kABI compatible way (Steve Dickson) [1356123]
-- [fs] red hat kabi: introduce new calls to file_operations_extend (Steve Dickson) [1356123]
-- [fs] red hat kabi: Use #ifndef __GENKSYMS__ to maintain kAPI (Steve Dickson) [1356123]
-- [fs] try to clone files first in vfs_copy_file_range (Steve Dickson) [1356123]
-- [fs] nfs: Add COPY nfs operation (Steve Dickson) [1356123]
-- [fs] nfs: Add nfs_commit_file() (Steve Dickson) [1356123]
-- [fs] vfs: pull btrfs clone API to vfs layer (Steve Dickson) [1356123]
-- [fs] locks: new locks_mandatory_area calling convention (Steve Dickson) [1356123]
-- [fs] locks: make locks_mandatory_area check for file-private locks (Steve Dickson) [1356123]
-- [fs] vfs: Add vfs_copy_file_range() support for pagecache copies (Steve Dickson) [1356123]
-- [fs] powerpc: Wire up copy_file_range() syscall (Steve Dickson) [1356123]
-- [fs] s390: wire up copy_file_range syscall (Steve Dickson) [1356123]
-- [fs] x86: add sys_copy_file_range to syscall tables (Steve Dickson) [1356122 1356123]
-- [fs] vfs: add copy_file_range syscall and vfs helper (Steve Dickson) [1356123]
-- [fs] sunrpc: don't call sleeping functions from the notifier block callbacks (Scott Mayhew) [1422910]
-- [fs] lockd: unregister notifier blocks if the service fails to come up completely (Scott Mayhew) [1422910]
-- [fs] lockd: Register callbacks on the inetaddr_chain and inet6addr_chain (Scott Mayhew) [1422910]
-- [fs] nfsd: Implement the COPY call (Steve Dickson) [1356122]
-- [fs] nfsd: implement the NFSv4.2 CLONE operation (Steve Dickson) [1356122]
-- [fs] nfs: Don't take a reference on fl->fl_file for LOCK operation (Benjamin Coddington) [1386924]
-- [fs] gfs2: mark the journal idle to fix ro mounts (Robert S Peterson) [1213119]
-- [fs] auth_gss: fix panic in gss_pipe_downcall() in fips mode (Dave Wysochanski) [1316251]
-- [fs] fuse: add support for SEEK_HOLE and SEEK_DATA in lseek (Carlos Maiolino) [1306396]
-- [fs] ext4: Fix handling of extended tv_sec (Carlos Maiolino) [1278465]
-
-* Tue Feb 28 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-578.el7]
-- [net] fix creation adjacent device symlinks (Adrian Reber) [1412898]
-- [net] prevent of emerging cross-namespace symlinks (Adrian Reber) [1412898]
-- [netdrv] macvlan: unregister net device when netdev_upper_dev_link() fails (Adrian Reber) [1412898]
-- [net] netfilter: nft_range: add the missing NULL pointer check (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: simplify the basic expressions' init routine (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: avoid uninitialized variable warning (Phil Sutter) [1418969]
-- [net] netfilter: nft_range: validate operation netlink attribute (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: add range expression (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: remove useless U8_MAX validation (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: fix type mismatch with error return from nft_parse_u32_check (Phil Sutter) [1418969]
-- [net] netfilter: nft_exthdr: fix error handling in nft_exthdr_init() (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: underflow in nft_parse_u32_check() (Phil Sutter) [1418969]
-- [net] netfilter: nf_tables: validate maximum value of u32 netlink attributes (Phil Sutter) [1418969]
-- [net] netfilter: nft_exthdr: Add size check on u8 nft_exthdr attributes (Phil Sutter) [1418969]
-- [net] ipv6: Don't use ufo handling on later transformed packets (Jakub Sitnicki) [1388846]
-- [net] vxlan: fix oops in dev_fill_metadata_dst (Paolo Abeni) [1423068]
-- [net] ip_forward: Drop frames with attached skb->sk (Florian Westphal) [1421006]
-- [net] ipv4: ip_forward: perform skb->pkt_type check at the beginning (Florian Westphal) [1421006]
-- [lib] rhashtable-test: Get rid of previous workaround (Phil Sutter) [1393817]
-- [lib] rhashtable-test: Fix max_size parameter description (Phil Sutter) [1393817]
-- [lib] rhashtable-test: allow to retry even if -ENOMEM was returned (Phil Sutter) [1393817]
-- [lib] rhashtable-test: retry insert operations (Phil Sutter) [1393817]
-- [lib] rhashtable-test: add cond_resched() to thread test (Phil Sutter) [1393817]
-- [lib] rhashtable: Add rhlist interface (Phil Sutter) [1393817]
-- [lib] rhashtable: fix a memory leak in alloc_bucket_locks() (Phil Sutter) [1393817]
-- [lib] rhashtable: add rhashtable_lookup_get_insert_key() (Phil Sutter) [1393817]
-- [lib] rhashtable: Remove GFP flag from rhashtable_walk_init (Phil Sutter) [1393817]
-- [lib] rhashtable: fix shift by 64 when shrinking (Phil Sutter) [1393817]
-- [lib] rhashtable: avoid large lock-array allocations (Phil Sutter) [1393817]
-- [lib] rhashtable: accept GFP flags in rhashtable_walk_init (Phil Sutter) [1393817]
-- [net] netfilter: built-in NAT support for UDPlite (Davide Caratti) [1357840]
-- [net] netfilter: built-in NAT support for SCTP (Davide Caratti) [1357840]
-- [net] netfilter: built-in NAT support for DCCP (Davide Caratti) [1357840]
-- [net] netfilter: conntrack: built-in support for UDPlite (Davide Caratti) [1387537]
-- [net] netfilter: conntrack: built-in support for SCTP (Davide Caratti) [1387537]
-- [net] netfilter: conntrack: built-in support for DCCP (Davide Caratti) [1387537]
-- [net] netfilter: conntrack: simplify init/uninit of L4 protocol trackers (Davide Caratti) [1387537]
-- [net] igmp, mld: Fix memory leak in igmpv3/mld_del_delrec() (Hangbin Liu) [1420972]
-- [net] mld: do not remove mld souce list info when set link down (Hangbin Liu) [1383584]
-- [net] openvswitch: maintain correct checksum state in conntrack actions (Lance Richardson) [1409558]
-
-* Mon Feb 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-577.el7]
-- [net] introduce net_device_extended (Jiri Benc) [1382040]
-- [net] bonding: update documentation section after dev->trans_start removal (Ivan Vecera) [1382040]
-- [net] deprecate dev->trans_start (Ivan Vecera) [1382040]
-- [netdrv] replace dev->trans_start update with helper (Ivan Vecera) [1382040]
-- [net] netdevice: add helper to update trans_start (Ivan Vecera) [1382040]
-- [netdrv] replace dev->trans_start accesses with dev_trans_start (Ivan Vecera) [1382040]
-- [net] sched: make dev_trans_start return vlan's real dev trans_start (Ivan Vecera) [1382040]
-- [net] ptp: Introduce a high resolution frequency adjustment method (Ivan Vecera) [1382040]
-- [net] ipip: Properly mark ipip GRO packets as encapsulated (Ivan Vecera) [1382040]
-- [net] introduce csum_replace_by_diff() helper (Ivan Vecera) [1382040]
-- [net] ipv6: gro: support sit protocol (Ivan Vecera) [1382040]
-- [net] skb_segment() should preserve backpressure (Ivan Vecera) [1382040]
-- [net] skb_segment() provides list head and tail (Ivan Vecera) [1382040]
-- [net] ipip: Add gro callbacks to ipip offload (Ivan Vecera) [1382040]
-- [kernel] list: fix order of arguments for hlist_add_after(_rcu) (Ivan Vecera) [1382040]
-- [kernel] list: make hlist_add_after() argument names match hlist_add_after_rcu() (Ivan Vecera) [1382040]
-- [net] rtnl: stats - add missing netlink message size checks (Ivan Vecera) [1382040]
-- [net] rtnl: info leak in rtnl_fill_vfinfo() (Ivan Vecera) [1382040]
-- [net] rtnl: avoid uninitialized data in IFLA_VF_VLAN_LIST handling (Ivan Vecera) [1382040]
-- [net] Update API for VF vlan protocol 802.1ad support (Ivan Vecera) [1382040]
-- [net] introduce default neigh_construct/destroy ndo calls for L2 upper devices (Ivan Vecera) [1382040]
-- [net] add dev arg to ndo_neigh_construct/destroy (Ivan Vecera) [1382040]
-- [net] add netdev_lockdep_set_classes() helper (Ivan Vecera) [1382040]
-- [documentation] taskstats: fix nl parsing in accounting/getdelays.c (Ivan Vecera) [1382040]
-- [net] neigh: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [net] rtnl: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [net] openvswitch: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [net] sock_diag: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [fs] quota: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] macsec: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] wireless: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] ieee802154: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] l2tp: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] bridge: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] openvswitch: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] sched: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [net] rtnl: use nla_put_u64_64bit() (Ivan Vecera) [1382040]
-- [kernel] taskstats: use the libnl API to align nlattr on 64-bit (Ivan Vecera) [1382040]
-- [net] xfrm: align nlattr properly when needed (Ivan Vecera) [1382040]
-- [net] libnl: add nla_put_u64_64bit() helper (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_msecs(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_s64(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_net64(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_be64(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: nla_put_le64(): align on a 64-bit area (Ivan Vecera) [1382040]
-- [net] libnl: fix help of _64bit functions (Ivan Vecera) [1382040]
-- [net] ip6mr: align RTA_MFC_STATS on 64-bit (Ivan Vecera) [1382040]
-- [net] ipmr: align RTA_MFC_STATS on 64-bit (Ivan Vecera) [1382040]
-- [net] rtnl: use the new API to align IFLA_STATS* (Ivan Vecera) [1382040]
-- [net] libnl: add more helpers to align attributes on 64-bit (Ivan Vecera) [1382040]
-- [net] nla_align_64bit() needs to test the right pointer. (Ivan Vecera) [1382040]
-- [net] rtnetlink: add new RTM_GETSTATS message to dump link stats (Ivan Vecera) [1382040]
-- [net] fix HAVE_EFFICIENT_UNALIGNED_ACCESS typos (Ivan Vecera) [1382040]
-- [net] Add helpers for 64-bit aligning netlink attributes. (Ivan Vecera) [1382040]
-- [net] Align IFLA_STATS64 attributes properly on architectures that need it. (Ivan Vecera) [1382040]
-- [net] rtnetlink: rtnl_fill_stats: avoid an unnecssary stats copy (Ivan Vecera) [1382040]
-- [net] sched: do not requeue a NULL skb (Ivan Vecera) [1382040]
-- [net] netlink: use nla_get_in_addr and nla_put_in_addr for ipv4 address (Ivan Vecera) [1382040]
-- [net] rtnetlink: fix frame size warning in rtnl_fill_ifinfo (Ivan Vecera) [1382040]
-- [net] netfilter: nfnetlink_cthelper: Remove 'const' and '&' to avoid warnings (Ivan Vecera) [1382040]
-- [net] qdisc: validate skb without holding lock (Ivan Vecera) [1382040]
-- [net] netlink: Fix shadow warning on jiffies (Ivan Vecera) [1382040]
-- [net] sch_tbf: Fix potential memory leak in tbf_change() (Ivan Vecera) [1382040]
-- [net] sch_netem: support of 64bit rates (Ivan Vecera) [1382040]
-- [net] sch_netem: more precise length of packets (Ivan Vecera) [1382040]
-- [net] sch_tbf: add TBF_BURST/TBF_PBURST attribute (Ivan Vecera) [1382040]
-- [net] sch_tbf: use do_div() for 64-bit divide (Ivan Vecera) [1382040]
-- [net] sched: tbf: fix the calculation of max_size (Ivan Vecera) [1382040]
-- [kernel] taskstats: add nla_nest_cancel() for failure processing between nla_nest_start() and nla_nest_end() (Ivan Vecera) [1382040]
-- [net] net_sched: tbf: support of 64bit rates (Ivan Vecera) [1382040]
-- [net] netevent/netlink.h: Remove extern from function prototypes (Ivan Vecera) [1382040]
-- [net] net_sched: htb: support of 64bit rates (Ivan Vecera) [1382040]
-- [net] net_sched: add u64 rate to psched_ratecfg_precompute() (Ivan Vecera) [1382040]
-- [net] ipv4: Update parameters for csum_tcpudp_magic to their original types (Ivan Vecera) [1382040]
-- [net] tcp: reserve tcp_skb_mss() to tcp stack (Ivan Vecera) [1382040]
-- [net] ipvs: properly declare tunnel encapsulation (Ivan Vecera) [1382040]
-- [net] sit: use kfree_skb to replace dev_kfree_skb (Ivan Vecera) [1382040]
-
-* Fri Feb 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-576.el7]
-- [netdrv] cxgb4/cxgb4vf: Allocate more queues for 25G and 100G adapter (Don Dutile) [1385866 1417284]
-- [netdrv] mlx5: E-Switch, Handle mode change failures (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Fix error flow in the SRIOV e-switch init code (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix flow counter bulk command out mailbox allocation (Don Dutile) [1385330 1417284]
-- [infiniband] ib/rdmavt: Don't vfree a kzalloc'ed memory region (Don Dutile) [1385848 1417284]
-- [infiniband] ib/rxe: Fix kmem_cache leak (Don Dutile) [1417284]
-- [infiniband] ib/rxe: Fix race condition between requester and completer (Don Dutile) [1417284]
-- [infiniband] ib/rxe: Fix duplicate atomic request handling (Don Dutile) [1417284]
-- [infiniband] ib/rxe: Fix kernel panic in udp_setup_tunnel (Don Dutile) [1417284]
-- [infiniband] ib/mlx5: Set source mac address in FTE (Don Dutile) [1417284]
-- [infiniband] ib/mlx5: Enable MAD_IFC commands for IB ports only (Don Dutile) [1417284]
-- [infiniband] ib/mlx4: Diagnostic HW counters are not supported in slave mode (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Use correct subnet-prefix in QP1 mads under SR-IOV (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix code indentation in QP1 MAD flow (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix incorrect MC join state bit-masking on SR-IOV (Don Dutile) [1385329 1417284]
-- [infiniband] ib/ipoib: Don't allow MC joins during light MC flush (Don Dutile) [1417284]
-- [infiniband] ib/rxe: fix GFP_KERNEL in spinlock context (Don Dutile) [1417284]
-- [netdrv] mlx4_en: fix off by one in error handling (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: Fix panic on xmit while port is down (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: Fixes for DCBX (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: Fix the return value of mlx4_en_dcbnl_set_state() (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: Fix the return value of mlx4_en_dcbnl_set_all() (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5e: Fix parsing of vlan packets when updating lro header (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix global PFC counters replication (Don Dutile) [1417284]
-- [netdrv] mlx5e: Prevent casting overflow (Don Dutile) [1417284]
-- [netdrv] mlx5e: Move an_disable_cap bit to a new position (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix xmit_more counter race issue (Don Dutile) [1417284]
-- [net] xprtrdma: Fix receive buffer accounting (Don Dutile) [1417284]
-- [net] xprtrdma: revert 3d4cf35bd4fa ("xprtrdma: Reply buffer exhaustion...") (Don Dutile) [1417284]
-- [infiniband] iw_cxgb4: block module unload until all ep resources are released (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: call dev_put() on l2t allocation failure (Don Dutile) [1385866 1417284]
-- [infiniband] ib/hfi1: Rework debugfs to use SRCU (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Make n_krcvqs be an unsigned long integer (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add QSFP sanity pre-check (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix AHG KDETH Intr shift (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix SGE length for misaligned PIO copy (Don Dutile) [1382806 1417284]
-- [infiniband] ib/mlx5: Don't return errors from poll_cq (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Use TIR number based on selector (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Simplify code by removing return variable (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Return EINVAL when caller specifies too many SGEs (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx4: Don't return errors from poll_cq (Don Dutile) [1417284]
-- [infiniband] revert "ib/mlx4: Return EAGAIN for any error in mlx4_ib_poll_one" (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Fix memory corruption in ipoib cm mode connect flow (Don Dutile) [1417284]
-- [infiniband] ib/core: Fix use after free in send_leave function (Don Dutile) [1417284]
-- [infiniband] ib/cxgb4: Make _free_qp static to silence build warning (Don Dutile) [1385866 1417284]
-- [infiniband] ib/isert: Properly release resources on DEVICE_REMOVAL (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Fix the size parameter to find_first_bit (Don Dutile) [1382806 1417284]
-- [infiniband] ib/mlx5: Fix the size parameter to find_first_bit (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Increase number of ethtool steering priorities (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Add error prints when validate ETS failed (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5e: Fix memory leak if refreshing TIRs fails (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add ethtool counter for TX xmit_more (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix ethtool -g/G rx ring parameter report with striding RQ (Don Dutile) [1417284]
-- [netdrv] mlx5e: Don't wait for SQ completions on close (Don Dutile) [1417284]
-- [netdrv] mlx5e: Don't post fragmented MPWQE when RQ is disabled (Don Dutile) [1417284]
-- [netdrv] mlx5e: Don't wait for RQ completions on close (Don Dutile) [1417284]
-- [netdrv] mlx5e: Limit UMR length to the device's limitation (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Clean up type used and casting (Don Dutile) [1382806 1417284]
-- [infiniband] ib/srpt: Update sport->port_guid with each port refresh (Don Dutile) [1417284]
-- [infiniband] ib/mlx5: Remove superfluous include of io-mapping.h (Don Dutile) [1385330 1417284]
-- [infiniband] i40iw: Do not set self-referencing pointer to NULL after kfree (Don Dutile) [1417284]
-- [infiniband] iw_cxgb4: Fix cxgb4 arm CQ logic w/IB_CQ_REPORT_MISSED_EVENTS (Don Dutile) [1385866 1417284]
-- [rdma] ib/core: Use memdup_user() rather than duplicating its implementation (Don Dutile) [1417284]
-- [infiniband] ib/qib: Use memdup_user() rather than duplicating its implementation (Don Dutile) [1381986 1417284]
-- [infiniband] iw_cxgb4: use the MPA initiator's IRD if < our ORD (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: limit IRD/ORD advertised to ULP by device max (Don Dutile) [1385866 1417284]
-- [infiniband] ib/rdmvat: Fix double vfree() in rvt_create_qp() error path (Don Dutile) [1385848 1417284]
-- [infiniband] ib/hfi1: Improve J_KEY generation (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Return invalid field for non-QSFP CableInfo queries (Don Dutile) [1382806 1417284]
-- [infiniband] ib/usnic: Fix error return code (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add missing error code assignment before test (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Using kfree_rcu() to simplify the code (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Validate header in set_armed_active (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Pass packet ptr to set_armed_active (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fetch monitor values on-demand for CableInfo query (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1, ib/qib: Fix qp_stats sleep with rcu read lock held (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Remove duplicated include from affinity.c (Don Dutile) [1382806 1417284]
-- [infiniband] ib/isert: fix error return code in isert_alloc_login_buf() (Don Dutile) [1417284]
-- [infiniband] ib/core: Fix possible memory leak in cma_resolve_iboe_route() (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Allocate cpu mask on the heap to silence warning (Don Dutile) [1382806 1417284]
-- [infiniband] ib/mlx4: Return EAGAIN for any error in mlx4_ib_poll_one (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Make function use_tunnel_data return void (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5: E-Switch, Avoid ACLs in the offloads mode (Don Dutile) [1417284]
-- [netdrv] mlx5: E-Switch, Set the send-to-vport rules in the correct table (Don Dutile) [1417284]
-- [netdrv] mlx5: E-Switch, Return the correct devlink e-switch mode (Don Dutile) [1417284]
-- [netdrv] mlx5e: Retrieve the switchdev id from the firmware only once (Don Dutile) [1417284]
-- [netdrv] mlx5: Update last-use statistics for flow rules (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Added missing check of msg length in verifying its signature (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix pci error recovery flow (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5e: Optimization for MTU change (Don Dutile) [1417284]
-- [netdrv] mlx5e: Set port MTU on netdev creation rather on open (Don Dutile) [1417284]
-- [netdrv] cxgb4: Fixes resource allocation for ULD's in kdump kernel (Don Dutile) [1385866 1417284]
-- [infiniband] Soft RoCE driver (Don Dutile) [1384574 1417284]
-- [infiniband] ib/uverbs: Fix race between uverbs_close and remove_one (Don Dutile) [1417284]
-- [infiniband] ib/mthca: Clean up error unwind flow in mthca_reset() (Don Dutile) [1417284]
-- [infiniband] ib/mthca: NULL arg to pci_dev_put is OK (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: NULL arg to sc_return_credits is OK (Don Dutile) [1382806 1417284]
-- [infiniband] Use smaller 512 byte messages for portmapper messages (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Report SG feature regardless of HW UD CSUM capability (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Don't use GFP_ATOMIC for CQ resize struct (Don Dutile) [1385329 1417284]
-- [infiniband] ib/hfi1: Expand reported serial number (Don Dutile) [1382806 1417284]
-- [uapi] ib/hfi1: Allow for non-double word multiple message sizes for user SDMA (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt: Eliminate redundant opcode test in mr ref clear (Don Dutile) [1385848 1417284]
-- [infiniband] ib/hfi1: Handle kzalloc failure in init_pervl_scs (Don Dutile) [1382806 1417284]
-- [infiniband] ib/qib, ib/hfi1: Fix grh creation in ud loopback (Don Dutile) [1381986 1417284]
-- [infiniband] ib/hfi1: Use hdr2sc function to calculate 5-bit SC (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Cleanup UD packet handler (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Rename hfi1_pio_header to hfi1_sdma_header (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Rename struct ahg_ib_header to struct hfi1_ahg_info (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Remove unused elements from struct ahg_ib_header (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Reset QSFP on every run through channel tuning (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Ignore QSFP interrupts until power stabilizes (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Disable external device configuration requests (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt, hfi1: Fix NFSoRDMA failure with FRMR enabled (Don Dutile) [1382806 1417284]
-- [rdma] ib/hfi1: Add the capability for reserved operations (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix trace message units (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add sysfs entry to override SDMA interrupt affinity (Don Dutile) [1382806 1417284]
-- [lib] cpumask: factor out show_cpumap into separate helper function (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add static PCIe Gen3 CTLE tuning (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix "suspicious rcu_dereference_check() usage" warnings (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Add missing spin_lock_init call for rdi->n_cqs_lock (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Read all firmware versions (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Explain state complete frame details (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Modify the default number of kernel receive conexts (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add support for extended memory management (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Work request processing for fast register mr and invalidate (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Handle send with invalidate opcode in the RC recv path (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt: Handle local operations in post send (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt: Add mechanism to invalidate MR keys (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Add support for ib_map_mr_sg (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Pull FECN/BECN processing to a common place (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix to fully initialize send context area (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix integrity errors counter value calculation (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Use new driver specific post send table (Don Dutile) [1382806 1417284]
-- [infiniband] ib/qib: Add qib post send table (Don Dutile) [1381986 1417284]
-- [infiniband] ib/hfi1: Add hfi1 post send tables (Don Dutile) [1382806 1417284]
-- [rdma] ib/rdmavt: Add data structures and routines for table driven post send (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Correct receive packet handler assignment (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Improve SDMA engine assignment for user SDMA (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Refine user process affinity algorithm (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Reserve and collapse CPU cores for contexts (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add global structure for affinity assignments (Don Dutile) [1382806 1417284]
-- [infiniband] iw_cm: free cm_id resources on the last deref (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: don't block in destroy_qp awaiting the last deref (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: explicitly move the qp to ERROR state during flush (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: stop MPA_REPLY timer when disconnecting (Don Dutile) [1385866 1417284]
-- [infiniband] ib/core: Add flow control to the portmapper netlink calls (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/cxgb3: Use AF_INET for sin_family field (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: Use kfree_skb instead of kfree (Don Dutile) [1385866 1417284]
-- [infiniband] ib/mlx5: Fix duplicate const warning (Don Dutile) [1385330 1417284]
-- [infiniband] ib/isert: Remove an unused member variable (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Simplify srpt_queue_response() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Limit the number of SG elements per work request (Don Dutile) [1417284]
-- [rdma] ib/core, rdma rw api: Do not exceed QP SGE send limit (Don Dutile) [1417284]
-- [infiniband] ib/core: Make rdma_rw_ctx_init() initialize all used fields (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Add counter to track unsupported packets drop (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Add VL XmitDiscards counters to the opapmaquery (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix trace sparse errors (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Separate tracepoints into specific headers (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix typo (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Remove unnecessary done label in hfi1_write_iter (Don Dutile) [1382806 1417284]
-- [rdma] ib/hfi1: Clean up port state structure definition (Don Dutile) [1382806 1417284]
-- [netdrv] mlx5_core/health: Remove deprecated create_singlethread_workqueue (Don Dutile) [1385330 1417284]
-- [netdrv] mlx4_core: Check device state before unregistering it (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5e: Query minimum required header copy during xmit (Don Dutile) [1383787 1417284]
-- [netdrv] mlx5e: Check the minimum inline header mode before xmit (Don Dutile) [1383787 1417284]
-- [target] libcxgb: add library module for Chelsio drivers (Don Dutile) [1417284]
-- [netdrv] mlx5: Use PTR_ERR_OR_ZERO() to simplify the code (Don Dutile) [1385330 1417284]
-- [netdrv] mlx4_en: break out tx_desc write into separate function (Don Dutile) [1385329 1417284]
-- [net] xprtrdma: fix semicolon.cocci warnings (Don Dutile) [1417284]
-- [net] rds: tcp: Enable multipath RDS for TCP (Don Dutile) [1417284]
-- [net] rds: tcp: Reduce code duplication in rds_tcp_reset_callbacks() (Don Dutile) [1417284]
-- [net] rds: tcp: avoid bad page reference in rds_tcp_listen_data_ready (Don Dutile) [1417284]
-- [netdrv] mlx5: E-Switch, Add API to configure rules for the offloaded mode (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Use two priorities for SRIOV offloads mode (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Introduce bulk reading of flow counters (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Store counters in rbtree instead of list (Don Dutile) [1385330 1417284]
-- [net] xprtrdma: No direct data placement with krb5i and krb5p (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Clean up fixup_copy_count accounting (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Update only specific fields in private receive buffer (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Do not update {head, tail}.iov_len in rpcrdma_inline_fixup() (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: rpcrdma_inline_fixup() overruns the receive page list (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Chunk list encoders no longer share one rl_segments array (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Place registered MWs on a per-req list (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Release orphaned MRs immediately (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Allocate MRs on demand (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Chunk list encoders must not return zero (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Honor ->send_request API contract (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Reply buffer exhaustion can be catastrophic (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Clean up device capability detection (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Remove rpcrdma_map_one() and friends (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Remove ALLPHYSICAL memory registration mode (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Do not leak an MW during a DMA map failure (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Refactor MR recovery work queues (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Use scatterlist for DMA mapping and unmapping under FMR (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Rename fields in rpcrdma_fmr (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Move init and release helpers (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Create common scatterlist fields in rpcrdma_mw (Don Dutile) [1401797 1417284]
-- [net] xprtrdma: Remove FMRs from the unmap list after unmapping (Don Dutile) [1401797 1417284]
-- [netdrv] mlx5e: Expose flow control counters to ethtool (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5e: Expose RDMA VPort counters to ethtool (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5e: Add support to get ethtool flow rules (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5e: Support l3/l4 flow type specs in ethtool flow steering (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5e: Add ethtool flow steering support (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5: Properly remove all steering objects (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5: Introduce mlx5_flow_steering structure (Don Dutile) [1383601 1417284]
-- [netdrv] mlx5: Refactor mlx5_add_flow_rule (Don Dutile) [1383601 1417284]
-- [netdrv] mlx4: Fix some indent inconsistancy (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5e: Introduce SRIOV VF representors (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5: Add Representors registration API (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5e: Add support for multiple profiles (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5e: Mark enabled RQTs instances explicitly (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5e: TIRs management refactoring (Don Dutile) [1383788 1417284]
-- [netdrv] mlx5e: Create NIC global resources only once (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add devlink based SRIOV mode changes (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: Add devlink interface (Don Dutile) [1383792 1417284]
-- [net] devlink: Add E-Switch mode control (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add API to create vport rx rules (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add offloads table (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: Introduce offloads steering namespace (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add API to create send-to-vport rules (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add miss rule for offloads mode (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add support for the sriov offloads mode (Don Dutile) [1383792 1417284]
-- [netdrv] mlx5: E-Switch, Add operational mode to the SRIOV e-Switch (Don Dutile) [1383792 1417284]
-- [net] rds: Do not send a pong to an incoming ping with 0 src port (Don Dutile) [1417284]
-- [net] rds: tcp: Simplify reconnect to avoid duelling reconnnect attempts (Don Dutile) [1417284]
-- [net] rds: tcp: Hooks to set up a single connection path (Don Dutile) [1417284]
-- [net] rds: tcp: make receive path use the rds_conn_path (Don Dutile) [1417284]
-- [net] rds: tcp: make ->sk_user_data point to a rds_conn_path (Don Dutile) [1417284]
-- [net] rds: tcp: Refactor connection destruction to handle multiple paths (Don Dutile) [1417284]
-- [net] rds: tcp: Make rds_tcp_connection track the rds_conn_path (Don Dutile) [1417284]
-- [net] rds: tcp: Remove dead logic around c_passive in rds-tcp (Don Dutile) [1417284]
-- [net] rds: Rework path specific indirections (Don Dutile) [1417284]
-- [netdrv] be2net: signedness bug in be_msix_enable() (Don Dutile) [1417284]
-- [netdrv] mlx5e: Report correct auto negotiation and allow toggling (Don Dutile) [1383786 1417284]
-- [netdrv] mlx5e: Use new ethtool get/set link ksettings API (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add missing 50G baseSR2 link mode (Don Dutile) [1417284]
-- [uapi] ethtool: Add 50G baseSR2 link mode (Don Dutile) [1417284]
-- [netdrv] mlx5e: Toggle link only after modifying port parameters (Don Dutile) [1383595 1417284]
-- [netdrv] mlx5e: Support adaptive RX coalescing (Don Dutile) [1383595 1417284]
-- [netdrv] mlx5e: CQE based moderation (Don Dutile) [1383595 1417284]
-- [netdrv] mlx5e: Introduce net device priv flags infrastructure (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add TXQ set max rate support (Don Dutile) [1383785 1417284]
-- [netdrv] mlx5: Rate limit tables support (Don Dutile) [1383785 1417284]
-- [netdrv] be2net: Change copyright markings in source files (Don Dutile) [1417284]
-- [netdrv] be2net: support asymmetric rx/tx queue counts (Don Dutile) [1417284]
-- [netdrv] be2net: fix definition of be_max_eqs() (Don Dutile) [1417284]
-- [netdrv] cxgb4vf: Synchronize access to mailbox (Don Dutile) [1385866 1417284]
-- [netdrv] mlx4_en: Add DCB PFC support through CEE netlink commands (Don Dutile) [1383796 1417284]
-- [infiniband] ib/hfi1: Add device FW version string (Don Dutile) [1382806 1417284]
-- [infiniband] ib/core: Export a common fw_ver sysfs entry (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Use new device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/usnic: Support device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/ocrdma: Support device FW version string (Don Dutile) [1385876 1417284]
-- [infiniband] ib/nes: Support device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/mthca: Supprot device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/mlx5: Support device FW version string (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx4: Support device FW version string (Don Dutile) [1385329 1417284]
-- [infiniband] ib/i40iw: Support device FW version string (Don Dutile) [1417284]
-- [infiniband] ib/cxgb4: Support device FW version string (Don Dutile) [1385866 1417284]
-- [infiniband] ib/cxgb3: Support device FW version string (Don Dutile) [1385866 1417284]
-- [rdma] ib/core: Add get FW version string to the core (Don Dutile) [1417284]
-- [netdrv] {net, ib}/mlx5: Refactor internal SRQ API (Don Dutile) [1385330 1417284]
-- [netdrv] ib/mlx5: Fix MODIFY_QP command input structure (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Report mlx5 TSO capabilities when querying device (Don Dutile) [1384619 1417284]
-- [infiniband] ib/mlx5: Enable flow steering for IPv6 traffic (Don Dutile) [1384580 1417284]
-- [uapi] ib/core: Add IPv6 support to flow steering (Don Dutile) [1384580 1417284]
-- [netdrv] ib/mlx5: Reset flow support for IB kernel ULPs (Don Dutile) [1384614 1417284]
-- [infiniband] ib/mlx5: Implements disassociate_ucontext API (Don Dutile) [1385330 1417284]
-- [infiniband] ib/mlx5: Add RSS QP support (Don Dutile) [1384576 1417284]
-- [uapi] ib/uverbs: Extend create QP to get RWQ indirection table (Don Dutile) [1384576 1417284]
-- [rdma] ib/core: Extend create QP to get indirection table (Don Dutile) [1384576 1417284]
-- [infiniband] ib/mlx5: Add Receive Work Queue Indirection table operations (Don Dutile) [1384576 1417284]
-- [uapi] ib/uverbs: Introduce RWQ Indirection table (Don Dutile) [1384576 1417284]
-- [rdma] ib/core: Introduce Receive Work Queue indirection table (Don Dutile) [1384576 1417284]
-- [infiniband] ib/mlx5: Add receive Work Queue verbs (Don Dutile) [1384576 1417284]
-- [uapi] ib/uverbs: Add WQ support (Don Dutile) [1384576 1417284]
-- [rdma] ib/core: Introduce Work Queue object and its verbs (Don Dutile) [1384576 1417284]
-- [netdrv] mlx5: Export required core functions to support RSS (Don Dutile) [1384576 1417284]
-- [infiniband] rdma/iw_cxgb4: Low resource fixes for Completion queue (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: Low resource fixes for Memory registration (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/cxgb4: Configure 0B MRs to match HW implementation (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: Low resource fixes for connection manager (Don Dutile) [1385866 1417284]
-- [netdrv] rdma/iw_cxgb4: Add missing error codes for act open cmd (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: clean up c4iw_reject_cr() (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: allocate enough space for debugfs "qps" dump (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/iw_cxgb4: only read markers_enabled mod param once (Don Dutile) [1385866 1417284]
-- [net] rds: tcp: Fix non static symbol warnings (Don Dutile) [1417284]
-- [netdrv] mlx5_en: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Don Dutile) [1385330 1417284]
-- [netdrv] mlx4_en: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Don Dutile) [1385329 1417284]
-- [netdrv] benet: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (Don Dutile) [1417284]
-- [netdrv] cxgb4/cxgb4vf: Synchronize all MAC addresses (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Enable SR-IOV configuration via PCI sysfs interface (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Force cxgb4 driver as MASTER in kdump kernel (Don Dutile) [1385866 1417284]
-- [net] rds: Update rds_conn_destroy to be MP capable (Don Dutile) [1417284]
-- [net] rds: Update rds_conn_shutdown to work with rds_conn_path (Don Dutile) [1417284]
-- [net] rds: Initialize all RDS_MPATH_WORKERS in __rds_conn_create (Don Dutile) [1417284]
-- [net] rds: Add rds_conn_path_error() (Don Dutile) [1417284]
-- [net] rds: update rds-info related functions to traverse multiple conn_paths (Don Dutile) [1417284]
-- [net] rds: Add rds_conn_path_connect_if_down() for MP-aware callers (Don Dutile) [1417284]
-- [net] rds: Make rds_send_pong() take a rds_conn_path argument (Don Dutile) [1417284]
-- [net] rds: Extract rds_conn_path from i_conn_path in rds_send_drop_to() for MP-capable transports (Don Dutile) [1417284]
-- [net] rds: fix possible double free on sock tear down (Don Dutile) [1417284]
-- [net] rds: Pass rds_conn_path to rds_send_xmit() (Don Dutile) [1417284]
-- [net] rds: Make rds_send_queue_rm() rds_conn_path aware (Don Dutile) [1417284]
-- [net] rds: Remove stale function rds_send_get_message() (Don Dutile) [1417284]
-- [net] rds: Add rds_send_path_drop_acked() (Don Dutile) [1417284]
-- [net] rds: Add rds_send_path_reset() (Don Dutile) [1417284]
-- [net] rds: rds_inc_path_init() helper function for MP capable transports (Don Dutile) [1417284]
-- [net] rds: recv path gets the conn_path from rds_incoming for MP capable transports (Don Dutile) [1417284]
-- [net] rds: add t_mp_capable bit to be set by MP capable transports (Don Dutile) [1417284]
-- [net] rds: split out connection specific state from rds_connection to rds_conn_path (Don Dutile) [1417284]
-- [net] rds: call rds_conn_drop instead of open code it at rds_connect_complete (Don Dutile) [1417284]
-- [net] rds: rds_cong_queue_updates needs to defer the congestion update transmission (Don Dutile) [1417284]
-- [net] rds: ib: Remove deprecated create_workqueue (Don Dutile) [1417284]
-- [netdrv] {net,ib}/mlx5: mlx5_ifc updates (Don Dutile) [1385330 1417284]
-- [netdrv] mlx4_en: fix ethtool -x (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: mlx4_en_netpoll() should schedule TX, not RX (Don Dutile) [1385329 1417284]
-- [infiniband] ib/hfi1: Correct issues with sc5 computation (Don Dutile) [1382806 1417284]
-- [netdrv] mlx5e: Fix del vxlan port command buffer memset (Don Dutile) [1417284]
-- [netdrv] mlx5e: start/stop all tx queues upon open/close netdev (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix TX Timeout to detect queues stuck on BQL (Don Dutile) [1417284]
-- [netdrv] cxgb4: update latest firmware version supported (Don Dutile) [1385866 1417284]
-- [netdrv] mlx5: Avoid setting unused var when modifying vport node GUID (Don Dutile) [1385330 1417284]
-- [net] rds: fix rds_tcp_init() error path (Don Dutile) [1417284]
-- [netdrv] mlx5e: Validate BW weight values of ETS (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix select queue callback (Don Dutile) [1417284]
-- [netdrv] mlx5e: Copy all L2 headers into inline segment (Don Dutile) [1417284]
-- [netdrv] mlx5e: Handle RQ flush in error cases (Don Dutile) [1417284]
-- [netdrv] mlx5e: Implement ndo_tx_timeout callback (Don Dutile) [1417284]
-- [netdrv] mlx5e: Timeout if SQ doesn't flush during close (Don Dutile) [1417284]
-- [netdrv] mlx5: Add timeout handle to commands with callback (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix potential deadlock in command mode change (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Use ktime_get_ns() (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix wait_vital for VFs and remove fixed sleep (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix incorrect page count when in internal error (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Avoid calling sleeping function by the health poll thread (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix teardown errors that happen in pci error handler (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5e: Reorganize ethtool statistics (Don Dutile) [1417284]
-- [netdrv] mlx5e: Fix number of PFC counters reported to ethtool (Don Dutile) [1417284]
-- [netdrv] mlx5e: Prevent adding the same vxlan port (Don Dutile) [1417284]
-- [netdrv] mlx5e: Check for BlueFlame capability before allocating SQ uar (Don Dutile) [1417284]
-- [netdrv] mlx5e: Change enum to better reflect usage (Don Dutile) [1417284]
-- [netdrv] mlx5: Add ConnectX-5 PCIe 4.0 to list of supported devices (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Update command strings (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: use mlx5_buf_alloc_node instead of mlx5_buf_alloc in mlx5_wq_ll_create (Don Dutile) [1385330 1417284]
-- [infiniband] ib/srpt: Reduce QP buffer size (Don Dutile) [1417284]
-- [rdma] ib/rdmavt: Correct qp_priv_alloc() return value test (Don Dutile) [1385848 1417284]
-- [infiniband] ib/hfi1: Don't zero out qp->s_ack_queue in rvt_reset_qp (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix deadlock with txreq allocation slow path (Don Dutile) [1382806 1417284]
-- [infiniband] ib/mlx4: Prevent cross page boundary allocation (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix memory leak if QP creation failed (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Verify port number in flow steering create flow (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix error flow when sending mads under SRIOV (Don Dutile) [1385329 1417284]
-- [infiniband] ib/mlx4: Fix the SQ size of an RC QP (Don Dutile) [1385329 1417284]
-- [netdrv] ib/mlx5: Fix post send fence logic (Don Dutile) [1385330 1417284]
-- [infiniband] ib/core: Fix false search of the IB_SA_WELL_KNOWN_GUID (Don Dutile) [1417284]
-- [infiniband] ib/core: Fix no default GIDs when netdevice reregisters (Don Dutile) [1417284]
-- [netdrv] mlx4_en: Avoid unregister_netdev at shutdown flow (Don Dutile) [1385329 1417284]
-- [net] rds: fix coding style issues (Don Dutile) [1417284]
-- [net] rds: tcp: rds_tcp_accept_one() should transition socket from RESETTING to UP (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Send a pkey change event on driver pkey update (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Remove FULL_MGMT_P_KEY from pkey table at link up (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix potential buffer overflow (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix potential NULL ptr dereference (Don Dutile) [1382806 1417284]
-- [infiniband] ib/qib: Prevent context loss (Don Dutile) [1381986 1417284]
-- [infiniband] ib/hfi1: Prevent context loss (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Increase packet egress timeout (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Correct warning during QPN allocation (Don Dutile) [1385848 1417284]
-- [infiniband] ib/rdmavt: Correct required callback functions for MODIFY_QP (Don Dutile) [1385848 1417284]
-- [infiniband] ib/hfi1: Fix credit return threshold adjustment (Don Dutile) [1382806 1417284]
-- [infiniband] ib/cma: Make the code easier to verify (Don Dutile) [1417284]
-- [infiniband] ib/mlx4: Properly initialize GRH TClass and FlowLabel in AHs (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4e: Do not attempt to offload VXLAN ports that are unrecognized (Don Dutile) [1385329 1417284]
-- [netdrv] mlx4_en: initialize cmd.context_lock spinlock earlier (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5: E-Switch, always set mc_promisc for allmulti vports (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Fix vport enable flow (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Use the correct error check on returned pointers (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: E-Switch, Use the correct free() function (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix flow steering NIC capabilities check (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix E-Switch flow steering capabilities check (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5: Fix MLX5_CMD_OP_MAX to be defined correctly (Don Dutile) [1385330 1417284]
-- [netdrv] cxgb4: Add device id of T540-BT adapter (Don Dutile) [1385866 1417284]
-- [net] rds: tcp: fix race windows in send-path quiescence by rds_tcp_accept_one() (Don Dutile) [1417284]
-- [net] rds: tcp: Retransmit half-sent datagrams when switching sockets in rds_tcp_reset_callbacks (Don Dutile) [1417284]
-- [net] rds: tcp: Add/use rds_tcp_reset_callbacks to reset tcp socket safely (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Don't update neigh validity for unresolved entries (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Disable bottom half when dealing with device address (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Fix race between ipoib_remove_one to sysfs functions (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Suppress sparse warnings (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Use bit 0 instead of bit 1 (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: Fix indentation (Don Dutile) [1382806 1417284]
-- [infiniband] ib/rdmavt: Annotate rvt_reset_qp() (Don Dutile) [1385848 1417284]
-- [infiniband] ib/mad: Fix indentation (Don Dutile) [1417284]
-- [infiniband] rdma/core: Fix indentation (Don Dutile) [1417284]
-- [infiniband] ib/usnic: Remove unused DMA attributes (Don Dutile) [1417284]
-- [infiniband] ib/core: fix an error code in ib_core_init() (Don Dutile) [1417284]
-- [infiniband] ib/hfi1: Avoid large frame size warning (Don Dutile) [1382806 1417284]
-- [infiniband] ib/hfi1: fix some indenting (Don Dutile) [1382806 1417284]
-- [net] rds: fix an infoleak in rds_inc_info_copy (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Allow setting the device address (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Support SendOnlyFullMember MCG for SendOnly join (Don Dutile) [1417284]
-- [infiniband] ib/core: Support new type of join-state for multicast (Don Dutile) [1417284]
-- [net] rds: tcp: Avoid rds connection churn from rogue SYNs (Don Dutile) [1417284]
-- [net] rds: tcp: rds_tcp_accept_worker() must exit gracefully when terminating rds-tcp (Don Dutile) [1417284]
-- [net] rds: tcp: block BH in TCP callbacks (Don Dutile) [1417284]
-- [net] xprtrdma: Remove qplock (Don Dutile) [1417284]
-- [net] xprtrdma: Faster server reboot recovery (Don Dutile) [1417284]
-- [net] xprtrdma: Remove ro_unmap() from all registration modes (Don Dutile) [1417284]
-- [net] xprtrdma: Add ro_unmap_safe memreg method (Don Dutile) [1417284]
-- [net] xprtrdma: Refactor __fmr_dma_unmap() (Don Dutile) [1417284]
-- [net] xprtrdma: Move fr_xprt and fr_worker to struct rpcrdma_mw (Don Dutile) [1417284]
-- [net] xprtrdma: Refactor the FRWR recovery worker (Don Dutile) [1417284]
-- [net] xprtrdma: Reset MRs in frwr_op_unmap_sync() (Don Dutile) [1417284]
-- [net] xprtrdma: Save I/O direction in struct rpcrdma_frwr (Don Dutile) [1417284]
-- [net] xprtrdma: Rename rpcrdma_frwr::sg and sg_nents (Don Dutile) [1417284]
-- [net] xprtrdma: Use core ib_drain_qp() API (Don Dutile) [1417284]
-- [net] xprtrdma: Allow Read list and Reply chunk simultaneously (Don Dutile) [1417284]
-- [net] xprtrdma: Update comments in rpcrdma_marshal_req() (Don Dutile) [1417284]
-- [net] xprtrdma: Avoid using Write list for small NFS READ requests (Don Dutile) [1417284]
-- [net] xprtrdma: Prevent inline overflow (Don Dutile) [1417284]
-- [net] xprtrdma: Limit number of RDMA segments in RPC-over-RDMA headers (Don Dutile) [1417284]
-- [net] xprtrdma: Bound the inline threshold values (Don Dutile) [1417284]
-- [net] sunrpc: Advertise maximum backchannel payload size (Don Dutile) [1417284]
-- [netdrv] mlx5_core: Flow counters infrastructure (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5_core: Introduce flow steering destination of type counter (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5_core: Firmware commands to support flow counters (Don Dutile) [1385330 1417284]
-- [netdrv] mlx5_core: Use a macro in mlx5_command_str() (Don Dutile) [1385330 1417284]
-- [infiniband] rdma/nes: replace custom print_hex_dump() (Don Dutile) [1417284]
-- [infiniband] ib/nes: Deinline nes_free_qp_mem, save 1072 bytes (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Adding queue drain functions (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Fix for passing a valid QP pointer to the user space library (Don Dutile) [1417284]
-- [infiniband] ib/ipoib: Add readout of statistics using ethtool (Don Dutile) [1417284]
-- [infiniband] ulp/ipoib: remove pkey_mutex (Don Dutile) [1417284]
-- [infiniband] iw_cxgb4: Convert a __force cast (Don Dutile) [1385866 1417284]
-- [net] svcrdma: Generalize svc_rdma_xdr_decode_req() (Don Dutile) [1417284]
-- [net] svcrdma: Eliminate code duplication in svc_rdma_recvfrom() (Don Dutile) [1417284]
-- [net] svcrdma: Drain QP before freeing svcrdma_xprt (Don Dutile) [1417284]
-- [net] svcrdma: Post Receives only for forward channel requests (Don Dutile) [1417284]
-- [net] svcrdma: svc_rdma_put_context() is invoked twice in Send error path (Don Dutile) [1417284]
-- [net] svcrdma: Support IPv6 with NFS/RDMA (Don Dutile) [1417284]
-- [infiniband] ib/isert: convert to the generic RDMA READ/WRITE API (Don Dutile) [1417284]
-- [infiniband] ib/srpt: convert to the generic RDMA READ/WRITE API (Don Dutile) [1417284]
-- [target] enhance and export target_alloc_sgl/target_free_sgl (Don Dutile) [1417284]
-- [target] ensure se_cmd->t_prot_sg is allocated when required (Don Dutile) [1417284]
-- [netdrv] mlx5e: Enable CQE compression when PCI is slower than link (Don Dutile) [1383356 1417284]
-- [netdrv] mlx5e: Expand WQE stride when CQE compression is enabled (Don Dutile) [1383356 1417284]
-- [netdrv] mlx5e: CQE compression (Don Dutile) [1383356 1417284]
-- [netdrv] mlx5: Fix merge errors (Don Dutile) [1385330 1417284]
-- [netdrv] cxgb4: Reset dcb state machine and tx queue prio only if dcb is enabled (Don Dutile) [1385866 1417284]
-- [netdrv] i40e: constify i40e_client_ops structure (Don Dutile) [1417284]
-- [netdrv]  replace dev->trans_start accesses with dev_trans_start (Don Dutile) [1417284]
-- [netdrv] mlx5: E-Switch, Implement trust vf ndo (Don Dutile) [1383280 1417284]
-- [netdrv] mlx5: E-Switch, Implement promiscuous rx modes vf request handling (Don Dutile) [1383280 1417284]
-- [netdrv] mlx5: E-Switch, Add promiscuous and allmulti FDB flowtable groups (Don Dutile) [1383280 1417284]
-- [netdrv] mlx5: E-Switch, Use vport event handler for vport cleanup (Don Dutile) [1383280 1417284]
-- [netdrv] mlx5: E-Switch, Enable/disable ACL tables on demand (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Vport ingress/egress ACLs rules for spoofchk (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Vport ingress/egress ACLs rules for VST mode (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Introduce VST vport ingress/egress ACLs (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Fix error flow memory leak (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: E-Switch, Replace vport spin lock with synchronize_irq() (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5: Flow steering, Add vport ACL support (Don Dutile) [1383290 1417284]
-- [netdrv] mlx5e: Fix aRFS compilation dependency (Don Dutile) [1385330 1417284]
-- [netdrv] cxgb4: Check for firmware errors in the mailbox command loop (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Don't sleep when mbox cmd is issued from interrupt context (Don Dutile) [1385866 1417284]
-- [netdrv] mlx5e: Fix IPv6 tunnel checksum offload (Don Dutile) [1417284]
-- [netdrv] mlx5e: Add support for UDP tunnel segmentation with outer checksum offload (Don Dutile) [1417284]
-- [netdrv] mlx4_en: Add support for UDP tunnel segmentation with outer checksum offload (Don Dutile) [1385329 1417284]
-- [netdrv] mlx5e: Enabling aRFS mechanism (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Add accelerated RFS support (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Create aRFS flow tables (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5: Initializing CPU reverse mapping (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Split the main flow steering table (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Refactor mlx5e flow steering structs (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5: Support different attributes for priorities in namespace (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5: Add user chosen levels when allocating flow tables (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Introduce tc offload support (Don Dutile) [1417284]
-- [netdrv] mlx5: Set number of allowed levels in priority (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5: Introduce modify flow rule destination (Don Dutile) [1383273 1417284]
-- [netdrv] mlx5e: Direct TIR per RQ (Don Dutile) [1383273 1417284]
-- [netdrv] cxgb4: Add support to enable logging of firmware mailbox commands (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/i40iw: Adding queue drain functions (Don Dutile) [1417284]
-- [infiniband] treewide: Fix typos in printk (Don Dutile) [1417284]
-- [infiniband] rdma/nes: remove use of NETDEV_TX_LOCKED (Don Dutile) [1417284]
-- [netdrv] cxgb4: Decode link down reason code obtained from firmware (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: DCB message handler needs to use correct portid to netdev mapping (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Refactor t4_port_init function (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Properly decode port module type (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Avoids race and deadlock while freeing tx descriptor (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: Add llseek operation for flash debugfs entry (Don Dutile) [1385866 1417284]
-- [netdrv] cxgb4: add new routine to get adapter info (Don Dutile) [1385866 1417284]
-- [scsi] rename SCSI_MAX_{SG, SG_CHAIN}_SEGMENTS (Don Dutile) [1417284]
-- [netdrv] cxgb3: fix out of bounds read (Don Dutile) [1385866 1417284]
-- [infiniband] rdma/nes: don't leak skb if carrier down (Don Dutile) [1417284]
-- [infiniband] iw_cxgb4: handle draining an idle qp (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb3: initialize ibdev.iwcm->ifname for port mapping (Don Dutile) [1385866 1417284]
-- [infiniband] iw_cxgb4: initialize ibdev.iwcm->ifname for port mapping (Don Dutile) [1385866 1417284]
-- [infiniband] iser-target: Use ib_drain_qp (Don Dutile) [1417284]
-- [infiniband] ib_srpt: fix a WARN_ON() message (Don Dutile) [1417284]
-- [infiniband] iw_cxgb3: support for iWARP port mapping (Don Dutile) [1385866 1417284]
-- [infiniband] iw_nes: remove port mapper related code (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Report the actual address of the remote connecting peer (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Add support for iWARP Port Mapper user space service (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Fix error return code (Don Dutile) [1417284]
-- [net] xprtrdma: Use new CQ API for RPC-over-RDMA client send CQs (Don Dutile) [1417284]
-- [net] xprtrdma: Use an anonymous union in struct rpcrdma_mw (Don Dutile) [1417284]
-- [net] xprtrdma: Use new CQ API for RPC-over-RDMA client receive CQs (Don Dutile) [1417284]
-- [net] xprtrdma: Serialize credit accounting again (Don Dutile) [1417284]
-- [net] xprtrdma: Properly handle RDMA_ERROR replies (Don Dutile) [1417284]
-- [net] xprtrdma: Do not wait if ib_post_send() fails (Don Dutile) [1417284]
-- [net] xprtrdma: Segment head and tail XDR buffers on page boundaries (Don Dutile) [1417284]
-- [net] xprtrdma: Clean up dprintk format string containing a newline (Don Dutile) [1417284]
-- [net] xprtrdma: Clean up physical_op_map() (Don Dutile) [1417284]
-- [infiniband] iser-target: Kill the ->isert_cmd back pointer in struct iser_tx_desc (Don Dutile) [1417284]
-- [infiniband] iser-target: Kill struct isert_rdma_wr (Don Dutile) [1417284]
-- [infiniband] iser-target: Convert to new CQ API (Don Dutile) [1417284]
-- [infiniband] iser-target: Split and properly type the login buffer (Don Dutile) [1417284]
-- [infiniband] iser-target: Remove ISER_RECV_DATA_SEG_LEN (Don Dutile) [1417284]
-- [infiniband] iser-target: Remove impossible condition from isert_wait_conn (Don Dutile) [1417284]
-- [infiniband] iser-target: Remove redundant wait in release_conn (Don Dutile) [1417284]
-- [infiniband] iser-target: Rework connection termination (Don Dutile) [1417284]
-- [infiniband] iser-target: Separate flows for np listeners and connections cma events (Don Dutile) [1417284]
-- [infiniband] iser-target: Add new state ISER_CONN_BOUND to isert_conn (Don Dutile) [1417284]
-- [infiniband] iser-target: Fix identification of login rx descriptor type (Don Dutile) [1417284]
-- [infiniband] iser: Accept arbitrary sg lists mapping if the device supports it (Don Dutile) [1417284]
-- [infiniband] ib/ocrdma: Skip using unneeded intermediate variable (Don Dutile) [1385876 1417284]
-- [infiniband] ib/ocrdma: Skip using unneeded intermediate variable (Don Dutile) [1385876 1417284]
-- [infiniband] ib/ocrdma: Delete unnecessary variable initialisations in 11 functions (Don Dutile) [1385876 1417284]
-- [infiniband] ib/ipoib: Add handling for sending of skb with many frags (Don Dutile) [1417284]
-- [net] svcrdma: Use new CQ API for RPC-over-RDMA server send CQs (Don Dutile) [1417284]
-- [net] svcrdma: Use new CQ API for RPC-over-RDMA server receive CQs (Don Dutile) [1417284]
-- [net] svcrdma: Remove close_out exit path (Don Dutile) [1417284]
-- [net] svcrdma: Hook up the logic to return ERR_CHUNK (Don Dutile) [1417284]
-- [net] rpcrdma: Add RPCRDMA_HDRLEN_ERR (Don Dutile) [1417284]
-- [net] svcrdma: Close connection when a send error occurs (Don Dutile) [1417284]
-- [net] svcrdma: Do not send Write chunk XDR pad with inline content (Don Dutile) [1417284]
-- [net] svcrdma: Do not write xdr_buf::tail in a Write chunk (Don Dutile) [1417284]
-- [net] svcrdma: Find client-provided write and reply chunks once per reply (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix wait list processing (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Introduce srpt_process_wait_list() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Log out all initiators if a port is disabled (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix srpt_write_pending() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Detect session shutdown reliably (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Use a mutex to protect the channel list (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Log private data associated with REJ (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Eliminate srpt_find_channel() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Inline trivial CM callback functions (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix how aborted commands are processed (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix srpt_handle_cmd() error paths (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Fix srpt_close_session() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Simplify srpt_shutdown_session() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Simplify channel state management (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Use scsilun_to_int() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Introduce target_reverse_dma_direction() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Inline srpt_get_ch_state() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Inline srpt_sdev_name() (Don Dutile) [1417284]
-- [infiniband] ib/srpt: Add parentheses around sizeof argument (Don Dutile) [1417284]
-- [infiniband] nes: handling failed allocation when creating workqueue (Don Dutile) [1417284]
-- [infiniband] ib/mlx4: Use boottime (Don Dutile) [1385329 1417284]
-- [infiniband] ib/iser: Use ib_drain_sq() (Don Dutile) [1417284]
-- [netdrv] mlx4: use new ETHTOOL_G/SSETTINGS API (Don Dutile) [1385329 1417284]
-- [infiniband] usnic: use __ethtool_get_ksettings (Don Dutile) [1417284]
-- [infiniband] usnic: use __ethtool_get_settings (Don Dutile) [1417284]
-- [infiniband] usnic: remove unused call to ethtool_ops::get_settings (Don Dutile) [1417284]
-- [infiniband] rdma/nes: Replace LRO with GRO (Don Dutile) [1417284]
-- [infiniband] treewide: Fix typo in printk (Don Dutile) [1417284]
-
-* Thu Feb 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-575.el7]
-- [tools] tools/power turbostat: RHEL Add additional RAPL features to Intel processors (Prarit Bhargava) [1422076]
-- [tools] power turbostat: remove obsolete -M, -m, -C, -c options (Prarit Bhargava) [1422076]
-- [tools] power turbostat: Make extensible via the --add parameter (Prarit Bhargava) [1422076]
-- [tools] power turbostat: line up headers when -M is used (Prarit Bhargava) [1422076]
-- [tools] power turbostat: fix SKX PKG_CSTATE_LIMIT decoding (Prarit Bhargava) [1422076]
-- [tools] power turbostat: fix error case overflow read of slm_freq_table[] (Prarit Bhargava) [1422076]
-- [tools] power turbostat: Allocate correct amount of fd and irq entries (Prarit Bhargava) [1422076]
-- [tools] power turbostat: switch to tab delimited output (Prarit Bhargava) [1422076]
-- [tools] power turbostat: Gracefully handle ACPI S3 (Prarit Bhargava) [1422076]
-- [tools] power turbostat: tidy up output on Joule counter overflow (Prarit Bhargava) [1422076]
-- [tools] turbostat: allow user to alter DESTDIR and PREFIX (Prarit Bhargava) [1422076]
-- [tools] power turbostat: work around RC6 counter wrap (Prarit Bhargava) [1422076]
-- [tools] power turbostat: print IRTL MSRs (Prarit Bhargava) [1422076]
-- [tools] power turbostat: SGX state should print only if --debug (Prarit Bhargava) [1422076]
-- [tools] power turbostat: bugfix: TDP MSRs print bits fixing (Prarit Bhargava) [1422076]
-- [tools] power turbostat: correct output for MSR_NHM_SNB_PKG_CST_CFG_CTL dump (Prarit Bhargava) [1422076]
-- [tools] power turbostat: call __cpuid() instead of __get_cpuid() (Prarit Bhargava) [1422076]
-- [tools] power turbostat: indicate SMX and SGX support (Prarit Bhargava) [1422076]
-- [tools] power turbostat: detect and work around syscall jitter (Prarit Bhargava) [1422076]
-- [tools] power turbostat: show GFXrc6 (Prarit Bhargava) [1422076]
-- [tools] power turbostat: show GFXMHz (Prarit Bhargava) [1422076]
-- [tools] power turbostat: show IRQs per CPU (Prarit Bhargava) [1422076]
-- [tools] power turbostat: make fewer systems calls (Prarit Bhargava) [1422076]
-- [tools] power turbostat: add --out option for saving output in a file (Prarit Bhargava) [1422076]
-- [tools] power turbostat: re-name "Busy" field to "Busy" (Prarit Bhargava) [1422076]
-- [tools] power turbostat: decode more CPUID fields (Prarit Bhargava) [1422076]
-- [tools] power turbostat: CPUID(0x16) leaf shows base, max, and bus frequency (Prarit Bhargava) [1422076]
-- [tools] power turbostat: decode HWP registers (Prarit Bhargava) [1422076]
-- [tools] power turbostat: Decode MSR_MISC_PWR_MGMT (Prarit Bhargava) [1422076]
-- [tools] power turbostat: fix various build warnings (Prarit Bhargava) [1422076]
-- [tools] power turbostat: allow sub-sec intervals (Prarit Bhargava) [1422076]
-
-* Thu Feb 23 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-574.el7]
-- [netdrv] nfp: add to redhat build configuration (John Linville) [1377767]
-- [netdrv] nfp: fix error return code in nfp_net_netdev_open() (John Linville) [1377767]
-- [netdrv] nfp: don't pad frames on receive (John Linville) [1377767]
-- [netdrv] nfp: drop support for old firmware ABIs (John Linville) [1377767]
-- [netdrv] nfp: remove linux/version.h includes (John Linville) [1377767]
-- [netdrv] nfp: check idx is -ENOSPC before using it is an index (John Linville) [1377767]
-- [netdrv] nfp: implement ethtool .get_link() callback (John Linville) [1377767]
-- [netdrv] nfp: remove unused parameter from nfp_net_write_mac_addr() (John Linville) [1377767]
-- [netdrv] nfp: correct name of control BAR define (John Linville) [1377767]
-- [netdrv] nfp: Replace ndo_add/del_vxlan_port with ndo_add/del_udp_enc_port (John Linville) [1377767]
-- [netdrv] nfp: use correct index to mask link state irq (John Linville) [1377767]
-- [netdrv] nfp: add async reconfiguration mechanism (John Linville) [1377767]
-- [netdrv] nfp: remove buggy RX buffer length validation (John Linville) [1377767]
-- [netdrv] nfp: remove unused suspicious mask defines (John Linville) [1377767]
-- [netdrv] nfp: correct names of constants in comments (John Linville) [1377767]
-- [netdrv] nfp: remove unnecessary static (John Linville) [1377767]
-- [netdrv] nfp: check the right pointer for errors (John Linville) [1377767]
-- [netdrv] nfp: allow ring size reconfiguration at runtime (John Linville) [1377767]
-- [netdrv] nfp: pass ring count as function parameter (John Linville) [1377767]
-- [netdrv] nfp: convert .ndo_change_mtu() to prepare/commit paradigm (John Linville) [1377767]
-- [netdrv] nfp: propagate list buffer size in struct rx_ring (John Linville) [1377767]
-- [netdrv] nfp: sync ring state during FW reconfiguration (John Linville) [1377767]
-- [netdrv] nfp: slice .ndo_open() and .ndo_stop() up (John Linville) [1377767]
-- [netdrv] nfp: move filling ring information to FW config (John Linville) [1377767]
-- [netdrv] nfp: preallocate RX buffers early in .ndo_open (John Linville) [1377767]
-- [netdrv] nfp: reorganize initial filling of RX rings (John Linville) [1377767]
-- [netdrv] nfp: cleanup tx ring flush and rename to reset (John Linville) [1377767]
-- [netdrv] nfp: allocate ring SW structs dynamically (John Linville) [1377767]
-- [netdrv] nfp: make *x_ring_init do all the init (John Linville) [1377767]
-- [netdrv] nfp: break up nfp_net_{alloc|free}_rings (John Linville) [1377767]
-- [netdrv] nfp: move link state interrupt request/free calls (John Linville) [1377767]
-- [netdrv] nfp: correct RX buffer length calculation (John Linville) [1377767]
-- [netdrv] nfp: call netif_carrier_off() during init (John Linville) [1377767]
-- [netdrv] nfp: clear ring delayed kick counters (John Linville) [1377767]
-- [netdrv] net: Rename NETIF_F_ALL_CSUM to NETIF_F_CSUM_MASK (John Linville) [1377767]
-- [netdrv] net: add driver for Netronome NFP4000/NFP6000 NIC VFs (John Linville) [1377767]
-
-* Wed Feb 22 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-573.el7]
-- [net] mac80211: fix legacy and invalid rx-rate report (Stanislaw Gruszka) [1411078]
-- [pci] msi: Simplify PCI MSI code by initializing msi_desc.nvec_used earlier (Prarit Bhargava) [1417650]
-- [x86] perf/x86/intel/rapl: Make package handling more robust (Jiri Olsa) [1418688]
-- [x86] perf/x86/intel/rapl: Convert to hotplug state machine (Jiri Olsa) [1418688]
-- [x86] perf/x86: Set pmu->module in Intel PMU modules (Jiri Olsa) [1418688]
-- [x86] kvm: vmx: enable guest access to LMCE related MSRs (Paul Lai) [1402102]
-- [x86] kvm: vmx: validate individual bits of guest MSR_IA32_FEATURE_CONTROL (Paul Lai) [1402102]
-- [x86] kvm: vmx: move msr_ia32_feature_control to vcpu_vmx (Paul Lai) [1402102]
-- [x86] pci: vmd: Use x86_vector_domain as parent domain (Myron Stowe) [1395404]
-- [x86] asm/irq: Stop relying on magic JMP behavior for early_idt_handlers (Prarit Bhargava) [1422146]
-- [s390] scsi: zfcp: fix use-after-free by not tracing WKA port open/close on failed send (Hendrik Brueckner) [1421749]
-- [s390] scsi: zfcp: fix rport unblock race with LUN recovery (Hendrik Brueckner) [1421750]
-- [s390] scsi: zfcp: do not trace pure benign residual HBA responses at default level (Hendrik Brueckner) [1421751]
-- [s390] scsi: zfcp: fix use-after-"free" in FC ingress path after TMF (Hendrik Brueckner) [1421752]
-- [block] Copy a user iovec if it includes gaps (Jeff Moyer) [1421263]
-- [tools] toops: Sync tools/include/uapi/linux/perf_event.h with the kernel (Jiri Olsa) [1391242]
-- [tools] perf record: Add clockid parameter (Jiri Olsa) [1391242]
-- [kernel] perf: Add per event clockid support (Jiri Olsa) [1391242 1404539]
-- [kernel] perf: Pass the event to arch_perf_update_userpage() (Jiri Olsa) [1391242]
-- [kernel] time: Introduce tk_fast_raw (Jiri Olsa) [1391242]
-- [kernel] time: Parametrize all tk_fast_mono users (Jiri Olsa) [1391242]
-- [kernel] timekeeping: Pass readout base to update_fast_timekeeper() (Jiri Olsa) [1391242]
-- [kernel] timekeeping: Provide fast and NMI safe access to CLOCK_MONOTONIC (Jiri Olsa) [1391242]
-- [kernel] seqcount: Add raw_write_seqcount_latch() (Jiri Olsa) [1391242]
-- [kernel] audit: consistently record PIDs with task_tgid_nr() (Richard Guy Briggs) [1379453]
-- [kernel] audit: Simplify and correct audit_log_capset (Richard Guy Briggs) [1379453]
-- [kernel] audit: log module name on init_module (Richard Guy Briggs) [1382500]
-- [crypto] rsa - add .gitignore for crypto/*.-asn1.[ch] files (Prarit Bhargava) [1422663]
-- [netdrv] iwlwifi: mvm: fix txq aggregation bug (Stanislaw Gruszka) [1362524]
-- [powerpc] Convert cmp to cmpd in idle enter sequence (Steve Best) [1418770]
-- [powerpc] powerpc/vdso64: Use double word compare on pointers (Steve Best) [1418770]
-
-* Tue Feb 21 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-572.el7]
-- [net] ipv6: Don't unset flowi6_proto in ipxip6_tnl_xmit() (Jakub Sitnicki) [1369158]
-- [net] ipv6: fix 4in6 tunnel receive path (Jakub Sitnicki) [1369158]
-- [net] gre6: add Kconfig dependency for NET_IPGRE_DEMUX (Jakub Sitnicki) [1369158]
-- [net] ip6_tunnel: Account for tunnel header in tunnel MTU (Jakub Sitnicki) [1369158]
-- [net] gre: use nla_get_be32() to extract flowinfo (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: fix flowi6_proto value in ip6gre_xmit_other() (Jakub Sitnicki) [1369158]
-- [net] gre: set inner_protocol on xmit (Jakub Sitnicki) [1369158]
-- [net] gre: fix error handler (Jakub Sitnicki) [1369158]
-- [net] ipv4: Add ability to have GRE ignore DF bit in IPv4 payloads (Jakub Sitnicki) [1369158]
-- [net] ip6gre: Allow live link address change (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Set flowi6_proto as IPPROTO_GRE in xmit path. (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Fix MTU setting for ip6gretap (Jakub Sitnicki) [1369158]
-- [net] gre: do not keep the GRE header around in collect medata mode (Jakub Sitnicki) [1369158]
-- [net] gre: Fix wrong tpi->proto in WCCP (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Fix get_size calculation for gre6 tunnel (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Use correct flags for reading TUNNEL_SEQ (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Set inner protocol correctly in __gre6_xmit (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Fix MTU setting (Jakub Sitnicki) [1369158]
-- [net] gre6: Fix flag translations (Jakub Sitnicki) [1369158]
-- [net] gre: receive also TEB packets for lwtunnels (Jakub Sitnicki) [1369158]
-- [net] gre: move iptunnel_pull_header down to ipgre_rcv (Jakub Sitnicki) [1369158]
-- [net] gre: change gre_parse_header to return the header length (Jakub Sitnicki) [1369158]
-- [net] gre: remove superfluous pskb_may_pull (Jakub Sitnicki) [1369158]
-- [net] gre6: Cleanup GREv6 transmit path, call common GRE functions (Jakub Sitnicki) [1369158]
-- [net] ipv6: Generic tunnel cleanup (Jakub Sitnicki) [1369158]
-- [net] gre: Create common functions for transmit (Jakub Sitnicki) [1369158]
-- [net] ipv6: Create ip6_tnl_xmit (Jakub Sitnicki) [1369158]
-- [net] gre6: Cleanup GREv6 receive path, call common GRE functions (Jakub Sitnicki) [1369158]
-- [net] gre: Move utility functions to common headers (Jakub Sitnicki) [1369158]
-- [net] ipv6: Cleanup IPv6 tunnel receive path (Jakub Sitnicki) [1369158]
-- [net] ip6gre: Add support for GSO (Jakub Sitnicki) [1369158]
-- [net] gre: Add support for GRO/GSO of IPv6 GRE traffic (Jakub Sitnicki) [1369158]
-- [net] ip6gre: Add support for basic offloads offloads excluding GSO (Jakub Sitnicki) [1369158]
-- [net] ip6gretap: Fix MTU to allow for Ethernet header (Jakub Sitnicki) [1369158]
-- [net] gre: clear IFF_TX_SKB_SHARING (Jakub Sitnicki) [1369158]
-- [net] gre6: allow to update all parameters via rtnl (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: Reduce log level in ip6gre_err() to debug (Jakub Sitnicki) [1369158]
-- [net] gre: use be16 variants of netlink functions (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: fix endianness errors in ip6gre_err (Jakub Sitnicki) [1369158]
-- [net] gre: allow live address change (Jakub Sitnicki) [1369158]
-- [net] gre: Set inner mac header in gro complete (Jakub Sitnicki) [1369158]
-- [net] gre: Fix typo in returning flags in netlink (Jakub Sitnicki) [1369158]
-- [net] ip6gre: add a rtnl link alias for ip6gretap (Jakub Sitnicki) [1369158]
-- [net] gre: allow changing mac address when device is up (Jakub Sitnicki) [1369158]
-- [net] ip6_gre: don't allow to remove the fb_tunnel_dev (Jakub Sitnicki) [1369158]
-- [net] gre: use icmp_hdr() to get inner ip header (Jakub Sitnicki) [1369158]
-- [net] ipv6: Fix the upper MTU limit in GRE tunnel (Jakub Sitnicki) [1369158]
-- [net] geneve: avoid use-after-free of skb->data (Sabrina Dubroca) [1326309]
-- [net] vxlan: Add new UDP encapsulation offload type for VXLAN-GPE (Sabrina Dubroca) [1326309]
-- [net] Merge VXLAN and GENEVE push notifiers into a single notifier (Sabrina Dubroca) [1326309]
-- [net] Combine GENEVE and VXLAN port notifiers into single functions (Sabrina Dubroca) [1326309]
-- [net] vxlan/geneve: Include udp_tunnel.h in vxlan/geneve.h and fixup includes (Sabrina Dubroca) [1326309]
-- [net] geneve: fix max_mtu setting (Sabrina Dubroca) [1326309]
-- [net] geneve: fix tx_errors statistics (Sabrina Dubroca) [1326309]
-- [net] geneve: testing the wrong variable in geneve6_build_skb() (Sabrina Dubroca) [1326309]
-- [net] ip_tunnel_core: iptunnel_handle_offloads returns int and doesn't free skb (Sabrina Dubroca) [1326309]
-- [net] geneve: make access to tunnel options similar to vxlan (Sabrina Dubroca) [1326309]
-- [net] Optimize local checksum offload (Sabrina Dubroca) [1326318]
-- [net] documentation/networking: more accurate LCO explanation (Sabrina Dubroca) [1326318]
-- [net] documentation/networking: add checksum-offloads.txt to explain LCO (Sabrina Dubroca) [1326318]
-- [net] ip_tunnel: remove 'csum_help' argument to iptunnel_handle_offloads (Sabrina Dubroca) [1326318]
-- [net] gre: Implement LCO for GRE over IPv4 (Sabrina Dubroca) [1326318]
-- [net] vxlan: enable local checksum offload (Sabrina Dubroca) [1326318]
-- [net] enable LCO for udp_tunnel_handle_offloads() users (Sabrina Dubroca) [1326318]
-- [net] udp: always set up for CHECKSUM_PARTIAL offload (Sabrina Dubroca) [1326318]
-- [net] local checksum offload for encapsulation (Sabrina Dubroca) [1326318]
-- [net] gso: Support partial splitting at the frag_list pointer (Eric Garver) [1405429]
-- [net] Add support for IP ID mangling TSO in cases that require encapsulation (Eric Garver) [1405429]
-- [net] Fix netdev_fix_features so that TSO_MANGLEID is only available with TSO (Eric Garver) [1405429]
-- [net] gso: Only allow GSO_PARTIAL if we can checksum the inner protocol (Eric Garver) [1405429]
-- [net] gso: Do not perform partial GSO if number of partial segments is 1 or less (Eric Garver) [1405429]
-- [net] gso: Reload iph after pskb_may_pull (Eric Garver) [1326353]
-- [net] relax expensive skb_unclone() in iptunnel_handle_offloads() (Eric Garver) [1326353]
-- [net] documentation: Add documentation for TSO and GSO features (Eric Garver) [1326353]
-- [net] gso: Support partial segmentation offload (Eric Garver) [1326353]
-- [net] gro: Add support for TCP with fixed IPv4 ID field, limit tunnel IP ID values (Eric Garver) [1326353]
-- [net] gso: Add GSO type for fixed IPv4 ID (Eric Garver) [1326353]
-- [net] ethtool: Add support for toggling any of the GSO offloads (Eric Garver) [1326353]
-- [net] Reset encap_level to avoid resetting features on inner IP headers (Eric Garver) [1326353]
-- [net] bridge: update max_gso_segs and max_gso_size (Eric Garver) [1326353]
-- [net] rtnetlink: add IFLA_GSO_MAX_SEGS and IFLA_GSO_MAX_SIZE attributes (Eric Garver) [1326353]
-- [net] bridge: reset bridge mtu after deleting an interface (Eric Garver) [1326353]
-- [net] gso/udp: Use skb->len instead of udph->len to determine length of original skb (Eric Garver) [1326353]
-- [net] gso: Provide software checksum of tunneled UDP fragmentation offload (Eric Garver) [1326353]
-- [net] Allow tunnels to use inner checksum offloads with outer checksums needed (Eric Garver) [1326353]
-- [net] udp: Use uh->len instead of skb->len to compute checksum in segmentation (Eric Garver) [1326353]
-- [net] udp: Clean up the use of flags in UDP segmentation offload (Eric Garver) [1326353]
-- [net] gre: Use inner_proto to obtain inner header protocol (Eric Garver) [1326353]
-- [net] gre: Use GSO flags to determine csum need instead of GRE flags (Eric Garver) [1326353]
-- [net] Move skb_has_shared_frag check out of GRE code and into segmentation (Eric Garver) [1326353]
-- [net] Store checksum result for offloaded GSO checksums (Eric Garver) [1326353]
-- [net] Update remote checksum segmentation to support use of GSO checksum (Eric Garver) [1326353]
-- [net] Move GSO csum into SKB_GSO_CB (Eric Garver) [1326353]
-- [net] fix two sparse errors (Eric Garver) [1326353]
-- [net] Drop unecessary enc_features variable from tunnel segmentation functions (Eric Garver) [1326353]
-
-* Mon Feb 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-571.el7]
-- [vhost] vsock: lookup and setup guest_cid inside vhost_vsock_lock (Stefan Hajnoczi) [1291282]
-- [net] vsock/virtio: fix src/dst cid format (Stefan Hajnoczi) [1291282]
-- [net] vsock/virtio: mark an internal function static (Stefan Hajnoczi) [1291282]
-- [net] vsock/virtio: add a missing __le annotation (Stefan Hajnoczi) [1291282]
-- [vhost] vhost-vsock: fix orphan connection reset (Stefan Hajnoczi) [1291282]
-- [vhost] vhost-vsock: remove unused vq variable (Stefan Hajnoczi) [1291282]
-- [net] vsock: add loopback to virtio_transport (Stefan Hajnoczi) [1291282]
-- [net] vsock: Don't dec ack backlog twice for rejected connections (Stefan Hajnoczi) [1291282]
-- [net] vhost/vsock: drop space available check for TX vq (Stefan Hajnoczi) [1291282]
-- [vhost] vsock: fix vhost virtio_vsock_pkt use-after-free (Stefan Hajnoczi) [1291282]
-- [vhost] vsock: Use kvfree() (Stefan Hajnoczi) [1291282]
-- [net] vsock: Add Makefile and Kconfig (Stefan Hajnoczi) [1291282]
-- [maintainers] vsock: Introduce vhost_vsock.ko (Stefan Hajnoczi) [1291282]
-- [maintainers] vsock: Introduce virtio_transport.ko (Stefan Hajnoczi) [1291282]
-- [uapi] vsock: Introduce virtio_vsock_common.ko (Stefan Hajnoczi) [1291282]
-- [net] vsock: defer sock removal to transports (Stefan Hajnoczi) [1291282]
-- [net] vsock: transport-specific vsock_transport functions (Stefan Hajnoczi) [1291282]
-- [net] vsock: make listener child lock ordering explicit (Stefan Hajnoczi) [1291282]
-- [net] vsock: do not disconnect socket when peer has shutdown SEND only (Stefan Hajnoczi) [1291282]
-- [net] af_vsock: Shrink the area influenced by prepare_to_wait (Stefan Hajnoczi) [1291282]
-- [net] vsock: define VSOCK_SS_LISTEN once only (Stefan Hajnoczi) [1291282]
-- [net] vsock: fix missing cleanup when misc_register failed (Stefan Hajnoczi) [1291282]
-- [uapi] fix to export linux/vm_sockets.h (Stefan Hajnoczi) [1291282]
-- [net] vmci_transport: switch ->enqeue_dgram, ->enqueue_stream and ->dequeue_stream to msghdr (Stefan Hajnoczi) [1291282]
-- [uapi] add missing network related headers to kbuild (Stefan Hajnoczi) [1291282]
-- [net] vsock: Make transport the proto owner (Stefan Hajnoczi) [1291282]
-- [net] vsock: Move af_vsock.h and vsock_addr.h to include/net (Stefan Hajnoczi) [1291282]
-- [net] vsock: Fix VSOCK_HASH and VSOCK_CONN_HASH (Stefan Hajnoczi) [1291282]
-- [net] vsock: Introduce vsock_auto_bind helper (Stefan Hajnoczi) [1291282]
-
-* Mon Feb 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-570.el7]
-- [x86] edac, amd64: Don't treat ECC disabled as failure (Suravee Suthikulpanit) [1303712]
-- [x86] edac: Add routine to check if MC devices list is empty (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Fix boot crash on non-AMD systems (Suravee Suthikulpanit) [1303712]
-- [kernel] edac: Document HW_EVENT_ERR_DEFERRED type (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Autoload amd64_edac_mod on Fam17h systems (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Autoload module using x86_cpu_id (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Define and register UMC error decode function (Suravee Suthikulpanit) [1303712]
-- [edac] amd64_edac: Simplify code around decode_bus_error (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Determine EDAC capabilities on Fam17h systems (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Determine EDAC MC capabilities on Fam17h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Add Fam17h debug output (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Add Fam17h scrubber support (Suravee Suthikulpanit) [1303712]
-- [edac] amd64_edac: Extend scrub rate support to F15hM60h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Read MC registers on AMD Fam17h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Reserve correct PCI devices on AMD Fam17h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Add AMD Fam17h family type and ops (Suravee Suthikulpanit) [1303712]
-- [edac] amd64_edac: Drop pci_register_driver() use (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Extend ecc_enabled() to Fam17h (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Don't force-enable ECC checking on newer systems (Suravee Suthikulpanit) [1303712]
-- [x86] mce/amd: Add system physical address translation for AMD Fam17h (Suravee Suthikulpanit) [1303712]
-- [kernel] edac, amd64: Add Deferred Error type (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Rename __log_bus_error() to be more specific (Suravee Suthikulpanit) [1303712]
-- [edac] amd64: Change target of pci_name from F2 to F3 (Suravee Suthikulpanit) [1303712]
-- [edac] mce_amd: Rename nb_bus_decoder to dram_ecc_decoder (Suravee Suthikulpanit) [1303712]
-- [kernel] edac: Add LRDDR4 DRAM type (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Add SMN and Indirect Data Fabric access for AMD Fam17h (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Add Fam17h Data Fabric as "Northbridge" (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Make all exports EXPORT_SYMBOL_GPL (Suravee Suthikulpanit) [1303712]
-- [x86] amd_nb: Make amd_northbridges internal to amd_nb.c (Suravee Suthikulpanit) [1303712]
-- [x86] mce/amd: Fix HWID_MCATYPE calculation by grouping arguments (Suravee Suthikulpanit) [1303712]
-- [edac] x86/ras: Rename smca_bank_names to smca_names (Suravee Suthikulpanit) [1303712]
-- [edac] x86/ras: Simplify SMCA HWID descriptor struct (Suravee Suthikulpanit) [1303712]
-- [x86] ras: Simplify SMCA bank descriptor struct (Suravee Suthikulpanit) [1303712]
-- [x86] mce: Update AMD mcheck init to use cpu_has() facilities (Suravee Suthikulpanit) [1303712]
-- [x86] mce: Detect local MCEs properly (Suravee Suthikulpanit) [1303712]
-- [x86] mce: Carve out writes to MCx_STATUS and MCx_CTL (Suravee Suthikulpanit) [1303712]
-- [x86] mce: Grade uncorrected errors for SMCA-enabled systems (Suravee Suthikulpanit) [1303712]
-
-* Mon Feb 20 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-569.el7]
-- [hv] vmbus: finally fix hv_need_to_signal_on_read() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] acquire vmbus_connection.channel_mutex in vmbus_free_channels() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] hyperv: Fix spelling of HV_UNKOWN (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: On the read path cleanup the logic to interrupt the host (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: On write cleanup the logic to interrupt the host (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Base host signaling strictly on the ring state (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] balloon: Fix info request to show max page count (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vss: Operation timeouts should match host expectation (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vss: Improve log messages (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] balloon: Add logging for dynamic memory operations (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] balloon: Disable hot add when CONFIG_MEMORY_HOTPLUG is not set (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: reduce HV_UTIL_NEGO_TIMEOUT timeout (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] ring_buffer: count on wrap around mappings in get_next_pkt_raw() (v2) (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: make sysfs names consistent with PCI (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] get rid of id in struct vmbus_channel (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] make VMBus bus ids persistent (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: Rename version definitions to reflect protocol version (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: suppress some "hv_vmbus: Unknown GUID" warnings (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Make mmio resource local (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: Check VSS daemon is listening before a hot backup (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: Continue to poll VSS channel after handling requests (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] Introduce a policy for controlling channel affinity (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] ring_buffer: use wrap around mappings in hv_copy{from, to}_ringbuffer() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] ring_buffer: wrap around mappings for ring buffers (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] cleanup vmbus_open() for wrap around mappings (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Implement a mechanism to tag the channel for low latency (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Reduce the delay between retries in vmbus_post_msg() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Enable explicit signaling policy for NIC channels (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: fix the race when querying & updating the percpu list (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] utils: fix a race on userspace daemons registration (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] get rid of timeout in vmbus_open() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Give control over how the ring access is serialized (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: Eliminate the spin lock on the read path (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: add an API vmbus_hvsock_device_unregister() (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: add a per-channel rescind callback (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: vmbus_sendpacket_ctl: hvsock: avoid unnecessary signaling (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: define the new offer type for Hyper-V socket (hvsock) (Vitaly Kuznetsov) [1406404 1418889]
-- [hv] vmbus: add a helper function to set a channel's pending send size (Vitaly Kuznetsov) [1406404 1418889]
-
-* Fri Feb 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-568.el7]
-- [tools] power turbostat: Denverton uses a 25 MHz crystal, not 19.2 MHz (Steve Best) [1379780]
-- [tools] power turbostat: fix Denverton BCLK (Steve Best) [1379780]
-- [tools] power turbostat: use intel-family.h model strings (Steve Best) [1379780]
-- [scsi] fcoe: fix reset of fip selection time (Neil Horman) [1410765]
-- [scsi] ipr: Fix async error WARN_ON (Gustavo Duarte) [1384383]
-- [scsi] ipr: Remove redundant messages at adapter init time (Gustavo Duarte) [1384383]
-- [scsi] ipr: Don't log unnecessary 9084 error details (Gustavo Duarte) [1384383]
-- [scsi] ipr: Add asynchronous error notification (Gustavo Duarte) [1384383]
-- [x86] kvm/x86: add sending hyper-v crash notification to user space (Bandan Das) [1357828]
-- [x86] kvm/x86: added hyper-v crash msrs into kvm hyperv context (Bandan Das) [1357828]
-- [x86] kvm: add hyper-v crash msrs values (Bandan Das) [1357828]
-- [x86] kvm: Add KVM_EXIT_SYSTEM_EVENT to user space API header (Bandan Das) [1357828]
-- [net] ethtool: page allocation failure (David Arcari) [1362219]
-- [net] audit: log 32-bit socketcalls (Richard Guy Briggs) [1382499]
-- [lib] bug.c: use common WARN helper (Pratyush Anand) [1310539]
-- [lib] bug.c: convert printk to pr_foo() (Pratyush Anand) [1310539]
-- [lib] bug.c: make panic_on_warn available for all architectures (Pratyush Anand) [1310539]
-- [kernel] panic: add cpu/pid to warn_slowpath_common in WARNING printk()s (Pratyush Anand) [1310539]
-- [kernel] ring-buffer: Prevent overflow of size in ring_buffer_resize() (Pratyush Anand) [1339451]
-- [kernel] ring-buffer: Use long for nr_pages to avoid overflow failures (Pratyush Anand) [1339451]
-- [kernel] tracing: Fix showing function event in available_events (Pratyush Anand) [1311824]
-- [kernel] nohz: Fix collision between tick and other hrtimers (Frederic Weisbecker) [1366043]
-- [netdrv] virtio-net: correctly enable multiqueue (Maxime Coquelin) [1396578]
-- [netdrv] virtio-net: enable multiqueue by default (Maxime Coquelin) [1396578]
-- [netdrv] alx: work around hardware bug in interrupt fallback path (Jarod Wilson) [1396261]
-- [netdrv] alx: fix fallback to msi or legacy interrupts (Jarod Wilson) [1396261]
-- [netdrv] alx: fix wrong condition to free descriptor memory (Jarod Wilson) [1396261]
-- [netdrv] ibmveth: Add a proper check for the availability of the checksum features (Thomas Huth) [1414232]
-- [powerpc] fadump: Fix the race in crash_fadump() (Steve Best) [1420077]
-- [cpufreq] intel_pstate: Add Knights Mill CPUID (Steve Best) [1381264]
-
-* Thu Feb 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-567.el7]
-- [net] sctp: check af before verify address in sctp_addr_id2transport (Xin Long) [1414389]
-- [net] vti6: fix input path (Hangbin Liu) [1419421]
-- [net] xfrm_input: fix possible NULL deref of tunnel.ip6->parms.i_key (Hangbin Liu) [1419421]
-- [net] ipv6: addrconf: fix dev refcont leak when DAD failed (Hangbin Liu) [1416105]
-- [net] dctcp: avoid bogus doubling of cwnd after loss (Florian Westphal) [1386923]
-- [net] revert "dctcp: update cwnd on congestion event" (Florian Westphal) [1386923]
-- [net] avoid signed overflows for SO_{SND|RCV}BUFFORCE (Sabrina Dubroca) [1412474] {CVE-2016-9793}
-- [net] skbuff: Fix skb checksum partial check (Lance Richardson) [1411480]
-- [net] skbuff: Fix skb checksum flag on skb pull (Lance Richardson) [1411480]
-- [net] sctp: not copying duplicate addrs to the assoc's bind address list (Xin Long) [1308362]
-- [net] sctp: reduce indent level in sctp_copy_local_addr_list (Xin Long) [1308362]
-- [net] bonding: set carrier off for devices created through netlink (Beniamino Galvani) [1356197]
-- [net] bridge: a netlink notification should be sent when those attributes are changed by ioctl (Xin Long) [950243]
-- [net] bridge: a netlink notification should be sent when those attributes are changed by br_sysfs_if (Xin Long) [950243]
-- [net] bridge: a netlink notification should be sent when those attributes are changed by br_sysfs_br (Xin Long) [950243]
-- [net] bridge: simplify the stp_state_store by calling store_bridge_parm (Xin Long) [950243]
-- [net] bridge: simplify the forward_delay_store by calling store_bridge_parm (Xin Long) [950243]
-- [net] bridge: simplify the flush_store by calling store_bridge_parm (Xin Long) [950243]
-- [net] ipv6: correctly add local routes when lo goes up (Eelco Chaudron) [1386304]
-- [net] rtnetlink: Don't export empty RTAX_FEATURES (Phil Sutter) [1369421]
-
-* Wed Feb 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-566.el7]
-- [fs] Make __xfs_xattr_put_listen preperly report errors (Brian Foster) [1419532]
-- [fs] xfs: in _attrlist_by_handle, copy the cursor back to userspace (Brian Foster) [1419532]
-- [fs] xfs: fix type confusion in xfs_ioc_swapext (Brian Foster) [1419532]
-- [fs] xfs: fix warning in xfs_finish_page_writeback for non-debug builds (Brian Foster) [1419532]
-- [fs] xfs: concurrent readdir hangs on data buffer locks (Brian Foster) [1419532]
-- [fs] xfs: move reclaim tagging functions (Brian Foster) [1419532]
-- [fs] xfs: simplify inode reclaim tagging interfaces (Brian Foster) [1419532]
-- [fs] xfs: rename variables in xfs_iflush_cluster for clarity (Brian Foster) [1419532]
-- [fs] xfs: xfs_iflush_cluster has range issues (Brian Foster) [1419532]
-- [fs] xfs: mark reclaimed inodes invalid earlier (Brian Foster) [1419532]
-- [fs] xfs: xfs_inode_free() isn't RCU safe (Brian Foster) [1419532]
-- [fs] xfs: optimise xfs_iext_destroy (Brian Foster) [1419532]
-- [fs] xfs: skip stale inodes in xfs_iflush_cluster (Brian Foster) [1419532]
-- [fs] xfs: fix inode validity check in xfs_iflush_cluster (Brian Foster) [1419532]
-- [fs] xfs: xfs_iflush_cluster fails to abort on error (Brian Foster) [1419532]
-- [fs] xfs: remove xfs_fs_evict_inode() (Brian Foster) [1419532]
-- [fs] xfs: buffer ->bi_end_io function requires irq-safe lock (Brian Foster) [1419532]
-- [fs] xfs: mute some sparse warnings (Brian Foster) [1419532]
-- [fs] xfs: improve kmem_realloc (Brian Foster) [1419532]
-- [fs] xfs: Add caller function output to xfs_log_force tracepoint (Brian Foster) [1419532]
-- [fs] xfs: remove transaction types (Brian Foster) [1419532]
-- [fs] xfs: better xfs_trans_alloc interface (Brian Foster) [1419532]
-- [fs] xfs: optimize bio handling in the buffer writeback path (Brian Foster) [1419532]
-- [fs] xfs: don't release bios on completion immediately (Brian Foster) [1419532]
-- [fs] xfs: build bios directly in xfs_add_to_ioend (Brian Foster) [1419532]
-- [fs] xfs: collapse cases in xfs_attr3_leaf_list_int (Brian Foster) [1419532]
-- [fs] xfs: remove put_value from attr ->put_listent context (Brian Foster) [1419532]
-- [fs] xfs: don't pass value into attr ->put_listent (Brian Foster) [1419532]
-- [fs] xfs: only return -errno or success from attr ->put_listent (Brian Foster) [1419532]
-- [fs] xfs: set up inode operation vectors later (Brian Foster) [1419532]
-- [fs] xfs: factor out a helper to initialize a local format inode fork (Brian Foster) [1419532]
-- [fs] xfs: add missing break in xfs_parseargs() (Brian Foster) [1419532]
-- [fs] xfs: Don't wrap growfs AGFL indexes (Brian Foster) [1419532]
-- [fs] xfs: always set rvalp in xfs_dir2_node_trim_free (Brian Foster) [1419532]
-- [fs] xfs: ensure committed is initialized in xfs_trans_roll (Brian Foster) [1419532]
-- [fs] xfs: borrow indirect blocks from freed extent when available (Brian Foster) [1419532]
-- [fs] xfs: refactor delalloc indlen reservation split into helper (Brian Foster) [1419532]
-- [fs] xfs: update freeblocks counter after extent deletion (Brian Foster) [1419532]
-- [fs] xfs: debug mode forced buffered write failure (Brian Foster) [1419532]
-- [fs] xfs: remove impossible condition (Brian Foster) [1419532]
-- [fs] xfs: check sizes of XFS on-disk structures at compile time (Brian Foster) [1419532]
-- [fs] xfs: use named array initializers for log item dumping (Brian Foster) [1419532]
-- [fs] xfs: fix computation of inode btree maxlevels (Brian Foster) [1419532]
-- [fs] xfs: reinitialise per-AG structures if geometry changes during recovery (Brian Foster) [1419532]
-- [fs] xfs: remove xfs_trans_get_block_res (Brian Foster) [1419532]
-- [fs] xfs: fix up inode32/64 (re)mount handling (Brian Foster) [1419532]
-- [fs] xfs: fix format specifier , should be llx and not llu (Brian Foster) [1419532]
-- [fs] xfs: sanitize remount options (Brian Foster) [1419532]
-- [fs] xfs: convert mount option parsing to tokens (Brian Foster) [1419532]
-- [fs] xfs: XFS_DIFLAG2_DAX limited by PAGE_SIZE (Brian Foster) [1419532]
-- [fs] xfs: dynamically switch modes when XFS_DIFLAG2_DAX is set/cleared (Brian Foster) [1419532]
-- [fs] xfs: S_DAX is only for regular files (Brian Foster) [1419532]
-- [fs] xfs: XFS_DIFLAG_DAX is only for regular files or directories (Brian Foster) [1419532]
-- [fs] xfs: remove XFS_BUF_ZEROFLAGS macro (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_STALE flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_WRITE flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_READ flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_ASYNC flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: remove XBF_DONE flag wrapper macros (Brian Foster) [1419532]
-- [fs] xfs: mode di_mode to vfs inode (Brian Foster) [1419532]
-- [fs] xfs: move di_changecount to VFS inode (Brian Foster) [1419532]
-- [fs] xfs: move inode generation count to VFS inode (Brian Foster) [1419532]
-- [fs] xfs: use vfs inode nlink field everywhere (Brian Foster) [1419532]
-- [fs] xfs: reinitialise recycled VFS inode correctly (Brian Foster) [1419532]
-- [fs] xfs: move v1 inode conversion to xfs_inode_from_disk (Brian Foster) [1419532]
-- [fs] xfs: cull unnecessary icdinode fields (Brian Foster) [1419532]
-- [fs] xfs: remove timestamps from incore inode (Brian Foster) [1419532]
-- [fs] xfs: introduce inode log format object (Brian Foster) [1419532]
-- [fs] xfs: RT bitmap and summary buffers need verifiers (Brian Foster) [1419532]
-- [fs] xfs: RT bitmap and summary buffers are not typed (Brian Foster) [1419532]
-- [fs] xfs: move struct xfs_attr_shortform to xfs_da_format.h (Brian Foster) [1419532]
-- [fs] xfs: Make xfsaild freezeable again (Brian Foster) [1419532]
-- [fs] xfs: remove unused function definitions (Brian Foster) [1419532]
-- [fs] xfs: move buffer invalidation to xfs_btree_free_block (Brian Foster) [1419532]
-- [fs] xfs: factor btree block freeing into a helper (Brian Foster) [1419532]
-- [fs] xfs: handle errors from ->free_blocks in xfs_btree_kill_iroot (Brian Foster) [1419532]
-- [fs] xfs: lock rt summary inode on allocation (Brian Foster) [1419532]
-- [fs] xfs: Change how listxattr generates synthetic attributes (Brian Foster) [1419532]
-
-* Wed Feb 15 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-565.el7]
-- [crypto] qat - zero esram only for DH85x devices (Neil Horman) [1382849]
-- [crypto] qat - fix bar discovery for c62x (Neil Horman) [1382849]
-- [crypto] qat - fix leak on error path (Neil Horman) [1382849]
-- [crypto] qat - fix incorrect accelerator mask for C3X devices (Neil Horman) [1382849]
-- [crypto] qat - fix constants table DMA (Neil Horman) [1382849]
-- [crypto] qat - fix aes-xts key sizes (Neil Horman) [1382849]
-- [crypto] qat - Stop dropping leading zeros from RSA output (Neil Horman) [1382849]
-- [crypto] qat - Add DH support (Neil Horman) [1382849]
-- [crypto] qat - Add RSA CRT mode (Neil Horman) [1382849]
-- [crypto] rsa - Store rest of the private key components (Neil Horman) [1382849]
-- [crypto] qat - Use alternative reset methods depending on the specific device (Neil Horman) [1382849]
-- [crypto] qat - Switch to new rsa_helper functions (Neil Horman) [1382849]
-- [crypto] ecdh - Add ECDH software support (Neil Horman) [1382849]
-- [crypto] dh - Add DH software implementation (Neil Horman) [1382849]
-- [crypto] kpp - Key-agreement Protocol Primitives API (KPP) (Neil Horman) [1382849]
-- [crypto] rsa - return raw integers for the ASN.1 parser (Neil Horman) [1382849]
-- [crypto] qat - Remove deprecated create_workqueue (Neil Horman) [1382849]
-- [crypto] qat - fix typos sizeof for ctx (Neil Horman) [1382849]
-- [crypto] qat - change the adf_ctl_stop_devices to void (Neil Horman) [1382849]
-- [crypto] qat - make adf_vf_isr.c dependant on IOV config (Neil Horman) [1382849]
-- [crypto] qat - Fix typo in comments (Neil Horman) [1382849]
-- [crypto] qat - fix adf_ctl_drv.c:undefined reference to adf_init_pf_wq (Neil Horman) [1382849]
-- [crypto] qat - fix invalid pf2vf_resp_wq logic (Neil Horman) [1382849]
-- [crypto] qat - fix section mismatch warning (Neil Horman) [1382849]
-- [crypto] qat - interrupts need to be enabled when VFs are disabled (Neil Horman) [1382849]
-- [crypto] qat - check if PF is running (Neil Horman) [1382849]
-- [crypto] qat - move vf2pf_init and vf2pf_exit to common (Neil Horman) [1382849]
-- [crypto] qat - adf_dev_stop should not be called in atomic context (Neil Horman) [1382849]
-- [crypto] qat - changed adf_dev_stop to void (Neil Horman) [1382849]
-- [crypto] qat - explicitly stop all VFs first (Neil Horman) [1382849]
-- [crypto] qat - fix address leaking of RSA public exponent (Neil Horman) [1382849]
-- [crypto] qat - avoid memory corruption or undefined behaviour (Neil Horman) [1382849]
-- [crypto] qat - Remove redundant nrbg rings (Neil Horman) [1382849]
-- [crypto] qat - make sure const_tab is 1024 bytes aligned (Neil Horman) [1382849]
-- [crypto] qat - remove redundant arbiter configuration (Neil Horman) [1382849]
-- [crypto] qat - Change the definition of icp_qat_uof_regtype (Neil Horman) [1382849]
-- [crypto] qat - The AE id should be less than the maximal AE number (Neil Horman) [1382849]
-- [crypto] qat - fix leak on error path (Neil Horman) [1382849]
-- [crypto] qat - Reduced reqsize in qat_algs (Neil Horman) [1382849]
-- [crypto] qat - Pack cfg ctl structs (Neil Horman) [1382849]
-- [crypto] qat - remove redundant function call (Neil Horman) [1382849]
-- [crypto] qat - change name for c6xx dev type (Neil Horman) [1382849]
-
-* Tue Feb 14 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-564.el7]
-- [x86] platform/uv: Clean up the NMI code to match current coding style (Frank Ramsay) [1416460]
-- [x86] platform/uv: Ensure uv_system_init is called when necessary (Frank Ramsay) [1416460]
-- [x86] platform/uv: Initialize PCH GPP_D_0 NMI Pin to be NMI source (Frank Ramsay) [1416460]
-- [x86] platform/uv: Verify NMI action is valid, default is standard (Frank Ramsay) [1416460]
-- [x86] platform/uv: Add basic CPU NMI health check (Frank Ramsay) [1416460]
-- [x86] platform/uv: Add Support for UV4 Hubless NMIs (Frank Ramsay) [1416460]
-- [x86] platform/uv: Add Support for UV4 Hubless systems (Frank Ramsay) [1416460]
-- [x86] platform/uv: Fix 2 socket config problem (Frank Ramsay) [1416460]
-- [x86] platform/uv: Fix panic with missing UVsystab support (Frank Ramsay) [1416460]
-- [fs] posix_acl: Clear SGID bit when setting file permissions (Andreas Grunbacher) [1371253] {CVE-2016-7097}
-- [fs] sunrpc: Remove unused callback xpo_adjust_wspace() ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Change TCP socket space reservation ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Add a server side per-connection limit ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Micro optimisation for svc_data_ready ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Call the default socket callbacks instead of open coding ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: lock the socket while detaching it ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Add tracepoints for dropped and deferred requests ("J. Bruce Fields") [1314076]
-- [fs] sunrpc: Add a tracepoint for server socket out-of-space conditions ("J. Bruce Fields") [1314076]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Implement the PD Map support for SAS3.5 Generic Megaraid Controllers (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: ldio_outstanding variable is not decremented in completion path (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Enable or Disable Fast path based on the PCI Threshold Bandwidth (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Add the Support for SAS3.5 Generic Megaraid Controllers Capabilities (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Dynamic Raid Map Changes for SAS3.5 Generic Megaraid Controllers (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: SAS3.5 Generic Megaraid Controllers Fast Path for RAID 1/10 Writes (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: SAS3.5 Generic Megaraid Controllers Stream Detection and IO Coalescing (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: EEDP Escape Mode Support for SAS3.5 Generic Megaraid Controllers (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: 128 MSIX Support (Tomas Henzl) [1356672]
-- [scsi] megaraid_sas: Add new pci device Ids for SAS3.5 Generic Megaraid Controllers (Tomas Henzl) [1356672]
-
-* Fri Feb 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-563.el7]
-- [fs] rpc: share one xps between all backchannels (Steve Dickson) [1336886]
-- [fs] sunrpc: fix xprt leak on xps allocation failure (Steve Dickson) [1336886]
-- [fs] sunrpc: Clear xpt_bc_xprt if xs_setup_bc_tcp failed (Steve Dickson) [1336886]
-- [fs] nfsd4/rpc: move backchannel create logic into rpc code (Steve Dickson) [1336886]
-- [fs] sunrpc: Fix suspicious RCU usage (Steve Dickson) [1336886]
-- [fs] NFS pnfs data server multipath session trunking (Steve Dickson) [1336886]
-- [fs] nfs4: clnt: respect noresvport when establishing connections to DSes (Steve Dickson) [1336886]
-- [fs] nfs: Fix an Oops in the pNFS files and flexfiles connection setup to the DS (Steve Dickson) [1336886]
-- [fs] NFS test session trunking with exchange id (Steve Dickson) [1336886]
-- [fs] NFS add xprt switch addrs test to match client (Steve Dickson) [1336886]
-- [fs] sunrpc: rpc_clnt_add_xprt setup function for NFS layer (Steve Dickson) [1336886]
-- [fs] SUNRPC search xprt switch for sockaddr (Steve Dickson) [1336886]
-- [fs] SUNRPC rpc_clnt_xprt_switch_add_xprt (Steve Dickson) [1336886]
-- [fs] SUNRPC rpc_clnt_xprt_switch_put (Steve Dickson) [1336886]
-- [fs] nfsv4: Cleanup the setting of the nfs4 lease period (Steve Dickson) [1336886]
-- [fs] SUNRPC remove rpc_task_release_client from rpc_task_set_client (Steve Dickson) [1336886]
-- [fs] NFS detect session trunking (Steve Dickson) [1336886]
-- [fs] NFS refactor nfs4_check_serverowner_major_id (Steve Dickson) [1336886]
-- [fs] NFS refactor nfs4_match_clientids (Steve Dickson) [1336886]
-- [fs] NFS setup async exchange_id (Steve Dickson) [1336886]
-- [fs] sunrpc: Fix infinite looping in rpc_clnt_iterate_for_each_xprt (Steve Dickson) [1336886]
-- [fs] NFS add callback_ops to nfs4_proc_bind_conn_to_session_callback (Steve Dickson) [1336886]
-- [fs] pnfs/nfsv4.1: Add multipath capabilities to pNFS flexfiles servers over NFSv3 (Steve Dickson) [1336886]
-- [fs] sunrpc: Allow addition of new transports to a struct rpc_clnt (Steve Dickson) [1336886]
-- [fs] nfsv4.1: nfs4_proc_bind_conn_to_session must iterate over all connections (Steve Dickson) [1336886]
-- [fs] sunrpc: Make NFS swap work with multipath (Steve Dickson) [1336886]
-- [fs] sunrpc: Add a helper to apply a function to all the rpc_clnt's transports (Steve Dickson) [1336886]
-- [fs] sunrpc: Allow caller to specify the transport to use (Steve Dickson) [1336886]
-- [fs] sunrpc: Use the multipath iterator to assign a transport to each task (Steve Dickson) [1336886]
-- [fs] sunrpc: Make rpc_clnt store the multipath iterators (Steve Dickson) [1336886]
-- [fs] sunrpc: Add a structure to track multiple transports (Steve Dickson) [1336886]
-- [fs] sunrpc: Make freeing of struct xprt rcu-safe (Steve Dickson) [1336886]
-- [fs] sunrpc: Uninline xprt_get(); It isn't performance critical (Steve Dickson) [1336886]
-- [fs] sunrpc: Reorder rpc_task to put waitqueue related info in same cachelines (Steve Dickson) [1336886]
-- [fs] sunrpc: Remove unused function rpc_task_reset_client (Steve Dickson) [1336886]
-
-* Fri Feb 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-562.el7]
-- [fs] ovl: fix d_real() for stacked fs (Miklos Szeredi) [1414761]
-- [fs] ovl: fsync after copy-up (Miklos Szeredi) [1414757]
-- [fs] ovl: fix get_acl() on tmpfs (Miklos Szeredi) [1412247]
-- [fs] ovl: update S_ISGID when setting posix ACLs (Miklos Szeredi) [1414755]
-- [fs] ovl: use generic_readlink (Miklos Szeredi) [1414769]
-- [fs] ovl: explain error values when removing acl from workdir (Miklos Szeredi) [1414769]
-- [fs] ovl: Fix info leak in ovl_lookup_temp() (Miklos Szeredi) [1414754]
-- [fs] ovl: lookup: do getxattr with mounter's permission (Miklos Szeredi) [1414751]
-- [fs] ovl: copy_up_xattr(): use strnlen (Miklos Szeredi) [1412277]
-- [fs] vfs: do get_write_access() on upper layer of overlayfs (Miklos Szeredi) [1414746]
-- [fs] vfs: make argument of d_real_inode() const (Miklos Szeredi) [1414746]
-- [fs] locks: fix file locking on overlayfs (Miklos Szeredi) [1414738]
-- [fs] locks: fix locks_mandatory_locked to respect file-private locks (Miklos Szeredi) [1414738]
-- [fs] vfs: update ovl inode before relatime check (Miklos Szeredi) [1351860]
-- [fs] vfs: move permission checking into notify_change() for utimes(NULL) (Miklos Szeredi) [1413988]
-- [fs] ovl: fix workdir creation (Miklos Szeredi) [1410842]
-- [fs] ovl: update doc (Miklos Szeredi) [1414769]
-- [fs] ovl: listxattr: use strnlen() (Miklos Szeredi) [1412277]
-- [fs] ovl: Switch to generic_getxattr (Miklos Szeredi) [1414769]
-- [fs] ovl: Fix OVL_XATTR_PREFIX (Miklos Szeredi) [1412270]
-- [fs] ovl: fix spelling mistake: "directries" -> "directories" (Miklos Szeredi) [1414769]
-- [fs] ovl: use cached acl on underlying layer (Miklos Szeredi) [1412247]
-- [fs] fs: add get_acl helper (Miklos Szeredi) [1412247]
-- [fs] ovl: proper cleanup of workdir (Miklos Szeredi) [1410873]
-- [fs] ovl: remove posix_acl_default from workdir (Miklos Szeredi) [1410842]
-- [fs] ovl: don't copy up opaqueness (Miklos Szeredi) [1365150]
-- [fs] revert "vfs: add lookup_hash() helper" (Miklos Szeredi) [1414769]
-- [fs] ovl: simplify empty checking (Miklos Szeredi) [1414769]
-- [fs] qstr: constify instances in overlayfs (Miklos Szeredi) [1414769]
-- [fs] ovl: disallow overlayfs as upperdir (Miklos Szeredi) [1410813]
-- [fs] ovl: fix warning (Miklos Szeredi) [1414769]
-- [fs] ovl: remove duplicated include from super.c (Miklos Szeredi) [1414769]
-- [fs] ovl: permission: return ECHILD instead of ENOENT (Miklos Szeredi) [1414769]
-- [fs] ovl: update atime on upper (Miklos Szeredi) [1351860]
-- [fs] ovl: fixed coding style warning (Miklos Szeredi) [1414769]
-- [fs] ovl: honor flag MS_SILENT at mount (Miklos Szeredi) [1414769]
-- [fs] fs/overlayfs/super.c needs pagemap.h (Miklos Szeredi) [1414769]
-- [fs] wrappers for ->i_mutex access (Miklos Szeredi) [1414769]
-- [fs] nfs: Fix inode corruption in nfs_prime_dcache() (Benjamin Coddington) [1416532]
-- [fs] nfs: Don't let readdirplus revalidate an inode that was marked as stale (Benjamin Coddington) [1416532]
-- [fs] gfs2: Reduce contention on gfs2_log_lock (Robert S Peterson) [1406850]
-- [fs] gfs2: Inline function meta_lo_add (Robert S Peterson) [1406850]
-- [fs] gfs2: Switch tr_touched to flag in transaction (Robert S Peterson) [1406850]
-- [fs] gfs2: Wake up io waiters whenever a flush is done (Robert S Peterson) [1404301]
-- [fs] gfs2: Made logd daemon take into account log demand (Robert S Peterson) [1404301]
-- [fs] gfs2: Limit number of transaction blocks requested for truncates (Robert S Peterson) [1404301]
-
-* Thu Feb 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-561.el7]
-- [fs] fscache: Fix dead object requeue (David Howells) [1415402]
-- [fs] fscache: Clear outstanding writes when disabling a cookie (David Howells) [1371381]
-- [fs] fs-cache: Initialise stores_lock in netfs cookie (David Howells) [1371381]
-- [fs] dlm: free workqueues after the connections (Marcelo Leitner) [1383710]
-- [fs] xfs: Document error handlers behavior (Carlos Maiolino) [1077671]
-- [fs] xfs: remove racy hasattr check from attr ops (Brian Foster) [1395538]
-- [fs] xfs: ioends require logically contiguous file offsets (Brian Foster) [1398005]
-- [fs] xfs: don't chain ioends during writepage submission (Brian Foster) [1398005]
-- [fs] xfs: factor mapping out of xfs_do_writepage (Brian Foster) [1398005]
-- [fs] xfs: xfs_cluster_write is redundant (Brian Foster) [1398005]
-- [fs] xfs: Introduce writeback context for writepages (Brian Foster) [1398005]
-- [fs] xfs: remove xfs_cancel_ioend (Brian Foster) [1398005]
-- [fs] xfs: remove nonblocking mode from xfs_vm_writepage (Brian Foster) [1398005]
-- [fs] mm/filemap.c: make global sync not clear error status of individual inodes (Brian Foster) [1398005]
-- [mm] mmap.c: fix arithmetic overflow in __vm_enough_memory() (Jerome Marchand) [1413503]
-- [lib] uuid.c: use correct offset in uuid parser (Tarun Gupta) [1412840]
-- [scsi] virtio-scsi: Fix endianess bug in virtscsi_queuecommand (Thomas Huth) [1413921]
-- [nvme] apply DELAY_BEFORE_CHK_RDY quirk at probe time too (Gustavo Duarte) [1409122]
-- [misc] genwqe: Fix bad page access during abort of resource allocation (Gustavo Duarte) [1384401]
-- [misc] genwqe: ensure zero initialization (Gustavo Duarte) [1384401]
-- [netdrv] r8169: fix the typo in the comment (Corinna Vinschen) [1394855]
-- [netdrv] r8169: add support for RTL8168 series add-on card (Corinna Vinschen) [1394855]
-- [netdrv] r8169: Add support for restarting auto-negotiation (Corinna Vinschen) [1394855]
-- [netdrv] r8169: set coherent DMA mask as well as streaming DMA mask (Corinna Vinschen) [1394855]
-- [netdrv] r8169: fix nic may not work after changing mac address (Corinna Vinschen) [1394855]
-- [netdrv] r8169: add checking driver's runtime pm status in rtl8169_get_ethtool_stats() (Corinna Vinschen) [1394855]
-- [netdrv] r8169: fix kernel log spam when set or get hardware wol setting (Corinna Vinschen) [1394855]
-- [netdrv] r8169: default to 64-bit DMA on recent PCIe chips (Corinna Vinschen) [1394855]
-- [netdrv] revert "bnx2: Reset device during driver initialization" (Neil Horman) [1417836]
-- [cpuidle] menu: Fix menu_select() for CPUIDLE_DRIVER_STATE_START == 0 (Gustavo Duarte) [1409211]
-- [powercap] rapl: reduce message loglevel (Prarit Bhargava) [1178491]
-
-* Wed Feb 08 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-560.el7]
-- [xen] events: use xen_vcpu_id mapping for EVTCHNOP_status (Vitaly Kuznetsov) [1396554]
-- [xen] change the type of xen_vcpu_id to uint32_t (Vitaly Kuznetsov) [1396554]
-- [x86] xen/pvhvm: run xen_vcpu_setup() for the boot CPU (Vitaly Kuznetsov) [1396554]
-- [xen] events: use xen_vcpu_id mapping in events_base (Vitaly Kuznetsov) [1396554]
-- [x86] xen: use xen_vcpu_id mapping when pointing vcpu_info to shared_info (Vitaly Kuznetsov) [1396554]
-- [x86] xen: use xen_vcpu_id mapping for HYPERVISOR_vcpu_op (Vitaly Kuznetsov) [1396554]
-- [xen] introduce xen_vcpu_id mapping (Vitaly Kuznetsov) [1396554]
-- [x86] acpi: store ACPI ids from MADT for future usage (Vitaly Kuznetsov) [1396554]
-- [x86] x86 / acpi: simplify _acpi_map_lsapic() (Vitaly Kuznetsov) [1396554]
-- [x86] kvm: x86: Introduce segmented_write_std (Bandan Das) [1356762]
-- [x86] kvm: x86: emulate FXSAVE and FXRSTOR (Bandan Das) [1356762]
-- [x86] kvm: x86: add asm_safe wrapper (Bandan Das) [1356762]
-- [x86] kvm: x86: save one bit in ctxt->d (Bandan Das) [1356762]
-- [x86] kvm: x86: add Align16 instruction flag (Bandan Das) [1356762]
-- [x86] kvm: x86: don't print warning messages for unimplemented msrs (Bandan Das) [1297021]
-- [x86] intel_idle: Add Knights Mill CPUID (Steve Best) [1381259]
-- [x86] cpufreq: Use Intel family name macros for the intel_pstate cpufreq driver (Steve Best) [1416559]
-- [x86] perf/x86: Honor the architectural performance monitoring version (Cathy Avery) [1370023]
-- [vfio] vfio/type1: Remove pid_namespace.h include (Tarun Gupta) [1412329]
-- [vfio] iommu type1: fix the testing of capability for remote task (Tarun Gupta) [1412329]
-- [kernel] capability: export has_capability (Tarun Gupta) [1412329]
-- [kernel] taint/module: Fix problems when out-of-kernel driver defines true or false (Joe Lawrence) [1369704]
-- [kernel] taint/module: Clean up global and module taint flags handling (Joe Lawrence) [1369704]
-- [kernel] kernel/panic.c: reduce 1 byte usage for print tainted buffer (Joe Lawrence) [1369704]
-- [kernel] livepatch/module: print notice of TAINT_LIVEPATCH (Joe Lawrence) [1369704]
-- [kernel] livepatch/module: make TAINT_LIVEPATCH module-specific (Joe Lawrence) [1369704]
-- [kernel] debugobjects: Reduce contention on the global pool_lock (Waiman Long) [1078823]
-- [kernel] debugobjects: Scale thresholds with # of CPUs (Waiman Long) [1078823]
-- [kernel] debugobjects: track number of kmem_cache_alloc/kmem_cache_free done (Waiman Long) [1078823]
-- [kernel] debugobjects: Allow bigger number of early boot objects (Waiman Long) [1078823]
-
-* Tue Feb 07 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-559.el7]
-- [scsi] mpt3sas: fix hang on ata passthrough commands (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Unblock device after controller reset (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix secure erase premature termination (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix for block device of raid exists even after deleting raid disk (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: fix some spelling mistakes in message and comments (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Bump driver version as "14.101.00.00" (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix for Endianness issue (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Use the new MPI 2.6 32-bit Atomic Request Descriptors for SAS35 devices (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: set EEDP-escape-flags for SAS35 devices (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Increased/Additional MSIX support for SAS35 devices (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Added Device ID's for SAS35 devices and updated MPI header (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Bump driver version as "14.100.00.00" (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Remove unused macro "MPT_DEVICE_TLR_ON" (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Implement device_remove_in_progress check in IOCTL path (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix for incorrect numbers for MSIX vectors enabled when non RDPQ card is enumerated first (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix for improper info displayed in var log, while blocking or unblocking the device (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix resume on WarpDrive flash cards (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Don't spam logs if logging level is 0 (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Fix warnings exposed by W=1 (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Eliminate dead sleep_flag code (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Eliminate conditional locking in mpt3sas_scsih_issue_tm() (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: Ensure the connector_name string is NUL-terminated (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: avoid mpt3sas_transport_port_add NULL parent_dev (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: set num_phys after allocating phy space (Tomas Henzl) [1306453]
-- [scsi] mpt3sas: add missing curly braces (Tomas Henzl) [1306453]
-
-* Mon Feb 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-558.el7]
-- [net] sctp: sctp_addr_id2transport should verify the addr before looking up assoc (Xin Long) [1414389]
-- [net] netlink: Fix dump skb leak/double free (Hangbin Liu) [1414293] {CVE-2016-9806}
-- [net] openvswitch: Remove incorrect WARN_ONCE() (Lance Richardson) [1414587]
-- [net] ipv4: use l4 hash for locally generated multipath flows (Paolo Abeni) [1278833]
-- [net] flowi: introduce get_hash_from_flowi4 (Paolo Abeni) [1278833]
-- [net] sctp: do not loose window information if in rwnd_over (Marcelo Leitner) [1084802]
-- [net] sctp: fix recovering from 0 win with small data chunks (Marcelo Leitner) [1084802]
-- [net] igmp: Make igmp group member RFC 3376 compliant (Hangbin Liu) [1391428]
-- [net] tcp: take care of truncations done by sk_filter() (Davide Caratti) [1400217] {CVE-2016-8645}
-- [net] add sk_filter_trim_cap (Davide Caratti) [1400217] {CVE-2016-8645}
-- [net] tcp: allow to enable the repair mode for non-listening sockets (Adrian Reber) [1406475]
-- [net] flow: Fix CPU hotplug callback registration (Florian Westphal) [1401795]
-- [net] tcp: warn on bogus MSS and try to amend it (Marcelo Leitner) [1401701]
-- [net] netfilter: ipt_CLUSTERIP: use proper net namespace to operate CLUSTERIP (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: create proc entry under proper ipt_CLUSTERIP directory (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: add parameter net in clusterip_config_find_get (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: make clusterip_lock per net namespace (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: make clusterip_list per net namespace (Eelco Chaudron) [1385923]
-- [net] netfilter: ipt_CLUSTERIP: make proc directory per net namespace (Eelco Chaudron) [1385923]
-- [net] sctp: implement rfc6458, 8.1.31. SCTP_DEFAULT_SNDINFO support (Xin Long) [1339791]
-- [net] sctp: implement rfc6458, 5.3.6. SCTP_NXTINFO cmsg support (Xin Long) [1339791]
-- [net] sctp: implement rfc6458, 5.3.5. SCTP_RCVINFO cmsg support (Xin Long) [1339791]
-- [net] sctp: implement rfc6458, 5.3.4. SCTP_SNDINFO cmsg support (Xin Long) [1339791]
-- [net] sctp: fix information leaks in ulpevent layer (Xin Long) [1339791]
-- [net] openvswitch: avoid resetting flow key while installing new flow (Thadeu Lima de Souza Cascardo) [1391696]
-- [net] openvswitch: Fix Frame-size larger than 1024 bytes warning (Thadeu Lima de Souza Cascardo) [1391696]
-- [net] openvswitch: use percpu flow stats (Thadeu Lima de Souza Cascardo) [1391696]
-- [net] openvswitch: fix flow stats accounting when node 0 is not possible (Thadeu Lima de Souza Cascardo) [1391696]
-- [net] sctp: hold transport instead of assoc when lookup assoc in rx path (Xin Long) [1371028]
-- [net] sctp: return back transport in __sctp_rcv_init_lookup (Xin Long) [1371028]
-- [net] sctp: hold transport instead of assoc in sctp_diag (Xin Long) [1371028]
-- [net] sctp: fix the issue sctp_diag uses lock_sock in rcu_read_lock (Xin Long) [1371028]
-- [net] tcp: allow dctcp alpha to drop to zero (Florian Westphal) [1370638]
-- [net] inet: add IP_BIND_ADDRESS_NO_PORT to overcome bind(0) limitations (Davide Caratti) [1374498]
-- [net] tcp: add an ability to dump and restore window parameters (Jacob Tanenbaum) [1352642]
-
-* Mon Feb 06 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-557.el7]
-- [scsi] sg_write()/bsg_write() is not fit to be called under KERNEL_DS (Ewan Milne) [1414834] {CVE-2016-10088 CVE-2016-9576}
-- [scsi] Add intermediate STARGET_REMOVE state to scsi_target_state (Ewan Milne) [1365651]
-- [scsi] restart list search after unlock in scsi_remove_target (Ewan Milne) [1365651]
-- [scsi] lpfc: driver update for rhel7.4 rev 11.2.0.6 (Rob Evers) [1382101]
-- [scsi] lpfc: Adding the lpfc_use_blk_mq module parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Fix few small typos in lpfc_scsi.c (Rob Evers) [1382101]
-- [scsi] lpfc: Fix sg_reset on SCSI device causing kernel crash (Rob Evers) [1382101]
-- [scsi] lpfc: Correct issue leading to oops during link reset (Rob Evers) [1382101]
-- [scsi] lpfc: Correct error in setting OS Driver Version with FW (Rob Evers) [1382101]
-- [scsi] lpfc: Clear the VendorVersion in the PLOGI/PLOGI ACC payload (Rob Evers) [1382101]
-- [scsi] lpfc: Correct host name in symbolic_name field (Rob Evers) [1382101]
-- [scsi] lpfc: FCoE VPort enable-disable does not bring up the VPort (Rob Evers) [1382101]
-- [scsi] lpfc: Fix Xlane dynamic LUN set for LUN priority (Rob Evers) [1382101]
-- [scsi] lpfc: Deprecate lpfc_prot_sg_seg_cnt parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Correct oops on vport port resets (Rob Evers) [1382101]
-- [scsi] lpfc: Add missing memory barrier (Rob Evers) [1382101]
-- [scsi] lpfc: fix oops/BUG in lpfc_sli_ringtxcmpl_put() (Rob Evers) [1382101]
-- [scsi] lpfc: Fix possible NULL pointer dereference (Rob Evers) [1382101]
-- [scsi] lpfc: Use zd format string for size_t (Rob Evers) [1382101]
-- [scsi] lpfc: Fix fw download on SLI-4 FC adapters (Rob Evers) [1382101]
-- [scsi] lpfc: Synchronize link speed with boot driver (Rob Evers) [1382101]
-- [scsi] lpfc: Correct panics with eh_timeout and eh_deadline (Rob Evers) [1382101]
-- [scsi] lpfc: Fix lost target in pt-to-pt connect (Rob Evers) [1382101]
-- [scsi] lpfc: Revise strings with full lpfc parameter name (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_sriov_nr_virtfn parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_max_scsicmpl_time parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_topology parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_aer_support parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code cleanup for lpfc_enable_rrq parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Code clean up for lpfc_iocb_cnt parameter (Rob Evers) [1382101]
-- [scsi] lpfc: Set driver environment data on adapter (Rob Evers) [1382101]
-- [scsi] lpfc: Correct embedded io wq element size (Rob Evers) [1382101]
-- [scsi] lpfc: Mark symbols static where possible (Rob Evers) [1382101]
-- [scsi] lpfc: fix oops in lpfc_sli4_scmd_to_wqidx_distr() from lpfc_send_taskmgmt() (Rob Evers) [1382101]
-- [scsi] lpfc: Add support for using block multi-queue (Rob Evers) [1382101]
-- [scsi] lpfc: avoid harmless comparison warning (Rob Evers) [1382101]
-- [scsi] lpfc: call lpfc_sli_validate_fcp_iocb() with the hbalock held (Rob Evers) [1382101]
-- [scsi] lpfc: Copyright updates (Rob Evers) [1382101]
-- [scsi] lpfc: Correct issue with ioremap() call on 32bit kernel (Rob Evers) [1382101]
-- [scsi] lpfc: Re-organize source for easier driver attribute management (Rob Evers) [1382101]
-- [scsi] lpfc: Remove global lpfc_sli_mode attribute in leiu of per-hba lpfc_sli_mode (Rob Evers) [1382101]
-- [scsi] lpfc: Remove global lpfc_delay_discovery attribute in leiu of per-hba lpfc_delay_discovery (Rob Evers) [1382101]
-- [scsi] lpfc: Remove global lpfc_enable_npiv attribute in leiu of per-hba lpfc_enable_npiv (Rob Evers) [1382101]
-- [scsi] lpfc: Correct Port reset resulting in FC port going offline (Rob Evers) [1382101]
-- [scsi] lpfc: Add support for XLane LUN priority (Rob Evers) [1382101]
-- [scsi] lpfc: Correct RDP response Revision location (Rob Evers) [1382101]
-- [scsi] lpfc: Re-organize source for easier device-id management (Rob Evers) [1382101]
-- [scsi] lpfc: Correct FCOE discovery to avoid loss of storage devices after system reboot (Rob Evers) [1382101]
-- [scsi] lpfc: Fix SLI mode 2 config failure (Rob Evers) [1382101]
-- [scsi] lpfc: Add MDS Diagnostics Support (Rob Evers) [1382101]
-- [scsi] lpfc: Add recovery from adapter parity errors on some SLI4 adapters (Rob Evers) [1382101]
-- [scsi] lpfc: Utilize embedded CDB logic to minimize IO latency (Rob Evers) [1382101]
-- [scsi] lpfc: Add sysfs proc_name support (Rob Evers) [1382101]
-- [scsi] lpfc: Disable FDMI probing if not connected to a fabric (Rob Evers) [1382101]
-- [scsi] lpfc: Reject RDP ELS if port has no login (Rob Evers) [1382101]
-- [scsi] lpfc: Correct Buffer credit descriptor values in RDP response (Rob Evers) [1382101]
-- [scsi] lpfc: Correct RDP response sizing issue (Rob Evers) [1382101]
-- [scsi] lpfc: Fix Transgression Flag of Optical Element descriptor for RDP on Linux (Rob Evers) [1382101]
-
-* Fri Feb 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-556.el7]
-- [md] raid5: Use correct IS_ERR() variation on pointer check (Jes Sorensen) [1380016]
-- [md] separate flags for superblock changes (Jes Sorensen) [1380016]
-- [md] MD_RECOVERY_NEEDED is set for mddev->recovery (Jes Sorensen) [1380016]
-- [md] takeover should clear unrelated bits (Jes Sorensen) [1380016]
-- [md] r5cache: after recovery, increase journal seq by 10000 (Jes Sorensen) [1380016]
-- [md] raid5-cache: fix crc in rewrite_data_only_stripes() (Jes Sorensen) [1380016]
-- [md] raid5-cache: no recovery is required when create super-block (Jes Sorensen) [1380016]
-- [md] fix refcount problem on mddev when stopping array (Jes Sorensen) [1380016]
-- [md] r5cache: do r5c_update_log_state after log recovery (Jes Sorensen) [1380016]
-- [md] raid5-cache: adjust the write position of the empty block if no data blocks (Jes Sorensen) [1380016]
-- [md] r5cache: run_no_space_stripes() when R5C_LOG_CRITICAL == 0 (Jes Sorensen) [1380016]
-- [md] raid5: limit request size according to implementation limits (Jes Sorensen) [1380016]
-- [md] raid5-cache: do not need to set STRIPE_PREREAD_ACTIVE repeatedly (Jes Sorensen) [1380016]
-- [md] raid5-cache: remove the unnecessary next_cp_seq field from the r5l_log (Jes Sorensen) [1380016]
-- [md] raid5-cache: release the stripe_head at the appropriate location (Jes Sorensen) [1380016]
-- [md] raid5-cache: use ring add to prevent overflow (Jes Sorensen) [1380016]
-- [md] raid5-cache: remove unnecessary function parameters (Jes Sorensen) [1380016]
-- [md] raid5-cache: don't set STRIPE_R5C_PARTIAL_STRIPE flag while load stripe into cache (Jes Sorensen) [1380016]
-- [md] raid5-cache: add another check conditon before replaying one stripe (Jes Sorensen) [1380016]
-- [md] r5cache: enable IRQs on error path (Jes Sorensen) [1380016]
-- [md] r5cache: handle alloc_page failure (Jes Sorensen) [1380016]
-- [md] stop write should stop journal reclaim (Jes Sorensen) [1380016]
-- [md] raid10: add failfast handling for writes (Jes Sorensen) [1380016]
-- [md] raid10: add failfast handling for reads (Jes Sorensen) [1380016]
-- [md] raid1: add failfast handling for writes (Jes Sorensen) [1380016]
-- [md] raid1: add failfast handling for reads (Jes Sorensen) [1380016]
-- [md] Use REQ_FAILFAST_* on metadata writes where appropriate (Jes Sorensen) [1380016]
-- [md] failfast: add failfast flag for md to be used by some personalities (Jes Sorensen) [1380016]
-- [md] r5cache: r5cache recovery: part 2 (Jes Sorensen) [1380016]
-- [md] r5cache: r5cache recovery: part 1 (Jes Sorensen) [1380016]
-- [md] r5cache: refactoring journal recovery code (Jes Sorensen) [1380016]
-- [md] r5cache: sysfs entry journal_mode (Jes Sorensen) [1380016]
-- [md] r5cache: write-out phase and reclaim support (Jes Sorensen) [1380016]
-- [md] r5cache: caching phase of r5cache (Jes Sorensen) [1380016]
-- [md] r5cache: State machine for raid5-cache write back mode (Jes Sorensen) [1380016]
-- [md] r5cache: move some code to raid5.h (Jes Sorensen) [1380016]
-- [md] r5cache: Check array size in r5l_init_log (Jes Sorensen) [1380016]
-- [md] raid5-cache: fix lockdep warning (Jes Sorensen) [1380016]
-- [md] remove md_super_wait() call after bitmap_flush() (Jes Sorensen) [1380016]
-- [md] raid1: fix: IO can block resync indefinitely (Jes Sorensen) [1379764 1380016]
-- [md] bitmap: Don't write bitmap while earlier writes might be in-flight (Jes Sorensen) [1380016]
-- [md] perform async updates for metadata where possible (Jes Sorensen) [1380016]
-- [md] raid5-cache: restrict the use area of the log_offset variable (Jes Sorensen) [1380016]
-- [md] raid5: change printk() to pr_*() (Jes Sorensen) [1380016]
-- [md] raid10: change printk() to pr_*() (Jes Sorensen) [1380016]
-- [md] raid1: change printk() to pr_*() (Jes Sorensen) [1380016]
-- [md] raid0: replace printk() with pr_*() (Jes Sorensen) [1380016]
-- [md] multipath: replace printk() with pr_*() (Jes Sorensen) [1380016]
-- [md] linear: replace printk() with pr_*() (Jes Sorensen) [1380016]
-- [md] bitmap: change all printk() to pr_*() (Jes Sorensen) [1380016]
-- [md] change all printk() to pr_err() or pr_warn() etc (Jes Sorensen) [1380016]
-- [md] fix some issues with alloc_disk_sb() (Jes Sorensen) [1380016]
-- [md] bitmap: call bitmap_file_unmap once bitmap_storage_alloc returns -ENOMEM (Jes Sorensen) [1380016]
-- [md] raid5: revert commit 11367799f3d1 (Jes Sorensen) [1380016]
-- [md] wake up personality thread after array state update (Jes Sorensen) [1380016]
-- [md] don't fail an array if there are unacknowledged bad blocks (Jes Sorensen) [1380016]
-- [md] add bad block support for external metadata (Jes Sorensen) [1380016]
-- [md] be careful not lot leak internal curr_resync value into metadata. -- (all) (Jes Sorensen) [1380016]
-- [md] raid1: handle read error also in readonly mode (Jes Sorensen) [1380016]
-- [md] raid5-cache: correct condition for empty metadata write (Jes Sorensen) [1380016]
-- [md] report 'write_pending' state when array in sync (Jes Sorensen) [1380016]
-- [md] raid5: write an empty meta-block when creating log super-block (Jes Sorensen) [1380016]
-- [md] raid5: initialize next_checkpoint field before use (Jes Sorensen) [1380016]
-- [md] set rotational bit (Jes Sorensen) [1380016]
-- [md] fix a potential deadlock (Jes Sorensen) [1380016]
-- [md] raid5: allow arbitrary max_hw_sectors (Jes Sorensen) [1380016]
-- [md] lib/raid6: Add AVX512 optimized recovery functions (Jes Sorensen) [1380016]
-- [md] lib/raid6: Add AVX512 optimized gen_syndrome functions (Jes Sorensen) [1380016]
-- [md] changes for MD_STILL_CLOSED flag (Jes Sorensen) [1380016]
-- [md] raid5: fix a small race condition (Jes Sorensen) [1380016]
-- [md] raid5: guarantee enough stripes to avoid reshape hang (Jes Sorensen) [1380016]
-- [md] raid5-cache: fix a deadlock in superblock write (Jes Sorensen) [1380016]
-- [md] raid5: avoid unnecessary bio data set (Jes Sorensen) [1380016]
-- [md] raid5: fix memory leak of bio integrity data (Jes Sorensen) [1380016]
-- [md] raid10: record correct address of bad block (Jes Sorensen) [1380016]
-- [md] r5cache: set MD_JOURNAL_CLEAN correctly (Jes Sorensen) [1380016]
-- [md] don't print the same repeated messages about delayed sync operation (Jes Sorensen) [1380016]
-- [md] do not count journal as spare in GET_ARRAY_INFO (Jes Sorensen) [1380016]
-- [md] Prevent IO hold during accessing to faulty raid5 array (Jes Sorensen) [1380016]
-- [md] hold mddev lock to change bitmap location (Jes Sorensen) [1380016]
-- [md] raid5: fix incorrectly counter of conf->empty_inactive_list_nr (Jes Sorensen) [1380016]
-- [md] fix null pointer deference (Jes Sorensen) [1380016]
-- [md] raid10: improve random reads performance (Jes Sorensen) [1380016]
-- [md] add missing sysfs_notify on array_state update (Jes Sorensen) [1380016]
-- [md] Fix kernel module refcount handling (Jes Sorensen) [1380016]
-- [md] documentation: fix wrong value in md.txt (Jes Sorensen) [1380016]
-- [md] reduce the number of synchronize_rcu() calls when multiple devices fail (Jes Sorensen) [1380016]
-- [md] be extra careful not to take a reference to a Faulty device (Jes Sorensen) [1380016]
-- [md] multipath: add rcu protection to rdev access in multipath_status (Jes Sorensen) [1380016]
-- [md] raid5: add rcu protection to rdev accesses in raid5_status (Jes Sorensen) [1380016]
-- [md] raid5: add rcu protection to rdev accesses in want_replace (Jes Sorensen) [1380016]
-- [md] raid5: add rcu protection to rdev accesses in handle_failed_sync (Jes Sorensen) [1380016]
-- [md] raid1: add rcu protection to rdev in fix_read_error (Jes Sorensen) [1380016]
-- [md] raid1: small code cleanup in end_sync_write (Jes Sorensen) [1380016]
-- [md] raid1: small cleanup in raid1_end_read/write_request (Jes Sorensen) [1380016]
-- [md] raid10: simplify print_conf a little (Jes Sorensen) [1380016]
-- [md] raid10: minor code improvement in fix_read_error() (Jes Sorensen) [1380016]
-- [md] raid10: add rcu protection to rdev access during reshape (Jes Sorensen) [1380016]
-- [md] raid10: add rcu protection to rdev access in raid10_sync_request (Jes Sorensen) [1380016]
-- [md] raid10: add rcu protection in raid10_status (Jes Sorensen) [1380016]
-- [md] raid10: fix refounct imbalance when resyncing an array with a replacement device (Jes Sorensen) [1380016]
-- [md] raid1, raid10: don't recheck "Faulty" flag in read-balance (Jes Sorensen) [1380016]
-- [md] disconnect device from personality before trying to remove it (Jes Sorensen) [1380016]
-- [md] MD:Update superblock when err == 0 in size_store (Jes Sorensen) [1380016]
-- [md] use a mutex to protect a global list (Jes Sorensen) [1380016]
-- [md] simplify the code with md_kick_rdev_from_array (Jes Sorensen) [1380016]
-- [md] right meaning of PARITY_ENABLE_RMW and PARITY_PREFER_RMW (Jes Sorensen) [1380016]
-- [md] set MD_CHANGE_PENDING in a atomic region (Jes Sorensen) [1380016]
-- [md] md.c: fix oops in mddev_suspend for raid0 (Jes Sorensen) [1380016]
-- [md] bitmap: clear bitmap if bitmap_create failed (Jes Sorensen) [1380016]
-- [md] warn for potential deadlock (Jes Sorensen) [1380016]
-
-* Fri Feb 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-555.el7]
-- [acpi] acpi / apd: Add clock frequency for future AMD I2C controller (Suravee Suthikulpanit) [1354637]
-- [acpi] acpi / apd: Add APM X-Gene ACPI I2C device support (Suravee Suthikulpanit) [1354637]
-- [acpi] Remove clk.h include (Suravee Suthikulpanit) [1354637]
-- [acpi] acpi / apd: Remove CLK_IS_ROOT (Suravee Suthikulpanit) [1354637]
-- [i2c] designware: Add device HID for future AMD I2C controller (Suravee Suthikulpanit) [1354637]
-- [i2c] designware: fix IO timeout issue for AMD controller (Suravee Suthikulpanit) [1354637]
-- [include] gpio: Increase ARCH_NR_GPIOs to 512 (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Drop pinctrl_unregister for devm_ registered device (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: avoid maybe-uninitalized warning (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: white space cleanups in amd_gpio_dbg_show() (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: fix compilation warning (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Set the level based on ACPI tables (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Add support for additional GPIO (Suravee Suthikulpanit) [1329005]
-- [gpio] amdpt: Add a new ACPI HID (Suravee Suthikulpanit) [1329005]
-- [gpio] driver for AMD Promontory (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Use devm_pinctrl_register() for pinctrl registration (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Add device HID for future AMD GPIO controller (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: switch to using a bool for level (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Configure GPIO register using BIOS settings (Suravee Suthikulpanit) [1329005]
-- [pinctrl] amd: Remove the default de-bounce time (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Fix return value check in amd_gpio_probe() (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Use irq_desc_get_xxx() to avoid redundant lookup of irq_desc (Suravee Suthikulpanit) [1329005]
-- [pinctrl] make pinctrl_register() return proper error code (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Remove .owner field (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Fix inconsistent spinlock of AMD GPIO driver which can be recognized by static analysis tool smatch. Declare constant Variables with Sparse's suggestion (Suravee Suthikulpanit) [1329005]
-- [pinctrl] Turn AMD support to tristate (Suravee Suthikulpanit) [1329005]
-- [pinctrl] add AMD GPIO driver support (Suravee Suthikulpanit) [1329005]
-- [kernel] genirq: Export handle_bad_irq (Suravee Suthikulpanit) [1329005]
-- [pinctrl] zynq: Use devm_pinctrl_register() for pinctrl registration (Suravee Suthikulpanit) [1329005]
-- [gpio] pinctrl: Add devm_ apis for pinctrl_{register, unregister} (Suravee Suthikulpanit) [1329005]
-- [base] platform_device: use a macro instead of platform_driver_register (Suravee Suthikulpanit) [1329005]
-- [acpi] acpica: Add "Windows 2015" string to _OSI support (Suravee Suthikulpanit) [1329005 1354637]
-
-* Fri Feb 03 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-554.el7]
-- [netdrv] igb: re-assign hw address pointer on reset after PCI error (Gustavo Duarte) [1413043]
-- [netdrv] netvsc: add rcu_read locking to netvsc callback (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: remove excessive logging on MTU change (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: fix a race between netvsc_send() and netvsc_init_buf() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: fix comments (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: count multicast packets received (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: remove VF in flight counters (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: use RCU to protect vf_netdev (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: improve VF device matching (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: simplify callback event code (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: dev hold/put reference to VF (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: use consume_skb (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: make variable local (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: make netvsc_destroy_buf void (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: refactor completion function (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: init completion during alloc (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: make device_remove void (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: use ARRAY_SIZE() for NDIS versions (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: style cleanups (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: Add handler for physical link speed change (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: Add query for initial physical link speed (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: use kcalloc (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: make RSS hash key static (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: fix rtnl locking in callback (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: Implement batching of receive completions (Vitaly Kuznetsov) [1395600]
-- [netdrv] netvsc: Use the new in-place consumption APIs in the rx path (Vitaly Kuznetsov) [1395600]
-- [netdrv] netvsc: get rid of completion timeouts (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: pass struct net_device to rndis_filter_set_offload_params() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: pass struct net_device to rndis_filter_set_device_mac() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: pass struct netvsc_device to rndis_filter_{open, close}() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: introduce {net, hv}_device_to_netvsc_device() helpers (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv_netvsc: remove redundant assignment in netvsc_recv_callback() (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv: vmbus: Implement APIs to support "in place" consumption of vmbus packets (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv: vmbus: Move some ring buffer functions to hyperv.h (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv: vmbus: Export the vmbus_set_event() API (Vitaly Kuznetsov) [1395600]
-- [netdrv] hv: vmbus: define a new VMBus message type for hvsock (Vitaly Kuznetsov) [1395600]
-
-* Thu Feb 02 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-553.el7]
-- [kernel] timekeeping: Increment clock_was_set_seq in timekeeping_init() (Prarit Bhargava) [1409214]
-- [kernel] timekeeping: Use timekeeping_update() instead of memcpy() (Prarit Bhargava) [1409214]
-- [s390] pci: query fmb length (Hendrik Brueckner) [1400157]
-- [s390] pci: fmb enhancements (Hendrik Brueckner) [1400157]
-- [s390] pci: use unique UIDs for domain enumeration (Hendrik Brueckner) [1380776]
-- [s390] pci: add some new arch specific pci attributes (Hendrik Brueckner) [1380776]
-- [s390] pci: use macro for attribute creation (Hendrik Brueckner) [1380776]
-- [s390] add support for ipl devices in subchannel sets > 0 (Hendrik Brueckner) [1381848]
-- [s390] ipl: cleanup macro usage (Hendrik Brueckner) [1381848]
-- [s390] ipl: cleanup shutdown_action attributes (Hendrik Brueckner) [1381848]
-- [s390] ipl: cleanup bin attr usage (Hendrik Brueckner) [1381848]
-- [s390] dasd: Add new ioctl BIODASDCHECKFMT (Hendrik Brueckner) [1380773]
-- [s390] dasd: Refactor dasd format functions (Hendrik Brueckner) [1380773]
-- [s390] dasd: Simplify code in format logic (Hendrik Brueckner) [1380773]
-- [s390] dasd: Improve dasd format code (Hendrik Brueckner) [1380773]
-- [s390] dasd: channel path aware error recovery (Hendrik Brueckner) [1380771]
-- [s390] dasd: extend dasd path handling (Hendrik Brueckner) [1380771]
-- [s390] dasd: fix double free in dasd_eckd_read_conf (Hendrik Brueckner) [1380771]
-- [s390] cio: introduce pathmask_to_pos (Hendrik Brueckner) [1380771]
-- [s390] dasd: make query host access interruptible (Hendrik Brueckner) [1274412]
-- [s390] dasd: add query host access to volume support (Hendrik Brueckner) [1274412]
-- [s390] dasd: fix failing CUIR assignment under LPAR (Hendrik Brueckner) [1274456]
-- [s390] dasd: enhance CUIR scope detection (Hendrik Brueckner) [1274456]
-- [s390] dasd: add support for control unit initiated reconfiguration (Hendrik Brueckner) [1274456]
-- [s390] kernel/ap_bus: Fix hang condition on crypto card config-off (Hendrik Brueckner) [1413663]
-- [s390] sysinfo: show partition extended name and UUID if available (Hendrik Brueckner) [1413122]
-- [s390] zcrypt: Improved invalid domain response handling (Hendrik Brueckner) [1413662]
-
-* Mon Jan 30 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-552.el7]
-- [kernel] vfio-mdev: fix non-standard ioctl return val causing i386 build fail (Tarun Gupta) [1116064]
-- [vfio] vfio-pci: Handle error from pci_iomap (Tarun Gupta) [1116064]
-- [samples] vfio-mdev: Make mdev_device private and abstract interfaces (Tarun Gupta) [1116064]
-- [samples] vfio-mdev: Make mdev_parent private (Tarun Gupta) [1116064]
-- [samples] vfio-mdev: de-polute the namespace, rename parent_device & parent_ops (Tarun Gupta) [1116064]
-- [vfio] vfio-mdev: Fix remove race (Tarun Gupta) [1116064]
-- [vfio] type1: Restore mapping performance with mdev support (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Fix size argument to vfio_find_dma() in pin_pages/unpin_pages (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Fix size argument to vfio_find_dma() during DMA UNMAP (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: WARN_ON if notifier block is not unregistered (Tarun Gupta) [1116064]
-- [virt] kvm: set/clear kvm to/from vfio_group when group add/delete (Tarun Gupta) [1116064]
-- [kernel] vfio: support notifier chain in vfio_group (Tarun Gupta) [1116064]
-- [kernel] vfio: vfio_register_notifier: classify iommu notifier (Tarun Gupta) [1116064]
-- [vfio] Fix handling of error returned by 'vfio_group_get_from_dev()' (Tarun Gupta) [1116064]
-- [vfio] fix vfio_info_cap_add/shift (Tarun Gupta) [1116064]
-- [maintainers] maintainers: Add entry VFIO based Mediated device drivers (Tarun Gupta) [1116064]
-- [samples] docs: Sample driver to demonstrate how to use Mediated device framework (Tarun Gupta) [1116064]
-- [documentation] docs: Sysfs ABI for mediated device framework (Tarun Gupta) [1116064]
-- [vfio] docs: Add Documentation for Mediated devices (Tarun Gupta) [1116064]
-- [uapi] vfio: Define device_api strings (Tarun Gupta) [1116064]
-- [vfio] vfio_pci: Updated to use vfio_set_irqs_validate_and_prepare() (Tarun Gupta) [1116064]
-- [kernel] vfio: Introduce vfio_set_irqs_validate_and_prepare() (Tarun Gupta) [1116064]
-- [vfio] vfio_pci: Update vfio_pci to use vfio_info_add_capability() (Tarun Gupta) [1116064]
-- [kernel] vfio: Introduce common function to add capabilities (Tarun Gupta) [1116064]
-- [kernel] vfio iommu: Add blocking notifier to notify DMA_UNMAP (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Add support for mediated devices (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Add task structure to vfio_dma (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Add find_iommu_group() function (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Update argument of vaddr_get_pfn() (Tarun Gupta) [1116064]
-- [vfio] vfio iommu type1: Update arguments of vfio_lock_acct (Tarun Gupta) [1116064]
-- [kernel] vfio iommu: Added pin and unpin callback functions to vfio_iommu_driver_ops (Tarun Gupta) [1116064]
-- [vfio] Common function to increment container_users (Tarun Gupta) [1116064]
-- [vfio] Rearrange functions to get vfio_group from dev (Tarun Gupta) [1116064]
-- [vfio] VFIO based driver for Mediated devices (Tarun Gupta) [1116064]
-- [kernel] vfio: Mediated device Core driver (Tarun Gupta) [1116064]
-- [lib] uuid.c: introduce a few more generic helpers (Tarun Gupta) [1116064]
-- [lib] uuid.c: move generate_random_uuid() to uuid.c (Tarun Gupta) [1116064]
-- [virt] kvm: mmu: try to fix up page faults before giving up (Tarun Gupta) [1116064]
-- [virt] kvm: mmu: prepare to support mapping of VM_IO and VM_PFNMAP frames (Tarun Gupta) [1116064]
-- [vfio] pci: Fix typos in comments (Tarun Gupta) [1116064]
-- [vfio] fix possible use after free of vfio group (Tarun Gupta) [1116064]
-- [vfio] vfio-pci: Allow to mmap sub-page MMIO BARs if the mmio page is exclusive (Tarun Gupta) [1116064]
-- [vfio] type1: Fix build warning (Tarun Gupta) [1116064]
-- [vfio] vfio_pci: Test for extended capabilities if config space > 256 bytes (Tarun Gupta) [1116064]
-- [vfio] pci: return -EFAULT if copy_to_user fails (Tarun Gupta) [1116064]
-- [vfio] pci: Enable virtual register in PCI config space (Tarun Gupta) [1116064]
-- [vfio] pci: Add infrastructure for additional device specific regions (Tarun Gupta) [1116064]
-- [uapi] vfio: Define device specific region type capability (Tarun Gupta) [1116064]
-- [vfio] pci: Include sparse mmap capability for MSI-X table regions (Tarun Gupta) [1116064]
-- [uapi] vfio: Define sparse mmap capability for regions (Tarun Gupta) [1116064]
-- [kernel] vfio: Add capability chain helpers (Tarun Gupta) [1116064]
-- [uapi] vfio: Define capability chains (Tarun Gupta) [1116064]
-- [vfio] If an IOMMU backend fails, keep looking (Tarun Gupta) [1116064]
-- [vfio] fix a warning message (Tarun Gupta) [1116064]
-- [vfio] vfio-pci: constify pci_error_handlers structures (Tarun Gupta) [1116064]
-
-* Fri Jan 27 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-551.el7]
-- [kernel] perf/core: Fix sideband list-iteration vs. event ordering NULL pointer deference crash (Jiri Olsa) [1412115]
-- [tools] perf trace: Check if MAP_32BIT is defined (again) (Jiri Olsa) [1405101]
-- [tools] perf hists: Fix column length on --hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Fix column indentation on --hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Show folded sign properly on --hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Fix indentation of folded sign on --hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hist browser: Fix hierarchy column counts (Jiri Olsa) [1405101]
-- [tools] perf jit: Fix build issue on Ubuntu (Jiri Olsa) [1405101]
-- [tools] perf header: Set nr_numa_nodes only when we parsed all the data (Jiri Olsa) [1405101]
-- [tools] perf top: Fix refreshing hierarchy entries on TUI (Jiri Olsa) [1405101]
-- [tools] tools build: Add feature detection for g++ (Jiri Olsa) [1405101]
-- [tools] tools build: Support compiling C++ source file (Jiri Olsa) [1405101]
-- [tools] perf top/report: Add tips about a list option (Jiri Olsa) [1405101]
-- [tools] perf report/top: Add a tip about system-wide collection from all CPUs (Jiri Olsa) [1405101]
-- [tools] perf report/top: Add a tip about source line numbers with overhead (Jiri Olsa) [1405101]
-- [tools] perf jevents: Fix Intel JSON fixed counter conversions (Jiri Olsa) [1405101]
-- [tools] tools lib traceevent: Fix kbuffer_read_at_offset() (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix MTC timestamp calculation for large MTC periods (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix estimated timestamps for cycle-accurate mode (Jiri Olsa) [1405101]
-- [tools] perf uretprobe ppc64le: Fix probe location (Jiri Olsa) [1405101]
-- [tools] perf pmu-events: Add Skylake frontend MSR support (Jiri Olsa) [1405101]
-- [tools] perf pmu-events: Fix fixed counters on Intel (Jiri Olsa) [1405101]
-- [tools] perf tools: Make alias matching case-insensitive (Jiri Olsa) [1405101]
-- [tools] perf tools: Allow period= in perf stat CPU event descriptions (Jiri Olsa) [1405101]
-- [tools] perf tools: Add README for info on parsing JSON/map files (Jiri Olsa) [1405101]
-- [tools] perf list jevents: Add support for event list topics (Jiri Olsa) [1405101]
-- [tools] perf list: Support long jevents descriptions (Jiri Olsa) [1405101]
-- [tools] perf jevents: Add support for long descriptions (Jiri Olsa) [1405101]
-- [tools] perf pmu: Add override support for event list CPUID (Jiri Olsa) [1405101]
-- [tools] perf list: Add a --no-desc flag (Jiri Olsa) [1405101]
-- [tools] perf tools: Query terminal width and use in perf list (Jiri Olsa) [1405101]
-- [tools] perf pmu: Support alias descriptions (Jiri Olsa) [1405101]
-- [tools] perf jevents: Handle header line in mapfile (Jiri Olsa) [1405101]
-- [tools] perf tools: Support CPU id matching for x86 v2 (Jiri Olsa) [1405101]
-- [tools] perf powerpc: Support CPU ID matching for Powerpc (Jiri Olsa) [1405101]
-- [tools] perf pmu: Use pmu_events table to create aliases (Jiri Olsa) [1405101]
-- [tools] perf jevents: Program to convert JSON file (Jiri Olsa) [1405101]
-- [tools] perf tools: Add jsmn `jasmine' JSON parser (Jiri Olsa) [1405101]
-- [tools] tools build: Make fixdep a hostprog (Jiri Olsa) [1405101]
-- [tools] tools build: Add support for host programs format (Jiri Olsa) [1405101]
-- [tools] perf tools: Experiment with cppcheck (Jiri Olsa) [1405101]
-- [tools] perf probe: Check if *ptr2 is zero and not ptr2 (Jiri Olsa) [1405101]
-- [tools] perf tests: Add dwarf unwind test for powerpc (Jiri Olsa) [1405101]
-- [tools] perf probe: Match linkage name with mangled name (Jiri Olsa) [1405101]
-- [tools] perf probe: Fix to cut off incompatible chars from group name (Jiri Olsa) [1405101]
-- [tools] perf probe: Skip if the function address is 0 (Jiri Olsa) [1405101]
-- [tools] perf probe: Ignore the error of finding inline instance (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix decoding when there are address filters (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Enable decoder to handle TIP.PGD with missing IP (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Read address filter from AUXTRACE_INFO event (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Record address filter in AUXTRACE_INFO event (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Add a helper function for processing AUXTRACE_INFO (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix missing error codes processing auxtrace_info (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Add support for recording the max non-turbo ratio (Jiri Olsa) [1405101]
-- [tools] perf intel-pt: Fix snapshot overlap detection decoder errors (Jiri Olsa) [1405101]
-- [tools] perf probe: Increase debug level of SDT debug messages (Jiri Olsa) [1405101]
-- [tools] perf record: Add support for using symbols in address filters (Jiri Olsa) [1405101]
-- [tools] perf symbols: Add dso__last_symbol() (Jiri Olsa) [1405101]
-- [tools] perf record: Fix error paths (Jiri Olsa) [1405101]
-- [tools] perf record: Rename label 'out_symbol_exit' (Jiri Olsa) [1405101]
-- [tools] perf script: Fix vanished idle symbols (Jiri Olsa) [1405101]
-- [tools] perf evsel: Add support for address filters (Jiri Olsa) [1405101]
-- [tools] perf evsel: New tracepoint specific function (Jiri Olsa) [1405101]
-- [tools] perf tools: Make perf_evsel__append_filter() generic (Jiri Olsa) [1405101]
-- [tools] perf tools: Update documentation info about quipper (Jiri Olsa) [1405101]
-- [tools] perf trace: Beautify sched_[gs]et_attr return value (Jiri Olsa) [1405101]
-- [tools] perf data: Fix building in 32 bit platform with libbabeltrace (Jiri Olsa) [1405101]
-- [tools] perf tools: Fix MMAP event synthesis broken by MAP_HUGETLB change (Jiri Olsa) [1405101]
-- [tools] perf record: Fix documentation 'event_sources' -> 'event_source' (Jiri Olsa) [1405101]
-- [tools] perf hists: Make hists__fprintf_headers function global (Jiri Olsa) [1405101]
-- [tools] perf hists: Make __hist_entry__snprintf function global (Jiri Olsa) [1405101]
-- [tools] perf tools: Make several display functions global (Jiri Olsa) [1405101]
-- [tools] perf tools: Make several sorting functions global (Jiri Olsa) [1405101]
-- [tools] perf tools: Make output_field_add and sort_dimension__add global (Jiri Olsa) [1405101]
-- [tools] perf tools: Make reset_dimensions global (Jiri Olsa) [1405101]
-- [tools] perf hists: Add __hist_entry__snprintf function (Jiri Olsa) [1405101]
-- [tools] perf tools: Add PMU configuration to tools (Jiri Olsa) [1405101]
-- [tools] perf pmu: Push configuration down to PMU driver (Jiri Olsa) [1405101]
-- [tools] perf tools: Confine __get_cpuid() to x86 architecture (Jiri Olsa) [1405101]
-- [tools] perf hists: Use bigger buffer for stdio headers (Jiri Olsa) [1405101]
-- [tools] perf evsel: Remove superfluous initialization of weight (Jiri Olsa) [1405101]
-- [tools] perf symbols: Do not open device files (Jiri Olsa) [1405101]
-- [tools] perf hists: Factor out hists__reset_column_width() (Jiri Olsa) [1405101]
-- [tools] perf ui/tui: Reset output width for hierarchy (Jiri Olsa) [1405101]
-- [tools] perf annotate: Resolve 'call' operands to function names (Jiri Olsa) [1405101]
-- [tools] perf annotate: Pass the symbol's map/dso to the instruction parsers (Jiri Olsa) [1405101]
-- [tools] perf annotate: Do not ignore call instruction with indirect target (Jiri Olsa) [1405101]
-- [tools] perf hists: Fix width computation for srcline sort entry (Jiri Olsa) [1405101]
-- [tools] perf trace beauty mmap: Add missing MADV_FREE (Jiri Olsa) [1405101]
-- [tools] perf tools: Add infrastructure for PMU specific configuration (Jiri Olsa) [1405101]
-- [tools] perf report: Enable group view with hierarchy (Jiri Olsa) [1405101]
-- [tools] perf ui/stdio: Rename print_hierarchy_header() (Jiri Olsa) [1405101]
-- [tools] perf ui/stdio: Always reset output width for hierarchy (Jiri Olsa) [1405101]
-- [tools] perf hist: Initialize hierarchy tree explicitly (Jiri Olsa) [1405101]
-- [tools] perf hists: Introduce hists__link_hierarchy() (Jiri Olsa) [1405101]
-- [tools] perf hists: Introduce hists__match_hierarchy() (Jiri Olsa) [1405101]
-- [tools] perf build: Compare mman.h related headers against kernel originals (Jiri Olsa) [1405101]
-- [tools] perf tools: Do hugetlb handling in more systems (Jiri Olsa) [1405101]
-- [tools] perf trace beauty mmap: Fix defines for non !x86_64 (Jiri Olsa) [1405101]
-- [tools] tools include: Add uapi mman.h for each architecture (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Fix event group display (Jiri Olsa) [1405101]
-- [tools] perf probe: Fix dwarf regs table for x86_64 (Jiri Olsa) [1405101]
-- [tools] perf powerpc: Fix build-test failure (Jiri Olsa) [1405101]
-- [tools] perf pmu: Support alternative sysfs cpumask (Jiri Olsa) [1405101]
-- [tools] perf evlist: Only open events on CPUs an evsel permits (Jiri Olsa) [1405101]
-- [tools] perf annotate: Add branch stack / basic block (Jiri Olsa) [1405101]
-- [tools] perf record: Mark MAP_HUGETLB when synthesizing mmap events (Jiri Olsa) [1405101]
-- [tools] tools lib api fs: Add hugetlbfs filesystem detector (Jiri Olsa) [1405101]
-- [tools] perf tools: Recognize hugetlb mapping as anon mapping (Jiri Olsa) [1405101]
-- [tools] perf symbols: Remove symbol_filter_t machinery (Jiri Olsa) [1405101]
-- [tools] perf test vmlinux: Remove dead symbol_filter_t code (Jiri Olsa) [1405101]
-- [tools] perf machine: Remove machine->symbol_filter and friends (Jiri Olsa) [1405101]
-- [tools] perf top: Remove old kernel-only symbol filter (Jiri Olsa) [1405101]
-- [tools] perf symbols: Mark if a symbol is idle in the library (Jiri Olsa) [1405101]
-- [tools] perf symbols: Fixup symbol sizes before picking best ones (Jiri Olsa) [1405101]
-- [tools] perf symbols: Check symbol_conf.allow_aliases for kallsyms loading too (Jiri Olsa) [1405101]
-- [tools] perf test vmlinux: Tolerate symbol aliases (Jiri Olsa) [1405101]
-- [tools] perf test vmlinux: Avoid printing headers for empty lists (Jiri Olsa) [1405101]
-- [tools] perf test vmlinux: Clarify which -v lines are errors or warning (Jiri Olsa) [1405101]
-- [tools] perf probe: Ignore vmlinux Build-id when offline vmlinux given (Jiri Olsa) [1405101]
-- [tools] perf probe: Support probing on offline cross-arch binary (Jiri Olsa) [1405101]
-- [tools] perf probe: Ignore vmlinux buildid if offline kernel is given (Jiri Olsa) [1405101]
-- [tools] perf probe: Show trace event definition (Jiri Olsa) [1405101]
-- [tools] perf config: Show default report configuration in example and docs (Jiri Olsa) [1405101]
-- [tools] perf symbols: Demangle symbols for synthesized @plt entries (Jiri Olsa) [1405101]
-- [tools] perf probe: Do not use map_load filters for function (Jiri Olsa) [1405101]
-- [tools] perf symbols: Rename ->ignore to ->idle (Jiri Olsa) [1405101]
-- [tools] perf annotate: Initialize the priv are in symbol__new() (Jiri Olsa) [1405101]
-- [tools] perf tools: Fix error handling of lzma decompression (Jiri Olsa) [1405101]
-- [tools] perf probe: Remove unused tracing_dir variable (Jiri Olsa) [1405101]
-- [tools] perf record: Fix spelling mistake "Finshed" -> "Finished" (Jiri Olsa) [1405101]
-- [tools] perf tools: fix typo: "ehough" -> "enough" (Jiri Olsa) [1405101]
-- [tools] perf probe: Add supported for type casting by the running kernel (Jiri Olsa) [1405101]
-- [tools] perf hists browser: Remove superfluous null check on map (Jiri Olsa) [1405101]
-- [tools] perf tools: Skip running the feature tests for 'make install-doc' (Jiri Olsa) [1405101]
-- [tools] perf tools: Use __weak definition from linux/compiler.h (Jiri Olsa) [1405101]
-- [tools] perf report: Allow configuring the default sort order in ~/.perfconfig (Jiri Olsa) [1405101]
-- [tools] perf disassemble: Extract logic to find file to pass to objdump to a separate function (Jiri Olsa) [1405101]
-- [tools] perf disassemble: Simplify logic for picking the filename to disassemble (Jiri Olsa) [1405101]
-- [tools] perf disassemble: Move check for kallsyms + !kcore (Jiri Olsa) [1405101]
-- [tools] perf hists: Add support for header span (Jiri Olsa) [1405101]
-- [tools] perf tools stdio: Display multiple header lines (Jiri Olsa) [1405101]
-- [tools] perf tools tui: Display multiple header lines (Jiri Olsa) [1405101]
-- [tools] perf hists: Add line argument into perf_hpp_fmt's header callback (Jiri Olsa) [1405101]
-- [tools] perf hists: Introduce nr_header_lines into struct perf_hpp_list (Jiri Olsa) [1405101]
-- [tools] perf top: Use MSEC_PER_SEC (Jiri Olsa) [1405101]
-- [tools] perf bench futex: Use NSEC_PER_USEC (Jiri Olsa) [1405101]
-- [tools] perf kvm: Use NSEC_PER_USEC (Jiri Olsa) [1405101]
-- [tools] perf record: Use USEC_PER_MSEC (Jiri Olsa) [1405101]
-- [tools] perf bench sched-messaging: Use USEC_PER_MSEC (Jiri Olsa) [1405101]
-- [tools] perf bench mem: Use USEC_PER_SEC (Jiri Olsa) [1405101]
-- [tools] perf stat: Use *SEC_PER_*SEC macros (Jiri Olsa) [1405101]
-- [tools] perf bench sched-pipe: Use linux/time64.h, USEC_PER_SEC (Jiri Olsa) [1405101]
-- [tools] perf timechart: Use NSEC_PER_U?SEC (Jiri Olsa) [1405101]
-- [tools] perf sched: Use linux/time64.h (Jiri Olsa) [1405101]
-- [tools] perf bench numa: Use NSEC_PER_U?SEC (Jiri Olsa) [1405101]
-- [tools] Introduce tools/include/linux/time64.h for *SEC_PER_*SEC macros (Jiri Olsa) [1405101]
-- [x86] perf/intel/rapl: Make the Intel RAPL PMU driver modular (Jiri Olsa) [1405101]
-- [kernel] bitmap.h, perf/core: Fix the mask in perf_output_sample_regs() (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix NMI measurements (Jiri Olsa) [1405101]
-- [x86] Warn when NMI handlers take large amounts of time (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix full width counter, counter overflow (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Allow only a single PMU/box within an events group (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Cure bogus unwind from PEBS entries (Jiri Olsa) [1405101]
-- [kernel] perf/core: Fix address filter parser (Jiri Olsa) [1405101]
-- [x86] perf/x86/uncore: Fix crash by removing bogus event_list[] handling for SNB client uncore IMC (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add more Intel uncore IMC PCI IDs for SkyLake (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Honour the CPUID for number of fixed counters in hypervisors (Jiri Olsa) [1405101]
-- [kernel] perf/core: Protect PMU device removal with a 'pmu_bus_running' check, to fix CONFIG_DEBUG_TEST_DRIVER_REMOVE=y kernel panic (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add Knights Mill CPUID (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Add Knights Mill CPUID (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Remove an inconsistent NULL check (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/pt: Add support for PTWRITE and power event tracing (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add Skylake server uncore support (Jiri Olsa) [1405101]
-- [kernel] perf/core: Fix aux_mmap_count vs aux_refcount order (Jiri Olsa) [1405101]
-- [kernel] perf/core: Don't pass PERF_EF_START to the PMU ->start callback (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix PEBS threshold initialization (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Handle non-standard counter offset (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Remove hard-coded implementation for Node ID mapping location (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add enable_box for client MSR uncore (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel/uncore: Add support for the Intel Skylake client uncore PMU (Jiri Olsa) [1405101]
-- [x86] perf/x86/uncore: Use Intel family name macros for uncore (Jiri Olsa) [1405101]
-- [x86] perf/intel/uncore: Make the Intel uncore PMU driver modular (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix embarrasing typo (Jiri Olsa) [1405101]
-- [x86] perf/x86: Fix compile warnings for intel_uncore (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Clean up LBR state tracking (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Remove redundant test from intel_pmu_lbr_add() (Jiri Olsa) [1405101]
-- [x86] perf/x86/intel: Eliminate dead code in intel_pmu_lbr_del() (Jiri Olsa) [1405101]
-- [x86] perf/x86: Ensure perf_sched_cb_{inc, dec}() is only called from pmu::{add, del}() (Jiri Olsa) [1405101]
-- [kernel] perf/x86/intel: Rework the large PEBS setup code (Jiri Olsa) [1405101]
-- [kernel] perf/core: Sched out groups atomically (Jiri Olsa) [1405101]
-
-* Thu Jan 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-550.el7]
-- [s390] mm: add support for 2GB hugepages (Hendrik Brueckner) [1380775]
-- [mm] hugetlb: don't require CMA for runtime gigantic pages (Hendrik Brueckner) [1380775]
-- [s390] scm_block: fix off by one during cluster reservation (Hendrik Brueckner) [1274409]
-- [s390] scm_block: make the number of reqs per HW req configurable (Hendrik Brueckner) [1274409]
-- [s390] scm_block: handle multiple requests in one HW request (Hendrik Brueckner) [1274409]
-- [s390] scm_block: allocate aidaw pages only when necessary (Hendrik Brueckner) [1274409]
-- [s390] scm_block: use mempool to manage aidaw requests (Hendrik Brueckner) [1274409]
-- [kernel] audit: add support for session ID user filter (Richard Guy Briggs) [1382504]
-- [kernel] audit: skip sessionid sentinel value when auto-incrementing (Richard Guy Briggs) [1382504]
-- [kernel] audit: convert all sessionid declaration to unsigned int (Richard Guy Briggs) [1382504]
-- [kernel] audit: add exclude filter extension to feature bitmap (Richard Guy Briggs) [1382508]
-- [kernel] audit: add fields to exclude filter by reusing user filter (Richard Guy Briggs) [1382508]
-- [kernel] audit: fix some horrible switch statement style crimes (Richard Guy Briggs) [1382508]
-- [kernel] audit: fixup: log on errors from filter user rules (Richard Guy Briggs) [1382508]
-- [security] selinux: Convert isec->lock into a spinlock (Andreas Grunbacher) [437984]
-- [security] selinux: Clean up initialization of isec->sclass (Andreas Grunbacher) [437984]
-- [security] proc: Pass file mode to proc_pid_make_inode (Andreas Grunbacher) [437984]
-- [security] selinux: Minor cleanups (Andreas Grunbacher) [437984]
-- [security] selinux: check ss_initialized before revalidating an inode label (Andreas Grunbacher) [437984]
-- [security] selinux: delay inode label lookup as long as possible (Andreas Grunbacher) [437984]
-- [security] selinux: don't revalidate an inode's label when explicitly setting it (Andreas Grunbacher) [437984]
-- [security] selinux: simply inode label states to INVALID and INITIALIZED (Andreas Grunbacher) [437984]
-- [security] selinux: don't revalidate inodes in selinux_socket_getpeersec_dgram() (Andreas Grunbacher) [437984]
-- [security] selinux: Don't sleep inside inode_getsecid hook (Andreas Grunbacher) [437984]
-- [security] selinux: Inode label revalidation performance fix (Andreas Grunbacher) [437984]
-- [security] gfs2: Invalid security labels of inodes when they go invalid (Andreas Grunbacher) [437984]
-- [security] selinux: Revalidate invalid inode security labels (Andreas Grunbacher) [437984]
-- [security] Add hook to invalidate inode security labels (Andreas Grunbacher) [437984]
-- [security] selinux: Add accessor functions for inode->i_security (Andreas Grunbacher) [437984]
-- [security] Make inode argument of inode_getsecid non-const (Andreas Grunbacher) [437984]
-- [security] Make inode argument of inode_getsecurity non-const (Andreas Grunbacher) [437984]
-- [security] selinux: Remove unused variable in selinux_inode_init_security (Andreas Grunbacher) [437984]
-
-* Thu Jan 26 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-549.el7]
-- [scsi] avoid a permanent stop of the scsi device's request queue (Ewan Milne) [1400044]
-- [scsi] scsi_lib: correctly retry failed zero length REQ_TYPE_FS commands (Ewan Milne) [1403849]
-- [scsi] qla2xxx: Get mutex lock before checking optrom_state (Chad Dupuis) [1408387]
-- [edac] amd64: Fix channel decode on Fam15hMod60h systems (Suravee Suthikulpanit) [1275714]
-- [tty] 8250_pci: Fix potential use-after-free in error path (Steve Best) [1414297]
-- [md] dm btree: fix a bug in dm_btree_find_next_single() (Mike Snitzer) [1414453]
-- [mm] memcontrol: do not recurse in direct reclaim (Rik van Riel) [1397330]
-- [x86] x86/smpboot: Make logical package management more robust (Prarit Bhargava) [1414054]
-- [x86] x86/cpu: Deal with broken firmware (VMWare/XEN) (Prarit Bhargava) [1414054]
-- [s390] zcrypt: Introduce CEX6 toleration (Hendrik Brueckner) [1380777]
-- [s390] net/af_iucv: don't use paged skbs for TX on HiperSockets (Hendrik Brueckner) [1413659]
-- [kernel] x86/panic: Replace CONFIG_KEXEC_CORE with CONFIG_KEXEC (Xunlei Pang) [726846]
-- [kernel] mm, pcp: allow restoring percpu_pagelist_fraction default (Dave Anderson) [1405920]
-- [kernel] locking: Optimize lock_bh functions (Lauro Ramos Venancio) [1403356]
-- [kernel] sched/preempt, locking: Rework local_bh_{dis, en}able() (Lauro Ramos Venancio) [1403356]
-- [kernel] locking/rtmutex: Implement lockless top-waiter wakeup (Lauro Ramos Venancio) [1403356]
-- [kernel] locking/mutex: Allow next waiter lockless wakeup (Lauro Ramos Venancio) [1403356]
-- [kernel] futex: Force hot variables into a single cache line (Lauro Ramos Venancio) [1403356]
-- [kernel] futex: Implement lockless wakeups (Lauro Ramos Venancio) [1403356]
-- [kernel] futex: Add another early deadlock detection check (Lauro Ramos Venancio) [1403356]
-- [kernel] sched/core: Reset task's lockless wake-queues on fork() (Lauro Ramos Venancio) [1403356]
-- [kernel] sched: Implement lockless wake-queues (Lauro Ramos Venancio) [1403356]
-- [virtio] balloon: check the number of available pages in leak balloon (David Hildenbrand) [1401615]
-- [drivers] Set dev->device_rh to NULL after free (Prarit Bhargava) [1414064]
-- [powerpc] kvm: Add halt polling documentation (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Comment style and print format fixups (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: Decrease the powerpc default halt poll max value (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Add check for module parameter halt_poll_ns (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Use generic kvm module parameters (Thomas Huth) [1399882]
-- [powerpc] kvm: Export kvm module parameter variables (Thomas Huth) [1399882]
-- [powerpc] kvm: halt_polling: improve grow/shrink settings (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: Implement existing and add new halt polling vcpu stats (Thomas Huth) [1399882]
-- [powerpc] kvm: Add provisioning for ulong vm stats and u64 vcpu stats (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Implement halt polling (Thomas Huth) [1399882]
-- [powerpc] kvm: ppc: book3s hv: Change vcore element runnable_threads from linked-list to array (Thomas Huth) [1399882]
-- [powerpc] kvm: disable halt_poll_ns as default for s390x (Thomas Huth) [1399882]
-- [infiniband] ib/rdmavt: Only put mmap_info ref if it exists (Jonathan Toppins) [1391299]
-
-* Tue Jan 24 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-548.el7]
-- [hv] balloon: Use available memory value in pressure report (Vitaly Kuznetsov) [1406413]
-- [perf] powerpc: Don't call perf_event_disable() from atomic context (Jiri Olsa) [1327164]
-- [tools] objtool: Resync vcvtph2ps definition (Prarit Bhargava) [1414095]
-- [kernel] hung_task: decrement sysctl_hung_task_warnings only if it is positive (Waiman Long) [1410295]
-- [kernel] hung_task: allow hung_task_panic when hung_task_warnings is 0 (Waiman Long) [1410295]
-- [kernel] hung_task: Display every hung task warning (Waiman Long) [1410295]
-- [netdrv] netxen: netxen_rom_fast_read() doesn't return -1 (Harish Patil) [1391273]
-- [netdrv] netxen: reversed condition in netxen_nic_set_link_parameters() (Harish Patil) [1391273]
-- [netdrv] netxen: fix error handling in netxen_get_flash_block() (Harish Patil) [1391273]
-- [netdrv] netxen: Use kobj_to_dev() (Harish Patil) [1391273]
-- [netdrv] qlogic: use pci_zalloc_consistent (Harish Patil) [1391273]
-- [netdrv] netxen: Use pci_enable_msix_range() instead of pci_enable_msix() (Harish Patil) [1391273]
-- [netdrv] ethernet: Fix FSF address in file headers (Harish Patil) [1391273]
-- [netdrv] qlge: remove superfluous statement (Harish Patil) [1391271]
-- [netdrv] qlge: Avoids recursive EEH error (Harish Patil) [1391271]
-- [netdrv] qlge: Replace create_singlethread_workqueue with alloc_ordered_workqueue (Harish Patil) [1391271]
-- [netdrv] qlge: Update version to 1.00.00.35 (Harish Patil) [1391271]
-- [netdrv] qlge: Fix receive packets drop (Harish Patil) [1391271]
-- [netdrv] qlge: fix a timeout loop in ql_change_rx_buffers() (Harish Patil) [1391271]
-- [netdrv] qlge: Move jiffies_to_usecs immediately before loop (Harish Patil) [1391271]
-- [netdrv] qlge: Use eth_<foo>_addr instead of memset (Harish Patil) [1391271]
-- [netdrv] qlge: Fix compilation warning (Harish Patil) [1391271]
-- [netdrv] qlogic: use pci_zalloc_consistent (Harish Patil) [1391271]
-- [netdrv] qlge: Use pci_enable_msix_range() instead of pci_enable_msix() (Harish Patil) [1391271]
-- [powerpc] kvm: ppc: Always select KVM_VFIO, plus Makefile cleanup (Thomas Huth) [1399880]
-- [powerpc] kvm: ppc: do not compile in vfio.o unconditionally (Thomas Huth) [1399880]
-- [powerpc] vfio: Enable VFIO device for powerpc (Thomas Huth) [1399880]
-- [powerpc] kvm: ppc: Add support for multiple-TCE hcalls (Thomas Huth) [1399880]
-- [powerpc] kvm: ppc: Move reusable bits of H_PUT_TCE handler to helpers (Thomas Huth) [1399880]
-- [powerpc] kvm: ppc: Replace SPAPR_TCE_SHIFT with IOMMU_PAGE_SHIFT_4K (Thomas Huth) [1399880]
-- [powerpc] Make vmalloc_to_phys() public (Thomas Huth) [1399880]
-
-* Wed Jan 18 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-547.el7]
-- [x86] perf/x86: Add perf support for AMD family-17h processors (Suravee Suthikulpanit) [1391660]
-- [x86] kvm: svm: Do not support AVIC if not CONFIG_X86_LOCAL_APIC (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: svm: Fix implicit declaration for __default_cpu_present_to_apicid() (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Manage vcpu load/unload when enable AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Do not intercept CR8 when enable AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Do not expose x2APIC when enable AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Introducing kvm_x86_ops.apicv_post_state_restore (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Add VMEXIT handlers for AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Add interrupt injection via AVIC (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Detect and Initialize AVIC support (Suravee Suthikulpanit) [1133711]
-- [x86] svm: Introduce new AVIC VMCB registers (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: split kvm_vcpu_wake_up from kvm_vcpu_kick (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Introducing kvm_x86_ops VCPU blocking/unblocking hooks (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: Add kvm_arch_vcpu_{un}blocking callbacks (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Introducing kvm_x86_ops VM init/destroy hooks (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Rename kvm_apic_get_reg to kvm_lapic_get_reg (Suravee Suthikulpanit) [1133711]
-- [x86] kvm: x86: Misc LAPIC changes to expose helper functions (Suravee Suthikulpanit) [1133711]
-- [x86] kvm/x86: per-vcpu apicv deactivation support (Suravee Suthikulpanit) [1133711]
-- [x86] cpufeature: Add AMD AVIC bit (Suravee Suthikulpanit) [1133711]
-- [scsi] be2iscsi: Add checks to validate completions (Maurizio Lombardi) [1324918]
-- [scsi] be2iscsi: Fix bad WRB index error (Maurizio Lombardi) [1324918]
-- [scsi] be2iscsi: Add lock to protect WRB alloc and free (Maurizio Lombardi) [1324918]
-- [char] ipmi: fix crash on reading version from proc after unregisted bmc (Tony Camuso) [1410859]
-- [char] ipmi/bt-bmc: remove redundant return value check of platform_get_resource() (Tony Camuso) [1410859]
-- [char] ipmi/bt-bmc: add a dependency on ARCH_ASPEED (Tony Camuso) [1410859]
-- [char] ipmi: Fix ioremap error handling in bt-bmc (Tony Camuso) [1410859]
-- [char] ipmi: add an Aspeed BT IPMI BMC driver (Tony Camuso) [1410859]
-- [char] ipmi: remove trydefaults parameter and default init (Tony Camuso) [1410859]
-- [char] ipmi: Fix the I2C address extraction from SPMI tables (Tony Camuso) [1410859]
-- [char] ipmi: reserve memio regions separately (Tony Camuso) [1410859]
-- [char] ipmi: Fix some minor coding style issues (Tony Camuso) [1410859]
-- [char] ipmi: do not probe ACPI devices if si_tryacpi is unset (Tony Camuso) [1410859]
-- [char] ipmi_si: Avoid a wrong long timeout on transaction done (Tony Camuso) [1410859]
-- [char] ipmi_si: Fix module parameter doc names (Tony Camuso) [1410859]
-- [char] ipmi_ssif: Fix logic around alert handling (Tony Camuso) [1410859]
-- [scripts] nmi_backtrace: generate one-line reports for idle cpus (David Arcari) [1386012]
-- [idle] x86/cpu: Rename "WESTMERE2" family to "NEHALEM_G" (David Arcari) [1386012]
-- [idle] drivers/idle: make intel_idle.c driver more explicitly non-modular (David Arcari) [1386012]
-- [idle] x86/intel_idle: Use Intel family macros for intel_idle (David Arcari) [1386012]
-- [idle] intel_idle: Clean up all registered devices on exit (David Arcari) [1386012]
-- [idle] intel_idle: Propagate hot plug errors (David Arcari) [1386012]
-- [idle] intel_idle: Don't overreact to a cpuidle registration failure (David Arcari) [1386012]
-- [idle] intel_idle: Setup the timer broadcast only on successful driver load (David Arcari) [1386012]
-- [idle] intel_idle: Avoid a double free of the per-CPU data (David Arcari) [1386012]
-- [idle] intel_idle: Fix dangling registration on error path (David Arcari) [1386012]
-- [idle] intel_idle: Fix deallocation order on the driver exit path (David Arcari) [1386012]
-- [idle] intel_idle: Remove redundant initialization calls (David Arcari) [1386012]
-- [idle] intel_idle: Fix a helper function's return value (David Arcari) [1386012]
-- [idle] intel_idle: remove useless return from void function (David Arcari) [1386012]
-- [kernel] cpuidle: Invert CPUIDLE_FLAG_TIME_VALID logic (David Arcari) [1386012]
-- [idle] intel_idle: allow sparse sub-state numbering, for Bay Trail (David Arcari) [1386012]
-- [idle] intel_idle: mark some functions with __init tag (David Arcari) [1386012]
-
-* Tue Jan 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-546.el7]
-- [platform] dell-wmi: Ignore WMI event 0xe00e (David Arcari) [1396495]
-- [platform] dell-wmi: Add a WMI event code for display on/off (David Arcari) [1396495]
-- [platform] dell-wmi: Generate one sparse keymap for all machines (David Arcari) [1396495]
-- [platform] dell-wmi: Add information about other WMI event codes (David Arcari) [1396495]
-- [platform] dell-wmi: Sort WMI event codes and update comments (David Arcari) [1396495]
-- [platform] dell-wmi: Ignore WMI event code 0xe045 (David Arcari) [1396495]
-- [platform] dell-wmi: support Dell Inspiron M5110 (David Arcari) [1396495]
-- [platform] dell-wmi: properly process Dell Instant Launch hotkey (David Arcari) [1396495]
-- [platform] dell-rbtn: Ignore ACPI notifications if device is suspended (David Arcari) [1396495]
-- [platform] dell-wmi: enable receiving WMI events on Dell Vostro V131 (David Arcari) [1396495]
-- [platform] dell-smbios: rename dell_smi_error() to dell_smbios_error() (David Arcari) [1396495]
-- [platform] dell-laptop: move dell_smi_error() to dell-smbios (David Arcari) [1396495]
-- [platform] dell-rbtn: Add a comment about the XPS 13 9350 (David Arcari) [1396495]
-- [platform] dell-wmi: Support new hotkeys on the XPS 13 9350 (Skylake) (David Arcari) [1396495]
-- [platform] dell-wmi: Clean up hotkey table size check (David Arcari) [1396495]
-- [platform] dell-wmi: Stop storing pointers to DMI tables (David Arcari) [1396495]
-- [platform] dell-smbios: make da_tokens static (David Arcari) [1396495]
-- [platform] dell-smbios: remove find_token_{id, location}() (David Arcari) [1396495]
-- [platform] dell-laptop: use dell_smbios_find_token() instead of find_token_location() (David Arcari) [1396495]
-- [platform] dell-laptop: use dell_smbios_find_token() instead of find_token_id() (David Arcari) [1396495]
-- [platform] dell-smbios: implement new function for finding DMI table 0xDA tokens (David Arcari) [1396495]
-- [platform] dell-smbios: make the SMBIOS buffer static (David Arcari) [1396495]
-- [platform] dell-smbios: return the SMBIOS buffer from dell_smbios_get_buffer() (David Arcari) [1396495]
-- [platform] dell-smbios: don't return an SMBIOS buffer from dell_smbios_send_request() (David Arcari) [1396495]
-- [platform] dell-smbios: don't pass an SMBIOS buffer to dell_smbios_send_request() (David Arcari) [1396495]
-- [platform] dell-smbios: rename dell_send_request() to dell_smbios_send_request() (David Arcari) [1396495]
-- [platform] dell-smbios: rename release_buffer() to dell_smbios_release_buffer() (David Arcari) [1396495]
-- [platform] dell-smbios: rename clear_buffer() to dell_smbios_clear_buffer() (David Arcari) [1396495]
-- [platform] dell-smbios: rename get_buffer() to dell_smbios_get_buffer() (David Arcari) [1396495]
-- [platform] dell-laptop: extract SMBIOS-related code to a separate module (David Arcari) [1396495]
-- [platform] dell-wmi: Process only one event on devices with interface version 0 (David Arcari) [1396495]
-- [platform] dell-wmi: Check if Dell WMI descriptor structure is valid (David Arcari) [1396495]
-- [platform] dell-wmi: Improve unknown hotkey handling (David Arcari) [1396495]
-- [platform] dell_wmi: Use a C99-style array for bios_to_linux_keycode (David Arcari) [1396495]
-- [platform] dell-laptop: Do not cache hwswitch state (David Arcari) [1396495]
-- [platform] dell-laptop: Check return value of each SMBIOS call (David Arcari) [1396495]
-- [platform] dell-laptop: Clear buffer before each SMBIOS call (David Arcari) [1396495]
-- [platform] dell-laptop: Fix allocating & freeing SMI buffer page (David Arcari) [1396495]
-- [platform] dell-laptop: Show info about WiGig and UWB in debugfs (David Arcari) [1396495]
-- [platform] dell-laptop: Update information about wireless control (David Arcari) [1396495]
-- [platform] dell-laptop: Use dell-rbtn instead i8042 filter when possible (David Arcari) [1396495]
-- [platform] dell-rbtn: Export notifier for other kernel modules (David Arcari) [1396495]
-- [platform] dell-rbtn: Dell Airplane Mode Switch driver (David Arcari) [1396495]
-- [platform] x86: dell-laptop: Add support for keyboard backlight (David Arcari) [1396495]
-- [platform] revert "platform: x86: dell-laptop: Add support for keyboard backlight" (David Arcari) [1396495]
-- [platform] dell-smo8800: Add more ACPI ids and change description of driver (David Arcari) [1396495]
-- [platform] x86: dell-laptop: Add support for keyboard backlight (David Arcari) [1396495]
-- [kernel] leds: add led-class attribute-group support (David Arcari) [1396495]
-- [platform] dell-wmi: Don't report keypresses on keybord illumination change (David Arcari) [1396495]
-- [platform] dell-wmi: Don't report keypresses for radio state changes (David Arcari) [1396495]
-- [platform] dell-wmi: Update code for processing WMI events (David Arcari) [1396495]
-- [platform] dell-wmi: Fix access out of memory (David Arcari) [1396495]
-- [platform] dell-laptop: Mark dell_quirks[] DMI table as __initconst (David Arcari) [1396495]
-- [platform] x86: dell-smo8800: Dell Latitude freefall driver (ACPI SMO8800/SMO8810) (David Arcari) [1396495]
-- [platform] dell-laptop: Only install the i8042 filter when rfkill is active (David Arcari) [1396495]
-- [platform] dell-laptop: rkill whitelist Precision models (David Arcari) [1396495]
-- [platform] dell-laptop: fix to return error code in dell_send_intensity() (David Arcari) [1396495]
-- [platform] acpi: Clean up inclusions of ACPI header files (David Arcari) [1396495]
-- [platform] dell-wmi: Add KEY_MICMUTE to bios_to_linux_keycode (David Arcari) [1396495]
-- [platform] dell-laptop: Only enable rfkill functionality on laptops with a hw killswitch (David Arcari) [1396495]
-- [platform] dell-laptop: Add a force_rfkill module parameter (David Arcari) [1396495]
-- [platform] dell-laptop: Wait less long before updating rfkill after an rfkill keypress (David Arcari) [1396495]
-- [platform] dell-laptop: Do not skip setting blocked bit rfkill_set while hw-blocked (David Arcari) [1396495]
-- [platform] dell-laptop: Sync current block state to BIOS on hw switch change (David Arcari) [1396495]
-- [platform] dell-laptop: Allow changing the sw_state while the radio is blocked by hw (David Arcari) [1396495]
-- [platform] dell-laptop: Don't read-back sw_state on machines with a hardware switch (David Arcari) [1396495]
-- [platform] dell-laptop: Don't set sw_state from the query callback (David Arcari) [1396495]
-- [platform] dell-laptop: Only get status from BIOS once when updating (David Arcari) [1396495]
-- [platform] dell-laptop: If there is no hwswitch, then clear all hw-controlled bits (David Arcari) [1396495]
-- [platform] dell-laptop: Only enable rfkill on Latitudes (David Arcari) [1396495]
-- [platform] revert "dell-laptop: Remove rfkill code" (David Arcari) [1396495]
-- [platform] dell-laptop: fix error return code in dell_init() (David Arcari) [1396495]
-
-* Tue Jan 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-545.el7]
-- [md] dm thin: fix a race condition between discarding and provisioning a block (Mike Snitzer) [1368193 1405225]
-- [md] dm thin: unroll issue_discard() to create longer discard bio chains (Mike Snitzer) [1368193 1405225]
-- [md] dm thin: use __blkdev_issue_discard for async discard support (Mike Snitzer) [1368193 1405225]
-- [md] dm flakey: introduce "error_writes" feature (Mike Snitzer) [1368193 1405225]
-- [md] dm space map: always set ev if sm_ll_mutate() succeeds (Mike Snitzer) [1368193 1405225]
-- [md] dm space map metadata: skip useless memcpy in metadata_ll_init_index() (Mike Snitzer) [1368193 1405225]
-- [md] dm space map metadata: fix 'struct sm_metadata' leak on failed create (Mike Snitzer) [1368193 1405225]
-- [documentation] dm raid: define data_offset status field (Mike Snitzer) [1368193 1405225]
-- [md] dm raid: fix discard support regression (Mike Snitzer) [1368193 1405225]
-- [md] dm raid: don't allow "write behind" with raid4_5_6 (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: use hw_handler_params if attached hw_handler is same as requested (Mike Snitzer) [1368193 1405225]
-- [md] dm array: remove a dead assignment in populate_ablock_with_values() (Mike Snitzer) [1368193 1405225]
-- [md] dm ioctl: use offsetof() instead of open-coding it (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: simplify use_blk_mq initialization (Mike Snitzer) [1368193 1405225]
-- [md] dm: use blk_set_queue_dying() in __dm_destroy() (Mike Snitzer) [1368193 1405225]
-- [md] dm bufio: drop the lock when doing GFP_NOIO allocation (Mike Snitzer) [1368193 1405225]
-- [md] dm bufio: avoid sleeping while holding the dm_bufio lock (Mike Snitzer) [1368193 1405225]
-- [md] dm table: simplify dm_table_determine_type() (Mike Snitzer) [1368193 1405225]
-- [md] dm table: an 'all_blk_mq' table must be loaded for a blk-mq DM device (Mike Snitzer) [1368193 1405225]
-- [md] dm table: fix 'all_blk_mq' inconsistency when an empty table is loaded (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: do not modify *__clone if blk_mq_alloc_request() fails (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: change return type of pg_init_all_paths() from int to void (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: add checks for priority group count to avoid invalid memory access (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: add m->hw_handler_name NULL pointer check in parse_hw_handler() (Mike Snitzer) [1368193 1405225]
-- [md] dm flakey: return -EINVAL on interval bounds error in flakey_ctr() (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: constify crypt_iv_operations structures (Mike Snitzer) [1368193 1405225]
-- [md] dm raid: correct error messages on old metadata validation (Mike Snitzer) [1368193 1405225]
-- [documentation] dm raid: fix typos in Documentation_device-mapper_dm-raid.txt (Mike Snitzer) [1368193 1405225]
-- [md] dm cache: add missing cache device name to DMERR in set_cache_mode() (Mike Snitzer) [1368193 1405225]
-- [md] dm cache metadata: remove an extra newline in DMERR and code (Mike Snitzer) [1368193 1405225]
-- [md] dm verity: fix incorrect error message (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: rename crypt_setkey_allcpus to crypt_setkey (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: mark key as invalid until properly loaded (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: fix a race condition in rq_completed() (Mike Snitzer) [1368193 1405225]
-- [md] dm block manager: make block locking optional (Mike Snitzer) [1368193 1405225]
-- [md] dm: Fix a race condition related to stopping and starting queues (Mike Snitzer) [1368193 1405225]
-- [md] dm: Use BLK_MQ_S_STOPPED instead of QUEUE_FLAG_STOPPED in blk-mq code (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: Add a kick_requeue_list argument to blk_mq_requeue_request() (Mike Snitzer) [1368193 1405225]
-- [block] blk-mq: blk_mq_try_issue_directly() should lookup hardware queue (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: Introduce blk_mq_quiesce_queue() (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: Remove blk_mq_cancel_requeue_work() (Mike Snitzer) [1368193 1405225]
-- [scsi] blk-mq: Avoid that requeueing starts stopped queues (Mike Snitzer) [1368193 1405225]
-- [block] blk-mq: Move more code into blk_mq_direct_issue_request() (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: Introduce blk_mq_queue_stopped() (Mike Snitzer) [1368193 1405225]
-- [block] blk-mq: Introduce blk_mq_hctx_stopped() (Mike Snitzer) [1368193 1405225]
-- [block] blk-mq: Do not invoke .queue_rq() for a stopped queue (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: add flag for drivers wanting blocking ->queue_rq() (Mike Snitzer) [1368193 1405225]
-- [md] dm table: fix missing dm_put_target_type() in dm_table_add_target() (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: clear kworker_task if kthread_run() returned an error (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: check kthread_run return for .request_fn request-based DM (Mike Snitzer) [1368193 1405225]
-- [md] dm mirror: use all available legs on multiple failures (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: always return reservation conflict without failing over (Mike Snitzer) [1368193 1405225]
-- [md] dm bufio: remove dm_bufio_cond_resched() (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: fix crash on exit (Mike Snitzer) [1368193 1405225]
-- [md] dm cache metadata: switch to using the new cursor api for loading metadata (Mike Snitzer) [1368193 1405225]
-- [md] dm array: introduce cursor api (Mike Snitzer) [1368193 1405225]
-- [md] dm btree: introduce cursor api (Mike Snitzer) [1368193 1405225]
-- [md] dm cache policy smq: distribute entries to random levels when switching to smq (Mike Snitzer) [1368193 1405225]
-- [md] dm cache: speed up writing of the hint array (Mike Snitzer) [1368193 1405225]
-- [md] dm array: add dm_array_new() (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: delay the requeue of blk-mq requests while all paths down (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: use dm_mq_kick_requeue_list() (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: introduce dm_mq_kick_requeue_list() (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: reduce arguments passed to map_request() and dm_requeue_original_request() (Mike Snitzer) [1368193 1405225]
-- [kernel] dm rq: add DM_MAPIO_DELAY_REQUEUE to delay requeue of blk-mq requests (Mike Snitzer) [1368193 1405225]
-- [md] dm: convert wait loops to use autoremove_wake_function() (Mike Snitzer) [1368193 1405225]
-- [md] dm: use signal_pending_state() in dm_wait_for_completion() (Mike Snitzer) [1368193 1405225]
-- [md] dm: rename task state function arguments (Mike Snitzer) [1368193 1405225]
-- [md] dm: add two lockdep_assert_held() statements (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: simplify dm_old_stop_queue() (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: check if path's request_queue is dying in activate_path() (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: take request_queue lock while clearing QUEUE_FLAG_STOPPED (Mike Snitzer) [1368193 1405225]
-- [md] dm rq: factor out dm_mq_stop_queue() (Mike Snitzer) [1368193 1405225]
-- [md] dm: mark request_queue dead before destroying the DM device (Mike Snitzer) [1368193 1405225]
-- [md] dm: return correct error code in dm_resume()'s retry loop (Mike Snitzer) [1368193 1405225]
-- [kernel] blk-mq: introduce blk_mq_delay_kick_requeue_list() (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: fix free of bad values after tfm allocation failure (Mike Snitzer) [1368193 1405225]
-- [md] dm flakey: fix reads to be issued if drop_writes configured (Mike Snitzer) [1368193 1405225]
-- [md] dm crypt: increase mempool reserve to better support swapping (Mike Snitzer) [1368193 1405225]
-- [md] dm round robin: do not use this_cpu_ptr() without having preemption disabled (Mike Snitzer) [1368193 1405225]
-- [kernel] dm mpath: add optional "queue_mode" feature (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: remove bio-based bloat from struct dm_mpath_io (Mike Snitzer) [1368193 1405225]
-- [md] dm mpath: reinstate bio-based support (Mike Snitzer) [1368193 1405225]
-
-* Tue Jan 17 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-544.el7]
-- [x86] kvm: nvmx: Allow L1 to intercept software exceptions (#BP and #OF) (Bandan Das) [1404928] {CVE-2016-9588}
-- [x86] perf/x86/intel/uncore: Fix hardcoded socket 0 assumption in the Haswell init code (Prarit Bhargava) [1373738]
-- [pci] Add helpers to request/release memory and I/O regions (Myron Stowe) [1392577]
-- [pci] Move pci_set_flags() from asm-generic/pci-bridge.h to linux/pci.h (Myron Stowe) [1392577]
-- [char] random: Wake up all getrandom(2) callers when pool is ready (Herbert Xu) [1330000]
-- [char] random: introduce getrandom(2) system call (Herbert Xu) [1330000]
-- [iommu] vt-d: Flush old iommu caches for kdump when the device gets context mapped (Myron Stowe) [1340547]
-- [netdrv] i40e: Fix corruption when transferring large files (Stefan Assmann) [1404060 1406126]
-- [netdrv] netvsc: reduce maximum GSO size (Vitaly Kuznetsov) [1406926]
-- [netdrv] fjes: fix format string for trace output (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: update fjes driver version : 1.2 (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: Add debugfs entry for EP status information in fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: ethtool -w and -W support for fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: Add tracepoints in fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: Enhance ethtool -S for fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: ethtool -d support for fjes driver (Yasuaki Ishimatsu) [1388716]
-- [netdrv] fjes: fjes_main: Remove create_workqueue (Yasuaki Ishimatsu) [1388716]
-- [kernel] tracing: Add array printing helper (Yasuaki Ishimatsu) [1388716]
-- [kernel] tracing: Add __get_dynamic_array_len() macro for trace events (Yasuaki Ishimatsu) [1388716]
-- [netdrv] bnx2x: Use the correct divisor value for PHC clock readings (Michal Schmidt) [1175585]
-
-* Mon Jan 16 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-543.el7]
-- [fs] pnfs/blocklayout: fix last_write_offset incorrectly set to page boundary (Benjamin Coddington) [1404245]
-- [fs] pnfs/blocklayout: update last_write_offset atomically with extents (Benjamin Coddington) [1404245]
-- [fs] seq_file: reset iterator to first record for zero offset (Miklos Szeredi) [1386642]
-- [fs] nfs: fix false positives in nfs40_walk_client_list() ("J. Bruce Fields") [1372782]
-- [fs] nfsd4: setclientid_confirm with unmatched verifier should fail ("J. Bruce Fields") [1372782]
-- [fs] nfsd: randomize SETCLIENTID reply to help distinguish servers ("J. Bruce Fields") [1372782]
-- [fs] nfsd: add support for the umask attribute ("J. Bruce Fields") [1217546]
-- [fs] nfsd: catch errors in decode_fattr earlier ("J. Bruce Fields") [1217546]
-- [fs] nfsd: clean up supported attribute handling ("J. Bruce Fields") [1217546]
-- [fs] nfs: add support for the umask attribute ("J. Bruce Fields") [1217546]
-- [fs] nfs4: remove unused CHANGE_SECURITY_LABEL ("J. Bruce Fields") [1217546]
-- [fs] libceph: no need to drop con->mutex for ->get_authorizer() (Ilya Dryomov) [1408170]
-- [fs] libceph: drop len argument of *verify_authorizer_reply() (Ilya Dryomov) [1408170]
-- [fs] libceph: verify authorize reply on connect (Ilya Dryomov) [1408170]
-- [fs] libceph: no need for GFP_NOFS in ceph_monc_init() (Ilya Dryomov) [1408170]
-- [fs] libceph: stop allocating a new cipher on every crypto request (Ilya Dryomov) [1408170]
-- [fs] libceph: uninline ceph_crypto_key_destroy() (Ilya Dryomov) [1408170]
-- [fs] libceph: remove now unused ceph_*{en, de}crypt*() functions (Ilya Dryomov) [1408170]
-- [fs] libceph: switch ceph_x_decrypt() to ceph_crypt() (Ilya Dryomov) [1408170]
-- [fs] libceph: switch ceph_x_encrypt() to ceph_crypt() (Ilya Dryomov) [1408170]
-- [fs] libceph: tweak calcu_signature() a little (Ilya Dryomov) [1408170]
-- [fs] libceph: rename and align ceph_x_authorizer::reply_buf (Ilya Dryomov) [1408170]
-- [fs] libceph: introduce ceph_crypt() for in-place en/decryption (Ilya Dryomov) [1408170]
-- [fs] libceph: introduce ceph_x_encrypt_offset() (Ilya Dryomov) [1408170]
-- [fs] libceph: old_key in process_one_ticket() is redundant (Ilya Dryomov) [1408170]
-- [fs] libceph: ceph_x_encrypt_buflen() takes in_len (Ilya Dryomov) [1408170]
-- [fs] libceph: Remove unnecessary ivsize variables (Ilya Dryomov) [1408170]
-- [fs] libceph: Use skcipher (Ilya Dryomov) [1408170]
-- [fs] nfs: Trim extra slash in v4 nfs_path (Benjamin Coddington) [1130893]
-- [fs] blocklayout: put deviceid node after releasing bl_ext_lock (Benjamin Coddington) [1348596]
-- [fs] xfs: don't BUG() on mixed direct and mapped I/O (Brian Foster) [1364856]
-- [fs] xfs: skip dirty pages in ->releasepage() (Brian Foster) [1079818]
-- [fs] sunrpc: svc_age_temp_xprts_now should not call setsockopt on non-tcp transports (Scott Mayhew) [1372444]
-- [fs] xfs: fix two memory leaks in xfs_attr_list.c error paths (Bill O'Donnell) [1391223] {CVE-2016-9685}
-
-* Fri Jan 13 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-542.el7]
-- [mm] meminit: initialise more memory for inode/dentry hash tables in early boot (Yasuaki Ishimatsu) [1404584]
-- [s390] mem_detect: Revert "add DAT sanity check" (Hendrik Brueckner) [1391540]
-- [s390] cpuinfo: show maximum thread id (Hendrik Brueckner) [1399563]
-- [s390] qeth: omit outbound queue 3 for unicast packets in Priority Queuing on HiperSockets (Hendrik Brueckner) [1380787]
-- [s390] qeth: Add new priority queueing options (Hendrik Brueckner) [1380787]
-- [s390] qeth: Extend priority queueing to IPv6 (Hendrik Brueckner) [1380787]
-- [s390] qeth: Fix default queue setting in priority queueing (Hendrik Brueckner) [1380787]
-- [s390] qeth: Fix IP version detection for VLAN traffic (Hendrik Brueckner) [1380787]
-- [s390] qeth: Removed unused parameter (Hendrik Brueckner) [1380787]
-- [s390] qeth: add network device features for VLAN devices (Hendrik Brueckner) [1274455]
-- [s390] qeth: add layer 2 RX/TX checksum offloading (Hendrik Brueckner) [1274455]
-- [s390] qeth: fix rx checksum offload handling (Hendrik Brueckner) [1274455]
-- [s390] qeth: Include error message for "OS Mismatch" (Hendrik Brueckner) [1200409]
-- [s390] qeth: BRIDGEPORT "sanity check" (Hendrik Brueckner) [1200409]
-- [s390] qeth: OSA version of SETBRIDGEPORT command (Hendrik Brueckner) [1200409]
-- [s390] qeth: IFF_PROMISC flag to BRIDGE PORT mode (Hendrik Brueckner) [1200409]
-- [s390] qeth: fix handling of IPA return codes (Hendrik Brueckner) [1380770]
-- [s390] qeth: fix build of s390 allmodconfig (Hendrik Brueckner) [1380770]
-- [s390] qeth: bridgeport support - address notifications (Hendrik Brueckner) [1380770]
-- [s390] qdio: bridgeport support - CHSC part (Hendrik Brueckner) [1380770]
-- [s390] qeth: bridgeport support - basic control (Hendrik Brueckner) [1380770]
-- [s390] qeth: check not more than 16 SBALEs on the completion queue (Hendrik Brueckner) [1399544]
-- [s390] time: LPAR offset handling (Hendrik Brueckner) [1391531]
-- [s390] time: move PTFF definitions (Hendrik Brueckner) [1391531]
-- [s390] mm: handle PTE-mapped tail pages in fast gup (Hendrik Brueckner) [1391532]
-- [s390] cio: fix accidental interrupt enabling during resume (Hendrik Brueckner) [1391533]
-- [block] xen-blkfront: don't call talk_to_blkback when already connected to blkback (Vitaly Kuznetsov) [1404734]
-- [block] xen-blkfront: Fix crash if backend doesn't follow the right states (Vitaly Kuznetsov) [1404734]
-- [block] xen-blkfront: only talk_to_blkback() when in XenbusStateInitialising (Vitaly Kuznetsov) [1404734]
-- [block] xen-blkfront: move talk_to_blkback to a more suitable place (Vitaly Kuznetsov) [1404734]
-- [kernel] stop_machine: touch_nmi_watchdog() after MULTI_STOP_PREPARE (Oleg Nesterov) [1354850]
-
-* Wed Jan 11 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-541.el7]
-- [netdrv] fm10k: wrap long line for alloc_workqueue (Neil Horman) [1383526]
-- [netdrv] fm10k: use generic ethtool_op_get_ts_info callback (Neil Horman) [1383526]
-- [netdrv] fm10k: don't re-map queues when a mailbox message suffices (Neil Horman) [1383526]
-- [netdrv] fm10k: don't clear the RXQCTL register when enabling or disabling queues (Neil Horman) [1383526]
-- [netdrv] fm10k: remove unnecessary extra parenthesis around ((~value)) (Neil Horman) [1383526]
-- [netdrv] fm10k: don't try to stop queues if we've lost hw_addr (Neil Horman) [1383526]
-- [netdrv] fm10k: don't continue probe if PCI device not in normal IO state (Neil Horman) [1383526]
-- [netdrv] fm10k: print error code when pci_enable_device_mem fails during probe (Neil Horman) [1383526]
-- [netdrv] fm10k: NAPI polling routine must return actual work done (Neil Horman) [1383526]
-- [netdrv] fm10k: prefer READ_ONCE instead of ACCESS_ONCE (Neil Horman) [1383526]
-- [netdrv] fm10k: remove fm10k_get_reta_size from namespace (Neil Horman) [1383526]
-- [netdrv] fm10k: use variadic form of alloc_workqueue (Neil Horman) [1383526]
-- [netdrv] fm10k: use software values when checking for Tx hangs in hot path (Neil Horman) [1383526]
-- [netdrv] fm10k: fix PCI device enable_cnt leak in .io_slot_reset (Neil Horman) [1383526]
-- [netdrv] fm10k: bump version number (Neil Horman) [1383526]
-- [netdrv] fm10k: return proper error code when pci_enable_msix_range fails (Neil Horman) [1383526]
-- [netdrv] fm10k: force link to remain down for at least a second on resume events (Neil Horman) [1383526]
-- [netdrv] fm10k: implement request_lport_map pointer (Neil Horman) [1383526]
-- [netdrv] fm10k: check if PCIe link is restored (Neil Horman) [1383526]
-- [netdrv] fm10k: enable bus master after every reset (Neil Horman) [1383526]
-- [netdrv] fm10k: use common flow for suspend and resume (Neil Horman) [1383526]
-- [netdrv] fm10k: implement reset_notify handler for PCIe FLR events (Neil Horman) [1383526]
-- [netdrv] fm10k: use common reset flow when handling io errors from PCI stack (Neil Horman) [1383526]
-- [netdrv] fm10k: implement prepare_suspend and handle_resume (Neil Horman) [1383526]
-- [netdrv] fm10k: split fm10k_reinit into two functions (Neil Horman) [1383526]
-- [netdrv] fm10k: wait for queues to drain if stop_hw() fails once (Neil Horman) [1383526]
-- [netdrv] fm10k: only warn when stop_hw fails with FM10K_ERR_REQUESTS_PENDING (Neil Horman) [1383526]
-- [netdrv] fm10k: use actual hardware registers when checking for pending Tx (Neil Horman) [1383526]
-- [netdrv] fm10k: perform data path reset even when switch is not ready (Neil Horman) [1383526]
-- [netdrv] fm10k: don't stop reset due to FM10K_ERR_REQUESTS_PENDING (Neil Horman) [1383526]
-- [netdrv] fm10k: Reset mailbox global interrupts (Neil Horman) [1383526]
-- [netdrv] fm10k: prevent multiple threads updating statistics (Neil Horman) [1383526]
-- [netdrv] fm10k: avoid possible null pointer dereference in fm10k_update_stats (Neil Horman) [1383526]
-- [netdrv] fm10k: no need to continue in fm10k_down if __FM10K_DOWN already set (Neil Horman) [1383526]
-- [netdrv] fm10k: Remove create_workqueue (Neil Horman) [1383526]
-- [netdrv] fm10k: fix incorrect index calculation in fm10k_write_reta (Neil Horman) [1383526]
-- [netdrv] fm10k: Align Rx buffers to 512B blocks (Neil Horman) [1383526]
-- [netdrv] fm10k: don't use BIT() macro where the value isn't a bitmask (Neil Horman) [1383526]
-- [netdrv] fm10k: fix incorrect IPv6 extended header checksum (Neil Horman) [1383526]
-- [netdrv] fm10k: consistently use Intel(R) for driver names (Neil Horman) [1383526]
-- [netdrv] fm10k: fix possible null pointer deref after kcalloc (Neil Horman) [1383526]
-- [netdrv] fm10k: Reset multicast mode when deleting lport (Neil Horman) [1383526]
-- [netdrv] fm10k: update comment regarding reserved bits check (Neil Horman) [1383526]
-- [netdrv] fm10k: use different name than FM10K_VLAN_CLEAR for override bit (Neil Horman) [1383526]
-- [netdrv] fm10k: use 8bit notation instead of 10bit notation for diagram (Neil Horman) [1383526]
-- [netdrv] fm10k: fix documentation of fm10k_tlv_parse_attr (Neil Horman) [1383526]
-- [netdrv] fm10k: do not disable PCI device in fm10k_io_error_detected (Neil Horman) [1383526]
-- [netdrv] fm10k: correctly handle LPORT_MAP error (Neil Horman) [1383526]
-- [netdrv] fm10k: Fix multicast mode sync issues (Neil Horman) [1383526]
-- [netdrv] fm10k: drop 1588 support (Neil Horman) [1383526]
-- [netdrv] fm10k: prevent RCU issues during AER events (Neil Horman) [1383526]
-- [netdrv] fm10k: use DRV_SUMMARY to reduce code duplication (Neil Horman) [1383526]
-- [netdrv] fm10k: Add support for bulk Tx cleanup & cleanup boolean logic (Neil Horman) [1383526]
-- [netdrv] fm10k: remove debug-statistics support (Neil Horman) [1383526]
-- [netdrv] fm10k: add helper functions to set strings and data for ethtool stats (Neil Horman) [1383526]
-- [netdrv] fm10k: fix multi-bit VLAN update requests from VF (Neil Horman) [1383526]
-- [netdrv] fm10k: use ethtool_rxfh_indir_default for default redirection table (Neil Horman) [1383526]
-- [netdrv] fm10k: fix a minor typo in some comments (Neil Horman) [1383526]
-- [netdrv] fm10k: correctly clean up when init_queueing_scheme fails (Neil Horman) [1383526]
-- [netdrv] fm10k: prevent possibly uninitialized variable (Neil Horman) [1383526]
-- [netdrv] fm10k: add helper functions to set strings and data for ethtool stats (Neil Horman) [1383526]
-- [netdrv] fm10k: free MBX IRQ before clearing interrupt scheme (Neil Horman) [1383526]
-- [netdrv] fm10k: print error message when stop_hw fails (Neil Horman) [1383526]
-- [netdrv] fm10k: base queue scheme covered by RSS (Neil Horman) [1383526]
-- [netdrv] fm10k: don't initialize service task until later in probe (Neil Horman) [1383526]
-- [netdrv] fm10k: prevent null pointer dereference of msix_entries table (Neil Horman) [1383526]
-- [netdrv] fm10k: use ether_addr_copy to copy MAC address (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup SPACE_BEFORE_TAB checkpatch warning (Neil Horman) [1383526]
-- [netdrv] fm10k: demote BUG_ON() to WARN_ON() where appropriate (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup remaining right-bit-shifted 1 (Neil Horman) [1383526]
-- [netdrv] fm10k: Move constants to the right of binary operators (Neil Horman) [1383526]
-- [netdrv] fm10k: don't reinitialize RSS flow table when RXFH configured (Neil Horman) [1383526]
-- [netdrv] fm10k: IS_ENABLED() is not appropriate for boolean kconfig option (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup mailbox code comments etc (Neil Horman) [1383526]
-- [netdrv] fm10k: use true/false for boolean get_host_state (Neil Horman) [1383526]
-- [netdrv] fm10k: remove unused struct element (Neil Horman) [1383526]
-- [netdrv] fm10k: constify fm10k_mac_ops, fm10k_iov_ops and fm10k_info structures (Neil Horman) [1383526]
-- [netdrv] fm10k: address operator not needed when declaring function pointers (Neil Horman) [1383526]
-- [netdrv] fm10k: use ether_addr_equal instead of memcmp (Neil Horman) [1383526]
-- [netdrv] fm10k: Cleanup exception handling for changing queues (Neil Horman) [1383526]
-- [netdrv] fm10k: correctly pack TLV structures and explain reasoning (Neil Horman) [1383526]
-- [netdrv] fm10k: don't initialize fm10k_workqueue at global level (Neil Horman) [1383526]
-- [netdrv] fm10k: initialize xps at driver load (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup overly long lines (Neil Horman) [1383526]
-- [netdrv] fm10k: cleanup namespace pollution (Neil Horman) [1383526]
-- [netdrv] fm10k: use BIT() macro instead of open-coded bit-shifting (Neil Horman) [1383526]
-- [netdrv] fm10k: whitespace cleanups (Neil Horman) [1383526]
-- [netdrv] fm10k: do not inline fm10k_iov_select_vid() (Neil Horman) [1383526]
-- [netdrv] fm10k: Cleanup exception handling for mailbox interrupt (Neil Horman) [1383526]
-- [netdrv] fm10k: Cleanup MSI-X interrupts in case of failure (Neil Horman) [1383526]
-- [netdrv] fm10k: conditionally compile DCB and DebugFS support (Neil Horman) [1383526]
-- [netdrv] fm10k: bump driver version (Neil Horman) [1383526]
-- [netdrv] fm10k: consistently refer to VLANs and VLAN IDs (Neil Horman) [1383526]
-- [netdrv] fm10k: remove namespace pollution of fm10k_iov_msg_data_pf (Neil Horman) [1383526]
-- [netdrv] fm10k: remove unnecessary else block from if statements with return (Neil Horman) [1383526]
-- [netdrv] fm10k: do not use CamelCase (Neil Horman) [1383526]
-- [netdrv] fm10k: use ether_addr_copy to copy MAC address (Neil Horman) [1383526]
-- [netdrv] fm10k: TRIVIAL cleanup order at top of fm10k_xmit_frame (Neil Horman) [1383526]
-- [netdrv] fm10k: TRIVIAL fix typo of hardware (Neil Horman) [1383526]
-- [netdrv] fm10k: change default Tx ITR to 25usec (Neil Horman) [1383526]
-- [netdrv] fm10k: use macro for default Tx and Rx ITR values (Neil Horman) [1383526]
-- [netdrv] fm10k: Update adaptive ITR algorithm (Neil Horman) [1383526]
-- [netdrv] fm10k: introduce ITR_IS_ADAPTIVE macro (Neil Horman) [1383526]
-- [netdrv] fm10k: Add support for ITR scaling based on PCIe link speed (Neil Horman) [1383526]
-- [netdrv] fm10k: rename mbx_tx_oversized statistic to mbx_tx_dropped (Neil Horman) [1383526]
-- [netdrv] fm10k: add statistics for actual DWORD count of mbmem mailbox (Neil Horman) [1383526]
-- [netdrv] fm10k: explicitly typecast vlan values to u16 (Neil Horman) [1383526]
-- [netdrv] fm10k: Correct typecast in fm10k_update_xc_addr_pf (Neil Horman) [1383526]
-- [netdrv] fm10k: reinitialize queuing scheme after calling init_hw (Neil Horman) [1383526]
-- [netdrv] fm10k: always check init_hw for errors (Neil Horman) [1383526]
-- [netdrv] fm10k: reset max_queues on init_hw_vf failure (Neil Horman) [1383526]
-- [netdrv] fm10k: set netdev features in one location (Neil Horman) [1383526]
-- [netdrv] fm10k: use napi_schedule_irqoff() (Neil Horman) [1383526]
-- [netdrv] fm10k: Fix handling of NAPI budget when multiple queues are enabled per vector (Neil Horman) [1383526]
-- [netdrv] fm10k: Correct MTU for jumbo frames (Neil Horman) [1383526]
-- [netdrv] fm10k: do not assume VF always has 1 queue (Neil Horman) [1383526]
-- [netdrv] fm10k: fix memory leak (Neil Horman) [1383526]
-
-* Tue Jan 10 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-540.el7]
-- [thermal] powerclamp: add back module device table (Steve Best) [1410139]
-- [cpufreq] intel_pstate: Fix code ordering in intel_pstate_set_policy() (Prarit Bhargava) [1398072]
-- [x86] kvm: x86: make lapic hrtimer pinned (Luiz Capitulino) [1392593]
-- [kernel] sched/nohz: Fix affine unpinned timers mess (Luiz Capitulino) [1392593]
-- [kernel] nohz: Affine unpinned timers to housekeepers (Luiz Capitulino) [1392593]
-- [kernel] tick-sched: add housekeeping_mask cpumask (Luiz Capitulino) [1392593]
-- [kernel] kmod: use system_unbound_wq instead of khelper (Luiz Capitulino) [1395860]
-- [kernel] tracing/uprobes: Pass 'is_return' to traceprobe_parse_probe_arg() (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/uprobes: Add @+file_offset fetch method (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] uprobes: Allocate ->utask before handler_chain() for tracing handlers (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/uprobes: Add support for full argument access methods (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Implement 'memory' fetch method for uprobes (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Add fetch{, _size} member into deref fetch method (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Move 'symbol' fetch method to kprobes (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Implement 'stack' fetch method for uprobes (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Split [ku]probes_fetch_type_table (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Move fetch function helpers to trace_probe.h (Jiri Olsa) [1374759 1376533 1385781]
-- [kernel] tracing/probes: Fix basic print type functions (Jiri Olsa) [1374759 1376533 1385781]
-- [tools] perf probe: Move dwarf specific functions to dwarf-aux.c (Jiri Olsa) [1374759 1376533 1385781]
-- [tools] perf uprobe: Skip prologue if program compiled without optimization (Jiri Olsa) [1374759 1376533 1385781]
-- [tools] perf probe: Add helper function to check if probe with variable (Jiri Olsa) [1374759 1376533 1385781]
-
-* Mon Jan 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-539.el7]
-- [tools] perf evsel: Do not access outside hw cache name arrays (Jiri Olsa) [1387909]
-- [tools] tools lib: Reinstate strlcpy() header guard with __UCLIBC__ (Jiri Olsa) [1387909]
-- [tools] perf unwind: Use addr_location::addr instead of ip for entries (Jiri Olsa) [1387909]
-- [tools] perf intel-pt: Fix occasional decoding errors when tracing system-wide (Jiri Olsa) [1387909]
-- [tools] perf probe: Release resources on error when handling exit paths (Jiri Olsa) [1387909]
-- [tools] perf probe: Check for dup and fdopen failures (Jiri Olsa) [1387909]
-- [tools] perf symbols: Fix annotation of objects with debuginfo files (Jiri Olsa) [1387909]
-- [tools] perf script: Don't disable use_callchain if input is pipe (Jiri Olsa) [1387909]
-- [tools] perf script: Show proper message when failed list scripts (Jiri Olsa) [1387909]
-- [tools] perf jitdump: Add the right header to get the major()/minor() definitions (Jiri Olsa) [1387909]
-- [tools] perf ppc64le: Fix build failure when libelf is not present (Jiri Olsa) [1376534 1387909]
-- [tools] perf intel-pt: Fix ip compression (Jiri Olsa) [1387909]
-- [tools] perf probe ppc64le: Fix probe location when using DWARF (Jiri Olsa) [1376534 1387909]
-- [tools] perf probe: Add function to post process kernel trace events (Jiri Olsa) [1376534 1387909]
-- [tools] perf probe: Support signedness casting (Jiri Olsa) [1387909]
-- [tools] perf stat: Avoid skew when reading events (Jiri Olsa) [1387909]
-- [tools] perf probe: Fix module name matching (Jiri Olsa) [1387909]
-- [tools] perf probe: Adjust map->reloc offset when finding kernel symbol from map (Jiri Olsa) [1387909]
-- [tools] perf hists: Trim libtraceevent trace_seq buffers (Jiri Olsa) [1387909]
-- [tools] perf tests: objdump output can contain multi byte chunks (Jiri Olsa) [1387909]
-- [tools] perf record: Add --sample-cpu option (Jiri Olsa) [1387909]
-- [tools] perf hists: Introduce output_resort_cb method (Jiri Olsa) [1387909]
-- [tools] perf tools: Move config/Makefile into Makefile.config (Jiri Olsa) [1387909]
-- [tools] perf tests: Add test for bitmap_scnprintf function (Jiri Olsa) [1387909]
-- [tools] tools lib: Add bitmap_and function (Jiri Olsa) [1387909]
-- [tools] tools lib: Add bitmap_scnprintf function (Jiri Olsa) [1387909]
-- [tools] tools lib: Add bitmap_alloc function (Jiri Olsa) [1387909]
-- [tools] tools lib traceevent: Ignore generated library files (Jiri Olsa) [1387909]
-- [tools] perf tools: Fix build failure on perl script context (Jiri Olsa) [1387909]
-- [tools] perf annotate: Plug filename string leak (Jiri Olsa) [1387909]
-- [tools] perf annotate: Introduce strerror for handling symbol__disassemble() errors (Jiri Olsa) [1387909]
-- [tools] perf annotate: Rename symbol__annotate() to symbol__disassemble() (Jiri Olsa) [1387909]
-- [tools] perf target: str_error_r() always returns the buffer it receives (Jiri Olsa) [1387909]
-- [tools] perf annotate: Use pipe + fork instead of popen (Jiri Olsa) [1387909]
-- [tools] perf evsel: Introduce constructor for cycles event (Jiri Olsa) [1387909]
-- [tools] tools lib api: Add str_error_c to libapi (Jiri Olsa) [1387909]
-- [tools] perf s390: Fix 'start' address of module's map (Jiri Olsa) [1387909]
-- [tools] revert "perf tools: event.h needs asm/perf_regs.h" (Jiri Olsa) [1387909]
-- [tools] tools build: Fix objtool build with ARCH=x86_64 (Jiri Olsa) [1387909]
-- [tools] tools build: Add HOSTARCH Makefile variable (Jiri Olsa) [1387909]
-- [tools] perf tests kmod-path: Fix build on ubuntu:16.04-x-armhf (Jiri Olsa) [1387909]
-- [tools] perf tools: Add AVX-512 instructions to the new instructions test (Jiri Olsa) [1387909]
-- [tools] perf tools: Add AVX-512 support to the instruction decoder used by Intel PT (Jiri Olsa) [1387909]
-- [tools] x86/insn: perf tools: Fix vcvtph2ps instruction decoding (Jiri Olsa) [1387909]
-- [tools] perf tests: Add is_printable_array test (Jiri Olsa) [1387909]
-- [tools] perf tools: Make is_printable_array global (Jiri Olsa) [1387909]
-- [tools] perf script python: Fix string vs byte array resolving (Jiri Olsa) [1387909]
-- [tools] perf probe: Warn unmatched function filter correctly (Jiri Olsa) [1387909]
-- [tools] perf cpu_map: Add more helpers (Jiri Olsa) [1387909]
-- [tools] perf stat: Balance opening and reading events (Jiri Olsa) [1387909]
-- [tools] Copy linux/{hash, poison}.h and check for drift (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove include/linux/list.h from perf's MANIFEST (Jiri Olsa) [1387909]
-- [tools] Copy the bitops files accessed from the kernel and check for drift (Jiri Olsa) [1387909]
-- [tools] remove: kernel unistd*h files from perf's MANIFEST, not used (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove tools/perf/util/include/linux/const.h (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove tools/perf/util/include/asm/byteorder.h (Jiri Olsa) [1387909]
-- [tools] perf tools: Add missing linux/compiler.h include to perf-sys.h (Jiri Olsa) [1387909]
-- [tools] perf jit: Remove some no-op error handling (Jiri Olsa) [1387909]
-- [tools] perf jit: Add missing curly braces (Jiri Olsa) [1387909]
-- [tools] perf record: Add --tail-synthesize option (Jiri Olsa) [1387909]
-- [tools] perf session: Don't warn about out of order event if write_backward is used (Jiri Olsa) [1387909]
-- [tools] perf tools: Enable overwrite settings (Jiri Olsa) [1387909]
-- [tools] perf evlist: Make {pause, resume} internal helpers (Jiri Olsa) [1387909]
-- [tools] perf record: Read from overwritable ring buffer (Jiri Olsa) [1387909]
-- [tools] perf evlist: Setup backward mmap state machine (Jiri Olsa) [1387909]
-- [tools] perf evlist: Drop evlist->backward (Jiri Olsa) [1387909]
-- [tools] perf evlist: Map backward events to backward_mmap (Jiri Olsa) [1387909]
-- [tools] perf evlist: Introduce backward_mmap array for evlist (Jiri Olsa) [1387909]
-- [tools] perf evlist: Extract common code in mmap failure processing (Jiri Olsa) [1387909]
-- [tools] perf evlist: Record mmap cookie into fdarray private field (Jiri Olsa) [1387909]
-- [tools] perf record: Decouple record__mmap_read() and evlist (Jiri Olsa) [1387909]
-- [tools] perf evlist: Update mmap related APIs and helpers (Jiri Olsa) [1387909]
-- [tools] tools lib fd array: Allow associating a pointer cookie with each entry (Jiri Olsa) [1387909]
-- [tools] Simplify BITS_PER_LONG define (Jiri Olsa) [1387909]
-- [tools] perf evlist: Drop redundant evsel->overwrite indicator (Jiri Olsa) [1387909]
-- [tools] tools lib api fs: Use base 0 in filename__read_ull (Jiri Olsa) [1387909]
-- [tools] perf tools: Bail out at "--sort dcacheline" and cacheline_size not known (Jiri Olsa) [1387909]
-- [tools] perf tools: Just pr_debug() about not being able to read cacheline_size (Jiri Olsa) [1387909]
-- [tools] Make "__always_inline" just "inline" on Android (Jiri Olsa) [1387909]
-- [tools] perf tools: Do not provide dup sched_getcpu() prototype on Android (Jiri Olsa) [1387909]
-- [tools] tools lib traceevent: Add correct header for ipv6 definitions (Jiri Olsa) [1387909]
-- [tools] perf build: Add sdt feature detection (Jiri Olsa) [1387909]
-- [tools] perf probe: Support a special SDT probe format (Jiri Olsa) [1387909]
-- [tools] perf probe: Support @BUILDID or @FILE suffix for SDT events (Jiri Olsa) [1387909]
-- [tools] perf list: Show SDT and pre-cached events (Jiri Olsa) [1387909]
-- [tools] perf probe: Search SDT/cached event from all probe caches (Jiri Olsa) [1387909]
-- [tools] perf probe: Allow wildcard for cached events (Jiri Olsa) [1387909]
-- [tools] perf probe-cache: Add for_each_probe_cache_entry() wrapper (Jiri Olsa) [1387909]
-- [tools] perf probe: Make --list show only available cached events (Jiri Olsa) [1387909]
-- [tools] perf probe: Accept sdt and cached event name (Jiri Olsa) [1387909]
-- [tools] perf probe: Fix to show correct error message for $vars and $params (Jiri Olsa) [1387909]
-- [tools] perf event parser: Add const qualifier to evt_name and sys_name (Jiri Olsa) [1387909]
-- [tools] Fix up BITS_PER_LONG setting (Jiri Olsa) [1387909]
-- [tools] Work around BITS_PER_LONG related build failure in objtool (Jiri Olsa) [1387909]
-- [tools] tools lib traceevent: Add filter on task CPU id (Jiri Olsa) [1387909]
-- [tools] perf python: Add tracepoint example (Jiri Olsa) [1387909]
-- [tools] perf python: Add support to resolve tracepoint fields (Jiri Olsa) [1387909]
-- [tools] perf python: Add struct evsel into struct pyrf_event (Jiri Olsa) [1387909]
-- [tools] perf python: Add perf.tracepoint method (Jiri Olsa) [1387909]
-- [tools] perf python: Put perf.event objects into dictionary (Jiri Olsa) [1387909]
-- [tools] perf python: Fix pyrf_evlist__read_on_cpu event consuming (Jiri Olsa) [1387909]
-- [tools] perf python: Init perf_event_attr::size in perf.evsel constructor (Jiri Olsa) [1387909]
-- [tools] perf tools: Introduce trace_event__tp_format_id() (Jiri Olsa) [1387909]
-- [tools] perf evlist: Make event2evsel public (Jiri Olsa) [1387909]
-- [tools] perf symbols: Add Rust demangling (Jiri Olsa) [1387909]
-- [tools] perf tools: Add feature detection for gelf_getnote() (Jiri Olsa) [1387909]
-- [tools] perf intel-pt-decoder: Avoid checking code drift on busibox's diff (Jiri Olsa) [1387909]
-- [tools] perf tools: Don't add kernel directories to the header search path (Jiri Olsa) [1387909]
-- [tools] perf tools: Add the tools/ stringify copy to the MANIFEST (Jiri Olsa) [1387909]
-- [tools] Copy the bitsperlong.h files from the kernel (Jiri Olsa) [1387909]
-- [tools] perf script python: Silence -Werror=maybe-uninitialized on gcc 5.3.0 (Jiri Olsa) [1387909]
-- [tools] perf symbols: Provide a GElf_Nhdr typedef (Jiri Olsa) [1387909]
-- [tools] perf trace beauty seccomp: Remove seccomp.h include (Jiri Olsa) [1387909]
-- [tools] perf trace beauty futex_op: Add missing defines for older systems (Jiri Olsa) [1387909]
-- [tools] perf tools: Fallback to reading sysfs to get cacheline size (Jiri Olsa) [1387909]
-- [tools] Copy the header files needed by perf tools (Jiri Olsa) [1387909]
-- [tools] perf trace: Remove unused sys/ptrace.h include (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove unneeded magic.h include from util.h (Jiri Olsa) [1387909]
-- [tools] perf tools: Introduce weak alternative to sched_getcpu() (Jiri Olsa) [1387909]
-- [tools] Copy uapi/linux/hw_breakpoint.h from the kernel (Jiri Olsa) [1387909]
-- [tools] Copy uapi/asm/perf_regs.h from the kernel (Jiri Olsa) [1387909]
-- [tools] tools lib bpf: Copy bpf.h and bpf_common.h from the kernel (Jiri Olsa) [1387909]
-- [tools] Add copy of perf_event.h to tools/include/linux/ (Jiri Olsa) [1387909]
-- [tools] perf tools: event.h needs asm/perf_regs.h (Jiri Olsa) [1387909]
-- [tools] perf bench futex: Add missing compiler.h header (Jiri Olsa) [1387909]
-- [tools] tools lib subcmd: Use str_error_r() (Jiri Olsa) [1387909]
-- [tools] tools lib: Guard the strlcpy() header with __GLIBC__ (Jiri Olsa) [1387909]
-- [tools] tools lib api fs: Use str_error_r() (Jiri Olsa) [1387909]
-- [tools] tools lib traceevent: Use str_error_r() (Jiri Olsa) [1387909]
-- [tools] perf tools: Uninline scnprintf() and vscnprint() (Jiri Olsa) [1387909]
-- [tools] perf evsel: Uninline the is_function_event method (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove needless includes from cache.h (Jiri Olsa) [1387909]
-- [tools] perf llvm: Use realpath to canonicalize paths (Jiri Olsa) [1387909]
-- [tools] perf tools: Add missing header to color.c (Jiri Olsa) [1387909]
-- [tools] perf tests x86 rdpmc: Add missing headers (Jiri Olsa) [1387909]
-- [tools] perf test fdarray: Add missing poll.h header (Jiri Olsa) [1387909]
-- [tools] perf tests cpumap: Add missing headers (Jiri Olsa) [1387909]
-- [tools] perf quote: Disentangle headers (Jiri Olsa) [1387909]
-- [tools] perf strbuf: Add missing headers (Jiri Olsa) [1387909]
-- [tools] perf tools: Move syscall number fallbacks from perf-sys.h to tools/arch/x86/include/asm/ (Jiri Olsa) [1387909]
-- [tools] perf bench: Disentangle headers (Jiri Olsa) [1387909]
-- [tools] perf tests openat-syscall-tp-fields: Add some conditional defines (Jiri Olsa) [1387909]
-- [tools] perf trace: Add conditional define for AT_FDCWD (Jiri Olsa) [1387909]
-- [tools] perf tests: Add missing pthread.h include for CPU_*() macros (Jiri Olsa) [1387909]
-- [tools] perf bench: Add missing pthread.h include for CPU_*() macros (Jiri Olsa) [1387909]
-- [tools] Introduce str_error_r() (Jiri Olsa) [1387909]
-- [tools] perf trace beauty open_flags: Add more conditional defines (Jiri Olsa) [1387909]
-- [tools] perf trace beauty flock: Add more conditional defines (Jiri Olsa) [1387909]
-- [tools] perf trace beauty mmap: Add more conditional defines (Jiri Olsa) [1387909]
-- [tools] perf trace beauty open_flags: Add missing headers (Jiri Olsa) [1387909]
-- [tools] perf trace beauty flock: Add missing fcntl.h include (Jiri Olsa) [1387909]
-- [tools] perf trace beauty msg_flags: Remove MSG_TRYHARD (Jiri Olsa) [1387909]
-- [tools] perf report: Introduce --stdio-color to setup the color output mode selection (Jiri Olsa) [1387909]
-- [tools] perf annotate: Introduce --stdio-color to setup the color output mode selection (Jiri Olsa) [1387909]
-- [tools] perf ui stdio: Add way to setup the color output mode selection (Jiri Olsa) [1387909]
-- [tools] perf hists: Introduce hists__add_entry_ops function (Jiri Olsa) [1387909]
-- [tools] perf hists: Introduce hist_entry_ops (Jiri Olsa) [1387909]
-- [tools] perf hists: Introduce hist_entry__init function (Jiri Olsa) [1387909]
-- [tools] perf tools: Update android build documentation (Jiri Olsa) [1387909]
-- [tools] tools lib subcmd: Respect WERROR=0 for build (Jiri Olsa) [1387909]
-- [tools] tools lib api: Respect WERROR=0 for build (Jiri Olsa) [1387909]
-- [tools] perf unwind: Call unwind__prepare_access for forked thread (Jiri Olsa) [1387909]
-- [tools] perf unwind: Add initialized arg into unwind__prepare_access (Jiri Olsa) [1387909]
-- [tools] perf tests: Fix hist accumulation test (Jiri Olsa) [1387909]
-- [tools] perf header: Transform nodes string info to struct (Jiri Olsa) [1387909]
-- [tools] perf buildid-cache: Scan and import user SDT events to probe cache (Jiri Olsa) [1387909]
-- [tools] perf probe: Add group name support (Jiri Olsa) [1387909]
-- [tools] perf sdt: ELF support for SDT (Jiri Olsa) [1387909]
-- [tools] perf build: Add feature detection for libelf's elf_getshdrstrndx() (Jiri Olsa) [1387909]
-- [tools] perf probe: Remove caches when --cache is given (Jiri Olsa) [1387909]
-- [tools] perf probe: Show all cached probes (Jiri Olsa) [1387909]
-- [tools] perf probe: Use cache entry if possible (Jiri Olsa) [1387909]
-- [tools] perf tools: Change cpu_map__fprintf output (Jiri Olsa) [1387909]
-- [tools] perf test: Add -F/--dont-fork option (Jiri Olsa) [1387909]
-- [tools] perf tests: Fix thread map test for -F option (Jiri Olsa) [1387909]
-- [tools] perf tools: Allow to reset open files counter (Jiri Olsa) [1387909]
-- [tools] perf trace beauty eventfd: No need to include eventfd.h (Jiri Olsa) [1387909]
-- [tools] perf trace beauty sched_policy: Define SCHED_RESET_ON_FORK for older systems (Jiri Olsa) [1387909]
-- [tools] perf annotate: Add number of samples to the header (Jiri Olsa) [1387909]
-- [tools] perf annotate: Simplify header dotted line sizing (Jiri Olsa) [1387909]
-- [tools] perf evsel: Utility function to fetch arch (Jiri Olsa) [1387909]
-- [tools] perf tools: Add documentation for perf.data on disk format (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Generate fork and exit events to CTF output (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Add '--all' option for 'perf data convert' (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Generate comm event to CTF output (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Prepare collect non-sample events (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Add 'all' option (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Pass convert options through opts structure (Jiri Olsa) [1387909]
-- [tools] perf data ctf: Add value_set_string() helper (Jiri Olsa) [1387909]
-- [tools] perf symbols: Use proper dso name for is_regular_file (Jiri Olsa) [1387909]
-- [tools] perf record: Prepare picking perf_event_mmap_page from multiple evlists (Jiri Olsa) [1387909]
-- [tools] perf record: Prepare reading from multiple evlists in record__mmap_read_all() (Jiri Olsa) [1387909]
-- [tools] perf record: Move mmap setup block to separate function (Jiri Olsa) [1387909]
-- [tools] perf data convert: Include config.h header (Jiri Olsa) [1387909]
-- [tools] perf build: Add libbabeltrace to build-test (Jiri Olsa) [1387909]
-- [tools] perf tools: Add more toolchain triplets (Jiri Olsa) [1387909]
-- [tools] perf annotate: Generalize handling of 'ret' instructions (Jiri Olsa) [1387909]
-- [tools] perf tools: Update makefile message for installing slang devel package (Jiri Olsa) [1387909]
-- [tools] perf annotate: Remove unused hist_entry__annotate function (Jiri Olsa) [1387909]
-- [tools] perf config: Reimplement show_config() using config_set__for_each (Jiri Olsa) [1387909]
-- [tools] perf config: Introduce new init() and exit() (Jiri Olsa) [1387909]
-- [tools] perf script: Add callindent option (Jiri Olsa) [1387909]
-- [tools] perf auxtrace: Add option to feed branches to the thread stack (Jiri Olsa) [1387909]
-- [tools] perf script: Print sample flags more nicely (Jiri Olsa) [1387909]
-- [tools] perf intlist: Rename for_each() macros to for_each_entry() (Jiri Olsa) [1387909]
-- [tools] perf rb_resort: Rename for_each() macros to for_each_entry() (Jiri Olsa) [1387909]
-- [tools] perf tools: Rename strlist_for_each() macros to for_each_entry() (Jiri Olsa) [1387909]
-- [tools] perf evlist: Rename for_each() macros to for_each_entry() (Jiri Olsa) [1387909]
-- [tools] perf unwind: Fix wrongly used regs for aarch64 unwind (Jiri Olsa) [1387909]
-- [tools] perf unwind: Fix wrongly used regs for x86_32 unwind (Jiri Olsa) [1387909]
-- [tools] perf unwind: Change macro names of perf register (Jiri Olsa) [1387909]
-- [tools] perf tools: Find right DSO taking into account if binary is 32 or 64-bit (Jiri Olsa) [1387909]
-- [tools] perf config: Move config declarations from util/cache.h to util/config.h (Jiri Olsa) [1387909]
-- [tools] perf tools: Let python use correct gcc for build_ext (Jiri Olsa) [1387909]
-- [tools] perf machine: Destructors should accept NULL (Jiri Olsa) [1387909]
-- [tools] perf tests time-to-tsc: No need to disable an event before deleting it (Jiri Olsa) [1387909]
-- [tools] perf session: Destructors should accept NULL (Jiri Olsa) [1387909]
-- [tools] perf evlist: Destructors should accept NULL (Jiri Olsa) [1387909]
-- [tools] perf hists: Enlarge pid sort entry size (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Introduce init() (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Introduce perf_evsel_browser constructor (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Move horizontal scroll init to new() (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Introduce struct hist_browser title callback (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Make (new|delete|run) public (Jiri Olsa) [1387909]
-- [tools] perf hists browser: Move hist_browser into header file (Jiri Olsa) [1387909]
-- [tools] perf script stackcollapse: Remove reference to the perl interpreter (Jiri Olsa) [1387909]
-- [tools] perf script: Add stackcollapse.py script (Jiri Olsa) [1387909]
-- [tools] perf evsel: Fix write_backwards fallback (Jiri Olsa) [1387909]
-- [tools] perf record: Add --dry-run option to check cmdline options (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove --perf-dir and --work-dir (Jiri Olsa) [1387909]
-- [tools] perf tools: Remove some unused functions (Jiri Olsa) [1387909]
-- [tools] perf hists: Rename __hists__add_entry to hists__add_entry (Jiri Olsa) [1387909]
-- [tools] perf script: Fix documentation of '-f' when it should be '-F' (Jiri Olsa) [1387909]
-- [tools] perf probe: Add --cache option to cache the probe definitions (Jiri Olsa) [1387909]
-- [tools] perf probe: Introduce perf_cache interfaces (Jiri Olsa) [1387909]
-- [tools] perf hists: Replace perf_evsel arg perf_hpp_fmt's width callback (Jiri Olsa) [1387909]
-- [tools] perf hists: Replace perf_evsel arg perf_hpp_fmt's header callback (Jiri Olsa) [1387909]
-- [tools] perf stdio: Add use_callchain parameter to hists__fprintf (Jiri Olsa) [1387909]
-- [tools] perf stdio: Do not pass hists in hist_entry__fprintf (Jiri Olsa) [1387909]
-- [tools] perf stdio: Separate standard headers output (Jiri Olsa) [1387909]
-- [tools] perf stdio: Separate hierarchy headers output (Jiri Olsa) [1387909]
-- [tools] perf stdio: Separate headers output (Jiri Olsa) [1387909]
-- [tools] perf tui: Separate hierarchy and standard headers output (Jiri Olsa) [1387909]
-- [tools] perf tools: Fix Data Object sort entry width index (Jiri Olsa) [1387909]
-- [tools] perf mem: Add --ldlat option (Jiri Olsa) [1387909]
-- [tools] perf unwind: Fix compile error for static cross build (Jiri Olsa) [1387909]
-- [tools] perf probe: Uncomment and export synthesize_perf_probe_point() (Jiri Olsa) [1387909]
-- [tools] perf probe: Add perf_probe_event__copy() (Jiri Olsa) [1387909]
-- [tools] perf buildid: Rename and export build_id_cache__cachedir() (Jiri Olsa) [1387909]
-- [tools] perf probe: Fix to add NULL check for strndup (Jiri Olsa) [1387909]
-- [tools] perf tools: Fix rm_rf() to handle non-regular files correctly (Jiri Olsa) [1387909]
-- [tools] perf config: Handle NULL at perf_config_set__delete() (Jiri Olsa) [1387909]
-- [tools] perf callchain: Support aarch64 cross-platform (Jiri Olsa) [1387909]
-- [tools] perf callchain: Support x86 target platform (Jiri Olsa) [1387909]
-- [tools] perf unwind: Introduce flag to separate local/remote unwind compilation (Jiri Olsa) [1387909]
-- [tools] perf unwind: Change fixed name of libunwind__arch_reg_id to macro (Jiri Olsa) [1387909]
-- [tools] perf unwind: Check the target platform before assigning unwind methods (Jiri Olsa) [1387909]
-- [tools] perf tools: Export normalize_arch() function (Jiri Olsa) [1387909]
-- [tools] perf tools: Extract common API out of unwind-libunwind-local.c (Jiri Olsa) [1387909]
-- [tools] perf unwind: Rename unwind-libunwind.c to unwind-libunwind-local.c (Jiri Olsa) [1387909]
-- [tools] perf unwind: Separate local/remote libunwind config (Jiri Olsa) [1387909]
-- [tools] perf unwind: Don't mix LIBUNWIND_LIBS into LIBUNWIND_LDFLAGS (Jiri Olsa) [1387909]
-- [tools] perf unwind: Move unwind__prepare_access from thread_new into thread__insert_map (Jiri Olsa) [1387909]
-- [tools] perf unwind: Introduce 'struct unwind_libunwind_ops' for local unwind (Jiri Olsa) [1387909]
-- [tools] perf unwind: Decouple thread->address_space on libunwind (Jiri Olsa) [1387909]
-- [tools] perf unwind: Use LIBUNWIND_DIR for remote libunwind feature check (Jiri Olsa) [1387909]
-- [tools] perf config: Use new perf_config_set__init() to initialize config set (Jiri Olsa) [1387909]
-- [tools] perf config: Constructor should free its allocated memory when failing (Jiri Olsa) [1387909]
-- [tools] perf tools: Fix crash in build_id_cache__kallsyms_path() (Jiri Olsa) [1387909]
-- [tools] perf config: Handle the error when config set is NULL at collect_config() (Jiri Olsa) [1387909]
-- [tools] perf config: Fix abnormal termination at perf_parse_file() (Jiri Olsa) [1387909]
-- [tools] perf stat: Add missing aggregation headers for --metric-only CSV (Jiri Olsa) [1387909]
-- [tools] perf stat: Print topology/time headers with --metric-only (Jiri Olsa) [1387909]
-- [tools] perf stat: Add computation of TopDown formulas (Jiri Olsa) [1387909]
-- [tools] perf stat: Basic support for TopDown in perf stat (Jiri Olsa) [1387909]
-- [tools] perf test: Ignore .scale and other special files (Jiri Olsa) [1387909]
-- [tools] perf script: Show call graphs when 1st event doesn't have it but some other has (Jiri Olsa) [1387909]
-- [tools] tools lib api: Respect CROSS_COMPILE for the linker (Jiri Olsa) [1387909]
-- [tools] perf evlist: Fix alloc_mmap() failure path (Jiri Olsa) [1387909]
-- [tools] perf evsel: Provide way to extract integer value from format_field (Jiri Olsa) [1387909]
-- [tools] perf: Handle -EOPNOTSUPP for sampling events (Jiri Olsa) [1387909]
-- [tools] perf buildid-cache: Use path/to/bin/buildid/elf instead of path/to/bin/buildid (Jiri Olsa) [1387909]
-- [tools] perf symbols: Cleanup the code flow of dso__find_kallsyms (Jiri Olsa) [1387909]
-- [tools] perf symbols: Introduce filename__readable to check readability (Jiri Olsa) [1387909]
-- [tools] perf tools: Add arch/*/include/generated/ to .gitignore (Jiri Olsa) [1387909]
-- [tools] Pass arg to fdarray__filter's call back function (Jiri Olsa) [1387909]
-- [tools] perf evlist: Choose correct reading direction according to evlist->backward (Jiri Olsa) [1387909]
-- [tools] perf evlist: Check 'base' pointer before checking refcnt when put a mmap (Jiri Olsa) [1387909]
-- [tools] perf evlist: Don't poll and mmap overwritable events (Jiri Olsa) [1387909]
-- [tools] perf record: Robustify perf_event__synth_time_conv() (Jiri Olsa) [1387909]
-- [tools] perf thread: Adopt get_main_thread from db-export.c (Jiri Olsa) [1387909]
-- [kernel] perf/core: Limit matching exclusive events to one PMU (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Make it an exclusive PMU (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Make sure debug store is valid (Jiri Olsa) [1387909]
-- [x86] perf/x86/amd: Make HW_CACHE_REFERENCES and HW_CACHE_MISSES measure L2 (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/pt: Do validate the size of a kernel address filter (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/pt: Fix kernel address filter's offset validation (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/pt: Fix an off-by-one in address filter configuration (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel: Don't disable "intel_bts" around "intel" event batching (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel: Fix PEBSv3 record drain (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Kill a silly warning (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Fix BTS PMI detection (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/bts: Fix confused ordering of PMU callbacks (Jiri Olsa) [1387909]
-- [x86] perf/x86/amd/uncore: Prevent use after free (Jiri Olsa) [1387909]
-- [kernel] perf/core: Remove WARN from perf_event_read() (Jiri Olsa) [1387909]
-- [kernel] perf/core: Use this_cpu_ptr() when stopping AUX events (Jiri Olsa) [1387909]
-- [kernel] perf/core: Check return value of the perf_event_read() IPI (Jiri Olsa) [1387909]
-- [kernel] perf/core: Enable mapping of the stop filters (Jiri Olsa) [1387909]
-- [kernel] perf/core: Update filters only on executable mmap (Jiri Olsa) [1387909]
-- [kernel] perf/core: Fix file name handling for start/stop filters (Jiri Olsa) [1387909]
-- [kernel] perf/core: Fix event_function_local() (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/uncore: Fix uncore num_counters (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/uncore: Remove redundant pci_get_drvdata() (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel: Use Intel family macros for core perf events (Jiri Olsa) [1387909]
-- [kernel] perf/core: Fix crash due to account/unaccount_sb_event() inconsistency (Jiri Olsa) [1387909]
-- [kernel] perf/abi: Change the errno for sampling event not supported in hardware (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel/uncore: Locate specific box by checking full device info (Jiri Olsa) [1387909]
-- [x86] perf/x86/intel: Add 'static' keyword to locally used arrays (Jiri Olsa) [1387909]
-- [kernel] perf/core: Fix implicitly enable dynamic interrupt throttle (Jiri Olsa) [1387909]
-- [kernel] perf/core: Rename the perf_event_aux*() APIs to perf_event_sb*(), to separate them from AUX ring-buffer records (Jiri Olsa) [1387909]
-- [kernel] perf/core: Optimize side-band event delivery (Jiri Olsa) [1387909]
-
-* Mon Jan 09 2017 Rafael Aquini <aquini@redhat.com> [3.10.0-538.el7]
-- [tty] console: Move userspace I/O out of console_lock to fix lockdep warning (Waiman Long) [1371886]
-- [net] dctcp: update cwnd on congestion event (Florian Westphal) [1386923]
-- [net] packet: fix race condition in packet_set_ring (Hangbin Liu) [1401853] {CVE-2016-8655}
-- [net] ipv4: allow local fragmentation in ip_finish_output_gso() (Lance Richardson) [1387662]
-- [i2c] i2c / acpi: Assign IRQ for devices that have GpioInt automatically (David Arcari) [1383814]
-- [i2c] i2c / acpi: Use 0 to indicate that device does not have interrupt assigned (David Arcari) [1383814]
-- [gpio] gpio / acpi: Add support for retrieving GpioInt resources from a device (David Arcari) [1383814]
-- [gpio] gpio / acpi: Add support for _DSD device properties (David Arcari) [1383814]
-- [pinctrl] intel: sunrisepoint: Add Intel Sunrisepoint-H support (David Arcari) [1383814]
-- [pinctrl] intel: Add Intel Sunrisepoint pin controller and GPIO support (David Arcari) [1383814]
-- [kernel] pm / sleep: Add macro to define common late/early system PM callbacks (David Arcari) [1383814]
-- [kernel] pinctrl: Pass all configs to driver on pin_config_set() (David Arcari) [1383814]
-- [pinctrl] pinconf: fix comparison of different types (David Arcari) [1383814]
-- [pinctrl] shut up a couple of pinctrl warnings (David Arcari) [1383814]
-- [kernel] pinctrl: rip out the direct pinconf API (David Arcari) [1383814]
-- [kernel] gpio: add IRQ chip helpers in gpiolib (David Arcari) [1383814]
-- [kernel] genirq: Provide irq_request/release_resources chip callbacks (David Arcari) [1383814]
-- [netdrv] ena: change the return type of ena_set_push_mode() to be void (Vitaly Kuznetsov) [1357491]
-- [netdrv] ena: Fix error return code in ena_device_init() (Vitaly Kuznetsov) [1357491]
-- [netdrv] ena: Remove unnecessary pci_set_drvdata() (Vitaly Kuznetsov) [1357491]
-- [netdrv] ena: Add a driver for Amazon Elastic Network Adapters (Vitaly Kuznetsov) [1357491]
-- [netdrv] ibmveth: calculate gso_segs for large packets (Gustavo Duarte) [1361958]
-- [netdrv] ibmveth: set correct gso_size and gso_type (Gustavo Duarte) [1361958]
-- [scsi] cxlflash: Fix crash in cxlflash_restore_luntable() (Gustavo Duarte) [1400524]
-- [scsi] cxlflash: Improve context_reset() logic (Gustavo Duarte) [1400524]
-- [scsi] cxlflash: Avoid command room violation (Gustavo Duarte) [1400524]
-- [s390] zfcp: close window with unblocked rport during rport gone (Hendrik Brueckner) [1391440]
-- [s390] zfcp: fix ELS/GS request&response length for hardware data router (Hendrik Brueckner) [1391435]
-- [s390] zfcp: fix fc_host port_type with NPIV (Hendrik Brueckner) [1391436]
-- [s390] scsi: zfcp: spin_lock_irqsave() is not nestable (Hendrik Brueckner) [1391534]
-- [s390] zfcp: trace full payload of all SAN records (req, resp, iels) (Hendrik Brueckner) [1391534]
-- [s390] zfcp: fix payload trace length for SAN request&response (Hendrik Brueckner) [1391534]
-- [s390] zfcp: fix D_ID field with actual value on tracing SAN responses (Hendrik Brueckner) [1391534]
-- [s390] zfcp: restore tracing of handle for port and LUN with HBA records (Hendrik Brueckner) [1391534]
-- [s390] zfcp: trace on request for open and close of WKA port (Hendrik Brueckner) [1391534]
-- [s390] zfcp: restore: Dont use 0 to indicate invalid LUN in rec trace (Hendrik Brueckner) [1391534]
-- [s390] zfcp: retain trace level for SCSI and HBA FSF response records (Hendrik Brueckner) [1391534]
-
-* Wed Dec 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-537.el7]
-- [kernel] genirq: Add default affinity mask command line option (Clark Williams) [1336556]
-- [kernel] tick: hrtimer-broadcast: Prevent endless restarting when broadcast device is unused (Prarit Bhargava) [1393589]
-- [netdrv] ibmvnic: Start completion queue negotiation at server-provided optimum values (Steve Best) [1403396]
-- [netdrv] ibmvnic: Fix missing brackets in init_sub_crq_irqs (Steve Best) [1403396]
-- [netdrv] ibmvnic: Fix releasing of sub-CRQ IRQs in interrupt context (Steve Best) [1403396]
-- [netdrv] ibmvnic: Update MTU after device initialization (Steve Best) [1403396]
-- [netdrv] ibmvnic: Fix GFP_KERNEL allocation in interrupt context (Steve Best) [1403396]
-- [netdrv] ibmvnic: fix error return code in ibmvnic_probe() (Steve Best) [1403396]
-- [netdrv] ibmvnic: convert to use simple_open() (Steve Best) [1403396]
-- [netdrv] slip: Fix deadlock in write_wakeup (Steve Best) [1403497]
-- [netdrv] slip: fix spinlock variant (Steve Best) [1403497]
-- [netdrv] ibmvnic: Handle backing device failover and reinitialization (Steve Best) [1403692]
-- [scsi] storvsc: Use the specified target ID in device lookup (Cathy Avery) [1308632]
-- [scsi] storvsc: Install the storvsc specific timeout handler for FC devices (Cathy Avery) [1308632]
-- [scsi] storvsc: Fix typo in MODULE_PARM_DESC (Cathy Avery) [1308632]
-- [scsi] storvsc: Tighten up the interrupt path (Cathy Avery) [1308632]
-- [scsi] storvsc: Refactor the code in storvsc_channel_init() (Cathy Avery) [1308632]
-- [scsi] storvsc: Properly support Fibre Channel devices (Cathy Avery) [1308632]
-- [scsi] storvsc: Fix a bug in the layout of the hv_fc_wwn_packet (Cathy Avery) [1308632]
-- [char] random: add interrupt callback to VMBus IRQ handler (Vitaly Kuznetsov) [1391433]
-- [x86] hyperv: manually clear IO-APIC IRR bit for migrating IRQs (Vitaly Kuznetsov) [1358691]
-- [x86] kvm: nvmx: fix nested tsc scaling (Bandan Das) [1370163]
-- [x86] smp: Don't try to poke disabled/non-existent APIC (Prarit Bhargava) [1373738]
-- [x86] revert "perf/uncore: Disable uncore on kdump kernel" (Prarit Bhargava) [1373738]
-- [x86] smpboot: Init apic mapping before usage (Prarit Bhargava) [1373738]
-- [x86] Handle non enumerated CPU after physical hotplug (Prarit Bhargava) [1373738]
-- [pci] hv: Allocate physically contiguous hypercall params buffer (Cathy Avery) [1364313]
-- [pci] hv: Delete the device earlier from hbus->children for hot-remove (Cathy Avery) [1364313]
-- [pci] hv: Fix hv_pci_remove() for hot-remove (Cathy Avery) [1364313]
-- [pci] hv: Use the correct buffer size in new_pcichild_device() (Cathy Avery) [1364313]
-- [pci] hv: Handle hv_pci_generic_compl() error case (Cathy Avery) [1364313]
-- [pci] hv: Handle vmbus_sendpacket() failure in hv_compose_msi_msg() (Cathy Avery) [1364313]
-- [pci] hv: Remove the unused 'wrk' in struct hv_pcibus_device (Cathy Avery) [1364313]
-- [pci] hv: Use pci_function_description[0] in struct definitions (Cathy Avery) [1364313]
-- [pci] hv: Use zero-length array in struct pci_packet (Cathy Avery) [1364313]
-- [pci] hv: Use list_move_tail() instead of list_del() + list_add_tail() (Cathy Avery) [1364313]
-- [drm] i915/kbl: Remove preliminary_hw_support protection from KBL. (Rob Clark) [1305702]
-- [tty] serial: 8250_pci: Detach low-level driver during PCI error recovery (Steve Best) [1400506]
-- [mm] Change memory hotplug normal message to use pr_debug (Cathy Avery) [1370415]
-
-* Wed Dec 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-536.el7]
-- [vfio] pci: make an array larger (Myron Stowe) [1405700]
-- [kernel] arm/pci: Move align_resource function pointer to pci_host_bridge structure (Myron Stowe) [1405700]
-- [pci] Wait 1 second between disabling VFs and clearing NumVFs (Myron Stowe) [1405700]
-- [pci] Remove VFs in reverse order if virtfn_add() fails (Myron Stowe) [1405700]
-- [pci] Remove redundant validation of SR-IOV offset/stride registers (Myron Stowe) [1405700]
-- [pci] Enable SR-IOV ARI Capable Hierarchy before reading TotalVFs (Myron Stowe) [1405700]
-- [pci] Expand Enhanced Allocation BAR output (Myron Stowe) [1405700]
-- [uapi] pci: Make Enhanced Allocation bitmasks more obvious (Myron Stowe) [1405700]
-- [pci] Handle Enhanced Allocation capability for SR-IOV devices (Myron Stowe) [1405700]
-- [pci] Add support for Enhanced Allocation devices (Myron Stowe) [1405700]
-- [uapi] pci: Add Enhanced Allocation register entries (Myron Stowe) [1405700]
-- [pci] Handle IORESOURCE_PCI_FIXED when assigning resources (Myron Stowe) [1405700]
-- [pci] Handle IORESOURCE_PCI_FIXED when sizing resources (Myron Stowe) [1405700]
-- [pci] Clear IORESOURCE_UNSET when reverting to firmware-assigned address (Myron Stowe) [1405700]
-- [pci] msi: Export all remapped MSIs to sysfs attributes (Myron Stowe) [1405700]
-- [pci] Disable MSI on SiS 761 (Myron Stowe) [1405700]
-- [kernel] pci: Turn off Request Attributes to avoid Chelsio T5 Completion erratum (Myron Stowe) [1405700]
-- [x86] pci: Make pci_subsys_init() static (Myron Stowe) [1405700]
-- [pci] Remove unnecessary "if" statement (Myron Stowe) [1405700]
-- [pci] pciehp: Queue power work requests in dedicated function (Myron Stowe) [1405700]
-
-* Wed Dec 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-535.el7]
-- [pci] Disable async suspend/resume for JMicron multi-function SATA/AHCI (Myron Stowe) [1403464]
-- [kernel] pci: Add pci_scan_root_bus_msi() (Myron Stowe) [1403464]
-- [pci] pciehp: Remove ignored MRL sensor interrupt events (Myron Stowe) [1403464]
-- [pci] pciehp: Remove unused interrupt events (Myron Stowe) [1403464]
-- [pci] pciehp: Handle invalid data when reading from non-existent devices (Myron Stowe) [1403464]
-- [kernel] pci: Hold pci_slot_mutex while searching bus->slots list (Myron Stowe) [1403464]
-- [kernel] pci: Protect pci_bus->slots with pci_slot_mutex, not pci_bus_sem (Myron Stowe) [1403464]
-- [pci] msi: Free legacy IRQ when enabling MSI/MSI-X (Myron Stowe) [1403464]
-- [kernel] pci: Add pcibios_alloc_irq() and pcibios_free_irq() (Myron Stowe) [1403464]
-- [pci] Restore ACS configuration as part of pci_restore_state() (Myron Stowe) [1403464]
-- [pci] pciehp: Simplify pcie_poll_cmd() (Myron Stowe) [1403464]
-- [pci] Use "slot" and "pci_slot" for struct hotplug_slot and struct pci_slot (Myron Stowe) [1403464]
-- [pci] pci / acpi: Fix pci_acpi_optimize_delay() comment (Myron Stowe) [1403464]
-- [pci] Remove a broken link in quirks.c (Myron Stowe) [1403464]
-- [pci] Remove useless redundant code (Myron Stowe) [1403464]
-- [pci] Simplify pci_find_(ext_)capability() return value checks (Myron Stowe) [1403464]
-- [pci] Move PCI_FIND_CAP_TTL to pci.h and use it in quirks (Myron Stowe) [1403464]
-- [pci] Add pcie_downstream_port() (true for Root and Switch Downstream Ports) (Myron Stowe) [1403464]
-- [pci] Fix pcie_port_device_resume() comment (Myron Stowe) [1403464]
-- [pci] Shift PCI_CLASS_NOT_DEFINED consistently with other classes (Myron Stowe) [1403464]
-- [pci] revert aeb30016fec3 ("pci: add Intel USB specific reset method") (Myron Stowe) [1403464]
-- [pci] Fix TI816X class code quirk (Myron Stowe) [1403464]
-- [pci] Fix generic NCR 53c810 class code quirk (Myron Stowe) [1403464]
-- [pci] Add quirk for Intersil/Techwell TW686[4589] AV capture cards (Myron Stowe) [1403464]
-- [pci] Remove Intel Cherrytrail D3 delays (Myron Stowe) [1403464]
-- [kernel] pci/msi: Rename "struct msi_chip" to "struct msi_controller" (Myron Stowe) [1403464]
-
-* Fri Dec 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-534.el7]
-- [nvme] switch abort to blk_execute_rq_nowait (David Milburn) [1392923]
-- [nvme] Remove RCU namespace protection (David Milburn) [1384066]
-- [nvme] Only release requested regions (David Milburn) [1384066]
-- [block] blk-mq: clear q->mq_ops if init fail (David Milburn) [1384066]
-- [nvme] Short-cut removal on surprise hot-unplug (David Milburn) [1384066]
-- [uapi] nvme: Allow user initiated rescan (David Milburn) [1384066]
-- [nvme] Reduce driver log spamming (David Milburn) [1384066]
-- [nvme] Unbind driver on failure (David Milburn) [1384066]
-- [nvme] Delete only created queues (David Milburn) [1384066]
-- [block] blk-mq: fix undefined behaviour in order_to_size() (David Milburn) [1384066]
-- [nvme] fix nvme_ns_remove() deadlock (David Milburn) [1384066]
-- [nvme] switch to RCU freeing the namespace (David Milburn) [1384066]
-- [nvme] correct comment for offset enum of controller registers in nvme.h (David Milburn) [1384066]
-- [nvme] add helper nvme_cleanup_cmd() (David Milburn) [1384066]
-- [nvme] move AER handling to common code (David Milburn) [1384066]
-- [nvme] move namespace scanning to core (David Milburn) [1384066]
-- [nvme] tighten up state check for namespace scanning (David Milburn) [1384066]
-- [nvme] introduce a controller state machine (David Milburn) [1384066]
-- [nvme] remove the io_incapable method (David Milburn) [1384066]
-- [nvme] nvme_core_exit() should do cleanup in the reverse order as nvme_core_init does (David Milburn) [1384066]
-- [nvme] Fix check_flush_dependency warning (David Milburn) [1384066]
-- [nvme] small typo in section BLK_DEV_NVME_SCSI of host/Kconfig (David Milburn) [1384066]
-- [nvme] fix cntlid type (David Milburn) [1384066]
-- [nvme] silence warning about unused 'dev' (David Milburn) [1384066]
-- [block] blk-mq: Make blk_mq_all_tag_busy_iter static (David Milburn) [1384066]
-- [block] mtip32xx: Convert to use blk_mq_tagset_busy_iter (David Milburn) [1384066]
-- [nvme] Use blk-mq helper for IO termination (David Milburn) [1384066]
-- [nvme] Skip async events for degraded controllers (David Milburn) [1384066]
-- [nvme] add helper nvme_setup_cmd() (David Milburn) [1384066]
-- [nvme] rewrite discard support (David Milburn) [1384066]
-- [block] add offset in blk_add_request_payload() (David Milburn) [1384066]
-- [nvme] add helper nvme_map_len() (David Milburn) [1384066]
-- [block] blk-mq: Export tagset iter function (David Milburn) [1384066]
-- [nvme] avoid cqe corruption when update at the same time as read (David Milburn) [1384066]
-- [block] blk-mq: Use proper cpumask iterator (David Milburn) [1384066]
-- [nvme] Expose ns wwid through single sysfs entry (David Milburn) [1384066]
-- [nvme] Remove unused sq_head read in completion path (David Milburn) [1384066]
-- [nvme] expose cntlid in sysfs (David Milburn) [1384066]
-- [nvme] return the whole CQE through the request passthrough interface (David Milburn) [1384066]
-- [nvme] split pci module out of core module (David Milburn) [1384066]
-- [nvme] make SG_IO support optional (David Milburn) [1384066]
-- [nvme] split dev_list_lock (David Milburn) [1384066]
-- [nvme] move timeout variables to core.c (David Milburn) [1384066]
-- [nvme] host: reference the fabric module for each bdev open callout (David Milburn) [1384066]
-- [nvme] fix drvdata setup for the nvme device (David Milburn) [1384066]
-- [nvme] Log the ctrl device name instead of the underlying pci device name (David Milburn) [1384066]
-- [block] blk-mq: add bounds check on tag-to-rq conversion (David Milburn) [1384066]
-- [block] blk-mq: Fix NULL pointer updating nr_requests (David Milburn) [1384066]
-
-* Thu Dec 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-533.el7]
-- [kernel] audit: move calcs after alloc and check when logging set loginuid (Richard Guy Briggs) [1155608]
-- [kernel] audit: add tty field to LOGIN event (Richard Guy Briggs) [1155608]
-- [netdrv] alx: enable multiple tx queues (Jarod Wilson) [1396261]
-- [netdrv] alx: enable msi-x interrupts by default (Jarod Wilson) [1396261]
-- [netdrv] alx: prepare tx path for multi queue support (Jarod Wilson) [1396261]
-- [netdrv] alx: prepare resource allocation for multi queue support (Jarod Wilson) [1396261]
-- [netdrv] alx: prepare interrupt functions for multiple queues (Jarod Wilson) [1396261]
-- [netdrv] alx: switch to per queue data structures (Jarod Wilson) [1396261]
-- [netdrv] alx: add ability to allocate and free alx_napi structures (Jarod Wilson) [1396261]
-- [netdrv] alx: extend data structures for multi queue support (Jarod Wilson) [1396261]
-- [netdrv] alx: refactor descriptor allocation (Jarod Wilson) [1396261]
-- [netdrv] alx: fix error handling in __alx_open (Jarod Wilson) [1396261]
-- [netdrv] alx: add module parameter to enable msi-x support (Jarod Wilson) [1396261]
-- [netdrv] alx: add msi-x support (Jarod Wilson) [1396261]
-- [netdrv] alx: factor out part of the interrupt handler (Jarod Wilson) [1396261]
-- [netdrv] alx: refactor msi enablement and disablement (Jarod Wilson) [1396261]
-- [netdrv] Add Killer E2500 device ID in alx driver (Jarod Wilson) [1396261]
-- [netdrv] alx: add tso support (Jarod Wilson) [1396261]
-- [netdrv] alx: Work around the DMA RX overflow issue (Jarod Wilson) [1396261]
-- [netdrv] alx: use custom skb allocator (Jarod Wilson) [1396261]
-- [netdrv] bnx2: fix locking when netconsole is used (Neil Horman) [1391233]
-- [netdrv] bnx2: Reset device during driver initialization (Neil Horman) [1391233]
-- [netdrv] bnx2: use IS_ENABLED() instead of checking for built-in or module (Neil Horman) [1391233]
-- [netdrv] qed: Utilize FW 8.10.3.0 (Harish Patil) [1368248]
-- [pci] Limit config space size for Netronome NFP4000 (John Linville) [1377765]
-- [pci] Add Netronome NFP4000 PF device ID (John Linville) [1377765]
-- [pci] Limit config space size for Netronome NFP6000 family (John Linville) [1377765]
-- [pci] Add Netronome vendor and device IDs (John Linville) [1377765]
-- [pci] Support PCIe devices with short cfg_size (John Linville) [1377765]
-- [x86] perf/x86/intel/rapl: Add Knights Mill CPUID (Jiri Olsa) [1381288]
-- [x86] perf/x86/rapl: Enable Apollo Lake RAPL support (Jiri Olsa) [1381288]
-- [x86] perf/x86/rapl: Add Skylake server model detection (Jiri Olsa) [1381288]
-- [x86] perf/x86/rapl: Use Intel family macros for RAPL (Jiri Olsa) [1381288]
-- [x86] perf/rapl: Add missing Broadwell model (Jiri Olsa) [1381288]
-- [x86] perf/rapl: Reorder model numbers (Jiri Olsa) [1381288]
-- [x86] perf/x86/intel/rapl: Support Skylake RAPL domains (Jiri Olsa) [1381288]
-- [x86] perf/intel/rapl: Make the Intel RAPL PMU driver modular (Jiri Olsa) [1381288]
-
-* Wed Dec 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-532.el7]
-- [net] sctp: validate chunk len before actually using it (Hangbin Liu) [1399459] {CVE-2016-9555}
-- [net] sctp: rename WORD_TRUNC/ROUND macros (Hangbin Liu) [1399459] {CVE-2016-9555}
-- [net] sctp: keep fragmentation point aligned to word size (Hangbin Liu) [1399459] {CVE-2016-9555}
-- [net] ipv6: bump genid when the IFA_F_TENTATIVE flag is clear (Paolo Abeni) [1380022]
-- [net] iucv: use basic blocks for iucv inline assemblies (Neil Horman) [1364038]
-- [net] add alloc_skb_with_frags() helper (Neil Horman) [1364038]
-- [net] af_iucv: Validate socket address length in iucv_sock_bind() (Neil Horman) [1364038]
-- [net] af_iucv: use paged SKBs for big outbound messages (Neil Horman) [1364038]
-- [net] af_iucv: use paged SKBs for big inbound messages (Neil Horman) [1364038]
-- [net] af_iucv: remove fragment_skb() to use paged SKBs (Neil Horman) [1364038]
-- [net] new helper memcpy_from_msg() (Neil Horman) [1364038]
-- [net] sctp: fix the panic caused by route update (Xin Long) [1380226]
-- [net] ipv6: Fix wrong direct fetch of hw_enc_features in ipv6_gso_segment() (Hangbin Liu) [1398723]
-- [net] Reserve skb headroom and set skb->dev even if using __alloc_skb (Hangbin Liu) [1395163]
-- [net] igmp: do not remove igmp souce list info when set link down (Hangbin Liu) [1383578]
-- [net] ipv4: fix all space errors in file igmp.c (Hangbin Liu) [1383578]
-- [documentation] net: ipv6: mld: document force_mld_version in ip-sysctl.txt (Hangbin Liu) [1389611]
-- [documentation] igmp: Document sysctl force_igmp_version (Hangbin Liu) [1383570]
-- [documentation] net: Fix indentation of the conf/ documentation block (Hangbin Liu) [1383570]
-- [net] rtnetlink: fix rtnl_vfinfo_size (Sabrina Dubroca) [1392128]
-- [net] l2tp: fix use-after-free during module unload (Eelco Chaudron) [1371621]
-- [net] tcp: fix race during timewait sk creation (Florian Westphal) [1376420]
-- [netdrv] bna: Add synchronization for tx ring (Jonathan Toppins) [1379588]
-- [netdrv] tg3: Avoid NULL pointer dereference in tg3_io_error_detected() (Jonathan Toppins) [1382379]
-- [netdrv] tg3: Report the correct number of RSS queues through tg3_get_rxnfc (Jonathan Toppins) [1382379]
-
-* Fri Dec 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-531.el7]
-- [powerpc] eeh: Reworked eeh_pe_bus_get() (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Synchronize recovery in host/guest (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Don't remove passed VFs (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Don't propagate error to guest (Gustavo Duarte) [1315131]
-- [powerpc] eeh: powerpc/eeh: Support error recovery for VF PE (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Support PCI config restore for VFs (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Support EEH reset for VF PE (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Create PE for VFs (Gustavo Duarte) [1315131]
-- [powerpc] eeh: EEH device for VF (Gustavo Duarte) [1315131]
-- [powerpc] eeh: Cache normal BARs, not windows or IOV BARs (Gustavo Duarte) [1315131]
-- [powerpc] pci: Remove VFs prior to PF (Gustavo Duarte) [1315131]
-- [powerpc] pci: Add pcibios_bus_add_device() weak function (Gustavo Duarte) [1315131]
-- [powerpc] pci/iov: Rename and export virtfn_{add, remove} (Gustavo Duarte) [1315131]
-- [powerpc] powernv: allocate sparse PE# when using M64 BAR in Single PE mode (Gustavo Duarte) [1315131]
-- [powerpc] powernv: boundary the total VF BAR size instead of the individual one (Gustavo Duarte) [1315131]
-- [powerpc] powernv: replace the hard coded boundary with gate (Gustavo Duarte) [1315131]
-- [powerpc] powernv: use one M64 BAR in Single PE mode for one VF BAR (Gustavo Duarte) [1315131]
-- [powerpc] powernv: simplify the calculation of iov resource alignment (Gustavo Duarte) [1315131]
-- [powerpc] powernv: don't enable SRIOV when VF BAR has non 64bit-prefetchable BAR (Gustavo Duarte) [1315131]
-- [powerpc] eeh: More relaxed hotplug criterion (Gustavo Duarte) [1315131]
-- [powerpc] iommu: Set default DMA offset in dma_dev_setup (Gustavo Duarte) [1315131]
-- [powerpc] pci: Don't try to restore VF BARs (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Unfreeze VF PE on releasing it (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Include VF PE in PELTV of PF PE (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Fix the log message when disabling VF (Gustavo Duarte) [1315131]
-- [powerpc] eeh: remove unused macro IS_BRIDGE (Gustavo Duarte) [1315131]
-- [powerpc] eeh: fix powernv_eeh_wait_state delay logic (Gustavo Duarte) [1315131]
-- [powerpc] eeh: fix comment for wait_state() (Gustavo Duarte) [1315131]
-- [powerpc] eeh: fix start/end/flags type in struct pci_io_addr_range{} (Gustavo Duarte) [1315131]
-- [powerpc] pci: Add PCI resource alignment documentation (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Group VF PE when IOV BAR is big on PHB3 (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Reserve additional space for IOV BAR, with m64_per_iov supporte (Gustavo Duarte) [1315131]
-- [powerpc] powernv: Implement pcibios_iov_resource_alignment() on powernv (Gustavo Duarte) [1315131]
-- [powerpc] pci: Don't unset PCI resources for VFs (Gustavo Duarte) [1315131]
-
-* Thu Dec 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-530.el7]
-- [kernel] audit: fix formatting of AUDIT_CONFIG_CHANGE events (Paul Moore) [1399823]
-- [kernel] x86/panic: replace smp_send_stop() with kdump friendly version in panic path (Xunlei Pang) [1182375 726846]
-- [kernel] kexec: use core_param for crash_kexec_post_notifiers boot option (Xunlei Pang) [1182375 726846]
-- [kernel] panic/kexec: fix "crash_kexec_post_notifiers" option issue in oops path (Xunlei Pang) [1182375 726846]
-- [kernel] panic: call the 2nd crash_kexec() only if crash_kexec_post_notifiers is enabled (Xunlei Pang) [1182375 726846]
-- [kernel] panic: add "crash_kexec_post_notifiers" option for kdump after panic_notifers (Xunlei Pang) [1182375 726846]
-- [kernel] panic: call panic handlers before kmsg_dump (Xunlei Pang) [1182375 726846]
-- [acpi] acpi / apd: Add device HID for future AMD UART controller (Suravee Suthikulpanit) [1329004]
-- [tty] serial: 8250_dw: add support for AMD SOC Carrizo (Suravee Suthikulpanit) [1329004]
-- [x86] acpi: add AMD ACPI2Platform device support for x86 system (Suravee Suthikulpanit) [1329004]
-- [vfio] pci: Fix integer overflows, bitmask check (Mateusz Guzik) [1394628 1394992] {CVE-2016-9083 CVE-2016-9084}
-- [x86] kvm: x86: Check memopp before dereference (Mateusz Guzik) [1395806] {CVE-2016-8630}
-- [x86] Mark Intel Purley supported (Steve Best) [1371748]
-- [x86] platform/uv/bau: Add UV4-specific functions (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Fix payload queue setup on UV4 hardware (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Disable software timeout on UV4 hardware (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Populate ->uvhub_version with UV4 version information (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Use generic function pointers (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Add generic function pointers (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Convert uv_physnodeaddr() use to uv_gpa_to_offset() (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Clean up pq_init() (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Clean up and update printks (Frank Ramsay) [1386692]
-- [x86] platform/uv/bau: Clean up vertical alignment (Frank Ramsay) [1386692]
-- [x86] Mark Kaby Lake with Kaby Lake PCH as supported (David Arcari) [1391219]
-- [mfd] lpss: Fix Intel Kaby Lake PCH-H properties (David Arcari) [1391219]
-- [lib] mpi: Fix NULL ptr dereference in mpi_powm() (Mateusz Guzik) [1398458] {CVE-2016-8650}
-- [mm] tmpfs: fix SEEK_DATA/SEEK_HOLE regression (Adrian Reber) [1396390]
-- [powercap] rapl: Add support for Ivy Bridge server (Prarit Bhargava) [1379590]
-
-* Tue Dec 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-529.el7]
-- [x86] mce/amd: Extract the error address on SMCA systems (David Arcari) [1389383]
-- [edac] x86/mce, edac/mce_amd: Print MCA_SYND and MCA_IPID during MCE on SMCA systems (David Arcari) [1389383]
-- [trace] x86/mce/amd: Save MCA_IPID in MCE struct on SMCA systems (David Arcari) [1389383]
-- [x86] mce/amd: Ensure the deferred error interrupt is of type APIC on SMCA systems (David Arcari) [1389383]
-- [x86] mce/amd: Update sysfs bank names for SMCA systems (David Arcari) [1389383]
-- [edac] x86/mce/amd, edac/mce_amd: Define and use tables for known SMCA IP types (David Arcari) [1389383]
-- [edac] mce_amd: Use SMCA prefix for error descriptions arrays (David Arcari) [1389383]
-- [edac] mce_amd: Add missing SMCA error descriptions (David Arcari) [1389383]
-- [x86] mce/amd: Read MSRs on the CPU allocating the threshold blocks (David Arcari) [1389383]
-- [edac] mce_amd: Print syndrome register value on SMCA systems (David Arcari) [1389383]
-- [trace] x86/mce: Add support for new MCA_SYND register (David Arcari) [1389383]
-- [x86] mce/amd: Use msr_ops.misc() in allocate_threshold_blocks() (David Arcari) [1389383]
-- [x86] mce/amd: Increase size of the bank_map type (David Arcari) [1389383]
-- [edac] mce_amd: Detect SMCA using X86_FEATURE_SMCA (David Arcari) [1389383]
-- [x86] cpu: Add detection of AMD RAS Capabilities (David Arcari) [1389383]
-- [x86] cpufeature: Cleanup get_cpu_cap() (David Arcari) [1389383]
-- [x86] mce/amd: Save an indentation level in prepare_threshold_block() (David Arcari) [1389383]
-- [x86] mce/amd: Disable LogDeferredInMcaStat for SMCA systems (David Arcari) [1389383]
-- [x86] mce/amd: Log Deferred Errors using SMCA MCA_DE{STAT, ADDR} registers (David Arcari) [1389383]
-- [x86] mce: Detect and use SMCA-specific msr_ops (David Arcari) [1389383]
-- [x86] mce: Define vendor-specific MSR accessors (David Arcari) [1389383]
-- [x86] mce/amd: Document some functionality (David Arcari) [1389383]
-- [x86] mce: Clarify comments regarding deferred error (David Arcari) [1389383]
-- [x86] mce/amd: Fix logic to obtain block address (David Arcari) [1389383]
-- [edac] x86/mce/amd, edac: Enable error decoding of Scalable MCA errors (David Arcari) [1389383]
-- [x86] mce: Move MCx_CONFIG MSR definitions (David Arcari) [1389383]
-- [x86] mce/amd: Set MCAX Enable bit (David Arcari) [1389383]
-- [x86] mce/amd: Carve out threshold block preparation (David Arcari) [1389383]
-- [x86] mce/amd: Fix LVT offset configuration for thresholding (David Arcari) [1389383]
-- [x86] mce/amd: Reduce number of blocks scanned per bank (David Arcari) [1389383]
-- [x86] mce/amd: Do not perform shared bank check for future processors (David Arcari) [1389383]
-- [x86] mce: Fix order of AMD MCE init function call (David Arcari) [1389383]
-- [edac] mce_amd: Don't emit 'CE' for Deferred error (David Arcari) [1389383]
-- [edac] mce, amd: Correct formatting of decoded text (David Arcari) [1389383]
-- [edac] mce, amd: Remove leftover unused mask (David Arcari) [1389383]
-- [edac] mce, amd: Fix decoding module loading on unsupported hw (David Arcari) [1389383]
-- [platform] intel-hid: Remove duplicated acpi_remove_notify_handler (David Arcari) [1389598]
-- [platform] intel-hid: add a workaround to ignore an event after waking up from S4 (David Arcari) [1389598]
-- [platform] intel-hid: allocate correct amount of memory for private struct (David Arcari) [1389598]
-- [platform] intel-hid: fix incorrect entries in intel_hid_keymap (David Arcari) [1389598]
-- [platform] intel-hid: new hid event driver for hotkeys (David Arcari) [1389598]
-
-* Mon Dec 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-528.el7]
-- [iommu] vt-d: Fix dead-locks in disable_dmar_iommu() path (Myron Stowe) [1374426]
-- [iommu] vt-d: Return error code in domain_context_mapping_one() (Myron Stowe) [1374426]
-- [iommu] vt-d: Reduce extra first level entry in iommu->domains (Myron Stowe) [1374426]
-- [iommu] vt-d: Avoid duplicate device_domain_info structures (Myron Stowe) [1374426]
-- [iommu] vt-d: Only insert alias dev_info if there is an alias (Myron Stowe) [1374426]
-- [iommu] vt-d: Pass device_domain_info to __dmar_remove_one_dev_info (Myron Stowe) [1374426]
-- [iommu] vt-d: Remove dmar_global_lock from device_notifier (Myron Stowe) [1374426]
-- [iommu] vt-d: Get rid of domain->iommu_lock (Myron Stowe) [1374426]
-- [iommu] vt-d: Only call domain_remove_one_dev_info to detach old domain (Myron Stowe) [1374426]
-- [iommu] vt-d: Unify domain->iommu attach/detachment (Myron Stowe) [1374426]
-- [iommu] vt-d: Establish domain<->iommu link in dmar_insert_one_dev_info (Myron Stowe) [1374426]
-- [iommu] vt-d: Pass an iommu pointer to domain_init() (Myron Stowe) [1374426]
-- [iommu] vt-d: Rename iommu_detach_dependent_devices() (Myron Stowe) [1374426]
-- [iommu] vt-d: Rename domain_remove_one_dev_info() (Myron Stowe) [1374426]
-- [iommu] vt-d: Rename dmar_insert_dev_info() (Myron Stowe) [1374426]
-- [iommu] vt-d: Simplify domain_remove_dev_info() (Myron Stowe) [1374426]
-- [iommu] vt-d: Simplify domain_remove_one_dev_info() (Myron Stowe) [1374426]
-- [iommu] vt-d: Simplify io/tlb flushing in intel_iommu_unmap (Myron Stowe) [1374426]
-- [iommu] vt-d: Replace iommu_bmp with a refcount (Myron Stowe) [1374426]
-- [iommu] vt-d: Kill dmar_domain->id (Myron Stowe) [1374426]
-- [iommu] vt-d: Don't pre-allocate domain ids for si_domain (Myron Stowe) [1374426]
-- [iommu] vt-d: Pass dmar_domain directly into iommu_flush_iotlb_psi (Myron Stowe) [1374426]
-- [iommu] vt-d: Simplify domain_context_mapping_one (Myron Stowe) [1374426]
-- [iommu] vt-d: Get rid of iommu_attach_vm_domain() (Myron Stowe) [1374426]
-- [iommu] vt-d: Split up iommu->domains array (Myron Stowe) [1374426]
-- [iommu] vt-d: Add access functions for iommu->domains (Myron Stowe) [1374426]
-- [iommu] vt-d: Keep track of per-iommu domain ids (Myron Stowe) [1374426]
-- [iommu] revert "vt-d: Disable passthrough mode on Kexec kernel" (Myron Stowe) [1374426]
-
-* Fri Dec 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-527.el7]
-- [mmc] sdhci-acpi: Ensure connected devices are powered when probing (Rui Wang) [1320820]
-- [acpi] pm: Export acpi_device_fix_up_power() (Rui Wang) [1320820]
-- [x86] kvm: x86: export TSC information to user-space (David Hildenbrand) [1379361]
-- [virt] kvm: create per-vcpu dirs in debugfs (David Hildenbrand) [1379361]
-- [kernel] kvm: add stubs for arch specific debugfs support (David Hildenbrand) [1379361]
-- [virt] kvm: kvm_destroy_vm_debugfs(): check debugfs_stat_data pointer (David Hildenbrand) [1379361]
-- [x86] kvm: x86: drop read_tsc_offset() (David Hildenbrand) [1379361]
-- [x86] kvm: x86: add tsc_offset field to struct kvm_vcpu_arch (David Hildenbrand) [1379361]
-- [virt] kvm: don't use anon_inode_getfd() before possible failures (David Hildenbrand) [1379361]
-- [virt] kvm: Create debugfs dir and stat files for each VM (David Hildenbrand) [1379361]
-- [virt] kvm: Remove unnecessary debugfs dentry references (David Hildenbrand) [1379361]
-- [scsi] qla2xxx: do not abort all commands in the adapter during EEH recovery (Gustavo Duarte) [1393254]
-- [scsi] qla2xxx: fix invalid DMA access after command aborts in PCI device remove (Gustavo Duarte) [1393254]
-- [scsi] qla2xxx: do not queue commands when unloading (Gustavo Duarte) [1393254]
-- [scsi] cxlflash: Improve EEH recovery time (Steve Best) [1397588]
-- [scsi] cxlflash: Fix to avoid EEH and host reset collisions (Steve Best) [1397588]
-- [scsi] cxlflash: Remove the device cleanly in the system shutdown path (Steve Best) [1397588]
-- [scsi] cxlflash: Scan host only after the port is ready for I/O (Steve Best) [1397588]
-- [thermal] powerclamp: correct cpu support check (Steve Best) [1396121]
-- [thermal] powerclamp: Prevent division by zero when counting interval (Steve Best) [1396121]
-
-* Fri Dec 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-526.el7]
-- [kernel] module: When modifying a module's text ignore modules which are going away too (Aaron Tomlin) [1386313]
-- [kernel] module: Ensure a module's state is set accordingly during module coming cleanup code (Aaron Tomlin) [1386313]
-- [netdrv] sfc: clear napi_hash state when copying channels (Jarod Wilson) [1394304]
-- [acpi] sleep: Do not save NVS for new machines to accelerate S3 (Prarit Bhargava) [1385527]
-- [misc] cxl: Fix coredump generation when cxl_get_fd() is used (Gustavo Duarte) [1397943]
-- [pci] cxl: use pcibios_free_controller_deferred() when removing vPHBs (Gustavo Duarte) [1395323]
-- [pci] Set Read Completion Boundary to 128 iff Root Port supports it (_HPX) (Myron Stowe) [1387674]
-- [pci] Export pcie_find_root_port() (Myron Stowe) [1387674]
-- [x86] pci: Mark Haswell Power Control Unit as having non-compliant BARs (Prarit Bhargava) [1395104]
-- [x86] amd: Fix cpu_llc_id for AMD Fam17h systems (Suravee Suthikulpanit) [1395399]
-- [x86] perf/intel/cqm: Check cqm/mbm enabled state in event init (Jiri Olsa) [1372344]
-- [powerpc] kvm: ppc: book3s hv: Add tunable to control H_IPI redirection (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Send IPI to host core to wake VCPU (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Host side kick VCPU when poked by real-mode KVM (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: kvmppc_host_rm_ops - handle offlining CPUs (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Manage core host state (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Host-side RM data structures (Thomas Huth) [1384437]
-- [powerpc] xics: Add icp_native_cause_ipi_rm (Thomas Huth) [1384437]
-- [powerpc] smp: Add smp_muxed_ipi_set_message (Thomas Huth) [1384437]
-- [powerpc] smp: Support more IPI messages (Thomas Huth) [1384437]
-- [powerpc] kvm: ppc: book3s hv: Fix TB corruption in guest exit path on HMI interrupt (Thomas Huth) [1373335]
-- [powerpc] powernv: Call opal_pci_poll() if needed (Steve Best) [1398577]
-- [powerpc] powernv: Fix stale PE primary bus (Steve Best) [1395275]
-
-* Thu Dec 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-525.el7]
-- [net] i40e: fix call of ndo_dflt_bridge_getlink() (Ivan Vecera) [1297841]
-- [net] switchdev: Drop EXPERIMENTAL from description (Ivan Vecera) [1275772]
-- [net] switchdev: Export the same parent ID service function (Ivan Vecera) [1275772]
-- [net] switchdev: pass pointer to fib_info instead of copy (Ivan Vecera) [1275772]
-- [netdrv] mlxsw: spectrum: Don't sleep during ndo_get_phys_port_name() (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Make split flow match firmware requirements (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Fix ordering in mlxsw_sp_fini (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add missing rollback in flood configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Fix rollback order in LAG join failure (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Don't insert unnecessary local fdb entry on changing mac address (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: Marking port-group as offloaded (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: Common function for mdb entry translation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: allow the user to delete mdb entry if there's a querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Adding complete operation to deferred switchdev ops (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Use MLXSW_SP_PB_UNUSED define for unused pb (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Use designated initializers for mlxsw_sp_pbs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Implement occupancy monitoring (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Introduce support for asynchronous EMAD register access (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add mlxsw specific workqueue and use it for FDB notif. processing (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Extend SBPM register for occupancy control (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Shared Buffer Status register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add devlink shared buffer occupancy callbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Implement shared buffer configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add mlxsw_core_port_driver_priv helper (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Get max_buff defaults into limits exposed to user (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Change initialization of PG 9 (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Remove eg pool 3 default init and CPU port TC binding to it (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Cache shared buffer configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Rename "pool" to "pr" in initialization (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Push out indexes and direction out of SB structs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum_buffers: Push out shared buffer register writes (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add devlink shared buffer callbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Fix SBPM register name (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Share direction enum between SBPR, SBCM, SBPM (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Do not pass around driver_priv directly (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Pass mlxsw_core as a param of mlxsw_core_skb_transmit* (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Move devlink port registration into common core code (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add IEEE 802.1Qbb PFC support (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Introduce per priority counters (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for PAUSE frames (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add lossless settings for PBMC register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Port Flow Control Configuration register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Allow setting maximum rate for a TC (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add IEEE 802.1Qaz ETS support (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Introduce support for Data Center Bridging (DCB) (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Initialize egress scheduling (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add QoS Switch Traffic Class Table register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add QoS ETS Element Configuration register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Set port's shared buffer size to 0 (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Use correct PBMC register length (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Correctly configure headroom size (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add bytes to cells helper (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Map all switch priorities to priority group 0 (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Port Prio To Buffer register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for physical port names (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Use switch ID in suggested udev rule (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Reduce number of supported 802.1D bridges (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rtnl: fix msg size calculation in if_nlmsg_size() (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Allow set bridge ageing time when switchdev disabled (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix typo in comments/doc (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add description for len argument of dev_get_phys_port_name (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Implement reset done check (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move ageing_time from struct rocker to struct ofdpa (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: allow zero ageing time (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: set FDB cleanup timer according to lowest ageing time (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Check requested ageing time is valid (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Correctly determine if descriptor queue is full (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Always decrement bridge's ref count (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: add DEVLINK dependencies (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Introduce port splitting (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Mark unused ports using NULL (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Store local port to module mapping during init (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Unmap local port from module during teardown (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add devlink port splitter callbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Implement devlink interface (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix an error code (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: ndo_fdb_dump should report -EMSGSIZE to rtnl_fdb_dump (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use __ethtool_get_ksettings (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix rocker_world_port_obj_vlan_add() (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: add support for more attributes and export timer (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: reduce the indentation level in br_mdb_fill_info (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: log port STP state on change (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: switchdev: Offload VLAN flags to hardware bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Allow for PVID deletion (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add the Switch Port Acceptable Frame Types register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: return -EOPNOTSUPP for undefined world ops (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move OF-DPA stuff into separate file (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: call rocker_cmd_exec function with "nowait" boolean instead of flags (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove trans parameter to rocker_cmd_exec function (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: pre-allocate wait structures during cmd ring init (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: pass "learning" value as a parameter to rocker_port_set_learning (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: introduce worlds infrastructure (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move rocker and rocker_port structs into header (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement get settings mode command (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: push tlv processing into separate files (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: rename rocker.c to rocker_main.c (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: rename rocker.h to rocker_hw.h (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove unused rocker_port param from alloc funcs and shorten their names (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Set STP state when leaving 802.1D bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Treat local port 64 as valid (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: avoid uninitialized variable warning (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: Passing the port-group pointer to br_mdb module (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: Separate br_mdb_entry->state from net_bridge_port_group->state (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: add support for offloaded mdb entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Require RTNL mutex to be held when sending FDB notifications (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Use correct offset in field definiton (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Compare local ports instead of pointers (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Dump LAG FDB records only once (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Use correct netdev when notifying bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Don't report VLAN for 802.1D FDB entries (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Notify bridge's FDB only based on learning_sync (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Disable learning according to STP state (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Don't forward packets when STP state is DISABLED (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Flush FDB when leaving bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add the Switch Filtering DB Flush register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Handle port leaving LAG while bridged (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix lockdep addr_list_lock false positive splat (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: fix SWITCHDEV_OBJ_ID_PORT_MDB (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add FDB lock to prevent session interleaving (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Adding IGMP snooping documentation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Adding layer 2 multicast support (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Adding VID to FID translatation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Changing the maximum number of multicast group to a define (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Adding SMID register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of multicast record for SFD register (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Reflect MDB entries to hardware (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Adding MDB entry offload (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: remove FDB entry in case we get unknown object notification (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: pass local_port to mlxsw_sp_port_fdb_uc_op (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: remove an unnecessary condition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Remember untagged VLANs (Ivan Vecera) [1275772 1297841 1331748]
-- [net] mlxsw: Disable vlan_filtering for non .1D bridge (Ivan Vecera) [1275772]
-- [netdrv] mlxsw: Renaming local variable names for consistency (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Fixing vlans init range (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add vlan filtering change for new bridged device (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add vlan filtering change notification (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add bridge vlan_filtering attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Propagate vlan add failure to user (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Adjust value of CPU egress traffic class (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Only call /sbin/bridge-stp for the initial network namespace (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Change bridge port attributes only when bridged (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Set bridge status in appropriate functions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Return NOTIFY_BAD on bridge failure (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Initialize PVID only once (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Use devm_kzalloc to allocate mlxsw_hwmon structure (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Allow to reset temperature history via hwmon interface (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: bridge: Pass ageing time as clock_t instead of jiffies (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for VLAN devices on top of LAG (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Enable FDB records for VLAN devices on top of LAG (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add lag_vid field to SFD register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for VLAN devices bridging (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Handle VLAN devices linking / unlinking (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Adjust FDB notifications for VLAN devices (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Adjust switchdev ops for VLAN devices (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Use FID instead of VID when accessing FDB (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add another flood table for vFIDs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Use appropriate parameter name (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Split vFID range in two (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Allocate active VLANs only for port netdevs (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Pass original device to port netdev driver (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: vlan: Use switchdev_port* in vlan_netdev_ops (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Fix temperature sensor index during initialization (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Fix max temperature getting (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: remove an unneeded condition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: fix some error handling (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Change BUG to WARN in hwmon code (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Implement LAG tx enabled lower state change (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Implement FDB add/remove/dump for LAG (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Implement LAG port join/leave (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of LAG unicast record for SFN register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of LAG unicast record for SFD register (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add link aggregation configuration registers definitions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Implement LAG processing for received packets (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Add support for packets received from LAG port (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add set_rx_mode ndo stub (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: set inactive flags on release (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: implement lower state change propagation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: allow notifications for bond_set_slave_link_state (Ivan Vecera) [1275772 1297841 1331748]
-- [net] team: implement lower state change propagation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] introduce lower state changed info structure for LAG lowers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] introduce change lower state notifier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: fill-up LAG changeupper info struct and pass it along (Ivan Vecera) [1275772 1297841 1331748]
-- [net] team: fill-up LAG changeupper info struct and pass it along (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add info struct for LAG changeupper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add possibility to pass information about upper device via notifier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] propagate upper priv via netdev_master_upper_dev_link (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_lag_port helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_lag_master helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_team_port helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_team_master helper (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Implement fan control using hwmon (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of fan management registers (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Implement temperature hwmon interface (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add definition of temperature management registers (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for port identification (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Management LED Control register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add error paths to __mlxsw_sp_port_vlans_add (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Unify setting of HW VLAN filters (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Use correct PVID value when removing VLANs (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix return code of fdb_dump stub (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: bridge: Check return code is not EOPNOTSUPP (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: respect SKIP_EOPNOTSUPP flag in case there is no recursion (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: Use rcu_dereference instead of rtnl_dereference (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: Use correct flag name in comment (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: Prevent possible use-after-free (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix: pass correct obj size when deferring obj add (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix: erasing too much of vlan obj when handling multiple vlan specs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Make mlxsw_sp_port_switchdev_ops static (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Put braces on all arms of branch statement (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Put constant on the right side of comparisons (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Fix ageing time value (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Avoid unnecessary line wrap for mlxsw_reg_sfd_uc_unpack (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Fix desription typos of couple of SFN items (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Fix description for reg_sfd_uc_sub_port (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for flood control (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add support for VLAN ranges in flooding configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: move "bridged" bool to u8 flags (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Make flood to CPU optional (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: Add support for flood control (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: set is_local and is_static before fdb entry is added to the fdb hashtable (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Adding switchdev ageing notification on port bridged (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: spectrum: Add initial support for Spectrum ASIC (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Port VLAN MAC Learning register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Filtering Database Aging Time register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Virtual-Port Enabling register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch VID to FID Allocation register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch FID Management register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add shared buffer configuration registers definitions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Port VID and Switch Port VLAN Membership registers definitions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch FDB Notification register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Add Switch Filtering Database register definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: item: Add MLXSW_ITEM_BUF_INDEXED helper (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: item: Make src arg of memcpy_to helper const (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: cmd: Introduce FID-offset flooding tables (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: cmd: Introduce per-FID flooding tables (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Enable configuration of flooding domains (Ivan Vecera) [1275772 1297841 1331748]
-- [net] introduce pre-change upper device notifier (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: cmd: Update CONFIG_PROFILE command documentation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Add trap group for control packets (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Simplify traps creation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Introduce mlxsw_reg_spms_vid_pack helper and use it (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Adjust definition of enum mlxsw_reg_sfgc_type (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Remove extra space in SFGC ID define (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: reg: Uppercase letters in register IDs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Use dev_level_ratelimited instead of net_ratelimit & dev_level (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Do not use EMADs in mlxsw_emad_fini (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Limit number of entries being sent in single MAP_FA cmd (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Remove MLXSW_PCI_RDQS/SDQS defines and checks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Do not use MLXSW_PCI_SDQS_COUNT define (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: pci: Use MLXSW_PCI_CQS_MAX instead of MLXSW_PCI_CQS_COUNT (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: switchx2: Use ETH_ALEN for mac address length (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Remove multicast ID configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: assert rtnl mutex when going over lower netdevs (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove nowait from switchdev callbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: defer switchdev fdb del call in fdb_del_external_learn (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce possibility to defer obj_add/del (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove pointers from switchdev objects (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: allow caller to explicitly request attr_set as deferred (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: make struct switchdev_attr parameter const for attr_set calls (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce switchdev deferred ops infrastructure (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: core: Fix race condition in __mlxsw_emad_transmit (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: move back vlan_flush (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: drop unnecessary flush code (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use rcu for vlan_list traversal in br_fill_ifinfo (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use proper rcu for the vlgrp member (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix gc_timer mod/del race condition (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: check if the vlan id is in the proper vlan range (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: enforce no pvid flag in vlan ranges (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: enforce no pvid flag in vlan ranges (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: try switchdev op first in __vlan_vid_add/del (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: handle setting bridge ageing_time (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: push bridge setting ageing_time down to switchdev (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: skip over ports returning -EOPNOTSUPP when recursing ports (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add bridge ageing_time attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: allow adding of fdb entries pointing to the bridge device (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Fix bug in __mlxsw_item_bit_array_offset (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: switchx2: changing order of exit fallbacks (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: fix warnings for big-endian 32-bit dma_addr_t (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for port's multicast_router attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: allow to flush port's fdb (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's timer values (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's topology_change_ack and config_pending (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's id and number (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's designated cost and port (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's bridge id (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export port's root id (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: make br_fill_info's frame size smaller (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for default_pvid (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for netfilter tables config (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for igmp's intervals (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_startup_query_count (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_last_member_count (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for igmp's hash_max (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for igmp's hash_elasticity (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_query_use_ifaddr (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_snooping (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for multicast_router (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add fdb flush (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add group_addr support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export all timers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export topology_change and topology_change_detected (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export root path cost (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export root port (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export bridge id (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: export root id (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add group_fwd_mask support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use br_vlan_should_use to simplify __vlan_add/del (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: drop master_flags from __vlan_add (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use br_vlan_(get|put)_master to deal with refcounts (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: use rcu list for the ordered vlan list (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: push object ID back to object structure (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: bring back switchdev_obj and use it as a generic object param (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename switchdev_obj_fdb to switchdev_obj_port_fdb (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename switchdev_obj_vlan to switchdev_obj_port_vlan (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename SWITCHDEV_ATTR_* enum values to SWITCHDEV_ATTR_ID_* (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename SWITCHDEV_OBJ_* enum values to SWITCHDEV_OBJ_ID_* (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: don't pass flags when creating context only (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: fix possible null ptr derefs on port init and deinit (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: move pvid inside net_bridge_vlan_group (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: fix possible null vlgrp deref while registering new port (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: adjust rhashtable initial size and hash locks size (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: extract struct switchdev_obj_* (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: abstract object in add/del ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: pass callback to dump operation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove dev from switchdev_obj cb (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: move dev in switchdev_fdb_dump (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove dev in port_vlan_dump_put (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: add per-vlan struct and move to rhashtables (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: reduce transaction phase enum down to a boolean (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove "ABORT" transaction phase (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove "NONE" transaction phase (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use switchdev transaction queue for allocated memory (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: push struct switchdev_trans down through rocker code (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add switchdev_trans_ph_prepare/commit helpers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: move transaction phase enum under transaction structure (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce transaction item queue for attr_set and obj_add (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename "trans" to "trans_ph". (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: update documentation on FDB ageing_time (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: don't age externally added FDB entries (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add FDB cleanup timer (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: adding port ageing_time for ageing out FDB entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: define some min/max/default ageing time constants (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: store rocker_port in fdb key rather than pport (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: track when FDB entry is touched. (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rtnetlink: catch -EOPNOTSUPP errors from ndo_bridge_getlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: remove unnecessary switchdev include (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: check __vlan_vid_del for error (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix return value of switchdev_port_fdb_dump in case of error (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Make mailboxes 4KB aligned (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: adjust transmit fail log message level in __mlxsw_emad_transmit (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Remove duplicate included header (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use change upper info (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use new helper to figure out master kind (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add netif_is_bridge_master helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Add netlink support for vlan_protocol attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: fix error return code (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix netlink max attr size (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: hook ndo_neigh_destroy to cleanup neigh refs in driver (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: print switch ID consistent with phys_switch_id sysfs node (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: support static FDB addresses (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Use 'zx' to print size_t format (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: add support for vlan_filtering attribute (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Fix use-after-free bug in mlxsw_sx_port_xmit (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Use correct skb length when dumping payload (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Simplify mlxsw_sx_port_xmit function (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Strip FCS from incoming packets (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Make pci module dependent on HAS_DMA and HAS_IOMEM (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Make system port to local port mapping explicit (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Call free_netdev when removing port (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use netdev_err after register_netdev (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: NULL port if port probe fails (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: fix vlan_enabled access when vlans are not configured (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: add/del entry on all vlans if vlan_filter is enabled and vid is 0 (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: linearize skb in case frags would not fit into tx descriptor (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: enable support for scattered packets (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: free netdevice during netdevice removal (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Introduce Mellanox SwitchX-2 ASIC support (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Add interface to access registers and process events (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Add PCI bus implementation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] mlxsw: Introduce Mellanox switch driver core (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: fix delmdb state in the notification (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mcast: give fast leave precedence over multicast router and querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink: fix slave_changelink/br_setport race conditions (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: update documentation for offload_fwd_mark (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add offload_fwd_mark support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add offload_fwd_mark generator helper (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add phys ID compare helper to test if two IDs are the same (Ivan Vecera) [1275772 1297841 1331748]
-- [net] don't reforward packets already forwarded by offload device (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: forward packets to CPU when port is joined to openvswitch (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: multicast: fix handling of temp and perm entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: multicast: notify on group delete (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Handle protodown notifications (Ivan Vecera) [1275772 1297841 1331748]
-- [net] netlink: changes for setting and clearing protodown via netlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] Add protodown support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: add vlan support for user entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: don't abort unsupported operations (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: fill state in br_mdb_notify (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add change MTU support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: zero out the local br_ip variable before use (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: mdb: start delete timer for temp static entries (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: vlan: flush the dynamically learned entries on port vlan delete (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: ignore unsupported bridge flags (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: call correct unregister function on error (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: change BUG_ON to WARN for attr set failure case (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add VLAN support for port's bridge_getlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: rename vlan vid_start to vid_begin (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: multicast: start querier timer when running user-space stp (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fdb filter_dev is always NULL for self (device), so remove check (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix br_stp_set_bridge_priority race conditions (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: del external_learned fdbs from device on flush or ageout (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move port stop to 'no wait' processing (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: move MAC learn event back to 'no wait' processing (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: mark STP update as 'no wait' processing (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: mark neigh update event processing as 'no wait' (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: revert back to support for nowait processes (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix neigh tbl index increment race (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: gaurd against NULL rocker_port when removing ports (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use either ndo VLAN ops or switchdev VLAN ops to install MASTER vlans (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix BUG when port driver doesn't support set attr op (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix handling for drivers not supporting IPv4 fib add/del ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: make br_fdb_delete also check if the port matches (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: documentation: use switchdev_port_obj_xxx for IPv4 FIB add/modify/delete ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: documentation: for static FDB ops, use switchdev_port_fdb_xxx ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: documentation: fix grammer error (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: documentation: fix longer-than-80-char lines (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove support for legacy VLAN ndo ops (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: install/remove router MAC for untagged VLAN when joining/leaving bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: install untagged VLAN (vid=0) support for each port (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: cleanup vlan table on error adding vlan (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: zero allocate ports array (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove rocker parameter from functions that have rocker_port parameter (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: mark parameters and local variables as const (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove unused rocker_port parameter from rocker_port_kfree (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix lockdep splat (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: make rocker_port_internal_vlan_id_{get, put}() non-transactional (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: do not make neighbour entry changes when preparing transactions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: do not modify fdb table in rocker_port_fdb() when preparing transactions (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: do not delete fdb entries in rocker_port_fdb_flush() when preparing transactions (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add support for fdb add/del/dump via switchdev_port_obj ops. (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix a neigh entry leak issue (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rename RTNH_F_EXTERNAL to RTNH_F_OFFLOAD (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: don't use anonymous union on switchdev attr/obj structs (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: apply review comments on documentation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: align comment with other comments in block (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: sparse warning: pass ipv4 fib dst as network-byte order (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: sparse warning: make __switchdev_port_obj_add static (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: bring documentation up-to-date (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: make checkpatch -f clean (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove NETIF_F_HW_SWITCH_OFFLOAD feature flag (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: convert fib_ipv4_add/del over to switchdev_port_obj_add/del (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: cut over to new switchdev_port_bridge_getlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add new switchdev_port_bridge_getlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: revert br_dellink change back to original (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove unused switchdev_port_bridge_dellink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: cut over to new switchdev_port_bridge_dellink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add new switchdev_port_bridge_dellink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: restore br_setlink back to original (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove old switchdev_port_bridge_setlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: cut over to new switchdev_port_bridge_setlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add new switchdev bridge setlink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add bridge port flags attr (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: use switchdev add/del obj for bridge port vlans (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add port vlan obj (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce switchdev add/del obj ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: convert STP update to switchdev attr set (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: support prepare-commit transaction model (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: convert parent_id_get to switchdev attr get (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce get/set attrs ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: s/swdev_/switchdev_/ (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: s/netdev_switch_/switchdev_/ and s/NETDEV_SWITCH_/SWITCHDEV_/ (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Use ether_addr_equal (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix error return code in rocker_probe() (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: handle non-bridge master change (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix stp update API to work with layered netdevices (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: kernel-doc cleanup on swithdev ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add ageing_time, stp_state, priority over netlink (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add support for phys_port_name (Ivan Vecera) [1275772 1297841 1331748]
-- [net] add support for phys_port_name (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: replace fixed stack allocation with dynamic allocation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: remove ndo ops for switchdev (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: use new swdev ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add swdev ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: correct spelling of notifier in comments (Ivan Vecera) [1275772 1297841 1331748]
-- [net] fib_trie: call fib_table_flush_external under RTNL (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add netlink flags to IPv4 FIB add op (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: use gpl variant of symbol export (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: sparse: fix dynamic allocation on stack warning (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: quiet sparce endianess warnings (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fib: make netdev_switch_fib_ipv4_abort in header file static inline (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix some sparse warnings (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix CONFIG_IP_MULTIPLE_TABLES compile issue (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement IPv4 fib offloading (Ivan Vecera) [1275772 1297841 1331748]
-- [net] fib: hook IPv4 fib for hardware offload (Ivan Vecera) [1275772 1297841 1331748]
-- [net] ipv4: add net bool fib_offload_disabled (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: implement IPv4 fib ndo wrappers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: don't support custom ip rules, for now (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add IPv4 fib ndo ops wrappers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] netdevice: add IPv4 fib add/del ops (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rtnetlink: add RTNH_F_EXTERNAL flag for fib offload (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix bridge netlink RCU usage (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add a check for NULL in rocker_probe_ports() (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: fix link notification skb size calculation to include vlan ranges (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: put port in FORWADING state after leaving bridge (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: rename lport to pport (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix non-portable err return codes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add vlan info to bridge setlink and dellink notification messages (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Fix inability to add non-vlan fdb entry (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add missing bridge port check for offloads (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Add support for retrieving port level statistics (Ivan Vecera) [1275772 1297841 1331748]
-- [net] team: handle NETIF_F_HW_SWITCH_OFFLOAD flag and add ndo_bridge_setlink/dellink handlers (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bonding: handle NETIF_F_HW_SWITCH_OFFLOAD flag and add ndo_bridge_setlink/dellink handlers (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: set feature NETIF_F_HW_SWITCH_OFFLOAD (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: offload bridge port attributes to switch asic if feature flag set (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: add new apis to set and del bridge port attributes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] netdev: introduce new NETIF_F_HW_SWITCH_OFFLOAD feature flag for switch device offloads (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: fix typo in inline function definition (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Add basic netdev counters (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: replace br_fdb_external_learn_* calls with switchdev notifier events (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce switchdev notifier (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix harmless warning on 32-bit machines (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Do not call ndo_dflt_fdb_dump if ndo_fdb_dump is defined (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: remove mode BRIDGE_MODE_SWDEV (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: remove swdev mode (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Add dependency to CONFIG_BRIDGE in Kconfig (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: fix eth_type type in struct rocker_ctrl (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: introduce be put/get variants and use it when appropriate (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Use logical operators on booleans (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: Add proper validation of Netlink attributes (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: add ndo_bridge_setlink/getlink support for learning policy (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement ndo_fdb_dump (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement L2 bridge offloading (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: implement rocker ofdpa flow table manipulation (Ivan Vecera) [1275772 1297841 1331748]
-- [netdrv] rocker: introduce rocker switch driver (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add new hwmode swdev (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add API to notify bridge driver of learned FBD on offloaded device (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: call netdev_sw_port_stp_update when bridge port STP status changes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] sysfs: expose physical switch id for particular device (Ivan Vecera) [1275772 1297841 1331748]
-- [net] rtnl: expose physical switch id for particular device (Ivan Vecera) [1275772 1297841 1331748]
-- [net] switchdev: introduce generic switch devices support (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: convert flags in fbd entry into bitfields (Ivan Vecera) [1275772 1297841 1331748]
-- [net] neigh: sort Neighbor Cache Entry Flags (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: rename fdb_*_hw to fdb_*_hw_addr to avoid confusion (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: add a br_set_state helper function (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Fix br_should_learn to check vlan_enabled (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Allow clearing of pvid and untagged bitmap (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Check if vlan filtering is enabled only once (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: implement rtnl_link_ops->changelink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] revise "bridge: implement rtnl_link_ops->get_size and rtnl_link_ops->fill_info" (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: implement rtnl_link_ops->slave_changelink (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: implement rtnl_link_ops->get_slave_size and rtnl_link_ops->fill_slave_info (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: switch order of rx_handler reg and upper dev link (Ivan Vecera) [1275772 1297841 1331748]
-- [documentation] net: ABI/testing: Spelling s/calss/class/ (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Update outdated comment on promiscuous mode (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: netlink dump interface at par with brctl (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Support 802.1ad vlan filtering (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Prepare for forwarding another bridge group addresses (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: Add 802.1ad tx vlan acceleration (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: rename struct bridge_mcast_query/querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] revert "bridge: Program port vlan filters only if filtering is enabled in bridge" (Ivan Vecera) [1275772 1297841 1331748]
-- [documentation] net: sysfs: add missing phys_port_id documentation (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: make br_device_notifier static (Ivan Vecera) [1275772 1297841 1331748]
-- [documentation] net: sysfs: add Documentation entries for basic set of attributes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use is_skb_forwardable in forward path (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: move br_net_exit() to br.c (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use DEVICE_ATTR_xx macros (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: remove unnecessary parentheses (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: spelling fixes (Ivan Vecera) [1275772 1297841 1331748]
-- [net] bridge: use the bridge IP addr as source addr for querier (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: fix sb register stub in case devlink is disabled (Ivan Vecera) [1297841]
-- [net] devlink: implement shared buffer occupancy monitoring interface (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: add shared buffer configuration (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: add missing install of header (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: share user_ptr pointer for both devlink and devlink_port (Ivan Vecera) [1275772 1297841 1331748]
-- [net] devlink: remove implicit type set in port register (Ivan Vecera) [1275772 1297841 1331748]
-
-* Wed Nov 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-524.el7]
-- [tools] perf ctf: Convert invalid chars in a string before set value (Jiri Olsa) [1373817]
-- [tools] perf record: Fix crash when kptr is restricted (Jiri Olsa) [1373817]
-- [tools] perf symbols: Check kptr_restrict for root (Jiri Olsa) [1373817]
-- [tools] kbuild: rename cmd_cc_i_c to cmd_cpp_i_c (Jiri Olsa) [1373817]
-- [tools] perf record: Read from backward ring buffer (Jiri Olsa) [1373817]
-- [tools] perf record: Rename variable to make code clear (Jiri Olsa) [1373817]
-- [tools] perf record: Prevent reading invalid data in record__mmap_read (Jiri Olsa) [1373817]
-- [tools] perf evlist: Add API to pause/resume (Jiri Olsa) [1373817]
-- [tools] perf trace: Use the ptr->name beautifier as default for "filename" args (Jiri Olsa) [1373817]
-- [tools] perf trace: Use the fd->name beautifier as default for "fd" args (Jiri Olsa) [1373817]
-- [tools] perf report: Add srcline_from/to branch sort keys (Jiri Olsa) [1373817]
-- [tools] perf evsel: Record fd into perf_mmap (Jiri Olsa) [1373817]
-- [tools] perf evsel: Add overwrite attribute and check write_backward (Jiri Olsa) [1373817]
-- [tools] perf tools: Set buildid dir under symfs when --symfs is provided (Jiri Olsa) [1373817]
-- [tools] perf trace: Only auto set call-graph to "dwarf" when syscalls are being traced (Jiri Olsa) [1373817]
-- [tools] perf annotate: Sort list of recognised instructions (Jiri Olsa) [1373817]
-- [tools] perf annotate: Fix identification of ARM blt and bls instructions (Jiri Olsa) [1373817]
-- [tools] perf trace: Fix exit_group() formatting (Jiri Olsa) [1373817]
-- [tools] perf top: Use machine->kptr_restrict_warned (Jiri Olsa) [1373817]
-- [tools] perf trace: Warn when trying to resolve kernel addresses with kptr_restrict=1 (Jiri Olsa) [1373817]
-- [tools] perf machine: Do not bail out if not managing to read ref reloc symbol (Jiri Olsa) [1373817]
-- [tools] perf symbols: Introduce DSO__NAME_KALLSYMS and DSO__NAME_KCORE (Jiri Olsa) [1373817]
-- [tools] perf stat: Use cpu-clock event for cpu targets (Jiri Olsa) [1373817]
-- [tools] perf stat: Update runtime using cpu-clock event (Jiri Olsa) [1373817]
-- [tools] perf stat: Fix indentation of stalled backend cycle (Jiri Olsa) [1373817]
-- [tools] perf symbols: Store vdso buildid unconditionally (Jiri Olsa) [1373817]
-- [tools] perf stat: Avoid fractional digits for integer scales (Jiri Olsa) [1373817]
-- [tools] perf tools: Fix perf regs mask generation (Jiri Olsa) [1373817]
-- [tools] perf/powerpc: Add support for unwinding perf-stackdump (Jiri Olsa) [1373817]
-- [tools] perf: Fix misspellings in comments (Jiri Olsa) [1373817]
-- [tools] perf buildid-cache: Use lsdir() for looking up buildid caches (Jiri Olsa) [1373817]
-- [tools] perf symbols: Use lsdir() for the search in kcore cache directory (Jiri Olsa) [1373817]
-- [tools] perf tools: Use SBUILD_ID_SIZE where applicable (Jiri Olsa) [1373817]
-- [tools] perf tools: Fix lsdir to set errno correctly (Jiri Olsa) [1373817]
-- [tools] perf trace: Move seccomp args beautifiers to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf trace: Move flock op beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf build: Add build-test for debug-frame on arm/arm64 (Jiri Olsa) [1373817]
-- [tools] perf build: Add build-test for libunwind cross-platforms support (Jiri Olsa) [1373817]
-- [tools] perf script: Fix export of callchains with recursion in db-export (Jiri Olsa) [1373817]
-- [tools] perf script: Fix callchain addresses in db-export (Jiri Olsa) [1373817]
-- [tools] perf script: Fix symbol insertion behavior in db-export (Jiri Olsa) [1373817]
-- [tools] perf symbols: Add dso__insert_symbol function (Jiri Olsa) [1373817]
-- [tools] perf scripting python: Use Py_FatalError instead of die() (Jiri Olsa) [1373817]
-- [tools] perf tools: Remove xrealloc and ALLOC_GROW (Jiri Olsa) [1373817]
-- [tools] perf help: Do not use ALLOC_GROW in add_cmd_list (Jiri Olsa) [1373817]
-- [tools] perf pmu: Make pmu_formats_string to check return value of strbuf (Jiri Olsa) [1373817]
-- [tools] perf header: Make topology checkers to check return value of strbuf (Jiri Olsa) [1373817]
-- [tools] perf tools: Make alias handler to check return value of strbuf (Jiri Olsa) [1373817]
-- [tools] perf help: Make check_emacsclient_version to check strbuf APIs (Jiri Olsa) [1373817]
-- [tools] perf probe: Check the return value of strbuf APIs (Jiri Olsa) [1373817]
-- [tools] perf tools: Rewrite strbuf not to die() (Jiri Olsa) [1373817]
-- [tools] perf symbols: Fix handling of zero-length symbols (Jiri Olsa) [1373817]
-- [tools] perf evsel: Print state of perf_event_attr.write_backward (Jiri Olsa) [1373817]
-- [tools] perf tests: Add test to check backward ring buffer (Jiri Olsa) [1373817]
-- [tools] perf tools: Support reading from backward ring buffer (Jiri Olsa) [1373817]
-- [tools] perf script: Fix incorrect python db-export error message (Jiri Olsa) [1373817]
-- [tools] perf stat: Scale values by unit before metrics (Jiri Olsa) [1373817]
-- [tools] perf callchain: Recording 'dwarf' callchains do not need DWARF unwinding support (Jiri Olsa) [1373817]
-- [tools] perf trace: Move futex_op beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf trace: Move open_flags beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf trace: Move signum beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf stat: Add extra output of counter values with -vv (Jiri Olsa) [1373817]
-- [tools] perf script: Update export-to-postgresql to support callchain export (Jiri Olsa) [1373817]
-- [tools] perf script: Expose usage of the callchain db export via the python api (Jiri Olsa) [1373817]
-- [tools] perf script: Add call path id to exported sample in db export (Jiri Olsa) [1373817]
-- [tools] perf script: Enable db export to output sampled callchains (Jiri Olsa) [1373817]
-- [tools] perf tools: Refactor code to move call path handling out of thread-stack (Jiri Olsa) [1373817]
-- [tools] perf callchain: Fix incorrect ordering of entries (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not print raw args list for syscalls with no args (Jiri Olsa) [1373817]
-- [tools] perf evlist: Rename variable in perf_mmap__read() (Jiri Olsa) [1373817]
-- [tools] perf evlist: Extract perf_mmap__read() (Jiri Olsa) [1373817]
-- [tools] perf symbols: Fix kallsyms perf test on ppc64le (Jiri Olsa) [1373817 1376534]
-- [tools] perf powerpc: Fix kprobe and kretprobe handling with kallsyms on ppc64le (Jiri Olsa) [1373817 1376534]
-- [tools] perf hists: Move sort__has_comm into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_thread into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_socket into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_dso into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_sym into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__has_parent into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf hists: Move sort__need_collapse into struct perf_hpp_list (Jiri Olsa) [1373817]
-- [tools] perf tools powerpc: Add support for generating bpf prologue (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not show the runtime_ms for a thread when not collecting it (Jiri Olsa) [1373817]
-- [tools] perf trace: Sort syscalls stats by msecs in --summary (Jiri Olsa) [1373817]
-- [tools] perf trace: Sort summary output by number of events (Jiri Olsa) [1373817]
-- [tools] perf tools: Add template for generating rbtree resort class (Jiri Olsa) [1373817]
-- [tools] perf machine: Introduce number of threads member (Jiri Olsa) [1373817]
-- [tools] perf tests: Do not use sizeof on pointer type (Jiri Olsa) [1373817]
-- [tools] perf trace: Move msg_flags beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf record: Generate tracking events for process forked by perf (Jiri Olsa) [1373817]
-- [tools] perf record: Disable buildid cache options by default in switch output mode (Jiri Olsa) [1373817]
-- [tools] perf record: Force enable --timestamp-filename when --switch-output is provided (Jiri Olsa) [1373817]
-- [tools] perf record: Split output into multiple files via '--switch-output' (Jiri Olsa) [1373817]
-- [tools] perf tools: Derive trigger class from auxtrace_snapshot (Jiri Olsa) [1373817]
-- [tools] perf tools: Introduce trigger class (Jiri Olsa) [1373817]
-- [tools] perf probe: Use strbuf for making strings (Jiri Olsa) [1373817]
-- [tools] perf evsel: Remove two extraneous ending newlines in open_strerror() (Jiri Olsa) [1373817]
-- [tools] perf evsel: Handle ENOMEM for perf_event_max_stack + PERF_SAMPLE_CALLCHAIN (Jiri Olsa) [1373817]
-- [tools] perf tools: Set the maximum allowed stack from /proc/sys/kernel/perf_event_max_stack (Jiri Olsa) [1373817]
-- [tools] perf bench: Remove one more die() call (Jiri Olsa) [1373817]
-- [tools] perf probe: Fix module probe issue if no dwarf support (Jiri Olsa) [1373817]
-- [tools] perf probe: Fix offline module name missmatch issue (Jiri Olsa) [1373817]
-- [tools] perf trace: Read thread's COMM from /proc when not set (Jiri Olsa) [1373817]
-- [tools] perf thread: Introduce method to set comm from /proc/pid/self (Jiri Olsa) [1373817]
-- [tools] lib api fs: Add helper to read string from procfs file (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not beautify the 'pid' parameter as a simple integer (Jiri Olsa) [1373817]
-- [tools] perf trace: Move perf_flags beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf probe: Set default kprobe group name if it is not given (Jiri Olsa) [1373817]
-- [tools] perf probe: Let probe_file__add_event return 0 if succeeded (Jiri Olsa) [1373817]
-- [tools] perf tools: Add lsdir() helper to read a directory (Jiri Olsa) [1373817]
-- [tools] perf probe: Close target file on error path (Jiri Olsa) [1373817]
-- [tools] perf evlist: Enforce ring buffer reading (Jiri Olsa) [1373817]
-- [tools] perf hists: Clear dummy entry accumulated period (Jiri Olsa) [1373817]
-- [tools] perf intel-pt: Fix off-by-one comparison on maximum code (Jiri Olsa) [1373817]
-- [tools] perf bench futex: Simplify wrapper for LOCK_PI (Jiri Olsa) [1373817]
-- [tools] perf tests: Replace assignment with comparison on assert check (Jiri Olsa) [1373817]
-- [tools] perf tools: Remove duplicate const qualifier (Jiri Olsa) [1373817]
-- [tools] perf tools: Make the x86 clean quiet (Jiri Olsa) [1373817]
-- [tools] perf evlist: Decode perf_event_attr->branch_sample_type (Jiri Olsa) [1373817]
-- [tools] perf trace: Make --pf honour --min-stack too (Jiri Olsa) [1373817]
-- [tools] perf trace: Make --event honour --min-stack too (Jiri Olsa) [1373817]
-- [tools] perf script: Fix segfault when printing callchains (Jiri Olsa) [1373817]
-- [tools] perf trace: Make --pf maj/min/all use callchains too (Jiri Olsa) [1373817]
-- [tools] perf trace: Extract evsel contructor from perf_evlist__add_pgfault (Jiri Olsa) [1373817]
-- [tools] perf buildid: Fix off-by-one in write_buildid() (Jiri Olsa) [1373817]
-- [tools] perf test: Add missing verbose output explaining the reason for failure (Jiri Olsa) [1373817]
-- [tools] perf test: Ignore kcore files in the "vmlinux matches kallsyms" test (Jiri Olsa) [1373817]
-- [tools] perf symbols: Allow loading kallsyms without considering kcore files (Jiri Olsa) [1373817]
-- [tools] perf build: Remove x86 references from arch-neutral Build (Jiri Olsa) [1373817]
-- [tools] perf jit: memset() variable 'st' using the correct size (Jiri Olsa) [1373817]
-- [tools] perf script: Fix postgresql ubuntu install instructions (Jiri Olsa) [1373817]
-- [tools] perf top: Use callchain_param.enabled instead of symbol_conf.use_callchain (Jiri Olsa) [1373817]
-- [tools] perf hists browser: Fold two consecutive symbol_conf.use_callchain ifs (Jiri Olsa) [1373817]
-- [tools] perf tools: Ditch record_opts.callgraph_set (Jiri Olsa) [1373817]
-- [tools] perf report: Use callchain_param.enabled instead of tool specific knob (Jiri Olsa) [1373817]
-- [tools] perf callchain: Set callchain_param.enabled when parsing --call-graph (Jiri Olsa) [1373817]
-- [tools] perf script: Check sample->callchain before using it (Jiri Olsa) [1373817]
-- [tools] perf evsel: Add missign class prefix to has_branch_stack method (Jiri Olsa) [1373817]
-- [tools] perf trace: Fix build when DWARF unwind isn't available (Jiri Olsa) [1373817]
-- [tools] perf trace: Bump --mmap-pages when --call-graph is used by the root user (Jiri Olsa) [1373817]
-- [tools] perf evlist: Expose perf_event_mlock_kb_in_pages() helper (Jiri Olsa) [1373817]
-- [tools] perf trace: Make --(min, max}-stack imply "--call-graph dwarf" (Jiri Olsa) [1373817]
-- [tools] perf record: Export record_opts based callchain parsing helper (Jiri Olsa) [1373817]
-- [tools] perf trace: Introduce --min-stack filter (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not print interrupted syscalls when using --duration (Jiri Olsa) [1373817]
-- [tools] perf evsel: Move fprintf methods to separate source file (Jiri Olsa) [1373817]
-- [tools] perf trace: Add --max-stack knob (Jiri Olsa) [1373817]
-- [tools] perf script: Add --max-stack knob (Jiri Olsa) [1373817]
-- [tools] perf tools: Remove addr_location argument to sample__fprintf_callchain (Jiri Olsa) [1373817]
-- [tools] perf evsel: Require that callchains be resolved before calling fprintf_{sym, callchain} (Jiri Olsa) [1373817]
-- [tools] perf symbols: Move fprintf routines to separate object file (Jiri Olsa) [1373817]
-- [tools] perf evsel: Remove symbol_conf usage (Jiri Olsa) [1373817]
-- [tools] perf callchain: Start moving away from global per thread cursors (Jiri Olsa) [1373817]
-- [tools] perf trace: Move socket_type beautifier to tools/perf/trace/beauty/ (Jiri Olsa) [1373817]
-- [tools] perf config: Make show_config() use perf_config_set (Jiri Olsa) [1373817]
-- [tools] perf config: Introduce perf_config_set class (Jiri Olsa) [1373817]
-- [tools] perf record: Add '--timestamp-filename' option to append timestamp to output file name (Jiri Olsa) [1373817]
-- [tools] perf record: Turns auxtrace_snapshot_enable into 3 states (Jiri Olsa) [1373817]
-- [tools] perf data: Add perf_data_file__switch() helper (Jiri Olsa) [1373817]
-- [tools] perf session: Make ordered_events reusable (Jiri Olsa) [1373817]
-- [tools] perf ordered_events: Introduce reinit() (Jiri Olsa) [1373817]
-- [tools] perf trace: Move eventfd beautifiers to trace/beauty/ directory (Jiri Olsa) [1373817]
-- [tools] perf trace: Move mmap beautifiers to trace/beauty/ directory (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not accept --no-syscalls together with -e (Jiri Olsa) [1373817]
-- [tools] perf evsel: Move some methods from session.[ch] to evsel.[ch] (Jiri Olsa) [1373817]
-- [tools] perf sched map: Display only given cpus (Jiri Olsa) [1373817]
-- [tools] perf sched map: Color given cpus (Jiri Olsa) [1373817]
-- [tools] perf sched map: Color given pids (Jiri Olsa) [1373817]
-- [tools] perf thread_map: Make new_by_tid_str constructor public (Jiri Olsa) [1373817]
-- [tools] perf sched: Use color_fprintf for output (Jiri Olsa) [1373817]
-- [tools] perf sched: Add compact display option (Jiri Olsa) [1373817]
-- [tools] perf cpu_map: Add has() method (Jiri Olsa) [1373817]
-- [tools] perf thread_map: Add has() method (Jiri Olsa) [1373817]
-- [tools] perf trace: Support callchains for --event too (Jiri Olsa) [1373817]
-- [tools] perf trace: Print unresolved symbol names as addresses (Jiri Olsa) [1373817]
-- [tools] perf evsel: Allow unresolved symbol names to be printed as addresses (Jiri Olsa) [1373817]
-- [tools] perf trace: Make "--call-graph" affect just "raw_syscalls:sys_exit" (Jiri Olsa) [1373817]
-- [tools] perf evsel: Rename config_callgraph() to config_callchain() and make it public (Jiri Olsa) [1373817]
-- [tools] perf evlist: Add (reset, set)_sample_bit methods (Jiri Olsa) [1373817]
-- [tools] perf evsel: Do not use globals in config() (Jiri Olsa) [1373817]
-- [tools] perf trace: Exclude the kernel part of the callchain leading to a syscall (Jiri Olsa) [1373817]
-- [tools] perf evsel: Introduce fprintf_callchain() method out of fprintf_sym() (Jiri Olsa) [1373817]
-- [tools] perf evsel: Rename print_ip() to fprintf_sym() (Jiri Olsa) [1373817]
-- [tools] perf trace: Add support for printing call chains on sys_exit events (Jiri Olsa) [1373817]
-- [tools] perf evsel: Allow passing a left alignment when printing a symbol (Jiri Olsa) [1373817]
-- [tools] perf evsel: Allow specifying a file to output in perf_evsel__print_ip (Jiri Olsa) [1373817]
-- [tools] perf symbols: Adjust symbol for shared objects (Jiri Olsa) [1373817]
-- [tools] perf symbols: Record text offset in dso to calculate objdump address (Jiri Olsa) [1373817]
-- [tools] perf tools: Build syscall table .c header from kernel's syscall_64.tbl (Jiri Olsa) [1373817]
-- [tools] perf tools: Allow generating per-arch syscall table arrays (Jiri Olsa) [1373817]
-- [tools] perf trace: Move syscall table id <-> name routines to separate class (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify mode_t arguments (Jiri Olsa) [1373817]
-- [tools] perf script: Process event update events (Jiri Olsa) [1373817]
-- [tools] perf tools: Add dedicated unwind addr_space member into thread struct (Jiri Olsa) [1373817]
-- [tools] perf tools: Introduce trim function (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify pid_t arguments (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify set_tid_address, getpid, getppid return values (Jiri Olsa) [1373817]
-- [tools] perf trace: Infrastructure to show COMM strings for syscalls returning PIDs (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify wait4/waitid 'options' argument (Jiri Olsa) [1373817]
-- [tools] perf trace: Beautify sched_setscheduler 'policy' argument (Jiri Olsa) [1373817]
-- [tools] perf list: Document event specifications better (Jiri Olsa) [1373817]
-- [tools] perf tools: Remove superfluous ARCH Makefile includes (Jiri Olsa) [1373817]
-- [tools] perf script perl: Do error checking on new backtrace routine (Jiri Olsa) [1373817]
-- [tools] perf config: Fix build with older toolchain (Jiri Olsa) [1373817]
-- [tools] perf trace: Don't set the base timestamp using events without PERF_SAMPLE_TIME (Jiri Olsa) [1373817]
-- [tools] perf trace: Introduce function to set the base timestamp (Jiri Olsa) [1373817]
-- [tools] perf tools: Fix PMU term format max value calculation (Jiri Olsa) [1373817]
-- [tools] perf intel-pt/bts: Define JITDUMP_USE_ARCH_TIMESTAMP (Jiri Olsa) [1373817]
-- [tools] perf jit: Add support for using TSC as a timestamp (Jiri Olsa) [1373817]
-- [tools] perf tools: Add time conversion event (Jiri Olsa) [1373817]
-- [tools] perf trace: Add getrandom beautifier related defines for older systems (Jiri Olsa) [1373817]
-- [tools] perf trace: Add seccomp beautifier related defines for older systems (Jiri Olsa) [1373817]
-- [tools] perf trace: Pretty print getrandom() args (Jiri Olsa) [1373817]
-- [tools] perf trace: Pretty print seccomp() args (Jiri Olsa) [1373817]
-- [tools] perf trace: Do not process PERF_RECORD_LOST twice (Jiri Olsa) [1373817]
-- [tools] perf tools: Add support for skipping itrace instructions (Jiri Olsa) [1373817]
-- [tools] perf script perl: Perl scripts now get a backtrace, like the python ones (Jiri Olsa) [1373817]
-- [tools] perf config: Rename 'v' to 'home' in set_buildid_dir() (Jiri Olsa) [1373817]
-- [tools] perf config: Rework buildid_dir_command_config to perf_buildid_config (Jiri Olsa) [1373817]
-- [tools] perf config: Remove duplicated set_buildid_dir calls (Jiri Olsa) [1373817]
-- [tools] perf tests: Add test to check for event times (Jiri Olsa) [1373817]
-- [tools] perf tools: Make -f/--force option documentation consistent across tools (Jiri Olsa) [1373817]
-- [tools] perf tools: Make hists__collapse_insert_entry static (Jiri Olsa) [1373817]
-- [tools] perf mem: Add -U/-K (--all-user/--all-kernel) options (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel: Update event constraints when HT is off (Jiri Olsa) [1373817]
-- [kernel] perf/core: Remove a redundant check (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/uncore: Remove SBOX support for Broadwell server (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/rapl: Fix pmus free during cleanup (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/p4: Trival indentation fix, remove space (Jiri Olsa) [1373817]
-- [kernel] perf: optimize perf_fetch_caller_regs (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Convert ACCESS_ONCE()s (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Export CPU frequency ratios needed by PT decoders (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Bypass PT vs. LBR exclusivity if the core supports it (Jiri Olsa) [1373817]
-- [kernel] perf/core: Let userspace know if the PMU supports address filters (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Add support for address range filtering in PT (Jiri Olsa) [1373817]
-- [kernel] perf/core: Introduce address range filtering (Jiri Olsa) [1373817]
-- [kernel] perf/core: Extend perf_event_aux_ctx() to optionally iterate through more events (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Add IP filtering register/CPUID bits (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Move PT specific MSR bit definitions to a private header (Jiri Olsa) [1373817]
-- [kernel] perf/core: Move set_filter() out of CONFIG_EVENT_TRACING (Jiri Olsa) [1373817]
-- [kernel] perf/core: Add ::write_backward attribute to perf event (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel: Add LBR filter support for Silvermont and Airmont CPUs (Jiri Olsa) [1373817]
-- [x86] perf/x86/amd/uncore: Do not register a task ctx for uncore PMUs (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Use boot_cpu_has() because it's there (Jiri Olsa) [1373817]
-- [kernel] perf/ring_buffer: Prepare writing into the ring-buffer from the end (Jiri Olsa) [1373817]
-- [kernel] perf/core: Set event's default ::overflow_handler() (Jiri Olsa) [1373817]
-- [kernel] perf/ring_buffer: Introduce new ioctl options to pause and resume the ring-buffer (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/bts: Move transaction start/stop to start/stop callbacks (Jiri Olsa) [1373817]
-- [x86] perf/x86/intel/pt: Move transaction start/stop to PMU start/stop callbacks (Jiri Olsa) [1373817]
-- [kernel] perf/ring_buffer: Document AUX API usage (Jiri Olsa) [1373817]
-- [kernel] perf/core: Free AUX pages in unmap path (Jiri Olsa) [1373817]
-- [kernel] perf/ring_buffer: Refuse to begin AUX transaction after rb->aux_mmap_count drops (Jiri Olsa) [1373817]
-- [kernel] perf/core: Verify we have a single perf_hw_context PMU (Jiri Olsa) [1373817]
-
-* Wed Nov 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-523.el7]
-- [kernel] rcu: sysctl: Panic on RCU Stall (Lauro Ramos Venancio) [1360867]
-- [kernel] sched/core: Panic on scheduling while atomic bugs if kernel.panic_on_warn is set (Lauro Ramos Venancio) [1360867]
-- [kernel] sched: Fix possible divide by zero in avg_atom() calculation (Mateusz Guzik) [1392466]
-- [kernel] printk: avoid livelock if another CPU printks continuously (Denys Vlasenko) [1294066]
-- [x86] smp: Fix __max_logical_packages value setup (Prarit Bhargava) [1394239]
-- [x86] revert "smp: Fix __max_logical_packages value setup" (Prarit Bhargava) [1394239]
-- [net] ipv6: add mtu lock check in __ip6_rt_update_pmtu (Xin Long) [1389210]
-- [net] Fix use after free in the recvmmsg exit path (Davide Caratti) [1390047] {CVE-2016-7117}
-- [net] pktgen: fix pkt_size (Paolo Abeni) [1381652]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Do not set MPI2_TYPE_CUDA for JBOD FP path for FW which does not support JBOD sequence map (Tomas Henzl) [1380441]
-- [scsi] megaraid_sas: Send SYNCHRONIZE_CACHE for VD to firmware (Tomas Henzl) [1380447]
-- [scsi] megaraid_sas: Do not fire DCMDs during PCI shutdown/detach (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Send correct PhysArm to FW for R1 VD downgrade (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: For SRIOV enabled firmware, ensure VF driver waits for 30secs before reset (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Fix data integrity failure for JBOD (passthrough) devices (Tomas Henzl) [1380447]
-- [scsi] megaraid_sas: fix macro MEGASAS_IS_LOGICAL to avoid regression (Tomas Henzl) [1380447]
-- [scsi] megaraid_sas: clean function declarations in megaraid_sas_base.c up (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: add in missing white space in error message text (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Fix the search of first memory bar (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Use memdup_user() rather than duplicating its implementation (Tomas Henzl) [1396165]
-- [scsi] megaraid_sas: Fix probing cards without io port (Tomas Henzl) [1396165]
-- [scsi] vmw_pvscsi: return SUCCESS for successful command aborts (Ewan Milne) [1394172]
-- [virtio] virtio-pci: alloc only resources actually used (Laurent Vivier) [1375153]
-- [netdrv] ibmvnic: Unmap ibmvnic_statistics structure (Steve Best) [1394911]
-- [netdrv] ibmveth: Add function to enable live MAC address changes (Laurent Vivier) [1375165]
-- [security] keys: Fix short sprintf buffer in /proc/keys show function (Frantisek Hrbata) [1375209] {CVE-2016-7042}
-
-* Tue Nov 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-522.el7]
-- [netdrv] net/hyperv: avoid uninitialized variable (Vitaly Kuznetsov) [1392220]
-- [netdrv] netvsc: Remove mistaken udp.h inclusion (Vitaly Kuznetsov) [1392220]
-- [netdrv] netvsc: fix checksum on UDP IPV6 (Vitaly Kuznetsov) [1392220]
-- [netdrv] hv_netvsc: add ethtool statistics for tx packet issues (Vitaly Kuznetsov) [1392220]
-- [netdrv] hv_netvsc: rearrange start_xmit (Vitaly Kuznetsov) [1392220]
-- [netdrv] allow macvlans to move to net namespace (Jarod Wilson) [1368830]
-- [netdrv] ixgbe: test for trust in macvlan adjustments for vf (Ken Cox) [1379787]
-- [kernel] timekeeping: Copy the shadow-timekeeper over the real timekeeper last (Prarit Bhargava) [1344747]
-- [x86] tsc: Add additional Intel CPU models to the crystal quirk list (Prarit Bhargava) [1369419]
-- [x86] tsc: Use cpu id defines instead of hex constants (Prarit Bhargava) [1369419]
-- [x86] kexec: Fix kexec crash in syscall kexec_file_load() (Pingfan Liu) [1385109]
-- [char] hwrng: core - sleep interruptible in read (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - correct error check of kthread_run call (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Move hwrng_init call into set_current_rng (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Drop current rng in set_current_rng (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Do not register device opportunistically (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Fix current_rng init/cleanup race yet again (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: core - Use struct completion for cleanup_done (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: don't init list element we're about to add to list (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: don't double-check old_rng (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: fix unregister race (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: use reference counts on each struct hwrng (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: move some code out mutex_lock for avoiding underlying deadlock (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] hwrng: place mutex around read functions and buffers (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] virtio-rng: skip reading when we start to remove the device (Amit Shah) [1081431 1271481 1376397 1377050]
-- [char] virtio-rng: fix stuck of hot-unplugging busy device (Amit Shah) [1081431 1271481 1376397 1377050]
-- [misc] cxl: Prevent adapter reset if an active context exists (Gustavo Duarte) [1388222]
-- [powerpc] rtas: Validate rtas.entry before calling enter_rtas() (Gustavo Duarte) [1386560]
-- [powerpc] powernv: Drop reference added by kset_find_obj() (Steve Best) [1394164]
-- [powerpc] mm: Prevent unlikely crash in copro_calculate_slb() (Steve Best) [1392448]
-- [powerpc] xmon: Add xmon command to dump process/task similar to ps(1) (Steve Best) [1391565]
-- [watchdog] hpwdt: remove email address from doc (Linda Knippers) [1323290]
-- [watchdog] hpwdt: Adjust documentation to match latest kernel module parameters (Linda Knippers) [1323290]
-
-* Fri Nov 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-521.el7]
-- [fs] Retry operation on EREMOTEIO on an interrupted slot (Steve Dickson) [1378981]
-- [fs] ext4: pre-zero allocated blocks for DAX IO (Eric Sandeen) [1367989]
-- [x86] apic, doc: Justification for disabling IO APIC before Local APIC (Prarit Bhargava) [1384277]
-- [x86] apic: Disable I/O APIC before shutdown of the local APIC (Prarit Bhargava) [1384277]
-- [scsi] megaraid-sas: request irqs later (Tomas Henzl) [1392978]
-- [netdrv] i40e: Fix errors resulted while turning off TSO (Stefan Assmann) [1378509]
-- [powerpc] eeh: eeh_pci_enable(): fix checking of post-request state (Steve Best) [1383670]
-
-* Thu Nov 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-520.el7]
-- [firmware] efi: Fix usage of illegal alignment on efi_low_alloc (Lenny Szubowicz) [1387689]
-- [net] tcp: fix use after free in tcp_xmit_retransmit_queue() (Mateusz Guzik) [1379531] {CVE-2016-6828}
-- [net] team: Fixing a bug in team driver due to incorrect 'unsigned int' to 'int' conversion (Hangbin Liu) [1382098]
-- [net] sctp: not return ENOMEM err back in sctp_packet_transmit (Xin Long) [1371362]
-- [net] sctp: make sctp_outq_flush/tail/uncork return void (Xin Long) [1371362]
-- [net] sctp: save transmit error to sk_err in sctp_outq_flush (Xin Long) [1371362]
-- [net] sctp: free msg->chunks when sctp_primitive_SEND return err (Xin Long) [1371362]
-- [net] sctp: do not return the transmit err back to sctp_sendmsg (Xin Long) [1371362]
-- [net] sctp: remove the unnecessary state check in sctp_outq_tail (Xin Long) [1371362]
-- [net] vxlan: fix duplicated and wrong error messages (Jiri Benc) [1366024]
-- [net] vxlan: reject multicast destination without an interface (Jiri Benc) [1366024]
-- [net] netdev, sched/wait: Fix sleeping inside wait event (Paolo Abeni) [1382175]
-- [net] Separate the close_list and the unreg_list (Paolo Abeni) [1382175]
-
-* Thu Nov 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-519.el7]
-- [hv] do not lose pending heartbeat vmbus packets (Vitaly Kuznetsov) [1378615]
-- [net] openvswitch: avoid deferred execution of recirc actions (Lance Richardson) [1370643]
-- [net] ipv4: Use math to point per net sysctls into the appropriate struct net (Eric Garver) [1363661]
-- [x86] cpu/intel: Add Knights Mill to Intel family (Steve Best) [1380829]
-- [x86] kvm: lapic: cap __delay at lapic_timer_advance_ns (Marcelo Tosatti) [1389431]
-- [x86] kvm: x86: move nsec_to_cycles from x86.c to x86.h (Marcelo Tosatti) [1389431]
-- [tty] serial/8250: Touch NMI watchdog in wait_for_xmitr (Jiri Olsa) [1377938]
-- [acpi] acpi / scan: use platform bus type by default for _HID enumeration (Tony Camuso) [1383505]
-- [acpi] acpi / scan: introduce platform_id device PNP type flag (Tony Camuso) [1383505]
-- [char] ipmi: Convert the IPMI SI ACPI handling to a platform device (Tony Camuso) [1383505]
-- [vfio] pci: Fix ordering of eventfd vs virqfd shutdown (Alex Williamson) [1322026]
-- [netdrv] netvsc: fix incorrect receive checksum offloading (Vitaly Kuznetsov) [1388702]
-- [watchdog] hpwdt: add support for iLO5 (Linda Knippers) [1382798]
-
-* Tue Nov 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-518.el7]
-- [spi] spi-gpio: Fix compiler warning when building for 64 bit systems (Prarit Bhargava) [1373655]
-- [spi] spi-gpio: Add dt support for a single device with no chip select (Prarit Bhargava) [1373655]
-- [misc] mei: me: disable driver on SPT SPS firmware (Jeremy McNicoll) [1369645]
-- [acpi] acpi / ipmi: Cleanup coding styles (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Cleanup some inclusion codes (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Cleanup some initialization codes (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Cleanup several acpi_ipmi_device members (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Add reference counting for ACPI IPMI transfers (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Use global IPMI operation region handler (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Fix race caused by the unprotected ACPI IPMI user (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Fix race caused by the timed out ACPI IPMI transfers (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Fix race caused by the unprotected ACPI IPMI transfers (David Arcari) [1373703]
-- [acpi] acpi / ipmi: Fix potential response buffer overflow (David Arcari) [1373703]
-- [kernel] sched/core, x86/topology: Fix NUMA in package topology bug (Jiri Olsa) [1369832]
-- [kernel] sched: Allow hotplug notifiers to be setup early (Jiri Olsa) [1369832]
-- [cpufreq] Ref the policy object sooner (Oleksandr Natalenko) [1382608]
-- [cpufreq] expose scaling_cur_freq sysfs file for set_policy() drivers (Oleksandr Natalenko) [1382608]
-- [lib] kobject: WARN as tip when call kobject_get() to a kobject not initialized (Oleksandr Natalenko) [1382608]
-- [cpufreq] Set cpufreq_cpu_data to NULL before putting kobject (Oleksandr Natalenko) [1382608]
-
-* Mon Oct 31 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-517.el7]
-- [fs] fanotify: fix list corruption in fanotify_get_response() (Miklos Szeredi) [1362421]
-- [fs] fsnotify: add a way to stop queueing events on group shutdown (Miklos Szeredi) [1362421]
-- [fs] dlm: Remove lock_sock to avoid scheduling while atomic (Robert S Peterson) [1377391]
-- [fs] sunrpc: move NO_CRKEY_TIMEOUT to the auth->au_flags (Dave Wysochanski) [1384666]
-- [fs] rbd: don't retry watch reregistration if header object is gone (Ilya Dryomov) [1378186]
-- [fs] rbd: don't wait for the lock forever if blacklisted (Ilya Dryomov) [1378186]
-- [fs] rbd: lock_on_read map option (Ilya Dryomov) [1378186]
-- [fs] ovl: during copy up, switch to mounter's creds early (Vivek Goyal) [1297929]
-- [fs] lsm, audit, selinux: Introduce a new audit data type LSM_AUDIT_DATA_FILE (Vivek Goyal) [1297929]
-- [fs] selinux: Institute file_path_has_perm() (Vivek Goyal) [1297929]
-- [fs] selinux: Implement dentry_create_files_as() hook (Vivek Goyal) [1297929]
-- [fs] security, overlayfs: Provide hook to correctly label newly created files (Vivek Goyal) [1297929]
-- [fs] selinux: Pass security pointer to determine_inode_label() (Vivek Goyal) [1297929]
-- [fs] selinux: Implementation for inode_copy_up_xattr() hook (Vivek Goyal) [1297929]
-- [fs] security, overlayfs: Provide security hook for copy up of xattrs for overlay file (Vivek Goyal) [1297929]
-- [fs] selinux: Implementation for inode_copy_up() hook (Vivek Goyal) [1297929]
-- [fs] security, overlayfs: provide copy up security hook for unioned files (Vivek Goyal) [1297929]
-- [fs] selinux: Create a common helper to determine an inode label (Vivek Goyal) [1297929]
-- [fs] nfsd: don't return an unhashed lock stateid after taking mutex ("J. Bruce Fields") [1368577]
-- [fs] nfsd: Fix race between FREE_STATEID and LOCK ("J. Bruce Fields") [1368577]
-- [fs] nfsd: Close race between nfsd4_release_lockowner and nfsd4_lock ("J. Bruce Fields") [1368577]
-- [fs] nfsd: Extend the mutex holding region around in nfsd4_process_open2() ("J. Bruce Fields") [1368577]
-- [fs] nfsd: Always lock state exclusively ("J. Bruce Fields") [1368577]
-- [fs] Fix regression which breaks DFS mounting (Sachin Prabhu) [1302329]
-- [fs] Move check for prefix path to within cifs_get_root() (Sachin Prabhu) [1302329]
-- [fs] Compare prepaths when comparing superblocks (Sachin Prabhu) [1302329]
-- [fs] Fix memory leaks in cifs_do_mount() (Sachin Prabhu) [1302329]
-- [fs] cifs: make share unaccessible at root level mountable (Sachin Prabhu) [1302329]
-
-* Mon Oct 31 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-516.el7]
-- [md] dm: free io_barrier after blk_cleanup_queue call (Mike Snitzer) [1385813]
-- [md] dm raid: fix activation of existing raid4/10 devices (Mike Snitzer) [1385149]
-- [rtc] cmos: Initialize hpet timer before irq is registered (Pratyush Anand) [1299001]
-- [x86] Add support for missing Kabylake Sunrise Point PCH (David Arcari) [1379401]
-- [x86] pci: vmd: Request userspace control of PCIe hotplug indicators (Myron Stowe) [1380181]
-- [pci] pciehp: Allow exclusive userspace control of indicators (Myron Stowe) [1380181]
-- [acpi] acpica: Fix for a Store->ArgX when ArgX contains a reference to a field (Lenny Szubowicz) [1330897]
-- [misc] cxl: Flush PSL cache before resetting the adapter (Steve Best) [1383478]
-- [scsi] ibmvfc: Fix I/O hang when port is not mapped (Steve Best) [1378001]
-- [netdrv] xen-netfront: avoid packet loss when ethernet header crosses page boundary (Vitaly Kuznetsov) [1348581]
-- [powerpc] ppc64: Fix incorrect return value from __copy_tofrom_user (Steve Best) [1387244]
-- [powerpc] pseries: use pci_host_bridge.release_fn() to kfree(phb) (Steve Best) [1385635]
-- [powerpc] pseries: Fix stack corruption in htpe code (Steve Best) [1384099]
-- [powerpc] eeh: Fix stale cached primary bus (Steve Best) [1383281]
-- [infiniband] ib/ipoib: move back IB LL address into the hard header (Jonathan Toppins) [1378656]
-
-* Wed Oct 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-515.el7]
-- [kernel] sched/core: Fix a race between try_to_wake_up() and a woken up task (Lauro Ramos Venancio) [1379256]
-- [kernel] pm/sleep: Fix request_firmware() error at resume (Don Zickus) [1375203]
-- [block] blk-mq: improve warning for running a queue on the wrong CPU (Gustavo Duarte) [1376948]
-- [block] blk-mq: don't overwrite rq->mq_ctx (Gustavo Duarte) [1376948]
-- [nvme] Don't suspend admin queue that wasn't created (Gustavo Duarte) [1370507]
-- [nvme] Suspend all queues before deletion (Gustavo Duarte) [1370507]
-- [scsi] cxgb4i: Increased the value of MAX_IMM_TX_PKT_LEN from 128 to 256 bytes (Sai Vemuri) [1379954]
-- [scsi] cxgb4i: fix credit check for tx_data_wr (Sai Vemuri) [1379954]
-- [vfio] vfio-pci: Disable INTx after MSI/X teardown (Alex Williamson) [1371495]
-- [vfio] vfio-pci: Virtualize PCIe & AF FLR (Alex Williamson) [1371495]
-- [misc] hpilo: Changes to support new security states in iLO5 FW (Nigel Croxon) [1376576]
-- [misc] genwqe: Change default access rights for device node (Steve Best) [1325797]
-- [hid] i2c-hid: exit if the IRQ is not valid (David Arcari) [1376599]
-- [x86] fix call location of smp_quirk_init_udelay() (Prarit Bhargava) [1377296]
-- [x86] hpet: Re-enable HPET on Purley 4S (Prarit Bhargava) [1372853]
-- [x86] hpet: Reduce HPET counter read contention (Prarit Bhargava) [1372853]
-- [powerpc] kvm: ppc: book3s hv: Take out virtual core piggybacking code (Thomas Huth) [1350719]
-- [powerpc] kvm: ppc: book3s: Treat VTB as a per-subcore register, not per-thread (Thomas Huth) [1350719]
-- [powerpc] kvm: ppc: book3s hv: Move struct kvmppc_vcore from kvm_host.h to kvm_book3s.h (Thomas Huth) [1350719]
-- [infiniband] ib/iser: Fix max_sectors calculation (Jonathan Toppins) [1380515]
-
-* Wed Oct 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-514.el7]
-- [mm] remove gup_flags FOLL_WRITE games from __get_user_pages() (Larry Woodman) [1385124] {CVE-2016-5195}
-
-* Wed Oct 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-513.el7]
-- [md] dm raid: fix compat_features validation (Mike Snitzer) [1383726]
-
-* Fri Sep 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-512.el7]
-- [fs] revert "ext4: pre-zero allocated blocks for DAX IO" (Eric Sandeen) [1380571]
-- [fs] nfsd: fix corruption in notifier registration ("J. Bruce Fields") [1378363]
-- [fs] xfs: log recovery tracepoints to track current lsn and buffer submission (Brian Foster) [1362730]
-- [fs] xfs: update metadata LSN in buffers during log recovery (Brian Foster) [1362730]
-- [fs] xfs: don't warn on buffers not being recovered due to LSN (Brian Foster) [1362730]
-- [fs] xfs: pass current lsn to log recovery buffer validation (Brian Foster) [1362730]
-- [fs] xfs: rework log recovery to submit buffers on LSN boundaries (Brian Foster) [1362730]
-- [x86] perf/uncore: Disable uncore on kdump kernel (Jiri Olsa) [1379569]
-- [netdrv] mlx4_core: Fix to clean devlink resources (Kamal Heib) [1379504]
-
-* Wed Sep 28 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-511.el7]
-- [net] add recursion limit to GRO (Sabrina Dubroca) [1374191] {CVE-2016-7039}
-- [mm] cgroup: fix hugetlb_cgroup_read() (Jerome Marchand) [1378236]
-- [fs] nfs: change invalidatepage prototype to accept length (Benjamin Coddington) [1366131]
-- [fs] xfs: quiesce the filesystem after recovery on readonly mount (Eric Sandeen) [1375457]
-- [fs] xfs: rework buffer dispose list tracking (Brian Foster) [1349175]
-- [fs] ext4: pre-zero allocated blocks for DAX IO (Eric Sandeen) [1367989]
-- [fs] gfs2: Initialize atime of I_NEW inodes (Andreas Grunbacher) [1379447]
-- [fs] gfs2: Update file times after grabbing glock (Andreas Grunbacher) [1379447]
-- [x86] topology: Handle CPUID bogosity gracefully (Vitaly Kuznetsov) [1377988]
-- [netdrv] sfc: check async completer is !NULL before calling (Jarod Wilson) [1368201]
-- [infiniband] ib/mlx5: Fix iteration overrun in GSI qps (Don Dutile) [1376941]
-
-* Wed Sep 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-510.el7]
-- [kernel] audit: fix exe_file access in audit_exe_compare (Richard Guy Briggs) [1374478]
-- [kernel] mm: introduce get_task_exe_file (Richard Guy Briggs) [1374478]
-- [kernel] prctl: avoid using mmap_sem for exe_file serialization (Richard Guy Briggs) [1374478]
-- [kernel] mm: rcu-protected get_mm_exe_file() (Richard Guy Briggs) [1374478]
-- [dm] dm-raid: reverse validation of nosync+rebuild flags (Heinz Mauelshagen) [1371717]
-- [x86] kvm: correctly reset dest_map->vector when restoring LAPIC state (Paolo Bonzini) [1367716]
-- [s390] dasd: fix hanging device after clear subchannel (Gustavo Duarte) [1368068]
-- [netdrv] bna: fix crash in bnad_get_strings() (Ivan Vecera) [1376508]
-- [netdrv] bna: add missing per queue ethtool stat (Ivan Vecera) [1376508]
-- [powerpc] kvm: Implement kvm_arch_intc_initialized() for PPC (David Gibson) [1375778]
-- [powerpc] kvm: book3s: Don't crash if irqfd used with no in-kernel XICS emulation (David Gibson) [1375778]
-
-* Tue Sep 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-509.el7]
-- [mm] sparse: use memblock apis for early memory allocations (Koki Sanagi) [1375453]
-- [mm] memblock: add memblock memory allocation apis (Koki Sanagi) [1375453]
-- [mm] thp: harden the debug kernel with a strict check for thp_mmu_gather (Andrea Arcangeli) [1369365]
-- [mm] thp: initialize thp_mmu_gather for newly allocated migrated pages (Andrea Arcangeli) [1369365]
-- [mm] thp: put_huge_zero_page() with MMU gather #2 (Andrea Arcangeli) [1369365]
-- [fs] nfs: fix BUG() crash in notify_change() with patch to chown_common() ("J. Bruce Fields") [1342695]
-- [net] ipv6: gro: fix forwarding of tunneled packets (Jiri Benc) [1375438]
-- [net] sctp: hold the transport before using it in sctp_hash_cmp (Xin Long) [1368884]
-- [net] sctp: identify chunks that need to be fragmented at IP level (Xin Long) [1371377]
-- [scsi] be2iscsi: revert: _bh for io_sgl_lock and mgmt_sgl_lock (Maurizio Lombardi) [1374223]
-- [block] blk-mq: Allow timeouts to run while queue is freezing (Gustavo Duarte) [1372483]
-- [block] defer timeouts to a workqueue (Gustavo Duarte) [1372483]
-- [netdrv] tg3: Fix for disallow tx coalescing time to be 0 (Ivan Vecera) [1368885]
-- [netdrv] tg3: Fix for diasllow rx coalescing time to be 0 (Ivan Vecera) [1368885]
-- [infiniband] rdma/ocrdma: Support user AH creation for RoCE-v2 (Don Dutile) [1376120]
-- [infiniband] rdma/ocrdma: Support RoCE-v2 in the RC path (Don Dutile) [1376120]
-- [infiniband] rdma/ocrdma: Support RoCE-v2 in the UD path (Don Dutile) [1376120]
-- [infiniband] rdma/ocrdma: Export udp encapsulation capability (Don Dutile) [1376120]
-- [infiniband] ib/mlx5: Fix wrong naming of port_rcv_data counter (Don Dutile) [1374862]
-
-* Mon Sep 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-508.el7]
-- [drm] i915: Add GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE to SNB (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: implement missing case for SKL watermarks calculation (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: fix the watermark res_blocks value (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: fix plane_blocks_per_line on watermarks calculations (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: minimum scanlines for Y tile is not always 4 (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: fix the WaWmMemoryReadLatency implementation (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Don't try to update plane watermarks if they haven't changed (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Update DDB values atomically with wms/plane attrs (Lyude Paul) [1341633 1355776]
-- [drm] i915: Move CRTC updating in atomic_commit into it's own hook (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Ensure pipes with changed wms get added to the state (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Update plane watermarks atomically during plane updates (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: Only copy WM results for changed pipes to skl_hw (Lyude Paul) [1341633 1355776]
-- [drm] i915/skl: Add support for the SAGV, fix underrun hangs (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen6+: Interpret mailbox error flags (Lyude Paul) [1341633 1355776]
-- [drm] i915/gen9: Only copy WM results for changed pipes to skl_hw (Lyude Paul) [1341633 1355776]
-
-* Thu Sep 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-507.el7]
-- [netdrv] ixgbe: fix spoofed packets with macvlans (Ken Cox) [1324631]
-- [tools] perf mem: Fix -t store option for record command (Jiri Olsa) [1357531 1357543]
-- [x86] clock: Fix kvm guest tsc initialization (Prarit Bhargava) [1372759]
-- [x86] tsc: Enumerate BXT tsc_khz via CPUID (Prarit Bhargava) [1372759]
-- [drm] i915: Enable polling when we don't have hpd (Lyude Paul) [1277863]
-- [drm] i915/vlv: Disable HPD in valleyview_crt_detect_hotplug() (Lyude Paul) [1277863]
-- [drm] i915/vlv: Reset the ADPA in vlv_display_power_well_init() (Lyude Paul) [1277863]
-- [drm] i915/vlv: Make intel_crt_reset() per-encoder (Lyude Paul) [1277863]
-- [fs] Fix NULL pointer dereference in bl_free_device() (Benjamin Coddington) [1356796]
-- [fs] nfs/blocklayout: support RH/Fedora dm-mpath device nodes (Benjamin Coddington) [1356796]
-- [fs] nfs/blocklayout: refactor open-by-wwn (Benjamin Coddington) [1356796]
-- [fs] nfs/blocklayout: use proper fmode for opening block devices (Benjamin Coddington) [1356796]
-- [fs] sunrpc: fix UDP memory accounting (Paolo Abeni) [1298899]
-
-* Mon Sep 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-506.el7]
-- [kernel] timekeeping: Cap adjustments so they don't exceed the maxadj value (Marcelo Tosatti) [1246218]
-- [kernel] fork: allocate idle task for a CPU always on its local node (Oleg Nesterov) [1339635]
-- [kernel] sys: do_sysinfo() use get_monotonic_boottime() (Milos Vyletel) [1373224]
-- [fs] proc/uptime: uptime_proc_show() use get_monotonic_boottime() (Milos Vyletel) [1373224]
-- [fs] exec: de_thread: mt-exec should update ->real_start_time (Milos Vyletel) [1373224]
-- [fs] ovl: clear nlink on rmdir (Miklos Szeredi) [1373787]
-- [fs] ovl: share inode for hard link (Miklos Szeredi) [1373787]
-- [fs] ovl: use generic_delete_inode (Miklos Szeredi) [1373787]
-- [fs] ovl: handle umask and posix_acl_default correctly on creation (Miklos Szeredi) [1351863]
-- [fs] ovl: fix sgid on directory (Miklos Szeredi) [1351863]
-- [fs] ovl: copyattr after setting POSIX ACL (Miklos Szeredi) [1371638]
-- [fs] ovl: Switch to generic_removexattr (Miklos Szeredi) [1371651]
-- [fs] ovl: Get rid of ovl_xattr_noacl_handlers array (Miklos Szeredi) [1371651]
-- [fs] ext4: print ext4 mount option data_err=abort correctly (Lukas Czerner) [1342403]
-- [fs] nfs4: Avoid migration loops (Benjamin Coddington) [1355977]
-- [fs] nfs: don't create zero-length requests (Benjamin Coddington) [1324635]
-- [fs] xfs: don't assert fail on non-async buffers on ioacct decrement (Brian Foster) [1363822]
-- [fs] btrfs: set S_IOPS_WRAPPER consistently (Eric Sandeen) [1182456]
-- [fs] xfs: prevent dropping ioend completions during buftarg wait (Brian Foster) [1370177]
-- [fs] gfs2: Fix extended attribute readahead optimization (Robert S Peterson) [1256539]
-- [mm] page_alloc: don't re-init pageset in zone_pcp_update() (Yasuaki Ishimatsu) [1374114]
-- [mm] readahead: Move readahead limit outside of readahead, and advisory syscalls (Kyle Walker) [1351353]
-- [net] veth: sctp: add NETIF_F_SCTP_CRC to device features (Xin Long) [1367105]
-- [net] veth: Update features to include all tunnel GSO types (Xin Long) [1367105]
-- [tty] serial: 8250_dw: add ability to handle the peripheral clock (Prarit Bhargava) [1367476]
-- [x86] mm: Fix regression panic at boot time seen on some NUMA systems (Larry Woodman) [1372047]
-- [x86] mm: non-linear virtual memory fix for KNL4 erratum (Larry Woodman) [1372047]
-- [x86] tsc: Add rdtscll() merge helper (Mitsuhiro Tanino) [1372398]
-- [x86] kvm: Expose more Intel AVX512 feature to guest (Paolo Bonzini) [1369038]
-- [s390] pci: remove iomap sanity checks (Jason Wang) [1373503]
-- [nvme] Add device ID's with stripe quirk (David Milburn) [1371642]
-- [scsi] mpt3sas: Fix panic when aer correct error occurred (Frank Ramsay) [1374745]
-- [iommu] vt-d: Disable passthrough mode on Kexec kernel (Myron Stowe) [1367621]
-- [netdrv] ixgbe: Eliminate useless message and improve logic (Ken Cox) [1369519]
-- [netdrv] sfc: check MTU against minimum threshold (Jarod Wilson) [1363683]
-
-* Tue Sep 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-505.el7]
-- [hv] balloon: replace ha_region_mutex with spinlock (Vitaly Kuznetsov) [1361245]
-- [hv] balloon: don't wait for ol_waitevent when memhp_auto_online is enabled (Vitaly Kuznetsov) [1361245]
-- [hv] balloon: account for gaps in hot add regions (Vitaly Kuznetsov) [1361245]
-- [hv] balloon: keep track of where ha_region starts (Vitaly Kuznetsov) [1361245]
-- [mm] memory-hotplug: add hot-added memory ranges to memblock before allocate node_data for a node (Yasuaki Ishimatsu) [1365766]
-- [mm] memory-hotplug: fix wrong edge when hot add a new node (Yasuaki Ishimatsu) [1365766]
-- [rtc] rtc-rx8581: Mark tech preview (Prarit Bhargava) [1362164]
-- [rtc] rtc-rx8581.c: add SMBus-only adapters support (Prarit Bhargava) [1362164]
-- [rtc] rtc-rx8581.c: remove empty function (Prarit Bhargava) [1362164]
-- [pci] Restore original checksums of pci symbols (Stanislav Kozina) [1370477]
-- [net] reserve kABI fields in struct packet_type (Jiri Benc) [1358738]
-- [net] openvswitch: Ignore negative headroom value (Jakub Sitnicki) [1369642]
-- [scsi] qla2xxx: Update the driver version to 8.07.00.33.07.3-k1 (Chad Dupuis) [1367530]
-- [scsi] qla2xxx: Set FLOGI retry in additional firmware options for P2P (N2N) mode (Chad Dupuis) [1361279]
-- [scsi] qla2xxx: prevent board_disable from running during EEH (Chad Dupuis) [1367530]
-- [kernel] sched/fair: Fix typo in sync_throttle() (Xunlei Pang) [1341003]
-- [kernel] sched/fair: Rework throttle_count sync (Xunlei Pang) [1341003]
-- [kernel] sched/fair: Do not announce throttled next buddy in dequeue_task_fair() (Xunlei Pang) [1341003]
-- [kernel] sched/fair: Initialize throttle_count for new task-groups lazily (Xunlei Pang) [1341003]
-- [kernel] audit: fix a double fetch in audit_log_single_execve_arg() (Paul Moore) [1359306] {CVE-2016-6136}
-- [powerpc] revert "pci: Assign fixed PHB number based on device-tree properties" (Gustavo Duarte) [1360353 1373109]
-- [powerpc] revert "pci: Fix endian bug in fixed PHB numbering" (Gustavo Duarte) [1360353 1373109]
-- [infiniband] rdma/ocrdma: Fix the max_sge reported from FW (Honggang Li) [1369540]
-
-* Mon Sep 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-504.el7]
-- [fs] dax: disable dax on ext2 and ext3 (Jeff Moyer) [1369900]
-- [fs] dax: mark tech preview (Jeff Moyer) [1369825]
-- [fs] pmem: disable dax mounting in the prsence of media errors (Jeff Moyer) [1367132]
-- [fs] xfs: Add alignment check for DAX mount (Jeff Moyer) [1367132]
-- [fs] ext4: Add alignment check for DAX mount (Jeff Moyer) [1367132]
-- [fs] block: Add bdev_dax_supported() for dax mount checks (Jeff Moyer) [1367132]
-- [fs] block: Add vfs_msg() interface (Jeff Moyer) [1367132]
-- [tools] x86/insn: remove pcommit (Jeff Moyer) [1350153]
-- [x86] revert "kvm: x86: add pcommit support" (Jeff Moyer) [1350153]
-- [tools] pmem: kill __pmem address space (Jeff Moyer) [1350153]
-- [kernel] pmem: kill wmb_pmem() (Jeff Moyer) [1350153]
-- [nvdimm] libnvdimm, pmem: use nvdimm_flush() for namespace I/O writes (Jeff Moyer) [1350153]
-- [fs] dax: remove wmb_pmem() (Jeff Moyer) [1350153]
-- [kernel] libnvdimm, pmem: flush posted-write queues on shutdown (Jeff Moyer) [1350153]
-- [nvdimm] libnvdimm, pmem: use REQ_FUA, REQ_FLUSH for nvdimm_flush() (Jeff Moyer) [1350153]
-- [nvdimm] libnvdimm: cycle flush hints (Jeff Moyer) [1350153]
-- [kernel] libnvdimm: introduce nvdimm_flush() and nvdimm_has_flush() (Jeff Moyer) [1350153]
-- [nvdimm] libnvdimm: keep region data alive over namespace removal (Jeff Moyer) [1350153]
-- [tools] testing/nvdimm: simulate multiple flush hints per-dimm (Jeff Moyer) [1350153]
-- [kernel] libnvdimm, nfit: move flush hint mapping to region-device driver-data (Jeff Moyer) [1350153]
-- [kernel] libnvdimm, nfit: remove nfit_spa_map() infrastructure (Jeff Moyer) [1350153]
-- [kernel] libnvdimm: introduce devm_nvdimm_memremap(), convert nfit_spa_map() users (Jeff Moyer) [1350153]
-- [acpi] nfit: don't override return value of nfit_mem_init (Jeff Moyer) [1350153]
-- [acpi] nfit: always associate flush hints (Jeff Moyer) [1350153]
-- [tools] testing/nvdimm: remove __wrap_devm_memremap_pages placeholder (Jeff Moyer) [1350153]
-- [kernel] devm: add helper devm_add_action_or_reset() (Jeff Moyer) [1350153]
-
-* Sat Sep 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-503.el7]
-- [scsi] sas: remove is_sas_attached() (Ewan Milne) [1370231]
-- [scsi] ses: use scsi_is_sas_rphy instead of is_sas_attached (Ewan Milne) [1370231]
-- [scsi] sas: provide stub implementation for scsi_is_sas_rphy (Ewan Milne) [1370231]
-- [target] lio: assume a maximum of 1024 iovecs (Andy Grover) [1367597]
-- [scsi] smartpqi: bump driver version (Scott Benesh) [1370631]
-- [scsi] smartpqi: add smartpqi.txt (Scott Benesh) [1370631]
-- [scsi] smartpqi: update maintainers (Scott Benesh) [1370631]
-- [scsi] smartpqi: update Kconfig (Scott Benesh) [1370631]
-- [scsi] smartpqi: remove timeout for cache flush operations (Scott Benesh) [1370631]
-- [scsi] smartpqi: scsi queuecommand cleanup (Scott Benesh) [1370631]
-- [scsi] smartpqi: minor tweaks to update time support (Scott Benesh) [1370631]
-- [scsi] smartpqi: minor function reformating (Scott Benesh) [1370631]
-- [scsi] smartpqi: correct event acknowledgement timeout issue (Scott Benesh) [1370631]
-- [scsi] smartpqi: correct controller offline issue (Scott Benesh) [1370631]
-- [scsi] smartpqi: add kdump support (Scott Benesh) [1370631]
-- [scsi] smartpqi: enhance reset logic (Scott Benesh) [1370631]
-- [scsi] smartpqi: enhance drive offline informational message (Scott Benesh) [1370631]
-- [scsi] smartpqi: simplify spanning (Scott Benesh) [1370631]
-- [scsi] smartpqi: change tmf macro names (Scott Benesh) [1370631]
-- [scsi] smartpqi: change aio sg processing (Scott Benesh) [1370631]
-
-* Fri Sep 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-502.el7]
-- [fs] rbd: add force close option (Ilya Dryomov) [1196119]
-- [fs] rbd: add 'config_info' sysfs rbd device attribute (Ilya Dryomov) [1196119]
-- [fs] rbd: add 'snap_id' sysfs rbd device attribute (Ilya Dryomov) [1196119]
-- [fs] rbd: add 'cluster_fsid' sysfs rbd device attribute (Ilya Dryomov) [1196119]
-- [fs] rbd: add 'client_addr' sysfs rbd device attribute (Ilya Dryomov) [1196119]
-- [fs] rbd: print capacity in decimal and features in hex (Ilya Dryomov) [1196119]
-- [fs] rbd: support for exclusive-lock feature (Ilya Dryomov) [1196119]
-- [fs] rbd: retry watch re-registration periodically (Ilya Dryomov) [1196119]
-- [fs] rbd: introduce a per-device ordered workqueue (Ilya Dryomov) [1196119]
-- [fs] libceph: rename ceph_client_id() -> ceph_client_gid() (Ilya Dryomov) [1196119]
-- [fs] libceph: support for blacklisting clients (Ilya Dryomov) [1196119]
-- [fs] libceph: support for lock.lock_info (Ilya Dryomov) [1196119]
-- [fs] libceph: support for advisory locking on RADOS objects (Ilya Dryomov) [1196119]
-- [fs] libceph: add ceph_osdc_call() single-page helper (Ilya Dryomov) [1196119]
-- [fs] libceph: support for CEPH_OSD_OP_LIST_WATCHERS (Ilya Dryomov) [1196119]
-- [fs] libceph: rename ceph_entity_name_encode() -> ceph_auth_entity_name_encode() (Ilya Dryomov) [1196119]
-- [fs] libceph: make cancel_generic_request() static (Ilya Dryomov) [1196119]
-- [fs] libceph: fix return value check in alloc_msg_with_page_vector() (Ilya Dryomov) [1196119]
-- [fs] ceph: fix symbol versioning for ceph_monc_do_statfs (Ilya Dryomov) [1196119]
-- [fs] libceph: add start en/decoding block helpers (Ilya Dryomov) [1196119]
-- [fs] libceph: add an ONSTACK initializer for oids (Ilya Dryomov) [1196119]
-- [fs] libceph: fix some missing includes (Ilya Dryomov) [1196119]
-- [mm] swap: flush lru pvecs on compound page arrival (Jerome Marchand) [1341766 1343920]
-- [md] raid1/raid10: slow down resync if there is non-resync activity pending (Jes Sorensen) [1371545]
-- [x86] hibernate: Use hlt_play_dead() when resuming from hibernation (Lenny Szubowicz) [1229590]
-- [x86] Mark Intel Purley 2 socket processor as supported (Steve Best) [1362645]
-- [i2c] i801: Add support for Kaby Lake PCH-H (David Arcari) [1310953]
-- [mfd] lpss: Add Intel Kaby Lake PCH-H PCI IDs (David Arcari) [1310953]
-- [usb] dwc3: pci: add Intel Kabylake PCI ID (David Arcari) [1310953]
-- [edac] sb_edac: Fix channel reporting on Knights Landing (Aristeu Rozanski) [1367330]
-- [include] bluetooth: Fix kabi breakage in struct hci_core (Don Zickus) [1370583]
-- [powerpc] pci: Fix endian bug in fixed PHB numbering (Gustavo Duarte) [1360353]
-- [powerpc] pci: Assign fixed PHB number based on device-tree properties (Gustavo Duarte) [1360353]
-
-* Thu Sep 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-501.el7]
-- [netdrv] sfc: work around TRIGGER_INTERRUPT command not working on SFC9140 (Jarod Wilson) [1368201]
-- [netdrv] sfc: remove duplicate assignment (Jarod Wilson) [1368201]
-- [netdrv] sfc: include size-binned TX stats on sfn8542q (Jarod Wilson) [1368201]
-- [netdrv] sfc: fix potential stack corruption from running past stat bitmask (Jarod Wilson) [1368201]
-- [netdrv] sfc: avoid division by zero (Jarod Wilson) [1368201]
-- [netdrv] sfc: get timer configuration from adapter (Jarod Wilson) [1368201]
-- [netdrv] sfc: set interrupt moderation via MCDI (Jarod Wilson) [1368201]
-- [netdrv] sfc: use new performance based event queue init (Jarod Wilson) [1368201]
-- [netdrv] sfc: retrieve second word of datapath capabilities (Jarod Wilson) [1368201]
-- [netdrv] sfc: allow asynchronous MCDI without completion function (Jarod Wilson) [1368201]
-- [netdrv] sfc: update MCDI protocol headers (Jarod Wilson) [1368201]
-- [netdrv] sfc: avoid -Wtype-limits warning (Jarod Wilson) [1368201]
-- [netdrv] sfc: Fix VLAN filtering feature if vPort has VLAN_RESTRICT flag (Jarod Wilson) [1368201]
-- [netdrv] sfc: Update MCDI protocol definitions (Jarod Wilson) [1368201]
-- [netdrv] sfc: Disable VLAN filtering by default if not strictly required (Jarod Wilson) [1368201]
-- [netdrv] sfc: VLAN filters must only be created if the firmware supports this (Jarod Wilson) [1368201]
-- [netdrv] sfc: Fix dup unknown multicast/unicast filters after datapath reset (Jarod Wilson) [1368201]
-- [netdrv] sfc: Refactor checks for invalid filter ID (Jarod Wilson) [1368201]
-- [netdrv] sfc: Take mac_lock before calling efx_ef10_filter_table_probe (Jarod Wilson) [1368201]
-- [netdrv] sfc: Implement ndo_vlan_rx_{add, kill}_vid() callbacks (Jarod Wilson) [1368201]
-- [netdrv] sfc: Implement list of VLANs added over interface (Jarod Wilson) [1368201]
-- [netdrv] sfc: Make EF10 filter management helper functions VLAN-aware (Jarod Wilson) [1368201]
-- [netdrv] sfc: Store unicast and multicast promisc flag with address cache (Jarod Wilson) [1368201]
-- [netdrv] sfc: Move filter IDs to per-VLAN data structure (Jarod Wilson) [1368201]
-- [netdrv] sfc: Forget filter ID when the filter is marked old (Jarod Wilson) [1368201]
-- [netdrv] sfc: Assert filter_sem write locked when required (Jarod Wilson) [1368201]
-- [netdrv] sfc: Add efx_nic member with fixed netdev features (Jarod Wilson) [1368201]
-- [netdrv] sfc: Move last mc_promisc flag to EF10 filter table state (Jarod Wilson) [1368201]
-- [netdrv] sfc: Define macro with EF10 offload feature (Jarod Wilson) [1368201]
-- [netdrv] sfc: on MC reset, clear PIO buffer linkage in TXQs (Jarod Wilson) [1368201]
-- [netdrv] sfc: disable RSS when unsupported (Jarod Wilson) [1368201]
-- [netdrv] sfc: implement IPv6 NFC (and IPV4_USER_FLOW) (Jarod Wilson) [1368201]
-- [netdrv] i40iw: Receive notification events correctly (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Update hw_iwarp_state (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Send last streaming mode message for loopback connections (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Avoid writing to freed memory (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Fix double free of allocated_buffer (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Add missing NULL check for MPA private data (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Add missing check for interface already open (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Protect req_resource_num update (Stefan Assmann) [1371734]
-- [netdrv] i40iw: Change mem_resources pointer to a u8 (Stefan Assmann) [1371734]
-- [netdrv] hv_netvsc: fix bonding devices check in netvsc_netdev_event() (Vitaly Kuznetsov) [1364333]
-- [netdrv] hv_netvsc: protect module refcount by checking net_device_ctx->vf_netdev (Vitaly Kuznetsov) [1364333]
-- [netdrv] hv_netvsc: reset vf_inject on VF removal (Vitaly Kuznetsov) [1364333]
-- [netdrv] hv_netvsc: avoid deadlocks between rtnl lock and vf_use_cnt wait (Vitaly Kuznetsov) [1364333]
-- [netdrv] hv_netvsc: don't lose VF information (Vitaly Kuznetsov) [1364333]
-- [netdrv] mlx4_en: Add resilience in low memory systems (kamal heib) [1367818]
-- [netdrv] net/mlx4_en: Move filters cleanup to a proper location (kamal heib) [1367818]
-
-* Tue Aug 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-500.el7]
-- [drm] amdgpu: Disable RPM helpers while reprobing connectors on resume (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Kabylake uses the same GMS values as Skylake (Rob Clark) [1348329 1349064]
-- [drm] i915/bxt: Broxton uses the same GMS values as Skylake (Rob Clark) [1348329 1349064]
-- [drm] i915/skl: Add the additional graphics stolen sizes (Rob Clark) [1348329 1349064]
-- [drm] x86/gpu: Sprinkle const, __init and __initconst to stolen memory quirks (Rob Clark) [1348329 1349064]
-- [drm] x86/gpu: Implement stolen memory size early quirk for CHV (Rob Clark) [1348329 1349064]
-- [drm] x86/gpu: Fix sign extension issue in Intel graphics stolen memory quirks (Rob Clark) [1348329 1349064]
-- [drm] makefile: update DRM version (Rob Clark) [1348329 1349064]
-- [drm] i915: Revert DisplayPort fast link training feature (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Fix error paths when mapping framebuffer (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Fix corner case screen target management (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Delay pinning fbdev framebuffer until after mode set (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Check pin count before attempting to move a buffer (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Work around mode set failure in 2D VMs (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Add an option to change assumed FB bpp (Rob Clark) [1348329 1349064]
-- [drm] ttm: Make ttm_bo_mem_compat available (Rob Clark) [1348329 1349064]
-- [drm] atomic: Make drm_atomic_legacy_backoff reset crtc->acquire_ctx (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: fix incorrect voltage table value for tonga (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: incorrectly use of the function return value (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: fix logic error (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: need to notify system bios pcie device ready (Rob Clark) [1348329 1349064]
-- [drm] amd/powerplay: fix bug that function parameter was incorect (Rob Clark) [1348329 1349064]
-- [drm] make drm_atomic_set_mode_prop_for_crtc() more reliable (Rob Clark) [1348329 1349064]
-- [drm] add missing drm_mode_set_crtcinfo call (Rob Clark) [1348329 1349064]
-- [drm] i915: Refresh cached DP port register value on resume (Rob Clark) [1348329 1349064]
-- [drm] i915/ilk: Don't disable SSC source if it's in use (Rob Clark) [1348329 1349064]
-- [drm] nouveau/disp/sor/gf119: select correct sor when poking training pattern (Rob Clark) [1348329 1349064]
-- [drm] nouveau: fix for disabled fbdev emulation (Rob Clark) [1348329 1349064]
-- [drm] nouveau/ltc/gm107-: fix typo in the address of NV_PLTCG_LTC0_LTS0_INTR (Rob Clark) [1348329 1349064]
-- [drm] nouveau/gr/gf100-: update sm error decoding from gk20a nvgpu headers (Rob Clark) [1348329 1349064]
-- [drm] nouveau/bios/disp: fix handling of "match any protocol" entries (Rob Clark) [1348329 1349064]
-- [drm] dp/mst: Always clear proposed vcpi table for port (Rob Clark) [1348329 1349064]
-- [drm] amdgpu: initialize amdgpu_cgs_acpi_eval_object result value (Rob Clark) [1348329 1349064]
-- [drm] amdgpu: fix num_rbs exposed to userspace (v2) (Rob Clark) [1348329 1349064]
-- [drm] amdgpu/gfx7: fix broken condition check (Rob Clark) [1348329 1349064]
-- [drm] radeon: fix asic initialization for virtualized environments (Rob Clark) [1348329 1349064]
-- [drm] i915: Removing PCI IDs that are no longer listed as Kabylake (Rob Clark) [1348329 1349064]
-- [drm] i915: Add more Kabylake PCI IDs (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Introduce the first official DMC for Kabylake (Rob Clark) [1348329 1349064]
-- [drm] i915/bxt: Reject DMC firmware versions with known bugs (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: implement WaConextSwitchWithConcurrentTLBInvalidate (Rob Clark) [1348329 1349064]
-- [drm] i915: implement WaClearTdlStateAckDirtyBits (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaClearSlmSpaceAtContextSwitch (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableSbeCacheDispatchPortSharing (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableGafsUnitClkGating (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaForGAMHang (Rob Clark) [1348329 1349064]
-- [drm] i915: Add WaInsertDummyPushConstP for bxt and kbl (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableDynamicCreditSharing (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableLSQCROPERFforOCL (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaDisableFenceDestinationToSLM for A0 (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaEnableGapsTsvCreditFix (Rob Clark) [1348329 1349064]
-- [drm] i915: Mimic skl with WaForceEnableNonCoherent (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: Always apply WaForceContextSaveRestoreNonCoherent (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add WaSkipStolenMemoryFirstPage for A0 (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Add REVID macro (Rob Clark) [1348329 1349064]
-- [drm] i915/kbl: Init gen9 workarounds (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: implement WaEnableSamplerGPGPUPreemptionSupport (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: add WaClearFlowControlGpgpuContextSave (Rob Clark) [1348329 1349064]
-- [drm] i915/skl: Add WaDisableGafsUnitClkGating (Rob Clark) [1348329 1349064]
-- [drm] i915/gen9: Add WaVFEStateAfterPipeControlwithMediaStateClear (Rob Clark) [1348329 1349064]
-- [drm] i915: Introduce Kabypoint PCH for Kabylake H/DT (Rob Clark) [1348329 1349064]
-- [drm] revert "drm/i915: Exit cherryview_irq_handler() after one pass" (Rob Clark) [1348329 1349064]
-- [drm] core: Do not preserve framebuffer on rmfb, v4 (Rob Clark) [1348329 1349064]
-- [drm] i915: Pass the correct crtc state to .update_plane() (Rob Clark) [1348329 1349064]
-- [drm] Add helper for DP++ adaptors (Rob Clark) [1348329 1349064]
-- [drm] i915: Fix watermarks for VLV/CHV (Rob Clark) [1348329 1349064]
-- [drm] i915: Don't leave old junk in ilk active watermarks on readout (Rob Clark) [1348329 1349064]
-- [drm] i915: Enable/disable TMDS output buffers in DP++ adaptor as needed (Rob Clark) [1348329 1349064]
-- [drm] i915: Respect DP++ adaptor TMDS clock limit (Rob Clark) [1348329 1349064]
-- [drm] i915/psr: Try to program link training times correctly (Rob Clark) [1348329 1349064]
-- [drm] amdgpu: Fix hdmi deep color support (Rob Clark) [1348329 1349064]
-- [drm] amdgpu: use drm_mode_vrefresh() rather than mode->vrefresh (Rob Clark) [1348329 1349064]
-- [drm] vmwgfx: Kill some lockdep warnings (Rob Clark) [1348329 1349064]
-- [drm] gma500: Fix possible out of bounds read (Rob Clark) [1348329 1349064]
-
-* Tue Aug 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-499.el7]
-- [drm] i915/hsw: Disable PSR by default (Lyude Paul) [1367930]
-- [x86] nmi: Enable nested do_nmi() handling for 64-bit kernels (Jiri Olsa) [1365704]
-- [net] ipv4: igmp: Allow removing groups from a removed interface (Jiri Benc) [1369427]
-- [net] netfilter: ebtables: put module reference when an incorrect extension is found (Sabrina Dubroca) [1369325]
-- [net] sctp: linearize early if it's not GSO (Marcelo Leitner) [1058148]
-- [net] sctp_diag: Respect ss adding TCPF_CLOSE to idiag_states (Phil Sutter) [1361728]
-- [net] sctp_diag: Fix T3_rtx timer export (Phil Sutter) [1361728]
-- [net] sctp: Export struct sctp_info to userspace (Phil Sutter) [1361728]
-- [net] macsec: ensure rx_sa is set when validation is disabled (Sabrina Dubroca) [1368429]
-- [net] macsec: use after free when deleting the underlying device (Sabrina Dubroca) [1368429]
-- [target] target/user: Fix failure to unlock a spinlock upon function return (Andy Grover) [1367873]
-- [target] target/user: Fix comments to not refer to data ring (Andy Grover) [1367873]
-- [target] target/user: Return an error if cmd data size is too large (Andy Grover) [1367873]
-- [target] target/user: Use sense_reason_t in tcmu_queue_cmd_ring (Andy Grover) [1367873]
-- [target] Backport tcm-user from 4.6 (Andy Grover) [1367873]
-- [uio] Export definition of struct uio_device (Andy Grover) [1367873]
-- [netdrv] i40iw: Add NULL check for puda buffer (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Change dup_ack_thresh to u8 (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Remove unnecessary check for moving CQ head (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Simplify code to set fragments in SQ WQE (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Remove unnecessary parameter to i40iw_cq_poll_completion (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Do not access pointer after free (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Correct and use size parameter to i40iw_reg_phys_mr (Stefan Assmann) [1367425]
-- [netdrv] i40iw: Fix return codes (Stefan Assmann) [1367425]
-- [netdrv] i40e: Correcting mutex usage in client code (Stefan Assmann) [1367425]
-- [netdrv] i40e: Initialize pointer in client_release function (Stefan Assmann) [1367425]
-- [netdrv] i40e: Check client is open before calling client ops (Stefan Assmann) [1367425]
-- [netdrv] i40e: Force register writes to mitigate sync issues with iwarp VF driver (Stefan Assmann) [1367425]
-- [netdrv] i40e: Move the mutex lock in i40e_client_unregister (Stefan Assmann) [1367425]
-- [infiniband] ib/uverbs: Initialize ib_qp_init_attr with zeros (Honggang Li) [1365720]
-
-* Mon Aug 29 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-498.el7]
-- [scsi] aacraid: Check size values after double-fetch from user (Maurizio Lombardi) [1369771] {CVE-2016-6480}
-- [fs] block_dev.c: Remove WARN_ON() when inode writeback fails (Eric Sandeen) [1229014]
-- [fs] ext4: call sync_blockdev() before invalidate_bdev() in put_super() (Eric Sandeen) [1229014]
-- [mm] page_alloc: rename setup_pagelist_highmark() to match naming of pageset_set_batch() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: in zone_pcp_update(), uze zone_pageset_init() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: factor zone_pageset_init() out of setup_zone_pageset() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: relocate comment to be directly above code it refers to (Pankaj Gupta) [1320834]
-- [mm] page_alloc: factor setup_pageset() into pageset_init() and pageset_set_batch() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: when handling percpu_pagelist_fraction, don't unneedly recalulate high (Pankaj Gupta) [1320834]
-- [mm] page_alloc: convert zone_pcp_update() to rely on memory barriers instead of stop_machine() (Pankaj Gupta) [1320834]
-- [mm] page_alloc: protect pcp->batch accesses with ACCESS_ONCE (Pankaj Gupta) [1320834]
-- [mm] page_alloc: insert memory barriers to allow async update of pcp batch and high (Pankaj Gupta) [1320834]
-- [mm] page_alloc: prevent concurrent updaters of pcp ->batch and ->high (Pankaj Gupta) [1320834]
-- [mm] page_alloc: factor out setting of pcp->high and pcp->batch (Pankaj Gupta) [1320834]
-- [hid] i2c-hid: Fix suspend/resume when already runtime suspended (David Arcari) [1361625]
-- [hid] i2c-hid: Only disable irq wake if it was successfully enabled during suspend (David Arcari) [1361625]
-- [hid] i2c-hid: Call device suspend callback before disabling irq (David Arcari) [1361625]
-- [hid] i2c-hid: call the hid driver's suspend and resume callbacks (David Arcari) [1361625]
-- [hid] i2c-hid: add runtime PM support (David Arcari) [1361625]
-- [hid] i2c-hid: disable interrupt on suspend (David Arcari) [1361625]
-- [lib] rhashtable-test: calculate max_entries value by default (Phil Sutter) [1238749]
-- [x86] tsc: Enumerate SKL cpu_khz and tsc_khz via CPUID (Prarit Bhargava) [1366396]
-- [x86] Block HPET on Purley 4S (Prarit Bhargava) [1365997]
-- [base] regmap: Skip read-only registers in regcache_sync() (Jaroslav Kysela) [1365905 1367789]
-- [tools] perf: Add sample_reg_mask to include all perf_regs (Steve Best) [1368934]
-- [netdrv] i40e: Change some init flow for the client (Stefan Assmann) [1369275]
-- [netdrv] mlx5e: Log link state changes (kamal heib) [1367822]
-
-* Fri Aug 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-497.el7]
-- [kernel] ftrace: fix traceoff_on_warning handling on boot command line ("Luis Claudio R. Goncalves") [1367650]
-- [netdrv] ixgbe: fix setup_fc for x550em (Ken Cox) [1364896]
-- [netdrv] cxgb4/cxgb4vf: Fixes regression in perf when tx vlan offload is disabled (Sai Vemuri) [1319437]
-- [netdrv] cxgb4/cxgb4vf: Add link mode mask API to cxgb4 and cxgb4vf (Sai Vemuri) [1365689]
-- [netdrv] cxgb4: Don't assume FW_PORT_CMD reply is always port info msg (Sai Vemuri) [1365689]
-- [netdrv] ethtool: add support for 25G/50G/100G speed modes (Sai Vemuri) [1365689]
-- [netdrv] i40e: use configured RSS key and lookup table in i40e_vsi_config_rss (Stefan Assmann) [1359439]
-- [netdrv] i40e: fix broken i40e_config_rss_aq function (Stefan Assmann) [1359439]
-- [netdrv] i40e: move i40e_vsi_config_rss below i40e_get_rss_aq (Stefan Assmann) [1359439]
-- [netdrv] i40e: Remove redundant memset (Stefan Assmann) [1359439]
-- [netdrv] brcmfmac: restore stopping netdev queue when bus clogs up (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: add new 8265 (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: add new 8260 PCI IDs (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: pcie: fix a race in firmware loading flow (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: pcie: enable interrupts before releasing the NIC's CPU (Stanislaw Gruszka) [1365575]
-- [net] mac80211: fix purging multicast PS buffer queue (Stanislaw Gruszka) [1365575]
-- [net] cfg80211: handle failed skb allocation (Stanislaw Gruszka) [1365575]
-- [net] nl80211: Move ACL parsing later to avoid a possible memory leak (Stanislaw Gruszka) [1365575]
-- [net] cfg80211: fix proto in ieee80211_data_to_8023 for frames without LLC header (Stanislaw Gruszka) [1365575]
-- [net] mac80211: Fix mesh estab_plinks counting in STA removal case (Stanislaw Gruszka) [1365575]
-- [netdrv] ath9k: fix GPIO mask for AR9462 and AR9565 (Stanislaw Gruszka) [1365575]
-- [netdrv] ath10k: fix deadlock while processing rx_in_ord_ind (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: fix a few firmware capability checks (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: set the encryption type of an IGTK key (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: fix potential NULL-dereference in iwl_mvm_reorder() (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: fix RCU splat in TKIP's update_key (Stanislaw Gruszka) [1365575]
-- [netdrv] iwlwifi: mvm: increase scan timeout to 20 seconds (Stanislaw Gruszka) [1365575]
-- [net] cfg80211: remove get/set antenna and tx power warnings (Stanislaw Gruszka) [1365575]
-- [netdrv] ath10k: fix crash related to printing features (Stanislaw Gruszka) [1365575]
-- [netdrv] ath10k: fix deadlock when peer cannot be created (Stanislaw Gruszka) [1365575]
-- [net] mac80211: fix fast_tx header alignment (Stanislaw Gruszka) [1365575]
-- [net] mac80211: mesh: flush mesh paths unconditionally (Stanislaw Gruszka) [1365575]
-- [netdrv] rtlwifi: Fix scheduling while atomic error from commit 49f86ec21c01 (Stanislaw Gruszka) [1365575]
-- [netdrv] brcmfmac: add fallback for devices that do not report per-chain values (Stanislaw Gruszka) [1365575]
-
-* Thu Aug 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-496.el7]
-- [infiniband] rdma/ocrdma: display ocrdma tech preview status (Honggang Li) [1334675]
-- [infiniband] ib/rdma_cm: fix panic when trying access default_roce_mode configfs (kamal heib) [1360276]
-- [infiniband] ib/hfi1: Fix mm_struct use after free (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Add cache evict LRU list (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix memory leak during unexpected shutdown (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unneeded mm argument in remove function (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Consistently call ops->remove outside spinlock (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Use evict mmu rb operation (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Add evict operation to the mmu rb handler (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix TID caching actions (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Make the cache handler own its rb tree root (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Make use of mm consistent (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix user SDMA racy user request claim (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix error condition that needs to clean up (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Release node on insert failure (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Validate SDMA user iovector count (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Validate SDMA user request index (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Use the same capability state for all shared contexts (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Prevent null pointer dereference (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Rename TID mmu_rb_* functions (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unneeded empty check in hfi1_mmu_rb_unregister() (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Restructure hfi1_file_open (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Make iovec loop index easy to understand (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Use "false" not 0 (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unused sub-context parameter (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Consolidate __mmu_rb_remove and hfi1_mmu_rb_remove (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Always expect ops functions (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Add parameter names to callback declarations (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Add parameter names to function declarations (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unused function hfi1_mmu_rb_search (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove unused uctxt->subpid and uctxt->pid (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Fix minor format error (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Remove TWSI references (Alex Estrin) [1360929]
-- [infiniband] ib/hfi1: Use built-in i2c bit-shift bus adapter (Alex Estrin) [1360929]
-
-* Mon Aug 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-495.el7]
-- [fs] ovl: append MAY_READ when diluting write checks (Miklos Szeredi) [1361590]
-- [fs] ovl: dilute permission checks on lower only if not special file (Miklos Szeredi) [1361590]
-- [fs] ovl: fix POSIX ACL setting (Miklos Szeredi) [1361590]
-- [fs] ovl: store real inode pointer in ->i_private (Miklos Szeredi) [1361590]
-- [fs] ovl: simplify permission checking (Miklos Szeredi) [1361590]
-- [fs] ovl: do not require mounter to have MAY_WRITE on lower (Miklos Szeredi) [1361590]
-- [fs] ovl: do operations on underlying file system in mounter's context (Miklos Szeredi) [1361590]
-- [fs] ovl: modify ovl_permission() to do checks on two inodes (Miklos Szeredi) [1361590]
-- [fs] ovl: define ->get_acl() for overlay inodes (Miklos Szeredi) [1361590]
-- [fs] ovl: move some common code in a function (Miklos Szeredi) [1361590]
-- [fs] ovl: store ovl_entry in inode->i_private for all inodes (Miklos Szeredi) [1361590]
-- [fs] ovl: check mounter creds on underlying lookup (Miklos Szeredi) [1361590]
-- [fs] gfs2: Remove dirty buffer warning from gfs2_releasepage (Andreas Gruenbacher) [1222972]
-- [fs] xfs: copy correct inode info in xfs_qm_scall_getqstat (Eric Sandeen) [1359098]
-- [fs] vfs: fix deadlock in file_remove_privs() on overlayfs (Miklos Szeredi) [1362392]
-- [fs] cifs: Use file_dentry() (Miklos Szeredi) [1343388]
-- [fs] btrfs: fix crash/invalid memory access on fsync when using overlayfs (Miklos Szeredi) [1343388]
-- [fs] nfs: use file_dentry() (Miklos Szeredi) [1343388]
-- [fs] vfs: document ->d_real() (Miklos Szeredi) [1343388]
-- [fs] vfs: merge .d_select_inode() into .d_real() (Miklos Szeredi) [1343388]
-- [fs] add file_dentry() (Miklos Szeredi) [1343388]
-- [fs] cifs: correctly to anonymous authentication for the NTLM(v2) authentication (Sachin Prabhu) [1361407]
-- [fs] cifs: correctly to anonymous authentication for the NTLM(v1) authentication (Sachin Prabhu) [1361407]
-- [fs] cifs: correctly to anonymous authentication for the LANMAN authentication (Sachin Prabhu) [1361407]
-- [fs] cifs: correctly to anonymous authentication via NTLMSSP (Sachin Prabhu) [1361407]
-- [scsi] Revert: restart list search after unlock in scsi_remove_target (Ewan Milne) [1369084]
-- [scsi] qla2xxx: Remove double scsi_host_put() from qla2x00_remove_one() (Ewan Milne) [1368149]
-- [netdrv] qlcnic: Update version to 5.3.65 (Harish Patil) [1367116]
-- [netdrv] qlcnic: fix napi budget alteration (Harish Patil) [1367116]
-- [netdrv] qlcnic: fix data structure corruption in async mbx command handling (Harish Patil) [1367116]
-- [netdrv] qlcnic: avoid superfluous assignement (Harish Patil) [1367116]
-- [netdrv] qlcnic: add wmb() call in transmit data path (Harish Patil) [1367116]
-- [netdrv] qlcnic: use the correct ring in qlcnic_83xx_process_rcv_ring_diag() (Harish Patil) [1367116]
-- [netdrv] qlcnic: don't set unused function argument (Harish Patil) [1367116]
-
-* Fri Aug 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-494.el7]
-- [firmware] revert "Be a bit more verbose about direct firmware loading failure" (Stanislaw Gruszka) [1351206]
-- [firmware] revert "Introduce request_firmware_direct()" (Stanislaw Gruszka) [1351206]
-- [x86] revert "microcode: Use request_firmware_direct()" (Stanislaw Gruszka) [1351206]
-- [x86] smpboot: Re-enable init_udelay=0 by default on modern CPUs (Steve Best) [1365413]
-- [x86] smpboot: Fix CPU (Steve Best) [1365413]
-- [x86] smpboot: Fix cpu_init_udelay=10000 corner case boot parameter misbehavior (Steve Best) [1365413]
-- [x86] smpboot: Remove SIPI delays from cpu_up() (Steve Best) [1365413]
-- [x86] smpboot: Fix legacy SMP bootup slow-boot bug (Steve Best) [1365413]
-- [x86] smpboot: Remove 10ms delay from cpu_up() on modern processors (Steve Best) [1365413]
-- [x86] smpboot: Add cmdline "cpu_init_udelay=N" to specify cpu_up() delay (Steve Best) [1365413]
-- [x86] platform/uv: Fix kernel panic running RHEL kdump kernel on UV systems (Frank Ramsay) [1366020]
-- [x86] platform/uv: Fix problem with UV4 BIOS providing incorrect PXM values (Frank Ramsay) [1366020]
-- [x86] platform/uv: Fix bug with iounmap() of the UV4 EFI System Table causing a crash (Frank Ramsay) [1366020]
-- [x86] platform/uv: Fix problem with UV4 Socket IDs not being contiguous (Frank Ramsay) [1366020]
-- [x86] Add support for Kabylake H/S (David Arcari) [1306013]
-- [x86] smp: Fix __max_logical_packages value setup (Frank Ramsay) [1358312]
-- [fs] proc: convert /proc/$PID/schedstat to seq_file interface (Joe Lawrence) [1363745]
-- [fs] revert "userfaultfd: call mark_tech_preview" (Andrea Arcangeli) [1366639]
-- [x86] mm: Improve switch_mm() barrier comments (Rafael Aquini) [1332602] {CVE-2016-2069}
-- [x86] mm: Add barriers and document switch_mm()-vs-flush synchronization (Rafael Aquini) [1332602] {CVE-2016-2069}
-- [mm] dax,kabi: add special handling for ZONE_DEVICE (Jeff Moyer) [1367133 1367257]
-- [md] dm-raid: support raid0 with missing metadata devices (Mike Snitzer) [1364133 1367223]
-- [md] dm raid: enhance attempt_restore_of_faulty_devices() to support more devices (Mike Snitzer) [1364133]
-- [md] dm raid: fix restoring of failed devices regression (Mike Snitzer) [1364133]
-- [md] dm raid: fix frozen recovery regression (Mike Snitzer) [1364133]
-- [md] dm raid: fix use of wrong status char during resynchronization (Mike Snitzer) [1361328 1364133]
-- [md] dm raid: constructor fails on non-zero incompat_features (Mike Snitzer) [1361328 1364133]
-- [md] dm raid: fix processing of max_recovery_rate constructor flag (Mike Snitzer) [1361328 1364133]
-- [md] dm: set DMF_SUSPENDED* _before_ clearing DMF_NOFLUSH_SUSPENDING (Mike Snitzer) [1361328 1364133]
-- [md] dm rq: fix the starting and stopping of blk-mq queues (Mike Snitzer) [1361328 1364133]
-- [md] dm mpath: add locking to multipath_resume and must_push_back (Mike Snitzer) [1361328 1364133]
-- [md] dm flakey: error READ bios during the down_interval (Mike Snitzer) [1361328 1364133]
-- [md] dm: move request-based code out to dm-rq.[hc] (Mike Snitzer) [1361328 1364133]
-- [i2c] designware: fixup return handling of wait_for_completion_timeout (David Arcari) [1365529]
-- [i2c] designware: fix race between subsequent xfers (David Arcari) [1365529]
-- [i2c] designware: prevent signals from aborting I2C transfers (David Arcari) [1365529]
-- [net] openvswitch: do not ignore netdev errors when creating tunnel vports (Thadeu Lima de Souza Cascardo) [1367917]
-- [net] multicast: should not send source list records when have filter mode change (Hangbin Liu) [1322008]
-- [net] netfilter: physdev: add missed blank (Hangbin Liu) [1346175]
-- [net] netfilter: physdev: physdev-is-out should not work with OUTPUT chain (Hangbin Liu) [1346175]
-- [net] sctp: use event->chunk when it's valid (Xin Long) [1278912]
-- [net] openvswitch: fix conntrack netlink event delivery (Lance Richardson) [1321068]
-- [net] netfilter: ebtables: Fix extension lookup with identical name (Sabrina Dubroca) [1317751]
-- [net] sched: fix act_ipt for LOG target (Sabrina Dubroca) [1314398]
-- [net] vti: flush x-netns xfrm cache when vti interface is removed (Lance Richardson) [1332403]
-- [scsi] restart list search after unlock in scsi_remove_target (Ewan Milne) [1365651]
-- [scsi] smartpqi: add config files (Scott Benesh) [1273115]
-- [scsi] smartpqi and aacraid: remove wildcard for series 9 controllers (Scott Benesh) [1273115]
-- [scsi] smartpqi: port to RHEL73 (Scott Benesh) [1273115]
-- [scsi] smartpqi: initial commit of Microsemi smartpqi driver (Scott Benesh) [1273115]
-- [scsi] smartpqi: add smartpqi to drivers/scsi/Makefile (Scott Benesh) [1273115]
-- [scsi] smartpqi: add smartpqi to scsi Kconfig (Scott Benesh) [1273115]
-- [scsi] smartpqi: add smartpqi to MAINTAINERS (Scott Benesh) [1273115]
-- [vfio] pci: Fix NULL pointer oops in error interrupt setup handling (Alex Williamson) [1367906]
-- [misc] cxl: Set psl_fir_cntl to production environment value (Steve Best) [1365970]
-- [netdrv] e1000e: fix PTP on e1000_pch_lpt variants (Jarod Wilson) [1357921]
-- [netdrv] e1000e: factor out systim sanitization (Jarod Wilson) [1357921]
-- [netdrv] bna: remove global bnad_list_mutex (Ivan Vecera) [1359566]
-- [netdrv] bna: change type of bna_id to atomic_t (Ivan Vecera) [1359566]
-- [netdrv] bna: remove useless linked list (Ivan Vecera) [1359566]
-- [netdrv] i40e: check for and deal with non-contiguous TCs (Stefan Assmann) [1354052]
-- [kernel] module: Issue warnings when tainting kernel (Stanislav Kozina) [1366179]
-
-* Tue Aug 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-493.el7]
-- [powerpc] mm: use get_user_pages_unlocked within get_user_pages_fast (Laurent Vivier) [1362454]
-- [net] udp_offload: put sk before returning (Florian Westphal) [1366515]
-- [fs] jbd2: limit number of reserved credits (Lukas Czerner) [1172496]
-- [fs] cachefiles: Fix attempt to read i_blocks after deleting file (David Howells) [1357234]
-- [fs] cachefiles: Fix race between inactivating and culling a cache object (David Howells) [1357234]
-- [fs] svcrdma: Remove superfluous line from rdma_read_chunks() (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Do not add XDR padding to xdr_buf page vector (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Use correct XID in error replies (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Make RDMA_ERROR messages work (Sachin Prabhu) [1353408]
-- [fs] svcrdma: svc_rdma_post_recv() should close connection on error (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Backport merge conflict resolution ab9f2faf (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Find rmsgp more reliably (Sachin Prabhu) [1353408]
-- [fs] svcrdma: Remove unused variable (Sachin Prabhu) [1353408]
-- [md] revert "raid10: make sync_request_write() call bio_copy_data()" (Jes Sorensen) [1354469]
-
-* Thu Aug 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-492.el7]
-- [target] iscsi-target: Rework the configfs of cxgbit (Sai Vemuri) [1211351]
-- [target] iscsi-target: Convert transport drivers to signal rdma_shutdown (Sai Vemuri) [1211351]
-- [target] cxgbit: add files for cxgbit.ko (Sai Vemuri) [1211351]
-- [target] iscsi-target: export symbols (Sai Vemuri) [1211351]
-- [target] iscsi-target: call complete on conn_logout_comp (Sai Vemuri) [1211351]
-- [target] iscsi-target: clear tx_thread_active (Sai Vemuri) [1211351]
-- [target] iscsi-target: use conn_transport->transport_type in text rsp (Sai Vemuri) [1211351]
-- [target] iscsi-target: move iscsit_thread_check_cpumask() (Sai Vemuri) [1211351]
-- [target] iscsi-target: add void (*iscsit_get_r2t_ttt)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: add int (*iscsit_validate_params)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: split iscsi_target_rx_thread() (Sai Vemuri) [1211351]
-- [target] iscsi-target: Fix rx_login_comp hang after login failure (Sai Vemuri) [1211351]
-- [target] iscsi-target: add void (*iscsit_get_rx_pdu)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: add void (*iscsit_release_cmd)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: add int (*iscsit_xmit_pdu)() (Sai Vemuri) [1211351]
-- [target] iscsi-target: Use shash and ahash (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: update Kconfig and Makefile (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: add iSCSI DDP page pod manager (Sai Vemuri) [1211351]
-- [netdrv] cxgb4, iw_cxgb4: move delayed ack macro definitions (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: move VLAN_NONE macro definition (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: update struct cxgb4_lld_info definition (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: add definitions for iSCSI target ULD (Sai Vemuri) [1211351]
-- [netdrv] cxgb4, cxgb4i: move struct cpl_rx_data_ddp definition (Sai Vemuri) [1211351]
-- [netdrv] cxgb4, iw_cxgb4, cxgb4i: remove duplicate definitions (Sai Vemuri) [1211351]
-- [netdrv] cxgb4, iw_cxgb4: move definitions to common header file (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: large receive offload support (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: allocate resources for CXGB4_ULD_ISCSIT (Sai Vemuri) [1211351]
-- [netdrv] cxgb4: add new ULD type CXGB4_ULD_ISCSIT (Sai Vemuri) [1211351]
-
-* Thu Aug 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-491.el7]
-- [net] ipv6: kill sk_dst_lock (Florian Westphal) [1350349]
-- [net] ipv6: remove useless spin_lock/spin_unlock (Florian Westphal) [1350349]
-- [net] macsec: RXSAs don't need to hold a reference on RXSCs (Sabrina Dubroca) [1354332]
-- [net] macsec: fix reference counting on RXSC in macsec_handle_frame (Sabrina Dubroca) [1354332]
-- [net] macsec: fix negative refcnt on parent link (Sabrina Dubroca) [1354232]
-- [net] rtnetlink: fix a memory leak when ->newlink fails (Sabrina Dubroca) [1354232]
-- [net] rtnetlink: correct error path in rtnl_newlink() (Sabrina Dubroca) [1354232]
-- [net] rtnetlink: remove an unneeded test (Sabrina Dubroca) [1354232]
-- [net] tcp: fix ipv4 mapped request socks (Hangbin Liu) [1360685]
-- [net] inet: introduce ireq_family (Hangbin Liu) [1360685]
-- [net] sctp: change to use TCP_CLOSE_WAIT as SCTP_SS_CLOSING (Xin Long) [1359219]
-- [net] sctp: allow receiving msg when TCP-style sk is in CLOSED state (Xin Long) [1358092]
-- [net] sctp: allow delivering notifications after receiving SHUTDOWN (Xin Long) [1251528]
-- [net] sctp: fix the issue sctp requeue auth chunk incorrectly (Xin Long) [1359378]
-- [net] af_packet: don't pass empty blocks for PACKET_V3 (Paolo Abeni) [1360213]
-- [net] packet: Fixed TPACKET V3 to signal poll when block is closed rather than every packet (Paolo Abeni) [1360213]
-- [x86] paravirt: Do not trace _paravirt_ident_*() functions (Steven Rostedt) [1339118]
-- [x86] pci: vmd: Separate MSI and MSI-X vector sharing (Myron Stowe) [1364796]
-- [x86] pci: vmd: Use lock save/restore in interrupt enable path (Myron Stowe) [1364796]
-- [x86] pci: vmd: Select device dma ops to override (Myron Stowe) [1364796]
-- [pci] Remove return values from pcie_port_platform_notify() and relatives (Myron Stowe) [1364796]
-- [pci] acpi: Allow all PCIe services on non-ACPI host bridges (Myron Stowe) [1364796]
-- [x86] pci: vmd: Remove development dev_info(s) (Myron Stowe) [1364796]
-- [x86] pci: vmd: Compose MSI message with correct IRQ index and clear useless data member (Myron Stowe) [1364796]
-- [x86] pci: vmd: Fix teardown_msi_irqs to upstream msi_free (Myron Stowe) [1364796]
-- [x86] pci: vmd: Add irq_mask/irq_unmaks ops (Myron Stowe) [1364796]
-- [x86] kvm: bump MAX_VCPUS to 288 (Radim Krcmar) [1273718]
-- [x86] kvm: add a flag to disable KVM x2apic broadcast quirk (Radim Krcmar) [1273718]
-- [x86] kvm: add KVM_CAP_X2APIC_API (Radim Krcmar) [1273718]
-- [x86] kvm: pass struct kvm to kvm_set_routing_entry (Radim Krcmar) [1273718]
-- [x86] kvm: reset APIC ID when enabling LAPIC (Radim Krcmar) [1273718]
-- [x86] kvm: use hardware-compatible format for APIC ID register (Radim Krcmar) [1273718]
-- [x86] kvm: use generic function for MSI parsing (Radim Krcmar) [1273718]
-- [x86] kvm: dynamic kvm_apic_map (Radim Krcmar) [1273718]
-- [x86] kvm: use physical LAPIC array for logical x2APIC (Radim Krcmar) [1273718]
-- [x86] kvm: add kvm_apic_map_get_dest_lapic (Radim Krcmar) [1273718]
-- [x86] kvm: Unify traced vector format (Radim Krcmar) [1273718]
-- [x86] kvm: cleanup kvm_irq_delivery_to_apic_fast (Radim Krcmar) [1273718]
-- [scsi] ipr: Fix sync scsi scan (Steve Best) [1365824]
-- [virtio] virtio-input: reset device and detach unused during remove (Jason Wang) [1248933]
-- [infiniband] ib/core: Support for CMA multicast join flags (Don Dutile) [1363579]
-- [infiniband] ib/sa: Add cached attribute containing SM information to SA port (Don Dutile) [1363579]
-- [infiniband] ib/sa: agent: Add support for SA agent get ClassPortInfo (Don Dutile) [1363579]
-
-* Thu Aug 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-490.el7]
-- [tools] testing/nvdimm: open code dma_coerce_mask_and_coherent() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: make DIMM DSMs optional (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: fix format interface code byte order (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] testing/nvdimm: replace CONFIG_DMA_CMA dependency with vmalloc() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] libnvdimm, pmem: allow nfit_test to override pmem_direct_access() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: fix acpi_check_dsm() vs zero functions implemented (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn, dax: fix initialization vs autodetect for mode + alignment (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [uapi] nfit: add Microsoft NVDIMM DSM command set to white list (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: fix deletion (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: fix alignment validation (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: autodetect support (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: release ida resources (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: stop requiring a driver ->remove() method (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: record the specified alignment of a dax-device instance (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: reserve space to store labels for device-dax (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, dax: introduce device-dax infrastructure (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: fix ARCH=alpha allmodconfig build failure (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: add sysfs dimm 'family' and 'dsm_mask' attributes (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] testing/nvdimm: ND_CMD_CALL support (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: disable vendor specific commands (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: fix translation of command status results (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: fix memmap reservation sizing (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: export subsystem ids as attributes (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: fix format interface code byte order per ACPI6.1 (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [uapi] nfit, libnvdimm: limited/whitelisted dimm command marshaling mechanism (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, libnvdimm: clarify "commands" vs "_DSMs" (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] libnvdimm: increase max envelope size for ioctl (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: Add sysfs "id" for NVDIMM ID (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] acpica: acpi 6.1: Update NFIT table for additional new fields (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: Update nfit driver to comply with ACPI 6.1 (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: cleanup nvdimm_namespace_common_probe(), kill 'host' (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: kill ->pmem_queue and ->pmem_disk (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem, pfn: move pfn setup to the core (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] libnvdimm, pmem, pfn: make pmem_rw_bytes generic and refactor pfn setup (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: clean up resource print / request (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: use devm_add_action to release bdev resources (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, blk: move i/o infrastructure to nd_namespace_blk (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, blk: quiet i/o error reporting (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: use ->queuedata for driver private data (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, blk: use ->queuedata for driver private data (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, blk: use devm_add_action to release bdev resources (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, btt: add btt startup debug (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, btt, convert nd_btt_probe() to devm (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn, convert nd_pfn_probe() to devm (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: kill pmem->ndns (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: clarify the write+clear_poison+write flow (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] widen acpi_evaluate_dsm() revision and function-index arguments (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] libnvdimm, nfit: Use ACPI_SIG_NFIT instead of hard coded string (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] libnvdimm, test: add mock SMART data payload (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] libnvdimm, nfit: report multiple interface codes per-dimm (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: fix nvdimm_namespace_add_poison() vs section alignment (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: fix uuid validation (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: fix smart data retrieval (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [mm] ZONE_DEVICE depends on SPARSEMEM_VMEMMAP (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [mm] exclude ZONE_DEVICE from GFP_ZONE_TABLE (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] libnvdimm, pmem: clear poison on write (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: fix kmap_atomic() leak in error path (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] btt: don't allocate unused major device number (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] blk: don't allocate unused major device number (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] pmem: don't allocate unused major device number (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: fix ia64 build, use PHYS_PFN (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, libnvdimm: clear poison command support (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] testing/nvdimm: expand ars unit testing (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, tools/testing/nvdimm: test multiple control regions per-dimm (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pfn: 'resource'-address and 'size' attributes for pfn devices (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: adjust for section collisions with 'System RAM' (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] mm: add PHYS_PFN, use it in __phys_to_pfn() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [mm] fix type cast in __pfn_to_phys() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm, pmem: fix 'pfn' support for section-misaligned namespaces (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: Fix security issue with DSM IOCTL (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: Clean-up access mode check (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] nfit: disable userspace initiated ars during scrub (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [acpi] nfit: scrub and register regions in a workqueue (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] nfit, libnvdimm: async region scrub workqueue (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, tools/testing/nvdimm: unify common init for acpi_nfit_desc (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [kernel] libnvdimm: async notification support (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] libnvdimm: protect nvdimm_{bus|namespace}_add_poison() with nvdimm_bus_lock() (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] libnvdimm, nfit: centralize command status translation (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [tools] nfit, tools/testing/nvdimm: add format interface code definitions (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-- [nvdimm] arm: 8522/1:  nvdimm: ensure no negative value gets returned on positive match (Jeff Moyer) [1271957 1278621 1343736 1349587 1349702 1353614 1355792]
-
-* Mon Aug 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-489.el7]
-- [infiniband] ib/mlx4: Add diagnostic hardware counters (kamal heib) [1360924]
-- [netdrv] mlx4: Query performance and diagnostics counters (kamal heib) [1360924]
-- [netdrv] mlx4: Add diagnostic counters capability bit (kamal heib) [1360924]
-- [netdrv] bnxt_en: Add new NPAR and dual media device IDs (John Linville) [1360126]
-- [scsi] ipr: Fix error return code in ipr_probe_ioa() (Steve Best) [1364138]
-- [scsi] ipr: Wait to do async scan until scsi host is initialized (Steve Best) [1364138]
-- [scsi] ipr: Increase MSIX vectors number (Steve Best) [1364138]
-- [scsi] ipr: Add new CCIN for new adapters support (Steve Best) [1364138]
-- [acpi] Change NFIT driver to insert new resource (Jeff Moyer) [1342696]
-- [kernel] resource: Export insert_resource and remove_resource (Jeff Moyer) [1342696]
-- [kernel] resource: Add remove_resource interface (Jeff Moyer) [1342696]
-- [kernel] resource: Change __request_region to inherit from immediate parent (Jeff Moyer) [1342696]
-- [acpi] apei/einj: Allow memory error injection to NVDIMM (Jeff Moyer) [1342696]
-- [kernel] resource: Add region_intersects_pmem() (Jeff Moyer) [1342696]
-- [kernel] resource: Add @flags to region_intersects() (Jeff Moyer) [1342696]
-- [acpi] apei: Cleanup alignment-aware accesses (Jeff Moyer) [1342696]
-- [acpi] apei, einj: Changes to the ACPI/APEI/EINJ debugfs interface (Jeff Moyer) [1342696]
-- [acpi] apei: Add parameter check before error injection (Jeff Moyer) [1342696]
-- [acpi] apei, einj: Fix error return code in einj_init() (Jeff Moyer) [1342696]
-
-* Fri Aug 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-488.el7]
-- [block] revert "remove struct bio_batch" (Mike Snitzer) [1361484]
-- [block] revert "add __blkdev_issue_discard" (Mike Snitzer) [1361484]
-- [block] revert "reinstate early return of -EOPNOTSUPP from blkdev_issue_discard" (Mike Snitzer) [1361484]
-- [block] revert "missing bio_put following submit_bio_wait" (Mike Snitzer) [1361484]
-- [md] revert "dm thin: use __blkdev_issue_discard for async discard support" (Mike Snitzer) [1361484]
-- [md] revert "dm thin: unroll issue_discard() to create longer discard bio chains" (Mike Snitzer) [1361484]
-- [nvme] avoid crashes when node 0 is memoryless node (David Milburn) [1350682]
-- [mm] oom: ensure memoryless node zonelist always includes zones (David Milburn) [1350682]
-- [mm] hmm: select mmu-notifier (Andrew Jones) [1230959]
-- [rtc] opal: Enable alarms only when opal supports tpo (Steve Best) [1361858]
-- [x86] pci: vmd: Attach VMD resources to parent domain's resource tree (Myron Stowe) [1249224]
-- [x86] pci: vmd: Set bus resource start to 0 (Myron Stowe) [1249224]
-- [x86] pci: vmd: Document code for maintainability (Myron Stowe) [1249224]
-- [x86] pci: Add driver for Intel Volume Management Device (Myron Stowe) [1249224]
-- [x86] PCI bus specific MSI operations (Myron Stowe) [1249224]
-- [pci] aer: Use 32 bit PCI domain numbers (Myron Stowe) [1249224]
-- [x86] perf: Fix copy_from_user_nmi() return if range is not ok (Jiri Olsa) [1361670]
-- [x86] perf: Fix arch_perf_out_copy_user default (Jiri Olsa) [1361670]
-- [x86] perf: Further optimize copy_from_user_nmi() (Jiri Olsa) [1361670]
-- [x86] perf: Change offcore response masks for Knights Landing (Jiri Olsa) [1336681]
-- [gpio] use kzalloc to allocate gpio_device (Steve Best) [1358979]
-- [gpio] gpiolib: rewrite gpiodev_add_to_list (Prarit Bhargava) [1358979]
-- [gpio] reflect base and ngpio into gpio_device (Prarit Bhargava) [1358979]
-- [gpio] make the gpiochip a real device (Prarit Bhargava) [1358979]
-- [gpio] gpiolib: fix chip order in gpio list (Prarit Bhargava) [1358979]
-- [gpio] fix warning about iterator (Prarit Bhargava) [1358979]
-- [gpio] gpiolib: improve overlap check of range of gpio (Prarit Bhargava) [1358979]
-- [gpio] sysfs: rename gpiochip registration functions (Prarit Bhargava) [1358979]
-- [gpio] remove gpio_descs global array (Prarit Bhargava) [1358979]
-- [netdrv] be2net: perform temperature query in adapter regardless of its interface state (Gustavo Duarte) [1361226]
-- [crypto] qat - make qat_asym_algs.o depend on asn1 headers (Herbert Xu) [1351563]
-- [powerpc] kvm: book3s_hv: Save/restore TM state in H_CEDE (David Gibson) [1349244] {CVE-2016-5412}
-- [powerpc] kvm: book3s_hv: Pull out TM state save/restore into separate procedures (David Gibson) [1349244] {CVE-2016-5412}
-- [powerpc] pseries: Fix PCI config address for DDW (Gustavo Duarte) [1357809]
-- [powerpc] iommu: Remove the dependency on EEH struct in DDW mechanism (Gustavo Duarte) [1357809]
-- [powerpc] tm: Always reclaim in start_thread() for exec() class syscalls (David Gibson) [1349238] {CVE-2016-5828}
-
-* Fri Aug 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-487.el7]
-- [infiniband] i40iw: Enable remote access rights for stag allocation (Stefan Assmann) [1283405]
-- [infiniband] i40iw: do not print unitialized variables in error message (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Enable level-1 PBL for fast memory registration (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Return correct max_fast_reg_page_list_len (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Correct status check on i40iw_get_pble (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Correct CQ arming (Stefan Assmann) [1283405]
-- [infiniband] ib/core: Make device counter infrastructure dynamic (Stefan Assmann) [1283405]
-- [infiniband] i40iw: pass hw_stats by reference rather than by value (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Remove unnecessary synchronize_irq() before free_irq() (Stefan Assmann) [1283405]
-- [infiniband] i40iw: constify i40iw_vf_cqp_ops structure (Stefan Assmann) [1283405]
-- [infiniband] ib/core: Enhance ib_map_mr_sg() (Stefan Assmann) [1283405]
-- [infiniband] ib/core: Add passing an offset into the SG to ib_map_mr_sg (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for removing quad hash entries (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for checking if the QP is destroyed (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for using one sge for RDMA READ (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for the size of kernel mode SQ (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix for a NOP WQE size (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Correct STag mask to min of 14 bits (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fixes for WQE alignment (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix SD calculation for initial HMC creation (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix endian issues and warnings (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Add base memory management extensions (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Initialize max enabled vfs variable (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Correct return code check in add_pble_pool (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Add virtual channel message queue (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Remove unused code and fix warning (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Populate vendor_id and vendor_part_id fields (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Set vendor_err only if there is an actual error (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Add qp table lock around AE processing (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Do not set self-referencing pointer to NULL after free (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Correct max message size in query port (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix refused connections (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Correct QP size calculation (Stefan Assmann) [1283405]
-- [infiniband] rdma/i40iw: Fix overflow of region length (Stefan Assmann) [1283405]
-- [infiniband] i40iw: avoid potential uninitialized variable use (Stefan Assmann) [1283405]
-- [infiniband] i40iw: mark as tech-preview (Stefan Assmann) [1283405]
-- [infiniband] i40iw: fix for missing commit 2f8e2c877784a0b23f02b41550170a24e14f5c95 (Stefan Assmann) [1283405]
-- [infiniband] i40iw: changes for build of i40iw module (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Replace the obsolete crypto hash interface with shash (Stefan Assmann) [1283405]
-- [infiniband] i40iw: Kconfig and Makefile for iwarp module (Stefan Assmann) [1283405]
-- [infiniband] i40iw: virtual channel handling files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: user kernel shared files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add X722 register file (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add hardware related header files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add file to handle cqp calls (Stefan Assmann) [1283405]
-- [infiniband] i40iw: use shared code for port mapper (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add files for iwarp interface (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add hw and utils files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add hmc resource files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add pble resource files (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add puda code (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add connection management code (Stefan Assmann) [1283405]
-- [infiniband] i40iw: add main, hdr, status (Stefan Assmann) [1283405]
-- [uapi] i40iw: add entry in rdma_netlink (Stefan Assmann) [1283405]
-
-* Fri Aug 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-486.el7]
-- [mm] vfs: prevent buffered I/O reads to DAX inodes (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] xfs, ext4, splice: avoid the page cache for DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: check return value of dax_radix_entry() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm: fix mixed zone detection in devm_memremap_pages (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [lib] list: kill list_force_poison() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: Continue init even if ARS commands are unimplemented (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2, ext4: fix issue with missing journal entry in ext4_dax_mkwrite() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: move writeback calls into the filesystems (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] dax: give DAX clearing code correct bdev (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: online defrag not supported with DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2, ext4: only set S_DAX for regular inodes (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] block: disable block device DAX by default (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] use 'u64' for pfn flags (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap: Fix error value when memremap failed (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [uapi] nfit: update address range scrub commands to the acpi 6.1 format (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] libnvdimm, tools/testing/nvdimm: fix 'ars_status' output buffer sizing (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: fix multi-interface dimm handling, acpi6.1 compatibility (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap_release(): fix memremap'd addr handling (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm, x86: fix pte_page() crash in gup_pte_range() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm: Fix vmalloc_fault() to handle large pages properly (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] uaccess/64: Handle the caching of 4-byte nocache copies properly in __copy_user_nocache() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] uaccess/64: Make the __copy_user_nocache() assembly code more readable (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm: fix pfn_t vs highmem (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: dirty inode only if required (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [lib] radix-tree: fix race in gang lookup (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] phys_to_pfn_t: use phys_addr_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] fix pfn_t to page conversion in vm_insert_mixed (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: use DAX for partition table reads (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] fs, block: force direct-I/O for dax-enabled block devices (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap_pages: fix vmem_altmap lifetime + alignment handling (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: fix restoring memmap location (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm: fix mode determination for e820 devices (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: never rely on bh.b_dev being set by get_block() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: call dax_pfn_mkwrite() for DAX fsync/msync (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: call dax_pfn_mkwrite() for DAX fsync/msync (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2: call dax_pfn_mkwrite() for DAX fsync/msync (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: add support for fsync/sync (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] add find_get_entries_tag() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: support dirty DAX entries in radix tree (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] pmem: add wb_cache_pmem() to the PMEM API (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] x86: get_user_pages() for dax mappings (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [lib] mm, dax, pmem: introduce {get|put}_dev_pagemap() for dax-gup (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pmem: move request_queue allocation earlier in probe (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: convert vmf_insert_pfn_pmd() to pfn_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax, gpu: convert vm_insert_mixed to pfn_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm: introduce _PAGE_DEVMAP (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] hugetlb: fix compile error on tile (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn, pmem: allocate memmap array in persistent memory (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] x86, mm: introduce vmem_altmap to augment vmemmap_populate() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] move __phys_to_pfn and __pfn_to_phys to asm/generic/memory_model.h (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm: introduce find_dev_pagemap() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm: skip memory block registration for ZONE_DEVICE (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] mm, dax, pmem: introduce pfn_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [virt] kvm: rename pfn_t to kvm_pfn_t (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] dax: fix livelock, allow dax pmd mappings to become writeable (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] dax: fix lifetime of in-kernel dax mappings with dax_map_atomic() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: guarantee page aligned results from bdev_direct_access() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: increase granularity of dax_clear_blocks() operations (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] pmem, dax: clean up clear_pmem() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: kill disk_{check|set|clear|alloc}_badblocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pmem: nvdimm_read_bytes() badblocks support (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] pmem: fail io-requests to known bad blocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm: convert to statically allocated badblocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm: don't fail init for full badblocks list (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block, badblocks: introduce devm_init_badblocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [block] clarify badblocks lifetime (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] badblocks: rename badblocks_free to badblocks_exit (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pmem: move definition of nvdimm_namespace_add_poison to nd.h (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] libnvdimm: Add a poison list and export badblocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] nfit_test: Enable DSMs for all test NFITs (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [md] convert to use the generic badblocks code (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: Add badblock management for gendisks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] badblocks: Add core badblock management code (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [block] fix del_gendisk() vs blkdev_ioctl crash (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] block: introduce bdev_file_inode() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm: fix namespace object confusion in is_uuid_busy() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm/pat: Change free_memtype() to support shrinking case (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [mm] x86/mm/pat: Add untrack_pfn_moved for mremap (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: introduce per-inode DAX enablement (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: fix recursive splice read locking with DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: Don't use reserved blocks for data blocks with DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: move 'memory mode' indication to sysfs (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] testing/libnvdimm: cleanup mock resource lookup (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: fix nd_pfn_validate() return value handling (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] libnvdimm, pfn: enable pfn sysfs interface unit testing (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: fix pfn seed creation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: add parent uuid validation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: add 'align' attribute, default to HPAGE_SIZE (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: clean up pfn create parameters (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pfn: kill ND_PFN_ALIGN (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] do not show pfn_seed for non pmem regions (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] improve diagnosibility of namespaces (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: use pre-zeroed blocks for DAX page faults (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [trace] ext4: implement allocation of pre-zeroed blocks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: provide ext4_issue_zeroout() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [trace] ext4: get rid of EXT4_GET_BLOCKS_NO_LOCK flag (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: fix races of writeback with punch hole and zero range (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: fix races between buffered IO and collapse / insert range (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: move unlocked dio protection from ext4_alloc_file_blocks() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: fix races between page faults and hole punching (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext4: wait for existing dio workers in ext4_alloc_file_blocks() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: acpi_nfit_notify(): Do not leave device locked (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] nfit: Adjust for different _FIT and NFIT headers (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: Fix the check for a successful NFIT merge (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: Account for table size length variation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] libnvdimm, e820: skip module loading when no type-12 (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: protect rw_page against device teardown (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: disable pmd mappings (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2, ext4: warn when mounting with dax enabled (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] dax: fix __dax_pmd_fault crash (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [documentation] libnvdimm: documentation clarifications (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, pmem: fix size trim in pmem_direct_access() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [nvdimm] libnvdimm, e820: fix numa node for e820-type-12 pmem ranges (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] testing/nvdimm, acpica: fix flag rename build breakage (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] coredump: add DAX filtering for FDPIC ELF coredumps (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] coredump: add DAX filtering for ELF coredumps (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: xfs_filemap_pmd_fault treats read faults as write faults (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: add ->pfn_mkwrite support for DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: DAX does not use IO completion callbacks (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: Don't use unwritten extents for DAX (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: introduce BMAPI_ZERO for allocating zeroed extents (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] xfs: fix inode size update overflow in xfs_map_direct() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [tools] acpi: nfit: Add support for hot-add (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] nfit: in acpi_nfit_init, break on a 0-length table (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [acpi] acpica: Update NFIT table to rename a flags field (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] block: blk_flush_integrity() for bio-based drivers (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: generic request_queue reference counting (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] block: use an atomic_t for mq_freeze_depth (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [fs] ext2: Add locking for DAX faults (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] pmem, memremap: convert to numa aware allocations (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap_pages: use numa_mem_id (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm: make allocations numa aware by default (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memremap: convert to return ERR_PTR (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] devm_memunmap: use devres_release() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [kernel] pmem: kill memremap_pmem() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [x86] mm: quiet arch_add_memory() (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [edac] Don't allow empty DIMM labels (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [edac] Fix sysfs dimm_label store operation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-- [edac] Fix sysfs dimm_label show operation (Jeff Moyer) [1346083 1346084 1346445 1346449 1346472 1347091 1359806]
-
-* Thu Aug 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-485.el7]
-- [mm] percpu: fix synchronization between synchronous map extension and chunk destruction (Joe Lawrence) [1344569] {CVE-2016-4794}
-- [mm] percpu: fix synchronization between chunk->map_extend_work and chunk destruction (Joe Lawrence) [1344569] {CVE-2016-4794}
-- [mm] percpu: fix locking regression in the failure path of pcpu_alloc() (Joe Lawrence) [1344569] {CVE-2016-4794}
-- [s390] qeth: delete napi struct when removing a qeth device (Hendrik Brueckner) [1357030]
-- [s390] kprobes: Fix conflict between jprobes and function graph tracing (Jiri Olsa) [1347620]
-- [hid] hiddev: validate num_values for HIDIOCGUSAGES, HIDIOCSUSAGES commands (Yauheni Kaliuta) [1360029] {CVE-2016-5829}
-- [scsi] cxlflash: Verify problem state area is mapped before notifying shutdown (Steve Best) [1361359]
-- [scsi] cxlflash: Shutdown notify support for CXL Flash cards (Steve Best) [1361359]
-- [scsi] cxlflash: Add device dependent flags (Steve Best) [1361359]
-- [scsi] cxlflash: Fix to drain operations from previous reset (Steve Best) [1361359]
-- [scsi] cxl: Make vPHB device node match adapter's (Steve Best) [1361359]
-- [scsi] cxlflash: Fix to resolve dead-lock during EEH recovery (Steve Best) [1361359]
-- [scsi] fix race between simultaneous decrements of ->host_failed (Gustavo Duarte) [1357946]
-- [input] Enable VMMOUSE support (Lauro Ramos Venancio) [1331578]
-- [input] vmmouse - remove port reservation (Lauro Ramos Venancio) [1331578]
-- [input] vmmouse - fix absolute device registration (Lauro Ramos Venancio) [1331578]
-- [input] add vmmouse driver (Lauro Ramos Venancio) [1331578]
-- [kernel] modules: Add kernel parameter to blacklist modules (Prarit Bhargava) [1361585]
-- [kernel] rcu: Fix attempt to avoid unsolicited offloading of callbacks (Luiz Capitulino) [1356726]
-- [kernel] rcu: Fix CONFIG_RCU_NOCB_CPU_ALL panic on machines with sparse CPU mask (Luiz Capitulino) [1356726]
-- [kernel] rcu: Convert rcutree_plugin.h printk calls (Luiz Capitulino) [1356726]
-- [kernel] watchdog, sysctl: fix pointer to watch_cpumask in kernel_table (Jerome Marchand) [1360787]
-- [netdrv] ibmvnic: Fix passive VNIC server login process (Gustavo Duarte) [1357915]
-- [netdrv] ibmvnic: simplify and improve driver probe function (Gustavo Duarte) [1357915]
-- [netdrv] ibmvnic: dispose irq mappings (Gustavo Duarte) [1357915]
-- [netdrv] ibmvnic: properly start and stop tx queues (Gustavo Duarte) [1357915]
-- [netdrv] ibmvnic: fix to use list_for_each_safe() when delete items (Gustavo Duarte) [1357915]
-
-* Wed Aug 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-484.el7]
-- [net] geneve: fixup netdevice_notifier registration (Sabrina Dubroca) [1353790]
-- [wireless] convert to use netdev_notifier_info (Sabrina Dubroca) [1353790]
-- [netdrv] hyperv: convert to use netdev_notifier_info (Sabrina Dubroca) [1353790]
-- [net] netfilter: nf_nat: on-stack struct netdev_notifier_info (Sabrina Dubroca) [1353790]
-- [net] ipv4: ip_check_defrag should not assume that skb_network_offset is zero (Paolo Abeni) [1354448]
-- [net] ipv4: ip_check_defrag should correctly check return value of skb_copy_bits (Paolo Abeni) [1354448]
-- [net] macsec: validate ICV length on link creation (Davide Caratti) [1360273]
-- [net] macsec: fix error codes when a SA is created (Davide Caratti) [1360273]
-- [net] macsec: limit ICV length to 16 octets (Davide Caratti) [1360273]
-- [net] sctp: also point GSO head_skb to the sk when it's available (Marcelo Leitner) [1278912]
-- [net] sctp: fix GSO for IPv6 (Marcelo Leitner) [1278912]
-- [net] sctp: support ipv6 nonlocal bind (Xin Long) [1355769]
-- [net] sctp: use inet_recvmsg to support sctp RFS well (Marcelo Leitner) [981353]
-- [net] netfilter: x_tables: speed up jump target validation (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] pktgen: fix null ptr deref in skb allocation (Vitaly Kuznetsov) [1356443]
-- [net] pktgen: Observe needed_headroom of the device (Vitaly Kuznetsov) [1356443]
-- [net] pktgen: ipv6: numa: consolidate skb allocation to pktgen_alloc_skb (Vitaly Kuznetsov) [1356443]
-- [net] xfrm: Fix crash observed during device unregistration and decryption (Florian Westphal) [1243602]
-- [net] xfrm: Reset encapsulation field of the skb before transformation (Florian Westphal) [1243602]
-- [net] xfrm: dst_entries_init() per-net dst_ops (Florian Westphal) [1243602]
-- [net] xfrm: Increment statistic counter on inner mode error (Florian Westphal) [1243602]
-- [net] xfrm4: Reload skb header pointers after calling pskb_may_pull (Florian Westphal) [1243602]
-- [net] xfrm4: Fix header checks in _decode_session4 (Florian Westphal) [1243602]
-- [net] xfrm: Fix unaligned access to stats in copy_to_user_state() (Florian Westphal) [1243602]
-- [net] xfrm: Fix state threshold configuration from userspace (Florian Westphal) [1243602]
-- [net] xfrm: fix race between netns cleanup and state expire notification (Florian Westphal) [1243602]
-- [net] xfrm: Fix unlink race when policies are deleted (Florian Westphal) [1243602]
-- [net] xfrm: Clone states properly on migration (Florian Westphal) [1243602]
-- [net] xfrm: Take xfrm_state_lock in xfrm_migrate_state_find (Florian Westphal) [1243602]
-- [net] xfrm: avoid creating temporary SA when there are no listeners (Florian Westphal) [1243602]
-- [net] xfrm: Correct xfrm_state_lock usage in xfrm_stateonly_find (Florian Westphal) [1243602]
-- [net] xfrm: export verify_userspi_info for pkfey and netlink interface (Florian Westphal) [1243602]
-- [net] Documentation: Document xfrm4_gc_thresh and xfrm6_gc_thresh (Florian Westphal) [1243602]
-- [net] xfrm: Increase the garbage collector threshold (Florian Westphal) [1243602]
-- [net] xfrm: prevent ipcomp scratch buffer race condition (Florian Westphal) [1243602]
-- [net] xfrm: Force SA to be lookup again if SA in acquire state (Florian Westphal) [1243602]
-- [net] xfrm: Fix replay size checking on async events (Florian Westphal) [1243602]
-- [net] xfrm: Make xfrm_state timer monotonic (Florian Westphal) [1243602]
-- [net] xfrm: Delete hold_timer when destroy policy (Florian Westphal) [1243602]
-
-* Tue Aug 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-483.el7]
-- [fs] nfsv4: Don't perform cached access checks before we've OPENed the file (Steve Dickson) [1359944]
-- [fs] ovl: fix copy-up warning (Miklos Szeredi) [1354293]
-- [fs] nfsv4: Allow retry of operations that used a returned delegation stateid (Steve Dickson) [1358308]
-- [fs] nfsv4: Label stateids with the type (Steve Dickson) [1358308]
-- [fs] sunrpc: Ensure get_rpccred() and put_rpccred() can take NULL arguments (Steve Dickson) [1358308]
-- [fs] nfsv4: Use the right stateid for delegations in setattr, read and write (Steve Dickson) [1358308]
-- [fs] nfs: have flexfiles mirror keep creds for both ro and rw layouts (Benjamin Coddington) [1358386]
-- [fs] nfs: get a reference to the credential in ff_layout_alloc_lseg (Benjamin Coddington) [1358386]
-- [fs] nfs: have ff_layout_get_ds_cred take a reference to the cred (Benjamin Coddington) [1358386]
-- [fs] nfs: don't call nfs4_ff_layout_prepare_ds from ff_layout_get_ds_cred (Benjamin Coddington) [1358386]
-- [fs] sunrpc: add a get_rpccred_rcu inline (Benjamin Coddington) [1358386]
-- [fs] sunrpc: add rpc_lookup_generic_cred (Benjamin Coddington) [1358386]
-- [fs] sunrpc: plumb gfp_t parm into crcreate operation (Benjamin Coddington) [1358386]
-- [fs] nfs4: nfs4_ff_layout_prepare_ds should return NULL if connection failed (Benjamin Coddington) [1358386]
-- [fs] pnfs: Don't prevent flexfiles client from retrying LAYOUTGET (Benjamin Coddington) [1358386]
-- [fs] pnfs: Modify pnfs_update_layout tracepoints to use layout stateid (Benjamin Coddington) [1358386]
-- [fs] nfs: add new tracepoint for pnfs_update_layout (Benjamin Coddington) [1358386]
-- [fs] Adding stateid information to tracepoints (Benjamin Coddington) [1358386]
-- [fs] xfs: track and serialize in-flight async buffers against unmount (Brian Foster) [1347744]
-- [fs] xfs: exclude never-released buffers from buftarg I/O accounting (Brian Foster) [1347744]
-- [fs] xfs: fix duplicate buffer flag bits (Brian Foster) [1347744 1358817]
-
-* Mon Aug 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-482.el7]
-- [iscsi-target] Fix iser explicit logout TX kthread leak (Andy Grover) [1278224]
-- [iscsi-target] Fix iscsit_start_kthreads failure OOPs (Andy Grover) [1278224]
-- [iscsi-target] Fix use-after-free during TPG session shutdown (Andy Grover) [1278224]
-- [bnx2fc] replace printk() with BNX2FC_IO_DBG() (Maurizio Lombardi) [1360305]
-- [fs] cifs: dynamic allocation of ntlmssp blob (Jerome Marchand) [1358676]
-- [fs] cifs: use CIFS_MAX_DOMAINNAME_LEN when converting the domain name (Jerome Marchand) [1358676]
-- [mm] hmm: adjust HMM backport to work properly with rhel7 mm context (Jerome Glisse) [1230959]
-- [mm] hmm: only allow use of HMM through a kernel parameter (Jerome Glisse) [1230959]
-- [mm] hmm: mirror process address space on device with HMM helpers (Jerome Glisse) [1230959]
-- [mm] hmm: migration through heterogeneous memory management (Jerome Glisse) [1230959]
-- [mm] hmm: helper to walk CPU page table in parallel with generic table (Jerome Glisse) [1230959]
-- [mm] hmm: heterogeneous memory management support (Jerome Glisse) [1230959]
-- [mm] gpt: generic page table structure (Jerome Glisse) [1230959]
-- [x86] device: export device_rh_alloc() with EXPORT_SYMBOL (Vitaly Kuznetsov) [1360400]
-- [s390] dasd: fix incorrect locking order for LCU device add/remove (Hendrik Brueckner) [1330095]
-- [acpi] battery: Accelerate battery resume callback (Jeremy McNicoll) [1270522]
-- [virtio] virtio_balloon: export 'available' memory to balloon statistics (Luiz Capitulino) [1351660]
-- [mm] page_alloc: calculate 'available' memory in a separate function (Luiz Capitulino) [1351660]
-- [fs] proc: meminfo: estimate available memory more conservatively (Luiz Capitulino) [1351660]
-- [fs] proc: meminfo: meminfo_proc_show() fix typo in comment (Luiz Capitulino) [1351660]
-- [kernel] sched/core: Fix sched_rt_global_validate (Luiz Capitulino) [1357928]
-- [netdrv] hv_netvsc: Fix VF register on bonding devices (Vitaly Kuznetsov) [1357850]
-- [netdrv] hv_netvsc: Fix VF register on vlan devices (Vitaly Kuznetsov) [1357850]
-- [security] keys: Don't leak a key reference if request_key() tries to use a revoked keyring (David Howells) [1282584]
-- [infiniband] hfi1: Fix sleep inside atomic issue in init_asic_data (Alex Estrin) [1355901]
-
-* Wed Jul 27 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-481.el7]
-- [fs] gfs2: Extended attribute readahead optimization (Andreas Gruenbacher) [1256539]
-- [fs] gfs2: Extended attribute readahead (Andreas Gruenbacher) [1256539]
-- [fs] gfs2: Add meta readahead field in directory entries (Andreas Gruenbacher) [1256539]
-- [fs] lift file_*_write out of do_splice_direct() (Miklos Szeredi) [1359094]
-- [fs] lift file_*_write out of do_splice_from() (Miklos Szeredi) [1359094]
-- [fs] ovl: verify upper dentry in ovl_remove_and_whiteout() (Miklos Szeredi) [1359829]
-- [fs] ovl: Copy up underlying inode's ->i_mode to overlay inode (Miklos Szeredi) [1351861]
-- [fs] ovl: handle ATTR_KILL* (Miklos Szeredi) [1351861]
-- [fs] ovl: get_write_access() in truncate (Miklos Szeredi) [1359786]
-- [fs] ovl: xattr filter fix (Miklos Szeredi) [1359807]
-- [fs] libceph: use s instead of pE in seq_printf() in dump_target() (Ilya Dryomov) [1360323]
-- [fs] libceph: apply new_state before new_up_client on incrementals (Ilya Dryomov) [1359746]
-- [fs] cifs: Fix SMB2+ interim response processing for read requests (Sachin Prabhu) [1305657]
-- [fs] make nfs_atomic_open() call d_drop() on all ->open_context() errors (Benjamin Coddington) [1342305]
-- [fs] gfs2: Fix gfs2_replay_incr_blk for multiple journal sizes (Robert S Peterson) [1358926]
-- [fs] xfs: don't reset b_retries to 0 on every failure (Carlos Maiolino) [1357663]
-- [fs] xfs: remove extraneous buffer flag changes (Carlos Maiolino) [1357663]
-- [fs] xfs: fix xfs_error_get_cfg for negative errnos (Carlos Maiolino) [1357663]
-- [fs] userfaultfd: don't pin the user memory in userfaultfd_file_create() (Andrea Arcangeli) [1358957]
-- [mm] ksm: fix conflict between mmput and scan_get_next_rmap_item (Andrea Arcangeli) [1358958]
-- [mm] meminit: ensure node is online before checking whether pages are uninitialised (Koki Sanagi) [1359649]
-- [mm] meminit: always return a valid node from early_pfn_to_nid (Koki Sanagi) [1359649]
-- [mm] shm: add memfd.h to UAPI export list (Yauheni Kaliuta) [1282530 1354407]
-- [mm] slub: do not drop slab_mutex for sysfs_slab_add (Larry Woodman) [1282934]
-- [hv] don't leak memory in vmbus_establish_gpadl() (Vitaly Kuznetsov) [1341065]
-- [hv] get rid of redundant messagecount in create_gpadl_header() (Vitaly Kuznetsov) [1341065]
-- [hv] avoid vfree() on crash (Vitaly Kuznetsov) [1337074]
-- [x86] hyperv: Avoid reporting bogus NMI status for Gen2 instances (Vitaly Kuznetsov) [1337074]
-- [x86] Use pte_none() to test for empty PTE (Larry Woodman) [1347159]
-- [x86] Disallow running with 32-bit PTEs to work around erratum (Larry Woodman) [1347159]
-- [x86] Ignore A/D bits in pte/pmd/pud_none() (Larry Woodman) [1347159]
-- [x86] Move swap offset/type up in PTE to work around erratum (Larry Woodman) [1347159]
-- [pci] hyper-v: Fix crash in interrupt cleanup path (Cathy Avery) [1348475]
-- [i2c] designware: Add runtime PM hooks (David Arcari) [1358747]
-- [s390] fix test_fp_ctl inline assembly contraints (Hendrik Brueckner) [1356199]
-- [s390] qeth: switch to napi_gro_receive (Hendrik Brueckner) [1342108]
-- [kernel] sched: CONFIG_SCHEDSTATS kabi fix (Josh Poimboeuf) [1333444]
-- [kernel] kmod: remove unecessary explicit wide CPU affinity setting (Frederic Weisbecker) [1056801]
-- [netdrv] be2net: Fix broadcast echoes from EVB in BE3 (Ivan Vecera) [1249881]
-- [powerpc] Wire up sys_userfaultfd() (Laurent Vivier) [1353468]
-- [cpufreq] powernv: del_timer_sync when global and local pstate are equal (Gustavo Duarte) [1346255]
-- [cpufreq] powernv: Move smp_call_function_any() out of irq safe block (Gustavo Duarte) [1346255]
-- [cpufreq] powernv: Ramp-down global pstate slower than local-pstate (Gustavo Duarte) [1346255]
-- [cpufreq] Add support for per-policy driver data (Gustavo Duarte) [1346255]
-
-* Tue Jul 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-480.el7]
-- [md] dm: call PR reserve_unreserve on each underlying device (Mike Snitzer) [1357031]
-- [scsi] sd: don't use the ALL_TG_PT bit for reservations (Mike Snitzer) [1357031]
-- [md] dm raid: fix random optimal_io_size for raid0 (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: address checkpatch.pl complaints (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: change logical functions to actually return bool (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: use rdev_for_each in status (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: use rs->raid_disks to avoid memory leaks on free (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: support delta_disks for raid1, fix table output (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: enhance reshape check and factor out reshape setup (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: allow resize during recovery (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix rs_is_recovering() to allow for lvextend (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix rebuild and catch bogus sync_resync flags (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix ctr memory leaks on error paths (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix typo in write_mostly flag (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: also reject size change during recovery (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix new superblock_bitmap creation on disk addition (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: add comments and fix typos (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix raid10 device size error on out-of-place reshape (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: prohibit 'nosync' on new raid6 and reject resize during reshape (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: clarify and fix recovery (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: fix rs_set_capacity on growing reshape (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: make rs_set_capacity to work on shrinking reshape (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: enhance comments in takeover checks (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: remove bogus comment and fix comment typos (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: more restricting data_offset value checks (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: reject too many write_mostly devices (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: the sync_page_io() metadata_op argument is bool (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: prohibit to pass in both sync and nosync ctr flags (Mike Snitzer) [1356244 1357031]
-- [md] dm raid: avoid superfluous memory barriers on static metadata (Mike Snitzer) [1356244 1357031]
-- [md] dm thin: unroll issue_discard() to create longer discard bio chains (Mike Snitzer) [1356244 1357031]
-- [md] dm thin: use __blkdev_issue_discard for async discard support (Mike Snitzer) [1356244 1357031]
-- [block] missing bio_put following submit_bio_wait (Mike Snitzer) [1356244 1357031]
-- [block] reinstate early return of -EOPNOTSUPP from blkdev_issue_discard (Mike Snitzer) [1356244 1357031]
-- [block] add __blkdev_issue_discard (Mike Snitzer) [1356244 1357031]
-- [block] remove struct bio_batch (Mike Snitzer) [1356244 1357031]
-- [md] dm: fix second blk_delay_queue() parameter to be in msec units not jiffies (Mike Snitzer) [1356244 1357031]
-- [md] dm ioctl: Simplify parameter buffer management code (Mike Snitzer) [1356244 1357031]
-
-* Tue Jul 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-479.el7]
-- [crypto] rsa-pkcs1pad - fix rsa-pkcs1pad request struct (Neil Horman) [1356718]
-- [crypto] gcm - Fix rfc4543 decryption crash (Herbert Xu) [1298642]
-- [crypto] crc32 - Rename generic implementation (Herbert Xu) [1314773]
-- [crypto] x86/sha512_ssse3 - fixup for asm function prototype change (Herbert Xu) [1267049]
-- [crypto] x86/sha - Add build support for Intel SHA Extensions optimized SHA1 and SHA256 (Herbert Xu) [1267049]
-- [crypto] x86/sha - glue code for Intel SHA extensions optimized SHA1 & SHA256 (Herbert Xu) [1267049]
-- [crypto] x86/sha - Intel SHA Extensions optimized SHA256 transform function (Herbert Xu) [1267049]
-- [crypto] x86/sha - Intel SHA Extensions optimized SHA1 transform function (Herbert Xu) [1267049]
-- [crypto] x86/sha512_ssse3 - move SHA-384/512 SSSE3 implementation to base layer (Herbert Xu) [1267049]
-- [crypto] x86/sha256_ssse3 - move SHA-224/256 SSSE3 implementation to base layer (Herbert Xu) [1267049]
-- [crypto] x86/sha1_ssse3 - move SHA-1 SSSE3 implementation to base layer (Herbert Xu) [1267049]
-- [crypto] sha512-generic - move to generic glue implementation (Herbert Xu) [1267049]
-- [crypto] sha256-generic - move to generic glue implementation (Herbert Xu) [1267049]
-- [crypto] sha1-generic - move to generic glue implementation (Herbert Xu) [1267049]
-- [crypto] sha512 - implement base layer for SHA-512 (Herbert Xu) [1267049]
-- [crypto] sha256 - implement base layer for SHA-256 (Herbert Xu) [1267049]
-- [crypto] sha1 - implement base layer for SHA-1 (Herbert Xu) [1267049]
-- [crypto] sha - replace memset by memzero_explicit (Herbert Xu) [1267049]
-- [crypto] memzero_explicit - make sure to clear out sensitive data (Herbert Xu) [1267049]
-- [crypto] sha512_ssse3 - fix byte count to bit count conversion (Herbert Xu) [1267049]
-- [crypto] sha256_ssse3 - use correct module alias for sha224 (Herbert Xu) [1267049]
-- [crypto] sha256_ssse3 - add sha224 support (Herbert Xu) [1267049]
-- [crypto] sha512_ssse3 - add sha384 support (Herbert Xu) [1267049]
-
-* Sat Jul 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-478.el7]
-- [netdrv] i40e: Don't notify client(s) for DCB changes on all VSIs (Stefan Assmann) [1276184]
-- [netdrv] virtio_net: add gro capability (Jason Wang) [1251908]
-- [powerpc] mm: don't do tlbie for updatepp request with NO HPTE fault (Gustavo Duarte) [1287289]
-- [infiniband] ib/mlx5: Fix port counter ID association to QP offset (Don Dutile) [1258655]
-- [infiniband] ib/mlx5: Add per port counters (Don Dutile) [1258655]
-- [infiniband] ib/mlx5: Add port protocol stats (Don Dutile) [1258655]
-- [infiniband] ib core sysfs: Add port_xmit_wait_counter V2 (Don Dutile) [1258655 1356294]
-- [infiniband] ib/core: Initialize sysfs attributes before sysfs create group (Don Dutile) [1258655]
-- [infiniband] ib/core: fix error unwind in sysfs hw counters code (Don Dutile) [1258655]
-- [infiniband] ib/core: Fix array length allocation (Don Dutile) [1258655]
-- [infiniband] ib/core: fix null pointer deref and mem leak in error handling (Don Dutile) [1258655]
-- [infiniband] ib/core: Make device counter infrastructure dynamic (Don Dutile) [1258655]
-
-* Fri Jul 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-477.el7]
-- [infiniband] ib/srpt: Simplify srpt_handle_tsk_mgmt() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix srp_map_sg_dma() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Always initialize use_fast_reg and use_fmr (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix a debug kernel crash (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Do not register memory if never_register has been set (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Prevent mapping failures (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Swap two code blocks in srp_add_one() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Enhance ib_map_mr_sg() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix srp_create_target() error handling (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix a memory descriptor leak in an error path (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: print "ib_srp: " prefix once (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Move common code into the caller (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Move code out of a loop (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Avoid that mapping failure triggers an infinite loop (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Introduce target->mr_pool_size (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix srp_map_data() error paths (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Document srp_map_data() return value (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix a comment (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Fix a spelling error in a source code comment (Honggang Li) [1309411 1342604]
-- [infiniband] ib/srp: Use ib_drain_rq() (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Introduce capabilitymask2 field in ClassPortInfo mad (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Add IP to GID netlink offload (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Register SA ibnl client during ib_core initialization (Honggang Li) [1309411 1342604]
-- [infiniband] ib/netlink: Add a new local service operation (Honggang Li) [1309411 1342604]
-- [infiniband] ib/sa: Integrate ib_sa module into ib_core module (Honggang Li) [1309411 1342604]
-- [infiniband] ib/mad: Integrate ib_mad module into ib_core module (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Integrate IB address resolution module into core (Honggang Li) [1309411 1342604]
-- [infiniband] ib/sa: Use correct free function (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Fix a potential array overrun in CMA and SA agent (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Remove unnecessary check in ibnl_rcv_msg (Honggang Li) [1309411 1342604]
-- [infiniband] ib/iwpm: Fix a potential skb leak (Honggang Li) [1309411 1342604]
-- [infiniband] iwcm: Fix a sparse warning (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: add RW API support for signature MRs (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: generic RDMA READ/WRITE API (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: add a need_inval flag to struct ib_mr (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: add a simple MR pool (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: refactor ib_create_qp (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: add a helper to check for READ WITH INVALIDATE support (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Add passing an offset into the SG to ib_map_mr_sg (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Synchronize accept() and connect() paths on t_conn_lock (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Synchronize rds_tcp_accept_one with rds_send_xmit when resetting t_sock (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Call pskb_extract() helper function (Honggang Li) [1309411 1342604]
-- [net] rds: Fix the atomicity for congestion map update (Honggang Li) [1309411 1342604]
-- [net] rds: fix endianness for dp_ack_seq (Honggang Li) [1309411 1342604]
-- [net] rds: fix congestion map corruption for PAGE_SIZE > 4k (Honggang Li) [1309411 1342604]
-- [net] rds: memory allocated must be align to 8 (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Remove unused constant (Honggang Li) [1309411 1342604]
-- [net] rds: tcp: Add sysctl tunables for sndbuf/rcvbuf on rds-tcp socket (Honggang Li) [1309411 1342604]
-- [net] rds: ib: Support Fastreg MR (FRMR) memory registration mode (Honggang Li) [1309411 1342604]
-- [net] rds: ib: allocate extra space on queues for FRMR support (Honggang Li) [1309411 1342604]
-- [net] rds: ib: add Fastreg MR (FRMR) detection support (Honggang Li) [1309411 1342604]
-- [net] rds: ib: add mr reused stats (Honggang Li) [1309411 1342604]
-- [net] rds: ib: handle the RDMA CM time wait event (Honggang Li) [1309411 1342604]
-- [net] rds: ib: add connection info to ibmr (Honggang Li) [1309411 1342604]
-- [net] rds: ib: move FMR code to its own file (Honggang Li) [1309411 1342604]
-- [net] rds: ib: create struct rds_ib_fmr (Honggang Li) [1309411 1342604]
-- [net] rds: ib: Re-organise ibmr code (Honggang Li) [1309411 1342604]
-- [net] rds: ib: Remove the RDS_IB_SEND_OP dependency (Honggang Li) [1309411 1342604]
-- [net] rds: Add support for SO_TIMESTAMP for incoming messages (Honggang Li) [1309411 1342604]
-- [net] rds: Drop stale iWARP RDMA transport (Honggang Li) [1309411 1342604]
-- [net] rds: duplicate include net/tcp.h (Honggang Li) [1309411 1342604]
-- [infiniband] ib/cma: pass the port number to ib_create_qp (Honggang Li) [1309411 1342604]
-- [infiniband] ib/core: Don't drain non-existent rq queue-pair (Honggang Li) [1309411 1342604]
-- [infiniband] iwpm: crash fix for large connections test (Honggang Li) [1309411 1342604]
-- [infiniband] iw_cxgb4: remove port mapper related code (Honggang Li) [1309411 1342604]
-- [infiniband] iwcm: common code for port mapper (Honggang Li) [1309411 1342604]
-- [infiniband] iw_cxgb4: add queue drain functions (Honggang Li) [1309411 1342604]
-- [infiniband] ib: new common API for draining queues (Honggang Li) [1309411 1342604]
-- [infiniband] rdma: use __ethtool_get_ksettings (Honggang Li) [1309411 1342604]
-
-* Fri Jul 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-476.el7]
-- [scsi] cxgbi: fix uninitialized flowi6 (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Add support to enable logging of firmware mailbox commands for VF (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Set number of queues in pci probe only (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Add a couple more checks for invalid provisioning configurations (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Configure queue based on resource and interrupt type (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Enable interrupts before we register our network devices (Sai Vemuri) [1275829]
-- [netdrv] cxgb4: Stop Rx Queues before freeing it up (Sai Vemuri) [1275829]
-- [netdrv] cxgb4/cxgb4vf: Deprecate module parameter dflt_msg_enable (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Add arp failure handlers to send_mpa_reply/reject() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Always wake up waiter in c4iw_peer_abort_intr() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Handle ret value of process_mpa_reply() in rx_data (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: atomic find and reference for listening endpoints (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Handle ULP accept/reject during ABORTING (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Release ep for for FPDU_MODE and MPA_REQ_RCVD in process_timeout (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Free skb in case of arp failure in _c4iw_free_ep() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: atomically lookup ep and get a reference (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Handle return value of c4iw_ofld_send() in abort_arp_failure() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: in process_timeout() don't move ep state to ABORTING (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: handle return value of c4iw_l2t_send() and send_mpa_req() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: stop_ep_timer() after MPA negotiation (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Do not stop timer in case of incomplete messages (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: parent_ep has to be dereferenced in case of passive accept failure (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: set the correct FID value in DSGL commands (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Correct RFC number of MPA (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Add few history bits for ep (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: remove abort_connection() usage from ep_timeout() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: move QP -> ERROR on fatal disconnect errors (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: don't use abort_connection in process_mpa_request() (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: remove abort_connection() usage from accept/reject (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: free resources when send_flowc() fails (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: remove connection abort from process_mpa_reply (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: ensure eps don't get freed while the mutex is held (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: stop ep timer on close failure (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: release ep resources on accept arp failure (Sai Vemuri) [1275829]
-- [infiniband] rdma/iw_cxgb4: Fix bar2 virt addr calculation for T4 chips (Sai Vemuri) [1275829]
-- [netdrv] cxgb4: Add pci device id for chelsio t520-cr adapter (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Remove dead functions collect_netdev_[um]c_list_addrs (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Use __dev_uc_sync/__dev_mc_sync to sync MAC address (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Fix ethtool get_settings for VF driver (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Remove redundant adapter ready check during probe (Sai Vemuri) [1275829]
-- [netdrv] cxgb4vf: Make sge init code more readable (Sai Vemuri) [1275829]
-- [netdrv] cxgb4/cxgb4vf: For T6 adapter, set FBMIN to 64 bytes (Sai Vemuri) [1275829]
-- [netdrv] cxgb4/cxgb4vf: Use fl capacity to check if fl needs to be replenished (Sai Vemuri) [1275829]
-- [infiniband] cxgb4: use pR format string for printing resources (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: Max fastreg depth depends on DSGL support (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: remove false error log entry (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: make queue allocation code more readable (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: Cleanup register defines/MACROS defined in t4fw_ri_api.h (Sai Vemuri) [1275829]
-- [netdrv] iw_cxgb4: Cleanup register defines/MACROS defined in t4.h (Sai Vemuri) [1275829]
-- [netdrv] cxgb4: Use __dev_uc_sync/__dev_mc_sync to sync MAC address (Sai Vemuri) [1275829]
-- [netdrv] cxgb4/iw_cxgb4: TOS support (Sai Vemuri) [1275829]
-- [netdrv] vfs: Fix up some ->d_inode accesses in the chelsio driver (Sai Vemuri) [1275829]
-- [scsi] libcxgbi: use kvfree() in cxgbi_free_big_mem() (Sai Vemuri) [1275829]
-- [scsi] cxgb4i: set the initial sequence number (Sai Vemuri) [1275829]
-- [scsi] cxgbi: update driver versions (Sai Vemuri) [1275829]
-- [scsi] cxgbi: update copyright to 2015 (Sai Vemuri) [1275829]
-- [scsi] cxgbi: use per-connection link-speed dependent send/recv windows (Sai Vemuri) [1275829]
-- [infiniband] iw_cxgb4: use wildcard mapping for getting remote addr info (Sai Vemuri) [1275829]
-- [infiniband] rdma/cxgb4: Report the actual address of the remote connecting peer (Sai Vemuri) [1275829]
-
-* Thu Jul 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-475.el7]
-- [net] vlan: use a valid default mtu value for vlan over macsec (Paolo Abeni) [1355938]
-- [net] tcp: enable per-socket rate limiting of all 'challenge acks' (Florian Westphal) [1355605] {CVE-2016-5696}
-- [net] tcp: uninline tcp_oow_rate_limited() (Florian Westphal) [1355605] {CVE-2016-5696}
-- [net] tcp: make challenge acks less predictable (Florian Westphal) [1355605] {CVE-2016-5696}
-- [net] sctp: recvmsg should be able to run even if sock is in closing state (Xin Long) [1251529]
-- [net] sctp: implement prsctp PRIO policy (Xin Long) [965453]
-- [net] sctp: implement prsctp RTX policy (Xin Long) [965453]
-- [net] sctp: implement prsctp TTL policy (Xin Long) [965453]
-- [net] sctp: add SCTP_PR_ASSOC_STATUS on sctp sockopt (Xin Long) [965453]
-- [net] sctp: add SCTP_DEFAULT_PRINFO into sctp sockopt (Xin Long) [965453]
-- [net] sctp: add SCTP_PR_SUPPORTED on sctp sockopt (Xin Long) [965453]
-- [net] sctp: fix checkpatch errors with indent (Xin Long) [965453]
-- [net] sctp: remove the duplicate initialize (Xin Long) [965453]
-- [net] sctp: fix panic when sending auth chunks (Marcelo Leitner) [1352767]
-- [net] sctp: do not clear chunk->ecn_ce_done flag (Marcelo Leitner) [1354384]
-- [net] sctp: allow GSO frags to access the chunk too (Marcelo Leitner) [1354384]
-- [net] sctp: allow others to use sctp_input_cb (Marcelo Leitner) [1354384]
-- [net] sctp: reorder sctp_ulpevent and shrink msg_flags (Marcelo Leitner) [1354384]
-- [net] include/net/ip_fib: add missing semi-colon (Ivan Vecera) [1268334]
-- [net] remove incorrect assignment to skb->sender_cpu (Ivan Vecera) [1268334]
-- [net] netlink: Fix bugs in nlmsg_end() conversions (Ivan Vecera) [1268334]
-- [net] netlink: make nlmsg_end() and genlmsg_end() void (Ivan Vecera) [1268334]
-- [kernel] bitops: Fix shift overflow in GENMASK macros (Ivan Vecera) [1268334]
-- [net] rtnl: do_setlink(): notify when a netdev is modified (Ivan Vecera) [1268334]
-- [net] rtnl: do_setlink(): last arg is now a set of flags (Ivan Vecera) [1268334]
-- [net] rtnl: do_setlink(): set modified when IFLA_LINKMODE is updated (Ivan Vecera) [1268334]
-- [net] rtnl: do_setlink(): set modified when IFLA_TXQLEN is updated (Ivan Vecera) [1268334]
-- [net] bridge: fdb dumping takes a filter device (Ivan Vecera) [1268334]
-- [net] sysfs: expose number of carrier on/off changes (Ivan Vecera) [1268334]
-- [net] ipv6: fix checkpatch errors with assignment in if condition (Ivan Vecera) [1268334]
-- [net] fix build break when DEBUG is enabled (Ivan Vecera) [1268334]
-- [net] bonding: Fix potential bad memory access during bonding events (Ivan Vecera) [1268334]
-
-* Thu Jul 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-474.el7]
-- [scsi] megaraid_sas: Do not fire MR_DCMD_PD_LIST_QUERY to controllers which do not support it (Tomas Henzl) [1353946]
-- [scsi] hpsa: correct skipping masked peripherals (Joseph Szczypek) [1328271]
-- [fs] file.c: __const_max is actually __const_min (Mateusz Guzik) [1346114]
-- [fs] get rid of files_defer_init() (Mateusz Guzik) [1346114]
-- [fs] initmpfs: use initramfs if rootfstype= or root= specified (Carlos Maiolino) [1126102]
-- [fs] initmpfs: make rootfs use tmpfs when CONFIG_TMPFS enabled (Carlos Maiolino) [1126102]
-- [fs] initmpfs: move rootfs code from fs/ramfs/ to init/ (Carlos Maiolino) [1126102]
-- [fs] initmpfs: move bdi setup from init_rootfs to init_ramfs (Carlos Maiolino) [1126102]
-- [fs] direct-io: fix direct write stale data exposure from concurrent buffered read (Eryu Guan) [1349252]
-- [fs] cifs: remove any preceding delimiter from prefix_path (Sachin Prabhu) [1252721]
-- [fs] cifs: Create dedicated keyring for spnego operations (Sachin Prabhu) [1356500]
-- [fs] dax: fix offset overflow in dax_io (Jeff Moyer) [1347093]
-- [fs] ext4: add remap_file_pages support for dax mounts (Jeff Moyer) [1348428]
-- [fs] dax: fix partial completions for readv/writev (Jeff Moyer) [1348379]
-- [mm] avoid walking hugetlb pages in stratus memory tracking (David Bulkow) [1351779]
-- [nvme] quirk: Add a delay before checking for adapter readiness (David Milburn) [1356434]
-- [nvme] Create discard zero quirk white list (David Milburn) [1356434]
-- [nvme] Avoid reset work on watchdog timer function during error recovery (David Milburn) [1353264]
-- [nvme] Fix reset/remove race (David Milburn) [1353264]
-- [nvme] replace the kthread with a per-device watchdog timer (David Milburn) [1353264]
-- [nvme] don't poll the CQ from the kthread (David Milburn) [1353264]
-- [nvme] use a work item to submit async event requests (David Milburn) [1353264]
-- [kernel] revert "sched: Compute runnable load avg in cpu_load and cpu_avg_load_per_task" (Jiri Olsa) [1339165]
-- [kernel] revert "sched: Consider runnable load average in move_tasks()" (Jiri Olsa) [1339165]
-- [kernel] revert "sched: Change cfs_rq load avg to unsigned long" (Jiri Olsa) [1339165]
-- [kernel] revert "sched: Move h_load calculation to task_h_load()" (Jiri Olsa) [1339165]
-- [kernel] revert "sched: Fix cfs_rq->task_h_load calculation" (Jiri Olsa) [1339165]
-- [kernel] sched/docbook: Fix 'make htmldocs' warnings caused by missing description (Lauro Ramos Venancio) [1352969]
-- [kernel] sched/core: Fix htmldocs warnings (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Fix sched_policy < 0 comparison (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Disallow sched_attr::sched_policy < 0 (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Make sched_setattr() correctly return -EFBIG (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Add 'flags' argument to sched_{set, get}attr() syscalls (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Fix information leak in sys_sched_getattr() (Lauro Ramos Venancio) [1352969]
-- [kernel] sched: Fix __sched_setscheduler() nice test (Lauro Ramos Venancio) [1352969]
-- [base] platform: Move device_remove_property_set() before device_del() (Prarit Bhargava) [1357318]
-- [acpi] ACPICA: acpi_get_sleep_type_data: Reduce warnings (Prarit Bhargava) [1287163]
-- [ata] libata: alloc device_rh for ata_port elements (Prarit Bhargava) [1356095]
-- [ata] Revert "libata: Allocate device_rh() before use" (Prarit Bhargava) [1356095]
-
-* Wed Jul 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-473.el7]
-- [net] ipv6: Clear flush_id to make GRO work (Jakub Sitnicki) [1326401]
-- [net] tcp: increase size at which tcp_bound_to_half_wnd bounds to > TCP_MSS_DEFAULT (Davide Caratti) [1353271]
-- [net] loopback: sctp: add NETIF_F_SCTP_CSUM to device features (Xin Long) [1353078]
-- [netdrv] mlx5e: Call vxlan_get_rx_port() with rtnl lock (Jiri Benc) [1297504]
-- [net] vxlan: Accept user specified MTU value when create new vxlan link (Jiri Benc) [1297504]
-- [net] udp: prevent skbs lingering in tunnel socket queues (Jiri Benc) [1297504]
-- [net] vxlan: set mac_header correctly in GPE mode (Jiri Benc) [1297504]
-- [net] udp_offload: Set encapsulation before inner completes (Jiri Benc) [1297504]
-- [net] udp_tunnel: Remove redundant udp_tunnel_gro_complete() (Jiri Benc) [1297504]
-- [net] vxlan: Add checksum check to the features check function (Jiri Benc) [1297504]
-- [net] Disable segmentation if checksumming is not supported (Jiri Benc) [1297504]
-- [net] vxlan: fix initialization with custom link parameters (Jiri Benc) [1297504]
-- [net] geneve: break dependency with netdev drivers (Jiri Benc) [1297504]
-- [net] vxlan: break dependency with netdev drivers (Jiri Benc) [1297504]
-- [netdrv] mlx4: protect mlx4_en_start_port in mlx4_en_restart with rtnl_lock (Jiri Benc) [1297504]
-- [netdrv] fm10k: protect fm10k_open in fm10k_io_resume with rtnl_lock (Jiri Benc) [1297504]
-- [net] vxlan: reduce usage of synchronize_net in ndo_stop (Jiri Benc) [1277131 1297504]
-- [net] vxlan: synchronously and race-free destruction of vxlan sockets (Jiri Benc) [1277131 1297504]
-- [net] vxlan: fix incorrect type (Jiri Benc) [1297504]
-- [net] udp: Resolve NULL pointer dereference over flow-based vxlan device (Jiri Benc) [1297504]
-- [net] udp: Remove udp_offloads (Jiri Benc) [1297504]
-- [net] geneve: change to use UDP socket GRO (Jiri Benc) [1297504]
-- [net] vxlan: change vxlan to use UDP socket GRO (Jiri Benc) [1297504]
-- [net] udp: Add socket based GRO and config (Jiri Benc) [1297504]
-- [net] udp: Add GRO functions to UDP socket (Jiri Benc) [1297504]
-- [net] udp: Add udp6_lib_lookup_skb and udp4_lib_lookup_skb (Jiri Benc) [1297504]
-- [net] Checks skb_dst to be NULL in inet_iif (Jiri Benc) [1297504]
-- [net] udp: Set SKB_GSO_UDP_TUNNEL* in UDP GRO path (Jiri Benc) [1297504]
-- [net] udp: Fix ipv6 multicast socket filter regression (Jiri Benc) [1297504]
-- [net] udp: Use hash2 for long hash1 chains in __udp*_lib_mcast_deliver (Jiri Benc) [1297504]
-- [net] udp: Simplify __udp*_lib_mcast_deliver (Jiri Benc) [1297504]
-- [net] udp: fix dst races with multicast early demux (Jiri Benc) [1297504]
-- [net] merge cases where sock_efree and sock_edemux are the same function (Jiri Benc) [1297504]
-- [net] ipv4: fix broadcast packets reception (Jiri Benc) [1297504]
-- [net] udp: ipv4: Verify multicast group is ours in upd_v4_early_demux() (Jiri Benc) [1297504]
-- [net] udp: ipv4: do not waste time in __udp4_lib_mcast_demux_lookup (Jiri Benc) [1297504]
-- [net] udp: ipv4: do not use sk_dst_lock from softirq context (Jiri Benc) [1297504]
-- [net] udp: ipv4: must add synchronization in udp_sk_rx_dst_set() (Jiri Benc) [1297504]
-- [net] udp: ipv4: fix potential use after free in udp_v4_early_demux() (Jiri Benc) [1297504]
-- [net] udp: ipv4: fix an use after free in __udp4_lib_rcv() (Jiri Benc) [1297504]
-- [net] udp: fix a typo in __udp4_lib_mcast_demux_lookup (Jiri Benc) [1297504]
-- [net] ipv4 only populate IP_PKTINFO when needed (Jiri Benc) [1297504]
-- [net] udp: ipv4: Add udp early demux (Jiri Benc) [1297504]
-- [net] vxlan: implement GPE (Jiri Benc) [1297504]
-- [net] ip_tunnel: implement __iptunnel_pull_header (Jiri Benc) [1297504]
-- [net] vxlan: move fdb code to common location in vxlan_xmit (Jiri Benc) [1297504]
-- [net] vxlan: move Ethernet initialization to a separate function (Jiri Benc) [1297504]
-- [net] tunnels: Remove encapsulation offloads on decap (Jiri Benc) [1297504]
-- [net] tunnels: Don't apply GRO to multiple layers of encapsulation (Jiri Benc) [1297504]
-- [net] vxlan: fix too large pskb_may_pull with remote checksum (Jiri Benc) [1297504]
-- [net] csum: Update csum_block_add to use rotate instead of byteswap (Jiri Benc) [1297504]
-- [net] gro: Defer clearing of flush bit in tunnel paths (Jiri Benc) [1297504]
-- [net] vxlan: use reset to set header pointers (Jiri Benc) [1297504]
-- [net] ndo_fdb_dump should report -EMSGSIZE to rtnl_fdb_dump (Jiri Benc) [1297504]
-- [net] vxlan: change VXLAN_F_UDP_CSUM to VXLAN_F_UDP_ZERO_CSUM_TX (Jiri Benc) [1297504]
-- [net] openvswitch: geneve: fix rtnl notifications on iface deletion (Eric Garver) [1297476]
-- [net] openvswitch: gre: fix rtnl notifications on iface deletion (Eric Garver) [1297476]
-- [net] openvswitch: vxlan: fix rtnl notifications on iface deletion (Eric Garver) [1297476]
-- [net] openvswitch: gre, geneve: fix error path when creating an iface (Eric Garver) [1297476]
-- [net] openvswitch: update checksum in {push, pop}_mpls (Eric Garver) [1297476]
-- [net] openvswitch: use flow protocol when recalculating ipv6 checksums (Eric Garver) [1297476]
-- [net] netfilter: connlabels: change nf_connlabels_get bit arg to 'highest used' (Eric Garver) [1297476]
-- [net] openvswitch: Convert to using IFF_NO_QUEUE (Eric Garver) [1297476]
-- [net] openvswitch: add netif_is_ovs_master helper with IFF_OPENVSWITCH private flag (Eric Garver) [1297476]
-- [net] openvswitch: allow output of MPLS packets on tunnel vports (Eric Garver) [1297476]
-- [net] openvswitch: allow nl 'flow set' to use ufid without flow key (Eric Garver) [1297476]
-- [net] openvswitch: allow management from inside user namespaces (Eric Garver) [1297476]
-- [net] openvswitch: fix trivial comment typo (Eric Garver) [1297476]
-- [net] openvswitch: Remove invalid comment (Eric Garver) [1297476]
-- [net] Drop unlikely before IS_ERR(_OR_NULL) (Eric Garver) [1297476]
-- [net] openvswitch: Zero flows on allocation (Eric Garver) [1297476]
-- [net] openvswitch: retain parsed IPv6 header fields in flow on error skipping extension headers (Eric Garver) [1297476]
-- [net] openvswitch: Make 100 percents packets sampled when sampling rate is 1 (Eric Garver) [1297476]
-- [net] openvswitch: allocate nr_node_ids flow_stats instead of num_possible_nodes (Eric Garver) [1297476]
-- [net] openvswitch: Use eth_proto_is_802_3 (Eric Garver) [1297476]
-- [net] ethernet: Fix sparse error, make test usable by other functions (Eric Garver) [1297476]
-- [net] ethernet: Avoid unnecessary byte swap in check for Ethertype (Eric Garver) [1297476]
-- [net] ethernet: use likely() for common Ethernet encap (Eric Garver) [1297476]
-- [net] macsec: set actual real device for xmit when !protect_frames (Sabrina Dubroca) [1104151]
-- [net] macsec: fix SA initialization (Sabrina Dubroca) [1104151]
-- [net] macsec: allocate sg and iv on the heap (Sabrina Dubroca) [1104151]
-- [net] macsec: add rcu_barrier() on module exit (Sabrina Dubroca) [1104151]
-- [net] macsec: Convert to using IFF_NO_QUEUE (Sabrina Dubroca) [1104151]
-- [net] macsec: fix netlink attribute for key id (Sabrina Dubroca) [1104151]
-- [net] macsec: key identifier is 128 bits, not 64 (Sabrina Dubroca) [1104151]
-- [net] macsec: fix netlink attribute validation (Sabrina Dubroca) [1104151]
-- [net] macsec: add missing macsec prefix in uapi (Sabrina Dubroca) [1104151]
-- [net] macsec: fix SA leak if initialization fails (Sabrina Dubroca) [1104151]
-- [net] macsec: fix memory leaks around rx_handler (un)registration (Sabrina Dubroca) [1104151]
-- [net] macsec: add consistency check to netlink dumps (Sabrina Dubroca) [1104151]
-- [net] macsec: fix rx_sa refcounting with decrypt callback (Sabrina Dubroca) [1104151]
-- [net] macsec: don't put a NULL rxsa (Sabrina Dubroca) [1104151]
-- [net] macsec: take rtnl lock before for_each_netdev (Sabrina Dubroca) [1104151]
-- [net] macsec: add missing NULL check after kmalloc (Sabrina Dubroca) [1104151]
-- [net] macsec: introduce IEEE 802.1AE driver (Sabrina Dubroca) [1104151]
-- [net] add MACsec netdevice priv_flags and helper (Sabrina Dubroca) [1104151]
-- [net] uapi: add MACsec bits (Sabrina Dubroca) [1104151]
-
-* Tue Jul 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-472.el7]
-- [scsi] libfc: sanity check cpu number extracted from xid (Chris Leech) [1190204]
-- [scsi] aacraid: do not activate events on non-SRC adapters (Scott Benesh) [1274365]
-- [scsi] aacraid: Update driver version (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix for KDUMP driver hang (Scott Benesh) [1274365]
-- [scsi] aacraid: Remove code to needlessly complete fib (Scott Benesh) [1274365]
-- [scsi] aacraid: Log firmware AIF messages (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix for aac_command_thread hang (Scott Benesh) [1274365]
-- [scsi] aacraid: Disable MSI mode for series 6, 7, 8 cards (Scott Benesh) [1274365]
-- [scsi] aacraid: Relinquish CPU during timeout wait (Scott Benesh) [1274365]
-- [scsi] aacraid: Start adapter after updating number of MSIX vectors (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix incorrectly named MACRO (Scott Benesh) [1274365]
-- [scsi] aacraid: Removed unnecessary checks for NULL (Scott Benesh) [1274365]
-- [scsi] aacraid: add missing curly braces (Scott Benesh) [1274365]
-- [scsi] aacraid: Update driver version (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix character device re-initialization (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix AIF triggered IOP_RESET (Scott Benesh) [1274365]
-- [scsi] aacraid: Created new mutex for ioctl path (Scott Benesh) [1274365]
-- [scsi] aacraid: Fundamental reset support for Series 7 (Scott Benesh) [1274365]
-- [scsi] aacraid: Set correct msix count for EEH recovery (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix memory leak in aac_fib_map_free (Scott Benesh) [1274365]
-- [scsi] aacraid: Added EEH support (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix RRQ overload (Scott Benesh) [1274365]
-- [scsi] aacraid: SCSI blk tag support (Scott Benesh) [1274365]
-- [scsi] aacraid: aac_release_resources() can be static (Scott Benesh) [1274365]
-- [scsi] aacraid: Update driver version (Scott Benesh) [1274365]
-- [scsi] aacraid: Use pci_enable_msix_range() (Scott Benesh) [1274365]
-- [scsi] aacraid: IOCTL fix (Scott Benesh) [1274365]
-- [scsi] aacraid: Reset irq affinity hints (Scott Benesh) [1274365]
-- [scsi] aacraid: Tune response path if IsFastPath bit set (Scott Benesh) [1274365]
-- [scsi] aacraid: Enable 64bit write to controller register (Scott Benesh) [1274365]
-- [scsi] aacraid: Change interrupt mode to MSI for Series 6 (Scott Benesh) [1274365]
-- [scsi] aacraid: Add Power Management support (Scott Benesh) [1274365]
-- [scsi] aacraid: Fix for LD name and UID not exposed to OS (Scott Benesh) [1274365]
-- [scsi] aacraid: aac_src_intr_message() can be static (Scott Benesh) [1274365]
-
-* Tue Jul 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-471.el7]
-- [x86] kvm: Add output operand in vmx_handle_external_intr inline asm (Josh Poimboeuf) [1320250]
-- [watchdog] hpwdt: Create stack frame in asminline_call() (Josh Poimboeuf) [1320250]
-- [watchdog] lto, watchdog/hpwdt.c: make assembler label global (Josh Poimboeuf) [1320250]
-- [x86] asm: Create stack frames in rwsem functions (Josh Poimboeuf) [1320250]
-- [x86] asm/power: Create stack frames in hibernate_asm_64.S (Josh Poimboeuf) [1320250]
-- [x86] asm/xen: Set ELF function type for xen_adjust_exception_frame() (Josh Poimboeuf) [1320250]
-- [x86] asm/xen: Create stack frames in xen-asm.S (Josh Poimboeuf) [1320250]
-- [x86] kvm: Make test_cc() always inline (Josh Poimboeuf) [1320250]
-- [x86] kvm: Set ELF function type for fastop functions (Josh Poimboeuf) [1320250]
-- [x86] kvm: Add stack frame dependency to fastop() inline asm (Josh Poimboeuf) [1320250]
-- [x86] xen: Add stack frame dependency to hypercall inline asm calls (Josh Poimboeuf) [1320250]
-- [x86] uaccess: Add stack frame output operand in get_user() inline asm (Josh Poimboeuf) [1320250]
-- [x86] paravirt: Create a stack frame in PV_CALLEE_SAVE_REGS_THUNK (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage, paravirt: Make paravirt thunks global (Josh Poimboeuf) [1320250]
-- [x86] asm/acpi: Create a stack frame in do_suspend_lowlevel() (Josh Poimboeuf) [1320250]
-- [x86] paravirt: Add stack frame dependency to PVOP inline asm calls (Josh Poimboeuf) [1320250]
-- [x86] crypto: sha1-mb - make sha1_x8_avx2() conform to C function ABI (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Move jump_table to .rodata section (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Create stack frames in crypto functions (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Don't use RBP as a scratch register (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Simplify stack usage in sha-mb functions (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Move .Lbswap_mask data to .rodata section (Josh Poimboeuf) [1320250]
-- [x86] asm/bpf: Create stack frames in bpf_jit.S (Josh Poimboeuf) [1320250]
-- [x86] asm/bpf: Annotate callable functions (Josh Poimboeuf) [1320250]
-- [x86] entry/64: Fix stack return address retrieval in thunk (Josh Poimboeuf) [1320250]
-- [x86] asm/entry: Create stack frames in thunk functions (Josh Poimboeuf) [1320250]
-- [x86] asm/64: Open-code register save/restore in trace_hardirqs*() thunks (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage: Make kprobes code visible and fix assembler code (Josh Poimboeuf) [1320250]
-- [x86] asm: Add several arch/x86/lib files to objtool whitelist (Josh Poimboeuf) [1320250]
-- [x86] asm/efi: Add efi stub code to objtool whitelist (Josh Poimboeuf) [1320250]
-- [kernel] sched: Mark __schedule() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [x86] xen: Mark xen_cpuid() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [x86] kprobes: Mark kretprobe_trampoline() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [tools] objtool: Allow building with older libelf (Josh Poimboeuf) [1320250]
-- [tools] objtool: Detect falling through to the next function (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add workaround for GCC switch jump table bug (Josh Poimboeuf) [1320250]
-- [tools] objtool: Only print one warning per function (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add several performance improvements (Josh Poimboeuf) [1320250]
-- [tools] objtool: Fix false positive warnings for functions with multiple switch statements (Josh Poimboeuf) [1320250]
-- [tools] objtool: Rename some variables and functions (Josh Poimboeuf) [1320250]
-- [tools] objtool: Remove superflous INIT_LIST_HEAD (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add helper macros for traversing instructions (Josh Poimboeuf) [1320250]
-- [tools] objtool: Fix false positive warnings related to sibling calls (Josh Poimboeuf) [1320250]
-- [tools] objtool: Compile with debugging symbols (Josh Poimboeuf) [1320250]
-- [tools] objtool: Detect infinite recursion (Josh Poimboeuf) [1320250]
-- [tools] objtool: Prevent infinite recursion in noreturn detection (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Detect and warn if libelf is missing and don't break the build (Josh Poimboeuf) [1320250]
-- [tools] objtool: Support CROSS_COMPILE (Josh Poimboeuf) [1320250]
-- [tools] x86/asm/decoder: Use explicitly signed chars (Josh Poimboeuf) [1320250]
-- [x86] objtool: Enable stack metadata validation on 64-bit x86 (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Add CONFIG_STACK_VALIDATION option (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add tool to perform compile-time stack metadata validation (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Mark non-standard object files and directories (Josh Poimboeuf) [1320250]
-- [include] objtool: Add STACK_FRAME_NON_STANDARD() macro (Josh Poimboeuf) [1320250]
-- [x86] asm: Add C versions of frame pointer macros (Josh Poimboeuf) [1320250]
-- [x86] asm: Clean up frame pointer macros (Josh Poimboeuf) [1320250]
-- [x86] jump-label: Use best default nops for inital jump label calls (Josh Poimboeuf) [1320250]
-- [x86] asm/decoder: Create artificial 3rd byte for 2-byte VEX (Josh Poimboeuf) [1320250]
-- [tools] lib: kill arch_fast_hash library bits (Josh Poimboeuf) [1320250]
-- [fs] replace remaining users of arch_fast_hash with jhash (Josh Poimboeuf) [1320250]
-- [x86] asm: Extend definitions of _ASM_* with a raw format (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage, xen, kvm: Make {xen, kvm}_lock_spinning global and visible (Josh Poimboeuf) [1320250]
-
-* Fri Jul 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-470.el7]
-- [block] blk: Fix bio_io_vec index when checking bvec gaps (David Milburn) [1283326]
-- [block] Replace SG_GAPS with new queue limits mask (David Milburn) [1283326]
-- [block] don't honor chunk sizes for data-less IO (David Milburn) [1283326]
-- [block] only honor SG gap prevention for merges that contain data (David Milburn) [1283326]
-- [block] fix blk_rq_get_max_sectors for driver private requests (David Milburn) [1349920]
-- [block] Initialize max_dev_sectors to 0 (David Milburn) [1349920]
-- [usb] printk: add and use LOGLEVEL_<level> defines for KERN_<LEVEL> equivalents (Torez Smith) [1356205]
-- [usb] revert "printk: add and use LOGLEVEL_<level> defines for KERN_<LEVEL> equivalents" (Torez Smith) [1356205]
-- [x86] build: Pass in additional -mno-mmx, -mno-sse options (Lenny Szubowicz) [1352386]
-- [fs] Add MF-Symlinks support for SMB 2.0 (Sachin Prabhu) [1334548]
-- [fs] cifs: Check for existing directory when opening file with O_CREAT (Sachin Prabhu) [1346118]
-- [fs] cachefiles: Provide read-and-reset release counters for cachefilesd (David Howells) [1356085]
-- [fs] fs-cache: Add missing initialization of ret in cachefiles_write_page() (David Howells) [1306442]
-- [fs] fs-cache: Handle a write to the page immediately beyond the EOF marker (David Howells) [1305112 1306442]
-- [fs] cachefiles: perform test on s_blocksize when opening cache file (David Howells) [1306442]
-- [fs] fs-cache: Don't override netfs's primary_index if registering failed (David Howells) [1306442]
-- [fs] fs-cache: Increase reference of parent after registering, netfs success (David Howells) [1306442]
-- [fs] gfs2: writeout truncated pages (Benjamin Marzinski) [1221210]
-- [fs] export __block_write_full_page (Benjamin Marzinski) [1221210]
-- [fs] gfs2: Lock holder cleanup (Robert S Peterson) [1336011]
-- [fs] gfs2: Large-filesystem fix for 32-bit systems (Robert S Peterson) [1336011]
-- [fs] gfs2: Get rid of gfs2_ilookup (Robert S Peterson) [1336011]
-- [fs] gfs2: Fix gfs2_lookup_by_inum lock inversion (Robert S Peterson) [1336011]
-- [fs] gfs2: Initialize iopen glock holder for new inodes (Robert S Peterson) [1336011]
-- [fs] gfs2: Eliminate parameter non_block on gfs2_inode_lookup (Robert S Peterson) [1336011]
-- [fs] gfs2: Don't filter out I_FREEING inodes anymore (Robert S Peterson) [1336011]
-- [fs] gfs2: Check if iopen is held when deleting inode (Robert S Peterson) [1336011]
-- [fs] gfs2: Don't do glock put on when inode creation fails (Robert S Peterson) [1336011]
-- [fs] gfs2: Prevent delete work from occurring on glocks used for create (Robert S Peterson) [1336011]
-- [fs] gfs2: Always use iopen glock for gl_deletes (Robert S Peterson) [1336011]
-- [fs] gfs2: Release iopen glock in gfs2_create_inode error cases (Robert S Peterson) [1336011]
-- [fs] gfs2: Wait for iopen glock dequeues (Robert S Peterson) [1336011]
-- [fs] gfs2: Update master statfs buffer with sd_statfs_spin locked (Robert S Peterson) [1336011]
-- [fs] locks: use file_inode() (Miklos Szeredi) [1348902]
-- [fs] locks: Use more file_inode and fix a comment (Miklos Szeredi) [1348902]
-- [fs] nfs4: Fix potential use after free of state in nfs4_do_reclaim (Benjamin Coddington) [1339271]
-- [fs] nfs41: map NFS4ERR_LAYOUTUNAVAILABLE to ENODATA (Benjamin Coddington) [1339271]
-- [fs] nfs: only remove page from mapping if launder_page fails (Benjamin Coddington) [1339271]
-- [fs] nfs: handle request add failure properly (Benjamin Coddington) [1339271]
-- [fs] nfs: Don't use d_inode as a variable name (Benjamin Coddington) [1339271]
-- [fs] nfs: centralize pgio error cleanup (Benjamin Coddington) [1339271]
-- [fs] nfs: clean up rest of reqs when failing to add one (Benjamin Coddington) [1339271]
-- [fs] nfs41: pop some layoutget errors to application (Benjamin Coddington) [1339271]
-- [fs] nfs: Fix an LOCK/OPEN race when unlinking an open file (Benjamin Coddington) [1339271]
-- [fs] sunrpc/cache: drop reference when sunrpc_cache_pipe_upcall() detects a race (Benjamin Coddington) [1339271]
-- [fs] pnfs/flexfiles: Fix an XDR encoding bug in layoutreturn (Benjamin Coddington) [1339271]
-- [fs] pnfs/flexfiles: Fix an Oopsable typo in ff_mirror_match_fh() (Benjamin Coddington) [1339271]
-- [fs] nfs: Fix attribute cache revalidation (Benjamin Coddington) [1339271]
-- [fs] nfsv4.1/pnfs: Fixup an lo->plh_block_lgets imbalance in layoutreturn (Benjamin Coddington) [1339271]
-- [fs] nfs: Fix race in __update_open_stateid() (Benjamin Coddington) [1339271]
-
-* Thu Jul 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-469.el7]
-- [kernel] memremap: fix highmem support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: fix DAX deadlocks (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: fix NULL pointer in __dax_pmd_fault() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: VMA with vm_ops->pfn_mkwrite wants to be write-notified (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] pmem: add proper fencing to pmem_rw_page() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm: pfn_devs: Fix locking in namespace_store (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm: btt_devs: Fix locking in namespace_store (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [scripts] checkpatch: add __pmem to $Sparse annotations (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: update PMD fault handler with PMEM API (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] take i_mmap_lock in unmap_mapping_range() for DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: use linear_page_index() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: ensure that zero pages are removed from other processes (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: don't use set_huge_zero_page() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: fix zap_huge_pmd() for DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: decrement refcount on huge zero page if it is split (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: fix race between simultaneous faults (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext4: start transaction before calling into DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext4: add ext4_get_block_dax() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: improve comment about truncate race (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: change insert_pfn's return type to void (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext4: use ext4_get_block_write() for DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax.c: fix typo in #endif comment (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] xfs: huge page fault support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext4: huge page fault support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] ext2: huge page fault support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: add huge page fault support (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] add vmf_insert_pfn_pmd() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] export various functions for the benefit of DAX (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] add a pmd_fault handler (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: prepare for DAX huge pages (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] dax: revert userfaultfd change (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: do not mark zero-page pmd write-protected explicitly (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: move DAX-related functions to a new header (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] thp: vma_adjust_trans_huge(): adjust file-backed VMA too (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] make GUP handle pfn mapping unless FOLL_GET is requested (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] move get_user_pages()-related code to separate file (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] mm/srat: Print non-volatile flag in SRAT (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [include] libnvdimm, pmem: direct map legacy pmem by default (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] libnvdimm, pmem: 'struct page' for pmem (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] libnvdimm, pfn: 'struct page' provider infrastructure (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [include] x86, pmem: clarify that ARCH_HAS_PMEM_API implies PMEM mapped WB (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [kernel] add devm_memremap_pages (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [mm] ZONE_DEVICE for "device memory" (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [powerpc] memory-hotplug: ppc: suitable memory should go to ZONE_MOVABLE (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] nd_blk: change aperture mapping from WC to WB (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] change to use generic kvfree() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] mm/pat: Add comments to cachemode translation tables (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [kernel] pmem, dax: have direct_access use __pmem annotation (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [fs] dax: update I/O path to do proper PMEM flushing (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] pmem: add copy_from_iter_pmem() and clear_pmem() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] pmem: clean up conditional pmem includes (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] pmem: remove layer when calling arch_has_wmb_pmem() (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [x86] pmem: move x86 PMEM API to new pmem.h header (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] libnvdimm, e820: make CONFIG_X86_PMEM_LEGACY a tristate option (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] pmem: switch to devm_ allocations (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [kernel] devres: add devm_memremap (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, btt: write and validate parent_uuid (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, btt: consolidate arena validation (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, btt: clean up internal interfaces (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] pmem: convert to generic memremap (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [iommu] vt-d: Fix leaked ioremap mapping (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] fix inline function return type warning (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [acpi] nfit: Don't check _STA on NVDIMM devices (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, pmem: Change pmem physical sector size to PAGE_SIZE (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [tools] libnvdimm: Add DSM support for Address Range Scrub commands (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [include] libnvdimm: Update name of the ars_status_record mask field (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-- [nvdimm] libnvdimm, btt: sparse fix (Jeff Moyer) [1345801 1348502 1348836 1350149 1350156]
-
-* Thu Jul 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-468.el7]
-- [net] ipv6: Fix mem leak in rt6i_pcpu (Hannes Frederic Sowa) [1353128]
-- [net] skb: preserve value for head_frag and xmit more (Paolo Abeni) [1334175]
-- [net] sctp: sctp_diag should fill RMEM_ALLOC with asoc->rmem_alloc when rcvbuf_policy is set (Xin Long) [1350871]
-- [net] team: Fix possible deadlock during team enslave (Xin Long) [1350865]
-- [net] Handle csum for CHECKSUM_COMPLETE VXLAN forwarding (Jakub Sitnicki) [1321674]
-- [net] bridge: disable softirqs around br_fdb_update to avoid lockup (Davide Caratti) [1330674]
-- [net] tcp: fix tcp_mark_head_lost to check skb len before fragmenting (Thadeu Lima de Souza Cascardo) [1215352]
-- [net] sctp: change sk state to CLOSED instead of CLOSING in sctp_sock_migrate (Xin Long) [1251529]
-- [net] sctp: sctp should change socket state when shutdown is received (Xin Long) [1251529]
-- [net] Add trace events for all receive entry points, exposing more skb fields (Davide Caratti) [1330669]
-- [net] netfilter: cttimeout: add netns support (Eric Garver) [1257397]
-- [net] netfilter: cttimeout: add rcu_barrier() on module removal (Eric Garver) [1257397]
-- [net] netfilter: conntrack: fix crash on timeout object removal (Eric Garver) [1257397]
-- [net] netfilter: cttimeout: allow to set/get default protocol timeouts (Eric Garver) [1257397]
-- [x86] kvm: set vector hashing default to false (Radim Krcmar) [1354561]
-- [ata] libata: Allocate device_rh() before use (Prarit Bhargava) [1354380]
-- [i2c] i2c-core: Allocate device_rh() before use (Prarit Bhargava) [1354389]
-- [usb] xhci: Add broken streams quirk for Frescologic device id 1009 (Torez Smith) [1342092]
-- [edac] sb_edac: Fix rank lookup on Broadwell (Aristeu Rozanski) [1275160]
-- [input] wacom: Fix a Cintiq 27QHD touch issue (Aristeu Rozanski) [1342989]
-- [input] hid: wacom: Add missing ABS_MISC event and feature declaration for 27QHD (Aristeu Rozanski) [1342989]
-- [input] hid: wacom: add support for Cintiq 27QHD and 27QHD touch (Aristeu Rozanski) [1342989]
-- [input] hid: wacom: add defines for new Cintiq and DTU outbound tracking (Aristeu Rozanski) [1342989]
-- [input] wacom - process outbound for newer Cintiqs (Aristeu Rozanski) [1342989]
-- [iommu] amd: Fix unity mapping initialization race (Myron Stowe) [1340546]
-- [kernel] replace some read_lock(&tasklist_lock)'s with tasklist_read_lock() (Oleg Nesterov) [1243748]
-- [kernel] replace write_lock_irq(&tasklist_lock) with tasklist_write_lock_irq() (Oleg Nesterov) [1243748]
-- [kernel] introduce tasklist_read_lock() and tasklist_write_lock_irq() (Oleg Nesterov) [1243748]
-- [netdrv] e1000e: prevent division by zero if TIMINCA is zero (Denys Vlasenko) [1340499]
-- [netdrv] e1000e: e1000e_cyclecounter_read(): incvalue is 32 bits, not 64 (Denys Vlasenko) [1340499]
-- [powerpc] jit: Disable classic BPF JIT on ppc64le (Thadeu Lima de Souza Cascardo) [1342922]
-- [powerpc] pseries: start rtasd before PCI probing (David Gibson) [1261718]
-
-* Tue Jul 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-467.el7]
-- [fs] nfsd: allow SCSI layout support without Block layout (Benjamin Coddington) [1305094]
-- [fs] nfsd: better layoutupdate bounds-checking (Benjamin Coddington) [1305094]
-- [fs] nfsd: block and scsi layout drivers need to depend on CONFIG_BLOCK (Benjamin Coddington) [1305094]
-- [fs] nfsd: add SCSI layout support (Benjamin Coddington) [1305094]
-- [fs] nfsd: add a new config option for the block layout driver (Benjamin Coddington) [1305094]
-- [fs] nfsd: move some blocklayout code (Benjamin Coddington) [1305094]
-- [fs] nfsd/blocklayout: accept any minlength (Benjamin Coddington) [1305094]
-- [fs] nfsd: Printk blocklayout length and offset as format 0xllx (Benjamin Coddington) [1305094]
-- [fs] nfs: Mark block and SCSI layouts as tech preview on client (Benjamin Coddington) [1305092]
-- [fs] nfs/blocklayout: make sure making a aligned read request (Benjamin Coddington) [1305092]
-- [fs] pnfs/blocklayout: fix a memeory leak when using, vmalloc_to_page (Benjamin Coddington) [1305092]
-- [fs] rpc_pipefs.c: get rid of f_dentry (Benjamin Coddington) [1305092]
-- [fs] nfs/blocklayout: add SCSI layout support (Benjamin Coddington) [1305092]
-- [fs] lib/vsprintf.c: fix potential NULL deref in hex_string (Benjamin Coddington) [1305092]
-- [fs] nfs4.h: add SCSI layout definitions (Benjamin Coddington) [1305092]
-- [fs] ovl: fix dentry leak for default_permissions (Miklos Szeredi) [1350818]
-- [fs] gfs2: Check rs_free with rd_rsspin protection (Robert S Peterson) [1349596]
-- [fs] xfs: cancel eofblocks background trimming on remount read-only (Brian Foster) [1339414]
-- [fs] ext4: verify block bitmap even after fresh initialization (Lukas Czerner) [1079962]
-- [fs] ext4: fix reservation release on invalidatepage for delalloc fs (Lukas Czerner) [1039029]
-- [fs] ext4: update c/mtime on truncate up (Lukas Czerner) [1227225]
-- [fs] ext4: only call ext4_truncate when size <= isize (Lukas Czerner) [1227225]
-
-* Tue Jul 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-466.el7]
-- [bluetooth] Replace constant hw_variant from Intel Bluetooth firmware filename (Don Zickus) [1353256]
-- [bluetooth] Add support for Intel Bluetooth device 3168 [8087:0aa7] (Don Zickus) [1353256]
-- [bluetooth] Add support for Intel Bluetooth device 8265 [8087:0a2b] (Don Zickus) [1353256]
-- [net] bluetooth: 6lowpan: Fix memory corruption of ipv6 destination address (Don Zickus) [1353035]
-- [bluetooth] vhci: Fix race at creating hci device (Don Zickus) [1353035]
-- [bluetooth] vhci: purge unhandled skbs (Don Zickus) [1353035]
-- [bluetooth] vhci: fix open_timeout vs. hdev race (Don Zickus) [1353035]
-- [net] bluetooth: Fix potential buffer overflow with Add Advertising (Don Zickus) [1353035]
-- [net] bluetooth: Fix setting correct flags in AD (Don Zickus) [1353035]
-- [net] bluetooth: Increment management interface revision (Don Zickus) [1353035]
-- [net] bluetooth: Add support for limited privacy mode (Don Zickus) [1353035]
-- [net] bluetooth: Fix adding discoverable to adv instance flags (Don Zickus) [1353035]
-- [net] bluetooth: Move memset closer to where it's needed (Don Zickus) [1353035]
-- [bluetooth] btmrvl_sdio: fix firmware activation failure (Don Zickus) [1353035]
-- [bluetooth] btusb: Add a new AR3012 ID 13d3:3472 (Don Zickus) [1353035]
-- [bluetooth] hci_bcm: Add BCM2E55 ACPI ID used in Lenovo ThinkPad Tablet 8 (Don Zickus) [1353035]
-- [bluetooth] hci_uart: Add diag and address support for Intel/AG6xx (Don Zickus) [1353035]
-- [bluetooth] btusb: Add a new AR3012 ID 04ca:3014 (Don Zickus) [1353035]
-- [bluetooth] hci_uart: Add Intel/AG6xx support (Don Zickus) [1353035]
-- [net] bluetooth: hci_core: cancel power off delayed work properly (Don Zickus) [1353035]
-- [bluetooth] Add new AR3012 ID 0489:e095 (Don Zickus) [1353035]
-- [bluetooth] btbcm: Fix handling of firmware not found (Don Zickus) [1353035]
-- [bluetooth] hci_bcm: Add BCM2E7C ACPI ID (Don Zickus) [1353035]
-- [bluetooth] hci_bcm: Add new ACPI ID for bcm43241 (Don Zickus) [1353035]
-- [bluetooth] btusb: Add new AR3012 ID 13d3:3395 (Don Zickus) [1353035]
-- [bluetooth] hci_intel: Fix a wrong comparison (Don Zickus) [1353035]
-- [net] bluetooth: Use managed version of led_trigger_register in LED trigger (Don Zickus) [1353035]
-- [bluetooth] ath3k: Fixed a blank line after declaration issue (Don Zickus) [1353035]
-- [net] bluetooth: add LED trigger for indicating HCI is powered up (Don Zickus) [1353035]
-
-* Tue Jul 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-465.el7]
-- [kernel] printk: git rid of sched_delayed message for printk_deferred (Jeremy McNicoll) [1340919]
-- [kernel] printk: enable interrupts before calling console_trylock_for_printk() (Jeremy McNicoll) [1340919]
-- [kernel] timer: Fix lock inversion between hrtimer_bases.lock and scheduler locks (Jeremy McNicoll) [1340919]
-- [kernel] revert "printk: enable interrupts before calling console_trylock_for_printk()" (Jeremy McNicoll) [1340919]
-- [kernel] timekeeping: use printk_deferred when holding timekeeping seqlock (Jeremy McNicoll) [1340919]
-- [kernel] printk: rename printk_sched to printk_deferred (Jeremy McNicoll) [1340919]
-- [kernel] printk: Add printk_deferred_once (Jeremy McNicoll) [1340919]
-- [kernel] printk: disable preemption for printk_sched (Jeremy McNicoll) [1340919]
-- [kernel] printk: remove separate printk_sched buffers and use printk buf instead (Jeremy McNicoll) [1340919]
-- [kernel] printk: enable interrupts before calling console_trylock_for_printk() (Jeremy McNicoll) [1340919]
-- [kernel] printk: release lockbuf_lock before calling console_trylock_for_printk() (Jeremy McNicoll) [1340919]
-- [x86] cpufeature: Enable new AVX-512 features (Rui Wang) [1349737]
-- [x86] fpu: Disable dependent CPU features on "noxsave" (Rui Wang) [1349737]
-- [x86] Mark Kabylake-U/Y client processors as supported (David Arcari) [1305700]
-- [x86] Mark Intel Knights Landing-F processor as supported (Steve Best) [1333551]
-- [scsi] ipr: Clear interrupt on croc/crocodile when running with LSI (Steve Best) [1352978]
-- [netdrv] bonding: fix enslavement slave link notifications (Jarod Wilson) [1353686]
-- [cpufreq] powernv: Remove flag use-case of policy->driver_data (Gustavo Duarte) [1346246]
-- [cpufreq] powernv: Introduce ->ready() callback for cpufreq drivers (Gustavo Duarte) [1346246]
-- [cpufreq] powernv: Add sysfs attributes to show throttle stats (Gustavo Duarte) [1346246]
-- [cpufreq] Fix formatting issues in 'struct cpufreq_driver' (Gustavo Duarte) [1346246]
-- [infiniband] rdma/cxgb3: device driver frees DMA memory with different size (Honggang Li) [1296807]
-
-* Fri Jul 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-464.el7]
-- [fwnode] introduce get_rh_dev_fwnode() and set_rh_dev_fwnode() (Prarit Bhargava) [1331018]
-- [x86] mfd: Add ACPI support (Prarit Bhargava) [1331018]
-- [x86] mfd: intel-lpss: Pass HSUART configuration via properties (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Convert to use unified device property API (Prarit Bhargava) [1331018]
-- [x86] i2c: add ACPI support for I2C mux ports (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: reverts "i2c: designware: Add support for AMD I2C controller" (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Do not use parameters from ACPI on Dell Inspiron 7348 (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Move common probe code into i2c_dw_probe() (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Make sure the device is suspended before disabling runtime PM (Prarit Bhargava) [1331018]
-- [x86] acpi: Introduce has_acpi_companion() (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Suppress error message if platform_get_irq() < 0 (Prarit Bhargava) [1331018]
-- [x86] i2c: remove FSF address (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Add support for AMD I2C controller (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Rework probe() to get clock a bit later (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Default to fast mode in case of ACPI (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: add support of platform data to set I2C mode (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: add support of I2C standard mode (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: Disable device on system suspend (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: make SCL and SDA falling time configurable (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: add new ACPI IDs (Prarit Bhargava) [1331018]
-- [x86] i2c: i2c-designware-platdrv: replace platform_driver_probe to support deferred probing (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: get SDA hold time, HCNT and LCNT configuration from ACPI (Prarit Bhargava) [1331018]
-- [x86] i2c: designware: add CONFIG_PM_SLEEP to suspend/resume functions (Prarit Bhargava) [1331018]
-- [x86] i2c-designware: use div_u64 to fix link (Prarit Bhargava) [1331018]
-- [x86] i2c-designware: make SDA hold time configurable (Prarit Bhargava) [1331018]
-- [x86] drivers/i2c/busses: don't check resource with devm_ioremap_resource (Prarit Bhargava) [1331018]
-- [x86] mfd: intel-lpss: Pass SDA hold time to I2C host controller driver (Prarit Bhargava) [1331018]
-- [x86] mfd: intel-lpss: Add support for passing device properties (Prarit Bhargava) [1331018]
-- [x86] driver core: Do not overwrite secondary fwnode with NULL if it is set (Prarit Bhargava) [1331018]
-- [x86] mfd: core: propagate device properties to sub devices drivers (Prarit Bhargava) [1331018]
-- [x86] driver core: platform: Add support for built-in device properties (Prarit Bhargava) [1331018]
-- [x86] acpi / property: fix data node parsing in acpi_get_next_subnode() (Prarit Bhargava) [1331018]
-- [x86] device property: fix for a case of use-after-free (Prarit Bhargava) [1331018]
-- [x86] device property: fwnode->secondary may contain ERR_PTR(-ENODEV) (Prarit Bhargava) [1331018]
-- [x86] device property: avoid allocations of 0 length (Prarit Bhargava) [1331018]
-- [x86] device property: the secondary fwnode needs to depend on the primary (Prarit Bhargava) [1331018]
-- [x86] device property: add spaces to PROPERTY_ENTRY_STRING macro (Prarit Bhargava) [1331018]
-- [x86] include/linux/property.h: fix build issues with gcc-4.4.4 (Prarit Bhargava) [1331018]
-- [x86] device property: Take a copy of the property set (Prarit Bhargava) [1331018]
-- [x86] device property: Fallback to secondary fwnode if primary misses the property (Prarit Bhargava) [1331018]
-- [x86] device property: return -EINVAL when property isn't found in ACPI (Prarit Bhargava) [1331018]
-- [x86] device property: improve readability of macros (Prarit Bhargava) [1331018]
-- [x86] device property: helper macros for property entry creation (Prarit Bhargava) [1331018]
-- [x86] device property: keep single value inplace (Prarit Bhargava) [1331018]
-- [x86] device property: refactor built-in properties support (Prarit Bhargava) [1331018]
-- [x86] device property: rename helper functions (Prarit Bhargava) [1331018]
-- [x86] device property: always check for fwnode type (Prarit Bhargava) [1331018]
-- [x86] rhel: remove temporary device_dma_is_coherent() (Prarit Bhargava) [1331018]
-- [x86] device property: Adding DMA Attribute APIs for Generic Devices (Prarit Bhargava) [1331018]
-- [x86] device property: Introducing enum dev_dma_attr (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Fix subnode lookup scope for data-only subnodes (Prarit Bhargava) [1331018]
-- [x86] device property: Add fwnode_property_match_string() (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Extend device_get_next_child_node() to data-only nodes (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Extend fwnode_property_* to data-only subnodes (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Expose data-only subnodes via sysfs (Prarit Bhargava) [1331018]
-- [x86] acpi / scan: Move sysfs-related device code to a separate file (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Add support for data-only subnodes (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Add routine for extraction of _DSD properties (Prarit Bhargava) [1331018]
-- [x86] device property: Don't overwrite addr when failing in device_get_mac_address (Prarit Bhargava) [1331018]
-- [x86] device property: Return -ENXIO if there is no suitable FW interface (Prarit Bhargava) [1331018]
-- [x86] device property: attach 'else if' to the proper 'if' (Prarit Bhargava) [1331018]
-- [x86] device property: fallback to pset when gettng one string (Prarit Bhargava) [1331018]
-- [x86] device property: Add ETH_ALEN check, update comments (Prarit Bhargava) [1331018]
-- [x86] Add a matching set of device_ functions for determining mac/phy (Prarit Bhargava) [1331018]
-- [x86] phy: re-design phy_modes to be self-contained (Prarit Bhargava) [1331018]
-- [x86] device property: fix potential NULL pointer dereference (Prarit Bhargava) [1331018]
-- [x86] acpi / of: Rename of_node() and acpi_node() to to_of_node() and to_acpi_node() (Prarit Bhargava) [1331018]
-- [x86] rhel: add device_dma_is_coherent() (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Define a symbol for PRP0001 (Prarit Bhargava) [1331018]
-- [x86] acpi / scan: Rework modalias creation when "compatible" is present (Prarit Bhargava) [1331018]
-- [x86] acpi / scan: Simplify acpi_match_device() (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Refine consistency check for PRP0001 (Prarit Bhargava) [1331018]
-- [x86] acpi: Allow drivers to match using Device Tree compatible property (Prarit Bhargava) [1331018]
-- [x86] acpi: fix create_modalias() return value handling (Prarit Bhargava) [1331018]
-- [x86] device property: Introduce firmware node type for platform data (Prarit Bhargava) [1331018]
-- [x86] device property: Make it possible to use secondary firmware nodes (Prarit Bhargava) [1331018]
-- [x86] driver core: Implement device property accessors through fwnode ones (Prarit Bhargava) [1331018]
-- [x86] driver core: property: Update fwnode_property_read_string_array() (Prarit Bhargava) [1331018]
-- [x86] driver core: Fix missing whitespace in function argument (Prarit Bhargava) [1331018]
-- [x86] driver core: Add comments about returning array counts (Prarit Bhargava) [1331018]
-- [x86] driver core / acpi: Represent ACPI companions using fwnode_handle (Prarit Bhargava) [1331018]
-- [x86] acpi / property: Drop size_prop from acpi_dev_get_property_reference() (Prarit Bhargava) [1331018]
-- [x86] device, add device_rh_alloc() (Prarit Bhargava) [1331018]
-- [x86] mfd: Add support for Intel Sunrisepoint LPSS devices (Prarit Bhargava) [1331018]
-- [x86] dmaengine: add a driver for Intel integrated DMA 64-bit (Prarit Bhargava) [1331018]
-- [x86] mfd: make mfd_remove_devices() iterate in reverse order (Prarit Bhargava) [1331018]
-- [x86] driver core: wakeup the parent device before trying probe (Prarit Bhargava) [1331018]
-- [x86] acpi / pm: Attach ACPI power domain only once (Prarit Bhargava) [1331018]
-- [x86] driver core: implement device_for_each_child_reverse() (Prarit Bhargava) [1331018]
-- [x86] klist: implement klist_prev() (Prarit Bhargava) [1331018]
-- [x86] pm / qos: Make it possible to expose device latency tolerance to userspace (Prarit Bhargava) [1331018]
-- [x86] clkdev: add clkdev_create() helper (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Create a generic dma_slave_caps callback (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Introduce a device_config callback (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Add device_terminate_all callback (Prarit Bhargava) [1331018]
-- [x86] dmaengine: split out pause/resume operations from device_control (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Make the destination abbreviation coherent (Prarit Bhargava) [1331018]
-- [x86] acpi: Use ACPI companion to match only the first physical device (Prarit Bhargava) [1331018]
-- [x86] dma: Indicate residue granularity in dma_slave_caps (Prarit Bhargava) [1331018]
-- [x86] mfd: Stop setting refcounting pointers in original mfd_cell arrays (Prarit Bhargava) [1331018]
-- [x86] dma-api: provide a helper to setup DMA masks (Prarit Bhargava) [1331018]
-- [x86] dmaengine: use DMA_COMPLETE for dma completion status (Prarit Bhargava) [1331018]
-- [x86] dmaengine: dma_slave_caps: remove sg entries (Prarit Bhargava) [1331018]
-- [x86] dmaengine: add dma_slave_get_caps api (Prarit Bhargava) [1331018]
-- [x86] dmaengine: Remove the need to declare device_control (Prarit Bhargava) [1331018]
-
-* Fri Jul 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-463.el7]
-- [virt] kvm: x86: Check dest_map->vector to match eoi signals for rtc (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Track irq vectors in ioapic->rtc_status.dest_map (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Convert ioapic->rtc_status.dest_map to a struct (Paolo Bonzini) [1347370]
-- [virt] kvm: add missing memory barrier in kvm_{make, check}_request (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: remove eager_fpu field of struct kvm_vcpu_arch (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: disable MPX if host did not enable MPX XSAVE features (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: consolidate different ways to test for in-kernel LAPIC (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: consolidate "has lapic" checks into irq.c (Paolo Bonzini) [1347370]
-- [virt] kvm: apic: remove unnecessary double checks on APIC existence (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: mmu: Use clear_page() instead of init_shadow_page_table() (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: don't notify userspace IOAPIC on edge EOI (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: request interrupt window when IRQ chip is split (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: set KVM_REQ_EVENT on local interrupt request from user space (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: split kvm_vcpu_ready_for_interrupt_injection out of dm_request_for_irq_injection (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fix interrupt window handling in split IRQ chip case (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Add support for local interrupt requests from userspace (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Add EOI exit bitmap inference (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Add KVM exit for IOAPIC EOIs (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Split the APIC from the rest of IRQCHIP (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: unify handling of interrupt window (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: introduce lapic_in_kernel (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: replace vm_has_apicv hook with cpu_uses_apicv (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: store IOAPIC-handled vectors in each VCPU (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: set TMR when the interrupt is accepted (Paolo Bonzini) [1347370]
-- [virt] kvm: introduce vcpu_debug = kvm_debug + vcpu context (Paolo Bonzini) [1347370]
-- [virt] kvm/x86: move Hyper-V MSR's/hypercall code into hyperv.c file (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: move kvm_set_irq_inatomic to legacy device assignment (Paolo Bonzini) [1347370]
-- [virt] kvm: device assignment: remove pointless #ifdefs (Paolo Bonzini) [1347370]
-- [virt] kvm: ppc: book3s hv: Re-enable XICS fast path for irqfd-generated interrupts (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: merge kvm_arch_set_irq with kvm_set_msi_inatomic (Paolo Bonzini) [1347370]
-- [virt] kvm/irqchip: allow only multiple irqchip routes per GSI (Paolo Bonzini) [1347370]
-- [virt] kvm/eventfd: add arch-specific set_irq (Paolo Bonzini) [1347370]
-- [virt] kvm/eventfd: factor out kvm_notify_acked_gsi() (Paolo Bonzini) [1347370]
-- [virt] kvm/eventfd: avoid loop inside irqfd_update() (Paolo Bonzini) [1347370]
-- [virt] kvm: robustify steal time record (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: optimize steal time calculation (Paolo Bonzini) [1347370]
-- [virt] kvm: set page dirty only if page has been writable (Paolo Bonzini) [1347370]
-- [virt] kvm: mmu: fix reserved bit check for ept=0/CR0.WP=0/CR4.SMEP=1/EFER.NX=0 (Paolo Bonzini) [1347370]
-- [virt] kvm: mmu: fix ept=0/pte.u=1/pte.w=0/CR0.WP=0/CR4.SMEP=1/EFER.NX=0 combo (Paolo Bonzini) [1347370]
-- [virt] kvm: mmu: micro-optimize gpte_access (Paolo Bonzini) [1347370]
-- [virt] kvm: mmu: simplify last_pte_bitmap (Paolo Bonzini) [1347370]
-- [virt] kvm: vmx: use vmcs_clear/set_bits for debug register exits (Paolo Bonzini) [1347370]
-- [virt] kvm: i8254: change PIT discard tick policy (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: mmu: fix ubsan index-out-of-range warning (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fix *NULL on invalid low-prio irq (Paolo Bonzini) [1347370]
-- [virt] kvm: vmx: Fix guest debugging while in L2 (Paolo Bonzini) [1347370]
-- [virt] kvm: vmx: Factor out is_exception_n helper (Paolo Bonzini) [1347370]
-- [virt] iommu, x86: Properly handle posted interrupts for IOMMU hotplug (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: rename process_smi to enter_smm, process_smi_request to process_smi (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid simultaneous queueing of both IRQ and SMI (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fix ordering of cr0 initialization code in vmx_cpu_reset (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fix OOPS after invalid KVM_SET_DEBUGREGS (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid vmalloc(0) in the KVM_SET_CPUID (Paolo Bonzini) [1347370]
-- [virt] kvm: irqfd: fix NULL pointer dereference in kvm_irq_map_gsi (Paolo Bonzini) [1347370]
-- [virt] kvm: fail KVM_SET_VCPU_EVENTS with invalid exception number (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid vmalloc(0) in the KVM_SET_CPUID (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid warning on repeated KVM_SET_TSS_ADDR (Paolo Bonzini) [1347370]
-- [virt] kvm: Handle MSR_IA32_PERF_CTL (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: avoid write-tearing of TDP (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: emulate: correct page fault error code for NoWrite instructions (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Emulation of call may use incorrect stack size (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: 32-bit wraparound read/write not emulated correctly (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Fix defines in emulator.c (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: ARPL emulation can cause spurious exceptions (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Wrong operand size for far ret (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: #PF error-code on R/W operations is wrong (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Access to LDT/GDT that wraparound is incorrect (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Do not set access bit on accessed segments (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: POP [ESP] is not emulated correctly (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: em_call_far should return failure result (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: JMP/CALL using call- or task-gate causes exception (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: fnstcw and fnstsw may cause spurious exception (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: pop sreg accesses only 2 bytes (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: Inject pending interrupt even if pending nmi exist (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: reduce default value of halt_poll_ns parameter (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: do not leak guest xcr0 into host interrupt handlers (Paolo Bonzini) [1347370]
-- [virt] kvm: x86: mask CPUID(0xD, 0x1).EAX against host value (Paolo Bonzini) [1347370]
-
-* Thu Jul 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-462.el7]
-- [scsi] sd: Fix rw_max for devices that report an optimal xfer size (Maurizio Lombardi) [1298281]
-- [net] vmw_vsock/af_vsock: drop unneeded semicolon (Neil Horman) [1349017]
-- [net] vsock: Detach QP check should filter out non matching QPs (Neil Horman) [1349017]
-- [x86] perf: Add Goldmont support (Jiri Olsa) [1273758]
-- [x86] perf: Add model number for Skylake Server to perf (Jiri Olsa) [1273753]
-- [x86] Mark Intel Denverton processor as supported (Steve Best) [1312184]
-- [vhost] vhost-net: extend device allocation to vmalloc (Jason Wang) [1290392]
-- [sound] alsa: hda / realtek - add two more Thinkpad IDs (5050,5053) for tpt460 fixup (Jaroslav Kysela) [1349539]
-- [sound] alsa: hda - Add PCI ID for Kabylake-H (Jaroslav Kysela) [1304284]
-- [sound] alsa: hda - Add PCI ID for Kabylake (Jaroslav Kysela) [1304284]
-- [sound] alsa: regmap: hdac_regmap - fix the register access for runtime PM (Jaroslav Kysela) [1285520]
-- [sound] alsa: regmap: regcache: allow read-only regs to be cached (Jaroslav Kysela) [1285520]
-- [sound] alsa: regmap: rbtree: When adding a reg do a bsearch for target node (Jaroslav Kysela) [1285520]
-- [sound] alsa: regmap: regcache-rbtree: Clean new present bits on present bitmap resize (Jaroslav Kysela) [1285520]
-- [netdrv] mlx4_en: Fix the return value of a failure in VLAN VID add/kill (kamal heib) [1243338]
-- [netdrv] mlx5: E-Switch, Modify node guid on vf set MAC (kamal heib) [1350475]
-- [netdrv] mlx4_en: Add support for inner IPv6 checksum offloads and TSO (kamal heib) [1192585]
-- [netdrv] bonding: prevent out of bound accesses (Jarod Wilson) [1352086]
-- [kernel] ptrace: task_clear_jobctl_trapping()->wake_up_bit() needs mb() (Daniel Bristot de Oliveira) [1350624]
-- [powerpc] powernv: Handle irq_happened flag correctly in off-line loop (David Gibson) [1344224]
-- [powerpc] perf: Export Power8 generic and cache events to sysfs (Gustavo Duarte) [1305079]
-- [powerpc] perf: Remove PME_ prefix for power7 events (Gustavo Duarte) [1305079]
-- [powerpc] powerpc/pseries/eeh: Refactor the configure_bridge RTAS tokens (Gustavo Duarte) [1343071]
-- [powerpc] powerpc/pseries/eeh: Handle RTAS delay requests in configure_bridge (Gustavo Duarte) [1343071]
-
-* Mon Jul 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-461.el7]
-- [net] dcb: fix accessing to extended ops (Ivan Vecera) [1341005]
-- [net] netlabel: handle sparse category maps in netlbl_catmap_getlong() (Paul Moore) [1321176]
-- [security] selinux: import NetLabel category bitmaps correctly (Paul Moore) [1321176]
-- [net] netlabel: fix a problem with netlbl_secattr_catmap_setrng() (Paul Moore) [1321176]
-- [net] sctp: do not leak chunks that are sent to unconfirmed paths (Marcelo Leitner) [1337639]
-- [net] sctp: consolidate local_bh_disable/enable + spin_lock/unlock to _bh variant (Marcelo Leitner) [1337639]
-- [net] sctp: fix copying more bytes than expected in sctp_add_bind_addr (Marcelo Leitner) [1337639]
-- [net] sctp: Fix port hash table size computation (Marcelo Leitner) [1337639]
-- [net] sctp: move rcu_read_lock from __sctp_lookup_association to sctp_lookup_association (Marcelo Leitner) [1337639]
-- [net] sctp: remove rcu_read_lock in sctp_seq_dump_remote_addrs() (Marcelo Leitner) [1337639]
-- [net] sctp: remove the unused sctp_datamsg_free() (Marcelo Leitner) [1337639]
-- [net] sctp: allow setting SCTP_SACK_IMMEDIATELY by the application (Marcelo Leitner) [1337639]
-- [net] sctp: fix use-after-free in pr_debug statement (Marcelo Leitner) [1337639]
-- [net] sctp: prevent writes to cookie_hmac_alg from accessing invalid memory (Marcelo Leitner) [1337639]
-- [net] sctp: use GFP_USER for user-controlled kmalloc (Marcelo Leitner) [1337639]
-- [net] sctp: dynamically enable or disable pf state (Marcelo Leitner) [1337639]
-- [net] sctp: clone options to avoid use after free (Marcelo Leitner) [1337639]
-- [net] sctp: only drop the reference on the datamsg after sending a msg (Marcelo Leitner) [1337639]
-- [net] sctp: hold the chunks only after the chunk is enqueued in outq (Marcelo Leitner) [1337639]
-- [net] sctp: implement sctp_v6_destroy_sock() (Marcelo Leitner) [1337639]
-- [net] sctp: avoid incorrect time_t use (Marcelo Leitner) [1337639]
-- [net] sctp: Don't use 64 kilobyte lookup table for four elements (Marcelo Leitner) [1337639]
-- [net] sctp: Do not try to search for the transport twice (Marcelo Leitner) [1337639]
-- [net] sctp: Fix mangled IPv4 addresses on a IPv6 listening socket (Marcelo Leitner) [1337639]
-- [net] sctp: fix passing wrong parameter header to param_type2af in sctp_process_param (Marcelo Leitner) [1337639]
-- [net] sctp: not send SCTP_PEER_ADDR_CHANGE notifications with failed probe (Marcelo Leitner) [1337639]
-- [net] sctp: fix possible seqlock seadlock in sctp_packet_transmit() (Marcelo Leitner) [1337639]
-- [net] fix the counter ICMP_MIB_INERRORS/ICMP6_MIB_INERRORS (Marcelo Leitner) [1337639]
-- [net] sctp: Fixup v4mapped behaviour to comply with Sock API (Marcelo Leitner) [1337639]
-- [net] sctp: fix incorrect type in gfp initializer (Marcelo Leitner) [1337639]
-- [net] sctp: add a checking for sctp_sysctl_net_register (Marcelo Leitner) [1337639]
-- [net] sctp: Don't transition to PF state when transport has exhausted 'Path.Max.Retrans'. (Marcelo Leitner) [1337639]
-- [net] sctp: fix skb leakage in COOKIE ECHO path of chunk->auth_chunk (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_bh_[un]lock_sock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_{lock|release}_sock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_read_[un]lock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_write_[un]_lock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_spin_[un]lock (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_local_bh_{disable|enable} (Marcelo Leitner) [1337639]
-- [net] sctp: remove macros sctp_spin_[un]lock_irqrestore (Marcelo Leitner) [1337639]
-- [net] sctp: Remove outqueue empty state (Marcelo Leitner) [1337639]
-- [net] sctp: fix checkpatch errors with open brace '{' and trailing statements (Marcelo Leitner) [1337639]
-- [net] sctp: fix checkpatch errors with space required or prohibited (Marcelo Leitner) [1337639]
-- [net] sctp: fix checkpatch errors with (foo*)|foo * bar|foo* bar (Marcelo Leitner) [1337639]
-- [net] sctp: remove redundant null check on asoc (Marcelo Leitner) [1337639]
-- [net] sctp: check the rto_min and rto_max in setsockopt (Marcelo Leitner) [1337639]
-- [net] sctp: properly latch and use autoclose value from sock to association (Marcelo Leitner) [1337639]
-- [net] sctp: disable max_burst when the max_burst is 0 (Marcelo Leitner) [1337639]
-- [net] sctp: find the correct highest_new_tsn in sack (Marcelo Leitner) [1337639]
-- [net] sctp: fix ASCONF to allow non SCTP_ADDR_SRC addresses in ipv6 (Marcelo Leitner) [1337639]
-- [net] sctp: Remove extern from function prototypes (Marcelo Leitner) [1337639]
-- [net] sctp: sctp_transport_destroy{, _rcu}: fix potential pointer corruption (Marcelo Leitner) [1337639]
-- [net] sctp: sctp_assoc_control_transport: fix MTU size in SCTP_PF state (Marcelo Leitner) [1337639]
-- [net] sctp: get rid of SCTP_DBG_TSNS entirely (Marcelo Leitner) [1337639]
-- [net] sctp: rework debugging framework to use pr_debug and friends (Marcelo Leitner) [1337639]
-- [net] sctp: remove TEST_FRAME ifdef (Marcelo Leitner) [1337639]
-- [net] sctp: decouple cleaning some socket data from endpoint (Marcelo Leitner) [1337639]
-- [net] sctp: remove SCTP_STATIC macro (Marcelo Leitner) [1337639]
-- [net] sctp: get rid of t_new macro for kzalloc (Marcelo Leitner) [1337639]
-- [net] sctp: sctp_sf_do_prm_asoc: do SCTP_CMD_INIT_CHOOSE_TRANSPORT first (Marcelo Leitner) [1337639]
-- [net] sctp: signal sk_data_ready earlier on data chunks reception (Marcelo Leitner) [1058148]
-- [net] sctp: simplify sk_receive_queue locking (Marcelo Leitner) [1058148]
-- [net] sctp: delay calls to sk_data_ready() as much as possible (Marcelo Leitner) [1058148]
-- [net] sctp: compress bit-wide flags to a bitfield on sctp_sock (Marcelo Leitner) [1058148]
-- [net] sctp: avoid refreshing heartbeat timer too often (Marcelo Leitner) [1058148]
-- [net] sctp: do not update a_rwnd if we are not issuing a sack (Marcelo Leitner) [1058148]
-- [net] sctp: improve timer slack calculation for transport HBs (Marcelo Leitner) [1058148]
-- [net] sctp: Fix warning in sctp_packet_transmit_chunk() (Marcelo Leitner) [1278912]
-- [net] sctp: improve debug message to also log curr pkt and new chunk size (Marcelo Leitner) [1278912]
-- [net] sctp: Add GSO support (Marcelo Leitner) [1278912]
-- [net] sctp: delay as much as possible skb_linearize (Marcelo Leitner) [1278912]
-- [net] skbuff: introduce skb_gso_validate_mtu (Marcelo Leitner) [1278912]
-- [net] ipv4: test for IPSKB_FORWARDED in ip_finish_output_gso (Marcelo Leitner) [1278912]
-- [net] skbuff: allow segmenting based on frag sizes (Marcelo Leitner) [1278912]
-- [net] skbuff: export skb_gro_receive (Marcelo Leitner) [1278912]
-- [net] loopback: make use of NETIF_F_GSO_SOFTWARE (Marcelo Leitner) [1278912]
-- [net] gso: Remove arbitrary checks for unsupported GSO (Marcelo Leitner) [1278912]
-- [net] netdev_features: Fold NETIF_F_ALL_TSO into NETIF_F_GSO_SOFTWARE (Marcelo Leitner) [1278912]
-- [net] gro: remove obsolete code from skb_gro_receive() (Marcelo Leitner) [1278912]
-- [net] do not export skb_gro_receive() (Marcelo Leitner) [1278912]
-- [net] sctp: remove the unnecessary assignment (Marcelo Leitner) [1278912]
-- [net] sctp: move skb_dst_set() a bit downwards in sctp_packet_transmit() (Marcelo Leitner) [1278912]
-- [net] sctp: Restore 'resent' bit to avoid retransmitted chunks for RTT measurements (Marcelo Leitner) [1278912]
-- [net] sctp: flush if we can't fit another DATA chunk (Marcelo Leitner) [1071985]
-- [net] sctp: really allow using GFP_KERNEL on sctp_packet_transmit (Marcelo Leitner) [1071985]
-- [net] sctp: allow sctp_transmit_packet and others to use gfp (Marcelo Leitner) [1071985]
-- [net] sctp: align MTU to a word (Marcelo Leitner) [1071985]
-- [net] sctp: use MAX_HEADER for headroom reserve in output path (Marcelo Leitner) [1071985]
-- [net] sctp: Open out the check for Nagle (Marcelo Leitner) [1071985]
-- [net] sctp: Fix data chunk fragmentation for MTU values which are not multiple of 4 (Marcelo Leitner) [1071985]
-- [net] sctp: Add rudimentary infrastructure to account for control chunks (Marcelo Leitner) [1071985]
-
-* Fri Jul 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-460.el7]
-- [fs] Call security_ops->inode_killpriv on truncate (Eric Sandeen) [1197686]
-- [fs] Provide function telling whether file_remove_privs() will do anything (Eric Sandeen) [1197686]
-- [fs] Rename file_remove_suid() to file_remove_privs() (Eric Sandeen) [1197686]
-- [fs] Fix S_NOSEC handling (Eric Sandeen) [1197686]
-- [fs] fanotify: fix double free of pending permission events (Richard Guy Briggs) [1339092]
-- [fs] fsnotify: rename event handling functions (Richard Guy Briggs) [1339092]
-- [fs] fanotify: convert access_mutex to spinlock (Richard Guy Briggs) [1339092]
-- [fs] fanotify: use fanotify event structure for permission response processing (Richard Guy Briggs) [1339092]
-- [fs] fanotify: remove useless bypass_perm check (Richard Guy Briggs) [1339092]
-- [fs] nfsd: recover: fix memory leak ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix deadlock secinfo+readdir compound ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: resfh unused in nfsd4_secinfo ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix a memory leak when meeting unsupported state_protect_how4 ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix bad bounds checking ("J. Bruce Fields") [1344797]
-- [fs] nfsd: add new io class tracepoint ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't hold i_mutex over userspace upcalls ("J. Bruce Fields") [1344797]
-- [fs] nfsd: give up on CB_LAYOUTRECALLs after two lease periods ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix nfsd leaks sunrpc module references ("J. Bruce Fields") [1344797]
-- [fs] lockd: constify nlmsvc_binding structure ("J. Bruce Fields") [1344797]
-- [fs] nfsd: use to_delayed_work ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Register callbacks on the inetaddr_chain and inet6addr_chain ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: Add a function to close temporary transports immediately ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't base cl_cb_status on stale information ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't hold ls_mutex across a layout recall ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Pass filehandle to nfs4_preprocess_stateid_op() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix a warning message ("J. Bruce Fields") [1344797]
-- [fs] nfsd: constify nfsd4_callback_ops structure ("J. Bruce Fields") [1344797]
-- [fs] nfsd: recover: constify nfsd4_client_tracking_ops structures ("J. Bruce Fields") [1344797]
-- [fs] svcrpc: document lack of some memory barriers ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix race with open / open upgrade stateids ("J. Bruce Fields") [1344797]
-- [fs] nfsd: eliminate sending duplicate and repeated delegations ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: drop stale comment in svc_setup_socket() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: ensure that seqid morphing operations are atomic wrt to copies ("J. Bruce Fields") [1344797]
-- [fs] nfsd: serialize layout stateid morphing operations ("J. Bruce Fields") [1344797]
-- [fs] nfsd: improve client_has_state to check for unused openowners ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix clid_inuse on mount with security change ("J. Bruce Fields") [1344797]
-- [fs] nfsd: move include of state.h from trace.c to trace.h ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: Use MSG_SENDPAGE_NOTLAST when calling sendpage() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: switch unsigned char flags in svc_fh to bools ("J. Bruce Fields") [1344797]
-- [fs] nfsd: move svc_fh->fh_maxsize to just after fh_handle ("J. Bruce Fields") [1344797]
-- [fs] nfsd: drop null test before destroy functions ("J. Bruce Fields") [1344797]
-- [fs] nfsd: serialize state seqid morphing operations ("J. Bruce Fields") [1344797]
-- [fs] nfsd: deal with DELEGRETURN racing with CB_RECALL ("J. Bruce Fields") [1344797]
-- [fs] nfsd: return CLID_INUSE for unexpected SETCLIENTID_CONFIRM case ("J. Bruce Fields") [1344797]
-- [fs] nfsd: allow more than one laundry job to run at a time ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't WARN/backtrace for invalid container deployment. ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Return word2 bitmask if setting security label in OPEN/CREATE ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Set the attributes used to store the verifier for EXCLUSIVE4_1 ("J. Bruce Fields") [1344797]
-- [fs] nfsd: SUPPATTR_EXCLCREAT must be encoded before SECURITY_LABEL. ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix an FS_LAYOUT_TYPES/LAYOUT_TYPES encode bug ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Store parent's stat in a separate value ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix two typos in comments ("J. Bruce Fields") [1344797]
-- [fs] nfsd: include linux/nfs4.h in export.h ("J. Bruce Fields") [1344797]
-- [fs] sunrpc/nfsd: Remove redundant code by exports seq_operations functions ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: Store cache_detail in seq_file's private ("J. Bruce Fields") [1344797]
-- [fs] nfsd: New helper nfsd4_cb_sequence_done() for processing more cb errors ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove unused clientid arguments from, find_lockowner_str{_locked} ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Use lk_new_xxx instead of v.new.xxx for nfs4_lockowner ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove macro LOFF_OVERFLOW ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove duplicate checking of nfsd_net in nfs4_laundromat() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove nfs4_set_claim_prev() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Drop duplicate checking of seqid in nfsd4_create_session() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove unneeded values in nfsd4_open() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Add missing gen_confirm in nfsd4_setclientid() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: New counter for generating client confirm verifier ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix memory leak of so_owner.data in nfs4_stateowner ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Add layouts checking in client_has_state() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix a memory leak of struct file_lock ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: factor svc_rqst allocation and freeing from sv_nrthreads refcounting ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: move pool_mode definitions into svc.h ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: abstract out svc_set_num_threads to sv_ops ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: turn enqueueing a svc_xprt into a svc_serv operation ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: move sv_module parm into sv_ops ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: move sv_function into sv_ops ("J. Bruce Fields") [1344797]
-- [fs] nfsd/sunrpc: add a new svc_serv_ops struct and move sv_shutdown into it ("J. Bruce Fields") [1344797]
-- [fs] nfsd: do nfs4_check_fh in nfs4_check_file instead of nfs4_check_olstateid ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Add macro NFS_ACL_MASK for ACL ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove duplicate define of IDMAP_NAMESZ/IDMAP_TYPE_xx ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Drop including client's header file nfs_fs.h ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Set lc_size_chg before ops->proc_layoutcommit ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix a memory leak in nfsd4_list_rec_dir() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix a file leak on nfsd4_layout_setlease failure ("J. Bruce Fields") [1344797]
-- [fs] nfsd: wrap too long lines in nfsd4_encode_read ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fput rd_file from XDR encode context ("J. Bruce Fields") [1344797]
-- [fs] nfsd: take struct file setup fully into nfs4_preprocess_stateid_op ("J. Bruce Fields") [1344797]
-- [fs] nfsd: refactor nfs4_preprocess_stateid_op ("J. Bruce Fields") [1344797]
-- [fs] nfsd: clean up raparams handling ("J. Bruce Fields") [1344797]
-- [fs] nfsd: use swap() in sort_pacl_range() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Update callback sequnce id only CB_SEQUENCE success ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Reset cb_status in nfsd4_cb_prepare() at retrying ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: Move EXPORT_SYMBOL for svc_process ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove dead declarations ("J. Bruce Fields") [1344797]
-- [fs] nfsd: work around a gcc-5.1 warning ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Checking for acl support does not require fetching any acls ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Disable NFSv2 timestamp workaround for NFSv3+ ("J. Bruce Fields") [1344797]
-- [fs] nfsd: stop READDIRPLUS returning inconsistent attributes ("J. Bruce Fields") [1344797]
-- [fs] nfsd: remove nfsd_close ("J. Bruce Fields") [1344797]
-- [fs] nfsd: skip CB_NULL probes for 4.1 or later ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix callback restarts ("J. Bruce Fields") [1344797]
-- [fs] nfsd: split transport vs operation errors for callbacks ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix pNFS return on close semantics ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix the check for confirmed openowner in nfs4_preprocess_stateid_op ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix READ permission checking ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Remove duplicate macro define for max sec label length ("J. Bruce Fields") [1344797]
-- [fs] nfsd: allow setting acls with unenforceable DENYs ("J. Bruce Fields") [1344797]
-- [fs] nfsd: NFSD_FAULT_INJECTION depends on DEBUG_FS ("J. Bruce Fields") [1344797]
-- [fs] nfsd: remove unused status arg to nfsd4_cleanup_open_state ("J. Bruce Fields") [1344797]
-- [fs] nfsd: remove bogus setting of status in nfsd4_process_open2 ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Use correct reply size calculating function ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Using path_equal() for checking two paths ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix bad update of layout in nfsd4_return_file_layout ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Take care the return value from nfsd4_encode_stateid ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Put exports after nfsd4_layout_verify fail ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Take care the return value from nfsd4_decode_stateid ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Check layout type when returning client layouts ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix v3-less build ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix comparison in fh_fsid_match() ("J. Bruce Fields") [1344797]
-- [fs] sunrpc/lockd: fix references to the BKL ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix year-2038 nfs4 state problem ("J. Bruce Fields") [1344797]
-- [fs] nfsd: nfs4state: Remove unused function ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: tweak rd_dircount accounting ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fi_delegees doesn't need to be an atomic_t ("J. Bruce Fields") [1344797]
-- [fs] nfsd: don't keep a pointer to the lease in nfs4_file ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix fi_delegees leak when fi_had_conflict returns true ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: only call test_bit once in svc_xprt_received ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix signedness bug in compare_blob ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: add some tracepoints around enqueue and dequeue of svc_xprt ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: convert to lockless lookup of queued server threads ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: fix potential races in pool_stats collection ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: add a rcu_head to svc_rqst and use kfree_rcu to free it ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: require svc_create callers to pass in meaningful shutdown routine ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: have svc_wake_up only deal with pool 0 ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: convert sp_task_pending flag to use atomic bitops ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_cachetype field to better optimize space ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_splice_ok flag into rq_flags ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_dropme flag into rq_flags ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_usedeferral flag to rq_flags ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: move rq_local field to rq_flags ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: add a generic rq_flags field to svc_rqst and move rq_secure to it ("J. Bruce Fields") [1344797]
-- [fs] nfsd: minor off by one checks in __write_versions() ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: release svc_pool_map reference when serv allocation fails ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: eliminate the XPT_DETACHED flag ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Fix slot wake up race in the nfsv4.1 callback code ("J. Bruce Fields") [1344797]
-- [fs] nfsd_vfs_write(): use file_inode() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: get rid of ->f_dentry ("J. Bruce Fields") [1344797]
-- [fs] nfsd/nfsctl.c: new helper ("J. Bruce Fields") [1344797]
-- [fs] nfsd: convert nfs4_file searches to use RCU ("J. Bruce Fields") [1344797]
-- [fs] sunrpc: off by one in BUG_ON() ("J. Bruce Fields") [1344797]
-- [fs] nfsd: clean up comments over nfs4_file definition ("J. Bruce Fields") [1344797]
-- [fs] nfsd: Always initialize cl_cb_addr ("J. Bruce Fields") [1344797]
-- [fs] nfsd: fix inclusive vfs_fsync_range() end ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix crash on unknown operation number ("J. Bruce Fields") [1344797]
-- [fs] nfsd4: fix response size estimation for OP_SEQUENCE ("J. Bruce Fields") [1344797]
-- [fs] af_unix: fix hard linked sockets on overlay (Miklos Szeredi) [1273111]
-- [fs] vfs: add d_real_inode() helper (Miklos Szeredi) [1273111]
-- [fs] gfs2: Automatically set GFS2_DIF_SYSTEM flag on system files (Abhijith Das) [1272086]
-- [fs] ovl: fix uid/gid when creating over whiteout (Miklos Szeredi) [1348113]
-- [fs] ext4: set S_IOPS_WRAPPER flag in ext4_mkdir() (Eryu Guan) [1231802]
-
-* Fri Jul 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-459.el7]
-- [fs] allow no_seek_end_llseek to actually seek (David Arcari) [1350836]
-- [usb] revert "make "nousb" a clear module parameter" (Torez Smith) [1351227]
-- [acpi] add ACPI_TYPE_LOCAL_REFERENCE support to acpi_extract_package() (David Arcari) [1350497]
-- [netdrv] e1000e: keep Rx/Tx HW_VLAN_CTAG in sync (Jarod Wilson) [1190077]
-- [netdrv] e1000e: keep VLAN interfaces functional after rxvlan off (Jarod Wilson) [1190077]
-- [powerpc] Uncomment and make enable_kernel_vsx() routine available (Gustavo Duarte) [1274481]
-- [crypto] vmx - IV size failing on skcipher API (Gustavo Duarte) [1274481]
-- [crypto] vmx: Only call enable_kernel_vsx() (Gustavo Duarte) [1274481]
-- [crypto] vmx - Fixing opcode issue (Gustavo Duarte) [1274481]
-- [crypto] vmx - Fixing GHASH Key issue on little endian (Gustavo Duarte) [1274481]
-- [crypto] vmx - Fixing AES-CTR counter bug (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding enable_kernel_vsx() to access VSX instructions (Gustavo Duarte) [1274481]
-- [crypto] sched/preempt, powerpc: Disable preemption in enable_kernel_altivec() explicitly (Gustavo Duarte) [1274481]
-- [crypto] vmx - Reindent to kernel style (Gustavo Duarte) [1274481]
-- [crypto] vmx - Remove duplicate PPC64 dependency (Gustavo Duarte) [1274481]
-- [crypto] vmx - fix two mistyped texts (Gustavo Duarte) [1274481]
-- [crypto] vmx - Fix assembler perl to use _GLOBAL (Gustavo Duarte) [1274481]
-- [crypto] vmx - Enabling VMX module for PPC64 (Gustavo Duarte) [1274481]
-- [crypto] vmx - Add support for VMS instructions by ASM (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding GHASH routines for VMX module (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding CTR routines for VMX module (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding CBC routines for VMX module (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding AES routines for VMX module (Gustavo Duarte) [1274481]
-- [crypto] vmx - Adding VMX module for Power 8 (Gustavo Duarte) [1274481]
-- [powerpc] kvm: ppc: book3s pr: Fix contents of SRR1 when injecting a program exception (Thomas Huth) [1349816]
-- [powerpc] kvm: ppc: book3s pr: Fix illegal opcode emulation (Thomas Huth) [1349816]
-
-* Thu Jun 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-458.el7]
-- [net] netfilter: nf_dup_ipv6: set again FLOWI_FLAG_KNOWN_NH at flowi6_flags (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: check match/targetinfo attr size (Paolo Abeni) [1331757]
-- [net] netfilter: nft_masq: support port range (Paolo Abeni) [1331757]
-- [net] netfilter: nft_counter: fix erroneous return values (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: use original skbuff when acking batches (Paolo Abeni) [1331757]
-- [net] netfilter: nft_ct: keep counters away from CONFIG_NF_CONNTRACK_LABELS (Paolo Abeni) [1331757]
-- [net] netfilter: nft_byteorder: avoid unneeded le/be conversion steps (Paolo Abeni) [1331757]
-- [net] netfilter: nft_ct: add byte/packet counter support (Paolo Abeni) [1331757]
-- [net] netfilter: nft_byteorder: provide 64bit le/be conversion (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: Add new attributes into nft_set to store user data. (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: allow to invert matching criteria (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: remove check against removal of inactive objects (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: release objects on netns destruction (Paolo Abeni) [1331757]
-- [net] netfilter: nft_ct: include direction when dumping NFT_CT_L3PROTOCOL key (Paolo Abeni) [1331757]
-- [net] netfilter: meta: add support for setting skb->pkttype (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: fix splat due to incorrect socket memory accounting in skbuff clones (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: avoid recurrent netns lookups in call_batch (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix nf_log_trace based tracing (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: wrap tracing with a static key (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: extend tracing infrastructure (Paolo Abeni) [1331757]
-- [net] netfilter: nft_payload: add packet mangling support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: remove unused struct members (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add clone interface to expression operations (Paolo Abeni) [1331757]
-- [net] remove unnecessary semicolon in netdev_alloc_pcpu_stats() (Paolo Abeni) [1331757]
-- [net] add __netdev_alloc_pcpu_stats() to indicate gfp flags (Paolo Abeni) [1331757]
-- [net] netfilter: ipv6: code indentation (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: kill nft_pktinfo.ops (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: skip family comparison in case of NFPROTO_UNSPEC (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: work around wrong endianess in res_id field (Paolo Abeni) [1331757]
-- [net] netfilter: nf_dup: fix sparse warnings (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: Use 32 bit addressing register from nft_type_to_reg() (Paolo Abeni) [1331757]
-- [net] netfilter: nft_payload: work around vlan header stripping (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: add per-byte limiting (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: constant token cost per packet (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: add burst parameter (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: factor out shared code with per-byte limiting (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: convert to token-based limiting at nanosecond granularity (Paolo Abeni) [1331757]
-- [net] netfilter: nft_limit: rename to nft_limit_pkts (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: keep going batch handling on missing modules (Paolo Abeni) [1331757]
-- [net] configs: enable nft dup (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add nft_dup expression (Paolo Abeni) [1331757]
-- [net] netfilter: tee: select NF_DUP_IPV6 unconditionally (Paolo Abeni) [1331757]
-- [net] netfilter: fix xt_TEE and xt_TPROXY dependencies (Paolo Abeni) [1331757]
-- [net] netfilter: xt_TEE: use IS_ENABLED(CONFIG_NF_DUP_IPV6) (Paolo Abeni) [1331757]
-- [net] netfilter: xt_TEE: fix NULL dereference (Paolo Abeni) [1331757]
-- [net] netfilter: nf_dup{4, 6}: fix build error when nf_conntrack disabled (Paolo Abeni) [1331757]
-- [net] netfilter: factor out packet duplication for IPv4/IPv6 (Paolo Abeni) [1331757]
-- [net] netfilter: move tee_active to core (Paolo Abeni) [1331757]
-- [net] netfilter: xt_TEE: get rid of WITH_CONNTRACK definition (Paolo Abeni) [1331757]
-- [net] netfilter: nft_counter: convert it to use per-cpu counters (Paolo Abeni) [1331757]
-- [net] netfilter: nftables: Do not run chains in the wrong network namespace (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add nft_register_basechain() and nft_unregister_basechain() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: consolidate Kconfig options (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix bogus warning in nft_data_uninit() (Paolo Abeni) [1331757]
-- [net] netfilter: x_tables: add context to know if extension runs from nft_compat (Paolo Abeni) [1331757]
-- [net] netfilter; Add some missing default cases to switch statements in nft_reject. (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix wrong length for jump/goto verdicts (Paolo Abeni) [1331757]
-- [net] netfilter: nft_dynset: dynamic stateful expression instantiation (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add flag to indicate set contains expressions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: mark stateful expressions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: prepare for expressions associated to set elements (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add helper functions for expression handling (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: variable sized set element keys / data (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: support variable sized data in nft_data_init() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: switch registers to 32 bit addressing (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add register parsing/dumping helpers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: convert sets to u32 data pointers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: kill nft_data_cmp() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: convert expressions to u32 register pointers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: use struct nft_verdict within struct nft_data (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: get rid of NFT_REG_VERDICT usage (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: introduce nft_validate_register_load() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: kill nft_validate_output_register() (Paolo Abeni) [1331757]
-- [net] netfilter: nft_lookup: use nft_validate_register_store() to validate types (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: rename nft_validate_data_load() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: validate len in nft_validate_data_load() (Paolo Abeni) [1331757]
-- [net] netfilter: Fix switch statement warnings with recent gcc. (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: support optional userdata for set elements (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add support for dynamic set updates (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: support different set binding types (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: prepare set element accounting for async updates (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix set selection when timeouts are requested (Paolo Abeni) [1331757]
-- [net] netfilter: nft_meta: fix cgroup matching (Paolo Abeni) [1331757]
-- [net] netfilter: nft_hash: add support for timeouts (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add GC synchronization helpers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add set garbage collection helpers (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add set element timeout support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add set timeout API support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: implement set transaction support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add transaction helper functions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: return set extensions from ->lookup() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: consolide set element destruction (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: convert hash and rbtree to set extensions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add set extensions (Paolo Abeni) [1331757]
-- [net] netfilter: nft_hash: convert to use rhashtable callbacks (Paolo Abeni) [1331757]
-- [net] netfilter: nft_hash: indent rhashtable parameters (Paolo Abeni) [1331757]
-- [net] netfilter: nft_hash: restore struct nft_hash (Paolo Abeni) [1331757]
-- [net] netfilter: nft_meta: use raw_smp_processor_id() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: move struct net pointer to base chain (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: reject NFT_SET_ELEM_INTERVAL_END flag for non-interval sets (Paolo Abeni) [1331757]
-- [net] netfilter: nft_rbtree: fix locking (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: set IP6T_F_PROTO flag if protocol is set (Paolo Abeni) [1331757]
-- [net] netfilter: restore rule tracing via nfnetlink_log (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: consolidate error path of nf_tables_newtable() (Paolo Abeni) [1331757]
-- [net] netfilter: use sk_fullsock() helper (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: allow to change chain policy without hook if it exists (Paolo Abeni) [1331757]
-- [net] netfilter: Fix potential crash in nft_hash walker (Paolo Abeni) [1331757]
-- [net] netfilter: fix sparse warnings in reject handling (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: limit maximum table name length to 32 bytes (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: cleanup nf_tables.h (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: consolidate tracing invocations (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: minor tracing cleanups (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix error handling of rule replacement (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix userdata length overflow (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: check for overflow of rule dlen field (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix transaction race condition (Paolo Abeni) [1331757]
-- [net] netfilter: bridge: rework reject handling (Paolo Abeni) [1331757]
-- [net] netfilter: reject: don't send icmp error if csum is invalid (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: add support for arptables extensions (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: don't truncate ethernet protocol type to u8 (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: fix module refcount underflow (Paolo Abeni) [1331757]
-- [net] netfilter: Use rhashtable walk iterator (Paolo Abeni) [1331757]
-- [net] netfilter: nft_lookup: add missing attribute validation for NFTA_LOOKUP_SET_ID (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: add ebtables support (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix leaks in error path of nf_tables_newchain() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: disable preemption when restoring chain counters (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: validate hooks in NAT expressions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: fix port natting in little endian archs (Paolo Abeni) [1331757]
-- [net] netfilter: nf_nat_redirect: add missing NULL pointer check (Paolo Abeni) [1331757]
-- [net] netfilter: combine IPv4 and IPv6 nf_nat_redirect code in one module (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables_bridge: replace nft_reject_ip*hdr_validate functions (Paolo Abeni) [1331757]
-- [net] netfilter: Deletion of unnecessary checks before two function calls (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: restore synchronous object release from commit/abort (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: use the match->table to validate dependencies (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: relax chain type validation (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: use current net namespace (Paolo Abeni) [1331757]
-- [net] netfilter: nft_redir: fix sparse warnings (Paolo Abeni) [1331757]
-- [net] netfilter: nft_masq: fix uninitialized range in nft_masq_{ipv4, ipv6}_eval (Paolo Abeni) [1331757]
-- [net] netfilter: nft_meta: add cgroup support (Paolo Abeni) [1331757]
-- [net] netfilter: nft_reject_bridge: restrict reject to prerouting and input (Paolo Abeni) [1331757]
-- [net] netfilter: nft_reject_bridge: Fix powerpc build error (Paolo Abeni) [1331757]
-- [net] netfilter: nft_reject_bridge: don't use IP stack to reject traffic (Paolo Abeni) [1331757]
-- [net] netfilter: nf_reject_ipv6: split nf_send_reset6() in smaller functions (Paolo Abeni) [1331757]
-- [net] netfilter: nf_reject_ipv4: split nf_send_reset() in smaller functions (Paolo Abeni) [1331757]
-- [net] netfilter: missing module license in the nf_reject_ipvX modules (Paolo Abeni) [1331757]
-- [net] netfilter: kill nf_send_reset6() from include/net/netfilter/ipv6/nf_reject.h (Paolo Abeni) [1331757]
-- [net] netfilter: move nf_send_resetX() code to nf_reject_ipvX modules (Paolo Abeni) [1331757]
-- [net] netfilter: fix spelling errors (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: add new expression nft_redir (Paolo Abeni) [1331757]
-- [net] netfilter: fix unmet dependencies in NETFILTER_XT_TARGET_REDIRECT (Paolo Abeni) [1331757]
-- [net] netfilter: refactor NAT redirect IPv6 code to use it from nf_tables (Paolo Abeni) [1331757]
-- [net] netfilter: refactor NAT redirect IPv4 to use it from nf_tables (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: fix wrong target lookup in nft_target_select_ops() (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: check for NULL in nf_tables_newchain pcpu stats allocation (Paolo Abeni) [1331757]
-- [net] netfilter: nft_nat: dump attributes if they are set (Paolo Abeni) [1331757]
-- [net] netfilter: nft_nat: NFTA_NAT_REG_ADDR_MAX depends on NFTA_NAT_REG_ADDR_MIN (Paolo Abeni) [1331757]
-- [net] netfilter: nft_nat: insufficient attribute validation (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: validate chain type in match/target (Paolo Abeni) [1331757]
-- [net] netfilter: nft_compat: fix hook validation for non-base chains (Paolo Abeni) [1331757]
-- [net] netfilter: nf_tables: restrict nat/masq expressions to nat chain type (Paolo Abeni) [1331757]
-- [net] netfilter: fix wrong arithmetics regarding NFT_REJECT_ICMPX_MAX (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: use original skbuff when committing/aborting (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: deliver netlink errors on batch completion (Paolo Abeni) [1331757]
-- [net] netfilter: nfnetlink: Fix use after free when it fails to process batch (Paolo Abeni) [1331757]
-- [net] netfilter: x_tables: don't reject valid target size on some architectures (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] ipv6: Skip XFRM lookup if dst_entry in socket cache is valid (Jakub Sitnicki) [1332217]
-
-* Thu Jun 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-457.el7]
-- [netdrv] bonding: fix 802.3ad aggregator reselection (Jarod Wilson) [1350953]
-- [netdrv] i40e: enable geneve offloading (Stefan Assmann) [1350780]
-- [s390] ensure that syscall arguments are properly masked on s390 (Paul Moore) [1321096]
-- [tty] Update code comment in __proc_set_tty() ("Herton R. Krzesinski") [1350798]
-- [tty] Serialize proc_set_tty() with tty_lock ("Herton R. Krzesinski") [1350798]
-- [tty] Fix multiple races when setting the controlling terminal ("Herton R. Krzesinski") [1350798]
-- [tty] Remove !tty condition from __proc_set_tty() ("Herton R. Krzesinski") [1350798]
-- [tty] Remove tsk parameter from proc_set_tty() ("Herton R. Krzesinski") [1350798]
-- [tty] Reorder proc_set_tty() and related fns ("Herton R. Krzesinski") [1350798]
-- [x86] efi: Avoid triple faults during EFI mixed mode calls (Lenny Szubowicz) [1310154]
-- [x86] efi: Remove unused efi_call* macros (Lenny Szubowicz) [1310154]
-- [x86] boot: EFI_MIXED should not prohibit loading above 4G (Lenny Szubowicz) [1310154]
-- [x86] efi: Implement a __efi_call_virt macro (Lenny Szubowicz) [1310154]
-- [x86] efi: Delete most of the efi_call* macros (Lenny Szubowicz) [1310154]
-- [firmware] efi: Add shared printk wrapper for consistent prefixing (Lenny Szubowicz) [1310154]
-- [firmware] efi: efi-stub-helper cleanup (Lenny Szubowicz) [1310154]
-- [firmware] efi: Pass correct file handle to efi_file_{read, close} (Lenny Szubowicz) [1310154]
-- [x86] efi: Correct EFI boot stub use of code32_start (Lenny Szubowicz) [1310154]
-- [x86] efi: Fix boot failure with EFI stub (Lenny Szubowicz) [1310154]
-- [firmware] x86, efi: Abstract x86 efi_early calls (Lenny Szubowicz) [1310154]
-- [x86] efi: Restore 'attr' argument to query_variable_info() (Lenny Szubowicz) [1310154]
-- [x86] efi: Rip out phys_efi_get_time() (Lenny Szubowicz) [1310154]
-- [x86] efi: Preserve segment registers in mixed mode (Lenny Szubowicz) [1310154]
-- [x86] boot: Correct max ramdisk size name (Lenny Szubowicz) [1310154]
-- [x86] boot: Fix non-EFI build (Lenny Szubowicz) [1310154]
-- [x86] tools: Fix up compiler warnings (Lenny Szubowicz) [1310154]
-- [x86] efi: Re-disable interrupts after calling firmware services (Lenny Szubowicz) [1310154]
-- [x86] boot: Don't overwrite cr4 when enabling PAE (Lenny Szubowicz) [1310154]
-- [x86] efi: Wire up CONFIG_EFI_MIXED (Lenny Szubowicz) [1310154]
-- [x86] efi: Add mixed runtime services support (Lenny Szubowicz) [1310154]
-- [x86] efi: Firmware agnostic handover entry points (Lenny Szubowicz) [1310154]
-- [x86] efi: Split the boot stub into 32/64 code paths (Lenny Szubowicz) [1310154]
-- [x86] efi: Add early thunk code to go from 64-bit to 32-bit (Lenny Szubowicz) [1310154]
-- [firmware] x86/efi: Build our own EFI services pointer table (Lenny Szubowicz) [1310154]
-- [x86] build: Restore efi_stub_entry in arch/x86/boot/zoffset.h (Lenny Szubowicz) [1310154]
-- [include] efi: Add separate 32-bit/64-bit definitions (Lenny Szubowicz) [1310154]
-- [x86] efi: Delete dead code when checking for non-native (Lenny Szubowicz) [1310154]
-- [x86] tools: Consolidate #ifdef code (Lenny Szubowicz) [1310154]
-- [x86] boot: Cleanup header.S by removing some #ifdefs (Lenny Szubowicz) [1310154]
-- [firmware] efi: Use NULL instead of 0 for pointer (Lenny Szubowicz) [1310154]
-- [x86] x86 efi: bugfix interrupt disabling sequence (Lenny Szubowicz) [1310154]
-- [x86] build: move build output statistics away from stderr (Lenny Szubowicz) [1310154]
-- [firmware] efi: resolve warnings found on ARM compile (Lenny Szubowicz) [1310154]
-- [firmware] efi: Fix types in EFI calls to match EFI function definitions (Lenny Szubowicz) [1310154]
-- [firmware] efi: Move unicode to ASCII conversion to shared function (Lenny Szubowicz) [1310154]
-- [firmware] efi: Move relocate_kernel() to shared file (Lenny Szubowicz) [1310154]
-- [firmware] efivars: Mark local function as static (Lenny Szubowicz) [1310154]
-- [x86] boot: Close opened file descriptor (Lenny Szubowicz) [1310154]
-
-* Tue Jun 28 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-456.el7]
-- [fs] mntns: drop namespace reference if !CAP_SYS_ADMIN (Aristeu Rozanski) [1297446]
-- [usb] xhci: Cleanup only when releasing primary hcd (Torez Smith) [1334901]
-- [usb] xhci: Fix handling timeouted commands on hosts in weird states (Torez Smith) [1334901]
-- [char] ipmi: Remove smi_msg from waiting_rcv_msgs list before handle_one_recv_msg() (David Arcari) [1348013]
-- [netdrv] bnxt_en: Add BCM5731X and BCM5741X device IDs (John Linville) [1347031]
-- [netdrv] bnxt_en: Add GRO logic for BCM5731X chips (John Linville) [1347031]
-- [netdrv] bnxt_en: Refactor bnxt_gro_skb() (John Linville) [1347031]
-- [netdrv] bnxt_en: Define the supported chip numbers (John Linville) [1347031]
-- [netdrv] bnxt_en: Add PCI device ID for 57404 NPAR devices (John Linville) [1347031]
-- [netdrv] bnxt_en: Enable NPAR NIC Partitioning Support (John Linville) [1347031]
-- [netdrv] bnxt_en: Fix tx push race condition (John Linville) [1347031]
-- [kernel] include/linux/poison.h: fix LIST_POISON{1,2} offset (Dean Nelson) [1343802]
-- [kernel] sched/debug: Fix deadlock when enabling sched events (Josh Poimboeuf) [1333444]
-- [kernel] printk: Add printk_deferred_once (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Fix 'schedstats=enable' cmdline option (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Fix /proc/sched_debug regression (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Make schedstats a runtime tunable that is disabled by default (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Add sum_sleep_runtime to /proc/<pid>/sched (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Replace vruntime with wait_sum in /proc/sched_debug (Josh Poimboeuf) [1333444]
-- [kernel] sched/debug: Properly format runnable tasks in /proc/sched_debug (Josh Poimboeuf) [1333444]
-- [kernel] sched: Add statistic for newidle load balance cost (Josh Poimboeuf) [1333444]
-- [kernel] sched/core: Rearrange schedstats code to more closely match upstream (Josh Poimboeuf) [1333444]
-- [kernel] perf: Make sysctl_perf_cpu_time_max_percent conform to documentation (Jiri Olsa) [1341230]
-- [powerpc] hw_breakpoint: Fix oops when destroying hw_breakpoint event (Jiri Olsa) [1341230]
-- [kernel] perf/core: Fix time tracking bug with multiplexing (Jiri Olsa) [1341230]
-- [kernel] perf/core: Fix dynamic interrupt throttle (Jiri Olsa) [1341230]
-- [kernel] perf/core: Fix the unthrottle logic (Jiri Olsa) [1341230]
-- [kernel] perf: Robustify task_function_call() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix scaling vs. perf_install_in_context() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix scaling vs. perf_event_enable() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix scaling vs. perf_event_enable_on_exec() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix ctx time tracking by introducing EVENT_TIME (Jiri Olsa) [1341230]
-- [kernel] perf: Cure event->pending_disable race (Jiri Olsa) [1341230]
-- [kernel] perf: Fix cloning (Jiri Olsa) [1341230]
-- [kernel] perf: Only update context time when active (Jiri Olsa) [1341230]
-- [kernel] perf: Allow perf_release() with !event->ctx (Jiri Olsa) [1341230]
-- [kernel] perf: Do not double free (Jiri Olsa) [1341230]
-- [kernel] perf: Close install vs. exit race (Jiri Olsa) [1341230]
-- [kernel] perf: Remove/simplify lockdep annotation (Jiri Olsa) [1341230]
-- [kernel] perf: Synchronously clean up child events (Jiri Olsa) [1341230]
-- [kernel] perf: Untangle 'owner' confusion (Jiri Olsa) [1341230]
-- [kernel] perf: Add flags argument to perf_remove_from_context() (Jiri Olsa) [1341230]
-- [kernel] perf: Clean up sync_child_event() (Jiri Olsa) [1341230]
-- [kernel] perf: Robustify event->owner usage and SMP ordering (Jiri Olsa) [1341230]
-- [kernel] perf: Fix STATE_EXIT usage (Jiri Olsa) [1341230]
-- [kernel] perf: Update locking order (Jiri Olsa) [1341230]
-- [kernel] perf: Remove __free_event() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix NULL deref (Jiri Olsa) [1341230]
-- [kernel] perf: Fix race in perf_event_exit_task_context() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix orphan hole (Jiri Olsa) [1341230]
-- [kernel] perf: Fix perf_event_exit_task() race (Jiri Olsa) [1341230]
-- [kernel] perf: Add more assertions (Jiri Olsa) [1341230]
-- [kernel] perf: Collapse and fix event_function_call() users (Jiri Olsa) [1341230]
-- [kernel] perf: Specialize perf_event_exit_task() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix task context scheduling (Jiri Olsa) [1341230]
-- [kernel] perf: Make ctx->is_active and cpuctx->task_ctx consistent (Jiri Olsa) [1341230]
-- [kernel] perf: Optimize perf_sched_events() usage (Jiri Olsa) [1341230]
-- [kernel] perf: Simplify/fix perf_event_enable() event scheduling (Jiri Olsa) [1341230]
-- [kernel] perf: Use task_ctx_sched_out() (Jiri Olsa) [1341230]
-- [kernel] perf: Fix perf_enable_on_exec() event scheduling (Jiri Olsa) [1341230]
-- [kernel] perf/core: Fix RCU problem with cgroup context switching code (Jiri Olsa) [1341230]
-- [kernel] sched,perf: Fix periodic timers (Jiri Olsa) [1341230]
-- [kernel] perf: Remove unused function perf_mux_hrtimer_cancel() (Jiri Olsa) [1341230]
-- [kernel] perf: perf_mux_hrtimer_cancel() can be static (Jiri Olsa) [1341230]
-- [kernel] perf: Fix mux_interval hrtimer wreckage (Jiri Olsa) [1341230]
-- [scripts] genksyms: Regenerate parser (Jiri Olsa) [1341230]
-- [scripts] genksyms: Duplicate function pointer type definitions segfault (Jiri Olsa) [1341230]
-- [scripts] genksyms: fix typeof() handling (Jiri Olsa) [1341230]
-
-* Mon Jun 27 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-455.el7]
-- [infiniband] ib/hfi1: Move driver out of staging (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1, qib: Add ieth to the packet header definitions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use cache inhibitted and guarded mapping on powerpc (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove unused qib_7322_intr_msgs[] (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix pio map initialization (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correct 8051 link parameter settings (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Update pkey table properly after link down or FM start (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdamvt: Fix rdmavt s_ack_queue sizing (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Max atomic value should be a u8 (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add tracing support for send with invalidate opcode (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix hard lockup due to not using save/restore spin lock (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Do not free hfi1 cdev parent structure early (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add trace message in user IOCTL handling (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove write(), use ioctl() for user cmds (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add ioctl() interface for user commands (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unused user command (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove snoop/diag interface (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove EPROM functionality from data device (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove UI char device (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove multiple device cdev (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove anti-pattern in cdev init (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix bug that blocks process on exit after port bounce (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unnecessary comment (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix sdma_event_names[] build warning (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Use kzalloc_node (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Insure QP vmalloc variants zero memory (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix an interval RB node reference count leak (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use RCU_INIT_POINTER() when NULLing (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change hfi1_init loop to preserve error returns (Alex Estrin) [1272062 1273170]
-- [infiniband] ib_pack.h: Add opcode definition for send with invalidate (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Keep SC_USER as the last send context type (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Immediately apply congestion setting MAD (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correct log message strings (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Increase CQ callback thread priority (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix hfi_rcvhdr tracepoint (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unnecessary header (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Improve performance of interval RB trees (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix potential panic with sdma drained mechanism (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix pio wait counter double increment (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove no-op QSFP reset code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correct external device configuration shift (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Wait for QSFP modules to initialize (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Ignore non-temperature warnings on a downed link (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Serialize hrtimer function calls (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix MAD port poll for active cables (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correctly report neighbor link down reason (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Use the neighbor link down reason only when valid (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Ignore link downgrade with 0 lanes (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add RSM rule for user FECN handling (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Create a routine to set a receive side mapping rule (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Move QOS decision logic into its own function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Extract RSM map table init from QOS (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Reduce kernel context pio buffer allocation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: affinity.c backport for RHEL7.3 (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change default number of user contexts (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Use global defines for upper bits in opcode (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unreachable code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix double QSFP resource acquire on cache refresh (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Guard against concurrent I2C access across all chains (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove module presence check outside pre-LNI checks (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Always turn on CDRs for low power QSFP modules (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Check P_KEY for all sent packets from user mode (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Adjust default MTU to be 10KB (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Simplify init_qpmap_table() (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correctly obtain the full service class (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix QOS rule mappings (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove invalid QOS check (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix QOS num_vl bit width (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix i2c resource reservation checks (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix sysfs file offset usage (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt, hfi1, qib: Fix memory leak (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix buffer cache races which may cause corruption (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Extract and reinsert MMU RB node on lookup (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Correctly compute node interval (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Protect the interval RB tree when cleaning up (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix memory leak in user ExpRcv and SDMA (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Don't remove list entries if they are not in a list (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, ib/hfi1: Fix up UD loopback use of irq flags (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Fix adaptive pio hang (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Use kernel default llseek for ui device (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Don't attempt to free resources if initialization failed (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix missing lock/unlock in verbs drain callback (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Fix send scheduling (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Prevent unpinning of wrong pages (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix deadlock caused by locking with wrong scope (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Prevent NULL pointer deferences in caching code (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: select CRC32 (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add SDMA cache eviction algorithm (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Switch to using the pin query function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Specify mm when releasing pages (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add pin query function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Implement SDMA-side buffer caching (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Adjust last address values for intervals (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add filter callback (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove compare callback (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add MMU tracing (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Use interval RB trees (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Notify remove MMU/RB callback of calling context (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove the use of add/remove RB function pointers (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Allow remove MMU callbacks to free nodes (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Prevent NULL pointer dereference (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Allow MMU function execution in IRQ context (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Re-factor MMU notification code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Post receive for QP in ERR state (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Enable adaptive pio by default (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix adaptive pio packet corruption (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix panic in adaptive pio (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix PIO wakeup timing hole (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix ordering of trace for accuracy (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add unique trace point for pio and sdma send (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Fix issues with qp_stats print (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Report pid in qp_stats to aid debug (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Improve LED beaconing (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Don't call cond_resched in atomic mode when sending packets (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add adaptive cacheless verbs copy (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Handle host handshake timeout (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add ASIC flag view/clear (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Hold i2c resource across debugfs open/close (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Reduce hardware mutex timeout (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove unused HFI1_DO_INIT_ASIC flag (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change thermal init to use resource reservation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change QSFP functions to use resource reservation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change SBus handling to use resource reservation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Change EPROM handling to use resource reservation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add ASIC resource reservation functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add shared ASIC structure (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Remove ASIC block clear (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Move constant to the right in bitwise operations (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add the break statement that was removed in an earlier patch (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: file_ops: Replace ALIGN with PAGE_ALIGN (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: driver: Replace IS_ALIGNED with PAGE_ALIGNED (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Replace ALIGN with PAGE_ALIGN (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: Use min macro instead of ternary operator (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: user_sdma.c: Drop void pointer cast (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove unnecessary parantheses (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove casts of pointer to same type (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove useless return variables (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove unnecessary pci_set_drvdata() (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove unnecessary kfree (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix memory leaks (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix reporting of LED status in Get(LedInfo) and Get(PortInfo) (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Check interrupt registers mapping (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Avoid using upstream component if it is not accessible (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix header size calculation for RC/UC QPs with GRH enabled (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Check lkey_table_size value before use (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix counter read for cp (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Guard i2c access against cp (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdamvt: fix cross build with rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Disclose more information when i2c fails (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix debugfs access race (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Cleanup comments and logs in PHY code (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix xmit discard error weight (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: fix 0-day syntax error (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix header (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove else after break (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add braces on all arms of statement (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix code alignment (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix block comments (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add comment for spinlock_t definition (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove void function return statement (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use pointer instead of struct name (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove CamelCase (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix misspellings (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Split multiple assignments (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use BIT_ULL macro (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove unnecessary parentheses (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add blank link after declarations (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix logical continuations (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove blank line before close brace (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove blank line after an open brace (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix comparison to NULL (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove space after cast (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove multiple blank lines (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add spaces around binary operators (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add cq head and tail information to qpstats (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add send context sw index (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Determine actual operational VLs (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add qp to send context mapping for PIO (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi: fix CQ completion order issue (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, rdma/hfi1, ib/rdmavt: progress selection changes (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Adaptive PIO for short messages (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use u8 for vl/sl (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: fix panic in send engine (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: avoid passing pmtu (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add s_sendcontext priv field (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: remove s_rdma_mr (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove header memcpy from sdma send path (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: move txreq header code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmvt: close send engine struct holes (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add s_avail to qp_stats (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Destroy SMI AH before de-allocating the protection domain (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Remove unnecessary exported functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Remove signal_supported and comments (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Remove RVT_FLAGs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, rdmavt: Move smi_ah to qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Setup notify free/create mad agent callbacks for rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add per verb driver callback checking (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Clean up comments and add more documentation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Put QPs into error state after SL->SC table changes (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add trace and error print statements in post_one_wr (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, rdma/hfi1: add s_hlock for use in post send (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Rename several functions by adding a "qib_" prefix (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt, rdma/hfi1: use qps to dynamically scale timeout value (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Turning off LED without checking if stepping is Ax (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: actually use new RNR timer API in loopback path (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Tune for unknown channel if configuration file is absent (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fetch platform configuration data from EFI variable (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib, rdma/hfi1: use setup_timer api (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: remove unused qp field (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Insure last cursor is updated prior to complete (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Insure last cursor is updated prior to complete (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add s_retry to diagnostics (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: remove duplicate timeout print (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use new RNR timer (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add unique rnr timer (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use mod_timer when appropriate (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: use new timer routines (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: centralize timer routines into rc (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Removing unused struct hfi1_verbs_counters (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Adding support for hfi counters via sysfs (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Replacement of goto's for break/returns (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Change for data type of port number (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix bug that could block the process on context exit (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove unused variable nsbr (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Make EPROM check per device (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add credits for VL0 to VL7 in snoop mode (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Improve performance of user SDMA (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1, ib/core: Fix LinkDownReason define for consistency (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove modify_port and port_immutable functions (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Support query gid in rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Clean up init_cntrs() (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix snoop packet length calculation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Correct TWSI reset (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove PCIe AER diagnostic message (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Implement LED beaconing for maintenance (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Split last 8 bytes of copy to user buffer (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix fabric serdes reset by re-downloading firmware (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Report physical state changes per device instead of globally (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Properly determine error status of SDMA slots (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: correctly check for post-interrupt packets (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Improve performance of SDMA transfers (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use device file minor to identify EPROM (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Reduce syslog message severity and provide speed information (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Improve performance of TID cache look up (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix for module parameter rcvhdrcnt when it's 2097152 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Allow a fair scheduling of QPs (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix for generic I2C interface (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Change send_schedule counter to a per cpu counter (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Verbs Mem affinity support (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Allocate send ctxt on device NUMA node (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Consolidate CPU/IRQ affinity support (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove unnecessary duplicated variable (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove unused code (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix SL->SC checks (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add support for enabling/disabling PCIe ASPM (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Method to toggle "fast ECN" detection (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Correctly set RcvCtxtCtrl register (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix for 32-bit counter overflow in driver and hfi1stats (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Skip lcb init for simulation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: No firmware retry for simulation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Don't attempt to qualify or tune loopback plugs (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Make firmware failure messages warnings (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Only warn when board description is not found (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix per-VL transmit discard counts (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix missing firmware NULL dereference (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Support external device configuration requests from 8051 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Get port type from configuration file (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add active and optical cable support (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix QSFP memory read/write across 128 byte boundary (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: cleanup messages on qsfp_read() failure (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: HFI reports wrong offline disabled reason when cable removed (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove srq functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove hfi1_query_qp function (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove create and free mad agents (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt device allocation function (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Clean up register device (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove post_recv and use rdmavt version (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove destroy qp verb (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove modify queue pair from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove multicast verbs functions (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt version of post_send (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Clean up return handling (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove CQ data structures and functions from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove query_device function (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove create_qp functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove qpdev and qpn table from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt send flags and recv flags (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove user context allocation and de-alloction functions (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt pkey verbs function (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove mmap from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove ibport and use rdmavt version (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove srq from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove hfi1 MR and hfi1 specific qp type (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Implement hfi1 support for AH notification (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use address handle in rdmavt and remove from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use correct rdmavt header files after move (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add device specific info prints (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove driver specific members from hfi1 qp type (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Remove MR data structures from hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Use rdmavt protection domain (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Consolidate dma ops for hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Add basic rdmavt capability flags for hfi1 (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Begin to use rdmavt for verbs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove modify_port and port_immutable functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Support query gid in rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove destroy queue pair code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove modify queue pair code (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib_lookup_qpn and use rvt_lookup_qpn instead (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Clean up register_ib_device (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove srq functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Properly pass gfp to hw driver function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add support for query_port, modify_port and get_port_immutable (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add query gid support (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Clean up distinction between port number and index (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add Mem affinity support (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add hardware driver send work request check (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add srq functionality to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib_query_qp function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib multicast verbs functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib_post_receive and use rdmavt version (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt version of post_send (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove completion queue data structures and functions from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove create and free mad agents (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt device allocation function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add support for rvt_query_qp (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Fix copyright date (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add mad agents to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add device structure allocation (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: add modify queue pair driver helpers (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Remove unused variable from Queue Pair (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add misc dev register functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add multicast functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add post receive to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add destroy qp verb (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add modify qp (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add support for tracing events (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add post send to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add completion queue functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove create qp and create qp table functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt send and receive flags (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qib_query_device function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Delete QIB user context allocation and de-alloction functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qpn, qp tables and related variables from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt pkey verbs function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove mmap from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Implement qib support for AH notification (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove ibport and use rdmavt version (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Support creating qps with GFP_NOIO flag (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add support for rvt_query_device function (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Allow reserving just one qpn (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Export reset_qp in rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add create queue pair functionality (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add R and S flags for queue pairs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add IB user context allocation and de-alloction functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove srq from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use address handle in rdmavt and remove from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove qp and mr functionality from qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Add device specific info prints (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove driver specific members from qib qp type (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt lid defines in qib (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove most uses of QIB_PERMISSIVE_LID and QIB_MULTICAST_LID_BASE (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Use rdmavt protection domain (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Remove dma.c and use rdmavt version of dma functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/qib: Begin to use rdmavt for verbs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add pkey support (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add mmap related functions (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Initialize and teardown of qpn table (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Break rdma_vt main include header file up (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add driver notification for new AH (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add an ibport data structure to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Move SRQ data structure into rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add AH to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add common LID defines to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Do not use rvt prints which rely on driver too early (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Move memory registration into rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add the start of capability flags (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add device specific info prints (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Move driver helper functions to a common structure (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add queue pair data structure to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Move MR datastructures into rvt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add post send and recv stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add completion queue function stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add get port immutable stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add mmap stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add process MAD stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add multicast stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add SRQ stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add memory region stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add address handle stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add queue pair function stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Alloc and dealloc ucontexts (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add query gid stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add pkey query stub (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add query and modify port stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add query and modify device stubs (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Macroize override checks during driver registration (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add ib core device attributes to rvt driver params list (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Add protection domain to rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Consolidate dma ops in rdmavt (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/rdmavt: Create module framework and handle driver registration (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: check for ARMED->ACTIVE change in recv int (Alex Estrin) [1272062 1273170]
-- [infiniband] uapi/hfi1_user: Correct comment for capability bit (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Clean up comments (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Remove unneeded variable index (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: add per SDMA engine stats to hfistats (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Change default krcvqs (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: change krcvqs mod param from byte to uint (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Move s_sde to read mostly section of hfi1_qp (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Use BIT macro (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Enable TID caching feature (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add TID entry program function body (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add TID free/clear function bodies (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add MMU notifier callback function (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add TID cache receive init and free funcs (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Convert lock to mutex (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add building blocks for TID caching (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: TID group definitions and support funcs (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Remove un-needed variable (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add definitions needed for TID cache (Alex Estrin) [1272062 1273170]
-- [infiniband] uapi/hfi1_user: Add command and event for TID caching (Alex Estrin) [1272062 1273170]
-- [infiniband] hfi1: Add function stubs for TID caching (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Remove header file (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Use offset_in_page macro (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Use DIV_ROUND_UP (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Replace kmalloc and memcpy with kmemdup (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: hfi1: Delete NULL check before vfree (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma: Use kcalloc instead of kzalloc (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: Fix Xmit Wait calculation (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: add dd_dev_dbg (Alex Estrin) [1272062 1273170]
-- [infiniband] rdma/hfi1: set Gen3 half-swing for integrated devices (Alex Estrin) [1272062 1273170]
-- [infiniband] ib/hfi1: Add PSM2 user space header to header_install (Alex Estrin) [1272062 1273170]
-
-* Mon Jun 27 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-454.el7]
-- [sound] alsa: pinctrl: export pinctrl_pm_select_*_state (Jaroslav Kysela) [1220299]
-- [sound] alsa: enable Intel SST audio (Jaroslav Kysela) [1220299]
-- [sound] alsa: gpio: move GPIOD flags outside #ifdef (Jaroslav Kysela) [1220299]
-- [sound] alsa: gpio: move varargs hack outside #ifdef GPIOLIB (Jaroslav Kysela) [1220299]
-- [sound] alsa: gpio: add flags argument to gpiod_get*() functions (Jaroslav Kysela) [1220299]
-- [sound] alsa: gpio: Add helpers for optional GPIOs (Jaroslav Kysela) [1220299]
-- [sound] alsa: regmap: Simplify the initiation of async I/O (Jaroslav Kysela) [1220299]
-- [sound] alsa: regmap: Don't generate gather writes for single register raw writes (Jaroslav Kysela) [1220299]
-- [sound] alsa: of: add functions to count number of elements in a property (Jaroslav Kysela) [1220299]
-- [sound] alsa: of: Fix overflow bug in string property parsing functions (Jaroslav Kysela) [1220299]
-- [sound] alsa: acpi / utils: Rename acpi_dev_present() (Jaroslav Kysela) [1220299]
-- [sound] alsa: hdac: Add macro for hda ext devices entry (Jaroslav Kysela) [1220299]
-- [sound] alsa: hdac: structure definition for ext_dma_params (Jaroslav Kysela) [1220299]
-- [sound] alsa: acpi: Provide acpi_dev_name accessor for struct acpi_device device name (Jaroslav Kysela) [1220299]
-- [sound] alsa: revert "asoc: intel: switch from ioremap_cache to memremap" (Jaroslav Kysela) [1220299]
-- [sound] alsa: doc: Fix uapi/sound/compress_offload.h kerneldoc comments (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: fix the struct alignment to 4 bytes (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: Cancel the optimization of compiler and fix the size of struct for all platform (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: Fix 64bit ABI incompatibility (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: add num_sample_rates in snd_codec_desc (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: update struct snd_codec_desc for sample rate (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: update comment for sample rate in snd_codec (Jaroslav Kysela) [1220299]
-- [sound] alsa: compress: change the way sample rates are sent to kernel (Jaroslav Kysela) [1220299]
-- [sound] alsa: Add params_set_format helper (Jaroslav Kysela) [1220299]
-- [sound] alsa: driver core: Unified interface for firmware node properties (Jaroslav Kysela) [1220299]
-- [sound] alsa: driver core: Unified device properties interface for platform firmware (Jaroslav Kysela) [1220299]
-- [sound] alsa: acpi: Add support for device specific properties (Jaroslav Kysela) [1220299]
-- [sound] alsa: Add params_width() helpers (Jaroslav Kysela) [1220299]
-- [sound] alsa: regmap: add regmap_parse_val api (Jaroslav Kysela) [1220299]
-- [sound] alsa: regmap: Provide asynchronous write and update bits operations (Jaroslav Kysela) [1220299]
-- [sound] alsa: devres: introduce API "devm_kmemdup (Jaroslav Kysela) [1220299]
-- [sound] alsa: devres: introduce API "devm_kstrdup" (Jaroslav Kysela) [1220299]
-- [sound] alsa: mm/util: add kstrdup_const (Jaroslav Kysela) [1220299]
-- [sound] alsa: pinctrl sleep and idle states in the core (Jaroslav Kysela) [1220299]
-- [sound] alsa: hda - add ASoC device type for hda core (Jaroslav Kysela) [1220299]
-- [sound] alsa: ALSA SoC tree cleanup - update the build files (Kconfig / Makefile) (Jaroslav Kysela) [1220299]
-- [sound] alsa: SoC tree cleanup - remove all old and unmaintaned files (Jaroslav Kysela) [1220299]
-- [sound] alsa: ALSA SoC tree sync from upstream v4.6 for intel sst (Jaroslav Kysela) [1220299]
-
-* Fri Jun 24 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-453.el7]
-- [firmware] Simplify directory creation (Stanislav Kozina) [1347186]
-- [crypto] testmgr - don't copy from source IV too much (Jerome Marchand) [1340073]
-- [crypto] testmgr - fix out of bound read in __test_aead() (Jerome Marchand) [1340073]
-- [crypto] testmgr - limit IV copy length in aead tests (Jerome Marchand) [1340073]
-- [lib] assoc_array: don't call compare_object() on a node (Jerome Marchand) [1340073]
-- [lib] keys: Fix use-after-free in assoc_array_gc() (Jerome Marchand) [1340073]
-- [virtio] virtio_pci: fix use after free on release (Jerome Marchand) [1340073]
-- [crypto] ghash-clmulni: specify context size for ghash async algorithm (Jerome Marchand) [1340073]
-- [mm] completely remove dumping per-cpu lists from show_mem() (Larry Woodman) [1285530]
-- [mm] hide per-cpu lists in output of show_mem() (Larry Woodman) [1285530]
-- [scsi] storvsc: Filter out storvsc messages CD-ROM medium not present (Cathy Avery) [1338687]
-- [scsi] storvsc: add logging for error/warning messages (Cathy Avery) [1338687]
-- [tools] perf: Add sample_reg_mask to include all perf_regs (Gustavo Duarte) [1289663]
-- [tools] perf: Map the ID values with register names (Gustavo Duarte) [1289663]
-- [powerpc] perf: Add support for sampling interrupt register state (Gustavo Duarte) [1289663]
-- [powerpc] perf: Assign an id to each powerpc register (Gustavo Duarte) [1289663]
-- [tools] perf kvm/{x86, s390}: Remove const from kvm_events_tp (Gustavo Duarte) [1223849]
-- [tools] perf kvm/powerpc: Add support for HCALL reasons (Gustavo Duarte) [1223849]
-- [tools] perf kvm/{x86, s390}: Remove dependency on uapi/kvm_perf.h (Gustavo Duarte) [1223849]
-- [tools] perf kvm/powerpc: Port perf kvm stat to powerpc (Gustavo Duarte) [1223849]
-- [pinctrl] protect pinctrl_list add (Prarit Bhargava) [1349296]
-- [netdrv] enic: set netdev->vlan_features (Stefan Assmann) [1276104]
-- [netdrv] cisco: enic: Update logging macros and uses (Stefan Assmann) [1276104]
-- [netdrv] enic: Update driver to use __dev_uc/mc_sync/unsync calls (Stefan Assmann) [1276104]
-- [netdrv] qede: use proper notifier registration function (Ivan Vecera) [1348286]
-
-* Fri Jun 24 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-452.el7]
-- [include] ib/core: Make all casts in ib_device_cap_flags enum consistent (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Fix bit curruption in ib_device_cap_flags structure (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Fix removal of default GID cache entry (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Fix query port failure in RoCE (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: Fix device managed flow steering support test (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/cm: Fix a recently introduced locking bug (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Fix blue flame quota logic (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use ndo_stop explicitly at shutdown flow (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Fix root flow table update (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Fix masking of reserved bits in XRCD number (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Fix the size of modify QP mailbox (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix alternate path code (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Fix pkey_index length in the QP path record (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix entries check in mlx5_ib_resize_cq (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix entries checks in mlx5_ib_create_cq (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Check BlueFlame HCA support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix returned values of query QP (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Limit query HCA clock (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix FW version diaplay in sysfs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Return PORT_ERR in Active to Initializing tranisition (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Set flow steering capability bit (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Do not require CAP_NET_ADMIN for packet sniffing (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: get rid of private net_device_stats (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: get rid of ret_stats (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: clear some TX ring stats in mlx4_en_clear_stats() (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: fix tx_dropped bug (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fire the CQ completion handler from tasklet (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Use tasklet for user-space CQ completion events (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: Fix unaligned access in send_reply_to_slave (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_core: Fix access to uninitialized index (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Report Scatter FCS device capability when supported (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Add Scatter FCS support for Raw Packet QP (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add Scatter FCS create flag (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add Raw Scatter FCS device capability (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add extended device capability flags (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Add UARs write-combining and non-cached mapping (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Allow mapping the free running counter on PROT_EXEC (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: Use list_for_each_entry_safe (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: trivial fix of spelling mistake on "argument" (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx4: Avoid wrong virtual mappings (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: avoid stack overflow in mlx5e_open_channels (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Fix typos in printk (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Fix checksum handling for non-stripped vlan packets (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add ethtool support for rxvlan-offload (vlan stripping) (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add ethtool support for dump module EEPROM (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add ethtool support for interface identify (LED blinking) (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add support for RXALL netdev feature (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Improve set features ndo resiliency (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Add link down events counter (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add per priority group to PPort counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Rename VPort counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Statistics handling refactoring (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Report additional error statistics in get stats ndo (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add ethtool counter for RX buffer allocation failures (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Delay skb->data access (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Remove redundant barrier (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use napi_alloc_skb for RX SKB allocations (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add fragmented memory support for RX multi packet WQE (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Added ICO SQs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Support RX multi-packet WQE (Striding RQ) (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use function pointers for RX data path handling (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use only close NUMA node for default RSS (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Allocate set of queue counters per netdev (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Introduce device queue counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Fix typos in printk (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Update mlx5_ifc hardware features (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Fix mlx5 ifc cmd_hca_cap bad offsets (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: make VXLAN support conditional (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Use workqueue for vxlan ops (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Implement a mlx5e workqueue (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: Unmap only the relevant IO memory mapping (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Expose correct max_sge_rd limit (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: fix spurious timestamping callbacks (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Add pci shutdown callback (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Remove static from local variable (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Use vport MTU rather than physical port MTU (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Fix minimum MTU (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Device's mtu field is u16 and not int (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Add ConnectX-5 to list of supported devices (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Fix MLX5E_100BASE_T define (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Fix soft lockup in steering error flow (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Fix oops in ib_cache_gid_set_default_gid (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Split SW RX dropped counter per RX ring (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_core: Don't allow to VF change global pause settings (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx4_core: Avoid repeated calls to pci enable/disable (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_core: Implement pci_resume callback (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: do batched put_page using atomic_sub (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: allocate non 0-order pages for RX ring with __GFP_NOMEMALLOC (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: fix VFs callback function prototypes (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/ipoib: Allow mcast packets from other VFs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Implement callbacks for manipulating VFs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Implement modify HCA vport command (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Add VF param when querying vport counter (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/ipoib: Add ndo operations for configuring VFs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add interfaces to control VF attributes (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Support accessing SA in virtualized environment (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add subnet prefix to port info (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Fix decision on using MAD_IFC (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] IB/{core, ulp} Support above 32 possible device capability flags (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Replace setting the zero values in ib_uverbs_ex_query_device (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Introduce offload arithmetic hardware capabilities (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Refactor device capability function (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Fix caching ATOMIC endian mode capability (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: remove unused array zero_gid[] (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_core: Fix backward compatibility on VFs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: add missing braces in verify_qp_parameters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5: use napi_consume_skb API to get bulk free operations (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: use napi_consume_skb API to get bulk free operations (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add a new priority for kernel flow tables (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Relax ndo_setup_tc handle restriction (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5_core: Set flow steering dest only for forward rules (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Add support for don't trap rules (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Introduce forward to next priority action (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Create anchor of last flow table (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] mlx5: Add arbitrary sg list support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add arbitrary sg_list support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Expose correct max_fast_reg_page_list_len (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Make coding style more consistent (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Convert UMR CQ to new CQ API (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Documentation fix in the MAD header file (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: trivial prink cleanup (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Replace memset with eth_zero_addr (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Modify conditional on ucontext existence (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: ib/core: Allow legacy verbs through extended interfaces (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/core: Avoid duplicate code (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Fix global UAR mapping (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Make command timeout way shorter (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Set drop RQ's necessary parameters only (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Move common case counters within sq_stats struct (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Changed naming convention of tx queues in ethtool stats (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Placement changed for carrier state updates (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Replace async events spinlock with synchronize_irq() (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: Implement port type setting via devlink interface (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx4: Implement devlink interface (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Add memory windows allocation support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add vendor's specific data to alloc mw (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Refactor mlx5_core_mr to mkey (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Added support for re-registration of MRs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Refactoring register MR code (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/cma: Print warning on different inner and header P_Keys (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Eliminate GSI RX QP's send buffers (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Pick the right GSI transmission QP for sending (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Reorder GSI completions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Generate completions in software (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Create GSI transmission QPs when P_Key table is changed (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Create multiple transmission GSI QPs (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Add GSI QP wrapper (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Modify QP debugging prints (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Add support for setting source QP number (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Add support for CSUM in RX flow (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx5: Implement UD QP offloads for IPoIB in the TX flow (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Define interface bits for IPoIB offloads (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx5: Modify MAD reading counters method to use counter registers (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Add helper function to read IB error counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Add helper function to read virtual port counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/mlx4: Add support for the don't trap rule (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] ib/core: Add don't trap flag to flow creation (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add TX inner packet counters (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add TX stateless offloads for tunneling (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Add netdev support for VXLAN tunneling (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Protect en header file from redefinitions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Move to checksum complete (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Wake On LAN support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5e: Implement DCBNL IEEE max rate (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Support DCBNL IEEE PFC (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx5e: Support DCBNL IEEE ETS (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Introduce physical port TC/prio access functions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Introduce physical port PFC access functions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5: Introduce a new header file for physical port functions (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/cma: allocating too much memory in make_cma_ports() (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [infiniband] ib/mlx4: Optimize do_slave_init (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: mlx4_en_set_tx_maxrate() can be static (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Add tx queue maxrate support (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Add QCN parameters and statistics handling (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx4_core: Add basic elements for QCN (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv]  mlx4: convert to timecounter adjtime (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Re-add MLX5_DEV_CAP_FLAG_ON_DMND_PG flag (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [include] mlx5_core: Remove unused dev cap enum fields (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Use the new tx_copybreak to set inline threshold (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4_en: Convert the normal skb free path to dev_consume_skb_any() (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-- [netdrv] mlx4: fix errors in printk (kamal heib) [1275159 1296272 1296405 1298421 1298422 1298423 1298424 1298425]
-
-* Thu Jun 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-451.el7]
-- [vhost] vhost_net: basic polling support (Jason Wang) [1345714]
-- [vhost] introduce vhost_vq_avail_empty() (Jason Wang) [1345714]
-- [vhost] introduce vhost_has_work() (Jason Wang) [1345714]
-- [target] target/stat: print full t10_wwn.model buffer (Mike Christie) [1196117]
-- [target] iscsi-target: Add tpg_enabled_sendtargets for disabled discovery (Mike Christie) [1196117]
-- [target] check DPO/FUA usage for COMPARE AND WRITE (Mike Christie) [1196117]
-- [tools] tools/power/turbostat: Add Denverton RAPL support (Steve Best) [1273770]
-- [tools] tools/power/turbostat: Add Denverton support (Steve Best) [1273770]
-- [tools] tools/power turbostat: decode BXT TSC frequency via CPUID (Steve Best) [1273770]
-- [tools] tools/power turbostat: initial BXT support (Steve Best) [1273770]
-- [tools] tools/power/turbostat: split core MSR support into status + limit (Steve Best) [1273770]
-- [documentation] Fix DocBook build with relative $(srctree) (Stanislav Kozina) [1347186]
-- [makefile] tools: Support relative directory path for 'O=' (Stanislav Kozina) [1347186]
-- [tools] tools build: Fix Makefile(s) to properly invoke tools build (Stanislav Kozina) [1347186]
-- [makefile] kbuild: Use relative path when building in a subdir of the source tree (Stanislav Kozina) [1347186]
-- [makefile] kbuild: Use relative path when building in the source tree (Stanislav Kozina) [1347186]
-- [makefile] kbuild: Use relative path for $(objtree) (Stanislav Kozina) [1347186]
-- [pci] aer: Clear error status registers during enumeration and restore (Prarit Bhargava) [1347459]
-- [pci] hv: Handle all pending messages in hv_pci_onchannelcallback() (Vitaly Kuznetsov) [1341657]
-- [pci] hv: Don't leak buffer in hv_pci_onchannelcallback() (Vitaly Kuznetsov) [1341657]
-- [x86] xen: don't reset vcpu_info on a cancelled suspend (Vitaly Kuznetsov) [1141249 1339592]
-- [x86] xen: Fix USB interaction issues when resuming (Vitaly Kuznetsov) [1141249 1339592]
-- [x86] xen: Always freeze/thaw processes when suspend/resuming (Vitaly Kuznetsov) [1141249 1339592]
-- [x86] xen: resume timer irqs early (Vitaly Kuznetsov) [1141249 1339592]
-- [x86] xen: remove deprecated IRQF_DISABLED (Vitaly Kuznetsov) [1141249 1339592]
-- [hid] hyperv: match wait_for_completion_timeout return type (Vitaly Kuznetsov) [1347597]
-- [hid] hyperv: fix _raw_request() prototype (Vitaly Kuznetsov) [1347597]
-- [hid] hyperv: Implement a stub raw_request() entry point (Vitaly Kuznetsov) [1347597]
-
-* Wed Jun 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-450.el7]
-- [md] dm raid: fix failed takeover_reshapes by keeping raid set frozen (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: support to change bitmap region size (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: update Documentation about reshaping_takeover_additonal RAID types (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add reshaping support to the target (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add prerequisite functions and definitions for reshaping (Mike Snitzer) [1191641 1191955]
-- [md] raid10: add prerequisite to run underneath dm-raid (Mike Snitzer) [1191641 1191955]
-- [md] raid5: add prerequisite to run underneath dm-raid (Mike Snitzer) [1191641 1191955]
-- [md] raid5: don't let shrink_slab shrink too far (Mike Snitzer) [1191641 1191955]
-- [md] raid5: avoid races when changing cache size (Mike Snitzer) [1191641 1191955]
-- [md] raid5: ignore released_stripes check (Mike Snitzer) [1191641 1191955]
-- [md] raid5: allow the stripe_cache to grow and shrink (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: inverse check for flags from invalid to valid flags (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: various code cleanups (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: rename functions that alloc and free struct raid_set (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: remove all the bitops wrappers (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: rename _in_range to __within_range (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add missing "dm-raid0" module alias (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: rename _argname_by_flag to dm_raid_arg_name_by_flag (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: bump to v1.9.0 and make the extended SB feature flag reflect it (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: remove ti_error_* wrappers (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: tabify appropriate whitespace (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: enhance status interface and fixup takeover_raid0 (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add raid level takeover support (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: enhance super_sync() to support new superblock members (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: add new reshaping_raid10 format table line options to parameter parser (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: introduce extended superblock and new raid types to support takeover_reshaping (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: use rt_is_raid*() in all appropriate checks (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: more use of flag testing wrappers (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: check constructor arguments for invalid raid level_argument combinations (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: cleanup _ provide infrastructure (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: use dm_arg_set API in constructor (Mike Snitzer) [1191641 1191955]
-- [md] dm raid: rename variable 'ret' to 'r' to conform to other dm code (Mike Snitzer) [1191641 1191955]
-- [netdrv] brcmfmac: add eth_type_trans back for PCIe full dongle (Stanislaw Gruszka) [1250889 1298446 1299383]
-- [netdrv] Remove old rtl818x directory (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport rtl818x driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] configs: add new rtlwifi drivers (Stanislaw Gruszka) [1299383 1314513]
-- [netdrv] Remove old rtlwifi directory (Stanislaw Gruszka) [1299383 1314513]
-- [netdrv] Backport rtlwifi drivers from linux-4.7-rc1 (Stanislaw Gruszka) [1299383 1314513]
-- [netdrv] Remove old mwifiex directory and mwl8k.c file (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport marvell drivers to code from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] configs: add new brcmfmac_pcie driver (Stanislaw Gruszka) [1250889 1298446 1299383]
-- [netdrv] Remove old brcm80211 directory (Stanislaw Gruszka) [1250889 1298446 1299383]
-- [netdrv] Backport brcm80211 drivers to code from linux-4.7-rc1 (Stanislaw Gruszka) [1250889 1298446 1299383]
-- [netdrv] Backport BCMA bus driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport SSB bus driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Remove old rt2x00 directory (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport rt2x00 driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport wil6210 driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport carl9170 driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] configs: add new ath10k driver (Stanislaw Gruszka) [1257698 1298484 1299383]
-- [netdrv] Backport ath10k driver from linux-4.7-rc1 (Stanislaw Gruszka) [1257698 1298484 1299383]
-- [netdrv] Backport ath9k driver from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Remove old iwlegacy directory (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport iwlegacy from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Remove old iwlwifi directory (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport iwlwifi driver from linux-4.7-rc1 (Stanislaw Gruszka) [1266685 1298113 1299383 1315535 1315537]
-- [netdrv] Backport mac80211 from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] Backport wireless core from linux-4.7-rc1 (Stanislaw Gruszka) [1299383]
-- [netdrv] gpio: drop retval check enforcing from gpiochip_remove() (Stanislaw Gruszka) [1299383]
-- [kernel] locking: osq: No need for load/acquire when acquire-polling (Lauro Ramos Venancio) [1342653]
-- [powerpc] Wire up sys_memfd_create() (Adrian Reber) [1348029]
-- [powercap] rapl: add support for Denverton (Steve Best) [1273778]
-- [powercap] rapl: Add Skylake Server model number (Steve Best) [1273778]
-- [powercap] rapl: Reorder CPU detection table (Steve Best) [1273778]
-- [powercap] rapl: Use Intel model macros intead of open-coding (Steve Best) [1273778]
-- [x86] cpu/intel: Introduce macros for Intel family numbers (Steve Best) [1273778]
-
-* Wed Jun 22 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-449.el7]
-- [of] handle NULL node in next_child iterators (Torez Smith) [1348510]
-- [of] Create unlocked version of for_each_child_of_node() (Torez Smith) [1348510]
-- [scsi] vpd pages are mandatory for SPC-2 (Ewan Milne) [1347292]
-- [drm] revert "virtio: make find_vqs() checkpatch.pl-friendly" (Rob Clark) [1295900]
-- [drm] fix virtio backport (Rob Clark) [1295900]
-- [mm] hugetlb: use EOPNOTSUPP in hugetlb sysctl handlers (Jan Stancek) [1346873]
-- [vfio] pci: Allow VPD short read (Auger Eric) [1341417]
-- [kernel] rh_taint: introduce mark_hardware_deprecated() (Maurizio Lombardi) [1344392]
-- [gpu] drm/prime: fix error path deadlock fail (Rob Clark) [1335461]
-- [idle] intel: add denverton (Steve Best) [1273777]
-- [x86] Work around MPX erratum SKD046 (Rui Wang) [1340625]
-- [cpufreq] intel_pstate: Enable HWP by default (David Arcari) [1258085]
-- [security] keys: potential uninitialized variable (David Howells) [1341352] {CVE-2016-4470}
-- [lib] keys: Fix ASN.1 indefinite length object parsing (David Howells) [1308815] {CVE-2016-0758}
-
-* Tue Jun 21 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-448.el7]
-- [fs] overlayfs: Warn instead of error if upper filesystem does not support d_type (Vivek Goyal) [1344057]
-- [fs] gfs2: don't set rgrp gl_object until it's inserted into rgrp tree (Robert S Peterson) [1344363]
-- [fs] xfs: disallow rw remount on fs with unknown ro-compat features (Eric Sandeen) [1321747]
-- [fs] dcache: d_walk/dentry_free race (Alexander Viro) [1344076]
-- [fs] bio: Need to free integrity payload if the split bio gets memory by itself (Xiao Ni) [1276454]
-- [fs] fanotify: fix notification of groups with inode & mount marks (Miklos Szeredi) [1308393]
-- [fs] libceph: use s instead of pE in dout()s (Ilya Dryomov) [1344930]
-- [fs] libceph: put request only if it's done in handle_reply() (Ilya Dryomov) [1344930]
-- [fs] libceph: change ceph_osdmap_flag() to take osdc (Ilya Dryomov) [1344930]
-- [fs] ceph: tolerate bad i_size for symlink inode (Ilya Dryomov) [1344930]
-- [fs] ceph: fix inode reference leak (Ilya Dryomov) [1344930]
-- [fs] ceph: multiple filesystem support (Ilya Dryomov) [1344930]
-- [fs] libceph: support for subscribing to "mdsmap.<id>" maps (Ilya Dryomov) [1344930]
-- [fs] libceph: replace ceph_monc_request_next_osdmap() (Ilya Dryomov) [1344930]
-- [fs] libceph: take osdc->lock in osdmap_show() and dump flags in hex (Ilya Dryomov) [1344930]
-- [fs] libceph: pool deletion detection (Ilya Dryomov) [1344930]
-- [fs] libceph: async MON client generic requests (Ilya Dryomov) [1344930]
-- [fs] libceph: support for checking on status of watch (Ilya Dryomov) [1344930]
-- [fs] libceph: support for sending notifies (Ilya Dryomov) [1344930]
-- [fs] libceph, rbd: ceph_osd_linger_request, watch/notify v2 (Ilya Dryomov) [1344930]
-- [fs] rbd: rbd_dev_header_unwatch_sync() variant (Ilya Dryomov) [1344930]
-- [fs] libceph: wait_request_timeout() (Ilya Dryomov) [1344930]
-- [fs] libceph: request_init() and request_release_checks() (Ilya Dryomov) [1344930]
-- [fs] libceph: a major OSD client update (Ilya Dryomov) [1344930]
-- [fs] libceph: protect osdc->osd_lru list with a spinlock (Ilya Dryomov) [1344930]
-- [fs] libceph: allocate ceph_osd with GFP_NOFAIL (Ilya Dryomov) [1344930]
-- [fs] libceph: osd_init() and osd_cleanup() (Ilya Dryomov) [1344930]
-- [fs] libceph: handle_one_map() (Ilya Dryomov) [1344930]
-- [fs] libceph: allocate dummy osdmap in ceph_osdc_init() (Ilya Dryomov) [1344930]
-- [fs] libceph: schedule tick from ceph_osdc_init() (Ilya Dryomov) [1344930]
-- [fs] libceph: move schedule_delayed_work() in ceph_osdc_init() (Ilya Dryomov) [1344930]
-- [fs] libceph: redo callbacks and factor out MOSDOpReply decoding (Ilya Dryomov) [1344930]
-- [fs] libceph: drop msg argument from ceph_osdc_callback_t (Ilya Dryomov) [1344930]
-- [fs] libceph: switch to calc_target(), part 2 (Ilya Dryomov) [1344930]
-- [fs] libceph: switch to calc_target(), part 1 (Ilya Dryomov) [1344930]
-- [fs] libceph: introduce ceph_osd_request_target, calc_target() (Ilya Dryomov) [1344930]
-- [fs] libceph: pi->min_size, pi->last_force_request_resend (Ilya Dryomov) [1344930]
-- [fs] libceph: make pgid_cmp() global (Ilya Dryomov) [1344930]
-- [fs] libceph: rename ceph_calc_pg_primary() (Ilya Dryomov) [1344930]
-- [fs] libceph: ceph_osds, ceph_pg_to_up_acting_osds() (Ilya Dryomov) [1344930]
-- [fs] libceph: rename ceph_oloc_oid_to_pg() (Ilya Dryomov) [1344930]
-- [fs] libceph: fix ceph_eversion encoding (Ilya Dryomov) [1344930]
-- [fs] libceph: DEFINE_RB_FUNCS macro (Ilya Dryomov) [1344930]
-- [fs] libceph: open-code remove_{all,old}_osds() (Ilya Dryomov) [1344930]
-- [fs] libceph: nuke unused fields and functions (Ilya Dryomov) [1344930]
-- [fs] rbd: use header_oid instead of header_name (Ilya Dryomov) [1344930]
-- [fs] libceph: variable-sized ceph_object_id (Ilya Dryomov) [1344930]
-- [fs] libceph: change how osd_op_reply message size is calculated (Ilya Dryomov) [1344930]
-- [fs] libceph: move message allocation out of ceph_osdc_alloc_request() (Ilya Dryomov) [1344930]
-- [fs] libceph: grab snapc in ceph_osdc_alloc_request() (Ilya Dryomov) [1344930]
-- [fs] libceph: make ceph_osdc_put_request() accept NULL (Ilya Dryomov) [1344930]
-- [fs] rbd: get/put img_request in rbd_img_request_submit() (Ilya Dryomov) [1344930]
-- [fs] rbd: report unsupported features to syslog (Ilya Dryomov) [1344930]
-- [fs] rbd: fix rbd map vs notify races (Ilya Dryomov) [1344930]
-- [fs] libceph: make authorizer destruction independent of ceph_auth_client (Ilya Dryomov) [1344930]
-- [fs] rbd: use GFP_NOIO consistently for request allocations (Ilya Dryomov) [1344930]
-- [fs] libceph: use KMEM_CACHE macro (Ilya Dryomov) [1344930]
-- [fs] ceph: use kmem_cache_zalloc (Ilya Dryomov) [1344930]
-- [fs] rbd: use KMEM_CACHE macro (Ilya Dryomov) [1344930]
-- [fs] ceph: use lookup request to revalidate dentry (Ilya Dryomov) [1344930]
-- [fs] ceph: kill ceph_get_dentry_parent_inode() (Ilya Dryomov) [1344930]
-- [fs] ceph: fix security xattr deadlock (Ilya Dryomov) [1344930]
-- [fs] ceph: don't request vxattrs from MDS (Ilya Dryomov) [1344930]
-- [fs] configs: enable ceph filesystem ACL support (Ilya Dryomov) [1344930]
-- [fs] ceph: add acl, noacl options for cephfs mount (Ilya Dryomov) [1344930]
-- [fs] ceph: include the initial ACL in create/mkdir/mknod MDS requests (Ilya Dryomov) [1344930]
-- [fs] ceph: add missing init_acl() for mkdir() and atomic_open() (Ilya Dryomov) [1344930]
-- [fs] ceph: remove useless ACL check (Ilya Dryomov) [1344930]
-- [fs] ceph: make ceph_forget_all_cached_acls() static inline (Ilya Dryomov) [1344930]
-- [fs] ceph: fix ceph_set_acl() (Ilya Dryomov) [1344930]
-- [fs] ceph: Remove get/set acl on symlinks (Ilya Dryomov) [1344930]
-- [fs] ceph: add acl for cephfs (Ilya Dryomov) [1344930]
-- [fs] ceph: fix mounting same fs multiple times (Ilya Dryomov) [1344930]
-- [fs] ceph: remove unnecessary NULL check (Ilya Dryomov) [1344930]
-- [fs] ceph: avoid updating directory inode's i_size accidentally (Ilya Dryomov) [1344930]
-- [fs] ceph: fix race during filling readdir cache (Ilya Dryomov) [1344930]
-- [fs] libceph: use sizeof_footer() more (Ilya Dryomov) [1344930]
-- [fs] ceph: kill ceph_empty_snapc (Ilya Dryomov) [1344930]
-- [fs] ceph: fix a wrong comparison (Ilya Dryomov) [1344930]
-- [fs] ceph: replace CURRENT_TIME by current_fs_time() (Ilya Dryomov) [1344930]
-- [fs] ceph: scattered page writeback (Ilya Dryomov) [1344930]
-- [fs] libceph: add helper that duplicates last extent operation (Ilya Dryomov) [1344930]
-- [fs] libceph: enable large, variable-sized OSD requests (Ilya Dryomov) [1344930]
-- [fs] libceph: osdc->req_mempool should be backed by a slab pool (Ilya Dryomov) [1344930]
-- [fs] libceph: make r_request msg_size calculation clearer (Ilya Dryomov) [1344930]
-- [fs] libceph: move r_reply_op_{len, result} into struct ceph_osd_req_op (Ilya Dryomov) [1344930]
-- [fs] libceph: rename ceph_osd_req_op::payload_len to indata_len (Ilya Dryomov) [1344930]
-- [fs] ceph: remove useless BUG_ON (Ilya Dryomov) [1344930]
-- [fs] ceph: don't enable rbytes mount option by default (Ilya Dryomov) [1344930]
-- [fs] ceph: encode ctime in cap message (Ilya Dryomov) [1344930]
-- [fs] libceph: behave in mon_fault() if cur_mon < 0 (Ilya Dryomov) [1344930]
-- [fs] libceph: reschedule tick in mon_fault() (Ilya Dryomov) [1344930]
-- [fs] libceph: introduce and switch to reopen_session() (Ilya Dryomov) [1344930]
-- [fs] libceph: monc hunt rate is 3s with backoff up to 30s (Ilya Dryomov) [1344930]
-- [fs] libceph: monc ping rate is 10s (Ilya Dryomov) [1344930]
-- [fs] libceph: pick a different monitor when reconnecting (Ilya Dryomov) [1344930]
-- [fs] libceph: revamp subs code, switch to SUBSCRIBE2 protocol (Ilya Dryomov) [1344930]
-- [fs] libceph: decouple hunting and subs management (Ilya Dryomov) [1344930]
-- [fs] libceph: move debugfs initialization into __ceph_open_session() (Ilya Dryomov) [1344930]
-- [fs] ceph: initial CEPH_FEATURE_FS_FILE_LAYOUT_V2 support (Ilya Dryomov) [1344930]
-- [fs] libceph: don't spam dmesg with stray reply warnings (Ilya Dryomov) [1344930]
-- [fs] libceph: use the right footer size when skipping a message (Ilya Dryomov) [1344930]
-- [fs] libceph: don't bail early from try_read() when skipping a message (Ilya Dryomov) [1344930]
-- [fs] libceph: MOSDOpReply v7 encoding (Ilya Dryomov) [1344930]
-- [fs] libceph: advertise support for TUNABLES5 (Ilya Dryomov) [1344930]
-- [fs] crush: decode and initialize chooseleaf_stable (Ilya Dryomov) [1344930]
-- [fs] crush: add chooseleaf_stable tunable (Ilya Dryomov) [1344930]
-- [fs] crush: ensure take bucket value is valid (Ilya Dryomov) [1344930]
-- [fs] crush: ensure bucket id is valid before indexing buckets array (Ilya Dryomov) [1344930]
-- [fs] ceph: fix snap context leak in error path (Ilya Dryomov) [1344930]
-- [fs] ceph: checking for IS_ERR instead of NULL (Ilya Dryomov) [1344930]
-- [fs] libceph: remove outdated comment (Ilya Dryomov) [1344930]
-- [fs] libceph: kill off ceph_x_ticket_handler::validity (Ilya Dryomov) [1344930]
-- [fs] libceph: invalidate AUTH in addition to a service ticket (Ilya Dryomov) [1344930]
-- [fs] libceph: fix authorizer invalidation, take 2 (Ilya Dryomov) [1344930]
-- [fs] libceph: clear messenger auth_retry flag if we fault (Ilya Dryomov) [1344930]
-- [fs] libceph: fix ceph_msg_revoke() (Ilya Dryomov) [1344930]
-- [fs] libceph: use list_for_each_entry_safe (Ilya Dryomov) [1344930]
-- [fs] ceph: use i_size_{read, write} to get/set i_size (Ilya Dryomov) [1344930]
-- [fs] ceph: re-send AIO write request when getting -EOLDSNAP error (Ilya Dryomov) [1344930]
-- [fs] ceph: Asynchronous IO support (Ilya Dryomov) [1344930]
-- [fs] ceph: Avoid to propagate the invalid page point (Ilya Dryomov) [1344930]
-- [fs] ceph: fix double page_unlock() in page_mkwrite() (Ilya Dryomov) [1344930]
-- [fs] rbd: delete an unnecessary check before rbd_dev_destroy() (Ilya Dryomov) [1344930]
-- [fs] libceph: use list_next_entry instead of list_entry_next (Ilya Dryomov) [1344930]
-- [fs] ceph: ceph_frag_contains_value can be boolean (Ilya Dryomov) [1344930]
-- [fs] ceph: remove unused functions in ceph_frag.h (Ilya Dryomov) [1344930]
-- [fs] rbd: don't put snap_context twice in rbd_queue_workfn() (Ilya Dryomov) [1344930]
-- [fs] libceph: clear msg->con in ceph_msg_release() only (Ilya Dryomov) [1344930]
-- [fs] libceph: add nocephx_sign_messages option (Ilya Dryomov) [1344930]
-- [fs] libceph: stop duplicating client fields in messenger (Ilya Dryomov) [1344930]
-- [fs] libceph: drop authorizer check from cephx msg signing routines (Ilya Dryomov) [1344930]
-- [fs] libceph: msg signing callouts don't need con argument (Ilya Dryomov) [1344930]
-- [fs] libceph: evaluate osd_req_op_data() arguments only once (Ilya Dryomov) [1344930]
-- [fs] libceph: introduce ceph_x_authorizer_cleanup() (Ilya Dryomov) [1344930]
-- [fs] rbd: remove duplicate calls to rbd_dev_mapping_clear() (Ilya Dryomov) [1344930]
-- [fs] rbd: set device_type::release instead of device::release (Ilya Dryomov) [1344930]
-- [fs] rbd: don't free rbd_dev outside of the release callback (Ilya Dryomov) [1344930]
-- [fs] rbd: return -ENOMEM instead of pool id if rbd_dev_create() fails (Ilya Dryomov) [1344930]
-- [fs] libceph: use local variable cursor instead of &msg->cursor (Ilya Dryomov) [1344930]
-- [fs] libceph: remove con argument in handle_reply() (Ilya Dryomov) [1344930]
-- [fs] ceph: combine as many iovec as possile into one OSD request (Ilya Dryomov) [1344930]
-- [fs] rbd: drop null test before destroy functions (Ilya Dryomov) [1344930]
-- [fs] rbd: require stable pages if message data CRCs are enabled (Ilya Dryomov) [1344930]
-- [fs] rbd: prevent kernel stack blow up on rbd map (Ilya Dryomov) [1344930]
-- [fs] rbd: don't leak parent_spec in rbd_dev_probe_parent() (Ilya Dryomov) [1344930]
-- [fs] rbd: use writefull op for object size writes (Ilya Dryomov) [1344930]
-- [fs] rbd: set max_sectors explicitly (Ilya Dryomov) [1344930]
-- [fs] libceph: advertise support for keepalive2 (Ilya Dryomov) [1344930]
-- [fs] libceph: don't access invalid memory in keepalive2 path (Ilya Dryomov) [1344930]
-- [fs] libceph: check data_len in ->alloc_msg() (Ilya Dryomov) [1344930]
-- [fs] libceph: use keepalive2 to verify the mon session is alive (Ilya Dryomov) [1344930]
-- [fs] rbd: plug rbd_dev->header.object_prefix memory leak (Ilya Dryomov) [1344930]
-- [fs] rbd: fix double free on rbd_dev->header_name (Ilya Dryomov) [1344930]
-- [fs] libceph: set 'exists' flag for newly up osd (Ilya Dryomov) [1344930]
-- [fs] libceph: rename con_work() to ceph_con_workfn() (Ilya Dryomov) [1344930]
-- [fs] libceph: Avoid holding the zero page on ceph_msgr_slab_init errors (Ilya Dryomov) [1344930]
-- [fs] libceph: remove the unused macro AES_KEY_SIZE (Ilya Dryomov) [1344930]
-- [fs] rbd: fix copyup completion race (Ilya Dryomov) [1344930]
-- [fs] libceph: treat sockaddr_storage with uninitialized family as blank (Ilya Dryomov) [1344930]
-- [fs] libceph: enable ceph in a non-default network namespace (Ilya Dryomov) [1344930]
-- [fs] rbd: use GFP_NOIO in rbd_obj_request_create() (Ilya Dryomov) [1344930]
-- [fs] crush: fix a bug in tree bucket decode (Ilya Dryomov) [1344930]
-- [fs] libceph: Fix ceph_tcp_sendpage()'s more boolean usage (Ilya Dryomov) [1344930]
-- [fs] libceph: Remove spurious kunmap() of the zero page (Ilya Dryomov) [1344930]
-- [fs] rbd: queue_depth map option (Ilya Dryomov) [1344930]
-- [fs] rbd: store rbd_options in rbd_device (Ilya Dryomov) [1344930]
-- [fs] rbd: terminate rbd_opts_tokens with Opt_err (Ilya Dryomov) [1344930]
-- [fs] rbd: bump queue_max_segments (Ilya Dryomov) [1344930]
-- [fs] ceph: rework dcache readdir (Ilya Dryomov) [1344930]
-- [fs] crush: sync up with userspace (Ilya Dryomov) [1344930]
-- [fs] crush: fix crash from invalid 'take' argument (Ilya Dryomov) [1344930]
-- [fs] libceph: fix wrong name "Ceph filesystem for Linux" (Ilya Dryomov) [1344930]
-- [fs] rbd: timeout watch teardown on unmap with mount_timeout (Ilya Dryomov) [1344930]
-- [fs] libceph: a couple tweaks for wait loops (Ilya Dryomov) [1344930]
-- [fs] libceph: nuke time_sub() (Ilya Dryomov) [1344930]
-- [fs] libceph: properly release STAT request's raw_data_in (Ilya Dryomov) [1344930]
-- [fs] Revert "libceph: clear r_req_lru_item in __unregister_linger_request()" (Ilya Dryomov) [1344930]
-- [fs] libceph: request a new osdmap if lingering request maps to no osd (Ilya Dryomov) [1344930]
-- [fs] ovl: Do d_type check only if work dir creation was successful (Miklos Szeredi) [1341795]
-- [fs] ovl: update documentation (Miklos Szeredi) [1341795]
-- [fs] ovl: override creds with the ones from the superblock mounter (Miklos Szeredi) [1341795]
-- [fs] ovl: ignore permissions on underlying lookup (Miklos Szeredi) [1341795]
-- [fs] vfs: add lookup_hash() helper (Miklos Szeredi) [1341795]
-- [fs] vfs: rename: check backing inode being equal (Miklos Szeredi) [1341795]
-- [fs] vfs: add vfs_select_inode() helper (Miklos Szeredi) [1341795]
-- [fs] ovl: cleanup unused var in rename2 (Miklos Szeredi) [1341795]
-- [fs] ovl: rename is_merge to is_lowest (Miklos Szeredi) [1341795]
-- [fs] ovl: verify upper dentry before unlink and rename (Miklos Szeredi) [1341795]
-- [fs] ovl: copy new uid/gid into overlayfs runtime inode (Miklos Szeredi) [1341795]
-- [fs] ovl: ignore lower entries when checking purity of non-directory entries (Miklos Szeredi) [1341795]
-- [fs] ovl: fix getcwd() failure after unsuccessful rmdir (Miklos Szeredi) [1341795]
-- [fs] ovl: fix working on distributed fs as lower layer (Miklos Szeredi) [1341795]
-- [fs] ovl: Remove email address from Documentation/filesystems/overlayfs.txt (Miklos Szeredi) [1341795]
-- [fs] ovl: document lower layer ordering (Miklos Szeredi) [1341795]
-- [fs] ovl: add testsuite to docs (Miklos Szeredi) [1341795]
-- [fs] ovl: update MAINTAINERS (Miklos Szeredi) [1341795]
-
-* Mon Jun 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-447.el7]
-- [infiniband] ib/core: Use GRH when the path hop-limit > 0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/{core, mlx5}: Fix input len in vendor part of create_qp/srq (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Avoid using user-index for SRQs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Allow resetting VF admin mac to zero (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Check the correct limitation on VFs for HA mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix lockdep warning in handling of mac/vlan tables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Provide correct packet/bytes statistics (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add rx/tx bytes software counters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Correctly handle RSS indirection table when changing number of channels (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Fix ethtool RX hash func configuration change (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Fix soft lockup when HW Timestamping is enabled (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Fix LRO modify (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove wrong poll CQ optimization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix missed clean call in registration path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb3: fix up vpd strings for kstrto*() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Avoid changing dev->features directly in run-time (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Set UAR page size to 4KB regardless of system page size (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Do not BUG_ON during reset when PCI is offline (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix potential corruption in counters database (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Choose time-stamping shift value according to HW frequency (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Count HW buffer overrun only once (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: rpcrdma_bc_receive_call() should init rq_private_buf.len (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add support for the port info class for RoCE ports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add support for extended counters over RoCE ports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Fix arm logic to align with new cq API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add pci device id for chelsio t540 lom adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Use static constant netdevice ndos (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove select queue ndo initialization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Use offset based reserved field names in the IFC header file (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: fix for rare multicast join race condition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix reading capability mask of the port info class (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4: fix some error handling in mlx4_multi_func_init() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: increment devcmd2 result ring in case of timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Fixing ocrdma debugfs directory remove (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Fix pkey_index returned by driver in rq work completion (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: populate max_sge_rd in device attributes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Initialize stats resources in the driver before ib device registration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sysfs: remove unused va_list args (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Do not set skb truesize since using one linearskb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1305593 1310156]
-- [infiniband] ib/core: Set correct payload length for RoCEv2 over IPv6 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Use MLX5_GET to correctly get end of padding mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Fix use of null pointer PD (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Fix reqlen validation in mlx5_ib_alloc_ucontext (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Add CREATE_CQ and CREATE_QP to uverbs_ex_cmd_mask (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Unify CQ create flags check (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Expose Raw Packet QP to user space consumers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] {ib, net}/mlx5: Move the modify QP operation table to mlx5_ib (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Support setting Ethernet priority for Raw Packet QPs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add Raw Packet QP query functionality (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Add create and destroy functionality for Raw Packet QP (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Refactor mlx5_ib_qp to accommodate other QP types (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Allocate a Transport Domain for each ucontext (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Warn on unsupported events of QP/RQ/SQ (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Add RQ and SQ event handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Export transport objects (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Expose CQE version to user-space (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] ib/mlx5: Add CQE version 1 support to user QPs and SRQs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Fix data validation in mlx5_ib_alloc_ucontext (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Fix netlink local service GFP crash (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srpt: Remove redundant wc array (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Improve ipoib UD performance (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Advertise RoCE v2 support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Create and use another QP1 for RoCEv2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx4: Enable send of RoCE QP1 packets with IP/UDP headers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Enable RoCE v2 when the IB device is added (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx4: Support modify_qp for RoCE v2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add definition for the standard RoCE V2 UDP port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Add support for RoCE v2 entropy (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Add support for configuring RoCE v2 UDP port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx4: Add support for setting RoCEv2 gids in hardware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Configure mlx4 hardware for mixed RoCE v1/v2 modes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add gid_type to GID properties (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4: Query RoCE support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svc_rdma: use local_dma_lkey (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Add class for RDMA backwards direction transport (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Define maximum number of backchannel requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Make map_xdr non-static (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Remove last two __GFP_NOFAIL call sites (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Add gfp flags to svc_rdma_post_recv() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Remove unused req_map and ctxt kmem_caches (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Improve allocation of struct svc_rdma_req_map (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Improve allocation of struct svc_rdma_op_ctxt (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up process_context() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up rdma_create_xprt() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Use hop-limit from IP stack for RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Rename rdma_addr_find_dmac_by_grh (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: Fix a recently introduced deadlock (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srpt: Fix the RDMA completion handlers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix dereference before check (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Eliminate sparse false context imbalance warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: sysfs.c: Fix PerfMgt ClassPortInfo handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Remove set-but-not-used variable from ib_sg_to_pages() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Fix passing casted pointer in mlx5_query_port_roce (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mad: use CQ abstraction (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mad: pass ib_mad_send_buf explicitly to the recv_handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] Replace memset with eth_zero_addr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Delete locally redefined variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4: Remove unused macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Take source mac from AH instead from the port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Initialize hop_limit when creating address handle (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Expose correct maximum number of CQE capacity (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Take clip reference before starting IPv6 listen (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Fixes GW-Basic labels to meaningful error names (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Fixes static checker warning in c4iw_rdev_open() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/nes: checking for NULL instead of IS_ERR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Support creating qps with GFP_NOIO flag (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sysfs: Fix sparse warning on attr_id (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Fix RDMA port validation for iWarp (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: fix mcast detach when qp not attached (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Fix kernel panic on multicast flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Fix trimming down IRQ number (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add flow steering support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Export flow steering API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Make ipv4/ipv6 location more clear (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Enable flow steering support for the IB driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Initialize namespaces only when supported by device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Set priority attributes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Connect flow tables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce modify flow table command (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Managing root flow table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Add utilities to find next and prev flow-tables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce flow steering autogrouped flow table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Fixes static checker warning in mps_tcam_show() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Fix non negative ERR_PTR isert_device_get usage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add PTP Hardware Clock (PHC) support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add HW timestamping (TS) support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce access function to read internal timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Do not modify the TX SKB (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] chelsio: constify cphy_ops structures (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Support the remote invalidation exception (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Remove deprecated module parameters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Get TID calculation right for IPv6 mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Change the increment rkey flow logic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/isert: Support the remote invalidation exception (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/isert: Declare correct flags when accepting a connection (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/isert: Remove unused file iser_proto.h (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/iser, isert: Create and use new shared header (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: set intuitive values for mr_valid (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Don't register memory for all immediate data writes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Reuse ib_sg_to_pages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Fix module init not cleaning up on error flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: constify mmu_notifier_ops structures (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: constify iser_reg_ops structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/nes: constify nes_cm_ops structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: report tx/rx checksum cap in query results (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Convert kmalloc to kmalloc_array for checkpatch (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Suppress non-fatal memory allocations (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Advertise atomic capabilities in query device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Add setting ATOMIC endian mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb3: Fix incorrectly returning error on success (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Pass qid range to user space driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mad: Ensure fairness in ib_mad_completion_handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add driver cross-channel support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add cross-channel support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Align coding style of ib_device_cap_flags structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Mmap the HCA's core clock register to user-space (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add hca_core_clock_offset to udata in init_ucontext (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add support for hca_core_clock and timestamp_mask (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add ib_is_udata_cleared (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Add create_cq extended command (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4vf: Update to 128 byte mailbox size for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update SGE context congestion map change for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update mps_tcam output to include T6 fields (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update correct encoding of SGE Ingress DMA States for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update Congestion Channel map for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update register range and SGE registers for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4/cxgb4vf: Update Ingress padding boundary values for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update pm_stats for T6 adapter family (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Pass correct argument to t4_link_l1cfg() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Display extended counter set if available (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Specify attribute_id in port_table_attribute (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Create get_perf_mad function in sysfs.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove the write-only usecnt field from struct ib_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove the struct ib_phys_buf definition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] nes: simplify nes_reg_phys_mr calling conventions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] cxgb3: simplify iwch_get_dma_wr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove in-kernel support for memory windows (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove support for phys MRs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove ib_query_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: start documenting device capabilities (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Move multicast specific code out of ipoib_main.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: factor out common multicast list removal code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Support RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Add RoCE fields to Address Vector (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Support IB device's callbacks for adding/deleting GIDs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Set network_hdr_type upon RoCE responder completion (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Extend query_device/port to support RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce access functions to query vport RoCE fields (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce access functions to enable/disable RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Support IB device's callback for getting its netdev (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Support IB device's callback for getting the link layer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use napi_complete_done() api in napi handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use the node info to alloc_ring() for RX queues (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: get naming correct for iscsi queues (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Warn if device doesn't have enough PCI bandwidth (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: delete unneeded IS_ERR test (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Handle 0 counts in resource allocation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Fix resource leak in error case (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Support more QP state transitions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Fix message typo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Fix incorrect cast in usnic_ib_fw_string_to_u64 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Improve a failure message (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/usnic: Remove unused prototype (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cma: Join and leave multicast groups with IGMP (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Initialize UD header structure with IP and UDP headers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Add configfs for rdma_cm (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] configfs: add show and store methods to struct configfs_attribute (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/rdma_cm: Add wrapper for cma reference count (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Validate route when we init ah (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Move rdma_is_upper_dev_rcu to header file (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add rdma_network_type to wc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add ROCE_UDP_ENCAP (RoCE V2) type (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Add gid attributes to sysfs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: Use the source GID index type (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add gid_type to gid attribute (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: don't search the GID table twice (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Change per-entry lock in RoCE GID table to one lock (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Refactor GID cache's ib_dispatch_event (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: don't pretend to use cpu notifiers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Avoid calling ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Avoid calling ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ulps: Avoid calling ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Avoid calling ib_query_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Save the device attributes on the device structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix module parameter spelling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove incorrect link credit check (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Change num_rcv_contexts to num_user_contexts and its meaning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix for module parameter hdrq_entsize when it's 0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix a possible null pointer dereference (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: HFI now sends OPA Traps instead of IBTA (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: add definitions for OPA traps (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: convert buffers allocated atomic to per cpu (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: fix sdma build failures to always clean up (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: fix pio progress routine race with allocator (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Detect SDMA transmission error early (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Clean-up unnecessary goto statements (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add page lock limit check for SDMA requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Convert to use get_user_pages_fast (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Unconditionally clean-up SDMA queues (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Return immediately on error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Reduce snoop locking scope in IOCTL handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Further clean up hfi1_ioctl parameter checks (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: hfi1_ioctl remove setlink state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Return early from hfi1_ioctl parameter errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix camel case variables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c correct sizeof parameter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c add missing braces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c change null comparisons (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c fix white space errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c fix logical continuations (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c fix alignment (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: diag.c use BIT macros (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Adding counter resolutions for DataPortCounters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Consider VL15 MTU also when calculating the maximum VL MTU (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: unknown frame messages are not errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: remove SPC freeze error messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Unexpected link up pkey values are not an error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Destroy workqueues if hfi1_register_ib_device() call returns error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Adds software counters for bitfields within various error status fields (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Correctly limit VLs against SDMA engines (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add a credit push on diagpkt allocate fail (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Extend quiet timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add one-time LCB reset (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix qp.h comments (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add aeth name syndrome decode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Decode CNP opcode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Support alternate firmware names (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Eliminate WARN_ON when VL is invalid (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix error in hfi1 driver build (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] staging/rdma/hfi1: Adjust EPROM partitions, add EPROM commands (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Read EFI variable for device description (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: rework is_a0() and is_bx() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add space between concatenated string elements (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove rcv bubbles code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: remove RxCtxRHQS from hfi1stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix downgrade race (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: revert commit e7104a2a9606 ('xprtrdma: Cap req_cqinit') (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Invalidate in the RPC reply handler (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Add ro_unmap_sync method for all-physical registration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Add ro_unmap_sync method for FMR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Add ro_unmap_sync method for FRWR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Introduce ro_unmap_sync method (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Move struct ib_send_wr off the stack (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Disable RPC/RDMA backchannel debugging messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: xprt_rdma_free() must not release backchannel reqs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Fix additional uses of spin_lock_irqsave(rb_lock) (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: checking for NULL instead of IS_ERR() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: clean up some curly braces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Replace arpq_head/arpq_tail with SKB double link-list code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use t4_mgmt_tx() API for sending write l2t request ctrl packets (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add API to alloc l2t entry; also update existing ones (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use symbolic constant for VLAN priority calculation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Rename en_flow_table.c to en_fs.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Use flow steering infrastructure for mlx5_en (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Flow steering tree initialization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Introduce flow steering API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Add flow steering lookup algorithms (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Add flow steering base data structures (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce flow steering firmware commands (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Assign random MAC address if needed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: Fix query E-Switch capabilities (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Handle clip return values (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Fix incorrect 'c' suffix to pI4, use pISc instead (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Convert to CQ abstraction (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Use helper for container_of (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Use a dedicated descriptor for login (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: use the new CQ API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srpt: chain RDMA READ/WRITE requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: add a proper completion queue abstraction (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Adds PCI device id for new T5 adapters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add FL DMA mapping error and low counter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Deal with wrap-around of queue for Work request (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: prevent simultaneous execution of service_ofldq() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use ACCES_ONCE macro to read queue's consumer index (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4/cxgb4vf: update Kconfig file to include T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Align rest of the ethtool get stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb3: Convert simple_strtoul to kstrtox (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Support the HA mode for SRIOV VFs too (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Use the VF base-port when demuxing mad from wire (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Keep VLAN/MAC tables mirrored in multifunc HA mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Support mirroring VF DMFS rules on both ports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Use both physical ports to dispatch link state events to VF (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Use both physical ports to set the VF link state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add support for SR-IOV ndos (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: E-Switch, Introduce get vf statistics (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: E-Switch, Introduce set vport vlan (VST mode) (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: E-Switch, Introduce HCA cap and E-Switch vport context (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: E-Switch, Introduce Vport administration functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: E-Switch, Add SR-IOV (FDB) support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: E-Switch, Introduce FDB hardware capabilities (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introducing E-Switch and l2 table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Write vlan list into vport context (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Write UC/MC list and promisc mode into vport context (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introduce access functions to modify/query vport vlans (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introduce access functions to modify/query vport promisc mode (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introduce access functions to modify/query vport state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Introduce access functions to modify/query vport mac lists (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Update access functions to Query/Modify vport MAC address (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5: Add HW capabilities and structs for SR-IOV E-Switch (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Add base sriov support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Modify enable/disable hca functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Handle packets with invalid RHF on context 0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Reduce number of parameters passed to send handlers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: add ACK coalescing logic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: add common routine for queuing acks (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Workaround to prevent corruption during packet delivery (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: pre-compute sc and sde for RC/UC QPs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Use parallel workqueue for SDMA engines (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: move hfi1_migrate_qp (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: use one-shot LCB write (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove spurious error messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix for opaportconfig ledon by not checking for portNum (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Select only devices with active links (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Disable thermal polling before sensor initialization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Always download SBus firmware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Enable WFR PCIe extended tags from the driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Clear the QSFP reset that is asserted on FLR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Convert dd_dev_info() to hfi1_cdbg() in process startup (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1 : Prefer using the BIT macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: optionally prescan rx queue for {B, F}ECNs - UC, RC (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: don't cache "prescan head" (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Move macros to a common header (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove unnecessary include files (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] staging/rdma/hfi1: Clean up macro indentation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Remove file pointer macros (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: chip: Remove wrapper function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: sdma: Remove wrapper functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Remove hfi1_nomsix() wrapper function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Remove unnecessary variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ehca: stop using struct ib_phys_buf (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: use kmalloc_array instead of kmalloc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ipath: Remove unneeded vairable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_init_chip: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_sdma: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_verbs: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_driver: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: remove sched.h header (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: use TASK_COMM_LEN in ipath_portdata (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: Replace kmalloc with kmalloc_array (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_eeprom: Remove useless intialisation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: ipath_init_chip: Remove useless initialisation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/path: Use kcalloc instead of kzalloc to allocate array (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: Use memdup_user (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ehca: fix handling idr_alloc result (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: use offset_in_page macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: correctly handling failed allocation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] rdma/be2net: Remove open and close entry points (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Depend on async link events from CNA (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Dispatch only port event when port state changes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Fix vlan-id assignment in qp parameters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Replace kfree with kvfree in mlx4_ib_destroy_srq (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: cma_match_net_dev needs to take into account port_num (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: fix handling return value of mlx4_slave_convert_port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Postpone remove_keys under knowledge of coming preemption (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Use vmalloc for WR buffers when needed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] ib/mlx4: Use correct order of variables in log message (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove explicit mlx4 work-around (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] mlx4: Expose correct max_sge_rd limit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mad: Require CM send method for everything except ClassPortInfo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Add a missing rcu_read_unlock() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib core: Fix ib_sg_to_pages() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix srp_map_sg_fr() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix indirect data buffer rkey endianness (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Initialize dma_length in srp_map_idb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix possible send queue overflow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix a memory leak (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Put netlink request into the request list before sending (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: use sector_div instead of do_div (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: use RCU for uverbs id lookup (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Minor fixes to qib per SFF 8636 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix user mode post wr corruption (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Fix qib_mr structure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix race condition when sending a message on unbound socket (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Avoid returning success in case of an error flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix sleeping while holding spinlock at rem_slave_counters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Use the right DMA free function on TX path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Max mtu comparison fix (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Added self loopback prevention (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Fix inline header size calculation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Allow activation of scsi-mq for SRP in driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] scsi: use host wide tags by default (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Fix LSO vlan insertion (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Re-eanble client vlan TX acceleration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Return error in case mlx5e_set_features() fails (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Don't allow more than max supported channels (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Use the the real irqn in eq->irqn (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Wait for RX buffers initialization in a more proper manner (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Avoid NULL pointer access in case of configuration failure (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] nfs: Enable client side NFSv4.1 backchannel to use other transports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] sunrpc: Abstract backchannel operations (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: convert bind hash table to re-sizable hashtable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: changing the return type from int to void (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: assign affinity hint to interrupts (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Add backward direction service for RPC/RDMA transport (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Handle incoming backward direction RPC calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Add support for sending backward direction RPC replies (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Pre-allocate Work Requests for backchannel (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Pre-allocate backward rpc_rqst and send/receive buffers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Saving IRQs no longer needed for rb_lock (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Remove reply tasklet (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Use workqueue to process RPC/RDMA replies (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Replace send and receive arrays (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Refactor reply handler error handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Prevent loss of completion signals (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Re-arm after missed events (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Enable swap-on-NFS/RDMA (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: don't log warnings for flushed completions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core, cma: Make __attribute_const__ declarations sparse-friendly (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove old fast registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: Remove fast registration from the code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/nes: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cxgb3: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Remove old FRWR API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Remove old FRWR API support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove old FRWR API support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Dont allocate a page vector when using fast_reg (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove srp_finish_mapping (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Convert to new registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Split srp_map_sg (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds/iw: Convert to new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Port to new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Port to new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Port to new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Port to new fast registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/nes: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cxgb3: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Support the new memory registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove dead fmr code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Introduce new fast registration API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ucma: Take the network namespace from the process (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] ib/cma: Add support for network namespaces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Separate port allocation to network namespaces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/addr: Pass network namespace as a parameter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Enable SG clustering (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: set block queue_virt_boundary (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Update driver version string to 0.9-294 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: add additional rc traces (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add unit # to verbs txreq cache name (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Load SBus firmware once per ASIC (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Thread the receive interrupt (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add irqsaves in the packet processing path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Increase SDMA descriptor queue size (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Allow tuning of SDMA interrupt rate (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Wrong cast breaks desired pointer arithmetic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Prevent silent data corruption with user SDMA (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix port bounce issues with 0.22 DC firmware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add a schedule in send thread (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Reset firmware instead of reloading Sbus (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: close shared context security hole (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Add coalescing support for SDMA TX descriptors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] staging/rdma/hfi1: Remove QSFP_ENABLED from HFI capability mask (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Prevent host software lock up (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Extend the offline timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix code to reset ASIC CSRs on FLR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: Fix regression in send performance (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] hfi1: sdma: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] hfi1: driver: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: chip: Use setup_timer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove an unused variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove an unused variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update ethtool get_drvinfo to get regdump len (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use vmalloc, if kmalloc fails (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Return error if setup_rss is called before probe (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4/cxgb4vf: Update driver desc. to include Chelsio T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add info print to display number of MSI-X vectors allocated (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Restore L1 cfg, if FW rejects new L1 cfg settings (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Don't disallow turning off auto-negotiation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Align ethtool get stat settings (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove smac and vlan id from path record (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove smac and vlan id from qp_attr and ah_attr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: Remove the usage of smac and vid of qp_attr and cm_av (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Use GID table in AH creation and dmac resolution (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cache: Add ib_find_gid_by_filter cache API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: cma_validate_port should verify the port and netdevice (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: cm_init_av_by_path should find a GID by its netdevice (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add netdev to path record (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Expose and rename ib_find_cached_gid_by_port cache API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add netdev and gid attributes paramteres to cache (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add support for blocking multicast loopback QP creation user flag (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add counter based implementation for QP multicast loopback block (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Add IB counters table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Implement mcast loopback prevention for ETH qps (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Add support for filtering multicast loopback (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Allow setting create flags in QP init attribute (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Extend ib_uverbs_create_qp (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] iw_cxgb4: Adds support for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: T6 adapter lld support for iw_cxgb4 driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Bump up ocrdma version number to 11.0.0.0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Prevent CQ-Doorbell floods (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Check resource ids received in Async CQE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Avoid a possible crash in ocrdma_rem_port_stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Cleanup unused device list and rcu variables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: reverse the ord/ird in the ESTABLISHED upcall (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: fix misuse of ep->ord for minimum ird calculation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: pass the ord/ird in connect reply events (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: detect fatal errors while creating listening filters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: avoid 32-bit warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cxgb4: re-fix 32-bit build warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib_pack.h: Fix commentary IBA reference for CNP in IB opcode enum (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: fix a comment typo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] usnic: correctly handle kzalloc return value (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] usnic: correctly check failed allocation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix rds-ping deadlock over TCP transport (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: use TASK_COMM_LEN in hfi1_ctxtdata (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Prefer using BIT Macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: delete unneeded tabs in conditional statement block (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: mad: Remove explicit cast (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: diag: Remove useless initialisation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: sysfs: Remove useless initialisation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Remove unnecessary cast on void pointer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] mlx4: corretly check failed allocation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Replace VF zero mac with random mac in mlx4_core (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Wait for FW readiness on startup (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Add pci error handlers to mlx5_core driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Fix internal error detection conditions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] mlx5: stop including <asm-generic/kmap_types.h> (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Reset tcp callbacks if re-using an outgoing socket in rds_tcp_accept_one() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Invoke ->laddr_check() in rds_bind() for explicitly bound transports (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: remove unnecessary out of memory messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: hfi1: Use kcalloc instead of kzalloc to allocate array (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix resource tracker error flow in add_res_range (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix mailbox leak in error flow when performing update qp (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Add steering rules after RSS creation (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Use private health thread for each device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Use accessor functions to read from device memory (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Prepare cmd interface to system errors handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Improve mlx5 messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: remove xrc_remote_srq_num from struct ib_send_wr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: Remove fast registration from the code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] ib: split struct ib_send_wr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: split mr pool to improve 8K messages performance (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: use max_mr from HCA caps than max_fmr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: mark rds_ib_fmr_wq static (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: use already available pool handle from ibmr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: fix the rds_ib_fmr_wq kick call (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: handle rds_ibdev release case instead of crashing the kernel (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: split send completion handling and do batch ack (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: ib: ack more receive completions to improve performance (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: use rds_send_xmit() state instead of RDS_LL_SEND_FULL (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: defer the over_batch work to send worker (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: do hang reset only in case of tx timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: handle spurious error interrupt (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Report correct link speed for unsupported ones (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Adds a new Device Log Facility FW_DEVLOG_FACILITY_CF (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: For T4, don't read the Firmware Mailbox Control register (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Update T4/T5/T6 register ranges (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Set up MSG_MORE and MSG_SENDPAGE_NOTLAST as appropriate in rds_tcp_xmit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Do not bloat sndbuf/rcvbuf in rds_tcp_tune (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Use a single TCP socket for both send and receive (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: use offset_in_page macro (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Use per-bucket rw lock for bind hash-table (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix rds_sock reference bug while doing bind (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: make socket bind/release locking scheme simple and more efficient (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: use kfree_rcu in rds_ib_remove_ipaddr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add HW timesptamp support for RX (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Update health syndromes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Fix wrong name in struct (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: New init and exit flow for mlx5_core (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Fix notification of page supplement error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Fix async commands return code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Remove redundant "err" variable usage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Fix struct type in the DESTROY_TIR/TIS device commands (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Priv state flag not rolled-back upon netdev open error (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma: add a blank line after function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: class_name_user() should be static (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: use kvfree() in sdma.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] rdma/hfi1: do not use u8 to store a 32-bit integer (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] hfi1: drop null test before destroy functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: mask vs shift confusion (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: clean up some defines (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: info leak in get_ctxt_info() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: fix a locking bug (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: checking for NULL instead of IS_ERR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: fix sdma_descq_cnt parameter parsing (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: fix copy_to/from_user() error handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/hfi1: fix pstateinfo from returning improperly byteswapped value (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: Add CSRs for CONFIG_SDMA_VERBOSITY (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] ib/hfi1: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [staging] hfi1: replace indent spaces with tabs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4: Copy/set only sizeof struct mlx4_eqe bytes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Explicitly set no vlan tags in WQE ctrl segment when no vlan is present (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Recover correctly from pskb_pull()/pksb_trim() failure in rds_tcp_data_recv (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cm: Fix rb-tree duplicate free and use-after-free (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Use inner P_Key to determine netdev (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ucma: check workqueue allocation before usage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Potential NULL dereference in cma_id_from_event (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix use after free of ifa (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Fix memory corruption in ib_cache_gid_set_default_gid (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: For sendonly join free the multicast group on leave (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Fix NFS server crash triggered by 1MB NFS WRITE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5: Fix typo in mlx5_query_port_pvlc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Accept connection without a valid netdev on RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Don't require LOCAL_DMA_LKEY support for fastreg (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] usnic: add missing clauses to BSD license (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: handle rdma read with a non-zero initial page offset (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: increase the max mcast backlog queue (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Make sendonly multicast joins create the mcast group (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Expire sendonly multicast joins (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove pa_lkey usages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx5: Remove support for IB_DEVICE_LOCAL_DMA_LKEY (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Add module parameter for always register memory (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma: Replace global lkey with lkey local to PD (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: really allow to change RSS key (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: add device ID for few T5 adapters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Skip data copy if all the command data comes as immediate (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Change the recv buffers posting logic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Fix pending connections handling in target stack shutdown sequnce (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove np_ prefix from isert_np members (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove unused variables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Put the reference on commands waiting for unsol data (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: remove command with state ISTATE_REMOVE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: changes for new firmware 1.14.4.0 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: verify the underlying transport exists before creating a connection (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Fix for write-combining stats configuration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: fix usage of uninitialized variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: rds_conn_lookup() should factor in the structfor a match (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Suppress warning for send only join failures (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Clean up send-only multicast joins (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix possible protection fault (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Move SM class defines from ib_mad.h to ib_smi.h (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Remove unnecessary defines from ib_mad.h (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx5: Fix incorrect wc pkey_index assignment for GSI messages (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: avoid destroying a NULL mr in reg_user_mr error flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/uverbs: reject invalid or unknown opcodes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cxgb4: Fix if statement in pick_local_ip6adddrs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Fix rdma netlink message flags (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ucma: HW Device hot-removal support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4_ib: Disassociate support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/uverbs: Enable device removal when there are active user space applications (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/uverbs: Explicitly pass ib_dev to uverbs commands (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/uverbs: Fix race between ib_uverbs_open and remove_one (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/uverbs: Fix reference counting usage of event files (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] ib/core: Make ib_dealloc_pd return void (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Create an insecure all physical rkey only if needed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Register the indirect data buffer descriptor (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Introduce srp_device.use_fmr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove use_mr argument from srp_map_sg_entry() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove the memory registration backtracking code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Add memory descriptor array pointer range checking (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Use multiple registrations for large memory regions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Re-enable FMR for non-page aligned buffers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds/ib: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib_srpt: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Use pd->local_dma_lkey (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Use pd->local_dma_lkey (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mad: Remove ib_get_dma_mr calls (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Guarantee that a local_dma_lkey is available (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Chain all iser transaction send work requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Add debug prints to the various memory registration methods (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Support up to 8MB data transfer in a single command (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Pass registration pool a size parameter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Unify fast memory registration flows (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Make reg_desc_get a per device routine (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Rename iser_reg_page_vec to iser_fast_reg_fmr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Maintain connection fmr_pool under a single registration descriptor (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Introduce iser registration pool struct (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Move fastreg descriptor allocation to iser_create_fastreg_desc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Introduce iser_reg_ops (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove dead code in fmr_pool alloc/free (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Rename struct fast_reg_descriptor -> iser_fr_desc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Introduce struct iser_reg_resources (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove an unneeded print for unaligned memory (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove a redundant always-false condition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Fix possible bogus DMA unmapping (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Get rid of un-maintained counters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Fix missing return status check in iser_send_data_out (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Remove '.' from log message (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Change minor assignments and logging prints (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Change some module parameters to be RO (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Route SA pathrecord query through netlink (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/sa: Allocate SA query with kzalloc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add rdma netlink helper functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/netlink: Add defines for local service requests through netlink (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Stop the scsi_eh_<n> and scsi_tmf_<n> threads if login fails (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Bump driver version and release date (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Handle partial connection success correctly (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Constify a function argument (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Fix incorrect cq flushing in error state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Use correct SL on AH query under RoCE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Forbid using sysfs to change RoCE pkeys (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Demote mcg message from warning to debug (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Fix potential deadlock when sending mad to wire (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Remove needless bracketization (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: Incorporate the moving of GID Table mgmt to IB/Core (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Replace mechanism for RoCE GID management (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/mlx4: Implement ib_device callbacks (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4: Postpone the registration of net_device (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Port aggregation configuration (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Add RoCE table bonding support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: missing curly braces in ib_find_gid() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Add RoCE GID table management (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Make ib_alloc_device init the kobject (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Drop ib_alloc_fast_reg_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] qib: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] nes: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] cxgb3: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ocrdma: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx4: Support ib_alloc_mr verb (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx5: Drop mlx5_ib_alloc_fast_reg_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: limit FRMR page list lengths to device max (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma, svcrdma: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Convert to ib_alloc_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib: Modify ib_create_mr API (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Get rid of redundant verb ib_destroy_mr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Fix net_dev reference leak with failed requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cm: Remove compare_data checks (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Share ib_cm_ids between rdma_cm_ids (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Use found net_dev for passive connections (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Validate routing of incoming requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Add net_dev and private data checks to RDMA CM (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cm: Expose BTH P_Key in CM and SIDR request events (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Helper functions to access port space IDRs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/cma: Refactor RDMA IP CM private-data parsing code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cm: Share listening CM IDs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/cm: Expose service ID in request events (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Return IPoIB devices matching connection parameters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/core: Find the network device matching connection parameters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] ib/core: lock client data with lists_rwsem (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/core: Add rwsem to allow reading device list or client list (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] rdma/core: remove rdma_cap_read_multi_sge() helper (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Use max_sge_rd for destination read depths (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ipath,qib: Expose max_sge_rd correctly (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx4, mlx5, mthca: Expose max_sge_rd correctly (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: Add support for clip (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cma: fix IPv6 address resolution (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ucma: Fix theoretical user triggered use-after-free (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: set the default MPA version to 2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/iser: Limit sgs to the device fastreg depth (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx5: Remove dead code from alloc_cached_mr() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/qib: Change lkey table allocation to support more MRs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] mlx5: Expose correct page_size_cap in device attributes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] mlx5: Fix missing device local_dma_lkey (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Force uninitialized state if FW in adapter is unsupported (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix unintialized variable used in error path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] target/iscsi: Replace __kernel_sockaddr_storage with sockaddr_storage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] target/iscsi: Replace conn->login_ip with login_sockaddr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] target/iscsi: Keep local_ip as the actual sockaddr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: remove superfluous from rds_ib_alloc_fmr() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: flush the FMR pool less often (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: push FMR pool flush work to its own worker (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix fmr pool dirty_count (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Fix rds MR reference count in rds_rdma_unuse() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix the dangling reference to rds_ib_incoming_slab (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: reduce ioread in devcmd2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Fix improper gfp_t usage (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Avoid accessing NULL pointer at ndo_select_queue (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: check for valid cm_id before initiating connection (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: return EMSGSIZE for oversize requests before processing/queueing (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: make sure rds_send_drop_to properly takes the m_rs_lock (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Don't destroy the rdma id until after we're done using it (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Fix assertion level from fatal to warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Make sure we do a signaled send for large-send (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Mark message mapped before transmit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: add a sock_destruct callback debug aid (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: check for congestion updates during rds_send_xmit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: make sure not to loop forever inside rds_send_xmit (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: make sure we post recv buffers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: don't update ip address tables if the address hasn't changed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: destroy the ib state earlier during shutdown (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: always free recv frag as we free its ring entry (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: restore return value in rds_cmsg_rdma_args() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: Fix build failure with SRIOV disabled (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: memory corruption in debugfs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: Fix namespace pollution causing build errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: Fix sparse warning in vnic_devcmd_init() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] mlx5e: Fix sparse warnings in mlx5e_handle_csum() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Support RX CHECKSUM_COMPLETE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Support ethtool get/set_pauseparam (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Ethtool link speed setting fixes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: HW LRO changes/fixes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Support smaller RX/TX ring sizes (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Add ethtool RSS configuration options (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Make RSS indirection table size a constant (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Have a single RSS Toeplitz hash key (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: add devcmd2 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: add devcmd2 resources (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: use netdev_<foo> or dev_<foo> instead of pr_<foo> (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: move struct definition from .c to .h file (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add MPS tracing support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs support to dump tid info (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Differentiate between stids between server and filter region (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Differentiates between TIDs being used in TCAM and HASH (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add some more details to sge qinfo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: cleanup some indenting (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Change maximum server payload back to RPCSVC_MAXPAYLOAD (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Support multiple RDS-TCP listen endpoints, one per netns (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: do proper house keeping if connection fails in rds_tcp_conn_connect (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds-tcp: Make RDS-TCP work correctly when it is set up in a netns other than init_net (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: rds-tcp: Always create a new rds_sock for an incoming connection (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Support physical port counters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Take advantage of the light-weight netdev open/stop (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Disable async events before unregister_netdev() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Rename/move functions following the ndo_stop flow change (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Light-weight netdev open/stop (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5_core: Introduce access function to modify RSS/LRO params (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Introduce the "Drop RQ" (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Unify the RX flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update T6 register ranges (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4/cxgb4vf: read the correct bits of PL Who Am I register (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add support to dump edc bist status (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs support to dump meminfo (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove the mlx5e_update_priv_params() function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Introduce create/destroy RSS indir table access functions (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Do not use netdev_err() before the netdev is registered (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Avoid redundant de-reference (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove redundant assignment of sq->user_index (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Remove redundant field mlx5e_priv->num_tc (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Use hard-coded 4K page size for RQ/SQ/CQ (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5_core: Check the return value of mlx5_command_exec() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Hardware accelerated 802.1ad works only on the first port (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_en: Add support for hardware accelerated 802.1ad vlan (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4: Prepare VLAN macros for 802.1ad Hardware accelerated support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_en: Prepare ethtool private flags to support more flags (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx4_core: Preparations for 802.1ad VLAN support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Input IPSEC.SPI into the RX RSS hash function (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: cosmetics: use BIT() instead of "1 <<", and others (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: TX latency optimization to save DMA reads (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx5e: Support TX packet copy into WQE (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Allocate DMA coherent memory on reader NUMA node (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] net/mlx5e: Support ETH_RSS_HASH_XOR (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4vf: Read correct FL congestion threshold for T5 and T6 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4vf: Adds SRIOV driver changes for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Allow firmware flash, only if cxgb4 is the master driver (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs entry to enable backdoor access (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Fill DCB priority in vlan control headers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Fill in number of DCB traffic classes supported (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Allow firmware DCB info to be queried in host state (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4 : Only pass app selector of 0 or 3 to firmware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: allow adaptive coalesce setting for msi/legacy intr (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: add adaptive coalescing intr for intx and msi poll (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Remove svc_rdma_fastreg() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up svc_rdma_get_reply_array() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] NFS/RDMA Release resources in svcrdma when device is removed (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4vf: Fix check to use new User Doorbell mechanism (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Enable cim_la dump to support T6 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Read stats for only available channels (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Update register ranges for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Don't use entire L2T table, use only its slice (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add PCI device ids for few more T5 and T6 adapters (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Add extra check for total vfs for SRIOV (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] mlx4: TCP/UDP packets have L4 hash (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: missing curly braces in t4_setup_debugfs() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: fix an integer overflow test in rds_info_getsockopt() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: gracefully handle unknown CQE status errors (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Relieve cpu load average on the port sending flow (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] net/mlx4_core: Fix wrong index in propagating port change event to VFs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Fix REJECT CM event use-after-free OOPs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: update ocrdma module license string (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/ocrdma: update ocrdma license to dual-license (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipoib: Fix CONFIG_INFINIBAND_IPOIB_CM (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] rdma/cxgb3: fail get_dma_mr on 64 bit arches (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Fix memory leak in do_slave_init (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/mlx4: Optimize freeing of items on error unwind (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ipath: Convert use of __constant_<foo> to <foo> (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/srp: Avoid using uninitialized variable (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srpt: Convert use of __constant_cpu_to_beXX to cpu_to_beXX (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] net-rds: Delete an unnecessary check before the function call "module_put" (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: fix issues in enic_poll (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/ehca: use kvfree() in ipz_queue_{cd}tor() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: use kvfree() in t4_free_mem() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb3: use kvfree() in cxgb_free_mem() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] enic: use atomic_t instead of spin_lock in busy poll (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add PCI device ID for custom T522 & T520 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb3: avoid needless buffer copy for firmware (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: use for_each_sg() for scatterlist parsing (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] xprtrdma, svcrdma: Switch to generic logging helpers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iw_cxgb4: support for bar2 qid densities exceeding the page size (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Support for user mode bar2 mappings with T4 (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs entry to dump channel rate (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add debugfs entry to dump CIM PIF logic analyzer contents (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add a debugfs entry to dump CIM MA logic analyzer logs (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: release stale iser connections (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Fix static checker warning (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Use FW LDST cmd to access TP_PIO_{ADDR, DATA} register first (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: program pci completion timeout (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Rename t4_link_start() to t4_link_l1cfg (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add sge ec context flush service (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Free Virtual Interfaces in remove routine (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Add a separate "max data segs macro for svcrdma (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Replace GFP_KERNEL in a loop with GFP_NOFAIL (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Keep rpcrdma_msg fields in network byte-order (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Handle additional inline content (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Move read list XDR round-up logic (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Support RDMA_NOMSG requests (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: rc_position sanity checking (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Plant reader function in struct svcxprt_rdma (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up read chunk counting (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Clean up dprintk (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Fix byte-swapping in svc_rdma_sendto.c (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Remove WOL get/set ethtool support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add support to dump loopback port stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add support in ethtool to dump channel stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add ethtool support to get adapter stats (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] svcrdma: Remove svc_rdma_xdr_decode_deferred_req() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Adds support for T6 adapter (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [netdrv] cxgb4: Add is_t6 macro and T6 register ranges (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds Add getsockopt support for SO_RDS_TRANSPORT (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Add setsockopt support for SO_RDS_TRANSPORT (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [net] rds: Declare SO_RDS_TRANSPORT and RDS_TRANS_* constants in uapi/linux/rds.h (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib_srpt: Remove set-but-not-used variables (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] target: Remove first argument of target_{get, put}_sess_cmd() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] iser-target: Align to generic logging helpers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/iser: Align to generic logging helpers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Align to generic logging helpers (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] ib/srp: Add 64-bit LUN support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove !ch->target tests from the reconnect code (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove a superfluous check from srp_free_req_data() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Rearrange module description (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove superfluous casts (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [scsi] scsi_transport_srp: Reduce failover time (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix reconnection failure handling (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix connection state tracking (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Fix a connection setup race (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Remove an extraneous scsi_host_put() from an error path (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Add multichannel support (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [infiniband] ib/srp: Use block layer tags (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [scsi] always assign block layer tags if enabled (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [scsi] scsi_transport_srp: Fix a race condition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [scsi] scsi_transport_srp: Introduce srp_wait_for_queuecommand() (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-- [include] scsi_transport_srp: Fix a race condition (Don Dutile) [1169955 1259940 1262728 1275187 1275209 1275423 1275425 1289615 1291874 1292284 1292872 1296195 1296269 1296338 1296344 1298707 1302166 1310156]
-
-* Mon Jun 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-446.el7]
-- [include] crypto: skcipher - Fix driver name helper (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add helper to retrieve driver name (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add helper to zero stack request (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add default key size helper (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add crypto_skcipher_has_setkey (Torez Smith) [1332712]
-- [include] crypto: skcipher - Add top-level skcipher interface (Torez Smith) [1332712]
-- [include] crypto: Resolve shadow warnings (Torez Smith) [1332712]
-- [usb] usbfs: fix potential infoleak in devio (Torez Smith) [1332712]
-- [include] usb: devio: Add ioctl to disallow detaching kernel USB drivers (Torez Smith) [1332712]
-- [netdrv] revert "lan78xx: add ndo_get_stats64" (Torez Smith) [1332712]
-- [netdrv] lan78xx: add ndo_get_stats64 (Torez Smith) [1332712]
-- [netdrv] lan78xx: handle statistics counter rollover (Torez Smith) [1332712]
-- [usb] fsl: drop USB_FSL_MPH_DR_OF Kconfig symbol (Torez Smith) [1332712]
-- [netdrv] lan78xx: add ethtool set & get pause functions (Torez Smith) [1332712]
-- [netdrv] lan78xx: remove unnecessary code (Torez Smith) [1332712]
-- [netdrv] lan78xx: replace devid to chipid & chiprev (Torez Smith) [1332712]
-- [include] usb: Add support for usbfs zerocopy (Torez Smith) [1332712]
-- [include] usb: core: rename mutex usb_bus_list_lock to usb_bus_idr_lock (Torez Smith) [1332712]
-- [usb] no locking for reading descriptors in sysfs (Torez Smith) [1332712]
-- [include] usb: sysfs: make locking interruptible (Torez Smith) [1332712]
-- [include] usb: define USB_SPEED_SUPER_PLUS speed for SuperSpeedPlus USB3.1 devices (Torez Smith) [1332712]
-- [netdrv] lan78xx: change to use updated phy-ignore-interrupts (Torez Smith) [1332712]
-- [fs] helpers: no_seek_end_llseek{, _size}() (Torez Smith) [1332712]
-- [netdrv] asix: silence log message from oversize packet (Torez Smith) [1332712]
-- [include] usb: musb: core: Fix handling of the phy notifications (Torez Smith) [1332712]
-- [netdrv] cdc_ncm: add "ndp_to_end" sysfs attribute (Torez Smith) [1332712]
-- [usb] whci: fhci: remove comparison to bool (Torez Smith) [1332712]
-- [include] usb: core: lpm: remove usb3_lpm_enabled in usb_device (Torez Smith) [1332712]
-- [usb] core: lpm: add sysfs node for usb3 lpm permit (Torez Smith) [1332712]
-- [include] usb: core: lpm: fix usb3_hardware_lpm sysfs node (Torez Smith) [1332712]
-- [include] uvcvideo: Enable UVC 1.5 device detection (Torez Smith) [1332712]
-- [usb] revert "usb / pm: Allow USB devices to remain runtime-suspended when sleeping" (Torez Smith) [1332712 1344296]
-- [netdrv] net/smscx5xx: use the device tree for mac address (Torez Smith) [1332712]
-- [netdrv] pegasus: fixes reported packet length (Torez Smith) [1332712]
-- [netdrv] pegasus: fixes URB buffer allocation size; (Torez Smith) [1332712]
-- [netdrv] lan78xx: workaround of forced 100 Full/Half duplex mode error (Torez Smith) [1332712]
-- [netdrv] lan78xx: fix statistics counter error (Torez Smith) [1332712]
-- [usb] serial: cp210x: add Straizona Focusers device ids (Torez Smith) [1332712]
-- [usb] serial: cp210x: add ID for Link ECU (Torez Smith) [1332712]
-- [netdrv] cdc_mbim: apply "NDP to end" quirk to all Huawei devices (Torez Smith) [1332712]
-- [usb] hcd: out of bounds access in for_each_companion (Torez Smith) [1332712]
-- [include] usb: uas: Add a new NO_REPORT_LUNS quirk (Torez Smith) [1332712]
-- [usb] xhci: fix 10 second timeout on removal of PCI hotpluggable xhci controllers (Torez Smith) [1332712]
-- [usb] xhci: fix wild pointers in xhci_mem_cleanup (Torez Smith) [1332712]
-- [usb] host: xhci: add a new quirk XHCI_NO_64BIT_SUPPORT (Torez Smith) [1332712]
-- [usb] xhci: resume USB 3 roothub first (Torez Smith) [1332712]
-- [usb] xhci: applying XHCI_PME_STUCK_QUIRK to Intel BXT B0 host (Torez Smith) [1332712]
-- [usb] cdc-acm: fix crash if flushed with nothing buffered (Torez Smith) [1332712]
-- [usb] option: add "D-Link DWM-221 B1" device id (Torez Smith) [1332712]
-- [usb] serial: cp210x: Adding GE Healthcare Device ID (Torez Smith) [1332712]
-- [usb] serial: ftdi_sio: Add support for ICP DAS I-756xU devices (Torez Smith) [1332712]
-- [netdrv] usb: cdc_ncm: adding Telit LE910 V2 mobile broadband card (Torez Smith) [1332712]
-- [usb] digi_acceleport: do sanity checking for the number of ports (Torez Smith) [1332712]
-- [usb] cypress_m8: add endpoint sanity check (Torez Smith) [1332712]
-- [usb] mct_u232: add sanity checking in probe (Torez Smith) [1332712]
-- [usb] fix regression in SuperSpeed endpoint descriptor parsing (Torez Smith) [1332712]
-- [usb] xhci: Workaround to get Intel xHCI reset working more reliably (Torez Smith) [1332712]
-- [include] usb: ch9: Fix SSP Device Cap wFunctionalitySupport type (Torez Smith) [1332712]
-- [netdrv] qmi_wwan: add "D-Link DWM-221 B1" device id (Torez Smith) [1332712]
-- [netdrv] usb/plusb.c: Fix typo (Torez Smith) [1332712]
-- [usb] uas: Reduce can_queue to MAX_CMNDS (Torez Smith) [1332712]
-- [usb] cdc-acm: more sanity checking (Torez Smith) [1332712]
-- [usb] usb_driver_claim_interface: add sanity checking (Torez Smith) [1332712]
-- [usb] core: usb_alloc_dev(): fix setting of ->portnum (Torez Smith) [1332712]
-- [usb] iowarrior: fix oops with malicious USB descriptors (Torez Smith) [1332712]
-- [netdrv] qmi_wwan: Added support for Gemalto's Cinterion PHxx WWAN interface (Torez Smith) [1332712]
-- [include] usb: core: let USB device know device node (Torez Smith) [1332712]
-- [usb] usb-host: Remove fusbh200 driver (Torez Smith) [1332712]
-- [include] usb: otg-fsm: add B_AIDL_BDIS timer (Torez Smith) [1332712]
-- [include] usb: common: otg-fsm: add HNP polling support (Torez Smith) [1332712]
-- [include] usb: add OTG status selector definition for HNP polling (Torez Smith) [1332712]
-- [include] usb: ch9: Add size macro for SSP dev cap descriptor (Torez Smith) [1332712]
-- [netdrv] asix: Continue processing URB if no RX netdev buffer (Torez Smith) [1332712]
-- [netdrv] asix: On RX avoid creating bad Ethernet frames (Torez Smith) [1332712]
-- [netdrv] asix: Simplify asix_rx_fixup_internal() netdev alloc (Torez Smith) [1332712]
-- [usb] xhci-mtk: use __maybe_unused to hide pm functions (Torez Smith) [1332712]
-- [netdrv] asix: Tidy-up 32-bit header word synchronisation (Torez Smith) [1332712]
-- [usb] host: unhide suspend/resume declarations (Torez Smith) [1332712]
-- [netdrv] asix: Rename remaining and size for clarity (Torez Smith) [1332712]
-- [usb] host: Host drivers relying on DMA should depend on HAS_DMA (Torez Smith) [1332712]
-- [usb] idmouse.c: Put the interface on error (Torez Smith) [1332712]
-- [usb] hub: fix a typo in hub_port_init() leading to wrong logic (Torez Smith) [1332712]
-- [usb] serial: cp210x: add new access functions for large registers (Torez Smith) [1332712]
-- [usb] serial: cp210x: add 8-bit and 32-bit register access functions (Torez Smith) [1332712]
-- [usb] serial: cp210x: add 16-bit register access functions (Torez Smith) [1332712]
-- [usb] serial: fix semicolon.cocci warnings (Torez Smith) [1332712]
-- [usb] serial: fix boolinit.cocci warnings (Torez Smith) [1332712]
-- [usb] serial: fix returnvar.cocci warnings (Torez Smith) [1332712]
-- [usb] serial: fix compare_const_fl.cocci warnings (Torez Smith) [1332712]
-- [usb] core: Allow compilation on platforms where NO_DMA=y (Torez Smith) [1332712]
-- [usb] storage: use usb_store_dbg instead of US_DEBUGPX (Torez Smith) [1332712]
-- [usb] usbtmc: Fix disconnect/poll interaction (Torez Smith) [1332712]
-- [usb] host: xhci-rcar: Use ARCH_RENESAS (Torez Smith) [1332712]
-- [usb] misc/chaoskey: introduce an URB for asynchronous reads (Torez Smith) [1332712]
-- [usb] misc/chaoskey: Cleanup probe failure paths (Torez Smith) [1332712]
-- [usb] revert "usb: add HAS_IOMEM dependency to USB_APPLEDISPLAY" (Torez Smith) [1332712]
-- [usb] retry reset if a device times out (Torez Smith) [1332712]
-- [usb] host: pci_quirks: fix memory leak, by adding iounmap (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_ISP1362_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_OXU210HP_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_OHCI_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_APPLEDISPLAY (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_FOTG210_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_XHCI_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_EHCI_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_SL811_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_C67X00_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_R8A66597_HCD (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_XHCI_MVEBU (Torez Smith) [1332712]
-- [usb] add HAS_IOMEM dependency to USB_ISP116X_HCD (Torez Smith) [1332712]
-- [usb] cdc-acm: implement put_char() and flush_chars() (Torez Smith) [1332712]
-- [usb] xhci: Support extended burst isoc TRB structure used by xhci 1.1 for USB 3.1 (Torez Smith) [1332712]
-- [usb] xhci: cleanup isoc tranfers queuing code (Torez Smith) [1332712]
-- [usb] xhci: Add SuperSpeedPlus high bandwidth isoc support to xhci endpoints (Torez Smith) [1332712]
-- [usb] xhci: refactor and cleanup endpoint initialization (Torez Smith) [1332712]
-- [include] usb: Add USB 3.1 Precision time measurement capability descriptor support (Torez Smith) [1332712]
-- [include] usb: Parse the new USB 3.1 SuperSpeedPlus Isoc endpoint companion descriptor (Torez Smith) [1332712]
-- [include] usb: Add USB3.1 SuperSpeedPlus Isoc Endpoint Companion descriptor (Torez Smith) [1332712]
-- [usb] usb: removed assignment of 0 to static variables (Torez Smith) [1332712]
-- [usb] pci: Remove includes of asm/pci-bridge.h (Torez Smith) [1332712]
-- [usb] ehci: fix compiler warning introduced by commit 2a40f324541e (Torez Smith) [1332712]
-- [include] Add ioctls to enable and disable local controls on an instrument (Torez Smith) [1332712]
-- [include] Add ioctl to retrieve USBTMC-USB488 capabilities (Torez Smith) [1332712]
-- [usb] Add support for receiving USBTMC USB488 SRQ notifications via poll/select (Torez Smith) [1332712]
-- [usb] Add support for USBTMC USB488 SRQ notification with fasync (Torez Smith) [1332712]
-- [include] Implement an ioctl to support the USMTMC-USB488 READ_STATUS_BYTE operation (Torez Smith) [1332712]
-- [usb] cxacru: fix an bounds check warning (Torez Smith) [1332712]
-- [include] usb/storage: misc fixes to comments in include/linux/usb/storage.h (Torez Smith) [1332712]
-- [usb] storage: ene_ub6250: Remove unnecessary cast in kfree (Torez Smith) [1332712]
-- [usb] host: ehci-sched: remove unnecessary braces (Torez Smith) [1332712]
-- [usb] host: ehci-sched: use sizeof operator with parens (Torez Smith) [1332712]
-- [usb] host: ehci-sched: add line after declarations (Torez Smith) [1332712]
-- [usb] host: ehci-sched: use C89-style comments (Torez Smith) [1332712]
-- [usb] host: ehci-sched: remove useless else branch (Torez Smith) [1332712]
-- [usb] host: ehci-sched: remove prohibited spaces (Torez Smith) [1332712]
-- [usb] host: ehci-sched: add spaces around operators (Torez Smith) [1332712]
-- [usb] host: ehci-sched: remove useless initializations (Torez Smith) [1332712]
-- [usb] host: ehci-sched: move constants to right (Torez Smith) [1332712]
-- [usb] host: ehci-sched: refactor scan_isoc function (Torez Smith) [1332712]
-- [usb] ehci: remove old stub_debug_files definition (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: add function output_buf_tds_dir() (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: prefer kmalloc_array over kmalloc times size (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: enclose conditional blocks with braces (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: replace sizeof operand (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: remove blank line before close brace (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: add blank line after declarations (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: convert macro to inline function (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: use a blank line after struct declarations (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: fix up function definitions (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: use scnprintf() in qh_lines() (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: put spaces around operators (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: fix up closing parenthesis (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: move trailing statements to next line (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: use C89-style comments (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: remove space before open square bracket (Torez Smith) [1332712]
-- [usb] host: ehci-dbg: remove space before open parenthesis (Torez Smith) [1332712]
-- [usb] host: ehci.h: move constant to right (Torez Smith) [1332712]
-- [usb] host: ehci.h: move pointer operator to name side (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove macros trailing semicolon (Torez Smith) [1332712]
-- [usb] host: ehci.h: use space after comma (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove direct use of __attribute__ keyword (Torez Smith) [1332712]
-- [usb] host: ehci.h: fix single statement macros (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove space before open square bracket (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove space before function open parenthesis (Torez Smith) [1332712]
-- [usb] host: ehci.h: remove space before comma (Torez Smith) [1332712]
-- [include] usb: core: switch bus numbering to using idr (Torez Smith) [1332712]
-- [usb] xhci: set slot context speed field to SuperSpeedPlus for USB 3.1 SSP devices (Torez Smith) [1332712]
-- [usb] xhci: USB 3.1 add default Speed Attributes to SuperSpeedPlus device capability (Torez Smith) [1332712]
-- [usb] xhci: set roothub speed to USB_SPEED_SUPER_PLUS for USB3.1 capable controllers (Torez Smith) [1332712]
-- [usb] xhci: Make sure xhci handles USB_SPEED_SUPER_PLUS devices (Torez Smith) [1332712]
-- [usb] ehci: improvements to unlink_empty_async_suspended() (Torez Smith) [1332712]
-- [usb] ehci: add a delay when unlinking an active QH (Torez Smith) [1332712]
-- [usb] ehci: improve handling of the ehci->iaa_in_progress flag (Torez Smith) [1332712]
-- [usb] ehci: store reason for unlinking a QH (Torez Smith) [1332712]
-- [usb] wusb: Use skcipher (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix error path (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: Remove memory allocation logs (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: Remove null test before calls to kfree() (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix coding style: remove assignment from if tests (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix coding style: braces, parenthesis, comment (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix coding style: vertical whitespace changes (Torez Smith) [1332712]
-- [usb] usb-misc: sisusbvga: fix coding style: horizontal whitespace changes (Torez Smith) [1332712]
-- [usb] core, wusbcore: use bus_to_hcd (Torez Smith) [1332712]
-- [usb] core, devio: use to_usb_device (Torez Smith) [1332712]
-- [usb] uas: add full support for RESPONSE IU (Torez Smith) [1332712]
-- [usb] ehci-hcd: Disable memory-write-invalidate when the driver is removed (Torez Smith) [1332712]
-- [usb] ehci-hcd: Cleanup memory resources when ehci_halt fails (Torez Smith) [1332712]
-- [usb] core: use kbasename() instead of open-coded variant (Torez Smith) [1332712]
-- [include] usb: Support USB 3.1 extended port status request (Torez Smith) [1332712]
-- [usb] add device descriptor for usb 3.1 root hub (Torez Smith) [1332712]
-- [usb] show speed "10000" in sysfs for USB 3.1 SuperSpeedPlus devices (Torez Smith) [1332712]
-- [usb] set USB 3.1 roothub device speed to USB_SPEED_SUPER_PLUS (Torez Smith) [1332712]
-- [usb] Use memdup_user to reuse the code (Torez Smith) [1332712]
-- [usb] core: devio.c: Removed unnecessary space (Torez Smith) [1332712]
-
-* Fri Jun 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-445.el7]
-- [pinctrl] baytrail: Be sure to clamp return value (Prarit Bhargava) [1339663]
-- [include] pinctrl: baytrail: Fix compilation warnings when !CONFIG_PM (Prarit Bhargava) [1339663]
-- [spi] spi-pxa2xx: Check status register to determine if SSSR_TINT is disabled (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Use raw_spinlock for locking (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Serialize all register access (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Drop FSF mailing address (Prarit Bhargava) [1339663]
-- [x86] platform/intel/baytrail: Add comments about why we disabled HPET on Baytrail (Prarit Bhargava) [1339663]
-- [include] spi: pxa2xx: Prepare for new Intel LPSS SPI type (Prarit Bhargava) [1339663]
-- [usb] dwc3: pci: add quirk for Baytrails (Prarit Bhargava) [1339663]
-- [cpufreq] intel_pstate: set BYT MSR with wrmsrl_on_cpu() (Prarit Bhargava) [1339663]
-- [cpufreq] intel_pstate: Change the setpoint for Atom params (Prarit Bhargava) [1339663]
-- [x86] reboot: Add ASRock Q1900DC-ITX mainboard reboot quirk (Prarit Bhargava) [1339663]
-- [idle] intel_idle: Update support for Silvermont Core in Baytrail SOC (Prarit Bhargava) [1339663]
-- [idle] intel_idle: support Bay Trail (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: baytrail_i2c_acquire() might sleep (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: cross-check lock functions (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: fix sparse warnings (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: fix typo in error path (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: describe magic numbers (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Save pin context over system sleep (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Rework interrupt handling (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Clear interrupt triggering from pins that are in GPIO mode (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Relax GPIO request rules (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: another fixup for proper Kconfig dependencies (Prarit Bhargava) [1339663]
-- [acpi] acpi / lpss: Always disable I2C host controllers (Prarit Bhargava) [1339663]
-- [i2c] designware-baytrail: use proper Kconfig dependencies (Prarit Bhargava) [1339663]
-- [i2c] designware: Add i2c bus locking support (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: no need to provide clk_khz (Prarit Bhargava) [1339663]
-- [include] acpi: Eliminate CONFIG_.*{, _MODULE} #ifdef in favor of IS_ENABLED() (Prarit Bhargava) [1339663]
-- [acpi] int340x_thermal: add missing CONFIG_ prefix (Prarit Bhargava) [1339663]
-- [acpi] int340x_thermal: enumerate INT3401 for Intel SoC DTS thermal driver (Prarit Bhargava) [1339663]
-- [thermal] acpi/int340x_thermal: enumerate INT340X devices even if they're not in _ART/_TRT (Prarit Bhargava) [1339663]
-- [thermal] int340x: Handle properly the case when _trt or _art acpi entry is missing (Prarit Bhargava) [1339663]
-- [thermal] int340x: Clear the error value of the last acpi_bus_get_device() call (Prarit Bhargava) [1339663]
-- [thermal] int340x: avoid unnecessary pointer casting (Prarit Bhargava) [1339663]
-- [thermal] introduce int3400 thermal driver (Prarit Bhargava) [1339663]
-- [thermal] acpi: introduce ACPI int340x thermal scan handler (Prarit Bhargava) [1339663]
-- [include] acpi: make acpi_create_platform_device() an external API (Prarit Bhargava) [1339663]
-- [pinctrl] Move Intel Baytrail pinctrl driver under intel directory (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: add missing module removal support (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: show output gpio state correctly on Intel Baytrail (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Clear DIRECT_IRQ bit (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_pci: remove rts_n override from Baytrail quirk (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: resolve unbalanced IRQ wake disable warning (Prarit Bhargava) [1339663]
-- [acpi] acpi / lpss: support for 133MHz I2C source clock on Baytrail (Prarit Bhargava) [1339663]
-- [idle] intel_idle: Disable Baytrail Core and Module C6 auto-demotion (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Warn if direct IRQ GPIO set to output (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_dw: clock rate handling for all ACPI platforms (Prarit Bhargava) [1339663]
-- [spi] pxa2xx: fix incorrect SW mode chipselect setting for BayTrail LPSS SPI (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: Add Haswell PCI IDs (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Add pull type, strength and open drain to debugfs output (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Register GPIO chip after chip->to_irq is set (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: Add back Baytrail-T ACPI ID (Prarit Bhargava) [1339663]
-- [i2c] designware: Mask all interrupts during i2c controller enable (Prarit Bhargava) [1339663]
-- [x86] iosf: Add PCI ID macros for better readability (Prarit Bhargava) [1339663]
-- [x86] intel: Add quirk to disable HPET for the Baytrail platform (Prarit Bhargava) [1339663]
-- [x86] hpet: Make boot_hpet_disable extern (Prarit Bhargava) [1339663]
-- [tty] 8250_dw: Support all baudrates on baytrail (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_dw: Report CTS asserted for auto flow (Prarit Bhargava) [1339663]
-- [spi] pxa2xx-pci: Add PCI mode support for BayTrail LPSS SPI (Prarit Bhargava) [1339663]
-- [net] rfkill: gpio: add ACPI IDs for a Broadcom bluetooth chip (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: set ideal HCNT, LCNT and SDA hold time value (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: add function mux checking in gpio pin request (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: add 10-bit addressing mode functionality for BYT I2C (Prarit Bhargava) [1339663]
-- [i2c] i801: enable Intel BayTrail SMBUS (Prarit Bhargava) [1339663]
-- [i2c] designware-pci: Add Baytrail PCI IDs (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_pci: change BayTrail default uartclk (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_pci: more BayTrail error-free bauds (Prarit Bhargava) [1339663]
-- [x86] tsc: Add missing Baytrail frequency to the table (Prarit Bhargava) [1339663]
-- [x86] tsc: Fallback to normal calibration if fast MSR calibration fails (Prarit Bhargava) [1339663]
-- [x86] tsc, apic: Unbreak static (MSR) calibration when CONFIG_X86_LOCAL_APIC=n (Prarit Bhargava) [1339663]
-- [x86] tsc: Add static (MSR) TSC calibration on Intel Atom SoCs (Prarit Bhargava) [1339663]
-- [acpi] acpi / lpss: Add Intel BayTrail ACPI mode PWM (Prarit Bhargava) [1339663]
-- [pinctrl] baytrail: lock IRQs when starting them (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: show pin label with the reset of the gpio debug data (Prarit Bhargava) [1339663]
-- [tty] serial: 8250_pci: add support for Intel BayTrail (Prarit Bhargava) [1339663]
-- [i2c] designware: make HCNT/LCNT values configurable (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: fix to avoid sparse warnings (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: introduce to_byt_gpio() macro (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: remove redundant ptr variable (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: change lvl to level (Prarit Bhargava) [1339663]
-- [pinctrl] pinctrl-baytrail: fix indentations (Prarit Bhargava) [1339663]
-- [include] pinctrl: add pin list based GPIO ranges (Prarit Bhargava) [1339663]
-- [pinctrl] add Intel BayTrail GPIO/pinctrl support (Prarit Bhargava) [1339663]
-- [spi] pxa2xx: add Intel BayTrail ACPI ID (Prarit Bhargava) [1339663]
-
-* Fri Jun 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-444.el7]
-- [netdrv] be2net: Fix provisioning of RSS for VFs in multi-partition configurations (Ivan Vecera) [1274911]
-- [netdrv] be2net: Enable Wake-On-LAN from shutdown for Skyhawk (Ivan Vecera) [1274911]
-- [netdrv] be2net: use max-TXQs limit too while provisioning VF queue pairs (Ivan Vecera) [1274911]
-- [netdrv] benet: be_resume needs to protect be_open with rtnl_lock (Ivan Vecera) [1274911]
-- [netdrv] be2net: don't enable multicast flag in be_enable_if_filters() routine (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix a UE caused by passing large frames to the ASIC (Ivan Vecera) [1274911]
-- [netdrv] be2net: Declare some u16 fields as u32 to improve performance (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix pcie error recovery in case of NIC+RoCE adapters (Ivan Vecera) [1274911]
-- [netdrv] be2net: Interpret and log new data that's added to the port misconfigure async event (Ivan Vecera) [1274911]
-- [netdrv] be2net: Request RSS capability of Rx interface depending on number of Rx rings (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix interval calculation in interrupt moderation (Ivan Vecera) [1274911]
-- [netdrv] be2net: Add retry in case of error recovery failure (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix Lancer error recovery (Ivan Vecera) [1274911]
-- [netdrv] be2net: Don't run ethtool self-tests for VFs (Ivan Vecera) [1274911]
-- [netdrv] be2net: SRIOV Queue distribution should factor in EQ-count of VFs (Ivan Vecera) [1274911]
-- [netdrv] be2net: Fix be_vlan_rem_vid() to check vlan id being removed (Ivan Vecera) [1274911]
-- [netdrv] be2net: check for INSUFFICIENT_PRIVILEGES error (Ivan Vecera) [1274911]
-- [netdrv] be2net: return error status from be_set_phys_id() (Ivan Vecera) [1274911]
-- [netdrv] be2net: bump up the driver version to 11.0.0.0 (Ivan Vecera) [1274911]
-- [netdrv] be2net: fix port-res desc query of GET_PROFILE_CONFIG FW cmd (Ivan Vecera) [1274911]
-- [netdrv] be2net: remove unused error variables (Ivan Vecera) [1274911]
-- [netdrv] be2net: remove a line of code that has no effect (Ivan Vecera) [1274911]
-- [netdrv] be2net: log digital signature errors while flashing FW image (Ivan Vecera) [1274911]
-- [netdrv] be2net: move FW flash cmd code to be_cmds.c (Ivan Vecera) [1274911]
-- [netdrv] be2net: cleanup FW flash image related macro defines (Ivan Vecera) [1274911]
-- [netdrv] be2net: avoid configuring VEPA mode on BE3 (Ivan Vecera) [1274911]
-- [netdrv] be2net: fix VF link state transition from disabled to auto (Ivan Vecera) [1274911]
-- [netdrv] be2net: Avoid accessing eq object in be_msix_register routine, when i < 0 (Ivan Vecera) [1274911]
-- [netdrv] be2net: remove local variable 'status' (Ivan Vecera) [1274911]
-- [netdrv] be2net: replace hardcoded values with existing define (Ivan Vecera) [1274911]
-- [netdrv] be2net: remove unused local rsstable array (Ivan Vecera) [1274911]
-- [netdrv] be2net: set pci_func_num while issuing GET_PROFILE_CONFIG cmd (Ivan Vecera) [1274911]
-- [netdrv] be2net: pad skb to meet minimum TX pkt size in BE3 (Ivan Vecera) [1274911]
-- [netdrv] be2net: release mcc-lock in a failure case in be_cmd_notify_wait() (Ivan Vecera) [1274911]
-- [netdrv] be2net: allow offloading with the same port for IPv4 and IPv6 (Ivan Vecera) [1274911]
-- [netdrv] be2net: protect eqo->affinity_mask from getting freed twice (Ivan Vecera) [1274911]
-- [netdrv] be2net: post buffers before destroying RXQs in Lancer (Ivan Vecera) [1274911]
-- [netdrv] be2net: enable IFACE filters only after creating RXQs (Ivan Vecera) [1274911]
-- [netdrv] be2net: Support vxlan offload stats in the driver (Ivan Vecera) [1274911]
-- [netdrv] bna: fix error handling (Ivan Vecera) [1288625]
-- [netdrv] bna: fix interrupts storm caused by erroneous packets (Ivan Vecera) [1288625]
-- [netdrv] bna: remove superfluous parentheses (Ivan Vecera) [1288625]
-- [netdrv] bna: make pointers to read-only inputs const (Ivan Vecera) [1288625]
-- [netdrv] bna: remove unnecessary cast of BIT value (Ivan Vecera) [1288625]
-- [netdrv] bna: Mass conversion of smp_mb__*() (Ivan Vecera) [1288625]
-- [netdrv] bna: fix Rx data corruption with VLAN stripping enabled and MTU > 4096 (Ivan Vecera) [1183969]
-- [netdrv] bna: fix list corruption (Ivan Vecera) [1342457]
-- [netdrv] bnx2: free temp_stats_blk on error path (Ivan Vecera) [1275798]
-- [netdrv] bnx2: fix a Null Pointer for stats_blk (Ivan Vecera) [1275798]
-- [scsi] bnx2fc: Update version number to 2.10.3 (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Check sc_cmd device and host pointer before returning the command to the mid-layer (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Print netdev device name when FCoE is successfully initialized (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Print when we send a fip keep alive (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Add driver tunables (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: bnx2fc_eh_abort(): fix wrong return code (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Show information about log levels in 'modinfo' (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Update version number to 2.9.6 (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Set ELS transfer length correctly for middle path commands (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Remove 'NetXtreme II' from source files (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Update copyright for 2015 (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: reduce stack usage in __bnx2fc_enable (Maurizio Lombardi) [1273084]
-- [scsi] bnx2fc: Read npiv table from nvram and create vports (Maurizio Lombardi) [1273084]
-- [scsi] be2iscsi: Add warning message for unsupported adapter (Maurizio Lombardi) [1346307]
-- [scsi] bnx2i: fix spelling mistake "complection" -> "completion" (Maurizio Lombardi) [1273086]
-- [scsi] bnx2i: silence uninitialized variable warnings (Maurizio Lombardi) [1273086]
-- [net] Introduce devlink infrastructure (Ivan Vecera) [1268334]
-- [netdrv] get rid of unnecessary initializations in .get_drvinfo() (Ivan Vecera) [1268334]
-- [net] bridge/nl: remove wrong use of NLM_F_MULTI (Ivan Vecera) [1268334]
-- [net] netdevice.h: fix ndo_bridge_* comments (Ivan Vecera) [1268334]
-- [net] rename netdev_phys_port_id to more generic name (Ivan Vecera) [1268334]
-- [net] bridge: add flags argument to ndo_bridge_setlink and ndo_bridge_dellink (Ivan Vecera) [1268334]
-- [mm] new helper: memdup_user_nul() (Ivan Vecera) [1268334]
-- [include] Add IS_REACHABLE macro (Ivan Vecera) [1268334]
-- [kernel] timekeeping: Provide ktime_get[*]_ns() helpers (Ivan Vecera) [1268334]
-- [net] tso: add support for IPv6 (Ivan Vecera) [1268334]
-- [net] tso: fix unaligned access to crafted TCP header in helper API (Ivan Vecera) [1268334]
-- [net] tso: Export symbols for modular build (Ivan Vecera) [1268334]
-- [net] Add a software TSO helper API (Ivan Vecera) [1268334]
-- [include] average: provide macro to create static EWMA (Ivan Vecera) [1268334]
-- [net] Add support for configuring VF GUIDs (Ivan Vecera) [1268334]
-- [net] adjust napi_consume_skb to handle non-NAPI callers (Ivan Vecera) [1268334]
-- [net] Add skb_inner_transport_offset function (Ivan Vecera) [1268334]
-- [net] add SKB_GSO_TUNNEL_REMCSUM to SKB_GSO2_MASK (Ivan Vecera) [1268334]
-- [net] leave space to allow adding new GSO bits (Ivan Vecera) [1268334]
-- [net] bonding: Notify state change on slaves (Ivan Vecera) [1268334]
-- [net] Add event for a change in slave state (Ivan Vecera) [1268334]
-- [net] ipv6: Export addrconf_ifid_eui48 (Ivan Vecera) [1268334]
-- [net] openvswitch: Fix cached ct with helper (Lance Richardson) [1297465]
-- [net] openvswitch: __nf_ct_l{3, 4}proto_find() always return a valid pointer (Lance Richardson) [1297465]
-- [net] openvswitch: call only into reachable nf-nat code (Lance Richardson) [1297465]
-- [net] openvswitch: Fix checking for new expected connections (Lance Richardson) [1297465]
-- [net] openvswitch: Use proper buffer size in nla_memcpy (Lance Richardson) [1297465]
-- [net] openvswitch: Interface with NAT (Lance Richardson) [1297465]
-- [net] openvswitch: Delay conntrack helper call for new connections (Lance Richardson) [1297465]
-- [net] openvswitch: Handle NF_REPEAT in conntrack action (Lance Richardson) [1297465]
-- [net] openvswitch: Find existing conntrack entry after upcall (Lance Richardson) [1297465]
-- [net] openvswitch: Update the CT state key only after nf_conntrack_in() (Lance Richardson) [1297465]
-- [net] openvswitch: Add commentary to conntrack.c (Lance Richardson) [1297465]
-- [net] netfilter: Allow calling into nat helper without skb_dst (Lance Richardson) [1297465]
-- [net] netfilter: Remove IP_CT_NEW_REPLY definition (Lance Richardson) [1297465]
-- [net] Fix typo in netdev_intersect_features (Lance Richardson) [1297465]
-- [net] Eliminate NETIF_F_GEN_CSUM and NETIF_F_V[46]_CSUM (Lance Richardson) [1297465]
-- [net] openvswitch: Fix conntrack compilation without mark (Lance Richardson) [1297465]
-- [net] sctp: Potentially-Failed state should not be reached from unconfirmed state (Xin Long) [1333696]
-- [net] sctp: fix the transports round robin issue when init is retransmitted (Xin Long) [1333696]
-- [net] sctp: fix suboptimal edge-case on non-active active/retrans path selection (Xin Long) [1333696]
-- [net] sctp: spare unnecessary comparison in sctp_trans_elect_best (Xin Long) [1333696]
-- [net] sctp: improve sctp_select_active_and_retran_path selection (Xin Long) [1333696]
-- [net] sctp: migrate most recently used transport to ktime (Xin Long) [1333696]
-- [net] sctp: refactor active path selection (Xin Long) [1333696]
-- [net] sctp: remove NULL check in sctp_assoc_update_retran_path (Xin Long) [1333696]
-- [net] sctp: rework multihoming retransmission path selection to rfc4960 (Xin Long) [1333696]
-- [net] sctp: retran_path not set properly after transports recovering (Xin Long) [1333696]
-- [net] iucv: properly clone LSM attributes to newly created child sockets (Paul Moore) [1164429]
-- [net] tun: don't require serialization lock on tx (Paolo Abeni) [1328874]
-- [net] tun: use per cpu variables for stats accounting (Paolo Abeni) [1328874]
-
-* Thu Jun 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-443.el7]
-- [kernel] sched/deadline: Disable SCHED_DEADLINE programmatically (Xunlei Pang) [1298387]
-- [kernel] sched: Fix sched_setparam() policy == -1 logic (Xunlei Pang) [1298387]
-- [kernel] sched: Move SCHED_RESET_ON_FORK into attr::sched_flags (Xunlei Pang) [1298387]
-- [kernel] sched: Preserve the nice level over sched_setscheduler() and sched_setparam() calls (Xunlei Pang) [1298387]
-- [kernel] sched/core: Clear the root_domain cpumasks in init_rootdomain() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove dl_new from struct sched_dl_entity (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove superfluous call to (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Always calculate end of period on sched_yield() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Optimize sequential update_curr_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix trivial typo in printk() message (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix the earliest_dl.next logic (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix migration of SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline, rtmutex: Fix open coded check in rt_mutex_waiter_less() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Unify dl_time_before() usage (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove a redundant condition from task_woken_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove needless parameter in dl_runtime_exceeded() (Xunlei Pang) [1298387]
-- [kernel] sched: Remove superfluous resetting of the p->dl_throttled flag (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Reduce rq lock contention by eliminating locking of non-feasible target (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Make init_sched_dl_class() __init (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Optimize pull_dl_task() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix sched class hopping CBS hole (Xunlei Pang) [1298387]
-- [kernel] sched/core: Fix regression in cpuset_cpu_inactive() for suspend (Xunlei Pang) [1298387]
-- [kernel] sched/core: Drop debugging leftover trace_printk call (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Support DL task migration during CPU hotplug (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Always enqueue on previous rq when dl_task_timer() fires (Xunlei Pang) [1298387]
-- [kernel] sched/core: Check for available DL bandwidth in cpuset_cpu_inactive() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix rt runtime corruption when dl fails its global constraints (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Avoid a superfluous check (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add rq->clock update skip for dl task yield (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Do update_rq_clock() in yield_task_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Prevent enqueue of a sleeping task in dl_task_timer() (Xunlei Pang) [1298387]
-- [kernel] sched: Make dl_task_time() use task_rq_lock() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove cpu_active_mask from cpudl_find() (Xunlei Pang) [1298387]
-- [kernel] sched: Fix hrtick_start() on UP (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix stale yield state (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix hrtick for a non-leftmost task (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix deadline parameter modification handling (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Modify cpudl::free_cpus to reflect rd->online (Xunlei Pang) [1298387]
-- [kernel] sched: Fix crash if cpuset_cpumask_can_shrink() is passed an empty cpumask (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Avoid double-accounting in case of missed deadlines (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix migration of SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Introduce start_hrtick_dl() for !CONFIG_SCHED_HRTICK (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix rq->dl.pushable_tasks bug in push_dl_task() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Don't check CONFIG_SMP in switched_from_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Reschedule from switched_from_dl() after a successful pull (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Push task away if the deadline is equal to curr during wakeup (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix artificial overrun introduced by yield_task_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/core: Use dl_bw_of() under rcu_read_lock_sched() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Implement cancel_dl_timer() to use in switched_from_dl() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Don't balance during wakeup if wakee is pinned (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Don't check SD_BALANCE_FORK (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Ensure that updates to exclusive cpusets don't break AC (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix bandwidth check/update when migrating tasks between exclusive cpusets (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Do not try to push tasks if pinned task switches to dl (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix preemption checks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix races between rt_mutex_setprio() and dl_task_timer() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Don't replenish from a !SCHED_DEADLINE entity (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Use dl_bw_of() under rcu_read_lock_sched() (Xunlei Pang) [1298387]
-- [kernel] sched: Use dl_bw_of() under RCU read lock (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix inter- exclusive cpusets migrations (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Clear dl_entity params when setscheduling to different class (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Simplify pick_dl_task() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix a precision problem in the microseconds range (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Delete extraneous extern for to_ratio() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix race in dl_task_timer() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Restrict user params max value to 2^63 ns (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix sched_yield() behavior (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Deny unprivileged users to set/change SCHED_DEADLINE policy (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Prevent rt_time growth to infinity (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Cleanup RT leftovers from {inc/dec}_dl_migration (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove useless dl_nr_total (Xunlei Pang) [1298387]
-- [kernel] sched/core: Make dl_b->lock IRQ safe (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix overflow to handle period==0 and deadline!=0 (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix bad accounting of nr_running (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Skip in switched_to_dl() if task is current (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: No need to check p if dl_se is valid (Xunlei Pang) [1298387]
-- [kernel] sched: Fix up attr::sched_priority warning (Xunlei Pang) [1298387]
-- [kernel] sched: Fix up scheduler syscall LTP fails (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove unused variables (Xunlei Pang) [1298387]
-- [powerpc] Wire up sched_setattr and sched_getattr syscalls (Xunlei Pang) [1298387]
-- [s390] wire up sys_sched_setattr/sys_sched_getattr (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Replace NR_CPUS arrays (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix memory leak (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Switch CPU's presence test order (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Test for CPU's presence explicitly (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix sparse static warnings (Xunlei Pang) [1298387]
-- [documentation] sched/deadline: sched/deadline: Add deadline documentation (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix hotplug admission control (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Remove the sysctl_sched_dl knobs (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Fix up the smp-affinity mask tests (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: speed up SCHED_DEADLINE pushes with a push-heap (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add bandwidth management for SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add SCHED_DEADLINE inheritance logic (Xunlei Pang) [1298387]
-- [kernel] rtmutex: Turn the plist into an rb-tree (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add latency tracing for SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add period support for SCHED_DEADLINE tasks (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add SCHED_DEADLINE avg_update accounting (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add SCHED_DEADLINE SMP-related data structures & logic (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Provide update_curr callback for dl_sched_class (Xunlei Pang) [1298387]
-- [kernel] sched: deadline: Use hrtimer_start() (Xunlei Pang) [1298387]
-- [kernel] sched/deadline: Add SCHED_DEADLINE structures & implementation (Xunlei Pang) [1298387]
-- [kernel] sched: Add sched_class->task_dead() method (Xunlei Pang) [1298387]
-- [kernel] sched: Add new scheduler syscalls to support an extended scheduling parameters ABI (Xunlei Pang) [1298387]
-
-* Thu Jun 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-442.el7]
-- [x86] thinkpad_acpi: Fix inconsistent mute LED after resume (Jaroslav Kysela) [1261896 1288173]
-- [x86] thinkpad_acpi: Try to use full software mute control (Jaroslav Kysela) [1261896 1288173]
-- [x86] thinkpad_acpi: Add support for HKEY version 0x200 (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: off by one in adaptive_keyboard_hotkey_notify_hotkey() (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Add support for more adaptive kbd buttons (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Add adaptive_kbd_mode sysfs attr (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Factor out get/set adaptive kbd mode (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Remember adaptive kbd presence (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Update mapping for F12 hotkey on *40 models to KEY_FILE (Prarit Bhargava) [1344403]
-- [x86] thinkpad_acpi: Add mappings for F9 - F12 hotkeys on X240 / T440 / T540 (Prarit Bhargava) [1344403]
-- [gpu] i915/fbc: Disable on HSW by default for now (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/nouveau/disp/sor/gm107: training pattern registers are like gm200 (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/nouveau/disp/sor/gf119: both links use the same training register (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/nouveau/fbcon: fix out-of-bounds memory accesses (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/radeon: hard reset r600 and newer GPU when hibernating (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/radeon: allow to force hard GPU reset (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/mgag200: Black screen fix for G200e rev 4 (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/amdkfd: destroy dbgmgr in notifier release (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/amdkfd: unbind only existing processes (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Remove wm_config from dev_priv/intel_atomic_state (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Reject display updates that exceed wm limitations (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Calculate watermarks during atomic 'check' (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Propagate watermark calculation failures up the call chain (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Use a bitmask to track dirty pipe watermarks (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Allow watermark calculation on in-flight atomic state (v3) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Calculate plane WM's from state (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Drop re-allocation of DDB at atomic commit (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Compute DDB allocation at atomic check time (v4) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Add distrust_bios_wm flag to dev_priv (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Allow skl_allocate_pipe_ddb() to operate on in-flight state (v3) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Track whether an atomic transaction changes the active CRTC's (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Store plane minimum blocks in CRTC wm state (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Allow calculation of data rate for in-flight state (v2) (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/gen9: Cache plane data rates in CRTC state (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Rename s/skl_compute_pipe_wm/skl_build_pipe_wm/ (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Reorganize WM structs/unions in CRTC state (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/atomic: Verify connector->funcs != NULL when clearing states (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Discard previous atomic state on resume if connectors change (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/fb_helper: Fix references to dev->mode_config.num_connector (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915/fbdev: Fix num_connector references in intel_fb_initial_config() (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [gpu] drm/i915: Change WARN_ON(!wm_changed) to I915_STATE_WARN_ON() (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-- [drm] upstream sync to v4.6 (Rob Clark) [1171268 1171270 1238635 1243336 1243398 1273363 1293302 1300583 1310232]
-- [kernel] time: Expose getrawmonotonic64 for in-kernel uses (Rob Clark) [1021582 1171268 1171270 1238635 1243336 1243398 1255760 1269009 1273363 1287757 1293302 1300583 1310232 1328491 1336544 1344498 1344510]
-
-* Thu Jun 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-441.el7]
-- [x86] revert "asmlinkage, xen, kvm: Make {xen, kvm}_lock_spinning global and visible" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Extend definitions of _ASM_* with a raw format" (Josh Poimboeuf) [1347232]
-- [fs] revert "replace remaining users of arch_fast_hash with jhash" (Josh Poimboeuf) [1347232]
-- [tools] revert "lib: kill arch_fast_hash library bits" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/decoder: Create artificial 3rd byte for 2-byte VEX" (Josh Poimboeuf) [1347232]
-- [x86] revert "jump-label: Use best default nops for inital jump label calls" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Clean up frame pointer macros" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Add C versions of frame pointer macros" (Josh Poimboeuf) [1347232]
-- [include] revert "objtool: Add STACK_FRAME_NON_STANDARD() macro" (Josh Poimboeuf) [1347232]
-- [scripts] revert "objtool: Mark non-standard object files and directories" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Add tool to perform compile-time stack metadata validation" (Josh Poimboeuf) [1347232]
-- [scripts] revert "objtool: Add CONFIG_STACK_VALIDATION option" (Josh Poimboeuf) [1347232]
-- [x86] revert "objtool: Enable stack metadata validation on 64-bit x86" (Josh Poimboeuf) [1347232]
-- [tools] revert "x86/asm/decoder: Use explicitly signed chars" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Support CROSS_COMPILE" (Josh Poimboeuf) [1347232]
-- [makefile] revert "tools: Support relative directory path for 'O='" (Josh Poimboeuf) [1347232]
-- [scripts] revert "objtool: Detect and warn if libelf is missing and don't break the build" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Prevent infinite recursion in noreturn detection" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Detect infinite recursion" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Compile with debugging symbols" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Fix false positive warnings related to sibling calls" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Add helper macros for traversing instructions" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Remove superflous INIT_LIST_HEAD" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Rename some variables and functions" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Fix false positive warnings for functions with multiple switch statements" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Add several performance improvements" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Only print one warning per function" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Add workaround for GCC switch jump table bug" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Detect falling through to the next function" (Josh Poimboeuf) [1347232]
-- [tools] revert "objtool: Allow building with older libelf" (Josh Poimboeuf) [1347232]
-- [x86] revert "kprobes: Mark kretprobe_trampoline() stack frame as non-standard" (Josh Poimboeuf) [1347232]
-- [x86] revert "xen: Mark xen_cpuid() stack frame as non-standard" (Josh Poimboeuf) [1347232]
-- [kernel] revert "sched: Mark __schedule() stack frame as non-standard" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/efi: Add efi stub code to objtool whitelist" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Add several arch/x86/lib files to objtool whitelist" (Josh Poimboeuf) [1347232]
-- [x86] revert "asmlinkage: Make kprobes code visible and fix assembler code" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/64: Open-code register save/restore in trace_hardirqs*() thunks" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/entry: Create stack frames in thunk functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "entry/64: Fix stack return address retrieval in thunk" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/bpf: Annotate callable functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/bpf: Create stack frames in bpf_jit.S" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Move .Lbswap_mask data to .rodata section" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Simplify stack usage in sha-mb functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Don't use RBP as a scratch register" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Create stack frames in crypto functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/crypto: Move jump_table to .rodata section" (Josh Poimboeuf) [1347232]
-- [x86] revert "crypto: sha1-mb - make sha1_x8_avx2() conform to C function ABI" (Josh Poimboeuf) [1347232]
-- [x86] revert "paravirt: Add stack frame dependency to PVOP inline asm calls" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/acpi: Create a stack frame in do_suspend_lowlevel()" (Josh Poimboeuf) [1347232]
-- [x86] revert "asmlinkage, paravirt: Make paravirt thunks global" (Josh Poimboeuf) [1347232]
-- [x86] revert "paravirt: Create a stack frame in PV_CALLEE_SAVE_REGS_THUNK" (Josh Poimboeuf) [1347232]
-- [x86] revert "uaccess: Add stack frame output operand in get_user() inline asm" (Josh Poimboeuf) [1347232]
-- [x86] revert "xen: Add stack frame dependency to hypercall inline asm calls" (Josh Poimboeuf) [1347232]
-- [x86] revert "kvm: Add stack frame dependency to fastop() inline asm" (Josh Poimboeuf) [1347232]
-- [x86] revert "kvm: Set ELF function type for fastop functions" (Josh Poimboeuf) [1347232]
-- [x86] revert "kvm: Make test_cc() always inline" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/xen: Create stack frames in xen-asm.S" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/xen: Set ELF function type for xen_adjust_exception_frame()" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm/power: Create stack frames in hibernate_asm_64.S" (Josh Poimboeuf) [1347232]
-- [x86] revert "asm: Create stack frames in rwsem functions" (Josh Poimboeuf) [1347232]
-- [watchdog] revert "lto, watchdog/hpwdt.c: make assembler label global" (Josh Poimboeuf) [1347232]
-- [watchdog] revert "hpwdt: Create stack frame in asminline_call()" (Josh Poimboeuf) [1347232]
-- [x86] revert "kvm: Add stack frame dependency to vmcs_readl()" (Josh Poimboeuf) [1347232]
-
-* Thu Jun 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-440.el7]
-- [net] sctp: sctp_diag should dump sctp socket type (Xin Long) [1223783]
-- [net] sctp: fix double EPs display in sctp_diag (Xin Long) [1223783]
-- [net] fix INET_DIAG_MAX value (Xin Long) [1223783]
-- [net] use jiffies_to_msecs to replace EXPIRES_IN_MS in inet/sctp_diag (Xin Long) [1223783]
-- [net] sctp: fix some rhashtable functions using in sctp proc/diag (Xin Long) [1223783]
-- [net] sctp: merge the seq_start/next/exits in remaddrs and assocs (Xin Long) [1223783]
-- [net] sctp: add the sctp_diag.c file (Xin Long) [1223783]
-- [net] sctp: export some functions for sctp_diag in inet_diag (Xin Long) [1223783]
-- [net] sctp: export some apis or variables for sctp_diag and reuse some for proc (Xin Long) [1223783]
-- [net] sctp: add sctp_info dump api for sctp_diag (Xin Long) [1223783]
-- [net] sock_diag: specify info_size per inet protocol (Xin Long) [1223783]
-- [net] sock_diag: add SK_MEMINFO_DROPS (Xin Long) [1223783]
-- [net] inet_diag: factorize code in new inet_diag_msg_common_fill() helper (Xin Long) [1223783]
-- [net] inet_diag: add const to inet_diag_req_v2 (Xin Long) [1223783]
-- [net] inet_diag: cleanups (Xin Long) [1223783]
-- [net] constify sock_diag_check_cookie() (Xin Long) [1223783]
-- [net] inet_diag: remove duplicate code from inet_twsk_diag_dump() (Xin Long) [1223783]
-- [net] vxlan: allow setting ipv6 traffic class (dst_cache part) (Jiri Benc) [1323141]
-- [net] ip_tunnel: fix preempt warning in ip tunnel creation/updating (Jiri Benc) [1323141]
-- [net] Make DST_CACHE a silent config option (Jiri Benc) [1323141]
-- [net] tunnels: fix usage of dst_cache on xmit (Jiri Benc) [1323141]
-- [net] ipv4: add dst cache support for gre lwtunnels (Jiri Benc) [1323141]
-- [net] geneve: add dst caching support (Jiri Benc) [1323141]
-- [net] add dst_cache to ovs vxlan lwtunnel (Jiri Benc) [1323141]
-- [net] use dst_cache for vxlan device (Jiri Benc) [1323141]
-- [net] ip_tunnel: replace dst_cache with generic implementation (Jiri Benc) [1323141]
-- [net] replace dst_cache ip6_tunnel implementation with the generic one (Jiri Benc) [1323141]
-- [net] add dst_cache support (Jiri Benc) [1323141]
-- [net] ipv6: Check expire on DST_NOCACHE route (Jiri Benc) [1323141]
-- [net] ipv6: Check rt->dst.from for the DST_NOCACHE route (Jiri Benc) [1323141]
-- [net] ip6_tunnel: fix dst leak (Jiri Benc) [1323141]
-- [net] ipv6: Replace spinlock with seqlock and rcu in ip6_tunnel (Jiri Benc) [1323141]
-- [net] ipv6: Avoid double dst_free (Jiri Benc) [1323141]
-- [net] ipv6: Fix dst_entry refcnt bugs in ip6_tunnel (Jiri Benc) [1323141]
-- [net] ipv6: Rename the dst_cache helper functions in ip6_tunnel (Jiri Benc) [1323141]
-- [net] ipv6: Refactor common ip6gre_tunnel_init codes (Jiri Benc) [1323141]
-- [net] ipv6: Avoid creating RTF_CACHE from a rt that is not managed by fib6 tree (Jiri Benc) [1323141]
-- [net] ipv6: Don't call with rt6_uncached_list_flush_dev (Jiri Benc) [1323141]
-- [mm] kmemleak_alloc_percpu() should follow the gfp from per_alloc() (Jiri Benc) [1323141]
-- [net] ipv6: ipv6_select_ident() returns a __be32 (Jiri Benc) [1323141]
-- [net] ipv6: udp: Do a route lookup and update during release_cb (Jiri Benc) [1323141]
-- [net] ipv6: datagram: Update dst cache of a connected datagram sk during pmtu update (Jiri Benc) [1323141]
-- [net] ipv6: datagram: Refactor dst lookup and update codes to a new function (Jiri Benc) [1323141]
-- [net] ipv6: datagram: Refactor flowi6 init codes to a new function (Jiri Benc) [1323141]
-- [net] ipv6: Fix a potential deadlock when creating pcpu rt (Jiri Benc) [1323141]
-- [net] ipv6: Add rt6_make_pcpu_route() (Jiri Benc) [1323141]
-- [net] ipv6: Remove un-used argument from ip6_dst_alloc() (Jiri Benc) [1323141]
-- [net] ipv6: Initialize rt6_info properly in ip6_blackhole_route() (Jiri Benc) [1323141]
-- [net] ipv6: Move common init code for rt6_info to a new function rt6_info_init() (Jiri Benc) [1323141]
-- [net] ipv6: Create percpu rt6_info (Jiri Benc) [1323141]
-- [net] ipv6: Keep track of DST_NOCACHE routes in case of iface down/unregister (Jiri Benc) [1323141]
-- [net] ipv6: Create RTF_CACHE clone when FLOWI_FLAG_KNOWN_NH is set (Jiri Benc) [1323141]
-- [net] ipv6: Set FLOWI_FLAG_KNOWN_NH at flowi6_flags (Jiri Benc) [1323141]
-- [net] ipv6: Add rt6_get_cookie() function (Jiri Benc) [1323141]
-- [net] ipv6: Only create RTF_CACHE routes after encountering pmtu exception (Jiri Benc) [1323141]
-- [net] ipv6: Remove external dependency on rt6i_dst and rt6i_src (Jiri Benc) [1323141]
-- [net] ipv6: Clean up ipv6_select_ident() and ip6_fragment() (Jiri Benc) [1323141]
-- [net] ipv6: Remove DST_METRICS_FORCE_OVERWRITE and _rt6i_peer (Jiri Benc) [1323141]
-- [net] sit: fix sit0 percpu double allocations (Jiri Benc) [1323141]
-- [net] sit: Use ipip6_tunnel_init as the ndo_init function. (Jiri Benc) [1323141]
-- [net] ipv6: do not erase dst address with flow label destination (Jiri Benc) [1323141]
-- [net] ipv6: remove old conditions on flow label sharing (Jiri Benc) [1323141]
-- [net] ipv4: do not use this_cpu_ptr() in preemptible context (Jiri Benc) [1323141]
-- [net] ipv6: use addrconf_get_prefix_route() to remove peer addr (Jiri Benc) [1323141]
-- [net] ipv6: fix a refcnt leak with peer addr (Jiri Benc) [1323141]
-- [net] ipv6: use ipv6_addr_any() helper (Jiri Benc) [1323141]
-- [net] ipv6: minor fib6 cleanups like type safety, bool conversion, inline removal (Jiri Benc) [1323141]
-- [net] ipv6: remove parameter rt from fib6_prune_clones() (Jiri Benc) [1323141]
-- [net] ipv6: namespace cleanups (Jiri Benc) [1323141]
-- [net] ipv6: Remove rebundant rt6i_nsiblings initialization (Jiri Benc) [1323141]
-- [net] sctp: Don't lookup dst if transport dst is still valid (Jiri Benc) [1323141]
-- [net] ipv6: stop sending PTB packets for MTU < 1280 (Jiri Benc) [1323141]
-- [net] ipv4: ip_tunnel: use net namespace from rtable not socket (Jiri Benc) [1323141]
-- [net] ipv6: hash net ptr into fragmentation bucket selection (Jiri Benc) [1323141]
-- [net] ipv4: hash net ptr into fragmentation bucket selection (Jiri Benc) [1323141]
-
-* Wed Jun 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-439.el7]
-- [x86] kvm: Add stack frame dependency to vmcs_readl() (Josh Poimboeuf) [1320250]
-- [watchdog] hpwdt: Create stack frame in asminline_call() (Josh Poimboeuf) [1320250]
-- [watchdog] lto, watchdog/hpwdt.c: make assembler label global (Josh Poimboeuf) [1320250]
-- [x86] asm: Create stack frames in rwsem functions (Josh Poimboeuf) [1320250]
-- [x86] asm/power: Create stack frames in hibernate_asm_64.S (Josh Poimboeuf) [1320250]
-- [x86] asm/xen: Set ELF function type for xen_adjust_exception_frame() (Josh Poimboeuf) [1320250]
-- [x86] asm/xen: Create stack frames in xen-asm.S (Josh Poimboeuf) [1320250]
-- [x86] kvm: Make test_cc() always inline (Josh Poimboeuf) [1320250]
-- [x86] kvm: Set ELF function type for fastop functions (Josh Poimboeuf) [1320250]
-- [x86] kvm: Add stack frame dependency to fastop() inline asm (Josh Poimboeuf) [1320250]
-- [x86] xen: Add stack frame dependency to hypercall inline asm calls (Josh Poimboeuf) [1320250]
-- [x86] uaccess: Add stack frame output operand in get_user() inline asm (Josh Poimboeuf) [1320250]
-- [x86] paravirt: Create a stack frame in PV_CALLEE_SAVE_REGS_THUNK (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage, paravirt: Make paravirt thunks global (Josh Poimboeuf) [1320250]
-- [x86] asm/acpi: Create a stack frame in do_suspend_lowlevel() (Josh Poimboeuf) [1320250]
-- [x86] paravirt: Add stack frame dependency to PVOP inline asm calls (Josh Poimboeuf) [1320250]
-- [x86] crypto: sha1-mb - make sha1_x8_avx2() conform to C function ABI (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Move jump_table to .rodata section (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Create stack frames in crypto functions (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Don't use RBP as a scratch register (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Simplify stack usage in sha-mb functions (Josh Poimboeuf) [1320250]
-- [x86] asm/crypto: Move .Lbswap_mask data to .rodata section (Josh Poimboeuf) [1320250]
-- [x86] asm/bpf: Create stack frames in bpf_jit.S (Josh Poimboeuf) [1320250]
-- [x86] asm/bpf: Annotate callable functions (Josh Poimboeuf) [1320250]
-- [x86] entry/64: Fix stack return address retrieval in thunk (Josh Poimboeuf) [1320250]
-- [x86] asm/entry: Create stack frames in thunk functions (Josh Poimboeuf) [1320250]
-- [x86] asm/64: Open-code register save/restore in trace_hardirqs*() thunks (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage: Make kprobes code visible and fix assembler code (Josh Poimboeuf) [1320250]
-- [x86] asm: Add several arch/x86/lib files to objtool whitelist (Josh Poimboeuf) [1320250]
-- [x86] asm/efi: Add efi stub code to objtool whitelist (Josh Poimboeuf) [1320250]
-- [kernel] sched: Mark __schedule() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [x86] xen: Mark xen_cpuid() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [x86] kprobes: Mark kretprobe_trampoline() stack frame as non-standard (Josh Poimboeuf) [1320250]
-- [tools] objtool: Allow building with older libelf (Josh Poimboeuf) [1320250]
-- [tools] objtool: Detect falling through to the next function (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add workaround for GCC switch jump table bug (Josh Poimboeuf) [1320250]
-- [tools] objtool: Only print one warning per function (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add several performance improvements (Josh Poimboeuf) [1320250]
-- [tools] objtool: Fix false positive warnings for functions with multiple switch statements (Josh Poimboeuf) [1320250]
-- [tools] objtool: Rename some variables and functions (Josh Poimboeuf) [1320250]
-- [tools] objtool: Remove superflous INIT_LIST_HEAD (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add helper macros for traversing instructions (Josh Poimboeuf) [1320250]
-- [tools] objtool: Fix false positive warnings related to sibling calls (Josh Poimboeuf) [1320250]
-- [tools] objtool: Compile with debugging symbols (Josh Poimboeuf) [1320250]
-- [tools] objtool: Detect infinite recursion (Josh Poimboeuf) [1320250]
-- [tools] objtool: Prevent infinite recursion in noreturn detection (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Detect and warn if libelf is missing and don't break the build (Josh Poimboeuf) [1320250]
-- [makefile] tools: Support relative directory path for 'O=' (Josh Poimboeuf) [1320250]
-- [tools] objtool: Support CROSS_COMPILE (Josh Poimboeuf) [1320250]
-- [tools] x86/asm/decoder: Use explicitly signed chars (Josh Poimboeuf) [1320250]
-- [x86] objtool: Enable stack metadata validation on 64-bit x86 (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Add CONFIG_STACK_VALIDATION option (Josh Poimboeuf) [1320250]
-- [tools] objtool: Add tool to perform compile-time stack metadata validation (Josh Poimboeuf) [1320250]
-- [scripts] objtool: Mark non-standard object files and directories (Josh Poimboeuf) [1320250]
-- [include] objtool: Add STACK_FRAME_NON_STANDARD() macro (Josh Poimboeuf) [1320250]
-- [x86] asm: Add C versions of frame pointer macros (Josh Poimboeuf) [1320250]
-- [x86] asm: Clean up frame pointer macros (Josh Poimboeuf) [1320250]
-- [x86] jump-label: Use best default nops for inital jump label calls (Josh Poimboeuf) [1320250]
-- [x86] asm/decoder: Create artificial 3rd byte for 2-byte VEX (Josh Poimboeuf) [1320250]
-- [tools] lib: kill arch_fast_hash library bits (Josh Poimboeuf) [1320250]
-- [fs] replace remaining users of arch_fast_hash with jhash (Josh Poimboeuf) [1320250]
-- [x86] asm: Extend definitions of _ASM_* with a raw format (Josh Poimboeuf) [1320250]
-- [x86] asmlinkage, xen, kvm: Make {xen, kvm}_lock_spinning global and visible (Josh Poimboeuf) [1320250]
-
-* Wed Jun 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-438.el7]
-- [x86] perf: Add constraint for IVB CYCLE_ACTIVITY:CYCLES_LDM_PENDING (Jiri Olsa) [1337884]
-- [x86] perf: Make L1D_PEND_MISS.FB_FULL not constrained on Haswell (Jiri Olsa) [1337884]
-- [x86] perf: Fix INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA macro (Jiri Olsa) [1337884]
-- [powerpc] eeh: Restore initial state in eeh_pe_reset_and_recover() (David Gibson) [1266833]
-- [powerpc] eeh: Don't report error in eeh_pe_reset_and_recover() (David Gibson) [1266833]
-- [powerpc] Fix definition of SIAR and SDAR registers (Thomas Huth) [1342027]
-- [powerpc] kvm: Fix emulated MMIO sign-extension (Thomas Huth) [1342027]
-- [powerpc] kvm: book3s_pr: Manage single-step mode (Thomas Huth) [1342027]
-- [powerpc] kvm: Account TCE-containing pages in locked_vm (Thomas Huth) [1342027]
-- [powerpc] kvm: Use RCU for arch.spapr_tce_tables (Thomas Huth) [1342027]
-- [powerpc] kvm: Rework H_PUT_TCE/H_GET_TCE handlers (Thomas Huth) [1342027]
-- [kernel] list: Add lockless list traversal primitives (Thomas Huth) [1342027]
-- [s390] ftrace: enforce DYNAMIC_FTRACE if FUNCTION_TRACER is selected (Jessica Yu) [1117927]
-- [s390] ftrace: add HAVE_DYNAMIC_FTRACE_WITH_REGS support (Jessica Yu) [1117927]
-- [s390] ftrace: optimize function graph caller code (Jessica Yu) [1117927]
-- [s390] pass march flag to assembly files as well (Jessica Yu) [1117927]
-- [scsi] libsas: remove task_collector mode (David Milburn) [1295910]
-- [scsi] libsas: use ata_dev_classify() (David Milburn) [1295910]
-- [scsi] isci: remove SCSI host before detaching from SAS transport (David Milburn) [1295910]
-- [scsi] isci: Spelling s/stucture/structure/ (David Milburn) [1295910]
-- [scsi] isci: Use pci_enable_msix_exact() instead of pci_enable_msix() (David Milburn) [1295910]
-- [scsi] isci: update version to 1.2 (David Milburn) [1295910]
-- [scsi] isci: Fix a infinite loop (David Milburn) [1295910]
-- [hv] vmbus: Use READ_ONCE() to read variables that are volatile (Vitaly Kuznetsov) [1339684]
-- [hv] vmbus: Introduce functions for estimating room in the ring buffer (Vitaly Kuznetsov) [1339684]
-- [hv] vmbus: Fix signaling logic in hv_need_to_signal_on_read() (Vitaly Kuznetsov) [1339684]
-- [md] dm thin: remove __bio_inc_remaining() and switch to using bio_inc_remaining() (Mike Snitzer) [1337254]
-
-* Wed Jun 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-437.el7]
-- [acpi] acpi / lpss: Fix up acpi_lpss_create_device() (Myron Stowe) [1344513]
-- [acpi] x86/pci/acpi: Make all resources except io 0xcf8-0xcff available on PCI bus (Myron Stowe) [1344513]
-- [acpi] x86/pci/acpi: Relax ACPI resource descriptor checks to work around BIOS bugs (Myron Stowe) [1344513]
-- [x86] pci/acpi: Ignore resources consumed by host bridge itself (Myron Stowe) [1344513]
-- [acpi] acpi / resources: Change pr_info() to pr_debug() for debug information (Myron Stowe) [1344513]
-- [x86] pci/acpi: Use common ACPI resource interfaces to simplify implementation (Myron Stowe) [1344513]
-- [x86] pci: Fix the range check for IO resources (Myron Stowe) [1344513]
-- [include] pci: Use common resource list management code instead of private implementation (Myron Stowe) [1344513]
-- [kernel] resources: Move struct resource_list_entry from ACPI into resource core (Myron Stowe) [1344513]
-- [include] acpi: Introduce helper function acpi_dev_filter_resource_type() (Myron Stowe) [1344513]
-- [include] acpi: Add field offset to struct resource_list_entry (Myron Stowe) [1344513]
-- [acpi] Translate resource into master side address for bridge window resources (Myron Stowe) [1344513]
-- [include] acpi: Return translation offset when parsing ACPI address space resources (Myron Stowe) [1344513]
-- [acpi] Enforce stricter checks for address space descriptors (Myron Stowe) [1344513]
-- [acpi] Set flag IORESOURCE_UNSET for unassigned resources (Myron Stowe) [1344513]
-- [acpi] Normalize return value of resource parser functions (Myron Stowe) [1344513]
-- [acpi] Fix a bug in parsing ACPI Memory24 resource (Myron Stowe) [1344513]
-- [acpi] Add prefetch decoding to the address space parser (Myron Stowe) [1344513]
-- [acpi] Move the window flag logic to the combined parser (Myron Stowe) [1344513]
-- [acpi] Unify the parsing of address_space and ext_address_space (Myron Stowe) [1344513]
-- [acpi] Let the parser return false for disabled resources (Myron Stowe) [1344513]
-- [acpi] Use the length check for io resources as well (Myron Stowe) [1344513]
-- [acpi] Implement proper length checks for mem resources (Myron Stowe) [1344513]
-- [acpi] Remove redundant check in function acpi_dev_resource_address_space() (Myron Stowe) [1344513]
-- [include] acpica: resources: Provide common part for struct acpi_resource_address structures (Myron Stowe) [1344513]
-- [acpi] Correct return value of acpi_dev_resource_address_space() (Myron Stowe) [1344513]
-- [acpi] acpi / resources: only reject zero length resources based at address zero (Myron Stowe) [1344513]
-- [pnp] pnp / acpi: proper handling of ACPI IO/Memory resource parsing failures (Myron Stowe) [1344513]
-- [acpi] acpi / resources: ignore invalid ACPI device resources (Myron Stowe) [1344513]
-- [dma] acpi-dma: remove ugly conversion (Myron Stowe) [1344513]
-- [acpi] acpi / scan: Drop unnecessary label from acpi_create_platform_device() (Myron Stowe) [1344513]
-- [acpi] acpi / scan: Allow platform device creation without any IO resources (Myron Stowe) [1344513]
-- [sound] pci: hda/ca0132 - use generic parser for some models (Jaroslav Kysela) [918176]
-- [sound] alsa: hda/realtek - Add support for ALC295/ALC3254 (Jaroslav Kysela) [1331010]
-- [sound] revert "alsa: hda_intel: add card number to irq description" (Jaroslav Kysela) [1288993]
-- [s390] mm: fix asce_bits handling with dynamic pagetable levels (Hendrik Brueckner) [1337933]
-- [nvme] add missing lock nesting notation (David Milburn) [1344385]
-- [x86] amd: Fix last level cache topology for AMD Fam17h systems (Kim Naru) [1303705]
-- [x86] pci: Mark Intel Grangeville ixgbe variant 0x15AC as supported (Prarit Bhargava) [1342078]
-- [x86] efi: Include a .bss section within the PE/COFF headers (Denys Vlasenko) [1335188]
-- [x86] kvm: Conditionally register IRQ bypass consumer (Alex Williamson) [1341790]
-- [virt] irqbypass: Disallow NULL token (Alex Williamson) [1341790]
-- [pci] Work around Intel Sunrise Point PCH incorrect ACS capability (Alex Williamson) [1320742]
-- [pci] Reverse standard ACS vs device-specific ACS enabling (Alex Williamson) [1320742]
-- [vfio] pci: Add test for BAR restore (Alex Williamson) [1286274]
-- [pci] Hide broken INTx support from user (Alex Williamson) [1286274]
-- [vfio] make vfio run on s390 (Alex Williamson) [1286274]
-- [pci] Mark Intel i40e NIC INTx masking as broken (Alex Williamson) [1286274]
-- [powerpc] kernel: Enable seccomp filter (Gustavo Duarte) [1186835]
-- [powerpc] Use orig_gpr3 in syscall_get_arguments() (Gustavo Duarte) [1186835]
-- [powerpc] Drop unused syscall_get_error() (Gustavo Duarte) [1186835]
-- [powerpc] Rework syscall_get_arguments() so there is only one loop (Gustavo Duarte) [1186835]
-- [powerpc] kernel: Change the do_syscall_trace_enter() API (Gustavo Duarte) [1186835]
-- [powerpc] kernel: Add SIG_SYS support for compat tasks (Gustavo Duarte) [1186835]
-- [powerpc] Change syscall_get_nr() to return int (Gustavo Duarte) [1186835]
-- [powerpc] Don't negate error in syscall_set_return_value() (Gustavo Duarte) [1186835]
-- [powerpc] kernel: Switch to using MAX_ERRNO (0/9) (Gustavo Duarte) [1186835]
-- [powerpc] pseries: Fix IBM_ARCH_VEC_NRCORES_OFFSET since POWER8NVL was added (Thomas Huth) [1340445]
-- [powerpc] pseries: Add POWER8NVL support to ibm, client-architecture-support call (Thomas Huth) [1340445]
-
-* Wed Jun 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-436.el7]
-- [md] block: make bio_inc_remaining() interface accessible again (Mike Snitzer) [1337254]
-- [md] dm raid: make sure no feature flags are set in metadata (Mike Snitzer) [1337254]
-- [md] dm ioctl: drop use of __GFP_REPEAT in copy_params()'s __vmalloc() call (Mike Snitzer) [1337254]
-- [md] dm stats: fix spelling mistake in Documentation (Mike Snitzer) [1337254]
-- [md] dm cache: update cache-policies.txt now that mq is an alias for smq (Mike Snitzer) [1337254]
-- [md] dm mpath: eliminate use of spinlock in IO fast-paths (Mike Snitzer) [1337254]
-- [md] dm mpath: move trigger_event member to the end of 'struct multipath' (Mike Snitzer) [1337254]
-- [md] dm mpath: use atomic_t for counting members of 'struct multipath' (Mike Snitzer) [1337254]
-- [md] dm mpath: switch to using bitops for state flags (Mike Snitzer) [1337254]
-- [md] dm thin: Remove return statement from void function (Mike Snitzer) [1337254]
-- [md] dm: remove unused mapped_device argument from free_tio() (Mike Snitzer) [1337254]
-- [mm] document improved handling of swappiness==0 (Jerome Marchand) [1341488]
-- [mm] vmstat: make vmstat_update deferrable (Jerome Marchand) [1294987]
-- [mm] vmstat: make quiet_vmstat lighter (Jerome Marchand) [1294987]
-- [mm] vmstat: Remove BUG_ON from vmstat_update (Jerome Marchand) [1294987]
-- [mm] vmstat: make vmstat_updater deferrable again and shut down on idle (Jerome Marchand) [1294987]
-- [mm] fix anon_vma->degree underflow in anon_vma endless growing prevention (Jerome Marchand) [1341497]
-- [mm] fix corner case in anon_vma endless growing prevention (Jerome Marchand) [1341497]
-- [mm] prevent endless growth of anon_vma hierarchy (Jerome Marchand) [1341497]
-- [mm] memory_hotplug: check for missing sections in test_pages_in_a_zone() (George Beshers) [1326837]
-- [mm] compaction: make isolate_freepages start at pageblock boundary ("Herton R. Krzesinski") [1344770]
-- [mm] compaction: detect when scanners meet in isolate_freepages ("Herton R. Krzesinski") [1344770]
-- [mm] compaction: reset cached scanner pfn's before reading them ("Herton R. Krzesinski") [1344770]
-- [mm] rmap: fix use-after-free in __put_anon_vma ("Herton R. Krzesinski") [1344770]
-- [kernel] sched: Use CPUPRI_NR_PRIORITIES instead of MAX_RT_PRIO in cpupri check ("Herton R. Krzesinski") [1344770]
-- [kernel] workqueue: fix a possible race condition between rescuer and pwq-release ("Herton R. Krzesinski") [1344770]
-- [kernel] workqueue: make rescuer_thread() empty wq->maydays list before exiting ("Herton R. Krzesinski") [1344770]
-- [kernel] workqueue: fix bugs in wq_update_unbound_numa() failure path ("Herton R. Krzesinski") [1344770]
-- [include] trace: module: Maintain a valid user count ("Herton R. Krzesinski") [1344770]
-- [kernel] hrtimer: Set expiry time before switch_hrtimer_base() ("Herton R. Krzesinski") [1344770]
-- [kernel] timer: Prevent overflow in apply_slack ("Herton R. Krzesinski") [1344770]
-- [mm] make fixup_user_fault() check the vma access rights too ("Herton R. Krzesinski") [1344770]
-- [kernel] futex: Prevent attaching to kernel threads ("Herton R. Krzesinski") [1344770]
-- [kernel] tracepoint: Do not waste memory on mods with no tracepoints ("Herton R. Krzesinski") [1344770]
-- [kernel] hung_task: check the value of "sysctl_hung_task_timeout_sec" ("Herton R. Krzesinski") [1344770]
-- [kernel] exit: call disassociate_ctty() before exit_task_namespaces() ("Herton R. Krzesinski") [1344770]
-- [kernel] wait: fix reparent_leader() vs EXIT_DEAD->EXIT_ZOMBIE race ("Herton R. Krzesinski") [1344770]
-- [kernel] tracing: Fix array size mismatch in format string ("Herton R. Krzesinski") [1344770]
-- [kernel] cpuset: fix a locking issue in cpuset_migrate_mm() (Mateusz Guzik) [1342400]
-- [kernel] ptrace: make wait_on_bit(JOBCTL_TRAPPING_BIT) in ptrace_attach() killable (Jiri Olsa) [1334503]
-- [kernel] sched/numa: Cap PTE scanning overhead to 3 of run time (Rik van Riel) [1276398]
-- [kernel] sched/numa: Fix math underflow in task_tick_numa() (Rik van Riel) [1276398]
-
-* Tue Jun 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-435.el7]
-- [net] openvswitch: internal_set_rx_headroom() can be static (Jakub Sitnicki) [1322337]
-- [net] veth: implement ndo_set_rx_headroom (Jakub Sitnicki) [1322337]
-- [net] tun: implement ndo_set_rx_headroom (Jakub Sitnicki) [1322337]
-- [net] openvswitch: propagate per dp max headroom to all vports (Jakub Sitnicki) [1322337]
-- [net] bridge: notify enslaved devices of headroom changes (Jakub Sitnicki) [1322337]
-- [net] netdev: introduce ndo_set_rx_headroom (Jakub Sitnicki) [1322337]
-- [net] bridge: inherit slave devices needed_headroom (Jakub Sitnicki) [1322337]
-- [net] ndo: consolidate reserved fields (Jiri Benc) [1339642]
-- [net] move ndo_set_vf_trust to net_device_ops_extended (Jiri Benc) [1339642]
-- [net] move ndo_dfwd_add/del_station to net_device_ops_extended (Jiri Benc) [1339642]
-- [net] move ndo_set_tx_maxrate to net_device_ops_extended (Jiri Benc) [1339642]
-- [net] fix wrong merge of ndo_set_vf_rate documentation (Jiri Benc) [1339642]
-- [net] introduce net_device_ops_extended (Jiri Benc) [1339642]
-- [net] vlan: pull on __vlan_insert_tag error path and fix csum correction (Aaron Conole) [1328847]
-- [net] use skb_postpush_rcsum instead of own implementations (Aaron Conole) [1328847]
-- [net] add skb_postpush_rcsum and fix dev_forward_skb occasions (Aaron Conole) [1328847]
-- [net] sctp: add support for RPS and RFS (Marcelo Leitner) [981353]
-
-* Tue Jun 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-434.el7]
-- [netdrv] sfc: report supported link speeds on SFP connections (Jarod Wilson) [1166525]
-- [netdrv] be2net: Don't leak iomapped memory on removal (Ivan Vecera) [1315715]
-- [netdrv] be2net: don't report EVB for older chipsets when SR-IOV is disabled (Ivan Vecera) [1304414]
-- [netdrv] be2net: remove vlan promisc capability from VF's profile descriptors (Ivan Vecera) [1251919]
-- [netdrv] be2net: support ethtool get-dump option (Ivan Vecera) [1271067]
-- [netdrv] tg3: Fix for tg3 transmit queue 0 timed out when too many gso_segs (Ivan Vecera) [1287875]
-- [netdrv] tg3: avoid uninitialized variable warning (Ivan Vecera) [1287875]
-- [netdrv] tg3: Fix temperature reporting (Ivan Vecera) [1287875]
-- [netdrv] tg3: use napi_complete_done() (Ivan Vecera) [1287875]
-- [netdrv] bnx2x, tg3: Replace put_page(virt_to_head_page()) with skb_free_frag() (Ivan Vecera) [1287875]
-- [netdrv] qlcnic: potential NULL dereference in qlcnic_83xx_get_minidump_template() (Harish Patil) [1275799]
-- [netdrv] qlcnic: Update version to 5.3.64 (Harish Patil) [1275799]
-- [netdrv] qlcnic: protect qlicnic_attach_func with rtnl_lock (Harish Patil) [1275799]
-- [netdrv] qlcnic: Fix mailbox completion handling during spurious interrupt (Harish Patil) [1275799]
-- [netdrv] qlcnic: Remove unnecessary usage of atomic_t (Harish Patil) [1275799]
-- [netdrv] qlcnic: correctly handle qlcnic_alloc_mbx_args (Harish Patil) [1275799]
-- [netdrv] qlcnic: constify qlcnic_dcb_ops structures (Harish Patil) [1275799]
-- [netdrv] qlcnic: fix a loop exit condition better (Harish Patil) [1275799]
-- [netdrv] qlcnic: fix a timeout loop (Harish Patil) [1275799]
-- [netdrv] qlcnic: constify qlcnic_mbx_ops structure (Harish Patil) [1275799]
-- [netdrv] qlcnic: track vxlan port count (Harish Patil) [1275799]
-- [netdrv] qlcnic: delete redundant memsets (Harish Patil) [1275799]
-- [netdrv] qlcnic: Update version to 5.3.63 (Harish Patil) [1275799]
-- [netdrv] qlcnic: Don't use kzalloc unncecessarily for allocating large chunk of memory (Harish Patil) [1275799]
-- [netdrv] qlcnic: Add new VF device ID 0x8C30 (Harish Patil) [1275799]
-- [netdrv] qlcnic: Print firmware minidump buffer and template header addresses (Harish Patil) [1275799]
-- [netdrv] qlcnic: Add support to enable capability to extend minidump for iSCSI (Harish Patil) [1275799]
-- [netdrv] qlcnic: Rearrange ordering of header files inclusion (Harish Patil) [1275799]
-- [netdrv] qlcnic: Fix corruption while copying (Harish Patil) [1275799]
-- [netdrv] qlcnic: Deletion of unnecessary memset (Harish Patil) [1275799]
-- [netdrv] qlcnic: clean up sysfs error codes (Harish Patil) [1275799]
-- [netdrv] ethernet: codespell comment spelling fixes (Harish Patil) [1275799]
-- [netdrv] treewide: Fix typo in printk messages (Harish Patil) [1275799]
-- [netdrv] bnx2x: allow adding VLANs while interface is down (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: avoid leaking memory on bnx2x_init_one() failures (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Prevent false warning for lack of FC NPIV (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: don't wait for Tx completion on recovery (Michal Schmidt) [1275795 1320748]
-- [netdrv] bnx2x: fix indentation in bnx2x_sp_task() (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: define event data reserved fields as little-endian (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: define fields of struct cfc_del_event_data as little-endian (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: access cfc_del_event only if the opcode is CFC_DEL (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: fix receive of VF->PF mailbox messages by the PF on big-endian (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: fix sending VF->PF messages on big-endian (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: fix crash on big-endian when adding VLAN (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: add a separate GENEVE Kconfig symbol (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix 84833 phy command handler (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix led setting for 84858 phy (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Correct 84858 PHY fw version (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix 84833 RX CRC (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix link-forcing for KR2 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Warn about grc timeouts in register dump (Michal Schmidt) [1271075 1275795]
-- [netdrv] bnx2x: Add missing HSI for big-endian machines (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: extend DCBx support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add support for single-port DCBx (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add Geneve inner-RSS support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Remove unneccessary EXPORT_SYMBOL (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Prevent FW assertion when using Vxlan (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: remove rx_pkt/rx_calls (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: avoid soft lockup in bnx2x_poll() (Michal Schmidt) [1178598 1275795]
-- [netdrv] bnx2x: simplify distinction between port and func stats (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: change FW GRO error message to WARN_ONCE (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: drop redundant error message about allocation failure (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Utilize FW 7.13.1.0 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Show port statistics in Multi-function (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add new SW stat 'tx_exhaustion_events' (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Prevent UDP 4-tuple configurations on older adapters (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: byte swap rss_key to comply to Toeplitz specs (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix vxlan removal (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: track vxlan port count (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add new device ids under the Qlogic vendor (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix vxlan endianity issue (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add vxlan RSS support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix bandwidth allocation for some MF modes (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Free NVRAM lock at end of each page (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Prevent null pointer dereference on SKB release (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add BD support for storage (Michal Schmidt) [1275795]
-- [netdrv] cnic: Add the interfaces to get FC-NPIV table (Michal Schmidt) [1275795]
-- [netdrv] cnic: Populate upper layer driver state in MFW (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Correct logic for pvid configuration (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix VLANs null-pointer for 57710, 57711 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Fix compilation when CONFIG_BNX2X_SRIOV is not set (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: add vlan filtering offload (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Bump up driver version to 1.712.30 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add MFW dump support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: new Multi-function mode - BD (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Add 84858 phy support (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Rebrand from 'broadcom' into 'qlogic' (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Utilize FW 7.12.30 (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: only report most generic filters in get_ts_info (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: Replace put_page(virt_to_head_page()) with skb_free_frag() (Michal Schmidt) [1275795]
-- [netdrv] ptp: bnx2x: convert to the 64 bit get/set time methods (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: convert to CYCLECOUNTER_MASK macro (Michal Schmidt) [1275795]
-- [netdrv] bnx2x: conversion of smp_mb__*() (Michal Schmidt) [1275795]
-- [net] can: replace timestamp as unique skb attribute (John Linville) [1333130]
-- [net] can: introduce new raw socket option to join the given CAN filters (John Linville) [1333130]
-- [net] can: fix loss of CAN frames in raw_rcv (John Linville) [1333130]
-- [netdrv] can: usb_8dev: fix urb leak on failure path in usb_8dev_start() (John Linville) [1333130]
-- [netdrv] can: esd_usb2: check index of array before accessing (John Linville) [1333130]
-- [net] can: add missing initialisations in CAN related skbuffs (John Linville) [1333130]
-- [netdrv] can: ems_usb: fix coding style (John Linville) [1333130]
-- [netdrv] can: ems_usb: Fix possible tx overflow (John Linville) [1333130]
-- [net] can: fix multiple delivery of a single CAN frame for overlapping CAN filters (John Linville) [1333130]
-- [netdrv] can: ems_usb: fix endianess of CAN ID (John Linville) [1333130]
-- [netdrv] can: kvaser_usb: Do not sleep in atomic context (John Linville) [1333130]
-- [netdrv] can: kvaser_usb: Reset all URB tx contexts upon channel close (John Linville) [1333130]
-- [netdrv] can: kvaser_usb: Don't free packets when tight on URBs (John Linville) [1333130]
-- [net] can: fix spelling errors (John Linville) [1333130]
-- [netdrv] can: peak_usb: fix multi-byte values endianess (John Linville) [1333130]
-- [netdrv] can: peak_usb: fix cleanup sequence order in case of error during init (John Linville) [1333130]
-- [netdrv] can: peak_usb: fix memset() usage (John Linville) [1333130]
-- [netdrv] can: esd_usb2: fix memory leak on disconnect (John Linville) [1333130]
-- [netdrv] can: sja1000_isa: add locking for indirect register access mode (John Linville) [1333130]
-- [netdrv] can: c_can: use proper type for 'instance' (John Linville) [1333130]
-- [netdrv] can: c_can: Provide protection in the xmit path (John Linville) [1333130]
-- [netdrv] can: c_can: Remove EOB exit (John Linville) [1333130]
-- [netdrv] can: move sanity check for bitrate and tq into can_get_bittiming (John Linville) [1333130]
-- [netdrv] can: preserve skbuff protocol in can_put_echo_skb (John Linville) [1333130]
-- [netdrv] can: peak_usb: fix mem leak in pcan_usb_pro_init() (John Linville) [1333130]
-- [netdrv] can: ems_usb: fix urb leaks on failure paths (John Linville) [1333130]
-- [netdrv] can: c_can: fix calculation of transmitted bytes on tx complete (John Linville) [1333130]
-- [netdrv] can: kvaser_usb: fix usb endpoints detection (John Linville) [1333130]
-- [netdrv] can: c_can: Fix RX message handling, handle lost message before EOB (John Linville) [1333130]
-- [netdrv] slip/slcan: added locking in wakeup function (John Linville) [1333130]
-- [netdrv] can: pcan_usb_core: fix memory leak on failure paths in peak_usb_start() (John Linville) [1333130]
-- [netdrv] can: c_can: fix error checking of priv->instance in probe() (John Linville) [1333130]
-- [netdrv] can: Convert to use devm_ioremap_resource (John Linville) [1333130]
-
-* Fri Jun 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-433.el7]
-- [net] netfilter: fix oops with metadata dst (Lance Richardson) [1283886]
-- [net] gre: reject GUE and FOU in collect metadata mode (Lance Richardson) [1283886]
-- [net] gre: build header correctly for collect metadata tunnels (Lance Richardson) [1283886]
-- [net] gre: do not assign header_ops in collect metadata mode (Lance Richardson) [1283886]
-- [net] openvswitch: Orphan skbs before IPv6 defrag (Lance Richardson) [1283886]
-- [net] ip_tunnel: Fix returned tc and hoplimit values for route with IPv6 encapsulation (Lance Richardson) [1283886]
-- [net] vxlan: fix sparse warnings (Lance Richardson) [1283886]
-- [net] geneve: fix populating tclass in geneve_get_v6_dst (Lance Richardson) [1283886]
-- [net] vxlan: fix populating tclass in vxlan6_get_route (Lance Richardson) [1283886]
-- [net] geneve: support setting IPv6 flow label (Lance Richardson) [1283886]
-- [net] vxlan: support setting IPv6 flow label (Lance Richardson) [1283886]
-- [net] ip_tunnel: add support for setting flow label via collect metadata (Lance Richardson) [1283886]
-- [net] vxlan: allow setting ipv6 traffic class (Lance Richardson) [1283886]
-- [net] vxlan: fix missing options_len update on RX with collect metadata (Lance Richardson) [1283886]
-- [net] vxlan: simplify metadata_dst usage in vxlan_rcv (Lance Richardson) [1283886]
-- [net] vxlan: consolidate rx handling to a single function (Lance Richardson) [1283886]
-- [net] vxlan: move ECN decapsulation to a separate function (Lance Richardson) [1283886]
-- [net] vxlan: move inner L2 header processing to a separate function (Lance Richardson) [1283886]
-- [net] vxlan: consolidate GBP handling even more (Lance Richardson) [1283886]
-- [net] geneve: Support outer IPv4 Tx checksums by default (Lance Richardson) [1283886]
-- [net] lwtunnel: fix rx checksum setting for lwt devices tunneling over ipv6 (Lance Richardson) [1283886]
-- [net] vxlan: do not use fdb in metadata mode (Lance Richardson) [1283886]
-- [net] geneve: clear IFF_TX_SKB_SHARING (Lance Richardson) [1283886]
-- [net] vxlan: clear IFF_TX_SKB_SHARING (Lance Richardson) [1283886]
-- [net] iptunnel: scrub packet in iptunnel_pull_header (Lance Richardson) [1283886]
-- [net] vxlan: move vxlan device lookup before iptunnel_pull_header (Lance Richardson) [1283886]
-- [net] geneve: move geneve device lookup before iptunnel_pull_header (Lance Richardson) [1283886]
-- [net] geneve: implement geneve_get_sk_family helper (Lance Richardson) [1283886]
-- [net] geneve: Refine MTU limit (Lance Richardson) [1283886]
-- [net] vxlan: tun_id is 64bit, not 32bit (Lance Richardson) [1283886]
-- [net] vxlan: treat vni in metadata based tunnels consistently (Lance Richardson) [1283886]
-- [net] vxlan: clean up rx error path (Lance Richardson) [1283886]
-- [net] vxlan: clean up extension handling on rx (Lance Richardson) [1283886]
-- [net] vxlan: move GBP header parsing to a separate function (Lance Richardson) [1283886]
-- [net] vxlan: simplify vxlan_remcsum (Lance Richardson) [1283886]
-- [net] vxlan: keep flags and vni in network byte order (Lance Richardson) [1283886]
-- [net] vxlan: introduce vxlan_hdr (Lance Richardson) [1283886]
-- [net] vxlan: udp_tunnel duplicate include net/udp_tunnel.h (Lance Richardson) [1283886]
-- [net] vxlan, gre, geneve: Set a large MTU on ovs-created tunnel devices (Lance Richardson) [1283886]
-- [net] geneve: Relax MTU constraints (Lance Richardson) [1283886]
-- [net] vxlan: Relax MTU constraints (Lance Richardson) [1283886]
-- [net] vxlan: consolidate vxlan_xmit_skb and vxlan6_xmit_skb (Lance Richardson) [1283886]
-- [net] vxlan: consolidate csum flag handling (Lance Richardson) [1283886]
-- [net] vxlan: consolidate output route calculation (Lance Richardson) [1283886]
-- [net] vxlan: restructure vxlan.h definitions (Lance Richardson) [1283886]
-- [net] vxlan: remove duplicated macros (Lance Richardson) [1283886]
-- [net] vxlan: cleanup types (Lance Richardson) [1283886]
-- [net] vxlan: fix a out of bounds access in __vxlan_find_mac (Lance Richardson) [1283886]
-- [net] inet: frag: Always orphan skbs inside ip_defrag() (Lance Richardson) [1283886 1338099]
-- [net] tunnels: Allow IPv6 UDP checksums to be correctly controlled (Lance Richardson) [1283886]
-- [net] gro: Make GRO aware of lightweight tunnels (Lance Richardson) [1283886]
-- [net] openvswitch: update kernel doc for struct vport (Lance Richardson) [1283886]
-- [net] openvswitch: fix struct geneve_port member name (Lance Richardson) [1283886]
-- [net] udp: restrict offloads to one namespace (Lance Richardson) [1283886]
-- [net] vxlan: fix test which detect duplicate vxlan iface (Lance Richardson) [1283886]
-- [net] ipv4: fix endianness warnings in ip_tunnel_core.c (Lance Richardson) [1283886]
-- [net] ip6_tunnel: make ip6tunnel_xmit definition conditional (Lance Richardson) [1283886]
-- [net] ip_tunnel: Move stats update to iptunnel_xmit() (Lance Richardson) [1283886]
-- [net] geneve: initialize needed_headroom (Lance Richardson) [1283886]
-- [net] openvswitch: correct encoding of set tunnel action attributes (Lance Richardson) [1283886]
-- [net] geneve: Add geneve_get_rx_port support (Lance Richardson) [1283886]
-- [net] geneve: Add geneve udp port offload for ethernet devices (Lance Richardson) [1283886]
-- [net] geneve: UDP checksum configuration via netlink (Lance Richardson) [1283886]
-- [net] geneve: Fix IPv6 xmit stats update (Lance Richardson) [1283886]
-- [net] vxlan: interpret IP headers for ECN correctly (Lance Richardson) [1283886]
-- [net] vxlan: support ndo_fill_metadata_dst also for IPv6 (Lance Richardson) [1283886]
-- [net] vxlan: move IPv6 outpute route calculation to a function (Lance Richardson) [1283886]
-- [net] vxlan: fix incorrect RCO bit in VXLAN header (Lance Richardson) [1283886]
-- [net] openvswitch: fix hangup on vxlan/gre/geneve device deletion (Lance Richardson) [1283886]
-- [net] openvswitch: properly refcount vport-vxlan module (Lance Richardson) [1283886]
-- [net] ip_tunnel: disable preemption when updating per-cpu tstats (Lance Richardson) [1283886]
-- [net] tun_dst: Fix potential NULL dereference (Lance Richardson) [1283886]
-- [net] geneve: add IPv6 bits to geneve_fill_metadata_dst (Lance Richardson) [1283886]
-- [net] geneve: handle ipv6 priority like ipv4 tos (Lance Richardson) [1283886]
-- [net] geneve: implement support for IPv6-based tunnels (Lance Richardson) [1283886]
-- [net] openvswitch: Fix egress tunnel info (Lance Richardson) [1283886]
-- [net] openvswitch: Use dev_queue_xmit for vport send (Lance Richardson) [1283886]
-- [net] openvswitch: Fix incorrect type use (Lance Richardson) [1283886]
-- [net] openvswitch: Allocate memory for ovs internal device stats. (Lance Richardson) [1283886]
-- [net] tunnels: Don't require remote endpoint or ID during creation (Lance Richardson) [1283886]
-- [net] openvswitch: Scrub skb between namespaces (Lance Richardson) [1283886]
-- [net] openvswitch: netlink attributes for IPv6 tunneling (Lance Richardson) [1283886]
-- [net] openvswitch: add tunnel protocol to sw_flow_key (Lance Richardson) [1283886]
-- [net] openvswitch: Fix ovs_vport_get_stats() (Lance Richardson) [1283886]
-- [net] ipv4: fix reply_dst leakage on arp reply (Lance Richardson) [1283886]
-- [net] vxlan: support both IPv4 and IPv6 sockets in a single vxlan device (Lance Richardson) [1283886]
-- [net] vxlan: make vxlan_sock_add and vxlan_sock_release complementary (Lance Richardson) [1283886]
-- [net] lwtunnel: remove source and destination UDP port config option (Lance Richardson) [1283886]
-- [net] ipv4: send arp replies to the correct tunnel (Lance Richardson) [1283886]
-- [net] geneve: use network byte order for destination port config parameter (Lance Richardson) [1283886]
-- [net] geneve: ensure ECN info is handled properly in all tx/rx paths (Lance Richardson) [1283886]
-- [net] geneve: remove vlan-related feature assignment (Lance Richardson) [1283886]
-- [net] ip6tunnel: make rx/tx bytes counters consistent (Lance Richardson) [1283886]
-- [net] iptunnel: make rx/tx bytes counters consistent (Lance Richardson) [1283886]
-- [net] vxlan: reject IPv6 addresses if IPv6 is not configured (Lance Richardson) [1283886]
-- [net] vxlan: set needed headroom correctly (Lance Richardson) [1283886]
-- [net] openvswitch: Fix mask generation for nested attributes (Lance Richardson) [1283886]
-- [net] vxlan: Refactor vxlan_udp_encap_recv() to kill compiler warning (Lance Richardson) [1283886]
-- [net] ip_tunnel: Use API to access tunnel metadata options (Lance Richardson) [1283886]
-- [net] openvswitch: Remove vport-net (Lance Richardson) [1283886]
-- [net] openvswitch: Remove vport stats (Lance Richardson) [1283886]
-- [net] openvswitch: Remove egress_tun_info (Lance Richardson) [1283886]
-- [net] openvswitch: Remove vport get_name() (Lance Richardson) [1283886]
-- [net] geneve: Use GRO cells infrastructure (Lance Richardson) [1283886]
-- [net] vxlan: do not receive IPv4 packets on IPv6 socket (Lance Richardson) [1283886]
-- [net] ip_tunnels: record IP version in tunnel info (Lance Richardson) [1283886]
-- [net] ip_tunnels: convert the mode field of ip_tunnel_info to flags (Lance Richardson) [1283886]
-- [net] geneve: Move device hash table to geneve socket (Lance Richardson) [1283886]
-- [net] geneve: Consolidate Geneve functionality in single module (Lance Richardson) [1283886]
-- [net] openvswitch: Use Geneve device (Lance Richardson) [1283886]
-- [net] geneve: Add support to collect tunnel metadata (Lance Richardson) [1283886]
-- [net] geneve: Make dst-port configurable (Lance Richardson) [1283886]
-- [net] tunnel: introduce udp_tun_rx_dst() (Lance Richardson) [1283886]
-- [net] geneve: Use skb mark and protocol to lookup route (Lance Richardson) [1283886]
-- [net] geneve: Initialize ethernet address in device setup (Lance Richardson) [1283886]
-- [net] vxlan: fix multiple inclusion of vxlan.h (Lance Richardson) [1283886]
-- [net] route: fix a use-after-free (Lance Richardson) [1283886]
-- [net] lwtunnel: Add cfg argument to build_state (Lance Richardson) [1283886]
-- [net] vxlan: GRO support at tunnel layer (Lance Richardson) [1283886]
-- [net] gro: Fix remcsum offload to deal with frags in GRO (Lance Richardson) [1283886]
-- [net] ipv6: route: per route IP tunnel metadata via lightweight tunnel (Lance Richardson) [1283886]
-- [net] ipv6: route: extend flow representation with tunnel key (Lance Richardson) [1283886]
-- [net] vxlan: metadata based tunneling for IPv6 (Lance Richardson) [1283886]
-- [net] vxlan: do not shadow flags variable (Lance Richardson) [1283886]
-- [net] vxlan: provide access function for vxlan socket address family (Lance Richardson) [1283886]
-- [net] ipv6: drop metadata dst in ip6_route_input (Lance Richardson) [1283886]
-- [net] route: move lwtunnel state to dst_entry (Lance Richardson) [1283886]
-- [net] ip_tunnels: use tos and ttl fields also for IPv6 (Lance Richardson) [1283886]
-- [net] ip_tunnels: add IPv6 addresses to ip_tunnel_key (Lance Richardson) [1283886]
-- [net] ip_tunnels: use offsetofend (Lance Richardson) [1283886]
-- [net] ip_tunnels: use u8/u16/u32 (Lance Richardson) [1283886]
-- [net] ip_tunnels: remove custom alignment and packing (Lance Richardson) [1283886]
-- [net] ipv4: Make fib_encap_match static (Lance Richardson) [1283886]
-- [net] lwtunnel: Fix the sparse warnings in fib_encap_match (Lance Richardson) [1283886]
-- [net] lwtunnel: ip tunnel: fix multiple routes with different encap (Lance Richardson) [1283886]
-- [net] lwtunnel: fix memory leak (Lance Richardson) [1283886]
-- [net] geneve: convert to using IFF_NO_QUEUE (Lance Richardson) [1283886]
-- [net] lwtunnel: Add support to redirect dst.input (Lance Richardson) [1283886]
-- [net] lwtunnel: rename ip lwtunnel attributes (Lance Richardson) [1283886]
-- [net] vxlan: fix fdb_dump index calculation (Lance Richardson) [1283886]
-- [net] gre: Remove support for sharing GRE protocol hook (Lance Richardson) [1283886]
-- [net] openvswitch: Use regular GRE net_device instead of vport (Lance Richardson) [1283886]
-- [net] gre: Add support to collect tunnel metadata (Lance Richardson) [1283886]
-- [net] openvswitch: Move tunnel destroy function to oppenvswitch module (Lance Richardson) [1283886]
-- [net] vxlan: combine VXLAN_FLOWBASED into VXLAN_COLLECT_METADATA (Lance Richardson) [1283886]
-- [net] ipv4: apply lwtunnel encap for locally-generated packets (Lance Richardson) [1283886]
-- [net] lwtunnel: set skb protocol and dev (Lance Richardson) [1283886]
-- [net] vxlan: expose COLLECT_METADATA flag to user space (Lance Richardson) [1283886]
-- [net] ipv6: change ipv6_stub_impl.ipv6_dst_lookup to take net argument (Lance Richardson) [1283886]
-- [net] openvswitch: Re-add CONFIG_OPENVSWITCH_VXLAN (Lance Richardson) [1283886]
-- [net] lwtunnel: Make lwtun_encaps[] static (Lance Richardson) [1283886]
-- [net] lwtunnel: use kfree_skb() instead of vanilla kfree() (Lance Richardson) [1283886]
-- [net] lwtunnel: change prototype of lwtunnel_state_get() (Lance Richardson) [1283886]
-- [net] ipv6: copy lwtstate in ip6_rt_copy_init() (Lance Richardson) [1283886]
-- [net] ipv6: use lwtunnel_output6() only if flag redirect is set (Lance Richardson) [1283886]
-- [net] lwtunnel: export linux/lwtunnel.h to userspace (Lance Richardson) [1283886]
-- [net] openvswitch: Retrieve tunnel metadata when receiving from vport-netdev (Lance Richardson) [1283886]
-- [net] openvswitch: fix compilation when vxlan is a module (Lance Richardson) [1283886]
-- [net] ipv6: fix crash over flow-based vxlan device (Lance Richardson) [1283886]
-- [net] vxlan: Use proper endian type for vni in vxlan[6]_xmit_skb (Lance Richardson) [1283886]
-- [net] ip_tunnel: Call ip_tunnel_core_init() from inet_init() (Lance Richardson) [1283886]
-- [net] ip_tunnel: Provide tunnel metadata API for CONFIG_INET=n (Lance Richardson) [1283886]
-- [net] openvswitch: Use regular VXLAN net_device device (Lance Richardson) [1283886]
-- [net] openvswitch: Abstract vport name through ovs_vport_name() (Lance Richardson) [1283886]
-- [net] openvswitch: Make tunnel set action attach a metadata dst (Lance Richardson) [1283886]
-- [net] vxlan: Factor out device configuration (Lance Richardson) [1283886]
-- [net] fib: Add fib rule match on tunnel id (Lance Richardson) [1283886]
-- [net] route: Per route IP tunnel metadata via lightweight tunnel (Lance Richardson) [1283886]
-- [net] route: Extend flow representation with tunnel key (Lance Richardson) [1283886]
-- [net] vxlan: Flow based tunneling (Lance Richardson) [1283886]
-- [net] arp: Inherit metadata dst when creating ARP requests (Lance Richardson) [1283886]
-- [net] dst: Metadata destinations (Lance Richardson) [1283886]
-- [net] icmp: Don't leak original dst into ip_route_input() (Lance Richardson) [1283886]
-- [net] ip_tunnel: Make ovs_tunnel_info and ovs_key_ipv4_tunnel generic (Lance Richardson) [1283886]
-- [net] ipv6: rt6_info output redirect to tunnel output (Lance Richardson) [1283886]
-- [net] ipv4: redirect dst output to lwtunnel output (Lance Richardson) [1283886]
-- [net] lwtunnel: support dst output redirect function (Lance Richardson) [1283886]
-- [net] ipv6: support for fib route lwtunnel encap attributes (Lance Richardson) [1283886]
-- [net] ipv4: support for fib route lwtunnel encap attributes (Lance Richardson) [1283886]
-- [net] lwtunnel: infrastructure for handling light weight tunnels like mpls (Lance Richardson) [1283886]
-- [net] rtnetlink: introduce new RTA_ENCAP_TYPE and RTA_ENCAP attributes (Lance Richardson) [1283886]
-- [net] vxlan: Fix kernel unaligned access in __vxlan_find_mac (Lance Richardson) [1283886]
-- [include] stddef: move offsetofend inside #ifndef/#endif guard, neaten (Lance Richardson) [1283886]
-- [net] geneve: allow user to specify TOS info for tunnel frames (Lance Richardson) [1283886]
-- [net] geneve: allow user to specify TTL for tunnel frames (Lance Richardson) [1283886]
-- [net] vxlan: release lock after each bucket in vxlan_cleanup (Lance Richardson) [1283886]
-- [net] ipv6: Break up ip6_rt_copy() (Lance Richardson) [1283886]
-- [net] ipv6: Combine rt6_alloc_cow and rt6_alloc_clone (Lance Richardson) [1283886]
-- [net] ipv6: Remove external dependency on rt6i_gateway and RTF_ANYCAST (Lance Richardson) [1283886]
-- [net] vxlan: correct typo in call to unregister_netdevice_queue (Lance Richardson) [1283886]
-- [net] geneve: add initial netdev driver for GENEVE tunnels (Lance Richardson) [1283886]
-- [net] geneve: identify as driver library in modules description (Lance Richardson) [1283886]
-- [net] geneve: Rename support library as geneve_core (Lance Richardson) [1283886]
-- [net] geneve: move definition of geneve_hdr() to geneve.h (Lance Richardson) [1283886]
-- [net] geneve: remove MODULE_ALIAS_RTNL_LINK from net/ipv4/geneve.c (Lance Richardson) [1283886]
-- [net] vxlan: Correctly set flow*i_mark and flow4i_proto in route lookups (Lance Richardson) [1283886]
-- [net] ipv6: Check RTF_LOCAL on rt->rt6i_flags instead of rt->dst.flags (Lance Richardson) [1283886]
-- [net] ipv6: Stop rt6_info from using inet_peer's metrics (Lance Richardson) [1283886]
-- [net] ipv6: Stop /128 route from disappearing after pmtu update (Lance Richardson) [1283886]
-- [net] ipv6: Extend the route lookups to low priority metrics (Lance Richardson) [1283886]
-- [net] ipv6: Consider RTF_CACHE when searching the fib6 tree (Lance Richardson) [1283886]
-- [net] vxlan: remove the unnecessary codes (Lance Richardson) [1283886]
-- [net] rtnetlink: Mark name argument of rtnl_create_link() const (Lance Richardson) [1283886]
-- [net] vxlan: correct spelling in comments (Lance Richardson) [1283886]
-- [net] ipv6: call ipv6_proxy_select_ident instead of ipv6_select_ident in udp6_ufo_fragment (Lance Richardson) [1283886]
-- [net] vxlan: Don't set s_addr in vxlan_create_sock (Lance Richardson) [1283886]
-- [net] ipv6: Make __ipv6_select_ident static (Lance Richardson) [1283886]
-- [net] ipv6: Fix fragment id assignment on LE arches (Lance Richardson) [1283886]
-- [net] ipv6: Select fragment id during UFO segmentation if not set (Lance Richardson) [1283886]
-- [net] ipv6: Fix __ip6_route_redirect (Lance Richardson) [1283886]
-- [net] ipv6: add ipv6_proxy_select_ident() (Lance Richardson) [1283886]
-- [net] ipv6: Avoid redoing fib6_lookup() with reachable = 0 by saving fn (Lance Richardson) [1283886]
-- [net] ipv6: Avoid redoing fib6_lookup() for RTF_CACHE hit case (Lance Richardson) [1283886]
-- [net] ipv6: Remove BACKTRACK macro (Lance Richardson) [1283886]
-- [net] gre: Setup and TX path for gre/UDP foo-over-udp encapsulation (Lance Richardson) [1283886]
-- [net] sit: Setup and TX path for sit/UDP foo-over-udp encapsulation (Lance Richardson) [1283886]
-- [net] ip: make IP identifiers less predictable (Lance Richardson) [1283886]
-- [net] inetpeer: get rid of ip_id_count (Lance Richardson) [1283886]
-- [net] ipv6: Limit mtu to 65575 bytes (Lance Richardson) [1283886]
-- [net] inet: remove now unused flag DST_NOPEER (Lance Richardson) [1283886]
-- [net] ipv6: reuse ip6_frag_id from ip6_ufo_append_data (Lance Richardson) [1283886]
-- [net] ipv6: move IPV6_TCLASS_SHIFT into ipv6.h and define a helper (Lance Richardson) [1283886]
-- [net] ipv6: add the option to use anycast addresses as source addresses in echo reply (Lance Richardson) [1283886]
-- [net] gre: fix msg_name parsing for recvfrom/recvmsg (Lance Richardson) [1283886]
-- [net] ipv6: fix incorrect type in declaration (Lance Richardson) [1283886]
-- [net] ipv6: remove rcv_tclass of ipv6_pinfo (Lance Richardson) [1283886]
-- [net] ipv6: add flowinfo for tcp6 pkt_options for all cases (Lance Richardson) [1283886]
-- [net] ipv6: drop the judgement in rt6_alloc_cow() (Lance Richardson) [1283886]
-- [net] rtnetlink: Remove extern from function prototypes (Lance Richardson) [1283886]
-- [net] ipv6: fix ecmp lookup when oif is specified (Lance Richardson) [1283886]
-- [net] revert "rhel: use dummy net_device for tunnels" (Lance Richardson) [1283886]
-
-* Fri Jun 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-432.el7]
-- [scsi] disable automatic target scan (Ewan Milne) [1088445]
-- [scsi] hpsa: update MAINTAINERS with new e-mail (Joseph Szczypek) [1274467]
-- [scsi] hpsa: update copyright information (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct abort tmf for hba devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct lun data caching bitmap definition (Joseph Szczypek) [1274467]
-- [scsi] hpsa: do not get enclosure info for external devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: Add box and bay information for enclosure devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: Change SAS transport devices to bus 0 (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix path_info_show (Joseph Szczypek) [1274467]
-- [scsi] hpsa: select CONFIG_SCSI_SAS_ATTR (Joseph Szczypek) [1274467]
-- [scsi] hpsa: logical vs bitwise AND typo (Joseph Szczypek) [1274467]
-- [scsi] hpsa: Update revision to reflect Red Hat version (Joseph Szczypek) [1274467]
-- [scsi] hpsa: bump the driver version (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add in sas transport class (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix multiple issues in path_info_show (Joseph Szczypek) [1274467]
-- [scsi] hpsa: enhance device messages (Joseph Szczypek) [1274467]
-- [scsi] hpsa: disable report lun data caching (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add discovery polling for PT RAID devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: eliminate fake lun0 enclosures (Joseph Szczypek) [1274467]
-- [scsi] hpsa: generalize external arrays (Joseph Szczypek) [1274467]
-- [scsi] hpsa: move scsi_add_device and scsi_remove_device calls to new function (Joseph Szczypek) [1274467]
-- [scsi] hpsa: refactor hpsa_figure_bus_target_lun (Joseph Szczypek) [1274467]
-- [scsi] hpsa: enhance hpsa_get_device_id (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add function is_logical_device (Joseph Szczypek) [1274467]
-- [scsi] hpsa: simplify update scsi devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: simplify check for device exposure (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct ioaccel2 sg chain len (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct check for non-disk devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix physical target reset (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix hpsa_adjust_hpsa_scsi_table (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct transfer length for 6 byte read/write commands (Joseph Szczypek) [1274467]
-- [scsi] hpsa: abandon rescans on memory alloaction failures (Joseph Szczypek) [1274467]
-- [scsi] hpsa: allow driver requested rescans (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix null device issues (Joseph Szczypek) [1274467]
-- [scsi] hpsa: check for null arguments to dev_printk (Joseph Szczypek) [1274467]
-- [scsi] hpsa: change devtype to unsigned (Joseph Szczypek) [1274467]
-- [scsi] hpsa: remove unused hpsa_tag_discard_error_bits (Joseph Szczypek) [1274467]
-- [scsi] hpsa: stop zeroing reset_cmds_out and ioaccel_cmds_out during rescan (Joseph Szczypek) [1274467]
-- [scsi] hpsa: remove unused parameter hostno (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add in new offline mode (Joseph Szczypek) [1274467]
-- [scsi] Change how controllers in mixed mode are handled (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add in new controllers (Joseph Szczypek) [1274467]
-- [scsi] hpsa: cleanup update scsi devices (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add sysfs entry path_info to show box and bay information (Joseph Szczypek) [1274467]
-- [scsi] hpsa: add PMC to copyright (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct static checker warnings on driver init cleanup (Joseph Szczypek) [1274467]
-- [scsi] hpsa: correct decode sense data (Joseph Szczypek) [1274467]
-- [scsi] hpsa: Correct double unlock of mutex (Joseph Szczypek) [1274467]
-- [scsi] hpsa: fix an sprintf() overflow in the reset handler (Joseph Szczypek) [1274467]
-- [scsi] sd: get disk reference in sd_check_events() (Ewan Milne) [1330047]
-- [scsi] lpfc: Revert: Add lockdep assertions (Rob Evers) [1340057]
-- [scsi] lpfc: Revert: remove incorrect lockdep assertion (Rob Evers) [1340057]
-- [scsi] be2iscsi: set the boot_kset pointer to NULL in case of failure (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Remove unnecessary synchronize_irq() before free_irq() (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Add missing error check in beiscsi_eeh_resume (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix memory leak in beiscsi_alloc_mem() (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: _bh for io_sgl_lock and mgmt_sgl_lock (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix ExpStatSn in management tasks (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Couple MCC tag and WRB alloc and free (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix MCC WRB leak in open_connection (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Cleanup processing of BMBX completion (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix be_mcc_compl_poll to use tag_state (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Remove be_mbox_notify_wait function (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Rename MCC and BMBX processing functions (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Remove redundant MCC processing code (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Use macros for MCC WRB and CQE fields (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Remove unused mcc_cq_lock (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: add checks for dma mapping errors (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Update the driver version (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix WRB leak in login/logout path (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix async link event processing (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to process 25G link speed info from FW (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix IOPOLL implementation (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix return value for MCC completion (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Add FW config validation (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to handle misconfigured optics events (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix VLAN support for IPv6 network (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to remove shutdown entry point (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Added return value check for mgmt_get_all_if_id (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Set mbox timeout to 30s (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to synchronize tag allocation using spin_lock (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix to use atomic bit operations for tag_state (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix mbox synchronization replacing spinlock with mutex (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix soft lockup in mgmt_get_all_if_id path using bmbx (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix bogus WARN_ON length check (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Bump the driver version (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Revert ownership to Emulex (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: change email domain (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: revert: Update the copyright year (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: fix memory leak in error path (Maurizio Lombardi) [1274912]
-- [scsi] be2iscsi: Fix memory leak in mgmt_set_ip() (Maurizio Lombardi) [1274912]
-
-* Thu Jun 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-431.el7]
-- [netdrv] qed: Reset the enable flag for eth protocol (Harish Patil) [1275807 1275811]
-- [netdrv] qed: signedness bug in qed_dcbx_process_tlv() (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix DMA address APIs usage (Harish Patil) [1275807 1275811]
-- [netdrv] mm: rename _count, field of the struct page, to _refcount (Harish Patil) [1275807 1275811]
-- [netdrv] mm/page_ref: use page_ref helper instead of direct modification of _count (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add support for dcbx (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Remove a stray tab (Harish Patil) [1275807 1275811]
-- [netdrv] qed: VFs gracefully accept lack of PM (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Allow more than 16 VFs (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Reset link on IOV disable (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Improve VF interrupt reset (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Correct PF-sanity check (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Tx-switching configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: support ndo_get_vf_config (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: IOV support spoof-checking (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: IOV link control (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Support forced MAC (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Support PVID configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add VF support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Align TLVs (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Bulletin and Link (Harish Patil) [1275807 1275811]
-- [netdrv] qed: IOV l2 functionality (Harish Patil) [1275807 1275811]
-- [netdrv] qed: IOV configure and FLR (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Introduce VFs (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add VF->PF channel infrastructure (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add CONFIG_QED_SRIOV (Harish Patil) [1275807 1275811]
-- [netdrv] qede: uninitialized variable in qede_start_xmit() (Harish Patil) [1275807 1275811]
-- [netdrv] qede: prevent chip hang when increasing channels (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Apply tunnel configurations after PF start (Harish Patil) [1275807 1275811]
-- [netdrv] qede: add implementation for internal loopback test (Harish Patil) [1275807 1275811]
-- [netdrv] qede: add support for selftests (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add infrastructure for device self tests (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add PF min bandwidth configuration support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add PF max bandwidth configuration support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add vport WFQ configuration APIs (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add support for link pause configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Conditions for changing link (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for ethtool private flags (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: Align statistics names (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix single MTU sized packet from firmware GRO flow (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix setting Skb network header (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix various memory allocation error flows for fastpath (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add fastpath support for tunneling (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Enable GRE tunnel slowpath configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qed/qede: Add GENEVE tunnel slowpath configuration support (Harish Patil) [1275807 1275811]
-- [netdrv] qed/qede: Add VXLAN tunnel slowpath configuration support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add infrastructure support for tunneling (Harish Patil) [1275807 1275811]
-- [netdrv] qed* - bump driver versions to 8.7.1.20 (Harish Patil) [1275807 1275811]
-- [netdrv] qede: add Rx flow hash/indirection support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add Rx flow hash/indirection support (Harish Patil) [1275807 1275811]
-- [netdrv] qed*: remove version dependency (Harish Patil) [1275807 1275811]
-- [netdrv] qed: initialize return rc to avoid returning garbage (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Enlrage the drain timeout (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Notify of transciever changes (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Major changes to MB locking (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Prevent MF link notifications (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Fix net-next "make ARCH=x86_64" (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add slowpath/fastpath support and enable hardware GRO (Harish Patil) [1275807 1275811]
-- [netdrv] qed/qede: Add infrastructure support for hardware GRO (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Remove unused NVM vendor ID (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Fix error flow on slowpath start (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Move statistics to L2 code (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Support B0 instead of A0 (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Correct BAR sizes for older MFW (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Print additional HW attention info (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Print HW attention reasons (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add support for HW attentions (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Semantic refactoring of interrupt code (Harish Patil) [1275807 1275811]
-- [netdrv] qed, qede: rebrand module description (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Prevent probe on previous error (Harish Patil) [1275807 1275811]
-- [netdrv] qed: add MODULE_FIRMWARE() (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Don't report link change needlessly (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Linearize SKBs when needed (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Change pci DID for 10g device (Harish Patil) [1275807 1275811]
-- [netdrv] qed,qede: Bump driver versions to 8.7.0.0 (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Introduce DMA_REGPAIR_LE (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Change metadata needed for SPQ entries (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Handle possible race in SB config (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Turn most GFP_ATOMIC into GFP_KERNEL (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add vlan filtering offload support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Lay infrastructure for vlan filtering offload (Harish Patil) [1275807 1275811]
-- [netdrv] qed/qede: use 8.7.3.0 FW (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Correct slowpath interrupt scheme (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Fix BAR size split for some servers (Harish Patil) [1275807 1275811]
-- [netdrv] qed: fix handling of concurrent ramrods (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for {get, set}_pauseparam (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Fix corner case for chain in-between pages (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for nway_reset (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for set_phys_id (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add support for changing LED state (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for {get, set}_ringparam (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for {get, set}_channels (Harish Patil) [1275807 1275811]
-- [netdrv] qed: select ZLIB_INFLATE (Harish Patil) [1275807 1275811]
-- [netdrv] qlogic: qed: fix error codes in qed_resc_alloc() (Harish Patil) [1275807 1275811]
-- [netdrv] qlogic: qed: fix a test for MODE_MF_SI (Harish Patil) [1275807 1275811]
-- [netdrv] qlogic/qed: remove bogus NULL check (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add basic ethtool support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add statistics support (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add support for link (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add link support (Harish Patil) [1275807 1275811]
-- [netdrv] qede: classification configuration (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add basic network device support (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add slowpath L2 support (Harish Patil) [1275807 1275811]
-- [netdrv] qede: Add basic Network driver (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add basic L2 interface (Harish Patil) [1275807 1275811]
-- [netdrv] qed: Add module with basic common support (Harish Patil) [1275807 1275811]
-
-* Thu Jun 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-430.el7]
-- [char] tpm_crb: fix mapping of the buffers (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: drop struct resource res from struct crb_priv (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: Allow compile test of GPIO consumers if !GPIOLIB (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: fix build warning with tpm_tis_resume (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: tpm2_shutdown() must be called before tpm_chip_unregister() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb/tis: fix: use dev_name() for /proc/iomem (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_eventlog.c: fix binary_bios_measurements (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix: return rc when devm_add_action() fails (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix: set continueSession attribute for the unseal operation (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix the cleanup of struct tpm_chip (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix the rollback in tpm_chip_register() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: Use devm_ioremap_resource (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: Drop le32_to_cpu(ioread32(..)) (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Clean up the force=1 module parameter (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Use devm_ioremap_resource (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Do not fall back to a hardcoded address for TPM2 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Disable interrupt auto probing on a per-device basis (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_crb: Use the common ACPI definition of struct acpi_tpm2 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] acpica: Update TPM2 ACPI table (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] acpica: Update definitions for the TCPA and TPM2 ACPI tables (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] tpm: fix checks for policy digest existence in tpm2_seal_trusted() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: seal with a TPM2 authorization policy (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: select hash algorithm for TPM2 chips (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: fix: *do not* allow duplicate key options (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_ibmvtpm: properly handle interrupted packet receptions (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Tighten IRQ auto-probing (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Refactor the interrupt setup (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Get rid of the duplicate IRQ probing code (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: rework tpm_get_timeouts() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Ensure interrupts are disabled when the driver starts (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: Use devm_free_irq not free_irq (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: further simplify calculation of ordinal duration (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix compat 'ppi' link handling in tpm_chip_register() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix missing migratable flag in sealing functionality for TPM2 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: revert the list handling logic fixed in 398a1e7 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: Avoid reference to potentially freed memory (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: restore IRQ vector in IO memory after failed probing (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_tis: free irq after probing (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: remove unnecessary little endian conversion (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] vtpm: support little endian guests (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [powerpc] vtpm: get the buffer allocated for event log instead of the actual log (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [powerpc] vtpm: reformat event log to be byte-aligned (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] vtpm: fix searching for the right vTPM node in device tree (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: seal/unseal with TPM 2.0 chips (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] tpm: seal/unseal for TPM 2.0 (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [security] keys, trusted: move struct trusted_key_options to trusted-type.h (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: introduce tpm_buf (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [documentation] tpm: update PPI documentation to address the location change (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: move the PPI attributes to character device directory (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] sysfs: added __compat_only_sysfs_link_entry_to_kobj() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm, tpm_crb: fix unaligned read of the command buffer address (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: Fix initialization of the cdev (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm, tpm_crb: fix le64_to_cpu conversions in crb_acpi_add() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] vtpm: set virtual device before passing to ibmvtpm_reset_crq (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm_ibmvtpm: remove unneccessary message level (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm/st33zp24: Add proper wait for ordinal duration in case of irq mode (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm/tpm_infineon: Use struct dev_pm_ops for power management (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: Update KConfig text to include TPM2.0 FIFO chips (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [include] tpm/tpm_i2c_stm_st33: Split tpm_i2c_tpm_st33 in 2 layers (core + phy) (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm/tpm_i2c_stm_st33: Replace access to io_lpcpd from struct st33zp24_platform_data to tpm_stm_dev (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-- [char] tpm: fix: sanitized code paths in tpm_chip_register() (Jerry Snitselaar) [1269527 1273499 1275023 1275024 1275026 1278604 1300754 1304124 1324657]
-
-* Wed Jun 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-429.el7]
-- [md] raid5: delete unnecessary warnning (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid0: fix uninitialized variable bug (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix a trivial typo in comments (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid1: fix a dead loop when read from a WriteMostly disk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: Cleanup cpu hotplug notifier (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: include bio_end_io_list in nr_queued to prevent freeze_array hang (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid1: include bio_end_io_list in nr_queued to prevent freeze_array hang (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix typos for stipe (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] bitmap: remove redundant return in bitmap_checkpage (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid1: remove unnecessary BUG_ON (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: output stripe state for debug (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: preserve STRIPE_PREREAD_ACTIVE in break_stripe_batch_list (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] bitmap: remove redundant check (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Drop sending a change uevent when stopping (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: revert e9e4c377e2f563 to fix a livelock (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: check_reshape() shouldn't call mddev_suspend (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: Compare apples to apples (or sectors to sectors) (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] rename some functions (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid: only permit hot-add of compatible integrity profiles (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: handle journal hotadd in quiesce (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] add journal with array suspended (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] set MD_HAS_JOURNAL in correct places (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Remove 'ready' field from mddev (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] remove unnecesary md_new_event_inintr (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: allow r5l_io_unit allocations to fail (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: use a mempool for the metadata block (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: use a bio_set (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: add journal hot add/remove support (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] avoid warning for 32-bit sector_t (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: simplify r5l_move_io_unit_list (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] update comment for md_allow_write (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: remove redundant check in stripe_add_to_batch_list() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] remove check for MD_RECOVERY_NEEDED in action_store (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Fix remove_and_add_spares removes drive added as spare in slot_store (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix bug due to nested suspend (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] change journal disk role to disk 0 (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: fix data corruption and crash during resync (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] treewide: Fix typos in printk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] when RAID journal is missing/faulty, block RESTART_ARRAY_RW (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] set journal disk ->raid_disk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] kick out journal disk if it's not fresh (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: start raid5 readonly if journal is missing (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] add new bit to indicate raid array with journal (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: IO error handling (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: journal disk can't be removed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: add trim support for log (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix info output for journal disk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: small log->seq cleanup (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: new helper: r5_reserve_log_entry (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: inline r5l_alloc_io_unit into r5l_new_meta (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: take rdev->data_offset into account early on (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: refactor bio allocation (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: clean up r5l_get_meta (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: simplify state machine when caches flushes are not needed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: factor out a helper to run all stripes for an I/O unit (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: rename flushed_ios to finished_ios (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: free I/O units earlier (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: move reclaim stop to quiesce (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] show journal for journal disk in disk state sysfs (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] skip match_mddev_units check for special roles (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: don't delay stripe captured in log (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: check stripe finish out of order (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] skip resync for raid array with journal (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: optimize FLUSH IO with log enabled (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: move functionality out of __r5l_set_io_unit_state (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: fix a user-after-free bug (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: switching to state machine for log disk cache flush (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: enable log for raid array with cache disk (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: don't allow resize/reshape with cache(log) support (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: disable batch with log enabled (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5-cache: use crc32c checksum (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] revert "md: allow a partially recovered device to be hot-added to an array." (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: fix locking in handle_stripe_clean_event() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: log recovery (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: log reclaim support (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] rhel-only: EXPORT_SYMBOL(md_update_sb) (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: add basic stripe log (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: add a new state for stripe log handling (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: export some functions (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] override md superblock recovery_offset for journal device (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] add a new disk role to present write journal device (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] replace special disk roles with macros (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: fix the 'new' raid10 layout to work correctly (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] suspend i/o during runtime blk_integrity_unregister (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] remove_and_add_spares() to activate specific rdev (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] drop null test before destroy functions (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] clear CHANGE_PENDING in readonly array (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: don't index beyond end of array in need_this_block() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: update analysis state for failed stripe (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] wait for pending superblock updates before switching to read-only (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: ensure device failure recorded before write request returns (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: use bio_list for the list of bios to return (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] setup safemode_timer before it's being used (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: handle possible race as reshape completes (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] sync sync_completed has correct value as recovery finishes (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] be careful when testing resync_max against curr_resync_completed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] set MD_RECOVERY_RECOVER when starting a degraded array (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: remove incorrect "min_t()" when calculating writepos (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: strengthen check on reshape_position at run (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: switch to use conf->chunk_sectors in place of mddev->chunk_sectors where possible (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: always set conf->prev_chunk_sectors and ->prev_algo (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: fix a few typos in comments (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: consider updating reshape_position at start of reshape (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] close some races between setting and checking sync_action (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Keep /proc/mdstat reporting recovery until fully DONE (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] simplify get_bitmap_file now that "file" is zeroed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] use kzalloc() when bitmap is disabled (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: clear R5_NeedReplace when no longer needed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] flush ->event_work before stopping array (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: always set reshape_safe when initializing reshape_position (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] unlock mddev_lock on an error path (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] clear mddev->private when it has been freed (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] doc: fix typo in md.txt (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix a build warning (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: per hash value and exclusive wait_for_stripe (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid5: split wait_for_stripe and introduce wait_for_quiescent (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] convert to kstrto*() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] raid10: make sync_request_write() call bio_copy_data() (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] fix problems with freeing private data after ->run failure (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [md] Export and rename kick_rdev_from_array (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-- [kernel] wait: introduce wait_event_exclusive_cmd (Jes Sorensen) [1250578 1265947 1273343 1299140 1307091 1312828 1320563 1340839]
-
-* Wed Jun 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-428.el7]
-- [fs] xfs: add "fail at unmount" error handling configuration (Carlos Maiolino) [1267042]
-- [fs] xfs: add configuration handlers for specific errors (Carlos Maiolino) [1267042]
-- [fs] xfs: add configuration of error failure speed (Carlos Maiolino) [1267042]
-- [fs] xfs: introduce table-based init for error behaviors (Carlos Maiolino) [1267042]
-- [fs] xfs: add configurable error support to metadata buffers (Carlos Maiolino) [1267042]
-- [fs] xfs: introduce metadata IO error class (Carlos Maiolino) [1267042]
-- [fs] xfs: configurable error behavior via sysfs (Carlos Maiolino) [1267042]
-- [fs] cifs: fix out-of-bounds access in lease parsing (Sachin Prabhu) [1337587]
-- [fs] cifs: fix erroneous return value (Sachin Prabhu) [1337587]
-- [fs] cifs: fix potential overflow in cifs_compose_mount_options (Sachin Prabhu) [1337587]
-- [fs] cifs_dbg() outputs an uninitialized buffer in cifs_readdir() (Sachin Prabhu) [1337587]
-- [fs] cifs: fix race between call_async() and reconnect() (Sachin Prabhu) [1337587]
-- [fs] cifs: Make echo interval tunable (Sachin Prabhu) [1337587]
-- [fs] cifs: Check uniqueid for SMB2+ and return -ESTALE if necessary (Sachin Prabhu) [1337587]
-- [fs] Print IP address of unresponsive server (Sachin Prabhu) [1337587]
-- [fs] Allow copy offload (CopyChunk) across shares (Sachin Prabhu) [1337587]
-- [fs] Add resilienthandles mount parm (Sachin Prabhu) [1337587]
-- [fs] Send durable handle v2 contexts when use of persistent handles required (Sachin Prabhu) [1337587]
-- [fs] Display persistenthandles in /proc/mounts for SMB3 shares if enabled (Sachin Prabhu) [1337587]
-- [fs] Enable checking for continuous availability and persistent handle support (Sachin Prabhu) [1337587]
-- [fs] Add parsing for new mount option controlling persistent handles (Sachin Prabhu) [1337587]
-- [fs] Allow duplicate extents in SMB3 not just SMB3.1.1 (Sachin Prabhu) [1337587]
-- [fs] Update cifs version number (Sachin Prabhu) [1337587]
-- [fs] Do not fall back to SMBWriteX in set_file_size error cases (Sachin Prabhu) [1337587]
-- [fs] fs: Drop unlikely before IS_ERR(_OR_NULL) (Sachin Prabhu) [1337587]
-- [fs] Missing null tcon check (Sachin Prabhu) [1337587]
-- [fs] fix encryption error checks on mount (Sachin Prabhu) [1337587]
-- [fs] Fix sec=krb5 on smb3 mounts (Sachin Prabhu) [1337587]
-- [fs] cifs: use server timestamp for ntlmv2 authentication (Sachin Prabhu) [1337587]
-- [fs] disabling oplocks/leases via module parm enable_oplocks broken for SMB3 (Sachin Prabhu) [1337587]
-- [fs] mount option sec=none not displayed properly in /proc/mounts (Sachin Prabhu) [1337587]
-- [fs] cifs: Fix use-after-free on mid_q_entry (Sachin Prabhu) [1337587]
-- [fs] Update cifs version number (Sachin Prabhu) [1337587]
-- [fs] Add way to query server fs info for smb3 (Sachin Prabhu) [1337587]
-- [fs] cifs: Unset CIFS_MOUNT_POSIX_PATHS flag when following dfs mounts (Sachin Prabhu) [1337587]
-- [fs] Update negotiate protocol for SMB3.11 dialect (Sachin Prabhu) [1337587]
-- [fs] Add ioctl to set integrity (Sachin Prabhu) [1337587]
-- [fs] Add Get/Set Integrity Information structure definitions (Sachin Prabhu) [1337587]
-- [fs] Add reflink copy over SMB3.11 with new FSCTL_DUPLICATE_EXTENTS (Sachin Prabhu) [1337587]
-- [fs] Add SMB3.11 mount option synonym for new dialect (Sachin Prabhu) [1337587]
-- [fs] add struct FILE_STANDARD_INFO (Sachin Prabhu) [1337587]
-- [fs] Make dialect negotiation warning message easier to read (Sachin Prabhu) [1337587]
-- [fs] Add defines and structs for smb3.1 dialect (Sachin Prabhu) [1337587]
-- [fs] Allow parsing vers=3.11 on cifs mount (Sachin Prabhu) [1337587]
-- [fs] client MUST ignore EncryptionKeyLength if CAP_EXTENDED_SECURITY is set (Sachin Prabhu) [1337587]
-- [fs] cifs: Fix race condition on RFC1002_NEGATIVE_SESSION_RESPONSE (Sachin Prabhu) [1337587]
-- [fs] Fix to convert SURROGATE PAIR (Sachin Prabhu) [1337587]
-- [fs] cifs: potential missing check for posix_lock_file_wait (Sachin Prabhu) [1337587]
-- [fs] Fix to check Unique id and FileType when client refer file directly (Sachin Prabhu) [1337587]
-- [fs] cifs: remove an unneeded NULL check (Sachin Prabhu) [1337587]
-- [fs] fix null pointer check (Sachin Prabhu) [1337587]
-- [fs] Fix that several functions handle incorrect value of mapchars (Sachin Prabhu) [1337587]
-- [fs] cifs: Don't replace dentries for dfs mounts (Sachin Prabhu) [1337587]
-- [fs] vfs: normal filesystems and lustre d_inode() annotations - CIFS only (Sachin Prabhu) [1337587]
-- [fs] vfs: Add owner-filesystem positive/negative dentry checks (Sachin Prabhu) [1337587]
-- [fs] dlm: Save and restore socket callbacks properly (Robert S Peterson) [1267339]
-- [fs] dlm: Replace nodeid_to_addr with kernel_getpeername (Robert S Peterson) [1267339]
-- [fs] xfs: fix broken multi-fsb buffer logging (Brian Foster) [1334671]
-- [fs] propogate_mnt: Handle the first propogated copy being a slave (Miklos Szeredi) [1338808] {CVE-2016-4581}
-- [fs] pnode: treat zero mnt_group_id-s as unequal (Miklos Szeredi) [1331162]
-- [fs] svcrpc: autoload rdma module (Steve Dickson) [1337599]
-- [fs] nfsd: Drop BUG_ON and ignore SECLABEL on absent filesystem ("J. Bruce Fields") [1340690]
-- [fs] nfsd: fix nsfd startup race triggering BUG_ON ("J. Bruce Fields") [1340714]
-
-* Wed Jun 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-427.el7]
-- [fs] dax: fix O_DIRECT I/O to the last block of a blockdev (Eric Sandeen) [1274459]
-- [acpi] nfit: Clarify memory device state flags strings (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [acpi] nfit, nd_blk: BLK status register is only 32 bits (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [fs] xfs: call dax_fault on read page faults for DAX (Eric Sandeen) [1274459]
-- [nvdimm] libnvdimm: fix namespace seed creation (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [acpi] nfit: add support for NVDIMM "latch" flag (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [acpi] nfit: update block I/O path to use PMEM API (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [tools] testing/nvdimm: add mock acpi_nfit_flush_address entries to nfit_test (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [tools] testing/nvdimm: fix return code for unimplemented commands (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [maintainers] pmem: add maintainer for include/linux/pmem.h (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [fs] dax: bdev_direct_access() may sleep (Eric Sandeen) [1274459]
-- [fs] block: Add support for DAX reads/writes to block devices (Eric Sandeen) [1274459]
-- [fs] dax: Use copy_from_iter_nocache (Eric Sandeen) [1274459]
-- [net] iovec.c: add memcpy_fromiovecend_nocache (Eric Sandeen) [1274459]
-- [acpi] nfit: fix smatch "use after null check" report (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] Fix return value of nvdimm_bus_init() if class_create() fails (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm: smatch cleanups in __nd_ioctl (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] sparse: fix misplaced __pmem definition (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [x86] pmem api for ensuring durability of persistent memory updates (Eric Sandeen) [1028649 1269626 1271953 1274043 1274459]
-- [include] libnvdimm: Add sysfs numa_node to NVDIMM devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: Set numa_node to NVDIMM devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] acpi: Add acpi_map_pxm_to_online_node() (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [tools] libnvdimm, nfit: handle unarmed dimms, mark namespaces read-only (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] pmem: flag pmem block devices as non-rotational (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm: enable iostat (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] pmem: make_request cleanups (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, pmem: fix up max_hw_sectors (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, blk: add support for blk integrity (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, btt: add support for blk integrity (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [fs] block_dev.c: skip rw_page if bdev has integrity (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [maintainers] libnvdimm: Non-Volatile Devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [tools] testing/nvdimm: libnvdimm unit test infrastructure (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit, nd_blk: driver for BLK-mode access persistent memory (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] nd_btt: atomic sector updates (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: infrastructure for btt devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm: write blk label set (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm: write pmem label set (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: blk labels and namespace instantiation (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: pmem label sets and namespace instantiation (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: namespace indices: read and validate (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit: add interleave-set state-tracking infrastructure (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, pmem: add libnvdimm support to the pmem driver (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [nvdimm] libnvdimm, pmem: move pmem to drivers/nvdimm/ (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: support for legacy (non-aliasing) nvdimms (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit: regions (block-data-window, persistent memory, volatile memory) (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nvdimm: dimm driver and base libnvdimm device-driver infrastructure (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: control (ioctl) messages for nvdimm_bus and nvdimm devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit: dimm/memory-devices (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm: control character device and nvdimm_bus sysfs attributes (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] libnvdimm, nfit: initial libnvdimm infrastructure and NFIT support (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [fs] xfs: add initial DAX support (Eric Sandeen) [1274459]
-- [fs] xfs: add DAX IO path support (Eric Sandeen) [1274459]
-- [fs] xfs: add DAX truncate support (Eric Sandeen) [1274459]
-- [fs] xfs: add DAX block zeroing support (Eric Sandeen) [1274459]
-- [fs] xfs: add DAX file operations support (Eric Sandeen) [1274459]
-- [fs] xfs: simplify xfs_zero_remaining_bytes (Eric Sandeen) [1274459]
-- [include] dax: expose __dax_fault for filesystems with locking constraints (Eric Sandeen) [1274459]
-- [include] dax: don't abuse get_block mapping for endio callbacks (Eric Sandeen) [1274459]
-- [include] e820, efi: add ACPI 6.0 persistent memory types (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Enhance MTRR checks in kernel mapping helpers (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Clean up mtrr_type_lookup() (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Use symbolic define as a retval for disabled MTRRs (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Fix MTRR state checks in mtrr_type_lookup() (Eric Sandeen) [1274459]
-- [x86] mm/mtrr: Fix MTRR lookup to handle an inclusive entry (Eric Sandeen) [1274459]
-- [include] acpica: Fix for ill-formed GUID strings for NFIT tables (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] acpica: acpihelp: Update for new NFIT table GUIDs (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [include] acpica: acpi 6.0: Add support for NFIT table (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [x86] mm/mtrr: Remove incorrect address check in __mtrr_type_lookup() (Eric Sandeen) [1274459]
-- [x86] mm: Do not flush last cacheline twice in clflush_cache_range() (Eric Sandeen) [1274459]
-- [x86] Make page cache mode a real type (Eric Sandeen) [1274459]
-- [lib] x86, mm: support huge KVA mappings on x86 (Eric Sandeen) [1274459]
-- [x86] mm: support huge I/O mapping capability I/F (Eric Sandeen) [1274459]
-- [mm] change vunmap to tear down huge KVA mappings (Eric Sandeen) [1274459]
-- [lib] mm: change ioremap to set up huge I/O mappings (Eric Sandeen) [1274459]
-- [lib] ioremap: add huge I/O map capability interfaces (Eric Sandeen) [1274459]
-- [mm] change __get_vm_area_node() to use fls_long() (Eric Sandeen) [1274459]
-- [mm] fix pfn_mkwrite KABI (Eric Sandeen) [1274459]
-- [fs] dax: unify ext2/4_{dax,}_file_operations (Eric Sandeen) [1274459]
-- [include] dax: use pfn_mkwrite to update c/mtime + freeze protection (Eric Sandeen) [1274459]
-- [mm] new pfn_mkwrite same as page_mkwrite for VM_PFNMAP (Eric Sandeen) [1274459]
-- [mm] refactor do_wp_page handling of shared vma into a function (Eric Sandeen) [1274459]
-- [mm] refactor do_wp_page, extract the page copy flow (Eric Sandeen) [1274459]
-- [mm] refactor do_wp_page - rewrite the unlock flow (Eric Sandeen) [1274459]
-- [mm] refactor do_wp_page, extract the reuse case (Eric Sandeen) [1274459]
-- [block] drivers/block/pmem: Fix 32-bit build warning in pmem_alloc() (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [block] drivers/block/pmem: Add a driver for persistent memory (Eric Sandeen) [1028649 1269626 1271953 1274043]
-- [x86] mm: Add support for the non-standard protected e820 type (Eric Sandeen) [1274459]
-- [fs] dax: does not work correctly with virtual aliasing caches (Eric Sandeen) [1274459]
-- [block] brd: rename XIP to DAX (Eric Sandeen) [1274459]
-- [fs] ext4: add DAX functionality (Eric Sandeen) [1274459]
-- [fs] dax: add dax_zero_page_range (Eric Sandeen) [1274459]
-- [fs] ext2: get rid of most mentions of XIP in ext2 (Eric Sandeen) [1274459]
-- [fs] ext2: remove ext2_aops_xip (Eric Sandeen) [1274459]
-- [fs] vfs, ext2: remove CONFIG_EXT2_FS_XIP and rename CONFIG_FS_XIP to CONFIG_FS_DAX (Eric Sandeen) [1274459]
-- [fs] ext2: remove xip.c and xip.h (Eric Sandeen) [1274459]
-- [fs] ext2: remove ext2_use_xip (Eric Sandeen) [1274459]
-- [fs] ext2: remove ext2_xip_verify_sb() (Eric Sandeen) [1274459]
-- [mm] vfs: remove get_xip_mem (Eric Sandeen) [1274459]
-- [fs] dax: replace XIP documentation with DAX documentation (Eric Sandeen) [1274459]
-- [fs] dax, ext2: replace xip_truncate_page with dax_truncate_page (Eric Sandeen) [1274459]
-- [fs] dax, ext2: replace the XIP page fault handler with the DAX page fault handler (Eric Sandeen) [1274459]
-- [fs] dax, ext2: replace ext2_clear_xip_target with dax_clear_blocks (Eric Sandeen) [1274459]
-- [fs] dax, ext2: replace XIP read and write with DAX I/O (Eric Sandeen) [1274459]
-- [mm] vfs,ext2: introduce IS_DAX(inode) (Eric Sandeen) [1274459]
-- [mm] allow page fault handlers to perform the COW (Eric Sandeen) [1274459]
-- [mm] fix XIP fault vs truncate race (Eric Sandeen) [1274459]
-- [include] dax: drop size parameter to ->direct_access() (Eric Sandeen) [1274459]
-- [include] block: Change direct_access calling convention (Eric Sandeen) [1274459]
-- [block] brd: return -ENOSPC rather than -ENOMEM on page allocation failure (Eric Sandeen) [1274459]
-- [block] brd: add support for rw_page() (Eric Sandeen) [1274459]
-- [mm] swap: use bdev_read_page() / bdev_write_page() (Eric Sandeen) [1274459]
-- [fs] block_dev: add bdev_read_page() and bdev_write_page() (Eric Sandeen) [1274459]
-- [fs] mpage: factor page_endio() out of mpage_end_io() (Eric Sandeen) [1274459]
-- [fs] mpage: factor clean_buffers() out of __mpage_writepage() (Eric Sandeen) [1274459]
-- [fs] buffer: remove block_write_full_page_endio() (Eric Sandeen) [1274459]
-- [mm] consolidate code to setup pte (Eric Sandeen) [1274459]
-- [mm] consolidate code to call vm_ops->page_mkwrite() (Eric Sandeen) [1274459]
-- [mm] introduce do_shared_fault() and drop do_fault() (Eric Sandeen) [1274459]
-- [mm] introduce do_cow_fault() (Eric Sandeen) [1274459]
-- [mm] introduce do_read_fault() (Eric Sandeen) [1274459]
-- [mm] do_fault(): extract to call vm_ops->do_fault() to separate function (Eric Sandeen) [1274459]
-- [mm] rename __do_fault() -> do_fault() (Eric Sandeen) [1274459]
-- [fs] block: Convert various code to bio_for_each_segment() (Eric Sandeen) [1274459]
-
-* Tue Jun 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-426.el7]
-- [netdrv] hv_netvsc: set nvdev link after populating chn_table (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: synchronize netvsc_change_mtu()/netvsc_set_channels() with netvsc_remove() (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: get rid of struct net_device pointer in struct netvsc_device (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: untangle the pointer mess (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: use start_remove flag to protect netvsc_link_change() (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: move start_remove flag to net_device_context (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: Fix the list processing for network change event (Vitaly Kuznetsov) [1333284]
-- [netdrv] hv_netvsc: Implement support for VF drivers on Hyper-V (Vitaly Kuznetsov) [1333284]
-- [pci] hv: Add explicit barriers to config space access (Vitaly Kuznetsov) [1302147]
-- [pci] hv: Report resources release after stopping the bus (Vitaly Kuznetsov) [1302147]
-- [hv] Separate out frame buffer logic when picking MMIO range (Vitaly Kuznetsov) [1302147]
-- [hv] Record MMIO range in use by frame buffer (Vitaly Kuznetsov) [1302147]
-- [hv] Track allocations of children of hv_vmbus in private resource tree (Vitaly Kuznetsov) [1302147]
-- [hv] Reverse order of resources in hyperv_mmio (Vitaly Kuznetsov) [1302147]
-- [video] hv: Use new vmbus_mmio_free() from client drivers (Vitaly Kuznetsov) [1302147]
-- [include] hv: Make a function to free mmio regions through vmbus (Vitaly Kuznetsov) [1302147]
-- [hv] Lock access to hyperv_mmio resource tree (Vitaly Kuznetsov) [1302147]
-- [pci] hv: Add paravirtual PCI front-end for Microsoft Hyper-V VMs (Vitaly Kuznetsov) [1302147]
-- [x86] export __ioapic_set_affinity to modules (Vitaly Kuznetsov) [1302147]
-- [x86] export x86_msi to modules (Vitaly Kuznetsov) [1302147]
-- [hv] Allow for MMIO claims that span ACPI _CRS records (Vitaly Kuznetsov) [1302147]
-- [include] stddef.h: Move offsetofend() from vfio.h to a generic kernel header (Vitaly Kuznetsov) [1302147]
-- [x86] nmi: Fix use of unallocated cpumask_var_t (Jerry Snitselaar) [1069217]
-- [x86] nmi: Perform a safe NMI stack trace on all CPUs (Jerry Snitselaar) [1069217]
-- [kernel] printk: Add per_cpu printk func to allow printk to be diverted (Jerry Snitselaar) [1069217]
-- [lib] seq: Add minimal support for seq_buf (Jerry Snitselaar) [1069217]
-- [scsi] ipr: Fix regression when loading firmware (Gustavo Duarte) [1274357]
-- [scsi] ipr: Fix out-of-bounds null overwrite (Gustavo Duarte) [1274357]
-- [scsi] ipr: Driver version 2.6.3 (Gustavo Duarte) [1274357]
-- [scsi] ipr: Issue Configure Cache Parameters command (Gustavo Duarte) [1274357]
-- [scsi] ipr: Inquiry IOA page 0xC4 during initialization (Gustavo Duarte) [1274357]
-- [scsi] ipr: Don't set NO_ULEN_CHK bit when resource is a vset (Gustavo Duarte) [1274357]
-- [scsi] ipr: Add delay to ensure coherent dumps (Gustavo Duarte) [1274357]
-- [scsi] ipr: Enable SIS pipe commands for SIS-32 devices (Gustavo Duarte) [1274357]
-- [scsi] ipr: Inhibit underlength data check for AFDASD in raw mode (Gustavo Duarte) [1274357]
-- [nvme] Allocate queues only for online cpus (David Milburn) [1331884]
-- [s390] mm: four page table levels vs. fork (Hendrik Brueckner) [1308879] {CVE-2016-2143}
-- [s390] cpumf: add missing lpp magic initialization (Hendrik Brueckner) [1339534]
-- [s390] cpumf: Fix lpp detection (Hendrik Brueckner) [1339534]
-- [s390] cpumf: Improve guest detection heuristics (Hendrik Brueckner) [1339534]
-- [s390] cpumf: rework program parameter setting to detect guest samples (Hendrik Brueckner) [1339534]
-- [s390] pci: fix use after free in dma_init (Hendrik Brueckner) [1338925]
-- [s390] compat: correct sign-extension of the brk() compat system call (Hendrik Brueckner) [1197172]
-- [s390] fix normalization bug in exception table sorting (Hendrik Brueckner) [1298601]
-- [net] iucv: call skb_linearize() when needed (Hendrik Brueckner) [1335607]
-- [x86] topology: Use total_cpus not nr_cpu_ids for logical packages (Jiri Olsa) [1337866]
-- [x86] topology: Fix Intel HT disable (Jiri Olsa) [1337866]
-- [x86] topology: Fix AMD core count (Jiri Olsa) [1337866]
-- [x86] cpu/amd: Give access to the number of nodes in a physical package (Jiri Olsa) [1337866]
-- [x86] thinkpad_acpi: Convert to snd_card_new() with a device pointer (Jarod Wilson) [1341744]
-- [x86] microcode: Use request_firmware_direct() (Prarit Bhargava) [1340431]
-- [firmware] Introduce request_firmware_direct() (Prarit Bhargava) [1340431]
-- [firmware] Be a bit more verbose about direct firmware loading failure (Prarit Bhargava) [1340431]
-
-* Mon Jun 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-425.el7]
-- [netdrv] ixgbevf: update driver versions to indicate RHEL7.3 (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Remove unused parameter (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Change the relaxed order settings in VF driver for sparc (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Use mac_ops instead of trying to identify NIC type (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Support Windows hosts (Hyper-V) (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Add the device ID's presented while running on Hyper-V (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Move API negotiation function into mac_ops (Ken Cox) [1274175]
-- [netdrv] ixgbevf: make use of BIT() macro to avoid shift of signed values (Ken Cox) [1274175]
-- [netdrv] ixgbevf: add support for per-queue ethtool stats (Ken Cox) [1274175]
-- [netdrv] ixgbevf: refactor ethtool stats handling (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Add support for generic Tx checksums (Ken Cox) [1274175]
-- [netdrv] ixgbevf: use bit operations for setting and checking resets (Ken Cox) [1274175]
-- [netdrv] ixgbevf: fix error code path when setting MAC address (Ken Cox) [1274175]
-- [netdrv] ixgbevf: call ndo_stop() instead of dev_close() when running offline selftest (Ken Cox) [1274175]
-- [netdrv] ixgbevf: minor cleanups for ixgbevf_set_itr() (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Fix handling of NAPI budget when multiple queues are enabled per vector (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Handle extended IPv6 headers in Tx path (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Minor cleanups (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Use a private workqueue to avoid certain possible hangs (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Limit lowest interrupt rate for adaptive interrupt moderation to 12K (Ken Cox) [1274175]
-- [netdrv] ixgbevf: Enables TSO for stacked VLAN (Ken Cox) [1274175]
-- [netdrv] igbvf: use BIT() macro instead of shifts (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: remove unused variable and dead code (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: remove "link is Up" message when registering mcast address (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: Add support for generic Tx checksums (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: don't give up (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: use napi_complete_done() (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: get rid of unnecessary initializations in .get_drvinfo() (Corinna Vinschen) [1274173]
-- [netdrv] igbvf: Enable TSO for stacked VLAN (Corinna Vinschen) [1274173]
-- [netdrv] revert "igb: Fix a deadlock in igb_sriov_reinit" (Corinna Vinschen) [1274172]
-- [netdrv] igb: Garbled output for "ethtool -m" (Corinna Vinschen) [1274172]
-- [netdrv] igb: allow setting MAC address on i211 using a device tree blob (Corinna Vinschen) [1274172]
-- [netdrv] igb: Add support for bulk Tx cleanup & cleanup boolean logic (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix sparse warning about passing __beXX into leXX_to_cpup (Corinna Vinschen) [1274172]
-- [netdrv] igb: call ndo_stop() instead of dev_close() when running offline selftest (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix VLAN tag stripping on Intel i350 (Corinna Vinschen) [1274172]
-- [netdrv] igb: Add support for generic Tx checksums (Corinna Vinschen) [1274172]
-- [netdrv] igb: rename igb define to be more generic (Corinna Vinschen) [1274172]
-- [netdrv] igb: add conditions for I210 to generate periodic clock output (Corinna Vinschen) [1274172]
-- [netdrv] igb: enable WoL for OEM devices regardless of EEPROM setting (Corinna Vinschen) [1274172]
-- [netdrv] igb: constify e1000_phy_operations structure (Corinna Vinschen) [1274172]
-- [netdrv] igb: When GbE link up, wait for Remote receiver status condition (Corinna Vinschen) [1274172]
-- [netdrv] igb: Add workaround for VLAN tag stripping on 82576 (Corinna Vinschen) [1274172]
-- [netdrv] igb: Enable use of "bridge fdb add" to set unicast table entries (Corinna Vinschen) [1274172]
-- [netdrv] igb: Drop unnecessary checks in transmit path (Corinna Vinschen) [1274172]
-- [netdrv] igb: Add support for VLAN promiscuous with SR-IOV and NTUPLE (Corinna Vinschen) [1274172]
-- [netdrv] igb: Clean-up configuration of VF port VLANs (Corinna Vinschen) [1274172]
-- [netdrv] igb: Merge VLVF configuration into igb_vfta_set (Corinna Vinschen) [1274172]
-- [netdrv] igb: Always enable VLAN 0 even if 8021q is not loaded (Corinna Vinschen) [1274172]
-- [netdrv] igb: Do not factor VLANs into RLPML calculation (Corinna Vinschen) [1274172]
-- [netdrv] igb: Allow asymmetric configuration of MTU versus Rx frame size (Corinna Vinschen) [1274172]
-- [netdrv] igb: Refactor VFTA configuration (Corinna Vinschen) [1274172]
-- [netdrv] igb: clean up code for setting MAC address (Corinna Vinschen) [1274172]
-- [netdrv] igb: don't give up (Corinna Vinschen) [1274172]
-- [netdrv] igb: Unpair the queues when changing the number of queues (Corinna Vinschen) [1274172]
-- [netdrv] igb: Remove unnecessary flag setting in igb_set_flag_queue_pairs() (Corinna Vinschen) [1274172]
-- [netdrv] igb: Explicitly label self-test result indices (Corinna Vinschen) [1274172]
-- [netdrv] igb: Improve cable length function for I210, etc (Corinna Vinschen) [1274172]
-- [netdrv] igb: Don't add PHY address to PCDL address (Corinna Vinschen) [1274172]
-- [netdrv] igb: Remove GS40G specific defines/functions (Corinna Vinschen) [1274172]
-- [netdrv] igb: improve handling of disconnected adapters (Corinna Vinschen) [1274172]
-- [netdrv] igb: fix NULL derefs due to skipped SR-IOV enabling (Corinna Vinschen) [1274172]
-- [netdrv] igb: use the correct i210 register for EEMNGCTL (Corinna Vinschen) [1274172]
-- [netdrv] igb: don't unmap NULL hw_addr (Corinna Vinschen) [1274172]
-- [netdrv] igb: add 88E1543 initialization code (Corinna Vinschen) [1274172]
-- [netdrv] igb: use napi_complete_done() (Corinna Vinschen) [1274172]
-- [netdrv] igb: get rid of unnecessary initializations in .get_drvinfo() (Corinna Vinschen) [1274172]
-- [netdrv] igb: avoid using timespec (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix a memory leak in igb_probe (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix a deadlock in igb_sriov_reinit (Corinna Vinschen) [1274172]
-- [netdrv] igb: implement high frequency periodic output signals (Corinna Vinschen) [1274172]
-- [netdrv] igb: missing rtnl_unlock in igb_sriov_reinit() (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix oops caused by missing queue pairing (Corinna Vinschen) [1274172]
-- [netdrv] igb: bump version to igb-5.3.0 (Corinna Vinschen) [1274172]
-- [netdrv] igb: use ARRAY_SIZE to replace calculating sizeof(a)/sizeof(a[0]) (Corinna Vinschen) [1274172]
-- [netdrv] igb: report unsupported ethtool settings in set_coalesce (Corinna Vinschen) [1274172]
-- [netdrv] igb: Fix i354 88E1112 PHY on RCC boards using AutoMediaDetect (Corinna Vinschen) [1274172]
-- [netdrv] igb: Pull timestamp from fragment before adding it to skb (Corinna Vinschen) [1274172]
-- [netdrv] igb: only report generic filters in get_ts_info (Corinna Vinschen) [1274172]
-- [netdrv] igb: bump version of igb to 5.2.18 (Corinna Vinschen) [1274172]
-- [netdrv] igb: disable IPv6 extension header processing (Corinna Vinschen) [1274172]
-- [netdrv] igb: fix the start time for periodic output signals (Corinna Vinschen) [1274172]
-
-* Mon Jun 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-424.el7]
-- [netdrv] ibmvnic: Enable use of multiple tx/rx scrqs (Steve Best) [1332848]
-- [netdrv] ibmvnic: enable RX checksum offload (Steve Best) [1332848]
-- [netdrv] ibmvnic: map L2/L3/L4 header descriptors to firmware (Steve Best) [1332848]
-- [netdrv] ibmvnic: Fix ibmvnic_capability struct (Steve Best) [1332848]
-- [x86] kvm: simplify kvm_apic_map (Paul Lai) [1319021]
-- [x86] vmx: Add host irq information in trace event when updating IRTE for posted interrupts (Paul Lai) [1319021]
-- [x86] kvm: Add lowest-priority support for vt-d posted-interrupts (Paul Lai) [1319021]
-- [x86] kvm: Use vector-hashing to deliver lowest-priority interrupts (Paul Lai) [1319021]
-- [x86] kvm: Recover IRTE to remapped mode if the interrupt is not single-destination (Paul Lai) [1319021]
-- [x86] kvm: avoid logical_map when it is invalid (Paul Lai) [1319021]
-- [x86] kvm: fix mixed APIC mode broadcast (Paul Lai) [1319021]
-- [x86] kvm: use MDA for interrupt matching (Paul Lai) [1319021]
-- [x86] kvm: fix x2apic logical address matching (Paul Lai) [1319021]
-- [x86] kvm: replace 0 with APIC_DEST_PHYSICAL (Paul Lai) [1319021]
-- [x86] kvm: cleanup kvm_apic_match_*() (Paul Lai) [1319021]
-- [x86] kvm: return bool from kvm_apic_match*() (Paul Lai) [1319021]
-- [tty] don't leak cdev in tty_cdev_add() (Prarit Bhargava) [1173155]
-- [tty] Avoid usb reset crashes by making tty_io cdevs truly dynamic (Prarit Bhargava) [1173155]
-- [pci] Set MPS to match upstream bridge (Myron Stowe) [1256951]
-- [pci] Move MPS configuration check to pci_configure_device() (Myron Stowe) [1256951]
-- [x86] perf: uncore: Remove WARN_ON_ONCE in uncore_pci_probe (Jiri Olsa) [1337804]
-- [x86] perf/intel/uncore: Fix CHA registers configuration procedure for Knights Landing platform (Jiri Olsa) [1334752]
-- [x86] uv: Disable UV BAU by default (Frank Ramsay) [1329656]
-- [hwmon] coretemp: Replace cpu_sibling_mask() with topology_sibling_cpumask() (David Arcari) [1338826]
-- [kernel] sched/topology: Rename topology_thread_cpumask() to topology_sibling_cpumask() (David Arcari) [1338826]
-- [hwmon] coretemp: Allow format checking (David Arcari) [1338826]
-- [hwmon] coretemp: Convert to use devm_hwmon_device_register_with_groups (David Arcari) [1338826]
-- [hwmon] coretemp: Allocate platform data with devm_kzalloc (David Arcari) [1338826]
-- [hwmon] coretemp: Use sysfs_create_group to create sysfs attributes (David Arcari) [1338826]
-- [hwmon] coretemp: Do not return -EAGAIN for low temperatures (David Arcari) [1338826]
-- [hwmon] coretemp: Add PCI device ID for CE41x0 CPUs (David Arcari) [1338826]
-- [hwmon] coretemp: Use PCI host bridge ID to identify CPU if necessary (David Arcari) [1338826]
-- [hwmon] coretemp: Fix truncated name of alarm attributes (David Arcari) [1338826]
-- [hwmon] coretemp: Remove redundant platform_set_drvdata() (David Arcari) [1338826]
-- [scsi] Add QEMU CD-ROM to VPD Inquiry Blacklist (Ewan Milne) [1340360]
-- [documentation] ip-sysctl.txt: clarify secure_redirects (Eric Garver) [1300442]
-- [net] avoid reference counter overflows on fib_rules in multicast forwarding (Eric Garver) [1335918]
-- [net] team: don't call netdev_change_features under team->lock (Ivan Vecera) [1339570]
-- [net] Add compatible kAPI for skb_get_rxhash (William Townsend) [1329650]
-- [net] multicast: Extend ip address command to enable multicast group join/leave on (Eric Garver) [1267398]
-- [net] ipv6: support IFA_F_MANAGETEMPADDR for address deletion too (Jakub Sitnicki) [1263384]
-- [net] ipv6: don't disable interface if last ipv6 address is removed (Jakub Sitnicki) [1263384]
-- [net] netfilter: nfnetlink_queue: Unregister pernet subsys in case of init failure (Paolo Abeni) [1337024]
-- [net] netfilter: nfnetlink_{log, queue}: Register pernet in first place (Paolo Abeni) [1337024]
-- [net] team: remove duplicate set of flag IFF_MULTICAST (Xin Long) [1302771]
-- [net] team: Replace rcu_read_lock with a mutex in team_vlan_rx_kill_vid (Xin Long) [1302771]
-- [net] team: Advertise tunneling offload features (Xin Long) [1302771]
-- [net] team: rtnl_lock for options set (Xin Long) [1302771]
-- [net] team: Don't segment multiple tagged packets on team device (Xin Long) [1302771]
-- [net] team: Remove dead code (Xin Long) [1302771]
-- [net] team: Simplify return path of team_newlink (Xin Long) [1302771]
-- [net] team: lb: use sizeof(*fprog) in __fprog_create (Xin Long) [1302771]
-- [net] team: fix vlan_features computing (Xin Long) [1302771]
-- [net] team: block mtu change before it happens via NETDEV_PRECHANGEMTU (Xin Long) [1302771]
-- [net] team: inherit addr_assign_type along with dev_addr (Xin Long) [1302771]
-- [net] team: cleanup netpoll clode (Xin Long) [1302771]
-- [net] make all team port device link events urgent (Xin Long) [1302771]
-
-* Fri Jun 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-423.el7]
-- [infiniband] security: Restrict use of the write() interface (Don Dutile) [1316685] {CVE-2016-4565}
-- [mm] add support for __GFP_ZERO flag to dma_pool_alloc() (Torez Smith) [1337075]
-- [hv] balloon: reset host_specified_ha_region (Vitaly Kuznetsov) [1325967]
-- [hv] balloon: don't crash when memory is added in non-sorted order (Vitaly Kuznetsov) [1325967]
-- [hv] hv_balloon: match var type to return type of wait_for_completion (Vitaly Kuznetsov) [1325967]
-- [hv] balloon: check if ha_region_mutex was acquired in MEM_CANCEL_ONLINE case (Vitaly Kuznetsov) [1325967]
-- [pci] Add DMA alias quirk for mic_x200_dma (Jerry Snitselaar) [1299853]
-- [pci] Add support for multiple DMA aliases (Jerry Snitselaar) [1299853]
-- [pci] Move informational printk to pci_add_dma_alias() (Jerry Snitselaar) [1299853]
-- [pci] Add pci_add_dma_alias() to abstract implementation (Jerry Snitselaar) [1299853]
-- [drivers] avoid format strings in names passed to alloc_workqueue() ("Herton R. Krzesinski") [1336867]
-- [kernel] rcu: Improve diagnostics for spurious RCU CPU stall warnings ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Don't use NMIs to dump other CPUs' stacks ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Protect uses of jiffies_stall field with ACCESS_ONCE() ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Print negatives for stall-warning counter wraparound ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Convert rcutree.c printk calls ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Kick CPU halfway to RCU CPU stall warning ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Reject memory-order-induced stall-warning false positives ("Herton R. Krzesinski") [1320261]
-- [kernel] rcu: Drive quiescent-state-forcing delay from HZ ("Herton R. Krzesinski") [1320261]
-- [mm] memcg: reparent charges of children before processing parent ("Herton R. Krzesinski") [1336863]
-- [include] jiffies: Avoid undefined behavior from signed overflow ("Herton R. Krzesinski") [1336863]
-- [mm] compaction: break out of loop on !PageBuddy in isolate_freepages_block ("Herton R. Krzesinski") [1336863]
-- [ipc] Fix 2 bugs in msgrcv() MSG_COPY implementation ("Herton R. Krzesinski") [1336863]
-- [kernel] tracing: Do not add event files for modules that fail tracepoints ("Herton R. Krzesinski") [1336863]
-- [kernel] cpuset: fix a race condition in __cpuset_node_allowed_softwall() ("Herton R. Krzesinski") [1336863]
-- [kernel] genirq: Remove racy waitqueue_active check ("Herton R. Krzesinski") [1336863]
-- [kernel] workqueue: ensure @task is valid across kthread_stop() ("Herton R. Krzesinski") [1336863]
-- [mm] memcg: fix endless loop caused by mem_cgroup_iter ("Herton R. Krzesinski") [1297381 1336863]
-- [include] compiler/gcc4: Make quirk for asm_volatile_goto() unconditional ("Herton R. Krzesinski") [1336863]
-- [scripts] modpost: fixed USB alias generation for ranges including 0x9 and 0xA ("Herton R. Krzesinski") [1336863]
-- [kernel] timekeeping: Fix missing timekeeping_update in suspend path ("Herton R. Krzesinski") [1336863]
-- [kernel] timekeeping: Fix CLOCK_TAI timer/nanosleep delays ("Herton R. Krzesinski") [1336863]
-- [kernel] ftrace: Have function graph only trace based on global_ops filters ("Herton R. Krzesinski") [1336863]
-- [kernel] ftrace: Fix synchronization location disabling and freeing ftrace_ops ("Herton R. Krzesinski") [1336863]
-- [kernel] ftrace: Synchronize setting function_trace_op with ftrace_trace_function ("Herton R. Krzesinski") [1336863]
-- [mm] slub: Fix calculation of cpu slabs ("Herton R. Krzesinski") [1336863]
-- [kernel] tracing: Have trace buffer point back to trace_array ("Herton R. Krzesinski") [1336863]
-- [mm] mempolicy.c: fix mempolicy printing in numa_maps ("Herton R. Krzesinski") [1336863]
-- [kernel] sched/fair: Fix unlocked reads of some cfs_b->quota/period ("Herton R. Krzesinski") [1336863]
-- [kernel] sched/fair: Fix tg_set_cfs_bandwidth() deadlock on rq->lock ("Herton R. Krzesinski") [1336863]
-- [kernel] sched: Guarantee new group-entities always have weight ("Herton R. Krzesinski") [1336863]
-- [kernel] sched: Fix hrtimer_cancel()/rq->lock deadlock ("Herton R. Krzesinski") [1336863]
-- [kernel] sched: Fix cfs_bandwidth misuse of hrtimer_expires_remaining ("Herton R. Krzesinski") [1336863]
-- [kernel] sched: Fix race on toggling cfs_bandwidth_used ("Herton R. Krzesinski") [1336863]
-
-* Thu Jun 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-422.el7]
-- [net] bluetooth: KABI cleanups (Don Zickus) [1296707]
-- [include] sched/wait: Introduce wait_on_bit_timeout() (Don Zickus) [1296707]
-- [include] netlink: add nla_get for le32 and le64 (Don Zickus) [1296707]
-- [include] 6lowpan: nuke net_ieee802154_lowpan() accessor when 6lowpan is disabled (Don Zickus) [1296707]
-- [include] 6lowpan: add helper to get 6lowpan namespace (Don Zickus) [1296707]
-- [include] if_arp: add ARPHRD_6LOWPAN type (Don Zickus) [1296707]
-- [include] net: ns: add ieee802154_6lowpan namespace (Don Zickus) [1296707]
-- [include] ipv6: add ipv6_addr_prefix_copy (Don Zickus) [1296707]
-- [include] netdevice: add ieee802154_ptr to net_device (Don Zickus) [1296707]
-- [net] 802154 and 6lowpan: Rebase to v4.5 (Don Zickus) [1296707]
-- [bluetooth] intel: Use request_firmware instead (Don Zickus) [1296707]
-- [include] of: restructure for_each macros to fix compile warnings (Don Zickus) [1296707]
-- [include] of: Add empty for_each_available_child_of_node() macro definition (Don Zickus) [1296707]
-- [include] of: make for_each_child_of_node() reference its args when CONFIG_OF=n (Don Zickus) [1296707]
-- [include] of: introduce of_get_available_child_count (Don Zickus) [1296707]
-- [kernel] sched/wait: Fix a kthread race with wait_woken() (Don Zickus) [1296707]
-- [kernel] sched/wait: Provide infrastructure to deal with nested blocking (Don Zickus) [1296707]
-- [include] device coredump: add new device coredump class (Don Zickus) [1296707]
-- [net] bluetooth: Rebase to v4.5 (Don Zickus) [1296707]
-- [drm] revert "drm/i915: start adding dp mst audio" (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087]
-- [drm] dp_mst: Restore primary hub guid on resume (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1336546]
-- [drm] dp_mst: Validate port in drm_dp_payload_send_msg() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087 1331031]
-- [drm] dp_mst: Get validated port ref in drm_dp_update_payload_part1() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087]
-- [drm] i915: Call intel_dp_mst_resume() before resuming displays (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087]
-- [drm] i915: Get rid of intel_dp_dpcd_read_wake() (Rob Clark) [1072036 1115530 1202702 1211398 1235963 1272159]
-- [drm] dp_helper: Perform throw-away read before actual read in drm_dp_dpcd_read() (Rob Clark) [1072036 1115530 1202702 1211398 1235963 1272159]
-- [drm] dp_helper: Retry aux transactions on all errors (Rob Clark) [1072036 1115530 1202702 1211398 1235963 1272159]
-- [drm] dp_helper: Always wait before retrying native aux transactions (Rob Clark) [1072036 1115530 1202702 1211398 1235963 1272159]
-- [drm] dp: move hw_mutex up the call stack (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1274157]
-- [drm] i915: Fix race condition in intel_dp_destroy_mst_connector() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1329087]
-- [drm] upstream sync to v4.5 (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] tracing: Add trace_<tracepoint>_enabled() function (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] compat: add in_compat_syscall to ask whether we're in a compat syscall (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [mm] Export nr_swap_pages (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [lib] string: introduce match_string() helper (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] async: export current_is_async() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [pci] Decouple quirks.c from i915_reg.h (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [mm] introduce mapping_gfp_constraint() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] bitops.h: add sign_extend64() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [vga] vga_switcheroo: Constify vga_switcheroo_handler (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] arch: introduce memremap() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] mm: enhance region_is_ram() to region_intersects() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [x86] mm: Remove region_is_ram() call from ioremap (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [x86] mm: Move warning from __ioremap_check_ram() to the call site (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] mm: Fix bugs in region_is_ram() (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [kernel] locking: Add WARN_ON_ONCE lock assertion (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-- [pwm] Add sysfs interface (Rob Clark) [1072036 1115530 1202702 1211398 1272159 1310228 1310229 1310230 1310231]
-
-* Wed Jun 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-421.el7]
-- [netdrv] ixgbe: update driver versions to indicate RHEL7.3 (Ken Cox) [1274174]
-- [netdrv] ixgbe: use correct mask when enabling sriov (Ken Cox) [1274174]
-- [netdrv] ixgbe: replace dev->trans_start accesses with dev_trans_start (Ken Cox) [1274174]
-- [netdrv] ixgbe: Disable DCB and FCoE for X550EM_x and x550em_a (Ken Cox) [1274174]
-- [netdrv] ixgbe: Revise populating few registers and macro definitions (Ken Cox) [1274174]
-- [netdrv] ixgbe: Remove duplicate and unused device ID definitions (Ken Cox) [1274174]
-- [netdrv] ixgbe: Return 64 bit stats values (Ken Cox) [1274174]
-- [netdrv] ixgbe: check EEPROM for WOL support for X540 and above (Ken Cox) [1274174]
-- [netdrv] ixgbe: add WoL support for some 82599 subdevice IDs (Ken Cox) [1274174]
-- [netdrv] ixgbe: use msleep for long delays (Ken Cox) [1274174]
-- [netdrv] ixgbe: resolve shift of negative value warning (Ken Cox) [1274174]
-- [netdrv] ixgbe: use BIT() macro (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add work around for empty SFP+ cage crosstalk (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use correct FC setup function for x550em_a (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add register wait for slow links (Ken Cox) [1274174]
-- [netdrv] ixgbe: make 'action' field in struct ixgbe_fdir_filter a u64 value (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix default mac->ops.setup_link for X550EM (Ken Cox) [1274174]
-- [netdrv] ixgbe: set VLAN spoof checking unconditionally (Ken Cox) [1274174]
-- [netdrv] ixgbe: consolidate the configuration of spoof checking (Ken Cox) [1274174]
-- [netdrv] ixgbe: protect vxlan_get_rx_port in ixgbe_service_task with rtnl_lock (Ken Cox) [1274174]
-- [netdrv] ixgbe: Bump version number (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add KR backplane support for x550em_a (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for SGMII backplane interface (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for SFPs with retimer (Ken Cox) [1274174]
-- [netdrv] ixgbe: Introduce function to control MDIO speed (Ken Cox) [1274174]
-- [netdrv] ixgbe: Read and parse NW_MNG_IF_SEL register (Ken Cox) [1274174]
-- [netdrv] ixgbe: Read and set instance id (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use new methods for PHY access (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for x550em_a 10G MAC type (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use method pointer to access IOSF devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add definitions for x550em_a 10G MAC (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for single-port X550 device (Ken Cox) [1274174]
-- [netdrv] ixgbe: Take manageability semaphore for firmware commands (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clean up interface for firmware commands (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct length check for round up (Ken Cox) [1274174]
-- [netdrv] ixgbe: Change the lan_id and func fields to a u8 to avoid casts (Ken Cox) [1274174]
-- [netdrv] ixgbe: Delete some unused register definitions (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for toggling VLAN filtering flag via ethtool (Ken Cox) [1274174]
-- [netdrv] ixgbe: Place SWFW semaphore in known valid state at probe (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix flow control for Xeon D KR backplane (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for generic Tx checksums (Ken Cox) [1274174]
-- [netdrv] ixgbe: Look up MAC address in Open Firmware or IDPROM (Ken Cox) [1274174]
-- [netdrv] ixgbe: Make all unchanging ops structures const (Ken Cox) [1274174]
-- [netdrv] ixgbe: Avoid adding VLAN 0 twice to VLVF and VFTA (Ken Cox) [1274174]
-- [netdrv] ixgbe: Do not allow PF to add VLVF entry unless it actually needs it (Ken Cox) [1274174]
-- [netdrv] ixgbe: Extend trust to allow guest to set unicast address (Ken Cox) [1274174]
-- [netdrv] ixgbe: slight optimization of addr compare (Ken Cox) [1274174]
-- [netdrv] ixgbe: make __ixgbe_setup_tc static (Ken Cox) [1274174]
-- [netdrv] ixgbe: call ndo_stop() instead of dev_close() when running offline selftest (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use udelay to avoid sleeping while atomic (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix ATR so that it correctly handles IPv6 extension headers (Ken Cox) [1274174]
-- [netdrv] ixgbe: Store VXLAN port number in network order (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix for RAR0 not being set to default MAC addr (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix dates on header of ixgbe_model.h (Ken Cox) [1274174]
-- [netdrv] ixgbe: use u32 instead of __u32 in model header (Ken Cox) [1274174]
-- [netdrv] ixgbe: add minimal parser details for ixgbe (Ken Cox) [1274174]
-- [netdrv] ixgbe: Make ATR recognize IPv6 extended headers (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix MDD events generated when FCoE+SRIOV are enabled (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix to get FDMI HBA attributes information with X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct handling of any outer UDP checksum setting (Ken Cox) [1274174]
-- [netdrv] ixgbe: do not call check_link for ethtool in ixgbe_get_settings() (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix broken PFC with X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: use correct FCoE DDP max check (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fill at least min credits to a TC credit refills (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix bugs in ixgbe_clear_vf_vlans() (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct X550EM_x revision check (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix RSS limit for X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clean up redundancy in hw_enc_features (Ken Cox) [1274174]
-- [netdrv] ixgbe: report correct media type for KR, KX and KX4 interfaces (Ken Cox) [1274174]
-- [netdrv] ixgbe: add support for QSFP PHY types in ixgbe_get_settings() (Ken Cox) [1274174]
-- [netdrv] ixgbe: do not report 2.5 Gbps as supported (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clean stale VLANs when changing port VLAN or resetting (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clear stale pool mappings (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix VLAN promisc in relation to SR-IOV (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for VLAN promiscuous with SR-IOV (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix inconsistent clearing of the multicast table (Ken Cox) [1274174]
-- [netdrv] ixgbe: Reorder search to work from the top down instead of bottom up (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for adding/removing VLAN on PF bypassing the VLVF (Ken Cox) [1274174]
-- [netdrv] ixgbe: Simplify configuration of setting VLVF and VLVFB (Ken Cox) [1274174]
-- [netdrv] ixgbe: Reduce VT code indent in set_vfta by introducing jump label (Ken Cox) [1274174]
-- [netdrv] ixgbe: Simplify definitions for regidx and bit in set_vfta (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix SR-IOV VLAN pool configuration (Ken Cox) [1274174]
-- [netdrv] ixgbe: Return error on failure to allocate mac_table (Ken Cox) [1274174]
-- [netdrv] ixgbe: Reset interface after enabling SR-IOV (Ken Cox) [1274174]
-- [netdrv] ixgbe: Always turn PHY power on when requested (Ken Cox) [1274174]
-- [netdrv] ixgbe: Handle extended IPv6 headers in Tx path (Ken Cox) [1274174]
-- [netdrv] ixgbe: Save VF info and take references (Ken Cox) [1274174]
-- [netdrv] ixgbe: Wait for master disable to be set (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct spec violations by waiting after reset (Ken Cox) [1274174]
-- [netdrv] ixgbe: Update PTP to support X550EM_x devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: convert to the 64 bit get/set time methods (Ken Cox) [1274174]
-- [netdrv] ixgbe: Allow FDB entries access to more RAR filters (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use __dev_uc_sync and __dev_uc_unsync for unicast addresses (Ken Cox) [1274174]
-- [netdrv] ixgbe: Refactor MAC address configuration code (Ken Cox) [1274174]
-- [netdrv] ixgbe: Use private workqueue to avoid certain possible hangs (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for newer thermal alarm (Ken Cox) [1274174]
-- [netdrv] ixgbe: Prevent KR PHY reset in ixgbe_init_phy_ops_x550em (Ken Cox) [1274174]
-- [netdrv] ixgbe: Remove CS4227 diagnostic code (Ken Cox) [1274174]
-- [netdrv] ixgbe/ixgbevf: use napi_schedule_irqoff() (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add KR mode support for CS4227 chip (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix handling of NAPI budget when multiple queues are enabled per vector (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix multiple kernel-doc errors (Ken Cox) [1274174]
-- [netdrv] ixgbe: Delete redundant include file (Ken Cox) [1274174]
-- [netdrv] ixgbe: drop null test before destroy functions (Ken Cox) [1274174]
-- [netdrv] ixgbe, ixgbevf: Add new mbox API xcast mode (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add new ndo to trust VF (Ken Cox) [1274174]
-- [netdrv] ixgbe: use napi_complete_done() (Ken Cox) [1274174]
-- [netdrv] ixgbe: get rid of unnecessary initializations in .get_drvinfo() (Ken Cox) [1274174]
-- [netdrv] ixgbe: Check for setup_internal_link method (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix CS4227-related semaphore error on reset failure (Ken Cox) [1274174]
-- [netdrv] ixgbe: disable LRO by default (Ken Cox) [1274174]
-- [netdrv] ixgbe: add flow control ethertype to the anti-spoofing filter (Ken Cox) [1274174]
-- [netdrv] ixgbe: Advance version to 4.2.1 (Ken Cox) [1274174]
-- [netdrv] ixgbe: X540 thermal warning interrupt not a GPI (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix FCRTH value in VM-to-VM loopback mode (Ken Cox) [1274174]
-- [netdrv] ixgbe: Only clear adapter_stopped if ixgbe_setup_fc succeeded (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct several flaws with with DCA setup (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add new X550EM SFP+ device ID (Ken Cox) [1274174]
-- [netdrv] ixgbe: Update ixgbe_disable_pcie_master flow for X550* (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add small packet padding support for X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct setting of RDRXCTL register for X550* devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Correct error path in semaphore handling (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add I2C bus mux support (Ken Cox) [1274174]
-- [netdrv] ixgbe: Limit SFP polling rate (Ken Cox) [1274174]
-- [netdrv] ixgbe: Allow SFP+ on more than 82598 and 82599 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add logic to reset CS4227 when needed (Ken Cox) [1274174]
-- [netdrv] ixgbe: Fix 1G and 10G link stability for X550EM_x SFP+ (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add X550EM_x dual-speed SFP+ support (Ken Cox) [1274174]
-- [netdrv] ixgbe: Allow reduced delays during SFP detection (Ken Cox) [1274174]
-- [netdrv] ixgbe: Clear I2C destination location (Ken Cox) [1274174]
-- [netdrv] ixgbe: Enable bit-banging mode on X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Set lan_id before first I2C eeprom access (Ken Cox) [1274174]
-- [netdrv] ixgbe: Provide unlocked I2C methods (Ken Cox) [1274174]
-- [netdrv] ixgbe: Provide I2C combined on X550EM (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add X550EM support for SFP insertion interrupt (Ken Cox) [1274174]
-- [netdrv] ixgbe: Accept SFP not present errors on all devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add fdir support for SCTP on X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add SFP+ detection for X550 hardware (Ken Cox) [1274174]
-- [netdrv] ixgbe: Limit lowest interrupt rate for adaptive interrupt moderation to 12K (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix issue with SFP events with new X550 devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Resolve "initialized field overwritten" warnings (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for reporting 2.5G link speed (Ken Cox) [1274174]
-- [netdrv] ixgbe: fix bounds checking in ixgbe_setup_tc for 82598 (Ken Cox) [1274174]
-- [netdrv] ixgbe: support for ethtool set_rxfh (Ken Cox) [1274174]
-- [netdrv] ixgbe: Avoid needless PHY access on copper phys (Ken Cox) [1274174]
-- [netdrv] ixgbe: cleanup to use cached mask value (Ken Cox) [1274174]
-- [netdrv] ixgbe: Remove second instance of lan_id variable (Ken Cox) [1274174]
-- [netdrv] ixgbe: Remove unused PCI bus types (Ken Cox) [1274174]
-- [netdrv] ixgbe: add new bus type for intergrated I/O interface (IOSF) (Ken Cox) [1274174]
-- [netdrv] ixgbe: add get_bus_info method for X550 (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for entering low power link up state (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for VXLAN RX offloads (Ken Cox) [1274174]
-- [netdrv] ixgbe: Add support for UDP-encapsulated tx checksum offload (Ken Cox) [1274174]
-- [netdrv] ixgbe: add VXLAN offload support for X550 devices (Ken Cox) [1274174]
-- [netdrv] ixgbe: Check whether FDIRCMD writes actually complete (Ken Cox) [1274174]
-- [netdrv] ixgbe: Assign set_phy_power dynamically where needed (Ken Cox) [1274174]
-- [netdrv] ixgbe: add new function to check for management presence (Ken Cox) [1274174]
-- [netdrv] ixgbe: TRIVIAL fix up double 'the' and comment style (Ken Cox) [1274174]
-- [netdrv] ixgbe: Simplify port-specific macros (Ken Cox) [1274174]
-- [netdrv] ixgbe: Convert to use devm_hwmon_device_register_with_groups (Ken Cox) [1274174]
-- [netdrv] ixgbe: enable l2 forwarding acceleration for macvlans (Ken Cox) [1274174]
-
-* Wed Jun 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-420.el7]
-- [netdrv] bnxt_en: Use dma_rmb() instead of rmb() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add BCM57314 device ID (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Simplify and improve unsupported SFP+ module reporting (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix length value in dmesg log firmware error message (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve the delay logic for firmware response (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Reduce maximum ring pages if page size is 64K (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Report PCIe link speed and width during driver load (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add Support for ETHTOOL_GMODULEINFO and ETHTOOL_GMODULEEEPRO (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix invalid max channel parameter in ethtool -l (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add workaround to detect bad opaque in rx completion (part 2) (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add workaround to detect bad opaque in rx completion (part 1) (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Setup multicast properly after resetting device (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Need memory barrier when processing the completion ring (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Divide a page into 32K buffers for the aggregation ring if necessary (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Limit RX BD pages to be no bigger than 32K (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Don't fallback to INTA on VF (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add async event handling for speed config changes (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Call firmware to approve VF MAC address change (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Shutdown link when device is closed (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Disallow forced speed for 10GBaseT devices (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve ethtool .get_settings() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Check for valid forced speed during ethtool -s (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add unsupported SFP+ module warnings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Set async event bits when registering with the firmware (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add get_eee() and set_eee() ethtool support (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add EEE setup code (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add basic EEE support (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve flow control autoneg with Firmware 1.2.1 interface (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Update to Firmware 1.2.2 spec (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix ethtool -a reporting (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix typo in bnxt_hwrm_set_pause_common() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Implement proper firmware message padding (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Initialize CP doorbell value before ring allocation (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Enable AER support (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Include hardware port statistics in ethtool -S (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Include some hardware port statistics in ndo_get_stats64() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add port statistics support (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Extend autoneg to all speeds (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Use common function to get ethtool supported flags (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add reporting of link partner advertisement (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Refactor bnxt_fw_to_ethtool_advertised_spds() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add hwrm_send_message_silent() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Refactor _hwrm_send_message() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add installed-package firmware version reporting via Ethtool GDRVINFO (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix dmesg log firmware error messages (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Use firmware provided message timeout value (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add coalescing support for tx rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Refactor bnxt_hwrm_set_coal() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Store irq coalescing timer values in micro seconds (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Send PF driver unload notification to all VFs (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve bnxt_vf_update_mac() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix zero padding of tx push data (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Failure to update PHY is not fatal condition (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Remove unnecessary call to update PHY settings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Poll link at the end of __bnxt_open_nic() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Reduce default ring sizes (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix implementation of tx push operation (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Remove 20G support and advertise only 40GbaseCR4 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Cleanup and Fix flow control setup logic (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix ethtool autoneg logic (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix crash in bnxt_free_tx_skbs() during tx timeout (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Exclude rx_drop_pkts hw counter from the stack's rx_dropped counter (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Ring free response from close path should use completion ring (John Linville) [1184635 1312277]
-- [netdrv] bnxt: always return values from _bnxt_get_max_rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Reset embedded processor after applying firmware upgrade (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Zero pad firmware messages to 128 bytes (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Modify ethtool -l|-L to support combined or rx/tx rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Modify init sequence to support shared or non shared rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Modify bnxt_get_max_rings() to support shared or non shared rings (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Re-structure ring indexing and mapping (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Check for NULL rx or tx ring (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Separate bnxt_{rx|tx}_ring_info structs from bnxt_napi struct (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Refactor bnxt_dbg_dump_states() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add BCM57301 & BCM57402 devices (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Update to Firmware interface spec 1.0.0 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Keep track of the ring group resource (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Improve VF resource accounting (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Cleanup bnxt_hwrm_func_cfg() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Check hardware resources before enabling NTUPLE (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Don't treat single segment rx frames as GRO frames (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Allocate rx_cpu_rmap only if Accelerated RFS is enabled (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Increment checksum error counter only if NETIF_F_RXCSUM is set (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Add support for upgrading APE/NC-SI firmware via Ethtool FLASHDEV (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Optimize ring alloc and ring free functions (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: support hwrm_func_drv_unrgtr command (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Implement missing tx timeout reset logic (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Don't cancel sp_task from bnxt_close_nic() (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Change bp->state to bitmap (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix bitmap declaration to work on 32-bit arches (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Setup uc_list mac filters after resetting the chip (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: enforce proper storing of MAC address (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fixed incorrect implementation of ndo_set_mac_address (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: More robust SRIOV cleanup sequence (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix comparison of u16 sw_id against negative value (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: map CAG_REG_LEGACY_INT_STATUS_MASK to GRC window #4 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Determine tcp/ipv6 RSS hash type correctly (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Change sp events definitions to represent bit position (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix compile warnings when CONFIG_INET is not set (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Fix compile errors when CONFIG_BNXT_SRIOV is not set (John Linville) [1184635 1312277]
-- [netdrv] bnxt: rewrite flow dissector bits for RHEL 7.3 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Backport bnxt portions of upstream commit 93d05d4a320c (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Backport bnxt portions of upstream commit 5eb4dce3b347 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Backport bnxt portions of upstream commit 16e5cc647173 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: Backport bnxt portions of upstream commit e4c6734eaab9 (John Linville) [1184635 1312277]
-- [netdrv] bnxt_en: New Broadcom ethernet driver (John Linville) [1184635 1312277]
-
-* Tue May 31 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-419.el7]
-- [misc] cxl: Check periodically the coherent platform function's state (Steve Best) [1338865]
-- [misc] cxl: Allow initialization on timebase sync failures (Steve Best) [1338865]
-- [powercap] rapl: add support for skx (Steve Best) [1273742]
-- [virtio] virtio_balloon: fix PFN format for virtio-1 (Thomas Huth) [1337945]
-- [powerpc] perf/24x7: Eliminate domain suffix in event names (Jiri Olsa) [1320561]
-- [powerpc] perf/hv-24x7: Display domain indices in sysfs (Jiri Olsa) [1320561]
-- [powerpc] perf/hv-24x7: Display change in counter values (Jiri Olsa) [1320561]
-- [powerpc] perf/hv-24x7: Fix usage with chip events (Jiri Olsa) [1320561]
-- [mm] move MM_SHMEMPAGES counter into reserved slot of {task, mm}_struct (Jerome Marchand) [838926]
-- [mm] procfs: breakdown RSS for anon, shmem and file in /proc/pid/status (Jerome Marchand) [838926]
-- [mm] shmem: add internal shmem resident memory accounting (Jerome Marchand) [838926]
-- [mm] proc: reduce cost of /proc/pid/smaps for unpopulated shmem mappings (Jerome Marchand) [838926]
-- [mm] proc: reduce cost of /proc/pid/smaps for shmem mappings (Jerome Marchand) [838926]
-- [mm] proc: account for shmem swap in /proc/pid/smaps (Jerome Marchand) [838926]
-- [mm] documentation: clarify /proc/pid/status VmSwap limitations for shmem (Jerome Marchand) [838926]
-- [scsi] mpt3sas: Updating mpt3sas driver version to 13.100.00.00 (Tomas Henzl) [1270168]
-- [scsi] mpt3sas: Update MPI header to 2.00.42 (Tomas Henzl) [1270168]
-- [scsi] mpt3sas: Set maximum transfer length per IO to 4MB for VDs (Tomas Henzl) [1270168]
-- [scsi] mpt3sas: Handle active cable exception event (Tomas Henzl) [1270168]
-- [scsi] mpt3sas: Used "synchronize_irq()"API to synchronize timed-out IO & TMs (Tomas Henzl) [1270168]
-- [irq_poll] Fix irq_poll_sched() (Jeff Moyer) [1336479]
-- [irq_poll] remove unused data and max fields (Jeff Moyer) [1336479]
-- [irq_poll] mark __irq_poll_complete static (Jeff Moyer) [1336479]
-- [scsi] irq_poll: fold irq_poll_disable_pending into irq_poll_softirq (Jeff Moyer) [1336479]
-- [irq_poll] fold irq_poll_sched_prep into irq_poll_sched (Jeff Moyer) [1336479]
-- [irq_poll] don't disable new irq_poll instances (Jeff Moyer) [1336479]
-- [irq_poll] make blk-iopoll available outside the block layer (Jeff Moyer) [1336479]
-- [block] blk-iopoll.c: use iop instead of iopoll (Jeff Moyer) [1336479]
-- [block] remove old blk_iopoll_enabled variable (Jeff Moyer) [1336479]
-- [fs] nfsd: return correct lockowner when there is a race on hash insert ("J. Bruce Fields") [1329485]
-- [fs] nfsd: return correct openowner when there is a race to put one in the hash ("J. Bruce Fields") [1329485]
-- [fs] gfs2: Cache ACLs read from disk (Andreas Gruenbacher) [1334817]
-- [fs] revert "libxfs: pack the agfl header structure so XFS_AGFL_SIZE is correct" (Eric Sandeen) [1336918]
-- [fs] svcrdma: Fix send_reply() scatter/gather set-up (Steve Dickson) [1327280]
-- [fs] svcrdma: Scrub BUG_ON() and WARN_ON() call sites (Steve Dickson) [1327280]
-
-* Thu May 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-418.el7]
-- [include] alsa: acpi / utils: Add acpi_dev_present() (Jaroslav Kysela) [1288993]
-- [include] alsa: pci: Add QEMU top-level IDs for (sub)vendor & device (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: Add get_eld audio component (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: set proper N/CTS in modeset (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: implement sync_audio_rate callback (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: Add audio sync_audio_rate callback (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: fix kernel-doc warnings in intel_audio.c (Jaroslav Kysela) [1288993]
-- [include] alsa: drm: Remove the 'mode' argument from drm_select_eld() (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: Add locks around audio component bind/unbind (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915/audio: clarify HD audio documentation wrt modeset (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915/audio: do not mess with audio registers if port is invalid (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915/audio: remove duplicated include from intel_audio.c (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: Convert the ddi cdclk code to get_display_clock_speed (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: Drop port_mst_index parameter from pin/eld callback (Jaroslav Kysela) [1288993]
-- [gpu] alsa: drm/i915: Call audio pin/ELD notify function (Jaroslav Kysela) [1288993]
-- [include] alsa: drm/i915: Add audio pin sense / ELD callback (Jaroslav Kysela) [1288993]
-- [include] alsa: pm / runtime: Add new helper for conditional usage count incrementation (Jaroslav Kysela) [1288993]
-- [sound] revert "alsa: hda - Set patch_ops before calling auto-parser" (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Create AFG sysfs node at last (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Expose codec type sysfs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add hdac stream trace (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add HDA default codec match function (Jaroslav Kysela) [1288993]
-- [sound] alsa: consolidate the reassignments of ->f_op in ->open() instances (Jaroslav Kysela) [1288993]
-- [sound] alsa: hrtimer: Handle start/stop more properly (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Use mod_timer() for rearming the system timer (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: fix gparams ioctl compatibility for different architectures (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Bind with i915 only when Intel graphics is present (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix possible race on regmap bypass flip (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Don't trust the reported actual power state (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: add AMD Polaris-10/11 AZ PCI IDs with proper driver caps (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add PCI ID for Intel Broxton-T (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix broken reconfig (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Keep powering up ADCs on Cirrus codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix inconsistent monitor_present state until repoll (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix regression of monitor_present flag in eld proc file (Jaroslav Kysela) [1288993]
-- [sound] alsa: alsa - hda: hdmi check NULL pointer in hdmi_set_chmap (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix regression on ATI HDMI audio (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix subwoofer pin on ASUS N751 and N551 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add dock support for ThinkPad X260 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Add ALC3234 headset mode for Optiplex 9020m (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Enable the ALC292 dock fixup on the Thinkpad T460s (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - fix front mic problem for a HP desktop (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply fix for white noise on Asus N550JV, too (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix white noise on Asus N750JV headphone (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Asus N750JV external subwoofer fixup (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix white noise on Asus UX501VW headset (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcxhr: Fix missing mutex unlock (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Skip volume controls triggers hangup on Dell USB Dock (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Yet another Phoneix Audio device quirk (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Quirk for yet another Phoenix Audio devices (v2) (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add a sample rate quirk for Phoenix Audio TMX320 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add a quirk for Plantronics BT300 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: add Microsoft HD-5001 to quirks (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix double-free in error paths after snd_usb_add_audio_stream() call (Jaroslav Kysela) [1288993]
-- [sound] alsa: au88x0: Fix zero clear of stream->resources (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Bail out when chmap is already present (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Clarify CONFIG_SND_HDA_RECONFIG usages (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Replace complex if statement with switch (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Fix poll error return codes (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Remove pointless NULL check (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Use snd_compr_get_poll on error path (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix poll error return codes (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: fix to wait for RIRB & CORB DMA to set (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: fix the missing ptr initialization (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - New codecs support for ALC234/ALC274/ALC294 (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix leak in events via snd_timer_user_tinterrupt (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix leak in events via snd_timer_user_ccallback (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix leak in SNDRV_TIMER_IOCTL_PARAMS (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Limit retrying sample rate reads (Jaroslav Kysela) [1288993]
-- [sound] alsa: au88x0: Fix overlapped PCM pointer (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: remove legacy rtctimer (Jaroslav Kysela) [1288993]
-- [sound] alsa: ens1371: Fix "Line In->Rear Out Switch" control (Jaroslav Kysela) [1288993]
-- [sound] alsa: lx646es: Fix possible uninitialized variable reference (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm : Call kill_fasync() in stream lock (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add missing capture_hook calls for dyn-ADC PCM streams (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: allow clock source validity interrupts (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: add UAC2 clock sources as mixer controls (Jaroslav Kysela) [1288993]
-- [sound] alsa: constify ct_timer_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: intel8x0: Drop superfluous VM checks (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Update chmap tlv to report sink's capability (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix yet another i915 pointer leftover in error path (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Clear the leftover component assignment at snd_hdac_i915_exit() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable i915 ELD notifier for Intel IronLake and Baytrail (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add the pin / port mapping on Intel ILK and VLV (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix missing ELD update at unplugging (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Update BCLK also at hotplug for i915 HSW/BDW (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use eld notifier for Intel SandyBridge and IvyBridge HDMI/DP (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Introduce pin_cvt_fixup() ops to hdmi parser (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Override HDMI setup_stream ops for Intel HSW+ (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply AMP fix in hdmi_setup_audio_infoframe() generically (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Split out Intel-specific codes from patch_generic_hdmi() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi defer to register acomp eld notifier (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Workaround for unbalanced i915 power refcount by concurrent probe (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix spurious kernel WARNING on Baytrail HDMI (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix forgotten HDMI monitor_present update (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Really restrict i915 notifier to HSW+ (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix mutex deadlock at HDMI/DP hotplug (Jaroslav Kysela) [1288993]
-- [sound] alsa: ctl: change return value in compatibility layer so that it's the same value in core implementation (Jaroslav Kysela) [1288993]
-- [sound] alsa: mixart: silence an uninitialized variable warning (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add sanity checks for endpoint accesses (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Minor code cleanup in create_fixed_stream_quirk() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix NULL dereference in create_fixed_stream_quirk() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: use list macro for parsing on cleanup (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Limit i915 HDMI binding only for HSW and later (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix unconditional GPIO toggle via automute (Jaroslav Kysela) [1288993]
-- [sound] alsa: mixart: silence unitialized variable warnings (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixes double fault in nvhdmi_chmap_cea_alloc_validate_get_type (Jaroslav Kysela) [1288993]
-- [sound] alsa: intel8x0: Add clock quirk entry for AD1981B on IBM ThinkPad X41 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add new GPU codec ID 0x10de0082 to snd-hda (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - fix the mic mute button and led problem for a Lenovo AIO (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Avoid "BUG:" string for warnings again (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add a sanity check of pin / port mapping on i915 HDMI/DP (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Don't handle ELD notify from invalid port (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply reboot D3 fix for CX20724 codec, too (Jaroslav Kysela) [1288993]
-- [sound] alsa: pci: Add QEMU top-level IDs for (sub)vendor & device (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Provide card number / PID via sequencer client info (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix unexpected resume through regmap code path (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use snd_hdac namespace prefix for chmap exported APIs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Move chmap support helpers/ops to core (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - chmap helper args modified to use generic hdac objs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add hdmi chmap verb programming ops to chmap object (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use hdac name space for CEA spk alloc structure (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Register chmap obj as priv data instead of codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Create common chmap object (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: fix more typos (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: fix some typos (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Add SNDRV_PCM_STATE_PREPARED state explanation (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: allow writes in SNDRV_PCM_STATE_PREPARED state (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi add wmb barrier for audio component (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix mic issues on Acer Aspire E1-472 (Jaroslav Kysela) [1288993]
-- [sound] alsa: portman2x4: fix NULL pointer dereference (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: oss: Don't drain at closing a client (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add a quirk for Plantronics DA45 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi_find_pcm_slot return value bug fix (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdsp: Fix wrong boolean ctl value accesses (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdspm: Fix zero-division (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdspm: Fix wrong boolean ctl value accesses (Jaroslav Kysela) [1288993]
-- [sound] alsa: mts64: fix NULL pointer dereference (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix ioctls for X32 ABI (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix broken compat timer user status ioctl (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Fix ioctls X32 ABI (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Use comapt_put_timespec() (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix ioctls for X32 ABI (Jaroslav Kysela) [1288993]
-- [sound] alsa: ctl: Fix ioctls for X32 ABI (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Autosuspend controller after probe even if codecs are already suspended (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Loop interrupt handling until really cleared (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix headset support and noise on HP EliteBook 755 G2 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixup speaker pass-through control for nid 0x14 on ALC225 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixing background noise on Dell Inspiron 3162 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi eld control created based on pcm (Jaroslav Kysela) [1288993]
-- [sound] alsa: jack: Allow building the jack layer without input device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply clock gate workaround to Skylake, too (Jaroslav Kysela) [1288993]
-- [sound] alsa: mts64: use new parport device model (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use acpi_dev_present() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi get jack from hda_jack_tbl when not dyn_pcm_assign (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix rwsem deadlock for non-atomic PCM stream (Jaroslav Kysela) [1288993]
-- [sound] alsa: portman2x4 - use new parport device model (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix double port list deletion (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Cancel probe work instead of flush at remove (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix leak of pool buffer at concurrent writes (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Call notifier in the same spinlock (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Protect the whole snd_timer_close() with open race (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix race at concurrent reads (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix bad dereference of jack object (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix race between stop and interrupt (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix wrong instance passed to slave callbacks (Jaroslav Kysela) [1288993]
-- [sound] alsa: dummy: Implement timer backend switching more safely (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix speaker output from VAIO AiO machines (Jaroslav Kysela) [1288993]
-- [sound] alsa: revert "alsa: hda - Fix noise on Gigabyte Z170X mobo" (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Add snd_pcm_rate_range_to_bits() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix static checker warning in patch_hdmi.c (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix leftover link at closing (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix lockdep warnings due to double mutex locks (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Fix race at copying & updating the position (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Make snd_rawmidi_transmit() race-free (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add fixup for Mac Mini 7,1 model (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Support headset mode for ALC225 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Support Dell headset mode for ALC225 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - New codec support of ALC225 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - build chmap kctl based on pcm in hdmi audio (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Sync timer deletion at closing the system timer (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix link corruption due to double start or stop (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix yet another races among ALSA timer accesses (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix potential deadlock in OSS emulation (Jaroslav Kysela) [1288993]
-- [sound] alsa: rawmidi: Remove kernel WARNING for NULL user-space buffer check (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix race at closing in virmidi driver (Jaroslav Kysela) [1288993]
-- [sound] alsa: emu10k1: correctly handling failed thread creation (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add quirk for Microsoft LifeCam HD-6000 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add native DSD support for PS Audio NuWave DAC (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix OPPO HA-1 vendor ID (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - disable dynamic clock gating on Broxton before reset (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add quirk_alias option (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Refer to chip->usb_id for quirks and MIDI creation (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi create spdif ctl based on pcm (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi jack created based on pcm (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add hdmi_pcm to manage hdmi pcm related features (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi setup pin when monitor hotplug in pcm dynamic assignment mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi dynamically bind PCM to pin when monitor hotplug (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi operate spdif based on pcm (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi playback without monitor in dynamic pcm bind mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - hdmi begin to support dynamic PCM assignment (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add new GPU codec ID 0x10de0083 to snd-hda (Jaroslav Kysela) [1288993]
-- [sound] alsa: dummy: Disable switching timer backend via sysfs (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: fix SND_PCM_TIMER Kconfig text (Jaroslav Kysela) [1288993]
-- [sound] alsa: Add missing dependency on CONFIG_SND_TIMER (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix TEAC UD-501/UD-503/NT-503 usb delay (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Disable GET_CODEC_CAPS ioctl for some architectures (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Degrade the error message for too many opens (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix incorrect sanity check at snd_seq_oss_synth_cleanup() (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Introduce disconnect op to snd_timer_instance (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Handle disconnection more safely (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Flush the pending probe work at remove (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix missing module loading with model=generic option (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Degrade i915 binding failure message (Jaroslav Kysela) [1288993]
-- [sound] alsa: control: Avoid kernel warnings from tlv ioctl with numid 0 (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix snd_seq_call_port_info_ioctl in compat mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix snd_pcm_hw_params struct copy in compat mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: hrtimer: Fix stall by hrtimer_cancel() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix bass pin fixup for ASUS N550JX (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Code cleanup (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Harden slave timer list handling (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add fixup for Dell Latitidue E6540 (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix race among timer ioctls (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add codec support for Kabylake display audio codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: Fix double unlink of active_list (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix mixer ctl regression of Native Instrument devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - fix the headset mic detection problem for a Dell laptop (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix white noise on Dell Latitude E5550 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda_intel: add card number to irq description (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix race at timer setup and close (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq: Fix missing NULL check at remove_events ioctl (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Avoid calling usb_autopm_put_interface() at disconnect (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixup inverted internal mic for Lenovo E50-80 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: Add native DSD support for Oppo HA-1 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: add snd_hdac_ext_bus_link_power_up_all (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Increase timeout value for link power check (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: couple the hda DMA stream in cleanup (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add support for hda DMA Resume capability (Jaroslav Kysela) [1288993]
-- [sound] alsa: dummy: constify dummy_timer_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: cs5535audio: constify cs5535audio_dma_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: atiixp: constify atiixp_dma_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add keycode map for alc input device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add mic mute hotkey quirk for Lenovo ThinkCentre AIO (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: use list_for_each_entry_continue_reverse (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Fix silent headphone output on MacPro 4,1 (v2) (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: restore TEA575x state on resume (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: save context before suspend devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: no need to suspend absent codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: detect FM-only card earlier (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: propagate TUNER_ONLY bit when autodetected (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: store struct device instead of pci_dev (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: put curly braces around empty if-body (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: convert rest outw() / inw() to use helpers (Jaroslav Kysela) [1288993]
-- [sound] alsa: fm801: explicitly free IRQ line (Jaroslav Kysela) [1288993]
-- [sound] alsa: oss: consolidate kmalloc/memset 0 call to kzalloc (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Set SKL+ hda controller power at freeze() and thaw() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Drop unused AZX_DCAPS_REVERSE_ASSIGN (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Drop AZX_DCAPS_POSFIX_VIA bit (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Raise AZX_DCAPS_RIRB_DELAY handling into top drivers (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Merge RIRB_PRE_DELAY into CTX_WORKAROUND caps (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add a fixup for Thinkpad X1 Carbon 2nd (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Set codec to D3 at reboot/shutdown on Thinkpads (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply click noise workaround for Thinkpads generically (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix headphone mic input on a few Dell ALC293 machines (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Increase default bdl_pos_adj for Baytrail/Braswell (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Clean up the code to check bdl_pos_adj option (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Move audio component accesses to hdac_i915.c (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use component ops for i915 HDMI/DP audio jack handling (Jaroslav Kysela) [1288993]
-- [sound] alsa: treewide: Fix typos in printk (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm_dmaengine: Properly synchronize DMA on shutdown (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add sample rate inquiry quirk for AudioQuest DragonFly (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add a more accurate volume quirk for AudioQuest DragonFly (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: constify usb_protocol_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix superfluous HDMI jack repoll (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Allow i915 binding later in codec driver (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Optimize audio component check in patch_hdmi.c (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Don't try to bind i915 unless CONFIG_SND_HDA_I915 is set (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Less grumbling about lack of i915 binding (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Implement loopback control switch for Realtek and other codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Make snd_hda_parse_nid_path() local (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Remove unused snd_hda_get_nid_path() (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: add support for 32bit calls in a 64bit kernel (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable audio component for old Intel PCH devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Split ELD update code from hdmi_present_sense() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Do zero-clear in snd_hdmi_parse_eld() itself (Jaroslav Kysela) [1288993]
-- [sound] alsa: Fix compat_ioctl handling for OSS emulations (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Skip ELD notification during PM process (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable power_save_node for CX20722 (Jaroslav Kysela) [1288993]
-- [sound] alsa: usx2y: fix inconsistent indenting on if statement (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Pass id string to snd_compress_new (Jaroslav Kysela) [1288993]
-- [sound] alsa: compress: Add procfs info file for compressed nodes (Jaroslav Kysela) [1288993]
-- [sound] alsa: i2c: constify snd_i2c_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: constify action_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: midi: constify snd_rawmidi_global_ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: azt3328: Remove unnecessary synchronize_irq() before free_irq() (Jaroslav Kysela) [1288993]
-- [sound] alsa: ua101: replace le16_to_cpu() with usb_endpoint_maxp() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/ca0132 - quirk for Alienware 17 2015 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix noise problems on Thinkpad T440s (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fixing speaker noise on the two latest thinkpad models (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add inverted dmic for Packard Bell DOTS (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix playback noise with 24/32 bit sample size on BXT (Jaroslav Kysela) [1288993]
-- [sound] alsa: rme96: Fix unexpected volume reset after rate changes (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add Conexant CX8200 (14f1:2008) codec entry (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Correct codec names for 14f1:50f1 and 14f1:50f3 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Skip ELD notification during system suspend (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix noise on Gigabyte Z170X mobo (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix headphone noise after Dell XPS 13 resume back from S3 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply HP headphone fixups more generically (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add fixup for Acer Aspire One Cloudbook 14 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - apply SKL display power request/release patch to BXT (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add PCI IDs for Intel Broxton (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: work around CH345 input SysEx corruption (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: prevent CH345 multiport output SysEx corruption (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: add packet size quirk for the Medeli DD305 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix noise on Dell Latitude E6440 (Jaroslav Kysela) [1288993]
-- [sound] alsa: pci: depend on ZONE_DMA (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Simplify phantom jack handling for HDMI/DP (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/hdmi - apply Skylake fix-ups to Broxton display codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: ctxfi: constify rsc ops structures (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: Add native DSD support for Aune X1S (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply pin fixup for HP ProBook 6550b (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix lost 4k BDL boundary workaround (Jaroslav Kysela) [1288993]
-- [sound] alsa: maestro3: Fix Allegro mute until master volume/mute is touched (Jaroslav Kysela) [1288993]
-- [sound] alsa: maestro3: Enable docking support for Dell Latitude C810 (Jaroslav Kysela) [1288993]
-- [sound] alsa: cs46xx: Fix suspend for all channels (Jaroslav Kysela) [1288993]
-- [sound] alsa: cs46xx: Fix Duplicate front for CS4294 and CS4298 codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add / fix kernel doc comments (Jaroslav Kysela) [1288993]
-- [sound] alsa: Constify ratden/ratnum constraints (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Disable 64bit address for Creative HDA controllers (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek - Dell XPS one ALC3260 speaker no sound after resume back (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/ca0132 - Convert leftover pr_info() and pr_err() (Jaroslav Kysela) [1288993]
-- [sound] alsa: Remove transfer_ack_{begin,end} callbacks from struct snd_pcm_runtime (Jaroslav Kysela) [1288993]
-- [sound] alsa: rme9652: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [sound] alsa: rme96: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [sound] alsa: rme32: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [sound] alsa: lx6464es: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [sound] alsa: korg1212: Use snd_pcm_hw_constraint_single() (Jaroslav Kysela) [1288993]
-- [include] alsa: Add helper function to add single value constraint (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix deadlock at error in building PCM (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Advertise MODALIAS in uevent (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - convert to hda_device_id (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add hdaudio bus modalias support (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add a common helper to give the codec modalias string (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add hduadio support to DEVTABLE (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Remove mixer entry from Zoom R16/24 quirk (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Adjust max packet size calculation for tx_length_quirk (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add quirk for Zoom R16/24 playback (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add offset parameter to copy_to_urb() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Break out creation of silent urbs from prepare_outbound_urb() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Also move out hwptr_done wrap from prepare_playback_urb() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Break out copying to urb from prepare_playback_urb() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Spell vga_switcheroo consistently (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Remove leftover snd_hda_bus() prototype (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix bogus codec address check for mixer name assignment (Jaroslav Kysela) [1288993]
-- [sound] alsa: timer: add config item to export PCM timer disabling for expert (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add support for Novation Nocturn MIDIcontrol surface (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Update mixer name for the lower codec address (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - consolidate chip rename functions (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable widget power saving for Cirrus codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: oss: underflow in snd_mixer_oss_proc_write() (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix max packet size calculation for USB audio (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix inverted internal mic on Lenovo G50-80 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Explicitly add io.h (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Allow any MIDI endpoint to drive use of interrupt transfer on newer Roland devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: seq_oss: fix waitqueue_active without memory barrier in snd-seq-oss (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: make use of core codec fns (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Copy codec helpers to core (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Fix to check if stream not in use in release (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Fix incorrect update of stream id mapping (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Disable power_save_node for IDT 92HD73xx chips (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply SPDIF pin ctl to MacBookPro 12,1 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Add dock support for ThinkPad T550 (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Avoid double hw_free calls at releasing a stream (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: harmless underflow in snd_audigy2nx_led_put() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - display audio call sync_audio_rate callback (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Disable power_save_node for Thinkpads (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/tegra - async probe for avoiding module loading deadlock (Jaroslav Kysela) [1288993]
-- [sound] alsa: core: check for underflow in snd_pcm_sw_params() (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: remove structure member of 'struct snd_pcm_hwptr_log *' type because this structure had been removed (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdsp: fix memory leak (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Change internal PCM order (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix white noise on Dell M3800 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Use ALC880_FIXUP_FUJITSU for FSC Amilo M1437 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Enable headphone jack detect on old Fujitsu laptops (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add some FIXUP quirks for white noise on Dell laptop (Jaroslav Kysela) [1288993]
-- [sound] alsa: drm/i915: Drop port_mst_index parameter from pin/eld callback (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Wake the codec up on pin/ELD notify events (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - allow codecs to access the i915 pin/ELD callback (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: correct the value cache check (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Handle normal and auto-suspend equally (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Replace probing flag with active refcount (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Avoid nested autoresume calls (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Remove superfluous pcm NULL check (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix widget sysfs tree corruption after refresh (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Refresh sysfs at snd_hda_codec_update_widgets() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix path power activation (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Check all inputs for is_active_nid_for_any() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: fix possible NULL dereference (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add snd_hdac_get_hdac_stream() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: fix the spbmaxfifo API (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Fix size allocation for ext device allocation (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdsp: silence a sprinft() overflow warning (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Remove the usage of key for host stream (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add support to enable SPIB for hdac ext stream (Jaroslav Kysela) [1288993]
-- [include] alsa: hda - add new HDA registers (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add snd_hdac_ext_bus_link_power_down_all() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Fix to read the correct offset of spcap/link register (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Refresh widgets sysfs at probing Haswell+ HDMI codecs (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdsp: silence and underflow warning (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: add snd_hdac_refresh_widget_sysfs() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: add extended device driver registration (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: add hdac extended device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: Add API for removing hdac extended device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Shutdown CX20722 on reboot/free to avoid spurious noises (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: Add native DSD support for Gustard DAC-X20U (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Recurse before saving terminal properties (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/eld - Add const to possible places (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/proc - Fix racy string access for power states (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/proc - Add const to possible places (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Make some helper functions local (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: handle descriptor with SYNC_NONE illegal value (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb: fix corrupted pointers due to interface setting change (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix parameter block size for UAC2 control requests (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix pin config and mapping on Alienware 15 (Jaroslav Kysela) [1288993]
-- [sound] alsa: echoaudio: Use standard C definitions of true and false (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - yet another fix for Dell headset mic with ALC3266 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix Dell laptop for internal mic/headset mic (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - remove no physical connection pins from pin_quirk table (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Check the return value from pm_runtime_get/put*() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix another race in runtime PM refcounting (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: fix kstrdup return value (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Delete an unnecessary check before the function call "kobject_put" (Jaroslav Kysela) [1288993]
-- [sound] alsa: emu10k1: rename Audigy Analog Capture Boost control (Jaroslav Kysela) [1288993]
-- [sound] alsa: emu10k1: enable TAD mic out on Audigy (Jaroslav Kysela) [1288993]
-- [sound] alsa: emu10k1: remove unused AC'97 mixer controls on Audigy (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add dock support for Thinkpad W541 (17aa:2211) (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Fix runtime PM unbalance (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix the white noise on Dell laptop (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - one Dell machine needs the headphone white noise fixup (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Dont check return for snd_hdac_chip_readl (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Fix stream assignment for host in decoupled mode (Jaroslav Kysela) [1288993]
-- [sound] alsa: oxygen: Fix logical-not-parentheses warning (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix MacBook Pro 5,2 quirk (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix race between PM ops and HDA init/probe (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: add dB range mapping for some devices (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply a fixup to Dell Vostro 5480 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add pin quirk for the headset mic jack detection on Dell laptop (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Apply fixup for another Toshiba Satellite S50D (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix the headset mic that will not work on Dell desktop machine (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - fix cs4210_spdif_automute() (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add headset mic pin quirk for a Dell device (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - remove one pin from ALC292_STANDARD_PINS (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add new GPU codec ID 0x10de007d to snd-hda (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: add new AMD PCI IDs with proper driver caps (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add headset mic support for Acer Aspire V5-573G (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix lockdep warning with nonatomic PCM ops (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda/realtek: Enable HP amp and mute LED on HP Folio 9480m (v3) (Jaroslav Kysela) [1288993]
-- [sound] alsa: line6: Fix -EBUSY error during active monitoring (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix a wrong busy check in alt PCM open (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - add codec ID for Broxton display audio codec (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Add MIDI support for Steinberg MI2/MI4 (Jaroslav Kysela) [1288993]
-- [sound] alsa: Fix uninintialized error return (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: Delete an unnecessary check before the function call "snd_info_free_entry" (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add a fixup for Dell E7450 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix the dock headphone output on Fujitsu Lifebook E780 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Add headset support to Acer Aspire V5 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - restore the MIC FIXUP for some Dell machines (Jaroslav Kysela) [1288993]
-- [sound] alsa: jack: Fix endless loop at unique index detection (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - set proper caps for newer AMD hda audio in KB/KV (Jaroslav Kysela) [1288993]
-- [sound] alsa: pcm: Fix pcm_class sysfs output (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda-beep: Update authors dead email address (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: provide default bus io ops extended hdac (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: add hda link cleanup routine (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: add hdac_ext stream creation and cleanup routines (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac: move SND_HDA_PREALLOC_SIZE to core (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix noisy outputs on Dell XPS13 (2015 model) (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - Fix audio crackles on Dell Latitude E7x40 (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda - adding a DAC/pin preference map for a HP Envy TS machine (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda-beep: Update authors dead email address (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac_ext: add extended stream capabilities (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac_ext: add hdac extended controller (Jaroslav Kysela) [1288993]
-- [sound] alsa: hdac_ext: add extended HDA bus (Jaroslav Kysela) [1288993]
-- [sound] alsa: usb-audio: Set correct type for some UAC2 mixer controls (Jaroslav Kysela) [1288993]
-- [sound] alsa: hda: intel: enable automatic runtime pm for HDMI codecs by default (Jaroslav Kysela) [1288993]
-
-* Thu May 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-417.el7]
-- [netdrv] i40e/i40evf : Bump driver version from 1.5.5 to 1.5.10 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: RSS Hash Option parameters (Stefan Assmann) [1274177]
-- [netdrv] i40e: Remove HMC AQ API implementation (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Add driver support for promiscuous mode (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Only offload VLAN tag if enabled (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add DeviceID for X722 QSFP+ (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add device capability which defines if update is available (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Allow PF driver to configure RSS (Stefan Assmann) [1274177]
-- [netdrv] i40e: Specify AQ event opcode to wait for (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Don't Panic (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add support for IPIP and SIT offloads (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Clean up feature flags (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Limit TSO to 7 descriptors for payload instead of 8 per packet (Stefan Assmann) [1274177]
-- [netdrv] i40evf: properly handle VLAN features (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump patch from 1.5.2 to 1.5.5 (Stefan Assmann) [1274177]
-- [netdrv] i40e: Input set mask constants for RSS, flow director, and flex bytes (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add RSS configuration to virtual channel (Stefan Assmann) [1274177]
-- [netdrv] i40e: Move NVM variable out of AQ struct (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Faster RX via avoiding FCoE (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Drop unused tx_ring argument (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Move stack var deeper (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump patch from 1.5.1 to 1.5.2 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Fix get_rss_aq (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Add longer wait after remove module (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add new device ID for X722 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Fix VLAN features (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump patch from 1.4.25 to 1.5.1 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Add additional check for reset (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix casting in transmit code (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add support for bulk free in Tx cleanup (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix handling of boolean logic in polling routines (Stefan Assmann) [1274177]
-- [netdrv] i40evf: remove dead code (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Allow up to 12K bytes of data per Tx descriptor instead of 8K (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.25 and i40evf to 1.4.15 (Stefan Assmann) [1274177]
-- [netdrv] i40e: implement and use Rx CTL helper functions (Stefan Assmann) [1274177]
-- [netdrv] i40e: add adminq commands for Rx CTL registers (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add functions to blink led on 10GBaseT PHY (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Move Tx checksum closer to TSO (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Rewrite logic for 8 descriptor per packet check (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Break up xmit_descriptor_count from maybe_stop_tx (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Update feature flags to reflect newly enabled features (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Enable support for SKB_GSO_UDP_TUNNEL_CSUM (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Clean-up Rx packet checksum handling (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add exception handling for Tx checksum (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Do not write to descriptor unless we complete (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Handle IPv6 extension headers in checksum offload (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add support for IPv4 encapsulated in IPv6 (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Replace header pointers with unions of pointers in Tx checksum path (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Consolidate all header changes into TSO function (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Factor out L4 header and checksum from L3 bits in TSO path (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Use u64 values instead of casting them in TSO function (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Drop outer checksum offload that was not requested (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.15 and i40evf to 1.4.11 (Stefan Assmann) [1274177]
-- [netdrv] i40e: When in promisc mode apply promisc mode to Tx Traffic as well (Stefan Assmann) [1274177]
-- [netdrv] i40e: clean event descriptor before use (Stefan Assmann) [1274177]
-- [netdrv] i40evf: set adapter state on reset failure (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: avoid atomics (Stefan Assmann) [1274177]
-- [netdrv] i40e: Add a SW workaround for lost interrupts (Stefan Assmann) [1274177]
-- [netdrv] i40evf: support packet split receive (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump version (Stefan Assmann) [1274177]
-- [netdrv] i40e: properly show packet split status in debugfs (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use logical operators, not bitwise (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use pages correctly in Rx (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use __GFP_NOWARN (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: try again after failure (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: don't lose interrupts (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Change vf driver string to reflect all products i40evf supports (Stefan Assmann) [1274177]
-- [netdrv] i40e: Refactor force_wb and WB_ON_ITR functionality code (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: bump version to 1.4.12/1.4.8 (Stefan Assmann) [1274177]
-- [netdrv] i40e: do TSO only if CHECKSUM_PARTIAL is set (Stefan Assmann) [1274177]
-- [netdrv] i40e: fix bug in dma sync (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.11 and i40evf to 1.4.7 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: enable bus master after reset (Stefan Assmann) [1274177]
-- [netdrv] i40e: fix write-back-on-itr to work with legacy itr (Stefan Assmann) [1274177]
-- [netdrv] i40e: Bump AQ minor version to 1.5 for new FW features (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ thermal sensor control struct (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Add VXLAN-GPE tunnel type (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Add set_switch_config (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Shared resource flags (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Add external power class to get link status (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Geneve cloud tunnel type (Stefan Assmann) [1274177]
-- [netdrv] i40e: AQ Add Run PHY Activity struct (Stefan Assmann) [1274177]
-- [netdrv] i40e: add new proxy-wol bit for X722 (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Use private workqueue (Stefan Assmann) [1274177]
-- [netdrv] i40evf: add new write-back mode (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix for UDP/TCP RSS for X722 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: null out ring pointers on free (Stefan Assmann) [1274177]
-- [netdrv] i40e: define function capabilities in only one place (Stefan Assmann) [1274177]
-- [netdrv] i40evf: allow channel bonding of VFs (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix RSS rx-flow-hash configuration through ethtool (Stefan Assmann) [1274177]
-- [netdrv] treewide: Fix typos in printk (Stefan Assmann) [1274177]
-- [netdrv] i40e: remove forever unused ID (Stefan Assmann) [1274177]
-- [netdrv] i40e: Fix Rx hash reported to the stack by our driver (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.8 and i40evf to 1.4.4 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: change version string generation (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add a new offload for RSS PCTYPE V2 for X722 (Stefan Assmann) [1274177]
-- [netdrv] i40e: Opcode and structures required by OEM Post Update AQ command and add new NVM arq message (Stefan Assmann) [1274177]
-- [netdrv] i40evf: check rings before freeing resources (Stefan Assmann) [1274177]
-- [netdrv] i40e: trivial fixes (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump version to 1.4.7 for i40e and 1.4.3 for i40evf (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use logical operator (Stefan Assmann) [1274177]
-- [netdrv] i40evf: use correct types (Stefan Assmann) [1274177]
-- [netdrv] i40evf: don't use atomic allocation (Stefan Assmann) [1274177]
-- [netdrv] i40e: Fix memory leaks, sideband filter programming (Stefan Assmann) [1274177]
-- [netdrv] i40e: Detection and recovery of TX queue hung logic moved to service_task from tx_timeout (Stefan Assmann) [1274177]
-- [netdrv] i40evf: remove duplicate string (Stefan Assmann) [1274177]
-- [netdrv] i40evf: set real num queues (Stefan Assmann) [1274177]
-- [netdrv] i40evf: increase max number of queues (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.4.4 and i40evf to 1.4.1 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: allocate ring structs dynamically (Stefan Assmann) [1274177]
-- [netdrv] i40evf: allocate queue vectors dynamically (Stefan Assmann) [1274177]
-- [netdrv] i40evf: quoth the VF driver, Nevermore (Stefan Assmann) [1274177]
-- [netdrv] i40evf: add new fields to store user configuration of RSS (Stefan Assmann) [1274177]
-- [netdrv] i40evf: create a generic get RSS function (Stefan Assmann) [1274177]
-- [netdrv] i40evf: create a generic config RSS function (Stefan Assmann) [1274177]
-- [netdrv] i40evf: rename VF adapter specific RSS function (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: prefetch skb data on transmit (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix RS bit update in Tx path and disable force WB workaround (Stefan Assmann) [1274177]
-- [netdrv] i40evf: handle many MAC filters correctly (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: clean up error messages (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add comment to #endif (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add a stat to track how many times we have to do a force WB (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: remove unused tunnel parameter (Stefan Assmann) [1274177]
-- [netdrv] i40evf: fix compiler warning of unused variable (Stefan Assmann) [1274177]
-- [netdrv] i40evf: clean up local variable initialization (Stefan Assmann) [1274177]
-- [netdrv] i40evf: add missing kernel-doc argument (Stefan Assmann) [1274177]
-- [netdrv] i40e: re-use *ph specifier to hexdump a data (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.46 and i40evf to 1.3.33 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: use correct struct for list manipulation (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add a workaround to drop all flow control frames (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.38 and i40evf to 1.3.25 (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix an accidental error with BIT_ULL replacement (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: adjust interrupt throttle less frequently (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: change dynamic interrupt thresholds (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: fix bug in throttle rate math (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: refactor IRQ enable function (Stefan Assmann) [1274177]
-- [netdrv] i40evf: don't give up (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: use napi_schedule_irqoff() (Stefan Assmann) [1274177]
-- [netdrv] i40evf: fix overlong BIT defines (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.34 and i40evf to 1.3.21 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: relax and stagger init timing a bit (Stefan Assmann) [1274177]
-- [netdrv] i40evf: correctly populate vlan_features (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: moderate interrupts differently (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix compile issue related to const string (Stefan Assmann) [1274177]
-- [netdrv] i40evf: use napi_complete_done() (Stefan Assmann) [1274177]
-- [netdrv] i40evf: Add support for netpoll (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Drop useless "IN_NETPOLL" flag (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Fix handling of napi budget (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.3.28 and i40evf to 1.3.19 (Stefan Assmann) [1274177]
-- [netdrv] i40evf: speed up init (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: remove redundant declarations of a variable and a function (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add WB_ON_ITR offload support (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.3.25 and i40evf to 1.3.17 (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Refactor PHY structure and add phy_capabilities enum (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add module_types and update_link_info (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: split device ids into a separate file (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add info to nvm info struct for OEM version data (Stefan Assmann) [1274177]
-- [netdrv] i40evf: properly handle ndo_set_mac_address calls (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add new link status defines (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: pass QOS handle to VF (Stefan Assmann) [1274177]
-- [netdrv] i40evf: use capabilities flags properly (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: clean up some code (Stefan Assmann) [1274177]
-- [netdrv] i40evf: detect reset more reliably (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Explicitly assign enum index for VSI type (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Store CEE DCBX DesiredCfg and RemoteCfg (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: remove unused opcode (Stefan Assmann) [1274177]
-- [netdrv] i40evf: propagate interrupt allocation failure (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: Add a stat to keep track of linearization count (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: fix unicast mac address add (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: give up the __func__ (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: assure clean asq status report (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: fix a potential type compare issue (Stefan Assmann) [1274177]
-- [netdrv] i40e/i40evf: add driver support for new device ids (Stefan Assmann) [1274177]
-
-* Thu May 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-416.el7]
-- [netdrv] i40e/i40evf: Bump driver version from 1.5.5 to 1.5.10 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Update device ids for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Drop extra copy of function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Use consistent type for vf_id (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: PTP - avoid aggregate return warnings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix uninitialized variable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove HMC AQ API implementation (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Prevent falling to promiscuous if the VF is not trusted (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Limit the number of MAC and VLAN addresses that can be added for VFs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change the default for VFs to be not privileged (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40evf: Add driver support for promiscuous mode (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add VF promiscuous mode driver support (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add promiscuous on VLAN support (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Only offload VLAN tag if enabled (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove zero check (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add DeviceID for X722 QSFP+ (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add device capability which defines if update is available (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Specify AQ event opcode to wait for (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Code cleanup in i40e_add_fdir_ethtool (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add support for configuring VF RSS (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add support for IPIP and SIT offloads (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Clean up feature flags (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Limit TSO to 7 descriptors for payload instead of 8 per packet (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix errant PCIe bandwidth message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump patch from 1.5.2 to 1.5.5 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Input set mask constants for RSS, flow director, and flex bytes (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move NVM event wait check to NVM code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add RSS configuration to virtual channel (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move NVM variable out of AQ struct (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Restrict VF poll mode to only single function mode devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Patch to support trusted VF (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Faster RX via avoiding FCoE (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Drop unused tx_ring argument (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Move stack var deeper (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move HW flush (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Leave debug_mask cleared at init (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Inserting a HW capability display info (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add inline csum_replace_by_diff workaround (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix TSO checksum pseudo-header adjustment (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump patch from 1.5.1 to 1.5.2 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Request PHY media event at reset time (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Lower some message levels (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for supported link modes in 10GBaseT PHY's (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Disable link polling (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Make VF resets more reliable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add new device ID for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove unused variable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Enable Geneve offload for FW API ver > 1.4 for XL710/X710 devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove redundant check on vsi->active_vlans (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump patch from 1.4.25 to 1.5.1 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change comment to reflect correct function name (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change unknown event error msg to ignore message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Added code to prevent double resets (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Notify VFs of all resets (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove timer and task only if created (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Assure that adminq is alive in debug mode (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove MSIx only if created (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix up return code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Save off VSI resource count when updating VSI (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Remove I40E_MAX_USER_PRIORITY define (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix casting in transmit code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add support for bulk free in Tx cleanup (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix handling of boolean logic in polling routines (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Allow up to 12K bytes of data per Tx descriptor instead of 8K (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: call ndo_stop() instead of dev_close() when running offline selftest (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add support for client interface for IWARP driver (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/ethtool: support coalesce setting by queue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/ethtool: support coalesce getting by queue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: queue-specific settings for interrupt moderation (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.25 and i40evf to 1.4.15 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: let go of the past (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: suspend scheduling during driver unload (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Use the new rx ctl register helpers. Don't use AQ calls from clear_hw (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: implement and use Rx CTL helper functions (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add adminq commands for Rx CTL registers (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add check for null VSI (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Expose some registers to program parser, FD and RSS logic (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for unexpected messaging (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Do not wait for Rx queue disable in DCB reconfig (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Increase timeout when checking GLGEN_RSTAT_DEVSTATE bit (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix led blink capability for 10GBaseT PHY (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add functions to blink led on 10GBaseT PHY (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Move Tx checksum closer to TSO (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Rewrite logic for 8 descriptor per packet check (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Break up xmit_descriptor_count from maybe_stop_tx (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add support for ATR w/ IPv6 extension headers (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Update feature flags to reflect newly enabled features (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Do not drop support for IPv6 VXLAN or GENEVE tunnels (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix ATR in relation to tunnels (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Enable support for SKB_GSO_UDP_TUNNEL_CSUM (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Clean-up Rx packet checksum handling (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add exception handling for Tx checksum (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Do not write to descriptor unless we complete (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Handle IPv6 extension headers in checksum offload (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add support for IPv4 encapsulated in IPv6 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Replace header pointers with unions of pointers in Tx checksum path (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Consolidate all header changes into TSO function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Factor out L4 header and checksum from L3 bits in TSO path (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Use u64 values instead of casting them in TSO function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Drop outer checksum offload that was not requested (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.15 and i40evf to 1.4.11 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: When in promisc mode apply promisc mode to Tx Traffic as well (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: clean event descriptor before use (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: better error reporting for nvmupdate (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: expand comment (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Do not disable queues in the Legacy/MSI Interrupt handler (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: avoid atomics (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Removal of code which relies on BASE VEB SEID (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix PROMISC mode for Multi-function per port (MFP) devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add a SW workaround for lost interrupts (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial: cleanup use of pf->hw (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: drop unused debugfs file "dump" (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: get rid of magic number (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump version (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: properly show packet split status in debugfs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use logical operators, not bitwise (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use pages correctly in Rx (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use __GFP_NOWARN (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: dump descriptor indexes in hex (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: try again after failure (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: don't lose interrupts (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Refactor force_wb and WB_ON_ITR functionality code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use new add_veb calling with VEB stats control (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add VEB stat control and remove L2 cloud filter (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: set shared bit for multicast filters (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Make the DCB firmware checks for X710/XL710 only (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: move sync_vsi_filters up in service_task (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use eth_platform_get_mac_address() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add priv flag for automatic rule eviction (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Enable Geneve offload for FW API ver > 1.4 for XL710/X710 devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: bump version to 1.4.12/1.4.8 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: avoid large memcpy by assigning struct (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: count allocation errors (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: drop unused function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: negate PHY int mask bits (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: APIs to Add/remove port mirroring rules (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix: do not sleep in netdev_ops (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: allocate memory safer (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: do TSO only if CHECKSUM_PARTIAL is set (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix bug in dma sync (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial: fix missing space (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial: drop duplicate definition (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.11 and i40evf to 1.4.7 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial: remove unnecessary local var (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove VF device IDs from PF (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add netdev info to VSI dump (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add a little more to an NVM update debug message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: refactor DCB function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add 20G speed for Tx bandwidth calculations (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add counter for arq overflows (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix write-back-on-itr to work with legacy itr (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Store lan_vsi_idx and lan_vsi_id in the right size (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Bump AQ minor version to 1.5 for new FW features (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ thermal sensor control struct (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Add VXLAN-GPE tunnel type (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Add set_switch_config (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Shared resource flags (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add 100Mb ethtool reporting (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Add external power class to get link status (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Geneve cloud tunnel type (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: AQ Add Run PHY Activity struct (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Limit DCB FW version checks to X710/XL710 devices (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add new proxy-wol bit for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Use private workqueue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40evf: add new write-back mode (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix for UDP/TCP RSS for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Extend ethtool RSS hooks for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add new device IDs for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: bump version to 1.4.10 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: update features with right offload (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Cleanup the code with respect to restarting autoneg (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: define function capabilities in only one place (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Replace X722 mac check in ethtool get_settings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix RSS rx-flow-hash configuration through ethtool (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add mac_filter_element at the end of the list instead of HEAD (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: shut up uninitialized variable warnings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix build warnings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove forever unused ID (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix Rx hash reported to the stack by our driver (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Look up MAC address in Open Firmware or IDPROM (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: allow zero MAC address for VFs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: change log messages and error returns (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Call geneve_get_rx_port to get the existing Geneve ports (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: geneve tunnel offload support (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.4.8 and i40evf to 1.4.4 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: clean whole mac filter list (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add a new offload for RSS PCTYPE V2 for X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: hush little warnings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Opcode and structures required by OEM Post Update AQ command and add new NVM arq message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use explicit cast from u16 to u8 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: don't add zero MAC filter (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: properly delete VF MAC filters (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: chomp the BIT(_ULL) (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: trivial fixes (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump version to 1.4.7 for i40e and 1.4.3 for i40evf (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use logical operator (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix whitespace (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove separate functions gathering XOFF Rx stats (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use priv flags to control packet split (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: propagate properly (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix memory leaks, sideband filter programming (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Detection and recovery of TX queue hung logic moved to service_task from tx_timeout (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix i40e_print_features() VEB mode output (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.4.4 and i40evf to 1.4.1 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: make error message more useful (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix confusing message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Update error messaging (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: prefetch skb data on transmit (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: rename rss_size to alloc_rss_size in i40e_pf (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add new fields to store user configuration (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Bump version to 1.4.2 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: create a generic configure rss function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: rework the functions to configure RSS with similar parameters (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: return the number of enabled queues for ETHTOOL_GRXRINGS (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: clean up error messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add comment to #endif (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move the saving of old link info from handle_link_event to link_event (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add a stat to track how many times we have to do a force WB (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Workaround fix for mss < 256 issue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove BUG_ON from FCoE setup (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove BUG_ON from feature string building (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change BUG_ON to WARN_ON in service event complete (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: remove unused tunnel parameter (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] intel: i40e: fix confused code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix annoying message (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix stats offsets (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix unconditional execution of cpu_to_le16() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: clean up local variable initialization (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add missing kernel-doc argument (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: re-use *ph specifier to hexdump a data (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.46 and i40evf to 1.3.33 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Disable VEB bridge mode with SR-IOV failure (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix an incorrect OEM version string (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix inconsistent statuses after a PF reset (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix VEB/VEPA bridge mode mismatch issue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix a bug in debugfs with add/del macaddr (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add a workaround to drop all flow control frames (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.38 and i40evf to 1.3.25 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: declare rather than initialize int object (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix kernel-doc argument name (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Move error message to debug level (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix order of checks when enabling/disabling autoneg in ethtool (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix an accidental error with BIT_ULL replacement (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix for PHY NVM interaction problem (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for Tools loopback test failing after driver load (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: adjust interrupt throttle less frequently (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: change dynamic interrupt thresholds (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: fix bug in throttle rate math (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: refactor IRQ enable function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: use napi_schedule_irqoff() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Lock for VSI's MAC filter list (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.34 and i40evf to 1.3.21 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: increase AQ work limit (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Recognize 1000Base_T_Optical phy type when link is up (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: reset the invalid msg counter in vf when a valid msg is received (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: moderate interrupts differently (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add support for non-willing Apps (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: priv flag for controlling VEB stats (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Removed unused defines (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove read/write failed messages from nvmupdate (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix compile issue related to const string (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: generate fewer startup messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use napi_complete_done() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Drop useless "IN_NETPOLL" flag (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Fix handling of napi budget (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] get rid of unnecessary initializations in .get_drvinfo() (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.3.28 and i40evf to 1.3.19 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove unnecessary string copy operations (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: X722 is on the IOSF bus and does not report the PCI bus info (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Store off PHY capabilities (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: remove redundant declarations of a variable and a function (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove FD atr control from debugfs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: allow FD SB if MFP mode only has 1 partition (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove obsolete version check (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add WB_ON_ITR offload support (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Remove 100M SGMII unless hw is X722 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Change some messages from info to debug only (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: use priv flags to control flow director (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add missing parameter comment to ndo_bridge_setlink (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Bump i40e version to 1.3.25 and i40evf to 1.3.17 (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Refactor PHY structure and add phy_capabilities enum (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add module_types and update_link_info (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: split device ids into a separate file (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: update fw version text string per previous product formats (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: don't panic on VSI allocation failure (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: remove redundant call (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Convert CEE App TLV selector to IEEE selector (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add info to nvm info struct for OEM version data (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Use BIT() macro for priority map parsing (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add new link status defines (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: print neato new features (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: pass QOS handle to VF (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: refactor code to remove indent (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: clean up some code (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Support FW CEE DCB UP to TC map nibble swap (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Explicitly assign enum index for VSI type (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add switch for link polling (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix multiple link up messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for extra Flow Director filter in table after error (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Store CEE DCBX DesiredCfg and RemoteCfg (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Add parsing for CEE DCBX TLVs (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add more verbose error messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: inline interrupt enable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: remove unused opcode (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Additional checks for CEE APP priority validity (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: Add a stat to keep track of linearization count (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: fix unicast mac address add (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix bug in return from get_link_status and avoid spurious link messages (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: add little endian conversion for checksum (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: give up the __func__ (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Never let speed get set to 0 in get_settings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Fix for truncated interrupt name (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: assure clean asq status report (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: make i40e_init_pf_fcoe to void (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: fix bad CEE status shift value (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: fix a potential type compare issue (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e/i40evf: add driver support for new device ids (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: stop VF rings (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: enable WoL operation if config bit show WoL capable (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-- [netdrv] i40e: Increase the amount of time we wait for reset to be done (Stefan Assmann) [1269238 1272322 1274176 1281279 1293277 1310436]
-
-* Wed May 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-415.el7]
-- [kernel] param: convert some "on"/"off" users to strtobool (Jiri Olsa) [1331008]
-- [kernel] lib: add "on"/"off" support to kstrtobool (Jiri Olsa) [1331008]
-- [kernel] lib: move strtobool() to kstrtobool() (Jiri Olsa) [1331008]
-- [edac] sb_edac: Repair damage introduced when "fixing" channel address (Aristeu Rozanski) [1319939]
-- [edac] sb_edac: Take account of channel hashing when needed (Aristeu Rozanski) [1319939]
-- [edac] sb_edac: Fix computation of channel address (Aristeu Rozanski) [1319939]
-- [mm] thp: put_huge_zero_page() with MMU gather (Andrea Arcangeli) [1322616]
-- [mm] thp: introduce thp_mmu_gather to pin tail pages during MMU gather (Andrea Arcangeli) [1322616]
-- [net] bulk free SKBs that were delay free'ed due to IRQ context (Ivan Vecera) [1268334]
-- [net] remove a dubious unlikely() clause (Ivan Vecera) [1268334]
-- [mm] slub: clean up code for kmem cgroup support to kmem_cache_free_bulk (Ivan Vecera) [1268334]
-- [mm] introduce page reference manipulation functions (Ivan Vecera) [1268334]
-- [net] bulk free infrastructure for NAPI context, use napi_consume_skb (Ivan Vecera) [1268334]
-- [mm] slab/slub: adjust kmem_cache_alloc_bulk API (Ivan Vecera) [1268334]
-- [mm] slub: add missing kmem cgroup support to kmem_cache_free_bulk (Ivan Vecera) [1268334]
-- [mm] slub: fix kmem cgroup bug in kmem_cache_alloc_bulk (Ivan Vecera) [1268334]
-- [mm] slub: optimize bulk slowpath free by detached freelist (Ivan Vecera) [1268334]
-- [mm] slub: support for bulk free with SLUB freelists (Ivan Vecera) [1268334]
-- [mm] slub: mark the dangling ifdef #else of CONFIG_SLUB_DEBUG (Ivan Vecera) [1268334]
-- [mm] slub: avoid irqoff/on in bulk allocation (Ivan Vecera) [1268334]
-- [mm] slub: create new ___slab_alloc function that can be called with irqs disabled (Ivan Vecera) [1268334]
-- [mm] slub: add support for kmem_cache_debug in bulk calls (Ivan Vecera) [1268334]
-- [mm] slub: initial bulk free implementation (Ivan Vecera) [1268334]
-- [mm] slub: improve bulk alloc strategy (Ivan Vecera) [1268334]
-- [mm] slub: bulk alloc: extract objects from the per cpu slab (Ivan Vecera) [1268334]
-- [mm] slab: infrastructure for bulk object allocation and freeing (Ivan Vecera) [1268334]
-- [net] Add skb_free_frag to replace use of put_page in freeing skb->head (Ivan Vecera) [1268334]
-- [mm] rename and move page fragment handling from net/ to mm/ (Ivan Vecera) [1268334]
-- [net] Store virtual address instead of page in netdev_alloc_cache (Ivan Vecera) [1268334]
-- [net] Use cached copy of pfmemalloc to avoid accessing page (Ivan Vecera) [1268334]
-- [net] fix crash in build_skb() (Ivan Vecera) [1268334]
-- [net] do not deplete pfmemalloc reserve (Ivan Vecera) [1268334]
-- [net] dcb: Add IEEE QCN attribute (Ivan Vecera) [1268334]
-- [net] add netdev_txq_bql_{enqueue, complete}_prefetchw() helpers (Ivan Vecera) [1268334]
-- [net] fix feature changes on devices without ndo_set_features (Ivan Vecera) [1268334]
-- [net] ensure features get disabled on new lower devs (Ivan Vecera) [1268334]
-- [net] fix for_each_netdev_feature (Ivan Vecera) [1268334]
-- [net] generic support for disabling netdev features down stack (Ivan Vecera) [1268334]
-- [net] add NETDEV_PRECHANGEMTU to notify before mtu change happens (Ivan Vecera) [1268334]
-- [net] make dev_set_mtu() honor notification return code (Ivan Vecera) [1268334]
-- [net] etherdevice: add address inherit helper (Ivan Vecera) [1268334]
-- [net] Check CHANGEUPPER notifier return value (Ivan Vecera) [1268334]
-- [net] introduce change upper device notifier change info (Ivan Vecera) [1268334]
-- [net] netdev: remove potentially harmful checks (Ivan Vecera) [1268334]
-- [net] always pass struct netdev_notifier_info to netdevice notifiers (Ivan Vecera) [1268334]
-- [net] pass changed flags along with NETDEV_CHANGE event (Ivan Vecera) [1268334]
-- [net] pass info struct via netdevice notifier (Ivan Vecera) [1268334]
-- [net] sysfs: get_netdev_queue_index() cleanup (Ivan Vecera) [1268334]
-- [net] relax setup_tc ndo op handle restriction (Ivan Vecera) [1268334]
-- [net] avoid NULL deref in napi_get_frags() (Ivan Vecera) [1268334]
-
-* Wed May 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-414.el7]
-- [crypto] qat - update init_esram for C3xxx dev type (Neil Horman) [1274179]
-- [crypto] qat - fix timeout issues (Neil Horman) [1274179]
-- [crypto] qat - remove to call get_sram_bar_id for qat_c3xxx (Neil Horman) [1274179]
-- [crypto] qat - fix SKU definiftion for c3xxx dev (Neil Horman) [1274179]
-- [crypto] qat - Fix random config build issue (Neil Horman) [1274179]
-- [crypto] qat - Rename dh895xcc mmp firmware (Neil Horman) [1274179]
-- [crypto] qat - use list_for_each_entry* (Neil Horman) [1274179]
-- [crypto] qat - fix some timeout tests (Neil Horman) [1274179]
-- [crypto] qat - fix CTX_ENABLES bits shift direction issue (Neil Horman) [1274179]
-- [crypto] qat - uint8_t is not large enough for accel_id (Neil Horman) [1274179]
-- [crypto] qat - enable VF irq after guest exits ungracefully (Neil Horman) [1274179]
-- [crypto] qat - select PCI_IOV when VF are enabled (Neil Horman) [1274179]
-- [crypto] qat - ring returning retry even though ring has BW (Neil Horman) [1274179]
-- [crypto] qat - add support for c62xvf accel type (Neil Horman) [1274179]
-- [crypto] qat - add support for c3xxxvf accel type (Neil Horman) [1274179]
-- [crypto] qat - add support for c62x accel type (Neil Horman) [1274179]
-- [crypto] qat - add support for c3xxx accel type (Neil Horman) [1274179]
-- [crypto] qat - move isr files to qat common so that they can be reused (Neil Horman) [1274179]
-- [crypto] qat - add support for new devices to FW loader (Neil Horman) [1274179]
-- [crypto] qat - add new device definitions (Neil Horman) [1274179]
-- [crypto] qat - constify pci_error_handlers structures (Neil Horman) [1274179]
-- [crypto] qat - remove superfluous check from adf_probe (Neil Horman) [1274179]
-- [crypto] qat - fix get instance function (Neil Horman) [1274179]
-- [crypto] qat - when stopping all devices make fure VF are stopped first (Neil Horman) [1274179]
-- [crypto] qat - fix crypto_get_instance_node function (Neil Horman) [1274179]
-- [include] crypto: akcipher - Changes to asymmetric key API (Neil Horman) [1274179]
-- [lib] mpi: Add mpi sgl helpers (Neil Horman) [1274179]
-- [crypto] qat - remove unneeded variable (Neil Horman) [1274179]
-- [crypto] qat - add support for ctr(aes) and xts(aes) (Neil Horman) [1274179]
-- [crypto] qat - remove empty functions and turn qat_uregister fn to void (Neil Horman) [1274179]
-- [crypto] qat - VF should never trigger SBR on PH (Neil Horman) [1274179]
-- [crypto] qat - Add load balancing across devices (Neil Horman) [1274179]
-- [crypto] qat - don't check for iommu (Neil Horman) [1274179]
-- [crypto] drivers/crypto/qat: use seq_hex_dump() to dump buffers (Neil Horman) [1274179]
-- [include] seq_file: provide an analogue of print_hex_dump() (Neil Horman) [1274179]
-- [lib] hexdump: make it return number of bytes placed in buffer (Neil Horman) [1274179]
-- [lib] hexdump: do a few calculations ahead (Neil Horman) [1274179]
-- [lib] hexdump: fix ascii column for the tail of a dump (Neil Horman) [1274179]
-- [lib] Provide a binary to hex conversion function (Neil Horman) [1274179]
-- [lib] introduce upper case hex ascii helpers (Neil Horman) [1274179]
-- [include] seq_file: Rename seq_overflow() to seq_has_overflowed() and make public (Neil Horman) [1274179]
-- [crypto] qat - enable legacy VFs (Neil Horman) [1274179]
-- [crypto] qat - silence a static checker warning (Neil Horman) [1274179]
-- [crypto] qat - Don't move data inside output buffer (Neil Horman) [1274179]
-- [crypto] qat - Remove reference to crypto_aead_crt (Neil Horman) [1274179]
-- [crypto] qat - fix simple_return.cocci warnings (Neil Horman) [1274179]
-- [crypto] qat - Fix unmet direct dependencies for QAT_DH895xCCVF (Neil Horman) [1274179]
-- [crypto] qat - Fix adf_isr_resource_free name clash (Neil Horman) [1274179]
-- [crypto] qat - Add FW const table (Neil Horman) [1274179]
-- [crypto] qat - Add qat dh895xcc VF driver (Neil Horman) [1274179]
-- [crypto] qat - Add support for SRIOV (Neil Horman) [1274179]
-- [crypto] qat - Move adf admin and adf hw arbitrer to common code (Neil Horman) [1274179]
-- [include] crypto: aead - Add crypto_aead_set_reqsize helper (Neil Horman) [1274179]
-- [crypto] qat - remove unnecessary list iteration (Neil Horman) [1274179]
-- [crypto] qat - Fix typo othewise->otherwise (Neil Horman) [1274179]
-- [crypto] qat - remove unused define (Neil Horman) [1274179]
-- [crypto] qat - fix bug in ADF_RING_SIZE_BYTES_MIN macro (Neil Horman) [1274179]
-- [crypto] qat - remove redundant struct elem (Neil Horman) [1274179]
-- [crypto] qat - Don't attempt to register algorithm multiple times (Neil Horman) [1274179]
-- [crypto] qat - Fix invalid synchronization between register/unregister sym algs (Neil Horman) [1274179]
-- [crypto] qat - fix invalid check for RSA keylen in fips mode (Neil Horman) [1274179]
-- [include] crypto: rsa - RSA padding algorithm (Neil Horman) [1274179]
-- [include] crypto: akcipher - add akcipher declarations needed by templates (Neil Horman) [1274179]
-- [include] crypto: api - Add crypto_grab_spawn primitive (Neil Horman) [1274179]
-- [include] crypto: api - Add instance free function to crypto_type (Neil Horman) [1274179]
-- [lib] scatterlist: introduce sg_nents_for_len (Neil Horman) [1274179]
-- [crypto] rsa - limit supported key lengths (Neil Horman) [1274179]
-- [crypto] qat - Add support for RSA algorithm (Neil Horman) [1274179]
-- [crypto] testmgr - add tests vectors for RSA (Neil Horman) [1274179]
-- [include] crypto: api - prevent helper ciphers from being used (Neil Horman) [1274179]
-- [crypto] testmgr - remove unused function argument (Neil Horman) [1274179]
-- [include] crypto: rsa - add a new rsa generic implementation (Neil Horman) [1274179]
-- [lib] mpilib: add mpi_read_buf() and mpi_get_size() helpers (Neil Horman) [1274179]
-- [include] crypto: akcipher - add PKE API (Neil Horman) [1274179]
-- [crypto] api - Add crypto_alg_extsize helper (Neil Horman) [1274179]
-- [crypto] qat - add MMP FW support to accel engine (Neil Horman) [1274179]
-- [crypto] qat - add support for MMP FW (Neil Horman) [1274179]
-- [crypto] qat - Deletion of unnecessary checks before two function calls (Neil Horman) [1274179]
-- [crypto] drivers - Fix Kconfig selects (Neil Horman) [1274179]
-- [crypto] qat: fix issue when mapping assoc to internal AD struct (Neil Horman) [1274179]
-- [crypto] qat - Set max request size (Neil Horman) [1274179]
-- [crypto] qat - rm unneeded header include (Neil Horman) [1274179]
-- [crypto] qat - remove unused structure members (Neil Horman) [1274179]
-- [crypto] qat - Use crypto_aead_set_reqsize helper (Neil Horman) [1274179]
-- [crypto] qat - Include internal/aead.h (Neil Horman) [1274179]
-- [crypto] qat - add driver version (Neil Horman) [1274179]
-
-* Wed May 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-413.el7]
-- [scsi] scsi: Do not attach VPD to devices that don't support it (Ewan Milne) [1292896]
-- [scsi] sd: Fix excessive capacity printing on devices with blocks bigger than 512 bytes (Ewan Milne) [1292896]
-- [scsi] sg: fix dxferp in from_to case (Ewan Milne) [1292896]
-- [scsi] sd: Fix discard granularity when LBPRZ=1 (Ewan Milne) [1292896]
-- [scsi] st: Fix MTMKPART to work with newer drives (Ewan Milne) [1292896]
-- [scsi] Export function scsi_scan.c:sanitize_inquiry_string (Ewan Milne) [1292896]
-- [scsi] scsi_transport_iscsi: Add 25G and 40G speed definition (Ewan Milne) [1292896]
-- [scsi] Add Marvell configuration device to VPD blacklist (Ewan Milne) [1292896]
-- [scsi] Add Marvell Console to VPD blacklist (Ewan Milne) [1292896]
-- [scsi] scsi_dh_rdac: always retry MODE SELECT on command lock violation (Ewan Milne) [1292896]
-- [scsi] sg.c: mark VMA as VM_IO to prevent migration (Ewan Milne) [1292896]
-- [scsi] fix crashes in sd and sr runtime PM (Ewan Milne) [1292896]
-- [scsi] sd: Optimal I/O size is in bytes, not sectors (Ewan Milne) [1292896]
-- [scsi] scsi: add Synology to 1024 sector blacklist (Ewan Milne) [1292896]
-- [scsi] sd: Reject optimal transfer length smaller than page size (Ewan Milne) [1292896]
-- [scsi] Fix a memory leak in scsi_host_dev_release() (Ewan Milne) [1292896]
-- [scsi] scsi_transport_fc: Introduce scsi_host_get, scsi_host_put (Ewan Milne) [1292896]
-- [scsi] scsi: rescan VPD attributes (Ewan Milne) [1292896]
-- [scsi/block] sd: Fix device-imposed transfer length limits (Ewan Milne) [1292896]
-- [scsi] sd: Make discard granularity match logical block size when LBPRZ=1 (Ewan Milne) [1292896]
-- [scsi] sd: Clear PS bit before Mode Select (Ewan Milne) [1292896]
-- [scsi] scsi_sysfs: Fix queue_ramp_up_period return code (Ewan Milne) [1292896]
-- [scsi] scsi: Export SCSI Inquiry data to sysfs (Ewan Milne) [1292896]
-- [scsi] sg: Fix double-free when drives detach during SG_IO (Ewan Milne) [1292896]
-- [scsi] Increase REPORT_LUNS timeout (Ewan Milne) [1292896]
-- [scsi] fix bug in scsi_dev_info_list matching (Ewan Milne) [1292896]
-- [scsi] refactor device-matching code in scsi_devinfo.c (Ewan Milne) [1292896]
-- [scsi] Kconfig: remove comment about scsi_wait_scan module (Ewan Milne) [1292896]
-- [scsi] fix scsi_error_handler vs. scsi_host_dev_release race (Ewan Milne) [1292896]
-- [scsi] sd: Fix maximum I/O size for BLOCK_PC requests (Ewan Milne) [1292896]
-- [scsi] Fix printk typos in drivers/scsi (Ewan Milne) [1292896]
-- [scsi] retry MODE SENSE on unit attention (Ewan Milne) [1292896]
-- [scsi] sd: fix an error return in probe() (Ewan Milne) [1292896]
-- [scsi] scsi_scan: fix queue depth initialisation problem (Ewan Milne) [1292896]
-- [scsi] add 1024 max sectors black list flag (Ewan Milne) [1292896]
-- [scsi] sd: Unregister integrity profile (Ewan Milne) [1292896]
-- [scsi] proper state checking and module refcount handling in scsi_device_get (Ewan Milne) [1292896]
-- [scsi] scsi: always increment reference count (Ewan Milne) [1292896]
-- [scsi] sd: don't grab a device references from driver methods (Ewan Milne) [1292896]
-- [scsi] scsi: serialize ->rescan against ->remove (Ewan Milne) [1292896]
-- [scsi] sg: remove an unused variable (Ewan Milne) [1292896]
-- [scsi] sd: Fix max transfer length for 4k disks (Ewan Milne) [1292896]
-- [scsi] sd: Limit transfer length (Ewan Milne) [1292896]
-- [scsi] always use format argumets for dev_printk (Ewan Milne) [1292896]
-- [scsi] annotate sdev_prefix_printk and scmd_printk as printf-like (Ewan Milne) [1292896]
-- [scsi] scsi: fix scsi_error.c kernel-doc warning (Ewan Milne) [1292896]
-- [scsi] scsi: asc/ascq codes, sync to T10 2014/12/21 (Ewan Milne) [1292896]
-- [scsi] sd: tweak discard heuristics to work around QEMU SCSI issue (Ewan Milne) [1292896]
-- [scsi] scsi_debug: improve driver description in Kconfig (Ewan Milne) [1292896]
-- [scsi] blacklist RSOC for Microsoft iSCSI target devices (Ewan Milne) [1292896]
-- [scsi] sd: disable discard_zeroes_data for UNMAP (Ewan Milne) [1292896]
-- [scsi] PC partition tables are little endian (Ewan Milne) [1292896]
-- [scsi] resolve some missing-field-initializers warnings (Ewan Milne) [1292896]
-- [scsi] fix off-by-one LUN check in scsi_scan_host_selected() (Ewan Milne) [1292896]
-- [scsi] fix trivial typos in scsi_scan.c comment (Ewan Milne) [1292896]
-- [scsi] Fix "choir" and "beeing" malaprops (Ewan Milne) [1292896]
-- [scsi] fix the type for well known LUs (Ewan Milne) [1292896]
-- [scsi] fix for bidi use after free (Ewan Milne) [1292896]
-- [scsi] sd: Avoid sending medium write commands if device is write protected (Ewan Milne) [1292896]
-- [scsi] fix various kernel-doc problems in scsi_error.c (Ewan Milne) [1292896]
-- [scsi] scsi: use short driver name for per-driver cmd slab caches (Ewan Milne) [1292896]
-- [scsi] add a blacklist flag which enables VPD page inquiries (Ewan Milne) [1292896]
-- [scsi] scsi: handle flush errors properly (Ewan Milne) [1292896]
-- [block] SG_IO: add SG_FLAG_Q_AT_HEAD flag (Ewan Milne) [1292896]
-- [scsi] convert use of typedef ctl_table to struct ctl_table (Ewan Milne) [1292896]
-- [scsi] sd: convert class code to use dev_groups (Ewan Milne) [1292896]
-
-* Tue May 24 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-412.el7]
-- [x86] microcode/intel: Drop orig_sum from ext signature checksum (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Improve microcode sanity-checking error messages (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Merge two consecutive if-statements (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Get rid of DWSIZE (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Change checksum variables to u32 (Prarit Bhargava) [1253762]
-- [x86] microcode: Use kmemdup() rather than duplicating its implementation (Prarit Bhargava) [1253762]
-- [x86] microcode: Remove unnecessary paravirt_enabled check (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Issue microcode updated message later (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Cleanup get_matching_model_microcode() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Remove unused arg of get_matching_model_microcode() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename mc_saved_in_initrd (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Use *wrmsrl variants (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Cleanup apply_microcode_intel() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Move the BUG_ON up and turn it into WARN_ON (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename mc_intel variable to mc (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename mc_saved_count to num_saved (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename local variables of type struct mc_saved_data (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Drop redundant printk prefix (Prarit Bhargava) [1253762]
-- [x86] microcode: Issue update message only once (Prarit Bhargava) [1253762]
-- [x86] microcode: Remove an unneeded NULL check (Prarit Bhargava) [1253762]
-- [x86] microcode: Remove redundant __setup() param parsing (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Make early loader look for builtin microcode too (Prarit Bhargava) [1253762]
-- [x86] microcode: Untangle from BLK_DEV_INITRD (Prarit Bhargava) [1253762]
-- [x86] cpu: Unify CPU family, model, stepping calculation (Prarit Bhargava) [1253762]
-- [x86] microcode: Initialize the driver late when facilities are up (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Move #ifdef DEBUG inside the function (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Remove maintainers from comments (Prarit Bhargava) [1253762]
-- [x86] microcode: Remove modularization leftovers (Prarit Bhargava) [1253762]
-- [x86] microcode: Merge the early microcode loader (Prarit Bhargava) [1253762]
-- [x86] ramdisk: Export relocated ramdisk VA (Prarit Bhargava) [1253762]
-- [x86] microcode: Unmodularize the microcode driver (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Do not overwrite final patch levels (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Extract current patch level read to a function (Prarit Bhargava) [1253762]
-- [include] bus: subsys: update return type of ->remove_dev() to void (Prarit Bhargava) [1253762]
-- [x86] microcode: Correct CPU family related variable types (Prarit Bhargava) [1253762]
-- [x86] microcode: Disable builtin microcode loading on 32-bit for now (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename get_matching_sig() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Simplify get_matching_sig() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Simplify update_match_cpu() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename get_matching_microcode (Prarit Bhargava) [1253762]
-- [x86] cpu/microcode: Zap changelog (Prarit Bhargava) [1253762]
-- [x86] microcode: Parse built-in microcode early (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Remove unused @rev arg of get_matching_sig() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Get rid of revision_is_newer() (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Drop the pci_ids.h dependency (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Fix printing of microcode blobs in show_saved_mc() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Check scan_microcode()'s retval (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Sanitize microcode_pointer() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Move mc arg last in get_matching_{microcode|sig} (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Simplify generic_load_microcode_early() (Prarit Bhargava) [1253762]
-- [x86] microcode: Consolidate family, model, ... code (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Rename update_match_revision() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Sanitize _save_mc() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Make _save_mc() return the updated saved count (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Simplify load_ucode_intel_bsp() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Get rid of last arg to load_ucode_intel_bsp() (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Do the mc_saved_src NULL check first (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Check if microcode was found before applying (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Fix out of bounds memory access to the extended header (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Handle truncated microcode images more robustly (Prarit Bhargava) [1253762]
-- [x86] microcode: Return error from driver init code when loader is disabled (Prarit Bhargava) [1253762]
-- [x86] microcode/intel: Fish out the stashed microcode for the BSP (Prarit Bhargava) [1253762]
-- [x86] microcode: Reload microcode on resume (Prarit Bhargava) [1253762]
-- [x86] microcode: Don't initialize microcode code on paravirt (Prarit Bhargava) [1253762]
-- [x86] microcode, intel: Drop unused parameter (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Do not use smp_processor_id() in preemtible context (Prarit Bhargava) [1253762]
-- [x86] microcode: Limit the microcode reloading to 64-bit for now (Prarit Bhargava) [1253762]
-- [x86] microcode: Update BSPs microcode on resume (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Fix ucode patch stashing on 32-bit (Prarit Bhargava) [1253762]
-- [x86] microcode: Fix accessing dis_ucode_ldr on 32-bit (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Fix early ucode loading on 32-bit (Prarit Bhargava) [1253762]
-- [x86] microcode, intel: Rename apply_microcode and declare it static (Prarit Bhargava) [1253762]
-- [x86] microcode, intel: Fix typos (Prarit Bhargava) [1253762]
-- [x86] microcode, intel: Add missing static declarations (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Fix missing static declaration (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Unify valid container checks (Prarit Bhargava) [1253762]
-- [x86] microcode: Move to a proper location (Prarit Bhargava) [1253762]
-- [x86] microcode, amd: Fix early ucode loading (Prarit Bhargava) [1253762]
-- [x86] microcode: Share native MSR accessing variants (Prarit Bhargava) [1253762]
-- [x86] microcode/amd: Tone down printk(), don't treat a missing firmware file as an error (Prarit Bhargava) [1253762]
-- [x86] revert "kernel: microcode, amd, avoid allocating with vmalloc & GFP_KERNEL when IRQs are disabled" (Prarit Bhargava) [1253762]
-
-* Mon May 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-411.el7]
-- [mfd] avoid newly introduced compiler warning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mfd: rtsx: Add support for rts522A (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx: Simplify function return logic (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Prevent DMA from stack (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Defer autosuspend while card exists (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Fix runtime PM deadlock (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Fix decimal printf format specifiers prefixed with 0x (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] drivers/mfd/rtsx_usb.c: export device table (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Add comment in rtsx_usb_suspend (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mfd] rtsx_usb: Fix possible race condition (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mfd: Add realtek USB card reader driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] revert "mmc: block: don't use parameter prefix if built as module" (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Fix card detect race for Intel BXT/APL (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Fix card detect race for Intel BXT/APL (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Allow override of get_cd() called from sdhci_request() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Allow override of mmc host operations (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: return error on failed mmc_blk_get() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdio_cis: fix unknown tuple for CISTPL_SDIO_STD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] debugfs: correct wrong voltage value (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Enable tuning according to the actual timing (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sd: limit SD card power limit according to cards capabilities (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: remove the unused quirks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: use to_pci_dev() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] cb710: use to_platform_device() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: restore behavior when setting VDD via external regulator (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] It is not an error for the card to be removed while suspended (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Allow more than 8 partitions per card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Optimize boot time by detecting cards simultaneously (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: use resource_size_t to store physical address (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix __mmc_switch timeout caused by preempt (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] enable MMC/SD/SDIO device to suspend/resume asynchronously (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix sdhci_runtime_pm_bus_on/off() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: 64-bit DMA actually has 4-byte alignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix DMA descriptor with zero data length (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdio: Fix invalid vdd in voltage switch power cycle (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Do not BUG on invalid vdd (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Do not default to 33 Ohm driver strength for Intel SPT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Fix incorrect use of driver strength switching HS200 and HS400 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Introduce MMC_CAP2_NO_SDIO cap (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mvsdio: delete platform data code path (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] fix mmc_{un, }register_pm_notifier prototypes (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix strings broken across multiple lines (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: change to use kmalloc when copy data from userspace (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Check for non-removable cards earlier in the error path (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Refactor code to register the MMC PM notifier (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove MMC_CAP_RUNTIME_RESUME as it's redundant (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Make runtime resume default behavior for MMC/SD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Keep host claimed in mmc_rescan() while calling host ops (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Invoke ->card_event() callback only when needed (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: enable support for the standard "wakeup-source" property (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] remove bondage between REQ_META and reliable write (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_GOLDFISH should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Improve reliability of mmc_select_hs400() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Move mmc_switch_status() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Fix HS setting in mmc_select_hs400() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Improve reliability of mmc_select_hs200() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: mmc: extend the mmc_send_tuning() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT bindings for eMMC hardware reset support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] omap_hsmmc: Enable omap_hsmmc for Keystone 2 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add more ACPI HIDs for Intel controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add more PCI IDs for Intel controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Add external dma interface support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] skip reclaiming host on mmc_add_card() error (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] android-goldfish: Allow compiling the driver with COMPILE_TEST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add mmc_regulator_set_vqmmc() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: move ocr-bit to voltage translation into separate function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove MMC_CLKGATE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] kconfig: reconfigure MMC_SDHCI_OF_ESDHC option (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add another PCI ID for an Intel eMMC host controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: fix simple_return.cocci warnings (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Make sdhci_pci_o2_fujin2_pci_init() static (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Build o2micro support in the same module (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: enable tuning for DDR50 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: enable CMD19 tuning for DDR50 mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: copy resp[] data on err for MMC_IOC_MULTI_CMD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] debugfs: implement ios show for SDR12 and SDR25 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Wait for card_busy before starting sdio requests (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add mmc_is_io_op helper function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: block: Add new ioctl to send multi commands (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] debugfs: implement ios show for driver type (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: Use of_property_read_u32 instead of open-coding it (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: call sdhci_init() before request irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Convert __mmc_switch() into an internal core function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] vub300: Remove unneded semicolons (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sd: Remove superfluous error code assignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Keep host claimed while invoking mmc_power_off|up() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: detect sd card reader on asus x205ta (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] pci_ids: Add AMD KERNCZ device ID support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fix init_card in 52Mhz (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add quirk SDHCI_QUIRK2_NEED_DELAY_AFTER_INT_CLK_RST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix dead loop of mmc_retune (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Don't return an error for CD/WP GPIOs when GPIOLIB is unset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix race condition in mmc_wait_data_done (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: also get preset value and driver type for MMC_DDR52 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: block: skip trim for some kingston eMMCs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix dma memory leak in sdhci_pre_req() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: use of_property_read_bool() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: set the clear transfer mode register quirk for O2Micro (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fixed bug in one erase-group budget TRIM (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: switch from programmable clock mode to divided one if needed (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] scatterlist: remove open coded sg_unmark_end instances (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: add quirk for broken data transfer over scheme (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: remove the unused blk_setting (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: fix pio mode when internal dmac is enabled (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: add fixup of broken CMD23 for Sandisk card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdio: avoid using NULL sdio_irq_thread pointer (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: properly check card present state when quirk NO_CARD_NO_RESET is set (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: don't use card state polling when CD GPIO is defined (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: let GPIO based card detection have higher precedence (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: don't use parameter prefix if built as module (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add quirk SDHCI_QUIRK_CLOCK_DIV_ZERO_BROKEN (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Optimize case for exactly one erase-group budget (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: make max-frequency property in device tree work (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Add missing mmc_blk_put() in power_ro_lock_show() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_MTK should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci check parameters before call dma_free_coherent (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: have drivers use blk_queue_max_discard_sectors() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] queue: prevent soft lockups on PREEMPT=n (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: mediatek: Add Mediatek MMC driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: Fixup request missing in mmc_blk_issue_rw_rq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix low memory corruption (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Change AMD SDHCI quirk application scope (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] queue: use swap() in mmc_queue_thread() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Restore behavior while creating OCR mask (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant ->power_restore() callback for SD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant ->power_restore() callback for MMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Enable HS400 for some Intel host controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci-pci: Add support for drive strength selection for SPT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add a callback to select drive strength (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: mmc: Add driver strength selection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: mmc: Read card's valid driver strength mask (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Record card drive strength (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Factor out common code in drive strength selection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add 'card' to drive strength selection callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Simplify card drive strength mask (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Allow card drive strength to be different to host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Reset driver type to default (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix driver type B and D handling in sdhci_do_set_ios() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc-test: use swap() in mmc_test_nonblock_transfer() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Increase delay for voltage to stabilize from 3.3V to 1.8V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Use core to handle absent write protect line (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] cast unsigned int to typeof(sector_t) to avoid unexpected error (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] cast u8 to unsigned long long to avoid unexpected error (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: sdhci: Use BUG_ON() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: mmc_test: Simplify a trivial if-return sequence (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dt: Allow to specify that no write protect signal is present (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Add support for disabling write-protect detection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Don't print reset warning if reset is not supported (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Retry errored data requests when re-tuning is needed (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Check re-tuning in the recovery path (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Flag re-tuning is needed on CRC errors (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Change to new way of doing re-tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add support for HS400 re-tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Separate out the mmc_switch status check so it can be re-used (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc: Hold re-tuning in mmc_sleep() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Hold re-tuning while bkops ongoing (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Hold re-tuning during erase commands (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Hold re-tuning during switch commands (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add support for re-tuning before each request (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Enable / disable re-tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: host: Add facility to support re-tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: Constify platform_device_id (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-sirf: fake version and capbility registers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdio: add reset callback to bus operations (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: Don't access RPMB partitions for normal read/write (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: add missing pm event in mmc_pm_notify to fix hib restore (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] revert "mmc: core: Convert mmc_driver to device_driver" (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: fix fifo ordering in big endian (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Convert the error field in struct mmc_command|data into an int (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: fix 64 BIT DMA quirks for rtsx (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add support for marking hpi as broken through devicetree (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Add a timeout for sending CMD11 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Enable runtime PM management of host devices (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove the ->enable|disable() callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fold mmc_set_bus_width calls into sdio_enable_4bit_bus (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix card presence logic in sdhci_request function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci-spear: Remove exported header (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-spear: Simplify by adding build dependency to CONFIG_OF (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Remove the sdhci exported header file (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: remove the unneeded check of disabled device (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Fix hardware dependencies for sdhci-pxav3 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] kconfig: replace PPC_OF with PPC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-iproc: add IPROC SDHCI driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: do not set AUTO_CMD12 for multi-block CMD53 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add quirk for ACMD23 broken (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: disable the clock in sdhci_pltfm_unregister() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] treewide: Fix typo in printk messages (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: mmc: tmio: tmio_mmc_data has .chan_priv_?x (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add hardware dependencies for sdhci-pxav3 and sdhci-pxav2 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: switch voltage before sdhci_set_ios in runtime resume (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Resolve BKOPS compatability issue (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Fix menuconfig alignment of MMC_SDHCI_* options (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Enable Ricoh MMC quirk by default (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Remove unnecessary temporary variable (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: check sg_count before long data xfer (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: finish request if no card exist (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] vub300: remove unreachable return value handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: fix format string warning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: remove TMIO_MMC_HAVE_CTL_DMA_REG flag (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mobile_sdhi: remove .init/.cleanup (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_data has .dma_rx_offset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_data has .alignment_shift (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .bus_shift (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .multi_io_quirk (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .clk_disable (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .clk_enable (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .write16_hook (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: tmio_mmc_host has .dma (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: add tmio_mmc_host_alloc/free() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: host: add new f_sdh30 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add a quirk for single block transactions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add a quirk for tuning work around (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add a voltage switch callback function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: sdhci: Added a space before ( (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Always init buf_ready_int (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Move mmc_card_removed() into mmc_start_request() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Simplify by adding mmc_execute_tuning() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Allow host driver to provide isr for card-detect interrupts (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: fix copy'n'paste typos in the comments (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sd: add reset bus_ops callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: refactor the hw_reset routines (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: always check status after reset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add SDIO function devicetree subnode parsing (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Remove redundant runtime PM idle callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: use pipeline mmc requests to improve performance (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Remove redundant ADMA page boundary warnings (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Make tuning block patterns static (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Remove redundant runtime PM idle callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: swap function position to avoid pre declaration (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add support for sdio card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add helper function to simplify code (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: init cookie at probe/card_event (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add dump_reg_range to simplify dump register (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Rework how to handle allocation of slot-gpio data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Free all resources for the class device at ->dev_release() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] slot-gpio: Make mmc_gpio_alloc() available for MMC core (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] slot-gpio: Use the parent device while allocating data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Remove option to explicitly free requested CD/WP GPIOs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Return error at failure of request CD/WP in mmc_of_parse() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Support the optional init_card() callback for MMC and SD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] mmc: sunxi: Convert MMC driver to the standard clock phase API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Set SDHCI_POWER_ON with external vmmc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add support for Intel SPT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add ACPI HID INT344D (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix sleep in atomic after inserting SD card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Disable re-tuning for HS400 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Simplify use of tuning timer (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add out_unlock to sdhci_execute_tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Tuning should not change max_blk_count (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: stop trying to switch width when only one bit is supported (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Let mmc_send_tuning() to take struct mmc_host* as parameter (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] queue: Improve error handling during allocation of bounce buffers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc / pm: Replace CONFIG_PM_RUNTIME with CONFIG_PM (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add two host capabilities for Intel (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add two host capabilities for BYT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC to BYT (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: add core-level function for sending tuning commands (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: hold SD Clock before CMD11 during Signal (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: add support for the other bit of sdio interrupt (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Increase max_devices (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: add support for ARM64 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: reset sdio card properly on resume (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: use card->ocr when negotiating voltage setting in mmc_sdio_power_restore (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] add Toshiba PCI SD controller driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: consistent handling of initial values (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Add HS400 support to SDHCI driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Clear also HS400 1.2V capability if 1.2V is not supported (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix vqmmc error setting (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Remove unused SDHCI_CTRL_HS_SDR200 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Add IDMAC 64-bit address mode support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: enable sdhci doesn't support hs200 quirk for AMD sdhci (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: enable the clear transfer mode register quirk for AMD sdhci (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Add a quirk for AMD SDHC transfer mode register need to be cleared for cmd without data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: use mmc_send_status to check hw_reset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc_test: Extend "Badly aligned" tests for 8-byte alignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add 64-bit DMA support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add 64-bit DMA support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Add 64-bit ADMA support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Define ADMA descriptor structure (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Define ADMA constants (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Define maximum segments (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Parameterize ADMA sizes and alignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Use 'void *' for not 'u8 *' for ADMA data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add sdhci_adma_mark_end() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Rename adma_desc to adma_table (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Rename two ADMA-related functions for consistency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix ADMA table size warning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix ADMA page boundary warnings (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Fix incorrect ADMA2 descriptor table size (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Convert to use kzalloc() for CXD register buffers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Don't handle buffers on stack while fetching CXD registers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove the redundant mmc_send_ext_csd() API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Use mmc_get_ext_csd() instead of mmc_send_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Use mmc_get_ext_csd() instead of mmc_send_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Export mmc_get_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Don't panic when fetching EXT_CSD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Let's callers of from mmc_get_ext_csd() do error handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fetch and decode EXT_CSD from mmc_read_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add helper function for EXT_CSD support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove unnecessary 'out of memory' message (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant check of max_dtr while selecting timings (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant check while selecting powerclass (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove duplicated definition of mmc_send_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove mmc_free_ext_csd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Remove old card detect infrastructure (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: silence a shift wrapping warning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Report firmware version for eMMC 5.0 devices (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove unused mmc_list_to_card() macro (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: block: Use dev_set|get_drvdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] msm_sdcc: Use platform_set|get_drvdata (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Convert mmc_driver to device_driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Convert the mmc_driver to use the modern PM ops (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Don't export the to_sdio_driver macro (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove superfluous ifdefs for SDIO bus' PM callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix prepared requests while doing bkops (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fix error paths and messages in mmc_init_card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add debug message for SET_BLOCK_COUNT result (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Initialize SET_BLOCK_COUNT request fields (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix error conditions for controller reset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Balance vmmc regulator_disable() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci-o2micro: Fix Dell E5440 issue (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: add newline to sysfs display of force_ro (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: fix card detection regression (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: drop owner assignment from platform_drivers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Fix Braswell eMMC timeout clock frequency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Pass HID and UID to probe_slot (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Get UID directly from acpi_device (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Fix Braswell eMMC timeout clock frequency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Let a driver override timeout clock frequency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add Bay Trail and Braswell SD card detect (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Set SDHCI_QUIRK2_STOP_WITH_TC for Intel BYT host controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add a HID and UID for a SD Card host controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Set SDHCI_QUIRK2_STOP_WITH_TC for Intel host controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Add quirk for always getting TC with stop cmd (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: restore detect line inversion semantics (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Fix incorrect warning when setting 0 Hz via debugfs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Fix use of wrong device in mmc_gpiod_free_cd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx_pci: Set power related cap2 macros (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add new power_mode MMC_POWER_UNDEFINED (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: execute tuning when device is not busy (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Convert pr_warning to pr_warn (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Consolidate emmc tuning blocks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] don't request CD IRQ until mmc_start_host() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: change stop errors to info (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Checks EXT_CSD_PARTITION_SETTING_COMPLETED before partitions computation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Replace "enhanced_area_en" attribute by "partition_setting_completed" (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Move code that manages user area and gp partitions into functions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: switch OF parser to use gpio descriptors (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: add gpiod variant to get wp GPIO (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: Prevent partition scan for the eMMC boot areas (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: remove MMC_CAP2_NO_MULTI_READ flags (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: use .multi_io_quirk on tmio_mmc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: disable preset register for Baytrail and Merrifield (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Add .multi_io_quirk callback for multi I/O HW bug (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: check 1.2v IO capability for SDHC host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fix sequence for I/O voltage in DDR mode for eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: add probe_slot method for emmc/sd/sdio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: enable runtime pm for Intel Merrifield platform (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: handle busy-end interrupt during command (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Make sdhci_disable_irq_wakeups() static (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move timeout_clk dynamically calculation code into common code (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: calculate timeout_clk conditionally in sdhci_add_host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add platform set_timeout hook (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add platform get_max_timeout_count hook (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Support voltage changes (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: use mmc_regulator_get_supply to handle regulators (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: resolve divded by zero panic (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add PCI IDs for Intel Braswell (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: move rockchip related code to a separate file (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: add actual clock support as option (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: remove Renesas specific #ifdef (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: add TMIO_MMC_SDIO_STATUS_QUIRK (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: control multiple block transfer mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: care about DMA tx/rx addr offset (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Use regulator_get_voltage() if OCR mask is empty (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: implement Driver Stage Register handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi.c: Use SET_RUNTIME_PM_OPS macro to set runtime pm callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Use SET_RUNTIME_PM_OPS macro to set runtime pm callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] remove .owner field for drivers using module_platform_driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: sdio: Fix unconditional wake_up_process() on sdio thread (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: Add support for MIPS (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: Add dependency on DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci : recompute timeout_clk when needed (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci : handle busy timeout irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx_usb_sdmmc: fix incorrect last byte in R2 response (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx_pci_sdmmc: fix incorrect last byte in R2 response (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Correct the value of MMC_NUM_PHY_PARTITION (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix the wrong type of curr (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: Do not use parent as the host's device (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove fixed voltage regulator logic (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmci: Add qcom dml support to the driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: Slot quirk "disable-wp" is deprecated (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: remove PCI PM functions in suspend/resume callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Do not advertise secure discard if it is blacklisted (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-msm: Get COMPILE_TEST support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add DDR50 1.8V mode support for BayTrail eMMC Controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Preset value not supported in Baytrail eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_USDHI6ROL0 should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_SH_MMCIF should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] MMC_OMAP_HS should depend on HAS_DMA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-st: Intial support for ST SDHCI controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add support for async request (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] s3cmci: port DMA code to dmaengine API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Allow forward compatibility for eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Replace host->mmc with mmc where possible (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: avoid double-delay while transitioning to 1.8V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: SDIO host controller support for Intel Quark X1000 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Remove blank line (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Improve external VDD regulator support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sd: warn if card stays busy during init (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] quirks: Fixup debug message (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Remove unused ret variables (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: Use mmc core regulator infrastucture (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant runtime_idle callback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] simplify SDHCI Kconfig dependencies (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] omap: don't select TPS65010 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] add a driver for the Renesas usdhi6rol0 SD/SDIO host controller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dove: fix missing MACH_DOVE dependency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: SD tuning is broken for some controllers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: track whether preset mode is currently enabled in hardware (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move remaining power handling into sdhci_set_power() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move regulator handling into sdhci_set_power() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: remove platform_suspend/platform_resume callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clean up sdhci_execute_tuning() decision (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: cache timing information locally (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: convert sdhci_set_uhs_signaling() into a library function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: set_uhs_signaling() need not return a value (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: convert sdhci_set_clock() into a library function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move setting mmc->actual_clock into set_clock handlers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: move setting host->clock into sdhci_do_set_ios() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clean up sdhci_update_clock()/sdhci_set_clock() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: convert ADMA descriptors to a coherent allocation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: avoid sync'ing the SG if there's no misalignment (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: move FSL ESDHC reset handling quirk into esdhc code (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: convert reset into a library function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: convert generic bus width setup to library function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: plug hole in disabling card detection interrupts (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: more efficient interrupt enable register handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: allow sdio interrupts while sdhci runtime suspended (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: push card_tasklet into threaded irq handler (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: convert to new SDIO IRQ handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clean up sdio interrupt enable handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clean up interrupt handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdio_irq: rework sdio irq handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: remove mdelay in eMMC tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Improve support for deferred regulators (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: fix possible linking error if built-in (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: add DT bindings for eMMC HS400 1.8/1.2V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: add support for HS400 mode of eMMC5.0 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: rework selection of bus speed mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] step power class after final selection of bus mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: identify available device type to select (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: drop the speed mode of card's state (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Try other signal levels during power up (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] moxart: Add MOXA ART SD/MMC driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: remove unused member variable (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Add realtek USB sdmmc host driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: add R1-no-CRC mmc command type handle (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Invoke sdio func driver's PM callbacks from the sdio bus (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Use maximum timeout values in case TACC field is zero (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Convert to use ATTRIBUTE_GROUPS (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: card.h: Use NULL instead of 0 for END_FIXUP (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Delay the card_event callback into the mmc_rescan worker (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clarify DDR timing mode between SD-UHS and eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: clarify DDR timing mode between SD-UHS and eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: clarify DDR timing mode between SD-UHS and eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Intel SDIO has broken card detect (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-msm: Initial support for Qualcomm chipsets (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: only reprogram retuning timer when flag is set (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rename ARCH_BCM to ARCH_BCM_MOBILE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Allow for irq being shared (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Add device id 80860F16 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: Fix broken card detect for ACPI HID 80860F14 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Add GPIO descriptor based CD GPIO API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] slot-gpio: Split out CD IRQ request into a separate function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] slot-gpio: Record GPIO descriptors instead of GPIO numbers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: typo fix in printk specifier (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci-spear: remove support for power gpio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc-socfpga: Remove the SOCFPGA specific platform for dw_mmc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] ushc: Fix incorrect parameter in sizeof (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Fixup busy detection while invoking stop cmd at recovery (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Respect hw busy detection in card_busy_detect() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Implement card_busy_detect() for busy detection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] block: Use R1 responses for stop cmds for read requests (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Respect host's max_busy_timeout when sending sleep cmd (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Use generic CMD6 time while switching to eMMC HS200 mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fixup busy detection for mmc switch operations (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Minor simplifications to __mmc_switch (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add ignore_crc flag to __mmc_switch (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Rename cmd_timeout_ms to busy_timeout (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Rename max_discard_to to max_busy_timeout (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT bindings for eMMC HS200 1.8/1.2V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT bindings for eMMC high-speed DDR 1.8/1.2V (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT bindings for SD card's UHS bus speed modes (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: fix card poweroff bug (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add support for realtek rts5250 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Enable MMC_CAP2_CACHE_CTRL as default (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Use mmc_flush_cache() during mmc suspend (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove support for MMC_CAP2_NO_SLEEP_CMD (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove unused host cap MMC_CAP2_BROKEN_VOLTAGE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: card: Remove host cap MMC_CAP2_SANITIZE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove unnecessary validations for bus_ops callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Fix possibility of chip->fixes being null (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Fix BYT sd card getting stuck in runtime suspend (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Allow for long command timeouts (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdio: add a quirk for broken SDIO_CCCR_INTx polling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix lockdep error in tuning routine (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: add broken HS200 quirk for Intel Merrifield (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add quirk for broken HS200 support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sh_mmcif: Enable driver compilation with COMPILE_TEST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhi: Enable driver compilation with COMPILE_TEST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: add new TMIO_MMC_HAVE_HIGH_REG flags (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio: bus_shift become tmio_mmc_data member (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] Do not call get_cd for non removable cards (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: add new ACPI ID (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Setting the host->mrq to NULL before executing tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] fix host release issue after discard operation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: export pltfm suspend/resume api (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: mmc DDR mode should not depend on UHS_DDR50 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] msm_sdcc: Limit driver to platforms that use it (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: convert to use GPIO descriptor API (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: clear auto cmd setting bits for no data cmds (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Silence compiler warning in __mmc_switch (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Avoid needless loop while handling SDIO interrupts in sdhci_irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dma-api: mmc: sdhci-acpi: use dma_coerce_mask_and_coherent() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Add MMC_CAP_RUNTIME_RESUME to resume at runtime_resume (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Improve runtime PM support during suspend/resume for sd/mmc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove redundant mmc_power_up|off at runtime callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: Don't force card to active state when entering suspend/shutdown (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Remove deprecated mmc_suspend|resume_host APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] via-sdmmc: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: Remove redundant suspend and resume callbacks (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] tifm_sd: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] vub300: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] msm_sdcc: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] cb710: Move away from using deprecated APIs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Signal wakeup event at card insert/removal (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Collect common code for card ocr validation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Prevent violation of specs while initializing cards (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Move cached value of the negotiated ocr mask to card struct (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Cleanup code for setting ocr mask for SDIO (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Remove unnecessary retry mechanism at SDIO attach (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Let mmc_set_signal_voltage take ocr as parameter (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Let mmc_power_up|cycle take ocr as parameter (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Do not poll for busy with status cmd for all switch cmds (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: Add SDIO/MMC device ID support for Intel Clovertrail (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: remove unneeded call when have preset value quirk (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: report error once the maximum tuning loops exhausted or timeout (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: add Intel Merrifield support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] convert bus code to use dev_groups (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: allow platform access of sdhci_send_command (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add hooks for platform specific tuning (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: clean up duplicate macros (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] add ignorance case for CMD13 CRC error (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: guarantee stop-abort cmd in data errors (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: control card read threshold (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: dw_mmc: adjust the fifoth with block size (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: remove dead function mmc_try_claim_host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] revert "mmc: tmio-mmc: Remove .set_pwr() callback from platform data" (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] memstick: rtsx: Modify copyright comments (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] rtsx: Clear SD_CLK toggle enable bit if switching voltage fail (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: Add support for ARC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: get voltage from sdhc host (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: parse voltage from device-tree (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] omap_hsmmc: use the generic config for omap2plus devices (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: revision-specific CLK_CTRL2 handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: revision-specific Command Completion Signal handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: move header include from header into .c (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio-mmc: Remove .set_pwr() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: tmio-mmc: Remove .get_cd() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mobile_sdhi: Remove .set_pwr() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mobile_sdhi: Remove .get_cd() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: Remove .set_pwr() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sh_mmcif: Remove .down_pwr() callback from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: slot-gpio: Add debouncing capability to mmc_gpio_request_cd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: add missing MFD_SYSCON dependency for SOCFPGA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Set data timeout for mmc bus test commands (CMD14 and CMD19) (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] fix null pointer use in mmc_blk_remove_req (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] mmc_test: replace strict_strtol() with kstrtol_from_user() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: free mmc_card if cmd 3, 9, 7 fails in mmc_sd_init_card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: Remove a duplicate line in Makefile (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: request irq after sdhci_init() is called (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] vub300: Staticize vub300_init_card (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Indicate that regulators may be absent (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Indicate that vmmcq may be absent (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] bcm281xx SDHCI driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: add card_event callback to sdhci (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Fixup Oops for SDIO shutdown (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: add another device id (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: esdhc: Fix bug when writing to SDHCI_HOST_CONTROL register (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: production year for eMMC 4.41 and later (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: fix ctrl_2 on super-speed selection (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] mmc: dw_mmc-pltfm: add Rockchip variant (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: add support for eMMC hardware reset for HID 80860F14 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: add support for eMMC hardware reset for BYT eMMC (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] dw_mmc: Add support DW SD/MMC driver on SOCFPGA (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: fix caps2 for HS200 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Add DT-bindings for MMC_CAP2_FULL_PWR_CYCLE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Invent MMC_CAP2_FULL_PWR_CYCLE (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Enable power_off_notify for eMMC shutdown sequence (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: improve card removal check in sdhci_card_event() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] mmc: dw_mmc: Add the ability to set the ciu clock frequency (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] mmc: dw_mmc: Handle late vmmc regulators with EPROBE_DEFER (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] card: fixing an false identification of SANITIZE command (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] host: use platform_{get,set}_drvdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: fix error return code in sdhci_acpi_add_own_cd() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Update the ext-csd.rev check for eMMC5.1 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: return mmc_of_parse() errors to caller (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] msm_sdcc: Convert to clk_prepare/unprepare (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci: Add size for caller in init+register (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pci: support runtime PM for BYT SD cards (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-acpi: support runtime PM for ACPI HID 80860F14 SD cards (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhci: add ability to stay runtime-resumed if the card is powered up (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] remove unnecessary platform_set_drvdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] sdhci-pltfm: Allow drivers to set quirks2 from platform data (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhi/tmio: switch to using dmaengine_slave_config() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: sdhi/tmio: make DMA filter implementation specific (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Fix select power class after resume (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: card: Adding support for sanitize in eMMC 4.5 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] mmc: core: Re-use code for MMC_CAP2_DETECT_ON_ERR in polling mode (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [mmc] core: Only execute tuning for SDR50 and SDR104 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: include gpio/consumer.h in of_gpio.h for desc_to_gpio() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: consumer.h: Move forward declarations outside #ifdef (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] mcp23s08: depend on OF_GPIO (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] mcp23s08: Add irq functionality for i2c chips (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio / acpi: get rid of acpi_gpio.h (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio / acpi: register to ACPI events automatically (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] clps711x: Enable driver compilation with COMPILE_TEST (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] add GPIO support for SMSC SCH311x (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio / acpi: return -ENOENT when no mapping exists (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: Add module device table and mark table const (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: Fix irq mask/unmask by writing bits instead of numbers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: return -ENOENT if no GPIO mapping exists (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] driver for Xtensa GPIO32 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: update inline documentation of gpiod_get_index() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: convert gpiod_lookup description to kernel-doc (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: introduce chip_* to print with chip->label prefix (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: unify pr_* messages format (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: better lookup method for platform GPIOs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] documentation: gpiolib: document new interface (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio/pinctrl: make gpio_chip members typed boolean (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] rewrite gpiochip_offset_to_desc() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: change a warning to debug message when failing to get gpio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: use platform GPIO mappings as fallback (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: fix lookup of platform-mapped GPIOs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: add missing declarations (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] Add MOXA ART GPIO driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-lynxpoint: Allow building as a module (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: Remove duplicate include of errno.h (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: fix of_find_gpio() when OF not defined (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] fix memory leak in error path (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: make msm_gpio.summary_irq signed for error handling (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: use dedicated flags for GPIO properties (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: fix find_chip_by_name() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pl061: don't depend on CONFIG_ARM (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: provide a declaration of seq_file in gpio/driver.h (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: provide stubs for devres gpio functions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: devres: add missing headers (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: make GPIO_DEVRES depend on GPIOLIB (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: devres: fix devm_gpiod_get_index() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib / acpi: allow passing GPIOF_ACTIVE_LOW for GpioInt resources (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib / acpi: add ACPI support for gpiod_get_index() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib / acpi: convert to gpiod interfaces (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: add gpiod_get() and gpiod_put() functions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: port of_ functions to use gpiod (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpiolib: export descriptor-based GPIO interface (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] pinctrl/gpio: non-linear GPIO ranges accesible from gpiolib (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [documentation] gpio: clean up gpio-ranges documentation (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] gpio: add API to be strict about GPIO IRQ usage (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: let gpiod_request() return -EPROBE_DEFER (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: safer implementation of desc_to_gpio() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib / acpi: move acpi_gpiochip_free_interrupts next to the request function (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] samsung: Use CONFIG_ARCH_S3C64XX to check for S3C64XX support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: Add OF support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pca953x: Don't flip bits on PCA957x GPIO expanders when probing them (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] arm: plat-iop: move the GPIO driver to drivers/gpio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] ucb1400: Can be built as a module (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: factorize gpiod_get/set functions (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] emev2: gpiolib: Enable support for OF (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: Include GPIO label in log messages for GPIOs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: Provide helper macros for logging of GPIO events (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: only use set_irq_flags() on ARM (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib-acpi: convert acpi_evaluate_object() to acpi_execute_simple_method() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: call the gpio user handler iff gpio_to_irq is done (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: remove the irq_demux_work and gpio->irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: change to devm_request_threaded_irq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] return -ENOTSUPP if debounce cannot be set (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] improve error path in gpiolib (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] add GPIO support for F71882FG and F71889F (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] implement gpio-ranges binding document fix (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] samsung: Drop support for Exynos SoCs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio mips/octeon: Add a driver for OCTEON's on-chip GPIO pins (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: Remove pdata argument to pcf857x_irq_domain_init() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pcf857x: Sort headers alphabetically (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] pca953x: fix gpio input on gpio offsets >= 8 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: Staticize local variable 'msm_gpio' (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib-of.c: make error message more meaningful by adding the node name and index (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] use dev_get_platdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio_msm: Fix build error due to missing err.h (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] Kontron PLD gpio driver (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: replace strict_strtol() with kstrtol() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio]  gpio: msm: Fix the error condition for reading ngpio (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpiolib: remove warnning of allocations with IRQs disabled (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: remove Withney point support (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] arm: samsung: Introduce GPIO_SAMSUNG Kconfig entry (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio_msm: Convert to use devm_ioremap_resource (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] devres: make comments proper (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] xilinx: Enable driver for Xilinx zynq (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm: Add device tree and irqdomain support for gpio-msm-v2 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] msm-v1: Remove errant __devinit to fix compile (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] arm: msm: Remove gpiomux-v2 and re-organize MSM_GPIOMUX configs (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] clps711x: Rewrite driver for using generic GPIO code (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: drop away explicit casting (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: amend error messages (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: use managed functions pcim_* and devm_* (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: do not use direct access to iomapped memory (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] gpio-langwell: initialize lock before usage (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] max7300: Fix trivial typo in Kconfig help text (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [gpio] langwell: remove unnecessary platform_set_drvdata() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [include] regulator: Sync regulator/consumer.h with v4.5 (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-- [kernel] genirq: Provide synchronize_hardirq() (Don Zickus) [1127975 1277866 1280133 1286932 1297039]
-
-* Mon May 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-410.el7]
-- [tools] perf stat: Fallback to user only counters when perf_event_paranoid > 1 (Jiri Olsa) [1336447]
-- [tools] perf evsel: Handle EACCESS + perf_event_paranoid=2 in fallback() (Jiri Olsa) [1336447]
-- [tools] perf evsel: Improve EPERM error handling in open_strerror() (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Do not reassign parg after collapse_tree() (Jiri Olsa) [1336447]
-- [tools] perf probe: Check if dwarf_getlocations() is available (Jiri Olsa) [1336447]
-- [tools] perf dwarf: Guard !x86_64 definitions under #ifdef else clause (Jiri Olsa) [1336447]
-- [tools] perf tools: Use readdir() instead of deprecated readdir_r() (Jiri Olsa) [1336447]
-- [tools] perf thread_map: Use readdir() instead of deprecated readdir_r() (Jiri Olsa) [1336447]
-- [tools] perf script: Use readdir() instead of deprecated readdir_r() (Jiri Olsa) [1336447]
-- [tools] perf tools: Use readdir() instead of deprecated readdir_r() (Jiri Olsa) [1336447]
-- [tools] perf diff: Fix duplicated output column (Jiri Olsa) [1336447]
-- [tools] perf intel-pt: Fix segfault tracing transactions (Jiri Olsa) [1336447]
-- [tools] perf jit: genelf makes assumptions about endian (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix determination of a callchain node's childlessness (Jiri Olsa) [1336447]
-- [tools] perf tools: Add missing initialization of perf_sample.cpumode in synthesized samples (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix build break on powerpc (Jiri Olsa) [1336447]
-- [tools] perf bench: Fix detached tarball building due to missing 'perf bench memcpy' headers (Jiri Olsa) [1336447]
-- [tools] perf tests: Fix tarpkg build test error output redirection (Jiri Olsa) [1336447]
-- [tools] perf tools: Unexport some methods unused outside strbuf.c (Jiri Olsa) [1336447]
-- [tools] perf probe: No need to use formatting strbuf method (Jiri Olsa) [1336447]
-- [tools] perf help: Use asprintf instead of adhoc equivalents (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove unused perf_pathdup, xstrdup functions (Jiri Olsa) [1336447]
-- [tools] perf tools: Do not include stringify.h from the kernel sources (Jiri Olsa) [1336447]
-- [tools] tools include: Copy linux/stringify.h from the kernel (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Remove redundant CPU output (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove needless 'extern' from function prototypes (Jiri Olsa) [1336447]
-- [tools] perf tools: Simplify die() mechanism (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove unused DIE_IF macro (Jiri Olsa) [1336447]
-- [tools] perf script: Remove lots of unused arguments (Jiri Olsa) [1336447]
-- [tools] perf thread: Rename perf_event__preprocess_sample_addr to thread__resolve (Jiri Olsa) [1336447]
-- [tools] perf machine: Rename perf_event__preprocess_sample to machine__resolve (Jiri Olsa) [1336447]
-- [tools] perf tools: Add cpumode to struct perf_sample (Jiri Olsa) [1336447]
-- [tools] perf tests: Forward the perf_sample in the dwarf unwind test (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove misplaced __maybe_unused (Jiri Olsa) [1336447]
-- [tools] perf list: Fix documentation of :ppp (Jiri Olsa) [1336447]
-- [tools] perf bench numa: Fix assertion for nodes bitfield (Jiri Olsa) [1336447]
-- [tools] perf symbols: Record text offset in dso to calculate objdump address (Jiri Olsa) [1336447]
-- [tools] Move utilities.mak from perf to tools/scripts/ (Jiri Olsa) [1336447]
-- [tools] perf test: Remove 'core_id' check in topo test (Jiri Olsa) [1336447]
-- [tools] Copy hashtable.h into tools directory (Jiri Olsa) [1336447]
-- [tools] tools, perf: make gfp_compact_table up to date (Jiri Olsa) [1336447]
-- [tools] perf stat: Add --metric-only support for -A (Jiri Olsa) [1336447]
-- [tools] perf stat: Implement --metric-only mode (Jiri Olsa) [1336447]
-- [tools] perf stat: Document CSV format in manpage (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Check sort keys before hot key actions (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Allow thread filtering for comm sort key (Jiri Olsa) [1336447]
-- [tools] perf tools: Add sort__has_comm variable (Jiri Olsa) [1336447]
-- [tools] perf tools: Recalc total periods using top-level entries in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove nr_sort_keys field (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Cleanup hist_browser__fprintf_hierarchy_entry() (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove hist_entry->fmt field (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix command line filters in hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf tools: Add more sort entry check functions (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix hist_entry__filter() for hierarchy (Jiri Olsa) [1336447]
-- [tools] perf jitdump: Build only on supported archs (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Add '~' operation within arg_num_eval() (Jiri Olsa) [1336447]
-- [tools] perf tools: Omit unnecessary cast in perf_pmu__parse_scale (Jiri Olsa) [1336447]
-- [tools] perf tools: Pass perf_hpp_list all the way through setup_sort_list (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix perf script python database export crash (Jiri Olsa) [1336447]
-- [tools] perf jitdump: DWARF is also needed (Jiri Olsa) [1336447]
-- [tools] perf report: Use hierarchy hpp list on gtk (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Use hierarchy hpp list (Jiri Olsa) [1336447]
-- [tools] perf report: Use hierarchy hpp list on stdio (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix indent for multiple hierarchy sort key (Jiri Olsa) [1336447]
-- [tools] perf hists: Support multiple sort keys in a hierarchy level (Jiri Olsa) [1336447]
-- [tools] perf hists: Use own hpp_list for hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp__setup_hists_formats() (Jiri Olsa) [1336447]
-- [tools] perf stat: Document --detailed option (Jiri Olsa) [1336447]
-- [tools] perf hists: Add level field to struct perf_hpp_fmt (Jiri Olsa) [1336447]
-- [tools] perf tools: Use 64-bit shifts with (TSC) time conversion (Jiri Olsa) [1336447]
-- [tools] perf jit: Move clockid validation (Jiri Olsa) [1336447]
-- [tools] perf jit: Let jit_process() return errors (Jiri Olsa) [1336447]
-- [tools] perf session: Simplify tool stubs (Jiri Olsa) [1336447]
-- [tools] perf inject: Hit all DSOs for AUX data in JIT and other cases (Jiri Olsa) [1336447]
-- [tools] perf tools: Explicitly declare inc_group_count as a void function (Jiri Olsa) [1336447]
-- [tools] perf stat: Check for frontend stalled for metrics (Jiri Olsa) [1336447]
-- [tools] perf tests: Initialize sa.sa_flags (Jiri Olsa) [1336447]
-- [tools] perf test: Fix hists related entries (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Fix output of llu for 64 bit values read on 32 bit machines (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Set int_array fields to NULL if freeing from error (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Fix time stamp rounding issue (Jiri Olsa) [1336447]
-- [tools] perf script: Fix double free on command_line (Jiri Olsa) [1336447]
-- [tools] tools build: Use .s extension for preprocessed assembler code (Jiri Olsa) [1336447]
-- [tools] perf stat: Support metrics in --per-core/socket mode (Jiri Olsa) [1336447]
-- [tools] perf stat: Implement CSV metrics output (Jiri Olsa) [1336447]
-- [tools] perf record: Ensure return non-zero rc when mmap fail (Jiri Olsa) [1336447]
-- [tools] perf record: Introduce record__finish_output() to finish a perf.data (Jiri Olsa) [1336447]
-- [tools] perf record: Extract synthesize code to record__synthesize() (Jiri Olsa) [1336447]
-- [tools] perf record: Use WARN_ONCE to replace 'if' condition (Jiri Olsa) [1336447]
-- [tools] perf data: Explicitly set byte order for integer types (Jiri Olsa) [1336447]
-- [tools] perf data: Support converting data from bpf_perf_event_output() (Jiri Olsa) [1336447]
-- [tools] perf stat: Check existence of frontend/backed stalled cycles (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix locale handling in pmu parsing (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Split pevent_print_event() into specific functionality functions (Jiri Olsa) [1336447]
-- [tools] perf trace: Check and discard not only 'nr' but also '__syscall_nr' (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix python extension build (Jiri Olsa) [1336447]
-- [tools] perf tools: Only set filter for tracepoints events (Jiri Olsa) [1336447]
-- [tools] perf config: Bring perf_default_config to the very beginning at main() (Jiri Olsa) [1336447]
-- [tools] perf report: Update column width of dynamic entries (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix dynamic entry display in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf report: Left align dynamic entries in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf report: Fix indentation of dynamic entries in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix comparing of dynamic entries (Jiri Olsa) [1336447]
-- [tools] perf report: Show message for percent limit on gtk (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Show message for percent limit (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Cleanup hist_browser__update_percent_limit() (Jiri Olsa) [1336447]
-- [tools] perf report: Show message for percent limit on stdio (Jiri Olsa) [1336447]
-- [tools] perf hists: Add more helper functions for the hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf script: Remove duplicated code and needless script_spec__findnew() (Jiri Olsa) [1336447]
-- [tools] perf script: Exception handling when the print fmt is empty (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix parsing of pmu events with empty list of modifiers (Jiri Olsa) [1336447]
-- [tools] perf jvmti: improve error message in Makefile (Jiri Olsa) [1336447]
-- [tools] perf tools: Use asprintf() for simple string formatting/allocation (Jiri Olsa) [1336447]
-- [tools] perf top: Add --hierarchy option (Jiri Olsa) [1336447]
-- [tools] perf hists: Support decaying in hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf report: Add --hierarchy option (Jiri Olsa) [1336447]
-- [tools] perf ui/gtk: Implement hierarchy output mode (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Align column header in hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Implement hierarchy output (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Support collapsing/expanding whole entries in hierarchy (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Count number of hierarchy entries (Jiri Olsa) [1336447]
-- [tools] perf ui/stdio: Align column header for hierarchy output (Jiri Olsa) [1336447]
-- [tools] perf ui/stdio: Implement hierarchy output mode (Jiri Olsa) [1336447]
-- [tools] perf hists: Count number of sort keys (Jiri Olsa) [1336447]
-- [tools] perf hists: Resort after filtering hierarchy (Jiri Olsa) [1336447]
-- [tools] perf hists: Support filtering in hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce hist_entry__filter() (Jiri Olsa) [1336447]
-- [tools] perf hists: Add helper functions for hierarchy mode (Jiri Olsa) [1336447]
-- [tools] perf hists: Resort hist entries with hierarchy (Jiri Olsa) [1336447]
-- [tools] perf hists: Basic support of hierarchical report view (Jiri Olsa) [1336447]
-- [tools] perf tools: Add helper functions for some sort keys (Jiri Olsa) [1336447]
-- [tools] perf tools: Make binary data printer code in trace_event public available (Jiri Olsa) [1336447]
-- [tools] perf script: Display data_src values (Jiri Olsa) [1336447]
-- [tools] perf tools: Change perf_mem__lck_scnprintf to return nb of displayed bytes (Jiri Olsa) [1336447]
-- [tools] perf tools: Change perf_mem__snp_scnprintf to return nb of displayed bytes (Jiri Olsa) [1336447]
-- [tools] perf tools: Change perf_mem__lvl_scnprintf to return nb of displayed bytes (Jiri Olsa) [1336447]
-- [tools] perf tools: Change perf_mem__tlb_scnprintf to return nb of displayed bytes (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce perf_mem__lck_scnprintf function (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce perf_mem__snp_scnprintf function (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce perf_mem__lvl_scnprintf function (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce perf_mem__tlb_scnprintf function (Jiri Olsa) [1336447]
-- [tools] perf mem: Introduce perf_mem_events__name function (Jiri Olsa) [1336447]
-- [tools] perf mem record: Check for memory events support (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove strbuf_{remove, splice}() (Jiri Olsa) [1336447]
-- [tools] perf help: No need to use strbuf_remove() (Jiri Olsa) [1336447]
-- [tools] perf tools: Dont stop PMU parsing on alias parse error (Jiri Olsa) [1336447]
-- [tools] perf script: Display addr/data_src/weight columns for raw events (Jiri Olsa) [1336447]
-- [tools] perf script: Add data_src and weight column definitions (Jiri Olsa) [1336447]
-- [tools] perf tools: Use ARRAY_SIZE in mem sort display functions (Jiri Olsa) [1336447]
-- [tools] perf mem: Add -e record option (Jiri Olsa) [1336447]
-- [tools] perf tools: Add monitored events array (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce cl_offset function (Jiri Olsa) [1336447]
-- [tools] perf tools: Make cl_address global (Jiri Olsa) [1336447]
-- [tools] tools lib traceevent: Implement '' operation (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix assertion failure on dynamic entry (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix column width setting on 'trace' sort key (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix alignment on some sort keys (Jiri Olsa) [1336447]
-- [tools] perf tools: Update srcline/file if needed (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix segfault on dynamic entries (Jiri Olsa) [1336447]
-- [tools] perf tools: Remove duplicate typedef config_term_func_t definition (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix build on older systems (Jiri Olsa) [1336447]
-- [tools] perf report: Check error during report__collapse_hists() (Jiri Olsa) [1336447]
-- [tools] perf hists: Return error from hists__collapse_resort() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Check return value of append_chain_children() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Check return value of split_add_child() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Add enum match_result for match_chain() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Check return value of fill_node() (Jiri Olsa) [1336447]
-- [tools] perf callchain: Check return value of add_child() (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Fix percentage update on key press (Jiri Olsa) [1336447]
-- [tools] perf tools: Enable config and setting names for legacy cache events (Jiri Olsa) [1336447]
-- [tools] perf tools: Enable config raw and numeric events (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce opt_event_config nonterminal (Jiri Olsa) [1336447]
-- [tools] perf tools: Rename and move pmu_event_name to get_config_name (Jiri Olsa) [1336447]
-- [tools] perf stat: Bail out on unsupported event config modifiers (Jiri Olsa) [1336447]
-- [tools] perf tools: Create config_term_names array (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix checking asprintf return value (Jiri Olsa) [1336447]
-- [tools] perf stat: Handled scaled == -1 case for counters (Jiri Olsa) [1336447]
-- [tools] perf test: Reduce the sample_freq for the 'object code reading' test (Jiri Olsa) [1336447]
-- [tools] perf tests: Use perf_evlist__strerror_open() to provide hints about max_freq (Jiri Olsa) [1336447]
-- [tools] perf evlist: Handle -EINVAL for sample_freq > max_sample_rate in strerror_open() (Jiri Olsa) [1336447]
-- [tools] perf record: Add --all-user/--all-kernel options (Jiri Olsa) [1336447]
-- [tools] perf evlist: Reference count the cpu and thread maps at set_maps() (Jiri Olsa) [1336447]
-- [tools] perf stat: Move noise/running printing into printout (Jiri Olsa) [1336447]
-- [tools] perf stat: Add support for metrics in interval mode (Jiri Olsa) [1336447]
-- [tools] perf stat: Abstract stat metrics printing (Jiri Olsa) [1336447]
-- [tools] perf tools: Add perf data cache feature (Jiri Olsa) [1336447]
-- [tools] perf tools: Initialize libapi debug output (Jiri Olsa) [1336447]
-- [tools] perf debug: Rename __eprintf(va_list args) to veprintf (Jiri Olsa) [1336447]
-- [tools] tools lib api fs: Add sysfs__read_str function (Jiri Olsa) [1336447]
-- [tools] tools lib api fs: Adopt filename__read_str from perf (Jiri Olsa) [1336447]
-- [tools] tools lib api: Add debug output support (Jiri Olsa) [1336447]
-- [tools] perf jvmti: Add check for java alternatives cmd in Makefile (Jiri Olsa) [1336447]
-- [tools] perf tests: Fix build on older systems where 'signal' is reserved (Jiri Olsa) [1336447]
-- [tools] perf data: Fix releasing event_class (Jiri Olsa) [1336447]
-- [tools] perf tools: Rename parse_events__free_terms() to parse_events_terms__delete() (Jiri Olsa) [1336447]
-- [tools] perf tools: Free the terms list_head in parse_events__free_terms() (Jiri Olsa) [1336447]
-- [tools] perf tools: Use perf_event_terms__purge() for non-malloced terms (Jiri Olsa) [1336447]
-- [tools] perf tools: Introduce parse_events_terms__purge() (Jiri Olsa) [1336447]
-- [tools] perf tools: Unlink entries from terms list (Jiri Olsa) [1336447]
-- [tools] perf hists: Do column alignment on the format iterator (Jiri Olsa) [1336447]
-- [tools] perf tools: Add comment explaining the repsep_snprintf function (Jiri Olsa) [1336447]
-- [tools] perf python scripting: Append examples to err msg about audit-libs-python (Jiri Olsa) [1336447]
-- [tools] perf build: Add EXTRA_LDFLAGS option to makefile (Jiri Olsa) [1336447]
-- [tools] perf symbols: Fix symbols searching for module in buildid-cache (Jiri Olsa) [1336447]
-- [tools] perf config: Add '--system' and '--user' options to select which config file is used (Jiri Olsa) [1336447]
-- [tools] perf jit: add source line info support (Jiri Olsa) [1336447]
-- [tools] perf tools: add JVMTI agent library (Jiri Olsa) [1336447]
-- [tools] perf inject: Add jitdump mmap injection support (Jiri Olsa) [1336447]
-- [tools] perf inject: Make sure mmap records are ordered when injecting build_ids (Jiri Olsa) [1336447]
-- [tools] perf build: Add libcrypto feature detection (Jiri Olsa) [1336447]
-- [tools] perf symbols: add Java demangling support (Jiri Olsa) [1336447]
-- [tools] perf tools: handle spaces in file names obtained from /proc/pid/maps (Jiri Olsa) [1336447]
-- [tools] perf build tests: Do parallell builds with 'build-test' (Jiri Olsa) [1336447]
-- [tools] perf tools: Fix parallel build including 'clean' target (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'record.build-id' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'kmem.default' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'pager.subcommand' variables in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'man.viewer' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'top.children' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'report' section in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'call-graph' section in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'ui.show-headers' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf build tests: Move the feature related vars to the front of the make cmdline (Jiri Olsa) [1336447]
-- [tools] perf build tests: Elide "-f Makefile" from make invokation (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Add 'L' hotkey to change percent limit (Jiri Olsa) [1336447]
-- [tools] perf report: Update documention of --percent-limit option (Jiri Olsa) [1336447]
-- [tools] perf report: Update documentation of --sort option (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce hists__for_each_sort_list macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce hists__for_each_format macro (Jiri Olsa) [1336447]
-- [tools] perf tools: Add hpp_list into struct hists object (Jiri Olsa) [1336447]
-- [tools] perf hists: Add struct perf_hpp_list argument to helper functions (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__for_each_sort_list_safe macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__for_each_sort_list macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__for_each_format_safe macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__for_each_format macro (Jiri Olsa) [1336447]
-- [tools] perf hists: Pass perf_hpp_list all the way through setup_output_list (Jiri Olsa) [1336447]
-- [tools] perf hists: Add perf_hpp_list register helpers (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_hpp_list__init function (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce struct perf_hpp_list (Jiri Olsa) [1336447]
-- [tools] perf hists: Separate output fields parsing into setup_output_list function (Jiri Olsa) [1336447]
-- [tools] perf hists: Separate sort fields parsing into setup_sort_list function (Jiri Olsa) [1336447]
-- [tools] perf hists: Properly release format fields (Jiri Olsa) [1336447]
-- [tools] perf hists: Remove perf_hpp__column_(disable|enable) (Jiri Olsa) [1336447]
-- [tools] perf hists: Allocate output sort field (Jiri Olsa) [1336447]
-- [tools] perf top: Move UI initialization ahead of sort setup (Jiri Olsa) [1336447]
-- [tools] perf report: Move UI initialization ahead of sort setup (Jiri Olsa) [1336447]
-- [tools] perf hists: Make hpp setup function generic (Jiri Olsa) [1336447]
-- [tools] perf hists: Add 'hpp__equal' callback function (Jiri Olsa) [1336447]
-- [tools] perf hists: Add 'equal' method to perf_hpp_fmt struct (Jiri Olsa) [1336447]
-- [tools] perf hists: Use struct perf_hpp_fmt::idx in perf_hpp__reset_width (Jiri Olsa) [1336447]
-- [tools] perf hists: Add _idx fields into struct perf_hpp_fmt (Jiri Olsa) [1336447]
-- [tools] perf hists: Introduce perf_evsel__output_resort function (Jiri Olsa) [1336447]
-- [tools] perf hists: Factor output_resort from hists__output_resort (Jiri Olsa) [1336447]
-- [tools] perf report: Don't show blank lines if entry has no callchain (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Fix percent display in callchains (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Pass parent_total to callchain print functions (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Fix dump to show correct callchain style (Jiri Olsa) [1336447]
-- [tools] perf report: Fix percent display in callchains on --stdio (Jiri Olsa) [1336447]
-- [tools] perf callchain: Pass parent_samples to __callchain__fprintf_graph() (Jiri Olsa) [1336447]
-- [tools] perf report: Get rid of hist_entry__callchain_fprintf() (Jiri Olsa) [1336447]
-- [tools] perf report: Apply --percent-limit to callchains also (Jiri Olsa) [1336447]
-- [tools] perf hists: Update hists' total period when adding entries (Jiri Olsa) [1336447]
-- [tools] perf hists: Fix min callchain hits calculation (Jiri Olsa) [1336447]
-- [tools] perf build: Align the names of the build tests: (Jiri Olsa) [1336447]
-- [tools] perf record: Use OPT_BOOLEAN_SET for buildid cache related options (Jiri Olsa) [1336447]
-- [tools] perf tools: Move timestamp creation to util (Jiri Olsa) [1336447]
-- [tools] perf test: Improve bp_signal (Jiri Olsa) [1336447]
-- [tools] perf buildid: Fix cpumode of buildid event (Jiri Olsa) [1336447]
-- [tools] perf auxtrace: Add perf_evlist pointer to *info_priv_size() (Jiri Olsa) [1336447]
-- [tools] perf tools: Speed up build-tests by reducing the number of builds tested (Jiri Olsa) [1336447]
-- [tools] perf build: Use feature dump file for build-test (Jiri Olsa) [1336447]
-- [tools] perf build: Remove all condition feature check {C, LD}FLAGS (Jiri Olsa) [1336447]
-- [tools] perf build: Fix feature-dump checks, we need to test all features (Jiri Olsa) [1336447]
-- [tools] tools build: Check basic headers for test-compile feature checker (Jiri Olsa) [1336447]
-- [tools] perf cpumap: Auto initialize cpu__max_{node, cpu} (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Skip scripting when perf.data file not available (Jiri Olsa) [1336447]
-- [tools] perf build: Select all feature checkers for feature-dump (Jiri Olsa) [1336447]
-- [tools] tools build: Allow subprojects select all feature checkers (Jiri Olsa) [1336447]
-- [tools] perf test: Fixup aliases checking in the 'vmlinux matches kallsyms' test (Jiri Olsa) [1336447]
-- [tools] perf machine: Introduce machine__find_kernel_symbol_by_name() (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Offer non-symbol specific menu options for --sort without 'sym' (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Be a bit more strict about presenting CPU socket zoom (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Offer 'Zoom into DSO'/'Map details' only when sort order has 'dso' (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Only offer symbol scripting when a symbol is under the cursor (Jiri Olsa) [1336447]
-- [tools] perf hists browser: Only 'Zoom into thread' only when sort order has 'pid' (Jiri Olsa) [1336447]
-- [tools] perf sort: Provide a way to find out if per-thread bucketing is in place (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'hist.percentage' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'annotate' section in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document 'buildid.dir' variable in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'tui' and 'gtk' sections in man page (Jiri Olsa) [1336447]
-- [tools] perf config: Document variables for 'colors' section in man page (Jiri Olsa) [1336447]
-- [tools] perf annotate: Rename 'colors.code' to 'colors.jump_arrows' (Jiri Olsa) [1336447]
-- [tools] perf tools: Document the perf sysctls (Jiri Olsa) [1336447]
-- [tools] perf hists: Cleanup filtering functions (Jiri Olsa) [1336447]
-- [tools] perf hists: Remove parent filter check in DSO filter function (Jiri Olsa) [1336447]
-- [tools] perf stat: Making several helper functions static (Jiri Olsa) [1336447]
-- [tools] perf symbols: Do not read symbols/data from device files (Jiri Olsa) [1336447]
-- [tools] perf pmu: Fix misleadingly indented assignment (whitespace) (Jiri Olsa) [1336447]
-- [kernel] perf/core: Disable the event on a truncated AUX record (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/pt: Generate PMI in the STOP region as well (Jiri Olsa) [1336447]
-- [x86] perf/x86: Add model numbers for Kabylake CPUs (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel: Fix incorrect lbr_sel_mask value (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/pt: Don't die on VMXON (Jiri Olsa) [1336447]
-- [x86] perf/x86/amd: Set the size of event map array to PERF_COUNT_HW_MAX (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Add missing Haswell model (Jiri Olsa) [1336447]
-- [x86] perf/x86/amd/ibs: Fix pmu::stop() nesting (Jiri Olsa) [1336447]
-- [kernel] perf/core: Don't leak event in the syscall error path (Jiri Olsa) [1336447]
-- [x86] perf/x86/amd: Cleanup Fam10h NB event constraints (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Add missing Broadwell models (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/uncore: Remove ev_sel_ext bit support for PCU (Jiri Olsa) [1336447]
-- [kernel] perf/core: Fix Undefined behaviour in rb_alloc() (Jiri Olsa) [1336447]
-- [x86] perf/x86/ibs: Add IBS interrupt to the dynamic throttle (Jiri Olsa) [1336447]
-- [x86] perf/x86/ibs: Fix race with IBS_STARTING state (Jiri Olsa) [1336447]
-- [x86] perf/x86/ibs: Fix IBS throttle (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Simplify quirk handling even more (Jiri Olsa) [1336447]
-- [kernel] perf/core: Fix perf_sched_count derailment (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Convert it to a per package facility (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Utilize event->pmu_private (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Make PMU lock raw (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Refactor the code some more (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Clean up the printk output (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Calculate timing once (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Sanitize the quirk handling (Jiri Olsa) [1336447]
-- [x86] perf/x86/intel/rapl: Add proper error handling (Jiri Olsa) [1336447]
-
-* Mon May 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-409.el7]
-- [ata] ahci: don't mark HotPlugCapable Ports as external/removable (David Milburn) [1286946]
-- [include] libata: Align ata_device's id on a cacheline (David Milburn) [1286946]
-- [ata] sata_via: Implement hotplug for VT6421 (David Milburn) [1286946]
-- [ata] sata_via: Apply WD workaround only when needed on VT6421 (David Milburn) [1286946]
-- [ata] ahci: Cache host controller version (David Milburn) [1286946]
-- [ata] libata: fix unbalanced spin_lock_irqsave/spin_unlock_irq() in ata_scsi_park_show() (David Milburn) [1286946]
-- [include] libata: fix HDIO_GET_32BIT ioctl (David Milburn) [1286946]
-- [ata] libata: fix sff host state machine locking while polling (David Milburn) [1286946]
-- [ata] libata-sff: use WARN instead of BUG on illegal host state machine state (David Milburn) [1286946]
-- [ata] libata: disable forced PORTS_IMPL for >= AHCI 1.3 (David Milburn) [1286946]
-- [ata] sata_sx4: correctly handling failed allocation (David Milburn) [1286946]
-- [include] libata-eh.c: Introduce new ata port flag for controller which lockup on read log page (David Milburn) [1286946]
-- [ata] sata_sil: disable trim (David Milburn) [1286946]
-- [ata] ahci: Fix softreset failed issue of Port Multiplier (David Milburn) [1286946]
-- [ata] ahci: kill 'intr_status' (David Milburn) [1286946]
-- [ata] ahci: switch from 'threaded' to 'hardirq' interrupt handling (David Milburn) [1286946]
-- [ata] ahci: per-port msix support (David Milburn) [1286946]
-- [ata] ahci: Add Marvell 88se91a2 device id (David Milburn) [1286946]
-- [ata] ahci: cleanup ahci_host_activate_multi_irqs (David Milburn) [1286946]
-- [ata] ahci: ahci_host_activate: kill IRQF_SHARED (David Milburn) [1286946]
-- [ata] libata: enable LBA flag in taskfile for ata_scsi_pass_thru() (David Milburn) [1286946]
-- [ata] libata: add support for NCQ commands for SG interface (David Milburn) [1286946]
-- [ata] pata_it821x: use "const char *" for string literals (David Milburn) [1286946]
-- [ata] libata: cleanup ata_scsi_qc_complete (David Milburn) [1286946]
-- [include] ata: ahci: find eSATA ports and flag them as removable (David Milburn) [1286946]
-- [ata] Add factory recertified Crucial M500s to blacklist (David Milburn) [1286946]
-- [ata] sata_sx4: Check return code from pdc20621_i2c_read() (David Milburn) [1286946]
-- [include] revert "libata: Implement NCQ autosense" (David Milburn) [1286946]
-- [include] revert "libata: Implement support for sense data reporting" (David Milburn) [1286946]
-- [include] revert "libata-eh: Set 'information' field for autosense" (David Milburn) [1286946]
-- [ata] libata: Do not blacklist M510DC (David Milburn) [1286946]
-- [ata] libata: increase the timeout when setting transfer mode (David Milburn) [1286946]
-- [ata] libata: force disable trim for SuperSSpeed S238 (David Milburn) [1286946]
-- [include] libata: add ATA_HORKAGE_NOTRIM (David Milburn) [1286946]
-- [ata] libata: add ATA_HORKAGE_BROKEN_FPDMA_AA quirk for HP 250GB SATA disk VB0250EAVER (David Milburn) [1286946]
-- [ata] libata: Do not blacklist Micron M500DC (David Milburn) [1286946]
-- [ata] ahci, msix: Fix build error for !PCI_MSI (David Milburn) [1286946]
-- [ata] ahci: Add generic MSI-X support for single interrupts to SATA PCI driver (David Milburn) [1286946]
-- [ata] libata: finally use __initconst in ata_parse_force_one() (David Milburn) [1286946]
-- [ata] ahci: Store irq number in struct ahci_host_priv (David Milburn) [1286946]
-- [ata] ahci: Move interrupt enablement code to a separate function (David Milburn) [1286946]
-- [ata] doc: libata: Fix spelling typo found in libata.xml (David Milburn) [1286946]
-- [ata] sata_nv - Change 1 to true for bool type variable (David Milburn) [1286946]
-- [ata] libata: Fix regression when the NCQ Send and Receive log page is absent (David Milburn) [1286946]
-- [ata] hpt366: fix constant cast warning (David Milburn) [1286946]
-- [documentation] libata: Fix sysfs documentation bug (David Milburn) [1286946]
-- [include] libata: Fall back to unqueued READ LOG EXT if the DMA variant fails (David Milburn) [1286946]
-- [include] libata: READ LOG DMA EXT support can be in either page 119 or 120 (David Milburn) [1286946]
-- [ata] libata: Expose TRIM capability in sysfs (David Milburn) [1286946]
-- [ata] libata: Allow NCQ TRIM to be enabled or disabled with a module parameter (David Milburn) [1286946]
-- [include] libata: Ignore spurious PHY event on LPM policy change (David Milburn) [1286946]
-- [include] libata: Add helper to determine when PHY events should be ignored (David Milburn) [1286946]
-- [include] libata: Add tracepoints (David Milburn) [1286946]
-- [include] libata-eh: Set 'information' field for autosense (David Milburn) [1286946]
-- [include] libata: Implement support for sense data reporting (David Milburn) [1286946]
-- [include] libata: Implement NCQ autosense (David Milburn) [1286946]
-- [ata] libata: use status bit definitions in ata_dump_status() (David Milburn) [1286946]
-- [include] ide, ata: Rename ATA_IDX to ATA_SENSE (David Milburn) [1286946]
-- [ata] libata: whitespace fixes in ata_to_sense_error() (David Milburn) [1286946]
-- [ata] libata: whitespace cleanup in ata_get_cmd_descript() (David Milburn) [1286946]
-- [include] libata: use READ_LOG_DMA_EXT (David Milburn) [1286946]
-- [netdrv] fjes: Fix unnecessary spinlock_irqsave (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: update fjes driver version 1.1 (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: Introduce spinlock for rx_status (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: Enhance changing MTU related work (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: fix bitwise check bug in fjes_raise_intr_rxdata_task (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: fix incorrect statistics information in fjes_xmit_frame() (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: optimize timeout value (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: Use resource_size (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: fix inconsistent indenting (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: Delete an unnecessary check before the function call "vfree" (Yasuaki Ishimatsu) [1328939]
-- [netdrv] fjes: fix off-by-one error at fjes_hw_update_zone_task() (Yasuaki Ishimatsu) [1328939]
-
-* Fri May 20 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-408.el7]
-- [security] capabilities: add a securebit to disable PR_CAP_AMBIENT_RAISE (Paul Moore) [1165316]
-- [security] selftests/capabilities: Add tests for capability evolution (Paul Moore) [1165316]
-- [security] capabilities: ambient capabilities (Paul Moore) [1165316]
-- [powercap] intel_rapl: Add support for Kabylake (David Arcari) [1310935]
-- [virtio] virtio 1.0 cs04 spec compliance for reset ("Michael S. Tsirkin") [1334106]
-- [tools] power turbostat: initial KBL support (David Arcari) [1310931]
-- [idle] intel_idle: Add KBL support (David Arcari) [1310933]
-- [acpi] acpica: dispatcher: Update thread ID for recursive method calls (Prarit Bhargava) [1336832]
-- [x86] pci: Mark Broadwell-EP Home Agent 1 as having non-compliant BARs (Prarit Bhargava) [1334199]
-- [x86] pci: Disable all BAR sizing for devices with non-compliant BARs (Prarit Bhargava) [1334199]
-- [x86] pci: Mark Broadwell-EP Home Agent & PCU as having non-compliant BARs (Prarit Bhargava) [1334199]
-- [x86] pci: Disable IO/MEM decoding for devices with non-compliant BARs (Prarit Bhargava) [1334199]
-- [x86] mm: update memory tracking for criu soft dirty (David Bulkow) [1329312]
-- [mm] Fix kmalloc slab creation sequence (Sterling Alexander) [1324668]
-- [mm] slab_common: support the slub_debug boot option on specific object size (Sterling Alexander) [1324668]
-- [mm] defer flush of writable TLB entries (George Beshers) [727269]
-- [mm] send one IPI per CPU to TLB flush all entries after unmapping pages (George Beshers) [727269]
-- [mm] meminit: initialize enough pages for struct page (George Beshers) [727269]
-- [mm] meminit: use early_pfn_to_nid for page_cgroup_init (George Beshers) [727269]
-- [mm] initialize hotplugged pages as reserved (George Beshers) [727269]
-- [mm] reinit files_stat.max_files after deferred memory initialisation (George Beshers) [727269]
-- [mm] Include file needed for next patch to compile (George Beshers) [727269]
-- [mm] meminit: replace rwsem with completion (George Beshers) [727269]
-- [mm] meminit: allow early_pfn_to_nid to be used during runtime (George Beshers) [727269]
-- [mm] meminit: suppress unused memory variable warning (George Beshers) [727269]
-- [mm] meminit: finish initialisation of struct pages before basic setup (George Beshers) [727269]
-- [mm] meminit: remove mminit_verify_page_links (George Beshers) [727269]
-- [mm] meminit: reduce number of times pageblocks are set during struct page in (George Beshers) [727269]
-- [mm] meminit: free pages in large chunks where possible (George Beshers) [727269]
-- [mm] enable deferred struct page initialisation on x86-64 (George Beshers) [727269]
-- [mm] meminit: minimise number of pfn->page lookups during initialisation (George Beshers) [727269]
-- [mm] meminit: initialise remaining struct pages in parallel with kswapd (George Beshers) [727269]
-- [mm] meminit: initialise a subset of struct pages if CONFIG_DEFERRED_STRUCT_PAGE_INIT is set (George Beshers) [727269]
-- [mm] meminit: inline some helper functions (George Beshers) [727269]
-- [mm] meminit: make __early_pfn_to_nid SMP-safe and introduce meminit_pfn_in_nid (George Beshers) [727269]
-- [mm] remove ifdef condition (George Beshers) [727269]
-- [mm] memblock: binary search node id (George Beshers) [727269]
-- [mm] page_alloc: pass PFN to __free_pages_bootmem (George Beshers) [727269]
-- [mm] bootmem: remove unused local `map' (George Beshers) [727269]
-- [mm] bootmem: remove duplicated declaration of __free_pages_bootmem() (George Beshers) [727269]
-- [mm] nobootmem: have __free_pages_memory() free in larger chunks (George Beshers) [727269]
-- [mm] meminit: only set page reserved in the memblock region (George Beshers) [727269]
-- [mm] memblock: introduce a for_each_reserved_mem_region iterator (George Beshers) [727269]
-- [mm] mem-hotplug: let memblock skip the hotpluggable memory regions in __next_mem_range() (George Beshers) [727269]
-- [mm] meminit: move page initialization into a separate function (George Beshers) [727269]
-
-* Thu May 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-407.el7]
-- [scsi] cxlflash: scsi_change_queue_depth backport (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: lun size in scsi_device (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Move to exponential back-off when cmd_room is not available (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix regression issue with re-ordering patch (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Use new cxl_pci_read_adapter_vpd() API (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Increase cmd_per_lun for better throughput (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid unnecessary scan with internal LUNs (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Reorder user context initialization (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Simplify attach path error cleanup (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Split out context initialization (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Unmap problem state area before detaching master context (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Simplify PCI registration (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Enable device id for future IBM CXL adapter (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Resolve oops in wait_port_offline (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to resolve cmd leak after host reset (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Removed driver date print (Gustavo Duarte) [1182021]
-- [include] cxlflash: Fix to avoid virtual LUN failover failure (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to escalate LINK_RESET also on port 1 (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: drop unlikely before IS_ERR_OR_NULL (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: a couple off by one bugs (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid bypassing context cleanup (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid lock instrumentation rejection (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid corrupting port selection mask (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to escalate to LINK_RESET on login timeout (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid leaving dangling interrupt resources (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid potential deadlock on EEH (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct trace string (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid corrupting adapter fops (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to double the delay each time (Gustavo Duarte) [1182021]
-- [maintainers] maintainers: Add cxlflash driver (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to prevent stale AFU RRQ (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct spelling, grammar, and alignment mistakes (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to prevent EEH recovery failure (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix MMIO and endianness errors (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix function prolog parameters and return codes (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Remove unnecessary scsi_block_requests (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct behavior in device reset handler following EEH (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to prevent workq from accessing freed memory (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct usage of scsi_host_put() (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix AFU version access/storage and add check (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Remove dual port online dependency (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix async interrupt bypass logic (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix host link up event handling (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix location of setting resid (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid stall while waiting on TMF (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid spamming the kernel log (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Refine host/device attributes (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Make functions static (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Correct naming of limbo state and waitq (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid CXL services during EEH (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix context encode mask width (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid sizeof(bool) (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix data corruption when vLUN used over multiple cards (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix potential oops following LUN removal (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix read capacity timeout (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Replace magic numbers with literals (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Fix to avoid invalid port_sel value (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Remove unused variable from queuecommand (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: shift wrapping bug in afu_link_reset() (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: off by one bug in cxlflash_show_port_status() (Gustavo Duarte) [1182021]
-- [include] cxlflash: Virtual LUN support (Gustavo Duarte) [1182021]
-- [include] cxlflash: Superpipe support (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Base error recovery support (Gustavo Duarte) [1182021]
-- [scsi] cxlflash: Base support for IBM CXL Flash Adapter (Gustavo Duarte) [1182021]
-- [netdrv] xen-netfront: use napi_complete() correctly to prevent Rx stalling (Ivan Vecera) [1334372]
-- [netdrv] xen-netfront: convert to GRO API (Ivan Vecera) [1334372]
-- [netdrv] virtio_net: Fix napi poll list corruption (Ivan Vecera) [1334372]
-- [netdrv] caif: Fix napi poll list corruption (Ivan Vecera) [1334372]
-- [netdrv] bgmac: fix requests for extra polling calls from NAPI (Ivan Vecera) [1334372]
-- [netdrv] bgmac: leave interrupts disabled as long as there is work to do (Ivan Vecera) [1334372]
-- [net] Rearrange loop in net_rx_action (Ivan Vecera) [1334372]
-- [net] Always poll at least one device in net_rx_action (Ivan Vecera) [1334372]
-- [net] Detect drivers that reschedule NAPI and exhaust budget (Ivan Vecera) [1334372]
-- [net] Move napi polling code out of net_rx_action (Ivan Vecera) [1334372]
-- [net] less interrupt masking in NAPI (Ivan Vecera) [1334372]
-- [net] route: enforce hoplimit max value (Paolo Abeni) [1313892]
-- [net] netem: Segment GSO packets on enqueue (Neil Horman) [980835]
-- [netdrv] macvlan: resolve ENOENT errors on creation (Ivan Vecera) [1333314]
-- [net] rename sysfs symlinks on device name change (Ivan Vecera) [1333228]
-- [net] add sysfs helpers for netdev_adjacent logic (Ivan Vecera) [1333228]
-
-* Thu May 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-406.el7]
-- [cpufreq] intel_pstate: Update frequencies of policy->cpus only from ->set_policy() (Prarit Bhargava) [1329088]
-- [kernel] kprobes: Add IPMODIFY flag to kprobe_ftrace_ops (Jessica Yu) [1113830]
-- [kernel] ftrace, kprobes: Support IPMODIFY flag to find IP modify conflict (Jessica Yu) [1113830]
-- [x86] kprobes/ftrace: Recover original IP if pre_handler doesn't change it (Jessica Yu) [1113830]
-- [kernel] ftrace: Simplify ftrace_hash_disable/enable path in ftrace_hash_move (Jessica Yu) [1113830]
-- [kernel] ftrace: Use macros for numbers in ftrace rec shift bits (Jessica Yu) [1113830]
-- [netdrv] cnic: call cp->stop_hw() in cnic_start_hw() on allocation failure (Ivan Vecera) [1327015]
-- [virtio] virtio-pci: use possible fallback queue size ("Michael S. Tsirkin") [1320152]
-- [input] synaptics - handle spurious release of trackstick buttons, again (Benjamin Tissoires) [1317809]
-- [nvme] host: Always use MSI/MSI-x interrupts (David Milburn) [1334462]
-- [misc] cxl: Poll for outstanding IRQs when detaching a context (Steve Best) [1332487]
-- [misc] cxl: Keep IRQ mappings on context teardown (Steve Best) [1332487]
-- [netdrv] cxgb4: Set VPD size so we can read both VPD structures (Myron Stowe) [1289561 1332667]
-- [pci] Add pci_set_vpd_size() to set VPD size (Myron Stowe) [1289561 1332667]
-- [pci] Prevent VPD access for buggy devices (Myron Stowe) [1289561 1332667]
-- [pci] Sleep rather than busy-wait for VPD access completion (Myron Stowe) [1289561 1332667]
-- [pci] Fold struct pci_vpd_pci22 into struct pci_vpd (Myron Stowe) [1289561 1332667]
-- [pci] Rename VPD symbols to remove unnecessary "pci22" (Myron Stowe) [1289561 1332667]
-- [pci] Remove struct pci_vpd_ops.release function pointer (Myron Stowe) [1289561 1332667]
-- [pci] Move pci_vpd_release() from header file to pci/access.c (Myron Stowe) [1289561 1332667]
-- [pci] Move pci_read_vpd() and pci_write_vpd() close to other VPD code (Myron Stowe) [1289561 1332667]
-- [pci] Determine actual VPD size on first access (Myron Stowe) [1289561 1332667]
-- [pci] Use bitfield instead of bool for struct pci_vpd_pci22.busy (Myron Stowe) [1289561 1332667]
-- [pci] Allow access to VPD attributes with size 0 (Myron Stowe) [1289561 1332667]
-- [pci] Update VPD definitions (Myron Stowe) [1289561 1332667]
-- [pci] Use kobj_to_dev() instead of open-coding it (Myron Stowe) [1289561 1332667]
-- [netdrv] cxgb4: Set mac addr from vpd, when we can't contact firmware (Myron Stowe) [1289561 1332667]
-- [x86] platform/uv: Fix incorrect nodes and pnodes for cpuless and memoryless nodes (Frank Ramsay) [1276458]
-- [misc] x86/platform/uv: Remove Obsolete GRU MMR address translation (Frank Ramsay) [1276458]
-- [x86] platform/uv: Update physical address conversions for UV4 (Frank Ramsay) [1276458]
-- [x86] platform/uv: Build GAM reference tables (Frank Ramsay) [1276458]
-- [x86] platform/uv: Support UV4 socket address changes (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add obtaining GAM Range Table from UV BIOS (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV4 addressing discovery function (Frank Ramsay) [1276458]
-- [x86] platform/uv: Fold blade info into per node hub info structs (Frank Ramsay) [1276458]
-- [x86] platform/uv: Allocate common per node hub info structs on local node (Frank Ramsay) [1276458]
-- [x86] platform/uv: Move blade local processor ID to the per cpu info struct (Frank Ramsay) [1276458]
-- [x86] platform/uv: Move scir info to the per cpu info struct (Frank Ramsay) [1276458]
-- [x86] platform/uv: Create per cpu info structs to replace per hub info structs (Frank Ramsay) [1276458]
-- [x86] platform/uv: Update MMIOH setup function to work for both UV3 and UV4 (Frank Ramsay) [1276458]
-- [x86] platform/uv: Clean up redunduncies after merge of UV4 MMR definitions (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV4 Specific MMR definitions (Frank Ramsay) [1276458]
-- [x86] platform/uv: Prep for UV4 MMR updates (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV MMR Illegal Access Function (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV4 Specific Defines (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add UV Architecture Defines (Frank Ramsay) [1276458]
-- [x86] platform/uv: Add Initial UV4 definitions (Frank Ramsay) [1276458]
-- [x86] kvm: vmx: fix nested vpid for old KVM guests (Bandan Das) [1319020]
-- [x86] kvm: vmx: avoid guest hang on invalid invvpid instruction (Bandan Das) [1319020]
-- [x86] kvm: vmx: avoid guest hang on invalid invept instruction (Bandan Das) [1319020]
-- [x86] setup/crash: Check memblock_reserve() retval (Baoquan He) [1241236]
-- [x86] setup/crash: Cleanup some more (Baoquan He) [1241236]
-- [x86] setup/crash: Remove alignment variable (Baoquan He) [1241236]
-- [x86] setup: Cleanup crashkernel reservation functions (Baoquan He) [1241236]
-- [x86] setup: Do not reserve crashkernel high memory if low reservation failed (Baoquan He) [1241236]
-- [x86] perf/x86/cqm: Factor out some common code (Jiri Olsa) [1084618]
-- [x86] perf/x86/mbm: Add support for MBM counter overflow handling (Jiri Olsa) [1084618]
-- [x86] perf/x86/mbm: Implement RMID recycling (Jiri Olsa) [1084618]
-- [x86] perf/x86/mbm: Add memory bandwidth monitoring event management (Jiri Olsa) [1084618]
-- [x86] perf/x86/mbm: Add Intel Memory B/W Monitoring enumeration and init (Jiri Olsa) [1084618]
-- [x86] perf/x86/cqm: Fix CQM memory leak and notifier leak (Jiri Olsa) [1084618]
-- [include] perf/x86/cqm: Fix CQM handling of grouping events into a cache_group (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Use 'u32' data type for RMIDs (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Add storage for 'closid' and clean up 'struct intel_pqr_state' (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Remove useless wrapper function (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Avoid pointless MSR write (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Remove pointless spinlock from state cache (Jiri Olsa) [1084618]
-- [x86] perf/x86/intel/cqm: Document PQR MSR abuse (Jiri Olsa) [1084618]
-- [include] perf/x86/intel/cqm: Use proper data types (Jiri Olsa) [1084618]
-- [x86] topology: Fix logical package mapping (Jiri Olsa) [1084618]
-- [x86] topology: Create logical package id (Jiri Olsa) [1084618]
-- [x86] perf: Fix uncore build (Jiri Olsa) [1330700]
-- [perf] Allow storage of PMU private data in event (Jiri Olsa) [1330700]
-
-* Wed May 18 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-405.el7]
-- [fs] cifs: fix type confusion in copy offload ioctl (Sachin Prabhu) [1335974]
-- [fs] locks: inline posix_lock_file_wait and flock_lock_file_wait (Benjamin Coddington) [1329488]
-- [fs] nfs4: have do_vfs_lock take an inode pointer (Benjamin Coddington) [1329488]
-- [fs] locks: new helpers - flock_lock_inode_wait and posix_lock_inode_wait (Benjamin Coddington) [1329488]
-- [fs] locks: have flock_lock_file take an inode pointer instead of a filp (Benjamin Coddington) [1329488]
-- [fs] revert "nfs: take extra reference to fl->fl_file when running a LOCKU operation" (Benjamin Coddington) [1329488]
-- [fs] ext4: correctly migrate a file with a hole at the beginning (Eryu Guan) [1187078]
-- [fs] ext4: be more strict when migrating to non-extent based file (Eryu Guan) [1187078]
-- [scsi] megaraid_sas: fix kerneldoc (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Downgrade two success messages to info (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: task management code optimizations (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: call ISR function to clean up pending replies in OCR path (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: reduce memory footprints in kdump mode (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: add missing curly braces in ioctl handler (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Don't issue kill adapter for MFI controllers in case of PD list DCMD failure (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Add an i/o barrier (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Fix SMAP issue (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Fix for IO failing post OCR in SRIOV environment (Tomas Henzl) [1262033]
-- [scsi] megaraid: fix null pointer check in megasas_detach_one() (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: driver version upgrade (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: SPERC OCR changes (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Introduce module parameter for SCSI command timeout (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: MFI adapter OCR changes (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Make adprecovery variable atomic (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: IO throttling support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Dual queue depth support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Code optimization build_and_issue_cmd return-type (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Reply Descriptor Post Queue (RDPQ) support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Fastpath region lock bypass (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Update device queue depth based on interface type (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Task management support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Syncing request flags macro names with firmware (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: MFI IO timeout handling (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Do not allow PCI access during OCR (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Fix sparse warning (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Make tape drives visible on PERC5 controllers (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Remove debug print from function megasas_update_span_set (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Driver version upgrade (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Make PI enabled VD 8 byte DMA aligned (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Indicate online firmware upgrade support for Secure JBOD feature (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Update OCR capability on controller properties change (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Do not use PAGE_SIZE for max_sectors (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Support for Cutlass (12 Gbps) controller (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Support for Intruder (12 Gbps) controller (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Remove PCI id checks (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Expose TAPE drives unconditionally (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Version update (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Print critical firmware event messages (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Support for max_io_size 1MB (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Code cleanup-use local variable drv_ops inside megasas_ioc_init_fusion (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: JBOD sequence number support (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Increase timeout to 60 secs for abort frames during shutdown (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: Synchronize driver headers with firmware APIs (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: fix whitespace errors (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: use dev_printk when possible (Tomas Henzl) [1262033]
-- [scsi] megaraid_sas: fix TRUE and FALSE re-define build error (Tomas Henzl) [1262033]
-
-* Tue May 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-404.el7]
-- [scsi] st: fix potential null pointer dereference (Maurizio Lombardi) [902531]
-- [scsi] st: Destroy st_index_idr on module exit (Maurizio Lombardi) [902531]
-- [scsi] st: convert DRIVER_ATTR macros to DRIVER_ATTR_RO (Maurizio Lombardi) [902531]
-- [scsi] st: convert to using driver attr groups for sysfs (Maurizio Lombardi) [902531]
-- [scsi] st: implement tape statistics (Maurizio Lombardi) [902531]
-- [scsi] st: convert class code to use dev_groups (Maurizio Lombardi) [902531]
-- [scsi] st: call scsi_set_medium_removal directly (Maurizio Lombardi) [902531]
-- [scsi] mpt3sas: create two binaries from a single source (Tomas Henzl) [1262031]
-- [scsi] mpt3sas - remove unused fw_event_work elements (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Remove usage of 'struct timeval' (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Don't overreach ioc reply_post during initialization (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Remove unnecessary synchronize_irq before free_irq (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Free memory pools before retrying to allocate with different value (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Remove cpumask_clear for zalloc_cpumask_var and don't free free_cpu_mask_var before reply_q (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Updating mpt3sas driver version to 12.100.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Updated MPI Header to 2.00.42 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Add support for configurable Chain Frame Size (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added smp_affinity_enable module parameter (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Make use of additional HighPriority credit message frames for sending SCSI IO's (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Never block the Enclosure device (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Fix static analyzer(coverity) tool identified defects (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Used IEEE SGL instead of MPI SGL while framing a SMP Passthrough request message (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added support for high port count HBA variants (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: A correction in unmap_resources (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: fix Kconfig dependency problem for mpt2sas back compatibility (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Add dummy Kconfig option for backwards compatibility (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Fix use sas_is_tlr_enabled API before enabling MPI2_SCSIIO_CONTROL_TLR_ON flag (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: fix inline markers on non inline function declarations (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Bump mpt3sas driver version to 09.102.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Single driver module which supports both SAS 2.0 & SAS 3.0 HBAs (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: mpt3sas: Update the driver versions (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: setpci reset kernel oops fix (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added OEM Gen2 PnP ID branding names (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Refcount fw_events and fix unsafe list usage (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Refcount sas_device objects and fix unsafe list usage (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: sysfs attribute to report Backup Rail Monitor Status (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Ported WarpDrive product SSS6200 support (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: fix for driver fails EEH, recovery from injected pci bus error (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Manage MSI-X vectors according to HBA device type (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Don't send PHYDISK_HIDDEN RAID action request on SAS2 HBAs (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Build MPI SGL LIST on GEN2 HBAs and IEEE SGL LIST on GEN3 HBAs (Tomas Henzl) [1262031]
-- [scsi] mpt2sas, mpt3sas: Remove SCSI_MPTXSAS_LOGGING entry from Kconfig (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Define 'hba_mpi_version_belonged' IOC variable (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Remove .c and .h files from mpt2sas driver (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Move Gen2 HBA's device registration to a separate file (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Move Gen3 HBA's device registration to a separate file (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added mpt2sas driver definitions (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Use mpi headers from mpt3sas (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: setpci reset kernel oops fix (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Refcount fw_events and fix unsafe list usage (Tomas Henzl) [1262031]
-- [scsi] mpt2sas: Refcount sas_device objects and fix unsafe list usage (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Bump mpt3sas driver version to 9.100.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: When device is blocked followed by unblock fails, unfreeze the I/Os (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Call dma_mapping_error() API after mapping an address with dma_map_single() API (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Use alloc_ordered_workqueue() API instead of create_singlethread_workqueue() API (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added support for customer specific branding (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Return host busy error status to SML when DMA mapping of scatter gather list fails for a SCSI command (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Complete the SCSI command with DID_RESET status for log_info value 0x0x32010081 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: MPI 2.5 Rev K (2.5.6) specifications (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Bump mpt3sas driver version to v6.100.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Add branding string support for OEM custom HBA (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Add branding string support for OEM's HBA (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: MPI 2.5 Rev J (2.5.5) specification and 2.00.34 header files (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Update MPI2 strings to MPI2.5 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Bump mpt3sas Driver version to v5.100.00.00 (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Provides the physical location of sas drives (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: MPI 2.5 Rev I (2.5.4) specifications (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Remove redundancy code while freeing the controller resources (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Don't block the drive when drive addition under the control of SML (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Get IOC_FACTS information using handshake protocol only after HBA card gets into READY or Operational state (Tomas Henzl) [1262031]
-- [scsi] mpt3sas: Added Combined Reply Queue feature to extend up-to 96 MSIX vector support (Tomas Henzl) [1262031]
-- [scsi] mpt2sas, mpt3sas: Abort initialization if no memory I/O resources detected (Tomas Henzl) [1262031]
-- [scsi] bfa: Update driver version to 3.2.25.0 (Chad Dupuis) [1273082]
-- [scsi] bfa: File header and user visible string changes (Chad Dupuis) [1273082]
-- [scsi] bfa: Updating copyright messages (Chad Dupuis) [1273082]
-- [scsi] bfa: Fix indentation (Chad Dupuis) [1273082]
-- [scsi] qla2xxx: Fix rwlock recursion (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Update the driver version to 8.07.00.33.07.3-k (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Set relogin flag when we fail to queue login requests (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Enable T10-DIF for ISP27XX (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Provide mbx info in BBCR data after mbx failure (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Avoid side effects when using endianizer macros (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add support for Private link statistics counters (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add support for buffer to buffer credit value for ISP27XX (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add support for online flash update for ISP27XX (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Allow fw to hold status before sending ABTS response (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Seed init-cb login timeout from nvram exclusively (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove unneeded link offline message (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add pci device id 0x2261 (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Fix missing device login retries (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add support to show MPI and PEP FW version for ISP27xx (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Do not reset ISP for error entry with an out of range handle (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add adapter checks for FAWWN functionality (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Pause risc before manipulating risc semaphore (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Use ssdid to gate semaphore manipulation (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Handle AEN8014 incoming port logout (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Add serdes register read/write support for ISP25xx (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Return the fabric command state for non-task management requests (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Avoid that sparse complains about context imbalances (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove dead code (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove a superfluous test (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Fix sparse annotations (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Avoid that sparse complains about duplicate (noderef) attributes (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove __constant_ prefix (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Replace two macros with an inline function (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Remove set-but-not-used variables (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Declare local functions static (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Report both rsp_info and rsp_info_len (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Fix indentation (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Comment out unreachable code (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Prevent probe and board_disable race (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Prevent removal and board_disable race (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Schedule board_disable only once (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Collect PCI register checks and board_disable scheduling (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Use qla2x00_clear_drv_active on probe failure (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Disable adapter when we encounter a PCI disconnect (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Fix shost use-after-free on device removal (Chad Dupuis) [1273080]
-- [scsi] qla2xxx: Refactor shutdown code so some functionality can be reused (Chad Dupuis) [1273080]
-- [scsi] fnic: Using rport->dd_data to check rport online instead of rport_lookup (Maurizio Lombardi) [1276102]
-- [scsi] fnic: Cleanup the I/O pending with fw and has timed out and is used to issue LUN reset (Maurizio Lombardi) [1276102]
-- [scsi] fnic: Fix to cleanup aborted IO to avoid device being offlined by mid-layer (Maurizio Lombardi) [1276102]
-- [scsi] fnic: Use the local variable instead of I/O flag to acquire io_req_lock in fnic_queuecommand() to avoid deadloack (Maurizio Lombardi) [1276102]
-- [netdrv] vmxnet3: set CHECKSUM_UNNECESSARY for IPv6 packets (Neil Horman) [1329403]
-- [netdrv] vmxnet3: fix lock imbalance in vmxnet3_tq_xmit() (Neil Horman) [1329403]
-- [netdrv] vmxnet3: avoid calling pskb_may_pull with interrupts disabled (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Update Rx ring 2 max size (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Fix regression caused by 5738a09 (Neil Horman) [1329403]
-- [netdrv] vmxnet3: fix checks for dma mapping errors (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Fix use of mfTableLen for big endian architectures (Neil Horman) [1329403]
-- [netdrv] vmxnet3: get rid of unnecessary initializations in .get_drvinfo() (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Extend register dump support (Neil Horman) [1329403]
-- [netdrv] vmxnet3: prevent receive getting out of sequence on napi poll (Neil Horman) [1329403]
-- [netdrv] vmxnet3: Bump up driver version number (Neil Horman) [1329403]
-- [netdrv] be2net: fix BE3-R FW download compatibility check (Ivan Vecera) [1306516]
-- [netdrv] mlx4_en: Fix endianness bug in IPV6 csum calculation (Kamal Heib) [1249733 1325358]
-
-* Tue May 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-403.el7]
-- [x86] mm: Drop WARN from multi-BAR check (Jiri Olsa) [1318419]
-- [mm] fix mlock accouting (Hendrik Brueckner) [1334242]
-- [mm] vmstat: fix overflow in mod_zone_page_state() (Hendrik Brueckner) [1334242]
-- [s390] pci: add extra padding to function measurement block (Hendrik Brueckner) [1330111]
-- [s390] pci: enforce fmb page boundary rule (Hendrik Brueckner) [1330111]
-- [s390] pci: extract software counters from fmb (Hendrik Brueckner) [1330111]
-- [s390] pci: remove pdev pointer from arch data (Hendrik Brueckner) [1330099]
-- [s390] pci_dma: improve debugging of errors during dma map (Hendrik Brueckner) [1330100]
-- [s390] pci_dma: handle dma table failures (Hendrik Brueckner) [1330100]
-- [s390] pci_dma: unify label of invalid translation table entries (Hendrik Brueckner) [1330100]
-- [s390] pci_dma: fix DMA table corruption with > 4 TB main memory (Hendrik Brueckner) [1330112]
-- [s390] pci: use pci_rescan_remove_lock (Hendrik Brueckner) [1330092]
-- [kernel] sched: Fix potential kabi breakage on wait_bit_queue (Benjamin Coddington) [1333024]
-- [watchdog] hpwdt: use nmi_panic() when kernel panics in NMI handler (David Arcari) [1327401]
-- [ipmi] watchdog: use nmi_panic() when kernel panics in NMI handler (David Arcari) [1327401]
-- [kernel] panic: change nmi_panic from macro to function (David Arcari) [1327401]
-- [x86] nmi: Save regs in crash dump on external NMI (David Arcari) [1327401]
-- [x86] apic: Introduce apic_extnmi command line parameter (David Arcari) [1327401]
-- [kernel] kexec: Fix race between panic() and crash_kexec() (David Arcari) [1327401]
-- [kernel] panic, x86: Allow CPUs to save registers even if looping in NMI context (David Arcari) [1327401]
-- [kernel] panic, x86: Fix re-entrance problem due to panic on NMI (David Arcari) [1327401]
-- [kernel] watchdog: keep rhel7 old-behaviour compatibility (David Arcari) [1290573]
-- [x86] re-enable fixup_ht_bug (David Arcari) [1290573]
-- [lib] workqueue: implement lockup detector (David Arcari) [1290573]
-- [kernel] watchdog: introduce touch_softlockup_watchdog_sched() (David Arcari) [1290573]
-- [kernel] watchdog: fix race between proc_watchdog_thresh() and watchdog_timer_fn() (David Arcari) [1290573]
-- [kernel] watchdog: remove {get|put}_online_cpus() from watchdog_{park|unpark}_threads() (David Arcari) [1290573]
-- [kernel] watchdog: avoid races between /proc handlers and CPU hotplug (David Arcari) [1290573]
-- [kernel] watchdog: avoid race between lockup detector suspend/resume and CPU hotplug (David Arcari) [1290573]
-- [kernel] watchdog: add sysctl knob hardlockup_panic (David Arcari) [1290573]
-- [kernel] watchdog: perform all-CPU backtrace in case of hard lockup (David Arcari) [1290573]
-- [kernel] watchdog: do not unpark threads in watchdog_park_threads() on error (David Arcari) [1290573]
-- [kernel] watchdog: implement error handling in lockup_detector_suspend() (David Arcari) [1290573]
-- [kernel] watchdog: implement error handling in update_watchdog_all_cpus() and callers (David Arcari) [1290573]
-- [kernel] watchdog: move watchdog_disable_all_cpus() outside of ifdef (David Arcari) [1290573]
-- [kernel] watchdog: fix error handling in proc_watchdog_thresh() (David Arcari) [1290573]
-- [kernel] watchdog: is_hardlockup can be boolean (David Arcari) [1290573]
-- [kernel] watchdog: rename watchdog_suspend() and watchdog_resume() (David Arcari) [1290573]
-- [kernel] watchdog: use suspend/resume interface in fixup_ht_bug() (David Arcari) [1290573]
-- [kernel] watchdog: use park/unpark functions in update_watchdog_all_cpus() (David Arcari) [1290573]
-- [kernel] watchdog: introduce watchdog_suspend() and watchdog_resume() (David Arcari) [1290573]
-- [kernel] watchdog: introduce watchdog_park_threads() and watchdog_unpark_threads() (David Arcari) [1290573]
-- [kernel] watchdog: move NMI function header declarations from watchdog.h to nmi.h (David Arcari) [1290573]
-- [kernel] watchdog: add watchdog_cpumask sysctl to assist nohz (David Arcari) [1290573]
-- [kernel] smpboot: allow excluding cpus from the smpboot threads (David Arcari) [1290573]
-- [kernel] smpboot: Add common code for notification from dying CPU (David Arcari) [1290573]
-- [kernel] smpboot: Add missing get_online_cpus() in smpboot_register_percpu_thread() (David Arcari) [1290573]
-- [kernel] sched, smp: Correctly deal with nested sleeps (David Arcari) [1290573]
-- [kernel] watchdog: fix double lock in watchdog_nmi_enable_all (David Arcari) [1290573]
-- [kernel] watchdog: Fix merge 'conflict' (David Arcari) [1290573]
-- [kernel] watchdog: introduce the hardlockup_detector_disable() function (David Arcari) [1290573]
-- [kernel] watchdog: clean up some function names and arguments (David Arcari) [1290573]
-- [kernel] watchdog: enable the new user interface of the watchdog mechanism (David Arcari) [1290573]
-- [documentation] watchdog: Document watchdog_thresh sysctl (David Arcari) [1290573]
-- [kernel] watchdog: Disallow setting watchdog_thresh to -1 (David Arcari) [1290573]
-- [kernel] watchdog: implement error handling for failure to set up hardware perf events (David Arcari) [1290573]
-- [kernel] watchdog: introduce separate handlers for parameters in /proc/sys/kernel (David Arcari) [1290573]
-- [kernel] watchdog: introduce proc_watchdog_common() (David Arcari) [1290573]
-- [kernel] watchdog: move definition of 'watchdog_proc_mutex' outside of proc_dowatchdog() (David Arcari) [1290573]
-- [kernel] watchdog: introduce the proc_watchdog_update() function (David Arcari) [1290573]
-- [kernel] watchdog: new definitions and variables, initialization (David Arcari) [1290573]
-- [kernel] softlockup: make detector be aware of task switch of processes hogging cpu (David Arcari) [1290573]
-- [kernel] watchdog: Remove unnecessary header files (David Arcari) [1290573]
-- [kernel] watchdog: convert printk/pr_warning to pr_foo() (David Arcari) [1290573]
-- [kernel] watchdog: remove preemption restrictions when restarting lockup detector (David Arcari) [1290573]
-
-* Mon May 16 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-402.el7]
-- [thermal] powerclamp: remove cpu whitelist (Steve Best) [1273740]
-- [acpi] srat: fix SRAT parsing order with both LAPIC and X2APIC present (Prarit Bhargava) [1331394]
-- [s390] spinlock: avoid yield to non existent cpu (Hendrik Brueckner) [1334236]
-- [tty] Drop krefs for interrupted tty lock ("Herton R. Krzesinski") [1327403]
-- [tty] rocket: Remove private close_wait ("Herton R. Krzesinski") [1327403]
-- [tty] Retry failed reopen if tty teardown in-progress ("Herton R. Krzesinski") [1327403]
-- [tty] Prevent hw state corruption in exclusive mode reopen ("Herton R. Krzesinski") [1327403]
-- [tty] Wait interruptibly for tty lock on reopen ("Herton R. Krzesinski") [1327403]
-- [tty] Remove wait_event_interruptible_tty() ("Herton R. Krzesinski") [1327403]
-- [tty] r3964: Replace/remove bogus tty lock use ("Herton R. Krzesinski") [1327403]
-- [tty] r3964: Use tty->read_wait waitqueue ("Herton R. Krzesinski") [1327403]
-- [tty] Remove tty_port::close_wait ("Herton R. Krzesinski") [1327403]
-- [tty] usb: gadget: gserial: Privatize close_wait ("Herton R. Krzesinski") [1327403]
-- [tty] usb: gadget: serial: fix re-ordering of tx data ("Herton R. Krzesinski") [1327403]
-- [tty] Remove ASYNC_CLOSING checks in open()/hangup() methods ("Herton R. Krzesinski") [1327403]
-- [tty] Remove tty_hung_up_p() tests from tty drivers' open() ("Herton R. Krzesinski") [1327403]
-- [tty] serial_core: fix uart PORT_UNKNOWN handling ("Herton R. Krzesinski") [1327403]
-- [tty] synclink: avoid sleep_on race ("Herton R. Krzesinski") [1327403]
-- [tty] Remove tty_wait_until_sent_from_close() ("Herton R. Krzesinski") [1327403]
-- [tty] Document locking for tty_port_close{, start, end}() ("Herton R. Krzesinski") [1327403]
-- [tty] Remove warning in tty_lock_slave() ("Herton R. Krzesinski") [1327403]
-- [tty] Fix timeout on pty set ldisc ("Herton R. Krzesinski") [1327403]
-- [tty] Fix hung task on pty hangup ("Herton R. Krzesinski") [1327403]
-- [tty] Prefix tty_ldisc_{lock, lock_nested, unlock} functions ("Herton R. Krzesinski") [1327403]
-- [tty] pty: Don't drop pty master tty lock to hangup slave ("Herton R. Krzesinski") [1327403]
-- [tty] Preset lock subclass for nested tty locks ("Herton R. Krzesinski") [1327403]
-- [tty] Change tty lock order to master->slave ("Herton R. Krzesinski") [1327403]
-- [tty] Simplify tty_release() state checks ("Herton R. Krzesinski") [1327403]
-- [tty] Simplify tty_release_checks() interface ("Herton R. Krzesinski") [1327403]
-- [tty] Simplify tty_ldisc_release() interface ("Herton R. Krzesinski") [1327403]
-- [tty] Fold pty pair handling into tty_flush_works() ("Herton R. Krzesinski") [1327403]
-- [tty] Simplify pty pair teardown logic ("Herton R. Krzesinski") [1327403]
-- [tty] Don't release tty locks for wait queue sanity check ("Herton R. Krzesinski") [1327403]
-- [tty] Don't take tty_mutex for tty count changes ("Herton R. Krzesinski") [1327403]
-- [tty] Remove TTY_CLOSING ("Herton R. Krzesinski") [1327403]
-- [tty] Drop tty_mutex before tty reopen ("Herton R. Krzesinski") [1327403]
-- [tty] Re-open /dev/tty without tty_mutex ("Herton R. Krzesinski") [1327403]
-- [tty] pty: Always return -EIO if slave BSD pty opened first ("Herton R. Krzesinski") [1327403]
-- [tty] Fix use-after-free in pty_common_install ("Herton R. Krzesinski") [1327403]
-- [tty] Merge alloc_tty_struct and initialize_tty_struct ("Herton R. Krzesinski") [1327403]
-- [tty] Check tty->count instead of TTY_CLOSING in tty_reopen() ("Herton R. Krzesinski") [1327403]
-- [tty] Clarify re-open behavior of master ptys ("Herton R. Krzesinski") [1327403]
-- [tty] Remove TTY_HUPPING ("Herton R. Krzesinski") [1327403]
-- [tty] Invert tty_lock/ldisc_sem lock order ("Herton R. Krzesinski") [1327403]
-- [tty] Don't hold tty_lock for ldisc release ("Herton R. Krzesinski") [1327403]
-- [tty] Reset hupped state on open ("Herton R. Krzesinski") [1327403]
-- [tty] Only hangup once ("Herton R. Krzesinski") [1327403]
-- [tty] Fix hangup race with TIOCSETD ioctl ("Herton R. Krzesinski") [1327403]
-- [tty] Clarify ldisc variable ("Herton R. Krzesinski") [1327403]
-
-* Fri May 13 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-401.el7]
-- [scsi] 3w-9xxx: version string touch (Tomas Henzl) [1322447]
-- [scsi] 3w-9xxx: don't unmap bounce buffered commands (Tomas Henzl) [1322447]
-- [scsi] 3w-9xxx: fix command completion race (Tomas Henzl) [1322447]
-- [scsi] lpfc: update version for rhel7.3 to 11.1.0.2 (Rob Evers) [1274910]
-- [scsi] lpfc: remove incorrect lockdep assertion (Rob Evers) [1274910]
-- [scsi] lpfc: fix misleading indentation (Rob Evers) [1274910]
-- [scsi] lpfc: fix missing zero termination in debugfs (Rob Evers) [1274910]
-- [scsi] lpfc: Add lockdep assertions (Rob Evers) [1274910]
-- [scsi] lpfc: Remove redundant code block in lpfc_scsi_cmd_iocb_cmpl (Rob Evers) [1274910]
-- [scsi] lpfc: Grammar s/an negative/a negative/ (Rob Evers) [1274910]
-- [scsi] lpfc: Update modified file copyrights (Rob Evers) [1274910]
-- [scsi] lpfc: Fix interaction between fdmi_on and enable_SmartSAN (Rob Evers) [1274910]
-- [scsi] lpfc: Add support for SmartSAN 2.0 (Rob Evers) [1274910]
-- [scsi] lpfc: Fix Device discovery failures during switch reboot test (Rob Evers) [1274910]
-- [scsi] lpfc: Fix crash when unregistering default rpi (Rob Evers) [1274910]
-- [scsi] lpfc: Fix DMA faults observed upon plugging loopback connector (Rob Evers) [1274910]
-- [scsi] lpfc: Correct LOGO handling during login (Rob Evers) [1274910]
-- [scsi] lpfc: Use kzalloc instead of kmalloc (Rob Evers) [1274910]
-- [scsi] lpfc: Add logging for misconfigured optics (Rob Evers) [1274910]
-- [scsi] lpfc: Fix external loopback failure (Rob Evers) [1274910]
-- [scsi] lpfc: Fix mbox reuse in PLOGI completion (Rob Evers) [1274910]
-- [scsi] lpfc: Use new FDMI speed definitions for 10G, 25G and 40G FCoE (Rob Evers) [1274910]
-- [scsi] lpfc: Make write check error processing more resilient (Rob Evers) [1274910]
-- [scsi] lpfc: Fix RDP ACC being too long (Rob Evers) [1274910]
-- [scsi] lpfc: Fix RDP Speed reporting (Rob Evers) [1274910]
-- [scsi] lpfc: Modularize and cleanup FDMI code in driver (Rob Evers) [1274910]
-- [scsi] lpfc: Fix crash in fcp command completion path (Rob Evers) [1274910]
-- [scsi] lpfc: Fix driver crash when module parameter lpfc_fcp_io_channel set to 16 (Rob Evers) [1274910]
-- [scsi] lpfc: Fix RegLogin failed error seen on Lancer FC during port bounce (Rob Evers) [1274910]
-- [scsi] lpfc: Fix the FLOGI discovery logic to comply with T11 standards (Rob Evers) [1274910]
-- [scsi] lpfc: Fix FCF Infinite loop in lpfc_sli4_fcf_rr_next_index_get (Rob Evers) [1274910]
-- [scsi] lpfc: fix memory leak and NULL dereference (Rob Evers) [1274910]
-- [scsi] lpfc: Fix default RA_TOV and ED_TOV in the FC/FCoE driver for all topologies (Rob Evers) [1274910]
-- [scsi] lpfc: The linux driver does not reinitiate discovery after a failed FLOGI (Rob Evers) [1274910]
-- [scsi] lpfc: Fix for discovery failure in PT2PT when FLOGI's ELS ACC response gets aborted (Rob Evers) [1274910]
-- [scsi] lpfc: Add support for Lancer G6 and 32G FC links (Rob Evers) [1274910]
-- [scsi] lpfc: fix lpfc_send_rscn_event sends bigger buffer size (Rob Evers) [1274910]
-- [scsi] lpfc: remove set but not used variables (Rob Evers) [1274910]
-- [scsi] lpfc: Make the function lpfc_sli4_mbox_completions_pending static in order to comply with function prototype (Rob Evers) [1274910]
-- [scsi] lpfc: Fix kmalloc overflow in LPFC driver at large core count (Rob Evers) [1274910]
-- [scsi] lpfc: Destroy lpfc_hba_index IDR on module exit (Rob Evers) [1274910]
-- [scsi] lpfc: in sli3 use configured sg_seg_cnt for sg_tablesize (Rob Evers) [1274910]
-- [scsi] lpfc: Remove unnessary cast (Rob Evers) [1274910]
-- [scsi] lpfc: fix model description (Rob Evers) [1274910]
-- [scsi] lpfc: Fix possible use-after-free and double free in lpfc_mbx_cmpl_rdp_page_a2() (Rob Evers) [1274910]
-- [scsi] lpfc: Use && instead of & for boolean expression (Rob Evers) [1274910]
-- [scsi] lpfc: Update copyright to 2015 (Rob Evers) [1274910]
-- [scsi] lpfc: Update Copyright on changed files (Rob Evers) [1274910]
-
-* Thu May 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-400.el7]
-- [fs] configfs: fix race between dentry put and lookup (Robert S Peterson) [1333473]
-- [fs] nfsd: use short read as well as i_size to set eof (Benjamin Coddington) [1332694]
-- [mm] vmscan: catch and fix shrinker overflows (Rafael Aquini) [1245773]
-- [i2c] ismt: Add Intel DNV PCI ID (Steve Best) [1334006]
-- [idle] intel_idle: prevent SKL-H boot failure when C8+C9+C10 enabled (Steve Best) [1322358]
-- [acpi] acpica: Remove extraneous error message for large number of GPEs (Prarit Bhargava) [1305532]
-- [s390] kdump: fix wrong BUG_ON() statement (Hendrik Brueckner) [1330093]
-- [s390] zcrypt: HWRNG registration cause kernel panic on CEX hotplug (Hendrik Brueckner) [1330094]
-- [include] pci/msi: Initialize MSI capability for all architectures (Myron Stowe) [1334107]
-- [include] pci: Make pci_msi_setup_pci_dev() non-static for use by arch code (Myron Stowe) [1334107]
-- [pci] pci, parisc: Enable 64-bit bus addresses on PA-RISC (Myron Stowe) [1334107]
-- [pci] Don't use 64-bit bus addresses on PA-RISC (Myron Stowe) [1334107]
-- [pci] Tolerate hierarchies with no Root Port (Myron Stowe) [1334107]
-- [include] pci: Restore PCI_MSIX_FLAGS_BIRMASK definition (Myron Stowe) [1334107]
-- [pci] pciehp: Inline the "handle event" functions into the ISR (Myron Stowe) [1334107]
-- [pci] pciehp: Rename queue_interrupt_event() to pciehp_queue_interrupt_event() (Myron Stowe) [1334107]
-- [pci] pciehp: Make queue_interrupt_event() void (Myron Stowe) [1334107]
-- [pci] pciehp: Clean up debug logging (Myron Stowe) [1334107]
-- [x86] pci: Use host bridge _CRS info on systems with >32 bit addressing (Myron Stowe) [1334107]
-- [include] pci: Remove unused pci_scan_bus_parented() (Myron Stowe) [1334107]
-- [pci] aspm: Simplify Clock Power Management setting (Myron Stowe) [1334107]
-- [x86] pci: Use host bridge _CRS info on Foxconn K8M890-8237A (Myron Stowe) [1334107]
-- [include] pci: Remove unused pci_dma_burst_advice() (Myron Stowe) [1334107]
-- [include] pci: Remove unused pcibios_select_root() (again) (Myron Stowe) [1334107]
-- [x86] pci: Remove unnecessary #includes of <asm/pci.h> (Myron Stowe) [1334107]
-- [s390] pci: Include <linux/pci.h>, not <asm/pci.h> (Myron Stowe) [1334107]
-- [include] pci: Add pci_bus_addr_t (Myron Stowe) [1334107]
-- [pci] Use dev->has_secondary_link to find downstream PCIe links (Myron Stowe) [1334107]
-- [pci] aspm: Use dev->has_secondary_link to find downstream links (Myron Stowe) [1334107]
-- [include] pci: Propagate the "ignore hotplug" setting to parent (Myron Stowe) [1334107]
-- [pci] acpi / hotplug / pci: Check ignore_hotplug for all downstream devices (Myron Stowe) [1334107]
-- [pci] pciehp: Drop pointless label from pciehp_probe() (Myron Stowe) [1334107]
-- [include] pci: Add dev->has_secondary_link to track downstream PCIe links (Myron Stowe) [1334107]
-- [pci] Add function 1 DMA alias quirk for Marvell 9120 (Myron Stowe) [1334107]
-- [pci] aspm: Remove redundant PCIe port type checking (Myron Stowe) [1334107]
-- [include] pci/msi: Remove unused pci_msi_off() (Myron Stowe) [1334107]
-- [pci] msi: Drop pci_msi_off() calls from quirks (Myron Stowe) [1334107]
-- [ntb] Drop pci_msi_off() call during probe (Myron Stowe) [1334107]
-- [virtio] virtio_pci: drop pci_msi_off() call during probe (Myron Stowe) [1334107]
-- [pci] msi: Disable MSI at enumeration even if kernel doesn't support MSI (Myron Stowe) [1334107]
-- [pci] msi: Export pci_msi_set_enable(), pci_msix_clear_and_set_ctrl() (Myron Stowe) [1334107]
-- [pci] msi: Rename msi_set_enable(), msix_clear_and_set_ctrl() (Myron Stowe) [1334107]
-
-* Wed May 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-399.el7]
-- [netdrv] cdc_ncm: do not call usbnet_link_change from cdc_ncm_bind (Torez Smith) [1303955]
-- [netdrv] cdc_ncm: toggle altsetting to force reset before setup (Torez Smith) [1303955]
-- [netdrv] usbnet: cleanup after bind() in probe() (Torez Smith) [1303955]
-- [netdrv] asix: do not free array priv->mdio->irq (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: add Sierra Wireless EM74xx device ID (Torez Smith) [1303955]
-- [usb] qcserial: add Sierra Wireless EM74xx device ID (Torez Smith) [1303955]
-- [usb] revert "usb: serial: add Moxa UPORT 11x0 driver" (Torez Smith) [1303955]
-- [usb] serial: option: add support for Quectel UC20 (Torez Smith) [1303955]
-- [usb] serial: option: add support for Telit LE922 PID 0x1045 (Torez Smith) [1303955]
-- [usb] cp210x: Add ID for Parrot NMEA GPS Flight Recorder (Torez Smith) [1303955]
-- [usb] qcserial: add Dell Wireless 5809e Gobi 4G HSPA+ (rev3) (Torez Smith) [1303955]
-- [netdrv] Add Dell Wireless 5809e Gobi 4G HSPA+ Mobile Broadband Card (rev3) to qmi_wwan (Torez Smith) [1303955]
-- [usb] revert "usb: hub: do not clear BOS field during reset device" (Torez Smith) [1303955]
-- [netdrv] usb: cdc_subset: only build when one driver is enabled (Torez Smith) [1303955]
-- [usb] option: add "4G LTE usb-modem U901" (Torez Smith) [1303955]
-- [usb] cp210x: add IDs for GE B650V3 and B850V3 boards (Torez Smith) [1303955]
-- [usb] option: add support for SIM7100E (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: add "4G LTE usb-modem U901" (Torez Smith) [1303955]
-- [usb] xhci: harden xhci_find_next_ext_cap against device removal (Torez Smith) [1303955]
-- [usb] xhci: Fix list corruption in urb dequeue at host removal (Torez Smith) [1303955]
-- [usb] xhci-mtk: fix AHB bus hang up caused by roothubs polling (Torez Smith) [1303955]
-- [usb] xhci-mtk: fix bpkts value of LS/HS periodic eps not behind TT (Torez Smith) [1303955]
-- [usb] xhci: apply XHCI_PME_STUCK_QUIRK to Intel Broxton-M platforms (Torez Smith) [1303955]
-- [usb] xhci: set SSIC port unused only if xhci_suspend succeeds (Torez Smith) [1303955]
-- [usb] xhci: add a quirk bit for ssic port unused (Torez Smith) [1303955]
-- [usb] xhci: handle both SSIC ports in PME stuck quirk (Torez Smith) [1303955]
-- [usb] revert "xhci: don't finish a TD if we get a short-transfer event mid TD" (Torez Smith) [1303955]
-- [netdrv] lan78xx: throttle TX path at slower than SuperSpeed USB (Torez Smith) [1303955]
-- [netdrv] lan78xx: Add to handle mux control per chip id (Torez Smith) [1303955]
-- [usb] option: fix Cinterion AHxx enumeration (Torez Smith) [1303955]
-- [usb] mxu11x0: fix memory leak on usb_serial private data (Torez Smith) [1303955]
-- [usb] serial: ftdi_sio: add support for Yaesu SCU-18 cable (Torez Smith) [1303955]
-- [usb] serial: option: Adding support for Telit LE922 (Torez Smith) [1303955]
-- [usb] serial: visor: fix crash on detecting device without write_urbs (Torez Smith) [1303955]
-- [usb] visor: fix null-deref at probe (Torez Smith) [1303955]
-- [usb] cp210x: add ID for IAI USB to RS485 adaptor (Torez Smith) [1303955]
-- [usb] hub: do not clear BOS field during reset device (Torez Smith) [1303955]
-- [usb] cdc-acm:exclude Samsung phone 04e8:685d (Torez Smith) [1303955]
-- [usb] cdc-acm: send zero packet for intel 7260 modem (Torez Smith) [1303955]
-- [usb] cdc-acm: handle unlinked urb in acm read callback (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: Add SIMCom 7230E (Torez Smith) [1303955]
-- [netdrv] cdc-acm: fix NULL pointer reference (Torez Smith) [1303955]
-- [netdrv] r8152: adjust ALDPS function (Torez Smith) [1303955]
-- [netdrv] r8152: use test_and_clear_bit (Torez Smith) [1303955]
-- [netdrv] r8152: fix the wake event (Torez Smith) [1303955]
-- [usb] pm: Allow USB devices to remain runtime-suspended when sleeping (Torez Smith) [1303955]
-- [netdrv] net: lan78xx: Fix to write to OTP(One Time Programmable) per magic number (Torez Smith) [1303955]
-- [usb] usbmon: remove assignment from IS_ERR argument (Torez Smith) [1303955]
-- [usb] mxu11x0: drop redundant function name from error messages (Torez Smith) [1303955]
-- [usb] mxu11x0: fix debug-message typos (Torez Smith) [1303955]
-- [usb] mxu11x0: rename usb-serial driver (Torez Smith) [1303955]
-- [usb] mxu11x0: fix modem-control handling on B0-transitions (Torez Smith) [1303955]
-- [usb] mxu11x0: fix memory leak on firmware download (Torez Smith) [1303955]
-- [usb] mxu11x0: fix memory leak in port-probe error path (Torez Smith) [1303955]
-- [usb] serial: add Moxa UPORT 11x0 driver (Torez Smith) [1303955]
-- [usb] cp210x: add ID for ELV Marble Sound Board 1 (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: ignore bogus CDC Union descriptors (Torez Smith) [1303955]
-- [usb] mos7840: remove redundant condition (Torez Smith) [1303955]
-- [usb] io_edgeport: remove redundant conditions (Torez Smith) [1303955]
-- [netdrv] usbnet: allow mini-drivers to consume L2 headers (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: remove 1199:9070 device id (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: MDM9x30 specific power management (Torez Smith) [1303955]
-- [usb] ehci: ohci: fix bool assignments (Torez Smith) [1303955]
-- [usb] xhci: refuse loading if nousb is used (Torez Smith) [1303955]
-- [usb] make "nousb" a clear module parameter (Torez Smith) [1303955]
-- [usb] Add connected retry on resume for non SS devices (Torez Smith) [1303955]
-- [usb] usbmon: Use 64bit timestamp for mon_bin_hdr (Torez Smith) [1303955]
-- [usb] misc: usbtest: Remove timeval usage (Torez Smith) [1303955]
-- [usb] usbmon: Remove timeval usage for timestamp (Torez Smith) [1303955]
-- [include] usb: constify usb_mon_operations structure (Torez Smith) [1303955]
-- [usb] misc: usbtest: improve the description for error message (Torez Smith) [1303955]
-- [usb] uas: no gfp argument to uas_submit_urbs() (Torez Smith) [1303955]
-- [usb] uas: use the BIT() macro (Torez Smith) [1303955]
-- [usb] usb-ehci: Delete unnecessary checks before the function call "dma_pool_destroy" (Torez Smith) [1303955]
-- [usb] replace dma_pool_alloc and memset with dma_pool_zalloc (Torez Smith) [1303955]
-- [usb] xhci: rework xhci extended capability list parsing functions (Torez Smith) [1303955]
-- [usb] xhci: use debug level when printing out interval rounding messages (Torez Smith) [1303955]
-- [usb] xhci: mediatek: support MTK xHCI host controller (Torez Smith) [1303955]
-- [usb] host: xhci: add a platform-private field (Torez Smith) [1303955]
-- [usb] host: xhci: cleanup hcd private size (Torez Smith) [1303955]
-- [usb] xhci: use the correct define to indicate port status suspend change (Torez Smith) [1303955]
-- [usb] ehci: warn on unexpectedly active QH (Torez Smith) [1303955]
-- [usb] ehci: enhance "async" debugfs output (Torez Smith) [1303955]
-- [usb] add usbfs snooping for REAP and DISCARD (Torez Smith) [1303955]
-- [usb] limit usbfs snooping of URB contents (Torez Smith) [1303955]
-- [usb] cp210x: add tx_empty() (Torez Smith) [1303955]
-- [usb] cp210x: work around cp2108 GET_LINE_CTL bug (Torez Smith) [1303955]
-- [usb] cp210x: relocate private data from USB interface to port (Torez Smith) [1303955]
-- [usb] cp210x: flush device queues at close (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: Add WeTelecom-WPD600N (Torez Smith) [1303955]
-- [netdrv] r8152: add reset_resume function (Torez Smith) [1303955]
-- [include] net: cdc_ncm: avoid changing RX/TX buffers on MTU changes (Torez Smith) [1303955]
-- [netdrv] net: usb: cdc_ncm: Adding Dell DW5813 LTE AT&T Mobile Broadband Card (Torez Smith) [1303955]
-- [netdrv] net: usb: cdc_ncm: Adding Dell DW5812 LTE Verizon Mobile Broadband Card (Torez Smith) [1303955]
-- [usb] fix invalid memory access in hub_activate() (Torez Smith) [1303955]
-- [usb] ipaq.c: fix a timeout loop (Torez Smith) [1303955]
-- [include] usb: add quirk for devices with broken LPM (Torez Smith) [1303955]
-- [usb] xhci: fix usb2 resume timing and races (Torez Smith) [1303955]
-- [netdrv] r8152: fix lockup when runtime PM is enabled (Torez Smith) [1303955]
-- [netdrv] net: cdc_mbim: add "NDP to end" quirk for Huawei E3372 (Torez Smith) [1303955]
-- [usb] Quiet down false peer failure messages (Torez Smith) [1303955]
-- [usb] xhci: fix config fail of FS hub behind a HS hub with MTT (Torez Smith) [1303955]
-- [usb] xhci: Fix memory leak in xhci_pme_acpi_rtd3_enable() (Torez Smith) [1303955]
-- [usb] Use the USB_SS_MULT() macro to decode burst multiplier for log message (Torez Smith) [1303955]
-- [usb] whci-hcd: add check for dma mapping error (Torez Smith) [1303955]
-- [usb] core : hub: Fix BOS 'NULL pointer' kernel panic (Torez Smith) [1303955]
-- [usb] quirks: Fix another ELAN touchscreen (Torez Smith) [1303955]
-- [netdrv] net: cdc_ncm: fix NULL pointer deref in cdc_ncm_bind_common (Torez Smith) [1303955]
-- [usb] serial: Another Infineon flash loader USB ID (Torez Smith) [1303955]
-- [usb] cdc_acm: Ignore Infineon Flash Loader utility (Torez Smith) [1303955]
-- [usb] cp210x: Remove CP2110 ID from compatibility list (Torez Smith) [1303955]
-- [usb] usblp: do not set TASK_INTERRUPTIBLE before lock (Torez Smith) [1303955]
-- [usb] option: add XS Stick W100-2 from 4G Systems (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: add XS Stick W100-2 from 4G Systems (Torez Smith) [1303955]
-- [usb] xhci: Fix a race in usb2 LPM resume, blocking U3 for usb2 devices (Torez Smith) [1303955]
-- [usb] xhci: fix checking ep busy for CFC (Torez Smith) [1303955]
-- [netdrv] net: usb: cdc_ether: add Dell DW5580 as a mobile broadband adapter (Torez Smith) [1303955]
-- [usb] qcserial: Fix support for HP lt4112 LTE/HSPA+ Gobi 4G Modem (Torez Smith) [1303955]
-- [usb] ti_usb_3410_5052: Add Honeywell HGI80 ID (Torez Smith) [1303955]
-- [usb] serial: option: add support for Novatel MiFi USB620L (Torez Smith) [1303955]
-- [usb] qcserial: Add support for Quectel EC20 Mini PCIe module (Torez Smith) [1303955]
-- [netdrv] usbnet: remove ifdefed out call to dma_supported (Torez Smith) [1303955]
-- [netdrv] kaweth: remove ifdefed out call to dma_supported (Torez Smith) [1303955]
-- [usb] dma: remove external references to dma_supported (Torez Smith) [1303955]
-- [include] kernel.h: make abs() work with 64-bit types (Torez Smith) [1303955]
-- [netdrv] usb: qmi_wwan: Add quirk for Quectel EC20 Mini PCIe module (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: fix entry for HP lt4112 LTE/HSPA+ Gobi 4G Module (Torez Smith) [1303955]
-- [usb] core: Codestyle fix in urb.c (Torez Smith) [1303955]
-- [usb] misc: usb3503: Use i2c_add_driver helper macro (Torez Smith) [1303955]
-- [usb] qcserial: add Sierra Wireless MC74xx/EM74xx (Torez Smith) [1303955]
-- [usb] hcd: use USB_DT_* (Torez Smith) [1303955]
-- [usb] xhci: configure 32-bit DMA if the controller does not support 64-bit DMA (Torez Smith) [1303955]
-- [usb] xhci: makefile: move xhci-pci and xhci-plat-hcd after xhci-hcd (Torez Smith) [1303955]
-- [usb] xhci: replace custom implementation of readq / writeq (Torez Smith) [1303955]
-- [usb] xhci: create one unified function to calculate TRB TD remainder (Torez Smith) [1303955]
-- [include] usb-gadget: use per-attribute show and store methods (Torez Smith) [1303955]
-- [usb] misc: usbtest: add bulk queue test (Torez Smith) [1303955]
-- [usb] qcserial: update comment for Sierra Wireless MC7304/MC7354 (Torez Smith) [1303955]
-- [usb] revert "usb: qcserial/option: make AT URCs work for Sierra Wireless MC73xx" (Torez Smith) [1303955]
-- [usb] revert "usb: qcserial/option: make AT URCs work for Sierra Wireless MC7305/MC7355" (Torez Smith) [1303955]
-- [usb] qcserial: make AT URCs work for Sierra Wireless devices (Torez Smith) [1303955]
-- [usb] usb_wwan/option: generalize option_send_setup for other drivers (Torez Smith) [1303955]
-- [usb] option: revert introduction of struct option_private (Torez Smith) [1303955]
-- [usb] io_ti: Remove extra blank lines separating functions (Torez Smith) [1303955]
-- [usb] io_ti: Fix non-standard comment formatting (Torez Smith) [1303955]
-- [usb] io_ti: Move request_firmware from edge_startup to download_fw (Torez Smith) [1303955]
-- [usb] io_ti: Move download and boot mode code out of download_fw (Torez Smith) [1303955]
-- [usb] io_ti: Use serial->interface for messages in download_fw (Torez Smith) [1303955]
-- [usb] io_ti: Remove obsolete dev parameter from build_i2c_fw_hdr (Torez Smith) [1303955]
-- [usb] rewrite isd200_init_info for readability (Torez Smith) [1303955]
-- [usb] otg: don't set a_alt_hnp_support feature for OTG 2.0 device (Torez Smith) [1303955]
-- [usb] core: driver: Use kmalloc_array (Torez Smith) [1303955]
-- [usb] message: remove redundant declaration (Torez Smith) [1303955]
-- [usb] uas: also check for ESHUTDOWN in error reporting (Torez Smith) [1303955]
-- [usb] hub: remove redundant declarations (Torez Smith) [1303955]
-- [usb] core: hub: Removed some warnings generated by checkpatch.pl (Torez Smith) [1303955]
-- [usb] xhci: drop null test before destroy functions (Torez Smith) [1303955]
-- [usb] whci: drop null test before destroy functions (Torez Smith) [1303955]
-- [usb] xhci: support new USB 3.1 hub request to get extended port status (Torez Smith) [1303955]
-- [usb] xhci: check xhci hardware for USB 3.1 support (Torez Smith) [1303955]
-- [include] usb: define HCD_USB31 speed option for hosts that support USB 3.1 features (Torez Smith) [1303955]
-- [usb] xhci: define the new default speed ID for SuperSpeedPlus used by xhci hw (Torez Smith) [1303955]
-- [usb] xhci: Add a SuperSpeedPlus capability descriptor for xhci USB 3.1 roothub (Torez Smith) [1303955]
-- [usb] xhci: parse xhci protocol speed ID list for usb 3.1 usage (Torez Smith) [1303955]
-- [include] usb: store the new usb 3.1 SuperSpeedPlus device capability descriptor (Torez Smith) [1303955]
-- [include] usb: Add USB 3.1 SuperSpeedPlus device capability descriptor (Torez Smith) [1303955]
-- [usb] xhci: Read and parse new xhci 1.1 capability register (Torez Smith) [1303955]
-- [netdrv] lan78xx: Return 0 when lan78xx_suspend() has no error (Torez Smith) [1303955]
-- [include] usb: Added forgotten parameter description for authorized attribute in usb.h (Torez Smith) [1303955]
-- [include] usb: phy: change some comments (Torez Smith) [1303955]
-- [usb] misc: usbtest: format the data pattern according to max packet size (Torez Smith) [1303955]
-- [usb] misc: usbtest: using the same data format among write/compare/output (Torez Smith) [1303955]
-- [usb] misc: usbtest: delete useless memset for urbs array (Torez Smith) [1303955]
-- [usb] misc: usbtest: allocate size of urb array according to user parameter (Torez Smith) [1303955]
-- [netdrv] usbnet: remove invalid check (Torez Smith) [1303955]
-- [include] usb: interface authorization: Use a flag for the default device authorization (Torez Smith) [1303955]
-- [usb] interface authorization: SysFS part of USB interface authorization (Torez Smith) [1303955]
-- [usb] interface authorization: Introduces the USB interface authorization (Torez Smith) [1303955]
-- [usb] interface authorization: Control interface probing and claiming (Torez Smith) [1303955]
-- [include] usb: interface authorization: Introduces the default interface authorization (Torez Smith) [1303955]
-- [include] usb: interface authorization: Declare authorized attribute (Torez Smith) [1303955]
-- [netdrv] lan78xx: Remove not defined MAC_CR_GMII_EN_ bit from MAC_CR (Torez Smith) [1303955]
-- [netdrv] lan78xx: Create lan78xx_get_mdix_status() and lan78xx_set_mdix_status() for MDIX control (Torez Smith) [1303955]
-- [netdrv] lan78xx: Remove phy defines in lan78xx.h and use defines in include/linux/microchipphy.h (Torez Smith) [1303955]
-- [netdrv] lan78xx: Update to use phylib instead of mii_if_info (Torez Smith) [1303955]
-- [netdrv] lan78xx: Add PHYLIB and MICROCHIP_PHY as default config (Torez Smith) [1303955]
-- [netdrv] lan78xx: Check device ready bit (PMT_CTL_READY_) after reset the PHY (Torez Smith) [1303955]
-- [netdrv] net: fix cdc-phonet.c dependency and build error (Torez Smith) [1303955]
-- [include] cdc: add header guards (Torez Smith) [1303955]
-- [include] cdc: Fix build warning (Torez Smith) [1303955]
-- [netdrv] cdc-phonet: use common parser (Torez Smith) [1303955]
-- [netdrv] qmi-wwan: use common parser (Torez Smith) [1303955]
-- [netdrv] cdc-ether: switch to common CDC parser (Torez Smith) [1303955]
-- [netdrv] cdc-ncm: use common parser (Torez Smith) [1303955]
-- [include] cdc: common parser for extra headers (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: add Sierra Wireless MC74xx/EM74xx (Torez Smith) [1303955]
-- [netdrv] net: asix: add support for the Billionton GUSB2AM-1G-B USB adapter (Torez Smith) [1303955]
-- [usb] xhci: Add spurious wakeup quirk for LynxPoint-LP controllers (Torez Smith) [1303955]
-- [usb] xhci: handle no ping response error properly (Torez Smith) [1303955]
-- [usb] xhci: don't finish a TD if we get a short transfer event mid TD (Torez Smith) [1303955]
-- [netdrv] net: usb: asix: Fix crash on skb alloc failure (Torez Smith) [1303955]
-- [usb] Add device quirk for Logitech PTZ cameras (Torez Smith) [1303955]
-- [usb] chaoskey read offset bug (Torez Smith) [1303955]
-- [usb] Add reset-resume quirk for two Plantronics usb headphones (Torez Smith) [1303955]
-- [usb] whiteheat: fix potential null-deref at probe (Torez Smith) [1303955]
-- [netdrv] ch9200: Convert to use module_usb_driver (Torez Smith) [1303955]
-- [usb] xhci: init command timeout timer earlier to avoid deleting it uninitialized (Torez Smith) [1303955]
-- [usb] xhci: change xhci 1.0 only restrictions to support xhci 1.1 (Torez Smith) [1303955]
-- [usb] xhci: exit early in xhci_setup_device() if we're halted or dying (Torez Smith) [1303955]
-- [usb] xhci: stop everything on the first call to xhci_stop (Torez Smith) [1303955]
-- [usb] xhci: Clear XHCI_STATE_DYING on start (Torez Smith) [1303955]
-- [usb] xhci: lock mutex on xhci_stop (Torez Smith) [1303955]
-- [usb] xhci: Move xhci_pme_quirk() behind #ifdef CONFIG_PM (Torez Smith) [1303955]
-- [usb] xhci: give command abortion one more chance before killing xhci (Torez Smith) [1303955]
-- [usb] Use the USB_SS_MULT() macro to get the burst multiplier (Torez Smith) [1303955]
-- [netdrv] usbnet: New driver for QinHeng CH9200 devices (Torez Smith) [1303955]
-- [usb] option: add ZTE PIDs (Torez Smith) [1303955]
-- [netdrv] r8152: fix the runtime suspend issues (Torez Smith) [1303955]
-- [netdrv] r8152: split DRIVER_VERSION (Torez Smith) [1303955]
-- [netdrv] usbnet: Fix a race between usbnet_stop() and the BH (Torez Smith) [1303955]
-- [netdrv] lan78xx: Fix ladv/radv error handling in lan78xx_link_reset() (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: Sierra Wireless MC73xx -> Sierra Wireless MC7304/MC7354 (Torez Smith) [1303955]
-- [usb] qcserial: add HP lt4111 LTE/EV-DO/HSPA+ Gobi 4G Module (Torez Smith) [1303955]
-- [usb] ftdi_sio: Added custom PID for CustomWare products (Torez Smith) [1303955]
-- [usb] usb_wwan: silence read errors on disconnect (Torez Smith) [1303955]
-- [usb] option: silence interrupt errors (Torez Smith) [1303955]
-- [usb] symbolserial: Correct transferred data size (Torez Smith) [1303955]
-- [usb] symbolserial: Use usb_get_serial_port_data (Torez Smith) [1303955]
-- [usb] misc: usbtest: format max packet size for iso transfer (Torez Smith) [1303955]
-- [usb] host: ehci-sys: delete useless bus_to_hcd conversion (Torez Smith) [1303955]
-- [include] revert "usb: interface authorization: Declare authorized attribute" (Torez Smith) [1303955]
-- [include] revert "usb: interface authorization: Introduces the default interface authorization" (Torez Smith) [1303955]
-- [usb] revert "usb: interface authorization: Control interface probing and claiming" (Torez Smith) [1303955]
-- [usb] revert "usb: interface authorization: Introduces the USB interface authorization" (Torez Smith) [1303955]
-- [usb] revert "usb: interface authorization: SysFS part of USB interface authorization" (Torez Smith) [1303955]
-- [include] revert "usb: interface authorization: Use a flag for the default device authorization" (Torez Smith) [1303955]
-- [usb] core: hub: Removed some warnings generated by checkpatch.pl (Torez Smith) [1303955]
-- [usb] host: ohci-at91: depend on OF (Torez Smith) [1303955]
-- [include] usb: interface authorization: Use a flag for the default device authorization (Torez Smith) [1303955]
-- [usb] interface authorization: SysFS part of USB interface authorization (Torez Smith) [1303955]
-- [usb] interface authorization: Introduces the USB interface authorization (Torez Smith) [1303955]
-- [usb] interface authorization: Control interface probing and claiming (Torez Smith) [1303955]
-- [include] usb: interface authorization: Introduces the default interface authorization (Torez Smith) [1303955]
-- [include] usb: interface authorization: Declare authorized attribute (Torez Smith) [1303955]
-- [usb] hub: remove assignment from if condition (Torez Smith) [1303955]
-- [usb] endpoint: convert spaces to tabs (Torez Smith) [1303955]
-- [usb] otg_whitelist: remove whitespace (Torez Smith) [1303955]
-- [include] usb: fsl: Workaround for USB erratum-A005275 (Torez Smith) [1303955]
-- [netdrv] lan78xx: Remove BUG_ON() (Torez Smith) [1303955]
-- [netdrv] lan78xx: Fix Smatch Warnings (Torez Smith) [1303955]
-- [include] usb: hcd.h: Fix the values of SetHubDepth and GetPortErrorCount to match USB 3.1 specification (Torez Smith) [1303955]
-- [usb] core: hub.c: Removed some warnings generated by checkpatch.pl (Torez Smith) [1303955]
-- [usb] devio: fix spacing (Torez Smith) [1303955]
-- [usb] xhci: xhci 1.1: Stopped - Short Packet Capability (SPC) (Torez Smith) [1303955]
-- [usb] xhci: xhci 1.1: Contiguous Frame ID Capability (CFC) (Torez Smith) [1303955]
-- [usb] xhci: Add support for URB_ZERO_PACKET to bulk/sg transfers (Torez Smith) [1303955]
-- [usb] xhci: make USB_XHCI_PLATFORM selectable (Torez Smith) [1303955]
-- [usb] misc: ftdi-elan: Simplify return statement (Torez Smith) [1303955]
-- [usb] host: xhci: Simplify return statement (Torez Smith) [1303955]
-- [usb] devio: remove assignment from if condition (Torez Smith) [1303955]
-- [netdrv] r8152: disable the capability of zero length (Torez Smith) [1303955]
-- [netdrv] Microchip's LAN7800 family USB 2/3 to 10/100/1000 Ethernet device driver (Torez Smith) [1303955]
-- [usb] pl2303: fix baud-rate divisor calculations (Torez Smith) [1303955]
-- [include] usb: common: add API to update usb otg capabilities by device tree (Torez Smith) [1303955]
-- [include] usb: otg: add usb_otg_caps structure for otg capabilities (Torez Smith) [1303955]
-- [include] usb: add USB_OTG_ADP definition (Torez Smith) [1303955]
-- [include] usb: add usb_otg20_descriptor for OTG 2.0 and above (Torez Smith) [1303955]
-- [include] usb: fsl: Modify phy clk valid bit checking (Torez Smith) [1303955]
-- [include] usb: fsl: Introduce FSL_USB2_PHY_UTMI_DUAL macro (Torez Smith) [1303955]
-- [include] usb: fsl: Implement Workaround for USB Erratum A007792 (Torez Smith) [1303955]
-- [include] usb: fsl: Replace macros with enumerated type (Torez Smith) [1303955]
-- [usb] usleep_range is preferred over udelay where wakeup is flexible (Torez Smith) [1303955]
-- [usb] usbcore: add sysfs support to xHCI usb3 hardware LPM (Torez Smith) [1303955]
-- [usb] move assignment out of if condition (Torez Smith) [1303955]
-- [usb] host: xhci: remove typo in function documentation (Torez Smith) [1303955]
-- [usb] atm: cxacru: fix blank line after declaration (Torez Smith) [1303955]
-- [usb] class: Use USB_CLASS_PRINTER instead of number 7 (Torez Smith) [1303955]
-- [usb] fix coding style issue (Torez Smith) [1303955]
-- [netdrv] r8152: support the new RTL8153 chip (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: Add support for Dell Wireless 5809e 4G Modem (Torez Smith) [1303955]
-- [usb] serial: ftdi_sio: Fix broken URL in comment (Torez Smith) [1303955]
-- [netdrv] usbnet: Get EVENT_NO_RUNTIME_PM bit before it is cleared (Torez Smith) [1303955]
-- [netdrv] net: qmi_wwan: add HP lt4111 LTE/EV-DO/HSPA+ Gobi 4G Module (Torez Smith) [1303955]
-- [usb] Delete XHCI command timer if necessary (Torez Smith) [1303955]
-- [usb] xhci: fix off by one error in TRB DMA address boundary check (Torez Smith) [1303955]
-- [netdrv] r8152: reset device when tx timeout (Torez Smith) [1303955]
-- [netdrv] r8152: add pre_reset and post_reset (Torez Smith) [1303955]
-- [usb] sierra: add 1199:68AB device ID (Torez Smith) [1303955]
-- [netdrv] r8152: don't enable napi before rx ready (Torez Smith) [1303955]
-- [netdrv] r8152: fix wakeup settings (Torez Smith) [1303955]
-- [netdrv] r8152: fix the issue about U1/U2 (Torez Smith) [1303955]
-- [usb] cdc-acm: Destroy acm_minors IDR on module exit (Torez Smith) [1303955]
-- [usb] usb-storage: Add ignore-device quirk for gm12u320 based usb mini projectors (Torez Smith) [1303955]
-- [usb] usb-storage: ignore ZTE MF 823 card reader in mode 0x1225 (Torez Smith) [1303955]
-- [usb] ohci: Fix race between ED unlink and URB submission (Torez Smith) [1303955]
-- [usb] core: lpm: set lpm_capable for root hub device (Torez Smith) [1303955]
-- [usb] xhci: do not report PLC when link is in internal resume state (Torez Smith) [1303955]
-- [usb] xhci: prevent bus_suspend if SS port resuming in phase 1 (Torez Smith) [1303955]
-- [usb] xhci: report U3 when link is in resume state (Torez Smith) [1303955]
-- [usb] xhci: Calculate old endpoints correctly on device reset (Torez Smith) [1303955]
-- [usb] xhci: Bugfix for NULL pointer deference in xhci_endpoint_init() function (Torez Smith) [1303955]
-- [usb] xhci: Workaround to get D3 working in Intel xHCI (Torez Smith) [1303955]
-- [usb] xhci: call BIOS workaround to enable runtime suspend on Intel Braswell (Torez Smith) [1303955]
-- [netdrv] qmi_wwan: add the second QMI/network interface for Sierra Wireless MC7305/MC7355 (Torez Smith) [1303955]
-- [usb] ulpi: ulpi_init should be executed in subsys_initcall (Torez Smith) [1303955]
-- [usb] qcserial: Add support for Dell Wireless 5809e 4G Modem (Torez Smith) [1303955]
-- [usb] qcserial/option: make AT URCs work for Sierra Wireless MC7305/MC7355 (Torez Smith) [1303955]
-- [fs] configfs: fix kernel infoleak through user-controlled format string (Torez Smith) [1303955]
-- [usb] serial: Destroy serial_minors IDR on module exit (Torez Smith) [1303955]
-- [netdrv] usb: add device id for NVIDIA Tegra USB 3.0 Ethernet (Torez Smith) [1303955]
-- [usb] cp210x: add ID for Aruba Networks controllers (Torez Smith) [1303955]
-- [usb] mos7720: rename registers (Torez Smith) [1303955]
-- [usb] option: add 2020:4000 ID (Torez Smith) [1303955]
-- [usb] mips: octeon: Set OHCI and EHCI MMIO byte order to match CPU (Torez Smith) [1303955]
-- [usb] cdc-acm: Add support of ATOL FPrint fiscal printers (Torez Smith) [1303955]
-- [usb] usbtmc: add device quirk for Rigol DS6104 (Torez Smith) [1303955]
-- [usb] serial: mos7840: Use setup_timer (Torez Smith) [1303955]
-- [usb] usb, hid: Remove Vernier devices from lsusb and hid_ignore_list (Torez Smith) [1303955]
-- [usb] fsl: Fix compilation error for fsl ehci drv (Torez Smith) [1303955]
-- [include] usb:fsl: Add support for USB controller version-2.5 (Torez Smith) [1303955]
-- [usb] core: Fix USB 3.0 devices lost in NOTATTACHED state after a hub port reset (Torez Smith) [1303955]
-- [include] usb: hcd.h : Removed an unnecessary function prototype usb_find_interface_driver() (Torez Smith) [1303955]
-- [usb] host: xhci: remove incorrect comment about mutex (Torez Smith) [1303955]
-- [usb] xhci: Return correct number of tranferred bytes for stalled control endpoints (Torez Smith) [1303955]
-- [usb] xhci: optimize xhci bus resume time (Torez Smith) [1303955]
-- [usb] xhci: Fix suspend/resume when used with OTG core (Torez Smith) [1303955]
-- [usb] xhci: fix xhci locking up during hcd remove (Torez Smith) [1303955]
-- [usb] xhci: Allow usb_add/remove_hcd() to be called repeatedly (Torez Smith) [1303955]
-- [usb] xhci: cleanup xhci_hcd allocation (Torez Smith) [1303955]
-- [include] usb: phy: add static inline wrapper for devm_usb_get_phy_by_node (Torez Smith) [1303955]
-- [include] usb: phy: Add interface to get phy give of device_node (Torez Smith) [1303955]
-- [include] usb: gadget: net2280: fix use of GPEP in both directions (Torez Smith) [1303955]
-- [include] usb: gadget: net2280: check interrupts for all endpoints (Torez Smith) [1303955]
-- [usb] serial: fix grammar in Kconfig help text for FTDI_SIO (Torez Smith) [1303955]
-- [usb] cdc-acm: use swap() in acm_probe() (Torez Smith) [1303955]
-- [usb] cdc-acm: add support for up to 256 devices (Torez Smith) [1303955]
-- [usb] cdc-acm: use idr to manage minor numbers (Torez Smith) [1303955]
-- [usb] devio: fix a condition in async_completed() (Torez Smith) [1303955]
-- [usb] fsl: Make fsl ehci drv an independent driver module (Torez Smith) [1303955]
-- [scripts] usb: add bus type for USB ULPI (Torez Smith) [1303955]
-- [usb] storage: fix module reference for scsi host (Torez Smith) [1303955]
-- [usb] xusbatm.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] uss720.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] usblp.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] usbatm.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] speedtch.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] sisusb_con.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] sisusb.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] ohci-q.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] ohci-hcd.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] ohci-dbg.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] mon_stat.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] mon_main.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] mon_bin.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] hub.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] hcd.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] ehci-dbg.c: move assignment out of if () block (Torez Smith) [1303955]
-- [usb] core: buffer: fixed the checkpatch warning (Torez Smith) [1303955]
-- [usb] Enable LPM for USB 2.01+ full-speed devices (Torez Smith) [1303955]
-- [usb] storage: scsiglue: Remove SPRINTF macro use (Torez Smith) [1303955]
-- [usb] don't build PCI quirks if USB support isn't configured (Torez Smith) [1303955]
-- [usb] Set unused ports to "fixed" rather than "unknown" (Torez Smith) [1303955]
-- [usb] Prefer firmware values when determining whether a port is removable (Torez Smith) [1303955]
-- [mm] add dma_pool_zalloc() call to DMA API (Torez Smith) [1303955]
-
-* Wed May 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-398.el7]
-- [powerpc] powernv: Fix OPAL_CONSOLE_FLUSH prototype and usages (Gustavo Duarte) [1313758]
-- [powerpc] powernv: Add a kmsg_dumper that flushes console output on panic (Gustavo Duarte) [1313758]
-- [kernel] change TRACE_EVENT(writeback_dirty_page) to check bdi->dev != NULL (Oleg Nesterov) [1306851] {CVE-2016-3070}
-- [kernel] hrtimer: Prevent remote enqueue of leftmost timers (David Bulkow) [1323752]
-- [s390] sclp: introduce check for SIE (Hendrik Brueckner) [1310710]
-- [s390] kvm: don't load kvm without virtualization support (Hendrik Brueckner) [1310710]
-- [s390] show virtualization support in /proc/cpuinfo (Hendrik Brueckner) [1310710]
-- [s390] sclp: correctly set eca siif bit (Hendrik Brueckner) [1310710]
-- [md] add rdev reference for super write (Xiao Ni) [1312720]
-- [pci] Fix sriov_enable() error path for pcibios_enable_sriov() failures (Myron Stowe) [1332667]
-- [pci] Reorder pcibios_sriov_disable() (Myron Stowe) [1332667]
-- [pci] Set SR-IOV NumVFs to zero after enumeration (Myron Stowe) [1332667]
-- [pci] Clear IORESOURCE_UNSET when clipping a bridge window (Myron Stowe) [1332667]
-- [pci] Preserve resource size during alignment reordering (Myron Stowe) [1332667]
-- [pci] Fix IOV resource sorting by alignment requirement (Myron Stowe) [1332667]
-- [pci] aspm: Drop __pci_disable_link_state() useless "force" parameter (Myron Stowe) [1332667]
-- [pci] Consider additional PF's IOV BAR alignment in sizing and assigning (Myron Stowe) [1332667]
-- [pci] Add pcibios_iov_resource_alignment() interface (Myron Stowe) [1332667]
-- [pci] Add pcibios_sriov_enable() and pcibios_sriov_disable() (Myron Stowe) [1332667]
-- [pci] Calculate maximum number of buses required for VFs (Myron Stowe) [1332667]
-- [pci] Refresh First VF Offset and VF Stride when updating NumVFs (Myron Stowe) [1332667]
-- [pci] Index IOV resources in the conventional style (Myron Stowe) [1332667]
-- [pci] Read capability list as dwords, not bytes (Myron Stowe) [1332667]
-- [pci] Don't clear ASPM bits when the FADT declares it's unsupported (Myron Stowe) [1332667]
-- [pci] Clarify policy for vendor IDs in pci.txt (Myron Stowe) [1332667]
-- [pci] Assign resources before drivers claim devices (pci_scan_root_bus()) (Myron Stowe) [1332667]
-- [pci] Fail pci_ioremap_bar() on unassigned resources (Myron Stowe) [1332667]
-- [pci] Show driver, BAR#, and resource on pci_ioremap_bar() failure (Myron Stowe) [1332667]
-- [pci] Mark invalid BARs as unassigned (Myron Stowe) [1332667]
-- [pci] Assign resources before drivers claim devices (pci_scan_bus()) (Myron Stowe) [1332667]
-- [pci] pnp: Don't check for overlaps with unassigned PCI BARs (Myron Stowe) [1332667]
-- [pci] Add helper functions pci_get[put]_host_bridge_device() (Myron Stowe) [1332667]
-
-* Wed May 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-397.el7]
-- [hid] remove hid_output_raw_report transport implementations (Benjamin Tissoires) [1311883]
-- [hid] usbhid: remove duplicated code (Benjamin Tissoires) [1311883]
-- [hid] hidp: remove duplicated coded (Benjamin Tissoires) [1311883]
-- [hid] i2c-hid: use generic .request() implementation (Benjamin Tissoires) [1311883]
-- [hid] i2c-hid: implement ll_driver transport-layer callbacks (Benjamin Tissoires) [1311883]
-- [hid] sony: do not rely on hid_output_raw_report (Benjamin Tissoires) [1311883]
-- [hid] rmi: remove hdev->hid_output_raw_report() stubs (Benjamin Tissoires) [1311883]
-- [hid] aw: replace hid_output_raw_report() calls by appropriates ones (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Synchronize MT frame on reset_resume (Benjamin Tissoires) [1311883]
-- [hid] multitouch: warn on sysfs group creation failure (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Release all touch slots on reset_resume (Benjamin Tissoires) [1311883]
-- [hid] multitouch: force retrieving of Win8 signature blob (Benjamin Tissoires) [1311883]
-- [hid] fix ignore_special_drivers modparam description (Benjamin Tissoires) [1311883]
-- [hid] fix hid_ignore_special_drivers module parameter (Benjamin Tissoires) [1311883]
-- [hid] core: do not scan reports if the group is already set (Benjamin Tissoires) [1311883]
-- [hid] core: prevent out-of-bound readings (Benjamin Tissoires) [1311883]
-- [hid] fix out of bound access in extract() and implement() (Benjamin Tissoires) [1311883]
-- [hid] multitouch: fix input mode switching on some Elan panels (Benjamin Tissoires) [1311883]
-- [hid] multitouch: enable palm rejection if device implements confidence usage (Benjamin Tissoires) [1311883]
-- [hid] use to_hid_device() (Benjamin Tissoires) [1311883]
-- [hid] expose country code in sysfs (Benjamin Tissoires) [1311883]
-- [hid] move to_hid_device() to hid.h (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Fetch feature reports on demand for Win8 devices (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Add suffix for HID_DG_TOUCHPAD (Benjamin Tissoires) [1311883]
-- [hid] core: Avoid uninitialized buffer access (Benjamin Tissoires) [1311883]
-- [hid] input: allow input_configured callback return errors (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Add support for CJTouch MultiTouch (Benjamin Tissoires) [1311883]
-- [hid] core: do not reject devices when they declare too many usages (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Fix fields from pen report ID being interpreted for multitouch (Benjamin Tissoires) [1311883]
-- [hid] Export hid_field_extract() (Benjamin Tissoires) [1311883]
-- [hid] input: Fix coding style issue (Benjamin Tissoires) [1311883]
-- [hid] input: Simplify conditional expression (Benjamin Tissoires) [1311883]
-- [hid] input: Add parentheses to quell gcc warning (Benjamin Tissoires) [1311883]
-- [hid] remove 2 unused usb.h includes (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Add support for button type usage (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support of clickpads (Benjamin Tissoires) [1311883]
-- [hid] make hid_report_len as a static inline function in hid.h (Benjamin Tissoires) [1311883]
-- [hid] multitouch: Add quirk for VTL touch panels (Benjamin Tissoires) [1311883]
-- [hid] core: cleanup .claimed field on disconnect (Benjamin Tissoires) [1311883]
-- [hid] usbhid: quirk for PM1610 and PM1640 Touchscreen (Benjamin Tissoires) [1311883]
-- [hid] core: add two new usages for digitizer (Benjamin Tissoires) [1311883]
-- [hid] core: fix validation of report id 0 (Benjamin Tissoires) [1311883]
-- [hid] core: fix computation of the report size (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support of EliteGroup 05D8 panels (Benjamin Tissoires) [1311883]
-- [hid] core: do not scan constant input report (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support for Win 8.1 multitouch touchpads (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support of other generic collections in hid-mt (Benjamin Tissoires) [1311883]
-- [hid] multitouch: remove pen special handling (Benjamin Tissoires) [1311883]
-- [hid] multitouch: remove registered devices with default behavior (Benjamin Tissoires) [1311883]
-- [hid] wiimote: replace hid_output_raw_report with hid_hw_output_report for output requests (Benjamin Tissoires) [1311883]
-- [hid] logitech-dj: remove hid_output_raw_report call (Benjamin Tissoires) [1311883]
-- [hid] revert "revert "hid: fix logitech-dj: missing Unifying device issue"" (Benjamin Tissoires) [1311883]
-- [hid] replace hid_output_raw_report with hid_hw_raw_request for feature requests (Benjamin Tissoires) [1311883]
-- [hid] make .raw_request mandatory (Benjamin Tissoires) [1311883]
-- [hid] core: check parameters when sending/receiving data from the device (Benjamin Tissoires) [1311883]
-- [hid] Add HID transport driver documentation (Benjamin Tissoires) [1311883]
-- [hid] input: hid-input remove hid_output_raw_report call (Benjamin Tissoires) [1311883]
-- [hid] core: implement generic .request() (Benjamin Tissoires) [1311883]
-- [hid] introduce helper to access hid_output_raw_report() (Benjamin Tissoires) [1311883]
-- [hid] remove hidinput_input_event handler (Benjamin Tissoires) [1311883]
-- [hid] usbhid: use generic hidinput_input_event() (Benjamin Tissoires) [1311883]
-- [hid] usbhid: update LED fields unlocked (Benjamin Tissoires) [1311883]
-- [hid] usbhid: make usbhid_set_leds() static (Benjamin Tissoires) [1311883]
-- [hid] i2c: use generic hidinput_input_event() (Benjamin Tissoires) [1311883]
-- [hid] uhid: use generic hidinput_input_event() (Benjamin Tissoires) [1311883]
-- [hid] uhid: implement .raw_request (Benjamin Tissoires) [1311883]
-- [hid] uhid: remove duplicated code (Benjamin Tissoires) [1311883]
-- [hid] remove hid_get_raw_report in struct hid_device (Benjamin Tissoires) [1311883]
-- [hid] aw: make comment more accurate and nicer (Benjamin Tissoires) [1311883]
-- [hid] hidp: remove hidp_hidinput_event (Benjamin Tissoires) [1311883]
-- [hid] logitech-dj: remove hidinput_input_event (Benjamin Tissoires) [1311883]
-- [hid] logitech-dj: Fix non-atomic kmalloc in logi_dj_ll_input_event() (Benjamin Tissoires) [1311883]
-- [hid] add inliners for ll_driver transport-layer callbacks (Benjamin Tissoires) [1311883]
-- [hid] Add the transport-driver functions to the HIDP driver (Benjamin Tissoires) [1311883]
-- [hid] bluetooth: hidp: implement hidinput_input_event callback (Benjamin Tissoires) [1311883]
-- [hid] Add the transport-driver function to the uhid driver (Benjamin Tissoires) [1311883]
-- [hid] Add transport-driver functions to the USB HID interface (Benjamin Tissoires) [1311883]
-- [hid] Add transport-driver callbacks to the hid_ll_driver struct (Benjamin Tissoires) [1311883]
-- [hid] fix buffer allocations (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add FocalTech FTxxxx support (Benjamin Tissoires) [1311883]
-- [hid] remove SIS entries from hid_have_special_driver[] (Benjamin Tissoires) [1311883]
-- [hid] add support for SiS multitouch panel in the touch monitor LG 23ET83V (Benjamin Tissoires) [1311883]
-- [hid] usbhid: fix sis quirk (Benjamin Tissoires) [1311883]
-- [hid] usbhid: merge the sis quirk (Benjamin Tissoires) [1311883]
-- [hid] remove self-assignment from hid_input_report (Benjamin Tissoires) [1311883]
-- [hid] Fix unit exponent parsing again (Benjamin Tissoires) [1311883]
-- [hid] core: fix hid delimiter local tag parsing (Benjamin Tissoires) [1311883]
-- [hid] input: generic hidinput_input_event handler (Benjamin Tissoires) [1311883]
-- [hid] do not init input reports for Win 8 multitouch devices (Benjamin Tissoires) [1311883]
-- [hid] detect Win 8 multitouch devices in core (Benjamin Tissoires) [1311883]
-- [hid] Use hid_parser for pre-scanning the report descriptors (Benjamin Tissoires) [1311883]
-- [hid] multitouch: devm conversion (Benjamin Tissoires) [1311883]
-- [hid] explain out-of-range check better (Benjamin Tissoires) [1311883]
-- [hid] fix false positive out of range values (Benjamin Tissoires) [1311883]
-- [hid] core: fix reporting of raw events (Benjamin Tissoires) [1311883]
-- [hid] remove duplicate ID for D-WAV eGalax 0x7224 (Benjamin Tissoires) [1311883]
-- [hid] sort IDs for D-WAV eGalax multitouch devices (Benjamin Tissoires) [1311883]
-- [hid] multitouch: add support for Data Modul easyMaxTouch (Benjamin Tissoires) [1311883]
-
-* Tue May 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-396.el7]
-- [powerpc] copro: Fix faulting kernel segments (Gustavo Duarte) [1275967]
-- [misc] cxl: Ignore probes for virtual afu pci devices (Gustavo Duarte) [1275967]
-- [include] cxl: Remove cxl_get_phys_dev() kernel API (Gustavo Duarte) [1275967]
-- [misc] cxl: Add tracepoints around the cxl hcall (Gustavo Duarte) [1275967]
-- [misc] cxl: Adapter failure handling (Gustavo Duarte) [1275967]
-- [include] cxl: Support the cxl kernel API from a guest (Gustavo Duarte) [1275967]
-- [misc] cxl: Parse device tree and create cxl device(s) at boot (Gustavo Duarte) [1275967]
-- [include] cxl: Support to flash a new image on the adapter from a guest (Gustavo Duarte) [1275967]
-- [misc] cxl: sysfs support for guests (Gustavo Duarte) [1275967]
-- [misc] cxl: Add guest-specific code (Gustavo Duarte) [1275967]
-- [misc] cxl: Separate bare-metal fields in adapter and AFU data structures (Gustavo Duarte) [1275967]
-- [misc] cxl: New hcalls to support cxl adapters (Gustavo Duarte) [1275967]
-- [powerpc] New possible return value from hcall (Gustavo Duarte) [1275967]
-- [misc] cxl: IRQ allocation for guests (Gustavo Duarte) [1275967]
-- [misc] cxl: Update cxl_irq() prototype (Gustavo Duarte) [1275967]
-- [misc] cxl: Isolate a few bare-metal-specific calls (Gustavo Duarte) [1275967]
-- [misc] cxl: Rename some bare-metal specific functions (Gustavo Duarte) [1275967]
-- [misc] cxl: Introduce implementation-specific API (Gustavo Duarte) [1275967]
-- [misc] cxl: Define process problem state area at attach time only (Gustavo Duarte) [1275967]
-- [misc] cxl: Move bare-metal specific code to specialized files (Gustavo Duarte) [1275967]
-- [misc] cxl: Move common code away from bare-metal-specific files (Gustavo Duarte) [1275967]
-- [misc] cxl: Increase timeout for detection of AFU mmio hang (Steve Best) [1329682]
-- [x86] Mark Intel Knights Landing-F processor as not supported (Steve Best) [1331516]
-- [block] sysfs/blk-sysfs: fix uninitialized var usage (Ewan Milne) [1301477]
-- [kernel] ftrace: Update dynamic ftrace calls only if necessary (Jiri Olsa) [1255039]
-- [kernel] ftrace: Make ftrace_hash_rec_enable return update bool (Jiri Olsa) [1255039]
-- [kernel] nohz: Fix !HIGH_RES_TIMERS hang (Prarit Bhargava) [1329357]
-- [netdrv] myri10ge: fix sleeping with bh disabled (Stanislaw Gruszka) [1287506]
-- [netdrv] ixgbevf: fix spoofed packets with random MAC (Ken Cox) [1247345]
-- [netdrv] ixgbevf: use ether_addr_copy instead of memcpy (Ken Cox) [1247345]
-- [cpufreq] powernv: Define per_cpu chip pointer to optimize hot-path (Steve Best) [1329176]
-- [cpufreq] powernv: Fix bugs in powernv_cpufreq_{init/exit} (Steve Best) [1329176]
-- [cpufreq] powernv: Replace pr_info with trace print for throttle event (Steve Best) [1329176]
-- [cpufreq] powernv/tracing: Add powernv_throttle tracepoint (Steve Best) [1329176]
-- [cpufreq] powernv: Remove cpu_to_chip_id() from hot-path (Steve Best) [1329176]
-- [cpufreq] powernv: Free 'chips' on module exit (Steve Best) [1329176]
-
-* Mon May 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-395.el7]
-- [x86] compat: Add missing CLAC to entry_INT80_32 (Lauro Ramos Venancio) [1316055]
-- [net] netfilter: x_tables: enforce nul-terminated table name from getsockopt GET_ENTRIES (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: make sure e->next_offset covers remaining blob size (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] ipv4/fib: don't warn when primary address is missing if in_dev is dead (Paolo Abeni) [1318271] {CVE-2016-3156}
-- [net] ipv4: Don't do expensive useless work during inetdev destroy (Paolo Abeni) [1318271] {CVE-2016-3156}
-- [net] bridge: fdb: rearrange net_bridge_fdb_entry (Jakub Sitnicki) [1311131]
-- [net] ipv6: Count in extension headers in skb->network_header (Jakub Sitnicki) [1323716]
-- [net] if_link: Add control trust VF (Jakub Sitnicki) [1302101]
-- [net] rtnetlink: verify IFLA_VF_INFO attributes before passing them to driver (Jakub Sitnicki) [1302101]
-- [net] ip6_tunnel: set rtnl_link_ops before calling register_netdevice (Thadeu Lima de Souza Cascardo) [1306774]
-- [net] ipvs: correct initial offset of Call-ID header search in SIP persistence engine (Paolo Abeni) [1322716]
-- [net] ipvs: allow rescheduling after RST (Paolo Abeni) [1322716]
-- [net] ipvs: drop first packet to redirect conntrack (Paolo Abeni) [1322716]
-- [net] ipvs: handle ip_vs_fill_iph_skb_off failure (Paolo Abeni) [1322716]
-- [net] ipvs: replace ip_vs_fill_ip4hdr with ip_vs_fill_iph_skb_off (Paolo Abeni) [1322716]
-- [net] tuntap: restore default qdisc (Phil Sutter) [1152231]
-- [net] IFF_NO_QUEUE: Fix for drivers not calling ether_setup() (Phil Sutter) [1152231]
-- [net] macvlan: convert to use IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] qdisc: enhance default_qdisc documentation (Phil Sutter) [1152231]
-- [net] sched: simplify attach_one_default_qdisc() (Phil Sutter) [1152231]
-- [net] sched: register noqueue qdisc (Phil Sutter) [1152231]
-- [net] sched: ignore tx_queue_len when assigning default qdisc (Phil Sutter) [1152231]
-- [net] fix IFF_NO_QUEUE for drivers using alloc_netdev (Phil Sutter) [1152231]
-- [net] sched: drop all special handling of tx_queue_len == 0 (Phil Sutter) [1152231]
-- [net] net_sched: gred: add TCA_GRED_LIMIT attribute (Phil Sutter) [1152231]
-- [net] warn if drivers set tx_queue_len = 0 (Phil Sutter) [1152231]
-- [net] bonding: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] bridge: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] 8021q: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] vxlan: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] team: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] nlmon: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] loopback: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] allow setting mac address of loopback device (Phil Sutter) [1152231]
-- [net] dummy: convert to using IFF_NO_QUEUE (Phil Sutter) [1152231]
-- [net] veth: enable noqueue operation by default (Phil Sutter) [1152231]
-- [net] sch_generic: react upon IFF_NO_QUEUE flag (Phil Sutter) [1152231]
-- [net] declare new net_device priv_flag IFF_NO_QUEUE (Phil Sutter) [1152231]
-
-* Fri May 06 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-394.el7]
-- [hv] vmbus: handle various crash scenarios (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: Support kexec on ws2012 r2 and above (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: avoid unneeded compiler optimizations in vmbus_wait_for_unload() (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: remove code duplication in message handling (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: avoid wait_for_completion() on crash (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: don't manipulate with clocksources on crash (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: avoid scheduling in interrupt context in vmbus_initiate_unload() (Vitaly Kuznetsov) [1298093]
-- [hv] vmbus: do cleanup on all vmbus_open() failure paths (Vitaly Kuznetsov) [1298093]
-- [scsi] vmw_pvscsi: Fix the issue of DMA-API related warnings (Ewan Milne) [1287291]
-- [block] mtip32xx: remove unneeded variable in mtip_cmd_timeout() (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Cleanup queued requests after surprise removal (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Implement timeout handler (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Handle FTL rebuild failure state during device initialization (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Handle safe removal during IO (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Fix for rmmod crash when drive is in FTL rebuild (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Avoid issuing standby immediate cmd during FTL rebuild (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Print exact time when an internal command is interrupted (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Remove unwanted code from taskfile error handler (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Fix broken service thread handling (David Milburn) [1269525 1273618 1284383]
-- [block] mtip32xx: restrict variables visible in current code module (David Milburn) [1269525 1273618]
-- [block] mtip32xx: don't open-code memdup_user() (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Fix accessing freed memory (David Milburn) [1269525 1273618]
-- [block] mtip32xx: increase wait time for hba reset (David Milburn) [1269525 1273618]
-- [block] mtip32xx: fix minor number (David Milburn) [1269525 1273618]
-- [block] mtip32xx: remove unnecessary sleep in mtip_ftl_rebuild_poll() (David Milburn) [1269525 1273618]
-- [block] mtip32xx: fix crash on surprise removal of the drive (David Milburn) [1269525 1273618]
-- [block] mtip32xx: Abort I/O during secure erase operation (David Milburn) [1269525 1273618]
-- [block] mtip32xx: fix incorrectly setting MTIP_DDF_SEC_LOCK_BIT (David Milburn) [1269525 1273618]
-- [block] mtip32xx: remove unused variable 'port->allocated' (David Milburn) [1269525 1273618]
-- [block] mtip32xx: fix rmmod issue (David Milburn) [1269525 1273618]
-
-* Thu May 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-393.el7]
-- [netdrv] e1000: Double Tx descriptors needed check for 82544 (Jarod Wilson) [1274170]
-- [netdrv] e1000: Do not overestimate descriptor counts in Tx pre-check (Jarod Wilson) [1274170]
-- [netdrv] e1000: Elementary checkpatch warnings and checks removed (Jarod Wilson) [1274170]
-- [netdrv] e1000: get rid of duplicate exit path (Jarod Wilson) [1274170]
-- [netdrv] e1000: fix kernel-doc argument being missing (Jarod Wilson) [1274170]
-- [netdrv] e1000: fix a typo in the comment (Jarod Wilson) [1274170]
-- [netdrv] e1000: clean up the checking logic (Jarod Wilson) [1274170]
-- [netdrv] e1000: Remove checkpatch coding style errors (Jarod Wilson) [1274170]
-- [netdrv] e1000: fix data race between tx_ring->next_to_clean (Jarod Wilson) [1274170]
-- [netdrv] e1000: make eeprom read/write scheduler friendly (Jarod Wilson) [1274170]
-- [netdrv] e1000: get rid of unnecessary initializations in .get_drvinfo() (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove dead e1000_init_eeprom_params calls (Jarod Wilson) [1274170]
-- [netdrv] e1000: Use napi_alloc_skb (Jarod Wilson) [1274170]
-- [netdrv] e1000: Use eth_skb_pad and skb_put_padto helpers (Jarod Wilson) [1274170]
-- [netdrv] e1000: unset IFF_UNICAST_FLT on WMware 82545EM (Jarod Wilson) [1274170]
-- [netdrv] e1000: switch to napi_gro_frags api (Jarod Wilson) [1274170]
-- [netdrv] e1000: convert to build_skb (Jarod Wilson) [1274170]
-- [netdrv] e1000: rename struct e1000_buffer to e1000_tx_buffer (Jarod Wilson) [1274170]
-- [netdrv] e1000: add and use e1000_rx_buffer info for Rx (Jarod Wilson) [1274170]
-- [netdrv] e1000: perform copybreak ahead of DMA unmap (Jarod Wilson) [1274170]
-- [netdrv] e1000: move tbi workaround code into helper function (Jarod Wilson) [1274170]
-- [netdrv] e1000: move e1000_tbi_adjust_stats to where its used (Jarod Wilson) [1274170]
-- [netdrv] e1000: e1000_ethertool.c coding style fixes (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove unnecessary break after return (Jarod Wilson) [1274170]
-- [netdrv] e1000: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Jarod Wilson) [1274170]
-- [netdrv] e1000: Use time_after() for time comparison (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove the check: skb->len<=0 (Jarod Wilson) [1274170]
-- [netdrv] e1000: Use is_broadcast_ether_addr/is_multicast_ether_addr helpers (Jarod Wilson) [1274170]
-- [netdrv] e1000: get rid of SET_ETHTOOL_OPS (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove open-coded skb_cow_head (Jarod Wilson) [1274170]
-- [netdrv] e1000: remove debug messages with function names (Jarod Wilson) [1274170]
-- [netdrv] e1000: delete non-required instances of include <linux/init.h> (Jarod Wilson) [1274170]
-
-* Thu May 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-392.el7]
-- [netdrv] fm10k: use napi_complete_done() (Neil Horman) [1274178]
-- [netdrv] fm10k: get rid of unnecessary initializations in .get_drvinfo() (Neil Horman) [1274178]
-- [netdrv] fm10k: do not use enum as boolean (Neil Horman) [1274178]
-- [netdrv] fm10k: use snprintf() instead of sprintf() to avoid buffer overflow (Neil Horman) [1274178]
-- [netdrv] fm10k: add support for extra debug statistics (Neil Horman) [1274178]
-- [netdrv] fm10k: TRIVIAL remove unnecessary comma (Neil Horman) [1274178]
-- [netdrv] fm10k: create "correct" header for the remote end on connect (Neil Horman) [1274178]
-- [netdrv] fm10k: drop transmitted messages in Tx FIFO as part of reset_work (Neil Horman) [1274178]
-- [netdrv] fm10k: remove comment about rtnl_lock around mbx operations (Neil Horman) [1274178]
-- [netdrv] fm10k: fix iov_msg_mac_vlan_pf VID checks (Neil Horman) [1274178]
-- [netdrv] fm10k: Only trigger data path reset if fabric is up (Neil Horman) [1274178]
-- [netdrv] fm10k: re-enable VF after a full reset on detection of a Malicious event (Neil Horman) [1274178]
-- [netdrv] fm10k: TRIVIAL fix typo in fm10k_netdev.c (Neil Horman) [1274178]
-- [netdrv] fm10k: send traffic on default VID to VLAN device if we have one (Neil Horman) [1274178]
-- [netdrv] fm10k: TRIVIAL fix up ordering of __always_unused and style (Neil Horman) [1274178]
-- [netdrv] fm10k: remove is_slot_appropriate (Neil Horman) [1274178]
-- [netdrv] fm10k: don't store sw_vid at reset (Neil Horman) [1274178]
-- [netdrv] fm10k: allow creation of VLAN interfaces even while down (Neil Horman) [1274178]
-- [netdrv] fm10k: Report MAC address on driver load (Neil Horman) [1274178]
-- [netdrv] fm10k: Don't assume page fragments are page size (Neil Horman) [1274178]
-- [netdrv] fm10k: update netdev perm_addr during reinit, instead of at up (Neil Horman) [1274178]
-- [netdrv] fm10k: update fm10k_slot_warn to use pcie_get_minimum link (Neil Horman) [1274178]
-- [netdrv] fm10k: only prevent removal of default VID rules (Neil Horman) [1274178]
-- [netdrv] fm10k: disable service task during suspend (Neil Horman) [1274178]
-- [netdrv] fm10k: Fix missing braces after if statement (Neil Horman) [1274178]
-- [netdrv] fm10k: fix iov_msg_lport_state_pf issue (Neil Horman) [1274178]
-- [netdrv] fm10k: remove err_no reference in fm10k_mbx.c (Neil Horman) [1274178]
-- [netdrv] fm10k: fix incorrect DIR_NEVATIVE bit in 1588 code (Neil Horman) [1274178]
-- [netdrv] fm10k: pack TLV overlay structures (Neil Horman) [1274178]
-- [netdrv] fm10k: re-map all possible VF queues after a VFLR (Neil Horman) [1274178]
-- [netdrv] fm10k: force LPORT delete when updating VLAN or MAC address (Neil Horman) [1274178]
-- [netdrv] fm10k: use dma_set_mask_and_coherent in fm10k_probe (Neil Horman) [1274178]
-- [netdrv] fm10k: trivial fixup message style to include a colon (Neil Horman) [1274178]
-- [netdrv] fm10k: remove extraneous NULL check on l2_accel (Neil Horman) [1274178]
-- [netdrv] fm10k: use an unsigned int for i in ethtool_get_strings (Neil Horman) [1274178]
-- [netdrv] fm10k: add call to fm10k_clean_all_rx_rings in fm10k_down (Neil Horman) [1274178]
-- [netdrv] fm10k: fix incorrect free on skb in ts_tx_enqueue (Neil Horman) [1274178]
-- [netdrv] fm10k: move setting shinfo inside ts_tx_enqueue (Neil Horman) [1274178]
-- [netdrv] fm10k: use correct ethernet driver Tx timestamp function (Neil Horman) [1274178]
-- [netdrv] fm10k: ignore invalid multicast address entries (Neil Horman) [1274178]
-- [netdrv] fm10k: fold fm10k_pull_tail into fm10k_add_rx_frag (Neil Horman) [1274178]
-- [netdrv] fm10k: Do not assume budget will never be 0 for NAPI (Neil Horman) [1274178]
-
-* Thu May 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-391.el7]
-- [misc] cxl: Fix PSL timebase synchronization detection (Gustavo Duarte) [1275968]
-- [misc] cxl: use kobj_to_dev() (Gustavo Duarte) [1275968]
-- [misc] cxl: Enable PCI device ID for future IBM CXL adapter (Gustavo Duarte) [1275968]
-- [misc] cxl: use -Werror only with CONFIG_PPC_WERROR (Gustavo Duarte) [1275968]
-- [misc] cxl: fix build for GCC 4.6.x (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix DSI misses when the context owning task exits (Gustavo Duarte) [1275968]
-- [misc] cxl: Set endianess of kernel contexts (Gustavo Duarte) [1275968]
-- [misc] cxl: use correct operator when writing pcie config space values (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix possible idr warning when contexts are released (Gustavo Duarte) [1275968]
-- [misc] cxl: Free virtual PHB when removing (Gustavo Duarte) [1275968]
-- [powerpc] pci: export pcibios_free_controller() (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix number of allocated pages in SPA (Gustavo Duarte) [1275968]
-- [misc] cxl: Workaround malformed pcie packets on some cards (Gustavo Duarte) [1275968]
-- [misc] cxl: fix leak of ctx->mapping when releasing kernel API contexts (Gustavo Duarte) [1275968]
-- [misc] cxl: fix leak of ctx->irq_bitmap when releasing context via kernel API (Gustavo Duarte) [1275968]
-- [misc] cxl: fix leak of IRQ names in cxl_free_afu_irqs() (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix lockdep warning while creating afu_err_buff attribute (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix build failure due to -Wunused-variable behaviour change (Gustavo Duarte) [1275968]
-- [misc] cxl: abort cxl_pci_enable_device_hook() if PCI channel is offline (Gustavo Duarte) [1275968]
-- [misc] cxl: Set up and enable PSL Timebase (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix force unmapping mmaps of contexts allocated through the kernel api (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix + cleanup error paths in cxl_dev_context_init (Gustavo Duarte) [1275968]
-- [misc] cxl: Remove racy attempt to force EEH invocation in reset (Gustavo Duarte) [1275968]
-- [misc] cxl: Release irqs if memory allocation fails (Gustavo Duarte) [1275968]
-- [misc] cxl: Remove use of macro DEFINE_PCI_DEVICE_TABLE (Gustavo Duarte) [1275968]
-- [misc] cxl: Allow release of contexts which have been OPENED but not STARTED (Gustavo Duarte) [1275968]
-- [include] cxl: Add alternate MMIO error handling (Gustavo Duarte) [1275968]
-- [misc] cxl: Plug irq_bitmap getting leaked in cxl_context (Gustavo Duarte) [1275968]
-- [misc] cxl: Add CONFIG_CXL_EEH symbol (Gustavo Duarte) [1275968]
-- [misc] cxl: EEH support (Gustavo Duarte) [1275968]
-- [include] cxl: Allow the kernel to trust that an image won't change on PERST (Gustavo Duarte) [1275968]
-- [misc] cxl: Don't remove AFUs/vPHBs in cxl_reset (Gustavo Duarte) [1275968]
-- [misc] cxl: Refactor AFU init/teardown (Gustavo Duarte) [1275968]
-- [misc] cxl: Refactor adaptor init/teardown (Gustavo Duarte) [1275968]
-- [misc] cxl: Clean up adapter MMIO unmap path (Gustavo Duarte) [1275968]
-- [misc] cxl: Make IRQ release idempotent (Gustavo Duarte) [1275968]
-- [misc] cxl: Allocate and release the SPA with the AFU (Gustavo Duarte) [1275968]
-- [misc] cxl: Drop commands if the PCI channel is not in normal state (Gustavo Duarte) [1275968]
-- [misc] cxl: Convert MMIO read/write macros to inline functions (Gustavo Duarte) [1275968]
-- [misc] cxl: sparse: Silence iomem warning in debugfs file creation (Gustavo Duarte) [1275968]
-- [misc] cxl: sparse: Make declarations static (Gustavo Duarte) [1275968]
-- [misc] cxl: Compile with -Werror (Gustavo Duarte) [1275968]
-- [misc] cxl: Don't ignore add_process_element() result when attaching context (Gustavo Duarte) [1275968]
-- [misc] cxl: clean up afu_read_config() (Gustavo Duarte) [1275968]
-- [misc] cxl: Destroy afu->contexts_idr on release of an afu (Gustavo Duarte) [1275968]
-- [misc] cxl: Destroy cxl_adapter_idr on module_exit (Gustavo Duarte) [1275968]
-- [misc] cxl: use more common format specifier (Gustavo Duarte) [1275968]
-- [misc] cxl: Add explicit precision specifiers (Gustavo Duarte) [1275968]
-- [misc] cxl: Check if afu is not null in cxl_slbia (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix off by one error allowing subsequent mmap page to be accessed (Gustavo Duarte) [1275968]
-- [misc] cxl: Fail mmap if requested mapping is larger than assigned problem state area (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix refcounting in kernel API (Gustavo Duarte) [1275968]
-- [misc] cxl: Test the correct mmio space before unmapping (Gustavo Duarte) [1275968]
-- [misc] cxl/vphb.c: Use phb pointer after NULL check (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix typo in debug print (Gustavo Duarte) [1275968]
-- [misc] cxl: Add CXL_KERNEL_API config option (Gustavo Duarte) [1275968]
-- [misc] cxl: Reset default context for vPHB on release (Gustavo Duarte) [1275968]
-- [include] cxl: Add AFU virtual PHB and kernel API (Gustavo Duarte) [1275968]
-- [misc] cxl: Export file ops for use by API (Gustavo Duarte) [1275968]
-- [include] cxl: Move include file cxl.h -> cxl-base.h (Gustavo Duarte) [1275968]
-- [misc] cxl: Cleanup Makefile (Gustavo Duarte) [1275968]
-- [misc] cxl: Rework context lifetimes (Gustavo Duarte) [1275968]
-- [misc] cxl: Configure PSL for kernel contexts and merge code (Gustavo Duarte) [1275968]
-- [misc] cxl: Split afu_register_irqs() function (Gustavo Duarte) [1275968]
-- [misc] cxl: Only check pid for userspace contexts (Gustavo Duarte) [1275968]
-- [misc] cxl: Export some symbols (Gustavo Duarte) [1275968]
-- [misc] cxl: cxl_afu_reset() -> __cxl_afu_reset() (Gustavo Duarte) [1275968]
-- [misc] cxl: Rework detach context functions (Gustavo Duarte) [1275968]
-- [misc] cxl: Add cookie parameter to afu_release_irqs() (Gustavo Duarte) [1275968]
-- [misc] cxl: Dump debug info on the AFU configuration record (Gustavo Duarte) [1275968]
-- [misc] cxl: Fix error path on probe (Gustavo Duarte) [1275968]
-- [misc] cxl: Re-order card init to check the VSEC earlier (Gustavo Duarte) [1275968]
-- [misc] cxl: Remove unnecessarily verbose print in cxl_remove() (Gustavo Duarte) [1275968]
-- [misc] cxl: Add shutdown hook (Gustavo Duarte) [1275968]
-- [documentation] cxl: Document external user of existing API (Gustavo Duarte) [1275968]
-- [powerpc] pci: Add pcibios_disable_device() hook (Gustavo Duarte) [1275968]
-- [powerpc] Add cxl context to device archdata (Gustavo Duarte) [1275968]
-- [powerpc] pci: Add release_device() hook to phb ops (Gustavo Duarte) [1275968]
-- [powerpc] pci: Export symbols for CXL (Gustavo Duarte) [1275968]
-- [misc] cxl: Use call_rcu to reduce latency when releasing the afu fd (Gustavo Duarte) [1275968]
-- [misc] cxl: Export AFU error buffer via sysfs (Gustavo Duarte) [1275968]
-- [include] cxl: Implement an ioctl to fetch afu card-id, offset-id and mode (Gustavo Duarte) [1275968]
-- [documentation] cxl: Fix a typo in ABI documentation (Gustavo Duarte) [1275968]
-- [pci] Export symbols required for loadable host driver modules (Gustavo Duarte) [1275968]
-
-* Wed May 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-390.el7]
-- [netdrv] hv_netvsc: Fix the order of num_sc_offered decrement (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix the array sizes to be max supported channels (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix accessing freed memory in netvsc_change_mtu() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Move subchannel waiting to rndis_filter_device_remove() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: add ethtool support for set and get of settings (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: add software transmit timestamp support (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Restore needed_headroom request (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: cleanup netdev feature flags for netvsc (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix book keeping of skb during batching process (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: use skb_get_hash() instead of a homegrown implementation (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix race condition on Multi-Send Data field (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate vlan_tci from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate status from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate xmit_more from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate completion_func from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate is_data_pkt from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate send_completion_tid from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate page_buf from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: remove locking in netvsc_send() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: move subchannel existence check to netvsc_select_queue() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Don't ask for additional head room in the skb (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate send_completion_ctx from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate send_completion from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminatte the data field from struct hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate rndis_msg pointer from hv_netvsc_packet structure (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate the channel field in hv_netvsc_packet structure (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Rearrange the hv_negtvsc_packet to be space efficient (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Resize some of the variables in hv_netvsc_packet (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: rework link status change handling (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix dereference of nvdev before check (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Implement set_channels ethtool op (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Set vRSS with num_chn in RNDIS filter (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Add structs and handlers for VF messages (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Wait for sub-channels to be processed during probe (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Add close of RNDIS filter into change mtu call (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Add support to set MTU reservation from guest side (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Allocate the sendbuf in a NUMA aware way (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Allocate the receive buffer from the correct NUMA node (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Properly size the vrss queues (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: change member name of struct netvsc_stats (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: use per_cpu stats to calculate TX/RX data (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Use the xmit_more skb flag to optimize signaling the host (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: remove unused variable in netvsc_send() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix a bug in netvsc_start_xmit() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: introduce netif-msg into netvsc module (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Implement partial copy into send buffer (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: try linearizing big SKBs before dropping them (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: use single existing drop path in netvsc_start_xmit (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Fix the packet free when it is in skb headroom (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Define a macro RNDIS_AND_PPI_SIZE (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Clean up two unused variables (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Eliminate memory allocation in the packet send path (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Cleanup the test for freeing skb when we use sendbuf mechanism (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: remove vmbus_are_subchannels_present() in rndis_filter_device_add() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hv_netvsc: Implement batching in send buffer (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Implement netvsc_get_channels() ethool op (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: fix sparse warnings (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Fix the error processing in netvsc_send() (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: match wait_for_completion_timeout return type (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: netvsc.c: match wait_for_completion_timeout return type (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Fix some variable name typos in send-buffer init/revoke (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Deletion of an unnecessary check before the function call "vfree" (Vitaly Kuznetsov) [1257293]
-- [netdrv] hyperv: Add handler for RNDIS_STATUS_NETWORK_CHANGE event (Vitaly Kuznetsov) [1257293]
-
-* Wed May 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-389.el7]
-- [netdrv] bonding: fix bond_get_stats() (Jarod Wilson) [1297931]
-- [netdrv] bonding: remove duplicate set of flag IFF_MULTICAST (Jarod Wilson) [1297931]
-- [netdrv] bonding: use __ethtool_get_ksettings (Jarod Wilson) [1297931]
-- [netdrv] bonding: don't use stale speed and duplex information (Jarod Wilson) [1297931]
-- [netdrv] bonding: Fix ARP monitor validation (Jarod Wilson) [1297931]
-- [netdrv] bonding: Prevent IPv6 link local address on enslaved devices (Jarod Wilson) [1297931]
-- [netdrv] bonding: drop unused to_dev macro in bond_sysfs.c (Jarod Wilson) [1297931]
-- [netdrv] bonding: remove redudant brackets (Jarod Wilson) [1297931]
-- [netdrv] bonding: add 802.3ad support for 100G speeds (Jarod Wilson) [1297931]
-- [netdrv] bonding: fix panic on non-ARPHRD_ETHER enslave failure (Jarod Wilson) [1297931]
-- [netdrv] bonding: simplify / unify event handling code for 3ad mode (Jarod Wilson) [1297931]
-- [netdrv] bonding: unify all places where actor-oper key needs to be updated (Jarod Wilson) [1297931]
-- [netdrv] bonding: Simplify __get_duplex function (Jarod Wilson) [1297931]
-- [netdrv] bonding: use l4 hash if available (Jarod Wilson) [1297931]
-- [netdrv] bonding: Export bond_option_active_slave_get_rcu (Jarod Wilson) [1297931]
-- [netdrv] bonding: fix bond_poll_controller bh_enable warning (Jarod Wilson) [1297931]
-- [netdrv] bonding: Gratuitous ARP gets dropped when first slave added (Jarod Wilson) [1297931]
-- [netdrv] bonding: add tlb_dynamic_lb netlink support (Jarod Wilson) [1297931]
-- [netdrv] bonding: convert num_grat_arp to the new bonding option API (Jarod Wilson) [1297931]
-- [netdrv] bonding: correct the MAC address for "follow" fail_over_mac policy (Jarod Wilson) [1297931]
-- [netdrv] bonding: correctly handle bonding type change on enslave failure (Jarod Wilson) [1297931]
-- [netdrv] bonding: trivial: remove unused variables (Jarod Wilson) [1297931]
-- [netdrv] bonding: Display LACP info only to CAP_NET_ADMIN capable user (Jarod Wilson) [1297931]
-- [netdrv] bonding: export slave's partner_oper_port_state via sysfs and netlink (Jarod Wilson) [1297931]
-- [netdrv] bonding: export slave's actor_oper_port_state via sysfs and netlink (Jarod Wilson) [1297931]
-- [net] rtnl/bond: don't send rtnl msg for unregistered iface (Jarod Wilson) [1297931]
-- [netdrv] bonding: add netlink support for sys prio, actor sys mac, and port key (Jarod Wilson) [1297931]
-- [netdrv] bonding: Implement user key part of port_key in an AD system (Jarod Wilson) [1297931]
-- [netdrv] bonding: Allow userspace to set actors' macaddr in an AD-system (Jarod Wilson) [1297931]
-- [netdrv] bonding: Allow userspace to set actors' system_priority in AD system (Jarod Wilson) [1297931]
-- [netdrv] bonding: fix kernel panic in bonding driver debugfs file: rlb_hash_table (Jarod Wilson) [1297931]
-- [netdrv] bonding: Make DRV macros private (Jarod Wilson) [1297931]
-- [netdrv] bonding: Remove unnecessary initialization (Jarod Wilson) [1297931]
-- [netdrv] bonding: Code re-factoring for admin, oper-key operations (Jarod Wilson) [1297931]
-- [netdrv] bonding: Fix another case of LACPDU not sent on slave (Jarod Wilson) [1297931]
-- [netdrv] bonding: deprecate BOND_MONITOR_CHURNED in favor of existing definitions (Jarod Wilson) [1297931]
-- [netdrv] bonding: Bonding Overriding Configuration logic restored (Jarod Wilson) [1297931]
-- [netdrv] bonding: Remove hardcoded initialization (Jarod Wilson) [1297931]
-- [netdrv] bonding: Don't segment multiple tagged packets on bonding device (Jarod Wilson) [1297931]
-
-* Tue May 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-388.el7]
-- [net] ethtool: Set cmd field in ETHTOOL_GLINKSETTINGS response to wrong nwords (Ivan Vecera) [1268334]
-- [net] ethtool: add new ETHTOOL_xLINKSETTINGS API (Ivan Vecera) [1268334]
-- [net] ethtool: support set coalesce per queue (Ivan Vecera) [1268334]
-- [net] ethtool: support get coalesce per queue (Ivan Vecera) [1268334]
-- [scsi] cxgb4i: don't redefine DIV_ROUND_UP (Ivan Vecera) [1268334]
-- [include] define DIV_ROUND_UP for userland (Ivan Vecera) [1268334]
-- [net] ethtool: introduce a new ioctl for per queue setting (Ivan Vecera) [1268334]
-- [lib] bitmap: conversion routines to/from u32 array (Ivan Vecera) [1268334]
-- [net] add tc offload feature flag (Ivan Vecera) [1268334]
-- [net] rework setup_tc ndo op to consume general tc operand (Ivan Vecera) [1268334]
-- [net] rework ndo tc op to consume additional qdisc handle parameter (Ivan Vecera) [1268334]
-- [net] ethtool: ensure channel counts are within bounds during SCHANNELS (Ivan Vecera) [1268334]
-- [net] ethtool: correctly ensure {GS}CHANNELS doesn't conflict with GS{RXFH} (Ivan Vecera) [1268334]
-- [net] ethtool: define INT_MAX for userland (Ivan Vecera) [1268334]
-- [net] ethtool: make validate_speed accept all speeds between 0 and INT_MAX (Ivan Vecera) [1268334]
-- [net] ethtool: future-proof interface for speed extensions (Ivan Vecera) [1268334]
-- [net] ethtool: add IPv6 to the NFC API (Ivan Vecera) [1268334]
-- [net] ethtool: add speed/duplex validation functions (Ivan Vecera) [1268334]
-- [net] ethtool: Declare netdev_rss_key as __read_mostly. (Ivan Vecera) [1268334]
-- [net] ethtool: Use kcalloc instead of kmalloc for ethtool_get_strings (Ivan Vecera) [1268334]
-- [net] ethtool: clarify implementation of ethtool's get_ts_info op (Ivan Vecera) [1268334]
-- [net] ethtool: Add current supported tunable options (Ivan Vecera) [1268334]
-- [net] ethtool: use "ops" name consistenty in ethtool_set_rxfh() (Ivan Vecera) [1268334]
-- [net] ethtool: Return -EOPNOTSUPP if user space tries to read EEPROM with lengh 0 (Ivan Vecera) [1268334]
-- [net] ethtool: Ethtool parameter to dynamically change tx_copybreak (Ivan Vecera) [1268334]
-- [net] ethtool: Add generic options for tunables (Ivan Vecera) [1268334]
-- [net] ethtool: Fix unwanted section breaks in kernel-doc (Ivan Vecera) [1268334]
-- [net] ethtool: Move kernel-doc comment next to struct ethtool_dump definition (Ivan Vecera) [1268334]
-- [net] ethtool: Document the general convention for VLAs in kernel space (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_perm_addr (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_stats (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_test (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of string set types (Ivan Vecera) [1268334]
-- [net] ethtool: Update documentation of struct ethtool_pauseparam (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_ringparam (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_eeprom (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_regs (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_wol (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_drvinfo (Ivan Vecera) [1268334]
-- [net] ethtool: Expand documentation of struct ethtool_cmd (Ivan Vecera) [1268334]
-- [net] ethtool: fixed trailing statements in ethtool (Ivan Vecera) [1268334]
-- [net] ethtool: make .get_dump_data() harder to misuse by drivers (Ivan Vecera) [1268334]
-- [net] ethtool: Fix comment regarding location of dev_ethtool() call (Ivan Vecera) [1268334]
-- [net] ethtool: disambiguate XCVR_* meaning (Ivan Vecera) [1268334]
-- [net] Disallow providing non zero VLAN ID for NIC drivers FDB add flow (Ivan Vecera) [1268334]
-- [net] make vid as a parameter for ndo_fdb_add/ndo_fdb_del (Ivan Vecera) [1268334]
-- [net] Add eth_platform_get_mac_address() helper. (Ivan Vecera) [1268334]
-- [pci] Add pci_device_to_OF_node() stub for !CONFIG_OF (Ivan Vecera) [1268334]
-- [net] Rename NETIF_F_ALL_CSUM to NETIF_F_CSUM_MASK (Ivan Vecera) [1268334]
-- [net] sctp: Rename NETIF_F_SCTP_CSUM to NETIF_F_SCTP_CRC (Ivan Vecera) [1268334]
-- [net] provide generic busy polling to all NAPI drivers (Ivan Vecera) [1268334]
-- [net] napi_hash_del() returns a boolean status (Ivan Vecera) [1268334]
-- [net] move napi_hash[] into read mostly section (Ivan Vecera) [1268334]
-- [net] add netif_tx_napi_add() (Ivan Vecera) [1268334]
-- [net] move skb_mark_napi_id() into core networking stack (Ivan Vecera) [1268334]
-- [netdrv] mlx4: remove mlx4_en_low_latency_recv() (Ivan Vecera) [1268334]
-- [netdrv] bnx2x: remove bnx2x_low_latency_recv() support (Ivan Vecera) [1268334]
-- [netdrv] mlx5: support napi_complete_done() (Ivan Vecera) [1268334]
-- [netdrv] mlx5: add busy polling support (Ivan Vecera) [1268334]
-- [net] network drivers no longer need to implement ndo_busy_poll() (Ivan Vecera) [1268334]
-- [net] allow BH servicing in sk_busy_loop() (Ivan Vecera) [1268334]
-- [net] un-inline sk_busy_loop() (Ivan Vecera) [1268334]
-- [netdrv] mlx4: mlx4_en_low_latency_recv() called with BH disabled (Ivan Vecera) [1268334]
-- [net] sched, net: Fixup busy_loop_us_clock() (Ivan Vecera) [1268334]
-- [net] add cpu_relax to busy poll loop (Ivan Vecera) [1268334]
-- [net] better skb->sender_cpu and skb->napi_id cohabitation (Ivan Vecera) [1268334]
-- [net] move netdev_pick_tx and dependencies to net/core/dev.c (Ivan Vecera) [1268334]
-- [net] netdevice: move netdev_cap_txqueue for shared usage to header (Ivan Vecera) [1268334]
-- [net] use reciprocal_scale() helper (Ivan Vecera) [1268334]
-- [net] netdevice: add queue selection fallback handler for ndo_select_queue (Ivan Vecera) [1268334]
-- [net] core: explicitly select a txq before doing l2 forwarding (Ivan Vecera) [1268334]
-- [net] xps: fix xps for stacked devices (Ivan Vecera) [1268334]
-- [mm] make page pfmemalloc check more robust (Ivan Vecera) [1268334]
-- [net] generic dev_disable_lro() stacked device handling (Ivan Vecera) [1268334]
-- [net] bonding: add slave netlink policy and put slave-related ops together (Ivan Vecera) [1268334]
-- [net] bonding: add slave_changelink support and use it for queue_id (Ivan Vecera) [1268334]
-- [net] core: lockdep_rtnl_is_held can be boolean (Ivan Vecera) [1268334]
-- [net] allow netdev_all_upper_get_next_dev_rcu with rtnl lock held (Ivan Vecera) [1268334]
-- [net] bonding: Fix stacked device detection in arp monitoring (Ivan Vecera) [1268334]
-- [net] ethtool: Added port speed macros (Ivan Vecera) [1268334]
-- [net] Find the nesting level of a given device by type. (Ivan Vecera) [1268334]
-- [net] bonding: create bond_first_slave_rcu() (Ivan Vecera) [1268334]
-- [net] create sysfs symlinks for neighbour devices (Ivan Vecera) [1268334]
-- [net] expose the master link to sysfs, and remove it from bond (Ivan Vecera) [1268334]
-- [net] vlan: unlink the upper neighbour before unregistering (Ivan Vecera) [1268334]
-- [net] vlan: link the upper neighbour only after registering (Ivan Vecera) [1268334]
-- [net] bonding: remove slave lists (Ivan Vecera) [1268334]
-- [net] bonding: use neighbours for bond_next_slave() (Ivan Vecera) [1268334]
-- [net] bonding: add __bond_next_slave() which uses neighbours (Ivan Vecera) [1268334]
-- [net] bonding: convert first/last slave logic to use neighbours (Ivan Vecera) [1268334]
-- [net] add a possibility to get private from netdev_adjacent->list (Ivan Vecera) [1268334]
-- [net] bonding: convert bond_has_slaves() to use the neighbour list (Ivan Vecera) [1268334]
-- [net] bonding: make bond_for_each_slave() use lower neighbour's private (Ivan Vecera) [1268334]
-- [net] add for_each iterators through neighbour lower link's private (Ivan Vecera) [1268334]
-- [net] bonding: modify bond_get_slave_by_dev() to use neighbours (Ivan Vecera) [1268334]
-- [net] bonding: populate neighbour's private on enslave (Ivan Vecera) [1268334]
-- [net] add netdev_adjacent->private and allow to use it (Ivan Vecera) [1268334]
-- [net] add RCU variant to search for netdev_adjacent link (Ivan Vecera) [1268334]
-- [net] add adj_list to save only neighbours (Ivan Vecera) [1268334]
-- [net] use lists as arguments instead of bool upper (Ivan Vecera) [1268334]
-- [net] bonding: make alb_send_learning_packets() use upper dev list (Ivan Vecera) [1268334]
-- [net] bonding: convert bond_has_this_ip() to use upper devices (Ivan Vecera) [1268334]
-- [net] bonding: make bond_arp_send_all use upper device list (Ivan Vecera) [1268334]
-- [net] add netdev_for_each_upper_dev_rcu() (Ivan Vecera) [1268334]
-- [net] add netdev_upper_get_next_dev_rcu(dev, iter) (Ivan Vecera) [1268334]
-- [net] remove search_list from netdev_adjacent (Ivan Vecera) [1268334]
-- [net] add lower_dev_list to net_device and make a full mesh (Ivan Vecera) [1268334]
-- [net] rename netdev_upper to netdev_adjacent (Ivan Vecera) [1268334]
-- [net] revert "[netdrv] bonding: propagate LRO disable to slave devices" (Ivan Vecera) [1268334]
-- [net] add netnotifier event for upper device change (Ivan Vecera) [1268334]
-- [net] Add max rate tx queue attribute (Ivan Vecera) [1268334]
-- [net] sysfs: get_netdev_queue_index() cleanup (Ivan Vecera) [1268334]
-- [net] sysfs: add documentation entries for /sys/class/<iface>/queues (Ivan Vecera) [1268334]
-
-* Tue May 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-387.el7]
-- [netdrv] e1000e: Adds hardware supported cross timestamp on e1000e nic (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Initial support for KabeLake (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Clear ULP configuration register on ULP exit (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Set HW FIFO minimum pointer gap for non-gig speeds (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Increase PHY PLL clock gate timing (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Increase ULP timer (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix msi-x interrupt automask (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Do not write lsc to ics in msi-x mode (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Do not read ICR in Other interrupt (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Remove unreachable code (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Switch e1000e_up to void, drop code checking for error result (Jarod Wilson) [1274171]
-- [netdrv] e1000e: initial support for i219-LM (3) (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Increase timeout of polling bit RSPCIPHY (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix division by zero on jumbo MTUs (Jarod Wilson) [1274171]
-- [netdrv] e1000e: clean up the local variable (Jarod Wilson) [1274171]
-- [netdrv] e1000e: use napi_complete_done() (Jarod Wilson) [1274171]
-- [netdrv] e1000e: get rid of unnecessary initializations in .get_drvinfo() (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Enable TSO for stacked VLAN (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Modify Tx/Rx configurations to avoid null pointer dereferences in e1000_open (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Increase driver version number (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix tight loop implementation of systime read algorithm (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix incorrect ASPM locking (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Cosmetic changes (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix EEE in Sx implementation (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Cleanup qos request in error handling of e1000_open (Jarod Wilson) [1274171]
-- [netdrv] e1000e: i219 - k1 workaround for LPT is not required for SPT (Jarod Wilson) [1274171]
-- [netdrv] e1000e: i219 - Increase minimum FIFO read/write min gap (Jarod Wilson) [1274171]
-- [netdrv] e1000e: i219 - increase IPG for speed 10/100 full duplex (Jarod Wilson) [1274171]
-- [netdrv] e1000e: i219 - fix to enable both ULP and EEE in Sx state (Jarod Wilson) [1274171]
-- [netdrv] e1000e: synchronization of MAC-PHY interface only on non- ME systems (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix locking issue with e1000e_disable_aspm (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Move pm_qos_req to e1000e adapter (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Fix 82572EI that has no hardware timestamp support (Jarod Wilson) [1274171]
-- [netdrv] e1000e: convert to CYCLECOUNTER_MASK macro (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Include clocksource.h to get CLOCKSOURCE_MASK (Jarod Wilson) [1274171]
-- [netdrv] e1000e: convert to timecounter adjtime (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Use napi_alloc_skb (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Resolve issues with Management Engine (ME) briefly blocking PHY resets (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Add missing branding strings in ich8lan.c (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Cleanup unecessary references (Jarod Wilson) [1274171]
-- [netdrv] e1000e: PTP lock in e1000e_phc_adjustfreq (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Use pci_enable_msix_range() instead of pci_enable_msix() (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix compiler warning (maybe-unitialized variable) (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix compiler warnings (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Implement the SIOCGHWTSTAMP ioctl (Jarod Wilson) [1274171]
-- [netdrv] e1000e: Validate hwtstamp_config completely before applying it (Jarod Wilson) [1274171]
-- [netdrv] e1000e: fix 32-bit DMA mask handling (Jarod Wilson) [1274171]
-- [netdrv] e1000e: cleanup boolean comparison to true (Jarod Wilson) [1274171]
-
-* Mon May 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-386.el7]
-- [pci] cpcihp: Add missing curly braces in cpci_configure_slot() (Myron Stowe) [1331507]
-- [pci] aer: Avoid info leak in __print_tlp_header() (Myron Stowe) [1331507]
-- [pci] Don't read past the end of sysfs "driver_override" buffer (Myron Stowe) [1331507]
-- [pci] Fail MSI-X mappings if there's no space assigned to MSI-X BAR (Myron Stowe) [1331507]
-- [pci] Fix infinite loop with ROM image of size 0 (Myron Stowe) [1331507]
-- [powerpc] rpc/pci: Add struct pci_ops member names to initialization (Myron Stowe) [1331507]
-- [pci] pciehp: Handle surprise add even if surprise removal isn't supported (Myron Stowe) [1331507]
-- [pci] pci/aspm: Use standard parsing functions for sysfs setters (Myron Stowe) [1331507]
-- [pci] Delete unnecessary NULL pointer checks (Myron Stowe) [1331507]
-- [pci] Prevent out of bounds access in numa_node override (Myron Stowe) [1331488]
-- [pci] Prevent out of bounds access in numa_node override (Myron Stowe) [1331488]
-- [pci] Remove unused and broken to_hotplug_slot() (Myron Stowe) [1331488]
-- [pci] Make FLR and AF FLR reset warning messages different (Myron Stowe) [1331488]
-- [pci] Simplify if-return sequences (Myron Stowe) [1331488]
-- [pci] Delete unnecessary NULL pointer checks (Myron Stowe) [1331488]
-- [pci] Allow numa_node override via sysfs (Myron Stowe) [1331488]
-- [x86] mm: pat: Avoid truncation when converting cpa->numpages to address (Larry Woodman) [1328755]
-- [fs] gfs2: Use gfs2 wrapper to sync inode before calling generic_file_splice_read() (Abhijith Das) [1331071]
-- [fs] lockd: create NSM handles per net namespace ("J. Bruce Fields") [1328938]
-- [fs] lockd: NLM grace period shouldn't block NFSv4 opens ("J. Bruce Fields") [1328938]
-- [fs] ext4: rate limit printk in buffer_io_error() (Carlos Maiolino) [1142771]
-- [fs] clarify rate limit suppressed buffer I/O errors (Carlos Maiolino) [1142771]
-- [fs] merge I/O error prints into one line (Carlos Maiolino) [1142771]
-- [fs] block: Remove annoying "unknown partition table" message (Carlos Maiolino) [1142771]
-- [fs] ovl: Ensure upper filesystem supports d_type (Vivek Goyal) [1288162]
-- [fs] epoll: restrict EPOLLEXCLUSIVE to POLLIN and POLLOUT (Hannes Frederic Sowa) [1245628]
-- [fs] epoll: add EPOLLEXCLUSIVE flag (Hannes Frederic Sowa) [1245628]
-- [fs] pipe: limit the per-user amount of pages allocated in pipes (Mateusz Guzik) [1313960] {CVE-2016-2847}
-- [sound] alsa: usb-audio: avoid freeing umidi object twice (Mateusz Guzik) [1310663] {CVE-2016-2384}
-- [netdrv] atl2: Disable unimplemented scatter/gather feature (Mateusz Guzik) [1320106] {CVE-2016-2117}
-- [misc] cxl: Configure the PSL for two CAPI ports on POWER8NVL (Steve Best) [1278793]
-- [powerpc] Define PVR value for POWER8NVL processor (Steve Best) [1278793]
-- [powerpc] powernv: Silence SYSPARAM warning on boot (Steve Best) [1331179]
-- [infiniband] hfi1: Move hfi1 driver to match upstream tree (Alex Estrin) [1328249]
-
-* Fri Apr 29 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-385.el7]
-- [tools] power turbostat: intel xeon x200: fix erroneous bclk value (Steve Best) [1330164]
-- [tools] power turbostat: intel xeon x200: fix turbo-ratio decoding (Steve Best) [1330167]
-- [x86] kvm: vmx: disable PEBS before a guest entry (Radim Krcmar) [1272097]
-- [net] netfilter: x_tables: introduce and use xt_copy_counters_from_user (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: do compat validation via translate_table (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: xt_compat_match_from_user doesn't need a retval (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: arp_tables: simplify translate_compat_table args (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: ip6_tables: simplify translate_compat_table args (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: ip_tables: simplify translate_compat_table args (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: remove unused comefrom hookmask argument (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: validate all offsets and sizes in a rule (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: check for bogus target offset (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: check standard target size too (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: add compat version of xt_check_entry_offsets (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: assert minimum target size (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: kill check_entry helper (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: add and use xt_check_entry_offsets (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: validate targets of jumps (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: don't move to non-existent next rule (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: fix unconditional helper (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: validate e->target_offset early (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] netfilter: x_tables: check for size overflow (Florian Westphal) [1318693] {CVE-2016-3134}
-- [net] ipv6: sit: set rtnl_link_ops before calling register_netdevice (Thadeu Lima de Souza Cascardo) [1284001]
-- [net] team: team should sync the port's uc/mc addrs when add a port (Xin Long) [1225396]
-- [net] ipv6: always add flag an address that failed DAD with DADFAILED (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: keep existing flags when setting IFA_F_OPTIMISTIC (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: restrict hop_limit sysctl setting to range [1; 255] (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: Only act upon NETDEV_*_TYPE_CHANGE if we have ipv6 addresses (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: clean up dev_snmp6 proc entry when we fail to initialize inet6_dev (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: fail early when creating netdev named all or default (Hannes Frederic Sowa) [1299825]
-- [net] ipv4: fail early when creating netdev named all or default (Hannes Frederic Sowa) [1299825]
-- [net] ipv6: gre: setup default multicast routes over PtP links (Hannes Frederic Sowa) [1299825]
-- [net] addr IFLA_OPERSTATE to netlink message for ipv6 ifinfo (Hannes Frederic Sowa) [1299825]
-
-* Thu Apr 28 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-384.el7]
-- [block] nvme: Automatic namespace rescan fixup (David Milburn) [1288601]
-- [block] blk-mq: mark request queue as mq asap (David Milburn) [1288601]
-- [block] nvme: Fix possible queue use after freed (David Milburn) [1288601]
-- [block] blk-mq: dynamic h/w context count (David Milburn) [1288601]
-- [block] nvme: fix max_segments integer truncation (David Milburn) [1288601]
-- [block] nvme: set queue limits for the admin queue (David Milburn) [1288601]
-- [block] nvme: Fix 0-length integrity payload (David Milburn) [1288601]
-- [block] nvme: Don't allow unsupported flags (David Milburn) [1288601]
-- [block] nvme: Move error handling to failed reset handler (David Milburn) [1288601]
-- [block] nvme: Simplify device reset failure (David Milburn) [1288601]
-- [block] nvme: Fix namespace removal deadlock (David Milburn) [1288601]
-- [block] nvme: Use IDA for namespace disk naming (David Milburn) [1288601]
-- [block] nvme: Don't unmap controller registers on reset (David Milburn) [1288601]
-- [block] nvme: Rate limit nvme IO warnings (David Milburn) [1288601]
-- [block] nvme: Poll device while still active during remove (David Milburn) [1288601]
-- [block] nvme: Requeue requests on suspended queues (David Milburn) [1288601]
-- [block] nvme: Allow request merges (David Milburn) [1288601]
-- [block] nvme: Fix io incapable return values (David Milburn) [1288601]
-- [block] blk-mq: End unstarted requests on dying queue (David Milburn) [1288601]
-- [block] uapi: update install list after nvme.h rename (David Milburn) [1288601]
-- [block] nvme: Export NVMe attributes to sysfs group (David Milburn) [1251944 1288601]
-- [block] nvme: Shutdown controller only for power-off (David Milburn) [1288601]
-- [block] nvme: IO queue deletion re-write (David Milburn) [1288601]
-- [block] nvme: Remove queue freezing on resets (David Milburn) [1288601]
-- [block] nvme: Use a retryable error code on reset (David Milburn) [1288601]
-- [block] nvme: Fix admin queue ring wrap (David Milburn) [1288601]
-- [block] nvme: fixes for NVME_IOCTL_IO_CMD on the char device (David Milburn) [1288601]
-- [block] nvme: synchronize access to ctrl->namespaces (David Milburn) [1288601]
-- [block] nvme: Move nvme_freeze/unfreeze_queues to nvme core (David Milburn) [1288601]
-- [pci] aer: include header file (David Milburn) [1288601]
-- [block] nvme: Export namespace attributes to sysfs (David Milburn) [1288601]
-- [block] nvme: Add pci error handlers (David Milburn) [1288601]
-- [block] remove REQ_NO_TIMEOUT flag (David Milburn) [1288601]
-- [block] nvme: merge iod and cmd_info (David Milburn) [1288601]
-- [block] nvme: move struct nvme_iod to pci.c (David Milburn) [1288601]
-- [block] nvme: properly free resources for cancelled command (David Milburn) [1288601]
-- [block] nvme: simplify completion handling (David Milburn) [1288601]
-- [block] nvme: switch abort to blk_execute_rq_nowait (David Milburn) [1288601]
-- [block] nvme: special case AEN requests (David Milburn) [1288601]
-- [block] nvme: switch delete SQ/CQ to blk_execute_rq_nowait (David Milburn) [1288601]
-- [block] nvme: factor out a few helpers from req_completion (David Milburn) [1288601]
-- [block] nvme: fix admin queue depth (David Milburn) [1288601]
-- [block] nvme: Simplify metadata setup (David Milburn) [1288601]
-- [block] nvme: Remove device management handles on remove (David Milburn) [1288601]
-- [block] nvme: Use unbounded work queue for all work (David Milburn) [1288601]
-- [block] nvme: Implement namespace list scanning (David Milburn) [1288601]
-- [block] nvme: switch abort_limit to an atomic_t (David Milburn) [1288601]
-- [block] nvme: remove dead controllers from a work item (David Milburn) [1288601]
-- [block] nvme: merge probe_work and reset_work (David Milburn) [1288601]
-- [block] nvme: do not restart the request timeout if we're resetting the controller (David Milburn) [1288601]
-- [block] nvme: simplify resets (David Milburn) [1288601]
-- [block] nvme: add NVME_SC_CANCELLED (David Milburn) [1288601]
-- [block] nvme: merge nvme_abort_req and nvme_timeout (David Milburn) [1288601]
-- [block] nvme: don't take the I/O queue q_lock in nvme_timeout (David Milburn) [1288601]
-- [block] nvme: protect against simultaneous shutdown invocations (David Milburn) [1288601]
-- [block] nvme: only add a controller to dev_list after it's been fully initialized (David Milburn) [1288601]
-- [block] nvme: only ignore hardware errors in nvme_create_io_queues (David Milburn) [1288601]
-- [block] nvme: precedence bug in nvme_pr_clear() (David Milburn) [1288601]
-- [block] blk-mq: Avoid memoryless numa node encoded in hctx numa_node (David Milburn) [1288601]
-- [block] blk-mq: Reuse hardware context cpumask for tags (David Milburn) [1288601]
-- [block] nvme: refactor set_queue_count (David Milburn) [1288601]
-- [block] nvme: move chardev and sysfs interface to common code (David Milburn) [1288601]
-- [block] nvme: move namespace scanning to common code (David Milburn) [1288601]
-- [block] nvme: move the call to nvme_init_identify earlier (David Milburn) [1288601]
-- [block] nvme: add a common helper to read Identify Controller data (David Milburn) [1288601]
-- [block] nvme: move nvme_enable,disable,shutdown_ctrl to common code (David Milburn) [1288601]
-- [block] nvme: move remaining CC setup into nvme_enable_ctrl (David Milburn) [1288601]
-- [block] nvme: add explicit quirk handling (David Milburn) [1288601]
-- [block] nvme: move block_device_operations and ns/ctrl freeing to common code (David Milburn) [1288601]
-- [block] nvme: use the block layer for userspace passthrough metadata (David Milburn) [1288601]
-- [block] nvme: split __nvme_submit_sync_cmd (David Milburn) [1288601]
-- [block] nvme: move nvme_setup_flush and nvme_setup_rw to common code (David Milburn) [1288601]
-- [block] nvme: move nvme_error_status to common code (David Milburn) [1288601]
-- [block] nvme: factor out a nvme_unmap_data helper (David Milburn) [1288601]
-- [block] nvme: refactor nvme_queue_rq (David Milburn) [1288601]
-- [block] nvme: simplify nvme_setup_prps calling convention (David Milburn) [1288601]
-- [block] nvme: split a new struct nvme_ctrl out of struct nvme_dev (David Milburn) [1288601]
-- [block] nvme: use vendor it from identify (David Milburn) [1288601]
-- [block] nvme: split nvme_trans_device_id_page (David Milburn) [1288601]
-- [block] nvme: use offset instead of a struct for registers (David Milburn) [1288601]
-- [block] nvme: split command submission helpers out of pci.c (David Milburn) [1288601]
-- [block] clarify blk_add_timer() use case for blk-mq (David Milburn) [1288601]
-- [block] fix blk_abort_request for blk-mq drivers (David Milburn) [1288601]
-- [block] nvme: add missing unmaps in nvme_queue_rq (David Milburn) [1288601]
-- [block] blk-mq: fix calling unplug callbacks with preempt disabled (David Milburn) [1288601]
-- [block] nvme: reap completion entries when deleting queue (David Milburn) [1288601]
-- [block] nvme: Fix possible arithmetic overflow for max segments (David Milburn) [1288601]
-- [block] nvme: use split lo_hi_readq, lo_write_q (David Milburn) [1288601]
-- [block] blk-mq: mark __blk_mq_complete_request() static (David Milburn) [1288601]
-- [block] nvme: Increase the max transfer size when mdts is 0 (David Milburn) [1288601]
-- [block] nvme: Precedence error in nvme_pr_clear() (David Milburn) [1288601]
-- [block] nvme: add missing endianess annotations in nvme_pr_command (David Milburn) [1288601]
-- [block] nvme: Add persistent reservation ops (David Milburn) [1288601]
-- [block] blk-mq: avoid excessive boot delays with large lun counts (David Milburn) [1288601]
-- [block] blk-mq: mark ctx as pending at batch in flush plug path (David Milburn) [1288601]
-- [block] blk-mq: fix for trace_block_plug() (David Milburn) [1288601]
-- [block] blk-mq: check bio_mergeable() early before merging (David Milburn) [1288601]
-- [block] nvme: suspend i/o during runtime blk_integrity_unregister (David Milburn) [1288601]
-- [block] nvme: initialize error to '0' (David Milburn) [1288601]
-- [block] nvme: use an integer value to Linux errno values (David Milburn) [1288601]
-- [block] blk-mq: fix use-after-free in blk_mq_free_tag_set() (David Milburn) [1288601]
-- [block] blk-mq: factor out a helper to iterate all tags for a request_queue (David Milburn) [1288601]
-- [block] blk-mq: fix racy updates of rq->errors (David Milburn) [1288601]
-- [block] nvme: fix 32-bit build warning (David Milburn) [1288601]
-- [block] nvme: Add explicit block config dependency (David Milburn) [1288601]
-- [block] blk-mq: remove unused blk_mq_clone_flush_request prototype (David Milburn) [1288601]
-- [block] blk-mq: fix waitqueue_active without memory barrier in block/blk-mq-tag.c (David Milburn) [1288601]
-- [block] nvme: include <linux/types.h> in <linux/nvme.h> (David Milburn) [1288601]
-- [block] nvme: move to a new drivers/nvme/host directory (David Milburn) [1288601]
-- [block] nvme: add missing nvme_id_ctrl endianess annotations (David Milburn) [1288601]
-- [block] nvme: move hardware structures out of the uapi version of nvme.h (David Milburn) [1288601]
-- [block] nvme: add a local nvme.h header (David Milburn) [1288601]
-- [block] nvme: properly handle partially initialized queues in nvme_create_io_queues (David Milburn) [1288601]
-- [block] nvme: merge nvme_dev_start, nvme_dev_resume and nvme_async_probe (David Milburn) [1288601]
-- [block] nvme: factor reset code into a common helper (David Milburn) [1288601]
-- [block] nvme: merge nvme_dev_reset into nvme_reset_failed_dev (David Milburn) [1288601]
-- [block] nvme: delete dev from dev_list in nvme_reset (David Milburn) [1288601]
-- [block] nvme: Simplify device resume on io queue failure (David Milburn) [1288601]
-- [block] nvme: Namespace removal simplifications (David Milburn) [1288601]
-- [block] nvme: Reference count open namespaces (David Milburn) [1288601]
-- [block] nvme: Set affinity after allocating request queues (David Milburn) [1288601]
-- [block] nvme: Using PRACT bit to generate and verify PI by controller (David Milburn) [1288601]
-- [block] nvme: Remove unreachable code in nvme_abort_req (David Milburn) [1288601]
-- [block] nvme: Add nvme subsystem reset IOCTL (David Milburn) [1288601]
-- [block] nvme: Add nvme subsystem reset support (David Milburn) [1288601]
-- [block] nvme: removed unused nn var from nvme_dev_add (David Milburn) [1288601]
-- [block] nvme: Set queue max segments (David Milburn) [1288601]
-- [block] blk-mq: fix race between timeout and freeing request (David Milburn) [1288601]
-- [block] blk-mq: fix buffer overflow when reading sysfs file of 'pending' (David Milburn) [1288601]
-- [block] nvme: Fixes u64 division which breaks i386 builds (David Milburn) [1288601]
-- [block] nvme: Use CMB for the IO SQes if available (David Milburn) [1288601]
-- [block] nvme: Unify SQ entry writing and doorbell ringing (David Milburn) [1288601]
-- [block] blk-mq: set default timeout as 30 seconds (David Milburn) [1288601]
-- [block] nvme: Reread partitions on metadata formats (David Milburn) [1288601]
-- [block] nvme: Fix irq freeing when queue_request_irq fails (David Milburn) [1288601]
-- [block] nvme-core: fix build with gcc-4.4.4 (David Milburn) [1288601]
-- [block] nvme: Don't use fake status on cancelled command (David Milburn) [1288601]
-- [block] nvme: Fix device cleanup on initialization failure (David Milburn) [1288601]
-- [block] nvme-scsi: Catch kcalloc failure (David Milburn) [1288601]
-- [block] nvme: Fix IO for extended metadata formats (David Milburn) [1288601]
-- [block] nvme: don't overwrite req->cmd_flags on sync cmd (David Milburn) [1288601]
-- [block] nvme: Memory barrier before queue_count is incremented (David Milburn) [1288601]
-- [block] nvme: End sync requests immediately on failure (David Milburn) [1288601]
-- [block] nvme: Use requested sync command timeout (David Milburn) [1288601]
-- [block] nvme: fix type warning on 32-bit (David Milburn) [1288601]
-- [block] nvme: Fix obtaining command result (David Milburn) [1288601]
-- [block] nvme: submit internal commands through the block layer (David Milburn) [1288601]
-- [block] rename REQ_TYPE_SPECIAL to REQ_TYPE_DRV_PRIV (David Milburn) [1288601]
-- [block] nvme: fail SCSI read/write command with unsupported protection bit (David Milburn) [1288601]
-- [block] nvme: report the DPOFUA in MODE_SENSE (David Milburn) [1288601]
-- [block] nvme: simplify and cleanup the READ/WRITE SCSI CDB parsing code (David Milburn) [1288601]
-- [block] nvme: first round at deobsfucating the SCSI translation code (David Milburn) [1288601]
-- [block] nvme: fix scsi translation error handling (David Milburn) [1288601]
-- [block] nvme: split nvme_trans_send_fw_cmd (David Milburn) [1288601]
-- [block] nvme: store a struct device pointer in struct nvme_dev (David Milburn) [1288601]
-- [block] nvme: consolidate synchronous command submission helpers (David Milburn) [1288601]
-- [block] nvme: fix kernel memory corruption with short INQUIRY buffers (David Milburn) [1288601]
-- [block] nvme: Fix VPD B0 max sectors translation (David Milburn) [1288601]
-
-* Wed Apr 27 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-383.el7]
-- [hv] kvp: fix IP Failover (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: Remove util transport handler from list if registration fails (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: Pass the channel information during the init call (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: fix hvt_op_poll() return value on transport destroy (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: fix crash when device is removed from host side (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: introduce HVUTIL_TRANSPORT_DESTROY mode (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: rename outmsg_lock (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: fix memory leak on on_msg() failure (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: Invoke the poll function after handshake (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: run only on supported host versions (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: use memdup_user in hvt_op_write (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: catch allocation errors (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] tools: hv: report ENOSPC errors in hv_fcopy_daemon (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: run polling callback always in interrupt context (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: Increase the timeout for util services (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: checking the wrong variable (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: dynamically allocate smsg_out in fcopy_send_data() (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: check kzalloc return value (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: unify driver registration reporting (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: full handshake support (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: full handshake support (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: convert to hv_utils_transport (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: convert to hv_utils_transport (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: convert to hv_utils_transport (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: introduce hv_utils_transport abstraction (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: switch to using the hvutil_device_state state machine (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: switch to using the hvutil_device_state state machine (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: switch to using the hvutil_device_state state machine (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: introduce state machine for util drivers (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: rename fcopy_work -> fcopy_timeout_work (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: rename kvp_work -> kvp_timeout_work (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] vss: process deferred messages when we complete the transaction (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] fcopy: process deferred messages when we complete the transaction (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: move poll_channel() to hyperv_vmbus.h (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] kvp: reset kvp_context (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: move kvp/vss function declarations to hyperv_vmbus.h (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] utils: move vmbus_open() to a later place (Vitaly Kuznetsov) [1074407 1309368]
-- [hv] Change variable type to bool (Vitaly Kuznetsov) [1074407 1309368]
-- [fs] Restore inode_dio_done declaration (George Beshers) [1321161]
-- [x86] Reinstate pv_cpu_ops.read_tsc() (George Beshers) [1321161]
-- [x86] tsc: Restore rdtsc_barrier() (George Beshers) [1321161]
-- [netdrv] ibmveth: enable interrupts after napi_complete() (Thomas Huth) [1317487]
-- [netdrv] ibmveth: Fix endian issues with rx_no_buffer statistic (Thomas Huth) [1317487]
-- [netdrv] r8169: Remove unnecessary phy reset for pcie nic when setting link spped (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Enable RX_MULTI_EN for RTL_GIGA_MAC_VER_41~48 (Corinna Vinschen) [1298541]
-- [netdrv] r8169: fix "rtl_counters_cond == 1 (loop: 1000, delay: 10)" log spam (Corinna Vinschen) [1298541]
-- [netdrv] r8169: fix system hang problem (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Correct the way of setting RTL8168DP ephy (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Fix typo in setting RTL8168H PHY PFM mode (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Fix typo in setting RTL8168EP and RTL8168H D3cold PFM mode (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Update the way of reading RTL8168H PHY register "rg_saw_cnt" (Corinna Vinschen) [1298541]
-- [netdrv] r8169: Fix typo in setting RTL8168H PHY parameter (Corinna Vinschen) [1298541]
-- [netdrv] r8169: fix handling rtl_readphy result (Corinna Vinschen) [1298541]
-- [leds] powernv: removing NULL check (Gustavo Duarte) [1274413]
-- [powerpc] powernv: Fix mis-merge of OPAL support for LEDS driver (Gustavo Duarte) [1274413]
-- [leds] powernv: Add driver for PowerNV platform (Gustavo Duarte) [1274413]
-- [powerpc] powernv: Create LED platform device (Gustavo Duarte) [1274413]
-- [powerpc] powernv: Add OPAL interfaces for accessing and modifying system LED states (Gustavo Duarte) [1274413]
-- [powerpc] leds: Introduce devres helper for led_classdev_register (Gustavo Duarte) [1274413]
-- [powerpc] devres: Add devm_kasprintf and devm_kvasprintf API (Gustavo Duarte) [1274413]
-
-* Tue Apr 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-382.el7]
-- [x86] dmi: Switch dmi_remap() from ioremap() uncached to ioremap_cache() (Luiz Capitulino) [961581]
-- [pci] Generate uppercase hex for modalias var in uevent (Myron Stowe) [1325402]
-- [pci] Don't look for ACPI hotplug parameters if ACPI is disabled (Myron Stowe) [1325402]
-- [pci] Support 64-bit bridge windows if we have 64-bit dma_addr_t (Myron Stowe) [1325402]
-- [pci] Apply _HPX Link Control settings to all devices with a link (Myron Stowe) [1325402]
-- [include] pci: Don't oops on virtual buses in acpi_pci_get_bridge_handle() (Myron Stowe) [1325402]
-- [pci] Add ACS quirk for AMD A88X southbridge devices (Myron Stowe) [1325402]
-- [pci] msi: Remove unnecessary temporary variable (Myron Stowe) [1325402]
-- [pci] msi: Use __write_msi_msg() instead of write_msi_msg() (Myron Stowe) [1325402]
-- [powerpc] msi/powerpc: Use __read_msi_msg() instead of read_msi_msg() (Myron Stowe) [1325402]
-- [include] pci/msi: Remove "pos" from the struct msi_desc msi_attrib (Myron Stowe) [1325402]
-- [include] pci/msi: Remove unused kobject from struct msi_desc (Myron Stowe) [1325402]
-- [pci] msi: Rename pci_msi_check_device() to pci_msi_supported() (Myron Stowe) [1325402]
-- [pci] msi: Move D0 check into pci_msi_check_device() (Myron Stowe) [1325402]
-- [include] pci/msi: Remove arch_msi_check_device() (Myron Stowe) [1325402]
-- [include] pci: Add pci_remap_iospace() to map bus I/O resources (Myron Stowe) [1325402]
-- [include] pci: Add generic domain handling (Myron Stowe) [1325402]
-- [include] asm-generic/io.h: Fix ioport_map() for !CONFIG_GENERIC_IOMAP (Myron Stowe) [1325402]
-- [include] pci/aer: Rename PCI_ERR_UNC_TRAIN to PCI_ERR_UNC_UND (Myron Stowe) [1325402]
-- [pci] aer: Add additional PCIe AER error strings (Myron Stowe) [1325402]
-- [include] trace, ras: Add additional PCIe AER error strings (Myron Stowe) [1325402]
-- [include] trace, ras: Replace bare numbers with #defines for PCIe AER error strings (Myron Stowe) [1325402]
-- [pci] Remove assignment from complicated "if" conditions (Myron Stowe) [1325402]
-- [pci] Remove assignment from "if" conditions (Myron Stowe) [1325402]
-- [pci] Remove unnecessary curly braces (Myron Stowe) [1325402]
-- [pci] Add space before open parenthesis (Myron Stowe) [1325402]
-- [x86] pci: Mark PCI BIOS initialization code as such (Myron Stowe) [1325402]
-- [x86] pci: Constify pci_mmcfg_probes[] array (Myron Stowe) [1325402]
-- [x86] pci: Mark constants of pci_mmcfg_nvidia_mcp55() as __initconst (Myron Stowe) [1325402]
-- [x86] pci: Move __init annotation to the correct place (Myron Stowe) [1325402]
-- [include] pci: Remove unused pci_get_dma_source() (Myron Stowe) [1325402]
-- [include] pci: Remove unused pci_find_upstream_pcie_bridge() (Myron Stowe) [1325402]
-- [x86] pci: Mark DMI tables as initialization data (Myron Stowe) [1325402]
-- [pci] Generate uppercase hex for modalias interface class (Myron Stowe) [1325402]
-- [include] pci: Parenthesize PCI_DEVID and PCI_VPD_LRDT_ID parameters (Myron Stowe) [1325402]
-- [pci] Use device flag helper functions (Myron Stowe) [1325402]
-- [include] pci: Add device flag helper functions (Myron Stowe) [1325402]
-- [pci] Configure *all* devices, not just hot-added ones (Myron Stowe) [1325402]
-- [pci] Preserve MPS and MRRS when applying _HPX settings (Myron Stowe) [1325402]
-- [pci] Apply _HPP settings to all hot-added PCI devices (Myron Stowe) [1325402]
-- [pci] Preserve BIOS PCI_COMMAND_SERR and PCI_COMMAND_PARITY settings (Myron Stowe) [1325402]
-- [pci] Apply _HPP settings to PCIe devices as well as PCI and PCI-X (Myron Stowe) [1325402]
-- [include] pci: Remove unused pci_configure_slot() (Myron Stowe) [1325402]
-- [pci] acpi / hotplug / pci: Remove pci_configure_slot() usage (Myron Stowe) [1325402]
-- [pci] shpchp: Remove pci_configure_slot() usage (Myron Stowe) [1325402]
-- [pci] hp: Remove pci_configure_slot() usage (Myron Stowe) [1325402]
-- [pci] Add pci_configure_device() during enumeration (Myron Stowe) [1325402]
-- [pci] Move pci_configure_slot() to drivers/pci/probe.c (Myron Stowe) [1325402]
-- [pci] Whitespace cleanup in pci-acpi.c (Myron Stowe) [1325402]
-- [pci] Move pci_get_hp_params() to drivers/pci/pci-acpi.c (Myron Stowe) [1325402]
-- [pci] hp: Configure hot-added display devices (Myron Stowe) [1325402]
-- [include] pci: Enable CRS Software Visibility for root port if it is supported (Myron Stowe) [1325402]
-- [pci] Check only the Vendor ID to identify Configuration Request Retry (Myron Stowe) [1325402]
-- [include] pci/aer: Make <linux/aer.h> standalone includable (Myron Stowe) [1325402]
-- [kernel] resources: Add device-managed request/release_resource() (Myron Stowe) [1325402]
-- [pci] Remove unnecessary variable in pci_add_dynid() (Myron Stowe) [1325402]
-- [pci] pm: Allow PCI devices to be put into D3cold during system suspend (Myron Stowe) [1325402]
-- [pci] pm: Drop unused runtime PM support code for PCIe ports (Myron Stowe) [1325402]
-- [scsi] ipr: Use pci_enable_msi_range() and pci_enable_msix_range() (Myron Stowe) [1325402]
-- [scsi] ipr: Get rid of superfluous call to pci_disbale_msi/msix() (Myron Stowe) [1325402]
-- [block] nvme: Use pci_enable_msi_range() and pci_enable_msix_range() (Myron Stowe) [1325402]
-- [md] dm-cache-metadata: fix cmd_read_lock() acquiring write lock (Mike Snitzer) [1327629]
-- [md] dm-cache-metadata: fix READ_LOCK macros and cleanup WRITE_LOCK macros (Mike Snitzer) [1327629]
-- [md] dm: fix dm_target_io leak if clone_bio() returns an error (Mike Snitzer) [1327629]
-- [fs] nfsd: default NFSv4.2 to on ("J. Bruce Fields") [1272142]
-- [fs] ceph: don't increase filp->f_pos when readdir run out of buffer (Zheng Yan) [1320427]
-- [fs] gfs2: ignore unlock failures after withdraw (Benjamin Marzinski) [1250224]
-- [fs] fs: initmpfs replace MS_NOUSER in initramfs (Carlos Maiolino) [1225554]
-- [mm] actually clear pmd_numa before invalidating ("Herton R. Krzesinski") [1327265]
-- [mm] memcg: fix memcg_size() calculation ("Herton R. Krzesinski") [1327265]
-- [mm] hugetlb: check for pte NULL pointer in __page_check_address() ("Herton R. Krzesinski") [1327265]
-- [mm] compaction: respect ignore_skip_hint in update_pageblock_skip ("Herton R. Krzesinski") [1327265]
-- [kernel] sched/rt: Fix rq's cpupri leak while enqueue/dequeue child RT entities ("Herton R. Krzesinski") [1327265]
-- [kernel] ftrace: Initialize the ftrace profiler for each possible cpu ("Herton R. Krzesinski") [1327265]
-- [ipc] shm: correct error return value in shmctl(SHM_UNLOCK) ("Herton R. Krzesinski") [1327265]
-
-* Mon Apr 18 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-381.el7]
-- [powerpc] Align TOC to 256 bytes (Jan Stancek) [1327767]
-- [fs] sunrpc: Fix callback channel (Benjamin Coddington) [1315390]
-- [fs] nfs4: resend LAYOUTGET when there is a race that changes the seqid (Benjamin Coddington) [1315390]
-- [fs] nfs: if we have no valid attrs, then don't declare the attribute cache valid (Benjamin Coddington) [1315390]
-- [fs] nfs: ensure that attrcache is revalidated after a SETATTR (Benjamin Coddington) [1315390]
-- [fs] nfs4: limit callback decoding to received bytes (Benjamin Coddington) [1315390]
-- [fs] nfs4: start callback_ident at idr 1 (Benjamin Coddington) [1315390]
-- [fs] nfs: use sliding delay when LAYOUTGET gets NFS4ERR_DELAY (Benjamin Coddington) [1315390]
-- [fs] nfs4: Cleanup FATTR4_WORD0_FS_LOCATIONS after decoding success (Benjamin Coddington) [1315390]
-- [fs] nfs: Properly set NFS v4.2 NFSDBG_FACILITY (Benjamin Coddington) [1315390]
-- [fs] nfs: reduce the amount of ifdefs for v4.2 in nfs4file.c (Benjamin Coddington) [1315390]
-- [fs] nfs: use btrfs ioctl defintions for clone (Benjamin Coddington) [1315390]
-- [fs] nfs: allow intra-file CLONE (Benjamin Coddington) [1315390]
-- [fs] nfs: offer native ioctls even if CONFIG_COMPAT is set (Benjamin Coddington) [1315390]
-- [fs] nfs: pass on count for CLONE operations (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Supports hexadecimal number for sysctl files of sunrpc debug (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix GETATTR bitmap verification (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unused xdr page offsets in getacl/setacl arguments (Benjamin Coddington) [1315390]
-- [fs] fs/nfs: remove unnecessary new_valid_dev check (Benjamin Coddington) [1315390]
-- [fs] sunrpc: fix variable type (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: Add support for FF_FLAGS_NO_IO_THRU_MDS (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: When mirrored, retry failed reads by switching mirrors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Retry through MDS when getting bad length of data (Benjamin Coddington) [1315390]
-- [fs] nfs/blocklayout: Fix bad using of page offset in bl_read_pagelist (Benjamin Coddington) [1315390]
-- [fs] nfs: Return directly if encode_sessionid fail (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix bad checking of max taglen in callback request (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix bad defines of callback response maxsize (Benjamin Coddington) [1315390]
-- [fs] nfs: Use NFS4_MAX_SESSIONID_LEN directly for decode/encode sessionid (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unneeded NFS_DEBUG checking before define NFSDBG_FACILITY (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove the left function defines in callback.h (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove the left global variable nfs_callback_tcpport (Benjamin Coddington) [1315390]
-- [fs] nfs: Get rid of the unneeded addr stored in callback arguments (Benjamin Coddington) [1315390]
-- [fs] nfsroot: make nfsroot to accept the 1024 bytes long directory name (Benjamin Coddington) [1315390]
-- [fs] nfs: add missing linux/types.h (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix an 'unused variable' complaint when #ifndef CONFIG_NFS_V4_2 (Benjamin Coddington) [1315390]
-- [fs] nfs42: add NFS_IOC_CLONE_RANGE ioctl (Benjamin Coddington) [1315390]
-- [fs] nfs42: respect clone_blksize (Benjamin Coddington) [1315390]
-- [fs] nfs: get clone_blksize when probing fsinfo (Benjamin Coddington) [1315390]
-- [fs] nfs42: add NFS_IOC_CLONE ioctl (Benjamin Coddington) [1315390]
-- [fs] nfs42: add CLONE proc functions (Benjamin Coddington) [1315390]
-- [fs] nfs42: add CLONE xdr functions (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Unify synchronous and asynchronous error handling (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Don't use synchronous delegation recall in exception handling (Benjamin Coddington) [1315390]
-- [fs] nfsv4: nfs4_async_handle_error should take a non-const nfs_server (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Update the delay statistics counter for synchronous delays (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Refactor NFSv4 error handling (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix a tracepoint NULL-pointer dereference (Benjamin Coddington) [1315390]
-- [fs] nfs4: reset states to use open_stateid when returning delegation voluntarily (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: nfs4_opendata_check_deleg needs to handle NFS4_OPEN_CLAIM_DELEG_CUR_FH (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Don't try to reclaim unused state owners (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix up page writeback accounting (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: disconnect and flush cqs before freeing buffers (Benjamin Coddington) [1315390]
-- [fs] nfs41: make close wait for layoutreturn (Benjamin Coddington) [1315390]
-- [fs] nfs: Skip checking ds_cinfo.buckets when lseg's commit_through_mds is set (Benjamin Coddington) [1315390]
-- [fs] nfsv4.x/pnfs: Don't try to recover stateids twice in layoutget (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Recovery of recalled read delegations is broken (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix an infinite loop when layoutget fail with BAD_STATEID (Benjamin Coddington) [1315390]
-- [fs] nfs: Do cleanup before resetting pageio read/write to mds (Benjamin Coddington) [1315390]
-- [fs] sunrpc: xs_sock_mark_closed() does not need to trigger socket autoclose (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Lock the transport layer on shutdown (Benjamin Coddington) [1315390]
-- [fs] nfs/filelayout: Fix NULL reference caused by double freeing of fh_array (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Ensure that we wait for connections to complete before retrying (Benjamin Coddington) [1315390]
-- [fs] sunrpc: drop null test before destroy functions (Benjamin Coddington) [1315390]
-- [fs] nfs: fix pg_test page count calculation (Benjamin Coddington) [1315390]
-- [fs] nfs: Optimise away the close-to-open getattr if there is no cached data (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Clean up ff_layout_write_done_cb/ff_layout_commit_done_cb (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Mark the layout for return in ff_layout_io_track_ds_error() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unneeded checking of the return value from scnprintf (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix truncated client owner id without proto type (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Mark layout for return if the mirrors are invalid (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: RW layouts are valid only if all mirrors are valid (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Fix incorrect usage of pnfs_generic_mark_devid_invalid() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Fix freeing of mirrors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Don't request a minimal read layout beyond the end of file (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Handle LAYOUTGET return values correctly (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Don't ask for a read layout for an empty file (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Fix a protocol issue with CLOSE stateids (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Don't mark the entire deviceid as bad for file errors (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Prevent SYN+SYNACK+RST storms (Benjamin Coddington) [1315390]
-- [fs] sunrpc: xs_reset_transport must mark the connection as disconnected (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure layoutreturn reserves space for the opaque payload (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Fix a protocol error in layoutreturn (Benjamin Coddington) [1315390]
-- [fs] nfs: Send attributes in OPEN request for NFS4_CREATE_EXCLUSIVE4_1 (Benjamin Coddington) [1315390]
-- [fs] nfs: Get suppattr_exclcreat when getting server capabilities (Benjamin Coddington) [1315390]
-- [fs] nfs: Update NFS4_BITMAP_SIZE (Benjamin Coddington) [1315390]
-- [fs] nfs: Make opened as optional argument in _nfs4_do_open (Benjamin Coddington) [1315390]
-- [fs] nfs: Check size by inode_newsize_ok in nfs_setattr (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: pnfs_mark_matching_lsegs_return must notify of layout return (Benjamin Coddington) [1315390]
-- [fs] nfs42: remove unused declaration (Benjamin Coddington) [1315390]
-- [fs] nfs42: decode_layoutstats does not need res parameter (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Allow coalescing of new layout segments and existing ones (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Allow pNFS device drivers to customise layout segment insertion (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Add sanity check for the layout range returned by the server (Benjamin Coddington) [1315390]
-- [fs] NFSv4.1/pnfs Improve the packing of struct pnfs_layout_hdr (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfile: ff_layout_remove_mirror can be static (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2/pnfs: Make the layoutstats timer configurable (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfile: Ensure uniqueness of mirrors across layout segments (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Remove mirror backpointer to lseg (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/flexfiles: Add refcounting to struct nfs4_ff_layout_mirror (Benjamin Coddington) [1315390]
-- [fs] nfs41/flexfiles: zero out DS write wcc (Benjamin Coddington) [1315390]
-- [fs] nfs41: remove NFS_LAYOUT_ROC flag (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Add a tracepoint for CB_LAYOUTRECALL (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Add a tracepoint for CB_GETATTR (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Add a tracepoint for return-on-close events (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Force a post-op attribute update when holding a delegation (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure flexfiles reports all connection related errors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure the flexfiles layoutstats timers are consistent (Benjamin Coddington) [1315390]
-- [fs] nfs41: fix list splice type (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Enable delegated opens even when reboot recovery is pending (Benjamin Coddington) [1315390]
-- [fs] pnfs: Fix an unused variable warning in pnfs_roc_get_barrier (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Allow sockets to do GFP_NOIO allocations (Benjamin Coddington) [1315390]
-- [fs] nfs41/flexfiles: update inode after write finishes (Benjamin Coddington) [1315390]
-- [fs] nfs41: make sure sending LAYOUTRETURN before close if marked so (Benjamin Coddington) [1315390]
-- [fs] revert "nfsv4: Remove incorrect check in can_open_delegated()" (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Play safe w.r.t. close() races when return-on-close is set (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix a close/delegreturn hang when return-on-close is set (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't fsync twice for O_SYNC/IS_SYNC files (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Drop double-underscores from __rpc_cmp_addr6() (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't let the ctime override attribute barriers (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove nfs_release() (Benjamin Coddington) [1315390]
-- [fs] nfs: Rename nfs_commit_unstable_pages() to nfs_write_inode() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove nfs41_server_notify_{target|highest}_slotid_update() (Benjamin Coddington) [1315390]
-- [fs] nfs: Combine nfs_idmap_{init|quit}() and nfs_idmap_{init|quit}_keyring() (Benjamin Coddington) [1315390]
-- [fs] nfs: Use RPC functions for matching sockaddrs (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Add an rpc_cmp_addr_port() function (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Drop double-underscores from rpc_cmp_addr{4|6}() (Benjamin Coddington) [1315390]
-- [fs] nfs: Rename nfs_readdir_free_pagearray() and nfs_readdir_large_page() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unused variable "pages_ptr" (Benjamin Coddington) [1315390]
-- [fs] nfs: remove some dead code in ff_layout_pg_get_mirror_count_write (Benjamin Coddington) [1315390]
-- [fs] pnfs: move common blocklayout XDR defintions to nfs4.h (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: pass proper file mode to blkdev_get/put (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: reject too long signatures (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: set up layoutupdate_pages properly (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: calculate layoutupdate size correctly (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a thinko in xs_connect() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix borken function _same_data_server_addrs_locked() (Benjamin Coddington) [1315390]
-- [fs] nfs: nfs_set_pgio_error sometimes misses errors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Remove redundant wakeup in pnfs_send_layoutreturn() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Remove redundant check in pnfs_layoutgets_blocked() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Remove redundant lo->plh_block_lgets in layoutreturn (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Don't prevent layoutgets when doing return-on-close (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix serialisation of layout return and layoutget (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Remove redundant checks in pnfs_layoutgets_blocked() (Benjamin Coddington) [1315390]
-- [fs] pnfs: Tighten up locking around DS commit buckets (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove duplicate svc_xprt_put from nfs41_callback_up (Benjamin Coddington) [1315390]
-- [fs] sunrpc: increase UNX_MAXNODENAME from 32 to __NEW_UTS_LEN bytes (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2/pnfs: Use GFP_NOIO for layoutstat reporting in the writeback path (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: LAYOUTSTATS ii_count should be ops instead of bytes (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix atomicity of commit list updates (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: take HCA driver refcount at client (Benjamin Coddington) [1315390]
-- [fs] core: Remove the ib_reg_phys_mr() and ib_rereg_phys_mr() verbs (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Count RDMA_NOMSG type calls (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Clean up xprt_rdma_print_stats() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Fix large NFS SYMLINK calls (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Fix XDR tail buffer marshalling (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Don't provide a reply chunk when expecting a short reply (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Always provide a write list when sending NFS READ (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Account for RPC/RDMA header size when deciding to inline (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove logic that constructs RDMA_MSGP type calls (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Clean up rpcrdma_ia_open() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove last ib_reg_phys_mr() call site (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Don't fall back to PHYSICAL memory registration (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Increase default credit limit (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Raise maximum payload size to one megabyte (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Make xprt_setup_rdma() agnostic to family of server address (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix an oops caused by using other thread's stack space in ASYNC mode (Benjamin Coddington) [1315390]
-- [fs] nfs: plug memory leak when ->prepare_layoutcommit fails (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Report TCP errors to the caller (Benjamin Coddington) [1315390]
-- [fs] sunrpc: translate -EAGAIN to -ENOBUFS when socket is writable (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't clear desc->pg_moreio in nfs_do_recoalesce() (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix a memory leak in nfs_do_recoalesce (Benjamin Coddington) [1315390]
-- [fs] nfs: nfs_mark_for_revalidate should always set NFS_INO_REVAL_PAGECACHE (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove the "NFS_CAP_CHANGE_ATTR" capability (Benjamin Coddington) [1315390]
-- [fs] nfs: Set NFS_INO_REVAL_PAGECACHE if the change attribute is uninitialised (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't revalidate the mapping if both size and change attr are up to date (Benjamin Coddington) [1315390]
-- [fs] nfsv4/pnfs: Ensure we don't miss a file extension (Benjamin Coddington) [1315390]
-- [fs] sunrpc: xprt_complete_bc_request must also decrement the free slot count (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a backchannel deadlock (Benjamin Coddington) [1315390]
-- [fs] pnfs: Don't throw out valid layout segments (Benjamin Coddington) [1315390]
-- [fs] pnfs: pnfs_roc_drain() fix a race with open (Benjamin Coddington) [1315390]
-- [fs] pnfs: Fix races between return-on-close and layoutreturn (Benjamin Coddington) [1315390]
-- [fs] pnfs: pnfs_roc_drain should return 'true' when sleeping (Benjamin Coddington) [1315390]
-- [fs] pnfs: Layoutreturn must invalidate all existing layout segments (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2/flexfiles: Fix a typo in the flexfiles layoutstats code (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Leases are renewed in sequence_done when we have sessions (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: nfs41_sequence_done should handle sequence flag errors (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Handle SEQ4_STATUS_BACKCHANNEL_FAULT correctly (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Handle SEQ4_STATUS_RECALLABLE_STATE_REVOKED status bit correctly (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Handle SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED status bit correctly (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Don't confuse ENOBUFS with a write_space issue (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Don't reencode message if transmission failed with ENOBUFS (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove invalid tk_pid from debug message (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove invalid NFS_ATTR_FATTR_V4_REFERRAL checking in nfs4_get_rootfh (Benjamin Coddington) [1315390]
-- [fs] nfs: Drop bad comment in nfs41_walk_client_list() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unneeded micro checking of CONFIG_PROC_FS (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't setting FILE_CREATED flags always (Benjamin Coddington) [1315390]
-- [fs] nfs: Use remove_proc_subtree() instead remove_proc_entry() (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unused argument in nfs_server_set_fsinfo() (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix a memory leak when meeting an unsupported state protect (Benjamin Coddington) [1315390]
-- [fs] nfs: take extra reference to fl->fl_file when running a LOCKU operation (Benjamin Coddington) [1315390]
-- [fs] nfsv4: When returning a delegation, don't reclaim an incompatible open mode (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2: LAYOUTSTATS is optional to implement (Benjamin Coddington) [1315390]
-- [fs] nfsv4.2: Fix up a decoding error in layoutstats (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: Fix the reset of struct pgio_header when resending (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: Turn off layoutcommit for servers that don't need it (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: protect ktime manipulation with mirror lock (Benjamin Coddington) [1315390]
-- [fs] nfs: provide pnfs_report_layoutstat when NFS42 is disabled (Benjamin Coddington) [1315390]
-- [fs] nfs: always update creds in mirror, even when we have an already connected ds (Benjamin Coddington) [1315390]
-- [fs] nfs: fix potential credential leak in ff_layout_update_mirror_cred (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: report layoutstat regularly (Benjamin Coddington) [1315390]
-- [fs] nfs42: serialize LAYOUTSTATS calls of the same file (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: encode LAYOUTSTATS flexfiles specific data (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: add ff_layout_prepare_layoutstats (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: track when layout is first used (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: add layoutstats tracking (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: Remove unused struct members user_name, group_name (Benjamin Coddington) [1315390]
-- [fs] pnfs: add pnfs_report_layoutstat helper function (Benjamin Coddington) [1315390]
-- [fs] pnfs: fill in nfs42_layoutstat_ops (Benjamin Coddington) [1315390]
-- [fs] pnfs: Add a LAYOUTSTATS rpc function (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Set the TCP user timeout option on client sockets (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Ensure we release the TCP socket once it has been closed (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Handle connection issues correctly on the back channel (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix comment for nfs_pageio_init() and nfs_pageio_complete_mirror() (Benjamin Coddington) [1315390]
-- [fs] sunrpc: use sg_init_one() in krb5_rc4_setup_enc/seq_key() (Benjamin Coddington) [1315390]
-- [fs] nfs: Ensure we set NFS_CONTEXT_RESEND_WRITES when requeuing writes (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Fix stateid recovery on revoked delegations (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix showing truncated fsid/dev in, /proc/net/nfsfs/volumes (Benjamin Coddington) [1315390]
-- [fs] nfs: make nfs4_init_uniform_client_string use a dynamically allocated buffer (Benjamin Coddington) [1315390]
-- [fs] nfs: make nfs4_init_nonuniform_client_string use a dynamically allocated buffer (Benjamin Coddington) [1315390]
-- [fs] nfs: update maxsz values for SETCLIENTID and EXCHANGE_ID (Benjamin Coddington) [1315390]
-- [fs] nfs: convert setclientid and exchange_id encoders to use clp->cl_owner_id (Benjamin Coddington) [1315390]
-- [fs] pnfs/flexfiles: use swap() in ff_layout_sort_mirrors() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Reduce per-transport MR allocation (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Stack relief in fmr_op_map() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Split rb_lock (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rpcrdma_ia::ri_memreg_strategy (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove ->ro_reset (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove unused LOCAL_INV recovery logic (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Acquire MRs in rpcrdma_register_external() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Introduce an FRMR recovery workqueue (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Acquire FMRs in rpcrdma_fmr_register_external() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Introduce helpers for allocating MWs (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Use ib_device pointer safely (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rr_func (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Replace rpcrdma_rep::rr_buffer with rr_rxprt (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Warn when there are orphaned IB objects (Benjamin Coddington) [1315390]
-- [fs] nfs: Ensure that we update the sequence id under the slot table lock (Benjamin Coddington) [1315390]
-- [fs] nfs: Initialize cb_sequenceres information before validate_seqid() (Benjamin Coddington) [1315390]
-- [fs] nfs: deny backchannel RPCs with an incorrect authflavor instead of dropping them (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Address kbuild warning in net/sunrpc/debugfs.c (Benjamin Coddington) [1315390]
-- [fs] nfs: Only update callback sequnce id when CB_SEQUENCE success (Benjamin Coddington) [1315390]
-- [fs] nfs: Convert use of __constant_htonl to htonl (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Transport fault injection (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unused nfs_rw_ops->rw_release() function (Benjamin Coddington) [1315390]
-- [fs] sunrpc: turn swapper_enable/disable functions into rpc_xprt_ops (Benjamin Coddington) [1315390]
-- [fs] sunrpc: lock xprt before trying to set memalloc on the sockets (Benjamin Coddington) [1315390]
-- [fs] sunrpc: if we're closing down a socket, clear memalloc on it first (Benjamin Coddington) [1315390]
-- [fs] sunrpc: make xprt->swapper an atomic_t (Benjamin Coddington) [1315390]
-- [fs] sunrpc: keep a count of swapfiles associated with the rpc_clnt (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a backchannel race (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Clean up allocation and freeing of back channel requests (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Remove unused argument 'tk_ops' in rpc_run_bc_task (Benjamin Coddington) [1315390]
-- [fs] nfsv4: nfs4_handle_delegation_recall_error should ignore EAGAIN (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Clean up bc_send() (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Backchannel handle socket nospace (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a memory leak in the backchannel code (Benjamin Coddington) [1315390]
-- [fs] nfs: drop unneeded goto (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix size of NFSACL SETACL operations (Benjamin Coddington) [1315390]
-- [fs] nfs: report more appropriate block size for directories (Benjamin Coddington) [1315390]
-- [fs] nfs: stat(2) fails during cthon04 basic test5 on NFSv4.0 (Benjamin Coddington) [1315390]
-- [fs] fs/nfs: fix new compiler warning about boolean in switch (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove unneeded casts in nfs (Benjamin Coddington) [1315390]
-- [fs] revert "nfs: replace nfs_add_stats with nfs_inc_stats when add one" (Benjamin Coddington) [1315390]
-- [fs] nfs: Rename idmap.c to nfs4idmap.c (Benjamin Coddington) [1315390]
-- [fs] nfs: Move nfs_idmap.h into fs/nfs/ (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove CONFIG_NFS_V4 checks from nfs_idmap.h (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Make rpcrdma_{un}map_one() into inline functions (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Handle non-SEND completions via a callout (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add "open" memreg op (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add "destroy MRs" memreg op (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add "reset MRs" memreg op (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add "init MRs" memreg op (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add a "deregister_external" op for each memreg mode (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add a "register_external" op for each memreg mode (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add a "max_payload" op for each memreg mode (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add vector of ops for each memory registration strategy (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Prevent infinite loop in rpcrdma_ep_create() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Byte-align FRWR registration (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Perform a full marshal on retransmit (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Display IPv6 addresses and port numbers correctly (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Introduce missing well-known netids (Benjamin Coddington) [1315390]
-- [fs] nfs: Block new writes while syncing data in nfs_getattr() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Separate out metadata and data consistency for pNFS (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure we send layoutcommit before return-on-close (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Ensure that writes respect the O_SYNC flag when doing O_DIRECT (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Truncating file opens should also sync O_DIRECT writes (Benjamin Coddington) [1315390]
-- [fs] nfs: File unlock needs to be a metadata synchronisation point (Benjamin Coddington) [1315390]
-- [fs] nfs: Add a helper to sync both O_DIRECT and buffered writes (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Refactor pnfs_set_layoutcommit() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1/pnfs: Fix setting of layoutcommit last write byte (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Return the delegation before returning the layout in evict_inode() (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Allow tracing of NFSv4 fsync calls (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix free_deveiceid -> free_deviceid (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Don't cache deviceids that have no notifications (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Allow getdeviceinfo to return notification info back to caller (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Cleanup - don't opencode nfs4_put_deviceid_node() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Convert pNFS deviceid to use kfree_rcu() (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Return delegations synchronously in evict_inode (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix a regression when reconnecting (Benjamin Coddington) [1315390]
-- [fs] nfs: clean up nfs_direct_IO (Benjamin Coddington) [1315390]
-- [fs] sunrpc: fix build-warning due to format missmatch (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Append delegations to the per-client list instead of prepending (Benjamin Coddington) [1315390]
-- [fs] sunrpc: use jiffies_to_msecs for converting jiffies (Benjamin Coddington) [1315390]
-- [fs] nfs: remount with security change should return EINVAL (Benjamin Coddington) [1315390]
-- [fs] nfs: do not export discarded symbols (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: don't export static symbol (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Clear the old state by our client id before establishing a new lease (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Fix a race in NFSv4.1 server trunking discovery (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't write enable new pages while an invalidation is proceeding (Benjamin Coddington) [1315390]
-- [fs] nfs: Don't require a filehandle to refresh the inode in nfs_prime_dcache() (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Set a barrier in the update_changeattr() helper (Benjamin Coddington) [1315390]
-- [fs] nfs: Fix nfs_post_op_update_inode() to set an attribute barrier (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove size hack in nfs_inode_attrs_need_update() (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Add attribute update barriers to delegreturn and pNFS layoutcommit (Benjamin Coddington) [1315390]
-- [fs] nfs: Add attribute update barriers to NFS writebacks (Benjamin Coddington) [1315390]
-- [fs] nfs: Set an attribute barrier on all updates (Benjamin Coddington) [1315390]
-- [fs] nfs: Add attribute update barriers to nfs_setattr_update_inode() (Benjamin Coddington) [1315390]
-- [fs] nfs: Add a helper to set attribute barriers (Benjamin Coddington) [1315390]
-- [fs] nfs: Ensure that buffered writes wait for O_DIRECT writes to complete (Benjamin Coddington) [1315390]
-- [fs] nfsv4: nfs4_open_recover_helper() must set share access (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Store RDMA credits in unsigned variables (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Clean up bind_conn_to_session (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Always set up a forward channel when binding the session (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Don't set up a backchannel if the server didn't agree to do so (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Clean up create_session (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Kill unused nfs_inode->delegation_state field (Benjamin Coddington) [1315390]
-- [fs] nfs: Can call nfs_clear_page_commit() instead (Benjamin Coddington) [1315390]
-- [fs] nfs: Provide and use helper functions for marking a page as unstable (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Always manipulate rpc_rqst::rq_bc_pa_list under xprt->bc_pa_lock (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Convert open-coded array allocation calls to kmalloc_array() (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Cleanup to remove xs_tcp_close() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Optimise layout return-on-close (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Address sparse complaint in rpcr_to_rdmar() (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Ask for no delegation on OPEN if using O_DIRECT (Benjamin Coddington) [1315390]
-- [fs] nfs: Add Anna Schumaker as co-maintainer for the NFS client (Benjamin Coddington) [1315390]
-- [fs] nfs: a couple off by ones (Benjamin Coddington) [1315390]
-- [fs] nfs: prevent truncate on active swapfile (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Update the GFP flags used in xprt_rdma_allocate() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Clean up after adding regbuf management (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Allocate zero pad separately from rpcrdma_buffer (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Allocate RPC/RDMA receive buffer separately from struct rpcrdma_rep (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Allocate RPC/RDMA send buffer separately from struct rpcrdma_req (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Allocate RPC send buffer separately from struct rpcrdma_req (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Add struct rpcrdma_regbuf and helpers (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Refactor rpcrdma_buffer_create() and rpcrdma_buffer_destroy() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Simplify synopsis of rpcrdma_buffer_create() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Take struct ib_qp_attr and ib_qp_init_attr off the stack (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Take struct ib_device_attr off the stack (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Free the pd if ib_query_qp() fails (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rpcrdma_ep::rep_func and ::rep_xprt (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Move credit update to RPC reply handler (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rl_mr field, and the mr_chunk union (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Remove rpcrdma_ep::rep_ia (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Rename "xprt" and "rdma_connect" fields in struct rpcrdma_xprt (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Clean up hdrlen (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Display XIDs in host byte order (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Modernize htonl and ntohl (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: human-readable completion status (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Deal with atomic upgrades of an existing delegation (Benjamin Coddington) [1315390]
-- [fs] nfsv4.1: Replace usage of nfs_client->cl_addr in encode_create_session (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Allow waiting on memory allocation (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Remove incorrect check in can_open_delegated() (Benjamin Coddington) [1315390]
-- [fs] nfs: Ignore transport protocol when detecting server trunking (Benjamin Coddington) [1315390]
-- [fs] nfsv4/v4.1: Verify the client owner id during trunking detection (Benjamin Coddington) [1315390]
-- [fs] nfsv4: Cache the NFSv4/v4.1 client owner_id in the struct nfs_client (Benjamin Coddington) [1315390]
-- [fs] pnfs/blocklayout: fix end calculation in pnfs_num_cont_bytes (Benjamin Coddington) [1315390]
-- [fs] sunrpc: add some tracepoints in svc_rqst handling functions (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Display async errors (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Enable pad optimization (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Re-write rpcrdma_flush_cqs() (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Refactor tasklet scheduling (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: unmap all FMRs during transport disconnect (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Cap req_cqinit (Benjamin Coddington) [1315390]
-- [fs] xprtrdma: Return an errno from rpcrdma_register_external() (Benjamin Coddington) [1315390]
-- [fs] nfs: define nfs_inc_fscache_stats and using it as possible (Benjamin Coddington) [1315390]
-- [fs] nfs: replace nfs_add_stats with nfs_inc_stats when add one (Benjamin Coddington) [1315390]
-- [fs] nfs: Deletion of unnecessary checks before the function call "nfs_put_client" (Benjamin Coddington) [1315390]
-- [fs] nfs: Remove dead case from nfs4_map_errors() (Benjamin Coddington) [1315390]
-- [fs] nfs/sunrpc: Remove other deadlock-avoidance mechanisms in nfs_release_page() (Benjamin Coddington) [1315390]
-- [fs] nfs: avoid waiting at all in nfs_release_page when congested (Benjamin Coddington) [1315390]
-- [fs] nfs: avoid deadlocks with loop-back mounted NFS filesystems (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Enforce an upper limit on the number of cached credentials (Benjamin Coddington) [1315390]
-- [fs] nfs: Enforce an upper limit on the number of cached access call (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Fix potential memory scribble in xprt_free_bc_request() (Benjamin Coddington) [1315390]
-- [fs] sunrpc: Ensure that gss_auth isn't freed before its upcall messages (Benjamin Coddington) [1315390]
-- [fs] nfs: Use PTR_ERR_OR_ZERO in 'nfs41_callback_up' function (Benjamin Coddington) [1315390]
-- [fs] nfs: Use PTR_ERR_OR_ZERO in 'nfs/nfs4super.c' (Benjamin Coddington) [1315390]
-
-* Thu Apr 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-380.el7]
-- [netdrv] ptp: Add PTP_SYS_OFFSET_PRECISE for driver crosstimestamping (Prarit Bhargava) [1273198]
-- [x86] tsc: Always Running Timer correlated clocksource (Prarit Bhargava) [1273198]
-- [kernel] time: Add history to cross timestamp interface supporting slower devices (Prarit Bhargava) [1273198]
-- [kernel] time: Add driver cross timestamp interface for higher precision time synchronization (Prarit Bhargava) [1273198]
-- [kernel] time: Remove duplicated code in ktime_get_raw_and_real() (Prarit Bhargava) [1273198]
-- [kernel] time: Add timekeeping snapshot code capturing system time and counter (Prarit Bhargava) [1273198]
-- [kernel] time: Add cycles to nanoseconds translation (Prarit Bhargava) [1273198]
-- [kernel] timekeeping: Add timekeeping_get_delta() (Prarit Bhargava) [1273198]
-- [kernel] timekeeping: Simplify arch_gettimeoffset() (Prarit Bhargava) [1273198]
-- [kernel] time: Add timerkeeper::tkr_raw (Prarit Bhargava) [1321924]
-- [kernel] time: Rename timekeeper::tkr to timekeeper::tkr_mono (Prarit Bhargava) [1321924]
-- [kernel] timekeeping: Use tk_read_base as argument for timekeeping_get_ns() (Prarit Bhargava) [1321924]
-- [kernel] timekeeping: Create struct tk_read_base and use it in struct timekeeper (Prarit Bhargava) [1321924]
-- [kernel] timekeeping: Provide ktime_get_raw() (Prarit Bhargava) [1321924]
-- [kernel] time: Consolidate the time accessor prototypes (Prarit Bhargava) [1321924]
-- [usb] xhci: Workaround to get Intel xHCI reset working more reliably (Torez Smith) [1288941 1318570]
-- [idle] intel_idle: Add SKX support (Steve Best) [1258088]
-- [scsi] hpsa: update rev to 3.4.10-0-RH3 (Joseph Szczypek) [1296287]
-- [scsi] hpsa: check for a null phys_disk pointer in ioaccel2 path (Joseph Szczypek) [1296287]
-- [scsi] ses: fix discovery of SATA devices in SAS enclosures (Maurizio Lombardi) [1251124]
-- [scsi] scsi_transport_sas: add function to get SAS endpoint address (Maurizio Lombardi) [1251124]
-- [scsi] scsi_transport_sas: add is_sas_attached() function (Maurizio Lombardi) [1251124]
-- [scsi] ses: fix additional element traversal bug (Maurizio Lombardi) [1251124]
-- [scsi] ses: Add power_status to SES device slot (Maurizio Lombardi) [1251124]
-- [scsi] ses: add reliable slot attribute (Maurizio Lombardi) [1251124]
-- [scsi] ses: add enclosure logical id (Maurizio Lombardi) [1251124]
-- [scsi] ses: generate KOBJ_CHANGE on enclosure attach (Maurizio Lombardi) [1251124]
-- [scsi] ses: close potential registration race (Maurizio Lombardi) [1251124]
-- [scsi] add support for multiple hardware queues in scsi_(host_)find_tag (Ewan Milne) [1320306]
-- [scsi] fnic: move printk()s outside of the critical code section (Maurizio Lombardi) [1269289]
-- [tools] power turbostat: initial SKX support (Steve Best) [1273744]
-- [scripts] module: set ksymtab/kcrctab* section addresses to 0x0 (Phillip Lougher) [892004]
-- [cpufreq] powernv: Hot-plug safe the kworker thread (Steve Best) [1325776]
-- [powercap] intel_rapl: Add missing Haswell model (Steve Best) [1326231]
-
-* Wed Apr 13 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-379.el7]
-- [scripts] kbuild: create directory for dir/file.o (Jiri Olsa) [1323852]
-- [tools] perf tests: Fix attr tests (Jiri Olsa) [1323852]
-- [tools] perf stat: Fix interval output values (Jiri Olsa) [1323852]
-- [tools] perf probe: Search both .eh_frame and .debug_frame sections for probe location (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix thread lifetime related segfaut in intel_pt (Jiri Olsa) [1323852]
-- [tools] perf tools: tracepoint_error() can receive e=NULL, robustify it (Jiri Olsa) [1323852]
-- [tools] perf stat: Do not clean event's private stats (Jiri Olsa) [1323852]
-- [tools] perf hists: Fix HISTC_MEM_DCACHELINE width setting (Jiri Olsa) [1323852]
-- [tools] perf annotate browser: Fix behaviour of Shift-Tab with nothing focussed (Jiri Olsa) [1323852]
-- [tools] perf tests: Remove wrong semicolon in while loop in CQM test (Jiri Olsa) [1323852]
-- [tools] perf build: Introduce FEATURES_DUMP make variable (Jiri Olsa) [1323852]
-- [tools] perf build: Add feature-dump target (Jiri Olsa) [1323852]
-- [tools] perf build: Pass O option to kernel makefile in build-test (Jiri Olsa) [1323852]
-- [tools] perf build: Test correct path of perf in build-test (Jiri Olsa) [1323852]
-- [tools] perf build: Pass O option to Makefile.perf in build-test (Jiri Olsa) [1323852]
-- [tools] perf build: Set parallel making options build-test (Jiri Olsa) [1323852]
-- [tools] perf symbols: Fix reading of build-id from vDSO (Jiri Olsa) [1323852]
-- [tools] perf kvm record/report: 'unprocessable sample' error while recording/reporting guest data (Jiri Olsa) [1323852]
-- [tools] perf tools: Fallback to srcdir/Documentation/tips.txt (Jiri Olsa) [1323852]
-- [tools] perf ui/tui: Print helpline message as is (Jiri Olsa) [1323852]
-- [tools] perf tools: Set and pass DOCDIR to builtin-report.c (Jiri Olsa) [1323852]
-- [tools] perf tools: Add file_only config option to strlist (Jiri Olsa) [1323852]
-- [tools] perf tools: Add more usage tips (Jiri Olsa) [1323852]
-- [tools] perf record: Add --buildid-all option (Jiri Olsa) [1323852]
-- [tools] subcmd: Add missing NORETURN define for parse-options.h (Jiri Olsa) [1323852]
-- [tools] Make list.h self-sufficient (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix mmap2 event allocation in synthesize code (Jiri Olsa) [1323852]
-- [tools] perf stat: Fix recort_usage typo (Jiri Olsa) [1323852]
-- [tools] perf test: Reset err after using it hold errcode in hist testcases (Jiri Olsa) [1323852]
-- [tools] perf test: Fix false TEST_OK result for 'perf test hist' (Jiri Olsa) [1323852]
-- [tools] Move Makefile.arch from perf/config to tools/scripts (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix phony build target for build-test (Jiri Olsa) [1323852]
-- [tools] perf tools: Add -lutil in python lib list for broken python-config (Jiri Olsa) [1323852]
-- [tools] perf tools: Add missing sources to perf's MANIFEST (Jiri Olsa) [1323852]
-- [tools] perf evlist: Add --trace-fields option to show trace fields (Jiri Olsa) [1323852]
-- [tools] perf record: Store data mmaps for dwarf unwind (Jiri Olsa) [1323852]
-- [tools] perf libdw: Check for mmaps also in MAP__VARIABLE tree (Jiri Olsa) [1323852]
-- [tools] perf unwind: Check for mmaps also in MAP__VARIABLE tree (Jiri Olsa) [1323852]
-- [tools] perf unwind: Use find_map function in access_dso_mem (Jiri Olsa) [1323852]
-- [tools] perf evlist: Remove perf_evlist__(enable|disable)_event functions (Jiri Olsa) [1323852]
-- [tools] perf evlist: Make perf_evlist__open() open evsels with their cpus and threads (like perf record does) (Jiri Olsa) [1323852]
-- [tools] perf report: Show random usage tip on the help line (Jiri Olsa) [1323852]
-- [tools] perf hists: Export a couple of hist functions (Jiri Olsa) [1323852]
-- [tools] perf diff: Use perf_hpp__register_sort_field interface (Jiri Olsa) [1323852]
-- [tools] perf tools: Add overhead/overhead_children keys defaults via string (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove list entry from struct sort_entry (Jiri Olsa) [1323852]
-- [tools] perf tools: Include all tools/lib directory for tags/cscope/TAGS targets (Jiri Olsa) [1323852]
-- [tools] perf script: Align event name properly (Jiri Olsa) [1323852]
-- [tools] perf tools: Add missing headers in perf's MANIFEST (Jiri Olsa) [1323852]
-- [tools] perf tools: Do not show trace command if it's not compiled in (Jiri Olsa) [1323852]
-- [tools] perf report: Change default to use event group view (Jiri Olsa) [1323852]
-- [tools] perf top: Decay periods in callchains (Jiri Olsa) [1323852]
-- [tools] lib: Move bitmap.[ch] from tools/perf/ to tools/{lib, include}/ (Jiri Olsa) [1323852]
-- [tools] lib: Sync tools/lib/find_bit.c with the kernel (Jiri Olsa) [1323852]
-- [tools] lib: Move find_next_bit.c to tools/lib/ (Jiri Olsa) [1323852]
-- [tools] perf tests: Give a bit more information on the CQM test failure path (Jiri Olsa) [1323852]
-- [tools] perf tests: No need to set attr.sample_freq for tracking !PERF_RECORD_SAMPLE (Jiri Olsa) [1323852]
-- [tools] perf python: Add missing files to binding link list (Jiri Olsa) [1323852]
-- [tools] perf test: No need for setting attr.sample_freq on the RECORD test (Jiri Olsa) [1323852]
-- [tools] perf test: Use "dummy" events in the PERF_RECORD_ test (Jiri Olsa) [1323852]
-- [tools] perf evlist: Introduce perf_evlist__new_dummy constructor (Jiri Olsa) [1323852]
-- [tools] perf tests: No need to set attr.sample_freq in the perf time to TSC test (Jiri Olsa) [1323852]
-- [tools] perf pmu: fix alias->snapshot missing initialization bug (Jiri Olsa) [1323852]
-- [tools] perf script: Add stat-cpi.py script (Jiri Olsa) [1323852]
-- [tools] perf script: Display stat events by default (Jiri Olsa) [1323852]
-- [tools] perf cpumap: Fix cpu conversion in cpu_map__from_entries (Jiri Olsa) [1323852]
-- [tools] perf script: Add python support for stat events (Jiri Olsa) [1323852]
-- [tools] perf script: Add stat default handlers (Jiri Olsa) [1323852]
-- [tools] perf script: Add process_stat/process_stat_interval scripting interface (Jiri Olsa) [1323852]
-- [tools] perf script: Process stat config event (Jiri Olsa) [1323852]
-- [tools] perf script: Process cpu/threads maps (Jiri Olsa) [1323852]
-- [tools] perf stat record: Keep sample_type 0 for pipe session (Jiri Olsa) [1323852]
-- [tools] perf report: Add documentation for dynamic sort keys (Jiri Olsa) [1323852]
-- [tools] perf tools: Add all matching dynamic sort keys for field name (Jiri Olsa) [1323852]
-- [tools] build feature: Use value assignment form for FEATURE-DUMP file (Jiri Olsa) [1323852]
-- [tools] build feature: Introduce feature_assign macro (Jiri Olsa) [1323852]
-- [tools] build feature: Move dwarf post unwind choice output into perf (Jiri Olsa) [1323852]
-- [tools] build feature: Fix feature_check_display_code typo (Jiri Olsa) [1323852]
-- [tools] perf tools: Make 'trace' or 'trace_fields' sort key default for tracepoint events (Jiri Olsa) [1323852]
-- [tools] perf tools: Add 'trace_fields' dynamic sort key (Jiri Olsa) [1323852]
-- [tools] perf tools: Skip dynamic fields not defined for current event (Jiri Olsa) [1323852]
-- [tools] perf tools: Support '<event>.*' dynamic sort key (Jiri Olsa) [1323852]
-- [tools] perf tools: Support shortcuts for events in dynamic sort keys (Jiri Olsa) [1323852]
-- [tools] perf report/top: Add --raw-trace option (Jiri Olsa) [1323852]
-- [tools] perf tools: Add 'trace' sort key (Jiri Olsa) [1323852]
-- [tools] perf tools: Try to show pretty printed output for dynamic sort keys (Jiri Olsa) [1323852]
-- [tools] perf tools: Add dynamic sort key for tracepoint events (Jiri Olsa) [1323852]
-- [tools] perf tools: Pass evlist to setup_sorting() (Jiri Olsa) [1323852]
-- [tools] perf top: Create the evlist sooner (Jiri Olsa) [1323852]
-- [tools] lib traceevent: Factor out and export print_event_field[s]() (Jiri Olsa) [1323852]
-- [tools] perf hist: Save raw_data/size for tracepoint events (Jiri Olsa) [1323852]
-- [tools] perf hist: Pass struct sample to __hists__add_entry() (Jiri Olsa) [1323852]
-- [tools] perf stat report: Allow to override aggr_mode (Jiri Olsa) [1323852]
-- [tools] perf stat report: Process event update events (Jiri Olsa) [1323852]
-- [tools] perf stat report: Process stat and stat round events (Jiri Olsa) [1323852]
-- [tools] perf stat report: Move csv_sep initialization before report command (Jiri Olsa) [1323852]
-- [tools] perf stat report: Add support to initialize aggr_map from file (Jiri Olsa) [1323852]
-- [tools] perf stat report: Process stat config event (Jiri Olsa) [1323852]
-- [tools] perf stat report: Process cpu/threads maps (Jiri Olsa) [1323852]
-- [tools] perf stat report: Add report command (Jiri Olsa) [1323852]
-- [tools] perf stat record: Synthesize event update events (Jiri Olsa) [1323852]
-- [tools] perf stat record: Do not allow record with multiple runs mode (Jiri Olsa) [1323852]
-- [tools] perf stat record: Write stat round events on record (Jiri Olsa) [1323852]
-- [tools] perf stat record: Write stat events on record (Jiri Olsa) [1323852]
-- [tools] perf stat record: Add pipe support for record command (Jiri Olsa) [1323852]
-- [tools] perf stat record: Store events IDs in perf data file (Jiri Olsa) [1323852]
-- [tools] perf evlist: Export id_add_fd() (Jiri Olsa) [1323852]
-- [tools] perf stat record: Synthesize stat record data (Jiri Olsa) [1323852]
-- [tools] perf stat record: Initialize record features (Jiri Olsa) [1323852]
-- [tools] perf stat record: Add record command (Jiri Olsa) [1323852]
-- [tools] perf tools: Introduce stat perf.data header feature (Jiri Olsa) [1323852]
-- [tools] perf report: Display newly added events in raw dump (Jiri Olsa) [1323852]
-- [tools] perf tools: Add perf_event__fprintf_event_update function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update event cpus type (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update event name type (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update event scale type (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update event unit type (Jiri Olsa) [1323852]
-- [tools] perf tools: Add event_update user level event (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat events fprintf functions (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat round event synthesize function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat round user level event (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat event read function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat event synthesize function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat user level event (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat config event read function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat config event synthesize function (Jiri Olsa) [1323852]
-- [tools] perf tools: Add stat config user level event (Jiri Olsa) [1323852]
-- [tools] perf cpu_map: Add perf_event__fprintf_cpu_map function (Jiri Olsa) [1323852]
-- [tools] perf cpu_map: Add cpu_map__new_event function (Jiri Olsa) [1323852]
-- [tools] perf cpu_map: Add cpu_map event synthesize function (Jiri Olsa) [1323852]
-- [tools] perf cpu_map: Add cpu_map user level event (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Add perf_event__fprintf_thread_map function (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Add thread_map__new_event function (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Add thread_map event sythesize function (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Add thread_map user level event (Jiri Olsa) [1323852]
-- [tools] subcmd: Rename subcmd header include guards (Jiri Olsa) [1323852]
-- [tools] perf subcmd: Create subcmd library (Jiri Olsa) [1323852]
-- [tools] perf tools: Finalize subcmd independence (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove 'perf' from subcmd function and variable names (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove subcmd dependencies on strbuf (Jiri Olsa) [1323852]
-- [tools] perf tools: Provide subcmd configuration at runtime (Jiri Olsa) [1323852]
-- [tools] perf tools: Document the fact that parse_options*() may exit (Jiri Olsa) [1323852]
-- [tools] perf tools: Move strlcpy() from perf to tools/lib/string.c (Jiri Olsa) [1323852]
-- [tools] build: Fix feature Makefile issues with 'O=' (Jiri Olsa) [1323852]
-- [tools] perf record: Add record.build-id config option (Jiri Olsa) [1323852]
-- [tools] perf tools: Make options always available, even if required libs not linked (Jiri Olsa) [1323852]
-- [tools] perf tools: Convert parse-options.c internal functions to static (Jiri Olsa) [1323852]
-- [tools] perf tools: Move help_unknown_cmd() to its own file (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove check for unused PERF_PAGER_IN_USE (Jiri Olsa) [1323852]
-- [tools] perf tools: Create pager.h (Jiri Olsa) [1323852]
-- [tools] perf build: Rename LIB_PATH -> API_PATH (Jiri Olsa) [1323852]
-- [tools] perf build: Fix 'make clean' (Jiri Olsa) [1323852]
-- [tools] perf test: Remove tarpkg at end of test (Jiri Olsa) [1323852]
-- [tools] perf build: Remove unnecessary line in Makefile.feature (Jiri Olsa) [1323852]
-- [tools] perf test: Fix hist testcases when kptr_restrict is on (Jiri Olsa) [1323852]
-- [tools] perf thread: Fix reference count initial state (Jiri Olsa) [1323852]
-- [tools] perf test: Dump the stack when test segfaults when in verbose mode (Jiri Olsa) [1323852]
-- [tools] perf tools: Use same signal handling strategy as 'record' (Jiri Olsa) [1323852]
-- [tools] perf tools: Clear struct machine during machine__init() (Jiri Olsa) [1323852]
-- [tools] perf script: Add support for PERF_TYPE_BREAKPOINT (Jiri Olsa) [1323852]
-- [tools] perf data: Add u32_hex data type (Jiri Olsa) [1323852]
-- [tools] perf top: Cleanup condition in perf_top__record_precise_ip() (Jiri Olsa) [1323852]
-- [tools] perf top: Fix annotation on --stdio (Jiri Olsa) [1323852]
-- [tools] perf top: Access hists->lock only if needed (Jiri Olsa) [1323852]
-- [tools] perf top: Do not convert address for perf_top__record_precise_ip() (Jiri Olsa) [1323852]
-- [tools] perf symbols: Fix dso__load_sym to put dso (Jiri Olsa) [1323852]
-- [tools] perf tools: Make perf_session__register_idle_thread drop the refcount (Jiri Olsa) [1323852]
-- [tools] revert "perf tools: Improve setting of gcc debug option" (Jiri Olsa) [1323852]
-- [tools] perf top: Delete half-processed hist entries when exit (Jiri Olsa) [1323852]
-- [tools] perf tools: Get rid of exit_browser() from usage_with_options() (Jiri Olsa) [1323852]
-- [tools] perf thread_map: Free strlist on constructor error path (Jiri Olsa) [1323852]
-- [tools] perf top: Do show usage message when failing to create cpu/thread maps (Jiri Olsa) [1323852]
-- [tools] perf report: Check argument before calling setup_browser() (Jiri Olsa) [1323852]
-- [tools] perf kvm: Remove invocation of setup/exit_browser() (Jiri Olsa) [1323852]
-- [tools] perf annotate: Delay UI browser setup after initialization is done (Jiri Olsa) [1323852]
-- [tools] perf annotate: Check argument before calling setup_browser() (Jiri Olsa) [1323852]
-- [tools] perf tools: Move cmd_version() to builtin-version.c (Jiri Olsa) [1323852]
-- [tools] perf tools: Save cmdline arguments earlier (Jiri Olsa) [1323852]
-- [tools] perf tools: Move term functions out of util.c (Jiri Olsa) [1323852]
-- [tools] perf tools: Remove unused pager_use_color variable (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix write_numa_topology to put cpu_map instead of free (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix machine.vmlinux_maps to make sure to clear the old one (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix maps__fixup_overlappings to put used maps (Jiri Olsa) [1323852]
-- [tools] perf hists: Fix hists_evsel to release hists (Jiri Olsa) [1323852]
-- [tools] perf stat: Fix cmd_stat to release cpu_map (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix map_groups__clone to put cloned map (Jiri Olsa) [1323852]
-- [tools] perf tui: Change default selection background color to yellow (Jiri Olsa) [1323852]
-- [tools] perf annotate: ARM support (Jiri Olsa) [1323852]
-- [tools] perf stat: Move enable_on_exec setup under earlier code (Jiri Olsa) [1323852]
-- [tools] perf stat: Create events as disabled (Jiri Olsa) [1323852]
-- [tools] perf stat: Use perf_evlist__enable in handle_initial_delay (Jiri Olsa) [1323852]
-- [tools] perf evlist: Factor perf_evlist__(enable|disable) functions (Jiri Olsa) [1323852]
-- [tools] perf evsel: Introduce disable() method (Jiri Olsa) [1323852]
-- [tools] perf evsel: Use event maps directly in perf_evsel__enable (Jiri Olsa) [1323852]
-- [tools] perf test: Create kernel maps properly for hist entries test (Jiri Olsa) [1323852]
-- [tools] perf test: Prevent using bpf-output event in round trip name test (Jiri Olsa) [1323852]
-- [tools] perf test: Fix cpus and thread maps reference in error path (Jiri Olsa) [1323852]
-- [tools] perf test: Use machine__new_host in mmap thread code reading test (Jiri Olsa) [1323852]
-- [tools] perf test: Use machine__new_host in mmap thread lookup test (Jiri Olsa) [1323852]
-- [tools] perf test: Use machine__new_host in dwarf unwind test (Jiri Olsa) [1323852]
-- [tools] perf machine: Pass correct string to dso__adjust_kmod_long_name (Jiri Olsa) [1323852]
-- [tools] perf hists browser: Update nr entries regardless of min percent (Jiri Olsa) [1323852]
-- [tools] perf hists: Do not skip elided fields when processing samples (Jiri Olsa) [1323852]
-- [tools] perf report: Show error message when processing sample fails (Jiri Olsa) [1323852]
-- [tools] perf list: Robustify event printing routine (Jiri Olsa) [1323852]
-- [tools] perf test: 'unwind' test should create kernel maps (Jiri Olsa) [1323852]
-- [tools] perf evlist: Display WEIGHT sample type bit (Jiri Olsa) [1323852]
-- [tools] perf stat: Clear sample_(type|period) for counting (Jiri Olsa) [1323852]
-- [tools] perf symbols: Add the path to vmlinux.debug (Jiri Olsa) [1323852]
-- [tools] perf symbols: Refactor vmlinux_path__init() to ease path additions (Jiri Olsa) [1323852]
-- [tools] build: Use fixdep with OUTPUT path prefix (Jiri Olsa) [1323852]
-- [tools] perf script: Pass perf_script into process_event (Jiri Olsa) [1323852]
-- [tools] perf tools: Correctly identify anon_hugepage when generating map (v2) (Jiri Olsa) [1323852]
-- [tools] perf machine: Adjust dso->long_name for offline module (Jiri Olsa) [1323852]
-- [tools] perf build: Fix traceevent plugins build race (Jiri Olsa) [1323852]
-- [tools] perf script: Remove default_scripting_ops (Jiri Olsa) [1323852]
-- [tools] perf top: Fix freeze on --call-graph flat/folded (Jiri Olsa) [1323852]
-- [tools] perf callchain: Honor hide_unresolved (Jiri Olsa) [1323852]
-- [tools] build: Clean CFLAGS and LDFLAGS for fixdep (Jiri Olsa) [1323852]
-- [tools] perf probe: Fix to free temporal Dwarf_Frame correctly (Jiri Olsa) [1323852]
-- [tools] lib traceevent: Fix output of llu for 64 bit values read on 32 bit machines (Jiri Olsa) [1323852]
-- [tools] perf callchain: Add missing parent_val initialization (Jiri Olsa) [1323852]
-- [tools] perf config: Add initial man page (Jiri Olsa) [1323852]
-- [tools] perf tools: Add 'perf config' command (Jiri Olsa) [1323852]
-- [tools] perf callchain: Add order support for libdw DWARF unwinder (Jiri Olsa) [1323852]
-- [tools] perf test: Add callchain order setup for DWARF unwinder test (Jiri Olsa) [1323852]
-- [tools] perf callchain: Add order support for libunwind DWARF unwinder (Jiri Olsa) [1323852]
-- [tools] perf callchain: Move initial entry call into get_entries function (Jiri Olsa) [1323852]
-- [tools] perf ui/gtk: Support folded callchains (Jiri Olsa) [1323852]
-- [tools] perf ui/gtk: Support flat callchains (Jiri Olsa) [1323852]
-- [tools] perf hists browser: Support folded callchains (Jiri Olsa) [1323852]
-- [tools] perf hists browser: Support flat callchains (Jiri Olsa) [1323852]
-- [tools] perf hists browser: Factor out hist_browser__show_callchain_list() (Jiri Olsa) [1323852]
-- [tools] perf report: Add callchain value option (Jiri Olsa) [1323852]
-- [tools] perf callchain: Add count fields to struct callchain_node (Jiri Olsa) [1323852]
-- [tools] perf callchain: Abstract callchain print function (Jiri Olsa) [1323852]
-- [tools] perf report: Support folded callchain mode on --stdio (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix machine__findnew_module_map to put dso (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix machine__create_kernel_maps to put kernel dso refcount (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix __dsos__addnew to put dso after adding it to the list (Jiri Olsa) [1323852]
-- [tools] perf tools: Fix to put new map after inserting to map_groups in dso__load_sym (Jiri Olsa) [1323852]
-- [tools] perf tools: Make perf_exec_path() always return malloc'd string (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix to destroy kernel maps when machine exits (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix machine__destroy_kernel_maps to drop vmlinux_maps references (Jiri Olsa) [1323852]
-- [tools] perf machine: Fix machine__findnew_module_map to put registered map (Jiri Olsa) [1323852]
-- [tools] perf probe: Fix to free temporal Dwarf_Frame (Jiri Olsa) [1323852]
-- [tools] perf test: Mute test cases error messages if verbose == 0 (Jiri Olsa) [1323852]
-- [tools] perf tests: Pass the subtest index to each test routine (Jiri Olsa) [1323852]
-- [tools] Clone the kernel's strtobool function (Jiri Olsa) [1323852]
-- [tools] Adopt memdup() from tools/perf, moving it to tools/lib/string.c (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Fix PEBS data source interpretation on Nehalem/Westmere (Jiri Olsa) [1323852]
-- [x86] perf/x86/pebs: Add proper PEBS constraints for Broadwell (Jiri Olsa) [1323852]
-- [x86] perf/x86/pebs: Add workaround for broken OVFL status on HSW+ (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Add definition for PT PMI bit (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Fix PEBS warning by only restoring active PMU in pmi (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Use PAGE_SIZE for PEBS buffer size on Core2 (Jiri Olsa) [1323852]
-- [x86] perf/x86/uncore: Fix build on UP-IOAPIC configs (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/cqm: Get rid of the silly for_each_cpu() lookups (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Make PCI and MSR uncore independent (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Clear all hardware state on exit (Jiri Olsa) [1323852]
-- [x86] perf/x86/uncore: Track packages, not per CPU data (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Store box in event->pmu_private (Jiri Olsa) [1323852]
-- [x86] perf/x86/uncore: Make uncore_pcibus_to_physid() static (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Make code more readable (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Clean up hardware on exit (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Add sanity checks for PCI dev package id (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Fix error handling (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Simplify error rollback (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Remove pointless mask check (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel/uncore: Remove SBOX support for BDX-DE (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event.h to its new home (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_p6.c ............... => x86/events/intel/p6.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_p4.c ............... => x86/events/intel/p4.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_knc.c .............. => x86/events/intel/knc.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_uncore_snbep.c => x86/events/intel/uncore_snbep.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_uncore_snb.c => x86/events/intel/uncore_snb.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_uncore_nhmex.c => x86/events/intel/uncore_nmhex.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_uncore.[ch] .. => x86/events/intel/uncore.[ch] (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_rapl.c ....... => x86/events/intel/rapl.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_pt.[ch] ...... => x86/events/intel/pt.[ch] (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_lbr.c ........ => x86/events/intel/lbr.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_ds.c ......... => x86/events/intel/ds.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_cqm.c ........ => x86/events/intel/cqm.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel.c ............ => x86/events/intel/core.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_intel_bts.c ........ => x86/events/intel/bts.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_amd_uncore.c .... => x86/events/amd/uncore.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_amd_ibs.c ....... => x86/events/amd/ibs.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event_amd.c ........... => x86/events/amd/core.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: Move perf_event.c ............... => x86/events/core.c (Jiri Olsa) [1323852]
-- [x86] perf/x86: De-obfuscate code (Jiri Olsa) [1323852]
-- [x86] perf/x86: add Intel SkyLake uncore IMC PMU support (Jiri Olsa) [1323852]
-- [x86] perf/x86/amd: Remove l1-dcache-stores event for AMD (Jiri Olsa) [1323852]
-- [x86] perf/x86/rapl: Use unified perf_event_sysfs_show instead of special interface (Jiri Olsa) [1323852]
-- [x86] perf/x86: Enable cycles:pp for Intel Atom (Jiri Olsa) [1323852]
-- [x86] perf/x86: fix PEBS issues on Intel Atom/Core2 (Jiri Olsa) [1323852]
-- [x86] perf/x86: Fix filter_events() bug with event mappings (Jiri Olsa) [1323852]
-- [x86] perf/x86: use inst_retired.prec_dist for cycles: ppp (Jiri Olsa) [1323852]
-- [x86] perf/x86: Use INST_RETIRED.TOTAL_CYCLES_PS for cycles:pp for Skylake (Jiri Olsa) [1323852]
-- [x86] perf/x86: Allow zero PEBS status with only single active event (Jiri Olsa) [1323852]
-- [x86] perf/x86: Remove warning for zero PEBS status (Jiri Olsa) [1323852]
-- [x86] perf/x86: Remove old MSR perf tracing code (Jiri Olsa) [1323852]
-- [x86] perf/x86/intel: Fix __initconst declaration in the RAPL perf driver (Jiri Olsa) [1323852]
-- [x86] perf/x86: Handle multiple umask bits for BDW CYCLE_ACTIVITY.* (Jiri Olsa) [1323852]
-- [kernel] perf: Synchronously free aux pages in case of allocation failure (Jiri Olsa) [1323852]
-- [kernel] perf: Remove stale comment (Jiri Olsa) [1323852]
-- [kernel] perf: Fix cgroup scheduling in perf_enable_on_exec() (Jiri Olsa) [1323852]
-- [kernel] perf: Fix cgroup event scheduling (Jiri Olsa) [1323852]
-- [kernel] perf: Add lockdep assertions (Jiri Olsa) [1323852]
-- [kernel] perf/core: Collapse more IPI loops (Jiri Olsa) [1323852]
-- [kernel] perf/core: Collapse common IPI pattern (Jiri Olsa) [1323852]
-
-* Wed Apr 13 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-378.el7]
-- [drm] vmwgfx: respect 'nomodeset' (Rob Clark) [1284936]
-- [mm] export page_wakeup functions (Benjamin Coddington) [1315327]
-- [kernel] sched/wait: Fix the signal handling fix (Benjamin Coddington) [1315327]
-- [kernel] sched/wait: Fix signal handling in bit wait helpers (Benjamin Coddington) [1315327]
-- [kernel] sched: add some "wait..on_bit...timeout()" interfaces (Benjamin Coddington) [1315327]
-- [kernel] sched: Allow wait_on_bit_action() functions to support a timeout (Benjamin Coddington) [1315327]
-- [fs] cifs: remove unused function cifs_oplock_break_wait (Benjamin Coddington) [1315327]
-- [kernel] sched: Remove proliferation of wait_on_bit() action functions (Benjamin Coddington) [1315327]
-- [iommu] vt-d: Create RMRR mappings in newly allocated domains (Myron Stowe) [1311267]
-- [iommu] vt-d: Split iommu_prepare_identity_map (Myron Stowe) [1311267]
-- [iommu] vt-d: Move context-mapping into dmar_insert_dev_info (Myron Stowe) [1311267]
-- [iommu] vt-d: Calculate translation in domain_context_mapping_one (Myron Stowe) [1311267]
-- [x86] mm: suitable memory should go to ZONE_MOVABLE (Igor Mammedov) [1265880]
-- [mm] memory-hotplug: add zone_for_memory() for selecting zone for new memory (Igor Mammedov) [1265880]
-- [s390] mm: Fix memory hotplug for unaligned standby memory (Igor Mammedov) [1265880]
-- [mm] memory-hotplug: Remove "weak" from memory_block_size_bytes() declaration (Igor Mammedov) [1265880]
-- [mm] Add prototype declaration to the header file (Igor Mammedov) [1265880]
-- [mm] hotplug: verify hotplug memory range (Igor Mammedov) [1265880]
-- [fs] /proc/pid/smaps: show VM_SOFTDIRTY flag in VmFlags line (Oleg Nesterov) [1269561]
-- [mm] softdirty: enable write notifications on VMAs after VM_SOFTDIRTY cleared (Oleg Nesterov) [1269561]
-- [fs] mm: softdirty: clear VM_SOFTDIRTY flag inside clear_refs_write() instead of clear_soft_dirty() (Oleg Nesterov) [1269561]
-- [mm] memory.c: don't forget to set softdirty on file mapped fault (Oleg Nesterov) [1269561]
-- [mm] softdirty: don't forget to save file map softdiry bit on unmap (Oleg Nesterov) [1269561]
-- [mm] softdirty: make freshly remapped file pages being softdirty unconditionally (Oleg Nesterov) [1269561]
-- [x86] mm: don't lose the SOFT_DIRTY flag on mprotect (Oleg Nesterov) [1269561]
-- [mm] ignore VM_SOFTDIRTY on VMA merging (Oleg Nesterov) [1269561]
-- [fs] mm: /proc/pid/pagemap: inspect _PAGE_SOFT_DIRTY only on present pages (Oleg Nesterov) [1269561]
-- [mm] track vma changes with VM_SOFTDIRTY bit (Oleg Nesterov) [1269561]
-- [mm] migration: do not lose soft dirty bit if page is in migration state (Oleg Nesterov) [1269561]
-- [mm] move_ptes -- Set soft dirty bit depending on pte type (Oleg Nesterov) [1269561]
-- [mm] save soft-dirty bits on file pages (Oleg Nesterov) [1269561]
-- [mm] save soft-dirty bits on swapped pages (Oleg Nesterov) [1269561]
-- [fs] pagemap: prepare to reuse constant bits with page-shift (Oleg Nesterov) [1269561]
-- [mm] soft-dirty bits for user memory changes tracking (Oleg Nesterov) [1269561]
-- [fs] pagemap: introduce pagemap_entry_t without pmshift bits (Oleg Nesterov) [1269561]
-- [fs] clear_refs: introduce private struct for mm_walk (Oleg Nesterov) [1269561]
-- [fs] clear_refs: sanitize accepted commands declaration (Oleg Nesterov) [1269561]
-- [x86] Revert the PAGE_BIT_SOFTDIRTY part from "mm: add memory tracking hooks" (Oleg Nesterov) [1269561]
-- [i2c] i801: Add support for Intel DNV (Steve Best) [1322042]
-- [scsi] ibmvfc: byteswap scsi_id, wwpn, and node_name prior to logging (Steve Best) [1322913]
-- [netdrv] qmi_wwan: should hold RTNL while changing netdev type (Lubomir Rintel) [1322870]
-- [netdrv] qmi_wwan: support "raw IP" mode (Lubomir Rintel) [1322870]
-- [netdrv] mlx4_en: Fix IRQ affinity on s390x (Kamal Heib) [1264148 1287146]
-
-* Tue Apr 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-377.el7]
-- [x86] irq: Cleanup ordering of vector numbers (Kim Naru) [1134596]
-- [x86] acpi: Disable ACPI table override if securelevel is set (Lenny Szubowicz) [1316304]
-- [pci] acpi: Optimize device state transition delays (Rui Wang) [1225272]
-- [pci] acpi: Install wakeup notify handlers for all PCI devs with ACPI (Rui Wang) [1225272]
-- [pci] Export pci_find_host_bridge() for use inside PCI core (Rui Wang) [1225272]
-- [pci] Make a shareable UUID for PCI firmware ACPI _DSM (Rui Wang) [1225272]
-- [ata] ahci: Intel DNV device IDs SATA (David Arcari) [1288612]
-- [acpi] processor: Request native thermal interrupt handling via _OSC (David Arcari) [1322158]
-- [acpi] pnp: add two IDs to list for PNPACPI device enumeration (David Arcari) [1320823]
-- [acpi] pnp: remove Fujitsu device IDs from ACPI PNP ID list (David Arcari) [1320823]
-- [acpi] pnp: Replace faulty is_hex_digit() by isxdigit() (David Arcari) [1320823]
-- [acpi] pnp: add soc_button_array device ID to PNP IDs list (David Arcari) [1320823]
-- [acpi] scan: drop unsupported serial IDs from PNP ACPI scan handler ID list (David Arcari) [1320823]
-- [acpi] scan: drop IDs that do not comply with the ACPI PNP ID rule (David Arcari) [1320823]
-- [acpi] scan: Allow ACPI drivers to bind to PNP device objects (David Arcari) [1320823]
-- [acpi] pnp: use device ID list for PNPACPI device enumeration (David Arcari) [1320823]
-- [acpi] scan: .match() callback for ACPI scan handlers (David Arcari) [1320823]
-- [vfio] Enable No-IOMMU option for RHEL (Alex Williamson) [1299662 1322577]
-- [vfio] fix ioctl error handling (Alex Williamson) [1299662 1322577]
-- [vfio] iommu_type1: make use of info.flags (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Fix unsigned comparison overflow (Alex Williamson) [1299662 1322577]
-- [vfio] noiommu: Don't use iommu_present() to track fake groups (Alex Williamson) [1299662 1322577]
-- [vfio] Include No-IOMMU mode (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Use kernel VPD access functions (Alex Williamson) [1299662 1322577]
-- [vfio] Whitelist PCI bridges (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Remove warning if try-reset fails (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Fix use after free (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Allow PCI IDs to be specified as module options (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Add VGA arbiter client (Alex Williamson) [1299662 1322577]
-- [vfio] pci: Add module option to disable VGA region access (Alex Williamson) [1299662 1322577]
-
-* Mon Apr 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-376.el7]
-- [hv] vmbus: Support handling messages on multiple CPUs (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: don't loose HVMSG_TIMER_EXPIRED messages (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: avoid infinite loop in init_vp_index() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Add vendor and device atttributes (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Cleanup vmbus_set_event() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Treat Fibre Channel devices as performance critical (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: fix the building warning with hyperv-keyboard (Vitaly Kuznetsov) [1321073]
-- [hv] replace enum hv_message_type by u32 (Vitaly Kuznetsov) [1321073]
-- [hv] ring_buffer: eliminate hv_ringbuffer_peek() (Vitaly Kuznetsov) [1321073]
-- [hv] remove code duplication between vmbus_recvpacket()/vmbus_recvpacket_raw() (Vitaly Kuznetsov) [1321073]
-- [hv] ring_buffer: remove code duplication from hv_ringbuffer_peek/read() (Vitaly Kuznetsov) [1321073]
-- [hv] ring_buffer: remove stray smp_read_barrier_depends() (Vitaly Kuznetsov) [1321073]
-- [hv] ring_buffer: fix comment style (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Force all channel messages to be delivered on CPU 0 (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Fix a Host signaling bug (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: briefly comment num_sc and next_oc (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: channge vmbus_connection.channel_lock to mutex (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: release relid on error in vmbus_process_offer() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: fix rescind-offer handling for device without a driver (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: do sanity check of channel state in vmbus_close_internal() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: serialize process_chn_event() and vmbus_close_internal() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Use uuid_le_cmp() for comparing GUIDs (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Use uuid_le type consistently (Vitaly Kuznetsov) [1321073]
-- [hv] Define the channel type for Hyper-V PCI Express pass-through (Vitaly Kuznetsov) [1321073]
-- [hv] Export the API to invoke a hypercall on Hyper-V (Vitaly Kuznetsov) [1321073]
-- [hv] Export a function that maps Linux CPU num onto Hyper-V proc num (Vitaly Kuznetsov) [1321073]
-- [hv] cleanup synic msrs if vmbus connect failed (Vitaly Kuznetsov) [1321073]
-- [hv] share Hyper-V SynIC constants with userspace (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: fix init_vp_index() for reloading hv_netvsc (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: add a sysfs attr to show the binding of channel/VP (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Fix signal to host condition (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Further improve CPU affiliation logic (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Improve the CPU affiliation for channels (Vitaly Kuznetsov) [1321073]
-- [hv] Move MMIO range picking from hyper_fb to hv_vmbus (Vitaly Kuznetsov) [1321073]
-- [hv] Modify hv_vmbus to search for all MMIO ranges available (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Consider ND NIC in binding channels to CPUs (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: fix typo in hv_port_info struct (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Permit sending of packets without payload (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Allocate ring buffer memory in NUMA aware fashion (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Implement NUMA aware CPU affinity for channels (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Use the vp_index map even for channels bound to CPU 0 (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: distribute subchannels among all vcpus (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: move init_vp_index() call to vmbus_process_offer() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: decrease num_sc on subchannel removal (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: unify calls to percpu_channel_enq() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: remove the redundant free_channel() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Add gradually increased delay for retries in vmbus_post_msg() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Fix a siganlling host signalling issue (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Export the vmbus_sendpacket_pagebuffer_ctl() (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Suport an API to send packet with additional control (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Suport an API to send pagebuffers with additional control (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Use a round-robin algorithm for picking the outgoing channel (Vitaly Kuznetsov) [1321073]
-- [hv] vmbus: Add support for the NetworkDirect GUID (Vitaly Kuznetsov) [1321073]
-- [hv] channel: match var type to return type of wait_for_completion (Vitaly Kuznetsov) [1321073]
-- [hv] make uuid_le const (Vitaly Kuznetsov) [1321073]
-- [kernel] clocksource: Allow unregistering the watchdog (Cathy Avery) [1300325]
-- [hv] correct tsc page sequence invalid value (Cathy Avery) [1300325]
-- [hv] vmbus: fix build warning (Cathy Avery) [1300325]
-- [hv] vmbus: Implement a clocksource based on the TSC page (Cathy Avery) [1300325]
-- [kernel] clocksource: Reselect clocksource when watchdog validated high-res capability (Cathy Avery) [1300325]
-
-* Fri Apr 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-375.el7]
-- [x86] kABI fix (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix load xsave feature warning (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Fix vmwrite to SECONDARY_VM_EXEC_CONTROL (Paolo Bonzini) [1301888]
-- [iommu] vt-d: Use cmpxchg16b to update posted format IRTE atomically (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: move tracepoints outside extended quiescent state (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: mmu: always set accessed bit in shadow PTEs (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: expose MSR_TSC_AUX to userspace (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Reload pit counters for all channels when restoring state (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: rename update_db_bp_intercept to update_bp_intercept (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix root cause for missed hardware breakpoints (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix missed hardware breakpoints (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Update tsc multiplier on change (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Dump TSC multiplier in dump_vmcs() (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Use a scaled host TSC for guest readings of MSR_IA32_TSC (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Setup TSC scaling ratio when a vcpu is loaded (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Enable and initialize VMX TSC scaling (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Use the correct vcpu's TSC rate to compute time scale (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Move TSC scaling logic out of call-back read_l1_tsc() (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Move TSC scaling logic out of call-back adjust_tsc_offset() (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Replace call-back compute_tsc_offset() with a common function (Paolo Bonzini) [1301888]
-- [include] kvm: x86: Replace call-back set_tsc_khz() with a common function (Paolo Bonzini) [1301888]
-- [include] kvm: x86: Add a common TSC scaling function (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Add a common TSC scaling ratio field in kvm_vcpu_arch (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Replace __get_cpu_var uses (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Collect information for setting TSC scaling ratio (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: declare a few variables as __read_mostly (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: merge handle_mmio_page_fault and handle_mmio_page_fault_common (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: fix SMEP and SMAP without EPT (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: zero apic_arb_prio on reset (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: removing unused variable (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: move steal time initialization to vcpu entry time (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: manually unroll bad_mt_xwr loop (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: remove incorrect vpid check in nested invvpid emulation (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: expose VPID capability to L1 (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: nested VPID emulation (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: emulate the INVVPID instruction (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: introduce __vmx_flush_tlb to handle specific vpid (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: adjust interface to allocate/free_vpid (Paolo Bonzini) [1301888]
-- [virt] kvm: fix waitqueue_active without memory barrier in virt/kvm/async_pf.c (Paolo Bonzini) [1301888]
-- [virt] kvm: Update Posted-Interrupts Descriptor when vCPU is blocked (Paolo Bonzini) [1301888]
-- [x86] kvm: Update Posted-Interrupts Descriptor when vCPU is preempted (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: fix build without CONFIG_SMP (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: select IRQ_BYPASS_MANAGER (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Update IRTE for posted-interrupts (Paolo Bonzini) [1301888]
-- [x86] kvm: make kvm_set_msi_irq() public (Paolo Bonzini) [1301888]
-- [x86] kvm: Define a new interface kvm_intr_is_single_vcpu() (Paolo Bonzini) [1301888]
-- [x86] kvm: Add some helper functions for Posted-Interrupts (Paolo Bonzini) [1301888]
-- [x86] kvm: Extend struct pi_desc for VT-d Posted-Interrupts (Paolo Bonzini) [1301888]
-- [virt] kvm: Add an arch specific hooks in 'struct kvm_kernel_irqfd' (Paolo Bonzini) [1301888]
-- [virt] kvm: eventfd: add irq bypass consumer management (Paolo Bonzini) [1301888]
-- [virt] kvm: introduce kvm_arch functions for IRQ bypass (Paolo Bonzini) [1301888]
-- [virt] kvm: create kvm_irqfd.h (Paolo Bonzini) [1301888]
-- [virt] kvm: count number of assigned devices (Paolo Bonzini) [1301888]
-- [virt] kvm: make struct kvm_irq_routing_table public (Paolo Bonzini) [1301888]
-- [vfio] Register/unregister irq_bypass_producer (Paolo Bonzini) [1301888]
-- [virt] IRQ bypass manager (Paolo Bonzini) [1301888]
-- [virt] Add virt directory to the top Makefile (Paolo Bonzini) [1301888]
-- [x86] irq: Show statistics information for posted-interrupts (Paolo Bonzini) [1301888]
-- [x86] irq: Define a global vector for VT-d Posted-Interrupts (Paolo Bonzini) [1301888]
-- [iommu]  x86: Implement irq_set_vcpu_affinity for intel_ir_chip (Paolo Bonzini) [1301888]
-- [iommu] x86: Avoid migrating VT-d posted interrupts (Paolo Bonzini) [1301888]
-- [iommu] x86: Save the mode (posted or remapped) of an IRTE (Paolo Bonzini) [1301888]
-- [iommu] x86: cache IRTE in struct irq_2_iommu (Paolo Bonzini) [1301888]
-- [iommu] genirq: Introduce irq_set_vcpu_affinity() to target an interrupt to a VCPU (Paolo Bonzini) [1301888]
-- [include] iommu: dmar: Provide helper to copy shared irte fields (Paolo Bonzini) [1301888]
-- [include] iommu: dmar: Extend struct irte for VT-d Posted-Interrupts (Paolo Bonzini) [1301888]
-- [include] iommu, x86: Add cap_pi_support() to detect VT-d PI capability (Paolo Bonzini) [1301888]
-- [iommu] x86: Provide irq_remapping_cap() interface (Paolo Bonzini) [1301888]
-- [iommu] Add new member capability to struct irq_remap_ops (Paolo Bonzini) [1301888]
-- [iommu] x86: Setup Posted-Interrupts capability for Intel iommu (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Fix host initiated access to guest MSR_TSC_AUX (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: drop rdtscp_enabled field (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: clean up bit operation on SECONDARY_VM_EXEC_CONTROL (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Fix commit which broke PML (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: unify SECONDARY_VM_EXEC_CONTROL update (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: align vmx->nested.nested_vmx_secondary_ctls_high to vmx->rdtscp_enabled (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: simplify invpcid handling in vmx_cpuid_update() (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: simplify rdtscp handling in vmx_cpuid_update() (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: drop rdtscp_enabled check in prepare_vmcs02() (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: add pcommit support (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: allow guest to use cflushopt and clwb (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: allow RSM from 64-bit mode (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: handle SMBASE as physical address in RSM (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: add read_phys to x86_emulate_ops (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix RSM into 64-bit protected mode (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix previous commit for 32-bit (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix SMI to halted VCPU (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: clean up kvm_arch_vcpu_runnable (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: map/unmap private slots in __x86_set_memory_region (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: build kvm_userspace_memory_region in x86_set_memory_region (Paolo Bonzini) [1301888]
-- [x86] kvm: compile process_smi_save_seg_64() only for x86_64 (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: zero IDT limit on entry to SMM (Paolo Bonzini) [1301888]
-- [x86] kvm: svm: Only propagate next_rip when guest supports it (Paolo Bonzini) [1301888]
-- [x86] Use WARN_ON_ONCE for missing X86_FEATURE_NRIPS (Paolo Bonzini) [1301888]
-- [x86] kvm: svm: do not call kvm_set_cr0 from init_vmcb (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: trap AMD MSRs for the TSeg base and mask (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: fix VPID is 0000H in non-root operation (Paolo Bonzini) [1301888]
-- [virt] kvm: add capability for any-length ioeventfds (Paolo Bonzini) [1301888]
-- [x86] kvm: add tracepoint for fast mmio (Paolo Bonzini) [1301888]
-- [virt] kvm: use kmalloc() instead of kzalloc() during iodev register/unregister (Paolo Bonzini) [1301888]
-- [virt] kvm: fix zero length mmio searching (Paolo Bonzini) [1301888]
-- [virt] kvm: fix double free for fast mmio eventfd (Paolo Bonzini) [1301888]
-- [virt] kvm: factor out core eventfd assign/deassign logic (Paolo Bonzini) [1301888]
-- [virt] kvm: don't try to register to KVM_FAST_MMIO_BUS for non mmio eventfd (Paolo Bonzini) [1301888]
-- [virt] kvm: make the declaration of functions within 80 characters (Paolo Bonzini) [1301888]
-- [virt] kvm: irqchip: fix memory leak (Paolo Bonzini) [1301888]
-- [virt] kvm: fix polling for guest halt continued even if disable it (Paolo Bonzini) [1301888]
-- [virt] kvm: add halt_attempted_poll to VCPU stats (Paolo Bonzini) [1301888]
-- [include] kvm: move new trace event outside #ifdef CONFIG_KVM_ASYNC_PF (Paolo Bonzini) [1301888]
-- [virt] kvm: trace kvm_halt_poll_ns grow/shrink (Paolo Bonzini) [1301888]
-- [virt] kvm: dynamic halt-polling (Paolo Bonzini) [1301888]
-- [virt] kvm: make halt_poll_ns per-vCPU (Paolo Bonzini) [1301888]
-- [virt] kvm: make halt_poll_ns static (Paolo Bonzini) [1301888]
-- [x86] kvm: Rename VMX's segment access rights defines (Paolo Bonzini) [1301888]
-- [x86] kvm: x86/vpmu: Fix unnecessary signed extension for AMD PERFCTRn (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Fix error handling in the function kvm_lapic_sync_from_vapic (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Use adjustment in guest cycles when handling MSR_IA32_TSC_ADJUST (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: drop ept misconfig check (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix off-by-one in reserved bits check (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: use correct page table format to check nested page table reserved bits (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: avoid uninitialized variable warning (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: fully check zero bits for sptes (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: introduce is_shadow_zero_bits_set() (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: introduce the framework to check zero bits on sptes (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: split reset_rsvds_bits_mask_ept (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: split reset_rsvds_bits_mask (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: introduce rsvd_bits_validate (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: move FNAME(is_rsvd_bits_set) to mmu.c (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: clean/fix memory barriers in irqchip_in_kernel (Paolo Bonzini) [1301888]
-- [virt] kvm: document memory barriers for kvm->vcpus/kvm->online_vcpus (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: remove unnecessary memory barriers for shared MSRs (Paolo Bonzini) [1301888]
-- [virt] kvm: move code related to KVM_SET_BOOT_CPU_ID to x86 (Paolo Bonzini) [1301888]
-- [x86] kvm/x86: add support for MONITOR_TRAP_FLAG (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: vmx instructions: add checks for #GP/#SS exceptions (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: reintroduce kvm_is_mmio_pfn (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: remove data variable from kvm_get_msr_common (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: obey KVM_X86_QUIRK_CD_NW_CLEARED in kvm_set_cr0() (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: rename quirk constants to KVM_X86_QUIRK_* (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: obey KVM_QUIRK_CD_NW_CLEARED (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: introduce kvm_check_has_quirk (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix CR0.CD virtualization (Paolo Bonzini) [1301888]
-- [virt] kvm: fix checkpatch.pl errors in kvm/coalesced_mmio.h (Paolo Bonzini) [1301888]
-- [virt] kvm: fix checkpatch.pl errors in kvm/async_pf.h (Paolo Bonzini) [1301888]
-- [virt] kvm: irqchip: Break up high order allocations of kvm_irq_routing_table (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Fix host crash when loading MSRs with userspace irqchip (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Add support for rdtscp (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: inline kvm_ioapic_handles_vector() (Paolo Bonzini) [1301888]
-- [virt] kvm: Eliminate extra function calls in kvm_get_dirty_log_protect() (Paolo Bonzini) [1301888]
-- [x86] kvm: svm: Fix confusing message if no exit handlers are installed (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: For the symbols used locally only should be static type (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Avoid using plain integer as NULL pointer warning (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Do not emulate #UD while in guest mode (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Fix re-execution of patched vmmcall (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: make kvm_emulate_* consistant (Paolo Bonzini) [1301888]
-- [virt] kvm: Fix indentation in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: no space before tabs in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: Missing blank line after declarations in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: EXPORT_SYMBOL should immediately follow its function (Paolo Bonzini) [1301888]
-- [virt] kvm: fix error: do not initialise statics to 0 or NULL in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: fix warning: labels should not be indented in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: Fix WARNINGs for 'sizeof(X)' instead of 'sizeof X' in kvm_main.c (Paolo Bonzini) [1301888]
-- [virt] kvm: fix checkpatch.pl errors in kvm/irqchip.c (Paolo Bonzini) [1301888]
-- [virt] kvm: white space formatting in kvm_main.c (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: fix initial PAT value (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Deliver MSI IRQ to only lowest prio cpu if msi_redir_hint is true (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Extended struct kvm_lapic_irq with msi_redir_hint for MSI delivery (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: tweak types of fields in kvm_lapic_irq (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: zero EFER on INIT (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: INIT and reset sequences are different (Paolo Bonzini) [1301888]
-- [x86] kvm: arm/mips/x86/power use __kvm_guest_{enter|exit} (Paolo Bonzini) [1301888]
-- [include] kvm: provide irq_unsafe kvm_guest_{enter|exit} (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Fix MSR_IA32_BNDCFGS in msrs_to_save (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: fix comment in kvm_mmu_zap_collapsible_spte (Paolo Bonzini) [1301888]
-- [x86] kvm: mmu: lazy collapse small sptes into large sptes (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Clear CR2 on VCPU reset (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: DR0-DR3 are not clear on reset (Paolo Bonzini) [1301888]
-- [include] kvm: x86: BSP in MSR_IA32_APICBASE is writable (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: remove unnecessary double caching of MAXPHYADDR (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: checks for address bits beyond MAXPHYADDR on VM-entry (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: cache maxphyaddr CPUID leaf in struct kvm_vcpu (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: pass error code with internal error #2 (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: optimize delivery of TSC deadline timer interrupt (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: extract blocking logic from __vcpu_run (Paolo Bonzini) [1301888]
-- [x86] Use bool function return values of true/false not 1/0 (Paolo Bonzini) [1301888]
-- [x86] kvm: remove useless check of "ret" variable prior to returning the same value (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Remove redundant definitions (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: removing redundant eflags bits definitions (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: BSF and BSR emulation change register unnecassarily (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: CMOV emulation on legacy mode is wrong (Paolo Bonzini) [1301888]
-- [x86] kvm: x86: Dirty the dest op page on cmpxchg emulation (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Set msr bitmap correctly if vcpu is in guest mode (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Enable nested posted interrupt processing (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Enable nested virtual interrupt delivery (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Enable nested apic register virtualization (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Make nested control MSRs per-cpu (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Enable nested virtualize x2apic mode (Paolo Bonzini) [1301888]
-- [x86] kvm: nvmx: Prepare for using hardware MSR bitmap (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: disable posted interrupts if no local APIC (Paolo Bonzini) [1301888]
-- [x86] kvm: vmx: Preserve host CR4.MCE value while in guest mode (Paolo Bonzini) [1301888]
-- [virt] kvm: use slowpath for cross page cached accesses (Paolo Bonzini) [1301888]
-
-* Thu Apr 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-374.el7]
-- [fs] btrfs: fix loading of orphan roots leading to BUG_ON (Bill O'Donnell) [1298680]
-- [fs] btrfs: async-thread: Fix a use-after-free error for trace (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix no_space in write and rm loop (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix deadlock running delayed iputs at transaction commit time (Bill O'Donnell) [1298680]
-- [fs] btrfs: initialize the seq counter in struct btrfs_device (Bill O'Donnell) [1298680]
-- [fs] btrfs: Initialize btrfs_root->highest_objectid when loading tree root and subvolume roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix transaction handle leak on failure to create hard link (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix number of transaction units required to create symlink (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, don't BUG_ON() when an empty symlink is found (Bill O'Donnell) [1298680]
-- [fs] btrfs: statfs: report zero available if metadata are exhausted (Bill O'Donnell) [1298680]
-- [fs] btrfs: igrab inode in writepage (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing brelse when superblock checksum fails (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix hang on extent buffer lock caused by the inode_paths ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix page reading in extent_same ioctl leading to csum errors (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix invalid page accesses in extent_same (dedup) ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: properly set the termination value of ctx->pos in readdir (Bill O'Donnell) [1298680]
-- [fs] revert "btrfs: clear PF_NOFREEZE in cleaner_kthread()" (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fitrim discarding device area reserved for boot loader's use (Bill O'Donnell) [1298680]
-- [fs] btrfs: handle invalid num_stripes in sys_array (Bill O'Donnell) [1298680]
-- [fs] btrfs: check prepare_uptodate_page() error code earlier (Bill O'Donnell) [1298680]
-- [fs] btrfs: check for empty bitmap list in setup_cluster_bitmaps (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix misleading warning when space cache failed to load (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix transaction handle leak in balance (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix unprotected list move from unused_bgs to deleted_bgs list (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix balance range usage filters in 4.4-rc (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: account shared subtree during snapshot delete (Bill O'Donnell) [1298680]
-- [fs] btrfs: use btrfs_get_fs_root in resolve_indirect_ref (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: fix quota disable during rescan (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between cleaner kthread and space cache writeout (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix scrub preventing unused block groups from being deleted (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between scrub and block group deletion (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix rcu warning during device replace (Bill O'Donnell) [1298680]
-- [fs] btrfs: Continue replace when set_block_ro failed (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix clashing number of the enhanced balance usage filter (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix the number of transaction units needed to remove a block group (Bill O'Donnell) [1298680]
-- [fs] btrfs: use global reserve when deleting unused block group after ENOSPC (Bill O'Donnell) [1298680]
-- [fs] btrfs: tests: checking for NULL instead of IS_ERR() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix signed overflows in btrfs_sync_file (Bill O'Donnell) [1298680]
-- [fs] btrfs: Use fs_info directly in btrfs_delete_unused_bgs (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix lost-data-profile caused by balance bg (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix lost-data-profile caused by auto removing bg (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove len argument from scrub_find_csum (Bill O'Donnell) [1298680]
-- [fs] btrfs: Reduce unnecessary arguments in scrub_recheck_block (Bill O'Donnell) [1298680]
-- [fs] btrfs: Use scrub_checksum_data and scrub_checksum_tree_block for scrub_recheck_block_checksum (Bill O'Donnell) [1298680]
-- [fs] btrfs: Reset sblock->xxx_error stats before calling scrub_recheck_block_checksum (Bill O'Donnell) [1298680]
-- [fs] btrfs: scrub: setup all fields for sblock_to_check (Bill O'Donnell) [1298680]
-- [fs] btrfs: scrub: set error stats when tree block spanning stripes (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unnecessary new_valid_dev() check (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race when listing an inode's xattrs (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race leading to BUG_ON when running delalloc for nodatacow (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race leading to incorrect item deletion when dropping extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix sleeping inside atomic context in qgroup rescan worker (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race waiting for qgroup rescan worker (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: exit the rescan worker during umount (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix extent accounting for partial direct IO writes (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix hole punching when using the no-holes feature (Bill O'Donnell) [1298680]
-- [fs] btrfs: find_free_extent: Do not erroneously skip LOOP_CACHING_WAIT state (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix a data space underflow warning (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix a rebase bug which will cause qgroup double free (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix a race in delayed_ref which leads to abort trans (Bill O'Donnell) [1298680]
-- [fs] btrfs: clear PF_NOFREEZE in cleaner_kthread() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Don't copy extent buffer to do qgroup rescan (Bill O'Donnell) [1298680]
-- [fs] btrfs: add balance filters limits, stripes and usage to supported mask (Bill O'Donnell) [1298680]
-- [fs] btrfs: extend balance filter usage to take minimum and maximum (Bill O'Donnell) [1298680]
-- [fs] btrfs: add balance filter for stripes (Bill O'Donnell) [1298680]
-- [fs] btrfs: extend balance filter limit to take minimum and maximum (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix regression running delayed references when using qgroups (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix regression when running delayed references (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't do extra bitmap search in one bit case (Bill O'Donnell) [1298680]
-- [fs] btrfs: keep track of largest extent in bitmaps (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't keep trying to build clusters if we are fragmented (Bill O'Donnell) [1298680]
-- [fs] btrfs: cut down on loops through the allocator (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't continue setting up space cache when enospc (Bill O'Donnell) [1298680]
-- [fs] btrfs: keep track of max_extent_size per space_info (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't loop in allocator for space cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: add a flags field to btrfs_transaction (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix prealloc under heavy fragmentation conditions (Bill O'Donnell) [1298680]
-- [fs] btrfs: add fragment=* debug mount option (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix qgroup sanity tests (Bill O'Donnell) [1298680]
-- [fs] btrfs: change how we wait for pending ordered extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Check if qgroup reserved space leaked (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Avoid calling btrfs_free_reserved_data_space in clear_bit_hook (Bill O'Donnell) [1298680]
-- [fs] btrfs: fallocate: Add support to accurate qgroup reserve (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add new trace point for qgroup data reserve (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add handler for invalidate page (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add handler for NOCOW and inline (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Cleanup old inaccurate facilities (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Switch to new delalloc space reserve and release (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Add new version of btrfs_delalloc_reserve/release_space (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Switch to new check_data_free_space and free_reserved_data_space (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Add new version of btrfs_check_data_free_space and btrfs_free_reserved_data_space (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Use new metadata reservation (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Introduce new functions to reserve/free metadata (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed_ref: release and free qgroup reserved at proper timing (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed_ref: Add new function to record reserved space into delayed ref (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Introduce functions to release/free qgroup reserve data space (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Introduce btrfs_qgroup_reserve_data function (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent_io: Introduce new function clear_record_extent_bits() (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent_io: Introduce new function set_record_extent_bits (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent_io: Introduce needed structure for recoding set/clear bits (Bill O'Donnell) [1298680]
-- [fs] btrfs: reada: Fix returned errno code (Bill O'Donnell) [1298680]
-- [fs] btrfs: check-integrity: Fix returned errno codes (Bill O'Donnell) [1298680]
-- [fs] btrfs: compress: put variables defined per compress type in struct to make cache friendly (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup iterating over prop_handlers array (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix a comment typo (Bill O'Donnell) [1298680]
-- [fs] btrfs: declare rsv_count as unsigned int instead of int (Bill O'Donnell) [1298680]
-- [fs] btrfs: change num_items type from u64 to unsigned int (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup btrfs_balance profile validity checks (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove an unsed varialbe first_index (Bill O'Donnell) [1298680]
-- [fs] btrfs: use btrfs_raid_array in btrfs_reduce_alloc_profile (Bill O'Donnell) [1298680]
-- [fs] btrfs: use btrfs_raid_array for btrfs_get_num_tolerated_disk_barrier_failures() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Move btrfs_raid_array to public (Bill O'Donnell) [1298680]
-- [fs] btrfs: use a single if() statement for one outcome in get_block_rsv() (Bill O'Donnell) [1298680]
-- [fs] btrfs: memset cur_trans->delayed_refs to zero (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unnecessary list_del (Bill O'Donnell) [1298680]
-- [fs] btrfs: replace unnecessary list_for_each_entry_safe to list_for_each_entry (Bill O'Donnell) [1298680]
-- [fs] btrfs: trimming some start_transaction() code away (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fixed declaration of old_len (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fixed dsize and last_off declarations (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_submit_bio_hook: Use btrfs_wq_endio_type values instead of integer constants (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix truncation of compressed and inlined extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix double range unlock of hole region when reading page (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix file corruption and data loss after cloning inline extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix resending received snapshot with parent (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, fix file corruption due to incorrect cloning operations (Bill O'Donnell) [1298680]
-- [fs] btrfs: comment the rest of implicit barriers before waitqueue_active (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove extra barrier before waitqueue_active (Bill O'Donnell) [1298680]
-- [fs] btrfs: add comments to barriers before waitqueue_active (Bill O'Donnell) [1298680]
-- [fs] btrfs: comment waitqueue_active implied by locks (Bill O'Donnell) [1298680]
-- [fs] btrfs: add barrier for waitqueue_active in clear_btree_io_tree (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove waitqueue_active check from btrfs_rm_dev_replace_unblocked (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch more printks to our helpers (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch message printers to ratelimited variants (Bill O'Donnell) [1298680]
-- [fs] btrfs: introduce ratelimited variants of message printing functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch message printers to ratelimited _in_rcu variants (Bill O'Donnell) [1298680]
-- [fs] btrfs: introduce ratelimited _in_rcu variants of message printing functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch message printers to _in_rcu variants (Bill O'Donnell) [1298680]
-- [fs] btrfs: introduce _in_rcu variants of message printing functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: move kobj stuff out of dev_replace lock range (Bill O'Donnell) [1298680]
-- [fs] btrfs: add helper for closing one device (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't log error from btrfs_get_bdev_and_sb (Bill O'Donnell) [1298680]
-- [fs] btrfs: kernel operation should come after user input has been verified (Bill O'Donnell) [1298680]
-- [fs] btrfs: enhance btrfs_scratch_superblock to scratch all superblocks (Bill O'Donnell) [1298680]
-- [fs] btrfs: add btrfs_read_dev_one_super() to read one specific SB (Bill O'Donnell) [1298680]
-- [fs] btrfs: use BTRFS_ERROR_DEV_MISSING_NOT_FOUND when missing device is not found (Bill O'Donnell) [1298680]
-- [fs] btrfs: consolidate btrfs_error() to btrfs_std_error() (Bill O'Donnell) [1298680]
-- [fs] btrfs: __btrfs_std_error() logic should be consistent w/out CONFIG_PRINTK defined (Bill O'Donnell) [1298680]
-- [fs] btrfs: SB read failure should return EIO for __bread failure (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename super_kobj to fsid_kobj (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename btrfs_kobj_rm_device to btrfs_sysfs_rm_device_link (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename btrfs_kobj_add_device to btrfs_sysfs_add_device_link (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename btrfs_sysfs_remove_one to btrfs_sysfs_remove_mounted (Bill O'Donnell) [1298680]
-- [fs] btrfs: rename btrfs_sysfs_add_one to btrfs_sysfs_add_mounted (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix possible leak in btrfs_ioctl_balance() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Avoid truncate tailing page if fallocate range doesn't exceed inode size (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix use after free iterating extrefs (Bill O'Donnell) [1298680]
-- [fs] btrfs: check unsupported filters in balance arguments (Bill O'Donnell) [1298680]
-- [fs] btrfs: support NFSv2 export (Bill O'Donnell) [1298680]
-- [fs] btrfs: open_ctree: Fix possible memory leak (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix deadlock when finalizing block group creation (Bill O'Donnell) [1298680]
-- [fs] btrfs: update fix for read corruption of compressed and shared extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, fix corner case for reference overwrite detection (Bill O'Donnell) [1298680]
-- [fs] btrfs: keep dropped roots in cache until transaction commit (Bill O'Donnell) [1298680]
-- [fs] btrfs: direct i/o: Fix space accounting (Bill O'Donnell) [1298680]
-- [fs] btrfs: skip waiting on ordered range for special files (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix read corruption of compressed and shared extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unnecessary locking of cleaner_mutex to avoid deadlock (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't initialize a space info as full to prevent ENOSPC (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: remove unnecessary check before btrfs_free_path is called (Bill O'Donnell) [1298680]
-- [fs] btrfs: async_thread: Fix workqueue 'max_active' value when initializing (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add raid56 support for updating num_tolerated_disk_barrier_failures in btrfs_balance (Bill O'Donnell) [1298680]
-- [fs] btrfs: Cleanup for btrfs_calc_num_tolerated_disk_barrier_failures (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove noused chunk_tree and chunk_objectid from scrub_enumerate_chunks and scrub_chunk (Bill O'Donnell) [1298680]
-- [fs] btrfs: Update out-of-date "skip parity stripe" comment (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix file read corruption after extent cloning and fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: check if previous transaction aborted to avoid fs corruption (Bill O'Donnell) [1298680]
-- [fs] btrfs: use __GFP_NOFAIL in alloc_btrfs_bio (Bill O'Donnell) [1298680]
-- [fs] btrfs: Prevent from early transaction abort (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove unused arguments in tree-log.c (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove useless condition in start_log_trans() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unused mutex from struct 'btrfs_fs_info' (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix parity scrub of RAID 5/6 with missing device (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix device replace of a missing RAID 5/6 device (Bill O'Donnell) [1298680]
-- [fs] btrfs: add RAID 5/6 BTRFS_RBIO_REBUILD_MISSING operation (Bill O'Donnell) [1298680]
-- [fs] btrfs: count devices correctly in readahead during RAID 5/6 replace (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove misleading handling of missing device scrub (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix clone / extent-same deadlocks (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix defrag to merge tail file extent (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix warning in backref walking (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add WARN_ON() for double lock in btrfs_tree_lock() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove root argument in extent_data_ref_count() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix wrong comment of btrfs_alloc_tree_block() (Bill O'Donnell) [1298680]
-- [fs] btrfs: abort transaction on btrfs_reloc_cow_block() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove unnecessary variants in relocation.c (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: Remove chunk_objectid argument from btrfs_relocate_chunk() (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: Remove objectid's init-value in create_reloc_inode() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Error handle for get_ref_objectid_v0() in relocate_block_group() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix data checksum error cause by replace with io-load (Bill O'Donnell) [1298680]
-- [fs] btrfs: use scrub_pause_on/off() to reduce code in scrub_enumerate_chunks() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Separate scrub_blocked_if_needed() to scrub_pause_on/off() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Use ref_cnt for set_block_group_ro() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Bypass unrelated items before accessing its contents in scrub (Bill O'Donnell) [1298680]
-- [fs] btrfs: Load only necessary csums into list in scrub (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix calculate typo caused by ambiguous meaning of logic_end (Bill O'Donnell) [1298680]
-- [fs] btrfs: Free checksum list on scrub_extent() fail (Bill O'Donnell) [1298680]
-- [fs] btrfs: Check cancel and pause in interval of scrub operation (Bill O'Donnell) [1298680]
-- [fs] btrfs: Show detail information when mount failed on missing devices (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix scrub panic when leaf crosses stripes (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix stale dir entries after removing a link and fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix search key advancing condition (Bill O'Donnell) [1298680]
-- [fs] btrfs: teach backref walking about backrefs with underflowed offset values (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix stale dir entries after unlink, inode eviction and fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix stale directory entries after fsync log replay (Bill O'Donnell) [1298680]
-- [fs] btrfs: Spelling s/consitent/consistent/ (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing discards when unpinning extents with -o discard (Bill O'Donnell) [1298680]
-- [fs] btrfs: explictly delete unused block groups in close_ctree and ro-remount (Bill O'Donnell) [1298680]
-- [fs] btrfs: iterate over unused chunk space in FITRIM (Bill O'Donnell) [1298680]
-- [fs] btrfs: skip superblocks during discard (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_issue_discard ensure offset/length are aligned to sector boundaries (Bill O'Donnell) [1298680]
-- [fs] btrfs: make btrfs_issue_discard return bytes discarded (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix a regression in qgroup reserved space (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix quick exhaustion of the system array in the superblock (Bill O'Donnell) [1298680]
-- [fs] btrfs: its btrfs_err() instead of btrfs_error() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Avoid NULL pointer dereference of free_extent_buffer when read_tree_block() fail (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix lockdep warning of btrfs_run_delayed_iputs() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix file corruption after cloning inline extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix order by which delayed references are run (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix list transaction->pending_ordered corruption (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix memory leak in the extent_same ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix shrinking truncate when the no_holes feature is enabled (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix wrong check for btrfs_force_chunk_alloc() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix warning of bytes_may_use (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix hang when failing to submit bio of directIO (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix a comment in inode.c:evict_inode_truncate_pages() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix memory corruption on failure to submit bio for direct IO (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't update mtime/ctime on deduped inodes (Bill O'Donnell) [1298680]
-- [fs] btrfs: allow dedupe of same inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix deadlock with extent-same and readpage (Bill O'Donnell) [1298680]
-- [fs] btrfs: pass unaligned length to btrfs_cmp_data() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync after truncate when no_holes feature is enabled (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync xattr loss in the fast fsync path (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync data loss after append write (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix crash on close_ctree() if cleaner starts new transaction (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between caching kthread and returning inode to inode cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: use kmem_cache_free when freeing entry in inode cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between balance and unused block group deletion (Bill O'Donnell) [1298680]
-- [fs] btrfs: add error handling for scrub_workers_get() (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup noused initialization of dev in btrfs_end_bio() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: allow user to clear the limitation on qgroup (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed-ref: double free in btrfs_add_delayed_tree_ref() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Check if kobject is initialized before put (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: add support to show replacing target in the sysfs (Bill O'Donnell) [1298680]
-- [fs] btrfs: free the stale device (Bill O'Donnell) [1298680]
-- [fs] btrfs: use received_uuid of parent during send (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix use-after-free in btrfs_replay_log (Bill O'Donnell) [1298680]
-- [fs] btrfs: wait for delayed iputs on no space (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Make snapshot accounting work with new extent-oriented qgroup (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add the ability to skip given qgroup for old/new_roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: ulist: Add ulist_del() function (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Cleanup the old ref_node-oriented mechanism (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Switch self test to extent-oriented qgroup mechanism (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Switch to new extent-oriented qgroup mechanism (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Switch rescan to new mechanism (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add new qgroup calculation function btrfs_qgroup_account_extents() (Bill O'Donnell) [1298680]
-- [fs] btrfs: backref: Add special time_seq == (u64)-1 case for btrfs_find_all_roots() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add new function to record old_roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Record possible quota-related extent for qgroup (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add function qgroup_update_counters() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Add function qgroup_update_refcnt() (Bill O'Donnell) [1298680]
-- [fs] btrfs: extent-tree: Use ref_node to replace unneeded parameters in __inc_extent_ref() and __free_extent() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Cleanup open-coded old/new_refcnt update and read (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed-ref: Cleanup the unneeded functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed-ref: Use list to replace the ref_root in ref_head (Bill O'Donnell) [1298680]
-- [fs] btrfs: backref: Don't merge refs which are not for same block (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix lockdep warning of wr_ctx->wr_lock in scrub_free_wr_ctx() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Handle unaligned length in extent_same (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_defrag_file: Fix calculation of max_to_defrag (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_defrag_file: Fix ra_index computation (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix necessary chunk tree space calculation when allocating a chunk (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't attach unnecessary extents to transaction on fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: avoid syncing log in the fast fsync path when not necessary (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix hang during inode eviction due to concurrent readahead (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix up read_tree_block to return proper error (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing free_extent_buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove csum_bytes_left (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix -ENOSPC on block group removal (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix -ENOSPC when finishing block group creation (Bill O'Donnell) [1298680]
-- [fs] btrfs: set UNWRITTEN for prealloc'ed extents in fiemap (Bill O'Donnell) [1298680]
-- [fs] btrfs: show subvol= and subvolid= in /proc/mounts (Bill O'Donnell) [1298680]
-- [fs] btrfs: unify subvol= and subvolid= mounting (Bill O'Donnell) [1298680]
-- [fs] btrfs: fail on mismatched subvol and subvolid mount options (Bill O'Donnell) [1298680]
-- [fs] vfs: Introduce inode-getting helpers for layered/unioned fs environments (Bill O'Donnell) [1298680]
-- [fs] btrfs: clean up error handling in mount_subvol() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove all subvol options before mounting top-level (Bill O'Donnell) [1298680]
-- [fs] lib: add glibc style strchrnul() variant (Bill O'Donnell) [1298680]
-- [fs] btrfs: lock superblock before remounting for rw subvol (Bill O'Donnell) [1298680]
-- [fs] btrfs: wake up extent state waiters on unlock through clear_extent_bits (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix chunk allocation regression leading to transaction abort (Bill O'Donnell) [1298680]
-- [fs] btrfs: use after free when closing devices (Bill O'Donnell) [1298680]
-- [fs] btrfs: make root id query unprivileged (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix block group ->space_info null pointer dereference (Bill O'Donnell) [1298680]
-- [fs] btrfs: check error before reporting missing device and add uuid (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix superblock csum type check (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, fix clone operations for compressed extents (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix possible leak in btrfs_add_qgroup_relation() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix mutex unlock without prior lock on space cache truncation (Bill O'Donnell) [1298680]
-- [fs] btrfs: log when missing device is created (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix warnings after changes in btrfs_abort_transaction (Bill O'Donnell) [1298680]
-- [fs] btrfs: add 'cold' compiler annotations to all error handling functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: report exact callsite where transaction abort occurs (Bill O'Donnell) [1298680]
-- [fs] btrfs: let tree defrag work in SSD mode (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs: check pending chunks when shrinking fs to avoid corruption (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, check if orphanized dir inode needs delayed rename (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, don't delay directory renames unnecessarily (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: don't fail seeding for the sake of sysfs kobject issue (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: add support to add parent for fsid (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: separate kobject and attribute creation (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: btrfs_sysfs_remove_fsid() make it non static (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: make btrfs_sysfs_add_device() non static (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: make btrfs_sysfs_add_fsid() non static (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs btrfs_kobj_rm_device() pass fs_devices instead of fs_info (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs btrfs_kobj_add_device() pass fs_devices instead of fs_info (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: provide framework to remove all fsid sysfs kobject (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: add pointer to access fs_info from fs_devices (Bill O'Donnell) [1298680]
-- [fs] btrfs: introduce btrfs_get_fs_uuids to get fs_uuids (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: move super_kobj and device_dir_kobj from fs_info to btrfs_fs_devices (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: separate device kobject and its attribute creation (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: let default_attrs be separate from the kset (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: introduce function btrfs_sysfs_add_fsid() to create sysfs fsid (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: rename __btrfs_sysfs_remove_one to btrfs_sysfs_remove_fsid (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: reorder the kobject creations (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, check if device_dir_kobj is init before destroy (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, kobject pointer clean up needed after kobject release (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, undo sysfs device links (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, fs_info kobject_unregister has init_completion() twice (Bill O'Donnell) [1298680]
-- [fs] btrfs: sysfs: fix, btrfs_release_super_kobj() should to clean up the kobject data (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix regression in raid level conversion (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix racy system chunk allocation when setting block group ro (Bill O'Donnell) [1298680]
-- [fs] btrfs: clear 'ret' in btrfs_check_shared() loop (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race when reusing stale extent buffers that leads to BUG_ON (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between block group creation and their cache writeout (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix panic when starting bg cache writeout after IO error (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix crash after inode cache writeback failure (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix wrong mapping flags for free space inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_release_extent_buffer_page didn't free pages of dummy extent (Bill O'Donnell) [1298680]
-- [fs] btrfs: fill ->last_trans for delayed inode in btrfs_fill_inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: unlock i_mutex after attempting to delete subvolume during send (Bill O'Donnell) [1298680]
-- [fs] btrfs: check io_ctl_prepare_pages return in __btrfs_write_out_cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race on ENOMEM in alloc_extent_buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: handle ENOMEM in btrfs_alloc_tree_block (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix find_free_dev_extent() malfunction in case device tree has hole (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't check for delalloc_bytes in cache_save_setup (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix deadlock when starting writeback of bg caches (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between start dirty bg cache writeout and bg deletion (Bill O'Donnell) [1298680]
-- [fs] btrfs: prevent list corruption during free space cache processing (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix inode cache writeout (Bill O'Donnell) [1298680]
-- [fs] btrfs: quota: Update quota tree after qgroup relationship change (Bill O'Donnell) [1298680]
-- [fs] btrfs: quota: Automatically update related qgroups or mark INCONSISTENT flags when assigning/deleting a qgroup relations (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: clear STATUS_FLAG_ON in disabling quota (Bill O'Donnell) [1298680]
-- [fs] btrfs: Update btrfs qgroup status item when rescan is done (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Fix dead judgement on qgroup_rescan_leaf() return value (Bill O'Donnell) [1298680]
-- [fs] btrfs: Don't allow subvolid >= (1 << BTRFS_QGROUP_LEVEL_SHIFT) to be created (Bill O'Donnell) [1298680]
-- [fs] btrfs: Check qgroup level in kernel qgroup assign (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: allow to remove qgroup which has parent but no child (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: return EINVAL if level of parent is not higher than child's (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: do a reservation in a higher level (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup, Account data space in more proper timings (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: Introduce a may_use to account space_info->bytes_may_use (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: free reserved in exceeding quota (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: cleanup, remove an unsued parameter in btrfs_create_qgroup() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: fix limit args override whole limit struct (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: update limit info in function btrfs_run_qgroups() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: consolidate the parameter of fucntion update_qgroup_limit_item() (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: update qgroup in memory at the same time when we update it in btree (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: inherit limit info from srcgroup in creating snapshot (Bill O'Donnell) [1298680]
-- [fs] btrfs: Support busy loop of write and delete (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix NO_SPACE bug caused by delayed-iput (Bill O'Donnell) [1298680]
-- [fs] btrfs: add WARN_ON() to check is space_info op current (Bill O'Donnell) [1298680]
-- [fs] btrfs: Set relative data on clear btrfs_block_group_cache->pinned (Bill O'Donnell) [1298680]
-- [fs] btrfs: Adjust commit-transaction condition to avoid NO_SPACE more (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix tail space processing in find_free_dev_extent() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix condition of commit transaction (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix uninit variable in clone ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix inode eviction infinite loop after cloning into it (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix inode eviction infinite loop after extent_same ioctl (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix range cloning when same inode used as source and destination (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix use after free when close_ctree frees the orphan_rsv (Bill O'Donnell) [1298680]
-- [fs] btrfs: allow block group cache writeout outside critical section in commit (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't use highmem for free space cache pages (Bill O'Donnell) [1298680]
-- [fs] btrfs: two stage dirty block group writeout (Bill O'Donnell) [1298680]
-- [fs] btrfs: move struct io_ctl into ctree.h and rename it (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't steal from the global reserve if we don't have the space (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't commit the transaction in the async space flushing (Bill O'Donnell) [1298680]
-- [fs] btrfs: reserve space for block groups (Bill O'Donnell) [1298680]
-- [fs] btrfs: refill block reserves during truncate (Bill O'Donnell) [1298680]
-- [fs] btrfs: account for crcs in delayed ref processing (Bill O'Donnell) [1298680]
-- [fs] btrfs: actively run the delayed refs while deleting large files (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add missing include file (Bill O'Donnell) [1298680]
-- [fs] btrfs: free and unlock our path before btrfs_free_and_pin_reserved_extent() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove the check for old-style mkfs (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup orphans while looking up default subvolume (Bill O'Donnell) [1298680]
-- [fs] btrfs: explicitly set control file's private_data (Bill O'Donnell) [1298680]
-- [fs] btrfs: incorrect handling for fiemap_fill_next_extent return (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't accept bare namespace as a valid xattr (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix log tree corruption when fs mounted with -o discard (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix metadata inconsistencies after directory fsync (Bill O'Donnell) [1298680]
-- [fs] btrfs: change the insertion criteria for the qgroup operations rbtree (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing inode item update in fallocate() (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, remove dead code (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, clear name from cache after orphanization (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, don't leave without decrementing clone root's send_progress (Bill O'Donnell) [1298680]
-- [fs] btrfs: send, add missing check for dead clone root (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove deleted xattrs on fsync log replay (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove shadowing variables in __btrfs_map_block (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch helper macros to static inlines in sysfs.h (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, use correct type in div_u64_rem (Bill O'Donnell) [1298680]
-- [fs] btrfs: replace remaining do_div calls with div_u64 variants (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup 64bit/32bit divs, provably bounded values (Bill O'Donnell) [1298680]
-- [fs] btrfs: use explicit initializer for seq_elem (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove shadowing variables in __btrfs_buffered_write (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, use kmalloc_array/kcalloc array helpers (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup 64bit/32bit divs, compile time constants (Bill O'Donnell) [1298680]
-- [fs] btrfs: use cond_resched_lock where possible (Bill O'Donnell) [1298680]
-- [fs] btrfs: need_resched not needed with cond_resched (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, reduce temporary variables in btrfs_read_roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: use correct type for workqueue flags (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_read_roots() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_replay_log() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_workqueues() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_qgroup() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_dev_replace_locks() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_btree_inode() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_balance() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: factor btrfs_init_scrub() out of open_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: consistently use fs_info in close_ctree() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unused fs_info arg from btrfs_close_extra_devices() (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: use for() loop in btrfs_map_bio() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove unused chunk_tree argument in several functions (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup: remove no-used alloc_chunk in btrfs_check_data_free_space() (Bill O'Donnell) [1298680]
-- [fs] btrfs: constify structs with op functions or static definitions (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch to kvfree() helper (Bill O'Donnell) [1298680]
-- [fs] btrfs: disk-io: replace root args iff only fs_info used (Bill O'Donnell) [1298680]
-- [fs] btrfs: delayed-inode: replace root args iff only fs_info used (Bill O'Donnell) [1298680]
-- [fs] btrfs: ctree: reduce args where only fs_info used (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix outstanding_extents accounting in DIO (Bill O'Donnell) [1298680]
-- [fs] btrfs: add sanity test for outstanding_extents accounting (Bill O'Donnell) [1298680]
-- [fs] btrfs: just free dummy extent buffers (Bill O'Donnell) [1298680]
-- [fs] btrfs: account merges/splits properly (Bill O'Donnell) [1298680]
-- [fs] btrfs: prepare block group cache before writing (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix ASSERT(list_empty(&cur_trans->dirty_bgs_list) (Bill O'Donnell) [1298680]
-- [fs] btrfs: account for the correct number of extents for delalloc reservations (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix merge delalloc logic (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix comp_oper to get right order (Bill O'Donnell) [1298680]
-- [fs] btrfs: catch transaction abortion after waiting for it (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix sizeof format specifier in btrfs_check_super_valid() (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove extra run_delayed_refs in update_cowonly_root (Bill O'Donnell) [1298680]
-- [fs] btrfs: incremental send, don't rename a directory too soon (Bill O'Donnell) [1298680]
-- [fs] btrfs: do not ignore errors from btrfs_lookup_xattr in do_setxattr (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix off-by-one logic error in btrfs_realloc_node (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing inode update when punching hole (Bill O'Donnell) [1298680]
-- [fs] btrfs: abort the transaction if we fail to update the free space cache inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix allocation size calculations in alloc_btrfs_bio (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't remove extents and xattrs when logging new names (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix BUG_ON in btrfs_orphan_add() when delete unused block group (Bill O'Donnell) [1298680]
-- [fs] btrfs: account for large extents with enospc (Bill O'Donnell) [1298680]
-- [fs] btrfs: don't set and clear delalloc for O_DIRECT writes (Bill O'Donnell) [1298680]
-- [fs] btrfs: only adjust outstanding_extents when we do a short write (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix out-of-space bug (Bill O'Donnell) [1298680]
-- [fs] btrfs: scrub, fix sleep in atomic context (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix scheduler warning when syncing log (Bill O'Donnell) [1298680]
-- [fs] page_writeback: put account_page_redirty() after set_page_dirty() (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup init for list in free-space-cache (Bill O'Donnell) [1298680]
-- [fs] btrfs: delete chunk allocation attemp when setting block group ro (Bill O'Donnell) [1298680]
-- [fs] btrfs: clear bio reference after submit_one_bio() (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix scrub race leading to use-after-free (Bill O'Donnell) [1298680]
-- [fs] btrfs: add missing cleanup on sysfs init failure (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix race between transaction commit and empty block group removal (Bill O'Donnell) [1298680]
-- [fs] btrfs: add more checks to btrfs_read_sys_array (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, rename a few variables in btrfs_read_sys_array (Bill O'Donnell) [1298680]
-- [fs] btrfs: add checks for sys_chunk_array sizes (Bill O'Donnell) [1298680]
-- [fs] btrfs: more superblock checks, lower bounds on devices and sectorsize/nodesize (Bill O'Donnell) [1298680]
-- [fs] btrfs: Add code to support file creation time (Bill O'Donnell) [1298680]
-- [fs] btrfs: kill btrfs_inode_*time helpers (Bill O'Donnell) [1298680]
-- [fs] btrfs: insert_new_root: Fix lock type of the extent buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix unused members in struct btrfs_root (Bill O'Donnell) [1298680]
-- [fs] btrfs: qgroup: move WARN_ON() to the correct location (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup unused run_most (Bill O'Donnell) [1298680]
-- [fs] btrfs: Introduce BTRFS_BLOCK_GROUP_RAID56_MASK to check raid56 simply (Bill O'Donnell) [1298680]
-- [fs] btrfs: Include map_type in raid_bio (Bill O'Donnell) [1298680]
-- [fs] btrfs: Simplify scrub_setup_recheck_block()'s argument (Bill O'Donnell) [1298680]
-- [fs] btrfs: Combine per-page recover in dev-replace and scrub (Bill O'Donnell) [1298680]
-- [fs] btrfs: Separate finding-right-mirror and writing-to-target's process in scrub_handle_errored_block() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Break loop when reach BTRFS_MAX_MIRRORS in scrub_setup_recheck_block() (Bill O'Donnell) [1298680]
-- [fs] btrfs: btrfs_rm_dev_replace_blocked(): Use wait_event() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Cleanup btrfs_bio_counter_inc_blocked() (Bill O'Donnell) [1298680]
-- [fs] btrfs: Remove noneed force_write in scrub_write_block_to_dev_replace (Bill O'Donnell) [1298680]
-- [fs] btrfs: Fix a jump typo of nodatasum_case to avoid wrong WARN_ON() (Bill O'Donnell) [1298680]
-- [fs] btrfs: add ref_count and free function for btrfs_bio (Bill O'Donnell) [1298680]
-- [fs] btrfs: Make raid_map array be inlined in btrfs_bio structure (Bill O'Donnell) [1298680]
-- [fs] btrfs: sort raid_map before adding tgtdev stripes (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix a out-of-bound access of raid_map (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync log replay for inodes with a mix of regular refs and extrefs (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix fsync when extend references are added to an inode (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix directory inconsistency after fsync log replay (Bill O'Donnell) [1298680]
-- [fs] btrfs: lookup for block group only if needed when freeing a tree block (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove a no-op unfreeze superbock callback (Bill O'Donnell) [1298680]
-- [fs] btrfs: switch extent_state state to unsigned (Bill O'Donnell) [1298680]
-- [fs] btrfs: update message levels after checksum errors (Bill O'Donnell) [1298680]
-- [fs] btrfs: update message levels during failed mount (Bill O'Donnell) [1298680]
-- [fs] btrfs: update message levels for errors (Bill O'Donnell) [1298680]
-- [fs] btrfs: fix setup_leaf_for_split() to avoid leaf corruption (Bill O'Donnell) [1298680]
-- [fs] btrfs: track dirty block groups on their own list (Bill O'Donnell) [1298680]
-- [fs] btrfs: change how we track dirty roots (Bill O'Donnell) [1298680]
-- [fs] btrfs: expand btrfs_find_item if found_key is NULL (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, remove inode_ref_info helper (Bill O'Donnell) [1298680]
-- [fs] btrfs: cleanup, remove inode_item_info helper (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink parameter len to alloc_extent_buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: unify extent buffer allocation api (Bill O'Donnell) [1298680]
-- [fs] btrfs: use GFP_NOFS in __alloc_extent_buffer directly (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to tree_block_processed (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to btrfs_find_create_tree_block (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to btrfs_init_new_buffer (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to reada_tree_block_flagged (Bill O'Donnell) [1298680]
-- [fs] btrfs: remove blocksize from reada_extent (Bill O'Donnell) [1298680]
-- [fs] btrfs: sink blocksize parameter to readahead_tree_block (Bill O'Donnell) [1298680]
-
-* Tue Apr 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-373.el7]
-- [net] ipv6: Nonlocal bind (Sabrina Dubroca) [1315968]
-- [net] ipv4: bind ip_nonlocal_bind to current netns (Sabrina Dubroca) [1315968]
-- [net] sctp: fix race for one-to-many sockets in sendmsg's auto associate (Xin Long) [1138256]
-- [net] sctp: label accepted/peeled off sockets (Marcelo Leitner) [1247756]
-- [net] sctp: start t5 timer only when peer rwnd is 0 and local state is SHUTDOWN_PENDING (Xin Long) [1314699]
-- [net] sctp: convert sack_needed and sack_generation to bits (Xin Long) [1314699]
-- [net] sctp: update the netstamp_needed counter when copying sockets (Marcelo Leitner) [1317647]
-- [net] sctp: use the same clock as if sock source timestamps were on (Marcelo Leitner) [1317647]
-- [net] bridge: Handle IFLA_ADDRESS correctly when creating bridge device (Paolo Abeni) [1314779]
-- [net] bridge: Prevent possible race condition in br_fdb_change_mac_address (Paolo Abeni) [1314779]
-- [net] bridge: Properly check if local fdb entry can be deleted when deleting vlan (Paolo Abeni) [1314779]
-- [net] bridge: Properly check if local fdb entry can be deleted in br_fdb_delete_by_port (Paolo Abeni) [1314779]
-- [net] bridge: Properly check if local fdb entry can be deleted in br_fdb_change_mac_address (Paolo Abeni) [1314779]
-- [net] bridge: Change local fdb entries whenever mac address of bridge device changes (Paolo Abeni) [1314779]
-- [net] bridge: Fix the way to find old local fdb entries in br_fdb_change_mac_address (Paolo Abeni) [1314779]
-- [net] sctp: sctp_remaddr_seq_show use the wrong variable to dump transport info (Xin Long) [1187584]
-- [net] sctp: lack the check for ports in sctp_v6_cmp_addr (Xin Long) [1187584]
-- [net] sctp: remove the dead field of sctp_transport (Xin Long) [1187584]
-- [net] sctp: hold transport before we access t->asoc in sctp proc (Xin Long) [1187584]
-- [net] sctp: fix the transport dead race check by using atomic_add_unless on refcnt (Xin Long) [1187584]
-- [net] sctp: the temp asoc's transports should not be hashed/unhashed (Xin Long) [1187584]
-- [net] sctp: Move sequence start handling into sctp_transport_get_idx() (Xin Long) [1187584]
-- [net] sctp: support to lookup with ep+paddr in transport rhashtable (Xin Long) [1187584]
-- [net] sctp: remove the local_bh_disable/enable in sctp_endpoint_lookup_assoc (Xin Long) [1187584]
-- [net] sctp: drop the old assoc hashtable of sctp (Xin Long) [1187584]
-- [net] sctp: do not trigger BUG_ON in sctp_cmd_delete_tcb (Xin Long) [1187584]
-- [net] sctp: sideeffect: throw BUG if primary_path is NULL (Xin Long) [1187584]
-- [net] sctp: use GFP_KERNEL in sctp_init() (Xin Long) [1187584]
-- [net] sctp: apply rhashtable api to sctp procfs (Xin Long) [1187584]
-- [net] sctp: apply rhashtable api to send/recv path (Xin Long) [1187584]
-- [net] sctp: add the rhashtable apis for sctp global transport hashtable (Xin Long) [1187584]
-- [net] sctp: reorder sctp_globals to reduce cacheline usage (Xin Long) [1187584]
-- [net] ipv4: only create late gso-skb if skb is already set up with CHECKSUM_PARTIAL (Hannes Frederic Sowa) [1277095]
-- [net] ipv6: add defensive check for CHECKSUM_PARTIAL skbs in ip_fragment (Hannes Frederic Sowa) [1277095]
-- [net] ipv6: no CHECKSUM_PARTIAL on MSG_MORE corked sockets (Hannes Frederic Sowa) [1277095]
-- [net] ipv4: add defensive check for CHECKSUM_PARTIAL skbs in ip_fragment (Hannes Frederic Sowa) [1277095]
-- [net] ipv4: no CHECKSUM_PARTIAL on MSG_MORE corked sockets (Hannes Frederic Sowa) [1277095]
-- [net] revert "ipv6: don't use CHECKSUM_PARTIAL on MSG_MORE/UDP_CORK sockets" (Hannes Frederic Sowa) [1277095]
-
-* Mon Apr 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-372.el7]
-- [kernel] cgroup: pids: rhel-specific hack to fix zombie accounting (Oleg Nesterov) [1265339]
-- [kernel] cgroup: pids: fix kABI breakage (Oleg Nesterov) [1265339]
-- [kernel] cgroup: pids: adapt cgroup_pids.c to RHEL7 (Oleg Nesterov) [1265339]
-- [kernel] cgroup: implement task_get_css() (Oleg Nesterov) [1265339]
-- [kernel] cgroup: pids: fix invalid get/put usage (Oleg Nesterov) [1265339]
-- [kernel] cgroup: implement the PIDs subsystem (Oleg Nesterov) [1265339]
-- [kernel] cgroup: allow a cgroup subsystem to reject a fork (Oleg Nesterov) [1265339]
-- [fs] gfs2: Set s_mode before parsing mount options (Andrew Price) [1264523]
-- [fs] nfsv4: Fix a dentry leak on alias use (Benjamin Coddington) [1269198]
-- [fs] sunrpc: never enqueue a ->rq_cong request on ->sending (Benjamin Coddington) [1315463]
-- [fs] gfs2: Reintroduce a timeout in function gfs2_gl_hash_clear (Robert S Peterson) [1292582]
-- [fs] xfs: fix splice/direct-IO deadlock (Bill O'Donnell) [824796]
-- [fs] vfs: split generic splice code from i_mutex locking (Bill O'Donnell) [824796]
-- [fs] dlm: sctp_accept_from_sock() can be static (Xin Long) [1235699]
-- [fs] dlm: fix reconnecting but not sending data (Xin Long) [1235699]
-- [fs] dlm: replace BUG_ON with a less severe handling (Xin Long) [1235699]
-- [fs] dlm: use sctp 1-to-1 API (Xin Long) [1235699]
-- [fs] dlm: fix not reconnecting on connecting error handling (Xin Long) [1235699]
-- [fs] dlm: fix race while closing connections (Xin Long) [1235699]
-- [fs] dlm: fix connection stealing if using SCTP (Xin Long) [1235699]
-- [fs] dlm: keep listening connection alive with sctp mode (Xin Long) [1235699]
-- [fs] dlm: set zero linger time on sctp socket (Xin Long) [1235699]
-- [fs] dlm: remove duplicated include from lowcomms.c (Xin Long) [1235699]
-- [fs] dlm: disable nagle for SCTP (Xin Long) [1235699]
-- [fs] dlm: retry failed SCTP sends (Xin Long) [1235699]
-- [fs] dlm: try other IPs when sctp init assoc fails (Xin Long) [1235699]
-- [fs] dlm: clear correct bit during sctp init failure handling (Xin Long) [1235699]
-- [fs] dlm: set sctp assoc id during setup (Xin Long) [1235699]
-- [fs] dlm: clear correct init bit during sctp setup (Xin Long) [1235699]
-- [hid] usbhid: add Chicony/Pixart usb optical mouse that needs QUIRK_ALWAYS_POLL ("Herton R. Krzesinski") [1254369]
-- [x86] kernel: Call out into INT3 handler directly instead of using notifier (Luiz Capitulino) [1291899]
-- [x86] Make jump_label use int3-based patching (Luiz Capitulino) [1291899]
-- [x86] Introduce int3 (breakpoint)-based instruction patching (Luiz Capitulino) [1291899]
-- [kernel] audit: try harder to send to auditd upon netlink failure (Richard Guy Briggs) [1253123]
-- [kernel] audit: stop an old auditd being starved out by a new auditd (Richard Guy Briggs) [1253123]
-- [kernel] audit: remove stray newlines from audit_log_lost messages (Richard Guy Briggs) [1253123]
-- [kernel] audit: get rid of *NO* daemon at audit_pid=0 message (Richard Guy Briggs) [1253123]
-- [kernel] audit: prevent an older auditd shutdown from orphaning a newer auditd startup (Richard Guy Briggs) [1253123]
-- [kernel] prctl: more prctl(PR_SET_MM_*) checks (Zorro Lang) [1298820]
-- [security] selinux: quiet the filesystem labeling behavior message (Paul Moore) [1295807]
-
-* Thu Mar 31 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-371.el7]
-- [fs] nfsv4: Respect the server imposed limit on how many changes we may cache (Benjamin Coddington) [1314511]
-- [fs] nfsv4: Express delegation limit in units of pages (Benjamin Coddington) [1314511]
-- [fs] eventfd: document lockless access in eventfd_poll (Paolo Bonzini) [1293632]
-- [fs] eventfd: don't take the spinlock in eventfd_poll (Paolo Bonzini) [1293632]
-- [fs] gfs2: Use resizable hash table for glocks (Robert S Peterson) [1172819]
-- [fs] gfs2: Move glock superblock pointer to field gl_name (Robert S Peterson) [1172819]
-- [fs] gfs2: Simplify the seq file code for "sbstats" (Robert S Peterson) [1172819]
-- [fs] xfs: only run torn log write detection on dirty logs (Brian Foster) [1314355]
-- [fs] xfs: refactor in-core log state update to helper (Brian Foster) [1314355]
-- [fs] xfs: refactor unmount record detection into helper (Brian Foster) [1314355]
-- [fs] xfs: separate log head record discovery from verification (Brian Foster) [1314355]
-- [fs] cifs: fold cifs_iovec_write() into the only caller (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix warning (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix another dereference before null check warning (Sachin Prabhu) [1303850]
-- [fs] cifs: session servername can't be null (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix warning on impossible comparison (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix coverity warning (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix dereference before null check warning (Sachin Prabhu) [1303850]
-- [fs] cifs: Don't ignore errors on encrypting password in SMBTcon (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix warning on uninitialized buftype (Sachin Prabhu) [1303850]
-- [fs] cifs: potential memory leaks when parsing mnt opts (Sachin Prabhu) [1303850]
-- [fs] cifs: smb2_clone_range() - exit on unhandled error (Sachin Prabhu) [1303850]
-- [fs] cifs: fix MUST SecurityFlags filtering (Sachin Prabhu) [1303850]
-- [fs] cifs: use memzero_explicit to clear stack buffer (Sachin Prabhu) [1303850]
-- [fs] cifs: make new inode cache when file type is different (Sachin Prabhu) [1303850]
-- [fs] cifs: Fix signed/unsigned pointer warning (Sachin Prabhu) [1303850]
-- [fs] cifs: smb2file: replace count*size kzalloc by kcalloc (Sachin Prabhu) [1303850]
-- [fs] cifs: file: replace count*size kzalloc by kcalloc (Sachin Prabhu) [1303850]
-- [fs] cifs: remove obsolete __constant (Sachin Prabhu) [1303850]
-- [fs] cifs: convert to print_hex_dump() instead of custom implementation (Sachin Prabhu) [1303850]
-- [fs] cifs: call strtobool instead of custom implementation (Sachin Prabhu) [1303850]
-- [fs] cifs: Update modinfo cifs version for cifs.ko (Sachin Prabhu) [1303850]
-- [fs] cifs: decode_negTokenInit had wrong calling sequence (Sachin Prabhu) [1303850]
-- [fs] cifs: Add missing defines for ACL query support (Sachin Prabhu) [1303850]
-- [fs] cifs: Add support for original fallocate (Sachin Prabhu) [1303850]
-- [fs] cifs: kill f_dentry uses (Sachin Prabhu) [1303850]
-- [fs] cifs: get rid of ->f_path.dentry->d_sb uses, add a new helper (Sachin Prabhu) [1303850]
-- [fs] cifs: Remove obsolete comment (Sachin Prabhu) [1303850]
-- [fs] cifs: Check minimum response length on query_network_interface (Sachin Prabhu) [1303850]
-- [fs] cifs: Workaround Mac server problem (Sachin Prabhu) [1303850]
-- [fs] cifs: Remap reserved posix characters by default - part 3 (Sachin Prabhu) [1303850]
-- [fs] cifs: Allow conversion of characters in Mac remap range - part 2 (Sachin Prabhu) [1303850]
-- [fs] cifs: Allow conversion of characters in Mac remap range - part 1 (Sachin Prabhu) [1303850]
-- [fs] cifs: mfsymlinks support for SMB2.1/SMB3. Part 2 query symlink (Sachin Prabhu) [1303850]
-- [fs] cifs: Add mfsymlinks support for SMB2.1/SMB3. Part 1 create symlink (Sachin Prabhu) [1303850]
-- [fs] cifs: Allow mknod and mkfifo on SMB2/SMB3 mounts (Sachin Prabhu) [1303850]
-- [fs] cifs: add defines for two new file attributes (Sachin Prabhu) [1303850]
-- [fs] cifs: replace strnicmp with strncasecmp (Sachin Prabhu) [1303850]
-- [fs] cifs: switch to use of p[dD] (Sachin Prabhu) [1303850]
-- [fs] mnt: Move the clear of MNT_LOCKED from copy_tree to its callers (Aristeu Rozanski) [1304328]
-- [fs] umount: Do not allow unmounting rootfs (Aristeu Rozanski) [1304328]
-- [fs] vfs: Lock in place mounts from more privileged users (Aristeu Rozanski) [1304328]
-- [tools] perf evsel: Disable branch flags/cycles for --callgraph lbr (Jiri Olsa) [1316684]
-- [x86] perf/x86: Fix LBR related crashes on Intel Atom (Jiri Olsa) [1316684]
-- [include] perf/x86: Add option to disable reading branch flags/cycles (Jiri Olsa) [1316684]
-- [x86] perf/x86/intel: Fix static checker warning in lbr enable (Jiri Olsa) [1316684]
-- [x86] perf/x86/intel: Fix LBR callstack issue caused by FREEZE_LBRS_ON_PMI (Jiri Olsa) [1316684]
-- [kernel] sched/fair: Fix division by zero sysctl_numa_balancing_scan_size ("Herton R. Krzesinski") [1314106]
-
-* Wed Mar 30 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-370.el7]
-- [mm] mempolicy: convert the shared_policy lock to a rwlock (George Beshers) [1303771]
-- [x86] Mark Intel Knights Landing processor as supported (Steve Best) [1158238]
-- [acpi] Workaround Cisco Systems _DSM ACPI bug (Prarit Bhargava) [1311315]
-- [drivers] core: Avoid NULL pointer dereferences in device_is_bound() (Jeremy McNicoll) [1309527]
-- [misc] pm: Avoid false-positive warnings in dev_pm_domain_set() (Jeremy McNicoll) [1309527]
-- [misc] mei: validate request value in client notify request ioctl (Jeremy McNicoll) [1309527]
-- [drivers] core: add device_is_bound() (Jeremy McNicoll) [1309527]
-- [misc] pm/domains: add setter for dev.pm_domain (Jeremy McNicoll) [1309527]
-- [misc] mei: fix fasync return value on error (Jeremy McNicoll) [1309527]
-- [misc] vmware_balloon: Support 2m page ballooning (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Do not limit the amount of frees and allocations in non-sleep mode (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Show capabilities of balloon and resulting capabilities in the debug-fs node (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Update balloon target on each lock/unlock (Dave Anderson) [1300078]
-- [misc] vmware_balloon: add batching to the vmw_balloon (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Add support for balloon capabilities (Dave Anderson) [1300078]
-- [misc] vmware_balloon: partially inline vmballoon_reserve_page (Dave Anderson) [1300078]
-- [misc] vmware_balloon: Remove braces to fix build for clang (Dave Anderson) [1300078]
-- [hwmon] ibmpowernv: Add OF compatibility table entry (Steve Best) [1321122]
-- [netdrv] ibmveth: check return of skb_linearize in ibmveth_start_xmit (Gustavo Duarte) [1313256]
-- [kernel] cpuset: fix sleeping function called from invalid context (Mateusz Guzik) [1069467]
-- [watchdog] hpwdt: Add support for WDIOC_SETOPTIONS (Nigel Croxon) [1316536]
-- [scsi] storvsc: fix SRB_STATUS_ABORTED handling (Cathy Avery) [1287040]
-- [scsi] storvsc: Fix a bug in the handling of SRB status flags (Cathy Avery) [1287040]
-- [scsi] storvsc: get rid of bounce buffer (Cathy Avery) [1287040]
-- [scsi] storvsc: Don't set the SRB_FLAGS_QUEUE_ACTION_ENABLE flag (Cathy Avery) [1287040]
-- [scsi] storvsc: Set the error code correctly in failure conditions (Cathy Avery) [1287040]
-- [scsi] storvsc: Set the error code correctly in failure conditions (Cathy Avery) [1287040]
-- [scsi] storvsc: use shost_for_each_device() instead of open coding (Cathy Avery) [1287040]
-- [scsi] storvsc: be more picky about scmnd->sc_data_direction (Cathy Avery) [1287040]
-- [scsi] storvsc: Set the tablesize based on the information given by the host (Cathy Avery) [1287040]
-- [scsi] storvsc: Don't assume that the scatterlist is not chained (Cathy Avery) [1287040]
-- [scsi] storvsc: Retrieve information about the capability of the target (Cathy Avery) [1287040]
-- [scsi] storvsc: Always send on the selected outgoing channel (Cathy Avery) [1287040]
-- [scsi] storvsc: Size the queue depth based on the ringbuffer size (Cathy Avery) [1287040]
-- [scsi] storvsc: Increase the ring buffer size (Cathy Avery) [1287040]
-- [scsi] vmbus: Support a vmbus API for efficiently sending page arrays (Cathy Avery) [1287040]
-- [powerpc] kvm: book3s_hv: Handle unexpected traps in guest entry/exit code better (Thomas Huth) [1320162]
-- [powerpc] kvm: book3s_hv: Prohibit setting illegal transaction state in MSR (Thomas Huth) [1320162]
-- [netdrv] mlx5e: Don't modify CQ before it was created (Kamal Heib) [1316951]
-- [netdrv] mlx5e: Don't try to modify CQ moderation if it is not supported (Kamal Heib) [1316951]
-- [netdrv] mlx4_en: Fix HW timestamp init issue upon system startup (Kamal Heib) [1295875]
-- [netdrv] mlx4_en: Remove dependency between timestamping capability and service_task (Kamal Heib) [1295875]
-- [x86] kernel: Fix time_shift in perf_event_mmap_page (Prarit Bhargava) [1303663]
-- [x86] kernel: Improve accuracy of perf/sched clock (Prarit Bhargava) [1303663]
-- [x86] kernel: Use preempt_disable_notrace() in cycles_2_ns() (Prarit Bhargava) [1303663]
-- [x86] kernel: Initialize multiplier to 0 (Prarit Bhargava) [1303663]
-- [x86] Rewrite cyc2ns() to avoid the need to disable IRQs (Prarit Bhargava) [1303663]
-- [x86] Move some cyc2ns() code around (Prarit Bhargava) [1303663]
-- [x86] Use mul_u64_u32_shr() for native_sched_clock() (Prarit Bhargava) [1303663]
-- [tools] cpupower: Fix build error in cpufreq-info (Prarit Bhargava) [1316657]
-- [tools] cpupower: fix how "cpupower frequency-info" interprets latency (Prarit Bhargava) [1316657]
-- [tools] cpupower: rework the "cpupower frequency-info" command (Prarit Bhargava) [1316657]
-- [tools] cpupower: Do not analyse offlined cpus (Prarit Bhargava) [1316657]
-- [tools] cpupower: Provide STATIC variable in Makefile for debug builds (Prarit Bhargava) [1316657]
-- [tools] cpupower: Fix precedence issue (Prarit Bhargava) [1316657]
-- [tools] power turbostat: use new name for MSR_PLATFORM_INFO (Prarit Bhargava) [1316657]
-- [tools] Creating a common structure initialization pattern for struct option (Prarit Bhargava) [1316657]
-- [tools] cpupower: Enable disabled Cstates if they are below max latency (Prarit Bhargava) [1316657]
-- [tools] cpupower: Remove debug message when using cpupower idle-set -D switch (Prarit Bhargava) [1316657]
-- [tools] cpupower: cpupower monitor reports uninitialized values for offline cpus (Prarit Bhargava) [1316657]
-- [tools] power turbostat: bugfix: print MAX_NON_TURBO_RATIO (Prarit Bhargava) [1316657]
-- [tools] power turbostat: simplify Bzy_MHz calculation (Prarit Bhargava) [1316657]
-- [tools] power turbosat: update version number (Prarit Bhargava) [1316657]
-- [tools] power turbostat: skl: Adjust for TSC difference from base frequency (Prarit Bhargava) [1316657]
-- [tools] power turbostat: ivb xeon: fix --debug regression (Prarit Bhargava) [1316657]
-- [tools] power turbostat: fix typo on DRAM column in Joules-mode (Prarit Bhargava) [1316657]
-- [tools] power turbostat: fix parameter passing for forked command (Prarit Bhargava) [1316657]
-- [tools] power turbostat: dump CONFIG_TDP (Prarit Bhargava) [1316657]
-- [tools] power turbostat: cpu0 is no longer hard-coded, so update output (Prarit Bhargava) [1316657]
-- [tools] x86/uapi: Do not export <asm/msr-index.h> as part of the user API headers (Prarit Bhargava) [1316657]
-- [tools] power turbostat: update turbostat(8) (Prarit Bhargava) [1316657]
-- [tools] cpupower: mperf monitor: fix output in MAX_FREQ_SYSFS mode (Prarit Bhargava) [1316657]
-
-* Fri Mar 25 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-369.el7]
-- [md] dm: fix rq_end_stats() NULL pointer in dm_requeue_original_request() (Mike Snitzer) [1314530 1317073]
-- [md] dm: use RHEL7's old blk_mq_alloc_request and blk_mq_complete_request interfaces (Mike Snitzer) [1314530 1317073]
-- [md] dm-bufio: virt_to_phys() doesn't change remainder modulo PAGE_SIZE (Mike Snitzer) [1314530 1317073]
-- [md] dm thin: consistently return -ENOSPC if pool has run out of data space (Mike Snitzer) [1314530 1317073]
-- [md] dm cache: bump the target version (Mike Snitzer) [1314530 1317073]
-- [md] dm cache: make sure every metadata function checks fail_io (Mike Snitzer) [1314530 1317073]
-- [md] dm: add missing newline between DM_DEBUG_BLOCK_STACK_TRACING and DM_BUFIO (Mike Snitzer) [1314530 1317073]
-- [md] dm cache policy smq: clarify that mq registration failure was for 'mq' (Mike Snitzer) [1314530 1317073]
-- [md] dm: return error if bio_integrity_clone() fails in clone_bio() (Mike Snitzer) [1314530 1317073]
-- [md] dm thin metadata: don't issue prefetches if a transaction abort has failed (Mike Snitzer) [1314530 1317073]
-- [include] dm snapshot: disallow the COW and origin devices from being identical (Mike Snitzer) [1314530 1317073]
-- [md] dm cache: make the 'mq' policy an alias for 'smq' (Mike Snitzer) [1314530 1317073]
-- [md] dm: drop unnecessary assignment of md->queue (Mike Snitzer) [1314530 1317073]
-- [md] dm: reorder 'struct mapped_device' members to fix alignment and holes (Mike Snitzer) [1314530 1317073]
-- [md] dm: remove dummy definition of 'struct dm_table' (Mike Snitzer) [1314530 1317073]
-- [md] dm: add 'dm_numa_node' module parameter (Mike Snitzer) [1314530 1317073]
-- [md] dm thin metadata: remove needless newline from subtree_dec() DMERR message (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: cleanup reinstate_path() et al based on code review (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: remove __pgpath_busy forward declaration, rename to pgpath_busy (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: switch from 'unsigned' to 'bool' for flags where appropriate (Mike Snitzer) [1314530 1317073]
-- [md] dm round robin: use percpu 'repeat_count' and 'current_path' (Mike Snitzer) [1314530 1317073]
-- [md] dm path selector: remove 'repeat_count' return from .select_path hook (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: push path selector locking down to path selectors (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: remove repeat_count support from multipath core (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: remove unnecessary casts in front of ti->private (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: use blk_mq_alloc_request() and blk_mq_free_request() directly (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: cleanup 'struct dm_mpath_io' management code (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: use blk-mq pdu for per-request 'struct dm_mpath_io' (Mike Snitzer) [1314530 1317073]
-- [md] dm: allow immutable request-based targets to use blk-mq pdu (Mike Snitzer) [1314530 1317073]
-- [include] dm: rename target's per_bio_data_size to per_io_data_size (Mike Snitzer) [1314530 1317073]
-- [md] dm: distinquish old .request_fn (dm-old) vs dm-mq request-based DM (Mike Snitzer) [1314530 1317073]
-- [md] dm: remove support for stacking dm-mq on .request_fn device(s) (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix a couple locking issues with use of block interfaces (Mike Snitzer) [1314530 1317073]
-- [md] dm: cleanup methods that requeue requests (Mike Snitzer) [1314530 1317073]
-- [md] dm: allocate blk_mq_tag_set rather than embed in mapped_device (Mike Snitzer) [1314530 1317073]
-- [md] dm: add 'dm_mq_nr_hw_queues' and 'dm_mq_queue_depth' module params (Mike Snitzer) [1314530 1317073]
-- [md] dm: optimize dm_request_fn() (Mike Snitzer) [1314530 1317073]
-- [md] dm: optimize dm_mq_queue_rq() (Mike Snitzer) [1314530 1317073]
-- [include] dm: set DM_TARGET_WILDCARD feature on "error" target (Mike Snitzer) [1314530 1317073]
-- [md] dm: cleanup dm_any_congested() (Mike Snitzer) [1314530 1317073]
-- [md] dm: remove unused dm_get_rq_mapinfo() (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix excessive dm-mq context switching (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix sparse "unexpected unlock" warnings in ioctl code (Mike Snitzer) [1314530 1317073]
-- [md] dm: do not return target from dm_get_live_table_for_ioctl() (Mike Snitzer) [1314530 1317073]
-- [md] dm mpath: fix infinite recursion in ioctl when no paths and !queue_if_no_path (Mike Snitzer) [1314530 1317073]
-- [md] dm: do not reuse dm_blk_ioctl block_device input as local variable (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix ioctl retry termination with signal (Mike Snitzer) [1314530 1317073]
-- [include] dm: add support for passing through persistent reservations (Mike Snitzer) [1314530 1317073]
-- [include] dm: refactor ioctl handling (Mike Snitzer) [1314530 1317073]
-- [md] dm: fix dm_rq_target_io leak on faults with .request_fn DM w_ blk-mq paths (Mike Snitzer) [1314530 1317073]
-- [md] dm snapshot: fix hung bios when copy error occurs (Mike Snitzer) [1314530 1317073]
-- [md] dm thin: bump thin and thin-pool target versions (Mike Snitzer) [1314530 1317073]
-- [md] dm verity: factor out structures and functions useful to separate object (Mike Snitzer) [1314530 1317073]
-- [md] dm verity: move dm-verity.c to dm-verity-target.c (Mike Snitzer) [1314530 1317073]
-- [md] dm verity: separate function for parsing opt args (Mike Snitzer) [1314530 1317073]
-- [md] dm verity: clean up duplicate hashing code (Mike Snitzer) [1314530 1317073]
-- [md] dm btree: factor out need_insert() helper (Mike Snitzer) [1314530 1317073]
-- [md] dm bufio: use BUG_ON instead of conditional call to BUG (Mike Snitzer) [1314530 1317073]
-- [md] dm bufio: store stacktrace in buffers to help find buffer leaks (Mike Snitzer) [1314530 1317073]
-- [md] dm bufio: return NULL to improve code clarity (Mike Snitzer) [1314530 1317073]
-- [md] dm block manager: cleanup code that prints stacktrace (Mike Snitzer) [1314530 1317073]
-- [md] dm: don't save and restore bi_private (Mike Snitzer) [1314530 1317073]
-- [md] dm thin metadata: make dm_thin_find_mapped_range() atomic (Mike Snitzer) [1314530 1317073]
-- [md] dm thin metadata: speed up discard of partially mapped volumes (Mike Snitzer) [1314530 1317073]
-- [md] dm crypt: fix a possible hang due to race condition on exit (Mike Snitzer) [1314530 1317073]
-- [md] dm thin: restore requested 'error_if_no_space' setting on OODS to WRITE transition (Mike Snitzer) [1314530 1317073]
-- [md] dm switch: simplify conditional in alloc_region_table() (Mike Snitzer) [1314530 1317073]
-- [md] dm delay: document that offsets are specified in sectors (Mike Snitzer) [1314530 1317073]
-- [md] dm delay: capitalize the start of an delay_ctr() error message (Mike Snitzer) [1314530 1317073]
-- [md] dm delay: Use DM_MAPIO macros instead of open-coded equivalents (Mike Snitzer) [1314530 1317073]
-- [md] dm linear: remove redundant target name from error messages (Mike Snitzer) [1314530 1317073]
-- [md] dm persistent data: eliminate unnecessary return values (Mike Snitzer) [1314530 1317073]
-- [md] dm: convert ffs to __ffs (Mike Snitzer) [1314530 1317073]
-- [md] dm: drop NULL test before kmem_cache_destroy() and mempool_destroy() (Mike Snitzer) [1314530 1317073]
-- [md] dm: initialize non-blk-mq queue data before queue is used (Mike Snitzer) [1314530 1317073]
-- [md] dm thin: fix missing pool reference count decrement in pool_ctr error path (Mike Snitzer) [1314530 1317073]
-- [md] dm snapshot persistent: fix missing cleanup in persistent_ctr error path (Mike Snitzer) [1314530 1317073]
-- [md] dm raid: fix round up of default region size (Mike Snitzer) [1314530 1317073]
-- [documentation] dm raid: document RAID 4_5_6 discard support (Mike Snitzer) [1314530 1317073]
-- [md] dm snapshot: add new persistent store option to support overflow (Mike Snitzer) [1314530 1317073]
-- [md] dm snapshot: don't invalidate on-disk image on snapshot write overflow (Mike Snitzer) [1314530 1317073]
-- [md] dm: remove unlikely() before IS_ERR() (Mike Snitzer) [1314530 1317073]
-- [md] dm: do not override error code returned from dm_get_device() (Mike Snitzer) [1314530 1317073]
-- [md] dm: test return value for DM_MAPIO_SUBMITTED (Mike Snitzer) [1314530 1317073]
-- [md] dm btree remove: remove unused function get_nr_entries() (Mike Snitzer) [1314530 1317073]
-- [md] dm btree: remove unused "dm_block_t root" parameter in btree_split_sibling() (Mike Snitzer) [1314530 1317073]
-- [md] dm cache policy smq: change the mutex to a spinlock (Mike Snitzer) [1314530 1317073]
-- [scsi] only re-lock door after EH on devices that were reset (Ewan Milne) [1316290]
-- [scsi] bnx2fc: Fix FCP RSP residual parsing (Maurizio Lombardi) [1306342]
-- [scsi] 3w-sas: fix command completion race (Tomas Henzl) [1294538]
-- [scsi] add use_cmd_list flag (Ewan Milne) [1265985]
-
-* Thu Mar 24 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-368.el7]
-- [net] netlink: Properly unbind in error conditions (Phil Sutter) [1238749]
-- [net] netlink: Replace rhash_portid with bound (Phil Sutter) [1238749]
-- [net] netlink: have netlink per-protocol bind function return an error code (Phil Sutter) [1238749]
-- [net] netlink: simplify nfnetlink_bind (Phil Sutter) [1238749]
-- [net] netlink: Fix autobind race condition that leads to zero port ID (Phil Sutter) [1238749]
-- [lib] rhashtable: Kill harmless RCU warning in rhashtable_walk_init (Phil Sutter) [1238749]
-- [lib] rhashtable: Enforce minimum size on initial hash table (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix walker list corruption (Phil Sutter) [1238749]
-- [lib] rhashtable: add function to replace an element (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove unnecessary wmb for future_tbl (Phil Sutter) [1238749]
-- [lib] rhashtable: Prevent spurious EBUSY errors on insertion (Phil Sutter) [1238749]
-- [lib] rhashtable: fix data race in rhashtable_rehash_one (Phil Sutter) [1238749]
-- [lib] rhashtable-test: extend to test concurrency (Phil Sutter) [1238749]
-- [net] netlink: don't hold mutex in rcu callback when releasing mmapd ring (Phil Sutter) [1238749]
-- [lib] rhashtable: Allow other tasks to be scheduled in large lookup loops (Phil Sutter) [1238749]
-- [lib] rhashtable: fix for resize events during table walk (Phil Sutter) [1238749]
-- [lib] rhashtable: add missing import <linux/export.h> (Phil Sutter) [1238749]
-- [net] netlink: Reset portid after netlink_insert failure (Phil Sutter) [1238749]
-- [lib] rhashtable: Add cap on number of elements in hash table (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Fix 64bit division (Phil Sutter) [1238749]
-- [lib] rhashtable: Simplify iterator code (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Detect insertion failures (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Use walker to test bucket statistics (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Do not allocate individual test objects (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Get rid of ptr in test_obj structure (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Measure time to insert, remove & traverse entries (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Remove unused TEST_NEXPANDS (Phil Sutter) [1238749]
-- [lib] rhashtable: don't attempt to grow when at max_size (Phil Sutter) [1238749]
-- [lib] rhashtable: Do not schedule more than one rehash if we can't grow further (Phil Sutter) [1238749]
-- [lib] rhashtable: Schedule async resize when sync realloc fails (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Remove bogus max_size setting (Phil Sutter) [1238749]
-- [lib] rhashtable: provide len to obj_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Disable automatic shrinking by default (Phil Sutter) [1238749]
-- [lib] rhashtable: Add rhashtable_free_and_destroy() (Phil Sutter) [1238749]
-- [lib] rhashtable: Mark internal/private inline functions as such (Phil Sutter) [1238749]
-- [lib] rhashtable: Use 'unsigned int' consistently (Phil Sutter) [1238749]
-- [lib] rhashtable: Extend RCU read lock into rhashtable_insert_rehash() (Phil Sutter) [1238749]
-- [lib] rhashtable: Add comment on choice of elasticity value (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix sleeping inside RCU critical section in walk_stop (Phil Sutter) [1238749]
-- [lib] rhashtable: Add immediate rehash during insertion (Phil Sutter) [1238749]
-- [lib] rhashtable: Allow GFP_ATOMIC bucket table allocation (Phil Sutter) [1238749]
-- [lib] rhashtable: Add multiple rehash support (Phil Sutter) [1238749]
-- [lib] rhashtable: Shrink to fit (Phil Sutter) [1238749]
-- [lib] netlink: Use default rhashtable hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Allow hashfn to be unset (Phil Sutter) [1238749]
-- [lib] rhashtable: Eliminate unnecessary branch in rht_key_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Add barrier to ensure we see new tables in walker (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix undeclared EEXIST build error on ia64 (Phil Sutter) [1238749]
-- [lib] rhashtable: Rip out obsolete out-of-line interface (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Use inlined rhashtable interface (Phil Sutter) [1238749]
-- [net] netfilter: Convert nft_hash to inlined rhashtable (Phil Sutter) [1238749]
-- [net] netlink: Move namespace into hash key (Phil Sutter) [1238749]
-- [lib] rhashtable: Allow hash/comparison functions to be inlined (Phil Sutter) [1238749]
-- [lib] rhashtable: Make rhashtable_init params argument const (Phil Sutter) [1238749]
-- [lib] rhashtable: Round up/down min/max_size to ensure we respect limit (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove max_shift and min_shift (Phil Sutter) [1238749]
-- [lib] rhashtable-test: Use rhashtable max_size instead of max_shift (Phil Sutter) [1238749]
-- [net] netlink: Use rhashtable max_size instead of max_shift (Phil Sutter) [1238749]
-- [lib] rhashtable: Introduce max_size/min_size (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove shift from bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: Annotate RCU locking of walkers (Phil Sutter) [1238749]
-- [lib] rhashtable: Avoid calculating hash again to unlock (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix rhashtable_remove failures (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix use-after-free in rhashtable_walk_stop (Phil Sutter) [1238749]
-- [lib] rhashtable: Move future_tbl into struct bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: Add rehash counter to bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: Free bucket tables asynchronously after rehash (Phil Sutter) [1238749]
-- [lib] rhashtable: Move seed init into bucket_table_alloc (Phil Sutter) [1238749]
-- [lib] rhashtable: Use SINGLE_DEPTH_NESTING (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix walker behaviour during rehash (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix read-side crash during rehash (Phil Sutter) [1238749]
-- [lib] rhashtable: kill ht->shift atomic operations (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix reader/rehash race (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove obj_raw_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove key length argument to key_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Use head_hashfn instead of obj_raw_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Move masking back into key_hashfn (Phil Sutter) [1238749]
-- [lib] rhashtable: Add annotation to nested lock (Phil Sutter) [1238749]
-- [lib] rhashtable: Add arbitrary rehash function (Phil Sutter) [1238749]
-- [lib] rhashtable: Move hash_rnd into bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: use cond_resched() (Phil Sutter) [1238749]
-- [lib] rhashtable: remove indirection for grow/shrink decision functions (Phil Sutter) [1238749]
-- [lib] rhashtable: unconditionally grow when max_shift is not specified (Phil Sutter) [1238749]
-- [lib] rhashtable: initialize all rhashtable walker members (Phil Sutter) [1238749]
-- [lib] rhashtable: don't allocate ht structure on stack in test_rht_init (Phil Sutter) [1238749]
-- [lib] rhashtable: ensure cache line alignment on bucket_table (Phil Sutter) [1238749]
-- [lib] rhashtable: allow to unload test module (Phil Sutter) [1238749]
-- [lib] rhashtable: better high order allocation attempts (Phil Sutter) [1238749]
-- [lib] rhashtable: don't test for shrink on insert, expansion on delete (Phil Sutter) [1238749]
-- [lib] rhashtable: using ERR_PTR requires linux/err.h (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix remove logic to avoid cross references between buckets (Phil Sutter) [1238749]
-- [lib] rhashtable: Avoid bucket cross reference after removal (Phil Sutter) [1238749]
-- [lib] rhashtable: Add more lock verification (Phil Sutter) [1238749]
-- [lib] rhashtable: Dump bucket tables on locking violation under PROVE_LOCKING (Phil Sutter) [1238749]
-- [lib] rhashtable: Wait for RCU readers after final unzip work (Phil Sutter) [1238749]
-- [lib] rhashtable: Use a single bucket lock for sibling buckets (Phil Sutter) [1238749]
-- [lib] rhashtable: key_hashfn() must return full hash value (Phil Sutter) [1238749]
-- [net] netlink: Use rhashtable walk iterator (Phil Sutter) [1238749]
-- [lib] rhashtable: Introduce rhashtable_walk_* (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix potential crash on destroy in rhashtable_shrink (Phil Sutter) [1238749]
-- [lib] rhashtable: Make selftest modular (Phil Sutter) [1238749]
-- [net] netlink: Kill redundant net argument in netlink_insert (Phil Sutter) [1238749]
-- [lib] rhashtable: rhashtable_remove() must unlink in both tbl and future_tbl (Phil Sutter) [1238749]
-- [lib] rhashtable: fix rht_for_each_entry_safe() endless loop (Phil Sutter) [1238749]
-- [net] netlink: Fix netlink_insert EADDRINUSE error (Phil Sutter) [1238749]
-- [lib] rhashtable: Fix race in rhashtable_destroy() and use regular work_struct (Phil Sutter) [1238749]
-- [lib] rhashtable: Lower/upper bucket may map to same lock while shrinking (Phil Sutter) [1238749]
-- [lib] rhashtable: add a note for grow and shrink decision functions (Phil Sutter) [1238749]
-- [net] netlink: eliminate nl_sk_hash_lock (Phil Sutter) [1238749]
-- [lib] rhashtable: involve rhashtable_lookup_compare_insert routine (Phil Sutter) [1238749]
-- [lib] rhashtable: initialize atomic nelems variable (Phil Sutter) [1238749]
-- [lib] rhashtable: avoid unnecessary wakeup for worker queue (Phil Sutter) [1238749]
-- [lib] rhashtable: future table needs to be traversed when remove an object (Phil Sutter) [1238749]
-- [lib] rhashtable: involve rhashtable_lookup_insert routine (Phil Sutter) [1238749]
-- [lib] rhashtable: introduce rhashtable_wakeup_worker helper function (Phil Sutter) [1238749]
-- [lib] rhashtable: optimize rhashtable_lookup routine (Phil Sutter) [1238749]
-- [lib] rhashtable: fix missing header (Phil Sutter) [1238749]
-- [net] netlink: Lockless lookup with RCU grace period in socket release (Phil Sutter) [1238749]
-- [lib] rhashtable: Supports for nulls marker (Phil Sutter) [1238749]
-- [lib] rhashtable: Per bucket locks & deferred expansion/shrinking (Phil Sutter) [1238749]
-- [kernel] spinlock: Add spin_lock_bh_nested() (Phil Sutter) [1238749]
-- [lib] rhashtable: nft_hash: Remove rhashtable_remove_pprev() (Phil Sutter) [1238749]
-- [lib] rhashtable: Factor out bucket_tail() function (Phil Sutter) [1238749]
-- [lib] rhashtable: Convert bucket iterators to take table and index (Phil Sutter) [1238749]
-- [lib] rhashtable: Use rht_obj() instead of manual offset calculation (Phil Sutter) [1238749]
-- [lib] rhashtable: Do hashing inside of rhashtable_lookup_compare() (Phil Sutter) [1238749]
-- [net] netlink: Don't reorder loads/stores before marking mmap netlink frame as available (Phil Sutter) [1238749]
-- [net] netlink: use jhash as hashfn for rhashtable (Phil Sutter) [1238749]
-- [lib] rhashtable: Check for count mismatch while iterating in selftest (Phil Sutter) [1238749]
-- [lib] rhashtable: Drop gfp_flags arg in insert/remove functions (Phil Sutter) [1238749]
-- [lib] rhashtable: Remove weird non-ASCII characters from comments (Phil Sutter) [1238749]
-- [lib] rhashtable: Resizable, Scalable, Concurrent Hash Table (Phil Sutter) [1238749]
-- [kernel] softirq: Use _RET_IP_ (Phil Sutter) [1238749]
-
-* Wed Mar 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-367.el7]
-- [fs] userfaultfd: don't block on the last VM updates at exit time (Andrea Arcangeli) [1314136]
-- [mm] thp: fix SMP race condition between THP page fault and MADV_DONTNEED (Andrea Arcangeli) [1314132]
-- [x86] Remove get_hbp_len and replace with bp_len (Kim Naru) [928536]
-- [x86] perf: AMD support for bp_len > HW_BREAKPOINT_LEN_8 (Kim Naru) [928536]
-- [scsi] sd: implement the Persistent Reservation API (Mike Snitzer) [1317629]
-- [block] add an API for Persistent Reservations (Mike Snitzer) [1317629]
-- [block] cleanup blkdev_ioctl (Mike Snitzer) [1317629]
-- [hwmon] fam15h_power: Add bit masking for tdp_limit (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add support for AMD new 15h processors (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add max compute unit accumulated power (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Enable power1_input on AMD Carrizo (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Refactor attributes for dynamically added (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add ratio of Tsample to the PTSC period (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Update running_avg_capture bit field to 28 (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Rename fam15h_power_is_internal_node0 function (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add support for AMD Carrizo (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Fix NB device ID for F16h M30h (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Make actual power reporting conditional (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Add support for two more processors (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Remove needless pci dev id (Kim Naru) [1135023]
-- [hwmon] fam15h_power: Convert to devm_hwmon_device_register_with_groups (Kim Naru) [1135023]
-- [kernel] sched, time: Switch VIRT_CPU_ACCOUNTING_GEN to jiffy granularity (Rik van Riel) [1217244]
-- [kernel] time, acct: Drop irq save & restore from __acct_update_integrals() (Rik van Riel) [1217244]
-- [kernel] acct, time: Change indentation in __acct_update_integrals() (Rik van Riel) [1217244]
-- [kernel] sched, time: Remove non-power-of-two divides from __acct_update_integrals() (Rik van Riel) [1217244]
-- [kernel] sched/cputime: Convert vtime_seqlock to seqcount (Rik van Riel) [1217244]
-- [netdrv] mlx4: Handle return codes in mlx4_qp_attach_common (Kamal Heib) [1184526]
-- [cpufreq] intel_pstate: Minor cleanup for FRAC_BITS (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Account for non C0 time (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Configurable algorithm to get target pstate (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Fix "performance" mode behavior with HWP enabled (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Replace BYT with ATOM (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Fix intel_pstate powersave min_perf_pct value (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: get P1 from TAR when available (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Use separate max pstate for scaling (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Fix user input of min/max to legal policy region (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: append more Oracle OEM table id to vendor bypass list (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Fix possible overflow complained by Coverity (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: honor user space min_perf_pct override on resume (Prarit Bhargava) [1283337]
-- [cpufreq] intel_pstate: Add tsc collection and keep previous target pstate (Prarit Bhargava) [1283337]
-- [powerpc] eeh: Fix PE location code (Gustavo Duarte) [1302537]
-
-* Fri Mar 18 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-366.el7]
-- [mm] revert "write to force_empty will cause soft lockup" (Rafael Aquini) [1317568]
-- [mm] madvise: fix MADV_WILLNEED on shmem swapouts (Mitsuhiro Tanino) [1312729]
-- [md] dm-space-map-metadata: remove unused variable in brb_pop() (Mike Snitzer) [1286500]
-- [md] dm-space-map-metadata: fix ref counting bug when bootstrapping a new space map (Mike Snitzer) [1286500]
-- [md] dm-thin-metadata: fix bug when taking a metadata snapshot (Mike Snitzer) [1286500]
-- [md] dm-btree: fix bufio buffer leaks in dm_btree_del() error path (Mike Snitzer) [1290911]
-- [md] dm-btree: fix leak of bufio-backed block in btree_split_sibling error path (Mike Snitzer) [1290911]
-- [tty] pty: make sure super_block is still valid in final /dev/tty close ("Herton R. Krzesinski") [1291313]
-- [tty] pty: fix possible use after free of tty->driver_data ("Herton R. Krzesinski") [1291313]
-- [ata] ahci: Remove obsolete Intel Lewisburg SATA RAID device IDs (Steve Best) [1317039]
-- [idle] intel_idle: Support for Intel Xeon Phi Processor x200 Product Family (Steve Best) [1145367]
-- [idle] intel_idle: Skylake Client Support - updated (Prarit Bhargava) [1274037]
-- [s390] compat: correct restore of high gprs on signal return (Hendrik Brueckner) [1313722]
-- [edac] sb_edac: Fix logic when computing DIMM sizes on Xeon Phi (Aristeu Rozanski) [1145354]
-- [edac] sb_edac: Set fixed DIMM width on Xeon Knights Landing (Aristeu Rozanski) [1145354]
-- [edac] sb_edac: Add Knights Landing (Xeon Phi gen 2) support (Aristeu Rozanski) [1145354]
-- [edac] sb_edac: Add support for duplicate device IDs (Aristeu Rozanski) [1145354]
-- [edac] sb_edac: Virtualize several hard-coded functions (Aristeu Rozanski) [1145354]
-- [edac] Add DDR4 flag (Aristeu Rozanski) [1145354]
-- [block] virtio-blk: use VIRTIO_BLK_F_WCE and VIRTIO_BLK_F_CONFIG_WCE in virtio1 (Fam Zheng) [1266008]
-- [include] perf/core: Drop PERF_EVENT_TXN (Jiri Olsa) [1274454]
-- [powerpc] perf/powerpc/hv-24x7: Use PMU_TXN_READ interface (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Simplify extracting counter from result buffer (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Whitespace - fix parameter alignment (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Add missing put_cpu_var() (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Break up single_24x7_request (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Define update_event_count() (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Whitespace cleanup (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Define add_event_to_24x7_request() (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Rename hv_24x7_event_update (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Move debug prints to separate function (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Drop event_24x7_request() (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Use pr_devel() to log message (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Remove unnecessary parameter (Jiri Olsa) [1274454]
-- [powerpc] perf/hv-24x7: Modify definition of request and result buffers (Jiri Olsa) [1274454]
-- [kernel] perf/core: Define PERF_PMU_TXN_READ interface (Jiri Olsa) [1274454]
-- [kernel] perf/core: Add return value for perf_event_read() (Jiri Olsa) [1274454]
-- [kernel] perf/core: Invert perf_read_group() loops (Jiri Olsa) [1274454]
-- [kernel] perf/core: Add group reads to perf_event_read() (Jiri Olsa) [1274454]
-- [kernel] perf/core: Rename perf_event_read_{one, group}, perf_read_hw (Jiri Olsa) [1274454]
-- [kernel] perf/core: Split perf_event_read() and perf_event_count() (Jiri Olsa) [1274454]
-- [kernel] perf/core: Add a 'flags' parameter to the PMU transactional interfaces (Jiri Olsa) [1274454]
-- [powerpc] kvm: book3s_hv: Sanitize special-purpose register values on guest exit (Thomas Huth) [1313725]
-- [powerpc] pseries: Limit EPOW reset event warnings (Gustavo Duarte) [1303078]
-- [powerpc] ioda: Set "read" permission when "write" is set (Gustavo Duarte) [1297885]
-
-* Mon Mar 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-365.el7]
-- [include] usb: Add phy/phy.h to help keep files in sync (Don Zickus) [1303209]
-- [usb] cp210x: add ID for HubZ dual ZigBee and Z-Wave dongle (Don Zickus) [1303209]
-- [netdrv] cdc_ncm: Fix tx_bytes statistics (Don Zickus) [1303209]
-- [netdrv] usbnet: avoid integer overflow in start_xmit (Don Zickus) [1303209]
-- [netdrv] drivers/net/usb: Add support for 'Lenovo OneLink Pro Dock' (Don Zickus) [1303209]
-- [usb] cp210x: add ID for KCF Technologies PRN device (Don Zickus) [1303209]
-- [netdrv] usbnet: rename work handler (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: add device id for Lenovo TP USB 3.0 Ethernet (Don Zickus) [1303209]
-- [include] usbnet: Fix tx_bytes statistic running backward in cdc_ncm (Don Zickus) [1303209]
-- [usb] f81232: fix some minor style issues (Don Zickus) [1303209]
-- [usb] f81232: modify/add author (Don Zickus) [1303209]
-- [usb] f81232: cleanup non-used define (Don Zickus) [1303209]
-- [usb] f81232: clarify f81232_ioctl() and fix (Don Zickus) [1303209]
-- [usb] f81232: implement set_termios() (Don Zickus) [1303209]
-- [usb] f81232: implement port enable/disable method (Don Zickus) [1303209]
-- [usb] f81232: implement MCR/MSR function (Don Zickus) [1303209]
-- [usb] f81232: implement read IIR/MSR with endpoint (Don Zickus) [1303209]
-- [usb] f81232: change lock mechanism (Don Zickus) [1303209]
-- [usb] f81232: implement RX bulk-in EP (Don Zickus) [1303209]
-- [usb] f81232: rename private struct member name (Don Zickus) [1303209]
-- [include] usb: otg-fsm: move 2 otg fsm timers definition to otg_fsm_timer (Don Zickus) [1303209]
-- [usb] Move usb_disabled() towards top of the file (Don Zickus) [1303209]
-- [netdrv] cx82310_eth: fix semicolon.cocci warnings (Don Zickus) [1303209]
-- [netdrv] cx82310_eth: wait for firmware to become ready (Don Zickus) [1303209]
-- [netdrv] revert "net: cx82310_eth: use common match macro" (Don Zickus) [1303209]
-- [usb] ehci-msm: Remove dead dependency (Don Zickus) [1303209]
-- [usb] load usb phy earlier (Don Zickus) [1303209]
-- [usb] common: otg-fsm: only signal connect after switching to peripheral (Don Zickus) [1303209]
-- [netdrv] net: usb: Use eth_<foo>_addr instead of memset (Don Zickus) [1303209]
-- [usb] ftdi_sio: Add jtag quirk support for Cyber Cortex AV boards (Don Zickus) [1303209]
-- [include] usbnet: Fix tx_packets stat for FLAG_MULTI_FRAME drivers (Don Zickus) [1303209]
-- [netdrv] net: asix: add support for the Sitecom LN-028 USB adapter (Don Zickus) [1303209]
-- [usb] ftdi_sio: add PIDs for Actisense USB devices (Don Zickus) [1303209]
-- [netdrv] hso: replace current->state by __set_current_state() (Don Zickus) [1303209]
-- [netdrv] hso: always read interface number from the current altsetting (Don Zickus) [1303209]
-- [netdrv] usb: plusb: Add support for National Instruments host-to-host cable (Don Zickus) [1303209]
-- [netdrv] r8152: support setting rx coalesce (Don Zickus) [1303209]
-- [netdrv] r8152: change rx early size when the mtu is changed (Don Zickus) [1303209]
-- [netdrv] r8152: separate USB_RX_EARLY_AGG (Don Zickus) [1303209]
-- [netdrv] r8152: restore hw settings (Don Zickus) [1303209]
-- [usb] use *pb[l] to print bitmaps including cpumasks and nodemasks (Don Zickus) [1303209]
-- [netdrv] hso: fix rx parsing logic when skb allocation fails (Don Zickus) [1303209]
-- [usb] pm: Remove unneeded #ifdef and associated dead code (Don Zickus) [1303209]
-- [netdrv] r8152: use BIT macro (Don Zickus) [1303209]
-- [netdrv] r8152: replace get_protocol with vlan_get_protocol (Don Zickus) [1303209]
-- [netdrv] r8152: adjust the line feed for hw_features (Don Zickus) [1303209]
-- [netdrv] r8152: check RTL8152_UNPLUG for rtl8152_close (Don Zickus) [1303209]
-- [netdrv] r8152: check linking status with netif_carrier_ok (Don Zickus) [1303209]
-- [netdrv] r8152: adjust lpm timer (Don Zickus) [1303209]
-- [netdrv] r8152: adjust rx_bottom (Don Zickus) [1303209]
-- [netdrv] hso: Use static attribute groups for sysfs entry (Don Zickus) [1303209]
-- [netdrv] net: usb: sr9700: Use 'SR_' prefix for the common register macros (Don Zickus) [1303209]
-- [netdrv] hso: fix rfkill name conflicts (Don Zickus) [1303209]
-- [netdrv] hso: add missing cancel_work_sync in disconnect() (Don Zickus) [1303209]
-- [netdrv] hso: update serial_table in usb disconnect method (Don Zickus) [1303209]
-- [netdrv] hso: move tty_unregister outside hso_serial_common_free() (Don Zickus) [1303209]
-- [netdrv] hso: replace reset_device work by usb_queue_reset_device() (Don Zickus) [1303209]
-- [netdrv] hso: rename hso_dev into serial in hso_free_interface() (Don Zickus) [1303209]
-- [netdrv] hso: fix small indentation error (Don Zickus) [1303209]
-- [netdrv] hso: fix memory leak in hso_create_rfkill() (Don Zickus) [1303209]
-- [netdrv] hso: fix memory leak when device disconnects (Don Zickus) [1303209]
-- [netdrv] hso: fix crash when device disappears while serial port is open (Don Zickus) [1303209]
-- [netdrv] hso: remove useless header file timer.h (Don Zickus) [1303209]
-- [usb] isp1760: Add device controller support (Don Zickus) [1303209]
-- [usb] isp1760: Move core code to isp1760-core.c (Don Zickus) [1303209]
-- [usb] cp210x: add ID for RUGGEDCOM USB Serial Console (Don Zickus) [1303209]
-- [include] usb: host: Introduce flag to enable use of 64-bit dma_mask for ehci-platform (Don Zickus) [1303209]
-- [netdrv] usbnet: re-use native hex2bin() (Don Zickus) [1303209]
-- [netdrv] r8152: remove sram_read (Don Zickus) [1303209]
-- [netdrv] r8152: remove generic_ocp_read before writing (Don Zickus) [1303209]
-- [netdrv] r8152: replace tasklet with NAPI (Don Zickus) [1303209]
-- [netdrv] net: rename vlan_tx_* helpers since "tx" is misleading there (Don Zickus) [1303209]
-- [netdrv] usb/kaweth: use GFP_ATOMIC under spin_lock in usb_start_wait_urb() (Don Zickus) [1303209]
-- [netdrv] r8152: check the status before submitting rx (Don Zickus) [1303209]
-- [netdrv] r8152: call rtl_start_rx after netif_carrier_on (Don Zickus) [1303209]
-- [include] usb: phy: generic: add vbus support (Don Zickus) [1303209]
-- [include] usb: phy: change some comments (Don Zickus) [1303209]
-- [include] usb: ehci-platform: Support ehci reset after resume quirk (Don Zickus) [1303209]
-- [netdrv] kconfig: use bool instead of boolean for type definition attributes (Don Zickus) [1303209]
-- [netdrv] r8152: support ndo_features_check (Don Zickus) [1303209]
-- [usb] cp210x: add IDs for CEL USB sticks and MeshWorks devices (Don Zickus) [1303209]
-- [netdrv] qmi_wwan: Set random MAC on devices with buggy fw (Don Zickus) [1303209]
-- [usb] cp210x: fix ID for production CEL MeshConnect USB Stick (Don Zickus) [1303209]
-- [usb] pm / kconfig: Replace PM_RUNTIME with PM in dependencies (Don Zickus) [1303209]
-- [usb] printk: add and use LOGLEVEL_<level> defines for KERN_<LEVEL> equivalents (Don Zickus) [1303209]
-- [netdrv] r8152: redefine REALTEK_USB_DEVICE (Don Zickus) [1303209]
-- [include] usb / pm: Drop CONFIG_PM_RUNTIME from the USB core (Don Zickus) [1303209]
-- [usb] usb: host: Remove ehci-octeon and ohci-octeon drivers (Don Zickus) [1303209]
-- [usb] uas: Add no-uas quirk for Hitachi usb-3 enclosures 4971:1012 (Don Zickus) [1303209]
-- [netdrv] net: usb: Deletion of unnecessary checks before the function call "kfree" (Don Zickus) [1303209]
-- [netdrv] r8152: adjust rtl_start_rx (Don Zickus) [1303209]
-- [netdrv] r8152: adjust r8152_submit_rx (Don Zickus) [1303209]
-- [include] usb: phy: introduce usb_phy_set_event interface (Don Zickus) [1303209]
-- [usb] treewide: fix typo in printk and Kconfig (Don Zickus) [1303209]
-- [netdrv] usbnet: rtl8150: remove unused variable (Don Zickus) [1303209]
-- [usb] hid: yet another buggy ELAN touchscreen (Don Zickus) [1303209]
-- [netdrv] qmi_wwan: Add support for HP lt4112 LTE/HSPA+ Gobi 4G Modem (Don Zickus) [1303209]
-- [netdrv] r8152: check RTL8152_UNPLUG and netif_running before autoresume (Don Zickus) [1303209]
-- [netdrv] r8152: clear the flag of SCHEDULE_TASKLET in tasklet (Don Zickus) [1303209]
-- [netdrv] r8152: remove the duplicate init for the list of rx_done (Don Zickus) [1303209]
-- [netdrv] usbnet: smsc95xx: dereferencing NULL pointer (Don Zickus) [1303209]
-- [netdrv] asix: Do full reset during ax88772_bind (Don Zickus) [1303209]
-- [netdrv] cdc-ether: implement MULTICAST flag on the device (Don Zickus) [1303209]
-- [netdrv] r8152: remove the definitions of the PID (Don Zickus) [1303209]
-- [netdrv] r8152: modify rtl_ops_init (Don Zickus) [1303209]
-- [netdrv] r8152: move r8152b_get_version (Don Zickus) [1303209]
-- [netdrv] r8152: disable the tasklet by default (Don Zickus) [1303209]
-- [usb] core: notify disconnection when core detects disconnect (Don Zickus) [1303209]
-- [usb] core: need to call usb_phy_notify_connect after device setup (Don Zickus) [1303209]
-- [usb] Remove references to non-existent PLAT_S5P symbol (Don Zickus) [1303209]
-- [usb] allow to supply the PHY in the drivers when using HCD (Don Zickus) [1303209]
-- [include] usb: add support to the generic PHY framework in OTG (Don Zickus) [1303209]
-- [include] usb: rename phy to usb_phy in OTG (Don Zickus) [1303209]
-- [include] usb: move the OTG state from the USB PHY to the OTG structure (Don Zickus) [1303209]
-- [netdrv] r8152: stop submitting intr for -EPROTO (Don Zickus) [1303209]
-- [netdrv] r8152: set RTL8152_UNPLUG when finding -ENODEV (Don Zickus) [1303209]
-- [netdrv] r8152: check WORK_ENABLE in suspend function (Don Zickus) [1303209]
-- [netdrv] r8152: reset tp->speed before autoresuming in open function (Don Zickus) [1303209]
-- [netdrv] r8152: clear SELECTIVE_SUSPEND when autoresuming (Don Zickus) [1303209]
-- [netdrv] r8152: support nway_reset of ethtool (Don Zickus) [1303209]
-- [netdrv] r8152: rename tx_underun (Don Zickus) [1303209]
-- [netdrv] cdc-ether: handle promiscuous mode with a set_rx_mode callback (Don Zickus) [1303209]
-- [netdrv] cdc-ether: extract usbnet_cdc_update_filter function (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: fix bonding failure (Don Zickus) [1303209]
-- [netdrv] r8152: return -EBUSY for runtime suspend (Don Zickus) [1303209]
-- [netdrv] r8152: add mutex for hw settings (Don Zickus) [1303209]
-- [netdrv] r8152: adjust usb_autopm_xxx (Don Zickus) [1303209]
-- [netdrv] r8152: autoresume before setting feature (Don Zickus) [1303209]
-- [netdrv] r8152: nway reset after setting eee (Don Zickus) [1303209]
-- [netdrv] r8152: autoresume before setting MAC address (Don Zickus) [1303209]
-- [netdrv] asix: Don't reset PHY on if_up for ASIX 88772 (Don Zickus) [1303209]
-- [usb] host: st: fix typo 'CONFIG_USB_EHCI_HCD_ST' (Don Zickus) [1303209]
-- [netdrv] r8152: disable power cut for RTL8153 (Don Zickus) [1303209]
-- [netdrv] r8152: remove clearing bp (Don Zickus) [1303209]
-- [netdrv] r8152: fix setting RTL8152_UNPLUG (Don Zickus) [1303209]
-- [include] usb: hcd: add generic PHY support (Don Zickus) [1303209]
-- [include] usb: rename phy to usb_phy in HCD (Don Zickus) [1303209]
-- [usb] host: st: fix ehci/ohci driver selection (Don Zickus) [1303209]
-- [usb] core: log higher level message on malformed LANGID descriptor (Don Zickus) [1303209]
-- [netdrv] r8152: support ethtool eee (Don Zickus) [1303209]
-- [netdrv] r8152: add functions to set EEE (Don Zickus) [1303209]
-- [netdrv] r8152: change the EEE definition (Don Zickus) [1303209]
-- [netdrv] r8152: fix the carrier off when autoresuming (Don Zickus) [1303209]
-- [usb] treewide: Fix typos in Kconfig (Don Zickus) [1303209]
-- [usb] host: ohci-st: Add OHCI driver support for ST STB devices (Don Zickus) [1303209]
-- [include] usb: common: add API to get if the platform supports TPL (Don Zickus) [1303209]
-- [netdrv] r8152: disable ALDPS (Don Zickus) [1303209]
-- [usb] serial: remove zte_ev driver (Don Zickus) [1303209]
-- [netdrv] r8152: support VLAN (Don Zickus) [1303209]
-- [netdrv] r8152: use usleep_range (Don Zickus) [1303209]
-- [netdrv] r8152: use eth_hw_addr_random (Don Zickus) [1303209]
-- [netdrv] r8152: change the location of rtl8152_set_mac_address (Don Zickus) [1303209]
-- [netdrv] r8152: rename rx_buf_sz (Don Zickus) [1303209]
-- [netdrv] r8152: reduce the number of Tx (Don Zickus) [1303209]
-- [usb] zte_ev: fix removed PIDs (Don Zickus) [1303209]
-- [netdrv] r8152: replace strncpy with strlcpy (Don Zickus) [1303209]
-- [netdrv] r8152: check code with checkpatch.pl (Don Zickus) [1303209]
-- [usb] zte_ev: remove duplicate Qualcom PID (Don Zickus) [1303209]
-- [usb] zte_ev: remove duplicate Gobi PID (Don Zickus) [1303209]
-- [netdrv] net: fix USB network driver config option (Don Zickus) [1303209]
-- [netdrv] net: reduce USB network driver config options (Don Zickus) [1303209]
-- [netdrv] net: remove spurious zd1201 rule (Don Zickus) [1303209]
-- [netdrv] net/usb/hso: Add support for Option GTM671WFS (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Add ethtool ops for EEE support (Don Zickus) [1303209]
-- [netdrv] cdc-ether: clean packet filter upon probe (Don Zickus) [1303209]
-- [netdrv] r8152: fix the checking of the usb speed (Don Zickus) [1303209]
-- [usb] staging: keucr: remove driver (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add two Sierra Wireless/Netgear devices (Don Zickus) [1303209]
-- [usb] scsi: Remove CONFIG_SCSI_MULTI_LUN (Don Zickus) [1303209]
-- [netdrv] hso: fix deadlock when receiving bursts of data (Don Zickus) [1303209]
-- [netdrv] hso: remove unused workqueue (Don Zickus) [1303209]
-- [netdrv] r8152: fix r8152_csum_workaround function (Don Zickus) [1303209]
-- [netdrv] usbnet: smsc95xx: add reset_resume function with reset operation (Don Zickus) [1303209]
-- [netdrv] r8152: support jumbo frame for RTL8153 (Don Zickus) [1303209]
-- [usb] host: xhci-plat: add support for the R-Car H2 and M2 xHCI controllers (Don Zickus) [1303209]
-- [netdrv] r8152: wake up the device before dumping the hw counter (Don Zickus) [1303209]
-- [netdrv] r8152: increase the tx timeout (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: Add ID for Telewell TW-LTE 4G v2 (Don Zickus) [1303209]
-- [usb] kconfig: make EHCI_MSM selectable for QCOM SOCs (Don Zickus) [1303209]
-- [netdrv] usb: gadget: net2280: Add support for PLX USB338X (Don Zickus) [1303209]
-- [netdrv] revert "tools: ffs-test: convert to new descriptor format fixing compilation error" (Don Zickus) [1303209]
-- [netdrv] tools: ffs-test: convert to new descriptor format fixing compilation error (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Olivetti Olicard modems (Don Zickus) [1303209]
-- [netdrv] ipheth: Add support for iPad 2 and iPad 3 (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: interface #11 in Sierra Wireless MC73xx is not QMI (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add additional Sierra Wireless QMI devices (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Netgear AirCard 341U (Don Zickus) [1303209]
-- [netdrv] r8152: Use kmemdup instead of kmalloc + memcpy (Don Zickus) [1303209]
-- [include] revert "usb: gadget: net2280: Add support for PLX USB338X" (Don Zickus) [1303209]
-- [include] usb: cdc-wdm: properly include types.h (Don Zickus) [1303209]
-- [include] usb: cdc-wdm: export cdc-wdm uapi header (Don Zickus) [1303209]
-- [include] usb: gadget: net2280: Add support for PLX USB338X (Don Zickus) [1303209]
-- [usb] ohci: sort out dependencies for lpc32xx and omap (Don Zickus) [1303209]
-- [usb] ohci-da8xx can only be built-in (Don Zickus) [1303209]
-- [usb] host: xhci-plat: add support for the Armada 375/38x XHCI controllers (Don Zickus) [1303209]
-- [usb] common: rename phy-fsm-usb.c to usb-otg-fsm.c (Don Zickus) [1303209]
-- [usb] Add support for using a MAX3421E chip as a host driver (Don Zickus) [1303209]
-- [usb] phy: msm: reset controller is mandatory now (Don Zickus) [1303209]
-- [netdrv] net: get rid of SET_ETHTOOL_OPS (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add a number of Dell devices (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add a number of CMOTech devices (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Alcatel L800MA (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Olivetti Olicard 500 (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Sierra Wireless MC7305/MC7355 (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Sierra Wireless MC73xx (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Sierra Wireless EM7355 (Don Zickus) [1303209]
-- [usb] ehci: Export the ehci_hub_control function (Don Zickus) [1303209]
-- [usb] ohci: Export the OHCI hub control and status_data functions (Don Zickus) [1303209]
-- [include] usb: phy: generic: switch over to IS_ENABLED() (Don Zickus) [1303209]
-- [include] usb: phy: generic: allow multiples calls to usb_phy_generic_register() (Don Zickus) [1303209]
-- [include] usb: phy: rename <linux/usb/usb_phy_gen_xceiv.h> to <linux/usb/usb_phy_generic.h> (Don Zickus) [1303209]
-- [include] usb: phy: rename usb_nop_xceiv to usb_phy_generic (Don Zickus) [1303209]
-- [usb] arch: Mass conversion of smp_mb__*() (Don Zickus) [1303209]
-- [netdrv] r8152: check RTL8152_UNPLUG (Don Zickus) [1303209]
-- [netdrv] qmi_wwan/cdc_ether: move Novatel E371 (1410:9011) to qmi_wwan (Don Zickus) [1303209]
-- [netdrv] lg-vl600: Convert uses of __constant_<foo> to <foo> (Don Zickus) [1303209]
-- [netdrv] r8152: support dumping the hw counters (Don Zickus) [1303209]
-- [netdrv] r8152: add skb_cow_head (Don Zickus) [1303209]
-- [include] usbcore: rename struct dev_state to struct usb_dev_state (Don Zickus) [1303209]
-- [include] staging: usbip: claim ports used by shared devices (Don Zickus) [1303209]
-- [netdrv] r8152: support IPv6 (Don Zickus) [1303209]
-- [netdrv] r8152: support TSO (Don Zickus) [1303209]
-- [netdrv] r8152: support rx checksum (Don Zickus) [1303209]
-- [netdrv] r8152: calculate the dropped packets for rx (Don Zickus) [1303209]
-- [netdrv] r8152: up the priority of the transmission (Don Zickus) [1303209]
-- [netdrv] r8152: check tx agg list before spin lock (Don Zickus) [1303209]
-- [netdrv] r8152: replace spin_lock_irqsave and spin_unlock_irqrestore (Don Zickus) [1303209]
-- [netdrv] revert "usbnet: ax88179_178a: enable tso if usb host supports sg dma" (Don Zickus) [1303209]
-- [usb] don't use PREPARE_DELAYED_WORK (Don Zickus) [1303209]
-- [netdrv] r8152: remove rtl8152_get_stats (Don Zickus) [1303209]
-- [netdrv] r8152: replace tp->netdev with netdev (Don Zickus) [1303209]
-- [netdrv] r8152: deal with the empty line and space (Don Zickus) [1303209]
-- [netdrv] r8152: disable the ECM mode (Don Zickus) [1303209]
-- [include] usb: phy: Add set_wakeup API (Don Zickus) [1303209]
-- [netdrv] usb ax88179/178a: Support D-Link DUB-1312 (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Add VID:DID for Lenovo OneLinkDock Gigabit LAN (Don Zickus) [1303209]
-- [usb] kconfig: Remove useless "default N" lines (Don Zickus) [1303209]
-- [netdrv] treewide: Fix typo in Documentation/DocBook (Don Zickus) [1303209]
-- [netdrv] r8152: support get_msglevel and set_msglevel (Don Zickus) [1303209]
-- [netdrv] r8152: set disable_hub_initiated_lpm (Don Zickus) [1303209]
-- [netdrv] r8152: replace netif_rx with netif_receive_skb (Don Zickus) [1303209]
-- [netdrv] r8152: disable teredo for RTL8152 (Don Zickus) [1303209]
-- [netdrv] r8152: support runtime suspend (Don Zickus) [1303209]
-- [netdrv] r8152: support WOL (Don Zickus) [1303209]
-- [netdrv] r8152: move some functions from probe to open (Don Zickus) [1303209]
-- [netdrv] r8152: combine PHY reset with set_speed (Don Zickus) [1303209]
-- [netdrv] r8152: clear BMCR_PDOWN (Don Zickus) [1303209]
-- [netdrv] r8152: reduce the frequency of spin_lock (Don Zickus) [1303209]
-- [netdrv] r8152: load the default MAC address (Don Zickus) [1303209]
-- [netdrv] r8152: replace some types from int to bool (Don Zickus) [1303209]
-- [netdrv] r8152: add three functions (Don Zickus) [1303209]
-- [netdrv] r8152: move some functions (Don Zickus) [1303209]
-- [usb] host: remove USB_ARCH_HAS_?HCI (Don Zickus) [1303209]
-- [netdrv] net: asix: add missing flag to struct driver_info (Don Zickus) [1303209]
-- [netdrv] usb2net: Fix Default to 'y' for SR9800 Device Driver, setting to 'n' (Don Zickus) [1303209]
-- [netdrv] usb2net: sr9800: use zu for size_t (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add support for Cinterion PXS8 and PHS8 (Don Zickus) [1303209]
-- [netdrv] ehci-platform: Change compatible string from usb-ehci to generic-ehci (Don Zickus) [1303209]
-- [netdrv] usb2net: sr9800: One chip USB2.0 USB2NET SR9800 Device Driver Support (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add ZTE MF667 (Don Zickus) [1303209]
-- [usb] move hub init and LED blink work to power efficient workqueue (Don Zickus) [1303209]
-- [gpu] drm: Remove now duplicated usage of system_power_efficient_wq (Don Zickus) [1303209]
-- [kernel] workqueue: Add system wide power_efficient workqueues (Don Zickus) [1303209]
-- [kernel] workqueues: Introduce new flag WQ_POWER_EFFICIENT for power oriented workqueues (Don Zickus) [1303209]
-- [include] ehci-platform: Add support for clks and phy passed through devicetree (Don Zickus) [1303209]
-- [include] staging: usbip: convert usbip-host driver to usb_device_driver (Don Zickus) [1303209]
-- [netdrv] hso: remove some dead code (Don Zickus) [1303209]
-- [netdrv] r8152: fix the submission of the interrupt transfer (Don Zickus) [1303209]
-- [usb] ftdi_sio: add Tagsys RFID Reader IDs (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Netgear Aircard 340U (Don Zickus) [1303209]
-- [usb] storage: enable multi-LUN scanning when needed (Don Zickus) [1303209]
-- [usb] simple: add Dynastream ANT USB-m Stick device support (Don Zickus) [1303209]
-- [usb] storage: add unusual-devs entry for BlackBerry 9000 (Don Zickus) [1303209]
-- [usb] storage: restrict bcdDevice range for Super Top in Cypress ATACB (Don Zickus) [1303209]
-- [usb] ftdi_sio: add Mindstorms EV3 console adapter (Don Zickus) [1303209]
-- [netdrv] drivers/net: delete non-required instances of include <linux/init.h> (Don Zickus) [1303209]
-- [netdrv] r8152: ecm and vendor modes coexist (Don Zickus) [1303209]
-- [netdrv] r8152: fix the warnings and a error from checkpatch.pl (Don Zickus) [1303209]
-- [netdrv] r8152: change the descriptor (Don Zickus) [1303209]
-- [netdrv] dm9601: add USB IDs for new dm96xx variants (Don Zickus) [1303209]
-- [netdrv] net: usbnet: fix SG initialisation (Don Zickus) [1303209]
-- [usb] ehci: add freescale imx28 special write register method (Don Zickus) [1303209]
-- [usb] cdc-wdm: resp_count can be 0 even if WDM_READ is set (Don Zickus) [1303209]
-- [usb] image: correct spelling mistake in comment (Don Zickus) [1303209]
-- [usb] treewide: fix comments and printk msgs (Don Zickus) [1303209]
-- [netdrv] r8152: correct some messages (Don Zickus) [1303209]
-- [netdrv] hso: fix handling of modem port SERIAL_STATE notifications (Don Zickus) [1303209]
-- [netdrv] r8152: replace the return value of rtl_ops_init (Don Zickus) [1303209]
-- [netdrv] r8152: move the actions of saving the information of the device (Don Zickus) [1303209]
-- [netdrv] r8152: replace some tabs with spaces (Don Zickus) [1303209]
-- [netdrv] r8152: fix the wrong return value (Don Zickus) [1303209]
-- [usb] serial: add Moxa UPORT 12XX/14XX/16XX driver (Don Zickus) [1303209]
-- [usb] f81232: switch to generic tiocmiwait (Don Zickus) [1303209]
-- [usb] f81232: remove bogus call to wake up MSR queue (Don Zickus) [1303209]
-- [netdrv] r8152: support RTL8153 (Don Zickus) [1303209]
-- [netdrv] r8152: split rtl8152_enable (Don Zickus) [1303209]
-- [netdrv] r8152: add rtl_ops (Don Zickus) [1303209]
-- [netdrv] r8152: change some definitions (Don Zickus) [1303209]
-- [netdrv] r8152: modify the method of accessing PHY (Don Zickus) [1303209]
-- [netdrv] r8152: move rtl8152_unload and ocp_reg_write (Don Zickus) [1303209]
-- [netdrv] usbnet: mcs7830: rework link state detection (Don Zickus) [1303209]
-- [usb] musb: Rework USB and USB_GADGET dependency (Don Zickus) [1303209]
-- [netdrv] dm9601: work around tx fifo sync issue on dm962x (Don Zickus) [1303209]
-- [netdrv] dm9601: make it clear that dm9620/dm9621a are also supported (Don Zickus) [1303209]
-- [netdrv] dm9601: fix reception of full size ethernet frames on dm9620/dm9621a (Don Zickus) [1303209]
-- [netdrv] dm9601: add support for dm9621a based dongle (Don Zickus) [1303209]
-- [usb] storage: fix compile warning (Don Zickus) [1303209]
-- [usb] usb: hcd: move controller wakeup setting initialization to individual driver (Don Zickus) [1303209]
-- [usb] atm: usbatm: fixed a pointer variable format issue (Don Zickus) [1303209]
-- [usb] hcd: Initialize USB phy if needed (Don Zickus) [1303209]
-- [include] usb: hcd: Remove USB phy if needed (Don Zickus) [1303209]
-- [usb] storage: use sg_miter_* APIs to access scsi buffer (Don Zickus) [1303209]
-- [lib] scatterlist: export sg_miter_skip() (Don Zickus) [1303209]
-- [documentation] usb: ohci: Properly handle OHCI controller suspend (Don Zickus) [1303209]
-- [usb] acpi: Clean up inclusions of ACPI header files (Don Zickus) [1303209]
-- [netdrv] usb: Fix FSF address in file headers (Don Zickus) [1303209]
-- [include] arm: at91: move at91_pmc.h to include/linux/clk/at91_pmc.h (Don Zickus) [1303209]
-- [include] usb: phy: move OTG FSM header (Don Zickus) [1303209]
-- [netdrv] r8152: fix incorrect type in assignment (Don Zickus) [1303209]
-- [netdrv] r8152: support stopping/waking tx queue (Don Zickus) [1303209]
-- [netdrv] r8152: modify the tx flow (Don Zickus) [1303209]
-- [netdrv] r8152: fix tx/rx memory overflow (Don Zickus) [1303209]
-- [usb] tree-wide: use reinit_completion instead of INIT_COMPLETION (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: no need to check for resume if suspend exists (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: manage_power should always set needs_remote_wakeup (Don Zickus) [1303209]
-- [usb] tm: Fix dynamic_debug / ratelimited atm_dbg and atm_rldbg macros (Don Zickus) [1303209]
-- [netdrv] usb: ohci: remove ep93xx bus glue platform driver (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Remove AX_MEDIUM_ALWAYS_ONE bit in AX_MEDIUM_STATUS_MODE register to avoid TX throttling (Don Zickus) [1303209]
-- [usb] consolidate the reassignments of ->f_op in ->open() instances (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Add VID:DID for Samsung USB Ethernet Adapter (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: Correct the RX error definition in RX header (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: Olivetti Olicard 200 support (Don Zickus) [1303209]
-- [netdrv] usbnet: fix error return code in usbnet_probe() (Don Zickus) [1303209]
-- [include] usb: usb_phy_gen: refine conditional declaration of usb_nop_xceiv_register (Don Zickus) [1303209]
-- [usb] revert "usb: ohci: Properly handle OHCI controller suspend" (Don Zickus) [1303209]
-- [usb] treewide: Fix typo in Kconfig (Don Zickus) [1303209]
-- [usb] host: Rename ehci-s5p to ehci-exynos (Don Zickus) [1303209]
-- [usb] Remove unnecessary semicolons (Don Zickus) [1303209]
-- [usb] ohci: Properly handle OHCI controller suspend (Don Zickus) [1303209]
-- [include] usb: phy: generic: Add gpio_reset to platform data (Don Zickus) [1303209]
-- [netdrv] Miscellaneous conversions to ETH_ALEN (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: fix Cinterion PLXX product ID (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: fix checkpatch warnings (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Telit LE920 newer firmware support (Don Zickus) [1303209]
-- [usb] ohci: make ohci-pxa27x a separate driver (Don Zickus) [1303209]
-- [netdrv] usb: ohci: make ohci-ep93xx a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-nxp a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-s3c2410 a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-at91 a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-spear a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-omap3 a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-omap a separate driver (Don Zickus) [1303209]
-- [usb] ohci: make ohci-exynos a separate driver (Don Zickus) [1303209]
-- [usb] ehci: make ehci-w90X900 a separate driver (Don Zickus) [1303209]
-- [netdrv] net: cdc-phonet: Staticize usbpn_probe (Don Zickus) [1303209]
-- [netdrv] net: usb: cdc_ether: use usb.h macros whenever possible (Don Zickus) [1303209]
-- [netdrv] net: usb: cdc_ether: fix checkpatch errors and warnings (Don Zickus) [1303209]
-- [usb] Remove GENERIC_HARDIRQ config option (Don Zickus) [1303209]
-- [netdrv] net: usbnet: update addr_assign_type if appropriate (Don Zickus) [1303209]
-- [netdrv] drivers/net: Convert uses of compare_ether_addr to ether_addr_equal (Don Zickus) [1303209]
-- [netdrv] usb2net: sr9700: One chip USB 1.1 USB2NET SR9700Device Driver Support (Don Zickus) [1303209]
-- [usb] serial: convert bus code to use drv_groups (Don Zickus) [1303209]
-- [netdrv] hso: Fix stack corruption on some architectures (Don Zickus) [1303209]
-- [netdrv] hso: Earlier catch of error condition (Don Zickus) [1303209]
-- [netdrv] r8152: add comments (Don Zickus) [1303209]
-- [netdrv] r8152: adjust tx_bottom function (Don Zickus) [1303209]
-- [netdrv] r8152: move some declearation of variables (Don Zickus) [1303209]
-- [netdrv] r8152: adjust some duplicated code (Don Zickus) [1303209]
-- [netdrv] r8152: replace lockflags with flags (Don Zickus) [1303209]
-- [netdrv] r8152: replace void * with struct r8152 * (Don Zickus) [1303209]
-- [netdrv] r8152: remove clearing the memory to zero for netdev priv (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: enable interrupt transfer (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: enable tx checksum (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: support aggregation (Don Zickus) [1303209]
-- [netdrv] net: asix: Move declaration of ax88172a_info to shared header (Don Zickus) [1303209]
-- [netdrv] net: asix: Staticise non-exported symbols (Don Zickus) [1303209]
-- [usb] misc: Fix swapped properties in usb3503 DT parsing (Don Zickus) [1303209]
-- [netdrv] usbnet: ax88179_178a: enable tso if usb host supports sg dma (Don Zickus) [1303209]
-- [usb] host: add has_tdi_phy_lpm capability bit (Don Zickus) [1303209]
-- [include] usb: phy: rename nop_usb_xceiv => usb_phy_gen_xceiv (Don Zickus) [1303209]
-- [netdrv] ax88179_178a: avoid copy of tx tcp packets (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: adjust relative ocp function (Don Zickus) [1303209]
-- [netdrv] net/usb/r8152: make sure the USB buffer is DMA-able (Don Zickus) [1303209]
-- [netdrv] net/usb/r815x: change the return value for bind functions (Don Zickus) [1303209]
-- [netdrv] net/usb/r815x: avoid to call mdio functions for runtime-suspended device (Don Zickus) [1303209]
-- [netdrv] net/usb/r815x: replace USB buffer from stack to DMA-able (Don Zickus) [1303209]
-- [include] usb: of: fix build breakage caused by recent patches (Don Zickus) [1303209]
-- [include] usb: host: Faraday fotg210-hcd driver (Don Zickus) [1303209]
-- [usb] ehci-omap: select NOP_USB_XCEIV PHY driver (Don Zickus) [1303209]
-- [usb] phy: make PHY driver selection possible by controller drivers (Don Zickus) [1303209]
-- [include] usb: common: introduce of_usb_get_maximum_speed() (Don Zickus) [1303209]
-- [include] usb: phy: protect against NULL phy pointers (Don Zickus) [1303209]
-- [netdrv] usbnet: increase max rx/tx qlen for improving USB3 thoughtput (Don Zickus) [1303209]
-- [usb] revert "usb: host: Faraday fotg210-hcd driver" (Don Zickus) [1303209]
-- [usb] host: Faraday fotg210-hcd driver (Don Zickus) [1303209]
-- [netdrv] usb/net/r815x: fix cast to restricted __le32 (Don Zickus) [1303209]
-- [netdrv] usb/net/r8152: fix integer overflow in expression (Don Zickus) [1303209]
-- [netdrv] net/usb: add relative mii functions for r815x (Don Zickus) [1303209]
-- [netdrv] net: cdc_ether: allow combined control and data interface (Don Zickus) [1303209]
-- [netdrv] net: ipheth: Add USB ID for iPad mini (Don Zickus) [1303209]
-- [netdrv] qmi_wwan: add ONDA MT689DC device ID (fwd) (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add TP-LINK MA260 (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: add Option GTM681W (Don Zickus) [1303209]
-- [netdrv] net: qmi_wwan: fixup Sierra Wireless MC8305 entry (Don Zickus) [1303209]
-- [netdrv] usbnet: ax88179_178a: add .reset_resume hook (Don Zickus) [1303209]
-- [netdrv] usbnet: ax88179_178a: Correct a typo in description (Don Zickus) [1303209]
-- [include] usb: fix build error without CONFIG_USB_PHY (Don Zickus) [1303209]
-- [usb] console/font: Refactor font support code selection logic (Don Zickus) [1303209]
-- [netdrv] net: Move MII out from under NET_CORE and hide it (Don Zickus) [1303209]
-- [usb] Check for ARCH_EXYNOS separately (Don Zickus) [1303209]
-- [usb] ehci: make ehci-tegra a separate driver (Don Zickus) [1303209]
-- [include] usb: add devicetree helpers for determining dr_mode and phy_type (Don Zickus) [1303209]
-- [usb] mips: octeon: Rename Kconfig CAVIUM_OCTEON_REFERENCE_BOARD to CAVIUM_OCTEON_SOC (Don Zickus) [1303209]
-- [netdrv] net/usb/kalmia: use *phC to dump small buffers (Don Zickus) [1303209]
-- [usb] tty: vt: convert remain take_over_console's users to do_take_over_console (Don Zickus) [1303209]
-- [netdrv] net/usb: r8152: Use module_usb_driver() (Don Zickus) [1303209]
-- [netdrv] net/usb: r8152: Remove redundant version.h header inclusion (Don Zickus) [1303209]
-- [usb] host: Faraday USB2.0 FUSBH200-HCD driver (Don Zickus) [1303209]
-
-* Fri Mar 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-364.el7]
-- [kernel] sysrq: Fix warning in sysrq generated crash (Rafael Aquini) [1090498]
-- [kernel] sysrq, rcu: suppress RCU stall warnings while sysrq runs (Rafael Aquini) [1090498]
-- [kernel] rcu: Provide API to suppress stall warnings while sysrc runs (Rafael Aquini) [1090498]
-- [kernel] sysrq: rcu-ify __handle_sysrq (Rafael Aquini) [1090498]
-- [virtio] virtio_balloon: include linux/virtio_types.h (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: fix race between migration and ballooning (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: fix race by fill and leak (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: fix deflation when compaction is disabled (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: do not change memory amount visible via /proc/meminfo (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: change stub of release_pages_by_pfn (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: free some memory from balloon on OOM (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: return the amount of freed memory from leak_balloon() (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: add vmstat counters and kpageflags bit (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: remove balloon mapping and flag AS_BALLOON_MAP (Luiz Capitulino) [1263649]
-- [mm] balloon_compaction: redesign ballooned pages management (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: don't crash if virtqueue is broken (Luiz Capitulino) [1263649]
-- [virtio] virtio_balloon: don't softlockup on huge balloon changes (Luiz Capitulino) [1263649]
-- [virtio] Mark function virtballoon_migratepage() as static in virtio_balloon.c (Luiz Capitulino) [1263649]
-- [mm] correctly update zone->managed_pages (Luiz Capitulino) [1263649]
-- [mm] mmu_notifier: fix memory corruption (Jerome Glisse) [1307042]
-- [mm] write to force_empty will cause soft lockup (Gustavo Duarte) [1297381]
-- [mm] dmapool: allow NULL `pool' pointer in dma_pool_destroy() (Mike Snitzer) [1314893]
-- [mm] mempool: allow NULL `pool' pointer in mempool_destroy() (Mike Snitzer) [1314893]
-- [mm] slab_common: allow NULL cache pointer in kmem_cache_destroy() (Mike Snitzer) [1314893]
-- [mm] page_alloc.c: rework code layout in memmap_init_zone() (Yasuaki Ishimatsu) [1270209]
-- [mm] page_alloc.c: introduce kernelcore=mirror option (Yasuaki Ishimatsu) [1270209]
-- [mm] page_alloc.c: calculate zone_start_pfn at zone_spanned_pages_in_node() (Yasuaki Ishimatsu) [1270209]
-- [x86] mirror: x86 enabling - find mirrored memory ranges (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: allocate boot time data structures from mirrored memory (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: add extra "flags" to memblock to allow selection of memory based on attribute (Yasuaki Ishimatsu) [1270209]
-- [mm] hotplug: init the zone's size when calculating node totalpages (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: refactor functions to set/clear MEMBLOCK_HOTPLUG (Yasuaki Ishimatsu) [1270209]
-- [lib] Add a generic cmdline parse function parse_option_str (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: fix wrong type in memblock_find_in_range_node() (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: use for_each_memblock() (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: Do some refactoring, enhance API (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: use WARN_ONCE when MAX_NUMNODES passed as input parameter (Yasuaki Ishimatsu) [1270209]
-- [x86] mm: memblock: switch to use NUMA_NO_NODE (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: switch to use NUMA_NO_NODE instead of MAX_NUMNODES (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: reorder parameters of memblock_find_in_range_node (Yasuaki Ishimatsu) [1270209]
-- [x86] Use memblock_set_current_limit() to set limit for memblock (Yasuaki Ishimatsu) [1270209]
-- [mm] memblock: fix wrong comment in __next_free_mem_range() (Yasuaki Ishimatsu) [1270209]
-- [mm] remove duplicated call of get_pfn_range_for_nid (Yasuaki Ishimatsu) [1270209]
-- [mm] shm: wait for pins to be released when sealing (Vlad Yasevich) [1282530]
-- [kernel] sched: add cond_resched_rcu() helper (Vlad Yasevich) [1282530]
-- [mm] shm: Add memory sealing support memfd_create (Vlad Yasevich) [1282530]
-- [mm] shm: add sealing API (Vlad Yasevich) [1282530]
-- [mm] allow drivers to prevent new writable mappings (Vlad Yasevich) [1282530]
-- [mm] mmap: kill correct_wcount/inode, use allow_write_access() (Vlad Yasevich) [1282530]
-
-* Thu Mar 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-363.el7]
-- [mm] add VM_WARN_ON() and VM_WARN_ON_ONCE() (Dave Anderson) [1274624]
-- [mm] hugetlbfs: optimize when NUMA=n (Dave Anderson) [1274624]
-- [mm] hugetlb: use memory policy when available (Dave Anderson) [1274624]
-- [mm] optimize put_mems_allowed() usage (Dave Anderson) [1274624]
-- [mm] new_vma_page() cannot see NULL vma for hugetlb pages (Tomoaki Nishimura) [1287322]
-- [mm] mempolicy: fix !vma in new_vma_page() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: call huge_pte_alloc() only if ptep is null (Tomoaki Nishimura) [1287322]
-- [mm] migrate: hugetlb: putback destination hugepage to active list (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: cleanup using paeg_huge_active() (Tomoaki Nishimura) [1287322]
-- [fs] hugetlb: fix lockdep splat caused by pmd sharing (Tomoaki Nishimura) [1287322]
-- [tools] vm: fix page-flags build (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: fix hugepage memory leak caused by wrong reserve count (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: use pmd_page() in follow_huge_pmd() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: add migration entry check in __unmap_hugepage_range (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: add migration/hwpoisoned entry check in hugetlb_change_protection (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: fix getting refcount 0 page in hugetlb_fault() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: take page table lock in follow_huge_pmd() (Tomoaki Nishimura) [1287322]
-- [x86] mm: hugetlb: pmd_huge() returns true for non-present hugepage (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: reduce arch dependent code around follow_huge_* (Tomoaki Nishimura) [1287322]
-- [mm] unmapped page migration avoid unmap+remap overhead (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: fix copy_hugetlb_page_range() (Tomoaki Nishimura) [1287322]
-- [mm] rmap: calculate page offset when needed (Tomoaki Nishimura) [1287322]
-- [mm] rmap: fix pgoff calculation to handle hugepage correctly (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: fix copy_hugetlb_page_range() to handle migration/hwpoisoned entry (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: rename hugepage_migration_support() to ..._supported() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: restrict hugepage_migration_support() to x86_64 (Tomoaki Nishimura) [1287322]
-- [mm] migrate: correct failure handling if !hugepage_migration_support() (Tomoaki Nishimura) [1287322]
-- [mm] mbind: add BUG_ON(!vma) in new_vma_page() (Tomoaki Nishimura) [1287322]
-- [mm] mempolicy: rename check_*range to queue_pages_*range (Tomoaki Nishimura) [1287322]
-- [mm] prepare to remove /proc/sys/vm/hugepages_treat_as_movable (Tomoaki Nishimura) [1287322]
-- [mm] migrate: check movability of hugepage in unmap_and_move_huge_page() (Tomoaki Nishimura) [1287322]
-- [mm] memory-hotplug: enable memory hotplug to handle hugepage (Tomoaki Nishimura) [1287322]
-- [mm] migrate: remove VM_HUGETLB from vma flag check in vma_migratable() (Tomoaki Nishimura) [1287322]
-- [mm] mbind: add hugepage migration code to mbind() (Tomoaki Nishimura) [1287322]
-- [mm] migrate: add hugepage migration code to move_pages() (Tomoaki Nishimura) [1287322]
-- [mm] migrate: add hugepage migration code to migrate_pages() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: remove useless check about mapping type (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: remove redundant list_empty check in gather_surplus_pages() (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: move up the code which check availability of free huge page (Tomoaki Nishimura) [1287322]
-- [x86] mm: Remove general hugetlb code from x86 (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: Copy general hugetlb code from x86 to mm (Tomoaki Nishimura) [1287322]
-- [x86] mm: Remove x86 version of huge_pmd_share (Tomoaki Nishimura) [1287322]
-- [mm] hugetlb: Copy huge_pmd_share from x86 to mm (Tomoaki Nishimura) [1287322]
-- [mm] memcontrol: switch soft limit default back to infinity (Jerome Marchand) [1217771]
-- [kernel] res_counter: remove the unused API (Jerome Marchand) [1217771]
-- [mm] hugetlb_cgroup: convert to lockless page counters (Jerome Marchand) [1217771]
-- [mm] memcontrol: lockless page counters (Jerome Marchand) [1217771]
-- [net] tcp_memcontrol: Remove tcp_max_memory (Jerome Marchand) [1217771]
-- [mm] memcontrol: lockless page counters (Jerome Marchand) [1217771]
-
-* Wed Mar 09 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-362.el7]
-- [fs] proc: fix for infinite loop in proc_device_tree_update_prop (Carlos Maiolino) [1210350 1314928]
-- [x86] perf/x86/intel: Add perf core PMU support for Intel Knights Landing (Jiri Olsa) [1145362 1224374 1259976]
-- [x86] perf/x86/intel/uncore: Remove hard coding of PMON box control MSR offset (Jiri Olsa) [1145362 1224374 1259976]
-- [x86] perf/x86/intel/uncore: Add Knights Landing uncore PMU support (Jiri Olsa) [1145362 1224374 1259976]
-- [x86] x86/perf/intel_rapl: Make Knights Landings support functional (Jiri Olsa) [1145362 1224374 1259976]
-- [x86] perf/x86/intel/uncore: Add Broadwell-EP uncore support (Jiri Olsa) [1145362 1224374 1259976]
-- [tools] perf hists browser: Fix segfault if use symbol filter in cmdline (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Reset selection when refresh (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Add NULL pointer check to prevent crash (Jiri Olsa) [1308570]
-- [tools] perf buildid-list: Fix return value of perf buildid-list -k (Jiri Olsa) [1308570]
-- [tools] perf buildid-list: Show running kernel build id fix (Jiri Olsa) [1308570]
-- [tools] perf probe: Clear probe_trace_event when add_probe_trace_event() fails (Jiri Olsa) [1308570]
-- [tools] perf probe: Fix memory leaking on failure by clearing all probe_trace_events (Jiri Olsa) [1308570]
-- [tools] perf inject: Also re-pipe lost_samples event (Jiri Olsa) [1308570]
-- [tools] perf buildid-list: Requires ordered events (Jiri Olsa) [1308570]
-- [tools] perf symbols: Fix dso lookup by long name and missing buildids (Jiri Olsa) [1308570]
-- [tools] perf symbols: Allow forcing reading of non-root owned files by root (Jiri Olsa) [1308570]
-- [tools] perf hists browser: The dso can be obtained from popup_action->ms.map->dso (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Fix 'd' hotkey action to filter by DSO (Jiri Olsa) [1308570]
-- [tools] perf symbols: Rebuild rbtree when adjusting symbols for kcore (Jiri Olsa) [1308570]
-- [tools] include: Add compiler.h to list.h (Jiri Olsa) [1308570]
-- [tools] perf probe: Verify parameters in two functions (Jiri Olsa) [1308570]
-- [tools] perf session: Add missing newlines to some pr_err() calls (Jiri Olsa) [1308570]
-- [tools] perf annotate: Support full source file paths for srcline fix (Jiri Olsa) [1308570]
-- [tools] perf test: Do not be case sensitive when searching for matching tests (Jiri Olsa) [1308570]
-- [tools] perf probe: Cleanup find_perf_probe_point_from_map to reduce redundancy (Jiri Olsa) [1308570]
-- [tools] perf annotate: Inform the user about objdump failures in --stdio (Jiri Olsa) [1308570]
-- [tools] perf stat: Make stat options global (Jiri Olsa) [1308570]
-- [tools] perf sched latency: Fix thread pid reuse issue (Jiri Olsa) [1308570]
-- [tools] perf tools: Fix find_perf_probe_point_from_map() which incorrectly returns success (Jiri Olsa) [1308570]
-- [tools] perf trace: Fix documentation for -i (Jiri Olsa) [1308570]
-- [tools] perf tools: Allow shuffling the build tests (Jiri Olsa) [1308570]
-- [tools] perf tools: Insert split maps correctly into origin group (Jiri Olsa) [1308570]
-- [tools] perf stat: Use common printout function to avoid duplicated code (Jiri Olsa) [1308570]
-- [tools] perf stat: Move sw clock metrics printout to stat-shadow (Jiri Olsa) [1308570]
-- [tools] perf test: Keep test result clean if '-v' not set (Jiri Olsa) [1308570]
-- [kernel] perf: pad raw data samples automatically (Jiri Olsa) [1308570]
-- [tools] perf unwind: Pass symbol source to libunwind (Jiri Olsa) [1308570]
-- [tools] build: Fix libiberty feature detection (Jiri Olsa) [1308570]
-- [tools] perf script: Enable printing of branch stack (Jiri Olsa) [1308570]
-- [tools] perf symbols: Fix endless loop in dso__split_kallsyms_for_kcore (Jiri Olsa) [1308570]
-- [tools] perf tools: Enable pre-event inherit setting by config terms (Jiri Olsa) [1308570]
-- [tools] perf symbols: we can now read separate debug-info files based on a build ID (Jiri Olsa) [1308570]
-- [tools] perf symbols: Fix type error when reading a build-id (Jiri Olsa) [1308570]
-- [tools] perf tools: Search for more options when passing args to -h (Jiri Olsa) [1308570]
-- [tools] perf stat: Cache aggregated map entries in extra cpumap (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Add cpu_map__empty_new function (Jiri Olsa) [1308570]
-- [tools] perf evsel: Move id_offset out of struct perf_evsel union member (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce usage_with_options_msg() (Jiri Olsa) [1308570]
-- [tools] perf tools: Setup pager when printing usage and help (Jiri Olsa) [1308570]
-- [tools] perf report: Rename to --show-cpu-utilization (Jiri Olsa) [1308570]
-- [tools] perf tools: Improve ambiguous option help message (Jiri Olsa) [1308570]
-- [tools] perf tools: Provide help for subset of options (Jiri Olsa) [1308570]
-- [tools] perf tools: Show tool command line options ordered (Jiri Olsa) [1308570]
-- [tools] perf annotate: Don't die() when finding an invalid config option (Jiri Olsa) [1308570]
-- [tools] perf ui tui: Register the error callbacks before initializing the widgets (Jiri Olsa) [1308570]
-- [tools] perf annotate: Fix 'annotate.use_offset' config variable usage (Jiri Olsa) [1308570]
-- [tools] perf tools: Improve call graph documents and help messages (Jiri Olsa) [1308570]
-- [tools] perf tools: Defaults to 'caller' callchain order only if --children is enabled (Jiri Olsa) [1308570]
-- [tools] perf top: Support call-graph display options also (Jiri Olsa) [1308570]
-- [tools] perf tools: Move callchain help messages to callchain.h (Jiri Olsa) [1308570]
-- [tools] lib traceevent: Support ps/pS (Jiri Olsa) [1308570]
-- [tools] perf annotate: Add debug message for out of bounds sample (Jiri Olsa) [1308570]
-- [tools] perf evsel: Print branch filter state with -vv (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Fix core dump caused by per-socket/core system-wide stat (Jiri Olsa) [1308570]
-- [tools] lib traceevent: update KVM plugin (Jiri Olsa) [1308570]
-- [tools] perf build: Add fixdep to .gitignore (Jiri Olsa) [1308570]
-- [tools] perf record: Add ability to sample call branches (Jiri Olsa) [1308570]
-- [include] perf: Add PERF_SAMPLE_BRANCH_CALL (Jiri Olsa) [1308570]
-- [tools] perf bench: Use named initializers in the trailer too (Jiri Olsa) [1308570]
-- [tools] perf script: Check output fields only for samples (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Add data arg to cpu_map__build_map callback (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Make cpu_map__build_map global (Jiri Olsa) [1308570]
-- [tools] perf stat: Add AGGR_UNSET mode (Jiri Olsa) [1308570]
-- [tools] perf stat: Rename perf_stat struct into perf_stat_evsel (Jiri Olsa) [1308570]
-- [tools] perf help: Change 'usage' to 'Usage' for consistency (Jiri Olsa) [1308570]
-- [tools] perf bench: Run benchmarks, don't test them (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Rename 'routine' to 'function' (Jiri Olsa) [1308570]
-- [tools] perf bench: Harmonize all the -l/--nr_loops options (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Reorganize the code a bit (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Improve user visible strings (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Fix 'length' vs. 'size' naming confusion (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Rename 'routine' to 'routine_str' (Jiri Olsa) [1308570]
-- [tools] perf bench mem: Change 'cycle' to 'cycles' (Jiri Olsa) [1308570]
-- [tools] perf bench: List output formatting options on 'perf bench -h' (Jiri Olsa) [1308570]
-- [tools] perf bench: Remove the prefaulting complication from 'perf bench mem mem*' (Jiri Olsa) [1308570]
-- [tools] perf bench: Rename 'mem-memcpy.c' => 'mem-functions.c' (Jiri Olsa) [1308570]
-- [tools] perf bench: Eliminate unused argument from bench_mem_common() (Jiri Olsa) [1308570]
-- [tools] perf bench: Default to all routines in 'perf bench mem' (Jiri Olsa) [1308570]
-- [tools] perf bench: Improve the 'perf bench mem memcpy' code readability (Jiri Olsa) [1308570]
-- [tools] perf test: Suppress libtraceevent warnings (Jiri Olsa) [1308570]
-- [tools] perf test: Silence tracepoint event failures (Jiri Olsa) [1308570]
-- [tools] build: Fix cross compile build (Jiri Olsa) [1308570]
-- [tools] include: Fix strict-aliasing rules breakage (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Add 'm' key for context menu display (Jiri Olsa) [1308570]
-- [tools] perf callchains: Fix unw_word_t pointer casts (Jiri Olsa) [1308570]
-- [tools] perf callchain: Use debug_frame if eh_frame is unusable (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Inform how to reset the symbol filter (Jiri Olsa) [1308570]
-- [tools] perf ui browsers: Remove help messages about use of right and arrow keys (Jiri Olsa) [1308570]
-- [tools] perf symbols: Try the .debug/ DSO cache as a last resort (Jiri Olsa) [1308570]
-- [tools] perf python: Support the PERF_RECORD_SWITCH event (Jiri Olsa) [1308570]
-- [tools] perf tools: Fix handling read result using a signed variable (Jiri Olsa) [1308570]
-- [tools] perf tools: Use hpp_dimension__add_output to register hpp columns (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce hpp_dimension__add_output function (Jiri Olsa) [1308570]
-- [tools] perf tools: Get rid of superfluos call to reset_dimensions (Jiri Olsa) [1308570]
-- [tools] perf tools: Fail properly in case pattern matching fails to find tracepoint (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Implement horizontal scrolling (Jiri Olsa) [1308570]
-- [tools] perf ui browser: Optional horizontal scrolling key binding (Jiri Olsa) [1308570]
-- [tools] perf callchain: Switch default to 'graph, 0.5, caller' (Jiri Olsa) [1308570]
-- [tools] perf tests: Add Intel CQM test (Jiri Olsa) [1308570]
-- [tools] perf tests: Move x86 tests into arch directory (Jiri Olsa) [1308570]
-- [tools] perf tests: Add arch tests (Jiri Olsa) [1308570]
-- [tools] perf tools: Handle -h and -v options (Jiri Olsa) [1308570]
-- [tools] perf tools: Setup proper width for symbol_iaddr field (Jiri Olsa) [1308570]
-- [tools] perf tools: Add support for sorting on the iaddr (Jiri Olsa) [1308570]
-- [tools] perf tests: Add parsing test for 'P' modifier (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce 'P' modifier to request max precision (Jiri Olsa) [1308570]
-- [tools] perf tools: Export perf_event_attr__set_max_precise_ip() (Jiri Olsa) [1308570]
-- [tools] perf annotate: Fix sizeof_sym_hist overflow issue (Jiri Olsa) [1308570]
-- [tools] perf evlist: Display DATA_SRC sample type bit (Jiri Olsa) [1308570]
-- [tools] lib api fs: No need to use PATH_MAX + 1 (Jiri Olsa) [1308570]
-- [tools] perf stat: Reduce min --interval-print to 10ms (Jiri Olsa) [1308570]
-- [tools] perf record: Change 'record.samples' type to unsigned long long (Jiri Olsa) [1308570]
-- [tools] perf probe: Allow probing on kmodules without dwarf (Jiri Olsa) [1308570]
-- [tools] perf list: Honour 'event_glob' whem printing selectable PMUs (Jiri Olsa) [1308570]
-- [tools] perf list: Do event name substring search as last resort when no events found (Jiri Olsa) [1308570]
-- [tools] perf callchain: Allow for max_stack greater than PERF_MAX_STACK_DEPTH (Jiri Olsa) [1308570]
-- [tools] perf report: Fix a bug on "--call-graph none" option (Jiri Olsa) [1308570]
-- [tools] perf top: Register idle thread (Jiri Olsa) [1308570]
-- [tools] perf top: Fix unresolved comm when -s comm is used (Jiri Olsa) [1308570]
-- [tools] perf record: Allocate area for sample_id_hdr in a synthesized comm event (Jiri Olsa) [1308570]
-- [tools] perf tools: By default use the most precise "cycles" hw counter available (Jiri Olsa) [1308570]
-- [tools] perf list: Remove blank lines, headers when piping output (Jiri Olsa) [1308570]
-- [tools] perf probe: Improve error message when return is on inlined function (Jiri Olsa) [1308570]
-- [tools] perf probe: Fix a segfault bug in debuginfo_cache (Jiri Olsa) [1308570]
-- [tools] perf probe: Show correct source lines of probes on kmodules (Jiri Olsa) [1308570]
-- [tools] perf probe: Begin and end libdwfl report session correctly (Jiri Olsa) [1308570]
-- [tools] perf probe: Fix to remove dot suffix from second or latter events (Jiri Olsa) [1308570]
-- [tools] lib symbol: Introduce kallsyms2elf_type (Jiri Olsa) [1308570]
-- [tools] lib symbol: Rename kallsyms2elf_type to kallsyms2elf_binding (Jiri Olsa) [1308570]
-- [tools] perf machine: Add method for common kernel_map(FUNCTION) operation (Jiri Olsa) [1308570]
-- [tools] perf machine: Use machine__kernel_map() thoroughly (Jiri Olsa) [1308570]
-- [tools] perf report: Amend documentation about max_stack and synthesized callchains (Jiri Olsa) [1308570]
-- [tools] perf maps: Introduce maps__find_symbol_by_name() (Jiri Olsa) [1308570]
-- [tools] perf tools: Fix shadowed declaration in parse-events.c (Jiri Olsa) [1308570]
-- [tools] Fix shadowed declaration in err.h (Jiri Olsa) [1308570]
-- [tools] perf tools: Enable event_config terms to tracepoint events (Jiri Olsa) [1308570]
-- [tools] perf tools: Adds the tracepoint name parsing support (Jiri Olsa) [1308570]
-- [tools] perf tools: Show proper error message for wrong terms of hw/sw events (Jiri Olsa) [1308570]
-- [tools] perf tools: Adds the config_term callback for different type events (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Add mispred-all config option to aid use with autofdo (Jiri Olsa) [1308570]
-- [tools] perf inject: Add --strip option to strip out non-synthesized events (Jiri Olsa) [1308570]
-- [tools] perf inject: Remove more aux-related stuff when processing instruction traces (Jiri Olsa) [1308570]
-- [tools] perf evlist: Add perf_evlist__remove() (Jiri Olsa) [1308570]
-- [tools] perf evlist: Add perf_evlist__id2evsel_strict() (Jiri Olsa) [1308570]
-- [tools] perf script: Make scripting_max_stack value allow for synthesized callchains (Jiri Olsa) [1308570]
-- [tools] perf scripting python: Allow for max_stack greater than PERF_MAX_STACK_DEPTH (Jiri Olsa) [1308570]
-- [tools] perf script: Add a setting for maximum stack depth (Jiri Olsa) [1308570]
-- [tools] perf hists: Allow for max_stack greater than PERF_MAX_STACK_DEPTH (Jiri Olsa) [1308570]
-- [tools] perf report: Make max_stack value allow for synthesized callchains (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Support generating branch stack (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Move branch filter logic (Jiri Olsa) [1308570]
-- [tools] perf inject: Set branch stack feature flag when synthesizing branch stacks (Jiri Olsa) [1308570]
-- [tools] perf report: Skip events with null branch stacks (Jiri Olsa) [1308570]
-- [tools] perf report: Also do default setup for synthesized branch stacks (Jiri Olsa) [1308570]
-- [tools] perf report: Adjust sample type validation for synthesized branch stacks (Jiri Olsa) [1308570]
-- [tools] perf auxtrace: Add option to synthesize branch stacks on samples (Jiri Olsa) [1308570]
-- [tools] perf tools: Add more documentation to export-to-postgresql.py script (Jiri Olsa) [1308570]
-- [tools] perf session: Warn when AUX data has been lost (Jiri Olsa) [1308570]
-- [tools] perf script: Allow time to be displayed in nanoseconds (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Make logging slightly more efficient (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Fix potential loop forever (Jiri Olsa) [1308570]
-- [tools] perf report: Fix sample type validation for synthesized callchains (Jiri Olsa) [1308570]
-- [tools] perf auxtrace: Fix 'instructions' period of zero (Jiri Olsa) [1308570]
-- [tools] build: Build fixdep helper from perf and basic libs (Jiri Olsa) [1308570]
-- [tools] perf tools: Rename the 'single_dep' target to 'prepare' (Jiri Olsa) [1308570]
-- [tools] build: Make the fixdep helper part of the build process (Jiri Olsa) [1308570]
-- [tools] build: Move dependency copy into function (Jiri Olsa) [1308570]
-- [tools] build: Add fixdep dependency helper (Jiri Olsa) [1308570]
-- [tools] build: Add test for missing include (Jiri Olsa) [1308570]
-- [tools] build: Add Makefile.include (Jiri Olsa) [1308570]
-- [tools] lib api fs: Store tracing mountpoint for better error message (Jiri Olsa) [1308570]
-- [tools] perf tools: Use __map__is_kernel() when synthesizing kernel module mmap records (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Use the map to determine if a DSO is being used as a kernel (Jiri Olsa) [1308570]
-- [tools] perf top: Filter symbols based on __map__is_kernel(map) (Jiri Olsa) [1308570]
-- [tools] perf record: Synthesize COMM event for a command line workload (Jiri Olsa) [1308570]
-- [tools] perf tools: Add include/err.h into MANIFEST (Jiri Olsa) [1308570]
-- [tools] build: Allow setting the feature detection user (Jiri Olsa) [1308570]
-- [tools] build: Fixup feature detection display function name (Jiri Olsa) [1308570]
-- [tools] perf tools: Don't assume that the parser returns non empty evsel list (Jiri Olsa) [1308570]
-- [tools] perf probe: Fix a segfault when removing uprobe events (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce regs_query_register_offset() for x86 (Jiri Olsa) [1308570]
-- [tools] perf tools: regs_query_register_offset() infrastructure (Jiri Olsa) [1308570]
-- [tools] perf tools: Enhance parsing events tracepoint error output (Jiri Olsa) [1308570]
-- [tools] perf evsel: Propagate error info from tp_format (Jiri Olsa) [1308570]
-- [tools] perf tools: Propagate error info for the tracepoint parsing (Jiri Olsa) [1308570]
-- [tools] Add err.h with ERR_PTR PTR_ERR interface (Jiri Olsa) [1308570]
-- [tools] perf probe: Export init/exit_probe_symbol_maps() (Jiri Olsa) [1308570]
-- [tools] perf probe: Free perf_probe_event in cleanup_perf_probe_events() (Jiri Olsa) [1308570]
-- [tools] perf test: Add entry for hists socket filter (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Zoom in/out for processor socket (Jiri Olsa) [1308570]
-- [tools] perf report: Introduce --socket-filter option (Jiri Olsa) [1308570]
-- [tools] perf tools: Introduce new sort type "socket" for the processor socket (Jiri Olsa) [1308570]
-- [tools] perf tools: Add processor socket info to hist_entry and addr_location (Jiri Olsa) [1308570]
-- [tools] perf machine: Add pointer to sample's environment (Jiri Olsa) [1308570]
-- [tools] perf env: Introduce read_cpu_topology_map() method (Jiri Olsa) [1308570]
-- [tools] perf cpu_map: Use sysfs__read_int in get_{core, socket}_id() (Jiri Olsa) [1308570]
-- [tools] lib api cpu: Introduce cpu.[ch] to obtain cpu related information (Jiri Olsa) [1308570]
-- [tools] lib api fs: Introduce sysfs__read_{int, ull}() (Jiri Olsa) [1308570]
-- [tools] perf env: Read msr pmu type from header (Jiri Olsa) [1308570]
-- [tools] perf tools: Add tools/include into tags directories (Jiri Olsa) [1308570]
-- [tools] perf evsel: Remove forward declaration of 'struct perf_evlist' (Jiri Olsa) [1308570]
-- [tools] perf hists browser: Fixup the "cpu" column width calculation (Jiri Olsa) [1308570]
-- [tools] perf env: Adopt perf_header__set_cmdline (Jiri Olsa) [1308570]
-- [tools] perf env: Rename some leftovers from rename to perf_env (Jiri Olsa) [1308570]
-- [tools] perf env: Move perf_env out of header.h and session.c into separate object (Jiri Olsa) [1308570]
-- [tools] perf tests: Introduce iterator function for tests (Jiri Olsa) [1308570]
-- [tools] perf test: Add entry to test cpu topology (Jiri Olsa) [1308570]
-- [tools] perf tools: Switch to tracing_path interface on appropriate places (Jiri Olsa) [1308570]
-- [tools] lib api fs: Remove debugfs, tracefs and findfs objects (Jiri Olsa) [1308570]
-- [tools] lib api fs: Replace debugfs/tracefs objects interface with fs.c (Jiri Olsa) [1308570]
-- [tools] lib api fs: Make tracing_path_strerror_open message generic (Jiri Olsa) [1308570]
-- [tools] perf tests: Print objdump/dso buffers if they don't match (Jiri Olsa) [1308570]
-- [tools] perf tests: Stop reading if objdump output crossed sections (Jiri Olsa) [1308570]
-- [tools] perf tests: Make objdump disassemble zero blocks (Jiri Olsa) [1308570]
-- [tools] perf tests: Take into account address of each objdump line (Jiri Olsa) [1308570]
-- [tools] perf trace: Add read/write to the file group (Jiri Olsa) [1308570]
-- [tools] perf probe: Print deleted events in cmd_probe() (Jiri Olsa) [1308570]
-- [tools] perf probe: Split del_perf_probe_events() (Jiri Olsa) [1308570]
-- [tools] perf probe: Move print logic into cmd_probe() (Jiri Olsa) [1308570]
-- [tools] perf probe: Link trace_probe_event into perf_probe_event (Jiri Olsa) [1308570]
-- [tools] perf probe: Split add_perf_probe_events() (Jiri Olsa) [1308570]
-- [tools] perf intel-pt: Add support for PERF_RECORD_SWITCH (Jiri Olsa) [1308570]
-- [tools] perf session: Don't call dump_sample() when evsel is NULL (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Add new xsave instructions (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Add new memory protection keys instructions (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Add new memory instructions (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Add new SHA instructions (Jiri Olsa) [1308570]
-- [tools] x86/insn: perf tools: Pedantically tweak opcode map for MPX instructions (Jiri Olsa) [1308570]
-- [x86] asm/decoder: Explain CALLW discrepancy between Intel and AMD (Jiri Olsa) [1308570]
-- [x86] mpx: Add MPX related opcodes to the x86 opcode map (Jiri Olsa) [1308570]
-- [x86] insn: Add new opcodes as of June, 2013 (Jiri Olsa) [1308570]
-- [tools] perf tools: Add a test for decoding of new x86 instructions (Jiri Olsa) [1308570]
-- [tools] perf tools: Display build warning if x86 instruction decoder differs from kernel (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add FSTYPE__configured() method (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add FSTYPE__mount() method (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add tracefs into fs.c object (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add debugfs into fs.c object (Jiri Olsa) [1308570]
-- [tools] lib api fs: Move SYSFS_MAGIC PROC_SUPER_MAGIC into fs.c (Jiri Olsa) [1308570]
-- [tools] lib api fs: Add STR and PATH_MAX macros to fs object (Jiri Olsa) [1308570]
-- [tools] lib api fs: Move debugfs__strerror_open into tracing_path.c object (Jiri Olsa) [1308570]
-- [tools] lib api fs: Move tracing_path interface into api/fs/tracing_path.c (Jiri Olsa) [1308570]
-- [tools] perf tools: Move tracing_path stuff under same namespace (Jiri Olsa) [1308570]
-- [tools] perf tools: Remove mountpoint arg from perf_debugfs_mount (Jiri Olsa) [1308570]
-- [tools] perf stat: Quieten failed to read counter message (Jiri Olsa) [1308570]
-- [tools] perf tools: Store the cpu socket and core ids in the perf.data header (Jiri Olsa) [1308570]
-- [tools] perf cpumap: Factor out functions to get core_id and socket_id (Jiri Olsa) [1308570]
-- [tools] lib traceevent: Support function __get_dynamic_array_len (Jiri Olsa) [1308570]
-- [tools] perf tools: Copy linux/filter.h to tools/include (Jiri Olsa) [1308570]
-- [tools] perf tools: Always use non inlined file name for 'srcfile' sort key (Jiri Olsa) [1308570]
-- [kernel] perf: Fix race in swevent hash (Jiri Olsa) [1308570]
-- [kernel] perf: Fix race in perf_event_exec() (Jiri Olsa) [1308570]
-- [kernel] perf: Do not send exit event twice (Jiri Olsa) [1308570]
-- [kernel] perf: Fix PERF_EVENT_IOC_PERIOD deadlock (Jiri Olsa) [1308570]
-- [kernel] perf: Fix inherited events vs. tracepoint filters (Jiri Olsa) [1308570]
-- [kernel] perf: Disable IRQs across RCU RS CS that acquires scheduler lock (Jiri Olsa) [1308570]
-
-* Tue Mar 08 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-361.el7]
-- [tools] perf tools: Fix build break on powerpc due to sample_reg_masks (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix copying of /proc/kcore (Jiri Olsa) [1306834]
-- [tools] perf intel-pt: Remove no_force_psb from documentation (Jiri Olsa) [1306834]
-- [tools] perf probe: Use existing routine to look for a kernel module by dso->short_name (Jiri Olsa) [1306834]
-- [tools] lib traceevent: Fix string handling in heterogeneous arch environments (Jiri Olsa) [1306834]
-- [tools] perf record: Avoid infinite loop at buildid processing with no samples (Jiri Olsa) [1306834]
-- [tools] perf tools: Bool functions shouldn't return -1 (Jiri Olsa) [1306834]
-- [tools] build: Add test for presence of __get_cpuid() gcc builtin (Jiri Olsa) [1306834]
-- [tools] build: Add test for presence of numa_num_possible_cpus() in libnuma (Jiri Olsa) [1306834]
-- [tools] revert "perf symbols: Fix mismatched declarations for elf_getphdrnum" (Jiri Olsa) [1306834]
-- [tools] perf stat: Fix per-pkg event reporting bug (Jiri Olsa) [1306834]
-- [tools] perf tests: Fix software clock events test setting maps (Jiri Olsa) [1306834]
-- [tools] perf tests: Fix task exit test setting maps (Jiri Olsa) [1306834]
-- [tools] perf evlist: Fix create_syswide_maps() not propagating maps (Jiri Olsa) [1306834]
-- [tools] perf evlist: Fix add() not propagating maps (Jiri Olsa) [1306834]
-- [tools] perf evlist: Factor out a function to propagate maps for a single evsel (Jiri Olsa) [1306834]
-- [tools] perf evlist: Make create_maps() use set_maps() (Jiri Olsa) [1306834]
-- [tools] perf evlist: Make set_maps() more resilient (Jiri Olsa) [1306834]
-- [tools] perf evsel: Add own_cpus member (Jiri Olsa) [1306834]
-- [tools] perf evlist: Fix missing thread_map__put in propagate_maps() (Jiri Olsa) [1306834]
-- [tools] perf evlist: Fix splice_list_tail() not setting evlist (Jiri Olsa) [1306834]
-- [tools] perf evlist: Add has_user_cpus member (Jiri Olsa) [1306834]
-- [tools] perf evlist: Remove redundant validation from propagate_maps() (Jiri Olsa) [1306834]
-- [tools] perf evlist: Simplify set_maps() logic (Jiri Olsa) [1306834]
-- [tools] perf evlist: Simplify propagate_maps() logic (Jiri Olsa) [1306834]
-- [tools] perf top: Fix segfault pressing -> with no hist entries (Jiri Olsa) [1306834]
-- [tools] perf header: Fixup reading of HEADER_NRCPUS feature (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix use of wrong event when processing exit events (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix parse_events_add_pmu caller (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix link time error with sample_reg_masks on non x86 (Jiri Olsa) [1306834]
-- [tools] perf build: Fix Intel PT instruction decoder dependency problem (Jiri Olsa) [1306834]
-- [tools] perf dwarf: Fix potential array out of bounds access (Jiri Olsa) [1306834]
-- [tools] perf record: Add ability to name registers to record (Jiri Olsa) [1306834]
-- [tools] perf/x86: Add list of register names (Jiri Olsa) [1306834]
-- [tools] perf script: Enable printing of interrupted machine state (Jiri Olsa) [1306834]
-- [tools] perf evlist: Open event on evsel cpus and threads (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix build on powerpc broken by pt/bts (Jiri Olsa) [1306834]
-- [kernel] perf: add the necessary core perf APIs when accessing events counters in eBPF programs (Jiri Olsa) [1306834]
-- [tools] perf evlist: Add backpointer for perf_env to evlist (Jiri Olsa) [1306834]
-- [tools] perf tools: Rename perf_session_env to perf_env (Jiri Olsa) [1306834]
-- [tools] perf tools: Do not change lib/api/fs/debugfs directly (Jiri Olsa) [1306834]
-- [tools] perf tools: Add tracing_path and remove unneeded functions (Jiri Olsa) [1306834]
-- [tools] perf buildid: Introduce sysfs/filename__sprintf_build_id (Jiri Olsa) [1306834]
-- [tools] perf evsel: Add a backpointer to the evlist a evsel is in (Jiri Olsa) [1306834]
-- [tools] perf trace: Add header with copyright and background info (Jiri Olsa) [1306834]
-- [tools] perf scripts python: Add new compaction-times script (Jiri Olsa) [1306834]
-- [tools] lib traceeveent: Allow for negative numbers in print format (Jiri Olsa) [1306834]
-- [tools] perf script: Add --[no-]-demangle/--[no-]-demangle-kernel (Jiri Olsa) [1306834]
-- [tools] perf stat: Get correct cpu id for print_aggr (Jiri Olsa) [1306834]
-- [tools] perf probe: Support probing at absolute address (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix error reported when offset without function (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix list result when address is zero (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix list result when symbol can't be found (Jiri Olsa) [1306834]
-- [tools] build: Allow duplicate objects in the object list (Jiri Olsa) [1306834]
-- [tools] perf tools: Remove export.h from MANIFEST (Jiri Olsa) [1306834]
-- [tools] perf probe: Prevent segfault when reading probe point with absolute address (Jiri Olsa) [1306834]
-- [tools] perf tools: Update Intel PT documentation (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for decoding TRACESTOP packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for using CYC packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for decoding CYC packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for using MTC packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for decoding MTC packets (Jiri Olsa) [1306834]
-- [tools] perf tools: Pass Intel PT information for decoding MTC and CYC (Jiri Olsa) [1306834]
-- [tools] perf tools: Add new Intel PT packet definitions (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support for PSB periods (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix Intel PT 'instructions' sample period (Jiri Olsa) [1306834]
-- [tools] perf ordered_events: Clear the progress bar at the end of a flush (Jiri Olsa) [1306834]
-- [tools] perf ui tui progress: Implement the ui_progress_ops->finish() method (Jiri Olsa) [1306834]
-- [tools] perf annotate: Reset the dso find_symbol cache when removing symbols (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix tarball build broken by pt/bts (Jiri Olsa) [1306834]
-- [tools] perf probe: Try to use symbol table if searching debug info failed (Jiri Olsa) [1306834]
-- [tools] perf tools: Initialize reference counts in map__clone() (Jiri Olsa) [1306834]
-- [tools] perf tools: Add example call-graph script (Jiri Olsa) [1306834]
-- [tools] perf tools: Put itrace options into an asciidoc include (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel BTS support (Jiri Olsa) [1306834]
-- [tools] lib traceevent: Add checks for returned EVENT_ERROR type (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix Intel PT timestamp handling (Jiri Olsa) [1306834]
-- [tools] perf tools: /proc/kcore requires CAP_SYS_RAWIO message too noisy (Jiri Olsa) [1306834]
-- [tools] perf script: Fix segfault using --show-mmap-events (Jiri Olsa) [1306834]
-- [tools] perf tools: Take Intel PT into use (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT support (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT decoder (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT log (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT instruction decoder (Jiri Olsa) [1306834]
-- [tools] perf tools: Add Intel PT packet decoder (Jiri Olsa) [1306834]
-- [tools] perf auxtrace: Add Intel PT as an AUX area tracing type (Jiri Olsa) [1306834]
-- [tools] perf tools: Add a helper function to probe whether cpu-wide tracing is possible (Jiri Olsa) [1306834]
-- [tools] perf symbols: Fix annotation of vdso (Jiri Olsa) [1306834]
-- [tools] perf annotate: Fix 32-bit compilation error in util/annotate.c (Jiri Olsa) [1306834]
-- [tools] perf script: Initialize callchain_param.record_mode (Jiri Olsa) [1306834]
-- [tools] perf trace: Move vfs_getname storage to per thread area (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix to add missed brace around if block (Jiri Olsa) [1306834]
-- [tools] perf tools: Support static linking with libdw (Jiri Olsa) [1306834]
-- [tools] perf tests: Add tests to callgraph and time parse (Jiri Olsa) [1306834]
-- [tools] perf report: Show call graph from reference events (Jiri Olsa) [1306834]
-- [tools] perf callchain: Allow disabling call graphs per event (Jiri Olsa) [1306834]
-- [tools] perf callchain: Per-event type selection support (Jiri Olsa) [1306834]
-- [tools] perf probe: Fix to show lines of sys_ functions correctly (Jiri Olsa) [1306834]
-- [tools] perf hists browser: Make ESC unzoom as well (Jiri Olsa) [1306834]
-- [tools] perf ui browser: Introduce ui_browser__printf() (Jiri Olsa) [1306834]
-- [tools] perf ui browser: Introduce ui_browser__write_nstring() (Jiri Olsa) [1306834]
-- [tools] perf trace: Beautify keyctl's option arg (Jiri Olsa) [1306834]
-- [tools] perf trace: Use the FD beautifier for socket syscall fds (Jiri Olsa) [1306834]
-- [tools] perf sort: Check for SRCLINE_UNKNOWN case in "srcfile" processing (Jiri Olsa) [1306834]
-- [tools] perf trace: Add missing clockid entries (Jiri Olsa) [1306834]
-- [tools] perf trace: Associate some more syscall args with the getname beautifier (Jiri Olsa) [1306834]
-- [tools] perf evlist: Be more specific on -F/--freq (Jiri Olsa) [1306834]
-- [tools] perf record: Support per-event freq term (Jiri Olsa) [1306834]
-- [tools] perf report: Add support for srcfile sort key (Jiri Olsa) [1306834]
-- [tools] perf hists: Update the column width for the "srcline" sort key (Jiri Olsa) [1306834]
-- [tools] perf hists: hist_entry__cmp() may use he_tmp.hists, initialize it (Jiri Olsa) [1306834]
-- [tools] perf tools: Unset perf_event_attr::freq when period term is set (Jiri Olsa) [1306834]
-- [tools] perf tools: Support full source file paths for srcline (Jiri Olsa) [1306834]
-- [tools] perf callchain: Move option parsing code to util.c (Jiri Olsa) [1306834]
-- [tools] perf stat: Move perf_counts struct and functions into separate object (Jiri Olsa) [1306834]
-- [tools] perf tools: Auto detecting kernel include options (Jiri Olsa) [1306834]
-- [tools] perf tools: Auto detecting kernel build directory (Jiri Olsa) [1306834]
-- [tools] perf tools: Call clang to compile C source to object code (Jiri Olsa) [1306834]
-- [tools] perf tools: Introduce llvm config options (Jiri Olsa) [1306834]
-- [tools] perf tools: Extend the event parser maximum error index (Jiri Olsa) [1306834]
-- [tools] perf tools: Validate config term maximum value (Jiri Olsa) [1306834]
-- [tools] perf tools: Add perf_pmu__format_bits() (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix perf-with-kcore handling of arguments containing spaces (Jiri Olsa) [1306834]
-- [tools] perf auxtrace: Fix period type 'i' not working (Jiri Olsa) [1306834]
-- [tools] perf tools xtensa: Add DWARF register names (Jiri Olsa) [1306834]
-- [tools] perf report: Display cycles in branch sort mode (Jiri Olsa) [1306834]
-- [tools] perf top: Add branch annotation code to top (Jiri Olsa) [1306834]
-- [tools] perf annotate: Finally display IPC and cycle accounting (Jiri Olsa) [1306834]
-- [tools] perf annotate: Compute IPC and basic block cycles (Jiri Olsa) [1306834]
-- [tools] perf report: Add processing for cycle histograms (Jiri Olsa) [1306834]
-- [tools] perf report: Add infrastructure for a cycles histogram (Jiri Olsa) [1306834]
-- [tools] perf report: Add flag for non ANY branch mode (Jiri Olsa) [1306834]
-- [tools] perf tools: Add support for cycles, weight branch_info field (Jiri Olsa) [1306834]
-- [tools] perf tools: Add empty Build files for architectures lacking them (Jiri Olsa) [1306834]
-- [tools] perf stat: Move counter processing code into stat object (Jiri Olsa) [1306834]
-- [tools] perf stat: Pass 'struct perf_stat_config' into process_counter() (Jiri Olsa) [1306834]
-- [tools] perf stat: Move 'interval' into struct perf_stat_config (Jiri Olsa) [1306834]
-- [tools] perf stat: Move 'output' into struct perf_stat_config (Jiri Olsa) [1306834]
-- [tools] perf stat: Move 'scale' into struct perf_stat_config (Jiri Olsa) [1306834]
-- [tools] perf stat: Introduce struct perf_stat_config (Jiri Olsa) [1306834]
-- [tools] perf tools: Add missing forward declaration of struct map to probe-event.h (Jiri Olsa) [1306834]
-- [tools] perf tools: Introduce veprintf (Jiri Olsa) [1306834]
-- [tools] perf trace: Add total time column to summary (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix build errors with mipsel-linux-uclibc compiler (Jiri Olsa) [1306834]
-- [tools] perf trace: Write to stderr by default (Jiri Olsa) [1306834]
-- [tools] perf tools: Do not include escape sequences in color_vfprintf return (Jiri Olsa) [1306834]
-- [tools] perf tools: Remove trail argument to color vsprintf (Jiri Olsa) [1306834]
-- [tools] perf tools: Refine parse/config callchain functions (Jiri Olsa) [1306834]
-- [tools] perf tools: Per-event time support (Jiri Olsa) [1306834]
-- [tools] perf trace: Use vfs_getname syscall arg beautifier in more syscalls (Jiri Olsa) [1306834]
-- [tools] perf trace: Deref sys_enter pointer args with contents from probe:vfs_getname (Jiri Olsa) [1306834]
-- [tools] perf trace: Use a constant for the syscall formatting buffer (Jiri Olsa) [1306834]
-- [tools] perf trace: Remember if the vfs_getname tracepoint/kprobe is in place (Jiri Olsa) [1306834]
-- [tools] perf trace: Do not show syscall tracepoint filter in the --no-syscalls case (Jiri Olsa) [1306834]
-- [tools] perf script: No tracepoints? Don't call libtraceevent (Jiri Olsa) [1306834]
-- [tools] perf tests: Adding build test for having ending double slash (Jiri Olsa) [1306834]
-- [tools] perf tools: Introduce callgraph_set for callgraph option (Jiri Olsa) [1306834]
-- [tools] perf tools: Force period term to overload global settings (Jiri Olsa) [1306834]
-- [tools] perf tools: Add support for event post configuration (Jiri Olsa) [1306834]
-- [tools] perf session env: Rename exit method (Jiri Olsa) [1306834]
-- [tools] perf symbols: Fix mismatched declarations for elf_getphdrnum (Jiri Olsa) [1306834]
-- [tools] perf python: Make twatch.py use soft dummy event, freq=0 (Jiri Olsa) [1306834]
-- [tools] perf python: Add missing PERF_RECORD_{MMAP2, AUX, etc} (Jiri Olsa) [1306834]
-- [tools] perf python: Add macro to simplify maintainance of the constants array (Jiri Olsa) [1306834]
-- [tools] perf python: Remove dependency on 'machine' methods (Jiri Olsa) [1306834]
-- [tools] perf script: Add option --show-switch-events (Jiri Olsa) [1306834]
-- [tools] perf script: Don't assume evsel position of tracking events (Jiri Olsa) [1306834]
-- [tools] perf record: Add option --switch-events to select PERF_RECORD_SWITCH events (Jiri Olsa) [1306834]
-- [tools] perf tools: Add new PERF_RECORD_SWITCH event (Jiri Olsa) [1306834]
-- [tools] perf tools: Stop copying kallsyms into the perf.data file header (Jiri Olsa) [1306834]
-- [tools] perf tools: Stop reading the kallsyms data from perf.data (Jiri Olsa) [1306834]
-- [tools] perf script: Switch from perf.data's kallsyms to perf's symbol resolver (Jiri Olsa) [1306834]
-- [tools] perf trace: Provide libtracevent with a kernel symbol resolver (Jiri Olsa) [1306834]
-- [tools] perf symbols: Provide libtraceevent callback to resolve kernel symbols (Jiri Olsa) [1306834]
-- [tools] lib traceevent: Allow setting an alternative symbol resolver (Jiri Olsa) [1306834]
-- [tools] perf symbols: Introduce map__is_(kernel, kmodule)() (Jiri Olsa) [1306834]
-- [tools] perf symbols: Add front end cache for DSO symbol lookup (Jiri Olsa) [1306834]
-- [tools] perf header: Use argv style storage for cmdline feature data (Jiri Olsa) [1306834]
-- [tools] perf evlist: Tolerate NULL maps in propagate_maps (Jiri Olsa) [1306834]
-- [tools] perf evlist: Use bool instead of target argument in propagate_maps() (Jiri Olsa) [1306834]
-- [tools] perf evlist: Force perf_evlist__set_maps to propagate maps through events (Jiri Olsa) [1306834]
-- [tools] perf test: Check for refcnt in thread_map test (Jiri Olsa) [1306834]
-- [tools] perf bench futex: Add lock_pi stresser (Jiri Olsa) [1306834]
-- [tools] perf tools: Fix makefile generation under dash (Jiri Olsa) [1306834]
-- [tools] perf buildid: Use SBUILD_ID_SIZE macro (Jiri Olsa) [1306834]
-- [tools] perf probe: Move ftrace probe-event operations to probe-file.c (Jiri Olsa) [1306834]
-- [tools] perf probe: Simplify __add_probe_trace_events code (Jiri Olsa) [1306834]
-- [tools] perf record: Allow filtering perf's pid via --exclude-perf (Jiri Olsa) [1306834]
-- [tools] perf record: Apply filter to all events in a glob matching (Jiri Olsa) [1306834]
-- [tools] perf trace: Support 'strace' syscall event groups (Jiri Olsa) [1306834]
-- [tools] perf strlist: Make parse_list() private (Jiri Olsa) [1306834]
-- [tools] perf strlist: Allow substitutions from file contents in a given directory (Jiri Olsa) [1306834]
-- [tools] perf strlist: Make dupstr be the default and part of an extensible config parm (Jiri Olsa) [1306834]
-- [tools] perf strlist: load() should return a negative errno (Jiri Olsa) [1306834]
-- [tools] perf record: Document setting '-e pmu/period=N/' in man page (Jiri Olsa) [1306834]
-- [tools] lib api debugfs: Check for tracefs when reporting errors (Jiri Olsa) [1306834]
-- [tools] perf record: Let user have timestamps with per-thread recording (Jiri Olsa) [1306834]
-- [tools] perf probe: Delete an unnecessary check before the function call "strfilter__delete" (Jiri Olsa) [1306834]
-- [tools] perf trace: Use event filters for the event qualifier list (Jiri Olsa) [1306834]
-- [tools] perf evsel: Introduce append_filter() method (Jiri Olsa) [1306834]
-- [tools] perf evlist: Make perf_evlist__set_filter use perf_evsel__set_filter (Jiri Olsa) [1306834]
-- [tools] perf evsel: Introduce set_filter method (Jiri Olsa) [1306834]
-- [tools] perf evsel: Rename set_filter to apply_filter (Jiri Olsa) [1306834]
-- [tools] perf trace: Store the syscall ids for the event qualifiers in a table (Jiri Olsa) [1306834]
-- [tools] perf trace: Remember what are the syscalls tracepoint evsels (Jiri Olsa) [1306834]
-- [tools] perf tools: Asprintf like functions to format integer filter expression (Jiri Olsa) [1306834]
-- [tools] Restore export.h (Jiri Olsa) [1306834]
-- [kernel] perf: Fix races in computing the header sizes (Jiri Olsa) [1306834]
-- [kernel] perf: Fix u16 overflows (Jiri Olsa) [1306834]
-- [kernel] perf: Restructure perf syscall point of no return (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Fix Skylake FRONTEND MSR extrareg mask (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/pebs: Add PEBS frontend profiling for Skylake (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Make the CYCLE_ACTIVITY.* constraint on Broadwell more specific (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Fix constraint access (Jiri Olsa) [1306834]
-- [kernel] perf/ring-buffer: Clarify the use of page::private for high-order AUX allocations (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/pebs: Robustify PEBS buffer drain (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/pebs: Fix event disable PEBS buffer drain (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/uncore: Add Broadwell-DE uncore support (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Use 0x11 as extra reg test value (Jiri Olsa) [1306834]
-- [x86] perf/x86: Make merge_attr() global to use from perf_event_intel (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Limit LBR accesses to TOS in callstack mode (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Use correct index to save/restore LBR_INFO with call stack (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Add Intel Skylake PMU support (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Optimize v4 LBR unfreezing (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Streamline LBR MSR handling in PMI (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Move PMU ACK to after LBR read (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Handle new arch perfmon v4 status bits (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Add support for LBRv5 (Jiri Olsa) [1306834]
-- [x86] Add new MSRs and MSR bits used for Intel Skylake PMU support (Jiri Olsa) [1306834]
-- [include] perf: Add cycles to branch_info (Jiri Olsa) [1306834]
-- [include] perf: Export struct perf_branch_entry to userspace (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/lbr: Allow time stamp for free running PEBSv3 (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel: Add support for PEBSv3 profiling (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/uncore: Remove use of macro DEFINE_PCI_DEVICE_TABLE() (Jiri Olsa) [1306834]
-- [x86] perf/x86/intel/rapl: Add support for Knights Landing (KNL) (Jiri Olsa) [1306834]
-- [x86] perf/x86: Add a native_perf_sched_clock_from_tsc() (Jiri Olsa) [1306834]
-
-* Mon Mar 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-360.el7]
-- [tools] perf top: Show backtrace when handling a SIGSEGV on --stdio mode (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix buildid processing (Jiri Olsa) [1305882]
-- [tools] perf tools: Make fork event processing more resilient (Jiri Olsa) [1305882]
-- [tools] perf tools: Avoid deadlock when map_groups are broken (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix test build error when bindir contains double slash (Jiri Olsa) [1305882]
-- [tools] perf stat: Fix transaction lenght metrics (Jiri Olsa) [1305882]
-- [tools] perf tools: Really allow to specify custom CC, AR or LD (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Fix misplaced check for HAVE_SYNC_COMPARE_AND_SWAP_SUPPORT (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Take the --comm, --dsos, etc filters into account (Jiri Olsa) [1305882]
-- [tools] perf symbols: Store if there is a filter in place (Jiri Olsa) [1305882]
-- [tools] Copy lib/hweight.c from the kernel sources (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix the detached tarball wrt rbtree copy (Jiri Olsa) [1305882]
-- [tools] perf thread_map: Fix the sizeof() calculation for map entries (Jiri Olsa) [1305882]
-- [tools] lib: Improve clean target (Jiri Olsa) [1305882]
-- [tools] perf stat: Fix shadow declaration of close (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix lockup using 32-bit compat vdso (Jiri Olsa) [1305882]
-- [tools] Copy rbtree_augmented.h from the kernel (Jiri Olsa) [1305882]
-- [tools] Move rbtree.h from tools/perf/ (Jiri Olsa) [1305882]
-- [tools] Copy lib/rbtree.c to tools/lib/ (Jiri Olsa) [1305882]
-- [tools] perf tools: Copy rbtree.h from the kernel (Jiri Olsa) [1305882]
-- [tools] Adopt {READ, WRITE_ONCE} from the kernel (Jiri Olsa) [1305882]
-- [tools] perf tools: Allow to specify custom linker command (Jiri Olsa) [1305882]
-- [tools] perf tools: Create config.detected into OUTPUT directory (Jiri Olsa) [1305882]
-- [tools] perf mem: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf kvm: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf report: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf kmem: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf inject: Fill in the missing session freeing after an error occurs (Jiri Olsa) [1305882]
-- [tools] perf tools: Add missing break for PERF_RECORD_ITRACE_START (Jiri Olsa) [1305882]
-- [tools] perf symbols: Check access permission when reading symbol files (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce --per-thread option (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce print_counters function (Jiri Olsa) [1305882]
-- [tools] perf stat: Using init_stats instead of memset (Jiri Olsa) [1305882]
-- [tools] perf stat: Rename print_interval to process_interval (Jiri Olsa) [1305882]
-- [tools] perf stat: Remove perf_evsel__read_cb function (Jiri Olsa) [1305882]
-- [tools] perf stat: Move perf_stat initialization counter process code (Jiri Olsa) [1305882]
-- [tools] perf stat: Move zero_per_pkg into counter process code (Jiri Olsa) [1305882]
-- [tools] perf stat: Separate counters reading and processing (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce read_counters function (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_evsel__read function (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_evsel__alloc_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Move perf_evlist__(alloc|free|reset)_stats into stat object (Jiri Olsa) [1305882]
-- [tools] perf stat: Move perf_evsel__(alloc|free)_prev_raw_counts into stat object (Jiri Olsa) [1305882]
-- [tools] perf stat: Move perf_evsel__(alloc|free|reset)_stat_priv into stat object (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_evlist__reset_stats (Jiri Olsa) [1305882]
-- [tools] perf stat: Rename struct perf_counts::cpu member to values (Jiri Olsa) [1305882]
-- [tools] perf stat: Make stats work over the thread dimension (Jiri Olsa) [1305882]
-- [tools] perf stat: Use xyarray for cpu evsel counts (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_counts function (Jiri Olsa) [1305882]
-- [tools] perf tests: Add thread_map object tests (Jiri Olsa) [1305882]
-- [tools] perf thrad_map: Add comm string into array (Jiri Olsa) [1305882]
-- [tools] perf thread_map: Introduce thread_map__reset function (Jiri Olsa) [1305882]
-- [tools] perf trace: Validate syscall list passed via -e argument (Jiri Olsa) [1305882]
-- [tools] perf tools: Make perf_evsel__(nr_)cpus generic (Jiri Olsa) [1305882]
-- [tools] perf evlist: Propagate thread maps through the evlist (Jiri Olsa) [1305882]
-- [tools] perf evlist: Propagate cpu maps to evsels in an evlist (Jiri Olsa) [1305882]
-- [tools] perf tools: Add reference counting for thread_map object (Jiri Olsa) [1305882]
-- [tools] perf tools: Add reference counting for cpu_map object (Jiri Olsa) [1305882]
-- [tools] perf header: Delete an unnecessary check before the calling free_event_desc() (Jiri Olsa) [1305882]
-- [tools] perf tools: Future-proof thread_map allocation size calculation (Jiri Olsa) [1305882]
-- [tools] perf tools: Allow auxtrace data alignment (Jiri Olsa) [1305882]
-- [tools] perf thread_map: Change map entries into a struct (Jiri Olsa) [1305882]
-- [tools] perf thread_map: Don't access the array entries directly (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix failure to probe events on arm (Jiri Olsa) [1305882]
-- [tools] perf tools: Print a newline before dumping Aggregated stats (Jiri Olsa) [1305882]
-- [tools] perf session: Print a newline when dumping PERF_RECORD_FINISHED_ROUND (Jiri Olsa) [1305882]
-- [tools] perf tools: Allow events with dot (Jiri Olsa) [1305882]
-- [tools] perf pmu: Split perf_pmu__new_alias() (Jiri Olsa) [1305882]
-- [tools] perf pmu: Use __weak definition from <linux/compiler.h> (Jiri Olsa) [1305882]
-- [tools] perf build: Fix single target build dependency check (Jiri Olsa) [1305882]
-- [tools] perf tests: Add test for make install with prefix (Jiri Olsa) [1305882]
-- [tools] perf tests: Add testing for Makefile.perf (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix build breakage if prefix= is specified (Jiri Olsa) [1305882]
-- [tools] perf top: Move toggling event logic into hists browser (Jiri Olsa) [1305882]
-- [tools] perf tools: Configurable per thread proc map processing time out (Jiri Olsa) [1305882]
-- [tools] perf tools: Add time out to force stop proc map processing (Jiri Olsa) [1305882]
-- [tools] perf report: Fix sort__sym_cmp to also compare end of symbol (Jiri Olsa) [1305882]
-- [tools] perf hists browser: React to unassigned hotkey pressing (Jiri Olsa) [1305882]
-- [tools] perf top: Tell the user how to unfreeze events after pressing 'f' (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Honour the help line provided by builtin-{top, report}.c (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Do not exit when 'f' is pressed in 'report' mode (Jiri Olsa) [1305882]
-- [tools] perf top: Replace CTRL+z with 'f' as hotkey for enable/disable events (Jiri Olsa) [1305882]
-- [tools] perf annotate: Rename source_line_percent to source_line_samples (Jiri Olsa) [1305882]
-- [tools] perf annotate: Display total number of samples with --show-total-period (Jiri Olsa) [1305882]
-- [tools] perf tools: Ensure thread-stack is flushed (Jiri Olsa) [1305882]
-- [tools] perf top: Allow disabling/enabling events dynamicly (Jiri Olsa) [1305882]
-- [tools] perf evlist: Add toggle_enable() method (Jiri Olsa) [1305882]
-- [tools] perf probe: Speed up perf probe --list by caching debuginfo (Jiri Olsa) [1305882]
-- [tools] perf probe: Show usage even if the last event is skipped (Jiri Olsa) [1305882]
-- [tools] perf tools: Move libtraceevent dynamic list to separated LDFLAGS variable (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix a problem when opening old perf.data with different byte order (Jiri Olsa) [1305882]
-- [tools] perf tools: Ignore .config-detected in .gitignore (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix to return error if no probe is added (Jiri Olsa) [1305882]
-- [tools] perf unwind: Fix a compile error (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce perf_counts__(new|delete|reset) functions (Jiri Olsa) [1305882]
-- [tools] perf tools: Move perf_evsel__(alloc|free|reset)_counts into stat object (Jiri Olsa) [1305882]
-- [tools] perf tools: Add thread_map__(alloc|realloc) helpers (Jiri Olsa) [1305882]
-- [tools] perf tools: Introduce xyarray__reset function (Jiri Olsa) [1305882]
-- [tools] perf probe: List probes in stdout (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Fix python/perf.so compiling error (Jiri Olsa) [1305882]
-- [tools] perf tools: Replace map->referenced & maps->removed_maps with map->refcnt (Jiri Olsa) [1305882]
-- [tools] perf probe: Cut off the gcc optimization postfixes from function name (Jiri Olsa) [1305882]
-- [tools] perf tools: Update MANIFEST per files removed from kernel (Jiri Olsa) [1305882]
-- [tools] trace: Beautify perf_event_open syscall (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix build failure on 32-bit arch (Jiri Olsa) [1305882]
-- [tools] perf stat: Error out unsupported group leader immediately (Jiri Olsa) [1305882]
-- [tools] perf evsel: Display 0x for hex values when printing the attribute (Jiri Olsa) [1305882]
-- [tools] perf record: Amend option summaries (Jiri Olsa) [1305882]
-- [tools] perf tools: Avoid possible race condition in copyfile() (Jiri Olsa) [1305882]
-- [tools] perf tools: Reference count struct dso (Jiri Olsa) [1305882]
-- [tools] perf tools: Protect accesses the dso rbtrees/lists with a rw lock (Jiri Olsa) [1305882]
-- [tools] perf machine: Fix up some more method names (Jiri Olsa) [1305882]
-- [tools] perf record: Fix perf.data size in no-buildid mode (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Ignore libtrace-dynamic-list file (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Export dynamic symbols used by traceevent plugins (Jiri Olsa) [1305882]
-- [tools] perf stat: Move shadow stat counters into separate object (Jiri Olsa) [1305882]
-- [tools] perf stat: Add aggr_mode argument to print_shadow_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Add output file argument to print_shadow_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce print_shadow_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Introduce reset_shadow_stats function (Jiri Olsa) [1305882]
-- [tools] perf stat: Remove transaction_run from shadow update/print code (Jiri Olsa) [1305882]
-- [tools] perf stat: Remove setup_events function (Jiri Olsa) [1305882]
-- [tools] perf stat: Replace transaction event possition check with id check (Jiri Olsa) [1305882]
-- [tools] perf stat: Add id into perf_stat struct (Jiri Olsa) [1305882]
-- [tools] perf tools: handle PERF_RECORD_LOST_SAMPLES (Jiri Olsa) [1305882]
-- [tools] perf record: Add support for sampling indirect jumps (Jiri Olsa) [1305882]
-- [tools] perf tools: Deal with kernel module names in '[]' correctly (Jiri Olsa) [1305882]
-- [tools] Move tools/perf/util/include/linux/{list.h, poison.h} to tools/include (Jiri Olsa) [1305882]
-- [tools] perf tools: Move linux/kernel.h to tools/include (Jiri Olsa) [1305882]
-- [tools] perf machine: Fix the search for the kernel DSO on the unified list (Jiri Olsa) [1305882]
-- [tools] perf tools: Remove newline char when reading event scale and unit (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix segfault when glob matching function without debuginfo (Jiri Olsa) [1305882]
-- [tools] perf tools: Make Ctrl-C stop processing on TUI (Jiri Olsa) [1305882]
-- [tools] perf build: Do not fail on missing Build file (Jiri Olsa) [1305882]
-- [tools] perf machine: Fix up vdso methods names (Jiri Olsa) [1305882]
-- [tools] perf machine: Introduce machine__findnew_dso() method (Jiri Olsa) [1305882]
-- [tools] perf machine: No need to have two DSOs lists (Jiri Olsa) [1305882]
-- [tools] perf machine: Adopt findnew_kernel method (Jiri Olsa) [1305882]
-- [tools] perf tests: Remove getpgrp from mmap-basic (Jiri Olsa) [1305882]
-- [tools] perf tests: Aename open*.c to openat*.c (Jiri Olsa) [1305882]
-- [tools] perf tests: Switch from open to openat (Jiri Olsa) [1305882]
-- [tools] perf tools: Add ARM64 perf_regs_load to support libunwind and enable testing (Jiri Olsa) [1305882]
-- [tools] perf kmem: Fix compiler warning about may be accessing uninitialized variable (Jiri Olsa) [1305882]
-- [tools] perf db-export: Fix thread ref-counting (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix 'function unused' warning (Jiri Olsa) [1305882]
-- [tools] perf annotate: Fix -i option, which is currently ignored (Jiri Olsa) [1305882]
-- [tools] perf tools: Move branch option parsing to own file (Jiri Olsa) [1305882]
-- [tools] perf annotation: Add symbol__get_annotation (Jiri Olsa) [1305882]
-- [tools] perf tools: Reference count struct map (Jiri Olsa) [1305882]
-- [tools] perf tools: Check if a map is still in use when deleting it (Jiri Olsa) [1305882]
-- [tools] perf tools: Protect accesses the map rbtrees with a rw lock (Jiri Olsa) [1305882]
-- [tools] perf tools: Introduce struct maps (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix an error when deleting probes successfully (Jiri Olsa) [1305882]
-- [tools] perf probe: Show the error reason comes from invalid DSO (Jiri Olsa) [1305882]
-- [tools] perf tools: Disallow PMU events intel_pt and intel_bts until there is support (Jiri Olsa) [1305882]
-- [tools] perf sched: Add option to merge like comms to lat output (Jiri Olsa) [1305882]
-- [tools] perf tools: Improve setting of gcc debug option (Jiri Olsa) [1305882]
-- [tools] perf tools: Assign default value for some pointers (Jiri Olsa) [1305882]
-- [tools] perf tools: Use maps__first()/map__next() (Jiri Olsa) [1305882]
-- [tools] perf tools: Leave DSO destruction to the map destruction (Jiri Olsa) [1305882]
-- [tools] perf machine: Mark removed threads as such (Jiri Olsa) [1305882]
-- [tools] perf tools: Import rb_erase_init from block/ in the kernel sources (Jiri Olsa) [1305882]
-- [tools] perf tools: Nuke unused map_groups__flush() (Jiri Olsa) [1305882]
-- [tools] perf tools: Remove redundant initialization of thread linkage members (Jiri Olsa) [1305882]
-- [tools] perf tools: Rename maps__next (Jiri Olsa) [1305882]
-- [tools] perf tools: Add dso__data_get/put_fd() (Jiri Olsa) [1305882]
-- [tools] perf tools: Get rid of dso__data_fd() from dso__data_size() (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix dso__data_read_offset() file opening (Jiri Olsa) [1305882]
-- [tools] perf machine: Do not call map_groups__delete(), drop refcnt instead (Jiri Olsa) [1305882]
-- [tools] perf comm: Use atomic.h for refcounting (Jiri Olsa) [1305882]
-- [tools] perf hists: Rename add_hist_entry to hists__findnew_entry (Jiri Olsa) [1305882]
-- [tools] perf hists: Reducing arguments of hist_entry_iter__add() (Jiri Olsa) [1305882]
-- [tools] perf session: Fix perf_session__peek_event() (Jiri Olsa) [1305882]
-- [tools] perf build: Fix libunwind feature detection on 32-bit x86 (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix parse_events_error dereferences (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix function declarations needed by parse-events.y (Jiri Olsa) [1305882]
-- [tools] perf tools: Separate the tests and tools in installation (Jiri Olsa) [1305882]
-- [tools] perf bench numa: Share sched_getcpu() __weak def with cloexec.c (Jiri Olsa) [1305882]
-- [tools] build: Change FEATURE_TESTS and FEATURE_DISPLAY to weak binding (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Install libtraceevent.a into libdir (Jiri Olsa) [1305882]
-- [tools] perf tools: Set vmlinux_path__nr_entries to 0 in vmlinux_path__exit (Jiri Olsa) [1305882]
-- [tools] perf tools: Protect dso cache fd with a mutex (Jiri Olsa) [1305882]
-- [tools] perf symbols: Protect dso cache tree using dso->lock (Jiri Olsa) [1305882]
-- [tools] perf symbols: Protect dso symbol loading using a mutex (Jiri Olsa) [1305882]
-- [tools] perf tools: Introduce copyfile_offset() function (Jiri Olsa) [1305882]
-- [tools] perf tools: Add rm_rf() utility function (Jiri Olsa) [1305882]
-- [tools] perf tools: Elliminate alignment holes (Jiri Olsa) [1305882]
-- [tools] include: add __aligned_u64 to types.h (Jiri Olsa) [1305882]
-- [tools] perf probe: Load map before glob matching (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix dwarf-aux.c compilation on i386 (Jiri Olsa) [1305882]
-- [tools] perf cgroup: Use atomic.h for refcounting (Jiri Olsa) [1305882]
-- [tools] perf evlist: Use atomic.h for the perf_mmap refcount (Jiri Olsa) [1305882]
-- [tools] perf machine: Stop accessing atomic_t::counter directly (Jiri Olsa) [1305882]
-- [tools] perf tools: Use atomic.h for the map_groups refcount (Jiri Olsa) [1305882]
-- [tools] perf tools: Make flex/bison calls honour V=1 (Jiri Olsa) [1305882]
-- [tools] perf trace: Fix the build on older distros (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Provide le16toh define for older systems (Jiri Olsa) [1305882]
-- [tools] perf report: Fix some option handling on --stdio (Jiri Olsa) [1305882]
-- [tools] perf tests: Fix map_groups refcount test (Jiri Olsa) [1305882]
-- [tools] perf machine: No need to keep a refcnt for last_match (Jiri Olsa) [1305882]
-- [tools] perf tests: Show refcounting broken expectations in thread-mg-share test (Jiri Olsa) [1305882]
-- [tools] perf report: Do not restrict -T option by other options (Jiri Olsa) [1305882]
-- [tools] perf tests: Fix to get negative exit codes (Jiri Olsa) [1305882]
-- [tools] perf probe: Show better error message when failed to find variable (Jiri Olsa) [1305882]
-- [tools] perf probe: Add --range option to show a variable's location range (Jiri Olsa) [1305882]
-- [tools] perf probe: Remove length limitation for showing available variables (Jiri Olsa) [1305882]
-- [tools] perf trace: Removed duplicated NULL test (Jiri Olsa) [1305882]
-- [tools] perf report: Force tty output if -T/--thread option is given (Jiri Olsa) [1305882]
-- [tools] perf tools: Document relation of per-thread event count feature (Jiri Olsa) [1305882]
-- [tools] perf kmem: Fix compiler warning about may be accessing uninitialized variable (Jiri Olsa) [1305882]
-- [tools] perf build: Disable libdw DWARF unwind when built with NO_DWARF (Jiri Olsa) [1305882]
-- [tools] perf probe: Support glob wildcards for function name (Jiri Olsa) [1305882]
-- [tools] perf probe: Add --no-inlines option to avoid searching inline functions (Jiri Olsa) [1305882]
-- [tools] perf probe: Introduce probe_conf global configs (Jiri Olsa) [1305882]
-- [tools] perf probe: Use perf_probe_event.target instead of passing as an argument (Jiri Olsa) [1305882]
-- [tools] perf bench futex: Handle spurious wakeups (Jiri Olsa) [1305882]
-- [tools] perf bench futex: Support parallel waker threads (Jiri Olsa) [1305882]
-- [tools] perf machine: Protect the machine->threads with a rwlock (Jiri Olsa) [1305882]
-- [tools] perf tools: Use atomic_t to implement thread__{get, put} refcnt (Jiri Olsa) [1305882]
-- [tools] include: Add basic atomic.h implementation from the kernel sources (Jiri Olsa) [1305882]
-- [tools] perf tools: Move generic barriers out of perf-sys.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move tile barrier.h stuff to tools/arch/tile/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move mips barrier.h stuff to tools/arch/mips/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move xtensa barrier.h stuff to tools/arch/xtensa/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move arm(64) barrier.h stuff to tools/arch/arm*/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move ia64 barrier.h stuff to tools/arch/ia64/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move alpha barrier.h stuff to tools/arch/alpha/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move sparc barrier.h stuff to tools/arch/sparc/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move sh barrier.h stuff to tools/arch/sh/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] Adopt asm-generic/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move barrier() definition to tools/include/linux/compiler.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move s390 barrier.h stuff to tools/arch/s390/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move powerpc barrier.h stuff to tools/arch/powerpc/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf tools: Move x86 barrier.h stuff to tools/arch/x86/include/asm/barrier.h (Jiri Olsa) [1305882]
-- [tools] perf probe: Support $params special probe argument (Jiri Olsa) [1305882]
-- [tools] perf probe: Skip kernel symbols which is out of .text (Jiri Olsa) [1305882]
-- [tools] perf probe: Make --line checks validate C-style function name (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix to return 0 when positive value returned (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix a typo for the flags of open (Jiri Olsa) [1305882]
-- [tools] perf probe: Fix to close probe_events file in error (Jiri Olsa) [1305882]
-- [tools] perf tools: Move TUI-specific fields out of map_symbol (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Simplify zooming code using pstack_peek() (Jiri Olsa) [1305882]
-- [tools] perf tools: Introduce pstack_peek() (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Split popup menu actions - part 2 (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Split popup menu actions (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Save perf_session_env in the hist_browser (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Save pstack in the hist_browser (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Save hist_browser_timer pointer in hist_browser (Jiri Olsa) [1305882]
-- [tools] perf hists browser: Fix possible memory leak (Jiri Olsa) [1305882]
-- [tools] perf tools: Move init_have_children field to the unnamed union (Jiri Olsa) [1305882]
-- [tools] perf tools: Move TUI-specific fields into unnamed union (Jiri Olsa) [1305882]
-- [tools] perf kmem: Show warning when trying to run stat without record (Jiri Olsa) [1305882]
-- [tools] perf probe: Cleanup and consolidate command parsers (Jiri Olsa) [1305882]
-- [tools] perf probe: Remove redundant cleanup of params.filter (Jiri Olsa) [1305882]
-- [tools] perf probe: Accept filter argument for --funcs (Jiri Olsa) [1305882]
-- [tools] perf probe: Allow to use filter on --del command (Jiri Olsa) [1305882]
-- [tools] perf record: Add AUX area tracing Snapshot Mode support (Jiri Olsa) [1305882]
-- [tools] perf tools: Add AUX area tracing Snapshot Mode (Jiri Olsa) [1305882]
-- [tools] perf tools: Add support for PERF_RECORD_ITRACE_START (Jiri Olsa) [1305882]
-- [tools] perf tools: Add support for PERF_RECORD_AUX (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add option to synthesize events for transactions (Jiri Olsa) [1305882]
-- [tools] perf tools: Add build option NO_AUXTRACE to exclude AUX area tracing (Jiri Olsa) [1305882]
-- [tools] perf tools: Hit all build ids when AUX area tracing (Jiri Olsa) [1305882]
-- [tools] perf tools: Add AUX area tracing index (Jiri Olsa) [1305882]
-- [tools] perf report: Fix placement of itrace option in documentation (Jiri Olsa) [1305882]
-- [tools] perf kmem: Add kmem.default config option (Jiri Olsa) [1305882]
-- [tools] perf kmem: Print gfp flags in human readable string (Jiri Olsa) [1305882]
-- [tools] perf kmem: Add --live option for current allocation stat (Jiri Olsa) [1305882]
-- [tools] perf kmem: Support sort keys on page analysis (Jiri Olsa) [1305882]
-- [tools] perf kmem: Implement stat --page --caller (Jiri Olsa) [1305882]
-- [tools] perf probe: Accept filter argument for --list (Jiri Olsa) [1305882]
-- [tools] perf probe: Accept multiple filter options (Jiri Olsa) [1305882]
-- [tools] perf tools: Add strfilter__string to recover rules string (Jiri Olsa) [1305882]
-- [tools] perf tools: Improve strfilter to append additional rules (Jiri Olsa) [1305882]
-- [tools] perf tools: Fix bison-related build failure on CentOS 6 (Jiri Olsa) [1305882]
-- [tools] perf report: Add Instruction Tracing support (Jiri Olsa) [1305882]
-- [tools] perf script: Always allow fields 'addr' and 'cpu' for auxtrace (Jiri Olsa) [1305882]
-- [tools] perf evlist: Amend mmap ref counting for the AUX area mmap (Jiri Olsa) [1305882]
-- [tools] perf symbols: Warn on build id mismatch (Jiri Olsa) [1305882]
-- [tools] perf: Document --children option in more detail (Jiri Olsa) [1305882]
-- [tools] perf stat: Add metrics support for exclude_idle (Jiri Olsa) [1305882]
-- [tools] perf stat: Add metrics support for exclude_(host|guest) (Jiri Olsa) [1305882]
-- [tools] perf stat: Add metrics support for exclude_hv (Jiri Olsa) [1305882]
-- [tools] perf stat: Change metrics context calculation (Jiri Olsa) [1305882]
-- [tools] perf stat: Fix metrics calculation with event qualifiers (Jiri Olsa) [1305882]
-- [tools] perf trace: Clarify that -e is about syscalls, not perf events in general (Jiri Olsa) [1305882]
-- [tools] perf trace: Fix --filter-pids OPTION description (Jiri Olsa) [1305882]
-- [tools] perf probe: Remove all probes matches given pattern at once (Jiri Olsa) [1305882]
-- [tools] perf probe: Make --funcs option exclusive (Jiri Olsa) [1305882]
-- [tools] perf tools: Add symbolic events support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add tracepoint support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add static terms support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add term support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add location to pmu event terms (Jiri Olsa) [1305882]
-- [tools] perf tools: Change parse_events_add_pmu interface (Jiri Olsa) [1305882]
-- [tools] perf tools: Always bail out when config_attr function fails (Jiri Olsa) [1305882]
-- [tools] perf tools: Add flex support for parse_events_error (Jiri Olsa) [1305882]
-- [tools] perf tools: Add parse_events_error interface (Jiri Olsa) [1305882]
-- [tools] perf tools: Add aux_watermark member of struct perf_event_attr (Jiri Olsa) [1305882]
-- [tools] perf script: Add field option 'flags' to print sample flags (Jiri Olsa) [1305882]
-- [tools] perf inject: Add Instruction Tracing support (Jiri Olsa) [1305882]
-- [tools] perf inject: Re-pipe AUX area tracing events (Jiri Olsa) [1305882]
-- [tools] perf script: Add Instruction Tracing support (Jiri Olsa) [1305882]
-- [tools] perf tools: Add member to struct dso for an instruction cache (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add a hashtable for caching (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add processing for AUX area tracing events (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add a heap for sorting AUX area tracing queues (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add helpers for queuing AUX area tracing data (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add helpers for AUX area tracing errors (Jiri Olsa) [1305882]
-- [tools] perf session: Add instruction tracing options (Jiri Olsa) [1305882]
-- [tools] perf session: Add hooks to allow transparent decoding of AUX area tracing data (Jiri Olsa) [1305882]
-- [tools] perf tools: Add a user event for AUX area tracing errors (Jiri Olsa) [1305882]
-- [tools] perf record: Extend -m option for AUX area tracing mmap pages (Jiri Olsa) [1305882]
-- [tools] perf record: Add basic AUX area tracing support (Jiri Olsa) [1305882]
-- [tools] perf auxtrace: Add support for AUX area recording (Jiri Olsa) [1305882]
-- [tools] perf tools: Add user events for AUX area tracing (Jiri Olsa) [1305882]
-- [tools] perf evlist: Add support for mmapping an AUX area buffer (Jiri Olsa) [1305882]
-- [tools] perf header: Add AUX area tracing feature (Jiri Olsa) [1305882]
-- [tools] perf data: Fix signedness of value (Jiri Olsa) [1305882]
-- [tools] perf data: Fix duplicate field names and avoid reserved keywords (Jiri Olsa) [1305882]
-- [tools] perf data: Add support for setting ordered_events queue size (Jiri Olsa) [1305882]
-- [tools] perf data: Enable stream flush within processing (Jiri Olsa) [1305882]
-- [tools] perf data: Switch to multiple cpu stream files (Jiri Olsa) [1305882]
-- [tools] perf tests: Add build tests for building perf from kernel source root and tools (Jiri Olsa) [1305882]
-- [tools] lib traceevent: Add alias field to struct format_field (Jiri Olsa) [1305882]
-- [tools] perf data: Show error message when conversion failed (Jiri Olsa) [1305882]
-- [tools] perf diff: Make hist_entry_diff fields union (Jiri Olsa) [1305882]
-- [tools] perf hists: Get rid of position field from struct hist_entry (Jiri Olsa) [1305882]
-- [tools] perf tools: Use getconf to determine number of online CPUs (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Fix memory leak on hot-plug allocation fail (Jiri Olsa) [1305882]
-- [kernel] perf: Fix PERF_EVENT_IOC_PERIOD migration race (Jiri Olsa) [1305882]
-- [kernel] perf: Fix double-free of the AUX buffer (Jiri Olsa) [1305882]
-- [kernel] perf: Fix fasync handling on inherited events (Jiri Olsa) [1305882]
-- [kernel] perf: Fix running time accounting (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel/cqm: Return cached counter value from IRQ context (Jiri Olsa) [1305882]
-- [kernel] perf: Fix AUX buffer refcounting (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel/pebs: Add PEBSv3 decoding (Jiri Olsa) [1305882]
-- [kernel] perf/x86/intel: Introduce PERF_RECORD_LOST_SAMPLES (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Drain the PEBS buffer during context switches (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Implement batched PEBS interrupt handling (large PEBS interrupt threshold) (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Handle multiple records in the PEBS buffer (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Introduce setup_pebs_sample_data() (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Use the PEBS auto reload mechanism when possible (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: add support for PERF_SAMPLE_BRANCH_IND_JUMP (Jiri Olsa) [1305882]
-- [include] perf: add new PERF_SAMPLE_BRANCH_IND_JUMP branch sample type (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Simplify put_exclusive_constraints() (Jiri Olsa) [1305882]
-- [x86] perf/x86: Simplify the x86_schedule_events() logic (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Remove intel_excl_states::init_state (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Remove pointless tests (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Clean up intel_commit_scheduling() placement (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Make WARN()ings consistent (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Simplify the dynamic constraint code somewhat (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Add lockdep assert (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel: Correct local vs remote sibling state (Jiri Olsa) [1305882]
-- [x86] revert "perf/x86/intel/uncore: Move uncore_box_init() out of driver initialization" (Jiri Olsa) [1305882]
-- [x86] perf/x86/intel/uncore: Fix CBOX bit wide and UBOX reg on Haswell-EP (Jiri Olsa) [1305882]
-- [x86] perf/x86/rapl: Enable Broadwell-U RAPL support (Jiri Olsa) [1305882]
-- [kernel] perf: Annotate inherited event ctx->mutex recursion (Jiri Olsa) [1305882]
-
-* Mon Mar 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-359.el7]
-- [scsi] storvsc: use storage protocol version to determine storage capabilities (Cathy Avery) [1287037]
-- [scsi] storvsc: use correct defaults for values determined by protocol negotiation (Cathy Avery) [1287037]
-- [scsi] storvsc: Untangle the storage protocol negotiation from the vmbus protocol negotiation (Cathy Avery) [1287037]
-- [scsi] storvsc: Use a single value to track protocol versions (Cathy Avery) [1287037]
-- [scsi] storvsc: Rather than look for sets of specific protocol versions, make decisions based on ranges (Cathy Avery) [1287037]
-- [hv] balloon: Enable dynamic memory protocol negotiation with Windows 10 hosts (Cathy Avery) [1287037]
-- [hv] vmbus: Update preferred vmbus protocol version to windows 10 (Cathy Avery) [1287037]
-- [hv] vmbus: Use get_cpu() to get the current CPU (Cathy Avery) [1287037]
-- [net] fix behaviour of unreachable, blackhole and prohibit routes (Xin Long) [1270662]
-- [net] route: check and remove route cache when we get route (Xin Long) [1296260]
-- [net] ipv4: use next hop exceptions also for input routes (Xin Long) [1296260]
-- [net] tcp, dccp: warn user for preferred ip_local_port_range (Florian Westphal) [1305525]
-- [net] tcp, dccp: try to not exhaust ip_local_port_range in connect() (Florian Westphal) [1305525]
-- [net] tcp: improve REUSEADDR/NOREUSEADDR cohabitation (Florian Westphal) [1305525]
-- [net] sctp: translate network order to host order when users get a hmacid (Xin Long) [1303823]
-- [net] fix __copy_skb_header() (Paolo Abeni) [1298447]
-- [net] don't wait for order-3 page allocation (Sabrina Dubroca) [1284940]
-- [net] fix skb_page_frag_refill() kerneldoc (Sabrina Dubroca) [1284940]
-- [net] attempt a single high order allocation (Sabrina Dubroca) [1284940]
-- [net] use __GFP_NORETRY for high order allocations (Sabrina Dubroca) [1284940]
-- [net] allow > 0 order atomic page alloc in skb_page_frag_refill (Sabrina Dubroca) [1284940]
-- [net] refactor sk_page_frag_refill() (Sabrina Dubroca) [1284940]
-- [net] add pfmemalloc check in sk_add_backlog() (Sabrina Dubroca) [1285944]
-- [net] af_unix: passcred support for sendpage (Hannes Frederic Sowa) [1282574]
-- [net] af_unix: take receive queue lock while appending new skb (Hannes Frederic Sowa) [1282574]
-- [net] af_unix: don't append consumed skbs to sk_receive_queue (Hannes Frederic Sowa) [1282574]
-- [net] af_unix: fix use-after-free with concurrent readers while splicing (Hannes Frederic Sowa) [1282574]
-- [net] bridge: Fix network header pointer for vlan tagged packets (Vlad Yasevich) [1282536]
-- [net] Allow modules to use is_skb_forwardable (Vlad Yasevich) [1282536]
-- [net] netfilter: bridge: Use __in6_dev_get rather than in6_dev_get in br_validate_ipv6 (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: fix NULL deref in physin/out ifindex helpers (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: avoid unused label warning (Paolo Abeni) [1265259]
-- [net] bridge: Cache net in br_nf_pre_routing_finish (Paolo Abeni) [1265259]
-- [net] bridge: Pass net into br_nf_push_frag_xmit (Paolo Abeni) [1265259]
-- [net] bridge: Pass net into br_nf_ip_fragment (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: fix routing of bridge frames with call-iptables=1 (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: do not initialize statics to 0 or NULL (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: reduce nf_bridge_info to 32 bytes again (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: don't leak skb in error paths (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: fix CONFIG_NF_DEFRAG_IPV4/6 related warnings/errors (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: split ipv6 code into separated file (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: rename br_netfilter.c to br_netfilter_hooks.c (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: restore vlan tag when refragmenting (Paolo Abeni) [1265259]
-- [net] ip_fragment: remove BRIDGE_NETFILTER mtu special handling (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: forward IPv6 fragmented packets (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: re-order check_hbh_len() (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: rename br_parse_ip_options (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: refactor frag_max_size (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: detect NAT66 correctly and change MAC address (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: re-order br_nf_pre_routing_finish_ipv6() (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: refactor clearing BRNF_NF_BRIDGE_PREROUTING (Paolo Abeni) [1265259]
-- [net] netfilter: ebtables: fix comment grammar (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: free nf_bridge info on xmit (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: neigh_head and physoutdev can't be used at same time (Paolo Abeni) [1265259]
-- [net] revert "netfilter: bridge: query conntrack about skb dnat" (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: make BRNF_PKT_TYPE flag a bool (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: start splitting mask into public/private chunks (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: add and use nf_bridge_info_get helper (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: add helpers for fetching physin/outdev (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: don't use nf_bridge_info data to store mac header (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: really save frag_max_size between PRE and POST_ROUTING (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: kill nf_bridge_pad (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: remove BRNF_STATE_BRIDGED flag (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: query conntrack about skb dnat (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: use rcu hook to resolve br_netfilter dependency (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: move DNAT helper to br_netfilter (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: refactor conditional in br_nf_dev_queue_xmit (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: move nf_bridge_update_protocol to where its used (Paolo Abeni) [1265259]
-- [net] bridge: move mac header copying into br_netfilter (Paolo Abeni) [1265259]
-- [net] bridge: netfilter: Move sysctl-specific error code inside #ifdef (Paolo Abeni) [1265259]
-- [net] netfilter: nf_tables_bridge: set the pktinfo for IPv4/IPv6 traffic (Paolo Abeni) [1265259]
-- [net] netfilter: nf_tables_bridge: export nft_reject_ip*hdr_validate functions (Paolo Abeni) [1265259]
-- [net] netfilter: fix various sparse warnings (Paolo Abeni) [1265259]
-- [net] netfilter: nf_tables_bridge: update hook_mask to allow {pre, post}routing (Paolo Abeni) [1265259]
-- [net] bridge: Do not compile options in br_parse_ip_options (Paolo Abeni) [1265259]
-- [net] bridge: Save frag_max_size between PRE_ROUTING and POST_ROUTING (Paolo Abeni) [1265259]
-- [net] netfilter: explicit module dependency between br_netfilter and physdev (Paolo Abeni) [1265259]
-- [net] netfilter: use IS_ENABLED(CONFIG_BRIDGE_NETFILTER) (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: build br_nf_core only if required (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: move br_netfilter out of the core (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: nf_bridge_copy_header as static inline in header (Paolo Abeni) [1265259]
-- [net] netfilter: ebtables: create audit records for replaces (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: add generic packet logger (Paolo Abeni) [1265259]
-- [net] netfilter: bridge: fix Kconfig unmet dependencies (Paolo Abeni) [1265259]
-- [net] bridge: superfluous skb->nfct check in br_nf_dev_queue_xmit (Paolo Abeni) [1265259]
-- [net] bridge: netfilter: Use ether_addr_copy (Paolo Abeni) [1265259]
-- [net] bridge: change the position of '{' to the pre line (Paolo Abeni) [1265259]
-- [net] netfilter: ebt_ip6: fix source and destination matching (Paolo Abeni) [1265259]
-- [net] bridge: netfilter: orphan skb before invoking ip netfilter hooks (Paolo Abeni) [1265259]
-- [net] bridge: netfilter: using strlcpy() instead of strncpy() (Paolo Abeni) [1265259]
-- [s390] kernel: inadvertent free of the vector register save area (Hendrik Brueckner) [1310706]
-- [misc] mei: remove artificial singleton requirement (Prarit Bhargava) [1313268]
-- [cpufreq] intel_pstate: decrease number of "HWP enabled" messages (David Arcari) [1310927]
-- [cpufreq] intel_pstate: enable HWP per CPU (David Arcari) [1310927]
-
-* Fri Mar 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-358.el7]
-- [scsi] Revert libiscsi: Reduce locking contention in fast path (Chris Leech) [1297876]
-- [scsi] add support for multiple hardware queues (Ewan Milne) [1308703]
-- [scsi] mpt3sas: Fix for Asynchronous completion of timedout IO and task abort of timedout IO (Tomas Henzl) [1259907]
-- [scsi] scsi_error: should not get sense for timeout IO in scsi error handler (Tomas Henzl) [1259907]
-- [scsi] bnx2fc: Remove explicit logouts (Maurizio Lombardi) [1303027]
-- [fs] ovl: check dentry positiveness in ovl_cleanup_whiteouts() (Vivek Goyal) [1306358]
-- [fs] ovl: setattr: check permissions before copy-up (Vivek Goyal) [1306358]
-- [fs] ovl: root: copy attr (Vivek Goyal) [1306358]
-- [fs] ovl: get rid of the dead code left from broken (and disabled) optimizations (Vivek Goyal) [1306358]
-- [fs] ovl: fix permission checking for setattr (Vivek Goyal) [1306358]
-- [fs] ovl: move super block magic number to magic.h (Vivek Goyal) [1306358]
-- [fs] ovl: use a minimal buffer in ovl_copy_xattr (Vivek Goyal) [1306358]
-- [fs] ovl: allow zero size xattr (Vivek Goyal) [1306358]
-- [fs] ovl: default permissions (Vivek Goyal) [1306358]
-- [fs] ovl: free lower_mnt array in ovl_put_super (Vivek Goyal) [1306358]
-- [fs] ovl: free stack of paths in ovl_fill_super (Vivek Goyal) [1306358]
-- [fs] ovl: fix open in stacked overlay (Vivek Goyal) [1306358]
-- [fs] ovl: use O_LARGEFILE in ovl_copy_up() (Vivek Goyal) [1262256 1306358]
-- [fs] create and use seq_show_option for escaping (Vivek Goyal) [1306358]
-- [fs] fix a braino in ovl_d_select_inode() (Vivek Goyal) [1306358]
-- [fs] overlayfs: Make f_path always point to the overlay and f_inode to the underlay (Vivek Goyal) [1306358]
-- [fs] overlay: Call ovl_drop_write() earlier in ovl_dentry_open() (Vivek Goyal) [1306358]
-- [fs] Replace a bunch of file->dentry->d_inode refs with file_inode() (Vivek Goyal) [1306358]
-- [fs] procfs: fix error handling of proc_register() (Carlos Maiolino) [1210350]
-- [fs] proc: use rb_entry_safe() instead of rb_entry() (Carlos Maiolino) [1210350]
-- [fs] proc: use a rb tree for the directory entries (Carlos Maiolino) [1210350]
-- [fs] xfs: Split default quota limits by quota type (Eric Sandeen) [1297477]
-- [fs] quota: Fixup comments about return value of Q_[X]GETNEXTQUOTA (Eric Sandeen) [1305967]
-- [fs] xfs: wire up Q_XGETNEXTQUOTA / get_nextdqblk (Eric Sandeen) [1305967]
-- [fs] xfs: Factor xfs_seek_hole_data into helper (Eric Sandeen) [1305967]
-- [fs] xfs: get quota inode from mp & flags rather than dqp (Eric Sandeen) [1305967]
-- [fs] xfs: don't overflow quota ID when initializing dqblk (Eric Sandeen) [1305967]
-- [fs] quota: add new quotactl Q_GETNEXTQUOTA (Eric Sandeen) [1305967]
-- [fs] quota: add new quotactl Q_XGETNEXTQUOTA (Eric Sandeen) [1305967]
-- [fs] quota: remove unused cmd argument from quota_quotaon() (Eric Sandeen) [1305967]
-- [fs] gfs2: Reduce size of incore inode (Robert S Peterson) [1240663]
-- [fs] gfs2: Make rgrp reservations part of the gfs2_inode structure (Robert S Peterson) [1240663]
-- [fs] gfs2: Extract quota data from reservations structure (revert 5407e24) (Robert S Peterson) [1240663]
-- [fs] gfs2: Clean up reservation removal (Robert S Peterson) [1240663]
-- [fs] ceph: make fsync() wait unsafe requests that created/modified inode (Zheng Yan) [1291193]
-- [fs] ceph: add request to i_unsafe_dirops when getting unsafe reply (Zheng Yan) [1291193]
-- [fs] ceph: don't invalidate page cache when inode is no longer used (Zheng Yan) [1291193]
-- [fs] ceph: fix message length computation (Zheng Yan) [1291193]
-- [fs] ceph: improve readahead for file holes (Zheng Yan) [1291193]
-- [fs] ceph: get inode size for each append write (Zheng Yan) [1291193]
-- [fs] ceph: cleanup use of ceph_msg_get (Zheng Yan) [1291193]
-- [fs] ceph: no need to get parent inode in ceph_open (Zheng Yan) [1291193]
-- [fs] ceph: remove the useless judgement (Zheng Yan) [1291193]
-- [fs] ceph: remove redundant test of head->safe and silence static analysis warnings (Zheng Yan) [1291193]
-- [fs] ceph: fix queuing inode to mdsdir's snaprealm (Zheng Yan) [1291193]
-- [fs] ceph: invalidate dirty pages after forced umount (Zheng Yan) [1291193]
-- [fs] ceph: EIO all operations after forced umount (Zheng Yan) [1291193]
-- [fs] ceph: always re-send cap flushes when MDS recovers (Zheng Yan) [1291193]
-- [fs] ceph: fix ceph_writepages_start() (Zheng Yan) [1291193]
-- [fs] ceph: switch some GFP_NOFS memory allocation to GFP_KERNEL (Zheng Yan) [1291193]
-- [fs] ceph: pre-allocate data structure that tracks caps flushing (Zheng Yan) [1291193]
-- [fs] ceph: re-send flushing caps (which are revoked) in reconnect stage (Zheng Yan) [1291193]
-- [fs] ceph: send TID of the oldest pending caps flush to MDS (Zheng Yan) [1291193]
-- [fs] ceph: track pending caps flushing globally (Zheng Yan) [1291193]
-- [fs] ceph: track pending caps flushing accurately (Zheng Yan) [1291193]
-- [fs] ceph: fix directory fsync (Zheng Yan) [1291193]
-- [fs] ceph: fix flushing caps (Zheng Yan) [1291193]
-- [fs] ceph: don't include used caps in cap_wanted (Zheng Yan) [1291193]
-- [fs] ceph: ratelimit warn messages for MDS closes session (Zheng Yan) [1291193]
-- [fs] ceph: simplify two mount_timeout sites (Zheng Yan) [1291193]
-- [fs] libceph: store timeouts in jiffies, verify user input (Zheng Yan) [1291193]
-- [fs] ceph: exclude setfilelock requests when calculating oldest tid (Zheng Yan) [1291193]
-- [fs] ceph: don't pre-allocate space for cap release messages (Zheng Yan) [1291193]
-- [fs] ceph: make sure syncfs flushes all cap snaps (Zheng Yan) [1291193]
-- [fs] ceph: don't trim auth cap when there are cap snaps (Zheng Yan) [1291193]
-- [fs] ceph: take snap_rwsem when accessing snap realm's cached_context (Zheng Yan) [1291193]
-- [fs] ceph: avoid sending unnessesary FLUSHSNAP message (Zheng Yan) [1291193]
-- [fs] ceph: set i_head_snapc when getting CEPH_CAP_FILE_WR reference (Zheng Yan) [1291193]
-- [fs] ceph: use empty snap context for uninline_data and get_pool_perm (Zheng Yan) [1291193]
-- [fs] ceph: check OSD caps before read/write (Zheng Yan) [1291193]
-- [fs] libceph: allow setting osd_req_op's flags (Zheng Yan) [1291193]
-
-* Thu Mar 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-357.el7]
-- [powerpc] mm: tracking vDSO remap (Adrian Reber) [1274399]
-- [mm] new arch_remap() hook (Adrian Reber) [1274399]
-- [mm] new mm hook framework (Adrian Reber) [1274399]
-- [powerpc] Enable sys_kcmp() for CRIU (Adrian Reber) [1274399]
-- [powerpc] pci: Remove unused force_32bit_msi quirk (Oded Gabbay) [1274362]
-- [powerpc] pseries: Honor the generic "no_64bit_msi" flag (Oded Gabbay) [1274362]
-- [powerpc] powernv: Honor the generic "no_64bit_msi" flag (Oded Gabbay) [1274362]
-- [powerpc] powernv: Reserve PE#0 on NPU (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Change NPU PE# assignment (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Fix update of NVLink DMA mask (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Add support for Nvlink NPUs (Gustavo Duarte) [1275657]
-- [powerpc] Add __raw_rm_writeq() function (Gustavo Duarte) [1275657]
-- [powerpc] pci: Add shutdown hook to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pasemi: Only the build the pasemi MSI code for PASEMI=y (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Move dma_set_mask() from pnv_phb to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pci: add dma_set_mask to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Specialise pci_controller_ops for each controller type (Gustavo Duarte) [1275657]
-- [powerpc] Remove MSI-related PCI controller ops from ppc_md (Gustavo Duarte) [1275657]
-- [powerpc] mpic_u3msi: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] ppc4xx_msi: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] fsl_msi: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pseries: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] cell: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Move MSI-related ops to pci_controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] Add MSI operations to pci_controller_ops struct (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Fix early pci_controller_ops loading (Gustavo Duarte) [1275657]
-- [powerpc] dart_iommu: Remove check for controller_ops == NULL case (Gustavo Duarte) [1275657]
-- [powerpc] Remove shims for pci_controller_ops operations (Gustavo Duarte) [1275657]
-- [powerpc] cell: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] fsl_pci, swiotlb: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] maple: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pasemi: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] pseries: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] powermac: Move controller ops from ppc_md to controller_ops (Gustavo Duarte) [1275657]
-- [powerpc] dart_iommu: optionally populate controller_ops on init (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.reset_secondary_bus and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.window_alignment and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.enable_device_hook and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.probe_mode and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.dma_bus_setup and shim (Gustavo Duarte) [1275657]
-- [powerpc] Create pci_controller_ops.dma_dev_setup and shim (Gustavo Duarte) [1275657]
-- [powerpc] pcibios_enable_device_hook: return bool rather than int (Gustavo Duarte) [1275657]
-- [powerpc] powermac: move pmac_pci_probe_mode from setup.c to pci.c (Gustavo Duarte) [1275657]
-- [powerpc] move find_and_init_phbs() to pSeries specific code (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Remove pnv_pci_probe_mode() (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Initialize M64 PE in time (Gustavo Duarte) [1275657]
-- [include] device: Add dev_<level>_once variants (Gustavo Duarte) [1275657]
-- [powerpc] powernv: Override dma_get_required_mask() (Gustavo Duarte) [1275657]
-- [powerpc] pci/msi/ppc: Remove arch_msi_check_device() (Gustavo Duarte) [1274362 1275657]
-- [powerpc] powernv: Update dev->dma_mask in pci_set_dma_mask() path (Gustavo Duarte) [1275657]
-- [powerpc] Add PVR for POWER8NVL processor (Gustavo Duarte) [1275657]
-
-* Tue Mar 01 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-356.el7]
-- [netdrv] Driver for IBM System i/p VNIC protocol (Gustavo Duarte) [947163]
-- [hwmon] Disable F71868 and F81866 (Eric Sandeen) [1310888]
-- [hwmon] Add support for f81768d (Eric Sandeen) [1310888]
-- [hwmon] Add support for F81866 and F71868 (Eric Sandeen) [1310888]
-- [watchdog] hpwdt: HP rebranding (Nigel Croxon) [1274435]
-- [misc] hpilo: Change e-mail address from hp.com to hpe.com (Nigel Croxon) [1274436]
-- [misc] hpilo: Add min and max value of module parameter in description (Nigel Croxon) [1274436]
-- [char] ipmi: Remove unnecessary pci_disable_device (Tony Camuso) [1274306]
-- [char] ipmi: Drop owner assignment from i2c_driver (Tony Camuso) [1274306]
-- [char] ipmi: constify some struct and char arrays (Tony Camuso) [1274306]
-- [char] ipmi: move timer init to before irq is setup (Tony Camuso) [1274306]
-- [char] ipmi: watchdog: add panic_wdt_timeout parameter (Tony Camuso) [1274306]
-- [char] ipmi: Move MODULE_DEVICE_TABLE() to follow struct (Tony Camuso) [1274306]
-- [char] ipmi: Stop the timer immediately if idle (Tony Camuso) [1274306]
-- [char] ipmi: Start the timer and thread on internal msgs (Tony Camuso) [1274306]
-- [char] ipmi: ipmi_ssif: Replace timeval with timespec64 (Tony Camuso) [1274306]
-- [char] ipmi: ssif: Add a module parm to specify that SMBus alerts don't work (Tony Camuso) [1274306]
-- [char] ipmi: add of_device_id in MODULE_DEVICE_TABLE (Tony Camuso) [1274306]
-- [char] ipmi: Compensate for BMCs that wont set the irq enable bit (Tony Camuso) [1274306]
-- [char] ipmi: Don't call receive handler in the panic context (Tony Camuso) [1274306]
-- [char] ipmi: Avoid touching possible corrupted lists in the panic context (Tony Camuso) [1274306]
-- [char] ipmi: Don't flush messages in sender() in run-to-completion mode (Tony Camuso) [1274306]
-- [char] ipmi: Factor out message flushing procedure (Tony Camuso) [1274306]
-- [char] ipmi: Remove unneeded set_run_to_completion call (Tony Camuso) [1274306]
-- [char] ipmi: Make some data const that was only read (Tony Camuso) [1274306]
-- [char] ipmi: constify SSIF ACPI device ids (Tony Camuso) [1274306]
-- [char] ipmi: Delete an unnecessary check before the function call "cleanup_one_si" (Tony Camuso) [1274306]
-- [char] ipmi: Change 1 to true for bool type variables during initialization (Tony Camuso) [1274306]
-- [char] impi: Remove unneeded setting of module owner to THIS_MODULE in the platform structure, powernv_ipmi_driver (Tony Camuso) [1274306]
-- [char] ipmi: Add a comment in how messages are delivered from the lower layer (Tony Camuso) [1274306]
-- [char] ipmi: Convert the IPMI SI ACPI handling to a platform device (Tony Camuso) [1274306]
-- [char] ipmi: put acpi.h with the other headers (Tony Camuso) [1274306]
-- [s390] vtime: correct scaled cputime of partially idle CPUs (Hendrik Brueckner) [1308883]
-- [s390] vtime: correct scaled cputime for SMT (Hendrik Brueckner) [1308883]
-- [s390] vtime: limit MT scaling value updates (Hendrik Brueckner) [1308883]
-- [s390] dasd: prevent incorrect length error under z/VM after PAV changes (Hendrik Brueckner) [1310825]
-- [s390] qeth: initialize net_device with carrier off (Hendrik Brueckner) [1310824]
-- [s390] dasd: fix failfast for disconnected devices (Hendrik Brueckner) [1309251]
-- [s390] cio: update measurement characteristics (Hendrik Brueckner) [1310822]
-- [s390] cio: ensure consistent measurement state (Hendrik Brueckner) [1310822]
-- [s390] cio: fix measurement characteristics memleak (Hendrik Brueckner) [1310822]
-- [s390] stacktrace: add save_stack_trace_regs() (Pratyush Anand) [1297488]
-- [s390] stacktrace: save full stack traces (Pratyush Anand) [1297488]
-- [s390] stacktrace: add missing end marker (Pratyush Anand) [1297488]
-- [s390] stacktrace: fix address ranges for asynchronous and panic stack (Pratyush Anand) [1297488]
-- [s390] stacktrace: fix save_stack_trace_tsk() for current task (Pratyush Anand) [1297488]
-- [x86] perf: Fix 'active_events' imbalance (Jiri Olsa) [1312571]
-- [tty] Add support for PCIe WCH382 2S multi-IO card (Jeremy McNicoll) [1309575]
-- [tty] Add support for the WCH384 4S multi-IO card (Jeremy McNicoll) [1309575]
-- [tty] parport: Add support for the WCH382 2S/1P multi-IO card (Jeremy McNicoll) [1309575]
-
-* Mon Feb 29 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-355.el7]
-- [ib] mlx5: Fix RC transport send queue overhead computation (Don Dutile) [1293336]
-- [hv] vmbus: restore hv_synic_clockevents_cleanup() call in hv_kexec_handler() (Vitaly Kuznetsov) [1202375]
-- [hv] vmbus: Teardown clockevent devices on module unload (Vitaly Kuznetsov) [1202375]
-- [hv] vmbus: Implement a clockevent device (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: export clockevents_unbind_device instead of clockevents_unbind (Vitaly Kuznetsov) [1202375]
-- [kernel] tick-common: Fix wrong check in tick_check_replacement() (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: Implement unbind functionality (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: Provide sysfs interface (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: Move the tick_notify() switch case to clockevents_notify() (Vitaly Kuznetsov) [1202375]
-- [kernel] clockevents: Simplify locking (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Let clocksource_unregister() return success/error (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Provide unbind interface in sysfs (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Split out user string input (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Allow clocksource select to skip current clocksource (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Add module refcount (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Let timekeeping_notify return success/error (Vitaly Kuznetsov) [1202375]
-- [kernel] clocksource: Always verify highres capability (Vitaly Kuznetsov) [1202375]
-- [netdrv] cdc_ncm: update specs URL (John Linville) [1260556]
-- [include] cdc_ncm: Add support for moving NDP to end of NCM frame (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: allow tuning min_tx_pkt (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: export NCM Transfer Block (NTB) parameters (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: drop ethtool coalesce support (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: use sysfs for rx/tx aggregation tuning (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: inform usbnet when rx buffers are reduced (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: always reallocate tx_curr_skb when tx_max increases (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: reduce skb truesize in rx path (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: fix typo in test for supported formats (John Linville) [1260556]
-- [include] net: cdc_ncm: fix 64bit division build error (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: do not start timer on an empty skb (John Linville) [1260556]
-- [include] net: cdc_ncm: remove redundant "disconnected" flag (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: fix argument alignment (John Linville) [1260556]
-- [include] net: cdc_ncm: use sane defaults for rx/tx buffers (John Linville) [1260556]
-- [include] net: cdc_ncm/cdc_mbim: adding NCM protocol statistics (John Linville) [1260556]
-- [include] net: cdc_ncm: set reasonable padding limits (John Linville) [1260556]
-- [include] net: cdc_ncm: use true max dgram count for header estimates (John Linville) [1260556]
-- [include] net: cdc_ncm: use ethtool to tune coalescing settings (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: support rx_max/tx_max updates when running (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: split .bind device initialization (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: factor out one-time device initialization (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: split out rx_max/tx_max update of setup (John Linville) [1260556]
-- [include] net: cdc_ncm/cdc_mbim: rework probing of NCM/MBIM functions (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: reject IP packets on DSS VLANs (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: optionally use VLAN ID 4094 for IP session 0 (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: handle unaccelerated VLAN tagged frames (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: __vlan_find_dev_deep need rcu_read_lock (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: fix buffer overflow (John Linville) [1260556]
-- [include] net: cdc_ncm: respect operator preferred MTU reported by MBIM (John Linville) [1260556]
-- [include] usb: cdc: add MBIM extended functional descriptor structure (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: cleanup a type issue in cdc_ncm_setup() (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: fixup error return value (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: no need to check for resume if suspend exists (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: manage_power should always set needs_remote_wakeup (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: no not set tx_max higher than the device supports (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: improve bind error debug messages (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: return proper error if setup fails (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: refactoring cdc_ncm_setup (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: endian convert constants instead of variables (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: log signatures in hex (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: use netif_* and dev_* instead of pr_* (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: log the length we warn about (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: set correct dev->hard_mtu (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: remove ethtool ops (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: remove probe and disconnect wrappers (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: no point in filling up the NTBs if we send ZLPs (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: only the control intf can be probed (John Linville) [1260556]
-- [netdrv] net: cdc_ncm: fix SET_MAX_DATAGRAM_SIZE (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: change the default to send ZLPs (John Linville) [1260556]
-- [netdrv] net: cdc_mbim: handle IPv6 Neigbor Solicitations (John Linville) [1260556]
-
-* Mon Feb 29 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-354.el7]
-- [fs] xfs: fix xfs_log_ticket leak in xfs_end_io() after fs shutdown (Brian Foster) [1298684]
-- [fs] xfs: clean up unwritten buffers on write failure (Brian Foster) [1298684]
-- [fs] xfs: fix endianness error when checking log block crc on big endian platforms (Brian Foster) [1298684]
-- [fs] xfs: log mount failures don't wait for buffers to be released (Brian Foster) [1298684]
-- [fs] revert "xfs: clear PF_NOFREEZE for xfsaild kthread" (Brian Foster) [1298684]
-- [fs] xfs: handle dquot buffer readahead in log recovery correctly (Brian Foster) [1234586 1298684]
-- [fs] xfs: inode recovery readahead can race with inode buffer creation (Brian Foster) [1234586 1298684]
-- [fs] xfs: eliminate committed arg from xfs_bmap_finish (Brian Foster) [1298684]
-- [fs] xfs: bmapbt checking on debug kernels too expensive (Brian Foster) [1298684]
-- [fs] xfs: add tracepoints to readpage calls (Brian Foster) [1298684]
-- [fs] xfs: debug mode log record crc error injection (Brian Foster) [1298684]
-- [fs] xfs: detect and trim torn writes during log recovery (Brian Foster) [1298684]
-- [fs] xfs: Use a signed return type for suffix_kstrtoint() (Brian Foster) [1298684]
-- [fs] libxfs: refactor short btree block verification (Brian Foster) [1298684]
-- [fs] libxfs: pack the agfl header structure so XFS_AGFL_SIZE is correct (Brian Foster) [1298684]
-- [fs] libxfs: use a convenience variable instead of open-coding the fork (Brian Foster) [1298684]
-- [fs] xfs: fix log ticket type printing (Brian Foster) [1298684]
-- [fs] libxfs: make xfs_alloc_fix_freelist non-static (Brian Foster) [1298684]
-- [fs] xfs: make xfs_buf_ioend_async() static (Brian Foster) [1298684]
-- [fs] xfs: send warning of project quota to userspace via netlink (Brian Foster) [1298684]
-- [fs] xfs: get mp from bma->ip in xfs_bmap code (Brian Foster) [1298684]
-- [fs] xfs: print name of verifier if it fails (Brian Foster) [1298684]
-- [fs] libxfs: Optimize the loop for xfs_bitmap_empty (Brian Foster) [1298684]
-- [fs] xfs: refactor log record start detection into a new helper (Brian Foster) [1298684]
-- [fs] xfs: support a crc verification only log record pass (Brian Foster) [1298684]
-- [fs] xfs: return start block of first bad log record during recovery (Brian Foster) [1298684]
-- [fs] xfs: refactor and open code log record crc check (Brian Foster) [1298684]
-- [fs] xfs: refactor log record unpack and data processing (Brian Foster) [1298684]
-- [fs] xfs: detect and handle invalid iclog size set by mkfs (Brian Foster) [1298684]
-- [fs] xfs: give all workqueues rescuer threads (Brian Foster) [1298684]
-- [fs] xfs: fix log recovery op header validation assert (Brian Foster) [1298684]
-- [fs] xfs: Fix error path in xfs_get_acl (Brian Foster) [1298684]
-- [fs] xfs: optimise away log forces on timestamp updates for fdatasync (Brian Foster) [1298684]
-- [fs] xfs: don't leak uuid table on rmmod (Brian Foster) [1298684]
-- [fs] xfs: invalidate cached acl if set via ioctl (Brian Foster) [1298684]
-- [fs] xfs: Plug memory leak in xfs_attrmulti_attr_set (Brian Foster) [1298684]
-- [fs] xfs: Validate the length of on-disk ACLs (Brian Foster) [1298684]
-- [fs] xfs: invalidate cached acl if set directly via xattr (Brian Foster) [1298684]
-- [fs] xfs: clear PF_NOFREEZE for xfsaild kthread (Brian Foster) [1298684]
-- [fs] xfs: simplify /proc teardown & error handling (Brian Foster) [1298684]
-- [fs] xfs: more info from kmem deadlocks and high-level error msgs (Brian Foster) [1298684]
-- [fs] xfs: avoid null *src in memcpy call in xlog_write (Brian Foster) [1298684]
-- [fs] xfs: pass total block res. as total xfs_bmapi_write() parameter (Brian Foster) [1298684]
-- [fs] xfs: avoid dependency on Linux XATTR_SIZE_MAX (Brian Foster) [1298684]
-- [fs] xfs: prefix XATTR_LIST_MAX with XFS_ (Brian Foster) [1298684]
-- [fs] libxfs: fix two comment typos (Brian Foster) [1298684]
-- [fs] xfs: validate metadata LSNs against log on v5 superblocks (Brian Foster) [1298684]
-- [fs] xfs: Print name and pid when memory allocation loops (Brian Foster) [1298684]
-- [fs] xfs: log local to remote symlink conversions correctly on v5 supers (Brian Foster) [1298684]
-- [fs] xfs: add missing ilock around dio write last extent alignment (Brian Foster) [1298684]
-- [fs] cancel the setfilesize transation when io error happen (Brian Foster) [1298684]
-- [fs] xfs: fix error gotos in xfs_setattr_nonsize (Brian Foster) [1298684]
-- [fs] libxfs: bad magic number should set da block buffer error (Brian Foster) [1298684]
-- [fs] xfs: fix non-debug build warnings (Brian Foster) [1298684]
-- [fs] xfs: collapse allocsize and biosize mount option handling (Brian Foster) [1298684]
-- [fs] xfs: Fix file type directory corruption for btree directories (Brian Foster) [1298684]
-- [fs] xfs: lockdep annotations throw warnings on non-debug builds (Brian Foster) [1298684]
-- [fs] xfs: Fix uninitialized return value in xfs_alloc_fix_freelist() (Brian Foster) [1298684]
-- [fs] xfs: inode lockdep annotations broke non-lockdep build (Brian Foster) [1298684]
-- [fs] xfs: Fix xfs_attr_leafblock definition (Brian Foster) [1298684]
-- [fs] libxfs: readahead of dir3 data blocks should use the read verifier (Brian Foster) [1298684]
-- [fs] xfs: stop holding ILOCK over filldir callbacks (Brian Foster) [1298684]
-- [fs] xfs: clean up inode lockdep annotations (Brian Foster) [1298684]
-- [fs] xfs: swap leaf buffer into path struct atomically during path shift (Brian Foster) [1298684]
-- [fs] xfs: relocate sparse inode mount warning (Brian Foster) [1298684]
-- [fs] xfs: dquots should be stamped with sb_meta_uuid (Brian Foster) [1298684]
-- [fs] xfs: log recovery needs to validate against sb_meta_uuid (Brian Foster) [1298684]
-- [fs] xfs: growfs not aware of sb_meta_uuid (Brian Foster) [1298684]
-- [fs] xfs: fix sb_meta_uuid usage (Brian Foster) [1298684]
-- [fs] xfs: set XFS_DA_OP_OKNOENT in xfs_attr_get (Brian Foster) [1298684]
-- [fs] xfs: add missing bmap cancel calls in error paths (Brian Foster) [1297875 1298684]
-- [fs] xfs: add helper to conditionally remove items from the AIL (Brian Foster) [1297875 1298684]
-- [fs] xfs: fix btree cursor error cleanups (Brian Foster) [1297875 1298684]
-- [fs] xfs: clean up root inode properly on mount failure (Brian Foster) [1297875 1298684]
-- [fs] xfs: fix broken icreate log item cancellation (Brian Foster) [1297875 1298684]
-- [fs] xfs: icreate log item recovery and cancellation tracepoints (Brian Foster) [1297875 1298684]
-- [fs] xfs: don't leave EFIs on AIL on mount failure (Brian Foster) [1297875 1298684]
-- [fs] xfs: use EFI refcount consistently in log recovery (Brian Foster) [1297875 1298684]
-- [fs] xfs: ensure EFD trans aborts on log recovery extent free failure (Brian Foster) [1297875 1298684]
-- [fs] xfs: fix efi/efd error handling to avoid fs shutdown hangs (Brian Foster) [1297875 1298684]
-- [fs] xfs: return committed status from xfs_trans_roll() (Brian Foster) [1297875 1298684]
-- [fs] xfs: disentagle EFI release from the extent count (Brian Foster) [1297875 1298684]
-- [fs] xfs: create new metadata UUID field and incompat flag (Brian Foster) [1298684]
-- [fs] libxfs: add xfs_bit.c (Brian Foster) [1298684]
-- [fs] xfs: Remove duplicate jumps to the same label (Brian Foster) [1298684]
-- [fs] xfs: Use consistent logging message prefixes (Brian Foster) [1298684]
-- [fs] xfs: xfs_bunmapi() does not need XFS_BMAPI_METADATA flag (Brian Foster) [1298684]
-- [fs] xfs: remote attributes need to be considered data (Brian Foster) [1298684]
-- [fs] xfs: remote attribute headers contain an invalid LSN (Brian Foster) [1298684]
-- [fs] xfs: Correctly lock inode when removing suid and file capabilities (Brian Foster) [1298684]
-- [fs] xfs: clean up XFS_MIN_FREELIST macros (Brian Foster) [1298684]
-- [fs] xfs: sanitise error handling in xfs_alloc_fix_freelist (Brian Foster) [1298684]
-- [fs] xfs: factor out free space extent length check (Brian Foster) [1298684]
-- [fs] xfs: xfs_alloc_fix_freelist() can use incore perag structures (Brian Foster) [1298684]
-- [fs] xfs: remove xfs_caddr_t (Brian Foster) [1298684]
-- [fs] xfs: use void pointers in log validation helpers (Brian Foster) [1298684]
-- [fs] xfs: return a void pointer from xfs_buf_offset (Brian Foster) [1298684]
-- [fs] xfs: remove inst_t (Brian Foster) [1298684]
-- [fs] xfs: remove __psint_t and __psunsigned_t (Brian Foster) [1298684]
-- [fs] xfs: fix remote symlinks on V5/CRC filesystems (Brian Foster) [1298684]
-- [fs] xfs: fix xfs_log_done interface (Brian Foster) [1298684]
-- [fs] xfs: saner xfs_trans_commit interface (Brian Foster) [1298684]
-- [fs] xfs: remove the flags argument to xfs_trans_cancel (Brian Foster) [1298684]
-- [fs] xfs: pass a boolean flag to xfs_trans_free_items (Brian Foster) [1298684]
-- [fs] xfs: switch remaining xfs_trans_dup users to xfs_trans_roll (Brian Foster) [1298684]
-- [fs] xfs: check min blks for random debug mode sparse allocations (Brian Foster) [1298684]
-- [fs] xfs: fix sparse inodes 32-bit compile failure (Brian Foster) [1298684]
-- [fs] xfs: mmap lock needs to be inside freeze protection (Brian Foster) [1298684]
-- [fs] xfs: Clean up xfs_trans_dup_dqinfo (Brian Foster) [1298684]
-- [fs] xfs: don't cast string literals (Brian Foster) [1298684]
-- [fs] xfs: enable sparse inode chunks for v5 superblocks (Brian Foster) [1298684]
-- [fs] xfs: skip unallocated regions of inode chunks in xfs_ifree_cluster() (Brian Foster) [1298684]
-- [fs] xfs: only free allocated regions of inode chunks (Brian Foster) [1298684]
-- [fs] xfs: filter out sparse regions from individual inode allocation (Brian Foster) [1298684]
-- [fs] xfs: randomly do sparse inode allocations in DEBUG mode (Brian Foster) [1298684]
-- [fs] xfs: allocate sparse inode chunks on full chunk allocation failure (Brian Foster) [1298684]
-- [fs] xfs: helper to convert holemask to inode alloc. bitmap (Brian Foster) [1298684]
-- [fs] xfs: handle sparse inode chunks in icreate log recovery (Brian Foster) [1298684]
-- [fs] xfs: pass inode count through ordered icreate log item (Brian Foster) [1298684]
-- [fs] xfs: use actual inode count for sparse records in bulkstat/inumbers (Brian Foster) [1298684]
-- [fs] xfs: introduce inode record hole mask for sparse inode chunks (Brian Foster) [1298684]
-- [fs] xfs: add fs geometry bit for sparse inode chunks (Brian Foster) [1298684]
-- [fs] xfs: sparse inode chunks feature helpers and mount requirements (Brian Foster) [1298684]
-- [fs] xfs: use sparse chunk alignment for min. inode allocation requirement (Brian Foster) [1298684]
-- [fs] xfs: add sparse inode chunk alignment superblock field (Brian Foster) [1298684]
-- [fs] xfs: support min/max agbno args in block allocator (Brian Foster) [1298684]
-- [fs] xfs: update free inode record logic to support sparse inode records (Brian Foster) [1298684]
-- [fs] xfs: create individual inode alloc. helper (Brian Foster) [1298684]
-- [fs] xfs: DIO writes within EOF don't need an ioend (Brian Foster) [1305118]
-- [fs] xfs: handle DIO overwrite EOF update completion correctly (Brian Foster) [1305118]
-- [fs] xfs: DIO needs an ioend for writes (Brian Foster) [1305118]
-- [fs] xfs: move DIO mapping size calculation (Brian Foster) [1305118]
-- [fs] xfs: factor DIO write mapping from get_blocks (Brian Foster) [1305118]
-- [fs] xfs: don't allocate an ioend for direct I/O completions (Brian Foster) [1305118]
-- [fs] direct-io: only inc/dec inode->i_dio_count for file systems (Brian Foster) [1305118]
-- [fs] direct-io: Handle O_(D)SYNC AIO (Brian Foster) [1305118]
-- [fs] direct-io: Implement generic deferred AIO completions (Brian Foster) [1305118]
-- [fs] revert 'direct-io: only inc_dec inode->i_dio_count for file systems' (Brian Foster) [1305118]
-
-* Fri Feb 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-353.el7]
-- [misc] mei: bus: set the device name before running fixup (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: use correct lock ordering (Jeremy McNicoll) [1273503]
-- [misc] mei: Fix debugfs filename in error output (Jeremy McNicoll) [1273503]
-- [misc] mei: amthif: Do not compare bool to 0/1 (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: fix c&p issue in the kdoc (Jeremy McNicoll) [1273503]
-- [misc] mei: fix the KDoc formating (Jeremy McNicoll) [1273503]
-- [misc] mei: keep the device awake during reads in chunks (Jeremy McNicoll) [1273503]
-- [misc] mei: cancel driver workers only after client devices were removed (Jeremy McNicoll) [1273503]
-- [misc] mei: me: fix d0i3 register offset in tracing (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: use mei_cl_bus_ prefix consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: use mei_cldev_ prefix for the API functions (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: export mei_cldev_enabled function (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: export uuid and protocol version to mei_cl bus drivers (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add client protocol version to the device alias (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: export client protocol version (Jeremy McNicoll) [1273503]
-- [scripts] mei: make modules.alias UUID information easier to read (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: fix error in state check logic (Jeremy McNicoll) [1273503]
-- [misc] mei: fix debugfs files leak on error path (Jeremy McNicoll) [1273503]
-- [watchdog] mei: Fix parent of watchdog_device (Jeremy McNicoll) [1273503]
-- [misc] mei: remove check on pm_runtime_active in __mei_cl_disconnect (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: bump supported HBM version to 2.0 (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add sunrise point device ids (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: exit d0i3 on driver start and enter it on stop (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: move mei_me_hw_reset down in the file (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: add d0i3 enter/exit state machine (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: reorganize the power gating responses (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: enable d0i3 interrupts (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: add flag to indicate D0i3 support (Jeremy McNicoll) [1273503]
-- [misc] mei: me: d0i3: add the control registers (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: add new error code MEI_CL_CONN_NOT_ALLOWED (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add and call callback on notify event (Jeremy McNicoll) [1273503]
-- [misc] mei: implement fasync for event notification (Jeremy McNicoll) [1273503]
-- [misc] mei: support polling for event notification (Jeremy McNicoll) [1273503]
-- [misc] mei: add async event notification ioctls (Jeremy McNicoll) [1273503]
-- [misc] mei: add a handler that waits for notification on event (Jeremy McNicoll) [1273503]
-- [misc] mei: add mei_cl_notify_request command (Jeremy McNicoll) [1273503]
-- [misc] mei: enable async event notifications only from hbm version 2.0 (Jeremy McNicoll) [1273503]
-- [misc] mei: implement async notification hbm messages (Jeremy McNicoll) [1273503]
-- [misc] mei: define async notification hbm commands (Jeremy McNicoll) [1273503]
-- [misc] mei: disconnect on connection request timeout (Jeremy McNicoll) [1273503]
-- [misc] mei: support for dynamic clients (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: link client devices instead of host clients (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: simplify how we build nfc bus name (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: blacklist clients by number of connections (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: blacklist the nfc info client (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: enable running fixup routines before device registration (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add me client device list infrastructure (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add reference to bus device in struct mei_cl_client (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: revamp probe and remove functions (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: revamp device matching (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: report if event registration failed (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: don't enable events implicitly in device enable (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: rename uevent handler to mei_cl_device_uevent (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: move driver api functions at the start of the file (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: rename nfc.c to bus-fixup.c (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: fix drivers and devices names confusion (Jeremy McNicoll) [1273503]
-- [misc] mei: do not access freed cb in blocking write (Jeremy McNicoll) [1273503]
-- [misc] mei: prevent unloading mei hw modules while the device is opened (Jeremy McNicoll) [1273503]
-- [misc] mei: nfc: fix deadlock on shutdown/suspend path (Jeremy McNicoll) [1273503]
-- [misc] mei: me: wait for power gating exit confirmation (Jeremy McNicoll) [1273503]
-- [misc] mei: reset flow control on the last client disconnection (Jeremy McNicoll) [1273503]
-- [misc] mei: fix up uuid matching (Jeremy McNicoll) [1273503]
-- [misc] mei: export hbm features to debugfs under devstate (Jeremy McNicoll) [1273503]
-- [include] mei: export mei client device struct to external use (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: kill mei_cl_ops (Jeremy McNicoll) [1273503]
-- [nfc] mei_phy: move all nfc logic from mei driver to nfc (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: add name and uuid into device attributes (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: report also uuid in module alias (Jeremy McNicoll) [1273503]
-- [misc] mei: add also write waiting list to runtime pm blockers (Jeremy McNicoll) [1273503]
-- [misc] mei: request autosuspend at the end of write (Jeremy McNicoll) [1273503]
-- [misc] mei: consume flow control on the first chunk of writing (Jeremy McNicoll) [1273503]
-- [misc] mei: debug prints with client info in read (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: fix incorrect indentation (Jeremy McNicoll) [1273503]
-- [misc] mei: drop iamthif_mtu from device structure (Jeremy McNicoll) [1273503]
-- [misc] mei: connection to fixed address clients from user-space (Jeremy McNicoll) [1273503]
-- [misc] mei: support for fixed address clients (Jeremy McNicoll) [1273503]
-- [misc] mei: fix flow control for single buffer clients (Jeremy McNicoll) [1273503]
-- [misc] mei: add a reference from the host client to the me client (Jeremy McNicoll) [1273503]
-- [misc] mei: revamp client connection (Jeremy McNicoll) [1273503]
-- [misc] mei: revamp client disconnection flow (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: reduce suspend/resume time (Jeremy McNicoll) [1273503]
-- [misc] mei: trace: remove unused TRACE_SYSTEM_STRING (Jeremy McNicoll) [1273503]
-- [misc] mei: replace check for connection instead of transitioning (Jeremy McNicoll) [1273503]
-- [misc] mei: use mei_cl_is_connected consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: fix mei_poll operation (Jeremy McNicoll) [1273503]
-- [misc] mei: fix regression on NFC connection (Jeremy McNicoll) [1273503]
-- [misc] mei: trace: fix missing include to linux/device.h (Jeremy McNicoll) [1273503]
-- [misc] mei: free me client references on host init (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: call device disable handler prior to disconnection (Jeremy McNicoll) [1273503]
-- [misc] mei: allow read concurrency (Jeremy McNicoll) [1273503]
-- [misc] mei: simplify io callback disposal (Jeremy McNicoll) [1273503]
-- [misc] mei: add mei_cl_alloc_linked function (Jeremy McNicoll) [1273503]
-- [misc] mei: always initialize the callback with the intended operation type (Jeremy McNicoll) [1273503]
-- [misc] mei: use only one buffer in callback (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: use regular client read functions (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: use client write functions (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: send flow control as a regular client (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: remove useless iamthif_ioctl variable (Jeremy McNicoll) [1273503]
-- [misc] mei: iamthif: fix device reset on mei_amthif_irq_read_msg (Jeremy McNicoll) [1273503]
-- [misc] mei: fix device reset on mei_cl_irq_read_msg allocation failure (Jeremy McNicoll) [1273503]
-- [misc] mei: fix function names and format in KDoc (Jeremy McNicoll) [1273503]
-- [misc] mei: me: change power gating function name conventions (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add io register tracing (Jeremy McNicoll) [1273503]
-- [misc] mei: me: use io register wrappers consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: revamp me clients list handling (Jeremy McNicoll) [1273503]
-- [misc] mei: me: release hw from reset only during the reset flow (Jeremy McNicoll) [1273503]
-- [misc] mei: mask interrupt set bit on clean reset bit (Jeremy McNicoll) [1273503]
-- [misc] mei: add reference counting for me clients (Jeremy McNicoll) [1273503]
-- [misc] mei: use uuid, me_addr tuple addressing also for flow control credits (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: use ssize_t as the return type for send and receive (Jeremy McNicoll) [1273503]
-- [misc] mei: clean reset bit before reset (Jeremy McNicoll) [1273503]
-- [misc] mei: export fw status registers through sysfs (Jeremy McNicoll) [1273503]
-- [misc] mei: read and print all six FW status registers (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: add cherrytrail device id (Jeremy McNicoll) [1273503]
-- [misc] mei: kill cached host and me csr values (Jeremy McNicoll) [1273503]
-- [misc] mei: fix hbm MEI_HBM_STARTED ambiguity (Jeremy McNicoll) [1273503]
-- [misc] mei: nfc: clean nfc internal struct on host exit (Jeremy McNicoll) [1273503]
-- [misc] mei: hbm: use client specific print functions (Jeremy McNicoll) [1273503]
-- [misc] mei: debugfs: display also connectionless clients (Jeremy McNicoll) [1273503]
-- [misc] mei: use local cl variables in wd and amthif (Jeremy McNicoll) [1273503]
-- [misc] mei: drop unneeded client NULL check in cb structure (Jeremy McNicoll) [1273503]
-- [misc] mei: Replace CONFIG_PM_RUNTIME with CONFIG_PM (Jeremy McNicoll) [1273503]
-- [misc] mei: mei_txe_fw_sts can be static (Jeremy McNicoll) [1273503]
-- [misc] mei: fix kernel-doc warnings (Jeremy McNicoll) [1273503]
-- [misc] mei: fix KDoc documentation formatting (Jeremy McNicoll) [1273503]
-- [misc] mei: drop me_client_presentation_num (Jeremy McNicoll) [1273503]
-- [misc] mei: trivial: fix errors in prints in comments (Jeremy McNicoll) [1273503]
-- [misc] mei: remove include to pci header from mei module files (Jeremy McNicoll) [1273503]
-- [misc] mei: push pci cfg structure me hw (Jeremy McNicoll) [1273503]
-- [misc] mei: remove the reference to pdev from mei_device (Jeremy McNicoll) [1273503]
-- [misc] mei: move fw_status back to hw ops handlers (Jeremy McNicoll) [1273503]
-- [misc] mei: get rid of most of the pci dependencies in mei (Jeremy McNicoll) [1273503]
-- [misc] mei: push all standard settings into mei_device_init (Jeremy McNicoll) [1273503]
-- [misc] mei: move mei_hbm_hdr function from hbm.h the hbm.c (Jeremy McNicoll) [1273503]
-- [misc] mei: kill error message for allocation failure (Jeremy McNicoll) [1273503]
-- [misc] mei: nfc: fix style warning (Jeremy McNicoll) [1273503]
-- [misc] mei: fix style warning: Missing a blank line after declarations (Jeremy McNicoll) [1273503]
-- [misc] mei: pg: fix cat and paste error in comments (Jeremy McNicoll) [1273503]
-- [misc] mei: debugfs: add single buffer indicator (Jeremy McNicoll) [1273503]
-- [misc] mei: debugfs: adjust print buffer (Jeremy McNicoll) [1273503]
-- [misc] mei: add hbm and pg state in devstate debugfs print (Jeremy McNicoll) [1273503]
-- [misc] mei: bus: fix possible boundaries violation (Jeremy McNicoll) [1273503]
-- [misc] mei: use connect_data on the stack (Jeremy McNicoll) [1273503]
-- [misc] mei: enable adding more IOCTL handlers (Jeremy McNicoll) [1273503]
-- [misc] mei: extract supported features from the hbm version (Jeremy McNicoll) [1273503]
-- [misc] mei: simplify handling of hbm client events (Jeremy McNicoll) [1273503]
-- [misc] mei: wait for hbm start non-interruptible (Jeremy McNicoll) [1273503]
-- [misc] mei: revamp connect and disconnect response handling (Jeremy McNicoll) [1273503]
-- [misc] mei: use disconnect name consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: add hbm commands return status values (Jeremy McNicoll) [1273503]
-- [misc] mei: add mei_me_cl_by_uuid_id function (Jeremy McNicoll) [1273503]
-- [misc] mei: add me client remove functions (Jeremy McNicoll) [1273503]
-- [misc] mei: use list for me clients book keeping (Jeremy McNicoll) [1273503]
-- [misc] mei: me_client lookup function to return me_client object (Jeremy McNicoll) [1273503]
-- [misc] mei: use wrapper for simple hbm client message (Jeremy McNicoll) [1273503]
-- [misc] mei: use consistently me_addr in the hbm structures (Jeremy McNicoll) [1273503]
-- [misc] mei: amthif: don't check amthif client identity on amthif queues (Jeremy McNicoll) [1273503]
-- [misc] mei: amthif: use service function to flush amthif queue (Jeremy McNicoll) [1273503]
-- [misc] mei: me: wait for hw ready non-interruptible (Jeremy McNicoll) [1273503]
-- [misc] mei: fix comments (Jeremy McNicoll) [1273503]
-- [misc] mei: nfc: fix memory leak in error path (Jeremy McNicoll) [1273503]
-- [misc] mei: reset client state on queued connect request (Jeremy McNicoll) [1273503]
-- [misc] mei: drop unused hw dependent fw status functions (Jeremy McNicoll) [1273503]
-- [misc] mei: fix return value on disconnect timeout (Jeremy McNicoll) [1273503]
-- [misc] mei: don't schedule suspend in pm idle (Jeremy McNicoll) [1273503]
-- [misc] mei: start disconnect request timer consistently (Jeremy McNicoll) [1273503]
-- [misc] mei: reset client connection state on timeout (Jeremy McNicoll) [1273503]
-- [misc] mei: add WPT second mei interface (Jeremy McNicoll) [1273503]
-- [misc] mei: move from misc to char device (Jeremy McNicoll) [1273503]
-- [misc] mei: me: move probe quirk to cfg structure (Jeremy McNicoll) [1273503]
-- [misc] mei: add per device configuration (Jeremy McNicoll) [1273503]
-- [misc] mei: me: read H_CSR after asserting reset (Jeremy McNicoll) [1273503]
-- [misc] mei: me: drop harmful wait optimization (Jeremy McNicoll) [1273503]
-- [misc] mei: me: fix hw ready reset flow (Jeremy McNicoll) [1273503]
-- [misc] mei: fix memory leak of mei_clients array (Jeremy McNicoll) [1273503]
-- [misc] mei: set connecting state just upon connection request is sent to the fw (Jeremy McNicoll) [1273503]
-- [misc] mei: make return values consistent across the driver (Jeremy McNicoll) [1273503]
-- [misc] mei: extract fw status registers (Jeremy McNicoll) [1273503]
-- [misc] mei: me: bump hbm version to 1.1 to support power gating (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: use runtime PG pm domain for non wakeable devices (Jeremy McNicoll) [1273503]
-- [misc] mei: me: use runtime PG pm domain for non wakeable devices (Jeremy McNicoll) [1273503]
-- [misc] mei: use runtime pm in write and read flow (Jeremy McNicoll) [1273503]
-- [misc] mei: txe: add runtime pm framework (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add runtime pm framework (Jeremy McNicoll) [1273503]
-- [misc] mei: add function to check write queues (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add pg exit and entry flow commands (Jeremy McNicoll) [1273503]
-- [misc] mei: expose hardware power gating state to mei layer (Jeremy McNicoll) [1273503]
-- [misc] mei: condition PGI support on HW and HBM version (Jeremy McNicoll) [1273503]
-- [misc] mei: me: add power gating isolation register write wrappers (Jeremy McNicoll) [1273503]
-- [misc] mei: me: introduce power gating registers (Jeremy McNicoll) [1273503]
-- [misc] mei: implement power gating isolation hbm layer (Jeremy McNicoll) [1273503]
-- [misc] mei: me: fix hardware reset flow (Jeremy McNicoll) [1273503]
-- [misc] mei: fix read after read scenario (Jeremy McNicoll) [1273503]
-- [misc] mei: deprecate the mei_wd_state_independence_msg (Jeremy McNicoll) [1273503]
-
-* Fri Feb 26 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-352.el7]
-- [net] veth: don't modify ip_summed; doing so treats packets with bad checksums as good (Sabrina Dubroca) [1307099]
-- [net] nf_tables: use reverse traversal commit_list in nf_tables_abort (Xin Long) [1275964]
-- [net] nf_tables: fix addition/deletion of elements from commit/abort (Xin Long) [1275964]
-- [net] ipv6: addrlabel: fix ip6addrlbl_get() (Hannes Frederic Sowa) [1299324]
-- [net] packet: race condition in packet_bind (Hannes Frederic Sowa) [1298365]
-- [net] packet: missing dev_put() in packet_do_bind() (Hannes Frederic Sowa) [1298365]
-- [net] af_unix: Guard against other == sk in unix_dgram_sendmsg (Jakub Sitnicki) [1285792]
-- [net] unix: avoid use-after-free in ep_remove_wait_queue (Paolo Abeni) [1285792]
-- [net] unix: correctly track in-flight fds in sending process user_struct (Hannes Frederic Sowa) [1297403] {CVE-2013-4312}
-- [net] unix: properly account for FDs passed over unix sockets (Hannes Frederic Sowa) [1297403] {CVE-2013-4312}
-- [net] unix: garbage: fixed several comment and whitespace style issues (Hannes Frederic Sowa) [1297403] {CVE-2013-4312}
-- [net] sctp: Prevent soft lockup when sctp_accept() is called during a timeout event (Xin Long) [1270586] {CVE-2015-8767}
-- [net] sctp: Whitespace fix (Xin Long) [1270586] {CVE-2015-8767}
-- [net] fib_trie: leaf_walk_rcu should not compute key if key is less than pn->key (Hannes Frederic Sowa) [1275851]
-- [net] ipv4: implement support for NOPREFIXROUTE ifa flag for ipv4 address (Paolo Abeni) [1221311]
-- [net] tcp: fix a potential deadlock in tcp_get_info() (Paolo Abeni) [1269051]
-- [net] tcp: add tcpi_segs_in and tcpi_segs_out to tcp_info (Paolo Abeni) [1269051]
-- [net] tcp: add tcpi_bytes_received to tcp_info (Paolo Abeni) [1269051]
-- [net] tcp: add tcpi_bytes_acked to tcp_info (Paolo Abeni) [1269051]
-- [net] tcp_cubic: do not set epoch_start in the future (Hannes Frederic Sowa) [1268538]
-- [net] tcp_cubic: better follow cubic curve after idle period (Hannes Frederic Sowa) [1268538]
-- [netdrv] bond: track sum of rx_nohandler for all slaves (Jarod Wilson) [1289198]
-- [netdrv] team: track sum of rx_nohandler for all slaves (Jarod Wilson) [1289198]
-- [net] add rx_nohandler stat counter (Jarod Wilson) [1289198]
-- [net] core: relax BUILD_BUG_ON in netdev_stats_to_stats64 (Jarod Wilson) [1289198]
-- [net] preserve IP control block during GSO segmentation (Thadeu Lima de Souza Cascardo) [1283392]
-- [net] xfrm: add XFRMA_REPLAY_VAL attribute to SA messages (Herbert Xu) [1210745]
-- [net] xfrm: Don't prohibit AH from using ESN feature (Herbert Xu) [1210745]
-- [net] ipv6: xfrm: Add ESN support for AH ingress part (Herbert Xu) [1210745]
-- [net] ipv6: xfrm: Add ESN support for AH egress part (Herbert Xu) [1210745]
-- [net] ipv4: xfrm: Add ESN support for AH ingress part (Herbert Xu) [1210745]
-- [net] ipv4: xfrm: Add ESN support for AH egress part (Herbert Xu) [1210745]
-- [net] skbuff: Introduce skb_to_sgvec_nomark to map skb without mark new end (Herbert Xu) [1210745]
-- [net] xfrm: Fix aevent generation for each received packet (Herbert Xu) [1210745]
-- [net] xfrm: Guard IPsec anti replay window against replay bitmap (Herbert Xu) [1210745]
-- [net] ipv6: udp: use sticky pktinfo egress ifindex on connect() (Paolo Abeni) [1291792]
-- [documentation] net: change tcp_syn_retries documentation (Xin Long) [1299301]
-- [net] ipv6: sctp: fix lockdep splat in sctp_v6_get_dst() (Aaron Conole) [1286695]
-- [net] ipv6: tcp: add rcu locking in tcp_v6_send_synack() (Aaron Conole) [1286695]
-- [net] ipv6: sctp: add rcu protection around np->opt (Aaron Conole) [1286695]
-- [net] ipv6: add complete rcu protection around np->opt (Aaron Conole) [1286695]
-- [net] openvswitch: limit ovs recursions in ovs_execute_actions to not corrupt stack (Hannes Frederic Sowa) [1297881]
-- [net] scm: fix PaX detected msg_controllen overflow in scm_detach_fds (Hannes Frederic Sowa) [1284046]
-- [x86] perf, x86: Stop Intel PT before kdump starts (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Add interface to stop Intel PT logging (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Fix KVM warning due to doing rdmsr() before the CPUID test (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Disallow use by unprivileged users on paranoid systems (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Clean up files of Intel Processor Trace (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Set event->hw.itrace_started in pmu::start to match the new logic (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Add new timing packet enables (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Do not force sync packets on every schedule-in (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/lbr: Kill off intel_pmu_needs_lbr_smpl for good (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Drop redundant declarations (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add PERF_RECORD_SWITCH to indicate context switches (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel: Fix PMI handling for Intel PT (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Fix DS area sharing with x86_pmu events (Yasuaki Ishimatsu) [1270539]
-- [x86] perf_event_intel_pt.c: use arch_initcall to hook in enabling (Yasuaki Ishimatsu) [1270539]
-- [x86] perf_event_intel_bts.c: use arch_initcall to hook in enabling (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Fix a refactoring bug (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Disallow sparse AUX allocations for non-SG PMUs in overwrite mode (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Remove redundant variable declaration (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Kill pt_is_running() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Document pt_buffer_reset_offsets() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Document pt_buffer_reset_markers() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Kill an unused variable (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Untangle pt_buffer_reset_markers() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Fix and clean up error handling in pt_event_add() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Clean up the control flow in pt_pmu_hw_init() (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Fix the 32-bit build (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/bts: Add BTS PMU driver (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86/intel/pt: Add Intel PT PMU driver (Yasuaki Ishimatsu) [1270539]
-- [x86] perf/x86: Mark Intel PT and LBR/BTS as mutually exclusive (Yasuaki Ishimatsu) [1270539]
-- [x86] Add Intel Processor Trace (INTEL_PT) cpu feature detection (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add ITRACE_START record to indicate that tracing has started (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add wakeup watermark control to the AUX area (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Support overwrite mode for the AUX area (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add API for PMUs to write to the AUX area (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add AUX record (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add a pmu capability for "exclusive" events (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add a capability for AUX_NO_SG pmus to do software double buffering (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Support high-order allocations for AUX space (Yasuaki Ishimatsu) [1270539]
-- [kernel] perf: Add AUX area to ring buffer for raw data streams (Yasuaki Ishimatsu) [1270539]
-- [include] perf: Add data_{offset,size} to user_page (Yasuaki Ishimatsu) [1270539]
-- [netdrv] i40e: Fix basic support for X722 devices (Stefan Assmann) [1305242]
-- [ata] Adding Intel Lewisburg device IDs for SATA (Steve Best) [1310241]
-- [block] Always check queue limits for cloned requests (Mike Snitzer) [1286749]
-
-* Tue Feb 23 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-351.el7]
-- [fs] cifs: Ratelimit kernel log messages (Jamie Bainbridge) [1264251]
-- [fs] cifs: convert printk(LEVEL...) to pr_<level> (Jamie Bainbridge) [1264251]
-- [fs] pnfs: adjust backport for bit_wait check API change (Benjamin Coddington) [1296270]
-- [fs] ovl: fix dentry reference leak (David Howells) [1261073]
-- [fs] fs: __generic_file_splice_read retry lookup on AOP_TRUNCATED_PAGE (Abhijith Das) [1196335]
-- [fs] nfsd: fix clp->cl_revoked list deletion causing softlock in nfsd ("J. Bruce Fields") [1300023]
-- [fs] gfs2: Add missing else in trans_add_meta/data (Robert S Peterson) [1268436]
-- [fs] gfs2: Fix direct IO write rounding error (Robert S Peterson) [1289630]
-- [fs] nfsv4: handle nfs4_get_referral failure (Dave Wysochanski) [1228711]
-- [fs] fixup: audit: implement audit by executable (Richard Guy Briggs) [1135562]
-- [fs] audit: implement audit by executable (Richard Guy Briggs) [1135562]
-- [fs] audit: clean simple fsnotify implementation (Richard Guy Briggs) [1135562]
-- [fs] audit: use macros for unset inode and device values (Richard Guy Briggs) [1135562]
-- [fs] audit: make audit_del_rule() more robust (Richard Guy Briggs) [1135562]
-- [fs] audit: fix uninitialized variable in audit_add_rule() (Richard Guy Briggs) [1135562]
-- [fs] audit: eliminate unnecessary extra layer of watch parent references (Richard Guy Briggs) [1135562]
-- [fs] audit: eliminate unnecessary extra layer of watch references (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: Allocate overflow events with proper type (Richard Guy Briggs) [1135562]
-- [fs] fanotify: Handle overflow in case of permission events (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: Fix detection whether overflow event is queued (Richard Guy Briggs) [1135562]
-- [fs] inotify: Fix reporting of cookies for inotify events (Richard Guy Briggs) [1135562]
-- [fs] fanotify: Fix use after free for permission events (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: Do not return merged event from fsnotify_add_notify_event() (Richard Guy Briggs) [1135562]
-- [fs] fanotify: Fix use after free in mask checking (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: remove pointless NULL initializers (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: remove .should_send_event callback (Richard Guy Briggs) [1135562]
-- [fs] fsnotify: do not share events between notification groups (Richard Guy Briggs) [1135562]
-- [fs] inotify: provide function for name length rounding (Richard Guy Briggs) [1135562]
-- [fs] revert "inotify: don't add consecutive overflow events to the queue" (Richard Guy Briggs) [1135562]
-- [fs] audit: WARN if audit_rule_change called illegally (Richard Guy Briggs) [1135562]
-- [fs] audit: cull redundancy in audit_rule_change (Richard Guy Briggs) [1135562]
-- [fs] audit: refactor audit_receive_msg() to clarify AUDIT_*_RULE* cases (Richard Guy Briggs) [1135562]
-- [fs] audit: fix netlink portid naming and types (Richard Guy Briggs) [1135562]
-- [fs] audit: rename audit_log_remove_rule to disambiguate for trees (Richard Guy Briggs) [1135562]
-- [fs] kernel/auditfilter.c: fix leak in audit_add_rule() error path (Richard Guy Briggs) [1135562]
-- [lib] klist: fix starting point removed bug in klist iterators (Ewan Milne) [1309433]
-- [i2c] i801: Fix the alignment of the device table (Steve Best) [1307147]
-- [x86] tsc: Add native_read_tsc() to maintain KABI (Prarit Bhargava) [1302325]
-- [x86] tsc: Remove rdtsc_barrier() (Prarit Bhargava) [1302325]
-- [x86] kvm: Drop open-coded barrier and use rdtsc_ordered() in kvmclock (Prarit Bhargava) [1302325]
-- [x86] tsc: Use rdtsc_ordered() in read_tsc() instead of get_cycles() (Prarit Bhargava) [1302325]
-- [x86] tsc: Use rdtsc_ordered() in check_tsc_warp() and drop extra barriers (Prarit Bhargava) [1302325]
-- [x86] tsc: Add rdtsc_ordered() and use it in trivial call sites (Prarit Bhargava) [1302325]
-- [x86] tsc: Rename native_read_tsc() to rdtsc() (Prarit Bhargava) [1302325]
-- [x86] tsc: Remove rdtscl() (Prarit Bhargava) [1302325]
-- [x86] tsc: Use the full 64-bit TSC to detect the 2.6.2 bug (Prarit Bhargava) [1302325]
-- [x86] tsc: Use the full 64-bit TSC in delay_tsc() (Prarit Bhargava) [1302325]
-- [x86] tsc: Remove the rdtscp() and rdtscpll() macros (Prarit Bhargava) [1302325]
-- [x86] tsc: Replace rdtscll() with native_read_tsc() (Prarit Bhargava) [1302325]
-- [x86] paravirt: Remove read_tsc() and read_tscp() paravirt hooks (Prarit Bhargava) [1302325]
-- [x86] kvm: Remove vget_cycles() (Prarit Bhargava) [1302325]
-- [x86] tsc: Inline native_read_tsc() and remove __native_read_tsc() (Prarit Bhargava) [1302325]
-- [x86] mm: Enable SWIOTLB if system has SRAT memory regions above MAX_DMA32_PFN (Igor Mammedov) [1271527]
-- [x86] mm: Introduce max_possible_pfn (Igor Mammedov) [1271527]
-- [x86] xen: Support kexec/kdump in HVM guests by doing a soft reset (Vitaly Kuznetsov) [1007328]
-- [kernel] sched: Output warning when the 'isolcpus=' kernel parameter is invalid (Prarit Bhargava) [1305052]
-- [kernel] hung_task debugging: Add tracepoint to report the hang (Oleg Nesterov) [1146199]
-- [cpufreq] intel_pstate: Fix divide by zero on Knights Landing (Steve Best) [1273305]
-- [security] selinux: don't waste ebitmap space when importing NetLabel categories (Paul Moore) [1237425]
-
-* Wed Feb 17 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-350.el7]
-- [iommu] amd: Allow non-ATS devices in IOMMUv2 domains (Myron Stowe) [1050021]
-- [iommu] amd: Set global dma_ops if swiotlb is disabled (Myron Stowe) [1050021]
-- [iommu] amd: Use swiotlb in passthrough mode (Myron Stowe) [1050021]
-- [iommu] amd: Allow non-IOMMUv2 devices in IOMMUv2 domains (Myron Stowe) [1050021]
-- [iommu] amd: Use iommu core for passthrough mode (Myron Stowe) [1050021]
-- [iommu] amd: Use iommu_attach_group() (Myron Stowe) [1050021]
-- [iommu] amd: Introduce protection_domain_init() function (Myron Stowe) [1050021]
-- [iommu] Ignore -ENODEV errors from add_device call-back (Myron Stowe) [1050021]
-- [iommu] amd: Handle large pages correctly in free_pagetable (Myron Stowe) [1050021]
-- [iommu] vt-d: Don't disable IR when it was previously enabled (Myron Stowe) [1050021]
-- [iommu] vt-d: Make sure copied over IR entries are not reused (Myron Stowe) [1050021]
-- [iommu] vt-d: Copy IR table from old kernel when in kdump mode (Myron Stowe) [1050021]
-- [iommu] vt-d: Set IRTA in intel_setup_irq_remapping (Myron Stowe) [1050021]
-- [iommu] vt-d: Disable IRQ remapping in intel_prepare_irq_remapping (Myron Stowe) [1050021]
-- [iommu] vt-d: Move QI initializationt to intel_setup_irq_remapping (Myron Stowe) [1050021]
-- [iommu] vt-d: Move EIM detection to intel_prepare_irq_remapping (Myron Stowe) [1050021]
-- [iommu] vt-d: Enable Translation only if it was previously disabled (Myron Stowe) [1050021]
-- [iommu] vt-d: Don't disable translation prior to OS handover (Myron Stowe) [1050021]
-- [iommu] vt-d: Don't copy translation tables if RTT bit needs to be changed (Myron Stowe) [1050021]
-- [iommu] vt-d: Don't do early domain assignment if kdump kernel (Myron Stowe) [1050021]
-- [iommu] vt-d: Allocate si_domain in init_dmars() (Myron Stowe) [1050021]
-- [iommu] vt-d: Mark copied context entries (Myron Stowe) [1050021]
-- [iommu] vt-d: Do not re-use domain-ids from the old kernel (Myron Stowe) [1050021]
-- [iommu] vt-d: Copy translation tables from old kernel (Myron Stowe) [1050021]
-- [iommu] vt-d: Detect pre enabled translation (Myron Stowe) [1050021]
-- [iommu] vt-d: Make root entry visible for hardware right after allocation (Myron Stowe) [1050021]
-- [iommu] vt-d: Init QI before root entry is allocated (Myron Stowe) [1050021]
-- [iommu] vt-d: Cleanup log messages (Myron Stowe) [1050021]
-- [iommu] amd: Handle errors returned from iommu_init_device (Myron Stowe) [1050021]
-- [iommu] Checking for NULL instead of IS_ERR (Myron Stowe) [1050021]
-- [iommu] amd: Propagate errors from amd_iommu_init_api (Myron Stowe) [1050021]
-- [iommu] amd: Remove unused fields from struct dma_ops_domain (Myron Stowe) [1050021]
-- [iommu] amd: Get rid of device_dma_ops_init() (Myron Stowe) [1050021]
-- [iommu] amd: Put IOMMUv2 devices in a direct mapped domain (Myron Stowe) [1050021]
-- [iommu] amd: Support IOMMU_DOMAIN_IDENTITY type allocation (Myron Stowe) [1050021]
-- [iommu] amd: Support IOMMU_DOMAIN_DMA type allocation (Myron Stowe) [1050021]
-- [iommu] amd: Implement add_device and remove_device (Myron Stowe) [1050021]
-- [pci] Remove pci_ats_enabled() (Myron Stowe) [1050021]
-- [pci] Stop caching ATS Invalidate Queue Depth (Myron Stowe) [1050021]
-- [pci] Move ATS declarations to linux/pci.h so they're all together (Myron Stowe) [1050021]
-- [pci] Clean up ATS error handling (Myron Stowe) [1050021]
-- [pci] Use pci_physfn() rather than looking up physfn by hand (Myron Stowe) [1050021]
-- [pci] Inline the ATS setup code into pci_ats_init() (Myron Stowe) [1050021]
-- [pci] Rationalize pci_ats_queue_depth() error checking (Myron Stowe) [1050021]
-- [pci] Reduce size of ATS structure elements (Myron Stowe) [1050021]
-- [pci] Embed ATS info directly into struct pci_dev (Myron Stowe) [1050021]
-- [pci] Allocate ATS struct during enumeration (Myron Stowe) [1050021]
-- [iommu] vt-d: Cache PCI ATS state and Invalidate Queue Depth (Myron Stowe) [1050021]
-- [iommu] amd: Use default domain if available for DMA-API (Myron Stowe) [1050021]
-- [iommu] amd: Implement dm_region call-backs (Myron Stowe) [1050021]
-- [iommu] Introduce iommu_request_dm_for_dev() (Myron Stowe) [1050021]
-- [iommu] Add function to query the default domain of a group (Myron Stowe) [1050021]
-- [iommu] Create direct mappings in default domains (Myron Stowe) [1050021]
-- [iommu] Introduce direct mapped region handling (Myron Stowe) [1050021]
-- [iommu] Add iommu_get_domain_for_dev function (Myron Stowe) [1050021]
-- [iommu] Make sure a device is always attached to a domain (Myron Stowe) [1050021]
-- [iommu] Limit iommu_attach/detach_device to devices with their own group (Myron Stowe) [1050021]
-- [iommu] Allocate a default domain for iommu groups (Myron Stowe) [1050021]
-- [iommu] Call remove_device call-back after driver release (Myron Stowe) [1050021]
-- [iommu] Clean up after a failed bus initialization (Myron Stowe) [1050021]
-- [iommu] Propagate error in add_iommu_group (Myron Stowe) [1050021]
-- [iommu] Add a few printk messages to group handling code (Myron Stowe) [1050021]
-- [iommu] Remove function name from pr_fmt() (Myron Stowe) [1050021]
-- [iommu] amd: Handle integer overflow in dma_ops_area_alloc (Myron Stowe) [1050021]
-- [iommu] Init iommu-groups support earlier, in core_initcall (Myron Stowe) [1050021]
-- [iommu] Fix checkpatch warnings for Missing a blank line after declarations (Myron Stowe) [1050021]
-- [iommu] vt-d: Only enable extended context tables if PASID is supported (Myron Stowe) [1299039]
-- [iommu] vt-d: Change PASID support to bit 40 of Extended Capability Register (Myron Stowe) [1299039]
-- [iommu] vt-d: Fix passthrough mode with translation-disabled devices (Myron Stowe) [1299039]
-- [iommu] vt-d: Really use upper context table when necessary (Myron Stowe) [1299039]
-- [iommu] vt-d: support extended root and context entries (Myron Stowe) [1299039]
-- [iommu] vt-d: Add new extended capabilities from v2.3 VT-d specification (Myron Stowe) [1299039]
-- [iommu] vt-d: Allow RMRR on graphics devices too (Myron Stowe) [1299039]
-- [iommu] vt-d: Print x2apic opt out info instead of printing a warning (Myron Stowe) [1299039]
-- [iommu] vt-d: kill bogus ecap_niotlb_iunits() (Myron Stowe) [1299039]
-- [iommu] amd: Correctly encode huge pages in iommu page tables (Myron Stowe) [1299039]
-- [iommu] amd: Optimize amd_iommu_iova_to_phys for new fetch_pte interface (Myron Stowe) [1299039]
-- [iommu] amd: Optimize alloc_new_range for new fetch_pte interface (Myron Stowe) [1299039]
-- [iommu] amd: Optimize iommu_unmap_page for new fetch_pte interface (Myron Stowe) [1299039]
-- [iommu] amd: Return the pte page-size in fetch_pte (Myron Stowe) [1299039]
-- [iommu] amd: Add support for contiguous dma allocator (Myron Stowe) [1299039]
-- [iommu] amd: Ignore BUS_NOTIFY_UNBOUND_DRIVER event (Myron Stowe) [1299039]
-- [iommu] amd: Use BUS_NOTIFY_REMOVED_DEVICE (Myron Stowe) [1299039]
-- [iommu] Remove domain_init and domain_free iommu_ops (Myron Stowe) [1299039]
-- [iommu] vt-d: Make use of domain_alloc and domain_free (Myron Stowe) [1299039]
-- [iommu] amd: Make use of domain_alloc and domain_free (Myron Stowe) [1299039]
-- [iommu] Only allow iommu_map/unmap for paging domains (Myron Stowe) [1299039]
-- [iommu] Introduce iommu domain types (Myron Stowe) [1299039]
-- [iommu] Introduce domain_alloc and domain_free iommu_ops (Myron Stowe) [1299039]
-- [iommu] amd: Small cleanup in mn_release() (Myron Stowe) [1299039]
-- [iommu] vt-d: Convert non-returned local variable to boolean when relevant (Myron Stowe) [1299039]
-- [iommu] amd: Convert non-returned local variable to boolean when relevant (Myron Stowe) [1299036]
-- [iommu] Update my email address (Myron Stowe) [1299036]
-- [iommu] Disable on !MMU builds (Myron Stowe) [1299036]
-- [iommu] Fix trace_map() to report original iova and original size (Myron Stowe) [1299036]
-- [iommu] iopoll: Introduce memory-mapped IO polling macros (Myron Stowe) [1299036]
-- [iommu] Change trace unmap api to report unmapped size (Myron Stowe) [1299036]
-- [iommu] Fix trace_unmap() to report original iova (Myron Stowe) [1299036]
-- [iommu] Make IOVA domain page size explicit (Myron Stowe) [1299036]
-- [iommu] Make IOVA domain low limit flexible (Myron Stowe) [1299036]
-- [iommu] Consolidate IOVA allocator code (Myron Stowe) [1299036]
-- [iommu] Allow building iova.c independently (Myron Stowe) [1299036]
-- [iommu] irq_remapping: Normailize the way to detect whether IR is enabled (Myron Stowe) [1299036]
-- [iommu] amd: Fix irq remapping detection logic (Myron Stowe) [1299036]
-- [iommu] irq_remapping: Change variable disable_irq_remap to be static (Myron Stowe) [1299036]
-- [iommu] irq_remapping: Refine function irq_remapping_prepare() for maintenance (Myron Stowe) [1299036]
-- [iommu] irq_remapping: Kill function irq_remapping_supported() and related code (Myron Stowe) [1299036]
-- [iommu] amd: Check for irq-remap support amd_iommu_prepare() (Myron Stowe) [1299036]
-- [iommu] vt-d: Allow IR works in XAPIC mode though CPU works in X2APIC mode (Myron Stowe) [1299036]
-- [iommu] vt-d: Allocate IRQ remapping data structures only for all IOMMUs (Myron Stowe) [1299036]
-- [iommu] vt-d: Prepare for killing function irq_remapping_supported() (Myron Stowe) [1299036]
-- [x86] apic: Handle XAPIC remap mode proper (Myron Stowe) [1299036]
-- [x86] apic: Refine enable_IR_x2apic() and related functions (Myron Stowe) [1299036]
-- [x86] apic: Correctly detect X2APIC status in function enable_IR() (Myron Stowe) [1299036]
-- [x86] apic: Kill useless variable x2apic_enabled in function enable_IR_x2apic() (Myron Stowe) [1299036]
-- [x86] apic: Panic if kernel doesn't support x2apic but BIOS has enabled x2apic (Myron Stowe) [1299036]
-- [x86] apic: Clear stale x2apic mode (Myron Stowe) [1299036]
-- [iommu] vt-d: Convert allocations to GFP_KERNEL (Myron Stowe) [1299036]
-- [iommu] vt-d: Move iommu preparatory allocations to irq_remap_ops.prepare (Myron Stowe) [1299036]
-- [iommu] x86: Restructure setup of the irq remapping feature (Myron Stowe) [1299036]
-
-* Mon Feb 15 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-349.el7]
-- [net] ipv6: Fix regression in udp_v6_mcast_next() (Hannes Frederic Sowa) [1298790]
-- [net] vlan: Invoke driver vlan hooks only if device is present (Ivan Vecera) [1276628]
-- [net] udp: properly support MSG_PEEK with truncated buffers (Sabrina Dubroca) [1294384]
-- [net] sctp: release assoc when sctp_make_abort_user return NULL in sctp_close (Xin Long) [1285945]
-- [net] tcp: allow one skb to be received per socket under memory pressure (Paolo Abeni) [1290901]
-- [net] tcp: fix behavior for epoll edge trigger (Paolo Abeni) [1290901]
-- [net] tcp: introduce tcp_under_memory_pressure() (Paolo Abeni) [1290901]
-- [net] tcp: rename sk_forced_wmem_schedule() to sk_forced_mem_schedule() (Paolo Abeni) [1290901]
-- [net] tcp: implement sk_forced_wmem_schedule (Paolo Abeni) [1290901]
-- [net] fix sk_mem_reclaim_partial() (Paolo Abeni) [1290901]
-- [net] tcp: set SOCK_NOSPACE under memory pressure (Paolo Abeni) [1290901]
-- [net] netfilter: ipt_rpfilter: remove the nh_scope test in rpfilter_lookup_reverse (Xin Long) [1261761]
-- [net] tcp: honour SO_BINDTODEVICE for TW_RST case too (Florian Westphal) [1295557]
-- [net] tcp: send_reset: test for non-NULL sk first (Florian Westphal) [1295557]
-- [net] add inet_sk_transparent() helper (Florian Westphal) [1295557]
-- [net] add sk_fullsock() helper (Florian Westphal) [1295557]
-- [net] rtnetlink: delay RTM_DELLINK notification until after ndo_uninit() (Jarod Wilson) [1285719]
-- [net] unregister_netdevice: move RTM_DELLINK to until after ndo_uninit (Jarod Wilson) [1285719]
-- [net] ipv6: Dont add RT6_LOOKUP_F_IFACE flag if saddr set (Xin Long) [1273235]
-- [net] ipv6: Add RT6_LOOKUP_F_IFACE flag if oif is set (Xin Long) [1273235]
-- [net] ipv6: fix the incorrect return value of throw route (Xin Long) [1270665]
-- [net] ipv6: allow routes to be configured with expire (Xin Long) [1275587]
-- [security] selinux: Permit bounded transitions under NO_NEW_PRIVS or NOSUID (Paul Moore) [1264963]
-- [security] selinux: reject setexeccon() on MNT_NOSUID applications with -EACCES (Paul Moore) [1264963]
-- [netdrv] mlx4_en: Remove BUG_ON assert when checking if ring is full (Kamal Heib) [1258136]
-- [x86] fpu: Check tsk_used_math() in kernel_fpu_end() for eager FPU (Prarit Bhargava) [1268913]
-- [i2c] Adding Intel Lewisburg support for iTCO (Steve Best) [1273640]
-- [mfd] lpc_ich: Intel device IDs for PCH (Steve Best) [1273640]
-- [i2c] i801: add Intel Lewisburg device IDs (Steve Best) [1273640]
-- [sound] alsa: hda - Add Intel Lewisburg device IDs Audio (Steve Best) [1273640]
-- [ata] ahci: add new Intel device IDs (Steve Best) [1273640]
-- [scsi] ses: Fix problems with simple enclosures (Ewan Milne) [1290825]
-- [scsi] Add ALUA state change UA handling (Ewan Milne) [1292569]
-- [scsi] fnic: check pci_map_single() return value (Maurizio Lombardi) [1246232]
-- [scsi] hpsa: Update driver revision to RH2 (Joseph Szczypek) [1268073]
-- [scsi] hpsa: fix issues with multilun devices (Joseph Szczypek) [1268073]
-- [scsi] megaraid_sas: touch version string (Tomas Henzl) [1267911]
-- [scsi] megaraid_sas: SMAP restriction--do not access user memory from IOCTL code (Tomas Henzl) [1267911]
-- [scsi] bnx2fc: Do not log error for netevents that need no action (Maurizio Lombardi) [1266884]
-- [scsi] iscsi: make mutex for target scanning and unbinding per-session (Chris Leech) [1253032]
-
-* Wed Feb 10 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-348.el7]
-- [documentation] filesystems: describe the shared memory usage/accounting (Rodrigo Freire) [1293616]
-- [netdrv] sfc: Downgrade or remove some error messages (Jarod Wilson) [1282734]
-- [netdrv] sfc: Downgrade EPERM messages from MCDI to debug (Jarod Wilson) [1282734]
-- [netdrv] sfc: Make failed filter removal less noisy (Jarod Wilson) [1282734]
-- [netdrv] sfc: Handle MCDI proxy authorisation (Jarod Wilson) [1282734]
-- [netdrv] sfc: Retry MCDI after NO_EVB_PORT error on a VF (Jarod Wilson) [1282734]
-- [netdrv] sfc: fix a timeout loop (Jarod Wilson) [1282734]
-- [netdrv] sfc: only use RSS filters if we're using RSS (Jarod Wilson) [1282734]
-- [netdrv] sfc: check warm_boot_count after other functions have been reset (Jarod Wilson) [1282734]
-- [netdrv] sfc: use ALIGN macro for aligning frame sizes (Jarod Wilson) [1282734]
-- [netdrv] sfc: Add PCI ID for Solarflare 8000 series 10/40G NIC (Jarod Wilson) [1282734]
-- [netdrv] sfc: make TSO version a per-queue parameter (Jarod Wilson) [1282734]
-- [netdrv] sfc: constify pci_error_handlers structures (Jarod Wilson) [1282734]
-- [netdrv] sfc: don't call dma_supported (Jarod Wilson) [1282734]
-- [netdrv] sfc: fully reset if MC_REBOOT event received without warm_boot_count increment (Jarod Wilson) [1282734]
-- [netdrv] sfc: avoid using timespec (Jarod Wilson) [1282734]
-- [netdrv] sfc: Allow driver to cope with a lower number of VIs than it needs for RSS (Jarod Wilson) [1282734]
-- [netdrv] sfc: MC allocations must be restored following an entity reset (Jarod Wilson) [1282734]
-- [netdrv] sfc: allow ethtool selftest and MC reboot to complete on an unprivileged function (Jarod Wilson) [1282734]
-- [netdrv] sfc: clean fallbacks between promisc/normal in efx_ef10_filter_sync_rx_mode (Jarod Wilson) [1282734]
-- [netdrv] sfc: support cascaded multicast filters (Jarod Wilson) [1282734]
-- [netdrv] sfc: re-factor efx_ef10_filter_sync_rx_mode() (Jarod Wilson) [1282734]
-- [netdrv] sfc: Insert multicast filters as well as mismatch filters in promiscuous mode (Jarod Wilson) [1282734]
-- [netdrv] sfc: warn if other functions have been reset by MCFW (Jarod Wilson) [1282734]
-- [netdrv] sfc: add output flag decoding to efx_mcdi_set_workaround (Jarod Wilson) [1282734]
-- [netdrv] sfc: cope with ENOSYS from efx_mcdi_get_workarounds() (Jarod Wilson) [1282734]
-- [netdrv] sfc: enable cascaded multicast filters in MCFW (Jarod Wilson) [1282734]
-- [netdrv] sfc: update MCDI protocol definitions (Jarod Wilson) [1282734]
-- [netdrv] siena: only report generic filters in get_ts_info (Jarod Wilson) [1282734]
-- [netdrv] bonding: "primary_reselect" with "failure" is not working properly (Jarod Wilson) [1301451]
-- [netdrv] ixgbe: Teardown SR-IOV before unregister_netdev() (Alex Williamson) [1245562]
-- [netdrv] igb: Teardown SR-IOV before unregister_netdev() (Alex Williamson) [1245562]
-- [vfio] Fix bug in vfio_device_get_from_name() (Alex Williamson) [1282546]
-- [scsi] report 'INQUIRY result too short' once per host (Vitaly Kuznetsov) [1270253]
-- [scsi] Revert "report 'INQUIRY result too short' once" (Vitaly Kuznetsov) [1270253]
-- [x86] cpu: Call verify_cpu() after having entered long mode too (Lenny Szubowicz) [1240181]
-- [modsign] asn.1: Handle 'ANY OPTIONAL' in grammar (David Howells) [1250405]
-- [modsign] asn.1: Fix non-match detection failure on data overrun (David Howells) [1250405]
-- [modsign] asn.1: Fix actions on CHOICE elements with IMPLICIT tags (David Howells) [1250405]
-- [modsign] asn.1: Fix handling of CHOICE in ASN.1 compiler (David Howells) [1250405]
-- [watchdog] Read device status through sysfs attributes (Pratyush Anand) [1256787]
-- [watchdog] Use static struct class watchdog_class in stead of pointer (Pratyush Anand) [1256787]
-- [watchdog] Fix parent of watchdog_devices (Pratyush Anand) [1256787]
-- [watchdog] itco_wdt: Fix the parent device (Pratyush Anand) [1256787]
-- [cpufreq] powernv: Report Pmax throttling if capped below nominal frequency (Gustavo Duarte) [1277087]
-- [powerpc] cxl: Fix unbalanced pci_dev_get in cxl_probe (Gustavo Duarte) [1288112]
-- [powerpc] eeh: Probe after unbalanced kref check (Gustavo Duarte) [1288112]
-
-* Thu Feb 04 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-347.el7]
-- [netdrv] fjes: ethtool support (Neil Horman) [1226804]
-- [netdrv] fjes: handle receive cancellation request interrupt (Neil Horman) [1226804]
-- [netdrv] fjes: epstop_task (Neil Horman) [1226804]
-- [netdrv] fjes: update_zone_task (Neil Horman) [1226804]
-- [netdrv] fjes: unshare_watch_task (Neil Horman) [1226804]
-- [netdrv] fjes: force_close_task (Neil Horman) [1226804]
-- [netdrv] fjes: interrupt_watch_task (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_vlan_rx_add/kill_vid (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_tx_timeout (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_change_mtu (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_get_stats64 (Neil Horman) [1226804]
-- [netdrv] fjes: NAPI polling function (Neil Horman) [1226804]
-- [netdrv] fjes: tx_stall_task (Neil Horman) [1226804]
-- [netdrv] fjes: raise_intr_rxdata_task (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_start_xmit (Neil Horman) [1226804]
-- [netdrv] fjes: net_device_ops.ndo_open and .ndo_stop (Neil Horman) [1226804]
-- [netdrv] fjes: buffer address regist/unregistration routine (Neil Horman) [1226804]
-- [netdrv] fjes: ES information acquisition routine (Neil Horman) [1226804]
-- [netdrv] fjes: platform_driver's .probe and .remove routine (Neil Horman) [1226804]
-- [netdrv] fjes: Hardware cleanup routine (Neil Horman) [1226804]
-- [netdrv] fjes: Hardware initialization routine (Neil Horman) [1226804]
-- [netdrv] fjes: Introduce FUJITSU Extended Socket Network Device driver (Neil Horman) [1226804]
-- [netdrv] r8169: fix kasan reported skb use-after-free (Corinna Vinschen) [1280393]
-- [netdrv] cxgb4: changes for new firmware 1.14.4.0 (Sai Vemuri) [1275825]
-- [netdrv] netxen: correct sysfs bin attribute return code (Tony Camuso) [1274300]
-- [mm] thp: don't hold mmap_sem in khugepaged when allocating THP (Aaron Tomlin) [1282435]
-- [mm] ksm: add reschedule points to unmerge_and_remove_all_rmap_items (Andrea Arcangeli) [1298618]
-- [mm] ksm: introduce ksm_max_page_sharing per page deduplication limit (Andrea Arcangeli) [1298618]
-- [mm] hugetlbfs: skip shared VMAs when unmapping private pages to satisfy a fault (Andrea Arcangeli) [1291247]
-- [fs] dlm: fix lvb copy for user locks (David Teigland) [1256947]
-- [x86] watchdog: itco_wdt: Add support for TCO on Intel Sunrisepoint (Prarit Bhargava) [1181799]
-- [x86] i2c: i801: Create iTCO device on newer Intel PCHs (Prarit Bhargava) [1181799]
-- [x86] mfd: watchdog: itco_wdt: Expose watchdog properties using platform data (Prarit Bhargava) [1181799]
-- [x86] Broadwell EP and EX have the same cpuid (David Arcari) [1299948]
-- [x86] pvpanic: Set high notifier priority (Peter Xu) [1282794]
-- [x86] tsc: Let high latency PIT fail fast in quick_pit_calibrate() (Prarit Bhargava) [1276201]
-- [base] memory: fix kernel warning during memory hotplug on ppc64 (Laurent Vivier) [1276205]
-- [char] tpm, tpm_tis: fix tpm_tis ACPI detection issue with TPM 2.0 (Jerry Snitselaar) [1293577]
-- [crypto] nx-842: Mask XERS0 bit in return value (Gustavo Duarte) [1294090]
-- [kernel] sched/stat: Expose /proc/pid/schedstat if CONFIG_SCHED_INFO=y (Gustavo Duarte) [1289664]
-- [kernel] sched/stat: Simplify the sched_info accounting dependency (Gustavo Duarte) [1289664]
-- [kernel] sched: tracing: Stop/start critical timings around the idle=poll idle loop (Daniel Bristot de Oliveira) [1280434]
-- [kernel] watchdog: touch_nmi_watchdog should only touch local cpu not every one (Don Zickus) [1266622]
-- [kernel] sysctl: detect overflows when converting to int (Prarit Bhargava) [1303083]
-- [kernel] rh_kabi: add RH_KABI_DEPRECATE_FN (Prarit Bhargava) [1302150]
-- [kernel] time: Avoid signed overflow in timekeeping_get_ns() (David Gibson) [1248958]
-- [kernel] module: Add missing 'T' in /proc/modules when a module has the TAINT_TECH_PREVIEW bit set (Dave Wysochanski) [1299013]
-- [kernel] signal: remove warning about using SI_TKILL in rt_[tg]sigqueueinfo (Oleg Nesterov) [1015985]
-- [kernel] kexec: align crash_notes allocation to make it be inside one physical page (Baoquan He) [1073651]
-- [kernel] audit/fix non-modular users of module_init in core code (Baoquan He) [1073651]
-- [firmware] dmi_scan: Fix UUID endianness for SMBIOS >= 2.6 (Prarit Bhargava) [1294461]
-- [powercap] rapl: fix BIOS lock check (David Arcari) [1297950]
-- [security] keys: Fix keyring ref leak in join_session_keyring() (David Howells) [1298036] {CVE-2016-0728}
-
-* Wed Feb 03 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-346.el7]
-- [x86] mce: Ensure offline CPUs don't participate in rendezvous process (Prarit Bhargava) [1301710]
-- [x86] mce: Make usable address checks Intel-only (Prarit Bhargava) [1301710]
-- [x86] mce: Add the missing memory error check on AMD (Prarit Bhargava) [1301710]
-- [x86] ras: Remove mce.usable_addr (Prarit Bhargava) [1301710]
-- [x86] mce: Do not enter deferred errors into the generic pool twice (Prarit Bhargava) [1301710]
-- [x86] mce: Add a default case to the switch in __mcheck_cpu_ancient_init() (Prarit Bhargava) [1301710]
-- [x86] mce: Add a Scalable MCA vendor flags bit (Prarit Bhargava) [1301710]
-- [x86] mce: Fix thermal throttling reporting after kexec (Prarit Bhargava) [1301710]
-- [x86] mce: Don't clear shared banks on Intel when offlining CPUs (Prarit Bhargava) [1301710]
-- [x86] mce: Add a wrapper around mce_log() for injection (Prarit Bhargava) [1301710]
-- [x86] mce: Rename rcu_dereference_check_mce() to mce_log_get_idx_check() (Prarit Bhargava) [1301710]
-- [x86] mce: Reenable CMCI banks when swiching back to interrupt mode (Prarit Bhargava) [1301710]
-- [x86] mce: Clear Local MCE opt-in before kexec (Prarit Bhargava) [1301710]
-- [x86] mce: Kill drain_mcelog_buffer() (Prarit Bhargava) [1301710]
-- [x86] mce: Avoid potential deadlock due to printk() in MCE context (Prarit Bhargava) [1301710]
-- [x86] mce: Remove the MCE ring for Action Optional errors (Prarit Bhargava) [1301710]
-- [x86] mce: Reuse one of the u16 padding fields in 'struct mce' (Prarit Bhargava) [1301710]
-- [x86] mce: Don't use percpu workqueues (Prarit Bhargava) [1301710]
-- [x86] mce: Provide a lockless memory pool to save error records (Prarit Bhargava) [1301710]
-- [x86] mce: Handle Local MCE events (Prarit Bhargava) [1301710]
-- [x86] mce: Add Local MCE definitions (Prarit Bhargava) [1301710]
-- [x86] mce: Add infrastructure to support Local MCE (Prarit Bhargava) [1301710]
-- [x86] mce: mce_chrdev_write() can be static (Prarit Bhargava) [1301710]
-- [x86] mce: Stop using array-index-based RCU primitives (Prarit Bhargava) [1301710]
-- [x86] mce: Fix monarch timeout setting through the mce= cmdline option (Prarit Bhargava) [1301710]
-- [x86] mce: Fix MCE severity messages (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Zap changelog (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Rename setup_APIC_mce (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Introduce deferred error interrupt handler (Prarit Bhargava) [1301710]
-- [x86] mce: Add support for deferred errors on AMD (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Collect valid address before logging an error (Prarit Bhargava) [1301710]
-- [x86] mce/amd: Factor out logging mechanism (Prarit Bhargava) [1301710]
-- [x86] mce: Spell "panicked" correctly (Prarit Bhargava) [1301710]
-- [x86] mce: Support memory error recovery for both UCNA and Deferred error in machine_check_poll (Prarit Bhargava) [1301710]
-- [iommu] vt-d: Remove dead code in device_notifier (Myron Stowe) [1287300]
-- [iommu] add new iommu_ops callback for adding an OF device (Myron Stowe) [1287300]
-- [iommu] provide early initialisation hook for IOMMU drivers (Myron Stowe) [1287300]
-- [mm] export find_extend_vma() and handle_mm_fault() for driver use (Myron Stowe) [1287300]
-- [iommu] Decouple iommu_map_sg from CPU page size (Myron Stowe) [1287300]
-- [iommu] pci: Enhance pci_root to support DMAR device hotplug (Myron Stowe) [1287300]
-- [iommu] vt-d: Enhance intel-iommu driver to support DMAR unit hotplug (Myron Stowe) [1287300]
-- [iommu] vt-d: Enhance error recovery in function intel_enable_irq_remapping() (Myron Stowe) [1287300]
-- [iommu] vt-d: Enhance intel_irq_remapping driver to support DMAR unit hotplug (Myron Stowe) [1287300]
-- [iommu] vt-d: Search for ACPI _DSM method for DMAR hotplug (Myron Stowe) [1287300]
-- [iommu] vt-d: Implement DMAR unit hotplug framework (Myron Stowe) [1287300]
-- [iommu] vt-d: Dynamically allocate and free seq_id for DMAR units (Myron Stowe) [1287300]
-- [iommu] vt-d: Introduce helper function dmar_walk_resources() (Myron Stowe) [1287300]
-- [iommu] acpica: tables: Update for DMAR table changes (Myron Stowe) [1287300]
-- [iommu] acpica: tables: Merge DMAR table structure updates (Myron Stowe) [1287300]
-- [iommu] amd: remove compiler warning due to IOMMU_CAP_NOEXEC (Myron Stowe) [1287300]
-- [iommu] add capability IOMMU_CAP_NOEXEC (Myron Stowe) [1287300]
-- [iommu] vt-d: Fix incorrect bit operations in setting values (Myron Stowe) [1287300]
-- [iommu] Improve error handling when setting bus iommu (Myron Stowe) [1287300]
-- [iommu] fix initialization without 'add_device' callback (Myron Stowe) [1287300]
-- [iommu] Do more input validation in iommu_map_sg() (Myron Stowe) [1287300]
-- [iommu] Add iommu_map_sg() function (Myron Stowe) [1287300]
-- [iommu] powerpc: Rename iommu_[un]map_sg functions (Myron Stowe) [1287300]
-
-* Tue Feb 02 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-345.el7]
-- [net] sctp: ASCONF-ACK with Unresolvable Address should be sent (Xin Long) [1245510]
-- [net] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state (Xin Long) [1256019]
-- [net] sctp: asconf's process should verify address parameter is in the beginning (Xin Long) [1246418]
-- [net] sctp: translate host order to network order when setting a hmacid (Xin Long) [1270431]
-- [net] tcp: initialize tp->copied_seq in case of cross SYN connection (Hannes Frederic Sowa) [1287754]
-- [net] ipv6: Fix IPsec pre-encap fragmentation check (Herbert Xu) [1257952]
-- [net] xfrm: fix xfrm_input/xfrm_tunnel_check oops (Herbert Xu) [1275397]
-- [net] ipv6: distinguish frag queues by device for multicast and link-local packets (Hannes Frederic Sowa) [1285250]
-- [net] netfilter: nf_log: wait for rcu grace after logger unregistration (Florian Westphal) [1260905]
-- [net] netfilter: nf_log: don't zap all loggers on unregister (Florian Westphal) [1260905]
-- [net] netfilter: nf_log: Introduce nft_log_dereference() macro (Florian Westphal) [1260905]
-- [net] ipv6: fix crash on ICMPv6 redirects with prohibited/blackholed source (Xin Long) [1278257]
-- [net] sock: don't enable netstamp for af_unix sockets (Hannes Frederic Sowa) [1277130]
-- [net] ipv4: Fix compilation errors in fib_rebalance (Paolo Abeni) [1275573]
-- [net] ipv4: ICMP packet inspection for multipath (Paolo Abeni) [1275573]
-- [net] ipv4: L3 hash-based multipath (Paolo Abeni) [1275573]
-- [net] bridge: implement rtnl_link_ops->get_size and rtnl_link_ops->fill_info (Paolo Abeni) [1270763]
-- [net] bridge: include in6.h in if_bridge.h for struct in6_addr (Jiri Benc) [1268057]
-- [net] inet: defines IPPROTO_* needed for module alias generation (Jiri Benc) [1268057]
-- [net] sync some IP headers with glibc (Jiri Benc) [1268057]
-- [net] ipvs: fix crash if scheduler is changed (Paolo Abeni) [1233382]
-- [net] ipv6: use common fib_default_rule_pref (Paolo Abeni) [1264431]
-- [net] documentation: Update netlink_mmap.txt (Paolo Abeni) [1263708]
-- [net] netlink: Always copy on mmap TX (Paolo Abeni) [1263708]
-- [net] xfrm: configure policy hash table thresholds by netlink (Herbert Xu) [1136860 1222936]
-- [net] xfrm: hash prefixed policies based on preflen thresholds (Herbert Xu) [1136860 1222936]
-- [netdrv] bna: check for dma mapping errors (Ivan Vecera) [1244166]
-- [netdrv] qlcnic: fix mac address restore in bond mode 5/6 (Jarod Wilson) [1265058]
-- [netdrv] bonding: make mii_status sysfs node consistent (Jarod Wilson) [1297933]
-- [netdrv] bonding: support encapsulated ipv6 TSO (Jarod Wilson) [1277950]
-- [netdrv] bonding: handle more gso types (Jarod Wilson) [1277950]
-- [netdrv] alx: sanitize buffer sizing and padding (Jarod Wilson) [1090432]
-- [netdrv] alx: remove pointless assignment (Jarod Wilson) [1090432]
-- [netdrv] alx: add Killer E2400 device ID (Jarod Wilson) [1090432]
-- [netdrv] alx: fix alx_poll() (Jarod Wilson) [1090432]
-- [netdrv] alx: get rid of SET_ETHTOOL_OPS (Jarod Wilson) [1090432]
-- [netdrv] alx: Remove casts of pointer to same type (Jarod Wilson) [1090432]
-- [netdrv] alx: Call dev_kfree_skb_any instead of dev_kfree_skb (Jarod Wilson) [1090432]
-- [netdrv] alx: Use dma_set_mask_and_coherent and fix a bug (Jarod Wilson) [1090432]
-- [netdrv] alx: add missing stats_lock spinlock init (Jarod Wilson) [1090432]
-- [netdrv] alx: add stats to ethtool (Jarod Wilson) [1090432]
-- [netdrv] alx: add alx_get_stats64 operation (Jarod Wilson) [1090432]
-- [netdrv] alx: add stats update function (Jarod Wilson) [1090432]
-- [netdrv] alx: add constants for the stats fields (Jarod Wilson) [1090432]
-- [netdrv] alx: add a hardware stats structure (Jarod Wilson) [1090432]
-- [netdrv] alx: Reset phy speed after resume (Jarod Wilson) [1090432]
-- [netdrv] alx: remove unnecessary pci_set_drvdata() (Jarod Wilson) [1090432]
-- [netdrv] alx: remove redundant D0 power state set (Jarod Wilson) [1090432]
-- [netdrv] alx: remove WoL support (Jarod Wilson) [1090432]
-- [netdrv] alx: fix ethtool support code (Jarod Wilson) [1090432]
-- [netdrv] alx: fix MAC address alignment problem (Jarod Wilson) [1090432]
-- [netdrv] alx: separate link speed/duplex fields (Jarod Wilson) [1090432]
-- [netdrv] alx: make sizes unsigned (Jarod Wilson) [1090432]
-- [netdrv] alx: fix 100mbit/half duplex speed translation (Jarod Wilson) [1090432]
-- [netdrv] alx: treat flow control correctly in alx_set_pauseparam() (Jarod Wilson) [1090432]
-
-* Tue Jan 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-344.el7]
-- [block] zram: don't call idr_remove() from zram_remove() (Seth Jennings) [1244276]
-- [block] zram: fix possible use after free in zcomp_create() (Seth Jennings) [1244276]
-- [block] zram: unify error reporting (Seth Jennings) [1244276]
-- [block] zram: check comp algorithm availability earlier (Seth Jennings) [1244276]
-- [block] zram: cut trailing newline in algorithm name (Seth Jennings) [1244276]
-- [block] zram: cosmetic zram_bvec_write() cleanup (Seth Jennings) [1244276]
-- [block] zram: add dynamic device add/remove functionality (Seth Jennings) [1244276]
-- [block] zram: close race by open overriding (Seth Jennings) [1244276]
-- [block] zram: return zram device_id from zram_add() (Seth Jennings) [1244276]
-- [block] zram: trivial: correct flag operations comment (Seth Jennings) [1244276]
-- [block] zram: report every added and removed device (Seth Jennings) [1244276]
-- [block] zram: remove max_num_devices limitation (Seth Jennings) [1244276]
-- [block] zram: reorganize code layout (Seth Jennings) [1244276]
-- [block] zram: use idr instead of `zram_devices' array (Seth Jennings) [1244276]
-- [block] zram: cosmetic ZRAM_ATTR_RO code formatting tweak (Seth Jennings) [1244276]
-- [block] zram: remove obsolete ZRAM_DEBUG option (Seth Jennings) [1244276]
-- [block] zram: clear disk io accounting when reset zram device (Seth Jennings) [1244276]
-- [block] zram: fix error return code (Seth Jennings) [1244276]
-- [documentation] zram: deprecate zram attrs sysfs nodes (Seth Jennings) [1244276]
-- [documentation] zram: describe device attrs in documentation (Seth Jennings) [1244276]
-- [block] zram: export new 'mm_stat' sysfs attrs (Seth Jennings) [1244276]
-- [block] zram: export new 'io_stat' sysfs attrs (Seth Jennings) [1244276]
-- [block] zram: use proper type to update max_used_pages (Seth Jennings) [1244276]
-- [mm] zpool: add name argument to create zpool (Seth Jennings) [1244276]
-- [block] zram: remove request_queue from struct zram (Seth Jennings) [1244276]
-- [block] zram: remove init_lock in zram_make_request (Seth Jennings) [1244276]
-- [block] zram: check bd_openers instead of bd_holders (Seth Jennings) [1244276]
-- [block] zram: rework reset and destroy path (Seth Jennings) [1244276]
-- [block] zram: fix umount-reset_store-mount race condition (Seth Jennings) [1244276]
-- [block] zram: free meta table in zram_meta_free (Seth Jennings) [1244276]
-- [block] zram: clean up zram_meta_alloc() (Seth Jennings) [1244276]
-- [block] zram: use DEVICE_ATTR_[RW|RO|WO] to define zram sys device attribute (Seth Jennings) [1244276]
-- [block] zram: correct ZRAM_ZERO flag bit position (Seth Jennings) [1244276]
-- [block] zram: change parameter from vaild_io_request() (Seth Jennings) [1244276]
-- [block] zram: remove bio parameter from zram_bvec_rw() (Seth Jennings) [1244276]
-- [block] zram: avoid kunmap_atomic() of a NULL pointer (Seth Jennings) [1244276]
-- [block] zram: avoid NULL pointer access in concurrent situation (Seth Jennings) [1244276]
-- [documentation] zram: use notify_free to account all free notifications (Seth Jennings) [1244276]
-- [block] zram: report maximum used memory (Seth Jennings) [1244276]
-- [block] zram: zram memory size limitation (Seth Jennings) [1244276]
-- [mm] zsmalloc: change return value unit of zs_get_total_size_bytes (Seth Jennings) [1244276]
-- [block] zram: fix incorrect stat with failed_reads (Seth Jennings) [1244276]
-- [block] zram: replace global tb_lock with fine grain lock (Seth Jennings) [1244276]
-- [block] zram: use size_t instead of u16 (Seth Jennings) [1244276]
-- [block] zram: remove unused SECTOR_SIZE define (Seth Jennings) [1244276]
-- [block] zram: rename struct `table' to `zram_table_entry' (Seth Jennings) [1244276]
-- [block] zram: avoid lockdep splat by revalidate_disk (Seth Jennings) [1244276]
-- [block] zram: revalidate disk after capacity change (Seth Jennings) [1244276]
-- [block] zram: correct offset usage in zram_bio_discard (Seth Jennings) [1244276]
-- [block] zram: support REQ_DISCARD (Seth Jennings) [1244276]
-- [block] zram: use scnprintf() in attrs show() methods (Seth Jennings) [1244276]
-- [block] zram: propagate error to user (Seth Jennings) [1244276]
-- [block] zram: return error-valued pointer from zcomp_create() (Seth Jennings) [1244276]
-- [block] zram: move comp allocation out of init_lock (Seth Jennings) [1244276]
-- [block] zram: make compression algorithm selection possible (Seth Jennings) [1244276]
-- [block] zram: add set_max_streams knob (Seth Jennings) [1244276]
-- [block] zram: add multi stream functionality (Seth Jennings) [1244276]
-- [documentation] zram: document failed_reads, failed_writes stats (Seth Jennings) [1244276]
-- [documentation] zram: doc fixes (Seth Jennings) [1244276]
-- [block] zram: factor out single stream compression (Seth Jennings) [1244276]
-- [block] zram: use zcomp compressing backends (Seth Jennings) [1244276]
-- [block] zram: introduce compressing backend abstraction (Seth Jennings) [1244276]
-- [block] zram: delete zram_init_device() (Seth Jennings) [1244276]
-- [block] zram: move zram size warning to documentation (Seth Jennings) [1244276]
-- [block] zram: drop not used table `count' member (Seth Jennings) [1244276]
-- [block] zram: report failed read and write stats (Seth Jennings) [1244276]
-- [block] zram: remove zram stats code duplication (Seth Jennings) [1244276]
-- [block] zram: use atomic64_t for all zram stats (Seth Jennings) [1244276]
-- [block] zram: remove good and bad compress stats (Seth Jennings) [1244276]
-- [block] zram: do not pass rw argument to __zram_make_request() (Seth Jennings) [1244276]
-- [block] zram: drop `init_done' struct zram member (Seth Jennings) [1244276]
-- [block] zram: avoid null access when fail to alloc meta (Seth Jennings) [1244276]
-- [block] zram: remove zram->lock in read path and change it with mutex (Seth Jennings) [1244276]
-- [block] zram: remove workqueue for freeing removed pending slot (Seth Jennings) [1244276]
-- [block] zram: introduce zram->tb_lock (Seth Jennings) [1244276]
-- [block] zram: use atomic operation for stat (Seth Jennings) [1244276]
-- [block] zram: remove unnecessary free (Seth Jennings) [1244276]
-- [block] zram: delay pending free request in read path (Seth Jennings) [1244276]
-- [block] zram: fix race between reset and flushing pending work (Seth Jennings) [1244276]
-- [block] zram: add copyright (Seth Jennings) [1244276]
-- [documentation] zram: remove old private project comment (Seth Jennings) [1244276]
-- [block] zram: promote zram from staging (Seth Jennings) [1244276]
-- [block] zram: Fix memory leak by refcount mismatch (Seth Jennings) [1244276]
-- [block] zram: Fix access of NULL pointer (Seth Jennings) [1244276]
-- [block] zram: Fix variable dereferenced before check (Seth Jennings) [1244276]
-- [block] zram: prevent data loss in error cases of function zram_bvec_write() (Seth Jennings) [1244276]
-- [block] Fixes string split across lines in zram (Seth Jennings) [1244276]
-
-* Tue Jan 19 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-343.el7]
-- [iommu] amd: Fix devid mapping for ivrs_ioapic override (Myron Stowe) [1279620]
-- [iommu] irq_remapping: Fix the regression of hpet irq remapping (Myron Stowe) [1279620]
-- [iommu] Fix bus notifier breakage (Myron Stowe) [1279620]
-- [iommu] amd_iommu: do not dereference a NULL pointer address (Myron Stowe) [1279620]
-- [iommu] Remove iommu_domain_has_cap() API function (Myron Stowe) [1279620]
-- [iommu] ib/usnic: Convert to use new iommu_capable() API function (Myron Stowe) [1279620]
-- [iommu] vfio: Convert to use new iommu_capable() API function (Myron Stowe) [1279620]
-- [iommu] vt-d: Convert to iommu_capable() API function (Myron Stowe) [1279620]
-- [iommu] amd: Convert to iommu_capable() API function (Myron Stowe) [1279620]
-- [iommu] Introduce iommu_capable API function (Myron Stowe) [1279620]
-- [iommu] Convert iommu-caps from define to enum (Myron Stowe) [1279620]
-- [iommu] amd: Remove device binding reference count (Myron Stowe) [1279620]
-- [iommu] amd: Attach and detach complete alias group (Myron Stowe) [1279620]
-- [iommu] amd: Keep a list of devices in an alias group (Myron Stowe) [1279620]
-- [iommu] amd: Move struct iommu_dev_data to amd_iommu.c (Myron Stowe) [1279620]
-- [iommu] Replace rcu_assign_pointer() with RCU_INIT_POINTER() (Myron Stowe) [1279620]
-- [iommu] vt-d: Don't store SIRTP request (Myron Stowe) [1279620]
-- [iommu] Constify struct iommu_ops (Myron Stowe) [1279620]
-- [fs] namespaces: Use task_lock and not rcu to protect nsproxy (Hannes Frederic Sowa) [1297032]
-- [fs] proc_namespace: simplify testing nsp and nsp->mnt_ns (Hannes Frederic Sowa) [1297032]
-- [net] ipv6: recreate ipv6 link-local addresses when increasing MTU over IPV6_MIN_MTU (Hannes Frederic Sowa) [1191156]
-- [net] possible use after free in dst_release (Hannes Frederic Sowa) [1296299]
-- [net] fix a race in dst_release() (Hannes Frederic Sowa) [1296299]
-- [net] ratelimit warnings about dst entry refcount underflow or overflow (Hannes Frederic Sowa) [1296299]
-- [net] fix IP early demux races (Hannes Frederic Sowa) [1296299]
-- [of] return NUMA_NO_NODE from fallback of_node_to_nid() (Thadeu Lima de Souza Cascardo) [1294398]
-- [net] openvswitch: do not allocate memory from offline numa node (Thadeu Lima de Souza Cascardo) [1294398]
-- [net] skbuff: Fix offset error in skb_reorder_vlan_header (Lance Richardson) [1247264]
-- [net] vlan: Do not put vlan headers back on bridge and macvlan ports (Lance Richardson) [1247264]
-- [net] vlan: Fix untag operations of stacked vlans with REORDER_HEADER off (Lance Richardson) [1247264]
-- [net] Add a function to check macvlan port (Lance Richardson) [1247264]
-- [net] Always untag vlan-tagged traffic on input (Lance Richardson) [1247264]
-- [usb] xhci: init command timeout timer earlier to avoid deleting it uninitialized (Don Zickus) [1290202]
-- [acpi] processor: Fix failure of loading acpi-cpufreq driver (Prarit Bhargava) [1262898]
-- [block] nvme: default to 4k device page size (David Milburn) [1245140]
-- [kernel] makefile: use the gnu89 standard explicitly (Lance Richardson) [1227950]
-- [security] keys: Fix race between read and revoke (David Howells) [1293401] {CVE-2015-7550}
-
-* Thu Jan 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-342.el7]
-- [kernel] sched/fair: Disable tg load_avg/runnable_avg update for root_task_group (Jiri Olsa) [1289261]
-- [kernel] sched/fair: Move hot load_avg/runnable_avg into separate cacheline (Jiri Olsa) [1289261]
-- [kernel] sched: Fix avg_load computation (Jiri Olsa) [1211784]
-- [kernel] sched: Allow calculate_imbalance() to move idle cpus (Jiri Olsa) [1211784]
-- [kernel] sched: Make update_sd_pick_busiest() return 'true' on a busier sd (Jiri Olsa) [1211784]
-- [kernel] sched: Make calculate_imbalance() independent (Jiri Olsa) [1211784]
-- [kernel] sched: Disambiguate existing/remaining "capacity" usage (Jiri Olsa) [1211784]
-- [kernel] sched: Change "has_capacity" to "has_free_capacity" (Jiri Olsa) [1211784]
-- [kernel] sched: Remove "power" from 'struct numa_stats' (Jiri Olsa) [1211784]
-- [kernel] sched: Fix the rq->next_balance logic in rebalance_domains() and idle_balance() (Jiri Olsa) [1211784]
-- [kernel] sched: Fix double normalization of vruntime (Jiri Olsa) [1211784]
-- [kernel] sched: Initialize power_orig for overlapping groups (Jiri Olsa) [1211784]
-- [kernel] sched: Clean up update_sg_lb_stats() a bit (Jiri Olsa) [1211784]
-- [kernel] sched: Fix a trivial syntax misuse (Jiri Olsa) [1211784]
-- [kernel] sched: Check sched_domain before computing group power (Jiri Olsa) [1211784]
-- [kernel] sched: Fix cfs_rq->task_h_load calculation (Jiri Olsa) [1211784]
-- [kernel] sched: Fix 'local->avg_load > busiest->avg_load' case in fix_small_imbalance() (Jiri Olsa) [1211784]
-- [kernel] sched: Fix 'local->avg_load > sds->avg_load' case in calculate_imbalance() (Jiri Olsa) [1211784]
-- [kernel] sched: Fix the group_capacity computation (Jiri Olsa) [1211784]
-- [kernel] sched: Rework and comment the group_capacity code (Jiri Olsa) [1211784]
-- [kernel] sched: Fix group power_orig computation (Jiri Olsa) [1211784]
-- [kernel] sched: Reduce local_group logic (Jiri Olsa) [1211784]
-- [kernel] sched: Fix redo label position (Jiri Olsa) [1211784]
-- [kernel] sched: Shrink sg_lb_stats and play memset games (Jiri Olsa) [1211784]
-- [kernel] sched: Keep upstream 'local' namespace (Jiri Olsa) [1211784]
-- [kernel] sched: Move h_load calculation to task_h_load() (Jiri Olsa) [1211784]
-- [kernel] sched: Change cfs_rq load avg to unsigned long (Jiri Olsa) [1211784]
-- [kernel] sched: Consider runnable load average in move_tasks() (Jiri Olsa) [1211784]
-- [kernel] sched: Compute runnable load avg in cpu_load and cpu_avg_load_per_task (Jiri Olsa) [1211784]
-- [kernel] sched: Set an initial value of runnable avg for new forked task (Jiri Olsa) [1211784]
-- [kernel] sched: Move cpu_active() tests from stop_two_cpus() into migrate_swap_stop() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Change cpu_stop_queue_two_works() to rely on stopper->enabled (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Introduce __cpu_stop_queue_work() and cpu_stop_queue_two_works() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Ensure that a queued callback will be called before cpu_stop_park() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Remove cpu_stop_work's from list in cpu_stop_park() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Don't do for_each_cpu() twice in queue_stop_cpus_work() (Oleg Nesterov) [1252281]
-- [kernel] stop_machine: Move 'cpu_stopper_task' and 'stop_cpus_work' into 'struct cpu_stopper' (Oleg Nesterov) [1252281]
-
-* Thu Jan 14 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-341.el7]
-- [powerpc] kvm: Fix alignment bug in powerpc kvm_cma_declare_contiguous() (Thomas Huth) [1296933]
-- [powerpc] Implement save_stack_trace_regs() to enable kprobe stack tracing (Steven Rostedt) [1251361]
-- [kernel] ring-buffer: Fix infinite spin in reading buffer (Steven Rostedt) [1248856]
-- [kernel] ring-buffer: Always reset iterator to reader page (Steven Rostedt) [1248856]
-- [kernel] ring-buffer: Up rb_iter_peek() loop count to 3 (Steven Rostedt) [1248856]
-- [kernel] ring-buffer: Use rb_page_size() instead of open coded head_page size (Steven Rostedt) [1248856]
-- [kernel] ring-buffer: Fix first commit on sub-buffer having non-zero delta (Steven Rostedt) [1248856]
-- [netdrv] i40e/i40evf: avoid mutex re-init (Neil Horman) [1274219]
-- [netdrv] i40e: remove unused argument (Neil Horman) [1272360]
-- [netdrv] i40e: do not sleep in netdev_ops (Neil Horman) [1272360]
-- [netdrv] i40e: fix erroneous WARN_ON (Neil Horman) [1272833]
-- [scsi] be2iscsi: Fix updating the next pointer during WRB posting (Maurizio Lombardi) [1229330]
-- [scsi] scsi_error: fix stray switch detected by smatch in scsi_noretry_cmd (Ewan Milne) [1296976]
-- [fs] nfsv4.1: Allow parallel LOCK/LOCKU calls (Benjamin Coddington) [1287788]
-- [fs] nfsv4: Update of VFS byte range lock must be atomic with the stateid update (Benjamin Coddington) [1287788]
-- [fs] nfsv4: Fix lock on-wire reordering issues (Benjamin Coddington) [1287788]
-- [fs] nfsv4: Always do open_to_lock_owner if the lock stateid is uninitialised (Benjamin Coddington) [1287788]
-- [fs] nfsv4: Fix atomicity problems with lock stateid updates (Benjamin Coddington) [1287788]
-- [fs] nfsv4.1: Allow parallel OPEN/OPEN_DOWNGRADE/CLOSE (Benjamin Coddington) [1287789]
-- [fs] nfsv4: Check for NULL argument in nfs_*_seqid() functions (Benjamin Coddington) [1287789]
-- [fs] nfsv4: Convert nfs_alloc_seqid() to return an ERR_PTR() if allocation fails (Benjamin Coddington) [1287789]
-- [fs] nfsv4: We must set NFS_OPEN_STATE flag in nfs_resync_open_stateid_locked (Benjamin Coddington) [1287789]
-- [fs] nfsv4: More CLOSE/OPEN races (Benjamin Coddington) [1287789]
-- [fs] nfs: Fix stateid used for NFS v4 closes (Benjamin Coddington) [1287789]
-- [fs] nfsv4: Fix an atomicity problem in CLOSE (Benjamin Coddington) [1287789]
-- [fs] gfs2: change gfs2 readdir cookie (Benjamin Marzinski) [1138749]
-- [fs] gfs2: keep offset when splitting dir leaf blocks (Benjamin Marzinski) [1138749]
-- [fs] sunrpc: Use MSG_SENDPAGE_NOTLAST in xs_send_pagedata() (Steve Dickson) [1278540]
-- [fs] sunrpc: Move AF_LOCAL receive data path into a workqueue context (Steve Dickson) [1278540]
-- [fs] sunrpc: Move UDP receive data path into a workqueue context (Steve Dickson) [1278540]
-- [fs] sunrpc: drop stale doc comments in xprtsock.c (Steve Dickson) [1278540]
-- [fs] sunrpc: Move TCP receive data path into a workqueue context (Steve Dickson) [1278540]
-- [fs] sunrpc: Fix races between socket connection and destroy code (Steve Dickson) [1278540]
-- [fs] sunrpc: add tracepoints in xs_tcp_data_recv (Steve Dickson) [1278540]
-- [fs] sunrpc: Refactor TCP receive (Steve Dickson) [1278540]
-- [fs] sunrpc: add new tracepoints in xprt handling code (Steve Dickson) [1278540]
-
-* Tue Jan 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-340.el7]
-- [net] add validation for the socket syscall protocol argument (Hannes Frederic Sowa) [1291618] {CVE-2015-8543}
-- [net] openvswitch: Fix template leak in error cases (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Respect conntrack zone even if invalid (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix helper reference leak (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix skb leak using IPv6 defrag (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] ipv6: Export nf_ct_frag6_consume_orig() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix double-free on ip_defrag() errors (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: checking for IS_ERR() instead of NULL (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] inet: frags: fix defragmented packet's IP header for af_packet (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Serialize nested ct actions if provided (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Mark connections new when not confirmed (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Clarify conntrack COMMIT behaviour (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Reject ct_state masks for unknown bits (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Change CT_ATTR_FLAGS to CT_ATTR_COMMIT (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Extend ct_state match field to 32 bits (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Reject ct_state unsupported bits (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Ensure flow is valid before executing ct (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix skb leak in ovs_fragment() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix typos in CT headers (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix IPv6 exthdr handling with ct helpers (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Rename LABEL->LABELS (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openswitch: fix typo CONFIG_NF_CONNTRACK_LABEL (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Fix dependency on IPv6 defrag (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Remove conntrack Kconfig option (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Include ip6_fib.h (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: Define v6ops in !CONFIG_NETFILTER case (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Allow attaching helpers to ct action (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Allow matching on conntrack label (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: connlabels: Export setting connlabel length (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: Always export nf_connlabels_replace() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Allow matching on conntrack mark (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Add conntrack action (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] rhel: use dummy net_device for tunnels (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Move dev pointer into vport itself (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] dst: Metadata destinations (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] ipv4: don't forward defragmented DF packet (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] ipv4: avoid repeated calls to ip_skb_dst_mtu helper (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: bridge: No ICMP packet on IPv4 fragmentation error (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: provide v6ops->fragment to forward IPv6 fragmented packets (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: make nf_ct_zone_dflt built-in (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: add efficient mark to zone mapping (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: add direction support for zones (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: push zone object into functions (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: nf_conntrack: remove dead code (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: conntrack: use nf_ct_tmpl_free in CT/synproxy error paths (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: conntrack: Use flags in nf_ct_tmpl_alloc() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: xt_connlimit: honor conntrack zone if available (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: ctnetlink: add zone size to length (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: bridge: simplify test with nf_bridge_in_prerouting (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] netfilter: fix netns dependencies with conntrack templates (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Make tunnel set action attach a metadata dst (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: include datapath actions with sampled-packet upcall to userspace (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] dst: Add __skb_dst_copy() variation (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] ipv6: Export nf_ct_frag6_gather() (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Move MASKED* macros to datapath.h (Thadeu Lima de Souza Cascardo) [1274845]
-- [net] openvswitch: Serialize acts with original netlink len (Thadeu Lima de Souza Cascardo) [1274845]
-
-* Tue Jan 12 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-339.el7]
-- [kernel] rcu: Make rcu_barrier() understand about missing rcuo kthreads (Seth Jennings) [1208895]
-- [kernel] rcu: create rcu threads only for online cpus at boot time (Seth Jennings) [1208895]
-- [kernel] rcu: Rationalize kthread spawning (Seth Jennings) [1208895]
-- [kernel] tracing: Cleanup saved_cmdlines_size changes (Steven Rostedt) [1117093]
-- [kernel] tracing: Introduce saved_cmdlines_size file (Steven Rostedt) [1117093]
-- [kernel] tracing: Move locking of trace_cmdline_lock into start/stop seq calls (Steven Rostedt) [1117093]
-- [kernel] tracing: Try again for saved cmdline if failed due to locking (Steven Rostedt) [1117093]
-- [kernel] tracing: Have saved_cmdlines use the seq_read infrastructure (Steven Rostedt) [1117093]
-- [x86] mm: Fix CR2 corruption when tracing page faults (Steven Rostedt) [1260605]
-- [lib] idr: fix out-of-bounds pointer dereference (Jerome Marchand) [1285333]
-- [kernel] sched/numa: Fix initialization of sched_domain_topology for NUMA (Jerome Marchand) [1285333]
-- [mm] fix use-after-free in sys_remap_file_pages (Jerome Marchand) [1285333]
-- [mm] memcg: oom_notify use-after-free fix (Rafael Aquini) [1294114]
-- [powerpc] kvm: book3s: Don't dynamically split core when already split (Thomas Huth) [1287474]
-- [powerpc] mm: Differentiate between hugetlb and THP during page walk (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Handle H_DOORBELL on the guest exit path (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Make H_REMOVE return correct HPTE value for absent HPTEs (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Don't fall back to smaller HPT size in allocation ioctl (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Deliver machine check with MSR(RI=0) to guest as MCE (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Pass the correct trap argument to kvmhv_commence_exit (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Fix typo in top comment about locking (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Fix size of the PSPB register (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Implement H_CLEAR_REF and H_CLEAR_MOD (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Fix bug in dirty page tracking (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Fix race in reading change bit when removing HPTE (Thomas Huth) [1287474]
-- [powerpc] kvm: Fix warnings from sparse (Thomas Huth) [1287474]
-- [powerpc] kvm: Use READ_ONCE when dereferencing pte_t pointer (Thomas Huth) [1287474]
-- [powerpc] mm: Fix compile errors with STRICT_MM_TYPECHECKS enabled (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Minor cleanups (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Accumulate timing information for real-mode code (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Add ICP real mode counters (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Move virtual mode ICP functions to real-mode (Thomas Huth) [1287474]
-- [powerpc] kvm: Fix SMP=n build error in book3s_xics.c (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Convert ICS mutex lock to spin lock (Thomas Huth) [1287474]
-- [powerpc] lib: Export __spin_yield (Thomas Huth) [1287474]
-- [powerpc] kvm: book3s: Add guest->host real mode completion counters (Thomas Huth) [1287474]
-- [powerpc] kvm: Cleanup KVM emulated load/store endian handling (Thomas Huth) [1287474]
-- [powerpc] kvm: Create proper names for the kvm_host_state PMU fields (Thomas Huth) [1287474]
-
-* Mon Jan 11 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-338.el7]
-- [powercap] rapl: Enable Broxton RAPL support (Steve Best) [1274035]
-- [powercap] rapl: disable the 2nd power limit properly (Steve Best) [1274035]
-- [powercap] rapl: Add support for Broadwell-H (Steve Best) [1274035]
-- [powercap] rapl: Add support for Skylake H/S (Steve Best) [1274035]
-- [powercap] rapl: Support Knights Landing (Steve Best) [1274035]
-- [powercap] rapl: Floor frequency setting in Atom SoC (Steve Best) [1274035]
-- [powercap] rapl: Add support for Intel Skylake processors (Steve Best) [1274035]
-- [powercap] rapl: mark rapl_ids array as __initconst (Steve Best) [1274035]
-- [powercap] rapl: add ID for Broadwell server (Steve Best) [1274035]
-- [powercap] rapl: handle domains with different energy units (Steve Best) [1274035]
-- [powercap] rapl: add IDs for future Xeon CPUs (Steve Best) [1274035]
-- [powercap] rapl: add new model ids (Steve Best) [1274035]
-- [powercap] rapl: handle atom and core differences (Steve Best) [1274035]
-- [x86] iosf: Added Quark MBI identifiers (Steve Best) [1274035]
-- [x86] iosf: Make IOSF driver modular and usable by more drivers (Steve Best) [1274035]
-- [x86] New MailBox support driver for Intel SOC's (Steve Best) [1274035]
-- [powercap] rapl: abstract per cpu type functions (Steve Best) [1274035]
-- [powercap] intel-rapl: Fix CPU hotplug callback registration (Steve Best) [1274035]
-- [powerpc] kvm: Increase memslots to 512 (Thomas Huth) [1248390 1276254]
-- [powerpc] kvm: Implement extension to report number of memslots (Thomas Huth) [1248390 1276254]
-- [mmc] core: Use MMC_UNSAFE_RESUME as default behavior (Don Zickus) [1105882 1250748]
-- [mmc] core: Add shutdown callback for (e)MMC bus_ops (Don Zickus) [1250748]
-- [mmc] core: Handle both poweroff notification types for eMMC (Don Zickus) [1250748]
-- [mmc] core: Add shutdown callback for SD bus_ops (Don Zickus) [1250748]
-- [mmc] core: Extend shutdown sequence to handle bus operations (Don Zickus) [1250748]
-- [mmc] core: Handle card shutdown from mmc_bus (Don Zickus) [1250748]
-- [mmc] core: Initiate suspend|resume from mmc bus instead of mmc host (Don Zickus) [1250748]
-- [mmc] core: Push common suspend|resume code into each bus_ops (Don Zickus) [1250748]
-- [mmc] core: Validate suspend prerequisites for SDIO at SUSPEND_PREPARE (Don Zickus) [1250748]
-- [mmc] core: Remove unnecessary check for the remove callback (Don Zickus) [1250748]
-- [mmc] core: Restructure and simplify code for mmc sleep|awake (Don Zickus) [1250748]
-- [mmc] core: Support aggressive power management for (e)MMC/SD (Don Zickus) [1250748]
-- [mmc] block: Enable runtime pm for mmc blkdevice (Don Zickus) [1250748]
-- [mmc] core: Add bus_ops for runtime pm callbacks (Don Zickus) [1250748]
-- [mmc] core: Stop bkops for eMMC only from mmc suspend (Don Zickus) [1250748]
-- [mmc] reordered shutdown sequence in mmc_bld_remove_req (Don Zickus) [1250748]
-- [mmc] core: sd: implement proper support for sd3.0 au sizes (Don Zickus) [1246798]
-- [mmc] sd: fix the maximum au_size for SD3.0 (Don Zickus) [1246798]
-
-* Thu Jan 07 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-337.el7]
-- [powerpc] kvm: Fix emulation of H_SET_DABR/X on POWER8 (Thomas Huth) [1219234]
-- [hwmon] coretemp: Increase limit of maximum core ID from 32 to 128 (Prarit Bhargava) [1262752]
-- [block] Return EBUSY from BLKRRPART for mounted whole-dev fs (Eric Sandeen) [1285549]
-- [block] nvme: Fix filesystem deadlock on removal (David Milburn) [1279699]
-- [x86] fix KABI wreckage in xsave_hdr_struct (Prarit Bhargava) [1296120]
-- [x86] acpi: Enhance error injection tolerance level (Steve Best) [1271809]
-- [x86] cpu: Fix trivial printk formatting issues with dmesg (Stanislav Kozina) [1232441]
-- [fs] nfsd4: fix gss-proxy 4.1 mounts for some AD principals ("J. Bruce Fields") [1283341]
-- [fs] nfsd: fix unlikely NULL deref in mach_creds_match ("J. Bruce Fields") [1283341]
-- [fs] nfsd: minor consolidation of mach_cred handling code ("J. Bruce Fields") [1283341]
-- [fs] nfsd: helper for dup of possibly NULL string ("J. Bruce Fields") [1283341]
-- [fs] svcrpc: move some initialization to common code ("J. Bruce Fields") [1283341]
-- [fs] gfs2: Protect freeing directory hash table with i_lock spin_lock (Robert S Peterson) [1276477]
-- [fs] nfs: Fix a NULL pointer dereference of migration recovery ops for v4.2 client (Benjamin Coddington) [1290679]
-- [fs] ext4: fix race between truncate and __ext4_journalled_writepage() (Lukas Czerner) [1169730]
-- [fs] cache: make cache flushing more reliable ("J. Bruce Fields") [1274897]
-- [md] dm-thin: fix race condition when destroying thin pool workqueue (Mike Snitzer) [1292603]
-- [md] dm: fix AB-BA deadlock in __dm_destroy() (Mike Snitzer) [1292481]
-- [md] dm-thin: fix regression in advertised discard limits (Mike Snitzer) [1284833]
-- [md] dm-thin-metadata: fix bug in dm_thin_remove_range() (Mike Snitzer) [1284833]
-
-* Tue Jan 05 2016 Rafael Aquini <aquini@redhat.com> [3.10.0-336.el7]
-- [x86] mpx: Do not set ->vm_ops on MPX VMAs (Rui Wang) [1138650]
-- [x86] remove trailing slash from define to please debugedit (Rui Wang) [1138650]
-- [x86] mpx: Allow 32-bit binaries on 64-bit kernels again (Rui Wang) [1138650]
-- [x86] mpx: Do not count MPX VMAs as neighbors when unmapping (Rui Wang) [1138650]
-- [x86] mpx: Rewrite the unmap code (Rui Wang) [1138650]
-- [x86] mpx: Support 32-bit binaries on 64-bit kernels (Rui Wang) [1138650]
-- [x86] mpx: Use 32-bit-only cmpxchg() for 32-bit apps (Rui Wang) [1138650]
-- [x86] mpx: Introduce new 'directory entry' to 'addr' helper function (Rui Wang) [1138650]
-- [x86] mpx: Add temporary variable to reduce masking (Rui Wang) [1138650]
-- [x86] Make is_64bit_mm() widely available (Rui Wang) [1138650]
-- [x86] mpx: Trace allocation of new bounds tables (Rui Wang) [1138650]
-- [x86] mpx: Trace the attempts to find bounds tables (Rui Wang) [1138650]
-- [x86] mpx: Trace entry to bounds exception paths (Rui Wang) [1138650]
-- [x86] mpx: Trace #BR exceptions (Rui Wang) [1138650]
-- [x86] mpx: Introduce a boot-time disable flag (Rui Wang) [1138650]
-- [x86] mpx: Restrict the mmap() size check to bounds tables (Rui Wang) [1138650]
-- [x86] mpx: Remove redundant MPX_BNDCFG_ADDR_MASK (Rui Wang) [1138650]
-- [x86] mpx: Clean up the code by not passing a task pointer around when unnecessary (Rui Wang) [1138650]
-- [x86] mpx: Use the new get_xsave_field_ptr()API (Rui Wang) [1138650]
-- [x86] fpu/xstate: Wrap get_xsave_addr() to make it safer (Rui Wang) [1138650]
-- [x86] fpu/xstate: Fix up bad get_xsave_addr() assumptions (Rui Wang) [1138650]
-- [x86] kvm: support XSAVES usage in the host (Rui Wang) [1138650]
-- [x86] asm/decoder: Fix and enforce max instruction size in the insn decoder (Rui Wang) [1138650]
-- [x86] Fix off-by-one in instruction decoder (Rui Wang) [1138650]
-- [x86] add user_atomic_cmpxchg_inatomic at uaccess.h (Rui Wang) [1138650]
-- [x86] asm/entry/32: Fix user_mode() misuses (Rui Wang) [1138650]
-- [x86] mpx: Explicitly disable 32-bit MPX support on 64-bit kernels (Rui Wang) [1138650]
-- [x86] traps: Fix always true condition (Rui Wang) [1138650]
-- [x86] export get_xsave_addr (Rui Wang) [1138650]
-- [x86] mpx: Change return type of get_reg_offset() (Rui Wang) [1138650]
-- [x86] mpx: Add documentation on Intel MPX (Rui Wang) [1138650]
-- [mm] Make arch_unmap()/bprm_mm_init() available to all architectures (Rui Wang) [1138650]
-- [x86] mpx: Cleanup unused bound tables (Rui Wang) [1138650]
-- [x86] mpx: On-demand kernel allocation of bounds tables (Rui Wang) [1138650]
-- [x86] mpx: Decode MPX instruction to get bound violation information (Rui Wang) [1138650]
-- [x86] mpx: Extend siginfo structure to include bound violation information (Rui Wang) [1138650]
-- [x86] mpx: Add MPX to disabled features (Rui Wang) [1138650]
-- [x86] mpx: Rename cfg_reg_u and status_reg (Rui Wang) [1138650]
-- [x86] mpx: Add MPX-specific mmap interface (Rui Wang) [1138650]
-- [x86] mpx: Introduce VM_MPX to indicate that a VMA is MPX specific (Rui Wang) [1138650]
-- [x86] mpx: Give bndX registers actual names (Rui Wang) [1138650]
-- [x86] Remove arbitrary instruction size limit in instruction decoder (Rui Wang) [1138650]
-- [x86] perf: Fix arch_perf_out_copy_user default (Rui Wang) [1138650]
-- [x86] Add more disabled features (Rui Wang) [1138650]
-- [x86] Introduce disabled-features (Rui Wang) [1138650]
-- [x86] Axe the lightly-used cpu_has_pae (Rui Wang) [1138650]
-- [x86] cpu: Kill cpu_has_mp (Rui Wang) [1138650]
-- [x86] fpu/xsaves: Fix improper uses of __ex_table (Rui Wang) [1138650]
-- [x86] fpu: Disable XSAVES* support for now (Rui Wang) [1138650]
-- [x86] xsave: Add forgotten inline annotation (Rui Wang) [1138650]
-- [x86] xsaves: Clean up code in xstate offsets computation in xsave area (Rui Wang) [1138650]
-- [x86] xsave: Make it clear that the XSAVE macros use (edi)/(rdi) (Rui Wang) [1138650]
-- [x86] Define kernel API to get address of each state in xsave area (Rui Wang) [1138650]
-- [x86] xsaves: Enable xsaves/xrstors (Rui Wang) [1138650]
-- [x86] xsaves: Call booting time xsaves and xrstors in setup_init_fpu_buf (Rui Wang) [1138650]
-- [x86] xsaves: Save xstate to task's xsave area in __save_fpu during booting time (Rui Wang) [1138650]
-- [x86] xsaves: Add xsaves and xrstors support for booting time (Rui Wang) [1138650]
-- [x86] xsaves: Clear reserved bits in xsave header (Rui Wang) [1138650]
-- [x86] xsaves: Use xsave/xrstor for saving and restoring user space context (Rui Wang) [1138650]
-- [x86] xsaves: Use xsaves/xrstors for context switch (Rui Wang) [1138650]
-- [x86] xsaves: Use xsaves/xrstors to save and restore xsave area (Rui Wang) [1138650]
-- [x86] xsaves: Define a macro for handling xsave/xrstor instruction fault (Rui Wang) [1138650]
-- [x86] xsaves: Define macros for xsave instructions (Rui Wang) [1138650]
-- [x86] xsaves: Change compacted format xsave area header (Rui Wang) [1138650]
-- [x86] Add alternative_input_2 to support alternative with two features and input (Rui Wang) [1138650]
-- [x86] xsaves: Add a kernel parameter noxsaves to disable xsaves/xrstors (Rui Wang) [1138650]
-
-* Tue Dec 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-335.el7]
-- [acpi] tables: test the correct variable (Prarit Bhargava) [1242556]
-- [x86] acpi: Handle apic/x2apic entries in MADT in correct order (Prarit Bhargava) [1242556]
-- [acpi] tables: Add acpi_subtable_proc to ACPI table parsers (Prarit Bhargava) [1242556]
-- [acpi] table: Always count matched and successfully parsed entries (Prarit Bhargava) [1242556]
-- [acpi] table: Add new function to get table entries (Prarit Bhargava) [1242556]
-- [scsi] scsi_sysfs: protect against double execution of __scsi_remove_device() (Vitaly Kuznetsov) [1273723]
-- [s390] dasd: fix list_del corruption after lcu changes (Hendrik Brueckner) [1284020]
-- [s390] dasd: fix disconnected device with valid path mask (Hendrik Brueckner) [1284021]
-- [s390] dasd: fix invalid PAV assignment after suspend/resume (Hendrik Brueckner) [1284022]
-- [netdrv] bonding: propagate LRO disable to slave devices (Jarod Wilson) [1266578]
-- [netdrv] iwlwifi: edit the 3165 series and 8000 series PCI IDs (Stanislaw Gruszka) [1279780]
-- [netdrv] iwlwifi: Add new PCI IDs for the 8260 series (Stanislaw Gruszka) [1279780]
-- [netdrv] iwlwifi: pci: add a few more PCI subvendor IDs for the 7265 series (Stanislaw Gruszka) [1287564]
-- [kernel] pidns: alloc_pid() leaks pid_namespace if child_reaper is exiting (Aristeu Rozanski) [1284819]
-- [cpufreq] intel_pstate: Fix limits->max_perf rounding error (Prarit Bhargava) [1279617]
-- [cpufreq] intel_pstate: Fix limits->max_policy_pct rounding error (Prarit Bhargava) [1279617]
-- [cpufreq] revert "intel_pstate: fix rounding error in max_freq_pct" (Prarit Bhargava) [1279617]
-- [powerpc] kvm: Remove PPC970 from KVM_BOOK3S_64_HV text in Kconfig (Thomas Huth) [1287973]
-- [powerpc] kvm: Fix ppc64_defconfig + PPC_POWERNV=n build error (Thomas Huth) [1287973]
-- [powerpc] kvm: book3s_hv: Remove RMA-related variables from code (Thomas Huth) [1287973]
-- [powerpc] kvm: book3s_hv: Remove code for PPC970 processors (Thomas Huth) [1287973]
-- [powerpc] Add POWER8 CPU selection (Gustavo Duarte) [1213264]
-- [powerpc] tm: Check for already reclaimed tasks (Gustavo Duarte) [1276293]
-- [powerpc] tm: Block signal return setting invalid MSR state (Gustavo Duarte) [1276293]
-- [thermal] intel_powerclamp: add __init / __exit annotations (Steve Best) [1274036]
-- [thermal] powerclamp: add id for braswell cpu (Steve Best) [1274036]
-
-* Tue Dec 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-334.el7]
-- [mm] use only per-device readahead limit (Eric Sandeen) [1280355]
-- [md] revert "dm-mpath: fix stalls when handling invalid ioctls" (Mike Snitzer) [1277194]
-- [net] ipvs: fix ipv6 hook registration for local replies (Florian Westphal) [1272673]
-- [net] ipv6: update ip6_rt_last_gc every time GC is run (Hannes Frederic Sowa) [1270092]
-- [net] vsock: Fix lockdep issue (Dave Anderson) [1253971]
-- [net] vsock: sock_put wasn't safe to call in interrupt context (Dave Anderson) [1253971]
-- [net] af_iucv: avoid path quiesce of severed path in shutdown() (Hendrik Brueckner) [1272089]
-- [x86] kernel: Set X86_FEATURE_EXTD_APICID for future processors (Kim Naru) [1271351]
-- [x86] gart: Check for GART support before accessing GART registers (Kim Naru) [1271351]
-- [x86] asm: Add support for the CLWB instruction (Steve Best) [1253832]
-- [x86] mm: Add kerneldoc comments for pcommit_sfence() (Steve Best) [1253104]
-- [x86] asm: Add support for the pcommit instruction (Steve Best) [1253104]
-- [x86] kernel: Use larger chunks in mtrr_cleanup (Prarit Bhargava) [1243952]
-- [x86] cpu: Trim model ID whitespace (Prarit Bhargava) [1192048]
-- [x86] cpu: Strip any /proc/cpuinfo model name field whitespace (Prarit Bhargava) [1192048]
-- [acpi] add dynamic_debug support (Prarit Bhargava) [1267582]
-- [acpi] processor: use acpi_evaluate_ost() to replace open-coded version (Prarit Bhargava) [1275178]
-- [tools] cpupower: Fix error when running cpupower monitor (Prarit Bhargava) [1260055]
-- [kernel] module: fix sprintf format specifier in param_get_byte() (Jeremy McNicoll) [1261189]
-- [powerpc] eeh: Fix recursive fenced PHB on Broadcom shiner adapter (Steve Best) [1274631]
-- [powerpc] eeh: Fix fenced PHB caused by eeh_slot_error_detail() (Steve Best) [1274631]
-
-* Mon Nov 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-333.el7]
-- [fs] sunrpc: Fix stupid typo in xs_sock_set_reuseport (Steve Dickson) [1270038]
-- [fs] sunrpc: Define xs_tcp_fin_timeout only if CONFIG_SUNRPC_DEBUG (Steve Dickson) [1270038]
-- [fs] sunrpc: Handle connection reset more efficiently (Steve Dickson) [1270038]
-- [fs] sunrpc: Remove the redundant XPRT_CONNECTION_CLOSE flag (Steve Dickson) [1270038]
-- [fs] sunrpc: Make xs_tcp_close() do a socket shutdown rather than a sock_release (Steve Dickson) [1270038]
-- [fs] sunrpc: Ensure xs_tcp_shutdown() requests a full close of the connection (Steve Dickson) [1270038]
-- [fs] sunrpc: Cleanup to remove remaining uses of XPRT_CONNECTION_ABORT (Steve Dickson) [1270038]
-- [fs] sunrpc: Remove TCP socket linger code (Steve Dickson) [1270038]
-- [fs] sunrpc: Remove TCP client connection reset hack (Steve Dickson) [1270038]
-- [fs] sunrpc: TCP/UDP always close the old socket before reconnecting (Steve Dickson) [1270038]
-- [fs] sunrpc: Add helpers to prevent socket create from racing (Steve Dickson) [1270038]
-- [fs] sunrpc: Ensure xs_reset_transport() resets the close connection flags (Steve Dickson) [1270038]
-- [fs] sunrpc: Do not clear the source port in xs_reset_transport (Steve Dickson) [1270038]
-- [fs] sunrpc: Handle EADDRINUSE on connect (Steve Dickson) [1270038]
-- [fs] sunrpc: Set SO_REUSEPORT socket option for TCP connections (Steve Dickson) [1270038]
-- [fs] xfs: stats are no longer dependent on CONFIG_PROC_FS (Bill O'Donnell) [1269281]
-- [fs] xfs: fix an error code in xfs_fs_fill_super() (Bill O'Donnell) [1269281]
-- [fs] xfs: per-filesystem stats counter implementation (Bill O'Donnell) [1269281]
-- [fs] xfs: per-filesystem stats in sysfs (Bill O'Donnell) [1269281]
-- [fs] xfs: pass xfsstats structures to handlers and macros (Bill O'Donnell) [1269281]
-- [fs] xfs: consolidate sysfs ops (Bill O'Donnell) [1269281]
-- [fs] xfs: remove unused procfs code (Bill O'Donnell) [1269281]
-- [fs] xfs: create symlink proc/fs/xfs/stat to sys/fs/xfs/stats (Bill O'Donnell) [1269281]
-- [fs] xfs: create global stats and stats_clear in sysfs (Bill O'Donnell) [1269281]
-- [fs] xfs: add mssing inode cache attempts counter increment (Bill O'Donnell) [1269281]
-- [fs] dlm: print error from kernel_sendpage (Robert S Peterson) [1267339]
-- [fs] svcrdma: Add zero padding if the client doesn't send it (Sachin Prabhu) [1272151]
-- [fs] xfs: return errors from partial I/O failures to files (David Jeffery) [1256940]
-- [fs] nfsv4: don't set SETATTR for O_RDONLY|O_EXCL (Benjamin Coddington) [1269974]
-
-* Thu Nov 19 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-332.el7]
-- [x86] paravirt: Replace the paravirt nop with a bona fide empty function (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Fix a paravirt stack-clobbering bug in the NMI code (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Use DF to avoid userspace RSP confusing nested NMI detection (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Reorder nested NMI checks (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Improve nested NMI comments (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] nmi: Switch stacks on userspace NMI entry (Mateusz Guzik) [1259583] {CVE-2015-5157}
-- [x86] cpufeatures: Enable cpuid for Intel SHA extensions (Prarit Bhargava) [1260249]
-- [kernel] tick: broadcast: Prevent livelock from event handler (Prarit Bhargava) [1265283]
-- [kernel] clockevents: Serialize calls to clockevents_update_freq() in the core (Prarit Bhargava) [1265283]
-- [kernel] sched: Robustify topology setup (Gustavo Duarte) [1278875]
-- [kernel] sched: Don't set sd->child to NULL when it is already NULL (Gustavo Duarte) [1278875]
-- [cpufreq] pcc-cpufreq: Fix wait_event() under spinlock (Linda Knippers) [1275327]
-- [security] keys: Don't permit request_key() to construct a new keyring (David Howells) [1273465] {CVE-2015-7872}
-- [security] keys: Fix crash when attempt to garbage collect an uninstantiated keyring (David Howells) [1273465] {CVE-2015-7872}
-- [security] keys: Fix race between key destruction and finding a keyring by name (David Howells) [1273465] {CVE-2015-7872}
-
-* Wed Nov 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-331.el7]
-- [ata] ahci: Add Device ID for Intel Sunrise Point PCH (Charles Rose) [1278402]
-- [s390] pci: handle events for unused functions (Hendrik Brueckner) [1272098]
-- [s390] pci: improve handling of hotplug event 0x301 (Hendrik Brueckner) [1272098]
-- [s390] pci: improve state check when processing hotplug events (Hendrik Brueckner) [1272098]
-- [s390] 3270: redraw screen on unsolicited device end (Hendrik Brueckner) [1262729]
-- [s390] dasd: fix kernel panic when alias is set offline (Hendrik Brueckner) [1256431]
-- [s390] dasd: check for availability of prefix command during format (Hendrik Brueckner) [1272991]
-- [s390] kernel: correct uc_sigmask of the compat signal frame (Hendrik Brueckner) [1272096]
-- [misc] genwqe: get rid of atomic allocations (Hendrik Brueckner) [1270244]
-- [char] vtpm: fix memory allocation flag for rtce buffer at kernel boot (Gustavo Duarte) [1263595]
-- [tools] power: turbostat: KNL workaround for Busy and Avg_MHz (Steve Best) [1263965]
-- [block] virtio-blk: Allow extended partitions (Fam Zheng) [1232471]
-- [netdrv] igb: add support for 1512 PHY (Stefan Assmann) [1262946]
-- [netdrv] sfc: push partner queue for skb->xmit_more (Jarod Wilson) [1267167]
-- [netdrv] sfc: replace spinlocks with bit ops for busy poll locking (Jarod Wilson) [1267167]
-- [netdrv] mlx5e: Disable VLAN filter in promiscuous mode (Kamal Heib) [1271846]
-- [netdrv] mlx4: Remove shared_ports variable at mlx4_enable_msi_x (Kamal Heib) [1266690]
-- [netdrv] mlx4_core: Avoid failing the interrupts test (Kamal Heib) [1266690]
-- [crypto] nx: 842 - Add CRC and validation support (Gustavo Duarte) [1264905]
-- [powerpc] mm: Recompute hash value after a failed update (Gustavo Duarte) [1264920]
-- [powerpc] eeh: More relaxed condition for enabled IO path (Steve Best) [1274731]
-- [powerpc] eeh: Wrong place to call pci_get_slot() (Steve Best) [1273996]
-
-* Thu Nov 12 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-330.el7]
-- [of] implement of_node_to_nid as a weak function (Steve Best) [1273978]
-- [pci] Use function 0 VPD for identical functions, regular VPD for others (Myron Stowe) [1258319]
-- [pci] Fix devfn for VPD access through function 0 (Myron Stowe) [1258319]
-- [pci] Add VPD function 0 quirk for Intel Ethernet devices (Myron Stowe) [1258319]
-- [pci] Add dev_flags bit to access VPD through function 0 (Myron Stowe) [1258319]
-- [net] ipv6: drop frames with attached skb->sk in forwarding (Hannes Frederic Sowa) [1243966]
-- [net] ipv6: ip6_forward: perform skb->pkt_type check at the beginning (Hannes Frederic Sowa) [1243966]
-- [x86] kvm: svm: unconditionally intercept #DB (Paolo Bonzini) [1279470] {CVE-2015-8104}
-- [cpufreq] intel_pstate: fix rounding error in max_freq_pct (Prarit Bhargava) [1263866]
-
-* Wed Nov 11 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-329.el7]
-- [mm] let mm_find_pmd fix buggy race with THP fault (Larry Woodman) [1273993]
-- [mm] ksm: unstable_tree_search_insert error checking cleanup (Andrea Arcangeli) [1274871]
-- [mm] ksm: use find_mergeable_vma in try_to_merge_with_ksm_page (Andrea Arcangeli) [1274871]
-- [mm] ksm: use the helper method to do the hlist_empty check (Andrea Arcangeli) [1274871]
-- [mm] ksm: don't fail stable tree lookups if walking over stale stable_nodes (Andrea Arcangeli) [1274871]
-- [mm] ksm: add cond_resched() to the rmap_walks (Andrea Arcangeli) [1274871]
-- [x86] mm: fix VM_FAULT_RETRY handling (Andrea Arcangeli) [1277226]
-- [x86] mm: consolidate VM_FAULT_RETRY handling (Andrea Arcangeli) [1277226]
-- [x86] mm: move mmap_sem unlock from mm_fault_error() to caller (Andrea Arcangeli) [1277226]
-- [x86] virt: guest to host DoS by triggering an infinite loop in microcode (Paolo Bonzini) [1277561] {CVE-2015-5307}
-- [net] sctp: Fix race between OOTB responce and route removal (Jamie Bainbridge) [1277309]
-- [powerpc] kvm: book3s_hv: Synthesize segment fault if SLB lookup fails (Thomas Huth) [1269467]
-- [powerpc] kvm: book3s_hv: Create debugfs file for each guest's HPT (David Gibson) [1273692]
-- [powerpc] kvm: book3s_hv: Add helpers for lock/unlock hpte (David Gibson) [1273692]
-
-* Mon Nov 09 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-328.el7]
-- [md] raid10: don't clear bitmap bit when bad-block-list write fails (Jes Sorensen) [1267652]
-- [md] raid1: don't clear bitmap bit when bad-block-list write fails (Jes Sorensen) [1267652]
-- [md] raid10: submit_bio_wait() returns 0 on success (Jes Sorensen) [1267652]
-- [md] raid1: submit_bio_wait() returns 0 on success (Jes Sorensen) [1267652]
-- [md] crash in md-raid1 and md-raid10 due to incorrect list manipulation (Jes Sorensen) [1267652]
-- [md] raid10: ensure device failure recorded before write request returns (Jes Sorensen) [1267652]
-- [md] raid1: ensure device failure recorded before write request returns (Jes Sorensen) [1267652]
-- [x86] kvm: mmu: fix validation of mmio page fault (Bandan Das) [1267128]
-- [block] nvme: Fix memory leak on retried commands (David Milburn) [1271860]
-- [netdrv] macvtap: unbreak receiving of gro skb with frag list (Jason Wang) [1273737]
-- [cpufreq] intel_pstate: fix PCT_TO_HWP macro (Prarit Bhargava) [1264990]
-- [cpufreq] revert "intel_pstate: add quirk to disable HWP on Skylake-S processors" (Prarit Bhargava) [1264990]
-- [cpufreq] revert "intel_pstate: disable Skylake processors" (Prarit Bhargava) [1264990]
-- [powerpc] pci: initialize hybrid_dma_data before use (Laurent Vivier) [1270717]
-
-* Thu Oct 29 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-327.el7]
-- [mm] free compound page with correct order (Andrea Arcangeli) [1274867]
-- [netdrv] revert "ixgbe: Refactor busy poll socket code to address multiple issues" (John Greene) [1261275]
-- [powerpc] dma: dma_set_coherent_mask() should not be GPL only (Gustavo Duarte) [1275976]
-
-* Fri Oct 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-326.el7]
-- [md] dm-cache: the CLEAN_SHUTDOWN flag was not being set (Mike Snitzer) [1274450]
-- [md] dm-btree: fix leak of bufio-backed block in btree_split_beneath error path (Mike Snitzer) [1274393]
-- [md] dm-btree-remove: fix a bug when rebalancing nodes after removal (Mike Snitzer) [1274396]
-- [fs] nfsd: fix duplicated destroy_delegation code introduced by backport ("J. Bruce Fields") [1273228]
-- [fs] xfs: validate transaction header length on log recovery (Brian Foster) [1164135]
-- [net] ipv6: don't use CHECKSUM_PARTIAL on MSG_MORE/UDP_CORK sockets (Hannes Frederic Sowa) [1271759]
-- [net] add length argument to skb_copy_and_csum_datagram_iovec (Sabrina Dubroca) [1269228]
-- [x86] kvm: fix edge EOI and IOAPIC reconfig race (Radim Krcmar) [1271333]
-- [x86] kvm: set KVM_REQ_EVENT when updating IRR (Radim Krcmar) [1271333]
-- [kernel] Initialize msg/shm IPC objects before doing ipc_addid() (Lennert Buytenhek) [1271507] {CVE-2015-7613}
-
-* Fri Oct 16 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-325.el7]
-- [fs] nfsd: ensure that delegation stateid hash references are only put once ("J. Bruce Fields") [1233284]
-- [fs] nfsd: ensure that the ol stateid hash reference is only put once ("J. Bruce Fields") [1233284]
-- [fs] nfsv4: Fix a nograce recovery hang (Benjamin Coddington) [1264478]
-- [fs] vfs: Test for and handle paths that are unreachable from their mnt_root ("Eric W. Biederman") [1209371] {CVE-2015-2925}
-- [fs] dcache: Handle escaped paths in prepend_path ("Eric W. Biederman") [1209371] {CVE-2015-2925}
-- [fs] xfs: add an xfs_zero_eof() tracepoint (Brian Foster) [1260383]
-- [fs] xfs: always drain dio before extending aio write submission (Brian Foster) [1260383]
-- [md] dm-cache: fix NULL pointer when switching from cleaner policy (Mike Snitzer) [1269959]
-- [mm] Temporary fix for BUG_ON() triggered by THP vs. gup() race (David Gibson) [1268999]
-- [hid] usbhid: improve handling of Clear-Halt and reset (Don Zickus) [1260123]
-- [drm] qxl: fix framebuffer dirty rectangle tracking (Gerd Hoffmann) [1268293]
-- [s390] hmcdrv: fix interrupt registration (Hendrik Brueckner) [1262735]
-- [block] blk-mq: fix deadlock when reading cpu_list (Jeff Moyer) [1260615]
-- [block] blk-mq: avoid inserting requests before establishing new mapping (Jeff Moyer) [1260615]
-- [block] blk-mq: fix q->mq_usage_counter access race (Jeff Moyer) [1260615]
-- [block] blk-mq: Fix use after of free q->mq_map (Jeff Moyer) [1260615]
-- [block] blk-mq: fix sysfs registration/unregistration race (Jeff Moyer) [1260615]
-- [block] blk-mq: avoid setting hctx->tags->cpumask before allocation (Jeff Moyer) [1260615]
-- [netdrv] cxgb4: Enhance driver to update FW, when FW is too old (Sai Vemuri) [1077966]
-- [netdrv] cxgb4: Force uninitialized state if FW in adapter is unsupported (Sai Vemuri) [1077966]
-- [powerpc] revert "Use the POWER8 Micro Partition Prefetch Engine in KVM HV on POWER8" (Thomas Huth) [1269653]
-
-* Tue Oct 13 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-324.el7]
-- [netdrv] i40e/i40evf: set AQ count after memory allocation (Neil Horman) [1267663]
-- [netdrv] i40e: fix offload of GRE tunnels (Neil Horman) [1267663]
-- [netdrv] i40evf: don't blow away MAC address (Neil Horman) [1267663]
-- [netdrv] i40e/i40evf: grab the AQ spinlocks before clearing registers (Neil Horman) [1267663]
-- [netdrv] i40e: Fix a memory leak in X722 rss config path (Neil Horman) [1267663]
-- [netdrv] i40evf: Use numa_mem_id() to better support memoryless node (Neil Horman) [1267663]
-- [netdrv] i40e: Use numa_mem_id() to better support memoryless node (Neil Horman) [1267663]
-- [netdrv] i40e: fix 32 bit build warnings (Neil Horman) [1267663]
-- [netdrv] i40e: fix kbuild warnings (Neil Horman) [1267663]
-- [netdrv] i40evf: tweak init timing (Neil Horman) [1267663]
-- [netdrv] i40e: warn on double free (Neil Horman) [1267663]
-- [netdrv] i40e: refactor interrupt enable (Neil Horman) [1267663]
-- [netdrv] i40e: Strip VEB stats if they are disabled in HW (Neil Horman) [1267663]
-- [netdrv] i40e/i40evf: add new device id 1588 (Neil Horman) [1267663]
-- [netdrv] i40e: Remove useless message (Neil Horman) [1267663]
-- [netdrv] i40e: limit debugfs io ops (Neil Horman) [1267663]
-- [netdrv] i40e: use QOS field consistently (Neil Horman) [1267663]
-- [netdrv] i40e: count drops in netstat interface (Neil Horman) [1267663]
-- [netdrv] i40e/i40evf: fix Tx hang workaround code (Neil Horman) [1267663]
-- [netdrv] i40e: fixup padding issue in get_cee_dcb_cfg_v1_resp (Neil Horman) [1267663]
-- [netdrv] i40e: Fix a port VLAN configuration bug (Neil Horman) [1267663]
-- [netdrv] i40e/i40evf: fix up type clash in i40e_aq_rc_to_posix conversion (Neil Horman) [1267663]
-- [netdrv] i40e: rtnl_lock called twice in i40e_pci_error_resume() (Neil Horman) [1267663]
-- [netdrv] i40evf: missing rtnl_unlock in i40evf_resume() (Neil Horman) [1267663]
-
-* Mon Oct 12 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-323.el7]
-- [scsi] report 'INQUIRY result too short' once (Vitaly Kuznetsov) [1254049]
-- [scsi] scsi_scan: don't dump trace when scsi_prep_async_scan() is called twice (Vitaly Kuznetsov) [1254049]
-- [fs] userfaultfd: add missing mmput() in error path (Andrea Arcangeli) [1263480]
-- [mm] check if section present during memory block registering (Jan Stancek) [1256723]
-- [mm] avoid setting up anonymous pages into file mapping (Larry Woodman) [1261582]
-- [mm] add p[te|md] revert "protnone helpers for use by NUMA balancing" (Thomas Huth) [1256718]
-- [powerpc] revert "mm: convert p[te|md]_numa users to p[te|md]_protnone_numa" (Thomas Huth) [1256718]
-- [powerpc] revert "mm: add paranoid warnings for unexpected DSISR_PROTFAULT" (Thomas Huth) [1256718]
-- [mm] revert "convert p[te|md]_mknonnuma and remaining page table manipulations" (Thomas Huth) [1256718]
-- [mm] revert "numa: Do not mark PTEs pte_numa when splitting huge pages" (Thomas Huth) [1256718]
-- [mm] revert "remove remaining references to NUMA hinting bits and helpers" (Thomas Huth) [1256718]
-- [mm] revert "numa: do not trap faults on the huge zero page" (Thomas Huth) [1256718]
-- [mm] revert "numa: add paranoid check around pte_protnone_numa" (Thomas Huth) [1256718]
-- [mm] revert "numa: avoid unnecessary TLB flushes when setting NUMA hinting entries" (Thomas Huth) [1256718]
-- [powerpc] mm: Change the swap encoding in pte (Thomas Huth) [1256718]
-- [x86] perf: Fix multi-segment problem of perf_event_intel_uncore (Jiri Olsa) [1257825]
-- [lib] partially revert "[lib] vsprintf: implement bitmap printing through '*pb[l]'" (Maurizio Lombardi) [1260118]
-- [drm] radeon: update no_64bit_msi flag for certain ASICs (Oded Gabbay) [1262429]
-- [drm] nouveau: fbcon: take runpm reference when userspace has an open fd (Ben Skeggs) [1176163]
-- [drm] qxl: validate monitors config modes (Dave Airlie) [1242847]
-- [drm] radeon: don't attempt WC mappings on powerpc (Dave Airlie) [1262429]
-- [drm] drm/qxl: recreate the primary surface when the bo is not primary (Dave Airlie) [1258301]
-- [drm] qxl: only report first monitor as connected if we have no state (Dave Airlie) [1258301]
-- [drm] dp_mst: drop cancel work sync in the mstb destroy path (Dave Airlie) [1251331]
-- [drm] dp_mst: split connector registration into two parts (Dave Airlie) [1251331]
-- [drm] dp_mst: update the link_address_sent before sending the link address (Dave Airlie) [1251331]
-- [drm] dp_mst: fixup handling hotplug on port removal (Dave Airlie) [1251331]
-- [drm] dp_mst: don't pass port into the path builder function (Dave Airlie) [1251331]
-- [drm] dp_mst: make functions that always return 0 return void (Dave Airlie) [1251331]
-- [kernel] uprobes: fix kABI broken by the exported return_instance (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Make arch_uretprobe_is_alive(RP_CHECK_CALL) more clever (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Add the "enum rp_check ctx" arg to arch_uretprobe_is_alive() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Change prepare_uretprobe() to (try to) flush the dead frames (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Change handle_trampoline() to flush the frames invalidated by longjmp() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Reimplement arch_uretprobe_is_alive() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Export 'struct return_instance', introduce arch_uretprobe_is_alive() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Change handle_trampoline() to find the next chain beforehand (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Change prepare_uretprobe() to use uprobe_warn() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Send SIGILL if handle_trampoline() fails (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Introduce free_ret_instance() (Oleg Nesterov) [1207373]
-- [kernel] uprobes: Introduce get_uprobe() (Oleg Nesterov) [1207373]
-- [kernel] lockdep: Fix a race between /proc/lock_stat and module unload (Jerome Marchand) [1183891]
-- [kernel] lockdep: Fix the module unload key range freeing logic (Jerome Marchand) [1183891]
-- [kernel] module: Free lock-classes if parse_args failed (Jerome Marchand) [1183891]
-- [cpufreq] revert "intel_pstate: honor user space min_perf_pct override on resume" (Prarit Bhargava) [1269518]
-
-* Mon Oct 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-322.el7]
-- [fs] nfs: fix v4.2 SEEK on files over 2 gigs ("J. Bruce Fields") [1262181]
-- [fs] nfs: verify open flags before allowing open (Benjamin Coddington) [1164431]
-- [fs] nfsv4.1: Fix pnfs_put_lseg races (Benjamin Coddington) [1263155]
-- [fs] nfsv4.1: pnfs_send_layoutreturn should use GFP_NOFS (Benjamin Coddington) [1263155]
-- [fs] nfsv4.1: Pin the inode and super block in asynchronous layoutreturns (Benjamin Coddington) [1263155]
-- [fs] nfsv4.1: Pin the inode and super block in asynchronous layoutcommit (Benjamin Coddington) [1263155]
-- [md] raid0: apply base queue limits *before* disk_stack_limits (Jes Sorensen) [1265182]
-- [net] revert "ipv6: Don't reduce hop limit for an interface" (Sabrina Dubroca) [1258324]
-- [x86] kvmclock: abolish PVCLOCK_COUNTS_FROM_ZERO (Radim Krcmar) [1263030]
-- [x86] revert "kvm: x86: zero kvmclock_offset when vcpu0 initializes kvmclock system MSR" (Radim Krcmar) [1263030]
-- [x86] kvm: svm: reset mmu on VCPU reset (Igor Mammedov) [1255217]
-- [edac] sb_edac: correctly fetch DIMM width on Ivy Bridge and Haswell (Aristeu Rozanski) [1112413]
-- [edac] sb_edac: look harder for DDRIO on Haswell systems (Aristeu Rozanski) [1112413]
-- [tools] perf-trace: Fix race condition at the end of started workloads (Jiri Olsa) [1250068]
-- [netdrv] cxgb4: Fix tx flit calculation (Sai Vemuri) [1266248]
-- [netdrv] igb: assume MSI-X interrupts during initialization (Stefan Assmann) [1263625]
-- [cpufreq] intel_pstate: disable Skylake processors (Prarit Bhargava) [1267343]
-- [infiniband] mlx4: Report checksum offload cap for RAW QP when query device (Doug Ledford) [1265795]
-- [infiniband] core: Add support of checksum capability reporting for RC and RAW (Doug Ledford) [1265795]
-
-* Wed Sep 30 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-321.el7]
-- [netdrv] i40e/i40evf: check for stopped admin queue (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: refactor tx timeout logic (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.21 and i40evf to 1.3.13 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add get AQ result command to nvmupdate utility (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add exec_aq command to nvmupdate utility (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add wait states to NVM state machine (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add GetStatus command for nvmupdate (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add handling of writeback descriptor (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: save aq writeback for future inspection (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.9 and i40evf to 1.3.5 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Cache the CEE TLV status returned from firmware (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add VIRTCHNL_VF_OFFLOAD flag (Stefan Assmann) [1267255]
-- [netdrv] i40evf: Remove PF specific register definitions from the VF (Stefan Assmann) [1267255]
-- [netdrv] i40evf: Use the correct defines to match the VF registers (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add capability to gather VEB per TC stats (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add TX/RX outer UDP checksum support for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add support for writeback on ITR feature for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: RSS changes for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Update register.h file for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Update FW API with X722 support (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add flags for X722 capabilities (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add device ids for X722 (Stefan Assmann) [1267255]
-- [netdrv] i40e: use BIT and BIT_ULL macros (Stefan Assmann) [1267255]
-- [netdrv] i40e: clean up error status messages (Stefan Assmann) [1267255]
-- [netdrv] i40evf: support virtual channel API version 1.1 (Stefan Assmann) [1267255]
-- [netdrv] i40evf: handle big resets (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: add macros for virtual channel API version and device capability (Stefan Assmann) [1267255]
-- [netdrv] i40e: add VF capabilities to virtual channel interface (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Fix and refactor dynamic ITR code (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Bump version to 1.3.6 for i40e and 1.3.2 for i40evf (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add support for pre-allocated pages for PD (Stefan Assmann) [1267255]
-- [netdrv] i40evf: add MAC address filter in open, not init (Stefan Assmann) [1267255]
-- [netdrv] i40evf: don't delete all the filters (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Update the admin queue command header (Stefan Assmann) [1267255]
-- [netdrv] i40evf: Allow for an abundance of vectors (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: improve Tx performance with a small tweak (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Update Flex-10 related device/function capabilities (Stefan Assmann) [1267255]
-- [netdrv] i40e/i40evf: Add stats to track FD ATR and SB dynamic enable state (Stefan Assmann) [1267255]
-- [netdrv] i40e: Fix for recursive RTNL lock during PROMISC change (Stefan Assmann) [1267254]
-- [netdrv] i40e: Fix RS bit update in Tx path and disable force WB workaround (Stefan Assmann) [1267254]
-- [netdrv] i40e: add GRE tunnel type to csum encoding (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: refactor tx timeout logic (Stefan Assmann) [1267254]
-- [netdrv] i40e: Move i40e_get_head into header file (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: check for stopped admin queue (Stefan Assmann) [1267254]
-- [netdrv] i40e: fix VLAN inside VXLAN (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.21 and i40evf to 1.3.13 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add get AQ result command to nvmupdate utility (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add exec_aq command to nvmupdate utility (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add wait states to NVM state machine (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add GetStatus command for nvmupdate (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add handling of writeback descriptor (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: save aq writeback for future inspection (Stefan Assmann) [1267254]
-- [netdrv] i40e: rename variable to prevent clash of understanding (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Bump i40e to 1.3.9 and i40evf to 1.3.5 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Cache the CEE TLV status returned from firmware (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add VIRTCHNL_VF_OFFLOAD flag (Stefan Assmann) [1267254]
-- [netdrv] i40e: Remove redundant and unneeded messages (Stefan Assmann) [1267254]
-- [netdrv] i40e: correct spelling error (Stefan Assmann) [1267254]
-- [netdrv] i40e: Fix comment for ethtool diagnostic link test (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add capability to gather VEB per TC stats (Stefan Assmann) [1267254]
-- [netdrv] i40e: Fix ethtool offline diagnostic with netqueues (Stefan Assmann) [1267254]
-- [netdrv] i40e: Fix legacy interrupt mode in the driver (Stefan Assmann) [1267254]
-- [netdrv] i40e: Move function calls to i40e_shutdown instead of i40e_suspend (Stefan Assmann) [1267254]
-- [netdrv] i40e: add RX to port CRC errors label (Stefan Assmann) [1267254]
-- [netdrv] i40e: don't degrade __le16 (Stefan Assmann) [1267254]
-- [netdrv] i40e: Add AQ commands for NVM Update for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add ATR HW eviction support for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e: Add IWARP support for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add TX/RX outer UDP checksum support for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add support for writeback on ITR feature for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: RSS changes for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Update register.h file for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Update FW API with X722 support (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add flags for X722 capabilities (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add device ids for X722 (Stefan Assmann) [1267254]
-- [netdrv] i40e: use BIT and BIT_ULL macros (Stefan Assmann) [1267254]
-- [netdrv] i40e: provide correct API version to older VF drivers (Stefan Assmann) [1267254]
-- [netdrv] i40e: support virtual channel API 1.1 (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: add macros for virtual channel API version and device capability (Stefan Assmann) [1267254]
-- [netdrv] i40e: add VF capabilities to virtual channel interface (Stefan Assmann) [1267254]
-- [netdrv] i40e: clean up unneeded gotos (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Fix and refactor dynamic ITR code (Stefan Assmann) [1267254]
-- [netdrv] i40e: only report generic filters in get_ts_info (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Bump version to 1.3.6 for i40e and 1.3.2 for i40evf (Stefan Assmann) [1267254]
-- [netdrv] i40e: Refine an error message to avoid confusion (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add support for pre-allocated pages for PD (Stefan Assmann) [1267254]
-- [netdrv] i40e: un-disable VF after reset (Stefan Assmann) [1267254]
-- [netdrv] i40e: do a proper reset when disabling a VF (Stefan Assmann) [1267254]
-- [netdrv] i40e: correctly program filters for VFs (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Update the admin queue command header (Stefan Assmann) [1267254]
-- [netdrv] i40e: Remove incorrect #ifdef's (Stefan Assmann) [1267254]
-- [netdrv] i40e: ignore duplicate port VLAN requests (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: improve Tx performance with a small tweak (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Update Flex-10 related device/function capabilities (Stefan Assmann) [1267254]
-- [netdrv] i40e/i40evf: Add stats to track FD ATR and SB dynamic enable state (Stefan Assmann) [1267254]
-- [netdrv] i40e: Implement ndo_features_check() (Stefan Assmann) [1267254]
-
-* Mon Sep 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-320.el7]
-- [md] raid1: Avoid raid1 resync getting stuck (Jes Sorensen) [1256954]
-- [fs] gfs2: fallocate: do not rely on file_update_time to mark the inode dirty (Andrew Price) [1264521]
-- [fs] gfs2: Update timestamps on fallocate (Andrew Price) [1264521]
-- [fs] gfs2: Update i_size properly on fallocate (Andrew Price) [1264521]
-- [fs] gfs2: Use inode_newsize_ok and get_write_access in fallocate (Andrew Price) [1264521]
-- [fs] revert "nfs: Make close(2) asynchronous when closing NFS O_DIRECT files" (Benjamin Coddington) [1263385]
-- [fs] gfs2: Average in only non-zero round-trip times for congestion stats (Robert S Peterson) [1162821]
-- [fs] lockd: fix rpcbind crash on lockd startup failure ("J. Bruce Fields") [1253782]
-- [fs] Failing to send a CLOSE if file is opened WRONLY and server reboots on a 4.x mount (Benjamin Coddington) [1263376]
-- [fs] fsnotify: fix oops in fsnotify_clear_marks_by_group_flags() (Lukas Czerner) [1247436]
-- [net] sctp: fix race on protocol/netns initialization (Marcelo Leitner) [1251807] {CVE-2015-5283}
-- [x86] Mark Broadwell-DE SoC Supported (Prarit Bhargava) [1131685]
-- [kernel] sched,numa: limit amount of virtual memory scanned in task_numa_work (Rik van Riel) [1261722]
-- [drivers] base: show nohz_full cpus in sysfs (Rik van Riel) [1212618]
-- [drivers] base: show isolated cpus in sysfs (Rik van Riel) [1212618]
-- [cpufreq] intel_pstate: add quirk to disable HWP on Skylake-S processors (Jerry Snitselaar) [1263069]
-- [drivers] core: Add symlink to device-tree from devices with an OF node (Gustavo Duarte) [1258828]
-- [powerpc] device: Add dev_of_node() accessor (Gustavo Duarte) [1258828]
-- [powerpc] iommu: Support "hybrid" iommu/direct DMA ops for coherent_mask < dma_mask (Gustavo Duarte) [1246880]
-- [powerpc] iommu: Cleanup setting of DMA base/offset (Gustavo Duarte) [1246880]
-- [powerpc] iommu: Remove dma_data union (Gustavo Duarte) [1246880]
-- [powerpc] kvm: book3s-hv: Fix handling of interrupted VCPUs (Thomas Huth) [1263568]
-- [powerpc] kvm: Take the kvm->srcu lock in kvmppc_h_logical_ci_load/store() (Thomas Huth) [1263577]
-
-* Tue Sep 22 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-319.el7]
-- [netdrv] cxgb4: Make necessary changes after reverting FCoE (Sai Vemuri) [1258657]
-- [netdrv] revert "cxgb4: add cxgb4_fcoe.c for FCoE" (Sai Vemuri) [1258657]
-- [infiniband] iw_cxgb4: Cleanup register defines/MACROS (Sai Vemuri) [1251611]
-- [infiniband] iw_cxgb4: 32b platform fixes (Sai Vemuri) [1251611]
-- [infiniband] iw_cxgb4: use BAR2 GTS register for T5 kernel mode CQs (Sai Vemuri) [1251611]
-- [infiniband] iw_cxgb4: enforce qp/cq id requirements (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix incorrect sequence numbers shown in devlog (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: remove unused fn to enable/disable db coalescing (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: function and argument name cleanup (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add debugfs facility to inject FL starvation (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add PHY firmware support for T420-BT cards (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update T4/T5 adapter register ranges (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Optimize and cleanup setup memory window code (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: replace ntoh{s, l} and hton{s, l} calls with the generic byteorder (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Remove dead function t4_read_edc and t4_read_mc (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: Cleanup macros, add comments and add new MACROS (Sai Vemuri) [1251611]
-- [netdrv] cxgb3/4/4vf: Update drivers to use dma_rmb/wmb where appropriate (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: add cxgb4_fcoe.c for FCoE (Sai Vemuri) [1251611]
-- [infiniband] iw_cxgb4: Remove negative advice dmesg warnings (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Initialize RSS mode for all Ports (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Discard the packet if the length is greater than mtu (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Move SGE Ingress DMA state monitor code to a new routine (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add device node to ULD info (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Pass in a Congestion Channel Map to t4_sge_alloc_rxq() (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Enable congestion notification from SGE for IQs and FLs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Make sure that Freelist size is larger than Egress Congestion Threshold (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: drop __GFP_NOFAIL allocation (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix MC1 memory offset calculation (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Don't call t4_slow_intr_handler when we're not the Master PF (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add comment for calculate tx flits and sge length code (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Use device node in page allocation (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Freelist starving threshold varies from adapter to adapter (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Increased the value of MAX_IMM_TX_PKT_LEN from 128 to 256 bytes (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Move ethtool related code to a separate file (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix to dump devlog, even if FW is crashed (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Firmware macro changes for fw verison 1.13.32.0 (Sai Vemuri) [1251611]
-- [infiniband] cxgb4: Serialize CQ event upcalls with CQ destruction (Sai Vemuri) [1251611]
-- [infiniband] cxgb4: Don't hang threads forever waiting on WR replies (Sai Vemuri) [1251611]
-- [netdrv] cxgb4vf: Fix sparse warnings (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Disable interrupts and napi before unregistering netdev (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Allocate dynamic mem. for egress and ingress queue maps (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix frame size warning for 32 bit arch (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Make PCI Device ID Tables be "const" (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add device ID for new adapter (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: fix coccinelle warnings (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Try and provide an RDMA CIQ per cpu (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Use pci_enable_msix_range() instead of pci_enable_msix() (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Move offload Rx queue allocation to separate function (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix PCI-E Memory window interface for big-endian systems (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support in cxgb4 to get expansion rom version via ethtool (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix trace observed while dumping clip_tbl (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support in debugfs to dump the congestion control table (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support to dump mailbox content in debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for ULP RX logic analyzer output in debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to display TP logic analyzer output (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support in debugfs to display sensor information (Sai Vemuri) [1251611]
-- [netdrv] chelsio: cxgb4: fix sparse warning (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Delete an unnecessary check before the function call "release_firmware" (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add low latency socket busy_poll support (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Improve IEEE DCBx support, other minor open-lldp fixes (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Remove preprocessor check for CONFIG_CXGB4_DCB (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Move firmware version MACRO to t4fw_version.h (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to dump different timer and clock values of the adapter (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to dump PM module stats (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Addded support in debugfs to dump CIM outbound queue content (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to dump cim ingress bound queue contents (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Added support in debugfs to dump sge_qinfo (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fixes cxgb4_inet6addr_notifier unregister call (Sai Vemuri) [1251611]
-- [netdrv] mode_t whack-a-mole: chelsio (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add debugfs options to dump the rss key, config for PF, VF, etc (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add debugfs entry to dump the contents of the flash (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update ipv6 address handling api (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Ripping out old hard-wired initialization code in driver (Sai Vemuri) [1251611]
-- [netdrv] iw_cxgb4/cxgb4/cxgb4vf/cxgb4i/csiostor: Cleanup register defines/macros related to all other cpl messages (Sai Vemuri) [1251611]
-- [netdrv] iw_cxgb4/cxgb4/cxgb4i: Cleanup register defines/MACROS related to CM CPL messages (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for mps_tcam debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for cim_qcfg entry in debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for cim_la entry in debugfs (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for devlog (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add PCI device ID for new T5 adapter (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Cleanup PL, XGMAC, SF and MC related register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/csiostor: Cleanup TP, MPS and TCAM related register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxg4vf/csiostor: Cleanup MC, MA and CIM related register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Cleanup SGE and PCI related register defines (Sai Vemuri) [1251611]
-- [infiniband] cxgb4/cxgb4vf/csiostor: Cleanup SGE register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix decoding QSA module for ethtool get settings (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add support for QSA modules (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/csiostor: Don't use MASTER_MUST for fw_hello call (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: global named must be unique (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update firmware version after flashing it via ethtool (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: Use new interfaces to calculate BAR2 SGE Queue Register addresses (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf: Add code to calculate T5 BAR2 Offsets for SGE Queue Registers (Sai Vemuri) [1251611]
-- [netdrv] cxgb4vf: Add and initialize some sge params for VF driver (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update FW version string to match FW binary version 1.12.25.0 (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add a check for flashing FW using ethtool (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fill in supported link mode for SFP modules (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Add T4/T5 PCI ID Table (Sai Vemuri) [1251611]
-- [infiniband] cxgb4/cxgb4vf/csiostor: Cleanup macros/register defines related to PCIE, RSS and FW (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Cleanup macros/register defines related to port and VI (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Disable recursive mailbox commands when enabling vi (Sai Vemuri) [1251611]
-- [netdrv] cxgb4/cxgb4vf/csiostor: Cleanup macros/register defines related to queues (Sai Vemuri) [1251611]
-- [infiniband] cxgb4/csiostor: Cleansup FW related macros/register defines for PF/VF and LDST (Sai Vemuri) [1251611]
-- [infiniband] cxgb4: Cleanup Filter related macros/register defines (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix DCB priority groups being returned in wrong order (Sai Vemuri) [1251611]
-- [netdrv] cxgb4i/cxgb4: Refactor macros to conform to uniform standards (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix static checker warning (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: dcb open-lldp interop fixes (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix bug in DCB app deletion (Sai Vemuri) [1251611]
-- [scsi] cxgb4: Cleanup macros so they follow the same style and look consistent, part 2 (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Cleanup macros so they follow the same style and look consistent (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add cxgb4_debugfs.c, move all debugfs code to new file (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Handle dcb enable correctly (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Improve handling of DCB negotiation or loss thereof (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: IEEE fixes for DCBx state machine (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Fix endian bug introduced in cxgb4 dcb patchset (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update copyright year on all cxgb4 files (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Makefile & Kconfig changes for DCBx support (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Integrate DCBx support into cxgb4 module. Register dbcnl_ops to give access to DCBx functions (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Add DCBx support codebase and dcbnl_ops (Sai Vemuri) [1251611]
-- [netdrv] cxgb4: Update fw interface file for DCBx support. Adds all the required fields to fw interface to communicate DCBx info (Sai Vemuri) [1251611]
-
-* Mon Sep 21 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-318.el7]
-- [net] vlan: Add GRO support for non hardware accelerated vlan (Ivan Vecera) [1235229]
-- [net] Add priority to packet_offload objects (Ivan Vecera) [1235229]
-- [net] sctp: add routing output fallback (Marcelo Leitner) [1258494]
-- [net] sctp: fix dst leak (Marcelo Leitner) [1258494]
-- [scsi] hpsa: move lockup_detected attribute to host attr (Joseph Szczypek) [1259673]
-- [sound] alsa: hda - Fix subsystem ID read regression (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Set patch_ops before calling auto-parser (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Disable widget power-save for VIA codecs (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Fix link power unbalance at device removal (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Re-add the lost fake mute support (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Don't actually write registers for caps overwrites (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - set GET bit when adding a vendor verb to the codec regmap (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Always allow access for POWER_STATE verbs via regmap (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Set use_single_rw flag for regmap (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Handle a few verbs as read-only (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Add cache support for COEF read/write (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - Handle get/set power verb symmetrically via regmap (Jaroslav Kysela) [1256578]
-- [sound] alsa: hda - fix i915 probe for HSW/BDW (Jaroslav Kysela) [1253837]
-- [sound] alsa: hda - Fix NULL dereference from CA0132 DSP loader (Jaroslav Kysela) [1251483]
-- [tools] cpupower: Do not change the frequency of offline cpu (Gustavo Duarte) [1260293]
-- [crypto] nx - add LE support to pSeries platform driver (Gustavo Duarte) [1261375]
-- [netdrv] ibmveth: Don't receive packets when the napi budget == 0 (Gustavo Duarte) [1264158]
-- [netdrv] iwlwifi: pcie: fix prepare card flow (Stanislaw Gruszka) [1256419]
-- [netdrv] rtlwifi: Fix NULL dereference when PCI driver used as an AP (Stanislaw Gruszka) [1256419]
-- [net] mac80211: fix invalid read in minstrel_sort_best_tp_rates() (Stanislaw Gruszka) [1256419]
-- [netdrv] iwlwifi: pcie: prepare the device before accessing it (Stanislaw Gruszka) [1256419]
-- [netdrv] iwlwifi: nvm: remove mac address byte swapping in 8000 family (Stanislaw Gruszka) [1256419]
-- [netdrv] iwlwifi: mvm: fix antenna selection when BT is active (Stanislaw Gruszka) [1256419]
-- [net] mac80211: clear subdir_stations when removing debugfs (Stanislaw Gruszka) [1256419]
-- [net] mac80211: prevent possible crypto tx tailroom corruption (Stanislaw Gruszka) [1256419]
-- [wireless] cfg80211: ignore netif running state when changing iftype (Stanislaw Gruszka) [1256419]
-- [netdrv] iwlwifi: mvm: fix ROC reference accounting (Stanislaw Gruszka) [1256419]
-- [net] mac80211: fix the beacon csa counter for mesh and ibss (Stanislaw Gruszka) [1256419]
-- [netdrv] rtlwifi: Remove the clear interrupt routine from all drivers (Stanislaw Gruszka) [1256419]
-- [netdrv] ath9k_htc: memory corruption calling set_bit() (Stanislaw Gruszka) [1256419]
-- [netdrv] ath9k: fix DMA stop sequence for AR9003+ (Stanislaw Gruszka) [1256419]
-- [net] mac80211: fix locking in update_vlan_tailroom_need_count() (Stanislaw Gruszka) [1256419]
-- [wireless] cfg80211: wext: clear sinfo struct before calling driver (Stanislaw Gruszka) [1256419]
-- [netdrv] ssb: Fix handling of ssb_pmu_get_alp_clock() (Stanislaw Gruszka) [1256419]
-- [infiniband] hfi: Properly set permissions for user device files (Don Dutile) [1255736]
-
-* Fri Sep 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-317.el7]
-- [fs] nfs: Don't attempt to decode missing directory entries (Benjamin Coddington) [1261725]
-- [fs] xfs: flush entire file on dio read/write to cached file (Brian Foster) [1229074]
-- [fs] gfs2: Don't support fallocate on jdata files (Abhijith Das) [1221331]
-- [fs] xfs: checksum log record ext headers based on record size (Brian Foster) [1256593]
-- [md] dm-crypt: constrain crypt device's max_segment_size to PAGE_SIZE (Mike Snitzer) [1252726]
-- [md] dm-thin: disable discard support for thin devices if pool's is disabled (Mike Snitzer) [1260135]
-- [md] dm-cache: small cleanups related to deferred prison cell cleanup (Mike Snitzer) [1250832]
-- [md] dm-cache: fix leaking of deferred bio prison cells (Mike Snitzer) [1250832]
-- [md] dm-cache: fix use after freeing migrations (Mike Snitzer) [1250832]
-- [md] dm-cache: move wake_waker() from free_migrations() to where it is needed (Mike Snitzer) [1250832]
-- [md] raid1: count resync requests in nr_pending (Jes Sorensen) [1261114]
-- [md] raid1: update next_resync under resync_lock (Jes Sorensen) [1261114]
-- [md] raid1: Don't use next_resync to determine how far resync has progressed (Jes Sorensen) [1261114]
-- [md] raid1: make sure resync waits for conflicting writes to complete (Jes Sorensen) [1261114]
-- [md] raid1: clean up request counts properly in close_sync() (Jes Sorensen) [1261114]
-- [md] raid1: be more cautious where we read-balance during resync (Jes Sorensen) [1261114]
-- [md] raid1: intialise start_next_window for READ case to avoid hang (Jes Sorensen) [1261114]
-- [md] raid0: update queue parameter in a safer location (Jes Sorensen) [1247854]
-- [x86] perf/uncore: Use Sandy Bridge client PMU on Haswell/Broadwell (Jiri Olsa) [1250642]
-- [x86] perf/uncore: Add support for ARB uncore PMU on Sandy/IvyBridge (Jiri Olsa) [1250642]
-- [x86] perf/uncore: Add Broadwell-U uncore IMC PMU support (Jiri Olsa) [1250642]
-- [x86] perf: Disable fixup_ht_bug function (Jiri Olsa) [1246669]
-- [base] pm: add Red Hat dev_pm_info_rh struct (Prarit Bhargava) [1261130]
-- [base] device: allocate/free Red Hat only struct device_rh (Prarit Bhargava) [1261130]
-- [idle] intel_idle: Add CPU model 54 (Atom N2000 series) (Prarit Bhargava) [1230936]
-- [block] blk-mq: don't lose requests if a stopped queue restarts (Jeff Moyer) [1251417]
-- [block] blk-mq: fix FUA request hang (Jeff Moyer) [1251417]
-- [block] blk-mq: fix CPU hotplug handling (Jeff Moyer) [1251417]
-- [block] blk-mq: fix race between timeout and CPU hotplug (Jeff Moyer) [1251417]
-- [block] blk-mq: initialize 'struct request' and associated data to zero (Jeff Moyer) [1251417]
-- [netdrv] be2net: Revert "make the RX_FILTER command asynchronous" commit (Ivan Vecera) [1253268]
-- [netdrv] mlx4_core: Capping number of requested MSIXs to MAX_MSIX (Amir Vadai) [1260507]
-- [scripts] modpost: Keep hfi1 driver in staging from tainting kernel (Don Dutile) [1257994]
-- [powerpc] kdump: Increase the amount of memory reserved for crashkernel=auto (Dave Young) [1222059]
-
-* Tue Sep 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-316.el7]
-- [fs] Set UID in sess_auth_rawntlmssp_authenticate too (Sachin Prabhu) [1258490]
-- [drm] radeon: fix hotplug race at startup (Dave Airlie) [1262218]
-- [net] fix NULL pointer dereference in skb_copy_and_csum_datagram_iovec when using NFS (Sabrina Dubroca) [1258907]
-- [net] ipv4: suppress NETDEV_UP notification on address lifetime update (Aaron Conole) [1250705]
-- [lib] radix-tree: handle allocation failure in radix_tree_insert() (Seth Jennings) [1260613]
-- [x86] efi: Use all 64 bit of efi_memmap in setup_e820() (Larry Woodman) [1248452]
-- [x86] Fix misapplied XSTATE_LAZY patch (Prarit Bhargava) [1258840]
-- [netdrv] r8169: Fix sleeping function called during get_stats64 (Corinna Vinschen) [1261973]
-- [netdrv] ixgbe: Remove bimodal SR-IOV disabling (Alex Williamson) [1243821]
-- [powerpc] kvm: book3s-hv: Exit on H_DOORBELL if HOST_IPI is set (David Gibson) [1259571]
-- [powerpc] kvm: book3s-hv: Fix race in starting secondary threads (David Gibson) [1259571]
-- [powerpc] powernv/pci-ioda: fix kdump with non-power-of-2 crashkernel= (Gustavo Duarte) [1258491]
-- [powerpc] powernv/pci-ioda: fix 32-bit TCE table init in kdump kernel (Gustavo Duarte) [1258491]
-
-* Tue Sep 08 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-315.el7]
-- [unisys] Add modalias files to visorbus devices (Erik Arfvidson) [1259509]
-- [net] tcp: use dctcp if enabled on the route to the initiator (Florian Westphal) [1254839]
-- [net] fib, fib6: reject invalid feature bits (Florian Westphal) [1254839]
-- [net] fib6: reduce identation in ip6_convert_metrics (Florian Westphal) [1254839]
-- [net] fib: move metrics parsing to a helper (Florian Westphal) [1254839]
-- [net] tunnels: enable module autoloading (Phil Sutter) [1258861]
-- [net] ip6_gre: release cached dst on tunnel removal (Sabrina Dubroca) [1210346]
-- [scsi] qla2xxx: Fix backporting error in "Fix virtual port configuration, when switch port is disabled/enabled" (Chad Dupuis) [1240912]
-- [scsi] megaraid_sas: Code refactor for use of requestorId (Tomas Henzl) [1257604]
-- [scsi] megaraid_sas: Fix validHandles check in io path (Tomas Henzl) [1257604]
-- [scsi] megaraid_sas: Chip reset if driver fail to bring ioc ready (Tomas Henzl) [1257604]
-- [scsi] megaraid_sas: init tasklet earlier (Tomas Henzl) [1252127]
-- [misc] enclosure: handle non-unique element descriptors (Jose Castillo) [1188248]
-- [edac] ie31200_edac: Allocate mci and map mchbar first (Seth Jennings) [1241708]
-- [edac] ie31200_edac: Introduce the driver (Seth Jennings) [1241708]
-- [kernel] readq/writeq: Add explicit lo_hi_[read|write]_q and hi_lo_[read|write]_q (Seth Jennings) [1241708]
-- [infiniband] mlx4: Fix use of flow-counters for process_mad (Amir Vadai) [1251740]
-- [netdrv] mlx4_core: Use sink counter for the VF default as fallback (Amir Vadai) [1251740]
-- [netdrv] i40e: Set defport behavior for the Main VSI when in promiscuous mode (Stefan Assmann) [1190049 1226826]
-- [netdrv] i40e: clean up error status messages (Stefan Assmann) [1190049 1226826]
-- [pci] Add ACS quirks for Intel I219-LM/V (Alex Williamson) [1252128]
-- [ipc] sem: fix use after free on IPC_RMID after a task using same semaphore set exits ("Herton R. Krzesinski") [1254322]
-- [x86] mce: Do not panic when single core has reached a timeout (Prarit Bhargava) [1195534]
-- [x86] fpu: Fix double-increment in setup_xstate_features() (Herbert Xu) [1232494]
-- [x86] fpu/xstate: Don't assume the first zero xfeatures zero bit means the end (Herbert Xu) [1232494]
-- [fs] cifs: Terminate cifs_smb_version_tokens with NULL (Sachin Prabhu) [1247446]
-- [mm] numa: disable change protection for vma(VM_HUGETLB) (Larry Woodman) [1251007]
-- [kenrel] trace: Check permission only for parent tracepoint event (Jiri Olsa) [1253487]
-
-* Thu Sep 03 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-314.el7]
-- [drm] nouveau/pmu/gk104: implement a hackish workaround for a hw bug (Rob Clark) [1249805]
-- [drm] nouveau/disp/dp: gm1xx appears to have same dp lane ordering as gm2xx (Rob Clark) [1249805]
-- [drm] nouveau/disp/dp: fix some tx_pu mishandling (Rob Clark) [1249805]
-- [drm] nouveau/bios/dp: use alternate set of drvctl values where necessary (Rob Clark) [1249805]
-- [drm] nouveau/bios/dcb: accept "maxwell" lane count values for dcb 4.0 (Rob Clark) [1249805]
-- [drm] dp/mst: dump branch OUI in debugfs (v2) (Rob Clark) [1249805]
-- [drm] dp-mst: Remove debug WARN_ON (Rob Clark) [1249805]
-- [drm] radeon: Don't link train DisplayPort on HPD until we get the dpcd (Rob Clark) [1249805]
-- [drm] dp/mst: Remove port after removing connector (Rob Clark) [1249805]
-- [drm] nouveau/drm/nv04-nv40/instmem: protect access to priv->heap by mutex (Rob Clark) [1249805]
-- [drm] nouveau: hold mutex when calling nouveau_abi16_fini() (Rob Clark) [1249805]
-- [drm] nouveau/kms/nv50-: guard against enabling cursor on disabled heads (Rob Clark) [1249805]
-- [drm] nouveau/fbcon/nv11-: correctly account for ring space usage (Rob Clark) [1249805]
-- [drm] Stop resetting connector state to unknown (Rob Clark) [1249805]
-- [drm] Provide compat ioctl for addfb2.1 (Rob Clark) [1249805]
-- [drm] add a check for x/y in drm_mode_setcrtc (Rob Clark) [1249805]
-- [drm] radeon/ci: silence a harmless PCC warning (Rob Clark) [1249805]
-- [drm] radeon: fix user ptr race condition (Rob Clark) [1249805]
-- [drm] radeon: add a dpm quirk for Sapphire Radeon R9 270X 2GB GDDR5 (Rob Clark) [1249805]
-- [drm] radeon: Don't flush the GART TLB if rdev->gart.ptr == NULL (Rob Clark) [1249805]
-- [drm] radeon: unpin cursor BOs on suspend and pin them again on resume (v2) (Rob Clark) [1249805]
-- [drm] radeon: Clean up reference counting and pinning of the cursor BOs (Rob Clark) [1249805]
-- [drm] radeon: Handle irqs only based on irq ring, not irq status regs (Rob Clark) [1249805]
-- [drm] radeon: fix HDP flushing (Rob Clark) [1249805]
-- [drm] radeon: only check the sink type on DP connectors (Rob Clark) [1249805]
-- [drm] revert "drm/radeon: dont switch vt on suspend" (Rob Clark) [1249805]
-- [drm] radeon: SDMA fix hibernation (CI GPU family) (Rob Clark) [1249805]
-- [drm] radeon: compute ring fix hibernation (CI GPU family) v2 (Rob Clark) [1249805]
-- [drm] i915: Use two 32bit reads for select 64bit REG_READ ioctls (Rob Clark) [1249805]
-- [drm] i915: Forward all core DRM ioctls to core compat handling (Rob Clark) [1249805]
-- [drm] i915: Snapshot seqno of most recently submitted request (Rob Clark) [1249805]
-- [drm] i915: fix backlight after resume on 855gm (Rob Clark) [1249805]
-- [drm] i915: Fix IPS related flicker (Rob Clark) [1249805]
-- [drm] i915/ppgtt: Break loop in gen8_ppgtt_clear_range failure path (Rob Clark) [1249805]
-- [drm] radeon: clean up radeon_audio_enable (Rob Clark) [1249805]
-- [drm] radeon: take the mode_config mutex when dealing with hpds (v2) (Rob Clark) [1249805]
-- [drm] atomic: fix out of bounds read in for_each_*_in_state helpers (Rob Clark) [1249805]
-- [drm] bridge: ptn3460: Include linux/gpio/consumer.h (Rob Clark) [1249805]
-- [drm] qxl: Do not leak memory if qxl_release_list_add fails (Rob Clark) [1249805]
-- [drm] qxl: Do not cause spice-server to clean our objects (Rob Clark) [1249805]
-- [drm] dp/mst: make sure mst_primary mstb is valid in work function (Rob Clark) [1249805]
-- [drm] dp/mst: take lock around looking up the branch device on hpd irq (Rob Clark) [1249805]
-- [drm] dp/mst: close deadlock in connector destruction (Rob Clark) [1249805]
-- [drm] radeon: don't probe MST on hw we don't support it on (Rob Clark) [1249805]
-- [drm] radeon: Add RADEON_INFO_VA_UNMAP_WORKING query (Rob Clark) [1249805]
-- [drm] mgag200: Reject non-character-cell-aligned mode widths (Rob Clark) [1249805]
-- [drm] revert "drm/i915: Don't skip request retirement if the active list is empty" (Rob Clark) [1249805]
-- [drm] i915: Always reset vma->ggtt_view.pages cache on unbinding (Rob Clark) [1249805]
-- [drm] radeon: Make sure radeon_vm_bo_set_addr always unreserves the BO (Rob Clark) [1249805]
-- [drm] revert "drm/radeon: adjust pll when audio is not enabled" (Rob Clark) [1249805]
-- [drm] revert "drm/radeon: don't share plls if monitors differ in audio support" (Rob Clark) [1249805]
-- [drm] radeon: fix freeze for laptop with Turks/Thames GPU (Rob Clark) [1249805]
-- [mm] hugetlb: fix race in region tracking (Aristeu Rozanski) [1252129]
-- [mm] hugetlb: improve, cleanup resv_map parameters (Aristeu Rozanski) [1252129]
-- [mm] hugetlb: unify region structure handling (Aristeu Rozanski) [1252129]
-- [hv] mshyperv: fix recognition of Hyper-V guest crash MSR's (Vitaly Kuznetsov) [1235998]
-- [hv] vmbus: prefer 'die' notification chain to 'panic' (Vitaly Kuznetsov) [1235998]
-- [usb] Delete XHCI command timer if necessary (Dave Young) [1242851]
-- [x86] perf: cqm: Do not access cpu_data() from CPU_UP_PREPARE handler (Yasuaki Ishimatsu) [1257502]
-- [x86] kprobes: Fix conflict between jprobes and function graph tracing (Jiri Olsa) [1242825]
-- [netdrv] sfc: only use vadaptor stats if firmware is capable (Jarod Wilson) [1248331]
-- [netdrv] r8169: Add software counter for multicast packages (Corinna Vinschen) [1253102]
-- [powerpc] powernv: Invoke opal_cec_reboot2() on unrecoverable HMI (Gustavo Duarte) [1253477]
-- [powerpc] powernv: Invoke opal_cec_reboot2() on unrecoverable machine check errors (Gustavo Duarte) [1253477]
-- [powerpc] powernv: Pull all HMI events before panic (Gustavo Duarte) [1253477]
-- [powerpc] powernv: display reason for Malfunction Alert HMI (Gustavo Duarte) [1253477]
-- [powerpc] powernv: Add poweroff (EPOW, DPO) events support for PowerNV platform (Gustavo Duarte) [1257315]
-- [powerpc] pseries: Cleanup on pci_dn_reconfig_notifier() (Laurent Vivier) [1254200]
-- [powerpc] pseries: Fix corrupted pdn list (Laurent Vivier) [1254200]
-- [powercap] rapl: change domain detection message (Prarit Bhargava) [1238347]
-- [powercap] rapl: further relax energy counter checks (Prarit Bhargava) [1238347]
-
-* Mon Aug 31 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-313.el7]
-- [fs] locks: remove i_have_this_lease check from __break_lease (Steve Dickson) [1258337]
-- [fs] locks: set fl_owner for leases to filp instead of current->files (Steve Dickson) [1258337]
-- [fs] locks: fix NULL-deref in generic_delete_lease (Steve Dickson) [1258337]
-- [fs] ext4: fix potential use after free in __ext4_journal_stop (Lukas Czerner) [1210588]
-- [fs] ext4: fix NULL pointer dereference when journal restart fails (Lukas Czerner) [1210588]
-- [fs] cifs: fix use-after-free bug in find_writable_file (Sachin Prabhu) [1186260]
-- [fs] ext4: check for zero length extent explicitly (Eryu Guan) [1221905]
-- [fs] ioctx_alloc(): fix vma (and file) leak on failure (Jarod Wilson) [1209536]
-- [fs] ext4: reject journal options for ext2 mounts (Carlos Maiolino) [839466]
-- [fs] fanotify: fix -EOVERFLOW with large files on 64-bit (Carlos Maiolino) [981181]
-- [fs] xfs: close xc_cil list_empty() races with cil commit sequence (Brian Foster) [1028505]
-- [fs] xfs: fix quota block reservation leak when tp allocates and frees blocks (Brian Foster) [1068915]
-- [fs] xfs: always log the inode on unwritten extent conversion (Brian Foster) [1053384]
-- [fs] xfs: direct IO EOF zeroing needs to drain AIO (Brian Foster) [1213370]
-- [fs] xfs: DIO write completion size updates race (Brian Foster) [1213370]
-- [fs] nfsv4.2: handle NFS-specific llseek errors ("J. Bruce Fields") [1079385]
-- [fs] nfsd4: disallow SEEK with special stateids ("J. Bruce Fields") [1079385]
-- [fs] nfsd4: disallow ALLOCATE with special stateids ("J. Bruce Fields") [1079385]
-- [fs] nfs: Reduce time spent holding the i_mutex during fallocate() ("J. Bruce Fields") [1079385]
-- [fs] nfs: Don't zap caches on fallocate() ("J. Bruce Fields") [1079385]
-- [fs] nfs: Add DEALLOCATE support ("J. Bruce Fields") [1079385]
-- [fs] nfs: Add ALLOCATE support ("J. Bruce Fields") [1079385]
-- [fs] nfs: Use nfs_server_capable() for checknig NFS_CAP_SEEK ("J. Bruce Fields") [1079385]
-- [fs] nfsd: correctly define v4.2 support attributes ("J. Bruce Fields") [1079385]
-- [fs] nfsd: Add DEALLOCATE support ("J. Bruce Fields") [1079385]
-- [fs] nfsd: Add ALLOCATE support (Steve Dickson) [1079385]
-- [fs] vfs: Rename do_fallocate() to vfs_fallocate() ("J. Bruce Fields") [1079385]
-- [fs] nfs: Implement SEEK ("J. Bruce Fields") [1079385]
-- [fs] nfsd: Implement SEEK (Steve Dickson) [1079385]
-- [fs] nfsd: Add generic v4.2 infrastructure ("J. Bruce Fields") [1079385]
-- [fs] vfs: export lseek_execute() to modules ("J. Bruce Fields") [1079385]
-- [fs] lseek_execute() doesn't need an inode passed to it ("J. Bruce Fields") [1079385]
-- [fs] flexfilelayout: Mark the Flexfile layout driver as a tech preview (Steve Dickson) [1246230]
-- [fs] blocklayout: Mark the NFSv4 Block Layout Driver layout driver as a tech preview (Steve Dickson) [1246237]
-- [fs] nfs4layouts: Remove unnecessary BUG_ON in nfsd4_layout_setlease() (Steve Dickson) [1195496]
-- [fs] nfsd: restore trace event lost in mismerge (Steve Dickson) [1195496]
-- [fs] nfsd: don't recursively call nfsd4_cb_layout_fail (Steve Dickson) [1195496]
-- [fs] nfsd/blocklayout: pretend we can send deviceid notifications (Steve Dickson) [1195496]
-- [fs] nfsd: add NFSEXP_PNFS to the exflags array (Steve Dickson) [1195496]
-- [fs] nfsd: require an explicit option to enable pNFS (Steve Dickson) [1195496]
-- [fs] nfsd: pNFS block layout driver (Steve Dickson) [1195496]
-- [fs] nfsd: add trace events (Steve Dickson) [1195496]
-- [fs] nfsd: update documentation for pNFS support (Steve Dickson) [1195496]
-- [fs] nfsd: implement pNFS layout recalls (Steve Dickson) [1195496]
-- [fs] nfsd: implement pNFS operations (Steve Dickson) [1195496]
-- [fs] nfsd: factor out a helper to decode nfstime4 values (Steve Dickson) [1195496]
-- [fs] nfsd: make find_any_file available outside nfs4state.c (Steve Dickson) [1195496]
-- [fs] nfsd: make find/get/put file available outside nfs4state.c (Steve Dickson) [1195496]
-- [fs] nfsd: make lookup/alloc/unhash_stid available outside nfs4state.c (Steve Dickson) [1195496]
-- [fs] nfsd: add fh_fsid_match helper (Steve Dickson) [1195496]
-- [fs] nfsd: move nfsd_fh_match to nfsfh.h (Steve Dickson) [1195496]
-- [fs] nfs: add LAYOUT_TYPE_MAX enum value (Steve Dickson) [1195496]
-- [fs] exportfs: add methods for block layout exports (Steve Dickson) [1195496]
-- [fs] fs: track fl_owner for leases (Steve Dickson) [1195496]
-- [fs] locks: plumb a "priv" pointer into the setlease routines (Steve Dickson) [1195496]
-- [fs] locks: generic_delete_lease doesn't need a file_lock at all (Steve Dickson) [1195496]
-- [fs] locks: add some tracepoints in the lease handling code (Steve Dickson) [1195496]
-- [fs] fs: add FL_LAYOUT lease type (Steve Dickson) [1195496]
-- [fs] locks: close potential race between setlease and open (Steve Dickson) [1195496]
-- [fs] nfs: Fetch MOUNTED_ON_FILEID when updating an inode (Steve Dickson) [1225090]
-- [fs] nfsv3: Use the readdir fileid as the mounted-on-fileid (Steve Dickson) [1225090]
-- [fs] nfs: Fix use of nfs_attr_use_mounted_on_fileid() (Steve Dickson) [1225090]
-- [x86] kernel: microcode, amd, avoid allocating with vmalloc & GFP_KERNEL when IRQs are disabled (Prarit Bhargava) [1080951]
-
-* Fri Aug 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-312.el7]
-- [target] iscsi: Fix np_ip bracket issue by removing np_ip (Andy Grover) [1249107]
-- [scsi] libiscsi: Fix host busy blocking during connection teardown (Chris Leech) [1253032]
-- [md] raid1: extend spinlock to protect raid1_end_read_request against inconsistencies (Jes Sorensen) [1255758]
-- [md] raid1: fix test for 'was read error from last working device' (Jes Sorensen) [1255758]
-- [net] pktgen: fix race between pktgen_thread_worker() and kthread_stop() (Oleg Nesterov) [1054125]
-- [net] vxlan: re-ignore EADDRINUSE from igmp_join (Marcelo Leitner) [1256976]
-- [net] netfilter: nf_ct_sctp: minimal multihoming support (Marcelo Leitner) [1256795]
-- [net] Fix skb_set_peeked use-after-free bug (Sabrina Dubroca) [1243993]
-- [net] Fix skb csum races when peeking (Sabrina Dubroca) [1243993]
-- [net] Clone skb before setting peeked flag (Sabrina Dubroca) [1243993]
-- [net] sock: fix SO_MAX_PACING_RATE (Sabrina Dubroca) [1235100]
-- [net] netfilter: conntrack: don't reject clashing expectation if its in another ct zone (Florian Westphal) [1253847]
-- [net] flowcache: Fix kernel panic in flow_cache_flush_task (Phil Sutter) [1243591]
-- [net] flowcache: Fix resource leaks on namespace exit (Phil Sutter) [1243591]
-- [net] xfrm: Fix refcount imbalance in xfrm_lookup (Phil Sutter) [1243591]
-- [net] flowcache: restore a single flow_cache kmem_cache (Phil Sutter) [1243591]
-- [net] xfrm: release dst_orig in case of error in xfrm_lookup() (Phil Sutter) [1243591]
-- [net] xfrm: remove irrelevant comment in xfrm_input(). (Phil Sutter) [1243591]
-- [net] xfrm: Generate queueing routes only from route lookup functions (Phil Sutter) [1243591]
-- [net] xfrm: Remove caching of xfrm_policy_sk_bundles (Phil Sutter) [1243591]
-- [net] flowcache: Make flow cache name space aware (Phil Sutter) [1243591]
-- [net] xfrm: Fix null pointer dereference when decoding sessions (Phil Sutter) [1243591]
-- [net] ipv6: update flowi6_oif in ip6_dst_lookup_flow if not set (Phil Sutter) [1243591]
-- [net] Remove FLOWI_FLAG_CAN_SLEEP (Phil Sutter) [1243591]
-- [net] xfrm: Remove ancient sleeping when the SA is in acquire state (Phil Sutter) [1243591]
-- [net] xfrm: Fix NULL pointer dereference on sub policy usage (Phil Sutter) [1243591]
-- [net] xfrm: Namespacify xfrm state/policy locks (Phil Sutter) [1243591]
-- [net] xfrm: Using the right namespace to migrate key info (Phil Sutter) [1243591]
-- [net] xfrm: Remove extern from function prototypes (Phil Sutter) [1243591]
-- [net] xfrm: constify mark argument of xfrm_find_acq() (Phil Sutter) [1243591]
-- [net] ip: Remove extern from function prototypes (Phil Sutter) [1243591]
-- [net] ipv6: prevent fib6_run_gc() contention (Phil Sutter) [1243591]
-- [net] ipv4: remove fib_update_nh_saddrs() declaration (Phil Sutter) [1243591]
-- [net] xfrm: Generate blackhole routes only from route lookup functions (Phil Sutter) [1243591]
-- [net] xfrm: check for a vaild skb in xfrm_policy_queue_process (Phil Sutter) [1243591]
-- [net] xfrm: Add refcount handling to queued policies (Phil Sutter) [1243591]
-- [net] xfrm: Decode sessions with output interface (Phil Sutter) [1243591]
-- [drm] qxl: rewrite framebuffer support (Gerd Hoffmann) [1072350]
-- [x86] hyperv: Mark the Hyper-V TSC as unstable (Vitaly Kuznetsov) [1235523]
-
-* Fri Aug 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-311.el7]
-- [hv] vmbus: don't send CHANNELMSG_UNLOAD on pre-Win2012R2 hosts (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: add special crash handler (Vitaly Kuznetsov) [1248352]
-- [hv] don't do hypercalls when hypercall_page is NULL (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: add special kexec handler (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: remove hv_synic_free_cpu() call from hv_synic_cleanup() (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: kill tasklets on module unload (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: Implement the protocol for tearing down vmbus state (Vitaly Kuznetsov) [1248352]
-- [hv] vmbus: Get rid of some unused definitions (Vitaly Kuznetsov) [1248352]
-- [hid] usbhid: Fix the check for HID_RESET_PENDING in hid_io_error (Don Zickus) [1167266]
-- [x86] documentation: add kernel-parameters.txt entry for dis_ucode_ldr (Prarit Bhargava) [1256913]
-- [x86] microcode: Add a disable chicken bit (Prarit Bhargava) [1256913]
-- [x86] boot: Carve out early cmdline parsing function (Prarit Bhargava) [1256913]
-- [block] mtip32x: fix regression introduced by blk-mq per-hctx flush (Jeff Moyer) [1228812]
-- [hwmon] coretemp: Atom CPUs don't support TjMax; no warning needed (Prarit Bhargava) [1253935]
-- [crypto] nx - Removing CTR mode from NX driver (Herbert Xu) [1241751]
-- [unisys] add visorhid driver (Erik Arfvidson) [1232017]
-- [unisys] add MODULE_DEVICE_TABLE and temporary MODULE_ALIAS lines to visornic (Erik Arfvidson) [1232014]
-- [unisys] Add s-Par visorhba (Erik Arfvidson) [1232014]
-- [netdrv] r8169: Add values missing in @get_stats64 from HW counters (Corinna Vinschen) [1253102]
-- [netdrv] enic: fix work done in tx napi_poll (Stefan Assmann) [1247856]
-- [netdrv] enic: update desc properly in rx_copybreak (Stefan Assmann) [1247856]
-- [netdrv] enic: handle error condition properly in enic_rq_indicate_buf (Stefan Assmann) [1247856]
-- [netdrv] enic: implement rx_copybreak (Stefan Assmann) [1247856]
-- [thermal] powerclamp: support Knights Landing (Steve Best) [1158597]
-- [thermal] powerclamp: add cpu id for Skylake u/y (Steve Best) [1179991]
-- [thermal] powerclamp: add cpu id for skylake h/s (Steve Best) [1179991]
-- [thermal] powerclamp: Remove tick_nohz_idle abuse (Steve Best) [1255864]
-- [thermal] powerclamp: Clean up preempt_enable_no_resched() abuse (Steve Best) [1255864]
-
-* Thu Aug 27 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-310.el7]
-- [infiniband] Move hfi1 to staging (David Sowa) [1173291]
-- [infiniband] core: Add opa driver to kbuild (David Sowa) [1173291]
-- [infiniband] revert "ib/hfi1: Switch to topology_sibling_mask()" (David Sowa) [1173291]
-- [infiniband] revert "ib/hfi1: Switch to the ->write_iter() API" (David Sowa) [1173291]
-- [infiniband] hfi1: Remove inline from trace functions (David Sowa) [1173291]
-- [infiniband] hfi1: Add Infiniband dependency to Kconfig (David Sowa) [1173291]
-- [infiniband] hfi1: add driver make/config files (David Sowa) [1173291]
-- [infiniband] hfi1: add multicast routines (David Sowa) [1173291]
-- [infiniband] hfi1: add general verbs handling (David Sowa) [1173291]
-- [infiniband] hfi1: add PSM sdma hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add low level page locking (David Sowa) [1173291]
-- [infiniband] hfi1: add UD QP handling (David Sowa) [1173291]
-- [infiniband] hfi1: add UC QP handling (David Sowa) [1173291]
-- [infiniband] hfi1: add QSFP twsi routines (David Sowa) [1173291]
-- [infiniband] hfi1: add tracepoint debug routines (David Sowa) [1173291]
-- [infiniband] hfi1: add sysfs routines and documentation (David Sowa) [1173291]
-- [infiniband] hfi1: add SRQ handling (David Sowa) [1173291]
-- [infiniband] hfi1: add sdma header file (David Sowa) [1173291]
-- [infiniband] hfi1: add sdma routines (David Sowa) [1173291]
-- [infiniband] hfi1: add common routines for RC/UC (David Sowa) [1173291]
-- [infiniband] hfi1: add RC QP handling (David Sowa) [1173291]
-- [infiniband] hfi1: add qsfp handling (David Sowa) [1173291]
-- [infiniband] hfi1: add qp handling (David Sowa) [1173291]
-- [infiniband] hfi1: add platform config definitions (David Sowa) [1173291]
-- [infiniband] hfi1: add pio handling (David Sowa) [1173291]
-- [infiniband] hfi1: add pcie routines (David Sowa) [1173291]
-- [infiniband] hfi1: add misc OPA defines (David Sowa) [1173291]
-- [infiniband] hfi1: add memory region handling (David Sowa) [1173291]
-- [infiniband] hfi1: add user/kernel memory sharing hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add local mad header (David Sowa) [1173291]
-- [infiniband] hfi1: add OPA mad handling part2 (David Sowa) [1173291]
-- [infiniband] hfi1: add OPA mad handling part1 (David Sowa) [1173291]
-- [infiniband] hfi1: add rkey/lkey validation (David Sowa) [1173291]
-- [infiniband] hfi1: add progress delay/restart hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add interrupt hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add module init hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add general hfi header file (David Sowa) [1173291]
-- [infiniband] hfi1: add firmware hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add PSM driver control/data path (David Sowa) [1173291]
-- [infiniband] hfi1: add eeprom hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add low level receive functions (David Sowa) [1173291]
-- [infiniband] hfi1: add dma operation hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add diagnostic hooks (David Sowa) [1173291]
-- [infiniband] hfi1: add char device instantiation code (David Sowa) [1173291]
-- [infiniband] hfi1: add debugfs handling (David Sowa) [1173291]
-- [infiniband] hfi1: add completion queue processing (David Sowa) [1173291]
-- [infiniband] hfi1: add common header file definitions (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific headers (David Sowa) [1173291]
-- [infiniband] hfi1: add chip register definitions (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific support part4 (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific support part3 (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific support part2 (David Sowa) [1173291]
-- [infiniband] hfi1: add chip specific support part1 (David Sowa) [1173291]
-- [infiniband] core: Add header definitions (David Sowa) [1173291]
-- [infiniband] core: Add CNP opcode enumeration (David Sowa) [1173291]
-
-* Mon Aug 24 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-309.el7]
-- [netdrv] ixgbevf: Driver version update to indicate RHEL 7.2 (John Greene) [1173787]
-- [netdrv] ixgbevf: add support for reporting RSS key and hash table for X550 (John Greene) [1173787]
-- [netdrv] ixgbevf: Set Rx hash type for ingress packets (John Greene) [1173787]
-- [netdrv] ixgbevf: fold ixgbevf_pull_tail into ixgbevf_add_rx_frag (John Greene) [1173787]
-- [netdrv] ixgbevf: Use dev_kfree_skb_any in xmit path, not dev_kfree_skb (John Greene) [1173787]
-- [netdrv] ixgbevf: Add the appropriate ethtool ops to query RSS indirection table and key (John Greene) [1173787]
-- [netdrv] ixgbevf: Add RSS Key query code (John Greene) [1173787]
-- [netdrv] ixgbevf: Add a RETA query code (John Greene) [1173787]
-- [netdrv] ixgbevf: Use ether_addr_copy() instead of memcpy() (John Greene) [1173787]
-- [netdrv] ixgbevf: Fix code comments and whitespace (John Greene) [1173787]
-- [netdrv] ixgbevf: codespell comment spelling fixes (John Greene) [1173787]
-- [netdrv] ixgbevf: combine all of the tasks into a single service task (John Greene) [1173787]
-- [netdrv] ixgbevf: rewrite watchdog task to function similar to igbvf (John Greene) [1173787]
-- [netdrv] ixgbevf: Add code to check for Tx hang (John Greene) [1173787]
-- [netdrv] ixgbevf: Fix ordering of shutdown to correctly disable Rx and Tx (John Greene) [1173787]
-- [netdrv] ixgbevf: set vlan_features in a single write instead of several ORs (John Greene) [1173787]
-- [netdrv] ixgbevf: add RSS support for X550 (John Greene) [1173787]
-- [netdrv] ixgbevf: enable multiple queue support (John Greene) [1173787]
-- [netdrv] ixgbevf: Fix checksum error when using stacked vlan (John Greene) [1173787]
-- [netdrv] ixgbevf: Use eth_skb_pad and skb_put_padto helpers (John Greene) [1173787]
-- [netdrv] ixgbevf: fix possible crashes in probe and remove (John Greene) [1173787]
-- [netdrv] ixgbevf: add support for X550 VFs (John Greene) [1173787 1187248]
-- [netdrv] ixgbevf: add netpoll support (John Greene) [1173787]
-- [netdrv] ixgbevf: compare total_rx_packets and budget in ixgbevf_clean_rx_irq (John Greene) [1173787]
-- [netdrv] ixgbevf: Change receive model to use double buffered page based receives (John Greene) [1173787]
-- [netdrv] ixgbevf: Update Rx next to clean in real time (John Greene) [1173787]
-- [netdrv] ixgbevf: reorder main loop in ixgbe_clean_rx_irq to allow for do/while/continue (John Greene) [1173787]
-- [netdrv] ixgbevf: Cleanup variable usage, improve stack performance (John Greene) [1173787]
-- [netdrv] ixgbevf: Combine the logic for post Rx processing into single function (John Greene) [1173787]
-- [netdrv] ixgbevf: Test Rx status bits directly out of the descriptor (John Greene) [1173787]
-- [netdrv] ixgbevf: Update ixgbevf_alloc_rx_buffers to handle clearing of status bits (John Greene) [1173787]
-- [netdrv] ixgbevf: remove useless bd_number from struct ixgbevf_adapter (John Greene) [1173787 1187248]
-- [netdrv] ixgbevf: Resolve missing-field-initializers warnings (John Greene) [1173787]
-- [netdrv] ixgbevf: introduce delay for checking VFLINKS on 82599 (John Greene) [1173787]
-- [netdrv] ixgbevf: implement ethtool get/set coalesce (John Greene) [1173787]
-- [netdrv] ixgbe: update driver version to indicate RHEL7.2 (John Greene) [1173786]
-- [netdrv] ixgbe: Don't report flow director filter's status (John Greene) [1173786]
-- [netdrv] ixgbe: Specify Rx hash type WRT Rx desc RSS type (John Greene) [1173786]
-- [netdrv] ixgbe: only report generic filters in get_ts_info (John Greene) [1173786]
-- [netdrv] ixgbe: Remember to write ixfi changes after modifying (John Greene) [1173786]
-- [netdrv] ixgbe: fix X550 default set_phy_power method (John Greene) [1173786]
-- [netdrv] ixgbe: Set lan_id before using I2C (John Greene) [1173786]
-- [netdrv] ixgbe: add link check for X550 copper (John Greene) [1173786]
-- [netdrv] ixgbe: Add support for another X550 device (John Greene) [1173786]
-- [netdrv] ixgbe: fix X550 PHY function pointers (John Greene) [1173786]
-- [netdrv] ixgbe: fix X550 devices init flow (John Greene) [1173786]
-- [netdrv] ixgbe: fix bug in not clearing counters for X550 devices (John Greene) [1173786]
-- [netdrv] ixgbe: fix issue with sfp events with new X550 devices (John Greene) [1173786]
-- [netdrv] ixgbe: add support for interrupts from X550 external PHY (John Greene) [1173786]
-- [netdrv] ixgbe: Add const string for overheat message (John Greene) [1173786]
-- [netdrv] ixgbe: Add reset for X550 device (John Greene) [1173786]
-- [netdrv] ixgbe: add X550 support for external PHY and forced 1G/10G support (John Greene) [1173786]
-- [netdrv] ixgbe: Restore ESDP settings after MAC reset (John Greene) [1173786]
-- [netdrv] ixgbe: Add a PHY power state method (John Greene) [1173786]
-- [netdrv] ixgbe: add define for X557 PHY ID (John Greene) [1173786]
-- [netdrv] ixgbe: add support for WoL and autoneg FC for some X550 devices (John Greene) [1173786]
-- [netdrv] ixgbe: add array of MAC type dependent values (John Greene) [1173786]
-- [netdrv] ixgbe: Use a signed type to hold error codes (John Greene) [1173786]
-- [netdrv] ixgbe: Release semaphore bits in the right order (John Greene) [1173786]
-- [netdrv] ixgbe: Fix IOSF SB access issues (John Greene) [1173786]
-- [netdrv] ixgbe: Add GET_RSS_KEY command to VF-PF channel commands set (John Greene) [1173786]
-- [netdrv] ixgbe: Add a RETA query command to VF-PF channel API (John Greene) [1173786]
-- [netdrv] ixgbe: Add a new netdev op to allow/prevent a VF from querying an RSS info (John Greene) [1173786]
-- [netdrv] ixgbe: Add the appropriate ethtool ops to query RSS indirection table and key (John Greene) [1173786]
-- [netdrv] ixgbe: Refactor the RSS configuration code (John Greene) [1173786]
-- [netdrv] ixgbe: Drop unnecessary call to rcu_barrier (John Greene) [1173786]
-- [netdrv] ixgbe: Remove NETIF_F_HW_VLAN_CTAG_FILTER from hw_features (John Greene) [1173786]
-- [netdrv] ixgbe: adds x550 specific FCoE offloads (John Greene) [1173786]
-- [netdrv] ixgbe: add support for X550 source_address_prunning (John Greene) [1173786]
-- [netdrv] ixgbe: add new bridge mode support function (John Greene) [1173786]
-- [netdrv] ixgbe: Move bridge mode from flag to variable (John Greene) [1173786]
-- [netdrv] ixgbe: use helpers for converting ns to timespec (John Greene) [1173786]
-- [netdrv] ixgbe: Use bool function returns of true/false instead of 1/0 (John Greene) [1173786]
-- [netdrv] ixgbe: Remove IXGBE_FLAG_IN_NETPOLL since it doesn't do anything (John Greene) [1173786]
-- [netdrv] ixgbe: enable relaxed ordering for SPARC (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup make ixgbe_set_ethertype_anti_spoofing_X550 static (John Greene) [1173786]
-- [netdrv] ixgbe: Clean up type inconsistency (John Greene) [1173786]
-- [netdrv] ixgbe: add new wrapper for X550 support (John Greene) [1173786]
-- [netdrv] ixgbe: codespell comment spelling fixes (John Greene) [1173786]
-- [netdrv] ixgbe: Use eth_<foo>_addr instead of memset (John Greene) [1173786]
-- [netdrv] ixgbe: add Tx anti spoofing support (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup redundant default method set_rxpba (John Greene) [1173786]
-- [netdrv] ixgbe: fix setting port VLAN (John Greene) [1173786]
-- [netdrv] ixgbe: allow multiple queues in SRIOV mode (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup sparse errors in new ixgbe_x550.c file (John Greene) [1173786]
-- [netdrv] ixgbe: Fix checksum error when using stacked vlan (John Greene) [1173786]
-- [netdrv] ixgbe: convert to CYCLECOUNTER_MASK macro (John Greene) [1173786]
-- [netdrv] ixgbe: convert to timecounter adjtime (John Greene) [1173786]
-- [netdrv] ixgbe: Use dma_rmb on Rx descriptor reads (John Greene) [1173786]
-- [netdrv] ixgbe: Use napi_alloc_skb (John Greene) [1173786]
-- [netdrv] ixgbe: Use eth_skb_pad and skb_put_padto helpers (John Greene) [1173786]
-- [netdrv] ixgbe: fix crash on rmmod after probe fail (John Greene) [1173786]
-- [netdrv] ixgbe: add support for X550 extended RSS support (John Greene) [1173786]
-- [netdrv] ixgbe: Remove tail write abstraction and add missing barrier (John Greene) [1173786]
-- [netdrv] ixgbe: Clean-up page reuse code (John Greene) [1173786]
-- [netdrv] ixgbe: Check for presence of IFLA_AF_SPEC (John Greene) [1173786]
-- [netdrv] ixgbe: Validate IFLA_BRIDGE_MODE attribute length (John Greene) [1173786]
-- [netdrv] ixgbe: fix use after free adapter->state test in ixgbe_remove/ixgbe_probe (John Greene) [1173786]
-- [netdrv] ixgbe: Correctly disable VLAN filter in promiscuous mode (John Greene) [1173786]
-- [netdrv] ixgbe: use netdev_rss_key_fill() helper (John Greene) [1173786]
-- [netdrv] ixgbe: Replace __skb_alloc_page with dev_alloc_page (John Greene) [1173786]
-- [netdrv] ixgbe: phy: fix uninitialized status in ixgbe_setup_phy_link_tnx (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup move setting PFQDE.HIDE_VLAN to support function (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup ixgbe_ndo_set_vf_vlan (John Greene) [1173786]
-- [netdrv] ixgbe: fix X540 Completion timeout (John Greene) [1173786]
-- [netdrv] ixgbe: fix race when setting advertised speed (John Greene) [1173786]
-- [netdrv] ixgbe: need not repeat init skb with NULL (John Greene) [1173786]
-- [netdrv] ixgbe: check for vfs outside of sriov_num_vfs before dereference (John Greene) [1173786]
-- [netdrv] ixgbe: fix race accessing page->_count (John Greene) [1173786]
-- [netdrv] ixgbe: fix setting of TXDCTL.WTRHESH when ITR is set to 0 and no BQL (John Greene) [1173786]
-- [netdrv] ixgbe: remove wait loop on autoneg for copper devices (John Greene) [1173786]
-- [netdrv] ixgbe: Convert the normal transmit complete path to dev_consume_skb_any() (John Greene) [1173786]
-- [netdrv] ixgbe: remove IXGBE_FLAG_MSI(X)_CAPABLE flags (John Greene) [1173786]
-- [netdrv] ixgbe: add warnings for other disabled features without MSI-X support (John Greene) [1173786]
-- [netdrv] ixgbe: use e_dev_warn instead of netif_printk (John Greene) [1173786]
-- [netdrv] ixgbe: use e_dev_warn instead of e_err for displaying warning (John Greene) [1173786]
-- [netdrv] ixgbe: determine vector count inside ixgbe_acquire_msix_vectors (John Greene) [1173786]
-- [netdrv] ixgbe: move msix_entries allocation into ixgbe_acquire_msix_vectors (John Greene) [1173786]
-- [netdrv] ixgbe: return integer from ixgbe_acquire_msix_vectors (John Greene) [1173786]
-- [netdrv] ixgbe: use e_dev_warn instead of netif_printk (John Greene) [1173786]
-- [netdrv] ixgbe: Do not schedule an uninitialized workqueue entry (John Greene) [1173786]
-- [netdrv] ixgbe: remove useless bd_number from adapter struct (John Greene) [1173786]
-- [netdrv] ixgbe: Refactor busy poll socket code to address multiple issues (John Greene) [1173786]
-- [netdrv] ixgbe: Drop Rx alloc at end of Rx cleanup (John Greene) [1173786]
-- [netdrv] ixgbe: use new eth_get_headlen interface (John Greene) [1173786]
-- [netdrv] ixgbe: Resolve warnings produced in W=2 builds (John Greene) [1173786]
-- [netdrv] ixgbe: add comment noting recalculation of queues (John Greene) [1173786]
-- [netdrv] ixgbe: reset interface on link loss with pending Tx work from the VF (John Greene) [1173786]
-- [netdrv] ixgbe: Cleanup FDB handling code (John Greene) [1173786]
-- [netdrv] ixgbe: Make return values more direct (John Greene) [1173786]
-- [netdrv] ixgbe: Delete a bunch of dead code (John Greene) [1173786]
-- [netdrv] ixgbe: Fix ixgbe_write_mbx error result (John Greene) [1173786]
-- [netdrv] ixgbe: Correct X540 semaphore error (John Greene) [1173786]
-- [netdrv] ixgbe: Fix spurious release of semaphore in EEPROM access REDUX (John Greene) [1173786]
-- [netdrv] ixgbe: Convert some udelays to usleep_range (John Greene) [1173786]
-- [netdrv] ixgbe: don't check minimum link when direct assigned to virtual machine (John Greene) [1173786]
-- [netdrv] ixgbe: fix use of list_for_each in ixgbe_enumerate_functions (John Greene) [1173786]
-- [netdrv] ixgbe: Change some uses of strncpy to strlcpy (John Greene) [1173786]
-- [netdrv] ixgbe: Fix possible null-dereference in error path (John Greene) [1173786]
-- [netdrv] ixgbe: remove unnecessary break after return (John Greene) [1173786]
-- [netdrv] ixgbe: remove unnecessary break after goto (John Greene) [1173786]
-- [netdrv] ixgbe: change PTP NSECS_PER_SEC to IXGBE_PTP_PPS_HALF_SECOND (John Greene) [1173786]
-- [netdrv] ixgbe: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (John Greene) [1173786]
-- [netdrv] ixgbe: remove linux/export.h header from ixgbe_ptp.c (John Greene) [1173786]
-- [netdrv] ixgbe: fix detection of SFP+ capable interfaces (John Greene) [1173786]
-- [netdrv] ixgbe: avoid duplicate code in suspend and stop paths (John Greene) [1173786]
-- [netdrv] ixgbe: separate the PTP suspend and stop actions (John Greene) [1173786]
-- [netdrv] ixgbe: extract PTP clock device from ptp_init (John Greene) [1173786]
-- [netdrv] ixgbe: allow ixgbe_ptp_reset to maintain current hwtstamp config (John Greene) [1173786]
-- [netdrv] ixgbe: extract the hardware setup from the ixgbe_ptp_set_ts_config (John Greene) [1173786]
-- [netdrv] ixgbe: rename ixgbe_ptp_enable to ixgbe_ptp_feature_enable (John Greene) [1173786]
-- [netdrv] ixgbe: fix linking at 100Mbps on copper devices with MNG FW enabled (John Greene) [1173786]
-- [netdrv] ixgbe: remove return statements for void functions (John Greene) [1173786]
-- [netdrv] ixgbe: add /* fallthrough */ comment to case statements (John Greene) [1173786]
-- [netdrv] ixgbe: add space between operands to & (John Greene) [1173786]
-- [netdrv] ixgbe: don't check NULL for debugfs_remove_recursive (John Greene) [1173786]
-- [netdrv] ixgbe: add braces around else block (John Greene) [1173786]
-- [netdrv] ixgbe: fix several concatenated strings to single line (John Greene) [1173786]
-- [netdrv] ixgbe: fix checkpatch style of blank line after declaration (John Greene) [1173786]
-- [netdrv] ixgbe: fix function-like macro, remove semicolon (John Greene) [1173786]
-- [netdrv] ixgbe: clean up checkpatch warnings about CODE_INDENT and LEADING_SPACE (John Greene) [1173786]
-- [netdrv] ixgbe: remove unnecessary duplication of PCIe bandwidth display (John Greene) [1173786]
-- [netdrv] ixgbe: get rid of SET_ETHTOOL_OPS (John Greene) [1173786]
-- [netdrv] ixgbe: improve mac filter handling (John Greene) [1173786]
-- [netdrv] ixgbe: change handling of multicast filters (John Greene) [1173786]
-- [netdrv] ixgbe: remove vlan_filter_disable and enable functions (John Greene) [1173786]
-- [netdrv] ixgbe: Use out-of-line function for register reads (John Greene) [1173786]
-- [netdrv] ixgbe: convert low_water into an array (John Greene) [1173786]
-- [netdrv] ixgbe: remove CIAA/D register reads from bad VF check (John Greene) [1173786 1205903]
-- [netdrv] ixgbe: add helper function for setting RSS key in preparation of X550 (John Greene) [1173786]
-- [netdrv] ixgbe: Mass conversion of smp_mb__*() (John Greene) [1173786]
-- [netdrv] ixgbe: Clear head write-back registers on VF reset (John Greene) [1173786]
-- [netdrv] ixgbe: Force QDE via PFQDE for VFs during reset (John Greene) [1173786]
-- [netdrv] ixgbe: cleanup ixgbe_enumerate_functions (John Greene) [1173786]
-- [netdrv] ixgbe: remove marketing names from busy poll code (John Greene) [1173786]
-- [netdrv] ixgbe: reinit_locked() should be called with rtnl_lock (John Greene) [1173786]
-- [netdrv] ixgbe: fix rx-usecs range checks for BQL (John Greene) [1173786]
-- [netdrv] ixgbe: ethtool DCB registers dump for 82599 and x540 (John Greene) [1173786]
-- [netdrv] ixgbe: fix 32-bit DMA mask handling (John Greene) [1173786]
-- [netdrv] ixgbe: limit setting speed to only one at a time for QSFP modules (John Greene) [1173786]
-- [net] if_link: Add an additional parameter to ifla_vf_info for RSS querying (John Greene) [1173786]
-- [net] rtnetlink: ifla_vf_policy: fix misuses of NLA_BINARY (John Greene) [1173786]
-- [net] core: Add VF link state control policy (John Greene) [1173786]
-- [netdrv] igb: make sure SR-IOV init uses the right number of queues (Stefan Assmann) [1229219]
-- [netdrv] igb: do not re-init SR-IOV during probe (Stefan Assmann) [1229219]
-- [netdrv] be2net: avoid vxlan offloading on multichannel configs (Ivan Vecera) [1232327]
-- [thermal] powerclamp: fix missing newer package c-states (Steve Best) [1255413]
-
-* Fri Aug 21 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-308.el7]
-- [fs] inotify: don't add consecutive overflow events to the queue (Eric Sandeen) [1168465]
-- [md] dm-stats: report precise_timestamps and histogram in @stats_list output (Mike Snitzer) [1254801]
-- [md] dm-stats: add support for request-based DM devices (Mike Snitzer) [1254801]
-- [md] dm-stats: collect and report histogram of IO latencies (Mike Snitzer) [1254801]
-- [md] dm-stats: support precise timestamps (Mike Snitzer) [1254801]
-- [md] dm-stats: fix divide by zero if 'number_of_areas' arg is zero (Mike Snitzer) [1254801]
-- [md] dm-stats: Use kvfree() in dm_kvfree() (Mike Snitzer) [1254801]
-- [net] bridge: mdb: fix double add notification (Xin Long) [1245012]
-- [net] ipt_ulog: do not fail init after creating socket (Thadeu Lima de Souza Cascardo) [1235978]
-- [net] ipv4: off-by-one in continuation handling in /proc/net/route (Alexander Duyck) [1253783]
-- [x86] kernel: Allocate enough low memory when crashkernel=high (Baoquan He) [1123039]
-- [vfio] Fix lockdep issue (Alex Williamson) [1250237]
-- [idle] intel_idle: Skylake Client Support (Steve Best) [1189910]
-- [netdrv] mlx5_core: Set log_uar_page_sz for non 4K page size architecture (Honggang Li) [1248676]
-- [netdrv] igbvf: clear buffer_info->dma after dma_unmap_single() (Stefan Assmann) [1248335]
-- [netdrv] ibmveth: add support for TSO6 (Gustavo Duarte) [1251393]
-
-* Thu Aug 20 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-307.el7]
-- [firmware] dmi_scan: Coding style cleanups (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Trim DMI table length before exporting it (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Rename dmi_table to dmi_decode_table (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Only honor end-of-table for 64-bit tables (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Fix ordering of product_uuid (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Simplified displayed version (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Use direct access to static vars (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Use full dmi version for SMBIOS3 (Jarod Wilson) [853192]
-- [powerpc] mm: Change the swap encoding in pte (Gustavo Duarte) [1217743]
-- [mm] numa: avoid unnecessary TLB flushes when setting NUMA hinting entries (Gustavo Duarte) [1217743]
-- [mm] numa: add paranoid check around pte_protnone_numa (Gustavo Duarte) [1217743]
-- [mm] numa: do not trap faults on the huge zero page (Gustavo Duarte) [1217743]
-- [mm] remove remaining references to NUMA hinting bits and helpers (Gustavo Duarte) [1217743]
-- [mm] numa: Do not mark PTEs pte_numa when splitting huge pages (Gustavo Duarte) [1217743]
-- [mm] convert p[te|md]_mknonnuma and remaining page table manipulations (Gustavo Duarte) [1217743]
-- [powerpc] mm: add paranoid warnings for unexpected DSISR_PROTFAULT (Gustavo Duarte) [1217743]
-- [powerpc] mm: convert p[te|md]_numa users to p[te|md]_protnone_numa (Gustavo Duarte) [1217743]
-- [mm] add p[te|md] protnone helpers for use by NUMA balancing (Gustavo Duarte) [1217743]
-- [mm] numa: do not dereference pmd outside of the lock during NUMA hinting fault (Gustavo Duarte) [1217743]
-- [md] dm-btree-remove: fix bug in remove_one() (Mike Snitzer) [1250905]
-- [md] dm-cache-policy-smq: move 'dm-cache-default' module alias to SMQ (Mike Snitzer) [1253505]
-- [md] dm-btree: add ref counting ops for the leaves of top level btrees (Mike Snitzer) [1253505]
-- [md] dm-thin-metadata: delete btrees when releasing metadata snapshot (Mike Snitzer) [1253505]
-- [x86] kvm: vmx: fix vmwrite to invalid VMCS (Radim Krcmar) [1238320 1251552]
-- [x86] kvm: add missed use_eager_fpu() (Radim Krcmar) [1251552]
-- [iommu] amd: Fix bug in put_pasid_state_wait (Jerome Glisse) [1210495]
-- [iommu] amd: Use wait_event in put_pasid_state_wait (Jerome Glisse) [1210495]
-- [iommu] amd: Fix amd_iommu_free_device() (Jerome Glisse) [1210495]
-- [iommu] amd: use handle_mm_fault directly (Jerome Glisse) [1210495]
-- [iommu] amd: fix accounting of device_state (Jerome Glisse) [1210495]
-- [iommu] amd: use new invalidate_range mmu-notifier (Jerome Glisse) [1210495]
-- [unisys] visornic: Convert to using napi (Erik Arfvidson) [1232018]
-- [unisys] visorchannel: Add peek function (Erik Arfvidson) [1232018]
-- [unisys] visornic - consolidate+simplify xmit watermark checks (Erik Arfvidson) [1232018]
-- [unisys] visornic: enable skb->len error-check, remove DEBUG blocks (Erik Arfvidson) [1232018]
-- [unisys] visornic_resume needs to mirror _serverdown_complete (Erik Arfvidson) [1232018]
-- [unisys] visornic - correctly reset flag prior to send_enbdis() (Erik Arfvidson) [1232018]
-- [unisys] visornic - prevent lock recursion after IO recovery (Erik Arfvidson) [1232018]
-- [unisys] avoid format string parsing (Erik Arfvidson) [1232018]
-- [unisys] visornic - prevent NETDEV WATCHDOG timeouts after IO recovery (Erik Arfvidson) [1232018]
-- [unisys] visornic - check visorchannel_signalinsert/remove failures (Erik Arfvidson) [1232018]
-- [unisys] visornic - ensure proper net locking in tx reset logic (Erik Arfvidson) [1232018]
-- [unisys] Process more than one response per check (Erik Arfvidson) [1232018]
-- [unisys] remove bogus error checking (Erik Arfvidson) [1232018]
-- [unisys] remove visornic_ioctl (Erik Arfvidson) [1232018]
-- [unisys] Remove trans_start (Erik Arfvidson) [1232018]
-- [unisys] Fix improper use of NETDEV_TX_BUSY (Erik Arfvidson) [1232018]
-- [unisys] Remove some extraneous start/stop queue operations (Erik Arfvidson) [1232018]
-- [unisys] Change enable/disable to wait forever (Erik Arfvidson) [1232018]
-- [unisys] Make serverdown synchronous (Erik Arfvidson) [1232018]
-- [unisys] simplify visornic_serverdown_complete (Erik Arfvidson) [1232018]
-- [unisys] Guard against task leakage (Erik Arfvidson) [1232018]
-- [unisys] Clean up kthread usage (Erik Arfvidson) [1232018]
-- [unisys] Linarize skbs (Erik Arfvidson) [1232018]
-- [unisys] BUG halt on error in I/O channel (Erik Arfvidson) [1232018]
-- [unisys] Check return code properly on visor_copy_fragsinfo_from_skb (Erik Arfvidson) [1232018]
-- [unisys] Remove num_visornic_open array (Erik Arfvidson) [1232018]
-- [unisys] fix copyright statements (Erik Arfvidson) [1232018]
-- [unisys] visornic: prevent erroneous kfree of devdata pointer (Erik Arfvidson) [1232018]
-- [unisys] visornic: use preferred interface for setting netdev's parent (Erik Arfvidson) [1232018]
-- [unisys] visornic: delay start of worker thread until netdev created (Erik Arfvidson) [1232018]
-- [unisys] visornic: don't destroy global workqueues until devs destroyed (Erik Arfvidson) [1232018]
-- [unisys] visornic: correctly clean up device on removal (Erik Arfvidson) [1232018]
-- [unisys] visornic: correct obvious double-allocation of workqueues (Erik Arfvidson) [1232018]
-- [unisys] add error messages to visornic (Erik Arfvidson) [1232018]
-- [unisys] neglect to NULL rcvbuf pointer (Erik Arfvidson) [1232018]
-- [unisys] prevent faults in visornic_pause (Erik Arfvidson) [1232018]
-- [unisys] visornic: correct visornic_pause (Erik Arfvidson) [1232018]
-- [unisys] Add s-Par visornic ethernet driver (Erik Arfvidson) [1232018]
-
-* Wed Aug 19 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-306.0.1.el7]
-- [misc] redhat: roll back to pre-release secureboot keys [1254992]
-
-* Mon Aug 17 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-306.el7]
-- [net] ipv6: don't reject link-local nexthop on other interface (Florian Westphal) [1228700]
-- [net] vlan: Correctly propagate promisc|allmulti flags in notifier (Alexander Duyck) [1166516]
-- [net] chunk lost from bd9b51 (Oleg Nesterov) [1246968]
-- [net] openvswitch: Fix L4 checksum handling when dealing with IP fragments (Flavio Leitner) [1249863]
-- [net] tcp: fix recv with flags MSG_WAITALL | MSG_PEEK (Sabrina Dubroca) [1205258]
-- [net] netfilter: synproxy: fix sending window update to client (Phil Sutter) [1242094 1251031]
-- [net] netfilter: ip6t_synproxy: fix NULL pointer dereference (Phil Sutter) [1242094 1251031]
-- [net] sctp: fix src address selection if using secondary addresses (Xin Long) [1245205]
-- [net] sctp: reduce indent level on sctp_v4_get_dst (Xin Long) [1245205]
-- [net] sctp: reset flowi4_oif parameter on route lookup (Xin Long) [1245205]
-- [scsi] hpsa: update driver version (Joseph Szczypek) [1227171]
-- [scsi] hpsa: fix rmmod issues (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add in new controller id (Joseph Szczypek) [1227171]
-- [scsi] hpsa: cleanup reset (Joseph Szczypek) [1227171]
-- [scsi] hpsa: propagate the error code in hpsa_kdump_soft_reset (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add support for tagged queueing (Joseph Szczypek) [1227171]
-- [scsi] hpsa: use scsi host_no as hpsa controller number (Joseph Szczypek) [1227171]
-- [scsi] hpsa: use block layer tag for command allocation (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add interrupt number to /proc/interrupts interrupt name (Joseph Szczypek) [1227171]
-- [scsi] hpsa: create workqueue after the driver is ready for use (Joseph Szczypek) [1227171]
-- [scsi] hpsa: fix try_soft_reset error handling (Joseph Szczypek) [1227171]
-- [scsi] hpsa: cleanup for init_one step 2 in kdump (Joseph Szczypek) [1227171]
-- [scsi] hpsa: skip free_irq calls if irqs are not allocated (Joseph Szczypek) [1227171]
-- [scsi] hpsa: call pci_release_regions after pci_disable_device (Joseph Szczypek) [1227171]
-- [scsi] hpsa: performance tweak for hpsa_scatter_gather() (Joseph Szczypek) [1227171]
-- [scsi] hpsa: refactor and rework support for sending TEST_UNIT_READY (Joseph Szczypek) [1227171]
-- [scsi] hpsa: don't return abort request until target is complete (Joseph Szczypek) [1227171]
-- [scsi] hpsa: use helper routines for finishing commands (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add support sending aborts to physical devices via the ioaccel2 path (Joseph Szczypek) [1227171]
-- [scsi] hpsa: do not print ioaccel2 warning messages about unusual completions (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up some error reporting output in abort handler (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up driver init (Joseph Szczypek) [1227171]
-- [scsi] hpsa: correct return values from driver functions (Joseph Szczypek) [1227171]
-- [scsi] hpsa: do not check cmd_alloc return value - it cannnot return NULL (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add more ioaccel2 error handling, including underrun statuses (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add ioaccel sg chaining for the ioaccel2 path (Joseph Szczypek) [1227171]
-- [scsi] hpsa: refactor freeing of resources into more logical functions (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up error handling (Joseph Szczypek) [1227171]
-- [scsi] hpsa: break hpsa_free_irqs_and_disable_msix into two functions (Joseph Szczypek) [1227171]
-- [scsi] hpsa: Get queue depth from identify physical bmic for physical disks (Joseph Szczypek) [1227171]
-- [scsi] hpsa: use ioaccel2 path to submit IOs to physical drives in HBA mode (Joseph Szczypek) [1227171]
-- [scsi] hpsa: print accurate SSD Smart Path Enabled status (Joseph Szczypek) [1227171]
-- [scsi] hpsa: factor out hpsa_ioaccel_submit function (Joseph Szczypek) [1227171]
-- [scsi] hpsa: try resubmitting down raid path on task set full (Joseph Szczypek) [1227171]
-- [scsi] hpsa: do not ignore return value of hpsa_register_scsi (Joseph Szczypek) [1227171]
-- [scsi] hpsa: factor out hpsa_init_cmd function (Joseph Szczypek) [1227171]
-- [scsi] hpsa: make function names consistent (Joseph Szczypek) [1227171]
-- [scsi] hpsa: allow lockup detected to be viewed via sysfs (Joseph Szczypek) [1227171]
-- [scsi] hpsa: hpsa decode sense data for io and tmf (Joseph Szczypek) [1227171]
-- [scsi] hpsa: decrement h->commands_outstanding in fail_all_outstanding_cmds (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up aborts (Joseph Szczypek) [1227171]
-- [scsi] hpsa: rework controller command submission (Joseph Szczypek) [1227171]
-- [scsi] hpsa: clean up host, channel, target, lun prints (Joseph Szczypek) [1227171]
-- [scsi] hpsa: add masked physical devices into h->dev array (Joseph Szczypek) [1227171]
-- [scsi] hpsa: dont meddle with hw which isn't ours (cciss) (Joseph Szczypek) [1227171]
-- [scsi] hpsa: Fix weird uses of num_online_cpus() (Joseph Szczypek) [1227171]
-- [kernel] livepatch: kernel: add TAINT_LIVEPATCH (Josh Poimboeuf) [1090549]
-- [kernel] fix TAINT_SOFTLOCKUP printable character (Josh Poimboeuf) [1090549]
-- [cpufreq] intel_pstate: Add SKY-S support (Steve Best) [1199346]
-- [powerpc] kvm: book3s: correct width in XER handling (David Gibson) [1178502]
-
-* Fri Aug 14 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-305.el7]
-- [kernel] Call mark_tech_preview() for user namespace (Adrian Reber) [1243523]
-- [kernel] ntp: Do leapsecond adjustment in adjtimex read path (Prarit Bhargava) [1250754]
-- [kernel] time: Prevent early expiry of hrtimers[CLOCK_REALTIME] at the leap second edge (Prarit Bhargava) [1250754]
-- [kernel] ntp: Introduce and use SECS_PER_DAY macro instead of 86400 (Prarit Bhargava) [1250754]
-- [kernel] hrtimer: Make offset update smarter (Prarit Bhargava) [1250754]
-- [kernel] timekeeping: Use ktime_t data for ktime_get_update_offsets_now() (Prarit Bhargava) [1250754]
-- [netdrv] macvtap: fix network header pointer for VLAN tagged pkts (Ivan Vecera) [1251987]
-- [net] core: Fix vlan_get_protocol for stacked vlan (Ivan Vecera) [1251987]
-- [netdrv] r8169: enforce RX_MULTI_EN on rtl8168ep/8111ep chips (Ivan Vecera) [1218279]
-- [netdrv] virtio-net: drop NETIF_F_FRAGLIST (Jason Wang) [1247840] {CVE-2015-5156}
-- [netdrv] usbnet: remove generic hard_header_len check (Don Zickus) [1164735]
-- [usb] usb: io_ti: Add heartbeat to keep idle EP/416 ports from disconnecting (Don Zickus) [1207487 1208644]
-- [usb] usb: io_ti: Add firmware image sanity checks (Don Zickus) [1208644]
-- [usb] usb: io_ti: Increase insufficient timeout for firmware downloads (Don Zickus) [1208644]
-- [usb] usb: io_ti: Fix firmware version handling (Don Zickus) [1208644]
-- [x86] perf: Tweak broken BIOS rules during check_hw_exists() (Don Zickus) [1082511]
-- [x86] uefi: copy secure_boot flag in boot params across kexec (Dave Young) [1243998]
-- [mm] vm_is_stack: use for_each_thread() rather then buggy while_each_thread() (Jerry Snitselaar) [1252188]
-- [fs] dcache: d_walk() might skip too much (Denys Vlasenko) [1173813] {CVE-2014-8559}
-- [fs] dcache: deal with deadlock in d_walk() (Denys Vlasenko) [1173813] {CVE-2014-8559}
-- [fs] dcache: move d_rcu from overlapping d_child to overlapping d_alias (Denys Vlasenko) [1173813] {CVE-2014-8559}
-- [fs] dcache: fold try_to_ascend() into the sole remaining caller (Denys Vlasenko) [1173813] {CVE-2014-8559}
-- [fs] pipe: fix offset and len mismatch on pipe_iov_copy_to_user() failure (Seth Jennings) [1239006]
-- [fs] overlayfs: Warn on copy up if a process has a R/O fd open to the lower file V2 (David Howells) [1226346]
-- [md] dm: revert dm_merge_bvec changes (Mike Snitzer) [1250148]
-- [pci] pciehp: Handle invalid data when reading from non-existent devices (Jarod Wilson) [1108793 1172014]
-- [edac] sb_edac: fix TAD presence check for sbridge_mci_bind_devs() (Seth Jennings) [1250709]
-- [perf] bench-numa: Fix to show proper convergence stats (Petr Holasek) [1222518]
-- [scsi] ipr: Driver version 2.6.2 (Gustavo Duarte) [1251842]
-- [scsi] ipr: Endian / sparse fixes (Gustavo Duarte) [1251842]
-- [scsi] ipr: Fix locking for unit attention handling (Gustavo Duarte) [1251842]
-- [scsi] ipr: Re-enable write same (Gustavo Duarte) [1251842]
-- [scsi] ipr: Fix invalid array indexing for HRRQ (Gustavo Duarte) [1251184]
-- [scsi] ipr: Fix incorrect trace indexing (Gustavo Duarte) [1251184]
-- [scsi] ipr: Byte swapping for device_id attribute in sysfs (Gustavo Duarte) [1214645]
-- [crypto] nx - respect sg limit bounds when building sg lists for SHA (Herbert Xu) [1250733]
-- [crypto] nx - Fix reentrancy bugs (Herbert Xu) [1250733]
-- [crypto] nx - Fixing SHA update bug (Herbert Xu) [1250733]
-- [crypto] nx - Fixing NX data alignment with nx_sg list (Herbert Xu) [1250733]
-- [crypto] nx - make platform drivers directly register with crypto (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - rename nx-842-crypto.c to nx-842.c (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - merge nx-compress and nx-compress-crypto (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - use common code for both NX decompress success cases (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - don't register pSeries driver if ENODEV (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - move kzalloc() out of spinlock (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - remove pSeries NX 'status' field (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - remove __init/__exit from VIO functions (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx/842 - Fix context corruption (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - reduce chattiness of platform drivers (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - do not emit extra output if status is disabled (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - rename nx842_{init, exit} to nx842_pseries_{init, exit} (Gustavo Duarte) [1238571 1245132]
-- [crypto] nx - nx842_OF_upd_status should return ENODEV if device is not 'okay' (Gustavo Duarte) [1238571 1245132]
-- [cpufreq] powernv: Restore cpu frequency to policy->cur on unthrottling (Gustavo Duarte) [1249561]
-- [cpufreq] powernv: Report Psafe only if PMSR.psafe_mode_active bit is set (Gustavo Duarte) [1249561]
-- [cpufreq] powernv: Call throttle_check() on receiving OCC_THROTTLE (Gustavo Duarte) [1249561]
-- [cpufreq] powernv: Register for OCC related opal_message notification (Gustavo Duarte) [1249561]
-- [powerpc] powernv: Add definition of OPAL_MSG_OCC message type (Gustavo Duarte) [1249561]
-- [cpufreq] powernv: Handle throttling due to Pmax capping at chip level (Gustavo Duarte) [1249561]
-- [cpuidle] menu: Return (-1) if there are no suitable states (Gustavo Duarte) [1226250]
-- [powerpc] eeh: Fix trivial error in eeh_restore_dev_state() (David Gibson) [1227573]
-- [powercap] rapl: Add support for Broadwell-H (Steve Best) [1249855]
-
-* Fri Aug 07 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-304.el7]
-- [md] dm-cache: fix device destroy hang due to improper prealloc_used accounting (Mike Snitzer) [1247192]
-- [md] revert "dm-cache: do not wake_worker() in free_migration()" (Mike Snitzer) [1247192]
-- [ipc] mqueue: remove limits for the amount of system-wide queues (Milos Vyletel) [1247632]
-- [scsi] fix memory leak with scsi-mq (Ewan Milne) [1248739]
-- [scsi] qla2xxx: do not clear slot in outstanding cmd array (Chad Dupuis) [1188168]
-- [scsi] qla2xxx: Remove decrement of sp reference count in abort handler (Chad Dupuis) [1188168]
-- [scsi] qla2xxx: Do not reset adapter if SRB handle is in range (Chad Dupuis) [1188168]
-- [scsi] qla2xxx: Do not crash system for sp ref count zero (Chad Dupuis) [1188168]
-- [tools] power turbostat: enable turbostat to support Knights Landing (KNL) (Steve Best) [1214141]
-- [vhost] fix error handling for memory region alloc (Igor Mammedov) [1152962]
-- [vhost] add max_mem_regions module parameter (Igor Mammedov) [1152962]
-- [vhost] extend memory regions allocation to vmalloc (Igor Mammedov) [1152962]
-- [vhost] use binary search instead of linear in find_region() (Igor Mammedov) [1152962]
-- [vhost] Make vhost a separate module (Igor Mammedov) [1152962]
-- [vhost] move memory pointer to VQs (Igor Mammedov) [1152962]
-- [vhost] move acked_features to VQs (Igor Mammedov) [1152962]
-- [vhost] replace rcu with mutex (Igor Mammedov) [1152962]
-- [vhost] Remove custom vhost rcu usage (Igor Mammedov) [1152962]
-- [vhost] scsi: Always access vq->private_data under vq mutex (Igor Mammedov) [1152962]
-- [vhost] net: Always access vq->private_data under vq mutex (Igor Mammedov) [1152962]
-- [powercap] rapl: Add support for Skylake H/S (Steve Best) [1249848]
-- [wireless] Backport rtlwifi driver family from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport mwl8k driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport brcm80211 common code from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport brcmsmac driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport brcmfmac driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport BCMA bus driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport SSB bus driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport mwifiex driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport rt2x00 driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport wil6210 driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport carl9170 from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport ath common code from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport ath9k driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport iwlegacy driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport iwlwifi driver from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport mac80211 from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] Backport wireless core from linux-4.1-rc6 (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] debugfs: add helper function to create device related seq_file (Stanislaw Gruszka) [1169606 1229225]
-- [wireless] net: Add EXPORT_SYMBOL_GPL(get_net_ns_by_fd) (Stanislaw Gruszka) [1169606 1229225]
-- [security] keys: Ensure we free the assoc array edit if edit is valid (David Howells) [1244171] {CVE-2015-1333}
-
-* Wed Aug 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-303.el7]
-- [powerpc] powernv: Fix vma page prot flags in opal-prd driver (Gustavo Duarte) [1241177]
-- [powerpc] rtas: Introduce rtas_get_sensor_fast() for IRQ handlers (Thomas Huth) [1243779]
-- [thermal] powerclamp: add cpu id for denlow platform (Steve Best) [1177872]
-- [powercap] rapl: Support Knights Landing (Steve Best) [1145372]
-- [s390] nmi: fix vector register corruption (Hendrik Brueckner) [1247500]
-- [s390] ctl_reg: add union type for control register 0 (Hendrik Brueckner) [1247500]
-- [s390] revert "dasd: add support for control unit initiated reconfiguration" (Hendrik Brueckner) [1243498]
-- [mm] tmpfs: ZERO_RANGE and COLLAPSE_RANGE not currently supported (Eric Sandeen) [1237080]
-- [md] dm-cache-policy-smq: fix alloc_bitset check that always evaluates as false (Mike Snitzer) [1247192]
-- [md] dm-thin: return -ENOSPC when erroring retry list due to out of data space (Mike Snitzer) [1247192]
-- [md] clear Blocked flag on failed devices when array is read-only (Xiao Ni) [1177912]
-- [acpi] ghes: Make NMI handler have a single reader (Jiri Olsa) [1230934]
-- [iommu] vt-d: Fix VM domain ID leak (Alex Williamson) [1242331]
-- [video] hyperv_fb: match wait_for_completion_timeout return type (Vitaly Kuznetsov) [1247678]
-- [video] hyperv_fb: refresh the VM screen by force on VM panic (Vitaly Kuznetsov) [1247678]
-- [video] hyperv-fb: add blanking support (Vitaly Kuznetsov) [1247678]
-- [block] nvme: Failed controller initialization fixes (David Milburn) [1223515]
-- [block] nvme: Unify controller probe and resume (David Milburn) [1223515]
-- [block] nvme: Automatic namespace rescan (David Milburn) [1223515]
-- [block] nvme: add sysfs and ioctl controller reset (David Milburn) [1223515]
-- [block] nvme: Remove hctx reliance for multi-namespace (David Milburn) [1223515]
-- [block] blk-mq: Shared tag enhancements (David Milburn) [1223515]
-- [block] add blk_set_queue_dying() to blkdev.h (David Milburn) [1223515]
-- [block] nvme: disable irqs in nvme_freeze_queues (David Milburn) [1223515]
-- [block] nvme: Meta data handling through submit io ioctl (David Milburn) [1223515]
-- [block] nvme: Fix for BLK_DEV_INTEGRITY not set (David Milburn) [1223515]
-- [block] nvme: Metadata format support (David Milburn) [1223515]
-- [netdrv] bonding: fix destruction of bond with devices different from arphrd_ether (Gustavo Duarte) [1061028]
-- [netdrv] fix copyright statements (Erik Arfvidson) [1245362]
-- [unisys] Lock visorchannels associated with devices (Erik Arfvidson) [1245362]
-- [unisys] fix random hangs with network stress in visornic (Erik Arfvidson) [1245362]
-- [unisys] Reduce indent (Erik Arfvidson) [1245362]
-- [unisys] Use kzalloc instead of kmalloc/memset (Erik Arfvidson) [1245362]
-- [unisys] correctly NULL-terminate visorbus sysfs attribute array (Erik Arfvidson) [1245362]
-- [unisys] fix random memory corruption in visorchannel_write() (Erik Arfvidson) [1245362]
-- [unisys] Fix broken build when ARCH=um (Erik Arfvidson) [1245362]
-- [unisys] Allow visorbus to autoload (Erik Arfvidson) [1245362]
-- [unisys] prevent faults processing messages (Erik Arfvidson) [1245362]
-- [unisys] respond to msgs post device_create (Erik Arfvidson) [1245362]
-
-* Fri Jul 31 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-302.el7]
-- [fs] nfs: objectlayout: Mark the object layout driver as a tech preview (Steve Dickson) [1248070]
-- [x86] Tell irq work about self IPI support (Rafael Aquini) [1240799]
-- [acpi] scan: reduce log level of "acpi: \_pr_.cpu4: failed to get CPU APIC ID" (Lenny Szubowicz) [1246077]
-- [netdrv] mlx4: restore conditional call to napi_complete_done() (Honggang Li) [1248338]
-- [cpufreq] intel_pstate: Add get_scaling cpu_defaults param to Knights Landing (Steve Best) [1145366]
-- [cpufreq] intel_pstate: Knights Landing support (Steve Best) [1145366]
-- [powerpc] add running_clock for powerpc to prevent spurious softlockup warnings (Gustavo Duarte) [1197000]
-- [kernel] sched/clock: add another clock for use with the soft lockup watchdog (Gustavo Duarte) [1197000]
-- [kernel] fork: Allow CLONE_PARENT after setns(CLONE_NEWPID) (Adrian Reber) [1241560]
-- [kernel] fork: unify and tighten up CLONE_NEWUSER/CLONE_NEWPID checks (Adrian Reber) [1241560]
-- [kernel] pidns: kill the unnecessary CLONE_NEWPID in copy_process() (Adrian Reber) [1241560]
-- [kernel] workqueue: Allow modifying low level unbound workqueue cpumask (Daniel Bristot de Oliveira) [1176155]
-- [kernel] workqueue: Create low-level unbound workqueues cpumask (Daniel Bristot de Oliveira) [1176155]
-- [kernel] workqueue: split apply_workqueue_attrs() into 3 stages (Daniel Bristot de Oliveira) [1176155]
-- [kernel] cpumask, nodemask: implement cpumask/nodemask_pr_args() (Daniel Bristot de Oliveira) [1176155]
-- [documentation] add print bitmap description (Daniel Bristot de Oliveira) [1176155]
-- [lib] vsprintf: implement bitmap printing through '*pb[l]' (Daniel Bristot de Oliveira) [1176155]
-- [fs] userfaultfd: call mark_tech_preview (Andrea Arcangeli) [965657]
-- [fs] userfaultfd: avoid missing wakeups during refile in userfaultfd_read (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: propagate the full address in THP faults (Andrea Arcangeli) [965657]
-- [fs] userfaultfd: allow signals to interrupt a userfault (Andrea Arcangeli) [965657]
-- [fs] userfaultfd: require UFFDIO_API before other ioctls (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: switch to exclusive wakeup for blocking reads (Andrea Arcangeli) [965657]
-- [fs] userfaultfd: fs/userfaultfd.c add more comments (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: documentation update (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: UFFDIO_COPY and UFFDIO_ZEROPAGE (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: avoid mmap_sem read recursion in mcopy_atomic (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: mcopy_atomic|mfill_zeropage: UFFDIO_COPY|UFFDIO_ZEROPAGE preparation (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: UFFDIO_COPY|UFFDIO_ZEROPAGE uAPI (Andrea Arcangeli) [965657]
-- [x86] userfaultfd: activate syscall (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: buildsystem activation (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: solve the race between UFFDIO_COPY|ZEROPAGE and read (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: allocate the userfaultfd_ctx cacheline aligned (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: optimize read() and poll() to be O(1) (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: wake pending userfaults (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: update the uffd_msg structure to be the same on 32/64bit (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: change the read API to return a uffd_msg (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: Rename uffd_api.bits into .features fixup (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: Rename uffd_api.bits into .features (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: waitqueue_active() race fix (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: cleanup superfluous _irq locking (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: add new syscall to provide memory externalization (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: prevent khugepaged to merge if userfaultfd is armed (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: teach vma_merge to merge across vma->vm_userfaultfd_ctx (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: call handle_userfault() for userfaultfd_missing() faults (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: add VM_UFFD_MISSING and VM_UFFD_WP (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: add vm_userfaultfd_ctx to the vm_area_struct (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: linux/userfaultfd_k.h (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: uapi: add missing include/types.h (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: uAPI (Andrea Arcangeli) [965657]
-- [mm] userfaultfd: linux/Documentation/vm/userfaultfd.txt (Andrea Arcangeli) [965657]
-- [fs] nfs: use get_user_pages_unlocked (Andrea Arcangeli) [965657]
-- [mm] gup: kvm use get_user_pages_unlocked (Andrea Arcangeli) [965657]
-- [mm] gup: use get_user_pages_unlocked within get_user_pages_fast (Andrea Arcangeli) [965657]
-- [mm] gup: add __get_user_pages_unlocked to customize gup_flags (Andrea Arcangeli) [965657]
-- [mm] gup: add get_user_pages_locked and get_user_pages_unlocked (Andrea Arcangeli) [965657]
-- [net] bridge: vlan: fix usage of vlan 0 and 4095 again (John Greene) [1236709]
-- [net] bridge: new mode flag to indicate mode 'undefined' (John Greene) [1236709]
-- [net] bridge: simplify br_getlink() a bit (John Greene) [1236709]
-- [net] bridge: remove oflags from setlink/dellink (John Greene) [1236709]
-- [net] bridge: fix setlink/dellink notifications (John Greene) [1236709]
-- [net] bridge: fix uninitialized variable warning (John Greene) [1236709]
-- [net] bridge: new function to pack vlans into ranges during gets (John Greene) [1236709]
-- [net] rtnetlink: new filter RTEXT_FILTER_BRVLAN_COMPRESSED (John Greene) [1236709]
-- [net] bridge: support for multiple vlans and vlan ranges in setlink and dellink requests (John Greene) [1236709]
-- [net] bridge: add brport flags to dflt bridge_getlink (John Greene) [1236709]
-- [net] bridge: add new brport flag LEARNING_SYNC (John Greene) [1236709]
-- [net] bridge: move private brport flags to if_bridge.h so port drivers can use flags (John Greene) [1236709]
-- [net] bridge: add export of multicast database adjacent to net_dev (John Greene) [1236709]
-- [net] fib_trie: Drop unnecessary calls to leaf_pull_suffix (Alexander Duyck) [1247411]
-- [net] inet_diag: always export IPV6_V6ONLY sockopt for listening sockets (Phil Sutter) [1247309]
-- [net] inet_diag: export IPV6_V6ONLY sockopt (Phil Sutter) [1247309]
-
-* Wed Jul 29 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-301.el7]
-- [powerpc] kvm: book3s_hv: Fix preempted vcore stolen time calculation (Laurent Vivier) [1242757]
-- [powerpc] kvm: book3s_hv: Fix preempted vcore list locking (Laurent Vivier) [1242757]
-- [netdrv] be2net: support ndo_get_phys_port_id() (Ivan Vecera) [1138670]
-- [fs] ovl: Enable copy-up fd checking by default (David Howells) [1246555]
-- [fs] nfs: increase size of EXCHANGE_ID name string buffer (Benjamin Coddington) [1243961]
-- [fs] vfs: avoid creation of inode number 0 in get_next_ino (Carlos Maiolino) [1241665]
-- [fs] dlm: adopt orphan locks (David Teigland) [1208288]
-- [tools] turbostat: Revert to old -v/-V options (Prarit Bhargava) [1245299]
-- [perf] x86: Add more Broadwell model numbers (Jiri Olsa) [1242695]
-- [scsi] save command pool address of Scsi_Host (Vitaly Kuznetsov) [1245857]
-- [iser-target] Fix possible use-after-free (Andy Grover) [1136558 1185396]
-- [iser-target] release stale iser connections (Andy Grover) [1136558 1185396]
-- [iser-target] Fix variable-length response error completion (Andy Grover) [1136558 1185396]
-- [iser-target] Bump version to 1.0 (Andy Grover) [1136558 1185396]
-- [iser-target] Remove conn_ prefix from struct isert_conn members (Andy Grover) [1136558 1185396]
-- [iser-target] Remove un-needed rdma_listen backlog (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant check on the device (Andy Grover) [1136558 1185396]
-- [iser-target] Get rid of redundant max_accept (Andy Grover) [1136558 1185396]
-- [iser-target] Split some logic in isert_connect_request to routines (Andy Grover) [1136558 1185396]
-- [iser-target] Rename device find/release routines (Andy Grover) [1136558 1185396]
-- [iser-target] Rename rend/recv completion routines (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant assignment to local variable (Andy Grover) [1136558 1185396]
-- [iser-target] Introduce isert_alloc|free_comps (Andy Grover) [1136558 1185396]
-- [iser-target] Split isert_setup_qp (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant casting on void pointers (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant local variable (Andy Grover) [1136558 1185396]
-- [iser-target] Remove dead code (Andy Grover) [1136558 1185396]
-- [iser-target] Remove redundant check on recv completion (Andy Grover) [1136558 1185396]
-- [iser-target] Use a single DMA MR and PD per device (Andy Grover) [1136558 1185396]
-- [iser-target] Rebase to v4.0.5 (Andy Grover) [1136558 1185396]
-- [infiniband] mlx5: iser,isert: Add Signature API additions (Andy Grover) [1136558 1185396]
-- [scsi] add SPC-3 command definitions (Andy Grover) [1136558 1185396]
-- [scsi] rename SERVICE_ACTION_IN to SERVICE_ACTION_IN_16 (Andy Grover) [1136558 1185396]
-- [scsi] st: null pointer dereference panic caused by use after kref_put by st_open (Maurizio Lombardi) [1239060]
-
-* Sat Jul 25 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-300.el7]
-- [watchdog] hpwdt: Fix initialization message in hpwdt.c (Nigel Croxon) [1204514]
-- [fs] autofs: fix the return value of autofs4_fill_super (Ian Kent) [1207319]
-- [fs] autofs4: translate pids to the right namespace for the daemon (Ian Kent) [1207319]
-- [fs] autofs4: allow autofs to work outside the initial PID namespace (Ian Kent) [1207319]
-- [fs] autofs4: make freeing sbi rcu-delayed (Ian Kent) [1207319]
-- [net] call rcu_read_lock early in process_backlog (Jiri Benc) [1243980]
-- [net] do not process device backlog during unregistration (Jiri Benc) [1243980]
-- [net] graceful exit from netif_alloc_netdev_queues() (Jiri Benc) [1245278]
-- [net] extend net_device allocation to vmalloc() (Jiri Benc) [1245278]
-- [net] rtnetlink: remove ndo_get_slave (Jarod Wilson) [1210322]
-- [net] rtnetlink: remove IFLA_BOND_SLAVE definition (Jarod Wilson) [1210322]
-- [net] rtnetlink: fix oops in rtnl_link_get_slave_info_data_size (Jarod Wilson) [1210322]
-- [net] rtnetlink: remove check for fill_slave_info in rtnl_have_link_slave_info (Jarod Wilson) [1210322]
-- [net] bonding: convert netlink to use slave data info api (Jarod Wilson) [1210322]
-- [net] rtnetlink: add missing IFLA_BOND_AD_INFO_UNSPEC (Jarod Wilson) [1210322]
-- [net] rtnetlink: provide api for getting and setting slave info (Jarod Wilson) [1210322]
-- [net] rtnetlink: put "BOND" into nl attribute names which are related to bonding (Jarod Wilson) [1210322]
-- [net] bonding: add netlink attributes to slave link dev (Jarod Wilson) [1210322]
-- [net] ipv4: take rtnl_lock and mark mrt table as freed on namespace cleanup (Phil Sutter) [1240747]
-- [bluetooth] Fix RFCOMM parent device for reused dlc (Lubomir Rintel) [1241844]
-- [bluetooth] Fix unsafe RFCOMM device parenting (Lubomir Rintel) [1241844]
-- [bluetooth] Directly close dlc for not yet started RFCOMM session (Lubomir Rintel) [1241844]
-- [bluetooth] Refactor dlc disconnect logic in rfcomm_dlc_close() (Lubomir Rintel) [1241844]
-- [bluetooth] Refactor deferred setup test in rfcomm_dlc_close() (Lubomir Rintel) [1241844]
-- [bluetooth] Simplify RFCOMM session state eval (Lubomir Rintel) [1241844]
-- [bluetooth] Verify dlci not in use before rfcomm_dev create (Lubomir Rintel) [1241844]
-- [bluetooth] Fix RFCOMM tty teardown race (Lubomir Rintel) [1241844]
-- [bluetooth] Fix unreleased rfcomm_dev reference (Lubomir Rintel) [1241844]
-- [bluetooth] Release rfcomm_dev only once (Lubomir Rintel) [1241844]
-- [bluetooth] Exclude released devices from RFCOMMGETDEVLIST ioctl (Lubomir Rintel) [1241844]
-- [bluetooth] Fix racy acquire of rfcomm_dev reference (Lubomir Rintel) [1241844]
-- [bluetooth] revert "bluetooth: Move rfcomm_get_device() before rfcomm_dev_activate()" (Lubomir Rintel) [1241844]
-- [bluetooth] revert "bluetooth: Always wait for a connection on RFCOMM open()" (Lubomir Rintel) [1241844]
-- [bluetooth] revert "bluetooth: Remove rfcomm_carrier_raised()" (Lubomir Rintel) [1241844]
-- [bluetooth] Refuse peer RFCOMM address reading when not connected (Lubomir Rintel) [1241844]
-- [bluetooth] Remove rfcomm_carrier_raised() (Lubomir Rintel) [1241844]
-- [bluetooth] Always wait for a connection on RFCOMM open() (Lubomir Rintel) [1241844]
-- [bluetooth] Move rfcomm_get_device() before rfcomm_dev_activate() (Lubomir Rintel) [1241844]
-- [bluetooth] Release RFCOMM port when the last user closes the TTY (Lubomir Rintel) [1241844]
-- [bluetooth] Fix to set proper bdaddr_type for RFCOMM connect (Lubomir Rintel) [1241844]
-- [bluetooth] Fix RFCOMM bind fail for L2CAP sock (Lubomir Rintel) [1241844]
-- [bluetooth] Fix issue with RFCOMM getsockopt operation (Lubomir Rintel) [1241844]
-- [bluetooth] Use IS_ERR_OR_NULL for checking bt_debugfs (Lubomir Rintel) [1241844]
-- [bluetooth] Store RFCOMM address information in its own socket structure (Lubomir Rintel) [1241844]
-- [bluetooth] don't release the port in rfcomm_dev_state_change() (Lubomir Rintel) [1241844]
-- [bluetooth] Fix waiting for clearing of BT_SK_SUSPEND flag (Lubomir Rintel) [1241844]
-- [bluetooth] Purge the dlc->tx_queue to avoid circular dependency (Lubomir Rintel) [1241844]
-- [bluetooth] Fix the reference counting of tty_port (Lubomir Rintel) [1241844]
-- [bluetooth] Implement .activate, .shutdown and .carrier_raised methods (Lubomir Rintel) [1241844]
-- [bluetooth] Move the tty initialization and cleanup out of open/close (Lubomir Rintel) [1241844]
-- [bluetooth] Remove the device from the list in the destructor (Lubomir Rintel) [1241844]
-- [bluetooth] Take proper tty_struct references (Lubomir Rintel) [1241844]
-- [net] netfilter: arptables: use percpu jumpstack (Florian Westphal) [1237126]
-- [pci] pciehp: Stop disabling notifications during init (Myron Stowe) [1243009]
-- [x86] build: Don't get confused by local symbols (Prarit Bhargava) [1245781]
-- [x86] perf: Fix CQM feature detection (Jiri Olsa) [1036948]
-- [crypto] nx - Fixing the limit number of bytes to be processed (Herbert Xu) [1190103]
-- [crypto] nx - Fix SHA concurrence issue and sg limit bounds (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-XCBC to be processed logic (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-GCM to be processed logic (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-ECB to be processed logic (Herbert Xu) [1190103]
-- [crypto] nx - Moving limit and bound logic in CTR and fix IV vector (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-CCM to be processed logic and sg_list bounds (Herbert Xu) [1190103]
-- [crypto] nx - Moving NX-AES-CBC to be processed logic (Herbert Xu) [1190103]
-- [crypto] nx - Check for bogus firmware properties (Herbert Xu) [1190103]
-- [kernel] kabi: remove RH_KABI_CHANGE_TYPE (Hannes Frederic Sowa) [1241854]
-- [kernel] kabi: alignment and sizeof checks in RH_KABI_REPLACE/CHANGE_TYPE macros (Hannes Frederic Sowa) [1241854]
-- [block] use RH_KABI_REPLACE_UNSAFE in blk-mq.h (Hannes Frederic Sowa) [1241854]
-- [kernel] kabi: introduce RH_KABI_REPLACE_UNSAFE (Hannes Frederic Sowa) [1241854]
-- [kernel] kabi: introduce RH_KABI_USE2_P (Sabrina Dubroca) [1241515]
-- [kernel] kabi: remove RH_KABI_REPLACE_P (Sabrina Dubroca) [1241515]
-- [kernel] include/*: stop using RH_KABI_REPLACE_P (Sabrina Dubroca) [1241515]
-- [kernel] kabi: introduce RH_KABI_RENAME (Sabrina Dubroca) [1241515]
-- [net] sk_buff: don't use RH_KABI_REPLACE_P for bitfields (Sabrina Dubroca) [1241515]
-- [kernel] kabi: modify _RH_KABI_REPLACE to integrate RH_KABI_REPLACE_P with RH_KABI_REPLACE (Sabrina Dubroca) [1241515]
-- [netdrv] fm10k: fix use of ifla_vf_info->tx_rate (Sabrina Dubroca) [1241515]
-- [netdrv] sfc: fix use of ifla_vf_info->tx_rate (Sabrina Dubroca) [1241515]
-- [kernel] revert "softirq: Add support for triggering softirq work on softirqs" (Sabrina Dubroca) [1241515]
-- [netdrv] be2net: bump up the driver version to 10.6.0.3 (Ivan Vecera) [1245683]
-- [netdrv] be2net: make SET_LOOPBACK_MODE cmd asynchrounous (Ivan Vecera) [1245683]
-- [netdrv] be2net: make the RX_FILTER command asynchronous (Ivan Vecera) [1245683]
-- [netdrv] be2net: return error status from be_mcc_notify() (Ivan Vecera) [1245683]
-- [netdrv] be2net: convert dest field in udp-hdr to host-endian (Ivan Vecera) [1245683]
-- [netdrv] be2net: fix wrong return value in be_check_ufi_compatibility() (Ivan Vecera) [1245683]
-- [netdrv] be2net: remove redundant D0 power state set (Ivan Vecera) [1245683]
-- [netdrv] be2net: query FW to check if EVB is enabled (Ivan Vecera) [1245683]
-- [netdrv] be2net: remove duplicate code in be_setup_wol() (Ivan Vecera) [1245683]
-- [netdrv] remove all references to obsolete Ethernet-HOWTO (Ivan Vecera) [1245683]
-- [infiniband] ocrdma: Destroy ocrdma_dev_id IDR on module exit (Honggang Li) [1244604]
-- [infiniband] ucma: Destroy multcast_idr on module exit (Honggang Li) [1244604]
-- [infiniband] ipoib: Set MTU to max allowed by mode when mode changes (Honggang Li) [1244604]
-- [infiniband] ipoib: Scatter-Gather support in connected mode (Honggang Li) [1244604]
-- [infiniband] ucm: Fix bitmap wrap when devnum > IB_UCM_MAX_DEVICES (Honggang Li) [1244604]
-- [infiniband] ipoib: Prevent lockdep warning in __ipoib_ib_dev_flush (Honggang Li) [1244604]
-- [infiniband] ucma: Fix lockdep warning in ucma_lock_files (Honggang Li) [1244604]
-- [net] rds: rds_ib_device.refcount overflow (Honggang Li) [1244604]
-- [infiniband] nes: Fix for incorrect recording of the MAC address (Honggang Li) [1244604]
-- [infiniband] nes: Fix for resolving the neigh (Honggang Li) [1244604]
-- [infiniband] core: Fixes for port mapper client registration (Honggang Li) [1244604]
-- [infiniband] cm: Do not queue work to a device that's going away (Honggang Li) [1244604]
-- [infiniband] mad: Remove improper use of BUG_ON (Honggang Li) [1244604]
-- [infiniband] mad: Fix compare between big endian and cpu endian (Honggang Li) [1244604]
-- [infiniband] Add rdma_cap_ib_switch helper and use where appropriate (Honggang Li) [1244604]
-- [infiniband] mlx4: Do not attemp to report HCA clock offset on VFs (Amir Vadai) [1238185]
-- [infiniband] ipoib: Fix bad error flow in ipoib_add_port() (Amir Vadai) [1238185]
-- [security] selinux: reduce the number of calls to synchronize_net() when flushing caches (Paul Moore) [1030405]
-- [security] selinux: conditionally reschedule in hashtab_insert while loading selinux policy (Paul Moore) [1030405]
-- [security] selinux: conditionally reschedule in mls_convert_context while loading selinux policy (Paul Moore) [1030405]
-
-* Thu Jul 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-299.el7]
-- [inifniband] mlx4: Add support for CQ time-stamping (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] mlx4: Add mmap call to map the hardware clock (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Pass hardware specific data in query_device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Add timestamp_mask and hca_core_clock to query_device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Extend ib_uverbs_create_cq (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Add CQ creation time-stamping flag (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Change ib_create_cq to use struct ib_cq_init_attr (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] core: Change provider's API of create_cq to be extendible (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Disable HA for SRIOV PF RoCE devices (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [inifniband] mlx4: Fix error paths in mlx4_ib_create_flow() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix wrong csum complete report when rxvlan offload is disabled (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Wake TX queues only when there's enough room (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Release TX QP when destroying TX ring (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use HW counters for rx/tx bytes/packets in PF device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix off-by-four in ethtool (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Prefetch skb data on RX (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Pop cq outside mlx5e_get_cqe (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Remove mlx5e_cq.sqrq back-pointer (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Remove extra spaces (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Avoid TX CQE generation if more xmit packets expected (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Avoid redundant dev_kfree_skb() upon NOP completion (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Remove re-assignment of wq type in mlx5e_enable_rq() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Use skb_shinfo(skb)->gso_segs rather than counting them (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Static mapping of netdev priv resources to/from netdev TX queues (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Support NETIF_F_SG (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Enable TX rate limit per VF (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: use napi_complete_done() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Disable Granular QoS per VF under IB/Eth VPI configuration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Support ndo_get_vf_stats (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Show PF own statistics via ethtool (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add helper to query counters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Set VF to read from QP counters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Add RoCE/IB dedicated counters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Allocate default counter per port (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add port attribute when tracking counters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Adjust counter grant policy in the resource tracker (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Remove counters table allocation from VF flow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add sink counter (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Reset counters data when freed (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Check before cleaning counters bitmap (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Add transport domain to the ethernet TIRs/TISs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Add transport domain alloc/dealloc support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Enforce max flow-tables level >= 3 (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Disable client vlan TX acceleration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Add HW cacheline start padding (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5e: Fix HW MTU settings (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: fix an error code (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: use swap() in mlx4_make_profile() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: use swap() in mlx4_init_qp_table() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Prevent setting invalid RSS hash function (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Support for configurable RSS hash function (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] ptp: mlx4: use helpers for converting ns to timespec (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] ptp: mlx4: convert to the 64 bit get/set time methods (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: only pull headers into skb head (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] configs: Enable ConnectX-4 IB/Ethernet HCA (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix static checker warnings around system guid query flow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Enable mutual support for IB and Ethernet (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Don't create IB instance over Ethernet ports (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Avoid using the MAD_IFC command under ISSI > 0 mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Add more query port helpers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use port number when querying port ptys (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use port number in the query port mtu helpers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Get vendor-id using the query adapter command (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Add new query HCA vport commands (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Make the vport helpers available for the IB driver too (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Check the return bitmask when querying ISSI (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Enable XRCs and SRQs when using ISSI > 0 (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Apply proper name convention to helpers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_en: Add missing check for memory allocation failure (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: fix typo in mlx4_set_vf_mac (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: need to call close fw if alloc icm is called twice (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: double free of dev_vfs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix build failure introduced by the EQ pool changes (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Make sure there are no pending async events when freeing CQ (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Move affinity hints to mlx4_core ownership (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add EQ pool (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Demote simple multicast and broadcast flow steering rules (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Extend mlx5_core to support ConnectX-4 Ethernet functionality (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Ethernet resource handling files (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Ethernet Datapath files (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Set/Query port MTU commands (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Modify CQ moderation parameters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Implement get/set port status (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Implement access functions of ptys register fields (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: New device capabilities handling (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: HW data structs/types definitions cleanup (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Set irq affinity hints (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core, mlx5_ib: Do not use vmap() on coherent memory (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix fallback from MSI-X to INTx (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Enable single ported IB VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Adjust the schedule queue port in reset-to-init too (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Adjust the schedule queue port for single ported IB VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Modify port values when generting EQEs for VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Convert slave port before building address-handle (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Enhance the MAD_IFC wrapper to convert VF port to physical (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Avoid 'may be used uninitialized' warnings (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] infiniband: Remove duplicated KERN_<LEVEL> from pr_<level> uses (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Work properly with EQ numbers > 256 in SRIOV (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix off-by-one in counters manipulation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Schedule napi when RX buffers allocation fails (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix unaligned accesses (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use correct loop cursor in error path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix reading HCA max message size in mlx4_QUERY_DEV_CAP (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: wrong page mask if CONFIG_ARCH_DMA_ADDR_T_64BIT enabled for 32Bit architectures (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] infiniband/mlx4: check for mapping error (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Fix WQE LSO segment calculation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Change alias guids default to be host assigned (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Return the admin alias GUID upon host view request (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Raise slave shutdown event upon FLR (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Request alias GUID on demand (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Change init flow to request alias GUIDs for active VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Manage admin alias GUID upon admin request (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Set initial admin GUIDs for VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Manage alias GUID per VF (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Alias GUID adding persistency support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4/mlx5: Use dma_wmb/rmb where appropriate (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix error message deprecation for ConnectX-2 cards (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Extend struct mlx5_interface to support multiple protocols (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Modify arm CQ in preparation for upcoming Ethernet driver (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Move completion eqs from mlx5_ib to mlx5_core (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Update module info macros for ConnectX4 Support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Fix Mellanox copyright note (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix Mellanox copyright note (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix a bug in alloc_token (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Avoid usage command work entry after writing command doorbell (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Avoid copying outbox in aysnc command completion (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use coherent memory for command interface page (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use the right inbox struct in destroy mkey command (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Clear doorbell record inside mlx5_db_alloc() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Avoid setting DC requestor/responder resources (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Coding style fix (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix call to mlx5_core_qp_modify (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Allocate firmware pages from device's NUMA node (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add RX-ALL support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add RX-FCS support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add interface identify support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add SET_PORT opcode modifiers enumeration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Set enhanced QoS support by default when ETS supported (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Warn users of depracated QoS Firmware (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Added qos_vport QP configuration in VST mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Allocate VPPs for each port on PF init (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Query device for QoS per VF support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add mlx4_SET_VPORT_QOS implementation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add mlx4_ALLOCATE_VPP implementation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: New file for QoS related firmware commands (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Aesthetic code changes in multi_func_init (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Make mlx4_is_eth visible inline funcion (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Change loopback only upon feature change (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add RSS support for fragmented IP datagrams (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Moderate ethtool callback to show more statistics (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add Flow control statistics display via ethtool (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Protect access to the statistics bitmap (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Support general selective view of ethtool statistics (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Move statistics bitmap setting to the Ethernet driver (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Create new header file for all statistics info (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix port counters statistics bitmask (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix GEN_EQE accessing uninitialixed mutex (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Call register_netdevice in the proper location (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Set statistics bitmap at port init (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Saturate RoCE port PMA counters in case of overflow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Fix off-by-one in ethtool statistics display (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Verify net device validity on port change event (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add basic support for QP max-rate limiting (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: don't export static symbol (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: codespell comment spelling fixes (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use eth_<foo>_addr instead of memset (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Disbale GRO for incoming loopback/selftest packets (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix wrong mask and error flow for the update-qp command (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Update the dev in reg_create (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: In mlx4_ib_demux_cm, print out GUID in host-endian order (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Bug fixes in mlx4_ib_resize_cq (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Fix memory leak in __mlx4_ib_modify_qp (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Fix error code in get_port_caps() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix configuration of log_uar_page_sz (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] net: mellanox: Delete unnecessary checks before the function call "vunmap" (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Reset flow support for IB kernel ULPs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Always use the correct port for mirrored multicast attachments (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Notify TX Vlan offload change (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Adjust RX frag strides to frag sizes (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Print page allocator information (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Move to use hex PCI device IDs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix misleading debug print on CQE stride support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix mpt_entry initialization in mlx4_mr_rereg_mem_write() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Load balance ports in port aggregation mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Create mirror flows in port aggregation mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Add port aggregation support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Reuse mlx4_mac_to_u64() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Port aggregation upper layer interface (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Port aggregation low level interface (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix kernel Oops (mem corruption) when working with more than 80 VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Update the HCA core clock frequency after INIT_PORT (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix device capabilities dumping (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Fix memory corruption in mlx4_MAD_IFC_wrapper (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use ethtool cmd->autoneg as a hint for ethtool set settings (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Remove duplicate code line from procedure mlx4_bf_alloc (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix struct mlx4_vhcr_cmd to make implicit padding explicit (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix HW2SW_EQ to conform to the firmware spec (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Adjust command timeouts to conform to the firmware spec (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix mem leak in SRIOV mlx4_init_one error flow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add reserved lkey for VFs to QUERY_FUNC_CAP (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add bad-cable event support (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Reset flow activation upon SRIOV fatal command cases (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Enable device recovery flow with SRIOV (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Handle AER flow properly (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Manage interface state for Reset flow cases (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Activate reset flow upon fatal command cases (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Enhance the catas flow to support device reset (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Refactor the catas flow to work per device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Set device configuration data to be persistent across reset (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Maintain a persistent memory for mlx4 device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Don't disable vxlan offloads under DMFS-A0 optimized steering (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] infiniband: mlx5: avoid a compile-time warning (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: avoid build warnings on 32-bit (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: include clocksource.h again (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix error flow in mlx4_init_hca() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Correcly update the mtt's offset in the MR re-reg flow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Doorbell is byteswapped in Little Endian archs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Implement on demand paging by adding support for MMU notifiers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Add support for RDMA read/write responder page faults (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Handle page faults (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Page faults handling infrastructure (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Add mlx5_ib_update_mtt to update page tables after creation (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Changes in memory region creation to support on-demand paging (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Implement the ODP capability query verb (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Add support for page faults events and low level handling (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Add function to read WQE from user-space (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Enhance UMR support to allow partial page table update (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Remove per-MR pas and dma pointers (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Check for DPDP violation only when DPDP is not supported (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Fix an incorrectly shadowed variable in mlx4_ib_rereg_user_mr (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Avoid double dumping of the PF device capabilities (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fixed memory leak and incorrect refcount in mlx4_load_one (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add support for A0 steering (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Refactor QUERY_PORT (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add explicit error message when rule doesn't meet configuration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add A0 hybrid steering (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add mlx4_bitmap zone allocator (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Add a check if there are too many reserved QPs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Change QP allocation scheme (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Use tasklet for user-space CQ completion events (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Mask out host side virtualization features for guests (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Set csum level for encapsulated packets (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Fix error flow in add_keys (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: Fix sparse warnings (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Clear outbox of dealloc uar (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Print resource number on QP/SRQ async events (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix command queue size enforcement (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix min vectors value in mlx5_enable_msix (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Request the mlx5 IB module on driver load (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Limit count field to 24 bits in qp_alloc_res (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: don't duplicate kvfree() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5: don't duplicate kvfree() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Support more than 64 VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Flexible (asymmetric) allocation of EQs and MSI-X vectors for PF/VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add QUERY_FUNC firmware command (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Refactor mlx4_load_one (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Refactor mlx4_cmd_init and mlx4_cmd_cleanup (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Use correct variable type for mlx4_slave_cap (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Fix wrong reading of reserved_eqs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Extend checksum offloading by CHECKSUM COMPLETE (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Extend usage of napi_gro_frags (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix race on driver load (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Fix race in create EQ (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Add retrieval of CONFIG_DEV parameters (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add __GFP_COLD gfp flags in alloc_pages (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Remove RX buffers alignment to IP_ALIGN (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Prevent VF from changing port configuration (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: use napi_schedule_irqoff() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Report actual number of rings in indirection table (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Move spinlocks and work initalizations to beginning of init_netdev (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Call napi_synchronize on stop_port (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Cleanups suggested by clang static checker (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add ethtool support for [rx|tx]vlan offload set to OFF/ON (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Add support for setting rxvlan offload OFF/ON (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Call synchronize_irq() before freeing EQ buffer (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Call synchronize_irq() before freeing EQ buffer (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: fix race accessing page->_count (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Use extended internal signature layout (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Use enumerations for PI copy mask (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Modify to work with arbitrary page size (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Remove duplicate code from mlx5_set_path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Fix possible array overflow (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Improve debug prints in mlx5_ib_reg_user_mr (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx5: Clear umr resources after ib_unregister_device (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: remove NETDEV_TX_BUSY (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Enable the compiler to make is_inline() inlined (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use local var for skb_headlen(skb) (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use local var in tx flow for skb_shinfo(skb) (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: mlx4_en_xmit() reads ring->cons once, and ahead of time to avoid stalls (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Avoid false sharing in mlx4_en_en_process_tx_cq() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Use prefetch in tx path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Avoid a cache line miss in TX completion for single frag skb's (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: tx_info allocated with kmalloc() instead of vmalloc() (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Avoid calling bswap in tx fast path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Align tx path structures to cache lines (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_en: Code cleanups in tx path (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: add a new xmit_more counter (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Identify resources by their type (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: use set/get macros in device caps (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Use hardware registers description header file (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx5_core: Update device capabilities handling (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Deprecate error message at ConnectX-2 cards startup to debug (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Protect QUERY_PORT wrapper from untrusted guests (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: New init and exit flow for mlx4_core (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Don't disable SRIOV if there are active VFs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: exploit skb->xmit_more to conditionally send doorbell (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4_core: Allow not to specify probe_vf in SRIOV IB mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mellanox: Change en_print to return void (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Fix VF mac handling in RoCE (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Do not allow APM under RoCE (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Don't update QP1 in native mode (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Avoid accessing netdevice when building RoCE qp1 header (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Fix mlx4 reg/unreg mac to work properly with 0-mac addresses (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [netdrv] mlx4: Correct error flows in rereg_mr (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [infiniband] mlx4: Disable TSO for Connect-X rev. A0 HCAs (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [net] netif_set_xps_queue: make cpu mask const (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-- [net] core: Add reading VF statistics through the PF netdevice (Amir Vadai) [1164527 1164530 1164531 1164536 1164537]
-
-* Thu Jul 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-298.el7]
-- [fs] sunrpc: Adjust rpciod workqueue parameters (Benjamin Coddington) [1191956]
-- [fs] ovl: lookup whiteouts outside iterate_dir() (David Howells) [1178942]
-- [fs] ovl: allow distributed fs as lower layer (David Howells) [1178942]
-- [fs] ovl: don't traverse automount points (David Howells) [1178942]
-- [fs] ovl: mount read-only if workdir can't be created (David Howells) [1178942]
-- [fs] ovl: don't remove non-empty opaque directory (David Howells) [1178942]
-- [fs] ovl: rearrange ovl_follow_link to it doesn't need to call ->put_link (David Howells) [1178942]
-- [fs] ovl: upper fs should not be R/O (David Howells) [1178942]
-- [fs] ovl: check lowerdir amount for non-upper mount (David Howells) [1178942]
-- [fs] ovl: print error message for invalid mount options (David Howells) [1178942]
-- [fs] ovl: discard independent cursor in readdir() (David Howells) [1178942]
-- [fs] ovl: Prevent rw remount when it should be ro mount (David Howells) [1178942]
-- [fs] ovl: Fix opaque regression in ovl_lookup (David Howells) [1178942]
-- [fs] ovl: Fix kernel panic while mounting overlayfs (David Howells) [1178942]
-- [fs] ovl: Use macros to present ovl_xattr (David Howells) [1178942]
-- [fs] ovl: Cleanup redundant blank lines (David Howells) [1178942]
-- [fs] ovl: support multiple lower layers (David Howells) [1178942]
-- [fs] ovl: make upperdir optional (David Howells) [1178942]
-- [fs] ovl: improve mount helpers (David Howells) [1178942]
-- [fs] ovl: mount: change order of initialization (David Howells) [1178942]
-- [fs] ovl: allow statfs if no upper layer (David Howells) [1178942]
-- [fs] ovl: lookup ENAMETOOLONG on lower means ENOENT (David Howells) [1178942]
-- [fs] ovl: check whiteout on lowest layer as well (David Howells) [1178942]
-- [fs] ovl: multi-layer lookup (David Howells) [1178942]
-- [fs] ovl: multi-layer readdir (David Howells) [1178942]
-- [fs] ovl: helper to iterate layers (David Howells) [1178942]
-- [fs] ovl: add mutli-layer infrastructure (David Howells) [1178942]
-- [fs] ovl: dont replace opaque dir (David Howells) [1178942]
-- [fs] ovl: make path-type a bitmap (David Howells) [1178942]
-- [fs] ovl: check whiteout while reading directory (David Howells) [1178942]
-- [fs] coredump: add i/I in core_pattern to report the tid of the crashed thread (Oleg Nesterov) [1240966]
-- [fs] bio-integrity: do not assume bio_integrity_pool exists if bioset exists (Mike Snitzer) [1198035]
-- [md] dm-btree: silence lockdep lock inversion in dm_btree_del() (Mike Snitzer) [1186625]
-- [md] dm-thin: allocate the cell_sort_array dynamically (Mike Snitzer) [1244318]
-- [md] dm-cache: avoid calls to prealloc_free_structs() if possible (Mike Snitzer) [1244247]
-- [md] dm-cache: avoid preallocation if no work in writeback_some_dirty_blocks() (Mike Snitzer) [1244247]
-- [md] dm-cache: do not wake_worker() in free_migration() (Mike Snitzer) [1244247]
-- [md] dm-cache: display 'needs_check' in status if it is set (Mike Snitzer) [1243916]
-- [md] dm-thin: display 'needs_check' in status if it is set (Mike Snitzer) [1243916]
-- [md] dm-thin: stay in out-of-data-space mode once no_space_timeout expires (Mike Snitzer) [1243913]
-- [char] ipmi_ssif: add arguments that were removed upstream (Tony Camuso) [1229675]
-- [powerpc] msi: Use WARN_ON() in msi bitmap selftests (Steve Best) [1241612]
-- [powerpc] msi: Fix the msi bitmap alignment tests (Steve Best) [1241612]
-
-* Mon Jul 20 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-297.el7]
-- [kernel] Make some warnings non-fatal for powerpc builds (Thomas Huth) [1243836]
-- [edac] amd64_edac: Add F15h M60h support (Kim Naru) [1135004]
-- [edac] Sync memory types and names (Kim Naru) [1135004]
-- [edac] mc: Add DDR3 LRDIMM entries to edac_mem_types (Kim Naru) [1135004]
-- [x86] amd_nb: Add device IDs to NB tables for F15h M60h (Kim Naru) [1135004]
-- [edac] amd64_edac: Modify usage of amd64_read_dct_pci_cfg() (Kim Naru) [1135004]
-- [edac] mce_amd: Add MCE decoding for F15h M60h (Kim Naru) [1135004]
-- [edac] amd64_edac: Remove "amd64" prefix from static functions (Kim Naru) [1135004]
-- [zram] don't grab mutex in zram_slot_free_noity (Seth Jennings) [1236697]
-- [fs] revert "nfs: Fixing lease renewal" (Carlos Maiolino) [1205048]
-- [md] raid0: Disable discard per default due to performance uncertainty (Jes Sorensen) [1215280]
-- [net] udp: fix behavior of wrong checksums (Denys Vlasenko) [1240761] {CVE-2015-5364 CVE-2015-5366}
-- [net] tcp: always send a quick ack when quickacks are enabled (Hannes Frederic Sowa) [1241718]
-- [net] tcp: tcp_get_info() should fetch socket fields once (Sabrina Dubroca) [1235100]
-- [net] tcp: add pacing_rate information into tcp_info (Sabrina Dubroca) [1235100]
-- [net] tcp: do not pace pure ack packets (Sabrina Dubroca) [1235100]
-- [net] ipv4: tcp: get rid of ugly unicast_sock (Sabrina Dubroca) [1235100]
-- [net] ipv4: dst_entry leak in ip_send_unicast_reply() (Sabrina Dubroca) [1235100]
-- [net] ipv4: rename ip_options_echo to __ip_options_echo() (Sabrina Dubroca) [1235100]
-- [net] tcp: ipv4: initialize unicast_sock sk_pacing_rate (Sabrina Dubroca) [1235100]
-- [net] tcp: refine TSO autosizing (Sabrina Dubroca) [1235100]
-- [net] tcp: use ACCESS_ONCE() in tcp_update_pacing_rate() (Sabrina Dubroca) [1235100]
-- [net] introduce SO_MAX_PACING_RATE (Sabrina Dubroca) [1235100]
-- [net] configs: enable Fair Queue scheduler (CONFIG_NET_SCH_FQ) (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: correct spelling of locally (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: better control of DDOS traffic (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: avoid hang when quantum 0 (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: remove useless TIME_WAIT check (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: increase max delay from 125 ms to one second (Sabrina Dubroca) [1235102]
-- [net] net_sched: avoid costly atomic operation in fq_dequeue() (Sabrina Dubroca) [1235102]
-- [net] netem: Fixes byte backlog accounting for the first of two chained netem instances (Sabrina Dubroca) [1235102]
-- [net] net_sched: implement qstat helper routines (Sabrina Dubroca) [1235102]
-- [net] sch_tbf: handle too small burst (Sabrina Dubroca) [1235102]
-- [net] sch_tbf: segment too big GSO packets (Sabrina Dubroca) [1235102]
-- [net] netem: update backlog after drop (Sabrina Dubroca) [1235102]
-- [net] net_sched: increment drop counters in qdisc_tree_decrease_qlen() (Sabrina Dubroca) [1235102]
-- [net] netem: fix possible NULL deref in netem_dequeue() (Sabrina Dubroca) [1235102]
-- [net] netem: use rb tree to implement the time queue (Sabrina Dubroca) [1235102]
-- [net] net_sched: return nla_nest_end() instead of skb->len (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: do not hold qdisc lock while allocating memory (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: more robust memory allocation (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: fix pacing for small frames (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: warn users using defrate (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: change classification of control packets (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: clear time_next_packet for reused flows (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: fix non TCP flows pacing (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: fix typo for initial_quantum (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: rate limiting improvements (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: qdisc dismantle fixes (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: prefetch() fix (Sabrina Dubroca) [1235102]
-- [net] pkt_sched: fq: Fair Queue packet scheduler (Sabrina Dubroca) [1235102]
-
-* Fri Jul 17 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-296.el7]
-- [x86] irq: hide HYP in /proc/interrupts when not on Xen/Hyper-V (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] hyperv: restore irq accounting (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] xen: Add proper irq accounting for HYPERCALL vector (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] irq: Properly tag virtualization entry in /proc/interrupts (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] Add proper vector accounting for HYPERVISOR_CALLBACK_VECTOR (Vitaly Kuznetsov) [1238596 1238599]
-- [x86] kvm: keep track of LVT0 changes under APICv (Radim Krcmar) [1236434]
-- [x86] kvm: properly restore LVT0 (Radim Krcmar) [1236434]
-- [x86] kvm: make vapics_in_nmi_mode atomic (Radim Krcmar) [1236434]
-- [netdrv] sfc: Report TX completions to BQL after all TX events in interrupt (Jarod Wilson) [1242006]
-- [netdrv] sfc: Ensure down_write(&filter_sem) and up_write() are matched before calling efx_net_open() (Jarod Wilson) [1242006]
-- [netdrv] sfc: suppress handled MCDI failures when changing the MAC address (Jarod Wilson) [1242006]
-- [netdrv] sfc: add legacy method for changing a PF's MAC address (Jarod Wilson) [1242006]
-- [netdrv] sfc: refactor code in efx_ef10_set_mac_address() (Jarod Wilson) [1242006]
-- [crypto] nx - replace NX842_MEM_COMPRESS with function (Gustavo Duarte) [1221925]
-- [crypto] nx - move include/linux/nx842.h into drivers/crypto/nx/nx-842.h (Gustavo Duarte) [1221925]
-- [crypto] nx - fix nx-842 pSeries driver minimum buffer size (Gustavo Duarte) [1221925]
-- [crypto] nx - prevent nx 842 load if no hw driver (Gustavo Duarte) [1221925]
-- [crypto] nx - remove 842-nx null checks (Gustavo Duarte) [1221925]
-- [lib] correct 842 decompress for 32 bit (Gustavo Duarte) [1221925]
-- [lib] make lib/842 decompress functions static (Gustavo Duarte) [1221925]
-- [crypto] nx - add hardware 842 crypto comp alg (Gustavo Duarte) [1221925]
-- [crypto] nx - simplify pSeries nx842 driver (Gustavo Duarte) [1221925]
-- [crypto] nx - add PowerNV platform NX-842 driver (Gustavo Duarte) [1221925]
-- [crypto] nx - add nx842 constraints (Gustavo Duarte) [1221925]
-- [crypto] nx - add NX-842 platform frontend driver (Gustavo Duarte) [1221925]
-- [crypto] nx - rename nx-842.c to nx-842-pseries.c (Gustavo Duarte) [1221925]
-- [crypto] 842 - change 842 alg to use software (Gustavo Duarte) [1221925]
-- [lib] add software 842 compression/decompression (Gustavo Duarte) [1221925]
-- [powerpc] Add ICSWX instruction (Gustavo Duarte) [1221925]
-- [powerpc] export of_get_ibm_chip_id function (Gustavo Duarte) [1221925]
-- [crypto] Add 2 missing __exit_p (Gustavo Duarte) [1221925]
-- [crypto] nx-842: dev_set_drvdata can no longer fail (Gustavo Duarte) [1221925]
-- [crypto] nx - Use RCU_INIT_POINTER(x, NULL) (Gustavo Duarte) [1221925]
-- [crypto] nx-842: Fix handling of vmalloc addresses (Gustavo Duarte) [1221925]
-- [powerpc] perf: Fail 24x7 initcall if create_events_from_catalog() fails (Gustavo Duarte) [1182055]
-- [powerpc] perf: 24x7: Fix lockdep warning (Gustavo Duarte) [1182055]
-- [powerpc] perf: Document sysfs event description entries (Gustavo Duarte) [1182055]
-- [powerpc] perf: add the remaining gpci requests (Gustavo Duarte) [1182055]
-- [powerpc] perf: generate requests with counters annotated (Gustavo Duarte) [1182055]
-- [powerpc] perf: parse catalog and populate sysfs with events (Gustavo Duarte) [1182055]
-- [powerpc] perf: define EVENT_DEFINE_RANGE_FORMAT_LITE helper (Gustavo Duarte) [1182055]
-- [powerpc] perf: documentation: Add event parameters (Gustavo Duarte) [1182055]
-- [powerpc] perf: documentation: Remove duplicated docs for powerpc cpu specific events (Gustavo Duarte) [1182055]
-- [powerpc] perf: documentation: sysfs events/ interfaces (Gustavo Duarte) [1182055]
-- [powerpc] perf: Use common PMU interrupt disabled code (Gustavo Duarte) [1182055]
-- [powerpc] mm: Serialize pmd clear against a linux page table walk (Gustavo Duarte) [1233071]
-- [powerpc] mm: Return NULL for not present hugetlb page (Gustavo Duarte) [1233071]
-- [powerpc] mm: Return pte address if we find trans_splitting (Gustavo Duarte) [1233071]
-- [powerpc] mm: Make page table walk safe against thp split/collapse (Gustavo Duarte) [1233071]
-- [powerpc] kvm: Remove page table walk helpers (Gustavo Duarte) [1233071]
-
-* Wed Jul 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-295.el7]
-- [powerpc] powernv: Fix race in updating core_idle_state (Steve Best) [1237270]
-- [cpuidle] powernv: Auto-promotion of snooze to deeper idle state (Gustavo Duarte) [1235256]
-- [netdrv] e1000, e1000e: Use dma_rmb instead of rmb for descriptor read ordering (John Greene) [1173781]
-- [netdrv] e1000: add dummy allocator to fix race condition between mtu change and netpoll (John Greene) [1173781]
-- [netdrv] e1000: call netif_carrier_off early on down (John Greene) [1173781]
-- [netdrv] e1000: support txtd update delay via xmit_more (John Greene) [1173781]
-- [netdrv] e1000: fix time comparison (John Greene) [1173781]
-- [netdrv] bna: revert "Update the Driver and Firmware Version" (Ivan Vecera) [1240644]
-- [kernel] module: remove TAINT_CRAP on staging modules (Prarit Bhargava) [1242024]
-- [block] revert "remove artifical max_hw_sectors cap" (Jeff Moyer) [1238922]
-- [perf] bench-numa: Show more stats of particular threads in verbose mode (Petr Holasek) [1018954]
-- [scsi] don't add scsi_device if its already visible (Vitaly Kuznetsov) [1242390]
-- [scsi] iscsi: let session recovery_tmo sysfs writes persist across recovery (Chris Leech) [1139038]
-- [edac] Properly unwind on failure path in edac_init() (Seth Jennings) [1240814]
-- [edac] Allow to pass driver-specific attribute groups (Seth Jennings) [1240814]
-- [edac] Use static attribute groups for managing sysfs entries (Seth Jennings) [1240814]
-- [edac] edac: edac_mc_sysfs: Make stuff static (Seth Jennings) [1240814]
-- [edac] Fix the leak of mci->bus->name when bus_register fails (Seth Jennings) [1240814]
-- [edac] Mark edac_create_debug_nodes as static (Seth Jennings) [1240814]
-- [x86] revert "pci: Refine the way to release PCI IRQ resources" (Steve Best) [1231358 1238216]
-- [x86] pci: Refine the way to release PCI IRQ resources (Steve Best) [1231358 1238216]
-- [x86] irq: Keep balance of IOAPIC pin reference count (Steve Best) [1231358 1238216]
-- [x86] irq: Fix placement of mp_should_keep_irq() (Steve Best) [1231358 1238216]
-- [x86] irq, pci: Keep IRQ assignment for runtime power management (Steve Best) [1231358 1238216]
-- [x86] irq, pci: Keep IRQ assignment for PCI devices during suspend/hibernation (Steve Best) [1231358 1238216]
-- [x86] Mark Intel Skylake-S processor as supported (Steve Best) [1131729]
-- [x86] bpf_jit: fix compilation of large bpf programs (Denys Vlasenko) [1236939] {CVE-2015-4700}
-- [x86] ASLR bruteforce possible for vdso library (Jacob Tanenbaum) [1184899] {CVE-2014-9585}
-- [x86] mm: Improve AMD Bulldozer ASLR workaround (Prarit Bhargava) [1240884]
-- [dma] ioat: fix tasklet tear down ("Herton R. Krzesinski") [1210093]
-- [md] revert "dm: only run the queue on completion if congested or no requests pending" (Mike Snitzer) [1241237]
-- [fs] nfsv4: Always drain the slot table before re-establishing the lease (Benjamin Coddington) [1240790]
-- [mm] export find_extend_vma() and handle_mm_fault() for driver use (Jerome Glisse) [1210492]
-- [mm] mmu_notifier: add new callback for mmu_notifier without breaking kabi (Jerome Glisse) [1210492]
-- [mm] mmu_notifier: call mmu_notifier_invalidate_range() from VMM (Jerome Glisse) [1210492]
-- [mm] mmu_notifier: add mmu_notifier_invalidate_range() (Jerome Glisse) [1210492]
-
-* Fri Jul 10 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-294.el7]
-- [video] radeon: Conditionally compile PM code (Thomas Huth) [1238568]
-- [char] ipmi: Fix backport of powernv IPMI driver (Thomas Huth) [1238568]
-- [of] Silence warning due to bad backport in drivers/of/base.c (Thomas Huth) [1238568]
-- [powerpc] boot/fdt: Use unsigned long for pointer casts (Thomas Huth) [1238568]
-- [char] hwrng: pseries - remove incorrect __init/__exit markups (Thomas Huth) [1238568]
-- [mm] page_alloc.c: use '__paginginit' instead of '__init' (Thomas Huth) [1238568]
-- [fs] fuse: fix "uninitialized variable" warning (Thomas Huth) [1238568]
-- [powerpc] powernv: Fix merge issue for opal-prd channel (Rafael Aquini) [1221110 1229224]
-- [powerpc] PowerNV kernel is not able to manage 16G pages (Laurent Vivier) [1212273]
-- [s390] kdump: fix REGSET_VX_LOW vector register ELF notes (Hendrik Brueckner) [1236566]
-- [s390] zcrypt: Fixed reset and interrupt handling of AP queues (Hendrik Brueckner) [1238230]
-- [kvm] ppc: book3s-hv: Implement dynamic micro-threading on POWER8 (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Make use of unused threads when running guests (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Use msgsnd for signalling threads on POWER8 (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Translate kvmhv_commence_exit to C (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Streamline guest entry and exit (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Use bitmap of active threads rather than count (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Use decrementer to wake napping threads (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Don't wake thread with no vcpu on guest IPI (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Get rid of vcore nap_count and n_woken (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Fix list traversal in error case (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Move vcore preemption point up into kvmppc_run_vcpu (Laurent Vivier) [1213669]
-- [kvm] ppc: book3s-hv: Simplify handling of VCPUs that need a VPA update (Laurent Vivier) [1213669]
-- [powerpc] powernv: Fixes for hypervisor doorbell handling (Laurent Vivier) [1213669]
-- [x86] kvm: nsvm: Check for NRIPS support before updating control field (Bandan Das) [1167228]
-- [security] keys: Increase root_maxkeys and root_maxbytes sizes (David Howells) [1014573]
-
-* Thu Jul 09 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-293.el7]
-- [fs] gfs2: add support for rename2 and RENAME_EXCHANGE (Benjamin Marzinski) [1163824]
-- [fs] ext4: allocate entire range in zero range (Lukas Czerner) [1187071] {CVE-2015-0275}
-- [fs] overlayfs: Warn on copy up if a process has a R/O fd open to the lower file (David Howells) [1226346]
-- [fs] gfs2: make sure S_NOSEC flag isn't overwritten (Benjamin Marzinski) [1203446]
-- [net] revert "[net] openvswitch: remove GFP_THISNODE" (Jiri Benc) [1238680]
-- [net] revert "[net] dev: set iflink to 0 for virtual interfaces" (Jiri Benc) [1238672]
-- [net] ipv4: __ip_local_out_sk() is static (Jiri Benc) [1234508]
-- [netdrv] ixgbe: Allow flow director to use entire queue space (Thadeu Lima de Souza Cascardo) [1238421]
-- [net] ethtool: Add helper routines to pass vf to rx_flow_spec (Thadeu Lima de Souza Cascardo) [1238421]
-- [net] inet: remove old fragmentation hash initializing (Phil Sutter) [1235733]
-- [net] ipv6: split inet6_hash_frag for netfilter and initialize secrets with net_get_random_once (Phil Sutter) [1235733]
-- [net] ipv4: initialize ip4_frags hash secret as late as possible (Phil Sutter) [1235733]
-- [net] switch net_secret key generation to net_get_random_once (Phil Sutter) [1235733]
-- [net] tcp: Do not call tcp_fastopen_reset_cipher from interrupt context (Phil Sutter) [1235733]
-- [net] tcp: switch tcp_fastopen key generation to net_get_random_once (Phil Sutter) [1235733]
-- [net] inet: convert inet_ehash_secret and ipv6_hash_secret to net_get_random_once (Phil Sutter) [1235733]
-- [net] ipv6: split inet6_ehashfn to hash functions per compilation unit (Phil Sutter) [1235733]
-- [net] ipv4: split inet_ehashfn to hash functions per compilation unit (Phil Sutter) [1235733]
-- [net] ipv4: harden fnhe_hashfun() (Phil Sutter) [1235733]
-- [net] netfilter: nfnetlink_log: remove unused code (Phil Sutter) [1235733]
-- [net] inet: split syncookie keys for ipv4 and ipv6 and initialize with net_get_random_once (Phil Sutter) [1235733]
-- [net] tcp: fix child sockets to use system default congestion control if not set (Phil Sutter) [1235252]
-- [net] netfilter: x_tables: align per cpu xt_counter (Phil Sutter) [1235240]
-- [net] netfilter: x_tables: remove XT_TABLE_INFO_SZ and a dereference (Phil Sutter) [1235240]
-- [net] esp6: Use high-order sequence number bits for IV generation (Herbert Xu) [1232741]
-- [net] esp4: Use high-order sequence number bits for IV generation (Herbert Xu) [1232741]
-- [net] xfrm: Always zero high-order sequence number bits (Herbert Xu) [1232741]
-- [net] drop the packet when fails to do software segmentation or header check (Jason Wang) [1232621]
-- [net] keep original skb which only needs header checking during software GSO (Jason Wang) [1232621]
-- [net] remove some unless free on failure in alloc_netdev_mqs() (Jason Wang) [1231604]
-- [netdrv] tuntap: Increase the number of queues in tun (Jason Wang) [1231604]
-- [net] allow large number of rx queues (Jason Wang) [1231604]
-- [net] allow large number of tx queues (Jason Wang) [1231604]
-- [kernel] hrtimer: Avoid locking in hrtimer_cancel() if timer not active (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Remove bogus hrtimer_active() check (Prarit Bhargava) [1217140]
-- [kernel] alarmtimer: Get rid of unused return value (Prarit Bhargava) [1217140]
-- [kernel] net: core: pktgen: Remove bogus hrtimer_active() check (Prarit Bhargava) [1217140]
-- [kernel] rtmutex: Remove bogus hrtimer_active() check (Prarit Bhargava) [1217140]
-- [kernel] futex: Remove bogus hrtimer_active() check (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Get rid of __hrtimer_start_range_ns() (Prarit Bhargava) [1217140]
-- [kernel] sched: core: Use hrtimer_start[_expires]() (Prarit Bhargava) [1217140]
-- [kernel] perf: core: Use hrtimer_start() (Prarit Bhargava) [1217140]
-- [kernel] x86: perf: uncore: Use hrtimer_start() (Prarit Bhargava) [1217140]
-- [kernel] x86: perf: Use hrtimer_start() (Prarit Bhargava) [1217140]
-- [kernel] tick: nohz: Rework next timer evaluation (Prarit Bhargava) [1217140]
-- [kernel] tick: sched: Restructure code (Prarit Bhargava) [1217140]
-- [kernel] tick: sched: Force tick interrupt and get rid of softirq magic (Prarit Bhargava) [1217140]
-- [kernel] tick: sched: Remove hrtimer_active() checks (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Get rid of hrtimer softirq (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Get rid of softirq time (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Fix incorrect tai offset calculation for non high-res timer systems (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Cleanup hrtimer accessors to the timekepeing state (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Prevent stale expiry time in hrtimer_interrupt() (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Remove hrtimer_enqueue_reprogram() (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Kick lowres dynticks targets on timer enqueue (Prarit Bhargava) [1217140]
-- [kernel] hrtimer: Store cpu-number in struct hrtimer_cpu_base (Prarit Bhargava) [1217140]
-
-* Mon Jul 06 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-292.el7]
-- [fs] gfs2: handle NULL rgd in set_rgrp_preferences (Abhijith Das) [1211663]
-- [fs] gfs2: Don't add all glocks to the lru (Robert S Peterson) [1232841]
-- [fs] gfs2: Don't brelse rgrp buffer_heads every allocation (Robert S Peterson) [1154782]
-- [char] ipmi: Fix merge issue for IPMI SMBus handler (SSFIF) (Rafael Aquini) [1229675]
-- [kernel] sched: Avoid throttle_cfs_rq() racing with period_timer stopping (Rik van Riel) [1236413]
-- [kernel] add support for gcc 5 (Prarit Bhargava) [1227950]
-- [netdrv] vmxnet3: Changes for vmxnet3 adapter version 2 (fwd) (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Fix memory leaks in rx path (fwd) (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Register shutdown handler for device (fwd) (Neil Horman) [1237012]
-- [netdrv] vmxnet3: spelling fixes (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Copy TCP header to mapped frame for IPv6 packets (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Change the hex constant to its decimal equivalent (Neil Horman) [1237012]
-- [netdrv] vmxnet3: Fix ethtool -S to return correct rx queue stats (Neil Horman) [1237012]
-- [netdrv] bnx2x: fix DMA API usage (Michal Schmidt) [1234874 1236582]
-- [netdrv] bnx2x: fix lockdep splat (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Fix linearization for encapsulated packets (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Release nvram lock on error flow (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Fix statistics gathering on link change (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Fix self-test for 20g devices (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Fix VF MAC removal (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Don't notify about scratchpad parities (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Prevent false warning when accessing MACs (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Correct speed from baseT into KR (Michal Schmidt) [1236582]
-- [netdrv] bnx2x: Correct asymmetric flow-control (Michal Schmidt) [1236582]
-
-* Mon Jul 06 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-291.el7]
-- [x86] perf: ibs: Update IBS MSRs and feature definitions (Jiri Olsa) [1135033]
-- [x86] Mark Intel Skylake-Y processor as supported (Steve Best) [1176665]
-- [edac] sb_edac: support for Broadwell -EP and -EX (Seth Jennings) [1223598]
-- [edac] sb_edac: Fix support for systems with two home agents per socket (Seth Jennings) [1223598]
-- [edac] sb_edac: Fix a typo and a thinko in address handling for Haswell (Seth Jennings) [1223598]
-- [edac] Remove arbitrary limit on number of channels (Seth Jennings) [1223598]
-- [edac] sb_edac: Fix detection on SNB machines (Seth Jennings) [1223598]
-- [edac] sb_edac: Fix erroneous bytes->gigabytes conversion (Seth Jennings) [1223598]
-- [edac] sb_edac: Claim a different PCI device (Seth Jennings) [1223598]
-- [edac] Move Intel SNB device ids from sb_edac to pci_ids.h (Seth Jennings) [1223598]
-- [edac] sb_edac: Mark get_mci_for_node_id as static (Seth Jennings) [1223598]
-- [kernel] genirq: Fix memory leak when calling irq_free_hwirqs() (Steve Best) [1237186]
-- [kernel] module: Call module notifier on failure after complete_formation() (Bandan Das) [1236273]
-- [documentation] intel_pstate: Improve legacy mode internal governors description (Prarit Bhargava) [1236586]
-
-* Thu Jul 02 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-290.el7]
-- [hv] fcopy: set .owner reference for file operations (Vitaly Kuznetsov) [1236557]
-- [md] dm-btree-remove: fix bug in redistribute3 (Mike Snitzer) [1236092]
-- [x86] kvm: Enable PMU handling for AMD PERFCTRn and EVNTSELn MSRs (Wei Huang) [1076010]
-- [x86] kvm: Implement AMD vPMU code for KVM (Wei Huang) [1076010]
-- [x86] kvm: Define kvm_pmu_ops to support vPMU function dispatch (Wei Huang) [1076010]
-- [x86] kvm: vpmu: introduce kvm_pmu_msr_idx_to_pmc (Wei Huang) [1076010]
-- [x86] kvm: vpmu: reorder PMU functions (Wei Huang) [1076010]
-- [x86] kvm: vpmu: whitespace and stylistic adjustments in PMU code (Wei Huang) [1076010]
-- [x86] kvm: vpmu: use the new macros to go between PMC, PMU and VCPU (Wei Huang) [1076010]
-- [x86] kvm: vpmu: introduce pmu.h header (Wei Huang) [1076010]
-- [x86] kvm: vpmu: rename a few PMU functions (Wei Huang) [1076010]
-- [s390] crypto: ghash - Fix incorrect ghash icv buffer handling (Herbert Xu) [1207598]
-- [video] vt_buffer: drop console buffer copying optimisations (Dave Airlie) [1187449]
-- [netdrv] i40evf: fix panic during MTU change (Stefan Assmann) [1233585]
-- [netdrv] i40evf: don't configure unused RSS queues (Stefan Assmann) [1233649]
-- [security] lsm: get comm using lock to avoid race in string printing (Richard Guy Briggs) [1056327]
-- [kernel] audit: get comm using lock to avoid race in string printing (Richard Guy Briggs) [1056327]
-- [kernel] sched: cope with kabi constraints (Stanislaw Gruszka) [1064059]
-- [kernel] sched: Provide update_curr callbacks for stop/idle scheduling classes (Stanislaw Gruszka) [1064059]
-- [kernel] sched/cputime: Fix clock_nanosleep()/clock_gettime() inconsistency (Stanislaw Gruszka) [1064059]
-- [kernel] sched/cputime: Fix cpu_timer_sample_group() double accounting (Stanislaw Gruszka) [1064059]
-
-* Wed Jul 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-289.el7]
-- [crypto] krng: Remove krng (Herbert Xu) [1229738]
-- [crypto] drbg: Add stdrng alias and increase priority (Herbert Xu) [1229738]
-- [crypto] seqiv: Move IV seeding into init function (Herbert Xu) [1229738]
-- [crypto] eseqiv: Move IV seeding into init function (Herbert Xu) [1229738]
-- [crypto] chainiv: Move IV seeding into init function (Herbert Xu) [1229738]
-- [security] selinux: convert WARN_ONCE() to printk() in selinux_nlmsg_perm() (Richard Guy Briggs) [1066686]
-- [security] selinux: cleanup error reporting in selinux_nlmsg_perm() (Richard Guy Briggs) [1066686]
-- [security] audit: fix dangling keywords in integrity ima message output (Richard Guy Briggs) [1066686]
-- [security] audit: invalid op= values for rules (Richard Guy Briggs) [1066686]
-- [security] selinux: normalize audit log formatting (Richard Guy Briggs) [1066686]
-- [fs] Fix problem recognizing symlinks (Sachin Prabhu) [1232788]
-- [fs] Fix mfsymlinks file size check (Sachin Prabhu) [1232788]
-- [fs] Update version number displayed by modinfo for cifs.ko (Sachin Prabhu) [1232788]
-- [fs] cifs: remove dead code (Sachin Prabhu) [1232788]
-- [fs] Fix setting time before epoch (negative time values) (Sachin Prabhu) [1232788]
-- [fs] Clarify Kconfig help text for CIFS and SMB2/SMB3 (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix wrong filename length for SMB2 (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix wrong restart readdir for SMB1 (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix directory rename error (Sachin Prabhu) [1232788]
-- [fs] cifs: Allow directIO read/write during cache=strict (Sachin Prabhu) [1232788]
-- [fs] cifs: remove unneeded check of null checking in if condition (Sachin Prabhu) [1232788]
-- [fs] cifs: fix a possible use of uninit variable in SMB2_sess_setup (Sachin Prabhu) [1232788]
-- [fs] cifs: fix memory leak when password is supplied multiple times (Sachin Prabhu) [1232788]
-- [fs] cifs: fix a possible null pointer deref in decode_ascii_ssetup (Sachin Prabhu) [1232788]
-- [fs] Trivial whitespace fix (Sachin Prabhu) [1232788]
-- [fs] Enable fallocate -z support for SMB3 mounts (Sachin Prabhu) [1232788]
-- [fs] enable fallocate punch hole ("fallocate -p") for SMB3 (Sachin Prabhu) [1232788]
-- [fs] Incorrect error returned on setting file compressed on SMB2 (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix wrong directory attributes after rename (Sachin Prabhu) [1232788]
-- [fs] cifs: Fix SMB2 readdir error handling (Sachin Prabhu) [1232788]
-- [fs] Workaround MacOS server problem with SMB2.1 write response (Sachin Prabhu) [1232788]
-- [fs] cifs: handle lease F_UNLCK requests properly (Sachin Prabhu) [1232788]
-- [fs] Cleanup sparse file support by creating worker function for it (Sachin Prabhu) [1232788]
-- [fs] Add sparse file support to SMB2/SMB3 mounts (Sachin Prabhu) [1232788]
-- [fs] Add missing definitions for CIFS File System Attributes (Sachin Prabhu) [1232788]
-- [fs] Add worker function to set allocation size (Sachin Prabhu) [1232788]
-- [fs] Fix incorrect hex vs. decimal in some debug print statements (Sachin Prabhu) [1232788]
-- [fs] Delete cifs specific helper functions for iter operations (Sachin Prabhu) [1232788]
-- [fs] Backport iov_iter_truncate() (Sachin Prabhu) [1232788]
-- [fs] new helper: copy_page_from_iter() (Sachin Prabhu) [1232788]
-- [fs] Introduce copy_page_to_iter (Sachin Prabhu) [1232788]
-- [fs] nfsv4: Ensure we skip delegations that are already being returned (Benjamin Coddington) [1206610]
-- [fs] nfsv4: Pin the superblock while we're returning the delegation (Benjamin Coddington) [1206610]
-- [fs] nfsv4: Ensure we honour NFS_DELEGATION_RETURNING in nfs_inode_set_delegation() (Benjamin Coddington) [1206610]
-- [fs] nfsv4: Ensure that we don't reap a delegation that is being returned (Benjamin Coddington) [1206610]
-- [fs] sunrpc: make debugfs file creation failure non-fatal (Benjamin Coddington) [1235634]
-- [fs] sunrpc: add a debugfs rpc_xprt directory with an info file in it (Benjamin Coddington) [1235634]
-- [fs] sunrpc: add debugfs file for displaying client rpc_task queue (Benjamin Coddington) [1235634]
-- [fs] sunrpc: eliminate RPC_TRACEPOINTS (Benjamin Coddington) [1235634]
-- [fs] nfsd: eliminate NFSD_DEBUG (Benjamin Coddington) [1235634]
-- [fs] sunrpc: eliminate RPC_DEBUG (Benjamin Coddington) [1235634]
-- [fs] lockd: eliminate LOCKD_DEBUG (Benjamin Coddington) [1235634]
-- [fs] nfs: take extra reference to fl->fl_file when running a setlk (Benjamin Coddington) [1236569]
-- [fs] xfs: don't truncate attribute extents if no extents exist (Brian Foster) [1236045]
-- [fs] fixing infinite OPEN loop in 4.0 stateid recovery (Benjamin Coddington) [1219184]
-- [fs] Recover from stateid-type error on SETATTR (Benjamin Coddington) [1214410]
-- [fs] pnfs: Fix a memory leak when attempted pnfs fails (Steve Dickson) [1234986]
-- [fs] nfs: Add a stub for GETDEVICELIST (Benjamin Coddington) [1234797]
-- [fs] nfs: fix high load average due to callback thread sleeping (Benjamin Coddington) [1234797]
-- [fs] sunrpc: fix braino in ->poll() (Benjamin Coddington) [1234797]
-- [fs] nfs: Fix a regression in the read() syscall (Benjamin Coddington) [1234797]
-- [fs] nfsv4: Don't call put_rpccred() under the rcu_read_lock() (Benjamin Coddington) [1234797]
-- [fs] nfs: Don't invalidate a submounted dentry in nfs_prime_dcache() (Benjamin Coddington) [1234797]
-- [fs] nfs: struct nfs_commit_info.lock must always point to inode->i_lock (Benjamin Coddington) [1234797]
-- [fs] nfsv4.1: Fix a kfree() of uninitialised pointers in decode_cb_sequence_args (Benjamin Coddington) [1234797]
-- [fs] nfsv4: Ensure we reference the inode for return-on-close in delegreturn (Benjamin Coddington) [1234797]
-- [fs] sunrpc: NULL utsname dereference on NFS umount during namespace cleanup (Benjamin Coddington) [1234797]
-- [fs] nfs: don't call blocking operations while !TASK_RUNNING (Benjamin Coddington) [1234797]
-- [fs] nfs: fix dio deadlock when O_DIRECT flag is flipped (Benjamin Coddington) [1234797]
-- [fs] nfsv4.1: Fix client id trunking on Linux (Benjamin Coddington) [1234797]
-- [fs] nfs41: fix nfs4_proc_layoutget error handling (Benjamin Coddington) [1234797]
-- [fs] nfs: fix subtle change in COMMIT behavior (Benjamin Coddington) [1234797]
-- [fs] sunrpc: Fix locking around callback channel reply receive (Benjamin Coddington) [1234797]
-
-* Wed Jul 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-288.el7]
-- [unisys] add visorbus (Erik Arfvidson) [1228343]
-- [acpi] pci: Account for ARI in _PRT lookups (Alex Williamson) [1222066]
-- [pci] Move pci_ari_enabled() to global header (Alex Williamson) [1222066]
-- [cpufreq] intel_pstate: Fix overflow in busy_scaled due to long delay (Prarit Bhargava) [1228346]
-- [perf] tools: Add hint for 'Too many events are opened.' error message (Jiri Olsa) [990937]
-- [tools] perf: Fix "Command" sort_entry's cmp and collapse function (Jiri Olsa) [1220686]
-- [net] sctp: fix ASCONF list handling (Marcelo Leitner) [1206474] {CVE-2015-3212}
-- [md] dm-cache-policy-smq: fix "default" version to be 1.4.0 (Mike Snitzer) [1236618]
-- [of] Eliminate of_allnodes list (Gustavo Duarte) [1210533]
-- [of] Fix sysfs_dirent cache integrity issue (Gustavo Duarte) [1225539]
-- [powerpc] include: Add opal-prd to installed uapi headers (Gustavo Duarte) [1234370]
-- [powerpc] powernv: fix construction of opal PRD messages (Gustavo Duarte) [1234370]
-- [infiniband] mad: Add final OPA MAD processing (Honggang Li) [1229265]
-- [infiniband] mad: Add partial Intel OPA MAD support (Honggang Li) [1229265]
-- [infiniband] mad: Add partial Intel OPA MAD support (Honggang Li) [1229265]
-- [infiniband] core: Add OPA MAD core capability flag (Honggang Li) [1229265]
-- [infiniband] mad: Add support for additional MAD info to/from drivers (Honggang Li) [1229265]
-- [infiniband] mad: Convert allocations from kmem_cache to kzalloc (Honggang Li) [1229265]
-- [infiniband] core: Add ability for drivers to report an alternate MAD size (Honggang Li) [1229265]
-- [infiniband] mad: Support alternate Base Versions when creating MADs (Honggang Li) [1229265]
-- [infiniband] mad: Create a generic helper for DR forwarding checks (Honggang Li) [1229265]
-- [infiniband] mad: Create a generic helper for DR SMP Recv processing (Honggang Li) [1229265]
-- [infiniband] mad: Create a generic helper for DR SMP Send processing (Honggang Li) [1229265]
-- [infiniband] mad: Split IB SMI handling from MAD Recv handler (Honggang Li) [1229265]
-- [infiniband] mad cleanup: Generalize processing of MAD data (Honggang Li) [1229265]
-- [infiniband] mad cleanup: Clean up function params -- find_mad_agent (Honggang Li) [1229265]
-- [infiniband] ocrdma: fix double free on pd (Honggang Li) [1229265]
-- [infiniband] usnic: clean up some error handling code (Honggang Li) [1229265]
-- [infiniband] mthca: use swap() in mthca_make_profile() (Honggang Li) [1229265]
-- [infiniband] core: Don't warn on no SA support in event handler (Honggang Li) [1229265]
-- [infiniband] core: Don't advertise SA in RoCE port capabilities (Honggang Li) [1229265]
-- [infiniband] core cleanup: Add const to args - agent_send_response (Honggang Li) [1229265]
-- [infiniband] core cleanup: Add const on args - device->process_mad (Honggang Li) [1229265]
-- [infiniband] core cleanup: Add const to RDMA helpers (Honggang Li) [1229265]
-- [infiniband] ocrdma: Fix memory leak in _ocrdma_alloc_pd() (Honggang Li) [1229265]
-- [net] rds: re-entry of rds_ib_xmit/rds_iw_xmit (Honggang Li) [1229265]
-- [infiniband] ipoib: Fix RCU annotations in ipoib_neigh_hash_init() (Honggang Li) [1229265]
-- [infiniband] nes: Enable the use of the tos field in the nes driver (Honggang Li) [1229265]
-- [infiniband] iw_cm: Export tos field to iwarp providers (Honggang Li) [1229265]
-- [infiniband] core: Change rdma_protocol_iboe to roce (Honggang Li) [1229265]
-- [infiniband] core: Convert core to use bitfield for caps (Honggang Li) [1229265]
-- [infiniband] core: Add per port immutable struct to ib_device (Honggang Li) [1229265]
-- [infiniband] user_mad: Fix buggy usage of port index (Honggang Li) [1229265]
-- [infiniband] user_mad: Use new start/end port functions (Honggang Li) [1229265]
-- [infiniband] mad: Add const qualifiers to query only functions (Honggang Li) [1229265]
-- [infiniband] mad: Clean up rcv_has_same_class (Honggang Li) [1229265]
-- [infiniband] mad: Change ib_response_mad signature arguments (Honggang Li) [1229265]
-- [infiniband] mad: Change validate_mad signature arguments (Honggang Li) [1229265]
-- [net] rds: Switch to generic logging helpers (Honggang Li) [1229265]
-- [infiniband] core, cma: Nice log-friendly string helpers (Honggang Li) [1229265]
-- [infiniband] mad: Clean up comments in smi.c (Honggang Li) [1229265]
-- [infiniband] mad: Rename is_data_mad to is_rmpp_data_mad (Honggang Li) [1229265]
-- [infiniband] core: Create common start/end port functions (Honggang Li) [1229265]
-- [infiniband] verbs: Improve docs for rdma-helpers (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_eth_ah() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_af_ib() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_read_multi_sge() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_mcast() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_sa() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_iw_cm() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_cm() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_smi() (Honggang Li) [1229265]
-- [infiniband] verbs: Use management helper rdma_cap_ib_mad() (Honggang Li) [1229265]
-- [infiniband] verbs: Reform rest part in IB-core cma (Honggang Li) [1229265]
-- [infiniband] verbs: Reform cma_acquire_dev() (Honggang Li) [1229265]
-- [infiniband] verbs: Reform mcast related part in IB-core cma (Honggang Li) [1229265]
-- [infiniband] verbs: Reform route related part in IB-core cma (Honggang Li) [1229265]
-- [infiniband] verbs: Reform cm related part in IB-core cma/ucm (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core verbs (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-ulp xprtrdma (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-ulp ipoib (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core multicast (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core sa_query (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core cm (Honggang Li) [1229265]
-- [infiniband] verbs: Reform IB-core mad/agent/user_mad (Honggang Li) [1229265]
-- [infiniband] verbs: Implement raw management helpers (Honggang Li) [1229265]
-- [infiniband] verbs: Implement new callback query_protocol() (Honggang Li) [1229265]
-
-* Sun Jun 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-287.el7]
-- [powerpc] misc: cxl: Add tracepoints (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Enable CAPP recovery (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Add missing return statement after handling AFU errror (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fail AFU initialisation if an invalid configuration record is found (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Export optional AFU configuration record in sysfs (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix device_node reference counting (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Add ability to reset the card (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Use image state defaults for reloading FPGA (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Add image control to sysfs (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Update CXL ABI documentation (Gustavo Duarte) [1223004]
-- [powerpc] cxl: remove redundant increment of hwirq (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix issues when unmapping contexts (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Disable SPAP register when freeing SPA (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Disable AFU debug flag (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Early return from cxl_handle_fault for a shut down context (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix leaking interrupts if attach process fails (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Unmap MMIO regions when detaching a context (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Add timeout to process element commands (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Change contexts_lock to a mutex to fix sleep while atomic bug (Gustavo Duarte) [1223004]
-- [powerpc] mm: don't do tlbie for updatepp request with NO HPTE fault (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Name interrupts in /proc/interrupt (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Return error to PSL if IRQ demultiplexing fails & print clearer warning (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix PSL error due to duplicate segment table entries (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Refactor cxl_load_segment() and find_free_sste() (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Disable secondary hash in segment table (Gustavo Duarte) [1223004]
-- [powerpc] cxl: Fix afu_read() not doing finish_wait() on signal or non-blocking (Gustavo Duarte) [1223004]
-- [kernel] idr: Add new function idr_is_empty() (Gustavo Duarte) [1182022]
-- [kernel] idr: remove unused prototype of idr_free() (Gustavo Duarte) [1182022]
-- [misc] cxl: Add documentation for userspace APIs (Gustavo Duarte) [1182022]
-- [misc] cxl: Add driver to Kbuild and Makefiles (Gustavo Duarte) [1182022]
-- [misc] cxl: Add userspace header file (Gustavo Duarte) [1182022]
-- [misc] cxl: Driver code for powernv PCIe based cards for userspace access (Gustavo Duarte) [1182022]
-- [misc] cxl: Add base builtin support (Gustavo Duarte) [1182022]
-- [powerpc] mm: Add hooks for cxl (Gustavo Duarte) [1182022]
-- [powerpc] opal: Add PHB to cxl mode call (Gustavo Duarte) [1182022]
-- [powerpc] mm: Add new hash_page_mm() (Gustavo Duarte) [1182022]
-- [powerpc] Add new PCIe functions for allocating cxl interrupts (Gustavo Duarte) [1182022]
-- [powerpc] cxl: Add new header for call backs and structs (Gustavo Duarte) [1182022]
-- [powerpc] powernv: Split out set MSI IRQ chip code (Gustavo Duarte) [1182022]
-- [powerpc] mm: Export mmu_kernel_ssize and mmu_linear_psize (Gustavo Duarte) [1182022]
-- [powerpc] msi: Improve IRQ bitmap allocator (Gustavo Duarte) [1182022]
-- [powerpc] cell: Make spu_flush_all_slbs() generic (Gustavo Duarte) [1182022]
-- [powerpc] cell: Move data segment faulting code out of cell platform (Gustavo Duarte) [1182022]
-- [powerpc] cell: Move spu_handle_mm_fault() out of cell platform (Gustavo Duarte) [1182022]
-- [scsi] qla2xxx: Update the driver version to 8.07.00.18.07.2-k (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Restore physical port WWPN only, when port down detected for FA-WWPN port (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix virtual port configuration, when switch port is disabled/enabled (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Prevent multiple firmware dump collection for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Disable Interrupt handshake for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add debugging info for MBX timeout (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add serdes read/write support for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add udev notification to save fw dump for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add message for sucessful FW dump collected for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add support to load firmware from file for ISP 26XX/27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix beacon blink for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Increase the wait time for firmware to be ready for P3P (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix crash due to wrong casting of reg for ISP27XX (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix warnings reported by static checker (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix printks in ql_log message (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix printk in qla25xx_setup_mode (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: fix busy wait regression (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: fix race in handling rport deletion during recovery causes panic (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: remove redundant declaration in 'qla_gbl.h' (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Increase room in request queue for sending priority packets (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix sparse warning in qla_iocb.c file (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Move warning message to debug level (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fail adapter initialization on load ram failure (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Mark port lost when we receive an RSCN for it (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Restore WWPN in case of Loop Dead (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Honor FCP_RSP retry delay timer field (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add missing ISP27xx checks to optrom code (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Force use of mailbox interface for flash access commands for ISP27xx (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Free sysfs attributes for ISP27xx (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Disable laser for ISP2031 while unloading driver (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Enable diagnostic port using NVRAM parameters (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Declaration error cause stack corruption (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add fix in driver unload for pending activity (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Unload of qla2xxx driver crashes the machine (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Allow user to change ql2xfdmienable value (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix driver version string message (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add diagnostic port functionality (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add FA-WWN functionality (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add FDMI-2 functionality (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISPFx00 unexpected resets during adapter boot sequence (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Incorrect linked list semantic in qlafx00_get_fcport() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Incorrect debug level on mailbox command print 0x1111 (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISPFX00 avoid writing semaphore register in request_irqs() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Fix potential return count bug in qla2xxx_get_vpd_field() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx fwdump template error print simplification (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP25xx multiqueue shadow register crash fix (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add endianizer to max_payload_size modifier (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Enable fast flash access for ISP83xx (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add ISP27xx fwdump template entry T275 (insert buffer) (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx fwdump template fix insertbuf() routine (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx fwdump template remove high frequency debug logs (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx optimize fwdump entry table lookup (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx add tests for incomplete template (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Remove restriction on starting remote device discovery on port update (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Use pci_enable_msix_range() instead of pci_enable_msix() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Use dma_zalloc_coherent (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Restrict max_lun to 16-bit for older HBAs (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Use kmemdup instead of kmalloc + memcpy (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: fix incorrect debug printk (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx queue index shadow registers (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: ISP27xx firmware dump template spec updates (including T274) (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Update entry type 270 to match spec update (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Correction to ISP27xx template entry types 256 and 258 (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add pci device id 0x2271 (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Correct ISP83xx/ISP27xx mislogic in setting out_mb in qla25xx_init_req_que() (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Allow ISP83XX and ISP27XX both to write req_q_out register (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Correct operations for ISP27xx template types 270 and 271 (Chad Dupuis) [1187302]
-- [scsi] qla2xxx: Add support for ISP2071 (Chad Dupuis) [1187302]
-
-* Sun Jun 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-286.el7]
-- [usb] host: xhci: add mutex for non-thread-safe data (Don Zickus) [1232920]
-- [usb] make module xhci_hcd removable (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: Add support for a Motion Tracker Development Board (Don Zickus) [1232920]
-- [usb] usb-storage: Add NO_WP_DETECT quirk for Lacie 059f:0651 devices (Don Zickus) [1232920]
-- [usb] Added another USB product ID for ELAN touchscreen quirks (Don Zickus) [1232920]
-- [usb] xhci: gracefully handle xhci_irq dead device (Don Zickus) [1232920]
-- [usb] xhci: Solve full event ring by increasing TRBS_PER_SEGMENT to 256 (Don Zickus) [1232920]
-- [usb] xhci: fix isoc endpoint dequeue from advancing too far on transaction error (Don Zickus) [1232920]
-- [usb] visor: Match I330 phone more precisely (Don Zickus) [1232920]
-- [usb] pl2303: Remove support for Samsung I330 (Don Zickus) [1232920]
-- [usb] cdc-acm: prevent infinite loop when parsing CDC headers (Don Zickus) [1232920]
-- [usb] uas: Set max_sectors_240 quirk for ASM1053 devices (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_MAX_SECTORS_240 flag (Don Zickus) [1232920]
-- [usb] uas: Allow uas_use_uas_driver to return usb-storage flags (Don Zickus) [1232920]
-- [usb] drivers/usb/core: devio.c: Removed an uneeded space before tab (Don Zickus) [1232920]
-- [usb] core: hub: use new USB_RESUME_TIMEOUT (Don Zickus) [1232920]
-- [usb] host: uhci: use new USB_RESUME_TIMEOUT (Don Zickus) [1232920]
-- [usb] host: ehci: use new USB_RESUME_TIMEOUT (Don Zickus) [1232920]
-- [usb] host: xhci: use new USB_RESUME_TIMEOUT (Don Zickus) [1232920]
-- [usb] define a generic USB_RESUME_TIMEOUT macro (Don Zickus) [1232920]
-- [usb] tracing: Add TRACE_SYSTEM_VAR to xhci-hcd (Don Zickus) [1232920]
-- [usb] ehci-hub: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] fhci-hub: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] ohci-hub: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] uhci-hub: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] wusbcore: rh: use USB_DT_HUB (Don Zickus) [1232920]
-- [usb] usb/misc: fix chaoskey build, needs HW_RANDOM (Don Zickus) [1232920]
-- [usb] Fix warnings in chaoskey driver (Don Zickus) [1232920]
-- [usb] cdc-wdm: error returns need to be translated (Don Zickus) [1232920]
-- [usb] cdc-wdm: fix endianness bug in debug statements (Don Zickus) [1232920]
-- [usb] cdc-wdm: unify error handling in write (Don Zickus) [1232920]
-- [usb] cdc-acm: convert to not directly using urb->status (Don Zickus) [1232920]
-- [usb] cdc-acm: surpress misleading message (Don Zickus) [1232920]
-- [usb] cdc-acm: fix race between callback and unthrottle (Don Zickus) [1232920]
-- [usb] usb/misc/usb3503: Always read refclk frequency from DT (Don Zickus) [1232920]
-- [usb] cdc-wdm: return correct error codes (Don Zickus) [1232920]
-- [usb] Move usb_disabled() towards top of the file (Don Zickus) [1232920]
-- [usb] Use usb_disabled() consistently (Don Zickus) [1232920]
-- [usb] Add driver for Altus Metrum ChaosKey device (v2) (Don Zickus) [1232920]
-- [usb] ftdi_sio: Use jtag quirk for SNAP Connect E10 (Don Zickus) [1232920]
-- [usb] xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers (Don Zickus) [1232920]
-- [usb] xhci: handle Config Error Change (CEC) in xhci driver (Don Zickus) [1232920]
-- [usb] keyspan_pda: add new device id (Don Zickus) [1232920]
-- [usb] storage: Fix trivial typo in isd200_log_config() (Don Zickus) [1232920]
-- [usb] drivers: usb: storage: cypress_atacb.c: trivial checkpatch fixes (Don Zickus) [1232920]
-- [usb] drivers: usb: storage: alauda.c: properly place braces after function declarations (Don Zickus) [1232920]
-- [usb] appledisplay: Deletion of a check before backlight_device_unregister() (Don Zickus) [1232920]
-- [usb] ueagle-atm: Delete unnecessary checks before the function call "release_firmware" (Don Zickus) [1232920]
-- [usb] whci-hcd: Delete an unnecessary check before the function call "usb_put_hcd" (Don Zickus) [1232920]
-- [usb] xhci: plat: Add USB phy support (Don Zickus) [1232920]
-- [usb] xhci: unify cycle state toggling operation with 'XOR' (Don Zickus) [1232920]
-- [usb] legotower: use msecs_to_jiffies for time conversion (Don Zickus) [1232920]
-- [usb] image: use msecs_to_jiffies for time conversion (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X for Initio Corporation controllers / devices (Don Zickus) [1232920]
-- [usb] ftdi_sio: Added custom PID for Synapse Wireless product (Don Zickus) [1232920]
-- [usb] revert "xhci: Clear the host side toggle manually when endpoint is 'soft reset'" (Don Zickus) [1232920]
-- [usb] serial: fix infinite wait_until_sent timeout (Don Zickus) [1232920]
-- [usb] xhci: Workaround for PME stuck issues in Intel xhci (Don Zickus) [1232920]
-- [usb] xhci: fix reporting of 0-sized URBs in control endpoint (Don Zickus) [1232920]
-- [usb] ch341: set tty baud speed according to tty struct (Don Zickus) [1232920]
-- [usb] serial: cp210x: Adding Seletek device id's (Don Zickus) [1232920]
-- [usb] ch341: remove redundant close from open error path (Don Zickus) [1232920]
-- [usb] pl2303: disable break on shutdown (Don Zickus) [1232920]
-- [usb] serial: clean up bus probe error handling (Don Zickus) [1232920]
-- [usb] serial: fix port attribute-creation race (Don Zickus) [1232920]
-- [usb] serial: fix tty-device error handling at probe (Don Zickus) [1232920]
-- [usb] serial: fix potential use-after-free after failed probe (Don Zickus) [1232920]
-- [usb] console: add dummy __module_get (Don Zickus) [1232920]
-- [usb] revert "usb: serial: make bulk_out_size a lower limit" (Don Zickus) [1232920]
-- [usb] cdc-acm: Add support for Denso cradle CU-321 (Don Zickus) [1232920]
-- [usb] usb-storage: support for more than 8 LUNs (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS539 (Don Zickus) [1232920]
-- [usb] usbfs: don't leak kernel data in siginfo (Don Zickus) [1232920]
-- [usb] xhci: Clear the host side toggle manually when endpoint is 'soft reset' (Don Zickus) [1232920]
-- [usb] xhci: Allocate correct amount of scratchpad buffers (Don Zickus) [1232920]
-- [usb] Retry port status check on resume to work around RH bugs (Don Zickus) [1232920]
-- [usb] revert "usb: Reset USB-3 devices on USB-3 link bounce" (Don Zickus) [1232920]
-- [usb] uhci-hub: use HUB_CHAR_* (Don Zickus) [1232920]
-- [usb] kconfig: replace PPC_OF with PPC (Don Zickus) [1232920]
-- [usb] ehci-pci: disable for Intel MID platforms (update) (Don Zickus) [1232920]
-- [usb] ehci-pci: disable for Intel MID platforms (Don Zickus) [1232920]
-- [usb] ehci-pci: USB host controller support for Intel Quark X1000 (Don Zickus) [1232920]
-- [usb] host: pci_quirks: joing string literals (Don Zickus) [1232920]
-- [usb] add flag for HCDs that can't receive wakeup requests (isp1760-hcd) (Don Zickus) [1232920]
-- [usb] usbfs: allow URBs to be reaped after disconnection (Don Zickus) [1232920]
-- [usb] cdc-acm: kill unnecessary messages (Don Zickus) [1232920]
-- [usb] cdc-acm: add sanity checks (Don Zickus) [1232920]
-- [usb] Add OTG PET device to TPL (Don Zickus) [1232920]
-- [usb] usb-storage/scsi: blacklist FUA on JMicron 152d:2566 USB-SATA controller (Don Zickus) [1232920]
-- [usb] uas: Add no-report-opcodes quirk for Simpletech devices with id 4971:8017 (Don Zickus) [1232920]
-- [usb] storage: Revise/fix quirk for 04E6:000F SCM USB-SCSI converter (Don Zickus) [1232920]
-- [usb] core: hub: modify hub reset logic in hub driver (Don Zickus) [1232920]
-- [usb] wusbcore: rh: use HUB_CHAR_* (Don Zickus) [1232920]
-- [usb] ohci-hub: use HUB_CHAR_* (Don Zickus) [1232920]
-- [usb] ehci-hub: use HUB_CHAR_* (Don Zickus) [1232920]
-- [usb] xhci: Silence "xHCI xhci_drop_endpoint called with disabled ep ..." messages (Don Zickus) [1232920]
-- [usb] xhci: Print hcc params, version and quirks on init (Don Zickus) [1232920]
-- [usb] don't cancel queued resets when unbinding drivers (Don Zickus) [1232920]
-- [usb] Fix typo in `struct usb_host_interface' comment (Don Zickus) [1232920]
-- [usb] mos7840: remove unused code (Don Zickus) [1232920]
-- [usb] option: clean up blacklist handling (Don Zickus) [1232920]
-- [usb] serial: handle -ENODEV quietly in generic_submit_read_urb (Don Zickus) [1232920]
-- [usb] serial: silence all non-critical read errors (Don Zickus) [1232920]
-- [usb] console: fix potential use after free (Don Zickus) [1232920]
-- [usb] console: fix uninitialised ldisc semaphore (Don Zickus) [1232920]
-- [usb] ohci: add a quirk for ULi M5237 blocking on reset (Don Zickus) [1232920]
-- [usb] use *ph specifier in uss720 driver (Don Zickus) [1232920]
-- [usb] use *ph specifier in mikrotek driver (Don Zickus) [1232920]
-- [usb] core: buffer: smallest buffer should start at ARCH_DMA_MINALIGN (Don Zickus) [1232920]
-- [usb] xhci: Add completion code to the debug ouput of unhandled transfer events (Don Zickus) [1232920]
-- [usb] xhci: clean up work to remove unused parameters for functions in xhci-mem.c (Don Zickus) [1232920]
-- [usb] xhci-mem: Use setup_timer (Don Zickus) [1232920]
-- [usb] xhci: Use setup_timer (Don Zickus) [1232920]
-- [usb] xhci: remove unused parameter 'xhci' in function xhci_handshake() (Don Zickus) [1232920]
-- [usb] xhci: Clean up work to xhci_add_endpoint() (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X for 2 more Seagate disk enclosures (Don Zickus) [1232920]
-- [usb] uas: Do not blacklist ASM1153 disk enclosures (Don Zickus) [1232920]
-- [usb] uas: disable UAS on Apricorn SATA dongles (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS566 with usb-id 0bc2:a013 (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X for Seagate devices with usb-id 0bc2:a013 (Don Zickus) [1232920]
-- [usb] xhci: Add broken-streams quirk for Fresco Logic FL1000G xhci controllers (Don Zickus) [1232920]
-- [usb] ehci: adjust error return code (Don Zickus) [1232920]
-- [usb] ehci: fix initialization bug in iso_stream_schedule() (Don Zickus) [1232920]
-- [usb] xhci: Check if slot is already in default state before moving it there (Don Zickus) [1232920]
-- [usb] qcserial/option: make AT URCs work for Sierra Wireless MC73xx (Don Zickus) [1232920]
-- [usb] keyspan: fix null-deref at probe (Don Zickus) [1232920]
-- [usb] mos7720: delete some unneeded code (Don Zickus) [1232920]
-- [usb] wusb: replace memset by memzero_explicit (Don Zickus) [1232920]
-- [usb] xhci: fix comment for PORT_DEV_REMOVE (Don Zickus) [1232920]
-- [usb] xhci: don't use the same variable for stopped and halted rings current TD (Don Zickus) [1232920]
-- [usb] xhci: clear extra bits from slot context when setting max exit latency (Don Zickus) [1232920]
-- [usb] xhci: cleanup finish_td function (Don Zickus) [1232920]
-- [usb] adutux: NULL dereferences on disconnect (Don Zickus) [1232920]
-- [usb] pci-quirks: Deletion of unnecessary checks before the function call "pci_dev_put" (Don Zickus) [1232920]
-- [usb] usb-sis: Deletion of an unnecessary check before the function call "usb_put_dev" (Don Zickus) [1232920]
-- [usb] storage: Fix bus scan and multi-LUN support for SCM eUSCSI devices (Don Zickus) [1232920]
-- [usb] storage: Enable multi-target mode as vendor driver does for SCM eUSCSI bridge (Don Zickus) [1232920]
-- [usb] cdc-acm: check for valid interfaces (Don Zickus) [1232920]
-- [usb] cdc-acm: memory leak in error case (Don Zickus) [1232920]
-- [usb] usb-quirks: Add reset-resume quirk for MS Wireless Laser Mouse 6000 (Don Zickus) [1232920]
-- [usb] xhci: rework root port wake bits if controller isn't allowed to wakeup (Don Zickus) [1232920]
-- [usb] xhci: Reset a halted endpoint immediately when we encounter a stall (Don Zickus) [1232920]
-- [usb] revert "xhci: clear root port wake on bits if controller isn't wake-up capable" (Don Zickus) [1232920]
-- [usb] xhci: don't start a halted endpoint before its new dequeue is set (Don Zickus) [1232920]
-- [usb] ssu100: fix overrun-error reporting (Don Zickus) [1232920]
-- [usb] keyspan: fix overrun-error reporting (Don Zickus) [1232920]
-- [usb] keyspan: fix tty line-status reporting (Don Zickus) [1232920]
-- [usb] qcserial: Add support for HP lt4112 LTE/HSPA+ Gobi 4G Modem (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: add PIDs for Matrix Orbital products (Don Zickus) [1232920]
-- [usb] phonet: Replace calls to __skb_alloc_page with __dev_alloc_page (Don Zickus) [1232920]
-- [usb] serial: cp210x: add IDs for CEL MeshConnect USB Stick (Don Zickus) [1232920]
-- [usb] Remove __init from early_dbgp_init() prototype (Don Zickus) [1232920]
-- [usb] Create separate header for ehci-dbgp (Don Zickus) [1232920]
-- [usb] host: xhci-plat: remove duplicate check on resource (Don Zickus) [1232920]
-- [usb] host: uhci-platform: fix NULL pointer dereference on resource (Don Zickus) [1232920]
-- [usb] storage: Reject bogus max LUN values (Don Zickus) [1232920]
-- [usb] cdc-acm: add quirk for control-line state requests (Don Zickus) [1232920]
-- [usb] storage: Fix timeout in usb_stor_euscsi_init() and usb_stor_huawei_e220_init() (Don Zickus) [1232920]
-- [usb] cdc-acm: only raise DTR on transitions from B0 (Don Zickus) [1232920]
-- [usb] revert "storage: Replace magic number with define in usb_stor_euscsi_init()" (Don Zickus) [1232920]
-- [usb] serial: add Google simple serial SubClass support (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X quirk for 2 more Seagate models (Don Zickus) [1232920]
-- [usb] xhci: no switching back on non-ULT Haswell (Don Zickus) [1232920]
-- [usb] misc: usb3503: delete unnecessary 'out of memory' messages (Don Zickus) [1232920]
-- [usb] class: usbtmc: delete unnecessary 'out of memory' messages (Don Zickus) [1232920]
-- [usb] ehci/ohci-platform: use SIMPLE_DEV_PM_OPS to support hibernation (Don Zickus) [1232920]
-- [usb] hub: remove unused variable (Don Zickus) [1232920]
-- [usb] storage: Convert usb_stor_dbg to return void (Don Zickus) [1232920]
-- [usb] ohci: Eliminate platform-specific test in ohci.h (Don Zickus) [1232920]
-- [usb] ehci: add ehci_port_power interface (Don Zickus) [1232920]
-- [usb] uas: Make uas work with blk-mq (Don Zickus) [1232920]
-- [usb] yurex: fixed sparse warning of incorrect type (Don Zickus) [1232920]
-- [usb] Do not re-read descriptors for wired devices in usb_authorize_device() (Don Zickus) [1232920]
-- [usb] cdc-acm: Drop the warning for unusual capabilities (Don Zickus) [1232920]
-- [usb] quirks: enable device-qualifier quirk for yet another Elan touchscreen (Don Zickus) [1232920]
-- [usb] quirks: enable device-qualifier quirk for another Elan touchscreen (Don Zickus) [1232920]
-- [usb] storage: fix build warnings !CONFIG_PM (Don Zickus) [1232920]
-- [usb] uas: Add NO_ATA_1X for VIA VL711 devices (Don Zickus) [1232920]
-- [usb] xhci: Disable streams on Asmedia 1042 xhci controllers (Don Zickus) [1232920]
-- [usb] hwa: fix a warning message (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X quirk for 1 more Seagate model (Don Zickus) [1232920]
-- [usb] usb-storage: handle a skipped data phase (Don Zickus) [1232920]
-- [usb] Do not allow usb_alloc_streams on unconfigured devices (Don Zickus) [1232920]
-- [usb] cdc-acm: ensure that termios get set when the port is activated (Don Zickus) [1232920]
-- [usb] cdc-acm: add device id for GW Instek AFG-2225 (Don Zickus) [1232920]
-- [usb] mos7840: replace unnecessary atomic allocations (Don Zickus) [1232920]
-- [usb] mos7720: replace unnecessary atomic allocations (Don Zickus) [1232920]
-- [usb] kobil_sct: replace unnecessary atomic allocation (Don Zickus) [1232920]
-- [usb] opticon: fix non-atomic allocation in write path (Don Zickus) [1232920]
-- [usb] kobil_sct: fix non-atomic allocation in write path (Don Zickus) [1232920]
-- [usb] Fix typo in usb-serial-simple.c (Don Zickus) [1232920]
-- [usb] usbnet: add a callback for set_rx_mode (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: add "bricked" FTDI device PID (Don Zickus) [1232920]
-- [usb] serial: keyspan_pda: fix Entrega company name spelling (Don Zickus) [1232920]
-- [usb] kobil_sct: Remove unused transfer buffer allocs (Don Zickus) [1232920]
-- [usb] option: add Haier CE81B CDMA modem (Don Zickus) [1232920]
-- [usb] option: add support for Telit LE910 (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: add Awinda Station and Dongle products (Don Zickus) [1232920]
-- [usb] serial: cp210x: add Silicon Labs 358x VID and PID (Don Zickus) [1232920]
-- [usb] misc: drop owner assignment from platform_drivers (Don Zickus) [1232920]
-- [usb] uas: Reduce number of function arguments for uas_alloc_foo functions (Don Zickus) [1232920]
-- [usb] xhci: Allow xHCI drivers to be built as separate modules (Don Zickus) [1232920]
-- [usb] xhci: Export symbols used by host-controller drivers (Don Zickus) [1232920]
-- [usb] xhci: Check for XHCI_COMP_MODE_QUIRK when disabling D3cold (Don Zickus) [1232920]
-- [usb] xhci: Introduce xhci_init_driver() (Don Zickus) [1232920]
-- [usb] uas: disable use of blk-mq I/O path (Don Zickus) [1232920]
-- [usb] core: return -ENOTSUPP for all targeted hosts (Don Zickus) [1232920]
-- [usb] Add LED triggers for USB activity (Don Zickus) [1232920]
-- [usb] Rename usb-common.c (Don Zickus) [1232920]
-- [usb] hub: allow to process more usb hub events in parallel (Don Zickus) [1232920]
-- [usb] hub: rename khubd to hub_wq in documentation and comments (Don Zickus) [1232920]
-- [usb] hub: rename usb_kick_khubd() to usb_kick_hub_wq() (Don Zickus) [1232920]
-- [usb] hub: convert khubd into workqueue (Don Zickus) [1232920]
-- [usb] hub: rename hub_events() to hub_event() and handle only one event there (Don Zickus) [1232920]
-- [usb] hub: keep hub->dev reference all the time when struct usb_hub lives (Don Zickus) [1232920]
-- [usb] storage: Add quirk for another SCM-based USB-SCSI converter (Don Zickus) [1232920]
-- [usb] storage: Add quirks for Castlewood and Double-H USB-SCSI converters (Don Zickus) [1232920]
-- [usb] storage: Replace magic number with define in usb_stor_euscsi_init() (Don Zickus) [1232920]
-- [usb] quirks.h: use BIT() (Don Zickus) [1232920]
-- [usb] Add device quirk for ASUS T100 Base Station keyboard (Don Zickus) [1232920]
-- [usb] usb3503: clarify what the registers 'PDS' and 'CFG1' really do (Don Zickus) [1232920]
-- [usb] usb3503: correct error message in probe ('connect' to 'interrupt') (Don Zickus) [1232920]
-- [usb] Fixed a few typos (Don Zickus) [1232920]
-- [usb] storage: use *ph specifier to dump small buffers (Don Zickus) [1232920]
-- [usb] wusbcore: fix device disconnect on rekey timeout (Don Zickus) [1232920]
-- [usb] wusbcore: skip done segs before completing aborted transfer (Don Zickus) [1232920]
-- [usb] wusbcore: USB_WUSB_CBAF depends on USB (Don Zickus) [1232920]
-- [usb] wusbcore: remove USB_WUSB build dependency on PCI (Don Zickus) [1232920]
-- [usb] hwa: add USB build dependency for USB_HWA_HCD (Don Zickus) [1232920]
-- [usb] wusb: delete double assignment (Don Zickus) [1232920]
-- [usb] misc: yurex: remove useless casting of private_data (Don Zickus) [1232920]
-- [usb] xhci: Log extra info on "ERROR Transfer event TRB DMA ptr not part of current TD" (Don Zickus) [1232920]
-- [usb] xhci: Remove "FIXME - check all the stream rings for pending cancellations" (Don Zickus) [1232920]
-- [usb] xhci: Always ring the doorbell for active eps when a Set TR deq ptr cmd completes (Don Zickus) [1232920]
-- [usb] xhci: Fold queue_set_tr_deq into xhci_queue_new_dequeue_state (Don Zickus) [1232920]
-- [usb] xhci: xhci_ring_device: Ring stream ring bells for endpoints with streams (Don Zickus) [1232920]
-- [usb] xhci_suspend is not stopping the root hub timer for the shared HCD (Don Zickus) [1232920]
-- [usb] xhci: Move allocating of command for new_dequeue_state to queue_set_tr_deq() (Don Zickus) [1232920]
-- [usb] uas: Add response iu handling (Don Zickus) [1232920]
-- [usb] uas: Log error codes when logging errors (Don Zickus) [1232920]
-- [usb] uas: Cleanup uas_log_cmd_state usage (Don Zickus) [1232920]
-- [usb] uas: Remove protype hardware usb interface info (Don Zickus) [1232920]
-- [usb] uas: Remove support for old sense ui as used in pre-production hardware (Don Zickus) [1232920]
-- [usb] uas: Drop COMMAND_COMPLETED flag (Don Zickus) [1232920]
-- [usb] uas: Use scsi_print_command (Don Zickus) [1232920]
-- [usb] uas: Do not log urb status error on cancellation (Don Zickus) [1232920]
-- [usb] uas: Use streams on upcoming 10Gbps / 3.1 USB (Don Zickus) [1232920]
-- [usb] uas: pre_reset and suspend: Fix a few races (Don Zickus) [1232920]
-- [usb] uas: Fix memleak of non-submitted urbs (Don Zickus) [1232920]
-- [usb] uas: Drop all references to a scsi_cmnd once it has been aborted (Don Zickus) [1232920]
-- [usb] uas: Remove cmnd reference from the cmd urb (Don Zickus) [1232920]
-- [usb] uas: Drop inflight list (Don Zickus) [1232920]
-- [usb] uas: zap_pending: data urbs should have completed at this time (Don Zickus) [1232920]
-- [usb] uas: Simplify reset / disconnect handling (Don Zickus) [1232920]
-- [usb] uas: Free data urbs on completion (Don Zickus) [1232920]
-- [usb] uas: Simplify unlink of data urbs on error (Don Zickus) [1232920]
-- [usb] uas: Check against unexpected completions (Don Zickus) [1232920]
-- [usb] uas: Do not use scsi_host_find_tag (Don Zickus) [1232920]
-- [usb] uas: Add uas_get_tag() helper function (Don Zickus) [1232920]
-- [usb] uas: Fix resetting flag handling (Don Zickus) [1232920]
-- [usb] uas: Remove task-management / abort error handling code (Don Zickus) [1232920]
-- [usb] uas: Add another ASM1051 usb-id to the uas blacklist (Don Zickus) [1232920]
-- [usb] uas: Add US_FL_NO_ATA_1X quirk for Seagate (0bc2:ab20) drives (Don Zickus) [1232920]
-- [usb] uas: Add no-report-opcodes quirk (Don Zickus) [1232920]
-- [usb] uas: Add a quirk for rejecting ATA_12 and ATA_16 commands (Don Zickus) [1232920]
-- [usb] document the 'u' flag for usb-storage quirks parameter (Don Zickus) [1232920]
-- [usb] uas: replace WARN_ON_ONCE() with lockdep_assert_held() (Don Zickus) [1232920]
-- [usb] host: ehci-st: Add EHCI support for ST STB devices (Don Zickus) [1232920]
-- [usb] core: kconfig: TPL should apply for both OTG and EH (Don Zickus) [1232920]
-- [usb] core: TPL should apply for both OTG and EH (Don Zickus) [1232920]
-- [usb] hcd: add TPL support flag (Don Zickus) [1232920]
-- [usb] serial: Remove unused tty->hw_stopped (Don Zickus) [1232920]
-- [usb] quirks: enable device-qualifier quirk for Elan Touchscreen (Don Zickus) [1232920]
-- [usb] core: add device-qualifier quirk (Don Zickus) [1232920]
-- [usb] cp210x: add support for Seluxit USB dongle (Don Zickus) [1232920]
-- [usb] serial: cp210x: added Ketra N1 wireless interface support (Don Zickus) [1232920]
-- [usb] storage: Add quirks for Entrega/Xircom USB to SCSI converters (Don Zickus) [1232920]
-- [usb] storage: Add quirk for Ariston Technologies iConnect USB to SCSI adapter (Don Zickus) [1232920]
-- [usb] storage: Add quirk for Adaptec USBConnect 2000 USB-to-SCSI Adapter (Don Zickus) [1232920]
-- [scsi] don't store LUN bits in CDB[1] for USB mass-storage devices (Don Zickus) [1232920]
-- [usb] xhci: fix oops when xhci resumes from hibernate with hw lpm capable devices (Don Zickus) [1232920]
-- [usb] xhci: Fix OOPS in xhci error handling code (Don Zickus) [1232920]
-- [usb] xhci: Fix null pointer dereference if xhci initialization fails (Don Zickus) [1232920]
-- [usb] storage: Add single-LUN quirk for Jaz USB Adapter (Don Zickus) [1232920]
-- [usb] uas: Add missing le16_to_cpu calls to asm1051 / asm1053 usb-id check (Don Zickus) [1232920]
-- [usb] uas: Disable uas on ASM1051 devices (Don Zickus) [1232920]
-- [usb] bcma: store more alternative addresses (Don Zickus) [1232920]
-- [usb] ftdi_sio: Add support for GE Healthcare Nemo Tracker device (Don Zickus) [1232920]
-- [usb] host: xhci: fix compliance mode workaround (Don Zickus) [1232920]
-- [usb] serial: xsens_mt: always bind to interface number 1 (Don Zickus) [1232920]
-- [usb] serial: xsens_mt: add author and description (Don Zickus) [1232920]
-- [usb] serial: add Medtronic CareLink USB driver (Don Zickus) [1232920]
-- [usb] serial: add Novatel Wireless GPS driver (Don Zickus) [1232920]
-- [usb] serial: add support for multi-port simple drivers (Don Zickus) [1232920]
-- [usb] pl2303: use divisors for unsupported baud rates (Don Zickus) [1232920]
-- [usb] sierra: add 1199:68AA device ID (Don Zickus) [1232920]
-- [usb] sierra: avoid CDC class functions on "68A3" devices (Don Zickus) [1232920]
-- [usb] ftdi_sio: add support for NOVITUS Bono E thermal printer (Don Zickus) [1232920]
-- [usb] usbtest: Add interrupt EP testcases (Don Zickus) [1232920]
-- [usb] fix build error with CONFIG_PM_RUNTIME disabled (Don Zickus) [1232920]
-- [usb] xhci: Disable streams on Via XHCI with device-id 0x3432 (Don Zickus) [1232920]
-- [usb] serial: fix potential heap buffer overflow (Don Zickus) [1232920]
-- [usb] serial: fix potential stack buffer overflow (Don Zickus) [1232920]
-- [usb] hub: Prevent hub autosuspend if usbcore.autosuspend is -1 (Don Zickus) [1232920]
-- [usb] sisusb: add device id for Magic Control USB video (Don Zickus) [1232920]
-- [usb] ehci: using wIndex + 1 for hub port (Don Zickus) [1232920]
-- [usb] storage: add quirk for Newer Technology uSCSI SCSI-USB converter (Don Zickus) [1232920]
-- [usb] wusbcore: fix below build warning (Don Zickus) [1232920]
-- [usb] core: fix below build warning (Don Zickus) [1232920]
-- [usb] xhci: rework cycle bit checking for new dequeue pointers (Don Zickus) [1232920]
-- [usb] xhci: amd chipset also needs short TX quirk (Don Zickus) [1232920]
-- [usb] xhci: Treat not finding the event_seg on COMP_STOP the same as COMP_STOP_INVAL (Don Zickus) [1232920]
-- [usb] usbcore: Fix wrong device in an error message in hub_port_connect() (Don Zickus) [1232920]
-- [usb] ftdi_sio: Added PID for new ekey device (Don Zickus) [1232920]
-- [usb] serial: pl2303: add device id for ztek device (Don Zickus) [1232920]
-- [usb] ftdi_sio: add Basic Micro ATOM Nano USB2Serial PID (Don Zickus) [1232920]
-- [usb] revert "usb: option, zte_ev: move most ZTE CDMA devices to zte_ev" (Don Zickus) [1232920]
-- [usb] option: add VIA Telecom CDS7 chipset device id (Don Zickus) [1232920]
-- [usb] option: reduce interrupt-urb logging verbosity (Don Zickus) [1232920]
-- [usb] cdc_subset: deal with a device that needs reset for timeout (Don Zickus) [1232920]
-- [usb] devio: fix issue with log flooding (Don Zickus) [1232920]
-- [usb] uas: Log a warning when we cannot use uas because the hcd lacks streams (Don Zickus) [1232920]
-- [usb] uas: Only complain about missing sg if all other checks succeed (Don Zickus) [1232920]
-- [usb] xhci: Add missing checks for xhci_alloc_command failure (Don Zickus) [1232920]
-- [usb] xhci: Rename Asrock P67 pci product-id to EJ168 (Don Zickus) [1232920]
-- [usb] xhci: Blacklist using streams on the Etron EJ168 controller (Don Zickus) [1232920]
-- [usb] uas: Limit qdepth to 32 when connected over usb-2 (Don Zickus) [1232920]
-- [usb] usb-core bInterval quirk (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: Add support for new Xsens devices (Don Zickus) [1232920]
-- [usb] serial: ftdi_sio: Annotate the current Xsens PID assignments (Don Zickus) [1232920]
-- [usb] core: allow zero packet flag for interrupt urbs (Don Zickus) [1232920]
-- [usb] lvstest: Fix sparse warnings generated by kbuild test bot (Don Zickus) [1232920]
-- [usb] ohci: add check for stopped frame counter (Don Zickus) [1232920]
-- [usb] ohci: add I/O watchdog for orphan TDs (Don Zickus) [1232920]
-- [usb] ohci: make URB completions single-threaded (Don Zickus) [1232920]
-- [usb] ohci: redesign the TD done list (Don Zickus) [1232920]
-- [usb] ohci: no shortcut for unlinking URBS from a dead controller (Don Zickus) [1232920]
-- [usb] ohci: revert the ZF Micro orphan-TD quirk (Don Zickus) [1232920]
-- [usb] Fix persist resume of some SS USB devices (Don Zickus) [1232920]
-- [usb] usb-core: Remove Fix mes in file hcd.c (Don Zickus) [1232920]
-- [usb] usbcore: don't log on consecutive debounce failures of the same port (Don Zickus) [1232920]
-- [usb] serial: cp210x: Removing unncessary `usb_reset_device` on startup (Don Zickus) [1232920]
-- [usb] Add LVS Test device driver (Don Zickus) [1232920]
-- [usb] Add EXPORT_SYMBOL for usb_alloc_dev (Don Zickus) [1232920]
-- [usb] ohci: don't lose track of EDs when a controller dies (Don Zickus) [1232920]
-- [usb] ohci: fix bugs in debug routines (Don Zickus) [1232920]
-- [usb] ohci: add SG support (Don Zickus) [1232920]
-- [usb] shutdown all URBs after controller death (Don Zickus) [1232920]
-- [usb] add reset resume quirk for usb3503 (Don Zickus) [1232920]
-- [usb] usb3503: add PM functions (Don Zickus) [1232920]
-- [usb] uhci-platform: use devm_ioremap resource (Don Zickus) [1232920]
-- [usb] ohci: don't allocate HCCA atomically (Don Zickus) [1232920]
-- [usb] uhci: don't allocate frame list atomically (Don Zickus) [1232920]
-- [usb] ehci: don't allocate hardware periodic table atomically by default (Don Zickus) [1232920]
-- [usb] drivers/usb/host/fhci-dbg.c: remove unnecessary null test before debugfs_remove (Don Zickus) [1232920]
-- [usb] class: usbtmc.c: Cleaning up uninitialized variables (Don Zickus) [1232920]
-- [usb] host: xhci-plat: use devm_functions (Don Zickus) [1232920]
-- [usb] xhci: make error messages grepable (Don Zickus) [1232920]
-- [usb] force warm reset to break link re-connect livelock (Don Zickus) [1232920]
-- [usb] allow lpm (en/dis)able only if device is atleast in default state (Don Zickus) [1232920]
-- [usb] xhci: platform: Set xhci lpm support quirk based on platform data (Don Zickus) [1232920]
-- [usb] documentation: dt-bindings: update xhci-platform DT binding (Don Zickus) [1232920]
-- [usb] xhci: platform: Add (en/dis)able_usb3_lpm_timeout (Don Zickus) [1232920]
-- [usb] xhci: A default implementation for Ux timeout calculation and tier policy check (Don Zickus) [1232920]
-- [usb] kl5kusb105: Remove klsi_105_tiocmset function (Don Zickus) [1232920]
-- [usb] mos7840: remove unnecessary null test before kfree (Don Zickus) [1232920]
-- [usb] ftdi_sio: remove redundant mtxorb quirk (Don Zickus) [1232920]
-- [usb] ftdi_sio: clean up ftdi_set_max_packet_size() (Don Zickus) [1232920]
-- [usb] ftdi_sio: fix max-packet-size warning (Don Zickus) [1232920]
-- [usb] ftdi_sio: make port probe less verbose (Don Zickus) [1232920]
-- [usb] xhci: Correct last context entry calculation for Configure Endpoint (Don Zickus) [1232920]
-
-* Fri Jun 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-285.el7]
-- [x86] perf: Fix bug in unused code (Don Dugger) [1036948]
-- [x86] Someone fat fingered a merge conflict and lost the Makefile hunk (Don Dugger) [1036948]
-- [x86] perf: Enable conflicting event scheduling for CQM (Don Dugger) [1036948]
-- [x86] perf: Perform rotation on Intel CQM RMIDs (Don Dugger) [1036948]
-- [x86] perf: Implement LRU monitoring ID allocation for CQM (Don Dugger) [1036948]
-- [x86] Add support for Intel Cache QoS Monitoring (CQM) detection (Don Dugger) [1036948]
-- [x86] Mark Intel Broadwell-H processor as supported (Steve Best) [1131290]
-- [kernel] sched/stop_machine: Fix deadlock between multiple stop_two_cpus() (Jiri Olsa) [1223796]
-- [x86] edac: Disable EDAC debug logging by default (Prarit Bhargava) [1232712]
-- [kernel] sched/clock: Fixup early initialization (Prarit Bhargava) [1234322]
-- [kernel] sched/clock: Fix up clear_sched_clock_stable() (Prarit Bhargava) [1234322]
-- [mm] memory-hotplug: set zone->wait_table to null after freeing it (Yasuaki Ishimatsu) [1222754]
-- [mm] memory-hotplug: postpone the reset of obsolete pgdat (Yasuaki Ishimatsu) [1222754]
-- [mm] memory-failure: me_huge_page() does nothing for thp (Tomoaki Nishimura) [1226196]
-- [mm] soft-offline: don't free target page in successful page migration (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: introduce get_hwpoison_page() for consistent refcount handling (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: split thp earlier in memory error handling (Tomoaki Nishimura) [1226196]
-- [mm] soft-offline: fix num_poisoned_pages counting on concurrent events (Tomoaki Nishimura) [1226196]
-- [mm] hugetlb: cleanup using paeg_huge_active() (Tomoaki Nishimura) [1226196]
-- [mm] hugetlb: introduce page_huge_active (Tomoaki Nishimura) [1226196]
-- [mm] soft-offline: use migrate_pages() instead of migrate_huge_page() (Tomoaki Nishimura) [1226196]
-- [mm] migrate: make core migration code aware of hugepage (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: drop lru_add_drain_all() in __soft_offline_page() (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison-inject: check PageLRU of hpage (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison-inject: fix refcounting in no-injection case (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: fix the lack of one reference count against poisoned page (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: call shake_page() when error hits thp tail page (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: fix race with changing page during offlining (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: Fix wrong error recovery status (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: call action_result() in failure path of hwpoison_user_mappings() (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: fix hugetlbfs/thp precheck in hwpoison_user_mappings() (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: fix the handling path of the victimized page frame that belong to non-LRU (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: fix memory leak by race between poison and unpoison (Tomoaki Nishimura) [1226196]
-- [mm] hwpoison: lock_page/unlock_page does not match for handling a free hugepage (Tomoaki Nishimura) [1226196]
-- [mm] memory-failure: move refcount only in !MF_COUNT_INCREASED (Tomoaki Nishimura) [1226196]
-- [infiniband] iser: Rewrite bounce buffer code path (Amir Vadai) [1164539]
-- [infiniband] iser: Bump version to 1.6 (Amir Vadai) [1164539]
-- [infiniband] iser: Remove code duplication for a single DMA entry (Amir Vadai) [1164539]
-- [infiniband] iser: Pass struct iser_mem_reg to iser_fast_reg_mr and iser_reg_sig_mr (Amir Vadai) [1164539]
-- [infiniband] iser: Modify struct iser_mem_reg members (Amir Vadai) [1164539]
-- [infiniband] iser: Make fastreg pool cache friendly (Amir Vadai) [1164539]
-- [infiniband] iser: Move PI context alloc/free to routines (Amir Vadai) [1164539]
-- [infiniband] iser: Move fastreg descriptor pool get/put to helper functions (Amir Vadai) [1164539]
-- [infiniband] iser: Merge build page-vec into register page-vec (Amir Vadai) [1164539]
-- [infiniband] iser: Get rid of struct iser_rdma_regd (Amir Vadai) [1164539]
-- [infiniband] iser: Remove redundant assignments in iser_reg_page_vec (Amir Vadai) [1164539]
-- [infiniband] iser: Move memory reg/dereg routines to iser_memory.c (Amir Vadai) [1164539]
-- [infiniband] iser: Don't pass ib_device to fall_to_bounce_buff routine (Amir Vadai) [1164539]
-- [infiniband] iser: Remove a redundant struct iser_data_buf (Amir Vadai) [1164539]
-- [infiniband] iser: Remove redundant cmd_data_len calculation (Amir Vadai) [1164539]
-- [infiniband] iser: Fix wrong calculation of protection buffer length (Amir Vadai) [1164539]
-- [infiniband] iser: Handle fastreg/local_inv completion errors (Amir Vadai) [1164539]
-- [infiniband] iser: Fix unload during ep_poll wrong dereference (Amir Vadai) [1164539]
-- [infiniband] iser: Release the iscsi endpoint if ep_disconnect wasn't called (Amir Vadai) [1164539]
-- [infiniband] iser: Fix memory regions possible leak (Amir Vadai) [1164539]
-- [infiniband] iser: Use correct dma direction when unmapping SGs (Amir Vadai) [1164539]
-- [infiniband] iser: Bump version to 1.5 (Amir Vadai) [1164539]
-- [infiniband] iser: Micro-optimize iser_handle_wc (Amir Vadai) [1164539]
-- [infiniband] iser: Micro-optimize iser logging (Amir Vadai) [1164539]
-- [infiniband] iser: Use more completion queues (Amir Vadai) [1164539]
-- [infiniband] iser: Remove redundant is_mr indicator (Amir Vadai) [1164539]
-- [infiniband] iser: Centralize memory region invalidation to a function (Amir Vadai) [1164539]
-- [infiniband] iser: Terminate connection before cleaning inflight tasks (Amir Vadai) [1164539]
-- [infiniband] iser: Fix race between iser connection teardown and scsi TMFs (Amir Vadai) [1164539]
-- [infiniband] iser: Fix possible NULL derefernce ib_conn->device in session_create (Amir Vadai) [1164539]
-- [infiniband] iser: Fix sparse warnings (Amir Vadai) [1164539]
-- [infiniband] iser: Fix possible SQ overflow (Amir Vadai) [1164539]
-- [infiniband] iser: Decrement CQ's active QPs accounting when QP creation fails (Amir Vadai) [1164539]
-- [infiniband] iser: Collapse cleanup and disconnect handlers (Amir Vadai) [1164539]
-- [infiniband] iser: Fix catastrophic error flow hang (Amir Vadai) [1164539]
-- [infiniband] iser: Re-adjust CQ and QP send ring sizes to HW limits (Amir Vadai) [1164539]
-- [infiniband] iser: Centralize ib_sig_domain settings (Amir Vadai) [1164539]
-- [infiniband] iser: Bump version, add maintainer (Amir Vadai) [1164539]
-- [infiniband] iser: Fix/add kernel-doc style description in iscsi_iser.c (Amir Vadai) [1164539]
-- [infiniband] iser: Add/Fix kernel doc style descriptions in iscsi_iser.h (Amir Vadai) [1164539]
-- [infiniband] iser: Nit - add space after __func__ in iser logging (Amir Vadai) [1164539]
-- [infiniband] iser: Change iscsi_conn_stop log level to info (Amir Vadai) [1164539]
-- [infiniband] iser: Suppress scsi command send completions (Amir Vadai) [1164539]
-- [infiniband] iser: Optimize completion polling (Amir Vadai) [1164539]
-- [infiniband] iser: Use beacon to indicate all completions were consumed (Amir Vadai) [1164539]
-- [infiniband] iser: Use single CQ for RX and TX (Amir Vadai) [1164539]
-- [infiniband] iser: Use internal polling budget to avoid possible live-lock (Amir Vadai) [1164539]
-- [infiniband] iser: Centralize iser completion contexts (Amir Vadai) [1164539]
-- [infiniband] iser: Use iser_warn instead of BUG_ON in iser_conn_release (Amir Vadai) [1164539]
-- [infiniband] iser: Signal iSCSI layer that transport is broken in error completions (Amir Vadai) [1164539]
-- [infiniband] iser: Protect tasks cleanup in case IB device was already released (Amir Vadai) [1164539]
-- [infiniband] iser: Unbind at conn_stop stage (Amir Vadai) [1164539]
-- [infiniband] iser: Don't bound release_work completions timeouts (Amir Vadai) [1164539]
-- [infiniband] iser: Fix DEVICE REMOVAL handling in the absence of iscsi daemon (Amir Vadai) [1164539]
-- [infiniband] iser: Extend iser_free_ib_conn_res() (Amir Vadai) [1164539]
-- [infiniband] iser: Remove unused variables and dead code (Amir Vadai) [1164539]
-- [infiniband] iser: Re-introduce ib_conn (Amir Vadai) [1164539]
-- [infiniband] iser: Rename ib_conn -> iser_conn (Amir Vadai) [1164539]
-- [netdrv] tun: Allow to skip filter on attach (Oleg Nesterov) [1108829]
-- [netdrv] tun: Report whether the queue is attached or not (Oleg Nesterov) [1108829]
-- [netdrv] tun: Get skfilter layout (Oleg Nesterov) [1108829]
-- [netdrv] tun: Add ability to create tun device with given index (Oleg Nesterov) [1108829]
-- [mm] introduce VM_F_OP_EXTEND to fix KABI broken by file_operations->mremap (Oleg Nesterov) [1108829]
-- [fs] aio: Make it possible to remap aio ring (Oleg Nesterov) [1108829]
-- [net] make default ->i_fop have ->open() fail with ENXIO (Oleg Nesterov) [1108829]
-- [fs] proc: show locks in /proc/pid/fdinfo/X (Oleg Nesterov) [1108829]
-- [security] userns: Allow PR_CAPBSET_DROP in a user namespace (Oleg Nesterov) [1108829]
-- [mm] shm: add memfd_create() syscall (Oleg Nesterov) [1108829]
-- [kernel] prctl: PR_SET_MM -- introduce PR_SET_MM_MAP operation (Oleg Nesterov) [1108829]
-- [kernel] prctl: PR_SET_MM -- factor out mmap_sem when updating mm::exe_file (Oleg Nesterov) [1108829]
-- [mm] introduce check_data_rlimit helper (Oleg Nesterov) [1108829]
-- [fs] timerfd: Implement timerfd_ioctl method to restore timerfd_ctx::ticks, v3 (Oleg Nesterov) [1108829]
-- [documentation] procfs: Document timerfd output (Oleg Nesterov) [1108829]
-- [fs] timerfd: Implement show_fdinfo method (Oleg Nesterov) [1108829]
-- [fs] proc: show mnt_id in /proc/pid/fdinfo (Oleg Nesterov) [1108829]
-- [uapi] ptrace: add ability to get/set signal-blocked mask (Oleg Nesterov) [1108829]
-- [init] actually enable CONFIG_CHECKPOINT_RESTORE (Oleg Nesterov) [1108829]
-- [kernel] userns: Allow creation of user namespaces if user_namespace.enable=1 ("Eric W. Biederman") [1138782]
-- [fs] userns: Only allow privileged creation of the mount namespace ("Eric W. Biederman") [1138782]
-- [kernel] userns: Correct the comment in map_write ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Allow setting gid_maps without privilege when setgroups is disabled ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: fix KABI broken by introduction of struct user_namespace.flags ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Add a knob to disable setgroups on a per user namespace basis ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Rename id_map_mutex to userns_state_mutex ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Only allow the creator of the userns unprivileged mappings ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Check euid no fsuid when establishing an unprivileged uid mapping ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Don't allow unprivileged creation of gid mappings ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Don't allow setgroups until a gid mapping has been established ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] userns: Document what the invariant required for safe unprivileged mappings ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [kernel] groups: Consolidate the setgroups permission checks ("Eric W. Biederman") [1138782 1170689] {CVE-2014-8989}
-- [fs] userns: Change inode_capable to capable_wrt_inode_uidgid ("Eric W. Biederman") [1109837 1138782] {CVE-2014-4014}
-- [kernel] userns: Kill nsown_capable it makes the wrong thing easy ("Eric W. Biederman") [1138782]
-- [kernel] userns: fix KABI broken by introduction of struct user_namespace.level ("Eric W. Biederman") [1138782]
-- [kernel] userns: limit the maximum depth of user_namespace->parent chain ("Eric W. Biederman") [1109837]
-
-* Fri Jun 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-284.el7]
-- [md] make sure MD_RECOVERY_DONE is clear before starting recovery/resync (Jes Sorensen) [1173510 1231997]
-- [md] Close race when setting 'action' to 'idle' (Jes Sorensen) [1173510 1231997]
-- [md] don't return 0 from array_state_store (Jes Sorensen) [1173510 1231997]
-- [md] dm-cache: switch the "default" cache replacement policy from mq to smq (Mike Snitzer) [1189059]
-- [md] dm-thin-metadata: remove in-core 'read_only' flag (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: prefix all DMERR and DMINFO messages with cache device name (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: add fail io mode and needs_check flag (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: age and write back cache entries even without active IO (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: wake the worker thread every time we free a migration object (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: add stochastic-multi-queue (smq) policy (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: boost promotion of blocks that will be overwritten (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: defer whole cells (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-bio-prison: add dm_cell_promote_or_release() (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: pull out some bitset utility functions for reuse (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: pass a new 'critical' flag to the policies when requesting writeback work (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: track IO to the origin device using io_tracker (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: add io_tracker (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-cache: fix race when issuing a POLICY_REPLACE operation (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-raid: add support for the MD RAID0 personality (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-raid: a few cleanups (Mike Snitzer) [1189058 1189059 1191604]
-- [md] dm-raid: fixup documentation for discard support (Mike Snitzer) [1189058 1189059 1191604]
-- [perf] x86: Enforce HT bug workaround with PEBS for SNB/IVB/HSW (Jiri Olsa) [1210494]
-- [perf] x86/intel: Fix SLM cache event list (Jiri Olsa) [1210494]
-- [perf] x86: Improve HT workaround GP counter constraint (Jiri Olsa) [1210494]
-- [perf] x86: Fix event/group validation (Jiri Olsa) [1210494]
-- [perf] x86: Disable PEBS-LL in intel_pmu_pebs_disable() (Jiri Olsa) [1210494]
-- [perf] x86/intel: Reset more state in PMU reset (Jiri Olsa) [1210494]
-- [perf] x86/intel: Make the HT bug workaround conditional on HT enabled (Jiri Olsa) [1210494]
-- [perf] x86/intel: Limit to half counters when the HT workaround is enabled, to avoid exclusive mode starvation (Jiri Olsa) [1210494]
-- [perf] x86/intel: Fix intel_get_event_constraints() for dynamic constraints (Jiri Olsa) [1210494]
-- [perf] x86/intel: Enforce HT bug workaround for SNB/IVB/HSW (Jiri Olsa) [1210494]
-- [perf] x86/intel: Implement cross-HT corruption bug workaround (Jiri Olsa) [1210494]
-- [perf] x86/intel: Add cross-HT counter exclusion infrastructure (Jiri Olsa) [1210494]
-- [perf] watchdog: Add watchdog enable/disable all functions (Jiri Olsa) [1210494]
-- [perf] x86: Add 'index' param to get_event_constraint() callback (Jiri Olsa) [1210494]
-- [perf] x86: Add 3 new scheduling callbacks (Jiri Olsa) [1210494]
-- [perf] x86: Vectorize cpuc->kfree_on_online (Jiri Olsa) [1210494]
-- [perf] x86: Rename x86_pmu::er_flags to 'flags' (Jiri Olsa) [1210494]
-- [netdrv] ibmveth: Add support for Large Receive Offload (Gustavo Duarte) [1233261]
-- [netdrv] ibmveth: Add GRO support (Gustavo Duarte) [1233261]
-- [netdrv] ibmveth: Add support for TSO (Gustavo Duarte) [1233261]
-- [netdrv] ibmveth: change rx buffer default allocation for CMO (Gustavo Duarte) [1233261]
-- [powerpc] powernv: reboot when requested by firmware (Gustavo Duarte) [1221072]
-- [kernel] reboot: add orderly_reboot for graceful reboot (Gustavo Duarte) [1221072]
-- [powerpc] sbus: ignore orderly_poweroff return value (Gustavo Duarte) [1221072]
-- [powerpc] powernv: Add OPAL soft-poweroff routine (Gustavo Duarte) [1221072]
-- [net] openvswitch: remove GFP_THISNODE (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Return vport module ref before destruction (Jiri Benc) [1156461 1211348]
-- [net] mpls: Fix the openvswitch select of NET_MPLS_GSO (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix serialization of non-masked set actions (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix key serialization (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add missing initialization in validate_and_copy_set_tun() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Reset key metadata for packet execution (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Only set TUNNEL_VXLAN_OPT if VXLAN-GBP metadata is set (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Initialize unmasked key and uid len (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Support masked set actions (Jiri Benc) [1156461 1211348]
-- [net] udptunnels: Call handle_offloads after inserting vlan tag (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for checksums on UDP tunnels (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for unique flow IDs (Jiri Benc) [1156461 1211348]
-- [net] genetlink: Add genlmsg_parse() helper function (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Use sw_flow_key_range for key ranges (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor ovs_flow_tbl_insert() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor ovs_nla_fill_match() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: pass vxflags to vxlan_xmit_skb (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: ignore genlmsg_end return value (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Support VXLAN Group Policy extension (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Allow for any level of nesting in flow attributes (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Rename GENEVE_TUN_OPTS() to TUN_METADATA_OPTS() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: packet messages need their own probe attribtue (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Introduce ovs_tunnel_route_lookup (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Remove unnecessary version.h inclusion (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Consistently include VLAN header in flow and port stats (Jiri Benc) [1156461 1211348]
-- [net] genetlink: pass only network namespace to genl_has_listeners() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: fix odd_ptr_err.cocci warnings (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix vport_send double free (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix GSO with multiple MPLS label (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix MPLS action validation (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: replace remaining users of arch_fast_hash with jhash (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: set correct protocol on route lookup (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix flow mask validation (Jiri Benc) [1156461 1211348]
-- [net] vlan: move vlan pop/push functions into common code (Jiri Benc) [1156461 1211348]
-- [net] move make_writable helper into common code (Jiri Benc) [1156461 1211348]
-- [net] vlan: introduce __vlan_insert_tag helper which does not free skb (Jiri Benc) [1156461 1211348]
-- [net] vlan: Call dev_kfree_skb_any instead of kfree_skb (Jiri Benc) [1156461 1211348]
-- [net] vlan: introduce *vlan_hwaccel_push_inside helpers (Jiri Benc) [1156461 1211348]
-- [net] vlan: validate_xmit_vlan() is static (Jiri Benc) [1156461 1211348]
-- [net] vlan: rename __vlan_put_tag to vlan_insert_tag_set_proto (Jiri Benc) [1156461 1211348]
-- [net] vlan: kill vlan_put_tag helper (Jiri Benc) [1156461 1211348]
-- [net] vlan: remove unused HAVE_VLAN_PUT_TAG (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: actions: use skb_postpull_rcsum when possible (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Don't validate IPv6 label masks (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: use PTR_ERR_OR_ZERO (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Validate IPv6 flow key and mask values (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Convert dp rcu read operation to locked operations (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix NDP flow mask validation (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix checksum calculation when modifying ICMPv6 packets (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix memory leak (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix build failure (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for OVS_FLOW_ATTR_PROBE (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Constify various function arguments (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Remove redundant key ref from upcall_info (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Optimize recirc action (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Extend packet attribute for egress tunnel info (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Export symbols as GPL symbols (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Avoid NULL mask check while building mask (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor action alloc and copy api (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Move key_attr_size() to flow_netlink.h (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Remove flow member from struct ovs_skb_cb (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix the type of struct ovs_key_nd nd_target field (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Drop packets when interdev is not up (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor get_dp() function into multiple access APIs (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Refactor ovs_flow_cmd_fill_info() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: refactor do_output() to move NULL check out of fast path (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Additional logging for -EINVAL on flow setups (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Remove redundant tcp_flags code (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Move table destroy to dp-rcu callback (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add basic MPLS support to kernel (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Export lockdep_ovsl_is_held to modules (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Rename last_action() as nla_is_last() and move to netlink.h (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Turn vports with dependencies into separate modules (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Set flow-key members (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Create right mask with disabled megaflows (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: fix a use after free (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: use vport instead of p (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: kerneldoc warning fix (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: fix a sparse warning (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for Geneve tunneling (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Factor out allocation and verification of actions (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Wrap struct ovs_key_ipv4_tunnel in a new structure (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Add support for matching on OAM packets (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Eliminate memset() from flow_extract (Jiri Benc) [1156461 1211348]
-- [net] mpls: Fix config check for mpls (Jiri Benc) [1156461 1211348]
-- [net] mpls: Use mpls_features to activate software MPLS GSO segmentation (Jiri Benc) [1156461 1211348]
-- [net] geneve: Pass UDP socket down through udp_tunnel{, 6}_xmit_skb() (Jiri Benc) [1156461 1211348]
-- [net] geneve: coding style: comparison for inequality with NULL (Jiri Benc) [1156461 1211348]
-- [net] geneve: coding style: comparison for equality with NULL (Jiri Benc) [1156461 1211348]
-- [net] geneve: Do not require sock in udp_tunnel_xmit_skb (Jiri Benc) [1156461 1211348]
-- [net] geneve: pass udp_offload struct to UDP gro callbacks (Jiri Benc) [1156461 1211348]
-- [net] geneve: Check family when reusing sockets (Jiri Benc) [1156461 1211348]
-- [net] geneve: Remove socket hash table (Jiri Benc) [1156461 1211348]
-- [net] geneve: Simplify locking (Jiri Benc) [1156461 1211348]
-- [net] geneve: Remove workqueue (Jiri Benc) [1156461 1211348]
-- [net] geneve: Add Geneve GRO support (Jiri Benc) [1156461 1211348]
-- [net] geneve: Fix races between socket add and release (Jiri Benc) [1156461 1211348]
-- [net] geneve: Remove socket and offload handlers at destruction (Jiri Benc) [1156461 1211348]
-- [net] geneve: Unregister pernet subsys on module unload (Jiri Benc) [1156461 1211348]
-- [net] geneve: Set GSO type on transmit (Jiri Benc) [1156461 1211348]
-- [net] ipv4: minor spelling fixes (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: fix a compilation error when CONFIG_INET is not set (Jiri Benc) [1156461 1211348]
-- [net] geneve: fix a sparse warning (Jiri Benc) [1156461 1211348]
-- [net] geneve: Add Geneve tunneling protocol driver (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Replace rcu_dereference() with rcu_access_pointer() (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: replace macros net_random and net_srandom with direct calls to prandom (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: check CONFIG_OPENVSWITCH_GRE in makefile (Jiri Benc) [1156461 1211348]
-- [net] openvswitch: Fix struct comment (Jiri Benc) [1156461 1211348]
-- [net] vxlan: fix a shadow local variable (Jiri Benc) [1230935]
-- [net] ipv6: call iptunnel_xmit with NULL sock pointer if no tunnel sock is available (Jiri Benc) [1230935]
-- [net] udp_tunnel: Pass UDP socket down through udp_tunnel{, 6}_xmit_skb() (Jiri Benc) [1230935]
-- [net] kabi: whitelist struct nf_hook_state (Jiri Benc) [1230935]
-- [net] netfilter: Pass socket pointer down through okfn() (Jiri Benc) [1230935]
-- [net] netfilter: Add socket pointer to nf_hook_state (Jiri Benc) [1230935]
-- [net] netfilter: Add nf_hook_state initializer function (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through arpt_do_table() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through nft_set_pktinfo*() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through ip6t_do_table() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through nf_nat_ipv6_{in, out, fn, local_fn}() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through ipt_do_table() (Jiri Benc) [1230935]
-- [net] netfilter: Pass nf_hook_state through nf_nat_ipv4_{in, out, fn, local_fn}() (Jiri Benc) [1230935]
-- [net] netfilter: Make nf_hookfn use nf_hook_state (Jiri Benc) [1230935]
-- [net] netfilter: Use nf_hook_state in nf_queue_entry (Jiri Benc) [1230935]
-- [net] netfilter: Create and use nf_hook_state (Jiri Benc) [1230935]
-- [net] netfilter: Remove extern from function prototypes (Jiri Benc) [1230935]
-- [net] bridge: fix netfilter/NF_BR_LOCAL_OUT for own, locally generated queries (Jiri Benc) [1230935]
-- [net] ipv6: Fix udp checksums with raw sockets (Vlad Yasevich) [1105064]
-
-* Fri Jun 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-283.el7]
-- [scsi] storvsc: Set the SRB flags correctly when no data transfer is needed (Vitaly Kuznetsov) [1075441 1209811 1221298 1228231]
-- [scsi] storvsc: Fix a bug in copy_from_bounce_buffer() (Vitaly Kuznetsov) [1075441 1209811 1221298 1228231]
-- [scsi] storvsc: force SPC-3 compliance on win8 and win8 r2 hosts (Vitaly Kuznetsov) [1075441 1209811 1221298 1228231]
-- [scsi] storvsc: use cmd_size to allocate per-command data (Vitaly Kuznetsov) [1075441 1209811 1221298 1228231]
-- [hv] vmbus: unregister panic notifier on module unload (Vitaly Kuznetsov) [1210721]
-- [hv] vmbus: hyperv_panic_event() can be static (Vitaly Kuznetsov) [1210721]
-- [hv] vmbus: Correcting truncation error for constant HV_CRASH_CTL_CRASH_NOTIFY (Vitaly Kuznetsov) [1210721]
-- [hv] vmbus: Add support for VMBus panic notifier handler (Vitaly Kuznetsov) [1210721]
-- [hv] vmbus: Don't wait after requesting offers (Vitaly Kuznetsov) [1211914]
-- [hv] channel_mgmt: match var type to return type of wait_for_completion (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Get rid of some unnecessary messages (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Fix a bug in the error path in vmbus_open() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus_open(): reset the channel state on ENOMEM (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus_post_msg: retry the hypercall on some transient errors (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Fix a bug in vmbus_establish_gpadl() (Vitaly Kuznetsov) [1211914]
-- [hv] x86: Mark the Hyper-V clocksource as being continuous (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Enable interrupt driven flow control (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup hv_post_message() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup vmbus_establish_gpadl() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup vmbus_teardown_gpadl() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup vmbus_post_msg() (Vitaly Kuznetsov) [1211914]
-- [hv] vmbus: Cleanup the packet send path (Vitaly Kuznetsov) [1211914]
-- [hv] hv_balloon: do not online pages in offline blocks (Vitaly Kuznetsov) [1133403 1218868]
-- [hv] hv_balloon: don't lose memory when onlining order is not natural (Vitaly Kuznetsov) [1133403 1218868]
-- [pnp] convert bus code to use dev_groups (Jarod Wilson) [1232626]
-- [rtc] convert rtc-cmos to dev_pm_ops from legacy pm_ops (Jarod Wilson) [1232626]
-- [pnp] fix restoring devices after hibernation (Jarod Wilson) [1232626]
-- [pnp] convert PNP driver bus legacy pm_ops to dev_pm_ops (Jarod Wilson) [1232626]
-- [pnp] change pnp bus pm_ops to invoke pnp driver dev_pm_ops if specified (Jarod Wilson) [1232626]
-- [pci] pciehp: Wait for hotplug command completion where necessary (Myron Stowe) [1227034]
-- [pci] pciehp: Add more Slot Control debug output (Myron Stowe) [1227034]
-- [pci] pciehp: Fix wait time in timeout message (Myron Stowe) [1227034]
-- [pci] pciehp: Reduce PCIe slot_ctrl to 16 bits (Myron Stowe) [1227034]
-- [infiniband] srp: Use P_Key cache for P_Key lookups (Honggang Li) [1164541]
-- [infiniband] srp: Allow newline separator for connection string (Honggang Li) [1164541]
-- [infiniband] srp: Fix a race condition triggered by destroying a queue pair (Honggang Li) [1164541]
-- [infiniband] srp: Separate target and channel variables (Honggang Li) [1164541]
-- [infiniband] srp: Introduce two new srp_target_port member variables (Honggang Li) [1164541]
-- [infiniband] srp: Avoid that I/O hangs due to a cable pull during LUN scanning (Honggang Li) [1164541]
-- [infiniband] srp: Remove stale connection retry mechanism (Honggang Li) [1164541]
-- [infiniband] srp: Move ib_destroy_cm_id() call into srp_free_ch_ib() (Honggang Li) [1164541]
-- [infiniband] srp: Fix return value check in srp_init_module() (Honggang Li) [1164541]
-- [infiniband] srp: Fix residual handling (Honggang Li) [1164541]
-- [infiniband] srp: Fix deadlock between host removal and multipathd (Honggang Li) [1164541]
-- [infiniband] srp: Avoid problems if a header uses pr_fmt (Honggang Li) [1164541]
-- [infiniband] srp: Add fast registration support (Honggang Li) [1164541]
-- [infiniband] srp: Rename FMR-related variables (Honggang Li) [1164541]
-- [infiniband] srp: One FMR pool per SRP connection (Honggang Li) [1164541]
-- [infiniband] srp: Introduce the 'register_always' kernel module parameter (Honggang Li) [1164541]
-- [infiniband] srp: Introduce srp_finish_mapping() (Honggang Li) [1164541]
-- [infiniband] srp: Introduce srp_map_fmr() (Honggang Li) [1164541]
-- [infiniband] srp: Introduce an additional local variable (Honggang Li) [1164541]
-- [infiniband] srp: Fix kernel-doc warnings (Honggang Li) [1164541]
-- [infiniband] srp: Fix a sporadic crash triggered by cable pulling (Honggang Li) [1164541]
-- [infiniband] srp: Fix a race condition between failing I/O and I/O completion (Honggang Li) [1164541]
-- [infiniband] srp: Avoid that writing into "add_target" hangs due to a cable pull (Honggang Li) [1164541]
-- [infiniband] srp: Make writing into the "add_target" sysfs attribute interruptible (Honggang Li) [1164541]
-- [infiniband] srp: Avoid duplicate connections (Honggang Li) [1164541]
-- [infiniband] srp: Add more logging (Honggang Li) [1164541]
-- [infiniband] srp: Check ib_query_gid return value (Honggang Li) [1164541]
-- [infiniband] ocrdma: Update ocrdma version number (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fail connection for MTU lesser than 512 (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix dmac resolution for link local address (Honggang Li) [1184955]
-- [infiniband] ocrdma: Prevent allocation of DPP PDs if FW doesnt support it (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix the request length for RDMA_QUERY_QP mailbox command to FW (Honggang Li) [1184955]
-- [infiniband] ocrdma: Use VID 0 if PFC is enabled and vlan is not configured (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix QP state transition in destroy_qp (Honggang Li) [1184955]
-- [infiniband] ocrdma: Report EQ full fatal error (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix EQ destroy failure during driver unload (Honggang Li) [1184955]
-- [infiniband] ocrdma: Fix off by one in ocrdma_query_gid() (Honggang Li) [1184955]
-- [infiniband] ocrdma: Use unsigned for bit index (Honggang Li) [1184955]
-- [infiniband] ocrdma: Help gcc generate better code for ocrdma_srq_toggle_bit (Honggang Li) [1184955]
-- [infiniband] ocrdma: Update the ocrdma module version string (Honggang Li) [1184955]
-- [infiniband] ocrdma: set vlan present bit for user AH (Honggang Li) [1184955]
-- [infiniband] ocrdma: remove reference of ocrdma_dev out of ocrdma_qp structure (Honggang Li) [1184955]
-- [infiniband] ocrdma: Add support for interrupt moderation (Honggang Li) [1184955]
-- [infiniband] ocrdma: Honor return value of ocrdma_resolve_dmac (Honggang Li) [1184955]
-- [infiniband] ocrdma: Allow expansion of the SQ CQEs via buddy CQ expansion of the QP (Honggang Li) [1184955]
-- [infiniband] ocrdma: Discontinue support of RDMA-READ-WITH-INVALIDATE (Honggang Li) [1184955]
-- [infiniband] ocrdma: Host crash on destroying device resources (Honggang Li) [1184955]
-- [infiniband] ocrdma: Report correct state in ibv_query_qp (Honggang Li) [1184955]
-- [infiniband] ocrdma: Debugfs enhancments for ocrdma driver (Honggang Li) [1184955]
-- [infiniband] ocrdma: Report correct count of interrupt vectors while registering ocrdma device (Honggang Li) [1184955]
-- [infiniband] ocrdma: Move PD resource management to driver (Honggang Li) [1184955]
-- [infiniband] ocrdma: Increase the GID table size (Honggang Li) [1184955]
-- [infiniband] ocrdma: Add support for IB stack compliant stats in sysfs (Honggang Li) [1184955]
-- [infiniband] ocrdma: Save the bit environment, spare unncessary parenthesis (Honggang Li) [1184955]
-- [infiniband] ocrdma: The kernel has a perfectly good BIT() macro - use it (Honggang Li) [1184955]
-- [infiniband] ocrdma: Don't memset() buffers we just allocated with kzalloc() (Honggang Li) [1184955]
-- [infiniband] ocrdma: Remove a unused-label warning (Honggang Li) [1184955]
-- [infiniband] ipoib: Fix indentation level (Honggang Li) [1230203]
-- [infiniband] ipoib: Remove IPOIB_MCAST_RUN bit (Honggang Li) [1230203]
-- [infiniband] ipoib: Save only IPOIB_MAX_PATH_REC_QUEUE skb's (Honggang Li) [1230203]
-- [infiniband] ipoib: Handle QP in SQE state (Honggang Li) [1230203]
-- [infiniband] ipoib: Update broadcast record values after each successful join request (Honggang Li) [1230203]
-- [infiniband] ipoib: Use one linear skb in RX flow (Honggang Li) [1230203]
-- [fs] rbd: end I/O the entire obj_request on error (Sage Weil) [1229488]
-- [fs] rbd: rbd_wq comment is obsolete (Sage Weil) [1229488]
-- [fs] libceph: announce support for straw2 buckets (Sage Weil) [1229488]
-- [fs] crush: straw2 bucket type with an efficient 64-bit crush_ln() (Sage Weil) [1229488]
-- [fs] crush: ensuring at most num-rep osds are selected (Sage Weil) [1229488]
-- [fs] crush: drop unnecessary include from mapper.c (Sage Weil) [1229488]
-- [fs] ceph: fix uninline data function (Sage Weil) [1229488]
-- [fs] ceph: rename snapshot support (Sage Weil) [1229488]
-- [fs] ceph: fix null pointer dereference in send_mds_reconnect() (Sage Weil) [1229488]
-- [fs] ceph: hold on to exclusive caps on complete directories (Sage Weil) [1229488]
-- [fs] libceph: simplify our debugfs attr macro (Sage Weil) [1229488]
-- [fs] ceph: show non-default options only (Sage Weil) [1229488]
-- [fs] libceph: expose client options through debugfs (Sage Weil) [1229488]
-- [fs] libceph, ceph: split ceph_show_options() (Sage Weil) [1229488]
-- [fs] rbd: mark block queue as non-rotational (Sage Weil) [1229488]
-- [fs] libceph: don't overwrite specific con error msgs (Sage Weil) [1229488]
-- [fs] ceph: cleanup unsafe requests when reconnecting is denied (Sage Weil) [1229488]
-- [fs] ceph: don't zero i_wrbuffer_ref when reconnecting is denied (Sage Weil) [1229488]
-- [fs] ceph: don't mark dirty caps when there is no auth cap (Sage Weil) [1229488]
-- [fs] ceph: keep i_snap_realm while there are writers (Sage Weil) [1229488]
-- [fs] libceph: osdmap.h: Add missing format newlines (Sage Weil) [1229488]
-- [fs] ceph: kstrdup() memory handling (Sage Weil) [1229488]
-- [fs] ceph: properly release page upon error (Sage Weil) [1229488]
-- [fs] rbd: be more informative on -ENOENT failures (Sage Weil) [1229488]
-- [fs] ceph: match wait_for_completion_timeout return type (Sage Weil) [1229488]
-- [fs] ceph: use msecs_to_jiffies for time conversion (Sage Weil) [1229488]
-- [fs] ceph: remove redundant declaration (Sage Weil) [1229488]
-- [fs] ceph: fix dcache/nocache mount option (Sage Weil) [1229488]
-- [fs] ceph: drop cap releases in requests composed before cap reconnect (Sage Weil) [1229488]
-- [fs] Revert "libceph: use memalloc flags for net IO" (Sage Weil) [1229488]
-- [fs] libceph: kfree() in put_osd() shouldn't depend on authorizer (Sage Weil) [1229488]
-- [fs] libceph: fix double __remove_osd() problem (Sage Weil) [1229488]
-- [fs] rbd: convert to blk-mq (Carlos Maiolino) [1229488]
-- [fs] ceph: return error for traceless reply race (Sage Weil) [1229488]
-- [fs] ceph: fix dentry leaks (Sage Weil) [1229488]
-- [fs] ceph: re-send requests when MDS enters reconnecting stage (Sage Weil) [1229488]
-- [fs] ceph: show nocephx_require_signatures and notcp_nodelay options (Sage Weil) [1229488]
-- [fs] rbd: do not treat standalone as flatten (Sage Weil) [1229488]
-- [fs] ceph: fix atomic_open snapdir (Sage Weil) [1229488]
-- [fs] ceph: properly mark empty directory as complete (Sage Weil) [1229488]
-- [fs] client: include kernel version in client metadata (Sage Weil) [1229488]
-- [fs] ceph: provide seperate {inode, file}_operations for snapdir (Sage Weil) [1229488]
-- [fs] ceph: fix request time stamp encoding (Sage Weil) [1229488]
-- [fs] ceph: fix reading inline data when i_size > PAGE_SIZE (Sage Weil) [1229488]
-- [fs] ceph: avoid block operation when !TASK_RUNNING (ceph_mdsc_close_sessions) (Sage Weil) [1229488]
-- [fs] ceph: avoid block operation when !TASK_RUNNING (ceph_get_caps) (Sage Weil) [1229488]
-- [fs] ceph: avoid block operation when !TASK_RUNNING (ceph_mdsc_sync) (Sage Weil) [1229488]
-- [fs] rbd: fix error paths in rbd_dev_refresh() (Sage Weil) [1229488]
-- [fs] ceph: improve reference tracking for snaprealm (Sage Weil) [1229488]
-- [fs] ceph: properly zero data pages for file holes (Sage Weil) [1229488]
-- [fs] rbd: nuke copy_token() (Sage Weil) [1229488]
-- [fs] ceph: handle SESSION_FORCE_RO message (Sage Weil) [1229488]
-- [fs] libceph: use mon_client.c/put_generic_request() more (Sage Weil) [1229488]
-- [fs] libceph: nuke pool op infrastructure (Sage Weil) [1229488]
-- [fs] rbd: drop parent_ref in rbd_dev_unprobe() unconditionally (Sage Weil) [1229488]
-- [fs] rbd: fix rbd_dev_parent_get() when parent_overlap == 0 (Sage Weil) [1229488]
-- [fs] libceph: fix sparse endianness warnings (Sage Weil) [1229488]
-- [fs] ceph: use zu for len in ceph_fill_inline_data() (Sage Weil) [1229488]
-- [fs] ceph: fix setting empty extended attribute (Sage Weil) [1229488]
-- [fs] ceph: fix mksnap crash (Sage Weil) [1229488]
-- [fs] ceph: do_sync is never initialized (Sage Weil) [1229488]
-- [fs] ceph: support inline data feature (Sage Weil) [1229488]
-- [fs] ceph: flush inline version (Sage Weil) [1229488]
-- [fs] ceph: convert inline data to normal data before data write (Sage Weil) [1229488]
-- [fs] ceph: sync read inline data (Sage Weil) [1229488]
-- [fs] ceph: fetch inline data when getting Fcr cap refs (Sage Weil) [1229488]
-- [fs] ceph: use getattr request to fetch inline data (Sage Weil) [1229488]
-- [fs] ceph: add inline data to pagecache (Sage Weil) [1229488]
-- [fs] ceph: parse inline data in MClientReply and MClientCaps (Sage Weil) [1229488]
-- [fs] libceph: specify position of extent operation (Sage Weil) [1229488]
-- [fs] libceph: add CREATE osd operation support (Sage Weil) [1229488]
-- [fs] libceph: add SETXATTR/CMPXATTR osd operations support (Sage Weil) [1229488]
-- [fs] rbd: don't treat CEPH_OSD_OP_DELETE as extent op (Sage Weil) [1229488]
-- [fs] ceph: remove unused stringification macros (Sage Weil) [1229488]
-- [fs] libceph: require cephx message signature by default (Sage Weil) [1229488]
-- [fs] ceph: introduce global empty snap context (Sage Weil) [1229488]
-- [fs] ceph: message versioning fixes (Sage Weil) [1229488]
-- [fs] libceph: update ceph_msg_header structure (Sage Weil) [1229488]
-- [fs] libceph: message signature support (Sage Weil) [1229488]
-- [fs] libceph: store session key in cephx authorizer (Sage Weil) [1229488]
-- [fs] ceph, rbd: delete unnecessary checks before two function calls (Sage Weil) [1229488]
-- [fs] ceph: introduce a new inode flag indicating if cached dentries are ordered (Sage Weil) [1229488]
-- [fs] libceph: nuke ceph_kvfree() (Sage Weil) [1229488]
-- [fs] ceph: fix file lock interruption (Sage Weil) [1229488]
-
-* Thu Jun 25 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-282.el7]
-- [mtd] powernv: Add powernv flash MTD abstraction driver (Gustavo Duarte) [1221094]
-- [of] Ensure unique names without sacrificing determinism (Gustavo Duarte) [1230093]
-- [of] kill off of_can_translate_address (Gustavo Duarte) [1230093]
-- [of] platform: fix device naming for non-translatable addresses (Gustavo Duarte) [1230093]
-- [of] base: Fix PowerPC address parsing hack (Gustavo Duarte) [1230093]
-- [of] address: Don't throw errors on absent ranges properties (Gustavo Duarte) [1230093]
-- [of] platform: Move platform devices under /sys/devices/platform (Gustavo Duarte) [1230093]
-- [of] Fix dereferencing node name in debug output to be safe (Gustavo Duarte) [1230093]
-- [powerpc] powernv: Add opal-prd channel (Gustavo Duarte) [1221110 1229224]
-- [powerpc] powernv: Expose OPAL APIs required by PRD interface (Gustavo Duarte) [1221110 1229224]
-- [powerpc] powernv: Merge common platform device initialisation (Gustavo Duarte) [1221110 1229224]
-- [powerpc] powernv: Add interfaces for flash device access (Gustavo Duarte) [1221072 1229224]
-- [powerpc] vfio: powerpc/spapr: Support Dynamic DMA windows (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Register memory and define IOMMU v2 (David Gibson) [1213665]
-- [powerpc] mmu: Add userspace-to-physical addresses translation cache (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: powerpc/powernv/ioda2: Use DMA windows API in ownership control (David Gibson) [1213665]
-- [powerpc] iommu/ioda2: Add get_table_size() to calculate the size of future table (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Use new helpers to do proper cleanup on PE release (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: powerpc/powernv/ioda: Define and implement DMA windows API (David Gibson) [1213665]
-- [powerpc] powernv: Implement multilevel TCE tables (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Introduce pnv_pci_ioda2_set_window (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Introduce helpers to allocate TCE pages (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Rework iommu_table creation (David Gibson) [1213665]
-- [powerpc] iommu/powernv: Release replaced TCE (David Gibson) [1213665]
-- [powerpc] powernv: Implement accessor to TCE entry (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Add TCE invalidation for all attached groups (David Gibson) [1213665]
-- [powerpc] powernv/ioda2: Move TCE kill register address to PE (David Gibson) [1213665]
-- [powerpc] iommu: Fix IOMMU ownership control functions (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr/iommu/powernv/ioda2: Rework IOMMU ownership control (David Gibson) [1213665]
-- [powerpc] spapr: vfio: Switch from iommu_table to new iommu_table_group (David Gibson) [1213665]
-- [powerpc] spapr: vfio: Replace iommu_table with iommu_table_group (David Gibson) [1213665]
-- [powerpc] powernv/ioda/ioda2: Rework TCE invalidation in tce_build()/tce_free() (David Gibson) [1213665]
-- [powerpc] iommu: Move tce_xxx callbacks from ppc_md to iommu_table (David Gibson) [1213665]
-- [powerpc] powernv: Do not set "read" flag if direction==DMA_NONE (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Rework groups attaching (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Moving pinning/unpinning to helpers (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Disable DMA mappings on disabled container (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Move locked_vm accounting to helpers (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Use it_page_size (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Check that IOMMU page is fully contained by system page (David Gibson) [1213665]
-- [powerpc] vfio: powerpc/spapr: Move page pinning from arch code to VFIO IOMMU driver (David Gibson) [1213665]
-- [powerpc] iommu: Always release iommu_table in iommu_free_table() (David Gibson) [1213665]
-- [powerpc] iommu: Put IOMMU group explicitly (David Gibson) [1213665]
-- [powerpc] powernv/ioda: Clean up IOMMU group registration (David Gibson) [1213665]
-- [powerpc] iommu/powernv: Get rid of set_iommu_table_base_and_group (David Gibson) [1213665]
-- [powerpc] eeh/ioda2: Use device::iommu_group to check IOMMU group (David Gibson) [1213665]
-- [netdrv] sfc: mark state UNINIT after unregister (Jarod Wilson) [1199178]
-- [netdrv] sfc: leak vports if a VF is assigned during PF unload (Jarod Wilson) [1199178]
-- [netdrv] sfc: force removal of VF and vport on driver removal (Jarod Wilson) [1199178]
-- [netdrv] sfc: do not allow VFs to be destroyed if assigned to guests (Jarod Wilson) [1199178]
-- [netdrv] sfc: don't update stats on VF when called in atomic context (Jarod Wilson) [1199178]
-- [netdrv] sfc: suppress vadaptor stats when EVB is not present (Jarod Wilson) [1199178]
-- [netdrv] sfc: suppress ENOENT error messages from MC_CMD_MAC_STATS (Jarod Wilson) [1199178]
-- [netdrv] sfc: update netdevice statistics to use vadaptor stats (Jarod Wilson) [1199178]
-- [netdrv] sfc: DMA the VF stats only when requested (Jarod Wilson) [1199178]
-- [netdrv] sfc: display vadaptor statistics for all interfaces (Jarod Wilson) [1199178]
-- [netdrv] sfc: set the port-id when calling MC_CMD_MAC_STATS (Jarod Wilson) [1199178]
-- [netdrv] sfc: add "port_" prefix to MAC stats (Jarod Wilson) [1199178]
-- [netdrv] sfc: Implement ndo_gets_phys_port_id() for EF10 VFs (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add sysfs entry for flags (link control and primary) (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add paranthesis correctly on all branches of the if statement (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add code to export port_num in netdev->dev_port (Jarod Wilson) [1199178]
-- [netdrv] sfc: free multiple Rx buffers when required (Jarod Wilson) [1199178]
-- [netdrv] sfc: add module parameter to enable MCDI logging on new functions (Jarod Wilson) [1199178]
-- [netdrv] sfc: add sysfs entry to control MCDI tracing (Jarod Wilson) [1199178]
-- [netdrv] sfc: add tracing of MCDI commands (Jarod Wilson) [1199178]
-- [netdrv] sfc: set the MAC address using MC_CMD_VADAPTOR_SET_MAC (Jarod Wilson) [1199178]
-- [netdrv] sfc: Implement dummy disable of VF spoof check for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: add ndo_set_vf_link_state() function for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: add ndo_set_vf_vlan() function for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: Change entity reset on MC reboot to a new datapath-only reset (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add ndo_get_vf_config() function for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: add ndo_set_vf_mac() function for EF10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: Initialise MCDI buffers to 0 on declaration (Jarod Wilson) [1199178]
-- [netdrv] sfc: Enable a VF to get its own MAC address (Jarod Wilson) [1199178]
-- [netdrv] sfc: protect filter table against use-after-free (Jarod Wilson) [1199178]
-- [netdrv] sfc: Store the efx_nic struct of the current VF in the VF data struct (Jarod Wilson) [1199178]
-- [netdrv] sfc: save old MAC address in case sriov_mac_address_changed fails (Jarod Wilson) [1199178]
-- [netdrv] sfc: Store vf_index in nic_data for Ef10 (Jarod Wilson) [1199178]
-- [netdrv] sfc: MC_CMD_SET_MAC can only be called by the link control Function (Jarod Wilson) [1199178]
-- [netdrv] sfc: change definition of MC_CMD_VADAPTOR_ALLOC (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add permissions to MCDI commands (Jarod Wilson) [1199178]
-- [netdrv] sfc: nicer log message on Siena SR-IOV probe fail (Jarod Wilson) [1199178]
-- [netdrv] sfc: suppress some MCDI error messages in PTP (Jarod Wilson) [1199178]
-- [netdrv] sfc: nicer log message on PTP probe fail (Jarod Wilson) [1199178]
-- [netdrv] sfc: Bind the sfc driver to any available VF's (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add use of shared RSS contexts (Jarod Wilson) [1199178]
-- [netdrv] sfc: Cope with permissions enforcement added to firmware for SR-IOV (Jarod Wilson) [1199178]
-- [netdrv] sfc: manually allocate and free vadaptors (Jarod Wilson) [1199178]
-- [netdrv] sfc: create vports for VFs and assign random MAC addresses (Jarod Wilson) [1199178]
-- [netdrv] sfc: Prepare to bind the sfc driver to the VF (Jarod Wilson) [1199178]
-- [netdrv] sfc: get the PF number and record in nic_data (Jarod Wilson) [1199178]
-- [netdrv] sfc: create VEB vswitch and vport above default firmware setup (Jarod Wilson) [1199178]
-- [netdrv] sfc: record the PF's vport ID in nic_data (Jarod Wilson) [1199178]
-- [netdrv] sfc: Record [rt]x_dpcpu_fw_id in EF10 nic_data (Jarod Wilson) [1199178]
-- [netdrv] sfc: Use MCDI to set FILTER_OP_IN_TX_DOMAIN (Jarod Wilson) [1199178]
-- [netdrv] sfc: Enable VF's via a write to the sysfs file sriov_numvfs (Jarod Wilson) [1199178]
-- [netdrv] sfc: Move and rename efx_vf struct to siena_vf (Jarod Wilson) [1199178]
-- [netdrv] sfc: Own header for nic-specific sriov functions, single instance of netdev_ops and sriov removed from Falcon code (Jarod Wilson) [1199178]
-- [netdrv] sfc: Fix memcpy() with const destination compiler warning (Jarod Wilson) [1199178]
-- [netdrv] sfc: Revert SRIOV changes (Jarod Wilson) [1199178]
-- [netdrv] sfc: Enable VF's via a write to the sysfs file sriov_numvfs (Jarod Wilson) [1199178]
-- [netdrv] sfc: Own header for nic-specific sriov functions, single instance of netdev_ops and sriov removed from Falcon code (Jarod Wilson) [1199178]
-- [netdrv] sfc: codespell comment spelling fixes (Jarod Wilson) [1199178]
-- [netdrv] sfc: use netdev_rss_key_fill() helper (Jarod Wilson) [1199178]
-- [netdrv] sfc: don't BUG_ON efx->max_channels == 0 in probe (Jarod Wilson) [1199178]
-- [netdrv] sfc: Add NIC type operations to replace direct calls from efx.c into siena_sriov.c (Jarod Wilson) [1199178]
-- [netdrv] sfc: Rename implementations in siena_sriov.c to have a 'siena' prefix (Jarod Wilson) [1199178]
-- [netdrv] sfc: Move the current VF state from efx_nic into siena_nic_data (Jarod Wilson) [1199178]
-- [netdrv] sfc: remove incorrect EFX_BUG_ON_PARANOID check (Jarod Wilson) [1199178]
-- [netdrv] sfc: add support for skb->xmit_more (Jarod Wilson) [1199178]
-- [netdrv] sfc: fix addr_list_lock spinlock use before init (Jarod Wilson) [1199178]
-- [netdrv] sfc: Convert the normal transmit complete path to dev_consume_skb_any() (Jarod Wilson) [1199178]
-- [netdrv] sfc: Use ether_addr_copy and eth_broadcast_addr (Jarod Wilson) [1199178]
-- [netdrv] fm10k: Support for configurable RSS hash function (Neil Horman) [1173790]
-- [netdrv] fm10k: Add CONFIG_FM10K_VXLAN configuration option (Neil Horman) [1173790]
-- [netdrv] fm10k: Bump driver version to 0.15.2 (Neil Horman) [1173790]
-- [netdrv] fm10k: corrected VF multicast update (Neil Horman) [1173790]
-- [netdrv] fm10k: mbx_update_max_size does not drop all oversized messages (Neil Horman) [1173790]
-- [netdrv] fm10k: reset head instead of calling update_max_size (Neil Horman) [1173790]
-- [netdrv] fm10k: renamed mbx_tx_dropped to mbx_tx_oversized (Neil Horman) [1173790]
-- [netdrv] fm10k: update xcast mode before synchronizing multicast addresses (Neil Horman) [1173790]
-- [netdrv] fm10k: start service timer on probe (Neil Horman) [1173790]
-- [netdrv] fm10k: fix function header comment (Neil Horman) [1173790]
-- [netdrv] fm10k: comment next_vf_mbx flow (Neil Horman) [1173790]
-- [netdrv] fm10k: don't handle mailbox events in iov_event path and always process mailbox (Neil Horman) [1173790]
-- [netdrv] fm10k: use separate workqueue for fm10k driver (Neil Horman) [1173790]
-- [netdrv] fm10k: Set PF queues to unlimited bandwidth during virtualization (Neil Horman) [1173790]
-- [netdrv] fm10k: expose tx_timeout_count as an ethtool stat (Neil Horman) [1173790]
-- [netdrv] fm10k: only increment tx_timeout_count in Tx hang path (Neil Horman) [1173790]
-- [netdrv] fm10k: remove extraneous "Reset interface" message (Neil Horman) [1173790]
-- [netdrv] fm10k: separate PF only stats so that VF does not display them (Neil Horman) [1173790]
-- [netdrv] fm10k: use hw->mac.max_queues for stats (Neil Horman) [1173790]
-- [netdrv] fm10k: only show actual queues, not the maximum in hardware (Neil Horman) [1173790]
-- [netdrv] fm10k: allow creation of VLAN on default vid (Neil Horman) [1173790]
-- [netdrv] fm10k: fix unused warnings (Neil Horman) [1173790]
-- [netdrv] fm10k: Add netconsole support (Neil Horman) [1173790]
-- [netdrv] fm10k: Have the VF get the default VLAN during init (Neil Horman) [1173790]
-- [netdrv] fm10k: Correct spelling mistake (Neil Horman) [1173790]
-- [netdrv] fm10k: Remove redundant rx_errors in ethtool (Neil Horman) [1173790]
-- [netdrv] fm10k: Corrected an error in Tx statistics (Neil Horman) [1173790]
-- [netdrv] fm10k: Resolve various spelling errors and checkpatch warnings (Neil Horman) [1173790]
-- [netdrv] fm10k: Resolve compile warnings with W=1 (Neil Horman) [1173790]
-- [netdrv] fm10k: Validate VLAN ID in fm10k_update_xc_addr_pf (Neil Horman) [1173790]
-- [netdrv] fm10k: Increase the timeout for the data path reset (Neil Horman) [1173790]
-- [netdrv] fm10k: Check tunnel header length in encap offload (Neil Horman) [1173790]
-- [netdrv] fm10k: Avoid double setting of NETIF_F_SG for the HW encapsulation feature mask (Neil Horman) [1173790]
-- [netdrv] fm10k: Clean-up page reuse code (Neil Horman) [1173790]
-- [netdrv] fm10k: Use dma_rmb on Rx descriptor reads (Neil Horman) [1173790]
-- [netdrv] fm10k: Unlock mailbox on VLAN addition failures (Neil Horman) [1173790]
-- [netdrv] fm10k: Check the host state when bringing the interface up (Neil Horman) [1173790]
-- [netdrv] fm10k: fix race accessing page->_count (Neil Horman) [1173790]
-- [netdrv] fm10k: Correctly set the number of Tx queues (Neil Horman) [1173790]
-- [netdrv] fm10k: Reduce buffer size when pages are larger than 4K (Neil Horman) [1173790]
-- [netdrv] fm10k: using vmalloc requires including linux/vmalloc.h (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for PTP (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for ptp to hw specific files (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for debugfs (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for IEEE DCBx (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for SR-IOV to driver (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for SR-IOV to PF core files (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for VF (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for PF <-> VF mailbox (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for MACVLAN acceleration (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for netdev offloads (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for multiple queues (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for PCI power management and error handling (Neil Horman) [1173790]
-- [netdrv] fm10k: Add ethtool support (Neil Horman) [1173790]
-- [netdrv] fm10k: Add transmit and receive fastpath and interrupt handlers (Neil Horman) [1173790]
-- [netdrv] fm10k: Add Tx/Rx hardware ring bring-up/tear-down (Neil Horman) [1173790]
-- [netdrv] fm10k: Add service task to handle delayed events (Neil Horman) [1173790]
-- [netdrv] fm10k: add support for Tx/Rx rings (Neil Horman) [1173790]
-- [netdrv] fm10k: Add interrupt support (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for ndo_open/stop (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for L2 filtering (Neil Horman) [1173790]
-- [net] Add support for device specific address syncing (Neil Horman) [1173790]
-- [net] remove dead code for add/del multiple (Neil Horman) [1173790]
-- [netdrv] fm10k: Add netdev (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for configuring PF interface (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for PF (Neil Horman) [1173790]
-- [netdrv] fm10k: Implement PF <-> SM mailbox operations (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for mailbox (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for basic interaction with hardware (Neil Horman) [1173790]
-- [netdrv] fm10k: Add support for TLV message parsing and generation (Neil Horman) [1173790]
-- [netdrv] fm10k: Add register defines and basic structures (Neil Horman) [1173790]
-- [netdrv] fm10k: Add skeletal frame for Intel(R) FM10000 Ethernet Switch Host Interface Driver (Neil Horman) [1173790]
-- [netdrv] qlcnic: Fix trivial typo in comment (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Delete existing multicast MAC list before adding new (Chad Dupuis) [1187297]
-- [netdrv] qlogic: Deletion of unnecessary checks before two function calls (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix NAPI poll routine for Tx completion (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix dump_skb output (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix return value in qlcnic_probe() (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix number of arguments in destroy tx context command (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix programming number of arguments in a command (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix ordering of stats in stats buffer (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Remove __QLCNIC_DEV_UP bit check to read TX queues statistics (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix memory corruption while reading stats using ethtool (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Use qlcnic_83xx_flash_read32() API instead of lockless version of the API (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Set skb->csum_level for encapsulated checksum (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Update version to 5.3.62 (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Add support to run firmware POST (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Use usleep_range() instead of msleep() for sleep less than 20ms (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Add support for 0x8830 device ID (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Update Link speed and port type info for 83xx adapter (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix endianess issue in firmware load from file operation (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix endianess issue in FW dump template header (Chad Dupuis) [1187297]
-- [netdrv] qlcnic: Fix flash access interface to application (Chad Dupuis) [1187297]
-
-* Thu Jun 25 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-281.el7]
-- [scsi] megaraid: initialise block layer for using tagged commands (Tomas Henzl) [1234834]
-- [x86] irq: Fix bug in setting IOAPIC pin attributes (Steve Best) [1231358 1234860]
-- [x86] mm: Fix missing change to call of flush_tlb_others() in flush_tlb_mm_range() (Larry Woodman) [1172891]
-- [net] svcrpc: fix potential GSSX_ACCEPT_SEC_CONTEXT decoding failures (Scott Mayhew) [1120860]
-- [md] dm-space-map-metadata: fix occasional leak of a metadata block on resize (Mike Snitzer) [1222004]
-- [md] dm-thin-metadata: fix a race when entering fail mode (Mike Snitzer) [1222004]
-- [md] dm-thin: fail messages with EOPNOTSUPP when pool cannot handle messages (Mike Snitzer) [1222004]
-- [md] dm-thin: range discard support (Mike Snitzer) [1222004]
-- [md] dm-thin-metadata: add dm_thin_remove_range() (Mike Snitzer) [1222004]
-- [md] dm-thin-metadata: add dm_thin_find_mapped_range() (Mike Snitzer) [1222004]
-- [md] dm-btree: add dm_btree_remove_leaves() (Mike Snitzer) [1222004]
-- [md] dm-thin: cleanup schedule_zero() to read more logically (Mike Snitzer) [1222004]
-- [md] dm-thin: cleanup overwrite's endio restore to be centralized (Mike Snitzer) [1222004]
-- [md] bio: fix kABI breakage when __bi_remaining was added to struct bio (Mike Snitzer) [1222004]
-- [md] bio: extend struct bio with RHEL-specific struct bio_aux (Mike Snitzer) [1222004]
-- [md] block: remove management of bi_remaining when restoring original bi_end_io (Mike Snitzer) [1222004]
-- [md] bio: skip atomic inc_dec of ->bi_remaining for non-chains (Mike Snitzer) [1222004]
-- [md] block: remove unused BIO_RW_BLOCK and BIO_EOF flags (Mike Snitzer) [1222004]
-- [md] block: Fix BUG_ON when pi errors occur (Mike Snitzer) [1222004]
-- [md] dm-raid1: fix immutable biovec related BUG when retrying read bio (Mike Snitzer) [1222004]
-- [md] btrfs: fix wrong error handle when the device is missing or is not writeable (Mike Snitzer) [1222004]
-- [md] btrfs: fix deadlock when mounting a degraded fs (Mike Snitzer) [1222004]
-- [md] btrfs: use bio_endio_nodec instead of open code (Mike Snitzer) [1222004]
-- [md] btrfs: fix missing increment of bi_remaining (Mike Snitzer) [1222004]
-- [md] block: fixup for generic bio chaining (Mike Snitzer) [1222004]
-- [md] block: Generic bio chaining (Mike Snitzer) [1222004]
-- [vhost] relax used address alignment (Thomas Huth) [1227341]
-- [virtio] virtio_ring: document alignment requirements (Thomas Huth) [1227341]
-- [s390] pci: fix possible information leak in mmio syscall (Hendrik Brueckner) [1182169]
-- [s390] pci: add missing address space annotation (Hendrik Brueckner) [1182169]
-- [s390] kernel: add system calls for PCI memory access (Hendrik Brueckner) [1182169]
-- [s390] hmcdrv: HMC drive CD/DVD access (Hendrik Brueckner) [1182294]
-- [s390] irq: Use defines for external interruption codes (Hendrik Brueckner) [1182294]
-- [s390] irq: Add defines for external interruption codes (Hendrik Brueckner) [1182294]
-- [vfio] Fix runaway interruptible timeout (Alex Williamson) [1211739]
-- [vfio] vfio-pci: Log device requests more verbosely (Alex Williamson) [1211739]
-- [vfio] pci: Fix racy vfio_device_get_from_dev() call (Alex Williamson) [1230362]
-- [scsi] iscsi: Fix iscsi endpoints leak (Chris Leech) [1231606]
-- [scsi] libiscsi: fix potential buffer overrun in (Chris Leech) [1231606]
-- [scsi] iscsi_tcp: export port being used (Chris Leech) [1231606]
-- [scsi] iscsi_class: Fix freeing of skb in get host error path (Chris Leech) [1231606]
-- [scsi] libiscsi: return new error code when nop times out (Chris Leech) [1231606]
-- [scsi] iscsi_class: fix get_host_stats return code when not (Chris Leech) [1231606]
-- [scsi] iscsi_class: fix get_host_stats error handling (Chris Leech) [1231606]
-- [scsi] iscsi: kill redundant casts (Chris Leech) [1231606]
-- [scsi] libiscsi: Fix static checker warning on bh locking (Chris Leech) [1231606]
-- [scsi] iscsi_tcp: check for valid session before accessing (Chris Leech) [1231606]
-- [scsi] iscsi_boot_sysfs: Fix a memory leak in (Chris Leech) [1231606]
-- [scsi] libiscsi: remove unneeded queue work when max_cmdsn is (Chris Leech) [1231606]
-- [scsi] libiscsi: Reduce locking contention in fast path (Chris Leech) [1231606]
-- [scsi] libiscsi: Restructure iscsi_tcp r2t response logic (Chris Leech) [1231606]
-- [scsi] iscsi: fix wrong order of opcode and itt in (Chris Leech) [1231606]
-- [scsi] libiscsi: Add local_ipaddr parameter in iscsi_conn (Chris Leech) [1231606]
-- [net] rename local_df to ignore_df (Jiri Benc) [1200759]
-- [net] netlink: implement nla_get_in_addr and nla_get_in6_addr (Jiri Benc) [1200759]
-- [net] netlink: implement nla_put_in_addr and nla_put_in6_addr (Jiri Benc) [1200759]
-- [net] xfrm: simplify xfrm_address_t use (Jiri Benc) [1200759]
-- [net] tcp: simplify inetpeer_addr_base use (Jiri Benc) [1200759]
-- [net] Introduce possible_net_t (Jiri Benc) [1200759]
-- [net] Replace u64_stats_fetch_begin_bh to u64_stats_fetch_begin_irq (Jiri Benc) [1200759]
-- [net] Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool (Ivan Vecera) [1200759]
-- [net] gro: add a per device gro flush timer (Ivan Vecera) [1200759]
-- [net] introduce extended napi_struct (Ivan Vecera) [1200759]
-- [net] xfrm: announce deleation of temporary SA (Herbert Xu) [1210334]
-- [net] rtnetlink: fix userspace API breakage for iproute2 < v3.9.0 (Michal Schmidt) [1191660]
-- [net] netlink: rate-limit leftover bytes warning and print process name (Michal Schmidt) [1191660]
-- [net] tcp: RFC7413 option support for Fast Open client (Marcelo Leitner) [1219204]
-- [net] tcp: RFC7413 option support for Fast Open server (Marcelo Leitner) [1219204]
-- [net] tcp: fix saving TX flow hash in sock for outgoing connections (Ivan Vecera) [1215920]
-- [net] flow_dissector: Call skb_get_hash in get_xps_queue and __skb_tx_hash (Ivan Vecera) [1215920]
-- [net] ipv6: provide stubs for ip6_set_txhash and ip6_make_flowlabel (Ivan Vecera) [1215920]
-- [net] ip: Save TX flow hash in sock and set in skbuf on xmit (Ivan Vecera) [1215920]
-- [net] flow_dissector: Abstract out hash computation (Ivan Vecera) [1215920]
-- [net] Rename skb->rxhash to skb->hash (Ivan Vecera) [1215920]
-- [netdrv] sky2: sky2 calls skb_set_hash (Ivan Vecera) [1215920]
-- [netdrv] cxgb4: cxgb4 calls skb_set_hash (Ivan Vecera) [1215920]
-- [net] flow_dissector: initialize hashrnd in flow_dissector with net_get_random_once (Ivan Vecera) [1215920]
-- [net] netfilter: x_tables: avoid percpu ruleset duplication (Phil Sutter) [1231910]
-- [net] netfilter: x_tables: xt_free_table_info() cleanup (Phil Sutter) [1231910]
-- [net] netfilter: x_tables: use percpu rule counters (Phil Sutter) [1231910]
-- [net] fix wrong mac_len calculation for vlans (Vlad Yasevich) [1135619]
-- [net] Start with correct mac_len in skb_network_protocol (Vlad Yasevich) [1135619]
-- [net] Account for all vlan headers in skb_mac_gso_segment (Vlad Yasevich) [1135619]
-- [net] vti6: Add pmtu handling to vti6_xmit (Alexander Duyck) [1129761]
-- [net] vti, vti6: Preserve skb->mark after rcv_cb call (Alexander Duyck) [1129761]
-- [net] xfrm: Override skb->mark with tunnel->parm.i_key in xfrm_input (Alexander Duyck) [1129761]
-- [net] vti, vti6: Do not touch skb->mark on xmit (Alexander Duyck) [1129761]
-- [net] ip_tunnel: Report Rx dropped in ip_tunnel_get_stats64 (Alexander Duyck) [1129761]
-- [net] vti6: implement ndo_get_iflink (Alexander Duyck) [1129761]
-- [net] vti6: advertise link netns via netlink (Alexander Duyck) [1129761]
-- [net] ah6: Use the IPsec protocol multiplexer API (Alexander Duyck) [1129761]
-- [net] ipcomp6: Use the IPsec protocol multiplexer API (Alexander Duyck) [1129761]
-- [net] esp6: Use the IPsec protocol multiplexer API (Alexander Duyck) [1129761]
-- [net] esp: fix potential MTU calculation overflows (Alexander Duyck) [1129761]
-- [net] vti: Simplify error handling in module init and exit (Alexander Duyck) [1129761]
-- [net] xfrm6: Properly handle unsupported protocols (Alexander Duyck) [1129761]
-- [net] vti6: fix uninit when using x-netns (Alexander Duyck) [1129761]
-- [net] vti6: Add a lookup method for tunnels with wildcard endpoints (Alexander Duyck) [1129761]
-- [net] vti6: Allow sending packets through tunnels with wildcard endpoints (Alexander Duyck) [1129761]
-- [net] vti6: Use vti6_dev_init as the ndo_init function (Alexander Duyck) [1129761]
-- [net] better IFF_XMIT_DST_RELEASE support (Alexander Duyck) [1129761]
-- [net] move net_device priv_flags out from UAPI (Alexander Duyck) [1129761]
-- [net] kdoc struct net_device flags and priv_flags (Alexander Duyck) [1129761]
-- [net] vti6: Return an error when adding an existing tunnel (Alexander Duyck) [1129761]
-- [net] vti6: Simplify error handling in module init and exit (Alexander Duyck) [1129761]
-- [net] vti6: delete unneeded call to netdev_priv (Alexander Duyck) [1129761]
-- [net] vti6: Use the tunnel mark for lookup in the error handlers (Alexander Duyck) [1129761]
-- [net] vti6: Don't unregister pernet ops twice on init errors (Alexander Duyck) [1129761]
-- [net] vti6: Enable namespace changing (Alexander Duyck) [1129761]
-- [net] vti6: Check the tunnel endpoints of the xfrm state and the vti interface (Alexander Duyck) [1129761]
-- [net] vti6: Support inter address family tunneling (Alexander Duyck) [1129761]
-- [net] vti6: Update the ipv6 side to use its own receive hook (Alexander Duyck) [1129761]
-- [net] xfrm6: Add IPsec protocol multiplexer (Alexander Duyck) [1129761]
-- [net] xfrm: Introduce xfrm_input_afinfo to access the the callbacks properly (Alexander Duyck) [1129761]
-- [net] vti6: Remove caching of flow informations (Alexander Duyck) [1129761]
-- [net] vti6: Remove dst_entry caching (Alexander Duyck) [1129761]
-- [net] vti6: unify the pcpu_tstats and br_cpu_netstats as one (Alexander Duyck) [1129761]
-- [net] ipv6: fix the use of pcpu_tstats in ip6_vti.c (Alexander Duyck) [1129761]
-- [net] ip_tunnel: the lack of vti_link_ops' dellink() cause kernel panic (Alexander Duyck) [1129761]
-- [net] ipv6: Add support for IPsec virtual tunnel interfaces (Alexander Duyck) [1129761]
-- [net] ipv6: Add a receive path hook for vti6 in xfrm6_mode_tunnel (Alexander Duyck) [1129761]
-- [netdrv] netxen_nic: use spin_[un]lock_bh around tx_clean_lock (2) (Tony Camuso) [1217748]
-- [netdrv] netxen_nic: use spin_[un]lock_bh around tx_clean_lock (Tony Camuso) [1217748]
-
-* Wed Jun 24 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-280.el7]
-- [block] xen-blkfront: fix accounting of reqs when migrating (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: remove redundant flush_op (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: improve protection against issuing unsupported REQ_FUA (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: factor out flush-related checks from do_blkif_request() (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: remove type check from blkfront_setup_discard (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkif: drop struct blkif_request_segment_aligned (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: Fix possible NULL ptr dereference (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: Silence pfn maybe-uninitialized warning (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: restore the non-persistent data path (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: improve aproximation of required grants per request (Vitaly Kuznetsov) [1096909]
-- [block] xen-blkfront: revoke foreign access for grants not mapped by the backend (Vitaly Kuznetsov) [1096909]
-- [netdrv] e1000e: Bump the version to 3.2.5 (John Greene) [1173782]
-- [netdrv] e1000e: fix unit hang during loopback test (John Greene) [1173782]
-- [netdrv] e1000e: fix systim issues (John Greene) [1173782]
-- [netdrv] e1000e: fix legacy interrupt handling in i219 (John Greene) [1173782]
-- [netdrv] e1000e: fix flush_desc_ring implementation (John Greene) [1173782]
-- [netdrv] e1000e: fix logical error in flush_desc_rings (John Greene) [1173782]
-- [netdrv] e1000e: remove call to do_div and sign mismatch warning (John Greene) [1173782]
-- [netdrv] e1000e: i219 execute unit hang fix on every reset or power state transition (John Greene) [1173782]
-- [netdrv] e1000e: i219 fix unit hang on reset and runtime D3 (John Greene) [1173782]
-- [netdrv] e1000e: Add pm_qos header (John Greene) [1173782]
-- [netdrv] e1000e: fix call to do_div() to use u64 arg (John Greene) [1173782]
-- [netdrv] e1000e: Do not allow CRC stripping to be disabled on 82579 w/ jumbo frames (John Greene) [1173782]
-- [netdrv] e1000e: Cleanup handling of VLAN_HLEN as a part of max frame size (John Greene) [1173782]
-- [netdrv] e1000e: Use dma_rmb instead of rmb for descriptor read ordering (John Greene) [1173782]
-- [netdrv] e1000e: NVM write protect access removed from SPT HW (John Greene) [1173782]
-- [netdrv] e1000e: call netif_carrier_off early on down (John Greene) [1173782]
-- [netdrv] e1000e: remove calls to ioremap/unmap for NVM addr (John Greene) [1173782]
-- [netdrv] e1000e: fix obscure comments (John Greene) [1173782]
-- [netdrv] e1000e: initial support for i219 (John Greene) [1173782]
-- [netdrv] e1000e: support txtd update delay via xmit_more (John Greene) [1173782]
-- [netdrv] e1000e: Use eth_skb_pad and skb_put_padto helpers (John Greene) [1173782]
-- [netdrv] e1000e: Eliminate CONFIG_PM_RUNTIME (John Greene) [1173782]
-- [netdrv] e1000e: use netdev_rss_key_fill() helper (John Greene) [1173782]
-- [netdrv] e1000e: Cleanup return values in ethtool (John Greene) [1173782]
-- [netdrv] e1000e: delete excessive space character in debug message (John Greene) [1173782]
-- [netdrv] e1000e: fix trivial kernel doc typos (John Greene) [1173782]
-- [virtio] Add virtio-input driver (Gerd Hoffmann) [1231743]
-- [kvm] ioapic: Record edge-triggered interrupts delivery status (Gerd Hoffmann) [1173817]
-- [kernel] sched: Fix KMALLOC_MAX_SIZE overflow during cpumask allocation (Frank Ramsay) [1209156]
-- [x86] kvm: fix lapic.timer_mode on restore (Radim Krcmar) [1228342]
-- [pci] Add ACS quirks for Intel 1G NICs (Alex Williamson) [1176512]
-- [mfd] lpc_ich: Assign subdevice ids automatically (Prarit Bhargava) [1231296]
-- [x86] kernel: Load TLS descriptors before switching DS and ES (Adrian Reber) [1223330] {CVE-2014-9419}
-- [powerpc] kvm: Correct backport of h_logical_ci_{load, store} (David Gibson) [1229952]
-- [powerpc] rcu: Make list_splice_init_rcu() account for RCU readers (David Gibson) [1232550]
-- [powerpc] powernv: Remove powernv RTAS support (David Gibson) [1232550]
-- [powerpc] powernv/iommu: disable IOMMU bypass with param iommu=nobypass (David Gibson) [1232550]
-- [powerpc] pseries: Avoid deadlock on removing ddw (David Gibson) [1232550]
-- [powerpc] iommu: Remove IOMMU device references via bus notifier (David Gibson) [1232550]
-- [powerpc] powernv: Use it_page_shift for TCE invalidation (David Gibson) [1232550]
-- [powerpc] powernv: Use it_page_shift in TCE build (David Gibson) [1232550]
-- [powerpc] iommu: Fix comments with it_page_shift (David Gibson) [1232550]
-- [powerpc] powernv: Shift VF resource with an offset (David Gibson) [1232550]
-- [powerpc] powernv: Set PELTV for compound PEs (David Gibson) [1232550]
-- [powerpc] powernv: Reserve additional space for IOV BAR according to the number of total_pe (David Gibson) [1232550]
-- [powerpc] pci: Keep individual VF BAR size in struct pci_sriov (David Gibson) [1232550]
-- [powerpc] pci: Remove fixed parameter in pci_iov_resource_bar() (David Gibson) [1232550]
-- [powerpc] pci: Print PF SR-IOV resource that contains all VF(n) BAR space (David Gibson) [1232550]
-- [powerpc] pci-ioda: Use a single function to emit logging messages (David Gibson) [1232550]
-- [powerpc] pci-ioda: Remove unnecessary return value from printk (David Gibson) [1232550]
-- [powerpc] powernv: Allocate struct pnv_ioda_pe iommu_table dynamically (David Gibson) [1232550]
-- [powerpc] add real mode support for dma operations on powernv (David Gibson) [1232550]
-- [powerpc] powernv: Add a page size parameter to pnv_pci_setup_iommu_table() (David Gibson) [1232550]
-- [powerpc] powernv: only register log if OPAL supports doing so (Gustavo Duarte) [1221918]
-- [powerpc] powernv: only call OPAL_ELOG_RESEND if firmware supports it (Gustavo Duarte) [1221918]
-- [powerpc] powernv: Check OPAL elog calls exist before using (Gustavo Duarte) [1221918]
-- [powerpc] powernv: fix world-writable sysfs files (Gustavo Duarte) [1221918]
-- [powerpc] powernv: only call OPAL_RESEND_DUMP if firmware supports it (Gustavo Duarte) [1221918]
-- [powerpc] powernv: Check OPAL dump calls exist before using (Gustavo Duarte) [1221918]
-- [powerpc] powernv: Improve error messages in dump code (Gustavo Duarte) [1221918]
-- [powerpc] powernv: fix world-writable sysfs files (0/8) (Gustavo Duarte) [1221918]
-- [perf] probe: Ignore tail calls to probed functions (Gustavo Duarte) [1223850]
-- [perf] probe: ppc64le: Fixup function entry if using kallsyms lookup (Gustavo Duarte) [1223850]
-- [perf] probe: ppc64le: Prefer symbol table lookup over DWARF (Gustavo Duarte) [1223850]
-- [perf] probe: ppc64le: Fix ppc64 ABIv2 symbol decoding (Gustavo Duarte) [1223850]
-- [perf] probe: ppc: Enable matching against dot symbols automatically (Gustavo Duarte) [1223850]
-- [perf] probe: ppc: Use the right prefix when ignoring SyS symbols on ppc (Gustavo Duarte) [1223850]
-- [perf] probe: ppc: Fix symbol fixup issues due to ELF type (Gustavo Duarte) [1223850]
-- [perf] probe: Improve detection of file/function name in the probe: pattern (Gustavo Duarte) [1223850]
-- [perf] powerpc/kprobes: Fix kallsyms lookup across powerpc ABIv1 and ABIv2 (Gustavo Duarte) [1223850]
-- [powerpc] eeprom: at24: extend driver to allow writing via i2c_smbus_write_byte_data (Gustavo Duarte) [1221093]
-- [powerpc] misc/at24: avoid infinite loop on write() (Gustavo Duarte) [1221093]
-- [powerpc] misc: at24: move header to linux/platform_data/ (Gustavo Duarte) [1221093]
-- [powerpc] drivers/misc: at24: convert to use devm_kzalloc (Gustavo Duarte) [1221093]
-- [hwmon] config: Enable IBM POWERNV platform sensors for ppc64le (Gustavo Duarte) [1224367]
-- [hwmon] powerpc/powernv: handle OPAL_SUCCESS return in opal_sensor_read (Gustavo Duarte) [1224367]
-- [hwmon] powerpc/powernv: convert codes returned by OPAL calls (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Fix build error seen for some configurations (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: pretty print labels (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add a label attribute (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add support for the new device tree (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add a helper routine create_hwmon_attr (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: do not use the OPAL index for hwmon attribute names (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: change create_hwmon_attr_name() prototype (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add a convert_opal_attr_name() routine (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: add a get_sensor_type() routine (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: replace AMBIENT_TEMP by TEMP (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Convert to module_platform_driver (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Use platform 'id_table' to probe the device (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Quieten when probing finds no device (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: Use of_property_read_u32 at appropriate place (Gustavo Duarte) [1224367]
-- [hwmon] ibmpowernv: hwmon driver for power, fan rpm, voltage and temperature (Gustavo Duarte) [1224367]
-- [powerpc] kvm: book3s: hv: Fix an issue where guest is paused on receiving HMI (Gustavo Duarte) [1221091]
-- [powerpc] powernv: Fix the hmi event version check (Gustavo Duarte) [1221091]
-- [powerpc] powernv: Fallback to old HMI handling behavior for old firmware (Gustavo Duarte) [1221091]
-- [powerpc] book3s: Don't clear MSR_RI in hmi handler (Gustavo Duarte) [1221091]
-- [powerpc] use machine_subsys_initcall() for opal_hmi_handler_init() (Gustavo Duarte) [1221091]
-- [powerpc] book3s: Fix endianess issue for HMI handling on napping cpus (Gustavo Duarte) [1221091]
-- [powerpc] book3s: handle HMIs for cpus in nap mode (Gustavo Duarte) [1221091]
-- [powerpc] powernv: Invoke opal call to handle hmi (Gustavo Duarte) [1221091]
-- [powerpc] book3s: Add basic infrastructure to handle HMI in Linux (Gustavo Duarte) [1221091]
-- [i2c] move OF helpers into the core (Gustavo Duarte) [1221075]
-- [i2c] Improve logging on failure to probe for ->class devices (Gustavo Duarte) [1221075]
-- [i2c] add sanity check to i2c_put_adapter (Gustavo Duarte) [1221075]
-- [i2c] opal: Update quirk flags to do write-then-anything (Gustavo Duarte) [1221075]
-- [i2c] opal: make use of the new infrastructure for quirks (Gustavo Duarte) [1221075]
-- [i2c] add quirk checks to core (Gustavo Duarte) [1221075]
-- [i2c] add quirk structure to describe adapter flaws (Gustavo Duarte) [1221075]
-- [i2c] Driver to expose PowerNV platform i2c busses (Gustavo Duarte) [1221075]
-
-* Wed Jun 24 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-279.el7]
-- [fs] vfs: atomic f_pos access in llseek() (Zach Brown) [1175954]
-- [fs] vfs: atomic f_pos accesses as per POSIX (Zach Brown) [1175954]
-- [fs] nfs: remove WARN_ON_ONCE from nfs_direct_good_bytes (Steve Dickson) [1217590]
-- [fs] nfs: fix DIO good bytes calculation (Steve Dickson) [1217590]
-- [fs] pnfs: Refactor the *_layout_mark_request_commit to use pnfs_layout_mark_request_commit (Steve Dickson) [1217590]
-- [fs] sunrpc: Fix a compile error when #undef CONFIG_PROC_FS (Steve Dickson) [1217590]
-- [fs] pnfs/flexfiles: Do not dprintk after the free (Steve Dickson) [1217590]
-- [fs] nfs: mirroring support for direct io (Steve Dickson) [1217590]
-- [fs] pnfs: lookup new lseg at lseg boundary (Steve Dickson) [1217590]
-- [fs] nfs41: .init_read and .init_write can be called with valid pg_lseg (Steve Dickson) [1217590]
-- [fs] pnfs: Update documentation on the Layout Drivers (Steve Dickson) [1217590]
-- [fs] pnfs/flexfiles: Add the FlexFile Layout Driver (Steve Dickson) [1217590]
-- [fs] nfs: count DIO good bytes correctly with mirroring (Steve Dickson) [1217590]
-- [fs] nfs41: wait for LAYOUTRETURN before retrying LAYOUTGET (Steve Dickson) [1217590]
-- [fs] nfs: add a helper to set NFS_ODIRECT_RESCHED_WRITES to direct writes (Steve Dickson) [1217590]
-- [fs] nfs41: add NFS_LAYOUT_RETRY_LAYOUTGET to layout header flags (Steve Dickson) [1217590]
-- [fs] nfs/flexfiles: send layoutreturn before freeing lseg (Steve Dickson) [1217590]
-- [fs] nfs41: introduce NFS_LAYOUT_RETURN_BEFORE_CLOSE (Steve Dickson) [1217590]
-- [fs] nfs41: allow async version layoutreturn (Steve Dickson) [1217590]
-- [fs] nfs41: add range to layoutreturn args (Steve Dickson) [1217590]
-- [fs] pnfs: allow LD to ask to resend read through pnfs (Steve Dickson) [1217590]
-- [fs] nfs: add nfs_pgio_current_mirror helper (Steve Dickson) [1217590]
-- [fs] nfs: only reset desc->pg_mirror_idx when mirroring is supported (Steve Dickson) [1217590]
-- [fs] nfs41: add a debug warning if we destroy an unempty layout (Steve Dickson) [1217590]
-- [fs] pnfs: fail comparison when bucket verifier not set (Steve Dickson) [1217590]
-- [fs] nfs: add mirroring support to pgio layer (Steve Dickson) [1217590]
-- [fs] pnfs: pass ds_commit_idx through the commit path (Steve Dickson) [1217590]
-- [fs] nfs: rename pgio header ds_idx to ds_commit_idx (Steve Dickson) [1217590]
-- [fs] nfs: handle overlapping reqs in lock_and_join (Steve Dickson) [1217590]
-- [fs] pnfs: release lseg in pnfs_generic_pg_cleanup (Steve Dickson) [1217590]
-- [fs] nfs: introduce pg_cleanup op for pgio descriptors (Steve Dickson) [1217590]
-- [fs] nfs/filelayout: use pnfs_error_mark_layout_for_return (Steve Dickson) [1217590]
-- [fs] nfs41: clear NFS_LAYOUT_RETURN if layoutreturn is sent or failed to send (Steve Dickson) [1217590]
-- [fs] nfs41: send layoutreturn in last put_lseg (Steve Dickson) [1217590]
-- [fs] nfs41: don't use a layout if it is marked for returning (Steve Dickson) [1217590]
-- [fs] nfs41: add a helper to mark layout for return (Steve Dickson) [1217590]
-- [fs] nfs41: make a helper function to send layoutreturn (Steve Dickson) [1217590]
-- [fs] nfs41: pass iomode through layoutreturn args (Steve Dickson) [1217590]
-- [fs] nfs: save server READ/WRITE/COMMIT status (Steve Dickson) [1217590]
-- [fs] nfs41: serialize first layoutget of a file (Steve Dickson) [1217590]
-- [fs] nfs41: close a small race window when adding new layout to global list (Steve Dickson) [1217590]
-- [fs] nfs/flexclient: export pnfs_layoutcommit_inode (Steve Dickson) [1217590]
-- [fs] nfs: set hostname when creating nfsv3 ds connection (Steve Dickson) [1217590]
-- [fs] sunrpc: add rpc_count_iostats_idx (Steve Dickson) [1217590]
-- [fs] sunrpc: serialize iostats updates (Steve Dickson) [1217590]
-- [fs] nfsv4.1/nfsv3: Add pNFS callbacks for nfs3_(read|write|commit)_done() (Steve Dickson) [1217590]
-- [fs] nfs: allow to specify cred in nfs_initiate_pgio (Steve Dickson) [1217590]
-- [fs] nfs4: export nfs4_sequence_done (Steve Dickson) [1217590]
-- [fs] nfs4: pass slot table to nfs40_setup_sequence (Steve Dickson) [1217590]
-- [fs] nfs: allow different protocol in nfs_initiate_commit (Steve Dickson) [1217590]
-- [fs] pnfs: Add nfs_rpc_ops in calls to nfs_initiate_pgio (Steve Dickson) [1217590]
-- [fs] nfs41: create NFSv3 DS connection if specified (Steve Dickson) [1217590]
-- [fs] nfs41: allow LD to choose DS connection version/minor_version (Steve Dickson) [1217590]
-- [fs] nfsv3: introduce nfs3_set_ds_client (Steve Dickson) [1217590]
-- [fs] nfs41: move file layout macros to generic pnfs (Steve Dickson) [1217590]
-- [fs] nfs41: allow LD to choose DS connection auth flavor (Steve Dickson) [1217590]
-- [fs] nfs41: pull nfs4_ds_connect from file layout to generic pnfs (Steve Dickson) [1217590]
-- [fs] nfs41: pull decode_ds_addr from file layout to generic pnfs (Steve Dickson) [1217590]
-- [fs] nfs41: pull data server cache from file layout to generic pnfs (Steve Dickson) [1217590]
-- [fs] pnfs: Do not grab the commit_info lock twice when rescheduling writes (Steve Dickson) [1217590]
-- [fs] pnfs: Prepare for flexfiles by pulling out common code (Steve Dickson) [1217590]
-- [fs] cifs: Fix readpages retrying on reconnects (Sachin Prabhu) [1197696]
-- [fs] Update cifs version (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix STATUS_CANNOT_DELETE error mapping for SMB2 (Sachin Prabhu) [1197696]
-- [fs] cifs: Optimize readpages in a short read case on reconnects (Sachin Prabhu) [1197696]
-- [fs] cifs: Optimize cifs_user_read() in a short read case on reconnects (Sachin Prabhu) [1197696]
-- [fs] cifs: Improve indentation in cifs_user_read() (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix possible buffer corruption in cifs_user_read() (Sachin Prabhu) [1197696]
-- [fs] cifs: Count got bytes in read_into_pages() (Sachin Prabhu) [1197696]
-- [fs] cifs: Use separate var for the number of bytes got in async read (Sachin Prabhu) [1197696]
-- [fs] cifs: Indicate reconnect with ECONNABORTED error code (Sachin Prabhu) [1197696]
-- [fs] cifs: Use multicredits for SMB 2.1/3 reads (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix rsize usage for sync read (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix rsize usage in user read (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate page reading from user read (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix rsize usage in readpages (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate page search from readpages (Sachin Prabhu) [1197696]
-- [fs] cifs: Use multicredits for SMB 2.1/3 writes (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix wsize usage in iovec write (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate writing from iovec write (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate filling pages from iovec write (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix cifs_writev_requeue when wsize changes (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix wsize usage in writepages (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate pages initialization from writepages (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate page sending from writepages (Sachin Prabhu) [1197696]
-- [fs] Remove sparse build warning (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate page processing from writepages (Sachin Prabhu) [1197696]
-- [fs] cifs: Fix async reading on reconnects (Sachin Prabhu) [1197696]
-- [fs] cifs: Separate rawntlmssp auth from CIFS_SessSetup() (Sachin Prabhu) [1197696]
-- [fs] cifs: Split Kerberos authentication off CIFS_SessSetup() (Sachin Prabhu) [1197696]
-- [fs] cifs: Split ntlm and ntlmv2 authentication methods off CIFS_SessSetup() (Sachin Prabhu) [1197696]
-- [fs] cifs: Split lanman auth from CIFS_SessSetup() (Sachin Prabhu) [1197696]
-- [fs] cifs: replace code with free_rsp_buf() (Sachin Prabhu) [1197696]
-- [fs] fix mount failure with broken pathnames when smb3 mount with mapchars option (Sachin Prabhu) [1197696]
-- [fs] cifs: revalidate mapping prior to satisfying read_iter request with cache=loose (Sachin Prabhu) [1197696]
-- [fs] cifs: switch to ->write_iter() (Sachin Prabhu) [1197696]
-- [fs] cifs: switch to ->read_iter() (Sachin Prabhu) [1197696]
-- [fs] kill iov_iter_copy_from_user() (Partial) (Sachin Prabhu) [1197696]
-- [fs] cifs: Use min_t() when comparing "size_t" and "unsigned long" (Sachin Prabhu) [1197696]
-- [fs] fold cifs_iovec_read() into its (only) caller (Sachin Prabhu) [1197696]
-- [fs] cifs_iovec_read: keep iov_iter between the calls of cifs_readdata_to_iov() (Sachin Prabhu) [1197696]
-- [fs] cifs: Add helpers copy_page_from_iter(), copy_page_to_iter() and iov_iter_truncate() (Sachin Prabhu) [1197696]
-- [fs] cifs_iovec_read(): resubmit shouldn't restart the loop (Sachin Prabhu) [1197696]
-- [fs] gfs2: limit quota log messages (Abhijith Das) [1174295]
-- [fs] gfs2: fix quota updates on block boundaries (Abhijith Das) [1174295]
-- [fs] gfs2: fix quota refresh race in do_glock() (Abhijith Das) [1174295]
-- [fs] gfs2: allow fallocate to max out quotas/fs efficiently (Abhijith Das) [1174295]
-- [fs] gfs2: allow quota_check and inplace_reserve to return available blocks (Abhijith Das) [1174295]
-- [fs] gfs2: perform quota checks against allocation parameters (Abhijith Das) [1174295]
-
-* Tue Jun 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-278.el7]
-- [alsa] regmap: regcache-rbtree: Fix present bitmap resize (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: improve 64bits memory alignment (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Make cache_present bitmap per node (Jaroslav Kysela) [1197064]
-- [alsa] regmap: Add support for discarding parts of the register cache (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Reduce number of nodes, take 2 (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Simplify adjacent node look-up (Jaroslav Kysela) [1197064]
-- [alsa] regcache-rbtree: Fix reg_stride != 1 (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Use range information to allocate nodes (Jaroslav Kysela) [1197064]
-- [alsa] regmap: rbtree: Factor out node allocation (Jaroslav Kysela) [1197064]
-- [alsa] pci/msi: Add device flag indicating that 64-bit MSIs don't work (Jaroslav Kysela) [1197064]
-- [alsa] pm: Add pm_runtime_suspend|resume_force functions (Jaroslav Kysela) [1197064]
-- [alsa] pm / runtime: Implement the pm_generic_runtime functions for CONFIG_PM (Jaroslav Kysela) [1197064]
-- [alsa] pm / runtime: Fetch runtime PM callbacks using a macro (Jaroslav Kysela) [1197064]
-- [alsa] pm / runtime: Respect autosuspend when idle triggers suspend (Jaroslav Kysela) [1197064]
-- [alsa] drm/i915/audio: add codec wakeup override enabled/disable callback (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix number of devices query on hotplug (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add native DSD support for JLsounds I2SoverUSB (Jaroslav Kysela) [1197064]
-- [alsa] hda - remove controller dependency on i915 power well for SKL (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: fix missing input volume controls in MAYA44 USB(+) (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add MAYA44 USB+ mixer control names (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add a fixup for another Acer Aspire 9420 (Jaroslav Kysela) [1197064]
-- [alsa] hda - moved alloc/free stream pages function to controller library (Jaroslav Kysela) [1197064]
-- [alsa] hda - add generic functions to set hdac stream params (Jaroslav Kysela) [1197064]
-- [alsa] Close holes in struct snd_pcm_constraint_list (Jaroslav Kysela) [1197064]
-- [alsa] Close holes in struct snd_pcm_hw_rule (Jaroslav Kysela) [1197064]
-- [alsa] core: remove .wall_clock (Jaroslav Kysela) [1197064]
-- [alsa] core: selection of audio_tstamp type and accuracy reports (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix jack detection at resume with VT codecs (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: don't try to get Outlaw RR2150 sample rate (Jaroslav Kysela) [1197064]
-- [alsa] jack: Fix the id uniqueness check (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add mic volume fix quirk for Logitech Quickcam Fusion (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Suooprt Dell headset mode for ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set patch_ops before calling auto-parser (Jaroslav Kysela) [1197064]
-- [alsa] pci: Drop superfluous ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Fix/cleanup ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] cs46xx: Fix old ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] ca0106: Fix/cleanup ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] ac97: Fix ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] ak4xxx-adda: Drop unnecessary ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] opl4: Fix / cleanup ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] dummy: Replace CONFIG_PROC_FS with CONFIG_SND_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] aloop: Drop unnecessary ifdef CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] core: Fix randconfig build wrt CONFIG_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop unused fields from struct hda_codec_preset (Jaroslav Kysela) [1197064]
-- [alsa] replace CONFIG_PROC_FS with CONFIG_SND_PROC_FS (Jaroslav Kysela) [1197064]
-- [alsa] kconfig: add config item SND_PROC_FS for expert (Jaroslav Kysela) [1197064]
-- [alsa] bcd2000: Make local data static (Jaroslav Kysela) [1197064]
-- [alsa] lx6464es: Use NULL for pointers (Jaroslav Kysela) [1197064]
-- [alsa] lx6464es: Fix duplicated SSID entries (Jaroslav Kysela) [1197064]
-- [alsa] dummy: make local data static (Jaroslav Kysela) [1197064]
-- [alsa] pcm: add IEC958 channel status helper (Jaroslav Kysela) [1197064]
-- [alsa] pcm: add DRM ELD helper (Jaroslav Kysela) [1197064]
-- [alsa] jack: Remove MODULE_*() macros (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move hda_i915.c from sound/pci/hda to sound/hda (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add headset-mode* model options for ALC269 & co (Jaroslav Kysela) [1197064]
-- [alsa] hda/ca0132: support for Alienware 15 Creative Sound Core3D-EX (Jaroslav Kysela) [1197064]
-- [alsa] hda - add hda_intel_trace.h (Jaroslav Kysela) [1197064]
-- [alsa] hda - rename hda_intel_trace.h to hda_controller_trace.h (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - Add Tegra210 support (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - Add Tegra114 support (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - Add Tegra30 support (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra - Improve error reporting (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - Implement Tegra-specific patch (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra - Set CORBRP self-clear flag (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support Dell headset mode for ALC298 (Jaroslav Kysela) [1197064]
-- [alsa] info: Drop kerneldoc comment from snd_info_create_entry() (Jaroslav Kysela) [1197064]
-- [alsa] info: Move list addition to snd_info_create_entry() (Jaroslav Kysela) [1197064]
-- [alsa] info: Register proc entries recursively, too (Jaroslav Kysela) [1197064]
-- [alsa] info: Fix leaks of child entries at snd_info_free_entry() (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support headset mode for ALC298 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove unused call to "get_pin" in patch_hdmi.c (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra - Fix oops (Jaroslav Kysela) [1197064]
-- [alsa] hda - reset display codec when power on (Jaroslav Kysela) [1197064]
-- [alsa] jack: fix a randconfig build issue (Jaroslav Kysela) [1197064]
-- [alsa] jack: Fix another NULL dereference due to empty input jack (Jaroslav Kysela) [1197064]
-- [alsa] jack: don't report input event for phantom jack (Jaroslav Kysela) [1197064]
-- [alsa] hda - Reduce ifdef CONFIG_SND_HDA_I915 (Jaroslav Kysela) [1197064]
-- [alsa] hda - remove controller dependency on i915 power well for Baytrail/Braswell (Jaroslav Kysela) [1197064]
-- [alsa] hda - divide controller and codec dependency on i915 gfx power well (Jaroslav Kysela) [1197064]
-- [alsa] hda - implement link_power ops for i915 display power control (Jaroslav Kysela) [1197064]
-- [alsa] hda - allow a codec to control the link power (Jaroslav Kysela) [1197064]
-- [alsa] hda - implement a refcount for i915 power well switch (Jaroslav Kysela) [1197064]
-- [alsa] jack: remove exporting ctljack functions (Jaroslav Kysela) [1197064]
-- [alsa] hda - Update to use the new jack kctls method (Jaroslav Kysela) [1197064]
-- [alsa] jack: extend snd_jack_new to support phantom jack (Jaroslav Kysela) [1197064]
-- [alsa] jack: handle jack embedded kcontrol creating within ctljack (Jaroslav Kysela) [1197064]
-- [alsa] jack: implement kctl creating for jack devices (Jaroslav Kysela) [1197064]
-- [alsa] core: Clean up OSS proc file management (Jaroslav Kysela) [1197064]
-- [alsa] core: Build conditionally and remove superfluous ifdefs (Jaroslav Kysela) [1197064]
-- [alsa] core: Don't ignore errors at creating proc files (Jaroslav Kysela) [1197064]
-- [alsa] core: Remove superfluous exit calls for proc entries (Jaroslav Kysela) [1197064]
-- [alsa] core: Manage asound root directory with snd_info_entry (Jaroslav Kysela) [1197064]
-- [alsa] core: Remove child proc file elements recursively (Jaroslav Kysela) [1197064]
-- [alsa] core: Fix possible memory leaks at error path in info.c (Jaroslav Kysela) [1197064]
-- [alsa] Replace with IS_ENABLED() (Jaroslav Kysela) [1197064]
-- [alsa] core: Use seq_file for text proc file reads (Jaroslav Kysela) [1197064]
-- [alsa] hda - Replace open codes with snd_hdac_stream_set_params() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move prepared flag into struct hdac_stream (Jaroslav Kysela) [1197064]
-- [alsa] hda - Replace hda_bus_ops with static binding (Jaroslav Kysela) [1197064]
-- [alsa] remove deprecated use of pci api (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop azx_sd_read*/write*() macros (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra - Fix build error and warning (Jaroslav Kysela) [1197064]
-- [alsa] hda - Reenable tracepoints for controller (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move PCM format and rate handling code to core library (Jaroslav Kysela) [1197064]
-- [alsa] hda - Minor refactoring (Jaroslav Kysela) [1197064]
-- [alsa] hda - Embed bus into controller object (Jaroslav Kysela) [1197064]
-- [alsa] hda - Migrate more hdac_stream codes (Jaroslav Kysela) [1197064]
-- [alsa] hda - Migrate hdac_stream into legacy driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Pass bus io_ops directly from the top-level driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move send_cmd / get_response to hdac_bus_ops (Jaroslav Kysela) [1197064]
-- [alsa] hda - Merge codec and controller helpers (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add DSP loader to core library code (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add the controller helper codes to hda-core module (Jaroslav Kysela) [1197064]
-- [alsa] hda - Handle error from get_response bus ops directly (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix lost sound due to stream_pm ops cleanup (Jaroslav Kysela) [1197064]
-- [alsa] hda - Disable Headphone Mic boost for ALC662 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Disable power_save_node for IDT92HD71bxx (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix noise on AMD radeon 290x controller (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set stream_pm ops automatically by generic parser (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add ALC256 alias name for Dell (Jaroslav Kysela) [1197064]
-- [alsa] revert "alsa: hda - Add mute-LED mode control to Thinkpad" (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add quirk for MS LifeCam HD-3000 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Disable widget power-saving for ALC292 & co (Jaroslav Kysela) [1197064]
-- [alsa] hda - Reduce verbs by node power-saves (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add quirk for MS LifeCam Studio (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Modify double acknowledged interrupts check condition (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - ALC292 dock fix for Thinkpad L450 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add Conexant codecs CX20721, CX20722, CX20723 and CX20724 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix headset mic and mic-in for a Dell desktop (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add headset mic quirk for Dell Inspiron 5548 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add ALC298 alias name for Dell (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Fix typo for ALC286/ALC288 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add headphone quirk for Lifebook E752 (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Emu10k2 32 bit DMA mode (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix missing va_end() call in snd_hda_codec_pcm_new() (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Fix card shortname string buffer overflow (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add mute-LED mode control to Thinkpad (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix mute-LED fixed mode (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix click noise at start on Dell XPS13 (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix headset mic detection problem for one more machine (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Fix Headphone Mic doesn't recording for ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix "num_steps = 0" error on ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix audio output on Roland SC-D70 sound module (Jaroslav Kysela) [1197064]
-- [alsa] hda - add AZX_DCAPS_I915_POWERWELL to Baytrail (Jaroslav Kysela) [1197064]
-- [alsa] hda - only sync BCLK to the display clock for Haswell & Broadwell (Jaroslav Kysela) [1197064]
-- [alsa] hda - Mute headphone pin on suspend on XPS13 9333 (Jaroslav Kysela) [1197064]
-- [alsa] hda - potential (but unlikely) uninitialized variable (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix regression for slave SPDIF setups (Jaroslav Kysela) [1197064]
-- [alsa] intel8x0: Check pci_iomap() success for DEVICE_ALI (Jaroslav Kysela) [1197064]
-- [alsa] hda - simplify azx_has_pm_runtime (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Enable the ALC292 dock fixup on the Thinkpad T450 (Jaroslav Kysela) [1197064]
-- [alsa] ctl: fix to handle several elements added by one operation for userspace element (Jaroslav Kysela) [1197064]
-- [alsa] control: Fix a typo of SNDRV_CTL_ELEM_ACCESS_TLV_* with SNDRV_CTL_TLV_OP_* (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Don't attempt to get Microsoft Lifecam Cinema sample rate (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: add toggles for E-mu 1010 optical ports (Jaroslav Kysela) [1197064]
-- [alsa] ctl: fill identical information to return value when adding userspace elements (Jaroslav Kysela) [1197064]
-- [alsa] ctl: fix a bug to return no identical information in info operation for userspace controls (Jaroslav Kysela) [1197064]
-- [alsa] ctl: confirm to return all identical information in 'activate' event (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: handle dock disconnects (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add dock support for ThinkPad X250 (17aa:2226) (Jaroslav Kysela) [1197064]
-- [alsa] seq: fill client ID in return value of pool operation (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: don't deadlock in proc-functions (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Fix a typo (Jaroslav Kysela) [1197064]
-- [alsa] ctl: evaluate macro instead of numerical value (Jaroslav Kysela) [1197064]
-- [alsa] usb - Creative USB X-Fi Pro SB1095 volume knob support (Jaroslav Kysela) [1197064]
-- [alsa] hda/via - Add missing stream_pm ops setup (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Fix the regression by widget power-saving (Jaroslav Kysela) [1197064]
-- [alsa] hda/generic - Don't override power_filter when power_save_node is set (Jaroslav Kysela) [1197064]
-- [alsa] hda/generic - Make snd_hda_gen_path_power_filter() always applicable (Jaroslav Kysela) [1197064]
-- [alsa] hda/generic - Fix wrong initial power state for fixed pins (Jaroslav Kysela) [1197064]
-- [alsa] hda/generic - Check power state cap at updating the widget power (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix headphone pin config for Lifebook T731 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Work around races of power up/down with runtime PM (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support Dell headset mode for ALC288 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support headset mode for ALC286/288 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Make more stable to get pin sense for ALC283 (Jaroslav Kysela) [1197064]
-- [alsa] hda_intel: add AZX_DCAPS_I915_POWERWELL for SKL and BSW (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: add Audigy 5/Rx (Jaroslav Kysela) [1197064]
-- [alsa] Use const struct ac97_quirk (Jaroslav Kysela) [1197064]
-- [alsa] hda: fix possible null dereference (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: don't try to get Benchmark DAC1 sample rate (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Support Dell headset mode for ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Enable widget power saving for Realtek codecs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Sync node attributes at resume from widget power saving (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add a fake stereo amp register support (Jaroslav Kysela) [1197064]
-- [alsa] hda - Allow driver to add vendor-specific verbs for regmap (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add one more node in the EAPD supporting candidate list (Jaroslav Kysela) [1197064]
-- [alsa] hda_intel: apply the Seperate stream_tag for Sunrise Point (Jaroslav Kysela) [1197064]
-- [alsa] hda/via - Add beep controls to VIA codecs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove superfluous hda_nid_t definition in hda_codec.h (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Fix duplicate const for clock sources (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add dock support for Thinkpad T450s (17aa:5036) (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: read past end of array (Jaroslav Kysela) [1197064]
-- [alsa] ak411x: simplify snd_ak4113_create() a bit (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use regmap for command verb caches, too (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use regmap for parameter caches, too (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use regmap for amp accesses (Jaroslav Kysela) [1197064]
-- [alsa] hda - Implement uncached version of parameter reads (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use regmap for codec parameter reads (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add regmap support (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move generic array helpers to core lib (Jaroslav Kysela) [1197064]
-- [alsa] hda - Re-add tracepoints to HD-audio core driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix possible runtime PM refcount unbalance (Jaroslav Kysela) [1197064]
-- [alsa] hda - Support indirect execution of verbs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add widget sysfs tree (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move a part of hda_codec stuff into hdac_device (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move some codes up to hdac_bus struct (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make snd_hda_bus_type public (Jaroslav Kysela) [1197064]
-- [alsa] hda - Rename power_mgmt flag with power_save_node (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix power of pins used for mute LED with vrefs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Adjust power of beep widget and outputs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use the new power control for VIA codecs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Support advanced power state controls (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Add sampling rate control of the ADC/DAC (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Add text Line in/Mic for selecting input gain state (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Add TLV support for control value in dB scale (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Enable midi i/o of port envy24 chip as available (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Update eeprom structure to C99 standard (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: esi w192m: Correct copy/paste from prodigy driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Simplify PCM setup overrides (Jaroslav Kysela) [1197064]
-- [alsa] hda - Treat stereo-to-mono mix properly (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use shutdown driver ops instead of reboot notifier (Jaroslav Kysela) [1197064]
-- [alsa] hda - Don't access stereo amps for mono channel widgets (Jaroslav Kysela) [1197064]
-- [alsa] control: Fix breakage of user ctl element addition (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add workaround for MacBook Air 5,2 built-in mic (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set single_adc_amp flag for CS420x codecs (Jaroslav Kysela) [1197064]
-- [alsa] snd-usb: add quirks for Roland UA-22 (Jaroslav Kysela) [1197064]
-- [alsa] control: Add sanity checks for user ctl id name string (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix built-in mic on Compaq Presario CQ60 (Jaroslav Kysela) [1197064]
-- [alsa] seq: Fix init order of snd_seq_device stuff (Jaroslav Kysela) [1197064]
-- [alsa] core: Drop superfluous error/debug messages after malloc failures (Jaroslav Kysela) [1197064]
-- [alsa] seq: Drop superfluous error/debug messages after malloc failures (Jaroslav Kysela) [1197064]
-- [alsa] seq_oss: Drop superfluous error/debug messages after malloc failures (Jaroslav Kysela) [1197064]
-- [alsa] core: reduce stack usage related to snd_ctl_new() (Jaroslav Kysela) [1197064]
-- [alsa] core: use precomputed table to check userspace control params (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix regression of HD-audio controller fallback modes (Jaroslav Kysela) [1197064]
-- [alsa] ac97: ac97_patch: Simplify patch_vt1613_specific() (Jaroslav Kysela) [1197064]
-- [alsa] ac97: Add VT1613 AC97 codec support (Jaroslav Kysela) [1197064]
-- [alsa] hda - One more Dell macine needs DELL1_MIC_NO_PRESENCE quirk (Jaroslav Kysela) [1197064]
-- [alsa] opl3: small array underflow (Jaroslav Kysela) [1197064]
-- [alsa] line6: Clamp values correctly (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Check Marantz/Denon USB DACs in a single place (Jaroslav Kysela) [1197064]
-- [alsa] Fix spelling typo in Documentation/DocBook/alsa-driver-api.xml (Jaroslav Kysela) [1197064]
-- [alsa] hda - Release resources in device release callback (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use standard workqueue for unsol and jack events (Jaroslav Kysela) [1197064]
-- [alsa] hda - Build PCMs and controls at codec driver probe (Jaroslav Kysela) [1197064]
-- [alsa] hda - Implement unbind more safely (Jaroslav Kysela) [1197064]
-- [alsa] core: Re-add snd_device_disconnect() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Don't assume non-NULL PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] hda - Allocate hda_pcm objects dynamically (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove superfluous memory allocation error messages (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add card field to hda_codec struct (Jaroslav Kysela) [1197064]
-- [alsa] hda - Split snd_hda_build_pcms() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Clear pcm pointer assigned to hda_pcm at device removal (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove channel mode helper functions (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set parent of input beep devices (Jaroslav Kysela) [1197064]
-- [alsa] hda - Power down codec automatically at registration (Jaroslav Kysela) [1197064]
-- [alsa] hda - Replace bus pm_notify with the standard runtime PM framework (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop power_save value indirection in hda_bus (Jaroslav Kysela) [1197064]
-- [alsa] cmipci: remove a stray space character (Jaroslav Kysela) [1197064]
-- [alsa] azt3328: some indenting cleanups (Jaroslav Kysela) [1197064]
-- [alsa] hda - Disable runtime PM for Panther Point again (Jaroslav Kysela) [1197064]
-- [alsa] hda: controller code - do not export static functions (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Don't leave PREPARED state after draining (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use standard runtime PM for codec power-save control (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move codec suspend/resume to codec driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Bind codecs via standard bus (Jaroslav Kysela) [1197064]
-- [alsa] hda - Decouple PCM and hwdep devices from codec object (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add pin configs for ASUS mobo with IDT 92HD73XX codec (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Don't ignore internal PCMs in snd_pcm_dev_disconnect() (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Don't notify internal PCMs (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Don't add internal PCMs to PCM device list (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Minor refactoring in snd_pcm_attach_substream() (Jaroslav Kysela) [1197064]
-- [alsa] hda: replace .wallclock by .get_time_info (Jaroslav Kysela) [1197064]
-- [alsa] core: add .get_time_info (Jaroslav Kysela) [1197064]
-- [alsa] core: pass audio tstamp config from userspace in compat mode (Jaroslav Kysela) [1197064]
-- [alsa] core: pass audio tstamp config from userspace (Jaroslav Kysela) [1197064]
-- [alsa] hda - Avoid unnecessary power-up at mixer amp changes (Jaroslav Kysela) [1197064]
-- [alsa] hda - Split azx_codec_create() to two phases (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop azx_mixer_create() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fold hda_priv.h into hda_controller.h (Jaroslav Kysela) [1197064]
-- [alsa] hda - Introduce azx_has_pm_runtime() macro (Jaroslav Kysela) [1197064]
-- [alsa] usb: Fix support for Denon DA-300USB DAC (ID 154e:1003) (Jaroslav Kysela) [1197064]
-- [alsa] hda - Embed struct hda_bus_unsolicited into struct hda_bus (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop hda_bus_template for snd_hda_bus_new() (Jaroslav Kysela) [1197064]
-- [alsa] hdspm - DRY cleanup of snd_pcm_ops (Jaroslav Kysela) [1197064]
-- [alsa] hdspm - DRY cleanup in .release callback (Jaroslav Kysela) [1197064]
-- [alsa] hdspm - DRY cleanup in .open callbacks (Jaroslav Kysela) [1197064]
-- [alsa] Consolidate snd_find_free_minor() (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Don't attempt to get Lifecam HD-5000 sample rate (Jaroslav Kysela) [1197064]
-- [alsa] hda/tegra check correct return value from ioremap_resource (Jaroslav Kysela) [1197064]
-- [alsa] hdspm - Constrain periods to 2 on older cards (Jaroslav Kysela) [1197064]
-- [alsa] hda - enable mute led quirk for one more hp machine (Jaroslav Kysela) [1197064]
-- [alsa] seq: Drop snd_seq_autoload_lock() and _unlock() (Jaroslav Kysela) [1197064]
-- [alsa] seq: Define driver object in each driver (Jaroslav Kysela) [1197064]
-- [alsa] seq: Clean up device and driver structs (Jaroslav Kysela) [1197064]
-- [alsa] seq: Rewrite sequencer device binding with standard bus (Jaroslav Kysela) [1197064]
-- [alsa] seq: Don't compile snd_seq_device_load_drivers() for built-in (Jaroslav Kysela) [1197064]
-- [alsa] seq: Move EXPORT_SYMBOL() after each function (Jaroslav Kysela) [1197064]
-- [alsa] seq: potential out of bounds in do_control() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Improve line6_read/write_data() interfaces (Jaroslav Kysela) [1197064]
-- [alsa] line6: toneport: Use explicit type for firmware version (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use explicit type for serial number (Jaroslav Kysela) [1197064]
-- [alsa] line6: Return EIO if read/write not successful (Jaroslav Kysela) [1197064]
-- [alsa] line6: Return error if device not responding (Jaroslav Kysela) [1197064]
-- [alsa] line6: Add delay before reading status (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add docking station support for another HP machine (Jaroslav Kysela) [1197064]
-- [alsa] control: fix failure to return new numerical ID in 'replace' event data (Jaroslav Kysela) [1197064]
-- [alsa] usb: update trigger timestamp on first non-zero URB submitted (Jaroslav Kysela) [1197064]
-- [alsa] hda: read trigger_timestamp immediately after starting DMA (Jaroslav Kysela) [1197064]
-- [alsa] pcm: allow for trigger_tstamp snapshot in .trigger (Jaroslav Kysela) [1197064]
-- [alsa] pcm: don't override timestamp unconditionally (Jaroslav Kysela) [1197064]
-- [alsa] off by one bug in snd_riptide_joystick_probe() (Jaroslav Kysela) [1197064]
-- [alsa] control: fix failure to return numerical ID in 'add' event (Jaroslav Kysela) [1197064]
-- [alsa] line6: Pass driver name to line6_probe() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Pass toneport pointer to toneport_has_led() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Add toneport_has_source_select() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Get rid of unused variable in pod.c (Jaroslav Kysela) [1197064]
-- [alsa] line6: Create sysfs via snd_card_add_dev_attr() (Jaroslav Kysela) [1197064]
-- [alsa] Add a helper to add a new attribute group to card (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set up GPIO for Toshiba Satellite S50D (Jaroslav Kysela) [1197064]
-- [alsa] line6: fixup of line6_start_timer argument type (Jaroslav Kysela) [1197064]
-- [alsa] line6: use msecs_to_jiffies for conversion (Jaroslav Kysela) [1197064]
-- [alsa] Drop snd_get_device() helper (Jaroslav Kysela) [1197064]
-- [alsa] Simplify snd_device_register() variants (Jaroslav Kysela) [1197064]
-- [alsa] compress: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] seq: Handle the device directly (Jaroslav Kysela) [1197064]
-- [alsa] timer: Handle the device directly (Jaroslav Kysela) [1197064]
-- [alsa] timer: Propagate the error at initialization (Jaroslav Kysela) [1197064]
-- [alsa] rawmidi: Use rawmidi device file for kernel messages (Jaroslav Kysela) [1197064]
-- [alsa] rawmidi: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] hwdep: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] control: Embed struct device (Jaroslav Kysela) [1197064]
-- [alsa] Add a helper to initialize device (Jaroslav Kysela) [1197064]
-- [alsa] control: Provide a helper to look for the preferred subdevice (Jaroslav Kysela) [1197064]
-- [alsa] Allow to pass the device object to snd_register_device*() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove unused line6_midibuf_skip_message() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove unused line6_midibuf_status() (Jaroslav Kysela) [1197064]
-- [alsa] ak411x: Fix race of reinit() calls (Jaroslav Kysela) [1197064]
-- [alsa] ak411x: Add PM helper functions (Jaroslav Kysela) [1197064]
-- [alsa] ak4114: Move EXPORT_SYMBOL() after each function (Jaroslav Kysela) [1197064]
-- [alsa] ak411x: Fix stall in work callback (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove snd_line6_ prefix of pcm property fields (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove invalid capability bits for PODxt Live Variax (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove struct usb_line6_podhd (Jaroslav Kysela) [1197064]
-- [alsa] line6: Move the contents of usbdefs.h into driver.h (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove revision.h (Jaroslav Kysela) [1197064]
-- [alsa] line6: Tidy up and typo fixes in comments (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix volume calculation for big-endian (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Add snd_interval_ranges() and snd_pcm_hw_constraint_ranges() (Jaroslav Kysela) [1197064]
-- [alsa] usx2y: Move UAPI definition into include/uapi/sound/usb_stream.h (Jaroslav Kysela) [1197064]
-- [alsa] au88x0: Remove superfluous ifdef __KERNEL__ (Jaroslav Kysela) [1197064]
-- [alsa] Include linux/uaccess.h and linux/bitopts.h instead of asm/* (Jaroslav Kysela) [1197064]
-- [alsa] Include linux/io.h instead of asm/io.h (Jaroslav Kysela) [1197064]
-- [alsa] line6: Handle error from line6_pcm_acquire() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Make common PCM pointer callback (Jaroslav Kysela) [1197064]
-- [alsa] line6: Reorganize PCM stream handling (Jaroslav Kysela) [1197064]
-- [alsa] line6: Clear prev_fbuf and prev_fsize properly (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix racy loopback handling (Jaroslav Kysela) [1197064]
-- [alsa] line6: Minor tidy up in line6_probe() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Let snd_card_new() allocate private data (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop interface argument from private_init and disconnect callbacks (Jaroslav Kysela) [1197064]
-- [alsa] line6: Skip volume manipulation during silence copying (Jaroslav Kysela) [1197064]
-- [alsa] line6: Do clipping in volume / monitor manipulations (Jaroslav Kysela) [1197064]
-- [alsa] line6: Consolidate PCM stream buffer allocation and free (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use dev_err() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Consolidate URB unlink and sync helpers (Jaroslav Kysela) [1197064]
-- [alsa] line6: Rearrange PCM structure (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop voodoo workarounds (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use incremental loop (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop superfluous spinlock for trigger (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix the error recovery in line6_pcm_acquire() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use logical OR (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix missing error handling in line6_pcm_acquire() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Reduce superfluous spinlock in midi.c (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove unused line6_nop_read() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Fix memory leak at probe error path (Jaroslav Kysela) [1197064]
-- [alsa] line6: Minor refactoring (Jaroslav Kysela) [1197064]
-- [alsa] line6/toneport: Implement LED controls via LED class (Jaroslav Kysela) [1197064]
-- [alsa] line6/toneport: Fix wrong argument for toneport_has_led() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Don't forget to call driver's destructor at error path (Jaroslav Kysela) [1197064]
-- [alsa] line6/toneport: Move setup_timer() at the beginning (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove superfluous NULL checks in each driver (Jaroslav Kysela) [1197064]
-- [alsa] line6: Abort if inconsistent usbdev is found at disconnect (Jaroslav Kysela) [1197064]
-- [alsa] line6: Yet more cleanup of superfluous NULL checks (Jaroslav Kysela) [1197064]
-- [alsa] seq: remove unused callback_all field (Jaroslav Kysela) [1197064]
-- [alsa] seq: fix off-by-one error in port limit check (Jaroslav Kysela) [1197064]
-- [alsa] seq: correctly report maximum number of ports (Jaroslav Kysela) [1197064]
-- [alsa] seq-dummy: remove deadlock-causing events on close (Jaroslav Kysela) [1197064]
-- [alsa] hda - Enable docking station for an HP machine (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove driver version from header comment (Jaroslav Kysela) [1197064]
-- [alsa] line6: Refer to manufacturer as "Line 6" (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove superfluous NULL checks (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop line6_send_program() and line6_transmit_parameter() (Jaroslav Kysela) [1197064]
-- [alsa] line6: Make line6_send_raw_message() static (Jaroslav Kysela) [1197064]
-- [alsa] line6: Sync PCM stop at disconnect (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove superfluous disconnect call in suspend handler (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove CHECK_RETURN macro (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop MISSING_CASE macro (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove driver version string (Jaroslav Kysela) [1197064]
-- [alsa] line6: Reorganize card resource handling (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop superfluous irqsave/irqrestore in PCM trigger callback (Jaroslav Kysela) [1197064]
-- [alsa] line6: Don't handle PCM trigger for other cards (Jaroslav Kysela) [1197064]
-- [alsa] line6: Remove superfluous out-of-memory error messages (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop usb_device sysfs symlink (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop invalid SNDRV_PCM_INFO_RESUME flag (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop superfluous snd_device for rawmidi (Jaroslav Kysela) [1197064]
-- [alsa] line6: Drop superfluous snd_device for PCM (Jaroslav Kysela) [1197064]
-- [alsa] line6: Handle impulse response via control API (Jaroslav Kysela) [1197064]
-- [alsa] line6: Split to each driver (Jaroslav Kysela) [1197064]
-- [alsa] line6: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] hdspm: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] hdsp: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] korg1212: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] ak4117: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] serial-u16550: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] opl3: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] mtpav: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] mpu401: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] aloop: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] timer: Use setup_timer() and mod_timer() (Jaroslav Kysela) [1197064]
-- [alsa] dummy: use setup_timer and mod_timer (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add mic volume fix quirk for Logitech Webcam C210 (Jaroslav Kysela) [1197064]
-- [alsa] add Studio Evolution SE6X support (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: add XIO2001 initialization (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: add support for third analog input (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: do not create useless S/PDIF controls (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix typo in hda_controller.c (Jaroslav Kysela) [1197064]
-- [alsa] hda - Select INPUT for Realtek HD-audio codec (Jaroslav Kysela) [1197064]
-- [alsa] move line6 usb driver into sound/usb (Jaroslav Kysela) [1197064]
-- [alsa] rme*: Use snd_pcm_format_t (Jaroslav Kysela) [1197064]
-- [alsa] hda: add component support (Jaroslav Kysela) [1197064]
-- [alsa] hda: pass intel_hda to all i915 interface functions (Jaroslav Kysela) [1197064]
-- [alsa] hda: export struct hda_intel (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: wm8766: Remove some unused functions (Jaroslav Kysela) [1197064]
-- [alsa] fm801: remove FSF address (Jaroslav Kysela) [1197064]
-- [alsa] hda - fixup input_free_device called after input_unregister_device (Jaroslav Kysela) [1197064]
-- [alsa] ymfpci: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] vx222: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] via82xx-modem: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] via82xx: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] trident: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] sis7019: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] rme96: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] riptide: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] nm256: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] maestro3: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] intel8x0m: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] intel8x0: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] hda: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] es1968: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] es1938: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ens137x: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] cs5535audio: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] cs46xx: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] cs4281: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] cmipci: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ca0106: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] azt3328: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] atiixp-modem: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] atiixp: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] als4000: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] als300: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] ali5451: Simplify PM callbacks (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add support for Akai MPC Element USB MIDI controller (Jaroslav Kysela) [1197064]
-- [alsa] fm801: PCI core handles power state for us (Jaroslav Kysela) [1197064]
-- [alsa] hda - Enable mic mute hotkey and LEDs for an HP machine (Jaroslav Kysela) [1197064]
-- [alsa] fm801: move to pcim_* and devm_* functions (Jaroslav Kysela) [1197064]
-- [alsa] hda - Debug output which type of fixup was selected (Jaroslav Kysela) [1197064]
-- [alsa] hda - Print codec->chip_name in autoconfig (Jaroslav Kysela) [1197064]
-- [alsa] Deletion of checks before the function call "iounmap" (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: Delete an unnecessary check before the function call "snd_pcm_suspend" (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Delete an unnecessary check before the function call "kfree" (Jaroslav Kysela) [1197064]
-- [alsa] seq: Deletion of unnecessary checks before the function call "snd_midi_event_free" (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: Remove unnecessary snd_pcm_lib_preallocate_free_for_all() (Jaroslav Kysela) [1197064]
-- [alsa] ymfpci: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] trident: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] sonicvibes: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] riptide: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] fm801: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] ens1370: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] cs46xx: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] cs4281: Remove always NULL parameters (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] asla: ad1889: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] asoc: sb16: Simplify snd_sb16dsp_pcm() (Jaroslav Kysela) [1197064]
-- [alsa] ml403-ac97cr: Remove always NULL parameter (Jaroslav Kysela) [1197064]
-- [alsa] pcm: add SNDRV_PCM_TRIGGER_DRAIN trigger (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: fix an information leak in asihpi_hpi_ioctl() (Jaroslav Kysela) [1197064]
-- [alsa] snd_pcm_oss_period_size: Use round{up,down}_pow_of_two() (Jaroslav Kysela) [1197064]
-- [alsa] Add support for wildcard msbits constraints (Jaroslav Kysela) [1197064]
-- [alsa] Fix handling of multiple msbits constraints on the same runtime (Jaroslav Kysela) [1197064]
-- [alsa] hda - patch_analog.c: Remove some unused functions (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: wm8776.c: Remove some unused functions (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add new GPU codec ID 0x10de0072 to snd-hda (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix wrong gpio_dir & gpio_mask hint setups for IDT/STAC codecs (Jaroslav Kysela) [1197064]
-- [alsa] snd-usb-caiaq: fix stream count check (Jaroslav Kysela) [1197064]
-- [alsa] hda_intel: apply the Seperate stream_tag for Skylake (Jaroslav Kysela) [1197064]
-- [alsa] hda_controller: Separate stream_tag for input and output streams (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: extend KEF X300A FU 10 tweak to Arcam rPAC (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - New codec support for ALC298 (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: update to HPI version 4.14 (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: increase tuner pad cache size (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: relax firmware version check (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix Scarlett 6i6 initialization typo (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add quirk for Packard Bell EasyNote MX65 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add native DSD support for Matrix Audio DACs (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - New codec support for ALC256 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add new Dell desktop for ALC3234 headset mode (Jaroslav Kysela) [1197064]
-- [alsa] hda/hdmi - apply Haswell fix-ups to Skylake display codec (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make add_stereo_mix_input flag tristate (Jaroslav Kysela) [1197064]
-- [alsa] hda - Create capture source ctls when stereo mix input is added (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix typos in snd_hda_get_int_hint() kerneldoc comments (Jaroslav Kysela) [1197064]
-- [alsa] hda - add codec ID for Skylake display audio codec (Jaroslav Kysela) [1197064]
-- [alsa] sound / pm: Replace CONFIG_PM_RUNTIME with CONFIG_PM (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: NULL dereference on probe failure (Jaroslav Kysela) [1197064]
-- [alsa] lola: NULL dereference on probe failure (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add "eapd" model string for AD1986A codec (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add EAPD fixup for ASUS Z99He laptop (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Don't resubmit pending URBs at MIDI error recovery (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix built-in mic at resume on Lenovo Ideapad S210 (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: Neaten get_daio_rsc (Jaroslav Kysela) [1197064]
-- [alsa] hda - Drop AZX_DCAPS_ALIGN_BUFSIZE (Jaroslav Kysela) [1197064]
-- [alsa] hda - Define the DCAPS preset for the old Intel chipsets (Jaroslav Kysela) [1197064]
-- [alsa] trident: Deletion of a check before snd_util_memhdr_free() (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: Deletion of a check before release_and_free_resource() (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Deletion of an unnecessary check before the function call "vfree" (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Add headset Mic support for new Dell machine (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add support for Zoom R16/24 capture and midi interfaces (Jaroslav Kysela) [1197064]
-- [alsa] virmidi: Fix wrong error check (Jaroslav Kysela) [1197064]
-- [alsa] virmidi: fixed code style issues (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add mode select quirk for Denon/Marantz DACs (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add native DSD support for Denon/Marantz DACs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Allow forcibly enabling/disabling snoop (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add AZX_DCAPS_SNOOP_OFF (and refactor snoop setup) (Jaroslav Kysela) [1197064]
-- [alsa] hda - using uninitialized data (Jaroslav Kysela) [1197064]
-- [alsa] sound/radeon: Move 64-bit MSI quirk from arch to driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Limit 40bit DMA for AMD HDMI controllers (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: used parts of message/response are zeroed before use (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: don't fail probe if adapter mode read fails (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Use standard printk helpers (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Turn off msg/resp logging after DSP has crashed (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Add support for stream interrupt (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Refactor control cache code (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Use CONFIG_64BIT directly (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Logging format improvements (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: New I/O types - AVB & BLUlink, DAB Rf receiver (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Minor string and dead code cleanup (Jaroslav Kysela) [1197064]
-- [alsa] core: Deletion of unnecessary checks before two function calls (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Add big-endian DSD sample formats and fix XMOS DSD sample format (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add resume support for Scarlett mixers (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add resume support for MicroII SPDIF ctls (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add resume support for FTU controls (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add resume support for Native Instruments controls (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add Digidesign Mbox 1 resume support (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add Xonar U1 resume support (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add Emu0204 channel switch resume support (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add audigy2nx resume support (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Allow quirks to handle own resume and proc dump (Jaroslav Kysela) [1197064]
-- [alsa] hda - One more HP machine needs to change mute led quirk (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Supported HP mute Led for ALC286 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Refactor ignore_ctl_error checks (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Use snd_usb_ctl_msg() for Native Instruments quirk (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Clean up mute/mic GPIO LED handling (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix the mic mute led problem for Latitude E5550 (Jaroslav Kysela) [1197064]
-- [alsa] hda - move DELL_WMI_MIC_MUTE_LED to the tail in the quirk chain (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Set the Control Selector to SU_SELECTOR_CONTROL for UAC2 (Jaroslav Kysela) [1197064]
-- [alsa] hdsp: Deletion of an unnecessary check before the function call "release_firmware" (Jaroslav Kysela) [1197064]
-- [alsa] lola: Deletion of an unnecessary check before the function call "vfree" (Jaroslav Kysela) [1197064]
-- [alsa] ice17xx: Deletion of unnecessary checks before the function call "snd_ac97_resume" (Jaroslav Kysela) [1197064]
-- [alsa] hda: Deletion of unnecessary checks before two function calls (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add ctrl message delay quirk for Marantz/Denon devices (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: consider error value (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: remove unused variable (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: remove unneeded return statement (Jaroslav Kysela) [1197064]
-- [alsa] 6fire: Convert byte_rev_table uses to bitrev8 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add mute LED control for Lenovo Ideapad Z560 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Scarlett mixer interface for 6i6, 18i6, 18i8 and 18i20 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: make set_*_mix_values functions public (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add private_data pointer to usb_mixer_elem_info (Jaroslav Kysela) [1197064]
-- [alsa] revert "alsa: usb-audio: Add quirk for Focusrite Scarlett (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Change EAPD to verb control (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix memory leak in FTU quirk (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add duplex mode for Digidesign Mbox 1 and enable mixer (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add mixer control for Digidesign Mbox 1 clock source (Jaroslav Kysela) [1197064]
-- [alsa] Fix invalid kerneldoc markers (Jaroslav Kysela) [1197064]
-- [alsa] mixart: Fix kerneldoc comments (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix kerneldoc errors in patch_ca0132.c (Jaroslav Kysela) [1197064]
-- [alsa] vx: Fix missing kerneldoc parameter descriptions (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix Oops by composite quirk enhancement (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Fix document for snd_pcm_stop_xrun() (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Allow multiple entries for the same iface in composite quirk (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Add snd_pcm_stop_xrun() helper (Jaroslav Kysela) [1197064]
-- [alsa] snd_ctl_activate_id(): Fix index look-up (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Trigger PCM XRUN at XRUN (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Update the state properly before notification (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Restore default value for ALC668 (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Fix device_del() sysfs warnings at disconnect (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: cleanup of unnecessary messages (Jaroslav Kysela) [1197064]
-- [alsa] hda - fix mute led problem for three HP laptops (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Use strim() instead of open code (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Pass direct struct pointer instead of list_head (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Flatten probe and disconnect functions (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Add xrun_injection proc entry (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Replace PCM hwptr tracking with tracepoints (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Correct PCM BUG error message (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Deletion of unnecessary checks before three function calls (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: remove all snd_printk (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: add reference of struct echoaudio (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Refactoring snd_pcm_action() (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Simplify snd_pcm_action_lock_irq() (Jaroslav Kysela) [1197064]
-- [alsa] doc: More kerneldoc comments on core components (Jaroslav Kysela) [1197064]
-- [alsa] pcm: More kerneldoc updates (Jaroslav Kysela) [1197064]
-- [alsa] control: Add missing kerneldoc comments to exported functions (Jaroslav Kysela) [1197064]
-- [alsa] Update au0828 quirks table (Jaroslav Kysela) [1197064]
-- [alsa] simplify au0828 quirk table (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add kerneldoc comments to hda_generic.c (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Update Initial AMP for EAPD control (Jaroslav Kysela) [1197064]
-- [alsa] hda - change three SSID quirks to one pin quirk (Jaroslav Kysela) [1197064]
-- [alsa] hda - Set GPIO 4 low for a few HP machines (Jaroslav Kysela) [1197064]
-- [alsa] es1968: Replace timeval with ktime_t (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add ultra dock support for Thinkpad X240 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add workaround for CMI8888 snoop behavior (Jaroslav Kysela) [1197064]
-- [alsa] hdspm: remove unused variable (Jaroslav Kysela) [1197064]
-- [alsa] hda - More kerneldoc comments (Jaroslav Kysela) [1197064]
-- [alsa] hda - Correct kerneldoc comments (Jaroslav Kysela) [1197064]
-- [alsa] au88x0: Kill the rest snd_print*() (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: Kill the rest snd_print*() (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: Kill the rest snd_print*() (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: convert timeval to ktime_t (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Zero-clear reserved fields of PCM status ioctl in compat mode (Jaroslav Kysela) [1197064]
-- [alsa] hda - Pass printf argument directly to request_module() (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - New SSID for Headset quirk (Jaroslav Kysela) [1197064]
-- [alsa] ad1889: Fix probable mask then right shift defects (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Update restore default value for ALC283 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - Update restore default value for ALC282 (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Avoid mmap warnings on x86 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add missing terminating entry to SND_HDA_PIN_QUIRK macro (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Disable mmap for known broken archs (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Remove arch-dependent mmap kludges (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Fix false lockdep warnings (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: remove unused variable (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] 6fire: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] via82xx: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] sonicvibes: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] rme9652: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] hdspm: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] hdsp: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] rme96: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] rme32: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] korg1212: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ice1724: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ice1712: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] hda: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] fm801: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] es1938: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] echoaudio: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ca0106: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] azt3328: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] aw2: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] asihpi: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ac97: Constify more text arrays (Jaroslav Kysela) [1197064]
-- [alsa] ac97: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] ak4xxx-adda: Use snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] vx: Use snd_ctl_elem_info() (Jaroslav Kysela) [1197064]
-- [alsa] mts64: Use snd_ctl_elem_info() (Jaroslav Kysela) [1197064]
-- [alsa] control: Allow to pass items zero to snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] control: Warn if too long string is passed to snd_ctl_enum_info() (Jaroslav Kysela) [1197064]
-- [alsa] drivers: pcsp: drop owner assignment from platform_drivers (Jaroslav Kysela) [1197064]
-- [alsa] drivers: mpu401: drop owner assignment from platform_drivers (Jaroslav Kysela) [1197064]
-- [alsa] drivers: drop owner assignment from platform_drivers (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use "Line Out" name instead of "PCM" when there are other outputs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix "PCM" name being used on one DAC when there are two DACs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix inverted LED gpio setup for Lenovo Ideapad (Jaroslav Kysela) [1197064]
-- [alsa] hda - hdmi: Fix missing ELD change event on plug/unplug (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: Add support for Steinberg UR22 USB interface (Jaroslav Kysela) [1197064]
-- [alsa] ALC283 codec - Avoid pop noise on headphones during suspend/resume (Jaroslav Kysela) [1197064]
-- [alsa] snd-usb: drop unused varible assigments (Jaroslav Kysela) [1197064]
-- [alsa] subject: alsa: seq: Remove autoload locks in driver registration (Jaroslav Kysela) [1197064]
-- [alsa] seq: bind seq driver automatically (Jaroslav Kysela) [1197064]
-- [alsa] pcm: use the same dma mmap codepath both for arm and arm64 (Jaroslav Kysela) [1197064]
-- [alsa] seq: Use atomic ops for autoload refcount (Jaroslav Kysela) [1197064]
-- [alsa] au88x0: pr_* replaced with dev_* (Jaroslav Kysela) [1197064]
-- [alsa] au88x0: added reference of vortex_t (Jaroslav Kysela) [1197064]
-- [alsa] emu10k1: Fix deadlock in synth voice lookup (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Fix referred substream in snd_pcm_action_group() unlock loop (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add dock port support to Thinkpad L440 (71aa:501e) (Jaroslav Kysela) [1197064]
-- [alsa] Allow pass NULL dev for snd_pci_quirk_lookup() (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add dock support for Thinkpad T440 (17aa:2212) (Jaroslav Kysela) [1197064]
-- [alsa] usb: caiaq: check for cdev->n_streams > 1 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make the inv dmic handling for Realtek use generic parser (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add Inverted Internal mic for Samsung Ativ book 9 (NP900X3G) (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add inverted internal mic for Asus Aspire 4830T (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: pr_* replaced with dev_* (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: ctatc: added reference to snd_card (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: initialized snd_card (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: added reference of snd_card (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: removed typecast to (struct hw *) (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: changed void * to struct hw * (Jaroslav Kysela) [1197064]
-- [alsa] usb: hub: rename khubd to hub_wq in documentation and comments (Jaroslav Kysela) [1197064]
-- [alsa] ctxfi: sparse warning (Jaroslav Kysela) [1197064]
-- [alsa] hda - Sort input pins depending on amp caps (Jaroslav Kysela) [1197064]
-- [alsa] hda - Move the function "check_amp_caps" to hda_codec.c (Jaroslav Kysela) [1197064]
-- [alsa] hda - add explicit include of err.h (Jaroslav Kysela) [1197064]
-- [alsa] oxygen: set fifo_size (Jaroslav Kysela) [1197064]
-- [alsa] virtuoso: add partial Xonar Xense support (Jaroslav Kysela) [1197064]
-- [alsa] snd-usb-caiaq: Fix LED commands for Kore controller (Jaroslav Kysela) [1197064]
-- [alsa] pcm: fix fifo_size frame calculation (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add fixup model name lookup for Lemote A1205 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Replace strnicmp with strncasecmp (Jaroslav Kysela) [1197064]
-- [alsa] hda - Use standard hda_jack infrastructure for CA0132 driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove superfluous hooks from VIA driver (Jaroslav Kysela) [1197064]
-- [alsa] hda - Remove superfluous callbacks from STAC/IDT codecs (Jaroslav Kysela) [1197064]
-- [alsa] hda - Allow multiple callbacks for jack (Jaroslav Kysela) [1197064]
-- [alsa] lx6464es: Use nonatomic PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] pcxhr: Use nonatomic PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] mixart: Use nonatomic PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] vx: Use nonatomic PCM ops (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make snd_hda_jack_detect_enable_callback() returning the jack object (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make snd_hda_jack_tbl_new() static (Jaroslav Kysela) [1197064]
-- [alsa] hda - Get rid of action field from struct hda_jack_tbl (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix invalid pin powermap without jack detection (Jaroslav Kysela) [1197064]
-- [alsa] pci: au88x0: printk replacement (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add native DSD support for XMOS based DACs (Jaroslav Kysela) [1197064]
-- [alsa] pcm: add new DSD sampleformat for native DSD playback on XMOS based devices (Jaroslav Kysela) [1197064]
-- [alsa] virtuoso: add Xonar Essence STX II daughterboard support (Jaroslav Kysela) [1197064]
-- [alsa] virtuoso: add one more headphone impedance setting (Jaroslav Kysela) [1197064]
-- [alsa] usb-audio: add MIDI port names for the Yamaha MOTIF XF (Jaroslav Kysela) [1197064]
-- [alsa] pcm: snd_interval_step: fix changes of open intervals (Jaroslav Kysela) [1197064]
-- [alsa] pcm: snd_interval_step: drop the min parameter (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add TLV_DB_SCALE_MUTE bit for relevant controls (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Uninline snd_pcm_stream_lock() and _unlock() (Jaroslav Kysela) [1197064]
-- [alsa] pcm: Allow nonatomic trigger operations (Jaroslav Kysela) [1197064]
-- [alsa] hda - Make the ALC269 pin quirk table shorter (Jaroslav Kysela) [1197064]
-- [alsa] hda - Add common pin macros for ALC269 family (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move HP_GPIO_MIC1_LED quirk for alc280 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move HP_LINE1_MIC1_LED quirk for alc282 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move HP_MUTE_LED_MIC1 quirk for alc290 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move HP_MUTE_LED_MIC1 quirk for alc282 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move DELL2_MIC_NO_PRESENCE quirk for alc255 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move DELL1_MIC_NO_PRESENCE quirk for alc255 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move DELL1_MIC_NO_PRESENCE quirk for alc283 (Jaroslav Kysela) [1197064]
-- [alsa] hda/realtek - move DELL2_MIC_NO_PRESENCE quirk for alc292 (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix COEF setups for ALC1150 codec (Jaroslav Kysela) [1197064]
-- [alsa] hda - Fix digital mic on Acer Aspire 3830TG (Jaroslav Kysela) [1197064]
-
-* Mon Jun 22 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-277.el7]
-- [kernel] sched: Fix compiler warnings (Jiri Olsa) [1222189]
-- [block] fix ext_dev_lock lockdep report (Jeff Moyer) [1230924]
-- [net] dcbnl: Disable software interrupts before taking dcb_lock (Chris Leech) [1175797]
-- [net] dcbnl: Fix misleading dcb_app->priority explanation (Chris Leech) [1175797]
-- [net] dcb: use __dev_get_by_name instead of dev_get_by_name to find (Chris Leech) [1175797]
-- [net] dcbevent.h: Remove extern from function prototypes (Chris Leech) [1175797]
-- [scsi] fcoe: extend ethtool to FC port speed mapping (Chris Leech) [1175797]
-- [scsi] scsi_transport_fc: Add support for 25Gbit speed (Chris Leech) [1175797]
-- [scsi] add defines for new FC port speeds (Chris Leech) [1175797]
-- [scsi] megaraid: regression - fix irq setup process (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Modify return value of megasas_issue_blocked_cmd() and wait_and_poll() to consider command status returned by firmware (Tomas Henzl) [1207092]
-- [scsi] megaraid: --grep and Kconfig (Tomas Henzl) [1185944]
-- [scsi] megaraid: remove unnecessary pci_set_drvdata() (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: fix bug in handling return value of pci_enable_msix_range() (Tomas Henzl) [1185944]
-- [scsi] megaraid: Use pci_enable_msix_range() instead of pci_enable_msix() (Tomas Henzl) [1185944]
-- [scsi] megaraid: use pci_zalloc_consistent (Tomas Henzl) [1185944]
-- [scsi] megaraid: fixed several typos in comments (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: swap whole register in megasas_register_aen (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: fix megasas_fire_cmd_fusion calling convention (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add missing byte swaps to the sriov code (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: bytewise or should be done on native endian variables (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: move endianness conversion into caller of megasas_get_seq_num (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add endianness conversions for all ones (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add endianness annotations (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add missing __iomem annotations (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: megasas_complete_outstanding_ioctls() can be static (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Support for Avago's Single server High Availability product (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Add release date and update driver version (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Modify driver's meta data to reflect Avago (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Use Block layer tag support for internal command indexing (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Enhanced few prints (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Move controller's queue depth calculation in adapter specific function (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Add separate functions for building sysPD IOs and non RW LDIOs (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Add separate function for refiring MFI commands (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: Add separate function for setting up IRQs (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: use raw_smp_processor_id() (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: driver version update (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: remove redundant memset call (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: reserve commands for IOCTLs and internal DCMDs (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: complete outstanding IOCTLs before killing adapter (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: disable interrupt_mask before enabling hardware interrupts (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: fix the problem of non-existing VD exposed to host (Tomas Henzl) [1185944]
-- [scsi] megaraid_sas: add support for secure JBOD (Tomas Henzl) [1185944]
-- [scsi] mptsas: fix depth param in scsi_track_queue_full (Tomas Henzl) [1117348]
-- [scsi] lpfc: Update version 10.7.0.1 for RHEL 7.2 release (Rob Evers) [1225165]
-- [scsi] lpfc: Fix to drop PLOGIs from fabric node till LOGO processing completes (Rob Evers) [1225165]
-- [scsi] lpfc: Fix cq_id masking problem (Rob Evers) [1225165]
-- [scsi] lpfc: Fix scsi prep dma buf error (Rob Evers) [1225165]
-- [scsi] lpfc: Devices are not discovered during takeaway/giveback testing (Rob Evers) [1225165]
-- [scsi] lpfc: Fix vport deletion failure (Rob Evers) [1225165]
-- [scsi] lpfc: Check for active portpeerbeacon (Rob Evers) [1225165]
-- [scsi] lpfc: Change buffer pool empty message to miscellaneous category (Rob Evers) [1225165]
-- [scsi] lpfc: Fix incorrect log message reported for empty FCF record (Rob Evers) [1225165]
-- [scsi] lpfc: Fix rport leak (Rob Evers) [1225165]
-- [scsi] lpfc: Correct loss of RSCNs during array takeaway/giveback testing (Rob Evers) [1225165]
-- [scsi] lpfc: Fix crash in vport_delete (Rob Evers) [1225165]
-- [scsi] lpfc: Fix to remove IRQF_SHARED flag for MSI/MSI-X vectors (Rob Evers) [1225165]
-- [scsi] lpfc: Fix discovery issue when changing from Pt2Pt to Fabric (Rob Evers) [1225165]
-- [scsi] lpfc: Correct reporting of vport state on fdisc command failure (Rob Evers) [1225165]
-- [scsi] lpfc: Add support for RDP ELS command (Rob Evers) [1225165]
-- [scsi] lpfc: Fix ABORTs WQ selection in terminate_rport_io (Rob Evers) [1225165]
-- [scsi] lpfc: Correct reference counting of rport (Rob Evers) [1225165]
-- [scsi] lpfc: Add support for ELS LCB (Rob Evers) [1225165]
-- [scsi] lpfc: Correct loss of target discovery after cable swap (Rob Evers) [1225165]
-- [scsi] lpfc: Fix crash in device reset handler (Rob Evers) [1225165]
-- [scsi] lpfc: Fix OS crash when running loopback test in applications (Rob Evers) [1225165]
-- [scsi] lpfc: Fix internal loopback failure (Rob Evers) [1225165]
-- [scsi] lpfc: Fix premature release of rpi bit in bitmask (Rob Evers) [1225165]
-- [scsi] lpfc: Initiator sends wrong BBCredit value for either FLOGI or FLOGI_ACC (Rob Evers) [1225165]
-- [scsi] lpfc: Fix FDMI Fabric support in driver for Brocade (Rob Evers) [1225165]
-- [scsi] lpfc: Fix null ndlp dereference in target_reset_handler (Rob Evers) [1225165]
-- [scsi] lpfc: Parse the new 20G, 25G and 40G link speeds in the lpfc driver (Rob Evers) [1225165]
-- [scsi] lpfc: Fix provide host name and OS name in RSNN-NN FC-GS command (Rob Evers) [1225165]
-- [scsi] lpfc: Add support for reporting option_rom_version on newer adapters (Rob Evers) [1225165]
-- [scsi] lpfc: Fix setting of EQ (interrupt) delay Multiplier (Rob Evers) [1225165]
-- [scsi] lpfc: fix low priority issues from fortify source code scan (Rob Evers) [1225165]
-- [scsi] lpfc: fix high priority issues from fortify source code scan (Rob Evers) [1225165]
-- [scsi] lpfc: Fix host reset escalation killing all IOs (Rob Evers) [1225165]
-- [scsi] lpfc: correct device removal deadlock after link bounce (Rob Evers) [1225165]
-- [scsi] lpfc: Linux lpfc driver doesn't re-establish the link after a cable pull on LPe12002 (Rob Evers) [1225165]
-- [scsi] lpfc: Fix to handle PLOGI when already logged in (Rob Evers) [1225165]
-- [scsi] lpfc: Add new mbx cmd recognition (Rob Evers) [1225165]
-- [scsi] lpfc: Add Lancer Temperature Event support to the lpfc driver (Rob Evers) [1225165]
-
-* Mon Jun 22 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-276.el7]
-- [pci] msi: Remove unnecessary braces around single statements (Steve Best) [1231358]
-- [usb] core: hcd-pci: free IRQ before disabling PCI device when shutting down (Steve Best) [1231358]
-- [x86] irq: Clean up irqdomain transition code (Steve Best) [1231358]
-- [x86] irq, devicetree: Release IOAPIC pin when PCI device is disabled (Steve Best) [1231358]
-- [x86] irq, mpparse: Release IOAPIC pin when PCI device is disabled (Steve Best) [1231358]
-- [x86] irq, acpi: Release IOAPIC pin when PCI device is disabled (Steve Best) [1231358]
-- [x86] irq: Introduce helper functions to release IOAPIC pin (Steve Best) [1231358]
-- [x86] irq: Simplify the way to handle ISA IRQ (Steve Best) [1231358]
-- [x86] irq: Clean up unused IOAPIC interface (Steve Best) [1231358]
-- [x86] irq, devicetree: Use common irqdomain map interface to program IOAPIC pins (Steve Best) [1231358]
-- [x86] irq, mpparse: Use common irqdomain map interface to program IOAPIC pins (Steve Best) [1231358]
-- [x86] irq, acpi: Use common irqdomain map interface to program IOAPIC pins (Steve Best) [1231358]
-- [x86] irq: Introduce two helper functions to support irqdomain map operation (Steve Best) [1231358]
-- [x86] devicetree, irq: Use common mechanism to support irqdomain (Steve Best) [1231358]
-- [x86] mpparse, irq: Provide basic irqdomain support (Steve Best) [1231358]
-- [x86] acpi, irq: Provide basic irqdomain support (Steve Best) [1231358]
-- [x86] irq: Enhance mp_register_ioapic() to support irqdomain (Steve Best) [1231358]
-- [x86] irq: Introduce mechanisms to support dynamically allocate IRQ for IOAPIC (Steve Best) [1231358]
-- [x86] irq, acpi: Change __acpi_register_gsi to return IRQ number instead of GSI (Steve Best) [1231358]
-- [x86] acpi, irq: Consolidate algorithm of mapping (ioapic, pin) to IRQ number (Steve Best) [1231358]
-- [x86] irq: Simplify arch_early_irq_init() (Steve Best) [1231358]
-- [x86] irq: Count legacy IRQs by legacy_pic->nr_legacy_irqs instead of NR_IRQS_LEGACY (Steve Best) [1231358]
-- [x86] ce4100, irq: Do not set legacy_pic to null_legacy_pic (Steve Best) [1231358]
-- [x86] ce4100, irq: Make CE4100 depend on CONFIG_X86_IO_APIC (Steve Best) [1231358]
-- [x86] irq: Introduce some helper utilities to improve readability (Steve Best) [1231358]
-- [x86] irq: Reorganize IO_APIC_get_PCI_irq_vector() to prepare for irqdomain (Steve Best) [1231358]
-- [x86] ioapic: Use irq_cfg() instead of irq_get_chip_data() for better readability (Steve Best) [1231358]
-- [x86] ioapic: Introduce helper utilities to walk ioapics and pins (Steve Best) [1231358]
-- [x86] ioapic: Kill static variable nr_irqs_gsi (Steve Best) [1231358]
-- [x86] ioapic: Keep get_nr_irqs_gsi() (Steve Best) [1231358]
-- [x86] genirq: Ensure that dynamic irq allocation does not conflict (Steve Best) [1231358]
-- [x86] Remove create/destroy_irq() (Steve Best) [1231358]
-- [x86] iommu: dmar: Provide arch specific irq allocation (Steve Best) [1231358]
-- [x86] iommu: smar: Fix return value check of create_irq() (Steve Best) [1231358]
-- [x86] hpet: Use irq_alloc/free_hwirq() (Steve Best) [1231358]
-- [x86] uv: Use irq_alloc/free_hwirq() (Steve Best) [1231358]
-- [x86] irq_remapping: Use irq_alloc/free_hwirq() (Steve Best) [1231358]
-- [x86] htirq: Use irq_alloc/free_irq() (Steve Best) [1231358]
-- [x86] ioapic: Use irq_alloc/free_hwirq() (Steve Best) [1231358]
-- [x86] genirq: Provide generic hwirq allocation facility (Steve Best) [1231358]
-- [x86] Implement arch_setup/teardown_hwirq() (Steve Best) [1231358]
-- [x86] ioapic: Kill unused global variable timer_through_8259 (Steve Best) [1231358]
-- [x86] irq, trivial: Minor improvements of IRQ related code (Steve Best) [1231358]
-- [x86] acpi, irq: Fix possible eror in GSI to IRQ mapping for legacy IRQ (Steve Best) [1231358]
-- [x86] acpi, irq: Enhance error handling in function acpi_register_gsi() (Steve Best) [1231358]
-- [x86] acpi, trivial: Minor improvements to arch/x86/kernel/acpi/boot.c (Steve Best) [1231358]
-- [x86] acpi, irq: Kill static function irq_to_gsi() (Steve Best) [1231358]
-- [x86] pci, acpi: Use kmalloc_node() to optimize for performance (Steve Best) [1231358]
-- [x86] acpi: Reorganize code to avoid forward declaration in boot.c (Steve Best) [1231358]
-- [x86] apic: Remove support for ia32-based Unisys ES7000 (Steve Best) [1231358]
-- [x86] mpparse: Simplify arch/x86/include/asm/mpspec.h (Steve Best) [1231358]
-- [x86] mpparse: Use pr_lvl() helper utilities to replace printk(KERN_LVL) (Steve Best) [1231358]
-
-* Mon Jun 22 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-275.el7]
-- [char] ipmi: Update timespec usage to timespec64 (Tony Camuso) [1229675]
-- [char] ipmi: Fix multi-part message handling (Tony Camuso) [1229675]
-- [char] ipmi: Add alert handling to SSIF (Tony Camuso) [1229675]
-- [char] ipmi: Fix a problem that messages are not issued in run_to_completion mode (Tony Camuso) [1229675]
-- [char] ipmi: Report an error if ACPI _IFT doesn't exist (Tony Camuso) [1229675]
-- [char] ipmi: Remove unused including <linux/version.h> (Tony Camuso) [1229675]
-- [char] ipmi: Don't report err in the SI driver for SSIF devices (Tony Camuso) [1229675]
-- [char] ipmi: Remove incorrect use of seq_has_overflowed (Tony Camuso) [1229675]
-- [char] ipmi_ssif: Ignore spaces when comparing I2C adapter names (Tony Camuso) [1229675]
-- [char] ipmi_ssif: Fix the logic on user-supplied addresses (Tony Camuso) [1229675]
-- [char] ipmi_ssif: Use interruptible completion for waiting in the thread (Tony Camuso) [1229675]
-- [char] ipmi: Handle BMCs that don't allow clearing the rcv irq bit (Tony Camuso) [1229675]
-- [char] ipmi: constify of_device_id array (Tony Camuso) [1229675]
-- [char] ipmi: Fix a memory ordering issue (Tony Camuso) [1229675]
-- [char] ipmi: Remove uses of return value of seq_printf (Tony Camuso) [1229675]
-- [char] ipmi: Use is_visible callback for conditional sysfs entries (Tony Camuso) [1229675]
-- [char] ipmi: Free ipmi_recv_msg messages from the linked list on close (Tony Camuso) [1229675]
-- [char] ipmi: avoid gcc warning (Tony Camuso) [1229675]
-- [char] ipmi: Cleanup DEBUG_TIMING ifdef usage (Tony Camuso) [1229675]
-- [char] ipmi: Remove unneeded FIXME comment in the file, ipmi_si_intf.c (Tony Camuso) [1229675]
-- [char] ipmi: Remove obsolete cleanup for clientdata (Tony Camuso) [1229675]
-- [char] ipmi: Remove a FIXME for slab conversion (Tony Camuso) [1229675]
-- [char] ipmi: Fix compile warning with tv_usec (Tony Camuso) [1229675]
-- [char] ipmi: Fix compile issue with isspace() (Tony Camuso) [1229675]
-- [char] ipmi: Finish cleanup of BMC attributes (Tony Camuso) [1229675]
-- [char] ipmi: Check the BT interrupt enable periodically (Tony Camuso) [1229675]
-- [char] ipmi: Fix attention handling for system interfaces (Tony Camuso) [1229675]
-- [char] ipmi: Periodically check to see if irqs and messages are set right (Tony Camuso) [1229675]
-- [char] ipmi: Add SMBus interface driver (SSIF) (Tony Camuso) [1229675]
-- [char] ipmi: Remove the now unnecessary message queue (Tony Camuso) [1229675]
-- [char] ipmi: Make the message handler easier to use for SMI interfaces (Tony Camuso) [1229675]
-- [char] ipmi: Move message sending into its own function (Tony Camuso) [1229675]
-- [char] ipmi: rename waiting_msgs to waiting_rcv_msgs (Tony Camuso) [1229675]
-- [char] ipmi: Fix handling of BMC flags (Tony Camuso) [1229675]
-- [char] ipmi: Initialize BMC device attributes (Tony Camuso) [1229675]
-- [char] ipmi: Unregister previously registered driver in error case (Tony Camuso) [1229675]
-- [char] ipmi: Fix a bug in hot add/remove (Tony Camuso) [1229675]
-- [char] ipmi: Remove useless sysfs_name parameters (Tony Camuso) [1229675]
-- [char] ipmi: clean up the device handling for the bmc device (Tony Camuso) [1229675]
-- [char] ipmi: Move the address source to string to ipmi-generic code (Tony Camuso) [1229675]
-- [char] ipmi: Ignore SSIF in the PNP handling (Tony Camuso) [1229675]
-- [char] ipmi: drop owner assignment from platform_drivers (Tony Camuso) [1229675]
-- [powerpc] rtc/tpo: Driver to support rtc and wakeup on PowerNV platform (Gustavo Duarte) [1223687]
-- [powerpc] powernv: Check OPAL RTC calls exists before using (Gustavo Duarte) [1223687]
-- [base] devres: restore zeroing behavior of devres_alloc() (Gustavo Duarte) [1221064 1230136]
-- [char] ipmi/powernv: Fix minor locking bug (Gustavo Duarte) [1221064]
-- [char] ipmi: Add powernv IPMI driver (Gustavo Duarte) [1221064]
-- [powerpc] powernv: Add OPAL IPMI interface (Gustavo Duarte) [1221064]
-- [powerpc] devres: add kernel standard devm_k.alloc functions (Gustavo Duarte) [1221064]
-
-* Fri Jun 19 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-274.el7]
-- [netdrv] macvtap/tun: cross-endian support for little-endian hosts (Thomas Huth) [1213658]
-- [vhost] cross-endian support for legacy devices (Thomas Huth) [1213658]
-- [virtio] add explicit big-endian support to memory accessors (Thomas Huth) [1213658]
-- [vhost] introduce vhost_is_little_endian() helper (Thomas Huth) [1213658]
-- [virtio] vringh: introduce vringh_is_little_endian() helper (Thomas Huth) [1213658]
-- [netdrv] macvtap: introduce macvtap_is_little_endian() helper (Thomas Huth) [1213658]
-- [netdrv] tun: add tun_is_little_endian() helper (Thomas Huth) [1213658]
-- [virtio] introduce virtio_is_little_endian() helper (Thomas Huth) [1213658]
-- [netdrv] tun: remove bogus hardware vlan acceleration flags from vlan_features (Thomas Huth) [1231879]
-- [kvm] move advertising of KVM_CAP_IRQFD to common code (Thomas Huth) [1231879]
-- [kvm] Give IRQFD its own separate enabling Kconfig option (Thomas Huth) [1231879]
-- [netdrv] vringh: update for virtio 1.0 APIs (Thomas Huth) [1231879]
-- [netdrv] vringh: 64 bit features (Thomas Huth) [1231879]
-- [vhost] net: fix up num_buffers endian-ness (Thomas Huth) [1231879]
-- [vhost] net: enable virtio 1.0 (Thomas Huth) [1231879]
-- [vhost] net: larger header for virtio 1.0 (Thomas Huth) [1231879]
-- [vhost] net: length miscalculation (Thomas Huth) [1231879]
-- [vhost] net: virtio 1.0 byte swap (Thomas Huth) [1231879]
-- [vhost] virtio 1.0 endian-ness support (Thomas Huth) [1231879]
-- [vhost] switch to __get/__put_user exclusively (Thomas Huth) [1231879]
-- [vhost] net: force len for TX to host endian (Thomas Huth) [1231879]
-- [vhost] add memory access wrappers (Thomas Huth) [1231879]
-- [vhost] make features 64 bit (Thomas Huth) [1231879]
-- [vhost] switch to use vhost_add_used_n() (Thomas Huth) [1231879]
-- [netdrv] macvtap: drop broken IFF_VNET_LE (Thomas Huth) [1231879]
-- [netdrv] macvtap: TUN_VNET_LE support (Thomas Huth) [1231879]
-- [netdrv] macvtap: Fix csum_start when VLAN tags are present (Thomas Huth) [1231879]
-- [netdrv] macvtap: remove the dead branch (Thomas Huth) [1231879]
-- [netdrv] tun: drop broken IFF_VNET_LE (Thomas Huth) [1231879]
-- [netdrv] if_tun: add TUNSETVNETLE/TUNGETVNETLE (Thomas Huth) [1231879]
-- [netdrv] tun: TUN_VNET_LE support, fix sparse warnings for virtio headers (Thomas Huth) [1231879]
-- [netdrv] tun: drop most type defines (Thomas Huth) [1231879]
-- [netdrv] tun: move internal flag defines out of uapi (Thomas Huth) [1231879]
-- [netdrv] tun: Report "persist" flag to userspace (Thomas Huth) [1231879]
-- [netdrv] tun: Fix TUN_PKT_STRIP setting (Thomas Huth) [1231879]
-- [netdrv] tun: Fix csum_start with VLAN acceleration (Thomas Huth) [1231879]
-- [netdrv] tun: unbreak truncated packet signalling (Thomas Huth) [1231879]
-- [netdrv] tuntap: hardware vlan tx support (Thomas Huth) [1231879]
-- [netdrv] bnx2x: Alloc 4k fragment for each rx ring buffer element (Michal Schmidt) [1182054 1182736 1187290 1229122]
-- [netdrv] bnx2x: Move statistics implementation into semaphores (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: limit fw delay in kdump to 5s after boot (Michal Schmidt) [1179882 1182054 1182736 1187290 1211883 1217325 1224087]
-- [netdrv] bnx2x: Fix to prevent inner-reload (Michal Schmidt) [1182054 1182736 1187290 1191799]
-- [netdrv] bnx2x: Delay during kdump load (Michal Schmidt) [1179882 1182054 1182736 1187290 1211883 1217325 1224087]
-- [netdrv] bnx2x: remove {TPA,GRO}_ENABLE_FLAG (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: merge fp->disable_tpa with fp->mode (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: mark LRO as a fixed disabled feature if disable_tpa is set (Michal Schmidt) [1182054 1182736 1187290 1215700]
-- [netdrv] bnx2x: really disable TPA if 'disable_tpa' option is set (Michal Schmidt) [1182054 1182736 1187290 1215700]
-- [netdrv] bnx2x: Prevent inner-reload while VFs exist (Michal Schmidt) [1182054 1182736 1187290 1191799]
-- [netdrv] bnx2x: Fix busy_poll vs netpoll (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] ptp: bnx2x: use helpers for converting ns to timespec (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Use bool function returns of true/false instead of 1/0 (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Prevent probe as early as possible (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Count number of link changes (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Configure IFir et al. according to nvram (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: codespell comment spelling fixes (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Use eth_<foo>_addr instead of memset (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Fix typo in printk messages (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Fix kdump when iommu=on (Michal Schmidt) [1179882 1182054 1182736 1187290 1211883 1217325 1224087]
-- [netdrv] bnx2x: Fix kdump on 4-port device (Michal Schmidt) [1179882 1182054 1182736 1187290 1211883 1217325 1224087]
-- [netdrv] bnx2x: Fix statistics locking scheme (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Force fundamental reset for EEH recovery (Michal Schmidt) [1182054 1182736 1187290 1198641]
-- [netdrv] net: bnx2x: fix sparse warnings (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: fix napi poll return value for repoll (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] net: bnx2x: avoid macro redefinition (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] net: bnx2x: convert to timecounter adjtime (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: fix typos in "configure" (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Limit 1G link enforcement (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] ethernet/broadcom: Use napi_alloc_skb instead of netdev_alloc_skb_ip_align (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Use correct fastpath version for VFs (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: use netdev_rss_key_fill() helper (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: use napi_schedule_irqoff() (Michal Schmidt) [1182054 1182736 1187290]
-- [netdrv] bnx2x: Add a fallback multi-function mode NPAR1.5 (Michal Schmidt) [1146035 1182054 1182298 1182736 1187290]
-- [netdrv] bnx2x: new multi-function mode: UFP (Michal Schmidt) [1146035 1182054 1182298 1182736 1187290]
-- [netdrv] bnx2x: Changes with storage & MAC macros (Michal Schmidt) [1146035 1182054 1182298 1182736 1187290]
-- [netdrv] bnx2x: Fix link problems for 1G SFP RJ45 module (Michal Schmidt) [1182054 1182736 1187290]
-- [fs] xfs: fix broken i_nlink accounting for whiteout tmpfile inode (Brian Foster) [1225075]
-- [fs] xfs: xfs_iozero can return positive errno (Brian Foster) [1225075]
-- [fs] xfs: xfs_attr_inactive leaves inconsistent attr fork state behind (Brian Foster) [1225075]
-- [fs] xfs: extent size hints can round up extents past MAXEXTLEN (Brian Foster) [1225075]
-- [fs] xfs: inode and free block counters need to use __percpu_counter_compare (Brian Foster) [1225075]
-- [fs] percpu_counter: batch size aware __percpu_counter_compare() (Brian Foster) [1225075]
-- [fs] xfs: use percpu_counter_read_positive for mp->m_icount (Brian Foster) [1225075]
-- [fs] xfs: unlock i_mutex in xfs_break_layouts (Brian Foster) [1225075]
-- [fs] xfs: kill unnecessary firstused overflow check on attr3 leaf removal (Brian Foster) [1225075]
-- [fs] xfs: use larger in-core attr firstused field and detect overflow (Brian Foster) [1225075]
-- [fs] xfs: pass attr geometry to attr leaf header conversion functions (Brian Foster) [1225075]
-- [fs] xfs: Fix incorrect positive ENOMEM return (Brian Foster) [1225075]
-- [fs] xfs: xfs_mru_cache_insert() should use GFP_NOFS (Brian Foster) [1225075]
-- [fs] xfs: pF is only for function pointers (Brian Foster) [1225075]
-- [fs] xfs: fix shadow warning in xfs_da3_root_split() (Brian Foster) [1225075]
-- [fs] xfs: use bool instead of int in xfs_rename() (Brian Foster) [1225075]
-- [fs] xfs: fix NULL pointer dereference in xfs_filestream_lookup_ag() (Brian Foster) [1225075]
-- [fs] xfs: remove xfs_bmap_sanity_check() (Brian Foster) [1225075]
-- [fs] xfs: xfs_alloc_fix_minleft can underflow near ENOSPC (Brian Foster) [1225075]
-- [fs] xfs: cancel failed transaction in xfs_fs_commit_blocks() (Brian Foster) [1225075]
-- [fs] xfs: remove old and redundant comment in xfs_mount_validate_sb (Brian Foster) [1225075]
-- [fs] xfs: clarify async write failure ratelimit message (Brian Foster) [1225075]
-- [fs] xfs: log unmount events on console (Brian Foster) [1225075]
-- [fs] xfs: pass mp to XFS_WANT_CORRUPTED_RETURN (Brian Foster) [1225075]
-- [fs] xfs: pass mp to XFS_WANT_CORRUPTED_GOTO (Brian Foster) [1225075]
-- [fs] xfs: ensure truncate forces zeroed blocks to disk (Brian Foster) [1225075]
-- [fs] xfs: Fix quota type in quota structures when reusing quota file (Brian Foster) [1225075]
-- [fs] xfs: lock out page faults from extent swap operations (Brian Foster) [1225075]
-- [fs] xfs: xfs_setattr_size no longer races with page faults (Brian Foster) [1225075]
-- [fs] xfs: take i_mmap_lock on extent manipulation operations (Brian Foster) [1225075]
-- [fs] xfs: use i_mmaplock on write faults (Brian Foster) [1225075]
-- [fs] xfs: use i_mmaplock on read faults (Brian Foster) [1225075]
-- [fs] xfs: introduce mmap/truncate lock (Brian Foster) [1225075]
-- [fs] xfs: remove xfs_mod_incore_sb API (Brian Foster) [1225075]
-- [fs] xfs: replace xfs_mod_incore_sb_batched (Brian Foster) [1225075]
-- [fs] xfs: introduce xfs_mod_frextents (Brian Foster) [1225075]
-- [fs] xfs: Remove icsb infrastructure (Brian Foster) [1225075]
-- [fs] xfs: use generic percpu counters for free block counter (Brian Foster) [1225075]
-- [fs] xfs: use generic percpu counters for free inode counter (Brian Foster) [1225075]
-- [fs] xfs: use generic percpu counters for inode counter (Brian Foster) [1225075]
-- [fs] xfs: recall pNFS layouts on conflicting access (Brian Foster) [1225075]
-- [fs] xfs: implement pNFS export operations (Brian Foster) [1225075]
-- [fs] xfs: report proper f_files in statfs if we overshoot imaxpct (Brian Foster) [1225075]
-- [fs] xfs: xfs_ioctl_setattr_check_projid can be static (Brian Foster) [1225075]
-- [fs] xfs: growfs should use synchronous transactions (Brian Foster) [1225075]
-- [fs] xfs: change kmem_free to use generic kvfree() (Brian Foster) [1225075]
-- [fs] xfs: factor out a xfs_update_prealloc_flags() helper (Brian Foster) [1225075]
-- [fs] xfs: remove incorrect error negation in attr_multi ioctl (Brian Foster) [1225075]
-- [fs] xfs: set superblock buffer type correctly (Brian Foster) [1225075]
-- [fs] xfs: set buf types when converting extent formats (Brian Foster) [1225075]
-- [fs] xfs: inode unlink does not set AGI buffer type (Brian Foster) [1225075]
-- [fs] xfs: ensure buffer types are set correctly (Brian Foster) [1225075]
-- [fs] xfs: sanitise sb_bad_features2 handling (Brian Foster) [1225075]
-- [fs] xfs: consolidate superblock logging functions (Brian Foster) [1225075]
-- [fs] xfs: remove bitfield based superblock updates (Brian Foster) [1225075]
-- [fs] xfs: Remove some pointless quota checks (Brian Foster) [1225075]
-- [fs] xfs: Remove some useless flags tests (Brian Foster) [1225075]
-- [fs] xfs: Remove useless test (Brian Foster) [1225075]
-- [fs] xfs: fix implicit bool to int conversion (Brian Foster) [1225075]
-- [fs] xfs: pass a 64-bit count argument to xfs_iomap_write_unwritten (Brian Foster) [1225075]
-- [fs] xfs: move xfs_bmap_finish prototype (Brian Foster) [1225075]
-- [fs] xfs: move struct xfs_bmalloca to libxfs (Brian Foster) [1225075]
-- [fs] xfs: move xfs_types.h to libxfs (Brian Foster) [1225075]
-- [fs] xfs: move xfs_fs.h to libxfs (Brian Foster) [1225075]
-- [fs] xfs: remove extra newlines from xfs messages (Brian Foster) [1225075]
-- [fs] xfs: initialize log buf I/O completion wq on log alloc (Brian Foster) [1225075]
-
-* Fri Jun 19 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-273.el7]
-- [netdrv] i40e/i40evf: Fix mixed size frags and linearization (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: remove time_stamp member (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: force inline transmit functions (Stefan Assmann) [1173789]
-- [netdrv] i40evf: skb->xmit_more support (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Remove unneeded TODO (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Add stats to count Tunnel ATR hits (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Add ATR support for tunneled TCP/IPv4/IPv6 packets (Stefan Assmann) [1173789]
-- [netdrv] net: batch of last_rx update avoidance in ethernet drivers (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Save WR_CSR_PROT field from DEV/FUNC capabilities (Stefan Assmann) [1173789]
-- [netdrv] i40evf: remove aq_pending (Stefan Assmann) [1173789]
-- [netdrv] i40evf: fix bad indentation (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Use dma_rmb where appropriate (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Refactor VF RSS code (Stefan Assmann) [1173789]
-- [netdrv] i40evf: protect VLAN filter list (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Set Ethernet protocol correctly when Tx VLAN offloads are disabled (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: fix bug when skb allocation fails (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Fix Outer UDP RX checksum code (Stefan Assmann) [1173789]
-- [netdrv] i40evf: add FW version to ethtool info (Stefan Assmann) [1173789]
-- [netdrv] i40evf: resequence close operations (Stefan Assmann) [1173789]
-- [netdrv] i40evf: delay releasing rings (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: implement KR2 support (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf version (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: fix accidental write to ITR registers (Stefan Assmann) [1173789]
-- [netdrv] i40vf: don't stop me now (Stefan Assmann) [1173789]
-- [netdrv] ethernet: codespell comment spelling fixes (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump version (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: enable prefetch of Tx descriptors during cleanup (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Simplify tunnel selection logic (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Refactor i40e_debug_aq and make some functions static (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Version bump (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Clean up some formatting and other things (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: grab NVM devstarter version not image version (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump versions (Stefan Assmann) [1173789]
-- [netdrv] i40evf: ethtool RSS fixes (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Add missing packet types for VXLAN encapsulated packet types (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: print FW build number in version string (Stefan Assmann) [1173789]
-- [netdrv] i40evf: TCP/IPv6 over Vxlan Tx checksum offload fix (Stefan Assmann) [1173789]
-- [netdrv] i40e: fix race in hang check (Stefan Assmann) [1173789]
-- [netdrv] i40e: Fix TSO with more than 8 frags per segment issue (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Update driver versions (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Add more info to interrupt vector names (Stefan Assmann) [1173789]
-- [netdrv] i40evf: allow enabling of debug prints via ethtool (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Use advertised speed settings in ethtool and refactor get_settings (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Fix output of i40e_debug_aq() for big endian machines (Stefan Assmann) [1173789]
-- [netdrv] i40evf: don't wait forever (Stefan Assmann) [1173789]
-- [netdrv] i40evf: refactor reset (Stefan Assmann) [1173789]
-- [netdrv] i40evf: disable NAPI polling sooner (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump Driver Versions (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Remove unused variable an_enable and function update_link_info (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: i40e_register.h updates (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: restrict VC opcodes to their initial values (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Refactor the receive routines (Stefan Assmann) [1173789]
-- [netdrv] i40e: Fix for stats init function call in Rx setup (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Add call to u64_stats_init to init (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Force Tx writeback on ITR (Stefan Assmann) [1173789]
-- [netdrv] i40evf: stop the watchdog for shutdown (Stefan Assmann) [1173789]
-- [netdrv] i40evf: ignore bogus messages from FW (Stefan Assmann) [1173789]
-- [netdrv] i40evf: reset on module unload (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump i40e and i40evf versions (Stefan Assmann) [1173789]
-- [netdrv] i40e: Support for NPAR iSCSI partition with DCB (Stefan Assmann) [1173789]
-- [netdrv] i40e: AQ API updates for new commands (Stefan Assmann) [1173789]
-- [netdrv] i40e: AQ API updates (Stefan Assmann) [1173789]
-- [netdrv] i40e: add more struct size checks (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf versions (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Increase ASQ timeout (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: AdminQ updates ww36 (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: find partition_id in npar mode (Stefan Assmann) [1173789]
-- [netdrv] i40evf: kick a stalled admin queue (Stefan Assmann) [1173789]
-- [netdrv] i40evf: enable interrupt 0 appropriately (Stefan Assmann) [1173789]
-- [netdrv] i40evf: don't fire traffic IRQs when the interface is down (Stefan Assmann) [1173789]
-- [netdrv] i40evf: remove leftover VLAN filters (Stefan Assmann) [1173789]
-- [netdrv] i40evf: refactor shutdown code (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Remove some scary log messages (Stefan Assmann) [1173789]
-- [netdrv] i40evf: remove redundant code (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Convert macro to static inline (Stefan Assmann) [1173789]
-- [netdrv] i40e: check for AQ timeout in aq_rc decode (Stefan Assmann) [1173789]
-- [netdrv] i40e: set max limit for access polling (Stefan Assmann) [1173789]
-- [netdrv] i40e: remove unused nvm_semaphore_wait (Stefan Assmann) [1173789]
-- [netdrv] i40e: add range check to i40e_aq_rc_to_posix (Stefan Assmann) [1173789]
-- [netdrv] i40e: let firmware catch the NVM busy error (Stefan Assmann) [1173789]
-- [netdrv] i40e: Bump i40e version to 1.2.2 and i40evf version to 1.0.6 (Stefan Assmann) [1173789]
-- [netdrv] i40evf: make early init sequence even more robust (Stefan Assmann) [1173789]
-- [netdrv] i40e: Define and use i40e_is_vf macro (Stefan Assmann) [1173789]
-- [netdrv] i40e: Add a virtual channel op to config RSS (Stefan Assmann) [1173789]
-- [netdrv] i40e: remove useless debug noise (Stefan Assmann) [1173789]
-- [netdrv] i40evf: remove unnecessary else (Stefan Assmann) [1173789]
-- [netdrv] i40evf: make comparisons consistent (Stefan Assmann) [1173789]
-- [netdrv] i40evf: make checkpatch happy (Stefan Assmann) [1173789]
-- [netdrv] i40evf: update header comments (Stefan Assmann) [1173789]
-- [netdrv] i40e: don't overload fields (Stefan Assmann) [1173789]
-- [netdrv] i40e: use netdev_rss_key_fill() helper (Stefan Assmann) [1173789]
-- [netdrv] i40evf: don't use more queues than CPUs (Stefan Assmann) [1173789]
-- [netdrv] i40evf: make early init processing more robust (Stefan Assmann) [1173789]
-- [netdrv] i40e: clean up throttle rate code (Stefan Assmann) [1173789]
-- [netdrv] i40e: poll firmware slower (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Add support for 10G base T parts (Stefan Assmann) [1173789]
-- [netdrv] i40evf: properly handle multiple AQ messages (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Use usleep_range() instead of udelay() (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Fix whitespace indentation (Stefan Assmann) [1173789]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf versions (Stefan Assmann) [1173789]
-- [netdrv] i40evf: Set skb->csum_level for encapsulated checksum (Stefan Assmann) [1173789]
-- [netdrv] i40e: Make sure to be in VEB mode if SRIOV is enabled at probe (Stefan Assmann) [1173788]
-- [netdrv] i40e: start up in VEPA mode by default (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Fix mixed size frags and linearization (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version to 1.3.4 (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: remove time_stamp member (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: force inline transmit functions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Move the FD ATR/SB messages to a higher debug level (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix unrecognized FCOE EOF case (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Remove unneeded TODO (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove unnecessary pf members (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Add stats to count Tunnel ATR hits (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Add ATR support for tunneled TCP/IPv4/IPv6 packets (Stefan Assmann) [1173788]
-- [netdrv] i40e: Disable offline diagnostics if VFs are enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: Collect PFC XOFF RX stats even in single TC case (Stefan Assmann) [1173788]
-- [netdrv] net: batch of last_rx update avoidance in ethernet drivers (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version to 1.3.2 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use new 40G speeds (Stefan Assmann) [1173788]
-- [netdrv] i40e: get rid of unused locals (Stefan Assmann) [1173788]
-- [netdrv] i40e: handle possible memory allocation failure (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Save WR_CSR_PROT field from DEV/FUNC capabilities (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable user dump of internal hardware state (Stefan Assmann) [1173788]
-- [netdrv] i40e: print FCoE capability reported by the device function (Stefan Assmann) [1173788]
-- [netdrv] i40e: For VF reset (VFR and VFLR) add some more delay (Stefan Assmann) [1173788]
-- [netdrv] i40e: move VF notification routines up (Stefan Assmann) [1173788]
-- [netdrv] i40e: notify VFs of link state (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add support to program FDir SB rules for VF from PF through ethtool (Stefan Assmann) [1173788]
-- [netdrv] i40e: stop VF rings (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Use dma_rmb where appropriate (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump to version 1.3.1 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Communicate VSI id in place of VSI index to the VFs (Stefan Assmann) [1173788]
-- [netdrv] i40e: stop flow director on shutdown (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix up VXLAN messages (Stefan Assmann) [1173788]
-- [netdrv] i40e: Don't register/de-register apps on NIC partitions in MFP mode (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Set Ethernet protocol correctly when Tx VLAN offloads are disabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: warn at the right time (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix invalid void return in FCoE code (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: fix bug when skb allocation fails (Stefan Assmann) [1173788]
-- [netdrv] i40e: Change some memcpys to struct assignments (Stefan Assmann) [1173788]
-- [netdrv] i40e: Print some more info to help figure out the cause of HMC error (Stefan Assmann) [1173788]
-- [netdrv] i40e: validate VSI param from VFs (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version to 1.2.43 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Increase PF reset max loop limit (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: implement KR2 support (Stefan Assmann) [1173788]
-- [netdrv] i40e: add NVM update events to AQ clean (Stefan Assmann) [1173788]
-- [netdrv] i40e: add ethtool RSS support (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf version (Stefan Assmann) [1173788]
-- [netdrv] i40e: add MAC printing to debugfs dump VSI (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix inconsistent use of PF/VF vs pf/vf (Stefan Assmann) [1173788]
-- [netdrv] i40e: tame the nvmupdate read and write complaints (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: fix accidental write to ITR registers (Stefan Assmann) [1173788]
-- [netdrv] i40e: future proof some sizeof calls (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove "hello world" strings from i40e driver (Stefan Assmann) [1173788]
-- [netdrv] i40e: Strip configfs code (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump version (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: enable prefetch of Tx descriptors during cleanup (Stefan Assmann) [1173788]
-- [netdrv] i40e: Simplify code for rss_size_max config (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Simplify tunnel selection logic (Stefan Assmann) [1173788]
-- [netdrv] i40e: FD filters flush policy changes (Stefan Assmann) [1173788]
-- [netdrv] i40e: Avoid logs while adding/deleting FD-SB filters (Stefan Assmann) [1173788]
-- [netdrv] i40e: print port stats only on partition 1 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Move code to enable/disable Loopback to the main file (Stefan Assmann) [1173788]
-- [netdrv] i40e: rework vector reservation (Stefan Assmann) [1173788]
-- [netdrv] i40e: clean up debug_read_register (Stefan Assmann) [1173788]
-- [netdrv] i40e: store msg_enable in the right size (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove unneeded conversion (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove duplicate code (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Refactor i40e_debug_aq and make some functions static (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix mismatching type for ioremap_len (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Version bump (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't spam the system log (Stefan Assmann) [1173788]
-- [netdrv] i40e: move IRQ tracking setup into MSIX setup (Stefan Assmann) [1173788]
-- [netdrv] i40e: Ioremap changes (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Clean up some formatting and other things (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add AOC PHY types to case statements (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix ethtool offline test (Stefan Assmann) [1173788]
-- [netdrv] i40e: Reassign incorrect PHY type to fix a FW bug (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix XPS mask when resetting (Stefan Assmann) [1173788]
-- [netdrv] i40e: use more portable sign extension (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: grab NVM devstarter version not image version (Stefan Assmann) [1173788]
-- [netdrv] i40e: Don't check operational or sync bit for App TLV (Stefan Assmann) [1173788]
-- [netdrv] i40e: during LED interaction ignore activity LED src modes (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix NPAR Tx Scheduler init (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix dependencies in the i40e driver on configfs (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump versions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Only enable TC0 for NIC partition type (Stefan Assmann) [1173788]
-- [netdrv] i40e: Register DCBNL ops in MFP mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix RSS size at init since default num queue calculation has changed (Stefan Assmann) [1173788]
-- [netdrv] i40e: Move RSS table size for VSIs to the VSI struct (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Add missing packet types for VXLAN encapsulated packet types (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix issue with removal of apps from DBCNL app table (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add FW check to disable DCB and wrap autoneg workaround with FW check (Stefan Assmann) [1173788]
-- [netdrv] i40e: Enable more than 64 qps for the Main VSI (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't disable PF LB when disabling VFs (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add safety net for switch calling (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: print FW build number in version string (Stefan Assmann) [1173788]
-- [netdrv] i40e: Skip the priority tagging if DCB is not enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: check pointers before use (Stefan Assmann) [1173788]
-- [netdrv] i40e: catch NVM write semaphore timeout and retry (Stefan Assmann) [1173788]
-- [netdrv] i40e: stop flow director on shutdown (Stefan Assmann) [1173788]
-- [netdrv] i40e: disconnect irqs on shutdown (Stefan Assmann) [1173788]
-- [netdrv] i40e: Issue a PF reset if Tx queue disable timeout (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix the Tx ring qset handle when DCB reconfigures (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix the case where per TC queue count was higher than queues enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix race in hang check (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix TSO with more than 8 frags per segment issue (Stefan Assmann) [1173788]
-- [netdrv] i40e: Don't check for Tx hang when PF down (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix shift precedence issue (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix memory leak at failure path in i40e_dbg_command_write() (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Update driver versions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use ethtool private flags to display NPAR status (Stefan Assmann) [1173788]
-- [netdrv] i40e: Set FLAG_RD when sending buffer FW must read (Stefan Assmann) [1173788]
-- [netdrv] i40e: print Rx packet split status (Stefan Assmann) [1173788]
-- [netdrv] i40e: setup FCoE device type (Stefan Assmann) [1173788]
-- [netdrv] i40e: Set BUF flag for Set Version AQ command (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add support for getlink, setlink ndo ops (Stefan Assmann) [1173788]
-- [netdrv] i40e: Implement configfs for NPAR BW configuration (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add NPAR BW get and set functions (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable packet split only when IOMMU present (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add method to keep track of current rxnfc settings (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Use advertised speed settings in ethtool and refactor get_settings (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Fix output of i40e_debug_aq() for big endian machines (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix i40e_ndo_set_vf_spoofchk (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump Driver Versions (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Remove unused variable an_enable and function update_link_info (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix the EMPR interrupt received handling (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: i40e_register.h updates (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use #define for the VSI connection type (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: restrict VC opcodes to their initial values (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Refactor the receive routines (Stefan Assmann) [1173788]
-- [netdrv] i40e: rename debugfs clear_stats option (Stefan Assmann) [1173788]
-- [netdrv] i40e: update Shadow RAM read/write functions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix for stats init function call in Rx setup (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Add call to u64_stats_init to init (Stefan Assmann) [1173788]
-- [netdrv] i40e: Enable Loopback for the FCOE vsi as well (Stefan Assmann) [1173788]
-- [netdrv] i40e: use dev_port for fcoe netdev (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix function header (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix led blink toggle to enable steady state (Stefan Assmann) [1173788]
-- [netdrv] i40evf: Force Tx writeback on ITR (Stefan Assmann) [1173788]
-- [netdrv] i40e: stop the service task at shutdown (Stefan Assmann) [1173788]
-- [netdrv] i40e: add locking around VF reset (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use even more ARQ descriptors (Stefan Assmann) [1173788]
-- [netdrv] i40e: delay after VF reset (Stefan Assmann) [1173788]
-- [netdrv] i40e: avoid use of uninitialized v_budget in i40e_init_msix (Stefan Assmann) [1173788]
-- [netdrv] i40e: i40e_fcoe.c: Remove unused function (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump i40e and i40evf versions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Support for NPAR iSCSI partition with DCB (Stefan Assmann) [1173788]
-- [netdrv] i40e: when Rx timestamps disabled set specific mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: use same check for Rx hang as for Rx timestamps (Stefan Assmann) [1173788]
-- [netdrv] i40e: AQ API updates for new commands (Stefan Assmann) [1173788]
-- [netdrv] i40e: AQ API updates (Stefan Assmann) [1173788]
-- [netdrv] i40e: add more struct size checks (Stefan Assmann) [1173788]
-- [netdrv] i40e: Issue "Stop LLDP" command for firmware older than v4.3 (Stefan Assmann) [1173788]
-- [netdrv] i40e: check I40E_FLAG_PTP before handling Tx or Rx timestamps (Stefan Assmann) [1173788]
-- [netdrv] i40e: only enable PTP interrupt cause if PTP is enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Bump i40e/i40evf versions (Stefan Assmann) [1173788]
-- [netdrv] i40e: Dump Stats string removed from debugfs help command (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add define for interrupt name string len (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't give up on DCB error after reset (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix proc/int descriptions (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Increase ASQ timeout (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: AdminQ updates ww36 (Stefan Assmann) [1173788]
-- [netdrv] i40e: adds FCoE configure option (Stefan Assmann) [1173788]
-- [netdrv] i40e: limit sriov to partition 1 of NPAR configurations (Stefan Assmann) [1173788]
-- [netdrv] i40e: Don't exit link event early if link speed has changed (Stefan Assmann) [1173788]
-- [netdrv] i40e: limit WoL and link settings to partition 1 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Adding function for reading PBA String (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: find partition_id in npar mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: remove VN2VN related mac filters (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add warning for NPAR partitions with link speed less than 10Gbps (Stefan Assmann) [1173788]
-- [netdrv] i40e: disable IOV before freeing resources (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix bug with TCP over IPv6 over VXLAN (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix Rx checksum error counter (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix un-necessary Tx hangs (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix possible memory leak in i40e_dbg_dump_desc (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Convert macro to static inline (Stefan Assmann) [1173788]
-- [netdrv] i40e: add to NVM update debug message (Stefan Assmann) [1173788]
-- [netdrv] i40e: check for AQ timeout in aq_rc decode (Stefan Assmann) [1173788]
-- [netdrv] i40e: poll on NVM semaphore only if not other error (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix up NVM update sm error handling (Stefan Assmann) [1173788]
-- [netdrv] i40e: set max limit for access polling (Stefan Assmann) [1173788]
-- [netdrv] i40e: remove unused nvm_semaphore_wait (Stefan Assmann) [1173788]
-- [netdrv] i40e: init NVM update state on adminq init (Stefan Assmann) [1173788]
-- [netdrv] i40e: add range check to i40e_aq_rc_to_posix (Stefan Assmann) [1173788]
-- [netdrv] i40e: rework debug messages for NVM update (Stefan Assmann) [1173788]
-- [netdrv] i40e: let firmware catch the NVM busy error (Stefan Assmann) [1173788]
-- [netdrv] i40e: better error messages for NVM update issues (Stefan Assmann) [1173788]
-- [netdrv] i40e: clear NVM update state on ethtool test (Stefan Assmann) [1173788]
-- [netdrv] ptp: i40e: convert to the 64 bit get/set time methods (Stefan Assmann) [1173788]
-- [netdrv] i40e: Use eth_skb_pad and skb_put_padto helpers (Stefan Assmann) [1173788]
-- [netdrv] i40e: Reduce stack in i40e_dbg_dump_desc (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump i40e version to 1.2.2 and i40evf version to 1.0.6 (Stefan Assmann) [1173788]
-- [netdrv] i40e: Re enable Main VSI loopback setting in the reset path (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add new update VSI flow to accommodate FW fix with VSI Loopback mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: Increase reset delay (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix netdev_stat macro definition (Stefan Assmann) [1173788]
-- [netdrv] i40e: Define and use i40e_is_vf macro (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add a virtual channel op to config RSS (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't enable PTP support on more than one PF per port (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add description to misc and fd interrupts (Stefan Assmann) [1173788]
-- [netdrv] i40e: allow various base numbers in debugfs aq commands (Stefan Assmann) [1173788]
-- [netdrv] i40e: remove useless debug noise (Stefan Assmann) [1173788]
-- [netdrv] i40e: Remove unneeded break statement (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable fdb add code, remove unused code (Stefan Assmann) [1173788]
-- [netdrv] i40e: trigger SW INT with no ITR wait (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't overload fields (Stefan Assmann) [1173788]
-- [netdrv] i40e: Set XPS bit mask to zero in DCB mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: Prevent link flow control settings when PFC is enabled (Stefan Assmann) [1173788]
-- [netdrv] i40e: Do not disable/enable FCoE VSI with DCB reconfig (Stefan Assmann) [1173788]
-- [netdrv] i40e: Modify Tx disable wait flow in case of DCB reconfiguration (Stefan Assmann) [1173788]
-- [netdrv] i40e: Update VEB's enabled_tc after reconfiguration (Stefan Assmann) [1173788]
-- [netdrv] i40e: Check for LLDP AdminStatus before querying DCBX (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add support to firmware CEE DCBX mode (Stefan Assmann) [1173788]
-- [netdrv] i40e: Resume Port Tx after DCB event (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version to 1.1.23 (Stefan Assmann) [1173788]
-- [netdrv] i40e: re-enable VFLR interrupt sooner (Stefan Assmann) [1173788]
-- [netdrv] i40e: only warn once of PTP nonsupport in 100Mbit speed (Stefan Assmann) [1173788]
-- [netdrv] i40e: use netdev_rss_key_fill() helper (Stefan Assmann) [1173788]
-- [netdrv] i40e: clean up throttle rate code (Stefan Assmann) [1173788]
-- [netdrv] i40e: don't do link_status or stats collection on every ARQ (Stefan Assmann) [1173788]
-- [netdrv] i40e: poll firmware slower (Stefan Assmann) [1173788]
-- [netdrv] i40e: properly parse MDET registers (Stefan Assmann) [1173788]
-- [netdrv] i40e: configure VM ID in qtx_ctl (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable debug earlier (Stefan Assmann) [1173788]
-- [netdrv] i40e: better wording for resource tracking errors (Stefan Assmann) [1173788]
-- [netdrv] i40e: scale msix vector use when more cores than vectors (Stefan Assmann) [1173788]
-- [netdrv] i40e: remove debugfs dump stats (Stefan Assmann) [1173788]
-- [netdrv] i40e: avoid disable of interrupt when changing ITR (Stefan Assmann) [1173788]
-- [netdrv] i40e: fix link checking logic (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add condition to enter fdir flush and reinit (Stefan Assmann) [1173788]
-- [netdrv] i40e: _MASK vs _SHIFT typo in i40e_handle_mdd_event() (Stefan Assmann) [1173788]
-- [netdrv] i40e: Bump version (Stefan Assmann) [1173788]
-- [netdrv] i40e: Moving variable declaration out of the loops (Stefan Assmann) [1173788]
-- [netdrv] i40e: Add 10GBaseT support (Stefan Assmann) [1173788]
-- [netdrv] i40e: process link events when setting up switch (Stefan Assmann) [1173788]
-- [netdrv] i40e: Fix a bug where Rx would stop after some time (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Use usleep_range() instead of udelay() (Stefan Assmann) [1173788]
-- [netdrv] i40e/i40evf: Fix whitespace indentation (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable LSE poke and simplify link state (Stefan Assmann) [1173788]
-- [netdrv] i40e: mask phy events (Stefan Assmann) [1173788]
-- [netdrv] i40e: skb->xmit_more support (Stefan Assmann) [1173788]
-- [netdrv] i40e/igb: Convert to dev_consume_skb_any() (Stefan Assmann) [1173788]
-- [netdrv] i40e: use global pci_vfs_assigned() to replace local i40e_vfs_are_assigned() (Stefan Assmann) [1173788]
-- [netdrv] i40e: Set skb->csum_level for encapsulated checksum (Stefan Assmann) [1173788]
-- [netdrv] i40e: enable CONFIG_I40E_VXLAN (Stefan Assmann) [1173788]
-
-* Thu Jun 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-272.el7]
-- [netdrv] enic: fix memory leak in rq_clean (Stefan Assmann) [1159148]
-- [netdrv] enic: check return value for stat dump (Stefan Assmann) [1159148]
-- [netdrv] enic: unlock napi busy poll before unmasking intr (Stefan Assmann) [1159148]
-- [netdrv] enic: Grammar s/an negative/a negative/ (Stefan Assmann) [1159148]
-- [netdrv] ethernet: Use eth_<foo>_addr instead of memset (Stefan Assmann) [1159148]
-- [netdrv] enic: do notify_check before returning credits (Stefan Assmann) [1159148]
-- [netdrv] enic: enic_main: fix sparse warnings (Stefan Assmann) [1159148]
-- [netdrv] enic: enic_ethtool: fix sparse warning (Stefan Assmann) [1159148]
-- [netdrv] enic: fix rx napi poll return value (Stefan Assmann) [1159148]
-- [netdrv] enic: reconfigure resources for kdump crash kernel (Stefan Assmann) [1159148]
-- [netdrv] enic: free all rq buffs when allocation fails (Stefan Assmann) [1159148]
-- [netdrv] net: ethernet: cisco: enic: enic_dev: Remove some unused functions (Stefan Assmann) [1159148]
-- [netdrv] enic: add stats for dma mapping error (Stefan Assmann) [1159148]
-- [netdrv] enic: check dma_mapping_error (Stefan Assmann) [1159148]
-- [netdrv] enic: make vnic_wq_buf doubly linked (Stefan Assmann) [1159148]
-- [netdrv] igbvf: use netif_carrier_off earlier when bringing if down (Stefan Assmann) [1173785]
-- [netdrv] igbvf: cleanup msleep() and min/max() usage (Stefan Assmann) [1173785]
-- [netdrv] igbvf: Fix code comments and whitespace (Stefan Assmann) [1173785]
-- [netdrv] igbvf: Fix checksum error when using stacked vlan (Stefan Assmann) [1173785]
-- [netdrv] igb: Don't use NETDEV_FRAG_PAGE_MAX_SIZE in descriptor calculation (Stefan Assmann) [1173784]
-- [netdrv] igb: Fix NULL assignment to incorrect variable in igb_reset_q_vector (Stefan Assmann) [1173784]
-- [netdrv] igb: Fix oops on changing number of rings (Stefan Assmann) [1173784]
-- [netdrv] igb: simplify and clean up igb_enable_mas() (Stefan Assmann) [1173784]
-- [netdrv] ptp: igb: use helpers for converting ns to timespec (Stefan Assmann) [1173784]
-- [netdrv] ptp: igb: convert to the 64 bit get/set time methods (Stefan Assmann) [1173784]
-- [netdrv] igb: Enable TSO for stacked vlan (Stefan Assmann) [1173784]
-- [netdrv] igb: use netif_carrier_off earlier when bringing if down (Stefan Assmann) [1173784]
-- [netdrv] ethernet: codespell comment spelling fixes (Stefan Assmann) [1173784]
-- [netdrv] igb: Make arrays on stack static const to avoid reallocation (Stefan Assmann) [1173784]
-- [netdrv] igb: Fix warning pin may be used uninitialized (Stefan Assmann) [1173784]
-- [netdrv] igb: Indicate failure on vf reset for empty mac address (Stefan Assmann) [1173784]
-- [netdrv] igb: enable auxiliary PHC functions for the i210 (Stefan Assmann) [1173784]
-- [netdrv] ptp: introduce programmable pins (Stefan Assmann) [1173784]
-- [netdrv] igb: enable internal PPS for the i210 (Stefan Assmann) [1173784]
-- [netdrv] igb: serialize access to the time sync interrupt registers (Stefan Assmann) [1173784]
-- [netdrv] igb: refactor time sync interrupt handling (Stefan Assmann) [1173784]
-- [netdrv] igb: Clean-up page reuse code (Stefan Assmann) [1173784]
-- [netdrv] igb: convert to CYCLECOUNTER_MASK macro (Stefan Assmann) [1173784]
-- [netdrv] igb_ptp: Include clocksource.h to get CLOCKSOURCE_MASK (Stefan Assmann) [1173784]
-- [netdrv] igb: Remove unneeded FIXME (Stefan Assmann) [1173784]
-- [netdrv] net: igb: convert to timecounter adjtime (Stefan Assmann) [1173784]
-- [netdrv] fm10k/igb/ixgbe: Use dma_rmb on Rx descriptor reads (Stefan Assmann) [1173784]
-- [netdrv] ethernet/intel: Use napi_alloc_skb (Stefan Assmann) [1173784]
-- [netdrv] ethernet/intel: Use eth_skb_pad and skb_put_padto helpers (Stefan Assmann) [1173784]
-- [netdrv] e1000e / igb / pm: Eliminate CONFIG_PM_RUNTIME (Stefan Assmann) [1173784]
-- [netdrv] igb: Fixes needed for surprise removal support (Stefan Assmann) [1173784]
-- [netdrv] igb: use netdev_rss_key_fill() helper (Stefan Assmann) [1173784]
-- [netdrv] fm10k/igb/ixgbe: Replace __skb_alloc_page with dev_alloc_page (Stefan Assmann) [1173784]
-- [netdrv] igb: don't reuse pages with pfmemalloc flag (Stefan Assmann) [1173784]
-- [netdrv] igb: fix race accessing page->_count (Stefan Assmann) [1173784]
-- [netdrv] igb: bump version to 5.2.15 (Stefan Assmann) [1173784]
-- [netdrv] i40e/igb: Convert to dev_consume_skb_any() (Stefan Assmann) [1173784]
-- [netdrv] igb: remove blocking phy read from inside spinlock (Stefan Assmann) [1173784]
-- [netdrv] igb: add flags to set eee advertisement mode (Stefan Assmann) [1173784]
-- [netdrv] igb: use new eth_get_headlen interface (Stefan Assmann) [1173784]
-- [netdrv] igb: Convert to use devm_hwmon_device_register_with_groups (Stefan Assmann) [1173784]
-- [netdrv] ptp: tg3: use helpers for converting ns to timespec (Ivan Vecera) [1182731]
-- [netdrv] ptp: tg3: convert to the 64 bit get/set time methods (Ivan Vecera) [1182731]
-- [netdrv] tg3: Hold tp->lock before calling tg3_halt() from tg3_init_one() (Ivan Vecera) [1182731]
-- [netdrv] tg3: Release tp->lock before invoking synchronize_irq() (Ivan Vecera) [1182731]
-- [netdrv] tg3: tg3_reset_task() needs to use rtnl_lock to synchronize (Ivan Vecera) [1182731]
-- [netdrv] tg3: tg3_timer() should grab tp->lock before checking for tp->irq_sync (Ivan Vecera) [1182731]
-- [netdrv] tg3: tg3_disable_ints using uninitialized mailbox value to disable interrupts (Ivan Vecera) [1182731]
-- [netdrv] tg3: fix ring init when there are more TX than RX channels (Ivan Vecera) [1182731]
-- [netdrv] tg3: use netdev_rss_key_fill() helper (Ivan Vecera) [1182731]
-- [netdrv] tg3: Add skb->xmit_more support (Ivan Vecera) [1182731]
-- [netdrv] tg3: Allow for recieve of full-size 8021AD frames (Ivan Vecera) [1182731]
-- [netdrv] tg3: Work around HW/FW limitations with vlan encapsulated frames (Ivan Vecera) [1182731]
-- [netdrv] tg3: Convert to use hwmon_device_register_with_groups (Ivan Vecera) [1182731]
-- [netdrv] bnx2-cnic: Driver Version Update (Ivan Vecera) [1182732]
-- [netdrv] bnx2: Fix for Chip Initialization (Ivan Vecera) [1182732]
-- [netdrv] bnx2-cnic: Driver Rebranding Changes (Ivan Vecera) [1182732]
-- [netdrv] bnx2: Correctly receive full sized 802.1ad frames (Ivan Vecera) [1182732]
-- [netdrv] be2net: enable config options (Ivan Vecera) [1182733]
-- [netdrv] be2net: Replace dma/pci_alloc_coherent() calls with dma_zalloc_coherent() (Ivan Vecera) [1182733]
-- [netdrv] be2net: make hwmon interface optional (Ivan Vecera) [1182733]
-- [netdrv] be2net: Support for OS2BMC (Ivan Vecera) [1182733]
-- [netdrv] be2net: Report a "link down" to the stack when a fatal error or fw reset happens (Ivan Vecera) [1182733]
-- [netdrv] be2net: Export board temperature using hwmon-sysfs interface (Ivan Vecera) [1182733]
-- [netdrv] be2net: update the driver version to 10.6.0.2 (Ivan Vecera) [1182733]
-- [netdrv] be2net: update copyright year to 2015 (Ivan Vecera) [1182733]
-- [netdrv] be2net: use be_virtfn() instead of !be_physfn() (Ivan Vecera) [1182733]
-- [netdrv] be2net: simplify UFI compatibility checking (Ivan Vecera) [1182733]
-- [netdrv] be2net: post full RXQ on interface enable (Ivan Vecera) [1182733]
-- [netdrv] be2net: check for INSUFFICIENT_VLANS error (Ivan Vecera) [1182733]
-- [netdrv] be2net: receive pkts with L3, L4 errors on VFs (Ivan Vecera) [1182733]
-- [netdrv] be2net: set interrupt moderation for Skyhawk-R using EQ-DB (Ivan Vecera) [1182733]
-- [netdrv] be2net: add support for spoofchk setting (Ivan Vecera) [1182733]
-- [netdrv] be2net: log link status (Ivan Vecera) [1182733]
-- [netdrv] be2net: Fix a bug in Rx buffer posting (Ivan Vecera) [1182733]
-- [netdrv] be2net: bump up the driver version to 10.6.0.1 (Ivan Vecera) [1182733]
-- [netdrv] be2net: setup xps queue mapping (Ivan Vecera) [1182733]
-- [netdrv] be2net: restrict MODIFY_EQ_DELAY cmd to a max of 8 EQs (Ivan Vecera) [1182733]
-- [netdrv] be2net: Prevent VFs from enabling VLAN promiscuous mode (Ivan Vecera) [1182733]
-- [netdrv] be2net: codespell comment spelling fixes (Ivan Vecera) [1182733]
-- [netdrv] be2net: implement .sriov_configure() PCI callback (Ivan Vecera) [1182733]
-- [netdrv] be2net: re-distribute SRIOV resources allowed by FW (Ivan Vecera) [1182733]
-- [netdrv] be2net: avoid creating the non-RSS default RXQ if FW allows to (Ivan Vecera) [1182733]
-- [netdrv] be2net: Use eth_<foo>_addr instead of memset (Ivan Vecera) [1182733]
-- [netdrv] be2net: move be_func_init() call inside be_setup() (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor adapter resource cleanup sequence into be_cleanup() (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor adapter resource initialzation sequence into be_resume() (Ivan Vecera) [1182733]
-- [netdrv] be2net: remove code duplication relating to Lancer reset sequence (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor error detect/recovery function (Ivan Vecera) [1182733]
-- [netdrv] be2net: use a wrapper to schedule and cancel error detection task (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor function initalization sequence into be_func_init() (Ivan Vecera) [1182733]
-- [netdrv] be2net: get rid of be_get_initial_config() call from be_probe() (Ivan Vecera) [1182733]
-- [netdrv] be2net: move adapter fields alloc/free code to new routines (Ivan Vecera) [1182733]
-- [netdrv] be2net: Add a few inline functions to test TXQ conditions (Ivan Vecera) [1182733]
-- [netdrv] be2net: Minor code cleanup in tx completion process (Ivan Vecera) [1182733]
-- [netdrv] be2net: Refactor be_xmit_enqueue() routine (Ivan Vecera) [1182733]
-- [netdrv] be2net: Refactor wrb_fill_hdr() routine (Ivan Vecera) [1182733]
-- [netdrv] be2net: avoid unncessary swapping of fields in eth_tx_wrb (Ivan Vecera) [1182733]
-- [netdrv] be2net: process port misconfig async event (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor be_set_rx_mode() and be_vid_config() for readability (Ivan Vecera) [1182733]
-- [netdrv] be2net: remove duplicate code in be_cmd_rx_filter() (Ivan Vecera) [1182733]
-- [netdrv] be2net: use offset based FW flashing for Skyhawk chip (Ivan Vecera) [1182733]
-- [netdrv] be2net: avoid flashing SH-B0 UFI image on SH-P2 chip (Ivan Vecera) [1182733]
-- [netdrv] be2net: refactor code that checks flash file compatibility (Ivan Vecera) [1182733]
-- [netdrv] be2net: replace (1 << x) with BIT(x) (Ivan Vecera) [1182733]
-- [netdrv] be2net: move un-exported routines from be.h to respective src files (Ivan Vecera) [1182733]
-- [netdrv] be2net: fix sparse warning (Ivan Vecera) [1182733]
-- [netdrv] be2net: move definitions related to FW cmdsfrom be_hw.h to be_cmds.h (Ivan Vecera) [1182733]
-- [netdrv] be2net: issue function reset cmd in resume path (Ivan Vecera) [1182733]
-- [netdrv] be2net: add a log message for POST timeout in Lancer (Ivan Vecera) [1182733]
-- [netdrv] be2net: fix failure case in setting flow control (Ivan Vecera) [1182733]
-- [netdrv] be2net: move interface create code to a separate routine (Ivan Vecera) [1182733]
-- [netdrv] be2net: Allow GRE to work concurrently while a VxLAN tunnel is configured (Ivan Vecera) [1182733]
-- [netdrv] be2net: support TX batching using skb->xmit_more flag (Ivan Vecera) [1182733]
-- [netdrv] be2net: Fix incorrect setting of tunnel offload flag in netdev features (Ivan Vecera) [1182733]
-- [netdrv] be2net: Export tunnel offloads only when a VxLAN tunnel is created (Ivan Vecera) [1182733]
-- [netdrv] emulex: Use skb_put_padto instead of skb_padto() and skb->len assignment (Ivan Vecera) [1182733]
-- [netdrv] be2net: Check for presence of IFLA_AF_SPEC (Ivan Vecera) [1182733]
-- [netdrv] be2net: Validate IFLA_BRIDGE_MODE attribute length (Ivan Vecera) [1182733]
-- [netdrv] be2net: use netdev_rss_key_fill() helper (Ivan Vecera) [1182733]
-- [netdrv] be2net: Use dev_consume_skb_any() in the non-drop path (Ivan Vecera) [1182733]
-- [netdrv] r8169: Do not use dev_kfree_skb in xmit path (Ivan Vecera) [1232244]
-- [netdrv] r8169: Fix trivial typo in rtl_check_firmware (Ivan Vecera) [1232244]
-- [netdrv] r8169: Revert BQL and xmit_more support (Ivan Vecera) [1232244]
-- [netdrv] r8169: use PCI define for Max_Read_Request_Size (Ivan Vecera) [1232244]
-- [netdrv] pci: Add defines for PCIe Max_Read_Request_Size (Ivan Vecera) [1232244]
-- [netdrv] r8169: add support for xmit_more (Ivan Vecera) [1232244]
-- [netdrv] r8169: update rtl8168g pcie ephy parameter (Ivan Vecera) [1232244]
-- [netdrv] r8169: Use dma_rmb() and dma_wmb() for DescOwn checks (Ivan Vecera) [1232244]
-- [netdrv] r8169: use napi_alloc_skb instead of netdev_alloc_skb_ip_align (Ivan Vecera) [1232244]
-- [netdrv] r8169: Use eth_skb_pad function (Ivan Vecera) [1232244]
-- [netdrv] r8169: disable rtl8168ep cmac engine (Ivan Vecera) [1232244]
-- [netdrv] r8169: prevent enable hardware tx/rx too early (Ivan Vecera) [1232244]
-- [netdrv] bna: use netdev_* and dev_* instead of printk and pr_* (Ivan Vecera) [1187298]
-- [netdrv] bna: fix timeout API argument type (Ivan Vecera) [1187298]
-- [netdrv] bna: use list_for_each_entry where appropriate (Ivan Vecera) [1187298]
-- [netdrv] bna: get rid of private macros for manipulation with lists (Ivan Vecera) [1187298]
-- [netdrv] bna: remove useless pointer assignment (Ivan Vecera) [1187298]
-- [netdrv] bna: use memdup_user to copy userspace buffers (Ivan Vecera) [1187298]
-- [netdrv] bna: correct comparisons/assignments to bool (Ivan Vecera) [1187298]
-- [netdrv] bna: remove TX_E_PRIO_CHANGE event and BNA_TX_F_PRIO_CHANGED flag (Ivan Vecera) [1187298]
-- [netdrv] bna: remove paused from bna_rx_config and flags from bna_rxf (Ivan Vecera) [1187298]
-- [netdrv] bna: remove RXF_E_PAUSE and RXF_E_RESUME events (Ivan Vecera) [1187298]
-- [netdrv] bna: remove prio_change_cbfn oper_state_cbfn from struct bna_tx (Ivan Vecera) [1187298]
-- [netdrv] bna: remove oper_state_cbfn from struct bna_rxf (Ivan Vecera) [1187298]
-- [netdrv] bna: remove pause_cbfn from struct bna_enet (Ivan Vecera) [1187298]
-- [netdrv] bna: remove unused cbfn parameter (Ivan Vecera) [1187298]
-- [netdrv] bna: use BIT(x) instead of (1 << x) (Ivan Vecera) [1187298]
-- [netdrv] bna: get rid of duplicate and unused macros (Ivan Vecera) [1187298]
-- [netdrv] bna: replace pragma(pack) with attribute __packed (Ivan Vecera) [1187298]
-- [netdrv] bna: get rid of mac_t (Ivan Vecera) [1187298]
-- [netdrv] bna: use ether_addr_copy instead of memcpy (Ivan Vecera) [1187298]
-- [netdrv] bna: remove obsolete use of EXTRA_CFLAGS (Ivan Vecera) [1187298]
-- [netdrv] bna: fix soft lock-up during firmware initialization failure (Ivan Vecera) [1187298]
-- [netdrv] bna: remove unreasonable iocpf timer start (Ivan Vecera) [1187298]
-- [netdrv] bna: fix firmware loading on big-endian machines (Ivan Vecera) [1187298]
-- [netdrv] bna: codespell comment spelling fixes (Ivan Vecera) [1187298]
-- [netdrv] bna: Update the Driver and Firmware Version (Ivan Vecera) [1187298]
-- [netdrv] bna: QLogic BR-series Adapters Driver Rebranding (Ivan Vecera) [1187298]
-- [netdrv] bna: incorrect use of init_completion fixup (Ivan Vecera) [1187298]
-- [netdrv] bna: use netdev_rss_key_fill() helper (Ivan Vecera) [1187298]
-
-* Thu Jun 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-271.el7]
-- [net] inet_diag: use READ_ONCE (Phil Sutter) [1230886]
-- [net] nfnetlink_log: unset nf_loggers for netns when unloading module (Hannes Frederic Sowa) [1231135]
-- [net] sctp: allow authenticating DATA chunks that are bundled with COOKIE_ECHO (Marcelo Leitner) [1161510]
-- [net] netfilter: conntrack: warn the user if there is a better helper to use (Marcelo Leitner) [1208239]
-- [net] tcp: dctcp_update_alpha() fixes (Phil Sutter) [1230878]
-- [net] sched: use pinned timers (Phil Sutter) [1230135]
-- [net] add skb_clone_sk() and sock_efree() (Ivan Vecera) [1200759]
-- [lib] cpumask: cpumask_set_cpu_local_first => cpumask_local_spread, lament (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: Fix tx ring affinity_mask creation (Ivan Vecera) [1200759]
-- [netdrv] be2net: assign CPU affinity hints to be2net IRQs (Ivan Vecera) [1200759]
-- [kernel] ktime: Introduce ktime_ms_delta (Ivan Vecera) [1200759]
-- [net] sctp: migrate cookie life from timeval to ktime (Ivan Vecera) [1200759]
-- [kernel] timecounter: provide a macro to initialize the cyclecounter mask field (Ivan Vecera) [1200759]
-- [kernel] timecounter: keep track of accumulated fractional nanoseconds (Ivan Vecera) [1200759]
-- [kernel] timecounter: provide a helper function to shift the time (Ivan Vecera) [1200759]
-- [kernel] time: move the timecounter/cyclecounter code into its own file (Ivan Vecera) [1200759]
-- [net] Introduce passthru_features_check (Ivan Vecera) [1200759]
-- [net] vlan: Move check for multiple vlans to drivers (Ivan Vecera) [1200759]
-- [net] vlan: Introduce helper functions to check if skb is tagged (Ivan Vecera) [1200759]
-- [net] vlan: rename vlan_tx_* helpers since "tx" is misleading there (Ivan Vecera) [1200759]
-- [net] vlan: make __vlan_hwaccel_put_tag return void (Ivan Vecera) [1200759]
-- [net] vlan: Add features for stacked vlan device (Ivan Vecera) [1200759]
-- [net] Add device Rx page allocation function (Ivan Vecera) [1200759]
-- [net] fix comment typo for __skb_alloc_pages() (Ivan Vecera) [1200759]
-- [net] flow: Add function for parsing the header length out of linear ethernet frames (Ivan Vecera) [1200759]
-- [net] flow: make skb an optional parameter for__skb_flow_dissect() (Ivan Vecera) [1200759]
-- [net] flow: Allow raw buffers to be passed into the flow dissector (Ivan Vecera) [1200759]
-- [net] ethtool: Support for configurable RSS hash function (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: fix mlx4_en_set_rxfh() (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: use netdev_rss_key_fill() helper (Ivan Vecera) [1200759]
-- [netdrv] Replace ethtool_ops::{get, set}_rxfh_indir() with {get, set}_rxfh() (Ivan Vecera) [1200759]
-- [net] Add functions for handling padding frame and adding to length (Ivan Vecera) [1200759]
-- [net] introduce napi_schedule_irqoff() (Ivan Vecera) [1200759]
-- [net] Replace get_cpu_var through this_cpu_ptr (Ivan Vecera) [1200759]
-- [net] introduce dev_consume_skb_any() (Ivan Vecera) [1200759]
-- [net] provide a per host RSS key generic infrastructure (Ivan Vecera) [1200759]
-- [net] avoid dependency of net_get_random_once on nop patching (Ivan Vecera) [1200759]
-- [net] make net_get_random_once irq safe (Ivan Vecera) [1200759]
-- [net] fix build warnings because of net_get_random_once merge (Ivan Vecera) [1200759]
-- [net] introduce new macro net_get_random_once (Ivan Vecera) [1200759]
-- [net] net.h, skbuff.h: Remove extern from function prototypes (Ivan Vecera) [1200759]
-- [net] Remove extern from function prototypes (Ivan Vecera) [1200759]
-- [net] remove unused 'dev' argument from netif_needs_gso() (Ivan Vecera) [1200759]
-- [net] Generalize ndo_gso_check to ndo_features_check (Ivan Vecera) [1200759]
-- [net] vlan: Fix stacked vlan offload features computation (Ivan Vecera) [1200759]
-- [net] fix checksum features handling in netif_skb_features() (Ivan Vecera) [1200759]
-- [net] vlan: more careful checksum features handling (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: Add VXLAN ndo calls to the PF net device ops too (Ivan Vecera) [1200759]
-- [netdrv] bnx2x: Implement ndo_gso_check() (Ivan Vecera) [1200759]
-- [netdrv] qlcnic: Implement ndo_gso_check() (Ivan Vecera) [1200759]
-- [netdrv] be2net: Implement ndo_gso_check() (Ivan Vecera) [1200759]
-- [netdrv] mlx4_en: Implement ndo_gso_check() (Ivan Vecera) [1200759]
-- [net] Add ndo_gso_check (Ivan Vecera) [1200759]
-- [net] ipv6: reject locally assigned nexthop addresses (Phil Sutter) [1228700]
-- [net] ipv6: allow explicitly choosing optimistic addresses (Phil Sutter) [1228700]
-- [net] openvswitch: disable LRO (Jiri Benc) [1181282]
-- [net] unix, caif: sk_socket can disappear when state is unlocked (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: implement splice for stream af_unix sockets (Hannes Frederic Sowa) [1226230]
-- [net] make skb_splice_bits more configureable (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: implement stream sendpage support (Hannes Frederic Sowa) [1226230]
-- [net] skbuff: add skb_append_pagefrags and use it (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: remove 0 assignment on static (Hannes Frederic Sowa) [1226230]
-- [net] unix: Align send data_len up to PAGE_SIZE (Hannes Frederic Sowa) [1226230]
-- [net] unix: non blocking recvmsg() should not return -EINTR (Hannes Frederic Sowa) [1226230]
-- [net] unix: allow bind to fail on mutex lock (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: fix bug on large send() (Hannes Frederic Sowa) [1226230]
-- [net] attempt high order allocations in sock_alloc_send_pskb() (Hannes Frederic Sowa) [1226230]
-- [net] af_unix: improve STREAM behavior with fragmented memory (Hannes Frederic Sowa) [1226230]
-
-* Thu Jun 18 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-270.el7]
-- [md] fix race when unfreezing sync_action (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: break stripe-batches when the array has failed (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: call break_stripe_batch_list from handle_stripe_clean_event (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: be more selective about distributing flags across batch (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: add handle_flags arg to break_stripe_batch_list (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: duplicate some more handle_stripe_clean_event code in break_stripe_batch_list (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: remove condition test from check_break_stripe_batch_list (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: Ensure a batch member is not handled prematurely (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: close race between STRIPE_BIT_DELAY and batching (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: ensure whole batch is delayed for all required bitmap updates (Jes Sorensen) [1150149 1173510 1194720]
-- [md] bitmap: remove rcu annotation from pointer arithmetic (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix broken async operation chain (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix handling of degraded stripes in batches (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix allocation of 'scribble' array (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: don't record new size if resize_stripes fails (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: avoid reading parity blocks for full-stripe write to degraded array (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: more incorrect BUG_ON in handle_stripe_fill (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: new alloc_stripe() to allocate an initialize a stripe (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid0: conditional mddev->queue access to suit dm-raid (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: don't do chunk aligned read on degraded array (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: change ->inactive_blocked to a bit-flag (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: move max_nr_stripes management into grow_one_stripe and drop_one_stripe (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: pass gfp_t arg to grow_one_stripe() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: introduce configuration option rmw_level (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: activate raid6 rmw feature (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid6 algorithms: delta syndrome functions (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: handle expansion/resync case with stripe batching (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: handle io error of batch list (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: batch adjacent full stripe write (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: track overwrite disk count (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: add a new flag to track if a stripe can be batched (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: use flex_array for scribble data (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid0: access mddev->queue (request queue member) conditionally because it is not set when accessed from dm-raid (Jes Sorensen) [1150149 1173510 1194720]
-- [md] allow resync to go faster when there is competing IO (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove 'go_faster' option from ->sync_request() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] don't require sync_min to be a multiple of chunk_size (Jes Sorensen) [1150149 1173510 1194720]
-- [md] re-add a failed disk (Jes Sorensen) [1150149 1173510 1194720]
-- [md] Export and rename find_rdev_nr_rcu (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: check faulty flag for array status during recovery (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: fix read balance when a drive is write-mostly (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: Fix livelock when array is both resyncing and degraded (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid10: round up to bdev_logical_block_size in narrow_write_error (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: round up to bdev_logical_block_size in narrow_write_error (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid10: fix conversion from RAID0 to RAID10 (Jes Sorensen) [1150149 1173510 1194720]
-- [md] wakeup thread upon rdev_dec_pending() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] make reconfig_mutex optional for writes to md sysfs files (Jes Sorensen) [1150149 1173510 1194720]
-- [md] move mddev_lock and related to md.h (Jes Sorensen) [1150149 1173510 1194720]
-- [md] use mddev->lock to protect updates to resync_{min, max} (Jes Sorensen) [1150149 1173510 1194720]
-- [md] minor cleanup in safe_delay_store (Jes Sorensen) [1150149 1173510 1194720]
-- [md] move GET_BITMAP_FILE ioctl out from mddev_lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] tidy up set_bitmap_file (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove unnecessary 'buf' from get_bitmap_file (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove mddev_lock from rdev_attr_show() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove mddev_lock() from md_attr_show() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: use ->lock to protect accessing raid5 sysfs attributes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove need for mddev_lock() in md_seq_show() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] bitmap: protect clearing of ->bitmap by mddev->lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] protect ->pers changes with mddev->lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] level_store: group all important changes into one place (Jes Sorensen) [1150149 1173510 1194720]
-- [md] rename ->stop to ->free (Jes Sorensen) [1150149 1173510 1194720]
-- [md] split detach operation out from ->stop (Jes Sorensen) [1150149 1173510 1194720]
-- [md] linear: remove rcu protections in favour of suspend/resume (Jes Sorensen) [1150149 1173510 1194720]
-- [md] make merge_bvec_fn more robust in face of personality changes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] make ->congested robust against personality changes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] rename mddev->write_lock to mddev->lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: need_this_block: tidy/fix last condition (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: need_this_block: start simplifying the last two conditions (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: separate out the easy conditions in need_this_block (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: separate large if clause out of fetch_block() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] do_release_stripe(): No need to call md_wakeup_thread() twice (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix another livelock caused by non-aligned writes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] Check MD_RECOVERY_RUNNING as well as ->sync_thread (Jes Sorensen) [1150149 1173510 1194720]
-- [md] fix semicolon.cocci warnings (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fetch_block must fetch all the blocks handle_stripe_dirtying wants (Jes Sorensen) [1150149 1173510 1194720]
-- [md] Always set RECOVERY_NEEDED when clearing RECOVERY_FROZEN (Jes Sorensen) [1150149 1173510 1194720]
-- [md] move EXPORT_SYMBOL to after function in md.c (Jes Sorensen) [1150149 1173510 1194720]
-- [md] discard PRINT_RAID_DEBUG ioctl (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove MD_BUG() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] clean up 'exit' labels in md_ioctl() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove unnecessary test for MD_MAJOR in md_ioctl() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] don't allow "-sync" to be set for device in an active array (Jes Sorensen) [1150149 1173510 1194720]
-- [md] remove unwanted white space from md.c (Jes Sorensen) [1150149 1173510 1194720]
-- [md] don't start resync thread directly from md thread (Jes Sorensen) [1150149 1173510 1194720]
-- [md] Just use RCU when checking for overlap between arrays (Jes Sorensen) [1150149 1173510 1194720]
-- [md] avoid potential long delay under pers_lock (Jes Sorensen) [1150149 1173510 1194720]
-- [md] simplify export_array() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] discard find_rdev_nr in favour of find_rdev_nr_rcu (Jes Sorensen) [1150149 1173510 1194720]
-- [md] use wait_event() to simplify md_super_wait() (Jes Sorensen) [1150149 1173510 1194720]
-- [md] be more relaxed about stopping an array which isn't started (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: process_checks doesn't use its return value (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: fix init_stripe() inconsistencies (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid10: another memory leak due to reshape (Jes Sorensen) [1150149 1173510 1194720]
-- [md] use set_bit/clear_bit instead of shift/mask for bi_flags changes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: minor typos and reformatting (Jes Sorensen) [1150149 1173510 1194720]
-- [md] bitmap: always wait for writes on unplug (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid5: avoid livelock caused by non-aligned writes (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid56: Don't perform reads to support writes until stripe is ready (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: fix request counting bug in new 'barrier' code (Jes Sorensen) [1150149 1173510 1194720]
-- [md] raid1: Rewrite the implementation of iobarrier (Jes Sorensen) [1150149 1173510 1194720]
-- [fs] ext4: atomically set inode->i_flags in ext4_set_inode_flags() (Jes Sorensen) [1150149 1173510 1194720]
-
-* Wed Jun 17 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-269.el7]
-- [virtio] drop virtio-device_is_legacy_only (Jason Wang) [1227339]
-- [virtio] virtio-pci: support non-legacy balloon devices (Jason Wang) [1227339]
-- [virtio] virtio-mmio: support non-legacy balloon devices (Jason Wang) [1227339]
-- [virtio] virtio-ccw: support non-legacy balloon devices (Jason Wang) [1227339]
-- [virtio] balloon might not be a legacy device (Jason Wang) [1227339]
-- [virtio] virtio-balloon: transitional interface (Jason Wang) [1227339]
-- [virtio] virtio-pci_modern: switch to type-safe io accessors (Jason Wang) [1227339]
-- [virtio] virtio-pci_modern: type-safe io accessors (Jason Wang) [1227339]
-- [virtio] drop a useless config read (Jason Wang) [1227339]
-- [virtio] virtio-config: reorder functions (Jason Wang) [1227339]
-- [virtio] virtio-mmio: fix access width for mmio (Jason Wang) [1227339]
-- [virtio] virtio-mmio: generation support (Jason Wang) [1227339]
-- [virtio] virtio-rpmsg: set DRIVER_OK before using device (Jason Wang) [1227339]
-- [virtio] virtio-blk: fix comment for virtio 1.0 (Jason Wang) [1227339]
-- [virtio] virtio-blk: typo fix (Jason Wang) [1227339]
-- [virtio] virtio-balloon: set DRIVER_OK before using device (Jason Wang) [1227339]
-- [virtio] don't set VIRTIO_CONFIG_S_DRIVER_OK twice (Jason Wang) [1227339]
-- [virtio] virtio-net: unconditionally define struct virtio_net_hdr_v1 (Jason Wang) [1227339]
-- [virtio] Don't expose legacy net features when VIRTIO_NET_NO_LEGACY defined (Jason Wang) [1227339]
-- [virtio] don't require a config space on the console device (Jason Wang) [1227339]
-- [virtio] virtio-pci: use 16-bit accessor for queue_enable (Jason Wang) [1227339]
-- [virtio] Don't expose legacy config features when VIRTIO_CONFIG_NO_LEGACY defined (Jason Wang) [1227339]
-- [virtio] Don't expose legacy block features when VIRTIO_BLK_NO_LEGACY defined (Jason Wang) [1227339]
-- [virtio] define VIRTIO_PCI_CAP_PCI_CFG in header (Jason Wang) [1227339]
-- [virtio] Avoid possible kernel panic if DEBUG is enabled (Jason Wang) [1227339]
-- [virtio] virtio-mmio: Update the device to OASIS spec version (Jason Wang) [1227339]
-- [virtio] virtio-pci: add module param to force legacy mode (Jason Wang) [1227339]
-- [virtio] virtio-pci: add an option to disable legacy driver (Jason Wang) [1227339]
-- [virtio] redhat: enable virtio-pci_legacy (Jason Wang) [1227339]
-- [virtio] virtio-pci: drop Kconfig warnings (Jason Wang) [1227339]
-- [virtio] virtio-pci: Kconfig grammar fix (Jason Wang) [1227339]
-- [virtio] virtio-rng: drop extra empty line (Jason Wang) [1227339]
-- [virtio] virtio-ring: coding style fix (Jason Wang) [1227339]
-- [virtio] virtio-blk: coding style fixes (Jason Wang) [1227339]
-- [virtio] virtio-balloon: coding style fixes (Jason Wang) [1227339]
-- [virtio] virtio-pci_modern: support devices with no config (Jason Wang) [1227339]
-- [virtio] virtio-pci_modern: reduce number of mappings (Jason Wang) [1227339]
-- [virtio] virtio-pci: macros for PCI layout offsets (Jason Wang) [1227339]
-- [virtio] virtio-pci: modern driver (Jason Wang) [1227339]
-- [virtio] virtio-pci: define layout for virtio 1.0 (Jason Wang) [1227339]
-- [virtio] virtio-pci: move probe/remove code to common (Jason Wang) [1227339]
-- [virtio] virtio-pci: drop useless del_vqs call (Jason Wang) [1227339]
-- [virtio] s390: add pci_iomap_range (Jason Wang) [1227339]
-- [virtio] pci: add pci_iomap_range (Jason Wang) [1227339]
-- [virtio] balloon: verify device has config space (Jason Wang) [1227339]
-- [virtio] scsi: verify device has config space (Jason Wang) [1227339]
-- [virtio] net: verify device has config space (Jason Wang) [1227339]
-- [virtio] console: verify device has config space (Jason Wang) [1227339]
-- [virtio] blk: verify device has config space (Jason Wang) [1227339]
-- [virtio] 9p: verify device has config space (Jason Wang) [1227339]
-- [virtio] virtio-pci: drop virtio_config dependency (Jason Wang) [1227339]
-- [virtio] virtio-pci: document why we defer kfree (Jason Wang) [1227339]
-- [virtio] virtio-pci: defer kfree until release callback (Jason Wang) [1227339]
-- [virtio] virtio-pci: device-specific release callback (Jason Wang) [1227339]
-- [virtio] make del_vqs idempotent (Jason Wang) [1227339]
-- [virtio] virtio-pci: restore module attributes (Jason Wang) [1227339]
-- [virtio] core support for config generation (Jason Wang) [1227339]
-- [virtio] virtio-pci: add VIRTIO_PCI_NO_LEGACY (Jason Wang) [1227339]
-- [virtio] virtio-pci: move probe to common file (Jason Wang) [1227339]
-- [virtio] virtio-pci_common.h: drop VIRTIO_PCI_NO_LEGACY (Jason Wang) [1227339]
-- [virtio] virtio-config: fix virtio_cread_bytes (Jason Wang) [1227339]
-- [virtio] set VIRTIO_CONFIG_S_FEATURES_OK on restore (Jason Wang) [1227339]
-- [virtio] virtio-ccw: finalize_features error handling (Jason Wang) [1227339]
-- [virtio] virtio-ccw: future-proof finalize_features (Jason Wang) [1227339]
-- [virtio] virtio-pci: rename virtio_pci -> virtio_pci_common (Jason Wang) [1227339]
-- [virtio] virtio-pci: update file descriptions and copyright (Jason Wang) [1227339]
-- [virtio] virtio-pci: split out legacy device support (Jason Wang) [1227339]
-- [virtio] virtio-pci: setup config vector indirectly (Jason Wang) [1227339]
-- [virtio] virtio-pci: setup vqs indirectly (Jason Wang) [1227339]
-- [virtio] virtio-pci: delete vqs indirectly (Jason Wang) [1227339]
-- [virtio] virtio-pci: use priv for vq notification (Jason Wang) [1227339]
-- [virtio] virtio-pci: free up vq->priv (Jason Wang) [1227339]
-- [virtio] virtio-pci: fix coding style for structs (Jason Wang) [1227339]
-- [virtio] virtio-pci: add isr field (Jason Wang) [1227339]
-- [virtio] drop legacy_only driver flag (Jason Wang) [1227339]
-- [virtio] virtio-balloon: drop legacy_only driver flag (Jason Wang) [1227339]
-- [virtio] virtio-ccw: rev 1 devices set VIRTIO_F_VERSION_1 (Jason Wang) [1227339]
-- [virtio] allow finalize_features to fail (Jason Wang) [1227339]
-- [virtio] virtio-ccw: legacy: don't negotiate rev 1/features (Jason Wang) [1227339]
-- [virtio] add API to detect legacy devices (Jason Wang) [1227339]
-- [virtio] virtio-console: fix sparse warnings (Jason Wang) [1227339]
-- [virtio] drop VIRTIO_F_VERSION_1 from drivers (Jason Wang) [1227339]
-- [virtio] make VIRTIO_F_VERSION_1 a transport bit (Jason Wang) [1227339]
-- [virtio] virtio-balloon: add legacy_only flag (Jason Wang) [1227339]
-- [virtio] virtio-console: virtio 1.0 support (Jason Wang) [1227339]
-- [virtio] af_packet: virtio 1.0 stubs (Jason Wang) [1227339]
-- [virtio] virtio-scsi: export to userspace (Jason Wang) [1227339]
-- [virtio] virtio-scsi: move to uapi (Jason Wang) [1227339]
-- [virtio] virtio-scsi: v1.0 support (Jason Wang) [1227339]
-- [virtio] virtio-net: enable v1.0 support (Jason Wang) [1227339]
-- [virtio] virtio-net: disable mac write for virtio 1.0 (Jason Wang) [1227339]
-- [virtio] virtio-net: bigger header when VERSION_1 is set (Jason Wang) [1227339]
-- [virtio] virtio-net: stricter short buffer length checks (Jason Wang) [1227339]
-- [virtio] virtio-net: get rid of virtio_net_hdr/skb_vnet_hdr (Jason Wang) [1227339]
-- [virtio] virtio-net: Set needed_headroom for virtio-net when VIRTIO_F_ANY_LAYOUT is true (Jason Wang) [1227339]
-- [virtio] virtio-net: pass vi around (Jason Wang) [1227339]
-- [virtio] virtio-blk: fix race at module removal (Jason Wang) [1227339]
-- [virtio] virtio-blk: make serial attribute static (Jason Wang) [1227339]
-- [virtio] kvm: s390: enable virtio-ccw revision 1 (Jason Wang) [1227339]
-- [virtio] kvm: s390 allow virtio-ccw status writes to fail (Jason Wang) [1227339]
-- [virtio] kvm: s390: virtio-ccw revision 1 SET_VQ (Jason Wang) [1227339]
-- [virtio] kvm: s390: Set virtio-ccw transport revision (Jason Wang) [1227339]
-- [virtio] virtio-blk: v1.0 support (Jason Wang) [1227339]
-- [virtio] virtio-net: v1.0 endianness (Jason Wang) [1227339]
-- [virtio] add legacy feature table support (Jason Wang) [1227339]
-- [virtio] simplify feature bit handling (Jason Wang) [1227339]
-- [virtio] set FEATURES_OK (Jason Wang) [1227339]
-- [virtio] allow transports to get avail/used addresses (Jason Wang) [1227339]
-- [virtio] virtio-config: endian conversion for v1.0 (Jason Wang) [1227339]
-- [virtio] virtio-ring: switch to new memory access APIs (Jason Wang) [1227339]
-- [virtio] memory access APIs (Jason Wang) [1227339]
-- [virtio] add virtio 1.0 feature bit (Jason Wang) [1227339]
-- [virtio] virtio-ccw: add support for 64 bit features (Jason Wang) [1227339]
-- [virtio] assert 32 bit features in transports (Jason Wang) [1227339]
-- [virtio] add support for 64 bit features (Jason Wang) [1227339]
-- [virtio] use u32, not bitmap for features (Jason Wang) [1227339]
-- [virtio] virtio-balloon: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-console: move early VQ enablement (Jason Wang) [1227339]
-- [virtio] virtio-net: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-console: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-scsi: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-blk: enable VQs early on restore (Jason Wang) [1227339]
-- [virtio] virtio-scsi: move kick event out from virtscsi_init (Jason Wang) [1227339]
-- [virtio] virtio-net: fix use after free on allocation failure (Jason Wang) [1227339]
-- [virtio] 9p/trans_virtio: enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-console: enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-blk: enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-net: enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-net: minor cleanup (Jason Wang) [1227339]
-- [virtio] virtio-net: drop config_mutex (Jason Wang) [1227339]
-- [virtio] virtio-net: drop config_enable (Jason Wang) [1227339]
-- [virtio] virtio-blk: drop config_mutex (Jason Wang) [1227339]
-- [virtio] virtio-blk: drop config_enable (Jason Wang) [1227339]
-- [virtio] virtio-pci: move freeze/restore to virtio core (Jason Wang) [1227339]
-- [virtio] virtio-pci: fix virtio spec compliance on restore (Jason Wang) [1227339]
-- [virtio] add low-level APIs for feature bits (Jason Wang) [1227339]
-- [virtio] add API to enable VQs early (Jason Wang) [1227339]
-- [virtio] virtio-ring: unify direct/indirect code paths (Jason Wang) [1227339]
-- [virtio] virtio-ring: assume sgs are always well-formed (Jason Wang) [1227339]
-- [virtio] virtio-net: pass well-formed sgs to virtqueue_add_*() (Jason Wang) [1227339]
-- [virtio] remove virtqueue_add_buf() (Jason Wang) [1227339]
-- [virtio] pci: remove unnecessary pci_set_drvdata() (Jason Wang) [1227339]
-- [virtio] virtio-pci: pm: Use CONFIG_PM_SLEEP instead of CONFIG_PM (Jason Wang) [1227339]
-- [virtio] virtio-pci: fix leaks of msix_affinity_masks (Jason Wang) [1227339]
-- [virtio] virtio-pci: Use pci_enable_msix_exact() instead of pci_enable_msix() (Jason Wang) [1227339]
-
-* Wed Jun 17 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-268.el7]
-- [x86] mm: add memory tracking to native_pmdp_get_and_clear (David Bulkow) [1227357]
-- [kvm] x86: advertise KVM_CAP_X86_SMM (Paolo Bonzini) [1202825]
-- [kvm] x86: add SMM to the MMU role, support SMRAM address space (Paolo Bonzini) [1202825]
-- [kvm] arch/x86/kvm/mmu.c: work around gcc-4.4.4 bug (Paolo Bonzini) [1202825]
-- [kvm] x86: work on all available address spaces (Paolo Bonzini) [1202825]
-- [kvm] x86: use vcpu-specific functions to read/write/translate GFNs (Paolo Bonzini) [1202825]
-- [kvm] x86: pass struct kvm_mmu_page to gfn_to_rmap (Paolo Bonzini) [1202825]
-- [kvm] implement multiple address spaces (Paolo Bonzini) [1202825]
-- [kvm] add vcpu-specific functions to read/write/translate GFNs (Paolo Bonzini) [1202825]
-- [kvm] x86: save/load state on SMM switch (Paolo Bonzini) [1202825]
-- [kvm] x86: latch INITs while in system management mode (Paolo Bonzini) [1202825]
-- [kvm] x86: stubs for SMM support (Paolo Bonzini) [1202825]
-- [kvm] x86: API changes for SMM support (Paolo Bonzini) [1202825]
-- [kvm] x86: pass the whole hflags field to emulator and back (Paolo Bonzini) [1202825]
-- [kvm] x86: pass host_initiated to functions that read MSRs (Paolo Bonzini) [1202825]
-- [kvm] x86: introduce num_emulated_msrs (Paolo Bonzini) [1202825]
-- [kvm] x86: clear hidden CPU state at reset time (Paolo Bonzini) [1202825]
-- [kvm] x86: fix kvm_apic_has_events to check for NULL pointer (Paolo Bonzini) [1202825]
-- [kvm] remove unused argument from mark_page_dirty_in_slot (Paolo Bonzini) [1202825]
-- [kvm] x86: Allow ARAT CPU feature (Paolo Bonzini) [1202825]
-- [kvm] x86: preserve x2APIC LDR on INIT (Paolo Bonzini) [1202825]
-- [kvm] x86: use correct APIC ID on x2APIC transition (Paolo Bonzini) [1202825]
-- [kvm] x86: pass struct kvm_mmu_page to account/unaccount_shadowed (Paolo Bonzini) [1202825]
-- [kvm] remove __gfn_to_pfn (Paolo Bonzini) [1202825]
-- [kvm] pass kvm_memory_slot to gfn_to_page_many_atomic (Paolo Bonzini) [1202825]
-- [kvm] add "new" argument to kvm_arch_commit_memory_region (Paolo Bonzini) [1202825]
-- [kvm] add memslots argument to kvm_arch_memslots_updated (Paolo Bonzini) [1202825]
-- [kvm] const-ify uses of struct kvm_userspace_memory_region (Paolo Bonzini) [1202825]
-- [kvm] use kvm_memslots whenever possible (Paolo Bonzini) [1202825]
-- [kvm] introduce kvm_alloc/free_memslots (Paolo Bonzini) [1202825]
-- [kvm] x86: Make functions that have no external callers static (Paolo Bonzini) [1202825]
-- [kvm] export __gfn_to_pfn_memslot, drop gfn_to_pfn_async (Paolo Bonzini) [1202825]
-- [kvm] x86: do not reset mmu if CR0.CD and CR0.NW are changed (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix MTRR update (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix decoding cache type from MTRR (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce kvm_zap_rmapp (Paolo Bonzini) [1202825]
-- [kvm] mmu: use slot_handle_level and its helper to clean up the code (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce slot_handle_level_range() and its helpers (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce for_each_slot_rmap_range (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce PT_MAX_HUGEPAGE_LEVEL (Paolo Bonzini) [1202825]
-- [kvm] mmu: introduce for_each_rmap_spte() (Paolo Bonzini) [1202825]
-- [kvm] x86: Fix zero iterations REP-string (Paolo Bonzini) [1202825]
-- [kvm] x86: Fix update RCX/RDI/RSI on REP-string (Paolo Bonzini) [1202825]
-- [kvm] x86: Fix DR7 mask on task-switch while debugging (Paolo Bonzini) [1202825]
-- [kvm] remove pointless cpu hotplug messages (Paolo Bonzini) [1202825]
-- [kvm] x86: Call-far should not be emulated as stack op (Paolo Bonzini) [1202825]
-- [kvm] reuse memslot in kvm_write_guest_page (Paolo Bonzini) [1202825]
-- [kvm] x86: dump VMCS on invalid entry (Paolo Bonzini) [1202825]
-- [kvm] x86: kvmclock: drop rdtsc_barrier() (Paolo Bonzini) [1202825]
-- [kvm] x86: drop unneeded null test (Paolo Bonzini) [1202825]
-- [kvm] x86: load guest FPU context more eagerly (Paolo Bonzini) [1202825]
-- [kvm] x86: Support for disabling quirks (Paolo Bonzini) [1202825]
-- [kvm] fpu: Enable eager restore kvm FPU for MPX (Paolo Bonzini) [1202825]
-- [kvm] revert "kvm: x86: drop fpu_activate hook" (Paolo Bonzini) [1202825]
-- [kvm] fix crash in kvm_vcpu_reload_apic_access_page (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix SMAP virtualization (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix CR4.SMEP=1, CR0.WP=0 with shadow pages (Paolo Bonzini) [1202825]
-- [kvm] mmu: fix smap permission check (Paolo Bonzini) [1202825]
-- [kvm] x86: pvclock: Really remove the sched notifier for cross-cpu migrations (Paolo Bonzini) [1202825]
-- [kvm] x86: vdso: fix pvclock races with task migration (Paolo Bonzini) [1202825]
-- [kvm] x86: fix kvmclock update protocol (Paolo Bonzini) [1202825]
-- [kvm] svm: use kvm_register_write()/read() (Paolo Bonzini) [1202825]
-- [kvm] async_pf: Add missing call for async page present (Paolo Bonzini) [1202825]
-- [kvm] async_pf: Provide additional direct page notification (Paolo Bonzini) [1202825]
-- [kvm] remove kvm_read_hva and kvm_read_hva_atomic (Paolo Bonzini) [1202825]
-- [kvm] x86: IRET emulation does not clear NMI masking (Paolo Bonzini) [1202825]
-- [kvm] x86: POPA emulation may not clear bits [63:32] (Paolo Bonzini) [1202825]
-- [kvm] remove unneeded return value of vcpu_postcreate (Paolo Bonzini) [1202825]
-- [kvm] Get rid of kvm_kvfree() (Paolo Bonzini) [1202825]
-- [kvm] Use pr_info/pr_err in kvm_main.c (Paolo Bonzini) [1202825]
-
-* Tue Jun 16 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-267.el7]
-- [infiniband] disable INFINIBAND_ON_DEMAND_PAGING for s390 platform (Honggang Li) [1229265]
-- [infiniband] ib/ehca: use correct destination for memcpy (Honggang Li) [1229265]
-- [infiniband] ib/cma: Fix broken AF_IB UD support (Honggang Li) [1229265]
-- [infiniband] ib/cm: Change reject message type when destroying cm_id (Honggang Li) [1229265]
-- [infiniband] rdma/core: Fix for parsing netlink string attribute (Honggang Li) [1229265]
-- [infiniband] ib/core: Fix unaligned accesses (Honggang Li) [1229265]
-- [infiniband] ib/core: change rdma_gid2ip into void function as it always return zero (Honggang Li) [1229265]
-- [infiniband] ib/core: dma unmap optimizations (Honggang Li) [1229265]
-- [infiniband] ib/core: dma map/unmap locking optimizations (Honggang Li) [1229265]
-- [infiniband] rdma/core: Enable the iWarp Port Mapper to provide the actual address of the connecting peer to its clients (Honggang Li) [1229265]
-- [infiniband] rdma/cma: Canonize IPv4 on IPV6 sockets properly (Honggang Li) [1229265]
-- [infiniband] ib_uverbs: Fix pages leak when using XRC SRQs (Honggang Li) [1229265]
-- [infiniband] ib/core: don't disallow registering region starting at 0x0 (Honggang Li) [1229265]
-- [infiniband] ib/core: disallow registering 0-sized memory region (Honggang Li) [1229265]
-- [infiniband] ib/core: Add on demand paging caps to ib_uverbs_ex_query_device (Honggang Li) [1229265]
-- [infiniband] ib/core: Add support for extended query device caps (Honggang Li) [1229265]
-- [infiniband] ib/core: Properly handle registration of on-demand paging MRs after dereg (Honggang Li) [1229265]
-- [infiniband] ib/core: Fix deadlock on uverbs modify_qp error flow (Honggang Li) [1229265]
-- [infiniband] ib/core: When marshaling ucma path from user-space, clear unused fields (Honggang Li) [1229265]
-- [infiniband] revert "ib/core: Add support for extended query device caps" (Honggang Li) [1229265]
-- [infiniband] ib/core: Temporarily disable ex_query_device uverb (Honggang Li) [1229265]
-- [infiniband] ib/core: Implement support for MMU notifiers regarding on demand paging regions (Honggang Li) [1229265]
-- [infiniband] ib/core: Add support for on demand paging regions (Honggang Li) [1229265]
-- [infiniband] ib/core: Add flags for on demand paging support (Honggang Li) [1229265]
-- [infiniband] ib/core: Add support for extended query device caps (Honggang Li) [1229265]
-- [infiniband] ib/core: Add umem function to read data from user-space (Honggang Li) [1229265]
-- [infiniband] ib/core: Replace ib_umem's offset field with a full address (Honggang Li) [1229265]
-- [infiniband] ib/addr: Improve address resolution callback scheduling (Honggang Li) [1229265]
-- [infiniband] ib/core: Fix mgid key handling in SA agent multicast data-base (Honggang Li) [1229265]
-- [infiniband] ib/core: Do not resolve VLAN if already resolved (Honggang Li) [1229265]
-- [infiniband] ib/core: Fix XRC race condition in ib_uverbs_open_qp (Honggang Li) [1229265]
-- [infiniband] ib/core: Clear AH attr variable to prevent garbage data (Honggang Li) [1229265]
-- [infiniband] ib/core: Avoid leakage from kernel to user space (Honggang Li) [1229265]
-- [infiniband] ib/core: ib_umem_release() should decrement mm->pinned_vm from ib_umem_get (Honggang Li) [1229265]
-- [fs] proc: fix BUG_ON() introduced by PAGE_SIZE cmdline limit fix (Jarod Wilson) [1193998 1225363]
-- [pci] Add ACS quirks for Intel 9-series PCH root ports (Myron Stowe) [1206198]
-- [pci] Add Wellsburg (X99) to Intel PCH root port ACS quirk (Myron Stowe) [1162360]
-- [pci] Add DMA alias quirk for Adaptec 3405 (Myron Stowe) [1171802]
-- [pci] Mark AMD/ATI VGA devices that don't reset on D3hot->D0 transition (Myron Stowe) [1171802]
-- [pci] Add flag for devices that don't reset on D3hot->D0 transition (Myron Stowe) [1171802]
-- [pci] Mark Atheros AR93xx to avoid bus reset (Myron Stowe) [1171802]
-- [pci] Add flag for devices where we can't use bus reset (Myron Stowe) [1171802]
-- [hid] i2c-hid: Limit reads to wMaxInputLength bytes for input events (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: only bind the hid-rmi driver to the mouse interface of composite USB devices (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: check that report ids exist in the report_id_hash before accessing their size (Aristeu Rozanski) [1075108 1075114]
-- [i2c] move ACPI helpers into the core (Aristeu Rozanski) [1075108 1075114]
-- [i2c] designware: remove HAVE_CLK build dependecy (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: do not handle touchscreens through hid-rmi (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: fix masks for x and w_x data (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: fix wrong struct field name (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: do not fetch more than 16 bytes in a query (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: check for the existence of some optional queries before reading query 12 (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: do not stop the device at the end of probe (Aristeu Rozanski) [1075108 1075114]
-- [hid] rmi: introduce RMI driver for Synaptics touchpads (Aristeu Rozanski) [1075108 1075114]
-- [hid] i2c-hid: support sending HID output reports using the output register (Aristeu Rozanski) [1075108 1075114]
-- [scsi] bnx2fc: fix an error code in _bnx2fc_create() (Maurizio Lombardi) [1187300]
-- [scsi] bnx2fc: check IS_ERR() instead of NULL (Maurizio Lombardi) [1187300]
-- [scsi] iscsi_ibft: filter null v4-mapped v6 addresses (Chris Leech) [1212673]
-- [scsi] mpt2sas: Bump driver version to 20.100.00.00 (Tomas Henzl) [1189021]
-- [scsi] mpt2sas+mpt3sas: set cpu affinity for each MSIX vectors (Tomas Henzl) [1189021 1200405]
-- [scsi] mpt2sas+mpt3sas: Update attribution language to Avago (Tomas Henzl) [1189021 1200405]
-- [scsi] mpt2sas: map log_info value 0x0x32010081 to DID_RESET (Tomas Henzl) [1189021]
-- [scsi] mpt2sas+mpt3sas: fix upper bound for the module parameter max_sgl_entries (Tomas Henzl) [1053119]
-- [scsi] mpt2sas: MPI2 Rev BB (2.00.20) specification and 2.00.35 header files (Tomas Henzl) [1189021]
-- [scsi] mpt2sas: Bump driver version to 19.100.00.00 (Tomas Henzl) [1189021]
-- [scsi] mpt2sas+mpt3sas: Fail the host reset initiated due to discovery related I/O timeouts at driver load time (Tomas Henzl) [1189021 1200405]
-- [scsi] mpt2sas+mpt3sas: log exceeded temperature thresholds (Tomas Henzl) [1189021 1200405]
-- [scsi] mpt2sas: MPI2 Rev AA (2.00.19) specifications (Tomas Henzl) [1189021]
-- [scsi] mpt3sas: issue_reset is uninitialized (Tomas Henzl) [1200405]
-- [scsi] mpt2sas: issue_reset is uninitialized (Tomas Henzl) [1189021]
-- [scsi] mpt3sas: Revert " mpt3sas: Remove phys on topology change" (Tomas Henzl) [1200405]
-- [scsi] mpt2sas: Revert "mpt2sas: Remove phys on topology change." (Tomas Henzl) [1189021]
-- [scsi] mpt2sas: fix ioctl in comment (Tomas Henzl) [1189021]
-- [scsi] bnx2i: Fixed firmware assert, during target logout (Maurizio Lombardi) [1187301]
-- [scsi] fix regression in SCSI_IOCTL_SEND_COMMAND (Ewan Milne) [1109348]
-- [scsi] set REQ_QUEUE for the blk-mq case (Ewan Milne) [1109348]
-- [scsi] move blk_mq_start_request call earlier (Ewan Milne) [1109348]
-- [scsi] fix regression that accidentally disabled block-based tcq (Ewan Milne) [1109348]
-- [lib] scatterlist: fix memory leak with scsi-mq (Ewan Milne) [1109348]
-- [scsi] sg: fix EWOULDBLOCK errors with scsi-mq (Ewan Milne) [1109348]
-- [scsi] sg: fix unkillable I/O wait deadlock with scsi-mq (Ewan Milne) [1109348]
-- [scsi] sg: fix read() error reporting (Ewan Milne) [1109348]
-- [scsi] fix random memory corruption with scsi-mq + T10 PI (Ewan Milne) [1109348]
-- [scsi] Fix qemu boot hang problem (Ewan Milne) [1109348]
-- [scsi] scsi-mq: Add call to mark_tech_preview() if "use_blk_mq" is specified (Ewan Milne) [1109348]
-- [scsi] fnic: reject device resets without assigned tags for the blk-mq case (Ewan Milne) [1109348]
-- [scsi] add support for a blk-mq based I/O path (Ewan Milne) [1109348]
-- [scsi] scatterlist: allow chaining to preallocated chunks (Ewan Milne) [1109348]
-- [scsi] unwind blk_end_request_all and blk_end_request_err calls (Ewan Milne) [1109348]
-- [scsi] only maintain target_blocked if the driver has a target queue limit (Ewan Milne) [1109348]
-- [scsi] fix the host/target/device_blocked counter mess (Ewan Milne) [1109348]
-- [scsi] convert device_busy to atomic_t (Ewan Milne) [1109348]
-- [scsi] convert host_busy to atomic_t (Ewan Milne) [1109348]
-- [scsi] convert target_busy to an atomic_t (Ewan Milne) [1109348]
-- [scsi] push host_lock down into scsi_host/target_queue_ready (Ewan Milne) [1109348]
-- [scsi] set ->scsi_done before calling scsi_dispatch_cmd (Ewan Milne) [1109348]
-- [scsi] centralize command re-queueing in scsi_dispatch_fn (Ewan Milne) [1109348]
-- [scsi] split __scsi_queue_insert (Ewan Milne) [1109348]
-- [scsi] add scsi_setup_cmnd helper (Ewan Milne) [1109348]
-- [scsi] mark scsi_setup_blk_pc_cmnd static (Ewan Milne) [1109348]
-- [scsi] sd: split sd_init_command (Ewan Milne) [1109348]
-- [scsi] sd: retry discard commands (Ewan Milne) [1109348]
-- [scsi] sd: retry write same commands (Ewan Milne) [1109348]
-- [scsi] sd: don't use scsi_setup_blk_pc_cmnd for discard requests (Ewan Milne) [1109348]
-- [scsi] sd: don't use scsi_setup_blk_pc_cmnd for write same requests (Ewan Milne) [1109348]
-- [scsi] sd: don't use scsi_setup_blk_pc_cmnd for flush requests (Ewan Milne) [1109348]
-- [scsi] set sc_data_direction in common code (Ewan Milne) [1109348]
-- [scsi] restructure command initialization for TYPE_FS requests (Ewan Milne) [1109348]
-- [scsi] move the nr_phys_segments assert into scsi_init_io (Ewan Milne) [1109348]
-
-* Mon Jun 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-266.el7]
-- [drm] upstream sync to v4.1-rc7 (Rob Clark) [1206718]
-- [drm] i915: Fix DDC probe for passive adapters (Rob Clark) [1206718]
-- [drm] i915: Properly initialize SDVO analog connectors (Rob Clark) [1206718]
-- [acpi] video: Allow forcing native backlight on non win8 machines (Benjamin Tissoires) [1218354]
-- [acpi] i915: Update the condition to ignore firmware backlight change request (Benjamin Tissoires) [1218354]
-- [acpi] video: Propagate the error code for acpi_video_register (Benjamin Tissoires) [1218354]
-- [acpi] video: Load the module even if ACPI is disabled (Benjamin Tissoires) [1218354]
-- [acpi] video: Disable native backlight on Samsung Series 9 laptops (Benjamin Tissoires) [1218354]
-- [acpi] video: Add disable_native_backlight quirk for Samsung 510R (Benjamin Tissoires) [1218354]
-- [acpi] video: Add disable_native_backlight quirk for Samsung 730U3E/740U3E (Benjamin Tissoires) [1218354]
-- [acpi] video: Add disable_native_backlight quirk for Dell XPS15 L521X (Benjamin Tissoires) [1218354]
-- [acpi] video: Add some Samsung models to disable_native_backlight list (Benjamin Tissoires) [1218354]
-- [acpi] video: update the skip case for acpi_video_device_in_dod() (Benjamin Tissoires) [1218354]
-- [acpi] video: update condition to check if device is in _DOD list (Benjamin Tissoires) [1218354]
-- [acpi] video: Run _BCL before deciding registering backlight (Benjamin Tissoires) [1218354]
-- [acpi] video: check _DOD list when creating backlight devices (Benjamin Tissoires) [1218354]
-- [acpi] video: disable native backlight for ThinkPad X201s (Benjamin Tissoires) [1218354]
-- [acpi] video: Remove video_set_use_native_backlight quirk (Benjamin Tissoires) [1218354]
-- [acpi] video: Disable native_backlight on HP ENVY 15 Notebook PC (Benjamin Tissoires) [1218354]
-- [acpi] video: Add a disable_native_backlight quirk (Benjamin Tissoires) [1218354]
-- [acpi] video: Fix use_native_backlight selection logic (Benjamin Tissoires) [1218354]
-- [acpi] video: Add use_native_backlight quirk for HP EliteBook 2014 models (Benjamin Tissoires) [1218354]
-- [acpi] move models with win8 brightness problems from win8 blacklist to use_native_backlight (Benjamin Tissoires) [1218354]
-- [acpi] blacklist: Add dmi_enable_osi_linux quirk for Asus EEE PC 1015PX (Benjamin Tissoires) [1218354]
-- [acpi] blacklist win8 OSI for Dell Inspiron 7737 (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi: Blacklist Win8 OSI for some HP laptop 2013 models" (Benjamin Tissoires) [1218354]
-- [acpi] video: Fix backlight taking 2 steps on a brightness up/down keypress (Benjamin Tissoires) [1218354]
-- [acpi] video: Add use_native_backlight quirk for HP ProBook 4540s (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi video: change acpi-video brightness_switch_enabled default to 0" (Benjamin Tissoires) [1218354]
-- [acpi] video: Add Acer TravelMate B113 to native backlight blacklist (Benjamin Tissoires) [1218354]
-- [acpi] i915: ignore firmware requests for backlight change (Benjamin Tissoires) [1218354]
-- [acpi] video: Change the default for video.use_native_backlight to 1 (Benjamin Tissoires) [1218354]
-- [acpi] video: Add 4 new models to the use_native_backlight DMI list (Benjamin Tissoires) [1218354]
-- [acpi] video: Add use native backlight quirk for the ThinkPad W530 (Benjamin Tissoires) [1218354]
-- [acpi] video: Unregister the backlight device if a raw one shows up later (Benjamin Tissoires) [1218354]
-- [acpi] video: Add an acpi_video_unregister_backlight function (Benjamin Tissoires) [1218354]
-- [acpi] video: Revert native brightness quirk for ThinkPad T530 (Benjamin Tissoires) [1218354]
-- [acpi] video: Don't register acpi_video_resume notifier without backlight devices (Benjamin Tissoires) [1218354]
-- [acpi] video: correct DMI tag for Dell Inspiron 7520 (Benjamin Tissoires) [1218354]
-- [acpi] video: change acpi-video brightness_switch_enabled default to 0 (Benjamin Tissoires) [1218354]
-- [acpi] video: Add use_native_backlight quirks for more systems (Benjamin Tissoires) [1218354]
-- [acpi] video: Favor native backlight interface for ThinkPad Helix (Benjamin Tissoires) [1218354]
-- [acpi] video: Add systems that should favour native backlight interface (Benjamin Tissoires) [1218354]
-- [acpi] Blacklist Win8 OSI for some HP laptop 2013 models (Benjamin Tissoires) [1218354]
-- [acpi] delete CONFIG_ACPI_BLACKLIST_YEAR (Benjamin Tissoires) [1218354]
-- [acpi] blacklist: fix name of ThinkPad Edge E530 (Benjamin Tissoires) [1218354]
-- [acpi] Add Toshiba NB100 to Vista _OSI blacklist (Benjamin Tissoires) [1218354]
-- [acpi] add missing win8 OSI comment to blacklist (Benjamin Tissoires) [1218354]
-- [acpi] update win8 OSI blacklist (Benjamin Tissoires) [1218354]
-- [acpi] blacklist win8 OSI for buggy laptops (Benjamin Tissoires) [1218354]
-- [acpi] blacklist win8 OSI for ASUS Zenbook Prime UX31A (Benjamin Tissoires) [1218354]
-- [acpi] video: Filter the _BCL table for duplicate brightness values (Benjamin Tissoires) [1218354]
-- [acpi] video: clean up DMI table for initial black screen problem (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi video: Ignore BIOS initial backlight value for HP 250 G1" (Benjamin Tissoires) [1218354]
-- [acpi] video: Quirk initial backlight level 0 (Benjamin Tissoires) [1218354]
-- [acpi] video: Fix initial level validity test (Benjamin Tissoires) [1218354]
-- [acpi] video: Ignore BIOS initial backlight value for HP 250 G1 (Benjamin Tissoires) [1218354]
-- [acpi] video: Do not register backlight if win8 and native interface exists (Benjamin Tissoires) [1218354]
-- [acpi] video: seperate backlight control and event interface (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi video: Always call acpi_video_init_brightness() on init" (Benjamin Tissoires) [1218354]
-- [acpi] video: drop unused fields from struct acpi_video_brightness_flags (Benjamin Tissoires) [1218354]
-- [acpi] video: remove unnecessary type casting (Benjamin Tissoires) [1218354]
-- [acpi] video: trivial style cleanups (Benjamin Tissoires) [1218354]
-- [acpi] video: trivial costmetic cleanups (Benjamin Tissoires) [1218354]
-- [acpi] revert "acpi video / i915: No ACPI backlight if firmware expects Windows 8" (Benjamin Tissoires) [1218354]
-- [acpi] video: no automatic brightness changes by win8-compatible firmware (Benjamin Tissoires) [1218354]
-- [acpi] video / i915: No ACPI backlight if firmware expects Windows 8 (Benjamin Tissoires) [1218354]
-- [acpi] video: Always call acpi_video_init_brightness() on init (Benjamin Tissoires) [1218354]
-- [acpi] backlight: Add backlight device (un)registration notification (Benjamin Tissoires) [1218354]
-- [acpi] backlight: fix KABI breakage (Benjamin Tissoires) [1218354]
-- [acpi] backlight: introduce backlight_device_registered (Benjamin Tissoires) [1218354]
-- [acpi] acpica: expose OSI version (Benjamin Tissoires) [1218354]
-- [x86] kvm: add module parameter to disable periodic kvmclock sync (Marcelo Tosatti) [1220952]
-- [x86] kvm: increase user memory slots to 509 (Igor Mammedov) [1155581]
-- [iommu] vt-d: Fix an off-by-one bug in __domain_mapping() (Myron Stowe) [1171802]
-- [kernel] lockdep: Increase static allocations (Jiri Olsa) [1158087]
-
-* Mon Jun 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-265.el7]
-- [md] dm: fix casting bug in dm_merge_bvec() (Mike Snitzer) [1166127 1208542]
-- [md] dm: fix reload failure of 0 path multipath mapping on blk-mq devices (Mike Snitzer) [1166127 1208542]
-- [md] dm: fix false warning in free_rq_clone() for unmapped requests (Mike Snitzer) [1166127 1208542]
-- [md] dm-mpath: fix leak of dm_mpath_io structure in blk-mq .queue_rq error path (Mike Snitzer) [1166127 1208542]
-- [md] dm: requeue from blk-mq dm_mq_queue_rq() using BLK_MQ_RQ_QUEUE_BUSY (Mike Snitzer) [1166127 1208542]
-- [md] dm: fix NULL pointer when clone_and_map_rq returns !DM_MAPIO_REMAPPED (Mike Snitzer) [1166127 1208542]
-- [md] dm: run queue on re-queue (Mike Snitzer) [1166127 1208542]
-- [md] dm-log-userspace-base: fix compile warning (Mike Snitzer) [1166127 1208542]
-- [md] dm-log-userspace-transfer: match wait_for_completion_timeout return type (Mike Snitzer) [1166127 1208542]
-- [md] dm-log-userspace: split flush_entry_pool to be per dirty-log (Mike Snitzer) [1166127 1208542]
-- [md] dm-table: fall back to getting device using name_to_dev_t() (Mike Snitzer) [1166127 1208542]
-- [init] fix regression by supporting devices with major:minor:offset format (Mike Snitzer) [1166127 1208542]
-- [init] stricter checking of major:minor root= values (Mike Snitzer) [1166127 1208542]
-- [init] export name_to_dev_t and mark name argument as const (Mike Snitzer) [1166127 1208542]
-- [md] dm: fix free_rq_clone() NULL pointer when requeueing unmapped request (Mike Snitzer) [1166127 1208542]
-- [md] dm: only initialize the request_queue once (Mike Snitzer) [1166127 1208542]
-- [md] dm: add 'use_blk_mq' module param and expose in per-device ro sysfs attr (Mike Snitzer) [1166127 1208542]
-- [md] dm: optimize dm_mq_queue_rq to _not_ use kthread if using pure blk-mq (Mike Snitzer) [1166127 1208542]
-- [md] dm: add full blk-mq support to request-based DM (Mike Snitzer) [1166127 1208542]
-- [md] dm-table: use bool function return values of true/false not 1/0 (Mike Snitzer) [1166127 1208542]
-- [md] dm-delay: use msecs_to_jiffies for time conversion (Mike Snitzer) [1166127 1208542]
-- [md] dm-verity: add error handling modes for corrupted blocks (Mike Snitzer) [1166127 1208542]
-- [md] dm-crypt: fix missing error code return from crypt_ctr error path (Mike Snitzer) [1166127 1208542]
-- [md] dm-crypt: update URLs to new cryptsetup project page (Mike Snitzer) [1166127 1208542]
-- [md] dm-switch: fix Documentation to use plain text (Mike Snitzer) [1166127 1208542]
-- [md] dm-thin: remove stale 'trim' message documentation (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: try not to writeback data that changed in the last second (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: remove unused generation member of struct entry (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: track entries hit this 'tick' via sentinel objects (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: remove queue_shift_down() (Mike Snitzer) [1166127 1208542]
-- [md] dm-cache-policy-mq: keep track of the number of entries in a multiqueue (Mike Snitzer) [1166127 1208542]
-- [md] dm: impose configurable deadline for dm_request_fn's merge heuristic (Mike Snitzer) [1166127 1208542]
-- [kernel] ktime: add ktime_after and ktime_before helper (Mike Snitzer) [1166127 1208542]
-- [md] dm-sysfs: introduce ability to add writable attributes (Mike Snitzer) [1166127 1208542]
-- [md] dm: don't start current request if it would've merged with the previous (Mike Snitzer) [1166127 1208542]
-- [md] dm: reduce the queue delay used in dm_request_fn from 100ms to 10ms (Mike Snitzer) [1166127 1208542]
-- [md] dm: don't schedule delayed run of the queue if nothing to do (Mike Snitzer) [1166127 1208542]
-- [md] dm: only run the queue on completion if congested or no requests pending (Mike Snitzer) [1166127 1208542]
-- [md] dm: remove request-based logic from make_request_fn wrapper (Mike Snitzer) [1166127 1208542]
-- [md] dm: remove request-based DM queue's lld_busy_fn hook (Mike Snitzer) [1166127 1208542]
-- [md] dm: remove unnecessary wrapper around blk_lld_busy (Mike Snitzer) [1166127 1208542]
-- [md] dm: rename __dm_get_reserved_ios() helper to __dm_get_module_param() (Mike Snitzer) [1166127 1208542]
-- [powerpc] eeh: Delay probing EEH device during hotplug (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix race condition in pcibios_set_pcie_reset_state() (Laurent Vivier) [1213675]
-- [powerpc] tg3: Release IRQs on permanent error (Laurent Vivier) [1213675]
-- [powerpc] powernv: Don't map M64 segments using M32DT (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix PE#0 check in eeh_add_to_parent_pe() (Laurent Vivier) [1213675]
-- [powerpc] pci: Create pci_dn for VFs (Laurent Vivier) [1213675]
-- [powerpc] pci: Export pci_iov_virtfn_bus() and pci_iov_virtfn_devfn() (Laurent Vivier) [1213675]
-- [powerpc] sfc: Don't use of_node_to_eeh_dev() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Remove device_node dependency (Laurent Vivier) [1213675]
-- [powerpc] eeh: Replace device_node with pci_dn in eeh_ops (Laurent Vivier) [1213675]
-- [powerpc] eeh: Do probe on pci_dn (Laurent Vivier) [1213675]
-- [powerpc] eeh: Create eeh_dev from pci_dn instead of device_node (Laurent Vivier) [1213675]
-- [powerpc] pci: Trace more information from pci_dn (Laurent Vivier) [1213675]
-- [powerpc] powernv: Use pci_dn, not device_node, in PCI config accessor (Laurent Vivier) [1213675]
-- [powerpc] pci: Refactor pci_dn (Laurent Vivier) [1213675]
-- [powerpc] pci: remove the multi-init for pci_dn->phb (Laurent Vivier) [1213675]
-- [powerpc] powernv: Remove unused file (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation reset() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation next_error() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation get_state() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation set_option() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation configure_bridge() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation get_log() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation post_init() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop PHB operation err_inject() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Shorten EEH function names (Laurent Vivier) [1213675]
-- [powerpc] eeh: Enhance pcibios_set_pcie_reset_state() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Allow to set maximal frozen times (Laurent Vivier) [1213675]
-- [powerpc] eeh: Introduce flag EEH_PE_REMOVED (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix missed PE#0 on P7IOC (Laurent Vivier) [1213675]
-- [powerpc] eeh: Dump PHB diag-data early (Laurent Vivier) [1213675]
-- [powerpc] eeh: Recover EEH error on ownership change for BCM5719 (Laurent Vivier) [1213675]
-- [powerpc] eeh: Set EEH_PE_RESET on PE reset (Laurent Vivier) [1213675]
-- [powerpc] eeh: Refactor eeh_reset_pe() (Laurent Vivier) [1213675]
-- [powerpc] powernv: Replace OPAL_DEASSERT_RESET with EEH_RESET_DEACTIVATE (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix PE state format (Laurent Vivier) [1213675]
-- [powerpc] eeh: Block CFG upon frozen Shiner adapter (Laurent Vivier) [1213675]
-- [powerpc] eeh: Don't collect logs on PE with blocked config space (Laurent Vivier) [1213675]
-- [powerpc] eeh: Block PCI config access upon frozen PE (Laurent Vivier) [1213675]
-- [powerpc] powernv: Drop config requests in EEH accessors (Laurent Vivier) [1213675]
-- [powerpc] eeh: Rename flag EEH_PE_RESET to EEH_PE_CFG_BLOCKED (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix condition for isolated state (Laurent Vivier) [1213675]
-- [powerpc] eeh: Show hex prefix for PE state sysfs (Laurent Vivier) [1213675]
-- [powerpc] powernv: Fetch frozen PE on top level (Laurent Vivier) [1213675]
-- [powerpc] eeh: Dump PCI config space for all child devices (Laurent Vivier) [1213675]
-- [powerpc] eeh: Emulate EEH recovery for VFIO devices (Laurent Vivier) [1213675]
-- [powerpc] eeh: Tag reset state for user owned PE (Laurent Vivier) [1213675]
-- [powerpc] eeh: Block PCI config access during reset (Laurent Vivier) [1213675]
-- [powerpc] eeh: Use eeh_unfreeze_pe() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Unfreeze PE on enabling EEH functionality (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix improper condition in eeh_pci_enable() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Clear frozen device state in time (Laurent Vivier) [1213675]
-- [powerpc] powernv: Clear PAPR error injection registers (Laurent Vivier) [1213675]
-- [powerpc] powernv: Add PCI error injection debugfs entry (Laurent Vivier) [1213675]
-- [powerpc] eeh: Introduce eeh_ops::err_inject (Laurent Vivier) [1213675]
-- [powerpc] powernv: Sync header with firmware (Laurent Vivier) [1213675]
-- [powerpc] eeh: Clear frozen state on passing device (Laurent Vivier) [1213675]
-- [powerpc] eeh: Reenable PCI devices after reset (Laurent Vivier) [1213675]
-- [powerpc] eeh: Freeze PE before PE reset (Laurent Vivier) [1213675]
-- [powerpc] eeh: Add eeh_pe_state sysfs entry (Laurent Vivier) [1213675]
-- [powerpc] eeh: Drop unused argument in eeh_check_failure() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Fix kernel crash when passing through VF (Laurent Vivier) [1213675]
-- [powerpc] vfio: Export vfio_spapr_iommu_eeh_ioctl() with GPL (Laurent Vivier) [1213675]
-- [powerpc] vfio/pci: Restore MSIx message prior to enabling (Laurent Vivier) [1213675]
-- [powerpc] pci: Assume all Mellanox devices have broken INTx masking (Laurent Vivier) [1213675]
-- [powerpc] pseries: Failure on removing device node (Laurent Vivier) [1213675]
-- [powerpc] eeh: Export eeh_iommu_group_to_pe() (Laurent Vivier) [1213675]
-- [powerpc] eeh: Add missing #ifdef CONFIG_IOMMU_API (Laurent Vivier) [1213675]
-- [powerpc] vfio: Enable VFIO if EEH is not supported (Laurent Vivier) [1213675]
-- [powerpc] vfio: Allow EEH to be built as module (Laurent Vivier) [1213675]
-- [powerpc] vfio: Fix EEH build error (Laurent Vivier) [1213675]
-- [powerpc] vfio: EEH support for VFIO PCI device (Laurent Vivier) [1213675]
-- [hid] usbhid: yet another mouse with ALWAYS_POLL (Don Zickus) [914682]
-- [hid] usbhid: more mice with ALWAYS_POLL (Don Zickus) [914682]
-- [hid] add quirk for PIXART OEM mouse used by HP (Don Zickus) [914682]
-- [hid] add HP OEM mouse to quirk ALWAYS_POLL (Don Zickus) [914682]
-- [hid] add ALWAYS_POLL quirk for a Logitech 0xc007 (Don Zickus) [914682]
-- [hid] usbhid: enable always-poll quirk for Elan Touchscreen 0103 (Don Zickus) [914682]
-- [hid] usbhid: prevent unwanted events to be sent when re-opening the device (Don Zickus) [914682]
-- [hid] usbhid: enable always-poll quirk for Elan Touchscreen 016f (Don Zickus) [914682]
-- [hid] usbhid: enable always-poll quirk for Elan Touchscreen 009b (Don Zickus) [914682]
-- [hid] usbhid: add another mouse that needs QUIRK_ALWAYS_POLL (Don Zickus) [914682]
-- [hid] usbhid: fix PIXART optical mouse (Don Zickus) [914682]
-- [hid] usbhid: enable always-poll quirk for Elan Touchscreen (Don Zickus) [914682]
-- [hid] usbhid: add always-poll quirk (Don Zickus) [914682]
-- [tools] turbostat: update version number to 4.7 (Prarit Bhargava) [1224005]
-- [tools] turbostat: allow running without cpu0 (Prarit Bhargava) [1224005]
-- [tools] turbostat: correctly decode of ENERGY_PERFORMANCE_BIAS (Prarit Bhargava) [1224005]
-- [tools] turbostat: correctly display more than 2 threads/core (Prarit Bhargava) [1224005]
-- [net] tcp: double default TSQ output bytes limit (Hannes Frederic Sowa) [1228113]
-- [net] bridge: fix parsing of MLDv2 reports (Thadeu Lima de Souza Cascardo) [1219092]
-- [net] conntrack: RFC5961 challenge ACK confuse conntrack LAST-ACK transition (Jesper Brouer) [1212829]
-- [net] tcp: Restore RFC5961-compliant behavior for SYN packets (Jesper Brouer) [1212829]
-
-* Thu Jun 11 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-264.el7]
-- [powerpc] perf: hv-24x7: Add missing put_cpu_var() (Jiri Olsa) [1220106]
-- [block] blk-mq: make plug work for mutiple disks and queues (Jeff Moyer) [1185689]
-- [block] blk-mq: do limited block plug for multiple queue case (Jeff Moyer) [1185689]
-- [block] blk-mq: avoid re-initialize request which is failed in direct dispatch (Jeff Moyer) [1185689]
-- [block] blk-mq: fix plugging in blk_sq_make_request (Jeff Moyer) [1185689]
-- [kernel] sched: Prevent recursion in io_schedule() (Jeff Moyer) [1185689]
-- [scsi] ipr: Increase default adapter init stage change timeout (Steve Best) [1229217]
-- [fs] fs-cache: Retain the netfs context in the retrieval op earlier (David Howells) [1130457 1204964]
-- [fs] fs-cache: The operation cancellation method needs calling in more places (David Howells) [1130457 1204964]
-- [fs] fs-cache: Put an aborted initialised op so that it is accounted correctly (David Howells) [1130457 1204964]
-- [fs] fs-cache: Fix cancellation of in-progress operation (David Howells) [1130457 1204964]
-- [fs] fs-cache: Count the number of initialised operations (David Howells) [1130457 1204964]
-- [fs] fs-cache: Out of line fscache_operation_init() (David Howells) [1130457 1204964]
-- [fs] fs-cache: Permit fscache_cancel_op() to cancel in-progress operations too (David Howells) [1130457 1204964]
-- [fs] fs-cache: fscache_object_is_dead() has wrong logic, kill it (David Howells) [1130457 1204964]
-- [fs] fs-cache: Synchronise object death state change vs operation submission (David Howells) [1130457 1204964]
-- [fs] fs-cache: Handle a new operation submitted against a killed object (David Howells) [1130457 1204964]
-- [fs] fs-cache: When submitting an op, cancel it if the target object is dying (David Howells) [1130457 1204964]
-- [fs] fs-cache: Move fscache_report_unexpected_submission() to make it more available (David Howells) [1130457 1204964]
-- [fs] fs-cache: Count culled objects and objects rejected due to lack of space (David Howells) [1130457 1204964]
-- [fs] fs-cache: use __seq_open_private() (David Howells) [1130457 1204964]
-- [fs] cachefiles: Fix incorrect test for in-memory object collision (David Howells) [1130457 1204964]
-- [fs] cachefiles: Handle object being killed before being set up (David Howells) [1130457 1204964]
-- [fs] cachefiles: add missing \n to kerror conversions (David Howells) [1130457 1204964]
-- [fs] cachefiles: remove two unused pagevecs (David Howells) [1130457 1204964]
-- [fs] fs-cache: refcount becomes corrupt under vma pressure (David Howells) [1130457 1204964]
-- [fs] fs-cache: Reduce cookie ref count if submit fails (David Howells) [1130457 1204964]
-- [fs] fs-cache: Timeout for releasepage() (David Howells) [1130457 1204964]
-- [fs] fscache: make ctl_table static (David Howells) [1130457 1204964]
-- [fs] fscache: convert use of typedef ctl_table to struct ctl_table (David Howells) [1130457 1204964]
-- [fs] cachefiles: replace kerror by pr_err (David Howells) [1130457 1204964]
-- [fs] cachefiles: convert printk to pr_foo() (David Howells) [1130457 1204964]
-- [fs] fscache: replace seq_printf by seq_puts (David Howells) [1130457 1204964]
-- [fs] fscache: convert printk to pr_foo() (David Howells) [1130457 1204964]
-- [fs] get rid of pointless checks for NULL ->i_op (David Howells) [1130457 1204964]
-- [fs] fs-cache: Handle removal of unadded object to the fscache_object_list rb tree (David Howells) [1130457 1204964]
-- [fs] nfs: Use i_writecount to control whether to get an fscache cookie in nfs_open() (David Howells) [1130457 1204964]
-- [fs] fs-cache: Provide the ability to enable/disable cookies (David Howells) [1130457 1204964]
-- [fs] fs-cache: Add use/unuse/wake cookie wrappers (David Howells) [1130457 1204964]
-- [fs] cachefiles: Don't try to dump the index key if the cookie has been cleared (David Howells) [1130457 1204964]
-- [fs] cachefiles: Fix memory leak in cachefiles_check_auxdata error paths (David Howells) [1130457 1204964]
-- [fs] fscache: check consistency does not decrement refcount (David Howells) [1130457 1204964]
-- [fs] fscache: Netfs function for cleanup post readpages (David Howells) [1130457 1204964]
-- [fs] cachefiles: Implement interface to check cache consistency (David Howells) [1130457 1204964]
-- [fs] fs-cache: Add interface to check consistency of a cached object (David Howells) [1130457 1204964]
-- [fs] fs-cache: Don't use spin_is_locked() in assertions (David Howells) [1130457 1204964]
-- [fs] fs-cache: The retrieval remaining-pages counter needs to be atomic_t (David Howells) [1130457 1204964]
-- [fs] cachefiles: remove unused macro list_to_page() (David Howells) [1130457 1204964]
-- [fs] fs-cache: Simplify cookie retention for fscache_objects, fixing oops (David Howells) [1130457 1204964]
-- [fs] fs-cache: Fix object state machine to have separate work and wait states (David Howells) [1129693 1130457 1204964]
-- [fs] fs-cache: Wrap checks on object state (David Howells) [1130457 1204964]
-- [fs] fs-cache: Uninline fscache_object_init() (David Howells) [1130457 1204964]
-- [fs] fs-cache: Don't sleep in page release if __GFP_FS is not set (David Howells) [1130457 1204964]
-- [fs] cachefiles: name i_mutex lock class explicitly (David Howells) [1130457 1204964]
-- [fs] fscache: remove spin_lock() from the condition in while() (David Howells) [1130457 1204964]
-- [kernel] wait: fix new kernel-doc warning in wait.c (David Howells) [1130457 1204964]
-- [kernel] wait: Fix __wait_on_atomic_t() to call the action func if the counter != 0 (David Howells) [1130457 1204964]
-
-* Wed Jun 10 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-263.el7]
-- [fs] pipe: fix pipe corruption and iovec overrun on partial copy (Seth Jennings) [1198843] {CVE-2015-1805}
-- [fs] xfs: add RENAME_WHITEOUT support (Carlos Maiolino) [1158888]
-- [fs] xfs: make xfs_cross_rename() complete fully (Carlos Maiolino) [1158888]
-- [fs] xfs: factor out xfs_finish_rename() (Carlos Maiolino) [1158888]
-- [fs] xfs: cleanup xfs_rename error handling (Carlos Maiolino) [1158888]
-- [fs] xfs: clean up inode locking for RENAME_WHITEOUT (Carlos Maiolino) [1158888]
-- [fs] xfs: inodes are new until the dentry cache is set up (Carlos Maiolino) [1158888]
-- [fs] xfs: fix tmpfile/selinux deadlock and initialize security (Carlos Maiolino) [1158888]
-- [fs] allow the temp files created by open() to be linked to (Carlos Maiolino) [1158888]
-- [fs] xfs: allow linkat() on O_TMPFILE files (Carlos Maiolino) [1158888]
-- [fs] xfs: add O_TMPFILE support (Carlos Maiolino) [1158888]
-- [fs] xfs: Add support to RENAME_EXCHANGE flag (Carlos Maiolino) [1158888]
-- [fs] xfs: Make xfs_vn_rename compliant with renameat2() syscall (Carlos Maiolino) [1158888]
-- [fs] xfs: Wrap dir inode operations inside inode_operation_wrapper (Carlos Maiolino) [1158888]
-- [kvm] ppc: book3s hv: Endian fix for accessing VPA yield count (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix spinlock/mutex ordering issue in kvmppc_set_lpcr() (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Enable in-kernel XICS emulation by default (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Improve H_CONFER implementation (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix instruction emulation (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix endianness of instruction obtained from HEIR register (Thomas Huth) [1226884 1227323]
-- [kvm] powerpc/kvm: support to handle sw breakpoint (Thomas Huth) [1226884 1227323]
-- [kvm] powerpc/kvm: Define struct kvm_debug_exit_arch for powerpc (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Tracepoints for KVM HV guest interactions (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Simplify locking around stolen time calculations (Thomas Huth) [1226884 1227323]
-- [kvm] arch: powerpc: kvm: book3s_paired_singles.c: Remove unused function (Thomas Huth) [1226884 1227323]
-- [kvm] arch: powerpc: kvm: book3s_pr.c: Remove unused function (Thomas Huth) [1226884 1227323]
-- [kvm] arch: powerpc: kvm: book3s.c: Remove some unused functions (Thomas Huth) [1226884 1227323]
-- [kvm] arch: powerpc: kvm: book3s_32_mmu.c: Remove unused function (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix computation of tlbie operand (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Check wait conditions before sleeping in kvmppc_vcore_blocked (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix inaccuracies in ICP emulation for H_IPI (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Add missing HPTE unlock (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Only accept host PVR value for guest PVR (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Increase timeout for grabbing secondary threads (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Remove the tasklet used by the hrtimer (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Add register name when loading toc (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: pr: Handle FSCR feature deselects (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: drop duplicate tracepoint (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: hv: Remove generic instruction emulation (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Expose helper functions for data/inst faults (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Separate loadstore emulation from priv emulation (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Handle magic page in kvmppc_ld/st (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Use kvm_read_guest in kvmppc_ld (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Remove kvmppc_bad_hva() (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Move kvmppc_ld/st to common code (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Implement kvmppc_xlate for all targets (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: hv: Update compute_tlbie_rb to handle 16MB base page (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Provide different CAPs based on HV or PR mode (Thomas Huth) [1226884 1227323]
-- [kvm] Use the POWER8 Micro Partition Prefetch Engine in KVM HV on POWER8 (Thomas Huth) [1226884 1227323]
-- [kvm] Split out struct kvmppc_vcore creation to separate function (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Make kvmppc_ld return a more accurate error indication (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Fix LPCR one_reg interface (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Allow kvmppc_get_last_inst() to fail (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Remove kvmppc_read_inst() function (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Make magic page properly 4k mappable (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Add hack for split real mode (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: Stop PTE lookup on write errors (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: Deflect page write faults properly in kvmppc_st (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s pr: Fix sparse endian checks (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s pr: Handle hyp doorbell exits (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s hv: Fix tlbie compile error (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: pr: Emulate instruction counter (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: pr: Emulate virtual timebase register (Thomas Huth) [1226884 1227323]
-- [kvm] ppc: book3s: pr: Fix PURR and SPURR emulation (Thomas Huth) [1226884 1227323]
-- [x86] mm: numa: Fix kernel stack corruption in numa_init()->numa_clear_kernel_node_hotplug() (Dave Young) [1188542]
-- [x86] mm: numa: fix boot failure when all nodes are hotpluggable (Dave Young) [1188542]
-- [x86] mm: numa: use for_each_memblock() (Dave Young) [1188542]
-- [ata] ahci: avoton port-disable reset-quirk (David Milburn) [1223189]
-- [ata] libata: Blacklist queued TRIM on all Samsung 800-series (David Milburn) [1225622]
-- [pci] hotplug: Drop pointless ACPI-based "slot detection" check (Jarod Wilson) [1211805]
-- [block] loop: remove (now) unused 'out' label (Jarod Wilson) [1182243]
-- [block] s390: dasd: remove obsolete while -EBUSY loop (Jarod Wilson) [1182243]
-- [block] s390: dasd_genhd: convert to blkdev_reread_part (Jarod Wilson) [1182243]
-- [block] nbd: convert to blkdev_reread_part() (Jarod Wilson) [1182243]
-- [block] loop: fix another reread part failure (Jarod Wilson) [1182243]
-- [block] loop: don't hold lo_ctl_mutex in lo_open (Jarod Wilson) [1182243]
-- [block] replace trylock with mutex_lock in blkdev_reread_part() (Jarod Wilson) [1182243]
-- [block] export blkdev_reread_part() and __blkdev_reread_part() (Jarod Wilson) [1182243]
-
-* Mon Jun 08 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-262.el7]
-- [drm] upstream sync to 4.0 (Rob Clark) [1195474]
-- [drm] upstream sync to 3.19.0 (Rob Clark) [1195473]
-- [drm] upstream sync to 3.18.0 (Rob Clark) [1195472]
-- [drm] upstream sync to 3.17.0 (Rob Clark) [1195471]
-- [drm] add drm_backport (Rob Clark) [1195471]
-- [kernel] implement DIV_ROUND_CLOSEST_ULL (Rob Clark) [1195471]
-- [mm] mmu_notifier: add call_srcu and sync function for listener to delay call and sync (Rob Clark) [1195471]
-- [kernel] time: Export nsecs_to_jiffies() (Rob Clark) [1195471]
-- [kernel] time: export nsec_to_jiffies64 (Rob Clark) [1195471]
-- [acpi] pm: Export acpi_target_system_state() to modules (Rob Clark) [1195471]
-- [base] component: fix bug with legacy API (Rob Clark) [1195471]
-- [base] component: add support for component match array (Rob Clark) [1195471]
-- [base] component: ignore multiple additions of the same component (Rob Clark) [1195471]
-- [base] component: fix missed cleanup in case of devres failure (Rob Clark) [1195471]
-- [base] fix devres handling for master device (Rob Clark) [1195471]
-- [base] provide an infrastructure for componentised subsystems (Rob Clark) [1195471]
-- [kernel] seqcount: backport __seqcount_init() (Rob Clark) [1195471]
-- [drm] vgaswitcheroo: add vga_switcheroo_fini_domain_pm_ops (Rob Clark) [1195471]
-- [netdrv] myri10ge: check for DMA mapping errors (Stanislaw Gruszka) [1120674]
-- [cpufreq] powernv: Add pr_warn() on OPAL firmware failures (Steve Best) [1224148]
-- [x86] perf: uncore: Move uncore_box_init() out of driver initialization (Jiri Olsa) [1220682]
-- [input] elantech - fix semi-mt protocol for v3 HW (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix absolute mode setting on some ASUS laptops (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - add more Fujtisu notebooks to force crc_enabled (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - support new ICs types for version 4 (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - trust firmware about trackpoint presence (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - provide a sysfs knob for crc_enabled (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - report the middle button of the touchpad (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix crc_enabled for Fujitsu H730 (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - use elantech_report_trackpoint for hardware v4 too (Benjamin Tissoires) [1157840 1188234]
-- [input] add missing POINTER / DIRECT properties to a bunch of drivers (Benjamin Tissoires) [1157840 1188234]
-- [input] add INPUT_PROP_POINTING_STICK property (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix detection of touchpad on ASUS s301l (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - add support for trackpoint found on some v3 models (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - reset the device when elantech probe fails (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - don't set bit 1 of reg_10 when the no_hw_res quirk is set (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - deal with clickpads reporting right button events (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix touchpad initialization on Gigabyte U2442 (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - add support for newer elantech touchpads (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - improve clickpad detection (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - add support for newer (August 2013) devices (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix packet check for v3 and v4 hardware (Benjamin Tissoires) [1157840 1188234]
-- [input] elantech - fix for newer hardware versions (v7) (Benjamin Tissoires) [1157840 1188234]
-- [x86] kvm: zero kvmclock_offset when vcpu0 initializes kvmclock system MSR (Marcelo Tosatti) [1184155]
-- [x86] kvmclock: set scheduler clock stable (Marcelo Tosatti) [1184155]
-- [x86] kvmclock: add flag to indicate pvclock counts from zero (Marcelo Tosatti) [1184155]
-- [pci] Expose pci_load_saved_state for public consumption (Myron Stowe) [1202603]
-- [iommu] vt-d: Check return value of acpi_bus_get_device() (Myron Stowe) [1205900]
-- [iommu] vt-d: Remove unused variable (Myron Stowe) [1225193]
-- [iommu] vt-d: Detach domain *only* from attached iommus (Myron Stowe) [1225193]
-- [iommu] core: Check for the right function pointer in iommu_map() (Myron Stowe) [1225193]
-- [iommu] amd: Fix cleanup_domain for mass device removal (Myron Stowe) [1225193]
-- [iommu] vt-d: Defer domain removal if device is assigned to a driver (Myron Stowe) [1225193]
-- [iommu] powerpc/powernv: Fix IOMMU group lost (Myron Stowe) [1222546]
-- [iommu] vt-d: Fix race setting IRQ CPU affinity while freeing IRQ (Myron Stowe) [1225193]
-- [iommu] amd: Fix 2 typos in comments (Myron Stowe) [1225193]
-- [iommu] amd: Fix device_state reference counting (Myron Stowe) [1225193]
-- [iommu] amd: Remove change_pte mmu_notifier call-back (Myron Stowe) [1225193]
-- [iommu] amd: Don't set pasid_state->mm to NULL in unbind_pasid (Myron Stowe) [1225193]
-- [iommu] vt-d: Fix issue in computing domain's iommu_snooping flag (Myron Stowe) [1225193]
-- [iommu] vt-d: Introduce helper function iova_size() to improve code readability (Myron Stowe) [1225193]
-- [iommu] vt-d: Introduce helper domain_pfn_within_range() to simplify code (Myron Stowe) [1225193]
-- [iommu] vt-d: Simplify intel_unmap_sg() and kill duplicated code (Myron Stowe) [1225193]
-- [iommu] vt-d: Change iommu_enable/disable_translation to return void (Myron Stowe) [1225193]
-- [iommu] vt-d: Simplify include/linux/dmar.h (Myron Stowe) [1225193]
-- [iommu] vt-d: Avoid freeing virtual machine domain in free_dmar_iommu() (Myron Stowe) [1225193]
-- [iommu] vt-d: Fix possible invalid memory access caused by free_dmar_iommu() (Myron Stowe) [1225193]
-- [iommu] vt-d: Allocate dynamic domain id for virtual domains only (Myron Stowe) [1225193]
-- [iommu] vt-d: Introduce helper functions to make code symmetric for readability (Myron Stowe) [1225193]
-- [iommu] vt-d: Fix dmar_domain leak in iommu_attach_device (Myron Stowe) [1225193]
-- [iommu] vt-d: Introduce helper functions to improve code readability (Myron Stowe) [1225193]
-- [iommu] vt-d: Match segment number when searching for dev_iotlb capable devices (Myron Stowe) [1225193]
-- [iommu] amd: Don't call the inv_ctx_cb when pasid is not set up (Myron Stowe) [1225193]
-- [iommu] amd: Don't hold a reference to task_struct (Myron Stowe) [1225193]
-- [iommu] amd: Don't hold a reference to mm_struct (Myron Stowe) [1225193]
-- [iommu] amd: Add pasid_state->invalid flag (Myron Stowe) [1225193]
-- [iommu] amd: Drop pasid_state reference in ppr_notifer error path (Myron Stowe) [1225193]
-- [iommu] amd: Get rid of __unbind_pasid (Myron Stowe) [1225193]
-- [iommu] amd: Don't free pasid_state in mn_release path (Myron Stowe) [1225193]
-- [iommu] amd: Don't call mmu_notifer_unregister in __unbind_pasid (Myron Stowe) [1225193]
-- [iommu] amd: Fix typo in amd_iommu_v2 driver (Myron Stowe) [1225193]
-- [iommu] amd: Drop oprofile dependency (Myron Stowe) [1225193]
-- [iommu] amd: Moving PPR fault flags macros definitions (Myron Stowe) [1225193]
-- [iommu] amd: Fix for pasid initialization (Myron Stowe) [1225193]
-- [iommu] vt-d: Remove the useless dma_pte_addr (Myron Stowe) [1225193]
-- [iommu] vt-d: Don't use magic number in dma_pte_superpage (Myron Stowe) [1225193]
-- [iommu] vt-d: Use inline function dma_pte_superpage instead of macros (Myron Stowe) [1225193]
-- [iommu] vt-d: Clear the redundant assignment for domain->nid (Myron Stowe) [1225193]
-- [iommu] vt-d: Clear the redundant assignment in dmar_enable_qi (Myron Stowe) [1225193]
-- [iommu] vt-d: Use list_for_each_safe() to simplify code (Myron Stowe) [1225193]
-- [iommu] amd: Fix small race between invalidate_range_end/start (Myron Stowe) [1225636]
-- [iommu] amd: Fix recently introduced compile warnings (Myron Stowe) [1225636]
-- [iommu] amd: Remove duplicate checking code (Myron Stowe) [1225636]
-- [iommu] amd: Handle parallel invalidate_range_start/end calls correctly (Myron Stowe) [1225636]
-- [iommu] amd: Remove IOMMUv2 pasid_state_list (Myron Stowe) [1225636]
-- [iommu] amd: Implement mmu_notifier_release call-back (Myron Stowe) [1225636]
-- [iommu] amd: Convert IOMMUv2 state_table into state_list (Myron Stowe) [1225636]
-- [iommu] amd: Don't access IOMMUv2 state_table directly (Myron Stowe) [1225636]
-
-* Fri Jun 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-261.el7]
-- [block] nvme: Add translation for block limits (David Milburn) [1179447]
-- [block] nvme: Fix error handling of class_create("nvme") (David Milburn) [1179447]
-- [block] nvme: increase depth of admin queue (David Milburn) [1179447]
-- [block] nvme: Fix PRP list calculation for non-4k system page size (David Milburn) [1179447]
-- [block] nvme: Fix blk-mq hot cpu notification (David Milburn) [1179447]
-- [block] nvme: embedded iod mask cleanup (David Milburn) [1179447]
-- [block] nvme: Freeze admin queue on device failure (David Milburn) [1179447]
-- [block] nvme: Initialize device list head before starting (David Milburn) [1179447]
-- [block] nvme: Fix potential corruption on sync commands (David Milburn) [1179447]
-- [block] nvme: Remove unused variables (David Milburn) [1179447]
-- [block] nvme: Fix scsi mode select llbaa setting (David Milburn) [1179447]
-- [block] nvme: Fix potential corruption during shutdown (David Milburn) [1179447]
-- [block] nvme: Asynchronous controller probe (David Milburn) [1179447]
-- [block] nvme: Register management handle under nvme class (David Milburn) [1179447]
-- [block] nvme: Update SCSI Inquiry VPD 83h translation (David Milburn) [1179447]
-- [block] nvme: avoid kmalloc/kfree for smaller IO (David Milburn) [1179447]
-- [block] nvme: within nvme_free_queues(), delete RCU sychro/deferred free (David Milburn) [1179447]
-- [block] nvme: cq_vector should be signed (David Milburn) [1179447]
-- [block] nvme: Fix locking on abort handling (David Milburn) [1179447]
-- [block] nvme: Start and stop h/w queues on reset (David Milburn) [1179447]
-- [block] nvme: Command abort handling fixes (David Milburn) [1179447]
-- [block] nvme: Admin queue removal handling (David Milburn) [1179447]
-- [block] nvme: Reference count admin queue usage (David Milburn) [1179447]
-- [block] nvme: Start all requests (David Milburn) [1179447]
-- [block] nvme: Fix double free irq (David Milburn) [1179447]
-- [block] nvme: fix race condition in nvme_submit_sync_cmd() (David Milburn) [1179447]
-- [block] nvme: fix retry/error logic in nvme_queue_rq() (David Milburn) [1179447]
-- [block] nvme: Fix FS mount issue (hot-remove followed by hot-add) (David Milburn) [1179447]
-- [block] nvme: fix error return checking from blk_mq_alloc_request() (David Milburn) [1179447]
-- [block] nvme: fix freeing of wrong request in abort path (David Milburn) [1179447]
-- [block] nvme: Fix command setup on IO retry (David Milburn) [1179447]
-- [block] nvme: Update module version major number (David Milburn) [1179447]
-- [block] nvme: fail pci initialization if the device doesn't have any BARs (David Milburn) [1179447]
-- [block] nvme: add ->exit_hctx() hook (David Milburn) [1179447]
-- [block] nvme: make setup work for devices that don't do INTx (David Milburn) [1179447]
-- [block] nvme: enable IO stats by default (David Milburn) [1179447]
-- [block] nvme: nvme_submit_async_admin_req() must use atomic rq allocation (David Milburn) [1179447]
-- [block] nvme: replace blk_put_request() with blk_mq_free_request() (David Milburn) [1179447]
-- [block] nvme: __nvme_submit_admin_cmd() can be static (David Milburn) [1179447]
-- [block] nvme: blk_mq_alloc_request() returns error pointers (David Milburn) [1179447]
-- [block] nvme: Convert to blk-mq (David Milburn) [1179447]
-- [block] nvme: Do not over allocate for discard requests (David Milburn) [1179447]
-- [block] nvme: Do not open disks that are being deleted (David Milburn) [1179447]
-- [block] nvme: Fix device probe waiting on kthread (David Milburn) [1179447]
-- [block] nvme: Updates for 1.1 spec (David Milburn) [1179447]
-- [block] nvme: Passthrough IOCTL for IO commands (David Milburn) [1179447]
-- [block] nvme: Add revalidate_disk callback (David Milburn) [1179447]
-- [block] nvme: Fix nvmeq waitqueue entry initialization (David Milburn) [1179447]
-- [block] nvme: Translate NVMe status to errno (David Milburn) [1179447]
-- [block] nvme: Fix SG_IO status values (David Milburn) [1179447]
-- [block] nvme: Remove duplicate compat SG_IO code (David Milburn) [1179447]
-- [block] nvme: Reference count pci device (David Milburn) [1179447]
-- [block] nvme: Replace rcu_assign_pointer() with RCU_INIT_POINTER() (David Milburn) [1179447]
-- [block] nvme: Correctly handle IOCTL_SUBMIT_IO when cpus > online queues (David Milburn) [1179447]
-- [block] nvme: Fix filesystem sync deadlock on removal (David Milburn) [1179447]
-- [block] nvme: Call nvme_free_queue directly (David Milburn) [1179447]
-- [block] nvme: Add shutdown timeout as module parameter (David Milburn) [1179447]
-- [block] nvme: Skip orderly shutdown on failed devices (David Milburn) [1179447]
-- [block] nvme: Whitespace fixes (David Milburn) [1179447]
-- [block] nvme: Use pci_stop_and_remove_bus_device_locked() (David Milburn) [1179447]
-- [block] nvme: Handling devices incapable of I/O (David Milburn) [1179447]
-- [block] nvme: Change nvme_enable_ctrl to set EN and manage CC thru ctrl_config (David Milburn) [1179447]
-- [block] nvme: Mismatched host/device page size support (David Milburn) [1179447]
-- [block] nvme: Update list of status codes (David Milburn) [1179447]
-- [block] nvme: Async event request (David Milburn) [1179447]
-- [s390] mm: implement software referenced bits (Hendrik Brueckner) [1182320]
-- [s390] mm: cleanup page table definitions (Hendrik Brueckner) [1182320]
-- [s390] mm: remove dead pfmf inline assembly (Hendrik Brueckner) [1182320]
-- [s390] dasd: add support for control unit initiated reconfiguration (Hendrik Brueckner) [1182290]
-- [s390] cio: fix multiple structure definitions (Hendrik Brueckner) [1182290]
-- [s390] perf: make print_debug_cf() static (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: fix printk format warnings (Hendrik Brueckner) [1182189]
-- [s390] use IS_ENABLED to check if a CONFIG is set to y or m (Hendrik Brueckner) [1182189]
-- [s390] perf: Add service level information for CPU-Measurement Facilities (Hendrik Brueckner) [1182189]
-- [s390] delete new instances of __cpuinit usage (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Add flag to process full SDBs only (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Add raw data sampling to support the diagnostic-sampling function (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Filter perf events based event->attr.exclude_* settings (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Detect KVM guest samples (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Add helper to read TOD from trailer entries (Hendrik Brueckner) [1182189]
-- [s390] cpum_sf: Dynamically extend the sampling buffer if overflows occur (Hendrik Brueckner) [1182189]
-- [s390] perf, oprofile: Share sampling facility (Hendrik Brueckner) [1182189]
-- [s390] perf: Improve PMU selection for PERF_COUNT_HW_CPU_CYCLES events (Hendrik Brueckner) [1182189]
-- [s390] perf: add support for the CPU-Measurement Sampling Facility (Hendrik Brueckner) [1182189]
-- [s390] irq: rework irq subclass handling (Hendrik Brueckner) [1182189]
-- [s390] cpum_cf: Export event names in sysfs (Hendrik Brueckner) [1182189]
-- [s390] oprofile: move hwsampler interfaces to cpu_mf.h (Hendrik Brueckner) [1182189]
-- [s390] hwsampler: Updated misleading member names in hws_data_entry (Hendrik Brueckner) [1182189]
-- [s390] perf: Remove print_hex_dump_bytes() debug output (Hendrik Brueckner) [1182189]
-- [s390] hypfs: Eliminate hypfs interval (Hendrik Brueckner) [1182292]
-- [s390] hypfs: Add diagnose 0c support (Hendrik Brueckner) [1182292]
-- [s390] smp: reenable smt after resume (Hendrik Brueckner) [1182149]
-- [s390] ftrace: fix crashes when switching tracers / add notrace to cpu_relax() (Hendrik Brueckner) [1182149]
-- [s390] reintroduce diag 44 calls for cpu_relax() (Hendrik Brueckner) [1182149]
-- [s390] remove diag 44 calls from cpu_relax() (Hendrik Brueckner) [1182149]
-- [s390] add SMT support (Hendrik Brueckner) [1182149]
-- [s390] process: free vx save area when releasing tasks (Hendrik Brueckner) [1102206]
-- [s390] ptrace: always include vector registers in core files (Hendrik Brueckner) [1102206]
-- [s390] simd: clear vector register pointer on fork/clone (Hendrik Brueckner) [1102206]
-- [s390] fix ptrace of user area if the inferior uses vector registers (Hendrik Brueckner) [1102206]
-- [s390] kdump: add support for vector extension (Hendrik Brueckner) [1102206]
-- [s390] disassembler: add vector instructions (Hendrik Brueckner) [1102206]
-- [s390] add support for vector extension (Hendrik Brueckner) [1102206]
-- [s390] compat: correct ucontext layout for high gprs (Hendrik Brueckner) [1102206]
-- [s390] uprobes: fix user space PER events (Hendrik Brueckner) [879647]
-- [s390] uprobes: fix kprobes dependency (Hendrik Brueckner) [879647]
-- [s390] uprobes: architecture backend for uprobes (Hendrik Brueckner) [879647]
-- [s390] uprobes: common library for kprobes and uprobes (Hendrik Brueckner) [879647]
-- [s390] ptrace: add struct psw and accessor function (Hendrik Brueckner) [879647]
-- [s390] kprobes: allow kprobes only on known instructions (Hendrik Brueckner) [879647]
-- [s390] dis: move disassembler function prototypes to proper header file (Hendrik Brueckner) [879647]
-- [s390] kprobes: use insn_length helper function (Hendrik Brueckner) [879647]
-- [s390] dis: move common definitions to a header file (Hendrik Brueckner) [879647]
-- [s390] dis: rename structures for unique types (Hendrik Brueckner) [879647]
-- [s390] mm: limit STACK_RND_MASK for compat tasks (Hendrik Brueckner) [1204860]
-- [s390] mm: align 64-bit PIE binaries to 4GB (Hendrik Brueckner) [1204860]
-- [s390] avoid z13 cache aliasing (Hendrik Brueckner) [1204860]
-- [s390] add z13 code generation support (Hendrik Brueckner) [1204860]
-- [s390] kernel: use stnsm 255 instead of stosm 0 (Hendrik Brueckner) [1204860]
-- [s390] time: use stck clock fast for do_account_vtime (Hendrik Brueckner) [1204860]
-- [s390] spinlock: optimize spin_unlock code (Hendrik Brueckner) [1204860]
-- [s390] spinlock: refactor arch_spin_lock_wait[_flags] (Hendrik Brueckner) [1204860]
-- [s390] rwlock: add missing local_irq_restore calls (Hendrik Brueckner) [1204860]
-- [s390] spinlock, rwlock: always to a load-and-test first (Hendrik Brueckner) [1204860]
-- [s390] spinlock: optimize spinlock code sequence (Hendrik Brueckner) [1204860]
-- [s390] spinlock: cleanup spinlock code (Hendrik Brueckner) [1204860]
-- [s390] enable ARCH_USE_CMPXCHG_LOCKREF (Hendrik Brueckner) [1204860]
-- [s390] fix control register update (Hendrik Brueckner) [1204860]
-- [s390] optimize control register update (Hendrik Brueckner) [1204860]
-- [s390] smp: only send external call ipi if needed (Hendrik Brueckner) [1204860]
-- [s390] ptrace: PTRACE_TE_ABORT_RAND (Hendrik Brueckner) [1204860]
-- [s390] Remove zfcpdump NR_CPUS dependency (Hendrik Brueckner) [1204860]
-- [s390] mm: do not initialize storage keys (Hendrik Brueckner) [1204860]
-- [s390] zcrypt: Add support for new crypto express (CEX5S) adapter (Hendrik Brueckner) [1182171]
-- [s390] zcrypt: Introduce new SHA-512 based Pseudo Random Generator (Hendrik Brueckner) [1182313]
-
-* Fri Jun 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-260.el7]
-- [netdrv] macvlan: fix a race on port dismantle and possible skb leaks (Herbert Xu) [971693]
-- [netdrv] macvlan: optimize the receive path (Herbert Xu) [971693]
-- [netdrv] macvlan: pass 'bool' type to macvlan_count_rx() (Herbert Xu) [971693]
-- [netdrv] macvlan: allow to enqueue broadcast pkt on virtual device (Herbert Xu) [971693]
-- [netdrv] macvlan: Fix leak and NULL dereference on error path (Herbert Xu) [971693]
-- [netdrv] macvlan: Move broadcasts into a work queue (Herbert Xu) [971693]
-- [net] core: Add __dev_forward_skb (Herbert Xu) [971693]
-- [netdrv] macvlan: Remove custom recieve and forward handlers (Herbert Xu) [971693]
-- [netdrv] macvtap: Add support of packet capture on macvtap device (Herbert Xu) [971693]
-- [netdrv] macvtap: fix two races (Herbert Xu) [971693]
-- [net] ipv4: Missing sk_nulls_node_init() in ping_unhash() (Denys Vlasenko) [1218105] {CVE-2015-3636}
-- [net] ipv6: some ipv6 statistic counters failed to disable bh (Sabrina Dubroca) [1222129]
-- [net] ipv6: move DAD and addrconf_verify processing to workqueue (Sabrina Dubroca) [1222129]
-- [net] ipv6: remove old token ipv6 address as soon as possible (Sabrina Dubroca) [1222129]
-- [net] ipv6: convert the uses of ADBG and remove the superfluous parentheses (Sabrina Dubroca) [1222129]
-- [security] selinux/nlmsg: add RTM_DELNSID (Jiri Benc) [1210260]
-- [net] netns: make nsid_lock per net (Jiri Benc) [1210260]
-- [net] netns: fix unbalanced spin_lock on error (Jiri Benc) [1210260]
-- [net] netns: return RTM_NEWNSID instead of RTM_GETNSID on a get (Jiri Benc) [1210260]
-- [net] netlink: allow to listen "all" netns (Jiri Benc) [1210260]
-- [net] netlink: rename private flags and states (Jiri Benc) [1210260]
-- [net] netns: use a spin_lock to protect nsid management (Jiri Benc) [1210260]
-- [net] netns: notify new nsid outside __peernet2id() (Jiri Benc) [1210260]
-- [net] netns: rename peernet2id() to peernet2id_alloc() (Jiri Benc) [1210260]
-- [net] netns: always provide the id to rtnl_net_fill() (Jiri Benc) [1210260]
-- [net] netns: returns always an id in __peernet2id() (Jiri Benc) [1210260]
-- [net] netns: remove duplicated include from net_namespace.c (Jiri Benc) [1210260]
-- [net] netns: allow to dump netns ids (Jiri Benc) [1210260]
-- [net] netns: notify netns id events (Jiri Benc) [1210260]
-- [net] netns: minor cleanup in rtnl_net_getid() (Jiri Benc) [1210260]
-- [net] netns: don't allocate an id for dead netns (Jiri Benc) [1210260]
-- [net] veth: set iflink to the peer veth (Jiri Benc) [1210260]
-- [net] dev: set iflink to 0 for virtual interfaces (Jiri Benc) [1210260]
-- [infiniband] ipoib: Fix ndo_get_iflink (Jiri Benc) [1210260]
-- [infiniband] ipoib: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] macvlan: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] vlan: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] ipmr,ip6mr: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] ipip, gre, vti, sit: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] sit: Fix ipip6_tunnel_lookup device matching criteria (Jiri Benc) [1210260]
-- [net] ip6tnl, gre6, vti6: implement ndo_get_iflink (Jiri Benc) [1210260]
-- [net] introduce dev_get_iflink() (Jiri Benc) [1210260]
-- [net] Kill hold_net release_net (Jiri Benc) [1210260]
-- [net] Handle unregister properly when netdev namespace change fails. (Jiri Benc) [1210260]
-- [net] rtnetlink: call ->dellink on failure when ->newlink exists (Jiri Benc) [1210260]
-- [net] do not use rcu in rtnl_dump_ifinfo() (Jiri Benc) [1210260]
-- [net] Verify permission to link_net in newlink (Jiri Benc) [1210260]
-- [net] Verify permission to dest_net in newlink (Jiri Benc) [1210260]
-- [net] rtnetlink: pass link_net to the newlink handler (Jiri Benc) [1210260]
-- [net] vxlan: setup the right link netns in newlink hdlr (Jiri Benc) [1210260]
-- [net] vxlan: advertise link netns in fdb messages (Jiri Benc) [1210260]
-- [net] vxlan: advertise netns of vxlan dev in fdb msg (Jiri Benc) [1210260]
-- [net] veth: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] macvlan: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] macvlan: introduce macvlan_dev_real_dev() helper function (Jiri Benc) [1210260]
-- [net] vlan: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] ip6gretap: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] rtnl: fix error path when adding an iface with a link net (Jiri Benc) [1210260]
-- [net] rtnl: allow to create device with IFLA_LINK_NETNSID set (Jiri Benc) [1210260]
-- [net] tunnels: advertise link netns via netlink (Jiri Benc) [1210260]
-- [net] rtnl: add link netns id to interface messages (Jiri Benc) [1210260]
-- [net] netns: add rtnl cmd to add and get peer netns ids (Jiri Benc) [1210260]
-- [security] selinux/nlmsg: add RTM_NEWNSID and RTM_GETNSID (Jiri Benc) [1210260]
-- [net] add a pre-check of net_ns in sk_change_net() (Jiri Benc) [1210260]
-- [net] netns: remove one sparse warning (Jiri Benc) [1210260]
-- [net] netlink: Fix do_one_broadcast() prototype. (Jiri Benc) [1210260]
-- [net] net_namespace: trivial cleanup (Jiri Benc) [1210260]
-- [net] dst: no need to take reference on DST_NOCACHE dsts (Marcelo Leitner) [1206570]
-- [net] skbuff: Do not scrub skb mark within the same name space (Marcelo Leitner) [1206570]
-- [net] ipv6: invert join/leave anycast rtnl/socket locking order (Marcelo Leitner) [1206570]
-- [net] ipv6: restore the behavior of ipv6_sock_ac_drop() (Marcelo Leitner) [1206570]
-- [net] ipv6: remove ipv6_sk_ac_lock (Marcelo Leitner) [1206570]
-- [net] ipv6: drop useless rcu_read_lock() in anycast (Marcelo Leitner) [1206570]
-- [net] vxlan: fix a free after use (Marcelo Leitner) [1206570]
-- [net] vxlan: do not exit on error in vxlan_stop() (Marcelo Leitner) [1206570]
-- [net] vxlan: fix indentation (Marcelo Leitner) [1206570]
-- [net] vxlan: simplify if clause in dev_close (Marcelo Leitner) [1206570]
-- [net] vxlan: fix possible use of uninitialized in vxlan_igmp_{join, leave} (Marcelo Leitner) [1206570]
-- [net] vxlan: Move socket initialization to within rtnl scope (Marcelo Leitner) [1206570]
-- [net] ipv4, ipv6: kill ip_mc_{join, leave}_group and ipv6_sock_mc_{join, drop} (Marcelo Leitner) [1206570]
-- [net] ipv4, ipv6: grab rtnl before locking the socket (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: fix error code when tunnel exists (Marcelo Leitner) [1206570]
-- [net] vxlan: fix wrong usage of VXLAN_VID_MASK (Marcelo Leitner) [1206570]
-- [net] vxlan: Correct path typo in comment (Marcelo Leitner) [1206570]
-- [net] ipv6: igmp: add __ipv6_sock_mc_join and __ipv6_sock_mc_drop (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: remove dead debug code from ip6_tunnel.c (Marcelo Leitner) [1206570]
-- [net] igmp: add __ip_mc_{join|leave}_group() (Marcelo Leitner) [1206570]
-- [net] igmp: fix the problem when mc leave group (Marcelo Leitner) [1206570]
-- [net] gue: Use checksum partial with remote checksum offload (Marcelo Leitner) [1206570]
-- [net] vxlan: Use checksum partial with remote checksum offload (Marcelo Leitner) [1206570]
-- [net] Infrastructure for CHECKSUM_PARTIAL with remote checsum offload (Marcelo Leitner) [1206570]
-- [net] Use more bit fields in napi_gro_cb (Marcelo Leitner) [1206570]
-- [net] Clarify meaning of CHECKSUM_PARTIAL for receive path (Marcelo Leitner) [1206570]
-- [net] gro: Fix remcsum in GRO path to not change packet (Marcelo Leitner) [1206570]
-- [net] vxlan: Wrong type passed to pIS (Marcelo Leitner) [1206570]
-- [net] vxlan: Only set has-GBP bit in header if any other bits would be set (Marcelo Leitner) [1206570]
-- [net] add skb functions to process remote checksum offload (Marcelo Leitner) [1206570]
-- [net] vxlan: Eliminate dependency on UDP socket in transmit path (Marcelo Leitner) [1206570]
-- [net] udp: Do not require sock in udp_tunnel_xmit_skb (Marcelo Leitner) [1206570]
-- [net] vxlan: Only bind to sockets with compatible flags enabled (Marcelo Leitner) [1206570]
-- [net] vxlan: Group Policy extension (Marcelo Leitner) [1206570]
-- [net] vxlan: Remote checksum offload (Marcelo Leitner) [1206570]
-- [net] udp: pass udp_offload struct to UDP gro callbacks (Marcelo Leitner) [1206570]
-- [net] vxlan: Improve support for header flags (Marcelo Leitner) [1206570]
-- [net] ip: Move checksum convert defines to inet (Marcelo Leitner) [1206570]
-- [net] Add Transparent Ethernet Bridging GRO support (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix double free of skb (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Add missing validation of encap type to ip_tunnel_encap_setup() (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Add sanity checks to ip_tunnel_encap_add_ops() (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix race condition between vxlan_sock_add and vxlan_sock_release (Marcelo Leitner) [1206570]
-- [net] gue: Call remcsum_adjust (Marcelo Leitner) [1206570]
-- [net] Add remcsum_adjust as common function for remote checksum offload (Marcelo Leitner) [1206570]
-- [net] ip6_udp_tunnel: Fix checksum calculation (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix boolean flip in VXLAN_F_UDP_ZERO_CSUM6_[TX|RX] (Marcelo Leitner) [1206570]
-- [net] vxlan: Inline vxlan_gso_check(). (Marcelo Leitner) [1206570]
-- [net] vxlan: Add vxlan_gso_check() helper (Marcelo Leitner) [1206570]
-- [net] fou: Fix no return statement warning for !CONFIG_NET_FOU_IP_TUNNELS (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Ops registration for secondary encap (fou, gue) (Marcelo Leitner) [1206570]
-- [net] udp_tunnel: Add SKB_GSO_UDP_TUNNEL during gro_complete (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix to enable UDP checksums on interface (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: Add support for wildcard tunnel endpoints. (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: Allow sending packets through tunnels with wildcard endpoints (Marcelo Leitner) [1206570]
-- [net] gue: Receive side of remote checksum offload (Marcelo Leitner) [1206570]
-- [net] gue: TX support for using remote checksum offload option (Marcelo Leitner) [1206570]
-- [net] gso: fix kABI (Marcelo Leitner) [1206570]
-- [net] udp: Changes to udp_offload to support remote checksum offload (Marcelo Leitner) [1206570]
-- [net] gue: Protocol constants for remote checksum offload (Marcelo Leitner) [1206570]
-- [net] gue: Add infrastructure for flags and options (Marcelo Leitner) [1206570]
-- [net] udp: Offload outer UDP tunnel csum if available (Marcelo Leitner) [1206570]
-- [net] fou: Move fou_build_header into fou.c and refactor (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: Use ip6_tnl_dev_init as the ndo_init function. (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: allow to change mode for the ip6tnl0 (Marcelo Leitner) [1206570]
-- [net] fou: fix a potential use after free in fou.c (Marcelo Leitner) [1206570]
-- [net] vxlan: using pskb_may_pull as early as possible (Marcelo Leitner) [1206570]
-- [net] vxlan: fix a use after free in vxlan_encap_bypass (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Add GUE support (Marcelo Leitner) [1206570]
-- [net] gue: Receive side for Generic UDP Encapsulation (Marcelo Leitner) [1206570]
-- [net] fou: eliminate IPv4, v6 specific GRO functions (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Account for secondary encapsulation header in max_headroom (Marcelo Leitner) [1206570]
-- [net] vxlan: Set inner protocol before transmit (Marcelo Leitner) [1206570]
-- [net] gre: Set inner protocol in v4 and v6 GRE transmit (Marcelo Leitner) [1206570]
-- [net] ipip: Set inner IP protocol in ipip (Marcelo Leitner) [1206570]
-- [net] sit: Set inner IP protocol in sit (Marcelo Leitner) [1206570]
-- [net] udp: Generalize skb_udp_segment (Marcelo Leitner) [1206570]
-- [net] Remove gso_send_check as an offload callback (Marcelo Leitner) [1206570]
-- [net] udp: move logic out of udp[46]_ufo_send_check (Marcelo Leitner) [1206570]
-- [net] tcp: move logic out of tcp_v[64]_gso_send_check (Marcelo Leitner) [1206570]
-- [net] vxlan: Fix bug introduced by commit acbf74a76300 (Marcelo Leitner) [1206570]
-- [net] udp: Need to make ip6_udp_tunnel.c have GPL license (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Changes to ip_tunnel to support foo-over-udp encapsulation (Marcelo Leitner) [1206570]
-- [net] fou: Add GRO support (Marcelo Leitner) [1206570]
-- [net] fou: Support for foo-over-udp RX path (Marcelo Leitner) [1206570]
-- [net] Export inet_offloads and inet6_offloads (Marcelo Leitner) [1206570]
-- [net] vxlan: Refactor vxlan driver to make use of the common UDP tunnel functions (Marcelo Leitner) [1206570]
-- [net] udp_tunnel: Add a few more UDP tunnel APIs (Marcelo Leitner) [1206570]
-- [net] udp_tunnel: Seperate ipv6 functions into its own file. (Marcelo Leitner) [1206570]
-- [net] ipv6: drop some rcu_read_lock in mcast (Marcelo Leitner) [1206570]
-- [net] ipv6: drop ipv6_sk_mc_lock in mcast (Marcelo Leitner) [1206570]
-- [net] ipv4: udp4_gro_complete() is static (Marcelo Leitner) [1206570]
-- [net] ipv6: fix rtnl locking in setsockopt for anycast and multicast (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix tunnels with "local any remote $remote_ip" (Marcelo Leitner) [1206570]
-- [net] neighbour: fix ndm_type type error issue (Marcelo Leitner) [1206570]
-- [net] vxlan: Call udp_sock_create (Marcelo Leitner) [1206570]
-- [net] udp: Add udp_sock_create for UDP tunnels to open listener socket (Marcelo Leitner) [1206570]
-- [net] udp: Move udp_tunnel_segment into udp_offload.c (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix ip_tunnel_lookup (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix dst race in sk_dst_get() (Marcelo Leitner) [1206570]
-- [net] vxlan: use dev->needed_headroom instead of dev->hard_header_len (Marcelo Leitner) [1206570]
-- [net] ip_vti: Fix 'ip tunnel add' with 'key' parameters (Marcelo Leitner) [1206570]
-- [net] bridge: Add bridge ifindex to bridge fdb notify msgs (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Initialize the fallback device properly (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: ip_tunnels: disable cache for nbma gre tunnels (Marcelo Leitner) [1206570]
-- [net] vxlan, bridge: get rid of SET_ETHTOOL_OPS (Marcelo Leitner) [1206570]
-- [net] vxlan: add x-netns support (Marcelo Leitner) [1206570]
-- [net] vxlan: ensure to advertise the right fdb remote (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: use the right netns in ioctl handler (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: use the right netns in ioctl handler (Marcelo Leitner) [1206570]
-- [net] sit: fix panic with route cache in ip tunnels (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Move ip_tunnel_get_stats64 into ip_tunnel_core.c (Marcelo Leitner) [1206570]
-- [net] ip6_gre: use netdev_alloc_pcpu_stats() (Marcelo Leitner) [1206570]
-- [net] introduce netdev_alloc_pcpu_stats() for drivers (Marcelo Leitner) [1206570]
-- [net] unify the pcpu_tstats and br_cpu_netstats as one (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix panic in ip_tunnel_xmit() (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: remove the useless argument from ip_tunnel_hash() (Marcelo Leitner) [1206570]
-- [net] vxlan: add vxlan description (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix a dst leak in tunnels (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: fix sparse non static symbol warning (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Use percpu Cache route in IP tunnels (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: Cache dst in tunnels (Marcelo Leitner) [1206570]
-- [net] ipv6: fix the use of pcpu_tstats in ip6_tunnel (Marcelo Leitner) [1206570]
-- [net] vxlan: leave multicast group when vxlan device down (Marcelo Leitner) [1206570]
-- [net] ipv6: move IPV6_TCLASS_MASK definition in ipv6.h (Marcelo Leitner) [1206570]
-- [net] ipv6: add ip6_flowlabel helper (Marcelo Leitner) [1206570]
-- [net] do not ignore dmac in dev_forward_skb() (Marcelo Leitner) [1206570]
-- [net] Explicitly initialize u64_stats_sync structures for lockdep (Marcelo Leitner) [1206570]
-- [net] ipv6: Allow the MTU of ipip6 tunnel to be set below 1280 (Marcelo Leitner) [1206570]
-- [net] tunnels: harmonize cleanup done on skb on rx path (Marcelo Leitner) [1206570]
-- [net] tunnels: harmonize cleanup done on skb on xmit path (Marcelo Leitner) [1206570]
-- [net] vxlan: remove net arg from vxlan[6]_xmit_skb() (Marcelo Leitner) [1206570]
-- [net] vxlan: Convert uses of compare_ether_addr to ether_addr_equal (Marcelo Leitner) [1206570]
-- [net] ip6_tunnel: ensure to always have a link local address (Marcelo Leitner) [1206570]
-- [net] vxlan: using kfree_rcu() to simplify the code (Marcelo Leitner) [1206570]
-- [net] ip_tunnel: use net_eq() helper to check netns (Marcelo Leitner) [1206570]
-- [net] move skb_scrub_packet() after eth_type_trans() (Marcelo Leitner) [1206570]
-- [net] ipv6: fix ipv6_cow_metrics for non DST_HOST case (Marcelo Leitner) [1199862]
-- [netdrv] pppoe: drop pppoe device in pppoe_unbind_sock_work (Beniamino Galvani) [1221922]
-- [net] udp_diag: Fix socket skipping within chain (Thadeu Lima de Souza Cascardo) [1179617]
-- [net] ptp: use the 64 bit get/set time methods for the posix clock (Jiri Benc) [1217408]
-- [net] ptp: use the 64 bit gettime method for the SYS_OFFSET ioctl (Jiri Benc) [1217408]
-- [net] ptp: introduce get/set time methods with explicit 64 bit seconds (Jiri Benc) [1217408]
-- [kernel] timekeeping: Provide timespec64 based interfaces (Jiri Benc) [1217408]
-- [kernel] timekeeping: Convert timekeeping core to use timespec64s (Jiri Benc) [1217408]
-- [net] tcp: mitigate ACK loops for connections as tcp_timewait_sock (Florian Westphal) [1191261]
-- [net] tcp: mitigate ACK loops for connections as tcp_sock (Florian Westphal) [1191261]
-- [net] tcp: mitigate ACK loops for connections as tcp_request_sock (Florian Westphal) [1191261]
-- [net] tcp: helpers to mitigate ACK loops by rate-limiting out-of-window dupacks (Florian Westphal) [1191261]
-- [net] ipv6: Don't reduce hop limit for an interface (Denys Vlasenko) [1208496] {CVE-2015-2922}
-- [x86] mm: Clean up the TLB flushing code (Larry Woodman) [1172891]
-- [powerpc] Add a test of the switch_endian() syscall (Gustavo Duarte) [1221073]
-- [powerpc] Add a proper syscall for switching endianness (Gustavo Duarte) [1221073]
-- [powerpc] kernel: Make syscall_exit a local label (Gustavo Duarte) [1221073]
-- [powerpc] Remove old compile time disabled syscall tracing code (Gustavo Duarte) [1221073]
-- [scsi] libsas: Fix Kernel Crash in smp_execute_task (David Milburn) [1226041]
-- [scsi] mvsas: fix panic on expander attached SATA devices (David Milburn) [1226041]
-- [scsi] mvsas: Fix for possible null pointer dereference (David Milburn) [1226041]
-- [netdrv] hyperv: Add IPv6 into the hash computation for vRSS (Jason Wang) [1174846]
-- [x86] use optimized ioresource lookup in ioremap function (Frank Ramsay) [1217221]
-- [kernel] optimize resource lookups for ioremap (Frank Ramsay) [1217221]
-- [x86] ioremap: Speed up check for RAM pages (Frank Ramsay) [1217221]
-- [fs] exec: take i_mutex during prepare_binprm for set[ug]id executables (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [kernel] locking: Remove atomicy checks from {READ, WRITE}_ONCE (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [kernel] make READ_ONCE() valid on const arguments (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [kernel] Change ASSIGN_ONCE(val, x) to WRITE_ONCE(x, val) (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [kernel] Provide READ_ONCE and ASSIGN_ONCE (Mateusz Guzik) [1216270] {CVE-2015-3339}
-- [powerpc] powernv: Add OPAL check token call (Gustavo Duarte) [1223784]
-- [powerpc] pseries: Correct cpu affinity for dlpar added cpus (Steve Best) [1226527]
-- [thermal] intel_powerclamp: add id for Avoton SoC (Steve Best) [1225606]
-- [platform] hp-wireless: new driver for hp wireless button for Windows 8 (Stanislaw Gruszka) [1174328]
-- [include] pci-dma-compat: add pci_zalloc_consistent helper (Maurizio Lombardi) [1193494]
-- [powerpc] kvm: book3s-hv: ptes are big endian (Thomas Huth) [1222472]
-
-* Wed Jun 03 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-259.el7]
-- [scsi] qla4xxx: v5.04.00.00.07.02-k0 (Chad Dupuis) [1225437]
-- [scsi] qla4xxx: fix get_host_stats error propagation (Chad Dupuis) [1225437]
-- [scsi] qla4xxx: check the return value of dma_alloc_coherent() (Chad Dupuis) [1225437]
-- [scsi] qla4xxx: ql4_mbx.c: Cleaning up missing null-terminate in conjunction with strncpy (Chad Dupuis) [1225437]
-- [scsi] qla4xxx: ql4_os.c: Cleaning up missing null-terminate in conjunction with strncpy (Chad Dupuis) [1225437]
-- [net] bnx2-cnic: Driver Version Update (Maurizio Lombardi) [1187299]
-- [net] bnx2-cnic: Driver Rebranding Changes (Maurizio Lombardi) [1187299]
-- [net] cnic: Update the rcu_access_pointer() usages (Maurizio Lombardi) [1187299]
-- [net] cnic: Cleanup CONFIG_IPV6 & VLAN check (Maurizio Lombardi) [1187299]
-- [scsi] aacraid: driver version change (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: AIF raw device remove support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: performance improvement changes (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: IOCTL fix (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: IOP RESET command handling changes (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: 240 simple volume support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: vpd page code 0x83 support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: MSI-x support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: 4KB sector support (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: IOCTL pass-through command fix (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: AIF support for SES device add/remove (Rajinikanth Pandurangan) [1205339]
-- [scsi] aacraid: remove deprecated IRQF_DISABLED from aacraid (Rajinikanth Pandurangan) [1205339]
-- [scsi] hpsa: Cleanup pci_id entries (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Update driver revision to 3.4.4-1-RH4 (Joseph Szczypek) [1181313]
-- [scsi] hpsa: correct compiler warnings introduced by hpsa-add-local-workqueue patch (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Use local workqueues instead of system workqueues (Joseph Szczypek) [1181313]
-- [scsi] hpsa: detect and report failures changing controller transport modes (Joseph Szczypek) [1181313]
-- [scsi] hpsa: shorten the wait for the CISS doorbell mode change ack (Joseph Szczypek) [1181313]
-- [scsi] hpsa: refactor duplicated scan completion code into a new routine (Joseph Szczypek) [1181313]
-- [scsi] hpsa: move SG descriptor set-up out of hpsa_scatter_gather() (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not use function pointers in fast path command submission (Joseph Szczypek) [1181313]
-- [scsi] hpsa: print CDBs instead of kernel virtual addresses for uncommon errors (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not use a void pointer for scsi_cmd field of struct CommandList (Joseph Szczypek) [1181313]
-- [scsi] hpsa: return failed from device reset/abort handlers (Joseph Szczypek) [1181313]
-- [scsi] hpsa: check for ctlr lockup after command allocation in main io path (Joseph Szczypek) [1181313]
-- [scsi] hpsa: guard against overflowing raid map array (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not ack controller events on controllers that do not support it (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove incorrect BUG_ONs checking for raid offload enable (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not check for msi(x) in interrupt_pending (Joseph Szczypek) [1181313]
-- [scsi] hpsa: slightly optimize SA5_performant_completed (Joseph Szczypek) [1181313]
-- [scsi] hpsa: count passthru cmds with atomics, not a spin locked int (Joseph Szczypek) [1181313]
-- [scsi] hpsa: optimize cmd_alloc function by remembering last allocation (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix race between abort handler and main i/o path (Joseph Szczypek) [1181313]
-- [scsi] hpsa: honor queue depth of physical devices (Joseph Szczypek) [1181313]
-- [scsi] hpsa: use workqueue to resubmit failed ioaccel commands (Joseph Szczypek) [1181313]
-- [scsi] hpsa: factor out hpsa_ciss_submit function (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not request device rescan on every ioaccel path error (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not queue commands internally in driver (Joseph Szczypek) [1181313]
-- [scsi] hpsa: get rid of cmd_special_alloc and cmd_special_free (Joseph Szczypek) [1181313]
-- [scsi] hpsa: reserve some commands for use by driver (Joseph Szczypek) [1181313]
-- [scsi] hpsa: avoid unneccesary calls to resource freeing functions (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix memory leak in hpsa_alloc_cmd_pool (Joseph Szczypek) [1181313]
-- [scsi] hpsa: report allocation failures while allocating SG chain blocks (Joseph Szczypek) [1181313]
-- [scsi] hpsa: pass error from pci_set_consistent_dma_mask from hpsa_message (Joseph Szczypek) [1181313]
-- [scsi] hpsa: rename hpsa_request_irq to hpsa_request_irqs (Joseph Szczypek) [1181313]
-- [scsi] hpsa: report failure to ioremap config table (Joseph Szczypek) [1181313]
-- [scsi] hpsa: trivial message and comment clean ups (Joseph Szczypek) [1181313]
-- [scsi] hpsa: refactor hpsa_find_board_params() to encapsulate legacy test (Joseph Szczypek) [1181313]
-- [scsi] hpsa: downgrade the Waiting for no-op print to dev_info (Joseph Szczypek) [1181313]
-- [scsi] hpsa: propagate return value from board ID lookup (Joseph Szczypek) [1181313]
-- [scsi] hpsa: propagate hard_reset failures in reset_devices mode (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove 0x from queue depth print which is in decimal (Joseph Szczypek) [1181313]
-- [scsi] hpsa: notice all request_irq errors (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Fix -Wunused-but-set-variable warning (Joseph Szczypek) [1181313]
-- [scsi] hpsa: rename free_irqs to hpsa_free_irqs (Joseph Szczypek) [1181313]
-- [scsi] hpsa: adjust RAID-1, RAID-1ADM, and RAID-6 names (Joseph Szczypek) [1181313]
-- [scsi] hpsa: change how SA controllers are reset (Joseph Szczypek) [1181313]
-- [scsi] hpsa: turn off interrupts when kdump starts (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix memory leak in kdump hard reset (Joseph Szczypek) [1181313]
-- [scsi] hpsa: correct endian sparse warnings (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove spin lock around command allocation (Joseph Szczypek) [1181313]
-- [scsi] hpsa: always call pci_set_master after pci_enable_device (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Convert SCSI LLD ->queuecommand() for host_lock less operation (Joseph Szczypek) [1181313]
-- [scsi] hpsa: do not be so noisy about check conditions (Joseph Szczypek) [1181313]
-- [scsi] hpsa: use atomics for commands_outstanding (Joseph Szczypek) [1181313]
-- [scsi] hpsa: get rid of type/attribute/direction bit field where possible (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix endianness issue with scatter gather elements (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix allocation sizes for CISS_REPORT_LUNs commands (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove 'action required' phrasing (Joseph Szczypek) [1181313]
-- [scsi] hpsa: correct off-by-one sizing of chained SG block (Joseph Szczypek) [1181313]
-- [scsi] hpsa: fix a couple pci id table mistakes (Joseph Szczypek) [1181313]
-- [scsi] hpsa: remove dev_warn prints from RAID-1ADM (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Clean up warnings from sparse (Joseph Szczypek) [1181313]
-- [scsi] maintainers: change hpsa and cciss maintainer (Joseph Szczypek) [1181313]
-- [scsi] hpsa: add missing pci_set_master in kdump path (Joseph Szczypek) [1181313]
-- [scsi] hpsa: refine the pci enable/disable handling (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Use pci_enable_msix_range() instead of pci_enable_msix() (Joseph Szczypek) [1181313]
-- [scsi] hpsa: Fallback to MSI rather than to INTx if MSI-X failed (Joseph Szczypek) [1181313]
-
-* Mon Jun 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-258.el7]
-- [kvm] avoid page allocation failure in kvm_set_memory_region() (Bandan Das) [1209995]
-- [kvm] x86: call irq notifiers with directed EOI (Bandan Das) [1209995]
-- [kvm] nvmx: mask unrestricted_guest if disabled on L0 (Bandan Das) [1209995]
-- [kvm] svm: fix interrupt injection (apic->isr_count always 0) (Bandan Das) [1209995]
-- [kvm] emulate: fix CMPXCHG8B on 32-bit hosts (Bandan Das) [1209995]
-- [kvm] add halt_poll_ns module parameter (Bandan Das) [1198205 1209995]
-- [kvm] x86: revert "add method to test PIR bitmap vector" (Bandan Das) [1209995]
-- [kvm] vmx: Add PML support in VMX (Bandan Das) [1209995]
-- [kvm] x86: Add new dirty logging kvm_x86_ops for PML (Bandan Das) [1209995]
-- [kvm] x86: Change parameter of kvm_mmu_slot_remove_write_access (Bandan Das) [1209995]
-- [kvm] mmu: Explicitly set D-bit for writable spte (Bandan Das) [1209995]
-- [kvm] mmu: Add mmu help functions to support PML (Bandan Das) [1209995]
-- [kvm] Rename kvm_arch_mmu_write_protect_pt_masked to be more generic for log dirty (Bandan Das) [1209995]
-- [kvm] update_memslots: clean flags for invalid memslots (Bandan Das) [1209995]
-- [kvm] Remove unused config symbol (Bandan Das) [1209995]
-- [kvm] fix "Should it be static?" warnings from sparse (Bandan Das) [1209995]
-- [kvm] Optimize TLB flush in kvm_mmu_slot_remove_write_access (Bandan Das) [1209995]
-- [kvm] x86: kvm: vmx: Remove some unused functions (Bandan Das) [1209995]
-- [kvm] x86: switch to kvm_get_dirty_log_protect (Bandan Das) [1209995]
-- [kvm] Add generic support for dirty page logging (Bandan Das) [1209995]
-- [kvm] Add architecture-defined TLB flush support (Bandan Das) [1209995]
-- [kvm] x86: flush TLB when D bit is manually changed (Bandan Das) [1209995]
-- [kvm] x86: allow TSC deadline timer on all hosts (Bandan Das) [1209995]
-- [kvm] x86: mmu: replace assertions with MMU_WARN_ON, a conditional WARN_ON (Bandan Das) [1209995]
-- [kvm] x86: mmu: remove ASSERT(vcpu) (Bandan Das) [1209995]
-- [kvm] x86: mmu: remove argument to kvm_init_shadow_mmu and kvm_init_shadow_ept_mmu (Bandan Das) [1209995]
-- [kvm] x86: mmu: do not use return to tail-call functions that return void (Bandan Das) [1209995]
-- [kvm] x86: add method to test PIR bitmap vector (Bandan Das) [1209995]
-- [kvm] x86: vmx: NULL out hwapic_isr_update() in case of !enable_apicv (Bandan Das) [1209995]
-- [kvm] x86: Remove FIXMEs in emulate.c for the function, task_switch_32 (Bandan Das) [1209995]
-- [kvm] nvmx: consult PFEC_MASK and PFEC_MATCH when generating #PF VM-exit (Bandan Das) [1209995]
-- [kvm] nvmx: Improve nested msr switch checking (Bandan Das) [1209995]
-- [kvm] nvmx: Add nested msr load/restore algorithm (Bandan Das) [1209995]
-- [kvm] x86: check LAPIC presence when building apic_map (Bandan Das) [1209995]
-- [kvm] x86: Fix of previously incomplete fix for CVE-2014-8480 (Bandan Das) [1209995]
-- [kvm] warn on more invariant breakage (Bandan Das) [1209995]
-- [kvm] fix sorting of memslots with base_gfn == 0 (Bandan Das) [1209995]
-- [kvm] x86: drop severity of "generation wraparound" message (Bandan Das) [1209995]
-- [kvm] x86: vmx: reorder some msr writing (Bandan Das) [1209995]
-- [kvm] move APIC types to arch/x86/ (Bandan Das) [1209995]
-- [kvm] x86: em_ret_far overrides cpl (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] nvmx: Disable unrestricted mode if ept=0 (Bandan Das) [1209995]
-- [kvm] x86: Emulate should check #UD before #GP (Bandan Das) [1209995]
-- [kvm] x86: Do not push eflags.vm on pushf (Bandan Das) [1209995]
-- [kvm] x86: Remove prefix flag when GP macro is used (Bandan Das) [1209995]
-- [kvm] cpuid: recompute CPUID 0xD.0:EBX,ECX (Bandan Das) [1209995]
-- [kvm] cpuid: mask more bits in leaf 0xd and subleaves (Bandan Das) [1209995]
-- [kvm] cpuid: set CPUID(EAX=0xd, ECX=1).EBX correctly (Bandan Das) [1209995]
-- [kvm] x86: use F() macro throughout cpuid.c (Bandan Das) [1209995]
-- [kvm] track pid for VCPU only on KVM_RUN ioctl (Bandan Das) [1209995]
-- [kvm] don't check for PF_VCPU when yielding (Bandan Das) [1209995]
-- [kvm] optimize GFN to memslot lookup with large slots amount (Bandan Das) [1209995]
-- [kvm] change memslot sorting rule from size to GFN (Bandan Das) [1209995]
-- [kvm] search_memslots: add simple LRU memslot caching (Bandan Das) [1209995]
-- [kvm] update_memslots: drop not needed check for the same slot (Bandan Das) [1209995]
-- [kvm] update_memslots: drop not needed check for the same number of pages (Bandan Das) [1209995]
-- [kvm] x86: allow 256 logical x2APICs again (Bandan Das) [1209995]
-- [kvm] x86: check bounds of APIC maps (Bandan Das) [1209995]
-- [kvm] x86: fix APIC physical destination wrapping (Bandan Das) [1209995]
-- [kvm] x86: deliver phys lowest-prio (Bandan Das) [1209995]
-- [kvm] x86: don't retry hopeless APIC delivery (Bandan Das) [1209995]
-- [kvm] x86: use MSR_ICR instead of a number (Bandan Das) [1209995]
-- [kvm] x86: Fix reserved x2apic registers (Bandan Das) [1209995]
-- [kvm] x86: Generate #UD when memory operand is required (Bandan Das) [1209995]
-- [kvm] add a memslot flag for incoherent memory regions (Bandan Das) [1209995]
-- [kvm] fix kvm_is_mmio_pfn() and rename to kvm_is_reserved_pfn() (Bandan Das) [1209995]
-- [kvm] x86: avoid warning about potential shift wrapping bug (Bandan Das) [1209995]
-- [kvm] x86: move device assignment out of kvm_host.h (Bandan Das) [1209995]
-- [kvm] x86: mask out XSAVES (Bandan Das) [1209995]
-- [kvm] x86/xsaves: Detect xsaves/xrstors feature (Bandan Das) [1209995]
-- [kvm] x86: move assigned-dev.c and iommu.c to arch/x86/ (Bandan Das) [1209995]
-- [kvm] remove IA64 ioctls (Bandan Das) [1209995]
-- [kvm] remove CONFIG_X86 #ifdefs from files formerly shared with ia64 (Bandan Das) [1209995]
-- [kvm] x86: move ioapic.c and irq_comm.c back to arch/x86/ (Bandan Das) [1209995]
-- [kvm] documentation: remove ia64 (Bandan Das) [1209995]
-- [kvm] ia64: remove (Bandan Das) [1209995]
-- [kvm] x86/kvm/tracing: Use helper function trace_seq_buffer_ptr() (Bandan Das) [1209995]
-- [kvm] x86: Remove FIXMEs in emulate.c (Bandan Das) [1209995]
-- [kvm] emulator: remove duplicated limit check (Bandan Das) [1209995]
-- [kvm] emulator: remove code duplication in register_address{, _increment} (Bandan Das) [1209995]
-- [kvm] x86: Move __linearize masking of la into switch (Bandan Das) [1209995]
-- [kvm] x86: Non-canonical access using SS should cause #SS (Bandan Das) [1209995]
-- [kvm] x86: Perform limit checks when assigning EIP (Bandan Das) [1209995]
-- [kvm] x86: Emulator performs privilege checks on __linearize (Bandan Das) [1209995]
-- [kvm] x86: Stack size is overridden by __linearize (Bandan Das) [1209995]
-- [kvm] x86: Revert NoBigReal patch in the emulator (Bandan Das) [1209995]
-- [kvm] x86: vmx: remove MMIO_MAX_GEN (Bandan Das) [1209995]
-- [kvm] x86: vmx: cleanup handle_ept_violation (Bandan Das) [1209995]
-- [kvm] x86: Fix lost interrupt on irr_pending race (Bandan Das) [1209995]
-- [kvm] compute correct map even if all APICs are software disabled (Bandan Das) [1209995]
-- [kvm] x86: Software disabled APIC should still deliver NMIs (Bandan Das) [1209995]
-- [kvm] simplify update_memslots invocation (Bandan Das) [1209995]
-- [kvm] commonize allocation of the new memory slots (Bandan Das) [1209995]
-- [kvm] memslots: track id_to_index changes during the insertion sort (Bandan Das) [1209995]
-- [kvm] memslots: replace heap sort with an insertion sort pass (Bandan Das) [1209995]
-- [kvm] svm: move WARN_ON in svm_adjust_tsc_offset (Bandan Das) [1209995]
-- [kvm] x86, kvm, vmx: Don't set LOAD_IA32_EFER when host and guest match (Bandan Das) [1209995]
-- [kvm] x86, kvm, vmx: Always use LOAD_IA32_EFER if available (Bandan Das) [1209995]
-- [kvm] x86: fix warning on 32-bit compilation (Bandan Das) [1209995]
-- [kvm] x86: add trace event for pvclock updates (Bandan Das) [1209995]
-- [kvm] x86: Fix kvm clock versioning (Bandan Das) [1209995]
-- [kvm] x86: MOVNTI emulation min opsize is not respected (Bandan Das) [1209995]
-- [kvm] x86: Return UNHANDLABLE on unsupported SYSENTER (Bandan Das) [1209995]
-- [kvm] x86: Warn on APIC base relocation (Bandan Das) [1209995]
-- [kvm] x86: Emulator mis-decodes VEX instructions on real-mode (Bandan Das) [1209995]
-- [kvm] x86: Remove redundant and incorrect cpl check on task-switch (Bandan Das) [1209995]
-- [kvm] x86: Inject #GP when loading system segments with non-canonical base (Bandan Das) [1209995]
-- [kvm] x86: Combine the lgdt and lidt emulation logic (Bandan Das) [1209995]
-- [kvm] x86: Do not update EFLAGS on faulting emulation (Bandan Das) [1209995]
-- [kvm] x86: MOV to CR3 can set bit 63 (Bandan Das) [1209995]
-- [kvm] x86: Emulate push sreg as done in Core (Bandan Das) [1209995]
-- [kvm] x86: Wrong flags on CMPS and SCAS emulation (Bandan Das) [1209995]
-- [kvm] x86: SYSCALL cannot clear eflags[1] (Bandan Das) [1209995]
-- [kvm] x86: Emulation of MOV-sreg to memory uses incorrect size (Bandan Das) [1209995]
-- [kvm] x86: Breakpoints do not consider CS.base (Bandan Das) [1209995]
-- [kvm] x86: Clear DR6[0:3] on #DB during handle_dr (Bandan Das) [1209995]
-- [kvm] x86: Emulator should set DR6 upon GD like real CPU (Bandan Das) [1209995]
-- [kvm] x86: No error-code on real-mode exceptions (Bandan Das) [1209995]
-- [kvm] x86: decode_modrm does not regard modrm correctly (Bandan Das) [1209995]
-- [kvm] x86: reset RVI upon system reset (Bandan Das) [1209995]
-- [kvm] x86: vmx: avoid returning bool to distinguish success from error (Bandan Das) [1209995]
-- [kvm] x86: vmx: move some vmx setting from vmx_init() to hardware_setup() (Bandan Das) [1209995]
-- [kvm] x86: vmx: move down hardware_setup() and hardware_unsetup() (Bandan Das) [1209995]
-- [kvm] x86: Fix uninitialized op->type for some immediate values (Bandan Das) [1209995]
-- [kvm] x86: optimize some accesses to LVTT and SPIV (Bandan Das) [1209995]
-- [kvm] trivial fix comment regarding __kvm_set_memory_region (Bandan Das) [1209995]
-- [kvm] x86: Enable Intel AVX-512 for guest (Bandan Das) [1178982 1209995]
-- [kvm] drop unsupported capabilities, fix documentation (Bandan Das) [1209995]
-- [kvm] x86: fix deadline tsc interrupt injection (Bandan Das) [1179067 1209995]
-- [kvm] x86: add apic_timer_expired() (Bandan Das) [1209995]
-- [kvm] documentation: virtual: kvm: correct one bit description in APF case (Bandan Das) [1209995]
-- [kvm] vmx: Unavailable DR4/5 is checked before CPL (Bandan Das) [1209995]
-- [kvm] x86: Emulator performs code segment checks on read access (Bandan Das) [1209995]
-- [kvm] x86: Clear DR7.LE during task-switch (Bandan Das) [1209995]
-- [kvm] x86: Emulator does not calculate address correctly (Bandan Das) [1209995]
-- [kvm] x86: DR7.GD should be cleared upon any #DB exception (Bandan Das) [1209995]
-- [kvm] x86: some apic broadcast modes does not work (Bandan Das) [1209995]
-- [kvm] x86,kvm,vmx: Don't trap writes to CR4.TSD (Bandan Das) [1209995]
-- [kvm] x86: Sysexit emulation does not mask RIP/RSP (Bandan Das) [1209995]
-- [kvm] x86: Distinguish between stack operation and near branches (Bandan Das) [1209995]
-- [kvm] x86: Getting rid of grp45 in emulator (Bandan Das) [1209995]
-- [kvm] x86: Use new is_noncanonical_address in _linearize (Bandan Das) [1209995]
-- [kvm] emulator: always inline __linearize (Bandan Das) [1209995]
-- [kvm] nvmx: Disable preemption while reading from shadow VMCS (Bandan Das) [1209995]
-- [kvm] x86: Fix far-jump to non-canonical check (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] emulator: fix execution close to the segment limit (Bandan Das) [1209995]
-- [kvm] emulator: fix error code for __linearize (Bandan Das) [1209995]
-- [kvm] vfio: fix unregister kvm_device_ops of vfio (Bandan Das) [1209995]
-- [kvm] x86: Wrong assertion on paging_tmpl.h (Bandan Das) [1209995]
-- [kvm] fix excessive pages un-pinning in kvm_iommu_map error path (Bandan Das) [1209995]
-- [kvm] x86: PREFETCH and HINT_NOP should have SrcMem flag (Bandan Das) [1209995]
-- [kvm] x86: Emulator does not decode clflush well (Bandan Das) [1209995]
-- [kvm] emulate: avoid accessing NULL ctxt->memopp (Bandan Das) [1209995]
-- [kvm] x86: Decoding guest instructions which cross page boundary may fail (Bandan Das) [1209995]
-- [kvm] x86: don't kill guest on unknown exit reason (Bandan Das) [1209995]
-- [kvm] x86: Handle errors when RIP is set during far jumps (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Emulator fixes for eip canonical checks on near branches (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Fix wrong masking on relative jump/call (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] Fix kvm_get_page_retry_io __gup retval check (Bandan Das) [1209995]
-- [kvm] iommu: Convert to use new iommu_capable() API function (Bandan Das) [1209995]
-- [kvm] kvm/x86/mmu: Pass gfn and level to rmapp callback (Bandan Das) [1209995]
-- [kvm] x86: use macros to compute bank MSRs (Bandan Das) [1209995]
-- [kvm] x86: Remove debug assertion of non-PAE reserved bits (Bandan Das) [1209995]
-- [kvm] don't take vcpu mutex for obviously invalid vcpu ioctls (Bandan Das) [1209995]
-- [kvm] Faults which trigger IO release the mmap_sem (Bandan Das) [1209995]
-- [kvm] x86: fix two typos in comment (Bandan Das) [1209995]
-- [kvm] vmx: Inject #GP on invalid PAT CR (Bandan Das) [1209995]
-- [kvm] x86: emulating descriptor load misses long-mode case (Bandan Das) [1209995]
-- [kvm] x86: directly use kvm_make_request again (Bandan Das) [1209995]
-- [kvm] x86: count actual tlb flushes (Bandan Das) [1209995]
-- [kvm] x86: Don't report guest userspace emulation error to userspace (Bandan Das) [1163766 1209995] {CVE-2010-5313 CVE-2014-7842}
-- [kvm] Make init_rmode_tss() return 0 on success (Bandan Das) [1209995]
-- [kvm] x86: Warn if guest virtual address space is not 48-bits (Bandan Das) [1209995]
-- [kvm] kvm-vfio: do not use module_init (Bandan Das) [1209995]
-- [kvm] eventfd: Remove inclusion of irq.h (Bandan Das) [1209995]
-- [kvm] correct null pid check in kvm_vcpu_yield_to() (Bandan Das) [1209995]
-- [kvm] Make init_rmode_identity_map() return 0 on success (Bandan Das) [1209995]
-- [kvm] vfio: register kvm_device_ops dynamically (Bandan Das) [1209995]
-- [kvm] device: add simple registration mechanism for kvm_device_ops (Bandan Das) [1209995]
-- [kvm] Use PCI device flag helper functions (Bandan Das) [1209995]
-- [kvm] x86: Use kvm_make_request when applicable (Bandan Das) [1209995]
-- [kvm] mm: export symbol dependencies of is_zero_pfn() (Bandan Das) [1209995]
-- [kvm] check for !is_zero_pfn() in kvm_is_mmio_pfn() (Bandan Das) [1209995]
-- [kvm] x86: make apic_accept_irq tracepoint more generic (Bandan Das) [1209995]
-- [kvm] fix api documentation of KVM_GET_EMULATED_CPUID (Bandan Das) [1209995]
-- [kvm] document KVM_SET_GUEST_DEBUG api (Bandan Das) [1209995]
-- [kvm] remove redundant assignments in __kvm_set_memory_region (Bandan Das) [1209995]
-- [kvm] remove redundant assigment of return value in kvm_dev_ioctl (Bandan Das) [1209995]
-- [kvm] remove redundant check of in_spin_loop (Bandan Das) [1209995]
-- [kvm] x86: propagate exception from permission checks on the nested page fault (Bandan Das) [1209995]
-- [kvm] x86: skip writeback on injection of nested exception (Bandan Das) [1209995]
-- [kvm] nsvm: propagate the NPF EXITINFO to the guest (Bandan Das) [1209995]
-- [kvm] x86: reserve bit 8 of non-leaf PDPEs and PML4Es in 64-bit mode on AMD (Bandan Das) [1209995]
-- [kvm] mmio: cleanup kvm_set_mmio_spte_mask (Bandan Das) [1209995]
-- [kvm] x86: fix stale mmio cache bug (Bandan Das) [1209995]
-- [kvm] fix potentially corrupt mmio cache (Bandan Das) [1209995]
-- [kvm] do not bias the generation number in kvm_current_mmio_generation (Bandan Das) [1209995]
-- [kvm] x86: use guest maxphyaddr to check MTRR values (Bandan Das) [1209995]
-- [kvm] remove garbage arg to *hardware_{en, dis}able (Bandan Das) [1209995]
-- [kvm] forward declare structs in kvm_types.h (Bandan Das) [1209995]
-- [kvm] x86: remove Aligned bit from movntps/movntpd (Bandan Das) [1209995]
-- [kvm] vmx: VMXOFF emulation in vm86 should cause #UD (Bandan Das) [1209995]
-- [kvm] x86: fix some sparse warnings (Bandan Das) [1209995]
-- [kvm] nvmx: nested TPR shadow/threshold emulation (Bandan Das) [1209995]
-- [kvm] nvmx: introduce nested_get_vmcs12_pages (Bandan Das) [1209995]
-- [kvm] Unconditionally export KVM_CAP_USER_NMI (Bandan Das) [1209995]
-- [kvm] Unconditionally export KVM_CAP_READONLY_MEM (Bandan Das) [1209995]
-- [kvm] Introduce gfn_to_hva_memslot_prot (Bandan Das) [1209995]
-- [kvm] x86: fix tracing for 32-bit (Bandan Das) [1209995]
-- [kvm] clarify the idea of kvm_dirty_regs (Bandan Das) [1209995]
-- [kvm] x86: Replace X86_FEATURE_NX offset with the definition (Bandan Das) [1209995]
-- [kvm] avoid unnecessary synchronize_rcu (Bandan Das) [1209995]
-- [kvm] emulate: warn on invalid or uninitialized exception numbers (Bandan Das) [1209995]
-- [kvm] emulate: do not return X86EMUL_PROPAGATE_FAULT explicitly (Bandan Das) [1209995]
-- [kvm] x86: Clarify PMU related features bit manipulation (Bandan Das) [1209995]
-- [kvm] vmx: fix ept reserved bits for 1-GByte page (Bandan Das) [1209995]
-- [kvm] x86: Clear apic tsc-deadline after deadline (Bandan Das) [1179067 1209995]
-- [kvm] x86: #GP when attempts to write reserved bits of Variable Range MTRRs (Bandan Das) [1209995]
-- [kvm] x86: fix check legal type of Variable Range MTRRs (Bandan Das) [1209995]
-- [kvm] arch/x86: Use RCU_INIT_POINTER(x, NULL) in kvm/vmx.c (Bandan Das) [1209995]
-- [kvm] virt/kvm/assigned-dev.c: Set 'dev->irq_source_id' to '-1' after free it (Bandan Das) [1209995]
-- [kvm] x86: raise invalid TSS exceptions during a task switch (Bandan Das) [1209995]
-- [kvm] x86: drop fpu_activate hook (Bandan Das) [1209995]
-- [kvm] x86: do not check CS.DPL against RPL during task switch (Bandan Das) [1209995]
-- [kvm] svm: add rdmsr support for AMD event registers (Bandan Das) [1209995]
-- [kvm] x86: Avoid emulating instructions on #UD mistakenly (Bandan Das) [1209995]
-- [kvm] iommu: fix the third parameter of kvm_iommu_put_pages (CVE-2014-3601) (Bandan Das) [1209995]
-- [kvm] nvmx: fix "acknowledge interrupt on exit" when APICv is in use (Bandan Das) [1209995]
-- [kvm] nvmx: Fix nested vmexit ack intr before load vmcs01 (Bandan Das) [1209995]
-- [kvm] Allow KVM_CHECK_EXTENSION on the vm fd (Bandan Das) [1209995]
-- [kvm] Rename and add argument to check_extension (Bandan Das) [1209995]
-- [kvm] x86/kvm: Resolve shadow warning from min macro (Bandan Das) [1209995]
-- [kvm] Resolve missing-field-initializers warnings (Bandan Das) [1209995]
-- [kvm] Replace NR_VMX_MSR with its definition (Bandan Das) [1209995]
-- [kvm] x86: Assertions to check no overrun in MSR lists (Bandan Das) [1209995]
-- [kvm] x86: set rflags.rf during fault injection (Bandan Das) [1209995]
-- [kvm] x86: Setting rflags.rf during rep-string emulation (Bandan Das) [1209995]
-- [kvm] x86: kvm: Make kvm_get_time_and_clockread() nanoseconds based (Bandan Das) [1209995]
-- [kvm] x86: DR6/7.RTM cannot be written (Bandan Das) [1209995]
-- [kvm] nvmx: clean up nested_release_vmcs12 and code around it (Bandan Das) [1209995]
-- [kvm] nvmx: fix lifetime issues for vmcs02 (Bandan Das) [1209995 1220461]
-- [kvm] x86: emulator injects #DB when RFLAGS.RF is set (Bandan Das) [1209995]
-- [kvm] x86: Cleanup of rflags.rf cleaning (Bandan Das) [1209995]
-- [kvm] x86: Clear rflags.rf on emulated instructions (Bandan Das) [1209995]
-- [kvm] x86: popf emulation should not change RF (Bandan Das) [1209995]
-- [kvm] x86: Clearing rflags.rf upon skipped emulated instruction (Bandan Das) [1209995]
-- [kvm] nvmx: Fix virtual interrupt delivery injection (Bandan Das) [1209995]
-- [kvm] x86: Emulator support for #UD on CPL>0 (Bandan Das) [1209995]
-- [kvm] x86: Emulator flag for instruction that only support 16-bit addresses in real mode (Bandan Das) [1209995]
-- [kvm] x86: use kvm_read_guest_page for emulator accesses (Bandan Das) [1036792 1209995]
-- [kvm] x86: ensure emulator fetches do not span multiple pages (Bandan Das) [1036792 1209995]
-- [kvm] emulate: put pointers in the fetch_cache (Bandan Das) [1036792 1209995]
-- [kvm] emulate: avoid per-byte copying in instruction fetches (Bandan Das) [1036792 1209995]
-- [kvm] emulate: avoid repeated calls to do_insn_fetch_bytes (Bandan Das) [1036792 1209995]
-- [kvm] emulate: speed up do_insn_fetch (Bandan Das) [1036792 1209995]
-- [kvm] emulate: do not initialize memopp (Bandan Das) [1036792 1209995]
-- [kvm] emulate: rework seg_override (Bandan Das) [1036792 1209995]
-- [kvm] emulate: clean up initializations in init_decode_cache (Bandan Das) [1036792 1209995]
-- [kvm] emulate: cleanup decode_modrm (Bandan Das) [1036792 1209995]
-- [kvm] emulate: Remove ctxt->intercept and ctxt->check_perm checks (Bandan Das) [1036792 1209995]
-- [kvm] emulate: move init_decode_cache to emulate.c (Bandan Das) [1036792 1209995]
-- [kvm] emulate: simplify writeback (Bandan Das) [1036792 1209995]
-- [kvm] emulate: speed up emulated moves (Bandan Das) [1036792 1209995]
-- [kvm] emulate: protect checks on ctxt->d by a common "if (unlikely())" (Bandan Das) [1036792 1209995]
-- [kvm] emulate: move around some checks (Bandan Das) [1036792 1209995]
-- [kvm] x86: avoid useless set of KVM_REQ_EVENT after emulation (Bandan Das) [1209995]
-- [kvm] x86: return all bits from get_interrupt_shadow (Bandan Das) [1209995]
-- [kvm] vmx: speed up emulation of invalid guest state (Bandan Das) [1209995]
-- [kvm] svm: writes to MSR_K7_HWCR generates GPE in guest (Bandan Das) [1209995]
-- [kvm] x86: Pending interrupt may be delivered after INIT (Bandan Das) [1209995]
-- [kvm] Synthesize G bit for all segments (Bandan Das) [1209995]
-- [kvm] x86: Fix lapic.c debug prints (Bandan Das) [1209995]
-- [kvm] nsvm: Set correct port for IOIO interception evaluation (Bandan Das) [1209995]
-- [kvm] nsvm: Fix IOIO size reported on emulation (Bandan Das) [1209995]
-- [kvm] nsvm: Fix IOIO bitmap evaluation (Bandan Das) [1209995]
-- [kvm] nsvm: Do not report CLTS via SVM_EXIT_WRITE_CR0 to L1 (Bandan Das) [1209995]
-- [kvm] tracing: Add trace_seq_buffer_ptr() helper function (Bandan Das) [1209995]
-- [kvm] arch: x86: kvm: x86.c: Cleaning up variable is set more than once (Bandan Das) [1209995]
-- [kvm] vmx: vmx instructions handling does not consider cs.l (Bandan Das) [1209995]
-- [kvm] vmx: handle_cr ignores 32/64-bit mode (Bandan Das) [1209995]
-- [kvm] x86: Hypercall handling does not considers opsize correctly (Bandan Das) [1209995]
-- [kvm] x86: check DR6/7 high-bits are clear only on long-mode (Bandan Das) [1209995]
-- [kvm] nvmx: Fix returned value of MSR_IA32_VMX_VMCS_ENUM (Bandan Das) [1209995]
-- [kvm] nvmx: Allow to disable VM_{ENTRY_LOAD, EXIT_SAVE}_DEBUG_CONTROLS (Bandan Das) [1209995]
-- [kvm] nvmx: Fix returned value of MSR_IA32_VMX_PROCBASED_CTLS (Bandan Das) [1209995]
-- [kvm] nvmx: Allow to disable CR3 access interception (Bandan Das) [1209995]
-- [kvm] nvmx: Advertise support for MSR_IA32_VMX_TRUE_*_CTLS (Bandan Das) [1209995]
-- [kvm] x86: Fix constant value of VM_{EXIT_SAVE, ENTRY_LOAD}_DEBUG_CONTROLS (Bandan Das) [1209995]
-- [kvm] x86: NOP emulation clears (incorrectly) the high 32-bits of RAX (Bandan Das) [1209995]
-- [kvm] x86: emulation of dword cmov on long-mode should clear [63:32] (Bandan Das) [1209995]
-- [kvm] x86: Inter-privilege level ret emulation is not implemeneted (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Wrong emulation on 'xadd X, X' (Bandan Das) [1209995]
-- [kvm] x86: bit-ops emulation ignores offset on 64-bit (Bandan Das) [1209995]
-- [kvm] x86: vmx: use PAGE_ALIGNED instead of IS_ALIGNED(..., PAGE_SIZE) (Bandan Das) [1209995]
-- [kvm] emulate: fix harmless typo in MMX decoding (Bandan Das) [1209995]
-- [kvm] emulate: simplify BitOp handling (Bandan Das) [1209995]
-- [kvm] emulate: POP SS triggers a MOV SS shadow too (Bandan Das) [1209995]
-- [kvm] x86: smsw emulation is incorrect in 64-bit mode (Bandan Das) [1209995]
-- [kvm] x86: Return error on cmpxchg16b emulation (Bandan Das) [1209995]
-- [kvm] x86: rdpmc emulation checks the counter incorrectly (Bandan Das) [1209995]
-- [kvm] x86: movnti minimum op size of 32-bit is not kept (Bandan Das) [1209995]
-- [kvm] x86: cmpxchg emulation should compare in reverse order (Bandan Das) [1209995]
-- [kvm] x86: sgdt and sidt are not privilaged (Bandan Das) [1209995]
-- [kvm] x86: Loading segments on 64-bit mode may be wrong (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Emulator ignores LDTR/TR extended base on LLDT/LTR (Bandan Das) [1152997 1209995] {CVE-2014-3647}
-- [kvm] x86: Mark VEX-prefix instructions emulation as unimplemented (Bandan Das) [1209995]
-- [kvm] x86: mmu: flush tlb out of mmu lock when write-protect the sptes (Bandan Das) [1209995]
-- [kvm] x86: mmu: flush tlb if the spte can be locklessly modified (Bandan Das) [1209995]
-- [kvm] x86: mmu: lazily drop large spte (Bandan Das) [1209995]
-- [kvm] x86: mmu: properly check last spte in fast_page_fault() (Bandan Das) [1209995]
-- [kvm] x86: optimize out smp_mb after srcu_read_unlock (Bandan Das) [1209995]
-- [kernel] srcu: API for barrier after srcu read unlock (Bandan Das) [1209995]
-
-* Thu May 28 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-257.el7]
-- [pci] pciehp: Fix pcie_wait_cmd() timeout (Myron Stowe) [1223472]
-- [pci] revert "pci: Make sure bus number resources stay within their parents bounds" (Myron Stowe) [1223472]
-- [pci] revert "pci: Don't scan random busses in pci_scan_bridge()" (Myron Stowe) [1223472]
-- [pci] acpiphp / radeon / nouveau: Remove acpi_bus_no_hotplug() (Myron Stowe) [1223472]
-- [pci] Remove "no hotplug settings from platform" warning (Myron Stowe) [1223472]
-- [pci] Add pci_ignore_hotplug() to ignore hotplug events for a device (Myron Stowe) [1223472]
-- [pci] maintainers: Add Lucas Stach as co-maintainer for i.MX6 PCI driver (Myron Stowe) [1223472]
-- [pci] msi: Use irq_get_msi_desc() to simplify code (Myron Stowe) [1223472]
-- [pci] msi: Remove unused list access in __pci_restore_msix_state() (Myron Stowe) [1223472]
-- [pci] msi: Retrieve first MSI IRQ from msi_desc rather than pci_dev (Myron Stowe) [1223472]
-- [pci] msi: Remove unused function msi_remove_pci_irq_vectors() (Myron Stowe) [1223472]
-- [pci] msi: Add msi_setup_entry() to clean up MSI initialization (Myron Stowe) [1223472]
-- [pci] Configure ASPM when enabling device (Myron Stowe) [1223472]
-- [pci] x86: don't exclude low BIOS area when allocating address space for non-PCI c (Myron Stowe) [1223472]
-- [pci] Tidy resource assignment messages (Myron Stowe) [1223472]
-- [pci] Return conventional error values from pci_revert_fw_address() (Myron Stowe) [1223472]
-- [pci] Cleanup control flow (Myron Stowe) [1223472]
-- [pci] cpqphp: Remove unnecessary null test before debugfs_remove() (Myron Stowe) [1223472]
-- [pci] pciehp: Remove struct controller.no_cmd_complete (Myron Stowe) [1223472]
-- [pci] msi: Cache Multiple Message Capable in struct msi_desc (Myron Stowe) [1223472]
-- [pci] msi: Remove unused msi_enabled_mask() (Myron Stowe) [1223472]
-- [pci] msi: Add internal msix_clear_and_set_ctrl() function (Myron Stowe) [1223472]
-- [pci] powerpc: Remove duplicate logic (Myron Stowe) [1223472]
-- [pci] Make resetting secondary bus logic common (Myron Stowe) [1223472]
-- [pci] pci: Fix sysfs acpi_index and label errors (Myron Stowe) [1223472]
-- [pci] portdrv: Remove warning about invalid IRQ for hot-added PCIe ports (Myron Stowe) [1223472]
-- [pci] pciehp: Remove assumptions about which commands cause completion events (Myron Stowe) [1223472]
-- [pci] pciehp: Compute timeout from hotplug command start time (Myron Stowe) [1223472]
-- [pci] pciehp: Wait for hotplug command completion lazily (Myron Stowe) [1223472]
-- [pci] pciehp: Make pcie_wait_cmd() self-contained (Myron Stowe) [1223472]
-- [pci] label: treat PCI label with index 0 as valid label (Myron Stowe) [1223472]
-- [pci] acpi: replace open-coded _DSM code with helper functions (Myron Stowe) [1223472]
-- [pci] label: release allocated ACPI object on error recovery path (Myron Stowe) [1223472]
-- [pci] acpi: Eliminate the DEVICE_ACPI_HANDLE() macro (Myron Stowe) [1223472]
-- [fs] ext4: fix overflow when updating superblock backups after resize (Lukas Czerner) [1220312]
-- [fs] ext4: fix growing of tiny filesystems (Lukas Czerner) [1220312]
-- [fs] ext4: make fsync to sync parent dir in no-journal for real this time (Lukas Czerner) [1220312]
-- [fs] ext4: don't release reserved space for previously allocated cluster (Lukas Czerner) [1220312]
-- [fs] ext4: fix loss of delalloc extent info in ext4_zero_range() (Lukas Czerner) [1220312]
-- [fs] ext4: remove unnecessary lock/unlock of i_block_reservation_lock (Lukas Czerner) [1220312]
-- [fs] ext4: remove useless condition in if statement (Lukas Czerner) [1220312]
-- [fs] ext4: fix comments in ext4_can_extents_be_merged() (Lukas Czerner) [1220312]
-- [fs] ext4: fix transposition typo in format string (Lukas Czerner) [1220312]
-- [fs] ext4: fix bh leak on error paths in ext4_rename() and ext4_cross_rename() (Lukas Czerner) [1220312]
-- [fs] ext4: fix indirect punch hole corruption (Lukas Czerner) [1220312]
-- [fs] ext4: ignore journal checksum on remount; don't fail (Lukas Czerner) [1220312]
-- [fs] ext4: remove duplicate remount check for JOURNAL_CHECKSUM change (Lukas Czerner) [1220312]
-- [fs] jbd2: complain about descriptor block checksum errors (Lukas Czerner) [1220312]
-- [fs] ext4: remove spurious KERN_INFO from ext4_warning call (Lukas Czerner) [1220312]
-- [fs] ext4: prevent online resize with backup superblock (Lukas Czerner) [1220312]
-- [fs] move_extent_per_page(): get rid of unused w_flags (Lukas Czerner) [1220312]
-- [fs] ext4: ext4_da_convert_inline_data_to_extent drop locked page after error (Lukas Czerner) [1220312]
-- [fs] ext4: ext4_inline_data_fiemap should respect callers argument (Lukas Czerner) [1220312]
-- [fs] ext4: prevent fsreentrance deadlock for inline_data (Lukas Czerner) [1220312]
-- [fs] jbd2: fix regression where we fail to initialize checksum seed when loading (Lukas Czerner) [1220312]
-- [fs] ext4: forbid journal_async_commit in data=ordered mode (Lukas Czerner) [1220312]
-- [fs] jbd2: remove unnecessary NULL check before iput() (Lukas Czerner) [1220312]
-- [fs] ext4: Remove an unnecessary check for NULL before iput() (Lukas Czerner) [1220312]
-- [fs] ext4: remove unneeded code in ext4_unlink (Lukas Czerner) [1220312]
-- [fs] ext4: remove never taken branch from ext4_ext_shift_path_extents() (Lukas Czerner) [1220312]
-- [fs] ext4: create nojournal_checksum mount option (Lukas Czerner) [1220312]
-- [fs] ext4: update comments regarding ext4_delete_inode() (Lukas Czerner) [1220312]
-- [fs] ext4: cleanup GFP flags inside resize path (Lukas Czerner) [1220312]
-- [fs] ext4: cache extent hole in extent status tree for ext4_da_map_blocks() (Lukas Czerner) [1220312]
-- [fs] ext4: fix block reservation for bigalloc filesystems (Lukas Czerner) [1220312]
-- [fs] ext4: fix end of region partial cluster handling (Lukas Czerner) [1220312]
-- [fs] ext4: miscellaneous partial cluster cleanups (Lukas Czerner) [1220312]
-- [fs] ext4: fix end of leaf partial cluster handling (Lukas Czerner) [1220312]
-- [fs] ext4: fix partial cluster initialization (Lukas Czerner) [1220312]
-- [fs] ext4: move_extent improve bh vanishing success factor (Lukas Czerner) [1220312]
-- [fs] ext4: make ext4_ext_convert_to_initialized() return proper number of blocks (Lukas Czerner) [1220312]
-- [fs] ext4: bail early when clearing inode journal flag fails (Lukas Czerner) [1220312]
-- [fs] ext4: bail out from make_indexed_dir() on first error (Lukas Czerner) [1220312]
-- [fs] jbd2: use a better hash function for the revoke table (Lukas Czerner) [1220312]
-- [fs] ext4: disallow changing journal_csum option during remount (Lukas Czerner) [1220312]
-- [fs] ext4: enable journal checksum when metadata checksum feature enabled (Lukas Czerner) [1220312]
-- [fs] ext4: fix oops when loading block bitmap failed (Lukas Czerner) [1220312]
-- [fs] xfs: allow appending aio writes (Eric Sandeen) [1053615]
-- [fs] direct-io: add flag to allow aio writes beyond i_size (Eric Sandeen) [1053615]
-- [fs] ext4: fix data corruption caused by unwritten and delayed extents (Lukas Czerner) [1213487]
-- [fs] gfs2: Use average srttb value in congestion calculations (Robert S Peterson) [1162821]
-- [fs] xfs: disallow ro->rw remount on norecovery mount (Eric Sandeen) [1206220]
-- [fs] nfs: Fixing lease renewal (Benjamin Coddington) [1205048]
-- [fs] bio: modify __bio_add_page() to accept pages that don't start a new segment (Maurizio Lombardi) [1094392]
-
-* Tue May 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-256.el7]
-- [perf] probe: Fix segfault if passed with '' (Jiri Olsa) [1222189]
-- [perf] report: Fix -T/--threads option to work again (Jiri Olsa) [1222189]
-- [perf] bench numa: Fix immediate meeting of convergence condition (Jiri Olsa) [1222189]
-- [perf] bench numa: Fixes of --quiet argument (Jiri Olsa) [1222189]
-- [perf] bench futex: Fix hung wakeup tasks after requeueing (Jiri Olsa) [1222189]
-- [perf] probe: Fix bug with global variables handling (Jiri Olsa) [1222189]
-- [perf] top: Fix a segfault when kernel map is restricted (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Fix build failure on 32-bit arch (Jiri Olsa) [1222189]
-- [perf] kmem: Fix compiles on RHEL6/OL6 (Jiri Olsa) [1222189]
-- [perf] tools lib api: Undefine _FORTIFY_SOURCE before setting it (Jiri Olsa) [1222189]
-- [perf] kmem: Consistently use PRIu64 for printing u64 values (Jiri Olsa) [1222189]
-- [perf] trace: Disable events and drain events when forked workload ends (Jiri Olsa) [1222189]
-- [perf] trace: Enable events when doing system wide tracing and starting a workload (Jiri Olsa) [1222189]
-- [perf] probe: Fix segfault when probe with lazy_line to file (Jiri Olsa) [1222189]
-- [perf] probe: Find compilation directory path for lazy matching (Jiri Olsa) [1222189]
-- [perf] probe: Set retprobe flag when probe in address-based alternative mode (Jiri Olsa) [1222189]
-- [perf] kmem: Analyze page allocator events also (Jiri Olsa) [1222189]
-- [perf] evlist: Fix type for references to data_head/tail (Jiri Olsa) [1222189]
-- [perf] probe: Check the orphaned -x option (Jiri Olsa) [1222189]
-- [perf] probe: Support multiple probes on different binaries (Jiri Olsa) [1222189]
-- [perf] buildid-list: Fix segfault when show DSOs with hits (Jiri Olsa) [1222189]
-- [perf] tools: Fix cross-endian analysis (Jiri Olsa) [1222189]
-- [perf] tools: Fix error path to do closedir() when synthesizing threads (Jiri Olsa) [1222189]
-- [perf] tools: Fix synthesizing fork_event.ppid for non-main thread (Jiri Olsa) [1222189]
-- [perf] tools: Add 'I' event modifier for exclude_idle bit (Jiri Olsa) [1222189]
-- [perf] report: Don't call map__kmap if map is NULL (Jiri Olsa) [1222189]
-- [perf] probe: Fix ARM 32 building error (Jiri Olsa) [1222189]
-- [perf] tools: Merge all perf_event_attr print functions (Jiri Olsa) [1222189]
-- [perf] sched replay: Use replay_repeat to calculate the runavg of cpu usage instead of the default value 10 (Jiri Olsa) [1222189]
-- [perf] sched replay: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] sched replay: Fix the EMFILE error caused by the limitation of the maximum open files (Jiri Olsa) [1222189]
-- [perf] sched replay: Handle the dead halt of sem_wait when create_tasks() fails for any task (Jiri Olsa) [1222189]
-- [perf] sched replay: Fix the segmentation fault problem caused by pr_err in threads (Jiri Olsa) [1222189]
-- [perf] sched replay: Realloc the memory of pid_to_task stepwise to adapt to the different pid_max configurations (Jiri Olsa) [1222189]
-- [perf] sched replay: Alloc the memory of pid_to_task dynamically to adapt to the unexpected change of pid_max (Jiri Olsa) [1222189]
-- [perf] sched replay: Increase the MAX_PID value to fix assertion failure problem (Jiri Olsa) [1222189]
-- [perf] sched replay: Use struct task_desc instead of struct task_task for correct meaning (Jiri Olsa) [1222189]
-- [perf] kmem: Respect -i option (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Honor operator priority (Jiri Olsa) [1222189]
-- [perf] kmaps: Check kmaps to make code more robust (Jiri Olsa) [1222189]
-- [perf] evlist: Fix inverted logic in perf_mmap__empty (Jiri Olsa) [1222189]
-- [perf] data: Support using -f to override perf.data file ownership for 'convert' (Jiri Olsa) [1222189]
-- [perf] trace: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] timechart: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] script: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] mem: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] lock: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] kvm: Support using -f to override perf.data.guest file ownership (Jiri Olsa) [1222189]
-- [perf] kmem: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] inject: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] evlist: Support using -f to override perf.data file ownership (Jiri Olsa) [1222189]
-- [perf] probe: Fix to track down unnamed union/structure members (Jiri Olsa) [1222189]
-- [perf] db-export: No need to have ->thread twice in struct export_sample (Jiri Olsa) [1222189]
-- [perf] db-export: No need to pass thread twice to db_export__sample (Jiri Olsa) [1222189]
-- [perf] scripting: No need to pass thread twice to the scripting callbacks (Jiri Olsa) [1222189]
-- [perf] script: No need to lookup thread twice (Jiri Olsa) [1222189]
-- [perf] ordered_samples: Remove references to perf_{evlist, tool} and machines (Jiri Olsa) [1222189]
-- [perf] session: Always initialize ordered_events (Jiri Olsa) [1222189]
-- [perf] tools: Fix ppid for synthesized fork events (Jiri Olsa) [1222189]
-- [perf] tools: Refactor comm/tgid lookup (Jiri Olsa) [1222189]
-- [perf] callchain: Fix kernel symbol resolution by remembering the cpumode (Jiri Olsa) [1222189]
-- [perf] build: Disable libbabeltrace check by default (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Zero should not be considered "not found" in eval_flag() (Jiri Olsa) [1222189]
-- [perf] trace: Fix syscall enter formatting bug (Jiri Olsa) [1222189]
-- [perf] tools: Set JOBS based on CPU or processor (Jiri Olsa) [1222189]
-- [perf] Bump max number of cpus to 1024 (Jiri Olsa) [1222189]
-- [perf] evlist: Return the first evsel with an invalid filter in apply_filters() (Jiri Olsa) [1222189]
-- [perf] timechart: Fix SIBGUS error on sparc64 (Jiri Olsa) [1222189]
-- [perf] tools: Add pid/tid filtering to report and script commands (Jiri Olsa) [1222189]
-- [perf] diff: Add kallsyms option (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Add support for __print_array() (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Free filter tokens in process_filter() (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Add way to find sub buffer boundary (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent kbuffer: Remove extra update to data pointer in PADDING (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Make plugin options either string or boolean (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Add pevent_data_pid_from_comm() (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Handle z in bprint format (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Copy trace_clock and free it (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Handle NULL comm name (Jiri Olsa) [1222189]
-- [perf] symbols: Save DSO loading errno to better report errors (Jiri Olsa) [1222189]
-- [perf] target: Simplify handling of strerror_r return (Jiri Olsa) [1222189]
-- [perf] tools: Work around lack of sched_getcpu in glibc < 2.6 (Jiri Olsa) [1222189]
-- [perf] kmem: Print big numbers using thousands' group (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Factor out allocating and processing args (Jiri Olsa) [1222189]
-- [perf] probe: Fix to get ummapped symbol address on kernel (Jiri Olsa) [1222189]
-- [perf] tools: Remove (null) value of "Sort order" for perf mem report (Jiri Olsa) [1222189]
-- [perf] annotate: Allow annotation for decompressed kernel modules (Jiri Olsa) [1222189]
-- [perf] tools: Try to lookup kernel module map before creating one (Jiri Olsa) [1222189]
-- [perf] tools: Remove is_kmodule_extension function (Jiri Olsa) [1222189]
-- [perf] tools: Remove compressed argument from is_kernel_module (Jiri Olsa) [1222189]
-- [perf] tools: Use kmod_path__parse in is_kernel_module (Jiri Olsa) [1222189]
-- [perf] tools: Use kmod_path__parse in decompress_kmodule (Jiri Olsa) [1222189]
-- [perf] tools: Use kmod_path__parse in map_groups__set_modules_path_dir (Jiri Olsa) [1222189]
-- [perf] tools: Use kmod_path__parse for machine__new_dso (Jiri Olsa) [1222189]
-- [perf] tools: Add machine__module_dso function (Jiri Olsa) [1222189]
-- [perf] tools: Add dsos__addnew function (Jiri Olsa) [1222189]
-- [perf] tools: Add kmod_path__parse function (Jiri Olsa) [1222189]
-- [perf] tools: Add lzma decompression support for kernel module (Jiri Olsa) [1222189]
-- [perf] tools build: Add feature check for lzma library (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Add destructor for format_field (Jiri Olsa) [1222189]
-- [perf] hists browser: Indicate which callchain entries are annotated (Jiri Olsa) [1222189]
-- [perf] trace: Handle legacy syscalls tracepoints (Jiri Olsa) [1222189]
-- [perf] build: Move feature checks code under tools/build (Jiri Olsa) [1222189]
-- [perf] build: Make features checks directory configurable (Jiri Olsa) [1222189]
-- [perf] build: Separate feature make support into config/Makefile.feature (Jiri Olsa) [1222189]
-- [perf] build: Fix feature_check name clash (Jiri Olsa) [1222189]
-- [perf] trace: Fix summary_only option (Jiri Olsa) [1222189]
-- [perf] probe: Fix failure to add multiple probes without debuginfo (Jiri Olsa) [1222189]
-- [perf] build: Add config/feature-checks/*.output to the .gitignore file (Jiri Olsa) [1222189]
-- [perf] build: Use FEATURE-DUMP instead of PERF-FEATURES in the .gitignore file (Jiri Olsa) [1222189]
-- [perf] tools: Don't allow empty argument for field-separator (Jiri Olsa) [1222189]
-- [perf] report: Don't allow empty argument for '-t' (Jiri Olsa) [1222189]
-- [perf] callchain: Separate eh/debug frame offset cache (Jiri Olsa) [1222189]
-- [perf] tools: Avoid confusion with preloaded bash function for perf bash completion (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf trace (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf timechart (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf test (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf script (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf help (Jiri Olsa) [1222189]
-- [perf] tools: Add the bash completion for listing subsubcommands of perf data (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion for listing subcommands of perf (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion to support listing events for --event (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion for listing events of perf subcommand record|stat|top -e (Jiri Olsa) [1222189]
-- [perf] tools: Provide the right bash completion for listing options of perf subcommand subsubcommand (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion for listing subsubcommands of perf subcommand (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion for listing options of perf subcommand (Jiri Olsa) [1222189]
-- [perf] tools: Fix perf-read-vdsox32 not building and lib64 install dir (Jiri Olsa) [1222189]
-- [perf] build: Rename feature_print_var_code to print_var_code (Jiri Olsa) [1222189]
-- [perf] build: Rename PERF-FEATURES into FEATURE-DUMP (Jiri Olsa) [1222189]
-- [perf] build: Rename display_vf to feature_verbose (Jiri Olsa) [1222189]
-- [perf] build: Rename display_lib into feature_display (Jiri Olsa) [1222189]
-- [perf] build: Get rid of VF_FEATURE_TESTS (Jiri Olsa) [1222189]
-- [perf] build: Rename CORE_FEATURE_TESTS to FEATURE_TESTS (Jiri Olsa) [1222189]
-- [perf] build: Get rid of LIB_INCLUDE variable (Jiri Olsa) [1222189]
-- [perf] build: Fix pthread-attr-setaffinity-np include in test-all (Jiri Olsa) [1222189]
-- [perf] build: Move features build output under features directory (Jiri Olsa) [1222189]
-- [perf] build: Disable default check for libbabeltrace (Jiri Olsa) [1222189]
-- [perf] tools: Fix building error for arm64 (Jiri Olsa) [1222189]
-- [perf] hists browser: Allow annotating entries in callchains (Jiri Olsa) [1222189]
-- [perf] hists: Remove hist_entry->used, not used anymore (Jiri Olsa) [1222189]
-- [perf] hists browser: Fix up some branch alignment (Jiri Olsa) [1222189]
-- [perf] hists browser: Simplify symbol annotation menu setup (Jiri Olsa) [1222189]
-- [perf] data: Add tracepoint events fields CTF conversion support (Jiri Olsa) [1222189]
-- [perf] kmem: Fix alignment of slab result table (Jiri Olsa) [1222189]
-- [perf] kmem: Allow -v option (Jiri Olsa) [1222189]
-- [perf] kmem: Fix segfault when invalid sort key is given (Jiri Olsa) [1222189]
-- [perf] stat: Always correctly indent ratio column (Jiri Olsa) [1222189]
-- [perf] stat: Fix IPC and other formulas with -A (Jiri Olsa) [1222189]
-- [perf] stat: Output running time and run/enabled ratio in CSV mode (Jiri Olsa) [1222189]
-- [perf] hists browser: Fix UI bug after fold/unfold (Jiri Olsa) [1222189]
-- [perf] probe: Fix compiles due to declarations using perf_probe_point (Jiri Olsa) [1222189]
-- [perf] hists browser: Fix UI bug after zoom into thread/dso/symbol (Jiri Olsa) [1222189]
-- [perf] probe: Fix possible double free on error (Jiri Olsa) [1222189]
-- [perf] tools: Output feature detection's gcc output to a file (Jiri Olsa) [1222189]
-- [perf] build: Fix libbabeltrace detection (Jiri Olsa) [1222189]
-- [perf] probe: Allow weak symbols to be probed (Jiri Olsa) [1222189]
-- [perf] symbols: Allow symbol alias when loading map for symbol name (Jiri Olsa) [1222189]
-- [perf] revert "perf probe: Fix to fall back to find probe point in symbols" (Jiri Olsa) [1222189]
-- [perf] probe: Fix --line to handle aliased symbols in glibc (Jiri Olsa) [1222189]
-- [perf] probe: Fix to handle aliased symbols in glibc (Jiri Olsa) [1222189]
-- [perf] ordered_events: Adopt queue() method (Jiri Olsa) [1222189]
-- [perf] tools: Remove superfluous thread->comm_set setting (Jiri Olsa) [1222189]
-- [perf] tools: tool->finished_round() doesn't need perf_session (Jiri Olsa) [1222189]
-- [perf] ordered_events: Allow tools to specify a deliver method (Jiri Olsa) [1222189]
-- [perf] ordered_events: Shorten function signatures (Jiri Olsa) [1222189]
-- [perf] ordered_events: Untangle from perf_session (Jiri Olsa) [1222189]
-- [perf] sched: No need to keep the session around (Jiri Olsa) [1222189]
-- [perf] tools: Reference count struct thread (Jiri Olsa) [1222189]
-- [perf] tools: Initialize cpu set in pthread_attr_setaffinity_np feature test (Jiri Olsa) [1222189]
-- [perf] probe: Remove bias offset to find probe point by address (Jiri Olsa) [1222189]
-- [perf] probe: Warn if given uprobe event accesses memory on older kernel (Jiri Olsa) [1222189]
-- [perf] tools: Improve 'libbabel' feature check failure message (Jiri Olsa) [1222189]
-- [perf] tools: Improve feature test debuggability (Jiri Olsa) [1222189]
-- [perf] tools: Improve libbfd detection message (Jiri Olsa) [1222189]
-- [perf] tools: Improve libperl detection message (Jiri Olsa) [1222189]
-- [perf] tools: Improve Python feature detection messages (Jiri Olsa) [1222189]
-- [perf] tools: Remove annoying extra message from the features build (Jiri Olsa) [1222189]
-- [perf] tools: Add PERF-FEATURES to the .gitignore file (Jiri Olsa) [1222189]
-- [perf] record: Document --group option (Jiri Olsa) [1222189]
-- [perf] record: Get rid of -l option from Documentation (Jiri Olsa) [1222189]
-- [perf] tools: Fix build error on ARCH=i386/x86_64/sparc64 (Jiri Olsa) [1222189]
-- [perf] tools: Fix FORK after COMM when synthesizing records for pre-existing threads (Jiri Olsa) [1222189]
-- [perf] stat: Report unsupported events properly (Jiri Olsa) [1222189]
-- [perf] tools: Compare JOBS to 0 after grep (Jiri Olsa) [1222189]
-- [perf] tools: Only include tsc file for x86 (Jiri Olsa) [1222189]
-- [perf] report: Fix branch stack mode cannot be set (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Show usage with incorrect params (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Use pr_debug instead of verbose && pr_info (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Add --purge FILE to remove all caches of FILE (Jiri Olsa) [1222189]
-- [perf] tools: Fix the bash completion problem of 'perf --*' (Jiri Olsa) [1222189]
-- [perf] list: Extend raw-dump to certain kind of events (Jiri Olsa) [1222189]
-- [perf] list: Clean up the printing functions of hardware/software events (Jiri Olsa) [1222189]
-- [perf] tools: Remove the '--(null)' long_name for --list-opts (Jiri Olsa) [1222189]
-- [perf] list: Avoid confusion of perf output and the next command prompt (Jiri Olsa) [1222189]
-- [perf] list: Allow listing events with 'tracepoint' prefix (Jiri Olsa) [1222189]
-- [perf] list: Sort the output of 'perf list' to view more clearly (Jiri Olsa) [1222189]
-- [perf] data: Fix sentinel setting for data_cmds array (Jiri Olsa) [1222189]
-- [perf] probe: Fix a precedence bug (Jiri Olsa) [1222189]
-- [perf] diff: Support for different binaries (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Add new buildid cache if update target is not cached (Jiri Olsa) [1222189]
-- [perf] probe: Handle strdup() failure (Jiri Olsa) [1222189]
-- [perf] probe: Fix get_real_path to free allocated memory in error path (Jiri Olsa) [1222189]
-- [perf] probe: Check kprobes blacklist when adding new events (Jiri Olsa) [1222189]
-- [perf] trace: Fix SIGBUS failures due to misaligned accesses (Jiri Olsa) [1222189]
-- [perf] data: Add a 'perf' prefix to the generic fields (Jiri Olsa) [1222189]
-- [perf] data: Add perf data to CTF conversion support (Jiri Olsa) [1222189]
-- [perf] tools: Add new 'perf data' command (Jiri Olsa) [1222189]
-- [perf] tools: Add feature check for libbabeltrace (Jiri Olsa) [1222189]
-- [perf] record: Support recording running/enabled time (Jiri Olsa) [1222189]
-- [perf] tools: Print the thread's tid on PERF_RECORD_COMM events when -D is asked (Jiri Olsa) [1222189]
-- [perf] trace: Dump stack on segfaults (Jiri Olsa) [1222189]
-- [perf] tools: Introduce dump_stack signal helper (Jiri Olsa) [1222189]
-- [perf] ordered_events: Stop using tool->ordered_events (Jiri Olsa) [1222189]
-- [perf] session: Remove perf_session from dump_event (Jiri Olsa) [1222189]
-- [perf] session: Remove perf_session from some deliver event routines (Jiri Olsa) [1222189]
-- [perf] session: Remove perf_session from warn_errors signature (Jiri Olsa) [1222189]
-- [perf] evlist: Adopt events_stats from perf_session (Jiri Olsa) [1222189]
-- [perf] session: Remove wrappers to machines__find (Jiri Olsa) [1222189]
-- [perf] trace: Separate routine that handles an event from the one that reads it (Jiri Olsa) [1222189]
-- [perf] trace: Add man page entry for --event (Jiri Olsa) [1222189]
-- [perf] trace: Introduce --filter-pids (Jiri Olsa) [1222189]
-- [perf] evlist: Introduce set_filter_pids method (Jiri Olsa) [1222189]
-- [perf] trace: Filter out the trace pid when no threads are specified (Jiri Olsa) [1222189]
-- [perf] evlist: Introduce set_filter_pid method (Jiri Olsa) [1222189]
-- [perf] trace: Only insert blank duration bracket when tracing syscalls (Jiri Olsa) [1222189]
-- [perf] trace: Support --events foo:bar --no-syscalls (Jiri Olsa) [1222189]
-- [perf] trace: Allow mixing with other events (Jiri Olsa) [1222189]
-- [perf] trace: Handle multiple threads better wrt syscalls being intermixed (Jiri Olsa) [1222189]
-- [perf] trace: Print thread info when following children (Jiri Olsa) [1222189]
-- [perf] list: Place the header text in its right position (Jiri Olsa) [1222189]
-- [perf] tools: Fix a bug of segmentation fault (Jiri Olsa) [1222189]
-- [perf] build: Display make commands on V=1 (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Use tools build framework (Jiri Olsa) [1222189]
-- [perf] tools lib api: Rename libapikfs.a to libapi.a (Jiri Olsa) [1222189]
-- [perf] tools lib api: Use tools build framework (Jiri Olsa) [1222189]
-- [perf] build: Add build documentation (Jiri Olsa) [1222189]
-- [perf] build: Remove PERF-CFLAGS file (Jiri Olsa) [1222189]
-- [perf] build: Remove uneeded variables (Jiri Olsa) [1222189]
-- [perf] build: Remove directory dependency rules (Jiri Olsa) [1222189]
-- [perf] build: Add single target build framework support (Jiri Olsa) [1222189]
-- [perf] build: Add arch sparc objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch sh objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch s390 objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch powerpc objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch arm64 objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch arm objects building (Jiri Olsa) [1222189]
-- [perf] build: Add arch x86 objects building (Jiri Olsa) [1222189]
-- [perf] build: Add perf.o object building (Jiri Olsa) [1222189]
-- [perf] build: Add zlib objects building (Jiri Olsa) [1222189]
-- [perf] build: Add perf regs objects building (Jiri Olsa) [1222189]
-- [perf] build: Add scripts objects building (Jiri Olsa) [1222189]
-- [perf] build: Add gtk objects building (Jiri Olsa) [1222189]
-- [perf] build: Add slang objects building (Jiri Olsa) [1222189]
-- [perf] build: Add ui objects building (Jiri Olsa) [1222189]
-- [perf] build: Add dwarf unwind objects building (Jiri Olsa) [1222189]
-- [perf] build: Add dwarf objects building (Jiri Olsa) [1222189]
-- [perf] build: Add probe objects building (Jiri Olsa) [1222189]
-- [perf] build: Add libperf objects building (Jiri Olsa) [1222189]
-- [perf] build: Add builtin objects building (Jiri Olsa) [1222189]
-- [perf] build: Add tests objects building (Jiri Olsa) [1222189]
-- [perf] build: Add bench objects building (Jiri Olsa) [1222189]
-- [perf] build: Disable make's built-in rules (Jiri Olsa) [1222189]
-- [perf] tools: Remove api fs object from python build (Jiri Olsa) [1222189]
-- [perf] tools build: Add subdir support (Jiri Olsa) [1222189]
-- [perf] tools build: Add detected config support (Jiri Olsa) [1222189]
-- [perf] tools build: Add new build support (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Consolidate .build-id cache path generators (Jiri Olsa) [1222189]
-- [perf] buildid-cache: Remove unneeded debugdir parameters (Jiri Olsa) [1222189]
-- [perf] symbols: Define STT_GNU_IFUNC for glibc 2.9 and older (Jiri Olsa) [1222189]
-- [perf] tools: Make perf aware of tracefs (Jiri Olsa) [1222189]
-- [perf] tools lib api fs: Add {tracefs, debugfs}_configured() functions (Jiri Olsa) [1222189]
-- [perf] tools lib api debugfs: Add DEBUGFS_DEFAULT_PATH macro (Jiri Olsa) [1222189]
-- [perf] tools lib api fs: Add tracefs mount helper functions (Jiri Olsa) [1222189]
-- [perf] tools lib fs: Add helper to find mounted file systems (Jiri Olsa) [1222189]
-- [perf] tools: Do not check debugfs MAGIC for tracing files (Jiri Olsa) [1222189]
-- [perf] evlist: Fix typo in comment (Jiri Olsa) [1222189]
-- [perf] trace: No need to enable evsels for workload started from perf (Jiri Olsa) [1222189]
-- [perf] tools: Introduce event_format__fprintf method (Jiri Olsa) [1222189]
-- [perf] tools lib traceevent: Introduce trace_seq_do_fprintf function (Jiri Olsa) [1222189]
-- [perf] symbols: debuglink should take symfs option into account (Jiri Olsa) [1222189]
-- [perf] symbols: Ignore mapping symbols on aarch64 (Jiri Olsa) [1222189]
-- [perf] probe: Update man page (Jiri Olsa) [1222189]
-- [perf] probe: Fix to handle optimized not-inlined functions (Jiri Olsa) [1222189]
-- [perf] tools: Fix a dso open fail message (Jiri Olsa) [1222189]
-- [perf] tests: Do not rely on dso__data_read_offset() to open dso (Jiri Olsa) [1222189]
-- [perf] test: Fix dso cache testcase (Jiri Olsa) [1222189]
-- [perf] tools: Construct LBR call chain (Jiri Olsa) [1222189]
-- [perf] tools: Enable LBR call stack support (Jiri Olsa) [1222189]
-- [perf] treewide: Fix typo in printk messages (Jiri Olsa) [1222189]
-- [perf] annotate: Fix fallback to unparsed disassembler line (Jiri Olsa) [1222189]
-- [perf] bench: Add -r all so that you can run all mem* routines (Jiri Olsa) [1222189]
-- [perf] bench: Carve out mem routine benchmarking (Jiri Olsa) [1222189]
-- [perf] x86/intel/uncore: Move PCI IDs for IMC to uncore driver (Jiri Olsa) [1222189]
-- [perf] x86/intel/uncore: Add support for Intel Haswell ULT (lower power Mobile Processor) IMC uncore PMUs (Jiri Olsa) [1222189]
-- [perf] x86/intel: Add cpu_(prepare|starting|dying) for core_pmu (Jiri Olsa) [1222189]
-- [perf] x86/intel: Add Broadwell support for the LBR callstack (Jiri Olsa) [1222189]
-- [perf] x86/intel/rapl: Fix energy counter measurements but supporing per domain energy units (Jiri Olsa) [1222189]
-- [perf] x86/intel: Fix Core2, Atom, NHM, WSM cycles:pp events (Jiri Olsa) [1222189]
-- [perf] Fix racy group access (Jiri Olsa) [1222189]
-- [perf] x86: Remove redundant calls to perf_pmu_{dis|en}able() (Jiri Olsa) [1222189]
-- [perf] Remove type specific target pointers (Jiri Olsa) [1222189]
-- [perf] x86/intel: Support task events with Intel CQM (Jiri Olsa) [1222189]
-- [perf] x86/intel: Add Intel Cache QoS Monitoring support (Jiri Olsa) [1222189]
-- [perf] Move cgroup init before PMU ->event_init() (Jiri Olsa) [1222189]
-- [perf] Add ->count() function to read per-package counters (Jiri Olsa) [1222189]
-- [perf] Make perf_cgroup_from_task() global (Jiri Olsa) [1222189]
-- [perf]  powerpc: Fix up flush_branch_stack() users (Jiri Olsa) [1222189]
-- [perf] x86/intel: Expose LBR callstack to user space tooling (Jiri Olsa) [1222189]
-- [perf] x86/intel: Discard zero length call entries in LBR call stack (Jiri Olsa) [1222189]
-- [perf] x86/intel: Disable FREEZE_LBRS_ON_PMI when LBR operates in callstack mode (Jiri Olsa) [1222189]
-- [perf] x86/intel: Re-organize code that implicitly enables LBR/PEBS (Jiri Olsa) [1222189]
-- [perf] Simplify the branch stack check (Jiri Olsa) [1222189]
-- [perf] x86/intel: Save/restore LBR stack during context switch (Jiri Olsa) [1222189]
-- [perf] x86/intel: Track number of events that use the LBR callstack (Jiri Olsa) [1222189]
-- [perf] x86/intel: Allocate space for storing LBR stack (Jiri Olsa) [1222189]
-- [perf] Always switch pmu specific data during context switch (Jiri Olsa) [1222189]
-- [perf] Add pmu specific data for perf task context (Jiri Olsa) [1222189]
-- [perf] x86/intel: Add basic Haswell LBR call stack support (Jiri Olsa) [1222189]
-- [perf] x86/intel: Use context switch callback to flush LBR stack (Jiri Olsa) [1222189]
-- [perf] Introduce pmu context switch callback (Jiri Olsa) [1222189]
-- [perf] x86/intel: Reduce lbr_sel_map[] size (Jiri Olsa) [1222189]
-- [perf] x86/amd/ibs: Convert force_ibs_eilvt_setup() to void (Jiri Olsa) [1222189]
-- [perf] Update userspace page info for software event (Jiri Olsa) [1222189]
-- [perf] Update shadow timestamp before add event (Jiri Olsa) [1222189]
-- [perf] x86/asm/entry: Explicitly optimize vm86 handling in code_segment_base() (Jiri Olsa) [1222189]
-- [perf] Fix context leak in put_event() (Jiri Olsa) [1222189]
-- [perf] x86/asm/entry: Fix incorrect TIF_IA32 check in code_segment_base() (Jiri Olsa) [1222189]
-
-* Tue May 26 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-255.el7]
-- [pci] Keep original resource if we fail to expand it (Myron Stowe) [1221057]
-- [x86] Mark Intel Broadwell-EP processor as supported (Steve Best) [1131674]
-- [s390] pci: reenable per default (Hendrik Brueckner) [1200410]
-- [kernel] ftrace: Have control op function callback only trace when RCU is watching (Jiri Olsa) [1197062]
-- [kernel] rcu: Do not trace rcu_is_watching() functions (Jiri Olsa) [1197062]
-- [kernel] rcu: Consistent rcu_is_watching() naming (Jiri Olsa) [1197062]
-- [kernel] rcu: Is it safe to enter an RCU read-side critical section? (Jiri Olsa) [1197062]
-- [kernel] time: Revert to calling clock_was_set_delayed() while in irq context (Prarit Bhargava) [1222767]
-- [kernel] tracing: Disable tracing on warning (Josh Poimboeuf) [1149340]
-- [netdrv] xen-netfront: use correct linear area after linearizing an skb (Vitaly Kuznetsov) [1144931]
-- [netdrv] xen-netfront: Remove BUGs on paged skb data which crosses a page boundary (Vitaly Kuznetsov) [1144931]
-- [netdrv] xen-netfront: Fix handling packets on compound pages with skb_linearize (Vitaly Kuznetsov) [1144931]
-- [powercap] rapl: add IDs for future Xeon CPUs (Steve Best) [1179961]
-- [thermal] powerclamp: add ids for future xeon cpus (Steve Best) [1179953]
-- [powerpc] powernv: Use _GLOBAL_TOC for opal wrappers (Steve Best) [1223481]
-- [powerpc] pseries: Simplify check for suspendability during suspend/migration (Gustavo Duarte) [1207295]
-- [powerpc] pseries: Introduce api_version to migration sysfs interface (Gustavo Duarte) [1207295]
-- [powerpc] pseries: Little endian fixes for post mobility device tree update (Gustavo Duarte) [1207295]
-- [powerpc] book3s: Fix partial invalidation of TLBs in MCE code (Steve Best) [1221090]
-- [powerpc] book3s: Fix the MCE code to use CONFIG_KVM_BOOK3S_64_HANDLER (Steve Best) [1221090]
-- [powerpc] powernv: Separate function for OPAL IRQ setup (Steve Best) [1221071]
-- [powerpc] powernv: Remove "opal" prefix from pr_xxx()s (Steve Best) [1221071]
-- [powerpc] powernv: Support OPAL requested heartbeat (Steve Best) [1221071]
-
-* Wed May 20 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-254.el7]
-- [fs] aio: Skip timer for io_getevents if timeout=0 (Carlos Maiolino) [1161535]
-- [fs] proc: fix page_size limit of proc pid cmdline fix (Jarod Wilson) [1193998]
-- [fs] proc: fix PAGE_SIZE limit of /proc/$PID/cmdline (Jarod Wilson) [1193998]
-- [hv] remove the per-channel workqueue (Vitaly Kuznetsov) [1203682]
-- [hv] don't schedule new works in vmbus_onoffer()/vmbus_onoffer_rescind() (Vitaly Kuznetsov) [1203682]
-- [hv] run non-blocking message handlers in the dispatch tasklet (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Fix a bug in rescind processing in vmbus_close_internal() (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Cleanup vmbus_close_internal() (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: missing curly braces in vmbus_process_offer() (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Perform device register in the per-channel work element (Vitaly Kuznetsov) [1203682]
-- [hv] util: On device remove, close the channel after de-initializing the service (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Remove the channel from the channel list(s) on failure (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Handle both rescind and offer messages in the same context (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Introduce a function to remove a rescinded offer (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Properly handle child device remove (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: serialize Offer and Rescind offer (Vitaly Kuznetsov) [1203682]
-- [hv] net: Add support for vNIC hot removal (Vitaly Kuznetsov) [1203682]
-- [hv] rename sc_lock to the more generic lock (Vitaly Kuznetsov) [1203682]
-- [hv] check vmbus_device_create() return value in vmbus_process_offer() (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: Fix a race condition when unregistering a device (Vitaly Kuznetsov) [1203682]
-- [hv] vmbus: prevent cpu offlining on newer hypervisors (Vitaly Kuznetsov) [1167380]
-- [netdrv] qlge: Fix qlge_update_hw_vlan_features to handle if interface is down (Chad Dupuis) [1164114]
-- [libata] fixup oops in ata_eh_link_report() (Ewan Milne) [1220144]
-- [kernel] watchdog: update watchdog_thresh properly (Ulrich Obergfell) [1216074]
-- [kernel] watchdog: update watchdog attributes atomically (Ulrich Obergfell) [1216074]
-- [cpufreq] powernv: Report cpu frequency throttling (Gustavo Duarte) [1218970]
-- [powerpc] powernv: Fix the overflow of OPAL message notifiers head array (Steve Best) [1221089]
-- [powerpc] powernv: Add OPAL message notifier unregister function (Steve Best) [1221089]
-- [powerpc] powernv: Add pstore support on powernv (Steve Best) [1220165]
-- [powerpc] pstore: Add pstore type id for PPC64 opal nvram partition (Steve Best) [1220165]
-- [powerpc] nvram: Move generic code for nvram and pstore (Steve Best) [1220165]
-- [powerpc] powernv: Handle compound PE in config accessors (Steve Best) [1211946]
-- [powerpc] powernv: Handle compound PE for EEH (Steve Best) [1211946]
-- [powerpc] powernv: Handle compound PE (Steve Best) [1211946]
-- [powerpc] powernv: Split ioda_eeh_get_state() (Steve Best) [1211946]
-- [powerpc] powernv: Allow to freeze PE (Steve Best) [1211946]
-- [powerpc] powernv: Enable M64 aperatus for PHB3 (Steve Best) [1211946]
-- [infiniband] qib: Add blank line after declaration (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Fix checkpatch warnings (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Fix potential NULL d_inode dereference (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Fix sizeof checkpatch warnings (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Add support for the new QMH7360 card (Doug Ledford) [1185097 1188513]
-- [infiniband] qib: Do not write EEPROM (Doug Ledford) [1185097 1188513]
-- [infiniband] ipoib: drop mcast_mutex usage (Doug Ledford) [1183881]
-- [infiniband] ipoib: deserialize multicast joins (Doug Ledford) [1183881]
-- [infiniband] ipoib: fix MCAST_FLAG_BUSY usage (Doug Ledford) [1183881]
-- [infiniband] ipoib: No longer use flush as a parameter (Doug Ledford) [1183881]
-- [infiniband] ipoib: Use dedicated workqueues per interface (Doug Ledford) [1183881]
-- [infiniband] ipoib: Make the carrier_on_task race aware (Doug Ledford) [1183881]
-- [infiniband] ipoib: Consolidate rtnl_lock tasks in workqueue (Doug Ledford) [1183881]
-- [infiniband] ipoib: change init sequence ordering (Doug Ledford) [1183881]
-- [infiniband] ipoib: factor out ah flushing (Doug Ledford) [1183881]
-- [infiniband] ipoib: Remove unnecessary port query (Doug Ledford) [1183881]
-
-* Fri May 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-253.el7]
-- [block] scsi-mq: fix requests that use a separate CDB buffer (Jeff Moyer) [1209624]
-- [block] Fix bug in blk_rq_merge_ok (Jeff Moyer) [1209624]
-- [block] blkmq: Fix NULL pointer deref when all reserved tags in (Jeff Moyer) [1209624]
-- [block] blk-mq: fix double-free in error path (Jeff Moyer) [1209624]
-- [block] prevent request-to-request merging with gaps if not allowed (Jeff Moyer) [1209624]
-- [block] blk-mq: fix false negative out-of-tags condition (Jeff Moyer) [1209624]
-- [block] blk-mq: get rid of ->cmd_size in the hardware queue (Jeff Moyer) [1209624]
-- [block] revert "blk-mq: Micro-optimize bt_get()" (Jeff Moyer) [1209624]
-- [block] blk-mq: Use all available hardware queues (Jeff Moyer) [1209624]
-- [block] blk-mq: Micro-optimize bt_get() (Jeff Moyer) [1209624]
-- [block] blk-mq: Fix a race between bt_clear_tag() and bt_get() (Jeff Moyer) [1209624]
-- [block] blk-mq: Avoid that __bt_get_word() wraps multiple times (Jeff Moyer) [1209624]
-- [block] blk-mq: re-check for available tags after running the hardware queue (Jeff Moyer) [1209624]
-- [block] blk-mq: fix hang in bt_get() (Jeff Moyer) [1209624]
-- [block] blk-mq: cleanup tag free handling (Jeff Moyer) [1209624]
-- [block] blk-mq: use 'nr_cpu_ids' as highest CPU ID count for hwq <-> cpu map (Jeff Moyer) [1209624]
-- [block] Fix computation of merged request priority (Jeff Moyer) [1209624]
-- [block] Return short read or 0 at end of a raw device, not EIO (Jeff Moyer) [1209624]
-- [block] revert "block: all blk-mq requests are tagged" (Jeff Moyer) [1209624]
-- [block] fix wrong error return in elevator_init() (Jeff Moyer) [1209624]
-- [block] scsi: Fix error handling in SCSI_IOCTL_SEND_COMMAND (Jeff Moyer) [1209624]
-- [block] remove artifical max_hw_sectors cap (Jeff Moyer) [1209624]
-- [block] include func name in __get_request prints (Jeff Moyer) [1209624]
-- [block] make blk_update_request print prefix match ratelimited prefix (Jeff Moyer) [1209624]
-- [block] include/linux/blkdev.h: use NULL instead of zero (Jeff Moyer) [1209624]
-- [block] block_dev: implement readpages() to optimize sequential read (Jeff Moyer) [1209624]
-- [block] blk-mq: Make bt_clear_tag() easier to read (Jeff Moyer) [1209624]
-- [block] blk-mq: fix potential hang if rolling wakeup depth is too high (Jeff Moyer) [1209624]
-- [block] misplaced rq_complete tracepoint (Jeff Moyer) [1209624]
-- [block] bdi: reimplement bdev_inode_switch_bdi() (Jeff Moyer) [1209624]
-- [block] bsg: fix potential error pointer dereference (Jeff Moyer) [1209624]
-- [block] blk-mq: add BLK_MQ_F_DEFER_ISSUE support flag (Jeff Moyer) [1209624]
-- [block] blk-mq: put blk_queue_rq_timeout together in blk_mq_init_queue() (Jeff Moyer) [1209624]
-- [block] remove redundant check about 'set->nr_hw_queues' in blk_mq_alloc_tag_set() (Jeff Moyer) [1209624]
-- [block] blk-mq: release mq's kobjects in blk_release_queue() (Jeff Moyer) [1209624]
-- [block] blk-mq: End unstarted requests on a dying queue (Jeff Moyer) [1209624]
-- [block] blk-mq: Allow requests to never expire (Jeff Moyer) [1209624]
-- [block] blk-mq: Add helper to abort requeued requests (Jeff Moyer) [1209624]
-- [block] blk-mq: Let drivers cancel requeue_work (Jeff Moyer) [1209624]
-- [block] blk-mq: Export if requests were started (Jeff Moyer) [1209624]
-- [block] blk-mq: Wake tasks entering queue on dying (Jeff Moyer) [1209624]
-- [block] blk-mq: export blk_mq_freeze_queue() (Jeff Moyer) [1209624]
-- [block] wake up waiters when a queue is marked dying (Jeff Moyer) [1209624]
-- [block] blk-mq: Export freeze_unfreeze functions (Jeff Moyer) [1209624]
-- [block] blk-mq: Exit queue on alloc failure (Jeff Moyer) [1209624]
-- [block] blk-mq: prevent unmapped hw queue from being scheduled (Jeff Moyer) [1209624]
-- [block] blk-mq: move the kdump check to blk_mq_alloc_tag_set (Jeff Moyer) [1209624]
-- [block] blk-mq: handle the single queue case in blk_mq_hctx_next_cpu (Jeff Moyer) [1209624]
-- [block] blk-mq: add blk_mq_free_hctx_request() (Jeff Moyer) [1209624]
-- [block] blk-mq: export blk_mq_free_request() (Jeff Moyer) [1209624]
-- [block] blk-mq: add blk_mq_unique_tag() (Jeff Moyer) [1209624]
-- [block] blk-mq: add a 'list' parameter to ->queue_rq() (Jeff Moyer) [1209624]
-- [block] blk-mq: allocate cpumask on the home node (Jeff Moyer) [1209624]
-- [block] blk-mq: don't wait in blk_mq_queue_enter() if __GFP_WAIT isn't set (Jeff Moyer) [1209624]
-- [block] block, scsi: fixup blk_get_request dead queue scenarios (Jeff Moyer) [1209624]
-- [block] blk-mq: export blk_mq_run_hw_queues (Jeff Moyer) [1209624]
-- [block] blk-mq: make blk_mq_run_queues() static (Jeff Moyer) [1209624]
-- [block] blk-mq: use get_cpu/put_cpu instead of preempt_disable_preempt_enable (Jeff Moyer) [1209624]
-- [block] blk-mq: call preempt_disable/enable in blk_mq_run_hw_queue, and only if needed (Jeff Moyer) [1209624]
-- [block] blk-mq: add blk_mq_init_allocated_queue and export blk_mq_register_disk (Jeff Moyer) [1209624]
-- [block] blk-mq: fix use of incorrect goto label in blk_mq_init_queue error path (Jeff Moyer) [1209624]
-- [block] blk-mq: support per-distpatch_queue flush machinery (Jeff Moyer) [1209624]
-- [block] introduce 'blk_mq_ctx' parameter to blk_get_flush_queue (Jeff Moyer) [1209624]
-- [block] flush: avoid to figure out flush queue unnecessarily (Jeff Moyer) [1209624]
-- [block] remove blk_init_flush() and its pair (Jeff Moyer) [1209624]
-- [block] introduce blk_flush_queue to drive flush machinery (Jeff Moyer) [1209624]
-- [block] avoid to use q->flush_rq directly (Jeff Moyer) [1209624]
-- [block] move flush initialization to blk_flush_init (Jeff Moyer) [1209624]
-- [block] introduce blk_init_flush and its pair (Jeff Moyer) [1209624]
-- [block] blk-mq: allocate flush_rq in blk_mq_init_flush() (Jeff Moyer) [1209624]
-- [block] blk-mq: handle failure path for initializing hctx (Jeff Moyer) [1209624]
-- [block] blk-mq: make mq_queue_reinit_notify() freeze queues in parallel (Jeff Moyer) [1209624]
-- [block] blk-mq, percpu-ref: start q->mq_usage_counter in atomic mode (Jeff Moyer) [1209624]
-- [block] blk-mq: blk_mq_freeze_queue() should allow nesting (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_ref_is_dying() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: remove unnecessary ACCESS_ONCE() in percpu_ref_tryget_live() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: fix DEAD flag contamination of percpu pointer (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: Replace smp_read_barrier_depends() with lockless_dereference() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: make INIT_ATOMIC and switch_to_atomic() sticky (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add PERCPU_REF_INIT_* flags (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: decouple switching to percpu mode and reinit (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: decouple switching to atomic mode and killing (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add PCPU_REF_DEAD (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: rename things to prepare for decoupling percpu_atomic mode switch (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: replace pcpu_ prefix with percpu_ (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: minor code and comment updates (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: relocate percpu_ref_reinit() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: make percpu_ref based on longs instead of ints (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add @gfp to percpu_ref_init() (Jeff Moyer) [1209624]
-- [block] blk-mq: use percpu_ref for mq usage count (Jeff Moyer) [1209624]
-- [lib] percpu-counter: add @gfp to percpu_counter_init() (Jeff Moyer) [1209624]
-- [lib] percpu-counter: make percpu_counters_lock irq-safe (Jeff Moyer) [1209624]
-- [mm] percpu: implement asynchronous chunk population (Jeff Moyer) [1209624]
-- [mm] percpu: rename pcpu_reclaim_work to pcpu_balance_work (Jeff Moyer) [1209624]
-- [mm] percpu: implmeent pcpu_nr_empty_pop_pages and chunk->nr_populated (Jeff Moyer) [1209624]
-- [mm] percpu: make sure chunk->map array has available space (Jeff Moyer) [1209624]
-- [mm] percpu: implement [__]alloc_percpu_gfp() (Jeff Moyer) [1209624]
-- [mm] percpu: indent the population block in pcpu_alloc() (Jeff Moyer) [1209624]
-- [mm] percpu: make pcpu_alloc_area() capable of allocating only from populated areas (Jeff Moyer) [1209624]
-- [mm] percpu: restructure locking (Jeff Moyer) [1209624]
-- [mm] percpu: make percpu-km set chunk->populated bitmap properly (Jeff Moyer) [1209624]
-- [mm] percpu: move region iterations out of pcpu_[de]populate_chunk() (Jeff Moyer) [1209624]
-- [mm] percpu: move common parts out of pcpu_[de]populate_chunk() (Jeff Moyer) [1209624]
-- [mm] percpu: remove @may_alloc from pcpu_get_pages() (Jeff Moyer) [1209624]
-- [mm] percpu: remove the usage of separate populated bitmap in percpu-vm (Jeff Moyer) [1209624]
-- [mm] percpu: perform tlb flush after pcpu_map_pages() failure (Jeff Moyer) [1209624]
-- [mm] percpu: fix pcpu_alloc_pages() failure path (Jeff Moyer) [1209624]
-- [mm] percpu: Use ALIGN macro instead of hand coding alignment calculation (Jeff Moyer) [1209624]
-- [mm] percpu: make pcpu_alloc_chunk() use pcpu_mem_free() instead of kfree() (Jeff Moyer) [1209624]
-- [mm] percpu: renew the max_contig if we merge the head and previous block (Jeff Moyer) [1209624]
-- [mm] percpu: allocation size should be even (Jeff Moyer) [1209624]
-- [mm] percpu: speed alloc_pcpu_area() up (Jeff Moyer) [1209624]
-- [mm] percpu: store offsets instead of lengths in ->map[] (Jeff Moyer) [1209624]
-- [mm] percpu: fold pcpu_split_block() into the only caller (Jeff Moyer) [1209624]
-- [mm] revert "percpu scalability fixes" (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: improve WARN messages (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: fix synchronize_rcu() in comments (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_ref_reinit() and percpu_ref_is_zero() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: require percpu_ref to be exited explicitly (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: use unsigned long for pcpu_count pointer (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add helpers for ->percpu_count accesses (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: one bit is enough for REF_STATUS (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: fix usage of this_cpu_ops (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_ref_tryget() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: rename percpu_ref_tryget() to percpu_ref_tryget_live() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: Add a WARN() for ref going negative (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: export symbols (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: use RCU-sched insted of normal RCU (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_tryget() along with percpu_ref_kill_and_confirm() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: implement percpu_ref_cancel_init() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: add __must_check to percpu_ref_init() and don't use ACCESS_ONCE() in percpu_ref_kill_rcu() (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: cosmetic updates (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: consistently use plain (non-sched) RCU (Jeff Moyer) [1209624]
-- [lib] percpu-refcount: Don't use silly cmpxchg() (Jeff Moyer) [1209624]
-- [lib] percpu: implement generic percpu refcounting (Jeff Moyer) [1209624]
-
-* Thu May 14 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-252.el7]
-- [powercap] rapl: Add support for Intel Skylake processors (Steve Best) [1169598]
-- [tools] turbostat: support additional Broadwell model (Steve Best) [1189945]
-- [x86] kernel: execution in the early microcode loader (Jacob Tanenbaum) [1206830] {CVE-2015-2666}
-- [x86] kernel: Update the UV APIC HUB check (Frank Ramsay) [1215695]
-- [x86] kernel: Update the UV APIC driver check (Frank Ramsay) [1215695]
-- [x86] kernel: Update the APIC UV OEM check (Frank Ramsay) [1215695]
-- [mfd] rtsx: Clear hardware PFM mode in rtl8411b (Jarod Wilson) [1220506]
-- [mfd] rtsx: Using pcr_dbg replace dev_dbg (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add support for rts525A (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add support for rts524A (Jarod Wilson) [1220506]
-- [mfd] rtsx: Remove LCTLR defination (Jarod Wilson) [1220506]
-- [mfd] rtsx: Update phy register (Jarod Wilson) [1220506]
-- [mfd] rtsx: Update driving settings (Jarod Wilson) [1220506]
-- [mfd] rtsx: Update PETXCFG address (Jarod Wilson) [1220506]
-- [mfd] rtsx: Place register address and values togather (Jarod Wilson) [1220506]
-- [mfd] rtsx: Replace TAB by SPC after #define (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add func to split u32 into register (Jarod Wilson) [1220506]
-- [mfd] rtsx: Fix PM suspend for 5227 & 5249 (Jarod Wilson) [1220506]
-- [mfd] rtsx: Fix build warnings for !PM (Jarod Wilson) [1220506]
-- [mfd] rtsx_pcr: Fix MSI enable error handling (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add dma transfer function (Jarod Wilson) [1220506]
-- [mfd] rtsx: modify phase searching method for tuning (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add support for card reader rtl8402 (Jarod Wilson) [1220506]
-- [mfd] rtsx: Add set pull control macro and simplify rtl8411 (Jarod Wilson) [1220506]
-- [mfd] rtsx_pcr: Disable interrupts before cancelling delayed works (Jarod Wilson) [1220506]
-- [mfd] mc12xx-i2c: rtsx_pcr: ti-ssp: Remove redundant dev_set_drvdata (Jarod Wilson) [1220506]
-- [mfd] rtsx: Modify rts5249_optimize_phy (Jarod Wilson) [1220506]
-- [acpi] lpss: add LPSS device for Wildcat Point PCH (Prarit Bhargava) [1208093]
-- [acpi] lpss: provide con_id for the clkdev (Prarit Bhargava) [1178891]
-- [acpi] lpss: check the result of ioremap() (Prarit Bhargava) [1178891]
-- [acpi] lpss: allow to use specific PM domain during ->probe() (Prarit Bhargava) [1178891]
-- [acpi] lpss: add all LPSS devices to the specific power domain (Prarit Bhargava) [1178891]
-- [acpi] lpss: not using UART RTS override with Auto Flow Control (Prarit Bhargava) [1178891]
-- [acpi] lpss: disable async suspend/resume of LPSS devices (Prarit Bhargava) [1178891]
-- [acpi] clk: fractional-divider: cast parent_rate to u64 before multiplying (Prarit Bhargava) [1178891]
-- [acpi] lpss: complete PM entries for LPSS power domain (Prarit Bhargava) [1178891]
-- [acpi] lpss: drop clkdev_name member from lpss_device_desc (Prarit Bhargava) [1178891]
-- [acpi] lpss: introduce flags (Prarit Bhargava) [1178891]
-- [acpi] lpss: remove struct lpss_shared_clock (Prarit Bhargava) [1178891]
-- [acpi] lpss: Take I2C host controllers out of reset (Prarit Bhargava) [1178891]
-- [acpi] scan: always register ACPI LPSS scan handler (Prarit Bhargava) [1178891]
-- [acpi] lpss: support for fractional divider clock (Prarit Bhargava) [1178891]
-- [acpi] clk: new basic clk type for fractional divider (Prarit Bhargava) [1178891]
-- [acpi] clk: wrap I/O access for improved portability (Prarit Bhargava) [1178891]
-- [acpi] lpss: custom power domain for LPSS (Prarit Bhargava) [1178891]
-- [acpi] lpss: Enable async suspend/resume of LPSS devices (Prarit Bhargava) [1178891]
-- [acpi] lpss: Support for device latency tolerance PM QoS (Prarit Bhargava) [1178891]
-- [acpi] scan: Add bind/unbind callbacks to struct acpi_scan_handler (Prarit Bhargava) [1178891]
-- [acpi] pm: qos: Introcuce latency tolerance device PM QoS type (Prarit Bhargava) [1178891]
-- [acpi] lpss: fix UART Auto Flow Control (Prarit Bhargava) [1178891]
-- [acpi] enable CONFIG_X86_INTEL_LPSS (Prarit Bhargava) [1178891]
-- [security] selinux/nlmsg: add a build time check for rtnl/xfrm cmds (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_MAPPING (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_MIGRATE (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_REPORT (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_[NEW|GET]SADINFO (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_GETSPDINFO (Alexander Duyck) [1210224]
-- [security] selinux/nlmsg: add XFRM_MSG_NEWSPDINFO (Alexander Duyck) [1210224]
-
-* Mon May 11 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-251.el7]
-- [x86] perf: Add INST_RETIRED.ALL workarounds (Jiri Olsa) [1086843]
-- [x86] perf: Add Broadwell core support (Jiri Olsa) [1086843]
-- [x86] perf: Add new cache events table for Haswell (Jiri Olsa) [1086843]
-- [x86] perf/uncore: Delete an unnecessary check before pci_dev_put() call (Jiri Olsa) [1176340]
-- [x86] perf/uncore/hsw-ep: Handle systems with only two SBOXes (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add scaling units to the EP iMC events (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix boot crash on SBOX PMU on Haswell-EP (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix IRP uncore register offsets on Haswell EP (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix minor race in box set up (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Update support for client uncore IMC PMU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix PCU filter setup for Sandy/Ivy/Haswell EP (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add missing cbox filter flags on IvyBridge-EP uncore driver (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Register the PMU only if the uncore pci device exists (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add Haswell-EP uncore support (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Rename IvyTown to IvyBridge-EP (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Export basic memory events for IVT IMC PMU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix coccinelle warnings (Jiri Olsa) [1176340]
-- [x86] perf/uncore: move NHM-EX/WSM-EX specific code to seperate file (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Move SNB/IVB-EP specific code to seperate file (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Move NHM/SNB/IVB specific code to seperate file (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Declare some functions and variables (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix SNB-EP/IVT Cbox filter mappings (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix missing end markers for SNB/IVB/HSW IMC PMU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Fix compilation warning in snb_uncore_imc_init_box() (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add __init for uncore_cpumask_init() (Jiri Olsa) [1176340]
-- [x86] perf/uncore: use MiB unit for events for SNB/IVB/HSW IMC (Jiri Olsa) [1176340]
-- [x86] perf/uncore: add hrtimer to SNB uncore IMC PMU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: add SNB/IVB/HSW client uncore memory controller support (Jiri Olsa) [1176340]
-- [x86] perf/uncore: move uncore_event_to_box() and uncore_pmu_to_box() (Jiri Olsa) [1176340]
-- [x86] perf/uncore: make hrtimer timeout configurable per box (Jiri Olsa) [1176340]
-- [x86] perf/uncore: add PCI ids for SNB/IVB/HSW IMC (Jiri Olsa) [1176340]
-- [x86] perf/uncore: add ability to customize pmu callbacks (Jiri Olsa) [1176340]
-- [x86] perf/uncore: fix initialization of cpumask (Jiri Olsa) [1176340]
-- [x86] perf: Add Ivy Bridge-EP uncore IRP box support (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add filter support for IvyBridge-EP QPI boxes (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Don't use smp_processor_id() in validate_group() (Jiri Olsa) [1176340]
-- [x86] perf: Fix uncore PCI fixed counter handling (Jiri Olsa) [1176340]
-- [x86] perf: Convert kmalloc_node(...GFP_ZERO...) to kzalloc_node() (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Enable EV_SEL_EXT bit for PCU (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add filter support for QPI boxes (Jiri Olsa) [1176340]
-- [x86] perf/uncore: Add auxiliary pci device support (Jiri Olsa) [1176340]
-- [x86] perf: Fix sparse warning (Jiri Olsa) [1176340]
-- [x86] perf: Reduce stack usage of x86_schedule_events() (Jiri Olsa) [1176340]
-- [x86] perf: Prevent some shift wrapping bugs in the Intel uncore driver (Jiri Olsa) [1176340]
-- [perf] tools: Make sparc64 arch point to sparc (Jiri Olsa) [1209607]
-- [perf] symbols: Define EM_AARCH64 for older OSes (Jiri Olsa) [1209607]
-- [perf] top: Fix SIGBUS on sparc64 (Jiri Olsa) [1209607]
-- [perf] tools: Fix probing for PERF_FLAG_FD_CLOEXEC flag (Jiri Olsa) [1209607]
-- [perf] tools: Fix pthread_attr_setaffinity_np build error (Jiri Olsa) [1209607]
-- [perf] tools: Define _GNU_SOURCE on pthread_attr_setaffinity_np feature check (Jiri Olsa) [1209607]
-- [perf] bench: Fix order of arguments to memcpy_alloc_mem (Jiri Olsa) [1209607]
-- [perf] symbols: Convert lseek + read to pread (Jiri Olsa) [1209607]
-- [perf] tools: Use perf_data_file__fd() consistently (Jiri Olsa) [1209607]
-- [perf] symbols: Support to read compressed module from build-id cache (Jiri Olsa) [1209607]
-- [perf] evsel: Set attr.task bit for a tracking event (Jiri Olsa) [1209607]
-- [perf] header: Set header version correctly (Jiri Olsa) [1209607]
-- [perf] record: Show precise number of samples (Jiri Olsa) [1209607]
-- [perf] tools: Do not use __perf_session__process_events() directly (Jiri Olsa) [1209607]
-- [perf] callchain: Cache eh/debug frame offset for dwarf unwind (Jiri Olsa) [1209607]
-- [perf] tools: Provide stub for missing pthread_attr_setaffinity_np (Jiri Olsa) [1209607]
-- [perf] evsel: Don't rely on malloc working for sz 0 (Jiri Olsa) [1209607]
-- [perf] tools: add hardware breakpoint bp_len test cases (Jiri Olsa) [1209607]
-- [perf] tools: allow user to specify hardware breakpoint bp_len (Jiri Olsa) [1209607]
-- [perf] tools lib traceevent: Add support for IP address formats (Jiri Olsa) [1209607]
-- [perf] ui/tui: Show fatal error message only if exists (Jiri Olsa) [1209607]
-- [perf] tests: Fix typo in sample-parsing.c (Jiri Olsa) [1209607]
-- [perf] tools lib fs debugfs: Check if debugfs is mounted when handling ENOENT (Jiri Olsa) [1209607]
-- [perf] tools lib fs debugfs: Introduce debugfs__strerror_open_tp (Jiri Olsa) [1209607]
-- [perf] trace: Fix error reporting for evsel pgfault constructor (Jiri Olsa) [1209607]
-- [perf] tools lib fs: Pass filename to debugfs__strerror_open (Jiri Olsa) [1209607]
-- [perf] tools lib fs: Adopt debugfs open strerrno method (Jiri Olsa) [1209607]
-- [perf] diff: Fix -o/--order option behavior (Jiri Olsa) [1209607]
-- [perf] diff: Fix output ordering to honor next column (Jiri Olsa) [1209607]
-- [perf] tools: Pass struct perf_hpp_fmt to its callbacks (Jiri Olsa) [1209607]
-- [perf] diff: Introduce fmt_to_data_file() helper (Jiri Olsa) [1209607]
-- [perf] diff: Print diff result more precisely (Jiri Olsa) [1209607]
-- [perf] diff: Get rid of hists__compute_resort() (Jiri Olsa) [1209607]
-- [perf] tools: Allow use of an exclusive option more than once (Jiri Olsa) [1209607]
-- [perf] tools: Document parameterized and symbolic events (Jiri Olsa) [1209607]
-- [perf] tools: Extend format_alias() to include event parameters (Jiri Olsa) [1209607]
-- [perf] tools: Support parsing parameterized events (Jiri Olsa) [1209607]
-- [perf] tools: Remove some unused functions from color.c (Jiri Olsa) [1209607]
-- [perf] report: Get rid of report__inc_stat() (Jiri Olsa) [1209607]
-- [perf] hists: Introduce function for deleting/removing hist_entry (Jiri Olsa) [1209607]
-- [perf] hists: Rename hist_entry__free to __delete (Jiri Olsa) [1209607]
-- [perf] tools: Remove EOL whitespaces (Jiri Olsa) [1209607]
-- [perf] mem: Move the mem_operations global to struct perf_mem (Jiri Olsa) [1209607]
-- [perf] mem: Enable sampling loads and stores simultaneously (Jiri Olsa) [1209607]
-- [perf] probe: Fix probing kretprobes (Jiri Olsa) [1209607]
-- [perf] symbols: Introduce 'for' method to iterate over the symbols with a given name (Jiri Olsa) [1209607]
-- [perf] probe: Do not rely on map__load() filter to find symbols (Jiri Olsa) [1209607]
-- [perf] symbols: Introduce method to iterate symbols ordered by name (Jiri Olsa) [1209607]
-- [perf] symbols: Return the first entry with a given name in find_by_name method (Jiri Olsa) [1209607]
-- [perf] annotate: Fix memory leaks in LOCK handling (Jiri Olsa) [1209607]
-- [perf] annotate: Handle ins parsing failures (Jiri Olsa) [1209607]
-- [perf] scripting perl: Force to use stdbool (Jiri Olsa) [1209607]
-- [perf] evlist: Remove extraneous 'was' on error message (Jiri Olsa) [1209607]
-- [perf] tools: Fix segfault for symbol annotation on TUI (Jiri Olsa) [1209607]
-- [perf] test: Fix dwarf unwind using libunwind (Jiri Olsa) [1209607]
-- [perf] tools: Avoid build splat for syscall numbers with uclibc (Jiri Olsa) [1209607]
-- [perf] tools: Elide strlcpy warning with uclibc (Jiri Olsa) [1209607]
-- [perf] tools: Fix statfs.f_type data type mismatch build error with uclibc (Jiri Olsa) [1209607]
-- [perf] machine: Fix __machine__findnew_thread() error path (Jiri Olsa) [1209607]
-- [perf] tools: Fix building error in x86_64 when dwarf unwind is on (Jiri Olsa) [1209607]
-- [perf] probe: Propagate error code when write(2) failed (Jiri Olsa) [1209607]
-- [perf] hists browser: Fix segfault when showing callchain (Jiri Olsa) [1209607]
-- [perf] callchain: Free callchains when hist entries are deleted (Jiri Olsa) [1209607]
-- [perf] hists: Fix children sort key behavior (Jiri Olsa) [1209607]
-- [perf] diff: Fix to sort by baseline field by default (Jiri Olsa) [1209607]
-- [perf] list: Fix --raw-dump option (Jiri Olsa) [1209607]
-- [perf] probe: Fix crash in dwarf_getcfi_elf (Jiri Olsa) [1209607]
-- [perf] probe: Fix to fall back to find probe point in symbols (Jiri Olsa) [1209607]
-- [perf] callchain: Append callchains only when requested (Jiri Olsa) [1209607]
-- [perf] ui/tui: Print backtrace symbols when segfault occurs (Jiri Olsa) [1209607]
-- [perf] report: Show progress bar for output resorting (Jiri Olsa) [1209607]
-- [perf] Fix building warning on ARM 32 (Jiri Olsa) [1209607]
-- [perf] symbols: Fix use after free in filename__read_build_id (Jiri Olsa) [1209607]
-- [perf] evlist: Use roundup_pow_of_two (Jiri Olsa) [1209607]
-- [perf] tools: Make the mmap length autotuning more robust (Jiri Olsa) [1209607]
-- [perf] bitops: Fix signedness of compile-time hweight implementations (Jiri Olsa) [1209607]
-- [perf] tools: Remove bitops/hweight usage of bits in tools/perf (Jiri Olsa) [1209607]
-- [perf] tools: Adopt roundup_pow_of_two (Jiri Olsa) [1209607]
-- [perf] tools: Adopt rounddown_pow_of_two and deps (Jiri Olsa) [1209607]
-- [perf] tools: Adopt fls_long and deps (Jiri Olsa) [1209607]
-- [perf] tools: Move bitops.h from tools/perf/util to tools/ (Jiri Olsa) [1209607]
-- [perf] tools: Introduce asm-generic/bitops.h (Jiri Olsa) [1209607]
-- [perf] tools lib: Move asm-generic/bitops/find.h code to tools/include and tools/lib (Jiri Olsa) [1209607]
-- [perf] tools: Whitespace prep patches for moving bitops.h (Jiri Olsa) [1209607]
-- [perf] tools: Move code originally from asm-generic/atomic.h into tools/include/asm-generic/ (Jiri Olsa) [1209607]
-- [perf] tools: Move code originally from linux/log2.h to tools/include/linux/ (Jiri Olsa) [1209607]
-- [perf] tools: Move __ffs implementation to tools/include/asm-generic/bitops/__ffs.h (Jiri Olsa) [1209607]
-- [perf] evlist: Do not use hard coded value for a mmap_pages default (Jiri Olsa) [1209607]
-- [perf] trace: Let the perf_evlist__mmap autosize the number of pages to use (Jiri Olsa) [1209607]
-- [perf] evlist: Improve the strerror_mmap method (Jiri Olsa) [1209607]
-- [perf] evlist: Clarify sterror_mmap variable names (Jiri Olsa) [1209607]
-- [perf] evlist: Fixup brown paper bag on "hint" for --mmap-pages cmdline arg (Jiri Olsa) [1209607]
-- [perf] trace: Provide a better explanation when mmap fails (Jiri Olsa) [1209607]
-- [perf] evlist: Introduce strerror_mmap method (Jiri Olsa) [1209607]
-- [perf] tools: Use sysctl__read_int instead of ad-hoc copies (Jiri Olsa) [1209607]
-- [perf] tools lib fs: Add sysctl__read_int helper (Jiri Olsa) [1209607]
-- [perf] tools lib fs: Adopt filename__read_int from tools/perf/ (Jiri Olsa) [1209607]
-- [perf] kvm stat live: Mark events as (x86 only) in help output (Jiri Olsa) [1209607]
-- [perf] tests: Fix attr tests size values to cope with machine state on interrupt ABI changes (Jiri Olsa) [1209607]
-- [perf] calloc/xcalloc: Fix argument order (Jiri Olsa) [1209607]
-- [perf] callchain: Move cpumode resolve code to add_callchain_ip (Jiri Olsa) [1209607]
-- [perf] callchain: Fixup parameter handling error message (Jiri Olsa) [1209607]
-- [perf] tools: Add --buildid-dir option to set cache directory (Jiri Olsa) [1209607]
-- [perf] buildid cache: Fix -a segfault related to kcore handling (Jiri Olsa) [1209607]
-- [perf] buildid-cache: Remove extra debugdir variables (Jiri Olsa) [1209607]
-- [perf] tools: Use single strcmp call instead of two (Jiri Olsa) [1209607]
-- [perf] hists browser: Change print format from lu to PRIu64 (Jiri Olsa) [1209607]
-- [perf] bench: Fix memcpy/memset output (Jiri Olsa) [1209607]
-- [perf] bench: Merge memset into memcpy (Jiri Olsa) [1209607]
-- [perf] bench: Prepare memcpy for merge (Jiri Olsa) [1209607]
-- [perf] session: Do not fail on processing out of order event (Jiri Olsa) [1209607]
-- [perf] report: In branch stack mode use address history sorting (Jiri Olsa) [1209607]
-- [perf] report: Add --branch-history option (Jiri Olsa) [1209607]
-- [perf] callchain: Support handling complete branch stacks as histograms (Jiri Olsa) [1209607]
-- [perf] stat: Add support for snapshot counters (Jiri Olsa) [1209607]
-- [perf] stat: Add support for per-pkg counters (Jiri Olsa) [1209607]
-- [perf] tools: Remove perf_evsel__read interface (Jiri Olsa) [1209607]
-- [perf] stat: Use read_counter in read_counter_aggr (Jiri Olsa) [1209607]
-- [perf] stat: Make read_counter work over the thread dimension (Jiri Olsa) [1209607]
-- [perf] stat: Use perf_evsel__read_cb in read_counter (Jiri Olsa) [1209607]
-- [perf] tools: Add snapshot format file parsing (Jiri Olsa) [1209607]
-- [perf] tools: Add per-pkg format file parsing (Jiri Olsa) [1209607]
-- [perf] evsel: Introduce perf_evsel__read_cb function (Jiri Olsa) [1209607]
-- [perf] evsel: Introduce perf_counts_values__scale function (Jiri Olsa) [1209607]
-- [perf] evsel: Introduce perf_evsel__compute_deltas function (Jiri Olsa) [1209607]
-- [perf] tools: Allow to force redirect pr_debug to stderr (Jiri Olsa) [1209607]
-- [perf] tools: Fix segfault due to invalid kernel dso access (Jiri Olsa) [1209607]
-- [perf] callchain: Make get_srcline fall back to sym+offset (Jiri Olsa) [1209607]
-- [perf] symbols: Move bfd_demangle stubbing to its only user (Jiri Olsa) [1209607]
-- [perf] callchain: Enable printing the srcline in the history (Jiri Olsa) [1209607]
-- [perf] tools: Collapse first level callchain entry if it has sibling (Jiri Olsa) [1209607]
-- [perf] hists browser: Print overhead percent value for first-level callchain (Jiri Olsa) [1209607]
-- [perf] tools: Only override the default :tid comm entry (Jiri Olsa) [1209607]
-- [perf] tools: Add perf-read-vdso32 and perf-read-vdsox32 to .gitignore (Jiri Olsa) [1209607]
-- [perf] evlist: Do not poll events that use the system_wide flag (Jiri Olsa) [1209607]
-- [perf] evsel: Fix ftrace:function event recording (Jiri Olsa) [1209607]
-- [perf] diff: Add missing handler for PERF_RECORD_MMAP2 events (Jiri Olsa) [1209607]
-- [perf] hists: Fix up srcline histogram key formatting (Jiri Olsa) [1209607]
-- [perf] annotate: Support source line numbers in annotate (Jiri Olsa) [1209607]
-- [perf] tools: Only print base source file for srcline (Jiri Olsa) [1209607]
-- [perf] callchain: Use a common function to resolve symbol or name (Jiri Olsa) [1209607]
-- [perf] callchain: Use al.addr to set up call chain (Jiri Olsa) [1209607]
-- [perf] callchain: Factor out adding new call chain entries (Jiri Olsa) [1209607]
-- [perf] tools: Fix annotation with kcore (Jiri Olsa) [1209607]
-- [perf] test: fix typo in python test (Jiri Olsa) [1209607]
-- [perf] symbols: Fallback to kallsyms when using the minimal 'ELF' loader (Jiri Olsa) [1209607]
-- [perf] tools: Clean up libelf feature support code (Jiri Olsa) [1209607]
-- [perf] build-id: Move disable_buildid_cache() to util/build-id.c (Jiri Olsa) [1209607]
-- [perf] record: Add new -I option to sample interrupted machine state (Jiri Olsa) [1209607]
-- [perf] tests: Add interrupted state sample parsing test (Jiri Olsa) [1209607]
-- [perf] tools: Add core support for sampling intr machine state regs (Jiri Olsa) [1209607]
-- [perf] evsel: Do not call pevent_free_format when deleting tracepoint (Jiri Olsa) [1209607]
-- [perf] script python: Removing event cache as it's no longer needed (Jiri Olsa) [1209607]
-- [perf] script perl: Removing event cache as it's no longer needed (Jiri Olsa) [1209607]
-- [perf] tools: Add test_and_set_bit function (Jiri Olsa) [1209607]
-- [perf] tools: Make vmlinux short name more like kallsyms short name (Jiri Olsa) [1209607]
-- [perf] tools: Fix build-id matching on vmlinux (Jiri Olsa) [1209607]
-- [perf] record: Do not save pathname in ./debug/.build-id directory for vmlinux (Jiri Olsa) [1209607]
-- [perf] build-id: Move build-id related functions to util/build-id.c (Jiri Olsa) [1209607]
-- [perf] build-id: Rename dsos__write_buildid_table() (Jiri Olsa) [1209607]
-- [perf] tools: Add gzip decompression support for kernel module (Jiri Olsa) [1209607]
-- [perf] symbols: Preparation for compressed kernel module support (Jiri Olsa) [1209607]
-- [perf] tools: Defer export of comms that were not 'set' (Jiri Olsa) [1209607]
-- [perf] tools: Add call information to Python export (Jiri Olsa) [1209607]
-- [perf] tools: Add call information to the database export API (Jiri Olsa) [1209607]
-- [perf] tools: Add branch_type and in_tx to Python export (Jiri Olsa) [1209607]
-- [perf] tools: Add branch type to db export (Jiri Olsa) [1209607]
-- [perf] tools: Enhance the thread stack to output call/return data (Jiri Olsa) [1209607]
-- [perf] tools: Add a thread stack for synthesizing call chains (Jiri Olsa) [1209607]
-- [perf] session: Add perf_session__deliver_synth_event() (Jiri Olsa) [1209607]
-- [perf] tools: Use evlist__for_each in a few remaining places (Jiri Olsa) [1209607]
-- [perf] tools: Add id index (Jiri Olsa) [1209607]
-- [perf] probe: Add --quiet option to suppress output result message (Jiri Olsa) [1209607]
-- [perf] script: Add Python script to export to postgresql (Jiri Olsa) [1209607]
-- [perf] scripting python: Extend interface to export data in a database-friendly way (Jiri Olsa) [1209607]
-- [perf] tools: Add facility to export data in database-friendly way (Jiri Olsa) [1209607]
-- [perf] pmu: Add proper error handling to print_pmu_events() (Jiri Olsa) [1209607]
-- [perf] tools: Do not attempt to run perf-read-vdso32 if it wasn't built (Jiri Olsa) [1209607]
-- [perf] tools: Add support for 32-bit compatibility VDSOs (Jiri Olsa) [1209607]
-- [perf] tools: Build programs to copy 32-bit compatibility (Jiri Olsa) [1209607]
-- [perf] pmu: Let pmu's with no events show up on perf list (Jiri Olsa) [1209607]
-- [perf] tools: Ensure return negative value when write header error (Jiri Olsa) [1209607]
-- [perf] probe: Use PARSE_OPT_EXCLUSIVE flag (Jiri Olsa) [1209607]
-- [perf] tools: Add support for exclusive option (Jiri Olsa) [1209607]
-- [perf] kvm: Print kvm specific --help output (Jiri Olsa) [1209607]
-- [perf] tools: Export usage string and option table of perf record (Jiri Olsa) [1209607]
-- [perf] tools: Add PARSE_OPT_DISABLED flag (Jiri Olsa) [1209607]
-- [perf] tests: Use thread->mg->machine (Jiri Olsa) [1209607]
-- [perf] tests: Remove misplaced __maybe_unused (Jiri Olsa) [1209607]
-- [perf] callchains: Use thread->mg->machine (Jiri Olsa) [1209607]
-- [perf] thread: Adopt resolve_callchain method from machine (Jiri Olsa) [1209607]
-- [perf] tools: A thread's machine can be found via thread->mg->machine (Jiri Olsa) [1209607]
-- [perf] tools: Set thread->mg.machine in all places (Jiri Olsa) [1209607]
-- [perf] x86: Fix Haswell CYCLE_ACTIVITY.* counter constraints (Jiri Olsa) [1209607]
-- [perf] x86: Filter branches for PEBS event (Jiri Olsa) [1209607]
-- [perf] Fix irq_work 'tail' recursion (Jiri Olsa) [1209607]
-- [perf] add PMU_EVENT_ATTR_STRING() helper (Jiri Olsa) [1209607]
-- [perf] provide sysfs_show for struct perf_pmu_events_attr (Jiri Olsa) [1209607]
-- [perf] Decouple unthrottling and rotating (Jiri Olsa) [1209607]
-- [perf] Drop module reference on event init failure (Jiri Olsa) [1209607]
-- [perf] Use POLLIN instead of POLL_IN for perf poll data in flag (Jiri Olsa) [1209607]
-- [perf] Fix put_event() ctx lock (Jiri Olsa) [1209607]
-- [perf] Fix move_group() order (Jiri Olsa) [1209607]
-- [perf] Fix event->ctx locking (Jiri Olsa) [1209607]
-- [perf] Add a bit of paranoia (Jiri Olsa) [1209607]
-- [perf] Tighten (and fix) the grouping condition (Jiri Olsa) [1209607]
-- [perf] x86: Add model number for Airmont (Jiri Olsa) [1209607]
-- [perf] x86: Fix bug for "cycles:p" and "cycles:pp" on SLM (Jiri Olsa) [1209607]
-- [perf] rapl: Fix sysfs_show() initialization for RAPL PMU (Jiri Olsa) [1209607]
-- [perf] Avoid horrible stack usage (Jiri Olsa) [1209607]
-- [perf] Move task_pt_regs sampling into arch code (Jiri Olsa) [1209607]
-- [perf] Improve the perf_sample_data struct layout (Jiri Olsa) [1209607]
-- [perf] x86: Disallow flags for most Core2/Atom/Nehalem/Westmere events (Jiri Olsa) [1209607]
-- [perf] x86: Use INTEL_FLAGS_UEVENT_CONSTRAINT for PRECDIST (Jiri Olsa) [1209607]
-- [perf] x86: Add INTEL_FLAGS_UEVENT_CONSTRAINT (Jiri Olsa) [1209607]
-- [perf] x86: Add support for sampling PEBS machine state registers (Jiri Olsa) [1209607]
-- [perf] Add ability to sample machine state on interrupt (Jiri Olsa) [1209607]
-- [perf] list: introduce list_last_entry(), use list_{first, last}_entry() (Jiri Olsa) [1209607]
-
-* Fri May 08 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-250.el7]
-- [powercap] rapl: add ID for Broadwell server (Steve Best) [1169551]
-- [powerpc] powernv: Restore LPCR with LPCR_PECE1 cleared (Gustavo Duarte) [1193516]
-- [kernel] clockevents: Fix cpu_down() race for hrtimer based broadcasting (Gustavo Duarte) [1193516]
-- [tty] vt: don't set font mappings on vc not supporting this (Jarod Wilson) [1192395 1213538]
-- [x86] kernel: Remove a bogus 'ret_from_fork' optimization (Mateusz Guzik) [1209235] {CVE-2015-2830}
-- [x86] mm: Linux stack ASLR implementation (Jacob Tanenbaum) [1195685] {CVE-2015-1593}
-- [char] redhat/configs: Kconfig settings for new TPM drivers/support (Jarod Wilson) [1182709]
-- [char] tpm: fix call order in tpm-chip.c (Jarod Wilson) [1182709]
-- [char] tpm: Additional LE support for tpm_ibmvtpm_send (Jarod Wilson) [1182709]
-- [char] tpm, tpm_tis: fix TPM 2.0 probing (Jarod Wilson) [1182709]
-- [char] tpm: fix suspend/resume paths for TPM 2.0 (Jarod Wilson) [1182709]
-- [char] tpm/tpm_tis: Add missing ifdef CONFIG_ACPI for pnp_acpi_device (Jarod Wilson) [1182709]
-- [char] tpm: fix format string error in tpm-chip.c (Jarod Wilson) [1182709]
-- [char] char/tpm/tpm_crb: fix build error (Jarod Wilson) [1182709]
-- [char] tpm: fixed white spaces coding style issues (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Change tpm_i2c_stm_st33.h to tpm_stm_st33.h (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Replace remaining r by ret (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Sanity cleanup (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Remove sparse spaces (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Add status check when reading data on the FIFO (Jarod Wilson) [1182709]
-- [char] tpm: TPM 2.0 FIFO Interface (Jarod Wilson) [1182709]
-- [char] tpm: TPM 2.0 CRB Interface (Jarod Wilson) [1182709]
-- [char] tpm: TPM 2.0 baseline support (Jarod Wilson) [1182709]
-- [char] tpm: device class for tpm (Jarod Wilson) [1182709]
-- [char] tpm: rename chip->dev to chip->pdev (Jarod Wilson) [1182709]
-- [char] tpm: fix raciness of PPI interface lookup (Jarod Wilson) [1182709]
-- [char] tpm: two-phase chip management functions (Jarod Wilson) [1182709]
-- [char] tpm: merge duplicate transmit_cmd() functions (Jarod Wilson) [1182709]
-- [char] tpm: Update email address in maintainers list and ibmvtpm driver (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Fix coccinelle warnings. Possible NULL pointer dereference (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Increment driver version to 1.2.1 (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Remove useless i2c read on interrupt registers (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Interrupt management improvement (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Few code cleanup (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Add devicetree structure (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Replace tpm_st33_* function with tpm_stm_* (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Replace err/rc/ret by ret for a function return code (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Remove reference to io_serirq (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Add new tpm_stm_dev structure and remove tpm_i2c_buffer[0], [1] buffer (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Move tpm registers to tpm_i2c_stm_st33.c (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Fix few coding style error reported by scripts/checkpatch.pl (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Change License header to have up to date address information (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Update Kconfig in order to be inline to other similar product (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Fix potential bug in tpm_stm_i2c_send (Jarod Wilson) [1182709]
-- [char] tpm: Deletion of unnecessary checks before the function call "tpm_dev_vendor_release" (Jarod Wilson) [1182709]
-- [char] tpm: remove unnecessary sizeof(u8) (Jarod Wilson) [1182709]
-- [char] tpm_tis: verify interrupt during init (Jarod Wilson) [1182709]
-- [char] tpm: Add missing error check for devm_kzalloc (Jarod Wilson) [1182709]
-- [char] tpm: Add new TPMs to the tail of the list to prevent inadvertent change of dev (Jarod Wilson) [1182709]
-- [char] tpm: drop owner assignment from platform_drivers (Jarod Wilson) [1182709]
-- [char] tpm: simplify code by using *phN specifier (Jarod Wilson) [1182709]
-- [char] tpm: Provide a generic means to override the chip returned timeouts (Jarod Wilson) [1182709]
-- [char] tpm: missing tpm_chip_put in tpm_get_random() (Jarod Wilson) [1182709]
-- [char] tpm: Properly clean sysfs entries in error path (Jarod Wilson) [1182709]
-- [char] tpm: Add missing tpm_do_selftest to ST33 I2C driver (Jarod Wilson) [1182709]
-- [char] tpm: Fix resume regression on Chromebooks (Jarod Wilson) [1182709]
-- [char] drivers/char: delete non-required instances of include <linux/init.h> (Jarod Wilson) [1182709]
-- [char] tpm/tpm-sysfs: active_show() can be static (Jarod Wilson) [1182709]
-- [char] tpm: tpm_tis: Fix compile problems with CONFIG_PM_SLEEP/CONFIG_PNP (Jarod Wilson) [1182709]
-- [char] tpm: Make tpm-dev allocate a per-file structure (Jarod Wilson) [1182709]
-- [char] tpm: Use the ops structure instead of a copy in tpm_vendor_specific (Jarod Wilson) [1182709]
-- [char] tpm: Create a tpm_class_ops structure and use it in the drivers (Jarod Wilson) [1182709]
-- [char] tpm: Pull all driver sysfs code into tpm-sysfs.c (Jarod Wilson) [1182709]
-- [char] tpm: Move sysfs functions from tpm-interface to tpm-sysfs (Jarod Wilson) [1182709]
-- [char] tpm: Pull everything related to /dev/tpmX into tpm-dev.c (Jarod Wilson) [1182709]
-- [char] tpm: nuvoton: remove unused variable (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_atmel: fix coccinelle warnings (Jarod Wilson) [1182709]
-- [char] tpm: fix unreachable code warning (smatch warning) (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_stm_st33: Check return code of get_burstcount (Jarod Wilson) [1182709]
-- [char] tpm: detect PPI features by checking availability of _DSM functions (Jarod Wilson) [1182709]
-- [char] tpm: replace open-coded _DSM code with helper functions (Jarod Wilson) [1182709]
-- [char] acpi: introduce helper interfaces for _DSM method (Jarod Wilson) [1182709]
-- [char] tpm: match node name instead of full path when searching for TPM device (Jarod Wilson) [1182709]
-- [char] tpm: fix memory leak when walking ACPI namespace (Jarod Wilson) [1182709]
-- [char] xen/pvhvm: If xen_platform_pci=0 is set don't blow up (v4) (Jarod Wilson) [1182709]
-- [char] acpi: Clean up inclusions of ACPI header files (Jarod Wilson) [1182709]
-- [char] tpm: use tabs instead of whitespaces in Kconfig (Jarod Wilson) [1182709]
-- [char] tpm: Fix module name description in Kconfig for tpm_i2c_infineon (Jarod Wilson) [1182709]
-- [char] tpm: Add support for Atmel I2C TPMs (Jarod Wilson) [1182709]
-- [char] tpm: Add support for the Nuvoton NPCT501 I2C TPM (Jarod Wilson) [1182709]
-- [char] tpm: Merge the tpm-bios module with tpm.o (Jarod Wilson) [1182709]
-- [char] tpm: Rename tpm.c to tpm-interface.c (Jarod Wilson) [1182709]
-- [char] tpm: cleanup checkpatch warnings (Jarod Wilson) [1182709]
-- [char] tpm: Remove tpm_show_caps_1_2 (Jarod Wilson) [1182709]
-- [char] tpm: st33: Remove chip->data_buffer access from this driver (Jarod Wilson) [1182709]
-- [char] tpm: Remove redundant dev_set_drvdata (Jarod Wilson) [1182709]
-- [char] tpm: Use container_of to locate the tpm_chip in tpm_open (Jarod Wilson) [1182709]
-- [char] tpm: Store devname in the tpm_chip (Jarod Wilson) [1182709]
-- [char] tpm: atmel: Call request_region with the correct base (Jarod Wilson) [1182709]
-- [char] tpm: Use zd formatting for size_t format arguments (Jarod Wilson) [1182709]
-- [char] tpm: xen-tpmfront: fix missing declaration of xen_domain (Jarod Wilson) [1182709]
-- [char] tpm: xen-tpmfront: Remove the locality sysfs attribute (Jarod Wilson) [1182709]
-- [char] tpm: xen-tpmfront: Fix default durations (Jarod Wilson) [1182709]
-- [char] tpm: convert tpm_tis driver to use dev_pm_ops from legacy pm_ops (Jarod Wilson) [1182709]
-- [char] drivers/xen-tpmfront: Fix compile issue with missing option (Jarod Wilson) [1182709]
-- [char] tpm: add xen tpmfront interface (Jarod Wilson) [1182709]
-- [char] tpm/tpm_i2c_infineon: Remove unused header file (Jarod Wilson) [1182709]
-- [char] tpm: tpm_i2c_infinion: Don't modify i2c_client->driver (Jarod Wilson) [1182709]
-- [char] tpm: fix regression caused by section type conflict of tpm_dev_release() in ppc builds (Jarod Wilson) [1182709]
-- [char] tpm: move TPM_DIGEST_SIZE defintion (Jarod Wilson) [1182709]
-- [char] tpm_tis: missing platform_driver_unregister() on error in init_tis() (Jarod Wilson) [1182709]
-- [enclosure] fix WARN_ON removing an adapter in multi-path devices (Maurizio Lombardi) [1204955]
-- [scsi] scsi_sysfs: make unpriv_sgio queue attribute accessible for non-block devices (Ewan Milne) [1072734]
-- [scsi] increase max_scsi_report_luns from 511 to 16k-1 (Rob Evers) [874231]
-- [scsi] trim initial allocation in report_luns if limited by max_report_luns (Rob Evers) [874231]
-- [scsi] re-implement 'max_report_luns' merged with latest report_luns code (Rob Evers) [874231]
-- [scsi] re-introduce 'max_report_luns' parameter (Rob Evers) [874231]
-- [scsi] retry report-luns when reported LU count requires more memory (Rob Evers) [874231]
-- [scsi] use set/get_unaligned_be32 in report_luns (Rob Evers) [874231]
-- [scsi] avoid unnecessary GFP_ATOMIC allocation in scsi_report_lun_scan (Rob Evers) [874231]
-- [scsi] be2iscsi: Bump the driver version (Rob Evers) [1183800]
-- [scsi] be2iscsi: Logout of FW Boot Session (Rob Evers) [1183800]
-- [scsi] be2iscsi: Update the copyright year (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix memory check before unmapping (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix memory leak in the unload path (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix the PCI request region reserving (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix the retry count for boot targets (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix kernel panic when device initialization fails (Rob Evers) [1183800]
-- [scsi] be2iscsi: treewide: Fix typo in printk messages (Rob Evers) [1183800]
-- [scsi] be2iscsi: fixed invalid assignment of 64bit mask to host dma_boundary for scatter gather segment boundary limit (Rob Evers) [1183800]
-- [scsi] be2iscsi: check ip buffer before copying (Rob Evers) [1183800]
-- [scsi] be2iscsi: Fix kernel panic during reboot/shutdown (Rob Evers) [1183800]
-- [scsi] fix regression in scsi_send_eh_cmnd() (Ewan Milne) [1167454]
-- [scsi] fnic: IOMMU Fault occurs when IO and abort IO is out of order (Maurizio Lombardi) [1159398]
-- [scsi] fnic: Fnic Driver crashed with NULL pointer reference (Maurizio Lombardi) [1159398]
-- [scsi] fnic: For Standalone C series, "sending VLAN request" message seen even if the link is down (Maurizio Lombardi) [1159398]
-- [scsi] fnic: Improper resue of exchange Ids (Maurizio Lombardi) [1159398]
-- [scsi] fnic: Memcopy only mimumum of data or trace buffer (Maurizio Lombardi) [1159398]
-- [scsi] fnic: Not probing all the vNICS via fnic_probe on boot (Maurizio Lombardi) [1159398]
-- [scsi] fnic: assign FIP_ALL_FCF_MACS to fcoe_all_fcfs (Maurizio Lombardi) [1159398]
-- [scsi] fnic: fnic Control Path Trace Utility (Maurizio Lombardi) [1159398]
-- [scsi] bnx2fc: do not add shared skbs to the fcoe_rx_list (Maurizio Lombardi) [1087796]
-- [scsi] do not display kernel pointer in message logs (Ewan Milne) [1124082]
-- [scsi] Do not display buffer pointers in scsi_log_send() (Ewan Milne) [1124082]
-- [scsi] Conditionally compile in constants.c (Ewan Milne) [1124082]
-- [scsi] use per-cpu buffer for formatting scsi_print_result() (Ewan Milne) [1124082]
-- [scsi] use per-cpu buffer for formatting sense (Ewan Milne) [1124082]
-- [ata] libata: use __scsi_format_command() (Ewan Milne) [1124082]
-- [scsi] use external buffer for command logging (Ewan Milne) [1124082]
-- [scsi] log request tag for scmd_printk() (Ewan Milne) [1124082]
-- [scsi] Implement per-cpu logging buffer (Ewan Milne) [1124082]
-- [scsi] set fmt to NULL scsi_extd_sense_format() by default (Ewan Milne) [1124082]
-- [scsi] ratelimit I/O error messages (Ewan Milne) [1124082]
-- [scsi] correct return values for .eh_abort_handler implementations (Ewan Milne) [1124082]
-- [scsi] document scsi_try_to_abort_cmd (Ewan Milne) [1124082]
-- [scsi] use shost argument in scsi_eh_prt_fail_stats (Ewan Milne) [1124082]
-- [scsi] fixup logging messages in scsi_error.c (Ewan Milne) [1124082]
-- [scsi] simplify scsi_log_(send|completion) (Ewan Milne) [1124082]
-- [scsi] scsi_lib: Revert "rate-limit the error message from failing commands" (Ewan Milne) [1124082]
-- [scsi] remove scsi_show_result() (Ewan Milne) [1124082]
-- [scsi] separate out scsi_(host|driver)byte_string() (Ewan Milne) [1124082]
-- [scsi] Remove scsi_print_command when calling abort (Ewan Milne) [1124082]
-- [scsi] repurpose the last argument from print_opcode_name() (Ewan Milne) [1124082]
-- [scsi] consolidate opcode lookup in scsi_opcode_sa_name() (Ewan Milne) [1124082]
-- [scsi] merge print_opcode_name() (Ewan Milne) [1124082]
-- [scsi] implement scsi_opcode_sa_name (Ewan Milne) [1124082]
-- [scsi] remove scsi_print_status() (Ewan Milne) [1124082]
-- [scsi] use 'bool' as return value for scsi_normalize_sense() (Ewan Milne) [1124082]
-- [scsi] do not decode sense extras (Ewan Milne) [1124082]
-- [scsi] stop decoding if scsi_normalize_sense() fails (Ewan Milne) [1124082]
-- [scsi] 53c700: remove scsi_print_sense() usage (Ewan Milne) [1124082]
-- [scsi] fas216: update logging messages (Ewan Milne) [1124082]
-- [scsi] fas216: return DID_ERROR for incomplete data transfer (Ewan Milne) [1124082]
-- [scsi] acornscsi: use scsi_print_command() (Ewan Milne) [1124082]
-- [scsi] use sdev as argument for sense code printing (Ewan Milne) [1124082]
-- [scsi] introduce sdev_prefix_printk() (Ewan Milne) [1124082]
-- [scsi] aha152x: debug output update and whitespace cleanup (Ewan Milne) [1124082]
-- [scsi] sd: remove scsi_print_sense() in sd_done() (Ewan Milne) [1124082]
-- [scsi] remove scsi_cmd_print_sense_hdr() (Ewan Milne) [1124082]
-- [scsi] st: add a debug_flag module parameter request (Maurizio Lombardi) [1156041]
-
-* Thu May 07 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-249.el7]
-- [cpuidle] powernv: Read target_residency value of idle states from DT if available (Gustavo Duarte) [1199939]
-- [cpuidle] powernv: Populate cpuidle state details by querying the device-tree (Gustavo Duarte) [1199939]
-- [kernel] timers/tick/broadcast-hrtimer: Fix suspicious RCU usage in idle loop (Gustavo Duarte) [1199939]
-- [scsi] ipr: Driver version 2.6.1 (Gustavo Duarte) [1182037]
-- [scsi] ipr: AF DASD raw mode implementation in ipr driver (Gustavo Duarte) [1182037]
-- [scsi] ipr: Fix possible error path oops during initialization (Gustavo Duarte) [1182037]
-- [scsi] ipr: Reset in task context (Gustavo Duarte) [1182037]
-- [scsi] ipr: Reboot speed improvements (Gustavo Duarte) [1182037]
-- [scsi] ipr: set scsi_level correctly for disk arrays (Gustavo Duarte) [1182037]
-- [scsi] ipr: add support for async scanning to speed up boot (Gustavo Duarte) [1182037]
-- [ata] libata: Blacklist queued TRIM on Samsung SSD 850 Pro (David Milburn) [1217179]
-- [ata] libata: Update Crucial/Micron blacklist (David Milburn) [1217179]
-- [ata] libata: prevent HSM state change race between ISR and PIO (David Milburn) [1217179]
-- [ata] libata: allow sata_sil24 to opt-out of tag ordered submission (David Milburn) [1217179]
-- [ata] ata: libata-core: Remove unused function (David Milburn) [1217179]
-- [ata] ahci: Use dev_info() to inform about the lack of Device Sleep support (David Milburn) [1217179]
-- [ata] libata: Whitelist SSDs that are known to properly return zeroes after TRIM (David Milburn) [1217179]
-- [ata] libata: Remove FIXME comment in atapi_eh_request_sense (David Milburn) [1217179]
-- [ata] libata: s/ata_id_removeable()/ata_id_removable()/ (David Milburn) [1217179]
-- [ata] libata: Remove FIXME comment in atapi_request_sense() (David Milburn) [1217179]
-- [ata] ahci: disable MSI instead of NCQ on Samsung pci-e SSDs on macbooks (David Milburn) [1217179]
-- [ata] revert "ahci: Optimize single IRQ interrupt processing" (David Milburn) [1217179]
-- [ata] revert "ahci: Do not acquire ata_host::lock from single IRQ handler" (David Milburn) [1217179]
-- [ata] ahci: Do not acquire ata_host::lock from single IRQ handler (David Milburn) [1217179]
-- [ata] ahci: Optimize single IRQ interrupt processing (David Milburn) [1217179]
-- [ata] ahci: Do not read HOST_IRQ_STAT reg in multi-MSI mode (David Milburn) [1217179]
-- [ata] ahci: Make few function names more descriptive (David Milburn) [1217179]
-- [ata] ahci: Move host activation code into ahci_host_activate() (David Milburn) [1217179]
-- [ata] ahci: Move ahci_host_activate() function to libahci.c (David Milburn) [1217179]
-- [ata] ahci: Pass SCSI host template as arg to ahci_host_activate() (David Milburn) [1217179]
-- [ata] ahci: Cleanup checking of multiple MSIs/SLM modes (David Milburn) [1217179]
-- [ata] libata-sff: Fix controllers with no ctl port (David Milburn) [1217179]
-- [ata] libata: change ata_<foo>_printk routines to return void (David Milburn) [1217179]
-- [ata] ahci: add pcid for Marvel 0x9182 controller (David Milburn) [1217179]
-- [ata] ata: Disabling the async PM for JMicron chip 363/361 (David Milburn) [1217179]
-- [ata] libata: Use dev_name() for request_irq() to distinguish devices (David Milburn) [1217179]
-- [ata] libata: widen Crucial M550 blacklist matching (David Milburn) [1217179]
-- [ata] sata_sil24: Identify which card suffered IRQ status error (David Milburn) [1217179]
-- [ata] libata: introduce ata_host->n_tags to avoid oops on SAS controllers (David Milburn) [1217179]
-- [ata] libata: EH should handle AMNF error condition as a media error (David Milburn) [1217179]
-- [ata] libata: support the ata host which implements a queue depth less than 32 (David Milburn) [1217179]
-- [ata] libahci: export ahci_qc_issue() and ahci_start_fix_rx() (David Milburn) [1217179]
-- [ata] libata: Blacklist queued trim for Crucial M500 (David Milburn) [1217179]
-- [ata] ahci: add PCI ID for Marvell 88SE91A0 SATA Controller (David Milburn) [1217179]
-- [ata] ata: ahci: append new hflag AHCI_HFLAG_NO_FBS (David Milburn) [1217179]
-- [ata] ata: SATL compliance for Inquiry Product Revision (David Milburn) [1217179]
-- [ata] ahci: Use pci_enable_msi_exact() instead of pci_enable_msi_range() (David Milburn) [1217179]
-- [ata] ahci: Ensure "MSI Revert to Single Message" mode is not enforced (David Milburn) [1217179]
-- [ata] libata: Update queued trim blacklist for M5x0 drives (David Milburn) [1217179]
-- [ata] libata: use wider match for blacklisting Crucial M500 (David Milburn) [1217179]
-- [ata] libata: async resume (David Milburn) [1217179]
-- [ata] libata, libsas: kill pm_result and related cleanup (David Milburn) [1217179]
-- [ata] libata: end the r-word (David Milburn) [1217179]
-- [ata] libata: add ATA_HORKAGE_BROKEN_FPDMA_AA quirk for Seagate Momentus SpinPoint M8 (2BA30001) (David Milburn) [1217179]
-- [ata] libata: disable queued TRIM for Crucial M500 mSATA SSDs (David Milburn) [1217179]
-- [ata] ata: libahci: replace obsolete simple_strtoul() with kstrtouint() (David Milburn) [1217179]
-- [ata] ata: libahci: make ahci_pmp_retry_softreset() as static (David Milburn) [1217179]
-- [ata] ata: CONFIG_ATA is libata (David Milburn) [1217179]
-- [ata] ahci: disable NCQ on Samsung pci-e SSDs on macbooks (David Milburn) [1217179]
-- [ata] ata: delete non-required instances of include <linux/init.h> (David Milburn) [1217179]
-- [ata] sata_sil: apply MOD15WRITE quirk to TOSHIBA MK2561GSYN (David Milburn) [1217179]
-- [ata] ata: enable quirk from jmicron JMB350 for JMB394 (David Milburn) [1217179]
-- [ata] libata: disable LPM for some WD SATA-I devices (David Milburn) [1217179]
-- [ata] ahci: add PCI ID for Marvell 88SE9170 SATA controller (David Milburn) [1217179]
-- [ata] libata: implement ATA_HORKAGE_NO_NCQ_TRIM and apply it to Micro M500 SSDs (David Milburn) [1217179]
-- [ata] libata: disable a disk via libata.force params (David Milburn) [1217179]
-- [ata] ahci: bail out on ICH6 before using AHCI BAR (David Milburn) [1217179]
-- [ata] drivers: ata: Mark the function as static in libahci.c (David Milburn) [1217179]
-- [ata] libata: add ATA_HORKAGE_BROKEN_FPDMA_AA quirk for Seagate Momentus SpinPoint M8 (David Milburn) [1217179]
-- [ata] ata: libata-eh: Remove unnecessary snprintf arithmetic (David Milburn) [1217179]
-- [ata] libata: Add some missing command descriptions (David Milburn) [1217179]
-- [ata] ahci_platform: use dev_info() instead of printk() (David Milburn) [1217179]
-- [ata] ahci: use dev_info() instead of printk() (David Milburn) [1217179]
-- [ata] ahci: Changing two module params with static and __read_mostly (David Milburn) [1217179]
-- [ata] libata: bugfix: Remove __le32 in ata_tf_to_fis() (David Milburn) [1217179]
-- [ata] libata: Add support for queued DSM TRIM (David Milburn) [1217179]
-- [ata] libata: Add support for SEND/RECEIVE FPDMA QUEUED (David Milburn) [1217179]
-- [ata] libata: Add H2D FIS "auxiliary" port flag (David Milburn) [1217179]
-- [ata] libata: Populate host-to-device FIS "auxiliary" field (David Milburn) [1217179]
-- [ata] ata: pata_arasan: Staticize local symbols (David Milburn) [1217179]
-- [ata] sata_mv: Remove unneeded CONFIG_HAVE_CLK ifdefs (David Milburn) [1217179]
-- [ata] sata_mv: Remove unneeded forward declaration (David Milburn) [1217179]
-- [ata] ata: use dev_get_platdata() (David Milburn) [1217179]
-- [ata] ahci: use ATA_BUSY (David Milburn) [1217179]
-- [ata] libata: move 'struct ata_taskfile' and friends from ata.h to libata.h (David Milburn) [1217179]
-- [ata] libata: cleanup SAT error translation (David Milburn) [1217179]
-- [ata] ahci: make ahci_transmit_led_message into a function pointer (David Milburn) [1217179]
-- [ata] libata: Add atapi_dmadir force flag (David Milburn) [1217179]
-- [virtio] defer config changed notifications (David Gibson) [1196009]
-- [virtio] unify config_changed handling (David Gibson) [1196009]
-- [netdrv] ibmveth: Fix off-by-one error in ibmveth_change_mtu() (David Gibson) [1209310]
-- [scripts] checkpatch: fix code broken by backport (Jerry Snitselaar) [1218494]
-- [powerpc] powernv: Check image loaded or not before calling flash (Steve Best) [1182056]
-- [security] keys: memory corruption or panic during key garbage collection (Jacob Tanenbaum) [1179852] {CVE-2014-9529}
-
-* Wed May 06 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-248.el7]
-- [cpufreq] intel_pstate: remove MSR test (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: provide option to only use intel_pstate with HWP (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Add num_pstates to sysfs (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: honor user space min_perf_pct override on resume (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: respect cpufreq policy request (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: expose turbo range to sysfs (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Add a few comments (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: add kernel parameter to force loading (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: skip this driver if Sun server has _PPC method (Prarit Bhargava) [1214335]
-- [x86] intel_pstate: Add support for HWP (Prarit Bhargava) [1214335]
-- [x86] Add support for Intel HWP feature detection (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Correct BYT VID values (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Don't lose sysfs settings during cpu offline (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Fix BYT frequency reporting (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Reflect current no_turbo state correctly (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Fix setting max_perf_pct in performance policy (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Remove unneeded variable (Prarit Bhargava) [1214335]
-- [cpufreq] intel_pstate: Turn per cpu printk into pr_debug (Prarit Bhargava) [1214335]
-- [cpufreq] Documentation, add cpu-freq/intel-pstate.txt (Prarit Bhargava) [1214335]
-- [pci] Support BAR sizes up to 128GB (Myron Stowe) [1211947]
-- [x86] mce: Fix warning about indented braces (Prarit Bhargava) [1217770]
-- [x86] mce: Define mce_severity function pointer (Prarit Bhargava) [1217770]
-- [x86] mce: Add an AMD severities-grading function (Prarit Bhargava) [1217770]
-- [x86] mce: Reindent __mcheck_cpu_apply_quirks() properly (Prarit Bhargava) [1217770]
-- [x86] mce: Use safe MSR accesses for AMD quirk (Prarit Bhargava) [1217770]
-- [x86] Add another set of MSR accessor functions (Prarit Bhargava) [1217770]
-- [x86] mce: Enable thresholding interrupts by default if supported (Prarit Bhargava) [1217770]
-- [x86] mce: Make mce_panic() fatal machine check msg in the same pattern (Prarit Bhargava) [1217770]
-- [x86] mce: Cleanup CMCI storm logic (Prarit Bhargava) [1217770]
-- [x86] mce: Drop bogus const modifier from AMD's bank4_names() (Prarit Bhargava) [1217770]
-- [x86] mce: Get rid of TIF_MCE_NOTIFY and associated mce tricks (Prarit Bhargava) [1217770]
-- [x86] mce: Fix sparse errors (Prarit Bhargava) [1217770]
-- [x86] mce: Improve timeout error messages (Prarit Bhargava) [1217770]
-- [x86] mce: Extend the the mce_severity mechanism to handle UCNA/DEFERRED error (Prarit Bhargava) [1217770]
-- [x86] mce: Assign interrupt handler only when bank supports it (Prarit Bhargava) [1217770]
-- [x86] mce: Drop software-defined bank in error thresholding (Prarit Bhargava) [1217770]
-- [x86] mce: Move invariant code out from loop body (Prarit Bhargava) [1217770]
-- [x86] mce: Correct thresholding error logging (Prarit Bhargava) [1217770]
-- [x86] mce: Use macros to compute bank MSRs (Prarit Bhargava) [1217770]
-- [x86] mce: Avoid showing repetitive message from intel_init_thermal() (Prarit Bhargava) [1217770]
-- [x86] replace strict_strto calls (Prarit Bhargava) [1217770]
-- [x86] mce: Robustify mcheck_init_device (Prarit Bhargava) [1217770]
-- [x86] msr-index: define MSR_TURBO_RATIO_LIMIT, 1, 2 (Prarit Bhargava) [1187329]
-- [tools] turbostat: correct dumped pkg-cstate-limit value (Prarit Bhargava) [1187329]
-- [tools] turbostat: calculate TSC frequency from CPUID(0x15) on SKL (Prarit Bhargava) [1187329]
-- [tools] turbostat: correct DRAM RAPL units on recent Xeon processors (Prarit Bhargava) [1187329]
-- [tools] turbostat: Use $(CURDIR) instead of $(PWD) and add support for O= option in Makefile (Prarit Bhargava) [1187329]
-- [tools] turbostat: modprobe msr, if needed (Prarit Bhargava) [1187329]
-- [tools] turbostat: Initial Skylake support (Prarit Bhargava) [1187329]
-- [tools] turbostat: dump MSR_TURBO_RATIO_LIMIT2 (Prarit Bhargava) [1187329]
-- [tools] turbostat: use new MSR_TURBO_RATIO_LIMIT names (Prarit Bhargava) [1187329]
-- [tools] turbostat: update PERF_LIMIT_REASONS decoding (Prarit Bhargava) [1187329]
-- [tools] turbostat: label base frequency (Prarit Bhargava) [1187329]
-- [tools] turbostat: simplify default output (Prarit Bhargava) [1187329]
-- [tools] turbostat: support additional Broadwell model (Prarit Bhargava) [1187329]
-- [tools] turbostat: update parameters, documentation (Prarit Bhargava) [1187329]
-- [tools] turbostat: Skip printing disabled package C-states (Prarit Bhargava) [1187329]
-- [tools] turbostat: relax dependency on APERF_MSR (Prarit Bhargava) [1187329]
-- [tools] turbostat: relax dependency on invariant TSC (Prarit Bhargava) [1187329]
-- [tools] turbostat: decode MSR_*_PERF_LIMIT_REASONS (Prarit Bhargava) [1187329]
-- [tools] turbostat: relax dependency on root permission (Prarit Bhargava) [1187329]
-- [hwmon] k10temp: Convert to devm_hwmon_device_register_with_groups (Jarod Wilson) [1135029]
-- [hwmon] k10temp: Add support for F15h M60h (Jarod Wilson) [1135029]
-- [pci] Add include guard to include/linux/pci_ids.h (Jarod Wilson) [1135029]
-- [hwmon] k10temp: Add support for AMD F16 M30h processor (Jarod Wilson) [1135029]
-- [hwmon] Do not accept invalid name attributes (Jarod Wilson) [1135029]
-- [hwmon] k10temp: Add support for Kaveri CPUs (Jarod Wilson) [1135029]
-- [kernel] pci_ids: Add PCI device IDs for F15h M60h (Jarod Wilson) [1135029]
-- [kernel] pci_ids: add AMD F16h M30h device IDs (Jarod Wilson) [1135029]
-- [hwmon] Provide managed hwmon registration (Jarod Wilson) [1135029]
-- [hwmon] Introduce hwmon_device_register_with_groups (Jarod Wilson) [1135029]
-- [hwmon] k10temp: remove unnecessary pci_set_drvdata() (Jarod Wilson) [1135029]
-- [firmware] dmi_scan: Prevent dmi_num integer overflow (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Fix dmi_len type (Jarod Wilson) [853192]
-- [firmware] dmi_scan: Fix dmi scan to handle "End of Table" structure (Jarod Wilson) [853192]
-- [firmware] dmi: add support for SMBIOS 3.0 64-bit entry point (Jarod Wilson) [853192]
-- [firmware] efi: dmi: add support for SMBIOS 3.0 UEFI configuration table (Jarod Wilson) [853192]
-- [firmware] dmi_scan: generalize for use by other archs (Jarod Wilson) [853192]
-- [firmware] dmi_scan: constify strings (Jarod Wilson) [853192]
-- [firmware] dmi_scan: drop OOM messages (Jarod Wilson) [853192]
-- [firmware] dmi_scan: fix most checkpatch errors and warnings (Jarod Wilson) [853192]
-- [firmware] dmi_scan: drop obsolete comment (Jarod Wilson) [853192]
-- [firmware] dmi_scan: add comments on dmi_present() and the loop in dmi_scan_machine() (Jarod Wilson) [853192]
-
-* Tue May 05 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-247.el7]
-- [powerpc] eeh: Aux PE data for error log (Steve Best) [1211945]
-- [powerpc] eeh: Make diag-data not endian dependent (Steve Best) [1211945]
-- [powerpc] eeh: Replace pr_warning() with pr_warn() (Steve Best) [1211945]
-- [powerpc] eeh: Reduce lines of log dump (Steve Best) [1211945]
-- [powerpc] eeh: Selectively enable IO for error log (Steve Best) [1211945]
-- [powerpc] eeh: Refactor EEH flag accessors (Steve Best) [1211945]
-- [powerpc] eeh: Fetch IOMMU table in reliable way (Steve Best) [1211945]
-- [powerpc] powernv: Fix IOMMU table for VFIO dev (Steve Best) [1211945]
-- [powerpc] eeh: sysfs entries lost (Steve Best) [1211945]
-- [powerpc] eeh: EEH support for VFIO PCI device (Steve Best) [1211945]
-- [powerpc] eeh: Avoid event on passed PE (Steve Best) [1211945]
-- [powerpc] powernv: Switch powernv drivers to use machine_xxx_initcall() (Steve Best) [1211945]
-- [powerpc] Add machine_early_initcall() (Steve Best) [1211945]
-- [powerpc] perf: Cap 64bit userspace backtraces to PERF_MAX_STACK_DEPTH (Steve Best) [1213950]
-- [powerpc] kvm: Implement H_LOGICAL_CI_{LOAD,STORE} in KVM (David Gibson) [1184290]
-- [mm] zbud: avoid accessing last unused freelist (Seth Jennings) [1141434]
-- [mm] zsmalloc: simplify init_zspage free obj linking (Seth Jennings) [1141434]
-- [mm] zsmalloc: correct comment for fullness group computation (Seth Jennings) [1141434]
-- [mm] zsmalloc: move pages_allocated to zs_pool (Seth Jennings) [1141434]
-- [mm] zpool: use prefixed module loading (Seth Jennings) [1141434]
-- [mm] zswap: add __init to zswap_entry_cache_destroy() (Seth Jennings) [1141434]
-- [mm] zpool: update zswap to use zpool (Seth Jennings) [1141434]
-- [mm] zpool: zbud/zsmalloc implement zpool (Seth Jennings) [1141434]
-- [mm] zpool: implement common zpool api to zbud/zsmalloc (Seth Jennings) [1141434]
-- [mm] zbud: change zbud_alloc size type to size_t (Seth Jennings) [1141434]
-- [mm] zswap: NUMA aware allocation for zswap_dstmem (Seth Jennings) [1141434]
-- [mm] zsmalloc: make zsmalloc module-buildable (Seth Jennings) [1141434]
-- [mm] zsmalloc: fixup trivial zs size classes value in comments (Seth Jennings) [1141434]
-- [mm] zbud: make size unsigned like unique callsite (Seth Jennings) [1141434]
-- [Documentation] MAINTAINERS: change zswap/zbud maintainer email address (Seth Jennings) [1141434]
-- [mm] zswap: remove unnecessary parentheses (Seth Jennings) [1141434]
-- [mm] zswap: support multiple swap devices (Seth Jennings) [1141434]
-- [mm] zswap: update zsmalloc in comment to zbud (Seth Jennings) [1141434]
-- [mm] zswap: fix trivial typo and arrange indentation (Seth Jennings) [1141434]
-- [mm] zsmalloc: Fix CPU hotplug callback registration (Seth Jennings) [1141434]
-- [mm] Kconfig: fix URL for zsmalloc benchmark (Seth Jennings) [1141434]
-- [mm] zsmalloc: add maintainers (Seth Jennings) [1141434]
-- [mm] zsmalloc: add copyright (Seth Jennings) [1141434]
-- [mm] zsmalloc: move it under mm (Seth Jennings) [1141434]
-- [mm] zswap: change params from hidden to ro (Seth Jennings) [1141434]
-- [mm] zsmalloc: add more comment (Seth Jennings) [1141434]
-- [mm] zsmalloc: add Kconfig for enabling page table method (Seth Jennings) [1141434]
-- [mm] zswap: refactor the get/put routines (Seth Jennings) [1141434]
-- [mm] zswap: fix memory leak when invalidate and reclaim occur concurrently (Seth Jennings) [1141434]
-- [mm] zswap: avoid unnecessary page scanning (Seth Jennings) [1141434]
-- [Documentation] zswap: fix typos (Seth Jennings) [1141434]
-- [mm] zswap: fix memory leak when re-swapon (Seth Jennings) [1141434]
-- [mm] zsmalloc: Fix map_vm_area undefined reference errors (Seth Jennings) [1141434]
-- [mm] zswap: use postorder iteration when destroying rbtree (Seth Jennings) [1141434]
-- [lib] rbtree: fix rbtree_postorder_for_each_entry_safe() iterator (Seth Jennings) [1141434]
-- [lib] rbtree: add rbtree_postorder_for_each_entry_safe() helper (Seth Jennings) [1141434]
-- [lib] rbtree: add postorder iteration functions (Seth Jennings) [1141434]
-- [mm] zbud: fix some trivial typos in comments (Seth Jennings) [1141434]
-- [mm] zswap: get swapper address_space by using macro (Seth Jennings) [1141434]
-- [mm] zsmalloc: access page->private by using page_private macro (Seth Jennings) [1141434]
-- [mm] zsmalloc: Fixed up incorrect formatted comments (Seth Jennings) [1141434]
-- [mm] zsmalloc: Fixes string split across lines in zsmalloc zsmalloc-main (Seth Jennings) [1141434]
-- [s390] zfcp: auto port scan resiliency (Hendrik Brueckner) [1182316]
-- [s390] zfcp: bring back unit sysfs attributes for automatic LUN scan (Hendrik Brueckner) [1182314]
-- [tools] perf: Fix race in build_id_cache__add_s() (Milos Vyletel) [1204077]
-- [kernel] sched/rt/nohz: Stop scheduler tick if running realtime task (Rik van Riel) [1193629]
-- [kernel] sched: rt: Reduce rq lock contention by eliminating locking of non-feasible target (Larry Woodman) [1195521]
-
-* Fri May 01 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-246.el7]
-- [kernel] audit: convert status version to a feature bitmap (Richard Guy Briggs) [1155589]
-- [kernel] audit: use define's for audit version (Richard Guy Briggs) [1155589]
-- [kernel] audit: clean up AUDIT_GET/SET local variables and future-proof API (Richard Guy Briggs) [1155589]
-- [kernel] audit: use memset instead of trying to initialize field by field (Richard Guy Briggs) [1155589]
-- [net] libceph: tcp_nodelay support (Sage Weil) [1197952]
-- [net] pppoe: Use workqueue to die properly when a PADT is received (Beniamino Galvani) [1025871]
-- [net] tcp: restore 1.5x per RTT limit to CUBIC cwnd growth in congestion avoidance (Florian Westphal) [1191260]
-- [net] tcp: fix tcp_cong_avoid_ai() credit accumulation bug with decreases in w (Florian Westphal) [1191260]
-- [net] tcp: fix timing issue in CUBIC slope calculation (Florian Westphal) [1191260]
-- [net] tcp: fix stretch ACK bugs in CUBIC (Florian Westphal) [1191260]
-- [net] tcp: fix stretch ACK bugs in Reno (Florian Westphal) [1191260]
-- [net] tcp: fix the timid additive increase on stretch ACKs (Florian Westphal) [1191260]
-- [net] tcp: stretch ACK fixes prep (Florian Westphal) [1191260]
-- [net] tcp_cubic: refine Hystart delay threshold (Florian Westphal) [1191260]
-- [net] tcp_cubic: add SNMP counters to track how effective is Hystart (Florian Westphal) [1191260]
-- [net] inet_diag: fix access to tcp cc information (Florian Westphal) [1212624]
-- [net] inet_diag: fix possible overflow in inet_diag_dump_one_icsk() (Florian Westphal) [1212624]
-- [net] inet_diag: zero out uninitialized idiag_{src, dst} fields (Florian Westphal) [1212624]
-- [net] tcp: add per route congestion control (Florian Westphal) [1212624]
-- [net] tcp: add RTAX_CC_ALGO fib handling (Florian Westphal) [1212624]
-- [net] tcp: add key management to congestion control (Florian Westphal) [1212624]
-- [net] tcp: refactor reinitialization of congestion control (Florian Westphal) [1212624]
-- [net] fib6: convert cfg metric to u32 outside of table write lock (Florian Westphal) [1212624]
-- [net] fib6: fib6_commit_metrics: fix potential NULL pointer dereference (Florian Westphal) [1212624]
-- [net] ipv6: do not overwrite inetpeer metrics prematurely (Florian Westphal) [1212624]
-- [net] dctcp: loosen requirement to assert ECT(0) during 3WHS (Florian Westphal) [1212624]
-- [net] tcp: allow setting ecn via routing table (Florian Westphal) [1212624]
-- [net] tcp: move TCP_ECN_create_request out of header (Florian Westphal) [1212624]
-- [net] syncookies: split cookie_check_timestamp() into two functions (Florian Westphal) [1212624]
-- [net] syncookies: avoid magic values and document which-bit-is-what-option (Florian Westphal) [1212624]
-- [net] fib_trie: Fix regression in handling of inflate/halve failure (Alexander Duyck) [1205277]
-- [net] fib_trie: Address possible NULL pointer dereference in resize (Alexander Duyck) [1205277]
-- [net] fib_trie: Correctly handle case of key == 0 in leaf_walk_rcu (Alexander Duyck) [1205277]
-- [net] fib_trie: Add key vector to root, return parent key_vector in resize (Alexander Duyck) [1205277]
-- [net] fib_trie: Move parent from key_vector to tnode (Alexander Duyck) [1205277]
-- [net] fib_trie: Pull empty_children and full_children into tnode (Alexander Duyck) [1205277]
-- [net] fib_trie: Move rcu from key_vector to tnode, add accessors. (Alexander Duyck) [1205277]
-- [net] fib_trie: Add tnode struct as a container for fields not needed in key_vector (Alexander Duyck) [1205277]
-- [net] fib_trie: Rename tnode_child_length to child_length (Alexander Duyck) [1205277]
-- [net] fib_trie: replace tnode_get_child functions with get_child macros (Alexander Duyck) [1205277]
-- [net] fib_trie: Rename tnode to key_vector (Alexander Duyck) [1205277]
-- [net] fib_trie: Make fib_table rcu safe (Alexander Duyck) [1205277]
-- [net] fib_trie: Return pointer to tnode pointer in resize/inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Fix RCU bug and merge similar bits of inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Prevent allocating tnode if bits is too big for size_t (Alexander Duyck) [1205277]
-- [net] fib_trie: Update last spot w/ idx >> n->bits code and explanation (Alexander Duyck) [1205277]
-- [net] fib_trie: move leaf and tnode to occupy the same spot in the key vector (Alexander Duyck) [1205277]
-- [net] fib_trie: Update insert and delete to make use of tp from find_node (Alexander Duyck) [1205277]
-- [net] fib_trie: Fib find node should return parent (Alexander Duyck) [1205277]
-- [net] fib_trie: Fib walk rcu should take a tnode and key instead of a trie and a leaf (Alexander Duyck) [1205277]
-- [net] fib_trie: Only resize tnodes once instead of on each leaf removal in fib_table_flush (Alexander Duyck) [1205277]
-- [net] fib_trie: Remove leaf_info (Alexander Duyck) [1205277]
-- [net] fib_trie: Add slen to fib alias (Alexander Duyck) [1205277]
-- [net] fib_trie: Replace plen with slen in leaf_info (Alexander Duyck) [1205277]
-- [net] fib_trie: Convert fib_alias to hlist from list (Alexander Duyck) [1205277]
-- [net] fib_trie: Various clean-ups for handling slen (Alexander Duyck) [1205277]
-- [net] fib_trie: Move fib_find_alias to file where it is used (Alexander Duyck) [1205277]
-- [net] fib_trie: Use empty_children instead of counting empty nodes in stats collection (Alexander Duyck) [1205277]
-- [net] fib_trie: Add collapse() and should_collapse() to resize (Alexander Duyck) [1205277]
-- [net] fib_trie: Fall back to slen update on inflate/halve failure (Alexander Duyck) [1205277]
-- [net] fib_trie: Use index & (~0ul << n->bits) instead of index >> n->bits (Alexander Duyck) [1205277]
-- [net] fib_trie: Add tracking value for suffix length (Alexander Duyck) [1205277]
-- [net] fib_trie: Remove checks for index >= tnode_child_length from tnode_get_child (Alexander Duyck) [1205277]
-- [net] fib_trie: inflate/halve nodes in a more RCU friendly way (Alexander Duyck) [1205277]
-- [net] fib_trie: Push tnode flushing down to inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Push assignment of child to parent down into inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Add functions should_inflate and should_halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Move resize to after inflate/halve (Alexander Duyck) [1205277]
-- [net] fib_trie: Push rcu_read_lock/unlock to callers (Alexander Duyck) [1205277]
-- [net] fib_trie: Use unsigned long for anything dealing with a shift by bits (Alexander Duyck) [1205277]
-- [net] fib_trie: Update meaning of pos to represent unchecked bits (Alexander Duyck) [1205277]
-- [net] fib_trie: Optimize fib_table_insert (Alexander Duyck) [1205277]
-- [net] fib_trie: Optimize fib_find_node (Alexander Duyck) [1205277]
-- [net] fib_trie: Optimize fib_table_lookup to avoid wasting time on loops/variables (Alexander Duyck) [1205277]
-- [net] fib_trie: Merge leaf into tnode (Alexander Duyck) [1205277]
-- [net] fib_trie: Merge tnode_free and leaf_free into node_free (Alexander Duyck) [1205277]
-- [net] fib_trie: Make leaf and tnode more uniform (Alexander Duyck) [1205277]
-- [net] fib_trie: Update usage stats to be percpu instead of global variables (Alexander Duyck) [1205277]
-- [net] fib_trie: Fix trie balancing issue if new node pushes down existing node (Alexander Duyck) [1205277]
-- [net] fib_trie: only calc for the un-first node (Alexander Duyck) [1205277]
-- [net] fib_trie: avoid a redundant bit judgement in inflate (Alexander Duyck) [1205277]
-- [net] fib_trie: Fix /proc/net/fib_trie when CONFIG_IP_MULTIPLE_TABLES is not defined (Alexander Duyck) [1205277]
-- [net] ipv6: gre: add x-netns support (Hannes Frederic Sowa) [1210346 1210390]
-- [net] gre: add x-netns support (Hannes Frederic Sowa) [1210346 1210390]
-- [net] ip6_gre: fix flowi6_proto value in xmit path (Hannes Frederic Sowa) [1210346 1210390]
-- [net] ipv6: Initialize ip6_tnl.hlen in gre tunnel even if no route is found (Hannes Frederic Sowa) [1210346 1210390]
-- [net] ipv6: protect skb->sk accesses from recursive dereference inside the stack (Hannes Frederic Sowa) [1129707]
-- [net] ip_tunnel: Change __skb_push back to skb_push (Florian Westphal) [1187739]
-- [net] ip_tunnel: fix possible rtable leak (Florian Westphal) [1187739]
-- [net] ip_tunnel: clear IPCB in ip_tunnel_xmit() in case dst_link_failure() is called (Florian Westphal) [1187739]
-- [net] ipv4: be friend with drop monitor (Florian Westphal) [1187739]
-- [net] ip_tunnel: Fix a memory corruption in ip_tunnel_xmit (Florian Westphal) [1187739]
-- [net] ip_tunnel: Do not use stale inner_iph pointer (Florian Westphal) [1187739]
-
-* Thu Apr 30 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-245.el7]
-- [mm] memcg: use proper memcg in limit bypass (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: do not allow task about to OOM kill to bypass the limit (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: do not declare OOM from __GFP_NOFAIL allocations (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [fs] buffer: move allocation failure loop into the allocator (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: handle non-error OOM situations more gracefully (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: do not trap chargers with full callstack on OOM (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: rework and document OOM waiting and wakeup (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [mm] memcg: enable memcg OOM killer only for user faults (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [x86] finish user fault error path with fatal signal (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [arch] mm: pass userspace fault flag to generic fault handler (Johannes Weiner) [1213903] {CVE-2014-8171}
-- [block] cfq-iosched: handle failure of cfq group allocation (Vivek Goyal) [1190716]
-- [crypto] qat - do not duplicate string containing firmware name (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix double release_firmware on error path (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - print ring name in debug output (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch CODE_INDENT issue (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch COMPARISON_TO_NULL issue (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch BIT_MACRO issues (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch CONCATENATED_STRING issues (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - checkpatch PARENTHESIS_ALIGNMENT and LOGICAL_CONTINUATIONS (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix checkpatch CHECK_SPACING issues (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix typo (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - make error and info log messages more descriptive (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix typo in string (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - remove duplicate definition of Intel PCI vendor id (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - remove incorrect __exit markup (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - don't need qat_auth_state struct (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Ensure ipad and opad are zeroed (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - remove unnecessary include of atomic.h header file (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - use pci_wait_for_pending_transaction() (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - adf_ae_stop() is never called (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - correctly type a boolean (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix device reset flow (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Fix incorrect uses of memzero_explicit (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - add support for cbc(aes) ablkcipher (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Fix assumption that sg in and out will have the same nents (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix problem with coalescing enable logic (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Fix 64 bytes requests (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Use memzero_explicit (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Move BAR definitions to device specific module (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - misspelling typo - "reseting" should be "resetting" (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - cleanup unnecessary break checkpatch warning (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - cleanup coccicheck warning - NULL check before freeing functions (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - fix bad unlock balance (Nikolay Aleksandrov) [1173791]
-- [crypto] llvmlinux: Remove VLAIS from crypto/.../qat_algs.c (Nikolay Aleksandrov) [1173791]
-- [crypto] llvmlinux: Add macro to remove use of VLAIS in crypto code (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Removed unneeded partial state (Nikolay Aleksandrov) [1173791]
-- [crypto] qat - Fix typo in name of tasklet_struct (Nikolay Aleksandrov) [1173791]
-- [crypto] treewide: fix errors in printk (Nikolay Aleksandrov) [1173791]
-- [netdrv] netxen: Fix trivial typos in comments (Tony Camuso) [1187294]
-- [netdrv] netxen: Use eth_<foo>_addr instead of memset (Tony Camuso) [1187294]
-- [netdrv] netxen: Fix typo in printk (Tony Camuso) [1187294]
-- [netdrv] netxen: Delete an unnecessary check before the function call "kfree" (Tony Camuso) [1187294]
-- [netdrv] netxen: fix netxen_nic_poll() logic (Tony Camuso) [1187294]
-- [netdrv] netxen: Fix link event handling (Tony Camuso) [1187294]
-- [netdrv] netxen: Fix bug in Tx completion path (Tony Camuso) [1187294]
-- [netdrv] netxen: Fix BUG "sleeping function called from invalid context" (Tony Camuso) [1187294]
-- [netdrv] netxen: Convert remaining uses of pr_warning to pr_warn (Tony Camuso) [1187294]
-- [kernel] time: More core infrastructure for timespec64 (Prarit Bhargava) [1215108]
-- [kernel] time64: Add time64.h header and define struct timespec64 (Prarit Bhargava) [1215108]
-
-* Wed Apr 29 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-244.el7]
-- [kernel] timers: Reduce future __run_timers() latency for first add to empty list (Rik van Riel) [1193625]
-- [kernel] subject timers: Reduce future __run_timers() latency for newly emptied list (Rik van Riel) [1193625]
-- [kernel] timers: Reduce __run_timers() latency for empty list (Rik van Riel) [1193625]
-- [kernel] timers: Track total number of timers in list (Rik van Riel) [1193625]
-- [misc] genwqe: remove unnecessary version.h inclusion (Steve Best) [1182052]
-- [misc] assorted conversions to p[dD] (Steve Best) [1182052]
-- [misc] genwqe: check for error from get_user_pages_fast() (Steve Best) [1182052]
-- [misc] genwqe: Support blocking when DDCB queue is busy (Steve Best) [1182052]
-- [misc] genwqe: Fix checkpatch complaints (Steve Best) [1182052]
-- [misc] genwqe: Check return code of pci_sriov_enable (Steve Best) [1182052]
-- [misc] genwqe: Do not modify return code of genwqe_set_interrupt_capability (Steve Best) [1182052]
-- [misc] genwqe: Update author information (Steve Best) [1182052]
-- [misc] genwqe: Remove sysfs entry for driver version (Steve Best) [1182052]
-- [misc] genwqe: Check pci_get_totalvfs return code (Steve Best) [1182052]
-- [misc] genwqe: fix pci_enable_msi usage (Steve Best) [1182052]
-- [s390] dasd: fix inability to set a DASD device offline (Hendrik Brueckner) [1213888]
-- [s390] dasd: Fix unresumed device after suspend/resume having no paths (Hendrik Brueckner) [1213889]
-- [s390] af_iucv: fix AF_IUCV sendmsg() errno (Hendrik Brueckner) [1213885]
-- [s390] dasd: fix unresumed device after suspend/resume (Hendrik Brueckner) [1213884]
-- [scsi] megaraid_sas: revert: Add release date and update driver version (Tomas Henzl) [1207175]
-- [pci] Fix RHEL7 specific possible Null pointer dereference (Myron Stowe) [1215237]
-- [x86] mce: Fix regression. All error records should report via /dev/mcelog (Seth Jennings) [1183957]
-- [fs] isofs: Fix unchecked printing of ER records (Mateusz Guzik) [1180483] {CVE-2014-9584}
-- [fs] isofs: infinite loop in CE record entries (Jacob Tanenbaum) [1175248] {CVE-2014-9420}
-
-* Mon Apr 27 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-243.el7]
-- [fs] xfs: fix behaviour of XFS_IOC_FSSETXATTR on directories (Brian Foster) [1200652]
-- [fs] xfs: factor projid hint checking out of xfs_ioctl_setattr (Brian Foster) [1200652]
-- [fs] xfs: factor extsize hint checking out of xfs_ioctl_setattr (Brian Foster) [1200652]
-- [fs] xfs: XFS_IOCTL_SETXATTR can run in user namespaces (Brian Foster) [1200652]
-- [fs] xfs: kill xfs_ioctl_setattr behaviour mask (Brian Foster) [1200652]
-- [fs] xfs: disaggregate xfs_ioctl_setattr (Brian Foster) [1200652]
-- [fs] xfs: factor out xfs_ioctl_setattr transaciton preamble (Brian Foster) [1200652]
-- [fs] xfs: separate xflags from xfs_ioctl_setattr (Brian Foster) [1200652]
-- [fs] xfs: FSX_NONBLOCK is not used (Brian Foster) [1200652]
-- [fs] xfs: split metadata and log buffer completion to separate workqueues (Brian Foster) [1184177]
-- [fs] xfs: check xfs_buf_read_uncached returns correctly (Brian Foster) [1184177]
-- [fs] xfs: introduce xfs_buf_submit[_wait] (Brian Foster) [1184177]
-- [fs] xfs: kill xfs_bioerror_relse (Brian Foster) [1184177]
-- [fs] xfs: xfs_bioerror can die (Brian Foster) [1184177]
-- [fs] xfs: kill xfs_bdstrat_cb (Brian Foster) [1184177]
-- [fs] xfs: rework xfs_buf_bio_endio error handling (Brian Foster) [1184177]
-- [fs] xfs: xfs_buf_ioend and xfs_buf_iodone_work duplicate functionality (Brian Foster) [1184177]
-- [fs] xfs: synchronous buffer IO needs a reference (Brian Foster) [1184177]
-- [fs] xfs: Keep sb_bad_features2 consistent with sb_features2 (Brian Foster) [1184177]
-- [fs] xfs: fix set-but-unused warnings (Brian Foster) [1184177]
-- [fs] xfs: move type conversion functions to xfs_dir.h (Brian Foster) [1184177]
-- [fs] xfs: move ftype conversion functions to libxfs (Brian Foster) [1184177]
-- [fs] xfs: active inodes stat is broken (Brian Foster) [1184177]
-- [fs] xfs: cleanup xfs_bmse_merge returns (Brian Foster) [1184177]
-- [fs] xfs: cleanup xfs_bmse_shift_one goto mess (Brian Foster) [1184177]
-- [fs] xfs: fix premature enospc on inode allocation (Brian Foster) [1184177]
-- [fs] xfs: overflow in xfs_iomap_eof_align_last_fsb (Brian Foster) [1184177]
-- [fs] xfs: fix simple_return.cocci warning in xfs_bmse_shift_one (Brian Foster) [1184177]
-- [fs] xfs: fix simple_return.cocci warning in xfs_file_readdir (Brian Foster) [1184177]
-- [fs] libxfs: fix simple_return.cocci warnings (Brian Foster) [1184177]
-- [fs] xfs: remove unnecessary null checks (Brian Foster) [1184177]
-- [fs] xfs: merge xfs_inum.h into xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: move most of xfs_sb.h to xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: merge xfs_ag.h into xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: move acl structures to xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: merge xfs_dinode.h into xfs_format.h (Brian Foster) [1184177]
-- [fs] xfs: allow lazy sb counter sync during filesystem freeze sequence (Brian Foster) [1184177]
-- [fs] xfs: fix error handling in xfs_qm_log_quotaoff() (Brian Foster) [1184177]
-- [fs] xfs: replace on-stack xfs_trans_res with pointer in xfs_create() (Brian Foster) [1184177]
-- [fs] xfs: track bulkstat progress by agino (Brian Foster) [1184177]
-- [fs] xfs: bulkstat error handling is broken (Brian Foster) [1184177]
-- [fs] xfs: bulkstat main loop logic is a mess (Brian Foster) [1184177]
-- [fs] xfs: bulkstat chunk-formatter has issues (Brian Foster) [1184177]
-- [fs] xfs: bulkstat chunk formatting cursor is broken (Brian Foster) [1184177]
-- [fs] xfs: bulkstat btree walk doesn't terminate (Brian Foster) [1184177]
-- [fs] xfs: rework zero range to prevent invalid i_size updates (Brian Foster) [1184177]
-- [fs] xfs: Check error during inode btree iteration in xfs_bulkstat() (Brian Foster) [1184177]
-- [fs] xfs: bulkstat doesn't release AGI buffer on error (Brian Foster) [1184177]
-- [fs] xfs: fix agno increment in xfs_inumbers() loop (Brian Foster) [1184177]
-- [fs] xfs: xfs_iflush_done checks the wrong log item callback (Brian Foster) [1184177]
-- [fs] xfs: check for null dquot in xfs_quota_calc_throttle() (Brian Foster) [1184177]
-- [fs] xfs: fix crc field handling in xfs_sb_to/from_disk (Brian Foster) [1184177]
-- [fs] xfs: don't send null bp to xfs_trans_brelse() (Brian Foster) [1184177]
-- [fs] xfs: check for inode size overflow in xfs_new_eof() (Brian Foster) [1184177]
-- [fs] xfs: kill time.h (Brian Foster) [1184177]
-- [fs] xfs: compat_xfs_bstat does not have forkoff (Brian Foster) [1184177]
-- [fs] xfs: Don't use xfs_buf_iowait in the delwri buffer code (Brian Foster) [1184177]
-- [fs] xfs: force the log before shutting down (Brian Foster) [1184177]
-- [fs] xfs: annotate user variables passed as void (Brian Foster) [1184177]
-- [fs] xfs: xfs_kset should be static (Brian Foster) [1184177]
-- [fs] xfs: fix use of agi_newino in finobt lookup (Brian Foster) [1184177]
-- [fs] xfs: refactor recovery transaction start handling (Brian Foster) [1184177]
-- [fs] xfs: reorganise transaction recovery item code (Brian Foster) [1184177]
-- [fs] xfs: fix double free in xlog_recover_commit_trans (Brian Foster) [1184177]
-- [fs] xfs: recovery of XLOG_UNMOUNT_TRANS leaks memory (Brian Foster) [1184177]
-- [fs] xfs: refactor xlog_recover_process_data() (Brian Foster) [1184177]
-- [fs] xfs: flush entire last page of old EOF on truncate up (Brian Foster) [1184177]
-- [fs] xfs: xfs_swap_extent_flush can be static (Brian Foster) [1184177]
-- [fs] xfs: xfs_buf_write_fail_rl_state can be static (Brian Foster) [1184177]
-- [fs] xfs: xfs_rtget_summary can be static (Brian Foster) [1184177]
-- [fs] xfs: remove second xfs_quota.h inclusion in xfs_icache.c (Brian Foster) [1184177]
-- [fs] xfs: don't ASSERT on corrupt ftype (Brian Foster) [1184177]
-- [fs] xfs: xlog_cil_force_lsn doesn't always wait correctly (Brian Foster) [1184177]
-- [fs] xfs: only writeback and truncate pages for the freed range (Brian Foster) [1184177]
-- [fs] xfs: writeback and inval. file range to be shifted by collapse (Brian Foster) [1184177]
-- [fs] xfs: refactor single extent shift into xfs_bmse_shift_one() helper (Brian Foster) [1184177]
-- [fs] xfs: refactor shift-by-merge into xfs_bmse_merge() helper (Brian Foster) [1184177]
-- [fs] xfs: track collapse via file offset rather than extent index (Brian Foster) [1184177]
-- [fs] xfs: ensure WB_SYNC_ALL writeback handles partial pages correctly (Brian Foster) [1184177]
-- [fs] xfs: remove rbpp check from xfs_rtmodify_summary_int (Brian Foster) [1184177]
-- [fs] xfs: combine xfs_rtmodify_summary and xfs_rtget_summary (Brian Foster) [1184177]
-- [fs] xfs: combine xfs_dir_canenter into xfs_dir_createname (Brian Foster) [1184177]
-- [fs] xfs: check resblks before calling xfs_dir_canenter (Brian Foster) [1184177]
-- [fs] xfs: deduplicate xlog_do_recovery_pass() (Brian Foster) [1184177]
-- [fs] xfs: lseek: the "whence" argument is called "whence" (Brian Foster) [1184177]
-- [fs] xfs: combine xfs_seek_hole & xfs_seek_data (Brian Foster) [1184177]
-- [fs] xfs: export log_recovery_delay to delay mount time log recovery (Brian Foster) [1184177]
-- [fs] xfs: add debug sysfs attribute set (Brian Foster) [1184177]
-- [fs] xfs: trim eofblocks before collapse range (Brian Foster) [1184177]
-- [fs] xfs: xfs_file_collapse_range is delalloc challenged (Brian Foster) [1184177]
-- [fs] xfs: don't log inode unless extent shift makes extent modifications (Brian Foster) [1184177]
-- [fs] xfs: kill xfs_vnode.h (Brian Foster) [1184177]
-- [fs] xfs: kill VN_MAPPED (Brian Foster) [1184177]
-- [fs] xfs: kill VN_CACHED (Brian Foster) [1184177]
-- [fs] xfs: kill VN_DIRTY() (Brian Foster) [1184177]
-- [fs] xfs: introduce xfs_bulkstat_ag_ichunk (Brian Foster) [1184177]
-- [fs] xfs: require 64-bit sector_t (Brian Foster) [1184177]
-- [fs] xfs: remove XFS_IS_OQUOTA_ON macros (Brian Foster) [1184177]
-- [fs] xfs: tidy up xfs_set_inode32 (Brian Foster) [1184177]
-- [fs] xfs: mark xfs_qm_quotacheck as static (Brian Foster) [1184177]
-- [fs] xfs: introduce xfs_bulkstat_grab_ichunk (Brian Foster) [1184177]
-- [fs] xfs: introduce xfs_bulkstat_ichunk_ra (Brian Foster) [1184177]
-- [fs] xfs: fix error handling at xfs_bulkstat (Brian Foster) [1184177]
-- [fs] xfs: remove redundant user buffer count checks at xfs_bulkstat (Brian Foster) [1184177]
-- [fs] xfs: fix error handling at xfs_inumbers (Brian Foster) [1184177]
-- [fs] xfs: consolidate xfs_inumbers (Brian Foster) [1184177]
-- [fs] xfs: remove xfs_bulkstat_single (Brian Foster) [1184177]
-- [fs] xfs: remove redundant stat assignment in xfs_bulkstat_one_int (Brian Foster) [1184177]
-- [fs] xfs: add log attributes for log lsn and grant head data (Brian Foster) [1184177]
-- [fs] xfs: add xlog sysfs kobject and attribute handlers (Brian Foster) [1184177]
-- [fs] xfs: add xfs_mount sysfs kobject (Brian Foster) [1184177]
-- [fs] xfs: add a sysfs kset (Brian Foster) [1184177]
-- [fs] xfs: global error sign conversion (Brian Foster) [1184177]
-- [fs] libxfs: move source files (Brian Foster) [1184177]
-- [fs] libxfs: move header files (Brian Foster) [1184177]
-- [fs] xfs: create libxfs infrastructure (Brian Foster) [1184177]
-- [fs] xfs: Nuke XFS_ERROR macro (Brian Foster) [1184177]
-- [fs] xfs: return is not a function (Brian Foster) [1184177]
-- [fs] xfs: fix xfs_da_args sparse warning in xfs_readdir (Brian Foster) [1184177]
-- [fs] xfs: small cleanup in xfs_lowbit64() (Brian Foster) [1184177]
-- [fs] xfs: kill xfs_buf_geterror() (Brian Foster) [1184177]
-- [fs] xfs: remove redundant geometry information from xfs_da_state (Brian Foster) [1184177]
-- [fs] xfs: replace attr LBSIZE with xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: pass xfs_da_args to xfs_attr_leaf_newentsize (Brian Foster) [1184177]
-- [fs] xfs: use xfs_da_geometry for block size in attr code (Brian Foster) [1184177]
-- [fs] xfs: remove mp->m_dir_geo from directory logging (Brian Foster) [1184177]
-- [fs] xfs: reduce direct usage of mp->m_dir_geo (Brian Foster) [1184177]
-- [fs] xfs: move node entry counts to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert dir/attr btree threshold to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert m_dirblksize to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert m_dirblkfsbs to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert directory segment limits to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert directory db conversion to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert directory dablk conversion to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: convert dir byte/off conversion to xfs_da_geometry (Brian Foster) [1184177]
-- [fs] xfs: kill XFS_DIR2...FIRSTDB macros (Brian Foster) [1184177]
-- [fs] xfs: move directory block translatiosn to xfs_dir2_priv.h (Brian Foster) [1184177]
-- [fs] xfs: introduce directory geometry structure (Brian Foster) [1184177]
-- [fs] xfs: fix compile error when libxfs header used in C++ code (Brian Foster) [1184177]
-- [fs] xfs: fix infinite loop at xfs_vm_writepage on 32bit system (Brian Foster) [1184177]
-- [fs] xfs: remove XFS_TRANS_RESERVE in collapse range (Brian Foster) [1184177]
-- [fs] xfs: remove shared supberlock feature checking (Brian Foster) [1184177]
-- [fs] xfs: don't need dirv2 checks anymore (Brian Foster) [1184177]
-- [fs] xfs: turn NLINK feature on by default (Brian Foster) [1184177]
-- [fs] xfs: make superblock version checks reflect reality (Brian Foster) [1184177]
-- [fs] xfs: pass struct da_args to xfs_attr_calc_size (Brian Foster) [1184177]
-- [fs] xfs: simplify attr name setup (Brian Foster) [1184177]
-- [fs] xfs: fold xfs_attr_remove_int into xfs_attr_remove (Brian Foster) [1184177]
-- [fs] xfs: fold xfs_attr_get_int into xfs_attr_get (Brian Foster) [1184177]
-- [fs] xfs: fold xfs_attr_set_int into xfs_attr_set (Brian Foster) [1184177]
-- [fs] xfs: remove dquot hints (Brian Foster) [1184177]
-- [fs] xfs: enable the finobt feature on v5 superblocks (Brian Foster) [1184177]
-- [fs] xfs: report finobt status in fs geometry (Brian Foster) [1184177]
-- [fs] xfs: add finobt support to growfs (Brian Foster) [1184177]
-- [fs] xfs: update the finobt on inode free (Brian Foster) [1184177]
-- [fs] xfs: refactor xfs_difree() inobt bits into xfs_difree_inobt() helper (Brian Foster) [1184177]
-- [fs] xfs: use and update the finobt on inode allocation (Brian Foster) [1184177]
-- [fs] xfs: insert newly allocated inode chunks into the finobt (Brian Foster) [1184177]
-- [fs] xfs: update inode allocation/free transaction reservations for finobt (Brian Foster) [1184177]
-- [fs] xfs: support the XFS_BTNUM_FINOBT free inode btree type (Brian Foster) [1184177]
-- [fs] xfs: reserve v5 superblock read-only compat. feature bit for finobt (Brian Foster) [1184177]
-- [fs] xfs: refactor xfs_ialloc_btree.c to support multiple inobt numbers (Brian Foster) [1184177]
-- [fs] xfs: add filestream allocator tracepoints (Brian Foster) [1184177]
-- [fs] xfs: remove xfs_filestream_associate (Brian Foster) [1184177]
-- [fs] xfs: don't create a slab cache for filestream items (Brian Foster) [1184177]
-- [fs] xfs: rewrite the filestream allocator using the dentry cache (Brian Foster) [1184177]
-- [fs] xfs: remove XFS_IFILESTREAM (Brian Foster) [1184177]
-- [fs] xfs: embedd mru_elem into parent structure (Brian Foster) [1184177]
-- [fs] xfs: handle duplicate entries in xfs_mru_cache_insert (Brian Foster) [1184177]
-- [fs] xfs: split xfs_bmap_btalloc_nullfb (Brian Foster) [1184177]
-- [fs] xfs: don't try to use the filestream allocator for metadata allocations (Brian Foster) [1184177]
-- [fs] xfs: remove unused calculation in xfs_dir2_sf_addname() (Brian Foster) [1184177]
-- [fs] xfs: remove pointless pointer increment in xfs_dir2_block_compact() (Brian Foster) [1184177]
-- [fs] xfs: remove unused trans pointer arg from xlog_recover_unmount_trans() (Brian Foster) [1184177]
-- [fs] xfs: remove unused ail pointer arg from xfs_trans_ail_cursor_done() (Brian Foster) [1184177]
-- [fs] xfs: remove unused xfs_mount arg from xfs_symlink_hdr_ok() (Brian Foster) [1184177]
-- [fs] xfs: remove unused bp arg from xfs_iflush_fork() (Brian Foster) [1184177]
-- [fs] xfs: remove unused pag ptr arg from iterator execute functions (Brian Foster) [1184177]
-- [fs] xfs: remove unused length arg from alloc_block ops (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_calc_dquots_per_chunk() (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_dir2 dataptr/byte functions (Brian Foster) [1184177]
-- [fs] xfs: remove unused tp arg from xfs_da_reada_buf & callers (Brian Foster) [1184177]
-- [fs] xfs: remove unused bip arg from xfs_buf_item_log_segment() (Brian Foster) [1184177]
-- [fs] xfs: remove unused flags arg from _xfs_buf_get_pages() (Brian Foster) [1184177]
-- [fs] xfs: remove unused args from xfs_alloc_buftarg() (Brian Foster) [1184177]
-- [fs] xfs: remove unused blocksize arg from xfs_setsize_buftarg() (Brian Foster) [1184177]
-- [fs] xfs: remove unused level arg from xfs_btree_read_buf_block() (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_bmap_forkoff_reset() (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_bmdr_maxrecs() (Brian Foster) [1184177]
-- [fs] xfs: remove unused mp arg from xfs_attr3_rmt_hdr_ok() (Brian Foster) [1184177]
-- [fs] xfs: remove unused tp arg from xfs_bmap_last_offset() and callers (Brian Foster) [1184177]
-- [fs] xfs: correct error sign on COLLAPSE_RANGE errors (Brian Foster) [1184177]
-- [fs] xfs: collapse range is delalloc challenged (Brian Foster) [1184177]
-- [fs] xfs: move falloc collapse range check into the filesystem methods (Brian Foster) [1184177]
-- [fs] xfs: Add support for FALLOC_FL_ZERO_RANGE (Brian Foster) [1184177]
-- [fs] xfs: use NOIO contexts for vm_map_ram (Brian Foster) [1184177]
-- [fs] xfs: fix directory inode iolock lockdep false positive (Brian Foster) [1184177]
-- [fs] xfs: allocate xfs_da_args to reduce stack footprint (Brian Foster) [1184177]
-- [fs] xfs: Add support FALLOC_FL_COLLAPSE_RANGE for fallocate (Brian Foster) [1184177]
-- [fs] xfs: always use unwritten extents for direct I/O writes (Brian Foster) [1184177]
-- [fs] xfs: factor prid related codes into xfs_get_initial_prid() (Brian Foster) [1184177]
-
-* Thu Apr 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-242.el7]
-- [netdrv] hyperv: Add processing of MTU reduced by the host (Vitaly Kuznetsov) [1196420]
-- [x86] crypto: aesni - fix memory usage in GCM decryption (Kurt Stutsman) [1212178] {CVE-2015-3331}
-- [usb] fix use-after-free bug in usb_hcd_unlink_urb() (Don Zickus) [1187256]
-- [pci] Mark RTL8110SC INTx masking as broken (Myron Stowe) [1205911]
-- [powerpc] pci: Clip bridge windows to fit in upstream windows (Myron Stowe) [1110898]
-- [x86] pci: Clip bridge windows to fit in upstream windows (Myron Stowe) [1110898]
-- [pci] Add pci_claim_bridge_resource() to clip window if necessary (Myron Stowe) [1110898]
-- [pci] Add pci_bus_clip_resource() to clip to fit upstream window (Myron Stowe) [1110898]
-- [pci] Pass bridge device, not bus, when updating bridge windows (Myron Stowe) [1110898]
-- [pci] Add missing MEM_64 mask in pci_assign_unassigned_bridge_resources() (Myron Stowe) [1110898]
-- [pci] maintainers: Update mx6 PCI driver maintainer's email (Myron Stowe) [1110898]
-- [pci] Add function 1 DMA alias quirk for HighPoint RocketRaid 642L (Myron Stowe) [1110898]
-- [pci] msi: Fix memory leak in free_msi_irqs() (Myron Stowe) [1110898]
-- [pci] Merge multi-line quoted strings (Myron Stowe) [1110898]
-- [pci] Whitespace cleanup (Myron Stowe) [1110898]
-- [pci] Move EXPORT_SYMBOL so it immediately follows function/variable (Myron Stowe) [1110898]
-- [pci] Make pci_bus_add_device() void (Myron Stowe) [1110898]
-- [pci] Introduce new device binding path using pci_dev.driver_override (Myron Stowe) [1110898]
-- [pci] cpqphp: Fix possible null pointer dereference (Myron Stowe) [1110898]
-- [pci] Fix return value from pci_user_{read, write}_config_*() (Myron Stowe) [1110898]
-- [pci] Turn pcibios_penalize_isa_irq() into a weak function (Myron Stowe) [1110898]
-- [pci] pcmcia: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] pciehp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] acpiphp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] cpcihp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] shpchp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] rpaphp: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [x86] pci: Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] Use pci_is_bridge() to simplify code (Myron Stowe) [1110898]
-- [pci] nvme: Implement PCIe reset notification callback (Myron Stowe) [1110898]
-- [pci] Notify driver before and after device reset (Myron Stowe) [1110898]
-- [x86] pci: Clean up and mark early_root_info_init() as deprecated (Myron Stowe) [1110898]
-- [pci] dma-api: Update dma_pool_create ()and dma_pool_alloc() descriptions (Myron Stowe) [1110898]
-- [pci] dma-api: Fix duplicated word in DMA-API-HOWTO.txt (Myron Stowe) [1110898]
-- [pci] dma-api: Capitalize "CPU" consistently (Myron Stowe) [1110898]
-- [pci] Add resource allocation comments (Myron Stowe) [1110898]
-- [pci] Simplify __pci_assign_resource() coding style (Myron Stowe) [1110898]
-- [pci] Change pbus_size_mem() return values to be more conventional (Myron Stowe) [1110898]
-- [pci] Restrict 64-bit prefetchable bridge windows to 64-bit resources (Myron Stowe) [1110898]
-- [pci] Support BAR sizes up to 8GB (Myron Stowe) [1110898]
-- [x86] gart: Tidy messages and add bridge device info (Myron Stowe) [1110898]
-- [x86] gart: Replace printk() with pr_info() (Myron Stowe) [1110898]
-- [x86] pci: Move pcibios_assign_resources() annotation to definition (Myron Stowe) [1110898]
-- [pci] Remove pcibios_add_platform_entries() (Myron Stowe) [1110898]
-- [s390] pci: use pdev->dev.groups for attribute creation (Myron Stowe) [1110898]
-- [x86] pci: Work around AMD Fam15h BIOSes that fail to provide _PXM (Myron Stowe) [1110898]
-- [x86] pci: Warn if we have to "guess" host bridge node information (Myron Stowe) [1110898]
-- [pci] dma-api: Change dma_declare_coherent_memory() CPU address to phys_addr_t (Myron Stowe) [1110898]
-- [pci] dma-api: Clarify physical/bus address distinction (Myron Stowe) [1110898]
-- [pci] msi: Remove pci_enable_msi_block() (Myron Stowe) [1110898]
-- [pci] Move Open Firmware devspec attribute to PCI common code (Myron Stowe) [1110898]
-- [pci] Fix use of uninitialized MPS value (Myron Stowe) [1110898]
-- [pci] Remove dead code (Myron Stowe) [1110898]
-- [pci] maintainers: Add arch/x86/kernel/quirks.c to PCI file patterns (Myron Stowe) [1110898]
-- [pci] Remove unnecessary __ref annotations (Myron Stowe) [1110898]
-- [pci] Add new ID for Intel GPU "spurious interrupt" quirk (Myron Stowe) [1110898]
-- [pci] genwqe: Use pci_enable_msi_exact() instead of pci_enable_msi_block() (Myron Stowe) [1110898]
-- [pci] Fix incorrect vgaarb conditional in WARN_ON() (Myron Stowe) [1110898]
-- [x86] pci: Mark ATI SBx00 HPET BAR as IORESOURCE_PCI_FIXED (Myron Stowe) [1110898]
-- [x86] pci: Don't try to move IORESOURCE_PCI_FIXED resources (Myron Stowe) [1110898]
-- [x86] pci: Fix Broadcom CNB20LE unintended sign extension (Myron Stowe) [1110898]
-- [pci] Use designated initialization in PCI_VDEVICE (Myron Stowe) [1110898]
-- [pci] Allow hotplug service drivers to operate in polling mode (Myron Stowe) [1110898]
-- [pci] pciehp: Acknowledge spurious "cmd completed" event (Myron Stowe) [1110898]
-- [pci] Remove old serial device IDs (Myron Stowe) [1110898]
-- [pci] Remove unnecessary includes of <linux/init.h> (Myron Stowe) [1110898]
-- [pci] pciehp: Use PCI_EXP_SLTCAP_PSN define (Myron Stowe) [1110898]
-- [pci] hotplug: Remove unnecessary "dev->bus" test (Myron Stowe) [1110898]
-- [pci] msi: Simplify populate_msi_sysfs() (Myron Stowe) [1110898]
-- [pci] portdrv: Use pci_enable_msix_exact() instead of pci_enable_msix() (Myron Stowe) [1110898]
-- [powerpc] kvm: ppc: book3s hv: Enable for little endian hosts (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Fix ABIv2 on LE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Access XICS in BE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Access host lppaca and shadow slb in BE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Access guest VPA in BE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Make HTAB code LE host aware (David Gibson) [1193257]
-- [powerpc] Add asm helpers for BE 32bit load/store (David Gibson) [1193257]
-- [powerpc] kvm: ppc: Assembly functions exported to modules need _GLOBAL_TOC() (David Gibson) [1193257]
-- [powerpc] kvm: ppc: rtas: Do byte swaps explicitly (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s pr: Fix ABIv2 on LE (David Gibson) [1193257]
-- [powerpc] kvm: ppc: book3s hv: Fix ABIv2 indirect branch issue (David Gibson) [1193257]
-- [powerpc] perf: add missing put_cpu_var in power_pmu_event_init (Jan Stancek) [1202283]
-- [s390] watchdog: support for KVM hypervisors and delete pr_info messages (Hendrik Brueckner) [1182310]
-- [s390] watchdog: enable KEEPALIVE for /dev/watchdog (Hendrik Brueckner) [1182310]
-- [s390] kernel: Update /proc/sysinfo file with Extended Name and UUID (Hendrik Brueckner) [1182311]
-- [s390] qeth: Display adjacent switch attributes (Hendrik Brueckner) [1182287]
-- [x86] kvm: vmx: fix oops with explicit flexpriority=0 option (Radim Krcmar) [1185276]
-
-* Tue Apr 21 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-241.el7]
-- [hv] hv_fcopy: drop the obsolete message on transfer failure (Vitaly Kuznetsov) [1162100]
-- [virtio] virtio_ring: Update weak barriers to use dma_wmb/rmb (Alexander Duyck) [1205268]
-- [arch] Add lightweight memory barriers dma_rmb() and dma_wmb() (Alexander Duyck) [1205268]
-- [arch] Cleanup read_barrier_depends() and comments (Alexander Duyck) [1205268]
-- [arch] Clean up asm/barrier.h implementations using asm-generic/barrier.h (Alexander Duyck) [1205268]
-- [x86] kernel: Remove CONFIG_X86_OOSTORE (Alexander Duyck) [1205268]
-- [kernel] sched/idle: Optimize try-to-wake-up IPI (Rik van Riel) [1197889]
-- [kernel] sched, trace: Add a tracepoint for IPI-less remote wakeups (Rik van Riel) [1197889]
-- [kernel] sched/idle: Avoid spurious wakeup IPIs (Rik van Riel) [1197889]
-- [kernel] sched/idle: Clear polling before descheduling the idle thread (Rik van Riel) [1197889]
-- [x86] sched/idle: Switch from TS_POLLING to TIF_POLLING_NRFLAG (Rik van Riel) [1197889]
-- [hv] vss: Fast propagation of userspace communication failure (Vitaly Kuznetsov) [1092780]
-- [hv] vss: Introduce timeout for communication with userspace (Vitaly Kuznetsov) [1092780]
-- [pci] Increase IBM ipr SAS Crocodile BARs to at least system page size (Steve Best) [1211951]
-- [thermal] intel_powerclamp: add id for broadwell server (Steve Best) [1169554]
-- [powerpc] Fail remap_4k_pfn() if PFN doesn't fit inside PTE (Steve Best) [1211954]
-- [kernel] perf: Fix events installation during moving group (Jiri Olsa) [1066402]
-- [x86] perf_event_intel_uncore: Make sure only uncore events are collected (Jiri Olsa) [1066402]
-- [kernel] futex: Mention key referencing differences between shared and private futexes (Larry Woodman) [1205862]
-- [kernel] futex: Ensure get_futex_key_refs() always implies a barrier (Larry Woodman) [1205862]
-- [scripts] kconfig: Fix warning "'jump' may be used uninitialized" (Prarit Bhargava) [1184972]
-- [netdrv] bnx2x: fix encapsulation features on 57710/57711 (Michal Schmidt) [1164997]
-- [netdrv] be2net: use PCI MMIO read instead of config read for errors (Ivan Vecera) [1171839]
-- [netdrv] be2net: Fix TX rate limiting on Lancer/Skyhawk-R VFs (Ivan Vecera) [1186613]
-- [netdrv] be2net: fail VF link config change via ndo_set_vf_link_state() on BE3/Lancer (Ivan Vecera) [1186607]
-- [pci] Add ACS quirk for Emulex NICs (Ivan Vecera) [1183443]
-- [pci] Test for std config alias when testing extended config space (Myron Stowe) [1205915]
-- [hv] hv_balloon: correctly handle num_pages>INT_MAX case (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: correctly handle val.freeram<num_pages case (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: survive ballooning request with num_pages=0 (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: eliminate jumps in piecewiese linear floor function (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: keep locks balanced on add_memory() failure (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: refuse to balloon below the floor (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: report offline pages as being used (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: eliminate the trylock path in acquire/release_region_mutex (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: Don't post pressure status from interrupt context (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: Fix a locking bug in the balloon driver (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: Make adjustments in computing the floor (Vitaly Kuznetsov) [1203790]
-- [hv] hv_balloon: avoid memory leak on alloc_error of 2MB memory block (Vitaly Kuznetsov) [1203790]
-- [vfio] Rework offsetofend() (Alex Williamson) [1206275]
-- [vfio] always select ANON_INODES (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix the check on pci device type in vfio_pci_probe() (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix wrong MSI interrupt count (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Add missing break to enable VFIO_PCI_ERR_IRQ_INDEX (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Add device request interface (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Generalize setup of simple eventfds (Alex Williamson) [1206275]
-- [vfio] Add and use device request op for vfio bus drivers (Alex Williamson) [1206275]
-- [vfio] Tie IOMMU group reference to vfio group (Alex Williamson) [1206275]
-- [vfio] Add device tracking during unbind (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Add conditional rescheduling (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Chunk contiguous reserved/invalid page mappings (Alex Williamson) [1206275]
-- [vfio] iommu_type1: DMA unmap chunking (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix remove path locking (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Attempt bus/slot reset on release (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Use mutex around open, release, and remove (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Release devices with BusMaster disabled (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Avoid overflow (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix unchecked return value (Alex Williamson) [1206275]
-- [vfio] vfio-pci: Fix sizing of DPA and THP express capabilities (Alex Williamson) [1206275]
-- [vfio] fio: Support for DMA coherent IOMMUs (Alex Williamson) [1206275]
-- [vfio] Add external user check extension interface (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Add extension to test DMA cache coherence of IOMMU (Alex Williamson) [1206275]
-- [vfio] iommu_type1: Multi-IOMMU domain support (Alex Williamson) [1206275]
-- [acpi] processor: Convert apic_id to phys_id to make it arch agnostic (Prarit Bhargava) [1201167]
-- [acpi] processor: Make it possible to get local x2apic id via _MAT (Prarit Bhargava) [1201167]
-- [acpi] scan: bail out early if failed to parse APIC ID for CPU (Prarit Bhargava) [1201167]
-- [acpi] processor: use apic_id and remove duplicated _MAT evaluation (Prarit Bhargava) [1201167]
-
-* Wed Apr 15 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-240.el7]
-- [net] neigh: Netlink notification for administrative NUD state change (Jiri Pirko) [1210373]
-- [net] netfilter: nf_tables: fix flush ruleset chain dependencies (Jiri Pirko) [1192881] {CVE-2015-1573}
-- [net] pktgen: disable xmit_clone on virtual devices (Alexander Duyck) [1205266]
-- [net] packet: fix packet_direct_xmit for BQL enabled drivers (Alexander Duyck) [1205266]
-- [net] pktgen: packet bursting via skb->xmit_more (Alexander Duyck) [1205266]
-- [net] pktgen: add flag NO_TIMESTAMP to disable timestamping (Alexander Duyck) [1205266]
-- [net] qdisc: dequeue bulking also pickup GSO/TSO packets (Alexander Duyck) [1205266]
-- [net] qdisc: bulk dequeue support for qdiscs with TCQ_F_ONETXQUEUE (Alexander Duyck) [1205266]
-- [net] qdisc: validate frames going through the direct_xmit path (Alexander Duyck) [1205266]
-- [net] qdisc: exit case fixes for skb list handling in qdisc layer (Alexander Duyck) [1205266]
-- [net] qdisc: adjustments for API allowing skb list xmits (Alexander Duyck) [1205266]
-- [net] xmit_list() becomes dev_hard_start_xmit() (Alexander Duyck) [1205266]
-- [net] Don't keep around original SKB when we software segment GSO frames (Alexander Duyck) [1205266]
-- [net] Validate xmit SKBs right when we pull them out of the qdisc (Alexander Duyck) [1205266]
-- [net] Separate out SKB validation logic from transmit path (Alexander Duyck) [1205266]
-- [net] Have xmit_list() signal more==true when appropriate (Alexander Duyck) [1205266]
-- [net] Pass a "more" indication down into netdev_start_xmit() code paths (Alexander Duyck) [1205266]
-- [net] Move main gso loop out of dev_hard_start_xmit() into helper (Alexander Duyck) [1205266]
-- [net] Create xmit_one() helper for dev_hard_start_xmit() (Alexander Duyck) [1205266]
-- [net] move inline skb_needs_linearize helper to header (Alexander Duyck) [1205266]
-- [net] Do txq_trans_update() in netdev_start_xmit() (Alexander Duyck) [1205266]
-- [netdrv] virtio_net: flush when in xmit_more mode and under descriptor pressure (Alexander Duyck) [1205266]
-- [netdrv] igb: flush when in xmit_more mode and under descriptor pressure (Alexander Duyck) [1205266]
-- [netdrv] ixgbe: flush when in xmit_more mode and under descriptor pressure (Alexander Duyck) [1205266]
-- [netdrv] ixgbe: support skb->xmit_more in netdev_ops->ndo_start_xmit() (Alexander Duyck) [1205266]
-- [net] Remove ndo_xmit_flush netdev operation, use signalling instead (Alexander Duyck) [1205266]
-- [net] Add ops->ndo_xmit_flush() (Alexander Duyck) [1205266]
-- [net] add skb_get_tx_queue() helper (Alexander Duyck) [1205266]
-- [net] netpoll: Only call ndo_start_xmit from a single place (Alexander Duyck) [1205266]
-- [net] Pull out core bits of __netdev_alloc_skb and add __napi_alloc_skb (Alexander Duyck) [1205273]
-- [net] Split netdev_alloc_frag into __alloc_page_frag and add __napi_alloc_frag (Alexander Duyck) [1205273]
-- [net] nf_conntrack: reserve two bytes for nf_ct_ext->len (Marcelo Leitner) [1206164] {CVE-2014-9715}
-- [net] ipv6: Partial checksum only UDP packets (Vlad Yasevich) [1105064]
-- [net] ipv6: Allow for partial checksums on non-ufo packets (Vlad Yasevich) [1105064]
-- [net] udpv6: Add lockless sendmsg() support (Vlad Yasevich) [1105064]
-- [net] ipv6: Introduce udpv6_send_skb() (Vlad Yasevich) [1105064]
-- [net] ipv6: introduce ipv6_make_skb (Vlad Yasevich) [1105064]
-- [net] ipv6: Append sending data to arbitrary queue (Vlad Yasevich) [1105064]
-- [net] ipv6: pull cork initialization into its own function (Vlad Yasevich) [1105064]
-- [net] do not enable tx-nocache-copy by default (Alexander Duyck) [1205271]
-- [net] tcp: add DCTCP congestion control algorithm (Florian Westphal) [970613]
-- [net] tcp: more detailed ACK events and events for CE marked packets (Florian Westphal) [970613]
-- [net] tcp: split ack slow/fast events from cwnd_event (Florian Westphal) [970613]
-- [net] tcp: add flag for ca to indicate that ECN is required (Florian Westphal) [970613]
-- [net] tcp: assign tcp cong_ops when tcp sk is created (Florian Westphal) [970613]
-- [net] tcp: don't include Fast Open option in SYN-ACK on pure SYN-data (Florian Westphal) [1151756]
-- [net] tcp: abort orphan sockets stalling on zero window probes (Florian Westphal) [1151756]
-- [net] tcp: fix more NULL deref after prequeue changes (Florian Westphal) [1151756]
-- [net] tcp: fix possible NULL dereference in tcp_vX_send_reset() (Florian Westphal) [1151756]
-- [net] skb_fclone_busy() needs to detect orphaned skb (Florian Westphal) [1151756]
-- [net] cleanup and document skb fclone layout (Florian Westphal) [1151756]
-- [net] tcp: md5: do not use alloc_percpu() (Florian Westphal) [1151756]
-- [net] tcp: tcp_conn_request: fix build error when IPv6 is disabled (Florian Westphal) [1151756]
-- [net] introduce __skb_header_release() (Florian Westphal) [1151756]
-- [net] tcp: add coalescing attempt in tcp_ofo_queue() (Florian Westphal) [1151756]
-- [net] tcp: avoid possible arithmetic overflows (Florian Westphal) [1151756]
-- [net] tcp: do not fake tcp headers in tcp_send_rcvq() (Florian Westphal) [1151756]
-- [net] tcp: do not copy headers in tcp_collapse() (Florian Westphal) [1151756]
-- [net] tcp: allow segment with FIN in tcp_try_coalesce() (Florian Westphal) [1151756]
-- [net] tcp: use tcp_flags in tcp_data_queue() (Florian Westphal) [1151756]
-- [net] tcp: use TCP_SKB_CB(skb)->tcp_flags in input path (Florian Westphal) [1151756]
-- [net] tcp: remove dst refcount false sharing for prequeue mode (Florian Westphal) [1151756]
-- [net] tcp: remove obsolete comment about TCP_SKB_CB(skb)->when in tcp_fragment() (Florian Westphal) [1151756]
-- [net] tcp: remove TCP_SKB_CB(skb)->when (Florian Westphal) [1151756]
-- [net] tcp: introduce TCP_SKB_CB(skb)->tcp_tw_isn (Florian Westphal) [1151756]
-- [net] tcp: whitespace fixes (Florian Westphal) [1151756]
-- [net] tcp: improve undo on timeout (Florian Westphal) [1151756]
-- [net] tcp: fix ssthresh and undo for consecutive short FRTO episodes (Florian Westphal) [1151756]
-- [net] tcp: don't allow syn packets without timestamps to pass tcp_tw_recycle logic (Florian Westphal) [1151756]
-- [net] tcp: fix tcp_release_cb() to dispatch via address family for mtu_reduced() (Florian Westphal) [1151756]
-- [net] tcp: don't use timestamp from repaired skb-s to calculate RTT (v2) (Florian Westphal) [1151756]
-- [net] tcp: md5: check md5 signature without socket lock (Florian Westphal) [1151756]
-- [net] tcp: reduce spurious retransmits due to transient SACK reneging (Florian Westphal) [1151756]
-- [net] tcp: md5: remove unneeded check in tcp_v4_parse_md5_keys (Florian Westphal) [1151756]
-- [net] tcp: Fix integer-overflow in TCP vegas (Florian Westphal) [1151756]
-- [net] tcp: Fix integer-overflows in TCP veno (Florian Westphal) [1151756]
-- [net] tcp: Remove unnecessary arg from tcp_enter_cwr and tcp_init_cwnd_reduction (Florian Westphal) [1151756]
-- [net] tcp: fix false undo corner cases (Florian Westphal) [1151756]
-- [net] tcp: switch snt_synack back to measuring transmit time of first SYNACK (Florian Westphal) [1151756]
-- [net] tcp: Fix divide by zero when pushing during tcp-repair (Florian Westphal) [1151756]
-- [net] tcp: add tcp_conn_request (Florian Westphal) [1151756]
-- [net] tcp: add queue_add_hash to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: add mss_clamp to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: unify tcp_v4_rtx_synack and tcp_v6_rtx_synack (Florian Westphal) [1151756]
-- [net] tcp: add send_synack method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] ipv6: cleanup for tcp_ipv6.c (Florian Westphal) [1151756]
-- [net] tcp: add init_seq method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: move around a few calls in tcp_v6_conn_request (Florian Westphal) [1151756]
-- [net] tcp: add route_req method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: add init_cookie_seq method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] tcp: add init_req method to tcp_request_sock_ops (Florian Westphal) [1151756]
-- [net] remove inet6_reqsk_alloc (Florian Westphal) [1151756]
-- [net] tcp: tcp_v[46]_conn_request: fix snt_synack initialization (Florian Westphal) [1151756]
-- [net] tcp: cookie_v4_init_sequence: skb should be const (Florian Westphal) [1151756]
-- [net] tcp: fix tcp_match_skb_to_sack() for unaligned SACK at end of an skb (Florian Westphal) [1151756]
-- [net] tcp: fixing TLP's FIN recovery (Florian Westphal) [1151756]
-- [net] tcp: fix cwnd undo on DSACK in F-RTO (Florian Westphal) [1151756]
-- [net] tcp: make cwnd-limited checks measurement-based, and gentler (Florian Westphal) [1151756]
-- [net] tcp: IPv6 support for fastopen server (Florian Westphal) [1151756]
-- [net] net: ipv6: Fix oif in TCP SYN+ACK route lookup. (Florian Westphal) [1151756]
-- [net] ipv6: tcp_ipv6 policy route issue (Florian Westphal) [1151756]
-- [net] ipv6: reuse rt6_need_strict (Florian Westphal) [1151756]
-- [net] tcp: improve fastopen icmp handling (Florian Westphal) [1151756]
-- [net] tcp: use tcp_v4_send_synack on first SYN-ACK (Florian Westphal) [1151756]
-- [net] tcp: simplify fast open cookie processing (Florian Westphal) [1151756]
-- [net] tcp: move fastopen functions to tcp_fastopen.c (Florian Westphal) [1151756]
-- [net] tcp: remove in_flight parameter from cong_avoid() methods (Florian Westphal) [1151756]
-- [net] tcp: fix cwnd limited checking to improve congestion control (Florian Westphal) [1151756]
-- [net] tcp_cubic: fix the range of delayed_ack (Florian Westphal) [1151756]
-- [net] tcp: increment retransmit counters in tlp and fast open (Florian Westphal) [1151756]
-- [net] tcp: avoid retransmits of TCP packets hanging in host queues (Florian Westphal) [1151756]
-- [net] tcp: make tcp_cwnd_application_limited() static (Florian Westphal) [1151756]
-- [net] ipv6: tcp_ipv6 do some cleanup (Florian Westphal) [1151756]
-- [net] tcp: fix get_timewait4_sock() delay computation on 64bit (Florian Westphal) [1151756]
-- [net] tcp: tcp_make_synack() minor changes (Florian Westphal) [1151756]
-- [net] tcp: delete unused parameter in tcp_nagle_check() (Florian Westphal) [1151756]
-- [net] tcp: tcp_release_cb() should release socket ownership (Florian Westphal) [1151756]
-- [net] tcp: timestamp SYN+DATA messages (Florian Westphal) [1151756]
-- [net] tcp: do not leak non zero tstamp in output packets (Florian Westphal) [1151756]
-- [net] tcp: Use NET_ADD_STATS instead of NET_ADD_STATS_BH in tcp_event_new_data_sent() (Florian Westphal) [1151756]
-- [net] tcp: snmp stats for Fast Open, SYN rtx, and data pkts (Florian Westphal) [1151756]
-- [net] tcp: fix bogus RTT on special retransmission (Florian Westphal) [1151756]
-- [net] tcp: switch rtt estimations to usec resolution (Florian Westphal) [1151756]
-- [net] kabi: don't make kabi-check trip over sk_buff change (Florian Westphal) [1151756]
-- [net] add skb_mstamp infrastructure (Florian Westphal) [1151756]
-- [net] tcp: add mib counters to track zero window transitions (Florian Westphal) [1151756]
-- [net] tcp: use zero-window when free_space is low (Florian Westphal) [1151756]
-- [net] tcp: reduce the bloat caused by tcp_is_cwnd_limited() (Florian Westphal) [1151756]
-- [net] tcp: fastopen: fix high order allocations (Florian Westphal) [1151756]
-- [net] tcp: remove unused min_cwnd member of tcp_congestion_ops (Florian Westphal) [1151756]
-- [net] tcp: remove 1ms offset in srtt computation (Florian Westphal) [1151756]
-- [net] tcp: delete redundant calls of tcp_mtup_init() (Florian Westphal) [1151756]
-- [net] ipv6: tcp: fix flowlabel value in ACK messages send from TIME_WAIT (Florian Westphal) [1151756]
-- [net] tcp: initialize passive-side sk_pacing_rate after 3WHS (Florian Westphal) [1151756]
-- [net] tcp: tcp_transmit_skb() optimizations (Florian Westphal) [1151756]
-- [net] tcp: metrics: Handle v6/v4-mapped sockets in tcp-metrics (Florian Westphal) [1151756]
-- [net] tcp: metrics: Fix rcu-race when deleting multiple entries (Florian Westphal) [1151756]
-- [net] tcp: metrics: Avoid duplicate entries with the same destination-IP (Florian Westphal) [1151756]
-- [net] tcp: metrics: Allow selective get/del of tcp-metrics based on src IP (Florian Westphal) [1151756]
-- [net] tcp: metrics: Delete all entries matching a certain destination (Florian Westphal) [1151756]
-- [net] tcp: metrics: New netlink attribute for src IP and dumped in netlink reply (Florian Westphal) [1151756]
-- [net] tcp: metrics: Add source-address to tcp-metrics (Florian Westphal) [1151756]
-- [net] tcp: metrics: rename tcpm_addr to tcpm_daddr (Florian Westphal) [1151756]
-- [net] tcp: out_of_order_queue do not use its lock (Florian Westphal) [1151756]
-- [net] tcp: make local functions static (Florian Westphal) [1151756]
-- [net] tcp: autocork should not hold first packet in write queue (Florian Westphal) [1151756]
-- [net] tcp: refine TSO splits (Florian Westphal) [1151756]
-- [net] tcp: auto corking (Florian Westphal) [1151756]
-- [net] tcp: optimize some skb_shinfo(skb) uses (Florian Westphal) [1151756]
-- [net] tcp: properly handle stretch acks in slow start (Florian Westphal) [1151756]
-- [net] tcp: temporarily disable Fast Open on SYN timeout (Florian Westphal) [1151756]
-- [net] tcp: do not rearm RTO when future data are sacked (Florian Westphal) [1151756]
-- [net] tcp: only take RTT from timestamps if new data is acked (Florian Westphal) [1151756]
-- [net] tcp: fix SYNACK RTT estimation in Fast Open (Florian Westphal) [1151756]
-- [net] tcp: remove redundant code in __tcp_retransmit_skb() (Florian Westphal) [1151756]
-- [net] ipv4: shrink rt_cache_stat (Florian Westphal) [1151756]
-- [net] tcp: sndbuf autotuning improvements (Florian Westphal) [1151756]
-- [net] tcp: Always set options to 0 before calling tcp_established_options (Florian Westphal) [1151756]
-- [net] tcp: fix dynamic right sizing (Florian Westphal) [1151756]
-- [net] tcp: Remove extern from function prototypes (Florian Westphal) [1151756]
-- [net] tcp: fix RTO calculated from cached RTT (Florian Westphal) [1151756]
-- [net] tcp: properly increase rcv_ssthresh for ofo packets (Florian Westphal) [1151756]
-- [net] tcp: fix no cwnd growth after timeout (Florian Westphal) [1151756]
-- [net] tcp: better comments for RTO initiallization (Florian Westphal) [1151756]
-- [net] tcp: Change return value of tcp_rcv_established() (Florian Westphal) [1151756]
-- [net] tcp: do not use cached RTT for RTT estimation (Florian Westphal) [1151756]
-- [net] tcp: increase throughput when reordering is high (Florian Westphal) [1151756]
-- [net] tcp: trivial: Remove nocache argument from tcp_v4_send_synack (Florian Westphal) [1151756]
-- [net] tcp: reset reordering est. selectively on timeout (Florian Westphal) [1151756]
-- [net] tcp: add server ip to encrypt cookie in fast open (Florian Westphal) [1151756]
-- [net] ip: add SNMP counters tracking incoming ECN bits (Florian Westphal) [1151756]
-- [net] tcp: Remove unused tcpct declarations and comments (Florian Westphal) [1151756]
-- [net] tcp: TCP_NOTSENT_LOWAT socket option (Florian Westphal) [1151756]
-- [net] add sk_stream_is_writeable() helper (Florian Westphal) [1151756]
-- [net] fib_trie: potential out of bounds access in trie_show_stats() (Florian Westphal) [1151756]
-- [net] tcp: use RTT from SACK for RTO (Florian Westphal) [1151756]
-- [net] tcp: measure RTT from new SACK (Florian Westphal) [1151756]
-- [net] tcp: prefer packet timing to TS-ECR for RTT (Florian Westphal) [1151756]
-- [net] tcp: consolidate SYNACK RTT sampling (Florian Westphal) [1151756]
-- [net] tcp: account all retransmit failures (Florian Westphal) [1151756]
-- [net] ipv4: fix spacing in assignment (Florian Westphal) [1151756]
-- [net] net: sock: fix TCP_SKB_MIN_TRUESIZE (Florian Westphal) [1151756]
-- [net] tcp: remove invalid __rcu annotation (Florian Westphal) [1151756]
-- [net] ipv6: remove a useless pr_info() in addrconf_gre_config() (Florian Westphal) [1151756]
-- [net] inet_fragment: remove an empty ifdef (Florian Westphal) [1151756]
-- [net] tcp: typo unset should be unsent (Florian Westphal) [1151756]
-- [net] net: sock: adapt SOCK_MIN_RCVBUF and SOCK_MIN_SNDBUF (Florian Westphal) [1151756]
-- [net] tcp: properly send new data in fast recovery in first RTT (Florian Westphal) [1151756]
-- [net] udp: fix two sparse errors (Florian Westphal) [1151756]
-- [net] ipv4: Update RFS target at poll for tcp/udp (Florian Westphal) [1151756]
-- [net] tcp: undo on DSACK during recovery (Florian Westphal) [1151756]
-- [net] tcp: fix undo on partial ack in recovery (Florian Westphal) [1151756]
-- [net] tcp: refactor undo functions (Florian Westphal) [1151756]
-- [net] tcp: consolidate PRR packet accounting (Florian Westphal) [1151756]
-- [net] tcp: Remove 2 indentation levels in tcp_rcv_state_process (Florian Westphal) [1151756]
-- [net] tcp: Remove another indentation level in tcp_rcv_state_process (Florian Westphal) [1151756]
-- [net] tcp: remove one indentation level in tcp_rcv_state_process (Florian Westphal) [1151756]
-- [net] tcp: md5: remove spinlock usage in fast path (Florian Westphal) [1151756]
-- [net] tcp: remove bad timeout logic in fast recovery (Florian Westphal) [1151756]
-- [net] tcp: speedup tcp_fixup_rcvbuf() (Florian Westphal) [1151756]
-
-* Tue Apr 14 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-239.el7]
-- [fs] proc/task_mmu: bump kernelpagesize_kB to EOL in /proc/pid/numa_maps (Petr Holasek) [1071987]
-- [Documentation] filesystems/proc.txt: add /proc/pid/numa_maps interface explanation snippet (Petr Holasek) [1071987]
-- [fs] proc/task_mmu: show page size in /proc/<pid>/numa_maps (Petr Holasek) [1071987]
-- [mm] vmscan: use proportional scanning during direct reclaim and full scan at DEF_PRIORITY (Larry Woodman) [1178988]
-- [fs] superblock: avoid locking counting inodes and dentries before reclaiming them (Larry Woodman) [1178988]
-- [fs] superblock: unregister sb shrinker before ->kill_sb() (Larry Woodman) [1178988]
-- [mm] vmstat: Reduce time interval to stat update on idle cpu (Larry Woodman) [1157802]
-- [mm] vmstat: do not use deferrable delayed work for vmstat_update (Larry Woodman) [1157802]
-- [mm] vmstat: on-demand vmstat workers V8 (Larry Woodman) [1157802]
-- [mm] vmstat: use this_cpu() to avoid irqon/off sequence in refresh_cpu_vm_stats (Larry Woodman) [1157802]
-- [mm] vmstat: create fold_diff (Larry Woodman) [1157802]
-- [mm] vmstat: create separate function to fold per cpu diffs into local counters (Larry Woodman) [1157802]
-- [mm] msync: fix incorrect fstart calculation (Larry Woodman) [1172896]
-- [mm] msync: sync only the requested range in msync() (Larry Woodman) [1172896]
-- [drm] Missed clflushopt in drm_clflush_virt_range (Steve Best) [1170846]
-- [x86] cpufeature: If we disable CLFLUSH, we should disable CLFLUSHOPT (Steve Best) [1170846]
-- [x86] Use clflushopt in drm_clflush_virt_range (Steve Best) [1170846]
-- [x86] Use clflushopt in drm_clflush_page (Steve Best) [1170846]
-- [x86] Use clflushopt in clflush_cache_range (Steve Best) [1170846]
-- [x86] Add support for the clflushopt instruction (Steve Best) [1170846]
-- [x86] mm: register 1G page size if we can allocate them at runtime (Petr Holasek) [1197899]
-- [x86] kvm: insufficient sysenter emulation when invoked from 16-bit code (Jacob Tanenbaum) [1186452] {CVE-2015-0239}
-- [kernel] module: Clean up ro/nx after early module load failures (Pratyush Anand) [1202866]
-- [kernel] panic: add TAINT_SOFTLOCKUP (Aaron Tomlin) [1194353]
-- [kernel] watchdog: print traces for all cpus on lockup detection (Aaron Tomlin) [1194353]
-- [x86] nmi: provide the option to issue an NMI back trace to every cpu but current (Aaron Tomlin) [1194353]
-- [kernel] Use 'E' instead of 'X' for unsigned module taint flag (Jiri Olsa) [1179759]
-- [kernel] fix module signature vs tracepoints add new TAINT_UNSIGNED_MODULE (Jiri Olsa) [1179759]
-- [kernel] kvm: rcu: nohz: use RCU extended quiescent state when running KVM guest (Rik van Riel) [1194681]
-- [kernel] context_tracking: Export context_tracking_user_enter/exit (Rik van Riel) [1194681]
-- [kernel] context_tracking: Run vtime_user_enter/exit only when state == CONTEXT_USER (Rik van Riel) [1194681]
-- [kernel] context_tracking: Add stub context_tracking_is_enabled (Rik van Riel) [1194681]
-- [kernel] context_tracking: Generalize context tracking APIs to support user and guest (Rik van Riel) [1194681]
-- [kernel] context_tracking: Rename context symbols to prepare for transition state (Rik van Riel) [1194681]
-- [kernel] context_tracking: Restore previous state in schedule_user (Rik van Riel) [1194681]
-- [powerpc] Remove unused cpp symbols in kvm headers (Rik van Riel) [1194681]
-- [kernel] context_tracking: Rename context_tracking_active() to context_tracking_cpu_is_enabled() (Rik van Riel) [1194681]
-- [kernel] context_tracking: Wrap static key check into more intuitive function name (Rik van Riel) [1194681]
-- [kernel] arm: Fix build error with context tracking calls (Rik van Riel) [1194681]
-- [kernel] irq_work: Remove BUG_ON in irq_work_run() (Jan Stancek) [1210986]
-- [kernel] rcu: Remove "Experimental" flags (Prarit Bhargava) [1182093]
-
-* Fri Apr 10 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-238.el7]
-- [md] dm-snapshot: suspend merging snapshot when doing exception handover (Mike Snitzer) [1205955]
-- [md] dm-snapshot: suspend origin when doing exception handover (Mike Snitzer) [1205955]
-- [md] dm-snapshot: allocate a per-target structure for snapshot-origin target (Mike Snitzer) [1205955]
-- [md] dm-crypt: sort writes (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: add 'submit_from_crypt_cpus' option (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: offload writes to thread (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: remove unused io_pool and _crypt_io_pool (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: avoid deadlock in mempools (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: don't allocate pages for a partial request (Mike Snitzer) [1205955 752438]
-- [md] dm-crypt: use unbound workqueue for request processing (Mike Snitzer) [1205955 752438]
-- [md] dm: fix add_disk() NULL pointer due to race with free_dev() (Mike Snitzer) [1205955]
-- [md] dm-io: deal with wandering queue limits when handling REQ_DISCARD and REQ_WRITE_SAME (Mike Snitzer) [1205955]
-- [md] dm: hold suspend_lock while suspending device during device deletion (Mike Snitzer) [1205955]
-- [md] dm-thin: fix to consistently zero-fill reads to unprovisioned blocks (Mike Snitzer) [1205955]
-- [md] dm-snapshot: fix a possible invalid memory access on unload (Mike Snitzer) [1205955]
-- [md] dm: fix a race condition in dm_get_md (Mike Snitzer) [1205955]
-- [md] dm-io: reject unsupported DISCARD requests with EOPNOTSUPP (Mike Snitzer) [1205955]
-- [md] dm-mirror: do not degrade the mirror on discard error (Mike Snitzer) [1205955]
-- [md] dm-space-map-disk: fix sm_disk_count_is_more_than_one() (Mike Snitzer) [1205955]
-- [md] dm: inherit QUEUE_FLAG_SG_GAPS flags from underlying queues (Mike Snitzer) [1205955]
-- [md] dm-snapshot: remove unnecessary NULL checks before vfree() calls (Mike Snitzer) [1205955]
-- [md] dm-mpath: simplify failure path of dm_multipath_init() (Mike Snitzer) [1205955]
-- [md] dm-thin-metadata: remove unused dm_pool_get_data_block_size() (Mike Snitzer) [1205955]
-- [md] dm-ioctl: fix stale comment above dm_get_inactive_table() (Mike Snitzer) [1205955]
-- [md] dm-crypt: update url in CONFIG_DM_CRYPT help text (Mike Snitzer) [1205955]
-- [md] dm-bufio: fix time comparison to use time_after_eq() (Mike Snitzer) [1205955]
-- [md] dm: use time_in_range() and time_after() (Mike Snitzer) [1205955]
-- [md] dm-raid: fix a couple integer overflows (Mike Snitzer) [1205955]
-- [md] dm-table: train hybrid target type detection to select blk-mq if appropriate (Mike Snitzer) [1205955]
-- [md] dm: allocate requests in target when stacking on blk-mq devices (Mike Snitzer) [1205955]
-- [md] dm: prepare for allocating blk-mq clone requests in target (Mike Snitzer) [1205955]
-- [md] dm: submit stacked requests in irq enabled context (Mike Snitzer) [1205955]
-- [md] dm: split request structure out from dm_rq_target_io structure (Mike Snitzer) [1205955]
-- [md] dm: remove exports for request-based interfaces without external callers (Mike Snitzer) [1205955]
-- [md] block: mark blk-mq devices as stackable (Mike Snitzer) [1205955]
-- [md] block: keep established cmd_flags when cloning into a blk-mq request (Mike Snitzer) [1205955]
-- [md] block: add blk-mq support to blk_insert_cloned_request() (Mike Snitzer) [1205955]
-- [md] dm: fix multipath regression due to initializing wrong request (Mike Snitzer) [1205955]
-- [md] block: require blk_rq_prep_clone() be given an initialized clone request (Mike Snitzer) [1205955]
-- [md] dm: fix handling of multiple internal suspends (Mike Snitzer) [1205955]
-- [md] dm: fix missed error code if .end_io isn't implemented by target_type (Mike Snitzer) [1205955]
-- [md] dm-crypt: use memzero_explicit for on-stack buffer (Mike Snitzer) [1205955]
-- [md] lib: memzero_explicit: add comment for its usage (Mike Snitzer) [1205955]
-- [md] random: add and use memzero_explicit() for clearing data (Mike Snitzer) [1205955]
-- [md] crypto: define OPTIMIZER_HIDE_VAR for future use in memzero_explicit (Mike Snitzer) [1205955]
-- [md] dm-space-map-metadata: fix sm_bootstrap_get_count() (Mike Snitzer) [1205955]
-- [md] dm-space-map-metadata: fix sm_bootstrap_get_nr_blocks() (Mike Snitzer) [1205955]
-- [md] dm-stripe: fix potential for leak in stripe_ctr error path (Mike Snitzer) [1205955]
-- [md] dm-log-userspace: fix memory leak in dm_ulog_tfr_init failure path (Mike Snitzer) [1205955]
-- [md] dm-raid: fix inaccessible superblocks causing oops in configure_discard_support (Mike Snitzer) [1205955]
-- [md] dm-raid: add discard support for RAID levels 4, 5 and 6 (Mike Snitzer) [1205955]
-- [md] dm-raid: add discard support for RAID levels 1 and 10 (Mike Snitzer) [1205955]
-- [md] dm-switch: efficiently support repetitive patterns (Mike Snitzer) [1205955]
-- [md] dm-switch: factor out switch_region_table_read (Mike Snitzer) [1205955]
-- [md] dm-table: fix RHEL7 inconsistency with location of dm_table_run_md_queue_async (Mike Snitzer) [1205955]
-- [md] dm-mpath: fix stalls when handling invalid ioctls (Mike Snitzer) [1205955]
-- [tty] fix kABI broken by introduction of ldisc_sem (Aristeu Rozanski) [1183479]
-- [tty] Fix hang at ldsem_down_read() (Aristeu Rozanski) [1183479]
-- [tty] Replace ldisc locking with ldisc_sem (Aristeu Rozanski) [1183479]
-- [tty] Add lock/unlock ldisc pair functions (Aristeu Rozanski) [1183479]
-- [tty] Fix tty_ldisc_lock name collision (Aristeu Rozanski) [1183479]
-- [tty] n_tty: Buffer work should not reschedule itself (Aristeu Rozanski) [1183479]
-- [tty] n_tty: Fix unsafe update of available buffer space (Aristeu Rozanski) [1183479]
-- [tty] n_tty: Untangle read completion variables (Aristeu Rozanski) [1183479]
-- [tty] n_tty: Encapsulate minimum_to_wake within N_TTY (Aristeu Rozanski) [1183479]
-- [tty] Add timed, writer-prioritized rw semaphore (Aristeu Rozanski) [1183479]
-- [tty] Remove TTY_HW_COOK_IN/OUT (Aristeu Rozanski) [1183479]
-- [char] random: account for entropy loss due to overwrites (Herbert Xu) [1110044]
-- [char] random: allow fractional bits to be tracked (Herbert Xu) [1110044]
-- [char] random: statically compute poolbitshift, poolbytes, poolbits (Herbert Xu) [1110044]
-- [kernel] jiffies: Fix timeval conversion to jiffies (George Beshers) [1182693]
-- [kernel] timekeeping: Update timekeeper before updating vsyscall and pvclock (George Beshers) [1182693]
-- [kernel] timekeeping: Provide internal ktime_t based data (George Beshers) [1182693]
-- [kernel] irq_work: Force raised irq work to run on irq work interrupt (George Beshers) [1182693]
-- [kernel] irq_work: Introduce arch_irq_work_has_interrupt() (George Beshers) [1182693]
-- [kernel] nohz: Restore NMI safe local irq work for local nohz kick (George Beshers) [1182693]
-- [kernel] nohz: Avoid tick's double reprogramming in highres mode (George Beshers) [1182693]
-- [kernel] nohz: Fix spurious periodic tick behaviour in low-res dynticks mode (George Beshers) [1182693]
-- [kernel] nohz: Support nohz full remote kick (George Beshers) [1182693]
-- [kernel] irq_work: Implement remote queueing (George Beshers) [1182693]
-- [kernel] irq_work: Split raised and lazy lists (George Beshers) [1182693]
-- [kernel] tick-sched: Check tick_nohz_enabled in tick_nohz_switch_to_nohz() (George Beshers) [1182693]
-- [kernel] tick-sched: Don't call update_wall_time() when delta is lesser than tick_period (George Beshers) [1182693]
-- [kernel] nohz: Get timekeeping max deferment outside jiffies_lock (George Beshers) [1182693]
-- [kernel] sched/clock, x86: Avoid a runtime condition in native_sched_clock() (George Beshers) [1182693]
-- [kernel] nohz_full: fix code style issue of tick_nohz_full_stop_tick (George Beshers) [1182693]
-- [kernel] sched/clock, x86: Use a static_key for sched_clock_stable (George Beshers) [1182693]
-- [kernel] sched/clock: Remove local_irq_disable() from the clocks (George Beshers) [1182693]
-- [x86] perf: Clean up cap_user_time setting (George Beshers) [1182693]
-- [kernel] timekeeping: Call update_wall_time outside the jiffies lock (George Beshers) [1182693]
-- [kernel] timekeeping: Avoid possible deadlock from clock_was_set_delayed (George Beshers) [1182693]
-- [kernel] timekeeping: Fix lost updates to tai adjustment (George Beshers) [1182693]
-- [kernel] timekeeping: Fix potential lost pv notification of time change (George Beshers) [1182693]
-- [kernel] timekeeping: Indicate that clock was set in the pvclock gtod notifier (George Beshers) [1182693]
-- [kernel] timekeeping: Pass flags instead of multiple bools to timekeeping_update() (George Beshers) [1182693]
-- [kernel] nohz: Convert a few places to use local per cpu accesses (George Beshers) [1182693]
-- [kernel] nohz: Check for nohz active instead of nohz enabled (George Beshers) [1182693]
-- [crypto] sha-mb: sha1_mb_alg_state can be static (Herbert Xu) [1173756]
-- [crypto] mcryptd: mcryptd_flist can be static (Herbert Xu) [1173756]
-- [crypto] sha-mb: SHA1 multibuffer job manager and glue code (Herbert Xu) [1173756]
-- [crypto] sha-mb: SHA1 multibuffer crypto computation (x8 AVX2) (Herbert Xu) [1173756]
-- [crypto] sha-mb: SHA1 multibuffer submit and flush routines for AVX2 (Herbert Xu) [1173756]
-- [crypto] sha-mb: SHA1 multibuffer algorithm data structures (Herbert Xu) [1173756]
-- [crypto] sha-mb: multibuffer crypto infrastructure (Herbert Xu) [1173756]
-- [kernel] sched: Add function single_task_running to let a task check if it is the only task running on a cpu (Herbert Xu) [1173756]
-- [crypto] ahash: initialize entry len for null input in crypto hash sg list walk (Herbert Xu) [1173756]
-- [crypto] ahash: Add real ahash walk interface (Herbert Xu) [1173756]
-- [crypto] x86: sha256_ssse3 - also test for BMI2 (Herbert Xu) [1201563]
-- [crypto] x86: sha1 - reduce size of the AVX2 asm implementation (Herbert Xu) [1177968]
-- [crypto] x86: sha1 - fix stack alignment of AVX2 variant (Herbert Xu) [1177968]
-- [crypto] x86: sha1 - re-enable the AVX variant (Herbert Xu) [1177968]
-- [crypto] sha: SHA1 transform x86_64 AVX2 (Herbert Xu) [1177968]
-- [crypto] testmgr: fix RNG return code enforcement (Herbert Xu) [1198978]
-
-* Tue Apr 07 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-237.el7]
-- [fs] btrfs: simplify insert_orphan_item (Eric Sandeen) [1205873]
-- [fs] btrfs: __add_inode_ref out of bounds memory read when looking for extended ref (Eric Sandeen) [1205873]
-- [fs] btrfs: fix data loss in the fast fsync path (Eric Sandeen) [1205873]
-- [fs] btrfs: fix lost return value due to variable shadowing (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fsync race leading to ordered extent memory leaks (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fsync data loss after adding hard link to inode (Eric Sandeen) [1205873]
-- [fs] btrfs: fix leak of path in btrfs_find_item (Eric Sandeen) [1205873]
-- [fs] btrfs: set proper message level for skinny metadata (Eric Sandeen) [1205873]
-- [fs] btrfs: add missing blk_finish_plug in btrfs_sync_log() (Eric Sandeen) [1205873]
-- [fs] btrfs: fix raid56 scrub failed in xfstests btrfs/072 (Eric Sandeen) [1205873]
-- [fs] btrfs: Don't call btrfs_start_transaction() on frozen fs to avoid deadlock (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix the bug that fs_info->pending_changes is never cleared (Eric Sandeen) [1205873]
-- [fs] btrfs: fix state->private cast on 32 bit machines (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race deleting block group from space_info->ro_bgs list (Eric Sandeen) [1205873]
-- [fs] btrfs: fix incorrect freeing in scrub_stripe (Eric Sandeen) [1205873]
-- [fs] btrfs: sync ioctl, handle errors after transaction start (Eric Sandeen) [1205873]
-- [fs] btrfs: don't delay inode ref updates during log replay (Eric Sandeen) [1205873]
-- [fs] btrfs: correctly get tree level in tree_backref_for_extent (Eric Sandeen) [1205873]
-- [fs] btrfs: call inode_dec_link_count() on mkdir error path (Eric Sandeen) [1205873]
-- [fs] btrfs: abort transaction if we don't find the block group (Eric Sandeen) [1205873]
-- [fs] btrfs, scrub: uninitialized variable in scrub_extent_for_parity() (Eric Sandeen) [1205873]
-- [fs] btrfs: filp_open() returns ERR_PTR() on failure, not NULL (Eric Sandeen) [1205873]
-- [fs] btrfs: remove non-sense btrfs_error_discard_extent() function (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fs corruption on transaction abort if device supports discard (Eric Sandeen) [1205873]
-- [fs] btrfs: always clear a block group node when removing it from the tree (Eric Sandeen) [1205873]
-- [fs] btrfs: ensure deletion from pinned_chunks list is protected (Eric Sandeen) [1205873]
-- [fs] btrfs: make get_caching_control unconditionally return the ctl (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected deletion from pending_chunks list (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fs mapping extent map leak (Eric Sandeen) [1205873]
-- [fs] btrfs: fix memory leak after block remove + trimming (Eric Sandeen) [1205873]
-- [fs] btrfs: make btrfs_abort_transaction consider existence of new block groups (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race between writing free space cache and trimming (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race between fs trimming and block group remove/allocation (Eric Sandeen) [1205873]
-- [fs] btrfs, replace: enable dev-replace for raid56 (Eric Sandeen) [1205873]
-- [fs] btrfs: fix freeing used extents after removing empty block group (Eric Sandeen) [1205873]
-- [fs] btrfs: fix crash caused by block group removal (Eric Sandeen) [1205873]
-- [fs] btrfs: fix invalid block group rbtree access after bg is removed (Eric Sandeen) [1205873]
-- [fs] btrfs, raid56: fix use-after-free problem in the final device replace procedure on raid56 (Eric Sandeen) [1205873]
-- [fs] btrfs, replace: write raid56 parity into the replace target device (Eric Sandeen) [1205873]
-- [fs] btrfs, replace: write dirty pages into the replace target device (Eric Sandeen) [1205873]
-- [fs] btrfs, raid56: support parity scrub on raid56 (Eric Sandeen) [1205873]
-- [fs] btrfs, raid56: use a variant to record the operation type (Eric Sandeen) [1205873]
-- [fs] btrfs, scrub: repair the common data on RAID5/6 if it is corrupted (Eric Sandeen) [1205873]
-- [fs] btrfs, raid56: don't change bbio and raid_map (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unnecessary code of stripe_index assignment in __btrfs_map_block (Eric Sandeen) [1205873]
-- [fs] btrfs: remove noused bbio_ret in __btrfs_map_block in condition (Eric Sandeen) [1205873]
-- [fs] btrfs: zero out left over bytes after processing compression streams (Eric Sandeen) [1205873]
-- [fs] btrfs: fix snapshot inconsistency after a file write followed by truncate (Eric Sandeen) [1205873]
-- [fs] Add wait_on_atomic_t() and wake_up_atomic_t() (Eric Sandeen) [1205873]
-- [fs] btrfs: ensure send always works on roots without orphans (Eric Sandeen) [1205873]
-- [fs] btrfs: fix freeing used extent after removing empty block group (Eric Sandeen) [1205873]
-- [fs] btrfs: include vmalloc.h in check-integrity.c (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix a lockdep warning when running xfstest (Eric Sandeen) [1205873]
-- [fs] btrfs: ensure ordered extent errors aren't missed on fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: collect only the necessary ordered extents on ranged fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: don't ignore log btree writeback errors (Eric Sandeen) [1205873]
-- [fs] btrfs: do not move em to modified list when unpinning (Eric Sandeen) [1205873]
-- [fs] btrfs: make sure logged extents complete in the current transaction V3 (Eric Sandeen) [1205873]
-- [fs] btrfs: make sure we wait on logged extents when fsycning two subvols (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong accounting of raid1 data profile in statfs (Eric Sandeen) [1205873]
-- [fs] btrfs: fix dead lock while running replace and defrag concurrently (Eric Sandeen) [1205873]
-- [fs] btrfs: make xattr replace operations atomic (Eric Sandeen) [1205873]
-- [fs] btrfs: avoid premature -ENOMEM in clear_extent_bit() (Eric Sandeen) [1205873]
-- [fs] btrfs: don't take the chunk_mutex/dev_list mutex in statfs V2 (Eric Sandeen) [1205873]
-- [fs] btrfs: move read only block groups onto their own list V2 (Eric Sandeen) [1205873]
-- [fs] btrfs: fix typos in btrfs_check_super_valid (Eric Sandeen) [1205873]
-- [fs] btrfs: check-int: don't complain about balanced blocks (Eric Sandeen) [1205873]
-- [fs] btrfs: check_int: use the known block location (Eric Sandeen) [1205873]
-- [fs] btrfs: avoid returning -ENOMEM in convert_extent_bit() too early (Eric Sandeen) [1205873]
-- [fs] btrfs: make find_first_extent_bit be able to cache any state (Eric Sandeen) [1205873]
-- [fs] btrfs: deal with convert_extent_bit errors to avoid fs corruption (Eric Sandeen) [1205873]
-- [fs] btrfs: return failure if btrfs_dev_replace_finishing() failed (Eric Sandeen) [1205873]
-- [fs] btrfs: fix allocationg memory failure for btrfsic_state structure (Eric Sandeen) [1205873]
-- [fs] btrfs: report error after failure inlining extent in compressed write path (Eric Sandeen) [1205873]
-- [fs] btrfs: add helper btrfs_fdatawrite_range (Eric Sandeen) [1205873]
-- [fs] btrfs: correctly flush compressed data before/after direct IO (Eric Sandeen) [1205873]
-- [fs] btrfs: make inode.c:compress_file_range() return void (Eric Sandeen) [1205873]
-- [fs] btrfs: fix incorrect compression ratio detection (Eric Sandeen) [1205873]
-- [fs] btrfs: don't ignore compressed bio write errors (Eric Sandeen) [1205873]
-- [fs] btrfs: make inode.c:submit_compressed_extents() return void (Eric Sandeen) [1205873]
-- [fs] btrfs: process all async extents on compressed write failure (Eric Sandeen) [1205873]
-- [fs] btrfs: don't leak pages and memory on compressed write error (Eric Sandeen) [1205873]
-- [fs] btrfs: fix hang on compressed write error (Eric Sandeen) [1205873]
-- [fs] btrfs: set page and mapping error on compressed write failure (Eric Sandeen) [1205873]
-- [fs] btrfs: fix lockups from btrfs_clear_path_blocking (Eric Sandeen) [1205873]
-- [fs] btrfs: get rid of f_dentry use (Eric Sandeen) [1205873]
-- [fs] btrfs: move commit out of sysfs when changing label (Eric Sandeen) [1205873]
-- [fs] btrfs: move commit out of sysfs when changing features (Eric Sandeen) [1205873]
-- [fs] btrfs: introduce pending action: commit (Eric Sandeen) [1205873]
-- [fs] btrfs: switch inode_cache option handling to pending changes (Eric Sandeen) [1205873]
-- [fs] btrfs: do commit in sync_fs if there are pending changes (Eric Sandeen) [1205873]
-- [fs] btrfs: add support for processing pending changes (Eric Sandeen) [1205873]
-- [fs] btrfs: fix kfree on list_head in btrfs_lookup_csums_range error cleanup (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race that makes btrfs_lookup_extent_info miss skinny extent items (Eric Sandeen) [1205873]
-- [fs] btrfs: properly clean up btrfs_end_io_wq_cache (Eric Sandeen) [1205873]
-- [fs] btrfs: fix invalid leaf slot access in btrfs_lookup_extent() (Eric Sandeen) [1205873]
-- [fs] btrfs: use macro accessors in superblock validation checks (Eric Sandeen) [1205873]
-- [fs] revert "btrfs: race free update of commit root for ro snapshots" (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix compile error when CONFIG_SECURITY is not set (Eric Sandeen) [1205873]
-- [fs] btrfs: Make btrfs handle security mount options internally to avoid losing security label (Eric Sandeen) [1205873]
-- [fs] btrfs: send, don't delay dir move if there's a new parent inode (Eric Sandeen) [1205873]
-- [fs] btrfs: add more superblock checks (Eric Sandeen) [1205873]
-- [fs] btrfs: fix race in WAIT_SYNC ioctl (Eric Sandeen) [1205873]
-- [fs] btrfs: be aware of btree inode write errors to avoid fs corruption (Eric Sandeen) [1205873]
-- [fs] btrfs: remove redundant btrfs_verify_qgroup_counts declaration (Eric Sandeen) [1205873]
-- [fs] btrfs: fix shadow warning on cmp (Eric Sandeen) [1205873]
-- [fs] btrfs: fix compilation errors under DEBUG (Eric Sandeen) [1205873]
-- [fs] btrfs: fix crash of btrfs_release_extent_buffer_page (Eric Sandeen) [1205873]
-- [fs] btrfs: add missing end_page_writeback on submit_extent_page failure (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix the wrong condition judgment about subset extent map (Eric Sandeen) [1205873]
-- [fs] btrfs: fix build_backref_tree issue with multiple shared blocks (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup error handling in build_backref_tree (Eric Sandeen) [1205873]
-- [fs] btrfs: move checks for DUMMY_ROOT into a helper (Eric Sandeen) [1205873]
-- [fs] btrfs: new define for the inline extent data start (Eric Sandeen) [1205873]
-- [fs] btrfs: kill extent_buffer_page helper (Eric Sandeen) [1205873]
-- [fs] btrfs: drop constant param from btrfs_release_extent_buffer_page (Eric Sandeen) [1205873]
-- [fs] btrfs: hide typecast to definition of BTRFS_SEND_TRANS_STUB (Eric Sandeen) [1205873]
-- [fs] btrfs: let merge_reloc_roots return void (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused members from struct scrub_warning (Eric Sandeen) [1205873]
-- [fs] btrfs: use slab for end_io_wq structures (Eric Sandeen) [1205873]
-- [fs] btrfs: fix error labels in init_btrfs_fs (Eric Sandeen) [1205873]
-- [fs] btrfs: use enum for wq endio metadata type (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused extent state bits (Eric Sandeen) [1205873]
-- [fs] btrfs: set default max_inline to 8KiB instead of 8MiB (Eric Sandeen) [1205873]
-- [fs] btrfs: remove blocksize from btrfs_alloc_free_block and rename (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused parameter blocksize from btrfs_find_tree_block (Eric Sandeen) [1205873]
-- [fs] btrfs: remove parameter blocksize from read_tree_block (Eric Sandeen) [1205873]
-- [fs] btrfs: inline code of reada_tree_block and remove it (Eric Sandeen) [1205873]
-- [fs] btrfs: return void from readahead_tree_block (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused parameter from readahead_tree_block (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unlikely from data-dependent branches and slow paths (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unlikely from NULL checks (Eric Sandeen) [1205873]
-- [fs] btrfs: remove unused variable from btrfs_parse_options (Eric Sandeen) [1205873]
-- [fs] btrfs: defrag, use unsigned type for extent thresh (Eric Sandeen) [1205873]
-- [fs] btrfs: try not to ENOSPC on log replay (Eric Sandeen) [1205873]
-- [fs] btrfs: don't do async reclaim during log replay (Eric Sandeen) [1205873]
-- [fs] btrfs: remove empty block groups automatically (Eric Sandeen) [1205873]
-- [fs] btrfs: fix data corruption after fast fsync and writeback error (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fsync race leading to invalid data after log replay (Eric Sandeen) [1205873]
-- [fs] revert "btrfs: device_list_add() should not update list when mounted" (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix and enhance merge_extent_mapping() to insert best fitted extent map (Eric Sandeen) [1205873]
-- [fs] btrfs: fix up bounds checking in lseek (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup the read failure record after write or when the inode is freeing (Eric Sandeen) [1205873]
-- [fs] btrfs: implement repair function when direct read fails (Eric Sandeen) [1205873]
-- [fs] btrfs: Set real mirror number for read operation on RAID0/5/6 (Eric Sandeen) [1205873]
-- [fs] btrfs: modify clean_io_failure and make it suit direct io (Eric Sandeen) [1205873]
-- [fs] btrfs: modify repair_io_failure and make it suit direct io (Eric Sandeen) [1205873]
-- [fs] btrfs: split bio_readpage_error into several functions (Eric Sandeen) [1205873]
-- [fs] btrfs: Cleanup unused variant and argument of IO failure handlers (Eric Sandeen) [1205873]
-- [fs] btrfs: fix missing error handler if submiting re-read bio fails (Eric Sandeen) [1205873]
-- [fs] btrfs: do file data check by sub-bio's self (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup similar code of the buffered data data check and dio read data check (Eric Sandeen) [1205873]
-- [fs] btrfs: Convert various code to bio_for_each_segment() (Eric Sandeen) [1205873]
-- [fs] btrfs: load checksum data once when submitting a direct read io (Eric Sandeen) [1205873]
-- [fs] btrfs: modify rw_devices counter under chunk_mutex context (Eric Sandeen) [1205873]
-- [fs] btrfs: move the missing device to its own fs device list (Eric Sandeen) [1205873]
-- [fs] btrfs: stop mounting the fs if the non-ENOENT errors happen when opening seed fs (Eric Sandeen) [1205873]
-- [fs] btrfs: make the logic of source device removing more clear (Eric Sandeen) [1205873]
-- [fs] btrfs: fix use-after-free problem of the device during device replace (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected device list access when cloning fs devices (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix misuse of chunk mutex (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected device list access when getting the fs information (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected system chunk array insertion (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected device's variants on 32bits machine (Eric Sandeen) [1205873]
-- [fs] btrfs: update free_chunk_space during allocting a new chunk (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected device->bytes_used update (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix wrong free_chunk_space assignment during removing a device (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong device bytes_used in the super block (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong disk size when writing super blocks (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unprotected assignment of the target device (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup double assignment of device->bytes_used when device replace finishes (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup unused num_can_discard in fs_devices (Eric Sandeen) [1205873]
-- [fs] btrfs: remove the wrong comments (Eric Sandeen) [1205873]
-- [fs] btrfs: fix directory recovery from fsync log (Eric Sandeen) [1205873]
-- [fs] btrfs: fix loop writing of async reclaim (Eric Sandeen) [1205873]
-- [fs] btrfs: make fiemap not blow when you have lots of snapshots (Eric Sandeen) [1205873]
-- [fs] btrfs: add missing compression property remove in btrfs_ioctl_setflags (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix a deadlock in btrfs_dev_replace_finishing() (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup the same name in end_bio_extent_readpage (Eric Sandeen) [1205873]
-- [fs] btrfs: don't go readonly on existing qgroup items (Eric Sandeen) [1205873]
-- [fs] btrfs: shrink further sizeof(struct extent_buffer) (Eric Sandeen) [1205873]
-- [fs] btrfs: send, lower mem requirements for processing xattrs (Eric Sandeen) [1205873]
-- [fs] btrfs: remove stale define after removing ordered operations (Eric Sandeen) [1205873]
-- [fs] btrfs: improve free space cache management and space allocation (Eric Sandeen) [1205873]
-- [fs] btrfs: rename total_bytes to avoid confusion (Eric Sandeen) [1205873]
-- [fs] btrfs: fix typo in the log message (Eric Sandeen) [1205873]
-- [fs] btrfs: rw_devices shouldn't be incremented for seed fs in btrfs_rm_dev_replace_srcdev() (Eric Sandeen) [1205873]
-- [fs] btrfs: fix memory leak when there is no more seed device (Eric Sandeen) [1205873]
-- [fs] btrfs: update sprout seed pointer when seed fs is relinquished (Eric Sandeen) [1205873]
-- [fs] btrfs: fix rw_devices miss match after seed replace (Eric Sandeen) [1205873]
-- [fs] btrfs: replace seed device followed by unmount causes kernel WARNING (Eric Sandeen) [1205873]
-- [fs] btrfs: preparatory to make btrfs_rm_dev_replace_srcdev() seed aware (Eric Sandeen) [1205873]
-- [fs] btrfs: Drop stray check of fixup_workers creation (Eric Sandeen) [1205873]
-- [fs] btrfs: make btrfs_search_forward return with nodes unlocked (Eric Sandeen) [1205873]
-- [fs] btrfs: sysfs label interface should check for read only FS (Eric Sandeen) [1205873]
-- [fs] btrfs: code optimize: BTRFS_ATTR_RW could set the mode (Eric Sandeen) [1205873]
-- [fs] btrfs: code optimize: BTRFS_ATTR could handle the mode (Eric Sandeen) [1205873]
-- [fs] btrfs: use BTRFS_ATTR instead of btrfs_no_store() (Eric Sandeen) [1205873]
-- [fs] btrfs: avoid unnecessary switch of path locks to blocking mode (Eric Sandeen) [1205873]
-- [fs] btrfs: unlock nodes earlier when inserting items in a btree (Eric Sandeen) [1205873]
-- [fs] btrfs: use IS_ALIGNED() for assertion in btrfs_lookup_csums_range() for simplicity (Eric Sandeen) [1205873]
-- [fs] btrfs: add trace for qgroup accounting (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup unused latest_devid and latest_trans in fs_devices (Eric Sandeen) [1205873]
-- [fs] btrfs: update the comment of total_bytes and disk_total_bytes of btrfs_devie (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix the problem that the dirty flag of dev stats is cleared (Eric Sandeen) [1205873]
-- [fs] btrfs: make the device lock and its protected data in the same cacheline (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong generation check of super block on a seed device (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong fsid check of scrub (Eric Sandeen) [1205873]
-- [fs] btrfs: wake up transaction thread from SYNC_FS ioctl (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong max inline data size limit (Eric Sandeen) [1205873]
-- [fs] btrfs: fix off-by-one in cow_file_range_inline() (Eric Sandeen) [1205873]
-- [fs] btrfs: fall into nocompression codes quickly if possible (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong skipping compression for an inode (Eric Sandeen) [1205873]
-- [fs] btrfs: fix sparse warning (Eric Sandeen) [1205873]
-- [fs] btrfs: use BUG_ON (Eric Sandeen) [1205873]
-- [fs] btrfs compression: merge inflate and deflate z_streams (Eric Sandeen) [1205873]
-- [fs] btrfs: set error return value in btrfs_get_blocks_direct (Eric Sandeen) [1205873]
-- [fs] btrfs: reduce size of struct extent_state (Eric Sandeen) [1205873]
-- [fs] btrfs: use PTR_ERR_OR_ZERO (Eric Sandeen) [1205873]
-- [fs] btrfs: print btrfs specific info for some fatal error cases (Eric Sandeen) [1205873]
-- [fs] btrfs: fix writing data into the seed filesystem (Eric Sandeen) [1205873]
-- [fs] btrfs: make defragment work with nodatacow option (Eric Sandeen) [1205873]
-- [fs] btrfs: label should not contain return char (Eric Sandeen) [1205873]
-- [fs] btrfs: device delete must be sysloged (Eric Sandeen) [1205873]
-- [fs] btrfs: device add must be sysloged (Eric Sandeen) [1205873]
-- [fs] btrfs: clear compress-force when remounting with compress option (Eric Sandeen) [1205873]
-- [fs] btrfs: use DIV_ROUND_UP instead of open-coded variants (Eric Sandeen) [1205873]
-- [fs] btrfs: clean away stripe_align helper (Eric Sandeen) [1205873]
-- [fs] btrfs: use nodesize everywhere, kill leafsize (Eric Sandeen) [1205873]
-- [fs] btrfs: kill the key type accessor helpers (Eric Sandeen) [1205873]
-- [fs] btrfs: make close_ctree return void (Eric Sandeen) [1205873]
-- [fs] btrfs: cleanup ino cache members of btrfs_root (Eric Sandeen) [1205873]
-- [fs] btrfs: clenaup: don't call btrfs_release_path before free_path (Eric Sandeen) [1205873]
-- [fs] btrfs: remove obsolete comment in btrfs_clean_one_deleted_snapshot (Eric Sandeen) [1205873]
-- [fs] btrfs: set inode's logged_trans/last_log_commit after ranged fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: use insert_inode_locked4 for inode creation (Eric Sandeen) [1205873]
-- [fs] btrfs: fix fsync data loss after a ranged fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: kfree()ing ERR_PTRs (Eric Sandeen) [1205873]
-- [fs] btrfs: fix crash while doing a ranged fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: fix corruption after write/fsync failure + fsync + log recovery (Eric Sandeen) [1205873]
-- [fs] btrfs: fix autodefrag with compression (Eric Sandeen) [1205873]
-- [fs] fs/btrfs/tree-log.c: Fix closing brace followed by if (Eric Sandeen) [1205873]
-- [fs] btrfs: fix task hang under heavy compressed write (Eric Sandeen) [1205873]
-- [fs] btrfs: fix filemap_flush call in btrfs_file_release (Eric Sandeen) [1205873]
-- [fs] btrfs: fix crash on endio of reading corrupted block (Eric Sandeen) [1205873]
-- [fs] btrfs: fix leak in qgroup_subtree_accounting() error path (Eric Sandeen) [1205873]
-- [fs] btrfs: Use right extent length when inserting overlap extent map (Eric Sandeen) [1205873]
-- [fs] btrfs: clone, don't create invalid hole extent map (Eric Sandeen) [1205873]
-- [fs] btrfs: don't monopolize a core when evicting inode (Eric Sandeen) [1205873]
-- [fs] btrfs: fix hole detection during file fsync (Eric Sandeen) [1205873]
-- [fs] btrfs: race free update of commit root for ro snapshots (Eric Sandeen) [1205873]
-- [fs] btrfs: don't consider the missing device when allocating new chunks (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix wrong device size when we are resizing the device (Eric Sandeen) [1205873]
-- [fs] btrfs: don't write any data into a readonly device when scrub (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix the problem that the replace destroys the seed filesystem (Eric Sandeen) [1205873]
-- [fs] btrfs: Return right extent when fiemap gives unaligned offset and len (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong extent mapping for DirectIO (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong write range for filemap_fdatawrite_range() (Eric Sandeen) [1205873]
-- [fs] btrfs: fix wrong missing device counter decrease (Eric Sandeen) [1205873]
-- [fs] btrfs: fix unzeroed members in fs_devices when creating a fs from seed fs (Eric Sandeen) [1205873]
-- [fs] btrfs: check generation as replace duplicates devid+uuid (Eric Sandeen) [1205873]
-- [fs] btrfs: device_list_add() should not update list when mounted (Eric Sandeen) [1205873]
-- [fs] btrfs: fill_holes: Fix slot number passed to hole_mergeable() call (Eric Sandeen) [1205873]
-- [fs] btrfs: fix put dio bio twice when we submit dio bio fail (Eric Sandeen) [1205873]
-- [fs] btrfs: disable strict file flushes for renames and truncates (Eric Sandeen) [1205873]
-- [fs] btrfs: fix csum tree corruption, duplicate and outdated checksums (Eric Sandeen) [1205873]
-- [fs] btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch (Eric Sandeen) [1205873]
-- [fs] btrfs: fix compressed write corruption on enospc (Eric Sandeen) [1205873]
-- [fs] btrfs: correctly handle return from ulist_add (Eric Sandeen) [1205873]
-- [fs] btrfs: qgroup: account shared subtrees during snapshot delete (Eric Sandeen) [1205873]
-- [fs] btrfs: read lock extent buffer while walking backrefs (Eric Sandeen) [1205873]
-- [fs] btrfs: __btrfs_mod_ref should always use no_quota (Eric Sandeen) [1205873]
-- [fs] btrfs: adjust statfs calculations according to raid profiles (Eric Sandeen) [1205873]
-- [fs] sunrpc: fix sleeping under rcu_read_lock in gss_stringify_acceptor (Steve Dickson) [1111712]
-- [fs] nfs: Fix use of uninitialized variable in nfs_getattr() (Steve Dickson) [1111712]
-- [fs] nfs: Remove bogus assignment (Steve Dickson) [1111712]
-- [fs] nfs: remove spurious WARN_ON_ONCE in write path (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: serialize GETDEVICEINFO calls (Steve Dickson) [1111712]
-- [fs] nfs: fix pnfs direct write memory leak (Steve Dickson) [1111712]
-- [fs] revert "nfs: nfs4_do_open should add negative results to the dcache." (Steve Dickson) [1111712]
-- [fs] revert "nfs: remove BUG possibility in nfs4_open_and_get_state" (Steve Dickson) [1111712]
-- [fs] nfsv4: Ensure nfs_atomic_open set the dentry verifier on ENOENT (Steve Dickson) [1111712]
-- [fs] nfsv4.1/pnfs: replace broken pnfs_put_lseg_async (Steve Dickson) [1111712]
-- [fs] nfsv4: Remove dead prototype for nfs4_insert_deviceid_node() (Steve Dickson) [1111712]
-- [fs] svcrdma: advertise the correct max payload (Steve Dickson) [1111712]
-- [fs] nfsd: introduce nfsd4_callback_ops (Steve Dickson) [1111712]
-- [fs] nfsd: split nfsd4_callback initialization and use (Steve Dickson) [1111712]
-- [fs] nfsd: introduce a generic nfsd4_cb (Steve Dickson) [1111712]
-- [fs] nfsd: remove nfsd4_callback.cb_op (Steve Dickson) [1111712]
-- [fs] nfsd: do not clear rpc_resp in nfsd4_cb_done_sequence (Steve Dickson) [1111712]
-- [fs] nfsd: fix nfsd4_cb_recall_done error handling (Steve Dickson) [1111712]
-- [fs] nfsd4: clarify how grace period ends (Steve Dickson) [1111712]
-- [fs] nfsd4: stop grace_time update at end of grace period (Steve Dickson) [1111712]
-- [fs] nfsd: skip subsequent UMH "create" operations after the first one for v4.0 clients (Steve Dickson) [1111712]
-- [fs] nfsd: set and test NFSD4_CLIENT_STABLE bit to reduce nfsdcltrack upcalls (Steve Dickson) [1111712]
-- [fs] nfsd: serialize nfsdcltrack upcalls for a particular client (Steve Dickson) [1111712]
-- [fs] nfsd: pass extra info in env vars to upcalls to allow for early grace period end (Steve Dickson) [1111712]
-- [fs] nfsd: add a v4_end_grace file to /proc/fs/nfsd (Steve Dickson) [1111712]
-- [fs] lockd: add a /proc/fs/lockd/nlm_end_grace file (Steve Dickson) [1111712]
-- [fs] nfsd: reject reclaim request when client has already sent RECLAIM_COMPLETE (Steve Dickson) [1111712]
-- [fs] nfsd: remove redundant boot_time parm from grace_done client tracking op (Steve Dickson) [1111712]
-- [fs] lockd: move lockd's grace period handling into its own module (Steve Dickson) [1111712]
-- [fs] nfsd: Put export if prepare_creds() fail (Steve Dickson) [1111712]
-- [fs] nfsd: Full checking of authentication name (Steve Dickson) [1111712]
-- [fs] nfsd: Fix bad using of return value from qword_get (Steve Dickson) [1111712]
-- [fs] nfsd: Fix a memory leak if nfsd4_recdir_load fail (Steve Dickson) [1111712]
-- [fs] nfsd: Reset creds after mnt_want_write_file() fail (Steve Dickson) [1111712]
-- [fs] nfsd: Put file after ima_file_check fail in nfsd_open() (Steve Dickson) [1111712]
-- [fs] nfs: do not start the callback thread until we set rqstp->rq_task (Steve Dickson) [1111712]
-- [fs] lockd: Do not start the lockd thread before we've set nlmsvc_rqst->rq_task (Steve Dickson) [1111712]
-- [fs] nfsd4: remove labeled NFS warning from config help (Steve Dickson) [1111712]
-- [fs] sunrpc: fix byte-swapping of displayed XID (Steve Dickson) [1111712]
-- [fs] nfsd: Update some as-yet unused 4.2 error codes (Steve Dickson) [1111712]
-- [fs] nfsd: Remove duplicate initialization of file_lock (Steve Dickson) [1111712]
-- [fs] sunrpc: Fix compile on non-x86 (Steve Dickson) [1111712]
-- [fs] nfsd4: reserve adequate space for LOCK op (Steve Dickson) [1111712]
-- [fs] nfsd4: remove obsolete comment (Steve Dickson) [1111712]
-- [fs] nfsd3: Check write permission after checking existence (Steve Dickson) [1111712]
-- [fs] nfsd: call nfs4_put_deleg_lease outside of state_lock (Steve Dickson) [1111712]
-- [fs] nfsd: protect lease-related nfs4_file fields with fi_lock (Steve Dickson) [1111712]
-- [fs] nfsd: Reorder nfsd_cache_match to check more powerful discriminators first (Steve Dickson) [1111712]
-- [fs] nfsd: split DRC global spinlock into per-bucket locks (Steve Dickson) [1111712]
-- [fs] nfsd: convert num_drc_entries to an atomic_t (Steve Dickson) [1111712]
-- [fs] nfsd: Remove the cache_hash list (Steve Dickson) [1111712]
-- [fs] nfsd: convert the lru list into a per-bucket thing (Steve Dickson) [1111712]
-- [fs] nfsd: Clean up drc cache in preparation for global spinlock elimination (Steve Dickson) [1111712]
-- [fs] sunrpc: Optimise away svc_recv_available (Steve Dickson) [1111712]
-- [fs] sunrpc: More optimisations of svc_xprt_enqueue() (Steve Dickson) [1111712]
-- [fs] sunrpc: Fix broken kthread_should_stop test in svc_get_next_xprt (Steve Dickson) [1111712]
-- [fs] sunrpc: get rid of the request wait queue (Steve Dickson) [1111712]
-- [fs] sunrpc: Do not grab pool->sp_lock unnecessarily in svc_get_next_xprt (Steve Dickson) [1111712]
-- [fs] nfs: Ensure that nfs_callback_start_svc sets the server rq_task (Steve Dickson) [1111712]
-- [fs] lockd: Ensure that lockd_start_svc sets the server rq_task (Steve Dickson) [1111712]
-- [fs] sunrpc: Do not override wspace tests in svc_handle_xprt (Steve Dickson) [1111712]
-- [fs] nfsv4.1: Fix an NFSv4.1 state renewal regression (Steve Dickson) [1111712]
-- [fs] nfsv4: fix open/lock state recovery error handling (Steve Dickson) [1111712]
-- [fs] nfsv4: Fix lock recovery when CREATE_SESSION/SETCLIENTID_CONFIRM fails (Steve Dickson) [1111712]
-- [fs] nfs: Fabricate fscache server index key correctly (Steve Dickson) [1111712]
-- [fs] sunrpc: Add missing support for RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT (Steve Dickson) [1111712]
-- [fs] nfsv3: Fix missing includes of nfs3_fs.h (Steve Dickson) [1111712]
-- [fs] nfs: don't use STABLE writes during writeback (Steve Dickson) [1111712]
-- [fs] nfsv4: use exponential retry on NFS4ERR_DELAY for async requests (Steve Dickson) [1111712]
-- [fs] rpc: Add -EPERM processing for xs_udp_send_request() (Steve Dickson) [1111712]
-- [fs] rpc: return sent and err from xs_sendpages() (Steve Dickson) [1111712]
-- [fs] Fixing lease renewal (Steve Dickson) [1111712]
-- [fs] nfs: fix duplicate proc entries (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: Fix a 64-bit division/remainder issue in bl_map_stripe (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: include vmalloc.h for __vmalloc (Steve Dickson) [1111712]
-- [fs] nfs41: change PNFS_LAYOUTRET_ON_SETATTR to only return on truncation to smaller size (Steve Dickson) [1111712]
-- [fs] nfs: Move NFS v3 acl functions to nfs3_fs.h (Steve Dickson) [1111712]
-- [fs] nfs: Remove v3 not compiled check from validate_mount_data() (Steve Dickson) [1111712]
-- [fs] nfs: Move v3 declarations out of internal.h (Steve Dickson) [1111712]
-- [fs] nfs: Unconditionally enable commit code (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: Remove a couple of unused variables (Steve Dickson) [1111712]
-- [fs] pnfs: enable CB_NOTIFY_DEVICEID support (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: in-kernel GETDEVICEINFO XDR parsing (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: move all rpc_pipefs related code into a single file (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: refactor extent processing (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: move extent processing to blocklayout.c (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: allocate separate pages for the layoutcommit payload (Steve Dickson) [1111712]
-- [fs] pnfs: remove GETDEVICELIST implementation (Steve Dickson) [1111712]
-- [fs] pnfs/objlayout: fix endianess annotation in objio_alloc_deviceid_node (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: remove some debugging (Steve Dickson) [1111712]
-- [fs] nfs: add __acquires and __releases annotations to seqfile start/stop routines (Steve Dickson) [1111712]
-- [fs] nfs: fix RCU cl_xprt handling in nfs_swap_activate/deactivate (Steve Dickson) [1111712]
-- [fs] nfs: setattr can only change regular file sizes (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: use the device id cache (Steve Dickson) [1111712]
-- [fs] pnfs: add a nfs4_get_deviceid helper (Steve Dickson) [1111712]
-- [fs] pnfs: add a common GETDEVICELIST implementation (Steve Dickson) [1111712]
-- [fs] pnfs: factor GETDEVICEINFO implementations (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: return layouts on setattr (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: implement the return_range method (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: rewrite extent tracking (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: don't set pages uptodate (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: remove read-modify-write handling in bl_write_pagelist (Steve Dickson) [1111712]
-- [fs] pnfs: add return_range method (Steve Dickson) [1111712]
-- [fs] pnfs: add flag to force read-modify-write in ->write_begin (Steve Dickson) [1111712]
-- [fs] pnfs: force a layout commit when encountering busy segments during recall (Steve Dickson) [1111712]
-- [fs] nfs: Fix a compile warning when !(CONFIG_NFS_V3 || CONFIG_NFS_V4) (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: correctly decrement extent length (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: plug block queues (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: improve GETDEVICEINFO error reporting (Steve Dickson) [1111712]
-- [fs] pnfs/blocklayout: reject pnfs blocksize larger than page size (Steve Dickson) [1111712]
-- [fs] pnfs: allow splicing pre-encoded pages into the layoutcommit args (Steve Dickson) [1111712]
-- [fs] pnfs: avoid using stale stateids after layoutreturn (Steve Dickson) [1111712]
-- [fs] pnfs: retry after a bad stateid error from layoutget (Steve Dickson) [1111712]
-- [fs] pnfs: don't check sequence on new stateids in layoutget (Steve Dickson) [1111712]
-- [fs] pnfs: do not pass uninitialized lsegs to ->free_lseg (Steve Dickson) [1111712]
-- [fs] nfs: cap request size to fit a kmalloced page array (Steve Dickson) [1111712]
-- [fs] nfs/filelayout: set layoutcommit depending on write verifier (Steve Dickson) [1111712]
-- [fs] nfs41: add a helper function to set layoutcommit after commit (Steve Dickson) [1111712]
-- [fs] nfs: Clear up state owner lock usage (Steve Dickson) [1111712]
-- [fs] rpc: xs_bind - do not bind when requesting a random ephemeral port (Steve Dickson) [1111712]
-
-* Mon Apr 06 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-236.el7]
-- [documentation] cpuset: isolcpus: document relationship between cpusets & isolcpus (Rik van Riel) [1194687]
-- [kernel] cpusets: isolcpus: exclude isolcpus from load balancing in cpusets (Rik van Riel) [1194687]
-- [kernel] sched: isolcpu: make cpu_isolated_map visible outside scheduler (Rik van Riel) [1194687]
-- [powerpc] fix memory corruption by pnv_alloc_idle_core_states (Jan Stancek) [1205856]
-- [kernel] trace: Check if tracing is enabled in trace_puts() (Luiz Capitulino) [1198836]
-- [net] ipvs: allow rescheduling of new connections when port reuse is detected (Marcelo Leitner) [1196781]
-- [net] ipv6: gre: fix wrong skb->protocol in WCCP (Hannes Frederic Sowa) [1196478]
-- [net] ipv6: mld: fix add_grhead skb_over_panic for devs with large MTUs (Hannes Frederic Sowa) [1194694]
-- [net] team: don't traverse port list using rcu in team_set_mac_address (Jiri Pirko) [1182208]
-- [net] ipv6: replacing a rt6_info needs to purge possible propagated rt6_infos too (Jiri Pirko) [1198402]
-- [net] team: allow TSO being set on master (Jiri Pirko) [1189844]
-- [net] ipv6: addrconf: validate new MTU before applying it (Marcelo Leitner) [1194011]
-- [net] netfilter: conntrack: adjust nf_conntrack_buckets default value (Marcelo Leitner) [1176947]
-- [net] ipv6: fix possible deadlock in ip6_fl_purge / ip6_fl_gc (Jan Stancek) [1191411]
-- [netdrv] ppp: deflate: never return len larger than output buffer (Florian Westphal) [1187574]
-- [net] ipv4: kABI fix for 0bbf87d backport (Aristeu Rozanski) [1184764]
-- [net] ipv4: Convert ipv4.ip_local_port_range to be per netns (Aristeu Rozanski) [1184764]
-- [net] xfrm: Fix crash with ipv6 IPsec tunnel and NAT (Hannes Frederic Sowa) [1162395]
-- [net] bonding: implement bond_poll_controller() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Implement port churn-machine (AD standard 43.4.17) (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Verify RX LACPDU has proper dest mac-addr (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simple code refactor (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Move slave state changes to a helper function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: cleanup and remove dead code (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix LACP PDU not sent on slave port sometimes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix incorrect lacp mux state when agg not active (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_open() don't always set slave active flag (Nikolay Aleksandrov) [1166647]
-- [net] bonding: update bond carrier state when min_links option changes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: cleanup bond_opts array (Nikolay Aleksandrov) [1166647]
-- [net] bonding: change error message to debug message in __bond_release_one() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Check length of IFLA_BOND_ARP_IP_TARGET attributes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Introduce 4 AD link speed to fix agg_bandwidth (Nikolay Aleksandrov) [1166647]
-- [net] bonding: change AD_LINK_SPEED_BITMASK to enum to suport more speed (Nikolay Aleksandrov) [1166647]
-- [net] bonding: squash a warning (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix curr_active_slave/carrier with loadbalance arp monitoring (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Move bonding headers under include/net (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add bond_tx_drop() helper (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Simplify the xmit function for modes that use xmit_hash (Nikolay Aleksandrov) [1166647]
-- [net] bonding: display xmit_hash_policy for non-dynamic-tlb mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make global bonding stats more reliable (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the unnecessary notes for bond_xmit_broadcast() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimization for bond_xmit_roundrobin() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: consolidate ASSERT_RTNL()s and remove the unnecessary (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: style and comment fixes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: consolidate the two rlb_next_rx_slave functions into one (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix div by zero while enslaving and transmitting (Nikolay Aleksandrov) [1166647]
-- [net] bonding: adjust locking comments (Nikolay Aleksandrov) [1166647]
-- [net] bonding: 3ad: convert to bond->mode_lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: alb: convert to bond->mode_lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert curr_slave_lock to a spinlock and rename it (Nikolay Aleksandrov) [1166647]
-- [net] bonding: clean curr_slave_lock use (Nikolay Aleksandrov) [1166647]
-- [net] bonding: alb: remove curr_slave_lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: 3ad: clean up curr_slave_lock usage (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Add missing space in bonding driver parameter description (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove last users of bond->lock and bond->lock itself (Nikolay Aleksandrov) [1166647]
-- [net] bonding: options: remove bond->lock usage (Nikolay Aleksandrov) [1166647]
-- [net] bonding: procfs: clean bond->lock usage and use RCU (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert primary_slave to use RCU (Nikolay Aleksandrov) [1166647]
-- [net] bonding: alb: clean bond->lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: 3ad: use curr_slave_lock instead of bond->lock (Nikolay Aleksandrov) [1166647]
-- [netdrv] cxgb4: remove bond->lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fix typo in printk (Nikolay Aleksandrov) [1166647]
-- [net] bonding: create netlink event when bonding option is changed (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Replace rcu_dereference() with rcu_access_pointer() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use kobject_put instead of _del after kobject_add (Nikolay Aleksandrov) [1166647]
-- [net] bonding: destroy proc directory only after all bonds are gone (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use rtnl_deref in bond_change_rx_flags() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: enhance L2 hash helper with packet type (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Do not try to send packets over dead link in TLB mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_options.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_options.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_procfs.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_netlink.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_netlink.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_debugfs.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_alb.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_alb.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_3ad.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_3ad.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove pr_fmt from bond_main.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_main.c to use netdev_printk instead of pr_ (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_option_mode_set warning (Nikolay Aleksandrov) [1166647]
-- [net] bonding: permit enslaving interfaces without set_mac support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add proper __rcu annotation for current_arp_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add proper __rcu annotation for curr_active_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use rcu_access_pointer() in bonding_show_mii_status() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: get rid of bond_option_active_slave_get() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix ad_select module param check (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Advertize vxlan offload features when supported (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Turn on IFF_UNICAST_FLT on bond devices (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove NULL verification from bond_get_bond_by_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: populate essential new_slave->bond/dev early (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Don't assume 802.1Q when sending alb learning packets (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix vlan_features computing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: replace SLAVE_IS_OK() with bond_slave_can_tx() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rename {, bond_}slave_can_tx and clean it up (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert IS_UP(slave->dev) to inline function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make IS_IP_TARGET_UNUSABLE_ADDRESS an inline function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: create a macro for bond mode and use it (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make USES_PRIMARY inline functions (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make BOND_NO_USES_ARP an inline function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make TX_QUEUE_OVERRIDE() macro an inline function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove BOND_MODE_IS_LB macro (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix out of range parameters for bond_intmax_tbl (Nikolay Aleksandrov) [1166647]
-- [net] bonding: alloc the structure ad_info dynamically in per slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make a generic sysfs option store and fix comments (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the unused macro (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simplify the slave_do_arp_validate_only() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the unnecessary struct bond_net (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fix format string mismatch in bond_sysfs.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Add tlb_dynamic_lb parameter for tlb mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Added bond_tlb_xmit() for tlb mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Reorg bond_alb_xmit code (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Changed hashing function to just provide hash (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Remove debug_fs files when module init fails (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Inactive slaves should keep inactive flag's value (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Use RCU_INIT_POINTER(x, NULL) in bonding/bond_options.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add net_ratelimt to avoid spam in arp interval (Nikolay Aleksandrov) [1166647]
-- [net] bonding: support QinQ for bond arp interval (Nikolay Aleksandrov) [1166647]
-- [net] vlan: make a new function vlan_dev_vlan_proto() and export (Nikolay Aleksandrov) [1166647]
-- [net] bonding: ratelimit pr_err() for bond xmit broadcast (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimization for bond xmit path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: ratelimit pr_warn()s in 802.3ad mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use the correct ether type for alb (Nikolay Aleksandrov) [1166647]
-- [net] ether: add loopback type ETH_P_LOOPBACK (Nikolay Aleksandrov) [1166647]
-- [net] bonding: set correct vlan id for alb xmit path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Call dev_kfree_skby_any instead of kfree_skb (Nikolay Aleksandrov) [1166647]
-- [net] bonding: force cast of IP address in options (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix const in options processing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: correctly handle out of range parameters for lp_interval (Nikolay Aleksandrov) [1166647]
-- [net] bonding: options handling cleanup (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove dead code (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make slave status notifications GFP_ATOMIC (Nikolay Aleksandrov) [1166647]
-- [net] bonding: send arp requests even if there's no route to them (Nikolay Aleksandrov) [1166647]
-- [net] bonding: disallow enslaving a bond to itself (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix a div error caused by the slave release path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix rtnl: assertion failed at net/core/rtnetlink.c for ab arp monitor (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix rtnl: assertion failed at net/core/rtnetlink.c for 802.3ad mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove no longer needed lock for bond_xxx_info_query() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use rcu_dereference() to access curr_active_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: netpoll: remove unwanted slave_dev_support_netpoll() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_arp_rcv() race of curr_active_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Invert test (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Remove unnecessary else (Nikolay Aleksandrov) [1166647]
-- [net] bonding: More use of ether_addr_copy (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rename last_arp_rx to last_rx (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: rename slave->jiffies to ->last_link_up (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove useless updating of slave->dev->last_rx (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use last_arp_rx in bond_loadbalance_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use last_arp_rx in slave_last_rx() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use the new options to correctly set last_arp_rx (Nikolay Aleksandrov) [1166647]
-- [net] bonding: extend arp_validate to be able to receive unvalidated arp-only traffic (Nikolay Aleksandrov) [1166647]
-- [net] bonding: always set recv_probe to bond_arp_rcv in arp monitor (Nikolay Aleksandrov) [1166647]
-- [net] bonding: always update last_arp_rx on packet recieve (Nikolay Aleksandrov) [1166647]
-- [net] bonding: permit using arp_validate with non-ab modes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond->lock from bond_arp_rcv (Nikolay Aleksandrov) [1166647]
-- [net] bonding: 802.3ad: make aggregator_identifier bond-private (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Convert memcpy(foo, bar, ETH_ALEN) to ether_addr_copy(foo, bar) (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Convert c99 comments (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Neaten pr_<level> (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Convert pr_warning to pr_warn, neatening (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch warnings braces {} (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch warnings braces {} (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch warnings braces {} (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch warnings braces {} (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch errors comments and space (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix checkpatch errors with foo* bar|foo * bar (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_options.c direct rwlock.h include (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the redundant judgements for bond_option_queue_id_set() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the redundant judgements for bond_set_mac_address() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fix deadlock in bonding driver when using netpoll (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted bond lock for enslave processing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fail_over_mac should only affect AB mode in bond_set_mac_address() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fail_over_mac should only affect AB mode at enslave and removal processing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix locking in bond_loadbalance_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: restructure locking of bond_ab_arp_probe() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: RCUify bond_ab_arp_probe (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix u64 division (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Don't allow bond devices to change network namespaces (Nikolay Aleksandrov) [1166647]
-- [net] bonding: change name of sysfs dir for bonding slaves (Nikolay Aleksandrov) [1166647]
-- [net] bonding: clean the primary slave if there is no slave matching new primary (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert slaves to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert lp_interval to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert resend_igmp to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert all_slaves_active to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert queue_id to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert active_slave to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert use_carrier to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert primary_reselect to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert primary to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert miimon to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert num_peer_notif to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert ad_select to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert min_links to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert lacp_rate to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert updelay to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert downdelay to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert arp_ip_target to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert arp_interval to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert fail_over_mac to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert arp_all_targets to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert arp_validate to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert xmit_hash_policy to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert packets_per_slave to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert mode setting to use the new option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add infrastructure for an option API (Nikolay Aleksandrov) [1166647]
-- [net] bonding: reciprocal_divide: update/correction of the algorithm (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make slave_sysfs_ops static (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add sysfs /slave dir for bond slave devices (Nikolay Aleksandrov) [1166647]
-- [net] bonding: handle slave's name change with primary_slave logic (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use __dev_get_by_name instead of dev_get_by_name to find interface (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix __get_active_agg() RCU logic (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix __get_first_agg RCU usage (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_3ad_set_carrier() RCU usage (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove dead code from 3ad (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert 3ad to use pr_warn instead of pr_warning (Nikolay Aleksandrov) [1166647]
-- [net] bonding: clean up style for bond_3ad.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix kstrtou8() return value verification in num_peer_notif (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add bounds checking for tbl params (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix netlink msg size (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add ad_info attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add ad_select attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add lacp_rate attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make more functions static (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use ether_addr_equal_64bits to instead of ether_addr_equal (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the return value for bond_3ad_bind_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted return value for bond_dev_queue_xmit() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimizztion for bond_slave_override() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimization for bond_alb_xmit() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: slight optimization for bond_3ad_xmit_xor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use ether_addr_equal_unaligned for bond addr compare (Nikolay Aleksandrov) [1166647]
-- [net] bonding: ust micro BOND_NO_USE_ARP to simplify the mode check (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add option lp_interval for loading module (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make local function static (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add packets_per_slave attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add lp_interval attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add min_links attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add all_slaves_active attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add num_grat_arp attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: protect port for bond_3ad_handle_link_change() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: protect port for bond_3ad_adapter_duplex_changed() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: protect port for bond_3ad_adapter_speed_changed() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add resend_igmp attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add xmit_hash_policy attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add fail_over_mac attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add primary_select attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add primary attribute netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use be32 nla put/get for be32 values (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the bond_resend_igmp_join_requests_delayed() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted lock for bond_store_primaryxxx() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted lock for bond_option_active_slave_set() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add RCU for bond_3ad_state_machine_handler() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unwanted lock for bond enslave and release (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the lock use for bond_activebackup_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: create bond_first_slave_rcu() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the lock use for bond_loadbalance_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the lock use for bond_alb_monitor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rebuild the lock use for bond_mii_monitor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove the no effect lock for bond_select_active_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_all_targets netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_validate netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_ip_target netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_interval netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add use_carrier netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add downdelay netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add updelay netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add miimon netlink support (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Use RCU_INIT_POINTER() for better overhead and for sparse (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix packets_per_slave showing (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fix FSF address in file headers (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add arp_ip_target checks when install the module (Nikolay Aleksandrov) [1166647]
-- [net] bonding: disable arp and enable mii monitoring when bond change to no uses arp mode (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add ip checks when store ip target (Nikolay Aleksandrov) [1166647]
-- [net] bonding: extend round-robin mode with packets_per_slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: bond_get_size() returns wrong size (Nikolay Aleksandrov) [1166647]
-- [net] Revert "Merge branch 'bonding_monitor_locking'" (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_3ad_state_machine_handler() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_activebackup_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_loadbalance_arp_mon() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_alb_monitor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond read lock for bond_mii_monitor() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move bond-specific init after enslave happens (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Remove __exit tag from bond_netlink_fini() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add Netlink support active_slave option (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add Netlink support mode option (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move active_slave getting into separate function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_ioctl_change_active() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move active_slave setting into separate function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move mode setting into separate function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: push Netlink bits into separate file (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add rtnl lock and remove read lock for bond sysfs (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use RCU protection for alb xmit path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use RCU protection for 3ad xmit path (Nikolay Aleksandrov) [1166647]
-- [net] bonding: modify the old and add new xmit hash policies (Nikolay Aleksandrov) [1166647]
-- [net] flow_dissector: factor out the ports extraction in skb_flow_get_ports (Nikolay Aleksandrov) [1166647]
-- [net] flow: Remove extern from function prototypes (Nikolay Aleksandrov) [1166647]
-- [net] bonding: RCUify bond_set_rx_mode() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: remove forgotten bond_next_vlan() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_next_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't use bond_next_slave() in bond_info_seq_next() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unused __get_next_agg() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make bond_3ad_unbind_slave() use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make ad_agg_selection_logic() use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make __get_active_agg() use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make ad_port_selection_logic() use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove __get_first_port() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove __get_next_port() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: verify if we still have slaves in bond_3ad_unbind_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: correctly verify for the first slave in bond_enslave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: move bond_attach/detach_slave in the proper position (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_prev_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add bond_has_slaves() and use it (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unused bond_for_each_slave_from() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rework bond_ab_arp_probe() to use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rework bond_find_best_slave() to use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rework rlb_next_rx_slave() to use bond_for_each_slave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: rework bond_3ad_xmit_xor() to use bond_for_each_slave() only (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use bond_for_each_slave() in bond_uninit() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make bond_for_each_slave() use lower neighbour's private (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_for_each_slave_continue_reverse() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: populate neighbour's private on enslave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Make alb learning packet interval configurable (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix bond_arp_rcv setting and arp validate desync state (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix store_arp_validate race with mode change (Nikolay Aleksandrov) [1166647]
-- [net] bonding: drop read_lock in bond_compute_features (Nikolay Aleksandrov) [1166647]
-- [net] bonding: drop read_lock in bond_fix_features (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simplify bond_3ad_update_lacp_rate and use RTNL for sync (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: remove outdated comment and braces (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simplify and fix peer notification (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use rlb_client_info->vlan_id instead of ->tag (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove bond_vlan_used() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: pr_debug instead of pr_warn in bond_arp_send_all (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove vlan_list/current_alb_vlan (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make alb_send_learning_packets() use upper dev list (Nikolay Aleksandrov) [1166647]
-- [net] bonding: split alb_send_learning_packets() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert bond_has_this_ip() to use upper devices (Nikolay Aleksandrov) [1166647]
-- [net] bonding: make bond_arp_send_all use upper device list (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use netdev_upper list in bond_vlan_used (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix error return code in bond_enslave() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: unwind on bond_add_vlan failure (Nikolay Aleksandrov) [1166647]
-- [net] bonding: change the bond's vlan syncing functions with the standard ones (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove locking from bond_set_rx_mode() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add bond_time_in_interval() and use it for time comparison (Nikolay Aleksandrov) [1166647]
-- [net] bonding: call slave_last_rx() only once per slave (Nikolay Aleksandrov) [1166647]
-- [net] bonding: initial RCU conversion (Nikolay Aleksandrov) [1166647]
-- [net] bonding: factor out slave id tx code and simplify xmit paths (Nikolay Aleksandrov) [1166647]
-- [net] bonding: simplify broadcast_xmit function (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unnecessary read_locks of curr_slave_lock (Nikolay Aleksandrov) [1166647]
-- [net] bonding: convert to list API and replace bond's custom list (Nikolay Aleksandrov) [1166647]
-- [net] bonding: fix system hang due to fast igmp timer rescheduling (Nikolay Aleksandrov) [1166647]
-- [net] bond: cleanup netpoll code (Nikolay Aleksandrov) [1166647]
-- [net] bonding: use pre-defined macro in bond_mode_name instead of magic number 0 (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Fixed up a error "do not initialise statics to 0 or NULL" in bond_main.c (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add rtnl protection for bonding_store_fail_over_mac (Nikolay Aleksandrov) [1166647]
-- [net] bonding: bond_sysfs.c checkpatch cleanup (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't call slave_xxx_netpoll under spinlocks (Nikolay Aleksandrov) [1166647]
-- [net] bonding: remove unnecessary setup_by_slave member (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add an option to fail when any of arp_ip_target is inaccessible (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't trust arp requests unless active slave really works (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't validate arp if we don't have to (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't add duplicate targets to arp_ip_target (Nikolay Aleksandrov) [1166647]
-- [net] bonding: add helper function bond_get_targets_ip(targets, ip) (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: make alb use bond_slave_has_mac() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: don't call alb_set_slave_mac_addr() while atomic (Nikolay Aleksandrov) [1166647]
-- [net] bonding: disallow change of MAC if fail_over_mac enabled (Nikolay Aleksandrov) [1166647]
-- [net] bonding: Convert hw addr handling to sync/unsync, support ucast addresses (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: update the comments to reflect the reality (Nikolay Aleksandrov) [1166647]
-- [net] bonding: trivial: remove unused parameter from alb_swap_mac_addr() (Nikolay Aleksandrov) [1166647]
-- [net] bonding: allow xmit hash policy change while bond dev is up (Nikolay Aleksandrov) [1166647]
-- [net] nf_conntrack: allow server to become a client in TW handling (Marcelo Leitner) [1160431]
-
-* Fri Apr 03 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-235.el7]
-- [crypto] add missing crypto module aliases (Denys Vlasenko) [1190631] {CVE-2013-7421 CVE-2014-9644}
-- [crypto] include crypto- module prefix in template (Denys Vlasenko) [1190631] {CVE-2013-7421 CVE-2014-9644}
-- [crypto] prefix module autoloading with "crypto-" (Denys Vlasenko) [1190631] {CVE-2013-7421 CVE-2014-9644}
-- [hv] vmbus: introduce vmbus_acpi_remove (Vitaly Kuznetsov) [1201889]
-- [hv] vmbus: Teardown synthetic interrupt controllers on module unload (Vitaly Kuznetsov) [1201889]
-- [hv] vmbus: teardown hv_vmbus_con workqueue and vmbus_connection pages on shutdown (Vitaly Kuznetsov) [1201889]
-- [hv] vmbus: avoid double kfree for device_obj (Vitaly Kuznetsov) [1201889]
-- [hv] vmbus: rename channel work queues (Vitaly Kuznetsov) [1201889]
-- [hv] use correct order when freeing monitor_pages (Vitaly Kuznetsov) [1201889]
-- [x86] hyperv: Fixup the (brain) damage caused by the irq cleanup (Vitaly Kuznetsov) [1201889]
-- [x86] hyperv: Fix brown paperbag typos reported by Fenguangs build robot (Vitaly Kuznetsov) [1201889]
-- [x86] hyperv: Make it build with CONFIG_HYPERV=m again (Vitaly Kuznetsov) [1201889]
-- [x86] hyperv: Cleanup the irq mess (Vitaly Kuznetsov) [1201889]
-- [hv] move ringbuffer bus attributes to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] delete struct hv_dev_port_info (Vitaly Kuznetsov) [1201889]
-- [hv] delete vmbus_get_debug_info() (Vitaly Kuznetsov) [1201889]
-- [hv] move "client/server_monitor_conn_id" bus attributes to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "client/server_monitor_latency" bus attributes to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "client/server_monitor_pending" bus attributes to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] make "monitor_pages" a "real" pointer array (Vitaly Kuznetsov) [1201889]
-- [hv] move "device_id" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "class_id" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "modalias" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "monitor_id" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] move "state" bus attribute to dev_groups (Vitaly Kuznetsov) [1201889]
-- [hv] use dev_groups for device attributes (Vitaly Kuznetsov) [1201889]
-- [drm] radeon: fix kernel segfault in hwmonitor (Jerome Glisse) [1187817]
-- [pci] Remove DEFINE_PCI_DEVICE_TABLE macro use (Prarit Bhargava) [1198151]
-- [scsi] storvsc: get rid of overly verbose warning messages (Vitaly Kuznetsov) [1035213 1206437]
-- [scsi] storvsc: force discovery of LUNs that may have been removed (Vitaly Kuznetsov) [1035213 1206437]
-- [scsi] storvsc: in responce to a scan event, scan the host (Vitaly Kuznetsov) [1035213 1206437]
-- [scsi] storvsc: NULL pointer dereference fix (Vitaly Kuznetsov) [1035213 1206437]
-- [netdrv] bnx2: disable toggling of rxvlan if necessary (Ivan Vecera) [1190094]
-- [netdrv] tg3: move init/deinit from open/close to probe/remove (Ivan Vecera) [1172960]
-- [netdrv] mlx4_en: tx_info->ts_requested was not cleared (Doug Ledford) [1178070]
-- [input] serio: hyperv-keyboard - register as a wakeup source (Vitaly Kuznetsov) [1086100]
-- [hid] hyperv: register as a wakeup source (Vitaly Kuznetsov) [1086100]
-- [hid] hyperv: make sure input buffer is big enough (Vitaly Kuznetsov) [1086100]
-- [edac] sb_edac: Fix typo computing number of banks (Seth Jennings) [1165448]
-- [edac] sb_edac: Add support for Broadwell-DE processor (Seth Jennings) [1165448]
-- [edac] sb_edac: Fix discovery of top-of-low-memory for Haswell (Seth Jennings) [1158624]
-- [perf] powerpc: Use dwfl_report_elf() instead of offline (Gustavo Duarte) [1113736]
-- [perf] powerpc: Cache the DWARF debug info (Gustavo Duarte) [1113736]
-- [kernel] ring-buffer: Check if buffer exists before polling (Gustavo Duarte) [1199699]
-- [powerpc] mm: thp: Add tracepoints to track hugepage invalidate (Gustavo Duarte) [1199016]
-- [powerpc] mm: Use read barrier when creating real_pte (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Use ACCESS_ONCE when loading pmdp (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Invalidate with vpn in loop (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Handle combo pages in invalidate (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Invalidate old 64K based hash page mapping before insert of 4k pte (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Don't recompute vsid and ssize in loop on invalidate (Gustavo Duarte) [1199016]
-- [powerpc] mm: thp: Add write barrier after updating the valid bit (Gustavo Duarte) [1199016]
-- [cpufreq] powernv: Set the cpus to nominal frequency during reboot/kexec (Gustavo Duarte) [1182062]
-- [cpufreq] powernv: Set the pstate of the last hotplugged out cpu in policy->cpus to minimum (Gustavo Duarte) [1182062]
-- [cpufreq] Allow stop CPU callback to be used by all cpufreq drivers (Gustavo Duarte) [1182062]
-- [i2c] i801: Add DeviceIDs for SunrisePoint LP (David Milburn) [1129470]
-- [sound] alsa: hda_intel: Add DeviceIDs for Sunrise Point-LP (David Milburn) [1129470]
-- [ata] ahci: Add DeviceIDs for Sunrise Point-LP SATA controller (David Milburn) [1129470]
-- [ata] ahci: Remove Device ID for Intel Sunrise Point PCH (David Milburn) [1082114]
-- [i2c] i801: Check if interrupts are disabled (David Milburn) [1082114]
-- [i2c] i801: Fallback to polling if request_irq() fails (David Milburn) [1082114]
-- [i2c] i801: Use wait_event_timeout to wait for interrupts (David Milburn) [1082114]
-- [ata] ahci: Add Device IDs for Intel Sunrise Point PCH (David Milburn) [1082114]
-- [i2c] i801: Add Device IDs for Intel Sunrise Point PCH (David Milburn) [1082114]
-- [sound] alsa: hda_intel: Add Device IDs for Intel Sunrise Point PCH (David Milburn) [1082114]
-
-* Mon Mar 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-234.el7]
-- [tools] perf/probe: Trivial typo fix for --demangle (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F dso_from for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F dso_to for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F symbol_from for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F symbol_to for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F mispredict for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F in_tx for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Fix report -F abort for data without branch info (Jiri Olsa) [1169436]
-- [tools] perf: Make CPUINFO_PROC an array to support different kernel versions (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Use global caching provided by libunwind (Jiri Olsa) [1169436]
-- [tools] perf/diff: Add missing hists__init() call at tool start (Jiri Olsa) [1169436]
-- [tools] perf/script: Add period as a default output column (Jiri Olsa) [1169436]
-- [tools] perf/script: Add period data column (Jiri Olsa) [1169436]
-- [tools] perf/evsel: No need to drag util/cgroup.h (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add missing 'struct option' forward declaration (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Move exit stuff from __delete to __exit (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Enable events copying (Jiri Olsa) [1169436]
-- [tools] perf/session: Add option to copy events when queueing (Jiri Olsa) [1169436]
-- [tools] perf/Documentation: Fix typos in perf/Documentation (Jiri Olsa) [1169436]
-- [tools] perf/trace: Use thread_{, _set}_priv helpers (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Use thread_{, _set}_priv helpers (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Create an address space per thread (Jiri Olsa) [1169436]
-- [tools] perf/report: Set callchain_param.record_mode for future use (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Fix for double free in tools/perf stat (Jiri Olsa) [1169436]
-- [tools] perf/test: Add test case for pmu event new style format (Jiri Olsa) [1169436]
-- [tools] perf: Add support to new style format of kernel PMU event (Jiri Olsa) [1169436]
-- [tools] perf: Parse the pmu event prefix and suffix (Jiri Olsa) [1169436]
-- [tools] Revert: perf: Default to cpu// for events v5 (Jiri Olsa) [1169436]
-- [tools] perf/top: Add a visual cue for toggle zeroing of samples (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Make sym->end be the first address after the symbol range (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Fix map->end fixup (Jiri Olsa) [1169436]
-- [tools] perf: Fixup off-by-one comparision in maps__find (Jiri Olsa) [1169436]
-- [tools] perf: fix off-by-one error in maps (Jiri Olsa) [1169436]
-- [tools] perf/machine: Add missing dsos->root rbtree root initialization (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Make some exit routines static (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Add missing 'target' struct forward declaration (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Default to syswide target when no thread/cpu maps set (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Check that there is a thread_map when preparing a workload (Jiri Olsa) [1169436]
-- [tools] perf/thread_map: Create dummy constructor out of open coded equivalent (Jiri Olsa) [1169436]
-- [tools] perf: Remove hists from evsel (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Move the callchain_param extern to callchain.h (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Subclassing (Jiri Olsa) [1169436]
-- [tools] perf/session: Remove last reference to hists struct (Jiri Olsa) [1169436]
-- [tools] perf/ui/browsers: Add missing include (Jiri Olsa) [1169436]
-- [tools] perf: Move events_stats struct to event.h (Jiri Olsa) [1169436]
-- [tools] perf/session: Don't count per evsel events (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Add hists helper (Jiri Olsa) [1169436]
-- [tools] perf/script: Stop updating hists stats, not used (Jiri Olsa) [1169436]
-- [tools] perf/sched: Stop updating hists stats, not used (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Move callchain_param to util object in to fix python test (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Use fdarray object instead of pollfd (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Use perf_evlist__add_pollfd return fd position (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Fix perf_evlist__add_pollfd error handling (Jiri Olsa) [1169436]
-- [tools] perf/record: Fix error message for --filter option not coming after tracepoint (Jiri Olsa) [1169436]
-- [tools] perf: Fix build breakage on arm64 targets (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Improve DSO long names lookup speed with rbtree (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Encapsulate dsos list head into struct dsos (Jiri Olsa) [1169436]
-- [tools] perf/bench/futex: Sanitize -q option in requeue (Jiri Olsa) [1169436]
-- [tools] perf/bench/futex: Support operations for shared futexes (Jiri Olsa) [1169436]
-- [tools] perf/trace: Fix mmap return address truncation to 32-bit (Jiri Olsa) [1169436]
-- [tools] perf: Refactor unit and scale function parameters (Jiri Olsa) [1169436]
-- [tools] perf: Fix line number in the config file error message (Jiri Olsa) [1169436]
-- [tools] perf: Convert {record, top}.call-graph option to call-graph.record-mode (Jiri Olsa) [1169436]
-- [tools] perf: Introduce perf_callchain_config() (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Move some parser functions to callchain.c (Jiri Olsa) [1169436]
-- [tools] perf: Move callchain config from record_opts to callchain_param (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Fix callchain print bug on TUI (Jiri Olsa) [1169436]
-- [tools] perf: Use ACCESS_ONCE() instead of volatile cast (Jiri Olsa) [1169436]
-- [tools] perf: Modify error code for when perf_session__new() fails (Jiri Olsa) [1169436]
-- [tools] perf: Fix perf record as non root with kptr_restrict == 1 (Jiri Olsa) [1169436]
-- [tools] perf/stat: Fix --per-core on multi socket systems (Jiri Olsa) [1169436]
-- [tools] perf/trace: Filter out POLLHUP'ed file descriptors (Jiri Olsa) [1169436]
-- [tools] perf/record: Filter out POLLHUP'ed file descriptors (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Unmap when all refcounts to fd are gone and events drained (Jiri Olsa) [1169436]
-- [tools] lib/fd/array: Allow associating an integer cookie with each entry (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Refcount mmaps (Jiri Olsa) [1169436]
-- [tools] lib/api: Adopt fdarray class from perf's evlist (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Introduce poll method for common code idiom (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/live: Use perf_evlist__add_pollfd() instead of local equivalent (Jiri Olsa) [1169436]
-- [tools] perf/tests: Add pollfd growing test (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Allow growing pollfd on add method (Jiri Olsa) [1169436]
-- [tools] perf/evlist: We need to poll all event file descriptors (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Monitor POLLERR and POLLHUP events too (Jiri Olsa) [1169436]
-- [tools] perf/tests: Add test for perf_evlist__filter_pollfd() (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Introduce perf_evlist__filter_pollfd method (Jiri Olsa) [1169436]
-- [tools] perf/record: Use ring buffer consume method to look like other tools (Jiri Olsa) [1169436]
-- [tools] perf/probe: Do not use dwfl_module_addrsym if dwarf_diename finds symbol name (Jiri Olsa) [1169436]
-- [tools] perf/probe: Do not access kallsyms when analyzing user binaries (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Add path to Ubuntu kernel debuginfo file (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Ignore stripped vmlinux and fallback to kallsyms (Jiri Olsa) [1169436]
-- [tools] perf: define _DEFAULT_SOURCE for glibc_2.20 (Jiri Olsa) [1169436]
-- [tools] perf: Don't include sys/poll.h directly (Jiri Olsa) [1169436]
-- [tools] perf: Fix GNU-only grep usage in Makefile (Jiri Olsa) [1169436]
-- [tools] perf/tool: fix compilation for ARM (Jiri Olsa) [1169436]
-- [tools] perf: Add perf_pmu__scan_file() (Jiri Olsa) [1169436]
-- [tools] perf: Let default config be defined for a PMU (Jiri Olsa) [1169436]
-- [tools] perf: Add perf-with-kcore script (Jiri Olsa) [1169436]
-- [tools] perf: Let a user specify a PMU event without any config terms (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/report: Unify the title bar output (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/report: Enable the target.system_wide flag (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat/report: Save pid string in opts.target.pid (Jiri Olsa) [1169436]
-- [tools] perf/powerpc: Fix build issue when DWARF support is disabled (Jiri Olsa) [1169436]
-- [tools] perf: Add +field argument support for --sort option (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Consolidate callchain print functions in TUI (Jiri Olsa) [1169436]
-- [tools] perf: Add +field argument support for --field option (Jiri Olsa) [1169436]
-- [tools] perf/top: Use set_term_quiet() instead of open coded equivalent (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fallback to MAP__FUNCTION if daddr maps are NULL (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Cleanup callchain print functions (Jiri Olsa) [1169436]
-- [tools] perf: Add machine__kernel_ip() (Jiri Olsa) [1169436]
-- [tools] perf/machine: Rename machine__get_kernel_start_addr() method (Jiri Olsa) [1169436]
-- [tools] perf/scripting: Add 'flush' callback to scripting API (Jiri Olsa) [1169436]
-- [tools] perf/tests: Add a test for tracking with sched_switch (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Factor out hist_browser__show_callchain_entry() (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Fix children overhead dump (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Get rid of unused 'remaining' variable (Jiri Olsa) [1169436]
-- [tools] perf/powerpc: Explicitly include util/debug.h (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Don't try to find DSOs in SYSV maps (Jiri Olsa) [1169436]
-- [tools] perf/stat: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/help: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/buildid-cache: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/sched: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/test: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/record: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/trace: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/top: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/util: Replace strerror with strerror_r for thread-safety (Jiri Olsa) [1169436]
-- [tools] perf/probe: Make error messages thread-safe (Jiri Olsa) [1169436]
-- [tools] perf: Use strerror_r instead of strerror (Jiri Olsa) [1169436]
-- [tools] perf/probe: Don't use strerror if strlist__add failed (Jiri Olsa) [1169436]
-- [tools] perf/report: Relax -g option parsing not to limit the option order (Jiri Olsa) [1169436]
-- [tools] perf: Annotate PMU related list_head members with type info (Jiri Olsa) [1169436]
-- [tools] perf: Add arm64 triplets (Jiri Olsa) [1169436]
-- [tools] perf/annotate: Don't truncate Intel style addresses (Jiri Olsa) [1169436]
-- [tools] perf/probe: Warn user to rebuild target with debuginfo (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add perf_evlist__enable_event_idx() (Jiri Olsa) [1169436]
-- [tools] perf: Add flags and insn_len to struct sample (Jiri Olsa) [1169436]
-- [tools] perf/machine: Add machine__thread_exec_comm() (Jiri Olsa) [1169436]
-- [tools] perf: Identify which comms are from exec (Jiri Olsa) [1169436]
-- [tools] perf/script/python: Add helpers for calling Python objects (Jiri Olsa) [1169436]
-- [tools] perf/script: Allow callchains if any event samples them (Jiri Olsa) [1169436]
-- [tools] perf/session: Add perf_session__peek_event() (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add perf_evlist__set_tracking_event() (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add 'system_wide' option (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Fix missing label symbols (Jiri Olsa) [1169436]
-- [tools] perf/top: Handle 'z' key for toggle zeroing samples in TUI (Jiri Olsa) [1169436]
-- [tools] perf/top: Fix -z option behavior (Jiri Olsa) [1169436]
-- [tools] perf/report: Set proper sort__mode for the branch option (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Fix a small callchain display bug (Jiri Olsa) [1169436]
-- [tools] perf: Check recorded kernel version when finding vmlinux (Jiri Olsa) [1169436]
-- [tools] perf/trace: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/script: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/sched: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/lock: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Move call to symbol__init() after creating session (Jiri Olsa) [1169436]
-- [tools] perf/kmem: Move session handling out of __cmd_kmem() (Jiri Olsa) [1169436]
-- [tools] perf/inject: Move session handling out of __cmd_inject() (Jiri Olsa) [1169436]
-- [tools] perf/buildid-cache: Move session handling into cmd_buildid_cache() (Jiri Olsa) [1169436]
-- [tools] perf/annotate: Move session handling out of __cmd_annotate() (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Fix a memory leak in vmlinux_path__init() (Jiri Olsa) [1169436]
-- [tools] perf/script: Fix possible memory leaks (Jiri Olsa) [1169436]
-- [tools] perf: Prefer to use a cpu-wide event for probing CLOEXEC (Jiri Olsa) [1169436]
-- [tools] perf: Fix probing the kernel API with cpu-wide events (Jiri Olsa) [1169436]
-- [tools] perf: Fix one of the probe events to exclude kernel (Jiri Olsa) [1169436]
-- [tools] perf: Fix CLOEXEC probe for perf_event_paranoid == 2 (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add beautifier for mremap flags param (Jiri Olsa) [1169436]
-- [tools] perf/probe: Fix --del option to delete events only with uprobe events (Jiri Olsa) [1169436]
-- [tools] perf/probe: Fix --list option to show events only with uprobe events (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Fix stdin handling for 'kvm stat live' command (Jiri Olsa) [1169436]
-- [tools] perf/top: Setup signals for terminal output (Jiri Olsa) [1169436]
-- [tools] perf: Introduce set_term_quiet_input helper function (Jiri Olsa) [1169436]
-- [tools] perf/top: Join the display thread on exit (Jiri Olsa) [1169436]
-- [tools] perf: Add cpu_startup_entry to the list of kernel idle symbols (Jiri Olsa) [1169436]
-- [tools] perf/top: Don't look for kernel idle symbols in all DSOs (Jiri Olsa) [1169436]
-- [tools] perf: Default to python version 2 (Jiri Olsa) [1169436]
-- [tools] perf: Fix PERF_FLAG_FD_CLOEXEC flag probing event type open counters due to EBUSY error (Jiri Olsa) [1169436]
-- [tools] perf: Fix column alignment when headers aren't shown on TUI (Jiri Olsa) [1169436]
-- [tools] perf: Add name field into perf_hpp_fmt (Jiri Olsa) [1169436]
-- [tools] perf/top: Add -w option for setting column width (Jiri Olsa) [1169436]
-- [tools] perf/report: Honor column width setting (Jiri Olsa) [1169436]
-- [tools] perf: Save column length in perf_hpp_fmt (Jiri Olsa) [1169436]
-- [tools] perf: Make __hpp__fmt() receive an additional len argument (Jiri Olsa) [1169436]
-- [tools] perf: Left-align output contents (Jiri Olsa) [1169436]
-- [tools] perf: Fix make PYTHON override (Jiri Olsa) [1169436]
-- [tools] perf/kmem: Do not ignore mmap events (Jiri Olsa) [1169436]
-- [tools] perf: Show better error message in case we fail to open counters due to EBUSY error (Jiri Olsa) [1169436]
-- [tools] perf: Allow out of order messages in forced flush (Jiri Olsa) [1169436]
-- [tools] perf: Add debug prints for ordered events queue (Jiri Olsa) [1169436]
-- [tools] perf: Add report.queue-size config file option (Jiri Olsa) [1169436]
-- [tools] perf: Add perf_config_u64 function (Jiri Olsa) [1169436]
-- [tools] perf: Add ordered_events__free function (Jiri Olsa) [1169436]
-- [tools] perf: Add ordered_events__init function (Jiri Olsa) [1169436]
-- [tools] perf: Use list_move in ordered_events_delete function (Jiri Olsa) [1169436]
-- [tools] perf: Create ordered-events object (Jiri Olsa) [1169436]
-- [tools] perf: Make perf_session__deliver_event global (Jiri Olsa) [1169436]
-- [tools] perf: Flush ordered events in case of allocation failure (Jiri Olsa) [1169436]
-- [tools] perf: Limit ordered events queue size (Jiri Olsa) [1169436]
-- [tools] perf: Factor ordered_events__flush to be more generic (Jiri Olsa) [1169436]
-- [tools] perf: Add ordered_events__(new (Jiri Olsa) [1169436]
-- [tools] perf: Rename ordered_events members (Jiri Olsa) [1169436]
-- [tools] perf: Rename ordered_samples struct to ordered_events (Jiri Olsa) [1169436]
-- [tools] perf: Rename ordered_samples bool to ordered_events (Jiri Olsa) [1169436]
-- [tools] perf/record: Honour --no-time command line option (Jiri Olsa) [1169436]
-- [tools] perf/kvm/stat: Properly show submicrosecond times (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Make sure --symfs usage includes the path separator (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Don't run workload if not told to (Jiri Olsa) [1169436]
-- [tools] perf: Fix arm64 build error (Jiri Olsa) [1169436]
-- [tools] perf: saner perf_atoll() (Jiri Olsa) [1169436]
-- [tools] Revert: perf: Fix jump label always changing during tracing (Jiri Olsa) [1169436]
-- [tools] perf: Fix perf usage string leftover (Jiri Olsa) [1169436]
-- [tools] perf/record: Store PERF_RECORD_FINISHED_ROUND only for nonempty rounds (Jiri Olsa) [1169436]
-- [tools] perf/record: Always force PERF_RECORD_FINISHED_ROUND event (Jiri Olsa) [1169436]
-- [tools] perf/inject: Add --kallsyms parameter (Jiri Olsa) [1169436]
-- [tools] perf: Expose 'addr' functions so they can be reused (Jiri Olsa) [1169436]
-- [tools] perf/session: Fix accounting of ordered samples queue (Jiri Olsa) [1169436]
-- [tools] perf/powerpc: Include util/util.h and remove stringify macros (Jiri Olsa) [1169436]
-- [tools] perf: Fix build on gcc 4.4.7 (Jiri Olsa) [1169436]
-- [tools] perf: Add thread parameter to vdso__dso_findnew() (Jiri Olsa) [1169436]
-- [tools] perf: Add dso__type() (Jiri Olsa) [1169436]
-- [tools] perf: Separate the VDSO map name from the VDSO dso name (Jiri Olsa) [1169436]
-- [tools] perf: Add vdso__new() (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fix the lifetime of the VDSO temporary file (Jiri Olsa) [1169436]
-- [tools] perf: Group VDSO global variables into a structure (Jiri Olsa) [1169436]
-- [tools] perf/session: Add ability to skip 4GiB or more (Jiri Olsa) [1169436]
-- [tools] perf/session: Add ability to 'skip' a non-piped event stream (Jiri Olsa) [1169436]
-- [tools] perf: Pass machine to vdso__dso_findnew() (Jiri Olsa) [1169436]
-- [tools] perf: Add dso__data_size() (Jiri Olsa) [1169436]
-- [tools] perf: Move rdtsc() function (Jiri Olsa) [1169436]
-- [tools] perf/machine: Add ability to record the current tid for each cpu (Jiri Olsa) [1169436]
-- [tools] perf: Add cpu to struct thread (Jiri Olsa) [1169436]
-- [tools] perf: Add dsos__hit_all() (Jiri Olsa) [1169436]
-- [tools] perf: Add dso__data_status_seen() (Jiri Olsa) [1169436]
-- [tools] perf: Record whether a dso has data (Jiri Olsa) [1169436]
-- [tools] perf/script: Do not print dangling '=>' for BTS (Jiri Olsa) [1169436]
-- [tools] perf/script: Improve srcline display for BTS (Jiri Olsa) [1169436]
-- [tools] perf: Fix jump label always changing during tracing (Jiri Olsa) [1169436]
-- [tools] perf: Fix incorrect fd error comparison (Jiri Olsa) [1169436]
-- [tools] perf/tests: Update attr test with PERF_FLAG_FD_CLOEXEC flag (Jiri Olsa) [1169436]
-- [tools] perf: Enable close-on-exec flag on perf file descriptor (Jiri Olsa) [1169436]
-- [tools] perf: Allow TSC conversion on any arch (Jiri Olsa) [1169436]
-- [tools] perf: Remove needless getopt.h includes (Jiri Olsa) [1169436]
-- [tools] perf: Add --debug optionto set debug variable (Jiri Olsa) [1169436]
-- [tools] perf: Factor eprintf to allow different debug variables (Jiri Olsa) [1169436]
-- [tools] perf: Move pr_* debug macros into debug object (Jiri Olsa) [1169436]
-- [tools] perf: Remove verbose from functions prototypes (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fix leak of 'struct thread' on error path (Jiri Olsa) [1169436]
-- [tools] perf/thread: Allow deletion of a thread with no map groups (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fix map groups of threads with unknown pids (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Add 'immediate' option (Jiri Olsa) [1169436]
-- [tools] perf/evsel: Add 'no_aux_samples' option (Jiri Olsa) [1169436]
-- [tools] perf: Add option macro OPT_CALLBACK_OPTARG (Jiri Olsa) [1169436]
-- [tools] perf: Add feature test for __sync_val_compare_and_swap (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Pass mmap parameters in a struct (Jiri Olsa) [1169436]
-- [tools] perf/session: Flag if the event stream is entirely in memory (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Add ability to iterate over a dso's symbols (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Do not attempt to read data from kallsyms (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Record whether a dso is 64-bit (Jiri Olsa) [1169436]
-- [tools] perf/buildid-cache: Apply force option to copying kcore (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Fix appending a callchain from a previous sample (Jiri Olsa) [1169436]
-- [tools] perf/inject: Fix build id injection (Jiri Olsa) [1169436]
-- [tools] perf/symbols: Fix missing GNU IFUNC symbols (Jiri Olsa) [1169436]
-- [tools] perf: Fix missing kernel map load (Jiri Olsa) [1169436]
-- [tools] perf/record: Select comm_exec flag if supported (Jiri Olsa) [1169436]
-- [tools] perf/script: Display PERF_RECORD_MISC_COMM_EXEC flag (Jiri Olsa) [1169436]
-- [tools] perf/machine: Fix the value used for unknown pids (Jiri Olsa) [1169436]
-- [tools] perf/script: Provide additional sample information on generic events (Jiri Olsa) [1169436]
-- [tools] perf/script: Add callchain to generic and tracepoint events (Jiri Olsa) [1169436]
-- [tools] perf/script: Add missing calls to Py_DECREF for return values (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Add skip_event() for --duration option (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Move arch specific code into arch/ (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Use defines of kvm events (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Add more options to IO mode (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Conditionally update start_time on fork (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Implement IO mode (Jiri Olsa) [1169436]
-- [tools] perf/timechart: Fix rendering in Firefox (Jiri Olsa) [1169436]
-- [tools] perf/trace: Fix build on 32-bit systems (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add pagefault statistics (Jiri Olsa) [1169436]
-- [tools] perf: Suggest using -f to override perf.data file ownership message (Jiri Olsa) [1169436]
-- [tools] perf: Convert open coded equivalents to asprintf() (Jiri Olsa) [1169436]
-- [tools] perf: Allow to use cpuinfo on s390 (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Refactoring of cpu_isa_config() (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Simplify exit reasons tables definitions (Jiri Olsa) [1169436]
-- [tools] perf/kvm: Introduce HAVE_KVM_STAT_SUPPORT flag (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Left justify column headers (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Add ui.show-headers config file option (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Display columns header text on 'H' press (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Add support for showing columns header (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Override ui_browser refresh_dimensions method (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Introduce gotorc method (Jiri Olsa) [1169436]
-- [tools] perf/ui/browser: Allow overriding refresh_dimensions method (Jiri Olsa) [1169436]
-- [tools] perf/ui/browser: Add ->rows to disambiguate from ->height (Jiri Olsa) [1169436]
-- [tools] perf/x86/amd: Try to fix some mem allocation failure handling (Jiri Olsa) [1169436]
-- [tools] perf/script: Handle the num array type in python properly (Jiri Olsa) [1169436]
-- [tools] perf/script: Move the number processing into its own function (Jiri Olsa) [1169436]
-- [tools] perf: Fix wrong condition for allocation failure (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Fix a risk for doing free on uninitialized pointer (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add possibility to switch off syscall events (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add pagefaults record and replay support (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add support for pagefault tracing (Jiri Olsa) [1169436]
-- [tools] perf/trace: Add perf_event parameter to tracepoint_handler (Jiri Olsa) [1169436]
-- [tools] perf/scripts: Fallback to syscalls:* when raw_syscalls:* is not available (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Clean up format of args in jbd2 plugin (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Clean up format of args in cfg80211 plugin (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Fix format in plugin_kvm (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Fix and cleanup kvm_nested_vmexit tracepoints (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Add back in kvm plugins nested_vmexit events (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Factor out print_exit_reason in kvm plugin (Jiri Olsa) [1169436]
-- [tools] lib/traceevent: Report unknown VMX exit reasons with code (Jiri Olsa) [1169436]
-- [tools] perf/bench/sched-messaging: Drop barf() (Jiri Olsa) [1169436]
-- [tools] perf/bench/mem: The -o and -n options are mutually exclusive (Jiri Olsa) [1169436]
-- [tools] perf/bench/futex: Use global --repeat option (Jiri Olsa) [1169436]
-- [tools] perf/bench: Add --repeat option (Jiri Olsa) [1169436]
-- [tools] perf/bench/sched-messaging: Plug memleak (Jiri Olsa) [1169436]
-- [tools] perf/ui/browser: Fix scrollbar refresh row index (Jiri Olsa) [1169436]
-- [tools] perf/hists/browser: Remove ev_name argument from perf_evsel__hists_browse (Jiri Olsa) [1169436]
-- [tools] perf/trace: Cache the is_exit syscall test (Jiri Olsa) [1169436]
-- [tools] perf/trace: Remove needless reassignments (Jiri Olsa) [1169436]
-- [tools] perf/evlist: Add suggestion of how to set perf_event_paranoid sysctl (Jiri Olsa) [1169436]
-- [tools] perf/trace: Fix up fd -> pathname resolution (Jiri Olsa) [1169436]
-- [tools] perf: Fix corruption of sibling list with hotplug (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Revert incomplete and undocumented Broadwell client support (Jiri Olsa) [1169436]
-- [tools] perf: Fix typos in sample code in the perf_event.h header (Jiri Olsa) [1169436]
-- [tools] perf: Fix and clean up initialization of pmu::event_idx (Jiri Olsa) [1169436]
-- [tools] perf: Fix bogus kernel printk (Jiri Olsa) [1169436]
-- [tools] perf: Fix unclone_ctx() vs. locking (Jiri Olsa) [1169436]
-- [tools] perf/x86: Tone down kernel messages when the PMU check fails in a virtual environment (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Use Broadwell cache event list for Haswell (Jiri Olsa) [1169436]
-- [tools] perf/x86: Add INST_RETIRED.ALL workarounds (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Add Broadwell core support (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Document all Haswell models (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Remove incorrect model number from Haswell perf (Jiri Olsa) [1169436]
-- [tools] Revert: perf: Do not allow optimized switch for non-cloned events (Jiri Olsa) [1169436]
-- [tools] perf: Fix child event initial state setup (Jiri Olsa) [1169436]
-- [tools] perf: Do not POLLHUP event if it has children (Jiri Olsa) [1169436]
-- [tools] perf: Do not check PERF_EVENT_STATE_EXIT on syscall read path (Jiri Olsa) [1169436]
-- [tools] perf/x86: Fix section mismatch in split uncore driver (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Mark initialization code as such (Jiri Olsa) [1169436]
-- [tools] perf/core: Replace rcu_assign_pointer() with RCU_INIT_POINTER() (Jiri Olsa) [1169436]
-- [tools] perf/callchain: Replace rcu_assign_pointer() with RCU_INIT_POINTER() (Jiri Olsa) [1169436]
-- [tools] perf: Add PERF_EVENT_STATE_EXIT state for events with exited task (Jiri Olsa) [1169436]
-- [tools] perf: Fix perf_poll to return proper POLLHUP value (Jiri Olsa) [1169436]
-- [tools] perf/x86: Clean up __intel_pmu_pebs_event() code (Jiri Olsa) [1169436]
-- [tools] perf/x86: Fix data source encoding issues for load latency/precise store (Jiri Olsa) [1169436]
-- [tools] perf/x86: Don't mark DataLA addresses as store (Jiri Olsa) [1169436]
-- [tools] perf/x86: Revamp PEBS event selection (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Mark MEM_LOAD_UOPS_MISS_RETIRED as precise on SNB (Jiri Olsa) [1169436]
-- [tools] perf/x86: Fix pp without LBR (Jiri Olsa) [1169436]
-- [tools] perf: Do poll_wait() before checking condition in perf_poll() (Jiri Olsa) [1169436]
-- [tools] perf: Add queued work to remove orphaned child events (Jiri Olsa) [1169436]
-- [tools] perf: Set owner pointer for kernel events (Jiri Olsa) [1169436]
-- [tools] perf/x86/intel: Update Intel models (Jiri Olsa) [1169436]
-- [tools] perf/cgroup: Remove perf_put_cgroup() (Jiri Olsa) [1169436]
-- [tools] perf: fix perf bug in fork() (Jiri Olsa) [1169436]
-- [tools] perf: Fix a race condition in perf_remove_from_context() (Jiri Olsa) [1169436]
-- [tools] perf: Handle compat ioctl (Jiri Olsa) [1169436]
-- [tools] perf/x86: Micro-optimize nhmex_rbox_get_constraint() (Jiri Olsa) [1169436]
-- [tools] perf: Make perf_event_init_context() function static (Jiri Olsa) [1169436]
-
-* Mon Mar 23 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-233.el7]
-- [x86] kvm: Prevent guest from writing non-canonical shared MSR addresses (Petr  Matousek) [1144885] {CVE-2014-3610}
-- [x86] kvm: Check non-canonical addresses upon WRMSR (Petr  Matousek) [1144885] {CVE-2014-3610}
-- [infiniband] core: Prevent integer overflow in ib_umem_get address arithmetic (Doug Ledford) [1179347] {CVE-2014-8159}
-- [fs] bio: fix argument of __bio_add_page() for max_sectors > 0xffff (Fam Zheng) [1184759]
-- [x86] pci: Add NEC variants to Stratus ftServer PCIe DMI check (Myron Stowe) [1187761]
-- [s390] zcrypt: enable s390 hwrng to seed kernel entropy (Hendrik Brueckner) [1196398]
-- [s390] zcrypt: improve device probing for zcrypt adapter cards (Hendrik Brueckner) [1196398]
-- [acpi] fan: Use bus id as the name for non PNP0C0B (Fan) devices (Prarit Bhargava) [1174059]
-- [acpi] fan: support INT3404 thermal device (Prarit Bhargava) [1174059]
-- [acpi] fan: add ACPI 4.0 style fan support (Prarit Bhargava) [1174059]
-- [acpi] fan: convert to platform driver (Prarit Bhargava) [1174059]
-- [acpi] fan: use acpi_device_xxx_power instead of acpi_bus equivelant (Prarit Bhargava) [1174059]
-- [acpi] fan: remove unused macro (Prarit Bhargava) [1174059]
-- [acpi] fan: remove no need check for device pointer (Prarit Bhargava) [1174059]
-- [acpi] fan: printk replacement (Prarit Bhargava) [1174059]
-- [acpi] fan: do nothing in suspend and poweroff callback (Prarit Bhargava) [1174059]
-- [acpi] fan: fix fan driver compile error when CONFIG_PM_SLEEP is undefined (Prarit Bhargava) [1174059]
-- [acpi] thermal: step_wise: return instance->target by default (Prarit Bhargava) [1174059]
-- [acpi] thermal: step_wise: cdev only needs update on a new target state (Prarit Bhargava) [1174059]
-- [netdrv] vmxnet3: Reinitialize vmxnet3 backend on wakeup from hibernate (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Make Rx ring 2 size configurable (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Move PCI_VENDOR_ID_VMWARE to pci_ids.h (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Check for map error in vmxnet3_set_mc (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Remove DEFINE_PCI_DEVICE_TABLE macro use (Neil Horman) [1181807]
-- [netdrv] vmxnet3: fix decimal printf format specifiers prefixed with 0x (Neil Horman) [1181807]
-- [netdrv] vmxnet3: adjust ring sizes when interface is down (Neil Horman) [1181807]
-- [netdrv] vmxnet3: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Neil Horman) [1181807]
-- [netdrv] vmxnet3: get rid of SET_ETHTOOL_OPS (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Call dev_kfree_skb_any instead of dev_kfree_skb (Neil Horman) [1181807]
-- [netdrv] vmxnet3: fix building without CONFIG_PCI_MSI (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Use pci_enable_msix_range() instead of pci_enable_msix() (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Fix MSI-X/MSI enablement code (Neil Horman) [1181807]
-- [netdrv] vmxnet3: delete non-required instances of include <linux/init.h> (Neil Horman) [1181807]
-- [netdrv] vmxnet3: use initialized skb pointer to set hash (Neil Horman) [1181807]
-- [netdrv] vmxnet3: calls skb_set_hash (Neil Horman) [1181807]
-- [netdrv] vmxnet3: remove unnecessary pci_set_drvdata() (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Remove extern from function prototypes (Neil Horman) [1181807]
-- [netdrv] vmxnet3: Add support for virtual IOMMU (Neil Horman) [1181807]
-- [net] netpoll: Remove dead packet receive code (CONFIG_NETPOLL_TRAP) (Neil Horman) [1181906]
-- [net] netpoll: Move all receive processing under CONFIG_NETPOLL_TRAP (Neil Horman) [1181906]
-- [net] netpoll: Consolidate neigh_tx processing in service_neigh_queue (Neil Horman) [1181906]
-- [net] netpoll: Move netpoll_trap under CONFIG_NETPOLL_TRAP (Neil Horman) [1181906]
-- [net] netpoll: Don't drop all received packets (Neil Horman) [1181906]
-- [net] netpoll: Add netpoll_rx_processing (Neil Horman) [1181906]
-- [net] netpoll: Warn if more packets are processed than are budgeted (Neil Horman) [1181906]
-- [net] netpoll: Visit all napi handlers in poll_napi (Neil Horman) [1181906]
-- [net] netpoll: Pass budget into poll_napi (Neil Horman) [1181906]
-- [net] netpoll: move setting of NETPOLL_RX_DROP into netpoll_poll_dev (Neil Horman) [1181906]
-- [net] netpoll: fix netconsole IPv6 setup (Neil Horman) [1181906]
-- [net] netpoll: Use ether_addr_copy (Neil Horman) [1181906]
-- [net] netpoll: Fix missing TXQ unlock and and OOPS (Neil Horman) [1181906]
-- [net] netpoll: fix rx_hook() interface by passing the skb (Neil Horman) [1181906]
-- [iommu] vt-d: Work around broken RMRR firmware entries (Myron Stowe) [1195802]
-- [iommu] vt-d: Store bus information in RMRR PCI device path (Myron Stowe) [1195802]
-- [pci] Handle read-only BARs on AMD CS553x devices (Myron Stowe) [1198314]
-- [x86] kvm: add tracepoint to wait_lapic_expire (Marcelo Tosatti) [1175445]
-- [x86] kvm: add option to advance tscdeadline hrtimer expiration (Marcelo Tosatti) [1175445]
-- [powerpc] powernv: Add winkle support for offline cpus (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Redesign idle states management (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Enable Offline CPUs to enter deep idle states (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Return to cpu offline loop when finished in KVM guest (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Switch off MMU before entering nap/sleep/rvwinkle mode (Gustavo Duarte) [1123121]
-- [powerpc] powernv: Don't call generic code on offline cpus (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Back-end cpuidle driver for powernv platform (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Only clear LPCR decrementer wakeup bit on fast sleep entry (Gustavo Duarte) [1123121]
-- [kernel] tick: Fixup more fallout from hrtimer broadcast mode (Gustavo Duarte) [1123121]
-- [kernel] time: Fixup fallout from recent clockevent/tick changes (Gustavo Duarte) [1123121]
-- [kernel] tick: Introduce hrtimer based broadcast (Gustavo Duarte) [1123121]
-- [cpuidle] Handle clockevents_notify(BROADCAST_ENTER) failure (Gustavo Duarte) [1123121]
-- [kernel] time: Change the return type of clockevents_notify() to integer (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Fix parsing of idle state flags from device-tree (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Parse device tree to setup idle states (Gustavo Duarte) [1123121]
-- [cpuidle] powernv: Add "Fast-Sleep" CPU idle state (Gustavo Duarte) [1123121]
-- [input] mouse: synaptics - remove X250 from the topbuttonpad list (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - remove X1 Carbon 3rd gen from the topbuttonpad list (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - re-route tracksticks buttons on the Lenovo 2015 series (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - remove TOPBUTTONPAD property for Lenovos 2015 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - retrieve the extended capabilities in query $10 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - do not retrieve the board id on old firmwares (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - handle spurious release of trackstick buttons (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - fix middle button on Lenovo 2015 products (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - skip quirks when post-2013 dimensions (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - support min/max board id in min_max_pnpid_table (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - remove obsolete min/max quirk for X240 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - query min dimensions for fw v8.1 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - log queried and quirked dimension values (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - split synaptics_resolution(), query first (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - adjust min/max for Lenovo ThinkPad X1 Carbon 2nd (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - adjust min/max on Thinkpad E540 (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - add min/max quirk for Lenovo T440s (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: psmouse - add psmouse_matches_pnp_id helper function (Benjamin Tissoires) [1186106 1186112]
-- [input] mouse: synaptics - add min/max quirk for pnp-id LEN2002 (Edge E531) (Benjamin Tissoires) [1186106 1186112]
-
-* Fri Mar 13 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-232.el7]
-- [fs] fsnotify: fix handling of renames in audit (Paul Moore) [1191562]
-- [crypto] rng: RNGs must return 0 in success case (Herbert Xu) [1198978]
-- [cpufreq] intel_pstate: Add support for SkyLake (Steve Best) [1189908]
-- [s390] zcrypt: fixed domain scanning problem again (Hendrik Brueckner) [1193604]
-- [s390] zcrypt: Number of supported ap domains is not retrievable (Hendrik Brueckner) [1193604]
-- [s390] kprobes: add exrl to list of prohibited opcodes (Hendrik Brueckner) [1193608]
-- [s390] kprobes: add support for compare and branch instructions (Hendrik Brueckner) [1193608]
-- [s390] bpf: jit: initialize A register if 1st insn is BPF_S_LDX_B_MSH (Hendrik Brueckner) [1193604]
-- [s390] bpf: jit: fix 32 bit divisions, use unsigned divide instructions (Hendrik Brueckner) [1193604]
-- [s390] bpf: Zero extend parameters before calling C function (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix sk_load_byte_msh() (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix offset parameter for skb_copy_bits() (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix skb_copy_bits() parameter passing (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix JMP_JGE_K (A >= K) and JMP_JGT_K (A > K) (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix JMP_JGE_X (A > X) and JMP_JGT_X (A >= X) (Hendrik Brueckner) [1193604]
-- [s390] bpf: Fix ALU_NEG (A = -A) (Hendrik Brueckner) [1193604]
-- [s390] dasd: remove unused code (Hendrik Brueckner) [1186326]
-- [s390] dasd: fix infinite loop during format (Hendrik Brueckner) [1186326]
-- [kernel] module: set nx before marking module MODULE_STATE_COMING (Hendrik Brueckner) [1196977]
-- [s390] vdso: fix clock_gettime for CLOCK_THREAD_CPUTIME_ID, -2 and -3 (Hendrik Brueckner) [1195671]
-- [s390] dasd: retry partition detection (Hendrik Brueckner) [1193605]
-- [s390] dasd: fix list corruption for sleep_on requests (Hendrik Brueckner) [1186319]
-- [net] openvswitch: Fix net exit (Jiri Benc) [1200859]
-- [net] team: fix possible null pointer dereference in team_handle_frame (Jiri Pirko) [1188496]
-
-* Tue Mar 10 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-231.el7]
-- [crypto] aesni: fix "by8" variant for 128 bit keys (Herbert Xu) [1174971]
-- [crypto] aesni: remove unused defines in "by8" variant (Herbert Xu) [1174971]
-- [crypto] aesni: fix counter overflow handling in "by8" variant (Herbert Xu) [1174971]
-- [crypto] aes: AES CTR x86_64 "by8" AVX optimization (Herbert Xu) [1174971]
-- [fs] gfs2: Move gfs2_file_splice_write outside of #ifdef (Robert S Peterson) [1193910]
-- [fs] gfs2: Allocate reservation during splice_write (Robert S Peterson) [1193910]
-- [fs] Convert MessageID in smb2_hdr to LE (Sachin Prabhu) [1161441]
-- [fs] nfsd: update mtime on truncate ("J. Bruce Fields") [1162558]
-- [virt] kvm: ensure hard lockup detection is disabled by default (Andrew Jones) [1111262]
-- [watchdog] control hard lockup detection default (Andrew Jones) [1111262]
-- [watchdog] Fix print-once on enable (Andrew Jones) [1111262]
-- [tools] cpupower: Fix no idle state information return value (Prarit Bhargava) [1168046]
-- [misc] genwqe: Fix problem when reading HSI and Retc (Steve Best) [1188653]
-- [char] tpm: Added Little Endian support to vtpm module (Steve Best) [1189017]
-- [idle] intel_idle: support additional Broadwell model (Steve Best) [1166315]
-- [powerpc] iommu: ddw: Fix endianness (Steve Best) [1189040]
-- [powerpc] Fix sys_call_table declaration to enable syscall tracing (Steve Best) [1172684]
-- [powerpc] pseries: Fix endian problems with LE migration (Steve Best) [1183198]
-- [powerpc] powernv: Ignore smt-enabled on Power8 and later (Steve Best) [1180254]
-- [powerpc] xmon: Fix another endiannes issue in RTAS call from xmon (Steve Best) [1186803]
-- [pci] Add informational printk for invalid BARs (Myron Stowe) [1130170]
-- [pci] Shrink decoding-disabled window while sizing BARs (Myron Stowe) [1130170]
-- [pci] Restore detection of read-only BARs (Myron Stowe) [1130170]
-- [kernel] resources: Clarify sanity check message (Myron Stowe) [1130170]
-- [pci] Don't add disabled subtractive decode bus resources (Myron Stowe) [1130170]
-- [pci] Don't print anything while decoding is disabled (Myron Stowe) [1130170]
-- [pci] Don't set BAR to zero if dma_addr_t is too small (Myron Stowe) [1130170]
-- [pci] Don't convert BAR address to resource if dma_addr_t is too small (Myron Stowe) [1130170]
-- [pci] Reject BAR above 4GB if dma_addr_t is too small (Myron Stowe) [1130170]
-- [pci] Fail safely if we can't handle BARs larger than 4GB (Myron Stowe) [1130170]
-
-* Fri Feb 27 2015 Rafael Aquini <aquini@redhat.com> [3.10.0-230.el7]
-- [net] sctp: fix slab corruption from use after free on INIT collisions (Daniel Borkmann) [1183959] {CVE-2015-1421}
-- [net] ipv6: Fixed support for blackhole and prohibit routes (Hannes Frederic Sowa) [1129731]
-- [kernel] audit: replace getname()/putname() hacks with reference counters (Paul Moore) [1155208]
-- [kernel] audit: fix filename matching in __audit_inode() and __audit_inode_child() (Paul Moore) [1155208]
-- [kernel] audit: enable filename recording via getname_kernel() (Paul Moore) [1155208]
-- [fs] namei: simpler calling conventions for filename_mountpoint() (Paul Moore) [1155208]
-- [fs] namei: create proper filename objects using getname_kernel() (Paul Moore) [1155208]
-- [fs] namei: rework getname_kernel to handle up to PATH_MAX sized filenames (Paul Moore) [1155208]
-- [fs] namei: cut down the number of do_path_lookup() callers (Paul Moore) [1155208]
-- [fs] execve: use 'struct filename *' for executable name passing (Paul Moore) [1155208]
-- [x86] ioapic: kcrash: Prevent crash_kexec() from deadlocking on ioapic_lock (Baoquan He) [1182424]
-- [md] dm-thin: don't allow messages to be sent to a pool target in READ_ONLY or FAIL mode (Mike Snitzer) [1184592]
-- [kernel] workqueue: fix subtle pool management issue which can stall whole worker_pool (Eric Sandeen) [1165535]
-- [platform] thinkpad_acpi: support new BIOS version string pattern (Benjamin Tissoires) [1194830]
-- [virt] storvsc: ring buffer failures may result in I/O freeze (Vitaly Kuznetsov) [1171409]
-- [kernel] audit: restore AUDIT_LOGINUID unset ABI (Richard Guy Briggs) [1120491]
-- [crypto] testmgr: mark rfc4106(gcm(aes)) as fips_allowed (Jarod Wilson) [1185400]
-
-* Thu Jan 29 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-229.el7]
-- [net] rtnetlink: allow to register ops without ops->setup set (Jiri Benc) [1186492]
-
-* Thu Jan 29 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-228.el7]
-- [fs] NFSv4.1: Fix an Oops in nfs41_walk_client_list (Steve Dickson) [1185784]
-- [misc] redhat: don't suppress Revert patches from changelog (Jarod Wilson) [1187353]
-- [infiniband] Revert: ipoib: Consolidate rtnl_lock tasks in workqueue (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: Make the carrier_on_task race aware (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: fix MCAST_FLAG_BUSY usage (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: fix mcast_dev_flush/mcast_restart_task race (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: change init sequence ordering (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: Use dedicated workqueues per interface (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: Make ipoib_mcast_stop_thread flush the workqueue (Doug Ledford) [1179740]
-- [infiniband] Revert: ipoib: No longer use flush as a parameter (Doug Ledford) [1179740]
-- [fs] fix deadlock in cifs_ioctl_clone() (Sachin Prabhu) [1183980]
-- [md] dm-cache: fix missing ERR_PTR returns and handling (Mike Snitzer) [1182665]
-- [fs] cifs: fix regression in cifs_create_mf_symlink() (Sachin Prabhu) [1186324]
-- [net] ipv4: try to cache dst_entries which would cause a redirect (Hannes Frederic Sowa) [1181819]
-- [fs] coredump: add new P variable in core_pattern (Jiri Olsa) [1186360]
-- [drm] fix fb-helper vs MST dangling connector ptrs (Rob Clark) [1184968]
-- [net] bridge: Program port vlan filters only if filtering is enabled in bridge (Vlad Yasevich) [1183958]
-- [fs] cifs: Complete oplock break jobs before closing file handle (Sachin Prabhu) [1177215]
-- [fs] LOCKD: Fix a race when initialising nlmsvc_timeout (Benjamin Coddington) [1144982]
-- [scsi] hpsa: add in P840ar controller model name (Joseph Szczypek) [1185467]
-- [scsi] hpsa: add in gen9 controller model names (Joseph Szczypek) [1185467]
-
-* Tue Jan 27 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-227.el7]
-- [fs] ext4: fix overwrite race condition (Jacob Tanenbaum) [1152607] {CVE-2014-8086}
-- [media] ttusb-dec: buffer overflow in ioctl (Alexander Gordeev) [1167116] {CVE-2014-8884}
-- [drm] i915: demote opregion excessive timeout WARN_ONCE to DRM_INFO_ONCE (Rob Clark) [1145627]
-- [md] Revert: raid56: Don't perform reads to support writes until stripe is ready (Jes Sorensen) [1153796]
-- [md] Revert: raid5: avoid livelock caused by non-aligned writes (Jes Sorensen) [1153796]
-- [drm] i915: further quiet i915 (Rob Clark) [1163074]
-- [scsi] megaraid_sas: endianness related bug fixes and code optimization (Tomas Henzl) [1179748]
-- [s390] crypto: kernel oops at insmod of the z90crypt device driver (Hendrik Brueckner) [1172136]
-- [drm] mgag200: Add command line option to specify preferred depth (Dave Airlie) [1044555]
-- [drm] mgag200: Consolidate depth/bpp handling (Dave Airlie) [1044555]
-- [fs] Revert: ext4: revert Disable punch hole on non-extent mapped files (Lukas Czerner) [1176840]
-
-* Sun Jan 25 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-226.el7]
-- [md] dm-cache: fix problematic dual use of a single migration count variable (Mike Snitzer) [1182665]
-- [md] dm-cache: share cache-metadata object across inactive and active DM tables (Mike Snitzer) [1182665]
-- [net] tun/macvtap: use consume_skb() instead of kfree_skb() when needed (Jiri Pirko) [1182805]
-- [virt] Revert: hyperv: Add handler for RNDIS_STATUS_NETWORK_CHANGE event (Jason Wang) [1164163]
-- [virt] kvm/vmx: invalid host cr4 handling across vm entries (Jacob Tanenbaum) [1153329] {CVE-2014-3690}
-- [virt] virtio-scsi: Fix the race condition in virtscsi_handle_event (Fam Zheng) [1152140]
-- [virt] kvm: workaround SuSE's 2.6.16 pvclock vs masterclock issue (Marcelo Tosatti) [1177718]
-- [fs] bdi: avoid oops on device removal (Fam Zheng) [1087179]
-- [mm] backing_dev: fix hung task on sync (Fam Zheng) [1087179]
-- [mm] Revert: vmstat: create separate function to fold per cpu diffs into local counters (Larry Woodman) [1179654]
-- [mm] Revert: vmstat: create fold_diff (Larry Woodman) [1179654]
-- [mm] Revert: vmstat: use this_cpu() to avoid irqon/off sequence in refresh_cpu_vm_stats (Larry Woodman) [1179654]
-- [mm] Revert: vmstat: on-demand vmstat workers V8 (Larry Woodman) [1179654]
-
-* Thu Jan 22 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-225.el7]
-- [net] team: avoid possible underflow of count_pending value for notify_peers and mcast_rejoin (Jiri Pirko) [1176697]
-- [fs] seq_file: don't include mm.h in genksyms calculation (Ian Kent) [1183280]
-- [scsi] Avoid crashing if device uses DIX but adapter does not support it (Ewan Milne) [1093012]
-
-* Mon Jan 19 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-224.el7]
-- [fs] xfs: catch invalid negative blknos in _xfs_buf_find() (Eric Sandeen) [1164128]
-- [fs] proc: make proc_fd_permission() thread-friendly (Carlos Maiolino) [1171242]
-- [fs] rpc: fix xdr_truncate_encode to handle buffer ending on page boundary ("J. Bruce Fields") [1176641]
-- [fs] nfs: nfs4_fl_prepare_ds, fix bugs when the connect attempt fails (Steve Dickson) [1113248]
-- [fs] gfs2: fix bad inode i_goal values during block allocation (Abhijith Das) [1144209]
-- [fs] nfsd: allow turning off nfsv3 readdir_plus (Steve Dickson) [1178949]
-- [fs] nfsd4: fix xdr4 count of server in fs_location4 (Benjamin Coddington) [1164055]
-- [fs] nfsd4: fix xdr4 inclusion of escaped char (Benjamin Coddington) [1164055]
-- [fs] xfs: replace global xfslogd wq with per-mount wq (Brian Foster) [1155929]
-- [fs] xfs: mark all internal workqueues as freezable (Brian Foster) [1155929]
-- [fs] overlayfs: Add call to mark_tech_preview (BZ 1180613) (David Howells) [1180613]
-- [fs] aio: fix uncorrent dirty pages accouting when truncating AIO ring buffer (Jeff Moyer) [1159346]
-- [infiniband] ocrdma: fix hardcoded max cqe and max send wr (Doug Ledford) [1158148]
-- [crypto] aesni-intel: Add support for 192 & 256 bit keys to AESNI RFC4106 (Jarod Wilson) [1176266]
-- [block] blk-mq: Fix a use-after-free (Fam Zheng) [1152159]
-- [crypto] drbg: panic on continuous self test error (Jarod Wilson) [1179496]
-- [ethernet] mlx4: Cache line CQE/EQE stride fixes (Doug Ledford) [1088499 1173483]
-- [ethernet] mlx4: Add mlx4_en_get_cqe helper (Doug Ledford) [1088499 1173483]
-- [ethernet] mlx4: Cache line EQE size support (Doug Ledford) [1088499 1173483]
-- [infiniband] ocrdma: Fix ocrdma_query_qp() to report q_key value for UD QPs (Doug Ledford) [1167256]
-- [infiniband] ocrdma: Always resolve destination mac from GRH for UD QPs (Doug Ledford) [1167256]
-- [net] gre: fix the inner mac header in nbma tunnel xmit path (Alexander Duyck) [1168608]
-
-* Tue Jan 13 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-223.el7]
-- [md] dm-thin: fix crash by initializing thin device's refcount and completion earlier (Mike Snitzer) [1175282]
-- [scsi] storvsc: Fix a bug in storvsc limits (Vitaly Kuznetsov) [1174162]
-- [iser-target] Ignore non TEXT + LOGOUT opcodes for discovery (Andy Grover) [1058736]
-- [iser-target] Add support for ISCSI_OP_TEXT opcode + payload handling (Andy Grover) [1058736]
-- [iser-target] Rename sense_buf_dma/len to pdu_dma/len (Andy Grover) [1058736]
-- [iscsi-target] Add IFC_SENDTARGETS_SINGLE support (Andy Grover) [1058736]
-- [iscsi-target] Move sendtargets parsing into iscsit_process_text_cmd (Andy Grover) [1058736]
-- [iscsi-target] Allow ->MaxXmitDataSegmentLength assignment for iser discovery (Andy Grover) [1058736]
-- [iscsi-target] Refactor ISCSI_OP_TEXT_RSP TX handling (Andy Grover) [1058736]
-- [iscsi-target] Refactor ISCSI_OP_TEXT RX handling (Andy Grover) [1058736]
-- [iscsi] isert-target: Refactor ISCSI_OP_NOOP RX handling (Andy Grover) [1058736]
-- [net] description of dma_cookie cause make xmldocs warning (Jiri Benc) [1173444]
-- [net] tcp: make tcp_cleanup_rbuf private (Jiri Benc) [1173444]
-- [net] net_dma: revert 'copied_early' (Jiri Benc) [1173444]
-- [net] net_dma: mark broken (Jiri Benc) [1173444]
-- [net] unix: allow set_peek_off to fail (Jiri Benc) [1123777]
-- [net] ppp: ppp-ioctl.h: pull in ppp_defs.h (Jiri Benc) [1159802]
-- [net] bridge: Add filtering support for default_pvid (Vlad Yasevich) [1164653]
-- [net] bridge: Simplify pvid checks (Vlad Yasevich) [1164653]
-- [net] bridge: Add a default_pvid sysfs attribute (Vlad Yasevich) [1164653]
-- [net] bridge: Prepare for 802.1ad vlan filtering support (Vlad Yasevich) [1164653]
-- [net] bridge: Fix the way to check if a local fdb entry can be deleted (Vlad Yasevich) [1164653]
-- [net] bridge: Fix the way to insert new local fdb entries in br_fdb_changeaddr (Vlad Yasevich) [1164653]
-- [net] Remove extern from function prototypes (Vlad Yasevich) [1164653]
-- [ethernet] mlx5: Add more supported devices (Amir Vadai) [1169277]
-- [infiniband] mlx4: Fix wrong usage of IPv4 protocol for multicast attach/detach (Amir Vadai) [1151331]
-- [ethernet] mlx4: mlx4_en_set_settings() always fails when autoneg is set (Amir Vadai) [1170129]
-
-* Thu Jan 08 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-222.el7]
-- [scsi] qla2xxx: Update version number to 8.07.00.08.07.1-k2 (Chad Dupuis) [1085239]
-- [scsi] qla2xxx: Move mailbox failure messages to a default debug level (Chad Dupuis) [1085239]
-- [security] commoncap: don't alloc the credential unless needed in cap_task_prctl (Paul Moore) [1056347]
-- [iommu] vt-d: Fix dmar_domain leak in iommu_attach_device (Myron Stowe) [1109829]
-- [iommu] vt-d: Only remove domain when device is removed (Myron Stowe) [1109829]
-- [base] core: Add BUS_NOTIFY_REMOVED_DEVICE event (Myron Stowe) [1109829]
-- [powerpc] kdump: Ignore failure in enabling big endian exception during crash (Steve Best) [1170362]
-- [infiniband] srpt: convert printk's to pr_* functions (Doug Ledford) [1174910]
-- [infiniband] srpt: Handle GID change events (Doug Ledford) [1174910]
-- [input] alps: fix v4 button press recognition (Benjamin Tissoires) [1107819]
-- [input] alps: v7 - document the v7 touchpad packet protocol (Benjamin Tissoires) [1107819]
-- [input] alps: v7 - fix finger counting for > 2 fingers on clickpads (Benjamin Tissoires) [1107819]
-- [input] alps: v7 - sometimes a single touch is reported in mt[1] (Benjamin Tissoires) [1107819]
-- [input] alps: v7 - ignore new packets (Benjamin Tissoires) [1107819]
-- [powerpc] perf/hv-24x7: Use kmem_cache_free() instead of kfree (Gustavo Duarte) [1171795]
-- [powerpc] perf/hv-24x7: Use per-cpu page buffer (Gustavo Duarte) [1171795]
-- [powerpc] perf/hv-24x7: use kmem_cache instead of aligned stack allocations (Gustavo Duarte) [1171795]
-- [powerpc] perf/hv-24x7: Use kmem_cache_free (Gustavo Duarte) [1171795]
-- [powerpc] Fill in si_addr_lsb siginfo field (Gustavo Duarte) [1173267]
-- [powerpc] Add VM_FAULT_HWPOISON handling to powerpc page fault handler (Gustavo Duarte) [1173267]
-- [fs] dlm: fix missing endian conversion of rcom_status flags (Andrew Price) [1175900]
-- [scsi] add Intel Multi-Flex to scsi scan blacklist (Hannes Frederic Sowa) [1175862]
-- [scsi] do not issue SCSI RSOC command to Promise Vtrak E610f (Hannes Frederic Sowa) [1175862]
-- [scsi] scsi_lib: rate-limit the error message from failing commands (Tomas Henzl) [1175785]
-- [scsi] iscsi_ibft: Fix finding Broadcom specific ibft sign (Chris Leech) [1095169]
-
-* Tue Jan 06 2015 Jarod Wilson <jarod@redhat.com> [3.10.0-221.el7]
-- [ethernet] enic: fix rx skb checksum (Stefan Assmann) [1154182]
-- [x86] uv: make kdump default action for 'power nmi' (George Beshers) [1175560]
-- [virt] powerpc/kvm: book3s_hv - Fix KSM memory corruption (David Gibson) [1170394]
-- [pci] Revert: Remove from bus_list and release resources in pci_release_dev() (Prarit Bhargava) [1172946]
-- [powercap] rapl: add support for CPU model 0x3f (Rui Wang) [1177579]
-- [kernel] audit: don't attempt to lookup PIDs when changing PID filtering audit rules (Paul Moore) [1172624]
-- [ethernet] ixgbe: avoid possible read_reg panic caused by late method binding (John Greene) [1145772]
-- [ethernet] ixgbe: bump version number (John Greene) [1145772]
-- [ethernet] ixgbe: Add X550 support function pointers (John Greene) [1145772]
-- [ethernet] ixgbe: Add new support for X550 MAC's (John Greene) [1145772]
-- [ethernet] ixgbe: Add x550 SW/FW semaphore support (John Greene) [1145772]
-- [ethernet] ixgbe: add methods for combined read and write operations (John Greene) [1145772]
-- [ethernet] ixgbe: cleanup checksum to allow error results (John Greene) [1145772]
-- [ethernet] ixgbe: Add timeout parameter to ixgbe_host_interface_command (John Greene) [1145772]
-- [ethernet] ixgbe: Fix spurious release of semaphore in EEPROM access (John Greene) [1145772]
-- [drm] i915: remove the IRQs enabled WARN from intel_disable_gt_powersave (Rob Clark) [1173317]
-- [drm] i915: tame the chattermouth (Rob Clark) [1173317]
-- [drm] ttm: Avoid memory allocation from shrinker functions (Rob Clark) [1173317]
-- [drm] ttm: Fix possible stack overflow by recursive shrinker calls (Rob Clark) [1173317]
-- [drm] ttm: Use mutex_trylock() to avoid deadlock inside shrinker functions (Rob Clark) [1173317]
-- [drm] video/fb: Propagate error code from failing to unregister conflicting fb (Rob Clark) [1173317]
-- [drm] i915: save/restore GMBUS freq across suspend/resume on gen4 (Rob Clark) [1173317]
-- [drm] i915: resume MST after reading back hw state (Rob Clark) [1173317]
-- [drm] dp-mst: Remove branches before dropping the reference (Rob Clark) [1173317]
-- [drm] fb_helper: move deferred fb checking into restore mode (Rob Clark) [1173317]
-- [drm] dp: retry AUX transactions 32 times (v1.1) (Rob Clark) [1173317]
-- [drm] i915: Ignore long hpds on eDP ports (Rob Clark) [1173317]
-- [drm] i915/dp: only use training pattern 3 on platforms that support it (Rob Clark) [1173317]
-- [drm] radeon: sync all BOs involved in a CS (Rob Clark) [1173317]
-- [drm] radeon: kernel panic in drm_calc_vbltimestamp_from_scanoutpos with 3.18.0-rc6 (Rob Clark) [1173317]
-- [drm] i915: Unlock panel even when LVDS is disabled (Rob Clark) [1173317]
-- [drm] i915: More cautious with pch fifo underruns (Rob Clark) [1173317]
-- [drm] i915: Ignore SURFLIVE and flip counter when the GPU gets reset (Rob Clark) [1173317]
-- [drm] i915: Kick fbdev before vgacon (Rob Clark) [1173317]
-- [drm] i915: Handle failure to kick out a conflicting fb driver (Rob Clark) [1173317]
-- [drm] i915: drop WaSetupGtModeTdRowDispatch:snb (Rob Clark) [1173317]
-- [drm] radeon: add locking around atombios scratch space usage (Rob Clark) [1173317]
-- [drm] radeon: add missing crtc unlock when setting up the MC (Rob Clark) [1173317]
-- [drm] i915: Disable caches for Global GTT (Rob Clark) [1173317]
-- [drm] i915: Do not leak pages when freeing userptr objects (Rob Clark) [1173317]
-- [drm] ast: Fix HW cursor image (Rob Clark) [1173317]
-- [drm] radeon: Use drm_malloc_ab instead of kmalloc_array (Rob Clark) [1173317]
-- [drm] radeon/dpm: disable ulv support on SI (Rob Clark) [1173317]
-- [drm] i915: Do a dummy DPCD read before the actual read (Rob Clark) [1173317]
-- [drm] nouveau/bios: memset dcb struct to zero before parsing (Rob Clark) [1173317]
-- [drm] nv50/disp: fix dpms regression on certain boards (Rob Clark) [1173317]
-- [drm] nouveau/ltc: fix cbc issues on certain boards (Rob Clark) [1173317]
-- [drm] nouveau/ltc: fix tag base address getting truncated if above 4GiB (Rob Clark) [1173317]
-- [drm] nvc0-/fb/ram: fix use of non-existant ram if partitions aren't uniform (Rob Clark) [1173317]
-- [drm] nouveau/bar: behave better if ioremap failed (Rob Clark) [1173317]
-- [drm] nouveau: make sure display hardware is reinitialised on runtime resume (Rob Clark) [1173317]
-- [drm] nouveau: punt fbcon resume out to a workqueue (Rob Clark) [1173317]
-- [drm] nouveau/kms: restore acceleration before fb_set_suspend() resumes (Rob Clark) [1173317]
-- [drm] nouveau/kms: take more care when pulling down accelerated fbcon (Rob Clark) [1173317]
-- [drm] i915: Flush the PTEs after updating them before suspend (Rob Clark) [1153301]
-- [drm] radeon/cik: use a separate counter for CP init timeout (Rob Clark) [1173317]
-- [drm] radeon/dpm: fix resume on mullins (Rob Clark) [1173317]
-- [drm] radeon: don't reset dma on r6xx-evergreen init (Rob Clark) [1173317]
-- [drm] radeon: don't reset sdma on CIK init (Rob Clark) [1173317]
-- [drm] radeon: don't reset dma on NI/SI init (Rob Clark) [1173317]
-- [drm] radeon: add connector quirk for fujitsu board (Rob Clark) [1173317]
-- [drm] radeon/dpm: set the thermal type properly for special configs (Rob Clark) [1173317]
-- [drm] radeon: fix semaphore value init (Rob Clark) [1173317]
-- [drm] radeon: handle broken disabled rb mask gracefully (6xx/7xx) (Rob Clark) [1173317]
-- [drm] radeon: fix active_cu mask on SI and CIK after re-init (v3) (Rob Clark) [1173317]
-- [drm] radeon: fix active cu count for SI and CIK (Rob Clark) [1173317]
-- [drm] radeon: fix pm handling in radeon_gpu_reset (Rob Clark) [1173317]
-- [drm] radeon: properly document reloc priority mask (Rob Clark) [1173317]
-- [drm] radeon/dpm: select the appropriate vce power state for KV/KB/ML (Rob Clark) [1173317]
-- [drm] radeon: Add missing lines to ci_set_thermal_temperature_range (Rob Clark) [1173317]
-- [drm] radeon: Add ability to get and change dpm state when radeon PX card is turned off (Rob Clark) [1173317]
-- [drm] vmwgfx: Fix a potential infinite spin waiting for fifo idle (Rob Clark) [1173317]
-- [drm] ast: AST2000 cannot be detected correctly (Rob Clark) [1173317]
-- [drm] ast: open key before detect chips (Rob Clark) [1173317]
-- [drm] i915: Don't leak command parser tables on suspend/resume (Rob Clark) [1153301]
-- [drm] i915/hdmi: fix hdmi audio state readout (Rob Clark) [1153301]
-- [drm] i915: Wait for vblank before enabling the TV encoder (Rob Clark) [1153301]
-- [drm] i915: Fix EIO/wedged handling in gem fault handler (Rob Clark) [1153301]
-- [drm] i915: Fix lock dropping in intel_tv_detect() (Rob Clark) [1153301]
-- [drm] i915: Remove bogus __init annotation from DMI callbacks (Rob Clark) [1153301]
-- [drm] i915: Ignore VBT backlight presence check on Acer C720 (4005U) (Rob Clark) [1153301]
-- [drm] i915: fix plane/cursor handling when runtime suspended (Rob Clark) [1153301]
-- [drm] i915: don't try to retrain a DP link on an inactive CRTC (Rob Clark) [1153301]
-- [drm] i915: Fix locking for intel_enable_pipe_a() (Rob Clark) [1153301]
-- [drm] i915: Skip load detect when intel_crtc->new_enable==true (Rob Clark) [1153301]
-- [drm] i915: Disable RCS flips on Ivybridge (Rob Clark) [1153301]
-- [drm] i915: read HEAD register back in init_ring_common() to enforce ordering (Rob Clark) [1153301]
-- [drm] i915: Fix crash when failing to parse MIPI VBT (Rob Clark) [1153301]
-- [drm] radeon: tweak ACCEL_WORKING2 query for hawaii (Rob Clark) [1173317]
-- [drm] radeon/atom: add new voltage fetch function for hawaii (Rob Clark) [1173317]
-- [drm] radeon: set VM base addr using the PFP (Rob Clark) [1173317]
-- [drm] radeon: load the lm63 driver for an lm64 thermal chip (Rob Clark) [1173317]
-- [drm] radeon: re-enable dpm by default on BTC (Rob Clark) [1173317]
-- [drm] radeon: re-enable dpm by default on cayman (Rob Clark) [1173317]
-- [drm] radeon/dpm: handle voltage info fetching on hawaii (Rob Clark) [1173317]
-- [drm] ttm: Choose a pool to shrink correctly in ttm_dma_pool_shrink_scan() (Rob Clark) [1173317]
-- [drm] ttm: Fix possible division by 0 in ttm_dma_pool_shrink_scan() (Rob Clark) [1173317]
-- [drm] ttm: fix handling of TTM_PL_FLAG_TOPDOWN (Rob Clark) [1173317]
-- [drm] nouveau: Bump version from 1.1.1 to 1.1.2 (Rob Clark) [1173317]
-- [drm] nouveau: Dis/Enable vblank irqs during suspend/resume (Rob Clark) [1173317]
-- [drm] radeon: add additional SI pci ids (Rob Clark) [1173317]
-- [drm] radeon: add new bonaire pci ids (Rob Clark) [1173317]
-- [drm] radeon: add new KV pci id (Rob Clark) [1173317]
-- [powerpc] add little endian flag to syscall_get_arch() (Richard Guy Briggs) [1169461]
-- [powerpc] simplify syscall_get_arch() (Richard Guy Briggs) [1169461]
-
-* Tue Dec 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-220.el7]
-- [scsi] libcxgbi: fix freeing skb prematurely (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: use set_wr_txq() to set tx queues (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: handle non-pdu-aligned rx data (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: additional types of negative advice (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: set the max. pdu length in firmware (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: fix credit check for tx_data_wr (Sai Vemuri) [1174982]
-- [scsi] cxgb4i: fix tx immediate data credit check (Sai Vemuri) [1174982]
-- [net] ipv6: update Destination Cache entries when gateway turn into host (Jiri Pirko) [1114781]
-- [net] ipsec: Don't update the pmtu on ICMPV6_DEST_UNREACH (Herbert Xu) [1158771]
-- [s390] zfcp: remove access control tables interface (port leftovers) (Hendrik Brueckner) [1173553]
-- [x86] perf: Use extended offcore mask on Haswell (Don Zickus) [1170795]
-- [fs] ovl: ovl_dir_fsync() cleanup (David Howells) [985875]
-- [fs] ovl: pass dentry into ovl_dir_read_merged() (David Howells) [985875]
-- [fs] ovl: use lockless_dereference() for upperdentry (David Howells) [985875]
-- [fs] ovl: allow filenames with comma (David Howells) [985875]
-- [fs] ovl: fix race in private xattr checks (David Howells) [985875]
-- [fs] ovl: fix remove/copy-up race (David Howells) [985875]
-- [fs] ovl: rename filesystem type to "overlay" (David Howells) [985875]
-- [fs] Don't warn if both ->rename() and ->rename2() iops are defined (David Howells) [985875]
-- [fs] overlayfs: Fix the kABI for overlayfs (David Howells) [985875]
-- [fs] overlayfs: don't poison cursor (David Howells) [985875]
-- [fs] overlayfs: initialize ->is_cursor (David Howells) [985875]
-- [fs] overlayfs: fix lockdep misannotation (David Howells) [985875]
-- [fs] overlayfs: fix check for cursor (David Howells) [985875]
-- [fs] overlayfs: barriers for opening upper-layer directory (David Howells) [985875]
-- [kernel] rcu: Provide counterpart to rcu_dereference() for non-RCU situations (David Howells) [985875]
-- [fs] overlayfs: embed middle into overlay_readdir_data (David Howells) [985875]
-- [fs] overlayfs: embed root into overlay_readdir_data (David Howells) [985875]
-- [fs] overlayfs: make ovl_cache_entry->name an array instead of pointer (David Howells) [985875]
-- [fs] overlayfs: don't hold ->i_mutex over opening the real directory (David Howells) [985875]
-- [fs] overlayfs: limit filesystem stacking depth (David Howells) [985875]
-- [fs] overlayfs: overlay filesystem documentation (David Howells) [985875]
-- [fs] overlayfs: implement show_options (David Howells) [985875]
-- [fs] overlayfs: add statfs support (David Howells) [985875]
-- [fs] overlayfs: filesystem (David Howells) [985875]
-- [mm] shmem: support RENAME_WHITEOUT (David Howells) [985875]
-- [fs] ext4: support RENAME_WHITEOUT (David Howells) [985875]
-- [fs] vfs: add RENAME_WHITEOUT (David Howells) [985875]
-- [fs] vfs: add whiteout support (David Howells) [985875]
-- [fs] vfs: export check_sticky() (David Howells) [985875]
-- [fs] vfs: introduce clone_private_mount() (David Howells) [985875]
-- [fs] vfs: export __inode_permission() to modules (David Howells) [985875]
-- [fs] vfs: export do_splice_direct() to modules (David Howells) [985875]
-- [fs] vfs: add i_op->dentry_open() (David Howells) [985875]
-- [fs] namei: trivial fix to vfs_rename_dir comment (David Howells) [985875]
-- [fs] cifs: support RENAME_NOREPLACE (David Howells) [985875]
-- [fs] hostfs: support rename flags (David Howells) [985875]
-- [mm] shmem: support RENAME_EXCHANGE (David Howells) [985875]
-- [mm] shmem: support RENAME_NOREPLACE (David Howells) [985875]
-- [fs] btrfs: add RENAME_NOREPLACE (David Howells) [985875]
-- [fs] bad_inode: add ->rename2() (David Howells) [985875]
-- [fs] call rename2 if exists (David Howells) [985875]
-- [fs] fuse: restructure ->rename2() (David Howells) [985875]
-- [fs] fuse: add renameat2 support (David Howells) [985875]
-- [fs] dcache: fix races between __d_instantiate() and checks of dentry flags (David Howells) [985875]
-- [fs] ext4: add cross rename support (David Howells) [985875]
-- [fs] vfs: add cross-rename (David Howells) [985875]
-- [fs] vfs: lock_two_nondirectories - allow directory args (David Howells) [985875]
-- [security] add flags to rename hooks (David Howells) [985875]
-- [fs] vfs: add RENAME_NOREPLACE flag (David Howells) [985875]
-- [fs] vfs: add renameat2 syscall (David Howells) [985875]
-- [fs] namei: use common code for dir and non-dir (David Howells) [985875]
-- [fs] namei: move d_move() up (David Howells) [985875]
-- [fs] vfs: add d_is_dir() (David Howells) [985875]
-- [fs] vfs: Put a small type field into struct dentry::d_flags (David Howells) [985875]
-
-* Thu Dec 18 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-219.el7]
-- [mm] vmstat: on-demand vmstat workers V8 (Larry Woodman) [1157802]
-- [mm] vmstat: use this_cpu() to avoid irqon/off sequence in refresh_cpu_vm_stats (Larry Woodman) [1157802]
-- [mm] vmstat: create fold_diff (Larry Woodman) [1157802]
-- [mm] vmstat: create separate function to fold per cpu diffs into local counters (Larry Woodman) [1157802]
-- [block] blk-mq: Fix uninitialized kobject at CPU hotplugging (Jeff Moyer) [1169232]
-- [kernel] audit: AUDIT_FEATURE_CHANGE message format missing delimiting space (Richard Guy Briggs) [1165469]
-- [fs] NFSv4.1: nfs41_clear_delegation_stateid shouldn't trust NFS_DELEGATED_STATE (Steve Dickson) [1166845]
-- [fs] NFSv4: Fix races between nfs_remove_bad_delegation() and delegation return (Steve Dickson) [1166845]
-- [fs] NFS: Don't try to reclaim delegation open state if recovery failed (Steve Dickson) [1166845]
-- [fs] NFSv4: Ensure that we call FREE_STATEID when NFSv4.x stateids are revoked (Steve Dickson) [1166845]
-- [fs] NFSv4: Ensure that we remove NFSv4.0 delegations when state has expired (Steve Dickson) [1166845]
-
-* Wed Dec 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-218.el7]
-- [scsi] cxgb4i: Don't block unload/cxgb4 unload when remote closes TCP connection (Sai Vemuri) [1169941]
-- [kernel] kthread: partial revert of 81c98869faa5 ("kthread: ensure locality of task_struct allocations") (Gustavo Duarte) [953583]
-- [mm] slub: fall back to node_to_mem_node() node if allocating on memoryless node (Gustavo Duarte) [953583]
-- [mm] topology: add support for node_to_mem_node() to determine the fallback node (Gustavo Duarte) [953583]
-- [mm] slub: search partial list on numa_mem_id(), instead of numa_node_id() (Gustavo Duarte) [953583]
-- [kernel] kthread: ensure locality of task_struct allocations (Gustavo Duarte) [953583]
-- [md] dm-thin: fix missing out-of-data-space to write mode transition if blocks are released (Mike Snitzer) [1173181]
-- [md] dm-thin: fix inability to discard blocks when in out-of-data-space mode (Mike Snitzer) [1173181]
-- [wireless] iwlwifi/mvm: update values for Smart Fifo (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/dvm: fix flush support for old firmware (Stanislaw Gruszka) [1155538]
-- [wireless] ath5k: fix hardware queue index assignment (Stanislaw Gruszka) [1155538]
-- [wireless] ath9k: fix BE/BK queue order (Stanislaw Gruszka) [1155538]
-- [wireless] ath9k_hw: fix hardware queue allocation (Stanislaw Gruszka) [1155538]
-- [wireless] ath9k: Fix RTC_DERIVED_CLK usage (Stanislaw Gruszka) [1155538]
-- [wireless] rt2x00: do not align payload on modern H/W (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: Fix regression that triggers a kernel BUG with CCMP (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi: fix RFkill while calibrating (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: fix use-after-free in defragmentation (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: properly flush delayed scan work on interface removal (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: schedule the actual switch of the station before CSA count 0 (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: use secondary channel offset IE also beacons during CSA (Stanislaw Gruszka) [1155538]
-- [wireless] rt2x00: add new rt2800usb device (Stanislaw Gruszka) [1155538]
-- [wireless] Revert: iwlwifi/mvm: treat EAPOLs like mgmt frames wrt rate (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/dvm: drop non VO frames when flushing (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi: configure the LTR (Stanislaw Gruszka) [1155538]
-- [wireless] mac80211: fix typo in starting baserate for rts_cts_rate_idx (Stanislaw Gruszka) [1155538]
-- [wireless] rt2x00: add new rt2800usb devices (Stanislaw Gruszka) [1155538]
-- [wireless] rt2x00: support Ralink 5362 (Stanislaw Gruszka) [1155538]
-- [wireless] Revert: ath9k: reduce ANI firstep range for older chips (Stanislaw Gruszka) [1155538]
-- [wireless] rt2800: correct BBP1_TX_POWER_CTRL mask (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi: Add missing PCI IDs for the 7260 series (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/mvm: disable BT Co-running by default (Stanislaw Gruszka) [1155538]
-- [wireless] nl80211: clear skb cb before passing to netlink (Stanislaw Gruszka) [1155538]
-- [wireless] ath9k/htc: fix random decryption failure (Stanislaw Gruszka) [1155538]
-- [wireless] brcmfmac: handle IF event for P2P_DEVICE interface (Stanislaw Gruszka) [1155538]
-- [wireless] Revert: mac80211: disable uAPSD if all ACs are under ACM (Stanislaw Gruszka) [1155538]
-- [wireless] rtlwifi/rtl8192cu: Add new ID (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/mvm: set MAC_FILTER_IN_BEACON correctly for STA/P2P client (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/mvm: treat EAPOLs like mgmt frames wrt rate (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi: increase DEFAULT_MAX_TX_POWER (Stanislaw Gruszka) [1155538]
-- [wireless] iwlwifi/mvm: fix endianity issues with Smart Fifo commands (Stanislaw Gruszka) [1155538]
-- [wireless] Revert: iwlwifi/dvm: don't enable CTS to self (Stanislaw Gruszka) [1155538]
-- [wireless] carl9170: fix sending URBs with wrong type when using full-speed (Stanislaw Gruszka) [1155538]
-
-* Fri Dec 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-217.el7]
-- [net] ipv6: yet another new IPV6_MTU_DISCOVER option IPV6_PMTUDISC_OMIT (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: yet another new IP_MTU_DISCOVER option IP_PMTUDISC_OMIT (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: use ip_skb_dst_mtu to determine mtu in ip_fragment (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: introduce ip_dst_mtu_maybe_forward and protect forwarding path against pmtu spoofing (Hannes Frederic Sowa) [1170116]
-- [net] ipv6: move ip6_sk_accept_pmtu from generic pmtu update path to ipv6 one (Hannes Frederic Sowa) [1170116]
-- [net] ipv6: support IPV6_PMTU_INTERFACE on sockets (Hannes Frederic Sowa) [1170116]
-- [net] udp: do not report ICMP redirects to user space (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: new ip_no_pmtu_disc mode to always discard incoming frag needed msgs (Hannes Frederic Sowa) [1170116]
-- [net] inet: make no_pmtu_disc per namespace and kill ipv4_config (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: improve documentation of ip_no_pmtu_disc (Hannes Frederic Sowa) [1170116]
-- [net] ipv4: introduce new IP_MTU_DISCOVER mode IP_PMTUDISC_INTERFACE (Hannes Frederic Sowa) [1170116]
-- [net] xfrm: revert ipv4 mtu determination to dst_mtu (Hannes Frederic Sowa) [1170116]
-- [net] xfrm: introduce helper for safe determination of mtu (Hannes Frederic Sowa) [1170116]
-- [net] netfilter: conntrack: disable generic tracking for known protocols (Daniel Borkmann) [1170520]
-- [net] gre: Fix use-after-free panic in ipgre_rcv() (Panu Matilainen) [1117543]
-- [net] netfilter: nf_conntrack_h323: lookup route from proper net namespace (Florian Westphal) [1163847]
-- [net] netfilter: xt_tcpmss: lookup route from proper net namespace (Florian Westphal) [1163847]
-- [net] netfilter: xt_tcpmss: Get mtu only if clamp-mss-to-pmtu is specified (Florian Westphal) [1163847]
-- [wireless] cfg80211: don't WARN about two consecutive Country IE hint (Stanislaw Gruszka) [1164282]
-- [fs] aio: fix race between aio event completion and reaping (Jeff Moyer) [1131312]
-- [fs] proc/task_mmu: fix missing check during hugepage migration (Jacob Tanenbaum) [1105040] {CVE-2014-3940}
-- [kernel] trace: insufficient syscall number validation in perf and ftrace subsystems (Jacob Tanenbaum) [1161570] {CVE-2014-7825 CVE-2014-7826}
-- [ethernet] i40e: get pf_id from HW rather than PCI function (Stefan Assmann) [1078740]
-- [ethernet] i40e: increase ARQ size (Stefan Assmann) [1078740]
-- [x86] uv: Update the UV3 TLB shootdown logic (Frank Ramsay) [1170253]
-- [tools] peeksiginfo: add PAGE_SIZE definition (Steve Best) [1172250]
-- [base] bus: Fix unbalanced device reference in drivers_probe (Alex Williamson) [1158862]
-- [char] tpm: Fix NULL return in tpm_ibmvtpm_get_desired_dma (Gustavo Duarte) [1154818]
-- [powerpc] kvm: book3s_hv - Reserve cma region only in hypervisor mode (Gustavo Duarte) [1147740]
-- [x86] traps: stop using IST for #SS (Petr  Matousek) [1172813] {CVE-2014-9322}
-
-* Tue Dec 09 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-216.el7]
-- [acpi] Revert: hotplug/pci: Simplify disable_slot() (Prarit Bhargava) [1158720]
-- [infiniband] iser: Adjust data_length to include protection information (Amir Vadai) [1107622]
-- [infiniband] iser: Bump version to 1.4.1 (Amir Vadai) [1107622]
-- [infiniband] iser: Allow bind only when connection state is UP (Amir Vadai) [1107622]
-- [infiniband] iser: Fix RX/TX CQ resource leak on error flow (Amir Vadai) [1107622]
-- [infiniband] iser: Clarify a duplicate counters check (Amir Vadai) [1107622]
-- [infiniband] iser: Replace connection waitqueue with completion object (Amir Vadai) [1107622]
-- [infiniband] iser: Protect iser state machine with a mutex (Amir Vadai) [1107622]
-- [infiniband] iser: Remove redundant return code in iser_free_ib_conn_res() (Amir Vadai) [1107622]
-- [infiniband] iser: Seperate iser_conn and iscsi_endpoint storage space (Amir Vadai) [1107622]
-- [infiniband] iser: Fix responder resources advertisement (Amir Vadai) [1107622]
-- [infiniband] iser: Add TIMEWAIT_EXIT event handling (Amir Vadai) [1107622]
-- [infiniband] iser: Support IPv6 address family (Amir Vadai) [1107622]
-- [infiniband] iser: Bump version to 1.4 (Amir Vadai) [1107622]
-- [infiniband] iser: Add missing newlines to logging messages (Amir Vadai) [1107622]
-- [infiniband] iser: Fix a possible race in iser connection states transition (Amir Vadai) [1107622]
-- [infiniband] iser: Simplify connection management (Amir Vadai) [1107622]
-- [infiniband] iser: Bump driver version to 1.3 (Amir Vadai) [1107622]
-- [infiniband] iser: Update Mellanox copyright note (Amir Vadai) [1107622]
-- [infiniband] iser: Print QP information once connection is established (Amir Vadai) [1107622]
-- [infiniband] iser: Remove struct iscsi_iser_conn (Amir Vadai) [1107622]
-- [infiniband] iser: Drain the tx cq once before looping on the rx cq (Amir Vadai) [1107622]
-- [infiniband] iser: Fix sector_t format warning (Amir Vadai) [1107622]
-- [infiniband] iser: Publish T10-PI support to SCSI midlayer (Amir Vadai) [1107622]
-- [infiniband] iser: Implement check_protection (Amir Vadai) [1107622]
-- [infiniband] iser: Support T10-PI operations (Amir Vadai) [1107622]
-- [infiniband] iser: Initialize T10-PI resources (Amir Vadai) [1107622]
-- [infiniband] iser: Introduce pi_enable, pi_guard module parameters (Amir Vadai) [1107622]
-- [infiniband] iser: Generalize fall_to_bounce_buf routine (Amir Vadai) [1107622]
-- [infiniband] iser: Generalize iser_unmap_task_data and finalize_rdma_unaligned_sg (Amir Vadai) [1107622]
-- [infiniband] iser: Replace fastreg descriptor valid bool with indicators container (Amir Vadai) [1107622]
-- [infiniband] iser: Keep IB device attributes under iser_device (Amir Vadai) [1107622]
-- [infiniband] iser: Move fast_reg_descriptor initialization to a function (Amir Vadai) [1107622]
-- [infiniband] iser: Push the decision what memory key to use into fast_reg_mr routine (Amir Vadai) [1107622]
-- [infiniband] iser: Avoid FRWR notation, use fastreg instead (Amir Vadai) [1107622]
-- [infiniband] iser: Suppress completions for fast registration work requests (Amir Vadai) [1107622]
-- [infiniband] iser: Fix use after free in iser_snd_completion() (Amir Vadai) [1107622]
-- [scsi] libiscsi: Add check_protection callback for transports (Amir Vadai) [1107622]
-- [mm] mem-hotplug: reset node present pages when hot-adding a new pgdat (Motohiro Kosaki) [1156396]
-- [mm] mem-hotplug: reset node managed pages when hot-adding a new pgdat (Motohiro Kosaki) [1156396]
-- [mm] make __free_pages_bootmem() only available at boot time (Motohiro Kosaki) [1156396]
-- [mm] use a dedicated lock to protect totalram_pages and zone->managed_pages (Motohiro Kosaki) [1156396]
-- [mm] accurately calculate zone->managed_pages for highmem zones (Motohiro Kosaki) [1156396]
-- [md] dm-cache: fix spurious cell_defer when dealing with partial block at end of device (Mike Snitzer) [1165050]
-- [md] dm-cache: dirty flag was mistakenly being cleared when promoting via overwrite (Mike Snitzer) [1165050]
-- [md] dm-cache: only use overwrite optimisation for promotion when in writeback mode (Mike Snitzer) [1165050]
-- [md] dm-cache: discard block size must be a multiple of cache block size (Mike Snitzer) [1165050]
-- [md] dm-cache: fix a harmless race when working out if a block is discarded (Mike Snitzer) [1165050]
-- [md] dm-cache: when reloading a discard bitset allow for a different discard block size (Mike Snitzer) [1165050]
-- [md] dm-cache: fix some issues with the new discard range support (Mike Snitzer) [1165050]
-- [md] dm-array: if resizing the array is a noop set the new root to the old one (Mike Snitzer) [1165050]
-- [md] dm-bufio: fix memleak when using a dm_buffer's inline bio (Mike Snitzer) [1165050]
-- [md] dm: use rcu_dereference_protected instead of rcu_dereference (Mike Snitzer) [1165246]
-- [md] dm-thin: suspend/resume active thin devices when reloading thin-pool (Mike Snitzer) [1165246]
-- [md] dm-thin: do not allow thin device activation while pool is suspended (Mike Snitzer) [1165246]
-- [md] dm-thin: fix a race in thin_dtr (Mike Snitzer) [1165246]
-- [md] dm-thin: remove stale 'trim' message in block comment above pool_message (Mike Snitzer) [1165246]
-- [md] dm: update wait_on_bit calls for RHEL (Mike Snitzer) [1165246]
-- [md] dm: enhance internal suspend and resume interface (Mike Snitzer) [1165246]
-- [md] dm: add presuspend_undo hook to target_type (Mike Snitzer) [1165246]
-- [md] dm: return earlier from dm_blk_ioctl if target doesn't implement .ioctl (Mike Snitzer) [1165246]
-- [md] dm: do not call dm_sync_table() when creating new devices (Mike Snitzer) [1165246]
-- [md] dm: sparse - Annotate field with __rcu for checking (Mike Snitzer) [1165246]
-- [md] dm: Use rcu_dereference() for accessing rcu pointer (Mike Snitzer) [1165246]
-- [md] dm: allow active and inactive tables to share dm_devs (Mike Snitzer) [1165246]
-- [md] dm-mpath: stop queueing IO when no valid paths exist (Mike Snitzer) [1165246]
-
-* Mon Dec 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-215.el7]
-- [net] vxlan: Do not reuse sockets for a different address family (Marcelo Leitner) [1146107]
-- [net] vti: Fix kernel panic due to tunnel not being removed on link deletion (Panu Matilainen) [1167725]
-- [net] sctp: test if association is dead in sctp_wake_up_waiters (Daniel Borkmann) [1166467]
-- [net] sctp: wake up all assocs if sndbuf policy is per socket (Daniel Borkmann) [1166467]
-- [net] ip: better estimate tunnel header cut for correct ufo handling (Alexander Duyck) [1159577]
-- [net] ipv6: gso: remove redundant locking (Alexander Duyck) [1159577]
-- [net] ipv6: Do not treat a GSO_TCPV4 request from UDP tunnel over IPv6 as invalid (Alexander Duyck) [1159577]
-- [net] ipv6: fib: fix fib dump restart (Panu Matilainen) [1163605]
-- [net] ipv6: drop unused fib6_clean_all_ro() function and rt6_proc_arg struct (Panu Matilainen) [1163605]
-- [net] ipv6: avoid high order memory allocations for /proc/net/ipv6_route (Panu Matilainen) [1163605]
-- [net] ipv4: Fix incorrect error code when adding an unreachable route (Panu Matilainen) [1165552]
-- [net] sctp: replace seq_printf with seq_puts (Daniel Borkmann) [1164214]
-- [net] sctp: add transport state in /proc/net/sctp/remaddr (Daniel Borkmann) [1164214]
-- [IB] isert: Adjust CQ size to HW limits (Andy Grover) [1166314]
-- [ib_isert] Add max_send_sge=2 minimum for control PDU responses (Andy Grover) [1166314]
-- [scsi] megaraid_sas: do not process IOCTLs and SCSI commands during driver removal (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: dndinaness related bug fixes (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: corrected return of wait_event from abort frame path (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: make HBA operational after LD_MAP_SYNC DCMD in OCR path (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: online Firmware upgrade support for Extended VD feature (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: update MAINTAINERS and copyright information for megaraid drivers (Tomas Henzl) [1162645]
-- [scsi] megaraid_sas: driver version upgrade and remove some meta data of driver (06.805.06.01-rc1) (Tomas Henzl) [1162645]
-
-* Mon Dec 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-214.el7]
-- [powerpc] Drop useless warning in eeh_init() (Gustavo Duarte) [1156651]
-- [powerpc] pseries: Decrease message level on EEH initialization (Gustavo Duarte) [1156651]
-- [net] ceph: fixup includes in pagelist.h (Ilya Dryomov) [1165232]
-- [net] ceph: change from BUG to WARN for __remove_osd() asserts (Ilya Dryomov) [1165232]
-- [net] ceph: clear r_req_lru_item in __unregister_linger_request() (Ilya Dryomov) [1165232]
-- [net] ceph: unlink from o_linger_requests when clearing r_osd (Ilya Dryomov) [1165232]
-- [net] ceph: do not crash on large auth tickets (Ilya Dryomov) [1165232]
-- [fs] ceph: fix flush tid comparision (Ilya Dryomov) [1165232]
-- [net] ceph: eliminate unnecessary allocation in process_one_ticket() (Ilya Dryomov) [1165232]
-- [block] rbd: Fix error recovery in rbd_obj_read_sync() (Ilya Dryomov) [1165232]
-- [net] ceph: use memalloc flags for net IO (Ilya Dryomov) [1165232]
-- [block] rbd: use a single workqueue for all devices (Ilya Dryomov) [1165232]
-- [fs] ceph: fix divide-by-zero in __validate_layout() (Ilya Dryomov) [1165232]
-- [block] rbd: rbd workqueues need a resque worker (Ilya Dryomov) [1165232]
-- [net] ceph: ceph-msgr workqueue needs a resque worker (Ilya Dryomov) [1165232]
-- [fs] ceph: fix bool assignments (Ilya Dryomov) [1165232]
-- [net] ceph: separate multiple ops with commas in debugfs output (Ilya Dryomov) [1165232]
-- [net] ceph: sync osd op definitions in rados.h (Ilya Dryomov) [1165232]
-- [net] ceph: remove redundant declaration (Ilya Dryomov) [1165232]
-- [fs] ceph: additional debugfs output (Ilya Dryomov) [1165232]
-- [fs] ceph: export ceph_session_state_name function (Ilya Dryomov) [1165232]
-- [fs] ceph: use pagelist to present MDS request data (Ilya Dryomov) [1165232]
-- [net] ceph: reference counting pagelist (Ilya Dryomov) [1165232]
-- [fs] ceph: fix llistxattr on symlink (Ilya Dryomov) [1165232]
-- [fs] ceph: send client metadata to MDS (Ilya Dryomov) [1165232]
-- [fs] ceph: remove redundant code for max file size verification (Ilya Dryomov) [1165232]
-- [fs] ceph: move ceph_find_inode() outside the s_mutex (Ilya Dryomov) [1165232]
-- [fs] ceph: request xattrs if xattr_version is zero (Ilya Dryomov) [1165232]
-- [block] rbd: set the remaining discard properties to enable support (Ilya Dryomov) [1165232]
-- [block] rbd: use helpers to handle discard for layered images correctly (Ilya Dryomov) [1165232]
-- [block] rbd: extract a method for adding object operations (Ilya Dryomov) [1165232]
-- [block] rbd: make discard trigger copy-on-write (Ilya Dryomov) [1165232]
-- [block] rbd: tolerate -ENOENT for discard operations (Ilya Dryomov) [1165232]
-- [block] rbd: fix snapshot context reference count for discards (Ilya Dryomov) [1165232]
-- [block] rbd: read image size for discard check safely (Ilya Dryomov) [1165232]
-- [block] rbd: initial discard bits (Ilya Dryomov) [1165232]
-- [block] rbd: extend the operation type (Ilya Dryomov) [1165232]
-- [block] rbd: skip the copyup when an entire object writing (Ilya Dryomov) [1165232]
-- [block] rbd: add img_obj_request_simple() helper (Ilya Dryomov) [1165232]
-- [block] rbd: access snapshot context and mapping size safely (Ilya Dryomov) [1165232]
-- [block] rbd: do not return -ERANGE on auth failures (Ilya Dryomov) [1165232]
-- [net] ceph: don't try checking queue_work() return value (Ilya Dryomov) [1165232]
-- [fs] ceph: make sure request isn't in any waiting list when kicking request (Ilya Dryomov) [1165232]
-- [fs] ceph: protect kick_requests() with mdsc->mutex (Ilya Dryomov) [1165232]
-- [net] ceph: Convert pr_warning to pr_warn (Ilya Dryomov) [1165232]
-- [fs] ceph: trim unused inodes before reconnecting to recovering MDS (Ilya Dryomov) [1165232]
-- [net] ceph: fix a use after free issue in osdmap_set_max_osd (Ilya Dryomov) [1165232]
-- [net] ceph: select CRYPTO_CBC in addition to CRYPTO_AES (Ilya Dryomov) [1165232]
-- [net] ceph: resend lingering requests with a new tid (Ilya Dryomov) [1165232]
-- [net] ceph: abstract out ceph_osd_request enqueue logic (Ilya Dryomov) [1165232]
-- [block] rbd: fix error return code in rbd_dev_device_setup() (Ilya Dryomov) [1165232]
-- [block] rbd: avoid format-security warning inside alloc_workqueue() (Ilya Dryomov) [1165232]
-- [kernel] printk/register_console: prevent adding the same console twice (Artem Savkov) [1169766]
-- [mm] hugetlb: add cond_resched_lock() in, return_unused_surplus_pages() (Motohiro Kosaki) [1142698]
-- [mm] hugetlb: fix softlockup when a large number of, hugepages are freed (Motohiro Kosaki) [1142698]
-- [kernel] sched: Use new KABI macros (Don Zickus) [1164383]
-- [net] Use new KABI macros (Don Zickus) [1164383]
-- [scsi] Use new KABI macros (Don Zickus) [1164383]
-- [kernel] Use new KABI macros (Don Zickus) [1164383]
-- [block] Use new KABI macros (Don Zickus) [1164383]
-- [block] include: Use new KABI macros (Don Zickus) [1164383]
-- [misc] Use new KABI macros (Don Zickus) [1164383]
-- [x86] Use new KABI macros (Don Zickus) [1164383]
-- [powerpc] Use new KABI macros (Don Zickus) [1164383]
-
-* Wed Dec 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-213.el7]
-- [scsi] ipr: don't log error messages when applications issues illegal requests (Gustavo Duarte) [1163019]
-- [net] macvlan: Allow setting multicast filter on all macvlan types (Vlad Yasevich) [848197]
-- [block] genhd: fix leftover might_sleep() in blk_free_devt() (Jeff Moyer) [1167728]
-- [ethernet] mlx4: Add VXLAN ndo calls to the PF net device ops too (Florian Westphal) [1168212]
-- [powerpc] xmon: le - Fix endiannes issue in RTAS call from xmon (Steve Best) [1160650]
-- [mm] thp: close race between split and zap huge pages (Seth Jennings) [1165268]
-- [mm] thp: close race between mremap() and split_huge_page() (Seth Jennings) [1165268]
-- [mmc] rtsx: Change default tx phase (Don Zickus) [1106204]
-- [mfd] rtsx: Copyright modifications (Don Zickus) [1106204]
-- [mfd] rtsx: Configure to enter a deeper power-saving mode in S3 (Don Zickus) [1106204]
-- [mfd] rtsx: Move some actions from rtsx_pci_init_hw to individual extra_init_hw (Don Zickus) [1106204]
-- [mfd] rtsx: Add shutdown callback in rtsx_pci_driver (Don Zickus) [1106204]
-- [mfd] rtsx: Read vendor setting from config space (Don Zickus) [1106204]
-- [mfd] rtsx: Add support for RTL8411B (Don Zickus) [1106204]
-
-* Mon Dec 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-212.el7]
-- [fs] fsnotify: next_i is freed during fsnotify_unmount_inodes (Eric Sandeen) [1124997]
-- [fs] btrfs: fix regression of btrfs device replace (Eric Sandeen) [1162983]
-- [fs] ext4: don't count external journal blocks as overhead (Eric Sandeen) [1164366]
-- [fs] Fix oops when creating symlinks on smb3 (Sachin Prabhu) [1161429]
-
-* Wed Nov 26 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-211.el7]
-- [net] sctp: fix memory leak in auth key management (Daniel Borkmann) [1160928]
-- [net] sctp: fix NULL pointer dereference in af->from_addr_param on malformed packet (Daniel Borkmann) [1154002] {CVE-2014-7841}
-- [net] tcp: zero retrans_stamp if all retrans were acked (Marcelo Leitner) [1162193]
-- [net] netfilter: log: protect nf_log_register against double registering (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: ulog: compat with new structure (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: nat expression must select CONFIG_NF_NAT (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: add explicit Kconfig for NETFILTER_XT_NAT (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: masquerading needs to be independent of x_tables in Kconfig (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: NFT_CHAIN_NAT_IPV* is independent of NFT_NAT (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: move NAT Kconfig switches out of the iptables scope (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: NETFILTER_XT_TARGET_LOG selects NF_LOG_* (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: fix several Kconfig problems in NF_LOG_* (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_masq: register/unregister notifiers on module init/exit (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: allow to filter from prerouting and postrouting (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_compat: remove incomplete 32/64 bits arch compat code (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: wait for call_rcu completion on module removal (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_reject: introduce icmp code abstraction for inet and bridge (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: store and dump set policy (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: export rule-set generation ID (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add NFTA_MASQ_UNSPEC to nft_masq_attributes (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add new nft_masq expression (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_nat: include a flag attribute (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: extend NFT_MSG_DELTABLE to support flushing the ruleset (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add helpers to schedule objects deletion (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add devgroup support in meta expresion (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: rename nf_table_delrule_by_chain() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add helper to unregister chain hooks (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: refactor rule deletion helper (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_chain_nat_ipv6: use generic IPv6 NAT code from core (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nat: move specific NAT IPv6 to core (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_rbtree: no need for spinlock from set destroy path (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_hash: no need for rcu in the hash set destroy path (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_nat: generalize IPv6 masquerading support for nf_tables (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_nat: generalize IPv4 masquerading support for nf_tables (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_chain_nat_ipv4: use generic IPv4 NAT code from core (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nat: move specific NAT IPv4 to core (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_meta: Add cpu attribute support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_meta: add pkttype support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix error return code (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: don't update chain with unset counters (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: uninitialize element key/data from the commit path (Marcelo Leitner) [1148041 1155088]
-- [net] nftables: Convert nft_hash to use generic rhashtable (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: Avoid duplicate call to nft_data_uninit() for same key (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: check for unset NFTA_SET_ELEM_LIST_ELEMENTS attribute (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: simplify set dump through netlink (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: bridge: add reject support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: 64bit stats need some extra synchronization (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: set NLM_F_DUMP_INTR if netlink dumping is stale (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: safe RCU iteration on list when dumping (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: skip transaction if no update flags in tables (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_log: fix coccinelle warnings (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_log: complete logging support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_log: request explicit logger when loading rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_nat: don't dump port information if unset (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: indicate family when dumping set elements (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_compat: call {target, match}->destroy() to cleanup entry (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix wrong type in transaction when replacing rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: decrement chain use counter when replacing rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use u32 for chain use counter (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use RCU-safe list insertion when replacing rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: atomic allocation in set notifications from rcu callback (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: allow to delete several objects from a batch (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_rbtree: introduce locking (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: release objects in reverse order in the abort path (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix wrong transaction ordering in set elements (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: defer all object release via rcu (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: remove skb and nlh from context structure (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: simplify nf_tables_*_notify (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use new transaction infrastructure to handle elements (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use new transaction infrastructure to handle table (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: pass context to nf_tables_updtable() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: disabling table hooks always succeeds (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use new transaction infrastructure to handle chain (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: refactor chain statistic routines (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: use new transaction infrastructure to handle sets (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add message type to transactions (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: relocate commit and abort routines in the source file (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: generalise transaction infrastructure (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: deconstify table and chain in context structure (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix trace of matching non-terminal rule (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix missing return trace at the end of non-base chain (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix bogus rulenum after goto action (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix tracing of the goto action (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix goto action (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: reset rule number counter after jump and goto (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: add helper for adding nat extension (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: relax string validation of NFTA_CHAIN_TYPE (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: Add meta expression key for bridge interface name (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: Make meta expression core functions public (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: Stack expression type depending on their family (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix nft_cmp_fast failure on big endian for size < 4 (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: handle more than 8 * PAGE_SIZE set name allocations (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: fix wrong format in request_module() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: set names cannot be larger than 15 bytes (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add set_elem notifications (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_hash: use set global element counter instead of private one (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: implement proper set selection (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_ct: split nft_ct_init() into two functions for get/set (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_meta: split nft_meta_init() into two functions for get/set (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_ct: add missing ifdef for NFT_MARK setting (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: Add missing vmalloc.h include to nft_hash.c (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_nat: fix family validation (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_ct: remove family from struct nft_ct (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: restore notifications for anonymous set destruction (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: restore context for expression destructors (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: clean up nf_tables_trans_add() argument order (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_hash: bug fixes and resizing (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add optional user data area to rules (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: accept QUEUE/DROP verdict parameters (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_tables: add nft_dereference() macro (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nft_ct: labels get support (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_nat: add full port randomization support (Marcelo Leitner) [1148041 1155088]
-- [net] nf_tables: Include appropriate header file in netfilter/nft_lookup.c (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: xt_log: add missing string format in nf_log_packet() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: log: nf_log_packet() as real unified interface (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: log: split family specific code to nf_log_{ip, ip6, common}.c files (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_log: move log buffering to core logging (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nf_log: use an array of loggers instead of list (Marcelo Leitner) [1148041 1155088]
-- [net] introduce netdev_alloc_pcpu_stats() for drivers (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: nfnetlink: add rcu_dereference_protected() helpers (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: ip_set: rename nfnl_dereference()/nfnl_set() (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: ipset: remove unused code (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: Remove extern from function prototypes (Marcelo Leitner) [1148041 1155088]
-- [net] netfilter: Remove extern from function prototypes (Marcelo Leitner) [1148041 1155088]
-- [net] openvswitch: remove dup comment in vport.h (Jiri Benc) [1110384]
-- [net] openvswitch: restore OVS_FLOW_CMD_NEW notifications (Jiri Benc) [1110384]
-- [net] openvswitch: Add recirc and hash action (Jiri Benc) [1110384]
-- [net] openvswitch: simplify sample action implementation (Jiri Benc) [1110384]
-- [net] openvswitch: Use tun_key only for egress tunnel path (Jiri Benc) [1110384]
-- [net] openvswitch: refactor ovs flow extract API (Jiri Benc) [1110384]
-- [net] openvswitch: Remove pkt_key from OVS_CB (Jiri Benc) [1110384]
-- [net] openvswitch: change the data type of error status to atomic_long_t (Jiri Benc) [1110384]
-- [net] genetlink: add function genl_has_listeners() (Jiri Benc) [1110384]
-- [net] vxlan: Call udp_flow_src_port (Jiri Benc) [1110384]
-- [net] udp: Add function to make source port for UDP tunnels (Jiri Benc) [1110384]
-- [net] openvswitch: distinguish between the dropped and consumed skb (Jiri Benc) [1110384]
-- [net] openvswitch: fix a memory leak (Jiri Benc) [1110384]
-- [net] openvswitch: Fix memory leak in ovs_vport_alloc() error path (Jiri Benc) [1110384]
-- [net] openvswitch: fix duplicate #include headers (Jiri Benc) [1110384]
-- [net] openvswitch: Remove unlikely() for WARN_ON() conditions (Jiri Benc) [1110384]
-- [net] openvswitch: Use IS_ERR_OR_NULL (Jiri Benc) [1110384]
-- [net] openvswitch: Add skb_clone NULL check for the sampling action (Jiri Benc) [1110384]
-- [net] openvswitch: Sample action without side effects (Jiri Benc) [1110384]
-- [net] openvswitch: Avoid memory corruption in queue_userspace_packet() (Jiri Benc) [1110384]
-- [net] openvswitch: Enable tunnel GSO for OVS bridge (Jiri Benc) [1110384]
-- [net] openvswitch: Allow each vport to have an array of 'port_id's (Jiri Benc) [1110384]
-- [net] openvswitch: make generic netlink group const (Jiri Benc) [1110384]
-- [net] openvswitch: introduce rtnl ops stub (Jiri Benc) [1110384]
-- [net] openvswitch: Use exact lookup for flow_get and flow_del (Jiri Benc) [1110384]
-- [net] openvswitch: Fix tracking of flags seen in TCP flows (Jiri Benc) [1110384]
-- [net] openvswitch: supply a dummy err_handler of gre_cisco_protocol to prevent kernel crash (Jiri Benc) [1110384]
-- [net] openvswitch: Fix a double free bug for the sample action (Jiri Benc) [1110384]
-- [net] openvswitch: Simplify genetlink code (Jiri Benc) [1110384]
-- [net] openvswitch: Minimize ovs_flow_cmd_new (Jiri Benc) [1110384]
-- [net] openvswitch: Split ovs_flow_cmd_new_or_set() (Jiri Benc) [1110384]
-- [net] openvswitch: Minimize ovs_flow_cmd_del critical section (Jiri Benc) [1110384]
-- [net] openvswitch: Reduce locking requirements (Jiri Benc) [1110384]
-- [net] openvswitch: Fix ovs_flow_stats_get/clear RCU dereference (Jiri Benc) [1110384]
-- [net] openvswitch: Fix typo (Jiri Benc) [1110384]
-- [net] openvswitch: Minimize dp and vport critical sections (Jiri Benc) [1110384]
-- [net] openvswitch: Make flow mask removal symmetric (Jiri Benc) [1110384]
-- [net] openvswitch: Build flow cmd netlink reply only if needed (Jiri Benc) [1110384]
-- [net] openvswitch: Clarify locking (Jiri Benc) [1110384]
-- [net] openvswitch: Avoid assigning a NULL pointer to flow actions (Jiri Benc) [1110384]
-- [net] openvswitch: Compact sw_flow_key (Jiri Benc) [1110384]
-- [net] net/openvswitch: Use with RCU_INIT_POINTER(x, NULL) in vport-gre.c (Jiri Benc) [1110384]
-- [net] openvswitch: Use TCP flags in the flow key for stats (Jiri Benc) [1110384]
-- [net] openvswitch: Fix output of SCTP mask (Jiri Benc) [1110384]
-- [net] openvswitch: Per NUMA node flow stats (Jiri Benc) [1110384]
-- [net] openvswitch: Remove 5-tuple optimization (Jiri Benc) [1110384]
-- [net] openvswitch: Use ether_addr_copy (Jiri Benc) [1110384]
-- [net] openvswitch: flow_netlink: Use pr_fmt to OVS_NLERR output (Jiri Benc) [1110384]
-- [net] openvswitch: Use net_ratelimit in OVS_NLERR (Jiri Benc) [1110384]
-- [net] openvswitch: Added (unsigned long long) cast in printf (Jiri Benc) [1110384]
-- [net] openvswitch: avoid cast-qual warning in vport_priv (Jiri Benc) [1110384]
-- [net] openvswitch: avoid warnings in vport_from_priv (Jiri Benc) [1110384]
-- [net] openvswitch: use const in some local vars and casts (Jiri Benc) [1110384]
-- [net] openvswitch: get rid of SET_ETHTOOL_OPS (Jiri Benc) [1110384]
-- [net] openvswitch: Correctly report flow used times for first 5 minutes after boot (Jiri Benc) [1110384]
-- [net] openvswitch: Fix race (Jiri Benc) [1110384]
-- [net] openvswitch: Read tcp flags only then the tranport header is present (Jiri Benc) [1110384]
-- [net] openvswitch: rename ->sync to ->syncp (Jiri Benc) [1110384]
-- [net] openvswitch: make functions local (Jiri Benc) [1110384]
-- [net] Add utility function to copy skb hash (Jiri Benc) [1110384]
-- [net] Change skb_get_rxhash to skb_get_hash (Jiri Benc) [1110384]
-- [net] netlink: Re-add locking to netlink_lookup() and seq walker (Jiri Benc) [1140661]
-- [lib] rhashtable: remove second linux/log2.h inclusion (Jiri Benc) [1140661]
-- [lib] rhashtable: allow user to set the minimum shifts of shrinking (Jiri Benc) [1140661]
-- [lib] rhashtable: fix lockdep splat in rhashtable_destroy() (Jiri Benc) [1140661]
-- [lib] rhashtable: Spelling s/compuate/compute/ (Jiri Benc) [1140661]
-- [net] netlink: Annotate RCU locking for seq_file walker (Jiri Benc) [1140661]
-- [net] netlink: hold nl_sock_hash_lock during diag dump (Jiri Benc) [1140661]
-- [net] netlink: fix lockdep splats (Jiri Benc) [1140661]
-- [net] netlink: Convert netlink_lookup() to use RCU protected hash table (Jiri Benc) [1140661]
-- [net] netlink: make compare exist all the time (Jiri Benc) [1140661]
-- [net] netlink: Add compare function for netlink_table (Jiri Benc) [1140661]
-- [lib] rhashtable: fix annotations for rht_for_each_entry_rcu() (Jiri Benc) [1140661]
-- [lib] rhashtable: unexport and make rht_obj() static (Jiri Benc) [1140661]
-- [lib] rhashtable: RCU annotations for next pointers (Jiri Benc) [1140661]
-- [lib] rhashtable: Resizable, Scalable, Concurrent Hash Table (Jiri Benc) [1140661]
-- [mm] add kvfree() (Jiri Benc) [1140661]
-- [net] netlink: Fix handling of error from netlink_dump() (Jiri Benc) [1140661]
-- [net] netlink: autosize skb lengthes (Jiri Benc) [1140661]
-- [net] netlink: Eliminate kmalloc in netlink dump operation (Jiri Benc) [1140661]
-
-* Mon Nov 24 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-210.el7]
-- [misc] kabi: revert two kabi additions that need updated ppc64 sums (Jarod Wilson)
-
-* Mon Nov 24 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-209.el7]
-- [fs] xfs: write failure beyond EOF truncates too much data (Brian Foster) [1032968]
-- [fs] xfs: xfs_vm_write_end truncates too much on failure (Brian Foster) [1032968]
-- [fs] xfs: use ->invalidatepage() length argument (Brian Foster) [1032968]
-- [fs] xfs: change invalidatepage prototype to accept length (Brian Foster) [1032968]
-- [fs] xfs: restore buffer_head unwritten bit on ioend cancel (Brian Foster) [1162953]
-- [fs] xfs: allow inode allocations in post-growfs disk space (Eric Sandeen) [1115201]
-- [scsi] pm8001: Update nvmd response data to request buffer (Rich Bono) [1110943]
-- [scsi] pm8001: fix pm8001_store_update_fw (Rich Bono) [1110943]
-- [scsi] pm8001: Fix erratic calculation in update_flash (Rich Bono) [1110943]
-- [scsi] pm8001: Fix invalid return when request_irq() failed (Rich Bono) [1110943]
-- [scsi] pm8001: fix a memory leak in nvmd_resp (Rich Bono) [1110943]
-- [scsi] pm8001: fix update_flash (Rich Bono) [1110943]
-- [scsi] pm8001: fix a memory leak in flash_update (Rich Bono) [1110943]
-- [scsi] pm8001: Cleaning up uninitialized variables (Rich Bono) [1110943]
-- [scsi] pm8001: Fix to remove null pointer checks that could never happen (Rich Bono) [1110943]
-- [scsi] pm8001: more fixes to honor return value (Rich Bono) [1110943]
-- [scsi] pm8001: add a new spinlock to protect the CCB (Rich Bono) [1110943]
-- [scsi] pm8001: honor return value (Rich Bono) [1110943]
-- [scsi] pm8001: clean bitmap management functions (Rich Bono) [1110943]
-- [scsi] pm8001: Fix hibernation issue (Rich Bono) [1110943]
-- [scsi] pm8001: Fix potential null pointer dereference and memory leak (Rich Bono) [1110943]
-- [scsi] pm80xx: Fix missing NULL pointer checks and memory leaks (Rich Bono) [1110943]
-- [scsi] drivers/scsi/pm8001/pm8001_ctl.c: avoid world-writable sysfs files (Rich Bono) [1110943]
-- [scsi] pm80xx: fix problem of pm8001_work_fn reseting incorrect phy device (Rich Bono) [1110943]
-- [scsi] pm80xx: Fix missing NULL pointer checks and memory leaks (Rich Bono) [1110943]
-- [scsi] pm80xx: Enable BAR shift to avoid BIOS conflict with MPI space for ATTO pm8001 based HBAs (Rich Bono) [1110943]
-- [scsi] pm80xx: Read saved WWN from NVMD for ATTO pm8001 based HBAs (Rich Bono) [1110943]
-- [scsi] pm80xx: Fixed return value issue (Rich Bono) [1110943]
-- [md] dm-thin: fix pool_io_hints to avoid looking at max_hw_sectors (Mike Snitzer) [1156164]
-- [kernel] audit: keep inode pinned (Paul Moore) [1162261]
-- [block] nvme: cleanup nvme_split_flush_data() (David Milburn) [1161766]
-- [scsi] ibmvfc: fix little endian issues (Steve Best) [1159781]
-- [scsi] ibmvfc: Fix for offlining devices during error recovery (Steve Best) [1159781]
-
-* Sat Nov 22 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-208.el7]
-- [scsi] cxgb4i: send abort_rpl correctly (Sai Vemuri) [1163467]
-- [Documentation] cxgbi: add maintainer for cxgb3i/cxgb4i (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: FL Starvation Threshold needs to be larger than the SGE's Egress Congestion Threshold (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: For T5 use Packing and Padding Boundaries for SGE DMA transfers (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: Move fl_starv_thres into adapter->sge data structure (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: Replace repetitive pci device ID's with right ones (Sai Vemuri) [1163467]
-- [infinband] cxgb4: Make c4iw_wr_log_size_order static (Sai Vemuri) [1163467]
-- [infinband] cxgb4: Add missing neigh_release in find_route (Sai Vemuri) [1163467]
-- [infinband] cxgb4: Fix ntuple calculation for ipv6 and remove duplicate line (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Fix FW flash logic using ethtool (Sai Vemuri) [1163467]
-- [infiniband] cxgb4: Take IPv6 into account for best_mtu and set_emss (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Wait for device to get ready before reading any register (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: Add 40G support for cxgb4vf driver (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Updated the LSO transfer length in CPL_TX_PKT_LSO for T5 (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Add support for adaptive rx (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Change default Interrupt Holdoff Packet Count Threshold (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Add Devicde ID for two more adapter (Sai Vemuri) [1163467]
-- [ethernet] cxgb4vf: Remove superfluous "idx" parameter of CH_DEVICE() macro (Sai Vemuri) [1163467]
-- [ethernet] cxgb4: Use BAR2 Going To Sleep (GTS) for T5 and later (Sai Vemuri) [1163467]
-- [scsi] cxgbi: support ipv6 address host_param (Sai Vemuri) [1153834]
-- [scsi] cxgb4i: Fix -Wmaybe-uninitialized warning (Sai Vemuri) [1153834]
-- [scsi] cxgb4i: Remove duplicate call to dst_neigh_lookup() (Sai Vemuri) [1153834]
-- [scsi] cxgb4i: Fix -Wunused-function warning (Sai Vemuri) [1153834]
-- [ethernet] cxgb4: Fix build failure in cxgb4 when ipv6 is disabled/not in-built (Sai Vemuri) [1153834]
-- [scsi] cxgb4i: Remove duplicated CLIP handling code (Sai Vemuri) [1153834]
-- [ethernet] be2net: fix alignment on line wrap (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove multiple assignments on a single line (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove space after typecasts (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove unnecessary blank lines after an open brace (Ivan Vecera) [1165755]
-- [ethernet] be2net: insert a blank line after function/struct//enum definitions (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove multiple blank lines (Ivan Vecera) [1165755]
-- [ethernet] be2net: add blank line after declarations (Ivan Vecera) [1165755]
-- [ethernet] be2net: remove return statements for void functions (Ivan Vecera) [1165755]
-- [ethernet] be2net: add speed reporting for 20G-KR interface (Ivan Vecera) [1165755]
-- [ethernet] be2net: add speed reporting for 40G/KR interface (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix sparse warnings in be_cmd_req_port_type{} (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix a sparse warning in be_cmd_modify_eqd() (Ivan Vecera) [1165755]
-- [ethernet] be2net: enable PCIe error reporting on VFs too (Ivan Vecera) [1165755]
-- [ethernet] be2net: send a max of 8 EQs to be_cmd_modify_eqd() on Lancer (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix port-type reporting in get_settings (Ivan Vecera) [1165755]
-- [ethernet] be2net: add ethtool "-m" option support (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix RX fragment posting for jumbo frames (Ivan Vecera) [1165755]
-- [ethernet] be2net: replace strcpy with strlcpy (Ivan Vecera) [1165755]
-- [ethernet] be2net: fix some log messages (Ivan Vecera) [1165755]
-- [ethernet] bna: fix skb->truesize underestimation (Ivan Vecera) [1165759]
-- [ethernet] bna: allow transmit tagged frames (Ivan Vecera) [1165759]
-- [ethernet] bna: use container_of to resolve bufdesc_ex from bufdesc (Ivan Vecera) [1165759]
-- [ethernet] r8169: add support for RTL8168EP (Ivan Vecera) [1165764]
-- [ethernet] r8169: add support for Byte Queue Limits (Ivan Vecera) [1165764]
-- [ethernet] r8169: call "rtl8168_driver_start" "rtl8168_driver_stop" only when hardware dash function is enabled (Ivan Vecera) [1165764]
-- [ethernet] r8169: modify the behavior of function "rtl8168_oob_notify" (Ivan Vecera) [1165764]
-- [ethernet] r8169: change the name of function "r8168dp_check_dash" to "r8168_check_dash" (Ivan Vecera) [1165764]
-- [ethernet] r8169: change the name of function"rtl_w1w0_eri" (Ivan Vecera) [1165764]
-- [ethernet] r8169: for function "rtl_w1w0_phy" change its name and behavior (Ivan Vecera) [1165764]
-- [ethernet] r8169: add more chips to support magic packet v2 (Ivan Vecera) [1165764]
-- [ethernet] r8169: add support more chips to get mac address from backup mac address register (Ivan Vecera) [1165764]
-- [ethernet] r8169: add disable/enable RTL8411B pll function (Ivan Vecera) [1165764]
-- [ethernet] r8169: add disable/enable RTL8168G pll function (Ivan Vecera) [1165764]
-- [ethernet] r8169: change uppercase number to lowercase number (Ivan Vecera) [1165764]
-- [ethernet] r8169: fix an if condition (Ivan Vecera) [1165764]
-- [ethernet] r8169: adjust __rtl8169_set_features (Ivan Vecera) [1165764]
-- [ethernet] r8169: fix setting rx vlan (Ivan Vecera) [1165764]
-- [ethernet] r8169: fix the default setting of rx vlan (Ivan Vecera) [1165764]
-
-* Sat Nov 22 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-207.el7]
-- [powerpc] use device_online/offline() instead of cpu_up/down() (Gustavo Duarte) [1157737]
-- [ethernet] i40e: disable FCoE (Stefan Assmann) [1165175]
-- [cpufreq] intel_pstate: Add CPUID for BDW-H CPU (Steve Best) [1164379]
-- [mm] do not overwrite reserved pages counter at show_mem() (Rafael Aquini) [1125433]
-- [alsa] Revert: Kconfig: rename HAS_IOPORT to HAS_IOPORT_MAP (Jarod Wilson) [1112200]
-- [ethernet] enic: Do not call napi_disable when preemption is disabled (Stefan Assmann) [1145019]
-- [ethernet] enic: fix possible deadlock in enic_stop/ enic_rfs_flw_tbl_free (Stefan Assmann) [1145019]
-- [x86] uv_bau: Avoid NULL pointer reference in ptc_seq_show (Frank Ramsay) [1161183]
-- [x86] uv_bau: Increase maximum CPUs per socket/hub (Frank Ramsay) [1161183]
-- [mm] vmscan: do not throttle based on pfmemalloc reserves if node has no ZONE_NORMAL (Gustavo Duarte) [1148925]
-- [char] hwrng/pseries: port to new read API and fix stack corruption (Gustavo Duarte) [1163659]
-- [md] Revert: dm-cache: add call to mark_tech_preview (Mike Snitzer) [1159001]
-- [md] dm-cache: emit a warning message if there are a lot of cache blocks (Mike Snitzer) [1159001]
-- [md] dm-cache: improve discard support (Mike Snitzer) [1159001]
-- [md] dm-cache: revert "prevent corruption caused by discard_block_size > cache_block_size" (Mike Snitzer) [1159001]
-- [md] dm-cache: revert "remove remainder of distinct discard block size" (Mike Snitzer) [1159001]
-- [md] dm-bio-prison: introduce support for locking ranges of blocks (Mike Snitzer) [1159001]
-- [md] dm-btree: fix a recursion depth bug in btree walking code (Mike Snitzer) [1080894]
-- [md] dm-cache-policy-mq: simplify ability to promote sequential IO to the cache (Mike Snitzer) [1159001]
-- [md] dm-cache-policy-mq: tweak algorithm that decides when to promote a block (Mike Snitzer) [1159001]
-- [security] selinux: fix inode security list corruption (Paul Moore) [1152274]
-
-* Thu Nov 20 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-206.el7]
-- [x86] quirks: Print the Intel graphics stolen memory range (Rob Clark) [1154053]
-- [x86] quirks: Add Intel graphics stolen memory quirk for gen2 platforms (Rob Clark) [1154053]
-- [x86] quirks: Add vfunc for Intel graphics stolen memory base address (Rob Clark) [1154053]
-- [x86] quirks: use gen6 stolen detection for VLV (Rob Clark) [1154053]
-- [x86] quirks: support GMS and GGMS changes on i915/bdw (Rob Clark) [1154053]
-- [x86] quirks: add early quirk for reserving Intel graphics stolen memory v5 (Rob Clark) [1154053]
-- [net] vmxnet3: fix netpoll race condition (Neil Horman) [1158001]
-- [virt] virtio_balloon: update_balloon_size() - update correct field (Luiz Capitulino) [1163567]
-- [firmware] memmap: don't create memmap sysfs of same firmware_map_entry (Takahiro MUNEDA) [1160173]
-- [mm] memory-hotplug: clear pgdat which is allocated by bootmem in try_offline_node() (Larry Woodman) [1156393]
-- [kernel] add panic_on_warn (Prarit Bhargava) [1163852]
-- [virt] hyperv: Fix the total_data_buflen in send path (Jason Wang) [1156305]
-- [virt] hyperv: Add handling of IP header with option field in netvsc_set_hash() (Jason Wang) [1156305]
-- [virt] hyperv: Fix a bug in netvsc_start_xmit() (Jason Wang) [1156305]
-- [virt] hyperv: Fix a bug in netvsc_send() (Jason Wang) [1156305]
-- [powerpc] kexec: adjust crashkernel reservation for 2GB-4GB systems (Gustavo Duarte) [1074924]
-- [virt] kvm/ioapic: conditionally delay irq delivery duringeoi broadcast (John Snow) [921526]
-- [fs] file_table: get rid of s_files and files_lock (Gustavo Duarte) [1112805]
-- [fs] super: uninline destroy_super(), consolidate alloc_super() (Gustavo Duarte) [1112805]
-- [ethernet] mlx4: Advertize encapsulation offloads features only when VXLAN tunnel is set (Florian Westphal) [1097478]
-- [ethernet] mlx4: Avoid leaking steering rules on flow creation error flow (Florian Westphal) [1097478]
-- [ethernet] mlx4: Don't attempt to TX offload the outer UDP checksum for VXLAN (Florian Westphal) [1097478]
-- [scsi] bnx2fc: fix tgt spinlock locking (Maurizio Lombardi) [1165169]
-- [scsi] TUR path is down after adapter gets reset with multipath (Ewan Milne) [1153738]
-- [scsi] call device handler for failed TUR command (Ewan Milne) [1153738]
-
-* Sat Nov 15 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-205.el7]
-- [mm] shmem: fix splicing from a hole while it's punched (Denys Vlasenko) [1118245] {CVE-2014-4171}
-- [mm] shmem: fix faulting into a hole, not taking i_mutex (Denys Vlasenko) [1118245] {CVE-2014-4171}
-- [mm] shmem: fix faulting into a hole while it's punched (Denys Vlasenko) [1118245] {CVE-2014-4171}
-- [virt] kvm: detect LVTT changes under APICv (Radim Krcmar) [1151174]
-- [virt] kvm: detect SPIV changes under APICv (Radim Krcmar) [1151174]
-- [virt] kvm: recalculate_apic_map after enabling apic (Radim Krcmar) [1151174]
-- [virt] kvm: trace kvm_ple_window grow/shrink (Radim Krcmar) [1163296]
-- [virt] kvm/vmx: dynamise PLE window (Radim Krcmar) [1163296]
-- [virt] kvm/vmx: make PLE window per-VCPU (Radim Krcmar) [1163296]
-- [virt] kvm: introduce sched_in to kvm_x86_ops (Radim Krcmar) [1163296]
-- [virt] kvm: add kvm_arch_sched_in (Radim Krcmar) [1163296]
-- [kernel] uprobes: Don't assume that arch_uprobe->insn/ixol is u8[MAX_UINSN_BYTES] (Steve Best) [1159365]
-- [drm] qxl: don't create too large primary surface (Dave Airlie) [1158233]
-- [powerpc] pseries: Quieten ibm, pcie-link-speed-stats warning (Steve Best) [1162287]
-- [md] dm-thin: fix potential for infinite loop in pool_io_hints (Mike Snitzer) [1156164]
-- [virt] hyperv/vmbus: Increase the limit on the number of pfns we can handle (Jason Wang) [1160130]
-- [virt] kvm: update masterclock values on TSC writes (Marcelo Tosatti) [1158039]
-- [virt] kvm: emulate MOVNTDQ (Paolo Bonzini) [1117542]
-- [crypto] af_alg: properly label AF_ALG socket (Ondrej Kozina) [1161148]
-- [powerpc] vphn: NUMA node code expects big-endian (Steve Best) [1154673]
-
-* Fri Nov 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-204.el7]
-- [net] ip6_gre: Return an error when adding an existing tunnel (Alexander Duyck) [1151886 1152368]
-- [net] ip6_tunnel: Return an error when adding an existing tunnel (Alexander Duyck) [1151886 1152368]
-- [net] ip_tunnel: Don't allow to add the same tunnel multiple times (Alexander Duyck) [1151886 1152368]
-- [net] gre: Use inner mac length when computing tunnel length (Alexander Duyck) [1151886 1152368]
-- [net] gre: enable offloads for GRE (Alexander Duyck) [1151886 1152368]
-- [net] ipv4: fix a potential use after free in gre_offload.c (Alexander Duyck) [1151886 1152368]
-- [net] ipv4: fix a potential use after free in ip_tunnel_core.c (Alexander Duyck) [1151886 1152368]
-- [net] gro: fix aggregation for skb using frag_list (Alexander Duyck) [1154239]
-- [net] gro: make sure skb->cb[] initial content has not to be zero (Alexander Duyck) [1154239]
-- [net] bridge: notify user space after fdb update (Alexander Duyck) [1109605]
-- [net] bridge: Fix the way to find old local fdb entries in br_fdb_changeaddr (Alexander Duyck) [1109605]
-- [net] handle encapsulation offloads when computing segment lengths (Jiri Benc) [1144571]
-- [net] gso: make skb_gso_segment error handling more robust (Jiri Benc) [1144571]
-- [net] gso: use feature flag argument in all protocol gso handlers (Jiri Benc) [1144571]
-- [net] udp_offload: Use IS_ERR_OR_NULL (Jiri Benc) [1144571]
-- [net] ipv4: Use IS_ERR_OR_NULL (Jiri Benc) [1144571]
-
-* Wed Nov 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-203.el7]
-- [fs] GFS2: If we use up our block reservation, request more next time (Robert S Peterson) [1142238]
-- [fs] GFS2: Only increase rs_sizehint (Robert S Peterson) [1142238]
-- [fs] GFS2: Set of distributed preferences for rgrps (Robert S Peterson) [1142238]
-- [fs] autofs: fix symlinks aren't checked for expiry (Ian Kent) [1116182]
-- [fs] GFS2: fix regression in dir_double_exhash (Robert S Peterson) [1160229]
-- [fs] gfs2_atomic_open(): skip lookups on hashed dentry (Robert S Peterson) [1158150]
-- [fs] splice: perform generic write checks (Eric Sandeen) [1155907]
-- [fs] fs: seq_file: fallback to vmalloc allocation (Ian Kent) [1095623]
-- [fs] fs: /proc/stat: convert to single_open_size() (Ian Kent) [1095623]
-- [fs] fs: seq_file: always clear m->count when we free m->buf (Ian Kent) [1095623]
-
-* Wed Nov 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-202.el7]
-- [ethernet] mlx4: Use PTYS register to set ethtool settings (Speed) (Amir Vadai) [1060221]
-- [ethernet] mlx4: Use PTYS register to query ethtool settings (Amir Vadai) [1060221]
-- [ethernet] mlx4: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Amir Vadai) [1060221]
-- [ethernet] mlx4: Add 100M, 20G, 56G speeds ethtool reporting support (Amir Vadai) [1060221]
-- [ethernet] mlx4: Add ethernet backplane autoneg device capability (Amir Vadai) [1060221]
-- [ethernet] mlx4: Introduce ACCESS_REG CMD and eth_prot_ctrl dev cap (Amir Vadai) [1060221]
-- [ethernet] mlx4: Cable info, get_module_info/eeprom ethtool support (Amir Vadai) [1060221]
-- [ethernet] mlx4: Introduce mlx4_get_module_info for cable module info reading (Amir Vadai) [1060221]
-- [ethernet] mlx4: Enable CQE/EQE stride support (Amir Vadai) [1060221]
-- [virt] kvm/vmx: defer load of APIC access page address during reset (Paolo Bonzini) [1140974]
-- [virt] kvm: do not handle APIC access page if in-kernel irqchip is not in use (Paolo Bonzini) [1140974]
-- [virt] kvm: Unpin and remove kvm_arch->apic_access_page (Paolo Bonzini) [1140974]
-- [virt] kvm/vmx: Implement set_apic_access_page_addr (Paolo Bonzini) [1140974]
-- [virt] kvm: Add request bit to reload APIC access page address (Paolo Bonzini) [1140974]
-- [virt] kvm: Add arch specific mmu notifier for page invalidation (Paolo Bonzini) [1140974]
-- [virt] kvm: Rename make_all_cpus_request() to kvm_make_all_cpus_request() and make it non-static (Paolo Bonzini) [1140974]
-- [virt] kvm: Remove ept_identity_pagetable from struct kvm_arch (Paolo Bonzini) [1140974]
-- [virt] kvm: Use APIC_DEFAULT_PHYS_BASE macro as the apic access page address (Paolo Bonzini) [1140974]
-- [drm] vmwgfx: respect 'nomodeset' (Rob Clark) [1101381]
-- [s390] qeth: don't query for info if hardware not ready (Hendrik Brueckner) [1147573]
-- [block] Fix dev_t minor allocation lifetime (Jeff Moyer) [1139898]
-- [md] dm-crypt: fix access beyond the end of allocated space (Mike Snitzer) [1135066]
-- [fs] isofs: unbound recursion when processing relocated directories (Jacob Tanenbaum) [1142271] {CVE-2014-5471 CVE-2014-5472}
-- [ethernet] be2net: use v1 of SET_FLOW_CONTROL command (Ivan Vecera) [1087128]
-- [acpi] return 1 after successfully install cmos_rtc space handler (Amos Kong) [1159465]
-- [x86] hyperv: Bypass the timer_irq_works() check (Jason Wang) [1058105]
-- [mm] hugetlb: initialize PG_reserved for tail pages of gigantic compound pages (Luiz Capitulino) [1158506]
-- [kernel] cpuset: PF_SPREAD_PAGE and PF_SPREAD_SLAB should be atomic flags (Aaron Tomlin) [1160360]
-- [infiniband] qib: Correct reference counting in debugfs qp_stats (Rui Wang) [1150001]
-- [x86] uv: Check for alloc_cpumask_var() failures properly in uv_nmi_setup() (George Beshers) [1155754]
-- [powerpc] fadump: Fix endianess issues in firmware assisted dump handling (Steve Best) [1159773]
-
-* Mon Nov 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-201.el7]
-- [scsi] ipr: wait for aborted command responses (Gustavo Duarte) [1156530]
-- [ethernet] mlx4: Protect port type setting by mutex (Amir Vadai) [1095345]
-- [acpi] pm: Only set power states of devices that are power manageable (Amos Kong) [1142683]
-- [x86] setup: Mark Intel Haswell ULT as supported (Prarit Bhargava) [1159006]
-- [kernel] sched: Fix unreleased llc_shared_mask bit during CPU hotplug (Takahiro MUNEDA) [1116294]
-- [mm] do not walk all of system memory during show_mem (Johannes Weiner) [1125433]
-- [mm] remove noisy remainder of the scan_unevictable interface (Johannes Weiner) [1111215]
-- [pci] Rename sysfs 'enabled' file back to 'enable' (Myron Stowe) [1159655]
-- [kernel] sched/fair: Care divide error in update_task_scan_period() (Motohiro Kosaki) [1140979]
-- [powerpc] numa: ensure per-cpu NUMA mappings are correct on topology update (Gustavo Duarte) [1150097]
-- [powerpc] numa: use cached value of update->cpu in update_cpu_topology (Gustavo Duarte) [1150097]
-- [powerpc] numa: Add ability to disable and debug topology updates (Gustavo Duarte) [1150097]
-- [powerpc] numa: check error return from proc_create (Gustavo Duarte) [1150097]
-- [powerpc] some changes in numa_setup_cpu() (Gustavo Duarte) [1150097]
-- [powerpc] Only set numa node information for present cpus at boottime (Gustavo Duarte) [1150097]
-- [powerpc] Fix warning reported by verify_cpu_node_mapping() (Gustavo Duarte) [1150097]
-- [powerpc] reorder per-cpu NUMA information's initialization (Gustavo Duarte) [1150097]
-- [powerpc] pseries: Make CPU hotplug path endian safe (Steve Best) [1159579]
-- [powerpc] pseries: Fix endian issues in cpu hot-removal (Steve Best) [1159579]
-- [powerpc] pseries: Fix endian issues in onlining cpu threads (Steve Best) [1159579]
-- [x86] smpboot: Fix up typo in topology detection (Prarit Bhargava) [1156655]
-- [x86] smpboot: Add new topology for multi-NUMA-node CPUs (Prarit Bhargava) [1158269]
-- [kernel] sched: Rework sched_domain topology definition (Prarit Bhargava) [1158269]
-- [usb] hub: take hub->hdev reference when processing from eventlist (Don Zickus) [1151508]
-- [usb] ehci: unlink QHs even after the controller has stopped (Don Zickus) [1151491]
-- [tools] testing/selftests/powerpc: Correct DSCR during TM context switch (Gustavo Duarte) [1134511]
-- [tools] testing/selftests: Add infrastructure for powerpc selftests (Gustavo Duarte) [1134511]
-- [scsi] ibmvscsi: Abort init sequence during error recovery (Gustavo Duarte) [1105496]
-- [scsi] ibmvscsi: Add memory barriers for send / receive (Gustavo Duarte) [1105496]
-- [x86] fpu: __restore_xstate_sig()->math_state_restore() needs preempt_disable() (Oleg Nesterov) [1121784]
-- [x86] fpu: shift drop_init_fpu() from save_xstate_sig() to handle_signal() (Oleg Nesterov) [1121784]
-
-* Fri Nov 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-200.el7]
-- [fs] ext4: fix wrong assert in ext4_mb_normalize_request() (Lukas Czerner) [1146046]
-- [mm] Remove false WARN_ON from pagecache_isize_extended() (Lukas Czerner) [1156096]
-- [fs] ext4: check s_chksum_driver when looking for bg csum presence (Lukas Czerner) [1156096]
-- [fs] ext4: move error report out of atomic context in ext4_init_block_bitmap() (Lukas Czerner) [1156096]
-- [fs] ext4: Replace open coded mdata csum feature to helper function (Lukas Czerner) [1156096]
-- [fs] ext4: fix reservation overflow in ext4_da_write_begin (Lukas Czerner) [1156096]
-- [fs] ext4: add ext4_iget_normal() which is to be used for dir tree lookups (Lukas Czerner) [1156096]
-- [fs] ext4: don't orphan or truncate the boot loader inode (Lukas Czerner) [1156096]
-- [fs] ext4: grab missed write_count for EXT4_IOC_SWAP_BOOT (Lukas Czerner) [1156096]
-- [fs] ext4: get rid of code duplication (Lukas Czerner) [1156096]
-- [fs] ext4: fix over-defensive complaint after journal abort (Lukas Czerner) [1156096]
-- [fs] ext4: fix return value of ext4_do_update_inode (Lukas Czerner) [1156096]
-- [fs] ext4: fix mmap data corruption when blocksize < pagesize (Lukas Czerner) [1156096]
-- [fs] vfs: fix data corruption when blocksize < pagesize for mmaped data (Lukas Czerner) [1156096]
-- [fs] ext4: don't check quota format when there are no quota files (Lukas Czerner) [1156096]
-- [fs] jbd2: avoid pointless scanning of checkpoint lists (Lukas Czerner) [1156096]
-- [fs] ext4: explicitly inform user about orphan list cleanup (Lukas Czerner) [1156096]
-- [fs] jbd2: jbd2_log_wait_for_space improve error detetcion (Lukas Czerner) [1156096]
-- [fs] jbd2: free bh when descriptor block checksum fails (Lukas Czerner) [1156096]
-- [fs] ext4: check EA value offset when loading (Lukas Czerner) [1156096]
-- [fs] ext4: don't keep using page if inline conversion fails (Lukas Czerner) [1156096]
-- [fs] ext4: validate external journal superblock checksum (Lukas Czerner) [1156096]
-- [fs] jbd2: fix journal checksum feature flag handling (Lukas Czerner) [1156096]
-- [fs] ext4: provide separate operations for sysfs feature files (Lukas Czerner) [1156096]
-- [fs] ext4: add sysfs entry showing whether the fs contains errors (Lukas Czerner) [1156096]
-- [fs] ext4: renumber EXT4_EX_* flags to avoid flag aliasing problems (Lukas Czerner) [1156096]
-- [fs] ext4: fix comments about get_blocks (Lukas Czerner) [1156096]
-- [fs] ext4: fix accidental flag aliasing in ext4_map_blocks flags (Lukas Czerner) [1156096]
-- [fs] ext4: fix ZERO_RANGE bug hidden by flag aliasing (Lukas Czerner) [1156096]
-- [fs] ext4: use ext4_update_i_disksize instead of opencoded ones (Lukas Czerner) [1156096]
-- [fs] ext4: remove a duplicate call in ext4_init_new_dir() (Lukas Czerner) [1156096]
-- [fs] ext4: add missing BUFFER_TRACE before ext4_journal_get_write_access (Lukas Czerner) [1156096]
-- [fs] ext4: check inline directory before converting (Lukas Czerner) [1156096]
-- [fs] ext4: fix incorrect locking in move_extent_per_page (Lukas Czerner) [1156096]
-- [fs] ext4: use correct depth value (Lukas Czerner) [1156096]
-- [fs] ext4: add i_data_sem sanity check (Lukas Czerner) [1156096]
-- [fs] ext4: fix wrong size computation in ext4_mb_normalize_request() (Lukas Czerner) [1156096]
-- [fs] ext4: make ext4_has_inline_data() as a inline function (Lukas Czerner) [1156096]
-- [fs] ext4: remove readpage() check in ext4_mmap_file() (Lukas Czerner) [1156096]
-- [fs] ext4: remove metadata reservation checks (Lukas Czerner) [1156096]
-- [fs] ext4: rearrange initialization to fix EXT4FS_DEBUG (Lukas Czerner) [1156096]
-- [fs] ext4: fix potential null pointer dereference in ext4_free_inode (Lukas Czerner) [1156096]
-- [fs] ext4: decrement free clusters/inodes counters when block group declared bad (Lukas Czerner) [1156096]
-- [fs] ext4: handle symlink properly with inline_data (Lukas Czerner) [1156096]
-- [fs] ext4: reduce contention on s_orphan_lock (Lukas Czerner) [1156096]
-- [fs] ext4: use sbi in ext4_orphan_[add|del]() (Lukas Czerner) [1156096]
-- [fs] ext4: remove unnecessary double parentheses (Lukas Czerner) [1156096]
-- [fs] ext4: do not destroy ext4_groupinfo_caches if ext4_mb_init() fails (Lukas Czerner) [1156096]
-- [fs] ext4: make local functions static (Lukas Czerner) [1156096]
-- [fs] ext4: fix block bitmap validation when bigalloc, ^flex_bg (Lukas Czerner) [1156096]
-- [fs] ext4: fix block bitmap initialization under sparse_super2 (Lukas Czerner) [1156096]
-- [fs] ext4: find the group descriptors on a 1k-block bigalloc, meta_bg filesystem (Lukas Czerner) [1156096]
-- [fs] ext4: avoid unneeded lookup when xattr name is invalid (Lukas Czerner) [1156096]
-- [fs] ext4: remove obsoleted check (Lukas Czerner) [1156096]
-- [fs] ext4: add a new spinlock i_raw_lock to protect the ext4's raw inode (Lukas Czerner) [1156096]
-- [fs] ext4: revert Disable punch hole on non-extent mapped files (Lukas Czerner) [1150178]
-- [fs] ext4: fix transaction issues for ext4_fallocate and ext_zero_range (Lukas Czerner) [1150171]
-- [fs] ext4: move i_size, i_disksize update routines to helper function (Lukas Czerner) [1150171]
-- [fs] ext4: fix incorect journal credits reservation in ext4_zero_range (Lukas Czerner) [1150171]
-- [fs] ext4: fix COLLAPSE RANGE test for bigalloc file systems (Lukas Czerner) [1150171]
-- [fs] ext4: fix punch hole on files with indirect mapping (Lukas Czerner) [1150171]
-- [fs] ext4: Fix block zeroing when punching holes in indirect block files (Lukas Czerner) [1150171]
-- [fs] ext4: fix ZERO_RANGE test failure in data journalling (Lukas Czerner) [1150171]
-- [fs] ext4: use EXT_MAX_BLOCKS in ext4_es_can_be_merged() (Lukas Czerner) [1150171]
-- [fs] ext4: rename uninitialized extents to unwritten (Lukas Czerner) [1150171]
-- [fs] ext4: disable COLLAPSE_RANGE for bigalloc (Lukas Czerner) [1150171]
-- [fs] ext4: fix COLLAPSE_RANGE failure with 1KB block size (Lukas Czerner) [1150171]
-- [fs] ext4: use EINVAL if not a regular file in ext4_collapse_range() (Lukas Czerner) [1150171]
-- [fs] ext4: enforce we are operating on a regular file in ext4_zero_range() (Lukas Czerner) [1150171]
-- [fs] ext4: fix extent merging in ext4_ext_shift_path_extents() (Lukas Czerner) [1150171]
-- [fs] ext4: discard preallocations after removing space (Lukas Czerner) [1150171]
-- [fs] ext4: no need to truncate pagecache twice in collapse range (Lukas Czerner) [1150171]
-- [fs] ext4: fix removing status extents in ext4_collapse_range() (Lukas Czerner) [1150171]
-- [fs] ext4: use filemap_write_and_wait_range() correctly in collapse range (Lukas Czerner) [1150171]
-- [fs] ext4: use truncate_pagecache() in collapse range (Lukas Czerner) [1150171]
-- [fs] ext4: always check ext4_ext_find_extent result (Lukas Czerner) [1150171]
-- [fs] ext4: COLLAPSE_RANGE only works on extent-based files (Lukas Czerner) [1150171]
-- [fs] ext4: fix byte order problems introduced by the COLLAPSE_RANGE patches (Lukas Czerner) [1150171]
-- [fs] ext4: disallow all fallocate operation on active swapfile (Lukas Czerner) [1150171]
-- [fs] ext4: move falloc collapse range check into the filesystem methods (Lukas Czerner) [1150171]
-- [fs] ext4: fix COLLAPSE_RANGE test failure in data journalling mode (Lukas Czerner) [1150171]
-- [fs] ext4: remove unneeded test of ret variable (Lukas Czerner) [1150171]
-- [fs] ext4: Introduce FALLOC_FL_ZERO_RANGE flag for fallocate (Lukas Czerner) [1150171]
-- [fs] ext4: Introduce FALLOC_FL_ZERO_RANGE flag for fallocate (Lukas Czerner) [1150171]
-- [fs] ext4: refactor ext4_fallocate code (Lukas Czerner) [1150171]
-- [fs] ext4: Update inode i_size after the preallocation (Lukas Czerner) [1150171]
-- [fs] ext4: Add new flag(FALLOC_FL_COLLAPSE_RANGE) for fallocate (Lukas Czerner) [1150171]
-- [fs] ext4: Add support FALLOC_FL_COLLAPSE_RANGE for fallocate (Lukas Czerner) [1150171]
-
-* Wed Nov 05 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-199.el7]
-- [fs] quota: remove dqptr_sem (Lukas Czerner) [1053111]
-- [fs] quota: simplify remove_inode_dquot_ref() (Lukas Czerner) [1053111]
-- [fs] quota: avoid unnecessary dqget()/dqput() calls (Lukas Czerner) [1053111]
-- [fs] quota: protect Q_GETFMT by dqonoff_mutex (Lukas Czerner) [1053111]
-- [fs] xfs: add a few more verifier tests (Eric Sandeen) [1059330 1061656]
-- [fs] pipe: skip file_update_time on frozen fs (Eric Sandeen) [1107499]
-- [fs] xfs: don't sleep in xlog_cil_force_lsn on shutdown (Eric Sandeen) [1088240]
-- [fs] buffer: increase the buffer-head per-CPU LRU size (Zach Brown) [1053108]
-- [fs] fs: check bh blocknr earlier when searching lru (Zach Brown) [1053108]
-- [fs] truncate: drop 'oldsize' truncate_pagecache() parameter (Lukas Czerner) [1150139]
-- [fs] ext4: avoid trying to kfree an ERR_PTR pointer (Lukas Czerner) [1150139]
-- [fs] ext4: fix same-dir rename when inline data directory overflows (Lukas Czerner) [1150139]
-- [fs] jbd2: fix descriptor block size handling errors with journal_csum (Lukas Czerner) [1150139]
-- [fs] jbd2: fix infinite loop when recovering corrupt journal blocks (Lukas Czerner) [1150139]
-- [fs] ext4: update i_disksize coherently with block allocation on error path (Lukas Czerner) [1150139]
-- [fs] ext4: fix BUG_ON in mb_free_blocks() (Lukas Czerner) [1150139]
-- [fs] ext4: propagate errors up to ext4_find_entry()'s callers (Lukas Czerner) [1150139]
-- [fs] ext4: fix ext4_discard_allocated_blocks() if we can't allocate the pa struct (Lukas Czerner) [1150139]
-- [fs] ext4: fix a potential deadlock in __ext4_es_shrink() (Lukas Czerner) [1150139]
-- [fs] ext4: revert commit which was causing fs corruption after journal replays (Lukas Czerner) [1150139]
-- [fs] ext4: disable synchronous transaction batching if max_batch_time==0 (Lukas Czerner) [1150139]
-- [fs] ext4: clarify ext4_error message in ext4_mb_generate_buddy_error() (Lukas Czerner) [1150139]
-- [fs] ext4: clarify error count warning messages (Lukas Czerner) [1150139]
-- [fs] ext4: fix unjournalled bg descriptor while initializing inode bitmap (Lukas Czerner) [1150139]
-- [fs] ext4: Fix hole punching for files with indirect blocks (Lukas Czerner) [1150139]
-- [fs] ext4: Fix buffer double free in ext4_alloc_branch() (Lukas Czerner) [1150139]
-- [fs] ext4: fix zeroing of page during writeback (Lukas Czerner) [1150139]
-- [fs] ext4: fix data integrity sync in ordered mode (Lukas Czerner) [1150139]
-- [fs] ext4: get rid of EXT4_MAP_UNINIT flag (Lukas Czerner) [1150139]
-- [fs] ext4: fix ext4_count_free_clusters() with EXT4FS_DEBUG and bigalloc enabled (Lukas Czerner) [1150139]
-- [fs] ext4: silence sparse check warning for function ext4_trim_extent (Lukas Czerner) [1150139]
-- [fs] ext4: use i_size_read in ext4_unaligned_aio() (Lukas Czerner) [1150139]
-- [fs] ext4: move ext4_update_i_disksize() into mpage_map_and_submit_extent() (Lukas Czerner) [1150139]
-- [fs] ext4: return ENOMEM rather than EIO when find_###_page() fails (Lukas Czerner) [1150139]
-- [fs] ext4: update PF_MEMALLOC handling in ext4_write_inode() (Lukas Czerner) [1150139]
-- [fs] ext4: fix jbd2 warning under heavy xattr load (Lukas Czerner) [1150139]
-- [fs] ext4: note the error in ext4_end_bio() (Lukas Czerner) [1150139]
-- [fs] ext4: initialize multi-block allocator before checking block descriptors (Lukas Czerner) [1150139]
-- [fs] ext4: FIBMAP ioctl causes BUG_ON due to handle EXT_MAX_BLOCKS (Lukas Czerner) [1150139]
-- [fs] ext4: fix 64-bit number truncation warning (Lukas Czerner) [1150139]
-- [fs] ext4: fix premature freeing of partial clusters split across leaf blocks (Lukas Czerner) [1150139]
-- [fs] ext4: rename: split out helper functions (Lukas Czerner) [1150139]
-- [fs] ext4: rename: move EMLINK check up (Lukas Czerner) [1150139]
-- [fs] ext4: rename: create ext4_renament structure for local vars (Lukas Czerner) [1150139]
-- [fs] ext4: make ext4_block_zero_page_range static (Lukas Czerner) [1150139]
-- [fs] ext4: atomically set inode->i_flags in ext4_set_inode_flags() (Lukas Czerner) [1150139]
-- [fs] ext4: optimize Hurd tests when reading/writing inodes (Lukas Czerner) [1150139]
-- [fs] ext4: kill i_version support for Hurd-castrated file systems (Lukas Czerner) [1150139]
-- [fs] ext4: fix partial cluster handling for bigalloc file systems (Lukas Czerner) [1150139]
-- [fs] ext4: delete path dealloc code in ext4_ext_handle_uninitialized_extents (Lukas Czerner) [1150139]
-- [fs] jbd2: improve error messages for inconsistent journal heads (Lukas Czerner) [1150139]
-- [fs] jbd2: minimize region locked by j_list_lock in jbd2_journal_forget() (Lukas Czerner) [1150139]
-- [fs] jbd2: minimize region locked by j_list_lock in journal_get_create_access() (Lukas Czerner) [1150139]
-- [fs] jbd2: check jh->b_transaction without taking j_list_lock (Lukas Czerner) [1150139]
-- [fs] jbd2: add transaction to checkpoint list earlier (Lukas Czerner) [1150139]
-- [fs] jbd2: calculate statistics without holding j_state_lock and j_list_lock (Lukas Czerner) [1150139]
-- [fs] jbd2: don't hold j_state_lock while calling wake_up() (Lukas Czerner) [1150139]
-- [fs] jbd2: don't unplug after writing revoke records (Lukas Czerner) [1150139]
-- [fs] ext4: Speedup WB_SYNC_ALL pass called from sync(2) (Lukas Czerner) [1150139]
-- [fs] ext4: translate fallocate mode bits to strings (Lukas Czerner) [1150139]
-- [fs] ext4: merge uninitialized extents (Lukas Czerner) [1150139]
-- [fs] ext4: avoid exposure of stale data in ext4_punch_hole() (Lukas Czerner) [1150139]
-- [fs] ext4: silence warnings in extent status tree debugging code (Lukas Czerner) [1150139]
-- [fs] ext4: remove unused ac_ex_scanned (Lukas Czerner) [1150139]
-- [fs] ext4: avoid possible overflow in ext4_map_blocks() (Lukas Czerner) [1150139]
-- [fs] ext4: make sure ex.fe_logical is initialized (Lukas Czerner) [1150139]
-- [fs] ext4: don't calculate total xattr header size unless needed (Lukas Czerner) [1150139]
-- [fs] ext4: add ext4_es_store_pblock_status() (Lukas Czerner) [1150139]
-- [fs] ext4: fix error return from ext4_ext_handle_uninitialized_extents() (Lukas Czerner) [1150139]
-- [fs] ext4: address a benign compiler warning (Lukas Czerner) [1150139]
-- [fs] jbd2: mark file-local functions as static (Lukas Czerner) [1150139]
-- [fs] ext4: remove an unneeded check in mext_page_mkuptodate() (Lukas Czerner) [1150139]
-- [fs] ext4: clean up error handling in swap_inode_boot_loader() (Lukas Czerner) [1150139]
-- [fs] ext4: Add __init marking to init_inodecache (Lukas Czerner) [1150139]
-- [fs] ext4: don't leave i_crtime.tv_sec uninitialized (Lukas Czerner) [1150139]
-- [fs] ext4: fix online resize with a non-standard blocks per group setting (Lukas Czerner) [1150139]
-- [fs] ext4: fix online resize with very large inode tables (Lukas Czerner) [1150139]
-- [fs] ext4: don't try to modify s_flags if the the file system is read-only (Lukas Czerner) [1150139]
-- [fs] ext4: fix error paths in swap_inode_boot_loader() (Lukas Czerner) [1150139]
-- [fs] ext4: fix xfstest generic/299 block validity failures (Lukas Czerner) [1150139]
-- [fs] ext4: delete "set but not used" variables (Lukas Czerner) [1150139]
-- [fs] ext4: don't pass freed handle to ext4_walk_page_buffers (Lukas Czerner) [1150139]
-- [fs] ext4: avoid clearing beyond i_blocks when truncating an inline data file (Lukas Czerner) [1150139]
-- [fs] ext4: ext4_inode_is_fast_symlink should use EXT4_CLUSTER_SIZE (Lukas Czerner) [1150139]
-- [fs] ext4: fix a typo in extents.c (Lukas Czerner) [1150139]
-- [fs] ext4: use pd printk specificer (Lukas Czerner) [1150139]
-- [fs] ext4: standardize error handling in ext4_da_write_inline_data_begin() (Lukas Czerner) [1150139]
-- [fs] ext4: retry allocation when inline->extent conversion failed (Lukas Czerner) [1150139]
-- [fs] ext4: enable punch hole for bigalloc (Lukas Czerner) [1150139]
-- [fs] ext4: fix bigalloc regression (Lukas Czerner) [1150139]
-- [fs] ext4: add explicit casts when masking cluster sizes (Lukas Czerner) [1150139]
-- [fs] ext4: fix deadlock when writing in ENOSPC conditions (Lukas Czerner) [1150139]
-- [fs] jbd2: rename obsoleted msg JBD->JBD2 (Lukas Czerner) [1150139]
-- [fs] jbd2: revise KERN_EMERG error messages (Lukas Czerner) [1150139]
-- [fs] jbd2: don't BUG but return ENOSPC if a handle runs out of space (Lukas Czerner) [1150139]
-- [fs] ext4: Do not reserve clusters when fs doesn't support extents (Lukas Czerner) [1150139]
-- [fs] ext4: fix del_timer() misuse for ->s_err_report (Lukas Czerner) [1150139]
-- [fs] ext4: check for overlapping extents in ext4_valid_extent_entries() (Lukas Czerner) [1150139]
-- [fs] ext4: fix use-after-free in ext4_mb_new_blocks (Lukas Czerner) [1150139]
-- [fs] ext4: call ext4_error_inode() if jbd2_journal_dirty_metadata() fails (Lukas Czerner) [1150139]
-- [fs] ext4: add prototypes for macro-generated functions (Lukas Czerner) [1150139]
-- [fs] ext4: return non-zero st_blocks for inline data (Lukas Czerner) [1150139]
-- [fs] ext4: use prandom_u32() instead of get_random_bytes() (Lukas Czerner) [1150139]
-- [fs] ext4: remove unreachable code after ext4_can_extents_be_merged() (Lukas Czerner) [1150139]
-- [fs] ext4: remove unreachable code in ext4_can_extents_be_merged() (Lukas Czerner) [1150139]
-- [fs] ext4: don't count free clusters from a corrupt block group (Lukas Czerner) [1150139]
-- [fs] ext4: drop set but otherwise unused variable from ext4_add_dirent_to_inline() (Lukas Czerner) [1150139]
-- [fs] ext4: change ext4_read_inline_dir() to return 0 on success (Lukas Czerner) [1150139]
-- [fs] ext4: pair trace_ext4_writepages & trace_ext4_writepages_result (Lukas Czerner) [1150139]
-- [fs] ext4: fix performance regression in ext4_writepages (Lukas Czerner) [1150139]
-- [fs] ext4: fixup kerndoc annotation of mpage_map_and_submit_extent() (Lukas Czerner) [1150139]
-- [fs] ext4: fix performance regression in writeback of random writes (Lukas Czerner) [1150139]
-- [fs] ext4: allow specifying external journal by pathname mount option (Lukas Czerner) [1150139]
-- [fs] ext4: mark group corrupt on group descriptor checksum (Lukas Czerner) [1150139]
-- [fs] ext4: mark block group as corrupt on inode bitmap error (Lukas Czerner) [1150139]
-- [fs] ext4: mark block group as corrupt on block bitmap error (Lukas Czerner) [1150139]
-- [fs] jbd2: Fix endian mixing problems in the checksumming code (Lukas Czerner) [1150139]
-- [fs] ext4: isolate ext4_extents.h file (Lukas Czerner) [1150139]
-- [fs] ext4: Fix misspellings using 'codespell' tool (Lukas Czerner) [1150139]
-- [fs] ext4: convert write_begin methods to stable_page_writes semantics (Lukas Czerner) [1150139]
-- [fs] ext4: fix lost truncate due to race with writeback (Lukas Czerner) [1150139]
-- [fs] ext4: fix ext4_writepages() in presence of truncate (Lukas Czerner) [1150139]
-- [fs] ext4: move test whether extent to map can be extended to one place (Lukas Czerner) [1150139]
-- [fs] ext4: avoid reusing recently deleted inodes in no journal mode (Lukas Czerner) [1150139]
-- [fs] ext4: allocate delayed allocation blocks before rename (Lukas Czerner) [1150139]
-- [fs] ext4: start handle at least possible moment when renaming files (Lukas Czerner) [1150139]
-- [fs] ext4: add support for extent pre-caching (Lukas Czerner) [1150139]
-- [fs] ext4: cache all of an extent tree's leaf block upon reading (Lukas Czerner) [1150139]
-- [fs] ext4: use unsigned int for es_status values (Lukas Czerner) [1150139]
-- [fs] ext4: print the block number of invalid extent tree blocks (Lukas Czerner) [1150139]
-- [fs] ext4: refactor code to read the extent tree block (Lukas Czerner) [1150139]
-- [fs] ext4: add WARN_ON to check the length of allocated blocks (Lukas Czerner) [1150139]
-- [fs] ext4: call ext4_es_lru_add() after handling cache miss (Lukas Czerner) [1150139]
-- [fs] ext4: make the extent_status code more robust against ENOMEM failures (Lukas Czerner) [1150139]
-- [fs] ext4: simplify calculation of blocks to free on error (Lukas Czerner) [1150139]
-- [fs] ext4: fix spelling errors and a comment in extent_status tree (Lukas Czerner) [1150139]
-- [fs] ext4: fix warning in ext4_evict_inode() (Lukas Czerner) [1150139]
-- [fs] ext4: optimize starting extent in ext4_ext_rm_leaf() (Lukas Czerner) [1150139]
-- [fs] jbd2: invalidate handle if jbd2_journal_restart() fails (Lukas Czerner) [1150139]
-- [fs] ext4: fix up error handling for mpage_map_and_submit_extent() (Lukas Czerner) [1150139]
-- [fs] ext4: delete unnecessary C statements (Lukas Czerner) [1150139]
-- [fs] ext4: pass inode pointer instead of file pointer to punch hole (Lukas Czerner) [1150139]
-- [fs] ext4: improve free space calculation for inline_data (Lukas Czerner) [1150139]
-- [fs] ext4: reduce object size when !CONFIG_PRINTK (Lukas Czerner) [1150139]
-- [fs] ext4: improve extent cache shrink mechanism to avoid to burn CPU time (Lukas Czerner) [1150139]
-- [fs] ext4: delete unused variables (Lukas Czerner) [1150139]
-- [fs] jbd2: remove debug dependency on debug_fs and update Kconfig help text (Lukas Czerner) [1150139]
-- [fs] jbd2: use a single printk for jbd_debug() (Lukas Czerner) [1150139]
-- [fs] ext4: fix data integrity for ext4_sync_fs (Lukas Czerner) [1150139]
-- [fs] jbd2: optimize jbd2_journal_force_commit (Lukas Czerner) [1150139]
-- [fs] ext4: don't use EXT4_FREE_BLOCKS_FORGET unnecessarily (Lukas Czerner) [1150139]
-- [fs] ext4: use ext4_da_writepages() for all modes (Lukas Czerner) [1150139]
-- [fs] ext4: remove ext4_ioend_wait() (Lukas Czerner) [1150139]
-- [fs] ext4: don't wait for extent conversion in ext4_punch_hole() (Lukas Czerner) [1150139]
-- [fs] ext4: Remove wait for unwritten extents in ext4_ind_direct_IO() (Lukas Czerner) [1150139]
-- [fs] ext4: remove i_mutex from ext4_file_sync() (Lukas Czerner) [1150139]
-- [fs] ext4: use generic_file_fsync() in ext4_file_fsync() in nojournal mode (Lukas Czerner) [1150139]
-- [fs] ext4: remove wait for unwritten extent conversion from ext4_truncate() (Lukas Czerner) [1150139]
-- [fs] ext4: protect extent conversion after DIO with i_dio_count (Lukas Czerner) [1150139]
-- [fs] ext4: defer clearing of PageWriteback after extent conversion (Lukas Czerner) [1150139]
-- [fs] ext4: split extent conversion lists to reserved & unreserved parts (Lukas Czerner) [1150139]
-- [fs] ext4: use transaction reservation for extent conversion in ext4_end_io (Lukas Czerner) [1150139]
-- [fs] ext4: remove buffer_uninit handling (Lukas Czerner) [1150139]
-- [fs] ext4: silence warning in ext4_writepages() (Lukas Czerner) [1150139]
-- [fs] ext4: restructure writeback path (Lukas Czerner) [1150139]
-- [fs] ext4: use io_end for multiple bios (Lukas Czerner) [1150139]
-- [fs] ext4: better estimate credits needed for ext4_da_writepages() (Lukas Czerner) [1150139]
-- [fs] ext4: improve writepage credit estimate for files with indirect blocks (Lukas Czerner) [1150139]
-- [fs] ext4: deprecate max_writeback_mb_bump sysfs attribute (Lukas Czerner) [1150139]
-- [fs] ext4: stop messing with nr_to_write in ext4_da_writepages() (Lukas Czerner) [1150139]
-- [fs] ext4: provide wrappers for transaction reservation calls (Lukas Czerner) [1150139]
-- [fs] jbd2: transaction reservation support (Lukas Czerner) [1150139]
-- [fs] jbd2: cleanup needed free block estimates when starting a transaction (Lukas Czerner) [1150139]
-- [fs] jbd2: remove outdated comment (Lukas Czerner) [1150139]
-- [fs] jbd2: refine waiting for shadow buffers (Lukas Czerner) [1150139]
-- [fs] jbd2: remove journal_head from descriptor buffers (Lukas Czerner) [1150139]
-- [fs] jbd2: don't create journal_head for temporary journal buffers (Lukas Czerner) [1150139]
-- [fs] ext4: suppress ext4 orphan messages on mount (Lukas Czerner) [1150139]
-- [fs] jbd2: fix block tag checksum verification brokenness (Lukas Czerner) [1150139]
-- [fs] jbd2: use kmem_cache_zalloc for allocating journal head (Lukas Czerner) [1150139]
-- [fs] jbd2: Fix oops in jbd2_journal_file_inode() (Lukas Czerner) [1144326]
-- [fs] ext4: only zero partial blocks in ext4_zero_partial_blocks() (Lukas Czerner) [1144326]
-- [fs] ext4: make punch hole code path work with bigalloc (Lukas Czerner) [1144326]
-- [fs] ext4: update ext4_ext_remove_space trace point (Lukas Czerner) [1144326]
-- [fs] ext4: remove unused code from ext4_remove_blocks() (Lukas Czerner) [1144326]
-- [fs] ext4: remove unused discard_partial_page_buffers (Lukas Czerner) [1144326]
-- [fs] ext4: use ext4_zero_partial_blocks in punch_hole (Lukas Czerner) [1144326]
-- [fs] ext4: truncate_inode_pages() in orphan cleanup path (Lukas Czerner) [1144326]
-- [fs] Revert "ext4: fix fsx truncate failure" (Lukas Czerner) [1144326]
-- [fs] ext4: Call ext4_jbd2_file_inode() after zeroing block (Lukas Czerner) [1144326]
-- [fs] Revert "ext4: remove no longer used functions in inode.c" (Lukas Czerner) [1144326]
-- [fs] mm: teach truncate_inode_pages_range() to handle non page aligned ranges (Lukas Czerner) [1144326]
-- [fs] ext4: use ->invalidatepage() length argument (Lukas Czerner) [1144326]
-- [fs] jbd2: change jbd2_journal_invalidatepage to accept length (Lukas Czerner) [1144326]
-- [fs] mm: change invalidatepage prototype to accept length (Lukas Czerner) [1144326]
-- [fs] nfs: Fix a bogus warning in nfs_generic_pgio (Steve Dickson) [1150227]
-- [fs] nfs: Fix an uninitialised pointer Oops in the writeback error path (Steve Dickson) [1150227]
-
-* Mon Nov 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-198.el7]
-- [block] nvme: Clear QUEUE_FLAG_STACKABLE (David Milburn) [1155716]
-- [md] dm-raid: ensure superblock's size matches device's logical block size (Mike Snitzer) [1112804]
-- [md] dm-thin: refactor requeue_io to eliminate spinlock bouncing (Mike Snitzer) [1156164]
-- [md] dm-thin: optimize retry_bios_on_resume (Mike Snitzer) [1156164]
-- [md] dm-thin: sort the deferred cells (Mike Snitzer) [1156164]
-- [md] dm-thin: direct dispatch when breaking sharing (Mike Snitzer) [1156164]
-- [md] dm-thin: remap the bios in a cell immediately (Mike Snitzer) [1156164]
-- [md] dm-thin: defer whole cells rather than individual bios (Mike Snitzer) [1156164]
-- [md] dm-thin: factor out remap_and_issue_overwrite (Mike Snitzer) [1156164]
-- [md] dm-thin: performance improvement to discard processing (Mike Snitzer) [1156164]
-- [md] dm-thin: grab a virtual cell before looking up the mapping (Mike Snitzer) [1156164]
-- [md] dm-thin: implement thin_merge (Mike Snitzer) [1156164]
-- [md] dm: improve documentation and code clarity in dm_merge_bvec (Mike Snitzer) [1156164]
-- [md] dm-thin: adjust max_sectors_kb based on thinp blocksize (Mike Snitzer) [1156164]
-- [block] fix alignment_offset math that assumes io_min is a power-of-2 (Mike Snitzer) [1156164]
-- [md] dm-thin: throttle incoming IO (Mike Snitzer) [1156161]
-- [md] dm-thin: prefetch missing metadata pages (Mike Snitzer) [1156161]
-- [md] dm-transaction-manager: add support for prefetching blocks of metadata (Mike Snitzer) [1156161]
-- [md] dm-thin-metadata: change dm_thin_find_block to allow blocking, but not issuing, IO (Mike Snitzer) [1156161]
-- [md] dm-bio-prison: switch to using a red black tree (Mike Snitzer) [1156161]
-- [md] dm-bufio: evict buffers that are past the max age but retain some buffers (Mike Snitzer) [1156161]
-- [md] dm-bufio: switch from a huge hash table to an rbtree (Mike Snitzer) [1156161]
-- [md] dm-bufio: change __GFP_IO to __GFP_FS in shrinker callbacks (Mike Snitzer) [1156161]
-- [md] dm-bufio: when done scanning return from __scan immediately (Mike Snitzer) [1156161]
-- [md] dm-bufio: update last_accessed when relinking a buffer (Mike Snitzer) [1156161]
-- [md] dm-bufio: fully initialize shrinker (Mike Snitzer) [1156161]
-- [misc] genwqe: Remove unnecessary include (Gustavo Duarte) [1088491]
-- [misc] genwqe: Increase driver version number (Gustavo Duarte) [1088491]
-- [misc] genwqe: Improve hardware error recovery (Gustavo Duarte) [1088491]
-- [misc] genwqe: Add support for EEH error recovery (Gustavo Duarte) [1088491]
-- [misc] genwqe: Add sysfs interface for bitstream reload (Gustavo Duarte) [1088491]
-- [misc] genwqe: fix uninitialized return value in genwqe_free_sync_sgl() (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix format string mismatch in card_debugfs.c (Gustavo Duarte) [1088491]
-- [misc] genwqe: Increase driver version number (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix multithreading problems (Gustavo Duarte) [1088491]
-- [misc] genwqe: Ensure rc is not returning an uninitialized value (Gustavo Duarte) [1088491]
-- [misc] genwqe: Add wmb before DDCB is started (Gustavo Duarte) [1088491]
-- [misc] genwqe: Enable access to VPD flash area (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix potential memory leak when pinning memory (Gustavo Duarte) [1088491]
-- [misc] genwqe: delete non-required instances of include <linux/init.h> (Gustavo Duarte) [1088491]
-- [misc] genwqe: fix return value check in genwqe_device_create() (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix warnings for sparc (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix compile problems for Alpha (Gustavo Duarte) [1088491]
-- [misc] genwqe: Rework return code for flash-update ioctl (Gustavo Duarte) [1088491]
-- [misc] genwqe: Accidently casting to u32 where u64 is required (Gustavo Duarte) [1088491]
-- [misc] genwqe: Replace dynamic_hex_dump with print_hex_dump_debug (Gustavo Duarte) [1088491]
-- [misc] genwqe: Fix endian issues detected by sparse (Gustavo Duarte) [1088491]
-- [misc] genwqe: Enable driver (Gustavo Duarte) [1088491]
-- [misc] genwqe: Sysfs interfaces (Gustavo Duarte) [1088491]
-- [misc] genwqe: Debugfs interfaces (Gustavo Duarte) [1088491]
-- [misc] genwqe: Utility functions (Gustavo Duarte) [1088491]
-- [misc] genwqe: Character device and DDCB queue (Gustavo Duarte) [1088491]
-- [misc] genwqe: GenWQE PCI support, health monitoring and recovery (Gustavo Duarte) [1088491]
-- [virt] kvm/vmx: handle invvpid vm exit gracefully (Petr  Matousek) [1144829] {CVE-2014-3646}
-- [virt] kvm: fix PIT timer race condition (Petr  Matousek) [1144880] {CVE-2014-3611}
-
-* Thu Oct 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-197.el7]
-- [scsi] qla2xxx: Update version number to 8.07.00.08.07.1-k1 (Chad Dupuis) [1067179]
-- [scsi] qla2xxx: Disable PCI device in shutdown handler (Chad Dupuis) [1067179]
-- [wireless] rt2x00: Delete accidentally committed .rej file (Prarit Bhargava) [1158457]
-- [ethernet] cxgb4: Allow T4/T5 firmware sizes up to 1MB (Sai Vemuri) [1147683]
-- [ethernet] cxgb4i: avoid holding mutex in interrupt context (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Don't allocate adapter structure for all PF's (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Add device ID for new adapter and remove for dbg adapter (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Add warning msg when attaching to adapters which have FLASHes smaller than 2Mb (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Fix t4_flash_erase_sectors() to throw an error when requested to erase sectors which aren't in the FLASH (Sai Vemuri) [1147683]
-- [ethernet] cxgb4: Add support to S25FL032P flash (Sai Vemuri) [1147683]
-- [ethernet] cxgb4vf: Call dev_kfree/consume_skb_any instead of [dev_]kfree_skb (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Turn off SGE RX/TX Callback Timers and interrupts in PCI shutdown routine (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Adds device ID for few more Chelsio T4 Adapters (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Check if rx checksum offload is enabled, while reading hardware calculated checksum (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Adds device Id for few more Chelsio adapters (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Use pci_enable_msix_range() instead of pci_enable_msix() (Sai Vemuri) [1070945]
-- [ethernet] cxgb4vf: Remove superfluous call to pci_disable_msix() (Sai Vemuri) [1070945]
-- [kernel] printk: bump LOG_BUF_SHIFT (Jeff Moyer) [1156189]
-- [net] cdc_ncm: fix control message ordering (Neil Horman) [1129796]
-- [net] usb/huawei_cdc_ncm: add "subclass 3" devices (Neil Horman) [1129796]
-- [net] usb/cdc_ncm: remove non-standard NCM device IDs (Neil Horman) [1129796]
-- [net] usb/huawei_cdc_ncm: increase command buffer size (Neil Horman) [1129796]
-- [net] usb: Introduce the huawei_cdc_ncm driver (Neil Horman) [1129796]
-- [powerpc] perf/hv-24x7: Simplify catalog_read() (Steve Best) [1155924]
-- [acpi] container: Fix error code path in container_device_attach() (Prarit Bhargava) [1128634]
-- [kernel] timekeeping: Use cached ntp_tick_length when accumulating error (Prarit Bhargava) [1136839]
-- [kernel] timekeeping: Rework frequency adjustments to work better w/ nohz (Prarit Bhargava) [1136839]
-- [s390] zcrypt: Toleration of new crypto hardware (Hendrik Brueckner) [1136494]
-- [s390] zcrypt: support for extended number of ap domains (Hendrik Brueckner) [1136494]
-- [kernel] smp: flush any pending IPI callbacks before CPU offline (Gustavo Duarte) [1100093]
-- [kernel] smp: print more useful debug info upon receiving IPI on an offline CPU (Gustavo Duarte) [1100093]
-
-* Tue Oct 28 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-196.el7]
-- [ethernet] mlx5: Add ConnectX-4 to list of supported devices (Amir Vadai) [1149439]
-- [fs] cifs: NULL pointer dereference in SMB2_tcon (Jacob Tanenbaum) [1147529] {CVE-2014-7145}
-- [x86] build: Add arch/x86/purgatory/ make generated files to gitignore (Prarit Bhargava) [1155577]
-- [acpi] acpica: Add "Windows 2013" string to _OSI support (Lenny Szubowicz) [1087674]
-- [pci] Export MSI message relevant functions (Myron Stowe) [1123366]
-- [cpufreq] store_scaling_governor requires policy->rwsem to be held for duration of changing governors (Prarit Bhargava) [1089255]
-- [edac] sb_edac: avoid INTERNAL ERROR message in EDAC with unspecified channel (Seth Jennings) [1056990]
-- [kernel] module: lock around setting of MODULE_STATE_UNFORMED (Prarit Bhargava) [1127741]
-- [acpi] Add container online uevent to acpi_bus_attach (Prarit Bhargava) [1140572]
-- [scsi] fcoe: Convert uses of compare_ether_addr to ether_addr_equal (Neil Horman) [1087099]
-- [scsi] fcoe: Fix missing mutex_unlock in fcoe_sysfs_fcf_add error path (Neil Horman) [1087099]
-- [scsi] fcoe: Make fcoe_sysfs optional / fix fnic NULL exception (Neil Horman) [1087099]
-- [scsi] fcoe: fix build error (Neil Horman) [1087099]
-- [scsi] fcoe: convert bus code to use bus_groups (Neil Horman) [1087099]
-- [scsi] fcoe: Reduce fcoe_sysfs_fcf_add() stack usage (Neil Horman) [1087099]
-- [scsi] fcoe: Add missing newlines in debug messages (Neil Horman) [1087099]
-- [scsi] fcoe: Declare fcoe_ctlr_mode_set() static (Neil Horman) [1087099]
-- [fs] gfs2: Hash the negative dentry during inode lookup (Robert S Peterson) [1123986]
-
-* Mon Oct 27 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-195.el7]
-- [block] fix blk_abort_request on blk-mq (Jeff Moyer) [1146660]
-- [block] blk-timeout: fix blk_add_timer (Jeff Moyer) [1146660]
-- [block] blk-mq: limit memory consumption if a crash dump is active (Jeff Moyer) [1146660]
-- [block] blk-mq: remove unnecessary blk_clear_rq_complete() (Jeff Moyer) [1146660]
-- [block] blk-mq: pass a reserved argument to the timeout handler (Jeff Moyer) [1146660]
-- [block] blk-mq: unshared timeout handler (Jeff Moyer) [1146660]
-- [block] blk-mq: fix and simplify tag iteration for the timeout handler (Jeff Moyer) [1146660]
-- [block] blk-mq: rename blk_mq_end_io to blk_mq_end_request (Jeff Moyer) [1146660]
-- [block] blk-mq: call blk_mq_start_request from ->queue_rq (Jeff Moyer) [1146660]
-- [block] blk-mq: remove REQ_END (Jeff Moyer) [1146660]
-- [block] blk-mq: use blk_mq_start_hw_queues() when running requeue work (Jeff Moyer) [1146660]
-- [block] blk-mq: fix potential oops on out-of-memory in __blk_mq_alloc_rq_maps() (Jeff Moyer) [1146660]
-- [block] blk-mq: avoid infinite recursion with the FUA flag (Jeff Moyer) [1146660]
-- [block] blk-mq: Avoid race condition with uninitialized requests (Jeff Moyer) [1146660]
-- [block] blk-mq: request deadline must be visible before marking rq as started (Jeff Moyer) [1146660]
-- [block] blk-mq: scale depth and rq map appropriate if low on memory (Jeff Moyer) [1146660]
-- [block] blk-mq: cleanup after blk_mq_init_rq_map failures (Jeff Moyer) [1146660]
-- [block] fix unbalanced bypass-disable in blk_register_queue (Jeff Moyer) [1146660]
-- [block] bdi: an active gendisk always has a request_queue associated with it (Jeff Moyer) [1146660]
-- [block] blk-mq: pass along blk_mq_alloc_tag_set return values (Jeff Moyer) [1146660]
-- [block] blk-merge: fix blk_recount_segments (Jeff Moyer) [1146660]
-- [block] blk-mq: correct a few wrong/bad comments (Jeff Moyer) [1146660]
-- [block] blk-mq: don't allow merges if turned off for the queue (Jeff Moyer) [1146660]
-- [block] blk-mq: fix WARNING "percpu_ref_kill() called more than once!" (Jeff Moyer) [1146660]
-- [block] provide compat ioctl for BLKZEROOUT (Jeff Moyer) [1146660]
-- [block] blkcg: don't call into policy draining if root_blkg is already gone (Jeff Moyer) [1146660]
-- [block] don't assume last put of shared tags is for the host (Jeff Moyer) [1146660]
-- [block] fix SG_[GS]ET_RESERVED_SIZE ioctl when max_sectors is huge (Jeff Moyer) [1146660]
-- [block] fix BLKSECTGET ioctl when max_sectors is greater than USHRT_MAX (Jeff Moyer) [1146660]
-- [block] blk-mq: collapse __blk_mq_drain_queue() into blk_mq_freeze_queue() (Jeff Moyer) [1146660]
-- [block] blk-mq: decouble blk-mq freezing from generic bypassing (Jeff Moyer) [1146660]
-- [block] blk-mq: draining can't be skipped even if bypass_depth was non-zero (Jeff Moyer) [1146660]
-- [block] blk-mq: fix a memory ordering bug in blk_mq_queue_enter() (Jeff Moyer) [1146660]
-
-* Fri Oct 24 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-194.el7]
-- [fs] xfs: flush the range before zero range conversion (Eric Sandeen) [1145837]
-- [fs] xfs: only set extent size hint when asked (Eric Sandeen) [1145837]
-- [fs] xfs: project id inheritance is a directory only flag (Eric Sandeen) [1145837]
-- [fs] xfs: use ranged writeback and invalidation for direct IO (Eric Sandeen) [1145837]
-- [fs] xfs: don't zero partial page cache pages during O_DIRECT writes (Eric Sandeen) [1145837]
-- [fs] xfs: don't zero partial page cache pages during O_DIRECT reads (Eric Sandeen) [1130294 1145837]
-- [fs] xfs: don't dirty buffers beyond EOF (Eric Sandeen) [1145837]
-- [fs] xfs: fix coccinelle warnings (Eric Sandeen) [1145837]
-- [fs] xfs: flush both inodes in xfs_swap_extents (Eric Sandeen) [1145837]
-- [fs] xfs: fix swapext ilock deadlock (Eric Sandeen) [1145837]
-- [fs] xfs: dquot recovery needs verifiers (Eric Sandeen) [1145837]
-- [fs] xfs: quotacheck leaves dquot buffers without verifiers (Eric Sandeen) [1145837]
-- [fs] xfs: ensure verifiers are attached to recovered buffers (Eric Sandeen) [1145837]
-- [fs] xfs: catch buffers written without verifiers attached (Eric Sandeen) [1145837]
-- [fs] xfs: avoid false quotacheck after unclean shutdown (Eric Sandeen) [1145837]
-- [fs] xfs: fix rounding error of fiemap length parameter (Eric Sandeen) [1145837]
-- [fs] xfs: fix uflags detection at xfs_fs_rm_xquota (Eric Sandeen) [1145837]
-- [fs] xfs: fix cil push sequence after log recovery (Eric Sandeen) [1145837]
-- [fs] xfs: squash prealloc while over quota free space as well (Eric Sandeen) [1145837]
-- [fs] xfs: run an eofblocks scan on ENOSPC/EDQUOT (Eric Sandeen) [1145837]
-- [fs] xfs: support a union-based filter for eofblocks scans (Eric Sandeen) [1145837]
-- [fs] xfs: add scan owner field to xfs_eofblocks (Eric Sandeen) [1145837]
-- [fs] xfs: fix a couple error sequence jumps in xfs_mountfs() (Eric Sandeen) [1145837]
-- [fs] xfs: null unused quota inodes when quota is on (Eric Sandeen) [1145837]
-- [fs] xfs: refine the allocation stack switch (Eric Sandeen) [1145837]
-- [fs] xfs: Fix rounding in xfs_alloc_fix_len() (Eric Sandeen) [1145837]
-- [fs] xfs: tone down writepage/releasepage WARN_ONs (Eric Sandeen) [1145837]
-- [fs] xfs: remove redundant checks from xfs_da_read_buf (Eric Sandeen) [1145837]
-- [fs] xfs: keep sb_bad_features2 the same a sb_features2 (Eric Sandeen) [1145837]
-- [fs] xfs: negate xfs_icsb_init_counters error value (Eric Sandeen) [1145837]
-- [fs] xfs: negate mount workqueue init error value (Eric Sandeen) [1145837]
-- [fs] xfs: fix wrong errno from xfs_initxattrs (Eric Sandeen) [1145837]
-- [fs] xfs: xfs_commit_metadata returns wrong errno (Eric Sandeen) [1145837]
-- [fs] xfs: fix incorrect error sign in xfs_file_aio_read (Eric Sandeen) [1145837]
-- [fs] xfs: xfs_dir_fsync() returns positive errno (Eric Sandeen) [1145837]
-- [fs] xfs: fix directory readahead offset off-by-one (Eric Sandeen) [1145837]
-- [fs] xfs: remote attribute overwrite causes transaction overrun (Eric Sandeen) [1145837]
-- [fs] xfs: Fix wrong error codes being returned (Eric Sandeen) [1145837]
-- [fs] xfs: bulletfproof xfs_qm_scall_trunc_qfiles() (Eric Sandeen) [1145837]
-- [fs] xfs: fix Q_XQUOTARM ioctl (Eric Sandeen) [1145837]
-- [fs] xfs: fully support v5 format filesystems (Eric Sandeen) [1145837]
-- [fs] xfs: wrong error sign conversion during failed DIO writes (Eric Sandeen) [1145837]
-- [fs] xfs: unmount does not wait for shutdown during unmount (Eric Sandeen) [1145837]
-- [fs] xfs: don't map ranges that span EOF for direct IO (Eric Sandeen) [1145837]
-- [fs] xfs: zeroing space needs to punch delalloc blocks (Eric Sandeen) [1145837]
-- [fs] xfs: kill buffers over failed write ranges properly (Eric Sandeen) [1145837]
-- [fs] xfs: extra semi-colon breaks a condition (Eric Sandeen) [1145837]
-- [fs] xfs: xfs_check_page_type buffer checks need help (Eric Sandeen) [1145837]
-- [wireless] Backport mwl8k driver from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport mwifiex driver from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport brcm80211 drivers from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport rtlwifi drivers from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport rt2x00 driver from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport ath drivers from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport iwlegacy drivers from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport iwlwifi driver from linux 3.16 (Stanislaw Gruszka) [1085079 1107878 1136324]
-- [wireless] Backport mac80211 from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [wireless] Backport wireless core from linux 3.16 (Stanislaw Gruszka) [1136324]
-- [kernel] if_ether: add IEEE 802.21 Ethertype (Stanislaw Gruszka) [1136324]
-- [kernel] PTR_RET is now PTR_ERR_OR_ZERO (Stanislaw Gruszka) [1136324]
-- [net] etherdevice: Add ether_addr_equal_unaligned (Stanislaw Gruszka) [1136324]
-
-* Thu Oct 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-193.el7]
-- [net] ipv4: fix a race in update_or_create_fnhe() (Hannes Frederic Sowa) [1155155]
-- [net] ipv4: irq safe sk_dst_[re]set() and ipv4_sk_update_pmtu() fix (Hannes Frederic Sowa) [1155155]
-- [net] ipv4: fix dst race in sk_dst_get() (Hannes Frederic Sowa) [1155155]
-- [net] ipv4: fix a race in ip4_datagram_release_cb() (Hannes Frederic Sowa) [1155155]
-- [net] sctp: fix remote memory pressure from excessive queueing (Daniel Borkmann) [1152755] {CVE-2014-3688}
-- [net] sctp: fix panic on duplicate ASCONF chunks (Daniel Borkmann) [1152755] {CVE-2014-3687}
-- [net] sctp: fix skb_over_panic when receiving malformed ASCONF chunks (Daniel Borkmann) [1152755] {CVE-2014-3673}
-- [net] sctp: handle association restarts when the socket is closed (Daniel Borkmann) [1152755]
-- [net] ipv4: fix nexthop attlen check in fib_nh_match (Jiri Pirko) [1153654]
-- [net] packet: handle too big packets for PACKET_V3 (Hannes Frederic Sowa) [1152248]
-- [net] sendmsg: fix NULL pointer dereference (Hannes Frederic Sowa) [1152251]
-- [net] ipv6: remove rt6i_genid (Hannes Frederic Sowa) [1150017]
-- [net] ipv6: remove prune parameter for fib6_clean_all (Hannes Frederic Sowa) [1150017]
-- [net] ipv6: bump genid when delete/add address (Hannes Frederic Sowa) [1150017]
-- [net] split rt_genid for ipv4 and ipv6 (Hannes Frederic Sowa) [1150017]
-- [net] ipv4: use separate genid for next hop exceptions (Hannes Frederic Sowa) [1150017]
-- [net] ipv4: properly refresh rtable entries on pmtu/redirect events (Hannes Frederic Sowa) [1150017]
-- [net] bridge: Don't include NDA_VLAN for FDB entries with vid 0 (Vlad Yasevich) [1139809]
-- [net] bridge: Prevent insertion of FDB entry with disallowed vlan (Vlad Yasevich) [1139809]
-- [net] bridge: Fix double free and memory leak around br_allowed_ingress (Vlad Yasevich) [1139809]
-- [net] bridge: Fix crash with vlan filtering and tcpdump (Vlad Yasevich) [1139809]
-- [net] bridge: Fix handling stacked vlan tags (Vlad Yasevich) [1139809]
-- [net] bridge: Fix inabillity to retrieve vlan tags when tx offload is disabled (Vlad Yasevich) [1139809]
-- [net] bridge: Use RCU_INIT_POINTER(x, NULL) in br_vlan.c (Vlad Yasevich) [1139809]
-- [net] bridge: Remove unnecessary vlan_put_tag in br_handle_vlan (Vlad Yasevich) [1139809]
-- [net] bridge: use list_for_each_entry_continue_reverse (Vlad Yasevich) [896669]
-- [net] bridge: Fix incorrect judgment of promisc (Vlad Yasevich) [896669]
-- [net] bridge: fix the unbalanced promiscuous count when add_if failed (Vlad Yasevich) [896669]
-- [net] bridge: fix spelling of promiscuous (Vlad Yasevich) [896669]
-- [net] bridge: fix build (Vlad Yasevich) [896669]
-- [net] bridge: Automatically manage port promiscuous mode (Vlad Yasevich) [896669]
-- [net] bridge: Add addresses from static fdbs to non-promisc ports (Vlad Yasevich) [896669]
-- [net] bridge: Introduce BR_PROMISC flag (Vlad Yasevich) [896669]
-- [net] bridge: Add functionality to sync static fdb entries to hw (Vlad Yasevich) [896669]
-- [net] bridge: Keep track of ports capable of automatic discovery (Vlad Yasevich) [896669]
-- [net] bridge: Turn flag change macro into a function (Vlad Yasevich) [896669]
-- [net] bridge: Add a flag to control unicast packet flood (Vlad Yasevich) [896669]
-- [net] bridge: Add flag to control mac learning (Vlad Yasevich) [896669]
-
-* Thu Oct 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-192.el7]
-- [infiniband] ocrdma: convert kernel va to pa for mmap in user (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: use right macro in query ah (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: resolve L2 address when creating user AH (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: get vlan tag from ib_qp_attrs (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: add default gid at index 0 (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: do not skip setting deffered_arm (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Report actual value of max_fast_reg_page_list_len (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: report asic-id in query device (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Update sli data structure for endianness (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Obtain SL from device structure (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Update the ocrdma module version string (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Fix a sparse warning (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Initialize the GID table while registering the device (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Increase the size of STAG array in dev structure to 16K (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Add missing adapter mailbox opcodes (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Return proper value for max_mr_size (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Do proper cleanup even if FW is in error state (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Allow only SEND opcode in case of UD QPs (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Avoid reporting wrong completions in case of error CQEs (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Delete AH table if ocrdma_init_hw fails after AH table creation (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Remove hardcoding of the max DPP QPs supported (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Handle shutdown event from be2net driver (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Add hca_type and fixing fw_version string in device atrributes (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Query and initalize the PFC SL (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Avoid posting DPP requests for RDMA READ (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Convert to use simple_open() (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Unregister inet notifier when unloading ocrdma (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Fix warnings about pointer <-> integer casts (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Code clean-up (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Display FW version (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Query controller information (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Support non-embedded mailbox commands (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Handle CQ overrun error (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Display proper value for max_mw (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Use non-zero tag in SRQ posting (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Memory leak fix in ocrdma_dereg_mr() (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Increment abi version count (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Update version string (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: ABI versioning between ocrdma and be2net (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Allow DPP QP creation (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Read ASIC_ID register to select asic_gen (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: SQ and RQ doorbell offset clean up (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: EQ full catastrophe avoidance (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Fix load time panic during GID table init (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Fix traffic class shift (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Add dependency on INET (Doug Ledford) [1081067 1088577]
-- [infiniband] ocrdma: Move ocrdma_inetaddr_event outside of "#if CONFIG_IPV6" (Doug Ledford) [1081067 1088577]
-- [mm] thp: do not allow thp faults to avoid cpuset restrictions (Frank Ramsay) [1149786]
-- [mm] thp: add VM_INIT_DEF_MASK and PRCTL_THP_DISABLE (Frank Ramsay) [1149786]
-- [fs] exec: kill the unnecessary mm->def_flags setting in load_elf_binary() (Frank Ramsay) [1149786]
-- [mm] Revert: thp: make MADV_HUGEPAGE check for mm->def_flags (Frank Ramsay) [1149786]
-- [block] disable entropy contributions for nonrot devices (Mike Snitzer) [852425]
-- [crypto] qat: Enforce valid numa configuration (Nikolay Aleksandrov) [1152642]
-- [crypto] qat: Prevent dma mapping zero length assoc data (Nikolay Aleksandrov) [1152642]
-- [pci] Add ACS quirk for Intel 10G NICs (Alex Williamson) [1141399]
-- [pci] Add ACS quirk for Solarflare SFC9120 & SFC9140 (Alex Williamson) [1131552]
-- [infiniband] ipoib: validate struct ipoib_cb size (Doug Ledford) [1107621 1140601]
-- [infiniband] ipoib: No longer use flush as a parameter (Doug Ledford) [1107621]
-- [infiniband] ipoib: Make ipoib_mcast_stop_thread flush the workqueue (Doug Ledford) [1107621]
-- [infiniband] ipoib: Use dedicated workqueues per interface (Doug Ledford) [1107621]
-- [infiniband] ipoib: change init sequence ordering (Doug Ledford) [1107621]
-- [infiniband] ipoib: fix mcast_dev_flush/mcast_restart_task race (Doug Ledford) [1107621]
-- [infiniband] ipoib: fix MCAST_FLAG_BUSY usage (Doug Ledford) [1107621]
-- [infiniband] ipoib: Make the carrier_on_task race aware (Doug Ledford) [1107621]
-- [infiniband] ipoib: Consolidate rtnl_lock tasks in workqueue (Doug Ledford) [1107621]
-- [infiniband] ipoib: Remove unnecessary test for NULL before debugfs_remove() (Doug Ledford) [1107621]
-- [infiniband] ipoib: Avoid multicast join attempts with invalid P_key (Doug Ledford) [1107621]
-- [infiniband] ipoib: Avoid flushing the workqueue from worker context (Doug Ledford) [1107621]
-- [infiniband] ipoib: Use P_Key change event instead of P_Key polling mechanism (Doug Ledford) [1107621]
-- [infiniband] ipoib: Report operstate consistently when brought up without a link (Doug Ledford) [1107621]
-- [net] svcrdma: remove rdma_create_qp() failure recovery logic (Doug Ledford) [1107621]
-- [net] svcrdma: send_write() must not overflow the device's max sge (Doug Ledford) [1107621]
-- [net] svcrdma: Fence LOCAL_INV work requests (Doug Ledford) [1107621]
-- [net] svcrdma: refactor marshalling logic (Doug Ledford) [1107621]
-- [net] sunrpc: Fix regression in NFSRDMA server (Doug Ledford) [1107621]
-- [net] svcrdma: fix printk when memory allocation fails (Doug Ledford) [1107621]
-- [kernel] uapi: Include socket.h in rdma_user_cm.h (Doug Ledford) [1107621]
-- [infiniband] Return error for unsupported QP creation flags (Doug Ledford) [1107621]
-- [infiniband] Allow build of hw/ and ulp/ subdirectories independently (Doug Ledford) [1107621]
-- [infiniband] ehca: Returns an error on ib_copy_to_udata() failure (Doug Ledford) [1107621]
-- [net] sched: shrink struct qdisc_skb_cb to 28 bytes (Doug Ledford) [1107621 1140601]
-
-* Tue Oct 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-191.el7]
-- [fs] fuse: ignore entry-timeout LOOKUP_REVAL (Carlos Maiolino) [1124880]
-- [fs] fuse: Timeout comparison fix (Carlos Maiolino) [1128802]
-- [fs] lockd: Try to reconnect if statd has moved (Benjamin Coddington) [1120850]
-- [fs] sunrpc: Don't wake tasks during connection abort (Benjamin Coddington) [1120850]
-- [fs] Revert: writeback: do not sync data dirtied after sync start (Brian Foster [1085828]
-- [fs] nfsd4: fix corruption of NFSv4 read data ("J. Bruce Fields") [1148055]
-- [fs] gfs2: revert "GFS2: d_splice_alias() can't return error" (Robert S Peterson) [1141899]
-
-* Mon Oct 20 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-190.el7]
-- [scsi] mpt3sas: Use pci_enable_msix_exact() instead of pci_enable_msix() (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Use pci_enable_msix_exact() instead of pci_enable_msix() (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: fix undefined reference to `__udivdi3' compilation errors (Tomas Henzl) [1088524]
-- [scsi] mpt3sas, mpt2sas: fix scsi_add_host error handling problems in _scsih_probe (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Bump mpt3sas driver version to 04.100.00.00 (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Added Reply Descriptor Post Queue (RDPQ) Array support (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Added OEM branding Strings (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Copyright in driver sources is updated for year the 2014 (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: MPI2.5 Rev H (2.5.3) specifications (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Bump mpt3sas driver version to 03.100.00.00 (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Clear PFA Status on SGPIO when PFA Drive is Removed or Replaced (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: MPI2.5 Rev G (2.5.2) specifications (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: delay scsi_add_host call to work with scsi-mq (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Rework the MSI-X grouping code (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: combine fw_event_work and its event_data (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: correct scsi_(target, device) hostdata allocation (Tomas Henzl) [1088524]
-- [scsi] mpt3sas: Remove phys on topology change (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Bump mpt2sas driver version to 18.100.00.00 (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Get IOC_FACTS information using handshake protocol only after HBA card gets into READY or Operational state (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Added Reply Descriptor Post Queue (RDPQ) Array support (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Avoid type casting for direct I/O commands (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Bump mpt2sas driver version to 17.100.00.00 (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Clear PFA Status on SGPIO when PFA Drive is Removed or Replaced (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Copyright in driver sources is updated for year the 2014 (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: MPI2 Rev Y (2.00.17) and Rev Z (2.00.18) specifications (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Added driver module parameter max_msix_vectors (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: delay scsi_add_host call to work with scsi-mq (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Rework the MSI-X grouping code (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: annotate ioc->reply_post_host_index as __iomem (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: combine fw_event_work and its event_data (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: correct scsi_(target, device) hostdata allocation (Tomas Henzl) [1088524]
-- [scsi] mpt2sas: Don't disable device twice at suspend (Tomas Henzl) [1088524]
-
-* Fri Oct 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-189.el7]
-- [scsi] lpfc: driver release 10.2.8021.1 for RHEL7 (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fixed crash from page fault caused by use after rport delete (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix locking issues with abort data paths (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix race between LOGO/PLOGI handling causing NULL pointer (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix IP Reset processing - wait for RDY before proceeding (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix quarantined XRI recovery qualifier state in link bounce (Rob Evers) [1149846]
-- [scsi] lpfc: 10.4.8000.0: Fix discovery timeout during nameserver login (Rob Evers) [1149846]
-- [net] ipv6: mld: answer mldv2 queries with mldv1 reports in mldv1 fallback (Daniel Borkmann) [1143429]
-- [net] team: avoid race condition in scheduling delayed work (Jiri Pirko) [1149239]
-- [net] fix UDP tunnel GSO of frag_list GRO packets (Jiri Benc) [1119392]
-- [net] vxlan: fix incorrect initializer in union vxlan_addr (Daniel Borkmann) [1130643]
-- [net] vxlan: fix crash when interface is created with no group (Daniel Borkmann) [1130643]
-- [net] vxlan: fix nonfunctional neigh_reduce() (Daniel Borkmann) [1130643]
-- [net] vxlan: fix potential NULL dereference in arp_reduce() (Daniel Borkmann) [1130643]
-- [net] vxlan: remove unused port variable in vxlan_udp_encap_recv() (Daniel Borkmann) [1130643]
-- [net] vxlan: remove extra newline after function definition (Daniel Borkmann) [1130643]
-
-* Mon Oct 13 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-188.el7]
-- [kernel] workqueue: Add quiescent state between work items (Jiri Pirko) [1149250]
-- [crypto] qat: Enable interrupts from all 32 bundles (Nikolay Aleksandrov) [1091130]
-- [char] ipmi: Clear drvdata when interface is removed (Tony Camuso) [1136589]
-- [md] raid5: disable 'DISCARD' by default due to safety concerns (Jes Sorensen) [1149931]
-- [md] raid1: fix_read_error should act on all non-faulty devices (Jes Sorensen) [1149931]
-- [virt] hyperv: NULL dereference on error (Jason Wang) [1146357]
-- [virt] hyperv: Increase the buffer length for netvsc_channel_cb() (Jason Wang) [1146357]
-- [virt] hyperv: Adjust the size of sendbuf region to support ws2008r2 (Jason Wang) [1146357]
-- [virt] hyperv/net: Increase the size of the sendbuf region (Jason Wang) [1146357]
-- [virt] hyperv: Fix error return code in netvsc_init_buf() (Jason Wang) [1146357]
-- [virt] hyperv: Add netpoll support (Jason Wang) [1146357]
-- [virt] hyperv/net: remove unnecessary null test before kfree (Jason Wang) [1146357]
-- [virt] hyperv: Add handler for RNDIS_STATUS_NETWORK_CHANGE event (Jason Wang) [1146357]
-- [virt] hyperv: fix apparent cut-n-paste error in send path teardown (Jason Wang) [1146357]
-- [virt] hyperv: Add hash value into RNDIS Per-packet info (Jason Wang) [1146357]
-- [virt] hyperv/net: Add support for netvsc build without CONFIG_SYSFS flag (Jason Wang) [1146357]
-- [virt] hyperv: Properly handle checksum offload (Jason Wang) [1146357]
-- [virt] hyperv: Enable sendbuf mechanism on the send path (Jason Wang) [1146357]
-- [virt] hyperv: Simplify the send_completion variables (Jason Wang) [1146357]
-- [virt] hyperv: Remove recv_pkt_list and lock (Jason Wang) [1146357]
-- [virt] hyperv: Add support for virtual Receive Side Scaling (vRSS) (Jason Wang) [1146357]
-- [virt] hyperv/net: Address UDP checksum issues (Jason Wang) [1146357]
-- [virt] hyperv/net: Negotiate suitable ndis version for offload support (Jason Wang) [1146357]
-- [virt] hyperv/net: Allocate memory for all possible per-pecket information (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable large send offload (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable send side checksum offload (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable receive side IP checksum offload (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable offloads on the host (Jason Wang) [1146357]
-- [virt] hyperv/net: Cleanup the send path (Jason Wang) [1146357]
-- [virt] hyperv/net: Enable scatter gather I/O (Jason Wang) [1146357]
-- [virt] hyperv: Move state setting for link query (Jason Wang) [1146357]
-- [virt] hyperv: Add latest NetVSP versions to auto negotiation (Jason Wang) [1146357]
-- [virt] hyperv/net: Cleanup the netvsc receive callback functio (Jason Wang) [1146357]
-- [virt] hyperv/net: Cleanup the receive path (Jason Wang) [1146357]
-- [virt] hyperv/net: Get rid of the rndis_filter_packet structure (Jason Wang) [1146357]
-- [virt] hyperv: Fix the carrier status setting (Jason Wang) [1146357]
-- [virt] hyperv/util: Fix a bug in the KVP code (Jason Wang) [1102584]
-- [virt] hyperv/vmbus: Fix a bug in the channel callback dispatch code (Jason Wang) [1146357]
-- [virt] hyperv: remove meaningless pr_err() in vmbus_recvpacket_raw() (Jason Wang) [1146357]
-- [virt] tools/hyperv: Handle the case when the target file exists correctly (Jason Wang) [1146358]
-- [virt] hyperv/hv_fcopy: fix a race condition for SMP guest (Jason Wang) [1146358]
-- [virt] hyperv: fcopy_open() can be static (Jason Wang) [1146358]
-- [virt] hyperv: Implement the file copy service (Jason Wang) [1146358]
-- [virt] hyperv: Add hyperv.h to uapi headers (Jason Wang) [1146358]
-- [virt] hyperv/vmbus: Fix a bug in vmbus_open() (Jason Wang) [1146358]
-- [virt] hyperv/vmbus: Properly protect calls to smp_processor_id() (Jason Wang) [1146358]
-- [virt] hyperv: Remove unnecessary comparison of unsigned against 0 (Jason Wang) [1146358]
-- [virt] hyperv/vmbus: Implement per-CPU mapping of relid to channel (Jason Wang) [1146358]
-- [virt] hyperv: Eliminate the channel spinlock in the callback path (Jason Wang) [1146358]
-- [virt] hyperv/vmbus: Support per-channel driver state (Jason Wang) [1146358]
-
-* Fri Oct 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-187.el7]
-- [ethernet] qlcnic: Remove duplicate object file from Makefile (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Initialize dcbnl_ops before register_netdev (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Set driver version before registering netdev (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix update of ethtool stats (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.61 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance Tx timeout debug data collection (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.60 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Optimize ring count validations (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Pre-allocate DMA buffer used for minidump collection (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: remove duplicate QLC_83XX_GET_LSO_CAPABILITY define (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Initialize mailbox cmd structure to zero (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: info leak in qlcnic_dcb_peer_app_info() (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Use time_before() (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: get rid of SET_ETHTOOL_OPS (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.59 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Collect firmware dump using DMA on 82xx adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add mac learning support to SR-IOV VF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add support to process commands in atomic context (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow SR-IOV VF probe in hypervisor (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Set real_num_{tx|rx}_queues properly (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix panic while dumping TX queues on TX timeout (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.58 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Limit vNIC support in legacy interrupt mode (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add driver logs in error path (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow setting TX interrupt coalescing parameters from VF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add hwmon interface to export board temperature (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Optimize MAC learning code (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix memory leak (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Reset firmware API lock at driver load time (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix MSI-X initialization code (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Do not disable SR-IOV when VFs are assigned to VMs (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix QLogic application/driver interface for virtual NIC configuration (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix PVID configuration on eSwitch port (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix max ring count calculation (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix to send INIT_NIC_FUNC as first mailbox (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix panic due to uninitialzed delayed_work struct in use (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: include irq.h for irq definitions (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix build failure due to undefined reference to `vxlan_get_rx_port' (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Remove casts of pointer to same type (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.57 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add VXLAN Rx offload support (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add VXLAN Tx offload support (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb, a couple off by one bugs (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix number of rings when we fall back from msix to legacy (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow any VLAN to be configured from VF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix usage of use_msi and use_msi_x module parameters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix function return error check (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.56 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance semaphore lock access failure error message (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow vlan0 traffic (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance driver message in failed state (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Updates to QLogic application/driver interface for virtual NIC configuration (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Re-factor firmware minidump template header handling (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Cleanup qlcnic_enable_msix() return values (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: update version to 5.3.55 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix loopback test failure (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix initialization of vlan list (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Correct off-by-one errors in bounds checks (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance logic to calculate msix vectors (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Refactor interrupt coalescing code for all adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update poll controller code path (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Interrupt code cleanup (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance Tx timeout debugging (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Use bool for rx_mac_learn (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: fix sparse warnings (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: remove unused code (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: make local functions static (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.54 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enable IPv6 LRO even if IP address is not programmed (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix SR-IOV cleanup code path (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enable beaconing for 83xx/84xx Series adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Do MAC learning for SRIOV PF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Turn on promiscous mode for SRIOV PF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enable VF flood bit on PF (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Restrict VF from configuring any VLAN mode (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Convert vmalloc/memset to kcalloc (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix ethtool statistics length calculation (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix bug in TX statistics (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix resource allocation for TX queues (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix loopback diagnostic test (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Mark functions as static in qlcnic_83xx_hw.c (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Mark functions as static in qlcnic_io.c (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: update version to 5.3.53 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Support for 16 virtual NIC functions (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: VLAN enhancement for 84XX adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow single Tx/Rx queue for all adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Refactor initialize nic code path (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Issue INIT_NIC command only once (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Disable DCB operations from SR-IOV VFs (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Dump mailbox registers when mailbox command times out (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix mailbox processing during diagnostic test (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Allow firmware dump collection when auto firmware recovery is disabled (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix memory allocation (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix TSS/RSS validation for 83xx/84xx series adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix TSS/RSS ring validation logic (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix typo in printk (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: update version to 5.3.52 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enable multiple Tx queue support for 83xx/84xx Series adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: refactor Tx/SDS ring calculation and validation in driver (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance ethtool Statistics for Multiple Tx queue (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Register netdev in FAILED state for 83xx/84xx (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Do not read QLCNIC_FW_CAPABILITY_MORE_CAPS bit for 83xx adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Do not force adapter to perform LRO without destination IP check (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: remove unnecessary pci_set_drvdata() (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Validate Tx queue only for 82xx adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: update version to 5.3.51 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Skip unknown entry type while collecting firmware dump (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb code cleanup and refactoring (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Remove redundant eSwitch enable commands (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update ethtool standard pause settings (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Firmware dump collection when auto recovery is disabled (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance ethtool to display ring indices and interrupt mask (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Print informational messages only once during driver load (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: add missing destroy_workqueue() on error path in qlcnic_probe() (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Miscellaneous conversions to ETH_ALEN (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix SR-IOV configuration (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix register device in FAILED state for 82xx (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix warning reported by kbuild test robot (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: use standard NAPI weights (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: remove a stray semicolon (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Fix sparse warning (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Convert uses of compare_ether_addr to ether_addr_equal (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.50 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add support for per port eswitch configuration (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Restructuring of qlc_83xx_fw_info structure (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add AER support for 83xx adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Add AER callback handlers (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Store firmware dump state in CAMRAM register (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Use firmware recommended dump capture mask as default (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Remove inline keyword (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Enhance PVID handling for 84xx adapters (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Update version to 5.3.49 (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb, Add support for CEE Netlink interface (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb: Register DCB AEN handler (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb, Get DCB parameters from the adapter (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: dcb, Query adapter DCB capabilities (Chad Dupuis) [1089352]
-- [ethernet] qlcnic: Back off patch for the upstream commit "d6e9c89a8d3cf0a5184badbcd50169179af27721" (Chad Dupuis) [1089352]
-- [ethernet] be2net: query max_tx_qs for BE3 super-nic profile from FW (Ivan Vecera) [1088575]
-- [ethernet] be2net: define macro for_all_tx_queues_on_eq() (Ivan Vecera) [1088575]
-- [ethernet] be2net: get rid of TX budget (Ivan Vecera) [1088575]
-- [ethernet] be2net: make be_cmd_get_regs() return a status (Ivan Vecera) [1088575]
-- [ethernet] be2net: define BE_MAX_MTU (Ivan Vecera) [1088575]
-- [ethernet] be2net: remove unncessary gotos (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix log messages in lancer FW download path (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add a dma_mapping_error counter in ethtool (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add TX completion error statistics in ethtool (Ivan Vecera) [1088575]
-- [ethernet] be2net: add a description for counter rx_input_fifo_overflow_drop (Ivan Vecera) [1088575]
-- [ethernet] be2net: shorten AMAP_GET/SET_BITS() macro calls (Ivan Vecera) [1088575]
-- [ethernet] be2net: add a few log messages (Ivan Vecera) [1088575]
-- [ethernet] be2net: Set skb->csum_level for encapsulated checksum (Ivan Vecera) [1088575]
-- [ethernet] be2net: Remove DEFINE_PCI_DEVICE_TABLE macro use (Ivan Vecera) [1088575]
-- [ethernet] be2net: support deleting FW dump via ethtool (only for Lancer) (Ivan Vecera) [1088575]
-- [ethernet] be2net: ignore VF mac address setting for the same mac (Ivan Vecera) [1088575]
-- [ethernet] be2net: ignore get/set profile FW cmd failures (Ivan Vecera) [1088575]
-- [ethernet] be2net: Issue shutdown event to ocrdma driver (Ivan Vecera) [1088575]
-- [ethernet] be2net: update driver version to 10.4 (Ivan Vecera) [1088575]
-- [ethernet] be2net: use adapter->flags to track SRIOV state (Ivan Vecera) [1088575]
-- [ethernet] be2net: avoid SRIOV config for BE2 chip (Ivan Vecera) [1088575]
-- [ethernet] be2net: use be_max_vfs() macro to access max-vfs (Ivan Vecera) [1088575]
-- [ethernet] be2net: use "if (!foo)" test style (Ivan Vecera) [1088575]
-- [ethernet] be2net: remove unused structures in be_cmds.h (Ivan Vecera) [1088575]
-- [ethernet] be2net: reduce arguments passed to FW-cmd routines (Ivan Vecera) [1088575]
-- [ethernet] be2net: update UE bit description strings (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix return status of some ndo methods (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix return status of some ethtool methods (Ivan Vecera) [1088575]
-- [ethernet] be2net: return -ENOMEM for memory allocation failures (Ivan Vecera) [1088575]
-- [ethernet] be2net: return -ETIMEDOUT when a FW-cmd times out (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix error status for FW-download (Ivan Vecera) [1088575]
-- [ethernet] be2net: use -ENETDOWN error status when interface is down (Ivan Vecera) [1088575]
-- [ethernet] be2net: set EQ DB clear-intr bit in be_open() (Ivan Vecera) [1088575]
-- [ethernet] be2net: re-enable vlan filtering mode asap (Ivan Vecera) [1088575]
-- [ethernet] be2net: create optimal number of queues on SR-IOV config (Ivan Vecera) [1088575]
-- [ethernet] be2net: read VF's capabilities from GET_PROFILE_CONFIG cmd (Ivan Vecera) [1088575]
-- [ethernet] be2net: remove be_cmd_get_profile_config_mbox/mccq() variants (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix qnq mode detection on VFs (Ivan Vecera) [1088575]
-- [ethernet] be2net: cleanup MCC async event processing code (Ivan Vecera) [1088575]
-- [ethernet] be2net: move async cmd processing to a separate routine (Ivan Vecera) [1088575]
-- [ethernet] be2net: re-factor MCCQ error status handling code (Ivan Vecera) [1088575]
-- [ethernet] be2net: support flashing new regions on Skyhawk-R (Ivan Vecera) [1088575]
-- [ethernet] be2net: fixup TX-rate setting code for Skyhawk-R (Ivan Vecera) [1088575]
-- [ethernet] be2net: skip multicast promiscuos setting in already set (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool (Ivan Vecera) [1088575]
-- [ethernet] be2net: get rid of SET_ETHTOOL_OPS (Ivan Vecera) [1088575]
-- [ethernet] be2net: use MCCQ instead of MBOX in be_cmd_rss_config() (Ivan Vecera) [1088575]
-- [ethernet] be2net: include rx-compl error counter in ethtool stats (Ivan Vecera) [1088575]
-- [ethernet] be2net: remove unused code in be_cmd_vlan_config() (Ivan Vecera) [1088575]
-- [ethernet] be2net: covert vlan array to bit-map (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix line wrap and function call indentation in be_ethtool.c (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix function call indentation in be_cmds.c (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix line wrap and function call indentation in be_main.c (Ivan Vecera) [1088575]
-- [ethernet] be2net: Support for configurable RSS hash key (Ivan Vecera) [1088575]
-- [ethernet] be2net: Fix to reap TX compls till HW doesn't respond for some time (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add abi version between be2net and ocrdma (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix build dependency on VxLAN (Ivan Vecera) [1088575 1093399 1099545]
-- [ethernet] be2net: csum, tso and rss steering offload support for VxLAN (Ivan Vecera) [1088575 1093399 1099545]
-- [ethernet] be2net: add FW cmds needed for VxLAN offloads (Ivan Vecera) [1088575 1093399 1099545]
-- [ethernet] be2net: Call dev_kfree_skby_any instead of kfree_skb (Ivan Vecera) [1088575]
-- [ethernet] be2net: update driver version to 10.2 (Ivan Vecera) [1088575]
-- [ethernet] be2net: Fix vlans_added counter (Ivan Vecera) [1088575]
-- [ethernet] be2net: Create multiple TXQs on RSS capable multi-channel BE3-R interfaces (Ivan Vecera) [1088575]
-- [ethernet] be2net: fix pmac_id[] allocation size (Ivan Vecera) [1088575]
-- [ethernet] be2net: log LPVID used in multi-channel configs (Ivan Vecera) [1088575]
-- [ethernet] be2net: Add link state control for VFs (Ivan Vecera) [1088575]
-- [ethernet] be2net: Use GET_PROFILE_CONFIG cmd for BE3-R to query max-vfs (Ivan Vecera) [1088575]
-- [ethernet] be2net: dma_sync each RX frag before passing it to the stack (Ivan Vecera) [1088575]
-- [ethernet] be2net: isolate TX workarounds not applicable to Skyhawk-R (Ivan Vecera) [1088575]
-- [ethernet] be2net: Fix skb double free in be_xmit_wrokarounds() failure path (Ivan Vecera) [1088575]
-- [ethernet] be2net: clear promiscuous bits in adapter->flags while disabling promiscuous mode (Ivan Vecera) [1088575]
-- [ethernet] be2net: Fix to reset transparent vlan tagging (Ivan Vecera) [1088575]
-- [ethernet] be2net: Use pci_enable_msix_range() instead of pci_enable_msix() (Ivan Vecera) [1088575]
-- [ethernet] be2net: refactor multi-channel config code for Skyhawk-R chip (Ivan Vecera) [1088575]
-- [ethernet] be2net: Update copyright year (Ivan Vecera) [1088575]
-- [ethernet] be2net: Log a kernel message when UE is detected in BE & Skyhawk (Ivan Vecera) [1088575]
-- [ethernet] be2net: Explicitly initialize u64_stats_sync structures for lockdep (Ivan Vecera) [1088575]
-- [drm] bochs: changes from 3.14..3.15 for bochs (Gerd Hoffmann) [1043379]
-- [drm] bochs: replace ALIGN(PAGE_SIZE) by PAGE_ALIGN (Gerd Hoffmann) [1043379]
-- [drm] bochs: Remove unecessary NULL check in gem_free (Gerd Hoffmann) [1043379]
-- [drm] bochs: Remove unnecessary NULL check in bo_unref (Gerd Hoffmann) [1043379]
-- [drm] bochs: drop unused struct fields (Gerd Hoffmann) [1043379]
-- [drm] bochs: add power management support (Gerd Hoffmann) [1043379]
-- [drm] bochs: fix bochs kconfig dependencies (Gerd Hoffmann) [1043379]
-- [drm] bochs: new driver (Gerd Hoffmann) [1043379]
-- [iommu] amd: Split init_iommu_group() from iommu_init_device() (Myron Stowe) [1141937]
-- [iommu] Rework iommu_group_get_for_pci_dev() (Myron Stowe) [1141937]
-
-* Thu Oct 09 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-186.el7]
-- [kernel] sched/balancing: Reduce the rate of needless idle load balancing (Larry Woodman) [1120318]
-- [kernel] sched/fair: Implement fast idling of CPUs when the system is partially loaded (Larry Woodman) [1120318]
-- [kernel] sched: Skip double execution of pick_next_task_fair() (Larry Woodman) [1120318]
-- [md] Revert: dm: change sector_count member in clone_info from sector_t to unsigned (Mike Snitzer) [1147574]
-- [md] Revert: dm: introduce dm_accept_partial_bio (Mike Snitzer) [1147574]
-- [md] Revert: dm-snapshot: allocate a per-target structure for snapshot-origin target (Mike Snitzer) [1147574]
-- [md] Revert: dm-snapshot: do not split read bios sent to snapshot-origin target (Mike Snitzer) [1147574]
-- [virt] kvm: nested vmx - disable perf cpuid reporting (Marcelo Tosatti) [1083969]
-- [mm] slub: Handle NULL parameter in kmem_cache_flags (Ilya Dryomov) [1143028]
-- [crypto] algif: avoid excessive use of socket buffer in skcipher (Ondrej Kozina) [1136075]
-- [kernel] time/clocksource: Move cycle_last validation to core code (Prarit Bhargava) [1148398]
-- [kernel] time/clocksource: Make delta calculation a function (Prarit Bhargava) [1148398]
-- [mm] vmscan: clear kswapd's special reclaim powers before exiting (Motohiro Kosaki) [810042]
-- [x86] mm/numa: fix array index overflow when synchronizing nid to memblock.reserved (Motohiro Kosaki) [810042]
-- [x86] mm/numa: initialize numa_kernel_nodes in numa_clear_kernel_node_hotplug() (Motohiro Kosaki) [810042]
-- [mm] page_alloc: make movable_node have higher priority (Motohiro Kosaki) [810042]
-- [x86] memblock, mem_hotplug: make memblock skip hotpluggable regions if needed (Motohiro Kosaki) [810042]
-- [x86] mm: mark all nodes the kernel resides un-hotpluggable (Motohiro Kosaki) [810042]
-- [x86] mm: mark hotpluggable memory in memblock (Motohiro Kosaki) [810042]
-- [mm] memblock: make memblock_set_node() support different memblock_type (Motohiro Kosaki) [810042]
-- [mm] memblock/mem_hotplug: introduce MEMBLOCK_HOTPLUG flag to mark hotpluggable regions (Motohiro Kosaki) [810042]
-- [mm] memblock: numa - introduce flags field into memblock (Motohiro Kosaki) [810042]
-- [mm] memblock: debug - correct displaying of upper memory boundary (Motohiro Kosaki) [810042]
-- [x86] mm: get pg_data_t's memory from other node (Motohiro Kosaki) [810042]
-- [mm] mem-hotplug: introduce movable_node boot option (Motohiro Kosaki) [810042]
-- [x86] kernel/setup: do reserve_crashkernel() after SRAT is parsed (Motohiro Kosaki) [810042]
-- [x86] mem-hotplug: support initialize page tables in bottom-up (Motohiro Kosaki) [810042]
-- [x86] mm: factor out of top-down direct mapping setup (Motohiro Kosaki) [810042]
-- [mm] memblock: introduce bottom-up allocation mode (Motohiro Kosaki) [810042]
-- [mm] memblock: factor out of top-down allocation (Motohiro Kosaki) [810042]
-- [x86] mm: Add 'step_size' comments to init_mem_mapping() (Motohiro Kosaki) [810042]
-- [x86] srat: Print Hot-Pluggable Field in SRAT (Motohiro Kosaki) [810042]
-
-* Thu Oct 09 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-185.el7]
-- [fs] udf: Avoid infinite loop when processing indirect ICBs (Jacob Tanenbaum) [1142322] {CVE-2014-6410}
-- [fs] eliminate BUG() call when there's an unexpected lock on file close (Frank Sorenson) [1148130]
-- [hid] fix off by one error in various _report_fixup routines (Jacob Tanenbaum) [1141394] {CVE-2014-3184}
-- [hid] logitech-dj: fix OOB array access (Jacob Tanenbaum) [1141212] {CVE-2014-3182}
-- [hid] picolcd: fix memory corruption via OOB write (Jacob Tanenbaum) [1141409] {CVE-2014-3186}
-- [usb] serial/whiteheat: fix memory corruption flaw (Jacob Tanenbaum) [1141404] {CVE-2014-3185}
-- [hid] fix OOB write in magicmouse driver (Jacob Tanenbaum) [1141177] {CVE-2014-3181}
-- [x86] uv/nmi: Fix UV NMI handler when KDB not configured (George Beshers) [1138519]
-- [x86] uv/nmi: Fix Sparse warnings (George Beshers) [1138519]
-- [kernel] debug: Fix no KDB config problem (George Beshers) [1138519]
-- [x86] uv: Add call to KGDB/KDB from NMI handler (George Beshers) [1138519]
-- [kernel] debug: Add support for external NMI handler to call KGDB/KDB (George Beshers) [1138519]
-- [x86] uv: Add kdump to UV NMI handler (George Beshers) [1138519]
-- [x86] uv: Add summary of cpu activity to UV NMI handler (George Beshers) [1138519]
-- [x86] uv: Update UV support for external NMI signals (George Beshers) [1138519]
-- [x86] uv: Move NMI support (George Beshers) [1138519]
-- [infiniband] ipath: Add P_Key change event support (Doug Ledford) [1085961]
-- [infiniband] qib: Additional Intel branding changes (Doug Ledford) [1085961]
-- [infiniband] ipath: Use time_before()/_after() (Doug Ledford) [1085961]
-- [infiniband] ipath: Translate legacy diagpkt into newer extended diagpkt (Doug Ledford) [1085961]
-- [infiniband] qib: Fix port in pkey change event (Doug Ledford) [1085961]
-- [infiniband] qib: Use pci_enable_msix_range() instead of pci_enable_msix() (Doug Ledford) [1085961]
-- [infiniband] qib: Cleanup qib_register_observer() (Doug Ledford) [1085961]
-- [infiniband] qib: Change SDMA progression mode depending on single- or multi-rail (Doug Ledford) [1085961]
-- [infiniband] qib: Remove duplicate check in get_a_ctxt() (Doug Ledford) [1085961]
-- [infiniband] qib: Fix memory leak of recv context when driver fails to initialize (Doug Ledford) [1085961]
-- [infiniband] qib: fixup indentation in qib_ib_rcv() (Doug Ledford) [1085961]
-- [infiniband] qib: add missing braces in do_qib_user_sdma_queue_create() (Doug Ledford) [1085961]
-- [infiniband] qib: Modify software pma counters to use percpu variables (Doug Ledford) [1085961]
-- [infiniband] qib: Add percpu counter replacing qib_devdata int_counter (Doug Ledford) [1085961]
-- [infiniband] qib: Fix debugfs ordering issue with multiple HCAs (Doug Ledford) [1085961]
-- [infiniband] ipath: Fix potential buffer overrun in sending diag packet routine (Doug Ledford) [1085961]
-- [infiniband] qib: Fix potential buffer overrun in sending diag packet routine (Doug Ledford) [1085961]
-- [infiniband] qib: Add missing serdes init sequence (Doug Ledford) [1085961]
-- [infiniband] qib: Fix QP check when looping back to/from QP1 (Doug Ledford) [1085961]
-- [kernel] audit: drop arch from __audit_syscall_entry() interface (Richard Guy Briggs) [1053921]
-- [kernel] audit: fix build error when asm/syscall.h does not exist (Richard Guy Briggs) [1053921]
-- [kernel] audit: add arch field to seccomp event log (Richard Guy Briggs) [1053921]
-- [kernel] audit: __audit_syscall_entry - ignore arch arg and call syscall_get_arch() directly (Richard Guy Briggs) [1053921]
-- [kernel] audit: audit_syscall_entry() should not require the arch (Richard Guy Briggs) [1053921]
-- [kernel] audit: implement syscall_get_arch for all arches (Richard Guy Briggs) [1053921]
-- [kernel] syscall.h: fix doc text for syscall_get_arch() (Richard Guy Briggs) [1053921]
-- [kernel] audit: use uapi/linux/audit.h for AUDIT_ARCH declarations (Richard Guy Briggs) [1053921]
-- [kernel] syscall_get_arch: remove useless function arguments (Richard Guy Briggs) [1053921]
-
-* Wed Oct 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-184.el7]
-- [scsi] cxgb4i: Fix ipv6 build failure caught with randconfig (Sai Vemuri) [1126539]
-- [scsi] cxgb4i: remove spurious use of rcu (Sai Vemuri) [1126539]
-- [scsi] cxgb4i Guard ipv6 code with a config check (Sai Vemuri) [1126539]
-- [scsi] cxgb4i: Add ipv6 code to driver, call into libcxgbi ipv6 api (Sai Vemuri) [1126539]
-- [scsi] libcxgbi: Add ipv6 api to driver (Sai Vemuri) [1126539]
-- [scsi] cxgb4i: Use cxgb4_select_ntuple to correctly calculate ntuple fields (Sai Vemuri) [1126539]
-- [ethernet] cxgb4: Issue mbox commands on correct mbox (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Avoid dumping Write-only registers in register dump (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Detect and display firmware reported errors (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix T5 adapter accessing T4 adapter registers (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fixed the code to use correct length for part number (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix for handling 1Gb/s SFP+ Transceiver Modules (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Free completed tx skbs promptly (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix race condition in cleanup (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Update FW version string to match FW binary version (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix for SR-IOV VF initialization (Sai Vemuri) [1124947]
-- [scsi] cxgb4i: Move stray CPL definitions to cxgb4 driver (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: only free allocated fls (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Only call CQ completion handler if it is armed (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fixed incorrect check for memory operation in t4_memory_rw (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Don't limit TPTE count to 32KB (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: advertise the correct device max attributes (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Support query_qp() verb (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: log detailed warnings for negative advice (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Add the MC1 registers to read in the interrupt handler (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: fix for 64-bit integer division (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Export symbols required by cxgb4i for ipv6 support and required defines (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Move common defines to cxgb4 (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: work request logging feature (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: display TPTE on errors (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: use firmware ord/ird resource limits (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Detect Ing. Padding Boundary at run-time (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Call iwpm_init() only once (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Initialize the device status page (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Clean up connection on ARP error (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix skb_leak in reject_cr() (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: remove unnecessary null test before debugfs_remove_recursive (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Adds device ID for few more Chelsio T4 Adapters (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Replaced the backdoor mechanism to access the HW memory with PCIe Window method (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Use FW interface to get BAR0 value (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fixes cxgb4 probe failure in VM when PF is exposed through PCI Passthrough (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: use dev_port to identify ports (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Not need to hold the adap_rcu_lock lock when read adap_rcu_list (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: don't truncate the recv window size (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Choose appropriate hw mtu index and ISS for iWARP connections (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Allocate and use IQs specifically for indirect interrupts (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Add support for iWARP Port Mapper user space service (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: add missing padding at end of struct c4iw_alloc_ucontext_resp (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Add missing padding at end of struct c4iw_create_cq_resp (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix vlan support (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix memory leaks in c4iw_alloc() error paths (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Check if rx checksum offload is enabled, while reading hardware calculated checksum (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Decode the firmware port and module type a bit more for ethtool (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Decode PCIe Gen3 link speed (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Update Kconfig to include Chelsio T5 adapter (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Only allow kernel db ringing for T4 devs (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Force T5 connections to use TAHOE congestion control (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix endpoint mutex deadlocks (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: use the correct max size for firmware flash (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Save the correct mac addr for hw-loopback connections in the L2T (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix over-dereference when terminating (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Use uninitialized_var() (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Add missing debug stats (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Initialize reserved fields in a FW work request (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Use pr_warn_ratelimited (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Max fastreg depth depends on DSGL support (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: SQ flush fix (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: rmb() after reading valid gen bit (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Endpoint timeout fixes (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Use the BAR2/WC path for kernel QPs and T5 devices (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Disable DSGL use by default (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: rx_data() needs to hold the ep mutex (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Drop RX_DATA packets if the endpoint is gone (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Lock around accept/reject downcalls (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: set error code on kmalloc() failure (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Adds device ID for few more Chelsio Adapters (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Remove addressof casts to same type (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Call dev_kfree/consume_skb_any instead of [dev_]kfree_skb (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Update snd_seq when sending MPA messages (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Connect_request_upcall fixes (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Ignore read reponse type 1 CQEs (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix possible memory leak in RX_PKT processing (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Don't leak skb in c4iw_uld_rx_handler() (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Save the correct map length for fast_reg_page_lists (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Default peer2peer mode to 1 (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Mind the sq_sig_all/sq_sig_type QP attributes (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix incorrect BUG_ON conditions (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Always release neigh entry (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Allow loopback connections (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Cap CQ size at T4_MAX_IQ_SIZE (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix four byte info leak in c4iw_create_cq() (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix underflows in c4iw_create_qp() (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Doorbell Drop Avoidance Bug Fixes (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Treat CPL_ERR_KEEPALV_NEG_ADVICE as negative advice (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Calculate len properly for LSO path (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Updates for T5 SGE's Egress Congestion Threshold (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Rectify emitting messages about SGE Ingress DMA channels being potentially stuck (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Add code to dump SGE registers when hitting idma hangs (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Fix some small bugs in t4_sge_init_soft() when our Page Size is 64KB (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Stop using ethtool SPEED_* constants (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Add more PCI device ids (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Don't assume LSO only uses SGL path in t4_eth_xmit() (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Remove unused registers and add missing ones (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Query firmware for T5 ULPTX MEMWRITE DSGL capabilities (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: LE-Workaround is not atomic in firmware (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Allow >10G ports to have multiple queues (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Print adapter VPD Part Number instead of Engineering Change field (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Add support to recognize 40G links (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Add missing neigh_release in LE-Workaround path (Sai Vemuri) [1124947]
-- [infiniband] cxgb4: Fix gcc warning on 32-bit arch (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: silence shift wrapping static checker warning (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: Changed FW check version to match FW binary version (Sai Vemuri) [1124947]
-- [ethernet] cxgb4: make functions static and remove dead code (Sai Vemuri) [1124947]
-- [tools] perf: Disable kernel symbol demangling by default (Jiri Olsa) [1140522]
-- [tools] perf/symbols: Don't demangle parameters and such by default (Jiri Olsa) [1140522]
-- [powerpc] pseries: Fix endian issues in memory hotplug (Steve Best) [1142244]
-- [powerpc] pseries/hvcserver: Fix endian issue in hvcs_get_partner_info (Steve Best) [1142244]
-- [powerpc] powernv: Interface to register/unregister opal dump region (Steve Best) [1142244]
-- [kernel] printk: Add function to return log buffer address and size (Steve Best) [1142244]
-- [acpi] hotplug: Check scan handlers in acpi_scan_hot_remove() (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Simplify acpi_set_hp_context() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Eliminate acpiphp_dev_to_bridge() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Add hotplug contexts to PCI host bridges (Prarit Bhargava) [1141846]
-- [acpi] Remove duplicate definitions of PREFIX (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Use pci_device_is_present() (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Rework deferred execution of acpi_device_hotplug() (Prarit Bhargava) [1141846]
-- [ata] libata-acpi: Add hotplug contexts to ACPI companions of SATA devices (Prarit Bhargava) [1141846]
-- [acpi] dock: Add .uevent() callback to struct acpi_hotplug_context (Prarit Bhargava) [1141846]
-- [acpi] dock: Use callback pointers from devices' ACPI hotplug contexts (Prarit Bhargava) [1141846]
-- [acpi] dock: Use ACPI device object pointers instead of ACPI handles (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Add .fixup() callback to struct acpi_hotplug_context (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Do not clear event callback pointer for docks (Prarit Bhargava) [1141846]
-- [acpi] Drop acpi_evaluate_hotplug_ost() and ACPI_HOTPLUG_OST (Prarit Bhargava) [1141846]
-- [acpi] rename acpi_evaluate_hotplug_ost() to acpi_evaluate_ost() (Prarit Bhargava) [1141846]
-- [acpi] dock: Dispatch dock notifications from the global notify handler (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Add ACPIPHP contexts to devices handled by PCIeHP (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Rename register_slot() to acpiphp_add_context() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Relax the checking of _STA return values (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Execute _EJ0 under the ACPI scan lock (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Hotplug notifications from acpi_bus_notify() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Simplify acpi_install_hotplug_notify_handler() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Rework acpiphp_check_host_bridge() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Rework the handling of eject requests (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Consolidate ACPIPHP with ACPI core hotplug (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Define hotplug context lock in the core (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Fix potential race in acpi_bus_notify() (Prarit Bhargava) [1141846]
-- [acpi] acpica: Introduce acpi_get_data_full() and rework acpi_get_data() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Do not pass ACPI handle to hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Use acpi_handle_debug() in hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Simplify hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Drop crit_sect locking (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Drop acpiphp_bus_add() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Store acpi_device pointer in acpiphp_context (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Rework acpiphp_no_hotplug() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Drop acpiphp_bus_trim() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Simplify register_slot() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Proper kerneldoc comments for enumeration/removal (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Simplify disable_slot() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Fix bridge removal race vs dock events (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Fix bridge removal race in handle_hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Scan root bus under the PCI rescan-remove lock (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Move PCI rescan-remove locking to hotplug_event() (Prarit Bhargava) [1141846]
-- [acpi] hotplug/pci: Remove entries from bus->devices in reverse order (Prarit Bhargava) [1141846]
-- [acpi] acpiphp: Fix radeon/nouveau VGA switcheroo problem related to hotplug (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Handle containers in a special way (Prarit Bhargava) [1141846]
-- [acpi] hotplug: Add demand_offline hotplug profile flag (Prarit Bhargava) [1141846]
-- [acpi] bind: Move acpi_get_child() to drivers/ide/ide-acpi.c (Prarit Bhargava) [1141846]
-- [acpi] bind: Pass struct acpi_device pointer to acpi_bind_one() (Prarit Bhargava) [1141846]
-- [acpi] bind: Rework struct acpi_bus_type (Prarit Bhargava) [1141846]
-- [acpi] bind: Redefine acpi_preset_companion() (Prarit Bhargava) [1141846]
-- [acpi] bind: Redefine acpi_get_child() (Prarit Bhargava) [1141846]
-- [pci] acpi: Use acpi_find_child_device() for child devices lookup (Prarit Bhargava) [1141846]
-- [acpi] bind: Simplify child device lookups (Prarit Bhargava) [1141846]
-- [acpi] libata: Store an ACPI device pointer in struct acpi_dev_node (Prarit Bhargava) [1141846]
-- [ata] libata: remove power dependent device handling (Prarit Bhargava) [1141846]
-- [acpi] bind: Prefer device objects with _STA to those without it (Prarit Bhargava) [1141846]
-- [drm] nouveau/nouveau_acpi: convert acpi_get_handle() to acpi_has_method() (Prarit Bhargava) [1141846]
-- [acpi] libata: Remove ata_dev_acpi_handle stub in libata.h (Prarit Bhargava) [1141846]
-- [ata] libata-acpi: rework the ata acpi bind support (Prarit Bhargava) [1141846]
-- [acpi] Cleanup sparse warning on acpi_os_initialize1() (Prarit Bhargava) [1141846]
-
-* Tue Oct 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-183.el7]
-- [infiniband] usnic: backport to older netdev notifier arguments (Doug Ledford) [916382]
-- [infiniband] usnic: Fix source file missing copyright and license (Doug Ledford) [916382]
-- [infiniband] usnic: Remove '0x' when using pa format (Doug Ledford) [916382]
-- [infiniband] usnic: Fix smatch endianness error (Doug Ledford) [916382]
-- [infiniband] usnic: Remove unused includes of <linux/version.h> (Doug Ledford) [916382]
-- [infiniband] usnic: Use GFP_ATOMIC under spinlock (Doug Ledford) [916382]
-- [infiniband] usnic: Remove unused variable in usnic_debugfs_exit() (Doug Ledford) [916382]
-- [infiniband] usnic: Set userspace/kernel ABI ver to 4 (Doug Ledford) [916382]
-- [infiniband] usnic: Advertise usNIC devices as RDMA_NODE_USNIC_UDP (Doug Ledford) [916382]
-- [infiniband] usnic: Add dependency on CONFIG_INET (Doug Ledford) [916382]
-- [infiniband] usnic: Fix endianness-related warnings (Doug Ledford) [916382]
-- [infiniband] usnic: Append documentation to usnic_transport.h and cleanup (Doug Ledford) [916382]
-- [infiniband] usnic: Fix typo "Ignorning" -> "Ignoring" (Doug Ledford) [916382]
-- [infiniband] usnic: Expose flows via debugfs (Doug Ledford) [916382]
-- [infiniband] usnic: Use for_each_sg instead of a for-loop (Doug Ledford) [916382]
-- [infiniband] usnic: Remove superflous parentheses (Doug Ledford) [916382]
-- [infiniband] usnic: Add UDP support in usnic_ib_qp_grp.[hc] (Doug Ledford) [916382]
-- [infiniband] usnic: Add UDP support in u*verbs.c, u*main.c and u*util.h (Doug Ledford) [916382]
-- [infiniband] usnic: Add UDP support to usnic_transport.[hc] (Doug Ledford) [916382]
-- [infiniband] usnic: Add UDP support to usnic_fwd.[hc] (Doug Ledford) [916382]
-- [infiniband] usnic: Update ABI and Version file for UDP support (Doug Ledford) [916382]
-- [infiniband] usnic: Port over sysfs to new usnic_fwd.h (Doug Ledford) [916382]
-- [infiniband] usnic: Port over usnic_ib_qp_grp.[hc] to new usnic_fwd.h (Doug Ledford) [916382]
-- [infiniband] usnic: Port over main.c and verbs.c to the usnic_fwd.h (Doug Ledford) [916382]
-- [infiniband] usnic: Push all forwarding state to usnic_fwd.[hc] (Doug Ledford) [916382]
-- [infiniband] usnic: Add struct usnic_transport_spec (Doug Ledford) [916382]
-- [infiniband] usnic: Change WARN_ON to lockdep_assert_held (Doug Ledford) [916382]
-- [infiniband] usnic: Add Cisco VIC low-level hardware driver (Doug Ledford) [916382]
-- [md] dm-table: propagate QUEUE_FLAG_NO_SG_MERGE (Jeff Moyer) [1105698]
-- [virt] virtio_blk: support multi virt queues per virtio-blk device (Jeff Moyer) [1105698]
-- [virt] virtio_blk: introduce feature of VIRTIO_BLK_F_MQ (Jeff Moyer) [1105698]
-- [virt] virtio_blk: don't hold spin lock during world switch (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: remove alloc_hctx and free_hctx methods (Jeff Moyer) [1105698]
-- [virt] virtio_blk: fix race between start and stop queue (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: add async parameter to blk_mq_start_stopped_hw_queues (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: split out tag initialization, support shared tags (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: add ->init_request and ->exit_request methods (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: do not initialize req->special (Jeff Moyer) [1105698]
-- [virt] virtio_blk: base queue-depth on virtqueue ringsize or module param (Jeff Moyer) [1105698]
-- [virt] virtio_blk, blk-mq: allow blk_mq_init_commands() to return failure (Jeff Moyer) [1105698]
-- [virt] virtio_blk: don't crash, report error if virtqueue is broken (Jeff Moyer) [1105698]
-- [virt] virtio_blk: use blk_mq_complete_request (Jeff Moyer) [1105698]
-- [virt] virtio_blk: virtqueue_kick() must be ordered with other virtqueue operations (Jeff Moyer) [1105698]
-- [virt] virtio_blk: blk-mq support (Jeff Moyer) [1105698]
-- [virt] virtio: use size-based config accessors (Jeff Moyer) [1105698]
-- [virt] virtio_config: introduce size-based accessors (Jeff Moyer) [1105698]
-- [virt] virtio_blk: Add missing 'static' qualifiers (Jeff Moyer) [1105698]
-- [block] cfq-iosched: Add comments on update timing of weight (Vivek Goyal) [1116126]
-- [block] cfq-iosched: Fix wrong children_weight calculation (Vivek Goyal) [1116126]
-- [fs] aio: block exit_aio() until all context requests are completed (Jeff Moyer) [1122092]
-- [fs] aio: add missing smp_rmb() in read_events_ring (Jeff Moyer) [1131312]
-- [fs] aio: fix reqs_available handling (Jeff Moyer) [1122092]
-- [fs] aio: report error from io_destroy() when threads race in io_destroy() (Jeff Moyer) [1122092]
-- [fs] aio: block io_destroy() until all context requests are completed (Jeff Moyer) [1122092]
-- [fs] aio: v4 ensure access to ctx->ring_pages is correctly serialised for migration (Jeff Moyer) [1122092]
-- [fs] aio/migratepages: make aio migrate pages sane (Jeff Moyer) [1122092]
-- [fs] aio: clean up and fix aio_setup_ring page mapping (Jeff Moyer) [1122092]
-- [md] dm-cache: fix race affecting dirty block count (Mike Snitzer) [1140362]
-- [md] dm-cache: fix race causing dirty blocks to be marked as clean (Mike Snitzer) [1140362]
-- [infiniband] mlx4: Fix wrong endianess access with QP context flags (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Set vlan stripping policy by the right command (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Avoid dealing with MAC index in UPDATE_QP wrapper if not needed (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use the correct VSD mask in UPDATE_QP (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Correctly configure single ported VFs from the host (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: do not ignore autoneg in mlx4_en_set_pauseparam() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Set user-space raw Ethernet QPs to properly handle VXLAN traffic (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Move the tunnel steering helper function to mlx4_core (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Set skb->csum_level for encapsulated checksum (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Avoid executing gid task when device is being removed (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix lockdep splat for the iboe lock (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Get upper dev addresses as RoCE GIDs when port comes up (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Reorder steps in RoCE GID table initialization (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Don't duplicate the default RoCE GID (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Avoid null pointer dereference in mlx4_ib_scan_netdevs() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use is_kdump_kernel() to detect kdump kernel (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Use ARRAY_SIZE instead of sizeof/sizeof[0] (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Use ARRAY_SIZE instead of sizeof/sizeof[0] (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add support for secure-host and SMP firewall (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4_ib: Add support for user MR re-registration (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add helper functions to support MR re-registration (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Adjust events to use unsigned long param instead of void ptr (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: minor fixes (mainly avoidance of hidden casts) (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Move pci device handling from mlx5_ib to mlx5_core (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: mlx4_en_[gs]et_priv_flags() can be static (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Reduce memory consumption on kdump kernel (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use low memory profile on kdump kernel (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Disable blueflame using ethtool private flags (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: current_mac isn't updated in port up (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: cq->irq_desc wasn't set in legacy EQ's (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Remove MCG in case it is attached to promiscuous QPs only (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: In SR-IOV mode host should add promisc QP to default entry only (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Make sure the max number of QPs per MCG isn't exceeded (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Make sure that negative array index isn't used (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix leakage of SW multicast entries (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Enable "block multicast loopback" for kernel consumers (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: mark napi id for gro_skb (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx5: Fix possible race between mr tree insert/delete (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Ignore budget on TX napi polling (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix mac_hash database inconsistency (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Do not count LLC/SNAP in MTU calculation (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Do not disable vlan filter during promiscuous mode (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Verify port number in __mlx4_unregister_mac (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Run loopback test only when port is up (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix set port ratelimit for 40GE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Don't configure the HW vxlan parser when vxlan offloading isn't set (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: IRQ affinity hint is not cleared on port down (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Don't use irq_affinity_notifier to track changes in IRQ affinity map (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix the error flow when probing with invalid VF configuration (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use affinity hint (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Keep only one driver entry release mlx4_priv (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix SRIOV free-pool management when enforcing resource quotas (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix gfp passing in create_qp_common() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix GFP flags parameters to be gfp_t (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Implement IB_QP_CREATE_USE_GFP_NOIO (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Reset RoCE VF gids when guest driver goes down (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Add interface for selecting VFs to enable QP0 via MLX proxy QPs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Add infrastructure for selecting VFs to enable QP0 via MLX proxy QPs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Preparation for VFs to issue/receive SMI (QP0) requests/responses (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: SET_PORT called by mlx4_ib_modify_port should be wrapped (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix incorrect FLAGS1 bitmap test in mlx4_QUERY_FUNC_CAP (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix memory leaks in SR-IOV error paths (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: fix unitialised variable is_mcast (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Fix warning about cast of wr_id back to pointer on 32 bits (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: add missing padding at end of struct mlx5_ib_create_srq (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: add missing padding at end of struct mlx5_ib_create_cq (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Refactor UMR to have its own context struct (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Set QP offsets and parameters for user QPs and not just for kernel QPs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Store MR attributes in mlx5_mr_core during creation and after UMR (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Add MR to radix tree in reg_mr_callback (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Fix error handling in reg_umr (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Copy DIF fields only when input and output space values match (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Simplify signature handover wqe for interleaved buffers (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Fix signature handover operation for interleaved buffers (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Replace pr_warning() with pr_warn() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Deprecate use_prio module parameter (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix uninitialized use of 'port_up' in mlx4_en_set_channels() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Invoke UPDATE_QP for proxy QP1 on MAC changes (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add UPDATE_QP SRIOV wrapper support (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix inaccurate return value of mlx4_flow_attach() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Using positive error value for unsigned (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Protect MAC address modification with the state_lock mutex (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Removed unnecessary bit operation condition (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix smatch error - possible access to a null variable (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix errors in MAC address changing when port is down (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: User prio mapping gets corrupted when changing number of channels (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Enforce irq affinity changes immediatly (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mellanox: Logging message cleanups (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Don't issue PCIe speed/width checks for VFs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Load the Eth driver first (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix slave id computation for single port VF (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Adjust port number in qp_attach wrapper when detaching (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: don't use napi_synchronize inside mlx4_en_netpoll (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Defer VF initialization till PF is fully initialized (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Preserve pci_dev_data after __mlx4_remove_one() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Add block multicast loopback support (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mthca: Use pci_enable_msix_exact() instead of pci_enable_msix() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Set proper build dependancy with vxlan (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Make buffer larger to avoid overflow warning (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix some indenting in mlx4_ib_add() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mthca: Return an error on ib_copy_to_udata() failure (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Implement vxlan ndo calls (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add support for CONFIG_DEV command (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: USe one wrapper that returns -EPERM (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: pass pci_device_id.driver_data to __mlx4_init_one during reset (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Use actual number of PCI functions (PF + VFs) for alias GUID logic (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Adapt num_vfs/probed_vf params for single port VF (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Adapt code for N-Port VF (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add utils for N-Port VFs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Add data structures to support N-Ports per VF (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4_ib: Adapt code to use caps.num_ports instead of a constant (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix a sparse endianness warning (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Don't receive packets when the napi budget == 0 (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Deregister multicast vxlan steering rules when going down (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Call dev_kfree_skb_any instead of dev_kfree_skb (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Load the IB driver when the device supports IBoE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Handle vxlan steering rules for mac address changes (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix wrong dump of the vxlan offloads device capability (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Activate RoCE/SRIOV (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix SIDR support of for UD QPs under SRIOV/RoCE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Implement IP based gids support for RoCE/SRIOV (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Add ref counting to port MAC table for RoCE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: In RoCE allow guests to have multiple GIDS (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: For RoCE, allow slaves to set the GID entry at that slave's index (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Adjust QP1 multiplexing for RoCE/SRIOV (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5_core: remove unreachable function call in module init (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Expose support for signature MR feature (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Collect signature error completion (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Support IB_WR_REG_SIG_MR (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Keep mlx5 MRs in a radix tree under device (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Remove MTT access mode from umr flags helper function (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Break up wqe handling into begin & finish routines (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Initialize mlx5_ib_qp signature-related members (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx5: Implement create_mr and destroy_mr (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: mlx4_en_verify_params() can be static (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Change Connect-X description in kconfig (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use union for BlueFlame WQE (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix sparse warning (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix selftest failing on non 10G link speed (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Replace mlx4_en_mac_to_u64() with mlx4_mac_to_u64() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Move queue stopped/waked counters to be per ring (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Pad ethernet packets smaller than 17 bytes (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Verify mlx4_en module parameters (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix UP limit in ieee_ets->prio_tc (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix bad use of dev_id (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Expose port number through sysfs (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx: Bump all Mellanox driver versions (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Fix limiting number of IRQ's instead of RSS queues (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Set number of RX rings in a utility function (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx5: Use pci_enable_msix_range() instead of pci_enable_msix() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Use pci_enable_msix_range() instead of pci_enable_msix() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Use IS_ENABLED(CONFIG_IPV6) (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Add dependency INET (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mlx4: Fix error return code (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: call gro handler for encapsulated frames (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Select PTP_1588_CLOCK (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: fix error return code in mlx4_en_get_qp() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: slight optimization of addr compare (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: mlx4 calls skb_set_hash (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx4: Implement the SIOCGHWTSTAMP ioctl (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: When marsheling uverbs path, clear unused fields (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Add user space RMPP support (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: add new ioctl to ABI to support new registration options (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Add dev_notice messages for various umad/mad registration failures (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Update module to [pr|dev]_* style print messages (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] umad: Update module to [pr|dev]_* style print messages (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] iwcm: Use a default listen backlog if needed (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Add user MR re-registration support (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] rdma/core: Add support for iWARP Port Mapper user space service (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] umad: Fix use-after-free on close (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] umad: Fix error handling (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Fix kobject leak on device register error flow (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Fix port kobject deletion during error flow (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Remove unneeded kobject_get/put calls (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Fix sparse warnings about redeclared functions (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Fix sparse warning about gfp_t use (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] Add a QP creation flag to use GFP_NOIO allocations (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Remove overload in ib_sg_dma* (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] ehca: Remove ib_sg_dma_address() and ib_sg_dma_len() overloads (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] ipath: Remove ib_sg_dma_address() and ib_sg_dma_len() overloads (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] qib: Remove ib_sg_dma_address() and ib_sg_dma_len() overloads (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] mad: Check and handle potential DMA mapping errors (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Introduce signature verbs API (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Introduce protected memory regions (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] Refactor umem to use linear SG table (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Fix unused variable warning (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] cma: Handle global/non-linklocal IPv6 addresses in cma_check_linklocal() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] cm: Fix missing unlock on error in cm_init_qp_rtr_attr() (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Make ib_addr a core IB module (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Add support for RDMA_NODE_USNIC_UDP (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [infiniband] core: Add RDMA_TRANSPORT_USNIC_UDP (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [kernel] genirq: Allow forcing cpu affinity of interrupts (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [lib] cpumask: cpumask_set_cpu_local_first to use all cores when numa node is not defined (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [lib] cpumask: Utility function to set n'th cpu - local cpu first (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [ethernet] mlx: Convert ethernet mac address declarations to use ETH_ALEN (Amir Vadai) [1107617 1107618 1107619 1107620]
-- [net] core: Add sysfs file for port number (Amir Vadai) [1107617 1107618 1107619 1107620]
-
-* Tue Oct 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-182.el7]
-- [ethernet] qlge: Remove DEFINE_PCI_DEVICE_TABLE macro use (Chad Dupuis) [1089357]
-- [ethernet] qlge: get rid of SET_ETHTOOL_OPS (Chad Dupuis) [1089357]
-- [ethernet] qlge: Convert /n to \n (Chad Dupuis) [1089357]
-- [ethernet] qlge: remove open-coded skb_cow_head (Chad Dupuis) [1089357]
-- [ethernet] qlge: Do not propaged vlan tag offloads to vlans (Chad Dupuis) [1089357]
-- [ethernet] qlge: Get rid of an redundant assignment (Chad Dupuis) [1089357]
-- [ethernet] qlge: delete non-required instances of include <linux/init.h> (Chad Dupuis) [1089357]
-- [ethernet] qlge: Fix vlan netdev features (Chad Dupuis) [1089357]
-- [ethernet] qlge: make local function static (Chad Dupuis) [1089357]
-- [ethernet] qlge: Update version to 1.00.00.34 (Chad Dupuis) [1089357]
-- [ethernet] qlge: Allow enable/disable rx/tx vlan acceleration independently (Chad Dupuis) [1089357]
-- [ethernet] qlge: Fix ethtool statistics (Chad Dupuis) [1089357]
-- [ethernet] qlge: remove unnecessary pci_set_drvdata() (Chad Dupuis) [1089357]
-- [ethernet] qlge: Update version to 1.00.00.33 (Chad Dupuis) [1089357]
-- [ethernet] qlge: Enhance nested VLAN (Q-in-Q) handling (Chad Dupuis) [1089357]
-- [ethernet] qlge: call ql_core_dump() only if dump memory was allocated (Chad Dupuis) [1089357]
-- [kernel] audit: allow user processes to log from another PID namespace (Richard Guy Briggs) [1010455]
-- [kernel] audit: anchor all pid references in the initial pid namespace (Richard Guy Briggs) [1010455]
-- [kernel] audit: convert PPIDs to the inital PID namespace (Richard Guy Briggs) [1010455]
-- [kernel] sched: declare pid_alive as inline (Richard Guy Briggs) [1010455]
-- [kernel] pid: get pid_t ppid of task in init_pid_ns (Richard Guy Briggs) [1010455]
-- [net] netlabel: shorter names for the NetLabel catmap funcs/structs (Paul Moore) [1119662]
-- [net] netlabel: fix the catmap walking functions (Paul Moore) [1119662]
-- [net] netlabel: fix the horribly broken catmap functions (Paul Moore) [1119662]
-- [net] netlabel: fix a problem when setting bits below the previously lowest bit (Paul Moore) [1119662]
-- [kernel] sched/time: fix lock inversion in thread_group_cputime (Rik van Riel) [1120307]
-- [kernel] seqlock: add irqsave variant of read_seqbegin_or_lock (Rik van Riel) [1120307]
-- [kernel] sched: make lockless sys_times kABI-friendly (Rik van Riel) [1120307]
-- [kernel] sched/cputime: atomically increment stime & utime (Rik van Riel) [1120307]
-- [kernel] time, signal: protect resource use statistics with seqlock (Rik van Riel) [1120307]
-- [kernel] exit: always reap resource stats in __exit_signal (Rik van Riel) [1120307]
-- [kernel] seqcount: Provide raw_read_seqcount() (Rik van Riel) [1120307]
-- [kernel] take read_seqbegin_or_lock() and friends to seqlock.h (Rik van Riel) [1120307]
-- [kernel] sched: change thread_group_cputime() to use for_each_thread() (Rik van Riel) [1120307]
-- [usb] usb3503: Fix a warning for using an uninitialized variable (Don Zickus) [1148954]
-- [ethernet] tg3: prevent ifup/ifdown during PCI error recovery (Ivan Vecera) [1088637]
-- [ethernet] tg3: fix return value in tg3_get_stats64 (Ivan Vecera) [1088637]
-- [ethernet] tg3: Remove DEFINE_PCI_DEVICE_TABLE macro use (Ivan Vecera) [1088637]
-- [ethernet] tg3: Modify tg3_tso_bug() to handle multiple TX rings (Ivan Vecera) [1088637]
-- [ethernet] tg3: Clear NETIF_F_TSO6 flag before doing software GSO (Ivan Vecera) [1088637]
-- [ethernet] tg3: Replace ethtool_ops::{get, set}_rxfh_indir() with {get, set}_rxfh() (Ivan Vecera) [1088637]
-- [ethernet] tg3: Update copyright and version to 3.137 (Ivan Vecera) [1088637]
-- [ethernet] tg3: Prevent page allocation failure during TSO workaround (Ivan Vecera) [1088637]
-- [ethernet] tg3: Don't modify ip header fields when doing GSO (Ivan Vecera) [1088637]
-- [ethernet] tg3: update rx_jumbo_pending ring param only when jumbo frames are enabled (Ivan Vecera) [1088637]
-- [ethernet] tg3: remove open-coded skb_cow_head (Ivan Vecera) [1088637]
-- [ethernet] tg3: remove empty MDIO bus reset function (Ivan Vecera) [1088637]
-- [ethernet] tg3: Do not include vlan acceleration features in vlan_features (Ivan Vecera) [1088637]
-- [ethernet] tg3: Call dev_kfree_skby_any instead of dev_kfree_skb (Ivan Vecera) [1088637]
-- [ethernet] tg3: Use pci_enable_msix_range() instead of pci_enable_msix() (Ivan Vecera) [1088637]
-- [ethernet] tg3: Fix deadlock in tg3_change_mtu() (Ivan Vecera) [1088637]
-- [ethernet] tg3: cleanup an error path in tg3_phy_reset_5703_4_5() (Ivan Vecera) [1088637]
-- [ethernet] tg3: delete non-required instances of include <linux/init.h> (Ivan Vecera) [1088637]
-- [ethernet] tg3: Implement the SIOCGHWTSTAMP ioctl (Ivan Vecera) [1088637]
-
-* Mon Oct 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-181.el7]
-- [tools] perf/powerpc: Adjust callchain based on DWARF debug info (Jiri Olsa) [1113736]
-- [tools] perf: Allow to specify lib compile variable for spec usage (Jiri Olsa) [879133]
-- [tools] perf/symbols: Get kernel start address by symbol name (Jiri Olsa) [1134356]
-- [tools] perf: Fix segfault in cumulative.callchain report (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add test for closing dso objects on EMFILE error (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add test for caching dso file descriptors (Jiri Olsa) [1134356]
-- [tools] perf/tests: Allow reuse of test_file function (Jiri Olsa) [1134356]
-- [tools] perf/tests: Spawn child for each test (Jiri Olsa) [1134356]
-- [tools] perf: Add dso__data_* interface descriptons (Jiri Olsa) [1134356]
-- [tools] perf: Allow to close dso fd in case of open failure (Jiri Olsa) [1134356]
-- [tools] perf: Add file size check and factor dso__data_read_offset (Jiri Olsa) [1134356]
-- [tools] perf: Cache dso data file descriptor (Jiri Olsa) [1134356]
-- [tools] perf: Add global count of opened dso objects (Jiri Olsa) [1134356]
-- [tools] perf: Add global list of opened dso objects (Jiri Olsa) [1134356]
-- [tools] perf: Add data_fd into dso object (Jiri Olsa) [1134356]
-- [tools] perf: Separate dso data related variables (Jiri Olsa) [1134356]
-- [tools] perf: Cache register accesses for unwind processing (Jiri Olsa) [1134356]
-- [tools] perf/record: Fix to honor user freq/interval properly (Jiri Olsa) [1134356]
-- [tools] perf/timechart: Reflow documentation (Jiri Olsa) [1134356]
-- [tools] perf/probe: Improve error messages in --line option (Jiri Olsa) [1134356]
-- [tools] perf/probe: Improve an error message of perf probe --vars mode (Jiri Olsa) [1134356]
-- [tools] perf/probe: Show error code and description in verbose mode (Jiri Olsa) [1134356]
-- [tools] perf/probe: Improve error message for unknown member of data structure (Jiri Olsa) [1134356]
-- [tools] perf/tests: Show the inner make output when an error happens (Jiri Olsa) [1134356]
-- [tools] perf: Emit more precise message for missing glibc static library (Jiri Olsa) [1134356]
-- [tools] perf: Add dcacheline sort (Jiri Olsa) [1134356]
-- [tools] perf: Add support to dynamically get cacheline size (Jiri Olsa) [1134356]
-- [tools] perf: Add cpumode to struct hist_entry (Jiri Olsa) [1134356]
-- [tools] perf/report: Add mem-mode documentation to report command (Jiri Olsa) [1134356]
-- [tools] perf: Update mmap2 interface with protection and flag bits (Jiri Olsa) [1134356]
-- [tools] perf/script/python: Print array argument as string (Jiri Olsa) [1134356]
-- [tools] perf: Prettify the tags/TAGS/cscope targets output (Jiri Olsa) [1134356]
-- [tools] perf: Fix pipe check regression in attr event callback (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Added support for __get_bitmask() macro (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Add options to function plugin (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Add options to plugins (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Add flag to not load event plugins (Jiri Olsa) [1134356]
-- [tools] perf/documentation: Add description for conditional branch filter (Jiri Olsa) [1134356]
-- [tools] Revert: perf: Disable PERF_RECORD_MMAP2 support (Jiri Olsa) [1134356]
-- [tools] perf: Add conditional branch filter 'cond' to perf record (Jiri Olsa) [1134356]
-- [tools] perf: Fix 'make help' message error (Jiri Olsa) [1134356]
-- [tools] perf/record: Fix poll return value propagation (Jiri Olsa) [1134356]
-- [tools] perf: Move elide bool into perf_hpp_fmt struct (Jiri Olsa) [1134356]
-- [tools] perf: Remove elide setup for SORT_MODE__MEMORY mode (Jiri Olsa) [1134356]
-- [tools] perf: Fix "==" into "=" in ui_browser__warning assignment (Jiri Olsa) [1134356]
-- [tools] perf: Allow overriding sysfs and proc finding with env var (Jiri Olsa) [1134356]
-- [tools] perf: Consider header files outside perf directory in tags target (Jiri Olsa) [1134356]
-- [tools] perf: Add warning when disabling perl scripting support due to missing devel files (Jiri Olsa) [1134356]
-- [tools] perf/trace: Warn the user when not available (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add a test case for cumulating callchains (Jiri Olsa) [1134356]
-- [tools] perf/tests: Define and use symbolic names for fake symbols (Jiri Olsa) [1134356]
-- [tools] perf: Reset output/sort order to default (Jiri Olsa) [1134356]
-- [tools] perf/ui/gtk: Fix callchain display (Jiri Olsa) [1134356]
-- [tools] perf/ui/stdio: Fix invalid percentage value of cumulated hist entries (Jiri Olsa) [1134356]
-- [tools] perf: Enable --children option by default (Jiri Olsa) [1134356]
-- [tools] perf/top: Add top.children config option (Jiri Olsa) [1134356]
-- [tools] perf/top: Add --children option (Jiri Olsa) [1134356]
-- [tools] perf/top: Convert to hist_entry_iter (Jiri Olsa) [1134356]
-- [tools] perf: Add callback function to hist_entry_iter (Jiri Olsa) [1134356]
-- [tools] perf: Do not auto-remove Children column if --fields given (Jiri Olsa) [1134356]
-- [tools] perf/report: Add report.children config option (Jiri Olsa) [1134356]
-- [tools] perf/report: Add --children option (Jiri Olsa) [1134356]
-- [tools] perf: Add more hpp helper functions (Jiri Olsa) [1134356]
-- [tools] perf: Apply percent-limit to cumulative percentage (Jiri Olsa) [1134356]
-- [tools] perf/ui/gtk: Add support to accumulated hist stat (Jiri Olsa) [1134356]
-- [tools] perf/ui/browser: Add support to accumulated hist stat (Jiri Olsa) [1134356]
-- [tools] perf/ui/hist: Add support to accumulated hist stat (Jiri Olsa) [1134356]
-- [tools] perf: Save callchain info for each cumulative entry (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Add callchain_cursor_snapshot() (Jiri Olsa) [1134356]
-- [tools] perf/report: Cache cumulative callchains (Jiri Olsa) [1134356]
-- [tools] perf: Update cpumode for each cumulative entry (Jiri Olsa) [1134356]
-- [tools] perf/hists: Accumulate hist entry stat based on the callchain (Jiri Olsa) [1134356]
-- [tools] perf/hists: Check if accumulated when adding a hist entry (Jiri Olsa) [1134356]
-- [tools] perf/hists: Add support for accumulated stat of hist entry (Jiri Olsa) [1134356]
-- [tools] perf: Introduce struct hist_entry_iter (Jiri Olsa) [1134356]
-- [tools] perf: Introduce hists__inc_nr_samples() (Jiri Olsa) [1134356]
-- [tools] perf: Add automatic remapping of Android libraries (Jiri Olsa) [1134356]
-- [tools] perf: Add cat as fallback pager (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add a testcase for histogram output sorting (Jiri Olsa) [1134356]
-- [tools] perf/tests: Factor out print_hists_*() (Jiri Olsa) [1134356]
-- [tools] perf: Introduce reset_output_field() (Jiri Olsa) [1134356]
-- [tools] perf: Get rid of obsolete hist_entry__sort_list (Jiri Olsa) [1134356]
-- [tools] perf/hists: Reset width of output fields with header length (Jiri Olsa) [1134356]
-- [tools] perf: Skip elided sort entries (Jiri Olsa) [1134356]
-- [tools] perf/top: Add --fields option to specify output fields (Jiri Olsa) [1134356]
-- [tools] perf/report/tui: Fix a bug when --fields/sort is given (Jiri Olsa) [1134356]
-- [tools] perf: Add ->sort() member to struct sort_entry (Jiri Olsa) [1134356]
-- [tools] perf/report: Add -F option to specify output fields (Jiri Olsa) [1134356]
-- [tools] perf: Call perf_hpp__init() before setting up GUI browsers (Jiri Olsa) [1134356]
-- [tools] perf: Consolidate management of default sort orders (Jiri Olsa) [1134356]
-- [tools] perf: Allow hpp fields to be sort keys (Jiri Olsa) [1134356]
-- [tools] perf/ui: Get rid of callback from __hpp__fmt() (Jiri Olsa) [1134356]
-- [tools] perf: Consolidate output field handling to hpp format routines (Jiri Olsa) [1134356]
-- [tools] perf: Use hpp formats to sort final output (Jiri Olsa) [1134356]
-- [tools] perf: Support event grouping in hpp ->sort() (Jiri Olsa) [1134356]
-- [tools] perf: Use hpp formats to sort hist entries (Jiri Olsa) [1134356]
-- [tools] perf: Convert sort entries to hpp formats (Jiri Olsa) [1134356]
-- [tools] perf: Add ->cmp(), ->collapse() and ->sort() to perf_hpp_fmt (Jiri Olsa) [1134356]
-- [tools] perf: Add libdw DWARF post unwind support for ARM (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add dwarf unwind test on ARM (Jiri Olsa) [1134356]
-- [tools] perf/tests: Introduce perf_regs_load function on ARM (Jiri Olsa) [1134356]
-- [tools] perf: Consolidate types.h for ARM and ARM64 (Jiri Olsa) [1134356]
-- [tools] perf/session: Fix possible null pointer dereference in session.c (Jiri Olsa) [1134356]
-- [tools] perf/sched: Cleanup, remove unused variables in map_switch_event() (Jiri Olsa) [1134356]
-- [tools] perf/sched: Remove nr_state_machine_bugs in perf latency (Jiri Olsa) [1134356]
-- [tools] perf: Remove usage of trace_sched_wakeup(.success) (Jiri Olsa) [1134356]
-- [tools] perf: Use tid for finding thread (Jiri Olsa) [1134356]
-- [tools] perf: Get rid of on_exit() feature test (Jiri Olsa) [1134356]
-- [tools] perf/record: Propagate exit status of a command line workload (Jiri Olsa) [1134356]
-- [tools] perf: Clarify the output of perf sched map (Jiri Olsa) [1134356]
-- [tools] perf: Adapt the TASK_STATE_TO_CHAR_STR to new value in kernel space (Jiri Olsa) [1134356]
-- [tools] perf: Add missing event for perf sched record (Jiri Olsa) [1134356]
-- [tools] perf: Move ACCESS_ONCE from perf.h header (Jiri Olsa) [1134356]
-- [tools] perf: Move sys_perf_event_open function from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Move syscall and arch specific defines from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Move perf_call_graph_mode enum from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Move sample data structures from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove PR_TASK_PERF_EVENTS_* from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove asmlinkage define from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove min define from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove unlikely define from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Remove MAX_COUNTERS define from perf.h (Jiri Olsa) [1134356]
-- [tools] perf: Consolidate types.h (Jiri Olsa) [1134356]
-- [tools] perf: Unify export.h (Jiri Olsa) [1134356]
-- [tools] perf/arm64: Wire up perf_regs and unwind support (Jiri Olsa) [1134356]
-- [tools] perf: Move u64_swap union (Jiri Olsa) [1134356]
-- [tools] perf/tests: add a test of kvm-390 trace event (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add numeric identifier to evlist_test (Jiri Olsa) [1134356]
-- [tools] perf: Parse tracepoints with '-' in system name (Jiri Olsa) [1134356]
-- [tools] perf: Handle EINTR error for readn/writen (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add map groups sharing with thread object test (Jiri Olsa) [1134356]
-- [tools] perf: Share map_groups among threads of the same group (Jiri Olsa) [1134356]
-- [tools] perf: Reference count map_groups objects (Jiri Olsa) [1134356]
-- [tools] perf: Allocate thread map_groups's dynamically (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add thread maps lookup automated tests (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add a test case for hists filtering (Jiri Olsa) [1134356]
-- [tools] perf/tests: Factor out fake_setup_machine() (Jiri Olsa) [1134356]
-- [tools] perf/hists/tui: Count callchain rows separately (Jiri Olsa) [1134356]
-- [tools] perf/top/tui: Update nr_entries properly after a filter is applied (Jiri Olsa) [1134356]
-- [tools] perf/ui/tui: Rename hist_browser__update_nr_entries() (Jiri Olsa) [1134356]
-- [tools] perf/ui/tui: Fix off-by-one in hist_browser__update_nr_entries() (Jiri Olsa) [1134356]
-- [tools] perf/hists: Add missing update on filtered stats in hists__decay_entries() (Jiri Olsa) [1134356]
-- [tools] perf: Account entry stats when it's added to the output tree (Jiri Olsa) [1134356]
-- [tools] perf/hists: Collapse expanded callchains after filter is applied (Jiri Olsa) [1134356]
-- [tools] perf/hists: Add a couple of hists stat helper functions (Jiri Olsa) [1134356]
-- [tools] perf/hists: Move column length calculation out of hists__inc_stats() (Jiri Olsa) [1134356]
-- [tools] perf/hists: Rename hists__inc_stats() (Jiri Olsa) [1134356]
-- [tools] perf/report: Count number of entries separately (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Add generic report parse callchain callback function (Jiri Olsa) [1134356]
-- [tools] perf/kmem: Utilize the new generic cpunode_map (Jiri Olsa) [1134356]
-- [tools] perf: Use cpu/possible instead of cpu/kernel_max (Jiri Olsa) [1134356]
-- [tools] perf: Allow ability to map cpus to nodes easily (Jiri Olsa) [1134356]
-- [tools] perf: Fix pmu object compilation error (Jiri Olsa) [1134356]
-- [tools] perf/sched: Introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf/lock: Introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf/mem: Introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf/kmem: Introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf: Show absolute percentage by default (Jiri Olsa) [1134356]
-- [tools] perf/ui/tui: Add 'F' hotkey to toggle percentage output (Jiri Olsa) [1134356]
-- [tools] perf: Add hist.percentage config option (Jiri Olsa) [1134356]
-- [tools] perf/diff: Add --percentage option (Jiri Olsa) [1134356]
-- [tools] perf/top: Add --percentage option (Jiri Olsa) [1134356]
-- [tools] perf/report: Add --percentage option (Jiri Olsa) [1134356]
-- [tools] perf/hists: Add support for showing relative percentage (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix perf probe to find correct variable DIE (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix a segfault if asked for variable it doesn't find (Jiri Olsa) [1134356]
-- [tools] perf/tests/x86: Fix stack map lookup in dwarf unwind test (Jiri Olsa) [1134356]
-- [tools] perf/x86: Fix perf to use non-executable stack, again (Jiri Olsa) [1134356]
-- [tools] perf: Remove extra '/' character in events file path (Jiri Olsa) [1134356]
-- [tools] perf/machine: Search for modules in s/lib/modules/s (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add static build make test (Jiri Olsa) [1134356]
-- [tools] perf: Fix bfd dependency libraries detection (Jiri Olsa) [1134356]
-- [tools] perf: Use LDFLAGS instead of ALL_LDFLAGS (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Fix memory leak in pretty_print() (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Fix backward compatibility macros for pevent filter enums (Jiri Olsa) [1134356]
-- [tools] perf: Disable libdw unwind for all but x86 arch (Jiri Olsa) [1134356]
-- [tools] perf/tests/x86: Fix memory leak in sample_ustack() (Jiri Olsa) [1134356]
-- [tools] perf: Improve error reporting (Jiri Olsa) [1134356]
-- [tools] perf: Adjust symbols in VDSO (Jiri Olsa) [1134356]
-- [tools] perf/kvm: Fix 'Min time' counting in report command (Jiri Olsa) [1134356]
-- [tools] perf: Instead of redirecting flex output, use -o (Jiri Olsa) [1134356]
-- [tools] perf: Fix double free in perf test 21 (code-reading.c) (Jiri Olsa) [1134356]
-- [tools] perf/stat: Initialize statistics correctly (Jiri Olsa) [1134356]
-- [tools] perf/bench: Set more defaults in the 'numa' suite (Jiri Olsa) [1134356]
-- [tools] perf/bench: Update manpage to mention numa and futex (Jiri Olsa) [1134356]
-- [tools] perf/probe: Use dwarf_getcfi_elf() instead of dwarf_getcfi() (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix to handle errors in line_range searching (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix --line option behavior (Jiri Olsa) [1134356]
-- [tools] perf: Pick up libdw without explicit LIBDW_DIR (Jiri Olsa) [1134356]
-- [tools] perf/callchains: Disable unwind libraries when libelf isn't found (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Do not call warning() directly (Jiri Olsa) [1134356]
-- [tools] perf/lib/traceevent: Print event name when show warning if possible (Jiri Olsa) [1134356]
-- [tools] perf/top: Fix documentation of invalid -s option (Jiri Olsa) [1134356]
-- [tools] perf: Allow building for tile (Jiri Olsa) [1134356]
-- [tools] perf: Remove unused simple_strtoul() function (Jiri Olsa) [1134356]
-- [tools] perf: Update some code references in design.txt (Jiri Olsa) [1134356]
-- [tools] perf/evsel: Update function names in debug messages (Jiri Olsa) [1134356]
-- [tools] perf: Remove thread__find_map function (Jiri Olsa) [1134356]
-- [tools] perf/annotate: Print the evsel name in the stdio output (Jiri Olsa) [1134356]
-- [tools] perf/report: Use ui__has_annotation() (Jiri Olsa) [1134356]
-- [tools] perf: Fix memory leak when synthesizing thread records (Jiri Olsa) [1134356]
-- [tools] perf: Use tid in mmap/mmap2 events to find maps (Jiri Olsa) [1134356]
-- [tools] perf/report: Merge al->filtered with hist_entry->filtered (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Apply all filters to an addr_location (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Record the reason for filtering an address_location (Jiri Olsa) [1134356]
-- [tools] perf/sched: Fixup header alignment in 'latency' output (Jiri Olsa) [1134356]
-- [tools] perf/timechart: Fix off-by-one error in 'record' argv handling (Jiri Olsa) [1134356]
-- [tools] perf/machine: Factor machine__find_thread to take tid argument (Jiri Olsa) [1134356]
-- [tools] perf: Speed up thread map generation (Jiri Olsa) [1134356]
-- [tools] perf/kvm: introduce --list-cmds for use by scripts (Jiri Olsa) [1134356]
-- [tools] perf/ui/hists: Pass evsel to hpp->header/width functions explicitly (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Introduce thread__find_cpumode_addr_location (Jiri Olsa) [1134356]
-- [tools] perf/session: Change header.misc dump from decimal to hex (Jiri Olsa) [1134356]
-- [tools] perf/ui/tui: Reuse generic __hpp__fmt() code (Jiri Olsa) [1134356]
-- [tools] perf/ui/hists: Pass struct hpp to print functions (Jiri Olsa) [1134356]
-- [tools] perf/ui/gtk: Reuse generic __hpp__fmt() code (Jiri Olsa) [1134356]
-- [tools] perf/ui/stdio: Fix invalid output on event group report (Jiri Olsa) [1134356]
-- [tools] perf: Fix synthesizing mmaps for threads (Jiri Olsa) [1134356]
-- [tools] perf/probe: Clarify x86 register naming for perf probe (Jiri Olsa) [1134356]
-- [tools] perf/mem: Clarify load-latency in documentation (Jiri Olsa) [1134356]
-- [tools] perf/bench: Add futex-requeue microbenchmark (Jiri Olsa) [1134356]
-- [tools] perf/bench: Add futex-wake microbenchmark (Jiri Olsa) [1134356]
-- [tools] perf/bench: Add futex-hash microbenchmark (Jiri Olsa) [1134356]
-- [tools] perf: Disable user-space callchain/stack dumps for function trace events (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Check compatible symtab type before loading dso (Jiri Olsa) [1134356]
-- [tools] perf/symbols: Check return value of filename__read_debuglink() (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add NO_LIBDW_DWARF_UNWIND make test (Jiri Olsa) [1134356]
-- [tools] perf: Setup default dwarf post unwinder (Jiri Olsa) [1134356]
-- [tools] perf: Add libdw DWARF post unwind support (Jiri Olsa) [1134356]
-- [tools] perf: Add feature check for libdw dwarf unwind (Jiri Olsa) [1134356]
-- [tools] perf: Warn the user about how to enable libunwind support (Jiri Olsa) [1134356]
-- [tools] perf: Add variable display for VF make output (Jiri Olsa) [1134356]
-- [tools] perf: Factor features display code (Jiri Olsa) [1134356]
-- [tools] perf: Fix bison OUTPUT directories dependency (Jiri Olsa) [1134356]
-- [tools] perf/tests: Add pmu-bison.o make test (Jiri Olsa) [1134356]
-- [tools] perf/tests: Fix *.o make tests (Jiri Olsa) [1134356]
-- [tools] perf/probe: Support distro-style debuginfo for uprobe (Jiri Olsa) [1134356]
-- [tools] perf/probe: Allow to add events on the local functions (Jiri Olsa) [1134356]
-- [tools] perf/probe: Show source-level or symbol-level info for uprobes (Jiri Olsa) [1134356]
-- [tools] perf/probe: Show appropriate symbol for ref_reloc_sym based kprobes (Jiri Olsa) [1134356]
-- [tools] perf/probe: Find given address from offline dwarf (Jiri Olsa) [1134356]
-- [tools] perf/probe: Use ref_reloc_sym based address instead of the symbol name (Jiri Olsa) [1134356]
-- [tools] perf/probe: Show in what binaries/modules probes are set (Jiri Olsa) [1134356]
-- [tools] perf/probe: Unify show_available_functions for uprobes/kprobes (Jiri Olsa) [1134356]
-- [tools] perf/probe: Replace line_list with intlist (Jiri Olsa) [1134356]
-- [tools] perf/probe: Remove incorrect symbol check for --list (Jiri Olsa) [1134356]
-- [tools] perf/probe: Fix to do exit call for symbol maps (Jiri Olsa) [1134356]
-- [tools] perf/symbols: No need to export dso__first_symbol (Jiri Olsa) [1134356]
-- [tools] perf: Drop prefetch.h (Jiri Olsa) [1134356]
-- [tools] perf: Move hash.h header (Jiri Olsa) [1134356]
-- [tools] perf: Move fs.* to lib/api/fs/ (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Separate perf_reg_value function in perf_regs object (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Introduce HAVE_DWARF_UNWIND_SUPPORT macro (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Rename unwind__arch_reg_id into libunwind__arch_reg_id (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Separate libunwind code to special object (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Add mask into struct regs_dump (Jiri Olsa) [1134356]
-- [tools] perf/callchain: Do not report zero address in unwind (Jiri Olsa) [1134356]
-- [tools] perf: Fix dwarf unwind max_stack processing (Jiri Olsa) [1134356]
-- [tools] perf/tests/x86: Add dwarf unwind test (Jiri Olsa) [1134356]
-- [tools] perf/tests/x86: Introduce perf_regs_load function (Jiri Olsa) [1134356]
-- [tools] perf: Fix memory leak in event_format__print function (Jiri Olsa) [1134356]
-- [tools] perf/record: Add readable output for callchain debug (Jiri Olsa) [1134356]
-- [tools] perf: Add call-graph option support into .perfconfig (Jiri Olsa) [1134356]
-- [tools] perf: Put proper period for for samples without PERIOD sample_type (Jiri Olsa) [1134356]
-- [tools] perf/report: Remove some needless container_of usage (Jiri Olsa) [1134356]
-- [tools] perf: Shorten sample symbol resolving function signature (Jiri Olsa) [1134356]
-- [tools] perf: Shorten sample symbol resolving function signature (Jiri Olsa) [1134356]
-- [tools] perf/report: Use al->cpumode where applicable (Jiri Olsa) [1134356]
-- [x86] perf/intel: Avoid spamming kernel log for BTS buffer failure (Jiri Olsa) [1134356]
-- [x86] perf/intel: Protect LBR and extra_regs against KVM lying (Jiri Olsa) [1134356]
-- [kernel] perf: Fix lockdep warning on process exit (Jiri Olsa) [1134356]
-- [x86] perf/intel: Use proper dTLB-load-misses event on IvyBridge (Jiri Olsa) [1134356]
-- [kernel] Revert: perf: Always destroy groups on exit (Jiri Olsa) [1134356]
-- [kernel] perf: Do not allow optimized switch for non-cloned events (Jiri Olsa) [1134356]
-- [kernel] perf: Pass protection and flags bits through mmap2 interface (Jiri Olsa) [1134356]
-- [kernel] perf: Differentiate exec() and non-exec() comm events (Jiri Olsa) [1134356]
-- [kernel] perf: Fix perf_event_comm() vs. exec() assumption (Jiri Olsa) [1134356]
-- [x86] perf: Add conditional branch filtering support (Jiri Olsa) [1134356]
-- [kernel] perf: Add new conditional branch filter 'PERF_SAMPLE_BRANCH_COND' (Jiri Olsa) [1134356]
-- [x86] perf: Use common PMU interrupt disabled code (Jiri Olsa) [1134356]
-- [kernel] perf: Disable sampled events if no PMU interrupt (Jiri Olsa) [1134356]
-- [kernel] perf: Fix use after free in perf_remove_from_context() (Jiri Olsa) [1134356]
-- [kernel] perf/events/core: Drop unused variable after cleanup (Jiri Olsa) [1134356]
-- [x86] perf/intel: fix Haswell precise store data source encoding (Jiri Olsa) [1134356]
-- [kernel] perf: Fix perf_event_open(.flags) test (Jiri Olsa) [1134356]
-- [kernel] perf: Simplify perf_event_exit_task_context() (Jiri Olsa) [1134356]
-- [kernel] perf: Rework free paths (Jiri Olsa) [1134356]
-- [kernel] perf: Validate locking assumption (Jiri Olsa) [1134356]
-- [kernel] perf: Always destroy groups on exit (Jiri Olsa) [1134356]
-- [kernel] perf: Ensure consistent inherit state in groups (Jiri Olsa) [1134356]
-- [x86] perf: Export perf_assign_events() (Jiri Olsa) [1134356]
-- [kernel] perf: Allow building PMU drivers as modules (Jiri Olsa) [1134356]
-- [kernel] perf: Prevent false warning in perf_swevent_add (Jiri Olsa) [1134356]
-- [kernel] perf: Limit perf_event_attr::sample_period to 63 bits (Jiri Olsa) [1134356]
-- [kernel] perf: Fix perf_event_init_context() (Jiri Olsa) [1134356]
-- [kernel] perf: Fix race in removing an event (Jiri Olsa) [1134356]
-- [x86] perf: Fix RAPL rdmsrl_safe() usage (Jiri Olsa) [1134356]
-- [x86] perf/intel: Use rdmsrl_safe() when initializing RAPL PMU (Jiri Olsa) [1134356]
-- [x86] perf/intel/rapl: Fix CPU hotplug callback registration (Jiri Olsa) [1134356]
-- [x86] perf: Enable DRAM RAPL support on Intel Haswell (Jiri Olsa) [1134356]
-- [kernel] perf: Optimize group_sched_in() (Jiri Olsa) [1134356]
-- [x86] perf: Add a few more comments (Jiri Olsa) [1134356]
-- [kernel] perf: Remove redundant PMU assignment (Jiri Olsa) [1134356]
-- [kernel] perf: Fix prototype of find_pmu_context() (Jiri Olsa) [1134356]
-- [x86] perf: Warn to early_printk() in case irq_work is too slow (Jiri Olsa) [1134356]
-- [x86] perf/p4: Block PMIs on init to prevent a stream of unkown NMIs (Jiri Olsa) [1134356]
-- [x86] perf/p4: Fix counter corruption when using lots of perf groups (Jiri Olsa) [1134356]
-- [x86] perf: Push the duration-logging printk() to IRQ context (Jiri Olsa) [1134356]
-- [kernel] workqueue: apply __WQ_ORDERED to create_singlethread_workqueue() (Tomas Henzl) [1131563]
-- [md] raid10: always initialise ->state on newly allocated r10_bio (Jes Sorensen) [1085530]
-- [md] raid10: avoid memory leak on error path during reshape (Jes Sorensen) [1085530]
-- [md] raid10: Fix memory leak when raid10 reshape completes (Jes Sorensen) [1085530]
-- [md] raid10: fix memory leak when reshaping a RAID10 (Jes Sorensen) [1085530]
-- [md] raid5: avoid livelock caused by non-aligned writes (Jes Sorensen) [1085530]
-- [md] don't allow bitmap file to be added to raid0/linear (Jes Sorensen) [1085530]
-- [md] raid0: check for bitmap compatability when changing raid levels (Jes Sorensen) [1085530 1126348]
-- [md] Recovery speed is wrong (Jes Sorensen) [1085530 1128517]
-- [md] disable probing for md devices 512 and over (Jes Sorensen) [1085530]
-- [md] raid1, raid10: always abort recover on write error (Jes Sorensen) [1085530]
-- [md] flush writes before starting a recovery (Jes Sorensen) [1085530 1115749]
-- [md] make sure GET_ARRAY_INFO ioctl reports correct "clean" status (Jes Sorensen) [1085530]
-- [md] raid5: speedup sync_request processing (Jes Sorensen) [1085530]
-- [md] raid5: deadlock between retry_aligned_read with barrier io (Jes Sorensen) [1085530]
-- [md] raid5: add an option to avoid copy data from bio to stripe cache (Jes Sorensen) [1085530]
-- [md] bitmap: remove confusing code from filemap_get_page (Jes Sorensen) [1085530]
-- [md] raid5: avoid release list until last reference of the stripe (Jes Sorensen) [1085530]
-- [md] md_clear_badblocks should return an error code on failure (Jes Sorensen) [1085530]
-- [md] raid56: Don't perform reads to support writes until stripe is ready (Jes Sorensen) [1085530]
-- [md] refuse to change shape of array if it is active but read-only (Jes Sorensen) [1085530]
-- [md] always set MD_RECOVERY_INTR when interrupting a reshape thread (Jes Sorensen) [1085530]
-- [md] always set MD_RECOVERY_INTR when aborting a reshape or other "resync" (Jes Sorensen) [1085530]
-- [md] avoid possible spinning md thread at shutdown (Jes Sorensen) [1085530]
-- [md] raid5: fix a race of stripe count check (Jes Sorensen) [1085530]
-- [md] raid5: get_active_stripe avoids device_lock (Jes Sorensen) [1085530]
-- [md] raid5: make_request does less prepare wait (Jes Sorensen) [1085530]
-- [md] avoid oops on unload if some process is in poll or select (Jes Sorensen) [1085530]
-- [md] raid1: r1buf_pool_alloc, free allocate pages when subsequent allocation fails (Jes Sorensen) [1085530]
-- [md] bitmap: don't abuse i_writecount for bitmap files (Jes Sorensen) [1085530]
-- [md] raid5: Fix CPU hotplug callback registration (Jes Sorensen) [1085530]
-- [md] raid1: restore ability for check and repair to fix read errors (Jes Sorensen) [1085530]
-- [md] raid5: close recently introduced race in stripe_head management (Jes Sorensen) [1085530]
-- [md] raid5: fix long-standing problem with bitmap handling on write failure (Jes Sorensen) [1085530]
-- [md] check command validity early in md_ioctl() (Jes Sorensen) [1085530]
-- [md] ensure metadata is writen after raid level change (Jes Sorensen) [1085530]
-- [md] raid10: avoid fullsync when not necessary (Jes Sorensen) [1085530]
-- [md] allow a partially recovered device to be hot-added to an array (Jes Sorensen) [1085530]
-- [md] fix problem when adding device to read-only array with bitmap (Jes Sorensen) [1085530]
-- [md] raid10: fix bug when raid10 recovery fails to recover a block (Jes Sorensen) [1085530]
-- [md] raid5: fix a recently broken BUG_ON() (Jes Sorensen) [1085530]
-- [md] raid10: fix two bugs in handling of known-bad-blocks (Jes Sorensen) [1085530]
-- [md] raid5: Fix possible confusion when multiple write errors occur (Jes Sorensen) [1085530]
-- [Documentation] fix some typos in md documentation (Jes Sorensen) [1085530]
-- [md] raid5: fix newly-broken locking in get_active_stripe (Jes Sorensen) [1085530]
-- [md] test mddev->flags more safely in md_check_recovery (Jes Sorensen) [1085530]
-- [md] raid5: fix new memory-reference bug in alloc_thread_groups (Jes Sorensen) [1085530]
-- [block] submit_bio_wait() conversions (Jes Sorensen) [1085530]
-- [md] raid5: Use conf->device_lock protect changing of multi-thread resources (Jes Sorensen) [1085530]
-- [md] raid5: Before freeing old multi-thread worker, it should flush them (Jes Sorensen) [1085530]
-- [md] raid5: For stripe with R5_ReadNoMerge, we replace REQ_FLUSH with REQ_NOMERGE (Jes Sorensen) [1085530]
-- [md] raid1: Add some macros to make code clearly (Jes Sorensen) [1085530]
-- [md] raid1: Replace raise_barrier/lower_barrier with freeze_array/unfreeze_array when reconfiguring the array (Jes Sorensen) [1085530]
-- [md] raid1: Add a field array_frozen to indicate whether raid in freeze state (Jes Sorensen) [1085530]
-- [md] Convert use of typedef ctl_table to struct ctl_table (Jes Sorensen) [1085530]
-- [md] raid5: avoid deadlock when raid5 array has unack badblocks during md_stop_writes (Jes Sorensen) [1085530]
-- [md] use MD_RECOVERY_INTR instead of kthread_should_stop in resync thread (Jes Sorensen) [1085530]
-- [md] fix some places where mddev_lock return value is not checked (Jes Sorensen) [1085530]
-- [md] raid5: Retry R5_ReadNoMerge flag when hit a read error (Jes Sorensen) [1085530]
-- [md] raid5: relieve lock contention in get_active_stripe() (Jes Sorensen) [1085530]
-- [md] raid5: relieve lock contention in get_active_stripe() (Jes Sorensen) [1085530]
-- [md] raid5: add proper locking to error path of raid5_start_reshape (Jes Sorensen) [1085530]
-- [kernel] wait: add wait_event_cmd() (Jes Sorensen) [1085530]
-- [md] raid5: Use slow_path to release stripe when mddev->thread is null (Jes Sorensen) [1085530]
-- [block] Consolidate duplicated bio_trim() implementations (Jes Sorensen) [1085530]
-- [md] raid5: fix "distingush" typo (Jes Sorensen) [1085530]
-- [md] raid5: only wakeup necessary threads (Jes Sorensen) [1085530]
-- [md] raid5: flush out all pending requests before proceeding with reshape (Jes Sorensen) [1085530]
-- [md] raid5: use seqcount to protect access to shape in make_request (Jes Sorensen) [1085530]
-- [md] raid5: sysfs entry to control worker thread number (Jes Sorensen) [1085530]
-- [md] raid5: offload stripe handle to workqueue (Jes Sorensen) [1085530]
-- [md] raid5: fix stripe release order (Jes Sorensen) [1085530]
-- [md] raid5: make release_stripe lockless (Jes Sorensen) [1085530]
-- [md] Don't test all of mddev->flags at once (Jes Sorensen) [1085530]
-- [md] Fix apparent cut-and-paste error in super_90_validate (Jes Sorensen) [1085530]
-- [md] fix safe_mode buglet (Jes Sorensen) [1085530]
-- [md] don't call md_allow_write in get_bitmap_file (Jes Sorensen) [1085530]
-- [lib] raid6: add ARM-NEON accelerated syndrome calculation (Jes Sorensen) [1085530]
-- [kernel] wait: Make the __wait_event*() interface more friendly (Jes Sorensen) [1085530]
-- [kernel] sched/wait: Introduce ___wait_event() (Jes Sorensen) [1085530]
-
-* Fri Oct 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-180.el7]
-- [net] ethtool: Check that reserved fields of struct ethtool_rxfh are 0 (Ivan Vecera) [1138823]
-- [net] ethtool: Replace ethtool_ops::{get, set}_rxfh_indir() with {get, set}_rxfh() (Ivan Vecera) [1138823]
-- [net] ethtool: constify array pointer parameters to ethtool_ops::set_rxfh (Ivan Vecera) [1138823]
-- [net] ethtool: Disallow ETHTOOL_SRSSH with both indir table and hash key unchanged (Ivan Vecera) [1138823]
-- [net] ethtool: Expand documentation of ethtool_ops::{get, set}_rxfh() (Ivan Vecera) [1138823]
-- [net] ethtool: Improve explanation of the two arrays following struct ethtool_rxfh (Ivan Vecera) [1138823]
-- [net] ethtool: Name the 'no change' value for setting RSS hash key but not indir table (Ivan Vecera) [1138823]
-- [net] ethtool: Return immediately on error in ethtool_copy_validate_indir() (Ivan Vecera) [1138823]
-- [net] ethtool: exit the loop when invalid index occurs (Ivan Vecera) [1138823]
-- [net] ethtool: Support for configurable RSS hash key (Ivan Vecera) [1138823]
-- [lib] reciprocal_divide: update/correction of the algorithm (Jiri Benc) [1140665]
-- [net] introduce reciprocal_scale helper and convert users (Jiri Benc) [1140665]
-- [net] random32: add prandom_u32_max and convert open coded users (Jiri Benc) [1140665]
-- [net] bpf: do not use reciprocal divide (Jiri Benc) [1140665]
-- [net] genetlink: remove superfluous assignment (Jiri Benc) [1140656]
-- [scsi] pmcraid: use proper genetlink multicast API (Jiri Benc) [1140656]
-- [net] genetlink: Fix uninitialized variable in genl_validate_assign_mc_groups() (Jiri Benc) [1140656]
-- [net] genetlink: fix genlmsg_multicast() bug (Jiri Benc) [1140656]
-- [net] genetlink: make multicast groups const, prevent abuse (Jiri Benc) [1140656]
-- [net] genetlink: pass family to functions using groups (Jiri Benc) [1140656]
-- [net] genetlink: add and use genl_set_err() (Jiri Benc) [1140656]
-- [net] genetlink: remove family pointer from genl_multicast_group (Jiri Benc) [1140656]
-- [net] genetlink: remove genl_unregister_mc_group() (Jiri Benc) [1140656]
-- [fs] quota: use proper genetlink multicast APIs (Jiri Benc) [1140656]
-- [net] drop_monitor: use proper genetlink multicast APIs (Jiri Benc) [1140656]
-- [net] genetlink: only pass array to genl_register_family_with_ops() (Jiri Benc) [1140656]
-- [net] genetlink: rename shadowed variable (Jiri Benc) [1140656]
-- [net] genetlink: unify registration functions (Jiri Benc) [1140656]
-- [net] genetlink: make genl_ops flags a u8 and move to end (Jiri Benc) [1140656]
-- [net] genetlink: make all genl_ops users const (Jiri Benc) [1140656]
-- [net] genetlink: allow making ops const (Jiri Benc) [1140656]
-- [net] genetlink: register family ops as array (Jiri Benc) [1140656]
-- [net] genetlink: remove genl_register_ops/genl_unregister_ops (Jiri Benc) [1140656]
-- [net] ieee802154: use genl_register_family_with_ops() (Jiri Benc) [1140656]
-- [kernel] taskstats: use genl_register_family_with_ops() (Jiri Benc) [1140656]
-- [net] genetlink: Remove extern from function prototypes (Jiri Benc) [1140656]
-- [net] genetlink: fix usage of NLM_F_EXCL or NLM_F_REPLACE (Jiri Benc) [1140656]
-- [net] udp: Fix inverted NAPI_GRO_CB(skb)->flush test (Florian Westphal) [1131999]
-- [net] gre: gro: Fix a bug that breaks the forwarding path (Florian Westphal) [1131999]
-- [net] gro: reset skb->truesize in napi_reuse_skb() (Florian Westphal) [1131999]
-- [net] netdev_features: work around NETIF_F kabi breakage (Florian Westphal) [1131999]
-- [net] l2tp: Enable checksum unnecessary conversions for l2tp/UDP sockets (Florian Westphal) [1131999]
-- [net] vxlan: Enable checksum unnecessary conversions for vxlan/UDP sockets (Florian Westphal) [1131999]
-- [net] gre: Add support for checksum unnecessary conversions (Florian Westphal) [1131999]
-- [net] udp: Add support for doing checksum unnecessary conversion (Florian Westphal) [1131999]
-- [net] Infrastructure for checksum unnecessary conversions (Florian Westphal) [1131999]
-- [net] Support for csum_bad in skbuff (Florian Westphal) [1131999]
-- [net] sctp: Change sctp to implement csum_levels (Florian Westphal) [1131999]
-- [net] Allow GRO to use and set levels of checksum unnecessary (Florian Westphal) [1131999]
-- [net] Clarification of CHECKSUM_UNNECESSARY (Florian Westphal) [1131999]
-- [net] skbuff: improve comment on checksumming (Florian Westphal) [1131999]
-- [net] skbuff: Use ALIGN macro instead of open coding it (Florian Westphal) [1131999]
-- [net] Allocate a new 16 bits for flags in skbuff (Florian Westphal) [1131999]
-- [net] gre: When GRE csum is present count as encap layer wrt csum (Florian Westphal) [1131999]
-- [net] udp: additional GRO support (Florian Westphal) [1131999]
-- [net] tcp: Call skb_gro_checksum_validate (Florian Westphal) [1131999]
-- [net] ipv6: gro: fix CHECKSUM_COMPLETE support (Florian Westphal) [1131999]
-- [net] gre: call skb_gro_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] add gro_compute_pseudo functions (Florian Westphal) [1131999]
-- [net] skb_gro_checksum_* functions (Florian Westphal) [1131999]
-- [net] fix setting csum_start in skb_segment() (Florian Westphal) [1131999]
-- [net] vxlan: Checksum fixes (Florian Westphal) [1131999]
-- [net] add skb_pop_rcv_encapsulation (Florian Westphal) [1131999]
-- [net] udp: call __skb_checksum_complete when doing full checksum (Florian Westphal) [1131999]
-- [net] Fix save software checksum complete (Florian Westphal) [1131999]
-- [net] Fix GSO constants to match NETIF flags (Florian Westphal) [1131999]
-- [net] Add skb_gro_postpull_rcsum to udp and vxlan (Florian Westphal) [1131999]
-- [net] Save software checksum complete (Florian Westphal) [1131999]
-- [net] Preserve CHECKSUM_COMPLETE at validation (Florian Westphal) [1131999]
-- [net] vxlan: Add support for UDP checksums (v4 sending, v6 zero csums) (Florian Westphal) [1131999]
-- [net] gre: Call gso_make_checksum (Florian Westphal) [1131999]
-- [net] gre: simplify GRE header length calculation in gre_gso_segment() (Florian Westphal) [1131999]
-- [net] Add GSO support for UDP tunnels with checksum (Florian Westphal) [1131999]
-- [net] tcp: Call gso_make_checksum (Florian Westphal) [1131999]
-- [net] Support for multiple checksums with gso (Florian Westphal) [1131999]
-- [net] l2tp: call udp{6}_set_csum (Florian Westphal) [1131999]
-- [net] udp: Generic functions to set checksum (Florian Westphal) [1131999]
-- [net] l2tp: Add support for zero IPv6 checksums (Florian Westphal) [1131999]
-- [net] udp: Make enabling of zero UDP6 csums more restrictive (Florian Westphal) [1131999]
-- [net] Split sk_no_check into sk_no_check_{rx, tx} (Florian Westphal) [1131999]
-- [net] Eliminate no_check from protosw (Florian Westphal) [1131999]
-- [net] sunrpc: Remove sk_no_check setting (Florian Westphal) [1131999]
-- [net] l2tp: Remove UDP checksum verification (Florian Westphal) [1131999]
-- [net] udp: Verify UDP checksum before handoff to encap (Florian Westphal) [1131999]
-- [net] icmp6: Call skb_checksum_validate (Florian Westphal) [1131999]
-- [net] icmp: Call skb_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] igmp: Call skb_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] gre6: Call skb_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] gre: Call skb_checksum_simple_validate (Florian Westphal) [1131999]
-- [net] ipv6: Need to sock_put on csum error (Florian Westphal) [1131999]
-- [net] ipv6: Implmement RFC 6936 (zero RX csums for UDP/IPv6) (Florian Westphal) [1131999]
-- [net] udp: Only allow busy read/poll on connected sockets (Florian Westphal) [1078978 1131999]
-- [net] ipv6: log src and dst along with "udp checksum is 0" (Florian Westphal) [1131999]
-- [net] ipv6: Call skb_checksum_init in IPv6 (Florian Westphal) [1131999]
-- [net] ipv4: Call skb_checksum_init in IPv4 (Florian Westphal) [1131999]
-- [net] Generalize checksum_init functions (Florian Westphal) [1131999]
-- [net] Change x86_64 add32_with_carry to allow memory operand (Florian Westphal) [1131999]
-- [x86_64] csum_add for x86_64 (Florian Westphal) [1131999]
-- [net] Allow csum_add to be provided in arch (Florian Westphal) [1131999]
-- [net] ipv4: add a sock pointer to dst->output() path (Jiri Pirko) [1081956]
-- [net] iptunnels: remove net arg from iptunnel_xmit() (Jiri Pirko) [1081956]
-- [net] vti: Use the tunnel mark for lookup in the error handlers (Jiri Pirko) [1091561]
-- [net] xfrm4: Remove duplicate semicolon (Jiri Pirko) [1091561]
-- [net] xfrm4: Properly handle unsupported protocols (Jiri Pirko) [1091561]
-- [net] vti4: Don't count header length twice (Jiri Pirko) [1091561]
-- [net] vti4: don't allow to add the same tunnel twice (Jiri Pirko) [1091561]
-- [net] vti4: Enable namespace changing (Jiri Pirko) [1091561]
-- [net] vti4: Check the tunnel endpoints of the xfrm state and the vti interface (Jiri Pirko) [1091561]
-- [net] vti4: Support inter address family tunneling (Jiri Pirko) [1091561]
-- [net] vti4: Use the on xfrm_lookup returned dst_entry directly (Jiri Pirko) [1091561]
-- [net] vti4: Update the ipv4 side to use it's own receive hook (Jiri Pirko) [1091561]
-- [net] skb: allow skb_scrub_packet() to be used by tunnels (Jiri Pirko) [1091561]
-- [net] ipv4: xfrm: Introduce xfrm_tunnel_notifier for xfrm tunnel mode callback (Jiri Pirko) [1091561]
-- [net] ip_tunnel: Remove double unregister of the fallback device (Jiri Pirko) [1091561]
-- [net] ipip: add x-netns support (Jiri Pirko) [1091561]
-- [net] vti4: switch to new ip tunnel code (Jiri Pirko) [1091561]
-- [net] ip_tunnel: Make vti work with i_key set (Jiri Pirko) [1091561]
-- [net] xfrm: Add xfrm_tunnel_skb_cb to the skb common buffer (Jiri Pirko) [1091561]
-- [net] ipcomp4: Use the IPsec protocol multiplexer API (Jiri Pirko) [1091561]
-- [net] ah4: Use the IPsec protocol multiplexer API (Jiri Pirko) [1091561]
-- [net] esp4: Use the IPsec protocol multiplexer API (Jiri Pirko) [1091561]
-- [net] xfrm4: Add IPsec protocol multiplexer (Jiri Pirko) [1091561]
-
-* Fri Oct 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-179.el7]
-- [drm] i915: don't crash if unable to setup stolen (Rob Clark) [1128939]
-- [fs] nfs: Don't reset pg_moreio in __nfs_pageio_add_request (Steve Dickson) [1120728]
-- [fs] nfs: Remove 2 unused variables (Steve Dickson) [1120728]
-- [fs] nfs: handle multiple reqs in nfs_wb_page_cancel (Steve Dickson) [1120728]
-- [fs] nfs: nfs_page should take a ref on the head req (Steve Dickson) [1120728]
-- [fs] nfsv4: test SECINFO RPC_AUTH_GSS pseudoflavors for support (Steve Dickson) [1120728]
-- [fs] nfs: Return -EPERM if no supported or matching SECINFO flavor (Steve Dickson) [1120728]
-- [fs] nfs: check the return of nfs4_negotiate_security in nfs4_submount (Steve Dickson) [1120728]
-
-* Fri Oct 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-178.el7]
-- [crypto] drbg: fix maximum value checks on 32 bit systems (Herbert Xu) [1138311]
-- [crypto] drbg: remove configuration of fixed values (Herbert Xu) [1138311]
-- [crypto] drbg: fix failure of generating multiple of 2**16 bytes (Herbert Xu) [1011562]
-- [crypto] drbg: drbg_exit() can be static (Herbert Xu) [1011562]
-- [crypto] drbg: HMAC-SHA1 DRBG has crypto strength of 128 bits (Herbert Xu) [1011562]
-- [crypto] drbg: Mix a time stamp into DRBG state (Herbert Xu) [1011562]
-- [crypto] drbg: Select correct DRBG core for stdrng (Herbert Xu) [1011562]
-- [crypto] drbg: Call CTR DRBG DF function only once (Herbert Xu) [1011562]
-- [crypto] drbg: Fix format string for debugging statements (Herbert Xu) [1011562]
-- [crypto] drbg: cleanup of preprocessor macros (Herbert Xu) [1011562]
-- [crypto] drbg: Use Kconfig to ensure at least one RNG option is set (Herbert Xu) [1011562]
-- [crypto] drbg: use of kernel linked list (Herbert Xu) [1011562]
-- [crypto] drbg: fix memory corruption for AES192 (Herbert Xu) [1011562]
-- [crypto] drbg: simplify ordering of linked list in drbg_ctr_df (Herbert Xu) [1011562]
-- [crypto] drbg: Add DRBG test code to testmgr (Herbert Xu) [1011562]
-- [crypto] drbg: DRBG testmgr test vectors (Herbert Xu) [1011562]
-- [crypto] drbg: compile the DRBG code (Herbert Xu) [1011562]
-- [crypto] drbg: DRBG kernel configuration options (Herbert Xu) [1011562]
-- [crypto] drbg: header file for DRBG (Herbert Xu) [1011562]
-- [crypto] drbg: SP800-90A Deterministic Random Bit Generator (Herbert Xu) [1011562]
-- [virt] virtio_scsi: avoid cancelling uninitialized work items (Paolo Bonzini) [1050834]
-- [net] macvtap: Fix race between device delete and open (Vlad Yasevich) [1075904]
-- [video] offb: Little endian fixes (David Gibson) [1144937]
-- [cpufreq] release policy->rwsem on error (Prarit Bhargava) [1140184]
-- [char] ipmi: Turn off all activity on an idle ipmi interface (Tony Camuso) [1111214]
-- [char] ipmi: Turn off default probing of interfaces (Tony Camuso) [1111214]
-- [char] ipmi: Reset the KCS timeout when starting error recovery (Tony Camuso) [1111214]
-- [char] ipmi: Fix a race restarting the timer (Tony Camuso) [1111214]
-- [char] ipmi: ipmi_bt_sm, fix infinite loop (Tony Camuso) [1111214]
-- [char] ipmi: delete non-required instances of include <linux/init.h> (Tony Camuso) [1111214]
-- [char] ipmi: Cleanup error return (Tony Camuso) [1111214]
-- [char] ipmi: fix timeout calculation when bmc is disconnected (Tony Camuso) [1111214]
-- [char] ipmi: use USEC_PER_SEC instead of 1000000 for more meaningful (Tony Camuso) [1111214]
-- [char] ipmi: remove deprecated IRQF_DISABLED (Tony Camuso) [1111214]
-- [char] ipmi: Initialize locals to avoid warning (Tony Camuso) [1111214]
-- [char] ipmi: info leak in compat_ipmi_ioctl() (Tony Camuso) [1111214]
-- [char] ipmi: Convert use of typedef ctl_table to struct ctl_table (Tony Camuso) [1111214]
-
-* Tue Sep 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-177.el7]
-- [x86] uv: Set n_lshift based on GAM_GR_CONFIG MMR for UV3 (George Beshers) [1098325]
-- [kernel] audit: correct AUDIT_GET_FEATURE return message type (Richard Guy Briggs) [1141791]
-- [mm] fix the theoretical compound_lock() vs prep_new_page() race (Andrea Arcangeli) [1135506]
-- [mm] hugetlb: call MMU notifiers when copying a hugetlb page range (Andrea Arcangeli) [1135506]
-- [mm] page_alloc: convert hot/cold parameter and immediate callers to bool (Andrea Arcangeli) [1135506]
-- [mm] introdule compound_head_by_tail() (Andrea Arcangeli) [1135506]
-- [mm] swap: split put_compound_page() (Andrea Arcangeli) [1135506]
-- [mm] slub: do not VM_BUG_ON_PAGE() for temporary on-stack pages (Andrea Arcangeli) [1135506]
-- [mm] page_alloc: change mm debug routines back to EXPORT_SYMBOL (Andrea Arcangeli) [1135506]
-- [mm] dump page when hitting a VM_BUG_ON using VM_BUG_ON_PAGE (Andrea Arcangeli) [1135506]
-- [mm] thp: __get_page_tail_foll() can use get_huge_page_tail() (Andrea Arcangeli) [1135506]
-- [mm] print more details for bad_page() (Andrea Arcangeli) [1135506]
-- [mm] thp: turn compound_head() into BUG_ON(!PageTail) in get_huge_page_tail() (Andrea Arcangeli) [1135506]
-- [mm] hugetlbfs: Add some VM_BUG_ON()s to catch non-hugetlbfs pages (Andrea Arcangeli) [1135506]
-- [mm] swap: introduce put_[un]refcounted_compound_page helpers for splitting put_compound_page() (Andrea Arcangeli) [1135506]
-- [mm] close PageTail race (Andrea Arcangeli) [1135506]
-- [block] aoe: adjust ref of head for compound page tails (Andrea Arcangeli) [1135506]
-- [mm] swap: reorganize put_compound_page() (Andrea Arcangeli) [1135506]
-- [mm] hugetlbfs: use __compound_tail_refcounted in __get_page_tail too (Andrea Arcangeli) [1135506]
-- [mm] tail page refcounting optimization for slab and hugetlbfs (Andrea Arcangeli) [1135506]
-- [mm] hugetlbfs: move the put/get_page slab and hugetlbfs optimization in a faster path (Andrea Arcangeli) [1135506]
-- [mm] hugetlbfs: fix hugetlbfs optimization (Andrea Arcangeli) [1135506]
-- [mm] make lru_add_drain_all() selective (Andrea Arcangeli) [1135506]
-- [mm] fix aio performance regression for database caused by THP (Andrea Arcangeli) [1135506]
-- [powerpc] Add smp_mb()s to arch_spin_unlock_wait() (Gustavo Duarte) [1136528]
-- [powerpc] Add smp_mb() to arch_spin_is_locked() (Gustavo Duarte) [1136528]
-- [acpi] scan: not cache _SUN value in struct acpi_device_pnp (Prarit Bhargava) [1140567]
-- [acpi] scan: ACPI device object sysfs attribute for _STA evaluation (Prarit Bhargava) [1140567]
-
-* Tue Sep 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-176.el7]
-- [alsa] hda: Set up initial pins for Acer Aspire V5 (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Replacing hex with #defines (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: fix broken user-visible string (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: prink replacement (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: ctpcm.c printk replacement (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Fix the silence data for DSD formats (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: ct20k1reg Fix typo in include guard (Jaroslav Kysela) [1112200]
-- [alsa] hda: ca0132_regs.h Fix typo in include guard (Jaroslav Kysela) [1112200]
-- [alsa] core: fix buffer overflow in snd_info_get_line() (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Use tables for batch COEF writes/updtes (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add alc_update_coef*_idx() helper (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Use alc_write_coef_idx() in alc269_quanta_automake() (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Optimize alc888_coef_init() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove obsoleted EXPORT_SYMBOL_HDA() macro (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove obsoleted snd_hda_check_board_config() & co (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: apply Valleyview fix-ups to Cherryview display codec (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: set depop_delay for haswell plus (Jaroslav Kysela) [1112200]
-- [alsa] hda: restore the gpio led after resume (Jaroslav Kysela) [1112200]
-- [alsa] core: create write-only attribute macros for devices and drivers (Jaroslav Kysela) [1112200]
-- [alsa] sysfs: create __ATTR_WO() (Jaroslav Kysela) [1112200]
-- [alsa] dell-led: add mic mute led interface (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Avoid setting wrong COEF on ALC269 & co (Jaroslav Kysela) [1112200]
-- [alsa] hda: Set TLV_DB_SCALE_MUTE bit for cx5051 vmaster (Jaroslav Kysela) [1112200]
-- [alsa] pci: Remove DEFINE_PCI_DEVICE_TABLE macro use (Jaroslav Kysela) [1112200]
-- [alsa] hda/ca0132: Don't try loading firmware at resume when already failed (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix pop noises on reboot for Dell XPS 13 9333 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Set internal mic as default input source on Dell XPS 13 9333 (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: fix BOSS ME-25 MIDI regression (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix parsing of CMI8888 codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix probing and stuttering on CMI8888 HD-audio controller (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Fixed ALC286/ALC288 recording delay for Headset Mic (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Whitespace cleanups for sound/usb/midi.* (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Respond to suspend and resume callbacks for MIDI input (Jaroslav Kysela) [1112200]
-- [alsa] virtuoso: add Xonar Essence STX II support (Jaroslav Kysela) [1112200]
-- [alsa] riptide: fix d confusingly prefixed with 0x in format strings (Jaroslav Kysela) [1112200]
-- [alsa] hda: add codec ID for Braswell display audio codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: add PCI IDs for Intel Braswell (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Adjust Gamecom 780 volume level (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: improve dmesg source grepability (Jaroslav Kysela) [1112200]
-- [alsa] hda: add mic mute led hook for dell machines (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix an external mic jack problem on a HP machine (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix loopback noise on Dell XPS 15 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make vendor quirks lowest prio for ALC2xx (Jaroslav Kysela) [1112200]
-- [alsa] hda: Refactor quirk picking and change quirk priority (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add mic fixup for Gigabyte BXBT-2807 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add mute LED pin quirk for HP 15 touchsmart (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Add tstamp_type and proto to sw_params compat layer (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Introduce protocol version field to sw_params (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add NULL check to all PM ops in hda_intel.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: init_flag is in struct hda_intel (Jaroslav Kysela) [1112200]
-- [alsa] compress: fix an integer overflow check (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add the pin fixup for HP Envy TS bass speaker (Jaroslav Kysela) [1112200]
-- [alsa] control: Define SNDRV_CTL_TLV_OP_* constants (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix broken PM due to incomplete i915 initialization (Jaroslav Kysela) [1112200]
-- [alsa] hda: Revert stream assignment order for Intel controllers (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Add timestamp type to sw_params (Jaroslav Kysela) [1112200]
-- [alsa] pcm: simplify snd_pcm_tstamp() (Jaroslav Kysela) [1112200]
-- [alsa] hda: add capture mute led support in led_power_filter (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix a typo by changing mute_led_nid to cap_mute_led_nid (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add new GPU codec ID 0x10de0070 to snd-hda (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix build warning (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add several entries for enabling HP mute led (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix and neaten print_nid_path/debug_badness (Jaroslav Kysela) [1112200]
-- [alsa] pcm_dmaengine: Correct support for 24bits physical sample widths (Jaroslav Kysela) [1112200]
-- [alsa] pcm_dmaengine: Use the available wrapper to get physical width (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Correcting/completing #defines for REGS (Jaroslav Kysela) [1112200]
-- [alsa] hda: restore BCLK M/N value as per CDCLK for HSW/BDW display HDA controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove unused variable (Jaroslav Kysela) [1112200]
-- [alsa] mixart: Remove unused variable (Jaroslav Kysela) [1112200]
-- [alsa] echoaudio: Remove unused variable (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix build error in hda_tegra.c (Jaroslav Kysela) [1112200]
-- [alsa] trident: Remove unused variable in trident_memory.c (Jaroslav Kysela) [1112200]
-- [alsa] trident: Remove unused variable in trident_main.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix invalid function call in snd_hda_add_vmaster() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add a fixup for Thinkpad T540p (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add another headset pin quirk for some Dell machines (Jaroslav Kysela) [1112200]
-- [alsa] hda: Replace ICH6_ prefix (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove obsoleted SFX definitions (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move SD nums definitions to hda_intel.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Use common reboot notifier (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move more PCI-controller-specific stuff from generic code (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make position_fix as generic callback (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove superfluous MAX_AZX_DEV (Jaroslav Kysela) [1112200]
-- [alsa] hda: restore BCLK M/N values when resuming HSW/BDW display controller (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Fix races at disconnection and PCM closing (Jaroslav Kysela) [1112200]
-- [alsa] hda: Adjust speaker HPF and add LED support for HP Spectre 13 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove the obsoleted static quirk codes from patch_cmedia.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove the obsoleted static quirk codes from patch_conexant.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Kill the rest of snd_print*() usages (Jaroslav Kysela) [1112200]
-- [alsa] hda: Kill snd_printd*() in HDMI debug / info prints (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make the pin quirk tables use the SND_HDA_PIN_QUIRK macro (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make a SND_HDA_PIN_QUIRK macro (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add pin quirk for Dell XPS 15 (Jaroslav Kysela) [1112200]
-- [alsa] seq/seq_memory: Fix closing brace followed by if (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: call overridden init on resume (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix usage of "model" module parameter (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Support HP mute led for output and input (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add more entry for enable HP mute led (Jaroslav Kysela) [1112200]
-- [alsa] control: Make sure that id->index does not overflow (Jaroslav Kysela) [1112200 1117314] {CVE-2014-4656}
-- [alsa] control: Handle numid overflow (Jaroslav Kysela) [1112200 1117314] {CVE-2014-4656}
-- [alsa] control: Fix replacing user controls (Jaroslav Kysela) [1112200 1117324] {CVE-2014-4654 CVE-2014-4655}
-- [alsa] control: Protect user controls against concurrent access (Jaroslav Kysela) [1112200 1117339] {CVE-2014-4652}
-- [alsa] hd-audio: Don't continue probing i915 when nomodeset is given (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add quirk for external mic on Lifebook U904 (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix a fixup value for codec alc293 in the pin_quirk table (Jaroslav Kysela) [1112200]
-- [alsa] intel8x0: Use ktime and ktime_get() (Jaroslav Kysela) [1112200]
-- [alsa] core: Use ktime_get_ts() (Jaroslav Kysela) [1112200]
-- [alsa] hda: verify pin-converter connection on unsol event for HSW and VLV (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add quirk for ABit AA8XE (Jaroslav Kysela) [1112200]
-- [alsa] Revert: hda: mask buggy stream DMA0 for Broadwell display controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: using POS_FIX_LPIB on Broadwell HDMI Audio (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add support of ALC667 codec (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add more codec rename (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: New vendor ID for ALC233 (Jaroslav Kysela) [1112200]
-- [alsa] hda: add two new pin tables (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add support of ALC891 codec (Jaroslav Kysela) [1112200]
-- [alsa] seq: Continue broadcasting events to ports if one of them fails (Jaroslav Kysela) [1112200]
-- [alsa] seq: correctly detect input buffer overflow (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Fix COEF widget NID for ALC260 replacer fixup (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Correction of fixup codes for PB V7900 laptop (Jaroslav Kysela) [1112200]
-- [alsa] hda/analog: Fix silent output on ASUS A8JN (Jaroslav Kysela) [1112200]
-- [alsa] hda: move some alc662 family machines to hda_pin_quirk table (Jaroslav Kysela) [1112200]
-- [alsa] hda: move some alc269 family machines to hda_pin_quirk table (Jaroslav Kysela) [1112200]
-- [alsa] Revert: hda: drop def association and sequence from pinconf comparing (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix tegra build (Jaroslav Kysela) [1112200]
-- [alsa] hda: Pop noises fix for XPS13 9333 (Jaroslav Kysela) [1112200]
-- [alsa] hda: add an instance to use snd_hda_pick_pin_fixup (Jaroslav Kysela) [1112200]
-- [alsa] hda: drop def association and sequence from pinconf comparing (Jaroslav Kysela) [1112200]
-- [alsa] hda: get subvendor from codec rather than pci_dev (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add a new quirk match based on default pin configuration (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add fixup_forced flag (Jaroslav Kysela) [1112200]
-- [alsa] snd-usb/mixer: remove error messages on failed kmalloc() (Jaroslav Kysela) [1112200]
-- [alsa] snd-usb/mixer: coding style fixups (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix onboard audio on Intel H97/Z97 chipsets (Jaroslav Kysela) [1112200]
-- [alsa] Replace DEFINE_PCI_DEVICE_TABLE macro use (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add support headset mode for ALC233 (Jaroslav Kysela) [1112200]
-- [alsa] lola: fix format type mismatch in sound/pci/lola/lola_proc.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: fix format type mismatch in sound/pci/hda/patch_sigmatel.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Disable AA-mix on Sony Vaio S13 (Jaroslav Kysela) [1112200]
-- [alsa] hda: White noise fix for XPS13 9333 (Jaroslav Kysela) [1112200]
-- [alsa] hda/tegra: Fix MODULE_DEVICE_TABLE typo (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add driver for Tegra SoC HDA (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: Add Nvidia Tegra124 HDMI support (Jaroslav Kysela) [1112200]
-- [alsa] fm801: convert struct description to kernel-doc (Jaroslav Kysela) [1112200]
-- [alsa] pcm_dmaengine: Add check during device suspend (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirk for a Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for three Dell laptops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add new GPU codec ID to snd-hda (Jaroslav Kysela) [1112200]
-- [alsa] hda: if statement not indented (Jaroslav Kysela) [1112200]
-- [alsa] hda: mask buggy stream DMA0 for Broadwell display controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add dock pin setups for Thinkpad T440 (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: Set infoframe and channel mapping even without sink (Jaroslav Kysela) [1112200]
-- [alsa] fm801: introduce fm801_ac97_is_ready()/fm801_ac97_is_valid() helpers (Jaroslav Kysela) [1112200]
-- [alsa] fm801: introduce macros to access the hardware (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: Set converter channel count even without sink (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: work around corrupted TEAC UD-H01 feedback data (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Fix deadlocks at resuming (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Save mixer status only once at suspend (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Prevent printk ratelimiting from spamming kernel log while DEBUG not defined (Jaroslav Kysela) [1112200]
-- [alsa] hda: Suppress CORBRP clear on Nvidia controller chips (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add more entry for enable HP mute led (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirk for a Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Fix format string mismatch in mixer.c (Jaroslav Kysela) [1112200]
-- [alsa] core: Fix format string mismatch in seq_midi.c (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add new codec ALC293/ALC3235 UAJ supported (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add two codecs alias name for Dell (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Translate comments from french to english (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Remove useless #if 0 .. #endif (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Remove dead code (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Fix dev_dbg typo (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Switch to using BIT macro (Jaroslav Kysela) [1112200]
-- [alsa] lx_core: Remove unused defines (Jaroslav Kysela) [1112200]
-- [alsa] pcm: BUG message unnecessarily triggers kerneloops (Jaroslav Kysela) [1112200]
-- [alsa] MIDI driver for Behringer BCD2000 USB device (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add headset Mic support for Dell machine (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirk for a Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add support of ALC288 codec (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Suppress repetitive debug messages from retire_playback_urb() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make full_reset boolean (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirk for a Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] hda: Use runtime helper to check active state (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Fix boundary checks in PCM pointer ops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Do not assign streams in reverse order (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add eapd shutup to ALC283 (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Change model name alias for ChromeOS (Jaroslav Kysela) [1112200]
-- [alsa] Kconfig: rename HAS_IOPORT to HAS_IOPORT_MAP (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Improve HP depop when system change power state on Chromebook (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Save/restore routing and rate registers (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: restore AK4xxx volumes on resume (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Add S/PDIF suspend support for ICE1712-based M-Audio cards (Jaroslav Kysela) [1112200]
-- [alsa] cs8427: separate HW initialization (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix silent speaker output due to mute LED fixup (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Fixed single output machine get empty hp sense (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: Add suspend support for M-Audio ICE1712-based cards (Jaroslav Kysela) [1112200]
-- [alsa] ice1712: add suspend support for ICE1712 chip (Jaroslav Kysela) [1112200]
-- [alsa] hda: Enable beep for ASUS 1015E (Jaroslav Kysela) [1112200]
-- [alsa] asihpi: fix some indenting in snd_card_asihpi_pcm_new() (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for three Dell laptops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Inform the unexpectedly ignored pins by auto-parser (Jaroslav Kysela) [1112200]
-- [alsa] hda: verify pin-cvt connection on preparing a stream for Intel HDMI codec (Jaroslav Kysela) [1112200]
-- [alsa] compress: Pass through return value of open ops callback (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Restore default value for ALC282 (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) fix Stereo Upmixing regression (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Fix the noise after suspend and resume on ALC282 codec (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Restore default value for ALC283 (Jaroslav Kysela) [1112200]
-- [alsa] sis7019: Simplify dependencies (Jaroslav Kysela) [1112200]
-- [alsa] cs5535audio: Also needed on MIPS (Jaroslav Kysela) [1112200]
-- [alsa] hda: initialize audio InfoFrame to be all zero (Jaroslav Kysela) [1112200]
-- [alsa] cs553*: Fix dependencies (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix loud click noise with IdeaPad 410Y (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Add quirk for Logitech Webcam C500 (Jaroslav Kysela) [1112200]
-- [alsa] emu10k1: Fix possible NULL dereference (Jaroslav Kysela) [1112200]
-- [alsa] echoaudio: use after free on error (Jaroslav Kysela) [1112200]
-- [alsa] lola: NULL deref on allocation error (Jaroslav Kysela) [1112200]
-- [alsa] hda: Use analog beep for Thinkpads with AD1984 codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add missing loopback merge path for AD1884/1984 codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda: add automute fix for another dell AIO model (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add headset quirk for Dell DT (Jaroslav Kysela) [1112200]
-- [alsa] hda: Added inverted digital-mic handling for Acer TravelMate 8371 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Mark reg op args as iomem (Jaroslav Kysela) [1112200]
-- [alsa] hda: Rename reg access ops in hda_controller_ops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make azx_attach_pcm_stream static (Jaroslav Kysela) [1112200]
-- [alsa] hda: remove PCI dependency in Kconfig (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move codec create to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move azx_interrupt to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add position_check op (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move low level functions to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: move alloc_cmd_io to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Relocate RIRB/CORB interface to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move the dsp loader to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Pull pages allocation to hda_controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add hda_controller.c and move pcm ops from hda_intel (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add pcm_mmap_prepare op (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move snd page allocation to ops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Pass max_slots and power_save to codec_create (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add jackpoll_ms to struct azx (Jaroslav Kysela) [1112200]
-- [alsa] hda: remove unused clear of STATESTS (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add function pointer for disabling MSI (Jaroslav Kysela) [1112200]
-- [alsa] hda: Use device pointer from the card instead of pci (Jaroslav Kysela) [1112200]
-- [alsa] hda: Keep pointer to bdl_pos_fix in chip struct (Jaroslav Kysela) [1112200]
-- [alsa] hda: Allow different ops to read/write registers (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move some definitions to new hda_priv.h (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix CORB reset to follow specification (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix registration of beep input device (Jaroslav Kysela) [1112200]
-- [alsa] hda/sigmatel: Allow auto-switching for dock line-in of HP laptops (Jaroslav Kysela) [1112200]
-- [alsa] Move EXPORT_SYMBOL() in appropriate places (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make codec object as a parent for input beep devices (Jaroslav Kysela) [1112200]
-- [alsa] 6fire: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ymfpci: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] vx222: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] trident: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rme9652: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] hdspm: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] hdsp: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] pcxhr: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] nm256: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] mixart: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] lx6464es: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] lola: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ice17xx: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] emu10k1: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] emu10k1x: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] echoaudio: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cs46xx: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cs5535audio: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ca0106: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] aw2: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ali5451: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ac97: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] via82xx_modem: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] via82xx: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] sonicvibes: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rme96: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rme32: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] maestro3: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] intel8x0m: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] intel8x0: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] fm801: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] es1968: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] es1938: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] ens137x: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cs5530: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cs4281: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] cmipci: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] bt87x: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] azt3328: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] azt3328: Remove function debug prints (Jaroslav Kysela) [1112200]
-- [alsa] atiixp-modem: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] atiixp: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] als4000: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] als300: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] als300: Remove function debug prints (Jaroslav Kysela) [1112200]
-- [alsa] ad1889: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rme96: Convert to the new pm_ops (Jaroslav Kysela) [1112200]
-- [alsa] hda: Replace with standard printk (Jaroslav Kysela) [1112200]
-- [alsa] hda: Enable sysfs attributes without CONFIG_SND_HDA_RECONFIG (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add sysfs to codec object, too (Jaroslav Kysela) [1112200]
-- [alsa] hda: Create own device struct for each codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: Manage each codec instance individually (Jaroslav Kysela) [1112200]
-- [alsa] Clean up snd_device_*() codes (Jaroslav Kysela) [1112200]
-- [alsa] Use priority list for managing device list (Jaroslav Kysela) [1112200]
-- [alsa] hwdep: Allow to assign the given parent (Jaroslav Kysela) [1112200]
-- [alsa] hwdep: Take private_data as drvdata for sysfs (Jaroslav Kysela) [1112200]
-- [alsa] Create sysfs attribute files via groups (Jaroslav Kysela) [1112200]
-- [alsa] hda: Avoid codec D3 for keeping mute LED up on Lenovo Yxx0 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add a fixup for HP Folio 13 mute LED (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Add more entry for enable HP mute led (Jaroslav Kysela) [1112200]
-- [alsa] Export snd_pcm_constraint_mask64() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Enable front audio jacks on one HP desktop model (Jaroslav Kysela) [1112200]
-- [alsa] core: Fix missing card sysfs contents (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add QEMU codec vendor ID (Jaroslav Kysela) [1112200]
-- [alsa] hda/ca0132: Fix recording from mode id 0x8 (Jaroslav Kysela) [1112200]
-- [alsa] hda/ca0132: setup/cleanup streams (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for two Dell laptops (Jaroslav Kysela) [1112200]
-- [alsa] usx2y: Don't peep the card internal object (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: work around KEF X300A firmware bug (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove superfluous inclusion of linux/pci.h (Jaroslav Kysela) [1112200]
-- [alsa] hda/realtek: Allow NULL bus->pci (Jaroslav Kysela) [1112200]
-- [alsa] hda: Remove dependency on bus->pci in hda_beep.c (Jaroslav Kysela) [1112200]
-- [alsa] ak4117: Do not free priv until timer handler hasn't actually stopped using it (Jaroslav Kysela) [1112200]
-- [alsa] Drop __bitwise and typedefs for snd_device attributes (Jaroslav Kysela) [1112200]
-- [alsa] i2c/ak413x: Use SNDRV_DEV_CODEC for ak413x codec objects (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Use SNDRV_DEV_CODEC for mixer objects (Jaroslav Kysela) [1112200]
-- [alsa] seq_oss: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] seq: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] timer: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] oss: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] hwdep: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] rawmidi: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] core: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] control: Use standard printk helpers (Jaroslav Kysela) [1112200]
-- [alsa] seq_oss: Drop debug prints (Jaroslav Kysela) [1112200]
-- [alsa] Use standard device refcount for card accounting (Jaroslav Kysela) [1112200]
-- [alsa] Use static groups for id and number card sysfs attr files (Jaroslav Kysela) [1112200]
-- [alsa] Embed card device into struct snd_card (Jaroslav Kysela) [1112200]
-- [alsa] Mandate to pass a device pointer at card creation time (Jaroslav Kysela) [1112200]
-- [alsa] usb: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1112200]
-- [alsa] pci: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1112200]
-- [alsa] drivers: Convert to snd_card_new() with a device pointer (Jaroslav Kysela) [1112200]
-- [alsa] Mandate to pass a device pointer at card creation time (Jaroslav Kysela) [1112200]
-- [alsa] Drop unused name argument in snd_register_oss_device() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make snd_hda_gen_spec_free() static (Jaroslav Kysela) [1112200]
-- [alsa] hda: Disable static quirks for C-Media codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda: Move HDA_FIXUP_ACT_FREE call in snd_hda_gen_free() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix undefined symbol due to builtin/module mixup (Jaroslav Kysela) [1112200]
-- [alsa] Fix typos in alsa-driver-api.xml (Jaroslav Kysela) [1112200]
-- [alsa] lx6464es: Remove unused function in pci/lx6464es/lx_core.c (Jaroslav Kysela) [1112200]
-- [alsa] pcsp: Include appropriate header file in pcsp/pcsp_input.c (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add subwoofer quirks for Asus UX51VZH and N55SF (Jaroslav Kysela) [1112200]
-- [alsa] hda: Rename ASUS subwoofer quirks (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix mic capture on Sony VAIO Pro 11 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add a headset quirk for Dell XPS 13 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix inconsistent Mic mute LED (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix leftover ifdef checks after modularization (Jaroslav Kysela) [1112200]
-- [alsa] hda: Improve loopback path lookups for AD1983 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix missing VREF setup for Mac Pro 1,1 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add missing mixer widget for AD1983 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix silent output on Toshiba Satellite L40 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add mute LED support to Lenovo Ideapad (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Resume mixer values properly (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Add missing kconfig dependecy (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: allow PIN_OUT to be dynamically enabled (Jaroslav Kysela) [1112200]
-- [alsa] hda: Do not accept responses from non-existing codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Disable static quirks (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Enable stereo mix input for CX20549 and CX20551 (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Add analog loopback mixing to CX20549 (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Apply cap of mix amp volume on CX20551 codec (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Use generic parser for HP 530 (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Use generic parser for Toshiba P105 (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Apply the amp cap override for CX20549 mixer (Jaroslav Kysela) [1112200]
-- [alsa] hda/conexant: Re-implement OLPC XO workarounds via fixup (Jaroslav Kysela) [1112200]
-- [alsa] hda: Avoid unnecessary verbs write in snd_hda_activate_path() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add fixup name lookup for CX5051 and 5066 codecs (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for another Dell laptop (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) cleanup and minor changes (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify high-pass filter control (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify input select functions (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify capture volume functions (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) use headphone volume control (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify playback output select (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) capture from I2S channel 1, not 2 (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) move the mixer code into another file (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: modify CS4245 register dumping function (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: modify adjust_dg_dac_routing function (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify DAC/ADC parameters function (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) modify initialization functions (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: Xonar DG(X) add new CS4245 SPI functions (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: additional definitions for the Xonar DG/DGX card (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: change description of the xonar_dg.c file (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: export oxygen_update_dac_routing symbol (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: add mute mask for the OXYGEN_PLAY_ROUTING register (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: modify the SPI writing function (Jaroslav Kysela) [1112200]
-- [alsa] oxygen: add the separate SPI waiting function (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add parameter for dumping processing coefficients (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix silent output on MacBook Air 1,1 (Jaroslav Kysela) [1112200]
-- [alsa] Refactor slot assignment code (Jaroslav Kysela) [1112200]
-- [alsa] bits vs bytes bug in snd_card_create() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Apply +5dB output amp on ASUS Zenbook UX31A (Jaroslav Kysela) [1112200]
-- [alsa] hda: add headset mic detect quirks for some Dell machines (Jaroslav Kysela) [1112200]
-- [alsa] Add helper function for intersecting two rate masks (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix endless vmaster hook call in thinkpad_helper.c (Jaroslav Kysela) [1112200]
-- [alsa] snd-usb: re-order some quirk entries (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Fix Creative VF0420 rate (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Add support for Focusrite Saffire 6 USB (Jaroslav Kysela) [1112200]
-- [alsa] hda: automute via amp instead of pinctl on some AIO models (Jaroslav Kysela) [1112200]
-- [alsa] hda: Apply codec power_filter to FG nodes (Jaroslav Kysela) [1112200]
-- [alsa] hda: Don't set indep_hp flag for old AD codecs (Jaroslav Kysela) [1112200]
-- [alsa] Enable CONFIG_ZONE_DMA for smaller PCI DMA masks (Jaroslav Kysela) [1112200]
-- [alsa] pcm: Warn when buffer preallocation fails (Jaroslav Kysela) [1112200]
-- [alsa] ctxfi: Work around emu20k1 glitch to prevent buffered sound data loss (Jaroslav Kysela) [1112200]
-- [alsa] Merge memalloc code into snd-pcm module (Jaroslav Kysela) [1112200]
-- [alsa] Remove superfluous header inclusions in memalloc.c (Jaroslav Kysela) [1112200]
-- [alsa] Remove memory reservation code from memalloc helper (Jaroslav Kysela) [1112200]
-- [alsa] Remove memory accounting in memalloc helper (Jaroslav Kysela) [1112200]
-- [alsa] hda/hdmi: apply all Haswell fix-ups to Broadwell display codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: add codec ID for Broadwell display audio codec (Jaroslav Kysela) [1112200]
-- [alsa] hda: add device ID for Broadwell display audio controller (Jaroslav Kysela) [1112200]
-- [alsa] hda: Split Thinkpad ACPI-related code (Jaroslav Kysela) [1112200]
-- [alsa] hda: Don't create duplicated ctls for loopback paths (Jaroslav Kysela) [1112200]
-- [alsa] hda: Correct AD1986A 3stack pin configs (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add consistent tag names for firmware patch (Jaroslav Kysela) [1112200]
-- [alsa] hda: firmware patch code cleanup (Jaroslav Kysela) [1112200]
-- [alsa] hda: Increment default stream numbers for AMD HDMI controllers (Jaroslav Kysela) [1112200]
-- [alsa] hda: Minor code optimization for patch_realtek.c (Jaroslav Kysela) [1112200]
-- [alsa] compress: remove the sample rate check (Jaroslav Kysela) [1112200]
-- [alsa] rme9652: fix a missing comma in channel_map_9636_ds (Jaroslav Kysela) [1112200]
-- [alsa] cs5535audio: use named constants for pci_power_t values (Jaroslav Kysela) [1112200]
-- [alsa] hda: Disable Front HP jack detection on Gigabyte Z87X-UD3H (Jaroslav Kysela) [1112200]
-- [alsa] hiface: Fix typo in 352800 rate definition (Jaroslav Kysela) [1112200]
-- [alsa] usb-audio: Add a quirk for Plantronics Gamecom 780 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Enable subwoofer on Dell Vostro 5460/5470 (Jaroslav Kysela) [1112200]
-- [alsa] hda: Fix wrong <acpi/acpi.h> inclusion in Thinkpad ACPI users (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add warning texts when codec driver Kconfig doesn't match (Jaroslav Kysela) [1112200]
-- [alsa] hda: Kill EXPORT_SYMBOL_HDA() (Jaroslav Kysela) [1112200]
-- [alsa] hda: Make CONFIG_SND_HDA_CODEC_* tristate (Jaroslav Kysela) [1112200]
-- [alsa] hda: Explicitly keep codec powered up in hdmi_present_sense (Jaroslav Kysela) [1112200]
-- [alsa] hda: Add Dell headset detection quirk for one more laptop model (Jaroslav Kysela) [1112200]
-- [alsa] Add SNDRV_PCM_STATE_PAUSED case in wait_for_avail function (Jaroslav Kysela) [1112200]
-
-* Tue Sep 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-175.el7]
-- [misc] mei: ignore client writing state during cb completion (Prarit Bhargava) [1088953]
-- [misc] mei: don't use deprecated DEFINE_PCI_DEVICE_TABLE macro (Prarit Bhargava) [1088953]
-- [misc] mei: amthif: fix checkpatch error (Prarit Bhargava) [1088953]
-- [misc] mei: fix Unnecessary space after function pointer name (Prarit Bhargava) [1088953]
-- [misc] mei: use cl_dbg where appropriate (Prarit Bhargava) [1088953]
-- [misc] mei: client.h fix checkpatch errors (Prarit Bhargava) [1088953]
-- [misc] mei: report consistently copy_from/to_user failures (Prarit Bhargava) [1088953]
-- [misc] mei: drop pr_fmt macros (Prarit Bhargava) [1088953]
-- [misc] mei: make me hw headers private to me hw (Prarit Bhargava) [1088953]
-- [misc] mei: fix memory leak of pending write cb objects (Prarit Bhargava) [1088953]
-- [misc] mei: me: do not reset when less than expected data is received (Prarit Bhargava) [1088953]
-- [misc] mei: fix regressions caused by removing ext_msg (Prarit Bhargava) [1088953]
-- [misc] mei: wd: fix stop completion failure (Prarit Bhargava) [1088953]
-- [misc] mei: wd: simplify wd_send command (Prarit Bhargava) [1088953]
-- [misc] mei: make return values consistent across the driver (Prarit Bhargava) [1088953]
-- [misc] mei: revamp writing slot counting (Prarit Bhargava) [1088953]
-- [misc] mei: add mei_hbuf_acquire wrapper (Prarit Bhargava) [1088953]
-- [misc] mei: txe: include irqreturn.h for irqreturn_t etc (Prarit Bhargava) [1088953]
-- [misc] mei: set client's read_cb to NULL when flow control fails (Prarit Bhargava) [1088953]
-- [misc] mei: txe: put pm callbacks under PM_SLEEP ifdef (Prarit Bhargava) [1088953]
-- [misc] mei: me: put pm callbacks under PM_SLEEP ifdef (Prarit Bhargava) [1088953]
-- [misc] mei: don't of list_for_each_entry_safe when not deleting (Prarit Bhargava) [1088953]
-- [misc] mei: use helper function to find me client by id (Prarit Bhargava) [1088953]
-- [misc] mei: fix potential read outside of array bounds (Prarit Bhargava) [1088953]
-- [misc] mei: wd and amthif use mei_cl_ api for dis/connection (Prarit Bhargava) [1088953]
-- [misc] mei: hbm: revamp client connect and disconnection status (Prarit Bhargava) [1088953]
-- [misc] mei: Remove all bus devices from the mei_dev list when stopping the MEI (Prarit Bhargava) [1088953]
-- [misc] mei: get rid of ext_msg (Prarit Bhargava) [1088953]
-- [misc] mei: rename MEI_FOP_IOCTL to MEI_FOP_CONNECT (Prarit Bhargava) [1088953]
-- [misc] mei: fix compilation error with missing WATCHDOG_CORE (Prarit Bhargava) [1088953]
-- [misc] mei: allow multiple retries if the hw reset has failed (Prarit Bhargava) [1088953]
-- [misc] mei: export active connections to debugfs (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add Kbuild for TXE device (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add pci-txe.c (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add hw-txe-regs.h header file (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add hw-txe.c (Prarit Bhargava) [1088953]
-- [misc] mei: txe: add hw-txe.h header file (Prarit Bhargava) [1088953]
-- [misc] mei: don't unset read cb ptr on reset (Prarit Bhargava) [1088953]
-- [misc] mei: clear write cb from waiting list on reset (Prarit Bhargava) [1088953]
-- [misc] mei: limit the number of consecutive resets (Prarit Bhargava) [1088953]
-- [misc] mei: revamp mei reset state machine (Prarit Bhargava) [1088953]
-- [misc] mei: fix syntax in comments and debug output (Prarit Bhargava) [1088953]
-- [misc] mei: nfc: mei_nfc_free has to be called under lock (Prarit Bhargava) [1088953]
-- [misc] mei: use hbm idle state to prevent spurious resets (Prarit Bhargava) [1088953]
-- [misc] mei: do not run reset flow from the interrupt thread (Prarit Bhargava) [1088953]
-- [misc] mei: enable marking internal commands (Prarit Bhargava) [1088953]
-- [misc] mei: me: set dma mask using DMA mapping API (Prarit Bhargava) [1088953]
-- [misc] mei: cleanup mei_irq_read_handler (Prarit Bhargava) [1088953]
-- [misc] mei: remove flash_work_queue (Prarit Bhargava) [1088953]
-- [misc] mei: drop redundant list_del_init (Prarit Bhargava) [1088953]
-- [misc] mei: bus: propagate error code returned by mei_me_cl_by_id (Prarit Bhargava) [1088953]
-- [misc] mei: mei_cl_link remove duplicated check for open_handle_count (Prarit Bhargava) [1088953]
-- [misc] mei: replace stray pr_debug with dev_dbg (Prarit Bhargava) [1088953]
-- [misc] mei: wd: host_init propagate error codes from called functions (Prarit Bhargava) [1088953]
-- [misc] mei: print correct device state during unexpected reset (Prarit Bhargava) [1088953]
-- [misc] mei: nfc: fix memory leak in error path (Prarit Bhargava) [1088953]
-- [misc] mei: move host_clients_map cleanup to device init (Prarit Bhargava) [1088953]
-- [misc] mei: me: downgrade two errors to debug level (Prarit Bhargava) [1088953]
-- [misc] mei: amthif: mei_amthif_host_init: propagate errors from called functions (Prarit Bhargava) [1088953]
-- [misc] mei: revamp open handler counts (Prarit Bhargava) [1088953]
-- [misc] mei: simplify mei_open error handling (Prarit Bhargava) [1088953]
-- [misc] mei: remove unnecessary pci_set_drvdata() (Prarit Bhargava) [1088953]
-- [misc] mei: mei_cl_unlink: no need to loop over dev list (Prarit Bhargava) [1088953]
-- [misc] mei: push credentials inside the irq write handler (Prarit Bhargava) [1088953]
-- [misc] mei: propagate error from write routines instead of ENODEV (Prarit Bhargava) [1088953]
-- [misc] mei: fix function names in debug prints (Prarit Bhargava) [1088953]
-- [misc] mei: prefix client log messages with client me and host ids (Prarit Bhargava) [1088953]
-- [misc] mei: mei_release: drop redundant check if cb is NULL (Prarit Bhargava) [1088953]
-- [misc] mei: fix format compilation warrning on 32 bit architecture (Prarit Bhargava) [1088953]
-- [misc] mei: revamp read and write length checks (Prarit Bhargava) [1088953]
-- [misc] mei: mei_write correct checks for copy_from_user (Prarit Bhargava) [1088953]
-- [misc] mei: mei_cl_link protect open_handle_count from overflow (Prarit Bhargava) [1088953]
-- [misc] mei: make sure that me_clients_map big enough before copying (Prarit Bhargava) [1088953]
-- [misc] mei: convert bus code to use dev_groups (Prarit Bhargava) [1088953]
-- [misc] mei: client.h cleanup (Prarit Bhargava) [1088953]
-- [ethernet] e1000e: Fix Runtime PM blocks EEE link negotiation in S5 (John Greene) [1091119]
-- [ethernet] e1000e: Fix EEE in S5 w/ Runtime PM enabled (John Greene) [1091119]
-- [ethernet] e1000e: Add support for EEE in Sx states (John Greene) [1091119]
-- [ethernet] e1000e: Add code to check return values on NVM accesses (John Greene) [1091119]
-- [ethernet] e1000e: Fix CRC errors with jumbo traffic (John Greene) [1091119]
-- [ethernet] e1000e: remove unnecessary break after return (John Greene) [1091119]
-- [ethernet] e1000e: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (John Greene) [1091119]
-- [ethernet] e1000e: Out of line __ew32_prepare/__ew32 (John Greene) [1091119]
-- [ethernet] e1000e: Fix expand setting EEE link info to all affected parts (John Greene) [1091119]
-- [ethernet] e1000e: Failure to write SHRA turns on PROMISC mode (John Greene) [1091119]
-- [ethernet] e1000e: Restrict MDIO Slow Mode workaround to relevant parts (John Greene) [1091119]
-- [ethernet] e1000e: Fix issue with link flap on 82579 (John Greene) [1091119]
-- [ethernet] e1000e: Expand workaround for 10Mb HD throughput bug (John Greene) [1091119]
-- [ethernet] e1000e: Workaround for dropped packets in Gig/100 speeds on 82579 (John Greene) [1091119]
-- [ethernet] e1000e: fix message terminations (John Greene) [1091119]
-- [ethernet] e1000e: Enclose e1000e_pm_thaw() with CONFIG_PM_SLEEP (John Greene) [1091119]
-- [ethernet] e1000e: Correctly include VLAN_HLEN when changing interface MTU (John Greene) [1091119]
-- [ethernet] e1000e: Fix no connectivity when driver loaded with cable out (John Greene) [1091119]
-- [ethernet] e1000e: add timeout for TX HW time stamping work (John Greene) [1091119]
-- [ethernet] e1000e: Fix Explicitly set Transmit Control Register (John Greene) [1091119]
-- [ethernet] e1000e: Fix Hardware Unit Hang (John Greene) [1091119]
-- [ethernet] e1000e: fix the build error when PM is disabled (John Greene) [1091119]
-- [ethernet] e1000e: Fix ethtool offline tests for 82579 parts (John Greene) [1091119]
-- [ethernet] e1000e: Fix not generating an error on invalid load parameter (John Greene) [1091119]
-- [ethernet] e1000e: Feature Enable PHY Ultra Low Power Mode (ULP) (John Greene) [1091119]
-- [ethernet] e1000e: Refactor of Runtime Power Management (John Greene) [1091119]
-- [ethernet] e1000e: calls skb_set_hash (John Greene) [1091119]
-- [ethernet] e1000e: Refactor PM flows (John Greene) [1091119]
-- [ethernet] e1000e: Fix compilation warning when !CONFIG_PM_SLEEP (John Greene) [1091119]
-- [ethernet] e1000e: Fix a compile flag mis-match for suspend/resume (John Greene) [1091119]
-- [ethernet] e1000e: Remove extern from function prototypes (John Greene) [1091119]
-- [ethernet] e1000e: Cleanup - Update GPL header and Copyright (John Greene) [1091119]
-- [ethernet] e1000e: Fix 82579 sets LPI too early (John Greene) [1091119]
-- [ethernet] e1000e: 82574/82583 TimeSync errata for SYSTIM read (John Greene) [1091119]
-- [kernel] sched/fair: Stop searching for tasks in idle_balance if there are runnable tasks (Larry Woodman) [1103828]
-- [kernel] sched/numa: Initialize new idle_balance stats in sd_numa_init() (Larry Woodman) [1103828]
-
-* Mon Sep 29 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-174.el7]
-- [kernel] tty: Add C_CMSPAR(tty) (Don Zickus) [1110939]
-- [usb] pl2303: fixed handling of CS5 setting (Don Zickus) [1110939]
-- [usb] pl2303: switch to generic TIOCMIWAIT implementation (Don Zickus) [1110939]
-- [usb] pl2303: only wake up MSR queue on changes (Don Zickus) [1110939]
-- [usb] pl2303: clean up line-status handling (Don Zickus) [1110939]
-- [usb] pl2303: make type data const (Don Zickus) [1110939]
-- [usb] pl2303: use C_CMSPAR macro (Don Zickus) [1110939]
-- [usb] pl2303: use direct baud-rate encoding when possible (Don Zickus) [1110939]
-- [usb] pl2303: add helper function for direct baud-rate encoding (Don Zickus) [1110939]
-- [usb] pl2303: refactor baud-rate divisor handling (Don Zickus) [1110939]
-- [usb] pl2303: enforce baud-rate limits before lookup (Don Zickus) [1110939]
-- [usb] pl2303: refactor baud-rate table lookup (Don Zickus) [1110939]
-- [usb] pl2303: rename pl2303_encode_baud_rate (Don Zickus) [1110939]
-- [usb] pl2303: add device-type abstraction (Don Zickus) [1110939]
-- [usb] pl2303: add quirk for legacy devices (Don Zickus) [1110939]
-- [usb] pl2303: clean up type handling (Don Zickus) [1110939]
-- [usb] pl2303: use speed_t for baud rates (Don Zickus) [1110939]
-- [usb] pl2303: add line-status quirk for Siemens phones (Don Zickus) [1110939]
-- [usb] pl2303: remove redundant line-request call (Don Zickus) [1110939]
-- [usb] pl2303: add error handling to line requests (Don Zickus) [1110939]
-- [usb] pl2303: fix data corruption on termios updates (Don Zickus) [1110939]
-- [usb] pl2303: add error handling to set_control_lines (Don Zickus) [1110939]
-- [usb] pl2303: add error handling to vendor read and write functions (Don Zickus) [1110939]
-- [usb] Revert: pl2303: restrict the divisor based baud rate encoding method to the "HX" chip type (Don Zickus) [1110939]
-- [usb] Revert: pl2303: fix+improve the divsor based baud rate encoding method (Don Zickus) [1110939]
-- [usb] Revert: pl2303: do not round to the next nearest standard baud rate for the divisor based baud rate encoding method (Don Zickus) [1110939]
-- [usb] Revert: pl2303: remove 500000 baud from the list of standard baud rates (Don Zickus) [1110939]
-- [usb] Revert: pl2303: move the two baud rate encoding methods to separate functions (Don Zickus) [1110939]
-- [usb] Revert: pl2303: increase the allowed baud rate range for the divisor based encoding method (Don Zickus) [1110939]
-- [usb] Revert: pl2303: also use the divisor based baud rate encoding method for baud rates < 115200 with HX chips (Don Zickus) [1110939]
-- [usb] Revert: pl2303: add two comments concerning the supported baud rates with HX chips (Don Zickus) [1110939]
-- [usb] Revert: pl2303: simplify the else-if contruct for type_1 chips in pl2303_startup() (Don Zickus) [1110939]
-- [usb] Revert: pl2303: improve the chip type information output on startup
-- [usb] Revert: pl2303: improve the chip type detection/distinction
-- [usb] Revert: pl2303: distinguish between original and cloned HX chips
-- [usb] pl2303: clean up driver somewhat (Don Zickus) [1110939]
-- [usb] pl2303: remove bogus delta_msr_wait wake up (Don Zickus) [1110939]
-- [usb] core: let dynamic ids override static ids (Don Zickus) [1110939]
-- [usb] core: Fix potential memory leak adding dyn USBdevice IDs (Don Zickus) [1110939]
-- [usb] core: add sanity checks when using bInterfaceClass with new_id (Don Zickus) [1110939]
-- [usb] core: check for valid id_table when using the RefId feature (Don Zickus) [1110939]
-- [usb] core: bail out if user gives an unknown RefId when using new_id (Don Zickus) [1110939]
-- [usb] core: allow a reference device for new_id (Don Zickus) [1110939]
-- [lib] radix-tree: make radix_tree_node_alloc() work correctly within interrupt (Don Zickus) [1110939]
-- [usb] Check if port status is equal to RxDetect (Don Zickus) [1110939]
-- [usb] serial/ftdi_sio: Add Infineon Triboard (Don Zickus) [1110939]
-- [usb] ftdi_sio: Add extra PID (Don Zickus) [1110939]
-- [usb] option: Add ID for Telewell TW-LTE 4G v2 (Don Zickus) [1110939]
-- [usb] cp210x: add support for Corsair usb dongle (Don Zickus) [1110939]
-- [usb] storage/scsi: Add broken_fua blacklist flag (Don Zickus) [1110939]
-- [usb] xhci: Fix runtime suspended xhci from blocking system suspend (Don Zickus) [1110939]
-- [usb] xhci: clear root port wake on bits if controller isn't wake-up capable (Don Zickus) [1110939]
-- [usb] xhci: correct burst count field for isoc transfers on 1.0 xhci hosts (Don Zickus) [1110939]
-- [usb] xhci: Use correct SLOT ID when handling a reset device command (Don Zickus) [1110939]
-- [usb] option: add/modify Olivetti Olicard modems (Don Zickus) [1110939]
-- [usb] ftdi_sio: fix null deref at port probe (Don Zickus) [1110939]
-- [usb] option: add device ID for SpeedUp SU9800 usb 3g modem (Don Zickus) [1110939]
-- [usb] usbtest: add a timeout for scatter-gather tests (Don Zickus) [1110939]
-- [usb] ehci: avoid BIOS handover on the HASEE E200 (Don Zickus) [1110939]
-- [usb] fix hub-port pm_runtime_enable() vs runtime pm transitions (Don Zickus) [1110939]
-- [usb] quiet peer failure warning, disable poweroff (Don Zickus) [1110939]
-- [usb] improve "not suspended yet" message in hub_suspend() (Don Zickus) [1110939]
-- [usb] xhci: Fix sleeping with IRQs disabled in xhci_stop_device() (Don Zickus) [1110939]
-- [usb] fix ->update_hub_device() vs hdev->maxchild (Don Zickus) [1110939]
-- [usb] hub_handle_remote_wakeup() only exists for CONFIG_PM=y (Don Zickus) [821903]
-- [usb] qcserial: add additional Sierra Wireless QMI devices (Don Zickus) [1110939]
-- [usb] qcserial: add Netgear AirCard 341U (Don Zickus) [1110939]
-- [usb] xhci: delete endpoints from bandwidth list before freeing whole device (Don Zickus) [1110939]
-- [usb] host/xhci-plat: add xhci_plat_start() (Don Zickus) [1110939]
-- [usb] pci-quirks: Prevent Sony VAIO t-series from switching usb ports (Don Zickus) [1110939]
-- [usb] resume child device when port is powered on (Don Zickus) [1110939]
-- [usb] hub_handle_remote_wakeup() depends on CONFIG_PM_RUNTIME=y (Don Zickus) [1110939]
-- [usb] introduce port status lock (Don Zickus) [1110939]
-- [usb] synchronize port poweroff and khubd (Don Zickus) [1110939]
-- [usb] refactor port handling in hub_events() (Don Zickus) [1110939]
-- [usb] usb3 ports do not support FEAT_C_ENABLE (Don Zickus) [1110939]
-- [usb] don't clear FEAT_C_ENABLE on usb_port_runtime_resume failure (Don Zickus) [1110939]
-- [usb] block suspension of superspeed port while hispeed peer is active (Don Zickus) [1110939]
-- [usb] make usb_port flags atomic, rename did_runtime_put to child_usage (Don Zickus) [1110939]
-- [usb] sysfs link peer ports (Don Zickus) [1110939]
-- [usb] find internal hub tier mismatch via acpi (Don Zickus) [1110939]
-- [usb] assign usb3 external hub port peers (Don Zickus) [1110939]
-- [usb] assign default peer ports for root hubs (Don Zickus) [1110939]
-- [usb] cleanup setting udev->removable from port_dev->connect_type (Don Zickus) [1110939]
-- [usb] rename usb_port device objects (Don Zickus) [1110939]
-- [usb] disable port power control if not supported in wHubCharacteristics (Don Zickus) [1110939]
-- [usb] mutual exclusion for resetting a hub and power-managing a port (Don Zickus) [1110939]
-- [usb] pci_quirks: fix sparse 'symbol not declared' warning (Don Zickus) [1110939]
-- [usb] storage/ene_ub6250: Use kmemdup instead of kmalloc + memcpy (Don Zickus) [1110939]
-- [usb] usbtest: add pattern check on pipe in phase of unlink read (Don Zickus) [1110939]
-- [usb] usbtest: fix unlink write error with pattern 1 (Don Zickus) [1110939]
-- [usb] usb5303: add support for reference clock specified in device tree (Don Zickus) [1110939]
-- [usb] separate usb_address0 mutexes for each bus (Don Zickus) [1110939]
-- [usb] xhci: Switch only Intel Lynx Point-LP ports to EHCI on shutdown (Don Zickus) [1110939]
-- [usb] yurex: fix race between probe() and read() (Don Zickus) [1110939]
-- [usb] appledisplay: fix race between reading and writing from the device (Don Zickus) [1110939]
-- [usb] usbtmc: fix DMA on stack (Don Zickus) [1110939]
-- [usb] cdc-acm: use BIT macro (Don Zickus) [1110939]
-- [usb] xhci: unified loggig of RESET_ON_RESUME (Don Zickus) [1110939]
-- [usb] xhci: avoid warning for !PM_SLEEP (Don Zickus) [1110939]
-- [usb] host/xhci-plat: add clock support (Don Zickus) [1110939]
-- [usb] host/xhci-plat: sort the headers in alphabetic order (Don Zickus) [1110939]
-- [usb] move usb/usb-common.c to usb/common/usb-common.c (Don Zickus) [1110939]
-- [usb] core: remove the Kconfig entry for USB_DEBUG (Don Zickus) [1110939]
-- [usb] remove redundant D0 power state set (Don Zickus) [1110939]
-- [usb] keyspan: fix potential null pointer dereference (Don Zickus) [1110939]
-- [usb] serial/option: add support for Novatel E371 PCIe card (Don Zickus) [1110939]
-- [usb] ftdi_sio: add NovaTech OrionLXm product ID (Don Zickus) [1110939]
-- [usb] io_ti: fix firmware download on big-endian machines (part 2) (Don Zickus) [1110939]
-- [usb] cdc-acm: use tty-port dtr_rts (Don Zickus) [1110939]
-- [usb] cdc-acm: remove redundant usb_mark_last_busy (Don Zickus) [1110939]
-- [usb] cdc-acm: do not update PM busy on read errors (Don Zickus) [1110939]
-- [usb] cdc-acm: minimise no-suspend window during shutdown (Don Zickus) [1110939]
-- [usb] cdc-acm: remove redundant disconnected test from shutdown (Don Zickus) [1110939]
-- [usb] cdc-acm: simplify runtime PM locking (Don Zickus) [1110939]
-- [usb] cdc-acm: fix runtime PM imbalance at shutdown (Don Zickus) [1110939]
-- [usb] cdc-acm: fix I/O after failed open (Don Zickus) [1110939]
-- [usb] cdc-acm: fix failed open not being detected (Don Zickus) [1110939]
-- [usb] cdc-acm: fix open and suspend race (Don Zickus) [1110939]
-- [usb] cdc-acm: fix potential urb leak and PM imbalance in write (Don Zickus) [1110939]
-- [usb] cdc-acm: fix shutdown and suspend race (Don Zickus) [1110939]
-- [usb] cdc-acm: fix runtime PM for control messages (Don Zickus) [1110939]
-- [usb] cdc-acm: fix broken runtime suspend (Don Zickus) [1110939]
-- [usb] cdc-acm: fix write and resume race (Don Zickus) [1110939]
-- [usb] cdc-acm: fix write and suspend race (Don Zickus) [1110939]
-- [usb] kobil_sct: fix control requests without data stage (Don Zickus) [1110939]
-- [usb] serial: remove overly defensive port tests (Don Zickus) [1110939]
-- [usb] serial: fix potential runtime pm imbalance at device remove (Don Zickus) [1110939]
-- [usb] usb_wwan: do not resume I/O on closing ports (Don Zickus) [1110939]
-- [usb] usb_wwan: report failed submissions as errors (Don Zickus) [1110939]
-- [usb] usb_wwan: remove bogus function prototype (Don Zickus) [1110939]
-- [usb] usb_wwan: remove some superfluous comments (Don Zickus) [1110939]
-- [usb] usb_wwan: remove comment from close (Don Zickus) [1110939]
-- [usb] usb_wwan: clean up delayed-urb submission (Don Zickus) [1110939]
-- [usb] usb_wwan: use interface-data accessors (Don Zickus) [1110939]
-- [usb] usb_wwan: make resume error messages uniform (Don Zickus) [1110939]
-- [usb] usb_wwan: kill interrupt urb explicitly at suspend (Don Zickus) [1110939]
-- [usb] usb_wwan: remove redundant urb kill from port remove (Don Zickus) [1110939]
-- [usb] usb_wwan: remove unimplemented set_termios (Don Zickus) [1110939]
-- [usb] usb_wwan: remove redundant modem-control request (Don Zickus) [1110939]
-- [usb] usb_wwan: fix remote wakeup (Don Zickus) [1110939]
-- [usb] usb_wwan: fix discarded writes on resume errors (Don Zickus) [1110939]
-- [usb] usb_wwan: fix potential blocked I/O after resume (Don Zickus) [1110939]
-- [usb] usb_wwan: fix potential NULL-deref at resume (Don Zickus) [1110939]
-- [usb] usb_wwan: fix urb leak at shutdown (Don Zickus) [1110939]
-- [usb] usb_wwan: fix write and suspend race (Don Zickus) [1110939]
-- [usb] usb_wwan: fix race between write and resume (Don Zickus) [1110939]
-- [usb] usb_wwan: fix urb leak in write error path (Don Zickus) [1110939]
-- [usb] option: add missing usb_mark_last_busy (Don Zickus) [1110939]
-- [usb] option: fix line-control pipe direction (Don Zickus) [1110939]
-- [usb] option: fix runtime PM handling (Don Zickus) [1110939]
-- [usb] sierra: do not resume I/O on closing ports (Don Zickus) [1110939]
-- [usb] sierra: minimise no-suspend window during close (Don Zickus) [1110939]
-- [usb] sierra: refactor delayed-urb submission (Don Zickus) [1110939]
-- [usb] sierra: clean up suspend (Don Zickus) [1110939]
-- [usb] sierra: use interface-data accessors (Don Zickus) [1110939]
-- [usb] sierra: remove redundant modem-control requests (Don Zickus) [1110939]
-- [usb] sierra: do not resume I/O on closed ports (Don Zickus) [1110939]
-- [usb] sierra: remove disconnected test from close (Don Zickus) [1110939]
-- [usb] sierra: remove unimplemented set_termios (Don Zickus) [1110939]
-- [usb] sierra: remove unused variable (Don Zickus) [1110939]
-- [usb] sierra: remove bogus endpoint test (Don Zickus) [1110939]
-- [usb] sierra: fix line-control pipe direction (Don Zickus) [1110939]
-- [usb] sierra: fix resume error reporting (Don Zickus) [1110939]
-- [usb] sierra: fix urbs not being killed on shutdown (Don Zickus) [1110939]
-- [usb] sierra: fix characters being dropped at close (Don Zickus) [1110939]
-- [usb] sierra: fix remote wakeup (Don Zickus) [1110939]
-- [usb] sierra: fix urb and memory leak on disconnect (Don Zickus) [1110939]
-- [usb] sierra: fix urb and memory leak in resume error path (Don Zickus) [1110939]
-- [usb] sierra: fix use after free at suspend/resume (Don Zickus) [1110939]
-- [usb] sierra: fix AA deadlock in open error path (Don Zickus) [1110939]
-- [usb] iowarrior: Convert local dbg macro to dev_dbg (Don Zickus) [1110939]
-- [usb] appledisplay: Convert /n to n (Don Zickus) [1110939]
-- [usb] qcserial: remove interface number matching (Don Zickus) [1110939]
-- [usb] qcserial: define and use Sierra Wireless layout (Don Zickus) [1110939]
-- [usb] qcserial: refactor device layout selection (Don Zickus) [1110939]
-- [usb] qcserial: fix multiline comment coding style (Don Zickus) [1110939]
-- [usb] Avoid runtime suspend loops for HCDs that can't handle suspend/resume (Don Zickus) [1110939]
-- [usb] xhci: rework command timeout and cancellation, (Don Zickus) [1110939]
-- [usb] Revert: xhci: replace xhci_read_64() with readq() (Don Zickus) [1110939]
-- [usb] Revert: xhci: replace xhci_write_64() with writeq() (Don Zickus) [1110939]
-- [usb] Revert: core: set lpm_capable field for LPM capable root hubs (Don Zickus) [1110939]
-- [usb] xhci: Use completion and status in global command queue (Don Zickus) [1110939]
-- [usb] xhci: Add a global command queue (Don Zickus) [1110939]
-- [usb] xhci: Use command structures when queuing commands on the command ring (Don Zickus) [1110939]
-- [usb] xhci: Report max device limit when Enable Slot command fails (Don Zickus) [1110939]
-- [usb] xhci: Use pci_enable_msix_exact() instead of pci_enable_msix() (Don Zickus) [1110939]
-- [usb] xhci: Use IS_ENABLED() macro (Don Zickus) [1110939]
-- [usb] catch attempts to submit urbs with a vmalloc'd transfer buffer (Don Zickus) [1110939]
-- [usb] xhci: fix wrong port number reported when setting USB2.0 hardware LPM (Don Zickus) [1110939]
-- [usb] Nokia 5300 should be treated as unusual dev (Don Zickus) [1110939]
-- [usb] Nokia 305 should be treated as unusual dev (Don Zickus) [1110939]
-- [usb] fsl: do not test for PHY_CLK_VALID bit on controller version 1.6 (Don Zickus) [1110939]
-- [usb] storage/shuttle_usbat: fix discs being detected twice (Don Zickus) [1110939]
-- [usb] qcserial: add a number of Dell devices (Don Zickus) [1110939]
-- [usb] ohci: fix problem with global suspend on ATI controllers (Don Zickus) [1110939]
-- [usb] option: add and update a number of CMOTech devices (Don Zickus) [1110939]
-- [usb] option: add Alcatel L800MA (Don Zickus) [1110939]
-- [usb] option: add Olivetti Olicard 500 (Don Zickus) [1110939]
-- [usb] qcserial: add Sierra Wireless MC7305/MC7355 (Don Zickus) [1110939]
-- [usb] qcserial: add Sierra Wireless MC73xx (Don Zickus) [1110939]
-- [usb] qcserial: add Sierra Wireless EM7355 (Don Zickus) [1110939]
-- [usb] io_ti: fix firmware download on big-endian machines (Don Zickus) [1110939]
-- [usb] xhci: fix compilation warning when !CONFIG_PCI && !CONFIG_PM (Don Zickus) [1110939]
-- [usb] xhci: extend quirk for Renesas cards (Don Zickus) [1110939]
-- [usb] xhci: Switch Intel Lynx Point ports to EHCI on shutdown (Don Zickus) [1110939]
-- [usb] xhci: Prefer endpoint context dequeue pointer over stopped_trb (Don Zickus) [1110939]
-- [usb] ftdi-elan: Use pr_<level> (Don Zickus) [1110939]
-- [usb] ftdi-elan: Coalesce string fragment (Don Zickus) [1110939]
-- [usb] ftdi-elan: Coalesce formats (Don Zickus) [1110939]
-- [usb] ftdi-elan: Convert leading spaces to tabs (Don Zickus) [1110939]
-- [usb] ftdi-elan: Fix format fragments (Don Zickus) [1110939]
-- [usb] serial: fix sysfs-attribute removal deadlock (Don Zickus) [1110939]
-- [usb] uas: fix deadlocky memory allocations (Don Zickus) [1110939]
-- [usb] uas: fix error handling during scsi_scan() (Don Zickus) [1110939]
-- [usb] uas: fix GFP_NOIO under spinlock (Don Zickus) [1110939]
-- [usb] cdc-acm: Remove Motorola/Telit H24 serial interfaces from ACM driver (Don Zickus) [1110939]
-- [usb] ehci-platform: Return immediately from suspend if ehci_suspend fails (Don Zickus) [1110939]
-- [usb] ehci-exynos: Return immediately from suspend if ehci_suspend fails (Don Zickus) [1110939]
-- [usb] fix crash during hotplug of PCI USB controller card (Don Zickus) [1110939]
-- [usb] cdc-acm: fix double usb_autopm_put_interface() in acm_port_activate() (Don Zickus) [1110939]
-- [usb] usb_wwan: fix handling of missing bulk endpoints (Don Zickus) [1110939]
-- [usb] pl2303: add ids for Hewlett-Packard HP POS pole displays (Don Zickus) [1110939]
-- [usb] cp210x: Add 8281 (Nanotec Plug & Drive) (Don Zickus) [1110939]
-- [usb] option driver, add support for Telit UE910v2 (Don Zickus) [1110939]
-- [usb] Revert: serial: add usbid for dell wwan card to sierra.c (Don Zickus) [1110939]
-- [usb] serial/ftdi_sio: add id for Brainboxes serial cards (Don Zickus) [1110939]
-- [net] usb: include wait queue head in device structure (Don Zickus) [1110939]
-- [usb] disable reset-resume when USB_QUIRK_RESET is set (Don Zickus) [1110939]
-- [usb] unbind all interfaces before rebinding any (Don Zickus) [1110939]
-- [usb] keyspan: remove dead debugging code (Don Zickus) [1110939]
-- [usb] serial: add missing newlines to dev_<level> messages (Don Zickus) [1110939]
-- [usb] serial: add missing braces (Don Zickus) [1110939]
-- [usb] serial: continue to write on errors (Don Zickus) [1110939]
-- [usb] serial: continue to read on errors (Don Zickus) [1110939]
-- [usb] serial: make bulk_out_size a lower limit (Don Zickus) [1110939]
-- [usb] cypress_m8: fix potential scheduling while atomic (Don Zickus) [1110939]
-- [usb] Revert: xhci: Limit arbitrarily-aligned scatter gather (Don Zickus) [1110939]
-- [usb] Make DELAY_INIT quirk wait 100ms between Get Configuration requests (Don Zickus) [1110939]
-- [usb] Add device quirk for Logitech HD Pro Webcams C920 and C930e (Don Zickus) [1110939]
-- [usb] xhci: add the meaningful IRQ description if it is empty (Don Zickus) [1110939]
-- [usb] xhci: Prevent runtime pm from autosuspending during initialization (Don Zickus) [1110939]
-- [usb] storage: accept some UAS devices if streams are unavailable (Don Zickus) [1110939]
-- [usb] xhci: Kill streams URBs when the host dies (Don Zickus) [1110939]
-- [usb] xhci: Refactor command watchdog and fix split string (Don Zickus) [1110939]
-- [usb] uas: Remove comment about registering a uas scsi controller for each usb bus (Don Zickus) [1110939]
-- [usb] uas: Add Hans de Goede as uas maintainer (Don Zickus) [1110939]
-- [usb] uas: remove BROKEN (Don Zickus) [1110939]
-- [usb] uas: Make sure sg elements are properly aligned (Don Zickus) [1110939]
-- [usb] uas: Add some data in/out ready iu sanity checks (Don Zickus) [1110939]
-- [usb] uas: Improve error reporting (Don Zickus) [1110939]
-- [usb] uas: Use the right error codes for different kinds of errors (Don Zickus) [1110939]
-- [usb] uas: Clear cmdinfo on command queue-ing (Don Zickus) [1110939]
-- [usb] uas: Fix memory management (Don Zickus) [1110939]
-- [usb] uas: Fix command / task mgmt submission racing with disconnect (Don Zickus) [1110939]
-- [usb] uas: cmdinfo - use only one list head (Don Zickus) [1110939]
-- [usb] uas: add uas_mark_cmd_dead helper function (Don Zickus) [1110939]
-- [usb] uas: Properly complete inflight commands on bus-reset or disconnect (Don Zickus) [1110939]
-- [usb] uas: uas_alloc_data_urb - Remove unnecessary use_streams check (Don Zickus) [1110939]
-- [usb] uas: Fix task-management not working when connected over USB-2 (Don Zickus) [1110939]
-- [usb] uas: Reset device on reboot (Don Zickus) [1110939]
-- [usb] uas: Add suspend/resume support (Don Zickus) [1110939]
-- [usb] uas: Use GFP_NOIO rather then GFP_ATOMIC where possible (Don Zickus) [1110939]
-- [usb] uas: Don't allow more then one task to run at the same time (Don Zickus) [1110939]
-- [usb] uas: task_mgmt - Kill the sense-urb if we fail to submit the cmd urb (Don Zickus) [1110939]
-- [usb] uas: Not being able to alloc streams when connected through usb-3 is an error (Don Zickus) [1110939]
-- [usb] uas: Verify endpoint descriptors from uas_use_uas_driver() (Don Zickus) [1110939]
-- [usb] uas: Drop fixed endpoint config handling (Don Zickus) [1110939]
-- [usb] uas: Move uas_find_endpoints to uas-detect.h (Don Zickus) [1110939]
-- [usb] uas: Fix bounds check in uas_find_endpoints (Don Zickus) [1110939]
-- [usb] uas: Add uas_find_endpoints() helper function (Don Zickus) [1110939]
-- [usb] uas: Honor no-uas quirk set in usb-storage's quirks module parameter (Don Zickus) [1110939]
-- [usb] storage: Modify and export adjust_quirks so that it can be used by uas (Don Zickus) [1110939]
-- [usb] storage: Don't bind to uas devices if the uas driver is enabled (Don Zickus) [1110939]
-- [usb] uas: Add the posibilty to blacklist uas devices from using the uas driver (Don Zickus) [1110939]
-- [usb] Reset USB-3 devices on USB-3 link bounce (Don Zickus) [1110939]
-- [usb] Clear host_endpoint->streams when implicitly freeing streams (Don Zickus) [1110939]
-- [usb] xhci: Handle MaxPSASize == 0 (Don Zickus) [1110939]
-- [usb] xhci: The trb_address_map radix tree expects 1KB segment memory aligment (Don Zickus) [1110939]
-- [usb] xhci: xhci_mem_cleanup - make sure cmd_ring_reserved_trbs really is 0 (Don Zickus) [1110939]
-- [usb] uas: Move uas detect code to uas-detect.h (Don Zickus) [1110939]
-- [usb] uas: Add a uas_find_uas_alt_setting helper function (Don Zickus) [1110939]
-- [usb] uas: Use all available stream ids (Don Zickus) [1110939]
-- [usb] uas: Pack iu struct definitions (Don Zickus) [1110939]
-- [usb] uas: Fix response iu struct definition (Don Zickus) [1110939]
-- [usb] uas: s/response_ui/response_iu/ (Don Zickus) [1110939]
-- [usb] uas: Fix reset handling for externally triggered reset (Don Zickus) [1110939]
-- [usb] uas: Fix reset locking (Don Zickus) [1110939]
-- [usb] uas: Fix uas not working when plugged into an ehci port (Don Zickus) [1110939]
-- [usb] uas: uas_alloc_cmd_urb - drop unused stream_id parameter (Don Zickus) [1110939]
-- [usb] uas: Avoid unnecessary unlock / lock calls around unlink_data_urbs (Don Zickus) [1110939]
-- [usb] uas: Properly set interface to altsetting 0 on probe failure (Don Zickus) [1110939]
-- [usb] uas: Urbs must be anchored before submitting them (Don Zickus) [1110939]
-- [usb] uas: replace BUG_ON() + WARN_ON() with WARN_ON_ONCE() (Don Zickus) [1110939]
-- [usb] uas: add dead request list (Don Zickus) [1110939]
-- [usb] uas: make work list per-device (Don Zickus) [1110939]
-- [usb] uas: properly reinitialize in uas_eh_bus_reset_handler (Don Zickus) [1110939]
-- [usb] fs: Add support for allocating / freeing streams (Don Zickus) [1110939]
-- [usb] fs: Add ep_to_host_endpoint helper function (Don Zickus) [1110939]
-- [usb] fs: Add support for bulk stream ids (Don Zickus) [1110939]
-- [usb] fs: proc_do_submiturb use a local variable for number_of_packets (Don Zickus) [1110939]
-- [usb] usbfs: Kill urbs on interface before doing a set_interface (Don Zickus) [1110939]
-- [usb] core: Free bulk streams on interface release (Don Zickus) [1110939]
-- [usb] core: Track if an endpoint has streams (Don Zickus) [1110939]
-- [usb] core: Move USB_MAXENDPOINTS definitions to usb.h (Don Zickus) [1110939]
-- [usb] core: Fix usb_free_streams return value documentation (Don Zickus) [1110939]
-- [usb] xhci: Remove segments from radix tree on failed insert (Don Zickus) [1110939]
-- [usb] xhci: use usb_ss_max_streams in xhci_check_streams_endpoint (Don Zickus) [1110939]
-- [usb] xhci: For streams the dequeue ptr must be read from the stream ctx (Don Zickus) [1110939]
-- [usb] xhci: Set SCT field for Set TR dequeue on streams (Don Zickus) [1110939]
-- [usb] xhci: For streams the css flag most be read from the stream-ctx on ep stop (Don Zickus) [1110939]
-- [usb] xhci: Check size rather then number of streams when allocating stream ctxs (Don Zickus) [1110939]
-- [usb] xhci: Free streams when they are still allocated on a set_interface call (Don Zickus) [1110939]
-- [usb] xhci: fix usb3 streams (Don Zickus) [1110939]
-- [usb] xhci: make warnings greppable (Don Zickus) [1110939]
-- [usb] xhci: Change how we indicate a host supports Link PM (Don Zickus) [1110939]
-- [usb] sisusb: Use static const, fix typo (Don Zickus) [1110939]
-- [usb] hub: usb_ext_cap_descriptor.bmAttributes is le32 (Don Zickus) [1110939]
-- [usb] hub: debug message for failing to enable device (Don Zickus) [1110939]
-- [usb] ehci: fix deadlock when threadirqs option is used (Don Zickus) [1110939]
-- [usb] ftdi_sio: add Cressi Leonardo PID (Don Zickus) [1110939]
-- [usb] complain if userspace resets an active endpoint (Don Zickus) [1110939]
-- [usb] serial/option: blacklist interface 4 for Cinterion PHS8 and PXS8 (Don Zickus) [1110939]
-- [usb] ehci: add delay during suspend to prevent erroneous wakeups (Don Zickus) [1110939]
-- [usb] xhci: Change compatible string from xhci-platform to generic-xhci (Don Zickus) [1110939]
-- [usb] uhci-platform: Change compatible string from platform-uhci to generic-uhci (Don Zickus) [1110939]
-- [usb] option: blacklist ZTE MF667 net interface (Don Zickus) [1110939]
-- [usb] misc/usbled: Add Riso Kagaku Webmail Notifier (Don Zickus) [1110939]
-- [usb] elan: Remove useless "default M" lines (Don Zickus) [1110939]
-- [usb] Revert: xhci: Link TRB must not occur within a USB payload burst (Don Zickus) [1110939]
-- [usb] Revert: xhci: Avoid infinite loop when sg urb requires too many trbs (Don Zickus) [1110939]
-- [usb] Revert: xhci: Set scatter-gather limit to avoid failed block writes (Don Zickus) [1110939]
-- [usb] xhci: Limit arbitrarily-aligned scatter gather (Don Zickus) [1110939]
-- [usb] delete non-required instances of include <linux/init.h> (Don Zickus) [1110939]
-- [usb] hub set hub->change_bits when over-current happens (Don Zickus) [1110939]
-- [usb] xhci: Set scatter-gather limit to avoid failed block writes (Don Zickus) [1110939]
-- [usb] xhci: Avoid infinite loop when sg urb requires too many trbs (Don Zickus) [1110939]
-- [usb] ftdi_sio: added CS5 quirk for broken smartcard readers (Don Zickus) [1110939]
-- [usb] core: correct spelling mistakes in comments and warning (Don Zickus) [1110939]
-- [usb] fix race between hub_disconnect and recursively_mark_NOTATTACHED (Don Zickus) [1110939]
-- [usb] oti6858: switch to generic TIOCMIWAIT implementation (Don Zickus) [1110939]
-- [usb] oti6858: only wake up MSR queue on changes (Don Zickus) [1110939]
-- [usb] ch341: clean up interrupt handler (Don Zickus) [1110939]
-- [usb] ch341: switch to generic TIOCMIWAIT implementation (Don Zickus) [1110939]
-- [usb] ch341: only wake up MSR queue on changes (Don Zickus) [1110939]
-- [usb] ch341: fix ignored TIOCMIWAIT mask (Don Zickus) [1110939]
-- [usb] ch341: clean up line-status handling (Don Zickus) [1110939]
-- [usb] ch341: refactor line-status handling (Don Zickus) [1110939]
-- [usb] cypress_m8: switch to generic TIOCMIWAIT implementation (Don Zickus) [1110939]
-- [usb] cypress_m8: only wake up MSR queue on changes (Don Zickus) [1110939]
-- [usb] cypress_m8: clean up protocol definitions (Don Zickus) [1110939]
-- [usb] cypress_m8: fix ring-indicator detection and reporting (Don Zickus) [1110939]
-- [usb] Nokia 502 is an unusual device (Don Zickus) [1110939]
-- [usb] serial: add support for iBall 3.5G connect usb modem (Don Zickus) [1110939]
-- [usb] serial: correct spelling mistakes in comments (Don Zickus) [1110939]
-- [usb] misc/idmouse: correct spelling mistake in error string (Don Zickus) [1110939]
-- [usb] yurex: fix spelling mistake in comment (Don Zickus) [1110939]
-- [usb] iowarrior: fix spelling mistake in comment (Don Zickus) [1110939]
-- [usb] serial: remove redundant OOM messages (Don Zickus) [1110939]
-- [usb] serial: clean up ioctl debugging (Don Zickus) [1110939]
-- [usb] serial: constify device-id tables (Don Zickus) [1110939]
-- [usb] core: remove CONFIG_USB_DEBUG usage (Don Zickus) [1110939]
-- [usb] cdc-wdm: avoid hanging on zero length reads (Don Zickus) [1110939]
-- [usb] xhci: Check for XHCI_PLAT in xhci_cleanup_msix() (Don Zickus) [1110939]
-- [usb] Mark function as static in metro-usb.c (Don Zickus) [1110939]
-- [usb] Mark function as static in usbsevseg.c (Don Zickus) [1110939]
-- [usb] option: add new zte 3g modem pids to option driver (Don Zickus) [1110939]
-- [usb] usbtest: Always clear halt else further tests will fail (Don Zickus) [1110939]
-- [usb] usbtest: Add timetout to simple_io() (Don Zickus) [1110939]
-- [usb] xhci: Remove unused variable 'addr' in inc_deq() and inc_enq() (Don Zickus) [1110939]
-- [usb] usbtest: Fix BOS control test for USB 2.01 devices (Don Zickus) [1110939]
-- [usb] xhci: Add quirks module option (Don Zickus) [1069460]
-- [usb] xhci: clarify logging in xhci_setup_device (Don Zickus) [1110939]
-- [usb] xhci: change enumeration scheme to 'new scheme' by default (Don Zickus) [1069460]
-- [usb] xhci: Limit the spurious wakeup fix only to HP machines (Don Zickus) [1069461]
-- [usb] core: get config and string descriptors for unauthorized devices (Don Zickus) [1110939]
-- [usb] core: allow isoc URBs for wireless devices with an interval < 6 (Don Zickus) [1110939]
-- [usb] serial/zte_ev: move support for ZTE AC2726 from zte_ev back to option (Don Zickus) [1110939]
-- [usb] cdc-wdm: manage_power should always set needs_remote_wakeup (Don Zickus) [1110939]
-- [usb] Revert: quirks: add touchscreen that is dazzeled by remote wakeup (Don Zickus) [1110939]
-- [usb] Use dev_is_pci() to check whether it is pci device (Don Zickus) [1110939]
-- [usb] usbtest: update bos test coverage to usb 2.1 device (Don Zickus) [1110939]
-- [usb] usbtest: fix the bit mask of usb 2.0 extension descriptor (Don Zickus) [1110939]
-- [usb] usbtest: add a test case to support bos for queue control (Don Zickus) [1110939]
-- [usb] fix coccinelle warnings (Don Zickus) [1110939]
-- [usb] hub: Use correct reset for wedged USB3 devices that are NOTATTACHED (Don Zickus) [1110939]
-- [usb] remove DEFINE_PCI_DEVICE_TABLE macro (Don Zickus) [1110939]
-- [usb] host: Remove superfluous name casts (Don Zickus) [1110939]
-- [usb] core: Remove superfluous name casts (Don Zickus) [1110939]
-- [usb] kill #undef VERBOSE_DEBUG (Don Zickus) [1110939]
-- [usb] kill DEBUG compile option (Don Zickus) [1110939]
-- [usb] uhci: compile debugfs conditional on CONFIG_DYNAMIC_DEBUG (Don Zickus) [1110939]
-- [usb] uhci: change dependency for debug parameter (Don Zickus) [1110939]
-- [usb] ehci: Remove debugging at every interrupt (Don Zickus) [1110939]
-- [usb] ehci: no conditional compilation for interestingness (Don Zickus) [1110939]
-- [usb] ohci: no conditional debugging in root hub hadling (Don Zickus) [1110939]
-- [usb] ohci: always register debug files (Don Zickus) [1110939]
-- [usb] ohci: kill ohci_vdbg (Don Zickus) [1110939]
-- [usb] ohci: remove conditional compilation (Don Zickus) [1110939]
-- [usb] net/cdc-acm: fix power management in ioctl (Don Zickus) [1110939]
-- [net] usb/cdc-acm: add TIOCGICOUNT (Don Zickus) [1110939]
-- [usb] net/cdc-acm: add TIOCMIWAIT (Don Zickus) [1110939]
-- [usb] option: support new huawei devices (Don Zickus) [1110939]
-- [usb] serial/option: blacklist interface 1 for Huawei E173s-6 (Don Zickus) [1110939]
-- [usb] xhci: replace xhci_write_64() with writeq() (Don Zickus) [1110939]
-- [usb] xhci: replace xhci_read_64() with readq() (Don Zickus) [1110939]
-- [usb] xhci: replace xhci_writel() with writel() (Don Zickus) [1110939]
-- [usb] xhci: replace xhci_readl() with readl() (Don Zickus) [1110939]
-- [usb] xhci: remove conversion from generic to pci device in xhci_mem.c (Don Zickus) [1110939]
-- [usb] xhci: fix incorrect type in assignment in xhci_count_num_dropped_endpoints() (Don Zickus) [1110939]
-- [usb] xhci: fix incorrect type in assignment in xhci_count_num_new_endpoints() (Don Zickus) [1110939]
-- [usb] xhci: remove unnecessary check in xhci_free_stream_info() (Don Zickus) [1110939]
-- [usb] xhci: fix SCT_FOR_CTX(p) macro (Don Zickus) [1110939]
-- [usb] xhci: replace USB_MAXINTERFACES with config->desc.bNumInterface (Don Zickus) [1110939]
-- [usb] xhci: fix incorrect type in assignment in xhci_address_device() (Don Zickus) [1110939]
-- [usb] xhci: fix sparse warning in xhci-trace.h (Don Zickus) [1110939]
-- [usb] xhci: fix derivation of TRB's DMA address in xhci_log_event Trace Event Class (Don Zickus) [1110939]
-- [usb] r8a66597-hcd: Convert to clk_prepare/unprepare (Don Zickus) [1110939]
-- [usb] serial: fix write memory-allocation flag (Don Zickus) [1110939]
-- [usb] serial: fix race in generic write (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: Export cdc_ncm_{tx, rx}_fixup functions for re-use (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: drop "extern" from header declarations (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove descriptor pointers (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove ncm_parm field (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove tx_speed and rx_speed fields (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove unused udev field (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove redundant netdev field (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: simplify and optimize frame padding (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove redundant endpoint pointers (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: remove redundant "intf" field (Don Zickus) [1110939]
-- [net] usb/cdc_ncm: add include protection to cdc_ncm.h (Don Zickus) [1110939]
-- [usb] ssb-hcd: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Don Zickus) [1110939]
-- [usb] bcma: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Don Zickus) [1110939]
-- [usb] usbtest: support container id descriptor test (Don Zickus) [1110939]
-- [usb] usbtest: support superspeed device capbility descriptor test (Don Zickus) [1110939]
-- [usb] usbtest: support usb2 extension descriptor test (Don Zickus) [1110939]
-- [usb] ehci-atmel: add usb_clk for transition to CCF (Don Zickus) [1110939]
-- [usb] cdc-wdm: ignore speed change notifications (Don Zickus) [1110939]
-- [usb] cdc-wdm: support back-to-back USB_CDC_NOTIFY_RESPONSE_AVAILABLE notifications (Don Zickus) [1110939]
-- [usb] usbtest: support bos descriptor test for usb 3.0 (Don Zickus) [1110939]
-- [usb] wusbcore: fix control-pipe directions (Don Zickus) [1110939]
-- [usb] wusbcore: fix panic in wusbhc_chid_set (Don Zickus) [1110939]
-- [usb] wusbcore: convert nested lock to use spin_lock instead of spin_lock_irq (Don Zickus) [1110939]
-- [usb] wusbcore: use multiple urbs for HWA iso transfer result frame reads (Don Zickus) [1110939]
-- [usb] wusbcore: combine iso transfer result frame reads when possible (Don Zickus) [1110939]
-- [usb] wusbcore: disable transfer notifications for Alereon HWAs (Don Zickus) [1110939]
-- [usb] wusbcore: don't mark WA_SEG_DTI_PENDING segs as done in urb_dequeue (Don Zickus) [1110939]
-- [usb] wusbcore: fix potential double list_del on urb dequeue (Don Zickus) [1110939]
-- [usb] wusbcore: fix compile warnings (Don Zickus) [1110939]
-- [usb] wusbcore: add info to HWA debug prints (Don Zickus) [1110939]
-- [usb] wusbcore: read actual_length bytes isoc in segments (Don Zickus) [1110939]
-- [usb] wusbcore: adjust iterator correctly when searching for ep comp descriptor (Don Zickus) [1110939]
-- [usb] wusbcore: add a convenience function for completing a transfer segment (Don Zickus) [1110939]
-- [usb] wusbcore: prevent urb dequeue and giveback race (Don Zickus) [1110939]
-- [usb] wusbcore: fix stranded URB after HWA unplug (Don Zickus) [1110939]
-- [usb] wusbcore: fix kernel panic on HWA unplug (Don Zickus) [1110939]
-- [usb] wusbcore: fix up coding style issues in wa-nep.c (Don Zickus) [1110939]
-- [usb] wusbcore: fix up coding style issues in wa-rpipe.c (Don Zickus) [1110939]
-- [usb] wusbcore: fix up coding style issues in wusbhc.c and wusbhc.h (Don Zickus) [1110939]
-- [usb] wusbcore: fix up line break coding style issues in mmc.c (Don Zickus) [1110939]
-- [usb] wusbcore: fix up line break coding style issues in security.c (Don Zickus) [1110939]
-- [usb] wusbcore: fix up line break coding style issues in wa-hc.h (Don Zickus) [1110939]
-- [usb] wusbcore: fix up minor coding style issues in cbaf.c (Don Zickus) [1110939]
-- [usb] wusbcore: correct spelling mistakes in comments and error string (Don Zickus) [1110939]
-- [usb] wusbcore: add debug prints to reservation and channel change (Don Zickus) [1110939]
-- [usb] wusbcore: add isochronous IN support to HWA (Don Zickus) [1110939]
-- [usb] wusbcore: set packet count correctly on isoc transfers (Don Zickus) [1110939]
-- [usb] wusbcore: move isoc_frame_index from wa_xfer to wa_seg (Don Zickus) [1110939]
-- [usb] wusbcore: use USB_CTRL_SET_TIMEOUT and USB_CTRL_GET_TIMEOUT (Don Zickus) [1110939]
-- [usb] wusbcore: fix short transfers (Don Zickus) [1110939]
-- [usb] wusbcore: return -ENOENT for unlinked URBs (Don Zickus) [1110939]
-- [usb] wusbcore: add more info to debug prints in urb_unlink path (Don Zickus) [1110939]
-- [usb] wusbcore: add calls to usb_hcd_link_urb_to_ep, usb_hcd_unlink_urb_from_ep, and (Don Zickus) [1110939]
-- [usb] wusbcore: fix deadlock in wusbhc_gtk_rekey (Don Zickus) [1110939]
-- [usb] wusbcore: do device lookup while holding the hc mutex (Don Zickus) [1110939]
-- [usb] wusbcore: send keepalives to unauthenticated devices (Don Zickus) [1110939]
-- [usb] wusbcore: change WA_SEGS_MAX to a legal value (Don Zickus) [1110939]
-- [usb] wusbcore: add a quirk for Alereon HWA device isoc behavior (Don Zickus) [1110939]
-- [usb] wusbcore: combine multiple isoc frames in a single transfer request (Don Zickus) [1110939]
-- [usb] wusbcore: set the RPIPE wMaxPacketSize value correctly (Don Zickus) [1110939]
-- [usb] wusbcore: fix usb_dev leaks (Don Zickus) [1110939]
-- [usb] wusbcore: serialize access to the HWA data out endpoint (Don Zickus) [1110939]
-- [usb] wusbcore: fix string formatting warnings on 64-bit builds (Don Zickus) [1110939]
-- [usb] wusbcore: add support for isoc out transfers (Don Zickus) [1110939]
-- [usb] wusbcore: set the RPIPE bOverTheAirInterval for isoc endpoints (Don Zickus) [1110939]
-- [usb] wusbcore: avoid stack overflow in URB enqueue error path (Don Zickus) [1110939]
-- [usb] wusbcore: fix build warning on 64-bit builds (Don Zickus) [1110939]
-- [usb] wusbcore: clean up urb dequeue process (Don Zickus) [1110939]
-- [usb] wusbcore: include the xfer_id in debug prints (Don Zickus) [1110939]
-- [usb] wusbcore: fix endianess issues when using dwTransferID (Don Zickus) [1110939]
-- [usb] wusbcore: set pointers to NULL after freeing in error cases (Don Zickus) [1110939]
-- [usb] wusbcore: clean up the sg list that was created for out transfers (Don Zickus) [1110939]
-- [usb] wusbcore: resource cleanup fix in __wa_xfer_setup_segs (Don Zickus) [1110939]
-- [usb] wusbcore: allow wa_xfer_destroy to clean up partially constructed xfers (Don Zickus) [1110939]
-- [usb] wusbcore: rename fields in struct wahc (Don Zickus) [1110939]
-- [usb] wusbcore: rename urb to tr_urb in struct wa_seg (Don Zickus) [1110939]
-- [usb] wusbcore: use list_move_tail instead of list_del/list_add_tail (Don Zickus) [1110939]
-- [usb] usbtest: fix checkpatch warning as sizeof code style (Don Zickus) [1110939]
-- [usb] uhci: check for wakeup/suspend race (Don Zickus) [1110939]
-- [usb] ehci: add check for wakeup/suspend race (Don Zickus) [1110939]
-- [usb] change dev_warn about missing reset-resume to dev_dbg (Don Zickus) [1110939]
-- [usb] ohci: fix and explain sparse errors (Don Zickus) [1110939]
-- [usb] ehci: fix sparse errors (Don Zickus) [1110939]
-- [usb] ehci: fix type mismatch in check_intr_schedule (Don Zickus) [1110939]
-- [usb] wusbcore: preserve endianness of cached descriptors (Don Zickus) [1110939]
-- [usb] xhci: remove the unused ->address field (Don Zickus) [1032371]
-- [usb] xhci: kill a conditional when toggling cycle (Don Zickus) [1032371]
-- [usb] hub_activate kill an 'else' (Don Zickus) [1032371]
-- [usb] hub: Clear Port Reset Change during init/resume (Don Zickus) [1110939]
-- [usb] core/devio: Spaces to tabs for proc_control_compat() (Don Zickus) [1110939]
-- [usb] core/devio: Spaces to tabs for proc_reapurbnonblock() (Don Zickus) [1110939]
-- [usb] xhci: replace 'event' with 'cmd_comp_code' in set_deq and reset_ep handlers (Don Zickus) [1032371]
-- [usb] xhci: add argument 'slot_id' in stop_ep, set_deq and reset_ep cmd handlers (Don Zickus) [1032371]
-- [usb] xhci: replace 'xhci->cmd_ring->dequeue' with 'trb' in stop_ep cmd handler (Don Zickus) [1032371]
-- [usb] xhci: add variable 'cmd_type' in handle_cmd_completion() (Don Zickus) [1032371]
-- [usb] xhci: add variable 'cmd_trb' in handle_cmd_completion() (Don Zickus) [1032371]
-- [usb] xhci: add variable 'cmd_comp_code' in handle_cmd_completion() (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_CONFIG_EP case into function (Don Zickus) [1032371]
-- [usb] xhci: remove unused 'ep_ring' variable in handle_cmd_completion() (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_EVAL_CONTEXT case into function (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_NEC_GET_FW case into function (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_RESET_DEV case into function (Don Zickus) [1032371]
-- [usb] xhci: use completion event's slot id rather than dig it out of command (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_ADDR_DEV case into function (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_DISABLE_SLOT case into function (Don Zickus) [1032371]
-- [usb] xhci: refactor TRB_ENABLE_SLOT case into function (Don Zickus) [1032371]
-- [usb] xhci: rename existing Command Completion Event handlers (Don Zickus) [1032371]
-- [usb] xhci: remove unused argument from xhci_giveback_urb_in_irq() (Don Zickus) [1032371]
-- [usb] xhci: correct the usage of USB_CTRL_SET_TIMEOUT (Don Zickus) [1032371]
-- [usb] xhci: Staticize xhci_del_comp_mod_timer (Don Zickus) [1032371]
-- [usb] Push USB2 LPM disable on disconnect into USB core (Don Zickus) [1032371]
-- [usb] xhci: Enable LPM support only for hardwired or BESL devices (Don Zickus) [1032371]
-- [usb] Don't enable USB 2.0 Link PM by default (Don Zickus) [1032371]
-- [usb] xhci: Set L1 device slot on USB2 LPM enable/disable (Don Zickus) [1032371]
-- [usb] Disable USB 2.0 Link PM before device reset (Don Zickus) [1110939]
-- [usb] hcd: remove unnecessary local_irq_save (Don Zickus) [1110939]
-- [usb] ehci: start new isochronous streams ASAP (Don Zickus) [1110939]
-- [usb] ehci: create per-TT bandwidth tables (Don Zickus) [1110939]
-- [usb] core/hub: Comments shouldnt be C99 // comment style (Don Zickus) [1110939]
-- [usb] core/file: moved asterisk to variable name (Don Zickus) [1110939]
-- [usb] core: {file, hub, sysfs, usb}.c - Whitespace fixes (Don Zickus) [1110939]
-- [usb] mos7840: fix tiocmget error handling (Don Zickus) [1110939]
-- [usb] serial: export usb_serial_generic_write_start (Don Zickus) [1110939]
-- [usb] serial: add memory flags to usb_serial_generic_write_start (Don Zickus) [1110939]
-- [usb] serial: clean up comments in generic driver (Don Zickus) [1110939]
-- [usb] core/hcd: converted busmap from struct to bitmap (Don Zickus) [1110939]
-- [usb] add a private-data pointer to struct usb_tt (Don Zickus) [1110939]
-- [usb] ehci: use a bandwidth-allocation table (Don Zickus) [1110939]
-- [usb] ehci: create a "periodic schedule info" struct (Don Zickus) [1110939]
-- [usb] ehci: use consistent NO_FRAME value (Don Zickus) [1110939]
-- [usb] ehci: change toggle only upon successful reset (Don Zickus) [1110939]
-- [usb] ehci: No SSPLIT allowed in uframe 7 (Don Zickus) [1110939]
-- [usb] ehci: compute full-speed bandwidth usage correctly (Don Zickus) [1110939]
-- [usb] ehci: check the right uframes for CSPLIT (Don Zickus) [1110939]
-- [usb] NS_TO_US should round up (Don Zickus) [1110939]
-- [usb] anchor: Delay usb_wait_anchor_empty_timeout wake up till completion is done (Don Zickus) [1110939]
-- [usb] anchor: Ensure poisened gets initialized to 0 (Don Zickus) [1110939]
-- [usb] cyberjack: fix buggy integer overflow test (Don Zickus) [1110939]
-- [usb] host: bugfix - Return length of copied buffer in uhci_hub_control() (Don Zickus) [1110939]
-- [usb] host: uhci-platform - remove deprecated IRQF_DISABLED (Don Zickus) [1110939]
-- [usb] core/hcd: if-else-braces fixed (Don Zickus) [1110939]
-- [usb] core/hcd: removed braces for return statements (Don Zickus) [1110939]
-- [usb] core/hcd: replaced C99 // comments (Don Zickus) [1110939]
-- [usb] core/hcd: Whitespace fixes (Don Zickus) [1110939]
-- [usb] core/hcd: moved asterix to variable (Don Zickus) [1110939]
-- [usb] host: Use existing macros instead of hard-coded values in uhci-debug.c (Don Zickus) [1110939]
-- [usb] remove intel_mid_otg.h (Don Zickus) [1110939]
-- [usb] wusbcore: Add isoc transfer type enum and packet definitions (Don Zickus) [1110939]
-- [usb] wusbcore: implement hwahc_op_get_frame_number (Don Zickus) [1110939]
-- [usb] ohci: use amd_chipset_type to filter for SB800 prefetch (Don Zickus) [1110939]
-- [usb] ehci: use amd_chipset_type to filter for usb subsystem hang bug (Don Zickus) [1110939]
-- [usb] ohci: ohci_init_driver() - sanity check overrides (Don Zickus) [1110939]
-- [usb] core: usb_amd_resume_quirk() can be static (Don Zickus) [1110939]
-- [usb] pci-quirks: amd_chipset_sb_type_init() can be static (Don Zickus) [1110939]
-- [usb] serial: invoke dcd_change ldisc's handler (Don Zickus) [1110939]
-- [usb] serial: call handle_dcd_change in ftdi driver (Don Zickus) [1110939]
-- [usb] correct the usb_disconnect() comment about usb_bus_list_lock (Don Zickus) [1110939]
-- [usb] fix substandard locking for the sysfs files (Don Zickus) [1110939]
-- [usb] usbtest: bmAttributes would better be masked (Don Zickus) [1110939]
-- [usb] core: implement AMD remote wakeup quirk (Don Zickus) [1110939]
-- [usb] pci-quirks: refactor AMD quirk to abstract AMD chipset types (Don Zickus) [1110939]
-- [usb] host: delete chipidea dependency (Don Zickus) [1110939]
-- [usb] ohci/uhci: add soft dependencies on ehci_pci (Don Zickus) [1110939]
-- [usb] ehci: support running URB giveback in tasklet context"" (Don Zickus) [1110939]
-- [usb] core: fix read of usbdevfs_ctrltransfer fields in proc_control() (Don Zickus) [1110939]
-- [usb] core: fix incorrect type in assignment in usb_set_lpm_parameters() (Don Zickus) [1110939]
-- [usb] core: Make usb_free_streams return an error (Don Zickus) [1110939]
-- [usb] ehci: handle isochronous underruns with tasklets (Don Zickus) [1110939]
-- [usb] ehci: code rearrangement in iso_stream_schedule() (Don Zickus) [1110939]
-- [usb] see if URB comes from a completion handler (Don Zickus) [1110939]
-
-* Mon Sep 29 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-173.el7]
-- [crypto] pefile: Relax the check on the length of the PKCS#7 cert (Vivek Goyal) [852066]
-- [kernel] kexec, purgatory: add clean-up for purgatory directory (Vivek Goyal) [852066]
-- [x86] purgatory: use approprate -m64/-32 build flag for arch/x86/purgatory (Vivek Goyal) [852066]
-- [kernel] kexec: remove CONFIG_KEXEC dependency on crypto (Vivek Goyal) [852066]
-- [kernel] kexec: create a new config option CONFIG_KEXEC_FILE for new syscall (Vivek Goyal) [852066]
-- [kernel] resource: fix the case of null pointer access (Vivek Goyal) [852066]
-- [kernel] kexec: verify the signature of signed PE bzImage (Vivek Goyal) [852066]
-- [kernel] kexec: support kexec/kdump on EFI systems (Vivek Goyal) [852066]
-- [kernel] kexec: support for kexec on panic using new system call (Vivek Goyal) [852066]
-- [x86] kexec-bzimage64: support for loading bzImage using 64bit entry (Vivek Goyal) [852066]
-- [kernel] kexec: load and relocate purgatory at kernel load time (Vivek Goyal) [852066]
-- [x86] purgatory: core purgatory functionality (Vivek Goyal) [852066]
-- [x86] purgatory/sha256: provide implementation of sha256 in purgaotory context (Vivek Goyal) [852066]
-- [kernel] kexec: implementation of new syscall kexec_file_load (Vivek Goyal) [852066]
-- [kernel] kexec: new syscall kexec_file_load() declaration (Vivek Goyal) [852066]
-- [kernel] kexec: make kexec_segment user buffer pointer a union (Vivek Goyal) [852066]
-- [kernel] resource: provide new functions to walk through resources (Vivek Goyal) [852066]
-- [kernel] kexec: use common function for kimage_normal_alloc() and kimage_crash_alloc() (Vivek Goyal) [852066]
-- [kernel] kexec: move segment verification code in a separate function (Vivek Goyal) [852066]
-- [kernel] kexec: rename unusebale_pages to unusable_pages (Vivek Goyal) [852066]
-- [scripts] build bin2c based on config option CONFIG_BUILD_BIN2C (Vivek Goyal) [852066]
-- [scripts] bin2c: move bin2c in scripts/basic (Vivek Goyal) [852066]
-- [kernel] kexec: convert printk to pr_foo() (Vivek Goyal) [852066]
-- [kernel] kexec/compat: convert to COMPAT_SYSCALL_DEFINE with changing parameter types (Vivek Goyal) [852066]
-- [kernel] kexec: use vscnprintf() instead of vsnprintf() in vmcoreinfo_append_str() (Vivek Goyal) [852066]
-- [kernel] kexec: add sysctl to disable kexec_load (Vivek Goyal) [852066]
-- [kernel] kexec: Typo s/the/then/ (Vivek Goyal) [852066]
-- [kernel] kexec: remove unnecessary return (Vivek Goyal) [852066]
-- [asm] crash: Remove the original asm/crash.h files (Vivek Goyal) [852066]
-- [asm] crash: Rename crash.h to crash-driver.h (Vivek Goyal) [852066]
-- [x86] boot: Remove misc.h inclusion from compressed/string.c (Vivek Goyal) [852066]
-- [x86] boot: Do not include boot.h in string.c (Vivek Goyal) [852066]
-- [x86] boot: Move memset() definition in compressed/string.c (Vivek Goyal) [852066]
-- [x86] boot: Move memcmp() into string.h and string.c (Vivek Goyal) [852066]
-- [x86] boot: Move optimized memcpy() 32/64 bit versions to compressed/string.c (Vivek Goyal) [852066]
-- [x86] boot: Create a separate string.h file to provide standard string functions (Vivek Goyal) [852066]
-- [x86] boot: Undef memcmp before providing a new definition (Vivek Goyal) [852066]
-
-* Mon Sep 29 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-172.el7]
-- [fs] nfsd4: fix rd_dircount enforcement ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add some comments to the nfsd4 object definitions ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove the client_mutex and the nfs4_lock/unlock_state wrappers ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove nfs4_lock_state: nfs4_state_shutdown_net ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove nfs4_lock_state: nfs4_laundromat ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): reclaim_complete() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): setclientid, setclientid_confirm, renew ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): exchange_id, create/destroy_session() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_open and nfsd4_open_confirm ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_delegreturn() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_open_downgrade + nfsd4_close ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_lock/locku/lockt() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_release_lockowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfsd4_test_stateid/nfsd4_free_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove nfs4_lock_state(): nfs4_preprocess_stateid_op() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove old fault injection infrastructure ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add more granular locking to *_delegations fault injectors ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add more granular locking to forget_openowners fault injector ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add more granular locking to forget_locks fault injector ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a list_head arg to nfsd_foreach_client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add nfsd_inject_forget_clients ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a forget_client set_clnt routine ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a forget_clients "get" routine with proper locking ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: abstract out the get and set routines into the fault injection ops ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: protect clid and verifier generation with client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: don't destroy clients that are busy ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Put the reference of nfs4_file when freeing stid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: don't destroy client if mark_client_expired_locked fails ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: move unhash_client_locked call into mark_client_expired_locked ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: protect the close_lru list and oo_last_closed_stid with client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add lockdep assertions to document the nfs4_client/session locking ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure lookup_clientid() takes client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect nfsd4_destroy_clientid using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect session creation and client confirm using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect unconfirmed client creation using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Move create_client() call outside the lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Don't require client_lock in free_client ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure that the laundromat unhashes the client before releasing locks ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure struct nfs4_client is unhashed before we try to destroy it ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: fix out of date comment ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Decrease nfsd_users in nfsd_startup_generic fail ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: rename unhash_generic_stateid to unhash_ol_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: don't thrash the cl_lock while freeing an open stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: reduce cl_lock thrashing in release_openowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: close potential race in nfsd4_free_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: optimize destroy_lockowner cl_lock thrashing ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add locking to stateowner release ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up and reorganize release_lockowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Move the open owner hash table into struct nfs4_client ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect adding/removing lock owners using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect adding/removing open state owners using client_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: don't allow CLOSE to proceed until refcount on stateid drops ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: make openstateids hold references to their openowners ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up refcounting for lockowners ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Make lock stateid take a reference to the lockowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add an operation for unhashing a stateowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up lockowner refcounting when finding them ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add a mutex to protect the NFSv4.0 open owner replay cache ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add reference counting to state owners ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Migrate the stateid reference into nfs4_find_stateid_by_type() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Migrate the stateid reference into nfs4_lookup_stateid() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Migrate the stateid reference into nfs4_preprocess_seqid_op ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add reference counting to nfs4_preprocess_confirmed_seqid_op ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd4_open_confirm() must reference the open stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Prepare nfsd4_close() for open stateid referencing ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd4_process_open2() must reference the open stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd4_process_open2() must reference the delegation stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure that nfs4_open_delegation() references the delegation stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd4_locku() must reference the lock stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add reference counting to lock stateids ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: ensure atomicity in nfsd4_free_stateid and nfsd4_validate_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up races in lock stateid searching and creation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add locking to protect the state owner lists ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: do filp_close in sc_free callback for lock stateids ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: use cl_lock to synchronize all stateid idr calls ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add a struct nfs4_file field to struct nfs4_stid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add reference counting to the lock and open stateids ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: print status when nfsd4_open fails to open file it just created ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] sunrpc: Allow svc_reserve() to notify TCP socket that space has been freed ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] sunrpc: svc_tcp_write_space: don't clear SOCK_NOSPACE prematurely ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] sunrpc: Reduce contention in svc_xprt_enqueue() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove dl_fh field from struct nfs4_delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: give block_delegation and delegation_blocked its own spinlock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up nfs4_set_delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up arguments to nfs4_open_delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: drop unused stp arg to alloc_init_deleg ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Convert delegation counter to an atomic_long_t type ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: ensure that clp->cl_revoked list is protected by clp->cl_lock ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fully unhash delegations when revoking them ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: simplify stateid allocation and file handling ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Do not let nfs4_file pin the struct inode ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfs4_check_fh - make it actually check the filehandle ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Use the filehandle to look up the struct nfs4_file instead of inode ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Store the filehandle with the struct nfs4_file ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: convert comma to semicolon ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] svcrdma: Double the default credit limit ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: ensure that st_access_bmap and st_deny_bmap are initialized to 0 ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: bump dl_time when unhashing delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Move the delegation reference counter into the struct nfs4_stid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fix race that grants unrecallable delegation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: CREATE_SESSION should update backchannel immediately ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] svcrdma: Select NFSv4.1 backchannel transport based on forward channel ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: zero op arguments beyond the 8th compound op ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: silence sparse warning about accessing credentials ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure stateids remain unique until they are freed ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfs4_alloc_init_lease should take a nfs4_file arg ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Avoid taking state_lock while holding inode lock in nfsd_break_one_deleg ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: eliminate nfsd4_init_callback ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Fix bad checking of space for padding in splice read ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: cleanup and rename nfs4_check_open ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: make deny mode enforcement more efficient and close races in it ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: always hold the fi_lock when bumping fi_access refcounts ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up reset_union_bmap_deny ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: set stateid access and deny bits in nfs4_get_vfs_file ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: shrink st_access_bmap and st_deny_bmap ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: remove nfs4_file_put_fd ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: refactor nfs4_file_get_access and nfs4_file_put_access ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up helper __release_lock_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add locking to the nfs4_file->fi_fds[] array ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Add fine grained protection for the nfs4_file->fi_stateids list ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: reduce some spinlocking in put_client_renew ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: close potential race between delegation break and laundromat ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Fix crash encoding lock reply on 32-bit ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Convert nfs4_check_open_reclaim() to work with lookup_clientid() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Always use lookup_clientid() in nfsd4_process_open1 ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Convert nfsd4_process_open1() to work with lookup_clientid() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Allow struct nfsd4_compound_state to cache the nfs4_client ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a nfserrno mapping for -E2BIG to nfserr_fbig ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: properly convert return from commit_metadata to __be32 ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Cleanup - Let nfsd4_lookup_stateid() take a cstate argument ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Don't get a session reference without a client reference ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up nfsd4_release_lockowner ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: NFSv4 lock-owners are not associated to a specific file ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Allow lockowners to hold several stateids ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: lock owners are not per open stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up nfsd4_close_open_stateid ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: declare v4.1+ openowners confirmed on creation ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Cleanup nfs4svc_encode_compoundres ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfs4_preprocess_seqid_op should only set *stpp on success ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add a new /proc/fs/nfsd/max_connections file ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Ensure that nfsd_create_setattr commits files to stable storage ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Remove iattr parameter from nfsd_symlink() ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Protect addition to the file_hashtbl ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fix file access refcount leak when nfsd4_truncate fails ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Avoid warning message when compile at i686 arch ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: replace defer_free by svcxdr_tmpalloc ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: remove nfs4_acl_new ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: define svcxdr_dupstr to share some common code ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: remove unused defer_free argument ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd4: rename cr_linkname->cr_data ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: let nfsd_symlink assume null-terminated data ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: make NFSv2 null terminate symlink data ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Fix bad reserving space for encoding rdattr_error ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfs: fix nfs4d readlink truncated packet ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fix rare symlink decoding bug ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: properly handle embedded newlines in fault_injection input ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: fix return of nfs4_acl_write_who ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add appropriate __force directives to filehandle generation code ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: nfsd_splice_read and nfsd_readv should return __be32 ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: clean up sparse endianness warnings in nfscache.c ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: add __force to opaque verifier field casts ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Using exp_get for export getting ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Using path_get when assigning path for export ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] sunrpc/nfsd: Change to type of bool for rq_usedeferral and rq_splice_ok ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsd: Using min/max/min_t/max_t for calculate ("J. Bruce Fields") [1044798 1123721 1141932]
-- [fs] nfsv4: Fix another bug in the close/open_downgrade code (Steve Dickson) [1111708]
-- [fs] nfsv4: nfs4_state_manager() vs. nfs_server_remove_lists() (Steve Dickson) [1111708]
-- [fs] nfs: remove BUG possibility in nfs4_open_and_get_state (Steve Dickson) [1111708]
-- [fs] pnfs: fix filelayout_retry_commit when idx > 0 (Steve Dickson) [1111708]
-- [fs] nfs: revert "nfs4: queue free_lock_state job submission to nfsiod" (Steve Dickson) [1111708]
-- [fs] nfs: fix kernel warning when removing proc entry (Steve Dickson) [1111708]
-- [fs] nfs: Fix /proc/fs/nfsfs/servers and /proc/fs/nfsfs/volumes (Steve Dickson) [1111708]
-- [fs] nfsv3: Fix another acl regression (Steve Dickson) [1111708]
-- [fs] nfsv4: Don't clear the open state when we just did an OPEN_DOWNGRADE (Steve Dickson) [1111708]
-- [fs] nfsv4: Fix problems with close in the presence of a delegation (Steve Dickson) [1111708]
-- [fs] nfs: Don't busy-wait on SIGKILL in __nfs_iocounter_wait (Steve Dickson) [1111708]
-- [fs] nfs: can_coalesce_requests must enforce contiguity (Steve Dickson) [1111708]
-- [fs] nfs: disallow duplicate pages in pgio page vectors (Steve Dickson) [1111708]
-- [fs] nfs: don't sleep with inode lock in lock_and_join_requests (Steve Dickson) [1111708]
-- [fs] nfs: fix error handling in lock_and_join_requests (Steve Dickson) [1111708]
-- [fs] nfs: fix nonblocking calls to nfs_page_group_lock (Steve Dickson) [1111708]
-- [fs] nfs: use blocking page_group_lock in add_request (Steve Dickson) [1111708]
-- [fs] nfs: change nfs_page_group_lock argument (Steve Dickson) [1111708]
-- [fs] nfs: reject changes to resvport and sharecache during remount (Steve Dickson) [1111708]
-- [fs] nfs: Avoid infinite loop when RELEASE_LOCKOWNER getting expired error (Steve Dickson) [1111708]
-- [fs] sunrpc: remove all refcounting of groupinfo from rpcauth_lookupcred (Steve Dickson) [1111708]
-- [fs] nfs: fix two problems in lookup_revalidate in RCU-walk (Steve Dickson) [1111708]
-- [fs] nfs: allow lockless access to access_cache (Steve Dickson) [1111708]
-- [fs] nfs: teach nfs_lookup_verify_inode to handle LOOKUP_RCU (Steve Dickson) [1111708]
-- [fs] nfs: teach nfs_neg_need_reval to understand LOOKUP_RCU (Steve Dickson) [1111708]
-- [fs] nfs: support RCU_WALK in nfs_permission() (Steve Dickson) [1111708]
-- [fs] sunrpc/auth: allow lockless (rcu) lookup of credential cache (Steve Dickson) [1111708]
-- [fs] nfs: prepare for RCU-walk support but pushing tests later in code (Steve Dickson) [1111708]
-- [fs] nfs: nfs4_lookup_revalidate: only evaluate parent if it will be used (Steve Dickson) [1111708]
-- [fs] nfs: add checks for returned value of try_module_get() (Steve Dickson) [1111708]
-- [fs] nfs: clear_request_commit while holding i_lock (Steve Dickson) [1111708]
-- [fs] pnfs: add pnfs_put_lseg_async (Steve Dickson) [1111708]
-- [fs] pnfs: find swapped pages on pnfs commit lists too (Steve Dickson) [1111708]
-- [fs] nfs: fix comment and add warn_on for PG_INODE_REF (Steve Dickson) [1111708]
-- [fs] nfs: mark nfs_page reqs with flag for extra ref (Steve Dickson) [1111708]
-- [fs] nfs: check wait_on_bit_lock err in page_group_lock (Steve Dickson) [1111708]
-- [fs] nfs: handle multiple reqs in nfs_page_async_flush (Steve Dickson) [1111708]
-- [fs] nfs: change find_request to find_head_request (Steve Dickson) [1111708]
-- [fs] sunrpc: remove "ec" argument from encrypt_v2 operation (Steve Dickson) [1111708]
-- [fs] sunrpc: clean up sparse endianness warnings in gss_krb5_wrap.c (Steve Dickson) [1111708]
-- [fs] sunrpc: clean up sparse endianness warnings in gss_krb5_seal.c (Steve Dickson) [1111708]
-- [fs] sunrpc: fix RCU handling of gc_ctx field (Steve Dickson) [1111708]
-- [fs] sunrpc: remove __rcu annotation from struct gss_cl_ctx->gc_gss_ctx (Steve Dickson) [1111708]
-- [fs] nfs: nfs4_do_open should add negative results to the dcache (Steve Dickson) [1111708]
-- [fs] xprtrdma: Handle additional connection events (Steve Dickson) [1111708]
-- [fs] xprtrdma: Remove RPCRDMA_PERSISTENT_REGISTRATION macro (Steve Dickson) [1111708]
-- [fs] xprtrdma: Make rpcrdma_ep_disconnect() return void (Steve Dickson) [1111708]
-- [fs] xprtrdma: Schedule reply tasklet once per upcall (Steve Dickson) [1111708]
-- [fs] xprtrdma: Allocate each struct rpcrdma_mw separately (Steve Dickson) [1111708]
-- [fs] xprtrdma: Rename frmr_wr (Steve Dickson) [1111708]
-- [fs] xprtrdma: Disable completions for LOCAL_INV Work Requests (Steve Dickson) [1111708]
-- [fs] xprtrdma: Disable completions for FAST_REG_MR Work Requests (Steve Dickson) [1111708]
-- [fs] xprtrdma: Don't post a LOCAL_INV in rpcrdma_register_frmr_external() (Steve Dickson) [1111708]
-- [fs] xprtrdma: Reset FRMRs after a flushed LOCAL_INV Work Request (Steve Dickson) [1111708]
-- [fs] xprtrdma: Reset FRMRs when FAST_REG_MR is flushed by a disconnect (Steve Dickson) [1111708]
-- [fs] xprtrdma: Properly handle exhaustion of the rb_mws list (Steve Dickson) [1111708]
-- [fs] xprtrdma: Chain together all MWs in same buffer pool (Steve Dickson) [1111708]
-- [fs] xprtrdma: Back off rkey when FAST_REG_MR fails (Steve Dickson) [1111708]
-- [fs] xprtrdma: Unclutter struct rpcrdma_mr_seg (Steve Dickson) [1111708]
-- [fs] xprtrdma: Don't invalidate FRMRs if registration fails (Steve Dickson) [1111708]
-- [fs] xprtrdma: On disconnect, don't ignore pending CQEs (Steve Dickson) [1111708]
-- [fs] xprtrdma: Update rkeys after transport reconnect (Steve Dickson) [1111708]
-- [fs] xprtrdma: Limit data payload size for ALLPHYSICAL (Steve Dickson) [1111708]
-- [fs] xprtrdma: Protect ia->ri_id when unmapping/invalidating MRs (Steve Dickson) [1111708]
-- [fs] xprtrdma: Fix panic in rpcrdma_register_frmr_external() (Steve Dickson) [1111708]
-- [fs] xprtrdma: Fix DMA-API-DEBUG warning by checking dma_map result (Steve Dickson) [1111708]
-- [fs] replace strict_strto calls (Steve Dickson) [1111708]
-- [fs] nfs: use ARRAY_SIZE instead of sizeof/sizeof[0] (Steve Dickson) [1111708]
-- [fs] nfsv4: Drop cast (Steve Dickson) [1111708]
-- [fs] rpc_pipe: Drop memory allocation cast (Steve Dickson) [1111708]
-- [fs] nfs_common/nfsacl: move EXPORT symbol after functions (Steve Dickson) [1111708]
-- [fs] nfs4: copy acceptor name from context to nfs_client (Steve Dickson) [1111708]
-- [fs] sunrpc: add a new "stringify_acceptor" rpc_credop (Steve Dickson) [1111708]
-- [fs] auth_gss: fetch the acceptor name out of the downcall (Steve Dickson) [1111708]
-- [fs] nfs4: turn free_lock_state into a void return operation (Steve Dickson) [1111708]
-- [fs] nfs4: queue free_lock_state job submission to nfsiod (Steve Dickson) [1111708]
-- [fs] nfs4: treat lock owners as opaque values (Steve Dickson) [1111708]
-- [fs] nfs41: layout return on close in delegation return (Steve Dickson) [1111708]
-- [fs] nfs41: return layout on last close (Steve Dickson) [1111708]
-- [fs] nfs4: add nfs4_check_delegation (Steve Dickson) [1111708]
-- [fs] pnfs/filelayout: retry ds commit if nfs_commitdata_alloc fails (Steve Dickson) [1111708]
-- [fs] pnfs/filelayout: fix race between mark_request_commit and scan_commit_lists (Steve Dickson) [1111708]
-- [fs] nfsv4: Fix OPEN w/create access mode checking (Steve Dickson) [1111708]
-- [fs] nfs: check hostname in nfs_get_client (Steve Dickson) [1111708]
-- [fs] nfsv4: set hostname when creating nfsv4 ds connection (Steve Dickson) [1111708]
-- [fs] sunrpc: Handle EPIPE in xprt_connect_status (Steve Dickson) [1111708]
-- [fs] sunrpc: Ensure that we handle ENOBUFS errors correctly (Steve Dickson) [1111708]
-- [fs] nfs: replace count*size kzalloc by kcalloc (Steve Dickson) [1111708]
-- [fs] nfs: get rid of duplicate dprintk (Steve Dickson) [1111708]
-- [fs] nfs: Fix unused variable error (Steve Dickson) [1111708]
-- [fs] nfs: remove unneeded EXPORTs (Steve Dickson) [1111708]
-- [fs] pnfs: clean up *_resend_to_mds (Steve Dickson) [1111708]
-- [fs] nfs: remove pgio_header refcount, related cleanup (Steve Dickson) [1111708]
-- [fs] nfs: remove unused writeverf code (Steve Dickson) [1111708]
-- [fs] nfs: merge nfs_pgio_data into _header (Steve Dickson) [1111708]
-- [fs] nfs: rename members of nfs_pgio_data (Steve Dickson) [1111708]
-- [fs] nfs: move nfs_pgio_data and remove nfs_rw_header (Steve Dickson) [1111708]
-
-* Fri Sep 26 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-171.el7]
-- [scsi] bnx2fc: Improve stats update mechanism (Neil Horman) [1096023]
-- [security] have cap_dentry_init_security return error (Jeff Layton) [1070910]
-- [mfd] lpc_ich: Change Avoton to iTCO v3 (Prarit Bhargava) [1084134]
-- [watchdog] itco_wdt: Add support for v3 silicon (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Add support for iTCO v3 (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Remove lpc_ich_cfg struct use (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Fix ACPI enable bitmask (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Only configure watchdog or GPIO when present (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Add support for Intel Avoton GPIOs (Prarit Bhargava) [1084134]
-- [mfd] lpc_ich: Convert ICH GPIOs IDs to enum (Prarit Bhargava) [1084134]
-- [net] ceph: do not hard code max auth ticket len (Ilya Dryomov) [1142285] {CVE-2014-6416}
-- [net] ceph: add process_one_ticket() helper (Ilya Dryomov) [1142285] {CVE-2014-6416}
-- [net] ceph: gracefully handle large reply messages from the mon (Ilya Dryomov) [1142285] {CVE-2014-6416}
-- [powercap] intel_rapl: add new CPU IDs (Steve Best) [1142597]
-- [powercap] intel_rapl: spell out SoC names (Steve Best) [1142597]
-- [powercap] intel_rapl: add support for ValleyView Soc (Steve Best) [1142597]
-- [x86] smpboot: initialize secondary CPU only if master CPU will wait for it (Igor Mammedov) [968147]
-- [x86] smpboot: Log error on secondary CPU wakeup failure at ERR level (Igor Mammedov) [968147]
-- [x86] smpboot: Fix list/memory corruption on CPU hotplug (Igor Mammedov) [968147]
-- [acpi] processor: do not mark present at boot but not onlined CPU as onlined (Igor Mammedov) [968147]
-- [tools] thermal: Introduce tmon, a tool for thermal subsystem (Neil Horman) [1085101]
-- [thermal] intel_powerclamp: add newer cpu ids (Steve Best) [1141895]
-- [mm] swapfile: do not skip lowest_bit in scan_swap_map() scan loop (Seth Jennings) [1128277]
-- [dma] ioatdma: disable RAID on non-Atom platforms and reenable unaligned copies (Prarit Bhargava) [1069441]
-- [security] selinux: make the netif cache namespace aware (Paul Moore) [1112815]
-- [kernel] sched: Fix clock_gettime(CLOCK_[PROCESS/THREAD]_CPUTIME_ID) monotonicity (Seth Jennings) [1113932]
-- [kernel] hashtable: add hash_for_each_possible_rcu_notrace() (Steve Best) [1123126]
-- [media] media-device: fix an information leakage (Jacob Tanenbaum) [1109777] {CVE-2014-1739}
-- [fs] vfs: fix ref count leak in path_mountpoint() (Ian Kent) [1122376] {CVE-2014-5045}
-- [kernel] ptrace: get_dumpable() incorrect tests (Jacob Tanenbaum) [1111606] {CVE-2013-2929}
-- [fs] fanotify/compat: fix sys_fanotify_mark (Jan Stancek) [1119318]
-- [target] rd: Refactor rd_build_device_space + rd_release_device_space (Denys Vlasenko) [1108755] {CVE-2014-4027}
-- [ipc] fix compat msgrcv with negative msgtyp (Mateusz Guzik) [1042807]
-- [Documentation] fix incorrect formula to calculate CommitLimit value (Petr Oros) [1060570]
-- [acpi] apci_pad: in power_saving_thread(), call schedule() when need_resched is true (Tony Camuso) [1092076]
-
-* Wed Sep 24 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-170.el7]
-- [powerpc] Revert: Add iommu domain pointer to device archdata (David Gibson) [1123145 1123133 1123367]
-- [powerpc] Enable IOMMU and VFIO for ppc64 (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s_32/pr - Access HTAB in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Rework SLB switching code (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Move little endian conflict to HV KVM (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Do dcbz32 patching with big endian instructions (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Fill pvinfo hcall instructions in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - PAPR - Access RTAS in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - PAPR - Access HTAB in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s_64/pr - Access shadow slb in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s_64/pr - Access HTAB in big endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - ifdef on CONFIG_KVM_book3s_32_HANDLER for 32bit (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Disable AIL mode with OPAL (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Use SLB entry 0 (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Graciously fail broken LE hypercalls (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Remove open coded make_dsisr in alignment handler (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Always use the saved DAR value (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Make NX bit available with magic page (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Disable NX for old magic page using guests (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Expose TM registers (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Expose EBB registers (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Expose TAR facility to guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Handle Facility interrupt and FSCR (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Emulate TIR register (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Ignore PMU SPRs (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Default to big endian guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Fix C/R bit setting (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Fix WARN_ON with debug options on (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Enable Little Endian PR guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Enable interrupts earlier (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Make svcpu -> vcpu store preempt savvy (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Ignore DABR register (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Ignore PIR writes (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: add PR mode KVM (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Move more code under CONFIG_HAVE_KVM_IRQFD (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Enable IRQFD support for the XICS interrupt controller (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/s390: adapter interrupt sources (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Move irq notifier implementation into eventfd.c (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Move all accesses to kvm::irq_routing into irqchip.c (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/irqchip: Provide and use accessors for irq routing table (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Don't keep reference to irq routing table in irqfd struct (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: IRQ disabling cleanup (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: use fdget (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Put huge-page HPTEs in rmap chain for base address (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Move KVM_REG_PPC_WORT to an unused register number (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Add ONE_REG register names that were missed (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Add missing code for transaction reclaim on guest exit (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - make _PAGE_NUMA take effect (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc/book3s: rename lookup_linux_pte() to lookup_linux_pte_and_update() (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Fix KVM hang with CONFIG_KVM_XICS=n (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Fix incorrect userspace exit on ioeventfd write (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Remove bogus duplicate code (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - use xics_wake_cpu only when defined (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: NULL return of kvmppc_mmu_hpte_cache_next should be handled (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Add devname:kvm aliases for modules (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Don't drop low-order page address bits (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Get rid of KVM_HPAGE defines (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Guard doorbell exception with CONFIG_PPC_DOORBELL (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Make shared struct aka magic page guest endian (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Use base page size when comparing against slb value (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Fix machine check delivery to guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Add mixed page-size support for guest (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: fix couple of memory leaks in MPIC/XICS devices (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Don't clobber our exit handler id (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Fix physical address calculations (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Take SRCU read lock around RTAS kvm_read_guest() call (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Add H_SET_MODE hcall handling (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Allow only implemented hcalls to be enabled or disabled (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Controls for in-kernel sPAPR hypercall handling (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s - Move vcore definition to end of kvm_arch struct (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Export kvmppc_copy_to (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Add CAP to indicate hcall fixes (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Prefer CMA region for hash page table allocation (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/hv - Add software abort codes for transactional memory (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Unify kvmppc_get_last_inst and sc (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: Load/save FP/VMX/VSX state directly to/from vcpu struct (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm/ppc: book3s/pr - Fix compilation without CONFIG_ALTIVEC (David Gibson) [1123145 1123133 1123367]
-- [virt] kvm: Add per-vm capability enablement (David Gibson) [1123145 1123133 1123367]
-- [iommu] vt-d: Exclude devices using RMRRs from IOMMU API domains (Myron Stowe) [1097907]
-- [s390] uaccess: fix possible register corruption in strnlen_user_srst() (Hendrik Brueckner) [1099147]
-- [s390] uaccess: rework uaccess code - fix locking issues (Hendrik Brueckner) [1099147]
-- [s390] uaccess: introduce 'uaccesspt' kernel parameter (Hendrik Brueckner) [1099147]
-- [s390] uaccess: remove dead kernel parameter 'user_mode=' (Hendrik Brueckner) [1099147]
-- [s390] setup: get rid of MACHINE_HAS_MVCOS machine flag (Hendrik Brueckner) [1099147]
-- [s390] uaccess: consistent types (Hendrik Brueckner) [1099147]
-- [s390] uaccess: get rid of indirect function calls (Hendrik Brueckner) [1099147]
-- [s390] uaccess: normalize order of parameters of indirect uaccess function calls (Hendrik Brueckner) [1099147]
-- [s390] uaccess: remove dead extern declarations, make functions static (Hendrik Brueckner) [1099147]
-- [s390] uaccess: test if current->mm is set before walking page tables (Hendrik Brueckner) [1099147]
-- [s390] compat: fix PSW32_USER_BITS definition (Hendrik Brueckner) [1099147]
-- [s390] compat: make psw32_user_bits a constant value again (Hendrik Brueckner) [1099147]
-- [s390] uaccess: always run the kernel in home space (Hendrik Brueckner) [1099147]
-- [s390] kernel: remove page table walk for user space accesses (Hendrik Brueckner) [1099147]
-- [powerpc] start loop at section start of start in vmemmap_populated() (Gustavo Duarte) [1090174]
-- [powerpc] implement vmemmap_free() (Gustavo Duarte) [1090174]
-- [powerpc] implement vmemmap_remove_mapping() for BOOK3S (Gustavo Duarte) [1090174]
-- [powerpc] implement vmemmap_list_free() (Gustavo Duarte) [1090174]
-- [x86] Makefile: Add stack frame check (Prarit Bhargava) [1058753]
-- [virt] kvm/x86: fix TSC matching (Marcelo Tosatti) [1115764]
-- [drm] radeon: tweak ACCEL_WORKING2 query for hawaii (Jerome Glisse) [1140789]
-
-* Tue Sep 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-169.el7]
-- [lib] assoc_array: Fix termination condition in assoc array garbage collection (David Howells) [1139431] {CVE-2014-3631}
-- [acpi] x86/ras: Fix build warnings in <linux/aer.h> (Rui Wang) [1085141]
-- [acpi] ras/extlog: Adjust init flow (Rui Wang) [1085141]
-- [acpi] trace/emca: Add a knob to adjust where to save event log (Rui Wang) [1085141]
-- [ras] trace: Add eMCA trace event interface (Rui Wang) [1085141]
-- [ras] debugfs: Add debugfs interface for RAS subsystem (Rui Wang) [1085141]
-- [firmware] efi/cper: Adjust code flow of some functions (Rui Wang) [1085141]
-- [trace] aer: Move trace into unified interface (Rui Wang) [1085141]
-- [trace] ras: Add basic RAS trace event (Rui Wang) [1085141]
-- [trace] Add __field_struct macro for TRACE_EVENT() (Rui Wang) [1085141]
-- [trace] pci/aer: Fix severity usage in aer trace event (Rui Wang) [1085141]
-- [acpi] emca: Combine eMCA/EDAC event reporting priority (Rui Wang) [1076655]
-- [edac] sb_edac: Modify H/W event reporting policy (Rui Wang) [1076655]
-- [edac] Add an edac_report parameter to EDAC (Rui Wang) [1076655]
-- [acpi] Clean up inclusions of ACPI header files (Rui Wang) [1076655]
-- [acpi] x86: Export 'boot_cpu_physical_apicid' to modules (Rui Wang) [1076655]
-- [acpi] x86: Fix extended error log driver to depend on CONFIG_X86_LOCAL_APIC (Rui Wang) [1076655]
-- [firmware] dmi: Avoid unaligned memory access in save_mem_devices() (Rui Wang) [1076655]
-- [firmware] efi: Move cper.c from drivers/acpi/apei to drivers/firmware/efi (Rui Wang) [1076655]
-- [edac] ghes: Update ghes error record info (Rui Wang) [1076655]
-- [acpi] apei/cper: Cleanup CPER memory error output format (Rui Wang) [1076655]
-- [acpi] apei/cper: Enhance memory reporting capability (Rui Wang) [1076655]
-- [firmware] dmi: Parse memory device (type 17) in SMBIOS (Rui Wang) [1076655]
-- [acpi] x86: Extended error log driver for x86 platform (Rui Wang) [1076655]
-- [acpi] cper: Update cper info (Rui Wang) [1076655]
-- [acpi] apei/cper: Fix status check during error printing (Rui Wang) [1076655]
-
-* Tue Sep 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-168.el7]
-- [ethernet] bnx2x: Configure device endianity on driver load and reset endianity on removal (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Be more forgiving toward SW GRO (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: VF clean statistics (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix stop-on-error (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: ethtool -d might cause timeout in log (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Use is_kdump_kernel() to detect kdump kernel (Michal Schmidt) [1059554 1089402]
-- [ethernet] bnx2x: FW assertion changes (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Make BP_VF more robust (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Prevent pci_disable_sriov with assigned VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Prevent IOV if no entries in CAM (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix static checker warning regarding `txdata_ptr' (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Safe bnx2x_panic_dump() (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Update driver version to 1.710.51 (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Code cleanup (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix sparse warnings (Michal Schmidt) [1119861 1060671 1089402]
-- [ethernet] bnx2x: Fix timesync endianity (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Add timestamping and PTP hardware clock support (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix tunneled GSO over IPv6 (Michal Schmidt) [1119861 1060671 1089402]
-- [ethernet] bnx2x: prevent incorrect byte-swap in BE (Michal Schmidt) [1119861 1060671 1089402]
-- [ethernet] bnx2x: Utilize FW 7.10.51 (Michal Schmidt) [1119861 1060671 1089402]
-- [ethernet] bnx2x: Remove redundant #ifdef (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Revert UNDI flushing mechanism (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Remove DEFINE_PCI_DEVICE_TABLE macro use (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix set_setting for some PHYs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix possible panic under memory stress (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix the MSI flags (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fail probe of VFs using an old incompatible driver (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: enlarge minimal alignemnt of data offset (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: VF can report link speed (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: remove null test before kfree (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Enlarge the dorq threshold for VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Check for UNDI in uncommon branch (Michal Schmidt) [1094099 1089402]
-- [ethernet] bnx2x: Fix 1G-baseT link (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix link for KR with swapped polarity lane (Michal Schmidt) [1123867 1089402]
-- [ethernet] bnx2x: Remove useless return variables (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: update MAINTAINERS for bnx2x and e-mail addresses (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: get rid of SET_ETHTOOL_OPS (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix build when BNX2X_SRIOV is not enabled (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Convert return 0 to return rc (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix UNDI driver unload (Michal Schmidt) [1094099 1089402]
-- [ethernet] bnx2x: Memory leak during VF removal (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: include irq.h for irqreturn_t definitions (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix possible memory leak on iov error flow (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix compilation when CONFIG_BNX2X_SRIOV is not set (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Don't allow VFs to become promiscuous (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Don't show port statistics for VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix failure to configure VF multicast filters (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix vlan credit issues for VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Remove the sriov VFOP mechanism (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Create workqueue for IOV related tasks (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Support mng. request for driver version (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Don't receive packets when the napi budget == 0 (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: save RAM in kdump kernel by disabling TPA (Michal Schmidt) [1059554 1089402]
-- [ethernet] bnx2x: save RAM in kdump kernel by using a single queue (Michal Schmidt) [1059554 1089402]
-- [ethernet] bnx2x: clamp num_queues to prevent passing a negative value (Michal Schmidt) [1059554 1089402]
-- [ethernet] bnx2x: Remove hidden flow control goto from BNX2X_ALLOC macros (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Use pci_enable_msix_range() instead of pci_enable_msix() (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: (semantic) revise scheduling of sp_rtnl (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Fix bnx2x_panic_dump for VFs (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Revise IOV vlan/mac validation (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Add support in PF driver for RSC (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Semantic Validate vlan/mac changes (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Remove unnecessary internal mem config (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Remove unused iov code (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: Debug - change verbosity of some prints (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix L2-GRE TCP issues (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: fix sparse warning (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: prevent WARN during driver unload (Michal Schmidt) [1089402]
-- [ethernet] bnx2x: slight optimization of addr compare (Michal Schmidt) [1089402]
-- [kernel] crash_dump: Make is_kdump_kernel() accessible from modules (Michal Schmidt) [1089402 1059554]
-- [ethernet] qlge: Fix TSO for non-accelerated vlan traffic (Vlad Yasevich) [1135619]
-- [ethernet] mvneta: Fix TSO and checksum for non-acceleration vlan traffic (Vlad Yasevich) [1135619]
-- [ethernet] i40evf: Fix TSO and hw checksums for non-accelerated vlan packets (Vlad Yasevich) [1135619]
-- [ethernet] i40e: Fix TSO and hw checksums for non-accelerated vlan packets (Vlad Yasevich) [1135619]
-- [ethernet] ehea: Fix TSO and hw checksums with non-accelerated vlan packets (Vlad Yasevich) [1135619]
-- [ethernet] e1000: Fix TSO for non-accelerated vlan traffic (Vlad Yasevich) [1135619]
-- [ethernet] e1000e: Fix TSO with non-accelerated vlans (Vlad Yasevich) [1135619]
-- [net] macvlan: Initialize vlan_features to turn on offload support (Vlad Yasevich) [1135619]
-- [net] macvtap: Fix checksum errors for non-gso packets in bridge mode (Vlad Yasevich) [1135619]
-- [net] Revert: macvlan: fix checksums error when we are in bridge mode (Vlad Yasevich) [1135619]
-- [net] Correctly set segment mac_len in skb_segment() (Vlad Yasevich) [1135619]
-- [crypto] pkcs7: Fix the parser cleanup to drain parsed out X.509 certs (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Provide a single place to do signed info block freeing (Vivek Goyal) [1129779]
-- [security] keys: Reinstate EPERM for a key type name beginning with a '.' (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Add a missing static (Vivek Goyal) [1129779]
-- [crypto] x509: Need to export x509_request_asymmetric_key() (Vivek Goyal) [1129779]
-- [crypto] pkcs7: X.509 certificate issuer and subject are mandatory fields in the ASN.1 (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Use x509_request_asymmetric_key() (Vivek Goyal) [1129779]
-- [crypto] x509: x509_request_asymmetric_keys() doesn't need string length arguments (Vivek Goyal) [1129779]
-- [crypto] pkcs7: fix sparse non static symbol warning (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Missing inclusion of linux/err.h (Vivek Goyal) [1129779]
-- [security] ima: define '.ima' as a builtin 'trusted' keyring (Vivek Goyal) [1129779]
-- [crypto] keys: validate certificate trust only with builtin keys (Vivek Goyal) [1129779]
-- [crypto] keys: validate certificate trust only with selected key (Vivek Goyal) [1129779]
-- [crypto] keys: make partial key id matching as a dedicated function (Vivek Goyal) [1129779]
-- [crypto] keys: verify a certificate is signed by a 'trusted' key (Vivek Goyal) [1129779]
-- [security] keys: special dot prefixed keyring name bug fix (Vivek Goyal) [1129779]
-- [crypto] Revert: keys: verify a certificate is signed by a 'trusted' key (Vivek Goyal) [1129779]
-- [crypto] pefile: Validate PKCS#7 trust chain (Vivek Goyal) [1129779]
-- [crypto] pefile: Digest the PE binary and compare to the PKCS#7 data (Vivek Goyal) [1129779]
-- [crypto] pefile: Handle pesign using the wrong OID (Vivek Goyal) [1129779]
-- [crypto] pefile: Parse the "Microsoft individual code signing" data blob (Vivek Goyal) [1129779]
-- [crypto] pefile: Parse the presumed PKCS#7 content of the certificate blob (Vivek Goyal) [1129779]
-- [crypto] pefile: Strip the wrapper off of the cert data block (Vivek Goyal) [1129779]
-- [crypto] pefile: Parse a PE binary to find a key and a signature contained therein (Vivek Goyal) [1129779]
-- [misc] Provide PE binary definitions (Vivek Goyal) [1129779]
-- [crypto] keys/x509: Fix a spelling mistake (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Provide a key type for testing PKCS#7 (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Find intersection between PKCS#7 message and known, trusted keys (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Verify internal certificate chain (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Find the right key in the PKCS#7 key list and verify the signature (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Digest the data in a signed-data message (Vivek Goyal) [1129779]
-- [crypto] pkcs7: Implement a parser for RFC 2315 (Vivek Goyal) [1129779]
-- [crypto] x509: Export certificate parse and free functions (Vivek Goyal) [1129779]
-- [crypto] x509: Add bits needed for PKCS#7 (Vivek Goyal) [1129779]
-- [crypto] keys: change asymmetric keys to use common hash definitions (Vivek Goyal) [1129779]
-- [crypto] provide single place for hash algo information (Vivek Goyal) [1129779]
-
-* Sun Sep 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-167.el7]
-- [fs] ceph: remove extra definitions of U32_MAX (Sage Weil) [1122174]
-- [fs] vfs: call d_op->d_prune() before unhashing dentry (Sage Weil) [1122174]
-- [net] libceph: set last_piece in ceph_msg_data_pages_cursor_init() correctly (Sage Weil) [1122174]
-- [block] rbd: remove extra newlines from rbd_warn() messages (Sage Weil) [1122174]
-- [block] rbd: allocate img_request with GFP_NOIO instead GFP_ATOMIC (Sage Weil) [1122174]
-- [block] rbd: rework rbd_request_fn() (Sage Weil) [1122174]
-- [fs] ceph: fix kick_requests() (Sage Weil) [1122174]
-- [fs] ceph: fix sizeof(struct tYpO *) typo (Sage Weil) [1122174]
-- [fs] ceph: remove redundant memset(0) (Sage Weil) [1122174]
-- [block] rbd: take snap_id into account when reading in parent info (Sage Weil) [1122174]
-- [block] rbd: do not read in parent info before snap context (Sage Weil) [1122174]
-- [block] rbd: update mapping size only on refresh (Sage Weil) [1122174]
-- [block] rbd: harden rbd_dev_refresh() and callers a bit (Sage Weil) [1122174]
-- [block] rbd: split rbd_dev_spec_update() into two functions (Sage Weil) [1122174]
-- [block] rbd: remove unnecessary asserts in rbd_dev_image_probe() (Sage Weil) [1122174]
-- [block] rbd: introduce rbd_dev_header_info() (Sage Weil) [1122174]
-- [block] rbd: show the entire chain of parent images (Sage Weil) [1122174]
-- [fs] ceph: replace comma with a semicolon (Sage Weil) [1122174]
-- [block] rbd: use rbd_segment_name_free() instead of kfree() (Sage Weil) [1122174]
-- [fs] ceph: check zero length in ceph_sync_read() (Sage Weil) [1122174]
-- [fs] ceph: reset r_resend_mds after receiving -ESTALE (Sage Weil) [1122174]
-- [fs] ceph: include time stamp in replayed MDS requests (Sage Weil) [1122174]
-- [block] rbd: do not leak image_id in rbd_dev_v2_parent_info() (Sage Weil) [1122174]
-- [fs] ceph: check unsupported fallocate mode (Sage Weil) [1122174]
-- [net] libceph: drop osd ref when canceling con work (Sage Weil) [1122174]
-- [net] libceph: nuke ceph_osdc_unregister_linger_request() (Sage Weil) [1122174]
-- [block] rbd: use rbd_obj_watch_request_helper() helper (Sage Weil) [1122174]
-- [block] rbd: add rbd_obj_watch_request_helper() helper (Sage Weil) [1122174]
-- [block] rbd: rbd_obj_request_wait() should cancel the request if interrupted (Sage Weil) [1122174]
-- [net] libceph: introduce ceph_osdc_cancel_request() (Sage Weil) [1122174]
-- [net] libceph: fix linger request check in __unregister_request() (Sage Weil) [1122174]
-- [net] libceph: unregister only registered linger requests (Sage Weil) [1122174]
-- [net] libceph: assert both regular and lingering lists in __remove_osd() (Sage Weil) [1122174]
-- [net] libceph: harden ceph_osdc_request_release() a bit (Sage Weil) [1122174]
-- [net] libceph: move and add dout()s to ceph_osdc_request_{get, put}() (Sage Weil) [1122174]
-- [net] libceph: move and add dout()s to ceph_msg_{get, put}() (Sage Weil) [1122174]
-- [net] libceph: add maybe_move_osd_to_lru() and switch to it (Sage Weil) [1122174]
-- [net] libceph: rename ceph_osd_request::r_linger_osd to r_linger_osd_item (Sage Weil) [1122174]
-- [block] rbd: handle parent_overlap on writes correctly (Sage Weil) [1122174]
-- [fs] ceph: remove bogus extern (Sage Weil) [1122174]
-- [block] rbd: only set disk to read-only once (Sage Weil) [1122174]
-- [block] rbd: move calls that may sleep out of spin lock range (Sage Weil) [1122174]
-- [block] rbd: add ioctl for rbd (Sage Weil) [1122174]
-- [fs] ceph: use truncate_pagecache() instead of truncate_inode_pages() (Sage Weil) [1122174]
-- [fs] ceph: debugfs, replace seq_printf by seq_puts (Sage Weil) [1122174]
-- [fs] ceph: replace pr_warning by pr_warn (Sage Weil) [1122174]
-- [fs] ceph: include time stamp in every MDS request (Sage Weil) [1122174]
-- [block] rbd: fix ida/idr memory leak (Sage Weil) [1122174]
-- [block] rbd: use reference counts for image requests (Sage Weil) [1122174]
-- [block] rbd: fix osd_request memory leak in __rbd_dev_header_watch_sync() (Sage Weil) [1122174]
-- [block] rbd: make sure we have latest osdmap on 'rbd map' (Sage Weil) [1122174]
-- [net] libceph: add ceph_monc_wait_osdmap() (Sage Weil) [1122174]
-- [net] libceph: mon_get_version request infrastructure (Sage Weil) [1122174]
-- [net] libceph: recognize poolop requests in debugfs (Sage Weil) [1122174]
-- [fs] ceph: refactor readpage_nounlock() to make the logic clearer (Sage Weil) [1122174]
-- [fs] ceph: mds - check cap ID when handling cap export message (Sage Weil) [1122174]
-- [fs] ceph: remember subtree root dirfrag's auth MDS (Sage Weil) [1122174]
-- [fs] ceph: introduce ceph_fill_fragtree() (Sage Weil) [1122174]
-- [fs] ceph: handle cap import atomically (Sage Weil) [1122174]
-- [fs] ceph: pre-allocate ceph_cap struct for ceph_add_cap() (Sage Weil) [1122174]
-- [fs] ceph: update inode fields according to issued caps (Sage Weil) [1122174]
-- [fs] ceph: queue vmtruncate if necessary when handing cap grant/revoke (Sage Weil) [1122174]
-- [fs] ceph: ceph_get_parent() can be static (Sage Weil) [1122174]
-- [net] crush: decode and initialize chooseleaf_vary_r (Sage Weil) [1122174]
-- [net] libceph: fix corruption when using page_count 0 page in rbd (Sage Weil) [1122174]
-- [fs] ceph: reserve caps for file layout/lock MDS requests (Sage Weil) [1122174]
-- [fs] ceph: avoid releasing caps that are being used (Sage Weil) [1122174]
-- [fs] ceph: clear directory's completeness when creating file (Sage Weil) [1122174]
-- [net] libceph: fix non-default values check in apply_primary_affinity() (Sage Weil) [1122174]
-- [fs] ceph: use fpos_cmp() to compare dentry positions (Sage Weil) [1122174]
-- [fs] ceph: check directory's completeness before emitting directory entry (Sage Weil) [1122174]
-- [fs] ceph: fix pr_fmt() redefinition (Sage Weil) [1122174]
-- [fs] ceph: ceph_sync_{, direct_}write, fix an oops on ceph_osdc_new_request() failure (Sage Weil) [1122174]
-- [fs] ceph: skip invalid dentry during dcache readdir (Sage Weil) [1122174]
-- [net] libceph: dump pool {read,write}_tier to debugfs (Sage Weil) [1122174]
-- [net] libceph: output primary affinity values on osdmap updates (Sage Weil) [1122174]
-- [fs] ceph: flush cap release queue when trimming session caps (Sage Weil) [1122174]
-- [fs] ceph: don't grabs open file reference for aborted request (Sage Weil) [1122174]
-- [fs] ceph: drop extra open file reference in ceph_atomic_open() (Sage Weil) [1122174]
-- [fs] ceph: preallocate buffer for readdir reply (Sage Weil) [1122174]
-- [net] libceph: enable PRIMARY_AFFINITY feature bit (Sage Weil) [1122174]
-- [net] libceph: redo ceph_calc_pg_primary() in terms of ceph_calc_pg_acting() (Sage Weil) [1122174]
-- [net] libceph: add support for osd primary affinity (Sage Weil) [1122174]
-- [net] libceph: add support for primary_temp mappings (Sage Weil) [1122174]
-- [net] libceph: return primary from ceph_calc_pg_acting() (Sage Weil) [1122174]
-- [net] libceph: switch ceph_calc_pg_acting() to new helpers (Sage Weil) [1122174]
-- [net] libceph: introduce apply_temps() helper (Sage Weil) [1122174]
-- [net] libceph: introduce pg_to_raw_osds() and raw_to_up_osds() helpers (Sage Weil) [1122174]
-- [net] libceph: ceph_can_shift_osds(pool) and pool type defines (Sage Weil) [1122174]
-- [net] libceph: ceph_osd_{exists, is_up, is_down}(osd) definitions (Sage Weil) [1122174]
-- [net] libceph: enable OSDMAP_ENC feature bit (Sage Weil) [1122174]
-- [net] libceph: primary_affinity decode bits (Sage Weil) [1122174]
-- [net] libceph: primary_affinity infrastructure (Sage Weil) [1122174]
-- [net] libceph: primary_temp decode bits (Sage Weil) [1122174]
-- [net] libceph: primary_temp infrastructure (Sage Weil) [1122174]
-- [net] libceph: generalize ceph_pg_mapping (Sage Weil) [1122174]
-- [net] libceph: introduce get_osdmap_client_data_v() (Sage Weil) [1122174]
-- [net] libceph: introduce decode{, _new}_pg_temp() and switch to them (Sage Weil) [1122174]
-- [net] libceph: switch osdmap_set_max_osd() to krealloc() (Sage Weil) [1122174]
-- [net] libceph: introduce decode{, _new}_pools() and switch to them (Sage Weil) [1122174]
-- [net] libceph: rename __decode_pool{, _names}() to decode_pool{, _names}() (Sage Weil) [1122174]
-- [net] libceph: fix and clarify ceph_decode_need() sizes (Sage Weil) [1122174]
-- [net] libceph: nuke bogus encoding version check in osdmap_apply_incremental() (Sage Weil) [1122174]
-- [net] libceph: fixup error handling in osdmap_apply_incremental() (Sage Weil) [1122174]
-- [net] libceph: fix crush_decode() call site in osdmap_decode() (Sage Weil) [1122174]
-- [net] libceph: check length of osdmap osd arrays (Sage Weil) [1122174]
-- [net] libceph: safely decode max_osd value in osdmap_decode() (Sage Weil) [1122174]
-- [net] libceph: fixup error handling in osdmap_decode() (Sage Weil) [1122174]
-- [net] libceph: split osdmap allocation and decode steps (Sage Weil) [1122174]
-- [net] libceph: dump osdmap and enhance output on decode errors (Sage Weil) [1122174]
-- [net] libceph: dump pg_temp mappings to debugfs (Sage Weil) [1122174]
-- [net] libceph: do not prefix osd lines with t in debugfs output (Sage Weil) [1122174]
-- [net] libceph: refer to osdmap directly in osdmap_show() (Sage Weil) [1122174]
-- [net] crush: support chooseleaf_vary_r tunable (tunables3) by default (Sage Weil) [1122174]
-- [net] crush: add SET_CHOOSELEAF_VARY_R step (Sage Weil) [1122174]
-- [net] crush: add chooseleaf_vary_r tunable (Sage Weil) [1122174]
-- [net] crush: allow crush rules to set (re)tries counts to 0 (Sage Weil) [1122174]
-- [net] crush: fix off-by-one errors in total_tries refactor (Sage Weil) [1122174]
-- [fs] ceph: don't include ceph.{file, dir}.layout vxattr in listxattr() (Sage Weil) [1122174]
-- [fs] ceph: check buffer size in ceph_vxattrcb_layout() (Sage Weil) [1122174]
-- [fs] ceph: fix null pointer dereference in discard_cap_releases() (Sage Weil) [1122174]
-- [net] libceph: fix oops in ceph_msg_data_{pages, pagelist}_advance() (Sage Weil) [1122174]
-- [fs] ceph: set mds_wanted when MDS reply changes a cap to auth cap (Sage Weil) [1122174]
-- [fs] ceph: use fl->fl_file as owner identifier of flock and posix lock (Sage Weil) [1122174]
-- [fs] ceph: forbid mandatory file lock (Sage Weil) [1122174]
-- [fs] ceph: use fl->fl_type to decide flock operation (Sage Weil) [1122174]
-- [fs] ceph: update i_max_size even if inode version does not change (Sage Weil) [1122174]
-- [fs] ceph: make sure write caps are registered with auth MDS (Sage Weil) [1122174]
-- [fs] ceph: print inode number for LOOKUPINO request (Sage Weil) [1122174]
-- [fs] ceph: add get_name() NFS export callback (Sage Weil) [1122174]
-- [fs] ceph: fix ceph_fh_to_parent() (Sage Weil) [1122174]
-- [fs] ceph: add get_parent() NFS export callback (Sage Weil) [1122174]
-- [fs] ceph: simplify ceph_fh_to_dentry() (Sage Weil) [1122174]
-- [fs] ceph: do not set r_old_dentry_dir on link() (Sage Weil) [1122174]
-- [fs] ceph: do not assume r_old_dentry[_dir] always set together (Sage Weil) [1122174]
-- [fs] ceph: do not chain inode updates to parent fsync (Sage Weil) [1122174]
-- [fs] ceph: avoid useless ceph_get_dentry_parent_inode() in ceph_rename() (Sage Weil) [1122174]
-- [fs] ceph: let MDS adjust readdir 'frag' (Sage Weil) [1122174]
-- [block] rbd: prefix rbd writes with CEPH_OSD_OP_SETALLOCHINT osd op (Sage Weil) [1122174]
-- [block] rbd: num_ops parameter for rbd_osd_req_create() (Sage Weil) [1122174]
-- [net] libceph: bump CEPH_OSD_MAX_OP to 3 (Sage Weil) [1122174]
-- [net] libceph: add support for CEPH_OSD_OP_SETALLOCHINT osd op (Sage Weil) [1122174]
-- [net] libceph: encode CEPH_OSD_OP_FLAG_* op flags (Sage Weil) [1122174]
-- [block] rbd: fix error paths in rbd_img_request_fill() (Sage Weil) [1122174]
-- [block] rbd: remove out_partial label in rbd_img_request_fill() (Sage Weil) [1122174]
-- [net] libceph: a per-osdc crush scratch buffer (Sage Weil) [1122174]
-- [block] rbd: drop an unsafe assertion (Sage Weil) [1122174]
-- [fs] ceph: fix reset_readdir() (Sage Weil) [1122174]
-- [fs] ceph: fix ceph_dir_llseek() (Sage Weil) [1122174]
-- [fs] ceph: fix __dcache_readdir() (Sage Weil) [1122174]
-- [fs] ceph: fix ceph_removexattr() (Sage Weil) [1122174]
-- [fs] ceph: remove xattr when null value is given to setxattr() (Sage Weil) [1122174]
-- [fs] ceph: properly handle XATTR_CREATE and XATTR_REPLACE (Sage Weil) [1122174]
-- [net] libceph: take map_sem for read in handle_reply() (Sage Weil) [1122174]
-- [net] libceph: factor out logic from ceph_osdc_start_request() (Sage Weil) [1122174]
-- [net] libceph: fix error handling in ceph_osdc_init() (Sage Weil) [1122174]
-- [fs] ceph: cast PAGE_SIZE to size_t in ceph_sync_write() (Sage Weil) [1122174]
-- [fs] ceph: fix dout() compile warnings in ceph_filemap_fault() (Sage Weil) [1122174]
-- [net] libceph: support CEPH_FEATURE_OSD_CACHEPOOL feature (Sage Weil) [1122174]
-- [net] libceph: follow redirect replies from osds (Sage Weil) [1122174]
-- [net] libceph: rename ceph_osd_request::r_{oloc, oid} to r_base_{oloc, oid} (Sage Weil) [1122174]
-- [net] libceph: follow {read, write}_tier fields on osd request submission (Sage Weil) [1122174]
-- [net] libceph: add ceph_pg_pool_by_id() (Sage Weil) [1122174]
-- [net] libceph: CEPH_OSD_FLAG_* enum update (Sage Weil) [1122174]
-- [net] libceph: replace ceph_calc_ceph_pg() with ceph_oloc_oid_to_pg() (Sage Weil) [1122174]
-- [net] libceph: introduce and start using oid abstraction (Sage Weil) [1122174]
-- [net] libceph: move ceph_file_layout helpers to ceph_fs.h (Sage Weil) [1122174]
-- [net] libceph: rename MAX_OBJ_NAME_SIZE to CEPH_MAX_OID_NAME_LEN (Sage Weil) [1122174]
-- [net] libceph: start using oloc abstraction (Sage Weil) [1122174]
-- [net] libceph: dout() is missing a newline (Sage Weil) [1122174]
-- [net] libceph: add ceph_kv{malloc, free}() and switch to them (Sage Weil) [1122174]
-- [net] libceph: support CEPH_FEATURE_EXPORT_PEER (Sage Weil) [1122174]
-- [fs] ceph: add imported caps when handling cap export message (Sage Weil) [1122174]
-- [fs] ceph: add open export target session helper (Sage Weil) [1122174]
-- [fs] ceph: remove exported caps when handling cap import message (Sage Weil) [1122174]
-- [fs] ceph: handle session flush message (Sage Weil) [1122174]
-- [fs] ceph: check inode caps in ceph_d_revalidate (Sage Weil) [1122174]
-- [fs] ceph: handle -ESTALE reply (Sage Weil) [1122174]
-- [fs] ceph: fix trim caps (Sage Weil) [1122174]
-- [fs] ceph: fix cache revoke race (Sage Weil) [1122174]
-- [fs] ceph: use ceph_seq_cmp() to compare migrate_seq (Sage Weil) [1122174]
-- [fs] ceph: handle cap export race in try_flush_caps() (Sage Weil) [1122174]
-- [fs] ceph: trivial comment fix (Sage Weil) [1122174]
-- [net] libceph: fix preallocation check in get_reply() (Sage Weil) [1122174]
-- [net] libceph: rename front to front_len in get_reply() (Sage Weil) [1122174]
-- [net] libceph: rename ceph_msg::front_max to front_alloc_len (Sage Weil) [1122174]
-- [net] libceph: use CEPH_MON_PORT when the specified port is 0 (Sage Weil) [1122174]
-- [net] crush: support new indep mode and SET_* steps (crush v2) by default (Sage Weil) [1122174]
-- [net] crush: fix crush_choose_firstn comment (Sage Weil) [1122174]
-- [net] crush: attempts -> tries (Sage Weil) [1122174]
-- [net] crush: add set_choose_local_[fallback_]tries steps (Sage Weil) [1122174]
-- [net] crush: generalize descend_once (Sage Weil) [1122174]
-- [net] crush: CHOOSE_LEAF -> CHOOSELEAF throughout (Sage Weil) [1122174]
-- [net] crush: add SET_CHOOSE_TRIES rule step (Sage Weil) [1122174]
-- [net] crush: apply chooseleaf_tries to firstn mode too (Sage Weil) [1122174]
-- [net] crush: new SET_CHOOSE_LEAF_TRIES command (Sage Weil) [1122174]
-- [net] crush: pass parent r value for indep call (Sage Weil) [1122174]
-- [net] crush: clarify numrep vs endpos (Sage Weil) [1122174]
-- [net] crush: strip firstn conditionals out of crush_choose, rename (Sage Weil) [1122174]
-- [net] crush: add note about r in recursive choose (Sage Weil) [1122174]
-- [net] crush: use breadth-first search for indep mode (Sage Weil) [1122174]
-- [net] crush: return CRUSH_ITEM_UNDEF for failed placements with indep (Sage Weil) [1122174]
-- [net] crush: eliminate CRUSH_MAX_SET result size limitation (Sage Weil) [1122174]
-- [net] crush: fix some comments (Sage Weil) [1122174]
-- [net] crush: reduce scope of some local variables (Sage Weil) [1122174]
-- [net] crush: factor out (trivial) crush_destroy_rule() (Sage Weil) [1122174]
-- [net] crush: pass weight vector size to map function (Sage Weil) [1122174]
-- [net] libceph: update ceph_features.h (Sage Weil) [1122174]
-- [net] libceph: all features fields must be u64 (Sage Weil) [1122174]
-- [block] rbd: tear down watch request if rbd_dev_device_setup() fails (Sage Weil) [1122174]
-- [block] rbd: introduce rbd_dev_header_unwatch_sync() and switch to it (Sage Weil) [1122174]
-- [block] rbd: enable extended devt in single-major mode (Sage Weil) [1122174]
-- [fs] ceph: check caps in filemap_fault and page_mkwrite (Sage Weil) [1122174]
-- [block] rbd: add support for single-major device number allocation scheme (Sage Weil) [1122174]
-- [block] rbd: add 'minor' sysfs rbd device attribute (Sage Weil) [1122174]
-- [block] rbd: switch to ida for rbd id assignments (Sage Weil) [1122174]
-- [block] rbd: refactor rbd_init() a bit (Sage Weil) [1122174]
-- [block] rbd: tweak "loaded" message and module description (Sage Weil) [1122174]
-- [block] rbd: rbd_device::dev_id is an int, format it as such (Sage Weil) [1122174]
-- [net] libceph: resend all writes after the osdmap loses the full flag (Sage Weil) [1122174]
-- [net] libceph: block I/O when PAUSE or FULL osd map flags are set (Sage Weil) [1122174]
-- [fs] ceph: new helper, file_inode(file) (Sage Weil) [1122174]
-- [fs] ceph: Add necessary clean up if invalid reply received in handle_reply() (Sage Weil) [1122174]
-- [fs] ceph: Clean up if error occurred in finish_read() (Sage Weil) [1122174]
-- [fs] ceph: implement readv/preadv for sync operation (Sage Weil) [1122174]
-- [fs] ceph: Implement writev/pwritev for sync operation (Sage Weil) [1122174]
-- [fs] ceph: drop unconnected inodes (Sage Weil) [1122174]
-- [fs] ceph: Avoid data inconsistency due to d-cache aliasing in readpage() (Sage Weil) [1122174]
-- [fs] ceph: initialize inode before instantiating dentry (Sage Weil) [1122174]
-- [fs] ceph: allocate non-zero page to fscache in readpage() (Sage Weil) [1122174]
-- [fs] ceph: wake up 'safe' waiters when unregistering request (Sage Weil) [1122174]
-- [fs] ceph: cleanup aborted requests when re-sending requests (Sage Weil) [1122174]
-- [fs] ceph: handle race between cap reconnect and cap release (Sage Weil) [1122174]
-- [fs] ceph: set caps count after composing cap reconnect message (Sage Weil) [1122174]
-- [fs] ceph: queue cap release in __ceph_remove_cap() (Sage Weil) [1122174]
-- [fs] ceph: handle frag mismatch between readdir request and reply (Sage Weil) [1122174]
-- [fs] ceph: remove outdated frag information (Sage Weil) [1122174]
-- [block] rbd: fix error handling from rbd_snap_name() (Sage Weil) [1122174]
-- [block] rbd: ignore unmapped snapshots that no longer exist (Sage Weil) [1122174]
-- [block] rbd: fix use-after free of rbd_dev->disk (Sage Weil) [1122174]
-- [block] rbd: make rbd_obj_notify_ack() synchronous (Sage Weil) [1122174]
-- [block] rbd: complete notifies before cleaning up osd_client and rbd_dev (Sage Weil) [1122174]
-- [net] libceph: add function to ensure notifies are complete (Sage Weil) [1122174]
-- [fs] ceph: use d_invalidate() to invalidate aliases (Sage Weil) [1122174]
-- [fs] ceph: remove ceph_lookup_inode() (Sage Weil) [1122174]
-- [block] rbd: fix null dereference in dout (Sage Weil) [1122174]
-- [block] rbd: fix buffer size for writes to images with snapshots (Sage Weil) [1122174]
-- [fs] ceph: use vfs __set_page_dirty_nobuffers interface instead of doing it inside filesystem (Sage Weil) [1122174]
-- [fs] ceph: allow sync_read/write return partial successed size of read/write (Sage Weil) [1122174]
-- [fs] ceph: fix bugs about handling short-read for sync read mode (Sage Weil) [1122174]
-- [fs] ceph: remove useless variable revoked_rdcache (Sage Weil) [1122174]
-- [net] libceph: create_singlethread_workqueue() doesn't return ERR_PTRs (Sage Weil) [1122174]
-- [net] libceph: potential NULL dereference in ceph_osdc_handle_map() (Sage Weil) [1122174]
-- [net] libceph: fix error handling in handle_reply() (Sage Weil) [1122174]
-- [fs] ceph: fix fallocate division (Sage Weil) [1122174]
-- [fs] ceph: punch hole support (Sage Weil) [1122174]
-- [fs] ceph: fix request max size (Sage Weil) [1122174]
-- [fs] ceph: introduce i_truncate_mutex (Sage Weil) [1122174]
-- [fs] ceph: cleanup the logic in ceph_invalidatepage (Sage Weil) [1122174]
-- [fs] ceph: Remove bogus check in invalidatepage (Sage Weil) [1122174]
-- [fs] ceph: replace hold_mutex flag with goto (Sage Weil) [1122174]
-- [fs] ceph: Move the place for EOLDSNAPC handle in ceph_aio_write to easily understand (Sage Weil) [1122174]
-- [block] rbd: use NULL instead of 0 (Sage Weil) [1122174]
-- [fs] ceph: fix freeing inode vs removing session caps race (Sage Weil) [1122174]
-- [fs] ceph: Add check returned value on func ceph_calc_ceph_pg (Sage Weil) [1122174]
-- [fs] ceph: Don't use ceph-sync-mode for synchronous-fs (Sage Weil) [1122174]
-- [fs] ceph: cleanup types in striped_read() (Sage Weil) [1122174]
-- [fs] ceph: trim deleted inode (Sage Weil) [1122174]
-- [fs] ceph: wake up writer if vmtruncate work get blocked (Sage Weil) [1122174]
-- [fs] ceph: drop CAP_LINK_SHARED when sending "link" request to MDS (Sage Weil) [1122174]
-- [fs] ceph: fix null pointer dereference (Sage Weil) [1122174]
-- [net] libceph: call r_unsafe_callback when unsafe reply is received (Sage Weil) [1122174]
-- [fs] ceph: fix race between cap issue and revoke (Sage Weil) [1122174]
-- [fs] ceph: fix cap revoke race (Sage Weil) [1122174]
-- [fs] ceph: fix pending vmtruncate race (Sage Weil) [1122174]
-- [fs] ceph: avoid accessing invalid memory (Sage Weil) [1122174]
-- [fs] ceph: Reconstruct the func ceph_reserve_caps (Sage Weil) [1122174]
-- [fs] ceph: Free mdsc if alloc mdsc->mdsmap failed (Sage Weil) [1122174]
-- [fs] ceph: remove sb_start/end_write in ceph_aio_write (Sage Weil) [1122174]
-- [fs] ceph: avoid meaningless calling ceph_caps_revoking if sync_mode == WB_SYNC_ALL (Sage Weil) [1122174]
-- [fs] ceph: move inode to proper flushing list when auth MDS changes (Sage Weil) [1122174]
-- [block] rbd: fix a couple warnings (Sage Weil) [1122174]
-- [fs] ceph: clear migrate seq when MDS restarts (Sage Weil) [1122174]
-- [fs] ceph: check migrate seq before changing auth cap (Sage Weil) [1122174]
-- [fs] ceph: fix race between page writeback and truncate (Sage Weil) [1122174]
-- [fs] ceph: reset iov_len when discarding cap release messages (Sage Weil) [1122174]
-- [fs] ceph: fix cap release race (Sage Weil) [1122174]
-- [net] libceph: fix truncate size calculation (Sage Weil) [1122174]
-- [net] libceph: fix safe completion (Sage Weil) [1122174]
-- [block] rbd: take a little credit (Sage Weil) [1122174]
-- [block] rbd: use rwsem to protect header updates (Sage Weil) [1122174]
-- [block] rbd: don't hold ctl_mutex to get/put device (Sage Weil) [1122174]
-- [block] rbd: protect against concurrent unmaps (Sage Weil) [1122174]
-- [block] rbd: set removing flag while holding list lock (Sage Weil) [1122174]
-- [net] libceph: print more info for short message header (Sage Weil) [1122174]
-- [block] rbd: protect against duplicate client creation (Sage Weil) [1122174]
-- [block] rbd: clean up a few things in the refresh path (Sage Weil) [1122174]
-- [block] rbd: flush dcache after zeroing page data (Sage Weil) [1122174]
-- [net] libceph: add lingering request reference when registered (Sage Weil) [1122174]
-- [fs] ceph: tidy ceph_mdsmap_decode() a little (Sage Weil) [1122174]
-- [fs] ceph: improve error handling in ceph_mdsmap_decode (Sage Weil) [1122174]
-- [block] rbd: drop original request earlier for existence check (Sage Weil) [1122174]
-- [fs] ceph: fix up comment for ceph_count_locks() as to which lock to hold (Sage Weil) [1122174]
-- [block] rbd: Use min_t() to fix comparison of distinct pointer types warning (Sage Weil) [1122174]
-
-* Sun Sep 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-166.el7]
-- [scsi] megaraid_sas: Driver version update (06.805.06.00-rc1) (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: MFI MPT linked list corruption fix (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: N-drive primary raid level 1 load balancing (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Add module parameter to disable IRQ-CPU affinity hint (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Round down max sge supported by controller to power of two (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Host lock less mode to enabled asynchronous IO submission (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Extended VD support (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Firmware crash dump feature support (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Update threshold based reply post host index register (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Use writeq for 64bit pci write to avoid spinlock overhead (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Do not scan non syspd drives (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Version and Changelog update (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Fix reset_mutex leak (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Remove unused variables in megasas_instance (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Add missing initial call to megasas_get_ld_vf_affiliation() (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Fix LD/VF affiliation parsing (Tomas Henzl) [1088523]
-- [scsi] megaraid: Fail resume if MSI-X re-initialization failed (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Version and Changelog update (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Add Dell PowerEdge VRTX SR-IOV VF support (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Return leaked MPT frames to MPT frame pool (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Fix megasas_ioc_init_fusion (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: Load correct raid context timeout (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: check return value for megasas_get_pd_list() (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas_fusion: Return correct error value in megasas_get_ld_map_info() (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas_fusion: correctly pass queue info pointer (Tomas Henzl) [1088523]
-- [scsi] megaraid: Use resource_size_t for PCI resources, not long (Tomas Henzl) [1088523]
-- [scsi] megaraid: minor cut and paste error fixed (Tomas Henzl) [1088523]
-- [scsi] megaraid_sas: fix a bug for 64 bit arches (Tomas Henzl) [1088523]
-
-* Fri Sep 19 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-165.el7]
-- [virt] virtio_scsi: fix various bad behavior on aborted requests (Paolo Bonzini) [1098506]
-- [x86] perf/intel: ignore CondChgd bit to avoid false NMI handling (Don Zickus) [1110264]
-- [lib] cmdline: add size unit t/p/e to memparse (Eric Sandeen) [1058608]
-- [virt] virtio_net: fix packets dropping issue (Marcel Apfelbaum) [1131733]
-- [pci] hotplug: Prevent NULL dereference during pciehp probe (Myron Stowe) [1133107]
-- [security] selinux: fix a problem with IPv6 traffic denials in selinux_ip_postroute() (Paul Moore) [1102641]
-- [platform] toshiba: re-enable acpi hotkeys after suspend to disk (Benjamin Tissoires) [1107814]
-- [ethernet] cxgb4: use remove handler as shutdown handler (Steve Best) [1123146]
-- [idle] intel_idle: Broadwell support (Steve Best) [1086453]
-- [s390] dasd: fix unresponsive device during format (Hendrik Brueckner) [1132370]
-- [s390] dasd: validate request size before building CCW/TCW request (Hendrik Brueckner) [1132386]
-- [s390] dasd: fix error recovery for alias devices during format (Hendrik Brueckner) [1132372]
-- [s390] pci: introduce lazy IOTLB flushing for DMA unmap (Hendrik Brueckner) [1132382]
-- [s390] dasd: use aliases for formatted devices during format (Hendrik Brueckner) [1132369]
-- [s390] dasd: fix list_del corruption during format (Hendrik Brueckner) [1132371]
-- [s390] con3215: fix hanging console issue (Hendrik Brueckner) [1132345]
-- [mm] hugetlb: improve page-fault scalability (Larry Woodman) [1087955]
-- [s390] spinlock: fix system hang with spin_retry <= 0 (Hendrik Brueckner) [1096329]
-- [s390] qeth: Accurate ethtool output (Hendrik Brueckner) [1088581]
-- [s390] smp: limit number of cpus in possible cpu mask (Hendrik Brueckner) [1103711]
-- [scsi] isci: fix needless ata reset escalation (David Milburn) [1074984]
-- [idle] intel_idle: close avn_cstates array with correct marker (Steve Best) [1048050]
-- [idle] intel_idle: Fixed C6 state on Avoton/Rangeley processors (Steve Best) [1048050]
-- [idle] intel_idle: Support Intel Atom Processor C2000 Product Family (Steve Best) [1048050]
-- [ethernet] i40e: Bump i40e/i40evf versions (Stefan Assmann) [1140994]
-- [ethernet] i40e: fix panic due to too-early Tx queue enable (Stefan Assmann) [1140994]
-- [ethernet] i40e: Fix an issue when PF reset fails (Stefan Assmann) [1140994]
-- [ethernet] i40e: make warning less verbose (Stefan Assmann) [1140994]
-- [ethernet] i40e: Tell OS link is going down when calling set_phy_config (Stefan Assmann) [1140994]
-- [ethernet] i40e: Remove unnecessary assignment (Stefan Assmann) [1140994]
-- [ethernet] i40e: Change wording to be more consistent (Stefan Assmann) [1140994]
-- [ethernet] i40e: Allow user to change link settings if link is down (Stefan Assmann) [1140994]
-- [ethernet] i40e: Add dual speed module support (Stefan Assmann) [1140994]
-- [mm] memory-failure: support use of a dedicated thread to handle SIGBUS(BUS_MCEERR_AO) (Rui Wang) [1108357]
-- [mm] memory-failure: don't let collect_procs() skip over processes for MF_ACTION_REQUIRED (Rui Wang) [1108357]
-- [mm] memory-failure: send right signal code to correct thread (Rui Wang) [1108357]
-- [crypto] qat: Use pci_enable_msix_exact() instead of pci_enable_msix() (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fix return value check in adf_chr_drv_create() (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fixed SKU1 dev issue (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Use hweight for bit counting (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Updated print outputs (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: change ae_num to ae_id (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: change slice->regions to slice->region (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: use min_t macro (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: remove unnecessary parentheses (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: remove unneeded header (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: checkpatch blank lines (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: remove unnecessary return codes (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: remove an unneeded cast (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fix error path crash when no firmware is present (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fixed new checkpatch warnings (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Updated Firmware Info Metadata (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fix random config build warnings (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Fix build problem with O= (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Update to makefiles (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT DH895xcc accelerator (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT accelengine part of fw loader (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT ucode part of fw loader (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT crypto interface (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT FW interface (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT transport code (Nikolay Aleksandrov) [1091130]
-- [crypto] qat: Intel(R) QAT driver framework (Nikolay Aleksandrov) [1091130]
-- [crypto] Sort drivers/crypto/Makefile (Nikolay Aleksandrov) [1091130]
-- [crypto] authenc: Export key parsing helper function (Nikolay Aleksandrov) [1091130]
-
-* Thu Sep 18 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-164.el7]
-- [drm] mst: rework payload table allocation to conform better (Dave Airlie) [1140440]
-- [drm] dp: Staticize a couple of DP utility functions (Dave Airlie) [1140440]
-- [drm] dp-mst-helper: Don't use uninitialized fields of the sideband message header (Dave Airlie) [1140440]
-- [drm] dp-mst-helper: Avoid reading uninitialized value (Dave Airlie) [1140440]
-- [drm] mst: fix build with debugfs off (Dave Airlie) [1140440]
-- [drm] i915: handle G45/GM45 pulse detection connected state (Dave Airlie) [1140440]
-- [drm] i915: take display port power domain in DP HPD handler (Dave Airlie) [1140440]
-- [drm] i915: only hook up hpd pulse for DP outputs (Dave Airlie) [1140440]
-- [drm] i915: lock around link status and link training (Dave Airlie) [1140440]
-- [drm] i915: mst topology dumper in debugfs (v0.2) (Dave Airlie) [1140440]
-- [drm] i915: add DP 1.2 MST support (v0.7) (Dave Airlie) [1140440]
-- [drm] i915: split some conversion functions out into separate functions (Dave Airlie) [1140440]
-- [drm] i915: check connector->encoder before using it (Dave Airlie) [1140440]
-- [drm] i915: split some DP modesetting code into a separate function (Dave Airlie) [1140440]
-- [drm] helper: add Displayport multi-stream helper (v0.6) (Dave Airlie) [1140440]
-- [drm] i915: rework digital port IRQ handling (v2) (Dave Airlie) [1140440]
-- [drm] add a path blob property (Dave Airlie) [1140440]
-- [drm] fb_helper: allow adding/removing connectors later (Dave Airlie) [1140440]
-- [drm] crtc: add interface to reinitialise the legacy mode group (Dave Airlie) [1140440]
-- [drm] i915: add some registers need for displayport MST support (Dave Airlie) [1140440]
-- [drm] i915: silence some scary new warnings (Rob Clark) [1128915]
-- [drm] upstream sync to v3.16.0 (Rob Clark) [1128915]
-- [drm] upstream sync to v3.15.0 (Rob Clark) [1101269]
-- [lib] Export interval_tree (Rob Clark) [1101269]
-- [mm] introduce helper function mem_init_print_info() to simplify mem_init() (Rob Clark) [1101269]
-- [kernel] bitops: Introduce a more generic BITMASK macro (Rob Clark) [1101269]
-- [drm] upstream sync to v3.14.2 (Rob Clark) [1119341]
-- [drm] upstream sync to v3.13.11 (Rob Clark) [1119339]
-- [fs] dcache: missing EXPORT_SYMBOL(simple_dname) (Rob Clark) [1119339]
-- [kernel] define u8, s8, u32, etc. limits (Rob Clark) [1119339]
-- [fs] consolidate the reassignments of ->f_op in ->open() instances (Rob Clark) [1119339]
-- [kernel] sched: replace INIT_COMPLETION with reinit_completion (Rob Clark) [1119339]
-
-* Wed Sep 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-163.el7]
-- [fs] gfs2: Request demote when a "try" flock fails (Robert S Peterson) [1132154]
-- [fs] gfs2: Change maxlen variables to size_t (Robert S Peterson) [1127251]
-- [fs] gfs2: Fix return value in slot_get() (Abhijith Das) [1026406]
-- [fs] gfs2: replace kmalloc - __vmalloc / memset 0 (Abhijith Das) [1026406]
-- [fs] gfs2: Fix kbuild test robot reported warning (Abhijith Das) [1026406]
-- [fs] gfs2: Move quota bitmap operations under their own lock (Abhijith Das) [1026406]
-- [fs] gfs2: Clean up quota slot allocation (Abhijith Das) [1026406]
-- [fs] gfs2: Only run logd and quota when mounted read/write (Abhijith Das) [1026406]
-- [fs] gfs2: Use RCU/hlist_bl based hash for quotas (Abhijith Das) [1026406]
-- [fs] gfs2: Remove gfs2_quota_change_host structure (Abhijith Das) [1026406]
-- [fs] gfs2: Use generic list_lru for quota (Abhijith Das) [1026406]
-- [fs] list: add a new LRU list type (Abhijith Das) [1026406]
-- [fs] gfs2: Rename quota qd_lru_lock qd_lock (Abhijith Das) [1026406]
-- [fs] gfs2: Use reflink for quota data cache (Abhijith Das) [1026406]
-- [fs] gfs2: Protect quota sync generation (Abhijith Das) [1026406]
-- [fs] gfs2: Inline qd_trylock into gfs2_quota_unlock (Abhijith Das) [1026406]
-- [fs] gfs2: Make two similar quota code fragments into a function (Abhijith Das) [1026406]
-- [fs] gfs2: Remove obsolete quota tunable (Abhijith Das) [1026406]
-- [fs] gfs2: Move gfs2_icbit_munge into quota.c (Abhijith Das) [1026406]
-
-* Wed Sep 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-162.el7]
-- [powerpc] powernv: Fix permissions on sysparam sysfs entries (Don Zickus) [1127366]
-- [pci] rphahp: Fix endianess issues (Don Zickus) [1127366]
-- [scripts] modpost: handle non ABS crc symbols (Don Zickus) [1127366]
-- [ethernet] ibmveth: Fix endian issues with MAC addresses (Don Zickus) [1127366]
-- [ethernet] ibmveth: Fix little endian issues (Don Zickus) [1127366]
-- [scsi] ibmvscsi: Fix little endian issues (Don Zickus) [1127366]
-- [powerpc] pseries: Add H_SET_MODE to change exception endianness (Don Zickus) [1127366]
-- [powerpc] Move precessing of MCE queued event out from syscall exit path (Don Zickus) [1127366]
-- [powerpc] of: compiles fixes (Don Zickus) [1127366]
-- [fs] pstore: Introduce new argument 'compressed' in the read callback (Don Zickus) [1127366]
-- [cpufreq] powernv: make local function static (Don Zickus) [1127366]
-- [cpufreq] powernv: Fix build failure on UP (Don Zickus) [1127366]
-- [cpufreq] powernv: Use cpufreq_frequency_table.driver_data to store pstate ids (Don Zickus) [1127366]
-- [cpufreq] powernv: cpufreq driver for powernv platform (Don Zickus) [1127366]
-- [fs] pstore: Add new argument 'compressed' in pstore write callback (Don Zickus) [1127366]
-- [powerpc] of: implement pci_address_to_pio as weak function (Don Zickus) [1127366]
-- [kernel] panic: Make panic_timeout configurable (Don Zickus) [1127366]
-- [pci] Add new pci_is_bridge() interface (Don Zickus) [1127366]
-- [pci] Rename pci_is_bridge() to pci_has_subordinate() (Don Zickus) [1127366]
-- [powerpc] of: device_node kobject lifecycle fixes (Don Zickus) [1127366]
-- [powerpc] Fix endianness of flash_block_list in rtas_flash (Don Zickus) [1127366]
-- [powerpc] powernv: Change BUG_ON to WARN_ON in elog code (Don Zickus) [1127366]
-- [powerpc] perf: Fix MMCR2 handling for EBB (Don Zickus) [1127366]
-- [powerpc] use _GLOBAL_TOC for memmove (Don Zickus) [1127366]
-- [powerpc] pseries: dynamically added OF nodes need to call of_node_init (Don Zickus) [1127366]
-- [powerpc] subpage_protect: Increase the array size to take care of 64TB (Don Zickus) [1127366]
-- [powerpc] Fix bugs in emulate_step() (Don Zickus) [1127366]
-- [powerpc] Disable doorbells on Power8 DD1.x (Don Zickus) [1127366]
-- [powerpc] perf: Never program book3s PMCs with values >= 0x80000000 (Don Zickus) [1127366]
-- [powerpc] perf: Clear MMCR2 when enabling PMU (Don Zickus) [1127366]
-- [powerpc] perf: Add PPMU_ARCH_207S define (Don Zickus) [1127366]
-- [powerpc] kvm: Remove redundant save of SIER AND MMCR2 (Don Zickus) [1127366]
-- [powerpc] powernv: Check for IRQHAPPENED before sleeping (Don Zickus) [1127366]
-- [powerpc] bpf: Fix the broken LD_VLAN_TAG_PRESENT test (Don Zickus) [1127366]
-- [powerpc] bpf: Use correct mask while accessing the VLAN tag (Don Zickus) [1127366]
-- [powerpc] module: Fix TOC symbol CRC (Don Zickus) [1127366]
-- [powerpc] powernv: Remove OPAL v1 takeover (Don Zickus) [1127366]
-- [powerpc] kprobes: Fix jprobes on ABI v2 (LE) (Don Zickus) [1127366]
-- [powerpc] ftrace: Use pr_fmt() to namespace error messages (Don Zickus) [1127366]
-- [powerpc] ftrace: Fix nop of modules on 64bit LE (ABIv2) (Don Zickus) [1127366]
-- [powerpc] ftrace: Fix inverted check of create_branch() (Don Zickus) [1127366]
-- [powerpc] ftrace: Fix typo in mask of opcode (Don Zickus) [1127366]
-- [powerpc] Add ppc_global_function_entry() (Don Zickus) [1127366]
-- [powerpc] Remove __arch_swab* (Don Zickus) [1127366]
-- [powerpc] Remove ancient DEBUG_SIG code (Don Zickus) [1127366]
-- [powerpc] kerenl: Enable EEH for IO accessors (Don Zickus) [1127366]
-- [powerpc] Avoid circular dependency with zImage. (Don Zickus) [1127366]
-- [powerpc] book3s: Fix some ABIv2 issues in machine check code (Don Zickus) [1127366]
-- [powerpc] book3s: Fix guest MC delivery mechanism to avoid soft lockups in guest (Don Zickus) [1127366]
-- [powerpc] book3s: Increment the mce counter during machine_check_early call (Don Zickus) [1127366]
-- [powerpc] book3s: Add stack overflow check in machine check handler (Don Zickus) [1127366]
-- [powerpc] book3s: Fix machine check handling for unhandled errors (Don Zickus) [1127366]
-- [powerpc] eeh: Dump PE location code (Don Zickus) [1127366]
-- [powerpc] powernv: Enable POWER8 doorbell IPIs (Don Zickus) [1127366]
-- [powerpc] powernv: Fix killed EEH event (Don Zickus) [1127366]
-- [powerpc] fix typo 'CONFIG_PMAC' (Don Zickus) [1127366]
-- [powerpc] fix typo 'CONFIG_PPC_CPU' (Don Zickus) [1127366]
-- [powerpc] powernv: Don't escalate non-existing frozen PE (Don Zickus) [1127366]
-- [powerpc] eeh: Report frozen parent PE prior to child PE (Don Zickus) [1127366]
-- [powerpc] eeh: Clear frozen state for child PE (Don Zickus) [1127366]
-- [powerpc] powernv: Reduce panic timeout from 180s to 10s (Don Zickus) [1127366]
-- [powerpc] xmon: avoid format string leaking to printk (Don Zickus) [1127366]
-- [powerpc] perf: Ensure all EBB register state is cleared on fork() (Don Zickus) [1127366]
-- [powerpc] powernv: Fix reading of OPAL msglog (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endianness problems in EEH (Don Zickus) [1127366]
-- [powerpc] powernv: Disable subcore for UP configs (Don Zickus) [1127366]
-- [powerpc] powernv: Include asm/smp.h to fix UP build failure (Don Zickus) [1127366]
-- [powerpc] Don't setup CPUs with bad status (Don Zickus) [1127366]
-- [powerpc] Add AT_HWCAP2 to indicate V.CRYPTO category support (Don Zickus) [1127366]
-- [powerpc] update comments for generic idle conversion (Don Zickus) [1127366]
-- [powerpc] powernv: Add missing include to LPC code (Don Zickus) [1127366]
-- [powerpc] powernv: Pass buffer size to OPAL validate flash call (Don Zickus) [1127366]
-- [powerpc] pseries: hcall functions are exported to modules, need _GLOBAL_TOC() (Don Zickus) [1127366]
-- [powerpc] Exported functions __clear_user and copy_page use r2 so need _GLOBAL_TOC() (Don Zickus) [1127366]
-- [powerpc] powernv: Set memory_block_size_bytes to 256MB (Don Zickus) [1127366]
-- [powerpc] Allow ppc_md platform hook to override memory_block_size_bytes (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endian issues in memory error handling code (Don Zickus) [1127366]
-- [powerpc] eeh: Skip eeh sysfs when eeh is disabled (Don Zickus) [1127366]
-- [powerpc] powernv: Provide debugfs access to the LPC bus via OPAL (Don Zickus) [1127366]
-- [powerpc] serial: Use saner flags when creating legacy ports (Don Zickus) [1127366]
-- [powerpc] Add cpu family documentation (Don Zickus) [1127366]
-- [powerpc] xmon: Fix up xmon format strings (Don Zickus) [1127366]
-- [powerpc] powernv: Add calls to support little endian host (Don Zickus) [1127366]
-- [powerpc] Document sysfs DSCR interface (Don Zickus) [1127366]
-- [powerpc] Fix regression of per-CPU DSCR setting (Don Zickus) [1127366]
-- [powerpc] Split __SYSFS_SPRSETUP macro (Don Zickus) [1127366]
-- [powerpc] fadump: Cleaning up inconsistent NULL checks (Don Zickus) [1127366]
-- [powerpc] powernv: Add support for POWER8 split core on powernv (Don Zickus) [1127366]
-- [powerpc] kvm/book3s_hv: Use threads_per_subcore in KVM (Don Zickus) [1127366]
-- [powerpc] Check cpu_thread_in_subcore() in __cpu_up() (Don Zickus) [1127366]
-- [powerpc] Add threads_per_subcore (Don Zickus) [1127366]
-- [powerpc] powernv: Make it possible to skip the IRQHAPPENED check in power7_nap() (Don Zickus) [1127366]
-- [powerpc] kvm/book3s_hv: Rework the secondary inhibit code (Don Zickus) [1127366]
-- [powerpc] numa: Enable CONFIG_HAVE_MEMORYLESS_NODES (Don Zickus) [1127366]
-- [powerpc] numa: Enable USE_PERCPU_NUMA_NODE_ID (Don Zickus) [1127366]
-- [powerpc] Fix 64 bit builds with binutils 2.24 (Don Zickus) [1127366]
-- [powerpc] pci: Use pci_is_bridge() to simplify code (Don Zickus) [1127366]
-- [powerpc] module: Fix stubs for BE (Don Zickus) [1127366]
-- [powerpc] Clear ELF personality flag if ELFv2 is not requested (Don Zickus) [1127366]
-- [powerpc] Fix smp_processor_id() in preemptible splat in set_breakpoint (Don Zickus) [1127366]
-- [powerpc] Drop return value from set_breakpoint as it is unused (Don Zickus) [1127366]
-- [powerpc] Remove non-uapi linkage.h export (Don Zickus) [1127366]
-- [powerpc] irq work racing with timer interrupt can result in timer interrupt hang (Don Zickus) [1127366]
-- [powerpc] mm: use macro PGTABLE_EADDR_SIZE instead of digital (Don Zickus) [1127366]
-- [powerpc] le: Show the endianess of the LPAR under PowerVM (Don Zickus) [1127366]
-- [powerpc] Use 64k io pages when we never see an HEA (Don Zickus) [1127366]
-- [powerpc] use libfdt accessors for header data (Don Zickus) [1127366]
-- [powerpc] memcpy optimization for 64bit LE (Don Zickus) [1127366]
-- [powerpc] tm: Add checking to treclaim/trechkpt (Don Zickus) [1127366]
-- [powerpc] tm: Remove unnecessary r1 save (Don Zickus) [1127366]
-- [powerpc] powernv: Implement ppc_md.get_proc_freq() (Don Zickus) [1127366]
-- [cpuidle] powernv: Remove redundant cpuidle_idle_call() (Don Zickus) [1127366]
-- [powerpc] powernv: Framework to show the correct clock in /proc/cpuinfo (Don Zickus) [1127366]
-- [powerpc] powernv: Return secondary CPUs to firmware before FW update (Don Zickus) [1127366]
-- [powerpc] boot: Add support for 64bit little endian wrapper (Don Zickus) [1127366]
-- [powerpc] boot: Add a global entry point for pseries (Don Zickus) [1127366]
-- [powerpc] boot: Modify entry point for 64bit (Don Zickus) [1127366]
-- [powerpc] boot: Define a routine to enter prom (Don Zickus) [1127366]
-- [powerpc] boot: Add little endian support to elf utils (Don Zickus) [1127366]
-- [powerpc] boot: Add 64bit and little endian support to addnote (Don Zickus) [1127366]
-- [powerpc] boot: Define byteswapping routines for little endian (Don Zickus) [1127366]
-- [powerpc] boot: Fix compile warning in 64bit (Don Zickus) [1127366]
-- [powerpc] boot: Define typedef ihandle as u32 (Don Zickus) [1127366]
-- [powerpc] boot: Rework of_claim() to make it 64bit friendly (Don Zickus) [1127366]
-- [powerpc] boot: Add PROM_ERROR define in oflib (Don Zickus) [1127366]
-- [powerpc] boot: Add byteswapping routines in oflib (Don Zickus) [1127366]
-- [powerpc] boot: Use prom_arg_t in oflib (Don Zickus) [1127366]
-- [powerpc] boot: Use a common prom_args struct in oflib (Don Zickus) [1127366]
-- [powerpc] boot: Fix do_div for 64bit wrapper (Don Zickus) [1127366]
-- [powerpc] prom: Stop scanning dev-tree for fdump early (Don Zickus) [1127366]
-- [powerpc] powernv: Don't use pe->pbus to get the domain number (Don Zickus) [1127366]
-- [powerpc] powernv: Fix VFIO support with PHB3 (Don Zickus) [1127366]
-- [powerpc] powernv: Missed IOMMU table type (Don Zickus) [1127366]
-- [powerpc] eeh: Can't recover from non-PE-reset case (Don Zickus) [1127366]
-- [powerpc] pci: Mask linkDown on resetting PCI bus (Don Zickus) [1127366]
-- [powerpc] powernv: Reset root port in firmware (Don Zickus) [1127366]
-- [powerpc] pseries: Fix overwritten PE state (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endless reporting frozen PE (Don Zickus) [1127366]
-- [powerpc] eeh: No hotplug on permanently removed dev (Don Zickus) [1127366]
-- [powerpc] eeh: Allow to disable EEH (Don Zickus) [1127366]
-- [powerpc] eeh: Cleanup EEH subsystem variables (Don Zickus) [1127366]
-- [powerpc] eeh: Use cached capability for log dump (Don Zickus) [1127366]
-- [powerpc] eeh: Cleanup eeh_gather_pci_data() (Don Zickus) [1127366]
-- [powerpc] eeh: Avoid I/O access during PE reset (Don Zickus) [1127366]
-- [powerpc] powernv: Use EEH PCI config accessors (Don Zickus) [1127366]
-- [powerpc] eeh: Block PCI-CFG access during PE reset (Don Zickus) [1127366]
-- [powerpc] eeh: EEH_PE_ISOLATED not reflect HW state (Don Zickus) [1127366]
-- [powerpc] powernv: Remove fields in PHB diag-data dump (Don Zickus) [1127366]
-- [powerpc] powernv: Move PNV_EEH_STATE_ENABLED around (Don Zickus) [1127366]
-- [powerpc] powernv: Remove PNV_EEH_STATE_REMOVED (Don Zickus) [1127366]
-- [powerpc] eeh: Remove EEH_PE_PHB_DEAD (Don Zickus) [1127366]
-- [powerpc] pseries: Protect remove_memory() with device hotplug lock (Don Zickus) [1127366]
-- [powerpc] Fix error return in rtas_flash module init (Don Zickus) [1127366]
-- [powerpc] Bump BOOT_COMMAND_LINE_SIZE to 2048 (Don Zickus) [1127366]
-- [powerpc] Bump COMMAND_LINE_SIZE to 2048 (Don Zickus) [1127366]
-- [powerpc] Rename duplicate COMMAND_LINE_SIZE define (Don Zickus) [1127366]
-- [powerpc] mm: Fix tlbie to add AVAL fields for 64K pages (Don Zickus) [1127366]
-- [powerpc] powernv: Fix little endian issues in OPAL dump code (Don Zickus) [1127366]
-- [powerpc] powernv: Create OPAL sglist helper functions and fix endian issues (Don Zickus) [1127366]
-- [powerpc] powernv: Fix little endian issues in OPAL error log code (Don Zickus) [1127366]
-- [powerpc] powernv: Fix little endian issues with opal_do_notifier calls (Don Zickus) [1127366]
-- [powerpc] powernv: Remove some OPAL function declaration duplication (Don Zickus) [1127366]
-- [powerpc] powernv: Use uint64_t instead of size_t in OPAL APIs (Don Zickus) [1127366]
-- [powerpc] powernv: Release the refcount for pci_dev (Don Zickus) [1127366]
-- [powerpc] powernv: Reduce multi-hit of iommu_add_device() (Don Zickus) [1127366]
-- [powerpc] powernv: Fix little endian issues in OPAL flash code (Don Zickus) [1127366]
-- [powerpc] powernv: Fix kexec races going back to OPAL (Don Zickus) [1127366]
-- [powerpc] powernv: Check sysparam size before creation (Don Zickus) [1127366]
-- [powerpc] powernv: Fix typos in sysparam code (Don Zickus) [1127366]
-- [powerpc] powernv: Check sysfs size before copying (Don Zickus) [1127366]
-- [powerpc] powernv: Use ssize_t for sysparam return values (Don Zickus) [1127366]
-- [powerpc] powernv: Fix sysparam sysfs error handling (Don Zickus) [1127366]
-- [powerpc] Fix Oops in rtas_stop_self() (Don Zickus) [1127366]
-- [powerpc] Export flush_icache_range (Don Zickus) [1127366]
-- [powerpc] Build little endian ppc64 kernel with ABIv2 (Don Zickus) [1127366]
-- [powerpc] ftrace: Fix ABIv2 issues with __ftrace_make_call (Don Zickus) [1127366]
-- [powerpc] ftrace: Use module loader helpers to parse trampolines (Don Zickus) [1127366]
-- [powerpc] modules: Create module_trampoline_target() (Don Zickus) [1127366]
-- [powerpc] modules: Create is_module_trampoline() (Don Zickus) [1127366]
-- [powerpc] kprobes: Fix ABIv2 issues with kprobe_lookup_name (Don Zickus) [1127366]
-- [powerpc] ftrace_caller, _mcount is exported to modules so needs _GLOBAL_TOC() (Don Zickus) [1127366]
-- [powerpc] Add _GLOBAL_TOC for ABIv2 assembly functions exported to modules (Don Zickus) [1127366]
-- [powerpc] modules: implement stubs for ELFv2 ABI (Don Zickus) [1127366]
-- [powerpc] modules: skip r2 setup for ELFv2 (Don Zickus) [1127366]
-- [powerpc] modules: use r12 for stub jump address (Don Zickus) [1127366]
-- [powerpc] modules: change r2 save/restore offset for ELFv2 ABI (Don Zickus) [1127366]
-- [powerpc] modules: comment about de-dotifying symbols when using the ELFv2 ABI (Don Zickus) [1127366]
-- [powerpc] Handle new ELFv2 module relocations (Don Zickus) [1127366]
-- [powerpc] Fix up TOC. for modules (Don Zickus) [1127366]
-- [powerpc] module: handle MODVERSION for .TOC (Don Zickus) [1127366]
-- [powerpc] EXPORT_SYMBOL(.TOC.) (Don Zickus) [1127366]
-- [powerpc] modules implement R_PPC64_TOCSAVE relocation (Don Zickus) [1127366]
-- [powerpc] make module stub code endian independent (Don Zickus) [1127366]
-- [powerpc] Fix ABIv2 issue with dereference_function_descriptor (Don Zickus) [1127366]
-- [powerpc] Fix SMP issues with ppc64le ABIv2 (Don Zickus) [1127366]
-- [powerpc] tracing: TRACE_WITH_FRAME_BUFFER creates invalid stack frames (Don Zickus) [1127366]
-- [powerpc] tm: Fix GOT save offset for ABIv2 (Don Zickus) [1127366]
-- [powerpc] tm: Use STK_PARAM (Don Zickus) [1127366]
-- [powerpc] Fix unsafe accesses to parameter area in ELFv2 (Don Zickus) [1127366]
-- [powerpc] Fix ABIv2 issues with stack offsets in assembly code (Don Zickus) [1127366]
-- [powerpc] Fix kernel thread creation on ABIv2 (Don Zickus) [1127366]
-- [powerpc] Fix branch patching code for ABIv2 (Don Zickus) [1127366]
-- [powerpc] Use ppc_function_entry instead of open coding it (Don Zickus) [1127366]
-- [powerpc] Add ABIv2 support to ppc_function_entry (Don Zickus) [1127366]
-- [powerpc] Ignore .TOC. relocations (Don Zickus) [1127366]
-- [powerpc] ABIv2 function calls must place target address in r12 (Don Zickus) [1127366]
-- [powerpc] Remove function descriptors and dot symbols on new ABI (Don Zickus) [1127366]
-- [powerpc] Create DOTSYM to wrap dot symbol usage (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Introduce hypervisor call H_GET_TCE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add support for DABRX register on POWER7 (Don Zickus) [1127366]
-- [powerpc] Remove dot symbol usage in exception macros (Don Zickus) [1127366]
-- [powerpc] Remove _INIT_GLOBAL(), _STATIC() and _INIT_STATIC() (Don Zickus) [1127366]
-- [powerpc] Remove some unnecessary uses of _GLOBAL() and _STATIC() (Don Zickus) [1127366]
-- [powerpc] Don't use a function descriptor for system call table (Don Zickus) [1127366]
-- [powerpc] Remove superflous function descriptors in assembly only code (Don Zickus) [1127366]
-- [powerpc] No need to use dot symbols when branching to a function (Don Zickus) [1127366]
-- [powerpc] Don't build assembly files with ABIv2 (Don Zickus) [1127366]
-- [powerpc] Don't try to set LPCR unless we're in hypervisor mode (Don Zickus) [1127366]
-- [powerpc] le: Avoid creatng R_PPC64_TOCSAVE relocations for modules (Don Zickus) [1127366]
-- [powerpc] opal: Add missing include (Don Zickus) [1127366]
-- [powerpc] Convert last uses of __FUNCTION__ to __func__ (Don Zickus) [1127366]
-- [powerpc] Add lq/stq emulation (Don Zickus) [1127366]
-- [powerpc] powernv: Add invalid OPAL call (Don Zickus) [1127366]
-- [powerpc] powernv: Add OPAL message log interface (Don Zickus) [1127366]
-- [powerpc] book3s: Fix mc_recoverable_range buffer overrun issue (Don Zickus) [1127366]
-- [powerpc] Remove dead code in sycall entry (Don Zickus) [1127366]
-- [powerpc] Use of_node_init() for the fakenode in msi_bitmap.c (Don Zickus) [1127366]
-- [powerpc] of: Make device nodes kobjects so they show up in sysfs (Don Zickus) [1127366]
-- [powerpc] mm: NUMA pte should be handled via slow path in get_user_pages_fast() (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endian issues with sensor code (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endian issues with OPAL async code (Don Zickus) [1127366]
-- [powerpc] powernv: Add opal_notifier_unregister() and export to modules (Don Zickus) [1127366]
-- [powerpc] ppc64: Do not turn AIL (reloc-on interrupts) too early (Don Zickus) [1127366]
-- [powerpc] ppc64: Gracefully handle early interrupts (Don Zickus) [1127366]
-- [powerpc] prom: early_init_dt_scan_cpus() updates cpu features only once (Don Zickus) [1127366]
-- [powerpc] Make boot_cpuid common between 32 and 64-bit (Don Zickus) [1127366]
-- [powerpc] Adjust CPU_FTR_SMT on all platforms (Don Zickus) [1127366]
-- [powerpc] le: Enable RTAS events support (Don Zickus) [1127366]
-- [powerpc] book3s: Fix CFAR clobbering issue in machine check handler (Don Zickus) [1127366]
-- [powerpc] compat: 32-bit little endian machine name is ppcle, not ppc (Don Zickus) [1127366]
-- [powerpc] le: Big endian arguments for ppc_rtas() (Don Zickus) [1127366]
-- [powerpc] mm: Make sure a local_irq_disable prevent a parallel THP split (Don Zickus) [1127366]
-- [powerpc] Rate-limit users spamming kernel log buffer (Don Zickus) [1127366]
-- [powerpc] perf: Fix handling of L3 events with bank == 1 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Work around POWER8 performance monitor bugs (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Make sure we don't miss dirty pages (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add transactional memory support (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix dirty map for hugepages (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix check for running inside guest in global_invalidates() (Don Zickus) [1127366]
-- [powerpc] powernv: Reset PHB in kdump kernel (Don Zickus) [1127366]
-- [powerpc] eeh: Make the delay for PE reset unified (Don Zickus) [1127366]
-- [virt] kvm/ppc: Clear the runlatch bit of a vcpu before napping (Don Zickus) [1127366]
-- [virt] kvm/ppc: Set the runlatch bit of a CPU just before starting guest (Don Zickus) [1127366]
-- [powerpc] powernv: Set the runlatch bits correctly for offline cpus (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Save/restore host PMU registers that are new in POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix decrementer timeouts with non-zero TB offset (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Don't use kvm_memslots() in real mode (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Return ENODEV error rather than EIO (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Trim top 4 bits of physical address in RTAS code (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add get/set_one_reg for new TM state (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Basic little-endian guest support (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix register usage when loading/saving VRSAVE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Cope with doorbell interrupts (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add new state for transactional memory (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Prepare for host using hypervisor doorbells (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Handle new LPCR bits on POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Handle guest using doorbells for IPIs (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Consolidate code that checks reason for wake from nap (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Implement architecture compatibility modes for POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add handler for HV facility unavailable (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Flush the correct number of TLB sets on POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Context-switch new POWER8 SPRs (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Align physical and virtual CPU thread numbers (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Don't set DABR on POWER8 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - MMIO emulation support for little endian guests (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Use load/store_fp_state functions in HV guest entry/exit (Don Zickus) [1127366]
-- [virt] kvm/ppc: Store FP/VSX/VMX state in thread_fp/vr_state structures (Don Zickus) [1127366]
-- [virt] kvm/ppc: Use load_fp/vr_state rather than load_up_fpu/altivec (Don Zickus) [1127366]
-- [powerpc] powernv/eeh: Add buffer for P7IOC hub error data (Don Zickus) [1127366]
-- [powerpc] powernv: Remove get/set_rtc_time when they are not present (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Take SRCU read lock around kvm_read_guest() call (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Make tbacct_lock irq-safe (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Refine barriers in guest entry/exit (Don Zickus) [1127366]
-- [virt] kvm: Add struct kvm arg to memslot APIs (Don Zickus) [1127366]
-- [powerpc] perf: Define perf_event_print_debug() to print PMU register values (Don Zickus) [1127366]
-- [powerpc] perf: Make some new raw event codes available in sysfs (Don Zickus) [1127366]
-- [powerpc] powernv: Enable fetching of platform sensor data (Don Zickus) [1127366]
-- [powerpc] powernv: Enable reading and updating of system parameters (Don Zickus) [1127366]
-- [powerpc] powernv: Infrastructure to support OPAL async completion (Don Zickus) [1127366]
-- [powerpc] powernv Platform dump interface (Don Zickus) [1127366]
-- [powerpc] powernv: Read OPAL error log and export it through sysfs (Don Zickus) [1127366]
-- [powerpc] Add "force config cmd line" Kconfig option (Don Zickus) [1127366]
-- [powerpc] pseries: Use remove_memory() to remove memory (Don Zickus) [1127366]
-- [powerpc] book3s: Recover from MC in sapphire on SCOM read via MMIO (Don Zickus) [1127366]
-- [powerpc] pseries: Don't try to register pseries cpu hotplug on non-pseries (Don Zickus) [1127366]
-- [powerpc] Fix xmon disassembler for little-endian (Don Zickus) [1127366]
-- [powerpc] Revert c6102609 and replace it with the correct fix for vio dma mask setting (Don Zickus) [1127366]
-- [powerpc] Kill CONFIG_MTD_PARTITIONS (Don Zickus) [1127366]
-- [powerpc] Align p_dyn, p_rela and p_st symbols (Don Zickus) [1127366]
-- [powerpc] powernv: Add OPAL call to resync timebase on wakeup (Don Zickus) [1127366]
-- [powerpc] powernv: Add context management for Fast Sleep (Don Zickus) [1127366]
-- [powerpc] Split timer_interrupt() into timer handling and interrupt handling routines (Don Zickus) [1127366]
-- [powerpc] Implement tick broadcast IPI as a fixed IPI message (Don Zickus) [1127366]
-- [powerpc] Free up the slot of PPC_MSG_CALL_FUNC_SINGLE IPI message (Don Zickus) [1127366]
-- [powerpc] eeh: Fixup the brown paperbag fallout of the "cleanup" (Don Zickus) [1127366]
-- [powerpc] eeh: Kill another abuse of irq_desc (Don Zickus) [1127366]
-- [powerpc] irq: Use generic_handle_irq (Don Zickus) [1127366]
-- [powerpc] powernv: Fix indirect XSCOM unmangling (Don Zickus) [1127366]
-- [powerpc] powernv: Fix opal_xscom_{read, write} prototype (Don Zickus) [1127366]
-- [powerpc] powernv: Refactor PHB diag-data dump (Don Zickus) [1127366]
-- [powerpc] powernv: Dump PHB diag-data immediately (Don Zickus) [1127366]
-- [powerpc] Increase stack redzone for 64-bit userspace to 512 bytes (Don Zickus) [1127366]
-- [powerpc] ftrace: bugfix for test_24bit_addr (Don Zickus) [1127366]
-- [powerpc] crashdump: Fix page frame number check in copy_oldmem_page (Don Zickus) [1127366]
-- [powerpc] le: Ensure that the 'stop-self' RTAS token is handled correctly (Don Zickus) [1127366]
-- [powerpc] eeh: Disable EEH on reboot (Don Zickus) [1127366]
-- [powerpc] eeh: Cleanup on eeh_subsystem_enabled (Don Zickus) [1127366]
-- [powerpc] powernv: Rework EEH reset (Don Zickus) [1127366]
-- [powerpc] powernv: Add iommu DMA bypass support for IODA2 (Don Zickus) [1127366]
-- [powerpc] Fix endian issues in kexec and crash dump code (Don Zickus) [1127366]
-- [powerpc] perf: Configure BHRB filter before enabling PMU interrupts (Don Zickus) [1127366]
-- [powerpc] pseries: Select ARCH_RANDOM on pseries (Don Zickus) [1127366]
-- [powerpc] perf: Add Power8 cache & TLB events (Don Zickus) [1127366]
-- [powerpc] relocate fix relocate processing in LE mode (Don Zickus) [1127366]
-- [powerpc] hugetlb: Replace __get_cpu_var with get_cpu_var (Don Zickus) [1127366]
-- [powerpc] Make sure "cache" directory is removed when offlining cpu (Don Zickus) [1127366]
-- [powerpc] powernv/cpuidle: Back-end cpuidle driver for powernv platform (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: smt-snooze-delay cleanup (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Remove MAX_IDLE_STATE macro (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Make cpuidle-pseries backend driver a non-module (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Use cpuidle_register() for initialisation (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Move processor_idle.c to drivers/cpuidle (Don Zickus) [1127366]
-- [powerpc] numa: Fix decimal permissions (Don Zickus) [1127366]
-- [powerpc] Fix hw breakpoints on !HAVE_HW_BREAKPOINT configurations (Don Zickus) [1127366]
-- [powerpc] Implement arch_spin_is_locked() using arch_spin_value_unlocked() (Don Zickus) [1127366]
-- [powerpc] Add support for the optimised lockref implementation (Don Zickus) [1127366]
-- [powerpc] Kconfig: Make TM select VSX and VMX (Don Zickus) [1127366]
-- [powerpc] powernv: Call OPAL sync before kexec'ing (Don Zickus) [1127366]
-- [powerpc] eeh: Escalate error on non-existing PE (Don Zickus) [1127366]
-- [powerpc] eeh: Handle multiple EEH errors (Don Zickus) [1127366]
-- [powerpc] Fix races with irq_work (Don Zickus) [1127366]
-- [powerpc] Make add_system_ram_resources() __init (Don Zickus) [1127366]
-- [powerpc] add SATA_MV to ppc64_defconfig (Don Zickus) [1127366]
-- [powerpc] powernv: Increase candidate fw image size (Don Zickus) [1127366]
-- [powerpc] iommu: Don't detach device without IOMMU group (Don Zickus) [1127366]
-- [powerpc] eeh: Hotplug improvement (Don Zickus) [1127366]
-- [powerpc] eeh: Call opal_pci_reinit() on powernv for restoring config space (Don Zickus) [1127366]
-- [powerpc] eeh: Add restore_config operation (Don Zickus) [1127366]
-- [powerpc] powernv: Remove unnecessary assignment (Don Zickus) [1127366]
-- [powerpc] Delete non-required instances of include <linux/init.h> (Don Zickus) [1127366]
-- [powerpc] Add vr save/restore functions (Don Zickus) [1127366]
-- [powerpc] Check return value of instance-to-package OF call (Don Zickus) [1127366]
-- [powerpc] add barrier after writing kernel PTE (Don Zickus) [1127366]
-- [powerpc] introduce macro LOAD_REG_ADDR_PIC (Don Zickus) [1127366]
-- [virt] kvm/ppc: define a linux pte lookup function (Don Zickus) [1127366]
-- [powerpc] Fix endian issues in power7/8 machine check handler (Don Zickus) [1127366]
-- [powerpc] iommu: Update the generic code to use dynamic iommu page sizes (Don Zickus) [1127366]
-- [powerpc] iommu: Add it_page_shift field to determine iommu page size (Don Zickus) [1127366]
-- [powerpc] iommu: Update constant names to reflect their hardcoded page size (Don Zickus) [1127366]
-- [powerpc] powernv: move iommu_add_device earlier (Don Zickus) [1127366]
-- [powerpc] vfio: Enable on pSeries platform (Don Zickus) [1127366]
-- [powerpc] vfio: Implement IOMMU driver for VFIO (Don Zickus) [1127366]
-- [powerpc] vfio: Enable on PowerNV platform (Don Zickus) [1127366]
-- [powerpc] Fix "attempt to move .org backwards" error (Don Zickus) [1127366]
-- [powerpc] Fix alignment of secondary cpu spin vars (Don Zickus) [1127366]
-- [powerpc] Align p_end (Don Zickus) [1127366]
-- [powerpc] Make 64-bit non-VMX __copy_tofrom_user bi-endian (Don Zickus) [1127366]
-- [powerpc] Make unaligned accesses endian-safe for powerpc (Don Zickus) [1127366]
-- [powerpc] Fix bad stack check in exception entry (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Don't abuse host r2 in exit path (Don Zickus) [1127366]
-- [powerpc] Full barrier for smp_mb__after_unlock_lock() (Don Zickus) [1127366]
-- [powerpc] powernv: Fix OPAL LPC access in Little Endian (Don Zickus) [1127366]
-- [powerpc] powernv: Fix endian issue in opal_xscom_read (Don Zickus) [1127366]
-- [powerpc] pseries: Fix endian issues in /proc/ppc64/lparcfg (Don Zickus) [1127366]
-- [powerpc] Fix up the kdump base cap to 128M (Don Zickus) [1127366]
-- [powerpc] Fix PTE page address mismatch in pgtable ctor/dtor (Don Zickus) [1127366]
-- [powerpc] powernv: Get FSP memory errors and plumb into memory poison infrastructure (Don Zickus) [1127366]
-- [powerpc] powernv: Add config option for hwpoisoning (Don Zickus) [1127366]
-- [powerpc] Dynamically allocate slb_shadow from memblock (Don Zickus) [1127366]
-- [powerpc] Make slb_shadow a local (Don Zickus) [1127366]
-- [powerpc] Add real mode cache inhibited IO accessors (Don Zickus) [1127366]
-- [powerpc] Increase EEH recovery timeout for SR-IOV (Don Zickus) [1127366]
-- [powerpc] eeh: Output PHB diag-data (Don Zickus) [1127366]
-- [powerpc] powernv: Move PHB-diag dump functions around (Don Zickus) [1127366]
-- [powerpc] powernv: Move SG list structure to header file (Don Zickus) [1127366]
-- [powerpc] powernv: Infrastructure to read opal messages in generic format (Don Zickus) [1127366]
-- [powerpc] powernv: Machine check exception handling (Don Zickus) [1127366]
-- [powerpc] powernv: Remove machine check handling in OPAL (Don Zickus) [1127366]
-- [powerpc] book3s: Queue up and process delayed MCE events (Don Zickus) [1127366]
-- [powerpc] book3s: Decode and save machine check event (Don Zickus) [1127366]
-- [powerpc] book3s: Flush SLB/TLBs if we get SLB/TLB machine check errors on power8 (Don Zickus) [1127366]
-- [powerpc] book3s: Flush SLB/TLBs if we get SLB/TLB machine check errors on power7 (Don Zickus) [1127366]
-- [powerpc] book3s: Add flush_tlb operation in cpu_spec (Don Zickus) [1127366]
-- [powerpc] book3s: Introduce a early machine check hook in cpu_spec (Don Zickus) [1127366]
-- [powerpc] book3s: Return from interrupt if coming from evil context (Don Zickus) [1127366]
-- [powerpc] book3s: handle machine check in Linux host (Don Zickus) [1127366]
-- [powerpc] book3s: Introduce exclusive emergency stack for machine check exception (Don Zickus) [1127366]
-- [powerpc] book3s: Split the common exception prolog logic into two section (Don Zickus) [1127366]
-- [powerpc] powernv: Replace CONFIG_POWERNV_MSI with just CONFIG_PPC_POWERNV (Don Zickus) [1127366]
-- [powerpc] pseries: CONFIG_PSERIES_MSI should depend on PPC_PSERIES (Don Zickus) [1127366]
-- [powerpc] kernel/sysfs: Cleanup set up macros for PMC/non-PMC SPRs (Don Zickus) [1127366]
-- [powerpc] Make irq_stat.timers_irqs counting more specific (Don Zickus) [1127366]
-- [powerpc] purge all the prefetched instructions for the coherent icache flush (Don Zickus) [1127366]
-- [powerpc] kernel: remove useless code which related with 'max_cpus' (Don Zickus) [1127366]
-- [powerpc] boot: Ignore .dtb files (Don Zickus) [1127366]
-- [powerpc] Clean up panic_timeout usage (Don Zickus) [1127366]
-- [powerpc] kernel: Use 12.12s instead of 12s to avoid memory overflow (Don Zickus) [1127366]
-- [powerpc] kvm: optimize "sc 1" as fast return (Don Zickus) [1127366]
-- [powerpc] pseries: Fix SMP=n build of rng.c (Don Zickus) [1127366]
-- [powerpc] Make cpu_to_chip_id() available when SMP=n (Don Zickus) [1127366]
-- [powerpc] vio: Fix a dma_mask issue of vio (Don Zickus) [1127366]
-- [powerpc] Only print PACATMSCRATCH in oops when TM is active (Don Zickus) [1127366]
-- [powerpc] pseries: Duplicate dtl entries sometimes sent to userspace (Don Zickus) [1127366]
-- [powerpc] Remove a few lines of oops output (Don Zickus) [1127366]
-- [powerpc] Print DAR and DSISR on machine check oopses (Don Zickus) [1127366]
-- [powerpc] Fix __get_user_pages_fast() irq handling (Don Zickus) [1127366]
-- [powerpc] eeh: More accurate log (Don Zickus) [1127366]
-- [powerpc] eeh: Enable PCI_COMMAND_MASTER for PCI bridges (Don Zickus) [1127366]
-- [powerpc] Add pseries_le_defconfig (Don Zickus) [1127366]
-- [kernel] uprobes/powerpc: Kill arch_uprobe->ainsn (Don Zickus) [1127366]
-- [powerpc] kvm: fix rare but potential deadlock scene (Don Zickus) [1127366]
-- [powerpc] add missing explicit OF includes for ppc (Don Zickus) [1127366]
-- [powerpc] powernv: Add support for indirect XSCOM via debugfs (Don Zickus) [1127366]
-- [powerpc] scom: Improve debugfs interface (Don Zickus) [1127366]
-- [powerpc] scom: Enable 64-bit addresses (Don Zickus) [1127366]
-- [powerpc] boot: Properly handle the base "of" boot wrapper (Don Zickus) [1127366]
-- [powerpc] bpf: Support MOD operation (Don Zickus) [1127366]
-- [powerpc] bpf: Fix DIVWU instruction opcode (Don Zickus) [1127366]
-- [powerpc] tm: Remove interrupt disable in __switch_to() (Don Zickus) [1127366]
-- [powerpc] nvram: Scan partitions only once (Don Zickus) [1127366]
-- [powerpc] powernv: Code update interface (Don Zickus) [1127366]
-- [powerpc] powernv: Create opal sysfs directory (Don Zickus) [1127366]
-- [powerpc] Add VMX optimised xor for RAID5 (Don Zickus) [1127366]
-- [powerpc] kexec: kexec_sequence() is in misc_64.S (Don Zickus) [1127366]
-- [powerpc] Use 32 bit loads and stores when operating on condition register values (Don Zickus) [1127366]
-- [powerpc] Enable multipath modules on ppc64 and pseries (Don Zickus) [1127366]
-- [powerpc] pseries: Fix dedicated processor partition detection (Don Zickus) [1127366]
-- [powerpc] vio: use strcpy in modalias_show (Don Zickus) [1127366]
-- [powerpc] FA_DUMP depends on KEXEC (Don Zickus) [1127366]
-- [powerpc] Fix a typo in comments of va to pa conversion (Don Zickus) [1127366]
-- [powerpc] Move local setup.h declarations to arch includes (Don Zickus) [1127366]
-- [powerpc] Fix warnings for arch/powerpc/mm/numa.c (Don Zickus) [1127366]
-- [powerpc] boot: Don't change link address for OF-based platforms (Don Zickus) [1127366]
-- [powerpc] Add includes to fix powernv/rng.c build (Don Zickus) [1127366]
-- [powerpc] Fix PPC_EMULATED_STATS build break with sync patch (Don Zickus) [1127366]
-- [powerpc] select ARCH_MIGHT_HAVE_PC_PARPORT (Don Zickus) [1127366]
-- [powerpc] Don't corrupt user registers on 32-bit (Don Zickus) [1127366]
-- [powerpc] kgdb: use DEFINE_PER_CPU to allocate kgdb's thread_info (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - drop is_hv_enabled (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Allow the HV and PR selection per virtual machine (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Support building HV and PR KVM as module (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - move PR related tracepoints to a separate header (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Add is_hv_enabled to kvmppc_ops (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Cleanup interrupt handling code (Don Zickus) [1127366]
-- [virt] kvm/ppc: Add kvmppc_ops callback (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Add a new config variable CONFIG_KVM_BOOK3S_HV_POSSIBLE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s/pr - Rename KVM_BOOK3S_PR to KVM_BOOK3S_PR_POSSIBLE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - move book3s_64_vio_hv.c into the main kernel binary (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - remove kvmppc_handler_highmem label (Don Zickus) [1127366]
-- [powerpc] export debug registers save function for KVM (Don Zickus) [1127366]
-- [powerpc] move debug registers in a structure (Don Zickus) [1127366]
-- [powerpc] remove unnecessary line continuations (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Fix vcore leak (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Better handling of exceptions that happen in real mode (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Reduce number of shadow PTEs invalidated by MMU notifiers (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Mark pages accessed, and dirty if being written (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Use mmu_notifier_retry() in kvmppc_mmu_map_page() (Don Zickus) [1127366]
-- [virt] kvm/ppc: Book3S PR - Better handling of host-side read-only pages (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Move skip-interrupt handlers to common code (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Allocate kvm_vcpu structs from kvm_vcpu_cache (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Make HPT accesses and updates SMP-safe (Don Zickus) [1127366]
-- [virt] kvm/ppc: Book3S PR - Correct errors in H_ENTER implementation (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Handle PP0 page-protection bit in guest HPTEs (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Use 64k host pages where possible (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Allow guest to use 64k pages (Don Zickus) [1127366]
-- [virt] kvm/ppc: Book3S PR - Keep volatile reg values in vcpu rather than shadow_vcpu (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Don't crash host on unknown guest interrupt (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Support POWER6 compatibility mode on POWER7 (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Add support for guest Program Priority Register (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Store LPCR value for each virtual core (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Avoid unbalanced increments of VPA yield count (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Pull out interrupt-reading code into a subroutine (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Restructure kvmppc_hv_entry to be a subroutine (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Implement H_CONFER (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s - Add GET/SET_ONE_REG interface for VRSAVE (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Implement timebase offset for guests (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Save/restore SIAR and SDAR along with other PMU registers (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Reserve POWER8 space in get/set_one_reg (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Rework kvmppc_mmu_book3s_64_xlate() (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Make instruction fetch fallback work for system calls (Don Zickus) [1127366]
-- [powerpc] pseries: Move plpar_wrapper.h to powerpc common include/asm location (Don Zickus) [1127366]
-- [powerpc] pseries/cpuidle: Remove dependency of pseries.h file (Don Zickus) [1127366]
-- [virt] kvm/ppc: use anon_inode_getfd() with O_CLOEXEC flag (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Load up SPRG3 register with guest value on guest entry (Don Zickus) [1127366]
-- [virt] kvm/ppc: Call trace_hardirqs_on before entry (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Allow negative offsets to real-mode hcall handlers (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s hv - Correct tlbie usage (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Invalidate SLB entries properly (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Allow guest to use 1TB segments (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Don't keep scanning HPTEG after we find a match (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Fix invalidation of SLB entry 0 on guest entry (Don Zickus) [1127366]
-- [virt] kvm/ppc: book3s pr - Fix proto-VSID calculations (Don Zickus) [1127366]
-- [powerpc] Remove the unneeded trigger of decrementer interrupt in decrementer_check_overflow (Don Zickus) [1127366]
-- [virt] kvm/ppc: fix imbalance srcu_read_[un]lock() (Don Zickus) [1127366]
-- [powerpc] Emulate sync instruction variants (Don Zickus) [1127366]
-- [powerpc] eeh: Reorder output messages (Don Zickus) [1127366]
-- [powerpc] scom: Use "devspec" rather than "path" in debugfs entries (Don Zickus) [1127366]
-- [powerpc] scom: CONFIG_SCOM_DEBUGFS should depend on CONFIG_DEBUG_FS (Don Zickus) [1127366]
-- [powerpc] powernv: Add scom support under OPALv3 (Don Zickus) [1127366]
-- [powerpc] scom: Create debugfs files using ibm, chip-id if available (Don Zickus) [1127366]
-- [powerpc] scom: Add support for "reg" property (Don Zickus) [1127366]
-- [powerpc] scom: Change scom_read() and scom_write() to return errors (Don Zickus) [1127366]
-- [powerpc] Enable /dev/port when isa_io_special is set (Don Zickus) [1127366]
-- [powerpc] Make ftrace endian-safe (Don Zickus) [1127366]
-- [powerpc] pseries: Implement arch_get_random_long() based on H_RANDOM (Don Zickus) [1127366]
-- [powerpc] Implement arch_get_random_long/int() for powernv (Don Zickus) [1127366]
-- [powerpc] Added __cmpdi2 for signed 64bit comparision (Don Zickus) [1127366]
-- [powerpc] Fix section mismatch warning in free_lppacas (Don Zickus) [1127366]
-- [powerpc] ppc64: Remove the unneeded load of ti_flags in resume_kernel (Don Zickus) [1127366]
-- [powerpc] legacy_serial: Fix incorrect placement of __initdata tag (Don Zickus) [1127366]
-- [serial] tty/hvc_opal: powerpc - Make OPAL HVC device tree accesses endian safe (Don Zickus) [1127366]
-- [powerpc] powernv: Fix some PCI sparse errors and one LE bug (Don Zickus) [1127366]
-- [powerpc] add explicit OF includes (Don Zickus) [1127366]
-- [powerpc] clean-up include ordering in prom.h (Don Zickus) [1127366]
-- [powerpc] Tell about irq stack coverage (Don Zickus) [1127366]
-- [powerpc] Fix section mismatch warning for prom_rtas_call (Don Zickus) [1127366]
-- [powerpc] Export cpu_to_chip_id() to fix build error (Don Zickus) [1127366]
-- [powerpc] xmon: Fix printing of set of CPUs in xmon (Don Zickus) [1127366]
-- [powerpc] pseries: Move lparcfg.c to platforms/pseries (Don Zickus) [1127366]
-- [powerpc] powernv: Return secondary CPUs to firmware on kexec (Don Zickus) [1127366]
-- [powerpc] Cleanup handling of the DSCR bit in the FSCR register (Don Zickus) [1127366]
-- [powerpc] Skip emulating & leave interrupts off for kernel program checks (Don Zickus) [1127366]
-- [powerpc] Add more exception trampolines for hypervisor exceptions (Don Zickus) [1127366]
-- [powerpc] Fix location and rename exception trampolines (Don Zickus) [1127366]
-- [powerpc] Add more trap names to xmon (Don Zickus) [1127366]
-- [powerpc] pseries: Add a warning in the case of cross-cpu VPA registration (Don Zickus) [1127366]
-- [powerpc] Update the 00-Index in Documentation/powerpc (Don Zickus) [1127366]
-- [powerpc] Never handle VSX alignment exceptions from kernel (Don Zickus) [1127366]
-- [powerpc] Unaligned stores and stmw are broken in emulation code (Don Zickus) [1127366]
-- [powerpc] kvm: Copy the pvr value after memset (Don Zickus) [1127366]
-- [powerpc] refactor of_get_cpu_node to support other architectures (Don Zickus) [1127366]
-- [powerpc] Convert some mftb/mftbu into mfspr (Don Zickus) [1127366]
-- [powerpc] pseries: Read and write to the 'compressed' flag of pstore (Don Zickus) [1127366]
-- [powerpc] pseries: Remove (de)compression in nvram with pstore enabled (Don Zickus) [1127366]
-- [powerpc] Make device tree accesses in HVC VIO console endian safe (Don Zickus) [1127366]
-- [powerpc] Make chip-id information available to userspace (Don Zickus) [1127366]
-- [powerpc] Use ibm, chip-id property to compute cpu_core_mask if available (Don Zickus) [1127366]
-- [powerpc] Pull out cpu_core_mask updates into a separate function (Don Zickus) [1127366]
-- [powerpc] Fix denormalized exception handler (Don Zickus) [1127366]
-- [powerpc] Remove the redundant flush_fp_to_thread() in setup_sigcontext() (Don Zickus) [1127366]
-- [powerpc] powernv: Enable detection of legacy UARTs (Don Zickus) [1127366]
-- [powerpc] Check "status" property before adding legacy ISA serial ports (Don Zickus) [1127366]
-- [powerpc] Cleanup udbg_16550 and add support for LPC PIO-only UARTs (Don Zickus) [1127366]
-- [powerpc] powernv: Add PIO accessors for Power8 LPC bus (Don Zickus) [1127366]
-- [powerpc] powernv: Add helper to get ibm, chip-id of a node (Don Zickus) [1127366]
-- [powerpc] powernv: Update opal.h to add new LPC and XSCOM functions (Don Zickus) [1127366]
-- [powerpc] Better split CONFIG_PPC_INDIRECT_PIO and CONFIG_PPC_INDIRECT_MMIO (Don Zickus) [1127366]
-- [powerpc] ppc64: Rename SOFT_DISABLE_INTS with RECONCILE_IRQ_STATE (Don Zickus) [1127366]
-- [powerpc] Implement __get_user_pages_fast() (Don Zickus) [1127366]
-- [powerpc] Convert platforms to smp_generic_cpu_bootable (Don Zickus) [1127366]
-- [powerpc] Add smp_generic_cpu_bootable (Don Zickus) [1127366]
-- [powerpc] Remove the symbol __flush_icache_range (Don Zickus) [1127366]
-- [powerpc] Move the testing of CPU_FTR_COHERENT_ICACHE into __flush_icache_range (Don Zickus) [1127366]
-- [powerpc] pci: Don't use bitfield for force_32bit_msi (Don Zickus) [1127366]
-- [powerpc] Remove SAVE_VSRU and REST_VSRU macros (Don Zickus) [1127366]
-- [powerpc] Align p_toc (Don Zickus) [1127366]
-- [powerpc] kvm/book3s_pr: Return appropriate error when allocation fails (Don Zickus) [1127366]
-- [virt] kvm/ppc: Add signed type cast for comparation (Don Zickus) [1127366]
-- [powerpc] eeh: Add missing procfs entry for PowerNV (Don Zickus) [1127366]
-- [powerpc] pci: fix PCI-e check link issue (Don Zickus) [1127366]
-- [powerpc] perf: increase the perf HW events to 6 (Don Zickus) [1127366]
-- [powerpc] perf: correct typos in counter enumeration (Don Zickus) [1127366]
-- [powerpc] Rename PMU interrupts from CNT to PMI (Don Zickus) [1127366]
-- [powerpc] Move opcode definitions from kvm/emulate.c to asm/ppc-opcode.h (Don Zickus) [1127366]
-- [powerpc] powernv: Mark pnv_pci_init_ioda2_phb() as __init (Don Zickus) [1127366]
-- [powerpc] pseries: Fix a typo in pSeries_lpar_hpte_insert() (Don Zickus) [1127366]
-- [powerpc] Fix the corrupt r3 error during MCE handling (Don Zickus) [1127366]
-- [powerpc] Access local paca after hard irq disabled (Don Zickus) [1127366]
-- [powerpc] Revert: hw_breakpoints: Fix racy access to ptrace breakpoints (Don Zickus) [1127366]
-- [powerpc] kvm: Use 256K chunk to track both RMA and hash page table allocation (Don Zickus) [1127366]
-- [powerpc] kvm: Contiguous memory allocator based RMA allocation (Don Zickus) [1127366]
-- [powerpc] kvm: Contiguous memory allocator based hash page table allocation (Don Zickus) [1127366]
-- [powerpc] Remove savemaxmem parameter setup (Don Zickus) [1127366]
-- [powerpc] Handle both new style and old style reserve maps (Don Zickus) [1127366]
-- [powerpc] prom: Scan reserved-ranges node for memory reservations (Don Zickus) [1127366]
-- [powerpc] perf: Drop MMCRA from thread_struct (Don Zickus) [1127366]
-- [powerpc] Remove unreachable relocation on exception handlers (Don Zickus) [1127366]
-- [powerpc] eeh: Update MAINTAINERS (Don Zickus) [1127366]
-- [powerpc] nvram64: Need return the related error code on failure occurs (Don Zickus) [1127366]
-- [powerpc] Set cpu sibling mask before online cpu (Don Zickus) [1127366]
-- [powerpc] idle: Convert use of typedef ctl_table to struct ctl_table (Don Zickus) [1127366]
-- [powerpc] iommu: Remove unused pci_iommu_init() and pci_direct_iommu_init() (Don Zickus) [1127366]
-- [powerpc] Don't flush/invalidate the d/icache for an unknown relocation type (Don Zickus) [1127366]
-- [powerpc] Fix string instr. emulation for 32-bit processes on ppc64 (Don Zickus) [1127366]
-- [powerpc] Fix typo in ioei_interrupt() description (Don Zickus) [1127366]
-- [powerpc] proc: switch to fixed_size_llseek() (Don Zickus) [1127366]
-- [powerpc] eeh: Remove eeh_mutex (Don Zickus) [1127366]
-- [powerpc] pseries: Enable PSTORE in pseries_defconfig (Don Zickus) [1127366]
-- [powerpc] pseries: Use 'true' instead of '1' for orderly_poweroff (Don Zickus) [1127366]
-- [powerpc] smp: Use '==' instead of '<' for system_state (Don Zickus) [1127366]
-- [cpufreq] Various RHEL cleanups (Prarit Bhargava) [1134369]
-- [cpufreq] move policy kobj to update_policy_cpu() (Prarit Bhargava) [1134369]
-- [cpufreq] propagate error returned by kobject_move() (Prarit Bhargava) [1134369]
-- [cpufreq] don't restore policy->cpus on failure to move kobj (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove core_pct rounding (Prarit Bhargava) [1134369]
-- [cpufreq] ondemand: Eliminate the deadband effect (Prarit Bhargava) [1134369]
-- [cpufreq] Introduce new relation for freq selection (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Simplify P state adjustment logic (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Align multiple lines to open parenthesis (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Keep values in aperf/mperf in full precision (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove unnecessary intermediate variable sample_time (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Add missing blank lines after declarations (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Disable interrupts during MSRs reading (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Fit code in a single line where possible (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Cleanup parentheses (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove unnecessary type casting in div_s64() call (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Make intel_pstate_kobject and debugfs_parent locals (Prarit Bhargava) [1134369]
-- [cpufreq] move policy kobj to policy->cpu at resume (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Set CPU number before accessing MSRs (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: don't touch turbo bit if turbo disabled or unavailable (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Fix setting VID (Prarit Bhargava) [1134369]
-- [cpufreq] unlock when failing cpufreq_update_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Correct rounding in busy calculation (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Correct rounding in busy calculation (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove duplicate CPU ID check (Prarit Bhargava) [1134369]
-- [cpufreq] governor: remove copy_prev_load from 'struct cpu_dbs_common_info' (Prarit Bhargava) [1134369]
-- [cpufreq] governor: Be friendly towards latency-sensitive bursty workloads (Prarit Bhargava) [1134369]
-- [cpufreq] add support for intermediate (stable) frequencies (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Improve initial busy calculation (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: add sample time scaling (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove C0 tracking (Prarit Bhargava) [1134369]
-- [cpufreq] handle calls to ->target_index() in separate routine (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove unused member name of cpudata (Prarit Bhargava) [1134369]
-- [cpufreq] Break out early when frequency equals target_freq (Prarit Bhargava) [1134369]
-- [cpufreq] remove race while accessing cur_policy (Prarit Bhargava) [1134369]
-- [cpufreq] powernow-k8: Suppress checkpatch warnings (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: remove setting P state to MAX on init (Prarit Bhargava) [1134369]
-- [cpufreq] Use cpufreq_for_each_* macros for frequency table iteration (Prarit Bhargava) [1134369]
-- [cpufreq] don't print value of .driver_data from core (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Set turbo VID for BayTrail (Prarit Bhargava) [1134369]
-- [cpufreq] Fix build error on some platforms that use cpufreq_for_each_* (Prarit Bhargava) [1134369]
-- [cpufreq] Catch double invocations of cpufreq_freq_transition_begin/end (Prarit Bhargava) [1134369]
-- [cpufreq] Kconfig: Fix spelling errors (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove sample parameter in intel_pstate_calc_busy (Prarit Bhargava) [1134369]
-- [cpufreq] Introduce macros for cpufreq_frequency_table iteration (Prarit Bhargava) [1134369]
-- [cpufreq] use kzalloc() to allocate memory for cpufreq_frequency_table (Prarit Bhargava) [1134369]
-- [cpufreq] create another field .flags in cpufreq_frequency_table (Prarit Bhargava) [1134369]
-- [cpufreq] Use sizeof(*ptr) convetion for computing sizes (Prarit Bhargava) [1134369]
-- [cpufreq] Convert existing drivers to use cpufreq_freq_transition_{begin|end} (Prarit Bhargava) [1134369]
-- [cpufreq] Make cpufreq_notify_transition & cpufreq_notify_post_transition static (Prarit Bhargava) [1134369]
-- [cpufreq] Make sure frequency transitions are serialized (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Use del_timer_sync in intel_pstate_cpu_stop (Prarit Bhargava) [1134369]
-- [cpufreq] resume drivers before enabling governors (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Set core to min P state during core offline (Prarit Bhargava) [1134369]
-- [cpufreq] Add stop CPU callback to cpufreq_driver interface (Prarit Bhargava) [1134369]
-- [cpufreq] Remove unnecessary braces (Prarit Bhargava) [1134369]
-- [cpufreq] Fix checkpatch errors and warnings (Prarit Bhargava) [1134369]
-- [cpufreq] remove unused notifier CPUFREQ_{SUSPENDCHANGE|RESUMECHANGE} (Prarit Bhargava) [1134369]
-- [cpufreq] Do not allow ->setpolicy drivers to provide ->target (Prarit Bhargava) [1134369]
-- [cpufreq] Skip current frequency initialization for ->setpolicy drivers (Prarit Bhargava) [1134369]
-- [cpufreq] Remove unnecessary variable/parameter 'frozen' (Prarit Bhargava) [1134369]
-- [cpufreq] Remove cpufreq_generic_exit() (Prarit Bhargava) [1134369]
-- [cpufreq] add 'freq_table' in struct cpufreq_policy (Prarit Bhargava) [1134369]
-- [cpufreq] Reformat printk() statements (Prarit Bhargava) [1134369]
-- [cpufreq] Implement cpufreq_generic_suspend() (Prarit Bhargava) [1134369]
-- [cpufreq] suspend governors on system suspend/hibernate (Prarit Bhargava) [1134369]
-- [cpufreq] move call to __find_governor() to cpufreq_init_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] Initialize governor for a new policy under policy->rwsem (Prarit Bhargava) [1134369]
-- [cpufreq] Initialize policy before making it available for others to use (Prarit Bhargava) [1134369]
-- [cpufreq] use cpufreq_cpu_get() to avoid cpufreq_get() race conditions (Prarit Bhargava) [1134369]
-- [cpufreq] stats: Remove redundant cpufreq_cpu_get() call (Prarit Bhargava) [1134369]
-- [cpufreq] stats: Refactor common code into __cpufreq_stats_create_table() (Prarit Bhargava) [1134369]
-- [cpufreq] stats: Fix error handling in __cpufreq_stats_create_table() (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: fix pid_reset to use fixed point values (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: remove unneeded sample buffers (Prarit Bhargava) [1134369]
-- [cpufreq] Return error if ->get() failed in cpufreq_update_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] Mark function as static in cpufreq.c (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Change busy calculation to use fixed point math (Prarit Bhargava) [1134369]
-- [cpufreq] Refactor cpufreq_set_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] don't call cpufreq_update_policy() on CPU addition (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Add support for Baytrail turbo P states (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Use LFM bus ratio as min ratio/P state (Prarit Bhargava) [1134369]
-- [cpufreq] powernow-k8: Initialize per-cpu data-structures properly (Prarit Bhargava) [1134369]
-- [cpufreq] remove sysfs link when a cpu != policy->cpu, is removed (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove energy reporting from pstate_sample tracepoint (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Take core C0 time into account for core busy calculation (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: De-register CPU notifier and free struct msr on error (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: Adjust the code to use the common boost attribute (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Add trace point to report internal state (Prarit Bhargava) [1134369]
-- [cpufreq] stats: create sysfs entries when cpufreq_stats is a module (Prarit Bhargava) [1134369]
-- [cpufreq] Add boost frequency support in core (Prarit Bhargava) [1134369]
-- [cpufreq] introduce cpufreq_generic_get() routine (Prarit Bhargava) [1134369]
-- [cpufreq] stats: free table and remove sysfs entry in a single routine (Prarit Bhargava) [1134369]
-- [cpufreq] stats: remove hotplug notifiers (Prarit Bhargava) [1134369]
-- [cpufreq] stats: handle cpufreq_unregister_driver() and suspend/resume properly (Prarit Bhargava) [1134369]
-- [cpufreq] Make sure CPU is running on a freq from freq-table (Prarit Bhargava) [1134369]
-- [cpufreq] Introduce cpufreq_notify_post_transition() (Prarit Bhargava) [1134369]
-- [cpufreq] send new set of notification for transition failures (Prarit Bhargava) [1134369]
-- [cpufreq] Fix timer/workqueue corruption by protecting reading governor_enabled (Prarit Bhargava) [1134369]
-- [cpufreq] preserve user_policy across suspend/resume (Prarit Bhargava) [1134369]
-- [cpufreq] Clean up after a failing light-weight initialization (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Remove periodic P state boost (Prarit Bhargava) [1134369]
-- [cpufreq] intel_pstate: Add setting voltage value for baytrail P states (Prarit Bhargava) [1134369]
-- [cpufreq] remove sysfs files for CPUs which failed to come back after resume (Prarit Bhargava) [1134369]
-- [cpufreq] governor: Remove fossil comment in the cpufreq_governor_dbs() (Prarit Bhargava) [1134369]
-- [cpufreq] conservative: set requested_freq to policy max when it is over policy max (Prarit Bhargava) [1134369]
-- [cpufreq] conservative: fix requested_freq reduction issue (Prarit Bhargava) [1134369]
-- [cpufreq] move freq change notifications to cpufreq core (Prarit Bhargava) [1134369]
-- [cpufreq] distinguish drivers that do asynchronous notifications (Prarit Bhargava) [1134369]
-- [cpufreq] create per policy rwsem instead of per CPU cpu_policy_rwsem (Prarit Bhargava) [1134369]
-- [cpufreq] Implement light weight ->target_index() routine (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: Fail initialization if driver cannot be registered (Prarit Bhargava) [1134369]
-- [cpufreq] Detect spurious invocations of update_policy_cpu() (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: Add comment under ACPI_ADR_SPACE_SYSTEM_IO case (Prarit Bhargava) [1134369]
-- [cpufreq] remove CONFIG_CPU_FREQ_TABLE (Prarit Bhargava) [1134369]
-- [cpufreq] create cpufreq_generic_init() routine (Prarit Bhargava) [1134369]
-- [cpufreq] powernow: don't initialize part of policy set by core (Prarit Bhargava) [1134369]
-- [cpufreq] p4: don't initialize part of policy set by core (Prarit Bhargava) [1134369]
-- [cpufreq] pcc: don't initialize part of policy set by core (Prarit Bhargava) [1134369]
-- [cpufreq] call cpufreq_driver->get() after calling ->init() (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: don't initialize part of policy set by core (Prarit Bhargava) [1134369]
-- [cpufreq] powernow: Use generic cpufreq routines (Prarit Bhargava) [1134369]
-- [cpufreq] p4-clockmod: Use generic cpufreq routines (Prarit Bhargava) [1134369]
-- [cpufreq] acpi: Use generic cpufreq routines (Prarit Bhargava) [1134369]
-- [cpufreq] define generic .attr, .exit() and .verify() routines (Prarit Bhargava) [1134369]
-- [cpufreq] use cpufreq_driver->flags to mark CPUFREQ_HAVE_GOVERNOR_PER_POLICY (Prarit Bhargava) [1134369]
-- [cpufreq] rename __cpufreq_set_policy() as cpufreq_set_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] Remove extra blank line (Prarit Bhargava) [1134369]
-- [cpufreq] don't break string in print statements (Prarit Bhargava) [1134369]
-- [cpufreq] remove __cpufreq_remove_dev() (Prarit Bhargava) [1134369]
-- [cpufreq] remove invalid comment from __cpufreq_remove_dev() (Prarit Bhargava) [1134369]
-- [cpufreq] make return type of lock_policy_rwsem_{read|write}() as void (Prarit Bhargava) [1134369]
-- [cpufreq] powernow: use cpufreq_table_validate_and_show() (Prarit Bhargava) [1134369]
-- [cpufreq] p4-clockmod: use cpufreq_table_validate_and_show() (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: use cpufreq_table_validate_and_show() (Prarit Bhargava) [1134369]
-- [cpufreq] Add new helper cpufreq_table_validate_and_show() (Prarit Bhargava) [1134369]
-- [cpufreq] pcc_freq: convert acpi_get_handle() to acpi_has_method() (Prarit Bhargava) [1134369]
-- [cpufreq] return EEXIST instead of EBUSY for second registering (Prarit Bhargava) [1134369]
-- [cpufreq] unlock correct rwsem while updating policy->cpu (Prarit Bhargava) [1134369]
-- [cpufreq] Clear policy->cpus bits in __cpufreq_remove_dev_finish() (Prarit Bhargava) [1134369]
-- [cpufreq] Acquire the lock in cpufreq_policy_restore() for reading (Prarit Bhargava) [1134369]
-- [cpufreq] Prevent problems in update_policy_cpu() if last_cpu == new_cpu (Prarit Bhargava) [1134369]
-- [cpufreq] Restructure if/else block to avoid unintended behavior (Prarit Bhargava) [1134369]
-- [cpufreq] Fix crash in cpufreq-stats during suspend/resume (Prarit Bhargava) [1134369]
-- [cpufreq] Revert: make sure frequency transitions are serialized (Prarit Bhargava) [1134369]
-- [cpufreq] Use signed type for 'ret' variable, to store negative error values (Prarit Bhargava) [1134369]
-- [cpufreq] Remove temporary fix for race between CPU hotplug and sysfs-writes (Prarit Bhargava) [1134369]
-- [cpufreq] Synchronize the cpufreq store_*() routines with CPU hotplug (Prarit Bhargava) [1134369]
-- [cpufreq] Invoke __cpufreq_remove_dev_finish() after releasing cpu_hotplug.lock (Prarit Bhargava) [1134369]
-- [cpufreq] Split __cpufreq_remove_dev() into two parts (Prarit Bhargava) [1134369]
-- [cpufreq] Fix wrong time unit conversion (Prarit Bhargava) [1134369]
-- [cpufreq] serialize calls to __cpufreq_governor() (Prarit Bhargava) [1134369]
-- [cpufreq] don't allow governor limits to be changed when it is disabled (Prarit Bhargava) [1134369]
-- [cpufreq] Don't use smp_processor_id() in preemptible context (Prarit Bhargava) [1134369]
-- [cpufreq] governor: Fix typos in comments (Prarit Bhargava) [1134369]
-- [cpufreq] governors: Remove duplicate check of target freq in supported range (Prarit Bhargava) [1134369]
-- [cpufreq] Fix timer/workqueue corruption due to double queueing (Prarit Bhargava) [1134369]
-- [cpufreq] fix bad unlock balance on !CONFIG_SMP (Prarit Bhargava) [1134369]
-- [cpufreq] Fix white space in __cpufreq_remove_dev() (Prarit Bhargava) [1134369]
-- [cpufreq] remove unnecessary check in __cpufreq_governor() (Prarit Bhargava) [1134369]
-- [cpufreq] remove policy from cpufreq_policy_list during suspend (Prarit Bhargava) [1134369]
-- [cpufreq] remove cpufreq_policy_cpu per-cpu variable (Prarit Bhargava) [1134369]
-- [cpufreq] Use cpufreq_policy_list for iterating over policies (Prarit Bhargava) [1134369]
-- [cpufreq] acpi-cpufreq: Use cpufreq_freq_attr_rw to define the cpb attribute (Prarit Bhargava) [1134369]
-- [cpufreq] ondemand: Remove redundant return statement (Prarit Bhargava) [1134369]
-- [cpufreq] improve error checking on return values of __cpufreq_governor() (Prarit Bhargava) [1134369]
-- [cpufreq] Fix broken usage of governor->owner's refcount (Prarit Bhargava) [1134369]
-- [cpufreq] Store cpufreq policies in a list (Prarit Bhargava) [1134369]
-- [cpufreq] Give consistent names to cpufreq_policy objects (Prarit Bhargava) [1134369]
-- [cpufreq] Clean up header files included in the core (Prarit Bhargava) [1134369]
-- [cpufreq] Pass policy to cpufreq_add_policy_cpu() (Prarit Bhargava) [1134369]
-- [cpufreq] Avoid double kobject_put() for the same kobject in error code path (Prarit Bhargava) [1134369]
-- [cpufreq] Preserve policy structure across suspend/resume (Prarit Bhargava) [1134369]
-- [cpufreq] Perform light-weight init/teardown during suspend/resume (Prarit Bhargava) [1134369]
-- [cpufreq] Do not hold driver module references for additional policy CPUs (Prarit Bhargava) [1134369]
-- [cpufreq] Don't pass CPU to cpufreq_add_dev_{symlink|interface}() (Prarit Bhargava) [1134369]
-- [cpufreq] Introduce a flag ('frozen') to separate full vs temporary init/teardown (Prarit Bhargava) [1134369]
-- [cpufreq] Extract the handover of policy cpu to a helper function (Prarit Bhargava) [1134369]
-- [cpufreq] Add helper to perform alloc/free of policy structure (Prarit Bhargava) [1134369]
-- [cpufreq] Extract non-interface related stuff from cpufreq_add_dev_interface (Prarit Bhargava) [1134369]
-- [cpufreq] Fix misplaced call to cpufreq_update_policy() (Prarit Bhargava) [1134369]
-- [cpufreq] Remove unused function __cpufreq_driver_getavg() (Prarit Bhargava) [1134369]
-- [cpufreq] ondemand: Change the calculation of target frequency (Prarit Bhargava) [1134369]
-- [cpufreq] Remove unused APERF/MPERF support (Prarit Bhargava) [1134369]
-- [char] hwrng: Add a driver for the hwrng found in power7+ systems (Steve Best) [1123116]
-
-* Tue Sep 16 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-161.el7]
-- [target] iscsi: Explicily clear login response PDU in exception path (Andy Grover) [1129387]
-- [target] iscsi: Avoid rejecting incorrect ITT for Data-Out (Andy Grover) [1129387]
-- [target] Fix left-over se_lun->lun_sep pointer OOPs (Andy Grover) [1129387]
-- [infiniband] ulp/isert: Wait for proper cleanup before unloading (Andy Grover) [1129387]
-- [infiniband] ulp/isert: Improve cm events handling (Andy Grover) [1129387]
-- [target] Explicitly clear ramdisk_mcp backend pages (Andy Grover) [1129387]
-- [target] Report correct response length for some commands (Andy Grover) [1129387]
-- [target] iscsi: Fix ABORT_TASK + connection reset iscsi_queue_req memory leak (Andy Grover) [1129387]
-- [target] Use complete_all for se_cmd->t_transport_stop_comp (Andy Grover) [1129387]
-- [target] lio: Set CMD_T_ACTIVE bit for Task Management Requests (Andy Grover) [1129387]
-- [target] iscsi, iser: Fix hangs in connection teardown (Andy Grover) [1129387]
-- [infiniband] iser: Bail from accept_np if np_thread is trying to close (Andy Grover) [1129387]
-- [target] iscsi: Reject mutual authentication with reflected CHAP_C (Andy Grover) [1129387]
-- [target] Fix alua_access_state attribute OOPs for un-configured devices (Andy Grover) [1129387]
-- [infiniband] iser: Add missing target_put_sess_cmd for ImmedateData failure (Andy Grover) [1129387]
-- [target] Don't allow setting WC emulation if device doesn't support (Andy Grover) [1129387]
-- [infiniband] iser: Add missing se_cmd put for WRITE_PENDING in tx_comp_err (Andy Grover) [1129387]
-- [target] iscsi: Fix ERL=2 ASYNC_EVENT connection pointer bug (Andy Grover) [1129387]
-- [infiniband] ib_srpt: Use correct ib_sg_dma primitives (Andy Grover) [1129387]
-- [infiniband] iser: Fix post_send_buf_count for RDMA READ/WRITE (Andy Grover) [1129387]
-- [target] iscsi, iser: Fix isert_conn->state hung shutdown issues (Andy Grover) [1129387]
-- [target] iscsi, iser:  Use list_del_init for ->i_conn_node (Andy Grover) [1129387]
-- [target] iscsi: Fix iscsit_get_tpg_from_np tpg_state bug (Andy Grover) [1129387]
-- [target] Update hw_max_sectors based on current block_size (Andy Grover) [1129387]
-- [target] iscsi: Fix-up all zero data-length CDBs with R/W_BIT set (Andy Grover) [1129387]
-- [target] Allow READ_CAPACITY opcode in ALUA Standby access state (Andy Grover) [1129387]
-- [target] iscsi: Fix wrong buffer / buffer overrun in iscsi_change_param_value() (Andy Grover) [1129387]
-- [target] iscsi: Fix multi network portal shutdown regression (Andy Grover) [1129387]
-- [target] iscsi, iser: Avoid accepting transport connections during stop stage (Andy Grover) [1129387]
-- [infiniband] ulp/isert: Fix iscsit_accept_np and rdma_cm racy flow (Andy Grover) [1129387]
-- [infiniband] ulp/isert: Fix wrong connection requests list addition (Andy Grover) [1129387]
-- [scsi] hpsa: do not require board "not ready" status after hard reset (Tomas Henzl) [1069185]
-- [scsi] hpsa: make tech preview info more verbose (Tomas Henzl) [1083556]
-- [scsi] hpsa: fix bad -ENOMEM return value in hpsa_big_passthru_ioctl (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove online devices from offline device list (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix non-x86 builds (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not unconditionally copy sense data (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix 6-byte READ/WRITE with 0 length data xfer (Tomas Henzl) [1069185]
-- [scsi] hpsa: make hpsa_init_one return -ENOMEM if allocation of h->lockup_detected fails (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix handling of hpsa_volume_offline return value (Tomas Henzl) [1069185]
-- [scsi] hpsa: return -ENOMEM not -1 on kzalloc failure in hpsa_get_device_id (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove messages about volume status VPD inquiry page not supported (Tomas Henzl) [1069185]
-- [scsi] hpsa: report check condition even if no sense data present for ioaccel2 mode (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove bad unlikely annotation from device list updating code (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix event filtering to prevent excessive rescans with old firmware (Tomas Henzl) [1069185]
-- [scsi] hpsa: kill annoying messages about SSD Smart Path retries (Tomas Henzl) [1069185]
-- [scsi] hpsa: define extended_report_lun_entry data structure (Tomas Henzl) [1069185]
-- [scsi] hpsa: Rearrange start_io to avoid one unlock/lock sequence in main io path (Tomas Henzl) [1069185]
-- [scsi] hpsa: avoid unnecessary readl on every command submission (Tomas Henzl) [1069185]
-- [scsi] hpsa: use per-cpu variable for lockup_detected (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unnecessary pci_set_drvdata() (Tomas Henzl) [1069185]
-- [scsi] hpsa: set irq affinity hints to route MSI-X vectors across CPUs (Tomas Henzl) [1069185]
-- [scsi] hpsa: allocate reply queues individually (Tomas Henzl) [1069185]
-- [scsi] hpsa: choose number of reply queues more intelligently (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove dev_dbg() calls from hot paths (Tomas Henzl) [1069185]
-- [scsi] hpsa: use gcc aligned attribute instead of manually padding structs (Tomas Henzl) [1069185]
-- [scsi] hpsa: change doorbell reset delay to ten seconds (Tomas Henzl) [1069185]
-- [scsi] hpsa: allow passthru ioctls to work with bidirectional commands (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unused fields from struct ctlr_info (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix bad comparison of signed with unsigned in hpsa_update_scsi_devices (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not ignore failure of sense controller parameters command (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix memory leak in hpsa_hba_mode_enabled (Tomas Henzl) [1069185]
-- [scsi] hpsa: Checking for a NULL return from a kzalloc call (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix NULL dereference in hpsa_put_ctlr_into_performant_mode() (Tomas Henzl) [1069185]
-- [scsi] hpsa: update driver version to 3.4.4-1 (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix bad endif placement in RAID 5 mapper code (Tomas Henzl) [1069185]
-- [scsi] hpsa: Do not zero fields of ioaccel2 command structure twice (Tomas Henzl) [1069185]
-- [scsi] hpsa: Add hba mode to the hpsa driver (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unused struct request from CommandList (Tomas Henzl) [1069185]
-- [scsi] hpsa: increase the probability of a reported success after a device reset (Tomas Henzl) [1069185]
-- [scsi] hpsa: bring format-in-progress drives online when ready (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unused kthread.h header (Tomas Henzl) [1069185]
-- [scsi] hpsa: Add support for a few HP Storage controllers (Tomas Henzl) [1069185]
-- [scsi] hpsa: add HP/3PAR vendor id to pci_ids.h (Tomas Henzl) [1069185]
-- [scsi] hpsa: add sysfs debug switch for raid map debugging messages (Tomas Henzl) [1069185]
-- [scsi] hpsa: improve error messages for driver initiated commands (Tomas Henzl) [1069185]
-- [scsi] hpsa: only do device rescan for certain events (Tomas Henzl) [1069185]
-- [scsi] hpsa: when switching out of accel mode await only accel command completions (Tomas Henzl) [1069185]
-- [scsi] hpsa: add controller base data-at-rest encryption compatibility ioaccel2 (Tomas Henzl) [1069185]
-- [scsi] hpsa: update source file copyrights (Tomas Henzl) [1069185]
-- [scsi] hpsa: retry certain ioaccel error cases on the RAID path (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not inquire for unsupported ioaccel status vpd page (Tomas Henzl) [1069185]
-- [scsi] hpsa: allow VPD page zero to be queried (Tomas Henzl) [1069185]
-- [scsi] hpsa: rescan devices on ioaccel2 error (Tomas Henzl) [1069185]
-- [scsi] hpsa: allow user to disable accelerated i/o path (Tomas Henzl) [1069185]
-- [scsi] hpsa: complete the ioaccel raidmap code (Tomas Henzl) [1069185]
-- [scsi] hpsa: make device update copy the raid map also (Tomas Henzl) [1069185]
-- [scsi] hpsa: add task management for ioaccel mode 2 (Tomas Henzl) [1069185]
-- [scsi] hpsa: teach hpsa_device_reset to do either target or lun reset (Tomas Henzl) [1069185]
-- [scsi] hpsa: get ioaccel mode 2 i/o working (Tomas Henzl) [1069185]
-- [scsi] hpsa: initialize controller to perform io accelerator mode 2 (Tomas Henzl) [1069185]
-- [scsi] hpsa: get physical device handles for io accel mode 2 as well as mode 1 (Tomas Henzl) [1069185]
-- [scsi] hpsa: do ioaccel mode 2 resource allocations (Tomas Henzl) [1069185]
-- [scsi] hpsa: Acknowledge controller events in ioaccell mode 2 as well as mode 1 (Tomas Henzl) [1069185]
-- [scsi] hpsa: add ioaccel mode 2 structure definitions (Tomas Henzl) [1069185]
-- [scsi] hpsa: complain if physical or logical aborts are not supported (Tomas Henzl) [1069185]
-- [scsi] hpsa: add hp_ssd_smart_path_enabled sysfs attribute (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not rescan controllers known to be locked up (Tomas Henzl) [1069185]
-- [scsi] hpsa: poll controller to detect device change event (Tomas Henzl) [1069185]
-- [scsi] hpsa: update raid offload status on device rescan (Tomas Henzl) [1069185]
-- [scsi] hpsa: add ioaccell mode 1 RAID offload support (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix task management for mode-1 ioaccell path (Tomas Henzl) [1069185]
-- [scsi] hpsa: only allow REQ_TYPE_FS to use fast path (Tomas Henzl) [1069185]
-- [scsi] hpsa: add support for 'fastpath' i/o (Tomas Henzl) [1069185]
-- [scsi] hpsa: mark last scatter gather element as the last (Tomas Henzl) [1069185]
-- [scsi] hpsa: use extended report luns command for HP SSD SmartPath (Tomas Henzl) [1069185]
-- [scsi] hpsa: fixup MSI-X registration (Tomas Henzl) [1069185]
-- [scsi] hpsa: prevent stalled i/o (Tomas Henzl) [1069185]
-- [scsi] hpsa: cap CCISS_PASSTHRU at 20 concurrent commands (Tomas Henzl) [1069185]
-- [scsi] hpsa: add MSA 2040 to list of external target devices (Tomas Henzl) [1069185]
-- [scsi] hpsa: fix memory leak in CCISS_BIG_PASSTHRU ioctl (Tomas Henzl) [1069185]
-- [scsi] hpsa: remove unneeded include of seq_file.h (Tomas Henzl) [1069185]
-- [scsi] hpsa: add 5 second delay after doorbell reset (Tomas Henzl) [1069185]
-- [scsi] hpsa: do not attempt to flush the cache on locked up controllers (Tomas Henzl) [1069185]
-- [scsi] bnx2i: Make boot_nic entry visible in the sysfs session objects (Maurizio Lombardi) [1139139]
-- [scsi] bnx2fc: fix incorrect DMA memory mapping in bnx2fc_unmap_sg_list() (Maurizio Lombardi) [1102526]
-- [ethernet] cnic: Replace rcu_dereference() with rcu_access_pointer() (Maurizio Lombardi) [1089401]
-- [ethernet] cnic: Rebranding cnic driver (Maurizio Lombardi) [1089401]
-- [ethernet] cnic: Fix missing ISCSI_KEVENT_IF_DOWN message (Maurizio Lombardi) [1089401]
-- [ethernet] cnic: Update version to 2.5.20 and copyright year (Maurizio Lombardi) [1089401]
-- [ethernet] cnic: Use proper ulp_ops for per device operations (Maurizio Lombardi) [1089401]
-- [ethernet] broadcom: Remove extern from function prototypes (Maurizio Lombardi) [1089401]
-- [scsi] bnx2i: Update driver version to 2.7.10.1 (Maurizio Lombardi) [1089400]
-- [scsi] bnx2i: Rebranding bnx2i driver (Maurizio Lombardi) [1089400]
-- [scsi] bnx2i, be2iscsi: fix custom stats length (Maurizio Lombardi) [1089400]
-- [ethernet] cnic, bnx2i, bnx2fc: Fix inconsistent use of page size (Maurizio Lombardi) [1089400 1089399 1089401]
-- [scsi] bnx2fc: Rebranding bnx2fc driver (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: do not scan uninitialized lists in case of error (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: fix memory leak in bnx2fc_allocate_hash_table() (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: fix memory leak and potential NULL pointer dereference (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: remove unused variable hash_table_size (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: Updated version to 2.4.2 (Maurizio Lombardi) [1089399]
-- [scsi] bnx2fc: Fixed the handling for the SCSI retry delay (Maurizio Lombardi) [1089399]
-- [scsi] be2iscsi: Bump driver version (Rob Evers) [1130072]
-- [scsi] be2iscsi: Fix processing CQE before connection resources are freed (Rob Evers) [1130072]
-- [scsi] be2iscsi: Fix updating the boot enteries in sysfs (Rob Evers) [1130072]
-- [scsi] be2iscsi: Fix the copyright year (Rob Evers) [1130072]
-- [scsi] be2iscsi: Fix the sparse warning introduced in previous submission (Rob Evers) [1130072]
-
-* Mon Sep 15 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-160.el7]
-- [x86] module: work around kabi module breakage when 16K stacks are enabled (Kyle McMartin) [1108378]
-- [kernel] redhat: bump RHEL_MINOR to 1 (Kyle McMartin) [1108378]
-- [kernel] modules: export check_module_rhelversion (Kyle McMartin) [1108378]
-- [kernel] modules: Add module_ext struct (Prarit Bhargava) [1110315]
-- [kernel] modules: add rhelversion MODULE_INFO tag (Kyle McMartin) [1110315]
-- [x86] expand 64-bit kernel stack to 16K (Johannes Weiner) [1108378]
-
-* Mon Sep 15 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-159.el7]
-- [ethernet] bna: Support TSO and partial checksum with non-accelerated vlans (Ivan Vecera) [1136912]
-- [ethernet] bna: Remove DEFINE_PCI_DEVICE_TABLE macro use (Ivan Vecera) [1136912]
-- [ethernet] bna: fix performance regression (Ivan Vecera) [1136912]
-- [ethernet] bna: fill the magic in bnad_get_eeprom() instead of validating (Ivan Vecera) [1136912]
-- [ethernet] bna: remove unnecessary break after return (Ivan Vecera) [1136912]
-- [ethernet] bna: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Ivan Vecera) [1136912]
-- [ethernet] bna: get rid of SET_ETHTOOL_OPS (Ivan Vecera) [1136912]
-- [ethernet] bna: remove open-coded skb_cow_head (Ivan Vecera) [1136912]
-- [ethernet] bna: Call dev_kfree_skb_any instead of dev_kfree_skb (Ivan Vecera) [1136912]
-- [ethernet] bna: Convert uses of __constant_<foo> to <foo> (Ivan Vecera) [1136912]
-- [ethernet] bna: Replace large udelay() with mdelay() (Ivan Vecera) [1136912]
-- [ethernet] bna: Use pci_enable_msix_range() instead of pci_enable_msix() (Ivan Vecera) [1136912]
-- [ethernet] bna: bnad code cleanup (Ivan Vecera) [1136912]
-- [ethernet] e1000: fix possible reset_task running after adapter down (John Greene) [1091129]
-- [ethernet] e1000: prevent oops when adapter is being closed and reset simultaneously (John Greene) [1091129]
-- [ethernet] r8169: add missing MODULE_FIRMWARE (Ivan Vecera) [1139247]
-- [ethernet] r8169: add support for RTL8168H and RTL8107E (Ivan Vecera) [1139247]
-- [ethernet] r8169: Remove DEFINE_PCI_DEVICE_TABLE macro use (Ivan Vecera) [1139247]
-- [ethernet] r8169: Enable RX_MULTI_EN for RTL_GIGA_MAC_VER_40 (Ivan Vecera) [1139247]
-- [ethernet] r8169: support IPv6 (Ivan Vecera) [1139247]
-- [ethernet] r8169: use Giant Send (Ivan Vecera) [1139247]
-- [ethernet] r8169: split rtl8169_tso_csum (Ivan Vecera) [1139247]
-- [ethernet] r8169: disable L23 (Ivan Vecera) [1139247]
-- [ethernet] r8169: get rid of SET_ETHTOOL_OPS (Ivan Vecera) [1139247]
-- [ethernet] r8169: Call dev_kfree_skby_any instead of dev_kfree_skb (Ivan Vecera) [1139247]
-- [ethernet] r8169: fix the incorrect tx descriptor version (Ivan Vecera) [1139247]
-- [ethernet] r8169: initialize rtl8169_stats seqlock (Ivan Vecera) [1139247]
-- [ethernet] r8169: delete non-required instances of include <linux/init.h> (Ivan Vecera) [1139247]
-- [ethernet] bnx2: Remove DEFINE_PCI_DEVICE_TABLE macro use (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Rebranding bnx2 driver (Michal Schmidt) [1092495]
-- [ethernet] bnx2: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Don't build unused suspend/resume functions not enabled (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Don't receive packets when the napi budget == 0 (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Call dev_kfree_skby_any instead of dev_kfree_skb (Michal Schmidt) [1092495]
-- [ethernet] bnx2: Use pci_enable_msix_range() instead of pci_enable_msix() (Michal Schmidt) [1092495]
-- [ethernet] bnx2: delete non-required instances of include <linux/init.h> (Michal Schmidt) [1092495]
-- [ethernet] ixgbevf: Remove unused get_supported_physical_layer pointer (John Greene) [1091124]
-- [ethernet] ixgbevf: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (John Greene) [1091124]
-- [ethernet] ixgbevf: get rid of SET_ETHTOOL_OPS (John Greene) [1091124]
-- [ethernet] ixgbevf: remove 82599 from the module description (John Greene) [1091124]
-- [ethernet] ixgbevf: remove open-coded skb_cow_head (John Greene) [1091124]
-- [ethernet] ixgbevf: Add bit to mark work queue initialization (John Greene) [1091124]
-- [ethernet] ixgbevf: Fix rcu warnings induced by LER (John Greene) [1091124]
-- [ethernet] ixgbevf: Change ixgbe_read_reg to ixgbevf_read_reg (John Greene) [1091124]
-- [ethernet] ixgbevf: Additional adapter removal checks (John Greene) [1091124]
-- [ethernet] ixgbevf: Check for adapter removal on register writes (John Greene) [1091124]
-- [ethernet] ixgbevf: Check register reads for adapter removal (John Greene) [1091124]
-- [ethernet] ixgbevf: Make the ethtool register test use accessors (John Greene) [1091124]
-- [ethernet] ixgbevf: Use static inlines instead of macros (John Greene) [1091124]
-- [ethernet] ixgbevf: Convert uses of __constant_<foo> to <foo> (John Greene) [1091124]
-- [ethernet] ixgbevf: Protect ixgbevf_down with __IXGBEVF_DOWN bit (John Greene) [1091124]
-- [ethernet] ixgbevf: Indicate removal state explicitly (John Greene) [1091124]
-- [ethernet] ixgbevf: delete unneeded call to pci_set_power_state (John Greene) [1091124]
-- [ethernet] ixgbevf: fix skb->pkt_type checks (John Greene) [1091124]
-- [ethernet] ixgbevf: add check for CHECKSUM_PARTIAL when doing TSO (John Greene) [1091124]
-- [ethernet] ixgbevf: fix handling of tx checksumming (John Greene) [1091124]
-- [ethernet] ixgbevf: Use pci_enable_msix_range() instead of pci_enable_msix() (John Greene) [1091124]
-- [ethernet] ixgbevf: merge ixgbevf_tx_map and ixgbevf_tx_queue into a single function (John Greene) [1091124]
-- [ethernet] ixgbevf: redo dma mapping using the tx buffer info (John Greene) [1091124]
-- [ethernet] ixgbevf: make the first tx_buffer a repository for most of the skb info (John Greene) [1091124]
-- [ethernet] ixgbevf: add tx counters (John Greene) [1091124]
-- [ethernet] ixgbevf: remove counters for Tx/Rx checksum offload (John Greene) [1091124]
-- [ethernet] ixgbevf: move ring specific stats into ring specific structure (John Greene) [1091124]
-- [ethernet] ixgbevf: make use of the dev pointer in the ixgbevf_ring struct (John Greene) [1091124]
-- [ethernet] ixgbevf: bump version (John Greene) [1091124]
-- [ethernet] ixgbevf: create function for all of ring init (John Greene) [1091124]
-- [ethernet] ixgbevf: Convert ring storage form pointer to an array to array of pointers (John Greene) [1091124]
-- [ethernet] ixgbevf: use pci drvdata correctly in ixgbevf_suspend() (John Greene) [1091124]
-- [ethernet] ixgbevf: set the disable state when ixgbevf_qv_disable is called (John Greene) [1091124]
-- [ethernet] ixgbevf: add DCB configuration into queue setup (John Greene) [1091124]
-- [ethernet] ixgbe: Focus config of head, tail ntc, and ntu all into a single function (John Greene) [1091124]
-- [ethernet] ixgbe: cleanup IXGBE_DESC_UNUSED (John Greene) [1091124]
-- [ethernet] ixgbevf: remove redundant workaround (John Greene) [1091124]
-- [ethernet] ixgbevf: Add zero_base handler to network statistics (John Greene) [1091124]
-- [ethernet] ixgbevf: add BP_EXTENDED_STATS for CONFIG_NET_RX_BUSY_POLL (John Greene) [1091124]
-- [ethernet] ixgbevf: implement CONFIG_NET_RX_BUSY_POLL (John Greene) [1091124]
-- [ethernet] ixgbevf: have clean_rx_irq return total_rx_packets cleaned (John Greene) [1091124]
-- [ethernet] ixgbevf: add ixgbevf_rx_skb (John Greene) [1091124]
-- [ethernet] ixgbevf: bump driver version (John Greene) [1091124]
-- [ethernet] ixgbevf: Remove extern from function prototypes (John Greene) [1091124]
-- [ethernet] ixgbevf: Adds function to set PSRTYPE register (John Greene) [1091124]
-- [ethernet] ixgbevf: Miscellaneous conversions to ETH_ALEN (John Greene) [1091124]
-- [ethernet] ixgbevf: add wait for Rx queue disable (John Greene) [1091123]
-- [ethernet] ixgbevf: fix 32-bit DMA mask handling (John Greene) [1091123]
-- [ethernet] ixgbe: fix message terminations (John Greene) [1091123]
-- [ethernet] ixgbe: clean up Rx time stamping code (John Greene) [1091123]
-- [ethernet] ixgbe: remove open-coded skb_cow_head (John Greene) [1091123]
-- [ethernet] ixgbe: Add bit to mark service task initialization (John Greene) [1091123]
-- [ethernet] ixgbe: Fix rcu warnings induced by LER (John Greene) [1091123]
-- [ethernet] ixgbe: Indicate removal state explicitly (John Greene) [1091123]
-- [ethernet] ixgbe: fix ixgbe_check_reset_blocked() declaration (John Greene) [1091123]
-- [ethernet] ixgbe: fix race conditions on queuing skb for HW time stamp (John Greene) [1091123]
-- [ethernet] ixgbe: never generate both software and hardware timestamps (John Greene) [1091123]
-- [ethernet] ixgbe: remove redundant if clause from PTP work (John Greene) [1091123]
-- [ethernet] ixgbe: Break recursion in case of removal (John Greene) [1091123]
-- [ethernet] ixgbe: Stop cacheing if the MNG FW enabled (John Greene) [1091123]
-- [ethernet] ixgbe: clean up ixgbe_atr_compute_perfect_hash_82599 (John Greene) [1091123]
-- [ethernet] ixgbe: use ixgbe_read_pci_cfg_word (John Greene) [1091123]
-- [ethernet] ixgbe: remove unused media type (John Greene) [1091123]
-- [ethernet] ixgbe: fix ixgbe_setup_mac_link_82599 autoc variables (John Greene) [1091123]
-- [ethernet] ixgbe: fix ixgbe_stop_mac_link_on_d3_82599 to check mng correctly (John Greene) [1091123]
-- [ethernet] ixgbe: check Core Clock Disable bit (John Greene) [1091123]
-- [ethernet] ixgbe: fix errors related to protected AUTOC calls (John Greene) [1091123]
-- [ethernet] ixgbe: Convert uses of __constant_<foo> to <foo> (John Greene) [1091123]
-- [ethernet] ixgbe: Don't receive packets when the napi budget == 0 (John Greene) [1091123]
-- [ethernet] ixgbe: add ixgbe_write_pci_cfg_word with ixgbe_removed check (John Greene) [1091123]
-- [ethernet] ixgbe: fix some multiline hw_dbg prints (John Greene) [1091123]
-- [ethernet] ixgbe: fixup header for ixgbe_set_rxpba_82598 (John Greene) [1091123]
-- [ethernet] ixgbe: add Linux NICS mailing list to contact info (John Greene) [1091123]
-- [ethernet] ixgbe: move setting rx_pb_size into get_invariants (John Greene) [1091123]
-- [ethernet] ixgbe: Fix format string in ixgbe_fcoe.c (John Greene) [1091123]
-- [ethernet] ixgbe: ixgbe calls skb_set_hash (John Greene) [1091123]
-- [ethernet] ixgbe: implement SIOCGHWTSTAMP ioctl (John Greene) [1091123]
-- [ethernet] ixgbe: Check config reads for removal (John Greene) [1091123]
-- [ethernet] ixgbe: Fix up some ethtool results when adapter is removed (John Greene) [1091123]
-- [ethernet] ixgbe: Restore hw_addr in LER recovery paths (John Greene) [1091123]
-- [ethernet] ixgbe: Additional adapter removal checks (John Greene) [1091123]
-- [ethernet] ixgbe: Check for adapter removal on register writes (John Greene) [1091123]
-- [ethernet] ixgbe: Check register reads for adapter removal (John Greene) [1091123]
-- [ethernet] ixgbe: Use static inlines instead of macros (John Greene) [1091123]
-- [ethernet] ixgbe: Add check for FW veto bit (John Greene) [1091123]
-- [ethernet] ixgbe: fix bit toggled for 82599 reset fix (John Greene) [1091123]
-- [ethernet] ixgbe: collect all 82599 AUTOC code in one function (John Greene) [1091123]
-- [ethernet] ixgbe: Remove extern from function prototypes (John Greene) [1091123]
-- [ethernet] ixgbe: fix to use correct timeout interval for memory read completion (John Greene) [1091123]
-- [ethernet] ixgbe: Add WoL support for a new device (John Greene) [1091123]
-- [ethernet] ixgbe: don't use magic size number to assign ptp_caps.name (John Greene) [1091123]
-- [ethernet] ixgbe: modify behavior on receiving a HW ECC error (John Greene) [1091123]
-- [ethernet] ixgbe: Use pci_enable_msix_range() instead of pci_enable_msix() (John Greene) [1091123]
-- [ethernet] ixgbe: bump version number (John Greene) [1091123]
-- [ethernet] ixgbe: add braces around else condition in ixgbe_qv_lock_* calls (John Greene) [1091123]
-- [ethernet] ixgbe: fix qv_lock_napi call in ixgbe_napi_disable_all (John Greene) [1091123]
-- [ethernet] ixgbe: Reduce memory consumption with larger page sizes (John Greene) [1091123]
-- [ethernet] ixgbe: Cleanup the use of tabs and spaces (John Greene) [1091124 1091123]
-
-* Fri Sep 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-158.el7]
-- [net] ipv4: implement igmp_qrv sysctl to tune igmp robustness variable (Hannes Frederic Sowa) [1110118]
-- [net] ipv6: add sysctl_mld_qrv to configure query robustness variable (Hannes Frederic Sowa) [1110118]
-- [net] rtnetlink: wait for unregistering devices in rtnl_link_unregister() (Florian Westphal) [1133741]
-- [net] netns: Delay default_device_exit_batch until no devices are unregistering (Florian Westphal) [1133741]
-- [net] netfilter: ctnetlink: fix refcnt leak in dying/unconfirmed list dumper (Florian Westphal) [1043012]
-- [net] netfilter: ctnetlink: fix dumping of dying/unconfirmed conntracks (Florian Westphal) [1043012]
-- [net] netfilter: nf_conntrack: initialize net.ct.generation (Florian Westphal) [1043012]
-- [net] netfilter: conntrack: Fix UP builds (Florian Westphal) [1043012]
-- [net] netfilter: conntrack: remove central spinlock nf_conntrack_lock (Florian Westphal) [1043012]
-- [net] netfilter: conntrack: seperate expect locking from nf_conntrack_lock (Florian Westphal) [1043012]
-- [net] netfilter: avoid race with exp->master ct (Florian Westphal) [1043012]
-- [net] netfilter: conntrack: spinlock per cpu to protect special lists (Florian Westphal) [1043012]
-- [net] netfilter: trivial code cleanup and doc changes (Florian Westphal) [1043012]
-- [net] sctp: fix ABI mismatch through sctp_assoc_to_state helper (Daniel Borkmann) [1135389]
-- [net] tcp: tsq: fix nonagle handling (Jiri Pirko) [1134402]
-- [netdrv] veth: extend features to support tunneling (Florian Westphal) [1098138]
-- [net] openvswitch: fix panic with multiple vlan headers (Jiri Benc) [1133109]
-- [net] netfilter: synproxy target: restrict to INPUT/FORWARD (Jesper Brouer) [1081339]
-- [net] fix rtnl notification in atomic context (Jiri Pirko) [1113925]
-- [net] always advertise rx_flags changes via netlink (Jiri Pirko) [1113925]
-- [net] update __dev_notify_flags() to send rtnl msg (Jiri Pirko) [1113925]
-
-* Fri Sep 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-157.el7]
-- [scsi] fusion: Remove use of DEF_SCSI_QCMD (Tomas Henzl) [1041675]
-- [scsi] fusion: Add free msg frames to the head, not tail of list (Tomas Henzl) [1041675]
-- [scsi] mpt2sas: Add free smids to the head, not tail of list (Tomas Henzl) [1041675]
-- [scsi] mpt2sas: Remove use of DEF_SCSI_QCMD (Tomas Henzl) [1041675]
-- [scsi] mpt2sas: Remove uses of serial_number (Tomas Henzl) [1041675]
-- [scsi] mpt3sas: Remove use of DEF_SCSI_QCMD (Tomas Henzl) [1041675]
-- [scsi] mpt3sas: Remove uses of serial_number (Tomas Henzl) [1041675]
-- [scsi] qla4xxx: 5.04.00.04.07.01-k0 (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Improve loopback failure messages (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: from treewide: fix comments and printk msgs (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Use kmemdup instead of kmalloc + memcpy (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Fix smatch warning in func qla4xxx_conn_get_param (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Fix smatch warning in func qla4xxx_get_ep_param (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Fix memory leak for ha->saved_acb (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Export sysfs DDBs from DPC handler (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Disable INTx interrupt for ISP82XX (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Check for correct return status (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Move qla4_8xxx_ms_mem_write_128b to ql4_nx.c (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Added PEX DMA Support for ISP8022 Adapter (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Added new opcodes for 84XX Minidump template (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Add support of 0xFF capture mask for minidump (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Change default capture to firmware defined capture mask (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Add support for ISCSI_PARAM_LOCAL_IPADDR sysfs attr (Chad Dupuis) [1089349]
-- [scsi] scsi_transport_iscsi: Export ISCSI_PARAM_LOCAL_IPADDR attr for iscsi_connection (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Add host statistics support (Chad Dupuis) [1089349]
-- [scsi] scsi_transport_iscsi: Add host statistics support (Chad Dupuis) [1089349]
-- [scsi] qla4xxx: Added support for Diagnostics MBOX command (Chad Dupuis) [1089349]
-- [scsi] qla2xxx: Update version number to 8.07.00.08.07.1-k (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove wait for online from host reset handler (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Do logins from a chip reset in DPC thread instead of the error handler thread (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove mapped vp index iterator macro dead code (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add MBC option for fast SFP data access (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix beacon blink logic for ISP26xx/83xx (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Delay driver unload if there is any pending activity going on (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Check the QLA8044_CRB_DRV_ACTIVE_INDEX register when we are not the owner of the reset (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Adjust adapter reset routine to the changes in firmware specification for ISPFx00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: IOCB data should be copied to I/O mem using memcpy_toio (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: ISP8044 poll ipmdio bus timeout improvement (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove unnecessary printk_ratelimited from qla_nx2.c (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Include <delay.h> file for msleep declartion in qla_nx2.c file (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Use proper log message for flash lock failed error (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Decrease pci access for response queue processing for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Change copyright year to 2014 in all the source files (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Enable fw_dump_size for ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Introduce fw_dump_flag to track fw dump progress (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove unnecessary delays from fw dump code path (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Track the process when the ROM_LOCK failure happens (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add ISP8044 serdes bsg interface (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Check for peg alive counter and clear any outstanding mailbox command (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Support of new firmware dump opcodes QLA8044_RDDFE(38), QLA8044_RDMDIO(39), QLA8044_POLLWR(40) (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Allow the next firmware dump if the previous dump capture fails for ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Log when device state is moved to failed state (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Do not schedule reset when one is already active when receiving an invalid status handle (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Wait for reset completion without lock for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Re-sync module parameter descriptions with the code (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: fix error handling of qla2x00_mem_alloc() (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add IOCB Abort command asynchronous handling (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix Task Management command asynchronous handling (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Correct the port no assignment for ISP82XX (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Read capture firmware dump on mailbox timeout for ISP8044 and ISP82XX (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Simplify the ISPFX00 interrupt handler code for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Avoid poisoning in the response queue for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove ISP_ABORT_NEEDED and ISP_ABORT_RETRY checks from watchdog function for ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove Marker type IOCB logic for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Properly handle 32 bit mailbox register for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Enable the Flash Access Control (FAC) mailbox command (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Select correct request queue for error type IOCB for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Remove init control block related dead code for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Use proper message for Non owner reset ACK Timeout (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Replace constant value for IOCTL IOCB abort execution status with a macro for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add handling for boot indication progress AENs for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add mutex around optrom calls to serialize accesses (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Poll during initialization for ISP25xx and ISP83xx (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix multiqueue MSI-X registration (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix warning reported by smatch (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Replace a constant with a macro definition for host->canqueue assigmnment (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Reset nic_core_reset_owner on moving from COLD to READY for ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Only complete dcbx_comp and lb_portup_comp for virtual port index 0 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Use scnprintf() instead of snprintf() in the sysfs handlers (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Use the correct mailbox registers when acknowledging an IDC request on ISP8044 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add changes to obtain ISPFX00 adapters product information in accordance with firmware update (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add logic to abort BSG commands for ISPFX00 (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Clear RISC INT reg only for an event and not always while polling (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix undefined behavior in call to snprintf() (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add BSG interface for read/write serdes register (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Fix issue with not displaying node name after system reboot (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Don't consider the drivers knocked out of IDC participation for future reset recovery process (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add BPM support for ISP25xx (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Correctly set mailboxes for extended init control block (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Disable INTx interrupt for ISP82XX (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Honor execute firmware failures (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Print proper QLAFX00 product name at probe (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: print MAC via pMR (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Correction to message ids (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Correctly print out/in mailbox registers (Chad Dupuis) [1089346]
-- [scsi] qla2xxx: Add a new interface to update versions (Chad Dupuis) [1089346]
-
-* Fri Sep 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-156.el7]
-- [tty] hvc_console: Fix wakeup of HVC thread on hvc_kick() (Steve Best) [1123045]
-- [tty] hvc_opal: Kick the HVC thread on OPAL console events (Steve Best) [1123045]
-- [powerpc] perf/hv-24x7: Catalog version number is be64, not be32 (Gustavo Duarte) [947159]
-- [powerpc] perf/hv-24x7: Remove [static 4096], sparse chokes on it (Gustavo Duarte) [947159]
-- [powerpc] perf/hv-24x7: Use (unsigned long) not (u32) values when calling plpar_hcall_norets() (Gustavo Duarte) [947159]
-- [powerpc] perf/hv-gpci: Make device attr static (Gustavo Duarte) [947159]
-- [powerpc] perf/hv_gpci: Probe failures use pr_debug(), and padding reduced (Gustavo Duarte) [947159]
-- [powerpc] perf/hv_24x7: Probe errors changed to pr_debug(), padding fixed (Gustavo Duarte) [947159]
-- [Documentation] powerpc/perf/hv_{gpci, 24x7}: Add documentation of device attributes (Gustavo Duarte) [947159]
-- [powerpc] perf: Add kconfig option for hypervisor provided counters (Gustavo Duarte) [947159]
-- [powerpc] perf: Add support for the hv 24x7 interface (Gustavo Duarte) [947159]
-- [powerpc] perf: Add support for the hv gpci (get performance counter info) interface (Gustavo Duarte) [947159]
-- [powerpc] perf: Add macros for defining event fields & formats (Gustavo Duarte) [947159]
-- [powerpc] perf: Add a shared interface to get gpci version and capabilities (Gustavo Duarte) [947159]
-- [powerpc] perf: Add 24x7 interface headers (Gustavo Duarte) [947159]
-- [powerpc] perf: Add hv_gpci interface header (Gustavo Duarte) [947159]
-- [powerpc] Add hvcalls for 24x7 and gpci (Get Performance Counter Info) (Gustavo Duarte) [947159]
-- [ethernet] sfc: Remove DEFINE_PCI_DEVICE_TABLE macro use (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Use __iowrite64_copy instead of a slightly different local function (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Add support for busy polling (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Add per-queue statistics in ethtool (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: add extra RX drop counters for nodesc_trunc and noskb_drop (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Add 40G link capability decoding (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Adding PCI ID for Solarflare 7000 series 40G network adapter (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: fix calling of free_irq with already free vector (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: get rid of SET_ETHTOOL_OPS (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: On MCDI timeout, issue an FLR (and mark MCDI to fail-fast) (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Call efx_set_channels() before efx->type->dimension_resources() (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Don't receive packets when the napi budget == 0 (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: check for NULL efx->ptp_data in efx_ptp_event (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Use pci_enable_msix_range() instead of pci_enable_msix() (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Add/remove blank lines to taste (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Fail self-test with -EBUSY, not -EIO, if the device is busy (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Cosmetic changes to self-test from the out-of-tree driver (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Update product naming (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Use canonical pointer type for MAC address in efx_set_mac_address() (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Rename 'use_options' variable in tso_start() to clearer 'use_opt_desc' (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Preserve rx_frm_trunc counters when resizing DMA rings (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Correct comment about number of TX queues used on EF10 (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Remove unused definitions of EF10 user-mode DMA descriptors (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Replace TSOH_OFFSET with the equivalent NET_IP_ALIGN (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Rewrite adjustment of PPS event in a clearer way (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Cache skb->data in local variable in efx_ptp_rx() (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Removed adhoc scheme to rate limit PTP event queue overflow message (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: fix build warning in ethernet/sfc/tx.c (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Use the correct maximum TX DMA ring size for SFC9100 (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Fix transposed ptp_{under, over}size_sync_windows statistics (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: Change efx_mcdi_reset_port to use ENTITY_RESET MC command (Nikolay Aleksandrov) [1110888]
-- [ethernet] sfc: calls skb_set_hash (Nikolay Aleksandrov) [1110888]
-- [iommu] vt-d: Use correct domain id to flush virtual machine domains (Myron Stowe) [1136539]
-- [iommu] Fix IOMMU sysfs stubs (Myron Stowe) [1136539]
-- [iommu] Fix compile error in iommu-sysfs.c (Myron Stowe) [1136539]
-- [pci] Add bridge DMA alias quirk for Intel 82801 bridge (Myron Stowe) [1136539]
-- [iommu] amd: Add sysfs support (Myron Stowe) [1136539]
-- [iommu] vt-d: Make use of IOMMU sysfs support (Myron Stowe) [1136539]
-- [iommu] Add sysfs support for IOMMUs (Myron Stowe) [1136539]
-- [iommu] core: Make iommu_group_get_for_dev() more robust (Myron Stowe) [1136537]
-- [iommu] Remove pci.h (Myron Stowe) [1136537]
-- [iommu] vt-d: Update to use PCI DMA aliases (Myron Stowe) [1136537]
-- [iommu] vt-d: Use iommu_group_get_for_dev() (Myron Stowe) [1136537]
-- [iommu] amd: Use iommu_group_get_for_dev() (Myron Stowe) [1136537]
-- [iommu] amd: Update to use PCI DMA aliases (Myron Stowe) [1136537]
-- [iommu] core: Create central IOMMU group lookup/creation interface (Myron Stowe) [1136537]
-- [iommu] vt-d: Suppress compiler warnings (Myron Stowe) [1136537]
-- [iommu] vt-d: Fix reference count in iommu_prepare_isa (Myron Stowe) [1136537]
-- [iommu] vt-d: fix bug in handling multiple RMRRs for the same PCI device (Myron Stowe) [1136537]
-- [pci] Add bridge DMA alias quirk for ITE bridge (Myron Stowe) [1136537]
-- [pci] Add bridge DMA alias quirk for ASMedia and Tundra bridges (Myron Stowe) [1136537]
-- [pci] Add support for PCIe-to-PCI bridge DMA alias quirks (Myron Stowe) [1136537]
-- [pci] Add function 1 DMA alias quirk for Marvell devices (Myron Stowe) [1136537]
-- [pci] Add function 0 DMA alias quirk for Ricoh devices (Myron Stowe) [1136537]
-- [pci] Add support for DMA alias quirks (Myron Stowe) [1136537]
-- [pci] Convert pci_dev_flags definitions to bit shifts (Myron Stowe) [1136537]
-- [pci] Add DMA alias iterator (Myron Stowe) [1136537]
-- [iommu] amd: fix enabling exclusion range for an exact device (Myron Stowe) [1129880 1087643]
-- [iommu] amd: Take mmap_sem when calling get_user_pages (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: fix bug in matching PCI devices with DRHD/RMRR descriptors (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix get_domain_for_dev() handling of upstream PCIe bridges (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: fix memory leakage caused by commit ea8ea46 (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix error handling in ANDD processing (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: returning free pointer in get_domain_for_dev() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Only call dmar_acpi_dev_scope_init() if DRHD units present (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Check for NULL pointer in dmar_acpi_dev_scope_init() (Myron Stowe) [1129880 1087643]
-- [iommu] amd: Fix logic to determine and checking max PASID (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Include ACPI devices in iommu=pt (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Finally enable translation for non-PCI devices (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove to_pci_dev() in intel_map_page() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove pdev from intel_iommu_attach_device() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove pdev from iommu_no_mapping() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make domain_add_dev_info() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make domain_remove_one_dev_info() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Rename 'hwdev' variables to 'dev' now that that's the norm (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove some pointless to_pci_dev() calls (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make get_valid_domain_for_dev() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make iommu_should_identity_map() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Handle RMRRs for non-PCI devices (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make get_domain_for_dev() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make domain_context_mapp{ed, ing}() take struct device (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make device_to_iommu() cope with non-PCI devices (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make identity_mapping() take struct device not struct pci_dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove segment from struct device_domain_info() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Store PCI segment number in struct intel_iommu (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Remove device_to_iommu() call from domain_remove_dev_info() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Simplify iommu check in domain_remove_one_dev_info() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Always store iommu in device_domain_info (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Use domain_remove_one_dev_info() in domain_add_dev_info() error path (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: use dmar_insert_dev_info() from dma_add_dev_info() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Stop dmar_insert_dev_info() freeing domains on losing race (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Pass iommu to domain_context_mapping_one() and iommu_support_dev_iotlb() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Use struct device in device_domain_info, not struct pci_dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make dmar_insert_dev_info() take struct device instead of struct pci_dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Make iommu_dummy() take struct device instead of struct pci_dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Add ACPI devices into dmaru->devices[] array (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Change scope lists to struct device, bus, devfn (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Allocate space for ACPI devices (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Parse ANDD records (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Add ACPI namespace device reporting structures (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Be less pessimistic about domain coherency where possible (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Honour intel_iommu=sp_off for non-VMM domains (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Clean up and fix page table clear/free behaviour (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Clean up size handling for intel_iommu_unmap() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Update IOMMU state when memory hotplug happens (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Unify the way to process DMAR device scope array (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Update DRHD/RMRR/ATSR device scope caches when PCI hotplug happe (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Use RCU to protect global resources in interrupt context (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Introduce a rwsem to protect global data structures (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Introduce macro for_each_dev_scope() to walk device scope entrie (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix error in detect ATS capability (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Check for NULL pointer when freeing IOMMU data structure (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix incorrect iommu_count for si_domain (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Reduce duplicated code to handle virtual machine domains (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Free resources if failed to create domain for PCIe endpoint (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Simplify function get_domain_for_dev() (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Move private structures and variables into intel-iommu.c (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Factor out dmar_alloc_dev_scope() for later reuse (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Avoid caching stale domain_device_info when hot-removing PCI dev (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Avoid caching stale domain_device_info and fix memory leak (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Avoid double free of g_iommus on error recovery path (Myron Stowe) [1129880 1087643]
-- [iommu] amd: Fix PASID format in INVALIDATE_IOTLB_PAGES command (Myron Stowe) [1129880 1087643]
-- [iommu] vt-d: Fix signedness bug in alloc_irte() (Myron Stowe) [1129808]
-- [iommu] vt-d: free all resources if failed to initialize DMARs (Myron Stowe) [1129808]
-- [iommu] vt-d: clean sparse warnings (Myron Stowe) [1129808]
-- [iommu] vt-d: fix wrong return value of dmar_table_init() (Myron Stowe) [1129808]
-- [iommu] vt-d: release invalidation queue when destroying IOMMU unit (Myron Stowe) [1129808]
-- [iommu] vt-d: fix access after free issue in function free_dmar_iommu() (Myron Stowe) [1129808]
-- [iommu] vt-d: keep shared resources when failed to initialize iommu devices (Myron Stowe) [1129808]
-- [iommu] vt-d: fix invalid memory access when freeing DMAR irq (Myron Stowe) [1129808]
-- [iommu] vt-d: simplify code with existing macros (Myron Stowe) [1129808]
-- [iommu] vt-d: use defined macro instead of hardcoding (Myron Stowe) [1129808]
-- [iommu] vt-d: mark internal functions as static (Myron Stowe) [1129808]
-- [iommu] vt-d: clean up unused code (Myron Stowe) [1129808]
-- [iommu] vt-d: check suitable flag in function detect_intel_iommu() (Myron Stowe) [1129808]
-- [iommu] vt-d: print correct domain id of static identity domain (Myron Stowe) [1129808]
-- [iommu] vt-d: refine support of 64bit guest address (Myron Stowe) [1129808]
-- [iommu] vt-d: fix resource leakage on error recovery path in iommu_init_domain (Myron Stowe) [1129808]
-- [iommu] vt-d: fix a race window in allocating domain ID for virtual machines (Myron Stowe) [1129808]
-- [iommu] vt-d: fix PCI device reference leakage on error recovery path (Myron Stowe) [1129808]
-- [iommu] vt-d: use dedicated bitmap to track remapping entry allocation status (Myron Stowe) [1129808]
-- [iommu] Rename domain_has_cap to iommu_domain_has_cap (Myron Stowe) [1129808]
-- [iommu] vt-d: Use dev_is_pci() to check whether it is pci device (Myron Stowe) [1129808]
-- [iommu] amd: Use dev_is_pci() to check whether it is pci device (Myron Stowe) [1129808]
-- [iommu] add missing include (Myron Stowe) [1129808]
-- [iommu] vt-d: Mark function eoi_ioapic_pin_remapped() as static in irq_remappi (Myron Stowe) [1129808]
-- [iommu] vt-d: Mark functions as static in intel_irq_remapping.c (Myron Stowe) [1129808]
-- [iommu] vt-d: Mark functions as static in dmar.c (Myron Stowe) [1129808]
-- [iommu] add IOMMU_EXEC flag for safely allowing XN mappings (Myron Stowe) [1129808]
-- [iommu] acpica: Update DMAR table definitions (Myron Stowe) [1129808]
-
-* Wed Sep 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-155.el7]
-- [tools] perf/bench: Fix NULL pointer dereference in "perf bench all" (Jiri Olsa) [1133083]
-- [tools] perf/bench/numa: Make no args mean 'run all tests' (Jiri Olsa) [1133083]
-- [tools] perf/machine: Use map as success in ip__resolve_ams (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix crash in elf_section_by_name (Jiri Olsa) [1133083]
-- [tools] perf/trace: Decode architecture-specific signal numbers (Jiri Olsa) [1133083]
-- [tools] perf: Fix strict alias issue for find_first_bit (Jiri Olsa) [1133083]
-- [tools] perf: fix BFD detection on opensuse (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Destroy unused symsrcs (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Check availability of annotate when processing samples (Jiri Olsa) [1133083]
-- [tools] perf/trace: Fix ioctl 'request' beautifier build problems on !(i386 (Jiri Olsa) [1133083]
-- [tools] perf/trace: Add fallback definition of EFD_SEMAPHORE (Jiri Olsa) [1133083]
-- [tools] perf/list: Fix checking for supported events on older kernels (Jiri Olsa) [1133083]
-- [tools] perf: Handle PERF_RECORD_HEADER_EVENT_TYPE properly (Jiri Olsa) [1133083]
-- [tools] perf/probe: Do not add offset twice to uprobe address (Jiri Olsa) [1133083]
-- [tools] perf/buildid-cache: Check relocation when checking for existing kcore (Jiri Olsa) [1133083]
-- [tools] perf: Adjust kallsyms for relocated kernel (Jiri Olsa) [1133083]
-- [tools] perf/tests: No need to set up ref_reloc_sym (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Prevent the use of kcore if the kernel has moved (Jiri Olsa) [1133083]
-- [tools] perf/record: Get ref_reloc_sym from kernel map (Jiri Olsa) [1133083]
-- [tools] perf/machine: Set up ref_reloc_sym in machine__create_kernel_maps() (Jiri Olsa) [1133083]
-- [tools] perf/machine: Add machine__get_kallsyms_filename() (Jiri Olsa) [1133083]
-- [tools] perf: Add kallsyms__get_function_start() (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix symbol annotation for relocated kernel (Jiri Olsa) [1133083]
-- [tools] perf: Fix AAAAARGH64 memory barriers (Jiri Olsa) [1133083]
-- [tools] perf: Demangle kernel and kernel module symbols too (Jiri Olsa) [1133083]
-- [tools] perf/doc: Remove mention of non-existent set_perf_event_pending() from design.txt (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Load map before using map->map_ip() (Jiri Olsa) [1133083]
-- [tools] perf: Fix traceevent plugin path definitions (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix JIT symbol resolution on heap (Jiri Olsa) [1133083]
-- [tools] perf/stat: Fix memory corruption of xyarray when cpumask is used (Jiri Olsa) [1133083]
-- [tools] perf/evsel: Remove duplicate member zeroing after free (Jiri Olsa) [1133083]
-- [tools] perf: Ensure sscanf does not overrun the "mem" field (Jiri Olsa) [1133083]
-- [tools] perf/stat: fix NULL pointer reference bug with event unit (Jiri Olsa) [1133083]
-- [tools] perf: Add support for the xtensa architecture (Jiri Olsa) [1133083]
-- [tools] perf/session: Free cpu_map in perf_session__cpu_bitmap (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Fix wrong SVG height (Jiri Olsa) [1133083]
-- [tools] perf: Remove unnecessary callchain cursor state restore on unmatch (Jiri Olsa) [1133083]
-- [tools] perf/callchain: Spare double comparison of callchain first entry (Jiri Olsa) [1133083]
-- [tools] perf: Do proper comm override error handling (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Export elf_section_by_name and reuse (Jiri Olsa) [1133083]
-- [tools] perf/probe: Release all dynamically allocated parameters (Jiri Olsa) [1133083]
-- [tools] perf/probe: Release allocated probe_trace_event if failed (Jiri Olsa) [1133083]
-- [tools] perf: Add 'build-test' make target (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when xen plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when scsi plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when jbd2 plugin is is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when cfg80211 plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when mac80211 plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when sched_switch plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when kvm plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when kmem plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when hrtimer plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Unregister handler when function plugin is unloaded (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add pevent_unregister_print_function() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add pevent_unregister_event_handler() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: fix pointer-integer size mismatch (Jiri Olsa) [1133083]
-- [tools] perf/hists: Convert hist entry functions to use struct he_stat (Jiri Olsa) [1133083]
-- [tools] perf: Factor out sample__resolve_callchain() (Jiri Olsa) [1133083]
-- [tools] perf: Remove symbol_conf.use_callchain check (Jiri Olsa) [1133083]
-- [tools] perf: Fix cross building (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Make plugin unload function receive pevent (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() finally!! (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in trace_seq_init() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Check return value of realloc() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add state member to struct trace_seq (Jiri Olsa) [1133083]
-- [tools] perf: Fix build error due to zfree() cast (Jiri Olsa) [1133083]
-- [tools] perf/record: Rename --initial-delay to --delay (Jiri Olsa) [1133083]
-- [tools] perf/record: Rename --no-delay to --no-buffering (Jiri Olsa) [1133083]
-- [tools] perf: Remove unused test-volatile-register-var.c (Jiri Olsa) [1133083]
-- [tools] perf/probe: Fix build when DWARF support libraries not present (Jiri Olsa) [1133083]
-- [tools] perf/diff: Color the Weighted Diff column (Jiri Olsa) [1133083]
-- [tools] perf/diff: Color the Ratio column (Jiri Olsa) [1133083]
-- [tools] perf/diff: Color the Delta column (Jiri Olsa) [1133083]
-- [tools] perf: Generalize percent_color_snprintf() (Jiri Olsa) [1133083]
-- [tools] include: Include <linux/compiler.h> from asm/bug.h (Jiri Olsa) [1133083]
-- [tools] perf/record: Add --initial-delay option (Jiri Olsa) [1133083]
-- [tools] perf: Use the DWARF unwind info only if loaded (Jiri Olsa) [1133083]
-- [tools] perf: Add test for building detached source tarballs (Jiri Olsa) [1133083]
-- [tools] perf: Include tools/lib/api/ in MANIFEST (Jiri Olsa) [1133083]
-- [tools] include: Move perf's bug.h to a generic place (Jiri Olsa) [1133083]
-- [tools] include: Define likely/unlikely in linux/compiler.h (Jiri Olsa) [1133083]
-- [tools] include: Move perf's linux/compiler.h to a generic place (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Introduce evlist__for_each() & friends (Jiri Olsa) [1133083]
-- [tools] perf/report: Move histogram entries collapsing to separate function (Jiri Olsa) [1133083]
-- [tools] perf/report: Move hist browser selection code to separate function (Jiri Olsa) [1133083]
-- [tools] perf/report: Move logic to warn about kptr_restrict'ed kernels to separate function (Jiri Olsa) [1133083]
-- [tools] perf: Comment typo fix (Jiri Olsa) [1133083]
-- [tools] perf/stat: Fix --delay option in man page (Jiri Olsa) [1133083]
-- [tools] perf: Make perf_event__synthesize_mmap_events global (Jiri Olsa) [1133083]
-- [tools] perf/machine: Fix id_hdr_size initialization (Jiri Olsa) [1133083]
-- [tools] perf: Automate setup of FEATURE_CHECK_(C (Jiri Olsa) [1133083]
-- [tools] perf/trace: Pack 'struct trace' (Jiri Olsa) [1133083]
-- [tools] perf/header: Pack 'struct perf_session_env' (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Shut up plugins make message (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Replace tabs with spaces for all non-commands statements (Jiri Olsa) [1133083]
-- [tools] perf/tests: Fix installation tests path setup (Jiri Olsa) [1133083]
-- [tools] perf: Move arch setup into seprate Makefile (Jiri Olsa) [1133083]
-- [tools] perf/stat: Remove misplaced __maybe_unused (Jiri Olsa) [1133083]
-- [tools] perf/tests: Fixup leak on error path in parse events test (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Auto unmap on destructor (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Close fds on destructor (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Move destruction of maps to evlist destructor (Jiri Olsa) [1133083]
-- [tools] perf/record: Remove old evsel_list usage (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Move the SIGUSR1 error reporting logic to prepare_workload (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Send the errno in the signal when workload fails (Jiri Olsa) [1133083]
-- [tools] perf/stat: Don't show counter information when workload fails (Jiri Olsa) [1133083]
-- [tools] perf: Use zfree to help detect use after free bugs (Jiri Olsa) [1133083]
-- [tools] perf: Introduce zfree (Jiri Olsa) [1133083]
-- [tools] perf: No need to test against NULL before calling free() (Jiri Olsa) [1133083]
-- [tools] perf/ui/tui: Implement header window (Jiri Olsa) [1133083]
-- [tools] perf/ui/tui: Split help message for perf top and report (Jiri Olsa) [1133083]
-- [tools] perf/ui/tui: Protect windows by ui__lock (Jiri Olsa) [1133083]
-- [tools] perf/probe: Support basic dwarf-based operations on uprobe events (Jiri Olsa) [1133083]
-- [tools] perf/probe: Expand given path to absolute path (Jiri Olsa) [1133083]
-- [tools] perf/config: Ignore generated files in feature-checks (Jiri Olsa) [1133083]
-- [tools] perf: Do not synthesize the treads of default guest (Jiri Olsa) [1133083]
-- [tools] perf: Use machine->pid for tgid if machine is guest (Jiri Olsa) [1133083]
-- [tools] perf: Set event->header.misc to PERF_RECORD_MISC_GUEST_USER if machine is guest (Jiri Olsa) [1133083]
-- [tools] perf: Find the proc info under machine->root_dir (Jiri Olsa) [1133083]
-- [tools] perf: Add support for PERF_RECORD_MISC_GUEST_USER in thread__find_addr_map() (Jiri Olsa) [1133083]
-- [tools] perf/report: Print session information only if --stdio is given (Jiri Olsa) [1133083]
-- [tools] perf/report: Use pr_*() functions where applicable (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Add 'machine' member to struct addr_location (Jiri Olsa) [1133083]
-- [tools] perf/mem: Remove unused parameter from dump_raw_samples() (Jiri Olsa) [1133083]
-- [tools] perf/scripting/perl: Shorten function signatures (Jiri Olsa) [1133083]
-- [tools] perf/scripting/python: Shorten function signatures (Jiri Olsa) [1133083]
-- [tools] perf/ui/browser: Remove misplaced __maybe_unused (Jiri Olsa) [1133083]
-- [tools] perf/report: Rename 'perf_report' to 'report' (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global 'O' processing code (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global QUIET_CLEAN build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global QUIET_INSTALL build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global QUIET_LINK build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add global QUIET_CC_FPIC build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use global QUIET_CC build output (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Remove print_app_build variable (Jiri Olsa) [1133083]
-- [tools] perf: Making QUIET_(CLEAN (Jiri Olsa) [1133083]
-- [tools] perf/tests: Factor make install tests (Jiri Olsa) [1133083]
-- [tools] perf: Rename 'perf_record_opts' to 'record_opts (Jiri Olsa) [1133083]
-- [tools] perf/record: Rename 'perf_record' to plain 'record' (Jiri Olsa) [1133083]
-- [tools] perf/record: Simplify perf_record__write (Jiri Olsa) [1133083]
-- [tools] perf/record: Use perf_data_file__write for output file (Jiri Olsa) [1133083]
-- [tools] perf/inject: Handle output file via perf_data_file object (Jiri Olsa) [1133083]
-- [tools] perf: Get rid of a duplicate va_end() in error reporting routine (Jiri Olsa) [1133083]
-- [tools] perf/report: Introduce helpers for processing callchains (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Make symbol__inc_addr_samples private (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Adopt methods from hists (Jiri Olsa) [1133083]
-- [tools] perf/top: Use hist_entry__inc_addr_sample (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Add inc_samples method to addr_map_symbol (Jiri Olsa) [1133083]
-- [tools] perf/hists: Leave symbol addr hist bucket auto alloc to symbol layer (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Auto allocate symbol per addr hist buckets (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Introduce pevent_filter_strerror() (Jiri Olsa) [1133083]
-- [tools] perf/hists: Do not pass period and weight to add_hist_entry() (Jiri Olsa) [1133083]
-- [tools] perf/sort: Do not compare dso again (Jiri Olsa) [1133083]
-- [tools] perf/sort: Compare addresses if no symbol info (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in some string conversion functions (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Use consistent name for the DSO binary type member (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add --highlight option (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Clarify method to get DSO binary_type filename (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Remove needless static binary_type array (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add support for topology (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Get number of CPUs from perf header (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Print pid along the name (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add backtrace support to CPU info (Jiri Olsa) [1133083]
-- [tools] Convert to new topic libraries (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Refactor pevent_filter_match() to get rid of die() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Make pevent_filter_add_filter_str() return pevent_errno (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Refactor process_filter() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Refactor create_arg_item() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in reparent_op_arg() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Make add_left() return pevent_errno (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in add_right() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in find_event() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in read_token() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() allocate_arg() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die in add_filter_type() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in show_error() (Jiri Olsa) [1133083]
-- [tools] perf/completion: Complete 'perf kvm' (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Add perf_evlist__to_front() (Jiri Olsa) [1133083]
-- [tools] perf: Fix inverted error verification bug in thread__fork (Jiri Olsa) [1133083]
-- [tools] perf: Move mem_bswap32/64 to util.c (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Add can_select_event() method (Jiri Olsa) [1133083]
-- [tools] perf/header: Allow header->data_offset to be predetermined (Jiri Olsa) [1133083]
-- [tools] perf: Add perf_event_paranoid() (Jiri Olsa) [1133083]
-- [tools] lib/symbol: Start carving out symbol parsing routines from perf (Jiri Olsa) [1133083]
-- [tools] perf/unwinding: Use the per-feature check flags (Jiri Olsa) [1133083]
-- [tools] perf: Add per-feature check flags (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix bug in usage of the basename() function (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Rename filename argument (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Constify some DSO methods parameters (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Set freed members to NULL in dso destructor (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Constify dso->long_name (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Remove open coded management of long_name_allocated member (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Set alloc flag close to setting the long_name (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Remove open coded management of short_name_allocated member (Jiri Olsa) [1133083]
-- [tools] perf/machine: Don't open code assign dso->short_name (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Rename [sl]name_alloc to match the members they refer to (Jiri Olsa) [1133083]
-- [tools] perf/script: Add --header/--header-only options (Jiri Olsa) [1133083]
-- [tools] perf/report: Add --header/--header-only options (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in pevent_filter_clear_trivial() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in pevent_filter_add_filter_str() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of die() in create_arg_item() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in add_event() (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Get rid of malloc_or_die() in pevent_filter_alloc() (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Make perf kvm diff support --guestmount (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Move code to generate filename for perf-kvm to function (Jiri Olsa) [1133083]
-- [tools] perf/annotate: Fix typo (Jiri Olsa) [1133083]
-- [tools] perf/archive: Remove duplicated 'runs' in man page (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Fix bug in 'stat report' (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Introduce option -v for perf kvm command (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Fix mmap pages rounding to power of 2 (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Fix max mmap_pages (Jiri Olsa) [1133083]
-- [tools] perf/evlist: Remove unnecessary parentheses (Jiri Olsa) [1133083]
-- [tools] perf/record: Fix display of incorrect mmap pages (Jiri Olsa) [1133083]
-- [tools] perf/script: Add an option to print the source line number (Jiri Olsa) [1133083]
-- [tools] perf/script: Fix symoff printing in callchains (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Report better error message on bad function args (Jiri Olsa) [1133083]
-- [tools] perf/trace: Fix summary percentage when processing files (Jiri Olsa) [1133083]
-- [tools] perf/trace: Add support for syscalls vs raw_syscalls (Jiri Olsa) [1133083]
-- [tools] perf/build: Fix install dependency (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Update kvm plugin with is_writable_pte helper (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Remove malloc_or_die from plugin_function.c (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Several cleanups for function plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use pevent_print_func_field in hrtimer_start handler (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use static functions in jbd2 plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Remove malloc_or_die from event-plugin.c (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add cfg80211 plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add scsi plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add xen plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add function plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add sched_switch plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add mac80211 plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add kvm plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add kmem plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add hrtimer plugin (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add jbd2 plugin (Jiri Olsa) [1133083]
-- [tools] perf: Overload pr_stat traceevent print function (Jiri Olsa) [1133083]
-- [tools] perf: Add trace-event global object for tracepoint interface (Jiri Olsa) [1133083]
-- [tools] perf: Add trace-event object (Jiri Olsa) [1133083]
-- [tools] perf: Add filename__read_str util function (Jiri Olsa) [1133083]
-- [tools] perf: Add build and install plugins targets (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Harmonize the install messages in lib-traceevent (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Change pevent_parse_format to include pevent handle (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add traceevent_host_bigendian function (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add plugin build support (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Add plugin support (Jiri Olsa) [1133083]
-- [tools] perf/script: Do not call perf_event__preprocess_sample() twice) (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix random fd closing with no libelf (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Update the 'record' man page entry for new --guest/--host behavior (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Fix spurious '=' use in man page (Jiri Olsa) [1133083]
-- [tools] perf/kvm: Add more detail about buildid-list in man page (Jiri Olsa) [1133083]
-- [tools] perf/target: Move the checking of which map function to call into function (Jiri Olsa) [1133083]
-- [tools] perf: Remove condition in machine__get_kernel_start_addr (Jiri Olsa) [1133083]
-- [tools] perf: Remove stackprotector feature check (Jiri Olsa) [1133083]
-- [tools] perf: Do not disable source line lookup just because of 1 failure (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Retain symbol source file name to lookup source line numbers (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Retain bfd reference to lookup source line numbers (Jiri Olsa) [1133083]
-- [tools] perf: Use asprintf instead of malloc plus snprintf (Jiri Olsa) [1133083]
-- [tools] perf/trace: Honour -m option (Jiri Olsa) [1133083]
-- [tools] perf: Include test-stackprotector-all.c in test-all (Jiri Olsa) [1133083]
-- [tools] perf: Correct the message in feature-libnuma checking (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Move wake_events list to 'struct timechart' (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Move power_events list to 'struct timechart' (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Move all_data per_pid list to 'struct timechart' (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Introduce tool struct (Jiri Olsa) [1133083]
-- [tools] perf: Add perf_data_file__write interface (Jiri Olsa) [1133083]
-- [tools] perf: Add writen function (Jiri Olsa) [1133083]
-- [tools] perf: Fine tune readn function (Jiri Olsa) [1133083]
-- [tools] perf: Use correct return type for readn function (Jiri Olsa) [1133083]
-- [tools] perf/record: Unify data output code into perf_record__write function (Jiri Olsa) [1133083]
-- [tools] perf: Fix tags/TAGS targets rebuilding (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Remove misplaced __maybe_unused (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Remove some needless struct forward declarations (Jiri Olsa) [1133083]
-- [tools] perf/timechart: dynamically determine event fields offset (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Fix not finding kcore in buildid cache (Jiri Olsa) [1133083]
-- [tools] perf/script: Print mmap[2] events also (Jiri Olsa) [1133083]
-- [tools] perf/script: Print comm, fork and exit events also (Jiri Olsa) [1133083]
-- [tools] perf/script: Print callchains and symbols if they exist (Jiri Olsa) [1133083]
-- [tools] perf: Export setup_list (Jiri Olsa) [1133083]
-- [tools] perf/thread: Move comm_list check into function (Jiri Olsa) [1133083]
-- [tools] perf/symbols: Move idle syms check from top to generic function (Jiri Olsa) [1133083]
-- [tools] perf/evsel: Skip ignored symbols while printing callchain (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add backtrace support (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add support for -P and -T in timechart recording (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Group figures and add title with details (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add support for displaying only tasks related data (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Use proc_num to implement --power-only (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Add option to limit number of tasks (Jiri Olsa) [1133083]
-- [tools] perf/timechart: Always try to print at least 15 tasks (Jiri Olsa) [1133083]
-- [tools] perf/record: Default -t option to no inheritance (Jiri Olsa) [1133083]
-- [tools] perf: Add option macro OPT_BOOLEAN_SET (Jiri Olsa) [1133083]
-- [tools] perf: Allow '--inherit' as the negation of '--no-inherit' (Jiri Olsa) [1133083]
-- [tools] perf/record: Make per-cpu mmaps the default (Jiri Olsa) [1133083]
-- [tools] perf/script: Move evname print code to process_event() (Jiri Olsa) [1133083]
-- [tools] perf/completion: Rename file to reflect zsh support (Jiri Olsa) [1133083]
-- [tools] perf/completion: Introduce zsh support (Jiri Olsa) [1133083]
-- [tools] perf/completion: Factor out call to __ltrim_colon_completions (Jiri Olsa) [1133083]
-- [tools] perf/completion: Factor out compgen stuff (Jiri Olsa) [1133083]
-- [tools] perf/completion: Introduce a layer of indirection (Jiri Olsa) [1133083]
-- [tools] perf/top: Make -g refer to callchains (Jiri Olsa) [1133083]
-- [tools] perf/trace: Remove thread summary coloring (Jiri Olsa) [1133083]
-- [tools] lib/traceevent: Use helper trace-seq in print functions like kernel does (Jiri Olsa) [1133083]
-- [tools] perf/stat: Add event unit and scale support (Jiri Olsa) [1133083]
-- [kernel] perf: Optimize ring-buffer write by depending on control dependencies (Jiri Olsa) [1133083]
-- [x86] perf: Fix leak in uncore_type_init failure paths (Jiri Olsa) [1133083]
-- [kernel] perf: Fix hotplug splat (Jiri Olsa) [1133083]
-- [x86] perf: Fix event scheduling (Jiri Olsa) [1133083]
-- [x86] perf: Fix IVT/SNB-EP uncore CBOX NID filter table (Jiri Olsa) [1133083]
-- [x86] perf: Correctly use FEATURE_PDCM (Jiri Olsa) [1133083]
-- [x86] perf: Fix unknown NMI warning (Jiri Olsa) [1133083]
-- [x86] perf: Fix Userspace RDPMC switch (Jiri Olsa) [1133083]
-- [x86] perf: Add userspace RDPMC quirk for PPro (Jiri Olsa) [1133083]
-- [kernel] uapi: convert u64 to __u64 in exported headers (Jiri Olsa) [1133083]
-- [kernel] perf: Document the new transaction sample type (Jiri Olsa) [1133083]
-- [kernel] perf: Introduce a flag to enable close-on-exec in perf_event_open() (Jiri Olsa) [1133083]
-- [x86] perf: Add Intel RAPL PP1 energy counter support (Jiri Olsa) [1133083]
-- [kernel] perf: Fix PERF_EVENT_IOC_PERIOD to force-reset the period (Jiri Olsa) [1133083]
-- [x86] perf: Add RAPL hrtimer support (Jiri Olsa) [1133083]
-- [x86] perf: Add Intel RAPL PMU support (Jiri Olsa) [1133083]
-- [kernel] perf: Add active_entry list head to struct perf_event (Jiri Olsa) [1133083]
-- [kernel] perf: Fix perf_pmu_migrate_context (Jiri Olsa) [1133083]
-- [kernel] ktime: add ms_to_ktime() and ktime_add_ms() helpers (Jiri Olsa) [1133083]
-- [tools] perf/traceevent: Fix conversion of pointer to integer of different size (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Fix use of multiple options in processing field (Jiri Olsa) [1131394]
-- [tools] perf/header: Fix possible memory leaks in process_group_desc() (Jiri Olsa) [1131394]
-- [tools] perf/header: Fix bogus group name (Jiri Olsa) [1131394]
-- [tools] perf: Tag thread comm as overriden (Jiri Olsa) [1131394]
-- [tools] perf/record: Add an option to force per-cpu mmaps (Jiri Olsa) [1131394]
-- [tools] perf/probe: Add '--demangle'/'--no-demangle' (Jiri Olsa) [1131394]
-- [tools] perf/ui/browser: Fix segfault caused by off by one handling END key (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Limit max callchain using max_stack on DWARF unwinding too (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Introduce perf_evsel__prev() method (Jiri Olsa) [1131394]
-- [tools] perf: Use perf_evlist__{first, last}, perf_evsel__next (Jiri Olsa) [1131394]
-- [tools] perf: Synthesize anon MMAP records again (Jiri Olsa) [1131394]
-- [tools] perf/top: Add missing newline if the 'uid' is invalid (Jiri Olsa) [1131394]
-- [tools] perf: Remove trivial extra semincolon (Jiri Olsa) [1131394]
-- [tools] perf/trace: Tweak summary output (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix feature-libunwind-debug-frame handling (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix timerfd feature check (Jiri Olsa) [1131394]
-- [tools] perf: parse the .debug_frame section in case .eh_frame is not present (Jiri Olsa) [1131394]
-- [tools] perf: Check libunwind for availability of dwarf parsing feature (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Add direct access to dynamic arrays (Jiri Olsa) [1131394]
-- [tools] perf/target: Shorten perf_target__ to target__ (Jiri Olsa) [1131394]
-- [tools] perf/tests: Handle throttle events in 'object code reading' test (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Refactor mmap_pages parsing (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Round mmap pages to power 2 - v2 (Jiri Olsa) [1131394]
-- [tools] perf/record: Fix segfault with --no-mmap-pages (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add summary only option (Jiri Olsa) [1131394]
-- [tools] perf/trace: Simplify '--summary' output (Jiri Olsa) [1131394]
-- [tools] perf/trace: Change syscall summary duration order (Jiri Olsa) [1131394]
-- [tools] perf/tests: Compensate lower sample freq with longer test loop (Jiri Olsa) [1131394]
-- [tools] perf/trace: Fix segfault on perf trace -i perf.data (Jiri Olsa) [1131394]
-- [tools] perf/trace: Separate tp syscall field caching into init routine to be reused (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify fifth argument of mmap() as fd (Jiri Olsa) [1131394]
-- [tools] perf/tests: Use lower sample_freq in sw clock event period test (Jiri Olsa) [1131394]
-- [tools] perf/tests: Check return of perf_evlist__open sw clock event period test (Jiri Olsa) [1131394]
-- [tools] perf/record: Move existing write_output into helper function (Jiri Olsa) [1131394]
-- [tools] perf/record: Use correct return type for write() (Jiri Olsa) [1131394]
-- [tools] perf: Prevent condition that all sort keys are elided (Jiri Olsa) [1131394]
-- [tools] perf/machine: Simplify synthesize_threads method (Jiri Olsa) [1131394]
-- [tools] perf/machine: Introduce synthesize_threads method out of open coded equivalent (Jiri Olsa) [1131394]
-- [tools] perf/record: Synthesize non-exec MMAP records when --data used (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Remove idx parm from constructor (Jiri Olsa) [1131394]
-- [tools] perf/ui/tui/progress: Don't force a refresh during progress update (Jiri Olsa) [1131394]
-- [tools] perf: Remove unneeded include (Jiri Olsa) [1131394]
-- [tools] perf/record: Remove post_processing_offset variable (Jiri Olsa) [1131394]
-- [tools] perf/record: Remove advance_output function (Jiri Olsa) [1131394]
-- [tools] perf/record: Refactor feature handling into a separate function (Jiri Olsa) [1131394]
-- [tools] perf/trace: Don't relookup fields by name in each sample (Jiri Olsa) [1131394]
-- [tools] perf: Fix version when building out of tree (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Ditch evsel->handler.data field (Jiri Olsa) [1131394]
-- [tools] perf: Add required memory barriers (Jiri Olsa) [1131394]
-- [tools] perf: Finish the removal of 'self' arguments (Jiri Olsa) [1131394]
-- [tools] perf: Check maximum frequency rate for record/top (Jiri Olsa) [1131394]
-- [tools] perf/fs: Add procfs support (Jiri Olsa) [1131394]
-- [tools] perf/fs: Rename NAME_find_mountpoint() to NAME__mountpoint() (Jiri Olsa) [1131394]
-- [tools] perf: Factor sysfs code into generic fs object (Jiri Olsa) [1131394]
-- [tools] perf/list: Add usage (Jiri Olsa) [1131394]
-- [tools] perf/list: Remove a level of indentation (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix detection of non-core features (Jiri Olsa) [1131394]
-- [tools] perf/kvm: Disable live command if timerfd is not supported (Jiri Olsa) [1131394]
-- [tools] perf/hists: Consolidate __hists__add_*entry() (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Add pevent_print_func_field() helper function (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Add flags NOHANDLE and PRINTRAW to individual events (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Check for spaces in character array (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Have bprintk output the same as the kernel does (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Handle __print_hex(__get_dynamic_array(fieldname), len) (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: If s is a pointer, check printk formats (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Update printk formats when entered (Jiri Olsa) [1131394]
-- [tools] perf/traceevent: Add support for extracting trace_clock in report (Jiri Olsa) [1131394]
-- [tools] perf/stat: Enhance option parse error message (Jiri Olsa) [1131394]
-- [tools] perf/top: Use parse_options_usage() for -s option failure (Jiri Olsa) [1131394]
-- [tools] perf/report: Use parse_options_usage() for -s option failure (Jiri Olsa) [1131394]
-- [tools] perf/report: Postpone setting up browser after parsing options (Jiri Olsa) [1131394]
-- [tools] perf: Show single option when failed to parse (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Synthesize PERF_SAMPLE_TRANSACTION (Jiri Olsa) [1131394]
-- [tools] perf/test: Update "sample parsing" test for PERF_SAMPLE_TRANSACTION (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Add missing overflow check for TRANSACTION (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Always use perf_evsel__set_sample_bit() (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Add a debug print if event buffer mmap fails (Jiri Olsa) [1131394]
-- [tools] perf: Fix libunwind build and feature detection for 32-bit build (Jiri Olsa) [1131394]
-- [tools] perf: Fix 32-bit cross build (Jiri Olsa) [1131394]
-- [tools] perf/script: Set up output options for in-stream attributes (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Add a debug print if perf_event_open fails (Jiri Olsa) [1131394]
-- [tools] perf: Get current comm instead of last one (Jiri Olsa) [1131394]
-- [tools] perf: Compare hists comm by addresses (Jiri Olsa) [1131394]
-- [tools] perf: Add new COMM infrastructure (Jiri Olsa) [1131394]
-- [tools] perf: Add time argument on COMM setting (Jiri Olsa) [1131394]
-- [tools] perf: Use an accessor to read thread comm (Jiri Olsa) [1131394]
-- [tools] perf: Add missing data.h into LIB_H headers (Jiri Olsa) [1131394]
-- [tools] perf/probe: Fix typo (Jiri Olsa) [1131394]
-- [tools] perf/bench: Fix two warnings (Jiri Olsa) [1131394]
-- [tools] perf: Show progress on histogram collapsing (Jiri Olsa) [1131394]
-- [tools] perf/ui/progress: Per progress bar state (Jiri Olsa) [1131394]
-- [tools] perf/ui: Rename ui_progress to ui_progress_ops (Jiri Olsa) [1131394]
-- [tools] perf: Fix non-debug build (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Validate that mmap_pages is not too big (Jiri Olsa) [1131394]
-- [tools] perf: Do not accept parse_tag_value() overflow (Jiri Olsa) [1131394]
-- [tools] perf/inject: Do not repipe attributes to a perf.data file (Jiri Olsa) [1131394]
-- [tools] perf/script: Make perf_script a local variable (Jiri Olsa) [1131394]
-- [tools] perf/sched: Optimize build time (Jiri Olsa) [1131394]
-- [tools] perf/sched: Make struct perf_sched sched a local variable (Jiri Olsa) [1131394]
-- [tools] perf/bench: Change the procps visible command-name of invididual benchmark tests plus cleanups (Jiri Olsa) [1131394]
-- [tools] perf/probe: Find fentry mcount fuzzed parameter location (Jiri Olsa) [1131394]
-- [tools] perf/probe: Support "$vars" meta argument syntax for local variables (Jiri Olsa) [1131394]
-- [tools] perf: Stop using 'self' in some more places (Jiri Olsa) [1131394]
-- [tools] perf/test: Consider PERF_SAMPLE_TRANSACTION in the "sample parsing" test (Jiri Olsa) [1131394]
-- [tools] perf/test: Clarify the "sample parsing" test entry (Jiri Olsa) [1131394]
-- [tools] perf/top: Add --max-stack option to limit callchain stack scan (Jiri Olsa) [1131394]
-- [tools] perf/report: Add --max-stack option to limit callchain stack scan (Jiri Olsa) [1131394]
-- [tools] perf/session: Separating data file properties from session (Jiri Olsa) [1131394]
-- [tools] perf: Add perf_data_file__open interface to data object (Jiri Olsa) [1131394]
-- [tools] perf: Add data object to handle perf data file (Jiri Olsa) [1131394]
-- [tools] perf: Compare dso's also when comparing symbols (Jiri Olsa) [1131394]
-- [tools] perf/callchain: Convert children list to rbtree (Jiri Olsa) [1131394]
-- [tools] perf/list: Show error if tracepoints not available (Jiri Olsa) [1131394]
-- [tools] perf/script: Print addr by default for BTS (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Factor out duplicated mmap code (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Fix perf_evlist__mmap comments (Jiri Olsa) [1131394]
-- [tools] perf: Fix bench/numa.c for 32-bit build (Jiri Olsa) [1131394]
-- [tools] perf: Fix test_on_exit for 32-bit build (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Fix 32-bit build error (Jiri Olsa) [1131394]
-- [tools] perf/session: Add missing members to perf_event__attr_swap() (Jiri Olsa) [1131394]
-- [tools] perf/session: Add missing sample flush for piped events (Jiri Olsa) [1131394]
-- [tools] perf/record: Improve write_output error message (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Add missing decrement in id sample parsing (Jiri Olsa) [1131394]
-- [tools] perf/evsel: Add missing 'mmap2' from debug print (Jiri Olsa) [1131394]
-- [tools] perf/trace: Improve messages related to /proc/sys/kernel/perf_event_paranoid (Jiri Olsa) [1131394]
-- [tools] perf: Introduce filename__read_int helper (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Introduce perf_evlist__strerror_tp method (Jiri Olsa) [1131394]
-- [tools] perf/trace: Improve event processing exit (Jiri Olsa) [1131394]
-- [tools] perf/trace: Use vfs_getname hook if available (Jiri Olsa) [1131394]
-- [tools] perf/trace: Split fd -> pathname array handling (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Fix a mmap and munmap mismatched bug (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Fix a memory leak due to symbol__delete not being used (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Another fix for annotate_browser__callq() (Jiri Olsa) [1131394]
-- [tools] perf/buildid-cache: Add ability to add kcore to the cache (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Fix annotate_browser__callq() (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Add ability to find kcore in build-id cache (Jiri Olsa) [1131394]
-- [tools] perf: Add copyfile_mode() (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Find kcore symbols on other maps (Jiri Olsa) [1131394]
-- [tools] perf/build: Simplify the autodep inclusion rule (Jiri Olsa) [1131394]
-- [tools] perf/build: Improve the 'stackprotector' feature test (Jiri Olsa) [1131394]
-- [tools] perf/build: Remove the volatile-register-var feature check (Jiri Olsa) [1131394]
-- [tools] perf/build: Simplify the libelf logic (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix DPACKAGE definitions for the libbfd et al testcases (Jiri Olsa) [1131394]
-- [tools] perf/build: Pass through DEBUG parameter (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix non-existent build directory handling (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Add map_groups__find_ams() (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Workaround objdump difficulties with kcore (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Validate kcore module addresses (Jiri Olsa) [1131394]
-- [tools] perf: Separate lbfd check out of NO_DEMANGLE condition (Jiri Olsa) [1131394]
-- [tools] perf/tests: Fix memory leak in dso-data.c (Jiri Olsa) [1131394]
-- [tools] perf: Fix old GCC build error in 'get_srcline' (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add summary option to dump syscall statistics (Jiri Olsa) [1131394]
-- [tools] perf/util: Add findnew method to intlist (Jiri Olsa) [1131394]
-- [tools] perf/trace: Improve the error messages (Jiri Olsa) [1131394]
-- [tools] perf/timechart: Add example in the documentation (Jiri Olsa) [1131394]
-- [tools] perf: Implement summary output for 'make install' (Jiri Olsa) [1131394]
-- [tools] perf: Align perf version output to other build messages (Jiri Olsa) [1131394]
-- [tools] perf: Harmonize the various build messages in perf, lib-traceevent, lib-lk (Jiri Olsa) [1131394]
-- [tools] perf: Implement summary output for 'make clean' (Jiri Olsa) [1131394]
-- [tools] perf: Fix redirection printouts (Jiri Olsa) [1131394]
-- [tools] perf/trace: Initial beautifier for ioctl's 'cmd' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Prepare the strarray scnprintf method for reuse (Jiri Olsa) [1131394]
-- [tools] perf/trace: Allow specifying index offset in strarrays (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Make a separate function to parse /proc/modules (Jiri Olsa) [1131394]
-- [tools] perf/intlist: Add priv member (Jiri Olsa) [1131394]
-- [tools] perf/trace: Use new machine method to loop over threads (Jiri Olsa) [1131394]
-- [tools] perf/machine: Add method to loop over threads and invoke handler (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add record option (Jiri Olsa) [1131394]
-- [tools] perf/trace: Fix comm resolution when reading events from file (Jiri Olsa) [1131394]
-- [tools] perf/stat: Add units to nanosec-based counters (Jiri Olsa) [1131394]
-- [tools] perf/stat: Don't require a workload when using system wide or CPU options (Jiri Olsa) [1131394]
-- [tools] perf/stat: Fix misleading message when specifying cpu list or system wide (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Fix perf_evlist__mmap_read event overflow (Jiri Olsa) [1131394]
-- [tools] perf: Ignore 'perf timechart' output file (Jiri Olsa) [1131394]
-- [tools] perf/stat: Don't print bogus data on -e instructions (Jiri Olsa) [1131394]
-- [tools] perf/stat: Don't print bogus data on -e cycles (Jiri Olsa) [1131394]
-- [tools] perf: Move start conditions to start of the flex file (Jiri Olsa) [1131394]
-- [tools] perf: Add missing -ldl for gtk build (Jiri Olsa) [1131394]
-- [tools] perf/machine: Use snprintf instead of sprintf (Jiri Olsa) [1131394]
-- [tools] perf/bench sched: Add --threaded option (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add 'trace' alias to 'perf trace' (Jiri Olsa) [1131394]
-- [tools] perf/trace: Show path associated with fd in live sessions (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify mlock & friends 'addr' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Handle MSG_WAITFORONE not defined (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add beautifier for clock_gettime's clk_id argument (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify pipe2 'flags' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Use socket's beautifiers in socketpair (Jiri Olsa) [1131394]
-- [tools] perf/trace: Don't supress zeroed args when there is an strarray entry for it (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add helper for syscalls with a single strarray arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify flock 'cmd' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify epoll_ctl 'op' arg (Jiri Olsa) [1131394]
-- [tools] perf: Fix srcline sort key behavior (Jiri Olsa) [1131394]
-- [tools] perf: Implement addr2line directly using libbfd (Jiri Olsa) [1131394]
-- [tools] perf: Save failed result of get_srcline() (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Pass dso instead of dso_name to get_srcline() (Jiri Olsa) [1131394]
-- [tools] perf: Do not try to call addr2line on non-binary files (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Factor out get/free_srcline() (Jiri Olsa) [1131394]
-- [tools] perf/hists: Free srcline when freeing hist_entry (Jiri Olsa) [1131394]
-- [tools] perf/annotate: Reuse path from the result of addr2line (Jiri Olsa) [1131394]
-- [tools] perf/sort: Fix a memory leak on srcline (Jiri Olsa) [1131394]
-- [tools] perf: Separate out GTK codes to libperf-gtk.so (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Add new option --ignore-vmlinux for perf top (Jiri Olsa) [1131394]
-- [tools] perf: Adding throttle event data struct support (Jiri Olsa) [1131394]
-- [tools] perf/evlist: Introduce perf_evlist__new_default function (Jiri Olsa) [1131394]
-- [tools] perf: Add possibility to specify mmap size (Jiri Olsa) [1131394]
-- [tools] perf: Check mmap pages value early (Jiri Olsa) [1131394]
-- [tools] perf/lock: Account for lock average wait time (Jiri Olsa) [1131394]
-- [tools] perf/lock: Limit bad rate precision (Jiri Olsa) [1131394]
-- [tools] perf/lock: Redo __cmd_report (Jiri Olsa) [1131394]
-- [tools] perf/lock: Plug some memleaks (Jiri Olsa) [1131394]
-- [tools] perf/lock: Return proper code in report_lock_*_event (Jiri Olsa) [1131394]
-- [tools] perf/lock: Remove dead code (Jiri Olsa) [1131394]
-- [tools] perf: Unify page_size usage (Jiri Olsa) [1131394]
-- [tools] perf: Remove unused trace-event-* code (Jiri Olsa) [1131394]
-- [tools] perf/symbols: Support for Openembedded/Yocto -dbg packages (Jiri Olsa) [1131394]
-- [tools] perf/completion: Use more comp words (Jiri Olsa) [1131394]
-- [tools] perf/completion: Strip dependency on bash-completion (Jiri Olsa) [1131394]
-- [tools] perf/completion: Strip function_exists () (Jiri Olsa) [1131394]
-- [tools] perf/completion: Strip dependency on _filedir (Jiri Olsa) [1131394]
-- [tools] perf/completion: Update __ltrim_colon_completions (Jiri Olsa) [1131394]
-- [tools] perf/completion: Don't dictate perf install location (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add option to show process COMM (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify eventfd2 'flags' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify send/recv syscall 'flags' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Don't print zeroed args (Jiri Olsa) [1131394]
-- [tools] perf/trace: Remove duplicate mmap entry in syscall_fmts array (Jiri Olsa) [1131394]
-- [tools] perf/trace: Add option to show full timestamp (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify rlmimit resources (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify access 'mode' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify socket 'type' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify socket 'family' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify signal number arg in several syscalls (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify rt_sigprocmask 'how' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Beautify fcntl 'cmd' arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Use strarray for ltrace's whence arg (Jiri Olsa) [1131394]
-- [tools] perf/trace: Allow passing parms to arg formatters (Jiri Olsa) [1131394]
-- [tools] perf/trace: Put syscall formatter parms into struct (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up feature_print_code() (Jiri Olsa) [1131394]
-- [tools] perf/build: Pass through LDFLAGS to feature tests (Jiri Olsa) [1131394]
-- [tools] perf/build: Harmonize the style of the feature testcases (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix O=/some/dir perf.o type of targets (Jiri Olsa) [1131394]
-- [tools] perf/build: Fix non-canonical directory names in O= (Jiri Olsa) [1131394]
-- [tools] perf/build: Exclude MAKEFLAGS from nested invocation (Jiri Olsa) [1131394]
-- [tools] perf/build: Make sure autodep feature binaries honor the O= setting (Jiri Olsa) [1131394]
-- [tools] perf/build: Pass through all targets to Makefile.perf (Jiri Olsa) [1131394]
-- [tools] perf/build: Collapse the test-all.c testcase (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up various testcases (Jiri Olsa) [1131394]
-- [tools] perf/build: Remove unused config/feature-tests.mak (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature checks 'liberty', 'liberty-z', 'cplus-demangle' (Jiri Olsa) [1131394]
-- [tools] perf/build: Standardize the various messages output by parallel make (Jiri Olsa) [1131394]
-- [tools] perf/build: Flip Makefile.parallel and Makefile.perf (Jiri Olsa) [1131394]
-- [tools] perf/build: Automatically build in parallel, based on number of CPUs in the system (Jiri Olsa) [1131394]
-- [tools] perf/build: Improve printout-of auto-detected features (Jiri Olsa) [1131394]
-- [tools] perf/build: Speed up auto-detection (Jiri Olsa) [1131394]
-- [tools] perf/build: Invoke feature-checks 'clean' target from the main Makefile (Jiri Olsa) [1131394]
-- [tools] perf: Fix double/triple-build of the feature detection logic during 'make install' et al (Jiri Olsa) [1131394]
-- [tools] perf/build: Speed up the final link (Jiri Olsa) [1131394]
-- [tools] perf/build: Speed up git-version test on re-make (Jiri Olsa) [1131394]
-- [tools] perf/build: Speed up auto-detection of features by adding a 'test-all' target (Jiri Olsa) [1131394]
-- [tools] perf: Turn strlcpy() into a __weak function (Jiri Olsa) [1131394]
-- [tools] perf: Clean up util/include/linux/compiler.h (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'backtrace' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'on-exit' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'strlcpy' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libbfd' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libpython-version' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libpython' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libperl' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'gtk2-infobar' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'gtk2' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libslang' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libaudit' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libunwind' (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up the libunwind logic in config/Makefile (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libelf-getphdrnum' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libelf-mmap' (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up the mmap logic in config/Makefile (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'dwarf' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'glibc' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libelf' (Jiri Olsa) [1131394]
-- [tools] perf/build: Clean up the libelf logic in config/Makefile (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'bionic' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'fortify-source' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'volatile-register-var' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'stackprotector' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'stackprotector-all' (Jiri Olsa) [1131394]
-- [tools] perf/build: split out feature check 'libnuma' (Jiri Olsa) [1131394]
-- [tools] perf/build: Add 'autodep' functionality, generate feature test dependencies automatically (Jiri Olsa) [1131394]
-- [tools] perf/build: Add feature check core code (Jiri Olsa) [1131394]
-- [tools] perf: standardize feature support define names to HAVE_{FEATURE}_SUPPORT (Jiri Olsa) [1131394]
-- [tools] perf: Add support for record transaction flags (Jiri Olsa) [1131394]
-- [tools] perf/record: Add abort_tx, no_tx, in_tx branch filter options to perf record -j (Jiri Olsa) [1131394]
-- [tools] perf: Support sorting by in_tx or abort branch flags (Jiri Olsa) [1131394]
-- [tools] perf: Fix sorting for 64bit entries (Jiri Olsa) [1131394]
-- [tools] perf: Disable all pmus on unthrottling and rescheduling (Jiri Olsa) [1131394]
-- [x86] perf: Fix constraint table end marker bug (Jiri Olsa) [1131394]
-- [tools] perf: Remove fragile swevent hlist optimization (Jiri Olsa) [1131394]
-- [tools] perf: Factor out strncpy() in perf_event_mmap_event() (Jiri Olsa) [1131394]
-- [tools] perf: Update a stale comment (Jiri Olsa) [1131394]
-- [tools] perf: Optimize perf_output_begin() -- address calculation (Jiri Olsa) [1131394]
-- [tools] perf: Optimize perf_output_begin() -- lost_event case (Jiri Olsa) [1131394]
-- [tools] perf: Optimize perf_output_begin() (Jiri Olsa) [1131394]
-- [tools] perf: Add unlikely() to the ring-buffer code (Jiri Olsa) [1131394]
-- [tools] perf: Simplify the ring-buffer code (Jiri Olsa) [1131394]
-- [tools] perf: Fix the perf context switch optimization (Jiri Olsa) [1131394]
-- [tools] perf: Change zero-padding of strings in perf_event_mmap_event() (Jiri Olsa) [1131394]
-- [tools] perf: Do not waste PAGE_SIZE bytes for ALIGN(8) in perf_event_mmap_event() (Jiri Olsa) [1131394]
-- [tools] perf: Kill the dead !vma->vm_mm code in perf_event_mmap_event() (Jiri Olsa) [1131394]
-- [tools] perf: Remove useless atomic_t (Jiri Olsa) [1131394]
-- [x86] perf: Optimize intel_pmu_pebs_fixup_ip() (Jiri Olsa) [1131394]
-- [x86] perf: Suppress duplicated abort LBR records (Jiri Olsa) [1131394]
-- [x86] perf: Add Haswell specific transaction flag reporting (Jiri Olsa) [1131394]
-- [tools] perf: Add generic transaction flags (Jiri Olsa) [1131394]
-- [tools] perf: Enforce 1 as lower limit for perf_event_max_sample_rate (Jiri Olsa) [1131394]
-- [x86] perf/intel: Fix build warning in intel_pmu_drain_pebs_nhm() (Jiri Olsa) [1131394]
-- [x86] perf/intel: Remove division from the intel_pmu_drain_pebs_nhm() hot path (Jiri Olsa) [1131394]
-- [x86] perf/intel: Clean up EVENT_ATTR_STR() muck (Jiri Olsa) [1131394]
-- [x86] perf/intel: Clean-up/reduce PEBS code (Jiri Olsa) [1131394]
-- [x86] perf/intel: Clean up checkpoint-interrupt bits (Jiri Olsa) [1131394]
-- [x86] perf/intel: Add Haswell TSX event aliases (Jiri Olsa) [1131394]
-- [x86] perf: Report TSX transaction abort cost as weight (Jiri Olsa) [1131394]
-- [x86] perf/intel: Avoid checkpointed counters causing excessive TSX aborts (Jiri Olsa) [1131394]
-
-* Wed Sep 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-154.el7]
-- [scsi] ipr: Add new CCIN definition for Grand Canyon support (Gustavo Duarte) [1088561]
-- [scsi] ipr: Format HCAM overlay ID 0x21 (Gustavo Duarte) [1088561]
-- [scsi] ipr: Handle early EEH (Gustavo Duarte) [1088561]
-- [scsi] ipr: Add new CCIN definition for new hardware support (Gustavo Duarte) [1088561]
-- [scsi] ipr: Remove extended delay bit on GSCSI reads/writes ops (Gustavo Duarte) [1088561]
-- [scsi] ipr: increase dump size in ipr driver (Gustavo Duarte) [1088561]
-- [kernel] trace: Remove function_trace_stop and HAVE_FUNCTION_TRACE_MCOUNT_TEST (Josh Poimboeuf) [1113829]
-- [s390] ftrace: remove check of obsolete variable function_trace_stop (Josh Poimboeuf) [1113829]
-- [x86] ftrace: Remove check of obsolete variable function_trace_stop (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Remove check for HAVE_FUNCTION_TRACE_MCOUNT_TEST (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Remove function_trace_stop check from list func (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Do no disable function tracing on enabling function tracing (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Remove ftrace_start/stop() (Josh Poimboeuf) [1113829]
-- [kernel] ftrace-graph: Remove usage of ftrace_stop() in ftrace_graph_stop() (Josh Poimboeuf) [1113829]
-- [powerpc] kernel/ftrace: Add call to ftrace_graph_is_dead() in function graph code (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Add call to ftrace_graph_is_dead() in function graph code (Josh Poimboeuf) [1113829]
-- [kernel] ftrace-graph: Remove dependency of ftrace_stop() from ftrace_graph_stop() (Josh Poimboeuf) [1113829]
-- [kernel] trace: Remove ftrace_stop/start() from reading the trace file (Josh Poimboeuf) [1113829]
-- [kernel] power: Remove ftrace_stop/start() from suspend and hibernate (Josh Poimboeuf) [1113829]
-- [x86] power/cpu: Annotate restore_processor_state() with notrace (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Move the mcount/fentry code out of entry_64.S (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Load ftrace_ops in parameter not the variable holding it (Josh Poimboeuf) [1113829]
-- [kernel] trace: Remove unused function ftrace_off_permanent() (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: BUG when ftrace recovery fails (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Have ftrace_write() return -EPERM and clean up callers (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: One more missing sync after fixup of function modification failure (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Run a sync after fixup on failure (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: Use breakpoints for converting function graph caller (Josh Poimboeuf) [1113829]
-- [kernel] ftrace: skip over the breakpoint for ftrace caller (Josh Poimboeuf) [1113829]
-- [s390] kprobes: add support for pc-relative long displacement instructions (Hendrik Brueckner) [1123429]
-- [kernel] kprobes: allow to specify custom allocator for insn caches (Hendrik Brueckner) [1123429]
-- [kernel] kprobes: unify insn caches (Hendrik Brueckner) [1123429]
-- [kernel] uprobes: Rename arch_uprobe->def to ->defparam, minor comment updates (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Fix scratch register selection for rip-relative fixups (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Simplify rip-relative handling (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Simplify riprel_{pre,post}_xol() and make them similar (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Kill the "autask" arg of riprel_pre_xol() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Rename *riprel* helpers to make the naming consistent (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Cleanup the usage of UPROBE_FIX_IP/UPROBE_FIX_CALL (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Kill adjust_ret_addr(), simplify UPROBE_FIX_CALL logic (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Introduce push_ret_address() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Cleanup the usage of arch_uprobe->def.fixups, make it u8 (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Move default_xol_ops's data into arch_uprobe->def (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Move UPROBE_FIX_SETF logic from arch_uprobe_post_xol() to default_post_xol_op() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Don't use arch_uprobe_abort_xol() in arch_uprobe_post_xol() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Introduce uprobe_xol_ops->abort() and default_abort_op() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Don't change the task's state if ->pre_xol() fails (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Fix is_64bit_mm() with CONFIG_X86_X32 (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Make good_insns_* depend on CONFIG_X86_* (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Shift "insn_complete" from branch_setup_xol_ops() to uprobe_init_insn() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Add is_64bit_mm(), kill validate_insn_bits() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Add uprobe_init_insn(), kill validate_insn_{32,64}bits() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Refuse to attach uprobe to "word-sized" branch insns (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate relative conditional "near" jmp's (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate relative conditional "short" jmp's (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate relative call's (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate nop's using ops->emulate() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Emulate unconditional relative jmp's (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Introduce sizeof_long(), cleanup adjust_ret_addr() and arch_uretprobe_hijack_return_addr() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Teach arch_uprobe_post_xol() to restart if possible (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Send SIGILL if arch_uprobe_post_xol() fails (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Conditionalize the usage of handle_riprel_insn() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Introduce uprobe_xol_ops and arch_uprobe->ops (Oleg Nesterov) [1073627]
-- [kernel] uprobes: move the UPROBE_FIX_{RIP,IP,CALL} code at the end of pre/post hooks (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Gather "riprel" functions together (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Kill the "ia32_compat" check in handle_riprel_insn(), remove "mm" arg (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Fold prepare_fixups() into arch_uprobe_analyze_insn() (Oleg Nesterov) [1073627]
-- [kernel] uprobes: Kill UPROBE_SKIP_SSTEP and can_skip_sstep() (Oleg Nesterov) [1073627]
-
-* Fri Sep 05 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-153.el7]
-- [ethernet] enic: Add ethtool support to show classifier filters added by the driver (Stefan Assmann) [1107934]
-- [ethernet] enic: remove #ifdef CONFIG_RFS_ACCEL around filter structures (Stefan Assmann) [1107934]
-- [ethernet] enic: fix return values in enic_set_coalesce (Stefan Assmann) [1107934]
-- [ethernet] enic: Make dummy rfs functions inline to fix !CONFIG_RFS_ACCEL build (Stefan Assmann) [1107934]
-- [ethernet] enic: do tx cleanup in napi poll (Stefan Assmann) [1107934]
-- [ethernet] enic: add low latency socket busy_poll support (Stefan Assmann) [1107934]
-- [ethernet] enic: fix lockdep around devcmd_lock (Stefan Assmann) [1107934]
-- [ethernet] enic: Add Accelerated RFS support (Stefan Assmann) [1107934]
-- [net] Add skb_get_hash_raw (Stefan Assmann) [1107934]
-- [net] flow_keys: Record IP layer protocol in skb_flow_dissect() (Stefan Assmann) [1107934]
-- [ethernet] enic: alloc/free rx_cpu_rmap (Stefan Assmann) [1107934]
-- [ethernet] enic: devcmd for adding IP 5 tuple hardware filters (Stefan Assmann) [1107934]
-- [ethernet] enic: fix return value in _vnic_dev_cmd (Stefan Assmann) [1107934]
-- [ethernet] enic: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Stefan Assmann) [1107934]
-- [ethernet] enic: Fix 64 bit divide on 32bit system (Stefan Assmann) [1107934]
-- [ethernet] enic: Add support for adaptive interrupt coalescing (Stefan Assmann) [1107934]
-- [ethernet] enic: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1107934]
-- [ethernet] enic: include irq.h for irqreturn_t definitions (Stefan Assmann) [1107934]
-- [ethernet] enic: Call dev_kfree_skb_any instead of dev_kfree_skb (Stefan Assmann) [1107934]
-- [ethernet] enic: Don't receive packets when the napi budget == 0 (Stefan Assmann) [1107934]
-- [ethernet] enic: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1107934]
-- [ethernet] enic: slight optimization of addr compare (Stefan Assmann) [1107934]
-- [ethernet] enic: cisco-enic calls skb_set_hash (Stefan Assmann) [1107934]
-- [ethernet] enic: remove unnecessary pci_set_drvdata() (Stefan Assmann) [1107934]
-- [ethernet] i40e/i40evf: Bump i40e & i40evf version (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Ignore a driver perceived Tx hang if the number of desc pending < 4 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add max buf len to aq debug print helper (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Remove DEFINE_PCI_DEVICE_TABLE macro use (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Fixed guest OS panic when removing vf driver (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix memory leak on unused interfaces (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't leak queue vectors (Stefan Assmann) [1091127]
-- [ethernet] i40evf: do not re-arm watchdog after remove (Stefan Assmann) [1091127]
-- [ethernet] i40evf: future-proof vfr_stat state check (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix scan warning on sprintf (Stefan Assmann) [1091127]
-- [ethernet] i40e: always print aqtx answer (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: ARQ copy desc data even for failed commands (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't wait so long (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix extension header csum logic (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add nvmupdate support (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Clean up code (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove unnecessary break after goto (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.21 and i40evf to 0.9.40 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add set_fc and init of FC settings (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add new HW link info variable an_enabled and function update_link_info (Stefan Assmann) [1091127]
-- [ethernet] i40evf: invite vector 0 to the interrupt party (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Force a shifted '1' to be unsigned (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't violate scope (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Do not free the dummy packet buffer synchronously (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.19 and i40evf to 0.9.38 (Stefan Assmann) [1091127]
-- [ethernet] i40evf: change branding string (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: initialize context descriptor (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add ASQ write back timeout variable to AQ structure (Stefan Assmann) [1091127]
-- [ethernet] i40evf: set flags before sending message (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: clear aq bah-bal on shutdown (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add base address registers to aq struct (Stefan Assmann) [1091127]
-- [ethernet] i40evf: resend FW request if no response (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix typo (Stefan Assmann) [1091127]
-- [ethernet] i40evf: return more useful error information (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't stop watchdog if it hasn't started (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Big endian fixes for handling HMC (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.17 and i40evf to 0.9.36 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove reserved type (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.13 and i40evf to 0.9.35 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: modify debug prints to avoid seg faults (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Update RSS configuration (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix off-by-one (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Reset Head and Tail on AQ initialization (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: i40e_register.h update (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e to version 0.4.10 and i40evf to 0.9.34 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add Flow director stats to PF stats (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove FTYPE (Stefan Assmann) [1091127]
-- [ethernet] i40evf: check admin queue error bits (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: User ether_addr_copy instead of memcpy (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't go further down (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: AdminQ API update for new FW (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: set headwb Tx context flags and use them (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: bump version to 0.4.7 for i40e and 0.9.31 for i40evf (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add PPRS bit to error bits and fix bug in Rx checksum (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Fix function header (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove deprecated device IDs (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix poll weight (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix TSO accounting (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove chatty reset messages (Stefan Assmann) [1091127]
-- [ethernet] i40evf: use correct format for printing MAC addresses (Stefan Assmann) [1091127]
-- [ethernet] i40evf: clean up log message formatting (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove bogus comment (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove unnecessary log messages (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Clean up a few things (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Fix code to accommodate i40e_register.h changes (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix rx descriptor status (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add Tx pre queue disable function (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: check AQ register for valid data (Stefan Assmann) [1091127]
-- [ethernet] i40evf: make messages less dire (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove rx_errors and rx_missed (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: VEB structure added, GTIME macro update (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix crash when changing ring sizes (Stefan Assmann) [1091127]
-- [ethernet] i40evf: set descriptor multiple to 32 (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove unused RX_LRO define (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't use RESETTING state during reinit (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Change type to u32 to avoid sparse error (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: remove storm control (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Remove reserved PCTYPE defines (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Update check for AQ aliveness (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Use is_multicast_ether_addr helper (Stefan Assmann) [1091127]
-- [ethernet] i40e: remove usless return statements (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: control auto ITR through ethtool (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: set proper default for ITR registers (Stefan Assmann) [1091127]
-- [ethernet] i40evf: make ethtool_ops const (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't lie to ethtool (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Use macro param for ethtool stats (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Fix the headers and update copyright year (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Remove unused defines (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Update AdminQ interface (Stefan Assmann) [1091127]
-- [ethernet] i40evf: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Retrieve and store missing link config information (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove debugging message (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix panic on PF driver fail (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add driver version string to driver version command (Stefan Assmann) [1091127]
-- [ethernet] i40evf: support ethtool RSS options (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: update AdminQ API (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: add tracking to NVM busy state (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: unhide and enable to one prefena field (Stefan Assmann) [1091127]
-- [ethernet] i40evf: program RSS LUT correctly (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove open-coded skb_cow_head (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Remove addressof casts to same type (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: fix error checking path (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add an FD message level (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove double space after return (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix oops in watchdog handler (Stefan Assmann) [1091127]
-- [ethernet] i40evf: clean up init error messages (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't shut down admin queue on error (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Add EEE LPI stats (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: reduce context descriptors (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: enable hardware feature head write back (Stefan Assmann) [1091127]
-- [ethernet] i40evf: use min_t (Stefan Assmann) [1091127]
-- [ethernet] i40evf: correctly program RSS HLUT table (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Rename i40e_ptype_lookup i40evf_ptype_lookup (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Use dma_set_mask_and_coherent (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Use correct number of VF vectors (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Some flow director HW definition fixes (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump pf&vf build versions (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: carefully fill tx ring (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: i40e implementation for skb_set_hash (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Enable the ndo_set_features netdev op (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump driver versions (Stefan Assmann) [1091127]
-- [ethernet] i40e: Change MSIX to MSI-X (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove errant space (Stefan Assmann) [1091127]
-- [ethernet] i40evf: update version and copyright date (Stefan Assmann) [1091127]
-- [ethernet] i40evf: store ring size in ring structs (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't guess device name (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove bogus comment (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix up strings in init task (Stefan Assmann) [1091127]
-- [ethernet] i40evf: get rid of pci_using_dac (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix multiple crashes on remove (Stefan Assmann) [1091127]
-- [ethernet] i40evf: remove VLAN filters on close (Stefan Assmann) [1091127]
-- [ethernet] i40evf: request reset on tx hang (Stefan Assmann) [1091127]
-- [ethernet] i40evf: Remove duplicate include (Stefan Assmann) [1091127]
-- [ethernet] i40evf: refactor reset handling (Stefan Assmann) [1091127]
-- [ethernet] i40evf: change type of flags variable (Stefan Assmann) [1091127]
-- [ethernet] i40evf: don't store unnecessary array of strings (Stefan Assmann) [1091127]
-- [ethernet] i40evf: fix bogus comment (Stefan Assmann) [1091127]
-- [ethernet] i40evf: clean up adapter struct (Stefan Assmann) [1091127]
-- [ethernet] i40evf: trivial fixes (Stefan Assmann) [1091127]
-- [ethernet] i40e: spelling error (Stefan Assmann) [1091127]
-- [ethernet] i40e: Fix device ID define names to align to standard (Stefan Assmann) [1091127]
-- [ethernet] i40e/i40evf: Bump i40e & i40evf version (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Ignore a driver perceived Tx hang if the number of desc pending < 4 (Stefan Assmann) [1091126]
-- [ethernet] i40e: quiet complaints when removing default MAC VLAN filter and make set_mac reversible (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add max buf len to aq debug print helper (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add checks and message for Qualified Module info (Stefan Assmann) [1091126]
-- [ethernet] i40e: set num_queue_pairs to num configured by VF (Stefan Assmann) [1091126]
-- [ethernet] i40e: Enable l2tsel bit for VLAN tag control (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add a FD flush counter to ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e: ATR policy change to flush the table to clean stale ATR rules (Stefan Assmann) [1091126]
-- [ethernet] i40e: Some FD message fixes (Stefan Assmann) [1091126]
-- [ethernet] i40e: Update flow director error messages to reduce user confusion (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix PTP bug (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a few potential VF dereferences (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix for recent kernel panic (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove DEFINE_PCI_DEVICE_TABLE macro use (Stefan Assmann) [1091126]
-- [ethernet] i40e: Cleaning up missing null-terminate in conjunction with strncpy (Stefan Assmann) [1091126]
-- [ethernet] i40e: use correct structure type name in sizeof (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix sparse non static symbol warning (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix missing uapi/linux/dcbnl.h include in i40e_fcoe.c (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove support for vf unicast promiscuous mode (Stefan Assmann) [1091126]
-- [ethernet] i40e: Minor comment changes (Stefan Assmann) [1091126]
-- [ethernet] i40e: disable local loopback on vmdq vsi (Stefan Assmann) [1091126]
-- [ethernet] i40e: use correct vf_id offset for virtchnl message (Stefan Assmann) [1091126]
-- [ethernet] i40e: expose debug_write_register request (Stefan Assmann) [1091126]
-- [ethernet] i40e: adds FCoE to build and updates its documentation (Stefan Assmann) [1091126]
-- [ethernet] i40e: Adds FCoE related code to i40e core driver (Stefan Assmann) [1091126]
-- [ethernet] i40e: adds FCoE code to the i40e driver (Stefan Assmann) [1091126]
-- [ethernet] i40e: always print aqtx answer (Stefan Assmann) [1091126]
-- [ethernet] i40e: Give link more time after setting flow control (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix firmware API version errors (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: ARQ copy desc data even for failed commands (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix extension header csum logic (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add nvmupdate support (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix format mismatch in drivers/net/ethernet/intel/i40e/i40e_debugfs.c (Stefan Assmann) [1091126]
-- [ethernet] i40e: (ptp) warn when PF_ID does not match in PRTTSYN_CTL0 (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Clean up code (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix race conditions on queuing skb for HW time stamp (Stefan Assmann) [1091126]
-- [ethernet] i40e: never generate both software and hardware timestamps (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add ndo_get_phys_port_id() callback support (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove unnecessary break after goto (Stefan Assmann) [1091126]
-- [net] bridge: fdb dumping takes a filter device (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.21 and i40evf to 0.9.40 (Stefan Assmann) [1091126]
-- [ethernet] i40e: Implement set_settings for ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add set_pauseparam to ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add set_fc and init of FC settings (Stefan Assmann) [1091126]
-- [ethernet] i40e: move nway reset (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add new HW link info variable an_enabled and function update_link_info (Stefan Assmann) [1091126]
-- [ethernet] i40e: Finish implementation of ethtool get settings (Stefan Assmann) [1091126]
-- [ethernet] i40e: disable TPH (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a boundary condition and turning off of ntuple (Stefan Assmann) [1091126]
-- [ethernet] i40e: tolerate lost interrupts (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Force a shifted '1' to be unsigned (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Do not free the dummy packet buffer synchronously (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.19 and i40evf to 0.9.38 (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove linux/export.h header from i40e_ptp.c (Stefan Assmann) [1091126]
-- [ethernet] i40e: limit GLLAN_TXPRE_QDIS to QINDX 0-127 (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: initialize context descriptor (Stefan Assmann) [1091126]
-- [ethernet] i40e: FD filter replay logic bug fix (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add ASQ write back timeout variable to AQ structure (Stefan Assmann) [1091126]
-- [ethernet] i40e: Correct mask assignment value (Stefan Assmann) [1091126]
-- [ethernet] i40e: clear all queues and interrupts (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: clear aq bah-bal on shutdown (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add base address registers to aq struct (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix fdir programming (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add debugfs hooks to print current total FD filter count (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix the FD sideband logic to detect a FD table full condition (Stefan Assmann) [1091126]
-- [ethernet] i40e: Avoid adding the TCP-IPv4 filter twice (Stefan Assmann) [1091126]
-- [ethernet] i40e: only create PTP device node once (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't store user requested mode until we've validated it (Stefan Assmann) [1091126]
-- [ethernet] i40e: break PTP hardware control from ioctl command for timestamp mode (Stefan Assmann) [1091126]
-- [ethernet] i40e: rename i40e_ptp_enable to i40e_ptp_feature_enable (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Big endian fixes for handling HMC (Stefan Assmann) [1091126]
-- [ethernet] i40e: do not take NVM ownership for SR read (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.17 and i40evf to 0.9.36 (Stefan Assmann) [1091126]
-- [ethernet] i40e: Bypass timeout recovery level 0 so as to not cause MDD (Stefan Assmann) [1091126]
-- [ethernet] i40e: no pf reset at pci remove (Stefan Assmann) [1091126]
-- [ethernet] i40e: reapply LAA after reset (Stefan Assmann) [1091126]
-- [ethernet] i40e: allow user to set LAA again (Stefan Assmann) [1091126]
-- [ethernet] i40e: use WoL flag when setting LAA (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add ablitity to enable/disable link from set_link_restart_an (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove reserved type (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix ethtool coalesce settings (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix a stray print message (Stefan Assmann) [1091126]
-- [ethernet] i40e: warn on newer/older firmware API rev (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add PF reset when Malicious driver event for PF (Stefan Assmann) [1091126]
-- [ethernet] i40e: make prep_for_reset void (Stefan Assmann) [1091126]
-- [ethernet] i40e: Stop the VF device after setting its MAC address (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to 0.4.13 and i40evf to 0.9.35 (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: modify debug prints to avoid seg faults (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Update RSS configuration (Stefan Assmann) [1091126]
-- [ethernet] i40e: keep service tasks out of reset process (Stefan Assmann) [1091126]
-- [ethernet] i40e: clear VEB stats when pf stats are cleared (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix scheduling while atomic bug during NAPI (Stefan Assmann) [1091126]
-- [ethernet] i40e: debugfs fix to dump remote LLDPDU (Stefan Assmann) [1091126]
-- [ethernet] i40e: Helper routine for Rx/Tx queue enable/disable wait (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix dangling ring pointers upon driver removal (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Reset Head and Tail on AQ initialization (Stefan Assmann) [1091126]
-- [ethernet] i40e: workaround NVM GLQF_HKEY (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: i40e_register.h update (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump i40e to version 0.4.10 and i40evf to 0.9.34 (Stefan Assmann) [1091126]
-- [ethernet] i40e: use stored base_queue value (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a bug in ethtool for FD drop packet filter action (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add Flow director stats to PF stats (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove FTYPE (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: User ether_addr_copy instead of memcpy (Stefan Assmann) [1091126]
-- [net] etherdevice: Use ether_addr_copy to copy an Ethernet address (Stefan Assmann) [1091126]
-- [ethernet] i40e: Do not accept tagged packets by default (Stefan Assmann) [1091126]
-- [ethernet] i40e: Separate out DCB capability and enabled flags (Stefan Assmann) [1091126]
-- [ethernet] i40e: Change the notion of src and dst for FD_SB in ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: AdminQ API update for new FW (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: set headwb Tx context flags and use them (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: bump version to 0.4.7 for i40e and 0.9.31 for i40evf (Stefan Assmann) [1091126]
-- [ethernet] i40e: Allow RSS table entry range and GPS to be any number, not necessarily power of 2 (Stefan Assmann) [1091126]
-- [ethernet] i40e: Delete stale MAC filters after change (Stefan Assmann) [1091126]
-- [ethernet] i40e: Do not fall back to one queue model if the only feature enabled is ATR (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add PPRS bit to error bits and fix bug in Rx checksum (Stefan Assmann) [1091126]
-- [ethernet] i40e: keep SR-IOV enabled in the case that RSS, VMDQ, FD_SB and DCB are disabled (Stefan Assmann) [1091126]
-- [ethernet] i40e: Changes to Interrupt distribution policy (Stefan Assmann) [1091126]
-- [ethernet] i40e: implement anti-spoofing for VFs (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't complain about removing non-existent addresses (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove unused variable and memory allocation (Stefan Assmann) [1091126]
-- [ethernet] i40e: allow for more VSIs (Stefan Assmann) [1091126]
-- [ethernet] i40e: add checks for AQ error status bits (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove deprecated device IDs (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix poll weight (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix TSO accounting (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove chatty reset messages (Stefan Assmann) [1091126]
-- [ethernet] i40e: not all VSIs have rings (Stefan Assmann) [1091126]
-- [ethernet] i40e: clear pxe after adminq is rebuilt (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix incorrect feature configuration status (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Clean up a few things (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Fix code to accommodate i40e_register.h changes (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix rx descriptor status (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove irqs only when they are set up (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't remove HMC that doesn't exist (Stefan Assmann) [1091126]
-- [ethernet] i40e: print full link message (Stefan Assmann) [1091126]
-- [ethernet] i40e: add xcast stats for port (Stefan Assmann) [1091126]
-- [ethernet] i40e: add vsi x-cast stats (Stefan Assmann) [1091126]
-- [ethernet] i40e: increase reset wait time (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add Tx pre queue disable function (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: check AQ register for valid data (Stefan Assmann) [1091126]
-- [ethernet] i40e: print message for pre-production hardware (Stefan Assmann) [1091126]
-- [ethernet] i40e: add VEB stats to ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e: set lan_veb index (Stefan Assmann) [1091126]
-- [ethernet] i40e: add missing VSI statistics (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove rx_errors and rx_missed (Stefan Assmann) [1091126]
-- [ethernet] i40e: refactor stats collection (Stefan Assmann) [1091126]
-- [ethernet] i40e: refactor send version (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: VEB structure added, GTIME macro update (Stefan Assmann) [1091126]
-- [ethernet] i40e: notify VF of all types of resets (Stefan Assmann) [1091126]
-- [ethernet] i40e: clamp jumbo frame size (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove unused RX_LRO define (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove check for large buffer (Stefan Assmann) [1091126]
-- [ethernet] i40e: Rework register diagnostic (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't use OR to check a value (Stefan Assmann) [1091126]
-- [ethernet] i40e: relax the firmware API version check (Stefan Assmann) [1091126]
-- [ethernet] i40e: disable FCoE for MFP modes (Stefan Assmann) [1091126]
-- [ethernet] i40e: add clear_pxe AdminQ request (Stefan Assmann) [1091126]
-- [ethernet] i40e: Clear recovery pending, if reset failed (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Change type to u32 to avoid sparse error (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: remove storm control (Stefan Assmann) [1091126]
-- [ethernet] i40e: Use the new i40e_get_fd_cnt_all function in other places (Stefan Assmann) [1091126]
-- [ethernet] i40e: Report cmd->data in ETHTOOL_GRXCLSRLCNT instead of ETHTOOL_GRXCLSRULE (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Remove reserved PCTYPE defines (Stefan Assmann) [1091126]
-- [ethernet] i40e: Tx/Rx rings declaration (Stefan Assmann) [1091126]
-- [ethernet] i40evf: tweak Tx rate params and de-magic-ify (Stefan Assmann) [1091126]
-- [ethernet] i40evf: don't round Tx rate down to 0 (Stefan Assmann) [1091126]
-- [ethernet] i40e: enable descriptor prefetch for VFs (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Update check for AQ aliveness (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove usless return statements (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix passing wrong error code to i40e_open() (Stefan Assmann) [1091126]
-- [ethernet] i40e: Check PCI_IOV config to avoid compile error (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove Tx work for ptp (Stefan Assmann) [1091126]
-- [ethernet] i40e: Don't disable SR-IOV when VFs are assigned (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove hardcode of stats struct size in ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: control auto ITR through ethtool (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: set proper default for ITR registers (Stefan Assmann) [1091126]
-- [ethernet] i40e: add required include (Stefan Assmann) [1091126]
-- [ethernet] i40e: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build version (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Retrieve and store missing link config information (Stefan Assmann) [1091126]
-- [ethernet] i40e: Update function formal parameters (Stefan Assmann) [1091126]
-- [ethernet] i40e: Do not expose fd-sb commands from debugfs (Stefan Assmann) [1091126]
-- [ethernet] i40e: Do not enable NTUPLE feature control in MFP mode (Stefan Assmann) [1091126]
-- [ethernet] i40e: Change variable type to avoid typecheck failure (Stefan Assmann) [1091126]
-- [ethernet] i40e: Don't stop driver probe when querying DCB config fails (Stefan Assmann) [1091126]
-- [ethernet] i40e: Redistribute queue vectors after DCB reconfiguration (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add driver version string to driver version command (Stefan Assmann) [1091126]
-- [ethernet] i40e: Use port VLAN in MAC/VLAN filter configuration (Stefan Assmann) [1091126]
-- [ethernet] i40e: Retain MAC filters when changing port VLAN (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove ptp_tx_work timestamp work item (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix Timesync Tx interrupt handler code (Stefan Assmann) [1091126]
-- [ethernet] i40e: report VF link state correctly (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091126]
-- [ethernet] i40e: Tweak for-loop in i40e_ethtool.c (Stefan Assmann) [1091126]
-- [ethernet] i40e: Cleanup if/else statements (Stefan Assmann) [1091126]
-- [ethernet] i40e: rework fdir setup and teardown (Stefan Assmann) [1091126]
-- [ethernet] i40e: use generic vsi_open to unquiesce vsi (Stefan Assmann) [1091126]
-- [ethernet] i40e: abstract the close path for better netdev vsis (Stefan Assmann) [1091126]
-- [ethernet] i40e: prep vsi_open logic for non-netdev cases (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: update AdminQ API (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: add tracking to NVM busy state (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix an issue with displaying IPv4 FD filters (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove a FW workaround (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091126]
-- [ethernet] i40e: Enable VF Tx bandwidth setting (Stefan Assmann) [1091126]
-- [ethernet] i40e: Reset the VF upon conflicting VLAN configuration (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: unhide and enable to one prefena field (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add bridge FDB add/del/dump ops (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix message terminations (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix TCP flag replication for hardware offload (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove open-coded skb_cow_head (Stefan Assmann) [1091126]
-- [ethernet] i40e: Mass conversion of smp_mb__*() (Stefan Assmann) [1091126]
-- [powerpc] asm: Convert smp_mb__*() (Stefan Assmann) [1091126]
-- [s390] asm: Convert smp_mb__*() (Stefan Assmann) [1091126]
-- [x86] asm: Convert smp_mb__*() (Stefan Assmann) [1091126]
-- [kernel] sched: Prepare for smp_mb__{before, after}_atomic() (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove casts of pointer to same type (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Remove addressof casts to same type (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: fix error checking path (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix function kernel doc description (Stefan Assmann) [1091126]
-- [ethernet] i40e: Use DEBUG_FD message level for an FD message (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add an FD message level (Stefan Assmann) [1091126]
-- [ethernet] i40e: check for netdev before debugfs use (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add functionality for FD SB to drop packets (Stefan Assmann) [1091126]
-- [ethernet] i40e: Cleanup in FDIR SB ethtool code (Stefan Assmann) [1091126]
-- [ethernet] i40e: eeprom integrity check on load and empr (Stefan Assmann) [1091126]
-- [ethernet] i40e: Make the alloc and free queue vector calls orthogonal (Stefan Assmann) [1091126]
-- [ethernet] i40e: Delete ATR filter on RST (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a message string (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Add EEE LPI stats (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump build versions (Stefan Assmann) [1091126]
-- [ethernet] i40e: potential array underflow in i40e_vc_process_vf_msg() (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: reduce context descriptors (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: enable hardware feature head write back (Stefan Assmann) [1091126]
-- [ethernet] i40e: Refactor and cleanup i40e_open(), adding i40e_vsi_open() (Stefan Assmann) [1091126]
-- [ethernet] i40e: Patch to enable Ethtool/netdev feature flag for NTUPLE control (Stefan Assmann) [1091126]
-- [ethernet] i40e: support VF link state ndo (Stefan Assmann) [1091126]
-- [ethernet] i40e: Avoid double setting of NETIF_F_SG for the HW encapsulation feature mask (Stefan Assmann) [1091126]
-- [ethernet] i40e: Don't receive packets when the napi budget == 0 (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Use dma_set_mask_and_coherent (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Use correct number of VF vectors (Stefan Assmann) [1091126]
-- [ethernet] i40e: Let MDD events be handled by MDD handler (Stefan Assmann) [1091126]
-- [ethernet] i40e: Bug fix for FDIR replay logic (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add code to handle FD table full condition (Stefan Assmann) [1091126]
-- [ethernet] i40e: Define a new state variable to keep track of feature auto disable (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix function comments (Stefan Assmann) [1091126]
-- [ethernet] i40e: simplified init string (Stefan Assmann) [1091126]
-- [ethernet] i40e: cleanup strings (Stefan Assmann) [1091126]
-- [ethernet] i40e: make string references to q be queue (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Some flow director HW definition fixes (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix a bug in the update logic for FDIR SB filter (Stefan Assmann) [1091126]
-- [ethernet] i40e: delete netdev after deleting napi and vectors (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump pf&vf build versions (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: carefully fill tx ring (Stefan Assmann) [1091126]
-- [ethernet] i40e: fix nvm version and remove firmware report (Stefan Assmann) [1091126]
-- [ethernet] i40e: Fix static checker warning (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove a redundant filter addition (Stefan Assmann) [1091126]
-- [ethernet] i40e: count timeout events (Stefan Assmann) [1091126]
-- [ethernet] i40e: Remove a FW workaround for Number of MSIX vectors (Stefan Assmann) [1091126]
-- [ethernet] i40e: clean up comment style (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: i40e implementation for skb_set_hash (Stefan Assmann) [1091126]
-- [ethernet] i40e: Prevent overflow due to kzalloc (Stefan Assmann) [1091126]
-- [ethernet] i40e: Flow Director sideband accounting (Stefan Assmann) [1091126]
-- [ethernet] i40e/i40evf: Bump driver versions (Stefan Assmann) [1091126]
-- [ethernet] i40e: Change MSIX to MSI-X (Stefan Assmann) [1091126]
-- [ethernet] i40e: tighten up ring enable/disable flow (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove unnecessary delay (Stefan Assmann) [1091126]
-- [ethernet] i40e: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1091126]
-- [ethernet] i40e: don't handle VF reset on unload (Stefan Assmann) [1091126]
-- [ethernet] i40e: enable extant VFs (Stefan Assmann) [1091126]
-- [ethernet] i40e: reset VFs after PF reset (Stefan Assmann) [1091126]
-- [ethernet] i40e: set VF state to active when reset is complete (Stefan Assmann) [1091126]
-- [ethernet] i40e: remove dead code (Stefan Assmann) [1091126]
-- [ethernet] i40e: Setting i40e_down bit for tx_timeout (Stefan Assmann) [1091126]
-- [ethernet] i40evf: clean up memsets (Stefan Assmann) [1091126]
-- [ethernet] i40e: bump driver version (Stefan Assmann) [1091126]
-- [ethernet] i40e: spelling error (Stefan Assmann) [1091126]
-- [ethernet] i40e: Add missing braces to i40e_dcb_need_reconfig() (Stefan Assmann) [1091126]
-- [net] sunrpc: get rid of use_gssp_lock ("J. Bruce Fields") [1117914]
-- [net] sunrpc: fix potential race between setting use_gss_proxy and the upcall rpc_clnt ("J. Bruce Fields") [1117914]
-- [net] sunrpc: don't wait for write before allowing reads from use-gss-proxy file ("J. Bruce Fields") [1117914]
-- [net] sunrpc: trim off EC bytes in GSSAPI v2 unwrap ("J. Bruce Fields") [1117914]
-- [net] svcrpc: handle some gssproxy encoding errors ("J. Bruce Fields") [1117914]
-- [net] svcrpc: fix error-handling on badd gssproxy downcall ("J. Bruce Fields") [1117914]
-
-* Thu Sep 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-152.el7]
-- [scsi] scsi_lib: remove the description string in scsi_io_completion() (Maurizio Lombardi) [1045998]
-- [scsi] sd: fix a bug in deriving the FLUSH_TIMEOUT from the basic I/O timeout (Ewan Milne) [1123906]
-- [scsi] scsi_debug: simple short transfer injection (Ewan Milne) [1132100]
-- [scsi] scsi_debug: add ability to enable clustering (Ewan Milne) [1132100]
-- [scsi] scsi_debug: protect device access with atomic_rw lock (Ewan Milne) [1132100]
-- [scsi] scsi_debug: prepare to enable clustering (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix resp_xdwriteread() return value when running out of memory (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix duplicate dif_errors increment (Ewan Milne) [1132100]
-- [scsi] scsi_debug: make pseudo_primary static (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix false positive logical block reference tag check fail (Ewan Milne) [1132100]
-- [scsi] scsi_debug: simplify creation and destruction of driver attribute files (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix sparse warnings related to data integrity field (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix invalid value check for guard module parameter (Ewan Milne) [1132100]
-- [scsi] scsi_debug: avoid partial copying PI from prot_sglist to dif_storep (Ewan Milne) [1132100]
-- [scsi] scsi_debug: factor out copying PI from dif_storep to prot_sglist (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix buffer overrun when DIF/DIX is enabled and virtual_gb > 0 (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix logical block provisioning support when unmap_alignment != 0 (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix do_device_access() with wrap around range (Ewan Milne) [1132100]
-- [scsi] lib/scatterlist: introduce sg_pcopy_from_buffer() and sg_pcopy_to_buffer() (Ewan Milne) [1132100]
-- [scsi] lib/scatterlist: factor out sg_miter_get_next_page() from sg_miter_next() (Ewan Milne) [1132100]
-- [scsi] scsi_debug: reduce duplication between prot_verify_read and prot_verify_write (Ewan Milne) [1132100]
-- [scsi] scsi_debug: simplify offset calculation for dif_storep (Ewan Milne) [1132100]
-- [scsi] scsi_debug: invalidate protection info for unmapped region (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix NULL pointer dereference with parameters dif=0 dix=1 (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix incorrectly nested kmap_atomic() (Ewan Milne) [1132100]
-- [scsi] scsi_debug: fix invalid address passed to kunmap_atomic() (Ewan Milne) [1132100]
-- [scsi] use dev_printk variants where possible (Ewan Milne) [998695]
-- [scsi] use dev_printk() variants for ioctl (Ewan Milne) [998695]
-- [scsi] Implement st_printk() (Ewan Milne) [998695]
-- [scsi] Implement ch_printk() (Ewan Milne) [998695]
-- [scsi] Implement sg_printk() (Ewan Milne) [998695]
-- [scsi] Implement sr_printk() (Ewan Milne) [998695]
-- [scsi] ses: Use vpd information from scsi_device (Ewan Milne) [1132092]
-- [scsi] Add EVPD page 0x83 and 0x80 to sysfs (Ewan Milne) [1132092]
-- [scsi] Return VPD page length in scsi_vpd_inquiry() (Ewan Milne) [1132092]
-- [scsi] Workaround for disks that report bad optimal transfer length (Ewan Milne) [1132092]
-- [scsi] sg: O_EXCL and other lock handling (Ewan Milne) [1132092]
-- [scsi] sg: add SG_FLAG_Q_AT_TAIL flag (Ewan Milne) [1132092]
-- [scsi] sg: relax 16 byte cdb restriction (Ewan Milne) [1132092]
-- [scsi] scsi constants: command, sense key + additional sense strings (Ewan Milne) [1132092]
-- [scsi] scsi_error: disable eh_deadline if no host_reset_handler is set (Ewan Milne) [1132092]
-- [scsi] cleanup switch in scsi_adjust_queue_depth (Ewan Milne) [1132092]
-- [scsi] set correct completion code in scsi_send_eh_cmnd() (Ewan Milne) [1132092]
-- [scsi] Spelling hsot -> host (Ewan Milne) [1132092]
-- [scsi] scsi_sysfs: Implement 'is_visible' callback (Ewan Milne) [1132092]
-- [scsi] export device_busy for sdev (Ewan Milne) [1132092]
-- [scsi] fc: ensure scan_work isn't active when freeing fc_rport (Ewan Milne) [1132092]
-- [scsi] scsi_transport_fc: Add 32Gbps speed definition (Ewan Milne) [1132092]
-- [scsi] sd: bad return code of init_sd (Ewan Milne) [1132092]
-- [scsi] sd: notify block layer when using temporary change to cache_type (Ewan Milne) [1132092]
-- [scsi] sd: medium access timeout counter fails to reset (Ewan Milne) [1101729]
-- [scsi] sd: Quiesce mode sense error messages (Ewan Milne) [1132092]
-- [scsi] sd: Do not call do_div() with a 64-bit divisor (Ewan Milne) [1132092]
-- [scsi] sd: Reduce buffer size for vpd request (Ewan Milne) [1132092]
-- [scsi] sd: avoid deadlocks when running under multipath (Ewan Milne) [1132092]
-- [scsi] st: fix enlarge_buffer (Ewan Milne) [1132092]
-- [scsi] use the scsi data buffer length to extract transfer size (Ewan Milne) [1132092]
-- [scsi] scsi_cmnd: Introduce scsi_transfer_length helper (Ewan Milne) [1132092]
-- [scsi] Add CDB definition for COMPARE_AND_WRITE (Ewan Milne) [1132092]
-
-* Thu Sep 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-151.el7]
-- [md] raid6: avoid data corruption during recovery of double-degraded RAID6 (Jes Sorensen) [1130905]
-- [block] scsi_ioctl: verify return pointer from blk_get_request (Jeff Moyer) [1104324]
-- [pnp] pnpacpi: Fix acpi_pnp_match() (Myron Stowe) [1128632]
-- [pnp] pnpacpi: Do not return errors if _DIS or _SRS are not present (Myron Stowe) [1128632]
-- [acpi] dock: Make 'docked' sysfs attribute work as documented (Myron Stowe) [1128632]
-- [acpi] dock: Use acpi_device_enumerated() to check if dock is present (Myron Stowe) [1128632]
-- [acpi] hotplug: Fix panic on eject to ejected device (Myron Stowe) [1128632]
-- [acpi] scan: Clear match_driver flag in acpi_bus_trim() (Myron Stowe) [1128632]
-- [acpi] scan: Use direct recurrence for device hierarchy walks (Myron Stowe) [1128632]
-- [acpi] Introduce acpi_set_device_status() (Myron Stowe) [1128632]
-- [acpi] hotplug: Drop unfinished global notification handling routines (Myron Stowe) [1128632]
-- [acpi] hotplug: Rework generic code to handle suprise removals (Myron Stowe) [1128632]
-- [acpi] hotplug: Move container-specific code out of the core (Myron Stowe) [1128632]
-- [acpi] hotplug: Make ACPI PCI root hotplug use common hotplug code (Myron Stowe) [1128632]
-- [acpi] hotplug: Introduce common hotplug function acpi_device_hotplug() (Myron Stowe) [1128632]
-- [acpi] hotplug: Do not fail bus and device checks for disabled hotplug (Myron Stowe) [1128632]
-- [acpi] scan: Add acpi_device objects for all device nodes in the namespace (Myron Stowe) [1128632]
-- [acpi] scan: Define non-empty device removal handler (Myron Stowe) [1128632]
-- [acpi] core: Store an ACPI device pointer in struct acpi_dev_node (Myron Stowe) [1128632]
-- [acpi] pm: Drop two functions that are not used any more (Myron Stowe) [1128632]
-- [acpi] power: Drop automaitc resume of power resource dependent devices (Myron Stowe) [1128632]
-- [acpi] Use EXPORT_SYMBOL() for acpi_bus_get_device() (Myron Stowe) [1128632]
-- [acpi] Print diagnostic messages if device links cannot be created (Myron Stowe) [1128632]
-- [acpi] Drop unnecessary label from acpi_bind_one() (Myron Stowe) [1128632]
-- [acpi] Clean up error code path in acpi_unbind_one() (Myron Stowe) [1128632]
-- [acpi] Use list_for_each_entry() in acpi_unbind_one() (Myron Stowe) [1128632]
-- [acpi] acpi_bind_one()/acpi_unbind_one() whitespace cleanups (Myron Stowe) [1128632]
-- [acpi] Create symlinks in acpi_bind_one() under physical_node_lock (Myron Stowe) [1128632]
-- [acpi] Reduce acpi_bind_one()/acpi_unbind_one() code duplication (Myron Stowe) [1128632]
-- [acpi] Do not fail acpi_bind_one() if device is already bound correctly (Myron Stowe) [1128632]
-- [acpi] Move acpi_bus_get_device() from bus.c to scan.c (Myron Stowe) [1128632]
-- [acpi] pm: Use ACPI_STATE_D3_COLD instead of ACPI_STATE_D3 everywhere (Myron Stowe) [1128632]
-- [usb] xhci: convert TRB_CYCLE to le32 before using it to set Link TRB's cycle bit (Steve Best) [1123119]
-- [usb] xhci: fix incorrect type in assignment in handle_device_notification() (Steve Best) [1123119]
-- [input] alps: Rushmore and v7 resolution support (Benjamin Tissoires) [1107819]
-- [input] alps: add support for v7 devices (Benjamin Tissoires) [1107819]
-- [input] alps: cache firmware version (Benjamin Tissoires) [1107819]
-- [input] alps: change decode function prototype to return an int (Benjamin Tissoires) [1107819]
-- [input] alps: report 2 touches when we've > 2 fingers (Benjamin Tissoires) [1107819]
-- [input] alps: add an alps_report_semi_mt_data function (Benjamin Tissoires) [1107819]
-- [input] alps: use single touch data when v3 mt data contains only one finger (Benjamin Tissoires) [1107819]
-- [input] alps: use standard contact tracking instead of DIY (Benjamin Tissoires) [1107819]
-- [input] alps: use struct input_mt_pos to track coordinates (Benjamin Tissoires) [1107819]
-- [input] alps: process_bitmap, round down when spreading adjescent fingers over 2 points (Benjamin Tissoires) [1107819]
-- [input] alps: process_bitmap, fix counting of high point bits (Benjamin Tissoires) [1107819]
-- [input] alps: process_bitmap, add alps_get_bitmap_points() helper function (Benjamin Tissoires) [1107819]
-- [input] alps: process_bitmap, don't invert the Y-axis on Rushmore (Benjamin Tissoires) [1107819]
-- [input] alps: improve 2-finger reporting on v3 models (Benjamin Tissoires) [1107819]
-- [input] alps: fix rushmore packet decoding (Benjamin Tissoires) [1107819]
-- [input] alps: add support for "Dolphin" devices (Benjamin Tissoires) [1107819]
-- [input] alps: add support for DualPoint device on Dell XT2 model (Benjamin Tissoires) [1107819]
-- [input] alps: change secondary device's name (Benjamin Tissoires) [1107819]
-- [tools] turbostat: tweak whitespace in output format (Prarit Bhargava) [1133893]
-- [tools] cpupower: bench/parse.c, Fix several minor errors (Prarit Bhargava) [1133893]
-- [tools] cpupower: Remove redundant error check (Prarit Bhargava) [1133893]
-- [tools] cpupower: mperf monitor, Correct use of ! and & (Prarit Bhargava) [1133893]
-- [tools] cpupower: drop negativity check on unsigned value (Prarit Bhargava) [1133893]
-- [tools] cpupower: Remove mc and smt power aware scheduler info/settings (Prarit Bhargava) [1133893]
-- [tools] cpupower: cpupower info -b should return 0 on success, not the perf bias value (Prarit Bhargava) [1133893]
-- [tools] cpupower: Remove dead link to homepage, and update the targets built (Prarit Bhargava) [1133893]
-- [tools] cpupower: Rename cpufrequtils -> cpupower, and libcpufreq -> libcpupower (Prarit Bhargava) [1133893]
-- [tools] cpupower: If root, try to load msr driver on x86 if /dev/cpu/0/msr is not available (Prarit Bhargava) [1133893]
-- [tools] cpupower: Install recently added cpupower-idle-{set, info} manpages (Prarit Bhargava) [1133893]
-- [tools] cpupower: Remove all manpages on make uninstall (Prarit Bhargava) [1133893]
-- [tools] cpupower: Introduce idle state disable-by-latency and enable-all (Prarit Bhargava) [1133893]
-- [tools] turbostat: Drop temperature checks (Prarit Bhargava) [1133893]
-- [tools] cpufreq: Make linux-pm@vger.kernel.org official mailing list (Prarit Bhargava) [1133893]
-- [tools] turbostat: simplify output, add Avg_MHz (Prarit Bhargava) [1133893]
-- [tools] turbostat: introduce -s to dump counters (Prarit Bhargava) [1133893]
-- [tools] turbostat: remove unused command line option (Prarit Bhargava) [1133893]
-- [tools] turbostat: Add option to report joules consumed per sample (Prarit Bhargava) [1133893]
-- [tools] turbostat: Clean up error handling; disambiguate error messages; use err and errx (Prarit Bhargava) [1133893]
-- [tools] turbostat: Add a .gitignore to ignore the compiled turbostat binary (Prarit Bhargava) [1133893]
-- [tools] turbostat: Factor out common function to open file and exit on failure (Prarit Bhargava) [1133893]
-- [tools] turbostat: Add a helper to parse a single int out of a file (Prarit Bhargava) [1133893]
-- [tools] turbostat: Check return value of fscanf (Prarit Bhargava) [1133893]
-- [tools] turbostat: Don't attempt to printf an off_t with zx (Prarit Bhargava) [1133893]
-- [tools] turbostat: Use GCC's CPUID functions to support PIC (Prarit Bhargava) [1133893]
-- [tools] turbostat: Don't put unprocessed uapi headers in the include path (Prarit Bhargava) [1133893]
-- [tools] cpupower: Fix sscanf robustness in cpufreq-set (Prarit Bhargava) [1133893]
-- [tools] cpupower: Fix segfault due to incorrect getopt_long arugments (Prarit Bhargava) [1133893]
-- [tools] cpupower: fix wrong err msg not supported vs not available (Prarit Bhargava) [1133893]
-- [tools] cpupower: Add cpupower-idle-set(1) manpage (Prarit Bhargava) [1133893]
-- [virt] virtio-scsi: Skip setting affinity on uninitialized vq (Fam Zheng) [1083860]
-- [mm] memcontrol: remove hierarchy restrictions for swappiness and oom_control (Johannes Weiner) [1124110]
-- [mm] thp: fix copy_page_rep GPF by testing is_huge_zero_pmd once only (Rik van Riel) [1123040]
-- [mm] numa: Remove BUG_ON() in __handle_mm_fault() (Rik van Riel) [1119439]
-- [iommu] Add empty stub for iommu_group_get_by_id() (Steve Best) [1123122]
-- [input] Revert: wacom: testing result shows get_report is unnecessary (Aristeu Rozanski) [1079541]
-- [kernel] kexec: fix build error when hugetlbfs is disabled (Baoquan He) [1115240]
-- [kernel] kexec: export free_huge_page to VMCOREINFO (Baoquan He) [1115240]
-- [kernel] kexec: save PG_head_mask in VMCOREINFO (Baoquan He) [1115240]
-- [block] nvme: Fix START_STOP_UNIT Scsi->NVMe translation (David Milburn) [1111259]
-- [block] nvme: Use Log Page constants in SCSI emulation (David Milburn) [1111259]
-- [block] nvme: Define Log Page constants (David Milburn) [1111259]
-- [block] nvme: Fix hot cpu notification dead lock (David Milburn) [1111259]
-- [block] nvme: Rename io_timeout to nvme_io_timeout (David Milburn) [1111259]
-- [block] nvme: Use last bytes of f/w rev SCSI Inquiry (David Milburn) [1111259]
-- [block] nvme: Adhere to request queue block accounting enable/disable (David Milburn) [1111259]
-- [block] nvme: Fix nvme get/put queue semantics (David Milburn) [1111259]
-- [block] nvme: Delete NVME_GET_FEAT_TEMP_THRESH (David Milburn) [1111259]
-- [block] nvme: Make admin timeout a module parameter (David Milburn) [1111259]
-- [block] nvme: Make iod bio timeout a parameter (David Milburn) [1111259]
-- [block] nvme: Prevent possible NULL pointer dereference (David Milburn) [1111259]
-- [block] nvme: Fix the buffer size passed in GetLogPage(CDW10.NUMD) (David Milburn) [1111259]
-- [block] nvme: Update data structures for NVMe 1.2 (David Milburn) [1111259]
-- [block] nvme: Enable BUILD_BUG_ON checks (David Milburn) [1111259]
-- [block] nvme: Update namespace and controller identify structures to the 1.1a spec (David Milburn) [1111259]
-- [block] nvme: Flush with data support (David Milburn) [1111259]
-- [block] nvme: Configure support for block flush (David Milburn) [1111259]
-- [block] nvme: Add tracepoints (David Milburn) [1111259]
-- [block] nvme: Protect against badly formatted CQEs (David Milburn) [1111259]
-- [block] nvme: Improve error messages (David Milburn) [1111259]
-- [block] nvme: Update copyright headers (David Milburn) [1111259]
-- [powerpc] 64bit sendfile is capped at 2GB (Gustavo Duarte) [1107774]
-- [powerpc] sched: stop updating inside arch_update_cpu_topology() when nothing to be update (Gustavo Duarte) [1098372]
-- [firewire] ohci: fix probe failure with Agere/LSI controllers (Neil Horman) [994878]
-- [firewire] ohci: beautify some macro definitions (Neil Horman) [994878]
-- [s390] airq: silence lockdep warning (Hendrik Brueckner) [1088554]
-- [virt] virtio_scsi: don't call virtqueue_add_sgs(... GFP_NOIO) holding spinlock (Hendrik Brueckner) [1088554]
-- [virt] virtio_ccw: introduce device_lost in virtio_ccw_device (Hendrik Brueckner) [1088554]
-- [virt] virtio: virtio_break_device() to mark all virtqueues broken (Hendrik Brueckner) [1088554]
-- [virt] s390/sclp_vt220: Fix kernel panic due to early terminal input (Hendrik Brueckner) [1088554]
-- [virt] virtio: fail adding buffer on broken queues (Hendrik Brueckner) [1088554]
-- [virt] virtio_net: don't crash if virtqueue is broken (Hendrik Brueckner) [1088554]
-- [virt] s390/virtio_ccw: fix hang in set offline processing (Hendrik Brueckner) [1088554]
-- [s390] irq: improve displayed interrupt order in /proc/interrupts (Hendrik Brueckner) [1088554]
-- [virt] virtio-ccw: virtio-ccw adapter interrupt support (Hendrik Brueckner) [1088554]
-- [virt] virtio_ccw: fix vcdev pointer handling issues (Hendrik Brueckner) [1088554]
-- [virt] s390/airq: add support for irq ranges (Hendrik Brueckner) [1088554]
-- [virt] kvm/s390/virtio-ccw: Handle command rejects (Hendrik Brueckner) [1088554]
-- [virt] virtio_scsi: verify if queue is broken after virtqueue_get_buf() (Hendrik Brueckner) [1088554]
-- [virt] virtio_ring: adapt to notify() returning bool (Hendrik Brueckner) [1088554]
-- [virt] virtio_net: verify if queue is broken after virtqueue_get_buf() (Hendrik Brueckner) [1088554]
-- [virt] virtio_blk: verify if queue is broken after virtqueue_get_buf() (Hendrik Brueckner) [1088554]
-- [virt] virtio_ring: add new function virtqueue_is_broken() (Hendrik Brueckner) [1088554]
-- [virt] virtio_ring: let virtqueue_{kick()/notify()} return a bool (Hendrik Brueckner) [1088554]
-- [virt] tools/virtio: fix missing kmemleak_ignore symbol (Hendrik Brueckner) [1088554]
-- [virt] virtio_ring: plug kmemleak false positive (Hendrik Brueckner) [1088554]
-- [mm] page_alloc: do not cache reclaim distances (Larry Woodman) [1120342]
-- [mm] disable zone_reclaim_mode by default (Larry Woodman) [1120342]
-
-* Tue Sep 02 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-150.el7]
-- [net] team: set IFF_TEAM_PORT priv_flag after rx_handler is registered (Jiri Pirko) [1132943]
-- [net] ipv6: fix calculation of option len in ip6_append_data (Hannes Frederic Sowa) [1127218]
-- [net] ipv6: pmtudisc setting not respected with UFO/CORK (Hannes Frederic Sowa) [1127218]
-- [net] ipv4: fix DO and PROBE pmtu mode regarding local fragmentation with UFO/CORK (Hannes Frederic Sowa) [1127218]
-- [net] clear local_df when passing skb between namespaces (Jiri Pirko) [1128223]
-- [net] rtnetlink: fix VF info size (Jiri Benc) [1128267]
-- [net] netfilter: connlimit: move lock array out of struct connlimit_data (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: use rbtree for per-host conntrack obj storage (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: make same_source_net signed (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: use keyed locks (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: use kmem_cache for conn objects (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: move insertion of new element out of count function (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: improve packet-to-closed-connection logic (Florian Westphal) [1052282]
-- [net] netfilter: connlimit: factor hlist search into new function (Florian Westphal) [1052282]
-- [net] ipv6: increase ip6_rt_max_size to 16384 (Hannes Frederic Sowa) [1119364]
-- [net] ipv6: don't count addrconf generated routes against gc limit (Hannes Frederic Sowa) [1119364]
-- [net] tcp: add tcp_syncookies mode to allow unconditionally generation of syncookies (Florian Westphal) [1084439]
-- [net] tcp: syncookies: do not use getnstimeofday() (Florian Westphal) [1084439]
-- [net] tcp: syncookies: reduce mss table to four values (Florian Westphal) [1084439]
-- [net] tcp: syncookies: reduce cookie lifetime to 128 seconds (Florian Westphal) [1084439]
-- [net] sctp: only warn in proc_sctp_do_alpha_beta if write (Daniel Borkmann) [1110290]
-- [net] sctp: check proc_dointvec result in proc_sctp_do_auth (Daniel Borkmann) [1110290]
-- [net] sctp: propagate sysctl errors from proc_do* properly (Daniel Borkmann) [1110290]
-- [net] sctp: fix permissions for rto_alpha and rto_beta knobs (Daniel Borkmann) [1110290]
-- [net] sctp: cache auth_enable per endpoint (Daniel Borkmann) [1110290]
-- [net] sctp: fix a missed .data initialization (Daniel Borkmann) [1110290]
-- [net] sctp: fix up a spacing (Daniel Borkmann) [1110290]
-- [net] sctp: add check rto_min and rto_max in sysctl (Daniel Borkmann) [1110290]
-- [net] Revert: introduce netif_skb_dev_features (Florian Westphal) [1109214]
-- [net] ip: push gso skb forwarding handling down the stack (Florian Westphal) [1109214]
-- [net] ipv6: send pkttoobig immediately if orig frag size > mtu (Florian Westphal) [1109214]
-- [net] ipv4: ip_forward: fix inverted local_df test (Florian Westphal) [1109214]
-- [net] netfilter: ipv4: defrag: set local_df flag on defragmented skb (Florian Westphal) [1109214]
-- [net] don't account for udp header size when computing seglen (Florian Westphal) [1109214]
-
-* Tue Sep 02 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-149.el7]
-- [fs] ext4: fix type declaration of ext4_validate_block_bitmap (Lukas Czerner) [1091055]
-- [fs] ext4: error out if verifying the block bitmap fails (Lukas Czerner) [1091055]
-- [fs] cifs: Fix memory leaks in SMB2_open (Sachin Prabhu) [1082049]
-- [fs] cifs: ensure that vol->username is not NULL before running strlen on it (Sachin Prabhu) [1082049]
-- [fs] cifs: Clarify SMB2/SMB3 create context and add missing ones (Sachin Prabhu) [1082049]
-- [fs] cifs: Do not send ClientGUID on SMB2.02 dialect (Sachin Prabhu) [1082049]
-- [fs] cifs: Set client guid on per connection basis (Sachin Prabhu) [1082049]
-- [fs] cifs/netmisc: convert printk to pr_foo() (Sachin Prabhu) [1082049]
-- [fs] cifs: replace seq_printf by seq_puts (Sachin Prabhu) [1082049]
-- [fs] cifs: Update cifs version number to 2.03 (Sachin Prabhu) [1082049]
-- [fs] cifs: new helper file_inode(file) (Sachin Prabhu) [1082049]
-- [fs] cifs: fix potential races in cifs_revalidate_mapping (Sachin Prabhu) [1082049]
-- [fs] cifs: new helper function: cifs_revalidate_mapping (Sachin Prabhu) [1082049]
-- [fs] cifs: convert booleans in cifsInodeInfo to a flags field (Sachin Prabhu) [1082049]
-- [fs] cifs: fix cifs_uniqueid_to_ino_t not to ever return 0 (Sachin Prabhu) [1082049]
-- [fs] cifs: fix actimeo=0 corner case when cifs_i->time == jiffies (Sachin Prabhu) [1082049]
-- [fs] cifs: fix dead code (Sachin Prabhu) [1082049]
-- [fs] cifs: fix error handling cifs_user_readv (Sachin Prabhu) [1082049]
-- [fs] cifs: remove unused variable (Sachin Prabhu) [1082049]
-- [fs] cifs: Return correct error on query of xattr on file with empty xattrs (Sachin Prabhu) [1082049]
-- [fs] cifs: fix the race in cifs_writev() (Sachin Prabhu) [1082049]
-- [fs] cifs: add __init to cifs_init_inodecache() (Sachin Prabhu) [1082049]
-- [fs] cifs: ->rename() without ->lookup() makes no sense (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix too big maxBuf size for SMB3 mounts (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix cifsacl mounts over smb2 to not call cifs (Sachin Prabhu) [1082049]
-- [fs] cifs: retrieving CIFS ACLs when mounted with SMB2 fails dropping session (Sachin Prabhu) [1082049]
-- [fs] cifs: Add protocol specific operation for CIFS xattrs (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix SMB2 mounts so they don't try to set or get xattrs via cifs (Sachin Prabhu) [1082049]
-- [fs] cifs: Cleanup cifs open codepath (Sachin Prabhu) [1082049]
-- [fs] cifs: Remove extra indentation in cifs_sfu_type (Sachin Prabhu) [1082049]
-- [fs] cifs: Cleanup cifs_mknod (Sachin Prabhu) [1082049]
-- [fs] cifs: Cleanup CIFSSMBOpen (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix memory leak in cifs_hardlink() (Sachin Prabhu) [1082049]
-- [fs] cifs: Add missing end of line termination to some cifs messages (Sachin Prabhu) [1082049]
-- [fs] cifs: Do not use btrfs refcopy ioctl for SMB2 copy offload (Sachin Prabhu) [1082049]
-- [fs] cifs: Check SMB3 dialects against downgrade attacks (Sachin Prabhu) [1082049]
-- [fs] cifs: Removed duplicated (and unneeded) goto (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix SMB2/SMB3 Copy offload support (refcopy) for large files (Sachin Prabhu) [1082049]
-- [fs] cifs: Warn if SMB3 encryption required by server (Sachin Prabhu) [1082049]
-- [fs] cifs: Set copychunk defaults (Sachin Prabhu) [1082049]
-- [fs] cifs: SMB2/SMB3 Copy offload support (refcopy) phase 1 (Sachin Prabhu) [1082049]
-- [fs] cifs: Use data structures to compute NTLMv2 response offsets (Sachin Prabhu) [1082049]
-- [fs] cifs: O_DIRECT opens should work on directio mounts (Sachin Prabhu) [1082049]
-- [fs] cifs: don't spam the logs on unexpected lookup errors (Sachin Prabhu) [1082049]
-- [fs] cifs: change ERRnomem error mapping from ENOMEM to EREMOTEIO (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix symbolic links usage (Sachin Prabhu) [1082049]
-- [fs] cifs: Query network adapter info at mount time for debugging (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix unused variable warning when CIFS POSIX disabled (Sachin Prabhu) [1082049]
-- [fs] cifs: Allow setting per-file compression via CIFS protocol (Sachin Prabhu) [1082049]
-- [fs] cifs: Query File System Alignment (Sachin Prabhu) [1082049]
-- [fs] cifs: Query device characteristics at mount time from server on SMB2/3 not just on cifs mounts (Sachin Prabhu) [1082049]
-- [fs] cifs: Send a logoff request before removing a smb session (Sachin Prabhu) [1082049]
-- [fs] cifs: Make big endian multiplex ID sequences monotonic on the wire (Sachin Prabhu) [1082049]
-- [fs] cifs: Remove redundant multiplex identifier check from check_smb_hdr() (Sachin Prabhu) [1082049]
-- [fs] cifs: Query file system attributes from server on SMB2, not just cifs, mounts (Sachin Prabhu) [1082049]
-- [fs] cifs: Allow setting per-file compression via SMB2/3 (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix corrupt SMB2 ioctl requests (Sachin Prabhu) [1082049]
-- [fs] cifs: rcu-delay unload_nls() and freeing sbi (Sachin Prabhu) [1082049]
-- [fs] cifs: new helper kfree_put_link() (Sachin Prabhu) [1082049]
-- [fs] cifs: ntstatus_to_dos_map[] is not terminated (Sachin Prabhu) [1082049]
-- [fs] cifs: Allow LANMAN auth method for servers supporting unencapsulated authentication methods (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix inability to write files >2GB to SMB2/3 shares (Sachin Prabhu) [1082049]
-- [fs] cifs: Avoid umount hangs with smb2 when server is unresponsive (Sachin Prabhu) [1082049]
-- [fs] cifs: do not treat non-symlink reparse points as valid symlinks (Sachin Prabhu) [1082049]
-- [fs] cifs: update cifs.ko version (Sachin Prabhu) [1082049]
-- [fs] cifs: Provide sane values for nlink (Sachin Prabhu) [1082049]
-- [fs] cifs: FS-Cache: Uncache unread pages in cifs_readpages() before freeing them (Sachin Prabhu) [1082049]
-- [fs] cifs: Avoid calling unlock_page() twice in cifs_readpage() when using fscache (Sachin Prabhu) [1082049]
-- [fs] cifs: Do not take a reference to the page in cifs_readpage_worker() (Sachin Prabhu) [1082049]
-- [fs] cifs: Fix wrong pos argument of cifs_find_lock_conflict (Sachin Prabhu) [1082049]
-
-* Sat Aug 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-148.el7]
-- [ethernet] igbvf: Remove DEFINE_PCI_DEVICE_TABLE macro use (Stefan Assmann) [1091122]
-- [ethernet] igbvf: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Stefan Assmann) [1091122]
-- [ethernet] igbvf: remove usless return statements (Stefan Assmann) [1091122]
-- [ethernet] igbvf: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1091122]
-- [ethernet] igbvf: remove open-coded skb_cow_head (Stefan Assmann) [1091122]
-- [ethernet] igbvf: Convert uses of __constant_<foo> to <foo> (Stefan Assmann) [1091122]
-- [ethernet] igbvf: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1091122]
-- [ethernet] igbvf: slight optimization of addr compare (Stefan Assmann) [1091122]
-- [ethernet] igbvf: add missing iounmap() on error in igbvf_probe() (Stefan Assmann) [1091122]
-- [ethernet] igbvf: integer wrapping bug setting the mtu (Stefan Assmann) [1091122]
-- [ethernet] igbvf: Miscellaneous conversions to ETH_ALEN (Stefan Assmann) [1091122]
-- [ethernet] igbvf: Remove extern from function prototypes (Stefan Assmann) [1091122]
-- [ethernet] igbvf: fix 32-bit DMA mask handling (Stefan Assmann) [1091122]
-- [ethernet] igb: bump igb version to 5.2.13 (Stefan Assmann) [1091121]
-- [ethernet] igb: Add message when malformed packets detected by hw (Stefan Assmann) [1091121]
-- [ethernet] igb: remove unnecessary break after return (Stefan Assmann) [1091121]
-- [ethernet] igb: remove unnecessary break after goto (Stefan Assmann) [1091121]
-- [ethernet] igb: do a reset on SR-IOV re-init if device is down (Stefan Assmann) [1091121]
-- [ethernet] igb: workaround for i210 errata 25, Slow System Clock (Stefan Assmann) [1091121]
-- [ethernet] igb: bring link up when PHY is powered up (Stefan Assmann) [1091121]
-- [ethernet] igb: separate hardware setting from the set_ts_config ioctl (Stefan Assmann) [1091121]
-- [ethernet] igb: Replace 1/0 return values with true/false (Stefan Assmann) [1091121]
-- [ethernet] igb: unhide invariant returns (Stefan Assmann) [1091121]
-- [ethernet] igb: use ethtool_cmd_speed_set helper to set ethtool speed value (Stefan Assmann) [1091121]
-- [ethernet] igb: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate (Stefan Assmann) [1091121]
-- [ethernet] igb: add defaults for i210 TX/RX PBSIZE (Stefan Assmann) [1091121]
-- [ethernet] igb: use mac loopback for i354 backplane (Stefan Assmann) [1091121]
-- [ethernet] igb: rename igb_ptp_enable to igb_ptp_feature_enable (Stefan Assmann) [1091121]
-- [ethernet] igb: remove redundant PHY power down register write (Stefan Assmann) [1091121]
-- [ethernet] igb: remove usless return statements (Stefan Assmann) [1091121]
-- [ethernet] igb: remove return statements for void functions (Stefan Assmann) [1091121]
-- [ethernet] igb: get rid of SET_ETHTOOL_OPS (Stefan Assmann) [1091121]
-- [ethernet] igb: Change memcpy to struct assignment (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to remove unneeded extern declaration (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to replace deprecated DEFINE_PCI_DEVICE_TABLE (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix static initialization (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix msleep warnings (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix line length warnings (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to remove return parentheses (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix missing break in switch statements (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix assignment in if error (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to change comment style on license headers (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix for trailing statement (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix pointer location error (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix incorrect indentation (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups to fix braces location warnings (Stefan Assmann) [1091121]
-- [ethernet] igb: Cleanups for messaging (Stefan Assmann) [1091121]
-- [ethernet] igb: fix message terminations (Stefan Assmann) [1091121]
-- [ethernet] igb: fix stats for i210 rx_fifo_errors (Stefan Assmann) [1091121]
-- [ethernet] igb: fix last_rx_timestamp usage (Stefan Assmann) [1091121]
-- [ethernet] igb: remove open-coded skb_cow_head (Stefan Assmann) [1091121]
-- [ethernet] igb: Convert iounmap to pci_iounmap (Stefan Assmann) [1091121]
-- [ethernet] igb: fix race conditions on queuing skb for HW time stamp (Stefan Assmann) [1091121]
-- [ethernet] igb: never generate both software and hardware timestamps (Stefan Assmann) [1091121]
-- [ethernet] igb: Unset IGB_FLAG_HAS_MSIX-flag when falling back to msi-only (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix Null-pointer dereference in igb_reset_q_vector (Stefan Assmann) [1091121]
-- [ethernet] igb: specify phc_index of 82575 for get_ts_info (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix memory leak in igb_get_module_eeprom() (Stefan Assmann) [1091121]
-- [ethernet] igb: add register rd/wr for surprise removal (Stefan Assmann) [1091121]
-- [ethernet] igb: implement SIOCGHWTSTAMP ioctl (Stefan Assmann) [1091121]
-- [ethernet] igb: Convert uses of __constant_<foo> to <foo> (Stefan Assmann) [1091121]
-- [ethernet] igb: enable VLAN stripping for VMs with i350 (Stefan Assmann) [1091121]
-- [ethernet] igb: Add register defines needed for time sync functions (Stefan Assmann) [1091121]
-- [ethernet] igb: remove references to long gone command line parameters (Stefan Assmann) [1091121]
-- [ethernet] igb: Don't receive packets when the napi budget == 0 (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix code comment (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix for devices using ethtool for EEE settings (Stefan Assmann) [1091121]
-- [ethernet] igb: fix calls to skb_set_hash (Stefan Assmann) [1091121]
-- [ethernet] igb: fix warning if !CONFIG_IGB_HWMON (Stefan Assmann) [1091121]
-- [ethernet] igb: fix array size calculation (Stefan Assmann) [1091121]
-- [ethernet] igb: Update license text to remove FSF address and update copyright (Stefan Assmann) [1091121]
-- [ethernet] igb: make local functions static and remove dead code (Stefan Assmann) [1091121]
-- [ethernet] igb: Use pci_enable_msix_range() instead of pci_enable_msix() (Stefan Assmann) [1091121]
-- [ethernet] igb: Change to use statically allocated array for MSIx entries (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix queue allocation method to accommodate changing during runtime (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix for issue where values could be too high for udelay function (Stefan Assmann) [1091121]
-- [ethernet] igb: Start temperature sensor attribute index with 1 (Stefan Assmann) [1091121]
-- [ethernet] igb: Add new feature Media Auto Sense for 82580 devices only (Stefan Assmann) [1091121]
-- [ethernet] igb: Support ports mapped in 64-bit PCI space (Stefan Assmann) [1091121]
-- [ethernet] igb: Add media switching feature for i354 PHY's (Stefan Assmann) [1091121]
-- [ethernet] igb: Fixed Wake On LAN support (Stefan Assmann) [1091121]
-- [ethernet] igb: Update link modes display in ethtool (Stefan Assmann) [1091121]
-- [ethernet] igb: Explicitly initialize u64_stats_sync structures for lockdep (Stefan Assmann) [1091121]
-- [ethernet] igb: Don't let ethtool try to write to iNVM in i210/i211 (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix master/slave mode for all m88 i354 PHY's (Stefan Assmann) [1091121]
-- [ethernet] igb: Miscellaneous conversions to ETH_ALEN (Stefan Assmann) [1091121]
-- [ethernet] igb: Avoid uninitialized advertised variable in eee_set_cur (Stefan Assmann) [1091121]
-- [ethernet] igb: Add ethtool support to configure number of channels (Stefan Assmann) [1091121]
-- [ethernet] igb: Add ethtool offline tests for i354 (Stefan Assmann) [1091121]
-- [ethernet] igb: Fix ethtool loopback test for 82580 copper (Stefan Assmann) [1091121]
-- [ethernet] igb: Remove extern from function prototypes (Stefan Assmann) [1091121]
-- [ethernet] igb: fix 32-bit DMA mask handling (Stefan Assmann) [1091121]
-- [ethernet] igb: Read flow control for i350 from correct EEPROM section (Stefan Assmann) [1091121]
-- [ethernet] igb: Add additional get_phy_id call for i354 devices (Stefan Assmann) [1091121]
-- [kernel] workqueue: zero cpumask of wq_numa_possible_cpumask on init (Motohiro Kosaki) [1117184]
-- [firmware] memmap: don't allocate firmware_map_entry of same memory range (Motohiro Kosaki) [1117186]
-- [firmware] memmap: pass the correct argument to firmware_map_find_entry_bootmem() (Motohiro Kosaki) [1117186]
-- [cpufreq] acpi-cpufreq: skip loading acpi_cpufreq after intel_pstate (Motohiro Kosaki) [1123250]
-- [x86] mem-hotplug: modify PGD entry when removing memory (Motohiro Kosaki) [1116286]
-- [x86] mem-hotplug: pass sync_global_pgds() a correct argument in remove_pagetable() (Motohiro Kosaki) [1116286]
-- [virt] kvm: increase x86 VCPU limit to 240 (Radim Krcmar) [1061403]
-- [kernel] sched/fair: Rework sched_fair time accounting (Rik van Riel) [1123731]
-- [kernel] math64: Add mul_u64_u32_shr() (Rik van Riel) [1123731]
-
-* Wed Aug 27 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-147.el7]
-- [s390] fix restore of invalid floating-point-control (Hendrik Brueckner) [1121965]
-- [s390] crypto: fix aes_s390 crypto module unload problem (Hendrik Brueckner) [1103114]
-- [x86] avx-512: Enable AVX-512 States Context Switch (Rui Wang) [1085563]
-- [x86] avx-512: AVX-512 Feature Detection (Rui Wang) [1085563]
-- [ethernet] netxen: Remove DEFINE_PCI_DEVICE_TABLE macro use (Veaceslav Falico) [1089356]
-- [ethernet] netxen: slight optimization of addr compare (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Update version to 4.0.82 (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Miscellaneous conversions to ETH_ALEN (Veaceslav Falico) [1089356]
-- [ethernet] netxen: get rid of SET_ETHTOOL_OPS (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Correct off-by-one errors in bounds checks (Veaceslav Falico) [1089356]
-- [ethernet] netxen: remove unnecessary pci_set_drvdata() (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Print ULA information (Veaceslav Falico) [1089356]
-- [ethernet] netxen: lower NAPI weight (Veaceslav Falico) [1089356]
-- [ethernet] netxen: Remove extern from function prototypes (Veaceslav Falico) [1089356]
-- [x86] Mark Intel Broadwell processor as supported (Steve Best) [1089025]
-- [mm] Fix NULL pointer dereference in madvise(MADV_WILLNEED) support (Jan Stancek) [1072385]
-- [hid] logitech-dj: Fix USB 3.0 issue (Benjamin Tissoires) [1110523]
-- [lib] percpu_counter: fix bad percpu counter state during suspend (Eric Sandeen) [1129839]
-- [kernel] user_namespace: fix incorrect memory barriers (Mikulas Patocka) [1128950]
-- [kernel] capabilities: remove undefined caps from all processes (Paul Moore) [1123063]
-- [tty] hvc: don't free hvc_console_setup after init (Luiz Capitulino) [976490]
-- [mfd] lpc_ich: Add Device IDs for Intel Wildcat Point-LP PCH (Steve Best) [1086359]
-- [i2c] i801: Add Device IDs for Intel Wildcat Point-LP PCH (Steve Best) [1086359]
-- [x86] perf: Add model number for Avoton Silvermont (Steve Best) [1086821]
-- [x86] perf: Add Silvermont (22nm Atom) support (Steve Best) [1086821]
-- [x86] perf: use INTEL_UEVENT_EXTRA_REG to define MSR_OFFCORE_RSP_X (Steve Best) [1086821]
-- [virt] hyperv/storvsc: Correctly handle TEST_UNIT_READY failure (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Set srb_flags in all cases (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Implement a eh_timed_out handler (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Fix a bug in handling VMBUS protocol version (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Filter commands based on the storage protocol version (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Set cmd_per_lun to reflect value supported by the Host (Fam Zheng) [1122317]
-- [virt] hyperv/storvsc: Change the limits to reflect the values on the host (Fam Zheng) [1122317]
-- [powerpc] perf: Add BHRB constraint and IFM MMCRA handling for EBB (Gustavo Duarte) [1121408]
-- [powerpc] perf: Reject EBB events which specify a sample_type (Gustavo Duarte) [1121408]
-- [powerpc] perf: Enable BHRB access for EBB events (Gustavo Duarte) [1121408]
-- [powerpc] perf: Avoid mutating event in power8_get_constraint() (Gustavo Duarte) [1121408]
-- [powerpc] perf: Clean up the EBB hash defines a little (Gustavo Duarte) [1121408]
-- [powerpc] mm: Check paca psize is up to date for huge mappings (Gustavo Duarte) [1107337]
-- [powerpc] perf: Add lost exception workaround (Gustavo Duarte) [1121407]
-- [powerpc] Add a cpu feature CPU_FTR_PMAO_BUG (Gustavo Duarte) [1121407]
-
-* Tue Aug 26 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-146.el7]
-- [edac] sb_edac: add support for Haswell based systems (Seth Jennings) [1127019]
-- [edac] add DDR4 and RDDR4 (Seth Jennings) [1127019]
-- [edac] sb_edac: update Kconfig description (Seth Jennings) [1127019]
-- [edac] sb_edac: Fix mix tab/spaces alignments (Seth Jennings) [1127019]
-- [edac] sb_edac: remove bogus assumption on mc ordering (Seth Jennings) [1127019]
-- [edac] sb_edac: make minimal use of channel_mask (Seth Jennings) [1127019]
-- [edac] sb_edac: fix socket detection on Ivy Bridge controllers (Seth Jennings) [1127019]
-- [edac] sb_edac: search devices using product id (Seth Jennings) [1127019]
-- [edac] sb_edac: Degrade log level for device registration (Seth Jennings) [1127019]
-- [edac] sb_edac: make RIR limit retrieval per model (Seth Jennings) [1127019]
-- [edac] sb_edac: make node id retrieval per model (Seth Jennings) [1127019]
-- [edac] sb_edac: make memory type detection per memory controller (Seth Jennings) [1127019]
-- [hwrng] virtio-rng: add derating factor for use by hwrng core (Amit Shah) [1129195]
-- [hwrng] Pass entropy to add_hwgenerator_randomness() in bits, not bytes (Amit Shah) [1129195]
-- [hwrng] hw_random: fix sparse warning (NULL vs 0 for pointer) (Amit Shah) [1129195]
-- [hwrng] add per-device entropy derating (Amit Shah) [1129195]
-- [hwrng] create filler thread (Amit Shah) [1129195]
-- [hwrng] random: add_hwgenerator_randomness() for feeding entropy from devices (Amit Shah) [1129195]
-- [char] Revert: hwrng: virtio - ensure reads happen after successful probe (Amit Shah) [1129195]
-- [char] hwrng: virtio - delay hwrng_register() till driver is ready (Amit Shah) [1119299]
-- [char] hwrng: virtio - re-arrange struct elements for better packing (Amit Shah) [1119299]
-- [char] hwrng: virtio - remove unused struct element (Amit Shah) [1119299]
-- [char] hwrng: virtio - ensure reads happen after successful probe (Amit Shah) [1119299]
-- [char] hwrng: fetch randomness only after device init (Amit Shah) [1119299]
-- [char] hwrng: add randomness to system from rng sources (Amit Shah) [1119299]
-- [char] hwrng: cleanup in hwrng_register() (Amit Shah) [1119299]
-- [virt] virtio/pm: use CONFIG_PM_SLEEP instead of CONFIG_PM (Amit Shah) [1119299]
-- [virt] virtio-rng: fixes for device registration/unregistration (Amos Kong) [915335]
-- [virt] virtio-rng: fix boot with virtio-rng device (Amos Kong) [915335]
-- [virt] virtio-rng: support multiple virtio-rng devices (Amos Kong) [915335]
-- [virt] virtio-rng: don't crash if virtqueue is broken (Amos Kong) [915335]
-- [pci] Fix unaligned access in AF transaction pending test (Myron Stowe) [1110896]
-- [pci] Wrong register used to check pending traffic (Myron Stowe) [1110896]
-- [pci] shpchp: Check bridge's secondary (not primary) bus speed (Myron Stowe) [1110896]
-- [pci] Update maintainer email address (Myron Stowe) [1110896]
-- [powerpc] pci: Fix NULL dereference in sys_pciconfig_iobase() list traversal (Myron Stowe) [1110896]
-- [pci] Log IDE resource quirk in dmesg (Myron Stowe) [1110896]
-- [pci] Change pci_bus_alloc_resource() type_mask to unsigned long (Myron Stowe) [1110896]
-- [pci] Check all IORESOURCE_TYPE_BITS in pci_bus_alloc_from_region() (Myron Stowe) [1110896]
-- [kernel] resources: Set type in __request_region() (Myron Stowe) [1110896]
-- [s390] pci: Use generic pci_enable_resources() (Myron Stowe) [1110896]
-- [pci] Add "weak" generic pcibios_enable_device() implementation (Myron Stowe) [1110896]
-- [pci] Don't enable decoding if BAR hasn't been assigned an address (Myron Stowe) [1110896]
-- [pci] Mark 64-bit resource as IORESOURCE_UNSET if we only support 32-bit (Myron Stowe) [1110896]
-- [pci] Don't try to claim IORESOURCE_UNSET resources (Myron Stowe) [1110896]
-- [pci] Check IORESOURCE_UNSET before updating BAR (Myron Stowe) [1110896]
-- [pci] Don't clear IORESOURCE_UNSET when updating BAR (Myron Stowe) [1110896]
-- [pci] Mark resources as IORESOURCE_UNSET if we can't assign them (Myron Stowe) [1110896]
-- [pci] Remove pci_find_parent_resource() use for allocation (Myron Stowe) [1110896]
-- [lib] vsprintf: Add support for IORESOURCE_UNSET in pR (Myron Stowe) [1110896]
-- [kernel] resource: Add resource_contains() (Myron Stowe) [1110896]
-- [message] i2o: Use pci_bus_alloc_resource(), not allocate_resource() directly (Myron Stowe) [1110896]
-- [message] i2o: Refactor i2o_iop_systab_set() PCI space allocation (Myron Stowe) [1110896]
-- [message] i2o: Fix I/O space alignment requirement (Myron Stowe) [1110896]
-- [message] i2o: Fix I/O space allocation copy/paste error (Myron Stowe) [1110896]
-- [pci] pciehp: Cleanup whitespace (Myron Stowe) [1110896]
-- [pci] pciehp: Remove a non-existent card, regardless of "surprise" capability (Myron Stowe) [1110896]
-- [pci] Remove unused SR-IOV VF Migration support (Myron Stowe) [1110896]
-- [iommu] amd: Add include of <linux/irqreturn.h> (Myron Stowe) [1110896]
-- [misc] mei: Add include of <linux/irqreturn.h> (Myron Stowe) [1110896]
-- [vfio] pci: Use pci_enable_msi_range() and pci_enable_msix_range() (Myron Stowe) [1110896]
-- [ata] ahci: Use pci_enable_msi_range() instead of pci_enable_msi_block() (Myron Stowe) [1110896]
-- [x86] pci: Set IORESOURCE_ROM_SHADOW only for the default VGA device (Myron Stowe) [1110896]
-- [pci] Remove pci_bus_b() and use list_for_each_entry() directly (Myron Stowe) [1110896]
-- [pcmcia] Use list_for_each_entry() for bus traversal (Myron Stowe) [1110896]
-- [powerpc] pci: Use list_for_each_entry() for bus traversal (Myron Stowe) [1110896]
-- [drm] Use list_for_each_entry() for bus traversal (Myron Stowe) [1110896]
-- [pci] hotplug/apci: Use list_for_each_entry() for bus traversal (Myron Stowe) [1110896]
-- [pci] pciehp: Don't turn slot off when hot-added device already exists (Myron Stowe) [1110896]
-- [pci] Cleanup per-arch list of object files (Myron Stowe) [1110896]
-- [pci] hotplug/cpqphp: Fix hex vs decimal typo in cpqhpc_probe() (Myron Stowe) [1110896]
-- [x86] pci: Fix function definition whitespace (Myron Stowe) [1110896]
-- [x86] pci: Reword comments (Myron Stowe) [1110896]
-- [x86] pci: Remove unnecessary local variable initialization (Myron Stowe) [1110896]
-- [pci] Don't scan random busses in pci_scan_bridge() (Myron Stowe) [1110896]
-- [pci] Check for child busses which use more bus numbers than allocated (Myron Stowe) [1110896]
-- [pci] Remove pci_fixup_parent_subordinate_busnr() (Myron Stowe) [1110896]
-- [pci] Make sure bus number resources stay within their parents bounds (Myron Stowe) [1110896]
-- [pci] Use request_resource_conflict() instead of insert_ for bus numbers (Myron Stowe) [1110896]
-- [pci] Assign CardBus bus number only during the second pass (Myron Stowe) [1110896]
-- [pci] Clarify the "scan anyway" comment in pci_scan_bridge() (Myron Stowe) [1110896]
-- [pci] Increment max correctly in pci_scan_bridge() (Myron Stowe) [1110896]
-- [pci] Remove unnecessary list_empty(&pci_pme_list) check (Myron Stowe) [1110896]
-- [acpi] numa: Use __weak, not the gcc-specific version (Myron Stowe) [1110896]
-- [acpi] numa: Make __acpi_map_pxm_to_node(), acpi_get_pxm() static (Myron Stowe) [1110896]
-- [acpi] numa: Simplify acpi_get_node() style (Myron Stowe) [1110896]
-- [acpi] numa: Fix acpi_get_node() prototype (Myron Stowe) [1110896]
-- [x86] pci: Remove acpi_get_pxm() usage (Myron Stowe) [1110896]
-- [x86] pci: Use NUMA_NO_NODE, not -1, for unknown node (Myron Stowe) [1110896]
-- [x86] pci: Remove unnecessary list_empty(&pci_root_infos) check (Myron Stowe) [1110896]
-- [x86] pci: Remove mp_bus_to_node[], set_mp_bus_to_node(), get_mp_bus_to_node() (Myron Stowe) [1110896]
-- [x86] pci: Use x86_pci_root_bus_node() instead of get_mp_bus_to_node() (Myron Stowe) [1110896]
-- [x86] pci: Add x86_pci_root_bus_node() to look up NUMA node from PCI bus (Myron Stowe) [1110896]
-- [x86] pci: Drop return value of pcibios_scan_root() (Myron Stowe) [1110896]
-- [x86] pci: Merge pci_scan_bus_on_node() into pcibios_scan_root() (Myron Stowe) [1110896]
-- [x86] pci: Use pcibios_scan_root() instead of pci_scan_bus_on_node() (Myron Stowe) [1110896]
-- [x86] pci: Use pcibios_scan_root() instead of pci_scan_bus_with_sysdata() (Myron Stowe) [1110896]
-- [x86] pci: Drop pcibios_scan_root() check for bus already scanned (Myron Stowe) [1110896]
-- [ata] ahci: convert ahci_init_interrupts to a static routine (Myron Stowe) [1110896]
-- [acpi] mm: use NUMA_NO_NODE (Myron Stowe) [1110896]
-
-* Tue Aug 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-145.el7]
-- [fs] btrfs: test for valid bdev before kobj removal in btrfs_rm_device (Eric Sandeen) [1071179]
-- [fs] btrfs: fix abnormal long waiting in fsync (Eric Sandeen) [1071179]
-- [fs] btrfs: fix crash when starting transaction (Eric Sandeen) [1071179]
-- [fs] btrfs: fix btrfs_print_leaf for skinny metadata (Eric Sandeen) [1071179]
-- [fs] btrfs: fix race of using total_bytes_pinned (Eric Sandeen) [1071179]
-- [fs] btrfs: use E2BIG instead of EIO if compression does not help (Eric Sandeen) [1071179]
-- [fs] btrfs: remove stale comment from btrfs_flush_all_pending_stuffs (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use-after-free when cloning a trailing file hole (Eric Sandeen) [1071179]
-- [fs] btrfs: fix null pointer dereference in btrfs_show_devname when name is null (Eric Sandeen) [1071179]
-- [fs] btrfs: fix null pointer dereference in clone_fs_devices when name is null (Eric Sandeen) [1071179]
-- [fs] btrfs: fix nossd and ssd_spread mount option regression (Eric Sandeen) [1071179]
-- [fs] btrfs: fix race between balance recovery and root deletion (Eric Sandeen) [1071179]
-- [fs] btrfs: only unlock block in verify_parent_transid if we locked it (Eric Sandeen) [1071179]
-- [fs] btrfs: assert send doesn't attempt to start transactions (Eric Sandeen) [1071179]
-- [fs] btrfs: compression - reuse recently used workspace (Eric Sandeen) [1071179]
-- [fs] btrfs: fix crash when mounting raid5 btrfs with missing disks (Eric Sandeen) [1071179]
-- [fs] btrfs: create sprout should rename fsid on the sysfs as well (Eric Sandeen) [1071179]
-- [fs] btrfs: dev replace should replace the sysfs entry (Eric Sandeen) [1071179]
-- [fs] btrfs: dev add should add its sysfs entry (Eric Sandeen) [1071179]
-- [fs] btrfs: dev delete should remove sysfs entry (Eric Sandeen) [1071179]
-- [fs] btrfs: rename add_device_membership to btrfs_kobj_add_device (Eric Sandeen) [1071179]
-- [fs] btrfs: fix deadlock when mounting a degraded fs (Eric Sandeen) [1071179]
-- [fs] btrfs: fix NULL pointer crash when running balance and scrub concurrently (Eric Sandeen) [1071179]
-- [fs] btrfs: Skip scrubbing removed chunks to avoid -ENOENT (Eric Sandeen) [1071179]
-- [fs] btrfs: fix broken free space cache after the system crashed (Eric Sandeen) [1071179]
-- [fs] btrfs: make free space cache write out functions more readable (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused wait queue in struct extent_buffer (Eric Sandeen) [1071179]
-- [fs] btrfs: fix deadlocks with trylock on tree nodes (Eric Sandeen) [1071179]
-- [fs] btrfs: fix error handling in create_pending_snapshot (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use of uninit "ret" in end_extent_writepage() (Eric Sandeen) [1071179]
-- [fs] btrfs: free ulist in qgroup_shared_accounting() error path (Eric Sandeen) [1071179]
-- [fs] btrfs: fix qgroups sanity test crash or hang (Eric Sandeen) [1071179]
-- [fs] btrfs: prevent RCU warning when dereferencing radix tree slot (Eric Sandeen) [1071179]
-- [fs] btrfs: fix unfinished readahead thread for raid5/6 degraded mounting (Eric Sandeen) [1071179]
-- [fs] btrfs: new ioctl TREE_SEARCH_V2 (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search, search_ioctl: direct copy to userspace (Eric Sandeen) [1071179]
-- [fs] btrfs: new function read_extent_buffer_to_user (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search, copy_to_sk: return needed size on EOVERFLOW (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search, copy_to_sk: return EOVERFLOW for too small buffer (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search, search_ioctl: accept varying buffer (Eric Sandeen) [1071179]
-- [fs] btrfs: tree_search: eliminate redundant nr_items check (Eric Sandeen) [1071179]
-- [fs] btrfs: fix scrub_print_warning to handle skinny metadata extents (Eric Sandeen) [1071179]
-- [fs] btrfs: make fsync work after cloning into a file (Eric Sandeen) [1071179]
-- [fs] btrfs: use right type to get real comparison (Eric Sandeen) [1071179]
-- [fs] btrfs: don't check nodes for extent items (Eric Sandeen) [1071179]
-- [fs] btrfs: don't release invalid page in btrfs_page_exists_in_range() (Eric Sandeen) [1071179]
-- [fs] btrfs: make sure we retry if page is a retriable exception (Eric Sandeen) [1071179]
-- [fs] btrfs: make sure we retry if we couldn't get the page (Eric Sandeen) [1071179]
-- [fs] btrfs: replace EINVAL with EOPNOTSUPP for dev_replace raid56 (Eric Sandeen) [1071179]
-- [fs] btrfs: ioctl - fix typo s/substract/subtract/ (Eric Sandeen) [1071179]
-- [fs] btrfs: fix leaf corruption after __btrfs_drop_extents (Eric Sandeen) [1071179]
-- [fs] btrfs: ensure btrfs_prev_leaf doesn't miss 1 item (Eric Sandeen) [1071179]
-- [fs] btrfs: fix clone to deal with holes when NO_HOLES feature is enabled (Eric Sandeen) [1071179]
-- [fs] btrfs: free delayed node outside of root->inode_lock (Eric Sandeen) [1071179]
-- [fs] btrfs: replace EINVAL with ERANGE for resize when ULLONG_MAX (Eric Sandeen) [1071179]
-- [fs] btrfs: fix transaction leak during fsync call (Eric Sandeen) [1071179]
-- [fs] btrfs: Avoid truncating page or punching hole in a already existed hole (Eric Sandeen) [1071179]
-- [fs] btrfs: update commit root on snapshot creation after orphan cleanup (Eric Sandeen) [1071179]
-- [fs] btrfs: ioctl, don't re-lock extent range when not necessary (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid visiting all extent items when cloning a range (Eric Sandeen) [1071179]
-- [fs] btrfs: set dead flag on the right root when destroying snapshot (Eric Sandeen) [1071179]
-- [fs] btrfs: ensure readers see new data after a clone operation (Eric Sandeen) [1071179]
-- [fs] btrfs: volumes - Fix for possible null pointer dereference (Eric Sandeen) [1071179]
-- [fs] btrfs: allocate raid type kobjects dynamically (Eric Sandeen) [1071179]
-- [fs] btrfs: send, use the right limits for xattr names and values (Eric Sandeen) [1071179]
-- [fs] btrfs: send, don't error in the presence of subvols/snapshots (Eric Sandeen) [1071179]
-- [fs] btrfs: async delayed refs (Eric Sandeen) [1071179]
-- [fs] btrfs: split up __extent_writepage to lower stack usage (Eric Sandeen) [1071179]
-- [fs] btrfs: Drop EXTENT_UPTODATE check in hole punching and direct locking (Eric Sandeen) [1071179]
-- [fs] btrfs: cut down stack usage in btree_write_cache_pages (Eric Sandeen) [1071179]
-- [fs] btrfs: break up __btrfs_write_out_cache to cut down stack usage (Eric Sandeen) [1071179]
-- [fs] btrfs: free tmp ulist for qgroup rescan (Eric Sandeen) [1071179]
-- [fs] btrfs: usage error should not be logged into system log (Eric Sandeen) [1071179]
-- [fs] btrfs: remove newline from inode cache kthread name (Eric Sandeen) [1071179]
-- [fs] btrfs: remove stale newlines from log messages (Eric Sandeen) [1071179]
-- [fs] btrfs: fix double free in find_lock_delalloc_range (Eric Sandeen) [1071179]
-- [fs] btrfs: replace simple_strtoull() with kstrtoull() (Eric Sandeen) [1071179]
-- [fs] btrfs: set right total device count for seeding support (Eric Sandeen) [1071179]
-- [fs] btrfs: remove OPT_acl parse when acl disabled (Eric Sandeen) [1071179]
-- [fs] btrfs: add sanity tests for new qgroup accounting code (Eric Sandeen) [1071179]
-- [fs] btrfs: rework qgroup accounting (Eric Sandeen) [1071179]
-- [fs] btrfs: mark mapping with error flag to report errors to userspace (Eric Sandeen) [1071179]
-- [fs] btrfs: fix NULL pointer crash of deleting a seed device (Eric Sandeen) [1071179]
-- [fs] btrfs: fix joining same transaction handle more than twice (Eric Sandeen) [1071179]
-- [fs] btrfs: use helpers for last_trans_log_full_commit instead of opencode (Eric Sandeen) [1071179]
-- [fs] btrfs: check if items are ordered when a leaf is marked dirty (Eric Sandeen) [1071179]
-- [fs] btrfs: don't access non-existent key when csum tree is empty (Eric Sandeen) [1071179]
-- [fs] btrfs: make sure there are not any read requests before stopping workers (Eric Sandeen) [1071179]
-- [fs] btrfs: fix possible memory leak in btrfs_create_tree() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove useless ACL check (Eric Sandeen) [1071179]
-- [fs] btrfs: btrfs_rm_device() should zero mirror SB as well (Eric Sandeen) [1071179]
-- [fs] btrfs: use bitfield instead of integer data type for the some variants in btrfs_root (Eric Sandeen) [1071179]
-- [fs] btrfs: send, fix more issues related to directory renames (Eric Sandeen) [1071179]
-- [fs] btrfs: send, remove dead code from __get_cur_name_and_parent (Eric Sandeen) [1071179]
-- [fs] btrfs: send, account for orphan directories when building path strings (Eric Sandeen) [1071179]
-- [fs] btrfs: send, avoid unnecessary inode item lookup in the btree (Eric Sandeen) [1071179]
-- [fs] btrfs: add dev maxs limit for __btrfs_alloc_chunk in kernel space (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong max system array size check in kernel space (Eric Sandeen) [1071179]
-- [fs] btrfs: Add check to avoid cleanup roots already in fs_info->dead_roots (Eric Sandeen) [1071179]
-- [fs] btrfs: reclaim the reserved metadata space at background (Eric Sandeen) [1071179]
-- [fs] btrfs: output warning instead of error when loading free space cache failed (Eric Sandeen) [1071179]
-- [fs] btrfs: Add ctime/mtime update for btrfs device add/remove (Eric Sandeen) [1071179]
-- [fs] btrfs: assert that send is not in progres before root deletion (Eric Sandeen) [1071179]
-- [fs] btrfs: protect snapshots from deleting during send (Eric Sandeen) [1071179]
-- [fs] btrfs: remove redundant null check in btrfs_dentry_release() (Eric Sandeen) [1071179]
-- [fs] btrfs: make FS_INFO ioctl available to anyone (Eric Sandeen) [1071179]
-- [fs] btrfs: make DEV_INFO ioctl available to anyone (Eric Sandeen) [1071179]
-- [fs] btrfs: export more from FS_INFO to sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: retrieve more info from FS_INFO ioctl (Eric Sandeen) [1071179]
-- [fs] btrfs: balance filter: add limit of processed chunks (Eric Sandeen) [1071179]
-- [fs] btrfs: fix leaf corruption caused by ENOSPC while hole punching (Eric Sandeen) [1071179]
-- [fs] btrfs: do not increment on bio_index one by one (Eric Sandeen) [1071179]
-- [fs] btrfs: read inode size after acquiring the mutex when punching a hole (Eric Sandeen) [1071179]
-- [fs] btrfs: Remove unnecessary check for NULL (Eric Sandeen) [1071179]
-- [fs] btrfs: fix inline compressed read err corruption (Eric Sandeen) [1071179]
-- [fs] btrfs: return ptr error from compression workspace (Eric Sandeen) [1071179]
-- [fs] btrfs: return errno instead of -1 from compression (Eric Sandeen) [1071179]
-- [fs] btrfs: check_int: propagate out-of-memory error upwards (Eric Sandeen) [1071179]
-- [fs] btrfs: fix hang on error (such as ENOSPC) when writing extent pages (Eric Sandeen) [1071179]
-- [fs] btrfs: send, fix corrupted path strings for long paths (Eric Sandeen) [1071179]
-- [fs] btrfs: send, fix incorrect ref access when using extrefs (Eric Sandeen) [1071179]
-- [fs] btrfs: fix EIO on reading file after ioctl clone works on it (Eric Sandeen) [1071179]
-- [fs] btrfs: limit the path size in send to PATH_MAX (Eric Sandeen) [1071179]
-- [fs] btrfs: correctly set profile flags on seqlock retry (Eric Sandeen) [1071179]
-- [fs] btrfs: use correct key when repeating search for extent item (Eric Sandeen) [1071179]
-- [fs] btrfs: fix inode caching vs tree log (Eric Sandeen) [1071179]
-- [fs] btrfs: fix possible memory leaks in open_ctree() (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid triggering bug_on() when we fail to start inode caching task (Eric Sandeen) [1071179]
-- [fs] btrfs: move btrfs_{set, clear}_and_info() to ctree.h (Eric Sandeen) [1071179]
-- [fs] btrfs: replace error code from btrfs_drop_extents (Eric Sandeen) [1071179]
-- [fs] btrfs: Change the hole range to a more accurate value (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use-after-free in mount_subvol() (Eric Sandeen) [1071179]
-- [fs] btrfs: fix compile warnings on on avr32 platform (Eric Sandeen) [1071179]
-- [fs] btrfs: allow mounting btrfs subvolumes with different ro/rw options (Eric Sandeen) [1071179]
-- [fs] btrfs: export global block reserve size as space_info (Eric Sandeen) [1071179]
-- [fs] btrfs: fix crash in remount(thread_pool=) case (Eric Sandeen) [1071179]
-- [fs] btrfs: abort the transaction when we don't find our extent ref (Eric Sandeen) [1071179]
-- [fs] btrfs: fix EINVAL checks in btrfs_clone (Eric Sandeen) [1071179]
-- [fs] btrfs: fix unlock in __start_delalloc_inodes() (Eric Sandeen) [1071179]
-- [fs] btrfs: scrub raid56 stripes in the right way (Eric Sandeen) [1071179]
-- [fs] btrfs: don't compress for a small write (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient io tree navigation on wait_extent_bit (Eric Sandeen) [1071179]
-- [fs] btrfs: send, build path string only once in send_hole (Eric Sandeen) [1071179]
-- [fs] btrfs: filter invalid arg for btrfs resize (Eric Sandeen) [1071179]
-- [fs] btrfs: send, fix data corruption due to incorrect hole detection (Eric Sandeen) [1071179]
-- [fs] btrfs: kmalloc() doesn't return an ERR_PTR (Eric Sandeen) [1071179]
-- [fs] btrfs: fix snapshot vs nocow writting (Eric Sandeen) [1071179]
-- [fs] btrfs: Change the expanding write sequence to fix snapshot related bug (Eric Sandeen) [1071179]
-- [fs] btrfs: make device scan less noisy (Eric Sandeen) [1071179]
-- [fs] btrfs: fix lockdep warning with reclaim lock inversion (Eric Sandeen) [1071179]
-- [fs] btrfs: hold the commit_root_sem when getting the commit root during send (Eric Sandeen) [1071179]
-- [fs] btrfs: remove transaction from send (Eric Sandeen) [1071179]
-- [fs] btrfs: don't clear uptodate if the eb is under IO (Eric Sandeen) [1071179]
-- [fs] btrfs: check for an extent_op on the locked ref (Eric Sandeen) [1071179]
-- [fs] btrfs: do not reset last_snapshot after relocation (Eric Sandeen) [1071179]
-- [fs] btrfs: fix a crash of clone with inline extents's split (Eric Sandeen) [1071179]
-- [fs] btrfs: fix uninit variable warning (Eric Sandeen) [1071179]
-- [fs] btrfs: take into account total references when doing backref lookup (Eric Sandeen) [1071179]
-- [fs] btrfs: part 2, fix incremental send's decision to delay a dir move/rename (Eric Sandeen) [1071179]
-- [fs] btrfs: fix incremental send's decision to delay a dir move/rename (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary inode generation lookup in send (Eric Sandeen) [1071179]
-- [fs] btrfs: fix race when updating existing ref head (Eric Sandeen) [1071179]
-- [fs] btrfs: Add trace for btrfs_workqueue alloc/destroy (Eric Sandeen) [1071179]
-- [fs] btrfs: less fs tree lock contention when using autodefrag (Eric Sandeen) [1071179]
-- [fs] btrfs: return EPERM when deleting a default subvolume (Eric Sandeen) [1071179]
-- [fs] btrfs: add missing kfree in btrfs_destroy_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: cache extent states in defrag code path (Eric Sandeen) [1071179]
-- [fs] btrfs: fix deadlock with nested trans handles (Eric Sandeen) [1071179]
-- [fs] btrfs: fix possible empty list access when flushing the delalloc inodes (Eric Sandeen) [1071179]
-- [fs] btrfs: split the global ordered extents mutex (Eric Sandeen) [1071179]
-- [fs] btrfs: don't flush all delalloc inodes when we doesn't get s_umount lock (Eric Sandeen) [1071179]
-- [fs] btrfs: reclaim delalloc metadata more aggressively (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary lock in may_commit_transaction() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove the unnecessary flush when preparing the pages (Eric Sandeen) [1071179]
-- [fs] btrfs: just do dirty page flush for the inode with compression before direct IO (Eric Sandeen) [1071179]
-- [fs] btrfs: wake up the tasks that wait for the io earlier (Eric Sandeen) [1071179]
-- [fs] btrfs: fix early enospc due to the race of the two ordered extent wait (Eric Sandeen) [1071179]
-- [fs] btrfs: introduce btrfs_{start, end}_nocow_write() for each subvolume (Eric Sandeen) [1071179]
-- [fs] btrfs: Add ftrace for btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the btrfs_workqueue related function type (Eric Sandeen) [1071179]
-- [fs] btrfs: add readahead for send_write (Eric Sandeen) [1071179]
-- [fs] btrfs: share the same code for __record_{new, deleted}_ref (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid unnecessary utimes update in incremental send (Eric Sandeen) [1071179]
-- [fs] btrfs: make defrag not fragment files when using prealloc extents (Eric Sandeen) [1071179]
-- [fs] btrfs: correctly flush data on defrag when compression is enabled (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the "_struct" suffix in btrfs_workequeue (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the old btrfs_worker (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->scrub_* workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->qgroup_rescan_worker workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->delayed_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->fixup_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->readahead_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->cache_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->rmw_workers workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->endio_* workqueue with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->flush_workers with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->submit_workers with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->delalloc_workers with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Replace fs_info->workers with btrfs_workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Add threshold workqueue based on kernel workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Add high priority workqueue support for btrfs_workqueue_struct (Eric Sandeen) [1071179]
-- [fs] btrfs: Added btrfs_workqueue_struct implemented ordered execution based on kernel workqueue (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the unused struct async_sched (Eric Sandeen) [1071179]
-- [fs] btrfs: skip search tree for REG files (Eric Sandeen) [1071179]
-- [fs] btrfs: fix preallocate vs double nocow write (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong lock range and write size in check_can_nocow() (Eric Sandeen) [1071179]
-- [fs] btrfs: send: simplify allocation code in fs_path_ensure_buf (Eric Sandeen) [1071179]
-- [fs] btrfs: send: fix old buffer length in fs_path_ensure_buf (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient btrfs_drop_extent_cache (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient split extent state insertion (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unneeded field / smaller extent_map structure (Eric Sandeen) [1071179]
-- [fs] btrfs: skip locking when searching commit root (Eric Sandeen) [1071179]
-- [fs] btrfs: wake up @scrub_pause_wait as much as we can (Eric Sandeen) [1071179]
-- [fs] btrfs: cancel scrub on transaction abortion (Eric Sandeen) [1071179]
-- [fs] btrfs: device_replace: fix deadlock for nocow case (Eric Sandeen) [1071179]
-- [fs] btrfs: fix a possible deadlock between scrub and transaction committing (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send issuing outdated paths for utimes, chown and chmod (Eric Sandeen) [1071179]
-- [fs] btrfs: correctly determine if blocks are shared in btrfs_compare_trees (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send attempting to rmdir non-empty directories (Eric Sandeen) [1071179]
-- [fs] btrfs: send, don't send rmdir for same target multiple times (Eric Sandeen) [1071179]
-- [fs] btrfs: incremental send, fix invalid path after dir rename (Eric Sandeen) [1071179]
-- [fs] btrfs: don't insert useless holes when punching beyond the inode's size (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup delayed-ref.c:find_ref_head() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary ref heads rb tree search (Eric Sandeen) [1071179]
-- [fs] btrfs: wake up transaction thread upon remount (Eric Sandeen) [1071179]
-- [fs] btrfs: stop joining the log transaction if sync log fails (Eric Sandeen) [1071179]
-- [fs] btrfs: just wait or commit our own log sub-transaction (Eric Sandeen) [1071179]
-- [fs] btrfs: fix skipped error handle when log sync failed (Eric Sandeen) [1071179]
-- [fs] btrfs: use signed integer instead of unsigned long integer for log transid (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary memory barrier in btrfs_sync_log() (Eric Sandeen) [1071179]
-- [fs] btrfs: don't start the log transaction if the log tree init fails (Eric Sandeen) [1071179]
-- [fs] btrfs: fix the skipped transaction commit during the file sync (Eric Sandeen) [1071179]
-- [fs] btrfs: use ACCESS_ONCE to prevent the optimize accesses to ->last_trans_log_full_commit (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid warning bomb of btrfs_invalidate_inodes (Eric Sandeen) [1071179]
-- [fs] btrfs: fix possible deadlock in btrfs_cleanup_transaction (Eric Sandeen) [1071179]
-- [fs] btrfs: faster/more efficient insertion of file extent items (Eric Sandeen) [1071179]
-- [fs] btrfs: always choose work from prio_head first (Eric Sandeen) [1071179]
-- [fs] Revert: btrfs: remove transaction from btrfs send (Eric Sandeen) [1071179]
-- [fs] btrfs: skip readonly root for snapshot-aware defragment (Eric Sandeen) [1071179]
-- [fs] btrfs: switch to btrfs_previous_extent_item() (Eric Sandeen) [1071179]
-- [fs] btrfs: skip submitting barrier for missing device (Eric Sandeen) [1071179]
-- [fs] btrfs: unlock extent and pages on error in cow_file_range (Eric Sandeen) [1071179]
-- [fs] btrfs: balance delayed inode updates (Eric Sandeen) [1071179]
-- [fs] btrfs: add simple debugfs interface (Eric Sandeen) [1071179]
-- [fs] btrfs: send: lower memory requirements in common case (Eric Sandeen) [1071179]
-- [fs] btrfs: make some tree searches in send.c more efficient (Eric Sandeen) [1071179]
-- [fs] btrfs: use right extent item position in send when finding extent clones (Eric Sandeen) [1071179]
-- [fs] btrfs: send: remove BUG_ON from name_cache_delete (Eric Sandeen) [1071179]
-- [fs] btrfs: send: remove BUG from process_all_refs (Eric Sandeen) [1071179]
-- [fs] btrfs: send: squeeze bitfilelds in fs_path (Eric Sandeen) [1071179]
-- [fs] btrfs: send: remove virtual_mem member from fs_path (Eric Sandeen) [1071179]
-- [fs] btrfs: send: remove prepared member from fs_path (Eric Sandeen) [1071179]
-- [fs] btrfs: send: replace check with an assert in gen_unique_name (Eric Sandeen) [1071179]
-- [fs] btrfs: more send support for parent/child dir relationship inversion (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send dealing with file renames and directory moves (Eric Sandeen) [1071179]
-- [fs] btrfs: only add roots if necessary in find_parent_nodes() (Eric Sandeen) [1071179]
-- [fs] btrfs: Fix 32/64-bit problem with BTRFS_SET_RECEIVED_SUBVOL ioctl (Eric Sandeen) [1071179]
-- [fs] btrfs: add missing error check in incremental send (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use-after-free in the finishing procedure of the device replace (Eric Sandeen) [1071179]
-- [fs] btrfs: fix unprotected alloc list insertion during the finishing procedure of replace (Eric Sandeen) [1071179]
-- [fs] btrfs: Return EXDEV for cross file system snapshot (Eric Sandeen) [1071179]
-- [fs] btrfs: don't mix the ordered extents of all files together during logging the inodes (Eric Sandeen) [1071179]
-- [fs] btrfs: use right clone root offset for compressed extents (Eric Sandeen) [1071179]
-- [fs] btrfs: fix null pointer deference at btrfs_sysfs_add_one+0x105 (Eric Sandeen) [1071179]
-- [fs] btrfs: unset DCACHE_DISCONNECTED when mounting default subvol (Eric Sandeen) [1071179]
-- [fs] btrfs: fix max_inline mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: fix a lockdep warning when cleaning up aborted transaction (Eric Sandeen) [1071179]
-- [fs] Revert: btrfs: add ioctl to export size of global metadata reservation (Eric Sandeen) [1071179]
-- [fs] btrfs: fix data corruption when reading/updating compressed extents (Eric Sandeen) [1071179]
-- [fs] btrfs: don't loop forever if we can't run because of the tree mod log (Eric Sandeen) [1071179]
-- [fs] btrfs: reserve no transaction units in btrfs_ioctl_set_features (Eric Sandeen) [1071179]
-- [fs] btrfs: commit transaction after setting label and features (Eric Sandeen) [1071179]
-- [fs] btrfs: fix assert screwup for the pending move stuff (Eric Sandeen) [1071179]
-- [fs] btrfs: use late_initcall instead of module_init (Eric Sandeen) [1071179]
-- [fs] btrfs: use btrfs_crc32c everywhere instead of libcrc32c (Eric Sandeen) [1071179]
-- [fs] btrfs: disable snapshot aware defrag for now (Eric Sandeen) [1071179]
-- [fs] btrfs: fix spin_unlock in check_ref_cleanup (Eric Sandeen) [1071179]
-- [fs] btrfs: setup inode location during btrfs_init_inode_locked (Eric Sandeen) [1071179]
-- [fs] btrfs: don't use ram_bytes for uncompressed inline items (Eric Sandeen) [1071179]
-- [fs] btrfs: fix btrfs_search_slot_for_read backwards iteration (Eric Sandeen) [1071179]
-- [fs] btrfs: do not export ulist functions (Eric Sandeen) [1071179]
-- [fs] btrfs: rework ulist with list+rb_tree (Eric Sandeen) [1071179]
-- [fs] btrfs: fix memory leaks on walking backrefs failure (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send file hole detection leading to data corruption (Eric Sandeen) [1071179]
-- [fs] btrfs: add a reschedule point in btrfs_find_all_roots() (Eric Sandeen) [1071179]
-- [fs] btrfs: make send's file extent item search more efficient (Eric Sandeen) [1071179]
-- [fs] btrfs: fix to catch all errors when resolving indirect ref (Eric Sandeen) [1071179]
-- [fs] btrfs: fix protection between walking backrefs and root deletion (Eric Sandeen) [1071179]
-- [fs] btrfs: fix warning while merging two adjacent extents (Eric Sandeen) [1071179]
-- [fs] btrfs: fix infinite path build loops in incremental send (Eric Sandeen) [1071179]
-- [fs] btrfs: undo sysfs when open_ctree() fails (Eric Sandeen) [1071179]
-- [fs] btrfs: fix snprintf usage by send's gen_unique_name (Eric Sandeen) [1071179]
-- [fs] btrfs: fix defrag 32-bit integer overflow (Eric Sandeen) [1071179]
-- [fs] btrfs: sysfs: list the NO_HOLES feature (Eric Sandeen) [1071179]
-- [fs] btrfs: sysfs: don't show reserved incompat feature (Eric Sandeen) [1071179]
-- [fs] btrfs: call permission checks earlier in ioctls and return EPERM (Eric Sandeen) [1071179]
-- [fs] btrfs: restrict snapshotting to own subvolumes (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong block group in trace during the free space allocation (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup the code of used_block_group in find_free_extent() (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup the redundant code for the block group allocation and init (Eric Sandeen) [1071179]
-- [fs] btrfs: change the members' order of btrfs_space_info structure to reduce the cache miss (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong search path initialization before searching tree root (Eric Sandeen) [1071179]
-- [fs] btrfs: flush the dirty pages of the ordered extent aggressively during logging csum (Eric Sandeen) [1071179]
-- [fs] btrfs: fix transaction abortion when remounting btrfs from RW to RO (Eric Sandeen) [1071179]
-- [fs] btrfs: faster file extent item search in clone ioctl (Eric Sandeen) [1071179]
-- [fs] btrfs: fix extent state leak on transaction abortion (Eric Sandeen) [1071179]
-- [fs] btrfs: Cleanup the btrfs_parse_options for remount (Eric Sandeen) [1071179]
-- [fs] btrfs: Add noinode_cache mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: fix to search previous metadata extent item since skinny metadata (Eric Sandeen) [1071179]
-- [fs] btrfs: fix missing skinny metadata check in scrub_stripe() (Eric Sandeen) [1071179]
-- [fs] btrfs: fix send to not send non-aligned clone operations (Eric Sandeen) [1071179]
-- [fs] btrfs: fix btrfs boot when compiled as built-in (Eric Sandeen) [1071179]
-- [fs] btrfs: unlock inodes in correct order in clone ioctl (Eric Sandeen) [1071179]
-- [fs] btrfs: optimize to remove unnecessary removal with ulist reallocation (Eric Sandeen) [1071179]
-- [fs] btrfs: release subvolume's block_rsv before transaction commit (Eric Sandeen) [1071179]
-- [fs] btrfs: only process as many file extents as there are refs (Eric Sandeen) [1071179]
-- [fs] btrfs: fix qgroup rescan to work with skinny metadata (Eric Sandeen) [1071179]
-- [fs] btrfs: fix extent_from_logical to deal with skinny metadata (Eric Sandeen) [1071179]
-- [fs] btrfs: throttle delayed refs better (Eric Sandeen) [1071179]
-- [fs] btrfs: attach delayed ref updates to delayed ref heads (Eric Sandeen) [1071179]
-- [fs] btrfs: make fsync latency less sucky (Eric Sandeen) [1071179]
-- [fs] btrfs: add support for inode properties (Eric Sandeen) [1071179]
-- [fs] btrfs: faster file extent item replace operations (Eric Sandeen) [1071179]
-- [fs] btrfs: handle EAGAIN case properly in btrfs_drop_snapshot() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary transaction commit before send (Eric Sandeen) [1071179]
-- [fs] btrfs: fix protection between send and root deletion (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong send_in_progress accounting (Eric Sandeen) [1071179]
-- [fs] btrfs: Add treelog mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add datasum mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add datacow mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add acl mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add noflushoncommit mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add noenospc_debug mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add nodiscard mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add noautodefrag mount option (Eric Sandeen) [1071179]
-- [fs] btrfs: Add "barrier" option to support "-o remount, barrier" (Eric Sandeen) [1071179]
-- [fs] btrfs: only fua the first superblock when writting supers (Eric Sandeen) [1071179]
-- [fs] btrfs: return free space to global_rsv as much as possible (Eric Sandeen) [1071179]
-- [fs] btrfs: fix an oops when we fail to relocate tree blocks (Eric Sandeen) [1071179]
-- [fs] btrfs: fix an oops when we fail to merge reloc roots (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused argument from select_reloc_root() (Eric Sandeen) [1071179]
-- [fs] btrfs: reduce btree node locking duration on item update (Eric Sandeen) [1071179]
-- [fs] btrfs: Integer overflow in btrfs_ioctl_resize() (Eric Sandeen) [1071179]
-- [fs] btrfs: stop caching thread if extent_commit_sem is contended (Eric Sandeen) [1071179]
-- [fs] rwsem: add rwsem_is_contended (Eric Sandeen) [1071179]
-- [fs] btrfs: introduce the delayed inode ref deletion for the single link inode (Eric Sandeen) [1071179]
-- [fs] btrfs: use flags instead of the bool variants in delayed node (Eric Sandeen) [1071179]
-- [fs] btrfs: remove btrfs_end_transaction_dmeta() (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup code of btrfs_balance_delayed_items() (Eric Sandeen) [1071179]
-- [fs] btrfs: don't run delayed nodes again after all nodes flush (Eric Sandeen) [1071179]
-- [fs] btrfs: remove residual code in delayed inode async helper (Eric Sandeen) [1071179]
-- [fs] btrfs: convert printk to btrfs_ and fix BTRFS prefix (Eric Sandeen) [1071179]
-- [fs] btrfs: fix tree mod logging (Eric Sandeen) [1071179]
-- [fs] btrfs: check balance of send_in_progress (Eric Sandeen) [1071179]
-- [fs] btrfs: remove transaction from btrfs send (Eric Sandeen) [1071179]
-- [fs] btrfs: fix double initialization of the raid kobject (Eric Sandeen) [1071179]
-- [fs] btrfs: fix a warning when iput a file (Eric Sandeen) [1071179]
-- [fs] btrfs: Check read-only status of roots during send (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused mnt from send_ctx (Eric Sandeen) [1071179]
-- [fs] btrfs: send: clean up dead code (Eric Sandeen) [1071179]
-- [fs] btrfs: fix deadlock when iterating inode refs and running delayed inodes (Eric Sandeen) [1071179]
-- [fs] btrfs: remove dead comments for read_csums() (Eric Sandeen) [1071179]
-- [fs] btrfs: remove field tree_mod_seq_elem from btrfs_fs_info struct (Eric Sandeen) [1071179]
-- [fs] btrfs: fix use of uninitialized err variable (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unnecessary filemap writting and waiting after block group relocation (Eric Sandeen) [1071179]
-- [fs] btrfs: fix error check of btrfs_lookup_dentry() (Eric Sandeen) [1071179]
-- [fs] btrfs: return immediately if tree log mod is not necessary (Eric Sandeen) [1071179]
-- [fs] btrfs: move the extent buffer radix tree into the fs_info (Eric Sandeen) [1071179]
-- [fs] btrfs: use a bit to track if we're in the radix tree (Eric Sandeen) [1071179]
-- [fs] btrfs: deal with io_tree->mapping being NULL (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient push_leaf_right (Eric Sandeen) [1071179]
-- [fs] btrfs: wrap repeated code into scrub_blocked_if_needed() (Eric Sandeen) [1071179]
-- [fs] btrfs: fix wrong super generation mismatch when scrubbing supers (Eric Sandeen) [1071179]
-- [fs] btrfs: fix pass of transid with wrong endianness in send.c (Eric Sandeen) [1071179]
-- [fs] btrfs: fix extent_map block_len after merging (Eric Sandeen) [1071179]
-- [fs] btrfs: remove dead code (Eric Sandeen) [1071179]
-- [fs] btrfs: fix max dir item size calculation (Eric Sandeen) [1071179]
-- [fs] btrfs: more efficient extent state insertions (Eric Sandeen) [1071179]
-- [fs] btrfs: add missing extent state caching calls (Eric Sandeen) [1071179]
-- [fs] btrfs: faster and more efficient extent map insertion (Eric Sandeen) [1071179]
-- [fs] btrfs: fix extent boundary check in bio_readpage_error (Eric Sandeen) [1071179]
-- [fs] btrfs: try harder to avoid btree node splits (Eric Sandeen) [1071179]
-- [fs] btrfs: avoid unnecessary ordered extent cache resets (Eric Sandeen) [1071179]
-- [fs] btrfs: fix leaks during sysfs teardown (Eric Sandeen) [1071179]
-- [fs] btrfs: fix static checker warnings (Eric Sandeen) [1071179]
-- [fs] btrfs: fix very slow inode eviction and fs unmount (Eric Sandeen) [1071179]
-- [fs] btrfs: improve forever loop when doing balance relocation (Eric Sandeen) [1071179]
-- [fs] btrfs: fix ordered extent check in btrfs_punch_hole (Eric Sandeen) [1071179]
-- [fs] btrfs: replace BUG in can_modify_feature (Eric Sandeen) [1071179]
-- [fs] btrfs: reserve no transaction units in btrfs_feature_attr_store (Eric Sandeen) [1071179]
-- [fs] btrfs: make btrfs_debug match pr_debug handling related to DEBUG (Eric Sandeen) [1071179]
-- [fs] btrfs: cleanup: removed unused 'btrfs_get_inode_ref_index' (Eric Sandeen) [1071179]
-- [fs] btrfs: expand btrfs_find_item() to include find_orphan_item functionality (Eric Sandeen) [1071179]
-- [fs] btrfs: expand btrfs_find_item() to include find_root_ref functionality (Eric Sandeen) [1071179]
-- [fs] btrfs: bootstrap generic btrfs_find_item interface (Eric Sandeen) [1071179]
-- [fs] btrfs: fix unused variables in qgroup.c (Eric Sandeen) [1071179]
-- [fs] btrfs: replace path->slots[0] with otherwise unused variable 'slot' (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variable from scrub_fixup_nodatasum (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variable from setup_cluster_no_bitmap (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variables from extent_io.c (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variable from find_free_extent (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variables from disk-io.c (Eric Sandeen) [1071179]
-- [fs] btrfs: remove unused variable from btrfs_new_inode (Eric Sandeen) [1071179]
-- [fs] btrfs: publish fs label in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish device membership in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish allocation data in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: add ioctl to export size of global metadata reservation (Eric Sandeen) [1071179]
-- [fs] btrfs: use feature attribute names to print better error messages (Eric Sandeen) [1071179]
-- [fs] btrfs: add ability to change features via sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish unknown feature bits in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish per-super features in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: publish per-super attributes in sysfs (Eric Sandeen) [1071179]
-- [fs] kobject: export kobj_sysfs_ops (Eric Sandeen) [1071179]
-- [fs] btrfs: publish supported featured in sysfs (Eric Sandeen) [1071179]
-- [fs] btrfs: add ioctls to query/change feature bits online (Eric Sandeen) [1071179]
-- [fs] btrfs: skip merge part for delayed data refs (Eric Sandeen) [1071179]
-- [fs] btrfs: introduce a head ref rbtree (Eric Sandeen) [1071179]
-- [fs] btrfs: fix check-integrity to look at the referenced data properly (Eric Sandeen) [1071179]
-- [fs] btrfs: incompatible format change to remove hole extents (Eric Sandeen) [1071179]
-- [fs] btrfs: sanitize BTRFS_IOC_FILE_EXTENT_SAME (Eric Sandeen) [1071179]
-- [fs] btrfs: fix comments and printk msgs (Eric Sandeen) [1071179]
-- [fs] btrfs: Fix typos in printk (Eric Sandeen) [1071179]
-
-* Tue Aug 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-144.el7]
-- [net] ipv6: Fix MLD Query message check (Jiri Pirko) [1114650]
-- [net] sctp: inherit auth_capable on INIT collisions (Daniel Borkmann) [1123763] {CVE-2014-5077}
-- [net] ipv6: ipv6_find_hdr restore prev functionality (Jesper Brouer) [1074516]
-- [net] ipvs: fix AF assignment in ip_vs_conn_new() (Jesper Brouer) [1074516]
-- [virt] kvm: always exit on EOIs for interrupts listed in the IOAPIC redir table (Alex Williamson) [1126997]
-- [iommu] amd: Fix interrupt remapping for aliased devices (Alex Williamson) [1090139]
-- [pci] Add Patsburg (X79) to Intel PCH root port ACS quirk (Alex Williamson) [1081428]
-- [kernel] time/alarmtimer: Fix bug where relative alarm timers were treated as absolute (Prarit Bhargava) [1124941]
-- [acpi] processor: Fix STARTING/DYING action in acpi_cpu_soft_notify() (Prarit Bhargava) [1099594]
-- [x86] mce_intel: Add raw_lock conversion again (Prarit Bhargava) [1127257]
-- [sound] alsa/control: Don't access controls outside of protected regions (Radomir Vrbovsky) [1117331] {CVE-2014-4653}
-- [kernel] tick: Clear broadcast pending bit when switching to oneshot (Alex Williamson) [1109996]
-- [x86] efi: Do not export efi runtime map in case old map (Dave Young) [1080109]
-- [x86] efi: Quirk out SGI UV (Dave Young) [1080109]
-- [x86] efi: Split efi_enter_virtual_mode (Dave Young) [1080109]
-- [x86] efi: Make efi virtual runtime map passing more robust (Dave Young) [1080109]
-- [x86] mm/pageattr: Export page unmapping interface (Dave Young) [1080109]
-- [x86] efi: Dump the EFI page table (Dave Young) [1080109]
-- [x86] mm/ptdump: Add the functionality to dump an arbitrary pagetable (Dave Young) [1080109]
-- [x86] efi: Style neatening (Dave Young) [1080109]
-- [x86] efi: parse_efi_setup() build fix (Dave Young) [1080109]
-- [x86] ksysfs.c build fix (Dave Young) [1080109]
-- [x86] efi: Delete superfluous global variables (Dave Young) [1080109]
-- [x86] setup: Reserve setup_data ranges late after parsing memmap cmdline (Dave Young) [1080109]
-- [x86] Export x86 boot_params to sysfs (Dave Young) [1080109]
-- [x86] boot: Add xloadflags bit for EFI runtime support on kexec (Dave Young) [1080109]
-- [firmware] efi: Pass necessary EFI data for kexec via setup_data (Dave Young) [1080109]
-- [firmware] efi: Export EFI runtime memory mapping to sysfs (Dave Young) [1080109]
-- [firmware] efi: Export more EFI table variables to sysfs (Dave Young) [1080109]
-- [firmware] efi: Cleanup efi_enter_virtual_mode() function (Dave Young) [1080109]
-- [firmware] efi: Fix off-by-one bug in EFI Boot Services reservation (Dave Young) [1080109]
-- [firmware] efi: Add a wrapper function efi_map_region_fixed() (Dave Young) [1080109]
-- [firmware] efi: Remove unused variables in __map_region() (Dave Young) [1080109]
-- [firmware] efi: Check krealloc return value (Dave Young) [1080109]
-- [firmware] efi: Runtime services virtual mapping (Dave Young) [1080109]
-- [x86] mm/pageattr: Map in an arbitrary pgd (Dave Young) [1080109]
-- [x86] mm/pageattr: Add last levels of error path (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PUD error unwinding path (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PTE pagetable populating function (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PMD pagetable populating function (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PUD pagetable populating function (Dave Young) [1080109]
-- [x86] mm/pageattr: Add a PGD pagetable populating function (Dave Young) [1080109]
-- [x86] mm/pageattr: Lookup address in an arbitrary PGD (Dave Young) [1080109]
-- [firmware] efi: Convert runtime services function ptrs (Dave Young) [1080109]
-- [firmware] efi: Simplify EFI_DEBUG (Dave Young) [1080109]
-- [firmware] efi: Fix config_table_type array termination (Dave Young) [1080109]
-- [firmware] efi: make efi_lookup_mapped_addr() a common function (Dave Young) [1080109]
-- [firmware] efi: provide a generic efi_config_init() (Dave Young) [1080109]
-- [iommu] vt-d: Use list_for_each_entry_safe() for dmar_domain->devices traversa (Myron Stowe) [1127467]
-- [iommu] vt-d: Use for_each_drhd_unit() instead of list_for_each_entry() (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call io_page_fault trace event (Myron Stowe) [1127467]
-- [iommu] Add iommu_error class event to iommu trace (Myron Stowe) [1127467]
-- [iommu] No need to pass '0x' when 'pa' is used (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call unmap trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call map trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call detach_device_to_domain trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call attach_device_to_domain trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call remove_device_to_group trace event (Myron Stowe) [1127467]
-- [iommu] Change iommu driver to call add_device_to_group trace event (Myron Stowe) [1127467]
-- [iommu] Add event tracing feature to iommu (Myron Stowe) [1127467]
-- [iommu] intel: correct ICS register offset (Myron Stowe) [1127467]
-- [Documentation] MAINTAINERS: add overall IOMMU section (Myron Stowe) [1127467]
-- [iommu] amd: Fix resource leak in iommu_init_device() (Myron Stowe) [1127467]
-- [iommu] amd: Clean up unnecessary MSI/MSI-X capability find (Myron Stowe) [1127467]
-- [powerpc] Add iommu domain pointer to device archdata (Myron Stowe) [1127467]
-- [iommu] vt-d: DMAR reporting table needs at least one DRHD (Myron Stowe) [1127467]
-- [iommu] vt-d: Downgrade the warning if enabling irq remapping fails (Myron Stowe) [1127467]
-- [net] l2tp: don't fall back on UDP [get|set]sockopt (Petr  Matousek) [1119466] {CVE-2014-4943}
-- [x86] ptrace: force IRET path after a ptrace_stop() (Oleg Nesterov) [1115935] {CVE-2014-4699}
-- [s390] ptrace: correct insufficient sanitization when setting psw mask (Hendrik Brueckner) [1113673] {CVE-2014-3534}
-
-* Wed Aug 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-143.el7]
-- [virt] kvm/async_pf: kill the unnecessary use_mm/unuse_mm async_pf_execute() (Paolo Bonzini) [1116936]
-- [virt] kvm/async_pf: change async_pf_execute() to use get_user_pages(tsk => NULL) (Paolo Bonzini) [1116936]
-- [virt] kvm: support any-length wildcard ioeventfd (Paolo Bonzini) [1116936]
-- [virt] kvm: return an error code in kvm_vm_ioctl_register_coalesced_mmio() (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: preserve the high 32-bits of the PAT register (Paolo Bonzini) [1116936]
-- [virt] kvm: fix wrong address when writing Hyper-V tsc page (Paolo Bonzini) [1116936]
-- [kernel] sched: Fix signedness bug in yield_to() (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Check for nested events if there is an injectable interrupt (Paolo Bonzini) [1116936]
-- [virt] kvm/svm: Fix CPL export via SS.DPL (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: disable APIC virtualization in nested guests (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Check for host supported fields in shadow vmcs (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: MOV CR/DR emulation should ignore mod (Paolo Bonzini) [1116936]
-- [virt] kvm/lapic: sync highest ISR to hardware apic on EOI (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: get CPL from SS.DPL (Paolo Bonzini) [1078775 1088784 1116936]
-- [virt] kvm/x86: check CS.DPL against RPL during task switch (Paolo Bonzini) [1078775 1088784 1116936]
-- [virt] kvm/x86: drop set_rflags callback (Paolo Bonzini) [1078775 1088784 1116936]
-- [virt] kvm/x86: use new CS.RPL as CPL during task switch (Paolo Bonzini) [1078775 1088784 1116936]
-- [virt] kvm/x86: fix page fault tracing when KVM guest support enabled (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: DR7 masking on task switch emulation is wrong (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix CR3 reserved bits check in long mode (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: emulate monitor and mwait instructions as nop (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: implement hv EOI assist (Paolo Bonzini) [1086663 1116936]
-- [virt] kvm/x86: Mark bit 7 in long-mode PDPTE according to 1GB pages support (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: handle_dr does not handle RSP correctly (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: move vmclear and vmptrld pre-checks to nested_vmx_check_vmptr (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: fail on invalid vmclear/vmptrld pointer (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: additional checks on vmxon region (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: rearrange get_vmx_mem_address (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: improve the usability of the 'kvm_pio' tracepoint (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Processor mode may be determined incorrectly (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: IN instruction emulation should ignore REP-prefix (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix CR3 reserved bits (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix wrong/stuck PMU when guest does not use PMI (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Advertise support for interrupt acknowledgement (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Ack and write vector info to intr_info if L1 asks us to (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Don't advertise single context invalidation for invept (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Advance rip to after an ICEBP instruction (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix CR3 and LDT sel should not be saved in TSS (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: speed up wildcard MMIO EVENTFD (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix page-tables reserved bits (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: remove WARN_ON from get_kernel_ns() (Paolo Bonzini) [1116936]
-- [virt] kvm: Rename variable smep to cr4_smep (Paolo Bonzini) [1084616 1116936]
-- [virt] kvm: expose SMAP feature to guest (Paolo Bonzini) [1084616 1116936]
-- [virt] kvm: Disable SMAP for guests in EPT realmode and EPT unpaging mode (Paolo Bonzini) [1074747 1084616 1116936]
-- [virt] kvm: Add SMAP support when setting CR4 (Paolo Bonzini) [1084616 1116936]
-- [virt] kvm: Remove SMAP bit from CR4_RESERVED_BITS (Paolo Bonzini) [1084616 1116936]
-- [x86] processor-flags: Fix the datatypes and add bit number defines (Paolo Bonzini) [1116936]
-- [kernel] const: Add _BITUL() and _BITULL() (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: fix MPX detection (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: handle missing MPX in nested virtualization (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Add nested virtualization support for MPX (Paolo Bonzini) [1116936]
-- [virt] kvm/svm: Allow the guest to run with dirty debug registers (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/svm: set/clear all DR intercepts in one swoop (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/nvmx: Allow nested guests to run with dirty debug registers (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/vmx: Allow the guest to run with dirty debug registers (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/x86: Allow the guest to run with dirty debug registers (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/x86: change vcpu->arch.switch_db_regs to a bit mask (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/vmx: we do rely on loading DR7 on entry (Paolo Bonzini) [1068627 1116936]
-- [virt] kvm/x86: Remove return code from enable_irq/nmi_window (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Do not inject NMI vmexits when L2 has a pending interrupt (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fully emulate preemption timer (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Rework interception of IRQs and NMIs (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Break kvm_for_each_vcpu loop after finding the VP_INDEX (Paolo Bonzini) [1116936]
-- [x86] cpufeature: Rename X86_FEATURE_CLFLSH to X86_FEATURE_CLFLUSH (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: drop read-only large sptes when creating lower level sptes (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Enable Intel MPX for guest (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: add MSR_IA32_BNDCFGS to msrs_to_save (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: Intel MPX vmx and msr handle (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: introduce kvm_supported_xcr0() (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm: kABI fixup for MPX patches (Paolo Bonzini) [1116936]
-- [x86] xsave: Support eager-only xsave features, add MPX support (Paolo Bonzini) [1076194 1116936]
-- [x86] cpufeature: Define the Intel MPX feature flag (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: Fix xsave cpuid exposing bug (Paolo Bonzini) [1076194 1116936]
-- [virt] kvm/x86: expose ADX feature to guest (Paolo Bonzini) [1084614 1116936]
-- [virt] kvm/x86: expose new instruction RDSEED to guest (Paolo Bonzini) [1084614 1116936]
-- [virt] kvm: remove redundant registration of BSP's hv_clock area (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: remove unused last_kernel_ns variable (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: correctly access the KVM_CPUID_FEATURES leaf at 0x40000101 (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: cache the base of the KVM cpuid leaves (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Validate guest writes to MSR_IA32_APICBASE (Paolo Bonzini) [1110125 1116936]
-- [virt] kvm/x86: mark hyper-v vapic assist page as dirty (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: mark hyper-v hypercall page as dirty (Paolo Bonzini) [1116936]
-- [virt] kvm: make KVM_MMU_AUDIT help text more readable (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Update guest activity state field on L2 exits (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fix nested_run_pending on activity state HLT (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Clean up handling of VMX-related MSRs (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Add tracepoints for nested_vmexit and nested_vmexit_inject (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Pass vmexit parameters to nested_vmx_vmexit (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Leave VMX mode on clearing of feature control MSR (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Fix DR6 update on #DB exception (Paolo Bonzini) [1079841 1116936]
-- [virt] kvm/svm: Fix reading of DR6 (Paolo Bonzini) [1079841 1116936]
-- [virt] kvm/x86: Sync DR7 on KVM_SET_DEBUGREGS (Paolo Bonzini) [1079841 1116936]
-- [virt] kvm: remove useless write to vcpu->hv_clock.tsc_timestamp (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Fix debug typo error in lapic (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: check use I/O bitmap first before unconditional I/O exit (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Unconditionally uninit the MMU on nested vmexit (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Do not skip the instruction if handle_dr injects a fault (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Support direct APIC access from L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Add comment on vcpu_enter_guest()'s return value (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Add support for activity state HLT (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: shadow VM_(ENTRY (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: delay mmu audit activation (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Really fix lazy FPU on nested guest (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Fix lazy FPU on nested guest (Paolo Bonzini) [1116936]
-- [virt] kvm/cpuid: Fix sparse warning (Paolo Bonzini) [1116936]
-- [virt] kvm: Delete prototype for non-existent function kvm_check_iopl (Paolo Bonzini) [1116936]
-- [virt] kvm: Delete prototype for non-existent function complete_pio (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: trace cpuid emulation when called from emulator (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: cleanup decode_register_operand() a bit (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: check rex prefix inside decode_register() (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: error message typo fix (Paolo Bonzini) [1116936]
-- [virt] kvm: Emulate MOVBE (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: Add initial three-byte insns support (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: Rename VendorSpecific flag (Paolo Bonzini) [1116936]
-- [virt] kvm/emulator: Use opcode length (Paolo Bonzini) [1116936]
-- [virt] kvm: Add KVM_GET_EMULATED_CPUID (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Report CPU_BASED_VIRTUAL_NMI_PENDING as supported (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Report 2MB EPT pages as supported (Paolo Bonzini) [1116936]
-- [virt] kvm: Move gfn_to_index to x86 specific code (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fully support nested VMX preemption timer (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: change useless int return types to void (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: unify destroy_kvm_mmu with kvm_mmu_unload (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: remove uninteresting MMU "new_cr3" callbacks (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: remove uninteresting MMU "free" callbacks (Paolo Bonzini) [1116936]
-- [virt] kvm: Convert kvm_lock back to non-raw spinlock (Paolo Bonzini) [1116936]
-- [virt] kvm: protect kvm_usage_count with its own spinlock (Paolo Bonzini) [1116936]
-- [virt] kvm: cleanup (physical) CPU hotplug (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Do not generate #DF if #PF happens during exception delivery into L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Check all exceptions for intercept during delivery to L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Do not put exception that caused vmexit to IDT_VECTORING_INFO (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Amend nested_run_pending logic (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Enable unrestricted guest mode support (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Implement support for EFER saving on VM-exit (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Do not set identity page map for L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Replace kvm_set_cr0 with vmx_set_cr0 in load_vmcs12_host_state (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: fix shadow on EPT (Paolo Bonzini) [1116936]
-- [virt] kvm/nept: reset PDPTR register cache on nested vmentry emulation (Paolo Bonzini) [1116936]
-- [virt] kvm: Fix NULL dereference in gfn_to_hva_prot() (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: allow page tables to be in read-only slots (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: emulate RETF imm (Paolo Bonzini) [1116936]
-- [virt] kvm/mmu: remove unused parameter (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: add comments where MMIO does not return to the emulator (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: count exits to userspace during invalid guest emulation (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Advertise IA32_PAT in VM exit control (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fix up VM_ENTRY_IA32E_MODE control feature reporting (Paolo Bonzini) [1116936]
-- [virt] kvm/nept: Advertise WB type EPTP (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nvmx: Keep arch.pat in sync on L1-L2 switches (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Miscelleneous cleanups (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Some additional comments (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm: Advertise the support of EPT to the L1 guest, through the appropriate MSR (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Nested INVEPT (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: MMU context for nested EPT (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Add nept violation/misconfigration support (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: correctly check if remote tlb flush is needed for shadowed EPT tables (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Redefine EPT-specific link_shadow_page() (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Add EPT tables support to paging_tmpl.h (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Support shadow paging for guest paging without A/D bits (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: make guest's A/D bits depends on guest's paging mode (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Move common code to paging_tmpl.h (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Fix wrong test in kvm_set_cr3 (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Fix cr3 handling in nested exit and entry (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/nept: Support LOAD_IA32_EFER entry/exit controls for L1 (Paolo Bonzini) [1048496 1116936]
-- [virt] kvm/mmu: fix check the reserved bits on the gpte of L2 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: correctly set tr base on nested vmexit emulation (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: reset rflags register cache during nested vmentry (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: handle singlestep during emulation (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: handle hardware breakpoints during emulation (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: rename EMULATE_DO_MMIO (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Drop some unused functions from lapic (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Simplify __apic_accept_irq (Paolo Bonzini) [1116936]
-- [virt] kvm/perf: Support the in_tx/in_tx_cp modifiers in KVM arch perfmon emulation v5 (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Set segment infomation of L1 when L2 exits (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Fix read/write to MSR_IA32_FEATURE_CONTROL (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Drop useless cast (Paolo Bonzini) [1116936]
-- [virt] kvm/vmx: Use proper types to access const arrays (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Set success rflags when emulate VMXON/VMXOFF in nested virt (Paolo Bonzini) [1116936]
-- [virt] kvm/nvmx: Change location of 3 functions in vmx.c (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Avoid zapping mmio sptes twice for generation wraparound (Paolo Bonzini) [1116936]
-- [virt] kvm: add missing cleanup_srcu_struct (Paolo Bonzini) [1116936]
-- [virt] kvm/irqchip: Speed up KVM_SET_GSI_ROUTING (Paolo Bonzini) [1116936]
-- [virt] kvm/async_pf: mm->mm_users can not pin apf->mm (Paolo Bonzini) [1116936]
-- [virt] kvm: Specify byte order for KVM_EXIT_MMIO (Paolo Bonzini) [1116936]
-- [virt] kvm/eventfd: Fix lock order inversion (Paolo Bonzini) [1116936]
-- [virt] kvm: add kvm_arch_vcpu_runnable() test to kvm_vcpu_on_spin() loop (Paolo Bonzini) [1116936]
-- [virt] kvm/asmlinkage: Make kvm_rebooting visible (Paolo Bonzini) [1116936]
-- [virt] kvm: Provide kvm_vcpu_eligible_for_directed_yield() stub (Paolo Bonzini) [1116936]
-- [virt] kvm/vfio: silence GCC warning (Paolo Bonzini) [1116936]
-- [virt] kvm: remove dead code (Paolo Bonzini) [1116936]
-- [virt] kvm: make local functions static (Paolo Bonzini) [1116936]
-- [virt] kvm/doc: Fix typo in doc/virtual/kvm (Paolo Bonzini) [1116936]
-- [virt] kvm: Use cond_resched() directly and remove useless kvm_resched() (Paolo Bonzini) [1116936]
-- [virt] kvm: kvm_clear_guest_page(), fix empty_zero_page usage (Paolo Bonzini) [1116936]
-- [virt] kvm: remove vm mmap method (Paolo Bonzini) [1116936]
-- [virt] kvm/iommu: hva align mapping page size (Paolo Bonzini) [1116936]
-- [virt] kvm_host: typo fix (Paolo Bonzini) [1116936]
-- [Documentation] kvm: add a 00-INDEX file (Paolo Bonzini) [1116936]
-- [virt] kvm: use a more sensible error number when debugfs directory creation fails (Paolo Bonzini) [1116936]
-- [virt] kvm: Fix modprobe failure for kvm_intel/kvm_amd (Paolo Bonzini) [1116936]
-- [virt] kvm: Enable pvspinlock after jump_label_init() to avoid VM hang (Paolo Bonzini) [1116936]
-- [virt] kvm: Drop FOLL_GET in GUP when doing async page fault (Paolo Bonzini) [1116936]
-- [virt] kvm/iommu: Add leading zeros to device's BDF notation in debug messages (Paolo Bonzini) [1116936]
-- [Documentation] kvm: Update cpuid documentation for steal time and pv eoi (Paolo Bonzini) [1116936]
-- [virt] kvm: remove .done from struct kvm_async_pf (Paolo Bonzini) [1116936]
-- [virt] kvm: Add documentation for kvm->srcu lock (Paolo Bonzini) [1116936]
-- [virt] kvm: free resources after canceling async_pf (Paolo Bonzini) [1116936]
-- [virt] kvm/eventfd: switch to fdget (Paolo Bonzini) [1116936]
-- [virt] kvm: Introduce kvm_arch_memslots_updated() (Paolo Bonzini) [1116936]
-- [virt] kvm/x86: Rename X86_CR4_RDWRGSFS to X86_CR4_FSGSBASE (Paolo Bonzini) [1116936]
-- [virt] kvm: rename __kvm_io_bus_sort_cmp to kvm_io_bus_cmp (Paolo Bonzini) [1116936]
-- [virt] kvm: optimize away THP checks in kvm_is_mmio_pfn() (Paolo Bonzini) [1116936]
-- [virt] kvm: use anon_inode_getfd() with O_CLOEXEC flag (Paolo Bonzini) [1116936]
-- [virt] kvm: introduce __kvm_io_bus_sort_cmp (Paolo Bonzini) [1116936]
-- [Documentation] virtual/kvm/api.txt fix a typo (Paolo Bonzini) [1116936]
-- [virt] kvm/ppc: reserve a capability number for multitce support (Paolo Bonzini) [1116936]
-- [virt] virtio_ring: change host notification API (Paolo Bonzini) [1116936]
-- [x86] quirks: Mark Cave Creek chipset device id as supported (Steve Best) [1087659]
-- [mm] memcg, vmscan: Fix forced scan of anonymous pages (Jerome Marchand) [1125240]
-- [drm] qxl: return IRQ_NONE if it was not our irq (Jason Wang) [1095099]
-- [kernel] sched/autogroup: Fix race with task_groups list (Gustavo Duarte) [1081406]
-- [lib] percpu_counter: unbreak __percpu_counter_add() (Eric Sandeen) [1123968]
-- [lib] percpu_counter: fix __percpu_counter_add() (Eric Sandeen) [1123968]
-
-* Fri Aug 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-142.el7]
-- [x86] Revert: Insert GART region into resource map (Myron Stowe) [1110895]
-- [pci] Don't check resource_size() in pci_bus_alloc_resource() (Myron Stowe) [1110895]
-- [pci] Enable INTx in pci_reenable_device() only when MSI/MSI-X not enabled (Myron Stowe) [1110895]
-- [ahci] Fix broken fallback to single MSI mode (Myron Stowe) [1110895]
-- [pci] Enable INTx if BIOS left them disabled (Myron Stowe) [1110895]
-- [pci] msi: Add pci_enable_msi_exact() and pci_enable_msix_exact() (Myron Stowe) [1110895]
-- [pci] msi: Fix cut-and-paste errors in documentation (Myron Stowe) [1110895]
-- [pci] msi: Add pci_enable_msi() documentation back (Myron Stowe) [1110895]
-- [pci] msi: Fix pci_msix_vec_count() htmldocs failure (Myron Stowe) [1110895]
-- [pci] msi: Fix leak of msi_attrs (Myron Stowe) [1110895]
-- [pci] msi: Check kmalloc() return value, fix leak of name (Myron Stowe) [1110895]
-- [eisa] Revert: Initialize device before its resources (Myron Stowe) [1110895]
-- [eisa] Revert: Log device resources in dmesg (Myron Stowe) [1110895]
-- [pci] Check parent kobject in pci_destroy_dev() (Myron Stowe) [1110895]
-- [powerpc] eeh: Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [pci] Fix pci_check_and_unmask_intx() comment typos (Myron Stowe) [1110895]
-- [scsi] mpt: Use pci_stop_and_remove_bus_device_locked() (Myron Stowe) [1110895]
-- [platform] x86: Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [pci] hotplug: Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [pcmcia] Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [pci] hotplug: Use global PCI rescan-remove locking (Myron Stowe) [1110895]
-- [acpi] pci: Use global PCI rescan-remove locking in PCI root hotplug (Myron Stowe) [1110895]
-- [pci] Add global pci_lock_rescan_remove() (Myron Stowe) [1110895]
-- [pci] Cleanup pci.h whitespace (Myron Stowe) [1110895]
-- [pci] Reorder so actual code comes before stubs (Myron Stowe) [1110895]
-- [pci] aer: Support ACPI HEST AER error sources for PCI domains other than 0 (Myron Stowe) [1110895]
-- [acpi] acpica: Add helper macros to extract bus/segment numbers from HEST table (Myron Stowe) [1110895]
-- [pci] Make local functions static (Myron Stowe) [1110895]
-- [pci] Remove unused alloc_pci_dev() (Myron Stowe) [1110895]
-- [pci] Remove unused pci_renumber_slot() (Myron Stowe) [1110895]
-- [pci] Remove unused pcie_aspm_enabled() (Myron Stowe) [1110895]
-- [pci] Remove unused pci_vpd_truncate() (Myron Stowe) [1110895]
-- [pci] Remove unused ID-Based Ordering support (Myron Stowe) [1110895]
-- [pci] Remove unused Optimized Buffer Flush/Fill support (Myron Stowe) [1110895]
-- [pci] Remove unused Latency Tolerance Reporting support (Myron Stowe) [1110895]
-- [pci] Removed unused parts of Page Request Interface support (Myron Stowe) [1110895]
-- [pci] Update documentation 00-INDEX file (Myron Stowe) [1110895]
-- [pci] Allocate 64-bit BARs above 4G when possible (Myron Stowe) [1110895]
-- [pci] Enforce bus address limits in resource allocation (Myron Stowe) [1110895]
-- [pci] Split out bridge window override of minimum allocation address (Myron Stowe) [1110895]
-- [agp] ati: Use PCI_COMMAND instead of hard-coded 4 (Myron Stowe) [1110895]
-- [agp] intel: Use CPU physical address, not bus address, for ioremap() (Myron Stowe) [1110895]
-- [agp] intel: Use pci_bus_address() to get GTTADR bus address (Myron Stowe) [1110895]
-- [agp] intel: Use pci_bus_address() to get MMADR bus address (Myron Stowe) [1110895]
-- [agp] intel: Support 64-bit GMADR (Myron Stowe) [1110895]
-- [agp] intel: Rename gtt_bus_addr to gtt_phys_addr (Myron Stowe) [1110895]
-- [drm] i915: Rename gtt_bus_addr to gtt_phys_addr (Myron Stowe) [1110895]
-- [agp] Use pci_resource_start() to get CPU physical address for BAR (Myron Stowe) [1110895]
-- [agp] Support 64-bit APBASE (Myron Stowe) [1110895]
-- [pci] msi: Add pci_enable_msi_range() and pci_enable_msix_range() (Myron Stowe) [1110895]
-- [pci] msi: Add pci_msix_vec_count() (Myron Stowe) [1110895]
-- [pci] msi: Remove pci_enable_msi_block_auto() (Myron Stowe) [1110895]
-- [pci] msi: Add pci_msi_vec_count() (Myron Stowe) [1110895]
-- [pci] Convert ioapic to be builtin only, not modular (Myron Stowe) [1110895]
-- [pci] Add pci_bus_address() to get bus address of a BAR (Myron Stowe) [1110895]
-- [pci] Convert pcibios_resource_to_bus() to take a pci_bus, not a pci_dev (Myron Stowe) [1110895]
-- [pci] Change pci_bus_region addresses to dma_addr_t (Myron Stowe) [1110895]
-- [pci] msi: Return -ENOSYS for unimplemented interfaces, not -1 (Myron Stowe) [1110895]
-- [pci] msi: Return msix_capability_init() failure if populate_msi_sysfs() fails (Myron Stowe) [1110895]
-- [s390] pci: Remove superfluous check of MSI type (Myron Stowe) [1110895]
-- [s390] pci: Fix single MSI only check (Myron Stowe) [1110895]
-- [pci] msi: Export MSI mode using attributes, not kobjects (Myron Stowe) [1110895]
-- [pci] portdrv: Remove extra get_device()/put_device() for pcie_device (Myron Stowe) [1110895]
-- [pci] portdrv: Add put_device() after device_register() failure (Myron Stowe) [1110895]
-- [pci] portdrv: Cleanup error paths (Myron Stowe) [1110895]
-- [pci] Remove from bus_list and release resources in pci_release_dev() (Myron Stowe) [1110895]
-- [pci] Move pci_proc_attach_device() to pci_bus_add_device() (Myron Stowe) [1110895]
-- [pci] Use device_release_driver() in pci_stop_root_bus() (Myron Stowe) [1110895]
-- [pci] aer: Consolidate HEST error source parsers (Myron Stowe) [1110895]
-- [pci] aer: Ignore non-PCIe AER error sources in aer_hest_parse() (Myron Stowe) [1110895]
-- [pci] aer: Clean up error printing code a bit (Myron Stowe) [1110895]
-- [pci] aer: Add a TLP header print helper (Myron Stowe) [1110895]
-- [eisa] Call put_device() if device_register() fails (Myron Stowe) [1110895]
-- [pci] checkpatch: Deprecate DEFINE_PCI_DEVICE_TABLE (Myron Stowe) [1110895]
-- [pci] Stop clearing bridge Secondary Status when setting up I/O aperture (Myron Stowe) [1110895]
-- [pci] Prevent bus conflicts while checking for bridge apertures (Myron Stowe) [1110895]
-- [pci] Drop "irq" param from *_restore_msi_irqs() (Myron Stowe) [1110895]
-- [pci] portdrv: Remove superfluous name cast (Myron Stowe) [1110895]
-- [x86] pci: Use dev_is_pci() to identify PCI devices (Myron Stowe) [1110895]
-- [pci] Use dev_is_pci() to identify PCI devices (Myron Stowe) [1110895]
-- [pci] Clear NumVFs when disabling SR-IOV in sriov_init() (Myron Stowe) [1110895]
-- [s390] watchdog: add support for LPAR operation (diag288) (Hendrik Brueckner) [1088540]
-- [s390] watchdog: use watchdog API (Hendrik Brueckner) [1088540]
-- [scripts] headers_check: special case seqbuf_dump() (Prarit Bhargava) [1090078]
-- [Documentation] mei-amt-version: remove unneeded call of mei_deinit() (Prarit Bhargava) [1090078]
-- [drm] tegra: Include header drm/drm.h (Prarit Bhargava) [1090078]
-- [mfd] lpc_ich: iTCO_wdt patch for Intel Coleto Creek DeviceIDs (Neil Horman) [1053912]
-- [i2c] i801: SMBus patch for Intel Coleto Creek DeviceIDs (Neil Horman) [1053912]
-- [x86] efi: earlyprintk-efi, keep fix (Rui Wang) [1085558]
-- [x86] efi: Fix earlyprintk off-by-one bug (Rui Wang) [1085558]
-- [x86] efi: Add EFI framebuffer earlyprintk support (Rui Wang) [1085558]
-- [s390] zcrypt: remove zcrypt kmsg documentation again (Hendrik Brueckner) [1088511]
-- [s390] zcrypt: add support for EP11 coprocessor cards (Hendrik Brueckner) [1088511]
-- [s390] sclp_vt220: Enable ASCII console per default (Hendrik Brueckner) [1112739]
-- [block] blkcg: fix use-after-free in __blkg_release_rcu() by making blkcg_gq refcnt an atomic_t (Vivek Goyal) [1118436]
-- [ethernet] bnx2x: fix crash during TSO tunneling (Michal Schmidt) [1119133]
-- [ethernet] cxgb4: allow large buffer size to have page size (Gustavo Duarte) [1078977]
-- [fs] vfs: Don't copy mount bind mounts of /proc/<pid>/ns/mnt between namespaces (Aristeu Rozanski) [1098632]
-- [cpufreq] intel_pstate: Add CPU IDs for Broadwell processors (Steve Best) [1086874]
-- [pci] pciehp: Clear Data Link Layer State Changed during init (Myron Stowe) [1101097]
-- [acpi] Fix bug when ACPI reset register is implemented in system memory (Nigel Croxon) [1109971]
-- [ipc] shm: increase the defaults for SHMALL, SHMMAX (Larry Woodman) [1101821]
-- [tools] power/turbostat: Run on Broadwell (Steve Best) [1086455]
-- [drm] i915: make i915 less chatty on resume (Rob Clark) [1086777]
-- [tools] cpupower: add option to display values without round offs (Prarit Bhargava) [1090540]
-- [scripts] kbuild: fix make headers_install when path is too long (Frank Ramsay) [1099575]
-- [kernel] audit: fix AUDIT_FEATURE_CHANGE record number (Richard Guy Briggs) [1085928]
-- [usb] xhci: Link TRB must not occur within a USB payload burst (Don Zickus) [1049077]
-- [virt] xen-netfront: fix resource leak in netfront (Vitaly Kuznetsov) [1070868]
-- [virt] xen-blkfront: handle backend CLOSED without CLOSING (Vitaly Kuznetsov) [1070868]
-
-* Fri Aug 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-141.el7]
-- [misc] no animals were harmed in the making of this kernel (Jarod Wilson)
-
-* Fri Jul 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-140.el7]
-- [net] ipv6: addrconf: implement address generation modes (Jiri Pirko) [1107369]
-- [net] gre: add link local route when local addr is any (Jiri Pirko) [1107369]
-- [net] gre6: don't try to add the same route two times (Jiri Pirko) [1107369]
-- [netdrv] bonding: remove no longer relevant vlan warnings (Jiri Pirko) [1048814]
-- [netdrv] bonding: allow to add vlans on top of empty bond (Jiri Pirko) [1048814]
-- [net] netfilter: nf_ct_timestamp: Fix BUG_ON after netns deletion (Jiri Pirko) [1085667]
-- [net] netfilter: nf_nat: fix oops on netns removal (Florian Westphal) [1089581]
-- [net] unix socket code abuses csum_partial (Hannes Frederic Sowa) [1106402]
-- [net] ip_tunnel: Set network header properly for IP_ECN_decapsulate() (Jiri Pirko) [1094419]
-
-* Fri Jul 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-139.el7]
-- [fs] GFS2: fix potential NULL pointer dereference (Robert S Peterson) [1095835]
-- [input] synaptics: fix resolution for manually provided min/max (Benjamin Tissoires) [1093449]
-- [input] synaptics: change min/max quirk table to pnp-id matching (Benjamin Tissoires) [1093449]
-- [input] synaptics: add a matches_pnp_id helper function (Benjamin Tissoires) [1093449]
-- [input] synaptics: T540p - unify with other LEN0034 models (Benjamin Tissoires) [1093449]
-- [input] synaptics: add min/max quirk for the ThinkPad W540 (Benjamin Tissoires) [1093449]
-- [input] synaptics: add min/max quirk for ThinkPad Edge E431 (Benjamin Tissoires) [1093449]
-- [input] synaptics: add min/max quirk for ThinkPad T431s, L440, L540, S1 Yoga and X1 (Benjamin Tissoires) [1093449]
-- [input] synaptics: report INPUT_PROP_TOPBUTTONPAD property (Benjamin Tissoires) [1093449]
-- [input] Add INPUT_PROP_TOPBUTTONPAD device property (Benjamin Tissoires) [1093449]
-- [input] i8042: add firmware_id support (Benjamin Tissoires) [1093449]
-- [input] serio: add firmware_id sysfs attribute (Benjamin Tissoires) [1093449]
-- [input] synaptics: add manual min/max quirk for ThinkPad X240 (Benjamin Tissoires) [1093449]
-- [input] synaptics: add manual min/max quirk (Benjamin Tissoires) [1093449]
-- [input] synaptics: fix incorrect placement of __initconst (Benjamin Tissoires) [1093449]
-- [s390] sclp_early: Return correct HSA block count also for zero (Hendrik Brueckner) [1107730]
-- [s390] sclp_early: Add function to detect sclp console capabilities (Hendrik Brueckner) [1107730]
-- [s390] sclp_early: Pass sccb pointer to every *_detect() function (Hendrik Brueckner) [1107730]
-- [s390] sclp_early: Replace early_read_info_sccb with sccb_early (Hendrik Brueckner) [1107730]
-- [s390] sclp_early: Get rid of sclp_early_read_info_sccb_valid (Hendrik Brueckner) [1107730]
-- [s390] sclp: replace uninitialized early_event_mask_sccb variable with sccb_early (Hendrik Brueckner) [1107730]
-- [s390] sclp: Consolidate early sclp init calls to sclp_early_detect() (Hendrik Brueckner) [1107730]
-- [s390] sclp: Move declarations for sclp_sdias into separate header file (Hendrik Brueckner) [1107730]
-- [s390] sclp: Move early code from sclp_cmd.c to sclp_early.c (Hendrik Brueckner) [1107730]
-- [s390] sclp: Determine HSA size dynamically for zfcpdump (Hendrik Brueckner) [1107730]
-- [s390] sclp: properly detect line mode console (Hendrik Brueckner) [1107730]
-- [s390] sclp: add parameter to specify number of buffer pages (Hendrik Brueckner) [1103744]
-- [md] dm-cache: set minimum_io_size to cache's data block size (Mike Snitzer) [1117872]
-- [md] dm-thin: set minimum_io_size to pool's data block size (Mike Snitzer) [1117872]
-- [md] dm-crypt: use per-bio data (Mike Snitzer) [1117872]
-- [block] use kmalloc alignment for bio slab (Mike Snitzer) [1117872]
-- [md] dm-crypt: fix cpu hotplug crash by removing per-cpu structure (Mike Snitzer) [1117872]
-- [md] dm-mpath: print more useful warnings in multipath_message() (Mike Snitzer) [1117872]
-- [md] dm-mpath: do not activate failed paths (Mike Snitzer) [1117872]
-- [md] dm-mpath: eliminate pg_ready() wrapper (Mike Snitzer) [1117872]
-- [md] dm-mpath: remove extra nesting in map function (Mike Snitzer) [1117872]
-- [md] dm-mpath: remove map_io() (Mike Snitzer) [1117872]
-- [md] dm-mpath: reduce memory pressure when requeuing (Mike Snitzer) [1117872]
-- [md] dm-mpath: really fix lockdep warning (Mike Snitzer) [1117872]
-- [md] dm-mpath: fix lock order inconsistency in multipath_ioctl (Mike Snitzer) [1117872]
-- [md] dm-mpath: remove process_queued_ios() (Mike Snitzer) [1117872]
-- [md] dm-mpath: fix IO hang due to logic bug in multipath_busy (Mike Snitzer) [1117872]
-- [md] dm-mpath: push back requests instead of queueing (Mike Snitzer) [1117872]
-- [md] dm-table: add dm_table_run_md_queue_async (Mike Snitzer) [1117872]
-- [md] dm-mpath: do not call pg_init when it is already running (Mike Snitzer) [1117872]
-- [md] dm-cache: fail migrations in the do_worker error path (Mike Snitzer) [1117872]
-- [md] dm-cache: simplify deferred set reference count increments (Mike Snitzer) [1117872]
-- [md] dm-cache-metadata: use dm-space-map-metadata.h defined size limits (Mike Snitzer) [1117872]
-- [md] dm-cache-metadata: do not allow the data block size to change (Mike Snitzer) [1117872]
-- [md] dm-thin-metadata: do not allow the data block size to change (Mike Snitzer) [1117872]
-- [md] dm-thin: relax external origin size constraints (Mike Snitzer) [1065474]
-- [md] dm-thin: switch to an atomic_t for tracking pending new block preparations (Mike Snitzer) [1065474]
-- [md] dm-thin: cleanup noflush_work to use a proper completion (Mike Snitzer) [1117872]
-- [md] dm-era: check for a non-NULL metadata object before closing it (Mike Snitzer) [1117872]
-- [md] dm-io: simplify dec_count and sync_io (Mike Snitzer) [1117872]
-- [md] dm-io: fix a race condition in the wake up code for sync_io (Mike Snitzer) [1117872]
-- [md] dm-crypt, dm-zero: update author name following legal name change (Mike Snitzer) [1117872]
-- [md] dm: allocate a special workqueue for deferred device removal (Mike Snitzer) [1117872]
-- [md] dm-snapshot: do not split read bios sent to snapshot-origin target (Mike Snitzer) [1117872]
-- [md] dm-snapshot: allocate a per-target structure for snapshot-origin target (Mike Snitzer) [1117872]
-- [md] dm: introduce dm_accept_partial_bio (Mike Snitzer) [1117872]
-- [md] dm: change sector_count member in clone_info from sector_t to unsigned (Mike Snitzer) [1117872]
-- [md] dm: remove symbol export for dm_set_device_limits (Mike Snitzer) [1117872]
-- [md] dm: disable WRITE SAME if it fails (Mike Snitzer) [1117872]
-- [md] dm: use RCU_INIT_POINTER instead of rcu_assign_pointer in __unbind (Mike Snitzer) [1117872]
-- [md] dm: stop using bi_private (Mike Snitzer) [1117872]
-- [md] dm: remove dm_get_mapinfo (Mike Snitzer) [1117872]
-- [md] dm-table: make dm_table_supports_discards static (Mike Snitzer) [1117872]
-- [md] dm: make dm_table_alloc_md_mempools static (Mike Snitzer) [1117872]
-- [mm] Revert: vmscan: do not swap anon pages just because free+file is low (Johannes Weiner) [1102991]
-- [crypto] fips: only panic on bad/missing crypto mod signatures (Jarod Wilson) [903562]
-- [x86] hugetlb: Add missing TLB page invalidation for hugetlb_cow() (Larry Woodman) [1097919]
-
-* Fri Jul 18 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-138.el7]
-- [mm] hugetlb: ensure hugepage access is denied if hugepages are not supported (David Gibson) [1081671]
-- [x86] Delete non-required instances of include <linux/init.h> (Prarit Bhargava) [1119074]
-- [mmc] sdhci-pci-o2micro: Add SeaBird SeaEagle SD3 support (David Milburn) [968020]
-- [mmc] sdhci-pci: add support of O2Micro/BayHubTech SD hosts (David Milburn) [968020]
-- [mmc] sdhci-pci: break out definitions to header file (David Milburn) [968020]
-- [ethernet] cnic: Don't take cnic_dev_lock in cnic_alloc_uio_rings() (Maurizio Lombardi) [1079384 1094613]
-- [ethernet] cnic: Don't take rcu_read_lock in cnic_rcv_netevent() (Maurizio Lombardi) [1079384 1094613]
-- [idle] intel_idle: fix IVT idle state table setting (Prarit Bhargava) [1119374]
-- [idle] intel_idle: fine-tune IVT residency targets (Prarit Bhargava) [1119374]
-- [idle] intel_idle: do C1E promotion disable quirk for hotplugged CPUs (Prarit Bhargava) [1119374]
-- [idle] intel_idle: remove superfluous dev->state_count initialization (Prarit Bhargava) [1119374]
-- [x86] acpi, idle: Restructure the mwait idle routines (Prarit Bhargava) [1119374]
-- [idle] intel_idle: use CPU_TASKS_FROZEN instead of a numeric constant (Prarit Bhargava) [1119374]
-- [idle] intel_idle: shrink states tables (Prarit Bhargava) [1119374]
-- [md] dm-thin: update discard_granularity to reflect the thin-pool blocksize (Mike Snitzer) [1099936]
-- [md] dm-bio-prison: implement per bucket locking in the dm_bio_prison hash table (Mike Snitzer) [1099936]
-- [md] dm-thin: return ENOSPC instead of EIO when error_if_no_space enabled (Mike Snitzer) [1099936]
-- [md] dm-cache: always split discards on cache block boundaries (Mike Snitzer) [1103836]
-- [md] dm-cache: fix writethrough mode quiescing in cache_map (Mike Snitzer) [1103836]
-- [md] dm-cache: fix a lock-inversion (Mike Snitzer) [1103836]
-- [md] dm-thin: add 'no_space_timeout' dm-thin-pool module param (Mike Snitzer) [1095639]
-- [md] dm-thin: add timeout to stop out-of-data-space mode holding IO forever (Mike Snitzer) [1095639]
-- [md] dm-thin: allow metadata commit if pool is in PM_OUT_OF_DATA_SPACE mode (Mike Snitzer) [1091852]
-- [md] dm-thin: use INIT_WORK_ONSTACK in noflush_work to avoid ODEBUG warning (Mike Snitzer) [1098643]
-- [md] dm-thin: fix rcu_read_lock being held in code that can sleep (Mike Snitzer) [1098643]
-- [md] dm-thin: irqsave must always be used with the pool->lock spinlock (Mike Snitzer) [1098643]
-- [md] dm-thin: sort the per thin deferred bios using an rb_tree (Mike Snitzer) [1098643]
-- [md] dm-thin: use per thin device deferred bio lists (Mike Snitzer) [1098643]
-- [md] dm-thin: simplify pool_is_congested (Mike Snitzer) [1098643]
-
-* Thu Jul 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-137.el7]
-- [powercap] Add to drivers Kconfig and Makefile (Steve Best) [1085575]
-- [powercap] add Documentation (Steve Best) [1085575]
-- [powercap] Fix build error with option -Werror=format-security (Steve Best) [1085575]
-- [powercap] Introduce Intel RAPL power capping driver (Steve Best) [1085575]
-- [powercap] Add class driver (Steve Best) [1085575]
-- [x86] msr: add 64bit _on_cpu access functions (Steve Best) [1085575]
-- [misc] bitops: Introduce BIT_ULL (Steve Best) [1085575]
-- [virt] xen/spinlock: Don't use __initdate for xen_pv_spin (Vitaly Kuznetsov) [1006977]
-- [virt] Revert: xen/spinlock: Disable IRQ spinlock (PV) allocation on PVHVM (Vitaly Kuznetsov) [1006977]
-- [virt] xen/spinlock: Don't setup xen spinlock IPI kicker if disabled (Vitaly Kuznetsov) [1006977]
-- [virt] xen/smp: Update pv_lock_ops functions before alternative code starts under PVHVM (Vitaly Kuznetsov) [1006977]
-- [virt] xen/spinlock: We don't need the old structure anymore (Vitaly Kuznetsov) [1006977]
-- [virt] xen/spinlock: Fix locking path engaging too soon under PVHVM (Vitaly Kuznetsov) [1006977]
-- [ata] ahci: Do not receive interrupts sent by dummy ports (David Milburn) [1067838]
-- [ata] ahci: do not request irq for dummy port (David Milburn) [1067838]
-- [ata] ahci: fix Null pointer dereference in achi_host_active() (David Milburn) [1067838]
-- [ata] ahci: Make distinct names for ports in /proc/interrupts (David Milburn) [1067838]
-- [s390] 3270: fix crash with multiple reset device requests (Hendrik Brueckner) [1088320]
-- [ata] ahci: accommodate tag ordered controller (David Milburn) [1083746]
-- [scsi] libsas: introduce scmd_dbg() to quiet false positive "timeout" messages (David Milburn) [1074987]
-- [ethernet] be2net: enable interrupts in EEH resume (Ivan Vecera) [1076682]
-- [ethernet] bnx2: Fix shutdown sequence (Neil Horman) [1074656]
-- [ethernet] be2net: Fix invocation of be_close() after be_clear() (Ivan Vecera) [1066644]
-- [virt] hv/balloon: Ensure pressure reports are posted regularly (Luiz Capitulino) [1102888]
-- [virt] kvm/x86: expose invariant tsc cpuid bit (Marcelo Tosatti) [1095990]
-- [virt] kvm/x86: disable master clock if TSC is reset during suspend (Marcelo Tosatti) [1098604]
-- [virt] xen/pvhvm: Initialize xen panic handler for PVHVM guests (Vitaly Kuznetsov) [839966]
-- [fs] cifs: Wait for writebacks to complete before attempting write (Sachin Prabhu) [1040329]
-- [fs] xfs: xfs_readsb needs to check for magic numbers (Eric Sandeen) [1102940]
-- [net] svcrdma: fix offset calculation for non-page aligned sge entries (Jeff Layton) [1088954]
-- [fs] lockd: ensure we tear down any live sockets when socket creation fails during lockd_up (Jeff Layton) [1085774]
-- [net] svcrpc: fix gss-proxy NULL dereference in some error cases (Jeff Layton) [1085616]
-- [mm] use paravirt friendly ops for NUMA hinting ptes (Vitaly Kuznetsov) [1101274]
-- [mm] swap: discard while swapping only if SWAP_FLAG_DISCARD_PAGES (Rafael Aquini) [1053189]
-- [x86] hwpoison: remove unused global variable in do_machine_check() (Prarit Bhargava) [1119306]
-- [x86] mce: Panic when a core has reached a timeout (Prarit Bhargava) [1119306]
-- [x86] mce: Improve mcheck_init_device() error handling (Prarit Bhargava) [1119306]
-- [x86] mce: Fix CMCI preemption bugs (Prarit Bhargava) [1119306]
-- [x86] cmci: Add proper detection of end of CMCI storms (Prarit Bhargava) [1119306]
-- [x86] acpi, apei, ghes: Do not report only correctable errors with SCI (Prarit Bhargava) [1119306]
-- [x86] mce: Call put_device on device_register failure (Prarit Bhargava) [1119306]
-- [acpi] apei, cper: Add UEFI 2.4 support for memory error (Prarit Bhargava) [1119306]
-- [x86] mce: Fix mce regression from recent cleanup (Prarit Bhargava) [1119306]
-- [x86] mce: Update MCE severity condition check (Prarit Bhargava) [1119306]
-- [x86] mce: Add comments to clarify usage of the various bitfields in the MCA subsystem (Prarit Bhargava) [1119306]
-- [x86] mcheck, therm_throt: Process package thresholds (Prarit Bhargava) [1119306]
-- [x86] mce: Fix "braodcast" typo (Prarit Bhargava) [1119306]
-- [mm] vmstat: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [mm] vmstat: set N_CPU to node_states during boot (Prarit Bhargava) [1119078]
-- [kernel] trace, ring-buffer: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [kernel] profile: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [mm] zswap: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [hwmon] via-cputemp: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [hwmon] coretemp: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [oprofile] nmi-timer: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [idle] intel-idle: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [base] topology: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [scsi] fcoe: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [cpufreq] acpi-cpufreq: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [scsi] bnx2i: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [scsi] bnx2fc: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [virt] x86, kvm: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] amd, uncore: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] pci, amd-bus: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] hpet: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] intel, cacheinfo: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] therm_throt: Remove unused therm_cpu_lock (Prarit Bhargava) [1119078]
-- [x86] oprofile, nmi: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] amd, ibs: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] msr: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [powerpc] sysfs: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] mce: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] therm_throt: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] cpuid: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] vsyscall: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [x86] intel, uncore: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [s390] smp: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [s390] cacheinfo: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [kernel] cpu_hotplug, perf: Fix CPU hotplug callback registration (Prarit Bhargava) [1119078]
-- [kernel] cpu/hotplug: Add lockdep annotations to get/put_online_cpus() (Prarit Bhargava) [1119078]
-- [kernel] cpu/hotplug: Provide lockless versions of callback registration functions (Prarit Bhargava) [1119078]
-- [Documentation] cpu-hotplug: Specify race-free way to register CPU hotplug callbacks (Prarit Bhargava) [1119078]
-- [pci] Fail new_id for vendor/device values already built into driver (Bandan Das) [1055867]
-- [init] main: add initcall_blacklist kernel parameter (Prarit Bhargava) [1080995]
-- [kernel] pid_namespace: pidns_get() should check task_active_pid_ns() != NULL (Jan Stancek) [1106368]
-- [i2c] i2c-ismt: support I2C_SMBUS_I2C_BLOCK_DATA transaction type (Neil Horman) [1094516]
-- [misc] mei: fix lockdep warning when registering mei watchdog (Prarit Bhargava) [971855]
-
-* Wed Jul 16 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-136.el7]
-- [block] mtip32xx: minor performance enhancements (Mike Snitzer) [1105703]
-- [block] mtip32xx: let blk_mq_tag_to_rq() take blk_mq_tags as the main parameter (Mike Snitzer) [1105703]
-- [block] mtip32xx: move error handling to service thread (Mike Snitzer) [1105703]
-- [block] mtip32xx: stop block hardware queues before quiescing IO (Mike Snitzer) [1105703]
-- [block] mtip32xx: blk_mq_init_queue() returns an ERR_PTR (Mike Snitzer) [1105703]
-- [block] mtip32xx: convert to use blk-mq (Mike Snitzer) [1105703]
-- [block] mtip32xx: Fix ERO and NoSnoop values in PCIe upstream on AMD systems (Mike Snitzer) [1105703]
-- [block] mtip32xx: Remove dfs_parent after pci unregister (Mike Snitzer) [1105703]
-- [block] mtip32xx: Increase timeout for STANDBY IMMEDIATE command (Mike Snitzer) [1105703]
-- [block] mtip32xx: Set queue bounce limit (Mike Snitzer) [1105703]
-- [block] mtip32xx: Use pci_enable_msi() instead of pci_enable_msi_range() (Mike Snitzer) [1105703]
-- [block] mtip32xx: fix bad use of smp_processor_id() (Mike Snitzer) [1105703]
-- [block] mtip32xx: Use pci_enable_msix_range() instead of pci_enable_msix() (Mike Snitzer) [1105703]
-- [block] mtip32xx: Remove superfluous call to pci_disable_msi() (Mike Snitzer) [1105703]
-- [block] mtip32xx: Reduce the number of unaligned writes to 2 (Mike Snitzer) [1105703]
-- [block] mtip32xx: Correctly handle security locked condition (Mike Snitzer) [1105703]
-- [block] mtip32xx: Make SGL container per-command to eliminate high order dma allocation (Mike Snitzer) [1105703]
-- [block] mtip32xx: dynamically allocate buffer in debugfs functions (Mike Snitzer) [1105703]
-- [block] blk-mq: fix RHEL kABI breakage (Mike Snitzer) [1105204]
-- [block] blk-mq: blk_mq_start_hw_queue() should use blk_mq_run_hw_queue() (Mike Snitzer) [1105204]
-- [block] add support for limiting gaps in SG lists (Mike Snitzer) [1105204]
-- [block] blk-mq: bitmap tag, fix races in bt_get() function (Mike Snitzer) [1105204]
-- [block] blk-mq: bitmap tag, fix race on blk_mq_bitmap_tags::wake_cnt (Mike Snitzer) [1105204]
-- [block] blk-mq: bitmap tag, fix races on shared ::wake_index fields (Mike Snitzer) [1105204]
-- [block] blk_max_size_offset() should check ->max_sectors (Mike Snitzer) [1105204]
-- [block] null_blk: fix softirq completions for queue_mode == 1 (Mike Snitzer) [1105204]
-- [block] blk-mq: merge blk_mq_drain_queue and __blk_mq_drain_queue (Mike Snitzer) [1105204]
-- [block] blk-mq: properly drain stopped queues (Mike Snitzer) [1105204]
-- [block] blk-mq: for_each_* macro correctness (Mike Snitzer) [1105204]
-- [scsi] reintroduce scsi_driver.init_command (Mike Snitzer) [1105204]
-- [scsi] remove scsi_end_request (Mike Snitzer) [1105204]
-- [scsi] explicitly release bidi buffers (Mike Snitzer) [1105204]
-- [scsi] don't reference freed command in scsi_prep_return (Mike Snitzer) [1105204]
-- [scsi] don't reference freed command in scsi_init_sgtable (Mike Snitzer) [1105204]
-- [scsi] add support for per-host cmd pools (Mike Snitzer) [1105204]
-- [scsi] simplify command allocation and freeing a bit (Mike Snitzer) [1105204]
-- [scsi] megaraid: simplify internal command handling (Mike Snitzer) [1105204]
-- [scsi] remove a useless get_put_device pair in scsi_requeue_command (Mike Snitzer) [1105204]
-- [scsi] remove a useless get_put_device pair in scsi_next_command (Mike Snitzer) [1105204]
-- [scsi] remove a useless get_put_device pair in scsi_request_fn (Mike Snitzer) [1105204]
-- [scsi] do not manipulate device reference counts in scsi_get_put_command (Mike Snitzer) [1105204]
-- [scsi] avoid taking host_lock in scsi_run_queue unless nessecary (Mike Snitzer) [1105204]
-- [scsi] avoid useless free_list lock roundtrips (Mike Snitzer) [1105204]
-- [scsi] enable destruction of blocked devices which fail LUN scanning (Mike Snitzer) [1105204]
-- [scsi] Revert: reintroduce scsi_driver.init_command (Mike Snitzer) [1105204]
-- [block] implement an unprep function corresponding directly to prep (Mike Snitzer) [1105204]
-- [scsi] handle command allocation failure in scsi_reset_provider (Mike Snitzer) [1105204]
-- [block] properly stack underlying max_segment_size to DM device (Mike Snitzer) [1105204]
-- [block] remove elv_abort_queue and blk_abort_flushes (Mike Snitzer) [1105204]
-- [block] __elv_next_request() shouldn't call into the elevator if bypassing (Mike Snitzer) [1105204]
-- [block] trace all devices plug operation (Mike Snitzer) [1105204]
-- [block] Reserve only one queue tag for sync IO if only 3 tags are available (Mike Snitzer) [1105204]
-- [block] blk-exec: Cleaning up local variable address returned (Mike Snitzer) [1105204]
-- [block] use __blk_end_request_all to free bios and also call rq->end_io (Mike Snitzer) [1105204]
-- [block] fix RHEL kABI breakage (Mike Snitzer) [1105204]
-- [block] null_blk: fix name and description of 'queue_mode' module parameter (Mike Snitzer) [1105204]
-- [block] all blk-mq requests are tagged (Mike Snitzer) [1105204]
-- [block] bsg: update check for rq based driver for blk-mq (Mike Snitzer) [1105204]
-- [block] blk-mq: add timer in blk_mq_start_request (Mike Snitzer) [1105204]
-- [block] blk-mq: always initialize request->start_time (Mike Snitzer) [1105204]
-- [block] blk-mq: ->timeout should be cleared in blk_mq_rq_ctx_init() (Mike Snitzer) [1105204]
-- [block] blk-mq: don't allow queue entering for a dying queue (Mike Snitzer) [1105204]
-- [block] blk-mq: bump max tag depth to 10K tags (Mike Snitzer) [1105204]
-- [block] add blk_rq_set_block_pc() (Mike Snitzer) [1105204]
-- [block] ensure that bio_add_page() always accepts a page for an empty bio (Mike Snitzer) [1105204]
-- [block] add notion of a chunk size for request merging (Mike Snitzer) [1105204]
-- [block] blk-flush: clear flush_rq's tag in flush_end_io() (Mike Snitzer) [1105204]
-- [block] blk-mq: let blk_mq_tag_to_rq() take blk_mq_tags as the main parameter (Mike Snitzer) [1105204]
-- [block] blk-mq: fix regression from commit 624dbe475416 (Mike Snitzer) [1105204]
-- [block] blk-mq: handle NULL req return from blk_map_request in single queue mode (Mike Snitzer) [1105204]
-- [block] blk-mq: fix sparse warning on missed __percpu annotation (Mike Snitzer) [1105204]
-- [block] blk-mq: fix schedule from atomic context (Mike Snitzer) [1105204]
-- [block] blk-mq: move blk_mq_get_ctx_blk_mq_put_ctx to mq private header (Mike Snitzer) [1105204]
-- [block] blk-mq: push IPI or local end_io decision to __blk_mq_complete_request() (Mike Snitzer) [1105204]
-- [block] blk-mq: remember to start timeout handler for direct queue (Mike Snitzer) [1105204]
-- [block] blk-mq: blk_mq_unregister_hctx() can be static (Mike Snitzer) [1105204]
-- [block] blk-mq: make the sysfs mq/ layout reflect current mappings (Mike Snitzer) [1105204]
-- [block] blk-mq: blk_mq_tag_to_rq should handle flush request (Mike Snitzer) [1105204]
-- [block] blk-mq: request initialization optimizations (Mike Snitzer) [1105204]
-- [block] add queue flag for disabling SG merging (Mike Snitzer) [1105204]
-- [block] blk-mq: remove alloc_hctx and free_hctx methods (Mike Snitzer) [1105204]
-- [block] blk-mq: add file comments and update copyright notices (Mike Snitzer) [1105204]
-- [block] blk-mq: remove blk_mq_alloc_request_pinned (Mike Snitzer) [1105204]
-- [block] blk-mq: do not use blk_mq_alloc_request_pinned in blk_mq_map_request (Mike Snitzer) [1105204]
-- [block] blk-mq: remove blk_mq_wait_for_tags (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize request in __blk_mq_alloc_request (Mike Snitzer) [1105204]
-- [block] blk-mq: merge blk_mq_alloc_reserved_request into blk_mq_alloc_request (Mike Snitzer) [1105204]
-- [block] blk-mq: add helper to insert requests from irq context (Mike Snitzer) [1105204]
-- [block] blk-mq: remove stale comment for blk_mq_complete_request() (Mike Snitzer) [1105204]
-- [block] blk-mq: allow non-softirq completions (Mike Snitzer) [1105204]
-- [block] blk-mq: pass in suggested NUMA node to ->alloc_hctx() (Mike Snitzer) [1105204]
-- [block] only allocate/free mq_usage_counter in blk-mq (Mike Snitzer) [1105204]
-- [block] blk-mq: avoid code duplication (Mike Snitzer) [1105204]
-- [block] blk-mq: fix leak of hctx->ctx_map (Mike Snitzer) [1105204]
-- [block] blk-mq: idle all hardware contexts before freeing a queue (Mike Snitzer) [1105204]
-- [block] blk-mq: allow setting of per-request timeouts (Mike Snitzer) [1105204]
-- [block] blk-mq: export blk_mq_tag_busy_iter (Mike Snitzer) [1105204]
-- [block] blk-mq: split make request handler for multi and single queue (Mike Snitzer) [1105204]
-- [block] blk-mq: save memory by freeing requests on unused hardware queues (Mike Snitzer) [1105204]
-- [block] blk-mq: allow the hctx cpu hotplug notifier to return errors (Mike Snitzer) [1105204]
-- [block] blk-mq: Micro-optimize blk_queue_nomerges() check (Mike Snitzer) [1105204]
-- [block] Enable sysfs nomerge control for I/O requests in the plug list (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize q->nr_requests after calling blk_queue_make_request() (Mike Snitzer) [1105204]
-- [block] blk-mq: allow changing of queue depth through sysfs (Mike Snitzer) [1105204]
-- [block] blk-mq: switch ctx pending map to the sparser blk_align_bitmap (Mike Snitzer) [1105204]
-- [block] blk-mq: move the cache friendly bitmap type of out blk-mq-tag (Mike Snitzer) [1105204]
-- [block] blk-mq: improve support for shared tags maps (Mike Snitzer) [1105204]
-- [block] blk-mq: cleanup blk_mq_init_tags (Mike Snitzer) [1105204]
-- [block] blk-mq: select random tag betweet 0 and (depth - 1) (Mike Snitzer) [1105204]
-- [block] blk-mq: remove barrier in bt_clear_tag() (Mike Snitzer) [1105204]
-- [block] blk-mq: use clear_bit_unlock in bt_clear_tag() (Mike Snitzer) [1105204]
-- [block] blk-mq: fix race in IO start accounting (Mike Snitzer) [1105204]
-- [block] blk-mq: use sparser tag layout for lower queue depth (Mike Snitzer) [1105204]
-- [block] blk-mq: implement new and more efficient tagging scheme (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize struct request fields individually (Mike Snitzer) [1105204]
-- [block] blk-mq: update a hotplug comment for grammar (Mike Snitzer) [1105204]
-- [block] blk-mq: add basic round-robin of what CPU to queue workqueue work on (Mike Snitzer) [1105204]
-- [block] blk-mq: remove extra requeue trace (Mike Snitzer) [1105204]
-- [block] null_blk: fix use after free (Mike Snitzer) [1105204]
-- [block] blk-mq: refactor request insertion_merging (Mike Snitzer) [1105204]
-- [block] blk-mq: remove debug BUG_ON() when draining software queues (Mike Snitzer) [1105204]
-- [block] blk-mq: fix waiting for reserved tags (Mike Snitzer) [1105204]
-- [block] ensure that the timer is always added (Mike Snitzer) [1105204]
-- [block] fold __blk_add_timer into blk_add_timer (Mike Snitzer) [1105204]
-- [block] blk-mq: respect rq_affinity (Mike Snitzer) [1105204]
-- [block] blk-mq: fix race with timeouts and requeue events (Mike Snitzer) [1105204]
-- [block] Revert: blk-mq: initialize req->q in allocation (Mike Snitzer) [1105204]
-- [block] blk-mq: fix leak of set->tags (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize req->q in allocation (Mike Snitzer) [1105204]
-- [block] blk-mq: user (1 << order) to implement order_to_size() (Mike Snitzer) [1105204]
-- [block] blk-mq: fix allocation of set->tags (Mike Snitzer) [1105204]
-- [block] blk-mq: free hctx->ctx_map when init failed (Mike Snitzer) [1105204]
-- [block] export blk_finish_request (Mike Snitzer) [1105204]
-- [block] blk-mq: rename mq_flush_work struct request member (Mike Snitzer) [1105204]
-- [block] blk-mq: add blk_mq_requeue_request (Mike Snitzer) [1105204]
-- [block] blk-mq: add blk_mq_start_hw_queues (Mike Snitzer) [1105204]
-- [block] blk-mq: add blk_mq_delay_queue (Mike Snitzer) [1105204]
-- [block] blk-mq: add async parameter to blk_mq_start_stopped_hw_queues (Mike Snitzer) [1105204]
-- [block] blk-mq: bidi support (Mike Snitzer) [1105204]
-- [block] blk-mq: allow drivers to hook into I_O completion (Mike Snitzer) [1105204]
-- [block] blk-mq: kill preempt disable_enable in blk_mq_work_fn() (Mike Snitzer) [1105204]
-- [block] blk-mq: don't use preempt_count() to check for right CPU (Mike Snitzer) [1105204]
-- [block] blk-mq: split out tag initialization, support shared tags (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize request on allocation (Mike Snitzer) [1105204]
-- [block] blk-mq: add ->init_request and ->exit_request methods (Mike Snitzer) [1105204]
-- [block] blk-mq: make ->flush_rq fully transparent to drivers (Mike Snitzer) [1105204]
-- [block] blk-mq: do not initialize req->special (Mike Snitzer) [1105204]
-- [block] blk-mq: initialize resid_len (Mike Snitzer) [1105204]
-- [block] blk-mq: simplify blk_mq_hw_sysfs_cpus_show() (Mike Snitzer) [1105204]
-- [block] blk-mq: ensure that hardware queues are always run on the mapped CPUs (Mike Snitzer) [1105204]
-- [block] add kblockd_schedule_delayed_work_on() (Mike Snitzer) [1105204]
-- [block] remove 'q' parameter from kblockd_schedule_*_work() (Mike Snitzer) [1105204]
-- [block] blk-mq: fix potential stall during CPU unplug with IO pending (Mike Snitzer) [1105204]
-- [block] remove dead code in scsi_ioctl:blk_verify_command (Mike Snitzer) [1105204]
-- [block] only calculate part_in_flight() once (Mike Snitzer) [1105204]
-- [block] relax when to modify the timeout timer (Mike Snitzer) [1105204]
-- [char] random: export add_disk_randomness (Mike Snitzer) [1105204]
-- [block] blk-mq: add REQ_SYNC early (Mike Snitzer) [1105204]
-- [block] blk-mq: Make blk_mq_cpu_notify_lock a raw spinlock (Mike Snitzer) [1105204]
-- [block] blk-mq: don't dump CPU -> hw queue map on driver load (Mike Snitzer) [1105204]
-- [block] blk-mq: fix wrong usage of hctx->state vs hctx->flags (Mike Snitzer) [1105204]
-- [block] blk-mq: allow blk_mq_init_commands() to return failure (Mike Snitzer) [1105204]
-- [block] fix regression with block enabled tagging (Mike Snitzer) [1105204]
-- [block] Stop abusing rq->csd.list in blk-softirq (Mike Snitzer) [1105204]
-- [scsi] Make sure cmd_flags are 64-bit (Mike Snitzer) [1109271]
-- [block] Replace __get_cpu_var uses (Mike Snitzer) [1105204]
-- [block] Remove useless IPI struct initialization (Mike Snitzer) [1105204]
-- [block] Stop abusing csd.list for fifo_time (Mike Snitzer) [1105204]
-- [block] blktrace: fix accounting of partially completed requests (Mike Snitzer) [1105204]
-- [fs] bio: don't write "bio: create slab" messages to syslog (Mike Snitzer) [1105204]
-- [block] make __blkdev_issue_zeroout static (Mike Snitzer) [1105204]
-- [block] Do not call sector_div() with a 64-bit divisor (Mike Snitzer) [1105204]
-- [block] add cond_resched() to potentially long running ioctl discard loop (Mike Snitzer) [1105204]
-- [kernel] smp: Rename __smp_call_function_single() to smp_call_function_single_async() (Prarit Bhargava) [1105192]
-- [kernel] smp: Remove wait argument from __smp_call_function_single() (Prarit Bhargava) [1105192]
-- [kernel] smp: Move __smp_call_function_single() below its safe version (Prarit Bhargava) [1105192]
-- [kernel] smp: Consolidate the various smp_call_function_single() declensions (Prarit Bhargava) [1105192]
-- [kernel] smp: Teach __smp_call_function_single() to check for offline cpus (Prarit Bhargava) [1105192]
-- [kernel] smp: Iterate functions through llist_for_each_entry_safe() (Prarit Bhargava) [1105192]
-- [kernel] llist: lock-less list, Add llist_for_each_entry_safe() (Prarit Bhargava) [1105192]
-- [kernel] smp: remove cpumask_ipi (Prarit Bhargava) [1105192]
-- [kernel] smp: use lockless list for smp_call_function_single (Prarit Bhargava) [1105192]
-- [kernel] smp: fix generic_exec_single indentation (Prarit Bhargava) [1105192]
-- [kernel] smp: quit unconditionally enabling irqs in on_each_cpu_mask() (Prarit Bhargava) [1105192]
-- [kernel] smp: free related resources when failure occurs in hotplug_cfd() (Prarit Bhargava) [1105192]
-- [kernel] smp/generic-ipi/locking: Fix misleading smp_call_function_any() description (Prarit Bhargava) [1105192]
-- [kernel] smp/generic-ipi: Kill unnecessary variable - csd_flags (Prarit Bhargava) [1105192]
-- [kernel] init: remove __cpuinit sections from the kernel (Prarit Bhargava) [1105893]
-- [block] blk-mq: remove newly added instances of __cpuinit (Prarit Bhargava) [1105893]
-- [misc] delete __cpuinit usage from all remaining drivers files (Prarit Bhargava) [1105893]
-- [kernel] delete __cpuinit usage from all core kernel files (Prarit Bhargava) [1105893]
-- [block] delete __cpuinit usage from all block files (Prarit Bhargava) [1105893]
-- [acpi] delete __cpuinit usage from all acpi files (Prarit Bhargava) [1105893]
-- [kernel] rcu: delete __cpuinit usage from all rcu files (Prarit Bhargava) [1105893]
-- [net] delete __cpuinit usage from all net files (Prarit Bhargava) [1105893]
-- [hwmon] delete __cpuinit usage from all hwmon files (Prarit Bhargava) [1105893]
-- [clocksource] delete __cpuinit usage from all related files (Prarit Bhargava) [1105893]
-- [x86] delete __cpuinit usage from all x86 files (Prarit Bhargava) [1105893]
-- [s390] delete __cpuinit usage from all s390 files (Prarit Bhargava) [1105893]
-- [powerpc] Delete __cpuinit usage from all users (Prarit Bhargava) [1105893]
-
-* Wed Jul 16 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-135.el7]
-- [pci] hotplug: Avoid warning when _ADR not present (Myron Stowe) [1114228]
-- [pci] hotplug/acpi: Drop unused acpiphp_debug declaration (Myron Stowe) [1114228]
-- [acpi] scan: Set flags.match_driver in acpi_bus_scan_fixed() (Myron Stowe) [1114228]
-- [acpi] pci_root: Clear driver_data before failing enumeration (Myron Stowe) [1114228]
-- [acpi] hotplug: Fix PCI host bridge hot removal (Myron Stowe) [1114228]
-- [acpi] hotplug: Fix acpi_bus_get_device() return value check (Myron Stowe) [1114228]
-- [acpi] hotplug: Consolidate deferred execution of ACPI hotplug routines (Myron Stowe) [1114228]
-- [acpi] hotplug: Do not execute "insert in progress" _OST (Myron Stowe) [1114228]
-- [acpi] hotplug: Carry out PCI root eject directly (Myron Stowe) [1114228]
-- [acpi] hotplug: Merge device hot-removal routines (Myron Stowe) [1114228]
-- [acpi] hotplug: Make acpi_bus_hot_remove_device() internal (Myron Stowe) [1114228]
-- [acpi] hotplug: Simplify device ejection routines (Myron Stowe) [1114228]
-- [acpi] hotplug: Fix handle_root_bridge_removal() (Myron Stowe) [1114228]
-- [acpi] hotplug: Refuse to hot-remove all objects with disabled hotplug (Myron Stowe) [1114228]
-- [acpi] scan: Start matching drivers after trying scan handlers (Myron Stowe) [1114228]
-- [acpi] Remove acpi_pci_slot_init() headers from internal.h (Myron Stowe) [1114228]
-- [pci] Revert: acpi / hotplug / pci: Avoid doing too much for spurious notifies (Myron Stowe) [1114228]
-- [base] Release device_hotplug_lock when store_mem_state returns EINVAL (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop WARN_ON() from acpiphp_enumerate_slots() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Fix error code path in acpiphp_enumerate_slots() (Myron Stowe) [1114228]
-- [acpi] memhotplug: Use defined marco METHOD_NAME__STA (Myron Stowe) [1114228]
-- [acpi] hotplug: Use kobject_init_and_add() instead of _init() and _add() (Myron Stowe) [1114228]
-- [acpi] hotplug: Don't set kobject parent pointer explicitly (Myron Stowe) [1114228]
-- [acpi] hotplug: Set kobject name via kobject_add(), not kobject_set_name() (Myron Stowe) [1114228]
-- [base] hotplug: Remove cpu_hotplug_driver_lock() (Myron Stowe) [1114228]
-- [x86] hotplug: Disable ARCH_CPU_PROBE_RELEASE on x86 (Myron Stowe) [1114228]
-- [x86] hotplug: Add hotplug lock to missing places (Myron Stowe) [1114228]
-- [x86] hotplug: Fix online state in cpu0 debug interface (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Avoid parent bus rescans on spurious device checks (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Use _OST to notify firmware about notify status (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Avoid doing too much for spurious notifies (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Don't trim devices before scanning the namespace (Myron Stowe) [1114228]
-- [kernel] power/hibernate/memory_hotplug: Rework mutual exclusion (Myron Stowe) [1114228]
-- [kernel] power/hibernate: Create memory bitmaps after freezing user space (Myron Stowe) [1114228]
-- [acpi] scan: Change ordering of locks for device hotplug (Myron Stowe) [1114228]
-- [acpi] hotplug: Remove containers synchronously (Myron Stowe) [1114228]
-- [base] core/acpi: Avoid device hot remove locking issues (Myron Stowe) [1114228]
-- [base] introduce help macro to_memory_block (Myron Stowe) [1114228]
-- [base] use standard device online/offline for state change (Myron Stowe) [1114228]
-- [base] refactor add_memory_section() to add_memory_block() (Myron Stowe) [1114228]
-- [base] remove improper get/put in add_memory_section() (Myron Stowe) [1114228]
-- [base] reduce add_memory_section() for boot-time only (Myron Stowe) [1114228]
-- [base] unshare add_memory_section() from hotplug (Myron Stowe) [1114228]
-- [base] use device get/put functions (Myron Stowe) [1114228]
-- [base] remove unneeded variable (Myron Stowe) [1114228]
-- [base] move mutex lock out of add_memory_section() (Myron Stowe) [1114228]
-- [acpi] sleep: Hold acpi_scan_lock over system PM transitions (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Fix NULL pointer dereference in cleanup_bridge() (Myron Stowe) [1114228]
-- [base] cpu: Check if NUMA node is valid before bringing CPU up (Myron Stowe) [1114228]
-- [pci] acpi: Use dev_dbg() instead of dev_info() in acpi_pci_set_power_state() (Myron Stowe) [1114228]
-- [acpi] sleep: Introduce acpi_os_prepare_extended_sleep() for extended sleep (Myron Stowe) [1114228]
-- [base] core: replace strict_strto*() with kstrto*() (Myron Stowe) [1114228]
-- [acpi] dock: fix error return code in dock_add() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Get rid of check_sub_bridges() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Clean up bridge_mutex usage (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Redefine enable_device() and disable_device() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Sanitize acpiphp_get_(latch) (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Get rid of unused constants in acpiphp.h (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Check for new devices on enabled slots (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Allow slots without new devices to be rescanned (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Do not check SLOT_ENABLED in enable_device() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Do not exectute _PS0 and _PS3 directly (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Do not queue up event handling work items in vain (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Consolidate slot disabling and ejecting (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop redundant checks from check_hotplug_bridge() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Rework namespace scanning and trimming routines (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Store parent in functions and bus in slots (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop handle field from struct acpiphp_bridge (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop handle field from struct acpiphp_func (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Embed function struct into struct acpiphp_context (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop flags field from struct acpiphp_bridge (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop sun field from struct acpiphp_slot (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Register all devices under the given bridge (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Refactor slot allocation code in register_slot() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Drop func field from struct acpiphp_bridge (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Merge hotplug event handling functions (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Pass hotplug context objects to event handlers (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Rework acpiphp_handle_to_bridge() (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Unified notify handler for hotplug events (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Hotplug context objects for bridges and functions (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Always return success after adding a function (Myron Stowe) [1114228]
-- [acpi] hotplug/pci: Consolidate acpiphp_enumerate_slots() (Myron Stowe) [1114228]
-- [acpi] pci: Make bus registration and unregistration symmetric (Myron Stowe) [1114228]
-- [x86] pci: prevent re-allocation of already existing bridge and ROM resource (Myron Stowe) [1114228]
-- [acpi] dock: Drop unnecessary local variable from dock_add() (Myron Stowe) [1114228]
-- [acpi] dock/pci: Drop ACPI dock notifier chain (Myron Stowe) [1114228]
-- [acpi] dock: Do not check CONFIG_ACPI_DOCK_MODULE (Myron Stowe) [1114228]
-- [acpi] dock: Do not leak memory on falilures to add a dock station (Myron Stowe) [1114228]
-- [acpi] Drop ACPI bus notifier call chain (Myron Stowe) [1114228]
-- [acpi] dock: Rework the handling of notifications (Myron Stowe) [1114228]
-- [acpi] dock: Simplify dock_init_hotplug() and dock_release_hotplug() (Myron Stowe) [1114228]
-- [acpi] dock: Walk list in reverse order during removal of devices (Myron Stowe) [1114228]
-- [acpi] dock: Rework and simplify find_dock_devices() (Myron Stowe) [1114228]
-- [acpi] dock: Drop the hp_lock mutex from struct dock_station (Myron Stowe) [1114228]
-- [acpi] simplify acpiphp driver with new helper functions (Myron Stowe) [1114228]
-- [acpi] simplify dock driver with new helper functions (Myron Stowe) [1114228]
-- [acpi] Export acpi_(bay) (Myron Stowe) [1114228]
-- [acpi] introduce two helper functions for _EJ0 and _LCK (Myron Stowe) [1114228]
-- [acpi] introduce helper function acpi_execute_simple_method() (Myron Stowe) [1114228]
-- [acpi] introduce helper function acpi_has_method() (Myron Stowe) [1114228]
-- [acpi] dock: simplify dock_create_acpi_device() (Myron Stowe) [1114228]
-- [acpi] dock: mark initialization functions with __init (Myron Stowe) [1114228]
-- [acpi] dock: drop redundant spin lock in dock station object (Myron Stowe) [1114228]
-- [acpi] dock: avoid initializing acpi_dock_notifier_list multiple times (Myron Stowe) [1114228]
-- [base] Use attribute groups to create sysfs memory files (Myron Stowe) [1114228]
-- [mm] hugetlb: add support for gigantic page allocation at runtime (Luiz Capitulino) [996763]
-- [mm] hugetlb: move helpers up in the file (Luiz Capitulino) [996763]
-- [mm] hugetlb: update_and_free_page(), don't clear PG_reserved bit (Luiz Capitulino) [996763]
-- [mm] hugetlb: add hstate_is_gigantic() (Luiz Capitulino) [996763]
-- [mm] hugetlb: fix and clean-up node iteration code to alloc or free (Luiz Capitulino) [996763]
-- [mm] dma-contiguous: clean source code and prepare for device tree (Luiz Capitulino) [996763]
-- [mm] cma: Move dma contiguous changes into a seperate config (Luiz Capitulino) [996763]
-- [thermal] intel_powerclamp: Fix cstate counter detection (Steve Best) [1103376]
-- [thermal] Tidy up error handling in powerclamp_init (Steve Best) [1103376]
-- [thermal] intel_powerclamp: Add newer CPU models (Steve Best) [1103376]
-- [security] selinux: Increase ebitmap_node size for 64-bit configuration (Paul Moore) [922752]
-- [security] selinux: Reduce overhead of mls_level_isvalid() function call (Paul Moore) [922752]
-- [powerpc] mm: fix ".__node_distance" undefined (David Milburn) [1081734]
-- [block] nvme: Retry failed commands with non-fatal error (David Milburn) [1081734]
-- [block] nvme: Fix divide-by-zero in nvme_trans_io_get_num_cmds (David Milburn) [1081734]
-- [block] nvme: Add getgeo to block ops (David Milburn) [1081734]
-- [block] nvme: Start-stop nvme_thread during device add-remove (David Milburn) [1081734]
-- [block] nvme: Make I/O timeout a module parameter (David Milburn) [1081734]
-- [block] nvme: CPU hot plug notification (David Milburn) [1081734]
-- [block] nvme: per-cpu io queues (David Milburn) [1081734]
-- [block] nvme: Replace DEFINE_PCI_DEVICE_TABLE (David Milburn) [1081734]
-- [block] nvme: IOCTL path RCU protect queue access (David Milburn) [1081734]
-- [block] nvme: RCU protected access to io queues (David Milburn) [1081734]
-- [block] nvme: Initialize device reference count earlier (David Milburn) [1081734]
-- [scsi] fnic: fix broken FIP discovery by initializing multicast address (Chris Leech) [1100078]
-- [scsi] libfcoe: Make fcoe_sysfs optional / fix fnic NULL exception (Chris Leech) [1100078]
-
-* Mon Jul 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-134.el7]
-- [fs] nfs: populate ->net in mount data when remounting (Steve Dickson) [1113248]
-- [fs] nfs: fix lockup caused by pnfs_generic_pg_test (Steve Dickson) [1113248]
-- [fs] nfs: Fix typo in dprintk (Steve Dickson) [1113248]
-- [fs] nfs: Comment is now wrong and redundant to code (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Disconnect on registration failure (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove BUG_ON() call sites (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Avoid deadlock when credit window is reset (Steve Dickson) [1113248]
-- [net] sunrpc: Move congestion window constants to header file (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Reset connection timeout after successful reconnect (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Use macros for reconnection timeout constants (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Allocate missing pagelist (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove Tavor MTU setting (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Ensure ia->ri_id->qp is not NULL when reconnecting (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Reduce the number of hardway buffer allocations (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Limit work done by completion handler (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Reduce calls to ib_poll_cq() in completion handlers (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Reduce lock contention in completion handlers (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Split the completion queue (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Make rpcrdma_ep_destroy() return void (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Simplify rpcrdma_deregister_external() synopsis (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: mount reports "Invalid mount option" if memreg mode not supported (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Fall back to MTHCAFMR when FRMR is not supported (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove REGISTER memory registration mode (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove MEMWINDOWS registration modes (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Remove BOUNCEBUFFERS memory registration mode (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: RPC/RDMA must invoke xprt_wake_pending_tasks() in process context (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: Fix for FMR leaks (Steve Dickson) [1113248]
-- [net] sunrpc/xprtrdma: mind the device's max fast register page list depth (Steve Dickson) [1113248]
-- [fs] nfs: Push the file layout driver into a subdirectory (Steve Dickson) [1113248]
-- [fs] nfs: Handle allocation errors correctly in objlayout_alloc_layout_hdr() (Steve Dickson) [1113248]
-- [fs] nfs: Handle allocation errors correctly in filelayout_alloc_layout_hdr() (Steve Dickson) [1113248]
-- [fs] nfs: Use error handler on failed GETATTR with successful OPEN (Steve Dickson) [1113248]
-- [fs] nfs: Fix a potential busy wait in nfs_page_group_lock (Steve Dickson) [1113248]
-- [fs] nfs: Fix error handling in __nfs_pageio_add_request (Steve Dickson) [1113248]
-- [net] sunrpc: suppress allocation warning in rpc_malloc() (Steve Dickson) [1113248]
-- [fs] nfs: support page groups in nfs_read_completion (Steve Dickson) [1113248]
-- [fs] nfs: support non page aligned layouts (Steve Dickson) [1113248]
-- [fs] nfs: allow non page aligned pnfs layout segments (Steve Dickson) [1113248]
-- [fs] nfs: support multiple verfs per direct req (Steve Dickson) [1113248]
-- [fs] nfs: remove data list from pgio header (Steve Dickson) [1113248]
-- [fs] nfs: use > 1 request to handle bsize < PAGE_SIZE (Steve Dickson) [1113248]
-- [fs] nfs: chain calls to pg_test (Steve Dickson) [1113248]
-- [fs] nfs: allow coalescing of subpage requests (Steve Dickson) [1113248]
-- [fs] nfs: clean up filelayout_alloc_commit_info (Steve Dickson) [1113248]
-- [fs] nfs: page group support in nfs_mark_uptodate (Steve Dickson) [1113248]
-- [fs] nfs: page group syncing in write path (Steve Dickson) [1113248]
-- [fs] nfs: page group syncing in read path (Steve Dickson) [1113248]
-- [fs] nfs: add support for multiple nfs reqs per page (Steve Dickson) [1113248]
-- [fs] nfs: call nfs_can_coalesce_requests for every req (Steve Dickson) [1113248]
-- [fs] nfs: modify pg_test interface to return size_t (Steve Dickson) [1113248]
-- [fs] nfs: remove unused arg from nfs_create_request (Steve Dickson) [1113248]
-- [fs] nfs: clean up PG_* flags (Steve Dickson) [1113248]
-- [fs] nfs: fix race in filelayout commit path (Steve Dickson) [1113248]
-- [fs] nfs: Create a common nfs_pageio_ops struct (Steve Dickson) [1113248]
-- [fs] nfs: Create a common generic_pg_pgios() (Steve Dickson) [1113248]
-- [fs] nfs: Create a common multiple_pgios() function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common initiate_pgio() function (Steve Dickson) [1113248]
-- [fs] nfs: Create a generic_pgio function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common pgio_error function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common rpcsetup function for reads and writes (Steve Dickson) [1113248]
-- [fs] nfs: Create a common rpc_call_ops struct (Steve Dickson) [1113248]
-- [fs] nfs: Create a common nfs_pgio_result_common function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common pgio_rpc_prepare function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common rw_header_alloc and rw_header_free function (Steve Dickson) [1113248]
-- [fs] nfs: Create a common pgio_alloc and pgio_release function (Steve Dickson) [1113248]
-- [fs] nfs: Move the write verifier into the nfs_pgio_header (Steve Dickson) [1113248]
-- [fs] nfs: Create a common read and write header struct (Steve Dickson) [1113248]
-- [fs] nfs: Create a common read and write data struct (Steve Dickson) [1113248]
-- [fs] nfs: Create a common results structure for reads and writes (Steve Dickson) [1113248]
-- [fs] nfs: Create a common argument structure for reads and writes (Steve Dickson) [1113248]
-- [fs] nfs: remove ->read_pageio_init from rpc ops (Steve Dickson) [1113248]
-- [fs] nfs: remove ->write_pageio_init from rpc ops (Steve Dickson) [1113248]
-- [fs] nfs: commit layouts in fdatasync (Steve Dickson) [1113248]
-- [net] sunrpc: Fix a module reference issue in rpcsec_gss (Steve Dickson) [1113248]
-- [fs] nfs: Don't ignore suid/sgid bit changes after a successful write (Steve Dickson) [1113248]
-- [fs] nfs: Don't declare inode uptodate unless all attributes were checked (Steve Dickson) [1113248]
-- [fs] nfs: Fix memroy leak for double mounts (Steve Dickson) [1113248]
-- [fs] nfs: pass string length to pr_notice message about readdir loops (Steve Dickson) [1111170]
-- [net] sunrpc: rpc_restart_call/rpc_restart_call_prepare should clear task->tk_status (Steve Dickson) [1111170]
-- [net] sunrpc: Don't let rpc_delay() clobber non-timeout errors (Steve Dickson) [1111170]
-- [net] sunrpc: Ensure call_status() deals correctly with SOFTCONN tasks (Steve Dickson) [1111170]
-- [fs] nfs: Clear the open state flags if the new stateid does not match (Steve Dickson) [1111170]
-- [fs] nfs: Use correct locking when updating nfs4_state in nfs4_close_done (Steve Dickson) [1111170]
-- [fs] nfs: Ensure that we free existing layout segments if we get a new layout (Steve Dickson) [1111170]
-- [fs] nfs: Minor optimisation in get_layout_by_fh_locked() (Steve Dickson) [1111170]
-- [fs] nfs: Ensure that the layout recall callback matches layout stateids (Steve Dickson) [1111170]
-- [fs] nfs: Don't update the open stateid unless it is newer than the old one (Steve Dickson) [1111170]
-- [fs] nfs: Fix wraparound issues in pnfs_seqid_is_newer() (Steve Dickson) [1111170]
-- [fs] nfs: Be more aggressive in using readdirplus for 'ls -l' situations (Steve Dickson) [1111170]
-- [net] sunrpc: RPC callbacks may be split across several TCP segments (Steve Dickson) [1111170]
-- [net] sunrpc: Fix oops when trace sunrpc_task events in nfs client (Steve Dickson) [1111170]
-- [fs] nfs: Fail the truncate() if the lock/open stateid is invalid (Steve Dickson) [1111170]
-- [fs] nfs: Fail data server I/O if stateid represents a lost lock (Steve Dickson) [1111170]
-- [fs] nfs: Fix the return value of nfs4_select_rw_stateid (Steve Dickson) [1111170]
-- [fs] nfs: nfs4_stateid_is_current should return 'true' for an invalid stateid (Steve Dickson) [1111170]
-- [fs] nfs: Fix a delegation callback race (Steve Dickson) [1111170]
-- [fs] nfs: Fix another nfs4_sequence corruptor (Steve Dickson) [1111170]
-- [fs] nfsd: fix bug for readdir of pseudofs ("J. Bruce Fields") [1109733 1111719]
-- [fs] nfsd: Don't hand out delegations for 30 seconds after recalling them ("J. Bruce Fields") [1111227 1111719]
-- [fs] nfsd: fix FREE_STATEID lockowner leak ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't halt scanning the DRC LRU list when there's an RC_INPROG entry ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill READ64 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill READ32 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: simplify server xdr->next_page use ("J. Bruce Fields") [1111719]
-- [fs] nfsd: hash deleg stateid only on successful nfs4_set_delegation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: rename recall_lock to state_lock ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove unneeded zeroing of fields in nfsd4_proc_compound ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix setting of NFS4_OO_CONFIRMED in nfsd4_open ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use recall_lock for delegation hashing ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix laundromat next-run-time calculation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: make nfsd4_encode_fattr static ("J. Bruce Fields") [1111719]
-- [net] sunrpc: Remove using of dprintk with KERN_WARNING ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove unused function nfsd_read_file ("J. Bruce Fields") [1111719]
-- [fs] nfsd: getattr for FATTR4_WORD0_FILES_AVAIL needs the statfs buffer ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Error out when getting more than one fsloc/secinfo/uuid ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Using type of uint32_t for ex_nflavors instead of int ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Add missing comment of "expiry" in expkey_parse() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Remove typedef of svc_client and svc_export in export.c ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Cleanup unneeded including net/ipv6.h ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove unneeded linux/user_namespace.h include ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Adds macro EX_UUID_LEN for exports uuid's length ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Helper function for parsing uuid ("J. Bruce Fields") [1111719]
-- [fs] nfsd:Avoid NULL reference or double free in nfsd4_fslocs_free() ("J. Bruce Fields") [1109733 1111719]
-- [fs] nfsd: better reservation of head space for krb5 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill write32, write64 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill WRITEMEM ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill WRITE64 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: kill WRITE32 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: really fix nfs4err_resource in 4.1 case ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow exotic read compounds ("J. Bruce Fields") [1111719]
-- [fs] nfsd: more read encoding cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: read encoding cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: separate splice and readv cases ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd_vfs_read doesn't use file handle parameter ("J. Bruce Fields") [1111719]
-- [fs] nfsd: turn off zero-copy-read in exotic cases ("J. Bruce Fields") [1111719]
-- [fs] nfsd: estimate sequence response size ("J. Bruce Fields") [1111719]
-- [fs] nfsd: better estimate of getattr response size ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't treat readlink like a zero-copy operation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: enforce rd_dircount ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow large readdirs ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use session limits to release send buffer reservation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: adjust buflen to session channel limit ("J. Bruce Fields") [1111719]
-- [net] sunrpc: define xdr_restrict_buflen ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix buflen calculation after read encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_check_resp_size should check against whole buffer ("J. Bruce Fields") [1111719]
-- [fs] nfsd: minor encode_read cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: more precise nfsd4_max_reply ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't try to encode conflicting owner if low on space ("J. Bruce Fields") [1111719]
-- [fs] nfsd: convert 4.1 replay encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow encoding across page boundaries ("J. Bruce Fields") [1023319 1111719]
-- [fs] nfsd: size-checking cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove redundant encode buffer size checking ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_check_resp_size needn't recalculate length ("J. Bruce Fields") [1111719]
-- [fs] nfsd: reserve space before inlining 0-copy pages ("J. Bruce Fields") [1111719]
-- [fs] nfsd: teach encoders to handle reserve_space failures ("J. Bruce Fields") [1111719]
-- [fs] nfsd: "backfill" using write_bytes_to_xdr_buf ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use xdr_truncate_encode ("J. Bruce Fields") [1111719]
-- [net] sunrpc: xdr_truncate_encode ("J. Bruce Fields") [1111719]
-- [fs] nfsd: keep xdr buf length updated ("J. Bruce Fields") [1111719]
-- [fs] nfsd: no need for encode_compoundres to adjust lengths ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove ADJUST_ARGS ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use xdr_stream throughout compound encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use xdr_reserve_space in attribute encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow space for final error return ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix encoding of out-of-space replies ("J. Bruce Fields") [1111719]
-- [fs] nfsd: reserve head space for krb5 integ/priv info ("J. Bruce Fields") [1111719]
-- [fs] nfsd: move proc_compound xdr encode init to helper ("J. Bruce Fields") [1111719]
-- [fs] nfsd: tweak nfsd4_encode_getattr to take xdr_stream ("J. Bruce Fields") [1111719]
-- [fs] nfsd: embed xdr_stream in nfsd4_compoundres ("J. Bruce Fields") [1111719]
-- [fs] nfsd: decoding errors can still be cached and require space ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix write reply size estimate ("J. Bruce Fields") [1111719]
-- [fs] nfsd: read size estimate should include padding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: allow larger 4.1 session drc slots ("J. Bruce Fields") [1111719]
-- [fs] nfsd: READ, READDIR, etc., are idempotent ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Only set PF_LESS_THROTTLE when really needed ("J. Bruce Fields") [1111719]
-- [net] sunrpc: track whether a request is coming from a loop-back interface ("J. Bruce Fields") [1111719]
-- [net] sunrpc: Fix a module reference leak in svc_handle_xprt ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Ignore client's source port on RDMA transports ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove nfsd4_free_slab ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Remove assignments inside conditions ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix delegation cleanup on error ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Don't clear SUID/SGID after root writing data ("J. Bruce Fields") [1111719]
-- [fs] nfsd: warn on finding lockowner without stateid's ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove lockowner when removing lock stateid ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix corruption on setting an ACL ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Get rid of empty function nfs4_state_init ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Use simple_read_from_buffer for coping data to userspace ("J. Bruce Fields") [1111719]
-- [fs] nfsd: clean up fh_auth usage ("J. Bruce Fields") [1111719]
-- [fs] nfsd: cleanup unneeded including linux/export.h ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Clean up nfs4_preprocess_stateid_op ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Mark nfs4_free_lockowner and nfs4_free_openowner as static functions ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove <linux/nfsd/debug.h> ("J. Bruce Fields") [1111719]
-- [fs] nfsd: move <linux/nfsd/stats.h> to fs/nfsd ("J. Bruce Fields") [1111719]
-- [fs] nfsd: move <linux/nfsd/export.h> to fs/nfsd ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove <linux/nfsd/nfsfh.h> ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Remove 'inline' designation for free_client() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: call rpc_destroy_wait_queue() from free_client() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Move default initialisers from create_client() to alloc_client() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: set timeparms.to_maxval in setup_callback_client ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't create unnecessary mask acl ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't return high mode bits" ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix memory leak in nfsd4_encode_fattr() ("J. Bruce Fields") [1111719]
-- [fs] nfsd: check passed socket's net matches NFSd superblock's one ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Check rpc_xprt out of xs_setup_bc_tcp ("J. Bruce Fields") [1111719]
-- [net] sunrpc: New helper for creating client with rpc_xprt ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Free backchannel xprt in bc_destroy ("J. Bruce Fields") [1111719]
-- [net] sunrpc: fix memory leak of peer addresses in XPRT ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Clear wcc data between compound ops ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Don't return NFS4ERR_STALE_STATEID for NFSv4.1+ ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix setclientid encode size ("J. Bruce Fields") [1111719]
-- [fs] nfsd: remove redundant check from nfsd4_check_resp_size ("J. Bruce Fields") [1111719]
-- [fs] nfsd: use more generous NFS4_ACL_MAX ("J. Bruce Fields") [1111719]
-- [fs] nfsd: minor nfsd4_replay_cache_entry cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_replay_cache_entry should be static ("J. Bruce Fields") [1111719]
-- [fs] nfsd: update comments with obsolete function name ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Using free_conn free connection ("J. Bruce Fields") [1111719]
-- [fs] nfsd: typo in nfsd_rename comment ("J. Bruce Fields") [1111719]
-- [fs] nfsd: simplify saved/current fh uses in nfsd4_proc_compound ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Traverse unconfirmed client through hash-table ("J. Bruce Fields") [1111719]
-- [net] svcrpc: explicitly reject compounds that are not padded out to 4-byte multiple ("J. Bruce Fields") [1111719]
-- [fs] nfsd: notify_change needs elevated write count ("J. Bruce Fields") [1111719 1115034]
-- [fs] nfsd: fix test_stateid error reply encoding ("J. Bruce Fields") [1111719]
-- [fs] nfsd: leave reply buffer space for failed setattr ("J. Bruce Fields") [1111719]
-- [fs] nfsd: make set of large acl return efbig, not resource ("J. Bruce Fields") [1111719]
-- [fs] nfsd: session needs room for following op to error out ("J. Bruce Fields") [1111719]
-- [fs] nfsd: buffer-length check for SUPPATTR_EXCLCREAT ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix lost nfserrno() call in nfsd_setattr() ("J. Bruce Fields") [1111719]
-- [net] sunrpc: Mark functions as static in net/sunrpc/svc_xprt.c ("J. Bruce Fields") [1111719]
-- [fs] nfsd: decrease nfsd4_encode_fattr stack usage ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix encode_entryplus_baggage stack usage ("J. Bruce Fields") [1111719]
-- [fs] nfsd: simplify xdr encoding of nfsv4 names ("J. Bruce Fields") [1111719]
-- [fs] nfsd: encode_rdattr_error cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_encode_fattr cleanup ("J. Bruce Fields") [1111719]
-- [fs] nfsd: better VERIFY comment ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Fix a memory leak in nfsd4_create_session ("J. Bruce Fields") [1111719]
-- [fs] nfsd: get rid of unused function definition ("J. Bruce Fields") [1111719]
-- [fs] nfsd:Define op_iattr for nfsd4_open instead using macro ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix compile warning without CONFIG_NFSD_V3 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Don't start lockd when only NFSv4 is running ("J. Bruce Fields") [1111719]
-- [net] sunrpc: Support a new option for ignoring the result of svc_register ("J. Bruce Fields") [1103348 1111719]
-- [fs] nfsd: fix bad length checking for backchannel ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix a leak which can cause CREATE_SESSION failures ("J. Bruce Fields") [1111719]
-- [fs] nfsd:Add missing recording of back channel attrs in nfsd4_session ("J. Bruce Fields") [1111719]
-- [fs] nfsd: get rid of unused macro definition ("J. Bruce Fields") [1111719]
-- [fs] nfsd: clean up unnecessary temporary variable in nfsd4_decode_fattr ("J. Bruce Fields") [1111719]
-- [fs] nfsd: using nfsd4_encode_noop for encoding destroy_session/free_stateid ("J. Bruce Fields") [1111719]
-- [fs] nfsd: clean up an xdr reserved space calculation ("J. Bruce Fields") [1111719]
-- [fs] nfsd: get rid of unused function definition ("J. Bruce Fields") [1111719]
-- [fs] nfsd: calculate the missing length of bitmap in EXCHANGE_ID ("J. Bruce Fields") [1111719]
-- [fs] nfsd: revoking of suid/sgid bits after chown() in a consistent way ("J. Bruce Fields") [1111719]
-- [net] sunrpc: fix some typos ("J. Bruce Fields") [1111719]
-- [fs] nfsd: start documenting some XDR handling functions ("J. Bruce Fields") [1111719]
-- [fs] nfsd: don't return high mode bits ("J. Bruce Fields") [1111719]
-- [fs] nfsd: export proper maximum file size to the client ("J. Bruce Fields") [1111719]
-- [fs] nfsd: improve write performance with better sendspace reservations ("J. Bruce Fields") [1111719]
-- [net] svcrpc: remove an unnecessary assignment ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Add support for NFS v4.2 operation checking ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd_shutdown_net needs state lock ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Combine decode operations for v4 and v4.1 ("J. Bruce Fields") [1111719]
-- [fs] nfsd: -EINVAL on invalid anonuid/gid instead of silent failure ("J. Bruce Fields") [1111719]
-- [fs] nfsd: return better errors to exportfs ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fh_update should error out in unexpected cases ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix Kconfig syntax ("J. Bruce Fields") [1111719]
-- [fs] nfsd: switch to p(dD) ("J. Bruce Fields") [1111719]
-- [fs] nfsd: racy access to ->d_name in nsfd4_encode_path() ("J. Bruce Fields") [1111719]
-- [net] svcrpc: remove unused rq_resused ("J. Bruce Fields") [1111719]
-- [fs] nfsd: nfsd4_create_clid_dir prints uninitialized data ("J. Bruce Fields") [1111719]
-- [fs] nfsd: Fix MACH_CRED NULL dereference ("J. Bruce Fields") [1111719]
-- [fs] nfsd: fix xdr decoding of large non-write compounds ("J. Bruce Fields") [1095061 1111719]
-- [fs] gfs2: When using flock() a GFS2 filesystem hangs (Robert S Peterson) [1111624]
-- [fs] nfs: emit a fsnotify_nameremove call in sillyrename codepath (Jeff Layton) [919347]
-- [fs] nfs: remove synchronous rename code (Jeff Layton) [919347]
-- [fs] nfs: convert nfs_rename to use async_rename infrastructure (Jeff Layton) [919347]
-- [fs] nfs: make nfs_async_rename non-static (Jeff Layton) [919347]
-- [fs] nfs: abstract out code needed to complete a sillyrename (Jeff Layton) [919347]
-- [fs] gfs2: Fix race in glock lru glock disposal (Robert S Peterson) [1095835]
-- [fs] gfs2: Use lockref for glocks (Robert S Peterson) [1095835]
-- [fs] cifs: Fix check for regular file in couldbe_mf_symlink() (Sachin Prabhu) [1077230]
-- [fs] cifs: Re-order M-F Symlink code (Sachin Prabhu) [1077230]
-- [fs] cifs: Add create MFSymlinks to protocol ops struct (Sachin Prabhu) [1077230]
-- [fs] cifs: use protocol specific call for query_mf_symlink() (Sachin Prabhu) [1077230]
-- [fs] cifs: Rename MF symlink function names (Sachin Prabhu) [1077230]
-- [fs] cifs: Rename and cleanup open_query_close_cifs_symlink() (Sachin Prabhu) [1077230]
-- [fs] cifs: We do not drop reference to tlink in CIFSCheckMFSymlink() (Sachin Prabhu) [1077230]
-
-* Tue Jul 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-133.el7]
-- [s390] af_iucv: recvmsg problem for SOCK_STREAM sockets (Hendrik Brueckner) [1109703]
-- [s390] af_iucv: correct cleanup if listen backlog is full (Hendrik Brueckner) [1109033]
-- [kernel] auditsc: audit_krule mask accesses need bounds checking (Denys Vlasenko) [1102710] {CVE-2014-3917}
-- [fs] nfs: Don't mark the data cache as invalid if it has been flushed (Scott Mayhew) [1114054]
-- [fs] nfs: Clear NFS_INO_REVAL_PAGECACHE when we update the file size (Scott Mayhew) [1114054]
-- [fs] nfs: Fix cache_validity check in nfs_write_pageuptodate() (Scott Mayhew) [1114054]
-- [mm] avoid kABI breakage (Jerome Marchand) [1097419]
-- [mm] swap: change swap_list_head to plist, add swap_avail_head (Jerome Marchand) [1097419]
-- [lib] plist: add plist_requeue (Jerome Marchand) [1097419]
-- [lib] plist: add helper functions (Jerome Marchand) [1097419]
-- [mm] swap: change swap_info singly-linked list to list_head (Jerome Marchand) [1097419]
-- [block] mtip32xx: mtip_async_complete() bug fixes (Jeff Moyer) [1102281]
-- [block] mtip32xx: Unmap the DMA segments before completing the IO request (Jeff Moyer) [1102281]
-- [ethernet] tg3: Change nvram command timeout value to 50ms (Ivan Vecera) [1086397]
-- [ethernet] tg3: Override clock, link aware and link idle mode during NVRAM dump (Ivan Vecera) [1086397]
-- [edac] sb_edac: mark MCE messages as KERN_DEBUG (Aristeu Rozanski) [1056785]
-- [edac] sb_edac: use "event" instead of "exception" when MC wasnt signaled (Aristeu Rozanski) [1056785]
-- [Documentation] MAINTAINERS: Add DesignWare, i.MX6, Armada, R-Car PCI host maintainers (Myron Stowe) [1110890]
-- [pci] Disable Bus Master only on kexec reboot (Myron Stowe) [1110890]
-- [pci] Omit PCI ID macro strings to shorten quirk names (Myron Stowe) [1110890]
-- [pci] Move device_del() from pci_stop_dev() to pci_destroy_dev() (Myron Stowe) [1110890]
-- [pci] Avoid unnecessary CPU switch when calling driver .probe() method (Myron Stowe) [1110890]
-- [Documentation] MAINTAINERS: Add Jingoo Han as Samsung Exynos PCIe driver maintainer (Myron Stowe) [1110890]
-- [Documentation] MAINTAINERS: Add Tegra PCIe maintainer (Myron Stowe) [1110890]
-- [ethernet] ixgbe: set driver_max_VFs should be done before enabling SRIOV (Alex Williamson) [1090154]
-- [ethernet] ixgbe: define IXGBE_MAX_VFS_DRV_LIMIT macro and cleanup const 63 (Alex Williamson) [1090154]
-- [fs] nfs: advertise only supported callback netids (Jeff Layton) [1048477]
-- [fs] nfs: clean up, revert increase in READDIR RPC buffer max size (Jeff Layton) [1048477]
-- [net] sunrpc: Fix large reads on NFS/RDMA (Jeff Layton) [1048477]
-- [net] sunrpc: remove KERN_INFO from dprintk() call sites (Jeff Layton) [1048477]
-- [kernel] ftrace: Hardcode ftrace_module_init() call into load_module() (Takahiro MUNEDA) [1061553]
-- [kernel] trace: Make register/unregister_ftrace_command __init (Takahiro MUNEDA) [1061553]
-- [tools] turbostat: run on HSX (Prarit Bhargava) [1081657]
-- [tools] Revert: turbostat: servers do not support uncore power register (Prarit Bhargava) [1081657]
-
-* Thu Jul 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-132.el7]
-- [net] neigh: set nud_state to NUD_INCOMPLETE when probing router reachability (Hannes Frederic Sowa) [1110193]
-- [net] bridge: Set vlan_features to allow offloads on vlans (Florian Westphal) [1058544]
-- [net] team: fix mtu setting (Jiri Pirko) [1103083]
-- [net] ptp: validate the requested frequency adjustment (Jiri Benc) [1092969]
-- [net] netfilter: ctnetlink: don't add null bindings if no nat requested (Florian Westphal) [1089929]
-- [net] netfilter: ctnetlink: force null nat binding on insert (Florian Westphal) [1089929]
-- [net] netfilter: nf_conntrack: don't release a conntrack with non-zero refcnt (Florian Westphal) [1089929]
-- [net] netfilter: nf_conntrack: fix RCU race in nf_conntrack_find_get (Florian Westphal) [1089929]
-- [net] rtnetlink: Only supply IFLA_VF_PORTS information when RTEXT_FILTER_VF is set (Jiri Pirko) [1092400]
-- [net] rtnetlink: Warn when interface's information won't fit in our packet (Jiri Pirko) [1092400]
-- [net] fib_frontend: fix possible NULL pointer dereference (Jiri Benc) [1091142]
-- [net] team: forbid incorrect fall-through in notifier (Jiri Pirko) [1090495]
-- [net] gre: don't allow to add the same tunnel twice (Florian Westphal) [1086498]
-- [net] sctp: confirm route during forward progress (Daniel Borkmann) [1089629]
-- [net] nf_conntrack: decrement global counter after object release (Jiri Pirko) [1089191]
-- [net] add busy_poll device feature (Jiri Pirko) [1080093]
-- [net] ipv6: reallocate addrconf router for ipv6 address when lo device up (Jiri Benc) [1077053]
-- [net] macvlan: Add support for 'always_on' offload features (Florian Westphal) [928644]
-- [net] macvlan: fix netdev feature propagation from lower device (Florian Westphal) [928644]
-
-* Wed Jul 02 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-131.el7]
-- [scsi] pm80xx: Spinlock fix (Rich Bono) [1044636]
-- [scsi] aacraid: Update unsupported card list (Rich Bono) [1080712]
-- [scsi] vmw_pvscsi: Some improvements in pvscsi driver (Ewan Milne) [1075090]
-- [scsi] vmw_pvscsi: Add support for I/O requests coalescing (Ewan Milne) [1075090]
-- [scsi] vmw_pvscsi: Fix pvscsi_abort() function (Ewan Milne) [1075090]
-- [net] sctp: Fix sk_ack_backlog wrap-around problem (Daniel Borkmann) [1112726] {CVE-2014-4667}
-- [net] ipv4/tunnels: fix an oops when using ipip/sit with IPsec (Jiri Pirko) [1108857]
-- [net] filter: let bpf_tell_extensions return SKF_AD_MAX (Jiri Benc) [1079524]
-- [net] filter: introduce SO_BPF_EXTENSIONS (Jiri Benc) [1079524]
-
-* Tue Jul 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-130.el7]
-- [scsi] qla2xxx: Update version number to 8.06.00.08.07.0-k3 (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Reduce the time we wait for a command to complete during SCSI error handling (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Clear loop_id for ports that are marked lost during fabric scanning (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Avoid escalating the SCSI error handler if the command is not found in firmware (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Don't check for firmware hung during the reset context for ISP82XX (Chad Dupuis) [1090378]
-- [scsi] qla2xxx: Issue abort command for outstanding commands during cleanup when only firmware is alive (Chad Dupuis) [1090378]
-- [scsi] set DID_TIME_OUT correctly (Ewan Milne) [1103881]
-- [scsi] fix invalid setting of host byte (Ewan Milne) [1103881]
-- [scsi] More USB deadlock fixes (Ewan Milne) [1103881]
-- [scsi] Fix USB deadlock caused by SCSI error handling (Ewan Milne) [1103881]
-- [scsi] Fix command result state propagation (Ewan Milne) [1103881]
-- [scsi] Fix spurious request sense in error handling (Ewan Milne) [1103881]
-- [scsi] Add timeout to avoid infinite command retry (Ewan Milne) [1061871]
-- [scsi] lpfc: Update version for 10.2.8021.0 driver release (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8001.0: Fix ExpressLane priority setup (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8001.0: Removed obsolete PCI IDs from the driver (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8001.0: Fix for initializing RRQ bitmap (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8001.0: Fix for cleaning up stale ring flag and sp_queue_event entries (Rob Evers) [1088574]
-- [scsi] lpfc: Add iotag memory barrier (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Update Copyright on changed files from 8.3.45 patches (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fixed locking for scsi task management commands (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Convert runtime references to old xlane cfg param to fof cfg param (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix FW dump using sysfs (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix SLI4 s abort loop to process all FCP rings and under ring_lock (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fixed kernel panic in lpfc_abort_handler (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix locking for postbufq when freeing (Rob Evers) [1088574]
-- [scsi] lpfc: remove self-assignments (Rob Evers) [1088574]
-- [scsi] lpfc: Using plain integer as NULL pointer (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix locking for lpfc_hba_down_post (Rob Evers) [1088574]
-- [scsi] lpfc 10.2.8000.0: Fix dynamic transitions of FirstBurst from on to off (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Fixed crash during driver unload (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Fixed driver error messages after firmware download (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Fixed missing initialization for task management IOCBs (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Fix sysfs buffer overrun in read of lpfc_fcp_cpu_map for 128 CPUs (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Incorporate changes to use reason in change_queue_depth function (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Incorporated support of a low-latency io path (Rob Evers) [1088574]
-- [scsi] lpfc 8.3.45: Added dport mailbox pass through support (Rob Evers) [1088574]
-- [scsi] be2iscsi: Bump the driver version (Rob Evers) [1088576]
-- [scsi] be2iscsi: fix bad if expression (Rob Evers) [1088576]
-- [scsi] be2iscsi: fix memory leak in error path (Rob Evers) [1088576]
-- [scsi] be2iscsi: Jump to 'free_memory' is apparently missing (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix destroy MCC-CQ before MCC-EQ is destroyed (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix memory corruption in MBX path (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix TCP parameters while connection offloading (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix interrupt Coalescing mechanism (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix exposing Host in sysfs after adapter initialization is complete (Rob Evers) [1088576]
-- [scsi] be2iscsi: Fix retreving MCCQ_WRB in non-embedded Mbox path (Rob Evers) [1088576]
-
-* Tue Jul 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-129.el7]
-- [drm] nouveau/bios: fix a bit shift error introduced by recent commit (Ulrich Obergfell) [1089936]
-- [ethernet] sfc: PIO:Restrict to 64bit arch and use 64-bit writes (Nikolay Aleksandrov) [1089024]
-- [fs] nfs: Apply NFS_MOUNT_CMP_FLAGMASK to nfs_compare_remount_data() (Scott Mayhew) [1103805]
-- [fs] gfs2: Prevent recovery before the local journal is set (Robert S Peterson) [1079433]
-- [fs] gfs2: Increase the max number of ACLs (Robert S Peterson) [1078231]
-- [fs] gfs2: check NULL return value in gfs2_ok_to_move (Abhijith Das) [1097042]
-- [fs] gfs2: Refresh quota after setting through quotactl (Abhijith Das) [1088740]
-- [kernel] hrtimer: Prevent all reprogramming if hang detected (Prarit Bhargava) [1094732]
-- [tty] Set correct tty name in 'active' sysfs attribute (Denys Vlasenko) [1066403]
-- [ethernet] bnx2x: Fix kernel crash and data miscompare after EEH recovery (Michal Schmidt) [1101808]
-- [ethernet] bnx2x: Adapter not recovery from EEH error injection (Michal Schmidt) [1067154]
-- [powerpc] tm: Disable IRQ in tm_recheckpoint (Larry Woodman) [1088224]
-- [x86] thinkpad: save and restore adaptive keyboard mode for suspend and, resume (Don Zickus) [1094476]
-- [x86] thinkpad: support Thinkpad X1 Carbon 2nd generation's adaptive keyboard (Don Zickus) [1094476]
-
-* Thu Jun 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-128.el7]
-- [lib] random32: minor cleanups and kdoc fix (Hannes Frederic Sowa) [1100299]
-- [lib] random32: avoid attempt to late reseed if in the middle of seeding (Hannes Frederic Sowa) [1100299]
-- [lib] random32: use msecs_to_jiffies for reseed timer (Hannes Frederic Sowa) [1100299]
-- [lib] random32: add __init prefix to prandom_start_seed_timer (Hannes Frederic Sowa) [1100299]
-- [lib] random32: add test cases for taus113 implementation (Hannes Frederic Sowa) [1100299]
-- [lib] random32: upgrade taus88 generator to taus113 from errata paper (Hannes Frederic Sowa) [1100299]
-- [lib] random32: move rnd_state to linux/random.h (Hannes Frederic Sowa) [1100299]
-- [lib] random32: add prandom_reseed_late() and call when nonblocking pool becomes initialized (Hannes Frederic Sowa) [1100299]
-- [lib] random32: add periodic reseeding (Hannes Frederic Sowa) [1100299]
-- [lib] random: allow architectures to optionally define random_get_entropy() (Hannes Frederic Sowa) [1100299]
-- [net] packet: use percpu mmap tx frame pending refcount (Daniel Borkmann) [1052366]
-- [net] packet: use reciprocal_divide in fanout_demux_hash (Daniel Borkmann) [1052366]
-- [net] packet: add randomized fanout scheduler (Daniel Borkmann) [1052366]
-- [net] packet: don't unconditionally schedule() in case of MSG_DONTWAIT (Daniel Borkmann) [1052366]
-- [net] packet: improve socket create/bind latency in some cases (Daniel Borkmann) [1052366]
-- [net] vxlan: convert to act as a pernet subsystem (Daniel Borkmann) [1039587]
-- [net] vxlan: do not use vxlan_net before checking event type (Daniel Borkmann) [1039587]
-- [net] vxlan: properly cleanup devs on module unload (Daniel Borkmann) [1039587]
-- [net] vxlan: when lower dev unregisters remove vxlan dev as well (Daniel Borkmann) [1039587]
-- [net] netfilter: x_tables: lightweight process control group matching (Daniel Borkmann) [1005839]
-- [net] sctp: fix and consolidate SCTP checksumming code (Daniel Borkmann) [1054215]
-- [net] checksum: fix warning in skb_checksum (Daniel Borkmann) [1054215]
-- [net] skb_checksum: allow custom update/combine for walking skb (Daniel Borkmann) [1054215]
-- [lib] crc32: reduce number of cases for crc32{, c}_combine (Daniel Borkmann) [1054215]
-- [lib] crc32: conditionally resched when running testcases (Daniel Borkmann) [1054215]
-- [lib] crc32: add test cases for crc32{, c}_combine routines (Daniel Borkmann) [1054215]
-- [lib] crc32: add functionality to combine two crc32{, c}s in GF(2) (Daniel Borkmann) [1054215]
-- [lib] crc32: clean up spacing in test cases (Daniel Borkmann) [1054215]
-- [lib] crc32: update the comments of crc32_{be, le}_generic() (Daniel Borkmann) [1054215]
-- [net] ipvs: sctp: do not recalc sctp csum when ports didn't change (Daniel Borkmann) [1054215]
-- [net] ipvs: sctp: add missing verdict assignments in sctp_conn_schedule (Daniel Borkmann) [1054215]
-- [tools] bpf_exp: free duplicated labels at exit time (Daniel Borkmann) [958035]
-- [tools] bpf_dbg: always close socket in bpf_runnable (Daniel Borkmann) [958035]
-- [net] filter: doc: improve BPF documentation (Daniel Borkmann) [958035]
-- [tools] filter: bpf_asm: add minimal bpf asm tool (Daniel Borkmann) [958035]
-- [tools] filter: bpf_dbg: add minimal bpf debugger (Daniel Borkmann) [958035]
-- [net] sched: cls_bpf: add BPF-based classifier (Daniel Borkmann) [958035]
-- [net] Use netlink_ns_capable to verify the permisions of netlink messages (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] netlink: Add variants of capable for use on netlink messages (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] diag: Move the permission check in sock_diag_put_filterinfo to packet_diag_dump (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] netlink: Rename netlink_capable netlink_allowed (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] diag: Fix ns_capable check in sock_diag_put_filterinfo (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] netlink: Fix permission check in netlink_connect() (Jiri Benc) [1094272] {CVE-2014-0181}
-- [net] filter: prevent nla extensions to peek beyond the end of the message (Jiri Benc) [1096781] {CVE-2014-3144 CVE-2014-3145}
-
-* Fri Jun 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-127.el7]
-- [net] mac80211: fix crash due to AP powersave TX vs. wakeup race (Jacob Tanenbaum) [1083534] {CVE-2014-2706}
-- [ethernet] qlcnic: Fix ethtool statistics length calculation (Michal Schmidt) [1099634]
-- [kernel] futex: Make lookup_pi_state more robust (Larry Woodman) [1104520] {CVE-2014-3153}
-- [kernel] futex: Always cleanup owner tid in unlock_pi (Larry Woodman) [1104520] {CVE-2014-3153}
-- [kernel] futex: Validate atomic acquisition in futex_lock_pi_atomic() (Larry Woodman) [1104520] {CVE-2014-3153}
-- [kernel] futex: prevent requeue pi on same futex (Larry Woodman) [1104520] {CVE-2014-3153}
-- [net] gro: restore frag0 optimization (and fix crash) (Michal Schmidt) [1069741]
-- [net] ipv4: current group_info should be put after using (Jiri Benc) [1087416] {CVE-2014-2851}
-- [net] core, nfqueue, openvswitch: Orphan frags in skb_zerocopy and handle errors (Jiri Pirko) [1079014] {CVE-2014-2568}
-- [fs] aio: fix plug memory disclosure and fix reqs_active accounting backport (Jeff Moyer) [1094605] {CVE-2014-0206}
-
-* Tue Jun 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-126.el7]
-- [fs] aio: plug memory disclosure and fix reqs_active accounting (Mateusz Guzik) [1094605] {CVE-2014-0206}
-- [kernel] mutexes: Give more informative mutex warning in the !lock->owner case (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] mutex: replace CONFIG_HAVE_ARCH_MUTEX_CPU_RELAX with simple ifdef (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutexes: Introduce cancelable MCS lock for adaptive spinning (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutexes: Modify the way optimistic spinners are queued (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutexes: Return false if task need_resched() in mutex_can_spin_on_owner() (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] Restructure the MCS lock defines and locking & Move mcs_spinlock.h into kernel/locking/ (Larry Woodman) [1087655 1087919 1087922]
-- [misc] arch: Introduce smp_load_acquire(), smp_store_release() (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutex: Fix debug_mutexes (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutex: Fix debug checks (Larry Woodman) [1087655 1087919 1087922]
-- [kernel] locking/mutexes: Unlock the mutex without the wait_lock (Larry Woodman) [1087655 1087919 1087922]
-
-* Tue Jun 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-125.el7]
-- [scsi] st: fix corruption of the st_modedef structures in st_set_options() (Maurizio Lombardi) [1084968]
-- [net] openvswitch: fix a possible deadlock and lockdep warning (Flavio Leitner) [1094867]
-- [fs] dcache: make prepend_name() work correctly when called with negative *buflen (Mikulas Patocka) [1092746]
-- [fs] dcache: __dentry_path() fixes (Mikulas Patocka) [1092746]
-- [fs] dcache: prepend_path() needs to reinitialize dentry/vfsmount/mnt on restarts (Mikulas Patocka) [1092746]
-- [net] ip: generate unique IP identificator if local fragmentation is allowed (Jiri Pirko) [1076106]
-- [target] tcm_fc: Fix use-after-free of ft_tpg (Andy Grover) [1071340]
-- [wireless] ath9k: tid->sched race in ath_tx_aggr_sleep() (Jacob Tanenbaum) [1083252] {CVE-2014-2672}
-- [kernel] futex: Fix pthread_cond_broadcast() to wake up all threads (Larry Woodman) [1084757]
-- [watchdog] hpwdt: display informative string (Nigel Croxon) [1074038]
-- [mm] page-writeback: fix divide by zero in pos_ratio_polynom (Rik van Riel) [1091784]
-- [mm] page-writeback: add strictlimit feature (Rik van Riel) [1091784]
-- [powerpc] tm: Fix crash when forking inside a transaction (Radomir Vrbovsky) [1083215] {CVE-2014-2673}
-- [block] floppy: don't write kernel-only members to FDRAWCMD ioctl output (Denys Vlasenko) [1094318] {CVE-2014-1737 CVE-2014-1738}
-- [block] floppy: ignore kernel-only members in FDRAWCMD ioctl input (Denys Vlasenko) [1094318] {CVE-2014-1737 CVE-2014-1738}
-- [s390] kernel: avoid page table walk on user space access (Hendrik Brueckner) [1097687]
-- [s390] af_iucv: wrong mapping of sent and confirmed skbs (Hendrik Brueckner) [1098513]
-- [s390] crypto: fix aes, des ctr mode concurrency finding (Hendrik Brueckner) [1097686]
-- [mm] filemap: update find_get_pages_tag() to deal with shadow entries (Johannes Weiner) [1091795]
-- [fs] xfs: log vector rounding leaks log space (Brian Foster) [1091136]
-- [fs] xfs: truncate_setsize should be outside transactions (Brian Foster) [1091136]
-
-* Tue May 20 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-124.el7]
-- [tty] n_tty: Fix n_tty_write crash when echoing in raw mode (Aristeu Rozanski) [1094242] {CVE-2014-0196}
-- [fs] gfs2: Fix uninitialized VFS inode in gfs2_create_inode (Abhijith Das) [1087995]
-- [kernel] cputime: Fix jiffies based cputime assumption on steal accounting (Frederic Weisbecker) [1047732]
-- [kernel] cputime: Bring cputime -> nsecs conversion (Frederic Weisbecker) [1047732]
-- [kernel] cputime: Default implementation of nsecs -> cputime conversion (Frederic Weisbecker) [1047732]
-- [x86] irq, pic: Probe for legacy PIC and set legacy_pic appropriately (Vivek Goyal) [1037957]
-- [virt] hyperv/vmbus: Negotiate version 3.0 when running on ws2012r2 hosts (Vivek Goyal) [1037957]
-
-* Mon May 05 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-123.el7]
-- [mm] rmap: try_to_unmap_cluster() should lock_page() before mlocking (Larry Woodman) [1078349] {CVE-2014-3122}
-- [mm] huge_memory: Fix cpuset cgroups so all pages for a task remain on correct node (Larry Woodman) [1076613]
-- [mm] mprotect: fix oops in change_pmd_range called from task_numa_work (Rik van Riel) [1085050]
-
-* Thu May 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-122.el7]
-- [security] device_cgroup: check if exception removal is allowed (Aristeu Rozanski) [1086057]
-- [security] device_cgroup: rework device access check and rule checking (Aristeu Rozanski) [1086057]
-- [fs] autofs: fix lockref lookup (Ian Kent) [1083815]
-- [mei] me: do not load the driver if the FW doesn't support MEI interface (Prarit Bhargava) [1082789]
-
-* Tue Apr 08 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-121.el7]
-- [virt] vhost/net: fix total length when packets are too short ("Michael S. Tsirkin") [1064446] {CVE-2014-0077}
-- [virt] vhost/net: validate vhost_get_vq_desc return value ("Michael S. Tsirkin") [1070940] {CVE-2014-0055}
-
-* Mon Apr 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-120.el7]
-- [net] netfilter: fix panic when oom during rule replacement (Florian Westphal) [985657]
-- [net] netfilter: x_tables: fix ordering of jumpstack allocation and table update (Florian Westphal) [985657]
-- [virt] kvm/ioapic: try to recover if pending_eoi goes out of range (Paolo Bonzini) [1036478]
-- [virt] kvm/ioapic: fix assignment of ioapic->rtc_status.pending_eoi (Paolo Bonzini) [1036478 1081590] {CVE-2014-0155}
-- [virt] kvm/ioapic: reinject pending interrupts on KVM_SET_IRQCHIP (Paolo Bonzini) [1036478]
-- [virt] kvm/ioapic: extract body of kvm_ioapic_set_irq (Paolo Bonzini) [1036478]
-- [virt] kvm/ioapic: clear IRR for edge-triggered interrupts at delivery (Paolo Bonzini) [1036478]
-- [virt] kvm/ioapic: merge ioapic_deliver into ioapic_service (Paolo Bonzini) [1036478]
-- [virt] kvm: ignore ioapic polarity (Paolo Bonzini) [1036478]
-- [core] device: Create 'device_driver_rh' KABI shadowing structure (Myron Stowe) [1083692]
-- [core] device: Create 'device_rh' KABI shadowing structure (Myron Stowe) [1083692]
-- [scsi] Reserve space in structures for future XCOPY support (Ewan Milne) [1080430]
-- [fs] xfs: fix bad hash ordering (Brian Foster) [1083206]
-- [fs] xfs: always do log forces via the workqueue (Brian Foster) [1052004]
-
-* Thu Apr 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-119.el7]
-- [net] bonding: remove bond_resend_igmp_join_requests read_unlock leftover (Veaceslav Falico) [1080924]
-- [ethernet] mlx4: Support shutdown() interface (Amir Vadai) [1046216]
-- [zram] fix invalid memory access (Jerome Marchand) [1081936]
-- [zram] protect zram_reset_device() call (Jerome Marchand) [1081936]
-- [zram] remove zram_sysfs file (Jerome Marchand) [1081936]
-- [zram] use atomic64_xxx() to replace zram_stat64_xxx() (Jerome Marchand) [1081936]
-- [zram] optimize memory operations with clear_page()/copy_page() (Jerome Marchand) [1081936]
-- [zram] kill unused zram_get_num_devices() (Jerome Marchand) [1081936]
-- [zram] simplify and optimize dev_to_zram() (Jerome Marchand) [1081936]
-- [kernel] futex: revert back to the explicit waiter counting code (Larry Woodman) [1081100]
-- [kernel] audit: Allow login in non-init namespaces (Richard Guy Briggs) [1082597]
-
-* Tue Apr 01 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-118.el7]
-- [wireless] ath9k: Fix LNA gpio for AR9485 (John Green) [1082017]
-- [infiniband] core: Don't resolve passive side RoCE L2 address in cma req handler (Amir Vadai) [1075852]
-- [fs] xfs: fix buffer use after free on IO error (Eric Sandeen) [924301]
-- [scsi] be2iscsi: Bump the driver version (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix DMA Out of SW-IOMMU space error (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix scsi_cmnd leakage in driver (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix the session cleanup when reboot/shutdown happens (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix doorbell format for EQ/CQ/RQ s per SLI spec (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix port speed typo in driver (Rob Evers) [1052416]
-- [scsi] be2iscsi: Fix handling timed out MBX completion from FW (Rob Evers) [1052416]
-- [fs] nfs: Fix a use-after-free problem in open() (Steve Dickson) [1062809]
-
-* Mon Mar 31 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-117.el7]
-- [md] dm-thin: fix dangling bio in process_deferred_bios error path (Mike Snitzer) [1081781]
-- [md] dm: take care to copy the space map roots before locking the superblock (Mike Snitzer) [1081781]
-- [md] dm-transaction-manager: fix corruption due to non-atomic transaction commit (Mike Snitzer) [1081781]
-- [md] dm-era: fixes for issues identified upstream (Mike Snitzer) [1081781]
-- [md] dm-cache: remove remainder of distinct discard block size (Mike Snitzer) [1062679]
-- [md] dm-cache: prevent corruption caused by discard_block_size > cache_block_size (Mike Snitzer) [1062679]
-- [ipc] change kern_ipc_perm.deleted type to bool (Phillip Lougher) [1043807] {CVE-2013-7026}
-- [ipc] introduce ipc_valid_object() helper to sort out IPC_RMID races (Phillip Lougher) [1043807] {CVE-2013-7026}
-- [ipc] shm: fix shm_file deletion races (Phillip Lougher) [1043807] {CVE-2013-7026}
-- [drm] udl: take reference to device struct for dma-bufs (Dave Airlie) [1077774]
-- [security] keys: Allow special keys (eg. DNS results) to be invalidated by CAP_SYS_ADMIN (David Howells) [1074240]
-
-* Fri Mar 28 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-116.el7]
-- [s390] qeth: postpone freeing of qdio memory (Hendrik Brueckner) [1077650]
-- [kernel] rh_taint: Remove taint and update unsupported hardware message (Prarit Bhargava) [1076974]
-- [fs] proc/vmcore: continue vmcore initialization if PT_NOTE is found empty (Chao WANG) [1077535]
-- [net] ipv6: ip6_append_data_mtu do not handle the mtu of the second fragment properly (Jiri Pirko) [1079873]
-
-* Tue Mar 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-115.el7]
-- [block] free q->flush_rq in blk_init_allocated_queue error paths (Mike Snitzer) [1078522]
-- [x86] fpu: Clear exceptions in AMD FXSAVE workaround (Phillip Lougher) [1053596] {CVE-2014-1438}
-- [mm] page_alloc: spill to remote nodes before waking kswapd (Johannes Weiner) [1076546]
-- [mm] vmscan: do not swap anon pages just because free+file is low (Johannes Weiner) [1076546]
-- [fs] sunrpc: Ensure call_connect_status() deals correctly with SOFTCONN tasks (Steve Dickson) [1071532]
-- [fs] nfs: Ensure we respect soft mount timeouts during trunking discovery (Steve Dickson) [1071532]
-- [fs] nfs: Schedule recovery if nfs40_walk_client_list() is interrupted (Steve Dickson) [1071532]
-- [fs] sunrpc: Ensure that call_bind times out correctly (Steve Dickson) [1071532]
-- [fs] sunrpc: Ensure that call_connect times out correctly (Steve Dickson) [1071532]
-
-* Fri Mar 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-114.el7]
-- [net] netfilter: nf_conntrack_dccp: fix skb_header_pointer API usages (Jiri Pirko) [1077351] {CVE-2014-2523}
-- [net] ipv6: don't set DST_NOCOUNT for remotely added routes (Jiri Pirko) [1075060] {CVE-2014-2309}
-- [net] skbuff: skb_segment: orphan frags before copying ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] skbuff: skb_segment: s/fskb/list_skb/ ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] skbuff: skb_segment: s/skb/head_skb/ ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] skbuff: skb_segment: s/skb_frag/frag/ ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] skbuff: skb_segment: s/frag/nskb_frag/ ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] use kfree_skb_list() helper ("Michael S. Tsirkin") [1056934] {CVE-2014-0131}
-- [net] veth: fix veth vlan features (Flavio Leitner) [1076077]
-- [net] sunrpc/xprtrdma: add separate Kconfig options for NFSoRDMA client and server support (Jeff Layton) [1077957]
-- [virt] kvm/x86: emulate MOVAPD (Igor Mammedov) [1052090]
-- [virt] kvm/x86: emulate MOVAPS (Igor Mammedov) [1052090]
-- [mm] x86: Wrong page freed on preallocate_pmds() failure exit (Larry Woodman) [1073641]
-- [mm] x86: do not leak page->ptl for pmd page tables (Larry Woodman) [1073641]
-- [virt] kvm/x86: fix emulator buffer overflow (Andrew Jones) [1071836] {CVE-2014-0049}
-- [virt] hyperv: Change the receive buffer size for legacy hosts (Jason Wang) [1075279]
-- [x86] quirks: Update DH8900CC Unsupported Device ID (Prarit Bhargava) [1076137]
-
-* Tue Mar 18 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-113.el7]
-- [security] selinux: fix broken peer recv check (Paul Moore) [1043165]
-- [md] dm-raid: Fix possibility of skipping device recovery (Jonathan E Brassow) [1069927]
-- [fs] xfs: avoid AGI/AGF deadlock scenario for inode chunk allocation (Brian Foster) [1052789]
-- [md] dm-cache: fix access beyond end of origin device (Mike Snitzer) [1074606]
-- [md] dm-cache: fix truncation bug when copying a block to/from >2TB fast device (Mike Snitzer) [1075709]
-- [ethernet] bna: don't disable VLAN tag stripping in promisc mode (Ivan Vecera) [1057842]
-- [kernel] posix-timers: Spare workqueue if there is no full dynticks CPU to kick (Frederic Weisbecker) [1074168]
-
-* Mon Mar 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-112.el7]
-- [net] bridge: multicast: enable snooping on general queries only (Florian Westphal) [1074491]
-- [net] bridge: multicast: add sanity check for general query destination (Florian Westphal) [1074491]
-- [net] bridge: multicast: add sanity check for query source addresses (Florian Westphal) [1074491]
-- [net] inet: frag: fix oops when unloading inetfrag modules (Florian Westphal) [1073962]
-- [virt] vhost/net: fix ref cnt checking deadlock ("Michael S. Tsirkin") [1065878]
-- [virt] vhost_net: correctly limit the max pending buffers ("Michael S. Tsirkin") [1065878]
-- [virt] vhost/net: fix a theoretical race in device cleanup ("Michael S. Tsirkin") [1065878]
-- [powerpc] pseries: Expose in kernel device tree update to drmgr (Steve Best) [1064745]
-- [powerpc] pseries: Update dynamic cache nodes for suspend/resume operation (Steve Best) [1064745]
-- [powerpc] pseries: Device tree should only be updated once after suspend/migrate (Steve Best) [1064745]
-- [powerpc] pseries: Child nodes are not detached by dlpar_detach_node (Steve Best) [1064745]
-- [powerpc] pseries: Add mising of_node_put in delete_dt_node (Steve Best) [1064745]
-- [powerpc] pseries: Make dlpar_configure_connector parent node aware (Steve Best) [1064745]
-- [powerpc] pseries: Do all node initialization in dlpar_parse_cc_node (Steve Best) [1064745]
-- [powerpc] pseries: Fix parsing of initial node path in update_dt_node (Steve Best) [1064745]
-- [powerpc] pseries: Pack update_props_workarea to map correctly to rtas buffer header (Steve Best) [1064745]
-- [powerpc] pseries: Fix over writing of rtas return code in update_dt_node (Steve Best) [1064745]
-- [powerpc] pseries: Fix creation of loop in device node property list (Steve Best) [1064745]
-- [infiniband] mlx4: Don't allocate range of steerable UD QPs for Ethernet-only device (Doug Ledford) [1061795]
-- [ethernet] e1000: fix lockdep warning in e1000_reset_task (John Green) [1056355]
-- [ethernet] mlx4: mlx4_init_slave() shouldn't access comm channel before PF is ready (Amir Vadai) [1058413]
-- [ethernet] mlx4: Fix memory access error in mlx4_QUERY_DEV_CAP_wrapper() (Amir Vadai) [1058413]
-- [mm] numa: recheck for transhuge pages under lock during protection changes (Rik van Riel) [1073674]
-
-* Fri Mar 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-111.el7]
-- [net] inet: fix for a race condition in the inet frag code (Nikolay Aleksandrov) [1070711] {CVE-2014-0100}
-- [scsi] aacraid: Print warning message if unsupported card is being used (Rich Bono) [1019091]
-- [drm] ttm: don't oops if no invalidate_caches() (Rob Clark) [1073470 1075068]
-- [security] selinux: bigendian problems with filename trans rules (Paul Moore) [1029837]
-- [security] selinux: Fix memory leak upon loading policy (Paul Moore) [1051042]
-- [x86] apic: Plug racy xAPIC access of CPU hotplug code (Igor Mammedov) [1073568]
-- [kernel] sched: Remove redundant update_runtime notifier (Igor Mammedov) [1074476]
-- [virt] kvm/svm: fix cr8 intercept window (Radim Krcmar) [1056982]
-- [video] fb: reorder the lock sequence to fix potential dead lock (Jason Wang) [1040781]
-- [virt] hv/vmbus: Don't timeout during the initial connection with host (Jason Wang) [1037957]
-- [virt] hv/vmbus: Specify the target CPU that should receive notification (Jason Wang) [1037957]
-- [mm] percpu scalability fixes (Alexander Viro) [1072446]
-- [x86] fix compile error due to X86_TRAP_NMI use in asm files (Don Zickus) [1051428]
-- [x86] Ignore NMIs that come in during early boot (Don Zickus) [1051428]
-- [fs] cifs: Add support for follow_link on dfs shares under posix extensions (Sachin Prabhu) [1020715]
-- [fs] cifs: move unix extension call to cifs_query_symlink() (Sachin Prabhu) [1020715]
-- [kernel] audit: include subject in login records (Richard Guy Briggs) [1075155]
-- [kernel] audit: remove superfluous new- prefix in AUDIT_LOGIN messages (Richard Guy Briggs) [1075155]
-- [ethernet] tg3: Don't check undefined error bits in RXBD (Ivan Vecera) [1071483]
-- [fs] gfs2: Move recovery variables to journal structure in memory (Robert S Peterson) [1059439]
-- [security] keys: Make the keyring cycle detector ignore other keyrings of the same name (David Howells) [1071346] {CVE-2014-0102}
-- [x86] fix x86 fixup_irqs() error handling (Prarit Bhargava) [1074644]
-- [fs] gfs2: Re-add a call to log_flush_wait when flushing the journal (Robert S Peterson) [1074556]
-- [fs] gfs2: Ensure workqueue is scheduled after noexp request (Robert S Peterson) [1074556]
-
-* Wed Mar 12 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-110.el7]
-- [mm] Revert: percpu scalability fixes (Jarod Wilson) [1072446]
-
-* Tue Mar 11 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-109.el7]
-- [block] change flush sequence list addition back to front add (Mike Snitzer) [1072577]
-- [block] fix q->flush_rq NULL pointer crash on dm-mpath flush (Mike Snitzer) [1072577]
-- [md] dm-era: mark as tech preview for RHEL7.0 (Mike Snitzer) [995644]
-- [md] dm-bitset: only flush the current word if it has been dirtied (Mike Snitzer) [995644]
-- [md] dm-era: support non power-of-2 blocksize (Mike Snitzer) [995644]
-- [md] dm: add era target (Mike Snitzer) [995644]
-- [md] dm-cache-mq: fix memory allocation failure for large cache devices (Mike Snitzer) [995644]
-- [md] dm-cache: fix truncation bug when mapping I/O to >2TB fast device (Mike Snitzer) [995644]
-- [md] dm-space-map-metadata: fix refcount decrement below 0 which caused corruption (Mike Snitzer) [1065051]
-- [Documentation] dm-thin: fix Documentation for held metadata root feature (Mike Snitzer) [1065051]
-- [md] dm-thin: fix noflush suspend IO queueing (Mike Snitzer) [1065051]
-- [md] dm-thin: fix deadlock in __requeue_bio_list (Mike Snitzer) [1065051]
-- [md] dm-thin: fix out of data space handling (Mike Snitzer) [1065051]
-- [md] dm-thin: ensure user takes action to validate data and metadata consistency (Mike Snitzer) [1065051]
-- [md] dm-thin: synchronize the pool mode during suspend (Mike Snitzer) [1065051]
-- [md] dm: fix Kconfig indentation (Mike Snitzer) [1065051]
-- [md] dm-thin: allow metadata space larger than supported to go unused (Mike Snitzer) [1065051]
-- [md] dm-thin: fix the error path for the thin device constructor (Mike Snitzer) [1065051]
-- [md] dm-thin: avoid metadata commit if a pool's thin devices haven't changed (Mike Snitzer) [1065051]
-- [virt] hyperv: Add support for physically discontinuous receive buffer (Jason Wang) [988689]
-- [virt] virtio-scsi: Fix hotcpu_notifier use-after-free with virtscsi_freeze (Jason Wang) [1024220]
-- [fs] pnode: smarter propagate_mnt() (Alexander Viro) [1072457]
-- [kernel] perf: Allow mmap2 interface (Jiri Olsa) [1071945]
-- [crypto] ansi_cprng: Fix off by one error in non-block size request (Radomir Vrbovsky) [1009139]
-- [fs] xfs: don't leak EFSBADCRC to userspace (Brian Foster) [1071925]
-- [fs] xfs: modify verifiers to differentiate CRC from other errors (Brian Foster) [1071925]
-- [fs] xfs: print useful caller information in xfs_error_report (Brian Foster) [1071925]
-- [fs] xfs: add xfs_verifier_error() (Brian Foster) [1071925]
-- [fs] xfs: add helper for updating checksums on xfs_bufs (Brian Foster) [1071925]
-- [fs] xfs: add helper for verifying checksums on xfs_bufs (Brian Foster) [1071925]
-- [fs] xfs: Use defines for CRC offsets in all cases (Brian Foster) [1071925]
-- [fs] xfs: skip pointless CRC updates after verifier failures (Brian Foster) [1071925]
-- [fs] xfs: limit superblock corruption errors to actual corruption (Brian Foster) [1071925]
-- [fs] xfs: skip verification on initial "guess" superblock read (Brian Foster) [1071925]
-- [fs] xfs: xfs_sb_read_verify() doesn't flag bad crcs on primary sb (Brian Foster) [1071925]
-- [md] dm-snapshot: fix data corruption (Mikulas Patocka) [1070291]
-- [ethernet] e1000e: Fix SHRA register access for 82579 (John Green) [1040315]
-- [ethernet] be2net: do external loopback test only when it is requested (Ivan Vecera) [1065833]
-- [drm] i915: fix potential oops in early irqs (Rob Clark) [1073136]
-- [security] selinux: correctly label /proc inodes in use before the policy is loaded (Paul Moore) [1071858]
-- [fs] vfs: unexport the getname() symbol (Jeff Layton) [1060739]
-- [mm] percpu scalability fixes (Alexander Viro) [1072446]
-- [kernel] uprobes: Fix the memory out of bound overwrite in copy_insn() (Oleg Nesterov) [984056]
-- [kernel] uprobes: Fix the wrong usage of current->utask in uprobe_copy_process() (Oleg Nesterov) [984056]
-- [kernel] uprobes: Teach uprobe_copy_process() to handle CLONE_VFORK (Oleg Nesterov) [984056]
-- [kernel] uprobes: Change uprobe_copy_process() to dup xol_area (Oleg Nesterov) [984056]
-- [kernel] uprobes: Change uprobe_copy_process() to dup return_instances (Oleg Nesterov) [984056]
-- [kernel] uprobes: Teach __create_xol_area() to accept the predefined vaddr (Oleg Nesterov) [984056]
-- [kernel] uprobes: Introduce __create_xol_area() (Oleg Nesterov) [984056]
-- [kernel] uprobes: Change the callsite of uprobe_copy_process() (Oleg Nesterov) [984056]
-
-* Mon Mar 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-108.el7]
-- [scsi] megaraid_sas: fix a small problem when reading state value from hw (Tomas Henzl) [1070563]
-- [scsi] megaraid_sas: driver bug fix (Tomas Henzl) [1064509]
-- [scsi] qla2xxx: Update driver version to 8.06.00.08.07.0-k2 (Chad Dupuis) [1066003]
-- [scsi] qla2xxx: Fixup looking for a space in the outstanding_cmds array in qla2x00_alloc_iocbs() (Chad Dupuis) [1066003]
-- [scsi] qla2xxx: Set host can_queue value based on available resources (Chad Dupuis) [1066003]
-- [scsi] qla2xxx: Fix request queue null dereference (Chad Dupuis) [1058624]
-- [mm] add overcommit_kbytes sysctl variable (Jerome Marchand) [1058788]
-- [mm] factor commit limit calculation (Jerome Marchand) [1058788]
-- [drm] radeon/uvd: add kernel parameter to make uvd optional on evergreen (Jerome Glisse) [1056702]
-- [drm] radeon: free uvd ring on unload (Jerome Glisse) [1056702]
-- [s390] pci: obtain function handle in hotplug notifier (Hendrik Brueckner) [1059247]
-- [s390] pci/dma: fix accounting of allocated_pages (Hendrik Brueckner) [1059247]
-- [s390] pci: set error state for unavailable functions (Hendrik Brueckner) [1059247]
-- [s390] pci: fix removal of nonexistent pci bus (Hendrik Brueckner) [1059247]
-- [s390] pci: prevent inadvertently triggered bus scans (Hendrik Brueckner) [1059247]
-- [pci] msi: Make pci_enable_msi/msix() 'nvec' argument type as int (Myron Stowe) [1070909]
-- [pci] msi: Export MSI mode using attributes, not kobjects (Myron Stowe) [1070909]
-- [drm] nouveau: attempt to disarm all interrupts before request_irq() (Ben Skeggs) [986654]
-- [drm] nouveau: disable runtime pm by default (Ben Skeggs) [1072481]
-- [s390] appldata_os: fix cpu array size calculation (Hendrik Brueckner) [1071354]
-- [s390] cio: Fix missing subchannels after CHPID configure on (Hendrik Brueckner) [1071248]
-- [s390] pci/dma: use correct segment boundary size (Hendrik Brueckner) [1071239]
-- [scsi] isci: fix reset timeout handling (David Milburn) [1040402]
-- [wireless] ath9k: Add custom parameters for CUS198 (John Green) [1044005]
-- [ethernet] bnx2x: utilize FW 7.8.19 (Michal Schmidt) [1058008]
-- [fs] fix the performance of reading /proc/mounts and friends (Alexander Viro) [1072461]
-- [fs] namespace: mount hash table is too small (Alexander Viro) [1072451]
-- [fs] xfs: inode log reservations are still too small (Brian Foster) [1071068]
-- [fs] aio, memory-hotplug: Fix confliction when migrating and accessing ring pages (Motohiro Kosaki) [1060974]
-- [x86] only add -Werror when using RHEL7 gcc (Stefan Assmann) [1073055]
-- [mm] filemap: fix truncation crash due to exceptional entries (Johannes Weiner) [1069295 1071162]
-- [mm] Add kernel and mm data structure padding before kABI freeze (Larry Woodman) [1071438]
-- [pci] add pci_hw_vendor_status() (Prarit Bhargava) [1073062]
-- [cpufreq] pcc: Enable autoload of pcc-cpufreq for all ACPI processors (Lenny Szubowicz) [928152]
-- [idle] intel_idle: Repair large-server 50-watt idle-power regression (Lenny Szubowicz) [1054325]
-- [fs] clean up page array when uncached write send fails (Sachin Prabhu) [1063780]
-- [fs] cifs: use a flexarray in cifs_writedata (Sachin Prabhu) [1063780]
-- [mm] oom_kill: add rcu_read_lock() into find_lock_task_mm() (Oleg Nesterov) [1000335]
-- [mm] oom_kill: has_intersects_mems_allowed() needs rcu_read_lock() (Oleg Nesterov) [1000335]
-- [mm] oom_kill: change oom_kill.c to use for_each_thread() (Oleg Nesterov) [1000335]
-- [kernel] fork: introduce for_each_thread() to replace the buggy while_each_thread() (Oleg Nesterov) [1000335]
-- [kernel] fork: copy_process(), consolidate the lockless CLONE_THREAD checks (Oleg Nesterov) [1000335]
-- [kernel] fork: copy_process(), don't add the uninitialized child to thread/task/pid lists (Oleg Nesterov) [1000335]
-- [kernel] fork: copy_process(), unify CLONE_THREAD-or-thread_group_leader code (Oleg Nesterov) [1000335]
-- [fs] exec: de_thread(), use change_pid() rather than detach_pid/attach_pid (Oleg Nesterov) [1000335]
-- [powerpc] xmon: Don't signal we've entered until we're finished printing (Steve Best) [1072790]
-- [powerpc] xmon: Fix timeout loop in get_output_lock() (Steve Best) [1072790]
-- [powerpc] xmon: Don't loop forever in get_output_lock() (Steve Best) [1072790]
-
-* Fri Mar 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-107.el7]
-- [net] make neigh_priv_len in struct net_device 16bit instead of 8bit (Jiri Benc) [1062308]
-- [net] sctp: fix sctp_sf_do_5_1D_ce to verify if we/peer is AUTH capable (Daniel Borkmann) [1070716] {CVE-2014-0101}
-- [net] sctp: fix sctp_connectx abi for ia32 emulation/compat mode (Daniel Borkmann) [1058284]
-- [net] ip_tunnel: return more precise errno value when adding tunnel fails (Florian Westphal) [1070135]
-- [net] ip_tunnel: Add fallback tunnels to the hash lists (Florian Westphal) [1070135]
-- [net] openvswitch: Fix ovs_dp_cmd_msg_size() (Francesco Fusco) [1069577]
-- [net] team: Don't allow team devices to change network namespaces (Jiri Pirko) [1069527]
-- [net] team: add support for sending multicast rejoins (Jiri Pirko) [1069520]
-- [net] convert resend IGMP to notifier event (Jiri Pirko) [1069520]
-- [net] team: add peer notification (Jiri Pirko) [1069490]
-- [net] team: remove synchronize_rcu() called during port disable (Jiri Pirko) [1069498]
-- [net] team: use kfree_rcu instead of synchronize_rcu in team_port_dev (Jiri Pirko) [1069498]
-- [net] team: remove synchronize_rcu() called during queue override change (Jiri Pirko) [1069498]
-- [net] remove last caller of skb_tail_offset() and itself (Jiri Pirko) [1068666]
-- [net] netpoll: fix position of network header (Jiri Pirko) [1068666]
-- [net] neigh: fix setting of default gc_* values (Jiri Pirko) [1067274]
-
-* Thu Mar 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-106.el7]
-- [drm] nouveau/devinit: lock/unlock crtc regs for all devices, not just pre-nv50 (Ben Skeggs) [928744]
-- [drm] nouveau: use correct register to determine DP display bpp (Ben Skeggs) [928744]
-- [pci] Enable quirks for PCIe ACS on Intel PCH root ports (Alex Williamson) [1037684]
-- [pci] Add pci_dev_flag for ACS enable quirks (Alex Williamson) [1037684]
-- [pci] Add device-specific PCI ACS enable (Alex Williamson) [1037684]
-- [virt] hyperv-fb: kick off efifb early (Gerd Hoffmann) [1038900]
-- [virt] hyperv-fb: add support for generation 2 virtual machines (Gerd Hoffmann) [1038900]
-- [virt] hv/vmbus: use resource for hyperv mmio region (Gerd Hoffmann) [1038900]
-- [virt] hv/vmbus: add missing breaks (Gerd Hoffmann) [1038900]
-- [virt] hv/vmbus: Extract the mmio information from DSDT (Gerd Hoffmann) [1038900]
-- [s390] cio/blacklist: Perform subchannel scan only when needed (Hendrik Brueckner) [1071244]
-- [s390] css: Prevent unnecessary allocation in subchannel loop (Hendrik Brueckner) [1071244]
-- [s390] cio: Delay scan for newly available I/O devices (Hendrik Brueckner) [1071244]
-- [s390] cio: Relax subchannel scan loop (Hendrik Brueckner) [1071244]
-- [s390] cio: More efficient handling of CHPID availability events (Hendrik Brueckner) [1071244]
-- [ethernet] cxgb4: Add API to correctly calculate tuple fields (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Account for stid entries properly in case of IPv6 (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Assign filter server TIDs properly (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Include TCP as protocol when creating server filters (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Reserve stid 0 for T4/T5 adapters (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Add new scheme to update T4/T5 firmware (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Much cleaner implementation of is_t4()/is_t5() (Jay Fenlason) [1060264]
-- [ethernet] cgxb4: remove duplicate include in cxgb4.h (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: remove unnecessary pci_set_drvdata() (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: remove workqueue when driver registration fails (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Add CLIP support to store compressed IPv6 address (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Add routines to create and remove listening IPv6 servers (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Do not set net_device::dev_id to VI index (Jay Fenlason) [1060264]
-- [ethernet] cxgb4: Force uninitialized state if FW_ON_ADAPTER is < FW_VERSION and we're the MASTER_PF (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Use cxgb4_select_ntuple to correctly calculate ntuple fields (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Server filters are supported only for IPv4 (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Calculate the filter server TID properly (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Make _c4iw_write_mem_dma() static (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Fix formatting of physical address (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Issue RI.FINI before closing when entering TERM (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Advertise ~0ULL as max MR size (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Always do GTS write if cidx_inc == CIDXINC_MASK (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Set arp error handler for PASS_ACCEPT_RPL messages (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Fix accounting for unsignaled SQ WRs to deal with wrap (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Fix QP flush logic (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Handle newer firmware changes (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Use correct bit shift macros for vlan filter tuples (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Add support for active and passive open connection with IPv6 address (Jay Fenlason) [1060264]
-- [infiniband] cxgb4: Fix stack info leak in c4iw_create_qp() (Jay Fenlason) [1060264]
-- [scsi] cxgb4i: add support for T5 adapter (Jay Fenlason) [1060264]
-- [ethernet] cxgb4vf: added much cleaner implementation of is_t4() (Jay Fenlason) [1060264]
-- [ethernet] cxgb4vf: use DEFINE_PCI_DEVICE_TABLE (Jay Fenlason) [1060264]
-- [ethernet] cxgb4vf: remove unnecessary pci_set_drvdata() (Jay Fenlason) [1060264]
-- [ethernet] cxgb4vf: Staticize local symbols (Jay Fenlason) [1060264]
-- [infiniband] mlx5: Remove dependency on X86 (Doug Ledford) [1058614]
-- [infiniband] mlx5: Add include of <linux/slab.h> because of kzalloc()/kfree() use (Doug Ledford) [1058614]
-- [infiniband] mlx5: Don't set "block multicast loopback" capability (Doug Ledford) [1058614]
-- [infiniband] mlx5: Fix binary compatibility with libmlx5 (Doug Ledford) [1058614]
-- [infiniband] mlx5: Fix RC transport send queue overhead computation (Doug Ledford) [1058614]
-- [infiniband] mlx5: Verify reserved fields are cleared (Doug Ledford) [1058614]
-- [infiniband] mlx5: Remove old field for create mkey mailbox (Doug Ledford) [1058614]
-- [infiniband] mlx5: Abort driver cleanup if teardown hca fails (Doug Ledford) [1058614]
-- [infiniband] mlx5: Allow creation of QPs with zero-length work queues (Doug Ledford) [1058614]
-- [ethernet] mlx5: Fix PowerPC support (Doug Ledford) [1058614]
-- [ethernet] mlx5: Improve debugfs readability (Doug Ledford) [1058614]
-- [infiniband] mlx5: Add support for resize CQ (Doug Ledford) [1058614]
-- [infiniband] mlx5: Implement modify CQ (Doug Ledford) [1058614]
-- [infiniband] mlx5: Make sure doorbell record is visible before doorbell (Doug Ledford) [1058614]
-- [ethernet] mlx5: Use mlx5 core style warning (Doug Ledford) [1058614]
-- [ethernet] mlx5: Clear out struct before create QP command (Doug Ledford) [1058614]
-- [ethernet] mlx5: Fix out arg size in access_register command (Doug Ledford) [1058614]
-- [infiniband] mlx5: Fix micro UAR allocator (Doug Ledford) [1058614]
-- [ethernet] mlx5: Remove dead code (Doug Ledford) [1058614]
-- [infiniband] mlx5: Remove unused code in mr.c (Doug Ledford) [1058614]
-- [virt] kvm/x86: introduce periodic global clock updates (Andrew Jones) [1036457]
-- [virt] kvm/x86: rate-limit global clock updates (Andrew Jones) [1036457]
-- [mm] slub: fix page->_count corruption (again) (Rik van Riel) [1070918]
-- [kernel] stop_machine: Fix^2 race between stop_two_cpus() and stop_cpus() (Rik van Riel) [1061778 1071454]
-- [fs] proc/vmcore: prevent PT_NOTE p_memsz overflow during header update (Nigel Croxon) [1061368]
-- [ioat] dma: check DMA mapping error in ioat_dma_self_test() (Kyle McMartin) [922694]
-- [drm] nouveau/bios: add more checks to PRAMIN image fetching (Ben Skeggs) [1033345]
-- [fs] block: Fix nr_vecs for inline integrity vectors (David Milburn) [1040893]
-
-* Wed Mar 05 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-105.el7]
-- [redhat] kabi: actually add symbols to the whitelists this time (Jarod Wilson) [726863]
-
-* Tue Mar 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-104.el7]
-- [redhat] kabi: add initial whitelist checksums (Jiri Olsa) [726863]
-
-* Tue Mar 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-103.el7]
-- [fs] epoll: do not take the nested ep->mtx on EPOLL_CTL_DEL (Rik van Riel) [1069371]
-- [fs] epoll: do not take global 'epmutex' for simple topologies (Rik van Riel) [1069371]
-- [fs] epoll: optimize EPOLL_CTL_DEL using rcu (Rik van Riel) [1069371]
-- [fs] epoll: add a reschedule point in ep_free() (Rik van Riel) [1069371]
-- [fs] eventpoll: switch epoll_ctl() to fdget (Rik van Riel) [1069371]
-- [fs] eventpoll: do not use sigprocmask() (Rik van Riel) [1069371]
-- [target] iscsi-target: Add demo-mode TPG authentication context support (Andy Grover) [1066726]
-- [target] Add se_portal_group->tpg_auth_group (Andy Grover) [1066726]
-- [mm] page-writeback: do not count anon pages as dirtyable memory (Johannes Weiner) [832482]
-- [mm] page-writeback: fix dirty_balance_reserve subtraction from dirtyable memory (Johannes Weiner) [832482]
-- [misc] stackprotector: Introduce CONFIG_CC_STACKPROTECTOR_STRONG (Jarod Wilson) [1069367]
-- [misc] stackprotector: Unify the HAVE_CC_STACKPROTECTOR logic between architectures (Jarod Wilson) [1069367]
-- [kernel] futexes: Fix futex_hashsize initialization (Larry Woodman) [1069800]
-- [kernel] futexes: Avoid taking the hb->lock if there's nothing to wake up (Larry Woodman) [1069800]
-- [kernel] futexes: Document multiprocessor ordering guarantees (Larry Woodman) [1069800]
-- [kernel] futexes: Increase hash table size for better performance (Larry Woodman) [1069800]
-- [kernel] futexes: Clean up various details (Larry Woodman) [1069800]
-- [kernel] futex: move user address verification up to common code (Larry Woodman) [1069800]
-- [kernel] futex: fix handling of read-only-mapped hugepages (Larry Woodman) [1069800]
-- [powerpc] Support crashkernel auto memory reservation on a system with 2GB or more (Steve Best) [1051974]
-- [powerpc] Set crashkernel 'auto' memory reservation threshold to 2GB (Steve Best) [1051974]
-- [s390] cio: improve cio_commit_config (Hendrik Brueckner) [1064781]
-- [s390] zfcpdump: Fix mount order for XFS and ext4 (Hendrik Brueckner) [1058307]
-- [scsi] iSCSI connection errors on logout (Chris Leech) [1000356]
-- [block] add padding to queue_limits structure (Mike Snitzer) [973669]
-- [virt] kvm/nvmx: Fix pick-up of uninjected NMIs (Marcelo Tosatti) [1069089]
-- [virt] kvm/svm: fix NMI window after iret (Radim Krcmar) [1049862]
-- [mm] exclude memoryless nodes from zone_reclaim (Steve Best) [1070491]
-- [x86] mm/srat: Skip NUMA_NO_NODE while parsing SLIT (Prarit Bhargava) [1063539]
-
-* Tue Mar 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-102.el7]
-- [ethernet] cxgb3: remove duplicate defines (Jay Fenlason) [1060263]
-- [ethernet] cxgb3: remove unnecessary pci_set_drvdata() (Jay Fenlason) [1060263]
-- [ethernet] cxgb3: Add __GFP_NOWARN to k.alloc calls with v.alloc fallbacks (Jay Fenlason) [1060263]
-- [ethernet] cxgb3: Missing rtnl lock in error recovery (Jay Fenlason) [1060263]
-- [infiniband] cxgb3: Fix stack info leak in iwch_create_cq() (Jay Fenlason) [1060263]
-- [infiniband] cxgb3: Timeout condition is never true (Jay Fenlason) [1060263]
-- [ethernet] qlcnic: Update version to 5.3.48.2 (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: Fix tx timeout (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: Fix diagnostic test for all adapters (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: Fix VF reset recovery (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: underflow in qlcnic_validate_max_tx_rings() (Chad Dupuis) [1063848]
-- [ethernet] qlcnic: Fix backporting BUG while doing inbox submission upto 5.3.48 (Chad Dupuis) [1063848]
-- [pci] pciehp: Add hotplug_lock to serialize hotplug events (Myron Stowe) [1061514]
-- [pci] pciehp: Ensure very fast hotplug events are also processed (Myron Stowe) [1061514]
-- [pci] pciehp: Disable link notification across slot reset (Myron Stowe) [1061514]
-- [pci] pciehp: Don't check adapter or latch status while disabling (Myron Stowe) [1061514]
-- [pci] pciehp: Don't disable the link permanently during removal (Myron Stowe) [1061514]
-- [pci] pciehp: Enable link state change notifications (Myron Stowe) [1061514]
-- [pci] pciehp: Use link change notifications for hot-plug and removal (Myron Stowe) [1061514]
-- [pci] pciehp: Make check_link_active() non-static (Myron Stowe) [1061514]
-- [pci] pciehp: Move Attention & Power Indicator support tests to accessors (Myron Stowe) [1061514]
-- [pci] pciehp: Use symbolic constants for Slot Control fields (Myron Stowe) [1061514]
-- [pci] pciehp: Use symbolic constants, not hard-coded bitmask (Myron Stowe) [1061514]
-- [pci] pciehp: Simplify "Power Fault Detected" checking/clearing (Myron Stowe) [1061514]
-- [pci] pciehp: Announce slot capabilities (slot #, button, LEDs, etc) (Myron Stowe) [1061514]
-- [pci] pciehp: Make various functions void since they can't fail (Myron Stowe) [1061514]
-- [pci] pciehp: Remove error checks when accessing PCIe Capability (Myron Stowe) [1061514]
-- [pci] pciehp: Drop pciehp_readw()/pciehp_writew() wrappers (Myron Stowe) [1061514]
-- [drm] mgag200: on cards with < 2MB VRAM default to 16-bit (Dave Airlie) [1056356]
-- [drm] cirrus: correct register values for 16bpp (Dave Airlie) [1056352]
-- [infiniband] mlx4: Build the port IBoE GID table properly under bonding (Doug Ledford) [1061729]
-- [infiniband] mlx4: Do IBoE GID table resets in port based manner (Doug Ledford) [1061729]
-- [infiniband] mlx4: Do IBoE locking earlier when initializing the GID table (Doug Ledford) [1061729]
-- [infiniband] mlx4: Move rtnl locking to the right location (Doug Ledford) [1061729]
-- [infiniband] mlx4: Make sure GID index 0 is always occupied (Doug Ledford) [1061729]
-- [infiniband] mlx4: Report using RoCE IP based gids in port caps (Doug Ledford) [1061729]
-- [mm] thp: fix infinite loop on memcg OOM (Motohiro Kosaki) [1054655]
-- [mm] thp: count thp_fault_fallback anytime thp fault fails (Motohiro Kosaki) [1054655]
-- [mm] thp: consolidate code between handle_mm_fault() and, do_huge_pmd_anonymous_page() (Motohiro Kosaki) [1054655]
-- [mm] thp: do_huge_pmd_anonymous_page() cleanup (Motohiro Kosaki) [1054655]
-- [fs] nfs: fix error return in nfs4_select_rw_stateid (Steve Dickson) [1071041]
-- [fs] nfs: Use the correct net namespace in nfs4_update_server (Steve Dickson) [1071041]
-- [net] sunrpc: Fix a pipe_version reference leak (Steve Dickson) [1071041]
-- [net] sunrpc: Fix races in xs_nospace() (Steve Dickson) [1071041]
-- [fs] nfs: Do not set NFS_INO_INVALID_LABEL unless server supports labeled NFS (Steve Dickson) [1071041]
-- [target] iscsi: Fix network portal creation race (Andy Grover) [1055064]
-- [ethernet] bnx2x: Add missing bit in default Tx switching (Michal Schmidt) [1070726]
-- [pci] dev_num_vf needs to return an int, not a bool (Alex Williamson) [1066825]
-- [kernel] cgroup: update cgroup_enable_task_cg_lists() to grab siglock (Rik van Riel) [1070919]
-- [powerpc] mm: Fix mmap errno when MAP_FIXED is set and mapping exceeds the allowed address space (Jerome Marchand) [1053681]
-
-* Mon Mar 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-101.el7]
-- [fs] btrfs: fix the race between write back and nocow buffered write (Zach Brown) [1051406]
-- [fs] btrfs: fix the wrong nocow range check (Zach Brown) [1051406]
-- [fs] btrfs: fix the reserved space leak caused by the race between nonlock dio and buffered io (Zach Brown) [1051406]
-- [fs] btrfs: cleanup unnecessary parameter and variant of prepare_pages() (Zach Brown) [1051406]
-- [fs] btrfs: fix access_ok() check in btrfs_ioctl_send() (Zach Brown) [1051282]
-- [fs] btrfs: make sure we cleanup all reloc roots if error happens (Zach Brown) [1051282]
-- [fs] btrfs: skip building backref tree for uuid and quota tree when doing balance relocation (Zach Brown) [1051282]
-- [fs] btrfs: fix an oops when doing balance relocation (Zach Brown) [1051282]
-- [fs] btrfs: don't miss skinny extent items on delayed ref head contention (Zach Brown) [1051282]
-- [fs] btrfs: call mnt_drop_write after interrupted subvol deletion (Zach Brown) [1051282]
-- [fs] btrfs: don't clear the default compression type (Zach Brown) [1051282]
-- [fs] btrfs: backport of btrfs part of "block: submit_bio_wait() conversions" (Zach Brown) [1051282]
-- [Documentation] filesystems: update btrfs tools section (Zach Brown) [1051282]
-- [Documentation] filesystems: add new btrfs mount options (Zach Brown) [1051282]
-- [fs] btrfs: update kconfig help text (Zach Brown) [1051282]
-- [fs] btrfs: fix bio_size_ok() for max_sectors > 0xffff (Zach Brown) [1051282]
-- [fs] btrfs: Use trace condition for get_extent tracepoint (Zach Brown) [1051282]
-- [fs] btrfs: fix typo in the log message (Zach Brown) [1051282]
-- [fs] btrfs: fix list delete warning when removing ordered root from the list (Zach Brown) [1051282]
-- [fs] btrfs: print bytenr instead of page pointer in check-int (Zach Brown) [1051282]
-- [fs] btrfs: remove dead codes from ctree.h (Zach Brown) [1051282]
-- [fs] btrfs: don't wait for ordered data outside desired range (Zach Brown) [1051282]
-- [fs] btrfs: fix lockdep error in async commit (Zach Brown) [1051282]
-- [fs] btrfs: avoid heavy operations in btrfs_commit_super (Zach Brown) [1051282]
-- [fs] btrfs: fix __btrfs_start_workers retval (Zach Brown) [1051282]
-- [fs] btrfs: disable online raid-repair on ro mounts (Zach Brown) [1051282]
-- [fs] btrfs: do not inc uncorrectable_errors counter on ro scrubs (Zach Brown) [1051282]
-- [fs] btrfs: only drop modified extents if we logged the whole inode (Zach Brown) [1051282]
-- [fs] btrfs: make sure to copy everything if we rename (Zach Brown) [1051282]
-- [fs] btrfs: don't BUG_ON() if we get an error walking backrefs (Zach Brown) [1051282]
-- [fs] btrfs: get rid of fdentry() (Zach Brown) [1051282]
-- [fs] btrfs: fix empty_zero_page misusage (Zach Brown) [1051282]
-- [fs] btrfs: rename btrfs_start_all_delalloc_inodes (Zach Brown) [1051282]
-- [fs] btrfs: don't wait for the completion of all the ordered extents (Zach Brown) [1051282]
-- [fs] btrfs: don't wait for all the async delalloc when shrinking delalloc (Zach Brown) [1051282]
-- [fs] btrfs: fix the confusion between delalloc bytes and metadata bytes (Zach Brown) [1051282]
-- [fs] btrfs: pick up the code for the item number calculation in flush_space() (Zach Brown) [1051282]
-- [fs] btrfs: wait for the ordered extent only when we want (Zach Brown) [1051282]
-- [fs] btrfs: remove unnecessary initialization and memory barrier in shrink_delalloc() (Zach Brown) [1051282]
-- [fs] btrfs: avoid unnecessary scrub workers allocation (Zach Brown) [1051282]
-- [fs] btrfs: check file extent type before anything else (Zach Brown) [1051282]
-- [fs] btrfs: Remove useless variable in write_ctree_super() (Zach Brown) [1051282]
-- [fs] btrfs: Fix checkpatch.pl warning of spacing issues (Zach Brown) [1051282]
-- [fs] btrfs: Replace kmalloc with kmalloc_array (Zach Brown) [1051282]
-- [fs] btrfs: Enclose macros with complex values within parenthesis (Zach Brown) [1051282]
-- [fs] btrfs: Use WARN_ON()'s return value in place of WARN_ON(1) (Zach Brown) [1051282]
-- [fs] btrfs: Remove redundant local zero structure (Zach Brown) [1051282]
-- [fs] btrfs: Pack struct btrfs_device (Zach Brown) [1051282]
-- [fs] btrfs: Replace multiple atomic_inc() with atomic_add() (Zach Brown) [1051282]
-- [fs] btrfs: Add helper function for free_root_pointers() (Zach Brown) [1051282]
-- [fs] btrfs: fix a crash when running balance and defrag concurrently (Zach Brown) [1051282]
-- [fs] btrfs: do not run snapshot-aware defragment on error (Zach Brown) [1051282]
-- [fs] btrfs: log recovery, don't unlink inode always on error (Zach Brown) [1051282]
-- [fs] btrfs: fix csum search offset/length calculation in log tree (Zach Brown) [1051282]
-- [fs] btrfs: fix verification of dir_item (Zach Brown) [1051282]
-- [fs] btrfs: remove scrub_super_lock holding in btrfs_sync_log() (Zach Brown) [1051282]
-- [fs] btrfs: use 'u64' rather than 'int' to get extent's generation (Zach Brown) [1051282]
-- [fs] btrfs: fix the free space write out failure when there is no data space (Zach Brown) [1051282]
-- [fs] btrfs: stop committing the transaction so much during relocate (Zach Brown) [1051282]
-- [fs] btrfs: make sure the delalloc workers actually flush compressed writes (Zach Brown) [1051282]
-- [fs] btrfs: take ordered root lock when removing ordered operations inode (Zach Brown) [1051282]
-- [fs] btrfs: don't abort transaction in run_delalloc_nocow (Zach Brown) [1051282]
-- [fs] btrfs: do not bug_on if we try to cow a free space cache inode (Zach Brown) [1051282]
-- [fs] btrfs: return an error from btrfs_wait_ordered_range (Zach Brown) [1051282]
-- [fs] btrfs: stop using vfs_read in send (Zach Brown) [1051282]
-- [fs] btrfs: check_int, remove warning for mixed-mode (Zach Brown) [1051282]
-- [fs] btrfs: fix check_int 'leaf item out of bounce' regression (Zach Brown) [1051282]
-- [fs] btrfs: optimize extent item search in run_delayed_extent_op (Zach Brown) [1051282]
-- [fs] btrfs: add tracing for failed reservations (Zach Brown) [1051282]
-- [fs] btrfs: remove fs/btrfs/compat.h (Zach Brown) [1051282]
-- [fs] btrfs: remove move_pages() (Zach Brown) [1051282]
-- [fs] btrfs: use get_seconds() instead of btrfs wrapper (Zach Brown) [1051282]
-- [fs] btrfs: fix incorrect inode acl reset (Zach Brown) [1051282]
-- [fs] btrfs: Don't allocate inode that is already in use (Zach Brown) [1051282]
-- [fs] btrfs: fix btrfs_prev_leaf() previous key computation (Zach Brown) [1051282]
-- [fs] btrfs: optimize tree-log.c:count_inode_refs() (Zach Brown) [1051282]
-- [fs] btrfs: simplify kmalloc+copy_from_user to memdup_user (Zach Brown) [1051282]
-- [fs] btrfs: btrfs_add_ordered_operation, Fix last modified transaction comparison (Zach Brown) [1051282]
-- [fs] btrfs: don't leak delayed node on path allocation failure (Zach Brown) [1051282]
-- [fs] btrfs: Wait for uuid-tree rebuild task on remount read-only (Zach Brown) [1051282]
-- [fs] btrfs: init device stats for new devices (Zach Brown) [1051282]
-- [fs] btrfs: fixup error path in __btrfs_inc_extent_ref (Zach Brown) [1051282]
-- [fs] btrfs: disallow 'btrfs (balance, replace) cancel' on ro mounts (Zach Brown) [1051282]
-- [fs] btrfs: don't leak ioctl args in btrfs_ioctl_dev_replace (Zach Brown) [1051282]
-- [fs] btrfs: nuke a bogus rw_devices decrement in __btrfs_close_devices (Zach Brown) [1051282]
-- [fs] btrfs: Fix memory leakage in the tree-log.c (Zach Brown) [1051282]
-- [fs] btrfs: kill unused code in btrfs_search_forward (Zach Brown) [1051282]
-- [fs] btrfs: cleanup dead code of defragment (Zach Brown) [1051282]
-- [fs] btrfs: remove unnecessary key copy when logging inode (Zach Brown) [1051282]
-- [fs] btrfs: Simplify the logic in alloc_extent_buffer() for existing extent buffer case (Zach Brown) [1051282]
-- [fs] btrfs: fix up seek_hole/seek_data handling (Zach Brown) [1051282]
-- [fs] btrfs: add an assert to btrfs_lookup_csums_range for alignment (Zach Brown) [1051282]
-- [fs] btrfs: fix hole check in log_one_extent (Zach Brown) [1051282]
-- [fs] btrfs: add a sanity test for a vacant extent at the front of a file (Zach Brown) [1051282]
-- [fs] btrfs: handle a missing extent for the first file extent (Zach Brown) [1051282]
-- [fs] btrfs: stop all workers after we free block groups (Zach Brown) [1051282]
-- [fs] btrfs: add tests for btrfs_get_extent (Zach Brown) [1051282]
-- [fs] btrfs: add tests for find_lock_delalloc_range (Zach Brown) [1051282]
-- [fs] btrfs: free reserved space on error in a few places (Zach Brown) [1051282]
-- [fs] btrfs: fixup reserved trace points (Zach Brown) [1051282]
-- [fs] btrfs: free up block groups after everything (Zach Brown) [1051282]
-- [fs] btrfs: cleanup reserved space when freeing tree log on error (Zach Brown) [1051282]
-- [fs] btrfs: do not free the dirty bytes from the trans block rsv on cleanup (Zach Brown) [1051282]
-- [fs] btrfs: fix memory leaks on transaction commit failure (Zach Brown) [1051282]
-- [fs] btrfs: fix the dev-replace suspend sequence (Zach Brown) [1051282]
-- [fs] btrfs: improve inode hash function/inode lookup (Zach Brown) [1051282]
-- [fs] btrfs: remove unnecessary tree search when logging inode (Zach Brown) [1051282]
-- [fs] btrfs: remove unused max_key arg from btrfs_search_forward (Zach Brown) [1051282]
-- [fs] btrfs: fix memory leak of chunks' extent map (Zach Brown) [1051282]
-- [fs] btrfs: improve jitter performance of the sequential buffered write (Zach Brown) [1051282]
-- [fs] btrfs: fix BUG_ON() casued by the reserved space migration (Zach Brown) [1051282]
-- [fs] btrfs: remove unused parameter from btrfs_header_fsid (Zach Brown) [1051282]
-- [fs] btrfs: fix two use-after-free bugs with transaction cleanup (Zach Brown) [1051282]
-- [fs] btrfs: remove all BUG_ON()'s from commit_cowonly_roots (Zach Brown) [1051282]
-- [fs] btrfs: don't delete ordered roots from list during cleanup (Zach Brown) [1051282]
-- [fs] btrfs: cleanup transaction on abort (Zach Brown) [1051282]
-- [fs] btrfs: do not release metadata for space cache inodes (Zach Brown) [1051282]
-- [fs] btrfs: reset intwrite on transaction abort (Zach Brown) [1051282]
-- [fs] btrfs: don't leak block group on error (Zach Brown) [1051282]
-- [fs] btrfs: fix sync fs to actually wait for all data to be persisted (Zach Brown) [1051282]
-- [fs] btrfs: fix tracking of orphan inode count (Zach Brown) [1051282]
-- [fs] btrfs: export btrfs space shared info to userspace (Zach Brown) [1051282]
-- [fs] btrfs: remove path arg from btrfs_truncate_free_space_cache (Zach Brown) [1051282]
-- [fs] btrfs: remove duplicated ino cache's inode lookup (Zach Brown) [1051282]
-- [fs] btrfs: do a full search everytime in btrfs_search_old_slot (Zach Brown) [1051282]
-- [fs] btrfs: add a sanity test for btrfs_split_item (Zach Brown) [1051282]
-- [fs] btrfs: drop unused parameter from btrfs_item_nr (Zach Brown) [1051282]
-- [fs] btrfs: don't store NULL byte in symlink extents (Zach Brown) [1051282]
-- [fs] btrfs: eliminate the exceptional root_tree refs=0 (Zach Brown) [1051282]
-
-* Mon Mar 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-100.el7]
-- [scsi] report sense even for TEST UNIT READY commands (Ewan Milne) [1070982]
-- [bfa] Fix for crash during sfpshow command (Chad Dupuis) [1065950]
-- [mm] fix GFP_THISNODE callers and clarify (Johannes Weiner) [1069551 1069639]
-- [mm] page_alloc: exempt GFP_THISNODE allocations from zone fairness (Johannes Weiner) [1069551 1069639]
-- [scsi] reserve space in structures for future scsi-mq changes (Mike Snitzer) [1071014]
-- [block] remove unprep_rq_fn (Mike Snitzer) [1071014]
-- [scsi] reintroduce scsi_driver.init_command (Mike Snitzer) [1071014]
-- [block] blk-mq: support partial I/O completions (Mike Snitzer) [1071014]
-- [block] blk-mq: merge blk_mq_insert_request and blk_mq_run_request (Mike Snitzer) [1071014]
-- [block] blk-mq: remove blk_mq_alloc_rq (Mike Snitzer) [1071014]
-- [block] blk-mq: pair blk_mq_start_request / blk_mq_requeue_request (Mike Snitzer) [1071014]
-- [block] blk-mq: dont assume rq->errors is set when returning an error from ->queue_rq (Mike Snitzer) [1071014]
-- [block] Fix type mismatch in ssize_t_blk_mq_tag_sysfs_show (Mike Snitzer) [1071014]
-- [block] blk-mq: rework flush sequencing logic (Mike Snitzer) [1071014]
-- [block] null_blk: use blk_complete_request and blk_mq_complete_request (Mike Snitzer) [1071014]
-- [block] blk-mq: rework I/O completions (Mike Snitzer) [1071014]
-- [block] null_blk: Fix completion processing from LIFO to FIFO (Mike Snitzer) [1071014]
-- [lib] llist: move llist_reverse_order from raid5 to llist.c (Mike Snitzer) [1071014]
-- [lib] llist: llist_add() can use llist_add_batch() (Mike Snitzer) [1071014]
-- [lib] llist: fix_simplify llist_add() and llist_add_batch() (Mike Snitzer) [1071014]
-- [block] blk-mq: Add bio_integrity setup to blk_mq_make_request (Mike Snitzer) [1071014]
-- [block] blk-mq: initialize sg_reserved_size (Mike Snitzer) [1071014]
-- [block] blk-mq: handle dma_drain_size (Mike Snitzer) [1071014]
-- [block] blk-mq: divert __blk_put_request for MQ ops (Mike Snitzer) [1071014]
-- [block] blk-mq: support at_head inserations for blk_execute_rq (Mike Snitzer) [1071014]
-- [block] null_blk: Null pointer deference problem in alloc_page_buffers (Mike Snitzer) [1071014]
-- [block] null_blk: fix queue leak inside removing device (Mike Snitzer) [1071014]
-- [block] null_blk: support submit_queues on use_per_node_hctx (Mike Snitzer) [1071014]
-- [block] null_blk: set use_per_node_hctx param to false (Mike Snitzer) [1071014]
-- [block] null_blk: warning on ignored submit_queues param (Mike Snitzer) [1071014]
-- [block] null_blk: refactor init and init errors code paths (Mike Snitzer) [1071014]
-- [block] null_blk: mem garbage on NUMA systems during init (Mike Snitzer) [1071014]
-- [block] null_blk: corrections to documentation (Mike Snitzer) [1071014]
-- [block] null_blk: documentation (Mike Snitzer) [1071014]
-- [block] null_blk: fix differences between RHEL7 and upstream (Mike Snitzer) [1071014]
-- [target] iscsi-target: Fix connection reset hang with percpu_ida_alloc (Mike Snitzer) [1071014]
-- [lib] percpu_ida: Make percpu_ida_alloc + callers accept task state bitmask (Mike Snitzer) [1071014]
-- [lib] percpu_ida: Removing unused arguement from alloc_local_tag (Mike Snitzer) [1071014]
-- [block] blk-mq: use hotcpu_notifier() (Mike Snitzer) [1071014]
-- [block] blk-mq: uses page->list incorrectly (Mike Snitzer) [1071014]
-- [block] blk-mq: use __smp_call_function_single directly (Mike Snitzer) [1071014]
-- [kernel] provide a __smp_call_function_single stub for !CONFIG_SMP (Mike Snitzer) [1071014]
-- [block] blk-mq: fix initializing request's start time (Mike Snitzer) [1071014]
-- [block] blk-mq: don't export blk_mq_free_queue() (Mike Snitzer) [1071014]
-- [block] blk-mq: make blk_sync_queue support mq (Mike Snitzer) [1071014]
-- [block] blk-mq: support draining mq queue (Mike Snitzer) [1071014]
-- [virt] kvm/x86: emulator_cmpxchg_emulated should mark_page_dirty (Marcelo Tosatti) [994431]
-- [x86] irq: Fix kbuild warning in smp_irq_move_cleanup_interrupt() (Prarit Bhargava) [1065735]
-- [security] selinux: put the mmap() DAC controls before the MAC controls (Paul Moore) [1070827]
-- [infiniband] iser: Avoid dereferncing iscsi_iser conn object when not bound to iser connection (Doug Ledford) [1061129]
-- [mm] Use ptep/pmdp_set_numa() for updating _PAGE_NUMA bit (Steve Best) [1049012]
-- [mm] Dirty accountable change only apply to non prot numa case (Steve Best) [1049012]
-- [powerpc] mm: Add new "set" flag argument to pte/pmd update function (Steve Best) [1049012]
-- [powerpc] mm: Enable _PAGE_NUMA for book3s (Steve Best) [1049012]
-- [powerpc] mm: Only check for _PAGE_PRESENT in set_pte/pmd functions (Steve Best) [1049012]
-- [powerpc] mm: Free up _PAGE_COHERENCE for numa fault use later (Steve Best) [1049012]
-- [powerpc] mm: Use HPTE constants when updating hpte bits (Steve Best) [1049012]
-- [mm] Move change_prot_numa outside CONFIG_ARCH_USES_NUMA_PROT_NONE (Steve Best) [1049012]
-
-* Fri Feb 28 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-99.el7]
-- [target] Pass through I/O topology for block backstores (Andy Grover) [873474]
-- [target] iscsi-target: ST response on IN6ADDR_ANY socket (Andy Grover) [913033]
-- [security] keys: Fix searching of nested keyrings (David Howells) [1033467]
-- [security] keys: Fix multiple key add into associative array (David Howells) [1033467]
-- [security] keys: Fix the keyring hash function (David Howells) [1033467]
-- [ethernet] bnx2x: Fix generic option settings (Michal Schmidt) [1066076]
-- [tools] perf/kvm: Fix kvm report without guestmount (Jiri Olsa) [1051298]
-- [mm] readahead: fix readahead failure for memoryless NUMA nodes and limit readahead pages (Steve Best) [1062288]
-- [ethernet] Mark Intel DH8900CC Series Gigabit Network Device Unsupported (Prarit Bhargava) [727275]
-- [drm] nouveau/mxm: fix null deref on load (Ben Skeggs) [1067807]
-- [ethernet] i40e: Fix device ID define names to align to standard (Stefan Assmann) [1057192]
-- [ethernet] i40e: add DCB option to Kconfig (Stefan Assmann) [1057192]
-- [ethernet] i40e: add DCB and DCBNL support (Stefan Assmann) [1057192]
-- [ethernet] i40e: implement DCB support infastructure (Stefan Assmann) [1057192]
-- [ethernet] i40e: refactor flow director (Stefan Assmann) [1057192]
-- [ethernet] i40e: rename defines (Stefan Assmann) [1057192]
-- [ethernet] i40e: whitespace fixes (Stefan Assmann) [1057192]
-- [ethernet] i40e: Change firmware workaround (Stefan Assmann) [1057192]
-- [ethernet] i40e: fix compile warning on checksum_local (Stefan Assmann) [1057192]
-- [ethernet] i40e: updates to AdminQ interface (Stefan Assmann) [1057192]
-- [ethernet] i40e: check desc pointer before printing (Stefan Assmann) [1057192]
-- [ethernet] i40e: delete non-required instances of include <linux/init.h> (Stefan Assmann) [1057192]
-- [ethernet] i40e: Retain MAC filters on port VLAN deletion (Stefan Assmann) [1057192]
-- [ethernet] i40e: Warn admin to reload VF driver on port VLAN configuration (Stefan Assmann) [1057192]
-- [ethernet] i40e: Bump version number (Stefan Assmann) [1057192]
-- [ethernet] i40e: trivial cleanup (Stefan Assmann) [1057192]
-- [ethernet] i40e: whitespace fixes (Stefan Assmann) [1057192]
-- [ethernet] i40e: make message meaningful (Stefan Assmann) [1057192]
-- [ethernet] i40e: associate VMDq queue with VM type (Stefan Assmann) [1057192]
-- [ethernet] i40e: remove extra register write (Stefan Assmann) [1057192]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1057192]
-- [ethernet] i40e: fix log message wording (Stefan Assmann) [1057192]
-- [ethernet] i40e: enable PTP (Stefan Assmann) [1057192]
-- [ethernet] i40e: call clear_pxe after adminq is initialized (Stefan Assmann) [1057192]
-- [ethernet] i40e: clear qtx_head before enabling Tx queue (Stefan Assmann) [1057192]
-- [ethernet] i40e: adjust ITR max and min values (Stefan Assmann) [1057192]
-- [ethernet] i40e: check for possible incorrect ipv6 checksum (Stefan Assmann) [1057192]
-- [ethernet] i40e: allow VF to remove any MAC filter (Stefan Assmann) [1057192]
-- [ethernet] i40e: do not bail when disabling if Tx queue disable fails (Stefan Assmann) [1057192]
-- [ethernet] i40e: Setting queue count to 1 using ethtool is valid (Stefan Assmann) [1057192]
-- [ethernet] i40e: Cleanup Doxygen warnings (Stefan Assmann) [1057192]
-- [ethernet] i40e: fix long lines (Stefan Assmann) [1057192]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1057192]
-- [ethernet] i40e: Update the Current NVM version Low value (Stefan Assmann) [1057192]
-- [ethernet] i40e: drop unused macros (Stefan Assmann) [1057192]
-- [ethernet] i40e: use assignment instead of memcpy (Stefan Assmann) [1057192]
-- [ethernet] i40e: Turn flow director off in MFP mode (Stefan Assmann) [1057192]
-- [ethernet] i40e: Add a dummy packet template (Stefan Assmann) [1057192]
-- [ethernet] i40e: fix spelling errors (Stefan Assmann) [1057192]
-- [ethernet] i40e: formatting and checkpatch fixes (Stefan Assmann) [1057192]
-- [ethernet] i40e: shorten wordy fields (Stefan Assmann) [1057192]
-- [ethernet] i40e: accept pf to pf adminq messages (Stefan Assmann) [1057192]
-- [ethernet] i40e: remove interrupt on AQ error (Stefan Assmann) [1057192]
-- [ethernet] i40e: release NVM resource reservation on startup (Stefan Assmann) [1057192]
-- [ethernet] i40e: Cleanup reconfig rss path (Stefan Assmann) [1057192]
-- [ethernet] i40e: disable packet split (Stefan Assmann) [1057192]
-- [ethernet] i40e: add a comment on barrier and fix panic on reset (Stefan Assmann) [1057192]
-- [ethernet] i40e: Fix MAC format in Write MAC address AQ cmd (Stefan Assmann) [1057192]
-- [ethernet] i40e: Fix GPL header (Stefan Assmann) [1057192]
-- [ethernet] i40e: use kernel specific defines (Stefan Assmann) [1057192]
-- [ethernet] i40e: Re-enable interrupt on ICR0 (Stefan Assmann) [1057192]
-
-* Thu Feb 27 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-98.el7]
-- [scsi] qla4xxx: v5.04.00.04.07.00-k0 (Chad Dupuis) [1063205]
-- [scsi] qla4xxx: Initialize hardware queue for ISP40XX (Chad Dupuis) [1063205]
-- [fs] cifs: mask off top byte in get_rfc1002_length() (Sachin Prabhu) [1062588] {CVE-2014-0069}
-- [infiniband] mlx4: Add support for steerable IB UD QPs (Doug Ledford) [1058518]
-- [infiniband] mlx4: Add mechanism to support flow steering over IB links (Doug Ledford) [1058518]
-- [infiniband] mlx4: Enable device-managed steering support for IB ports too (Doug Ledford) [1058518]
-- [ethernet] mlx4: Add support for steerable IB UD QPs (Doug Ledford) [1058518]
-- [infiniband] core: Add support for IB L2 device-managed steering (Doug Ledford) [1058518]
-- [infiniband] core: Add flow steering support for IPoIB UD traffic (Doug Ledford) [1058518]
-- [scsi] isci: correct erroneous for_each_isci_host macro (David Milburn) [1054302]
-- [virt] vhost/net: disable zero copy by default (Jason Wang) [1069045]
-- [x86] cpu-hotplug: Fix stack frame warning in check_irq_vectors_for_cpu_disable() (Prarit Bhargava) [1061317]
-- [drm] radeon/kms: add crtc_disable function for legacy crtc (Jerome Glisse) [1029570]
-- [drm] radeon/kms: unpin fb in atombios crtc disable (Jerome Glisse) [1029570]
-- [powerpc] Fix 32-bit frames for signals delivered when transactional (Steve Best) [1059703]
-- [edac] Correct workqueue setup path (Aristeu Rozanski) [1055892]
-- [edac] Poll timeout cannot be zero, p2 (Aristeu Rozanski) [1055892]
-- [edac] edac_mc_sysfs: poll timeout cannot be zero (Aristeu Rozanski) [1055892]
-
-* Tue Feb 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-97.el7]
-- [fs] cifs: sanity check length of data to send before sending (Sachin Prabhu) [1062588] {CVE-2014-0069}
-- [fs] cifs: ensure that uncached writes handle unmapped areas correctly (Sachin Prabhu) [1062588] {CVE-2014-0069}
-- [fs] cifs: set FILE_CREATED (Sachin Prabhu) [1065982]
-- [fs] ext4: Disable punch hole on non-extent mapped files (Lukas Czerner) [1033438]
-- [fs] Fix mountpoint reference leakage in linkat (Jeff Layton) [1063287]
-- [fs] NFSD/sunrpc: avoid deadlock on TCP connection due to memory pressure ("J. Bruce Fields") [994257]
-- [fs] nfsd: consider CLAIM_FH when handing out delegation ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: minor nfs4_setlease cleanup ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: need to destroy revoked delegations in destroy_client ("J. Bruce Fields") [1031097]
-- [fs] nfsd: no need to unhash_stid before free ("J. Bruce Fields") [1031097]
-- [fs] nfsd: nfs4_open_delegation needs to remove_stid rather than unhash_stid ("J. Bruce Fields") [1031097]
-- [fs] nfsd: nfs4_free_stid ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: fix leak of inode reference on delegation failure ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: fix setlease error return ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: fix delegation-unlink/rename race ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: delay setting current_fh in open ("J. Bruce Fields") [1031097]
-- [fs] nfsd4: break only delegations when appropriate ("J. Bruce Fields") [1031097]
-- [fs] nfsd: make sure to balance get/put_write_access ("J. Bruce Fields") [1031097]
-- [fs] nfsd: split up nfsd_setattr ("J. Bruce Fields") [1031097]
-- [fs] locks: break delegations on any attribute modification ("J. Bruce Fields") [1031097]
-- [fs] locks: break delegations on link ("J. Bruce Fields") [1031097]
-- [fs] locks: break delegations on rename ("J. Bruce Fields") [1031097]
-- [fs] locks: helper functions for delegation breaking ("J. Bruce Fields") [1031097]
-- [fs] locks: break delegations on unlink ("J. Bruce Fields") [1031097]
-- [fs] namei: minor vfs_unlink cleanup ("J. Bruce Fields") [1031097]
-- [fs] locks: implement delegations ("J. Bruce Fields") [1031097]
-- [fs] locks: introduce new FL_DELEG lock flag ("J. Bruce Fields") [1031097]
-- [fs] vfs: take i_mutex on renamed file ("J. Bruce Fields") [1031097]
-- [fs] vfs: rename I_MUTEX_QUOTA now that it's not used for quotas ("J. Bruce Fields") [1031097]
-- [fs] vfs: don't use PARENT/CHILD lock classes for non-directories ("J. Bruce Fields") [1031097]
-- [fs] vfs: pull ext4's double-i_mutex-locking into common code ("J. Bruce Fields") [1031097]
-- [fs] ext4: fix FITRIM in no journal mode (Lukas Czerner) [1044519]
-- [fs] ext4: add ratelimiting to ext4 messages (Lukas Czerner) [1044513]
-- [fs] ext4: rate limit printk in buffer_io_error() (Lukas Czerner) [1044513]
-- [fs] ext4: translate flag bits to strings in tracepoints (Lukas Czerner) [1044505]
-- [fs] ext4: Fix fsync error handling after filesystem abort (Lukas Czerner) [1044501]
-
-* Tue Feb 25 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-96.el7]
-- [x86] Makefile: add -Werror to compile (Prarit Bhargava) [1006333]
-- [edac] sb_edac: Shut up compiler warning when EDAC_DEBUG is enabled (Prarit Bhargava) [1006333]
-- [kernel] mutex: Avoid label warning when !CONFIG_MUTEX_SPIN_ON_OWNER (Prarit Bhargava) [1006333]
-- [infiniband] ocrdma: Fix compiler warning (Prarit Bhargava) [1006333]
-- [isdn] hfcpci_softirq: get func return to suppress compiler warning (Prarit Bhargava) [1006333]
-- [x86] Fix return value in generic_processor_info() (Prarit Bhargava) [1006333]
-- [wireless] rtlwifi: initialize local array and set value (Prarit Bhargava) [1006333]
-- [ethernet] mlx4: clean up srq_res_start_move_to() (Prarit Bhargava) [1006333]
-- [ethernet] mlx4: clean up cq_res_start_move_to() (Prarit Bhargava) [1006333]
-- [powerpc] Link VDSOs at 0x0 (Steve Best) [1066468]
-- [powerpc] Use unstripped VDSO image for more accurate profiling data (Steve Best) [1066468]
-- [scsi] fnic: Incremented driver version (Chris Leech) [831836]
-- [scsi] fnic: Fnic Statistics Collection (Chris Leech) [831836]
-- [scsi] fnic: host reset returns nonzero value(errno) on (Chris Leech) [831836]
-- [scsi] fnic: Convert uses of compare_ether_addr to ether_addr_equal (Chris Leech) [831836]
-- [scsi] fnic: remove unnecessary pci_set_drvdata() (Chris Leech) [831836]
-- [scsi] fnic: fnic Driver Tuneables Exposed through CLI (Chris Leech) [831836]
-- [scsi] fnic: Kernel panic while running sh/nosh with max lun (Chris Leech) [831836]
-- [scsi] fnic: Hitting BUG_ON(io_req->abts_done) in (Chris Leech) [831836]
-- [scsi] fnic: Remove QUEUE_FULL handling code (Chris Leech) [831836]
-- [scsi] fnic: On system with >1.1TB RAM, VIC fails multipath (Chris Leech) [831836]
-- [scsi] fnic: FC stat param seconds_since_last_reset not (Chris Leech) [831836]
-- [scsi] fnic: BUG, sleeping function called from invalid (Chris Leech) [831836]
-- [scsi] fnic: switch to fixed_size_llseek() (Chris Leech) [831836]
-- [scsi] fnic: potential dead lock in fnic_is_abts_pending() (Chris Leech) [831836]
-- [powerpc] mm: Fix compile error of pgtable-ppc64.h (Steve Best) [1047636]
-- [powerpc] thp: Fix crash on mremap (Steve Best) [1047636]
-- [ethernet] bnx2x: Allow VF rss on higher PFs (Michal Schmidt) [1062634]
-- [ethernet] bnx2x: Fix VF flr flow (Michal Schmidt) [1062634]
-- [ethernet] bnx2x: Correct default Tx switching behaviour (Michal Schmidt) [1058592]
-- [block] sg_io: allow WRITE SAME without CAP_SYS_RAWIO (Paolo Bonzini) [966883]
-- [block] sg_io: introduce unpriv_sgio queue flag (Paolo Bonzini) [966883]
-- [block] sg_io: pass request_queue to blk_verify_command (Paolo Bonzini) [966883]
-- [scsi] aacraid: prevent invalid pointer dereference (Frantisek Hrbata) [1034301] {CVE-2013-6380}
-- [ethernet] be2net: Fix be_vlan_add/rem_vid() routines (Ivan Vecera) [1065829]
-- [wireless] libertas: potential oops in debugfs (Denys Vlasenko) [1034178] {CVE-2013-6378}
-- [mm] remove bogus warning in copy_huge_pmd() (Rik van Riel) [1067326]
-- [wireless] ath9k: properly set MAC address and BSSID mask (Denys Vlasenko) [1033071] {CVE-2013-4579}
-- [video] matroxfb: Default to 1024x768 @ 60 (Adam Jackson) [1055533]
-- [powerpc] pseries: Add Gen3 definitions for PCIE link speed (Jerome Glisse) [1056701]
-- [powerpc] pseries: Fix regression on PCI link speed (Jerome Glisse) [1056701]
-
-* Sat Feb 22 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-95.el7]
-- [fs] nfs: nfs4_destroy_session must call rpc_destroy_waitqueue (Steve Dickson) [1061707]
-- [fs] nfs: Fix memory corruption in nfs4_proc_open_confirm (Steve Dickson) [1061707]
-- [fs] nfs: initialize the ACL support bits to zero (Steve Dickson) [1059241 919382]
-- [fs] nfs: Cleanup (Steve Dickson) [1059241 919382]
-- [fs] nfs: Clean up nfs41_sequence_done (Steve Dickson) [1059241 919382]
-- [fs] nfs: Fix a slot leak in nfs40_sequence_done (Steve Dickson) [1059241 919382]
-- [fs] nfs: free slot before resending I/O to MDS (Steve Dickson) [1059241 919382]
-- [fs] nfs: add memory barriers around NFS_INO_INVALID_DATA and NFS_INO_INVALIDATING (Steve Dickson) [1059241 919382]
-- [fs] nfs: Fix races in nfs_revalidate_mapping (Steve Dickson) [1059241 919382]
-- [net] sunrpc: turn warn_gssd() log message into a dprintk() (Steve Dickson) [1059241 919382]
-- [fs] nfs: fix the handling of NFS_INO_INVALID_DATA flag in nfs_revalidate_mapping (Steve Dickson) [1059241 919382]
-- [fs] nfs: handle servers that support only ALLOW ACE type (Steve Dickson) [1059241 919382]
-- [fs] nfs: Proper delay for NFS4ERR_RECALLCONFLICT in layout_get_done (Steve Dickson) [1059622]
-- [fs] nfs: fix BUG in filelayout_recover_commit_reqs (Steve Dickson) [1059622]
-- [fs] nfs: fix discover_server_trunking use after free (Steve Dickson) [1059622]
-- [fs] nfs: Handle errors correctly in nfs41_walk_client_list (Steve Dickson) [1059622]
-- [fs] nfs: always make sure page is up-to-date before extending a write to cover the entire page (Steve Dickson) [1059622]
-- [fs] nfs: page cache invalidation for dio (Steve Dickson) [1059622]
-- [fs] nfs: take i_mutex during direct I/O reads (Steve Dickson) [1059622]
-- [fs] nfs: merge nfs_direct_write into nfs_file_direct_write (Steve Dickson) [1059622]
-- [fs] nfs: merge nfs_direct_read into nfs_file_direct_read (Steve Dickson) [1059622]
-- [fs] nfs: increment i_dio_count for reads, too (Steve Dickson) [1059622]
-- [fs] nfs: defer inode_dio_done call until size update is done (Steve Dickson) [1059622]
-- [fs] nfs: fix size updates for aio writes (Steve Dickson) [1059622]
-- [fs] nfs: properly handle ENOTSUP in SECINFO_NO_NAME (Steve Dickson) [1059622]
-- [fs] nfs: Fix a race in nfs4_write_inode (Steve Dickson) [1059622]
-- [fs] nfs: Don't trust attributes if a pNFS LAYOUTCOMMIT is outstanding (Steve Dickson) [1059622]
-- [fs] nfs: use p(dD) point to the right include file in a comment (left over from a9004abc3) (Steve Dickson) [1059622]
-- [fs] nfs: dprintk() should not print negative fileids and inode numbers (Steve Dickson) [1059622]
-- [fs] nfs: use (dD) instead of open-coded (and often racy) equivalents (Steve Dickson) [1059622]
-- [lib] vsprintf: document formats for dentry and struct file (Steve Dickson) [1059622]
-- [lib] vsprintf: add formats for dentry/file pathnames (Steve Dickson) [1059622]
-- [fs] nfs: fix dead code of ipv6_addr_scope (Steve Dickson) [1059622]
-- [net] sunrpc: Fix infinite loop in RPC state machine (Steve Dickson) [1059622]
-- [net] sunrpc: Add tracepoint for socket errors (Steve Dickson) [1059622]
-- [net] sunrpc: Report connection error values to rpc_tasks on the pending queue (Steve Dickson) [1059622]
-- [net] sunrpc: Handle connect errors ECONNABORTED and EHOSTUNREACH (Steve Dickson) [1059622]
-- [net] sunrpc: Ensure xprt_connect_status handles all potential connection errors (Steve Dickson) [1059622]
-- [fs] nfs: OPEN must handle the NFS4ERR_IO return code correctly (Steve Dickson) [1059622]
-
-* Sat Feb 22 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-94.el7]
-- [powerpc] finish off merge to put FP/VSX and VR state into structures (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in pseries EEH code (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in nvram code (Steve Best) [1051192]
-- [powerpc] Fix endian issues in crash dump code (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in MSI code (Steve Best) [1051192]
-- [powerpc] pseries: Fix PCIE link speed endian issue (Steve Best) [1051192]
-- [powerpc] Fix topology core_id endian issue on LE builds (Steve Best) [1051192]
-- [powerpc] Fix endian issue in setup-common.c (Steve Best) [1051192]
-- [powerpc] allyesconfig should not select CONFIG_CPU_LITTLE_ENDIAN (Steve Best) [1051192]
-- [powerpc] Fix error when cross building TAGS & cscope (Steve Best) [1051192]
-- [powerpc] kvm: allow guest control "E" attribute in mas2 (Steve Best) [1051192]
-- [powerpc] Wrong DWARF CFI in the kernel vdso for little-endian / ELFv2 (Steve Best) [1051192]
-- [powerpc] Add CONFIG_CPU_LITTLE_ENDIAN kernel config option (Steve Best) [1051192]
-- [powerpc] Don't use ELFv2 ABI to build the kernel (Steve Best) [1051192]
-- [powerpc] ELF2 binaries signal handling (Steve Best) [1051192]
-- [powerpc] ELF2 binaries launched directly (Steve Best) [1051192]
-- [powerpc] Set eflags correctly for ELF ABIv2 core dumps (Steve Best) [1051192]
-- [powerpc] Add TIF_ELF2ABI flag (Steve Best) [1051192]
-- [powerpc] Remove big endianness assumption in of_find_next_cache_node (Steve Best) [1051192]
-- [powerpc] word-at-a-time optimization for 64-bit Little Endian (Steve Best) [1051192]
-- [powerpc] bpf: BPF JIT compiler for 64-bit Little Endian (Steve Best) [1051192]
-- [powerpc] nvram: Fix endian issue when using the partition length (Steve Best) [1051192]
-- [powerpc] nvram: Fix endian issue when reading the NVRAM size (Steve Best) [1051192]
-- [powerpc] Use -mcpu=power7 on ppc64 little endian builds (Steve Best) [1051192]
-- [powerpc] booke64: Use appropriate -mcpu (Steve Best) [1051192]
-- [powerpc] Fix Unaligned LE Floating Point Loads and Stores (Steve Best) [1051192]
-- [powerpc] Fix Unaligned Loads and Stores (Steve Best) [1051192]
-- [powerpc] Enable Little Endian Alignment Handler for Float Pair Instructions (Steve Best) [1051192]
-- [powerpc] Fix Handler of Unaligned Load/Store Strings (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in pseries iommu code (Steve Best) [1051192]
-- [powerpc] Fix little endian issue in OF PCI scan (Steve Best) [1051192]
-- [powerpc] Make kernel module helper endian-safe (Steve Best) [1051192]
-- [powerpc] prom_init exception when updating core value (Steve Best) [1051192]
-- [powerpc] kernel: Fix endian issue in rtas_pci (Steve Best) [1051192]
-- [powerpc] Work around little endian gcc bug (Steve Best) [1051192]
-- [powerpc] Don't set HAVE_EFFICIENT_UNALIGNED_ACCESS on little endian builds (Steve Best) [1051192]
-- [powerpc] Add ability to build little endian kernels (Steve Best) [1051192]
-- [powerpc] kvm: Disable KVM on little endian builds (Steve Best) [1051192]
-- [powerpc] hvsi: Fix endian issues in HVSI driver (Steve Best) [1051192]
-- [powerpc] powernv: More little endian issues in OPAL RTC driver (Steve Best) [1051192]
-- [powerpc] powernv: Don't register exception handlers in little endian mode (Steve Best) [1051192]
-- [powerpc] powernv: Fix OPAL entry and exit in little endian mode (Steve Best) [1051192]
-- [powerpc] powernv: Fix endian issues in OPAL console and udbg backend (Steve Best) [1051192]
-- [powerpc] powernv: Fix endian issues in powernv PCI code (Steve Best) [1051192]
-- [powerpc] powernv: Make OPAL NVRAM device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] powernv: Fix endian issues in OPAL ICS backend (Steve Best) [1051192]
-- [powerpc] powernv: Fix endian issues in OPAL RTC driver (Steve Best) [1051192]
-- [powerpc] Little endian sparse clean up for arch/powerpc/platforms/powernv/pci-ioda.c (Steve Best) [1051192]
-- [powerpc] Little endian fix for arch/powerpc/platforms/powernv/pci-p5ioc2.c (Steve Best) [1051192]
-- [powerpc] Little endian fix for arch/powerpc/platforms/powernv/pci.c (Steve Best) [1051192]
-- [powerpc] Little endian fixes for platforms/powernv/opal.c (Steve Best) [1051192]
-- [powerpc] uname should return ppc64le/ppcle on little endian builds (Steve Best) [1051192]
-- [powerpc] Use generic memcpy code in little endian (Steve Best) [1051192]
-- [powerpc] Use generic checksum code in little endian (Steve Best) [1051192]
-- [powerpc] Handle VSX alignment faults in little endian mode (Steve Best) [1051192]
-- [powerpc] Add little endian support to alignment handler (Steve Best) [1051192]
-- [powerpc] Alignment handler shouldn't access VSX registers with TS_FPR (Steve Best) [1051192]
-- [powerpc] Remove hard coded FP offsets in alignment handler (Steve Best) [1051192]
-- [powerpc] Remove open coded byte swap macro in alignment handler (Steve Best) [1051192]
-- [powerpc] Endian safe trampoline (Steve Best) [1051192]
-- [powerpc] Include the appropriate endianness header (Steve Best) [1051192]
-- [powerpc] Set MSR_LE bit on little endian builds (Steve Best) [1051192]
-- [powerpc] Add little endian support for word-at-a-time functions (Steve Best) [1051192]
-- [powerpc] Support endian agnostic MMIO (Steve Best) [1051192]
-- [powerpc] Little endian builds double word swap VSX state during context save/restore (Steve Best) [1051192]
-- [powerpc] PTRACE_PEEKUSR/PTRACE_POKEUSER of FPR registers in little endian builds (Steve Best) [1051192]
-- [powerpc] Fix offset of FPRs in VSX registers in little endian builds (Steve Best) [1051192]
-- [powerpc] Book 3S MMU little endian support (Steve Best) [1051192]
-- [powerpc] Fix endian issues in VMX copy loops (Steve Best) [1051192]
-- [powerpc] Make rwlocks endian safe (Steve Best) [1051192]
-- [powerpc] Fix little endian coredumps (Steve Best) [1051192]
-- [powerpc] Simplify logic in include/uapi/asm/elf.h (Steve Best) [1051192]
-- [powerpc] pseries: Fix endian issues in H_GET_TERM_CHAR/H_PUT_TERM_CHAR (Steve Best) [1051192]
-- [powerpc] pseries: Simplify H_GET_TERM_CHAR (Steve Best) [1051192]
-- [powerpc] Little endian SMP IPI demux (Steve Best) [1051192]
-- [powerpc] Emulate instructions in little endian mode (Steve Best) [1051192]
-- [powerpc] Fix little endian lppaca, slb_shadow and dtl_entry (Steve Best) [1051192]
-- [powerpc] Add endian annotations to lppaca, slb_shadow and dtl_entry (Steve Best) [1051192]
-- [powerpc] Stop using non-architected shared_proc field in lppaca (Steve Best) [1051192]
-- [powerpc] Make NUMA device node code endian safe (Steve Best) [1051192]
-- [powerpc] Little endian fixes for legacy_serial.c (Steve Best) [1051192]
-- [powerpc] Make PCI device node device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] Make OF PCI device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] Make device tree accesses in VIO subsystem endian safe (Steve Best) [1051192]
-- [powerpc] Make device tree accesses in cache info code endian safe (Steve Best) [1051192]
-- [powerpc] of_parse_dma_window should take a __be32 *dma_window (Steve Best) [1051192]
-- [powerpc] Fix some endian issues in xics code (Steve Best) [1051192]
-- [powerpc] Add some endian annotations to time and xics code (Steve Best) [1051192]
-- [powerpc] More little endian fixes for setup-common.c (Steve Best) [1051192]
-- [powerpc] Make logical to real cpu mapping code endian safe (Steve Best) [1051192]
-- [powerpc] Make RTAS calls endian safe (Steve Best) [1051192]
-- [powerpc] Make cache info device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] Make RTAS device tree accesses endian safe (Steve Best) [1051192]
-- [powerpc] More little endian fixes for prom.c (Steve Best) [1051192]
-- [powerpc] Make prom.c device tree accesses endian safe (Steve Best) [1051192]
-
-* Fri Feb 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-93.el7]
-- [net] netfilter: xt_nfqueue: fix --queue-bypass regression (Florian Westphal) [1067042]
-- [net] netfilter: nft_reject_inet: fix unintended fall-through in switch-statatement (Jiri Benc) [1066156]
-- [net] netfilter: nf_tables: fix log/queue expressions for NFPROTO_INET (Jiri Benc) [1066156]
-- [net] netfilter: nf_tables: add reject module for NFPROTO_INET (Jiri Benc) [1066156]
-- [net] netfilter: nft_reject: split up reject module into IPv4 and IPv6 specifc parts (Jiri Benc) [1066156]
-- [net] netfilter: nf_tables: add hook ops to struct nft_pktinfo (Jiri Benc) [1066156]
-- [net] netfilter: nft_reject: fix compilation warning if NF_TABLES_IPV6 is disabled (Jiri Benc) [1066156]
-- [net] netfilter: add help information to new nf_tables Kconfig options (Jiri Benc) [1066156]
-- [net] netfilter: nft_reject: support for IPv6 and TCP reset (Jiri Benc) [1066156]
-- [net] netfilter: reject: separate reusable code (Jiri Benc) [1066156]
-- [net] netfilter: nft: add queue module (Jiri Benc) [1066156]
-- [net] netfilter: xt_nfqueue: separate reusable code (Jiri Benc) [1066156]
-- [net] netfilter: ip6t_reject: skip checksum verification for outgoing ipv6 packets (Jiri Benc) [1066156]
-- [net] netfilter: nf_tables: check if payload length is a power of 2 (Jiri Benc) [1034791]
-- [net] netfilter: nft_meta: fix typo "CONFIG_NET_CLS_ROUTE" (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: unininline nft_trace_packet() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix loop checking with end interval elements (Jiri Benc) [1034791]
-- [net] netfilter: nft_rbtree: fix data handling of end interval elements (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: do not allow NFT_SET_ELEM_INTERVAL_END flag and data (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix racy rule deletion (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix log/queue expressions for NFPROTO_INET (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add AF specific expression support (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: fix missing NFT_CT_L3PROTOCOL key in validity checks (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix potential oops when dumping sets (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix overrun in nf_tables_set_alloc_name() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix oops when deleting a chain with references (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: fix unconditional dump of 'dir' attr (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: fix compilation warning if NF_CONNTRACK_MARK is not set (Jiri Benc) [1034791]
-- [net] netfilter: Add dependency on IPV6 for NF_TABLES_INET (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix missing byteorder conversion in policy (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix error path in the init functions (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: rename nft_do_chain_pktinfo() to nft_do_chain() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: prohibit deletion of a table with existing sets (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: take AF module reference when creating a table (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: perform flags validation before table allocation (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: minor nf_chain_type cleanups (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: constify chain type definitions and pointers (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: replay request after dropping locks to load chain type (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add missing module references to chain types (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix chain type module reference handling (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix check for table overflow (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: restore chain change atomicity (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: split chain policy validation from actually setting it (Jiri Benc) [1034791]
-- [net] netfilter: nft_meta: fix lack of validation of the input register (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: Add support to set the connmark (Jiri Benc) [1034791]
-- [net] netfilter: nft_ct: load both IPv4 and IPv6 conntrack modules for NFPROTO_INET (Jiri Benc) [1034791]
-- [net] netfilter: nft_meta: add l4proto support (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add nfproto support to meta expression (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add "inet" table for IPv4/IPv6 (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add support for multi family tables (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: add hook ops to struct nft_pktinfo (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: make chain types override the default AF functions (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: dump sets in all existing families (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: remove unused variable in nf_tables_dump_set() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix type in parsing in nf_tables_set_alloc_name() (Jiri Benc) [1034791]
-- [net] netfilter: add help information to new nf_tables Kconfig options (Jiri Benc) [1034791]
-- [net] netfilter: select NFNETLINK when enabling NF_TABLES (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: remove nft_meta_target (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: nft_meta module get/set ops (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: Expose the table usage counter via netlink (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix issue with verdict support (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix wrong datatype in nft_validate_data_load() (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix oops when updating table with user chains (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix dumping with large number of sets (Jiri Benc) [1034791]
-- [net] netfilter: nft_exthdr: call ipv6_find_hdr() with explicitly initialized offset (Jiri Benc) [1034791]
-- [net] netfilter: nft_reject: fix endianness in dump function (Jiri Benc) [1034791]
-- [net] nf_tables*.h: Remove extern from function prototypes (Jiri Benc) [1034791]
-- [net] netfilter: nf_tables: fix missing rules flushing per table (Jiri Benc) [1034791]
-- [net] netfilter: nft_compat: fix error path in nft_parse_compat() (Jiri Benc) [1034791]
-- [net] pktgen: Fix position of ip and udp header (Jiri Pirko) [1067485]
-- [net] nf: remove automatic helper assignment removal warning (Jiri Pirko) [1066453]
-- [net] inet_diag: fix inet_diag_dump_icsk() to use correct state for timewait sockets (Jesper Brouer) [1059721]
-- [net] netfilter: xt_socket: use sock_gen_put() (Jesper Brouer) [1059721]
-- [net] inet_diag: use sock_gen_put() (Jesper Brouer) [1059721]
-- [net] inet: rename ir_loc_port to ir_num (Jesper Brouer) [1059721]
-- [net] inet: includes a sock_common in request_sock (Jesper Brouer) [1059721]
-- [net] inet: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled (Jesper Brouer) [1059721]
-- [net] fix build errors if ipv6 is disabled (Jesper Brouer) [1059721]
-- [net] sctp: fix initialization of local source address on accepted ipv6 sockets (Jesper Brouer) [1059721]
-- [net] ipv6: make lookups simpler and faster (Jesper Brouer) [1059721]
-- [net] tcp/dccp: remove twchain (Jesper Brouer) [1059721]
-- [net] tcp: shrink tcp6_timewait_sock by one cache line (Jesper Brouer) [1059721]
-- [net] inet: consolidate INET_TW_MATCH (Jesper Brouer) [1059721]
-- [net] inet*.h: Remove extern from function prototypes (Jesper Brouer) [1059721]
-- [net] openvswitch: datapath: fix dp check in ovs_dp_reset_user_features (Francesco Fusco) [1057099]
-- [net] openvswitch: Suppress error messages on megaflow updates (Francesco Fusco) [1057099]
-- [net] openvswitch: Fix ovs_flow_free() ovs-lock assert (Francesco Fusco) [1057099]
-- [net] openvswitch: Fix kernel panic on ovs_flow_free (Francesco Fusco) [1057099]
-- [net] openvswitch: Pad OVS_PACKET_ATTR_PACKET if linear copy was performed (Francesco Fusco) [1057099]
-- [tools] perf: Fix include for non x86 architectures (Francesco Fusco) [1057099]
-- [net] openvswitch: Use kmem_cache_free() instead of kfree() (Francesco Fusco) [1057099]
-- [net] openvswitch: Compute checksum in skb_gso_segment() if needed (Francesco Fusco) [1057099]
-- [net] openvswitch: Use skb_zerocopy() for upcall (Francesco Fusco) [1057099]
-- [net] openvswitch: Pass datapath into userspace queue functions (Francesco Fusco) [1057099]
-- [net] openvswitch: Drop user features if old user space attempted to create datapath (Francesco Fusco) [1057099]
-- [net] openvswitch: Allow user space to announce ability to accept unaligned Netlink messages (Francesco Fusco) [1057099]
-- [net] Export skb_zerocopy() to zerocopy from one skb to another (Francesco Fusco) [1057099]
-- [net] nf_queue: add NFQA_SKB_CSUM_NOTVERIFIED info flag (Francesco Fusco) [1057099]
-- [net] openvswitch: remove duplicated include from flow_table.c (Francesco Fusco) [1057099]
-- [net] openvswitch: use kfree_rcu instead of rcu_free_{sw_flow_mask_cb, acts_callback} (Francesco Fusco) [1057099]
-- [net] openvswitch: Per cpu flow stats (Francesco Fusco) [1057099]
-- [net] openvswitch: Enable memory mapped Netlink i/o (Francesco Fusco) [1057099]
-- [net] netlink: Avoid netlink mmap alloc if msg size exceeds frame size (Francesco Fusco) [1057099]
-- [net] genl: Add genlmsg_new_unicast() for unicast message allocation (Francesco Fusco) [1057099]
-- [net] openvswitch: Silence RCU lockdep checks from flow lookup (Francesco Fusco) [1057099]
-- [net] openvswitch: Change ovs_flow_tbl_lookup_xx() APIs (Francesco Fusco) [1057099]
-- [net] openvswitch: Shrink sw_flow_mask by 8 bytes (64-bit) or 4 bytes (32-bit) (Francesco Fusco) [1057099]
-- [net] openvswitch: Correct comment (Francesco Fusco) [1057099]
-- [net] Add utility functions to clear rxhash (Francesco Fusco) [1057099]
-- [net] openvswitch: use CRC32 accelerated flow hash if available (Francesco Fusco) [1057099]
-- [lib] hash: follow-up fixups for arch hash (Francesco Fusco) [1057099]
-- [lib] hash: Add missing arch generic-y entries for asm-generic/hash.h (Francesco Fusco) [1057099]
-- [lib] hash: introduce arch optimized hash library (Francesco Fusco) [1057099]
-- [net] rtnl: make ifla_policy static (Jiri Pirko) [1066614]
-- [net] ip, ipv6: handle gso skbs in forwarding path (Florian Westphal) [1065299]
-- [net] introduce netif_skb_dev_features (Florian Westphal) [1065299]
-- [net] add and use skb_gso_transport_seglen() (Florian Westphal) [1065299]
-- [net] bridge: separate querier and query timer into IGMP/IPv4 and MLD/IPv6 ones (Florian Westphal) [1065257]
-- [net] bridge: send query as soon as leave is received (Florian Westphal) [1065257]
-- [net] gro: remove a sparse error (Thomas Graf) [1051111]
-- [net] ipv4: Use proper RCU APIs for writer-side in udp_offload.c (Thomas Graf) [1051111]
-- [net] vxlan: Go over all candidate streams for GRO matching (Thomas Graf) [1051111]
-- [net] ipv4: Use non-atomic allocation of udp offloads structure instance (Thomas Graf) [1051111]
-- [net] ipv4: udp_offload: Handle static checker complaints (Thomas Graf) [1051111]
-- [net] vxlan: Share RX skb de-marking and checksum checks with ovs (Thomas Graf) [1051111]
-- [net] vxlan: Add GRO support for vxlan traffic (Thomas Graf) [1051111]
-- [net] vxlan: use __dev_get_by_index instead of dev_get_by_index to find interface (Thomas Graf) [1051111]
-- [net] vxlan: keep original skb ownership (Thomas Graf) [1051111]
-- [net] vxlan: remove vxlan_group_used in vxlan_open (Thomas Graf) [1051111]
-- [net] vxlan: release rt when found circular route (Thomas Graf) [1051111]
-- [net] vxlan: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(...)) (Thomas Graf) [1051111]
-- [net] vxlan: Have the NIC drivers do less work for offloads (Thomas Graf) [1051111]
-- [net] vxlan: silence one build warning (Thomas Graf) [1051111]
-- [net] vxlan: Use RCU apis to access sk_user_data (Thomas Graf) [1051111]
-- [net] vxlan: Avoid creating fdb entry with NULL destination (Thomas Graf) [1051111]
-- [net] vxlan: Fix sparse warnings (Thomas Graf) [1051111]
-- [net] vxlan: Notify drivers for listening UDP port changes (Thomas Graf) [1051111]
-- [net] vxlan: Optimize vxlan rcv (Thomas Graf) [1051111]
-- [net] Export gro_find_by_type helpers (Thomas Graf) [1051111]
-- [net] Add GRO support for UDP encapsulating protocols (Thomas Graf) [1051111]
-- [net] gro: change GRO overflow strategy (Thomas Graf) [1051111]
-- [net] gre_offload: fix sparse non static symbol warning (Thomas Graf) [1051111]
-- [net] gre: gro: Add GRE support to the GRO stack (Thomas Graf) [1051111]
-- [net] ipv4: don't use module_init in non-modular gre_offload (Thomas Graf) [1051111]
-- [net] gre_offload: statically build GRE offloading support (Thomas Graf) [1051111]
-- [net] ipv6: Fix alleged compiler warning in ipv6_exthdrs_len() (Thomas Graf) [1051111]
-- [net] ipv6: fix compiler warning in ipv6_exthdrs_len (Thomas Graf) [1051111]
-- [net] gro: Prepare GRO stack for the upcoming tunneling support (Thomas Graf) [1051111]
-- [net] gro: small napi_get_frags() optim (Thomas Graf) [1051111]
-- [net] tcp: do not export tcp_gso_segment() and tcp_gro_receive() (Thomas Graf) [1051111]
-- [net] gro: Clean up tcpX_gro_receive checksum verification (Thomas Graf) [1051111]
-- [net] gro: Only verify TCP checksums for candidates (Thomas Graf) [1051111]
-- [net] gso: handle new frag_list of frags GRO packets (Thomas Graf) [1051111]
-- [net] gro: allow to build full sized skb (Thomas Graf) [1051111]
-- [net] tcp: gso: fix truesize tracking (Thomas Graf) [1051111]
-- [net] tcp: rename tcp_tso_segment() (Thomas Graf) [1051111]
-- [net] gro: should aggregate frames without DF (Thomas Graf) [1051111]
-- [net] sit: fix use after free of fb_tunnel_dev (Jiri Pirko) [1060210]
-- [net] sit: allow to use rtnl ops on fb tunnel (Jiri Pirko) [1060210]
-- [net] ip6tnl: fix use after free of fb_tnl_dev (Jiri Pirko) [1012835]
-- [net] ip6tnl: allow to use rtnl ops on fb tunnel (Jiri Pirko) [1012835]
-- [net] ip6tnl: add x-netns support (Jiri Pirko) [1012835]
-- [net] Correctly sync addresses from multiple sources to single device (Vlad Yasevich) [1059394]
-
-* Fri Feb 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-92.el7]
-- [fs] xfs: ensure correct log item buffer alignment (Brian Foster) [1059843]
-- [fs] xfs: ensure correct timestamp updates from truncate (Brian Foster) [1059843]
-- [fs] xfs: remove XFS_TRANS_DEBUG dead code (Brian Foster) [1059843]
-- [fs] xfs: return -E2BIG if hit the maximum size limits of ACLs (Brian Foster) [1059843]
-- [fs] xfs: sanitize sb_inopblock in xfs_mount_validate_sb (Brian Foster) [1059843]
-- [fs] xfs: convert xfs_log_commit_cil() to void (Brian Foster) [1059843]
-- [fs] xfs: use tr_qm_dqalloc log reservation for dquot alloc (Brian Foster) [1059843]
-- [fs] xfs: remove unused tr_swrite (Brian Foster) [1059843]
-- [fs] xfs: use tr_growrtalloc for growing rt files (Brian Foster) [1059843]
-- [fs] xfs: Calling destroy_work_on_stack() to pair with INIT_WORK_ONSTACK() (Brian Foster) [1059843]
-- [fs] xfs: fix off-by-one error in xfs_attr3_rmt_verify (Brian Foster) [1059843]
-- [fs] xfs: assert that we hold the ilock for extent map access (Brian Foster) [1059843]
-- [fs] xfs: use xfs_ilock_attr_map_shared in xfs_attr_list_int (Brian Foster) [1059843]
-- [fs] xfs: use xfs_ilock_attr_map_shared in xfs_attr_get (Brian Foster) [1059843]
-- [fs] xfs: use xfs_ilock_data_map_shared in xfs_qm_dqiterate (Brian Foster) [1059843]
-- [fs] xfs: use xfs_ilock_data_map_shared in xfs_qm_dqtobp (Brian Foster) [1059843]
-- [fs] xfs: take the ilock around xfs_bmapi_read in xfs_zero_remaining_bytes (Brian Foster) [1059843]
-- [fs] xfs: reinstate the ilock in xfs_readdir (Brian Foster) [1059843]
-- [fs] xfs: add xfs_ilock_attr_map_shared (Brian Foster) [1059843]
-- [fs] xfs: rename xfs_ilock_map_shared (Brian Foster) [1059843]
-- [fs] xfs: remove xfs_iunlock_map_shared (Brian Foster) [1059843]
-- [fs] xfs: no need to lock the inode in xfs_find_handle (Brian Foster) [1059843]
-- [fs] xfs: abort metadata writeback on permanent errors (Brian Foster) [1059843]
-- [fs] xfs: swalloc doesn't align allocations properly (Brian Foster) [1059843]
-- [fs] xfs: remove xfsbdstrat error (Brian Foster) [1059843]
-- [fs] xfs: use xfs_icluster_size_fsb in xfs_imap (Brian Foster) [1059843]
-- [fs] xfs: use xfs_icluster_size_fsb in xfs_ifree_cluster (Brian Foster) [1059843]
-- [fs] xfs: use xfs_icluster_size_fsb in xfs_ialloc_inode_init (Brian Foster) [1059843]
-- [fs] xfs: use xfs_icluster_size_fsb in xfs_bulkstat (Brian Foster) [1059843]
-- [fs] xfs: introduce a common helper xfs_icluster_size_fsb (Brian Foster) [1059843]
-- [fs] xfs: get rid of XFS_IALLOC_BLOCKS macros (Brian Foster) [1059843]
-- [fs] xfs: get rid of XFS_INODE_CLUSTER_SIZE macros (Brian Foster) [1059843]
-- [fs] xfs: get rid of XFS_IALLOC_INODES macros (Brian Foster) [1059843]
-- [fs] xfs: remove the quotaoff log format from the quotaoff log item (Brian Foster) [1059843]
-- [fs] xfs: remove the dquot log format from the dquot log item (Brian Foster) [1059843]
-- [fs] xfs: remove the inode log format from the inode log item (Brian Foster) [1059843]
-- [fs] xfs: format logged extents directly into the CIL (Brian Foster) [1059843]
-- [fs] xfs: format log items write directly into the linear CIL buffer (Brian Foster) [1059843]
-- [fs] xfs: introduce xlog_copy_iovec (Brian Foster) [1059843]
-- [fs] xfs: refactor xfs_inode_item_format (Brian Foster) [1059843]
-- [fs] xfs: refactor xfs_inode_item_size (Brian Foster) [1059843]
-- [fs] xfs: refactor xfs_buf_item_format_segment (Brian Foster) [1059843]
-- [fs] xfs: remove duplicate code in xlog_cil_insert_format_items (Brian Foster) [1059843]
-- [fs] xfs: align initial file allocations correctly (Brian Foster) [1059843]
-- [fs] xfs: fix calculation of freed inode cluster blocks (Brian Foster) [1059843]
-- [fs] xfs: xfs_dir2_block_to_sf temp buffer allocation fails (Brian Foster) [1059843]
-- [fs] xfs: fix infinite loop by detaching the group/project hints from user dquot (Brian Foster) [1059843]
-- [fs] xfs: fix assertion failure at xfs_setattr_nonsize (Brian Foster) [1059843]
-- [fs] xfs: add xfs_setattr_time (Brian Foster) [1059843]
-- [fs] xfs: tiny xfs_setattr_mode cleanup (Brian Foster) [1059843]
-- [fs] xfs: fix false assertion at xfs_qm_vop_create_dqattach (Brian Foster) [1059843]
-- [fs] xfs: integrate xfs_quota_priv header file to xfs_qm (Brian Foster) [1059843]
-- [fs] xfs: make quota metadata truncation behavior consistent to user space (Brian Foster) [1059843]
-- [fs] xfs: fix memory leak in xfs_dir2_node_removename (Brian Foster) [1059843]
-- [fs] xfs: free the list of recovery items on error (Brian Foster) [1059843]
-- [fs] xfs: growfs overruns AGFL buffer on V4 filesystems (Brian Foster) [1059843]
-- [fs] xfs: don't perform discard if the given range length is less than block size (Brian Foster) [1059843]
-- [fs] xfs: fix the comment explaining xfs_trans_dqlockedjoin (Brian Foster) [1059843]
-- [fs] xfs: underflow bug in xfs_attrlist_by_handle() (Brian Foster) [1059843 1034667] {CVE-2013-6382}
-- [fs] xfs: remove unused FI_ flags (Brian Foster) [1059843]
-- [fs] xfs: open code inc_inode_iversion when logging an inode (Brian Foster) [1059843]
-- [fs] xfs: increase inode cluster size for v5 filesystems (Brian Foster) [1059843]
-- [fs] xfs: fix unlock in xfs_bmap_add_attrfork (Brian Foster) [1059843]
-- [fs] xfs: simplify kmem_(zone_)zalloc (Brian Foster) [1059843]
-- [fs] xfs: add tracepoints to AGF/AGI read operations (Brian Foster) [1059843]
-- [fs] xfs: trace AIL manipulations (Brian Foster) [1059843]
-- [fs] xfs: xfs_remove deadlocks due to inverted AGF vs AGI lock ordering (Brian Foster) [1059843]
-- [fs] xfs: fix the extent count when allocating an new indirection array entry (Brian Foster) [1059843]
-- [fs] xfs: be more forgiving of a v4 secondary sb w/ junk in v5 fields (Brian Foster) [1059843]
-- [fs] xfs: fix possible NULL dereference in xlog_verify_iclog (Brian Foster) [1059843]
-- [fs] xfs:xfs_dir2_node.c: pointer use before check for null (Brian Foster) [1059843]
-- [fs] xfs: prevent stack overflows from page cache allocation (Brian Foster) [1059843]
-- [fs] xfs: fix static and extern sparse warnings (Brian Foster) [1059843]
-- [fs] xfs: validity check the directory block leaf entry count (Brian Foster) [1059843]
-- [fs] xfs: make dir2 ftype offset pointers explicit (Brian Foster) [1059843]
-- [fs] xfs: convert directory vector functions to constants (Brian Foster) [1059843]
-- [fs] xfs: convert directory vector functions to constants (Brian Foster) [1059843]
-- [fs] xfs: vectorise encoding/decoding directory headers (Brian Foster) [1059843]
-- [fs] xfs: vectorise DA btree operations (Brian Foster) [1059843]
-- [fs] xfs: vectorise directory leaf operations (Brian Foster) [1059843]
-- [fs] xfs: vectorise directory data operations part 2 (Brian Foster) [1059843]
-- [fs] xfs: vectorise directory data operations (Brian Foster) [1059843]
-- [fs] xfs: vectorise remaining shortform dir2 ops (Brian Foster) [1059843]
-- [fs] xfs: abstract the differences in dir2/dir3 via an ops vector (Brian Foster) [1059843]
-- [fs] xfs: split xfs_rtalloc.c for userspace sanity (Brian Foster) [1059843]
-- [fs] xfs: decouple inode and bmap btree header files (Brian Foster) [1059843]
-- [fs] xfs: decouple log and transaction headers (Brian Foster) [1059843]
-- [fs] xfs: remove unused transaction callback variables (Brian Foster) [1059843]
-- [fs] xfs: split dquot buffer operations out (Brian Foster) [1059843]
-- [fs] xfs: unify directory/attribute format definitions (Brian Foster) [1059843]
-- [fs] xfs: create a shared header file for format-related information (Brian Foster) [1059843]
-- [fs] xfs: fold xfs_change_file_space into xfs_ioc_space (Brian Foster) [1059843]
-- [fs] xfs: simplify the fallocate path (Brian Foster) [1059843]
-- [fs] xfs: always hold the iolock when calling xfs_change_file_space (Brian Foster) [1059843]
-- [fs] xfs: remove the unused XFS_ATTR_NONBLOCK flag (Brian Foster) [1059843]
-- [fs] xfs: always take the iolock around xfs_setattr_size (Brian Foster) [1059843]
-- [fs] xfs: don't break from growfs ag update loop on error (Brian Foster) [1059843]
-- [fs] xfs: don't emit corruption noise on fs probes (Brian Foster) [1059843]
-- [fs] xfs: remove newlines from strings passed to __xfs_printk (Brian Foster) [1059843]
-- [fs] xfs: prevent deadlock trying to cover an active log (Brian Foster) [1059843]
-- [fs] xfs: clean up xfs_inactive() error handling, kill VN_INACTIVE_(NO)CACHE (Brian Foster) [1059843]
-- [fs] xfs: push down inactive transaction mgmt for ifree (Brian Foster) [1059843]
-- [fs] xfs: push down inactive transaction mgmt for truncate (Brian Foster) [1059843]
-- [fs] xfs: push down inactive transaction mgmt for remote symlinks (Brian Foster) [1059843]
-- [fs] xfs: add the inode directory type support to XFS_IOC_FSGEOM (Brian Foster) [1059843]
-- [fs] xfs: remove usage of is_bad_inode (Brian Foster) [1059843]
-- [fs] xfs: fix the wrong new_size/rnew_size at xfs_iext_realloc_direct() (Brian Foster) [1059843]
-- [fs] xfs: get rid of count from xfs_iomap_write_allocate() (Brian Foster) [1059843]
-- [fs] xfs: Use kmem_free() instead of free() (Brian Foster) [1059843]
-- [fs] xfs: fix memory leak in xlog_recover_add_to_trans (Brian Foster) [1059843]
-- [fs] xfs: dirent dtype presence is dependent on directory magic numbers (Brian Foster) [1059843]
-- [fs] xfs: lockdep needs to know about 3 dquot-deep nesting (Brian Foster) [1059843]
-- [fs] xfs: log recovery lsn ordering needs uuid check (Brian Foster) [1059843]
-- [fs] xfs: fix XFS_IOC_FREE_EOFBLOCKS definition (Brian Foster) [1059843]
-- [fs] xfs: asserting lock not held during freeing not valid (Brian Foster) [1059843]
-- [fs] xfs: lock the AIL before removing the buffer item (Brian Foster) [1059843]
-- [fs] ext4: yield during large unlinks (Lukas Czerner) [1044544]
-- [fs] ext4: implement error handling of ext4_mb_new_preallocation() (Lukas Czerner) [1044544]
-- [fs] ext4: return FIEMAP_EXTENT_UNKNOWN for delalloc extents (Lukas Czerner) [1044544]
-- [fs] jbd2: fix duplicate debug label for phase 2 (Lukas Czerner) [1044544]
-- [fs] jbd2: drop checkpoint mutex when waiting in __jbd2_log_wait_for_space() (Lukas Czerner) [1044544]
-- [fs] jbd2: remove unused waitqueues (Lukas Czerner) [1044544]
-- [fs] jbd2: fix race in t_outstanding_credits update in jbd2_journal_extend() (Lukas Czerner) [1044544]
-- [fs] ext4: fix use of potentially uninitialized variables in debugging code (Lukas Czerner) [1044544]
-- [fs] ext4: check error return from ext4_write_inline_data_end() (Lukas Czerner) [1044544]
-- [fs] jbd2: relocate assert after state lock in journal_commit_transaction() (Lukas Czerner) [1044544]
-- [fs] ext4: add cond_resched() to ext4_free_blocks() & ext4_mb_regular_allocator() (Lukas Czerner) [1044544]
-- [fs] ext4: optimize test_root() (Lukas Czerner) [1044544]
-- [fs] ext4: add sanity check to ext4_get_group_info() (Lukas Czerner) [1044544]
-- [fs] ext4: verify group number in verify_group_input() before using it (Lukas Czerner) [1044544]
-- [fs] ext4: add check to io_submit_init_bio (Lukas Czerner) [1044544]
-- [fs] Fix race when checking i_size on direct i/o read (Robert S Peterson) [1052927]
-- [fs] gfs2: No need to invalidate pages for a dio read (Robert S Peterson) [1052927]
-- [fs] gfs2: Wait for async DIO in glock state changes (Robert S Peterson) [1052927]
-- [fs] gfs2: Fix incorrect invalidation for DIO/buffered I/O (Robert S Peterson) [1052927]
-- [fs] xfs: allow logical-sector sized O_DIRECT (Eric Sandeen) [999239]
-- [fs] xfs: rename xfs_buftarg structure members (Eric Sandeen) [999239]
-- [fs] xfs: clean up xfs_buftarg (Eric Sandeen) [999239]
-- [fs] xfs: simplify xfs_setsize_buftarg callchain; remove unused arg (Eric Sandeen) [999239]
-- [fs] sunrpc: Don't create a gss auth cache unless rpc.gssd is running (Steve Dickson) [1063752]
-- [fs] gfs2: journal data writepages update (Robert S Peterson) [1010452]
-- [fs] nfs: Fix SP4_MACH_CRED negotiation in EXCHANGE_ID (Steve Dickson) [1063509]
-- [fs] gfs2: Add hints to directory leaf blocks (Robert S Peterson) [1062143]
-- [fs] gfs2: Lock i_mutex and use a local gfs2_holder for fallocate (Robert S Peterson) [1062305]
-- [fs] compat: fix lookup_dcookie() parameter handling (Hendrik Brueckner) [1060203]
-- [fs] compat: fix parameter handling for compat readv/writev syscalls (Hendrik Brueckner) [1049599]
-
-* Fri Feb 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-91.el7]
-- [kernel] sched: Fix endless sync_sched/rcu() loop inside _cpu_down() (Rik van Riel) [1062647]
-- [kernel] sched: Remove extra put_online_cpus() inside sched_setaffinity() (Rik van Riel) [1062647]
-- [kernel] sched: Remove get_online_cpus() usage (Rik van Riel) [1062647]
-- [mm] move mmu notifier call from change_protection to change_pmd_range (Rik van Riel) [1066655]
-- [mm] numa: reorganize change_pmd_range (Rik van Riel) [1066655]
-- [kernel] sched/numa: add cond_resched to task_numa_work (Rik van Riel) [1066655]
-- [cpufreq] intel_pstate: Fail initialization if P-state information is missing (Marcelo Tosatti) [1061481]
-- [cpufreq] intel_pstate: Add X86_FEATURE_APERFMPERF to cpu match (Marcelo Tosatti) [1061481]
-- [ethernet] bnx2x: More Shutdown revisions (Michal Schmidt) [1046885]
-- [ethernet] bnx2x: Don't release PCI bars on shutdown (Michal Schmidt) [1046885]
-- [security] keys, shmem: implement kernel private shmem inodes (Paul Moore) [1031154 1034833]
-
-* Wed Feb 19 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-90.el7]
-- [drm] nouveau/devinit: prevent use of engines marked as disabled by hw/vbios (Rob Clark) [1054409]
-- [drm] nouveau/device: provide a way for devinit to mark engines as disabled (Rob Clark) [1054409]
-- [drm] nouveau/devinit: tidy up the subdev class definition (Rob Clark) [1054409]
-- [drm] nouveau: populate master subdev pointer only when fully constructed (Rob Clark) [1054409]
-- [drm] nouveau/i2c: use a custom bitbanging delay for the adt7473 (Rob Clark) [1054409]
-- [drm] nouveau/bios: fix offset calculation for BMPv1 bioses (Rob Clark) [1054409]
-- [drm] nouveau: return offset of allocated notifier (Rob Clark) [1054409]
-- [drm] nouveau/bios: make jump conditional (Rob Clark) [1054409]
-- [drm] nouveau: fix mthd data submission (Rob Clark) [1054409]
-- [drm] nouveau/disp: min/max are reversed in nv50_crtc_gamma_set() (Rob Clark) [1054409]
-- [drm] nouveau/sw: fix oops if gpu has its display block disabled (Rob Clark) [1054409]
-- [drm] nouveau/kms: send timestamp data for correct head in flip completion events (Rob Clark) [1054409]
-- [drm] nouveau: do not map evicted vram buffers in nouveau_bo_vma_add (Rob Clark) [1054409]
-- [drm] nouveau: shift wrapping bug in nvc0_grctx_generate_r406800 (Rob Clark) [1054409]
-- [drm] nouveau: allow nouveau_fence_ref() to be a noop (Rob Clark) [1054409]
-- [drm] nouveau: consider CLASS_DISPLAY_3D devices while detecting dsm/optimus (Rob Clark) [1054409]
-- [drm] nouveau: only runtime suspend by default in optimus configuration (Rob Clark) [1054409]
-- [drm] radeon: set correct pipe config for Hawaii in DCE (Rob Clark) [1054409]
-- [drm] radeon: 0x9649 is SUMO2 not SUMO (Rob Clark) [1054409]
-- [drm] radeon: expose render backend mask to the userspace (Rob Clark) [1054409]
-- [drm] radeon: fix render backend setup for SI and CIK (Rob Clark) [1054409]
-- [drm] radeon: fix UVD 256MB check (Rob Clark) [1054409]
-- [drm] i915: Use the correct GMCH_CTRL register for Sandybridge+ (Rob Clark) [1054409]
-- [drm] i915: change CRTC assertion on LCPLL disable (Rob Clark) [1054409]
-- [drm] i915: Fix erroneous dereference of batch_obj inside reset_status (Rob Clark) [1054409]
-- [drm] radeon: fix asic gfx values for scrapper asics (Rob Clark) [1054409]
-- [drm] radeon: check for 0 count in speaker allocation and SAD code (Rob Clark) [1054409]
-- [drm] radeon/dpm: disable ss on Cayman (Rob Clark) [1054409]
-- [drm] i915: don't update the dri1 breadcrumb with modesetting (Rob Clark) [1054409]
-- [drm] i915: Fix use-after-free in do_switch (Rob Clark) [1054409]
-- [drm] i915: Hold mutex across i915_gem_release (Rob Clark) [1054409]
-- [drm] i915: Take modeset locks around intel_modeset_setup_hw_state() (Rob Clark) [1054409]
-- [drm] radeon: add missing display tiling setup for oland (Rob Clark) [1054409]
-- [drm] radeon: fix typo in cik_copy_dma (Rob Clark) [1054409]
-- [drm] radeon: Fix sideport problems on certain RS690 boards (Rob Clark) [1054409]
-- [drm] ttm: Fix accesses through vmas with only partial coverage (Rob Clark) [1054409]
-- [drm] edid: add quirk for BPC in Samsung NP700G7A-S01PL notebook (Rob Clark) [1054409]
-- [drm] i915/vlv: fix up broken precision in vlv_crtc_clock_get (Rob Clark) [1054409]
-- [drm] i915/vlv: add VLV specific clock_get function v3 (Rob Clark) [1054409]
-- [drm] i915/vlv: untangle integrated clock source handling v4 (Rob Clark) [1054409]
-- [drm] radeon/atom: fix bus probes when hw_i2c is set (Rob Clark) [1054409]
-- [drm] radeon: fixup bad vram size on SI (Rob Clark) [1054409]
-- [drm] radeon: program DCE2 audio dto just like DCE3 (Rob Clark) [1054409]
-- [drm] radeon: fix typo in fetching mpll params (Rob Clark) [1054409]
-- [drm] i915: use the correct force_wake function at the PC8 code (Rob Clark) [1054409]
-- [drm] i915: Fix pipe CSC post offset calculation (Rob Clark) [1054409]
-- [drm] udl: fix issue with imported prime buffers (Rob Clark) [1054409]
-- [drm] radeon: adjust TN dpm parameters for stability (Rob Clark) [1054409]
-- [drm] radeon: hook up backlight functions for CI and KV family (Rob Clark) [1054409]
-- [drm] radeon/i2c: do not count reg index in number of i2c byte we are writing (Rob Clark) [1054409]
-- [drm] radeon: fix UVD destroy IB size (Rob Clark) [1054409]
-- [drm] i915: Replicate BIOS eDP bpp clamping hack for hsw (Rob Clark) [1054409]
-- [drm] i915: restore the early forcewake cleanup (Rob Clark) [1054409]
-- [drm] i915/dvo: call ->mode_set callback only when the port is running (Rob Clark) [1054409]
-- [drm] vmwgfx: Resource evict fixes (Rob Clark) [1054409]
-- [drm] i915: fix compiler warning (Rob Clark) [1054409]
-- [drm] allow DRM_IOCTL_VERSION on render-nodes (Rob Clark) [1054409]
-- [drm] i915: Fix the PPT fdi lane bifurcate state handling on ivb (Rob Clark) [1054409]
-- [drm] i915: No LVDS hardware on Intel D410PT and D425KT (Rob Clark) [1054409]
-- [drm] i915/dp: workaround BIOS eDP bpp clamping issue (Rob Clark) [1054409]
-- [drm] i915: Add HSW CRT output readout support (Rob Clark) [1054409]
-- [drm] i915: Add support for pipe_bpp readout (Rob Clark) [1054409]
-- [drm] radeon/dpm: fix incompatible casting on big endian (Rob Clark) [1054409]
-- [drm] radeon: disable bapm on KB (Rob Clark) [1054409]
-- [drm] radeon: use sw CTS/N values for audio on DCE4+ (Rob Clark) [1054409]
-- [s390] crypto: Fix aes-cbc IV corruption (Hendrik Brueckner) [1063810]
-- [s390] appldata: restore missing init_virt_timer() (Hendrik Brueckner) [1064246]
-- [s390] mm: Fix dump memory detection (Hendrik Brueckner) [1064244]
-- [s390] fix kernel crash due to linkage stack instructions (Hendrik Brueckner) [1059732]
-- [s390] crypto: fix des and des3_ede ctr concurrency issue (Hendrik Brueckner) [1062269]
-- [s390] crypto: fix des and des3_ede cbc concurrency issue (Hendrik Brueckner) [1062266]
-- [s390] crypto: fix concurrency issue in aes-ctr mode (Hendrik Brueckner) [1062260]
-- [ethernet] cxgb4: Fix referencing freed adapter (Steve Best) [1063483]
-- [mm] oom: base root bonus on current usage (Johannes Weiner) [822790]
-- [kernel] lockdep: increase MAX_LOCKDEP_ENTRIES (Kyle McMartin) [989385]
-- [scripts] tags.sh: ignore redhat/rpm (Prarit Bhargava) [1065511]
-- [security] selinux: Fix kernel BUG on empty security contexts (Paul Moore) [1064548]
-- [security] selinux: add SOCK_DIAG_BY_FAMILY to the list of netlink message types (Paul Moore) [1022394]
-- [powerpc] eeh: Drop taken reference to driver on eeh_rmv_device (Steve Best) [1059851]
-- [scripts] tags.sh: Ignore *.mod.c (Mark Langsdorf) [1062383]
-- [mm] keep page cache radix tree nodes in check (Johannes Weiner) [1062372]
-- [lib] radix_tree: tree node interface (Johannes Weiner) [1062372]
-- [mm] thrash detection-based file cache sizing (Johannes Weiner) [1062372]
-- [mm] store shadow entries in page cache (Johannes Weiner) [1062372]
-- [lib] radix-tree: radix_tree_delete_item() (Johannes Weiner) [1062372]
-- [mm] shmem: save one radix tree lookup when truncating swapped pages (Johannes Weiner) [1062372]
-- [mm] prepare for non-page entries in page cache radix trees (Johannes Weiner) [1062372]
-- [mm] vmstat: fix UP zone state accounting (Johannes Weiner) [1062372]
-- [mm] filemap: move radix tree hole searching here (Johannes Weiner) [1062372]
-- [fs] cachefiles: use add_to_page_cache_lru() (Johannes Weiner) [1062372]
-- [mm] page_alloc: revert NUMA aspect of fair allocation policy (Johannes Weiner) [1062372]
-- [mm] page_alloc: fair zone allocator policy (Johannes Weiner) [1062372]
-- [mm] memory-failure: shift page lock from head page to tail page after thp split (Naoya Horiguchi) [1051704]
-- [fs] proc/page: add PageAnon check to surely detect thp (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: transfer page count from head page to tail page after split thp (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: recheck PageHuge() after hugetlb page migrate successfully (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: move set_migratetype_isolate() outside get_any_page() (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: fix false report on 2nd attempt at page recovery (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: fix test for a transparent huge page (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: fix bug triggered by unpoisoning empty zero page (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: don't set migration type twice to avoid holding heavily contend zone->lock (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: replace atomic_long_sub() with atomic_long_dec() (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: fix race against poison thp (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: don't need to hold compound lock for hugetlbfs page (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: fix loss of PG_dirty for errors on mlocked pages (Naoya Horiguchi) [1051704]
-- [mm] hwpoison: always unset MIGRATE_ISOLATE before returning from soft_offline_page() (Naoya Horiguchi) [1051704]
-- [mm] memory-failure: fix memory leak in successful soft offlining (Naoya Horiguchi) [1051704]
-- [virt] kvm: move KVM_CAP_HYPERV_TIME outside #ifdef (Vadim Rozenfeld) [1057170]
-- [virt] kvm: add support for Hyper-V reference time counter (Vadim Rozenfeld) [1057170]
-- [input] wacom: not all multi-interface devices support touch (Aristeu Rozanski) [1022595]
-- [input] wacom: add support for three new Intuos Pro devices (Aristeu Rozanski) [1022595]
-- [input] wacom: LED is only supported through digitizer interface (Aristeu Rozanski) [1022595]
-- [input] wacom: testing result shows get_report is unnecessary (Aristeu Rozanski) [1022595]
-- [input] wacom: send proper tablet state info when pen leaves proximity (Aristeu Rozanski) [1022595]
-- [input] wacom: fix error return code in wacom_probe() (Aristeu Rozanski) [1022595]
-- [input] wacom: integrate resolution calculation (Aristeu Rozanski) [1022595]
-- [fs] buffer: __set_page_dirty uses spin_lock_irqsave instead of spin_lock_irq (Motohiro Kosaki) [1057270]
-- [mm] __set_page_dirty_nobuffers uses spin_lock_irqseve instead of spin_lock_irq (Motohiro Kosaki) [1057270]
-- [virt] hv/ballon: Make pressure posting thread sleep interruptibly (Luiz Capitulino) [1065107]
-- [input] hyperv-keyboard: pass through 0xE1 prefix (Jason Wang) [1044874]
-- [mm] drop_caches: add some documentation and info message (Johannes Weiner) [838935]
-- [scsi] megaraid_sas: Performance boost fixes (Tomas Henzl) [1064509]
-- [scsi] megaraid_sas: Set 32-bit DMA mask (Tomas Henzl) [1064509]
-- [scsi] megaraid_sas: Big endian code related fixes (Tomas Henzl) [1064509]
-- [scsi] megaraid_sas: Don't wait forever for non-IOCTL DCMDs (Tomas Henzl) [1064509]
-
-* Fri Feb 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-89.el7]
-- [powerpc] Fix kdump hang issue on p8 with relocation on exception enabled (Steve Best) [1056321]
-- [powerpc] pseries: Disable relocation on exception while going down during crash (Steve Best) [1056321]
-- [kernel] sched/debug: Fix formatting of /proc/<PID>/sched (Rik van Riel) [1064583]
-- [kernel] sched/fair: Remove unused variable from expire_cfs_rq_runtime() (Rik van Riel) [1064583]
-- [mm] vmscan: do not scale writeback pages when deciding whether to set ZONE_WRITEBACK (Rafael Aquini) [1009508]
-- [mm] vmscan: do not continue scanning if reclaim was aborted for compaction (Rafael Aquini) [1009508]
-- [ethernet] bnx2{,x}: Make module parameters readable (Neil Horman) [1062836]
-- [ethernet] bnx2x: namespace and dead code cleanups (Neil Horman) [1062836]
-- [drm] radeon: remove generic rptr/wptr functions (Steve Best) [1048290]
-- [block] nvme: Namespace use after free on surprise removal (David Milburn) [1062640]
-- [block] nvme: Correct uses of INIT_WORK (David Milburn) [1062640]
-- [block] nvme: Include device and queue numbers in interrupt name (David Milburn) [1062640]
-- [block] nvme: Add a pci_driver shutdown method (David Milburn) [1062640]
-
-* Thu Feb 13 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-88.el7]
-- [mm] hugetlb: correct missing private flag clearing (Steve Best) [1062671]
-- [mm] hugetlb: return a reserved page to a reserved pool if failed (Steve Best) [1062671]
-- [mm] hugetlb: fix subpool accounting handling (Steve Best) [1062671]
-- [mm] hugetlb: protect reserved pages when soft offlining a hugepage (Steve Best) [1062671]
-- [mm] hugetlb: decrement reserve count if VM_NORESERVE alloc page cache (Steve Best) [1062671]
-- [mm] hugetlb: remove decrement_hugepage_resv_vma() (Steve Best) [1062671]
-- [mm] hugetlb: clean-up alloc_huge_page() (Steve Best) [1062671]
-- [mm] hugetlb: add VM_NORESERVE check in vma_has_reserves() (Steve Best) [1062671]
-- [mm] hugetlb: do not use a page in page cache for cow optimization (Steve Best) [1062671]
-- [s390] uapi: fix struct statfs64 definition (Hendrik Brueckner) [1060191]
-- [ethernet] myri10ge: Add support for ndo_busy_poll (Stanislaw Gruszka) [1059561]
-- [ethernet] be2net: add dma_mapping_error() check for dma_map_page() (Ivan Vecera) [995992]
-- [infiniband] srp: Avoid offlining operational SCSI devices (Doug Ledford) [1046103]
-- [infiniband] srp: Remove target from list before freeing Scsi_Host structure (Doug Ledford) [1046103]
-- [infiniband] srp: Add change_queue_depth and change_queue_type support (Doug Ledford) [1046103]
-- [infiniband] srp: Make queue size configurable (Doug Ledford) [1046103]
-- [infiniband] srp: Introduce srp_alloc_req_data() (Doug Ledford) [1046103]
-- [infiniband] srp: Export sgid to sysfs (Doug Ledford) [1046103]
-- [infiniband] srp: Add periodic reconnect functionality (Doug Ledford) [1046103]
-- [scsi] scsi_transport_srp: Add periodic reconnect support (Doug Ledford) [1046103]
-- [infiniband] srp: Start timers if a transport layer error occurs (Doug Ledford) [1046103]
-- [infiniband] srp: Use SRP transport layer error recovery (Doug Ledford) [1046103]
-- [scsi] scsi_transport_srp: Add transport layer error handling (Doug Ledford) [1046103]
-- [infiniband] srp: Keep rport as long as the IB transport layer (Doug Ledford) [1046103]
-- [infiniband] srp: Make transport layer retry count configurable (Doug Ledford) [1046103]
-- [infiniband] srp: Let srp_abort() return FAST_IO_FAIL if TL offline (Doug Ledford) [1046103]
-- [infiniband] srp: Bump driver version and release date (Doug Ledford) [1046103]
-- [infiniband] srp: Make HCA completion vector configurable (Doug Ledford) [1046103]
-- [infiniband] srp: Maintain a single connection per I_T nexus (Doug Ledford) [1046103]
-- [infiniband] srp: Fail I/O fast if target offline (Doug Ledford) [1046103]
-- [infiniband] srp: Skip host settle delay (Doug Ledford) [1046103]
-- [infiniband] srp: Avoid skipping srp_reset_host() after a transport error (Doug Ledford) [1046103]
-- [infiniband] srp: Fix remove_one crash due to resource exhaustion (Doug Ledford) [1046103]
-- [infiniband] iser-target: Move INIT_WORK setup into isert_create_device_ib_res (Andy Grover) [1051179]
-- [infiniband] iser-target: fix error return code in isert_create_device_ib_res() (Andy Grover) [1051179]
-- [target] Fix delayed Task Aborted Status (TAS) handling bug (Andy Grover) [1051179]
-- [x86] cpu: Always print SMP information in /proc/cpuinfo (Takahiro MUNEDA) [1062485]
-- [x86] add rh_cpuinfo_x86 shadow struct (Prarit Bhargava) [1010325]
-- [mm] thp: move preallocated PTE page table on move_huge_pmd() (Rik van Riel) [1063404]
-- [mm] numa: initialise numa balancing after jump label initialisation (Rik van Riel) [1059459]
-- [firmware] efivars: check for EFI_RUNTIME_SERVICES (Kyle McMartin) [1058525]
-
-* Tue Feb 11 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-87.el7]
-- [fs] nfs: fix mm page leak at nfs_symlink() (Rafael Aquini) [1060565]
-- [kernel] sched/balancing: Periodically decay max cost of idle balance (Larry Woodman) [1031475]
-- [kernel] sched/balancing: Consider max cost of idle balance per sched domain (Larry Woodman) [1031475]
-- [kernel] sched: Reduce overestimating rq->avg_idle (Larry Woodman) [1031475]
-- [fs] vfs: make sure we don't have a stale root path if unlazy_walk() fails (Rafael Aquini) [1031475]
-- [fs] dcache: get/release read lock in read_seqbegin_or_lock() & friend (Rafael Aquini) [1031475]
-- [fs] split read_seqretry_or_unlock(), convert d_walk() to resulting primitives (Rafael Aquini) [1031475]
-- [lib] seqlock: Add a new locking reader type (Rafael Aquini) [1031475]
-- [fs] dcache: Translating dentry into pathname without taking rename_lock (Rafael Aquini) [1031475]
-- [fs] vfs: fix dentry RCU to refcounting possibly sleeping dput() (Rafael Aquini) [1031475]
-- [fs] vfs: use lockred "dead" flag to mark unrecoverably dead dentries (Rafael Aquini) [1031475]
-- [fs] vfs: reorganize dput() memory accesses (Rafael Aquini) [1031475]
-- [fs] vfs: reimplement d_rcu_to_refcount() using lockref_get_or_lock() (Rafael Aquini) [1031475]
-- [fs] vfs: use lockref_get_not_zero() for optimistic lockless dget_parent() (Rafael Aquini) [1031475]
-- [fs] vfs: make the dentry cache use the lockref infrastructure (Rafael Aquini) [1031475]
-- [fs] vfs: constify dentry parameter in d_count() (Rafael Aquini) [1031475]
-- [fs] helper for reading ->d_count (Rafael Aquini) [1031475]
-- [lib] lockref: use arch_mutex_cpu_relax() in CMPXCHG_LOOP() (Rafael Aquini) [1031475]
-- [lib] lockref: allow relaxed cmpxchg64 variant for lockless updates (Rafael Aquini) [1031475]
-- [lib] lockref: use cmpxchg64 explicitly for lockless updates (Rafael Aquini) [1031475]
-- [lib] lockref: add ability to mark lockrefs "dead" (Rafael Aquini) [1031475]
-- [lib] lockref: fix docbook argument names (Rafael Aquini) [1031475]
-- [lib] lockref: Relax in cmpxchg loop (Rafael Aquini) [1031475]
-- [lib] lockref: implement lockless reference count updates using cmpxchg() (Rafael Aquini) [1031475]
-- [lib] lockref: uninline lockref helper functions (Rafael Aquini) [1031475]
-- [lib] lockref: add 'lockref_get_or_lock() helper (Rafael Aquini) [1031475]
-- [lib] Add new lockref infrastructure reference implementation (Rafael Aquini) [1031475]
-- [s390] kdump: Increase crashkernel=auto base reservation from 128M to 160M (Baoquan He) [1052769]
-- [scsi] Derive the FLUSH_TIMEOUT from the basic I/O timeout (Fam Zheng) [1047563]
-- [acpi] Enhance ACPI warning for memory/IO address conflicts (Prarit Bhargava) [1047974]
-
-* Mon Feb 10 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-86.el7]
-- [scsi] hpsa: mark hpsa as a tech preview (Tomas Henzl) [1061210]
-- [x86] mark known Intel processors as supported (Prarit Bhargava) [920766]
-- [drm] mgag200: fix oops in cursor code (Dave Airlie) [1044701 1045159 1052739]
-- [kernel] audit: printk USER_AVC messages when audit isn't enabled (Richard Guy Briggs) [1051539]
-- [cpufreq] Do not hold driver module references for additional policy CPUs (Prarit Bhargava) [1043788]
-- [cpufreq] Remove extra variables from cpufreq_add_dev_symlink() (Prarit Bhargava) [1043788]
-- [net] tuntap: Fix for a race in accessing numqueues (Jason Wang) [1056399]
-- [mm] numa: add a sysctl for numa_balancing (Rik van Riel) [1059782]
-- [pci] Create 'pci_driver_rh' KABI shadowing structure (Myron Stowe) [1053796]
-- [pci] Convert 'pci_bus' allocations and frees (Myron Stowe) [1053796]
-- [pci] Create 'pci_bus_rh' KABI shadowing structure (Myron Stowe) [1053796]
-- [pci] Convert specific 'pci_dev' related constructs (Myron Stowe) [1053796]
-- [pci] Convert 'pci_dev' allocations and frees (Myron Stowe) [1053796]
-- [pci] Create 'pci_dev_rh' KABI shadowing structure (Myron Stowe) [1053796]
-- [fs] proc/meminfo: provide estimated available memory (Luiz Capitulino) [1058977]
-- [x86] apic, kexec: Add disable_cpu_apicid kernel parameter (Baoquan He) [994688]
-- [drm] mgag200: fix typo causing bw limits to be ignored on some chips (Dave Airlie) [1045495]
-- [drm] ast, cirrus, mgag200: use drm_can_sleep (Dave Airlie) [1056989]
-- [mm] prevent setting of a value less than 0 to min_free_kbytes (Steve Best) [1050899]
-- [powerpc] perf: BHRB filter configuration should follow the task (Steve Best) [1061191]
-- [powerpc] perf: Ignore separate BHRB privilege state filter request (Steve Best) [1061191]
-- [ethernet] cxgb4: Avoid disabling PCI device twice (Steve Best) [1055438]
-- [ethernet] cxgb4: Don't retrieve stats during recovery (Steve Best) [1055438]
-
-* Fri Feb 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-85.el7]
-- [kernel] errno: remove "NFS" from descriptions in comments (Eric Sandeen) [1009682]
-- [md] dm-cache: do not add migration to completed list before unhooking bio (Mike Snitzer) [1057197]
-- [md] dm-cache: move hook_info into common portion of per_bio_data structure (Mike Snitzer) [1057197]
-- [powerpc] Add debug checks to catch invalid cpu-to-node mappings (Steve Best) [1042526]
-- [powerpc] Fix the setup of CPU-to-Node mappings during CPU online (Steve Best) [1042526]
-- [md] avoid deadlock when dirty buffers during md_stop (Jes Sorensen) [1060027]
-- [powerpc] Fix transactional FP/VMX/VSX unavailable handlers (Steve Best) [1052083]
-- [powerpc] Don't corrupt transactional state when using FP/VMX in kernel (Steve Best) [1052083]
-- [powerpc] Reclaim two unused thread_info flag bits (Steve Best) [1052083]
-- [powerpc] Reset MSR_LE on signal entry (Steve Best) [1052083]
-- [powerpc] Wrap MSR macros with parentheses (Steve Best) [1052083]
-- [powerpc] Make flush_fp_to_thread() nop when CONFIG_PPC_FPU is disabled (Steve Best) [1052083]
-- [powerpc] math-emu: Move the flush FPU state function into do_mathemu (Steve Best) [1052083]
-- [powerpc] math-emu: Allow math-emu to be used for HW FPU (Steve Best) [1052083]
-- [powerpc] remove the unused function disable_kernel_fp() (Steve Best) [1052083]
-- [powerpc] Restore dbcr0 on user space exit (Steve Best) [1052083]
-- [powerpc] Provide for giveup_fpu/altivec to save state in alternate location (Steve Best) [1052083]
-- [powerpc] Put FP/VSX and VR state into structures (Steve Best) [1052083]
-- [powerpc] kvm: Don't corrupt guest state when kernel uses VMX (Steve Best) [1052083]
-- [powerpc] Fix VRSAVE handling (Steve Best) [1052083]
-- [powerpc] Fix a number of sparse warnings (Steve Best) [1052083]
-- [powerpc] Align thread->fpr to 16 bytes (Steve Best) [1052083]
-
-* Tue Feb 04 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-84.el7]
-- [s390] Unrevert kvm support patches (Jarod Wilson) [1035261]
-- [security] selinux: Fix possible NULL pointer dereference in selinux_inode_permission() (Eric Sandeen) [829715]
-- [scsi] qla2xxx: Correctly set the read_optrom pointer for ISP8044 (Chad Dupuis) [1057643]
-- [scsi] bnx2fc: Fixed scsi_remove_target soft lockup when rmmod bnx2x (Maurizio Lombardi) [1031770]
-- [scsi] config: remove LSI Logic New Generation RAID Device Drivers (Tomas Henzl) [979031]
-- [scsi] qla4xxx: v5.04.00.03.07.00-k0 (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Recreate chap data list during get chap operation (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: overflow in qla4xxx_set_chap_entry() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix memory leak in qla4xxx_destroy_ddb (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix sparse warnings (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Handle IPv6 AEN notifications (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Update print statements in func qla4xxx_do_dpc() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Update print statements in func qla4xxx_eh_abort() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Update print statements in qla4xxx_mailbox_command() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Updated print for device login, logout path (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Remove unused code from qla4xxx_set_ifcb() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix failure of mbox 0x31 (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Reduce rom-lock contention during reset recovery (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Driver not able to collect minidump for ISP84xx (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix pending IO completion in reset path before initiating chip reset (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix processing response queue during probe (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix failure of IDC Time Extend mailbox command (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Clear DDB index map upon connection close failure (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Return correct error status from func qla4xxx_request_irqs() (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fixed AER reset sequence for ISP83xx/ISP84xx (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Correctly handle msleep_interruptible (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Rename ACB_STATE macros with IP_ADDRSTATE macros (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Use IDC_CTRL bit1 directly instead of AF_83XX_NO_FWDUMP flag (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Fix comments in code (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: Print WARN_ONCE() if iSCSI function presence bit removed (Chad Dupuis) [1049707]
-- [scsi] qla4xxx: ISP8xxx: Correct retry of adapter initialization (Chad Dupuis) [1049707]
-- [scsi] hpsa: allow SCSI mid layer to handle unit attention (Tomas Henzl) [1056703]
-- [scsi] hpsa: do not require board "not ready" status after hard reset (Tomas Henzl) [1056703]
-- [scsi] hpsa: enable unit attention reporting (Tomas Henzl) [1056703]
-- [scsi] hpsa: rename scsi prefetch field (Tomas Henzl) [1056703]
-- [scsi] hpsa: use workqueue instead of kernel thread for lockup detection (Tomas Henzl) [1056703]
-- [scsi] hpsa: fix pci-ids (Tomas Henzl) [1056703]
-
-* Mon Feb 03 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-83.el7]
-- [tools] perf/stat: Add perf stat --transaction (Prarit Bhargava) [829878]
-- [kernel] perf: Add Haswell ULT model number used in Macbook Air and other systems (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Support full width counting (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Add mem-loads/stores support for Haswell (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Support Haswell/v4 LBR format (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Move NMI clearing to end of PMI handler (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Add Haswell PEBS support (Prarit Bhargava) [829878]
-- [kernel] perf_event_intel: Add Haswell PEBS record support (Prarit Bhargava) [829878]
-- [md] dm-log-userspace: allow mark requests to piggyback on flush requests (Mike Snitzer) [1057197]
-- [md] dm-space-map-metadata: fix bug in resizing of thin metadata (Mike Snitzer) [1057197]
-- [md] dm-cache: add policy name to status output (Mike Snitzer) [1057197]
-- [md] dm-thin: fix pool feature parsing (Mike Snitzer) [1057197]
-- [md] dm-sysfs: fix a module unload race (Mike Snitzer) [1057197]
-- [md] dm-snapshot: use dm-bufio prefetch (Mike Snitzer) [1057197]
-- [md] dm-snapshot: use dm-bufio (Mike Snitzer) [1057197]
-- [md] dm-snapshot: prepare for switch to using dm-bufio (Mike Snitzer) [1057197]
-- [md] dm-snapshot: use GFP_KERNEL when initializing exceptions (Mike Snitzer) [1057197]
-- [pci] Rename PCI_VC_PORT_REG1/2 to PCI_VC_PORT_CAP1/2 (Alex Williamson) [1053168]
-- [pci] Add Virtual Channel to save/restore support (Alex Williamson) [1053168]
-- [pci] Add support for save/restore of extended capabilities (Alex Williamson) [1053168]
-- [pci] Add pci_wait_for_pending() (refactor pci_wait_for_pending_transaction()) (Alex Williamson) [1053168]
-- [s390] increase CONFIG_NR_CPUS limit (Hendrik Brueckner) [1043827]
-- [s390] sclp: fix size of sclp_cpu_info structure (Hendrik Brueckner) [1043827]
-- [mm] create a separate slab for page->ptl allocation (Rik van Riel) [1058896]
-- [mm] properly separate the bloated ptl from the regular case (Rik van Riel) [1058896]
-- [mm] dynamically allocate page->ptl if it cannot be embedded to struct page (Rik van Riel) [1058896]
-- [mm] x86: handle pgtable_page_ctor() fail (Rik van Riel) [1058896]
-- [mm] s390: handle pgtable_page_ctor() fail (Rik van Riel) [1058896]
-- [mm] powerpc: handle pgtable_page_ctor() fail (Rik van Riel) [1058896]
-- [mm] allow pgtable_page_ctor() to fail (Rik van Riel) [1058896]
-- [mm] x86: add missed pgtable_pmd_page_ctor/dtor calls for preallocated pmds (Rik van Riel) [1058896]
-- [mm] x86: enable split page table lock for PMD level (Rik van Riel) [1058896]
-- [mm] implement split page table lock for PMD level (Rik van Riel) [1058896]
-- [mm] convert the rest to new page table lock api (Rik van Riel) [1058896]
-- [mm] hugetlb: convert hugetlbfs to use split pmd lock (Rik van Riel) [1058896]
-- [mm] hugetlb: grab a page_table_lock after page_cache_release (Rik van Riel) [1058896]
-- [mm] thp: do not access mm->pmd_huge_pte directly (Rik van Riel) [1058896]
-- [mm] thp: move ptl taking inside page_check_address_pmd() (Rik van Riel) [1058896]
-- [mm] thp: change pmd_trans_huge_lock() to return taken lock (Rik van Riel) [1058896]
-- [mm] introduce api for split page table lock for PMD level (Rik van Riel) [1058896]
-- [mm] convert mm->nr_ptes to atomic_long_t (Rik van Riel) [1058896]
-- [mm] rename USE_SPLIT_PTLOCKS to USE_SPLIT_PTE_PTLOCKS (Rik van Riel) [1058896]
-- [mm] avoid increase sizeof(struct page) due to split page table lock (Rik van Riel) [1058896]
-- [vfio] vfio-pci: Don't use device_lock around AER interrupt setup (Alex Williamson) [1045175]
-- [vfio] vfio-pci: Use pci "try" reset interface (Alex Williamson) [1045175]
-- [pci] Add pci_try_reset_function(), pci_try_reset_slot(), pci_try_reset_bus() (Alex Williamson) [1045175]
-- [infiniband] make sure the src net is infiniband when create new link (Jay Fenlason) [1049143]
-
-* Fri Jan 31 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-82.el7]
-- [mm] Revisit tlb_flushall_shift tuning for page flushes except on IvyBridge (Rik van Riel) [1058886]
-- [mm] change tlb_flushall_shift for IvyBridge (Rik van Riel) [1058886]
-- [mm] Eliminate redundant page table walk during TLB range flushing (Rik van Riel) [1058886]
-- [mm] Clean up inconsistencies when flushing TLB ranges (Rik van Riel) [1058886]
-- [mm] thp: avoid PageUnevictable on active/inactive lru lists (Rafael Aquini) [982739]
-- [mm] swap: clear PageActive before adding pages onto unevictable list (Rafael Aquini) [982739]
-- [mm] remove lru parameter from __lru_cache_add and lru_cache_add_lru (Rafael Aquini) [982739]
-- [mm] remove lru parameter from __pagevec_lru_add and remove parts of pagevec API (Rafael Aquini) [982739]
-- [mm] activate !PageLRU pages on mark_page_accessed if page is on local pagevec (Rafael Aquini) [982739]
-- [mm] pagevec: defer deciding which LRU to add a page to until pagevec drain time (Rafael Aquini) [982739]
-- [mm] add tracepoints for LRU activation and insertions (Rafael Aquini) [982739]
-- [kernel] audit: fix dangling keywords in audit_log_set_loginuid() output (Richard Guy Briggs) [1045670]
-- [kernel] audit: don't generate loginuid log when audit disabled (Richard Guy Briggs) [1045670]
-- [kernel] audit: fix type of sessionid in audit_set_loginuid() (Richard Guy Briggs) [1045670]
-- [kernel] audit: audit feature to set loginuid immutable (Richard Guy Briggs) [1045670]
-- [kernel] audit: audit feature to only allow unsetting the loginuid (Richard Guy Briggs) [1045670]
-- [kernel] audit: allow unsetting the loginuid (with priv) (Richard Guy Briggs) [1045670]
-- [kernel] audit: remove CONFIG_AUDIT_LOGINUID_IMMUTABLE (Richard Guy Briggs) [1045670]
-- [kernel] audit: loginuid functions coding style (Richard Guy Briggs) [1045670]
-- [kernel] audit: change decimal constant to macro for invalid uid (Richard Guy Briggs) [1045670]
-- [mm] sched/numa: Turn some magic numbers into #defines (Rik van Riel) [1049096]
-- [mm] sched/numa: Rename variables in task_numa_fault() (Rik van Riel) [1049096]
-- [mm] sched/numa: Do statistics calculation using local variables only (Rik van Riel) [1049096]
-- [mm] sched/numa: Normalize faults_cpu stats and weigh by CPU use (Rik van Riel) [1049096]
-- [mm] sched/numa: Use active_nodes nodemask to limit numa migrations (Rik van Riel) [1049096]
-- [mm] sched/numa: Build per numa_group active node mask from numa_faults_cpu statistics (Rik van Riel) [1049096]
-- [mm] sched/numa: Track from which nodes NUMA faults are triggered (Rik van Riel) [1049096]
-- [mm] sched/numa: Rename p->numa_faults to numa_faults_memory (Rik van Riel) [1049096]
-- [mm] sched/numa: Remove p->numa_migrate_deferred (Rik van Riel) [1049096]
-- [mm] sched: Calculate effective load even if local weight is 0 (Rik van Riel) [1049096]
-- [net] ipv4: fix tunneled VM traffic over hw VXLAN/GRE GSO NIC (Michal Schmidt) [1031869]
-- [net] netfilter: nf_nat: fix access to uninitialized buffer in IRC NAT helper (Daniel Borkmann) [1058782] {CVE-2014-1690}
-- [net] packet: fix send path when running with proto == 0 (Jesper Brouer) [1058729]
-- [net] packet: fix use after free race in send path when dev is released (Jesper Brouer) [1058729]
-- [net] Fix memory leak if TPROXY used with TCP early demux (Florian Westphal) [1054483]
-- [net] ipv6: simplify detection of first operational link-local address on interface (Jiri Pirko) [1047425]
-
-* Thu Jan 30 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-81.el7]
-- [infiniband] core: Resolve Ethernet L2 addresses when modifying QP (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Populate GID table with IP based gids (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Handle Ethernet L2 parameters for IP based GID addressing (Doug Ledford) [1051187]
-- [infiniband] mlx4: Handle Ethernet L2 parameters for IP based GID addressing (Doug Ledford) [1051187]
-- [infiniband] mlx4: Use IBoE (RoCE) IP based GIDs in the port GID table (Doug Ledford) [1051187]
-- [infiniband] cma: IBoE (RoCE) IP based GID addressing (Doug Ledford) [1051187]
-- [infiniband] core: Ethernet L2 attributes in verbs/cm structures (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix OCRDMA_GEN2_FAMILY macro definition (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix AV_VALID bit position (Doug Ledford) [1051187]
-- [infiniband] ocrdma: enable build (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove redundant check in ocrdma_build_fr() (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix a crash in rmmod (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Silence an integer underflow warning (Doug Ledford) [1051187]
-- [infiniband] Remove unnecessary semicolons (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix compiler warning about int/pointer size mismatch (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix passing wrong opcode to modify_srq (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fill PVID in UMC case (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Add ABI versioning support (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Consider multiple SGES in case of DPP (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix for displaying proper link speed (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Increase STAG array size (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Dont use PD 0 for userpace CQ DB (Doug Ledford) [1051187]
-- [infiniband] ocrdma: FRMA code cleanup (Doug Ledford) [1051187]
-- [infiniband] ocrdma: For ERX2 irrespective of Qid, num_posted offset is 24 (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix to work with even a single MSI-X vector (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove the MTU check based on Ethernet MTU (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Add support for fast register work requests (FRWR) (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Create IRD queue fix (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Cache recv DB until QP moved to RTR (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove __packed (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove driver QP state machine (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Don't allow zero/invalid sgid usage (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove redundant dev reference (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Style and redundant code cleanup (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix several stack info leaks (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove unused include (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Fix error return code in ocrdma_set_create_qp_rq_cmd() (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Reorg structures to avoid padding (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Change macros to inline funtions (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Set bad_wr in error case (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Replace ocrdma_err with pr_err (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Use MCC_CREATE_EXT_V1 for MCC create (Doug Ledford) [1051187]
-- [infiniband] ocrdma: Remove use_cnt for queues (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check access to userspace response buffer in extended command (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check input length in flow steering uverbs (Doug Ledford) [1051187]
-- [infiniband] uverbs: Set error code when fail to consume all flow_spec items (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check reserved fields in create_flow (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check comp_mask in destroy_flow (Doug Ledford) [1051187]
-- [infiniband] uverbs: Check reserved field in extended command header (Doug Ledford) [1051187]
-- [infiniband] uverbs: New macro to set pointers to NULL if length is 0 in INIT_UDATA() (Doug Ledford) [1051187]
-- [infiniband] core: const'ify inbuf in struct ib_udata (Doug Ledford) [1051187]
-- [infiniband] iwcm: Don't touch cm_id after deref in rem_ref (Doug Ledford) [1051187]
-- [infiniband] ucma: Convert use of typedef ctl_table to struct ctl_table (Doug Ledford) [1051187]
-- [infiniband] cm: Convert to using idr_alloc_cyclic() (Doug Ledford) [1051187]
-- [infiniband] core: Encorce MR access rights rules on kernel consumers (Doug Ledford) [1051187]
-- [infiniband] cma: Remove unused argument and minor dead code (Doug Ledford) [1051187]
-- [infiniband] ucma: Discard events for IDs not yet claimed by user space (Doug Ledford) [1051187]
-- [infiniband] core: Add Cisco usNIC rdma node and transport types (Doug Ledford) [1051187]
-- [infiniband] netlink: Remove superfluous RDMA_NL_GET_OP() masking (Doug Ledford) [1051187]
-- [infiniband] core: Pass imm_data from ib_uverbs_send_wr to ib_send_wr correctly (Doug Ledford) [1051187]
-- [infiniband] cma: Check for GID on listening device first (Doug Ledford) [1051187]
-- [infiniband] cma: Use cached gids (Doug Ledford) [1051187]
-- [infiniband] cma: Set IBoE SL (user-priority) by egress map when using vlans (Doug Ledford) [1051187]
-- [infiniband] cma: Add IPv6 support for iWARP (Doug Ledford) [1051187]
-- [infiniband] cma: Only call cma_save_ib_info() for CM REQs (Doug Ledford) [1051187]
-- [infiniband] cma: Fix accessing invalid private data for UD (Doug Ledford) [1051187]
-- [infiniband] cma: Fix gcc warning (Doug Ledford) [1051187]
-- [infiniband] uverbs: Use get_unused_fd_flags(O_CLOEXEC) instead of get_unused_fd() (Doug Ledford) [1051187]
-- [misc] drivers: avoid format string in dev_set_name (Doug Ledford) [1051187]
-- [infiniband] core: Fix error return code in add_port() (Doug Ledford) [1051187]
-- [infiniband] cma: Export AF_IB statistics (Doug Ledford) [1051187]
-- [infiniband] ucma: Allow user space to specify AF_IB when joining multicast (Doug Ledford) [1051187]
-- [infiniband] ucma: Allow user space to pass AF_IB into resolve (Doug Ledford) [1051187]
-- [infiniband] ucma: Allow user space to bind to AF_IB (Doug Ledford) [1051187]
-- [infiniband] ucma: Name changes to indicate only IP addresses supported (Doug Ledford) [1051187]
-- [infiniband] ucma: Add ability to query GID addresses (Doug Ledford) [1051187]
-- [infiniband] cma: Export cma_get_service_id() (Doug Ledford) [1051187]
-- [infiniband] ucma: Support querying when IB paths are not reversible (Doug Ledford) [1051187]
-- [infiniband] sa: Export function to pack a path record into wire format (Doug Ledford) [1051187]
-- [infiniband] ucma: Support querying for AF_IB addresses (Doug Ledford) [1051187]
-- [infiniband] cma: Only listen on IB devices when using AF_IB (Doug Ledford) [1051187]
-- [infiniband] cma: Set qkey for AF_IB (Doug Ledford) [1051187]
-- [infiniband] cma: Expose private data when using AF_IB (Doug Ledford) [1051187]
-- [infiniband] cma: Merge cma_get/save_net_info (Doug Ledford) [1051187]
-- [infiniband] cma: Remove unused SDP related code (Doug Ledford) [1051187]
-- [infiniband] cma: Add support for AF_IB to cma_get_service_id() (Doug Ledford) [1051187]
-- [infiniband] cma: Add support for AF_IB to rdma_resolve_route() (Doug Ledford) [1051187]
-- [infiniband] cma: Add support for AF_IB to rdma_resolve_addr() (Doug Ledford) [1051187]
-- [infiniband] cma: Verify that source and dest sa_family are the same (Doug Ledford) [1051187]
-- [infiniband] cma: Restrict AF_IB loopback to binding to IB devices only (Doug Ledford) [1051187]
-- [infiniband] cma: Add helper functions to return id address information (Doug Ledford) [1051187]
-- [infiniband] cma: Do not modify sa_family when setting loopback address (Doug Ledford) [1051187]
-- [infiniband] cma: Allow user to specify AF_IB when binding (Doug Ledford) [1051187]
-- [infiniband] cma: Update port reservation to support AF_IB (Doug Ledford) [1051187]
-- [infiniband] addr: Add AF_IB support to ip_addr_size (Doug Ledford) [1051187]
-- [infiniband] cma: Include AF_IB in loopback and any address checks (Doug Ledford) [1051187]
-- [infiniband] cma: Allow enabling reuseaddr in any state (Doug Ledford) [1051187]
-- [infiniband] cma: Define native IB address (Doug Ledford) [1051187]
-- [net] vlan: Fix header ops passthru when doing TX VLAN offload (Doug Ledford) [1051187]
-- [net] vlan: Implement vlan_dev_get_egress_qos_mask as an inline (Doug Ledford) [1051187]
-- [net] vlan: Provide read access to the vlan egress map (Doug Ledford) [1051187]
-- [net] vlan: make vlan_dev_real_dev work over stacked vlans (Doug Ledford) [1051187]
-- [net] vlan: cleanup the usage of vlan_dev_priv(dev) (Doug Ledford) [1051187]
-- [ethernet] mlx4: Remove unnecessary validation for port number (Amir Vadai) [1030563]
-- [ethernet] mlx4: Warn if device doesn't have enough PCI bandwidth (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: lower NAPI weight (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Start multicast join process only on active ports (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Add path query flushing in ipoib_ib_dev_cleanup (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Fix usage of uninitialized multicast objects (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Avoid flushing the driver workqueue on dev_down (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Fix deadlock between dev_change_flags() and __ipoib_dev_flush() (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Change CM skb memory allocation to be non-atomic during init (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Fix crash in dev_open error flow (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] ipoib: Fix race in deleting ipoib_neigh entries (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Only cycle port if HW timestamp config changes (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add PTP hardware clock (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix layout of struct mlx5_init_seg (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Flush cache workqueue before destroying it (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add netdev support for TCP/IP offloads of vxlan tunneling (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add basic support for TCP/IP offloads under tunneling (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Check port number for validity before accessing data (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add NAPI support for transmit side (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Ignore irrelevant hypervisor events (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Set CQE/EQE size to 64B by default (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Configure the XPS queue mapping on driver load (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Implement ndo_get_phys_port_id (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Expose physical port id as PF/VF capability (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Introduce nic_info new flag in QUERY_FUNC_CAP (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Rename QUERY_FUNC_CAP fields (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Remove zeroed out of explicit QUERY_FUNC_CAP fields (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Roll back round robin bitmap allocation commit for CQs, SRQs, and MPTs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: destroy workqueue when driver fails to register (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Remove selftest TX queues empty condition (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Re-enable create_flow/destroy_flow uverbs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: extended command: an improved infrastructure for uverbs commands (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Remove ib_uverbs_flow_spec structure from userspace (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Use a common header for uverbs flow_specs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Make uverbs flow structure use names like verbs ones (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Rename 'flow' structs to match other uverbs structs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: clarify overflow/underflow checks on ib_create/destroy_flow (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix page shift in create CQ for userspace (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx4: Fix device max capabilities check (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix list_del of empty list (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Remove dead code (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx4: Fix endless loop in resize CQ (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Use enum to indicate adapter page size (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Update opt param mask for RTS2RTS (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Remove "Always false" comparison (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Remove dead code in mr.c (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Change optimal_reclaimed_pages for better performance (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Clear reserved area in set_hca_cap() (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Support communicating arbitrary host page size to firmware (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Fix cleanup flow when DMA mapping fails (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix srq free in destroy qp (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Simplify mlx5_ib_destroy_srq (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix overflow check in IB_WR_FAST_REG_MR (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Multithreaded create MR (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix check of number of entries in create CQ (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Datapath structures are allocated per NUMA node (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: ICM pages are allocated on device NUMA node (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Datapath resources allocated dynamically (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add immediate activate for VGT->VST->VGT (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Initialize all mailbox buffers to zero before use (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Add RFS support in UDP (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Implement resource quota enforcement (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix quota handling in the QUERY_FUNC_CAP wrapper (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Structures and init/teardown for VF resource quotas (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix checking order in MR table init (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Don't fail reg/unreg vlan for older guests (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Resource tracker for reg/unreg vlans (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Use vlan id instead of vlan index for unregistration (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix reg/unreg vlan/mac to conform to the firmware spec (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix register/unreg vlan flow (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] core: Temporarily disable create_flow/destroy_flow uverbs (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Load higher level modules according to ports type (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Unused local variable in mlx4_opreq_action (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Fix typo, move similar defs to same location (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Clean the code to eliminate trivial build warnings (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Ensure proper synchronization accessing memory (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix alignment of reg umr gather buffers (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix eq names to display nicely in /proc/interrupts (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Fix error code translation from firmware to driver (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix opt param mask according to firmware spec (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix opt param mask for sq err to rts transition (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Disable atomic operations (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Keep polling to reclaim pages while any returned (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Avoid async events on invalid port number (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Decrease memory consumption of mr caches (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx5: Remove checksum on command interface commands (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix memory leak in mlx5_ib_create_srq (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [infiniband] mlx5: Fix send work queue size calculation (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Rename name of mlx4_en_rx_alloc members (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Check device state when setting coalescing (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [ethernet] mlx4: Reduce scope of local variables in mlx4_en_xmit (Amir Vadai) [1030563 1030565 1030568 1030570 1030571 1030573 1030575]
-- [scsi] reserve extension space to prevent KABI breakages (Maurizio Lombardi) [1029903]
-- [security] selinux: selinux_setprocattr()->ptrace_parent() needs rcu_read_lock() (Paul Moore) [800159]
-
-* Mon Jan 27 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-80.el7]
-- [misc] synchronize with upstream linux-3.10.y stable branch up to 3.10.24 (Veaceslav Falico) [1040946]
-- [acpi] memhotplug: add parameter to disable memory hotplug (Prarit Bhargava) [1046555]
-- [kernel] kdump: Increase x86 crashkernel=auto base reservation from 128M to 160M (Baoquan He) [1044832]
-- [mfd] lpc_ich: Add support for Intel Avoton SoC (Prarit Bhargava) [1049638]
-- [net] ipv6: send Change Status Report after DAD is completed (Flavio Leitner) [1049092]
-- [mm] Revert: new shrinker count/scan API (Mike Snitzer) [1056647]
-- [drm] Revert: convert shrinkers to new count/scan API (Mike Snitzer) [1056647]
-
-* Thu Jan 23 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-79.el7]
-- [virt] virtio-net: put virtio net header inline with data ("Michael S. Tsirkin") [990993]
-- [virt] virtio: VIRTIO_F_ANY_LAYOUT feature ("Michael S. Tsirkin") [990993]
-- [tools] turbostat: servers do not support uncore power register (Prarit Bhargava) [1037706]
-- [alsa] pcsp: Fix the order of input device unregistration (Jaroslav Kysela) [1044022]
-- [alsa] ak4114: Fix wrong register array size (Jaroslav Kysela) [1044022]
-- [alsa] pcsp: Fix initialization with nopcm=1 (Jaroslav Kysela) [1044022]
-- [alsa] opl3: Fix possible negative array index access (Jaroslav Kysela) [1044022]
-- [alsa] tea575x-tuner: move HW init to a separate function (Jaroslav Kysela) [1044022]
-- [alsa] ak4xx-adda: info leak in ak4xxx_capture_source_info() (Jaroslav Kysela) [1044022]
-- [alsa] vx_core: off by one in vx_read_status() (Jaroslav Kysela) [1044022]
-- [alsa] Remove the rest of *_set_drvdata(NULL) calls (Jaroslav Kysela) [1044022]
-- [alsa] virmidi: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] serial-u16550: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] pcsp: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] mtpav: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] mpu401: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] ml403-ac97cr: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] aloop: Remove redundant platform_set_drvdata() (Jaroslav Kysela) [1044022]
-- [alsa] firewire-lib: use inlune function to calculate frame bytes (Jaroslav Kysela) [1044022]
-- [alsa] firewire-speakers: remove not-reused member from structure (Jaroslav Kysela) [1044022]
-- [alsa] snd-firewire-lib: remove unused header inclusion (Jaroslav Kysela) [1044022]
-- [alsa] firewire: fix error return code in scs_probe() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add Dell headset detection quirk for three laptop models (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add enable_msi=0 workaround for four HP machines (Jaroslav Kysela) [1044022]
-- [alsa] hda: Split verb definitions into sound/hda_verbs.h (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable stereo mix as default for AD and VIA codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Ignore small negative LPIB delay correction (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add missing initialization of aamix paths (Jaroslav Kysela) [1044022]
-- [alsa] hda: Allow capture-only configuration (Jaroslav Kysela) [1044022]
-- [alsa] hda: skip depop delay before D3 for Haswell and Valleyview2 display codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Clean up async codec PM using standard async infrastructure (Jaroslav Kysela) [1044022]
-- [alsa] hda: fixup ALC262 to skip depop delay before D3 on Intel BayleyBay (Jaroslav Kysela) [1044022]
-- [alsa] hda: Always do delayed probes for HD-audio devices (Jaroslav Kysela) [1044022]
-- [alsa] hda: allow a codec to define its own depop delay time (Jaroslav Kysela) [1044022]
-- [alsa] hda: fixup ALC262 to remove depop delay on Intel BayleyBay board (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Remove depop delay for suspend and resume if applicable (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Add more codecs alias name for Dell (Jaroslav Kysela) [1044022]
-- [alsa] hda: resume codecs in parallel (Jaroslav Kysela) [1044022]
-- [alsa] hda: suspend codecs in parallel (Jaroslav Kysela) [1044022]
-- [alsa] hda: Disable runtime PM when EPSS is unavailable (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable runtime PM on Panther Point (Jaroslav Kysela) [1044022]
-- [alsa] hda: Refactor pm notification in hda_codec.c (Jaroslav Kysela) [1044022]
-- [alsa] hda: Bind with HDMI codec parser automatically (Jaroslav Kysela) [1044022]
-- [alsa] hda: Split the generic parser as an individual module (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add static DAC/pin mapping for AD1986A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: One more Dell headset detection quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix IEC958 ctl indexes for some simple HDMI devices (Jaroslav Kysela) [1044022]
-- [alsa] hda: Mute all aamix inputs as default (Jaroslav Kysela) [1044022]
-- [alsa] hda: Another Dell headset detection quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: A Dell headset detection quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove quirk for Dell Vostro 131 (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: fix uninitialized variable compile warning (Jaroslav Kysela) [1044022]
-- [alsa] hda: fix mic issues on Acer Aspire E-572 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix silent output on MacBook Air 2,1 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix missing ELD info when using jackpoll_ms parameter (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: remove hp_automute_hook from alc283_fixup_chromebook (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Independent of model for HP (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix headset mic input after muted internal mic (Dell/Realtek) (Jaroslav Kysela) [1044022]
-- [alsa] hda: Use always amps for auto-mute on AD1986A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda/analog: Handle inverted EAPD properly in vmaster hook (Jaroslav Kysela) [1044022]
-- [alsa] hda: Another fixup for ASUS laptop with ALC660 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix complete_all() timing in deferred probes (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix bad EAPD setup for HP machines with AD1984A (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix silent output on ASUS W7J laptop (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add mono speaker quirk for Dell Inspiron 5439 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add LFE chmap to ASUS ET2700 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Initialize missing bass speaker pin for ASUS AIO ET2700 (Jaroslav Kysela) [1044022]
-- [alsa] hda: limit mic boost on Asus UX31[A,E] (Jaroslav Kysela) [1044022]
-- [alsa] hda: Check leaf nodes to find aamix amps (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix hp-mic mode without VREF bits (Jaroslav Kysela) [1044022]
-- [alsa] hda: Create Headhpone Mic Jack Mode when really needed (Jaroslav Kysela) [1044022]
-- [alsa] usb: use multiple packets per urb for Wireless USB inbound audio (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable mute/mic-mute LEDs for more Thinkpads with Conexant codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop bus->avoid_link_reset flag (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Set pcbeep amp for ALC668 (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Add support of ALC231 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Set current_headset_type to ALC_HEADSET_TYPE_ENUM (Jaroslav Kysela) [1044022]
-- [alsa] hda: Provide missing pin configs for VAIO with ALC260 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add headset quirk for Dell Inspiron 3135 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix the headphone jack detection on Sony VAIO TX (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix missing bass speaker on ASUS N550 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix unbalanced runtime PM notification at resume (Jaroslav Kysela) [1044022]
-- [alsa] hda: A casual Dell Headset quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: Also enable mute/micmute LED control for "Lenovo dock" fixup (Jaroslav Kysela) [1044022]
-- [alsa] hda: Select FW_LOADER from CONFIG_SND_HDA_CODEC_CA0132_DSP (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable mute/mic-mute LEDs for more Thinkpads with Realtek codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: load EQ params into IDT codec on HP bNB13 systems (Jaroslav Kysela) [1044022]
-- [alsa] jack: Unregister input device at disconnection (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add front jack channel selector for EMU0204 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Don't clear the power state at snd_hda_codec_reset() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Control EAPD for Master volume on Lenovo N100 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Don't turn off EAPD for headphone on Lenovo N100 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Check keep_eapd_on before inv_eapd (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix Line Out automute on Realtek multifunction jacks (Jaroslav Kysela) [1044022]
-- [alsa] compress_core: don't return -EBADFD from poll if paused (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix wrong baseline length in ATI/AMD generated ELD (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Skip out-of-range latency values in AMD ELD generator (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Add error-checking to some codec reads (Jaroslav Kysela) [1044022]
-- [alsa] usb: Fix wrong mapping of RLC and RRC channels (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Use TFx channel positions instead of FxH (Jaroslav Kysela) [1044022]
-- [alsa] hda: Control SPDIF out pin on MacBookPro 11,2 (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Add new codec ALC255/ALC3234 UAJ supported (Jaroslav Kysela) [1044022]
-- [alsa] hda: Apply MacBook fixups for CS4208 correctly (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Make fixup regs persist after resume (Jaroslav Kysela) [1044022]
-- [alsa] hda_intel: ratelimit "spurious response" message (Jaroslav Kysela) [1044022]
-- [alsa] hda: Get rid of AMD HDMI exception in hdmi_present_sense() (Jaroslav Kysela) [1044022]
-- [alsa] ice1724: Fix compile warning with CONFIG_PROC_FS=n (Jaroslav Kysela) [1044022]
-- [alsa] hda: block HDMI jack reports while repolling (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add a block_report flag to jacks (Jaroslav Kysela) [1044022]
-- [alsa] hda: Delay HDMI presence reports while waiting for ELD information (Jaroslav Kysela) [1044022]
-- [alsa] compress: fix drain calls blocking other compress functions (Jaroslav Kysela) [1044022]
-- [alsa] hda: Another Dell headset quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add pincfg fixup for ASUS W5A (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add support for CX20952 (Jaroslav Kysela) [1044022]
-- [alsa] lx6464es: Fix pointer cast compile warnings (Jaroslav Kysela) [1044022]
-- [alsa] hda: Limit mic boost and add mute LED for an HP machine (Jaroslav Kysela) [1044022]
-- [alsa] hda: Make sure mute LEDs stay on during runtime suspend (Realtek) (Jaroslav Kysela) [1044022]
-- [alsa] ctxfi: Use WARN_ON() instead of BUG_ON() (Jaroslav Kysela) [1044022]
-- [alsa] intel8x0: Fix chmap application (Jaroslav Kysela) [1044022]
-- [alsa] hda: Apply GPIO setup for MacBooks with CS4208 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Name Haswell HDMI controllers better (Jaroslav Kysela) [1044022]
-- [alsa] hda: Force buffer alignment for Haswell HDMI controllers (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable Thinkpad mute/micmute LEDs for Realtek (Jaroslav Kysela) [1044022]
-- [alsa] hda: add device IDs for AMD Evergreen/Northern Islands HDMI (Jaroslav Kysela) [1044022]
-- [alsa] hda: Introduce the bitmask for excluding output volume (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add sanity check of vmaster slave dB steps (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix possible zero-division (Jaroslav Kysela) [1044022]
-- [alsa] usb: Don't trust the channel config if the channel count changed (Jaroslav Kysela) [1044022]
-- [alsa] usb: For class 2 devices, use channel map from altsettings (Jaroslav Kysela) [1044022]
-- [alsa] usb: supply channel maps even when wChannelConfig is unspecified (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable SPDIF for Acer TravelMate 6293 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add Device IDs for Intel Wildcat Point-LP PCH (Jaroslav Kysela) [1044022]
-- [alsa] hda: rename function not_share_unassigned_cvt() (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Disallow unsupported 2ch remapping on NVIDIA codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: not choose assigned converters for unused pins of Valleyview (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add extra chmap for 2.1 outputs on ASUS laptops (Jaroslav Kysela) [1044022]
-- [alsa] hda: Disable AA-loopback on ALC283 Chromebook (Jaroslav Kysela) [1044022]
-- [alsa] lola: Fix uninitialized variable access in error message (Jaroslav Kysela) [1044022]
-- [alsa] ice1724: Fix uninitialized variable access (Jaroslav Kysela) [1044022]
-- [alsa] rme96: Return error code in PCM copy ops (Jaroslav Kysela) [1044022]
-- [alsa] ali5451: Drop unused variable (Jaroslav Kysela) [1044022]
-- [alsa] ad1889: Fix right attenuation proc output (Jaroslav Kysela) [1044022]
-- [alsa] Use strlcpy() instead of strncpy() (Jaroslav Kysela) [1044022]
-- [alsa] Limit the fallback card id string size (Jaroslav Kysela) [1044022]
-- [alsa] memalloc: NULL-initialize in snd_malloc_dev_iram() (Jaroslav Kysela) [1044022]
-- [alsa] memalloc: Make snd_{malloc|free}_dev_iram() static (Jaroslav Kysela) [1044022]
-- [alsa] Optimize module name check (Jaroslav Kysela) [1044022]
-- [alsa] pcm: Add fallthru comments (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove locally dead codes (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add a fallthru comment (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix possible NULL dereference in snd_hda_get_pin_label() (Jaroslav Kysela) [1044022]
-- [alsa] 6fire: Fix probe of multiple cards (Jaroslav Kysela) [1044022]
-- [alsa] memalloc: Yet another ifdef CONFIG_GENERIC_ALLOCATOR protection (Jaroslav Kysela) [1044022]
-- [alsa] pcm_dmaengine: Remove hardcoded PCM formats (Jaroslav Kysela) [1044022]
-- [alsa] hda: Sync EAPD with vmaster on AD1984A Thinkpads (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix silent headphone on Thinkpads with AD1984A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Re-setup pin and infoframe on plug-in on all codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Disable ramp-up/down for non-PCM on AMD codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Add HBR bitstreaming support for ATI/AMD HDMI codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Add ELD emulation for ATI/AMD codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Add ATI/AMD multi-channel audio support (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Allow HDA patches to customize more operations (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Raise the delay for alc283_shutup (Jaroslav Kysela) [1044022]
-- [alsa] compress: fix drain calls blocking other compress functions (Jaroslav Kysela) [1044022]
-- [alsa] Add ifdef CONFIG_GENERIC_ALLOCATOR for SNDRV_DMA_TYPE_IRAM code (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix mute LED on HP laptops in runtime suspend (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add support of ALC285 / ALC293 codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add support of ALC255 codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove OOM message after input_allocate_device (Jaroslav Kysela) [1044022]
-- [alsa] Add SoC on-chip internal ram support for DMA buffer allocation (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix typos in patch_hdmi.c (Jaroslav Kysela) [1044022]
-- [alsa] hda: add codec ID for Valleyview2 display codec (Jaroslav Kysela) [1044022]
-- [alsa] emu10k1: code refactoring (Jaroslav Kysela) [1044022]
-- [alsa] hda: Move mutex from hda_eld to per_pin in HDMI codec driver (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix possible races in HDMI driver (Jaroslav Kysela) [1044022]
-- [alsa] hda: Treat zero connection as non-error (Jaroslav Kysela) [1044022]
-- [alsa] hda: add connection to thinkpad_acpi to control mute/micmute LEDs (Jaroslav Kysela) [1044022]
-- [alsa] hda: add HDA_FIXUP_ACT_FREE action (Jaroslav Kysela) [1044022]
-- [alsa] hdsp: info leak in snd_hdsp_hwdep_ioctl() (Jaroslav Kysela) [1044022]
-- [alsa] Remove unnecessary semicolons (Jaroslav Kysela) [1044022]
-- [alsa] hda: Sony VAIO Pro 13 (haswell) now has a working headset jack (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add a headset mic model for ALC269 and friends (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable surround speakers (when line out is also present) (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: Use module_usb_driver (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: support wireless devices in snd_usb_parse_datainterval (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add support for wireless USB devices (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Tweak debug messages to be more useful (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix available channel maps missing from TLV (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix channel maps with less common speakers (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix unused slots being enabled in manual and non-PCM mappings (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix programmed active channel count (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: Fix incorrect default channel mapping for unusual CAs (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove unused endpoint flag EP_FLAG_ACTIVATED (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: rename alt_idx to altsetting (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: clear SUBSTREAM_FLAG_SYNC_EP_STARTED on error (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: void return type of snd_usb_endpoint_deactivate() (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: don't deactivate URBs on in-use EP (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove deactivate_endpoints() (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove unused parameter from sync_ep_set_params (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix mono speakers and headset mic on Dell Vostro 5470 (Jaroslav Kysela) [1044022]
-- [alsa] snd-usb-caiaq: LED support for Maschine Controller (Jaroslav Kysela) [1044022]
-- [alsa] ac97: Add ID for TI TLV320AIC27 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable internal mic on a Thinkpad machine with ALC283 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix Internal Mic boost can't control with ALC283 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add fixup for MacBook Air 6,1 and 6,2 with CS4208 codec (Jaroslav Kysela) [1044022]
-- [alsa] improve buffer size computations for USB PCM audio (Jaroslav Kysela) [1044022]
-- [alsa] hda: not use assigned converters for all unused pins (Jaroslav Kysela) [1044022]
-- [alsa] compress: Make sure we trigger STOP before closing the stream (Jaroslav Kysela) [1044022]
-- [alsa] rme9652: Remove redundant break (Jaroslav Kysela) [1044022]
-- [alsa] au88x0: Remove redundant break (Jaroslav Kysela) [1044022]
-- [alsa] hda/ca0132: Staticize codec_send_command (Jaroslav Kysela) [1044022]
-- [alsa] ctxfi: Staticize local symbols (Jaroslav Kysela) [1044022]
-- [alsa] asihpi: a couple array out of bounds issues (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add CS4208 codec support for MacBook 6,1 and 6,2 (Jaroslav Kysela) [1044022]
-- [alsa] hda: unmute pin amplifier in infoframe setup for Haswell (Jaroslav Kysela) [1044022]
-- [alsa] hda: define is_haswell() to check if a display audio codec is Haswell (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add dock speaker support for ASUS TX300 (Jaroslav Kysela) [1044022]
-- [alsa] snd/hda: add runtime suspend/resume on optimus support (Jaroslav Kysela) [1044022]
-- [alsa] hda: Simplify CONFIG_SND_HDA_I915 condition (Jaroslav Kysela) [1044022]
-- [alsa] hda: add device entry and inactive flag to unsolicited response (Jaroslav Kysela) [1044022]
-- [alsa] hda: Haswell codec exposes device list/select info on pins (Jaroslav Kysela) [1044022]
-- [alsa] hda: add device list & select info of display pins to codec proc file (Jaroslav Kysela) [1044022]
-- [alsa] hda: add flags and routines to get devices selection info for DP1.2 MST (Jaroslav Kysela) [1044022]
-- [alsa] treewide: Fix printks with 0x# (Jaroslav Kysela) [1044022]
-- [alsa] alsa/rme96: Add missing inclusion of linux/vmalloc.h (Jaroslav Kysela) [1044022]
-- [alsa] rme96: Check the return value of pci_enable_device() in resume callback (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add workarounds for pop-noise on Chromebook with ALC283 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix ALC283 headphone pop-noise better (Jaroslav Kysela) [1044022]
-- [alsa] rme96: Add PM support v3 (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Use enums in hdspm_tco_ltc_frames() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Fix default value in SNDRV_HDSPM_IOCTL_GET_LTC (Jaroslav Kysela) [1044022]
-- [alsa] pcm: Use snd_printd_ratelimit() (Jaroslav Kysela) [1044022]
-- [alsa] pcm: Add snd_printd_ratelimit() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Try to allow haswell HDMI audio even without powerwell (Jaroslav Kysela) [1044022]
-- [alsa] hda: Limit internal mic boost for a few more Thinkpad machines (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix the order of a quirk table (janitorial) (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix internal mic boost on three Thinkpad machines (Jaroslav Kysela) [1044022]
-- [alsa] rme96: Add pcm stream synchronization (Jaroslav Kysela) [1044022]
-- [alsa] hda: Mute the right widget in auto_mute_via_amp mode (Jaroslav Kysela) [1044022]
-- [alsa] hda: Allow auto_mute_via_amp on bind mute controls (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: fix automatic Roland/Yamaha MIDI detection (Jaroslav Kysela) [1044022]
-- [alsa] don't push static constants on stack for *ph (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: WARN_ON when alts is passed as NULL (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove implicit_fb from quirk (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove is_playback from implicit feedback quirks (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: do not initialize and check implicit_fb (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: reverse condition logic in set_sync_endpoint (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: move implicit fb quirks to separate function (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: separate sync endpoint setting from set_format (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove assignment from if condition (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove disabled debug code in set_format (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix jack gating when auto_{mute,mic} is suppressed (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix invalid multi-io creation on VAIO-Z laptops (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove analog mic pin override from STAC9228 dell-bios quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: WAKEEN feature enabling for runtime pm (Jaroslav Kysela) [1044022]
-- [alsa] hda: jack poll once if jackpoll_interval==0 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Clearing jackpoll_interval avoid pending work (Jaroslav Kysela) [1044022]
-- [alsa] usx2y: remove an unneeded check (Jaroslav Kysela) [1044022]
-- [alsa] hda: use azx_writew() for 16-bit length register (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix the noise after suspend on ALC283 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda/realtek: Selectively call snd_hda_shutup_pins() (Jaroslav Kysela) [1044022]
-- [alsa] hiface: return correct XRUN indication (Jaroslav Kysela) [1044022]
-- [alsa] replace strict_strto*() with kstrto*() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add snd_hda_jack_detect_state() helper function (Jaroslav Kysela) [1044022]
-- [alsa] thinkpad-acpi: Add mute and mic-mute LED functionality (Jaroslav Kysela) [1044022]
-- [alsa] hda: Headphone mic support for an Asus/Conexant device (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: remove unneeded semicolon (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: fix regression for fixed stream quirk (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1986A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop a few other static quirks for AD1986A (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop static quirk for Toshiba Satellite L40-10Q (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop static quirks for other AD1986A Samsung machines (Jaroslav Kysela) [1044022]
-- [alsa] hda: Convert static quirks for AD1986A Samsung laptops (Jaroslav Kysela) [1044022]
-- [alsa] hda: Convert the static quirk for Samsung Q1 Ultra (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1988 codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1981 and AD1983 codecs (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1884/1984 & variants (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove static quirks for AD1882 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add fixup for HP TouchSmart with AD1984A codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add fixup for Lenovo Thinkpad with AD1984 codec (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add GPIO control to AD1884 HP fixup (Jaroslav Kysela) [1044022]
-- [alsa] hda: Move azx_first_init() into azx_probe_continue() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Fix runtime PM check (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add power-welll support for haswell HDA (Jaroslav Kysela) [1044022]
-- [alsa] hda: Keep halting ALC5505 DSP (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Added some comments and control register documentation (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Use snd_ctl_enum_info() in snd_hdspm_info_autosync_ref (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Use snd_ctl_enum_info() for texts_autosync (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Use snd_ctl_enum_info for most text arrays (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Enable TCO support (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Report external sample rate to userspace (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Introduce hdspm_external_rate_to_enum() helper function (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Include TCO and Sync-In in proc output (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Enable TCO/Sync-In in snd_hdspm_put_sync_ref() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Enable TCO input in hdspm_external_sample_rate() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Ignore float/int format bit (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Enable AES32 in hdspm_get_tco_sample_rate (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Enable AES32 in hdspm_get_wc_sample_rate (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add prototype declarations (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Introduce hdspm_get_aes_sample_rate() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Add TCO and Sync-In text entries (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aio: Drop superfluous HDSPM_AUTOSYNC_REF (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Cosmetics, no real change (Jaroslav Kysela) [1044022]
-- [alsa] hdspm/aes32: Fix TCO sync check reporting (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Create TCO readout function (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Fix S/PDIF Sync status and frequency on RME AIO (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add support for AEBs on RME AIO (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Enable AD/DA/PH gains and S/PDIF-Input select on AIO (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Introduce generic AIO tristate control (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Refactor ENUMERATED_CTL_INFO into function (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add S/PDIF, XLR, WCK48 and ADAT-in controls for RME AIO cards (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add S/PDIF and WCK48 controls for RME RayDAT (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Drop duplicate code in hdspm_set_system_clock_mode() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Augment HDSPM_TOGGLE_SETTING for AIO/RayDAT (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Introduce hdspm_is_raydat_or_aio() (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add missing defines for RME AIO and RayDAT (Jaroslav Kysela) [1044022]
-- [alsa] vmaster: Fix the regression of missing vmaster hook call (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add Dell SSID to support Headset Mic recording (Jaroslav Kysela) [1044022]
-- [alsa] pcm_native: switch to fdget()/fdput() (Jaroslav Kysela) [1044022]
-- [alsa] treewide: relase -> release (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: Add Audio Advantage Micro II (Jaroslav Kysela) [1044022]
-- [alsa] Replace the magic number 44 with const (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add support for ALC5505 DSP power-save mode (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add quirks for Roland QUAD/OCTO-CAPTURE (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: claim autodetected PCM interfaces all at once (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: remove superfluous Roland quirks (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add MIDI port names for some Roland devices (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: add support for many Roland/Yamaha devices (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: detect implicit feedback on Roland devices (Jaroslav Kysela) [1044022]
-- [alsa] usb-audio: store protocol version in struct audioformat (Jaroslav Kysela) [1044022]
-- [alsa] pci: replace numeric with standard PM state macros (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add missing alc_inv_dmic_sync() call in alc269_resume() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove superfluous stac_resume() (Jaroslav Kysela) [1044022]
-- [alsa] hda/hdmi: poll eld at resume time (Jaroslav Kysela) [1044022]
-- [alsa] hda: clean up code to reset hda link (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add In-driver connection info (Jaroslav Kysela) [1044022]
-- [alsa] hda: Use auto_mute_via_amp=1 for VT1708 (Jaroslav Kysela) [1044022]
-- [alsa] hda: Add auto_mute_via_amp flag to generic parser (Jaroslav Kysela) [1044022]
-- [alsa] vmaster: Add snd_ctl_sync_vmaster() helper function (Jaroslav Kysela) [1044022]
-- [alsa] hda: Remove unused variable (Jaroslav Kysela) [1044022]
-- [alsa] hda: reset hda link during system/runtime suspend (Jaroslav Kysela) [1044022]
-- [alsa] Add M2Tech hiFace USB-SPDIF driver (Jaroslav Kysela) [1044022]
-- [alsa] usb: uniform style used in MODULE_SUPPORTED_DEVICE() (Jaroslav Kysela) [1044022]
-- [alsa] snd-usb-6fire: use vmalloc buffers (Jaroslav Kysela) [1044022]
-- [alsa] snd-usb-caiaq: use vmalloc buffers (Jaroslav Kysela) [1044022]
-- [alsa] snd-usb-caiaq: remove the unused snd_card_used variable (Jaroslav Kysela) [1044022]
-- [alsa] hda: Make Thinkpad X220-tablet use generic parser (Jaroslav Kysela) [1044022]
-- [alsa] hda: Use snd_hda_check_power_state() in patch_hdmi.c (Jaroslav Kysela) [1044022]
-- [alsa] hda: Avoid choose same converter for unused pins (Jaroslav Kysela) [1044022]
-- [alsa] hda: Haswell converter power state D0 verify (Jaroslav Kysela) [1044022]
-- [alsa] ua101: convert __list_for_each usage to list_for_each (Jaroslav Kysela) [1044022]
-- [alsa] usx2y: remove some old dead code (Jaroslav Kysela) [1044022]
-- [alsa] hda: Don't take unresponsive D3 transition too serious (Jaroslav Kysela) [1044022]
-- [alsa] hda: Introduce bit flags to snd_hda_codec_read/write() (Jaroslav Kysela) [1044022]
-- [alsa] hda: Drop hard dependency on CONFIG_SND_DYNAMIC_MINORS (Jaroslav Kysela) [1044022]
-- [alsa] hda/via: Use standard snd_hda_shutup_pins() (Jaroslav Kysela) [1044022]
-- [alsa] hda: add mic fixup for ALC269VB on Ordissimo EVE2 (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Allow SingleSpeed WordClock when in DS/QS mode (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Refactor SS/DS/QS clock multiplier into function (Jaroslav Kysela) [1044022]
-- [alsa] hdspm: Add support for 128-192kHz WordClock input (Jaroslav Kysela) [1044022]
-- [alsa] es1968: Add radio support for MediaForte M56VAP (Jaroslav Kysela) [1044022]
-- [alsa] pci: Remove superfluous pci_set_drvdata(pci, NULL) at remove (Jaroslav Kysela) [1044022]
-- [alsa] hda: Enable mic-mute LED on more HP laptops (Jaroslav Kysela) [1044022]
-- [alsa] Add kconfig to specify the max card numbers (Jaroslav Kysela) [1044022]
-- [alsa] Fix the default suffix string with high card number (Jaroslav Kysela) [1044022]
-- [alsa] Constify the snd_pcm_substream struct ops field (Jaroslav Kysela) [1044022]
-- [alsa] hda: add PCI IDs for Intel BayTrail (Jaroslav Kysela) [1044022]
-- [alsa] Fix assignment of 0/1 to bool variables (Jaroslav Kysela) [1044022]
-
-* Tue Jan 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-78.el7]
-- [scsi] hpsa: remove cancelled ID's and add a new one (Tomas Henzl) [1040644]
-- [scsi] hpsa: bump driver version to 3.4.2-1 (Tomas Henzl) [1040644]
-- [scsi] hpsa: add 4 new PCI ID's for HP Gen9 servers (Tomas Henzl) [1040644]
-
-* Tue Jan 21 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-77.el7]
-- [s390] revert kvm support patches (Jarod Wilson) [1035261 1049469]
-- [block] nvme: Disable admin queue on init failure (David Milburn) [1049584]
-- [block] nvme: Dynamically allocate partition numbers (David Milburn) [1049584]
-- [block] nvme: Async IO queue deletion (David Milburn) [1049584]
-- [block] nvme: Surprise removal handling (David Milburn) [1049584]
-- [block] nvme: Abort timed out commands (David Milburn) [1049584]
-- [block] nvme: Schedule reset for failed controllers (David Milburn) [1049584]
-- [block] nvme: Device resume error handling (David Milburn) [1049584]
-- [block] nvme: Cache dev->pci_dev in a local pointer (David Milburn) [1049584]
-- [block] nvme: Fix lockdep warnings (David Milburn) [1049584]
-- [block] nvme: compat SG_IO ioctl (David Milburn) [1049584]
-- [block] nvme: remove deprecated IRQF_DISABLED (David Milburn) [1049584]
-- [block] nvme: Avoid shift operation when writing cq head doorbell (David Milburn) [1049584]
-- [block] nvme-core: replace dma_set_mask()+dma_set_coherent_mask() with new helper (David Milburn) [1049584]
-- [ethernet] be2net: update driver version to 10.0.x (Ivan Vecera) [1054092]
-- [ethernet] be2net: cleanup wake-on-lan code (Ivan Vecera) [1054092]
-- [ethernet] be2net: use GET_MAC_LIST cmd to query mac-address from a pmac-id (Ivan Vecera) [1054092]
-- [ethernet] be2net: do not use frag index in the RX-compl entry (Ivan Vecera) [1054092]
-- [ethernet] be2net: Remove "10Gbps" from driver description string (Ivan Vecera) [1054092]
-- [ethernet] be2net: fix incorrect setting of cmd_privileges for VFs (Ivan Vecera) [1054092]
-- [ethernet] be2net: ignore mac-addr set call for an already programmed mac-addr (Ivan Vecera) [1054092]
-- [ethernet] be2net: do not call be_set/get_fw_log_level() on Skyhawk-R (Ivan Vecera) [1054092]
-- [ethernet] be2net: Log the profile-id used by FW during driver initialization (Ivan Vecera) [1054092]
-- [ethernet] be2net: don't set "pport" field when querying "pvid" (Ivan Vecera) [1054092]
-- [ethernet] be2net: Use MCC_CREATE_EXT_V1 cmd for Skyhawk-R (Ivan Vecera) [1054092]
-- [infiniband] qib: Convert qib_user_sdma_pin_pages() to use get_user_pages_fast() (Jay Fenlason) [725023]
-- [infiniband] qib: Improve SDMA performance (Jay Fenlason) [725023]
-- [infiniband] qib: Fix txselect regression (Jay Fenlason) [725023]
-- [infiniband] qib: Fix checkpatch __packed warnings (Jay Fenlason) [725023]
-- [infiniband] qib: fix (some) dcache abuses (Jay Fenlason) [725023]
-- [infiniband] qib: Remove GENERIC_HARDIRQ config option (Jay Fenlason) [725023]
-- [infiniband] qib: Move COUNTER_MASK definition within qib_mad.h header guards (Jay Fenlason) [725023]
-- [infiniband] qib: Clean up unnecessary MSI/MSI-X capability find (Jay Fenlason) [725023]
-- [infiniband] qib: Make qib_driver static (Jay Fenlason) [725023]
-- [infiniband] qib: Add err_decode() call for ring dump (Jay Fenlason) [725023]
-- [infiniband] qib: Log all SDMA errors unconditionally (Jay Fenlason) [725023]
-- [infiniband] qib: Fix module-level leak (Jay Fenlason) [725023]
-- [infiniband] qib: New transmitter tunning settings for Dell 1.1 backplane (Jay Fenlason) [725023]
-- [infiniband] qib: Add qp_stats debug file (Jay Fenlason) [725023]
-- [infiniband] qib: Add per-context stats interface (Jay Fenlason) [725023]
-- [infiniband] qib: Convert opcode counters to per-context (Jay Fenlason) [725023]
-- [infiniband] qib: Optimize CQ callbacks (Jay Fenlason) [725023]
-- [infiniband] qib: Add dual-rail NUMA awareness for PSM processes (Jay Fenlason) [725023]
-- [infiniband] qib: Add optional NUMA affinity (Jay Fenlason) [725023]
-- [infiniband] qib: Update minor version number (Jay Fenlason) [725023]
-- [infiniband] qib: Remove atomic_inc_not_zero() from QP RCU (Jay Fenlason) [725023]
-- [infiniband] qib: Add DCA support (Jay Fenlason) [725023]
-- [infiniband] qib: avoid format string in dev_set_name (Jay Fenlason) [725023]
-- [tools] power/turbostat: Support Silvermont (Lenny Szubowicz) [1048051]
-- [ethernet] bnx2: Update version to 2.2.5 (Neil Horman) [1051172]
-- [ethernet] bnx2: Report MDI/MDIX status to ethtool (Neil Horman) [1051172]
-- [ethernet] bnx2: Enable auto-mdix when autoneg is disabled (Neil Horman) [1051172]
-- [ethernet] bnx2: Advertise nothing when speed is forced (Neil Horman) [1051172]
-- [ethernet] bnx2: calls skb_set_hash (Neil Horman) [1051172]
-- [ethernet] bnx2: remove unnecessary pci_set_drvdata() (Neil Horman) [1051172]
-- [ethernet] bnx2: Miscellaneous conversions to ETH_ALEN (Neil Horman) [1051172]
-- [kernel] thermal: Disable power limit notification interrupt by default (Prarit Bhargava) [1050198]
-- [kernel] thermal: Delete power-limit-notification console messages (Prarit Bhargava) [1050198]
-- [x86] mce: Fix mce_start_timer semantics (Prarit Bhargava) [1045845]
-- [x86] Add check for number of available vectors before CPU down (Prarit Bhargava) [1045845]
-- [ethernet] i40evf: fix s390 build failure due to implicit prefetch.h (Stefan Assmann) [1053147]
-- [ethernet] i40evf: A0 silicon specific (Stefan Assmann) [1053147]
-- [ethernet] i40evf: add driver to kernel build system (Stefan Assmann) [1053147]
-- [ethernet] i40evf: init code and hardware support (Stefan Assmann) [1053147]
-- [ethernet] i40evf: driver core headers (Stefan Assmann) [1053147]
-- [ethernet] i40evf: virtual channel interface (Stefan Assmann) [1053147]
-- [ethernet] i40evf: core ethtool functionality (Stefan Assmann) [1053147]
-- [ethernet] i40evf: transmit and receive functionality (Stefan Assmann) [1053147]
-- [ethernet] i40evf: main driver core (Stefan Assmann) [1053147]
-- [pci] Never treat a VF as a multifunction device (Alex Williamson) [1049716]
-
-* Fri Jan 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-76.el7]
-- [scsi] aacraid: kdump fix (Rich Bono) [1019091]
-- [scsi] lpfc: update version for 8.3.7.34.3p driver release (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed unassigned variable in ELS timeout message (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed incorrect allocation of iDiags directories/files in debugfs (Rob Evers) [1025854]
-- [scsi] lpfc: Fix kernel panics from corrupted ndlp list (Rob Evers) [1025854]
-- [scsi] lpfc: Fix Crash in lpfc_els_timeout_handler (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed stopped FCF discovery on failed FCF record read (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed IO hang when in msi mode (Rob Evers) [1025854]
-- [scsi] lpfc: Fix wrong assignment in lpfc_debugfs.c (Rob Evers) [1025854]
-- [scsi] lpfc: Fix typo on NULL assignment (Rob Evers) [1025854]
-- [scsi] lpfc: Update lpfc version for 8.3.7.34.1p driver release (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed not processing task management IOCB response status (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed spinlock hang (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed invalid Total_Data_Placed value received for els and ct command responses (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed invalid fcp_rsp length fir FCP_ICMND (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed invalid mailbox timeouts (Rob Evers) [1025854]
-- [scsi] lpfc: Fixed spinlock inversion problem (Rob Evers) [1025854]
-- [scsi] lpfc: Fix crash after xri limit is reached (Rob Evers) [1025854]
-- [scsi] lpfc: remove unnecessary read of PCI_CAP_ID_EXP (Rob Evers) [1025854]
-
-* Fri Jan 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-75.el7]
-- [kernel] audit: log task info on feature change (Richard Guy Briggs) [1050425]
-- [kernel] keys: correct alignment of system_certificate_list content in assembly file (Hendrik Brueckner) [1038139]
-- [kernel] system_certificate: use real contents instead of macro GLOBAL() (Hendrik Brueckner) [1038139]
-- [kernel] audit: don't generate audit feature changed log when audit disabled (Richard Guy Briggs) [1045668]
-- [kernel] audit: fix incorrect order of log new and old feature (Richard Guy Briggs) [1045668]
-- [kernel] selinux: apply selinux checks on new audit message types (Richard Guy Briggs) [1045668]
-- [kernel] audit: implement generic feature setting and retrieving (Richard Guy Briggs) [1045668]
-- [s390] smp: improve setup of possible cpu mask (Hendrik Brueckner) [1052906]
-- [iommu] intel-iommu: fix off-by-one in pagetable freeing (Myron Stowe) [1048955]
-- [mm] page_alloc: honor min_free_kbytes set by user (Steve Best) [1047779]
-- [kernel] mutex: Do not unnecessarily deal with waiters (Larry Woodman) [1031475]
-- [ethernet] tg3: Update version to 3.136 (Ivan Vecera) [1048557]
-- [ethernet] tg3: Poll cpmu link state on APE + ASF enabled devices (Ivan Vecera) [1048557]
-- [ethernet] tg3: Set the MAC clock to the fastest speed during boot code load (Ivan Vecera) [1048557]
-- [ethernet] tg3: Add unicast filtering support (Ivan Vecera) [1048557]
-- [ethernet] tg3: Refactor __tg3_set_mac_addr() (Ivan Vecera) [1048557]
-- [ethernet] tg3: Expand 4g_overflow_test workaround to skb fragments of any size (Ivan Vecera) [1048557]
-- [ethernet] tg3: Initialize REG_BASE_ADDR at PCI config offset 120 to 0 (Ivan Vecera) [1048557]
-- [ethernet] tg3: Update version to 3.135 (Ivan Vecera) [1048557]
-- [ethernet] tg3: Expand multicast drop counter miscounting fix to 5762 (Ivan Vecera) [1048557]
-- [ethernet] tg3: Fix bit definition for the nvram Auto Power Down setting (Ivan Vecera) [1048557]
-- [ethernet] tg3: Add flag to disable 1G Half Duplex advertisement (Ivan Vecera) [1048557]
-- [ethernet] tg3: Don't add rxbds_empty to rx_over_errors (Ivan Vecera) [1048557]
-- [ethernet] tg3: Give up chip reset and carrier loss handling if PCI device is not present (Ivan Vecera) [1048557]
-- [ethernet] tg3: Validate hwtstamp_config completely before applying it (Ivan Vecera) [1048557]
-- [ethernet] tg3: avoid double-freeing of rx data memory (Ivan Vecera) [1048557]
-- [ethernet] bnx2x: fix DMA unmapping of TSO split BDs (Michal Schmidt) [1043794]
-- [ethernet] bnx2x: fix VLAN configuration for VFs (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: fix AFEX memory overflow (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Clean before update RSS arrives (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Correct number of MSI-X vectors for VFs (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: limit number of interrupt vectors for 57711 (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix KR2 work-around detection of BCM8073 (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix incorrect link-up report (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix Duplex setting for 54618se (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix passive DAC cable detection (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix 578xx-KR 1G link (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Fix build with SRIOV disabled (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: add VF Multicast filters support (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Add num of VFs to Management statistics (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: no error when RSS configuration fails (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: add Big-Endian ethtool comment (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Add AER support (missing bits) (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Add support for Multi-Function UNDI (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: downgrade "valid ME register value" message level (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: cleanup skb_set_hash (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: calls skb_set_hash (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: avoid null pointer dereference when enabling SR-IOV (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: add TSO support for SIT tunnels (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: add TSO support for IPIP (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Prevent "timeout waiting for state X" (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: prevent CFC attention (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Prevent panic during DMAE timeout (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: Clean the sp rtnl task upon unload (Michal Schmidt) [1038666]
-- [ethernet] bnx2x: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Michal Schmidt) [1038666]
-- [misc] list: introduce list_next_entry() and list_prev_entry() (Michal Schmidt) [1038666]
-- [virt] kvm: fix apic_base enable check (Marcelo Tosatti) [1053143]
-- [virt] kvm: fix x86 emulation of "movzbl bpl, eax" (Marcelo Tosatti) [1053143]
-- [virt] kvm: limit PIT timer frequency (Marcelo Tosatti) [1053143]
-- [virt] kvm: fix tsc catchup issue with tsc scaling (Marcelo Tosatti) [1053143]
-- [virt] kvm: handle invalid root_hpa everywhere (Marcelo Tosatti) [1053143]
-- [virt] kvm/mmu: handle invalid root_hpa at __direct_map (Marcelo Tosatti) [1053143]
-- [virt] kvm/vmx: fix use after free of vmx->loaded_vmcs (Marcelo Tosatti) [1053143]
-- [virt] kvm: Fix APIC map calculation after re-enabling (Marcelo Tosatti) [1053143]
-- [virt] kvm: emulate SAHF instruction (Marcelo Tosatti) [1053143]
-- [virt] flags: Rename X86_EFLAGS_BIT1 to X86_EFLAGS_FIXED (Marcelo Tosatti) [1053143]
-- [virt] kvm: Mapping IOMMU pages after updating memslot (Marcelo Tosatti) [1053143]
-- [fs] aio: checking for NULL instead of IS_ERR (Motohiro Kosaki) [995323]
-
-* Fri Jan 17 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-74.el7]
-- [net] bridge: Fix memory leak when deleting bridge with vlan filtering enabled (Vlad Yasevich) [1031068]
-- [net] bridge: Call vlan_vid_del for all vids at nbp_vlan_flush (Vlad Yasevich) [1031068]
-- [net] bridge: Use vlan_vid_[add/del] instead of direct ndo_vlan_rx_[add/kill]_vid calls (Vlad Yasevich) [1031068]
-- [net] ipv6: add link-local, sit and loopback address with INFINITY_LIFE_TIME (Jiri Pirko) [1054095]
-- [net] ipv6: don't install anycast address for /128 addresses on routers (Jiri Pirko) [1054095]
-- [net] ipv6: addrconf: fix preferred lifetime state-changing behavior while valid_lft is infinity (Jiri Pirko) [1054095]
-- [net] ipv4: processing ancillary IP_TOS or IP_TTL (Francesco Fusco) [1054160]
-- [net] ipv4: IP_TOS and IP_TTL can be specified as ancillary data (Francesco Fusco) [1054160]
-- [net] netfilter: synproxy: correct wscale option passing (Jesper Brouer) [1054076]
-- [net] netfilter: synproxy: send mss option to backend (Jesper Brouer) [1054076]
-- [net] ipv6: addrconf: don't cleanup prefix route for IFA_F_NOPREFIXROUTE (Jiri Pirko) [1052884]
-- [net] ipv6: addrconf: add IFA_F_NOPREFIXROUTE flag to suppress creation of IP6 routes (Jiri Pirko) [1052884]
-- [net] ipv6: addrconf spelling fixes (Jiri Pirko) [1052884]
-- [net] ipv6: unneccessary to get address prefix in addrconf_get_prefix_route (Jiri Pirko) [1052884]
-- [net] bridge: apply multicast snooping to IPv6 link-local, too (Francesco Fusco) [1051501]
-- [net] bridge: prevent flooding IPv6 packets that do not have a listener (Francesco Fusco) [1051501]
-- [net] ipv6: don't call fib6_run_gc() until routing is ready (Florian Westphal) [1052111]
-- [net] ipv6: always set the new created dst's from in ip6_rt_copy (Neil Horman) [1050828]
-- [net] vxlan: Mark vxlan_dev flags with VXLAN_F_IPV6 properly (Thomas Graf) [1049141]
-- [net] netfilter: RHEL7 kABI prepare struct netns_ct (Jesper Brouer) [1030994]
-- [net] reorder struct netns_ct for better cache-line usage (Jesper Brouer) [1030994]
-- [net] ipv6: release dst properly in ipip6_tunnel_xmit (Michal Schmidt) [1038708]
-- [net] ipv6: sit: update mtu check to take care of gso packets (Michal Schmidt) [1038708]
-- [net] ipv6: sit: add GSO/TSO support (Michal Schmidt) [1038708]
-- [net] ipv6: gso: make ipv6_gso_segment() stackable (Michal Schmidt) [1038708]
-- [net] ipv6: wire up skb->encapsulation (Michal Schmidt) [1038708]
-- [net] ipip: add GSO/TSO support (Michal Schmidt) [1038708]
-- [net] inet: fix a UFO regression (Michal Schmidt) [1038708]
-- [net] inet: restore gso for vxlan (Michal Schmidt) [1038708]
-- [net] ipv4: gso: make inet_gso_segment() stackable (Michal Schmidt) [1038708]
-- [net] ipv4: gso: send_check() & segment() cleanups (Michal Schmidt) [1038708]
-- [net] generalize skb_segment() (Michal Schmidt) [1038708]
-- [net] ipv4: generalize gre_handle_offloads (Michal Schmidt) [1038708]
-
-* Thu Jan 16 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-73.el7]
-- [kernel] audit: audit_log_start running on auditd should not stop (Richard Guy Briggs) [1019895]
-- [kernel] audit: drop audit_cmd_lock in AUDIT_USER family of cases (Richard Guy Briggs) [1019895]
-- [security] smack: call WARN_ONCE() instead of calling audit_log_start() (Richard Guy Briggs) [1019895]
-- [security] selinux: call WARN_ONCE() instead of calling audit_log_start() (Richard Guy Briggs) [1019895]
-- [virt] vfio: Convert control interface to misc driver (Alex Williamson) [1044595]
-- [virt] vfio: Reserve minor for VFIO (Alex Williamson) [1044595]
-- [ethernet] qlcnic: Update version to 5.3.48.1 (Chad Dupuis) [1048773]
-- [ethernet] qlcnic: Fix bug in Tx completion path (Chad Dupuis) [1048773]
-- [ethernet] qlcnic: Fix usage of netif_tx_{wake, stop} api during link change (Chad Dupuis) [1048773]
-- [ethernet] qlcnic: Fix system hang while running traffic and bringing interface down (Chad Dupuis) [1048773]
-- [virt] hyperv/netvsc: don't flush peers notifying work during setting mtu (Jason Wang) [1040785 983434]
-- [virt] hyperv: Fix race between probe and open calls (Jason Wang) [983434]
-- [s390] kvm: mark as Tech Preview (Hendrik Brueckner) [1049469]
-- [x86] irq: Fix do_IRQ() interrupt warning for cpu hotplug retriggered irqs (Prarit Bhargava) [1052179]
-- [kernel] audit: log on errors from filter user rules (Richard Guy Briggs) [1034446]
-- [x86] uv: Add GRU distributed mode mappings (George Beshers) [1032365]
-- [iommu] dmar: Modify warn_invalid_dmar() message to do a less loud warning (Prarit Bhargava) [968249]
-- [dma] ioat: Modify ioat3_dca_init() message to do a less loud warning (Prarit Bhargava) [968235]
-
-* Wed Jan 15 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-72.el7]
-- [ethernet] sfc: fix sparse non static symbol warning (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fix RX drop filters for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add PTP counters to ethtool stats (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Changed the statistic name emerg_{fetch, wait} to hlb_{fetch, wait} (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: remove unused 'enum efx_rx_alloc_method' (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: remove unused 'refcnt' from efx_rx_page_state (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Implement efx_nic_type::filter_clear_rx operation for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Allow filter removal only with exactly matching priority (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Don't refer to 'stack' in filter implementation (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Change priority and flags for automatic MAC filters (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Change efx_nic_type::rx_push_indir_table to push hash key as well (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add more information to many warnings using WARN() and netdev_WARN() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Remove unnecessary condition for processing the TX timestamp queue (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Don't clear timestamps in efx_ptp_rx() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Enable PTP clock and timestamping for all functions on EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Associate primary and secondary functions of controller (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Store VPD serial number at probe time (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add RX packet timestamping for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Copy RX prefix into skb head area in efx_rx_mk_skb() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: split setup of hardware timestamping into NIC-type operation (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add support for SFC9100 timestamp format (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Tidy up PTP synchronization code (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: PTP - tidy up unused/useless variables (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Remove kernel-doc for efx_ptp_data fields not present in this version (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Initialise efx_ptp_data::phc_clock_info from a static template (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Do not use MAC address as clock name (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Store flags from MC_CMD_DRV_ATTACH for later use (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Remove dependency of PTP on having a dedicated channel (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Split PTP multicast filter insertion/removal out of efx_ptp_{start, stop}() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Return EBUSY for filter insertion on EF10, matching Falcon/Siena (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Expose NVRAM_PARTITION_TYPE_LICENSE on EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fold efx_flush_all() into efx_stop_port() and update comments (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Map MCDI error MC_CMD_ERR_ENOTSUP to Linux EOPNOTSUPP (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Log all unexpected MCDI errors (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add new sensor names (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Revise sensor names to be more understandable and consistent (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Report units in sensor warnings (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Correct RX dropped count for drops while interface is down (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Make initial fill of RX descriptors synchronous (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Tighten the check for RX merged completion events (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add MC BISTs to ethtool offline self test on EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Update MCDI protocol definitions (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Demote "MC Scheduler error" messages (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Poll for MCDI completion once before timeout occurs (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Refactor efx_mcdi_poll() by introducing efx_mcdi_poll_once() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: RX buffer allocation takes prefix size into account in IP header alignment (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Maintain current frequency adjustment when applying a time offset (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Stop/re-start PTP when stopping/starting the datapath (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Rate-limit log message for PTP packets without a matching timestamp event (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc/ptp: Moderate log message on event queue overflow (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add length checks to efx_xmit_with_hwtstamp() and efx_ptp_is_ptp_tx() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: remove unnecessary pci_set_drvdata() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Implement the SIOCGHWTSTAMP ioctl (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fix DMA unmapping issue with firmware assisted TSO (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Only bind to EF10 functions with the LinkCtrl and Trusted flags (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add PM and RXDP drop counters to ethtool stats (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add definitions for new stats counters and capability flag (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Refactor EF10 stat mask code to allow for more conditional stats (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fix internal indices of ethtool stats for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add rmb() between reading stats and generation count to ensure consistency (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Increase MCDI status timeout to 250ms (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Wait for MC reboot to complete before scheduling driver reset (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Remove extern from function prototypes (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Support ARFS for IPv6 flows (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Use TX PIO for sufficiently small packets (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Introduce inline functions to simplify TX insertion (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Separate out queue-empty check from efx_nic_may_push_tx_desc() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Allocate and link PIO buffers; map them with write-combining (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Implement firmware-assisted TSO for EF10 (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Fold tso_get_head_fragment() into tso_start() (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Add EF10 registers to register dump (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: efx_ef10_filter_update_rx_scatter() can be static (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: efx_ethtool_get_ts_info() can be static (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Reinitialise and re-validate datapath caps after MC reboot (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Clean up validation of datapath capabilities (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Reset derived rx_bad_bytes statistic when EF10 MC is rebooted (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Disable PTP on EF10 until we're ready to handle inline RX timestamps (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Minimal support for 40G link speed (Nikolay Aleksandrov) [1028038]
-- [net] net_tstamp: Add SIOCGHWTSTAMP ioctl to match SIOCSHWTSTAMP (Nikolay Aleksandrov) [1028038]
-- [net] socket: Merge multiple implementations of ifreq::ifr_data conversion (Nikolay Aleksandrov) [1028038]
-- [net] socket: Fix minor information leak in siocdevprivate_ioctl() (Nikolay Aleksandrov) [1028038]
-- [net] net_tstamp: Improve kernel-doc for struct hwtstamp_config (Nikolay Aleksandrov) [1028038]
-- [ethernet] sfc: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Nikolay Aleksandrov) [1028038]
-- [virt] virtio-net: fix refill races during restore (Jason Wang) [1040802]
-- [virt] virtio: delete napi structures from netdev before releasing memory (Jason Wang) [1040802]
-- [virt] virtio-net: make all RX paths handle errors consistently (Jason Wang) [1032457]
-- [virt] virtio_net: fix error handling for mergeable buffers (Jason Wang) [1032457]
-- [firmware] efi-pstore: Make efi-pstore return a unique id (Seiji Aguchi) [1039150]
-- [firmware] efivars, efi-pstore: Hold off deletion of sysfs entry until the scan is completed (Seiji Aguchi) [1039145]
-- [firmware] efi-pstore: Cocci spatch "memdup.spatch" (Seiji Aguchi) [1039145]
-- [virt] kvm/svm: nested virt support off by default (Marcelo Tosatti) [1034974]
-- [x86] uv: Fix NULL pointer dereference in uv_flush_tlb_others() (George Beshers) [1049559]
-- [fs] kill anon_inode_getfile_private() (Motohiro Kosaki) [995323]
-- [fs] rework aio migrate pages to use aio fs (Motohiro Kosaki) [995323]
-- [fs] take anon inode allocation to libfs.c (Motohiro Kosaki) [995323]
-- [fs] libfs: get exports to definitions of objects being exported (Motohiro Kosaki) [995323]
-- [fs] aio: fix use-after-free in aio_migratepage (Motohiro Kosaki) [995323]
-- [fs] aio: remove unnecessary debugging from aio_free_ring() (Motohiro Kosaki) [995323]
-- [fs] aio: fix race in ring buffer page lookup introduced by page migration support (Motohiro Kosaki) [995323]
-- [fs] aio: fix build when migration is disabled (Motohiro Kosaki) [995323]
-- [fs] aio: Add support to aio ring pages migration (Motohiro Kosaki) [995323]
-- [fs] anon_inode: Introduce a new lib function anon_inode_getfile_private() (Motohiro Kosaki) [995323]
-
-* Tue Jan 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-71.el7]
-- [md] dm-cache: add block sizes and total cache blocks to status output (Mike Snitzer) [1049591]
-- [md] dm-btree: add dm_btree_find_lowest_key (Mike Snitzer) [1049591]
-- [md] dm-space-map-metadata: fix extending the space map (Mike Snitzer) [1049591]
-- [md] dm-space-map-common: make sure new space is used during extend (Mike Snitzer) [1049591]
-- [md] dm: wait until embedded kobject is released before destroying a device (Mike Snitzer) [1049591]
-- [md] dm: remove pointless kobject comparison in dm_get_from_kobject (Mike Snitzer) [1049591]
-- [md] dm-snapshot: call destroy_work_on_stack() to pair with INIT_WORK_ONSTACK() (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: introduce three promotion threshold tunables (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: use list_del_init instead of list_del + INIT_LIST_HEAD (Mike Snitzer) [1049591]
-- [md] dm-thin: fix set_pool_mode exposed pool operation races (Mike Snitzer) [1049591]
-- [md] dm-thin: eliminate the no_free_space flag (Mike Snitzer) [1049591]
-- [md] dm-thin: add error_if_no_space feature (Mike Snitzer) [1049591]
-- [md] dm-thin: requeue bios to DM core if no_free_space and in read-only mode (Mike Snitzer) [1049591]
-- [md] dm-thin: cleanup and improve no space handling (Mike Snitzer) [1049591]
-- [md] dm-thin: log info when growing the data or metadata device (Mike Snitzer) [1049591]
-- [md] dm-thin: handle metadata failures more consistently (Mike Snitzer) [1049591]
-- [md] dm-thin: factor out check_low_water_mark and use bools (Mike Snitzer) [1049591]
-- [md] dm-thin: add mappings to end of prepared_* lists (Mike Snitzer) [1049591]
-- [md] dm-thin: return error from alloc_data_block if pool is not in write mode (Mike Snitzer) [1049591]
-- [md] dm-thin: use bool rather than unsigned for flags in structures (Mike Snitzer) [1049591]
-- [md] dm-persistent-data: cleanup dm-thin specific references in text (Mike Snitzer) [1049591]
-- [md] dm-space-map-metadata: limit errors in sm_metadata_new_block (Mike Snitzer) [1049591]
-- [md] dm-delay: use per-bio data instead of a mempool and slab cache (Mike Snitzer) [1049591]
-- [md] dm-table: remove unused buggy code that extends the targets array (Mike Snitzer) [1049591]
-- [md] dm-thin: fix discard support to a previously shared block (Mike Snitzer) [1049591]
-- [md] dm-thin: initialize dm_thin_new_mapping returned by get_next_mapping (Mike Snitzer) [1049591]
-- [md] dm-array: fix a reference counting bug in shadow_ablock (Mike Snitzer) [1049591]
-- [md] dm-space-map: disallow decrementing a reference count below zero (Mike Snitzer) [1049591]
-- [md] dm-stats: initialize read-only module parameter (Mike Snitzer) [1049591]
-- [md] dm-bufio: initialize read-only module parameters (Mike Snitzer) [1049591]
-- [md] dm-cache: actually resize cache (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: fix promotions to occur as expected (Mike Snitzer) [1049591]
-- [md] dm-thin: allow pool in read-only mode to transition to read-write mode (Mike Snitzer) [1049591]
-- [md] dm-thin: re-establish read-only state when switching to fail mode (Mike Snitzer) [1049591]
-- [md] dm-thin: always fallback the pool mode if commit fails (Mike Snitzer) [1049591]
-- [md] dm-thin: switch to read-only mode if metadata space is exhausted (Mike Snitzer) [1049591]
-- [md] dm-thin: switch to read only mode if a mapping insert fails (Mike Snitzer) [1049591]
-- [md] dm-space-map-metadata: return on failure in sm_metadata_new_block (Mike Snitzer) [1049591]
-- [md] dm-table: fail dm_table_create on dm_round_up overflow (Mike Snitzer) [1049591]
-- [md] dm-snapshot: avoid snapshot space leak on crash (Mike Snitzer) [1049591]
-- [md] dm-delay: fix a possible deadlock due to shared workqueue (Mike Snitzer) [1049591]
-- [md] dm-cache: resolve small nits and improve Documentation (Mike Snitzer) [1049591]
-- [md] dm-cache: add cache block invalidation support (Mike Snitzer) [1049591]
-- [md] dm-cache: add remove_cblock method to policy interface (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: reduce memory requirements (Mike Snitzer) [1049591]
-- [md] dm-cache-metadata: check the metadata version when reading the superblock (Mike Snitzer) [1049591]
-- [md] dm-cache: add passthrough mode (Mike Snitzer) [1049591]
-- [md] dm-cache: cache shrinking support (Mike Snitzer) [1049591]
-- [md] dm-cache: promotion optimisation for writes (Mike Snitzer) [1049591]
-- [md] dm-cache: be much more aggressive about promoting writes to discarded blocks (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: implement writeback_work() and mq_{set, clear}_dirty() (Mike Snitzer) [1049591]
-- [md] dm-cache: optimize commit_if_needed (Mike Snitzer) [1049591]
-- [md] dm-space-map-disk: optimise sm_disk_dec_block (Mike Snitzer) [1049591]
-- [md] dm: fix Kconfig menu indentation (Mike Snitzer) [1049591]
-- [md] dm: allow remove to be deferred (Mike Snitzer) [1049591]
-- [md] dm-table: print error on preresume failure (Mike Snitzer) [1049591]
-- [md] dm-crypt: add TCW IV mode for old CBC TCRYPT containers (Mike Snitzer) [1049591]
-- [md] dm-crypt: properly handle extra key string in initialization (Mike Snitzer) [1049591]
-- [md] dm-cache: log error message if dm_kcopyd_copy() fails (Mike Snitzer) [1049591]
-- [md] dm-cache: use cell_defer() boolean argument consistently (Mike Snitzer) [1049591]
-- [md] dm-cache: return -EINVAL if the user specifies unknown cache policy (Mike Snitzer) [1049591]
-- [md] dm-cache-metadata: return bool from __superblock_all_zeroes (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: a few small fixes (Mike Snitzer) [1049591]
-- [md] dm-cache-policy: remove return from void policy_remove_mapping (Mike Snitzer) [1049591]
-- [md] dm-cache: improve efficiency of quiescing flag management (Mike Snitzer) [1049591]
-- [md] dm-cache: fix a race condition between queuing new migrations and quiescing for a shutdown (Mike Snitzer) [1049591]
-- [md] dm-cache: io destined for the cache device can now serve as tick bios (Mike Snitzer) [1049591]
-- [md] dm-cache-policy-mq: protect residency method with existing mutex (Mike Snitzer) [1049591]
-- [md] dm-array: fix bug in growing array (Mike Snitzer) [1049591]
-- [md] dm-mpath: requeue I/O during pg_init (Mike Snitzer) [1049591]
-- [md] dm-mpath: fix race condition between multipath_dtr and pg_init_done (Mike Snitzer) [1049591]
-- [md] dm: allocate buffer for messages with small number of arguments using GFP_NOIO (Mike Snitzer) [1049591]
-- [ethernet] be2net: fix max_evt_qs calculation for BE3 in SR-IOV config (Ivan Vecera) [1049512]
-- [ethernet] be2net: increase the timeout value for loopback-test FW cmd (Ivan Vecera) [1049512]
-- [ethernet] be2net: disable RSS when number of RXQs is reduced to 1 via set-channels (Ivan Vecera) [1049512]
-- [ethernet] be2net: slight optimization of addr compare (Ivan Vecera) [1049512]
-- [ethernet] be2net: calls skb_set_hash (Ivan Vecera) [1049512]
-- [net] Add function to set the rxhash (Ivan Vecera) [1049512]
-- [ethernet] be2net: Free/delete pmacs (in be_clear()) only if they exist (Ivan Vecera) [1049512]
-- [ethernet] be2net: Fix Lancer error recovery to distinguish FW download (Ivan Vecera) [1049512]
-- [ethernet] be2net: Avoid programming permenant MAC by BE3-R VFs (Ivan Vecera) [1049512]
-- [ethernet] be2net: set coalesce-wm in CQ_CREATE_V2 cmd (Ivan Vecera) [1049512]
-- [ethernet] be2net: Disabling and enabling interrupts in suspend and resume (Ivan Vecera) [1049512]
-- [ethernet] be2net: Delete secondary unicast MAC addresses during be_close (Ivan Vecera) [1049512]
-- [ethernet] be2net: Fix unconditional enabling of Rx interface options (Ivan Vecera) [1049512]
-- [ethernet] be2net: replace dma_set_mask()+dma_set_coherent_mask() with new helper (Ivan Vecera) [1049512]
-
-* Tue Jan 14 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-70.el7]
-- [scsi] qla4xxx: v5.04.00.02.07.00-k0 (Chad Dupuis) [948116]
-- [scsi] qla4xxx: Add support for additional network parameters settings (Chad Dupuis) [1006152]
-- [scsi] qla4xxx: v5.04.00.01.07.00-k0 (Chad Dupuis) [1006152]
-- [scsi] qla4xxx: Add support to get CHAP details for flash target session (Chad Dupuis) [1006152]
-- [scsi] qla4xxx: Add support to set CHAP entries (Chad Dupuis) [1006152]
-- [scsi] qla4xxx: Use offset based on adapter type to set CHAP entry in flash (Chad Dupuis) [1006152]
-- [scsi] iscsi_transport: Additional parameters for network settings (Chad Dupuis) [948116]
-- [scsi] iscsi_transport: Remove net param enum values (Chad Dupuis) [948116]
-- [scsi] scsi_transport_iscsi: Add support to set CHAP entries (Chad Dupuis) [1006152]
-- [scsi] Update documentation for scsi eh patchset (Ewan Milne) [987784]
-- [scsi] Set the minimum valid value of 'eh_deadline' as 0 (Ewan Milne) [987784]
-- [scsi] Unlock accesses to eh_deadline (Ewan Milne) [987784]
-- [scsi] improved eh timeout handler (Ewan Milne) [987784]
-- [scsi] Fix erratic device offline during EH (Ewan Milne) [987784]
-- [scsi] scsi_error: Escalate to LUN reset if abort fails (Ewan Milne) [987784]
-- [scsi] Adjust eh_deadline changes to match final upstream version (Ewan Milne) [987784]
-- [scsi] Disable WRITE SAME for RAID and virtual host adapter drivers (Ewan Milne) [1010379]
-- [scsi] pm80xx: Removing redundant code snippets (Rich Bono) [1044113]
-- [scsi] pm80xx: Tasklets synchronization fix (Rich Bono) [1044113]
-- [scsi] pm8001: clean up unnecessary MSI/MSI-X capability find (Rich Bono) [1044113]
-- [scsi] pm8001: use pdev->pm_cap instead of pci_find_capability(.., PCI_CAP_ID_PM) (Rich Bono) [1044113]
-- [scsi] pm80xx: Module author addition (Rich Bono) [1044113]
-- [scsi] pm80xx: Resetting the phy state (Rich Bono) [1044113]
-- [scsi] pm80xx: Fix for direct attached device (Rich Bono) [1044113]
-- [net] cnic: Add a signature to indicate valid doorbell offset (Maurizio Lombardi) [1051181]
-- [scsi] bfa: Driver version upgrade to 3.2.23.0 (Vijay Guvva) [1032723]
-- [scsi] bfa: Fix smatch warnings (Vijay Guvva) [1032723]
-- [scsi] bfa: change FC_ELS_TOV to 20sec (Vijay Guvva) [1032723]
-- [scsi] bfa: Observed auto D-port mode instead of manual (Vijay Guvva) [1032723]
-- [scsi] bfa: Fix for bcu or hcm faa query hang (Vijay Guvva) [1032723]
-- [scsi] bfa: LUN discovery issue in direct attach mode (Vijay Guvva) [1032723]
-- [scsi] bfa: Register port with SCSI even on port init failure (Vijay Guvva) [1032723]
-- [scsi] bfa: Firmware patch simplification (Vijay Guvva) [1032723]
-- [ethernet] bna: Fix build due to missing use of dma_unmap_len_set() (Ivan Vecera) [1030679]
-- [ethernet] bna: Update the Driver Version to 3.2.23.0 (Ivan Vecera) [1030679]
-- [ethernet] bna: Firmware Patch Simplification (Ivan Vecera) [1030679]
-- [ethernet] bna: Embed SKB Length in TX Vector (Ivan Vecera) [1030679]
-- [ethernet] bna: Handle the TX Setup Failures (Ivan Vecera) [1030679]
-- [ethernet] bna: Add NULL Check Before Dereferencing TCB (Ivan Vecera) [1030679]
-- [ethernet] bna: CQ Read Fix (Ivan Vecera) [1030679]
-- [ethernet] bna: RX Processing and Config Changes (Ivan Vecera) [1030679]
-- [ethernet] bna: Enable Multi Buffer RX (Ivan Vecera) [1030679]
-- [ethernet] bna: RX Filter Enhancements (Ivan Vecera) [1030679]
-- [ethernet] bna: Fix Filter Add Del (Ivan Vecera) [1030679]
-- [ethernet] bna: Set Get IOC fw State (Ivan Vecera) [1030679]
-- [ethernet] bna: Add software timestamping support (Ivan Vecera) [1030679]
-- [ethernet] bna: make local variable static (Ivan Vecera) [1030679]
-- [ethernet] bna: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1030679]
-- [ethernet] bna: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1030679]
-- [ethernet] bna: Remove extern from function prototypes (Ivan Vecera) [1030679]
-- [ethernet] bna: fix 32-bit DMA mask handling (Ivan Vecera) [1030679]
-- [kernel] dma-api: provide a helper to set both DMA and coherent DMA masks (Ivan Vecera) [1030679]
-
-* Mon Jan 13 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-69.el7]
-- [firmware] efi: generalize efi_get_memory_map() (George Beshers) [973417]
-- [firmware] efi: Rename __get_map() to efi_get_memory_map() (George Beshers) [973417]
-- [x86] EFI stub support for large memory maps (George Beshers) [973417]
-- [x86] efi: Allow efi_free() to be called with size of 0 (George Beshers) [973417]
-- [x86] efi: use efi_get_memory_map() to get final map for x86 (George Beshers) [973417]
-- [x86] efi: Rename memory allocation/free functions (George Beshers) [973417]
-- [x86] efi: Add system table pointer argument to shared functions (George Beshers) [973417]
-- [x86] efi: Move common EFI stub code from x86 arch code to common location (George Beshers) [973417]
-- [x86] efi: Add proper definitions for some EFI function pointers (George Beshers) [973417]
-- [x86] efi: correct call to free_pages (George Beshers) [973417]
-- [ethernet] i40e: correctly setup ARQ descriptors (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove redundant AQ enable (Stefan Assmann) [1011561]
-- [ethernet] i40e: Enable/Disable PF switch LB on SR-IOV configure changes (Stefan Assmann) [1011561]
-- [ethernet] i40e: whitespace paren and comment tweaks (Stefan Assmann) [1011561]
-- [ethernet] i40e: rework shadow ram read functions (Stefan Assmann) [1011561]
-- [ethernet] i40e: check MAC type before any REG access (Stefan Assmann) [1011561]
-- [ethernet] i40e: move PF ID init from PF reset to SC init (Stefan Assmann) [1011561]
-- [ethernet] i40e: Reduce range of interrupt reg in reg test (Stefan Assmann) [1011561]
-- [ethernet] i40e: update firmware api to 1.1 (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add code to wait for FW to complete in reset path (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1011561]
-- [ethernet] i40e: Allow VF to set already assigned MAC address (Stefan Assmann) [1011561]
-- [ethernet] i40e: Stop accepting any VLAN tag on VLAN 0 filter set (Stefan Assmann) [1011561]
-- [ethernet] i40e: Do not enable broadcast promiscuous by default (Stefan Assmann) [1011561]
-- [ethernet] i40e: Expose AQ debugfs hooks (Stefan Assmann) [1011561]
-- [ethernet] i40e: Do not allow AQ calls from ndo-ops (Stefan Assmann) [1011561]
-- [ethernet] i40e: check asq alive before notify (Stefan Assmann) [1011561]
-- [ethernet] i40e: Admin queue shutdown fixes (Stefan Assmann) [1011561]
-- [ethernet] i40e: Hide the Port VLAN VLAN ID (Stefan Assmann) [1011561]
-- [ethernet] i40e: use correct struct for get and update vsi params (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix VF driver MAC address configuration (Stefan Assmann) [1011561]
-- [ethernet] i40e: support VFs on PFs other than 0 (Stefan Assmann) [1011561]
-- [ethernet] i40e: acknowledge VFLR when disabling SR-IOV (Stefan Assmann) [1011561]
-- [ethernet] i40e: don't allocate zero size (Stefan Assmann) [1011561]
-- [ethernet] i40e: use struct assign instead of memcpy (Stefan Assmann) [1011561]
-- [ethernet] i40e: Do not enable default port on the VEB (Stefan Assmann) [1011561]
-- [ethernet] i40e: avoid unnecessary register read (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix whitespace (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix SR-IOV VF port VLAN (Stefan Assmann) [1011561]
-- [ethernet] i40e: Record dma buffer info for dummy packets (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove un-necessary io-write (Stefan Assmann) [1011561]
-- [ethernet] i40e: Remove unnecessary prototypes (Stefan Assmann) [1011561]
-- [ethernet] i40e: I40E_FLAG_MQ_ENABLED is not used (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix ring allocation (Stefan Assmann) [1011561]
-- [ethernet] i40e: catch unset q_vector (Stefan Assmann) [1011561]
-- [ethernet] i40e: keep allocated memory in structs (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix error handling when alloc of vsi array fails (Stefan Assmann) [1011561]
-- [ethernet] i40e: reinit buffer size each time (Stefan Assmann) [1011561]
-- [ethernet] i40e: use functions to enable and disable icr 0 (Stefan Assmann) [1011561]
-- [ethernet] i40e: add header file flag _I40E_TXRX_H_ (Stefan Assmann) [1011561]
-- [ethernet] i40e: guard against vf message races (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix constant cast issues (Stefan Assmann) [1011561]
-- [ethernet] i40e: Change the ethtool NVM read method to use AQ (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix mac address checking (Stefan Assmann) [1011561]
-- [ethernet] i40e: Dump the whole NVM, not half (Stefan Assmann) [1011561]
-- [ethernet] i40e: report VF MAC addresses correctly (Stefan Assmann) [1011561]
-- [ethernet] i40e: update led set args (Stefan Assmann) [1011561]
-- [ethernet] i40e: make a define from a large constant (Stefan Assmann) [1011561]
-- [ethernet] i40e: be more informative (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix error return (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove chatty log messages (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove redundant code (Stefan Assmann) [1011561]
-- [ethernet] i40e: refactor VF reset flow (Stefan Assmann) [1011561]
-- [ethernet] i40e: move i40e_reset_vf (Stefan Assmann) [1011561]
-- [ethernet] i40e: Rx checksum offload for VXLAN (Stefan Assmann) [1011561]
-- [ethernet] i40e: Implementation of VXLAN ndo's (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix curly brace use and return type (Stefan Assmann) [1011561]
-- [ethernet] i40e: add wake-on-lan support (Stefan Assmann) [1011561]
-- [ethernet] i40e: Populate and check pci bus speed and width (Stefan Assmann) [1011561]
-- [uapi] pci_regs: Add PCI bus link speed and width defines (Stefan Assmann) [1011561]
-- [ethernet] i40e: Suppress HMC error to Interrupt message level (Stefan Assmann) [1011561]
-- [ethernet] i40e: using for_each_set_bit to simplify the code (Stefan Assmann) [1011561]
-- [ethernet] i40e: make functions static and remove dead code (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix off by one in i40e_dbg_command_write (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version number (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix wrong mask bits being used in misc interrupt (Stefan Assmann) [1011561]
-- [ethernet] i40e: more print_hex_dump use (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix up scanf decoders (Stefan Assmann) [1011561]
-- [ethernet] i40e: simplify error messages for dump descriptor (Stefan Assmann) [1011561]
-- [ethernet] i40e: prevent null pointer exception in dump descriptor (Stefan Assmann) [1011561]
-- [ethernet] i40e: Fix dump output from debugfs calls (Stefan Assmann) [1011561]
-- [ethernet] i40e: Remove FCoE in i40e_virtchnl_pf.c code (Stefan Assmann) [1011561]
-- [ethernet] i40e: support for suspend and resume (Stefan Assmann) [1011561]
-- [ethernet] i40e: rtnl_lock in reset path fixes (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add basic support for get/set channels for RSS (Stefan Assmann) [1011561]
-- [ethernet] i40e: function to reconfigure RSS queues and rebuild (Stefan Assmann) [1011561]
-- [ethernet] i40e: reinit flow for the main VSI (Stefan Assmann) [1011561]
-- [ethernet] i40e: use same number of queues as CPUs (Stefan Assmann) [1011561]
-- [ethernet] i40e: trivial fixes (Stefan Assmann) [1011561]
-- [ethernet] i40e: init flow control settings to disabled (Stefan Assmann) [1011561]
-- [ethernet] i40e: Tell the stack about our actual number of queues (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix pf reset after offline test (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix up some of the ethtool connection reporting (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix null dereference (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version number (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove and fix confusing define name (Stefan Assmann) [1011561]
-- [ethernet] i40e: complain about out-of-range descriptor request (Stefan Assmann) [1011561]
-- [ethernet] i40e: loopback info and set loopback fix (Stefan Assmann) [1011561]
-- [ethernet] i40e: restrict diag test messages (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add a new variable to track number of pf instances (Stefan Assmann) [1011561]
-- [ethernet] i40e: add num_VFs message (Stefan Assmann) [1011561]
-- [ethernet] i40e: refactor ethtool tests (Stefan Assmann) [1011561]
-- [ethernet] i40e: clear test state bit after all ethtool tests (Stefan Assmann) [1011561]
-- [ethernet] i40e: only set up the rings to be used (Stefan Assmann) [1011561]
-- [ethernet] i40e: Enable all PCTYPEs except FCOE for RSS (Stefan Assmann) [1011561]
-- [ethernet] i40e: refactor reset code (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1011561]
-- [ethernet] i40e: whitespace (Stefan Assmann) [1011561]
-- [ethernet] i40e: enable early hardware support (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add flag for L2 VEB filtering (Stefan Assmann) [1011561]
-- [ethernet] i40e: get media type during link info (Stefan Assmann) [1011561]
-- [ethernet] i40e: check multi-bit state correctly (Stefan Assmann) [1011561]
-- [ethernet] i40e: separate TSYNVALID and TSYNINDX fields in Rx descriptor (Stefan Assmann) [1011561]
-- [ethernet] i40e: sync header files with hardware (Stefan Assmann) [1011561]
-- [ethernet] i40e: restrict diag test length (Stefan Assmann) [1011561]
-- [ethernet] i40e: add support for triggering EMPR (Stefan Assmann) [1011561]
-- [ethernet] i40e: add interrupt test (Stefan Assmann) [1011561]
-- [ethernet] i40e: default debug mask setting (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix debugging messages (Stefan Assmann) [1011561]
-- [ethernet] i40e: properly add VF MAC addresses (Stefan Assmann) [1011561]
-- [ethernet] i40e: retry call on timeout (Stefan Assmann) [1011561]
-- [ethernet] i40e: select reset counters correctly (Stefan Assmann) [1011561]
-- [ethernet] i40e: allow one more vector for VFs (Stefan Assmann) [1011561]
-- [ethernet] i40e: firmware version fields offsets update (Stefan Assmann) [1011561]
-- [ethernet] i40e: simplify aq head-tail-len setups (Stefan Assmann) [1011561]
-- [ethernet] i40e: clear AQ head and tail registers (Stefan Assmann) [1011561]
-- [ethernet] i40e: register file updates (Stefan Assmann) [1011561]
-- [ethernet] i40e: set pf_id based on device and function numbers (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix error return code in i40e_probe() (Stefan Assmann) [1011561]
-- [ethernet] i40e: remove unused including <linux/version.h> (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1011561]
-- [ethernet] i40e: use pf_id for pf function id in qtx_ctl (Stefan Assmann) [1011561]
-- [ethernet] i40e: check vsi ptrs before dumping them (Stefan Assmann) [1011561]
-- [ethernet] i40e: reorder block declarations in debugfs (Stefan Assmann) [1011561]
-- [ethernet] i40e: tweaking icr0 handling for legacy irq (Stefan Assmann) [1011561]
-- [ethernet] i40e: refactor fdir setup function (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix sign extension issue (Stefan Assmann) [1011561]
-- [ethernet] i40e: fix use of untrusted scalar value warning (Stefan Assmann) [1011561]
-- [ethernet] i40e: clamp debugfs nvm read command (Stefan Assmann) [1011561]
-- [ethernet] i40e: debugfs fixups (Stefan Assmann) [1011561]
-- [ethernet] i40e: fixup legacy interrupt handling (Stefan Assmann) [1011561]
-- [ethernet] i40e: assign correct vector to VF (Stefan Assmann) [1011561]
-- [ethernet] i40e: don't free nonexistent rings (Stefan Assmann) [1011561]
-- [ethernet] i40e: do not flush after re-enabling interrupts (Stefan Assmann) [1011561]
-- [ethernet] i40e: Bump version (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add support for 64 bit netstats (Stefan Assmann) [1011561]
-- [ethernet] i40e: Move rings from pointer to array to array of pointers (Stefan Assmann) [1011561]
-- [ethernet] i40e: Replace ring container array with linked list (Stefan Assmann) [1011561]
-- [ethernet] i40e: Move q_vectors from pointer to array to array of pointers (Stefan Assmann) [1011561]
-- [ethernet] i40e: Split bytes and packets from Rx/Tx stats (Stefan Assmann) [1011561]
-- [ethernet] i40e: Add support for Tx byte queue limits (Stefan Assmann) [1011561]
-- [ethernet] i40e: Drop dead code and flags from Tx hotpath (Stefan Assmann) [1011561]
-- [ethernet] i40e: clean up Tx fast path (Stefan Assmann) [1011561]
-- [ethernet] i40e: Do not directly increment Tx next_to_use (Stefan Assmann) [1011561]
-- [ethernet] i40e: Cleanup Tx buffer info layout (Stefan Assmann) [1011561]
-- [ethernet] i40e: Drop unused completed stat (Stefan Assmann) [1011561]
-- [ethernet] i40e: Link code updates (Stefan Assmann) [1011561]
-- [ethernet] i40e: clean up coccicheck reported errors (Stefan Assmann) [1011561]
-- [ethernet] i40e: better return values (Stefan Assmann) [1011561]
-- [ethernet] i40e: convert ret to aq_ret (Stefan Assmann) [1011561]
-- [ethernet] i40e: small clean ups from review (Stefan Assmann) [1011561]
-- [ethernet] i40e: use common failure flow (Stefan Assmann) [1011561]
-- [net] sunrpc/rpc_pipe: fix cleanup of dummy gssd directory when notification fails (Jeff Layton) [1048105]
-- [net] sunrpc: add an "info" file for the dummy gssd pipe (Jeff Layton) [1048105]
-- [net] sunrpc/rpc_pipe: remove the clntXX dir if creating the pipe fails (Jeff Layton) [1048105]
-- [fs] nfs: fix do_div() warning by instead using sector_div() (Steve Dickson) [769365]
-- [misc] MAINTAINERS: Update contact information for Trond Myklebust (Steve Dickson) [769365]
-- [fs] nfs: Prevent a 3-way deadlock between layoutreturn, open and state recovery (Steve Dickson) [769365]
-- [net] sunrpc: do not fail gss proc NULL calls with EACCES (Steve Dickson) [769365]
-- [fs] nfs: close needs to handle NFS4ERR_ADMIN_REVOKED (Steve Dickson) [769365]
-- [fs] nfs: Update list of irrecoverable errors on DELEGRETURN (Steve Dickson) [769365]
-- [fs] nfs: wait on recovery for async session errors (Steve Dickson) [769365]
-- [fs] nfs: Fix a warning in nfs_setsecurity (Steve Dickson) [769365]
-- [fs] nfs: Enabling v4.2 should not recompile nfsd and lockd (Steve Dickson) [769365]
-- [fs] nfs: fix pnfs Kconfig defaults (Steve Dickson) [769365]
-- [fs] nfs: correctly report misuse of "migration" mount option (Steve Dickson) [769365]
-- [ethernet] igb: fix driver reload with VF assigned to guest (Stefan Assmann) [986817]
-- [net] sunrpc: Cleanup xs_destroy() (Steve Dickson) [769365]
-- [net] sunrpc: close a rare race in xs_tcp_setup_socket (Steve Dickson) [769365]
-- [net] sunrpc: remove duplicated include from clnt.c (Steve Dickson) [769365]
-- [fs] nfs: use IS_ROOT not DCACHE_DISCONNECTED (Steve Dickson) [769365]
-- [net] sunrpc: Fix buffer overflow checking in gss_encode_v0_msg/gss_encode_v1_msg (Steve Dickson) [769365]
-- [net] sunrpc: gss_alloc_msg - choose _either_ a v0 message or a v1 message (Steve Dickson) [769365]
-- [net] sunrpc: remove an unnecessary if statement (Steve Dickson) [769365]
-- [fs] nfs: Remove useless 'error' assignment (Steve Dickson) [769365]
-- [net] sunrpc: comment typo fix (Steve Dickson) [769365]
-- [net] sunrpc: Add correct rcu_dereference annotation in rpc_clnt_set_transport (Steve Dickson) [769365]
-- [fs] nfs: add support for multiple sec= mount options (Steve Dickson) [769365]
-- [fs] nfs: stop using NFS_MOUNT_SECFLAVOUR server flag (Steve Dickson) [769365]
-- [fs] nfs: cache parsed auth_info in nfs_server (Steve Dickson) [769365]
-- [fs] nfs: separate passed security flavs from selected (Steve Dickson) [769365]
-- [fs] nfs: make nfs_find_best_sec static (Steve Dickson) [769365]
-- [fs] nfs: Fix possible endless state recovery wait (Steve Dickson) [769365]
-- [fs] nfs: Set EXCHGID4_FLAG_SUPP_MOVED_MIGR (Steve Dickson) [769365]
-- [fs] nfs: Handle SEQ4_STATUS_LEASE_MOVED (Steve Dickson) [769365]
-- [fs] nfs: Handle NFS4ERR_LEASE_MOVED during async RENEW (Steve Dickson) [769365]
-- [fs] nfs: Migration support for RELEASE_LOCKOWNER (Steve Dickson) [769365]
-- [fs] nfs: Implement support for NFS4ERR_LEASE_MOVED (Steve Dickson) [769365]
-- [fs] nfs: Support NFS4ERR_LEASE_MOVED recovery in state manager (Steve Dickson) [769365]
-- [fs] nfs: Add method to detect whether an FSID is still on the server (Steve Dickson) [769365]
-- [fs] nfs: Handle NFS4ERR_MOVED during delegation recall (Steve Dickson) [769365]
-- [fs] nfs: Add migration recovery callouts in nfs4proc.c (Steve Dickson) [769365]
-- [fs] nfs: Rename "stateid_invalid" label (Steve Dickson) [769365]
-- [fs] nfs: Re-use exit code in nfs4_async_handle_error() (Steve Dickson) [769365]
-- [fs] nfs: Add basic migration support to state manager thread (Steve Dickson) [769365]
-- [fs] nfs: Add a super_block backpointer to the nfs_server struct (Steve Dickson) [769365]
-- [fs] nfs: Add method to retrieve fs_locations during migration recovery (Steve Dickson) [769365]
-- [fs] nfs: Export _nfs_display_fhandle() (Steve Dickson) [769365]
-- [fs] nfs: Introduce a vector of migration recovery ops (Steve Dickson) [769365]
-- [fs] nfs: Add functions to swap transports during migration recovery (Steve Dickson) [769365]
-- [fs] nfs: Add nfs4_update_server (Steve Dickson) [769365]
-- [net] sunrpc: Add a helper to switch the transport of an rpc_clnt (Steve Dickson) [769365]
-- [net] sunrpc: Modify synopsis of rpc_client_register() (Steve Dickson) [769365]
-- [fs] nfs: don't reprocess cached open CLAIM_PREVIOUS (Steve Dickson) [769365]
-- [fs] nfs: Fix state reference counting in _nfs4_opendata_reclaim_to_nfs4_state (Steve Dickson) [769365]
-- [fs] nfs: don't fail on missing fattr in open recover (Steve Dickson) [769365]
-- [fs] nfs: fix NULL dereference in open recover (Steve Dickson) [769365]
-- [fs] nfs: Don't change the security label as part of open reclaim (Steve Dickson) [769365]
-- [fs] nfs: Remove zeroing state kern warnings (Steve Dickson) [769365]
-- [net] sunrpc: call_connect_status should recheck bind and connect status on error (Steve Dickson) [769365]
-- [net] sunrpc: Remove redundant initialisations of request rq_bytes_sent (Steve Dickson) [769365]
-- [net] sunrpc: Fix RPC call retransmission statistics (Steve Dickson) [769365]
-- [fs] nfs: Ensure that we disable the resend timeout for NFSv4 (Steve Dickson) [769365]
-- [net] sunrpc: Add RPC task and client level options to disable the resend timeout (Steve Dickson) [769365]
-- [net] sunrpc: Clean up - convert xprt_prepare_transmit to return a bool (Steve Dickson) [769365]
-- [net] sunrpc: Clear the request rq_bytes_sent field in xprt_release_write (Steve Dickson) [769365]
-- [net] sunrpc: Don't set the request connect_cookie until a successful transmit (Steve Dickson) [769365]
-- [net] sunrpc: Only update the TCP connect cookie on a successful connect (Steve Dickson) [769365]
-- [net] sunrpc: Enable the keepalive option for TCP sockets (Steve Dickson) [769365]
-- [fs] nfs: Fix a use-after-free situation in _nfs4_proc_getlk() (Steve Dickson) [769365]
-- [wireless] iwlwifi: enable shadow registers for 7000 (Stanislaw Gruszka) [1016320]
-- [wireless] iwlwifi: support BSS only (Stanislaw Gruszka) [1016320]
-- [fs] gfs2: Increase i_writecount during gfs2_setattr_chown (Robert S Peterson) [1049045]
-- [mm] thp: give transparent hugepage code a separate copy_page (Rik van Riel) [1044367]
-- [kernel] time: menu governor broken when nohz=off (George Beshers) [1043652]
-- [s390] perf: fix compile error (undefined reference sie_exit) (Hendrik Brueckner) [1035261]
-- [s390] mm: page_table_realloc returns failure (Hendrik Brueckner) [1035261]
-- [virt] virtio-net: Set RXCSUM feature if GUEST_CSUM is available (Hendrik Brueckner) [1035261]
-- [s390] kvm: Add helper function for setting condition code (Hendrik Brueckner) [1035261]
-- [s390] kvm: Make KVM_HVA_ERR_BAD usable on s390 (Hendrik Brueckner) [1035261]
-- [s390] kvm: use cookies for ioeventfd (Hendrik Brueckner) [1035261]
-- [s390] kvm/kvm-io: support cookies (Hendrik Brueckner) [1035261]
-- [s390] kvm: fix pfmf non-quiescing control handling (Hendrik Brueckner) [1035261]
-- [s390] kvm: Fix sparse warnings in priv.c (Hendrik Brueckner) [1035261]
-- [s390] kvm: declare virtual HW facilities (Hendrik Brueckner) [1035261]
-- [s390] kvm: fix task size check (Hendrik Brueckner) [1035261]
-- [s390] kvm: allow sie enablement for multi-threaded programs (Hendrik Brueckner) [1035261]
-- [s390] qeth: Increase default MTU for OSA devices (Hendrik Brueckner) [1035261]
-- [s390] kvm: Fixed priority of execution in STSI (Hendrik Brueckner) [1035261]
-- [s390] kvm: Reworked LCTL and LCTLG instructions (Hendrik Brueckner) [1035261]
-- [s390] kvm: Check for access exceptions during TPI (Hendrik Brueckner) [1035261]
-- [s390] kvm: Check for PSTATE when handling DIAGNOSE (Hendrik Brueckner) [1035261]
-- [s390] kvm: Privileged operation checks moved to instruction handlers (Hendrik Brueckner) [1035261]
-- [s390] kvm: Privileged operation check for TPROT (Hendrik Brueckner) [1035261]
-- [s390] kvm: Renamed PGM_PRIVILEGED_OPERATION (Hendrik Brueckner) [1035261]
-- [s390] kvm: Fix epsw instruction decoding (Hendrik Brueckner) [1035261]
-- [s390] kvm: Use common waitqueue (Hendrik Brueckner) [1035261]
-- [s390] kvm: code cleanup to use common vcpu slab cache (Hendrik Brueckner) [1035261]
-- [s390] kvm: Detect if perf samples belong to KVM host or guest (Hendrik Brueckner) [1035261]
-- [s390] kvm: guest large pages (Hendrik Brueckner) [1035261]
-- [s390] kvm: avoid automatic sie reentry (Hendrik Brueckner) [1035261]
-- [s390] kvm: Kick guests out of sie if prefix page host pte is touched (Hendrik Brueckner) [1035261]
-- [s390] kvm: Provide a way to prevent reentering SIE (Hendrik Brueckner) [1035261]
-- [s390] kvm: Mark if a cpu is in SIE (Hendrik Brueckner) [1035261]
-- [s390] kvm: rename RCP_xxx defines to PGSTE_xxx (Hendrik Brueckner) [1035261]
-- [s390] kvm: fix psw rewinding in handle_skey (Hendrik Brueckner) [1035261]
-- [s390] kvm: Provide function for setting the guest storage key (Hendrik Brueckner) [1035261]
-- [s390] facility: decompose test_facility() (Hendrik Brueckner) [1035261]
-
-* Mon Jan 13 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-68.el7]
-- [kernel] perf: Account freq events globally (Jeremy Eder) [1025775]
-- [kernel] perf: Roll back callchain buffer refcount under the callchain mutex (Jeremy Eder) [1025775]
-- [kernel] watchdog: Make it work under full dynticks (Jeremy Eder) [1025775]
-- [kernel] watchdog: Boot-disable by default on full dynticks (Jeremy Eder) [1025775]
-- [kernel] watchdog: Rename confusing state variable (Jeremy Eder) [1025775]
-- [kernel] watchdog: Register / unregister watchdog kthreads on sysctl control (Jeremy Eder) [1025775]
-- [kernel] perf: Implement finer grained full dynticks kick (Jeremy Eder) [1025775]
-- [kernel] perf: Account freq events per cpu (Jeremy Eder) [1025775]
-- [kernel] perf: Migrate per cpu event accounting (Jeremy Eder) [1025775]
-- [kernel] perf: Split the per-cpu accounting part of the event accounting code (Jeremy Eder) [1025775]
-- [kernel] perf: Factor out event accounting code to account_event()/__free_event() (Jeremy Eder) [1025775]
-- [kernel] perf: Sanitize get_callchain_buffer() (Jeremy Eder) [1025775]
-- [kernel] perf: Fix branch stack refcount leak on callchain init failure (Jeremy Eder) [1025775]
-- [tools] perf/test: Update command line callchain attribute tests (Jiri Olsa) [1036665]
-- [tools] perf: Fixup mmap event consumption (Jiri Olsa) [1036665]
-- [tools] perf/top: Split -G and --call-graph (Jiri Olsa) [1036665]
-- [tools] perf/record: Split -g and --call-graph (Jiri Olsa) [1036665]
-- [tools] perf/hists: Add color overhead for stdio output buffer (Jiri Olsa) [1036665]
-- [tools] perf: Fix up /proc/PID/maps parsing (Jiri Olsa) [1036665]
-- [tools] perf/script: Fix mem leak due to missing Py_DECREFs on dict entries (Jiri Olsa) [1036665]
-- [tools] perf: Disable PERF_RECORD_MMAP2 support (Jiri Olsa) [1036665]
-- [tools] perf/scripting/perl: Fix build error on Fedora 12 (Jiri Olsa) [1036665]
-- [tools] perf/probe: Fix to initialize fname always before use it (Jiri Olsa) [1036665]
-- [tools] perf/session: Fix infinite loop on invalid perf.data file (Jiri Olsa) [1036665]
-- [tools] perf: Fix installation of libexec components (Jiri Olsa) [1036665]
-- [tools] perf/probe: Fix to find line information for probe list (Jiri Olsa) [1036665]
-- [tools] perf: Fix libaudit test (Jiri Olsa) [1036665]
-- [tools] perf/stat: Set child_pid after perf_evlist__prepare_workload() (Jiri Olsa) [1036665]
-- [tools] perf: Add default handler for mmap2 events (Jiri Olsa) [1036665]
-- [tools] perf/symbols: Demangle cloned functions (Jiri Olsa) [1036665]
-- [tools] perf/machine: Fix path unpopulated in machine__create_modules() (Jiri Olsa) [1036665]
-- [tools] perf: Explicitly add libdl dependency (Jiri Olsa) [1036665]
-- [tools] perf/probe: Fix probing symbols with optimization suffix (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add mmap2 handler (Jiri Olsa) [1036665]
-- [tools] perf/kmem: Make it work again on non NUMA machines (Jiri Olsa) [1036665]
-- [tools] perf: Fix capabilities bitfield compatibility in 'struct perf_event_mmap_page' (Jiri Olsa) [1036665]
-- [tools] perf: Fix old GCC build error in trace-event-parse.c:parse_proc_kallsyms() (Jiri Olsa) [1036665]
-- [tools] perf/probe: Fix finder to find lines of given function (Jiri Olsa) [1036665]
-- [tools] perf/session: Check for SIGINT in more loops (Jiri Olsa) [1036665]
-- [tools] perf: Fix compile with libelf without get_phdrnum (Jiri Olsa) [1036665]
-- [tools] perf: Fix buildid cache handling of kallsyms with kcore (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Fix objdump line parsing offset validation (Jiri Olsa) [1036665]
-- [tools] perf: Fill in new definitions for madvise()/mmap() flags (Jiri Olsa) [1036665]
-- [tools] perf: Sharpen the libaudit dependencies test (Jiri Olsa) [1036665]
-- [tools] perf: Add attr->mmap2 support (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Fix sample_type manipulation (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Fix id pos in perf_evlist__open() (Jiri Olsa) [1036665]
-- [tools] perf/trace: Handle perf.data files with no tracepoints (Jiri Olsa) [1036665]
-- [tools] perf/session: Separate progress bar update when processing events (Jiri Olsa) [1036665]
-- [tools] perf/trace: Check if MAP_32BIT is defined (Jiri Olsa) [1036665]
-- [tools] perf/hists: Fix formatting of long symbol names (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Fix parsing with no sample_id_all bit set (Jiri Olsa) [1036665]
-- [tools] perf: Add test for parsing with no sample_id_all bit (Jiri Olsa) [1036665]
-- [tools] perf/trace: Check control+C more often (Jiri Olsa) [1036665]
-- [tools] perf/trace: Tell arg formatters the arg index (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for open's flags arg (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for lseek's whence arg (Jiri Olsa) [1036665]
-- [tools] perf: Fix symbol offset computation for some dsos (Jiri Olsa) [1036665]
-- [tools] perf/list: Skip unsupported events (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add 'keep tracking' test (Jiri Olsa) [1036665]
-- [tools] perf: Add support for PERF_COUNT_SW_DUMMY (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for futex 'operation' parm (Jiri Olsa) [1036665]
-- [tools] perf/trace: Allow syscall arg formatters to mask args (Jiri Olsa) [1036665]
-- [tools] perf/trace: Handle missing HUGEPAGE defines (Jiri Olsa) [1036665]
-- [tools] perf/trace: Honor target pid / tid options when analyzing a file (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add option to analyze events in a file versus live (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Add tracepoint lookup by name (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add a sample parsing test (Jiri Olsa) [1036665]
-- [tools] perf: Add a function to calculate sample event size (Jiri Olsa) [1036665]
-- [tools] perf: Expand perf_event__synthesize_sample() (Jiri Olsa) [1036665]
-- [tools] perf: Add missing 'abi' member to 'struct regs_dump' (Jiri Olsa) [1036665]
-- [tools] perf: Add support for PERF_SAMPLE_IDENTIFIER (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Move perf_evlist__config() to a new source file (Jiri Olsa) [1036665]
-- [tools] perf: Remove references to struct ip_event (Jiri Olsa) [1036665]
-- [tools] perf/callchain: Remove unnecessary validation (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Tidy up sample parsing overflow checking (Jiri Olsa) [1036665]
-- [tools] perf: change machine__findnew_thread() to set thread pid (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Fixup jobserver setup (Jiri Olsa) [1036665]
-- [tools] perf: Add pid to struct thread (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for madvise behaviour/advice parm (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for mmap flags parm (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add beautifier for mmap prot parm (Jiri Olsa) [1036665]
-- [tools] perf/trace: Allow overiding the formatting of syscall fields (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add aliases to remaining syscalls of the sys_enter_newfoo (Jiri Olsa) [1036665]
-- [tools] perf/trace: Allow printing syscall return values in hex (Jiri Olsa) [1036665]
-- [tools] perf/trace: Simplify sys_exit return printing (Jiri Olsa) [1036665]
-- [tools] perf/trace: Introduce syscall arg formatters (Jiri Olsa) [1036665]
-- [tools] perf/trace: Hide sys_exit messages about syscall id = -1 (Jiri Olsa) [1036665]
-- [tools] perf/trace: Add --verbose option (Jiri Olsa) [1036665]
-- [tools] perf/trace: Support ! in -e expressions (Jiri Olsa) [1036665]
-- [tools] perf: Don't install scripting files files when disabled (Jiri Olsa) [1036665]
-- [tools] perf: Sample after exit loses thread correlation (Jiri Olsa) [1036665]
-- [tools] perf/trace: Make command line arguments consistent with perf-record (Jiri Olsa) [1036665]
-- [tools] perf/trace: Implement -o/--output filename (Jiri Olsa) [1036665]
-- [tools] perf: Add debug prints (Jiri Olsa) [1036665]
-- [tools] perf: Re-implement debug print function for linking python/perf.so (Jiri Olsa) [1036665]
-- [tools] perf: Try to increase the file descriptor limits on EMFILE (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Remove force option to cmd_record (Jiri Olsa) [1036665]
-- [tools] perf/trace: Allow specifying which syscalls to trace (Jiri Olsa) [1036665]
-- [tools] perf: Improve robustness of topology parsing code (Jiri Olsa) [1036665]
-- [tools] perf/tests: Fix compile failure on do_sort_something (Jiri Olsa) [1036665]
-- [tools] perf: Remove filter parameter of thread__find_addr_map() (Jiri Olsa) [1036665]
-- [tools] perf: Remove filter parameter of thread__find_addr_location() (Jiri Olsa) [1036665]
-- [tools] perf: Remove filter parameter of perf_event__preprocess_sample() (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Set the machines symbol filter (Jiri Olsa) [1036665]
-- [tools] perf/mem: Remove unused symbol filter member (Jiri Olsa) [1036665]
-- [tools] perf/report: Set the machines symbol filter (Jiri Olsa) [1036665]
-- [tools] perf/top: Set the machines symbol filter (Jiri Olsa) [1036665]
-- [tools] perf/machine: Add symbol filter to struct machine (Jiri Olsa) [1036665]
-- [tools] perf/session: Change perf_session__has_traces to actually check for tracepoints (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Add option to limit stack depth in callchain dumps (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Add option to print stack trace on single line (Jiri Olsa) [1036665]
-- [tools] perf/tool: Simplify options to perf_evsel__print_ip (Jiri Olsa) [1036665]
-- [tools] perf/sched: Remove sched_process_fork tracepoint (Jiri Olsa) [1036665]
-- [tools] perf/sched: Remove sched_process_exit tracepoint (Jiri Olsa) [1036665]
-- [tools] perf/sched: Remove thread lookup in sample handler (Jiri Olsa) [1036665]
-- [tools] perf/sched: Simplify arguments to read_events (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Update documentation with live command (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Option to print events that exceed a duration (Jiri Olsa) [1036665]
-- [tools] perf/machine: Do not require /lib/modules/* on a guest (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add tests of new pinned modifier (Jiri Olsa) [1036665]
-- [tools] perf: Add support for pinned modifier (Jiri Olsa) [1036665]
-- [tools] perf/ui/gtk: Fix segmentation fault on perf_hpp__for_each_format loop (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Add option to analyze specific VM (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Add min and max stats to display (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Add live mode (Jiri Olsa) [1036665]
-- [tools] perf/session: Export queue_event function (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Fix typo (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Improve description of '?' hotkey (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Add call target name if it is missing (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Remove nop at end of annotation (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Put dso name in symbol annotation title (Jiri Olsa) [1036665]
-- [tools] perf/annotate: Allow disassembly using /proc/kcore (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add kcore to the object code reading test (Jiri Olsa) [1036665]
-- [tools] perf/tests: Adjust the vmlinux symtab matches kallsyms test again (Jiri Olsa) [1036665]
-- [tools] perf/symbols: Add support for reading from /proc/kcore (Jiri Olsa) [1036665]
-- [tools] perf: Make it possible to read object code from kernel modules (Jiri Olsa) [1036665]
-- [tools] perf/tests: Adjust the vmlinux symtab matches kallsyms test (Jiri Olsa) [1036665]
-- [tools] perf: Make it possible to read object code from vmlinux (Jiri Olsa) [1036665]
-- [tools] perf/symbols: Load kernel maps before using (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add test for reading object code (Jiri Olsa) [1036665]
-- [tools] perf/symbols: avoid SyS kernel syscall aliases (Jiri Olsa) [1036665]
-- [tools] perf/stat: Flush output after each line in interval mode (Jiri Olsa) [1036665]
-- [tools] perf/stat: Add support for --initial-delay option (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Add support for enabling counters (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Remove obsolete dummy execve (Jiri Olsa) [1036665]
-- [tools] perf/kvm: Split out tracepoints from record args (Jiri Olsa) [1036665]
-- [tools] perf/session: Export a few functions for event processing (Jiri Olsa) [1036665]
-- [tools] perf/stats: Add max and min stats (Jiri Olsa) [1036665]
-- [tools] perf/top: move CONSOLE_CLEAR to header file (Jiri Olsa) [1036665]
-- [tools] perf/util: Add parse_nsec_time() function (Jiri Olsa) [1036665]
-- [tools] perf/python: Remove duplicate TID bit from mask (Jiri Olsa) [1036665]
-- [tools] perf/trace: Beautify 'connect' result (Jiri Olsa) [1036665]
-- [tools] perf: Fix compile of util/tsc.c (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Actually show symbol offset in stack trace when requested (Jiri Olsa) [1036665]
-- [tools] perf: Add test for converting perf time to/from TSC (Jiri Olsa) [1036665]
-- [tools] perf: Move weight back to common sort keys (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add broken install-* tests into tests/make (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add 'make install/install-bin' tests into tests/make (Jiri Olsa) [1036665]
-- [tools] perf/tests: Add DESTDIR=TMP_DEST tests/make variable (Jiri Olsa) [1036665]
-- [tools] perf/tests: Rename TMP to TMP_O tests/make variable (Jiri Olsa) [1036665]
-- [tools] perf/tests: Run ctags/cscope make tests only with needed binaries (Jiri Olsa) [1036665]
-- [tools] perf: Fix build with perl 5.18 (Jiri Olsa) [1036665]
-- [tools] perf: Support callchain sorting based on addresses (Jiri Olsa) [1036665]
-- [tools] perf/bench: Fix memcpy benchmark for large sizes (Jiri Olsa) [1036665]
-- [tools] perf/evsel: Handle ENODEV on default cycles event (Jiri Olsa) [1036665]
-- [tools] perf/script: Fix named threads support (Jiri Olsa) [1036665]
-- [tools] perf/header: Recognize version number for perf data file (Jiri Olsa) [1036665]
-- [tools] perf/header: Introduce feat_offset into perf_header (Jiri Olsa) [1036665]
-- [tools] perf/header: Remove attr_offset from perf_header (Jiri Olsa) [1036665]
-- [tools] perf/header: Remove data_offset seek as it's not needed (Jiri Olsa) [1036665]
-- [tools] perf/session: Use session->fd instead of passing fd as argument (Jiri Olsa) [1036665]
-- [tools] perf/symbols: Do not apply symfs for an absolute vmlinux path (Jiri Olsa) [1036665]
-- [tools] perf: Fix 'make tools/perf' (Jiri Olsa) [1036665]
-- [tools] perf: Remove event types framework completely (Jiri Olsa) [1036665]
-- [tools] perf/record: Remove event types pushing (Jiri Olsa) [1036665]
-- [tools] perf: Remove event types from perf data file (Jiri Olsa) [1036665]
-- [tools] perf/timechart: Remove event types framework only user (Jiri Olsa) [1036665]
-- [tools] perf/timechart: Use traceevent lib event-parse.h include (Jiri Olsa) [1036665]
-- [tools] perf: Move hist_entry__period_snprintf into stdio code (Jiri Olsa) [1036665]
-- [tools] perf/report/top: Add option to collapse undesired parts of call graph (Jiri Olsa) [1036665]
-- [tools] perf/list: List kernel supplied event aliases (Jiri Olsa) [1036665]
-- [tools] perf: Default to cpu// for events v5 (Jiri Olsa) [1036665]
-- [tools] perf: struct thread has a tid not a pid (Jiri Olsa) [1036665]
-- [tools] perf: Validate perf event header size (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Tidy duplicated munmap code (Jiri Olsa) [1036665]
-- [tools] perf: Add const specifier to perf_pmu__find name parameter (Jiri Olsa) [1036665]
-- [tools] perf/inject: Add missing 'finished_round' (Jiri Olsa) [1036665]
-- [tools] perf: Fix missing tool parameter (Jiri Olsa) [1036665]
-- [tools] perf/inject: Remove unused parameter (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Set rules hint for the hist browser (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Add a double-click handler for callchains (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Make column headers resizable (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Display callchain overhead also (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Add support for callchains (Jiri Olsa) [1036665]
-- [tools] perf/gtk/hists: Use GtkTreeStore instead of GtkListStore (Jiri Olsa) [1036665]
-- [tools] perf/sched: Move struct perf_sched definition out of cmd_sched() (Jiri Olsa) [1036665]
-- [tools] perf/util: Remove unused enum and macro in trace-event.h (Jiri Olsa) [1036665]
-- [tools] perf/util: No need to call read_trace_init() in tracing_data_header() (Jiri Olsa) [1036665]
-- [tools] perf/util: Rename read_*() functions in trace-event-info.c (Jiri Olsa) [1036665]
-- [tools] perf/script: Adopt latency_format variable (Jiri Olsa) [1036665]
-- [tools] perf/util: Get rid of unused header_page_* variables (Jiri Olsa) [1036665]
-- [tools] perf/util: Parse header_page to get proper long size (Jiri Olsa) [1036665]
-- [tools] perf/util: Skip reading header_event file (Jiri Olsa) [1036665]
-- [tools] perf/util: Make file/host_bigendian variable local (Jiri Olsa) [1036665]
-- [tools] perf/util: Save long size of traced system (Jiri Olsa) [1036665]
-- [tools] perf/util: Save page size in a trace file to pevent (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Port kbuffer parser routines (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Add page_size field to pevent (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Add trace_seq_reset() (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Add const qualifier to string arguments (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Get rid of unused gui target (Jiri Olsa) [1036665]
-- [tools] lib/traceevent: Remove unused install targets (Jiri Olsa) [1036665]
-- [tools] perf/parse events: Demystify memory allocations (Jiri Olsa) [1036665]
-- [tools] perf/tests: Make terms a stack variable in test_term (Jiri Olsa) [1036665]
-- [tools] perf: Don't free list head in parse_events__free_terms (Jiri Olsa) [1036665]
-- [tools] perf/evlist: Fix use of uninitialized variable (Jiri Olsa) [1036665]
-- [tools] perf/report: Fix perf_session__delete removal (Jiri Olsa) [1036665]
-- [tools] perf: Do not elide parent symbol column (Jiri Olsa) [1036665]
-- [tools] perf/util: Use evsel->name to get tracepoint_paths (Jiri Olsa) [1036665]
-- [tools] perf/util: Move debugfs/tracing helper functions to util.c (Jiri Olsa) [1036665]
-- [tools] perf: Remove callchain_cursor_reset call (Jiri Olsa) [1036665]
-- [tools] perf: Add methods for setting/retrieving priv element of thread struct (Jiri Olsa) [1036665]
-- [tools] perf: Use default include path notation for libtraceevent headers (Jiri Olsa) [1036665]
-- [tools] perf/tests: Make TEST_ASSERT_VAL global (Jiri Olsa) [1036665]
-- [tools] perf: Remove cwd from perf_session struct (Jiri Olsa) [1036665]
-- [tools] perf/top: Add --objdump option (Jiri Olsa) [1036665]
-- [tools] perf: Rename cpu_map__all() to cpu_map__empty() (Jiri Olsa) [1036665]
-- [tools] perf: Update ABI comment (Jiri Olsa) [1036665]
-- [tools] perf: Fix UAPI export of PERF_EVENT_IOC_ID (Jiri Olsa) [1036665]
-- [tools] perf: Add a dummy software event to keep tracking (Jiri Olsa) [1036665]
-- [tools] perf: Fix up MMAP2 buffer space reservation (Jiri Olsa) [1036665]
-- [tools] perf: Add attr->mmap2 attribute to an event (Jiri Olsa) [1036665]
-- [tools] perf: make events stream always parsable (Jiri Olsa) [1036665]
-- [tools] perf/x86: Add ability to calculate TSC from perf sample timestamps (Jiri Olsa) [1036665]
-- [tools] perf: Fix broken union in 'struct perf_event_mmap_page' (Jiri Olsa) [1036665]
-- [tools] perf: Update perf_event_type documentation (Jiri Olsa) [1036665]
-- [tools] perf: Remove the 'match' callback for auxiliary events processing (Jiri Olsa) [1036665]
-- [edac] amd64_edac: Correct erratum 505 range (Kim Naru) [1013820]
-- [edac] mce_amd: Add an MCE signature for new Fam15h models (Kim Naru) [1013820]
-- [edac] amd64_edac: Fix incorrect wraparounds (Kim Naru) [1013820]
-- [edac] amd64_edac: Get rid of boot_cpu_data accesses (Kim Naru) [1013820]
-- [edac] amd64_edac: Add ECC decoding support for newer F15h model (Kim Naru) [1013820]
-- [block] blk-mq: Don't reserve a tag for flush request (Mike Snitzer) [1048301]
-- [lib] percpu_ida: fix a live lock (Mike Snitzer) [1048301]
-- [net] ipv4: loopback device: ignore value changes after device is upped (Jiri Pirko) [1040347]
-- [net] netfilter: only warn once on wrong seqadj usage (Jesper Brouer) [1031968]
-- [net] ipvs: correct usage/allocation of seqadj ext in ipvs (Jesper Brouer) [1031968]
-- [net] netfilter: WARN about wrong usage of sequence number adjustments (Jesper Brouer) [1031968]
-- [net] vxlan: use custom ndo_change_mtu handler (Daniel Borkmann) [1039848]
-- [net] Loosen constraints for recalculating checksum in skb_segment() (Vlad Yasevich) [1042762]
-- [net] core: convert class code to use dev_groups (Jiri Benc) [1037452]
-- [net] ptp: convert class code to use dev_groups (Jiri Benc) [1037452]
-
-* Tue Jan 07 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-67.el7]
-- [s390] time, vdso: fix clock_gettime for CLOCK_MONOTONIC (Hendrik Brueckner) [1036677]
-- [s390] vdso: ectg gettime support for CLOCK_THREAD_CPUTIME_ID (Hendrik Brueckner) [1036677]
-- [s390] vdso: fix access-list entry initialization (Hendrik Brueckner) [1036677]
-- [s390] time, vdso: convert to the new update_vsyscall interface (Hendrik Brueckner) [1036677]
-
-* Mon Jan 06 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-66.el7]
-- [net] netfilter: fix wrong byte order in nf_ct_seqadj_set internal information (Jesper Brouer) [1045360]
-- [net] br: fix use of ->rx_handler_data in code executed on non-rx_handler path (Jiri Pirko) [1039118]
-- [net] openvswitch: Use flow hash during flow lookup operation (Francesco Fusco) [1043536]
-- [net] openvswitch: TCP flags matching support (Francesco Fusco) [1043536]
-- [net] openvswitch: Widen TCP flags handling (Francesco Fusco) [1043536]
-- [net] openvswitch: Enable all GSO features on internal port (Francesco Fusco) [1043536]
-- [net] openvswitch: collect mega flow mask stats (Francesco Fusco) [1043536]
-- [net] openvswitch: Simplify mega-flow APIs (Francesco Fusco) [1043536]
-- [net] openvswitch: Move mega-flow list out of rehashing struct (Francesco Fusco) [1043536]
-- [net] openvswitch: Restructure datapath.c and flow.c (Francesco Fusco) [1043536]
-- [net] openvswitch: remove duplicated include from vport-gre.c (Francesco Fusco) [1043536]
-- [net] openvswitch: remove duplicated include from vport-vxlan.c (Francesco Fusco) [1043536]
-- [net] openvswitch: Move flow table rehashing to flow install (Francesco Fusco) [1043536]
-- [net] openvswitch: flow: fix potential illegal memory access in __parse_flow_nlattrs (Francesco Fusco) [1043536]
-- [net] openvswitch: Fix alignment of struct sw_flow_key (Francesco Fusco) [1043536]
-- [net] add BUG_ON if kernel advertises msg_namelen > sizeof(struct sockaddr_storage) (Florian Westphal) [1039870] {CVE-2013-7266 CVE-2013-7267 CVE-2013-7268 CVE-2013-7269 CVE-2013-7270 CVE-2013-7271}
-- [net] rework recvmsg handler msg_name and msg_namelen logic (Florian Westphal) [1039870] {CVE-2013-7266 CVE-2013-7267 CVE-2013-7268 CVE-2013-7269 CVE-2013-7270 CVE-2013-7271}
-- [acpi] acpi_gpio: protect against future KABI breakage (Prarit Bhargava) [1037769]
-- [acpi] processor: Introduce apic_id in struct processor to save parsed APIC id (Prarit Bhargava) [1037769]
-- [edac] sb_edac: add support for Ivy Bridge (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: avoid decoding the same error multiple times (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: rename mci_bind_devs() (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: enable multiple PCI id tables to be used (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: rework sad_pkg (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: allow different interleave lists (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: allow different dram_rule arrays (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: isolate TOHM retrieval (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: rename pci_br (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: isolate TOLM retrieval (Aristeu Rozanski) [1029153]
-- [edac] sb_edac: make RANK_CFG_A value part of sbridge_info (Aristeu Rozanski) [1029153]
-- [s390] time: revert direct ktime path for s390 clockevent device (Hendrik Brueckner) [1036682]
-- [security] keys: fix uninitialized persistent_keyring_register_sem (Steve Best) [1030472]
-- [sched] idle: Fix the idle polling state logic (Jeremy Eder) [1038152]
-- [misc] enclosure: fix WARN_ON in dual path device removing (Steve Best) [1030291]
-- [security] keys: Pre-clear struct key on allocation (David Howells) [1032980]
-- [powerpc] eeh: Use interruptible sleep in keehd (Steve Best) [1044378]
-
-* Thu Jan 02 2014 Jarod Wilson <jarod@redhat.com> [3.10.0-65.el7]
-- [md] fix calculation of stacking limits on level change (Jes Sorensen) [1033479]
-- [x86] better solution for x86 single cpu support check (Prarit Bhargava) [1032604]
-- [kernel] sched: Fix asymmetric scheduling for POWER7 (Steve Best) [1032796]
-- [fs] writeback: Fix data corruption on NFS (Jeff Layton) [1042112]
-- [fs] writeback: do not sync data dirtied after sync start (Jeff Layton) [1042112]
-- [fs] writeback: fix race that cause writeback hung (Jeff Layton) [1042112]
-- [fs] writeback: make writeback_inodes_wb static (Jeff Layton) [1042112]
-- [fs] writeback: fix occasional slow sync(1) (Jeff Layton) [1042112]
-- [fs] writeback: don't check force_wait to handle bdi->work_list (Jeff Layton) [1042112]
-- [fs] fs-writeback: make wb_do_writeback() as static (Jeff Layton) [1042112]
-- [fs] writeback: Do not sort b_io list only because of block device inode (Jeff Layton) [1042112]
-- [fs] sync: don't block the flusher thread waiting on IO (Jeff Layton) [1042112]
-- [security] selinux: process labeled IPsec TCP SYN-ACK packets properly in selinux_ip_postroute() (Paul Moore) [1040183]
-- [security] selinux: look for IPsec labels on both inbound and outbound packets (Paul Moore) [1040183]
-- [security] selinux: handle TCP SYN-ACK packets correctly in selinux_ip_postroute() (Paul Moore) [1040183]
-- [security] selinux: handle TCP SYN-ACK packets correctly in selinux_ip_output() (Paul Moore) [1040183]
-- [s390] signal: always restore saved runtime instrumentation psw bit (Hendrik Brueckner) [1029884]
-- [s390] fix handling of runtime instrumentation psw bit (Hendrik Brueckner) [1029884]
-- [platform] asus-nb-wmi: set wapf=4 for ASUSTeK COMPUTER INC. 1015E/U (Prarit Bhargava) [1043248]
-- [platform] asus-nb-wmi: ignore ALS notification key code (Prarit Bhargava) [1043248]
-- [fs] gfs2: Fix slab memory leak in gfs2_bufdata (Robert S Peterson) [1038123]
-- [fs] gfs2: Fix use-after-free race when calling gfs2_remove_from_ail (Robert S Peterson) [1038123]
-- [virt] kvm: fix guest-initiated crash with x2apic (Andrew Jones) [1042101] {CVE-2013-6376}
-- [drm] qxl: fix memory leak in release list handling (Dave Airlie) [1035564]
-- [scsi] ipr: Increase msi-x interrupt vectors to 16 (Steve Best) [1038501]
-
-* Tue Dec 17 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-64.el7]
-- [powerpc] powernv: Don't crash if there are no OPAL consoles (Steve Best) [1033086]
-- [powerpc] powernv: Reserve the correct PE number (Steve Best) [1033086]
-- [powerpc] powernv: Add PE to its own PELTV (Steve Best) [1033086]
-- [powerpc] eeh: Output PHB3 diag-data (Steve Best) [1033086]
-- [powerpc] powernv: Double size of log blob (Steve Best) [1033086]
-- [powerpc] eeh: Output error number (Steve Best) [1033086]
-- [powerpc] powernv: Support inbound error injection (Steve Best) [1033086]
-- [powerpc] powernv: Enable EEH for PHB3 (Steve Best) [1033086]
-- [powerpc] eeh: Fix undefined variable (Steve Best) [1033086]
-- [powerpc] pci: Remove duplicate check in pcibios_fixup_bus() (Steve Best) [1033086]
-- [powerpc] powernv: Needn't IO segment map for PHB3 (Steve Best) [1033086]
-- [powerpc] powernv: Check primary PHB through ID (Steve Best) [1033086]
-- [powerpc] powernv: Fetch PHB bus range from dev-tree (Steve Best) [1033086]
-- [powerpc] powernv: Free PHB instance upon error (Steve Best) [1033086]
-- [powerpc] eeh: Introdce flag to protect sysfs (Steve Best) [1033086]
-- [powerpc] eeh: Fix unbalanced enable for IRQ (Steve Best) [1033086]
-- [powerpc] eeh: Don't use pci_dev during BAR restore (Steve Best) [1033086]
-- [powerpc] eeh: Use partial hotplug for EEH unaware drivers (Steve Best) [1033086]
-- [powerpc] pci: Partial tree hotplug support (Steve Best) [1033086]
-- [powerpc] eeh: Use safe list traversal when walking EEH devices (Steve Best) [1033086]
-- [powerpc] eeh: Keep PE during hotplug (Steve Best) [1033086]
-- [pci] hotplug: Don't need to remove from EEH cache twice (Steve Best) [1033086]
-- [powerpc] pci: Override pcibios_release_device() (Steve Best) [1033086]
-- [powerpc] eeh: Export functions for hotplug (Steve Best) [1033086]
-- [powerpc] eeh: Remove reference to PCI device (Steve Best) [1033086]
-- [powerpc] powernv: Use dev-node in PCI config accessors (Steve Best) [1033086]
-- [powerpc] eeh: Avoid build warnings (Steve Best) [1033086]
-- [powerpc] eeh: Refactor the output message (Steve Best) [1033086]
-- [powerpc] eeh: Fix address catch for PowerNV (Steve Best) [1033086]
-- [powerpc] powernv: Replace variables with flags (Steve Best) [1033086]
-- [powerpc] eeh: Check PCIe link after reset (Steve Best) [1033086]
-- [powerpc] eeh: Don't collect PCI-CFG data on PHB (Steve Best) [1033086]
-- [powerpc] eeh: Debugfs for error injection (Steve Best) [1033086]
-- [powerpc] powernv: Debugfs directory for PHB (Steve Best) [1033086]
-- [powerpc] eeh: Register OPAL notifier for PCI error (Steve Best) [1033086]
-- [powerpc] powernv/opal: Disable OPAL notifier upon poweroff (Steve Best) [1033086]
-- [powerpc] powernv/opal: Notifier for OPAL events (Steve Best) [1033086]
-- [powerpc] eeh: Allow to check fenced PHB proactively (Steve Best) [1033086]
-- [powerpc] eeh: Enable EEH check for config access (Steve Best) [1033086]
-- [powerpc] eeh: Initialization for PowerNV (Steve Best) [1033086]
-- [powerpc] eeh: PowerNV EEH backends (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip next error (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip PE log and bridge setup (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip PE reset (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip EEH state retrieval (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip EEH enable option (Steve Best) [1033086]
-- [powerpc] eeh: I/O chip post initialization (Steve Best) [1033086]
-- [powerpc] eeh: EEH backend for P7IOC (Steve Best) [1033086]
-- [powerpc] eeh: Sync OPAL API with firmware (Steve Best) [1033086]
-- [powerpc] eeh: EEH core to handle special event (Steve Best) [1033086]
-- [powerpc] eeh: Export confirm_error_lock (Steve Best) [1033086]
-- [powerpc] eeh: Allow to purge EEH events (Steve Best) [1033086]
-- [powerpc] eeh: Trace time on first error for PE (Steve Best) [1033086]
-- [powerpc] eeh: Single kthread to handle events (Steve Best) [1033086]
-- [powerpc] eeh: Delay EEH probe during hotplug (Steve Best) [1033086]
-- [powerpc] eeh: Refactor eeh_reset_pe_once() (Steve Best) [1033086]
-- [powerpc] eeh: EEH post initialization operation (Steve Best) [1033086]
-- [powerpc] eeh: Make eeh_init() public (Steve Best) [1033086]
-- [powerpc] eeh: Trace PCI bus from PE (Steve Best) [1033086]
-- [powerpc] eeh: Make eeh_pe_get() public (Steve Best) [1033086]
-- [powerpc] eeh: Make eeh_phb_pe_get() public (Steve Best) [1033086]
-- [powerpc] eeh: Move common part to kernel directory (Steve Best) [1033086]
-- [powerpc] eeh: Cleanup for EEH core (Steve Best) [1033086]
-- [powerpc] eeh: Enhance converting EEH dev (Steve Best) [1033086]
-- [s390] crypto: Fix aes-xts parameter corruption (Hendrik Brueckner) [1039937]
-- [fs] aio: restore locking of ioctx list on removal (Mateusz Guzik) [1013373]
-- [virt] kvm: Convert vapic synchronization to _cached functions (Andrew Jones) [1042092] {CVE-2013-6368}
-- [virt] kvm: Fix potential divide by 0 in lapic (Andrew Jones) [1042084] {CVE-2013-6367}
-- [virt] kvm: Improve create VCPU parameter (Andrew Jones) [1042074] {CVE-2013-4587}
-- [cpufreq] check cpufreq driver is valid and cpufreq isn't disabled in cpufreq_get() (Jan Stancek) [1040409]
-- [block] blk-mq: fix memory leaks on unplugging block device (Mike Snitzer) [1040675]
-- [block] blk-mq: fix use-after-free of request (Mike Snitzer) [1040675]
-- [block] blk-mq: fix dereference of rq->mq_ctx if allocation fails (Mike Snitzer) [1040675]
-- [block] blk-mq: add blktrace insert event trace (Mike Snitzer) [1040675]
-- [block] blk-mq: ensure that we set REQ_IO_STAT so diskstats work (Mike Snitzer) [1040675]
-- [mm] numa: write pte_numa pte back to the page tables (Rik van Riel) [1040200]
-- [mm] migrate: fix set cpupid on page migration twice against thp (Rik van Riel) [1040200]
-- [mm] numa: Guarantee that tlb_flush_pending updates are visible before page table updates (Rik van Riel) [1040200]
-- [sched] fix the theoretical signal_wake_up() vs schedule() race (Rik van Riel) [1040200]
-- [sched] Add tracepoints related to NUMA task migration (Rik van Riel) [1040200]
-- [mm] numa: Do not automatically migrate KSM pages (Rik van Riel) [1040200]
-- [mm] numa: Trace tasks that fail migration due to rate limiting (Rik van Riel) [1040200]
-- [mm] numa: Limit scope of lock for NUMA migrate rate limiting (Rik van Riel) [1040200]
-- [mm] numa: Make NUMA-migrate related functions static (Rik van Riel) [1040200]
-- [mm] numa: Defer TLB flush for THP migration as long as possible (Rik van Riel) [1040200]
-- [mm] fix TLB flush race between migration, and change_protection_range (Rik van Riel) [1040200]
-- [mm] numa: Avoid unnecessary disruption of NUMA hinting during migration (Rik van Riel) [1040200]
-- [mm] numa: Clear numa hinting information on mprotect (Rik van Riel) [1040200]
-- [sched] numa: Skip inaccessible VMAs (Rik van Riel) [1040200]
-- [mm] numa: Avoid unnecessary work on the failure path (Rik van Riel) [1040200]
-- [mm] numa: Ensure anon_vma is locked to prevent parallel THP splits (Rik van Riel) [1040200]
-- [mm] numa: Do not clear PTE for pte_numa update (Rik van Riel) [1040200]
-- [mm] numa: Do not clear PMD during PTE update scan (Rik van Riel) [1040200]
-- [mm] Clear pmd_numa before invalidating (Rik van Riel) [1040200]
-- [mm] numa: Call MMU notifiers on THP migration (Rik van Riel) [1040200]
-- [mm] numa: Serialise parallel get_user_page against THP migration (Rik van Riel) [1040200]
-- [mm] numa: return the number of base pages altered by protection changes (Rik van Riel) [1040200]
-
-* Mon Dec 16 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-63.el7]
-- [net] ipv6: router reachability probing (Jiri Benc) [1032118]
-- [net] ipv6: remove the unnecessary statement in find_match() (Jiri Benc) [1032118]
-- [net] arp/neighbour.h: Remove extern from function prototypes (Jiri Benc) [1032118]
-- [net] netfilter: tproxy: fix build with IP6_NF_IPTABLES=n (Jiri Benc) [1035295]
-- [net] netfilter: tproxy: remove nf_tproxy_core.h (Jiri Benc) [1035295]
-- [net] netfilter: tproxy: remove nf_tproxy_core, keep tw sk assigned to skb (Jiri Benc) [1035295]
-- [net] neigh: ipv6: respect default values set before an address is assigned to device (Jiri Pirko) [1040347]
-- [net] neigh: restore old behaviour of default parms values (Jiri Pirko) [1040347]
-- [net] neigh: use tbl->family to distinguish ipv4 from ipv6 (Jiri Pirko) [1040347]
-- [net] neigh: wrap proc dointvec functions (Jiri Pirko) [1040347]
-- [net] neigh: convert parms to an array (Jiri Pirko) [1040347]
-- [net] net: neighbour: Remove CONFIG_ARPD (Jiri Pirko) [1040347]
-- [net] ndisc: bool initializations should use true and false (Jiri Pirko) [1040347]
-- [net] ipv4: add support for IFA_FLAGS nl attribute (Jiri Pirko) [1021871]
-- [net] ipv6: addrconf: revert /proc/net/if_inet6 ifa_flag format (Jiri Pirko) [1021871]
-- [net] ipv6: addrconf: introduce IFA_F_MANAGETEMPADDR to tell kernel to manage temporary addresses (Jiri Pirko) [1021871]
-- [net] ipv6: addrconf: extend ifa_flags to u32 (Jiri Pirko) [1021871]
-- [net] ipv6: Remove privacy config option (Jiri Pirko) [1021871]
-- [net] ipv6: fix leaking uninitialized port number of offender sockaddr (Florian Westphal) [1035884] {CVE-2013-6405}
-- [net] inet: fix addr_len/msg->msg_namelen assignment in recv_error and rxpmtu functions (Florian Westphal) [1035884] {CVE-2013-6405}
-- [net] inet: prevent leakage of uninitialized memory to user in recv syscalls (Florian Westphal) [1035884] {CVE-2013-6405}
-- [net] rename busy poll MIB counter (Michal Schmidt) [1038631]
-- [net] rename CONFIG_NET_LL_RX_POLL to CONFIG_NET_RX_BUSY_POLL (Michal Schmidt) [1038631]
-- [net] fix a compile error when CONFIG_NET_LL_RX_POLL is not set (Michal Schmidt) [1038631]
-- [net] af_packet: block BH in prb_shutdown_retire_blk_timer() (Veaceslav Falico) [1034605]
-
-* Mon Dec 16 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-62.el7]
-- [scsi] pm80xx: remove unneeded NULL check (Rich Bono) [1019457]
-- [scsi] pm80xx: Fix for 32 bit compilation warning (Rich Bono) [1019457]
-- [scsi] pm80xx: Firmware logging support (Rich Bono) [1019457]
-- [scsi] pm80xx: Phy settings support for motherboard controller (Rich Bono) [1019457]
-- [scsi] pm80xx: IButton security feature support for motherboard controllers (Rich Bono) [1019457]
-- [scsi] pm80xx: Print SAS address of IO failed device (Rich Bono) [1019457]
-- [scsi] pm80xx: 4G boundary fix (Rich Bono) [1019457]
-- [scsi] pm80xx: Queue rotation logic for inbound and outbound queues (Rich Bono) [1019457]
-- [scsi] pm80xx: Set device state response logic fix (Rich Bono) [1019457]
-- [scsi] pm80xx: Display controller BIOS version (Rich Bono) [1019457]
-- [scsi] pm80xx: Indirect SMP request fix (Rich Bono) [1019457]
-- [scsi] pm80xx: Device id changes to support series 8 controllers (Rich Bono) [1019457]
-- [scsi] bfa: firmware update to 3.2.1.1 (Vijay Guvva) [726968]
-- [scsi] bfa: Update the driver version to 3.2.21.1 (Vijay Guvva) [726968]
-- [scsi] bfa: Chinook quad port 16G FC HBA claim issue (Vijay Guvva) [726968]
-- [scsi] bfa: switch to fixed_size_llseek() (Vijay Guvva) [726968]
-- [scsi] bfa: Fix crash when symb name set for offline vport (Vijay Guvva) [726968]
-- [scsi] bfa: dis-associate bfa path_tov with dev_loss_tmo (Vijay Guvva) [726968]
-- [scsi] bfa: Support for chinook-quad port card (Vijay Guvva) [726968]
-- [scsi] bfa: fix endianess issue for firmware stats (Vijay Guvva) [726968]
-- [scsi] bfa: Fix bug_on condition in RPSC rsp handling (Vijay Guvva) [726968]
-- [scsi] bfa: Allow rsp queue process during ioc disable (Vijay Guvva) [726968]
-- [scsi] bfa: firmware statistics update (Vijay Guvva) [726968]
-- [scsi] bfa: fru vpd date update changes (Vijay Guvva) [726968]
-- [scsi] bfa: driver compatibility with 32bit libs (Vijay Guvva) [726968]
-- [scsi] bfa: kdump fix on 815 and 825 adapters (Vijay Guvva) [726968]
-- [scsi] bfa: Fix FDISC timeout handling (Vijay Guvva) [726968]
-- [scsi] bfa: Fix 1860 port initialize when ATC is enabled (Vijay Guvva) [726968]
-- [scsi] bfa: FDMI enhancements (Vijay Guvva) [726968]
-- [scsi] bfa: Fix WARN_ON condition check (Vijay Guvva) [726968]
-- [scsi] bfa: Add dynamic diagnostic port support (Vijay Guvva) [726968]
-- [scsi] bfa: Forward Error Correction status query (Vijay Guvva) [726968]
-- [scsi] bfa: Support for FC BB credit recovery (Vijay Guvva) [726968]
-- [scsi] bfa: Fixes for 0-terminated strncpy and possible null pointer dereference (Vijay Guvva) [726968]
-- [scsi] bfa: fix for FC Direct Attach LUN discovery failure (Vijay Guvva) [726968]
-- [scsi] bfa: fix faulty handling of events in lps sm (Vijay Guvva) [726968]
-- [maintainers] Add maintainer info for bnx2i (Maurizio Lombardi) [725065]
-- [scsi] bnx2i: Update version and copyright year 2013 (Maurizio Lombardi) [725065]
-- [s390] uaccess: add missing page table walk range check (Hendrik Brueckner) [1036690]
-- [fs] nfsd: don't try to reuse an expired DRC entry off the list (Jeff Layton) [1036971]
-- [fs] nfsd: when reusing an existing repcache entry, unhash it first (Jeff Layton) [1036971]
-- [s390] pci: implement hotplug notifications (Hendrik Brueckner) [1030312]
-- [s390] pci: implement pcibios_remove_bus (Hendrik Brueckner) [1030312]
-- [s390] pci: improve handling of bus resources (Hendrik Brueckner) [1030312]
-- [s390] pci: cleanup function information block (Hendrik Brueckner) [1030312]
-- [s390] pci: remove CONFIG_PCI_DEBUG dependancy (Hendrik Brueckner) [1030312]
-- [s390] pci: message cleanup (Hendrik Brueckner) [1030312]
-- [s390] pci: implement hibernation hooks (Hendrik Brueckner) [1030312]
-
-* Thu Dec 12 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-61.el7]
-- [ethernet] cxgb3: Fix warning about using rcu_dereference when not in a rcu-locked section (Veaceslav Falico) [1038494]
-- [fs] btrfs: relocate csums properly with prealloc extents (Eric Sandeen) [1030074]
-- [fs] btrfs: release path before starting transaction in can_nocow_extent (Eric Sandeen) [1030074]
-- [fs] btrfs: fix oops caused by the space balance and dead roots (Eric Sandeen) [1030074]
-- [fs] btrfs: insert orphan roots into fs radix tree (Eric Sandeen) [1030074]
-- [fs] btrfs: limit delalloc pages outside of find_delalloc_range (Eric Sandeen) [1030074]
-- [fs] btrfs: Fix crash due to not allocating integrity data for a bioset (Eric Sandeen) [1030074]
-- [fs] btrfs: fix a use-after-free bug in btrfs_dev_replace_finishing (Eric Sandeen) [1030074]
-- [fs] btrfs: eliminate races in worker stopping code (Eric Sandeen) [1030074]
-- [fs] btrfs: fix crash of compressed writes (Eric Sandeen) [1030074]
-- [fs] btrfs: fix transid verify errors when recovering log tree (Eric Sandeen) [1030074]
-- [fs] vfs: fix subtle use-after-free of pipe_inode_info (Steve Best) [1033905]
-- [powerpc] signals: Mark VSX not saved with small contexts (Steve Best) [1019549]
-- [security] selinux: correct locking in selinux_netlbl_socket_connect() (Paul Moore) [991605]
-- [net] xfrm: Fix potential null pointer dereference in xdst_queue_output (Herbert Xu) [1034891]
-- [net] ipv6: introduce function to find route for redirect (Jiri Pirko) [1035996]
-- [net] ipv6: handle Redirect ICMP Message with no Redirected Header option (Jiri Pirko) [1035996]
-
-* Fri Dec 06 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-60.el7]
-- [misc] synchronize with upstream linux-3.10.y stable branch up to 3.10.20 (Veaceslav Falico) [1034281]
-- [s390] allow to set gcc -mtune flag (Hendrik Brueckner) [1032642]
-- [net] team: fix master carrier set when user linkup is enabled (Jiri Pirko) [1035258]
-- [net] openvswitch: fix vport-netdev unregister (Francesco Fusco) [1004267]
-
-* Thu Dec 05 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-59.el7]
-- [pci] Fix whitespace, capitalization, and spelling errors (Myron Stowe) [1033834]
-- [pci] Remove duplicate pci_disable_device() from pcie_portdrv_remove() (Myron Stowe) [1033834]
-- [pci] Enable upstream bridges even for VFs on virtual buses (Myron Stowe) [1033834]
-- [pci] Add pci_upstream_bridge() (Myron Stowe) [1033834]
-- [pci] Add x86_msi.msi_mask_irq() and msix_mask_irq() (Myron Stowe) [1033834]
-- [pci] Warn on driver probe return value greater than zero (Myron Stowe) [1033834]
-- [pci] Drop warning about drivers that don't use pci_set_master() (Myron Stowe) [1033834]
-- [pci] Workaround missing pci_set_master in pci drivers (Myron Stowe) [1033834]
-- [powerpc] pci: Use pci_is_pcie() to simplify code fix (Myron Stowe) [1033834]
-- [pci] Update pcie_ports 'auto' behavior for non-ACPI platforms (Myron Stowe) [1033834]
-- [pci] Report pci_pme_active() kmalloc failure (Myron Stowe) [1033834]
-- [pci] Fail MSI/MSI-X initialization if device is not in PCI_D0 (Myron Stowe) [1033834]
-- [x86] pci: Coalesce multiple overlapping host bridge windows (Myron Stowe) [1033834]
-- [misc] MAINTAINERS: Add arch/x86/pci to PCI file patterns (Myron Stowe) [1033834]
-- [pci] pm: Remove pci_pm_complete() (Myron Stowe) [1033834]
-- [pci] Add pci_dev_show_local_cpu() to simplify code (Myron Stowe) [1033834]
-- [pci] Make pci_dev_pm_ops static (Myron Stowe) [1033834]
-- [pci] Make pci_bus_attrs, pci_dev_attrs, dev_rescan_attr, dev_remove_attr, vga_attr static (Myron Stowe) [1033834]
-- [pci] convert bus code to use dev_groups (Myron Stowe) [1033834]
-- [pci] convert bus code to use drv_groups (Myron Stowe) [1033834]
-- [pci] convert bus code to use bus_groups (Myron Stowe) [1033834]
-- [drm] radeon: use pcie_get_readrq() and pcie_set_readrq() to simplify code (Myron Stowe) [1033834]
-- [infiniband] qib: Drop qib_tune_pcie_caps() and qib_tune_pcie_coalesce() return values (Myron Stowe) [1033834]
-- [pci] Remove unused PCI_MSIX_FLAGS_BIRMASK definition (Myron Stowe) [1033834]
-- [pci] acpiphp_ibm: Convert to dynamic debug (Myron Stowe) [1033834]
-- [pci] acpiphp: Convert to dynamic debug (Myron Stowe) [1033834]
-- [pci] Remove Intel Haswell D3 delays (Myron Stowe) [1033834]
-- [pci] Pass type, width, and prefetchability for window alignment (Myron Stowe) [1033834]
-- [pci] Document reason for using pci_is_root_bus() (Myron Stowe) [1033834]
-- [pci] Use pci_is_root_bus() to check for root bus (Myron Stowe) [1033834]
-- [pci] Remove unused "is_pcie" from pci_dev structure (Myron Stowe) [1033834]
-- [pci] Update pci_find_slot() description in pci.txt (Myron Stowe) [1033834]
-- [scsi] qla2xxx: Use standard PCIe Capability Link register field names (Myron Stowe) [1033834]
-- [pci] Fix comment typo, remove unnecessary !! in pci_is_pcie() (Myron Stowe) [1033834]
-- [pci] Drop "setting latency timer" messages (Myron Stowe) [1033834]
-- [infiniband] qib: Use pcie_set_mps() and pcie_get_mps() to simplify code (Myron Stowe) [1033834]
-- [infiniband] qib: Use pci_is_root_bus() to check whether it is a root bus (Myron Stowe) [1033834]
-- [pci] Export pcie_set_mps() and pcie_get_mps() (Myron Stowe) [1033834]
-- [acpi] Decode _OSC bitmasks symbolically (Myron Stowe) [1033834]
-- [acpi] Separate out _OSC "we don't support enough services" path (Myron Stowe) [1033834]
-- [acpi] Separate out _OSC "PCIe port services disabled" path (Myron Stowe) [1033834]
-- [acpi] Skip _OSC control tests if _OSC support call failed (Myron Stowe) [1033834]
-- [acpi] Run _OSC only once for OSPM feature support (Myron Stowe) [1033834]
-- [acpi] Split _OSC "support" and "control" flags into separate variables (Myron Stowe) [1033834]
-- [acpi] Move _OSC stuff from acpi_pci_root_add() to negotiate_os_control() (Myron Stowe) [1033834]
-- [acpi] Drop unnecessary _OSC existence tests (Myron Stowe) [1033834]
-- [pci] Name _OSC #defines more consistently (Myron Stowe) [1033834]
-- [acpi] Write OSC_PCI_CONTROL_MASKS like OSC_PCI_SUPPORT_MASKS (Myron Stowe) [1033834]
-- [acpi] Remove unused OSC_PCI_NATIVE_HOTPLUG (Myron Stowe) [1033834]
-- [acpi] Tidy acpi_run_osc() declarations (Myron Stowe) [1033834]
-- [acpi] Rename OSC_QUERY_TYPE to OSC_QUERY_DWORD (Myron Stowe) [1033834]
-- [acpi] Write _OSC bit field definitions in hex (Myron Stowe) [1033834]
-- [powerpc] pci: Use pci_is_pcie() to simplify code (Myron Stowe) [1033834]
-- [scsi] qla2xxx: Use pcie_is_pcie() to simplify code (Myron Stowe) [1033834]
-- [scsi] csiostor: Use pcie_capability_clear_and_set_word() to simplify (Myron Stowe) [1033834]
-- [scsi] bfa: Use pcie_set()/get_readrq() to simplify code (Myron Stowe) [1033834]
-- [x86] pci: Use cached pci_dev->pcie_cap to simplify code (Myron Stowe) [1033834]
-- [pci] Use pci_is_pcie() to simplify code (Myron Stowe) [1033834]
-- [ethernet] be2net: call napi_disable() for all event queues (Ivan Vecera) [1032872]
-- [mm] get rid of unnecessary pageblock scanning in setup_zone_migrate_reserve (Motohiro Kosaki) [1023873]
-- [s390] mm: handle asce-type exceptions as normal page fault (Hendrik Brueckner) [1033645]
-- [s390] 3270: fix missing device_destroy() call (Hendrik Brueckner) [1032553]
-- [s390] boot: Install bzImage as default kernel image (Hendrik Brueckner) [1032548]
-- [x86] perf: Fix shared register mutual exclusion enforcement (Jiri Olsa) [1032093]
-- [mm] readahead: fix sequential read cache miss detection (Rik van Riel) [1032279]
-- [block] fix a race between request completion and timeout handling (Jeff Moyer) [1032138]
-- [s390] mm: correct tlb flush on page table upgrade (Hendrik Brueckner) [1029601]
-
-* Wed Dec 04 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-58.el7]
-- [pci] msi: add default MSI operations for !HAVE_GENERIC_HARDIRQS platforms (Myron Stowe) [1034514]
-- [of] of_pci: add registry of MSI chips (Myron Stowe) [1034514]
-- [pci] Introduce new MSI chip infrastructure (Myron Stowe) [1034514]
-- [pci] remove ARCH_SUPPORTS_MSI kconfig option (Myron Stowe) [1034514]
-- [pci] use weak functions for MSI arch-specific functions (Myron Stowe) [1034514]
-- [of] of_pci: Add of_pci_parse_bus_range() function (Myron Stowe) [1034514]
-- [of] of_pci: Add of_pci_get_devfn() function (Myron Stowe) [1034514]
-- [fs] sysfs: sysfs_create_groups returns a value (Myron Stowe) [1034491]
-- [fs] sysfs: add sysfs_create/remove_groups for when SYSFS is not enabled (Myron Stowe) [1034491]
-- [fs] sysfs/group: fix up kerneldoc (Myron Stowe) [1034491]
-- [fs] sysfs/group: update copyright to add myself and the LF (Myron Stowe) [1034491]
-- [fs] sysfs/group: add kerneldoc for sysfs_remove_group (Myron Stowe) [1034491]
-- [fs] sysfs/group: fix up broken string coding style (Myron Stowe) [1034491]
-- [fs] sysfs/group: fix up some * coding style issues (Myron Stowe) [1034491]
-- [fs] sysfs/group: fix trailing whitespace (Myron Stowe) [1034491]
-- [fs] sysfs/group: move EXPORT_SYMBOL_GPL() to the proper location (Myron Stowe) [1034491]
-- [fs] sysfs: add sysfs_create/remove_groups() (Myron Stowe) [1034491]
-- [base] bus_type: add bus_groups (Myron Stowe) [1034491]
-- [base] bus_type: add drv_groups (Myron Stowe) [1034491]
-- [base] bus_type: add dev_groups (Myron Stowe) [1034491]
-- [ethernet] e1000e: fix overrun of PHY RAR array (John Green) [1031123]
-- [kernel] perf/ftrace: Fix paranoid level for enabling function tracer (Jiri Olsa) [1027778] {CVE-2013-2930}
-- [powerpc] kdump: Adding symbols in vmcoreinfo to facilitate dump filtering (Steve Best) [1025746]
-- [s390] block/dasd: hold request queue sysfs lock when calling elevator_init() (Tomoki Sekiyama) [1030615]
-- [block] elevator: acquire q->sysfs_lock in elevator_change() (Tomoki Sekiyama) [1030615]
-- [block] elevator: Fix a race in elevator switching and dm device initialization (Tomoki Sekiyama) [1030615]
-- [s390] vtime: correct idle time calculation (Hendrik Brueckner) [1029891]
-- [s390] time: fix get_tod_clock_ext inline assembly (Hendrik Brueckner) [1029891]
-- [s390] time: correct use of store clock fast (Hendrik Brueckner) [1029891]
-- [s390] time: return with irqs disabled from psw_idle (Hendrik Brueckner) [1029891]
-- [s390] fix save and restore of the floating-point-control register (Hendrik Brueckner) [1029602]
-- [s390] compat, signal: change return values to -EFAULT (Hendrik Brueckner) [1029602]
-- [net] flow_dissector: fail on evil iph->ihl (Jason Wang) [1007955] {CVE-2013-4348}
-
-* Tue Nov 26 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-57.el7]
-- [acpi] Correct faulty check of Secure Level in acpi_os_get_root_pointer() (Lenny Szubowicz) [1034598]
-
-* Tue Nov 26 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-56.el7]
-- [net] netfilter: push reasm skb through instead of original frag skbs (Jiri Pirko) [1032012]
-- [net] ip6_output: fragment outgoing reassembled skb properly (Jiri Pirko) [1032012]
-- [net] ipv6: fix headroom calculation in udp6_ufo_fragment (Jiri Pirko) [1030016] {CVE-2013-4563}
-- [net] macvtap: limit head length of skb allocated (Jason Wang) [1029380]
-- [net] tuntap: limit head length of skb allocated (Jason Wang) [1029380]
-- [fs] nfs: check if gssd is running before attempting to use krb5i auth in SETCLIENTID call (Jeff Layton) [998616]
-- [net] sunrpc: replace sunrpc_net->gssd_running flag with a more reliable check (Jeff Layton) [998616]
-- [net] sunrpc: create a new dummy pipe for gssd to hold open (Jeff Layton) [998616]
-- [s390] scm_block: do not hide eadm subchannel dependency (Hendrik Brueckner) [1032542]
-- [s390] qeth: avoid buffer overflow in snmp ioctl (Hendrik Brueckner) [1029890]
-- [s390] zfcpdump: Add support for XFS (Hendrik Brueckner) [1028103]
-- [x86] setup: print out a message if !ACPI (Prarit Bhargava) [1033181]
-- [cpufreq] intel_pstate: skip the driver if ACPI has power mgmt option (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Add static declarations to internal functions (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Add Baytrail support (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Refactor driver to support CPUs with different MSR layouts (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Correct calculation of min pstate value (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Improve accuracy by not truncating until final result (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Fix type mismatch warning (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Fix max_perf_pct on resume (Prarit Bhargava) [1031793]
-- [cpufreq] add new routine cpufreq_verify_within_cpu_limits() (Prarit Bhargava) [1031793]
-- [cpufreq] Optimize cpufreq_frequency_table_verify() (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: fix no_turbo (Prarit Bhargava) [1031793]
-- [cpufreq] intel_pstate: Add Haswell CPU models (Prarit Bhargava) [1031793]
-- [cpufreq] Drop the owner field from struct cpufreq_driver (Prarit Bhargava) [1031793]
-- [cpufreq] Use rwsem for protecting critical sections (Prarit Bhargava) [1031793]
-- [cpufreq] delete __cpuinit usage from all cpufreq files (Prarit Bhargava) [1031793]
-- [powerpc] ppc64 address space capped at 32TB, mmap randomisation disabled (Steve Best) [1031762]
-
-* Thu Nov 21 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-55.el7]
-- [kernel] hung_task: add method to reset detector (Marcelo Tosatti) [987202]
-- [virt] pvclock: detect watchdog reset at pvclock read (Marcelo Tosatti) [987202]
-- [fs] cifs: stop trying to use virtual circuits (Sachin Prabhu) [1026387]
-- [security] keys: Fix keyring content gc scanner (David Howells) [1030482]
-- [fs] ext4: fix warning in ext4_da_update_reserve_space() (Lukas Czerner) [1022185]
-- [fs] quota: provide interface for readding allocated space into reserved space (Lukas Czerner) [1022185]
-- [fs] nfs: don't retry detect_trunking with RPC_AUTH_UNIX more than once (Jeff Layton) [1030404]
-- [net] sunrpc: Avoid deep recursion in rpc_release_client (Jeff Layton) [1030404]
-- [net] sunrpc: Fix a data corruption issue when retransmitting RPC calls (Jeff Layton) [1030062]
-- [fs] nfs: Remove redundant checks in nfs_setsecurity+nfs4_label_init_security (Jeff Layton) [1030725]
-- [fs] nfs: Sanity check the server reply in _nfs4_server_capabilities (Jeff Layton) [1030725]
-- [fs] nfs: encode_readdir - only ask for labels when doing readdirplus (Jeff Layton) [1030725]
-- [fs] nfs: set security label when revalidating inode (Jeff Layton) [1030725]
-- [fs] nfs: Fix a mismatch between Linux labeled NFS and the NFSv4.2 spec (Jeff Layton) [1030725]
-- [misc] synchronize with upstream linux-3.10.y stable branch up to 3.10.18 (Veaceslav Falico) [1028210]
-
-* Thu Nov 21 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-54.el7]
-- [fs] gfs2: Fix ref count bug relating to atomic_open (Robert S Peterson) [1032800]
-
-* Mon Nov 18 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-53.el7]
-- [ethernet] mlx4: Fix pages never dma unmapped on rx (Steve Best) [1030192]
-- [kernel] Add method for displaying affection for Red Hat (Prarit Bhargava) [1025450]
-- [powerpc] Fix fatal SLB miss when restoring PPR (Steve Best) [1027633]
-- [fs] gfs2: Implement a "rgrp has no extents longer than X" scheme (Robert S Peterson) [1019462]
-- [fs] gfs2: Drop inadequate rgrps from the reservation tree (Robert S Peterson) [1019462]
-- [fs] gfs2: If requested is too large, use the largest extent in the rgrp (Robert S Peterson) [1019462]
-- [fs] gfs2: Add allocation parameters structure (Robert S Peterson) [1019462]
-- [security] keys: Fix error handling in big_key instantiation (David Howells) [1029877]
-- [kernel] move get_online_cpus/put_online_cpus locking out (Rik van Riel) [1027267]
-- [kernel] sched/numa: Cure update_numa_stats() vs. hotplug (Rik van Riel) [1027267]
-- [kernel] sched/numa: Fix NULL pointer dereference in task_numa_migrate() (Rik van Riel) [1028100]
-- [scsi] hpsa: remove P822se PCI ID (Tomas Henzl) [1029009]
-- [scsi] hpsa: correct gen9 PCI IDs (Tomas Henzl) [1029009]
-- [scsi] scsi_dh_alua: ALUA handler attach should succeed while TPG is transitioning (Ewan Milne) [1020355]
-- [scsi] scsi_dh_alua: ALUA check sense should retry device internal reset unit attention (Ewan Milne) [1020355]
-- [scsi] scsi_debug: fix endianness bug in sdebug_build_parts() (Maurizio Lombardi) [1017128]
-- [block] blk-mq: don't disallow request merges for req->special being set (Mike Snitzer) [1016109]
-- [block] blk-mq: mq plug list breakage (Mike Snitzer) [1016109]
-- [block] blk-mq: fix for flush deadlock (Mike Snitzer) [1016109]
-- [block] blk-mq: add blk_mq_stop_hw_queues (Mike Snitzer) [1016109]
-- [block] blk-mq: fix permissions for ipi_redirect sysfs attribute (Mike Snitzer) [1016109]
-- [block] blk-mq: zero out ctx_map during initialization (Mike Snitzer) [1016109]
-- [block] blk-mq: cache rq->q (Mike Snitzer) [1016109]
-- [block] blk-mq: use a separate plug list for blk-mq requests (Mike Snitzer) [1016109]
-- [block] blk-mq: switch to percpu-ida for tag management (Mike Snitzer) [1016109]
-- [lib] percpu_ida: add an API to return free tags (Mike Snitzer) [1016109]
-- [lib] percpu_ida: add percpu_ida_for_each_free (Mike Snitzer) [1016109]
-- [lib] percpu_ida: make percpu_ida percpu size/batch configurable (Mike Snitzer) [1016109]
-- [lib] idr: Percpu ida (Mike Snitzer) [1016109]
-- [block] blk-mq: call exit_hctx on hw queue teardown (Mike Snitzer) [1016109]
-- [lib] percpu_counter: __this_cpu_write() doesn't need to be protected by spinlock (Mike Snitzer) [1016109]
-- [block] blk-mq: fix blk_mq_start_stopped_hw_queues from irq context (Mike Snitzer) [1016109]
-- [block] blk-mq: cleanup blk_mq_bio_to_request (Mike Snitzer) [1016109]
-- [block] blk-mq: kill blk_mq_finish_request (Mike Snitzer) [1016109]
-- [block] blk-mq: always complete bios in blk_mq_complete_request (Mike Snitzer) [1016109]
-- [block] blk-mq: dont call blk_mq_free_request from blk_mq_finish_request (Mike Snitzer) [1016109]
-- [block] blk-mq: more careful bio completion (Mike Snitzer) [1016109]
-- [block] use blk-exec.c infrastructure for blk-mq (Mike Snitzer) [1016109]
-- [block] make blk_get_put_request work for blk-mq drivers (Mike Snitzer) [1016109]
-- [block] remove request ref_count (Mike Snitzer) [1016109]
-- [block] blk-mq: Lower minimum queue depth from 4 to 1 (Mike Snitzer) [1016109]
-- [block] blk-mq: Do not fail blk_mq_reg::queue_depth value of zero (Mike Snitzer) [1016109]
-- [block] blk-mq: Do not allocate more cache entries than used (Mike Snitzer) [1016109]
-- [block] blk-mq: Check queue depth is valid (Mike Snitzer) [1016109]
-- [block] blk-mq: Sanity check reserved tags (Mike Snitzer) [1016109]
-
-* Fri Nov 15 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-52.el7]
-- [x86] trace: Change user|kernel_page_fault to page_fault_user|kernel (Seiji Aguchi) [726853]
-- [x86] trace: Add page fault tracepoints (Seiji Aguchi) [726853]
-- [x86] trace: Delete __trace_alloc_intr_gate() (Seiji Aguchi) [726853]
-- [x86] trace: Register exception handler to trace IDT (Seiji Aguchi) [726853]
-- [x86] trace: Remove __alloc_intr_gate() (Seiji Aguchi) [726853]
-- [kernel] audit: call audit_bprm() only once to add AUDIT_EXECVE information (Richard Guy Briggs) [1010367]
-- [kernel] audit: move audit_aux_data_execve contents into audit_context union (Richard Guy Briggs) [1010367]
-- [kernel] audit: remove unused envc member of audit_aux_data_execve (Richard Guy Briggs) [1010367]
-- [kernel] audit: Kill the unused struct audit_aux_data_capset (Richard Guy Briggs) [1010367]
-- [fs] gfs2: fix dentry leaks (Abhijith Das) [1010350]
-- [fs] gfs2: d_splice_alias() can't return error (Abhijith Das) [1010350]
-- [fs] atomic_open: take care of EEXIST in no-open case with O_CREAT|O_EXCL in fs/namei.c (Abhijith Das) [1010350]
-- [fs] vfs: don't set FILE_CREATED before calling ->atomic_open() (Abhijith Das) [1010350]
-- [fs] nfs: set FILE_CREATED (Abhijith Das) [1010350]
-- [fs] gfs2: set FILE_CREATED (Abhijith Das) [1010350]
-- [fs] vfs: improve i_op->atomic_open() documentation (Abhijith Das) [1010350]
-- [net] svcrpc: set cr_gss_mech from gss-proxy as well as legacy upcall (J. Bruce Fields) [1026643]
-- [mm] zbud: fix condition check on allocation size (Jerome Marchand) [1009496]
-- [kernel] sched: Optimize task_sched_runtime() (Larry Woodman) [986058]
-- [x86] setup: add a customer friendly message for single cpu systems (Prarit Bhargava) [1009066]
-- [x86] efi: Disable secure boot if shim is in insecure mode (Lenny Szubowicz) [1004888]
-- [kernel] modsign: Support not importing certs from db (Lenny Szubowicz) [1004888]
-- [kernel] modsign: Import certificates from UEFI Secure Boot (Lenny Szubowicz) [1004888]
-- [kernel] keys: Add a system blacklist keyring (Lenny Szubowicz) [1004888]
-- [crypto] asymmetric_keys: Add an EFI signature blob parser and key loader (Lenny Szubowicz) [1004888]
-- [kernel] efi: Add EFI signature data types (Lenny Szubowicz) [1004888]
-- [kernel] hibernate: Disable if securelevel above zero (Lenny Szubowicz) [903815]
-- [x86] efi: Add EFI_SECURE_BOOT bit (Lenny Szubowicz) [903815]
-- [x86] Add option to automatically set securelevel when in Secure Boot mode (Lenny Szubowicz) [903815]
-- [platform] asus-wmi: Restrict debugfs interface when securelevel is set (Lenny Szubowicz) [903815]
-- [x86] Restrict MSR access when securelevel is set (Lenny Szubowicz) [903815]
-- [kernel] uswsusp: Disable when securelevel is set (Lenny Szubowicz) [903815]
-- [kernel] kexec: Disable at runtime if securelevel has been set (Lenny Szubowicz) [903815]
-- [acpi] Ignore acpi_rsdp kernel parameter when securelevel is set (Lenny Szubowicz) [903815]
-- [acpi] Limit access to custom_method if securelevel is set (Lenny Szubowicz) [903815]
-- [char] mem: Restrict /dev/mem and /dev/kmem when securelevel is set (Lenny Szubowicz) [903815]
-- [x86] Lock down IO port access when securelevel is enabled (Lenny Szubowicz) [903815]
-- [pci] Lock down BAR access when securelevel is enabled (Lenny Szubowicz) [903815]
-- [x86] Enforce module signatures when securelevel is greater than 0 (Lenny Szubowicz) [903815]
-- [kernel] Add BSD-style securelevel support (Lenny Szubowicz) [903815]
-
-* Thu Nov 14 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-51.el7]
-- [net] nfnetlink: do not ack malformed messages (Jiri Benc) [1023123]
-- [net] netfilter: nft_compat: use _safe version of list_for_each (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: remove duplicated include from nf_tables_ipv4.c (Jiri Benc) [1023123]
-- [net] netfilter: bridge: nf_tables: add filter chain type (Jiri Benc) [1023123]
-- [net] netfilter: nft_nat: Fix endianness issue reported by sparse (Jiri Benc) [1023123]
-- [net] netfilter: bridge: fix nf_tables bridge dependencies with main core (Jiri Benc) [1023123]
-- [net] nf_tables: mark as Tech Preview (Jiri Benc) [1023123]
-- [net] nf_tables: stuff structures to preserve kABI in the future (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add ARP filtering support (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add trace support (Jiri Benc) [1023123]
-- [net] netfilter: nfnetlink: add batch support and use it from nf_tables (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add insert operation (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: complete net namespace support (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: Add support for IPv6 NAT (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add support for dormant tables (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: nft_payload: fix transport header base (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add compatibility layer for x_tables (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: convert built-in tables/chains to chain types (Jiri Benc) [1023123]
-- [net] netfilter: nft_payload: add optimized payload implementation for small loads (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add optimized data comparison for small values (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: expression ops overloading (Jiri Benc) [1023123]
-- [net] netfilter: nf_tables: add netlink set API (Jiri Benc) [1023123]
-- [net] netfilter: add nftables (Jiri Benc) [1023123]
-- [net] netfilter: nf_nat: move alloc_null_binding to nf_nat_core.c (Jiri Benc) [1023123]
-- [net] netfilter: pass hook ops to hookfn (Jiri Benc) [1023123]
-- [net] netlink: fix splat in skb_clone with large messages (Jiri Benc) [1023123]
-- [net] netlink: allow large data transfers from user-space (Jiri Benc) [1023123]
-
-* Wed Nov 13 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-50.el7]
-- [virt] hyperv/vmbus: Fix a bug in channel rescind code (Jason Wang) [1017564]
-- [virt] hyperv: Fix wrong check for synic_event_page (Jason Wang) [1017564]
-- [virt] hyperv/vmbus: fix vmbus_recvpacket_raw() return code (Jason Wang) [1017564]
-- [virt] hyperv/input: add a driver to support Hyper-V synthetic keyboard (Jason Wang) [1017564]
-- [virt] hyperv: Correctly guard the local APIC calibration code (Jason Wang) [1017564]
-- [virt] hyperv: Get the local APIC timer frequency from the hypervisor (Jason Wang) [1017564]
-- [kernel] stop_machine: fix race between stop_two_cpus and stop_cpus (Rik van Riel) [1023627]
-- [video] fb: make fp_get_options name argument const (Rob Clark) [1018414]
-- [drm] nouveau/device: recognise GK208 (Rob Clark) [1018414]
-- [drm] nouveau/graph: fix a number of missing explicit array terminators (Rob Clark) [1018414]
-- [drm] nouveau/disp: semi-complete link training sequence even if display disappears (Rob Clark) [1018414]
-- [drm] nouveau/bios: some older boards have shorter displayport tables (Rob Clark) [1018414]
-- [drm] nouveau/fbcon: bracket entrypoints with a per-device enabled check (Rob Clark) [1018414]
-- [drm] nouveau/disp: reorder writes to lane current control regs (Rob Clark) [1018414]
-- [drm] nouveau/disp: reorder writes to lane current control regs (Rob Clark) [1018414]
-- [drm] nouveau/disp: log if DP link training fails (Rob Clark) [1018414]
-- [drm] nouveau/disp: disable display underflow reporting at init (Rob Clark) [1018414]
-- [drm] nouveau/clock: fix accidental limiting of pll coefficients (Rob Clark) [1018414]
-- [drm] nouveau/device: use an additional bit from NV_PMC_BOOT_0 to identify chipset (Rob Clark) [1018414]
-- [drm] nouveau/bios/init: return failure condition on invalid opcodes (Rob Clark) [1018414]
-- [drm] nouveau/therm: ack any pending IRQ at init (Rob Clark) [1018414]
-- [drm] nouveau/therm: kill some over-zealous debugging (Rob Clark) [1018414]
-- [drm] radeon: don't use PACKET2 on CIK (Rob Clark) [1018414]
-- [drm] nouveau: split lock into list+exec and enable refcount locks (Rob Clark) [1018414]
-- [drm] nouveau: convert event handler apis to split create/enable semantics (Rob Clark) [1018414]
-- [drm] nouveau: share engine/channel constructor between implementations (Rob Clark) [1018414]
-- [drm] nouveau: prepare for the sharing of constructors between implementations (Rob Clark) [1018414]
-- [drm] nouveau: make vblank tracking data private to the implementations (Rob Clark) [1018414]
-- [drm] nouveau: share engine/channel struct definitions between implementations (Rob Clark) [1018414]
-- [drm] nouveau: Allow asymmetric nouveau_event_get/_put (Rob Clark) [1018414]
-- [drm] nouveau: Move event index check from critical section (Rob Clark) [1018414]
-- [drm] nouveau: Add priv field for event handlers (Rob Clark) [1018414]
-- [drm] nouveau: off by one in nouveau_drm_vblank_enable() (Rob Clark) [1018414]
-- [drm] backport to Linux 3.12-rc7 (Rob Clark) [1018414]
-- [firmware] dmi: add support for exact DMI matches in addition to substring matching (Rob Clark) [1025360]
-- [vga] vga_switcheroo: add driver control power feature (Rob Clark) [1025360]
-- [mm] vmscan: new shrinker API (Rob Clark) [1025360]
-- [kernel] Add arch_phys_wc_{add, del} to manipulate WC MTRRs if needed (Rob Clark) [1025360]
-- [kernel] mutex: Move ww_mutex definitions to ww_mutex.h (Rob Clark) [1025360]
-- [kernel] reservation: cross-device reservation support (Rob Clark) [1025360]
-- [kernel] locking-selftests: Handle unexpected failures more strictly (Rob Clark) [1025360]
-- [kernel] mutex: Add more w/w tests to test EDEADLK path handling (Rob Clark) [1025360]
-- [kernel] mutex: Add more tests to lib/locking-selftest.c (Rob Clark) [1025360]
-- [kernel] mutex: Add w/w tests to lib/locking-selftest.c (Rob Clark) [1025360]
-- [kernel] mutex: Add w/w mutex slowpath debugging (Rob Clark) [1025360]
-- [kernel] mutex: Add support for wound/wait style locks (Rob Clark) [1025360]
-- [kernel] mutex: Make __mutex_fastpath_lock_retval return whether fastpath succeeded or not (Rob Clark) [1025360]
-
-* Tue Nov 12 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-49.el7]
-- [usb] misc/usb3503: Fix compile error due to incorrect regmap depedency (Don Zickus) [895641]
-- [usb] storage: add quirk for mandatory READ_CAPACITY_16 (Don Zickus) [895641]
-- [usb] serial/option: blacklist Olivetti Olicard200 (Don Zickus) [895641]
-- [usb] quirks: add touchscreen that is dazzeled by remote wakeup (Don Zickus) [895641]
-- [usb] quirks: add one device that cannot deal with suspension (Don Zickus) [895641]
-- [usb] serial/option: add support for Inovia SEW858 device (Don Zickus) [895641]
-- [usb] serial/ti_usb_3410_5052: add Abbott strip port ID to combined table as well (Don Zickus) [895641]
-- [usb] support new huawei devices in option.c (Don Zickus) [895641]
-- [usb] xhci: Fix spurious wakeups after S5 on Haswell (Don Zickus) [895641]
-- [usb] xhci: fix write to USB3_PSSEN and XUSB2PRM pci config registers (Don Zickus) [895641]
-- [usb] xhci: quirk for extra long delay for S4 (Don Zickus) [895641]
-- [usb] xhci: Don't enable/disable RWE on bus suspend/resume (Don Zickus) [895641]
-- [net] usbnet: fix handling padding packet (Don Zickus) [895641]
-- [usb] imx21: accept very late isochronous URBs (Don Zickus) [895641]
-- [usb] core: check usb device's state before sending a Set SEL control transfer (Don Zickus) [895641]
-- [usb] xhci: Fix xHCI host issues on remote wakeup (Don Zickus) [1016889]
-- [usb] serial/pl2303: distinguish between original and cloned HX chips (Don Zickus) [895641]
-- [usb] fix typo in usb serial simple driver Kconfig (Don Zickus) [895641]
-- [usb] core: fix incorrect type in assignment in descriptors_changed() (Don Zickus) [895641]
-- [usb] core: compare and release one bos descriptor in usb_reset_and_verify_device() (Don Zickus) [895641]
-- [usb] ehci: remove debugging statement with ehci statistics in ehci_stop() (Don Zickus) [895641]
-- [usb] ehci: remove duplicate debug_async_open() prototype in ehci-dbg.c (Don Zickus) [895641]
-- [usb] ehci: enable debugging code when CONFIG_DYNAMIC_DEBUG is set (Don Zickus) [895641]
-- [usb] ehci: remove ehci_vdbg() verbose debugging statements (Don Zickus) [895641]
-- [usb] xhci: Fix warning introduced by disabling runtime PM (Don Zickus) [1016889]
-- [usb] storage: audit sysfs attribute permissions (Don Zickus) [895641]
-- [usb] xhci: prevent "callbacks suppressed" when debug is not enabled (Don Zickus) [1016889]
-- [usb] xhci: fix port BESL LPM capability checking (Don Zickus) [1016889]
-- [usb] ohci: fix build error related to ohci_suspend/resume (Don Zickus) [895641]
-- [usb] serial: clean up attribute permissions (Don Zickus) [895641]
-- [usb] usbtmc: fix up attribute permissions (Don Zickus) [895641]
-- [usb] core: be specific about attribute permissions (Don Zickus) [895641]
-- [usb] core: use DRIVER_ATTR_RW() (Don Zickus) [895641]
-- [usb] don't use bNbrPorts after initialization (Don Zickus) [895641]
-- [usb] fail on usb_hub_create_port_device() errors (Don Zickus) [895641]
-- [usb] fix cleanup after failure in hub_configure() (Don Zickus) [895641]
-- [usb] ohci: add missing PCI PM callbacks to ohci-pci.c (Don Zickus) [895641]
-- [usb] serial: fix stringify operator in usb-serial-simple (Don Zickus) [895641]
-- [usb] wusbcore: Use usb_init_urb instead of creating the URB manually (Don Zickus) [895641]
-- [usb] wusbcore: fix leak of urb in wa_xfer_destroy (Don Zickus) [895641]
-- [usb] wusbcore: fix resource cleanup in error path in __wa_xfer_setup_segs (Don Zickus) [895641]
-- [usb] wusbcore: clear RPIPE stall for control endpoints (Don Zickus) [895641]
-- [usb] uss720: fix DMA-buffer allocation (Don Zickus) [895641]
-- [usb] quatech2: fix port DMA-buffer allocations (Don Zickus) [895641]
-- [usb] quatech2: fix serial DMA-buffer allocations (Don Zickus) [895641]
-- [usb] keyspan: fix port DMA-buffer allocations (Don Zickus) [895641]
-- [usb] keyspan: fix serial DMA-buffer allocations (Don Zickus) [895641]
-- [usb] rh_call_control tbuf overflow fix (Don Zickus) [895641]
-- [usb] host: add Kconfig option for EHSET (Don Zickus) [895641]
-- [usb] serial/pl2303: improve the chip type detection/distinction (Don Zickus) [895641]
-- [usb] serial/pl2303: improve the chip type information output on startup (Don Zickus) [895641]
-- [usb] serial/pl2303: simplify the else-if contruct for type_1 chips in pl2303_startup() (Don Zickus) [895641]
-- [usb] xhci: fix dma mask setup in xhci.c (Don Zickus) [1016889]
-- [usb] xhci: trace debug statements related to ring expansion (Don Zickus) [1016889]
-- [usb] xhci: trace debug messages related to driver initialization and unload (Don Zickus) [1016889]
-- [usb] xhci: trace debug statements for urb cancellation (Don Zickus) [1016889]
-- [usb] xhci: add xhci_cmd_completion trace event (Don Zickus) [1016889]
-- [usb] xhci: add xhci_address_ctx trace event (Don Zickus) [1016889]
-- [usb] xhci: add trace for debug messages related to endpoint reset (Don Zickus) [1016889]
-- [usb] xhci: add trace for debug messages related to quirks (Don Zickus) [1016889]
-- [usb] xhci: add trace for debug messages related to changing contexts (Don Zickus) [1016889]
-- [usb] xhci: add traces for debug messages in xhci_address_device() (Don Zickus) [1016889]
-- [usb] xhci: remove CONFIG_USB_XHCI_HCD_DEBUGGING and unused code (Don Zickus) [1016889]
-- [usb] xhci: replace printk(KERN_DEBUG ...) (Don Zickus) [1016889]
-- [usb] xhci: replace xhci_info() with xhci_dbg() (Don Zickus) [1016889]
-- [usb] xhci: Add Device Tree support to XHCI Platform driver (Don Zickus) [1016889]
-- [usb] serial/pl2303: add two comments concerning the supported baud rates with HX chips (Don Zickus) [895641]
-- [usb] serial/pl2303: also use the divisor based baud rate encoding method for baud rates < 115200 with HX chips (Don Zickus) [895641]
-- [usb] serial/pl2303: increase the allowed baud rate range for the divisor based encoding method (Don Zickus) [895641]
-- [usb] serial/pl2303: move the two baud rate encoding methods to separate functions (Don Zickus) [895641]
-- [usb] serial/pl2303: remove 500000 baud from the list of standard baud rates (Don Zickus) [895641]
-- [usb] serial/pl2303: do not round to the next nearest standard baud rate for the divisor based baud rate encoding method (Don Zickus) [895641]
-- [usb] serial/pl2303: fix the upper baud rate limit check for type_0/1 chips (Don Zickus) [895641]
-- [usb] serial/pl2303: fix+improve the divsor based baud rate encoding method (Don Zickus) [895641]
-- [usb] hwa: avoid constant suspend and resume on the root hub (Don Zickus) [895641]
-- [usb] adutux: fix big-endian device-type reporting (Don Zickus) [895641]
-- [usb] usbtmc: fix big-endian probe of Rigol devices (Don Zickus) [895641]
-- [usb] wusbcore: clean up list locking in urb enqueue (Don Zickus) [895641]
-- [usb] wusbcore: fix root hub hub_status_data to only return > 0 if status has actually changed (Don Zickus) [895641]
-- [usb] ehci: Add support for SINGLE_STEP_SET_FEATURE test of EHSET (Don Zickus) [895641]
-- [usb] hcd: Log error code if reset() fails (Don Zickus) [895641]
-- [usb] misc/usb3503: Support operation with no I2C control (Don Zickus) [895641]
-- [usb] misc/usb3503: Add USB3503A to the compatible list (Don Zickus) [895641]
-- [usb] misc/usb3503: Default to hub mode (Don Zickus) [895641]
-- [usb] misc/usb3503: Fix typos in error messages (Don Zickus) [895641]
-- [usb] misc/usb3503: Factor out I2C probe (Don Zickus) [895641]
-- [usb] misc/usb3503: Convert to regmap (Don Zickus) [895641]
-- [usb] misc/usb3503: Actively manage Hub Connect GPIO (Don Zickus) [895641]
-- [usb] misc/usb3503: Use gpio_set_value_cansleep() (Don Zickus) [895641]
-- [usb] Move definition of USB_EHCI_BIG_ENDIAN_MMIO et al. out side of the ifs (Don Zickus) [895641]
-- [usb] misc/usb3503: Convert to devm_ APIs (Don Zickus) [895641]
-- [usb] serial: move the "simple" drivers into usb-serial-simple.c (Don Zickus) [895641]
-- [net] usbnet: support DMA SG (Don Zickus) [895641]
-- [usb] xhci: mark no_sg_constraint (Don Zickus) [1016889]
-- [usb] introduce usb_device_no_sg_constraint() helper (Don Zickus) [895641]
-- [usb] ehci: support running URB giveback in tasklet context (Don Zickus) [895641]
-- [usb] ehci: improve interrupt qh unlink (Don Zickus) [895641]
-- [usb] ehci: improve ehci_endpoint_disable (Don Zickus) [895641]
-- [usb] hcd: support giveback of URB in tasklet context (Don Zickus) [895641]
-- [usb] fix some scripts/kernel-doc warnings (Don Zickus) [895641]
-- [usb] ehci: don't depend on hardware for tracking port resets and resumes (Don Zickus) [895641]
-- [usb] ehci: keep better track of resuming ports (Don Zickus) [895641]
-- [usb] pl2303: restrict the divisor based baud rate encoding method to the "HX" chip type (Don Zickus) [895641]
-- [usb] refactor code for enabling/disabling remote wakeup (Don Zickus) [895641]
-- [usb] simplify the interface of usb_get_status() (Don Zickus) [895641]
-- [usb] xhci: add missing dma-mapping.h includes (Don Zickus) [895641]
-- [net] usbnet: centralize computing of max rx/tx qlen (Don Zickus) [895641]
-- [usb] serial: add driver for Suunto ANT+ USB device (Don Zickus) [895641]
-- [usb] ohci_usb warn "irq nobody cared" on shutdown (Don Zickus) [895641]
-- [usb] ohci-ep93xx: tidy up driver (*probe) and (*remove) (Don Zickus) [895641]
-- [usb] ohci-ep93xx: use devm_clk_get() (Don Zickus) [895641]
-- [usb] ohci-ep93xx: use platform_get_irq() (Don Zickus) [895641]
-- [usb] ohci-ep93xx: use devm_ioremap_resource() (Don Zickus) [895641]
-- [usb] usb-skeleton: add retry for nonblocking read (Don Zickus) [895641]
-- [usb] usbtmc: convert to devm_kzalloc (Don Zickus) [895641]
-- [usb] usbtmc: remove redundant braces (Don Zickus) [895641]
-- [usb] usbtmc: call pr_err instead of plain printk (Don Zickus) [895641]
-- [usb] usbtmc: remove trailing spaces (Don Zickus) [895641]
-- [usb] usbfs: Allow printer class 'get_device_id' without needing to claim the intf (Don Zickus) [895641]
-- [usb] remove redundant "#if" (Don Zickus) [895641]
-- [usb] misc: EHSET Test Fixture device driver for host compliance (Don Zickus) [895641]
-- [usb] clamp bInterval to allowed range (Don Zickus) [895641]
-- [usb] atm/speedtch: be careful with bInterval (Don Zickus) [895641]
-- [usb] cdc-acm: be careful with bInterval (Don Zickus) [895641]
-- [usb] fix build warning in pci-quirks.h when CONFIG_PCI is not enabled (Don Zickus) [895641]
-- [usb] xhci: Mark two functions __maybe_unused (Don Zickus) [895641]
-- [usb] check sg buffer size in usb_submit_urb (Don Zickus) [895641]
-- [usb] isp1362: move debug files from proc to debugfs (Don Zickus) [895641]
-- [usb] sl811: move debug files from proc to debugfs (Don Zickus) [895641]
-- [usb] remove unneeded idr.h include (Don Zickus) [895641]
-- [usb] sl811: remove CONFIG_USB_DEBUG dependency (Don Zickus) [895641]
-- [usb] isp116x: remove dependency on CONFIG_USB_DEBUG (Don Zickus) [895641]
-- [usb] isp1362: remove CONFIG_USB_DEBUG dependency (Don Zickus) [895641]
-- [usb] isp1362: remove _DBG() usage (Don Zickus) [895641]
-- [usb] isp1362: remove unused _WARN_ON() calls (Don Zickus) [895641]
-- [usb] isp1362: remove unused _BUG_ON() calls (Don Zickus) [895641]
-- [usb] usbatm: remove CONFIG_USB_DEBUG dependancy (Don Zickus) [895641]
-- [usb] usbatm: move the atm_dbg() call to use dynamic debug (Don Zickus) [895641]
-- [usb] usbatm: don't rely on CONFIG_USB_DEBUG (Don Zickus) [895641]
-- [usb] usbatm: remove unneeded trace printk calls (Don Zickus) [895641]
-- [usb] usbatm: remove unused UDSL_ASSERT macro (Don Zickus) [895641]
-- [usb] ti_usb_3410_5052: remove vendor/product module parameters (Don Zickus) [895641]
-- [usb] ti_usb_3410_5052: remove unused wait queue (Don Zickus) [895641]
-- [usb] ti_usb_3410_5052: kill private fifo (Don Zickus) [895641]
-- [usb] safe_serial: remove vendor/product module parameters (Don Zickus) [895641]
-- [usb] mos7840: remove broken chase implementation (Don Zickus) [895641]
-- [usb] io_ti: move port initialisation to probe (Don Zickus) [895641]
-- [usb] io_ti: kill private fifo (Don Zickus) [895641]
-- [usb] io_edgeport: remove unused defines (Don Zickus) [895641]
-- [usb] ftdi_sio: remove unused defines (Don Zickus) [895641]
-- [usb] ftdi_sio: remove vendor/product module parameters (Don Zickus) [895641]
-- [usb] ftdi_sio: remove redundant raise of DTR/RTS at open (Don Zickus) [895641]
-- [usb] ftdi_sio: clean up device initialisation (Don Zickus) [895641]
-- [usb] oti6858: do not call set_termios with uninitialised data (Don Zickus) [895641]
-- [usb] pl2303: remove debugging noise (Don Zickus) [895641]
-- [usb] pl2303: clean up set_termios (Don Zickus) [895641]
-- [usb] pl2303: clean up baud-rate handling (Don Zickus) [895641]
-- [usb] pl2303: refactor baud-rate handling (Don Zickus) [895641]
-- [usb] console: remove unnecessary operations test (Don Zickus) [895641]
-- [usb] console: use dev_dbg (Don Zickus) [895641]
-- [usb] serial: set drain delay at port probe (Don Zickus) [895641]
-- [usb] serial: clean up dtr_rts (Don Zickus) [895641]
-- [usb] serial: remove hupping check from tiocmiwait (Don Zickus) [895641]
-- [usb] serial: remove defensive test from set_termios (Don Zickus) [895641]
-- [usb] misc: remove CONFIG_USB_DEBUG from Makefile (Don Zickus) [895641]
-- [usb] adutux: remove direct calls to printk() (Don Zickus) [895641]
-- [usb] adutux: remove custom debug macro and module parameter (Don Zickus) [895641]
-- [usb] adutux: remove custom debug macro (Don Zickus) [895641]
-- [usb] adutux: remove unneeded tracing macros (Don Zickus) [895641]
-- [usb] legotower: remove direct calls to printk() (Don Zickus) [895641]
-- [usb] legotower: remove custom debug macro and module parameter (Don Zickus) [895641]
-- [usb] legousbtower: remove custom debug macro (Don Zickus) [895641]
-- [usb] legotower: remove unneeded tracing macros (Don Zickus) [895641]
-- [usb] ldusb: remove custom dbg_info() macro (Don Zickus) [895641]
-- [usb] xhci: Correct misplaced newlines (Don Zickus) [1016889]
-- [usb] xhci: refactor EHCI/xHCI port switching (Don Zickus) [1016889 970717]
-- [usb] xhci: Report USB 2.1 link status for L1 (Don Zickus) [1016889]
-- [usb] xhci: Refactor port status into a new function (Don Zickus) [1016889]
-- [usb] xhci: add the suspend/resume functionality (Don Zickus) [1016889]
-- [usb] move the definition of USB_MAXCHILDREN (Don Zickus) [895641]
-- [usb] atm: avoid parsing names as kthread_run() format strings (Don Zickus) [895641]
-- [usb] xhci: Add missing unlocks on error paths (Don Zickus) [895641]
-- [usb] ehci-atmel: prepare clk before calling enable (Don Zickus) [895641]
-- [usb] hwa: fix device probe failure (Don Zickus) [895641]
-- [usb] wusbcore: add sysfs attribute for retry count (Don Zickus) [895641]
-- [usb] wusbcore: add sysfs attribute for DNTS count and interval (Don Zickus) [895641]
-- [usb] check usb_hub_to_struct_hub() return value (Don Zickus) [895641]
-- [usb] ehci: Remove double assignment of .start in ehci_msp_hc_driver (Don Zickus) [895641]
-- [usb] ehci: export ehci_handshake for ehci-hcd sub-drivers (Don Zickus) [895641]
-- [usb] wusbcore: add scatter gather support (Don Zickus) [895641]
-- [usb] cdc-acm: remove unneeded spin_lock_irqsave/restore on write path (Don Zickus) [895641]
-- [usb] serial: increase the number of devices we support (Don Zickus) [895641]
-- [usb] serial: make minor allocation dynamic (Don Zickus) [895641]
-- [usb] xhci: remove BUG() in xhci_get_endpoint_type() (Don Zickus) [895641]
-- [usb] xhci: Remove BUG in xhci_setup_addressable_virt_dev (Don Zickus) [895641]
-- [usb] xhci: Remove BUG_ON in xhci_get_input_control_ctx (Don Zickus) [895641]
-- [usb] xhci: Remove BUG_ON() in xhci_alloc_container_ctx (Don Zickus) [895641]
-- [usb] ehci-platform: add pre_setup() method to platform data (Don Zickus) [895641]
-- [usb] serial: add minor and port number (Don Zickus) [895641]
-- [usb] wusbcore: ignore HWA_NOTIF_BPST_ADJ notifications (Don Zickus) [895641]
-- [usb] wusbcore: add HWA-specific fields to usb_rpipe_descriptor (Don Zickus) [895641]
-- [usb] wusbhc: disable suspend and resume on the root hub (Don Zickus) [895641]
-- [usb] fix PTR_ERR translation in init_usb_class() (Don Zickus) [895641]
-- [usb] wusbcore: reduce keepalive threshold from timeout/2 to timeout/3 (Don Zickus) [895641]
-- [usb] host: make USB_ARCH_HAS_?HCI obsolete (Don Zickus) [895641]
-- [usb] ohci: remove bogus #error (Don Zickus) [895641]
-- [usb] add usb2 Link PM variables to sysfs and usb_device (Don Zickus) [895641]
-- [usb] xhci: add USB2 Link power management BESL support (Don Zickus) [895641]
-- [usb] xhci: define port register names and use them instead of magic numbers (Don Zickus) [895641]
-- [usb] xhci: check usb2 port capabilities before adding hw link PM support (Don Zickus) [895641]
-- [usb] xhci: unify parameter of xhci_msi_irq (Don Zickus) [895641]
-- [usb] xhci-dbg: Display endpoint number and direction in context dump (Don Zickus) [895641]
-- [usb] serial: pl2303 works at 500kbps (Don Zickus) [895641]
-- [usb] ohci: add a name for the platform-private field (Don Zickus) [895641]
-- [usb] ohci: make ohci-platform a separate driver (Don Zickus) [895641]
-- [usb] misc/usb3503: Remove 100ms sleep on reset, conform to data sheet (Don Zickus) [895641]
-- [usb] misc/usb3503: Fix up whitespace (Don Zickus) [895641]
-- [usb] Allow the USB HCD to create Wireless USB root hubs (Don Zickus) [895641]
-- [usb] serial: add support Infineon modem USB flashloader driver (Don Zickus) [895641]
-- [usb] ohci: make ohci-pci a separate driver (Don Zickus) [895641]
-- [usb] ohci: Generic changes to make ohci-pci a separate driver (Don Zickus) [895641]
-- [usb] ohci: prepare to make ohci-hcd a library module (Don Zickus) [895641]
-- [usb] fhci: upgrade the isochronous API (Don Zickus) [895641]
-- [usb] imx21: upgrade the isochronous API (Don Zickus) [895641]
-- [usb] serial: dump small buffers with help of *ph (Don Zickus) [895641]
-- [usb] host: remove leftover release_mem_region (Don Zickus) [895641]
-- [usb] misc/usb3503: Adding device tree entry 'disabled-ports' (Don Zickus) [895641]
-- [usb] misc/usb3503: Add to select the ports to disable (Don Zickus) [895641]
-- [usb] ehci: Only sleep for post-resume handover if devices use persist (Don Zickus) [895641]
-- [usb] message: Fixed parenthesis error in sizeof function (Don Zickus) [895641]
-- [usb] message: fixed error 'no space before bracket' (Don Zickus) [895641]
-- [usb] devio: fixed error 'do not use assignment in if condition' (Don Zickus) [895641]
-- [usb] devio: Fixed macro parenthesis error (Don Zickus) [895641]
-- [usb] devio: fixed warning 'use <linux/uacces.h> instead <asm/uacces.h>' (Don Zickus) [895641]
-- [usb] usbtmc: Change magic number to constant (Don Zickus) [895641]
-- [usb] usbtmc: usbtmc_read sends multiple TMC header based on rigol_quirk (Don Zickus) [895641]
-- [usb] usbtmc: Set rigol_quirk if device is listed (Don Zickus) [895641]
-- [usb] usbtmc: TMC request code segregated from usbtmc_read (Don Zickus) [895641]
-- [usb] usbtmc: Add flag rigol_quirk to usbtmc_device_data (Don Zickus) [895641]
-- [usb] storage/alauda: initialize variables directly (Don Zickus) [895641]
-- [usb] storage/sddr09: initialize variables directly (Don Zickus) [895641]
-- [usb] fsl: add missing platform_driver owner (Don Zickus) [895641]
-- [usb] quatech2: Staticize local symbol (Don Zickus) [895641]
-- [usb] misc: Fixed assignment error in if statement (Don Zickus) [895641]
-- [usb] misc: Added space after closing brace in adutux.c (Don Zickus) [895641]
-- [usb] misc: Added space after comma in adutux.c (Don Zickus) [895641]
-- [usb] misc: Reformatted pointer variables in adutux.c (Don Zickus) [895641]
-- [usb] misc: Removed space before tabs in adutux.c (Don Zickus) [895641]
-- [usb] misc: Replaced deprecated preprocessor in adutux.c (Don Zickus) [895641]
-- [fs] nfsd: fix discarded security labels on setattr (J. Bruce Fields) [1025832]
-- [fs] nfs: fix inverted test for delegation in nfs4_reclaim_open_state (Jeff Layton) [1025457]
-- [x86] kdump: crashkernel=X try to reserve below 896M first, then try below 4G, then MAXMEM (Chao WANG) [994685]
-- [kernel] audit: format user messages to size of MAX_AUDIT_MESSAGE_LENGTH (Richard Guy Briggs) [1019913]
-- [kernel] audit_alloc: clear TIF_SYSCALL_AUDIT if !audit_context (Richard Guy Briggs) [1026043]
-
-* Fri Nov 08 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-48.el7]
-- [ethernet] qlcnic: Update version to 5.3.48 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Implement ndo_get_phys_port_id for 82xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enable diagnostic test for multiple Tx queues (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enable Tx queue changes using ethtool for 82xx Series adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Multi Tx queue support for 82xx Series adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.3.47 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add support for 84xx adapters to load firmware from file (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Loopback Inter Driver Communication AEN handler (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add PVID support for 84xx adapters (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enable support for 844X adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.2.46 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Dump mailbox command data when a command times out (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix driver initialization for 83xx adapters (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Flush mailbox command list when mailbox is not available (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Reinitialize mailbox data structures after firmware reset (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix diagnostic interrupt test for 83xx adapters (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix beacon state return status handling (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix set driver version command (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix for flash update failure on 83xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix link speed and duplex display for 83xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix link speed display for 82xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix external loopback test (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Removed adapter series name from warning messages (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Free up memory in error path (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix ingress MAC learning (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix MAC address filter issue on 82xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.2.45 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enable mailbox interface in poll mode when interrupts are not available (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Replace poll mode mailbox interface with interrupt based mailbox interface (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Interrupt based driver firmware mailbox mechanism (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enhance diagnostic loopback error codes (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix diagnostic interrupt test for 83xx adapters (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix setting Guest VLAN (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix operation type and command type (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix initialization of work function (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix guest VLAN (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix releasing of Tx frag which was never mapped (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix dump template version mask (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix ethtool display for 83xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix panic while setting VF's MAC address (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix multicast packet handling for PF and VF (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix NULL pointer dereference in VF probe path (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Set __QLCNIC_DEV_UP in adapter state before enabling interrupts (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix invalid register offset calculation (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.2.44 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add support for 83xx suspend and resume (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add support for 'set driver version' in 83XX (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Cleanup of structure qlcnic_hardware_context (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Add support for PEX DMA method to read memory section of adapter dump (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Minimize sleep duration within loopback diagnostic test (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Secondary unicast MAC address support (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Handle qlcnic_alloc_mbx_args() failure (Chad Dupuis) [725018]
-- [ethernet] qlcnic: replace strict_strtoul() with kstrtoul() (Chad Dupuis) [725018]
-- [ethernet] qlcnic: remove redundant D0 power state set (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Fix typo in printk (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update version to 5.2.43 (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Enhance virtual NIC logging (Chad Dupuis) [725018]
-- [ethernet] qlcnic: qlcnic_get_board_name() function cleanup (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Implement GET_LED_STATUS command for 82xx adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: modify reset recovery path in diag mode (Chad Dupuis) [725018]
-- [ethernet] qlcnic: diagnostics routine changes (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Convert nested if-else to switch-case (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Initialize trans_work and idc_aen_work at VF probe (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Remove qlcnic_config_npars module parameter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Update IRQ name for 8200 and 8300 Series adapter (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Disable INT-x interrupt for 83xx on driver unload (Chad Dupuis) [725018]
-- [ethernet] qlcnic: Support spoof check config (Chad Dupuis) [725018]
-- [x86] Fix x86 invalid cpu boot failure message (Prarit Bhargava) [1024731]
-- [virt] virtio-net: refill only when device is up during setting queues (Jason Wang) [1016469]
-- [crypto] crc-t10dif: add MODULE_SOFTDEP (Kyle McMartin) [968869]
-- [crypto] crct10dif: Add fallback for broken initrds (Kyle McMartin) [968869]
-- [crypto] crct10dif: Use PTR_RET (Kyle McMartin) [968869]
-- [crypto] crct10dif: Simple correctness and speed test for CRCT10DIF hash (Kyle McMartin) [968869]
-- [crypto] crct10dif: Glue code to cast accelerated CRCT10DIF assembly as a crypto transform (Kyle McMartin) [968869]
-- [crypto] crct10dif: Accelerated CRC T10 DIF computation with PCLMULQDQ instruction (Kyle McMartin) [968869]
-- [crypto] crct10dif: Wrap crc_t10dif function all to use crypto transform framework (Kyle McMartin) [968869]
-- [kernel] modules: add support for soft module dependencies (Kyle McMartin) [968869]
-- [misc] mei: don't get stuck in select during reset (Prarit Bhargava) [1025420]
-- [misc] mei/bus: do not overflow the device name buffer (Prarit Bhargava) [1025420]
-- [misc] mei: wake also writers on reset (Prarit Bhargava) [1025420]
-- [misc] mei/hbm: fix typo in error message (Prarit Bhargava) [1025420]
-- [misc] mei: check whether hw start has succeeded (Prarit Bhargava) [1025420]
-- [misc] mei: check if the hardware reset succeeded (Prarit Bhargava) [1025420]
-- [misc] mei: mei_cl_connect, don't multiply the timeout twice (Prarit Bhargava) [1025420]
-- [misc] mei: do not override a client writing state when buffering (Prarit Bhargava) [1025420]
-- [misc] mei: move mei_cl_irq_write_complete to client.c (Prarit Bhargava) [1025420]
-- [misc] mei: support HBM versioning (Prarit Bhargava) [1025420]
-- [nfc] mei_phy: Clean up file (Prarit Bhargava) [1025420]
-- [misc] mei: move mei_cl_complete to client.c (Prarit Bhargava) [1025420]
-- [misc] mei: revamp interrupt thread handlers (Prarit Bhargava) [1025420]
-- [virt] virtio-net: correctly handle cpu hotplug notifier during resuming (Jason Wang) [1016996]
-- [virt] virtio-net: don't respond to cpu hotplug notifier if we're not ready (Jason Wang) [1016996]
-- [fs] nfs: fix handling of invalid mount options in nfs_remount (Jeff Layton) [1021538]
-- [fs] nfs: reject version and minorversion changes on remount attempts (Jeff Layton) [1021538]
-- [drm] qxl: avoid an oops in the deferred io code (Dave Airlie) [1003728 1026182]
-- [drm] qxl: fix disabling extra monitors from client (Dave Airlie) [1026182]
-- [drm] qxl: remove unnecessary check (Dave Airlie) [1026182]
-- [drm] qxl: prefer the monitor config resolution (Dave Airlie) [1026182]
-- [drm] copy mode type in drm_mode_connector_list_update() (Dave Airlie) [1026182]
-- [drm] qxl: notify that the monitor config changed (Dave Airlie) [1026182]
-- [drm] return if changed in drm_helper_hpd_irq_event() (Dave Airlie) [1026182]
-- [block] rsxx: Fix possible kernel panic with invalid config (Steve Best) [1024550]
-- [block] rsxx: Disallow discards from being unmapped (Steve Best) [1024550]
-- [virt] hid-hyperv: convert alloc+memcpy to memdup (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Increase the value of STORVSC_MAX_IO_REQUESTS (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Support FC devices (Jason Wang) [1026618]
-- [virt] hyperv: Add the GUID fot synthetic fibre channel device (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Implement multi-channel support (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Update the storage protocol to win8 level (Jason Wang) [1026618]
-- [virt] hyperv/storvsc: Increase the value of scsi timeout for storvsc devices (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: Terminate vmbus version negotiation on timeout (Jason Wang) [1026618]
-- [virt] hv_util: Correctly support ws2008R2 and earlier (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: Do not attempt to negoatiate a new version prematurely (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: Fix a bug in the handling of channel offers (Jason Wang) [1026618]
-- [virt] hyperv: remove HV_DRV_VERSION (Jason Wang) [1026618]
-- [virt] hv_balloon: Initialize the transaction ID just before sending the packet (Jason Wang) [1026618]
-- [virt] hv_util: Fix a bug in version negotiation code for util services (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: incorrect device name is printed when child device is unregistered (Jason Wang) [1026618]
-- [virt] hyperv: allocate synic structures before hv_synic_init() (Jason Wang) [1026618]
-- [virt] hyperv: check interrupt mask before read_index (Jason Wang) [1026618]
-- [virt] hyperv/vmbus: Implement multi-channel support (Jason Wang) [1026618]
-
-* Thu Nov 07 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-47.el7]
-- [net] bridge: pass correct vlan id to multicast code (Vlad Yasevich) [912737]
-- [net] bridge: Fix updating FDB entries when the PVID is applied (Vlad Yasevich) [912737]
-- [net] bridge: Fix the way the PVID is referenced (Vlad Yasevich) [912737]
-- [net] bridge: Apply the PVID to priority-tagged frames (Vlad Yasevich) [912737]
-- [net] bridge: Don't use VID 0 and 4095 in vlan filtering (Vlad Yasevich) [912737]
-- [net] bridge: Correctly clamp MAX forward_delay when enabling STP (Vlad Yasevich) [997814]
-- [net] bridge: Clamp forward_delay when enabling STP (Vlad Yasevich) [997814]
-- [net] ipv6: mld: introduce mld_{gq, ifc, dad}_stop_timer functions (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: refactor query processing into v1/v2 functions (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: similarly to MLDv2 have min max_delay of 1 (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: implement RFC3810 MLDv2 mode only (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: get rid of MLDV2_MRC and simplify calculation (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: clean up MLD_V1_SEEN macro (Daniel Borkmann) [1023947]
-- [net] ipv6: mld: fix v1/v2 switchback timeout to rfc3810, 9.12. (Daniel Borkmann) [1023947]
-- [net] ipv6: mcast: use defines for rfc3810/8.1 lengths (Daniel Borkmann) [1023947]
-- [net] ipv6: *_start_timer: rather use unsigned long (Daniel Borkmann) [1023947]
-- [net] ipv6: igmp6_event_query: use msecs_to_jiffies (Daniel Borkmann) [1023947]
-- [net] ipv6: make unsolicited report intervals configurable for mld (Daniel Borkmann) [1023947]
-- [net] ipv4, ipv6: send igmpv3/mld packets with TC_PRIO_CONTROL (Daniel Borkmann) [1023947]
-- [net] bridge: disable snooping if there is no querier (Vlad Yasevich) [1019950]
-- [net] unix: inherit SOCK_PASS{CRED, SEC} flags from socket to fix race (Daniel Borkmann) [1023964]
-
-* Thu Nov 07 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-46.el7]
-- [scsi] aacraid: missing capable() check in compat ioctl (Rich Bono) [1025840]
-- [scsi] scsi_dh_rdac: Add new IBM 1813 product id to rdac devlist (Rob Evers) [1020969]
-- [scsi] aic94xx: remove driver (Rich Bono) [978980]
-- [scsi] qla4xxx: Populate local CHAP credentials for flash target sessions (Chad Dupuis) [1006158]
-- [scsi] qla4xxx: Support setting of local CHAP index for flash target entry (Chad Dupuis) [1006158]
-- [scsi] qla4xxx: Correct the check for local CHAP entry type (Chad Dupuis) [1006158]
-- [scsi] qla4xxx: correctly update session discovery_parent_idx (Chad Dupuis) [1020197]
-- [scsi] aacraid: avoid parsing names as kthread_run() format strings (Rich Bono) [752081]
-- [scsi] hpsa: return 0 from driver probe function on success, not 1 (Tomas Henzl) [862713]
-- [scsi] hpsa: remove unused Smart Array ID (Tomas Henzl) [862713]
-- [scsi] hpsa: bump driver version to reflect changes (Tomas Henzl) [862713]
-- [scsi] hpsa: housekeeping patch for device_id and product arrays (Tomas Henzl) [862713]
-- [scsi] hpsa: add HP Smart Array Gen8 names (Tomas Henzl) [862713]
-- [scsi] hpsa: add HP Smart Array Gen9 PCI ID's (Tomas Henzl) [862713]
-- [treewide] Convert retrun typos to return (Tomas Henzl) [862713]
-- [scsi] hpsa: fix warning with smp_processor_id() in preemptible (Tomas Henzl) [862713]
-- [scsi] hpsa: remove unneeded variable (Tomas Henzl) [862713]
-- [scsi] hpsa: fix a race in cmd_free/scsi_done (Tomas Henzl) [862713]
-
-* Thu Nov 07 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-45.el7]
-- [ethernet] tg3: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1024060]
-- [ethernet] tg3: Miscellaneous conversions to ETH_ALEN (Ivan Vecera) [1024060]
-- [ethernet] tg3: use phylib when robo switch is in use (Ivan Vecera) [1024060]
-- [netdrv] ssb: provide phy address for Gigabit Ethernet driver (Ivan Vecera) [1024060]
-- [ethernet] tg3: add support a phy at an address different than 01 (Ivan Vecera) [1024060]
-- [ethernet] tg3: Update version to 3.134 (Ivan Vecera) [1024060]
-- [ethernet] tg3: Remove unnecessary spinlock (Ivan Vecera) [1024060]
-- [ethernet] tg3: Appropriately classify interrupts during request_irq (Ivan Vecera) [1024060]
-- [ethernet] tg3: Remove redundant if check (Ivan Vecera) [1024060]
-- [ethernet] tg3: Remove if 0'd code (Ivan Vecera) [1024060]
-- [ethernet] tg3: LED in shared mode does not blink during traffic (Ivan Vecera) [1024060]
-- [ethernet] tg3: Add support for new 577xx device ids (Ivan Vecera) [1024060]
-- [ethernet] tg3: Add function tg3_phy_shdw_write() (Ivan Vecera) [1024060]
-- [ethernet] tg3: Use pci_dev pm_cap (Ivan Vecera) [1024060]
-- [ethernet] tg3: Expand led off fix to include 5720 (Ivan Vecera) [1024060]
-- [s390] cio: Introduce on-close CHSC IOCTLs (Hendrik Brueckner) [1022446]
-- [s390] cio: Make /dev/chsc a single-open device (Hendrik Brueckner) [1022442]
-- [s390] cio: Introduce generic synchronous CHSC IOCTL (Hendrik Brueckner) [1022441]
-- [s390] sclp: Add SCLP character device driver (Hendrik Brueckner) [1022425]
-- [virt] kvm: Create non-coherent DMA registeration (Alex Williamson) [1025470]
-- [virt] kvm: Convert iommu_flags to iommu_noncoherent (Alex Williamson) [1025470]
-- [virt] kvm: Add VFIO device (Alex Williamson) [1025470]
-- [vfio] vfio_iommu_type1: fix bug caused by break in nested loop (Alex Williamson) [1025468]
-- [vfio] fix documentation more (Alex Williamson) [1025468]
-- [vfio] vfio-pci: PCI hot reset interface (Alex Williamson) [1025468]
-- [vfio] vfio-pci: Test for extended config space (Alex Williamson) [1025468]
-- [vfio] vfio-pci: Use fdget() rather than eventfd_fget() (Alex Williamson) [1025468]
-- [vfio] Add O_CLOEXEC flag to vfio device fd (Alex Williamson) [1025468]
-- [vfio] use get_unused_fd_flags(0) instead of get_unused_fd() (Alex Williamson) [1025468]
-- [vfio] add external user support (Alex Williamson) [1025468]
-- [vfio] fix documentation (Alex Williamson) [1025468]
-- [block] blk-throttle: Enable hierarchy even when sane mount flag is not specified (Vivek Goyal) [1015648]
-- [block] blk-throttle: implement proper hierarchy support (Vivek Goyal) [1015648]
-- [block] blk-throttle: implement throtl_grp->has_rules[] (Vivek Goyal) [1015648]
-- [block] blk-throttle: Account for child group's start time in parent while bio climbs up (Vivek Goyal) [1015648]
-- [block] blk-throttle: add throtl_qnode for dispatch fairness (Vivek Goyal) [1015648]
-- [block] blk-throttle: make throtl_pending_timer_fn() ready for hierarchy (Vivek Goyal) [1015648]
-- [block] blk-throttle: make tg_dispatch_one_bio() ready for hierarchy (Vivek Goyal) [1015648]
-- [block] blk-throttle: make blk_throtl_bio() ready for hierarchy (Vivek Goyal) [1015648]
-- [block] blk-throttle: make blk_throtl_drain() ready for hierarchy (Vivek Goyal) [1015648]
-- [block] blk-throttle: dispatch from throtl_pending_timer_fn() (Vivek Goyal) [1015648]
-- [block] blk-throttle: implement dispatch looping (Vivek Goyal) [1015648]
-- [block] blk-throttle: separate out throtl_service_queue->pending_timer from throtl_data->dispatch_work (Vivek Goyal) [1015648]
-- [block] blk-throttle: set REQ_THROTTLED from throtl_charge_bio() and gate stats update with it (Vivek Goyal) [1015648]
-- [block] blk-throttle: move bio_lists[], implement sq_to_tg(), sq_to_td() and throtl_log() (Vivek Goyal) [1015648]
-- [block] blk-throttle: add throtl_service_queue->parent_sq (Vivek Goyal) [1015648]
-- [block] blk-throttle: generalize update_disptime optimization in blk_throtl_bio() (Vivek Goyal) [1015648]
-- [block] blk-throttle: move bio_lists[] blk-throttle: dispatch to throtl_data->service_queue.bio_lists[] (Vivek Goyal) [1015648]
-- [block] blk-throttle: move bio_lists[] and friends to throtl_service_queue (Vivek Goyal) [1015648]
-- [block] blk-throttle: add throtl_grp->service_queue (Vivek Goyal) [1015648]
-- [block] blk-throttle: reorganize throtl_service_queue passed around as argument (Vivek Goyal) [1015648]
-- [block] blk-throttle: pass around throtl_service_queue instead of throtl_data (Vivek Goyal) [1015648]
-- [block] blk-throttle: add backlink pointer from throtl_grp to throtl_data (Vivek Goyal) [1015648]
-- [block] blk-throttle: simplify throtl_grp flag handling (Vivek Goyal) [1015648]
-- [block] blk-throttle: rename throtl_rb_root to throtl_service_queue (Vivek Goyal) [1015648]
-- [block] blk-throttle: remove pointless throtl_nr_queued() optimizations (Vivek Goyal) [1015648]
-- [block] blk-throttle: relocate throtl_schedule_delayed_work() (Vivek Goyal) [1015648]
-- [block] blk-throttle: collapse throtl_dispatch() into the work function (Vivek Goyal) [1015648]
-- [block] blk-throttle: remove deferred config application mechanism (Vivek Goyal) [1015648]
-- [block] blk-throttle: remove spurious throtl_enqueue_tg() call from throtl_select_dispatch() (Vivek Goyal) [1015648]
-- [block] blkcg: move bulk of blkcg_gq release operations to the RCU callback (Vivek Goyal) [1015648]
-- [block] blkcg: invoke blkcg_policy->pd_init() after parent is linked (Vivek Goyal) [1015648]
-- [block] blkcg: implement blkg_for_each_descendant_post() (Vivek Goyal) [1015648]
-- [block] blkcg: move blkg_for_each_descendant_pre() to block/blk-cgroup.h (Vivek Goyal) [1015648]
-- [block] blkcg: fix error return path in blkg_create() (Vivek Goyal) [1015648]
-- [char] ipmi: Add MODULE_ALIAS for autoloading ipmi driver on ACPI systems (Shyam Iyer) [844867]
-
-* Wed Nov 06 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-44.el7]
-- [security] keys: Fix UID check in keyctl_get_persistent() (David Howells) [991110]
-- [security] keys: fix error return code in big_key_instantiate() (David Howells) [991110]
-- [powerpc] tm: Switch out userspace PPR and DSCR sooner (Steve Best) [1016823]
-- [virt] kvm: fix KVM_SET_XCRS loop (Paolo Bonzini) [1007897]
-- [virt] kvm: fix KVM_SET_XCRS for CPUs that do not support XSAVE (Paolo Bonzini) [1007897]
-- [virt] kvm: only copy XSAVE state for the supported features (Paolo Bonzini) [1007897]
-- [virt] kvm: prevent setting unsupported XSAVE states (Paolo Bonzini) [1007897]
-- [virt] kvm: mask unsupported XSAVE entries from leaf 0Dh index 0 (Paolo Bonzini) [1007897]
-- [ethernet] bnx2x: remove unnecessary pci_set_drvdata() (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Add ndo_get_phys_port_id support (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Change variable type to bool (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: skb_is_gso_v6() requires skb_is_gso() (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: use pcie_get_minimum_link() (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Add support for EXTPHY2 LED mode (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Change function prototype (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Don't disable/enable SR-IOV when loading (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Correct VF driver info (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Test nvram when interface is down (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Staticize local symbols (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Disable VF access on PF removal (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: prevent FW assert on low mem during unload (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Set NETIF_F_HIGHDMA unconditionally (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Don't pretend during register dump (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Lock DMAE when used by statistic flow (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Prevent null pointer dereference on error flow (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix config when SR-IOV and iSCSI are enabled (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix Coalescing configuration (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Unlock VF-PF channel on MAC/VLAN config error (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Prevent an illegal pointer dereference during panic (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix Maximum CoS estimation for VFs (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: record rx queue for LRO packets (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: handle known but unsupported VF messages (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: prevent masked MCP parities from appearing (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: prevent masking error from cnic (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: add missing VF resource allocation during init (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix support for VFs on some PFs (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Prevent mistaken hangup between driver & FW (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix 848xx duplex settings (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Specific Active-DAC is not detected on 57810 (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: 57840 non-external loopback test fail on 1G (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: KR2 disablement fix (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Generalize KR work-around (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix bnx2i and bnx2fc regressions (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Use pci_dev pm_cap (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: avoid atomic allocations during initialization (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Fix configuration of doorbell block (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Restore a call to config_init (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: fix broken compilation with CONFIG_BNX2X_SRIOV is not set (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: Add missing braces in bnx2x:bnx2x_link_initialize (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: VF RSS support - VF side (Michal Schmidt) [1022068]
-- [ethernet] bnx2x: VF RSS support - PF side (Michal Schmidt) [1022068]
-- [virt] hyperv-fb: add pci stub (Gerd Hoffmann) [1019185]
-- [ethernet] ixgbevf: move API neg to reset path (Andy Gospodarek) [1023107]
-- [ethernet] bna: firmware update to 3.2.1.1 (Ivan Vecera) [1007080]
-- [fs] nfs: Fix a missing initialisation when reading the SELinux label (Jeff Layton) [1019591]
-- [fs] nfs: fix oops when trying to set SELinux label (Jeff Layton) [1019591]
-- [ethernet] r8169: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1025463]
-- [ethernet] r8169: fix invalid register dump (Ivan Vecera) [1025463]
-- [ethernet] r8169: remember WOL preferences on driver load (Ivan Vecera) [1025463]
-- [ethernet] r8169, sis190: remove unnecessary length check (Ivan Vecera) [1025463]
-- [ethernet] r8169: remove "PHY reset until link up" log spam (Ivan Vecera) [1025463]
-- [ethernet] r8169: fix lockdep warning when removing interface (Ivan Vecera) [1025463]
-- [ethernet] r8169: add a new chip for RTL8411 (Ivan Vecera) [1025463]
-- [ethernet] be2net: Make lancer_wait_ready() static (Ivan Vecera) [1025412]
-- [ethernet] be2net: Remove interface type (Ivan Vecera) [1025412]
-- [ethernet] be2net: add support for ndo_busy_poll (Ivan Vecera) [1025412]
-- [ethernet] be2net: Warn users of possible broken functionality on BE2 cards with very old FW versions with latest driver (Ivan Vecera) [1025412]
-- [ethernet] be2net: remove unnecessary pci_set_drvdata() (Ivan Vecera) [1025412]
-- [ethernet] be2net: Rework PCIe error report log messaging (Ivan Vecera) [1025412]
-- [ethernet] be2net: change the driver version number to 4.9.224.0 (Ivan Vecera) [1025412]
-- [ethernet] be2net: Display RoCE specific counters in ethtool -S (Ivan Vecera) [1025412]
-- [ethernet] be2net: Call version 2 of GET_STATS ioctl for Skyhawk-R (Ivan Vecera) [1025412]
-- [ethernet] be2net: add a counter for pkts dropped in xmit path (Ivan Vecera) [1025412]
-- [ethernet] be2net: fix adaptive interrupt coalescing (Ivan Vecera) [1025412]
-- [ethernet] be2net: call ENABLE_VF cmd for Skyhawk-R too (Ivan Vecera) [1025412]
-- [ethernet] be2net: Create single TXQ on BE3-R 1G ports (Ivan Vecera) [1025412]
-- [ethernet] be2net: pass if_id for v1 and V2 versions of TX_CREATE cmd (Ivan Vecera) [1025412]
-- [ethernet] be2net: Call be_vf_setup() even when VFs are enbaled from previous load (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix to display the VLAN priority for a VF (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix to configure VLAN priority for a VF interface (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix to allow VLAN configuration on VF interfaces (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix number of VLANs supported in UMC mode for BE3-R (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix VLAN promiscuous mode programming (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix the size of be_nic_res_desc structure (Ivan Vecera) [1025412]
-- [ethernet] be2net: Fix to prevent Tx stall on SH-R when packet size < 32 (Ivan Vecera) [1025412]
-- [ethernet] be2net: Remove extern from function prototypes (Ivan Vecera) [1025412]
-- [ethernet] be2net: missing variable initialization (Ivan Vecera) [1025412]
-- [drm] cirrus: do not attempt to acquire a reservation while in an interrupt handler (Gerd Hoffmann) [1017433]
-- [drm] cirrus: Invalidate page tables when pinning a BO (Gerd Hoffmann) [1017433]
-- [virt] kvm: introduce guest count uevent (Paolo Bonzini) [1004799]
-- [ata] libahci: fix turning on LEDs in ahci_start_port() (David Milburn) [1024388]
-- [kernel] audit: do not reject all AUDIT_INODE filter types (Richard Guy Briggs) [985971]
-- [fs] fuse: drop dentry on failed revalidate (Brian Foster) [1006514]
-- [fs] fuse: clean up return in fuse_dentry_revalidate() (Brian Foster) [1006514]
-- [fs] fuse: use d_materialise_unique() (Brian Foster) [1006514]
-- [fs] sysfs: use check_submounts_and_drop() (Brian Foster) [1006514]
-- [fs] nfs: use check_submounts_and_drop() (Brian Foster) [1006514]
-- [fs] gfs2: use check_submounts_and_drop() (Brian Foster) [1006514]
-- [fs] vfs: check unlinked ancestors before mount (Brian Foster) [1006514]
-- [fs] vfs: check submounts and drop atomically (Brian Foster) [1006514]
-- [fs] vfs: add d_walk() (Brian Foster) [1006514]
-- [fs] vfs: restructure d_genocide() (Brian Foster) [1006514]
-- [powerpc] Only save/restore SDR1 if in hypervisor mode (Steve Best) [1018639]
-- [wireless] brcmsmac: Further reduce log spam from tx phy messages (John Green) [974223]
-- [wireless] brcmsmac: Reduce log spam in heavy tx, make err print in debug (John Green) [974223]
-
-* Wed Nov 06 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-43.el7]
-- [misc] synchronize with upstream linux-3.10.y stable branch up to 3.10.17 (Veaceslav Falico) [1006938]
-
-* Tue Nov 05 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-42.el7]
-- [kernel] keys: align system_certificate_list (Jan Stancek) [985961]
-- [security] keys: Fix keyring quota misaccounting on key replacement and unlink (David Howells) [1017806 991110]
-- [security] keys: Fix a race between negating a key and reading the error set (David Howells) [991110]
-- [security] keys: Make BIG_KEYS boolean (David Howells) [991110]
-- [crypto] x.509: remove possible code fragility, enumeration values not handled (David Howells) [985961]
-- [crypto] x.509: add module description and license (David Howells) [985961]
-- [lib] mpi: add module description and license (David Howells) [985961]
-- [security] keys: initialize root uid and session keyrings early (David Howells) [985961]
-- [crypto] keys: verify a certificate is signed by a 'trusted' key (David Howells) [985961]
-- [kernel] keys: Make the system 'trusted' keyring viewable by userspace (David Howells) [985961]
-- [crypto] keys: Set the asymmetric-key type default search method (David Howells) [985961]
-- [security] keys: Add a 'trusted' flag and a 'trusted only' flag (David Howells) [985961]
-- [kernel] keys: Separate the kernel signature checking keyring from module signing (David Howells) [985961]
-- [kernel] keys: Have make canonicalise the paths of the X.509 certs better to deduplicate (David Howells) [985961]
-- [kernel] modsign: Load *.x509 files into kernel keyring (David Howells) [985961]
-- [crypto] x.509: Remove certificate date checks (David Howells) [985961]
-- [crypto] x.509: Handle certificates that lack an authorityKeyIdentifier field (David Howells) [985961]
-- [crypto] x.509: Check the algorithm IDs obtained from parsing an X.509 certificate (David Howells) [985961]
-- [crypto] x.509: Embed public_key_signature struct and create filler function (David Howells) [985961]
-- [crypto] x.509: struct x509_certificate needs struct tm declaring (David Howells) [985961]
-- [crypto] keys: Store public key algo ID in public_key_signature struct (David Howells) [985961]
-- [crypto] keys: Split public_key_verify_signature() and make available (David Howells) [985961]
-- [crypto] keys: Store public key algo ID in public_key struct (David Howells) [985961]
-- [crypto] keys: Move the algorithm pointer array from x509 to public_key.c (David Howells) [985961]
-- [crypto] keys: Rename public key parameter name arrays (David Howells) [985961]
-- [security] keys: Add per-user_namespace registers for persistent per-UID kerberos caches (David Howells) [991110]
-- [security] keys: Implement a big key type that can save to tmpfs (David Howells) [991110]
-- [security] keys: Expand the capacity of a keyring (David Howells) [1014573 985961]
-- [lib] assoc_array: Add a generic associative array implementation (David Howells) [1014573 985961]
-- [security] keys: Drop the permissions argument from __keyring_search_one() (David Howells) [1014573 985961]
-- [security] keys: Define a __key_get() wrapper to use rather than atomic_inc() (David Howells) [1014573 985961]
-- [security] keys: Search for auth-key by name rather than target key ID (David Howells) [1014573 985961]
-- [security] keys: Introduce a search context structure (David Howells) [1014573 985961]
-- [security] keys: Consolidate the concept of an 'index key' for key access (David Howells) [1014573 985961]
-- [security] keys: key_is_dead() should take a const key pointer argument (David Howells) [1014573 985961]
-- [security] keys: Use bool in make_key_ref() and is_key_possessed() (David Howells) [1014573 985961]
-- [security] keys: Skip key state checks when checking for possession (David Howells) [1014573 985961 991110]
-
-* Fri Nov 01 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-41.el7]
-- [net] bonding: ensure that TLB mode's active slave has correct mac filter (Veaceslav Falico) [1017573]
-- [net] netfilter: synproxy: fix BUG_ON triggered by corrupt TCP packets (Jesper Brouer) [1015035]
-- [net] proc_fs: print UIDs as unsigned int (Francesco Fusco) [996122]
-- [net] ipv6: Unify {raw,udp}6_sock_seq_show (Francesco Fusco) [996122]
-- [scsi] qla4xxx: Fix memory leak in func qla4_84xx_config_acb() (Chad Dupuis) [998557]
-- [scsi] qla4xxx: 5.04.00.00.07.00-k0 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Update driver version to 5.04.00-k1 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Return error if minidump data collection fails (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Fix the minidump data collection check in for loop (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Add pex-dma support for capturing minidump (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Update driver version to 5.04.00-k0 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Update Copyright header (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Implementation of ACB configuration during Loopback for ISP8042 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Added support for ISP8042 (Chad Dupuis) [998557]
-- [scsi] qla4xxx: Update driver version to 5.03.00-k11 (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Export more firmware info in sysfs (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Only BIOS boot target entries should be at index 0 and 1 (Chad Dupuis) [948123]
-- [scsi] qla4xxx: discovery_parent_idx can be shown without any check (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Set IPv6 traffic class if device type is IPv6 (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Use discovery_parent_idx instead of discovery_parent_type (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Allow removal of failed session using logout (Chad Dupuis) [948123]
-- [scsi] qla4xxx: Update driver version to 5.03.00-k10 (Chad Dupuis) [948118]
-- [scsi] qla4xxx: Exporting new attrs for iscsi session and connection in sysfs (Chad Dupuis) [948118]
-- [scsi] libiscsi: Add missing prints for session and connection sysfs attrs (Chad Dupuis) [948118]
-- [scsi] libiscsi: Added new boot entries in the session sysfs (Chad Dupuis) [948118]
-- [fs] nfs: inform the VM about pages being committed or unstable (Jerome Marchand) [1009508]
-- [mm] vmscan: take page buffers dirty and locked state into account (Jerome Marchand) [1009508]
-- [mm] vmscan: treat pages marked for immediate reclaim as zone congestion (Jerome Marchand) [1009508]
-- [mm] vmscan: move direct reclaim wait_iff_congested into shrink_list (Jerome Marchand) [1009508]
-- [mm] vmscan: set zone flags before blocking (Jerome Marchand) [1009508]
-- [mm] vmscan: stall page reclaim after a list of pages have been processed (Jerome Marchand) [1009508]
-- [mm] vmscan: stall page reclaim and writeback pages based on dirty/writepage pages encountered (Jerome Marchand) [1009508]
-- [mm] vmscan: move logic from balance_pgdat() to kswapd_shrink_zone() (Jerome Marchand) [1009508]
-- [mm] vmscan: check if kswapd should writepage once per pgdat scan (Jerome Marchand) [1009508]
-- [mm] vmscan: block kswapd if it is encountering pages under writeback (Jerome Marchand) [1009508]
-- [mm] vmscan: have kswapd writeback pages based on dirty pages encountered, not priority (Jerome Marchand) [1009508]
-- [mm] vmscan: do not allow kswapd to scan at maximum priority (Jerome Marchand) [1009508]
-- [mm] vmscan: decide whether to compact the pgdat based on reclaim progress (Jerome Marchand) [1009508]
-- [mm] vmscan: flatten kswapd priority loop (Jerome Marchand) [1009508]
-- [mm] vmscan: obey proportional scanning requirements for kswapd (Jerome Marchand) [1009508]
-- [mm] vmscan: limit the number of pages kswapd reclaims at each priority (Jerome Marchand) [1009508]
-- [iommu] Remove stack trace from broken irq remapping warning (Neil Horman) [1012860]
-- [kernel] audit: remove newline accidentally added during session id helper refactor (Richard Guy Briggs) [1010438]
-- [security] audit: suppress stock memalloc failure warnings since already managed (Richard Guy Briggs) [1016852]
-- [kernel] ntp: Make periodic RTC update more reliable (Prarit Bhargava) [1010351]
-
-* Wed Oct 30 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-40.el7]
-- [virt] kvm/ppc/Book3S: Fix compile error in XICS emulation (Veaceslav Falico) [1006938]
-- [block] rsxx: fix Kernel Panic caused by mapping Discards (Steve Best) [1013995]
-- [block] rsxx: Moving pci_map_page to prevent overflow (Steve Best) [1011024]
-- [block] rsxx: Handling failed pci_map_page on PowerPC and double free (Steve Best) [1011024]
-- [block] rsxx: Adding in debugfs entries (Steve Best) [1002025]
-- [block] rsxx: Fixes incorrect stats calculation (Steve Best) [1002025]
-- [block] rsxx: Adding EEH check inside cregs timeout (Steve Best) [1002025]
-- [block] rsxx: Adapter address space sanity check (Steve Best) [1002025]
-- [block] rsxx: Fixes DLPAR add kernel panic if partition still mounted (Steve Best) [1002025]
-- [block] rsxx: Changing the adapter name to the official name (Steve Best) [1002025]
-- [block] rsxx: Adding in sync_start module paramenter (Steve Best) [1002025]
-- [block] rsxx: Allow block size to be determined by configuration (Steve Best) [1002025]
-- [block] rsxx: Fixes soft-lockup issues during DMAs (Steve Best) [1002025]
-- [block] rsxx: Restructured DMA cancel scheme (Steve Best) [1002025]
-- [block] rsxx: Individual workqueues for interruptible events (Steve Best) [1002025]
-- [md] Fix skipping recovery for read-only arrays (Jes Sorensen) [1016694]
-- [kernel] nohz: Include local CPU in full dynticks global kick (Jarod Wilson) [988015]
-- [kernel] nohz: Optimize full dynticks's sched hooks with static keys (Jarod Wilson) [988015]
-- [kernel] nohz: Optimize full dynticks state checks with static keys (Jarod Wilson) [988015]
-- [kernel] nohz: Rename a few state variables (Jarod Wilson) [988015]
-- [kernel] vtime: Always debug check snapshot source _before_ updating it (Jarod Wilson) [988015]
-- [kernel] vtime: Always scale generic vtime accounting results (Jarod Wilson) [988015]
-- [kernel] vtime: Optimize full dynticks accounting off case with static keys (Jarod Wilson) [988015]
-- [kernel] vtime: Describe overriden functions in dedicated arch headers (Jarod Wilson) [988015]
-- [kernel] hardirq: Split preempt count mask definitions (Jarod Wilson) [988015]
-- [kernel] context_tracking: Split low level state headers (Jarod Wilson) [988015]
-- [kernel] vtime: Fix racy cputime delta update (Jarod Wilson) [988015]
-- [kernel] vtime: Remove a few unneeded generic vtime state checks (Jarod Wilson) [988015]
-- [kernel] context_tracking: User/kernel broundary cross trace events (Jarod Wilson) [988015]
-- [kernel] context_tracking: Optimize context switch off case with static keys (Jarod Wilson) [988015]
-- [kernel] context_tracking: Optimize guest APIs off case with static key (Jarod Wilson) [988015]
-- [kernel] context_tracking: Optimize main APIs off case with static key (Jarod Wilson) [988015]
-- [kernel] context_tracking: Ground setup for static key use (Jarod Wilson) [988015]
-- [kernel] context_tracking: Remove full dynticks' hacky dependency on wide context tracking (Jarod Wilson) [988015]
-- [kernel] nohz: Only enable context tracking on full dynticks CPUs (Jarod Wilson) [988015]
-- [kernel] context_tracking: Fix runtime CPU off-case (Jarod Wilson) [988015]
-- [kernel] vtime: Update a few comments (Jarod Wilson) [988015]
-- [kernel] context_tracking: Fix guest accounting with native vtime (Jarod Wilson) [988015]
-- [kernel] sched: Consolidate open coded preemptible() checks (Jarod Wilson) [988015]
-- [kernel] nohz: fix compile warning in tick_nohz_init() (Jarod Wilson) [988015]
-- [kernel] nohz: Do not warn about unstable tsc unless user uses nohz_full (Jarod Wilson) [988015]
-- [kernel] nohz: Remove obsolete check for full dynticks CPUs to be RCU nocbs (Jarod Wilson) [988015]
-- [kernel] nohz: Warn if the machine can not perform nohz_full (Jarod Wilson) [988015]
-- [md] raid5: avoid finding "discard" stripe (Jes Sorensen) [1023485]
-- [md] raid5: set bio bi_vcnt 0 for discard request (Jes Sorensen) [1023485]
-- [powerpc] make lorax work again (Steve Best) [1022797]
-
-* Tue Oct 29 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-39.el7]
-- [netdrv] cnic: Fix crash in cnic_bnx2x_service_kcq() (Maurizio Lombardi) [1011203]
-- [scsi] bnx2fc: Bump version from 1.0.14 to 2.4.1 (Maurizio Lombardi) [1011211]
-- [scsi] bnx2fc: hung task timeout warning observed when rmmod bnx2x with active FCoE targets (Maurizio Lombardi) [1011211]
-- [scsi] bnx2fc: Fixed a SCSI CMD cmpl race condition between ABTS and CLEANUP (Maurizio Lombardi) [1011211]
-- [scsi] Allow error handling timeout to be specified (Ewan Milne) [1020944]
-- [scsi] be2iscsi: Bump driver version (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix SGL posting for unaligned ICD values (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix AER handling in driver (Rob Evers) [726165]
-- [scsi] be2iscsi: Invalidate WRB in Abort/Reset Path (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix Insufficient Buffer Error returned in MBX Completion (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix log level for protocol specific logs (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix MSIx creation for SKH-R adapter (Rob Evers) [726165]
-- [scsi] be2iscsi: Display Port Identifier for each iSCSI function (Rob Evers) [726165]
-- [scsi] be2iscsi: Dispaly CID available for connection offload (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix chute cleanup during drivers unload (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix connection offload to support Dual Chute (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix CID allocation/freeing to support Dual chute mode (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix WRB_Q posting to support Dual Chute mode (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix SGL Initilization and posting Pages for Dual Chute (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix Template HDR support for Dual Chute mode (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix changes in ASYNC Path for SKH-R adapter (Rob Evers) [726165]
-- [scsi] be2iscsi: Config parameters update for Dual Chute Support (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix soft lock up issue during UE or if FW taking time to respond (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix locking mechanism in Unsol Path (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix negotiated parameters upload to FW (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix repeated issue of MAC ADDR get IOCTL (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix the MCCQ count leakage (Rob Evers) [726165]
-- [scsi] be2iscsi: Fix Template HDR IOCTL (Rob Evers) [726165]
-- [scsi] lpfc: Update lpfc version for 8.3.7.31.1p driver release (Rob Evers) [726157]
-- [scsi] lpfc: Fixed issue of task management commands having a fixed timeout (Rob Evers) [726157]
-- [scsi] lpfc: Fixed inconsistent spin lock usage (Rob Evers) [726157]
-- [scsi] lpfc: Fix driver's abort loop functionality to skip IOs already getting aborted (Rob Evers) [726157]
-- [scsi] lpfc: Fixed failure to allocate SCSI buffer on PPC64 platform for SLI4 devices (Rob Evers) [726157]
-- [scsi] lpfc: Fix WARN_ON when driver unloads (Rob Evers) [726157]
-- [scsi] lpfc: Avoided making pci bar ioremap call during dual-chute WQ/RQ pci bar selection (Rob Evers) [726157]
-- [scsi] lpfc: Fixed driver iocbq structure's iocb_flag field running out of space (Rob Evers) [726157]
-- [scsi] lpfc: Fix crash on driver load due to cpu affinity logic (Rob Evers) [726157]
-- [scsi] lpfc: Fixed logging format of setting driver sysfs attributes hard to interpret (Rob Evers) [726157]
-- [scsi] lpfc: Fixed back to back RSCNs discovery failure (Rob Evers) [726157]
-- [scsi] lpfc: Fixed race condition between BSG I/O dispatch and timeout handling (Rob Evers) [726157]
-- [scsi] lpfc: Fixed function mode field defined too small for not recognizing dual-chute mode (Rob Evers) [726157]
-- [scsi] lpfc: Back out data count, (residual fcfi_parm) fix for bad target (Rob Evers) [726157]
-- [scsi] lpfc: Fixed mailbox memory leak (Rob Evers) [726157]
-- [scsi] lpfc: Fix random errors using first burst (Rob Evers) [726157]
-- [scsi] lpfc: Fixed not able to log informational messages at early stage of driver init time (Rob Evers) [726157]
-- [scsi] lpfc: Fixed using unsafe linked list macro for walking and deleting linked list (Rob Evers) [726157]
-- [scsi] lpfc: Removed obsolete fcp_eq_count and fcp_wq_count driver attributes (Rob Evers) [726157]
-- [scsi] lpfc: Update copyrights for 8.3.41 modifications (Rob Evers) [726157]
-- [scsi] lpfc: Fixed the format of some log message fields (Rob Evers) [726157]
-- [scsi] lpfc: Add first burst support to driver (Rob Evers) [726157]
-- [scsi] lpfc: Fixed not able to perform PCI function reset when board was not in online mode (Rob Evers) [726157]
-- [scsi] lpfc: Fixed failure in setting SLI3 board mode (Rob Evers) [726157]
-- [scsi] lpfc: Fixed SLI3 failing FCP write on check-condition no-sense with residual zero (Rob Evers) [726157]
-- [scsi] lpfc: Fixed support for 128 byte WQEs (Rob Evers) [726157]
-- [scsi] lpfc: Ensure driver properly zeros unused fields in SLI4 mailbox commands (Rob Evers) [726157]
-- [scsi] lpfc: Fixed max value of lpfc_lun_queue_depth (Rob Evers) [726157]
-- [scsi] lpfc: Fixed Receive Queue varied frame size handling (Rob Evers) [726157]
-- [scsi] lpfc: Fix mailbox byteswap issue on PPC (Rob Evers) [726157]
-- [scsi] lpfc: Fixed freeing of iocb when internal loopback times out (Rob Evers) [726157]
-- [scsi] lpfc: Update Copyrights to 2013 for 8.3.38, 8.3.39, and 8.3.40 modifications (Rob Evers) [726157]
-- [scsi] lpfc: Fixed a race condition between SLI host and port failed FCF rediscovery (Rob Evers) [726157]
-- [scsi] lpfc: Fixed issue mailbox wait routine failed to issue dump memory mbox command (Rob Evers) [726157]
-- [scsi] lpfc: Fixed system panic due to unsafe walking and deleting linked list (Rob Evers) [726157]
-- [scsi] lpfc: Fixed FCoE connection list vlan identifier and add FCF list debug (Rob Evers) [726157]
-- [scsi] lpfc: Clarified the behavior of the lpfc_max_luns module parameter (Rob Evers) [726157]
-- [scsi] lpfc: Fix to allow OCM to report FEC status (Rob Evers) [726157]
-- [scsi] lpfc: Fixed a missing return code in a logging message (Rob Evers) [726157]
-- [scsi] lpfc: Fixed some logging message fields (Rob Evers) [726157]
-- [scsi] lpfc: Fixed list corruption when lpfc_drain_tx runs (Rob Evers) [726157]
-- [scsi] lpfc: Fix starting reference tag when calculating BG error (Rob Evers) [726157]
-- [scsi] lpfc: Fix inconsistent list removal causes crash (Rob Evers) [726157]
-- [scsi] lpfc: Fixed system panic during handling unsolicited receive buffer error condition (Rob Evers) [726157]
-- [scsi] lpfc: Fix BlockGuard error checking (Rob Evers) [726157]
-- [scsi] lpfc: Fixed crash during FCoE failover testing (Rob Evers) [726157]
-- [scsi] lpfc: Fix lpfc_used_cpu to be more dynamic (Rob Evers) [726157]
-- [scsi] megaraid_sas: Fix synchronization problem between sysPD IO path and AEN path (Tomas Henzl) [1019819]
-- [scsi] megaraid_sas: fixes for few endianess issues (Tomas Henzl) [1019819]
-- [scsi] megaraid_sas: addded support for big endian architecture (Tomas Henzl) [1005934]
-- [scsi] megaraid_sas: Version and Changelog update (Tomas Henzl) [1005934]
-- [scsi] megaraid_sas: Add High Availability clustering support using shared Logical Disks (Tomas Henzl) [1005934]
-- [scsi] megaraid_sas: fix memory leak if SGL has zero length entries (Tomas Henzl) [1005934]
-- [scsi] megaraid_sas: Changelog and driver version update (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support to differentiate between iMR vs MR Firmware (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support for Uneven Span PRL11 (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support for Extended MSI-x vectors for 12Gb/s controller (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Set IoFlags to enable Fast Path for JBODs for 12 Gb/s controllers (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support to display Customer branding details in syslog (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Add support for MegaRAID Fury (device ID-0x005f) 12Gb/s controllers (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Set IO request timeout value provided by OS timeout for Tape devices (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Free event detail memory without device ID check (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Update balance count in driver to be in sync of firmware (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Fix the interrupt mask for Gen2 controller (Tomas Henzl) [726228]
-- [scsi] megaraid_sas: Return DID_ERROR for SCSI IO, when controller is in critical h/w error (Tomas Henzl) [726228]
-- [scsi] Add 'eh_deadline' to limit SCSI EH runtime (Ewan Milne) [988042]
-- [scsi] remove check for 'resetting' (Ewan Milne) [988042]
-- [scsi] dc395: Move 'last_reset' into internal host structure (Ewan Milne) [988042]
-- [scsi] tmscsim: Move 'last_reset' into host structure (Ewan Milne) [988042]
-- [scsi] advansys: Remove 'last_reset' references (Ewan Milne) [988042]
-- [scsi] dpt_i2o: return SCSI_MLQUEUE_HOST_BUSY when in reset (Ewan Milne) [988042]
-- [scsi] dpt_i2o: Remove DPTI_STATE_IOCTL (Ewan Milne) [988042]
-
-* Tue Oct 29 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-38.el7]
-- [net] ip_output: do skb ufo init for peeked non ufo skb as well (Jiri Pirko) [1014599]
-- [net] ip6_output: do skb ufo init for peeked non ufo skb as well (Jiri Pirko) [1014599]
-- [net] udp6: respect IPV6_DONTFRAG sockopt in case there are pending frames (Jiri Pirko) [1014599]
-- [net] ipv6: udp packets following an UFO enqueued packet need also be handled by UFO (Jiri Pirko) [1011931] {CVE-2013-4387}
-- [net] bonding: combine pr_debugs in bond_set_dev_addr into one (Nikolay Aleksandrov) [1020621]
-- [net] bonding: when cloning a MAC use NET_ADDR_STOLEN (Nikolay Aleksandrov) [1020621]
-- [net] bonding: remove unnecessary dev_addr_from_first member (Nikolay Aleksandrov) [1020621]
-- [net] netfilter: nf_conntrack: use RCU safe kfree for conntrack extensions (Jesper Brouer) [1010252]
-- [net] tcp: TSQ can use a dynamic limit (Jiri Pirko) [998775]
-- [net] tcp: TSO packets automatic sizing (Jiri Pirko) [998775]
-- [security] selinux: fix selinuxfs policy file on big endian systems (Eric Paris) [839671]
-- [powerpc] Fix memory hotplug with sparse vmemmap (Steve Best) [805181]
-- [powerpc] mm: Mark Memory Resources as busy (Steve Best) [805181]
-- [tools] perf/bench: Fix failing assertions in numa bench (Petr Holasek) [1011923]
-- [hid] pantherlord: heap overflow flaw (Radomir Vrbovsky) [1000436] {CVE-2013-2892}
-- [powerpc] tm: Turn interrupts hard off in tm_reclaim() (Steve Best) [1017135]
-- [powerpc] tm: Clear MSR RI in non-recoverable TM code (Steve Best) [1017135]
-- [powerpc] perf: Fix handling of FAB events (Steve Best) [1015439]
-
-* Thu Oct 24 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-37.el7]
-- [fs] xfs: remove dead code from xlog_recover_inode_pass2 (Dave Chinner) [1001861]
-- [fs] xfs: = vs == typo in ASSERT() (Dave Chinner) [1001861]
-- [fs] xfs: don't assert fail on bad inode numbers (Dave Chinner) [1001861]
-- [fs] xfs: aborted buf items can be in the AIL (Dave Chinner) [1001861]
-- [fs] xfs: factor all the kmalloc-or-vmalloc fallback allocations (Dave Chinner) [1001861]
-- [fs] xfs: fix memory allocation failures with ACLs (Dave Chinner) [1001861]
-- [fs] xfs: ensure we copy buffer type in da btree root splits (Dave Chinner) [1001861]
-- [fs] xfs: set remote symlink buffer type for recovery (Dave Chinner) [1001861]
-- [fs] xfs: recovery of swap extents operations for CRC filesystems (Dave Chinner) [1001861]
-- [fs] xfs: swap extents operations for CRC filesystems (Dave Chinner) [1001861]
-- [fs] xfs: check magic numbers in dir3 leaf verifier first (Dave Chinner) [1001861]
-- [fs] xfs: fix some minor sparse warnings (Dave Chinner) [1001861]
-- [fs] xfs: fix endian warning in xlog_recover_get_buf_lsn() (Dave Chinner) [1001861]
-- [fs] xfs: XFS_MOUNT_QUOTA_ALL needed by userspace (Dave Chinner) [1001861]
-- [fs] xfs: dtype changed xfs_dir2_sfe_put_ino to xfs_dir3_sfe_put_ino (Dave Chinner) [1001861]
-- [fs] xfs: Fix wrong flag ASSERT in xfs_attr_shortform_getvalue (Dave Chinner) [1001861]
-- [fs] xfs: finish removing IOP_* macros (Dave Chinner) [1001861]
-- [fs] xfs: inode log reservations are too small (Dave Chinner) [1001861]
-- [fs] xfs: check correct status variable for xfs_inobt_get_rec() call (Dave Chinner) [1001861]
-- [fs] xfs: inode buffers may not be valid during recovery readahead (Dave Chinner) [1001861]
-- [fs] xfs: check LSN ordering for v5 superblocks during recovery (Dave Chinner) [1001861]
-- [fs] xfs: btree block LSN escaping to disk uninitialised (Dave Chinner) [1001861]
-- [fs] xfs: Assertion failed: first <= last && last < BBTOB(bp->b_length), file: fs/xfs/xfs_trans_buf.c, line: 568 (Dave Chinner) [1001861]
-- [fs] xfs: fix bad dquot buffer size in log recovery readahead (Dave Chinner) [1001861]
-- [fs] xfs: don't account buffer cancellation during log recovery readahead (Dave Chinner) [1001861]
-- [fs] xfs: check for underflow in xfs_iformat_fork() (Dave Chinner) [1001861]
-- [fs] xfs: xfs_dir3_sfe_put_ino can be static (Dave Chinner) [1001861]
-- [fs] xfs: introduce object readahead to log recovery (Dave Chinner) [1001861]
-- [fs] xfs: Simplify xfs_ail_min() with list_first_entry_or_null() (Dave Chinner) [1001861]
-- [fs] xfs: Register hotcpu notifier after initialization (Dave Chinner) [1001861]
-- [fs] xfs: add xfs sb v4 support for dirent filetype field (Dave Chinner) [1001861]
-- [fs] xfs: Add write support for dirent filetype field (Dave Chinner) [1001861]
-- [fs] xfs: Add read-only support for dirent filetype field (Dave Chinner) [1001861]
-- [fs] xfs: Add support for the Q_XGETQSTATV (Dave Chinner) [1001861]
-- [fs] quota: Add a new quotactl command Q_XGETQSTATV (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_mountfs() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_sb_quiet_read_verify() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xlog_recover_do_dquot_buffer() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_log_unmount_write() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_ifree_cluster() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_ialloc_ag_select() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_extent_busy_update_extent() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_setsize_buftarg_early() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_bmap_punch_delalloc_range() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_bmap_last_before() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_bmap_validate_ret() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_bmap_count_tree() (Dave Chinner) [1001861]
-- [fs] xfs: rename bio_add_buffer() to xfs_bio_add_buffer() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xlog_find_head() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xlog_recover_buffer_pass2() (Dave Chinner) [1001861]
-- [fs] xfs: remove two unused macro definitions in xfs_linux.h (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_btree_get_iroot() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_iroot_realloc() (Dave Chinner) [1001861]
-- [fs] xfs: remove one blank line in xfs_btree_make_block_unfull() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xlog_write_setup_copy() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_mod_incore_sb_unlocked() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_btree_lookup() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_buf_free() (Dave Chinner) [1001861]
-- [fs] xfs: fix the comment of xfs_check_sizes() (Dave Chinner) [1001861]
-- [fs] xfs: use reference counts to free clean buffer items (Dave Chinner) [1001861]
-- [fs] xfs: split the CIL lock (Dave Chinner) [1001861]
-- [fs] xfs: Combine CIL insert and prepare passes (Dave Chinner) [1001861]
-- [fs] xfs: avoid CIL allocation during insert (Dave Chinner) [1001861]
-- [fs] xfs: Reduce allocations during CIL insertion (Dave Chinner) [1001861]
-- [fs] xfs: return log item size in IOP_SIZE (Dave Chinner) [1001861]
-- [fs] xfs: free bp in xlog_find_tail() error path (Dave Chinner) [1001861]
-- [fs] xfs: free bp in xlog_find_zeroed() error path (Dave Chinner) [1001861]
-- [fs] xfs: avoid double-free in xfs_attr_node_addname (Dave Chinner) [1001861]
-- [fs] xfs: call roundup_64() to calculate the min_logblks (Dave Chinner) [1001861]
-- [fs] xfs: Validate log space at mount time (Dave Chinner) [1001861]
-- [fs] xfs: Add xfs_log_rlimit.c (Dave Chinner) [1001861]
-- [fs] xfs: Refactor xfs_ticket_alloc() to extract a new helper (Dave Chinner) [1001861]
-- [fs] xfs: Get rid of all XFS_XXX_LOG_RES() macro (Dave Chinner) [1001861]
-- [fs] xfs: refactor xfs_trans_reserve() interface (Dave Chinner) [1001861]
-- [fs] xfs: Make writeid transaction use tr_writeid (Dave Chinner) [1001861]
-- [fs] xfs: Introduce tr_fsyncts to m_reservation (Dave Chinner) [1001861]
-- [fs] xfs: Introduce a new structure to hold transaction reservation items (Dave Chinner) [1001861]
-- [fs] xfs: make struct xfs_perag kernel only (Dave Chinner) [1001861]
-- [fs] xfs: move kernel specific type definitions to xfs.h (Dave Chinner) [1001861]
-- [fs] xfs: xfs_filestreams.h doesn't need __KERNEL__ (Dave Chinner) [1001861]
-- [fs] xfs: remove __KERNEL__ check from xfs_dir2_leaf.c (Dave Chinner) [1001861]
-- [fs] xfs: remove __KERNEL__ from debug code (Dave Chinner) [1001861]
-- [fs] xfs: kill __KERNEL__ check for debug code in allocation code (Dave Chinner) [1001861]
-- [fs] xfs: don't special case shared superblock mounts (Dave Chinner) [1001861]
-- [fs] xfs: consolidate extent swap code (Dave Chinner) [1001861]
-- [fs] xfs: consolidate xfs_utils.c (Dave Chinner) [1001861]
-- [fs] xfs: consolidate xfs_rename.c (Dave Chinner) [1001861]
-- [fs] xfs: kill xfs_vnodeops.[ch] (Dave Chinner) [1001861]
-- [fs] xfs: fix issues that cause userspace warnings (Dave Chinner) [1001861]
-- [fs] xfs: minor cleanups (Dave Chinner) [1001861]
-- [fs] xfs: create xfs_bmap_util.[ch] (Dave Chinner) [1001861]
-- [fs] xfs: introduce xfs_sb.c for sharing with libxfs (Dave Chinner) [1001861]
-- [fs] xfs: split out the remote symlink handling (Dave Chinner) [1001861]
-- [fs] xfs: split out attribute fork truncation code into separate file (Dave Chinner) [1001861]
-- [fs] xfs: split out attribute listing code into separate file (Dave Chinner) [1001861]
-- [fs] xfs: reshuffle dir2 definitions around for userspace (Dave Chinner) [1001861]
-- [fs] xfs: move getdents code into it's own file (Dave Chinner) [1001861]
-- [fs] xfs: introduce xfs_inode_buf.c for inode buffer operations (Dave Chinner) [1001861]
-- [fs] xfs: move unrelated definitions out of xfs_inode.h (Dave Chinner) [1001861]
-- [fs] xfs: move inode fork definitions to a new header file (Dave Chinner) [1001861]
-- [fs] xfs: split out transaction reservation code (Dave Chinner) [1001861]
-- [fs] xfs: sync minor header differences needed by userspace (Dave Chinner) [1001861]
-- [fs] xfs: introduce xfs_quota_defs.h (Dave Chinner) [1001861]
-- [fs] xfs: introduce xfs_rtalloc_defs.h (Dave Chinner) [1001861]
-- [fs] xfs: split out on-disk transaction definitions (Dave Chinner) [1001861]
-- [fs] xfs: separate icreate log format definitions from xfs_icreate_item.h (Dave Chinner) [1001861]
-- [fs] xfs: separate dquot on disk format definitions out of xfs_quota.h (Dave Chinner) [1001861]
-- [fs] xfs: split out EFI/EFD log item format definition (Dave Chinner) [1001861]
-- [fs] xfs: split out buf log item format definitions (Dave Chinner) [1001861]
-- [fs] xfs: split out inode log item format definition (Dave Chinner) [1001861]
-- [fs] xfs: separate out log format definitions (Dave Chinner) [1001861]
-- [fs] xfs: di_flushiter considered harmful (Dave Chinner) [1001861]
-- [fs] xfs: Start using pquotaino from the superblock (Dave Chinner) [1001861]
-- [fs] xfs: Initialize all quota inodes to be NULLFSINO (Dave Chinner) [1001861]
-- [fs] xfs: Fix a deadlock in xfs_log_commit_cil() code path (Dave Chinner) [1001861]
-- [fs] xfs: fix assertion failure in xfs_vm_write_failed() (Dave Chinner) [1001861]
-- [fs] xfs: Fix the logic check for all quotas being turned off (Dave Chinner) [1001861]
-- [fs] xfs: Add pquota fields where gquota is used (Dave Chinner) [1001861]
-- [fs] xfs: fix sgid inheritance for subdirectories inheriting default acls (Dave Chinner) [1001861]
-- [fs] xfs: dquot log reservations are too small (Dave Chinner) [1001861]
-- [fs] xfs: remove local fork format handling from xfs_bmapi_write() (Dave Chinner) [1001861]
-- [fs] xfs: use get_unused_fd_flags(0) instead of get_unused_fd() (Dave Chinner) [1001861]
-- [fs] xfs: clean up unused codes at xfs_bulkstat() (Dave Chinner) [1001861]
-- [fs] xfs: use XFS_BMAP_BMDR_SPACE vs. XFS_BROOT_SIZE_ADJ (Dave Chinner) [1001861]
-- [fs] xfs: Remove incore use of XFS_OQUOTA_ENFD and XFS_OQUOTA_CHKD (Dave Chinner) [1001861]
-- [fs] xfs: Change xfs_dquot_acct to be a 2-dimensional array (Dave Chinner) [1001861]
-- [fs] xfs: Code cleanup and removal of some typedef usage (Dave Chinner) [1001861]
-- [fs] xfs: Replace macro XFS_DQ_TO_QIP with a function (Dave Chinner) [1001861]
-- [fs] xfs: Replace macro XFS_DQUOT_TREE with a function (Dave Chinner) [1001861]
-- [fs] xfs: Define a new function xfs_is_quota_inode() (Dave Chinner) [1001861]
-- [fs] xfs: implement inode change count (Dave Chinner) [1001861]
-- [fs] xfs: Use inode create transaction (Dave Chinner) [1001861]
-- [fs] xfs: Inode create item recovery (Dave Chinner) [1001861]
-- [fs] xfs: Inode create transaction reservations (Dave Chinner) [1001861]
-- [fs] xfs: Inode create log items (Dave Chinner) [1001861]
-- [fs] xfs: Introduce an ordered buffer item (Dave Chinner) [1001861]
-- [fs] xfs: Introduce ordered log vector support (Dave Chinner) [1001861]
-- [fs] xfs: xfs_ifree doesn't need to modify the inode buffer (Dave Chinner) [1001861]
-- [fs] xfs: don't do IO when creating an new inode (Dave Chinner) [1001861]
-- [fs] xfs: don't use speculative prealloc for small files (Dave Chinner) [1001861]
-- [fs] xfs: plug directory buffer readahead (Dave Chinner) [1001861]
-- [fs] xfs: add pluging for bulkstat readahead (Dave Chinner) [1001861]
-- [fs] xfs: Remove dead function prototype xfs_sync_inode_grab() (Dave Chinner) [1001861]
-- [fs] xfs: Remove the left function variable from xfs_ialloc_get_rec() (Dave Chinner) [1001861]
-- [fs] xfs: check on-disk (not incore) btree root size in dfrag.c (Dave Chinner) [1001861]
-- [fs] xfs: Remove XFS_MOUNT_RETERR (Dave Chinner) [1001861]
-- [fs] xfs: Remove two dead transaction log reservaion macros (Dave Chinner) [1001861]
-- [fs] xfs: return FIEMAP_EXTENT_UNKNOWN for delayed allocation extent (Dave Chinner) [1001861]
-- [fs] xfs: fix the symbolic link assert in xfs_ifree (Dave Chinner) [1001861]
-- [fs] xfs: Remove struct xfs_chash from xfs_mount (Dave Chinner) [1001861]
-- [fs] xfs: Don't keep silent if sunit/swidth can not be changed via mount (Dave Chinner) [1001861]
-- [fs] xfs: Remove redundant error variable from xfs_growfs_data_private() (Dave Chinner) [1001861]
-- [fs] xfs: Convert use of typedef ctl_table to struct ctl_table (Dave Chinner) [1001861]
-- [fs] xfs: Avoid pathological backwards allocation (Dave Chinner) [1001861]
-
-* Wed Oct 23 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-36.el7]
-- [fs] btrfs: create the uuid tree on remount rw (Eric Sandeen) [1010071]
-- [fs] btrfs: change extent-same to copy entire argument struct (Eric Sandeen) [1010071]
-- [fs] btrfs: dir_inode_operations should use btrfs_update_time also (Eric Sandeen) [1010071]
-- [fs] btrfs: add btrfs prefix to kernel log output (Eric Sandeen) [1010071]
-- [fs] btrfs: refuse to remount read-write after abort (Eric Sandeen) [1010071]
-- [fs] btrfs: don't leak transaction in btrfs_sync_file() (Eric Sandeen) [1010071]
-- [fs] btrfs: add the missing mutex unlock in write_all_supers() (Eric Sandeen) [1010071]
-- [fs] btrfs: iput inode on allocation failure (Eric Sandeen) [1010071]
-- [fs] btrfs: remove space_info->reservation_progress (Eric Sandeen) [1010071]
-- [fs] btrfs: kill delay_iput arg to the wait_ordered functions (Eric Sandeen) [1010071]
-- [fs] btrfs: fix worst case calculator for space usage (Eric Sandeen) [1010071]
-- [fs] btrfs: improve replacing nocow extents (Eric Sandeen) [1010071]
-- [fs] btrfs: drop dir i_size when adding new names on replay (Eric Sandeen) [1010071]
-- [fs] btrfs: replay dir_index items before other items (Eric Sandeen) [1010071]
-- [fs] btrfs: check roots last log commit when checking if an inode has been logged (Eric Sandeen) [1010071]
-- [fs] btrfs: actually log directory we are fsync()'ing (Eric Sandeen) [1010071]
-- [fs] btrfs: actually limit the size of delalloc range (Eric Sandeen) [1010071]
-- [fs] btrfs: allocate the free space by the existed max extent size when ENOSPC (Eric Sandeen) [1010071]
-- [fs] btrfs: add lockdep and tracing annotations for uuid tree (Eric Sandeen) [1010071]
-- [fs] btrfs: show compiled-in config features at module load time (Eric Sandeen) [1010071]
-- [fs] btrfs: more efficient inode tree replace operation (Eric Sandeen) [1010071]
-- [fs] btrfs: do not add replace target to the alloc_list (Eric Sandeen) [1010071]
-- [fs] btrfs: fixup error handling in btrfs_reloc_cow (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize key searches in btrfs_search_slot (Eric Sandeen) [1010071]
-- [fs] btrfs: don't use an async starter for most of our workers (Eric Sandeen) [1010071]
-- [fs] btrfs: only update disk_i_size as we remove extents (Eric Sandeen) [1010071]
-- [fs] btrfs: fix deadlock in uuid scan kthread (Eric Sandeen) [1010071]
-- [fs] btrfs: stop refusing the relocation of chunk 0 (Eric Sandeen) [1010071]
-- [fs] btrfs: fix memory leak of uuid_root in free_fs_info (Eric Sandeen) [1010071]
-- [fs] btrfs: reuse kbasename helper (Eric Sandeen) [1010071]
-- [fs] btrfs: return btrfs error code for dev excl ops err (Eric Sandeen) [1010071]
-- [fs] btrfs: allow partial ordered extent completion (Eric Sandeen) [1010071]
-- [fs] btrfs: convert all bug_ons in free-space-cache.c (Eric Sandeen) [1010071]
-- [fs] btrfs: add support for asserts (Eric Sandeen) [1010071]
-- [fs] btrfs: adjust the fs_devices->missing count on unmount (Eric Sandeen) [1010071]
-- [fs] btrfs: don't check for root_refs == 0 twice (Eric Sandeen) [1010071]
-- [fs] btrfs: fix for patch "cleanup: don't check the same thing twice" (Eric Sandeen) [1010071]
-- [fs] btrfs: get rid of one BUG() in write_all_supers() (Eric Sandeen) [1010071]
-- [fs] btrfs: allocate prelim_ref with a slab allocater (Eric Sandeen) [1010071]
-- [fs] btrfs: pass gfp_t to __add_prelim_ref() to avoid always using GFP_ATOMIC (Eric Sandeen) [1010071]
-- [fs] btrfs: fix race conditions in BTRFS_IOC_FS_INFO ioctl (Eric Sandeen) [1010071]
-- [fs] btrfs: fix race between removing a dev and writing sbs (Eric Sandeen) [1010071]
-- [fs] btrfs: remove ourselves from the cluster list under lock (Eric Sandeen) [1010071]
-- [fs] btrfs: do not clear our orphan item runtime flag on eexist (Eric Sandeen) [1010071]
-- [fs] btrfs: fix send to deal with sparse files properly (Eric Sandeen) [1010071]
-- [fs] btrfs: fix printing of non NULL terminated string (Eric Sandeen) [1010071]
-- [fs] btrfs: Use z to format size_t (Eric Sandeen) [1010071]
-- [fs] btrfs: Do not truncate sector_t on 32-bit with CONFIG_LBDAF=y (Eric Sandeen) [1010071]
-- [fs] btrfs: PAGE_CACHE_SIZE is already unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_header_chunk_tree_uuid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_header_fsid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_dev_extent_chunk_tree_uuid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_device_fsid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make btrfs_device_uuid() return unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Format mirror_num as int (Eric Sandeen) [1010071]
-- [fs] btrfs: Format PAGE_SIZE as unsigned long (Eric Sandeen) [1010071]
-- [fs] btrfs: Make BTRFS_DEV_REPLACE_DEVID an unsigned long long constant (Eric Sandeen) [1010071]
-- [fs] btrfs: Remove superfluous casts from u64 to unsigned long long (Eric Sandeen) [1010071]
-- [fs] btrfs: fix memory leak of orphan block rsv (Eric Sandeen) [1010071]
-- [fs] btrfs: rollback btrfs_device fields on umount (Eric Sandeen) [1010071]
-- [fs] btrfs: add alloc_fs_devices and switch to it (Eric Sandeen) [1010071]
-- [fs] btrfs: add btrfs_alloc_device and switch to it (Eric Sandeen) [1010071]
-- [fs] btrfs: find_next_devid: root -> fs_info (Eric Sandeen) [1010071]
-- [fs] btrfs: don't allow the replace procedure on read only filesystems (Eric Sandeen) [1010071]
-- [fs] btrfs: reset force_compress on btrfs_file_defrag failure (Eric Sandeen) [1010071]
-- [fs] btrfs: use __u64 in exported user headers (Eric Sandeen) [1010071]
-- [fs] btrfs: add mount option to force UUID tree checking (Eric Sandeen) [1010071]
-- [fs] btrfs: check UUID tree during mount if required (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce uuid-tree-gen field (Eric Sandeen) [1010071]
-- [fs] btrfs: fill UUID tree initially (Eric Sandeen) [1010071]
-- [fs] btrfs: maintain subvolume items in the UUID tree (Eric Sandeen) [1010071]
-- [fs] btrfs: create UUID tree if required (Eric Sandeen) [1010071]
-- [fs] btrfs: support printing UUID tree elements (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce a tree for items that map UUIDs to something (Eric Sandeen) [1010071]
-- [fs] btrfs: mark some local function as 'static' (Eric Sandeen) [1010071]
-- [fs] btrfs: get rid of sparse warnings (Eric Sandeen) [1010071]
-- [fs] btrfs: don't miss inode ref items in BTRFS_IOC_INO_LOOKUP (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing error code to BTRFS_IOC_INO_LOOKUP handler (Eric Sandeen) [1010071]
-- [fs] btrfs: remove reduplicate check when disabling quota (Eric Sandeen) [1010071]
-- [fs] btrfs: move btrfs_free_qgroup_config() out of spin_lock and fix comments (Eric Sandeen) [1010071]
-- [fs] btrfs: fix oops when writing dirty qgroups to disk (Eric Sandeen) [1010071]
-- [fs] btrfs: fix send issues related to inode number reuse (Eric Sandeen) [1010071]
-- [fs] btrfs: separate out tests into their own directory (Eric Sandeen) [1010071]
-- [fs] btrfs: avoid starting a transaction in the write path (Eric Sandeen) [1010071]
-- [fs] btrfs: fix heavy delalloc related deadlock (Eric Sandeen) [1010071]
-- [fs] btrfs: fix the error handling wrt orphan items (Eric Sandeen) [1010071]
-- [fs] btrfs: don't allow a subvol to be deleted if it is the default subovl (Eric Sandeen) [1010071]
-- [fs] btrfs: skip subvol entries when checking if we've created a dir already (Eric Sandeen) [1010071]
-- [fs] btrfs: offline dedupe (Eric Sandeen) [1010071]
-- [fs] btrfs: Introduce extent_read_full_page_nolock() (Eric Sandeen) [1010071]
-- [fs] btrfs: btrfs_ioctl_clone, Move clone code into it's own function (Eric Sandeen) [1010071]
-- [fs] btrfs: abtract out range locking in clone ioctl() (Eric Sandeen) [1010071]
-- [fs] btrfs: fix possible memory leak in find_parent_nodes() (Eric Sandeen) [1010071]
-- [fs] btrfs: return ENOSPC when target space is full (Eric Sandeen) [1010071]
-- [fs] btrfs: don't ignore errors from btrfs_run_delayed_items (Eric Sandeen) [1010071]
-- [fs] btrfs: fix inode leak on kmalloc failure in tree-log.c (Eric Sandeen) [1010071]
-- [fs] btrfs: allow compressed extents to be merged during defragment (Eric Sandeen) [1010071]
-- [fs] btrfs: add mount option to set commit interval (Eric Sandeen) [1010071]
-- [fs] btrfs: stop using GFP_ATOMIC when allocating rewind ebs (Eric Sandeen) [1010071]
-- [fs] btrfs: deal with enomem in the rewind path (Eric Sandeen) [1010071]
-- [fs] btrfs: check our parent dir when doing a compare send (Eric Sandeen) [1010071]
-- [fs] btrfs: handle errors when doing slow caching (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing error handling to read_tree_block (Eric Sandeen) [1010071]
-- [fs] btrfs: Fix leak in __btrfs_map_block error path (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing error check to find_parent_nodes (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize function btrfs_read_chunk_tree (Eric Sandeen) [1010071]
-- [fs] btrfs: don't bug_on when we fail when cleaning up transactions (Eric Sandeen) [1010071]
-- [fs] btrfs: change how we queue blocks for backref checking (Eric Sandeen) [1010071]
-- [fs] btrfs: check to see if we have an inline item properly (Eric Sandeen) [1010071]
-- [fs] btrfs: fix what bits we clear when erroring out from delalloc (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup arguments to extent_clear_unlock_delalloc (Eric Sandeen) [1010071]
-- [fs] btrfs: use BTRFS_SUPER_INFO_SIZE macro at btrfs_read_dev_super() (Eric Sandeen) [1010071]
-- [fs] btrfs: cache the extent map struct when reading several pages (Eric Sandeen) [1010071]
-- [fs] btrfs: batch the extent state operation when reading pages (Eric Sandeen) [1010071]
-- [fs] btrfs: batch the extent state operation in the end io handle of the read page (Eric Sandeen) [1010071]
-- [fs] btrfs: don't cache the csum value into the extent state tree (Eric Sandeen) [1010071]
-- [fs] btrfs: add branch prediction hints in the read page end IO function (Eric Sandeen) [1010071]
-- [fs] btrfs: remove unnecessary argument of bio_readpage_error() (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing mounting options in btrfs_show_options() (Eric Sandeen) [1010071]
-- [fs] btrfs: use u64 for subvolid when parsing mount options (Eric Sandeen) [1010071]
-- [fs] btrfs: add sanity checks regarding to parsing mount options (Eric Sandeen) [1010071]
-- [fs] btrfs: fix memory leak when allocating pages for p/q stripes failed in raid56 (Eric Sandeen) [1010071]
-- [fs] btrfs: fix and cleanup some error paths in raid56 (Eric Sandeen) [1010071]
-- [fs] btrfs: don't bother autodefragging if our root is going away (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup reloc roots properly on error (Eric Sandeen) [1010071]
-- [fs] btrfs: reset ret in record_one_backref (Eric Sandeen) [1010071]
-- [fs] btrfs: fix get set label blocking against balance (Eric Sandeen) [1010071]
-- [fs] btrfs: Print key type in decimal everywhere (Eric Sandeen) [1010071]
-- [fs] btrfs: update delayed ref tracepoints (Eric Sandeen) [1010071]
-- [fs] btrfs: btrfs_read_block_groups, Use enums to index (Eric Sandeen) [1010071]
-- [fs] btrfs: Cleanup for using BTRFS_SETGET_STACK instead of raw convert (Eric Sandeen) [1010071]
-- [fs] btrfs: set qgroup_ulist to be null after calling ulist_free() (Eric Sandeen) [1010071]
-- [fs] btrfs: add missing error checks to add_data_references (Eric Sandeen) [1010071]
-- [fs] btrfs: make errors in btrfs_num_copies less noisy (Eric Sandeen) [1010071]
-- [fs] btrfs: make free space caching faster with many non-inline extent references (Eric Sandeen) [1010071]
-- [fs] btrfs: fall back to global reservation when removing subvolumes (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize btrfs_lookup_extent_info() (Eric Sandeen) [1010071]
-- [fs] btrfs: Release uuid_mutex for shrink during device delete (Eric Sandeen) [1010071]
-- [fs] btrfs: set lockdep class before locking new extent buffer (Eric Sandeen) [1010071]
-- [fs] btrfs: return -1 when lzo compression makes data bigger (Eric Sandeen) [1010071]
-- [fs] btrfs: stop using GFP_ATOMIC for the tree mod log allocations (Eric Sandeen) [1010071]
-- [fs] btrfs: treewide: Add __GFP_NOWARN to k.alloc calls with v.alloc fallbacks (Eric Sandeen) [1010071]
-- [fs] btrfs: don't loop on large offsets in readdir (Eric Sandeen) [1010071]
-- [fs] btrfs: check to see if root_list is empty before adding it to dead roots (Eric Sandeen) [1010071]
-- [fs] btrfs: release both paths before logging dir/changed extents (Eric Sandeen) [1010071]
-- [fs] btrfs: allow splitting of hole em's when dropping extent cache (Eric Sandeen) [1010071]
-- [fs] btrfs: make sure the backref walker catches all refs to our extent (Eric Sandeen) [1010071]
-- [fs] btrfs: fix backref walking when we hit a compressed extent (Eric Sandeen) [1010071]
-- [fs] btrfs: do not offset physical if we're compressed (Eric Sandeen) [1010071]
-- [fs] btrfs: fix extent buffer leak after backref walking (Eric Sandeen) [1010071]
-- [fs] btrfs: fix a bug of snapshot-aware defrag to make it work on partial extents (Eric Sandeen) [1010071]
-- [fs] btrfs: fix file truncation if FALLOC_FL_KEEP_SIZE is specified (Eric Sandeen) [1010071]
-- [fs] btrfs: fix wrong write offset when replacing a device (Eric Sandeen) [1010071]
-- [fs] btrfs: re-add root to dead root list if we stop dropping it (Eric Sandeen) [1010071]
-- [fs] btrfs: fix lock leak when resuming snapshot deletion (Eric Sandeen) [1010071]
-- [fs] btrfs: update drop progress before stopping snapshot dropping (Eric Sandeen) [1010071]
-- [fs] btrfs: wait ordered range before doing direct io (Eric Sandeen) [1010071]
-- [fs] btrfs: only do the tree_mod_log_free_eb if this is our last ref (Eric Sandeen) [1010071]
-- [fs] btrfs: hold the tree mod lock in __tree_mod_log_rewind (Eric Sandeen) [1010071]
-- [fs] btrfs: make backref walking code handle skinny metadata (Eric Sandeen) [1010071]
-- [fs] btrfs: fix crash regarding to ulist_add_merge (Eric Sandeen) [1010071]
-- [fs] btrfs: fix several potential problems in copy_nocow_pages_for_inode (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup the code of copy_nocow_pages_for_inode() (Eric Sandeen) [1010071]
-- [fs] btrfs: fix oops when recovering the file data by scrub function (Eric Sandeen) [1010071]
-- [fs] btrfs: make the chunk allocator completely tree lockless (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup orphaned root orphan item (Eric Sandeen) [1010071]
-- [fs] btrfs: fix wrong mirror number tuning (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup redundant code in btrfs_submit_direct() (Eric Sandeen) [1010071]
-- [fs] btrfs: remove btrfs_sector_sum structure (Eric Sandeen) [1010071]
-- [fs] btrfs: check if we can nocow if we don't have data space (Eric Sandeen) [1010071]
-- [fs] btrfs: stop using try_to_writeback_inodes_sb_nr to flush delalloc (Eric Sandeen) [1010071]
-- [fs] btrfs: use a percpu to keep track of possibly pinned bytes (Eric Sandeen) [1010071]
-- [fs] btrfs: check for actual acls rather than just xattrs when caching no acl (Eric Sandeen) [1010071]
-- [fs] btrfs: move btrfs_truncate_page to btrfs_cont_expand instead of btrfs_truncate (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize reada_for_balance (Eric Sandeen) [1010071]
-- [fs] btrfs: optimize read_block_for_search (Eric Sandeen) [1010071]
-- [fs] btrfs: unlock extent range on enospc in compressed submit (Eric Sandeen) [1010071]
-- [fs] btrfs: fix the comment typo for btrfs_attach_transaction_barrier (Eric Sandeen) [1010071]
-- [fs] btrfs: fix not being able to find skinny extents during relocate (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup backref search commit root flag stuff (Eric Sandeen) [1010071]
-- [fs] btrfs: free csums when we're done scrubbing an extent (Eric Sandeen) [1010071]
-- [fs] btrfs: fix transaction throttling for delayed refs (Eric Sandeen) [1010071]
-- [fs] btrfs: stop waiting on current trans if we aborted (Eric Sandeen) [1010071]
-- [fs] btrfs: wake up delayed ref flushing waiters on abort (Eric Sandeen) [1010071]
-- [fs] btrfs: fix the code comments for LZO compression workspace (Eric Sandeen) [1010071]
-- [fs] btrfs: fix broken nocow after balance (Eric Sandeen) [1010071]
-- [fs] btrfs: more open-coded file_inode() (Eric Sandeen) [1010071]
-- [fs] btrfs: exclude logged extents before replying when we are mixed (Eric Sandeen) [1010071]
-- [fs] btrfs: put our inode if orphan cleanup fails (Eric Sandeen) [1010071]
-- [fs] btrfs: add some missing iput()'s in btrfs_orphan_cleanup (Eric Sandeen) [1010071]
-- [fs] btrfs: do not pin while under spin lock (Eric Sandeen) [1010071]
-- [fs] btrfs: Cocci spatch "memdup.spatch" (Eric Sandeen) [1010071]
-- [fs] btrfs: Cocci spatch "ptr_ret.spatch" (Eric Sandeen) [1010071]
-- [fs] btrfs: fix qgroup rescan resume on mount (Eric Sandeen) [1010071]
-- [fs] btrfs: avoid double free of fs_info->qgroup_ulist (Eric Sandeen) [1010071]
-- [fs] btrfs: fix memory patcher through fs_info->qgroup_ulist (Eric Sandeen) [1010071]
-- [fs] btrfs: simplify unlink reservations (Eric Sandeen) [1010071]
-- [fs] btrfs: merge pending IO for tree log write back (Eric Sandeen) [1010071]
-- [fs] btrfs: allow file data clone within a file (Eric Sandeen) [1010071]
-- [fs] btrfs: remove unused code in btrfs_del_root (Eric Sandeen) [1010071]
-- [fs] btrfs: kill replicate code in replay_one_buffer (Eric Sandeen) [1010071]
-- [fs] btrfs: check if leaf's parent exists before pushing items around (Eric Sandeen) [1010071]
-- [fs] btrfs: update new flags for tracepoint (Eric Sandeen) [1010071]
-- [fs] btrfs: dont do log_removal in insert_new_root (Eric Sandeen) [1010071]
-- [fs] btrfs: return error code in btrfs_check_trunc_cache_free_space() (Eric Sandeen) [1010071]
-- [fs] btrfs: fix estale with btrfs send (Eric Sandeen) [1010071]
-- [fs] btrfs: device delete to get errors from the kernel (Eric Sandeen) [1010071]
-- [fs] btrfs: do delay iput in sync_fs (Eric Sandeen) [1010071]
-- [fs] btrfs: make the state of the transaction more readable (Eric Sandeen) [1010071]
-- [fs] btrfs: remove the time check in btrfs_commit_transaction() (Eric Sandeen) [1010071]
-- [fs] btrfs: remove unnecessary varient ->num_joined in btrfs_transaction structure (Eric Sandeen) [1010071]
-- [fs] btrfs: don't flush the delalloc inodes in the while loop if flushoncommit is set (Eric Sandeen) [1010071]
-- [fs] btrfs: don't wait for all the writers circularly during the transaction commit (Eric Sandeen) [1010071]
-- [fs] btrfs: remove the code for the impossible case in cleanup_transaction() (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup unnecessary assignment when cleaning up all the residual transaction (Eric Sandeen) [1010071]
-- [fs] btrfs: just flush the delalloc inodes in the source tree before snapshot creation (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce per-subvolume ordered extent list (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce per-subvolume delalloc inode list (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce grab/put functions for the root of the fs/file tree (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup the similar code of the fs root read (Eric Sandeen) [1010071]
-- [fs] btrfs: make the snap/subv deletion end more early when the fs is R/O (Eric Sandeen) [1010071]
-- [fs] btrfs: move the R/O check out of btrfs_clean_one_deleted_snapshot() (Eric Sandeen) [1010071]
-- [fs] btrfs: make the cleaner complete early when the fs is going to be umounted (Eric Sandeen) [1010071]
-- [fs] btrfs: remove unnecessary ->s_umount in cleaner_kthread() (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup: don't check the same thing twice (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup, btrfs_read_fs_root_no_name() doesn't return NULL (Eric Sandeen) [1010071]
-- [fs] btrfs: delete unused function (Eric Sandeen) [1010071]
-- [fs] btrfs: remove useless copy in quota_ctl (Eric Sandeen) [1010071]
-- [fs] btrfs: Minor format cleanup (Eric Sandeen) [1010071]
-- [fs] btrfs: cleanup unused arguments in send.c (Eric Sandeen) [1010071]
-- [fs] btrfs: add ioctl to wait for qgroup rescan completion (Eric Sandeen) [1010071]
-- [fs] btrfs: introduce qgroup_ulist to avoid frequently allocating/freeing ulist (Eric Sandeen) [1010071]
-- [fs] btrfs: show compiled-in config features at module load time (Eric Sandeen) [1010071]
-- [fs] btrfs: move ifdef around sanity checks out of init_btrfs_fs (Eric Sandeen) [1010071]
-- [fs] btrfs: add prefix to sanity tests messages (Eric Sandeen) [1010071]
-- [fs] btrfs: add debug check for extent_io range alignment (Eric Sandeen) [1010071]
-- [fs] btrfs: fix check on same raid type flag twice (Eric Sandeen) [1010071]
-- [fs] btrfs: Fix typo in printk (Eric Sandeen) [1010071]
-- [fs] btrfs: fix btrfs_extend_item() comment (Eric Sandeen) [1010071]
-
-* Wed Oct 16 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-35.el7]
-- [netdrv] mlx4: Fix handling of dma_map failure (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Notify user when TX ring in error state (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Disable global flow control when PFC enabled (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Coding style cleanup in mlx4_en_dcbnl_ieee_setpfc() (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Staticize local functions (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: VFs must ignore the enable_64b_cqe_eqe module param (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Don't give VFs MAC addresses which are derived from the PF MAC (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Respond to operation request by firmware (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fix BlueFlame race (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: fix small memory leak on error (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add HW enforcement to VF link state (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Dynamic VST to VST vlan/qos changes (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fail device init if num_vfs is negative (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add warning in case of command timeouts (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Replace sscanf() with kstrtoint() (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Remove an unnecessary test (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add prints when TX timeout occurs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fix a race between napi poll function and RX ring cleanup (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Change log level from error to debug for vlan related messages (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Move register_netdev() to the end of initialization function (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Do not query stats when device port is down (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fix resource leak in error flow (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: allow order-0 memory allocations in RX path (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add support for busy poll (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Add VF link state support (Amir Vadai) [862498 868244 920465 978058 998202]
-- [net] core: Add VF link state control (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: use __netdev_pick_tx instead of __skb_tx_hash in mlx4_en_select_queue (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: use one page fragment per incoming frame (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] ipoib: Fix pkey change flow for virtualization environments (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] ipoib: Make sure child devices use valid/proper pkeys (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Create QP1 using the pkey index which contains the default pkey (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] mlx4: Use default pkey when creating tunnel QPs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Fix redundant pointer check in dealloc flow (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Fix possible memory leak in iser_create_frwr_pool() (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Introduce fast memory registration model (FRWR) (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Place the fmr pool into a union in iser's IB conn struct (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Handle unaligned SG in separate function (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Generalize rdma memory registration (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Accept session->cmds_max from user space (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Restructure allocation/deallocation of connection resources (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Use proper debug level value for info prints (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] iser: Add Discovery support (Amir Vadai) [862498 868244 920465 978058 998202]
-- [scsi] libiscsi: Exporting new attrs for iscsi session and connection in sysfs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [scsi] scsi_transport_iscsi: Exporting new attrs for iscsi session and connection in sysfs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Better checking of userspace values for receive flow steering (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] mlx4: Add receive flow steering support (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Export ib_create/destroy_flow through uverbs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Infrastructure for extensible uverbs commands (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Add receive flow steering support (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Fixes to XRC reference counting in uverbs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [infiniband] core: Add locking around event dispatching on XRC target QPs (Amir Vadai) [862498 868244 920465 978058 998202]
-- [netdrv] mlx4: Fix XRC QPs detection in the resource tracker (Amir Vadai) [862498 868244 920465 978058 998202]
-- [powerpc] irq: Don't switch to irq stack from softirq stack (Steve Best) [1016454]
-- [powerpc] hvsi: Increase handshake timeout from 200ms to 400ms (Steve Best) [1012654]
-- [powerpc] zimage: make the "OF" wrapper support ePAPR boot (Steve Best) [1012654]
-- [powerpc] pseries: Do not start secondaries in Open Firmware (Steve Best) [1012654]
-- [powerpc] Make prom_init.c endian safe (Steve Best) [1012654]
-- [powerpc] Remove ksp_limit on ppc64 (Steve Best) [1012654]
-- [powerpc] irq: Run softirqs off the top of the irq stack (Steve Best) [1012654]
-- [mm] avoid reinserting isolated balloon pages into LRU lists (Rafael Aquini) [1017445]
-- [kernel] sched: fix race in migrate_swap_stop (Rik van Riel) [683513]
-- [kernel] sched/numa: Retry task_numa_migrate() periodically (Rik van Riel) [683513]
-- [kernel] sched/numa: Use unsigned longs for numa group fault stats (Rik van Riel) [683513]
-- [kernel] sched/numa: Skip some page migrations after a shared fault (Rik van Riel) [683513]
-- [kernel] sched/numa: Remove the numa_balancing_scan_period_reset sysctl (Rik van Riel) [683513]
-- [kernel] sched/numa: Adjust scan rate in task_numa_placement (Rik van Riel) [683513]
-- [kernel] sched/numa: Take false sharing into account when adapting scan rate (Rik van Riel) [683513]
-- [kernel] sched/numa: Be more careful about joining numa groups (Rik van Riel) [683513]
-- [kernel] sched/numa: Avoid migrating tasks that are placed on their preferred node (Rik van Riel) [683513]
-- [kernel] sched/numa: Fix task or group comparison (Rik van Riel) [683513]
-- [kernel] sched/numa: Decide whether to favour task or group weights based on swap candidate relationships (Rik van Riel) [683513]
-- [kernel] sched/numa: Add debugging (Rik van Riel) [683513]
-- [kernel] sched/numa: Prevent parallel updates to group stats during placement (Rik van Riel) [683513]
-- [kernel] sched/numa: Call task_numa_free() from do_execve () (Rik van Riel) [683513]
-- [kernel] sched/numa: Use group fault statistics in numa placement (Rik van Riel) [683513]
-- [kernel] sched/numa: Stay on the same node if CLONE_VM (Rik van Riel) [683513]
-- [mm] numa: Do not batch handle PMD pages (Rik van Riel) [683513]
-- [mm] numa: Do not group on RO pages (Rik van Riel) [683513]
-- [mm] numa: Copy cpupid on page migration (Rik van Riel) [683513]
-- [kernel] sched/numa: Report a NUMA task group ID (Rik van Riel) [683513]
-- [kernel] sched/numa: Use {cpu, pid} to create task groups for shared faults (Rik van Riel) [683513]
-- [mm] numa: Change page last {nid, pid} into {cpu, pid} (Rik van Riel) [683513]
-- [kernel] sched/numa: Fix placement of workloads spread across multiple nodes (Rik van Riel) [683513]
-- [kernel] sched/numa: Favor placing a task on the preferred node (Rik van Riel) [683513]
-- [kernel] sched/numa: Use a system-wide search to find swap/migration candidates (Rik van Riel) [683513]
-- [kernel] sched/numa: Introduce migrate_swap() (Rik van Riel) [683513]
-- [kernel] stop_machine: Introduce stop_two_cpus() (Rik van Riel) [683513]
-- [mm] numa: Trap pmd hinting faults only if we would otherwise trap PTE faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Do not trap hinting faults for shared libraries (Rik van Riel) [683513]
-- [kernel] sched/numa: Increment numa_migrate_seq when task runs in correct location (Rik van Riel) [683513]
-- [kernel] sched/numa: Retry migration of tasks to CPU on a preferred node (Rik van Riel) [683513]
-- [kernel] sched/numa: Avoid overloading CPUs on a preferred NUMA node (Rik van Riel) [683513]
-- [kernel] numa: Limit NUMA scanning to migrate-on-fault VMAs (Rik van Riel) [683513]
-- [kernel] sched/numa: Do not migrate memory immediately after switching node (Rik van Riel) [683513]
-- [mm] sched/numa: Set preferred NUMA node based on number of private faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Remove check that skips small VMAs (Rik van Riel) [683513]
-- [mm] numa: Scan pages with elevated page_mapcount (Rik van Riel) [683513]
-- [kernel] sched/numa: Check current-> mm before allocating NUMA faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Add infrastructure for split shared/ private accounting of NUMA hinting faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Reschedule task on preferred NUMA node once selected (Rik van Riel) [683513]
-- [kernel] sched/numa: Resist moving tasks towards nodes with fewer hinting faults (Rik van Riel) [683513]
-- [kernel] sched/numa: Favour moving tasks towards the preferred node (Rik van Riel) [683513]
-- [kernel] sched/numa: Update NUMA hinting faults once per scan (Rik van Riel) [683513]
-- [kernel] sched/numa: Select a preferred node with the most numa hinting faults (Rik van Riel) [683513]
-- [mm] sched/numa: Track NUMA hinting faults on per-node basis (Rik van Riel) [683513]
-- [mm] sched/numa: Slow scan rate if no NUMA hinting faults are being recorded (Rik van Riel) [683513]
-- [mm] sched/numa: Set the scan rate proportional to the memory usage of the task being scanned (Rik van Riel) [683513]
-- [mm] sched/numa: Initialise numa_next_scan properly (Rik van Riel) [683513]
-- [mm] sched/numa: Continue PTE scanning even if migrate rate limited (Rik van Riel) [683513]
-- [mm] sched/numa: Mitigate chance that same task always updates PTEs (Rik van Riel) [683513]
-- [mm] numa: Do not migrate or account for hinting faults on the zero page (Rik van Riel) [683513]
-- [mm] Only flush TLBs if a transhuge PMD is modified for NUMA pte scanning (Rik van Riel) [683513]
-- [mm] Do not flush TLB during protection change if !pte_present && !migration_entry (Rik van Riel) [683513]
-- [mm] Account for a THP NUMA hinting update as one PTE update (Rik van Riel) [683513]
-- [mm] Close races between THP migration and PMD numa clearing (Rik van Riel) [683513]
-- [mm] numa: Sanitize task_numa_fault() callsites (Rik van Riel) [683513]
-- [mm] Prevent parallel splits during THP migration (Rik van Riel) [683513]
-- [mm] Wait for THP migrations to complete during NUMA hinting faults (Rik van Riel) [683513]
-- [mm] numa: Do not account for a hinting fault if we raced (Rik van Riel) [683513]
-- [mm] sched/numa: Fix comments (Rik van Riel) [683513]
-- [mm] numa: Document automatic NUMA balancing sysctls (Rik van Riel) [683513]
-- [kernel] sched: monolithic code dump of what is being pushed (Rik van Riel) [683513]
-- [kernel] sched: Use an accessor to read the rq clock (Rik van Riel) [683513]
-- [kernel] sched: fix NUMA balancing when !SCHED_DEBUG (Rik van Riel) [683513]
-- [kernel] sched: Ensure update_cfs_shares() is called for parents of continuously-running tasks (Rik van Riel) [683513]
-- [kernel] sched: Fix some kernel-doc warnings (Rik van Riel) [683513]
-- [virt] kvm/vmx: do not check bit 12 of EPT violation exit qualification when undefined (Gleb Natapov) [1009441]
-- [virt] kvm/vmx: set "blocked by NMI" flag if EPT violation happens during IRET from NMI (Gleb Natapov) [1009441]
-
-* Fri Oct 11 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-34.el7]
-- [netdrv] netxen_nic: Update version to 4.0.81 (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: clean up unnecessary MSI/MSI-X capability find (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: Convert mac address uses of 6 to ETH_ALEN (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: replace strict_strtoul() with kstrtoul() (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: Avoid mixed mode interrupts (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: netxen_setup_intr() function code cleanup (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: Log proper error message in case of mismatched adapter type (Chad Dupuis) [725019]
-- [netdrv] netxen_nic: Log driver version with firmware version (Chad Dupuis) [725019]
-- [tools] perf/diff: Add generic order option for compute sorting (Jiri Olsa) [1011529]
-- [tools] perf/diff: Making compute functions static (Jiri Olsa) [1011529]
-- [tools] perf/diff: Update perf diff documentation for multiple data comparison (Jiri Olsa) [1011529]
-- [tools] perf/diff: Change diff command to work over multiple data files (Jiri Olsa) [1011529]
-- [tools] perf/diff: Move columns into struct data__file (Jiri Olsa) [1011529]
-- [tools] perf/diff: Move diff related columns into diff command (Jiri Olsa) [1011529]
-- [tools] perf/diff: Display data file info ahead of the diff output (Jiri Olsa) [1011529]
-- [tools] perf/hists: Marking dummy hists entries (Jiri Olsa) [1011529]
-- [tools] perf/diff: Switching the base hists to be pairs head (Jiri Olsa) [1011529]
-- [tools] perf/diff: Introducing diff_data object to hold files (Jiri Olsa) [1011529]
-- [tools] perf: Centralize default columns init in perf_hpp__init (Jiri Olsa) [1011529]
-- [tools] perf: Add struct perf_hpp_fmt into hpp callbacks (Jiri Olsa) [1011529]
-- [s390] vmcore: use vmcore for zfcpdump (Hendrik Brueckner) [1012102]
-- [fs] proc/vmcore: enable /proc/vmcore mmap for s390 (Hendrik Brueckner) [1012102]
-- [s390] vmcore: implement remap_oldmem_pfn_range for s390 (Hendrik Brueckner) [1012102]
-- [fs] proc/vmcore: introduce remap_oldmem_pfn_range() (Hendrik Brueckner) [1012102]
-- [s390] vmcore: use ELF header in new memory feature (Hendrik Brueckner) [1012102]
-- [fs] proc/vmcore: introduce ELF header in new memory feature (Hendrik Brueckner) [1012102]
-- [fs] proc/vmcore: Disable mmap for s390 (Hendrik Brueckner) [1012102]
-- [s390] kdump: Allow copy_oldmem_page() copy to virtual memory (Hendrik Brueckner) [1012102]
-- [tracing] Add function probe to trigger a ftrace dump of current CPU trace (Jiri Olsa) [1011527]
-- [tracing] Add function probe to trigger a ftrace dump to console (Jiri Olsa) [1011527]
-- [virt] xen-gnt: prevent adding duplicate gnt callbacks (Radim Krcmar) [1013818]
-- [x86] microcode_amd: Fix patch level reporting for family 15h (Prarit Bhargava) [1014400]
-- [tty] Fix SIGTTOU not sent with tcflush() (Oleg Nesterov) [1012397]
-- [powerpc] sysfs: Disable writing to PURR in guest mode (Steve Best) [1015450]
-- [powerpc] vio: fix modalias_show return values (Prarit Bhargava) [1007924]
-- [powerpc] Correct FSCR bit definitions (Steve Best) [1008893]
-- [x86] microcode/amd: Fix early microcode loading (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Make cpu_has_amd_erratum() use the correct struct cpuinfo_x86 (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Fix error path in apply_microcode_amd() (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Another early loading fixup (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Allow multiple families' bin files appended together (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Make find_ucode_in_initrd() __init (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Fix warnings and errors on with CONFIG_MICROCODE=m (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Early microcode patch loading support for AMD (Jarod Wilson) [1016168]
-- [x86] microcode/amd: Refactor functions to prepare for early loading (Jarod Wilson) [1016168]
-- [x86] microcode: Vendor abstract out save_microcode_in_initrd() (Jarod Wilson) [1016168]
-- [x86] microcode/intel: Correct typo in printk (Jarod Wilson) [1016168]
-- [block] nvme: Update nvme_id_power_state with latest spec (David Milburn) [1005908]
-- [block] nvme: Split header file into user-visible and kernel-visible pieces (David Milburn) [1005908]
-- [block] nvme: Merge issue on character device bring-up (David Milburn) [1005908]
-- [block] nvme: Handle ioremap failure (David Milburn) [1005908]
-- [block] nvme: Add pci suspend/resume driver callbacks (David Milburn) [1005908]
-- [block] nvme: Use normal shutdown (David Milburn) [1005908]
-- [block] nvme: Separate controller init from disk discovery (David Milburn) [1005908]
-- [block] nvme: Separate queue alloc/free from create/delete (David Milburn) [1005908]
-- [block] nvme: Group pci related actions in functions (David Milburn) [1005908]
-- [block] nvme: Disk stats for read/write commands only (David Milburn) [1005908]
-- [block] nvme: Bring up cdev on set feature failure (David Milburn) [1005908]
-- [block] nvme: Fix checkpatch issues (David Milburn) [1005908]
-- [block] nvme: Namespace IDs are unsigned (David Milburn) [1005908]
-- [block] nvme: Call nvme_process_cq from submission path (David Milburn) [1005908]
-- [block] nvme: Remove "process_cq did something" message (David Milburn) [1005908]
-- [block] nvme: Return correct value from interrupt handler (David Milburn) [1005908]
-- [block] nvme: Disk IO statistics (David Milburn) [1005908]
-- [block] nvme: Restructure MSI / MSI-X setup (David Milburn) [1005908]
-- [block] nvme: Use kzalloc instead of kmalloc+memset (David Milburn) [1005908]
-
-* Fri Oct 04 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-33.el7]
-- [fs] nfs: Give "flavor" an initial value to fix a compile warning (Jeff Layton) [1009119]
-- [fs] nfs: try SECINFO_NO_NAME flavs until one works (Jeff Layton) [1009119]
-- [fs] nfs: Ensure memory ordering between nfs4_ds_connect and nfs4_fl_prepare_ds (Jeff Layton) [1009119]
-- [fs] nfs: nfs4_fl_prepare_ds, fix bugs when the connect attempt fails (Jeff Layton) [1009119]
-- [fs] nfs: Honour the 'opened' parameter in the atomic_open() filesystem method (Jeff Layton) [1009119]
-- [net] sunrpc: rpcsec_gss, fix crash on destroying gss auth (Jeff Layton) [1009119]
-- [net] sunrpc: No, I did not intend to create a 256KiB hashtable (Jeff Layton) [1009119]
-- [net] sunrpc: Add missing kuids conversion for printing (Jeff Layton) [1009119]
-- [fs] nfs: sp4_mach_cred, WARN_ON -> WARN_ON_ONCE (Jeff Layton) [1009119]
-- [fs] nfs: sp4_mach_cred, no need to ref count creds (Jeff Layton) [1009119]
-- [fs] nfs: fix SECINFO* use of put_rpccred (Jeff Layton) [1009119]
-- [fs] nfs: sp4_mach_cred: ask for WRITE and COMMIT (Jeff Layton) [1009119]
-- [fs] nfs: fix decode_free_stateid (Jeff Layton) [1009119]
-- [fs] nfs: use mach cred for SECINFO_NO_NAME w/ integrity (Jeff Layton) [1009119]
-- [fs] nfs: nfs_compare_super shouldn't check the auth flavour unless 'sec=' was set (Jeff Layton) [1009119]
-- [fs] nfs: Allow security autonegotiation for submounts (Jeff Layton) [1009119]
-- [fs] nfs: Disallow security negotiation for lookups when 'sec=' is specified (Jeff Layton) [1009119]
-- [fs] nfs: Fix security auto-negotiation (Jeff Layton) [1009119]
-- [fs] nfs: Clean up nfs_parse_security_flavors() (Jeff Layton) [1009119]
-- [fs] nfs: Clean up the auth flavour array mess (Jeff Layton) [1009119]
-- [fs] nfs: Use MDS auth flavor for data server connection (Jeff Layton) [1009119]
-- [fs] nfs: Map NFS4ERR_WRONG_CRED to EPERM (Jeff Layton) [1009119]
-- [fs] nfs: Add SP4_MACH_CRED write and commit support (Jeff Layton) [1009119]
-- [fs] nfs: Add SP4_MACH_CRED stateid support (Jeff Layton) [1009119]
-- [fs] nfs: Add SP4_MACH_CRED secinfo suppor (Jeff Layton) [1009119]
-- [fs] nfs: Add SP4_MACH_CRED cleanup support (Jeff Layton) [1009119]
-- [fs] nfs: Add state protection handler (Jeff Layton) [1009119]
-- [fs] nfs: Minimal SP4_MACH_CRED implementation (Jeff Layton) [1009119]
-- [net] sunrpc: Replace pointer values with task->tk_pid and rpc_clnt->cl_clid (Jeff Layton) [1009119]
-- [net] sunrpc: Add an identifier for struct rpc_clnt (Jeff Layton) [1009119]
-- [net] sunrpc: Ensure rpc_task->tk_pid is available for tracepoints (Jeff Layton) [1009119]
-- [fs] nfs: Document the recover_lost_locks kernel parameter (Jeff Layton) [1009119]
-- [fs] nfs: Don't try to recover NFSv4 locks when they are lost (Jeff Layton) [1009119]
-- [net] sunrpc: Add tracepoints to help debug socket connection issues (Jeff Layton) [1009119]
-- [fs] nfs: Fix warning introduced by NFSv4.0 transport blocking patches (Jeff Layton) [1009119]
-- [fs] nfs: fix CONFIG_NFS_V4_1 not enabled "make C=2" warning (Jeff Layton) [1009119]
-- [fs] nfs: Update session draining barriers for NFSv4.0 transport blocking (Jeff Layton) [1009119]
-- [fs] nfs: Add nfs4_sequence calls for OPEN_CONFIRM (Jeff Layton) [1009119]
-- [fs] nfs: Add nfs4_sequence calls for RELEASE_LOCKOWNER (Jeff Layton) [1009119]
-- [fs] nfs: Enable nfs4_setup_sequence() for DELEGRETURN (Jeff Layton) [1009119]
-- [fs] nfs: NFSv4.0 transport blocking (Jeff Layton) [1009119]
-- [fs] nfs: Add a slot table to struct nfs_client for NFSv4.0 transport blocking (Jeff Layton) [1009119]
-- [fs] nfs: Add global helper for releasing slot table resources (Jeff Layton) [1009119]
-- [fs] nfs: Add global helper to set up a stand-along nfs4_slot_table (Jeff Layton) [1009119]
-- [fs] nfs: Enable slot table helpers for NFSv4.0 (Jeff Layton) [1009119]
-- [fs] nfs: Remove unused call_sync minor version op (Jeff Layton) [1009119]
-- [fs] nfs: Add RPC callouts to start NFSv4.0 synchronous requests (Jeff Layton) [1009119]
-- [fs] nfs: Common versions of sequence helper functions (Jeff Layton) [1009119]
-- [fs] nfs: Clean up nfs4_setup_sequence() (Jeff Layton) [1009119]
-- [fs] nfs: Rename nfs41_call_sync_data as a common data structure (Jeff Layton) [1009119]
-- [fs] nfs: When displaying session slot numbers, use "u" consistently (Jeff Layton) [1009119]
-- [fs] nfs: Ensure that rmdir() waits for sillyrenames to complete (Jeff Layton) [1009119]
-- [fs] nfs: use the mach cred for SECINFO w/ integrity (Jeff Layton) [1009119]
-- [net] sunrpc: refactor rpcauth_checkverf error returns (Jeff Layton) [1009119]
-- [fs] nfs: avoid expired credential keys for buffered writes (Jeff Layton) [1009119]
-- [net] sunrpc: new rpc_credops to test credential expiry (Jeff Layton) [1009119]
-- [net] sunrpc: don't map EKEYEXPIRED to EACCES in call_refreshresult (Jeff Layton) [1009119]
-- [fs] nfs: Fix up two use-after-free issues with the new tracing code (Jeff Layton) [1009119]
-- [fs] nfs: remove incorrect "Lock reclaim failed!" warning (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging test_stateid events (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging slot table operations (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging layoutget/return/commit (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging reads and writes (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging getattr (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging the idmapper (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging delegations (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging rename (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging inode manipulations (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging lookup/create operations (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging file locking (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging file open (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging state management problems (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging NFS hard links (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging NFS rename and sillyrename issues (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging directory changes (Jeff Layton) [1009119]
-- [fs] nfs: Add tracepoints for debugging generic file create events (Jeff Layton) [1009119]
-- [fs] nfs: Add event tracing for generic NFS lookups (Jeff Layton) [1009119]
-- [fs] nfs: Pass in lookup flags from nfs_atomic_open to nfs_lookup (Jeff Layton) [1009119]
-- [fs] nfs: Add event tracing for generic NFS events (Jeff Layton) [1009119]
-- [fs] nfs: refactor code for calculating the crc32 hash of a filehandle (Jeff Layton) [1009119]
-- [fs] nfs: Clean up nfs_sillyrename() (Jeff Layton) [1009119]
-- [fs] nfs: Fix an incorrect pointer declaration in decode_first_pnfs_layout_type (Jeff Layton) [1009119]
-- [fs] nfs: Deal with a sparse warning in nfs_idmap_get_key() (Jeff Layton) [1009119]
-- [fs] nfs: Deal with some more sparse warnings (Jeff Layton) [1009119]
-- [fs] nfs: Deal with a sparse warning in nfs4_opendata_alloc (Jeff Layton) [1009119]
-- [fs] nfs: Deal with a sparse warning in nfs3_proc_create (Jeff Layton) [1009119]
-- [fs] nfs: Remove the NFSv4 "open optimisation" from nfs_permission (Jeff Layton) [1009119]
-- [fs] nfs: Use clientid management rpc_clnt for secinfo_no_name (Jeff Layton) [1009119]
-- [fs] nfs: Use clientid management rpc_clnt for secinfo (Jeff Layton) [1009119]
-- [fs] nfs: Increase NFS4_DEF_SLOT_TABLE_SIZE (Jeff Layton) [1009119]
-- [fs] nfs: Remove unused authflavour parameter from init_client (Jeff Layton) [1009119]
-- [fs] nfs: Never use user credentials for lease renewal (Jeff Layton) [1009119]
-- [fs] nfs: Use root's credential for lease management when keytab is missing (Jeff Layton) [1009119]
-- [fs] nfs: Refuse mount attempts with proto=udp (Jeff Layton) [1009119]
-- [fs] nfs: Fix nfs4_init_uniform_client_string for net namespaces (Jeff Layton) [1009119]
-- [fs] nfs: Use the mount point rpc_clnt for layoutreturn (Jeff Layton) [1009119]
-- [fs] nfs: Fix return type of nfs4_end_drain_session() stub (Jeff Layton) [1009119]
-- [fs] nfs: encode_attrs should not backfill the bitmap and attribute length (Jeff Layton) [1009119]
-- [net] sunrpc: Fix memory corruption issue on 32-bit highmem systems (Jeff Layton) [1009119]
-- [fs] nfs: Remove unnecessary call to nfs_setsecurity in nfs_fhget() (Jeff Layton) [1009119]
-- [fs] nfs: Fix the sync mount option for nfs4 mounts (Jeff Layton) [1009119]
-- [fs] nfs: Fix writeback performance issue on cache invalidation (Jeff Layton) [1009119]
-- [net] sunrpc: If the rpcbind channel is disconnected, fail the call to unregister (Jeff Layton) [1009119]
-- [net] sunrpc: Don't auto-disconnect from the local rpcbind socket (Jeff Layton) [1009119]
-- [hid] zeroplus: validate output report details (Frantisek Hrbata) [999907] {CVE-2013-2889}
-- [hid] provide a helper for validating hid reports (Frantisek Hrbata) [999907] {CVE-2013-2889}
-- [s390] zfcp: enable FCP hardware data router by default (Hendrik Brueckner) [980146]
-- [scsi] csiostor: fix failure to communicate with firmware, error -110 (Jay Fenlason) [917907]
-- [block] mtip32xx: add SRSI support (David Milburn) [842533]
-- [misc] hpilo: Correct panic when an AUX iLO is detected (Nigel Croxon) [996603]
-- [Documentation] add write up on module signing (Kyle McMartin) [905495]
-- [net] netfilter: SYNPROXY: let unrelated packets continue (Jesper Brouer) [1007439]
-- [net] netfilter: synproxy_core: fix warning in __nf_ct_ext_add_length() (Jesper Brouer) [1007439]
-- [net] netfilter: more strict TCP flag matching in SYNPROXY (Jesper Brouer) [1007439]
-- [net] netfilter: add IPv6 SYNPROXY target (Jesper Brouer) [1007439]
-- [net] syncookies: export cookie_v6_init_sequence/cookie_v6_check (Jesper Brouer) [1007439]
-- [net] netfilter: add SYNPROXY core/target (Jesper Brouer) [1007439]
-- [net] syncookies: export cookie_v4_init_sequence/cookie_v4_check (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: make sequence number adjustments usuable without NAT (Jesper Brouer) [1007439]
-- [net] netfilter: nf_defrag_ipv6.o included twice (Jesper Brouer) [1007439]
-- [net] netfilter: ip[6]t_REJECT, tcp-reset using wrong MAC source if bridged (Jesper Brouer) [1007439]
-- [net] netfilter: export xt_HMARK.h to userland (Jesper Brouer) [1007439]
-- [net] netfilter: export xt_rpfilter.h to userland (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: fix uninitialized variable (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_queue: allow to attach expectations to conntracks (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: refactor ctnetlink_create_expect (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: fix tcp_in_window for Fast Open (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: don't send destroy events from iterator (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_{log, queue}, fix information leaks in netlink message (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPMSS: correct return value in tcpmss_mangle_packet (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPOPTSTRIP: fix possible off by one access (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPMSS: fix handling of malformed TCP header and options (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: use per-conntrack locking for sequence number adjustments (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: change sequence number adjustments to 32 bits (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: fix locking in nf_nat_seq_adjust() (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: remove duplicate code in ctnetlink (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: constify sk_buff argument to nf_ct_attach() (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: remove net_ratelimit() for LOG_INVALID() (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: fix incorrect NAT expectation dumping (Jesper Brouer) [1007439]
-- [net] netfilter: Fix build errors with xt_socket.c (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: fix broken v0 support (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: add XT_SOCKET_NOWILDCARD flag (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: avoid large timeout for mid-stream pickup (Jesper Brouer) [1007439]
-- [net] netfilter: check return code from nla_parse_tested (Jesper Brouer) [1007439]
-- [net] Convert uses of typedef ctl_table to struct ctl_table (Jesper Brouer) [1007439]
-- [net] netfilter: Implement RFC 1123 for FTP conntrack (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_queue: avoid peer_portid test (Jesper Brouer) [1007439]
-- [net] netfilter: don't panic on error while walking through the init path (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: use IP early demux (Jesper Brouer) [1007439]
-- [net] netfilter: xt_CT: optimize XT_CT_NOTRACK (Jesper Brouer) [1007439]
-- [net] qdisc: fix build with !CONFIG_NET_SCHED (Jesper Brouer) [1000395]
-- [net] qdisc: make args to qdisc_create_default const (Jesper Brouer) [1000395]
-- [net] qdisc: allow setting default queuing discipline (Jesper Brouer) [1000395]
-- [net] Remove extern from include/net/ scheduling prototypes (Jesper Brouer) [1000395]
-- [net] htb: fix sign extension bug (Jesper Brouer) [1000395]
-- [net] htb: refactor struct htb_sched fields for performance (Jesper Brouer) [1000395]
-- [net] htb: reorder struct htb_class fields for performance (Jesper Brouer) [1000395]
-- [net] htb: do not setup default rate estimators (Jesper Brouer) [1000395]
-- [net] net_sched: add 64bit rate estimators (Jesper Brouer) [1000395]
-
-* Fri Oct 04 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-32.el7]
-- [net] netfilter: SYNPROXY: let unrelated packets continue (Jesper Brouer) [1007439]
-- [net] netfilter: synproxy_core: fix warning in __nf_ct_ext_add_length() (Jesper Brouer) [1007439]
-- [net] netfilter: more strict TCP flag matching in SYNPROXY (Jesper Brouer) [1007439]
-- [net] netfilter: add IPv6 SYNPROXY target (Jesper Brouer) [1007439]
-- [net] syncookies: export cookie_v6_init_sequence/cookie_v6_check (Jesper Brouer) [1007439]
-- [net] netfilter: add SYNPROXY core/target (Jesper Brouer) [1007439]
-- [net] syncookies: export cookie_v4_init_sequence/cookie_v4_check (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: make sequence number adjustments usuable without NAT (Jesper Brouer) [1007439]
-- [net] netfilter: nf_defrag_ipv6.o included twice (Jesper Brouer) [1007439]
-- [net] netfilter: ip[6]t_REJECT, tcp-reset using wrong MAC source if bridged (Jesper Brouer) [1007439]
-- [net] netfilter: export xt_HMARK.h to userland (Jesper Brouer) [1007439]
-- [net] netfilter: export xt_rpfilter.h to userland (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: fix uninitialized variable (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_queue: allow to attach expectations to conntracks (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: refactor ctnetlink_create_expect (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: fix tcp_in_window for Fast Open (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: don't send destroy events from iterator (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_{log, queue}, fix information leaks in netlink message (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPMSS: correct return value in tcpmss_mangle_packet (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPOPTSTRIP: fix possible off by one access (Jesper Brouer) [1007439]
-- [net] netfilter: xt_TCPMSS: fix handling of malformed TCP header and options (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: use per-conntrack locking for sequence number adjustments (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: change sequence number adjustments to 32 bits (Jesper Brouer) [1007439]
-- [net] netfilter: nf_nat: fix locking in nf_nat_seq_adjust() (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: remove duplicate code in ctnetlink (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: constify sk_buff argument to nf_ct_attach() (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: remove net_ratelimit() for LOG_INVALID() (Jesper Brouer) [1007439]
-- [net] netfilter: ctnetlink: fix incorrect NAT expectation dumping (Jesper Brouer) [1007439]
-- [net] netfilter: Fix build errors with xt_socket.c (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: fix broken v0 support (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: add XT_SOCKET_NOWILDCARD flag (Jesper Brouer) [1007439]
-- [net] netfilter: nf_conntrack: avoid large timeout for mid-stream pickup (Jesper Brouer) [1007439]
-- [net] netfilter: check return code from nla_parse_tested (Jesper Brouer) [1007439]
-- [net] Convert uses of typedef ctl_table to struct ctl_table (Jesper Brouer) [1007439]
-- [net] netfilter: Implement RFC 1123 for FTP conntrack (Jesper Brouer) [1007439]
-- [net] netfilter: nfnetlink_queue: avoid peer_portid test (Jesper Brouer) [1007439]
-- [net] netfilter: don't panic on error while walking through the init path (Jesper Brouer) [1007439]
-- [net] netfilter: xt_socket: use IP early demux (Jesper Brouer) [1007439]
-- [net] netfilter: xt_CT: optimize XT_CT_NOTRACK (Jesper Brouer) [1007439]
-- [net] qdisc: fix build with !CONFIG_NET_SCHED (Jesper Brouer) [1000395]
-- [net] qdisc: make args to qdisc_create_default const (Jesper Brouer) [1000395]
-- [net] qdisc: allow setting default queuing discipline (Jesper Brouer) [1000395]
-- [net] Remove extern from include/net/ scheduling prototypes (Jesper Brouer) [1000395]
-- [net] htb: fix sign extension bug (Jesper Brouer) [1000395]
-- [net] htb: refactor struct htb_sched fields for performance (Jesper Brouer) [1000395]
-- [net] htb: reorder struct htb_class fields for performance (Jesper Brouer) [1000395]
-- [net] htb: do not setup default rate estimators (Jesper Brouer) [1000395]
-- [net] net_sched: add 64bit rate estimators (Jesper Brouer) [1000395]
-
-* Mon Sep 30 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-31.el7]
-- [watchdog] hpwdt: Patch to ignore auxilary iLO devices (Nigel Croxon) [996605]
-- [s390] tx: allow program interruption filtering in user space (Hendrik Brueckner) [1006517]
-- [block] add padding for kabi to block_device_operations (Don Zickus) [988500]
-- [fs] gfs2: Don't flag consistency error if first mounter is a spectator (Robert S Peterson) [1004448]
-- [tty] disassociate_ctty() sends the extra SIGCONT (Oleg Nesterov) [1011820]
-- [x86] mm: Add memory tracking support for 1G hugepages (David Bulkow) [1000149]
-- [tty] hvc_iucv: Disconnect IUCV connection when lowering DTR (Hendrik Brueckner) [1007571]
-- [tty] hvc_console: Add DTR/RTS callback to handle HUPCL control (Hendrik Brueckner) [1007571]
-- [netdrv] enic: update enic maintainers and driver (Stefan Assmann) [747385]
-- [netdrv] enic: Exposing symbols for Cisco's low latency driver (Stefan Assmann) [747385]
-- [netdrv] enic: Try DMA 64 first, then failover to DMA (Stefan Assmann) [747385]
-- [netdrv] enic: record q_number and rss_hash for skb (Stefan Assmann) [747385]
-- [netdrv] enic: Add multi tx support for enic (Stefan Assmann) [747385]
-- [netdrv] enic: Generate notification of hardware crash (Stefan Assmann) [747385]
-- [netdrv] enic: Add an interface for USNIC to interact with firmware (Stefan Assmann) [747385]
-- [netdrv] enic: Adding support for Cisco Low Latency NIC (Stefan Assmann) [747385]
-- [netdrv] enic: Move ethtool code to a separate file (Stefan Assmann) [747385]
-- [netdrv] enic: release rtnl_lock on error-path (Stefan Assmann) [747385]
-- [powerpc] perf: Power7 Update testing ABI to list CPI-stack events (Steve Best) [1009105]
-- [powerpc] perf: Make Power7 events available for perf (Steve Best) [1009105]
-- [powerpc] perf: fix a typo of a Power7 event name (Steve Best) [1009105]
-- [tools] perf/tests: Add parse events tests for leader sampling (Jiri Olsa) [1011533]
-- [tools] perf/tests: Add attr record group sampling test (Jiri Olsa) [1011533]
-- [tools] perf: Add 'S' event/group modifier to read sample value (Jiri Olsa) [1011533]
-- [tools] perf/evsel: Add PERF_SAMPLE_READ sample related processing (Jiri Olsa) [1011533]
-- [tools] perf/evlist: Add perf_evlist__id2sid method to get event ID related data (Jiri Olsa) [1011533]
-- [tools] perf/evlist: Fix event ID retrieval for group format read case (Jiri Olsa) [1011533]
-- [tools] perf: Add support for parsing PERF_SAMPLE_READ sample type (Jiri Olsa) [1011533]
-- [kernel] perf/evlist: Use PERF_EVENT_IOC_ID perf ioctl to read event id (Jiri Olsa) [1011533]
-- [kernel] perf: Do not get values from disabled counters in group format read (Jiri Olsa) [1011533]
-- [kernel] perf: Add PERF_EVENT_IOC_ID ioctl to return event ID (Jiri Olsa) [1011533]
-- [kernel] add support for init_array constructors fix (Frantisek Hrbata) [824466]
-- [kernel] add support for init_array constructors (Frantisek Hrbata) [824466]
-- [kernel] gcov: compile specific gcov implementation based on gcc version (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 47 gcov format fix 3 (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 47 gcov format checkpatch fixes (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 47 gcov format fix fix (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 47 gcov format fix (Frantisek Hrbata) [824466]
-- [kernel] gcov: add support for gcc 4.7 gcov format (Frantisek Hrbata) [824466]
-- [kernel] gcov: move gcov structs definitions to a gcc version specific file (Frantisek Hrbata) [824466]
-
-* Mon Sep 30 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-30.el7]
-- [drm] qxl: add delayed fb operations (Dave Airlie) [1002056]
-- [edac] Fix lockdep splat (Aristeu Rozanski) [967459]
-- [mm] vmalloc: fix memleak in __vunmap (Jan Stancek) [1012358]
-- [x86] perf_event_amd: Rework AMD PMU init code (Prarit Bhargava) [1000672]
-- [md] dm: add reserved_bio_based_ios module parameter (Mike Snitzer) [1010450]
-- [md] dm: add reserved_rq_based_ios module parameter (Mike Snitzer) [1010450]
-- [md] dm: lower bio-based mempool reservation (Mike Snitzer) [1010450]
-- [block] Add nr_bios to block_rq_remap tracepoint (Mike Snitzer) [1010450]
-- [md] dm-mpath: disable WRITE SAME if it fails (Mike Snitzer) [987454]
-- [md] dm-mpath: do not fail path on -ENOSPC (Mike Snitzer) [1010437]
-- [scsi] Return ENODATA on medium error (Mike Snitzer) [1010437]
-- [scsi] return ENOSPC on thin provisioning failure (Mike Snitzer) [1010437]
-- [scsi] Set hostbyte status in scsi_check_sense() (Mike Snitzer) [1010437]
-- [scsi] Document enhanced error codes (Mike Snitzer) [1010437]
-- [md] dm-thin: do not expose non-zero discard limits if discards disabled (Mike Snitzer) [998421]
-- [md] dm-snapshot: fix performance degradation due to small hash size (Mike Snitzer) [1010437]
-- [md] dm-snapshot: workaround for a false positive lockdep warning (Mike Snitzer) [1010437]
-- [md] dm-stripe: silence a couple sparse warnings (Mike Snitzer) [1010437]
-- [md] dm-stats: fix possible counter corruption on 32-bit systems (Mike Snitzer) [1010437]
-- [md] dm: add statistics support (Mike Snitzer) [1010437]
-- [lib] math64: New separate div64_u64_rem helper (Mike Snitzer) [1010437]
-- [md] dm-thin: always return -ENOSPC if no_free_space is set (Mike Snitzer) [1010437]
-- [md] dm-ioctl: cleanup error handling in table_load (Mike Snitzer) [1010437]
-- [md] dm-ioctl: increase granularity of type_lock when loading table (Mike Snitzer) [1010437]
-- [md] dm-ioctl: prevent rename to empty name or uuid (Mike Snitzer) [1010437]
-- [md] dm-thin: set pool read-only if breaking_sharing fails block allocation (Mike Snitzer) [1010437]
-- [md] dm-thin: prefix pool error messages with pool device name (Mike Snitzer) [1010437]
-- [md] dm: allow error target to replace bio-based and request-based targets (Mike Snitzer) [1010437]
-- [md] dm-space-map: optimise sm_ll_dec and sm_ll_inc (Mike Snitzer) [1010437]
-- [md] dm-btree: prefetch child nodes when walking tree for a dm_btree_del (Mike Snitzer) [1010437]
-- [md] dm-btree: use pop_frame in dm_btree_del to cleanup code (Mike Snitzer) [1010437]
-- [md] dm-cache: eliminate holes in cache structure (Mike Snitzer) [1010437]
-- [md] dm-cache: fix stacking of geometry limits (Mike Snitzer) [1010437]
-- [md] dm-thin: fix stacking of geometry limits (Mike Snitzer) [1010437]
-- [md] dm-cache: add data block size limits to code and Documentation (Mike Snitzer) [1010437]
-- [md] dm: stop using WQ_NON_REENTRANT (Mike Snitzer) [1010437]
-- [md] dm-cache: avoid conflicting remove_mapping() in mq policy (Mike Snitzer) [1010437]
-- [md] dm: optimize reorder structure (Mike Snitzer) [1010437]
-- [md] dm: optimize use SRCU and RCU (Mike Snitzer) [1010437]
-- [md] dm-bufio: submit writes outside lock (Mike Snitzer) [1010437]
-- [md] dm-cache: fix arm link errors with inline (Mike Snitzer) [1010437]
-- [md] dm-verity: use __ffs and __fls (Mike Snitzer) [1010437]
-- [md] dm-flakey: correct ctr alloc failure mesg (Mike Snitzer) [1010437]
-- [md] dm-verity: remove pointless comparison (Mike Snitzer) [1010437]
-- [md] dm: use __GFP_HIGHMEM in __vmalloc (Mike Snitzer) [1010437]
-- [md] dm-verity: fix inability to use a few specific devices sizes (Mike Snitzer) [1010437]
-- [md] dm-ioctl: set noio flag to avoid __vmalloc deadlock (Mike Snitzer) [1010437]
-- [md] dm-mpath: fix ioctl deadlock when no paths (Mike Snitzer) [1010437]
-- [powerpc] Default arch idle could cede processor on pseries (Steve Best) [1008895]
-
-* Wed Sep 25 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-29.el7]
-- [s390] zfcp: remove access control tables interface (keep sysfs files) (Hendrik Brueckner) [1006516]
-- [s390] zfcp: fix lock imbalance by reworking request queue locking (Hendrik Brueckner) [1006525]
-- [s390] zfcp: fix schedule-inside-lock in scsi_device list loops (Hendrik Brueckner) [1006524]
-- [x86] setup: avoid remapping data in parse_setup_data() (Nigel Croxon) [1004428]
-- [hid] validate HID report id size (Frantisek Hrbata) [1000454] {CVE-2013-2888}
-- [kernel] userns: prevent the use of user namespaces (Aristeu Rozanski) [993320]
-- [crypto] x509: don't reject not-yet-valid keys (kyle mcmartin) [905910]
-- [kernel] perf: Prevent race in unthrottling code (Jiri Olsa) [992941]
-- [s390] pci: use adapter interrupt vector helpers (Hendrik Brueckner) [1005896]
-- [s390] pci: cleanup function names (Hendrik Brueckner) [1005896]
-- [s390] airq: introduce adapter interrupt vector helper (Hendrik Brueckner) [1005896]
-- [s390] pci: use virtual memory for iommu bitmap (Hendrik Brueckner) [1005896]
-- [s390] cio: fix unlocked access of global bitmap (Hendrik Brueckner) [1005896]
-- [s390] pci: update function handle after resume from hibernate (Hendrik Brueckner) [1005896]
-- [s390] pci: try harder to modify a function (Hendrik Brueckner) [1005896]
-- [s390] pci: split lpf (Hendrik Brueckner) [1005896]
-- [s390] hibernate: add early resume function (Hendrik Brueckner) [1005896]
-- [s390] pci: add recover sysfs knob (Hendrik Brueckner) [1005896]
-- [s390] pci: use claim_resource (Hendrik Brueckner) [1005896]
-- [s390] pci/hotplug: convert to be builtin only (Hendrik Brueckner) [1005896]
-- [s390] airq: simplify adapter interrupt code (Hendrik Brueckner) [1005896]
-- [s390] qdio: cleanup chsc SADC usage (Hendrik Brueckner) [1005896]
-- [s390] qdio: cleanup chsc SSQD usage (Hendrik Brueckner) [1005896]
-- [s390] pci: remove per device debug attribute (Hendrik Brueckner) [1005896]
-- [s390] pci: sysfs remove strlen (Hendrik Brueckner) [1005896]
-- [s390] pci: remove pdev during unplug (Hendrik Brueckner) [1005896]
-- [s390] pci: cleanup hotplug code (Hendrik Brueckner) [1005896]
-- [s390] pci: implement pcibios_release_device (Hendrik Brueckner) [1005896]
-- [s390] pci: use to_pci_dev (Hendrik Brueckner) [1005896]
-- [netdrv] sfc: check for allocation failure (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Update copyright banners (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add support for Solarflare SFC9100 family (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make efx_mcdi_{init, fini}() call efx_mcdi_drv_attach() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Allocate NVRAM partition ID range for PHY images (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add EF10 register and structure definitions (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Extend struct efx_tx_buffer to allow pushing option descriptors (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Use a global count of active queues instead of pending drains (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Prepare for RX scatter on EF10 (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Initialise IRQ moderation for all NIC types from efx_init_eventq() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Allow efx_nic_type::dimension_resources to fail (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Allow event queue initialisation to fail (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Document conditions for multicast replication vs filter replacement (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Implement asynchronous MCDI requests (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove unnecessary use of atomic_t (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Refactor efx_mcdi_rpc_start() and efx_mcdi_copyin() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add support for new board sensors (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Use extended MC_CMD_SENSOR_INFO and MC_CMD_READ_SENSORS (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Return an error code when a sensor is busy (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add support for reading packet length from prefix (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add TX merged completion counter (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Generalise packet hash lookup to support EF10 RX prefix (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rename EFX_PAGE_BLOCK_SIZE to EFX_VI_PAGE_SIZE and adjust comments (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove early call to efx_nic_type::reconfigure_mac in efx_reset_up() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: use MCDI epoch flag to improve MC reboot detection in the driver (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add EF10 support for TX/RX DMA error events handling (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add a function pointer to abstract write of host time into NIC shared memory (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: PTP MCDI requests need to initialise periph ID field (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Delegate MAC/NIC statistic description to efx_nic_type (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove driver-local struct ethtool_string (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove more left-overs from Falcon GMAC support (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move MTD operations into efx_nic_type (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move NIC-type-specific MTD partition date into separate structures (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Eliminate struct efx_mtd (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rename SPI stuff to show that it is Falcon-specific (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Cleanup Falcon-arch simple MAC filter state (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Define and use MCDI_POPULATE_DWORD_{1, 2, 3, 4, 5, 6, 7} (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add flag for stack-owned RX MAC filters (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Refactor Falcon-arch filter removal (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make most filter operations NIC-type-specific (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Refactor Falcon-arch search limit reset (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Split Falcon-arch-specific and common filter state (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Extend and abstract efx_filter_spec to cover Huntington/EF10 (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Name the RX drop queue ID (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rename Falcon-arch filter implementation types and functions (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove unused filter_flags variables and efx_farch_filter_id_flags() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Do not assume efx_nic_type::ev_fini is idempotent (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: EFX_WORKAROUND_ALWAYS is really specific to Falcon-architecture (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Get rid of per-NIC-type phys_addr_channels and mem_map_size (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Update and improve kernel-doc for efx_mcdi_state & efx_mcdi_iface (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix race in completion handling (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add support for MCDI v2 (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Update MCDI protocol definitions for EF10 (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Translate MCDI error numbers received in events (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move and rename Falcon/Siena common NIC operations (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Refactor queue teardown sequence to allow for EF10 flush behaviour (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove bogus call to efx_release_tx_buffers() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Stop RX refill before flushing RX queues (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Limit scope of a Falcon A1 IRQ workaround (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rework IRQ enable/disable (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Remove efx_process_channel_now() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rename Falcon-architecture register definitions (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make struct efx_special_buffer less special (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add GFP flags to efx_nic_alloc_buffer() and make most callers allow blocking (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make MCDI independent of Siena (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Make efx_mcdi_init() call efx_mcdi_handle_assertion() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Collect all MCDI port functions into mcdi_port.c (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move efx_mcdi_mac_reconfigure() to siena.c and rename (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move siena_reset_hw() and siena_map_reset_reason() into MCDI module (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Add and use MCDI_SET_QWORD() and MCDI_SET_ARRAY_QWORD() (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Ensure MCDI buffers, but not lengths, are dword aligned (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Use proper macros to declare and access MCDI arrays (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Introduce and use MCDI_CTL_SDU_LEN_MAX_V1 macro for Siena-specific code (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fill out the set of MCDI accessors (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Rationalise MCDI buffer accessors (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Introduce and use MCDI_DECLARE_BUF macro (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move more Falcon-specific code and definitions into falcon.c (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Move details of a Falcon bug workaround out of ethtool.c (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Use efx_mcdi_mon() to find efx_mcdi_mon structure from efx_nic (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: const-qualify source pointers for MMIO write functions (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix lookup of default RX MAC filters when steered using ethtool (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Enable RX scatter for flows steered by RFS (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix memory leak when discarding scattered packets (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Improve test for IOMMU in use (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix IRQ cleanup in case of a probe failure (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Do not pass non-TCP packets into GRO code (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Define and set RX buffer flag for packets parsed as TCP (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Enable accelerated RFS on vlans (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Report software timestamping capabilities (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Increase size of RX SKB header area (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Enable RX checksum offload for packets not handled by GRO (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Fix EEH with legacy interrupts (Nikolay Aleksandrov) [1005248]
-- [netdrv] sfc: Store port number in private data, not net_device::dev_id (Nikolay Aleksandrov) [1005248]
-
-* Mon Sep 23 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-28.el7]
-- [fs] namei: Add missing unlocks to error paths of mountpoint_last (Jeff Layton) [980172]
-- [fs] autofs4: fix device ioctl mount lookup (Jeff Layton) [980172]
-- [fs] namei: introduce kern_path_mountpoint() (Jeff Layton) [980172]
-- [fs] namei: rename user_path_umountat() to user_path_mountpoint_at() (Jeff Layton) [980172]
-- [fs] namei: take unlazy_walk() into umount_lookup_last() (Jeff Layton) [980172]
-- [fs] vfs: allow umount to handle mountpoints without revalidating them (Jeff Layton) [980172]
-- [acpi] apei: Soft-offline a page on firmware GHES notification (Janet Morgan) [984133]
-- [acpi] apei: Add a boot option to disable ff mode for corrected errors (Janet Morgan) [984133]
-- [mcheck] mce: Honour Firmware First for MCA banks listed in APEI HEST CMC (Janet Morgan) [984133]
-- [fs] cifs: Respect epoch value from create lease context v2 (Sachin Prabhu) [1007981]
-- [fs] cifs: Add create lease v2 context for SMB3 (Sachin Prabhu) [1007981]
-- [fs] cifs: Move parsing lease buffer to ops struct (Sachin Prabhu) [1007981]
-- [fs] cifs: Move creating lease buffer to ops struct (Sachin Prabhu) [1007981]
-- [fs] cifs: Store lease state itself rather than a mapped oplock value (Sachin Prabhu) [1007981]
-- [fs] cifs: Replace clientCanCache* bools with an integer (Sachin Prabhu) [1007981]
-- [fs] cifs: quiet sparse compile warning (Sachin Prabhu) [1007981]
-- [fs] cifs: Start using per session key for smb2/3 for signature generation (Sachin Prabhu) [1007981]
-- [fs] cifs: Add a variable specific to NTLMSSP for key exchange (Sachin Prabhu) [1007981]
-- [fs] cifs: Process post session setup code in respective dialect functions (Sachin Prabhu) [1007981]
-- [fs] cifs: convert to use le32_add_cpu() (Sachin Prabhu) [1007981]
-- [fs] cifs: Fix missing lease break (Sachin Prabhu) [1007981]
-- [fs] cifs: Fix a memory leak when a lease break comes (Sachin Prabhu) [1007981]
-- [fs] cifs: convert case-insensitive dentry ops to use new case conversion routines (Sachin Prabhu) [1007981]
-- [fs] cifs: add new case-insensitive conversion routines that are based on wchar_t's (Sachin Prabhu) [1007981]
-- [fs] cifs: Move and expand MAX_SERVER_SIZE definition (Sachin Prabhu) [1007981]
-- [fs] cifs: Expand max share name length to 256 (Sachin Prabhu) [1007981]
-- [fs] cifs: Move string length definitions to uapi (Sachin Prabhu) [1007981]
-- [fs] cifs: Implement follow_link for nounix CIFS mounts (Sachin Prabhu) [1007981]
-- [fs] cifs: Implement follow_link for SMB2 (Sachin Prabhu) [1007981]
-- [fs] cifs: display iocharset= option in /proc/mounts (Sachin Prabhu) [1007981]
-- [fs] cifs: create a new Documentation/ directory and move docfiles into it (Sachin Prabhu) [1007981]
-- [fs] cifs: ensure that srv_mutex is held when dealing with ssocket pointer (Sachin Prabhu) [1007981]
-- [fs] cifs: don't instantiate new dentries in readdir for inodes that need to be revalidated immediately (Sachin Prabhu) [1007981]
-- [fs] cifs: set sb->s_d_op before calling d_make_root() (Sachin Prabhu) [1007981]
-- [fs] cifs: file, initialize oparms.reconnect before using it (Sachin Prabhu) [1007981]
-- [fs] cifs: Do not attempt to do cifs operations reading symlinks with SMB2 (Sachin Prabhu) [1007981]
-- [fs] cifs: extend the buffer length enought for sprintf() using (Sachin Prabhu) [1007981]
-- [fs] dlm: log an error for unmanaged lockspaces (David Teigland) [1008005]
-- [acpi] acpi_ipmi, replace mutex with spin_lock_irqsave (Tony Camuso) [1007574]
-- [kernel] sched: Micro-optimize the smart wake-affine logic (Larry Woodman) [947186]
-- [kernel] sched: Implement smarter wake-affine logic (Larry Woodman) [947186]
-- [net] sunrpc: rpcauth_create needs to know about rpc_clnt clone status (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Share all credential caches on a per-transport basis (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Share rpc_pipes when an rpc_clnt owns multiple rpcsec auth caches (Jeff Layton) [1002576]
-- [net] sunrpc: Add a helper to allow sharing of rpc_pipefs directory objects (Jeff Layton) [1002576]
-- [net] sunrpc: Remove the rpc_client->cl_dentry (Jeff Layton) [1002576]
-- [fs] nfs: Convert idmapper to use the new framework for pipefs dentries (Jeff Layton) [1002576]
-- [net] sunrpc: Remove the obsolete auth-only interface for pipefs dentry management (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Switch auth_gss to use the new framework for pipefs dentries (Jeff Layton) [1002576]
-- [net] sunrpc: Add a framework to clean up management of rpc_pipefs directories (Jeff Layton) [1002576]
-- [fs] nfs: Fix a potentially Oopsable condition in __nfs_idmap_unregister (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Fix an Oopsable condition when creating/destroying pipefs objects (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Further cleanups (Jeff Layton) [1002576]
-- [net] sunrpc: Replace clnt->cl_principal (Jeff Layton) [1002576]
-- [net] sunrpc: RPCSEC_GSS, Clean up upcall message allocation (Jeff Layton) [1002576]
-- [net] sunrpc: Cleanup rpc_setup_pipedir (Jeff Layton) [1002576]
-- [net] sunrpc: Remove unused struct rpc_clnt field cl_protname (Jeff Layton) [1002576]
-- [net] sunrpc: Deprecate rpc_client->cl_protname (Jeff Layton) [1002576]
-- [net] sunrpc/rpc_pipe: convert back to simple_dir_inode_operations (Jeff Layton) [1002576]
-- [fs] libfs: make simple_lookup() usable for filesystems that set ->s_d_op (Jeff Layton) [1002576]
-- [net] sunrpc: __rpc_lookup_create_exclusive, pass string instead of qstr (Jeff Layton) [1002576]
-- [net] sunrpc: rpc_create_*_dir, don't bother with qstr (Jeff Layton) [1002576]
-
-* Mon Sep 23 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-27.el7]
-- [netdrv] i40e: include i40e in kernel proper (Stefan Assmann) [726825]
-- [netdrv] i40e: debugfs interface (Stefan Assmann) [726825]
-- [netdrv] i40e: init code and hardware support (Stefan Assmann) [726825]
-- [netdrv] i40e: implement virtual device interface (Stefan Assmann) [726825]
-- [netdrv] i40e: driver core headers (Stefan Assmann) [726825]
-- [netdrv] i40e: driver ethtool core (Stefan Assmann) [726825]
-- [netdrv] i40e: transmit, receive, and NAPI (Stefan Assmann) [726825]
-- [netdrv] i40e: main driver core (Stefan Assmann) [726825]
-- [netdrv] e1000e: balance semaphore put/get for 82573 (Dean Nelson) [726816]
-- [netdrv] e1000e: resolve checkpatch JIFFIES_COMPARISON warning (Dean Nelson) [726816]
-- [netdrv] e1000e: Avoid kernel crash during shutdown (Dean Nelson) [726816]
-- [netdrv] e1000e: Add code to check for failure of pci_disable_link_state call (Dean Nelson) [726816]
-- [netdrv] e1000e: cleanup whitespace in recent commit (Dean Nelson) [726816]
-- [netdrv] e1000e: fix I217/I218 PHY initialization flow (Dean Nelson) [726816]
-- [netdrv] e1000e: do not resume device from RPM suspend to read PHY status registers (Dean Nelson) [726816]
-- [netdrv] e1000e: enable support for new device IDs (Dean Nelson) [726816]
-- [netdrv] e1000e: ethtool unnecessarily takes device out of RPM suspend (Dean Nelson) [726816]
-- [netdrv] e1000e: Tx hang on I218 when linked at 100Half and slow response at 10Mbps (Dean Nelson) [726816]
-- [netdrv] e1000e: low throughput using 4K jumbos on I218 (Dean Nelson) [726816]
-- [netdrv] e1000e: iAMT connections drop on driver unload when jumbo frames enabled (Dean Nelson) [726816]
-- [netdrv] e1000e: disable ASPM L1 on 82583 (Dean Nelson) [726816]
-- [netdrv] e1000e: Use marco instead of digit for defining e1000_rx_desc_packet_split (Dean Nelson) [726816]
-- [netdrv] e1000e: Remove duplicate assignment of default rx/tx ring size (Dean Nelson) [726816]
-- [netdrv] e1000e: restore call to pci_clear_master() (Dean Nelson) [726816]
-- [netdrv] e1000e: Release mutex lock only if it has been initially acquired (Dean Nelson) [726816]
-- [netdrv] e1000e: prevent warning from -Wunused-parameter (Dean Nelson) [726816]
-- [netdrv] e1000e: cleanup whitespace (Dean Nelson) [726816]
-- [netdrv] bna: Staticize local functions (Ivan Vecera) [978045]
-- [netdrv] bna: switch to fixed_size_llseek() (Ivan Vecera) [978045]
-- [fs] read_write: new helper, fixed_size_llseek() (Ivan Vecera) [978045]
-- [netdrv] bna: Driver and Firmware Updated (Ivan Vecera) [978045]
-- [netdrv] bna: Enahncement to Identify Default IOC Function (Ivan Vecera) [978045]
-- [netdrv] bna: Fix Ucast Failure Handling (Ivan Vecera) [978045]
-- [netdrv] bna: Clear Driver Config Flags When HW Resets (Ivan Vecera) [978045]
-- [netdrv] tg3: Don't turn off led on 5719 serdes port 0 (Ivan Vecera) [1006987]
-- [netdrv] tg3: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Ivan Vecera) [1006987]
-- [netdrv] tg3: fix NULL pointer dereference in tg3_io_error_detected and tg3_io_slot_reset (Ivan Vecera) [1006987]
-- [netdrv] tg3: clean up unnecessary MSI/MSI-X capability find (Ivan Vecera) [1006987]
-- [netdrv] tg3: Fix warning from pci_disable_device() (Ivan Vecera) [1006987]
-- [netdrv] tg3: Fix kernel crash (Ivan Vecera) [1006987]
-- [netdrv] tg3: Update version to 3.133 (Ivan Vecera) [1006987]
-- [netdrv] tg3: Fix UDP fragments treated as RMCP (Ivan Vecera) [1006987]
-- [netdrv] tg3: Enable support for timesync gpio output (Ivan Vecera) [1006987]
-- [netdrv] tg3: Implement the shutdown handler (Ivan Vecera) [1006987]
-- [netdrv] tg3: Allow NVRAM programming when interface is down (Ivan Vecera) [1006987]
-- [netdrv] tg3: Remove incorrect switch to aux power (Ivan Vecera) [1006987]
-- [netdrv] tg3: Prevent system hang during repeated EEH errors (Ivan Vecera) [1006987]
-- [netdrv] tg3: remove redundant pm init code (Ivan Vecera) [1006987]
-- [netdrv] tg3: Remove unnecessary lock around tg3_flag_set (Ivan Vecera) [1006987]
-- [netdrv] tg3: Fix misplaced empty line (Ivan Vecera) [1006987]
-- [netdrv] tg3: Use descriptive label names in tg3_start (Ivan Vecera) [1006987]
-- [netdrv] tg3: Make tg3_rings_reset() more concise (Ivan Vecera) [1006987]
-- [netdrv] tg3: Simplify ring control block setup (Ivan Vecera) [1006987]
-- [netdrv] tg3: Split APE driver state change out of boot reset signature update (Ivan Vecera) [1006987]
-- [netdrv] tg3: Use module_pci_driver to register driver (Ivan Vecera) [1006987]
-- [netdrv] tg3: Implement set/get_eee handlers (Ivan Vecera) [1006987]
-- [netdrv] tg3: Simplify tg3_phy_eee_config_ok() by reusing tg3_eee_pull_config() (Ivan Vecera) [1006987]
-- [netdrv] tg3: Add tg3_eee_pull_config() function (Ivan Vecera) [1006987]
-- [netdrv] tg3: Add ethtool_eee struct and tg3_setup_eee() (Ivan Vecera) [1006987]
-- [netdrv] be2net: set and query VEB/VEPA mode of the PF interface (Ivan Vecera) [726160]
-- [netdrv] be2net: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Ivan Vecera) [726160]
-- [netdrv] be2net: implement ethtool set/get_channel hooks (Ivan Vecera) [726160]
-- [netdrv] be2net: refactor be_setup() to consolidate queue creation routines (Ivan Vecera) [726160]
-- [netdrv] be2net: Fix be_cmd_if_create() to use MBOX if MCCQ is not created (Ivan Vecera) [726160]
-- [netdrv] be2net: refactor be_get_resources() code (Ivan Vecera) [726160]
-- [netdrv] be2net: Fixup profile management routines (Ivan Vecera) [726160]
-- [netdrv] be2net: use EQ_CREATEv2 for SH-R (Ivan Vecera) [726160]
-- [netdrv] be2net: Check for POST state in suspend-resume sequence (Ivan Vecera) [726160]
-- [netdrv] be2net: fix disabling TX in be_close() (Ivan Vecera) [726160]
-- [netdrv] be2net: Clear any capability flags that driver is not interested in (Ivan Vecera) [726160]
-- [netdrv] be2net: update driver version (Ivan Vecera) [726160]
-- [netdrv] be2net: Initialize "status" in be_cmd_get_die_temperature() (Ivan Vecera) [726160]
-- [netdrv] be2net: fixup log msgs for async events (Ivan Vecera) [726160]
-- [netdrv] be2net: Fix displaying supported speeds for BE2 (Ivan Vecera) [726160]
-- [netdrv] be2net: don't limit max MAC and VLAN counts (Ivan Vecera) [726160]
-- [netdrv] be2net: Do not call get_die_temperature cmd for VF (Ivan Vecera) [726160]
-- [netdrv] be2net: Adding more speeds reported by get_settings (Ivan Vecera) [726160]
-- [netdrv] be2net: Staticize local functions (Ivan Vecera) [726160]
-- [netdrv] be2net: don't use dev_err when AER enabling fails (Ivan Vecera) [726160]
-- [netdrv] be2net: delete primary MAC address while unloading (Ivan Vecera) [726160]
-- [netdrv] be2net: use SET/GET_MAC_LIST for SH-R (Ivan Vecera) [726160]
-- [netdrv] be2net: refactor MAC-addr setup code (Ivan Vecera) [726160]
-- [netdrv] be2net: fix pmac_id for BE3 VFs (Ivan Vecera) [726160]
-- [netdrv] be2net: allow VFs to program MAC and VLAN filters (Ivan Vecera) [726160]
-- [netdrv] be2net: fix MAC address modification for VF (Ivan Vecera) [726160]
-- [netdrv] be2net: replace numeric with standard PM state macros (Ivan Vecera) [726160]
-- [netdrv] be2net: use pci_vfs_assigned()/pci_num_vf() instead of be_find_vfs() (Ivan Vecera) [726160]
-- [netdrv] be2net: Implement initiate FW dump feature for Lancer (Ivan Vecera) [726160]
-- [netdrv] be2net: Trim padded packets for Lancer (Ivan Vecera) [726160]
-- [netdrv] be2net: Pad skb to meet min Tx pkt size in lancer (Ivan Vecera) [726160]
-- [netdrv] be2net: cleanup be_get_drvinfo() (Ivan Vecera) [726160]
-- [netdrv] be2net: refactor HW workarounds in be_xmit() (Ivan Vecera) [726160]
-- [netdrv] mlx5: remove unused MLX5_DEBUG param in Kconfig (Amir Vadai) [864578]
-- [netdrv] mlx5: Support MANAGE_PAGES and QUERY_PAGES firmware command changes (Amir Vadai) [864578]
-- [netdrv] mlx5: remove health handler plugin (Amir Vadai) [864578]
-- [infiniband] mlx5: Variable may be used uninitialized (Amir Vadai) [864578]
-- [netdrv] mlx5: Implement new initialization sequence (Amir Vadai) [864578]
-- [infiniband] mlx5: Fix stack info leak in mlx5_ib_alloc_ucontext() (Amir Vadai) [864578]
-- [infiniband] mlx5: Fix error return code in init_one() (Amir Vadai) [864578]
-- [netdrv] mlx5: fix error return code in mlx5_alloc_uuars() (Amir Vadai) [864578]
-- [netdrv] mlx5: use after free in mlx5_cmd_comp_handler() (Amir Vadai) [864578]
-- [netdrv] mlx5: Fix __udivdi3 when compiling for 32 bit arches (Amir Vadai) [864578]
-- [netdrv] mlx5: Return -EFAULT instead of -EPERM (Amir Vadai) [864578]
-- [netdrv] mlx5: Adjust hca_cap.uar_page_sz to conform to Connect-IB spec (Amir Vadai) [864578]
-- [netdrv] mlx5: Fixes for sparse warnings (Amir Vadai) [864578]
-- [infiniband] mlx5: Make profile[] static in main.c (Amir Vadai) [864578]
-- [infiniband] mlx5: Add driver for Mellanox Connect-IB adapters (Amir Vadai) [864578]
-- [infiniband] core: Add reserved values to enums for low-level driver use (Amir Vadai) [864578]
-
-* Thu Sep 19 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-26.el7]
-- [net] tuntap: correctly handle error in tun_set_iff() (Jiri Benc) [1007739] {CVE-2013-4343}
-- [net] sctp: fix ipv6 ipsec encryption bug in sctp_v6_xmit (Daniel Borkmann) [998398] {CVE-2013-4350}
-- [net] netlink: filter particular protocols from analyzers (Daniel Borkmann) [957721]
-- [net] ipv6: accept tlv which includes only padding (Jiri Pirko) [990968]
-
-* Thu Sep 19 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-25.el7]
-- [scsi] mpt2sas: Bump driver version to v16.100.00.00 (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Remove phys on topology change (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Fix for kernel panic when driver loads with HBA connected to non LUN 0 configured expander (Tomas Henzl) [736230]
-- [scsi] mpt2sas: when Async scanning is enabled then while scanning, devices are removed but their transport layer entries are not removed (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Infinite loop can occur if MPI2_IOCSTATUS_CONFIG_INVALID_PAGE is not returned (Tomas Henzl) [736230]
-- [scsi] mpt2sas: The copyright in driver sources is updated for the year 2013 (Tomas Henzl) [736230]
-- [scsi] mpt2sas: MPI2 Rev X (2.00.16) specifications (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Change in MPI2_RAID_ACTION_SYSTEM_SHUTDOWN_INITIATED notification methodology (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Null pointer deference possibility in mpt2sas_ctl_event_callback function (Tomas Henzl) [736230]
-- [scsi] mpt2sas: fix cleanup on controller resource mapping failure (Tomas Henzl) [736230]
-- [scsi] mpt2sas: fix for unused variable 'event_data' warning (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Calulate the Reply post queue depth calculation as per the MPI spec (Tomas Henzl) [736230]
-- [scsi] mpt2sas: fix firmware failure with wrong task attribute (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Fix for device scan following host reset could get stuck in a infinite loop (Tomas Henzl) [736230]
-- [scsi] mpt2sas: Update the timing requirements for issuing a Hard Reset (Tomas Henzl) [736230]
-- [scsi] mpt2sas: MPI2 Rev W (2.00.15) specification (Tomas Henzl) [736230]
-- [powerpc] Fix possible deadlock on page fault (Steve Best) [999374]
-- [scsi] qla2xxx: Update driver version to 8.06.00.08.07.0-k (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Select link initialization option bits from current operating mode (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add loopback IDC-TIME-EXTEND aen handling support (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Set default critical temperature value in cases when ISPFX00 firmware doesn't provide it (Chad Dupuis) [725014]
-- [scsi] qla2xxx: QLAFX00 make over temperature AEN handling informational, add log for normal temperature AEN (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Correct Interrupt Register offset for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove handling of Shutdown Requested AEN from qlafx00_process_aen() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Send all AENs for ISPFx00 to above layers (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add changes in initialization for ISPFX00 cards with BIOS (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add changes to support extended IOs for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add missing FCP statistics to sysfs interface (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Make log message that prints when a completion status requires a port down more readable (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add critical temperature handling for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Notify ISPFX00 firmware when driver is unloaded or system is shut down (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Reconfigure thermal temperature (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add setting of driver version string for vendor application (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove QL_DEBUG_LEVEL_17 defines from qla_nx.c (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add ISPFX00 specific bus reset routine (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Perform warm reset every 2 minutes if firmware load fails for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Set factory reset recovery timeout to 10 min. for ISPFX00 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Correct multiqueue offset calculations (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix incorrect test after list_for_each_entry() exits (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Add support for ISP8044 (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Print some variables to hexadecimal string via *phN format (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix sparse warnings in qlafx00_fxdisc_iocb function (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Properly set the tagging for commands (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix a memory leak in an error path of qla2x00_process_els() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove an unused variable from qla2x00_remove_one() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix qla2xxx_check_risc_status() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Help Coverity with analyzing ct_sns_pkt initialization (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove redundant assignments (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove a dead assignment in qla24xx_build_scsi_crc_2_iocbs() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove two superfluous tests (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Remove dead code in qla2x00_configure_hba() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Clean up qla84xx_mgmt_cmd() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Clean up qla24xx_iidma() (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Fix sparse warning from qla_mr.c and qla_iocb.c (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Do not take a second firmware dump when intentionally generating one (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Do not query FC statistics during chip reset (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Move qla2x00_free_device to the correct location (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Set the index in outstanding command array to NULL when cmd is aborted when the request timeout (Chad Dupuis) [725014]
-- [scsi] qla2xxx: Clear the MBX_INTR_WAIT flag when the mailbox time-out happens (Chad Dupuis) [725014]
-- [scsi] mpt3sas: Bump driver version to v02.100.00.00 (Tomas Henzl) [889435]
-- [scsi] mpt3sas: Added a driver module parameter max_msix_vectors (Tomas Henzl) [889435]
-- [scsi] mpt3sas: fix cleanup on controller resource mapping failure (Tomas Henzl) [889435]
-- [scsi] mpt3sas: when async scanning is enabled then while scanning, devices are removed but their transport layer entries are not removed (Tomas Henzl) [889435]
-- [scsi] mpt3sas: MPI2.5 Rev F v2.5.1.1 specification (Tomas Henzl) [889435]
-- [scsi] mpt3sas: Infinite loops can occur if MPI2_IOCSTATUS_CONFIG_INVALID_PAGE is not returned (Tomas Henzl) [889435]
-- [scsi] mpt3sas: fix for kernel panic when driver loads with HBA conected to non LUN 0 configured expander (Tomas Henzl) [889435]
-- [scsi] mpt3sas: Updated the Hardware timing requirements (Tomas Henzl) [889435]
-- [scsi] mpt3sas: 2013 source code copyright (Tomas Henzl) [889435]
-- [netdrv] ixgbe: add support for older QSFP active DA cables (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: include QSFP PHY types in ixgbe_is_sfp() (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: add 1Gbps support for QSFP+ (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix SFF data dumps of SFP+ modules from an offset (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: cleanup some log messages (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: zero out mailbox buffer on init (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix link test when connected to 1Gbps link partner (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix incorrect limit value in ring transverse (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Check return value on eeprom reads (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: disable link when adapter goes down (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: add support for quad-port x520 adapter (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: clear semaphore bits on timeouts (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: rename LL_EXTENDED_STATS to use queue instead of q (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix lockdep annotation issue for ptp's work item (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: call pcie_get_mimimum_link to check if device has enough bandwidth (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix SFF data dumps of SFP+ modules (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix semaphore lock for I2C read/writes on 82598 (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: bump version number (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: add new media type (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: fix fc autoneg ethtool reporting (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Use pci_vfs_assigned instead of ixgbe_vfs_are_assigned (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Retain VLAN filtering in promiscuous + VT mode (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Fix Tx Hang issue with lldpad on 82598EB (Andy Gospodarek) [726818]
-- [netdrv] ixgbe: Set the SW prio_tc values at initialization to the HW setting (Andy Gospodarek) [726818]
-- [pci] expose pcie_link_speed and pcix_bus_speed arrays (Andy Gospodarek) [726818]
-- [pci] move enum pcie_link_width into pci.h (Andy Gospodarek) [726818]
-- [pci] Add function to obtain minimum link width and speed (Andy Gospodarek) [726818]
-- [netdrv] cnic: Update version to 2.5.18 (Tomas Henzl) [725064]
-- [netdrv] cnic: Eliminate local copy of pfid (Tomas Henzl) [725064]
-- [netdrv] cnic: Eliminate CNIC_PORT macro and port_mode in local struct (Tomas Henzl) [725064]
-- [netdrv] cnic: Redefine BNX2X_HW_CID using existing bnx2x macros (Tomas Henzl) [725064]
-- [netdrv] cnic: Use CHIP_NUM macros from bnx2x.h (Tomas Henzl) [725064]
-- [netdrv] cnic: Convert mac address uses of 6 to ETH_ALEN (Tomas Henzl) [725064]
-- [netdrv] cnic: Update version to 2.5.17 and copyright year (Tomas Henzl) [725064]
-- [netdrv] cnic: Add missing error checking for RAMROD_CMD_ID_CLOSE (Tomas Henzl) [725064]
-- [netdrv] cnic: Update TCP options setup for iSCSI (Tomas Henzl) [725064]
-- [netdrv] cnic: Reset tcp_flags during cnic_cm_create() (Tomas Henzl) [725064]
-- [netdrv] cnic: Simplify cnic_release() (Tomas Henzl) [725064]
-- [netdrv] cnic: Simplify netdev events handling (Tomas Henzl) [725064]
-
-* Thu Sep 19 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-24.el7]
-- [Documentation] kvm: Add documentation on Hypercalls and features used for PV spinlock (Andrew Jones) [981581]
-- [virt] kvm: Simplify kvm_for_each_vcpu with kvm_irq_delivery_to_apic (Andrew Jones) [981581]
-- [virt] kvm: Add a hypercall to KVM hypervisor to support pv-ticketlocks (Andrew Jones) [981581]
-- [virt] kvm: Paravirtual ticketlocks support for linux guests running on KVM hypervisor (Andrew Jones) [981581]
-- [virt] kvm: Add configuration support to enable debug information for KVM Guests (Andrew Jones) [981581]
-- [virt] kvm: Add KICK_CPU and PV_UNHALT definition to uapi (Andrew Jones) [981581]
-- [virt] pvticketlock: Allow interrupts to be enabled while blocking (Andrew Jones) [981581]
-- [virt] ticketlock: Add slowpath logic (Andrew Jones) [981581]
-- [kernel] jump_label: Split jumplabel ratelimit (Andrew Jones) [981581]
-- [virt] pvticketlock: Use callee-save for lock_spinning (Andrew Jones) [981581]
-- [virt] pvticketlocks: Add xen_nopvspin parameter to disable xen pv ticketlocks (Andrew Jones) [981581]
-- [virt] pvticketlock: Xen implementation for PV ticket locks (Andrew Jones) [981581]
-- [virt] xen: Defer spinlock setup until boot CPU setup (Andrew Jones) [981581]
-- [virt] ticketlock: Collapse a layer of functions (Andrew Jones) [981581]
-- [virt] ticketlock: Don't inline _spin_unlock when using paravirt spinlocks (Andrew Jones) [981581]
-- [virt] spinlock: Replace pv spinlocks with pv ticketlocks (Andrew Jones) [981581]
-- [fs] proc/vmcore: support mmap() on /proc/vmcore (Nigel Croxon) [990298]
-- [fs] proc/vmcore: calculate vmcore file size from buffer size and total size of vmcore objects (Nigel Croxon) [990298]
-- [fs] proc/vmcore: allow user process to remap ELF note segment buffer (Nigel Croxon) [990298]
-- [fs] proc/vmcore: allocate ELF note segment in the 2nd kernel vmalloc memory (Nigel Croxon) [990298]
-- [mm] vmalloc: introduce remap_vmalloc_range_partial (Nigel Croxon) [990298]
-- [mm] vmalloc: make find_vm_area check in range (Nigel Croxon) [990298]
-- [fs] proc/vmcore: treat memory chunks referenced by PT_LOAD program header entries in page-size boundary in vmcore_list (Nigel Croxon) [990298]
-- [fs] proc/vmcore: allocate buffer for ELF headers on page-size alignment (Nigel Croxon) [990298]
-- [fs] proc/vmcore: clean up read_vmcore() (Nigel Croxon) [990298]
-- [mm] add PAGE_ALIGNED() helper (Nigel Croxon) [990298]
-- [fs] nfs Fix up nfs4_proc_lookup_mountpoint (Jeff Layton) [1007357]
-- [fs] nfs: Don't check lock owner compatability unless file is locked (part 2) (Jeff Layton) [1007035]
-- [fs] nfs: Don't check lock owner compatibility in writes unless file is locked (Jeff Layton) [1007035]
-- [pci] Remove pcie_cap_has_devctl() (Myron Stowe) [1005229]
-- [pci] Support PCIe Capability Slot registers only for ports with slots (Myron Stowe) [1005229]
-- [pci] Remove PCIe Capability version checks (Myron Stowe) [1005229]
-- [pci] Allow PCIe Capability link-related register access for switches (Myron Stowe) [1005229]
-- [pci] Add offsets of PCIe capability registers (Myron Stowe) [1005229]
-- [pci] Tidy bitmasks and spacing of PCIe capability definitions (Myron Stowe) [1005229]
-- [pci] Remove obsolete comment reference to pci_pcie_cap2() (Myron Stowe) [1005229]
-- [pci] Clarify PCI_EXP_TYPE_PCI_BRIDGE comment (Myron Stowe) [1005229]
-- [pci] Rename PCIe capability definitions to follow convention (Myron Stowe) [1005229]
-- [pci] Warn if unsafe MPS settings detected (Myron Stowe) [1005229]
-- [pci] Fix MPS peer-to-peer DMA comment syntax (Myron Stowe) [1005229]
-- [pci] Disable decoding for BAR sizing only when it was actually enabled (Myron Stowe) [1005229]
-- [pci] Add comment about needing pci_msi_off() even when CONFIG_PCI_MSI=n (Myron Stowe) [1005229]
-- [pci] Add pcibios_pm_ops for optional arch-specific hibernate functionality (Myron Stowe) [1005229]
-- [pci] Don't restrict MPS for slots below Root Ports (Myron Stowe) [1005229]
-- [pci] Simplify MPS test for Downstream Port (Myron Stowe) [1005229]
-- [pci] Remove unnecessary check for pcie_get_mps() failure (Myron Stowe) [1005229]
-- [pci] Simplify pcie_bus_configure_settings() interface (Myron Stowe) [1005229]
-- [pci] Drop "PCI-E" prefix from Max Payload Size message (Myron Stowe) [1005229]
-- [pci] Add pci_probe_reset_slot() and pci_probe_reset_bus() (Myron Stowe) [1005229]
-- [pci] Remove aer_do_secondary_bus_reset() (Myron Stowe) [1005229]
-- [pci] Tune secondary bus reset timing (Myron Stowe) [1005229]
-- [pci] Wake-up devices before saving config space for reset (Myron Stowe) [1005229]
-- [pci] Add pci_reset_slot() and pci_reset_bus() (Myron Stowe) [1005229]
-- [pci] Split out pci_dev lock/unlock and save/restore (Myron Stowe) [1005229]
-- [pci] Add slot reset option to pci_dev_reset() (Myron Stowe) [1005229]
-- [pci] pciehp: Add reset_slot() method (Myron Stowe) [1005229]
-- [pci] Add hotplug_slot_ops.reset_slot() (Myron Stowe) [1005229]
-- [pci] quirks: Use pci_wait_for_pending_transaction() instead of for loop (Myron Stowe) [1005229]
-- [netdrv] bnx2x: Use pci_wait_for_pending_transaction() instead of for loop (Myron Stowe) [1005229]
-- [pci] quirks: Enable Bus Master during Function-Level Reset on Chelsio (Myron Stowe) [1005229]
-- [pci] Add pci_wait_for_pending_transaction() (Myron Stowe) [1005229]
-- [pci] Add pci_reset_bridge_secondary_bus() (Myron Stowe) [1005229]
-- [pci] Align bridge I/O windows as required by downstream devices & bridges (Myron Stowe) [1005229]
-- [pci] Fix types in pbus_size_io() (Myron Stowe) [1005229]
-- [pci] Add comments for pbus_size_mem() parameters (Myron Stowe) [1005229]
-- [pci] Enumerate subordinate buses, not devices, in pci_bus_get_depth() (Myron Stowe) [1005229]
-- [pci] Fix comment typo for pci_add_cap_save_buffer() (Myron Stowe) [1005229]
-- [pci] Return -ENOSYS for SR-IOV operations on non-SR-IOV devices (Myron Stowe) [1005229]
-- [pci] Update NumVFs register when disabling SR-IOV (Myron Stowe) [1005229]
-- [pci] mmconfig: Check earlier for MMCONFIG region at address zero (Myron Stowe) [1005229]
-- [pci] Assign resources for hot-added host bridge more aggressively (Myron Stowe) [1005229]
-- [pci] Move resource reallocation code to non-__init (Myron Stowe) [1005229]
-- [pci] Delay enabling bridges until they're needed (Myron Stowe) [1005229]
-- [pci] Assign resources on a per-bus basis (Myron Stowe) [1005229]
-- [pci] Enable unassigned resource reallocation on per-bus basis (Myron Stowe) [1005229]
-- [pci] Turn on reallocation for unassigned resources with host bridge offset (Myron Stowe) [1005229]
-- [pci] Look for unassigned resources on per-bus basis (Myron Stowe) [1005229]
-- [pci] Drop temporary variable in pci_assign_unassigned_resources() (Myron Stowe) [1005229]
-- [pci] Claim ACS support for AMD southbridge devices (Myron Stowe) [1005229]
-- [pci] Differentiate ACS controllable from enabled (Myron Stowe) [1005229]
-- [pci] Check all ACS features for multifunction downstream ports (Myron Stowe) [1005229]
-- [pci] Convert class code to use dev_groups (Myron Stowe) [1005229]
-- [pci] mrst: Cleanup checkpatch.pl warnings (Myron Stowe) [1005229]
-- [pci] Rename "PCI Express support" kconfig title (Myron Stowe) [1005229]
-- [pci] Fix comment typo in iov.c (Myron Stowe) [1005229]
-- [fs] sysfs: use file mode defines from stat.h (Myron Stowe) [1005229]
-- [fs] sysfs: add more helper macro's for (bin_)attribute(_groups) (Myron Stowe) [1005229]
-- [misc] device: add default groups to struct class (Myron Stowe) [1005229]
-- [misc] device: Introduce device_create_groups (Myron Stowe) [1005229]
-- [fs] sysfs: prevent warning when only using binary attributes (Myron Stowe) [1005229]
-- [fs] sysfs: add support for binary attributes in groups (Myron Stowe) [1005229]
-- [misc] device: add RW and RO attribute macros (Myron Stowe) [1005229]
-- [misc] sysfs: add BIN_ATTR macro (Myron Stowe) [1005229]
-- [misc] sysfs: add ATTRIBUTE_GROUPS() macro (Myron Stowe) [1005229]
-- [misc] sysfs: add __ATTR_RW() macro (Myron Stowe) [1005229]
-
-* Tue Sep 17 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-23.el7]
-- [kernel] kexec: improve logging when crashkernel=auto can't be satisfied (Steve Best) [989576]
-
-* Fri Sep 13 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-22.el7]
-- [netdrv] bnx2: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Neil Horman) [725061]
-- [netdrv] bnx2: clean up unnecessary MSI/MSI-X capability find (Neil Horman) [725061]
-- [netdrv] bnx2: Update version to 2.2.4 (Neil Horman) [725061]
-- [netdrv] bnx2: Add pci shutdown handler (Neil Horman) [725061]
-- [netdrv] bnx2: Use SIMPLE_DEV_PM_OPS (Neil Horman) [725061]
-- [netdrv] bnx2: Refactor WoL setup into a separate function (Neil Horman) [725061]
-- [netdrv] bnx2: Use kernel APIs for WoL and power state changes (Neil Horman) [725061]
-- [netdrv] bnx2: Handle error condition in ->slot_reset() (Neil Horman) [725061]
-- [netdrv] bnx2: use pdev->pm_cap instead of pci_find_capability(.., PCI_CAP_ID_PM) (Neil Horman) [725061]
-- [netdrv] bnx2: Use module_pci_driver to register driver (Neil Horman) [725061]
-- [netdrv] igb: Update version number (Stefan Assmann) [726817]
-- [netdrv] igb: Implementation to report advertised/supported link on i354 devices (Stefan Assmann) [726817]
-- [netdrv] igb: Get speed and duplex for 1G non_copper devices (Stefan Assmann) [726817]
-- [netdrv] igb: Support to get 2_5G link status for appropriate media type (Stefan Assmann) [726817]
-- [netdrv] igb: No PHPM support in i354 devices (Stefan Assmann) [726817]
-- [netdrv] igb: M88E1543 PHY downshift implementation (Stefan Assmann) [726817]
-- [netdrv] igb: New PHY_ID for i354 device (Stefan Assmann) [726817]
-- [netdrv] igb: Implementation of 1-sec delay for i210 devices (Stefan Assmann) [726817]
-- [netdrv] igb: Don't look for a PBA in the iNVM when flashless (Stefan Assmann) [726817]
-- [netdrv] igb: Expose RSS indirection table for ethtool (Stefan Assmann) [726817]
-- [netdrv] igb: Add macro for size of RETA indirection table (Stefan Assmann) [726817]
-- [netdrv] igb: Fix get_fw_version function for all parts (Stefan Assmann) [726817]
-- [netdrv] igb: Add device support for flashless SKU of i210 device (Stefan Assmann) [726817]
-- [netdrv] igb: Refactor NVM read functions to accommodate devices with no flash (Stefan Assmann) [726817]
-- [netdrv] igb: Refactor of init_nvm_params (Stefan Assmann) [726817]
-- [netdrv] igb: Update MTU so that it is always at least a standard frame size (Stefan Assmann) [726817]
-- [netdrv] igb: don't allow SR-IOV without MSI-X (Stefan Assmann) [726817]
-- [netdrv] igb: Added rcu_lock to avoid race (Stefan Assmann) [726817]
-- [netdrv] igb: Read register for latch_on without return value (Stefan Assmann) [726817]
-- [netdrv] igb: Reset the link when EEE setting changed (Stefan Assmann) [726817]
-- [netdrv] igb: fix vlan filtering in promisc mode when not in VT mode (Stefan Assmann) [726817]
-- [netdrv] igb: relase -> release (Stefan Assmann) [726817]
-- [netdrv] igb: Removed unused i2c function (Stefan Assmann) [726817]
-- [netdrv] igb: Implementation of i210/i211 LED support (Stefan Assmann) [726817]
-- [netdrv] igb: Fix possible panic caused by Rx traffic arrival while interface is down (Stefan Assmann) [726817]
-- [netdrv] igb: Fix set_ethtool function to call update nvm for entire image (Stefan Assmann) [726817]
-- [netdrv] igb: SerDes flow control setting (Stefan Assmann) [726817]
-- [netdrv] igb: Support for SFP modules discovery (Stefan Assmann) [726817]
-- [netdrv] igb: Add update to last_rx_timestamp in Rx rings (Stefan Assmann) [726817]
-- [netdrv] igb: Changed LEDs blink mechanism to include designs using cathode (Stefan Assmann) [726817]
-- [virt] kvm/mmu: avoid fast page fault fixing mmio page fault (Gleb Natapov) [981979]
-- [virt] kvm/vmx: mark unusable segment as nonpresent (Gleb Natapov) [981979]
-- [virt] kvm: get rid of $(addprefix ../../../virt/kvm/, ...) in Makefiles (Gleb Natapov) [981979]
-- [virt] kvm: Fix RTC interrupt coalescing tracking (Gleb Natapov) [981979]
-- [virt] kvm: Add a tracepoint write_tsc_offset (Gleb Natapov) [981979]
-- [virt] kvm: Inform users of mmio generation wraparound (Gleb Natapov) [981979]
-- [virt] kvm: document fast invalidate all mmio sptes (Gleb Natapov) [981979]
-- [virt] kvm: document fast invalidate all pages (Gleb Natapov) [981979]
-- [virt] kvm: document fast page fault (Gleb Natapov) [981979]
-- [virt] kvm: document mmio page fault (Gleb Natapov) [981979]
-- [virt] kvm: document write_flooding_count (Gleb Natapov) [981979]
-- [virt] kvm: document clear_spte_count (Gleb Natapov) [981979]
-- [virt] kvm: drop kvm_mmu_zap_mmio_sptes (Gleb Natapov) [981979]
-- [virt] kvm: init kvm generation close to mmio wrap-around value (Gleb Natapov) [981979]
-- [virt] kvm: add tracepoint for check_mmio_spte (Gleb Natapov) [981979]
-- [virt] kvm: fast invalidate all mmio sptes (Gleb Natapov) [981979]
-- [virt] kvm: make return value of mmio page fault handler more readable (Gleb Natapov) [981979]
-- [virt] kvm: store generation-number into mmio spte (Gleb Natapov) [981979]
-- [virt] kvm: retain more available bits on mmio spte (Gleb Natapov) [981979]
-- [virt] kvm: update the documentation for reverse mapping of parent_pte (Gleb Natapov) [981979]
-- [Documentation] kvm: fix section numbers (Gleb Natapov) [981979]
-- [virt] kvm: handle idiv overflow at kvm_write_tsc (Gleb Natapov) [981979]
-- [virt] kvm: reduce KVM_REQ_MMU_RELOAD when root page is zapped (Gleb Natapov) [981979]
-- [virt] kvm: reclaim the zapped-obsolete page first (Gleb Natapov) [981979]
-- [virt] kvm: collapse TLB flushes when zap all pages (Gleb Natapov) [981979]
-- [virt] kvm: zap pages in batch (Gleb Natapov) [981979]
-- [virt] kvm: do not reuse the obsolete page (Gleb Natapov) [981979]
-- [virt] kvm: add tracepoint for kvm_mmu_invalidate_all_pages (Gleb Natapov) [981979]
-- [virt] kvm: show mmu_valid_gen in shadow page related tracepoints (Gleb Natapov) [981979]
-- [virt] kvm: use the fast way to invalidate all pages (Gleb Natapov) [981979]
-- [virt] kvm: fast invalidate all pages (Gleb Natapov) [981979]
-- [virt] kvm: drop unnecessary kvm_reload_remote_mmus (Gleb Natapov) [981979]
-- [virt] kvm: drop calling kvm_mmu_zap_all in emulator_fix_hypercall (Gleb Natapov) [981979]
-- [virt] kvm: exclude ioeventfd from counting kvm_io_range limit (Gleb Natapov) [981979]
-- [virt] kvm: convert XADD to fastop (Gleb Natapov) [981979]
-- [virt] kvm: drop unused old-style inline emulation (Gleb Natapov) [981979]
-- [virt] kvm: convert DIV/IDIV to fastop (Gleb Natapov) [981979]
-- [virt] kvm: convert single-operand MUL/IMUL to fastop (Gleb Natapov) [981979]
-- [virt] kvm: Switch fastop src operand to RDX (Gleb Natapov) [981979]
-- [virt] kvm: switch MUL/DIV to DstXacc (Gleb Natapov) [981979]
-- [virt] kvm: decode extended accumulator explicity (Gleb Natapov) [981979]
-- [virt] kvm: add support for writing back the source operand (Gleb Natapov) [981979]
-- [virt] kvm: clenaup locking in mmu_free_roots() (Gleb Natapov) [981979]
-- [virt] kvm: limit difference between kvmclock updates (Gleb Natapov) [981979]
-- [virt] kvm: Remove support for reporting coalesced APIC IRQs (Gleb Natapov) [981979]
-- [virt] kvm: Use kvm_mmu_sync_roots() in kvm_mmu_load() (Gleb Natapov) [981979]
-- [virt] kvm: add missing misc_deregister() on error in kvm_init() (Gleb Natapov) [981979]
-
-* Thu Sep 12 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-21.el7]
-- [net] net_sched: fix a typo in htb_change_class() (Jesper Brouer) [998588]
-- [net] tcp_probe: adapt tbuf size for recent changes (Daniel Borkmann) [1000470]
-- [net] tcp_probe: allow more advanced ingress filtering by mark (Daniel Borkmann) [1000470]
-- [net] tcp_probe: add IPv6 support (Daniel Borkmann) [1000470]
-- [net] tcp_probe: kprobes: adapt jtcp_rcv_established signature (Daniel Borkmann) [1000470]
-- [net] tcp_probe: also include rcv_wnd next to snd_wnd (Daniel Borkmann) [1000470]
-- [lib] vsprintf: add IPv4/v6 generic p[Ii]S[pfs] format specifier (Daniel Borkmann) [1000470]
-- [net] ipv6: fix potential use after free in tcp_v6_do_rcv (Jiri Benc) [1004165]
-- [net] netlabel: use domain based selectors when address based selectors are not available (Paul Moore) [983949]
-
-* Wed Sep 11 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-20.el7]
-- [fs] gfs2: dirty inode correctly in gfs2_write_end (Benjamin Marzinski) [1004054]
-- [netdrv] bnx2x: Convert dma_alloc_coherent(...__GFP_ZERO) to dma_zalloc_coherent (Michal Schmidt) [819849]
-- [netdrv] bnx2x: clean up unnecessary MSI/MSI-X capability find (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Revising locking scheme for MAC configuration (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix VF stats sync (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix VF memory leak unload (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix functionality of configuring vlan list (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix move FP memory deallocations (Michal Schmidt) [819849]
-- [netdrv] bnx2x: vf mark stats started (Michal Schmidt) [819849]
-- [netdrv] bnx2x: set VF DMAE when first function has 0 supported VFs (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Protect against VFs' ndos when SR-IOV is disabled (Michal Schmidt) [819849]
-- [netdrv] bnx2x: prevent VF benign attentions (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Consider DCBX remote error (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Change DCB context handling (Michal Schmidt) [819849]
-- [netdrv] bnx2x: dropless flow control not always functional (Michal Schmidt) [819849]
-- [netdrv] bnx2x: prevent crash in shutdown flow with CNIC (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix PTE write access error (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix memory leak in VF (Michal Schmidt) [819849]
-- [netdrv] bnx2x: update fairness parameters following DCB negotiation (Michal Schmidt) [819849]
-- [netdrv] bnx2x: protect different statistics flows (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix tunneling CSUM calculation (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fill in sane dump flag information (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix dump flag handling (Michal Schmidt) [819849]
-- [netdrv] bnx2x: remove zeroing of dump data buffer (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Remove sparse and coccinelle warnings (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix compilation with no IOV support (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Fix 20G KR2 support claims (Michal Schmidt) [819849]
-- [netdrv] bnx2x: improve VF timings (Michal Schmidt) [819849]
-- [netdrv] bnx2x: VF ndo sanity (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Improve PF behaviour toward VF (Michal Schmidt) [819849]
-- [netdrv] bnx2x: remove redundant D0 power state set (Michal Schmidt) [819849]
-- [netdrv] bnx2x: replace mechanism to check for next available packet (Michal Schmidt) [819849]
-- [netdrv] bnx2x: add support for busy-poll (Michal Schmidt) [819849]
-- [netdrv] bnx2x: fix a power state test (Michal Schmidt) [819849]
-- [netdrv] bnx2x: semi-Semantic changes (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Revise prints (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Semantic removal and beautification (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Revise comments and alignment (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Semantic change of empty lines (Michal Schmidt) [819849]
-- [netdrv] bnx2x: use XPS if possible for bnx2x_select_queue instead of pure hash (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Change to D3hot only on removal (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Implement PCI shutdown (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Count number of possible FCoE interfaces (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Ack unknown VF messages (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Add and correct PCI link speed prints (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Zero VFs starting MACs (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Enable `set_phys_id' for all functions (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Link-flap avoidance in switch dependent mode (Michal Schmidt) [819849]
-- [netdrv] bnx2x: Add Private Flags Support (Michal Schmidt) [819849]
-- [netdrv] bnx2x: dont reload on GRO change (Michal Schmidt) [819849]
-
-* Tue Sep 10 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-19.el7]
-- [crypto] nx: fix SHA-2 for chunks bigger than block size (Steve Best) [999606]
-- [crypto] nx: fix GCM for zero length messages (Steve Best) [999606]
-- [crypto] nx: fix XCBC for zero length messages (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-CCM (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-XCBC (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-GCM (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-CTR (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-CBC (Steve Best) [999606]
-- [crypto] nx: fix limits to sg lists for AES-ECB (Steve Best) [999606]
-- [crypto] nx: add offset to nx_build_sg_lists() (Steve Best) [999606]
-- [virt] virtio_console: prevent use-after-free of port name in port unplug (Amit Shah) [990419]
-- [virt] virtio_console: fix locking around send_sigio_to_port() (Amit Shah) [986968]
-- [virt] virtio_console: add locking in port unplug path (Amit Shah) [990419]
-- [virt] virtio_console: add locks around buffer removal in port unplug path (Amit Shah) [990419]
-- [virt] virtio_console: return -ENODEV on all read operations after unplug (Amit Shah) [975716]
-- [virt] virtio_console: fix raising SIGIO after port unplug (Amit Shah) [986968]
-- [virt] virtio_console: clean up port data immediately at time of unplug (Amit Shah) [990419]
-- [virt] virtio_console: fix race in port_fops_open() and port unplug (Amit Shah) [990419]
-- [virt] virtio_console: fix race with port unplug and open/close (Amit Shah) [990419]
-- [virt] virtio_console: Add pipe_lock/unlock for splice_write (Amit Shah) [987722]
-- [virt] virtio_console: Quit from splice_write if pipe->nrbufs is 0 (Amit Shah) [987722]
-- [scsi] Generate uevents on certain unit attention codes (Ewan Milne) [740795]
-- [virt] kvm: update masterclock when kvmclock_offset is calculated (Marcelo Tosatti) [978425]
-- [acpi] pci_root: Fix _OSC ordering to allow PCIe hotplug use when available (Neil Horman) [990078]
-
-* Thu Sep 05 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-18.el7]
-- [net] ipv4: make snmp_mib_free static inline (Amerigo Wang) [970585]
-- [net] vxlan: include net/ip6_checksum.h for csum_ipv6_magic() (Amerigo Wang) [970585]
-- [net] vxlan: fix flowi6_proto value (Amerigo Wang) [970585]
-- [net] udp: unify skb_udp_tunnel_segment() and skb_udp6_tunnel_segment() (Amerigo Wang) [970585]
-- [net] ipv6: Add generic UDP Tunnel segmentation (Amerigo Wang) [970585]
-- [net] vxlan: add ipv6 proxy support (Amerigo Wang) [970585]
-- [net] ipv6: move in6_dev_finish_destroy() into core kernel (Amerigo Wang) [970585]
-- [net] ipv6: add include file to suppress sparse warnings (Amerigo Wang) [970585]
-- [net] vxlan: add ipv6 route short circuit support (Amerigo Wang) [970585]
-- [net] vxlan: add ipv6 support (Amerigo Wang) [970585]
-- [net] ipv6: do not call ndisc_send_rs() with write lock (Amerigo Wang) [970585]
-- [net] ipv6: export in6addr_loopback to modules (Amerigo Wang) [970585]
-- [net] ipv6: export a stub for IPv6 symbols used by vxlan (Amerigo Wang) [970585]
-- [net] ipv6: Remove extern function prototypes (Amerigo Wang) [970585]
-- [net] ipv6: always hold idev->lock before mca_lock (Amerigo Wang) [970585]
-- [net] ipv6: move ip6_local_out into core kernel (Amerigo Wang) [970585]
-- [net] ipv6: move ip6_dst_hoplimit() into core kernel (Amerigo Wang) [970585]
-- [net] udp: move GSO functions to udp_offload (Amerigo Wang) [970585]
-- [net] tcp: move GRO/GSO functions to tcp_offload (Amerigo Wang) [970585]
-- [net] tcp: use tcp_skb_mss helper in tcp_tso_segment (Amerigo Wang) [970585]
-- [scsi] csgb4i: convert skb->transport_header into skb_transport_header(skb) (Amerigo Wang) [970585]
-- [net] pass correct parameter to skb_headers_offset_update() (Amerigo Wang) [970585]
-- [netdrv] cxgb3: Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [net] clean up skb headers code (Amerigo Wang) [970585]
-- [net] Fix build warnings after mac_header and transport_header became __u16 (Amerigo Wang) [970585]
-- [net] netfilter: Correct calculation using skb->tail and skb-network_header (Amerigo Wang) [970585]
-- [net] Correct assignment of skb->network_header to skb->tail (Amerigo Wang) [970585]
-- [net] sctp: Correct access to skb->{network, transport}_header (Amerigo Wang) [970585]
-- [net] ipv4: Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [net] ipv6: Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [net] Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [netdrv] cxgb3: Correct comparisons and calculations using skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [netdrv] isdn: Correct comparison of skb->tail and skb-transport_header (Amerigo Wang) [970585]
-- [net] Copy inner_protocol in copy_skb_header() (Amerigo Wang) [970585]
-- [net] mpls: Add limited GSO support (Amerigo Wang) [970585]
-- [net] Use 16bits for *_headers fields of struct skbuff (Amerigo Wang) [970585]
-
-* Wed Sep 04 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-17.el7]
-- [fs] lockd: Don't call utsname()->nodename from nlmclnt_setlockargs (Jan Stancek) [999289]
-- [scsi] ipr: Add sereral new CCIN definitions for new adapters support (Steve Best) [1002200]
-- [virt] x86/xen: Sync the CMOS RTC as well as the Xen wallclock (Radim Krcmar) [1003683]
-- [virt] x86/xen: Sync the wallclock when the system time is set (Radim Krcmar) [1003683]
-- [virt] x86: Increase precision of x86_platform.get/set_wallclock() (Radim Krcmar) [1003683]
-- [powerpc] Don't Oops when accessing /proc/powerpc/lparcfg without hypervisor (Steve Best) [1002206]
-- [virt] xen/smp: initialize IPI vectors before marking CPU online (Radim Krcmar) [1003683]
-- [virt] xen/events: mask events when changing their VCPU binding (Radim Krcmar) [1003683]
-- [virt] xen/events: initialize local per-cpu mask for all possible events (Radim Krcmar) [1003683]
-- [virt] x86/xen: do not identity map UNUSABLE regions in the machine E820 (Radim Krcmar) [1003683]
-- [virt] xen/evtchn: avoid a deadlock when unbinding an event channel (Radim Krcmar) [1003683]
-- [virt] xenbus: frontend resume cleanup (Radim Krcmar) [1003683]
-- [virt] xen-netfront: pull on receive skb may need to happen earlier (Radim Krcmar) [1003683]
-- [virt] xen: Use more current logging styles (Radim Krcmar) [1003683]
-- [virt] xen/time: remove blocked time accounting from xen "clockchip" (Radim Krcmar) [1003683]
-- [virt] xen: Convert printks to pr_<level> (Radim Krcmar) [1003683]
-- [virt] xen: ifdef CONFIG_HIBERNATE_CALLBACKS xen_*_suspend (Radim Krcmar) [1003683]
-- [virt] xen-blkfront: set blk_queue_max_hw_sectors correctly (Radim Krcmar) [1003683]
-- [virt] xen/io: new macro to detect whether there are too many requests on the ring (Radim Krcmar) [1003683]
-- [virt] xen-netfront: use skb_partial_csum_set() to simplify the codes (Radim Krcmar) [1003683]
-- [virt] xen/time: Free onlined per-cpu data structure if we want to online it again (Radim Krcmar) [1003683]
-- [virt] xen/time: Check that the per_cpu data structure has data before freeing (Radim Krcmar) [1003683]
-- [virt] xen/time: Don't leak interrupt name when offlining (Radim Krcmar) [1003683]
-- [virt] xen/time: Encapsulate the struct clock_event_device in another structure (Radim Krcmar) [1003683]
-- [virt] xen/spinlock: Don't leak interrupt name when offlining (Radim Krcmar) [1003683]
-- [virt] xen/smp: Don't leak interrupt name when offlining (Radim Krcmar) [1003683]
-- [virt] xen/smp: Set the per-cpu IRQ number to a valid default (Radim Krcmar) [1003683]
-- [virt] xen/smp: Introduce a common structure to contain the IRQ name and interrupt line (Radim Krcmar) [1003683]
-- [virt] xen/smp: Coalesce the free_irq calls in one function (Radim Krcmar) [1003683]
-- [virt] xen-blkback: Use physical sector size for setup (Radim Krcmar) [1003683]
-- [virt] xen-blkfront: Introduce a 'max' module parameter to alter the amount of indirect segments (Radim Krcmar) [1003683]
-- [virt] xen/netif: document feature-split-event-channels (Radim Krcmar) [1003683]
-- [virt] xen-netfront: split event channels support for Xen frontend driver (Radim Krcmar) [1003683]
-- [virt] xen-netfront: avoid leaking resources when setup_netfront fails (Radim Krcmar) [1003683]
-- [virt] xen-blkfront: use a different scatterlist for each request (Radim Krcmar) [1003683]
-- [virt] xen-block: implement indirect descriptors (Radim Krcmar) [1003683]
-- [acpi] Try harder to resolve _ADR collisions for bridges (Myron Stowe) [1003183]
-- [cpufreq] rename ignore_nice as ignore_nice_load (Myron Stowe) [1003183]
-- [acpi] processor: move try_offline_node() after acpi_unmap_lsapic() (Myron Stowe) [1003183]
-- [acpi] Drop physical_node_id_bitmap from struct acpi_device (Myron Stowe) [1003183]
-- [acpi] pm: Walk physical_node_list under physical_node_lock (Myron Stowe) [1003183]
-- [acpi] video: improve quirk check in acpi_video_bqc_quirk() (Myron Stowe) [1003183]
-- [kernel] freezer: set PF_SUSPEND_TASK flag on tasks that call freeze_processes (Myron Stowe) [1003183]
-- [acpi] battery: Fix parsing _BIX return value (Myron Stowe) [1003183]
-- [cpufreq] Fix cpufreq driver module refcount balance after suspend/resume (Myron Stowe) [1003183]
-- [cpufreq] intel_pstate: Change to scale off of max P-state (Myron Stowe) [1003183]
-- [acpi] video: ignore BIOS initial backlight value for Fujitsu E753 (Myron Stowe) [1003183]
-- [pnp] acpi: avoid garbage in resource name (Myron Stowe) [1003183]
-- [power] sleep: Fix comment typo in pm_wakeup.h (Myron Stowe) [1003183]
-- [power] sleep: avoid 'autosleep' in shutdown progress (Myron Stowe) [1003183]
-- [acpi] scan: Always call acpi_bus_scan() for bus check notifications (Myron Stowe) [1003183]
-- [acpi] scan: Do not try to attach scan handlers to devices having them (Myron Stowe) [1003183]
-
-* Tue Sep 03 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-16.el7]
-- [powerpc] Avoid link stack corruption for MMU on exceptions (Steve Best) [999556]
-- [virt] net/hyperv: Fix the NETIF_F_SG flag setting in netvsc (Jason Wang) [984810]
-- [pci] Retry allocation of only the resource type that failed (Myron Stowe) [1001217]
-- [pci] pciehp: Convert pciehp to be builtin only, not modular (Myron Stowe) [1001217]
-- [pci] hotplug: Convert to be builtin only, not modular (Myron Stowe) [1001217]
-- [pci] pciehp: Fix null pointer deref when hot-removing SR-IOV device (Myron Stowe) [1001217]
-
-* Fri Aug 30 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-15.el7]
-- [drm] qxl: backport updates from v3.11-rc1 (Dave Airlie) [979176]
-- [drm] add hotspot support for cursors (Dave Airlie) [983312]
-- [virt] x86: Correctly detect hypervisor (Jason Wang) [985743]
-- [virt] kvm: Switch to use hypervisor_cpuid_base() (Jason Wang) [985743]
-- [virt] xen: Switch to use hypervisor_cpuid_base() (Jason Wang) [985743]
-- [virt] x86: Introduce hypervisor_cpuid_base() (Jason Wang) [985743]
-- [net] sunrpc: prepare NFS for 2038 (Harshula Jayasuriya) [847926]
-- [netdrv] macvtap: Ignore tap features when VNET_HDR is off (Vlad Yasevich) [1001053]
-- [netdrv] macvtap: Correctly set tap features when IFF_VNET_HDR is disabled (Vlad Yasevich) [1001053]
-- [netdrv] macvtap: simplify usage of tap_features (Vlad Yasevich) [1001053]
-
-* Thu Aug 29 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-14.el7]
-- [net] openvswitch: optimize flow compare and mask functions (Thomas Graf) [1002051]
-- [net] openvswitch: Rename key_len to key_end (Thomas Graf) [1002051]
-- [net] openvswitch: Add SCTP support (Thomas Graf) [1002051]
-- [net] ipv6: Add NEXTHDR_SCTP to ipv6.h (Thomas Graf) [1002051]
-- [net] sctp: Refactor SCTP skb checksum computation (Thomas Graf) [1002051]
-- [net] sctp: prevent checksum.h from double inclusion (Thomas Graf) [1002051]
-- [net] openvswitch: Mega flow implementation (Thomas Graf) [1002051]
-- [net] openvswitch: Fix argument descriptions in vport.c (Thomas Graf) [1002051]
-- [net] openvswitch: link upper device for port devices (Thomas Graf) [1002051]
-- [net] openvswitch: Use non rcu hlist_del() flow table entry (Thomas Graf) [1002051]
-- [net] openvswitch: Use RCU lock for dp dump operation (Thomas Graf) [1002051]
-- [net] openvswitch: Use RCU lock for flow dump operation (Thomas Graf) [1002051]
-- [net] ipv6: prevent race between address creation and removal (Jiri Benc) [991392]
-- [net] ipv6: move peer_addr init into ipv6_add_addr() (Jiri Benc) [991392]
-- [net] ipv6: use ipv6_addr_scope() helper (Jiri Benc) [991392]
-- [net] ipv6: add support of peer address (Jiri Benc) [991392]
-- [net] rtm_to_ifaddr: free ifa if ifa_cacheinfo processing fails (Daniel Borkmann) [992908]
-- [net] net_sched: restore "linklayer atm" handling (Jesper Brouer) [998588]
-- [net] net_sched: psched_ratecfg_precompute() improvements (Jesper Brouer) [998588]
-- [net] ip_tunnel: Do not use inner ip-header-id for tunnel ip-header-id (Amerigo Wang) [989522]
-- [net] openvswitch: Add vxlan tunneling support (Amerigo Wang) [989522]
-- [net] vxlan: Add tx-vlan offload support (Amerigo Wang) [989522]
-- [net] vxlan: Improve vxlan headroom calculation (Amerigo Wang) [989522]
-- [net] vxlan: Factor out vxlan send api (Amerigo Wang) [989522]
-- [net] vxlan: Extend vxlan handlers for openvswitch (Amerigo Wang) [989522]
-- [net] vxlan: Add vxlan recv demux (Amerigo Wang) [989522]
-- [net] vxlan: Restructure vxlan receive (Amerigo Wang) [989522]
-- [net] vxlan: Restructure vxlan socket apis (Amerigo Wang) [989522]
-- [net] openvswitch: Reset tunnel key between input and output (Amerigo Wang) [989522]
-- [net] openvswitch: Use correct type while allocating flex array (Amerigo Wang) [989522]
-- [net] openvswitch: Fix bad merge resolution (Amerigo Wang) [989522]
-- [net] rtnetlink: Fix inverted check in ndo_dflt_fdb_del() (Amerigo Wang) [989522]
-- [net] rtnetlink: allow using zero MAC address in rtnl_fdb_{add, del} (Amerigo Wang) [989522]
-- [net] vxlan: fix a soft lockup in vxlan module removal (Amerigo Wang) [989522]
-- [net] vxlan: fix a regression of igmp join (Amerigo Wang) [989522]
-- [net] vxlan: fix rcu related warning (Amerigo Wang) [989522]
-- [net] vxlan: fdb: replace an existing entry (Amerigo Wang) [989522]
-- [net] vxlan: fix igmp races (Amerigo Wang) [989522]
-- [net] vxlan: unregister on namespace exit (Amerigo Wang) [989522]
-- [net] vxlan: add necessary locking on device removal (Amerigo Wang) [989522]
-- [net] vxlan: Fix kernel crash on rmmod (Amerigo Wang) [989522]
-- [net] vxlan: fix function name spelling (Amerigo Wang) [989522]
-- [net] vxlan: fdb: allow specifying multiple destinations for zero MAC (Amerigo Wang) [989522]
-- [net] vxlan: allow removal of single destination from fdb entry (Amerigo Wang) [989522]
-- [net] vxlan: introduce vxlan_fdb_parse (Amerigo Wang) [989522]
-- [net] vxlan: introduce vxlan_fdb_find_rdst (Amerigo Wang) [989522]
-- [net] vxlan: add implicit fdb entry for default destination (Amerigo Wang) [989522]
-- [net] vxlan: Fix sparse warnings (Amerigo Wang) [989522]
-- [net] vxlan: cosmetic cleanup's (Amerigo Wang) [989522]
-- [net] vxlan: Use initializer for dummy structures (Amerigo Wang) [989522]
-- [net] vxlan: port module param should be ushort (Amerigo Wang) [989522]
-- [net] vxlan: convert remotes list to list_rcu (Amerigo Wang) [989522]
-- [net] vxlan: make vxlan_xmit_one void (Amerigo Wang) [989522]
-- [net] vxlan: move cleanup to uninit (Amerigo Wang) [989522]
-- [net] vxlan: fix race caused by dropping rtnl_unlock (Amerigo Wang) [989522]
-- [net] vxlan: send notification when MAC migrates (Amerigo Wang) [989522]
-- [net] vxlan: move IGMP join/leave to work queue (Amerigo Wang) [989522]
-- [net] vxlan: fix crash from work pending on module removal (Amerigo Wang) [989522]
-- [net] vxlan: fix out of order operation on module removal (Amerigo Wang) [989522]
-- [net] vxlan: defer vxlan init as late as possible (Amerigo Wang) [989522]
-- [net] vxlan: use unsigned int instead of unsigned (Amerigo Wang) [989522]
-- [net] vxlan: remove the unused rcu head from struct vxlan_rdst (Amerigo Wang) [989522]
-- [net] vxlan: listen on multiple ports (Amerigo Wang) [989522]
-- [rhel] Kconfig: enable CONFIG_OPENVSWITCH_GRE (Amerigo Wang) [992917]
-- [net] ip_tunnel: embed hash list head (Amerigo Wang) [992917]
-- [net] sit: fix tunnel update via netlink (Amerigo Wang) [992917]
-- [net] ipv6: only apply anti-spoofing checks to not-pointopoint tunnels (Amerigo Wang) [992917]
-- [net] gre: Fix MTU sizing check for gretap tunnels (Amerigo Wang) [992917]
-- [net] ip_tunnels: Use skb-len to PMTU check (Amerigo Wang) [992917]
-- [net] gso: Update tunnel segmentation to support Tx checksum offload (Amerigo Wang) [992917]
-- [net] gre: move GSO functions to gre_offload (Amerigo Wang) [992917]
-- [net] gre: fix a regression in ioctl (Amerigo Wang) [992917]
-- [net] sit: add support of x-netns (Amerigo Wang) [992917]
-- [net] dev: introduce skb_scrub_packet() (Amerigo Wang) [992917]
-- [net] dev: remove duplicate 'skb->dev = dev' in dev_forward_skb() (Amerigo Wang) [992917]
-- [net] sit: fix an oops when IFLA_IPTUN_PROTO is not set (Amerigo Wang) [992917]
-- [net] sit: fix 4in4 + IPsec scenario (Amerigo Wang) [992917]
-- [net] openvswitch: Add Kconfig dependency on GRE-DEMUX (Amerigo Wang) [992917]
-- [net] ip_tunnel: Protect tunnel functions with CONFIG_INET guard (Amerigo Wang) [992917]
-- [net] openvswitch: Use correct config guard (Amerigo Wang) [992917]
-- [net] openvswitch: Add gre tunnel support (Amerigo Wang) [992917]
-- [net] openvswitch: Optimize flow key match for non tunnel flows (Amerigo Wang) [992917]
-- [net] openvswitch: Expand action buffer size (Amerigo Wang) [992917]
-- [net] openvswitch: Add tunneling interface (Amerigo Wang) [992917]
-- [net] openvswitch: Copy individual actions (Amerigo Wang) [992917]
-- [net] ip_tunnel: Add dont fragment flag (Amerigo Wang) [992917]
-- [net] ip_tunnel: push generic protocol handling to ip_tunnel module (Amerigo Wang) [992917]
-- [net] ip_tunnel: extend iptunnel_xmit() (Amerigo Wang) [992917]
-- [net] gre: export gre_handle_offloads() function (Amerigo Wang) [992917]
-- [net] gre: export gre_build_header() function (Amerigo Wang) [992917]
-- [net] gre: Allow multiple protocol listener for gre protocol (Amerigo Wang) [992917]
-- [net] gre: Simplify gre protocol registration locking (Amerigo Wang) [992917]
-- [net] openvswitch: make skb->csum consistent with rest of networking stack (Amerigo Wang) [992917]
-- [net] openvswitch: Simplify interface ovs_flow_metadata_from_nlattrs() (Amerigo Wang) [992917]
-- [net] openvswitch: Fix misspellings in comments and docs (Amerigo Wang) [992917]
-- [net] openvswitch: Unify vport error stats handling (Amerigo Wang) [992917]
-- [net] openvswitch: fix variable names in comment (Amerigo Wang) [992917]
-- [net] openvswitch: Immediately exit on error in ovs_vport_cmd_set() (Amerigo Wang) [992917]
-- [net] openvswitch: Remove unused get_config vport op (Amerigo Wang) [992917]
-- [net] iptunnel: specify protocol outside IP header (Amerigo Wang) [992917]
-- [net] sit: add IPv4 over IPv4 support (Amerigo Wang) [992917]
-- [net] export physical port id via sysfs (Jiri Pirko) [991026]
-- [net] rtnl: export physical port id via RT netlink (Jiri Pirko) [991026]
-- [net] add ndo to get id of physical port of the device (Jiri Pirko) [991026]
-- [net] busy_poll: revert unsupported bits from creation of BUSY_POLL socket option (Neil Horman) [958330]
-- [net] busy_poll: rename busy poll socket op and globals (Neil Horman) [958330]
-- [net] busy_poll: rename ll methods to busy-poll (Neil Horman) [958330]
-- [net] busy_poll: rename include/net/ll_poll.h to include/net/busy_poll.h (Neil Horman) [958330]
-- [net] busy_poll: change busy poll time accounting (Neil Horman) [958330]
-- [net] busy_poll: rename low latency sockets functions to busy poll (Neil Horman) [958330]
-- [net] busy_poll: lls fix build with allnoconfig (Neil Horman) [958330]
-- [net] busy_poll: convert lls to use time_in_range() (Neil Horman) [958330]
-- [net] busy_poll: avoid calling sched_clock when LLS is off (Neil Horman) [958330]
-- [net] busy_poll: fix LLS debug_smp_processor_id() warning (Neil Horman) [958330]
-- [net] busy_poll: poll/select low latency socket support (Neil Horman) [958330]
-- [net] busy_poll: add socket option for low latency polling (Neil Horman) [958330]
-- [net] busy_poll: remove NET_LL_RX_POLL config menu (Neil Horman) [958330]
-- [net] busy_poll: convert low latency sockets to sched_clock() (Neil Horman) [958330]
-- [net] busy_poll: change sysctl_net_ll_poll into an unsigned int (Neil Horman) [958330]
-- [netdrv] ixgbe: add extra stats for ndo_ll_poll (Neil Horman) [958330]
-- [netdrv] ixgbe: add support for ndo_ll_poll (Neil Horman) [958330]
-- [net] tcp: add low latency socket poll support (Neil Horman) [958330]
-- [net] udp: add low latency socket poll support (Neil Horman) [958330]
-- [net] busy_poll: add low latency socket poll (Neil Horman) [958330]
-- [net] add napi_id and hash (Neil Horman) [958330]
-
-* Wed Aug 28 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-13.el7]
-- [powerpc] pseries: Drop "select HOTPLUG" (Myron Stowe) [999178]
-- [misc] Finally eradicate CONFIG_HOTPLUG (Myron Stowe) [999178]
-- [vfio] vfio-pci: Avoid deadlock on remove (Alex Williamson) [912293]
-- [vfio] Ignore sprurious notifies (Alex Williamson) [912293]
-- [vfio] Don't overreact to DEL_DEVICE (Alex Williamson) [912293]
-- [s390] qeth: Fix crash on initial MTU size change (Hendrik Brueckner) [997607]
-- [s390] qeth: change default standard blkt settings for OSA (Hendrik Brueckner) [997635]
-- [s390] dasd: fix hanging devices after path events (Hendrik Brueckner) [996178]
-- [s390] zcrypt: Alias for new zcrypt device driver base module (Hendrik Brueckner) [996731]
-- [s390] zfcp: status read buffers on first adapter open with link down (Hendrik Brueckner) [976636]
-- [s390] zfcp: fix adapter (re)open recovery while link to SAN is down (Hendrik Brueckner) [889079]
-- [netdrv] be2net: Fix to avoid hardware workaround when not needed (Ivan Vecera) [982900]
-- [fs] gfs2: Take glock reference in examine_bucket() (Steven Whitehouse) [999897]
-- [fs] gfs2: Check for glock already held in gfs2_getxattr (Steven Whitehouse) [997604]
-- [crypto] nx: fix nx-aes-gcm verification (Steve Best) [997057]
-- [s390] zfcp: remove access control tables interface (Hendrik Brueckner) [994519]
-- [s390] zfcp: cfdc fops add owner (Hendrik Brueckner) [994519]
-- [scsi] fcoe: cleanup return codes from fcoe_rcv (Neil Horman) [984876]
-- [scsi] fcoe: make sure fcoe frames are unshared prior to manipulating them (Neil Horman) [984876]
-- [scsi] fcoe: ensure that skb placed on the fip_recv_list are unshared (Neil Horman) [984876]
-- [mm] zswap: add documentation (Steve Best) [731499]
-- [mm] zswap: add to mm (Steve Best) [731499]
-- [mm] zbud: add to mm (Steve Best) [731499]
-- [misc] MAINTAINERS: add zswap and zbud maintainer (Steve Best) [731499]
-- [fs] debugfs: add get/set for atomic types (Steve Best) [731499]
-
-* Mon Aug 26 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-12.el7]
-- [acpi] memhotplug: Fix a stale pointer in error path (Lenny Szubowicz) [995322]
-- [powerpc] Add second POWER8 PVR entry (Steve Best) [995355]
-- [acpi] power: add missing newline to debug messages (Myron Stowe) [998633]
-- [tools] cpupower: Add Haswell family 0x45 specific idle monitor to show PC8, 9, 10 states (Myron Stowe) [998633]
-- [tools] cpupower: Haswell also supports the C-states introduced with SandyBridge (Myron Stowe) [998633]
-- [tools] cpupower: Introduce idle-set subcommand and C-state enabling/disabling (Myron Stowe) [998633]
-- [tools] cpupower: Implement disabling of cstate interface (Myron Stowe) [998633]
-- [tools] cpupower: Make idlestate usage unsigned (Myron Stowe) [998633]
-- [acpi] fan: Initialize acpi_state variable (Myron Stowe) [998633]
-- [acpi] scan: remove unused LIST_HEAD(acpi_device_list) (Myron Stowe) [998633]
-- [acpi] dock: Actually define acpi_dock_init() as void (Myron Stowe) [998633]
-- [acpi] pm: Fix corner case in acpi_bus_update_power() (Myron Stowe) [998633]
-- [cpufreq] Fix serialization of frequency transitions (Myron Stowe) [998633]
-- [cpufreq] Fix cpufreq regression after suspend/resume (Myron Stowe) [991615]
-- [acpi] pm: Fix possible NULL pointer deref in acpi_pm_device_sleep_state() (Myron Stowe) [991615]
-- [kernel] power: Warn about system time after resume with pm_trace (Myron Stowe) [991615]
-- [cpufreq] don't leave stale policy pointer in cdbs->cur_policy (Myron Stowe) [991615]
-- [cpufreq] acpi-cpufreq: Add new sysfs attribute freqdomain_cpus (Myron Stowe) [991615]
-- [cpufreq] make sure frequency transitions are serialized (Myron Stowe) [991615]
-- [acpi] implement acpi_os_get_timer() according the spec (Myron Stowe) [991615]
-- [acpi] ec: Add HP Folio 13 to ec_dmi_table in order to skip DSDT scan (Myron Stowe) [991615]
-- [acpi] Add CMOS RTC Operation Region handler support (Myron Stowe) [991615]
-- [acpi] processor: Drop unused variable from processor_perflib.c (Myron Stowe) [991615]
-- [cpufreq] powernow-k8: call CPUFREQ_POSTCHANGE notfier in error cases (Myron Stowe) [991615]
-- [cpufreq] pcc: call CPUFREQ_POSTCHANGE notfier in error cases (Myron Stowe) [991615]
-- [cpufreq] acpi-cpufreq: call CPUFREQ_POSTCHANGE notfier in error cases (Myron Stowe) [991615]
-- [Documentation] power: Add pm_qos and dev_pm_qos to events-power.txt (Myron Stowe) [991615]
-- [base] power/qos: Add dev_pm_qos_request tracepoints (Myron Stowe) [991615]
-- [kernel] power/qos: Add pm_qos_request tracepoints (Myron Stowe) [991615]
-- [kernel] power/qos: Add pm_qos_update_target/flags tracepoints (Myron Stowe) [991615]
-- [acpi] processor: Remove unused macros in processor_driver.c (Myron Stowe) [991615]
-- [Documentation] power: Update Documentation/power/pm_qos_interface.txt (Myron Stowe) [991615]
-- [Documentation] cpu-hotplug: Rephrase the outdated description for MADT entries (Myron Stowe) [991615]
-- [cpufreq] make __cpufreq_notify_transition() static (Myron Stowe) [991615]
-- [cpufreq] Fix minor formatting issues (Myron Stowe) [991615]
-- [cpufreq] Fix governor start/stop race condition (Myron Stowe) [991615]
-- [kernel] power: Print last wakeup source on failed wakeup_count write (Myron Stowe) [991615]
-- [kernel] power/qos: correct the valid range of pm_qos_class (Myron Stowe) [991615]
-- [Documentation] video: update video_extension.txt for backlight control (Myron Stowe) [991615]
-- [Documentation] video: move video_extension.txt to Documentation/acpi (Myron Stowe) [991615]
-- [Documentation] video: add description for brightness_switch_enabled (Myron Stowe) [991615]
-- [Documentation] Add ACPI namespace documentation (Myron Stowe) [991615]
-- [Documentation] Add sysfs ABI documentation (Myron Stowe) [991615]
-- [Documentation] MAINTAINERS: include Documentation/acpi (Myron Stowe) [991615]
-- [acpi] acpica: Update version to 20130517 (Myron Stowe) [991615]
-- [acpi] acpica: _CST repair, handle null package entries (Myron Stowe) [991615]
-- [acpi] acpica: Add several repairs for _CST predefined name (Myron Stowe) [991615]
-- [acpi] acpica: Move _PRT repair into the standard complex repair module (Myron Stowe) [991615]
-- [acpi] scan: Do not bind ACPI drivers to objects with scan handlers (Myron Stowe) [991615]
-- [acpi] pm: Rework and clean up acpi_dev_pm_get_state() (Myron Stowe) [991615]
-- [acpi] pm: Replace ACPI_STATE_D3 with ACPI_STATE_D3_COLD in device_pm.c (Myron Stowe) [991615]
-- [acpi] pm: Rename function acpi_device_power_state() and make it static (Myron Stowe) [991615]
-- [acpi] pm: acpi_processor_suspend() can be static (Myron Stowe) [991615]
-- [virt] xen/acpi: Register an acpi_suspend_lowlevel callback (Myron Stowe) [991615]
-- [x86] acpi/sleep: Provide registration for acpi_suspend_lowlevel (Myron Stowe) [991615]
-- [acpi] Remove unused flags in acpi_device_flags (Myron Stowe) [991615]
-- [acpi] Remove useless initializers (Myron Stowe) [991615]
-- [acpi] battery: Make sure all spaces are in correct places (Myron Stowe) [991615]
-- [acpi] add _STA evaluation at do_acpi_find_child() (Myron Stowe) [991615]
-- [acpi] ec: access user space with get_user()/put_user() (Myron Stowe) [991615]
-- [cpufreq] Simplify userspace governor (Myron Stowe) [991615]
-- [acpi] lpss: override SDIO private register space size from ACPI tables (Myron Stowe) [991615]
-- [acpi] lpss: mask the UART TX completion interrupt (Myron Stowe) [991615]
-- [acpi] lpss: add support for Intel BayTrail (Myron Stowe) [991615]
-- [acpi] Do not use CONFIG_ACPI_HOTPLUG_MEMORY_MODULE (Myron Stowe) [991615]
-- [cpufreq] x86: make X86_AMD_FREQ_SENSITIVITY select CPU_FREQ_TABLE (Myron Stowe) [991615]
-- [cpufreq] powerpc: make CBE_RAS select CPU_FREQ_TABLE (Myron Stowe) [991615]
-- [cpufreq] blackfin: enable driver for CONFIG_BFIN_CPU_FREQ (Myron Stowe) [991615]
-- [acpi] acpica: Clear events initialized flag upon event component termination (Myron Stowe) [991615]
-- [acpi] acpica: Fix possible memory leak in GPE init error path (Myron Stowe) [991615]
-- [acpi] acpica: on termination, delete global lock pending lock (Myron Stowe) [991615]
-- [acpi] acpica: Update interface to acpi_ut_valid_acpi_name() (Myron Stowe) [991615]
-- [acpi] acpica: Do not use extended sleep registers unless HW-reduced bit is set (Myron Stowe) [991615]
-- [acpi] acpica: Split table print utilities to a new a separate file (Myron Stowe) [991615]
-- [acpi] acpica: Add option to disable loading of SSDTs from the RSDT/XSDT (Myron Stowe) [991615]
-- [acpi] acpica: Standardize all switch() blocks (Myron Stowe) [991615]
-- [acpi] acpica: Split internal error msg routines to a separate file (Myron Stowe) [991615]
-- [acpi] acpica: Split buffer dump routines into separate file (Myron Stowe) [991615]
-- [acpi] scan: Simplify ACPI driver probing (Myron Stowe) [991615]
-- [base] power/wakeup: Adjust messaging for wake events during suspend (Myron Stowe) [991615]
-- [cpuidle] Fix ARCH_NEEDS_CPU_IDLE_COUPLED dependency warning (Myron Stowe) [991615]
-- [cpuidle] Comment the driver's framework code (Myron Stowe) [991615]
-- [cpuidle] simplify multiple driver support (Myron Stowe) [991615]
-- [cpufreq] powerpc: move cpufreq driver to drivers/cpufreq (Myron Stowe) [991615]
-- [cpufreq] acpi-cpufreq: Add ACPI processor device IDs to acpi-cpufreq (Myron Stowe) [991615]
-- [cpufreq] remove unnecessary cpufreq_cpu_{get,put}() calls (Myron Stowe) [991615]
-- [Documentation] MAINTAINERS: Add git tree path for ARM specific updates to cpufreq (Myron Stowe) [991615]
-- [cpufreq] rename index as driver_data in cpufreq_frequency_table (Myron Stowe) [991615]
-- [Documentation] power: Update .runtime_idle() callback documentation (Myron Stowe) [991615]
-- [kernel] power: Rework the "runtime idle" helper routine (Myron Stowe) [991615]
-- [kernel] power: print physical addresses consistently with other parts of kernel (Myron Stowe) [991615]
-- [cpuidle] improve governor Kconfig options (Myron Stowe) [991615]
-- [Documentation] MAINTAINERS: update mailing list for devfreq(DVFS) (Myron Stowe) [991615]
-- [devfreq] fix typo "CPU_EXYNOS4.12" twice (Myron Stowe) [991615]
-- [devfreq] add comments and Documentation (Myron Stowe) [991615]
-- [devfreq] account suspend/resume for stats (Myron Stowe) [991615]
-- [mm] memory_hotplug: Move alternative function definitions to header (Myron Stowe) [991615]
-- [acpi] processor: Fix potential NULL pointer dereference in acpi_processor_add() (Myron Stowe) [991615]
-- [acpi] acpica: Update version to 20130418 (Myron Stowe) [991615]
-- [acpi] acpica: Update for "orphan" embedded controller _REG method support (Myron Stowe) [991615]
-- [acpi] acpica: Remove unused macros, no functional change (Myron Stowe) [991615]
-- [acpi] acpica: Predefined name support, remove unused local variable (Myron Stowe) [991615]
-- [acpi] acpica: Add argument typechecking for all predefined ACPI names (Myron Stowe) [991615]
-- [acpi] acpica: Add BIOS error interface for predefined name validation support (Myron Stowe) [991615]
-- [acpi] acpica: Change an exception code for the ASL UnLoad() operator (Myron Stowe) [991615]
-- [acpi] memhotplug: Simplify memory removal (Myron Stowe) [991615]
-- [acpi] scan: Add second pass of companion offlining to hot-remove code (Myron Stowe) [991615]
-- [base] memory: Drop offline_memory_block() (Myron Stowe) [991615]
-- [acpi] processor: Pass processor object handle to acpi_bind_one() (Myron Stowe) [991615]
-- [acpi] Drop removal_type field from struct acpi_device (Myron Stowe) [991615]
-- [base] memory: Simplify __memory_block_change_state() (Myron Stowe) [991615]
-- [acpi] processor: Initialize per_cpu(processors, pr->id) properly (Myron Stowe) [991615]
-- [base] cpu: Fix sysfs cpu/online of offlined CPUs (Myron Stowe) [991615]
-- [cpufreq] Don't create empty /sys/devices/system/cpu/cpufreq directory (Myron Stowe) [991615]
-- [cpufreq] Move get_cpu_idle_time() to cpufreq.c (Myron Stowe) [991615]
-- [cpufreq] governors: Move get_governor_parent_kobj() to cpufreq.c (Myron Stowe) [991615]
-- [cpufreq] Add EXPORT_SYMBOL_GPL for have_governor_per_policy (Myron Stowe) [991615]
-- [pnp] restore automatic resolution of DMA conflicts (Myron Stowe) [991615]
-- [net] af_unix: use freezable blocking calls in read (Myron Stowe) [991615]
-- [kernel] sigtimedwait: use freezable blocking call (Myron Stowe) [991615]
-- [kernel] nanosleep: use freezable blocking call (Myron Stowe) [991615]
-- [kernel] futex: use freezable blocking call (Myron Stowe) [991615]
-- [fs] select: use freezable blocking call (Myron Stowe) [991615]
-- [fs] epoll: use freezable blocking call (Myron Stowe) [991615]
-- [kernel] freezer: add new freezable helpers using freezer_do_not_count() (Myron Stowe) [991615]
-- [kernel] freezer: convert freezable helpers to static inline where possible (Myron Stowe) [991615]
-- [kernel] freezer: convert freezable helpers to freezer_do_not_count() (Myron Stowe) [991615]
-- [kernel] freezer: skip waking up tasks with PF_FREEZER_SKIP set (Myron Stowe) [991615]
-- [kernel] power: shorten freezer sleep time using exponential backoff (Myron Stowe) [991615]
-- [kernel] lockdep: check that no locks held at freeze time (Myron Stowe) [991615]
-- [kernel] lockdep: remove task argument from debug_check_no_locks_held (Myron Stowe) [991615]
-- [fs] cifs: add unsafe versions of freezable helpers for CIFS (Myron Stowe) [991615]
-- [fs] nfs: add unsafe versions of freezable helpers for NFS (Myron Stowe) [991615]
-- [base] memory: Introduce offline/online callbacks for memory blocks (Myron Stowe) [991615]
-- [acpi] memhotplug: Bind removable memory blocks to ACPI device nodes (Myron Stowe) [991615]
-- [acpi] processor: Use common hotplug infrastructure (Myron Stowe) [991615]
-- [acpi] hotplug: Use device offline/online for graceful hot-removal (Myron Stowe) [991615]
-- [base] cpu: Use generic offline/online for CPU offline/online (Myron Stowe) [991615]
-- [base] core: Add offline/online device operations (Myron Stowe) [991615]
-- [scsi] bnx2i: Fix bug on some bnx2x devices that don't support iSCSI (Tomas Henzl) [957024]
-- [x86] tracing: Add irq_enter/exit() in smp_trace_reschedule_interrupt() (Seiji Aguchi) [741673]
-- [x86] trace: Add config option checking to the definitions of mce handlers (Seiji Aguchi) [741673]
-- [x86] trace: Do not call local_irq_save() in load_current_idt() (Seiji Aguchi) [741673]
-- [x86] trace: Move creation of irq tracepoints from apic.c to irq.c (Seiji Aguchi) [741673]
-- [x86] trace: Add irq vector tracepoints (Seiji Aguchi) [741673]
-- [x86] trace: Rename variables for debugging (Seiji Aguchi) [741673]
-- [x86] trace: Introduce entering/exiting_irq() (Seiji Aguchi) [741673]
-- [tracing] Add DEFINE_EVENT_FN() macro (Seiji Aguchi) [741673]
-- [fs] pstore: Fail to unlink if a driver has not defined pstore_erase (Steve Best) [996930]
-- [powerpc] pseries: Inform the hypervisor we are using EBB regs (Steve Best) [997646]
-- [powerpc] perf: Export PERF_EVENT_CONFIG_EBB_SHIFT to userspace (Steve Best) [997646]
-- [powerpc] perf: Set PPC_FEATURE2_EBB when we register the power8 PMU (Steve Best) [997646]
-- [powerpc] Fix hypervisor facility unavaliable vector number (Steve Best) [995354]
-- [powerpc] Fix context switch DSCR on POWER8 (Steve Best) [995354]
-- [powerpc] Rework setting up H/FSCR bit definitions (Steve Best) [995354]
-- [powerpc] Wire up the HV facility unavailable exception (Steve Best) [995354]
-- [powerpc] Rename and flesh out the facility unavailable exception handler (Steve Best) [995354]
-- [powerpc] Remove KVMTEST from RELON exception handlers (Steve Best) [995354]
-- [powerpc] tm: Fix context switching TAR, PPR and DSCR SPRs (Steve Best) [988340]
-- [powerpc] Save the TAR register earlier (Steve Best) [988340]
-
-* Wed Aug 21 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-11.el7]
-- [security] Revert: Secure Boot related kernel enforcements (Jarod Wilson) [903815]
-
-* Tue Aug 20 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-10.el7]
-- [block] blk-mq: blk-mq should free bios in pass through case (Mike Snitzer) [960150]
-- [block] blk-mq: add missing percpu_counter_destroy for mq_usage_counter (Mike Snitzer) [960150]
-- [fs] direct-io: only inc_dec inode->i_dio_count for file systems (Mike Snitzer) [960150]
-- [lib] percpu_counter: make APIs irq safe (Mike Snitzer) [960150]
-- [block] null_blk: multi queue aware block test driver (Mike Snitzer) [960150]
-- [kernel] smp: Export __smp_call_function_single() (Mike Snitzer) [960150]
-- [block] blk-mq: change sw <-> hw queue mappings on hotplug events (Mike Snitzer) [960150]
-- [block] blk-mq: re-initialize queue data structure after CPU hotplug (Mike Snitzer) [960150]
-- [block] blk-mq: add queue freeze/unfreeze support (Mike Snitzer) [960150]
-- [block] blk-mq: fix timer infinite loop after first timeout event (Mike Snitzer) [960150]
-- [block] blk-mq: timeout fixes (Mike Snitzer) [960150]
-- [block] blk-mq: cpu hot plug_unplug fixes (Mike Snitzer) [960150]
-- [block] blk-mq: flush handling (Mike Snitzer) [960150]
-- [block] blk-mq: new multi-queue block IO queueing mechanism (Mike Snitzer) [960150]
-- [block] make rq->cmd_flags be 64-bit (Mike Snitzer) [960150]
-- [kernel] smp: don't warn about csd->flags having CSD_FLAG_LOCK cleared for !wait (Mike Snitzer) [960150]
-- [mm] sched: Allow uaccess in atomic with pagefault_disable() (Michael S. Tsirkin) [988029]
-- [mm] sched: Drop voluntary schedule from might_fault() (Michael S. Tsirkin) [988029]
-- [x86] uaccess s/might_sleep/might_fault/ (Michael S. Tsirkin) [988029]
-- [powerpc] uaccess s/might_sleep/might_fault/ (Michael S. Tsirkin) [988029]
-- [misc] asm-generic: uaccess s/might_sleep/might_fault/ (Michael S. Tsirkin) [988029]
-- [x86] efi: Disable secure boot if shim is in insecure mode (Lenny Szubowicz) [903815]
-- [kernel] modsign: Import certificates from UEFI Secure Boot (Lenny Szubowicz) [903815]
-- [kernel] keys: Add a system blacklist keyring (Lenny Szubowicz) [903815]
-- [crypto] asymmetric_keys: Add an EFI signature blob parser and key loader (Lenny Szubowicz) [903815]
-- [kernel] modsign: Fix including certificate twice when the signing_key.x509 already exists (Lenny Szubowicz) [903815]
-- [kernel] keys: Add a 'trusted' flag and a 'trusted only' flag (Lenny Szubowicz) [903815]
-- [kernel] modsign: Separate the kernel signature checking keyring from module signing (Lenny Szubowicz) [903815]
-- [kernel] modsign: Load *.x509 files into kernel keyring (Lenny Szubowicz) [903815]
-- [efi] Add EFI signature data types (Lenny Szubowicz) [903815]
-- [kernel] modsign: Always enforce module signing in a Secure Boot environment (Lenny Szubowicz) [903815]
-- [kernel] hibernate: Disable in a Secure Boot environment (Lenny Szubowicz) [903815]
-- [kernel] kexec: Disable in a secure boot environment (Lenny Szubowicz) [903815]
-- [x86] Lock down MSR writing in secure boot (Lenny Szubowicz) [903815]
-- [acpi] Ignore acpi_rsdp kernel parameter in a secure boot environment (Lenny Szubowicz) [903815]
-- [char] mem: Restrict /dev/mem and /dev/kmem in secure boot setups (Lenny Szubowicz) [903815]
-- [platform] asus-wmi: Restrict debugfs interface (Lenny Szubowicz) [903815]
-- [acpi] Limit access to custom_method (Lenny Szubowicz) [903815]
-- [x86] Lock down IO port access in secure boot environments (Lenny Szubowicz) [903815]
-- [pci] Lock down BAR access in secure boot environments (Lenny Szubowicz) [903815]
-- [x86] efi: Enable secure boot lockdown automatically when enabled in firmware (Lenny Szubowicz) [903815]
-- [kernel] Add a kernel parameter that will force on Secure Boot mode (Lenny Szubowicz) [903815]
-- [security] selinux: define mapping for new Secure Boot capability (Lenny Szubowicz) [903815]
-- [uapi] Add new secure boot capability (Lenny Szubowicz) [903815]
-- [kernel] audit: fix mq_open and mq_unlink to add the MQ root as a hidden parent audit_names record (Jeff Layton) [908885 953186]
-- [kernel] audit: log the audit_names record type (Jeff Layton) [908885 953186]
-- [kernel] audit: add child record before the create to handle case where create fails (Jeff Layton) [908885 953186]
-- [md] dm-raid: silence compiler warning on rebuilds_per_group (Jonathan E Brassow) [970782]
-- [md] dm-raid: Fix raid_resume not reviving failed devices in all cases (Jonathan E Brassow) [970782]
-- [md] dm-raid: Break-up untidy function (Jonathan E Brassow) [970782]
-- [s390] zfcp: block queue limits with data router (Hendrik Brueckner) [976657]
-- [scsi] scsi_lib: Fix race between starved list and device removal (Ewan Milne) [986037]
-- [md] dm-switch: add switch target (Mike Snitzer) [983188]
-- [wireless] disable WiMAX support (John Linville) [915650]
-- [fs] gfs2: don't overrun reserved revokes (Benjamin Marzinski) [950622]
-- [fs] gfs2: Reserve journal space for quota change in do_grow (Robert S Peterson) [979131]
-- [x86] setup: Add cpu_has_hypervisor check to rh_check_supported() (Prarit Bhargava) [986048]
-- [x86] sched: Optimize switch_mm() for multi-threaded workloads (Rik van Riel) [990747]
-- [crypto] nx: fix concurrency issue (Steve Best) [996565]
-- [powerpc] mm: Fix fallthrough bug in hpte_decode (Steve Best) [993326]
-- [misc] Kconfig: enable building user namespace with xfs (Dave Chinner) [987255]
-- [fs] xfs: add capability check to free eofblocks ioctl (Dave Chinner) [987255]
-- [fs] xfs: create internal eofblocks structure with kuid_t types (Dave Chinner) [987255]
-- [fs] xfs: convert kuid_t to/from uid_t for internal structures (Dave Chinner) [987255]
-- [fs] xfs: ioctl check for capabilities in the current user namespace (Dave Chinner) [987255]
-- [fs] xfs: convert kuid_t to/from uid_t in ACLs (Dave Chinner) [987255]
-- [fs] xfs: create wrappers for converting kuid_t to/from uid_t (Dave Chinner) [987255]
-- [md] raid5: fix interaction of 'replace' and 'recovery' (Jes Sorensen) [978055]
-- [md] raid10: remove use-after-free bug (Jes Sorensen) [978055]
-- [md] raid1: fix bio handling problems in process_checks() (Jes Sorensen) [978055]
-- [md] Remove recent change which allows devices to skip recovery (Jes Sorensen) [978055]
-- [md] raid10: fix two problems with RAID10 resync (Jes Sorensen) [978055]
-- [md] raid10: fix bug which causes all RAID10 reshapes to move no data (Jes Sorensen) [978055]
-- [md] raid5: allow 5-device RAID6 to be reshaped to 4-device (Jes Sorensen) [978055]
-- [md] raid10: fix two bugs affecting RAID10 reshape (Jes Sorensen) [978055]
-- [md] Remember the last sync operation that was performed (Jes Sorensen) [978055]
-- [md] raid0: fix buglet in RAID5 -> RAID0 conversion (Jes Sorensen) [978055]
-- [md] raid10: check In_sync flag in 'enough()' (Jes Sorensen) [978055]
-- [md] raid10: locking changes for 'enough()' (Jes Sorensen) [978055]
-- [md] replace strict_strto*() with kstrto*() (Jes Sorensen) [978055]
-- [md] Wait for md_check_recovery before attempting device removal (Jes Sorensen) [978055]
-- [md] dm-raid: Add ability to restore transiently failed devices on resume (Jes Sorensen) [978055]
-- [net] ipv6: resend MLD report if a link-local address completes DAD (Flavio Leitner) [889455]
-- [net] ipv6: introduce per-interface counter for dad-completed ipv6 addresses (Flavio Leitner) [889455]
-- [net] ipv6: split duplicate address detection and router solicitation timer (Flavio Leitner) [889455]
-- [net] tcp: introduce a per-route knob for quick ack (Amerigo Wang) [984504]
-- [net] nlmon: use standard rtnetlink link api for add/del devices (Daniel Borkmann) [957721]
-- [net] nlmon: fix comparison in nlmon_is_valid_mtu (Daniel Borkmann) [957721]
-- [net] packet: nlmon: virtual netlink monitoring device for packet sockets (Daniel Borkmann) [957721]
-- [net] netlink: virtual tap device management (Daniel Borkmann) [957721]
-- [net] if_arp: add ARPHRD_NETLINK type (Daniel Borkmann) [957721]
-
-* Tue Aug 13 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-9.el7]
-- [kernel] sched: disable autogroups by default (Josh Poimboeuf) [989741]
-- [powerpc] pseries: Add backward compatibilty to read old kernel oops-log (Steve Best) [991831]
-- [powerpc] pseries: Fix buffer overflow when reading from pstore (Steve Best) [991831]
-- [crypto] nx: saves chaining value from co-processor (Steve Best) [972656]
-- [crypto] nx: fix limits to sg lists for SHA-2 (Steve Best) [972656]
-- [crypto] nx: fix physical addresses added to sg lists (Steve Best) [972656]
-
-* Mon Aug 12 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-8.el7]
-- [net] ipv6: ip6_append_data_mtu did not care about pmtudisc and frag_size (Francesco Fusco) [994346] {CVE-2013-4163}
-- [net] ipv6: call udp_push_pending_frames when uncorking a socket with AF_INET pending data (Francesco Fusco) [988355] {CVE-2013-4162}
-- [kernel] sysctl: range checking in do_proc_dointvec_ms_jiffies_conv (Francesco Fusco) [972393]
-- [net] neigh: prevent overflowing params in /proc/sys/net/ipv4/neigh/ (Francesco Fusco) [972393]
-- [net] vhost-net: fix use-after-free in vhost_net_flush (Thomas Graf) [984723] {CVE-2013-4127}
-- [powerpc] tm: Fix return of active 64bit signals (Steve Best) [731886]
-- [powerpc] tm: Fix return of 32bit rt signals to active transactions (Steve Best) [731886]
-- [powerpc] tm: Fix restoration of MSR on 32bit signal return (Steve Best) [731886]
-- [powerpc] tm: Fix 32 bit non-rt signals (Steve Best) [731886]
-- [powerpc] tm: Fix writing top half of MSR on 32 bit signals (Steve Best) [731886]
-- [fs] nfs: verify open flags before allowing an atomic open (Jeff Layton) [984823]
-- [s390] zfcp: module parameter dbflevel for early debugging (Hendrik Brueckner) [994597]
-- [virt] virtio_net: fix the race between channels setting and refill (Jason Wang) [978153]
-- [kernel] audit: restore order of tty and ses fields in log output (Richard Guy Briggs) [983157]
-- [kernel] time/tick: Make oneshot broadcast robust vs. CPU offlining (Prarit Bhargava) [967464]
-- [virt] virtio_net: fix race in RX VQ processing (Jason Wang) [989409]
-- [virt] virtio: support unlocked queue poll (Jason Wang) [989409]
-- [powerpc] mm: Use the correct SLB(LLP) encoding in tlbie instruction (Steve Best) [993448]
-- [net] tuntap: do not zerocopy if iov needs more pages than MAX_SKB_FRAGS (Jason Wang) [982513]
-- [net] tuntap: correctly linearize skb when zerocopy is used (Jason Wang) [982513]
-- [virt] macvtap: do not zerocopy if iov needs more pages than MAX_SKB_FRAGS (Jason Wang) [990786]
-- [virt] macvtap: do not assume 802.1Q when send vlan packets (Jason Wang) [990786]
-- [virt] macvtap: fix the missing ret value of TUNSETQUEUE (Jason Wang) [990786]
-- [virt] macvtap: correctly linearize skb when zerocopy is used (Jason Wang) [982513]
-- [virt] macvtap: Perform GSO on forwarding path (Jason Wang) [895484]
-- [virt] macvtap: Let TUNSETOFFLOAD actually controll offload features (Jason Wang) [895484]
-- [virt] macvtap: Consistently use rcu functions (Jason Wang) [895484]
-- [virt] macvtap: Convert to using rtnl lock (Jason Wang) [895484]
-- [virt] macvtap: fix uninitialized return value macvtap_ioctl_set_queue() (Jason Wang) [731550]
-- [virt] macvtap: slient sparse warnings (Jason Wang) [731550]
-- [virt] macvtap: enable multiqueue flag (Jason Wang) [731550]
-- [virt] macvtap: add TUNSETQUEUE ioctl (Jason Wang) [731550]
-- [virt] macvtap: eliminate linear search (Jason Wang) [731550]
-- [virt] macvtap: introduce macvtap_get_vlan() (Jason Wang) [731550]
-- [virt] macvtap: do not add self to waitqueue if doing a nonblock read (Jason Wang) [731550]
-- [virt] macvtap: fix a possible race between queue selection and changing queues (Jason Wang) [731550]
-
-* Thu Aug 08 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-7.el7]
-- [vfio] type1: Fix leak on error path (Alex Williamson) [984081]
-- [vfio] Limit group opens (Alex Williamson) [984081]
-- [vfio] type1: Fix missed frees and zero sized removes (Alex Williamson) [984081]
-- [vfio] Provide module option to disable vfio_iommu_type1 hugepage support (Alex Williamson) [984081]
-- [vfio] hugepage support for vfio_iommu_type1 (Alex Williamson) [984081]
-- [vfio] Convert type1 iommu to use rbtree (Alex Williamson) [984081]
-- [iommu] Use pa and zx instead of casting (Alex Williamson) [984081]
-- [iommu] amd: Only unmap large pages from the first pte (Alex Williamson) [984081]
-- [iommu] Fix compiler warning on pr_debug (Alex Williamson) [984081]
-- [iommu] amd: Fix memory leak in free_pagetable (Alex Williamson) [984081]
-- [iommu] Split iommu_unmaps (Alex Williamson) [984081]
-- [iommu] intel, amd: Remove multifunction assumption around grouping (Alex Williamson) [984081]
-- [x86] spinlock: make ticket lock increment 2, unconditionally (Rik van Riel) [970737]
-- [virt] pvticketlock: When paravirtualizing ticket locks, increment by 2 (Rik van Riel) [970737]
-- [scsi] isci: Fix a race condition in the SSP task management path (David Milburn) [990201]
-- [netdrv] bnx2x: Wait for MCP validity during AER (Michal Schmidt) [797460]
-- [virt] virtio_scsi: Fix virtqueue affinity setup (Asias He) [971826]
-- [fs] nfs: fix open(O_RDONLY|O_TRUNC) in NFS4.0 (Jeff Layton) [987615]
-- [watchdog] hpwdt: Add check for UEFI bits (Linda Knippers) [985195]
-- [powerpc] mm/numa: VPHN topology change updates all siblings (Steve Best) [973594]
-- [powerpc] powernv: Fix iommu initialization again (Steve Best) [979523]
-- [firmware] efivars: If pstore_register fails, free unneeded pstore buffer (Lenny Szubowicz) [983597]
-- [acpi] Eliminate console msg if pstore.backend excludes ERST (Lenny Szubowicz) [983597]
-- [fs] pstore: Return unique error if backend registration excluded by kernel param (Lenny Szubowicz) [983597]
-
-* Tue Aug 06 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-6.el7]
-- [fs] locks: move file_lock_list to a set of percpu hlist_heads and convert file_lock_lock to an lglock (Jeff Layton) [976876]
-- [fs] seq_file: add seq_list_*_percpu helpers (Jeff Layton) [976876]
-- [fs] locks: give the blocked_hash its own spinlock (Jeff Layton) [976876]
-- [fs] locks: add a new "lm_owner_key" lock operation (Jeff Layton) [976876]
-- [fs] locks: turn the blocked_list into a hashtable (Jeff Layton) [976876]
-- [fs] locks: convert fl_link to a hlist_node (Jeff Layton) [976876]
-- [fs] locks: avoid taking global lock if possible when waking up blocked waiters (Jeff Layton) [976876]
-- [fs] locks: protect most of the file_lock handling with i_lock (Jeff Layton) [976876]
-- [fs] locks: encapsulate the fl_link list handling (Jeff Layton) [976876]
-- [fs] locks: make "added" in __posix_lock_file a bool (Jeff Layton) [976876]
-- [fs] locks: comment cleanups and clarifications (Jeff Layton) [976876]
-- [fs] locks: make generic_add_lease and generic_delete_lease static (Jeff Layton) [976876]
-- [fs] cifs: use posix_unblock_lock instead of locks_delete_block (Jeff Layton) [976876]
-- [fs] locks: drop the unused filp argument to posix_unblock_lock (Jeff Layton) [976876]
-- [scsi] ipr: IOA Status Code(IOASC) update (Steve Best) [731129]
-- [scsi] ipr: qc_fill_rtf() method should not store alternate status register (Steve Best) [731129]
-- [scsi] ipr: possible irq lock inversion dependency detected (Steve Best) [731129]
-- [fs] nfsd: when dentry_open returns an error do not propagate as struct file (Steve Dickson) [987090]
-- [net] sunrpc: underflow issue in decode_write_list() (Steve Dickson) [987090]
-- [fs] nfsd: fix minorversion support interface (Steve Dickson) [987090]
-- [fs] lockd: protect nlm_blocked access in nlmsvc_retry_blocked (Steve Dickson) [987090]
-- [fs] nfsd: support minorversion 1 by default (Steve Dickson) [987090]
-- [fs] nfsd: allow destroy_session over destroyed session (Steve Dickson) [987090]
-- [net] sunrpc: fix failures to handle -1 uid's (Steve Dickson) [987090]
-- [net] sunrpc: Don't schedule an upcall on a replaced cache entry (Steve Dickson) [987090]
-- [net] sunrpc: xpt_auth_cache should be ignored when expired (Steve Dickson) [987090]
-- [net] sunrpc/cache: ensure items removed from cache do not have pending upcalls (Steve Dickson) [987090]
-- [net] sunrpc/cache: use cache_fresh_unlocked consistently and correctly (Steve Dickson) [987090]
-- [net] sunrpc/cache: remove races with queuing an upcall (Steve Dickson) [987090]
-- [fs] nfsd: return delegation immediately if lease fails (Steve Dickson) [987090]
-- [fs] nfsd: do not throw away 4.1 lock state on last unlock (Steve Dickson) [987090]
-- [fs] nfsd: delegation-based open reclaims should bypass permissions (Steve Dickson) [987090]
-- [net] sunrpc: don't error out on small tcp fragment (Steve Dickson) [987090]
-- [net] sunrpc: fix handling of too-short rpc's (Steve Dickson) [987090]
-- [fs] nfsd: minor read_buf cleanup (Steve Dickson) [987090]
-- [fs] nfsd: fix decoding of compounds across page boundaries (Steve Dickson) [987090]
-- [fs] nfsd: clean up nfs4_open_delegation (Steve Dickson) [987090]
-- [fs] nfsd: Don't give out read delegations on creates (Steve Dickson) [987090]
-- [fs] nfsd: allow client to send no cb_sec flavors (Steve Dickson) [987090]
-- [fs] nfsd: fail attempts to request gss on the backchannel (Steve Dickson) [987090]
-- [fs] nfsd: implement minimal SP4_MACH_CRED (Steve Dickson) [987090]
-- [net] sunrpc: store gss mech in svc_cred (Steve Dickson) [987090]
-- [net] sunrpc: introduce init_svc_cred (Steve Dickson) [987090]
-- [fs] nfsd: avoid undefined signed overflow (Steve Dickson) [987090]
-- [net] sunrpc: the cache_detail in cache_is_valid is unused any more (Steve Dickson) [987090]
-- [net] sunrpc: server back channel needs no rpcbind method (Steve Dickson) [987090]
-- [fs] nfsd: fix compile in !CONFIG_NFSD_V4_SECURITY_LABEL case (Steve Dickson) [987090]
-- [fs] nfsd: Server implementation of MAC Labeling (Steve Dickson) [987090]
-- [fs] nfsd: Add NFS v4.2 support to the NFS server (Steve Dickson) [987090]
-- [security] fix cap_inode_getsecctx returning garbage (Steve Dickson) [987090]
-- [fs] nfsd: store correct client minorversion for >=4.2 (Steve Dickson) [987090]
-- [fs] nfsd: get rid of the unused functions in vfs (Steve Dickson) [987090]
-- [fs] nfs: Fix brainfart in attribute length calculation (Steve Dickson) [987090]
-- [fs] nfs: Fix a regression against the FreeBSD server (Steve Dickson) [987090]
-- [net] sunrpc/rpc_pipe: rpc_dir_inode_operations can be static (Steve Dickson) [987090]
-- [fs] nfs: Allow nfs_updatepage to extend a write under additional circumstances (Steve Dickson) [987090]
-- [fs] nfs: Make nfs_readdir revalidate less often (Steve Dickson) [987090]
-- [fs] nfs: Make nfs_attribute_cache_expired() non-static (Steve Dickson) [987090]
-- [net] sunrpc/rpc_pipe: set dentry operations at d_alloc time (Steve Dickson) [987090]
-- [fs] nfs: set verifier on existing dentries in nfs_prime_dcache (Steve Dickson) [987090]
-- [fs] nfs: Set NFS_CS_MIGRATION for NFSv4 mounts (Steve Dickson) [987090]
-- [fs] nfs: Refactor nfs4_init_session and nfs4_init_channel_attrs (Steve Dickson) [987090]
-- [fs] nfs: use pnfs_device maxcount for the objectlayout gdia_maxcount (Steve Dickson) [987090]
-- [fs] nfs: use pnfs_device maxcount for the blocklayout gdia_maxcount (Steve Dickson) [987090]
-- [fs] nfs: Fix gdia_maxcount calculation to fit in ca_maxresponsesize (Steve Dickson) [987090]
-- [fs] nfs: Improve legacy idmapping fallback (Steve Dickson) [987090]
-- [fs] nfs: end back channel session draining (Steve Dickson) [987090]
-- [fs] nfs: Apply v4.1 capabilities to v4.2 (Steve Dickson) [987090]
-- [fs] nfs: Clean up layout segment comparison helper names (Steve Dickson) [987090]
-- [fs] nfs: layout segment comparison helpers should take 'const' parameters (Steve Dickson) [987090]
-- [fs] nfs: Move the DNS resolver into the NFSv4 module (Steve Dickson) [987090]
-- [net] sunrpc/rpc_pipefs: only set rpc_dentry_ops if d_op isn't already set (Steve Dickson) [987090]
-- [fs] nfs: SETCLIENTID add the format string for the NETID (Steve Dickson) [987090]
-- [fs] nfs: Add in v4.2 callback operation (Steve Dickson) [987090]
-- [fs] nfs: Make callbacks minor version generic (Steve Dickson) [987090]
-- [fs] nfs: Add Kconfig entry for Labeled NFS V4 client (Steve Dickson) [987090]
-- [fs] nfs: Extend NFS xattr handlers to accept the security namespace (Steve Dickson) [987090]
-- [fs] nfs: Client implementation of Labeled-NFS (Steve Dickson) [987090]
-- [fs] nfs: Add label lifecycle management (Steve Dickson) [987090]
-- [fs] nfs: Add labels to client function prototypes (Steve Dickson) [987090]
-- [fs] nfs: Extend fattr bitmaps to support all 3 words (Steve Dickson) [987090]
-- [fs] nfs: Introduce new label structure (Steve Dickson) [987090]
-- [fs] nfs: Add label recommended attribute and NFSv4 flags (Steve Dickson) [987090]
-- [fs] nfs: Added NFS v4.2 support to the NFS client (Steve Dickson) [987090]
-- [security] selinux: Add new labeling type native labels (Steve Dickson) [987090]
-- [security] lsm: Add flags field to security_sb_set_mnt_opts for in kernel mount data (Steve Dickson) [987090]
-- [security] Add Hook to test if the particular xattr is part of a MAC model (Steve Dickson) [987090]
-- [security] Add hook to calculate context based on a negative dentry (Steve Dickson) [987090]
-- [fs] nfs: Close another NFSv4 recovery race (Steve Dickson) [987090]
-- [fs] nfs: Move dentry instantiation into the NFSv4-specific atomic open code (Steve Dickson) [987090]
-- [fs] nfs: Refactor _nfs4_open_and_get_state to set ctx->state (Steve Dickson) [987090]
-- [fs] nfs: pass the nfs_open_context to nfs4_do_open (Steve Dickson) [987090]
-- [fs] nfs: Remove redundant check for FMODE_EXEC in nfs_finish_open (Steve Dickson) [987090]
-- [net] sunrpc: Remove redundant call to rpc_set_running() in __rpc_execute() (Steve Dickson) [987090]
-- [net] sunrpc: Remove unused functions rpc_task_set/has_priority (Steve Dickson) [987090]
-- [net] sunrpc: Remove the unused helpers task_for_each() and task_for_first() (Steve Dickson) [987090]
-- [net] sunrpc: Remove unused function rpc_queue_empty (Steve Dickson) [987090]
-- [net] sunrpc: Fix a potential race in rpc_execute (Steve Dickson) [987090]
-- [fs] nfs: Simplify setting the layout header credential (Steve Dickson) [987090]
-- [fs] nfs: Enable state protection (Steve Dickson) [987090]
-- [fs] nfs: Use layout credentials for get_deviceinfo calls (Steve Dickson) [987090]
-- [fs] nfs: Ensure that test_stateid and free_stateid use correct credentials (Steve Dickson) [987090]
-- [fs] nfs: Ensure that reclaim_complete uses the right credential (Steve Dickson) [987090]
-- [fs] nfs: Ensure that layoutreturn uses the correct credential (Steve Dickson) [987090]
-- [fs] nfs: Ensure that layoutget is called using the layout credential (Steve Dickson) [987090]
-- [fs] nfs: Add NFSv4.2 protocol constants (Steve Dickson) [987090]
-
-* Fri Aug 02 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-5.el7]
-- [fs] cifs: fix bad error handling in crypto code (Jeff Layton) [988398]
-- [fs] cifs: Fix a deadlock when a file is reopened (Sachin Prabhu) [988398]
-- [fs] cifs: Reopen the file if reconnect durable handle failed (Sachin Prabhu) [988398]
-- [fs] cifs: Fix minor endian error in durable handle patch series (Sachin Prabhu) [988398]
-- [fs] cifs: Reconnect durable handles for SMB2 (Sachin Prabhu) [988398]
-- [fs] cifs: Make SMB2_open use cifs_open_parms struct (Sachin Prabhu) [988398]
-- [fs] cifs: Introduce cifs_open_parms struct (Sachin Prabhu) [988398]
-- [fs] cifs: Request durable open for SMB2 opens (Sachin Prabhu) [988398]
-- [fs] cifs: Simplify SMB2 create context handling (Sachin Prabhu) [988398]
-- [fs] cifs: Simplify SMB2_open code path (Sachin Prabhu) [988398]
-- [fs] cifs: Respect create_options in smb2_open_file (Sachin Prabhu) [988398]
-- [fs] cifs: Fix lease context buffer parsing (Sachin Prabhu) [988398]
-- [fs] cifs: use sensible file nlink values if unprovided (Sachin Prabhu) [988398]
-- [fs] cifs: Limit allocation of crypto mechanisms to dialect which requires (Sachin Prabhu) [988398]
-- [fs] cifs: Don't pass inode to ->d_hash() and ->d_compare() (Sachin Prabhu) [988398]
-- [fs] cifs: fill TRANS2_QUERY_FILE_INFO ByteCount fields (Sachin Prabhu) [988398]
-- [fs] cifs: fix SMB2 signing enablement in cifs_enable_signing (Sachin Prabhu) [988398]
-- [fs] cifs: Fix build warning (Sachin Prabhu) [988398]
-- [fs] cifs: SMB3 Signing enablement (Sachin Prabhu) [988398]
-- [fs] cifs: Do not set DFS flag on SMB2 open (Sachin Prabhu) [988398]
-- [fs] cifs: fix static checker warning (Sachin Prabhu) [988398]
-- [fs] cifs: try to handle the MUST SecurityFlags sanely (Sachin Prabhu) [988398]
-- [fs] cifs: When server doesn't provide SecurityBuffer on SMB2Negotiate pick default (Sachin Prabhu) [988398]
-- [fs] cifs: Handle big endianness in NTLM (ntlmv2) authentication (Sachin Prabhu) [988398]
-- [fs] cifs: revalidate directories instiantiated via FIND_* in order to handle DFS referrals (Sachin Prabhu) [988398]
-- [fs] cifs: SMB2 FSCTL and IOCTL worker function (Sachin Prabhu) [988398]
-- [fs] cifs: Charge at least one credit, if server says that it supports multicredit (Sachin Prabhu) [988398]
-- [fs] cifs: Remove typo (Sachin Prabhu) [988398]
-- [fs] cifs: Some missing share flags (Sachin Prabhu) [988398]
-- [fs] cifs: using strlcpy instead of strncpy (Sachin Prabhu) [988398]
-- [fs] cifs: Update headers to update various SMB3 ioctl definitions (Sachin Prabhu) [988398]
-- [fs] cifs: Update cifs version number (Sachin Prabhu) [988398]
-- [fs] cifs: Add ability to dipslay SMB3 share flags and capabilities for debugging (Sachin Prabhu) [988398]
-- [fs] cifs: Add some missing SMB3 and SMB3.02 flags (Sachin Prabhu) [988398]
-- [fs] cifs: Add SMB3.02 dialect support (Sachin Prabhu) [988398]
-- [fs] cifs: Fix endian error in SMB2 protocol negotiation (Sachin Prabhu) [988398]
-- [fs] cifs: clean up the SecurityFlags write handler (Sachin Prabhu) [988398]
-- [fs] cifs: update the default global_secflags to include "raw" NTLMv2 (Sachin Prabhu) [988398]
-- [fs] move sectype to the cifs_ses instead of TCP_Server_Info (Sachin Prabhu) [988398]
-- [fs] cifs: track the enablement of signing in the TCP_Server_Info (Sachin Prabhu) [988398]
-- [fs] add new fields to smb_vol to track the requested security flavor (Sachin Prabhu) [988398]
-- [fs] cifs: add new fields to cifs_ses to track requested security flavor (Sachin Prabhu) [988398]
-- [fs] cifs: track the flavor of the NEGOTIATE reponse (Sachin Prabhu) [988398]
-- [fs] cifs: add new "Unspecified" securityEnum value (Sachin Prabhu) [988398]
-- [fs] cifs: factor out check for extended security bit into separate function (Sachin Prabhu) [988398]
-- [fs] cifs: move handling of signed connections into separate function (Sachin Prabhu) [988398]
-- [fs] cifs: break out lanman NEGOTIATE handling into separate function (Sachin Prabhu) [988398]
-- [fs] cifs: break out decoding of security blob into separate function (Sachin Prabhu) [988398]
-- [fs] cifs: remove the cifs_ses->flags field (Sachin Prabhu) [988398]
-- [fs] cifs: throw a warning if negotiate or sess_setup ops are passed NULL server or session pointers (Sachin Prabhu) [988398]
-- [fs] cifs: make decode_ascii_ssetup void return (Sachin Prabhu) [988398]
-- [fs] cifs: remove useless memset in LANMAN auth code (Sachin Prabhu) [988398]
-- [fs] cifs: remove protocolEnum definition (Sachin Prabhu) [988398]
-- [fs] cifs: add a "nosharesock" mount option to force new sockets to server to be created (Sachin Prabhu) [988398]
-- [fs] fuse: readdirplus cleanup (Niels de Vos) [988312]
-- [fs] fuse: readdirplus change attributes once (Niels de Vos) [988312]
-- [fs] fuse: readdirplus fix instantiate (Niels de Vos) [988312]
-- [fs] fuse: readdirplus sanity checks (Niels de Vos) [988312]
-- [fs] fuse: fix readdirplus dentry leak (Niels de Vos) [988312]
-- [powerpc] hw_brk: Fix off by one error when validating DAWR region end (Steve Best) [843485]
-- [powerpc] hw_brk: Fix clearing of extraneous IRQ (Steve Best) [843485]
-- [powerpc] hw_brk: Fix setting of length for exact mode breakpoints (Steve Best) [843485]
-- [powerpc] perf: Add power8 EBB support (Steve Best) [969176]
-- [powerpc] perf: Core EBB support for 64-bit book3s (Steve Best) [969176]
-- [powerpc] perf: Don't enable if we have zero events (Steve Best) [969176]
-- [powerpc] powerpc/perf: Use existing out label in power_pmu_enable() (Steve Best) [969176]
-- [powerpc] perf: Freeze PMC5/6 if we're not using them (Steve Best) [969176]
-- [powerpc] powerpc/perf: Rework disable logic in pmu_disable() (Steve Best) [969176]
-- [powerpc] perf: Check that events only include valid bits on Power8 (Steve Best) [969176]
-- [ipc] sem: rename try_atomic_semop() to perform_atomic_semop(), docu update (Rik van Riel) [881820]
-- [ipc] sem: replace shared sem_otime with per-semaphore value (Rik van Riel) [881820]
-- [ipc] sem: always use only one queue for alter operations (Rik van Riel) [881820]
-- [ipc] sem: separate wait-for-zero and alter tasks into seperate queues (Rik van Riel) [881820]
-- [ipc] sem: cacheline align the semaphore structures (Rik van Riel) [881820]
-- [fs] gfs2: Add atomic_open support (Steven Whitehouse) [983098]
-- [fs] gfs2: Only do one directory search on create (Steven Whitehouse) [983098]
-- [fs] pstore: Add hsize argument in write_buf call of pstore_ftrace_call (Steve Best) [947161]
-- [powerpc] pseries: Support compression of oops text via pstore (Steve Best) [947161]
-- [powerpc] pseries: Re-organise the oops compression code (Steve Best) [947161]
-- [powerpc] pstore: Pass header size in the pstore write callback (Steve Best) [947161]
-- [powerpc] pseries: Read common partition via pstore (Steve Best) [947161]
-- [powerpc] pseries: Read of-config partition via pstore (Steve Best) [947161]
-- [powerpc] pseries: Distinguish between a os-partition and non-os partition (Steve Best) [947161]
-- [powerpc] pseries: Read rtas partition via pstore (Steve Best) [947161]
-- [powerpc] pseries: Read/Write oops nvram partition via pstore (Steve Best) [947161]
-- [powerpc] pseries: Introduce generic read function to read nvram-partitions (Steve Best) [947161]
-- [powerpc] pseries: Add version and timestamp to oops header (Steve Best) [947161]
-- [powerpc] pseries: Remove syslog prefix in uncompressed oops text (Steve Best) [947161]
-
-* Wed Jul 31 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-4.el7]
-- [x86] signals: Merge EFLAGS bit clearing into a single statement (Jiri Olsa) [986216]
-- [x86] signals: Clear RF EFLAGS bit for signal handler (Jiri Olsa) [986216]
-- [x86] signals: Propagate RF EFLAGS bit through the signal restore call (Jiri Olsa) [986216]
-- [kernel] perf: Fix perf_lock_task_context() vs RCU (Jiri Olsa) [986216]
-- [kernel] perf: Remove WARN_ON_ONCE() check in __perf_event_enable() for valid scenario (Jiri Olsa) [986216]
-- [kernel] perf: Clone child context from parent context pmu (Jiri Olsa) [986216]
-- [kernel] perf: Fix interrupt handler timing harness (Jiri Olsa) [986216]
-- [kernel] perf: Drop sample rate when sampling is too slow (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Introduce "struct bp_cpuinfo" (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Simplify *register_wide_hw_breakpoint() (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Introduce cpumask_of_bp() (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Simplify the "weight" usage in toggle_bp_slot() paths (Jiri Olsa) [986216]
-- [kernel] hw_breakpoint: Simplify list/idx mess in toggle_bp_slot() paths (Jiri Olsa) [986216]
-- [kernel] perf: Add simple Haswell PMU support (Jiri Olsa) [986216]
-- [kernel] perf: Add const qualifier to perf_pmu_register's 'name' arg (Jiri Olsa) [986216]
-- [kernel] perf: Fix hypervisor branch sampling permission check (Jiri Olsa) [986216]
-- [kernel] perf: Check branch sampling priv level in generic code (Jiri Olsa) [986216]
-- [kernel] perf: Add sysfs entry to adjust multiplexing interval per PMU (Jiri Olsa) [986216]
-- [kernel] perf: Use hrtimers for event multiplexing (Jiri Olsa) [986216]
-- [kernel] perf: Fix hw breakpoints overflow period sampling (Jiri Olsa) [986216]
-- [tools] perf/tests: Check proper prev_state size for sched_switch tp (Jiri Olsa) [984998]
-- [tools] perf/tests: Omit end of the symbol check failure for test 1 (Jiri Olsa) [984998]
-- [tools] perf/script: Fix broken include in Context.xs (Jiri Olsa) [984998]
-- [tools] perf: Fix -ldw/-lelf link test when static linking (Jiri Olsa) [984998]
-- [tools] perf: Fix perf version generation (Jiri Olsa) [984998]
-- [tools] perf/stat: Fix per-socket output bug for uncore events (Jiri Olsa) [984998]
-- [tools] perf/symbols: Fix vdso list searching (Jiri Olsa) [984998]
-- [tools] perf/evsel: Fix missing increment in sample parsing (Jiri Olsa) [984998]
-- [tools] perf: Update symbol_conf.nr_events when processing attribute events (Jiri Olsa) [984998]
-- [tools] perf: Fix new_term() missing free on error path (Jiri Olsa) [984998]
-- [tools] perf: Fix parse_events_terms() segfault on error path (Jiri Olsa) [984998]
-- [tools] perf/evsel: Fix count parameter to read call in event_format__new (Jiri Olsa) [984998]
-- [tools] perf: Fix -x/--exclude-other option for report command (Jiri Olsa) [984998]
-- [tools] perf/evlist: Enhance perf_evlist__start_workload() (Jiri Olsa) [984998]
-- [tools] perf/record: Remove -f/--force option (Jiri Olsa) [984998]
-- [tools] perf/record: Remove -A/--append option (Jiri Olsa) [984998]
-- [tools] perf/stat: Avoid sending SIGTERM to random processes (Jiri Olsa) [984998]
-- [tools] perf: Include termios.h explicitly (Jiri Olsa) [984998]
-- [tools] perf/bench: Fix memory allocation fail check in mem{set, cpy} workloads (Jiri Olsa) [984998]
-- [tools] perf: Fix build errors with O and DESTDIR make vars set (Jiri Olsa) [984998]
-- [tools] perf: Fix output directory of Documentation/ (Jiri Olsa) [984998]
-- [tools] perf: Get only verbose output with V=1 (Jiri Olsa) [984998]
-- [tools] perf: Add missing liblk.a dependency for python/perf.so (Jiri Olsa) [984998]
-- [tools] perf: Remove '?=' Makefile STRIP assignment (Jiri Olsa) [984998]
-- [tools] perf: Replace multiple line assignment with multiple statements (Jiri Olsa) [984998]
-- [tools] perf: Replace tabs with spaces for all non-commands statements (Jiri Olsa) [984998]
-- [tools] perf: Add NO_BIONIC variable to confiure bionic setup (Jiri Olsa) [984998]
-- [tools] perf: Switch to full path C include directories (Jiri Olsa) [984998]
-- [tools] perf: Merge all *LDFLAGS* make variable into LDFLAGS (Jiri Olsa) [984998]
-- [tools] perf: Merge all *CFLAGS* make variable into CFLAGS (Jiri Olsa) [984998]
-- [tools] perf/evlist: Reset SIGTERM handler in workload child process (Jiri Olsa) [984998]
-- [tools] perf: Remove cwdlen from struct perf_session (Jiri Olsa) [984998]
-- [tools] perf: Remove frozen from perf_header struct (Jiri Olsa) [984998]
-- [tools] perf/tests: Fix exclude_guest|exclude_host checking for attr tests (Jiri Olsa) [984998]
-- [tools] perf/tests: Fix attr test for record -d option (Jiri Olsa) [984998]
-- [tools] perf: Final touches for CHK config move (Jiri Olsa) [984998]
-- [tools] perf: Move paths config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libnuma check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move stdlib check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libbfd check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libpython check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libperl check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move gtk2 check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move slang check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libaudit check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libunwind check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libdw check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move libelf check config into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move compiler and linker flags check into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move programs check into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Move arch check into config/Makefile (Jiri Olsa) [984998]
-- [tools] perf: Add automated make test suite (Jiri Olsa) [984998]
-- [tools] perf: Save parent pid in thread struct (Jiri Olsa) [984998]
-- [tools] perf/stats: Fix divide by 0 in variance (Jiri Olsa) [984998]
-- [tools] perf/kvm: Handle realloc failures (Jiri Olsa) [984998]
-- [tools] perf/evsel: Fix printing of perf_event_paranoid message (Jiri Olsa) [984998]
-- [tools] perf/test: Fix typo (Jiri Olsa) [984998]
-- [tools] perf/hists: Rename hist_entry__add_pair arguments (Jiri Olsa) [984998]
-- [tools] perf/diff: Use internal rb tree for hists__precompute (Jiri Olsa) [984998]
-- [tools] perf/report: Add report.percent-limit config variable (Jiri Olsa) [984998]
-- [tools] perf/top: Add --percent-limit option (Jiri Olsa) [984998]
-- [tools] perf/report: Add --percent-limit option (Jiri Olsa) [984998]
-- [tools] perf/report: Don't bother locking when adding hist entries (Jiri Olsa) [984998]
-- [tools] perf/hists: Move locking to its call-sites (Jiri Olsa) [984998]
-- [tools] perf/top: Get rid of *_threaded() functions (Jiri Olsa) [984998]
-- [tools] perf/top: Fix percent output when no samples collected (Jiri Olsa) [984998]
-- [tools] perf/top: Fix -E option behavior (Jiri Olsa) [984998]
-- [tools] perf/record: handle death by SIGTERM (Jiri Olsa) [984998]
-- [tools] perf: Handle JITed code in shared memory (Jiri Olsa) [984998]
-- [tools] perf/tests: Fix compile errors in bp_signal files (Jiri Olsa) [984998]
-- [tools] perf: Fix tab vs spaces issue in Makefile ifdef/endif (Jiri Olsa) [984998]
-- [tools] perf/hists browser: Use sort__has_sym (Jiri Olsa) [984998]
-- [tools] perf/top: Use sort__has_sym (Jiri Olsa) [984998]
-- [tools] perf/sort: Cleanup sort__has_sym setting (Jiri Olsa) [984998]
-- [tools] perf/sort: Reorder HISTC_SRCLINE index (Jiri Olsa) [984998]
-- [tools] perf/archive: Fix typo on Documentation (Jiri Olsa) [984998]
-- [tools] perf/sort: Consolidate sort_entry__setup_elide() (Jiri Olsa) [984998]
-- [tools] perf/sort: Separate out memory-specific sort keys (Jiri Olsa) [984998]
-- [tools] perf/sort: Factor out common code in sort_dimension__add() (Jiri Olsa) [984998]
-- [tools] perf/sort: Introduce sort__mode variable (Jiri Olsa) [984998]
-- [tools] perf/report: Fix alignment of symbol column when -v is given (Jiri Olsa) [984998]
-- [tools] perf/hists: Free unused mem info of a matched hist entry (Jiri Olsa) [984998]
-- [tools] perf/hists: Fix an invalid memory free on he->branch_info (Jiri Olsa) [984998]
-- [tools] perf: Fix bug in isupper() and islower() (Jiri Olsa) [984998]
-- [mm] thp: define HPAGE_PMD_* constants as BUILD_BUG() if !THP (Steve Best) [947166]
-- [powerpc] mm: Fix build warnings with CONFIG_TRANSPARENT_HUGEPAGE disabled (Steve Best) [947166]
-- [powerpc] mm: Optimize hugepage invalidate (Steve Best) [947166]
-- [powerpc] thp: Enable THP on PPC64 (Steve Best) [947166]
-- [powerpc] mm: split hugepage when using subpage protection (Steve Best) [947166]
-- [powerpc] mm: disable assert_pte_locked for collapse_huge_page (Steve Best) [947166]
-- [powerpc] mm: Prevent gcc to re-read the pagetables (Steve Best) [947166]
-- [powerpc] mm: Make linux pagetable walk safe with THP enabled (Steve Best) [947166]
-- [powerpc] thp: Add code to handle HPTE faults for hugepages (Steve Best) [947166]
-- [powerpc] mm: Update gup_pmd_range to handle transparent hugepages (Steve Best) [947166]
-- [powerpc] kvm: Handle transparent hugepage in KVM (Steve Best) [947166]
-- [powerpc] mm: Replace find_linux_pte with find_linux_pte_or_hugepte (Steve Best) [947166]
-- [powerpc] mm: Update find_linux_pte_or_hugepte to handle transparent hugepages (Steve Best) [947166]
-- [powerpc] mm: move find_linux_pte_or_hugepte and gup_hugepte to common code (Steve Best) [947166]
-- [powerpc] thp: Implement transparent hugepages for ppc64 (Steve Best) [947166]
-- [powerpc] thp: Double the PMD table size for THP (Steve Best) [947166]
-- [powerpc] mm: handle hugepage size correctly when invalidating hpte entries (Steve Best) [947166]
-- [mm] thp: deposit the transpare huge pgtable before set_pmd (Steve Best) [947166]
-- [mm] thp: don't use HPAGE_SHIFT in transparent hugepage code (Steve Best) [947166]
-- [mm] thp: withdraw the pgtable after pmdp related operations (Steve Best) [947166]
-- [mm] thp: add pmd args to pgtable deposit and withdraw APIs (Steve Best) [947166]
-- [mm] thp: use the correct function when updating access flags (Steve Best) [947166]
-
-* Fri Jul 26 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-3.el7]
-- [powerpc] mm/numa: Do not update sysfs cpu registration from invalid context (Steve Best) [967447]
-- [misc] MAINTAINERS: Add ACPI folks for ACPI-related things under drivers/pci (Myron Stowe) [984759]
-- [pci] Add CircuitCo vendor ID and subsystem ID (Myron Stowe) [984759]
-- [pci] Use pdev->pm_cap instead of pci_find_capability(.., PCI_CAP_ID_PM) (Myron Stowe) [984759]
-- [pci] Return early on allocation failures to unindent mainline code (Myron Stowe) [984759]
-- [pci] Simplify IOV implementation and fix reference count races (Myron Stowe) [984759]
-- [pci] Drop redundant setting of bus->is_added in virtfn_add_bus() (Myron Stowe) [984759]
-- [pci] pci-acpi: Use correct power state strings in messages (Myron Stowe) [984759]
-- [pci] Fix comment typo for pcie_pme_remove() (Myron Stowe) [984759]
-- [pci] Rename pci_release_bus_bridge_dev() to pci_release_host_bridge_dev() (Myron Stowe) [984759]
-- [pci] Fix refcount issue in pci_create_root_bus() error recovery path (Myron Stowe) [984759]
-- [pci] Convert alloc_pci_dev(void) to pci_alloc_dev(bus) (Myron Stowe) [984759]
-- [pci] Hide remove and rescan sysfs interfaces for SR-IOV virtual functions (Myron Stowe) [984759]
-- [pci] Add pcibios_release_device() (Myron Stowe) [984759]
-- [iommu] irq_remapping: Conserve interrupt resources when using multiple-MSIs (Myron Stowe) [984759]
-- [i2c] i2c-piix4: Add AMD CZ SMBus device ID (Myron Stowe) [984759]
-- [ata] ahci: Add AMD CZ SATA device ID (Myron Stowe) [984759]
-- [pci] Put Hudson-2 device IDs together (Myron Stowe) [984759]
-- [pci] Replace strict_strtoul() with kstrtoul() (Myron Stowe) [984759]
-- [pci] Finish SR-IOV VF setup before adding the device (Myron Stowe) [984759]
-- [pci] Fix comment typo for PCI_EXP_LNKCAP_CLKPM (Myron Stowe) [984759]
-- [acpi] pci_root: Use dev_printk(), acpi_handle_print(), pr_xxx() when possible (Myron Stowe) [984759]
-- [acpi] pci_root: Remove unused global list acpi_pci_roots (Myron Stowe) [984759]
-- [acpi] pci_root: Introduce "handle" local for economy of expression (Myron Stowe) [984759]
-- [acpi] pci_root: Combine duplicate adjacent "if" tests (Myron Stowe) [984759]
-- [pci] Allocate only as many MSI vectors as requested by driver (Myron Stowe) [984759]
-- [pci] Replace printks with appropriate pr_*() (Myron Stowe) [984759]
-- [pci] Fix kerneldoc for pci_disable_link_state() (Myron Stowe) [984759]
-- [x86] pci: Increase info->res_num before checking pci_use_crs (Myron Stowe) [984759]
-- [pci] Fix INTC comment typo for pci_swizzle_interrupt_pin() (Myron Stowe) [984759]
-- [pci] Convert ioapic.c to module_pci_driver (Myron Stowe) [984759]
-- [pci] Introduce pci_alloc_dev(struct pci_bus*) to replace alloc_pci_dev() (Myron Stowe) [984759]
-- [pci] Introduce pci_bus_{get|put}() to manage PCI bus reference count (Myron Stowe) [984759]
-- [pci] Unset resource if initial BAR value is invalid (Myron Stowe) [984759]
-- [pci] Consolidate calls to pcibios_bus_to_resource() in __pci_read_base() (Myron Stowe) [984759]
-- [pci] Add 0x prefix to BAR register position in __pci_read_base() (Myron Stowe) [984759]
-- [pci] aspm: Warn when driver asks to disable ASPM, but we can't do it (Myron Stowe) [984759]
-- [powerpc] pci: Use PCI_UNKNOWN for unknown power state (Myron Stowe) [984759]
-- [acpi] pci_root: Check acpi_resource_to_address64() return value (Myron Stowe) [984759]
-- [pci] Work around Ivytown NTB BAR size issue (Myron Stowe) [984759]
-- [net] sunrpc: Fix another issue with rpc_client_register() (Jeff Layton) [924649]
-- [net] sunrpc: Fix a deadlock in rpc_client_register() (Jeff Layton) [924649]
-- [net] sunrpc: PipeFS MOUNT notification optimization for dying clients (Jeff Layton) [924649]
-- [net] sunrpc: split client creation routine into setup and registration (Jeff Layton) [924649]
-- [net] sunrpc: fix races on PipeFS UMOUNT notifications (Jeff Layton) [924649]
-- [net] sunrpc: fix races on PipeFS MOUNT notifications (Jeff Layton) [924649]
-
-* Fri Jul 19 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-2.el7]
-- [scsi] sd: fix crash when UA received on DIF enabled device (Ewan Milne) [979440]
-- [md] dm-cache: add call to mark_tech_preview (Mike Snitzer) [982752]
-- [fs] nfs: have NFSv3 try server-specified auth flavors in turn (Jeff Layton) [977649]
-- [fs] nfs: have nfs_mount fake up a auth_flavs list when the server didn't provide it (Jeff Layton) [977649]
-- [fs] nfs: move server_authlist into nfs_try_mount_request (Jeff Layton) [977649]
-- [fs] nfs: refactor "need_mount" code out of nfs_try_mount (Jeff Layton) [977649]
-- [pci] ear: Reset link for devices below Root Port or Downstream Port (Myron Stowe) [797485]
-- [acpi] apei: Force fatal AER severity when component has been reset (Myron Stowe) [797485]
-- [pci] aer: Remove "extern" from function declarations (Myron Stowe) [797485]
-- [pci] aer: Move AER severity defines to aer.h (Myron Stowe) [797485]
-- [pci] aer: Set dev->__aer_firmware_first only for matching devices (Myron Stowe) [797485]
-- [pci] aer: Factor out HEST device type matching (Myron Stowe) [797485]
-- [pci] aer: Don't parse HEST table for non-PCIe devices (Myron Stowe) [797485]
-
-* Tue Jul 09 2013 Jarod Wilson <jarod@redhat.com> [3.10.0-1.el7]
-- [x86] fix !CONFIG_HYPERVISOR_GUEST compile (Andrew Jones)
-- [s390x] crash: Fuzzy live dump for Linux on System z (Hendrik Brueckner) [805120]
-- [xen] xenfv: fix hangs when kdumping (Andrew Jones) [845471]
-- [libata] export ata_port port_no attribute via /sys (David Milburn) [951181]
-- [s390x] kdump: Use 4 GiB for KEXEC_AUTO_THRESHOLD (Hendrik Brueckner) [953044]
-- [x86] hpet: allow user controlled mmap for user processes (Prarit Bhargava) [788727]
-- [mm] add memory tracking hooks (James Paradis) [725860]
-- [kernel] clocksource, fix !CONFIG_CLOCKSOURCE_WATCHDOG compile (Prarit Bhargava) [914709]
-- [x86] disable clocksource watchdog (Prarit Bhargava) [914709]
-- [kdump] x86, fix kdump and unsupported HW check (Prarit Bhargava) [923256]
-- [x86] support single cpu on guests only (Prarit Bhargava) [873806]
-- [kernel] Mark power5, power6, !Intel, and !AMD systems as unsupported (Prarit Bhargava) [870129]
-- [kernel] Backport RH specific TAINT flags (Prarit Bhargava) [870129]
-- [s390x] zfcpdump: Add user space tool (Hendrik Brueckner) [825189]
-- [kdump] crashkernel=auto fixes and cleanup (Dave Young) [804077]
-- [fedora] /dev/crash driver (Kyle McMartin) [808839]
-- [kdump] forward port crashkernel auto reservation code (Dave Young) [804077]
-- [block] Change scheduler to CFQ for ATA/SATA (Vivek Goyal) [811016]
-- [kernel] kbuild: AFTER_LINK (Roland McGrath)
-- [ppc64] disable INFINIBAND_EHCA temporarily, it ftbfs (Kyle McMartin)
-- [kernel] Add RHEL_{MAJOR,MINOR,RELEASE} to top level Makefile (Kyle McMartin)
-
-* Mon Jun 03 2013 Kyle McMartin <kyle@redhat.com>
-- Trimmed changelog for rhel7.git, see rhpkg git for earlier history.
-
-###
-# The following Emacs magic makes C-c C-e use UTC dates.
-# Local Variables:
-# rpm-change-log-uses-utc: t
-# End:
-###
diff --git a/kernel-source/thirdparty/kernel/SOURCES/1000-Debrand-specific-Red-Hat-messages.patch b/kernel-source/thirdparty/kernel/SOURCES/1000-Debrand-specific-Red-Hat-messages.patch
new file mode 100644
index 0000000..c1e5d13
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/1000-Debrand-specific-Red-Hat-messages.patch
@@ -0,0 +1,53 @@
+From 3bd763f1f60094f9e6bb8908693f26a22cad1aeb Mon Sep 17 00:00:00 2001
+From: Louis Abel <label@rockylinux.org>
+Date: Wed, 20 Sep 2023 12:39:03 -0700
+Subject: [PATCH] Debrand specific Red Hat messages
+
+---
+ arch/x86/boot/main.c    | 2 +-
+ arch/x86/kernel/setup.c | 2 +-
+ init/main.c             | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/arch/x86/boot/main.c b/arch/x86/boot/main.c
+index 3c7f76dca..e56d37a80 100644
+--- a/arch/x86/boot/main.c
++++ b/arch/x86/boot/main.c
+@@ -152,7 +152,7 @@ void main(void)
+ 
+ 	/* Make sure we have all the proper CPU support */
+ 	if (validate_cpu()) {
+-		puts("This processor is not supported in this version of RHEL.\n");
++		puts("This processor is not supported in this version of Rocky Linux.\n");
+ 		die();
+ 	}
+ 
+diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
+index c07617bdc..39b6454f3 100644
+--- a/arch/x86/kernel/setup.c
++++ b/arch/x86/kernel/setup.c
+@@ -811,7 +811,7 @@ static void rh_check_supported(void)
+ 	if (((boot_cpu_data.x86_max_cores * smp_num_siblings) == 1) &&
+ 	    !guest && is_kdump_kernel()) {
+ 		pr_crit("Detected single cpu native boot.\n");
+-		pr_crit("Important:  In Red Hat Enterprise Linux 8, single threaded, single CPU 64-bit physical systems are unsupported by Red Hat. Please contact your Red Hat support representative for a list of certified and supported systems.");
++		pr_crit("Important:  In Rocky Linux 8, single threaded, single CPU 64-bit physical systems are unsupported.");
+ 	}
+ 
+ 	/*
+diff --git a/init/main.c b/init/main.c
+index 2db130110..1c69d9c1f 100644
+--- a/init/main.c
++++ b/init/main.c
+@@ -575,7 +575,7 @@ asmlinkage __visible void __init start_kernel(void)
+ 	page_alloc_init();
+ 
+ 	pr_notice("Kernel command line: %s\n", boot_command_line);
+-	pr_notice("Specific versions of hardware are certified with Red Hat Enterprise Linux 8. Please see the list of hardware certified with Red Hat Enterprise Linux 8 at https://catalog.redhat.com.\n");
++	pr_notice("Specific versions of hardware are certified with Enterprise Linux 8. Please see the list of hardware certified with Enterprise Linux 8 at the Red Hat catalog: https://catalog.redhat.com.\n");
+ 	/* parameters may set static keys */
+ 	jump_label_init();
+ 	parse_early_param();
+-- 
+2.41.0
+
diff --git a/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_aarch64 b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_aarch64
new file mode 100644
index 0000000..8191e07
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_aarch64
@@ -0,0 +1,728 @@
+0x8b469ec3	__alloc_disk_node	vmlinux	EXPORT_SYMBOL
+0xcbd52d53	__alloc_pages_nodemask	vmlinux	EXPORT_SYMBOL
+0x9b0236a9	__alloc_skb	vmlinux	EXPORT_SYMBOL
+0x43a53735	__alloc_workqueue_key	vmlinux	EXPORT_SYMBOL_GPL
+0x39b52d19	__bitmap_and	vmlinux	EXPORT_SYMBOL
+0xadfdfcef	__bitmap_andnot	vmlinux	EXPORT_SYMBOL
+0xf3e6402e	__bitmap_equal	vmlinux	EXPORT_SYMBOL
+0xbb35675b	__bitmap_intersects	vmlinux	EXPORT_SYMBOL
+0xa084749a	__bitmap_or	vmlinux	EXPORT_SYMBOL
+0x4df119fa	__bitmap_parse	vmlinux	EXPORT_SYMBOL
+0x63c4d61f	__bitmap_weight	vmlinux	EXPORT_SYMBOL
+0xf6fc8791	__bitmap_xor	vmlinux	EXPORT_SYMBOL
+0x88db9f48	__check_object_size	vmlinux	EXPORT_SYMBOL
+0x8c51cffa	__class_register	vmlinux	EXPORT_SYMBOL_GPL
+0xeae3dfd6	__const_udelay	vmlinux	EXPORT_SYMBOL
+0x5557784c	__cpu_online_mask	vmlinux	EXPORT_SYMBOL
+0x7f3ec02c	__cpu_possible_mask	vmlinux	EXPORT_SYMBOL
+0x229836e8	__cpu_present_mask	vmlinux	EXPORT_SYMBOL
+0x0e4ba049	__cpuhp_remove_state	vmlinux	EXPORT_SYMBOL
+0xf66a486e	__cpuhp_setup_state	vmlinux	EXPORT_SYMBOL
+0x466c14a7	__delay	vmlinux	EXPORT_SYMBOL
+0x9f37f868	__dev_kfree_skb_any	vmlinux	EXPORT_SYMBOL
+0xc149e3ae	__dynamic_dev_dbg	vmlinux	EXPORT_SYMBOL
+0x9b7fe4d4	__dynamic_pr_debug	vmlinux	EXPORT_SYMBOL
+0xd10c488b	__free_pages	vmlinux	EXPORT_SYMBOL
+0x93fca811	__get_free_pages	vmlinux	EXPORT_SYMBOL
+0x74be1b32	__init_rwsem	vmlinux	EXPORT_SYMBOL
+0xd9a5ea54	__init_waitqueue_head	vmlinux	EXPORT_SYMBOL
+0x6b4b2933	__ioremap	vmlinux	EXPORT_SYMBOL
+0x45a55ec8	__iounmap	vmlinux	EXPORT_SYMBOL
+0x0d542439	__ipv6_addr_type	vmlinux	EXPORT_SYMBOL
+0xd2b09ce5	__kmalloc	vmlinux	EXPORT_SYMBOL
+0x68f31cbd	__list_add_valid	vmlinux	EXPORT_SYMBOL
+0xe1537255	__list_del_entry_valid	vmlinux	EXPORT_SYMBOL
+0x0399a42c	__ll_sc___cmpxchg_case_acq_4	vmlinux	EXPORT_SYMBOL
+0xdbd1083c	__ll_sc___cmpxchg_case_mb_4	vmlinux	EXPORT_SYMBOL
+0xd06ae354	__ll_sc___cmpxchg_case_mb_8	vmlinux	EXPORT_SYMBOL
+0xa899153f	__ll_sc_atomic64_add	vmlinux	EXPORT_SYMBOL
+0x9e9183dc	__ll_sc_atomic64_add_return	vmlinux	EXPORT_SYMBOL
+0xe13a9d16	__ll_sc_atomic64_fetch_add	vmlinux	EXPORT_SYMBOL
+0xba195f7b	__ll_sc_atomic64_sub	vmlinux	EXPORT_SYMBOL
+0xcbe0d43a	__ll_sc_atomic64_sub_return	vmlinux	EXPORT_SYMBOL
+0x1f7386be	__ll_sc_atomic_add	vmlinux	EXPORT_SYMBOL
+0x7c97c8a4	__ll_sc_atomic_add_return	vmlinux	EXPORT_SYMBOL
+0x7dbe0931	__ll_sc_atomic_add_return_acquire	vmlinux	EXPORT_SYMBOL
+0xf9a3efb9	__ll_sc_atomic_sub	vmlinux	EXPORT_SYMBOL
+0xec2ac905	__ll_sc_atomic_sub_return	vmlinux	EXPORT_SYMBOL
+0x0b9f8dac	__ll_sc_atomic_sub_return_release	vmlinux	EXPORT_SYMBOL
+0x3c3fce39	__local_bh_enable_ip	vmlinux	EXPORT_SYMBOL
+0x0195aef5	__lock_page	vmlinux	EXPORT_SYMBOL
+0x7f1cf755	__mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
+0x0527514c	__module_get	vmlinux	EXPORT_SYMBOL
+0x7f02188f	__msecs_to_jiffies	vmlinux	EXPORT_SYMBOL
+0x9a76f11f	__mutex_init	vmlinux	EXPORT_SYMBOL
+0x9a7b4ad4	__napi_schedule	vmlinux	EXPORT_SYMBOL
+0xdf8c695a	__ndelay	vmlinux	EXPORT_SYMBOL
+0x802aa7db	__netdev_alloc_skb	vmlinux	EXPORT_SYMBOL
+0x46c47fb6	__node_distance	vmlinux	EXPORT_SYMBOL
+0x5cea2dd8	__page_file_index	vmlinux	EXPORT_SYMBOL_GPL
+0xea6e8390	__page_mapcount	vmlinux	EXPORT_SYMBOL_GPL
+0x6c81b48b	__pagevec_release	vmlinux	EXPORT_SYMBOL
+0x32047ad5	__per_cpu_offset	vmlinux	EXPORT_SYMBOL
+0x6128b5fc	__printk_ratelimit	vmlinux	EXPORT_SYMBOL
+0x4774c650	__pskb_pull_tail	vmlinux	EXPORT_SYMBOL
+0x7da02233	__put_cred	vmlinux	EXPORT_SYMBOL
+0xd031343e	__put_page	vmlinux	EXPORT_SYMBOL
+0xe8f74e3b	__put_task_struct	vmlinux	EXPORT_SYMBOL_GPL
+0x5a45d9ae	__register_chrdev	vmlinux	EXPORT_SYMBOL
+0xe45c1b14	__release_region	vmlinux	EXPORT_SYMBOL
+0x5eba9410	__request_region	vmlinux	EXPORT_SYMBOL
+0x5c282196	__scsi_execute	vmlinux	EXPORT_SYMBOL
+0x66cd09c7	__scsi_iterate_devices	vmlinux	EXPORT_SYMBOL
+0xa2b63590	__skb_gso_segment	vmlinux	EXPORT_SYMBOL
+0xdb7305a1	__stack_chk_fail	vmlinux	EXPORT_SYMBOL
+0xa6033f23	__task_pid_nr_ns	vmlinux	EXPORT_SYMBOL
+0x0faef0ed	__tasklet_schedule	vmlinux	EXPORT_SYMBOL
+0x9e7d6bd0	__udelay	vmlinux	EXPORT_SYMBOL
+0x6bc3fbc0	__unregister_chrdev	vmlinux	EXPORT_SYMBOL
+0xf1969a8e	__usecs_to_jiffies	vmlinux	EXPORT_SYMBOL
+0xad2831af	__vmalloc	vmlinux	EXPORT_SYMBOL
+0x3eeb2322	__wake_up	vmlinux	EXPORT_SYMBOL
+0xad27f361	__warn_printk	vmlinux	EXPORT_SYMBOL
+0xcf4fdd4d	_atomic_dec_and_lock	vmlinux	EXPORT_SYMBOL
+0xa1c76e0a	_cond_resched	vmlinux	EXPORT_SYMBOL
+0x11089ac7	_ctype	vmlinux	EXPORT_SYMBOL
+0xc8eee154	acpi_bus_get_device	vmlinux	EXPORT_SYMBOL
+0x1a45cb6c	acpi_disabled	vmlinux	EXPORT_SYMBOL
+0x4d2128b5	acpi_dma_configure	vmlinux	EXPORT_SYMBOL_GPL
+0x9f4f2aa3	acpi_gbl_FADT	vmlinux	EXPORT_SYMBOL
+0xeb7f6046	acpi_get_devices	vmlinux	EXPORT_SYMBOL
+0xaebd12f0	acpi_get_name	vmlinux	EXPORT_SYMBOL
+0x16cdc340	acpi_get_table	vmlinux	EXPORT_SYMBOL
+0xb5a8c226	acpi_gsi_to_irq	vmlinux	EXPORT_SYMBOL_GPL
+0xcfd30d71	acpi_os_map_memory	vmlinux	EXPORT_SYMBOL_GPL
+0x34331f04	acpi_os_unmap_memory	vmlinux	EXPORT_SYMBOL_GPL
+0xb423158f	acpi_register_gsi	vmlinux	EXPORT_SYMBOL_GPL
+0x7b5452b8	acpi_unregister_gsi	vmlinux	EXPORT_SYMBOL_GPL
+0x318f7969	add_timer	vmlinux	EXPORT_SYMBOL
+0x4afb2238	add_wait_queue	vmlinux	EXPORT_SYMBOL
+0xde293f9e	add_wait_queue_exclusive	vmlinux	EXPORT_SYMBOL
+0xe3ec2f2b	alloc_chrdev_region	vmlinux	EXPORT_SYMBOL
+0x1c8368f3	alloc_netdev_mqs	vmlinux	EXPORT_SYMBOL
+0xa6b529e3	alloc_pages_current	vmlinux	EXPORT_SYMBOL
+0x75fb9062	arch_timer_read_counter	vmlinux	EXPORT_SYMBOL_GPL
+0x25301bc6	arch_wb_cache_pmem	vmlinux	EXPORT_SYMBOL_GPL
+0x6dfb912f	arm64_const_caps_ready	vmlinux	EXPORT_SYMBOL
+0x2b9997fb	atomic_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
+0x7181db30	atomic_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xad73041f	autoremove_wake_function	vmlinux	EXPORT_SYMBOL
+0x60d2e8a3	bdev_read_only	vmlinux	EXPORT_SYMBOL
+0xc5f21f3f	bdevname	vmlinux	EXPORT_SYMBOL
+0xaf936abf	bdget	vmlinux	EXPORT_SYMBOL
+0x8c0136df	bdget_disk	vmlinux	EXPORT_SYMBOL
+0x141eee31	bdput	vmlinux	EXPORT_SYMBOL
+0xc4b0dcf0	bio_add_page	vmlinux	EXPORT_SYMBOL
+0x5724c23d	bio_alloc_bioset	vmlinux	EXPORT_SYMBOL
+0xf6c50e6f	bio_associate_blkg	vmlinux	EXPORT_SYMBOL_GPL
+0x54a4447e	bio_clone_fast	vmlinux	EXPORT_SYMBOL
+0xd86b0d0c	bio_endio	vmlinux	EXPORT_SYMBOL
+0xcbe2cda4	bio_free_pages	vmlinux	EXPORT_SYMBOL
+0x4747a3d6	bio_init	vmlinux	EXPORT_SYMBOL
+0x41484da4	bio_put	vmlinux	EXPORT_SYMBOL
+0xcf9561eb	bioset_exit	vmlinux	EXPORT_SYMBOL
+0xdbdab9a9	bioset_init	vmlinux	EXPORT_SYMBOL
+0x16e297c3	bit_wait	vmlinux	EXPORT_SYMBOL
+0x63a7c28c	bitmap_find_free_region	vmlinux	EXPORT_SYMBOL
+0x1b015d25	bitmap_parselist	vmlinux	EXPORT_SYMBOL
+0xf474c21c	bitmap_print_to_pagebuf	vmlinux	EXPORT_SYMBOL
+0x574c2e74	bitmap_release_region	vmlinux	EXPORT_SYMBOL
+0xe2f14ba9	blk_alloc_queue	vmlinux	EXPORT_SYMBOL
+0xd27b25dd	blk_check_plugged	vmlinux	EXPORT_SYMBOL
+0x4abe66a0	blk_cleanup_queue	vmlinux	EXPORT_SYMBOL
+0x1ff969ae	blk_execute_rq	vmlinux	EXPORT_SYMBOL
+0x6cbf8e65	blk_execute_rq_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0xf2215f74	blk_finish_plug	vmlinux	EXPORT_SYMBOL
+0xaacf3152	blk_get_request	vmlinux	EXPORT_SYMBOL
+0x772834f4	blk_mq_end_request	vmlinux	EXPORT_SYMBOL
+0x5581d32d	blk_mq_run_hw_queues	vmlinux	EXPORT_SYMBOL
+0xa0f8c280	blk_mq_tag_to_rq	vmlinux	EXPORT_SYMBOL
+0x124291d4	blk_mq_unique_tag	vmlinux	EXPORT_SYMBOL
+0x719e5134	blk_put_request	vmlinux	EXPORT_SYMBOL
+0x8ca80c86	blk_queue_bounce_limit	vmlinux	EXPORT_SYMBOL
+0xed647406	blk_queue_dma_alignment	vmlinux	EXPORT_SYMBOL
+0xe0bcf34a	blk_queue_flag_clear	vmlinux	EXPORT_SYMBOL
+0xc58a0b85	blk_queue_flag_set	vmlinux	EXPORT_SYMBOL
+0xbbd2e1ce	blk_queue_io_min	vmlinux	EXPORT_SYMBOL
+0xb30093dc	blk_queue_io_opt	vmlinux	EXPORT_SYMBOL
+0xe3cd98a7	blk_queue_logical_block_size	vmlinux	EXPORT_SYMBOL
+0x3e33328f	blk_queue_make_request	vmlinux	EXPORT_SYMBOL
+0x68e08d75	blk_queue_max_discard_sectors	vmlinux	EXPORT_SYMBOL
+0xd9ba548e	blk_queue_max_hw_sectors	vmlinux	EXPORT_SYMBOL
+0x65035d84	blk_queue_max_segment_size	vmlinux	EXPORT_SYMBOL
+0x37fbab6e	blk_queue_max_segments	vmlinux	EXPORT_SYMBOL
+0x113305e9	blk_queue_max_write_same_sectors	vmlinux	EXPORT_SYMBOL
+0x97e15431	blk_queue_physical_block_size	vmlinux	EXPORT_SYMBOL
+0xbb56a30a	blk_queue_rq_timeout	vmlinux	EXPORT_SYMBOL_GPL
+0xecbb63de	blk_queue_segment_boundary	vmlinux	EXPORT_SYMBOL
+0xe206de12	blk_queue_split	vmlinux	EXPORT_SYMBOL
+0xd3f6c29c	blk_queue_stack_limits	vmlinux	EXPORT_SYMBOL
+0xbcf0f929	blk_queue_update_dma_alignment	vmlinux	EXPORT_SYMBOL
+0x7741f54c	blk_queue_virt_boundary	vmlinux	EXPORT_SYMBOL
+0x8efcb061	blk_queue_write_cache	vmlinux	EXPORT_SYMBOL_GPL
+0x77752be5	blk_rq_append_bio	vmlinux	EXPORT_SYMBOL
+0x0951910c	blk_rq_map_kern	vmlinux	EXPORT_SYMBOL
+0xd1b6a91b	blk_rq_map_user_iov	vmlinux	EXPORT_SYMBOL
+0xd1398707	blk_rq_unmap_user	vmlinux	EXPORT_SYMBOL
+0x506fbfbe	blk_set_stacking_limits	vmlinux	EXPORT_SYMBOL
+0x7a9b37e8	blk_start_plug	vmlinux	EXPORT_SYMBOL
+0x84502a47	blk_status_to_errno	vmlinux	EXPORT_SYMBOL_GPL
+0x981874cb	blk_verify_command	vmlinux	EXPORT_SYMBOL
+0x640b8f93	blkdev_fsync	vmlinux	EXPORT_SYMBOL
+0x098a2b82	blkdev_get	vmlinux	EXPORT_SYMBOL
+0x57b3a714	blkdev_get_by_dev	vmlinux	EXPORT_SYMBOL
+0x3a58ff8f	blkdev_get_by_path	vmlinux	EXPORT_SYMBOL
+0xa4e90f02	blkdev_issue_discard	vmlinux	EXPORT_SYMBOL
+0x712810f3	blkdev_issue_write_same	vmlinux	EXPORT_SYMBOL
+0x83d66221	blkdev_issue_zeroout	vmlinux	EXPORT_SYMBOL
+0x3725913d	blkdev_put	vmlinux	EXPORT_SYMBOL
+0x1915d893	blocking_notifier_call_chain	vmlinux	EXPORT_SYMBOL_GPL
+0x9b4a3389	blocking_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
+0x98901df7	blocking_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xfb452dfe	bsg_job_done	vmlinux	EXPORT_SYMBOL_GPL
+0x28aa6a67	call_rcu	vmlinux	EXPORT_SYMBOL_GPL
+0xa7eedcc4	call_usermodehelper	vmlinux	EXPORT_SYMBOL
+0xb5a8d234	cancel_delayed_work	vmlinux	EXPORT_SYMBOL
+0x68f927fb	cancel_delayed_work_sync	vmlinux	EXPORT_SYMBOL
+0x81b1b255	cancel_work_sync	vmlinux	EXPORT_SYMBOL_GPL
+0xc6cbbc89	capable	vmlinux	EXPORT_SYMBOL
+0xd174b711	cdev_add	vmlinux	EXPORT_SYMBOL
+0xc9fb9425	cdev_alloc	vmlinux	EXPORT_SYMBOL
+0xc241ee72	cdev_del	vmlinux	EXPORT_SYMBOL
+0x0c407f6f	cdev_init	vmlinux	EXPORT_SYMBOL
+0x8a6b7156	class_destroy	vmlinux	EXPORT_SYMBOL_GPL
+0xe28a9c32	class_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x9800ed94	clear_inode	vmlinux	EXPORT_SYMBOL
+0x77515ebd	clear_nlink	vmlinux	EXPORT_SYMBOL
+0xb23c934e	commit_creds	vmlinux	EXPORT_SYMBOL
+0x29361773	complete	vmlinux	EXPORT_SYMBOL
+0xfd94814e	complete_all	vmlinux	EXPORT_SYMBOL
+0x8133c67d	complete_and_exit	vmlinux	EXPORT_SYMBOL
+0x88bbabc0	consume_skb	vmlinux	EXPORT_SYMBOL
+0xa9231bca	cpu_bit_bitmap	vmlinux	EXPORT_SYMBOL_GPL
+0x7a2af7b4	cpu_number	vmlinux	EXPORT_SYMBOL
+0x7c46233a	cpufreq_quick_get	vmlinux	EXPORT_SYMBOL
+0x0a9d52d0	cpumask_next	vmlinux	EXPORT_SYMBOL
+0x74ea1265	cpumask_next_and	vmlinux	EXPORT_SYMBOL
+0xa04f945a	cpus_read_lock	vmlinux	EXPORT_SYMBOL_GPL
+0x18fb2caf	cpus_read_unlock	vmlinux	EXPORT_SYMBOL_GPL
+0x70a9c336	create_empty_buffers	vmlinux	EXPORT_SYMBOL
+0x9bb8e557	crypto_ahash_digest	vmlinux	EXPORT_SYMBOL_GPL
+0x4393db9a	crypto_ahash_final	vmlinux	EXPORT_SYMBOL_GPL
+0x3bdc0850	crypto_ahash_setkey	vmlinux	EXPORT_SYMBOL_GPL
+0xe8f94b1e	crypto_alloc_ahash	vmlinux	EXPORT_SYMBOL_GPL
+0xee175712	crypto_destroy_tfm	vmlinux	EXPORT_SYMBOL_GPL
+0xe6526493	crypto_register_shash	vmlinux	EXPORT_SYMBOL_GPL
+0x1c395906	crypto_unregister_shash	vmlinux	EXPORT_SYMBOL_GPL
+0x4d65cbd5	csum_ipv6_magic	vmlinux	EXPORT_SYMBOL
+0xe113bbbc	csum_partial	vmlinux	EXPORT_SYMBOL
+0x150b1f8a	current_time	vmlinux	EXPORT_SYMBOL
+0xf95120ce	d_add	vmlinux	EXPORT_SYMBOL
+0x1d81276e	d_drop	vmlinux	EXPORT_SYMBOL
+0xece86a60	d_instantiate	vmlinux	EXPORT_SYMBOL
+0xc2ce4b1e	d_make_root	vmlinux	EXPORT_SYMBOL
+0x3b9ea1ae	d_obtain_alias	vmlinux	EXPORT_SYMBOL
+0xfa0f4c0f	d_prune_aliases	vmlinux	EXPORT_SYMBOL
+0x4bcdda9f	deactivate_super	vmlinux	EXPORT_SYMBOL
+0xa8a90b07	default_llseek	vmlinux	EXPORT_SYMBOL
+0xaad8c7d6	default_wake_function	vmlinux	EXPORT_SYMBOL
+0x74c32ea2	del_gendisk	vmlinux	EXPORT_SYMBOL
+0xfa5223cc	del_timer	vmlinux	EXPORT_SYMBOL
+0xec02a35f	del_timer_sync	vmlinux	EXPORT_SYMBOL
+0x0c1c794e	delayed_work_timer_fn	vmlinux	EXPORT_SYMBOL
+0x3a484afa	dentry_open	vmlinux	EXPORT_SYMBOL
+0x8c03d20c	destroy_workqueue	vmlinux	EXPORT_SYMBOL_GPL
+0x862f1376	dev_get_by_index	vmlinux	EXPORT_SYMBOL
+0x99c61367	dev_get_by_name	vmlinux	EXPORT_SYMBOL
+0x9924cf7e	dev_mc_add	vmlinux	EXPORT_SYMBOL
+0x3a28c137	dev_mc_del	vmlinux	EXPORT_SYMBOL
+0xac0eb98a	dev_queue_xmit	vmlinux	EXPORT_SYMBOL
+0xcd1adebd	dev_set_mac_address	vmlinux	EXPORT_SYMBOL
+0xc55637a6	dev_set_mtu	vmlinux	EXPORT_SYMBOL
+0xc3b519d1	dev_set_promiscuity	vmlinux	EXPORT_SYMBOL
+0xaef62a99	device_add_disk	vmlinux	EXPORT_SYMBOL
+0x1744744a	device_create	vmlinux	EXPORT_SYMBOL_GPL
+0x8ea07c28	device_destroy	vmlinux	EXPORT_SYMBOL_GPL
+0x88528f75	dget_parent	vmlinux	EXPORT_SYMBOL
+0x926be68c	dma_get_required_mask	vmlinux	EXPORT_SYMBOL_GPL
+0x1c5a0e6e	dma_set_coherent_mask	vmlinux	EXPORT_SYMBOL
+0x4e0bc306	dma_set_mask	vmlinux	EXPORT_SYMBOL
+0x4f68e5c9	do_gettimeofday	vmlinux	EXPORT_SYMBOL
+0x6626afca	down	vmlinux	EXPORT_SYMBOL
+0x25170ad2	down_interruptible	vmlinux	EXPORT_SYMBOL
+0xe766638a	down_read	vmlinux	EXPORT_SYMBOL
+0xfd8dde57	down_read_trylock	vmlinux	EXPORT_SYMBOL
+0x014e4112	down_trylock	vmlinux	EXPORT_SYMBOL
+0xb0db5192	down_write	vmlinux	EXPORT_SYMBOL
+0x5c399854	down_write_trylock	vmlinux	EXPORT_SYMBOL
+0x4efeaecf	downgrade_write	vmlinux	EXPORT_SYMBOL
+0x4cece3c7	dput	vmlinux	EXPORT_SYMBOL
+0xa4fd336d	dst_release	vmlinux	EXPORT_SYMBOL
+0x6b2dc060	dump_stack	vmlinux	EXPORT_SYMBOL
+0xd0c05159	emergency_restart	vmlinux	EXPORT_SYMBOL_GPL
+0x612bfd89	errno_to_blk_status	vmlinux	EXPORT_SYMBOL_GPL
+0x4c16334a	eth_type_trans	vmlinux	EXPORT_SYMBOL
+0x092f9801	ether_setup	vmlinux	EXPORT_SYMBOL
+0xf12fd7b7	ethtool_op_get_link	vmlinux	EXPORT_SYMBOL
+0x45f82af7	fc_remove_host	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
+0x8cdd7fee	fget	vmlinux	EXPORT_SYMBOL
+0x317eee7a	filemap_fault	vmlinux	EXPORT_SYMBOL
+0xadaabf62	filp_close	vmlinux	EXPORT_SYMBOL
+0xf8c0da85	filp_open	vmlinux	EXPORT_SYMBOL
+0xc0a3d105	find_next_bit	vmlinux	EXPORT_SYMBOL
+0x479c3c86	find_next_zero_bit	vmlinux	EXPORT_SYMBOL
+0x079bacd3	find_pid_ns	vmlinux	EXPORT_SYMBOL_GPL
+0x19115098	find_vma	vmlinux	EXPORT_SYMBOL
+0x92540fbf	finish_wait	vmlinux	EXPORT_SYMBOL
+0x371a18f5	flush_signals	vmlinux	EXPORT_SYMBOL
+0x42160169	flush_workqueue	vmlinux	EXPORT_SYMBOL
+0xdfbfce13	force_sig	vmlinux	EXPORT_SYMBOL
+0xcbd4898c	fortify_panic	vmlinux	EXPORT_SYMBOL
+0x3c7e0019	fput	vmlinux	EXPORT_SYMBOL
+0xc1514a3b	free_irq	vmlinux	EXPORT_SYMBOL
+0xf276078f	free_netdev	vmlinux	EXPORT_SYMBOL
+0x4302d0eb	free_pages	vmlinux	EXPORT_SYMBOL
+0x8811a77a	freeze_bdev	vmlinux	EXPORT_SYMBOL
+0x1c2073b0	from_kgid	vmlinux	EXPORT_SYMBOL
+0x69d83b26	from_kuid	vmlinux	EXPORT_SYMBOL
+0x02c7d7c5	fs_bio_set	vmlinux	EXPORT_SYMBOL
+0x4da5d582	fsync_bdev	vmlinux	EXPORT_SYMBOL
+0x871408e9	generic_end_io_acct	vmlinux	EXPORT_SYMBOL
+0x9874466f	generic_file_llseek	vmlinux	EXPORT_SYMBOL
+0x9f289411	generic_file_open	vmlinux	EXPORT_SYMBOL
+0xfce4eac3	generic_fillattr	vmlinux	EXPORT_SYMBOL
+0x94a0b371	generic_make_request	vmlinux	EXPORT_SYMBOL
+0x88de0238	generic_permission	vmlinux	EXPORT_SYMBOL
+0xbf06c358	generic_read_dir	vmlinux	EXPORT_SYMBOL
+0x1026d343	generic_shutdown_super	vmlinux	EXPORT_SYMBOL
+0x941835d6	generic_start_io_acct	vmlinux	EXPORT_SYMBOL
+0x8811191a	genl_register_family	vmlinux	EXPORT_SYMBOL
+0x9f39d33a	genl_unregister_family	vmlinux	EXPORT_SYMBOL
+0xae33befc	genlmsg_put	vmlinux	EXPORT_SYMBOL
+0xe0b2e5e2	get_fs_type	vmlinux	EXPORT_SYMBOL
+0xa3e3d20b	get_gendisk	vmlinux	EXPORT_SYMBOL
+0x79aa04a2	get_random_bytes	vmlinux	EXPORT_SYMBOL
+0x405c1144	get_seconds	vmlinux	EXPORT_SYMBOL
+0x42049e31	get_task_mm	vmlinux	EXPORT_SYMBOL_GPL
+0xfd2ef4d1	get_user_pages	vmlinux	EXPORT_SYMBOL
+0xce474c79	get_user_pages_remote	vmlinux	EXPORT_SYMBOL
+0x9b388444	get_zeroed_page	vmlinux	EXPORT_SYMBOL
+0x3e2b0ba6	groups_alloc	vmlinux	EXPORT_SYMBOL
+0x643d9ba1	groups_free	vmlinux	EXPORT_SYMBOL
+0xf97d1a04	hrtimer_cancel	vmlinux	EXPORT_SYMBOL_GPL
+0xae909197	hrtimer_forward	vmlinux	EXPORT_SYMBOL_GPL
+0xdf243169	hrtimer_init	vmlinux	EXPORT_SYMBOL_GPL
+0x09181e45	hrtimer_start_range_ns	vmlinux	EXPORT_SYMBOL_GPL
+0x1415801b	hrtimer_try_to_cancel	vmlinux	EXPORT_SYMBOL_GPL
+0x1a4e541a	igrab	vmlinux	EXPORT_SYMBOL
+0x39461d6a	in_egroup_p	vmlinux	EXPORT_SYMBOL
+0x8b8059bd	in_group_p	vmlinux	EXPORT_SYMBOL
+0x7558b7d0	init_net	vmlinux	EXPORT_SYMBOL
+0x10be2e85	init_task	vmlinux	EXPORT_SYMBOL
+0x4cc8f9c8	init_timer_key	vmlinux	EXPORT_SYMBOL
+0x2b91e0ef	init_uts_ns	vmlinux	EXPORT_SYMBOL_GPL
+0xfe487975	init_wait_entry	vmlinux	EXPORT_SYMBOL
+0xbe04575e	inode_init_always	vmlinux	EXPORT_SYMBOL
+0x9274c33c	inode_permission	vmlinux	EXPORT_SYMBOL
+0x5ed90adc	int_to_scsilun	vmlinux	EXPORT_SYMBOL
+0x93b9824b	invalidate_partition	vmlinux	EXPORT_SYMBOL
+0x93a6e0b2	io_schedule	vmlinux	EXPORT_SYMBOL
+0xfbc4f89e	io_schedule_timeout	vmlinux	EXPORT_SYMBOL
+0x8e82828e	iomem_resource	vmlinux	EXPORT_SYMBOL
+0xe7698027	ioremap_cache	vmlinux	EXPORT_SYMBOL
+0xc4d9f382	ipmi_create_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xf388b18b	ipmi_destroy_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xd1f579d0	ipmi_free_recv_msg	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xf5531bea	ipmi_poll_interface	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x12e50acb	ipmi_register_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x4c2054d7	ipmi_request_settime	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x50f65edf	ipmi_set_gets_events	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xfaaa4831	ipmi_set_my_address	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xa19985b7	ipmi_smi_msg_received	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xe4330a39	ipmi_unregister_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xe4f4665b	ipmi_validate_addr	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x872e8bfa	iput	vmlinux	EXPORT_SYMBOL
+0x8b3fdb57	irq_set_affinity_hint	vmlinux	EXPORT_SYMBOL_GPL
+0xdc3a5af3	iterate_dir	vmlinux	EXPORT_SYMBOL
+0x15ba50a6	jiffies	vmlinux	EXPORT_SYMBOL
+0x055e77e8	jiffies_64	vmlinux	EXPORT_SYMBOL
+0x37befc70	jiffies_to_msecs	vmlinux	EXPORT_SYMBOL
+0x188ea314	jiffies_to_timespec64	vmlinux	EXPORT_SYMBOL
+0x7f24de73	jiffies_to_usecs	vmlinux	EXPORT_SYMBOL
+0x44b5ee9a	kasprintf	vmlinux	EXPORT_SYMBOL
+0xbe726bc4	kern_path	vmlinux	EXPORT_SYMBOL
+0x3c90c378	kernel_recvmsg	vmlinux	EXPORT_SYMBOL
+0x9242da81	kernel_sendmsg	vmlinux	EXPORT_SYMBOL
+0x3c1a2fb9	kernel_setsockopt	vmlinux	EXPORT_SYMBOL
+0x265bbef9	kexec_crash_loaded	vmlinux	EXPORT_SYMBOL_GPL
+0x037a0cba	kfree	vmlinux	EXPORT_SYMBOL
+0x19f462ab	kfree_call_rcu	vmlinux	EXPORT_SYMBOL_GPL
+0x6aec8ba4	kfree_skb	vmlinux	EXPORT_SYMBOL
+0x0e479cbd	kill_anon_super	vmlinux	EXPORT_SYMBOL
+0x768782f0	kill_block_super	vmlinux	EXPORT_SYMBOL
+0xc30a389f	kmalloc_caches	vmlinux	EXPORT_SYMBOL
+0xa202a8e5	kmalloc_order_trace	vmlinux	EXPORT_SYMBOL
+0x324a6217	kmem_cache_alloc	vmlinux	EXPORT_SYMBOL
+0x6fc8aac9	kmem_cache_alloc_node	vmlinux	EXPORT_SYMBOL
+0x3859b608	kmem_cache_alloc_node_trace	vmlinux	EXPORT_SYMBOL
+0x24fd035b	kmem_cache_alloc_trace	vmlinux	EXPORT_SYMBOL
+0x6bbb08c5	kmem_cache_create	vmlinux	EXPORT_SYMBOL
+0xb9523144	kmem_cache_create_usercopy	vmlinux	EXPORT_SYMBOL
+0x90737632	kmem_cache_destroy	vmlinux	EXPORT_SYMBOL
+0xd57f6999	kmem_cache_free	vmlinux	EXPORT_SYMBOL
+0x9ebab9d3	kmem_cache_shrink	vmlinux	EXPORT_SYMBOL
+0x0973d7fb	kobject_add	vmlinux	EXPORT_SYMBOL
+0xc985b4ca	kobject_create_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0xe9ec6844	kobject_del	vmlinux	EXPORT_SYMBOL
+0xa9c2cec5	kobject_get	vmlinux	EXPORT_SYMBOL
+0x217548d3	kobject_init	vmlinux	EXPORT_SYMBOL
+0x71c0e774	kobject_init_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0x2cec6038	kobject_put	vmlinux	EXPORT_SYMBOL
+0xafab167e	kobject_set_name	vmlinux	EXPORT_SYMBOL
+0x931b4bf0	kobject_uevent_env	vmlinux	EXPORT_SYMBOL_GPL
+0x85f5e2aa	krealloc	vmlinux	EXPORT_SYMBOL
+0xa967147b	kset_create_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0x84d07d10	kset_find_obj	vmlinux	EXPORT_SYMBOL_GPL
+0x2064e105	kset_register	vmlinux	EXPORT_SYMBOL
+0x026fd227	kset_unregister	vmlinux	EXPORT_SYMBOL
+0xc499ae1e	kstrdup	vmlinux	EXPORT_SYMBOL
+0xaf6ae696	kstrndup	vmlinux	EXPORT_SYMBOL
+0x752d5f5b	kstrtobool	vmlinux	EXPORT_SYMBOL
+0xc6c09e43	kstrtobool_from_user	vmlinux	EXPORT_SYMBOL
+0x373db350	kstrtoint	vmlinux	EXPORT_SYMBOL
+0x10f1064d	kstrtoint_from_user	vmlinux	EXPORT_SYMBOL
+0x1b17e06c	kstrtoll	vmlinux	EXPORT_SYMBOL
+0x42adadb9	kstrtoll_from_user	vmlinux	EXPORT_SYMBOL
+0x3fa0d062	kstrtou16	vmlinux	EXPORT_SYMBOL
+0xa46f2f1b	kstrtouint	vmlinux	EXPORT_SYMBOL
+0xdc20f322	kstrtouint_from_user	vmlinux	EXPORT_SYMBOL
+0x7c3aaa29	kstrtoul_from_user	vmlinux	EXPORT_SYMBOL
+0x060ea2d6	kstrtoull	vmlinux	EXPORT_SYMBOL
+0x886ce541	kstrtoull_from_user	vmlinux	EXPORT_SYMBOL
+0xc045ac00	kthread_bind	vmlinux	EXPORT_SYMBOL
+0xe744bb8f	kthread_create_on_node	vmlinux	EXPORT_SYMBOL
+0xb3f7646e	kthread_should_stop	vmlinux	EXPORT_SYMBOL
+0xd4c6e257	kthread_stop	vmlinux	EXPORT_SYMBOL
+0xb43f9365	ktime_get	vmlinux	EXPORT_SYMBOL_GPL
+0x484f6edf	ktime_get_coarse_real_ts64	vmlinux	EXPORT_SYMBOL
+0x1edb69d6	ktime_get_raw_ts64	vmlinux	EXPORT_SYMBOL
+0x953e1b9e	ktime_get_real_seconds	vmlinux	EXPORT_SYMBOL_GPL
+0x9ec6ca96	ktime_get_real_ts64	vmlinux	EXPORT_SYMBOL
+0xa9320d27	ktime_get_seconds	vmlinux	EXPORT_SYMBOL_GPL
+0x5e515be6	ktime_get_ts64	vmlinux	EXPORT_SYMBOL_GPL
+0xc4f0da12	ktime_get_with_offset	vmlinux	EXPORT_SYMBOL_GPL
+0x5c017464	kvasprintf	vmlinux	EXPORT_SYMBOL
+0x7aa1756e	kvfree	vmlinux	EXPORT_SYMBOL
+0x7a4497db	kzfree	vmlinux	EXPORT_SYMBOL
+0x25c5f640	lock_page_memcg	vmlinux	EXPORT_SYMBOL
+0xb9544a0e	lock_sock_nested	vmlinux	EXPORT_SYMBOL
+0xd9b85ef6	lockref_get	vmlinux	EXPORT_SYMBOL
+0x452e4259	lookup_one_len	vmlinux	EXPORT_SYMBOL
+0x0daef7fd	make_kgid	vmlinux	EXPORT_SYMBOL
+0xf299b83d	make_kuid	vmlinux	EXPORT_SYMBOL
+0xcefdecd7	mark_buffer_dirty	vmlinux	EXPORT_SYMBOL
+0x0ff3bfda	mark_page_accessed	vmlinux	EXPORT_SYMBOL
+0xacf4d843	match_strdup	vmlinux	EXPORT_SYMBOL
+0x44e9a829	match_token	vmlinux	EXPORT_SYMBOL
+0x54c99fac	mem_section	vmlinux	EXPORT_SYMBOL
+0xa07a37f0	memchr	vmlinux	EXPORT_SYMBOL
+0x449ad0a7	memcmp	vmlinux	EXPORT_SYMBOL
+0x4829a47e	memcpy	vmlinux	EXPORT_SYMBOL
+0x5a9f1d63	memmove	vmlinux	EXPORT_SYMBOL
+0x27864d57	memparse	vmlinux	EXPORT_SYMBOL
+0x86c45796	mempool_alloc	vmlinux	EXPORT_SYMBOL
+0x183fa88b	mempool_alloc_slab	vmlinux	EXPORT_SYMBOL
+0x6a244503	mempool_create	vmlinux	EXPORT_SYMBOL
+0x9300507b	mempool_destroy	vmlinux	EXPORT_SYMBOL
+0x074b55fe	mempool_free	vmlinux	EXPORT_SYMBOL
+0x8a99a016	mempool_free_slab	vmlinux	EXPORT_SYMBOL
+0xf812cff6	memscan	vmlinux	EXPORT_SYMBOL
+0xdcb764ad	memset	vmlinux	EXPORT_SYMBOL
+0x9688de8b	memstart_addr	vmlinux	EXPORT_SYMBOL
+0x29c21688	misc_deregister	vmlinux	EXPORT_SYMBOL
+0xeac7b62d	misc_register	vmlinux	EXPORT_SYMBOL
+0x29367907	mmput	vmlinux	EXPORT_SYMBOL_GPL
+0x1ccf7c3c	mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
+0x725826d8	mmu_notifier_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x2360f588	mntget	vmlinux	EXPORT_SYMBOL
+0x41cfedb6	mntput	vmlinux	EXPORT_SYMBOL
+0xebca8b54	mod_delayed_work_on	vmlinux	EXPORT_SYMBOL_GPL
+0x28985b9f	mod_timer	vmlinux	EXPORT_SYMBOL
+0xaac80d5b	mod_timer_pending	vmlinux	EXPORT_SYMBOL
+0xa6e68428	module_put	vmlinux	EXPORT_SYMBOL
+0xa145bb1a	module_refcount	vmlinux	EXPORT_SYMBOL
+0xf9a482f9	msleep	vmlinux	EXPORT_SYMBOL
+0x41aed6e7	mutex_lock	vmlinux	EXPORT_SYMBOL
+0xe8de29eb	mutex_lock_killable	vmlinux	EXPORT_SYMBOL
+0xb3b42a38	mutex_trylock	vmlinux	EXPORT_SYMBOL
+0xa6093a32	mutex_unlock	vmlinux	EXPORT_SYMBOL
+0x67b127fd	napi_complete_done	vmlinux	EXPORT_SYMBOL
+0x3ccfb3e7	napi_disable	vmlinux	EXPORT_SYMBOL
+0xb13255ac	napi_gro_receive	vmlinux	EXPORT_SYMBOL
+0x4e1fb093	napi_schedule_prep	vmlinux	EXPORT_SYMBOL
+0x1d923f17	netdev_features_change	vmlinux	EXPORT_SYMBOL
+0xac109b30	netdev_rx_handler_register	vmlinux	EXPORT_SYMBOL_GPL
+0x16f7f97c	netdev_rx_handler_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x721281fb	netif_carrier_off	vmlinux	EXPORT_SYMBOL
+0x0950991c	netif_carrier_on	vmlinux	EXPORT_SYMBOL
+0xadcb4759	netif_napi_add	vmlinux	EXPORT_SYMBOL
+0xba5c3343	netif_napi_del	vmlinux	EXPORT_SYMBOL
+0x4dee28e1	netif_receive_skb	vmlinux	EXPORT_SYMBOL
+0x155980d9	netif_rx	vmlinux	EXPORT_SYMBOL
+0xf6ff1b05	netlink_broadcast	vmlinux	EXPORT_SYMBOL
+0xf47829bd	netlink_unicast	vmlinux	EXPORT_SYMBOL
+0x6a3475c1	new_inode	vmlinux	EXPORT_SYMBOL
+0xfdc1bd61	nla_put	vmlinux	EXPORT_SYMBOL
+0xaa19fd49	node_data	vmlinux	EXPORT_SYMBOL
+0xc19ac37a	node_to_cpumask_map	vmlinux	EXPORT_SYMBOL
+0x017de3d5	nr_cpu_ids	vmlinux	EXPORT_SYMBOL
+0xfe26fc7c	nr_node_ids	vmlinux	EXPORT_SYMBOL
+0x1e1e140e	ns_to_timespec64	vmlinux	EXPORT_SYMBOL
+0x2f548802	ns_to_timeval	vmlinux	EXPORT_SYMBOL
+0xffae8e8b	nsecs_to_jiffies	vmlinux	EXPORT_SYMBOL_GPL
+0x618911fc	numa_node	vmlinux	EXPORT_SYMBOL
+0x5541ea93	on_each_cpu	vmlinux	EXPORT_SYMBOL
+0x1984d421	out_of_line_wait_on_bit	vmlinux	EXPORT_SYMBOL
+0x75703766	override_creds	vmlinux	EXPORT_SYMBOL
+0x8c1371f5	page_mapped	vmlinux	EXPORT_SYMBOL
+0xffdfe1c7	pagevec_lookup_range	vmlinux	EXPORT_SYMBOL
+0x851a8d6b	pagevec_lookup_range_tag	vmlinux	EXPORT_SYMBOL
+0x7c1372e8	panic	vmlinux	EXPORT_SYMBOL
+0x07ceeac9	panic_notifier_list	vmlinux	EXPORT_SYMBOL
+0x51bfe5cf	param_array_ops	vmlinux	EXPORT_SYMBOL
+0x9e60e5fb	param_get_int	vmlinux	EXPORT_SYMBOL
+0x8f613790	param_ops_bool	vmlinux	EXPORT_SYMBOL
+0x3ba2c80b	param_ops_byte	vmlinux	EXPORT_SYMBOL
+0x2c4c969e	param_ops_charp	vmlinux	EXPORT_SYMBOL
+0x0b5c34cd	param_ops_int	vmlinux	EXPORT_SYMBOL
+0xd2673a0d	param_ops_long	vmlinux	EXPORT_SYMBOL
+0xab292632	param_ops_short	vmlinux	EXPORT_SYMBOL
+0xe4e509ca	param_ops_string	vmlinux	EXPORT_SYMBOL
+0xfb13d1b0	param_ops_uint	vmlinux	EXPORT_SYMBOL
+0xfc237869	param_ops_ulong	vmlinux	EXPORT_SYMBOL
+0x2cecea02	param_set_bool	vmlinux	EXPORT_SYMBOL
+0x2c566106	param_set_int	vmlinux	EXPORT_SYMBOL
+0x337c9ad1	path_put	vmlinux	EXPORT_SYMBOL
+0xf5bc0161	pci_alloc_irq_vectors_affinity	vmlinux	EXPORT_SYMBOL
+0xedfceaf2	pci_free_irq_vectors	vmlinux	EXPORT_SYMBOL
+0xff752bfc	pci_get_device	vmlinux	EXPORT_SYMBOL
+0xaf3a5488	pci_irq_vector	vmlinux	EXPORT_SYMBOL
+0xc95e1905	pci_read_config_byte	vmlinux	EXPORT_SYMBOL
+0x0513bce1	pci_read_config_dword	vmlinux	EXPORT_SYMBOL
+0x2c55c601	pci_set_power_state	vmlinux	EXPORT_SYMBOL
+0xfd9d3b65	pci_write_config_byte	vmlinux	EXPORT_SYMBOL
+0x853f10f1	pci_write_config_dword	vmlinux	EXPORT_SYMBOL
+0xeea26a89	pcie_capability_clear_and_set_word	vmlinux	EXPORT_SYMBOL
+0x150bac42	pcie_capability_read_dword	vmlinux	EXPORT_SYMBOL
+0xc61ce6d5	pcie_capability_read_word	vmlinux	EXPORT_SYMBOL
+0x1f6e62a5	pid_task	vmlinux	EXPORT_SYMBOL
+0x60a32ea9	pm_power_off	vmlinux	EXPORT_SYMBOL_GPL
+0x2bf0d917	prepare_creds	vmlinux	EXPORT_SYMBOL
+0xd5fd90f1	prepare_to_wait	vmlinux	EXPORT_SYMBOL
+0x8c26d495	prepare_to_wait_event	vmlinux	EXPORT_SYMBOL
+0x45e69e01	prepare_to_wait_exclusive	vmlinux	EXPORT_SYMBOL
+0x86e03c0a	print_stack_trace	vmlinux	EXPORT_SYMBOL_GPL
+0x27e1a049	printk	vmlinux	EXPORT_SYMBOL
+0x9643adc6	pskb_expand_head	vmlinux	EXPORT_SYMBOL
+0x0a536cf3	put_disk	vmlinux	EXPORT_SYMBOL
+0xd1e4ec46	queue_delayed_work_on	vmlinux	EXPORT_SYMBOL
+0x121da905	queue_work_on	vmlinux	EXPORT_SYMBOL
+0xc9c3b33d	raid_class_attach	drivers/scsi/raid_class	EXPORT_SYMBOL
+0x54e18e74	raid_class_release	drivers/scsi/raid_class	EXPORT_SYMBOL
+0x60a13e90	rcu_barrier	vmlinux	EXPORT_SYMBOL_GPL
+0x65ee6e82	read_cache_pages	vmlinux	EXPORT_SYMBOL
+0xfb6af58d	recalc_sigpending	vmlinux	EXPORT_SYMBOL
+0x71a50dbc	register_blkdev	vmlinux	EXPORT_SYMBOL
+0x7e2473d5	register_filesystem	vmlinux	EXPORT_SYMBOL
+0x60352082	register_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
+0xf68285c0	register_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
+0x87026672	register_netdev	vmlinux	EXPORT_SYMBOL
+0xd2da1048	register_netdevice_notifier	vmlinux	EXPORT_SYMBOL
+0x3517383e	register_reboot_notifier	vmlinux	EXPORT_SYMBOL
+0xf97d7de2	register_sysctl_table	vmlinux	EXPORT_SYMBOL
+0x44d786a5	release_sock	vmlinux	EXPORT_SYMBOL
+0x5d291b26	remap_pfn_range	vmlinux	EXPORT_SYMBOL
+0x37110088	remove_wait_queue	vmlinux	EXPORT_SYMBOL
+0xd6b8e852	request_threaded_irq	vmlinux	EXPORT_SYMBOL
+0x8c9fd07d	revert_creds	vmlinux	EXPORT_SYMBOL
+0xc7a4fbed	rtnl_lock	vmlinux	EXPORT_SYMBOL
+0x6e720ff2	rtnl_unlock	vmlinux	EXPORT_SYMBOL
+0xe5c6fad3	sas_attach_transport	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xa10b607b	sas_end_device_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xc55e2842	sas_expander_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xde5e1517	sas_phy_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xf2949aa9	sas_phy_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x92040be3	sas_phy_free	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x56576929	sas_port_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x6913581c	sas_port_add_phy	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x45a40f7d	sas_port_alloc_num	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x67586ea2	sas_port_delete	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xbb82ea8f	sas_port_delete_phy	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xd18aa1f9	sas_read_port_mode_page	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x9ed95a14	sas_release_transport	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x31be47b8	sas_remove_host	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xa43ce280	sas_rphy_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x4629baf2	save_stack_trace	vmlinux	EXPORT_SYMBOL_GPL
+0x29d798fa	save_stack_trace_tsk	vmlinux	EXPORT_SYMBOL_GPL
+0x81bbc55d	sched_setscheduler	vmlinux	EXPORT_SYMBOL_GPL
+0x01000e51	schedule	vmlinux	EXPORT_SYMBOL
+0x1f37cca7	schedule_hrtimeout_range	vmlinux	EXPORT_SYMBOL_GPL
+0x8ddd8aad	schedule_timeout	vmlinux	EXPORT_SYMBOL
+0x054496b4	schedule_timeout_interruptible	vmlinux	EXPORT_SYMBOL
+0x151f4898	schedule_timeout_uninterruptible	vmlinux	EXPORT_SYMBOL
+0x9c0c2bc8	scmd_printk	vmlinux	EXPORT_SYMBOL
+0x4ca9669f	scnprintf	vmlinux	EXPORT_SYMBOL
+0x33c03b1c	scsi_add_device	vmlinux	EXPORT_SYMBOL
+0xc9eb74cf	scsi_add_host_with_dma	vmlinux	EXPORT_SYMBOL
+0x3bedb3ea	scsi_block_requests	vmlinux	EXPORT_SYMBOL
+0x0cde3748	scsi_change_queue_depth	vmlinux	EXPORT_SYMBOL
+0x129fdace	scsi_device_get	vmlinux	EXPORT_SYMBOL
+0x01b96dcd	scsi_device_lookup	vmlinux	EXPORT_SYMBOL
+0x9a17c524	scsi_device_put	vmlinux	EXPORT_SYMBOL
+0xfcfd0a60	scsi_device_set_state	vmlinux	EXPORT_SYMBOL
+0x72ea7b2d	scsi_device_type	vmlinux	EXPORT_SYMBOL
+0x92684542	scsi_dma_map	vmlinux	EXPORT_SYMBOL
+0xc38bc490	scsi_dma_unmap	vmlinux	EXPORT_SYMBOL
+0x2140689c	scsi_get_vpd_page	vmlinux	EXPORT_SYMBOL_GPL
+0x2e9939a6	scsi_host_alloc	vmlinux	EXPORT_SYMBOL
+0x5a94e420	scsi_host_lookup	vmlinux	EXPORT_SYMBOL
+0x5e78955b	scsi_host_put	vmlinux	EXPORT_SYMBOL
+0x5ef7c289	scsi_internal_device_block_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0x03cdc1af	scsi_internal_device_unblock_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0xa4e45210	scsi_is_host_device	vmlinux	EXPORT_SYMBOL
+0x1b73da3a	scsi_is_sdev_device	vmlinux	EXPORT_SYMBOL
+0x9143b9f0	scsi_print_command	vmlinux	EXPORT_SYMBOL
+0x91ad164a	scsi_register_driver	vmlinux	EXPORT_SYMBOL
+0x239d9387	scsi_remove_device	vmlinux	EXPORT_SYMBOL
+0xb1321ced	scsi_remove_host	vmlinux	EXPORT_SYMBOL
+0xf7f2f911	scsi_remove_target	vmlinux	EXPORT_SYMBOL
+0x07b37d96	scsi_scan_host	vmlinux	EXPORT_SYMBOL
+0x699332ae	scsi_unblock_requests	vmlinux	EXPORT_SYMBOL
+0xea3c8e4e	scsilun_to_int	vmlinux	EXPORT_SYMBOL
+0xb420a956	sdev_prefix_printk	vmlinux	EXPORT_SYMBOL
+0xe5dace4e	security_d_instantiate	vmlinux	EXPORT_SYMBOL
+0xf59d4c3b	send_sig	vmlinux	EXPORT_SYMBOL
+0xba7f5233	seq_lseek	vmlinux	EXPORT_SYMBOL
+0x8f7640ee	seq_printf	vmlinux	EXPORT_SYMBOL
+0x44a30d56	seq_read	vmlinux	EXPORT_SYMBOL
+0x3b13b34a	set_cpus_allowed_ptr	vmlinux	EXPORT_SYMBOL_GPL
+0x025483b1	set_current_groups	vmlinux	EXPORT_SYMBOL
+0x6907bf08	set_device_ro	vmlinux	EXPORT_SYMBOL
+0x17402a82	set_disk_ro	vmlinux	EXPORT_SYMBOL
+0x9e61bb05	set_freezable	vmlinux	EXPORT_SYMBOL
+0x93245ec7	set_nlink	vmlinux	EXPORT_SYMBOL
+0x365acda7	set_normalized_timespec64	vmlinux	EXPORT_SYMBOL
+0xf6f528bb	set_page_dirty	vmlinux	EXPORT_SYMBOL
+0x240cc7ab	set_page_dirty_lock	vmlinux	EXPORT_SYMBOL
+0xa7c1c1a8	set_user_nice	vmlinux	EXPORT_SYMBOL
+0x333c20bd	shrink_dcache_parent	vmlinux	EXPORT_SYMBOL
+0x40c7247c	si_meminfo	vmlinux	EXPORT_SYMBOL
+0x6a5fa363	sigprocmask	vmlinux	EXPORT_SYMBOL
+0xf8d4a345	simple_statfs	vmlinux	EXPORT_SYMBOL
+0x0b742fd7	simple_strtol	vmlinux	EXPORT_SYMBOL
+0x20000329	simple_strtoul	vmlinux	EXPORT_SYMBOL
+0x61b7b126	simple_strtoull	vmlinux	EXPORT_SYMBOL
+0x80f579a4	single_open	vmlinux	EXPORT_SYMBOL
+0x9b3968e9	single_release	vmlinux	EXPORT_SYMBOL
+0x3158d738	skb_checksum_help	vmlinux	EXPORT_SYMBOL
+0x9f0544ab	skb_clone	vmlinux	EXPORT_SYMBOL
+0x8ffdf6ac	skb_copy	vmlinux	EXPORT_SYMBOL
+0x11a9c1a0	skb_copy_bits	vmlinux	EXPORT_SYMBOL
+0x05eb81e9	skb_dequeue	vmlinux	EXPORT_SYMBOL
+0xecf356da	skb_pull	vmlinux	EXPORT_SYMBOL
+0x94813737	skb_push	vmlinux	EXPORT_SYMBOL
+0x33806457	skb_put	vmlinux	EXPORT_SYMBOL
+0x8b66a1bb	skb_queue_purge	vmlinux	EXPORT_SYMBOL
+0x61dbc2a0	skb_queue_tail	vmlinux	EXPORT_SYMBOL
+0x3a945419	skb_realloc_headroom	vmlinux	EXPORT_SYMBOL
+0xc877e274	skb_trim	vmlinux	EXPORT_SYMBOL
+0xa32d0dc9	smp_call_function_many	vmlinux	EXPORT_SYMBOL
+0x6228c21f	smp_call_function_single	vmlinux	EXPORT_SYMBOL
+0x28318305	snprintf	vmlinux	EXPORT_SYMBOL
+0x829296d8	sock_create_kern	vmlinux	EXPORT_SYMBOL
+0x1384448d	sock_release	vmlinux	EXPORT_SYMBOL
+0x91715312	sprintf	vmlinux	EXPORT_SYMBOL
+0x20c55ae0	sscanf	vmlinux	EXPORT_SYMBOL
+0x43844fec	starget_for_each_device	vmlinux	EXPORT_SYMBOL
+0xaafdc258	strcasecmp	vmlinux	EXPORT_SYMBOL
+0x061651be	strcat	vmlinux	EXPORT_SYMBOL
+0x349cba85	strchr	vmlinux	EXPORT_SYMBOL
+0xe2d5255a	strcmp	vmlinux	EXPORT_SYMBOL
+0xe914e41e	strcpy	vmlinux	EXPORT_SYMBOL
+0x1ac5d3cb	strcspn	vmlinux	EXPORT_SYMBOL
+0x77bc13a0	strim	vmlinux	EXPORT_SYMBOL
+0xf9c0b663	strlcat	vmlinux	EXPORT_SYMBOL
+0x5792f848	strlcpy	vmlinux	EXPORT_SYMBOL
+0x98cf60b3	strlen	vmlinux	EXPORT_SYMBOL
+0x96b29254	strncasecmp	vmlinux	EXPORT_SYMBOL
+0x5a921311	strncmp	vmlinux	EXPORT_SYMBOL
+0x9166fada	strncpy	vmlinux	EXPORT_SYMBOL
+0x24428be5	strncpy_from_user	vmlinux	EXPORT_SYMBOL
+0xa916b694	strnlen	vmlinux	EXPORT_SYMBOL
+0xc310b981	strnstr	vmlinux	EXPORT_SYMBOL
+0x9a1dfd65	strpbrk	vmlinux	EXPORT_SYMBOL
+0x9f984513	strrchr	vmlinux	EXPORT_SYMBOL
+0x85df9b6c	strsep	vmlinux	EXPORT_SYMBOL
+0xc29bf967	strspn	vmlinux	EXPORT_SYMBOL
+0x1e6d26a8	strstr	vmlinux	EXPORT_SYMBOL
+0xe3140538	submit_bio	vmlinux	EXPORT_SYMBOL
+0x2d3385d3	system_wq	vmlinux	EXPORT_SYMBOL
+0x9545af6d	tasklet_init	vmlinux	EXPORT_SYMBOL
+0x080c9e73	thaw_bdev	vmlinux	EXPORT_SYMBOL
+0x23b7a2ad	try_module_get	vmlinux	EXPORT_SYMBOL
+0x4005f38c	try_wait_for_completion	vmlinux	EXPORT_SYMBOL
+0x750338e3	unlock_page	vmlinux	EXPORT_SYMBOL
+0xe4c26f66	unlock_page_memcg	vmlinux	EXPORT_SYMBOL
+0x8d420dbb	unmap_mapping_range	vmlinux	EXPORT_SYMBOL
+0xb5a459dc	unregister_blkdev	vmlinux	EXPORT_SYMBOL
+0x6091b333	unregister_chrdev_region	vmlinux	EXPORT_SYMBOL
+0x52f5f5a6	unregister_filesystem	vmlinux	EXPORT_SYMBOL
+0x2fe252cc	unregister_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
+0xfe029963	unregister_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
+0x326d489d	unregister_netdev	vmlinux	EXPORT_SYMBOL
+0x9d0d6206	unregister_netdevice_notifier	vmlinux	EXPORT_SYMBOL
+0xac1a55be	unregister_reboot_notifier	vmlinux	EXPORT_SYMBOL
+0x6be0d38b	unregister_sysctl_table	vmlinux	EXPORT_SYMBOL
+0xc452a18b	unuse_mm	vmlinux	EXPORT_SYMBOL_GPL
+0xcf2a6966	up	vmlinux	EXPORT_SYMBOL
+0x1e03a6e3	up_read	vmlinux	EXPORT_SYMBOL
+0x844cedab	up_write	vmlinux	EXPORT_SYMBOL
+0x851e0ea2	use_mm	vmlinux	EXPORT_SYMBOL_GPL
+0x12a38747	usleep_range	vmlinux	EXPORT_SYMBOL
+0x999e8297	vfree	vmlinux	EXPORT_SYMBOL
+0xc6b294ae	vfs_create	vmlinux	EXPORT_SYMBOL
+0x9c6cc0f4	vfs_fsync	vmlinux	EXPORT_SYMBOL
+0xc1e09c95	vfs_fsync_range	vmlinux	EXPORT_SYMBOL
+0x121cc4aa	vfs_getattr	vmlinux	EXPORT_SYMBOL
+0xee72c99b	vfs_link	vmlinux	EXPORT_SYMBOL
+0xf57ec227	vfs_llseek	vmlinux	EXPORT_SYMBOL
+0x8ae7c58f	vfs_mkdir	vmlinux	EXPORT_SYMBOL
+0xa5d9c609	vfs_mknod	vmlinux	EXPORT_SYMBOL
+0xda7d13b0	vfs_readlink	vmlinux	EXPORT_SYMBOL
+0x0d95c03d	vfs_rename	vmlinux	EXPORT_SYMBOL
+0x8f65d07b	vfs_rmdir	vmlinux	EXPORT_SYMBOL
+0x6f6b401b	vfs_statfs	vmlinux	EXPORT_SYMBOL
+0x40872063	vfs_symlink	vmlinux	EXPORT_SYMBOL
+0x5000a175	vfs_unlink	vmlinux	EXPORT_SYMBOL
+0x09fb0f02	vm_mmap	vmlinux	EXPORT_SYMBOL
+0x5b56860c	vm_munmap	vmlinux	EXPORT_SYMBOL
+0xd6ee688f	vmalloc	vmlinux	EXPORT_SYMBOL
+0xb43f5159	vmalloc_to_page	vmlinux	EXPORT_SYMBOL
+0x0341df05	vmap	vmlinux	EXPORT_SYMBOL
+0x4b8b3239	vprintk	vmlinux	EXPORT_SYMBOL
+0xf5e03a3a	vscnprintf	vmlinux	EXPORT_SYMBOL
+0x1e01660e	vsnprintf	vmlinux	EXPORT_SYMBOL
+0x5c7574a1	vsprintf	vmlinux	EXPORT_SYMBOL
+0x94961283	vunmap	vmlinux	EXPORT_SYMBOL
+0x40a9b349	vzalloc	vmlinux	EXPORT_SYMBOL
+0x9e0c711d	vzalloc_node	vmlinux	EXPORT_SYMBOL
+0x6de13801	wait_for_completion	vmlinux	EXPORT_SYMBOL
+0x262e823a	wait_for_completion_interruptible	vmlinux	EXPORT_SYMBOL
+0x4d1ff60a	wait_for_completion_timeout	vmlinux	EXPORT_SYMBOL
+0x5242b9f3	wait_on_page_bit	vmlinux	EXPORT_SYMBOL
+0xa0fbac79	wake_up_bit	vmlinux	EXPORT_SYMBOL
+0x8eab8b06	wake_up_process	vmlinux	EXPORT_SYMBOL
+0xa2517116	write_cache_pages	vmlinux	EXPORT_SYMBOL
+0x4a30eeac	xattr_full_name	vmlinux	EXPORT_SYMBOL
+0x760a0f4f	yield	vmlinux	EXPORT_SYMBOL
+0x931e0601	zap_vma_ptes	vmlinux	EXPORT_SYMBOL_GPL
diff --git a/kernel-source/thirdparty/SOURCES/Module.kabi_dup_ppc64 b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_dup_aarch64
similarity index 100%
rename from kernel-source/thirdparty/SOURCES/Module.kabi_dup_ppc64
rename to kernel-source/thirdparty/kernel/SOURCES/Module.kabi_dup_aarch64
diff --git a/kernel-source/thirdparty/SOURCES/Module.kabi_dup_ppc64le b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_dup_ppc64le
similarity index 100%
rename from kernel-source/thirdparty/SOURCES/Module.kabi_dup_ppc64le
rename to kernel-source/thirdparty/kernel/SOURCES/Module.kabi_dup_ppc64le
diff --git a/kernel-source/thirdparty/SOURCES/Module.kabi_dup_s390x b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_dup_s390x
similarity index 100%
rename from kernel-source/thirdparty/SOURCES/Module.kabi_dup_s390x
rename to kernel-source/thirdparty/kernel/SOURCES/Module.kabi_dup_s390x
diff --git a/kernel-source/thirdparty/SOURCES/Module.kabi_dup_x86_64 b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_dup_x86_64
similarity index 100%
rename from kernel-source/thirdparty/SOURCES/Module.kabi_dup_x86_64
rename to kernel-source/thirdparty/kernel/SOURCES/Module.kabi_dup_x86_64
diff --git a/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_ppc64le b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_ppc64le
new file mode 100644
index 0000000..650325a
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_ppc64le
@@ -0,0 +1,718 @@
+0xbd2fb756	__alloc_disk_node	vmlinux	EXPORT_SYMBOL
+0xe9a9f9e8	__alloc_pages_nodemask	vmlinux	EXPORT_SYMBOL
+0x74c48aa6	__alloc_skb	vmlinux	EXPORT_SYMBOL
+0x43a53735	__alloc_workqueue_key	vmlinux	EXPORT_SYMBOL_GPL
+0x39b52d19	__bitmap_and	vmlinux	EXPORT_SYMBOL
+0xadfdfcef	__bitmap_andnot	vmlinux	EXPORT_SYMBOL
+0xf3e6402e	__bitmap_equal	vmlinux	EXPORT_SYMBOL
+0xbb35675b	__bitmap_intersects	vmlinux	EXPORT_SYMBOL
+0xa084749a	__bitmap_or	vmlinux	EXPORT_SYMBOL
+0x4df119fa	__bitmap_parse	vmlinux	EXPORT_SYMBOL
+0x63c4d61f	__bitmap_weight	vmlinux	EXPORT_SYMBOL
+0xf6fc8791	__bitmap_xor	vmlinux	EXPORT_SYMBOL
+0x88db9f48	__check_object_size	vmlinux	EXPORT_SYMBOL
+0xfd07d522	__class_register	vmlinux	EXPORT_SYMBOL_GPL
+0xf9f94ae4	__cpu_online_mask	vmlinux	EXPORT_SYMBOL
+0xd1370be3	__cpu_possible_mask	vmlinux	EXPORT_SYMBOL
+0xfa39b300	__cpu_present_mask	vmlinux	EXPORT_SYMBOL
+0x0e4ba049	__cpuhp_remove_state	vmlinux	EXPORT_SYMBOL
+0xf66a486e	__cpuhp_setup_state	vmlinux	EXPORT_SYMBOL
+0x466c14a7	__delay	vmlinux	EXPORT_SYMBOL
+0x326735ea	__dev_kfree_skb_any	vmlinux	EXPORT_SYMBOL
+0x2a30f7ab	__dynamic_dev_dbg	vmlinux	EXPORT_SYMBOL
+0x9b7fe4d4	__dynamic_pr_debug	vmlinux	EXPORT_SYMBOL
+0xd7468b16	__free_pages	vmlinux	EXPORT_SYMBOL
+0x93fca811	__get_free_pages	vmlinux	EXPORT_SYMBOL
+0x85ffcda1	__init_rwsem	vmlinux	EXPORT_SYMBOL
+0xe3f29f70	__init_waitqueue_head	vmlinux	EXPORT_SYMBOL
+0x8b8de8ae	__ioremap	vmlinux	EXPORT_SYMBOL
+0x45a55ec8	__iounmap	vmlinux	EXPORT_SYMBOL
+0x0d542439	__ipv6_addr_type	vmlinux	EXPORT_SYMBOL
+0xd2b09ce5	__kmalloc	vmlinux	EXPORT_SYMBOL
+0x68f31cbd	__list_add_valid	vmlinux	EXPORT_SYMBOL
+0xe1537255	__list_del_entry_valid	vmlinux	EXPORT_SYMBOL
+0x3c3fce39	__local_bh_enable_ip	vmlinux	EXPORT_SYMBOL
+0x8218e49b	__lock_page	vmlinux	EXPORT_SYMBOL
+0x0eab5cd4	__mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
+0xebbb3390	__module_get	vmlinux	EXPORT_SYMBOL
+0x7f02188f	__msecs_to_jiffies	vmlinux	EXPORT_SYMBOL
+0x93178084	__mutex_init	vmlinux	EXPORT_SYMBOL
+0x3022d5be	__napi_schedule	vmlinux	EXPORT_SYMBOL
+0xb3d364d8	__netdev_alloc_skb	vmlinux	EXPORT_SYMBOL
+0x46c47fb6	__node_distance	vmlinux	EXPORT_SYMBOL
+0x9ac40166	__page_file_index	vmlinux	EXPORT_SYMBOL_GPL
+0xb6d1e6c9	__page_mapcount	vmlinux	EXPORT_SYMBOL_GPL
+0x56f09de5	__pagevec_release	vmlinux	EXPORT_SYMBOL
+0x499bfc6d	__per_cpu_offset	vmlinux	EXPORT_SYMBOL
+0x6128b5fc	__printk_ratelimit	vmlinux	EXPORT_SYMBOL
+0x1c7f2961	__pskb_pull_tail	vmlinux	EXPORT_SYMBOL
+0xeb94d60b	__put_cred	vmlinux	EXPORT_SYMBOL
+0xccbfcd34	__put_page	vmlinux	EXPORT_SYMBOL
+0x6301916d	__put_task_struct	vmlinux	EXPORT_SYMBOL_GPL
+0xdee37668	__register_chrdev	vmlinux	EXPORT_SYMBOL
+0xe45c1b14	__release_region	vmlinux	EXPORT_SYMBOL
+0x5eba9410	__request_region	vmlinux	EXPORT_SYMBOL
+0xa2beceb1	__scsi_execute	vmlinux	EXPORT_SYMBOL
+0x5490149f	__scsi_iterate_devices	vmlinux	EXPORT_SYMBOL
+0xb5892fee	__skb_gso_segment	vmlinux	EXPORT_SYMBOL
+0xdb7305a1	__stack_chk_fail	vmlinux	EXPORT_SYMBOL
+0x56c083d3	__task_pid_nr_ns	vmlinux	EXPORT_SYMBOL
+0x0faef0ed	__tasklet_schedule	vmlinux	EXPORT_SYMBOL
+0x6bc3fbc0	__unregister_chrdev	vmlinux	EXPORT_SYMBOL
+0xf1969a8e	__usecs_to_jiffies	vmlinux	EXPORT_SYMBOL
+0x8e879bb7	__vmalloc	vmlinux	EXPORT_SYMBOL
+0xfdd6bbad	__wake_up	vmlinux	EXPORT_SYMBOL
+0xad27f361	__warn_printk	vmlinux	EXPORT_SYMBOL
+0x81a07f4e	_atomic_dec_and_lock	vmlinux	EXPORT_SYMBOL
+0xa1c76e0a	_cond_resched	vmlinux	EXPORT_SYMBOL
+0x362ef408	_copy_from_user	vmlinux	EXPORT_SYMBOL
+0xb44ad4b3	_copy_to_user	vmlinux	EXPORT_SYMBOL
+0x11089ac7	_ctype	vmlinux	EXPORT_SYMBOL
+0x89797060	_raw_read_lock	vmlinux	EXPORT_SYMBOL
+0x4c11435a	_raw_read_lock_bh	vmlinux	EXPORT_SYMBOL
+0x7c003aef	_raw_read_lock_irq	vmlinux	EXPORT_SYMBOL
+0xbfb8b0b7	_raw_read_lock_irqsave	vmlinux	EXPORT_SYMBOL
+0xfdb6cedc	_raw_read_unlock_bh	vmlinux	EXPORT_SYMBOL
+0xcc17504d	_raw_read_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
+0xde48e9ca	_raw_spin_lock	vmlinux	EXPORT_SYMBOL
+0xaf063510	_raw_spin_lock_bh	vmlinux	EXPORT_SYMBOL
+0xcd0529c7	_raw_spin_lock_irq	vmlinux	EXPORT_SYMBOL
+0xf5222143	_raw_spin_lock_irqsave	vmlinux	EXPORT_SYMBOL
+0x9d7ce8dd	_raw_spin_trylock	vmlinux	EXPORT_SYMBOL
+0xe4fe8ca1	_raw_spin_unlock_bh	vmlinux	EXPORT_SYMBOL
+0x5c37f319	_raw_spin_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
+0xac26b820	_raw_write_lock	vmlinux	EXPORT_SYMBOL
+0xc47cdf9c	_raw_write_lock_bh	vmlinux	EXPORT_SYMBOL
+0x0e8f30f6	_raw_write_lock_irq	vmlinux	EXPORT_SYMBOL
+0xaa6e4df5	_raw_write_lock_irqsave	vmlinux	EXPORT_SYMBOL
+0x99afe916	_raw_write_unlock_bh	vmlinux	EXPORT_SYMBOL
+0xae545f06	_raw_write_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
+0x318f7969	add_timer	vmlinux	EXPORT_SYMBOL
+0x1e875885	add_wait_queue	vmlinux	EXPORT_SYMBOL
+0xcdc0349c	add_wait_queue_exclusive	vmlinux	EXPORT_SYMBOL
+0xe3ec2f2b	alloc_chrdev_region	vmlinux	EXPORT_SYMBOL
+0x4f50e6bf	alloc_netdev_mqs	vmlinux	EXPORT_SYMBOL
+0x706edf8d	alloc_pages_current	vmlinux	EXPORT_SYMBOL
+0x25301bc6	arch_wb_cache_pmem	vmlinux	EXPORT_SYMBOL
+0x836d61d0	atomic_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
+0xb5aa10af	atomic_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xad73041f	autoremove_wake_function	vmlinux	EXPORT_SYMBOL
+0xc95bd655	bdev_read_only	vmlinux	EXPORT_SYMBOL
+0x26a28c24	bdevname	vmlinux	EXPORT_SYMBOL
+0x04d005e9	bdget	vmlinux	EXPORT_SYMBOL
+0x49f98962	bdget_disk	vmlinux	EXPORT_SYMBOL
+0xdafcc31e	bdput	vmlinux	EXPORT_SYMBOL
+0xc93d6ffd	bio_add_page	vmlinux	EXPORT_SYMBOL
+0x2fa51f6a	bio_alloc_bioset	vmlinux	EXPORT_SYMBOL
+0x5e4d1389	bio_associate_blkg	vmlinux	EXPORT_SYMBOL_GPL
+0x9383d8ae	bio_clone_fast	vmlinux	EXPORT_SYMBOL
+0xdb5cfff3	bio_endio	vmlinux	EXPORT_SYMBOL
+0xe4a1a0e7	bio_free_pages	vmlinux	EXPORT_SYMBOL
+0x79274a8e	bio_init	vmlinux	EXPORT_SYMBOL
+0x3be99598	bio_put	vmlinux	EXPORT_SYMBOL
+0xb6e127fe	bioset_exit	vmlinux	EXPORT_SYMBOL
+0xc202aa37	bioset_init	vmlinux	EXPORT_SYMBOL
+0x16e297c3	bit_wait	vmlinux	EXPORT_SYMBOL
+0x63a7c28c	bitmap_find_free_region	vmlinux	EXPORT_SYMBOL
+0x1b015d25	bitmap_parselist	vmlinux	EXPORT_SYMBOL
+0xf474c21c	bitmap_print_to_pagebuf	vmlinux	EXPORT_SYMBOL
+0x574c2e74	bitmap_release_region	vmlinux	EXPORT_SYMBOL
+0x3bd45587	blk_alloc_queue	vmlinux	EXPORT_SYMBOL
+0xd27b25dd	blk_check_plugged	vmlinux	EXPORT_SYMBOL
+0xfbc0b865	blk_cleanup_queue	vmlinux	EXPORT_SYMBOL
+0x17e2528e	blk_execute_rq	vmlinux	EXPORT_SYMBOL
+0x06143169	blk_execute_rq_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0xf2215f74	blk_finish_plug	vmlinux	EXPORT_SYMBOL
+0xb041390d	blk_get_request	vmlinux	EXPORT_SYMBOL
+0xf2c723f9	blk_mq_end_request	vmlinux	EXPORT_SYMBOL
+0xef8da47b	blk_mq_run_hw_queues	vmlinux	EXPORT_SYMBOL
+0xb80386aa	blk_mq_tag_to_rq	vmlinux	EXPORT_SYMBOL
+0xc8c293b0	blk_mq_unique_tag	vmlinux	EXPORT_SYMBOL
+0x7da4e490	blk_put_request	vmlinux	EXPORT_SYMBOL
+0xec62788a	blk_queue_bounce_limit	vmlinux	EXPORT_SYMBOL
+0x167fb27c	blk_queue_dma_alignment	vmlinux	EXPORT_SYMBOL
+0xb60944e8	blk_queue_flag_clear	vmlinux	EXPORT_SYMBOL
+0xf401fc91	blk_queue_flag_set	vmlinux	EXPORT_SYMBOL
+0x3301ae3b	blk_queue_io_min	vmlinux	EXPORT_SYMBOL
+0xb044ed63	blk_queue_io_opt	vmlinux	EXPORT_SYMBOL
+0x0d0bd454	blk_queue_logical_block_size	vmlinux	EXPORT_SYMBOL
+0x51456866	blk_queue_make_request	vmlinux	EXPORT_SYMBOL
+0xc96a3797	blk_queue_max_discard_sectors	vmlinux	EXPORT_SYMBOL
+0xd296be7e	blk_queue_max_hw_sectors	vmlinux	EXPORT_SYMBOL
+0x6597e1f5	blk_queue_max_segment_size	vmlinux	EXPORT_SYMBOL
+0xf22eba89	blk_queue_max_segments	vmlinux	EXPORT_SYMBOL
+0x0f0d3fed	blk_queue_max_write_same_sectors	vmlinux	EXPORT_SYMBOL
+0xbde4727f	blk_queue_physical_block_size	vmlinux	EXPORT_SYMBOL
+0x3cdfcc78	blk_queue_rq_timeout	vmlinux	EXPORT_SYMBOL_GPL
+0x42a7b063	blk_queue_segment_boundary	vmlinux	EXPORT_SYMBOL
+0x7e1da995	blk_queue_split	vmlinux	EXPORT_SYMBOL
+0xd8e1c056	blk_queue_stack_limits	vmlinux	EXPORT_SYMBOL
+0xbfbeed39	blk_queue_update_dma_alignment	vmlinux	EXPORT_SYMBOL
+0x642e93ed	blk_queue_virt_boundary	vmlinux	EXPORT_SYMBOL
+0xb2b56a22	blk_queue_write_cache	vmlinux	EXPORT_SYMBOL_GPL
+0x1acb3f36	blk_rq_append_bio	vmlinux	EXPORT_SYMBOL
+0x45eafe77	blk_rq_map_kern	vmlinux	EXPORT_SYMBOL
+0xf1b1a8ba	blk_rq_map_user_iov	vmlinux	EXPORT_SYMBOL
+0x9faea3c8	blk_rq_unmap_user	vmlinux	EXPORT_SYMBOL
+0x506fbfbe	blk_set_stacking_limits	vmlinux	EXPORT_SYMBOL
+0x7a9b37e8	blk_start_plug	vmlinux	EXPORT_SYMBOL
+0x84502a47	blk_status_to_errno	vmlinux	EXPORT_SYMBOL_GPL
+0x22339412	blk_verify_command	vmlinux	EXPORT_SYMBOL
+0xcf04e564	blkdev_fsync	vmlinux	EXPORT_SYMBOL
+0x63a46f8f	blkdev_get	vmlinux	EXPORT_SYMBOL
+0xd441ce00	blkdev_get_by_dev	vmlinux	EXPORT_SYMBOL
+0x729bbb38	blkdev_get_by_path	vmlinux	EXPORT_SYMBOL
+0xe832978f	blkdev_issue_discard	vmlinux	EXPORT_SYMBOL
+0x2aa3d6aa	blkdev_issue_write_same	vmlinux	EXPORT_SYMBOL
+0x8e881f70	blkdev_issue_zeroout	vmlinux	EXPORT_SYMBOL
+0x6ac252dc	blkdev_put	vmlinux	EXPORT_SYMBOL
+0x76bf7be8	blocking_notifier_call_chain	vmlinux	EXPORT_SYMBOL_GPL
+0x9cc76645	blocking_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
+0x1482a5ff	blocking_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x2e1c1d6d	bsg_job_done	vmlinux	EXPORT_SYMBOL_GPL
+0x28aa6a67	call_rcu	vmlinux	EXPORT_SYMBOL_GPL
+0xa7eedcc4	call_usermodehelper	vmlinux	EXPORT_SYMBOL
+0xb5a8d234	cancel_delayed_work	vmlinux	EXPORT_SYMBOL
+0x68f927fb	cancel_delayed_work_sync	vmlinux	EXPORT_SYMBOL
+0x81b1b255	cancel_work_sync	vmlinux	EXPORT_SYMBOL_GPL
+0xc6cbbc89	capable	vmlinux	EXPORT_SYMBOL
+0x0f71855d	cdev_add	vmlinux	EXPORT_SYMBOL
+0x25f1ca58	cdev_alloc	vmlinux	EXPORT_SYMBOL
+0x8c8a9e76	cdev_del	vmlinux	EXPORT_SYMBOL
+0xb272d980	cdev_init	vmlinux	EXPORT_SYMBOL
+0xcedfad7e	class_destroy	vmlinux	EXPORT_SYMBOL_GPL
+0x11c02784	class_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xf883a655	clear_inode	vmlinux	EXPORT_SYMBOL
+0x2b5f7505	clear_nlink	vmlinux	EXPORT_SYMBOL
+0xf0d61d9c	commit_creds	vmlinux	EXPORT_SYMBOL
+0x86b18094	complete	vmlinux	EXPORT_SYMBOL
+0xce54c938	complete_all	vmlinux	EXPORT_SYMBOL
+0x17ca4a75	complete_and_exit	vmlinux	EXPORT_SYMBOL
+0xbaa03c4f	consume_skb	vmlinux	EXPORT_SYMBOL
+0x1389da84	cpu_bit_bitmap	vmlinux	EXPORT_SYMBOL_GPL
+0xe314e8fb	cpu_core_map	vmlinux	EXPORT_SYMBOL
+0x76b59b33	cpu_sibling_map	vmlinux	EXPORT_SYMBOL
+0x7c46233a	cpufreq_quick_get	vmlinux	EXPORT_SYMBOL
+0xbe10340d	cpumask_next	vmlinux	EXPORT_SYMBOL
+0x82d6b0d0	cpumask_next_and	vmlinux	EXPORT_SYMBOL
+0xa04f945a	cpus_read_lock	vmlinux	EXPORT_SYMBOL_GPL
+0x18fb2caf	cpus_read_unlock	vmlinux	EXPORT_SYMBOL_GPL
+0xfb5a22d2	create_empty_buffers	vmlinux	EXPORT_SYMBOL
+0xd6b78945	crypto_ahash_digest	vmlinux	EXPORT_SYMBOL_GPL
+0xed9ce398	crypto_ahash_final	vmlinux	EXPORT_SYMBOL_GPL
+0x680d34f7	crypto_ahash_setkey	vmlinux	EXPORT_SYMBOL_GPL
+0x15e10691	crypto_alloc_ahash	vmlinux	EXPORT_SYMBOL_GPL
+0xab8484f3	crypto_destroy_tfm	vmlinux	EXPORT_SYMBOL_GPL
+0x85d4826a	crypto_register_shash	vmlinux	EXPORT_SYMBOL_GPL
+0xb9b1170a	crypto_unregister_shash	vmlinux	EXPORT_SYMBOL_GPL
+0x4d65cbd5	csum_ipv6_magic	vmlinux	EXPORT_SYMBOL
+0x9b8c2b15	current_time	vmlinux	EXPORT_SYMBOL
+0xe76c170a	d_add	vmlinux	EXPORT_SYMBOL
+0x215d090a	d_drop	vmlinux	EXPORT_SYMBOL
+0x43b0d275	d_instantiate	vmlinux	EXPORT_SYMBOL
+0x72abfd0d	d_make_root	vmlinux	EXPORT_SYMBOL
+0xaab920de	d_obtain_alias	vmlinux	EXPORT_SYMBOL
+0x8609823d	d_prune_aliases	vmlinux	EXPORT_SYMBOL
+0x6d32959a	deactivate_super	vmlinux	EXPORT_SYMBOL
+0x83290c21	default_llseek	vmlinux	EXPORT_SYMBOL
+0xaad8c7d6	default_wake_function	vmlinux	EXPORT_SYMBOL
+0xd63ecb11	del_gendisk	vmlinux	EXPORT_SYMBOL
+0xfa5223cc	del_timer	vmlinux	EXPORT_SYMBOL
+0xec02a35f	del_timer_sync	vmlinux	EXPORT_SYMBOL
+0x0c1c794e	delayed_work_timer_fn	vmlinux	EXPORT_SYMBOL
+0x770d8b9a	dentry_open	vmlinux	EXPORT_SYMBOL
+0x8c03d20c	destroy_workqueue	vmlinux	EXPORT_SYMBOL_GPL
+0xc4c53c5a	dev_get_by_index	vmlinux	EXPORT_SYMBOL
+0x9b061ec6	dev_get_by_name	vmlinux	EXPORT_SYMBOL
+0x4dcc9784	dev_mc_add	vmlinux	EXPORT_SYMBOL
+0xdc65877f	dev_mc_del	vmlinux	EXPORT_SYMBOL
+0x2646aca5	dev_queue_xmit	vmlinux	EXPORT_SYMBOL
+0x81bb630c	dev_set_mac_address	vmlinux	EXPORT_SYMBOL
+0xed26c2e8	dev_set_mtu	vmlinux	EXPORT_SYMBOL
+0x5a7963bd	dev_set_promiscuity	vmlinux	EXPORT_SYMBOL
+0x697cc68b	device_add_disk	vmlinux	EXPORT_SYMBOL
+0x97c5ca02	device_create	vmlinux	EXPORT_SYMBOL_GPL
+0xaef0f53d	device_destroy	vmlinux	EXPORT_SYMBOL_GPL
+0x0c5cab1d	dget_parent	vmlinux	EXPORT_SYMBOL
+0x495cd368	dma_get_required_mask	vmlinux	EXPORT_SYMBOL_GPL
+0x72a05d02	dma_set_coherent_mask	vmlinux	EXPORT_SYMBOL
+0x89d4d619	dma_set_mask	vmlinux	EXPORT_SYMBOL
+0x4f68e5c9	do_gettimeofday	vmlinux	EXPORT_SYMBOL
+0xdc9498dd	down	vmlinux	EXPORT_SYMBOL
+0x4289f7df	down_interruptible	vmlinux	EXPORT_SYMBOL
+0xe2f335e6	down_read	vmlinux	EXPORT_SYMBOL
+0x66c2d037	down_read_trylock	vmlinux	EXPORT_SYMBOL
+0x7bcc3ec6	down_trylock	vmlinux	EXPORT_SYMBOL
+0x53279303	down_write	vmlinux	EXPORT_SYMBOL
+0x2c51690c	down_write_trylock	vmlinux	EXPORT_SYMBOL
+0x29397620	downgrade_write	vmlinux	EXPORT_SYMBOL
+0xa39e1127	dput	vmlinux	EXPORT_SYMBOL
+0xad580bc5	dst_release	vmlinux	EXPORT_SYMBOL
+0x6b2dc060	dump_stack	vmlinux	EXPORT_SYMBOL
+0xd0c05159	emergency_restart	vmlinux	EXPORT_SYMBOL_GPL
+0x612bfd89	errno_to_blk_status	vmlinux	EXPORT_SYMBOL_GPL
+0x3a968436	eth_type_trans	vmlinux	EXPORT_SYMBOL
+0x3c8d07f4	ether_setup	vmlinux	EXPORT_SYMBOL
+0xf0819cd7	ethtool_op_get_link	vmlinux	EXPORT_SYMBOL
+0x72ecfb60	fc_remove_host	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
+0x6f604080	fget	vmlinux	EXPORT_SYMBOL
+0x1fce28b4	filemap_fault	vmlinux	EXPORT_SYMBOL
+0x73ea0039	filp_close	vmlinux	EXPORT_SYMBOL
+0xfa48c755	filp_open	vmlinux	EXPORT_SYMBOL
+0xc0a3d105	find_next_bit	vmlinux	EXPORT_SYMBOL
+0x479c3c86	find_next_zero_bit	vmlinux	EXPORT_SYMBOL
+0x925ecc1c	find_pid_ns	vmlinux	EXPORT_SYMBOL_GPL
+0xc8acd63b	find_vma	vmlinux	EXPORT_SYMBOL
+0xcb2ea0b5	finish_wait	vmlinux	EXPORT_SYMBOL
+0x9e320ced	flush_signals	vmlinux	EXPORT_SYMBOL
+0x42160169	flush_workqueue	vmlinux	EXPORT_SYMBOL
+0x0318bd7c	force_sig	vmlinux	EXPORT_SYMBOL
+0xcbd4898c	fortify_panic	vmlinux	EXPORT_SYMBOL
+0x88e09c58	fput	vmlinux	EXPORT_SYMBOL
+0xc1514a3b	free_irq	vmlinux	EXPORT_SYMBOL
+0x61ae3cb3	free_netdev	vmlinux	EXPORT_SYMBOL
+0x4302d0eb	free_pages	vmlinux	EXPORT_SYMBOL
+0xeca6a1c9	freeze_bdev	vmlinux	EXPORT_SYMBOL
+0x0d668bdf	from_kgid	vmlinux	EXPORT_SYMBOL
+0x412ea5ab	from_kuid	vmlinux	EXPORT_SYMBOL
+0xd8a1f9d7	fs_bio_set	vmlinux	EXPORT_SYMBOL
+0x84e40240	fsync_bdev	vmlinux	EXPORT_SYMBOL
+0xd781320c	generic_end_io_acct	vmlinux	EXPORT_SYMBOL
+0x95100200	generic_file_llseek	vmlinux	EXPORT_SYMBOL
+0xe6c12425	generic_file_open	vmlinux	EXPORT_SYMBOL
+0x9c6a77c2	generic_fillattr	vmlinux	EXPORT_SYMBOL
+0x88da4ba6	generic_make_request	vmlinux	EXPORT_SYMBOL
+0xe7e933d5	generic_permission	vmlinux	EXPORT_SYMBOL
+0x12e610b2	generic_read_dir	vmlinux	EXPORT_SYMBOL
+0xff731d53	generic_shutdown_super	vmlinux	EXPORT_SYMBOL
+0xd14dd387	generic_start_io_acct	vmlinux	EXPORT_SYMBOL
+0x13835e2c	genl_register_family	vmlinux	EXPORT_SYMBOL
+0xde4bc7e8	genl_unregister_family	vmlinux	EXPORT_SYMBOL
+0x53716976	genlmsg_put	vmlinux	EXPORT_SYMBOL
+0x7db57ca1	get_fs_type	vmlinux	EXPORT_SYMBOL
+0x70a08a1a	get_gendisk	vmlinux	EXPORT_SYMBOL
+0x79aa04a2	get_random_bytes	vmlinux	EXPORT_SYMBOL
+0x405c1144	get_seconds	vmlinux	EXPORT_SYMBOL
+0xca422a53	get_task_mm	vmlinux	EXPORT_SYMBOL_GPL
+0xfbc324e2	get_user_pages	vmlinux	EXPORT_SYMBOL
+0xe2770924	get_user_pages_remote	vmlinux	EXPORT_SYMBOL
+0x9b388444	get_zeroed_page	vmlinux	EXPORT_SYMBOL
+0x3e2b0ba6	groups_alloc	vmlinux	EXPORT_SYMBOL
+0x643d9ba1	groups_free	vmlinux	EXPORT_SYMBOL
+0x004fb4d3	hrtimer_cancel	vmlinux	EXPORT_SYMBOL_GPL
+0x11d2e344	hrtimer_forward	vmlinux	EXPORT_SYMBOL_GPL
+0xc7a8cdd3	hrtimer_init	vmlinux	EXPORT_SYMBOL_GPL
+0x45c6f660	hrtimer_start_range_ns	vmlinux	EXPORT_SYMBOL_GPL
+0xa76b636c	hrtimer_try_to_cancel	vmlinux	EXPORT_SYMBOL_GPL
+0x793cd7ca	igrab	vmlinux	EXPORT_SYMBOL
+0x39461d6a	in_egroup_p	vmlinux	EXPORT_SYMBOL
+0x8b8059bd	in_group_p	vmlinux	EXPORT_SYMBOL
+0x6b8bd985	init_net	vmlinux	EXPORT_SYMBOL
+0x379a6fa3	init_task	vmlinux	EXPORT_SYMBOL
+0x4cc8f9c8	init_timer_key	vmlinux	EXPORT_SYMBOL
+0xcd104c41	init_uts_ns	vmlinux	EXPORT_SYMBOL_GPL
+0xfe487975	init_wait_entry	vmlinux	EXPORT_SYMBOL
+0x0e0c42d5	inode_init_always	vmlinux	EXPORT_SYMBOL
+0xc1062e70	inode_permission	vmlinux	EXPORT_SYMBOL
+0x5ed90adc	int_to_scsilun	vmlinux	EXPORT_SYMBOL
+0x2a909b64	invalidate_partition	vmlinux	EXPORT_SYMBOL
+0x93a6e0b2	io_schedule	vmlinux	EXPORT_SYMBOL
+0xfbc4f89e	io_schedule_timeout	vmlinux	EXPORT_SYMBOL
+0x8e82828e	iomem_resource	vmlinux	EXPORT_SYMBOL
+0xedc03953	iounmap	vmlinux	EXPORT_SYMBOL
+0xc4d9f382	ipmi_create_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xf388b18b	ipmi_destroy_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xd1f579d0	ipmi_free_recv_msg	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xf5531bea	ipmi_poll_interface	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xbefa94a8	ipmi_register_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x4c2054d7	ipmi_request_settime	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x50f65edf	ipmi_set_gets_events	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xfaaa4831	ipmi_set_my_address	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xa19985b7	ipmi_smi_msg_received	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xe4330a39	ipmi_unregister_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xe4f4665b	ipmi_validate_addr	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xdde2e42b	iput	vmlinux	EXPORT_SYMBOL
+0x3fb2bd8a	irq_set_affinity_hint	vmlinux	EXPORT_SYMBOL_GPL
+0x6df086a9	iterate_dir	vmlinux	EXPORT_SYMBOL
+0x02df50b0	jiffies	vmlinux	EXPORT_SYMBOL
+0x23619cff	jiffies_64	vmlinux	EXPORT_SYMBOL
+0x37befc70	jiffies_to_msecs	vmlinux	EXPORT_SYMBOL
+0x188ea314	jiffies_to_timespec64	vmlinux	EXPORT_SYMBOL
+0x7f24de73	jiffies_to_usecs	vmlinux	EXPORT_SYMBOL
+0x44b5ee9a	kasprintf	vmlinux	EXPORT_SYMBOL
+0xc1695596	kern_path	vmlinux	EXPORT_SYMBOL
+0xcbc738dc	kernel_recvmsg	vmlinux	EXPORT_SYMBOL
+0x3c89b8de	kernel_sendmsg	vmlinux	EXPORT_SYMBOL
+0xcac4c99d	kernel_setsockopt	vmlinux	EXPORT_SYMBOL
+0x265bbef9	kexec_crash_loaded	vmlinux	EXPORT_SYMBOL_GPL
+0x037a0cba	kfree	vmlinux	EXPORT_SYMBOL
+0x19f462ab	kfree_call_rcu	vmlinux	EXPORT_SYMBOL_GPL
+0xc4455496	kfree_skb	vmlinux	EXPORT_SYMBOL
+0xb1b2910d	kill_anon_super	vmlinux	EXPORT_SYMBOL
+0x722787fb	kill_block_super	vmlinux	EXPORT_SYMBOL
+0x9fea59e6	kmalloc_caches	vmlinux	EXPORT_SYMBOL
+0xa202a8e5	kmalloc_order_trace	vmlinux	EXPORT_SYMBOL
+0x95d11f02	kmem_cache_alloc	vmlinux	EXPORT_SYMBOL
+0x5c2ec2e9	kmem_cache_alloc_node	vmlinux	EXPORT_SYMBOL
+0x520182d8	kmem_cache_alloc_node_trace	vmlinux	EXPORT_SYMBOL
+0x02ef7df2	kmem_cache_alloc_trace	vmlinux	EXPORT_SYMBOL
+0xeba4e118	kmem_cache_create	vmlinux	EXPORT_SYMBOL
+0xc5ff13f3	kmem_cache_create_usercopy	vmlinux	EXPORT_SYMBOL
+0x72c085cb	kmem_cache_destroy	vmlinux	EXPORT_SYMBOL
+0x2256aa0e	kmem_cache_free	vmlinux	EXPORT_SYMBOL
+0x0b0c4ae0	kmem_cache_shrink	vmlinux	EXPORT_SYMBOL
+0x40e308cc	kobject_add	vmlinux	EXPORT_SYMBOL
+0x71f56a28	kobject_create_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0xd896d94b	kobject_del	vmlinux	EXPORT_SYMBOL
+0x787d886d	kobject_get	vmlinux	EXPORT_SYMBOL
+0x2f602452	kobject_init	vmlinux	EXPORT_SYMBOL
+0x9c38868d	kobject_init_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0x679ca598	kobject_put	vmlinux	EXPORT_SYMBOL
+0x6039d1aa	kobject_set_name	vmlinux	EXPORT_SYMBOL
+0xb2b088f7	kobject_uevent_env	vmlinux	EXPORT_SYMBOL_GPL
+0x85f5e2aa	krealloc	vmlinux	EXPORT_SYMBOL
+0x83664397	kset_create_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0x2c5d4b84	kset_find_obj	vmlinux	EXPORT_SYMBOL_GPL
+0x933e7222	kset_register	vmlinux	EXPORT_SYMBOL
+0x2c1bca87	kset_unregister	vmlinux	EXPORT_SYMBOL
+0xc499ae1e	kstrdup	vmlinux	EXPORT_SYMBOL
+0xaf6ae696	kstrndup	vmlinux	EXPORT_SYMBOL
+0x752d5f5b	kstrtobool	vmlinux	EXPORT_SYMBOL
+0xc6c09e43	kstrtobool_from_user	vmlinux	EXPORT_SYMBOL
+0x373db350	kstrtoint	vmlinux	EXPORT_SYMBOL
+0x10f1064d	kstrtoint_from_user	vmlinux	EXPORT_SYMBOL
+0x1b17e06c	kstrtoll	vmlinux	EXPORT_SYMBOL
+0x42adadb9	kstrtoll_from_user	vmlinux	EXPORT_SYMBOL
+0x3fa0d062	kstrtou16	vmlinux	EXPORT_SYMBOL
+0xa46f2f1b	kstrtouint	vmlinux	EXPORT_SYMBOL
+0xdc20f322	kstrtouint_from_user	vmlinux	EXPORT_SYMBOL
+0x7c3aaa29	kstrtoul_from_user	vmlinux	EXPORT_SYMBOL
+0x060ea2d6	kstrtoull	vmlinux	EXPORT_SYMBOL
+0x886ce541	kstrtoull_from_user	vmlinux	EXPORT_SYMBOL
+0x4f45403d	kthread_bind	vmlinux	EXPORT_SYMBOL
+0xdb17e531	kthread_create_on_node	vmlinux	EXPORT_SYMBOL
+0xb3f7646e	kthread_should_stop	vmlinux	EXPORT_SYMBOL
+0x08aa79b9	kthread_stop	vmlinux	EXPORT_SYMBOL
+0xb43f9365	ktime_get	vmlinux	EXPORT_SYMBOL_GPL
+0x484f6edf	ktime_get_coarse_real_ts64	vmlinux	EXPORT_SYMBOL
+0x1edb69d6	ktime_get_raw_ts64	vmlinux	EXPORT_SYMBOL
+0x953e1b9e	ktime_get_real_seconds	vmlinux	EXPORT_SYMBOL_GPL
+0x9ec6ca96	ktime_get_real_ts64	vmlinux	EXPORT_SYMBOL
+0xa9320d27	ktime_get_seconds	vmlinux	EXPORT_SYMBOL_GPL
+0x5e515be6	ktime_get_ts64	vmlinux	EXPORT_SYMBOL_GPL
+0xc4f0da12	ktime_get_with_offset	vmlinux	EXPORT_SYMBOL_GPL
+0x5c017464	kvasprintf	vmlinux	EXPORT_SYMBOL
+0x7aa1756e	kvfree	vmlinux	EXPORT_SYMBOL
+0x7a4497db	kzfree	vmlinux	EXPORT_SYMBOL
+0x9b6c6695	lock_page_memcg	vmlinux	EXPORT_SYMBOL
+0x05119f43	lock_sock_nested	vmlinux	EXPORT_SYMBOL
+0xb473e2c2	lockref_get	vmlinux	EXPORT_SYMBOL
+0x61fb7a9f	lookup_one_len	vmlinux	EXPORT_SYMBOL
+0xd7516168	make_kgid	vmlinux	EXPORT_SYMBOL
+0xa273b345	make_kuid	vmlinux	EXPORT_SYMBOL
+0x3a9585b4	mark_buffer_dirty	vmlinux	EXPORT_SYMBOL
+0x267a05eb	mark_page_accessed	vmlinux	EXPORT_SYMBOL
+0xacf4d843	match_strdup	vmlinux	EXPORT_SYMBOL
+0x44e9a829	match_token	vmlinux	EXPORT_SYMBOL
+0x54c99fac	mem_section	vmlinux	EXPORT_SYMBOL
+0xa07a37f0	memchr	vmlinux	EXPORT_SYMBOL
+0x1c3e02e4	memcmp	vmlinux	EXPORT_SYMBOL
+0x4829a47e	memcpy	vmlinux	EXPORT_SYMBOL
+0x5a9f1d63	memmove	vmlinux	EXPORT_SYMBOL
+0x27864d57	memparse	vmlinux	EXPORT_SYMBOL
+0xd05dbae2	mempool_alloc	vmlinux	EXPORT_SYMBOL
+0x183fa88b	mempool_alloc_slab	vmlinux	EXPORT_SYMBOL
+0xf6156d7c	mempool_create	vmlinux	EXPORT_SYMBOL
+0x124c832f	mempool_destroy	vmlinux	EXPORT_SYMBOL
+0x483a62ce	mempool_free	vmlinux	EXPORT_SYMBOL
+0x8a99a016	mempool_free_slab	vmlinux	EXPORT_SYMBOL
+0xf812cff6	memscan	vmlinux	EXPORT_SYMBOL
+0xdcb764ad	memset	vmlinux	EXPORT_SYMBOL
+0xae87cad0	memstart_addr	vmlinux	EXPORT_SYMBOL_GPL
+0x8e3ca75a	misc_deregister	vmlinux	EXPORT_SYMBOL
+0x5f96c76a	misc_register	vmlinux	EXPORT_SYMBOL
+0x74267b6a	mmput	vmlinux	EXPORT_SYMBOL_GPL
+0xe7bb9278	mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
+0x108aece2	mmu_notifier_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x55cf1d09	mntget	vmlinux	EXPORT_SYMBOL
+0x19735022	mntput	vmlinux	EXPORT_SYMBOL
+0xebca8b54	mod_delayed_work_on	vmlinux	EXPORT_SYMBOL_GPL
+0x28985b9f	mod_timer	vmlinux	EXPORT_SYMBOL
+0xaac80d5b	mod_timer_pending	vmlinux	EXPORT_SYMBOL
+0x0cb17aa0	module_put	vmlinux	EXPORT_SYMBOL
+0xc67fd5d6	module_refcount	vmlinux	EXPORT_SYMBOL
+0xf9a482f9	msleep	vmlinux	EXPORT_SYMBOL
+0x0acd8cc7	mutex_lock	vmlinux	EXPORT_SYMBOL
+0xfe9919db	mutex_lock_killable	vmlinux	EXPORT_SYMBOL
+0xdb145de4	mutex_trylock	vmlinux	EXPORT_SYMBOL
+0xacccd1c7	mutex_unlock	vmlinux	EXPORT_SYMBOL
+0x29a25f73	napi_complete_done	vmlinux	EXPORT_SYMBOL
+0x55e7de77	napi_disable	vmlinux	EXPORT_SYMBOL
+0x6789c30a	napi_gro_receive	vmlinux	EXPORT_SYMBOL
+0xb4437d66	napi_schedule_prep	vmlinux	EXPORT_SYMBOL
+0x5f54724d	netdev_features_change	vmlinux	EXPORT_SYMBOL
+0x189cdfcf	netdev_rx_handler_register	vmlinux	EXPORT_SYMBOL_GPL
+0xe64a3332	netdev_rx_handler_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xb5a76c55	netif_carrier_off	vmlinux	EXPORT_SYMBOL
+0x5b30592f	netif_carrier_on	vmlinux	EXPORT_SYMBOL
+0x2570dcf9	netif_napi_add	vmlinux	EXPORT_SYMBOL
+0xc5002b6c	netif_napi_del	vmlinux	EXPORT_SYMBOL
+0xa8d2ae03	netif_receive_skb	vmlinux	EXPORT_SYMBOL
+0x6b481123	netif_rx	vmlinux	EXPORT_SYMBOL
+0x7323b2b8	netlink_broadcast	vmlinux	EXPORT_SYMBOL
+0xccb2f658	netlink_unicast	vmlinux	EXPORT_SYMBOL
+0x3ed60697	new_inode	vmlinux	EXPORT_SYMBOL
+0xfdc1bd61	nla_put	vmlinux	EXPORT_SYMBOL
+0x21675c27	node_data	vmlinux	EXPORT_SYMBOL
+0x7d9514c1	node_to_cpumask_map	vmlinux	EXPORT_SYMBOL
+0x017de3d5	nr_cpu_ids	vmlinux	EXPORT_SYMBOL
+0xfe26fc7c	nr_node_ids	vmlinux	EXPORT_SYMBOL
+0x1e1e140e	ns_to_timespec64	vmlinux	EXPORT_SYMBOL
+0x2f548802	ns_to_timeval	vmlinux	EXPORT_SYMBOL
+0xffae8e8b	nsecs_to_jiffies	vmlinux	EXPORT_SYMBOL_GPL
+0x618911fc	numa_node	vmlinux	EXPORT_SYMBOL
+0x5541ea93	on_each_cpu	vmlinux	EXPORT_SYMBOL
+0x1984d421	out_of_line_wait_on_bit	vmlinux	EXPORT_SYMBOL
+0xb4ed1542	override_creds	vmlinux	EXPORT_SYMBOL
+0xe2f5c6dd	page_mapped	vmlinux	EXPORT_SYMBOL
+0x310cac87	pagevec_lookup_range	vmlinux	EXPORT_SYMBOL
+0x93580f66	pagevec_lookup_range_tag	vmlinux	EXPORT_SYMBOL
+0x7c1372e8	panic	vmlinux	EXPORT_SYMBOL
+0x1af62a99	panic_notifier_list	vmlinux	EXPORT_SYMBOL
+0xeeb5677c	param_array_ops	vmlinux	EXPORT_SYMBOL
+0xee37999d	param_get_int	vmlinux	EXPORT_SYMBOL
+0x558292a3	param_ops_bool	vmlinux	EXPORT_SYMBOL
+0xe1416d38	param_ops_byte	vmlinux	EXPORT_SYMBOL
+0x9346142d	param_ops_charp	vmlinux	EXPORT_SYMBOL
+0x8841d7a6	param_ops_int	vmlinux	EXPORT_SYMBOL
+0x08849f3e	param_ops_long	vmlinux	EXPORT_SYMBOL
+0x1423a481	param_ops_short	vmlinux	EXPORT_SYMBOL
+0xb632e17e	param_ops_string	vmlinux	EXPORT_SYMBOL
+0x21f07483	param_ops_uint	vmlinux	EXPORT_SYMBOL
+0x4329fada	param_ops_ulong	vmlinux	EXPORT_SYMBOL
+0x845bf19c	param_set_bool	vmlinux	EXPORT_SYMBOL
+0x7f1e5415	param_set_int	vmlinux	EXPORT_SYMBOL
+0x452956c3	path_put	vmlinux	EXPORT_SYMBOL
+0xf31b03d7	pci_alloc_irq_vectors_affinity	vmlinux	EXPORT_SYMBOL
+0xa88018ab	pci_free_irq_vectors	vmlinux	EXPORT_SYMBOL
+0x5b93719c	pci_get_device	vmlinux	EXPORT_SYMBOL
+0xa8a1f4b9	pci_irq_vector	vmlinux	EXPORT_SYMBOL
+0xf8227d0c	pci_read_config_byte	vmlinux	EXPORT_SYMBOL
+0x72e97242	pci_read_config_dword	vmlinux	EXPORT_SYMBOL
+0x68f62e8e	pci_set_power_state	vmlinux	EXPORT_SYMBOL
+0x2f86d362	pci_write_config_byte	vmlinux	EXPORT_SYMBOL
+0xc91f2174	pci_write_config_dword	vmlinux	EXPORT_SYMBOL
+0xaf552787	pcie_capability_clear_and_set_word	vmlinux	EXPORT_SYMBOL
+0xd4341508	pcie_capability_read_dword	vmlinux	EXPORT_SYMBOL
+0xaefdfc34	pcie_capability_read_word	vmlinux	EXPORT_SYMBOL
+0x5ba85d00	pid_task	vmlinux	EXPORT_SYMBOL
+0x60a32ea9	pm_power_off	vmlinux	EXPORT_SYMBOL_GPL
+0x7647f63c	prepare_creds	vmlinux	EXPORT_SYMBOL
+0x2dc4e156	prepare_to_wait	vmlinux	EXPORT_SYMBOL
+0x4488bc8a	prepare_to_wait_event	vmlinux	EXPORT_SYMBOL
+0x67f3d52d	prepare_to_wait_exclusive	vmlinux	EXPORT_SYMBOL
+0x86e03c0a	print_stack_trace	vmlinux	EXPORT_SYMBOL_GPL
+0x27e1a049	printk	vmlinux	EXPORT_SYMBOL
+0xb6f8b121	pskb_expand_head	vmlinux	EXPORT_SYMBOL
+0xf140518e	put_disk	vmlinux	EXPORT_SYMBOL
+0xd1e4ec46	queue_delayed_work_on	vmlinux	EXPORT_SYMBOL
+0x121da905	queue_work_on	vmlinux	EXPORT_SYMBOL
+0x0c250fa8	raid_class_attach	drivers/scsi/raid_class	EXPORT_SYMBOL
+0x0ac73c38	raid_class_release	drivers/scsi/raid_class	EXPORT_SYMBOL
+0x60a13e90	rcu_barrier	vmlinux	EXPORT_SYMBOL_GPL
+0xacef9390	read_cache_pages	vmlinux	EXPORT_SYMBOL
+0xfb6af58d	recalc_sigpending	vmlinux	EXPORT_SYMBOL
+0x71a50dbc	register_blkdev	vmlinux	EXPORT_SYMBOL
+0x21738ae4	register_filesystem	vmlinux	EXPORT_SYMBOL
+0x60352082	register_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
+0xf68285c0	register_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
+0xece78940	register_netdev	vmlinux	EXPORT_SYMBOL
+0xd2da1048	register_netdevice_notifier	vmlinux	EXPORT_SYMBOL
+0x3517383e	register_reboot_notifier	vmlinux	EXPORT_SYMBOL
+0x8bded847	register_sysctl_table	vmlinux	EXPORT_SYMBOL
+0xe5612323	release_sock	vmlinux	EXPORT_SYMBOL
+0x45fbc758	remap_pfn_range	vmlinux	EXPORT_SYMBOL
+0xec4fb493	remove_wait_queue	vmlinux	EXPORT_SYMBOL
+0xd6b8e852	request_threaded_irq	vmlinux	EXPORT_SYMBOL
+0x646324f1	revert_creds	vmlinux	EXPORT_SYMBOL
+0xc7a4fbed	rtnl_lock	vmlinux	EXPORT_SYMBOL
+0x6e720ff2	rtnl_unlock	vmlinux	EXPORT_SYMBOL
+0xb2ff65c1	sas_attach_transport	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x14889b25	sas_end_device_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x3fe6c634	sas_expander_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x5d763490	sas_phy_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x3dd88e57	sas_phy_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x1bc526e8	sas_phy_free	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x07494f0e	sas_port_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xe4e71a67	sas_port_add_phy	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xc7cf0119	sas_port_alloc_num	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xd4d89336	sas_port_delete	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xc675bc0c	sas_port_delete_phy	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x55430dcf	sas_read_port_mode_page	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x6c734d81	sas_release_transport	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x42b487ee	sas_remove_host	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xcf06224f	sas_rphy_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x4629baf2	save_stack_trace	vmlinux	EXPORT_SYMBOL_GPL
+0xf6b9fe80	save_stack_trace_tsk	vmlinux	EXPORT_SYMBOL_GPL
+0xf00a6c73	sched_setscheduler	vmlinux	EXPORT_SYMBOL_GPL
+0x01000e51	schedule	vmlinux	EXPORT_SYMBOL
+0x1f37cca7	schedule_hrtimeout_range	vmlinux	EXPORT_SYMBOL_GPL
+0x8ddd8aad	schedule_timeout	vmlinux	EXPORT_SYMBOL
+0x054496b4	schedule_timeout_interruptible	vmlinux	EXPORT_SYMBOL
+0x151f4898	schedule_timeout_uninterruptible	vmlinux	EXPORT_SYMBOL
+0x2cde6db6	scmd_printk	vmlinux	EXPORT_SYMBOL
+0x4ca9669f	scnprintf	vmlinux	EXPORT_SYMBOL
+0x88c4d6c9	scsi_add_device	vmlinux	EXPORT_SYMBOL
+0x12df6747	scsi_add_host_with_dma	vmlinux	EXPORT_SYMBOL
+0xa271c070	scsi_block_requests	vmlinux	EXPORT_SYMBOL
+0xe02c3b1b	scsi_change_queue_depth	vmlinux	EXPORT_SYMBOL
+0x0fc9c7eb	scsi_device_get	vmlinux	EXPORT_SYMBOL
+0x3412d7fd	scsi_device_lookup	vmlinux	EXPORT_SYMBOL
+0x88010140	scsi_device_put	vmlinux	EXPORT_SYMBOL
+0x2ebe7ce3	scsi_device_set_state	vmlinux	EXPORT_SYMBOL
+0x72ea7b2d	scsi_device_type	vmlinux	EXPORT_SYMBOL
+0x9587afc5	scsi_dma_map	vmlinux	EXPORT_SYMBOL
+0x2bceb8bd	scsi_dma_unmap	vmlinux	EXPORT_SYMBOL
+0x51f73b05	scsi_get_vpd_page	vmlinux	EXPORT_SYMBOL_GPL
+0x76c77103	scsi_host_alloc	vmlinux	EXPORT_SYMBOL
+0x3fc892b2	scsi_host_lookup	vmlinux	EXPORT_SYMBOL
+0x1637f908	scsi_host_put	vmlinux	EXPORT_SYMBOL
+0x2949f981	scsi_internal_device_block_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0x48c68c97	scsi_internal_device_unblock_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0x0e0acdde	scsi_is_host_device	vmlinux	EXPORT_SYMBOL
+0x5e52f8c2	scsi_is_sdev_device	vmlinux	EXPORT_SYMBOL
+0x52c2d610	scsi_print_command	vmlinux	EXPORT_SYMBOL
+0x947bd204	scsi_register_driver	vmlinux	EXPORT_SYMBOL
+0x3ec0af37	scsi_remove_device	vmlinux	EXPORT_SYMBOL
+0xab9ae0a5	scsi_remove_host	vmlinux	EXPORT_SYMBOL
+0x2fdde61c	scsi_remove_target	vmlinux	EXPORT_SYMBOL
+0x0dc7d4e4	scsi_scan_host	vmlinux	EXPORT_SYMBOL
+0x81212eab	scsi_unblock_requests	vmlinux	EXPORT_SYMBOL
+0xea3c8e4e	scsilun_to_int	vmlinux	EXPORT_SYMBOL
+0x379c007a	sdev_prefix_printk	vmlinux	EXPORT_SYMBOL
+0xad676cf1	security_d_instantiate	vmlinux	EXPORT_SYMBOL
+0xf19572d9	send_sig	vmlinux	EXPORT_SYMBOL
+0x7e4f6edd	seq_lseek	vmlinux	EXPORT_SYMBOL
+0x8bf6b235	seq_printf	vmlinux	EXPORT_SYMBOL
+0xa5cb4218	seq_read	vmlinux	EXPORT_SYMBOL
+0xb1c46695	set_cpus_allowed_ptr	vmlinux	EXPORT_SYMBOL_GPL
+0x025483b1	set_current_groups	vmlinux	EXPORT_SYMBOL
+0x2c55f5b3	set_device_ro	vmlinux	EXPORT_SYMBOL
+0xecce1eec	set_disk_ro	vmlinux	EXPORT_SYMBOL
+0x9e61bb05	set_freezable	vmlinux	EXPORT_SYMBOL
+0x565757c3	set_nlink	vmlinux	EXPORT_SYMBOL
+0x365acda7	set_normalized_timespec64	vmlinux	EXPORT_SYMBOL
+0xc860de5b	set_page_dirty	vmlinux	EXPORT_SYMBOL
+0xdcd015ca	set_page_dirty_lock	vmlinux	EXPORT_SYMBOL
+0xb63fa495	set_user_nice	vmlinux	EXPORT_SYMBOL
+0xa0aa157a	shrink_dcache_parent	vmlinux	EXPORT_SYMBOL
+0x40c7247c	si_meminfo	vmlinux	EXPORT_SYMBOL
+0x6a5fa363	sigprocmask	vmlinux	EXPORT_SYMBOL
+0xfa0c49b0	simple_statfs	vmlinux	EXPORT_SYMBOL
+0x0b742fd7	simple_strtol	vmlinux	EXPORT_SYMBOL
+0x20000329	simple_strtoul	vmlinux	EXPORT_SYMBOL
+0x61b7b126	simple_strtoull	vmlinux	EXPORT_SYMBOL
+0xdb3d6fd7	single_open	vmlinux	EXPORT_SYMBOL
+0xb5976876	single_release	vmlinux	EXPORT_SYMBOL
+0x039996d6	skb_checksum_help	vmlinux	EXPORT_SYMBOL
+0x8bc0864a	skb_clone	vmlinux	EXPORT_SYMBOL
+0xffc7bdb0	skb_copy	vmlinux	EXPORT_SYMBOL
+0x79933aca	skb_copy_bits	vmlinux	EXPORT_SYMBOL
+0xc1752ff5	skb_dequeue	vmlinux	EXPORT_SYMBOL
+0x4bf70cdf	skb_pull	vmlinux	EXPORT_SYMBOL
+0x92c3bdbb	skb_push	vmlinux	EXPORT_SYMBOL
+0x8505dfe5	skb_put	vmlinux	EXPORT_SYMBOL
+0x45e7e740	skb_queue_purge	vmlinux	EXPORT_SYMBOL
+0x344fb340	skb_queue_tail	vmlinux	EXPORT_SYMBOL
+0x6954cec6	skb_realloc_headroom	vmlinux	EXPORT_SYMBOL
+0x0aff4025	skb_trim	vmlinux	EXPORT_SYMBOL
+0xf9038bcf	smp_call_function_many	vmlinux	EXPORT_SYMBOL
+0x6228c21f	smp_call_function_single	vmlinux	EXPORT_SYMBOL
+0x28318305	snprintf	vmlinux	EXPORT_SYMBOL
+0xe5cd3986	sock_create_kern	vmlinux	EXPORT_SYMBOL
+0xa0597f26	sock_release	vmlinux	EXPORT_SYMBOL
+0x91715312	sprintf	vmlinux	EXPORT_SYMBOL
+0x20c55ae0	sscanf	vmlinux	EXPORT_SYMBOL
+0x38ed3903	starget_for_each_device	vmlinux	EXPORT_SYMBOL
+0xaafdc258	strcasecmp	vmlinux	EXPORT_SYMBOL
+0x061651be	strcat	vmlinux	EXPORT_SYMBOL
+0x349cba85	strchr	vmlinux	EXPORT_SYMBOL
+0xe2d5255a	strcmp	vmlinux	EXPORT_SYMBOL
+0xe914e41e	strcpy	vmlinux	EXPORT_SYMBOL
+0x1ac5d3cb	strcspn	vmlinux	EXPORT_SYMBOL
+0x77bc13a0	strim	vmlinux	EXPORT_SYMBOL
+0xf9c0b663	strlcat	vmlinux	EXPORT_SYMBOL
+0x5792f848	strlcpy	vmlinux	EXPORT_SYMBOL
+0x98cf60b3	strlen	vmlinux	EXPORT_SYMBOL
+0x96b29254	strncasecmp	vmlinux	EXPORT_SYMBOL
+0x5a921311	strncmp	vmlinux	EXPORT_SYMBOL
+0x9166fada	strncpy	vmlinux	EXPORT_SYMBOL
+0x24428be5	strncpy_from_user	vmlinux	EXPORT_SYMBOL
+0xa916b694	strnlen	vmlinux	EXPORT_SYMBOL
+0xc310b981	strnstr	vmlinux	EXPORT_SYMBOL
+0x9a1dfd65	strpbrk	vmlinux	EXPORT_SYMBOL
+0x9f984513	strrchr	vmlinux	EXPORT_SYMBOL
+0x85df9b6c	strsep	vmlinux	EXPORT_SYMBOL
+0xc29bf967	strspn	vmlinux	EXPORT_SYMBOL
+0x1e6d26a8	strstr	vmlinux	EXPORT_SYMBOL
+0x99284de9	submit_bio	vmlinux	EXPORT_SYMBOL
+0x2d3385d3	system_wq	vmlinux	EXPORT_SYMBOL
+0x9545af6d	tasklet_init	vmlinux	EXPORT_SYMBOL
+0x4b4e8905	thaw_bdev	vmlinux	EXPORT_SYMBOL
+0x0d641a42	try_module_get	vmlinux	EXPORT_SYMBOL
+0x03219a49	try_wait_for_completion	vmlinux	EXPORT_SYMBOL
+0x4272345a	unlock_page	vmlinux	EXPORT_SYMBOL
+0xc1081e15	unlock_page_memcg	vmlinux	EXPORT_SYMBOL
+0xd35bbe96	unmap_mapping_range	vmlinux	EXPORT_SYMBOL
+0xb5a459dc	unregister_blkdev	vmlinux	EXPORT_SYMBOL
+0x6091b333	unregister_chrdev_region	vmlinux	EXPORT_SYMBOL
+0x831b341c	unregister_filesystem	vmlinux	EXPORT_SYMBOL
+0x2fe252cc	unregister_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
+0xfe029963	unregister_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
+0xeb5b21c3	unregister_netdev	vmlinux	EXPORT_SYMBOL
+0x9d0d6206	unregister_netdevice_notifier	vmlinux	EXPORT_SYMBOL
+0xac1a55be	unregister_reboot_notifier	vmlinux	EXPORT_SYMBOL
+0x6c8ad3d4	unregister_sysctl_table	vmlinux	EXPORT_SYMBOL
+0x18d33e2c	unuse_mm	vmlinux	EXPORT_SYMBOL_GPL
+0x5412c7c7	up	vmlinux	EXPORT_SYMBOL
+0x77597a53	up_read	vmlinux	EXPORT_SYMBOL
+0xe8b97e4f	up_write	vmlinux	EXPORT_SYMBOL
+0x5840fc32	use_mm	vmlinux	EXPORT_SYMBOL_GPL
+0x12a38747	usleep_range	vmlinux	EXPORT_SYMBOL
+0x999e8297	vfree	vmlinux	EXPORT_SYMBOL
+0x03672e30	vfs_create	vmlinux	EXPORT_SYMBOL
+0x9dccbaed	vfs_fsync	vmlinux	EXPORT_SYMBOL
+0x0581dc22	vfs_fsync_range	vmlinux	EXPORT_SYMBOL
+0x2077fb73	vfs_getattr	vmlinux	EXPORT_SYMBOL
+0x21bd0da7	vfs_link	vmlinux	EXPORT_SYMBOL
+0x185af989	vfs_llseek	vmlinux	EXPORT_SYMBOL
+0xfb935b3b	vfs_mkdir	vmlinux	EXPORT_SYMBOL
+0xf3d2f054	vfs_mknod	vmlinux	EXPORT_SYMBOL
+0x81340cfe	vfs_readlink	vmlinux	EXPORT_SYMBOL
+0x6b298fb1	vfs_rename	vmlinux	EXPORT_SYMBOL
+0x881c0dab	vfs_rmdir	vmlinux	EXPORT_SYMBOL
+0xe280d43c	vfs_statfs	vmlinux	EXPORT_SYMBOL
+0x3649bcdb	vfs_symlink	vmlinux	EXPORT_SYMBOL
+0xc679b268	vfs_unlink	vmlinux	EXPORT_SYMBOL
+0x847551c6	vm_mmap	vmlinux	EXPORT_SYMBOL
+0x5b56860c	vm_munmap	vmlinux	EXPORT_SYMBOL
+0xd6ee688f	vmalloc	vmlinux	EXPORT_SYMBOL
+0xb41a32fe	vmalloc_to_page	vmlinux	EXPORT_SYMBOL
+0x09002b42	vmap	vmlinux	EXPORT_SYMBOL
+0x4b8b3239	vprintk	vmlinux	EXPORT_SYMBOL
+0xf5e03a3a	vscnprintf	vmlinux	EXPORT_SYMBOL
+0x1e01660e	vsnprintf	vmlinux	EXPORT_SYMBOL
+0x5c7574a1	vsprintf	vmlinux	EXPORT_SYMBOL
+0x94961283	vunmap	vmlinux	EXPORT_SYMBOL
+0x40a9b349	vzalloc	vmlinux	EXPORT_SYMBOL
+0x9e0c711d	vzalloc_node	vmlinux	EXPORT_SYMBOL
+0x3cc4cb8a	wait_for_completion	vmlinux	EXPORT_SYMBOL
+0x7bdb61d1	wait_for_completion_interruptible	vmlinux	EXPORT_SYMBOL
+0xdf35ccd0	wait_for_completion_timeout	vmlinux	EXPORT_SYMBOL
+0x60ea8b88	wait_on_page_bit	vmlinux	EXPORT_SYMBOL
+0xa0fbac79	wake_up_bit	vmlinux	EXPORT_SYMBOL
+0xfaa3e0a8	wake_up_process	vmlinux	EXPORT_SYMBOL
+0xe1c693c4	write_cache_pages	vmlinux	EXPORT_SYMBOL
+0xbfb4dace	xattr_full_name	vmlinux	EXPORT_SYMBOL
+0x760a0f4f	yield	vmlinux	EXPORT_SYMBOL
+0xcebd81ba	zap_vma_ptes	vmlinux	EXPORT_SYMBOL_GPL
diff --git a/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_s390x b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_s390x
new file mode 100644
index 0000000..54edc9a
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_s390x
@@ -0,0 +1,677 @@
+0xbad5065b	__alloc_disk_node	vmlinux	EXPORT_SYMBOL
+0x353525e2	__alloc_pages_nodemask	vmlinux	EXPORT_SYMBOL
+0x08c6f12f	__alloc_skb	vmlinux	EXPORT_SYMBOL
+0x43a53735	__alloc_workqueue_key	vmlinux	EXPORT_SYMBOL_GPL
+0x39b52d19	__bitmap_and	vmlinux	EXPORT_SYMBOL
+0xadfdfcef	__bitmap_andnot	vmlinux	EXPORT_SYMBOL
+0xf3e6402e	__bitmap_equal	vmlinux	EXPORT_SYMBOL
+0xbb35675b	__bitmap_intersects	vmlinux	EXPORT_SYMBOL
+0xa084749a	__bitmap_or	vmlinux	EXPORT_SYMBOL
+0x4df119fa	__bitmap_parse	vmlinux	EXPORT_SYMBOL
+0x63c4d61f	__bitmap_weight	vmlinux	EXPORT_SYMBOL
+0xf6fc8791	__bitmap_xor	vmlinux	EXPORT_SYMBOL
+0x88db9f48	__check_object_size	vmlinux	EXPORT_SYMBOL
+0xef23e5f2	__class_register	vmlinux	EXPORT_SYMBOL_GPL
+0x477e59a3	__cpu_online_mask	vmlinux	EXPORT_SYMBOL
+0xeab12d78	__cpu_possible_mask	vmlinux	EXPORT_SYMBOL
+0x123fe020	__cpu_present_mask	vmlinux	EXPORT_SYMBOL
+0x0e4ba049	__cpuhp_remove_state	vmlinux	EXPORT_SYMBOL
+0xf66a486e	__cpuhp_setup_state	vmlinux	EXPORT_SYMBOL
+0x466c14a7	__delay	vmlinux	EXPORT_SYMBOL
+0x9b38696b	__dev_kfree_skb_any	vmlinux	EXPORT_SYMBOL
+0xad39e9c4	__dynamic_dev_dbg	vmlinux	EXPORT_SYMBOL
+0x2af29fbb	__dynamic_pr_debug	vmlinux	EXPORT_SYMBOL
+0xf487d506	__free_pages	vmlinux	EXPORT_SYMBOL
+0x93fca811	__get_free_pages	vmlinux	EXPORT_SYMBOL
+0xb206a404	__init_rwsem	vmlinux	EXPORT_SYMBOL
+0x66b98575	__init_waitqueue_head	vmlinux	EXPORT_SYMBOL
+0x0d542439	__ipv6_addr_type	vmlinux	EXPORT_SYMBOL
+0x5a34a45c	__kmalloc	vmlinux	EXPORT_SYMBOL
+0x68f31cbd	__list_add_valid	vmlinux	EXPORT_SYMBOL
+0xe1537255	__list_del_entry_valid	vmlinux	EXPORT_SYMBOL
+0x3c3fce39	__local_bh_enable_ip	vmlinux	EXPORT_SYMBOL
+0xc299db1e	__lock_page	vmlinux	EXPORT_SYMBOL
+0x0f3efd7e	__module_get	vmlinux	EXPORT_SYMBOL
+0x7f02188f	__msecs_to_jiffies	vmlinux	EXPORT_SYMBOL
+0x7de16fd2	__mutex_init	vmlinux	EXPORT_SYMBOL
+0xd9eacad1	__napi_schedule	vmlinux	EXPORT_SYMBOL
+0x338bbef8	__ndelay	vmlinux	EXPORT_SYMBOL
+0x854820b0	__netdev_alloc_skb	vmlinux	EXPORT_SYMBOL
+0x46c47fb6	__node_distance	vmlinux	EXPORT_SYMBOL
+0xb0fab9b6	__page_file_index	vmlinux	EXPORT_SYMBOL_GPL
+0xa9f7f0c8	__page_mapcount	vmlinux	EXPORT_SYMBOL_GPL
+0xea10ef73	__pagevec_release	vmlinux	EXPORT_SYMBOL
+0x5ecfeec6	__per_cpu_offset	vmlinux	EXPORT_SYMBOL
+0x6128b5fc	__printk_ratelimit	vmlinux	EXPORT_SYMBOL
+0xd5e51fa6	__pskb_pull_tail	vmlinux	EXPORT_SYMBOL
+0x25207859	__put_cred	vmlinux	EXPORT_SYMBOL
+0xbd1b113a	__put_page	vmlinux	EXPORT_SYMBOL
+0x8a2e5412	__put_task_struct	vmlinux	EXPORT_SYMBOL_GPL
+0xcdf1ba58	__register_chrdev	vmlinux	EXPORT_SYMBOL
+0xe45c1b14	__release_region	vmlinux	EXPORT_SYMBOL
+0x5eba9410	__request_region	vmlinux	EXPORT_SYMBOL
+0x3d1ba4bd	__scsi_execute	vmlinux	EXPORT_SYMBOL
+0x8e155a75	__scsi_iterate_devices	vmlinux	EXPORT_SYMBOL
+0x60b53515	__skb_gso_segment	vmlinux	EXPORT_SYMBOL
+0xfcbb0506	__task_pid_nr_ns	vmlinux	EXPORT_SYMBOL
+0x0faef0ed	__tasklet_schedule	vmlinux	EXPORT_SYMBOL
+0x3fb0b9e3	__udelay	vmlinux	EXPORT_SYMBOL
+0x6bc3fbc0	__unregister_chrdev	vmlinux	EXPORT_SYMBOL
+0xf1969a8e	__usecs_to_jiffies	vmlinux	EXPORT_SYMBOL
+0x8e879bb7	__vmalloc	vmlinux	EXPORT_SYMBOL
+0x1bf301c3	__wake_up	vmlinux	EXPORT_SYMBOL
+0xad27f361	__warn_printk	vmlinux	EXPORT_SYMBOL
+0xdac97957	_atomic_dec_and_lock	vmlinux	EXPORT_SYMBOL
+0xa1c76e0a	_cond_resched	vmlinux	EXPORT_SYMBOL
+0x11089ac7	_ctype	vmlinux	EXPORT_SYMBOL
+0x318f7969	add_timer	vmlinux	EXPORT_SYMBOL
+0xdd1cdbcb	add_wait_queue	vmlinux	EXPORT_SYMBOL
+0xbc7bede7	add_wait_queue_exclusive	vmlinux	EXPORT_SYMBOL
+0xe3ec2f2b	alloc_chrdev_region	vmlinux	EXPORT_SYMBOL
+0xf680ff75	alloc_netdev_mqs	vmlinux	EXPORT_SYMBOL
+0x55943cc5	alloc_pages_current	vmlinux	EXPORT_SYMBOL
+0x27545244	atomic_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
+0xb80506b4	atomic_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xad73041f	autoremove_wake_function	vmlinux	EXPORT_SYMBOL
+0xdee2a044	bdev_read_only	vmlinux	EXPORT_SYMBOL
+0xcffc7760	bdevname	vmlinux	EXPORT_SYMBOL
+0x9cc4c622	bdget	vmlinux	EXPORT_SYMBOL
+0x67299c43	bdget_disk	vmlinux	EXPORT_SYMBOL
+0x4f9ea2de	bdput	vmlinux	EXPORT_SYMBOL
+0x5ae9fa97	bio_add_page	vmlinux	EXPORT_SYMBOL
+0x1eba2de8	bio_alloc_bioset	vmlinux	EXPORT_SYMBOL
+0x10521e9f	bio_associate_blkg	vmlinux	EXPORT_SYMBOL_GPL
+0x9e6bffea	bio_clone_fast	vmlinux	EXPORT_SYMBOL
+0x062d91c7	bio_endio	vmlinux	EXPORT_SYMBOL
+0xc5dc56d4	bio_free_pages	vmlinux	EXPORT_SYMBOL
+0x61ceb111	bio_init	vmlinux	EXPORT_SYMBOL
+0xe1d7d1f7	bio_put	vmlinux	EXPORT_SYMBOL
+0x05a23c54	bioset_exit	vmlinux	EXPORT_SYMBOL
+0xc2bb6fa8	bioset_init	vmlinux	EXPORT_SYMBOL
+0x16e297c3	bit_wait	vmlinux	EXPORT_SYMBOL
+0x63a7c28c	bitmap_find_free_region	vmlinux	EXPORT_SYMBOL
+0x1b015d25	bitmap_parselist	vmlinux	EXPORT_SYMBOL
+0xf474c21c	bitmap_print_to_pagebuf	vmlinux	EXPORT_SYMBOL
+0x574c2e74	bitmap_release_region	vmlinux	EXPORT_SYMBOL
+0xaaedfec1	blk_alloc_queue	vmlinux	EXPORT_SYMBOL
+0xd27b25dd	blk_check_plugged	vmlinux	EXPORT_SYMBOL
+0xd6f7e808	blk_cleanup_queue	vmlinux	EXPORT_SYMBOL
+0x15fb0bd6	blk_execute_rq	vmlinux	EXPORT_SYMBOL
+0xe8c38795	blk_execute_rq_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0xf2215f74	blk_finish_plug	vmlinux	EXPORT_SYMBOL
+0x64da1f92	blk_get_request	vmlinux	EXPORT_SYMBOL
+0x43848dcb	blk_mq_end_request	vmlinux	EXPORT_SYMBOL
+0xc6d58e81	blk_mq_run_hw_queues	vmlinux	EXPORT_SYMBOL
+0xac74ebd1	blk_mq_tag_to_rq	vmlinux	EXPORT_SYMBOL
+0x18434dad	blk_mq_unique_tag	vmlinux	EXPORT_SYMBOL
+0x39485c32	blk_put_request	vmlinux	EXPORT_SYMBOL
+0x1b441442	blk_queue_bounce_limit	vmlinux	EXPORT_SYMBOL
+0x35b83e2d	blk_queue_dma_alignment	vmlinux	EXPORT_SYMBOL
+0x895ca6dd	blk_queue_flag_clear	vmlinux	EXPORT_SYMBOL
+0xb715399a	blk_queue_flag_set	vmlinux	EXPORT_SYMBOL
+0xa4839f18	blk_queue_io_min	vmlinux	EXPORT_SYMBOL
+0x01067a1f	blk_queue_io_opt	vmlinux	EXPORT_SYMBOL
+0xa77b78b2	blk_queue_logical_block_size	vmlinux	EXPORT_SYMBOL
+0x4518bc30	blk_queue_make_request	vmlinux	EXPORT_SYMBOL
+0x91dc3731	blk_queue_max_discard_sectors	vmlinux	EXPORT_SYMBOL
+0x74b89c90	blk_queue_max_hw_sectors	vmlinux	EXPORT_SYMBOL
+0xea78fb00	blk_queue_max_segment_size	vmlinux	EXPORT_SYMBOL
+0x44e0f93b	blk_queue_max_segments	vmlinux	EXPORT_SYMBOL
+0x617f755c	blk_queue_max_write_same_sectors	vmlinux	EXPORT_SYMBOL
+0x920be4ae	blk_queue_physical_block_size	vmlinux	EXPORT_SYMBOL
+0x0b2d02e1	blk_queue_rq_timeout	vmlinux	EXPORT_SYMBOL_GPL
+0xd288ad49	blk_queue_segment_boundary	vmlinux	EXPORT_SYMBOL
+0xa99ea8d0	blk_queue_split	vmlinux	EXPORT_SYMBOL
+0x328e5b86	blk_queue_stack_limits	vmlinux	EXPORT_SYMBOL
+0xa1dec5b4	blk_queue_update_dma_alignment	vmlinux	EXPORT_SYMBOL
+0x674e297e	blk_queue_virt_boundary	vmlinux	EXPORT_SYMBOL
+0xbc993d2d	blk_queue_write_cache	vmlinux	EXPORT_SYMBOL_GPL
+0xb485062d	blk_rq_append_bio	vmlinux	EXPORT_SYMBOL
+0x53f29ada	blk_rq_map_kern	vmlinux	EXPORT_SYMBOL
+0xdff0dab1	blk_rq_map_user_iov	vmlinux	EXPORT_SYMBOL
+0xb256f333	blk_rq_unmap_user	vmlinux	EXPORT_SYMBOL
+0x506fbfbe	blk_set_stacking_limits	vmlinux	EXPORT_SYMBOL
+0x7a9b37e8	blk_start_plug	vmlinux	EXPORT_SYMBOL
+0x84502a47	blk_status_to_errno	vmlinux	EXPORT_SYMBOL_GPL
+0x60974d6e	blk_verify_command	vmlinux	EXPORT_SYMBOL
+0xc26bf351	blkdev_fsync	vmlinux	EXPORT_SYMBOL
+0xda63e54f	blkdev_get	vmlinux	EXPORT_SYMBOL
+0xd1359f12	blkdev_get_by_dev	vmlinux	EXPORT_SYMBOL
+0x91f4afca	blkdev_get_by_path	vmlinux	EXPORT_SYMBOL
+0xb189071a	blkdev_issue_discard	vmlinux	EXPORT_SYMBOL
+0x70a3f385	blkdev_issue_write_same	vmlinux	EXPORT_SYMBOL
+0x3a0767f2	blkdev_issue_zeroout	vmlinux	EXPORT_SYMBOL
+0x5f0723e2	blkdev_put	vmlinux	EXPORT_SYMBOL
+0xc11480a1	blocking_notifier_call_chain	vmlinux	EXPORT_SYMBOL_GPL
+0x24fc4e18	blocking_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
+0x9511b62e	blocking_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x1786c3cd	bsg_job_done	vmlinux	EXPORT_SYMBOL_GPL
+0x28aa6a67	call_rcu	vmlinux	EXPORT_SYMBOL_GPL
+0xa7eedcc4	call_usermodehelper	vmlinux	EXPORT_SYMBOL
+0xb5a8d234	cancel_delayed_work	vmlinux	EXPORT_SYMBOL
+0x68f927fb	cancel_delayed_work_sync	vmlinux	EXPORT_SYMBOL
+0x81b1b255	cancel_work_sync	vmlinux	EXPORT_SYMBOL_GPL
+0xc6cbbc89	capable	vmlinux	EXPORT_SYMBOL
+0x1e79fc1e	cdev_add	vmlinux	EXPORT_SYMBOL
+0xb3a64551	cdev_alloc	vmlinux	EXPORT_SYMBOL
+0xbb26be3e	cdev_del	vmlinux	EXPORT_SYMBOL
+0x714dc42b	cdev_init	vmlinux	EXPORT_SYMBOL
+0x2d574c16	class_destroy	vmlinux	EXPORT_SYMBOL_GPL
+0xd0b990c6	class_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xd3cd62d8	clear_inode	vmlinux	EXPORT_SYMBOL
+0xb0414571	clear_nlink	vmlinux	EXPORT_SYMBOL
+0x0f366a31	commit_creds	vmlinux	EXPORT_SYMBOL
+0x6642d348	complete	vmlinux	EXPORT_SYMBOL
+0xd9ae583b	complete_all	vmlinux	EXPORT_SYMBOL
+0xb408061b	complete_and_exit	vmlinux	EXPORT_SYMBOL
+0x509c53ae	consume_skb	vmlinux	EXPORT_SYMBOL
+0x55181725	cpu_bit_bitmap	vmlinux	EXPORT_SYMBOL_GPL
+0xd6e64975	cpumask_next	vmlinux	EXPORT_SYMBOL
+0x4234f096	cpumask_next_and	vmlinux	EXPORT_SYMBOL
+0xa04f945a	cpus_read_lock	vmlinux	EXPORT_SYMBOL_GPL
+0x18fb2caf	cpus_read_unlock	vmlinux	EXPORT_SYMBOL_GPL
+0x5529b316	create_empty_buffers	vmlinux	EXPORT_SYMBOL
+0x077ee26b	crypto_ahash_digest	vmlinux	EXPORT_SYMBOL_GPL
+0xcd89af16	crypto_ahash_final	vmlinux	EXPORT_SYMBOL_GPL
+0xb77cd6c7	crypto_ahash_setkey	vmlinux	EXPORT_SYMBOL_GPL
+0x8e338eb3	crypto_alloc_ahash	vmlinux	EXPORT_SYMBOL_GPL
+0xc619f5bb	crypto_destroy_tfm	vmlinux	EXPORT_SYMBOL_GPL
+0x76a48e88	crypto_register_shash	vmlinux	EXPORT_SYMBOL_GPL
+0x603702cd	crypto_unregister_shash	vmlinux	EXPORT_SYMBOL_GPL
+0x4d65cbd5	csum_ipv6_magic	vmlinux	EXPORT_SYMBOL
+0xd3e51dd4	current_time	vmlinux	EXPORT_SYMBOL
+0x7d2e3bfe	d_add	vmlinux	EXPORT_SYMBOL
+0x0ccd919b	d_drop	vmlinux	EXPORT_SYMBOL
+0x1fbf6f83	d_instantiate	vmlinux	EXPORT_SYMBOL
+0x2d87fabb	d_make_root	vmlinux	EXPORT_SYMBOL
+0x16f35807	d_obtain_alias	vmlinux	EXPORT_SYMBOL
+0xf230dd2b	d_prune_aliases	vmlinux	EXPORT_SYMBOL
+0x40a680b6	deactivate_super	vmlinux	EXPORT_SYMBOL
+0xd8710616	default_llseek	vmlinux	EXPORT_SYMBOL
+0xaad8c7d6	default_wake_function	vmlinux	EXPORT_SYMBOL
+0x88d17e92	del_gendisk	vmlinux	EXPORT_SYMBOL
+0xfa5223cc	del_timer	vmlinux	EXPORT_SYMBOL
+0xec02a35f	del_timer_sync	vmlinux	EXPORT_SYMBOL
+0x0c1c794e	delayed_work_timer_fn	vmlinux	EXPORT_SYMBOL
+0x1789c7ec	dentry_open	vmlinux	EXPORT_SYMBOL
+0x8c03d20c	destroy_workqueue	vmlinux	EXPORT_SYMBOL_GPL
+0xc4d675c0	dev_get_by_index	vmlinux	EXPORT_SYMBOL
+0x7197f660	dev_get_by_name	vmlinux	EXPORT_SYMBOL
+0x6ab8ca5e	dev_mc_add	vmlinux	EXPORT_SYMBOL
+0xa31e046b	dev_mc_del	vmlinux	EXPORT_SYMBOL
+0xf7e9f593	dev_queue_xmit	vmlinux	EXPORT_SYMBOL
+0x0b3687c4	dev_set_mac_address	vmlinux	EXPORT_SYMBOL
+0x80b0cdfb	dev_set_mtu	vmlinux	EXPORT_SYMBOL
+0x7f1789d8	dev_set_promiscuity	vmlinux	EXPORT_SYMBOL
+0xafc69e48	device_add_disk	vmlinux	EXPORT_SYMBOL
+0xe8ea8981	device_create	vmlinux	EXPORT_SYMBOL_GPL
+0x50ccb4d8	device_destroy	vmlinux	EXPORT_SYMBOL_GPL
+0x2e0191a3	dget_parent	vmlinux	EXPORT_SYMBOL
+0x81fe92cc	dma_get_required_mask	vmlinux	EXPORT_SYMBOL_GPL
+0xf7bbf143	dma_set_coherent_mask	vmlinux	EXPORT_SYMBOL
+0x783b83d3	dma_set_mask	vmlinux	EXPORT_SYMBOL
+0x4f68e5c9	do_gettimeofday	vmlinux	EXPORT_SYMBOL
+0x792d7f0f	down	vmlinux	EXPORT_SYMBOL
+0x8c8c6e38	down_interruptible	vmlinux	EXPORT_SYMBOL
+0xb3e36bf8	down_read	vmlinux	EXPORT_SYMBOL
+0x918e3f5c	down_read_trylock	vmlinux	EXPORT_SYMBOL
+0xa96f184a	down_trylock	vmlinux	EXPORT_SYMBOL
+0x340cd476	down_write	vmlinux	EXPORT_SYMBOL
+0x7a975418	down_write_trylock	vmlinux	EXPORT_SYMBOL
+0x909b6ce3	downgrade_write	vmlinux	EXPORT_SYMBOL
+0xf65c32af	dput	vmlinux	EXPORT_SYMBOL
+0xa3e80006	dst_release	vmlinux	EXPORT_SYMBOL
+0x6b2dc060	dump_stack	vmlinux	EXPORT_SYMBOL
+0xd0c05159	emergency_restart	vmlinux	EXPORT_SYMBOL_GPL
+0x612bfd89	errno_to_blk_status	vmlinux	EXPORT_SYMBOL_GPL
+0x6229afcd	eth_type_trans	vmlinux	EXPORT_SYMBOL
+0x40d650b4	ether_setup	vmlinux	EXPORT_SYMBOL
+0x6871deb1	ethtool_op_get_link	vmlinux	EXPORT_SYMBOL
+0xc85dc1e1	fc_remove_host	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
+0xb695aff6	fget	vmlinux	EXPORT_SYMBOL
+0xcb8d3ac5	filemap_fault	vmlinux	EXPORT_SYMBOL
+0xc1fa776a	filp_close	vmlinux	EXPORT_SYMBOL
+0x8f77bbce	filp_open	vmlinux	EXPORT_SYMBOL
+0xb352177e	find_first_bit	vmlinux	EXPORT_SYMBOL
+0xf11543ff	find_first_zero_bit	vmlinux	EXPORT_SYMBOL
+0xc0a3d105	find_next_bit	vmlinux	EXPORT_SYMBOL
+0x479c3c86	find_next_zero_bit	vmlinux	EXPORT_SYMBOL
+0xfeaa46b3	find_pid_ns	vmlinux	EXPORT_SYMBOL_GPL
+0x92060f73	find_vma	vmlinux	EXPORT_SYMBOL
+0x848d22b6	finish_wait	vmlinux	EXPORT_SYMBOL
+0x1c4b1496	flush_signals	vmlinux	EXPORT_SYMBOL
+0x42160169	flush_workqueue	vmlinux	EXPORT_SYMBOL
+0xc32e7dec	force_sig	vmlinux	EXPORT_SYMBOL
+0xcbd4898c	fortify_panic	vmlinux	EXPORT_SYMBOL
+0xa12dd047	fput	vmlinux	EXPORT_SYMBOL
+0xc1514a3b	free_irq	vmlinux	EXPORT_SYMBOL
+0x80143ea4	free_netdev	vmlinux	EXPORT_SYMBOL
+0x4302d0eb	free_pages	vmlinux	EXPORT_SYMBOL
+0x4e752f60	freeze_bdev	vmlinux	EXPORT_SYMBOL
+0x705b4edc	from_kgid	vmlinux	EXPORT_SYMBOL
+0x8f257cbf	from_kuid	vmlinux	EXPORT_SYMBOL
+0x8f2c4377	fs_bio_set	vmlinux	EXPORT_SYMBOL
+0xb4130f62	fsync_bdev	vmlinux	EXPORT_SYMBOL
+0x7e5b69ce	generic_end_io_acct	vmlinux	EXPORT_SYMBOL
+0x3e7ce286	generic_file_llseek	vmlinux	EXPORT_SYMBOL
+0x617a01ed	generic_file_open	vmlinux	EXPORT_SYMBOL
+0xcb60911f	generic_fillattr	vmlinux	EXPORT_SYMBOL
+0x999daaf9	generic_make_request	vmlinux	EXPORT_SYMBOL
+0xfd725913	generic_permission	vmlinux	EXPORT_SYMBOL
+0x7dfa4df6	generic_read_dir	vmlinux	EXPORT_SYMBOL
+0x2b6e0767	generic_shutdown_super	vmlinux	EXPORT_SYMBOL
+0xf7db95bf	generic_start_io_acct	vmlinux	EXPORT_SYMBOL
+0x3fe85dc0	genl_register_family	vmlinux	EXPORT_SYMBOL
+0x676ece90	genl_unregister_family	vmlinux	EXPORT_SYMBOL
+0xfd247baf	genlmsg_put	vmlinux	EXPORT_SYMBOL
+0x53feea65	get_fs_type	vmlinux	EXPORT_SYMBOL
+0xd76d0611	get_gendisk	vmlinux	EXPORT_SYMBOL
+0x79aa04a2	get_random_bytes	vmlinux	EXPORT_SYMBOL
+0x405c1144	get_seconds	vmlinux	EXPORT_SYMBOL
+0x97a6fbda	get_task_mm	vmlinux	EXPORT_SYMBOL_GPL
+0x09381fa9	get_user_pages	vmlinux	EXPORT_SYMBOL
+0x5cb2e61e	get_user_pages_remote	vmlinux	EXPORT_SYMBOL
+0x9b388444	get_zeroed_page	vmlinux	EXPORT_SYMBOL
+0x3e2b0ba6	groups_alloc	vmlinux	EXPORT_SYMBOL
+0x643d9ba1	groups_free	vmlinux	EXPORT_SYMBOL
+0xbc892ee0	hrtimer_cancel	vmlinux	EXPORT_SYMBOL_GPL
+0x93c9f0ef	hrtimer_forward	vmlinux	EXPORT_SYMBOL_GPL
+0x4ffec467	hrtimer_init	vmlinux	EXPORT_SYMBOL_GPL
+0xbcb562c2	hrtimer_start_range_ns	vmlinux	EXPORT_SYMBOL_GPL
+0xf5a20811	hrtimer_try_to_cancel	vmlinux	EXPORT_SYMBOL_GPL
+0xd85591cd	igrab	vmlinux	EXPORT_SYMBOL
+0x39461d6a	in_egroup_p	vmlinux	EXPORT_SYMBOL
+0x8b8059bd	in_group_p	vmlinux	EXPORT_SYMBOL
+0x293e21cb	init_net	vmlinux	EXPORT_SYMBOL
+0x958ddee9	init_task	vmlinux	EXPORT_SYMBOL
+0x4cc8f9c8	init_timer_key	vmlinux	EXPORT_SYMBOL
+0x40bcb35a	init_uts_ns	vmlinux	EXPORT_SYMBOL_GPL
+0xfe487975	init_wait_entry	vmlinux	EXPORT_SYMBOL
+0x3755fb24	inode_init_always	vmlinux	EXPORT_SYMBOL
+0x411abede	inode_permission	vmlinux	EXPORT_SYMBOL
+0x5ed90adc	int_to_scsilun	vmlinux	EXPORT_SYMBOL
+0x5778b8b4	invalidate_partition	vmlinux	EXPORT_SYMBOL
+0x93a6e0b2	io_schedule	vmlinux	EXPORT_SYMBOL
+0xfbc4f89e	io_schedule_timeout	vmlinux	EXPORT_SYMBOL
+0x8e82828e	iomem_resource	vmlinux	EXPORT_SYMBOL
+0xedc03953	iounmap	vmlinux	EXPORT_SYMBOL
+0x08c0bc0e	iput	vmlinux	EXPORT_SYMBOL
+0xca7903a1	irq_set_affinity_hint	vmlinux	EXPORT_SYMBOL_GPL
+0xdc270fdf	iterate_dir	vmlinux	EXPORT_SYMBOL
+0xe798236d	jiffies	vmlinux	EXPORT_SYMBOL
+0x402a960a	jiffies_64	vmlinux	EXPORT_SYMBOL
+0x37befc70	jiffies_to_msecs	vmlinux	EXPORT_SYMBOL
+0x188ea314	jiffies_to_timespec64	vmlinux	EXPORT_SYMBOL
+0x7f24de73	jiffies_to_usecs	vmlinux	EXPORT_SYMBOL
+0x44b5ee9a	kasprintf	vmlinux	EXPORT_SYMBOL
+0x0abeb9cc	kern_path	vmlinux	EXPORT_SYMBOL
+0xc5ced29a	kernel_recvmsg	vmlinux	EXPORT_SYMBOL
+0xb4b484b6	kernel_sendmsg	vmlinux	EXPORT_SYMBOL
+0x15257c61	kernel_setsockopt	vmlinux	EXPORT_SYMBOL
+0x265bbef9	kexec_crash_loaded	vmlinux	EXPORT_SYMBOL_GPL
+0x037a0cba	kfree	vmlinux	EXPORT_SYMBOL
+0x19f462ab	kfree_call_rcu	vmlinux	EXPORT_SYMBOL_GPL
+0x0a9ea67d	kfree_skb	vmlinux	EXPORT_SYMBOL
+0xca2b0f47	kill_anon_super	vmlinux	EXPORT_SYMBOL
+0x17015d84	kill_block_super	vmlinux	EXPORT_SYMBOL
+0x1c1c79d3	kmalloc_caches	vmlinux	EXPORT_SYMBOL
+0x4b5814ef	kmalloc_order_trace	vmlinux	EXPORT_SYMBOL
+0x44398388	kmem_cache_alloc	vmlinux	EXPORT_SYMBOL
+0x8c614986	kmem_cache_alloc_node	vmlinux	EXPORT_SYMBOL
+0x050db715	kmem_cache_alloc_node_trace	vmlinux	EXPORT_SYMBOL
+0x6551695d	kmem_cache_alloc_trace	vmlinux	EXPORT_SYMBOL
+0x6907a3da	kmem_cache_create	vmlinux	EXPORT_SYMBOL
+0x048d3705	kmem_cache_create_usercopy	vmlinux	EXPORT_SYMBOL
+0x871c2dda	kmem_cache_destroy	vmlinux	EXPORT_SYMBOL
+0xd1bff658	kmem_cache_free	vmlinux	EXPORT_SYMBOL
+0x5ea32613	kmem_cache_shrink	vmlinux	EXPORT_SYMBOL
+0x1eff77ac	kobject_add	vmlinux	EXPORT_SYMBOL
+0x8d10ed44	kobject_create_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0x56d88374	kobject_del	vmlinux	EXPORT_SYMBOL
+0x742ce0ea	kobject_get	vmlinux	EXPORT_SYMBOL
+0x28f397f9	kobject_init	vmlinux	EXPORT_SYMBOL
+0x16f03e4d	kobject_init_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0xa11e7937	kobject_put	vmlinux	EXPORT_SYMBOL
+0x08ad68b8	kobject_set_name	vmlinux	EXPORT_SYMBOL
+0xfe3d4f3d	kobject_uevent_env	vmlinux	EXPORT_SYMBOL_GPL
+0x059baffc	krealloc	vmlinux	EXPORT_SYMBOL
+0x62ce9b64	kset_create_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0x33d78331	kset_find_obj	vmlinux	EXPORT_SYMBOL_GPL
+0xe6cc05c5	kset_register	vmlinux	EXPORT_SYMBOL
+0xb1f83e12	kset_unregister	vmlinux	EXPORT_SYMBOL
+0xc499ae1e	kstrdup	vmlinux	EXPORT_SYMBOL
+0xbaa2782a	kstrndup	vmlinux	EXPORT_SYMBOL
+0x752d5f5b	kstrtobool	vmlinux	EXPORT_SYMBOL
+0x1cd387a7	kstrtobool_from_user	vmlinux	EXPORT_SYMBOL
+0x373db350	kstrtoint	vmlinux	EXPORT_SYMBOL
+0x333ec789	kstrtoint_from_user	vmlinux	EXPORT_SYMBOL
+0x1b17e06c	kstrtoll	vmlinux	EXPORT_SYMBOL
+0xc76c9ada	kstrtoll_from_user	vmlinux	EXPORT_SYMBOL
+0x3fa0d062	kstrtou16	vmlinux	EXPORT_SYMBOL
+0xa46f2f1b	kstrtouint	vmlinux	EXPORT_SYMBOL
+0x84d98e20	kstrtouint_from_user	vmlinux	EXPORT_SYMBOL
+0x2cc31f4c	kstrtoul_from_user	vmlinux	EXPORT_SYMBOL
+0x060ea2d6	kstrtoull	vmlinux	EXPORT_SYMBOL
+0x4b26f3b4	kstrtoull_from_user	vmlinux	EXPORT_SYMBOL
+0x3661c7b9	kthread_bind	vmlinux	EXPORT_SYMBOL
+0x2a81fc4a	kthread_create_on_node	vmlinux	EXPORT_SYMBOL
+0xb3f7646e	kthread_should_stop	vmlinux	EXPORT_SYMBOL
+0xa0f77f57	kthread_stop	vmlinux	EXPORT_SYMBOL
+0xb43f9365	ktime_get	vmlinux	EXPORT_SYMBOL_GPL
+0x484f6edf	ktime_get_coarse_real_ts64	vmlinux	EXPORT_SYMBOL
+0x1edb69d6	ktime_get_raw_ts64	vmlinux	EXPORT_SYMBOL
+0x953e1b9e	ktime_get_real_seconds	vmlinux	EXPORT_SYMBOL_GPL
+0x9ec6ca96	ktime_get_real_ts64	vmlinux	EXPORT_SYMBOL
+0xa9320d27	ktime_get_seconds	vmlinux	EXPORT_SYMBOL_GPL
+0x5e515be6	ktime_get_ts64	vmlinux	EXPORT_SYMBOL_GPL
+0xc4f0da12	ktime_get_with_offset	vmlinux	EXPORT_SYMBOL_GPL
+0x5c017464	kvasprintf	vmlinux	EXPORT_SYMBOL
+0x7aa1756e	kvfree	vmlinux	EXPORT_SYMBOL
+0x7a4497db	kzfree	vmlinux	EXPORT_SYMBOL
+0xbdf38a1b	lock_page_memcg	vmlinux	EXPORT_SYMBOL
+0x3c171488	lock_sock_nested	vmlinux	EXPORT_SYMBOL
+0x2c0f1582	lockref_get	vmlinux	EXPORT_SYMBOL
+0x883f2b4b	lookup_one_len	vmlinux	EXPORT_SYMBOL
+0xa8dedb50	make_kgid	vmlinux	EXPORT_SYMBOL
+0x970a0bd5	make_kuid	vmlinux	EXPORT_SYMBOL
+0x48bcec81	mark_buffer_dirty	vmlinux	EXPORT_SYMBOL
+0x2679ee7d	mark_page_accessed	vmlinux	EXPORT_SYMBOL
+0xacf4d843	match_strdup	vmlinux	EXPORT_SYMBOL
+0x44e9a829	match_token	vmlinux	EXPORT_SYMBOL
+0x54c99fac	mem_section	vmlinux	EXPORT_SYMBOL
+0x4dea1053	memchr	vmlinux	EXPORT_SYMBOL
+0x2fa5a500	memcmp	vmlinux	EXPORT_SYMBOL
+0x236c8c64	memcpy	vmlinux	EXPORT_SYMBOL
+0xa3a5be95	memmove	vmlinux	EXPORT_SYMBOL
+0x27864d57	memparse	vmlinux	EXPORT_SYMBOL
+0x9e435279	mempool_alloc	vmlinux	EXPORT_SYMBOL
+0x183fa88b	mempool_alloc_slab	vmlinux	EXPORT_SYMBOL
+0x3aae4146	mempool_create	vmlinux	EXPORT_SYMBOL
+0xdace5a22	mempool_destroy	vmlinux	EXPORT_SYMBOL
+0x8e4fe33d	mempool_free	vmlinux	EXPORT_SYMBOL
+0x8a99a016	mempool_free_slab	vmlinux	EXPORT_SYMBOL
+0x9a906daf	memscan	vmlinux	EXPORT_SYMBOL
+0xde0bdcff	memset	vmlinux	EXPORT_SYMBOL
+0xc7582579	misc_deregister	vmlinux	EXPORT_SYMBOL
+0x5fe7b349	misc_register	vmlinux	EXPORT_SYMBOL
+0xe0612783	mmput	vmlinux	EXPORT_SYMBOL_GPL
+0x3202ca78	mntget	vmlinux	EXPORT_SYMBOL
+0xabf9f6ee	mntput	vmlinux	EXPORT_SYMBOL
+0xebca8b54	mod_delayed_work_on	vmlinux	EXPORT_SYMBOL_GPL
+0x28985b9f	mod_timer	vmlinux	EXPORT_SYMBOL
+0xaac80d5b	mod_timer_pending	vmlinux	EXPORT_SYMBOL
+0xee7e6c8f	module_put	vmlinux	EXPORT_SYMBOL
+0x4135e5b0	module_refcount	vmlinux	EXPORT_SYMBOL
+0xf9a482f9	msleep	vmlinux	EXPORT_SYMBOL
+0x2f4c06f2	mutex_lock	vmlinux	EXPORT_SYMBOL
+0x19d3ab4f	mutex_lock_killable	vmlinux	EXPORT_SYMBOL
+0xe7a21d62	mutex_trylock	vmlinux	EXPORT_SYMBOL
+0xe1718bab	mutex_unlock	vmlinux	EXPORT_SYMBOL
+0x4351da74	napi_complete_done	vmlinux	EXPORT_SYMBOL
+0x3e3bd342	napi_disable	vmlinux	EXPORT_SYMBOL
+0x0654039b	napi_gro_receive	vmlinux	EXPORT_SYMBOL
+0xb61d9399	napi_schedule_prep	vmlinux	EXPORT_SYMBOL
+0xe1f877d4	netdev_features_change	vmlinux	EXPORT_SYMBOL
+0x35dc630d	netdev_rx_handler_register	vmlinux	EXPORT_SYMBOL_GPL
+0x7631c5d6	netdev_rx_handler_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x6d4283b8	netif_carrier_off	vmlinux	EXPORT_SYMBOL
+0x96a71f71	netif_carrier_on	vmlinux	EXPORT_SYMBOL
+0x898a4843	netif_napi_add	vmlinux	EXPORT_SYMBOL
+0x263ef35a	netif_napi_del	vmlinux	EXPORT_SYMBOL
+0x6387a356	netif_receive_skb	vmlinux	EXPORT_SYMBOL
+0xd0c1d4a8	netif_rx	vmlinux	EXPORT_SYMBOL
+0x7bdf7b5b	netlink_broadcast	vmlinux	EXPORT_SYMBOL
+0x65047620	netlink_unicast	vmlinux	EXPORT_SYMBOL
+0x5ffa0429	new_inode	vmlinux	EXPORT_SYMBOL
+0xfdc1bd61	nla_put	vmlinux	EXPORT_SYMBOL
+0x5c223e9e	node_data	vmlinux	EXPORT_SYMBOL
+0xfd1a7baf	node_to_cpumask_map	vmlinux	EXPORT_SYMBOL
+0x017de3d5	nr_cpu_ids	vmlinux	EXPORT_SYMBOL
+0xfe26fc7c	nr_node_ids	vmlinux	EXPORT_SYMBOL
+0x1e1e140e	ns_to_timespec64	vmlinux	EXPORT_SYMBOL
+0x2f548802	ns_to_timeval	vmlinux	EXPORT_SYMBOL
+0xffae8e8b	nsecs_to_jiffies	vmlinux	EXPORT_SYMBOL_GPL
+0x5541ea93	on_each_cpu	vmlinux	EXPORT_SYMBOL
+0x1984d421	out_of_line_wait_on_bit	vmlinux	EXPORT_SYMBOL
+0xab121906	override_creds	vmlinux	EXPORT_SYMBOL
+0x3dd76852	page_mapped	vmlinux	EXPORT_SYMBOL
+0x04d2bd9d	pagevec_lookup_range	vmlinux	EXPORT_SYMBOL
+0xf5e3a770	pagevec_lookup_range_tag	vmlinux	EXPORT_SYMBOL
+0x7c1372e8	panic	vmlinux	EXPORT_SYMBOL
+0x75fcdd6f	panic_notifier_list	vmlinux	EXPORT_SYMBOL
+0xac4cade1	param_array_ops	vmlinux	EXPORT_SYMBOL
+0xac825c5c	param_get_int	vmlinux	EXPORT_SYMBOL
+0x1ed0638a	param_ops_bool	vmlinux	EXPORT_SYMBOL
+0xaa139c11	param_ops_byte	vmlinux	EXPORT_SYMBOL
+0xd1bfdeb0	param_ops_charp	vmlinux	EXPORT_SYMBOL
+0xde64b983	param_ops_int	vmlinux	EXPORT_SYMBOL
+0x43d66e17	param_ops_long	vmlinux	EXPORT_SYMBOL
+0x56da6e1c	param_ops_short	vmlinux	EXPORT_SYMBOL
+0x38cef74d	param_ops_string	vmlinux	EXPORT_SYMBOL
+0x6aa285aa	param_ops_uint	vmlinux	EXPORT_SYMBOL
+0x01d03047	param_ops_ulong	vmlinux	EXPORT_SYMBOL
+0x463627fa	param_set_bool	vmlinux	EXPORT_SYMBOL
+0xb56e72c4	param_set_int	vmlinux	EXPORT_SYMBOL
+0x2a3c1bd5	path_put	vmlinux	EXPORT_SYMBOL
+0x1d2a9e8a	pci_alloc_irq_vectors_affinity	vmlinux	EXPORT_SYMBOL
+0xfaf3593c	pci_free_irq_vectors	vmlinux	EXPORT_SYMBOL
+0x7b6f09d7	pci_get_device	vmlinux	EXPORT_SYMBOL
+0x8aea487d	pci_irq_vector	vmlinux	EXPORT_SYMBOL
+0x8ded42a6	pci_read_config_byte	vmlinux	EXPORT_SYMBOL
+0x7107c8fc	pci_read_config_dword	vmlinux	EXPORT_SYMBOL
+0x3c5d624b	pci_set_power_state	vmlinux	EXPORT_SYMBOL
+0x61865a1f	pci_write_config_byte	vmlinux	EXPORT_SYMBOL
+0x82dbffdc	pci_write_config_dword	vmlinux	EXPORT_SYMBOL
+0xd5b4d71e	pcie_capability_clear_and_set_word	vmlinux	EXPORT_SYMBOL
+0x0bef5c21	pcie_capability_read_dword	vmlinux	EXPORT_SYMBOL
+0x75b93a2c	pcie_capability_read_word	vmlinux	EXPORT_SYMBOL
+0x4a22634b	pid_task	vmlinux	EXPORT_SYMBOL
+0x60a32ea9	pm_power_off	vmlinux	EXPORT_SYMBOL_GPL
+0xd9b716d5	prepare_creds	vmlinux	EXPORT_SYMBOL
+0x86838a09	prepare_to_wait	vmlinux	EXPORT_SYMBOL
+0x8f96fdf4	prepare_to_wait_event	vmlinux	EXPORT_SYMBOL
+0xb6bcdaa5	prepare_to_wait_exclusive	vmlinux	EXPORT_SYMBOL
+0x86e03c0a	print_stack_trace	vmlinux	EXPORT_SYMBOL_GPL
+0x27e1a049	printk	vmlinux	EXPORT_SYMBOL
+0xc12efe98	pskb_expand_head	vmlinux	EXPORT_SYMBOL
+0xb5e6ea9c	put_disk	vmlinux	EXPORT_SYMBOL
+0xd1e4ec46	queue_delayed_work_on	vmlinux	EXPORT_SYMBOL
+0x121da905	queue_work_on	vmlinux	EXPORT_SYMBOL
+0x16823aa3	raid_class_attach	drivers/scsi/raid_class	EXPORT_SYMBOL
+0xdbb86db6	raid_class_release	drivers/scsi/raid_class	EXPORT_SYMBOL
+0x60a13e90	rcu_barrier	vmlinux	EXPORT_SYMBOL_GPL
+0xbeabc0e4	read_cache_pages	vmlinux	EXPORT_SYMBOL
+0xfb6af58d	recalc_sigpending	vmlinux	EXPORT_SYMBOL
+0x71a50dbc	register_blkdev	vmlinux	EXPORT_SYMBOL
+0xfca908d7	register_filesystem	vmlinux	EXPORT_SYMBOL
+0x60352082	register_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
+0xf68285c0	register_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
+0x48276cbc	register_netdev	vmlinux	EXPORT_SYMBOL
+0xd2da1048	register_netdevice_notifier	vmlinux	EXPORT_SYMBOL
+0x3517383e	register_reboot_notifier	vmlinux	EXPORT_SYMBOL
+0xd4e9d05d	register_sysctl_table	vmlinux	EXPORT_SYMBOL
+0xb286f9d0	release_sock	vmlinux	EXPORT_SYMBOL
+0x58525886	remap_pfn_range	vmlinux	EXPORT_SYMBOL
+0x6c60994e	remove_wait_queue	vmlinux	EXPORT_SYMBOL
+0xd6b8e852	request_threaded_irq	vmlinux	EXPORT_SYMBOL
+0x2402fab5	revert_creds	vmlinux	EXPORT_SYMBOL
+0xc7a4fbed	rtnl_lock	vmlinux	EXPORT_SYMBOL
+0x6e720ff2	rtnl_unlock	vmlinux	EXPORT_SYMBOL
+0x44d241fb	sas_attach_transport	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xaebcadc8	sas_end_device_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xab115ccc	sas_expander_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x413f1570	sas_phy_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xf3a93867	sas_phy_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xf3fb45a4	sas_phy_free	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xca051b5a	sas_port_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xec83e1e8	sas_port_add_phy	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x3a6a318f	sas_port_alloc_num	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x6f221a71	sas_port_delete	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xf8c9174d	sas_port_delete_phy	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x57688123	sas_read_port_mode_page	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xc518ecf8	sas_release_transport	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xf4c485ed	sas_remove_host	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xb49b34b2	sas_rphy_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x4629baf2	save_stack_trace	vmlinux	EXPORT_SYMBOL_GPL
+0x8f2920bc	save_stack_trace_tsk	vmlinux	EXPORT_SYMBOL_GPL
+0x211198ec	sched_setscheduler	vmlinux	EXPORT_SYMBOL_GPL
+0x01000e51	schedule	vmlinux	EXPORT_SYMBOL
+0x1f37cca7	schedule_hrtimeout_range	vmlinux	EXPORT_SYMBOL_GPL
+0x8ddd8aad	schedule_timeout	vmlinux	EXPORT_SYMBOL
+0x054496b4	schedule_timeout_interruptible	vmlinux	EXPORT_SYMBOL
+0x151f4898	schedule_timeout_uninterruptible	vmlinux	EXPORT_SYMBOL
+0xa4146c33	scmd_printk	vmlinux	EXPORT_SYMBOL
+0x28343bad	scnprintf	vmlinux	EXPORT_SYMBOL
+0xa4194aa0	scsi_add_device	vmlinux	EXPORT_SYMBOL
+0x315500e6	scsi_add_host_with_dma	vmlinux	EXPORT_SYMBOL
+0xaea3359a	scsi_block_requests	vmlinux	EXPORT_SYMBOL
+0x16a348a2	scsi_change_queue_depth	vmlinux	EXPORT_SYMBOL
+0xd64b53f1	scsi_device_get	vmlinux	EXPORT_SYMBOL
+0xbb745879	scsi_device_lookup	vmlinux	EXPORT_SYMBOL
+0xc0b8bf3a	scsi_device_put	vmlinux	EXPORT_SYMBOL
+0x02389e9a	scsi_device_set_state	vmlinux	EXPORT_SYMBOL
+0x72ea7b2d	scsi_device_type	vmlinux	EXPORT_SYMBOL
+0x8807281e	scsi_dma_map	vmlinux	EXPORT_SYMBOL
+0x2ae96c24	scsi_dma_unmap	vmlinux	EXPORT_SYMBOL
+0x3e913671	scsi_get_vpd_page	vmlinux	EXPORT_SYMBOL_GPL
+0x70f35646	scsi_host_alloc	vmlinux	EXPORT_SYMBOL
+0x266dd60d	scsi_host_lookup	vmlinux	EXPORT_SYMBOL
+0xfeab2430	scsi_host_put	vmlinux	EXPORT_SYMBOL
+0x44d422ad	scsi_internal_device_block_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0x879c9fc5	scsi_internal_device_unblock_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0x200ccc33	scsi_is_host_device	vmlinux	EXPORT_SYMBOL
+0x69f1af50	scsi_is_sdev_device	vmlinux	EXPORT_SYMBOL
+0xbc474c7b	scsi_print_command	vmlinux	EXPORT_SYMBOL
+0x53e01822	scsi_register_driver	vmlinux	EXPORT_SYMBOL
+0x9a802be1	scsi_remove_device	vmlinux	EXPORT_SYMBOL
+0x521b0ae7	scsi_remove_host	vmlinux	EXPORT_SYMBOL
+0x41a3a795	scsi_remove_target	vmlinux	EXPORT_SYMBOL
+0x55e93b1e	scsi_scan_host	vmlinux	EXPORT_SYMBOL
+0xa5844bd1	scsi_unblock_requests	vmlinux	EXPORT_SYMBOL
+0xea3c8e4e	scsilun_to_int	vmlinux	EXPORT_SYMBOL
+0xfb564a4e	sdev_prefix_printk	vmlinux	EXPORT_SYMBOL
+0xcbc85650	security_d_instantiate	vmlinux	EXPORT_SYMBOL
+0x5d2d73fa	send_sig	vmlinux	EXPORT_SYMBOL
+0xcc94f5a5	seq_lseek	vmlinux	EXPORT_SYMBOL
+0x8fdd247d	seq_printf	vmlinux	EXPORT_SYMBOL
+0x83b92c59	seq_read	vmlinux	EXPORT_SYMBOL
+0x7cf2c1c6	set_cpus_allowed_ptr	vmlinux	EXPORT_SYMBOL_GPL
+0x025483b1	set_current_groups	vmlinux	EXPORT_SYMBOL
+0xbd0f0cde	set_device_ro	vmlinux	EXPORT_SYMBOL
+0x65ab4529	set_disk_ro	vmlinux	EXPORT_SYMBOL
+0x9e61bb05	set_freezable	vmlinux	EXPORT_SYMBOL
+0xc7cf5505	set_nlink	vmlinux	EXPORT_SYMBOL
+0x365acda7	set_normalized_timespec64	vmlinux	EXPORT_SYMBOL
+0xa9a12085	set_page_dirty	vmlinux	EXPORT_SYMBOL
+0x2f0d7375	set_page_dirty_lock	vmlinux	EXPORT_SYMBOL
+0xab5ce002	set_user_nice	vmlinux	EXPORT_SYMBOL
+0x0645e9e8	shrink_dcache_parent	vmlinux	EXPORT_SYMBOL
+0x40c7247c	si_meminfo	vmlinux	EXPORT_SYMBOL
+0x6a5fa363	sigprocmask	vmlinux	EXPORT_SYMBOL
+0xfcffa6d7	simple_statfs	vmlinux	EXPORT_SYMBOL
+0x0b742fd7	simple_strtol	vmlinux	EXPORT_SYMBOL
+0x20000329	simple_strtoul	vmlinux	EXPORT_SYMBOL
+0x61b7b126	simple_strtoull	vmlinux	EXPORT_SYMBOL
+0x942f69ac	single_open	vmlinux	EXPORT_SYMBOL
+0x0e361108	single_release	vmlinux	EXPORT_SYMBOL
+0x694aba15	skb_checksum_help	vmlinux	EXPORT_SYMBOL
+0xdf9b9d87	skb_clone	vmlinux	EXPORT_SYMBOL
+0xd7641845	skb_copy	vmlinux	EXPORT_SYMBOL
+0x6108d928	skb_copy_bits	vmlinux	EXPORT_SYMBOL
+0x4439cb03	skb_dequeue	vmlinux	EXPORT_SYMBOL
+0xafaa19c4	skb_pull	vmlinux	EXPORT_SYMBOL
+0xe93c2569	skb_push	vmlinux	EXPORT_SYMBOL
+0x70d117f0	skb_put	vmlinux	EXPORT_SYMBOL
+0xaa1bd062	skb_queue_purge	vmlinux	EXPORT_SYMBOL
+0x6b702c4a	skb_queue_tail	vmlinux	EXPORT_SYMBOL
+0xbaa57823	skb_realloc_headroom	vmlinux	EXPORT_SYMBOL
+0xbd71ae6a	skb_trim	vmlinux	EXPORT_SYMBOL
+0x04b197f2	smp_call_function_many	vmlinux	EXPORT_SYMBOL
+0x6228c21f	smp_call_function_single	vmlinux	EXPORT_SYMBOL
+0x50720c5f	snprintf	vmlinux	EXPORT_SYMBOL
+0x888561b5	sock_create_kern	vmlinux	EXPORT_SYMBOL
+0x87eea382	sock_release	vmlinux	EXPORT_SYMBOL
+0x91715312	sprintf	vmlinux	EXPORT_SYMBOL
+0x20c55ae0	sscanf	vmlinux	EXPORT_SYMBOL
+0x4d499ffd	starget_for_each_device	vmlinux	EXPORT_SYMBOL
+0xaafdc258	strcasecmp	vmlinux	EXPORT_SYMBOL
+0x061651be	strcat	vmlinux	EXPORT_SYMBOL
+0x349cba85	strchr	vmlinux	EXPORT_SYMBOL
+0xe2d5255a	strcmp	vmlinux	EXPORT_SYMBOL
+0xe914e41e	strcpy	vmlinux	EXPORT_SYMBOL
+0xafe82e10	strcspn	vmlinux	EXPORT_SYMBOL
+0x77bc13a0	strim	vmlinux	EXPORT_SYMBOL
+0x6d1ea6ec	strlcat	vmlinux	EXPORT_SYMBOL
+0x672144bd	strlcpy	vmlinux	EXPORT_SYMBOL
+0x25ec1b28	strlen	vmlinux	EXPORT_SYMBOL
+0xebbf1dba	strncasecmp	vmlinux	EXPORT_SYMBOL
+0x85abc85f	strncmp	vmlinux	EXPORT_SYMBOL
+0xad4aee39	strncpy	vmlinux	EXPORT_SYMBOL
+0x9b8d07aa	strnlen	vmlinux	EXPORT_SYMBOL
+0x5fd2298e	strnstr	vmlinux	EXPORT_SYMBOL
+0x9a1dfd65	strpbrk	vmlinux	EXPORT_SYMBOL
+0x9f984513	strrchr	vmlinux	EXPORT_SYMBOL
+0x85df9b6c	strsep	vmlinux	EXPORT_SYMBOL
+0x3fa913da	strspn	vmlinux	EXPORT_SYMBOL
+0x1e6d26a8	strstr	vmlinux	EXPORT_SYMBOL
+0x9d74e70c	submit_bio	vmlinux	EXPORT_SYMBOL
+0x2d3385d3	system_wq	vmlinux	EXPORT_SYMBOL
+0x9545af6d	tasklet_init	vmlinux	EXPORT_SYMBOL
+0x30cb3061	thaw_bdev	vmlinux	EXPORT_SYMBOL
+0x0ae979fd	try_module_get	vmlinux	EXPORT_SYMBOL
+0x9bc62df2	try_wait_for_completion	vmlinux	EXPORT_SYMBOL
+0x968c5208	unlock_page	vmlinux	EXPORT_SYMBOL
+0x6b0e21b4	unlock_page_memcg	vmlinux	EXPORT_SYMBOL
+0xb34392eb	unmap_mapping_range	vmlinux	EXPORT_SYMBOL
+0xb5a459dc	unregister_blkdev	vmlinux	EXPORT_SYMBOL
+0x6091b333	unregister_chrdev_region	vmlinux	EXPORT_SYMBOL
+0xc12a1b70	unregister_filesystem	vmlinux	EXPORT_SYMBOL
+0x2fe252cc	unregister_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
+0xfe029963	unregister_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
+0x5fa27294	unregister_netdev	vmlinux	EXPORT_SYMBOL
+0x9d0d6206	unregister_netdevice_notifier	vmlinux	EXPORT_SYMBOL
+0xac1a55be	unregister_reboot_notifier	vmlinux	EXPORT_SYMBOL
+0xf86e6516	unregister_sysctl_table	vmlinux	EXPORT_SYMBOL
+0x2ab3699d	unuse_mm	vmlinux	EXPORT_SYMBOL_GPL
+0xc6b443e8	up	vmlinux	EXPORT_SYMBOL
+0xd04fd10e	up_read	vmlinux	EXPORT_SYMBOL
+0x60b12fe5	up_write	vmlinux	EXPORT_SYMBOL
+0x971439a2	use_mm	vmlinux	EXPORT_SYMBOL_GPL
+0x12a38747	usleep_range	vmlinux	EXPORT_SYMBOL
+0x999e8297	vfree	vmlinux	EXPORT_SYMBOL
+0x24d60dbd	vfs_create	vmlinux	EXPORT_SYMBOL
+0x1fd86893	vfs_fsync	vmlinux	EXPORT_SYMBOL
+0x654184d4	vfs_fsync_range	vmlinux	EXPORT_SYMBOL
+0x2cd2d936	vfs_getattr	vmlinux	EXPORT_SYMBOL
+0x24b3ee3b	vfs_link	vmlinux	EXPORT_SYMBOL
+0x7065754b	vfs_llseek	vmlinux	EXPORT_SYMBOL
+0xd0864432	vfs_mkdir	vmlinux	EXPORT_SYMBOL
+0x30a84afc	vfs_mknod	vmlinux	EXPORT_SYMBOL
+0xdf8efe5b	vfs_readlink	vmlinux	EXPORT_SYMBOL
+0x69be471b	vfs_rename	vmlinux	EXPORT_SYMBOL
+0x86654f49	vfs_rmdir	vmlinux	EXPORT_SYMBOL
+0x4f101148	vfs_statfs	vmlinux	EXPORT_SYMBOL
+0x278ed099	vfs_symlink	vmlinux	EXPORT_SYMBOL
+0xb2ac7eb1	vfs_unlink	vmlinux	EXPORT_SYMBOL
+0x4903aa79	vm_mmap	vmlinux	EXPORT_SYMBOL
+0x29391e7d	vm_munmap	vmlinux	EXPORT_SYMBOL
+0xd6ee688f	vmalloc	vmlinux	EXPORT_SYMBOL
+0xaff5fb27	vmalloc_to_page	vmlinux	EXPORT_SYMBOL
+0x481e535e	vmap	vmlinux	EXPORT_SYMBOL
+0x4b8b3239	vprintk	vmlinux	EXPORT_SYMBOL
+0x13ca75a8	vscnprintf	vmlinux	EXPORT_SYMBOL
+0x3cec9b17	vsnprintf	vmlinux	EXPORT_SYMBOL
+0x5c7574a1	vsprintf	vmlinux	EXPORT_SYMBOL
+0x94961283	vunmap	vmlinux	EXPORT_SYMBOL
+0x40a9b349	vzalloc	vmlinux	EXPORT_SYMBOL
+0x9e0c711d	vzalloc_node	vmlinux	EXPORT_SYMBOL
+0x8bdb7a0e	wait_for_completion	vmlinux	EXPORT_SYMBOL
+0xffa9bfdb	wait_for_completion_interruptible	vmlinux	EXPORT_SYMBOL
+0xfef8add4	wait_for_completion_timeout	vmlinux	EXPORT_SYMBOL
+0x28914cbf	wait_on_page_bit	vmlinux	EXPORT_SYMBOL
+0xa0fbac79	wake_up_bit	vmlinux	EXPORT_SYMBOL
+0x08d39e7d	wake_up_process	vmlinux	EXPORT_SYMBOL
+0xcf64b4bb	write_cache_pages	vmlinux	EXPORT_SYMBOL
+0x9032ee34	xattr_full_name	vmlinux	EXPORT_SYMBOL
+0x760a0f4f	yield	vmlinux	EXPORT_SYMBOL
+0x2185519c	zap_vma_ptes	vmlinux	EXPORT_SYMBOL_GPL
diff --git a/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_x86_64 b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_x86_64
new file mode 100644
index 0000000..0cc4141
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/Module.kabi_x86_64
@@ -0,0 +1,796 @@
+0x75d19f57	__alloc_disk_node	vmlinux	EXPORT_SYMBOL
+0x8ab32967	__alloc_pages_nodemask	vmlinux	EXPORT_SYMBOL
+0x3c5dfeb0	__alloc_skb	vmlinux	EXPORT_SYMBOL
+0x43a53735	__alloc_workqueue_key	vmlinux	EXPORT_SYMBOL_GPL
+0x39b52d19	__bitmap_and	vmlinux	EXPORT_SYMBOL
+0xadfdfcef	__bitmap_andnot	vmlinux	EXPORT_SYMBOL
+0xf3e6402e	__bitmap_equal	vmlinux	EXPORT_SYMBOL
+0xbb35675b	__bitmap_intersects	vmlinux	EXPORT_SYMBOL
+0xa084749a	__bitmap_or	vmlinux	EXPORT_SYMBOL
+0x4df119fa	__bitmap_parse	vmlinux	EXPORT_SYMBOL
+0x63c4d61f	__bitmap_weight	vmlinux	EXPORT_SYMBOL
+0xf6fc8791	__bitmap_xor	vmlinux	EXPORT_SYMBOL
+0x88db9f48	__check_object_size	vmlinux	EXPORT_SYMBOL
+0x3c6cf22a	__class_register	vmlinux	EXPORT_SYMBOL_GPL
+0xeae3dfd6	__const_udelay	vmlinux	EXPORT_SYMBOL
+0x31cd8869	__cpu_online_mask	vmlinux	EXPORT_SYMBOL
+0x2a70864d	__cpu_possible_mask	vmlinux	EXPORT_SYMBOL
+0x69f8785f	__cpu_present_mask	vmlinux	EXPORT_SYMBOL
+0x0e4ba049	__cpuhp_remove_state	vmlinux	EXPORT_SYMBOL
+0xf66a486e	__cpuhp_setup_state	vmlinux	EXPORT_SYMBOL
+0xd38cd261	__default_kernel_pte_mask	vmlinux	EXPORT_SYMBOL
+0x466c14a7	__delay	vmlinux	EXPORT_SYMBOL
+0x090a9fe8	__dev_kfree_skb_any	vmlinux	EXPORT_SYMBOL
+0xd1ebdaa0	__dynamic_dev_dbg	vmlinux	EXPORT_SYMBOL
+0x9b7fe4d4	__dynamic_pr_debug	vmlinux	EXPORT_SYMBOL
+0xbdfb6dbb	__fentry__	vmlinux	EXPORT_SYMBOL
+0xf63b72ee	__free_pages	vmlinux	EXPORT_SYMBOL
+0x93fca811	__get_free_pages	vmlinux	EXPORT_SYMBOL
+0x8f9c199c	__get_user_2	vmlinux	EXPORT_SYMBOL
+0x379d9241	__init_rwsem	vmlinux	EXPORT_SYMBOL
+0xd9a5ea54	__init_waitqueue_head	vmlinux	EXPORT_SYMBOL
+0x0d542439	__ipv6_addr_type	vmlinux	EXPORT_SYMBOL
+0xd2b09ce5	__kmalloc	vmlinux	EXPORT_SYMBOL
+0x68f31cbd	__list_add_valid	vmlinux	EXPORT_SYMBOL
+0xe1537255	__list_del_entry_valid	vmlinux	EXPORT_SYMBOL
+0x3c3fce39	__local_bh_enable_ip	vmlinux	EXPORT_SYMBOL
+0x469e044d	__lock_page	vmlinux	EXPORT_SYMBOL
+0x25e504a2	__mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
+0x2d4de35f	__module_get	vmlinux	EXPORT_SYMBOL
+0x7f02188f	__msecs_to_jiffies	vmlinux	EXPORT_SYMBOL
+0x9a76f11f	__mutex_init	vmlinux	EXPORT_SYMBOL
+0x8a3ab7ed	__napi_schedule	vmlinux	EXPORT_SYMBOL
+0xdf8c695a	__ndelay	vmlinux	EXPORT_SYMBOL
+0x0696246f	__netdev_alloc_skb	vmlinux	EXPORT_SYMBOL
+0x46c47fb6	__node_distance	vmlinux	EXPORT_SYMBOL
+0x77a513e7	__page_file_index	vmlinux	EXPORT_SYMBOL_GPL
+0xc28bdc41	__page_mapcount	vmlinux	EXPORT_SYMBOL_GPL
+0x5a5ae602	__pagevec_release	vmlinux	EXPORT_SYMBOL
+0xb19a5453	__per_cpu_offset	vmlinux	EXPORT_SYMBOL
+0x4629334c	__preempt_count	vmlinux	EXPORT_SYMBOL
+0x6128b5fc	__printk_ratelimit	vmlinux	EXPORT_SYMBOL
+0xd6025ada	__pskb_pull_tail	vmlinux	EXPORT_SYMBOL
+0xc04da1d5	__put_cred	vmlinux	EXPORT_SYMBOL
+0xd52cffda	__put_page	vmlinux	EXPORT_SYMBOL
+0xdeddbf9b	__put_task_struct	vmlinux	EXPORT_SYMBOL_GPL
+0x5a4896a8	__put_user_2	vmlinux	EXPORT_SYMBOL
+0xb2fd5ceb	__put_user_4	vmlinux	EXPORT_SYMBOL
+0xb8e7ce2c	__put_user_8	vmlinux	EXPORT_SYMBOL
+0x6ad5f0ce	__register_chrdev	vmlinux	EXPORT_SYMBOL
+0x9a8a0ca3	__register_nmi_handler	vmlinux	EXPORT_SYMBOL
+0xe45c1b14	__release_region	vmlinux	EXPORT_SYMBOL
+0x5eba9410	__request_region	vmlinux	EXPORT_SYMBOL
+0x2a7f6e41	__scsi_execute	vmlinux	EXPORT_SYMBOL
+0x25298ce1	__scsi_iterate_devices	vmlinux	EXPORT_SYMBOL
+0xec916042	__skb_gso_segment	vmlinux	EXPORT_SYMBOL
+0xdb7305a1	__stack_chk_fail	vmlinux	EXPORT_SYMBOL
+0x972a1e61	__task_pid_nr_ns	vmlinux	EXPORT_SYMBOL
+0x0faef0ed	__tasklet_schedule	vmlinux	EXPORT_SYMBOL
+0x9e7d6bd0	__udelay	vmlinux	EXPORT_SYMBOL
+0x6bc3fbc0	__unregister_chrdev	vmlinux	EXPORT_SYMBOL
+0xf1969a8e	__usecs_to_jiffies	vmlinux	EXPORT_SYMBOL
+0x50a25b70	__uv_cpu_info	vmlinux	EXPORT_SYMBOL_GPL
+0x8ad5ceb1	__uv_hub_info_list	vmlinux	EXPORT_SYMBOL_GPL
+0x531b604e	__virt_addr_valid	vmlinux	EXPORT_SYMBOL
+0xa9bd2676	__vmalloc	vmlinux	EXPORT_SYMBOL
+0x3eeb2322	__wake_up	vmlinux	EXPORT_SYMBOL
+0xad27f361	__warn_printk	vmlinux	EXPORT_SYMBOL
+0x7e526bfa	__x86_indirect_thunk_r10	vmlinux	EXPORT_SYMBOL
+0xbfdcb43a	__x86_indirect_thunk_r11	vmlinux	EXPORT_SYMBOL
+0x263ed23b	__x86_indirect_thunk_r12	vmlinux	EXPORT_SYMBOL
+0xe7b00dfb	__x86_indirect_thunk_r13	vmlinux	EXPORT_SYMBOL
+0xce8b1878	__x86_indirect_thunk_r14	vmlinux	EXPORT_SYMBOL
+0x0f05c7b8	__x86_indirect_thunk_r15	vmlinux	EXPORT_SYMBOL
+0x1ed8b599	__x86_indirect_thunk_r8	vmlinux	EXPORT_SYMBOL
+0xdf566a59	__x86_indirect_thunk_r9	vmlinux	EXPORT_SYMBOL
+0x2ea2c95c	__x86_indirect_thunk_rax	vmlinux	EXPORT_SYMBOL
+0xe3fffae9	__x86_indirect_thunk_rbp	vmlinux	EXPORT_SYMBOL
+0x593c1bac	__x86_indirect_thunk_rbx	vmlinux	EXPORT_SYMBOL
+0xc29957c3	__x86_indirect_thunk_rcx	vmlinux	EXPORT_SYMBOL
+0xd979a547	__x86_indirect_thunk_rdi	vmlinux	EXPORT_SYMBOL
+0xb601be4c	__x86_indirect_thunk_rdx	vmlinux	EXPORT_SYMBOL
+0xa1f9a134	__x86_indirect_thunk_rsi	vmlinux	EXPORT_SYMBOL
+0x9262d817	__x86_paravirt_patch_template	vmlinux	EXPORT_SYMBOL_GPL
+0xcf4fdd4d	_atomic_dec_and_lock	vmlinux	EXPORT_SYMBOL
+0xa1c76e0a	_cond_resched	vmlinux	EXPORT_SYMBOL
+0x362ef408	_copy_from_user	vmlinux	EXPORT_SYMBOL
+0xb44ad4b3	_copy_to_user	vmlinux	EXPORT_SYMBOL
+0x11089ac7	_ctype	vmlinux	EXPORT_SYMBOL
+0x32ae5741	_raw_read_lock	vmlinux	EXPORT_SYMBOL
+0x150e3657	_raw_read_lock_bh	vmlinux	EXPORT_SYMBOL
+0xf8595510	_raw_read_lock_irq	vmlinux	EXPORT_SYMBOL
+0x736b5662	_raw_read_lock_irqsave	vmlinux	EXPORT_SYMBOL
+0x0ad10eb8	_raw_read_unlock_bh	vmlinux	EXPORT_SYMBOL
+0xa16c8613	_raw_read_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
+0xdbf17652	_raw_spin_lock	vmlinux	EXPORT_SYMBOL
+0xb3635b01	_raw_spin_lock_bh	vmlinux	EXPORT_SYMBOL
+0x47941711	_raw_spin_lock_irq	vmlinux	EXPORT_SYMBOL
+0x51760917	_raw_spin_lock_irqsave	vmlinux	EXPORT_SYMBOL
+0x8c3253ec	_raw_spin_trylock	vmlinux	EXPORT_SYMBOL
+0x49c41a57	_raw_spin_unlock_bh	vmlinux	EXPORT_SYMBOL
+0x3812050a	_raw_spin_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
+0x5a245f6d	_raw_write_lock	vmlinux	EXPORT_SYMBOL
+0xe1ed698d	_raw_write_lock_bh	vmlinux	EXPORT_SYMBOL
+0x9eab8d85	_raw_write_lock_irq	vmlinux	EXPORT_SYMBOL
+0xe25ee9d3	_raw_write_lock_irqsave	vmlinux	EXPORT_SYMBOL
+0x8ad29bab	_raw_write_unlock_bh	vmlinux	EXPORT_SYMBOL
+0x1c1b9f8e	_raw_write_unlock_irqrestore	vmlinux	EXPORT_SYMBOL
+0x1cbde753	acpi_bus_get_device	vmlinux	EXPORT_SYMBOL
+0x1a45cb6c	acpi_disabled	vmlinux	EXPORT_SYMBOL
+0x3f316ab8	acpi_dma_configure	vmlinux	EXPORT_SYMBOL_GPL
+0x9f4f2aa3	acpi_gbl_FADT	vmlinux	EXPORT_SYMBOL
+0xeb7f6046	acpi_get_devices	vmlinux	EXPORT_SYMBOL
+0xaebd12f0	acpi_get_name	vmlinux	EXPORT_SYMBOL
+0x16cdc340	acpi_get_table	vmlinux	EXPORT_SYMBOL
+0xb5a8c226	acpi_gsi_to_irq	vmlinux	EXPORT_SYMBOL_GPL
+0xcfd30d71	acpi_os_map_memory	vmlinux	EXPORT_SYMBOL_GPL
+0x34331f04	acpi_os_unmap_memory	vmlinux	EXPORT_SYMBOL_GPL
+0x03cfbd35	acpi_register_gsi	vmlinux	EXPORT_SYMBOL_GPL
+0x7b5452b8	acpi_unregister_gsi	vmlinux	EXPORT_SYMBOL_GPL
+0x318f7969	add_timer	vmlinux	EXPORT_SYMBOL
+0x4afb2238	add_wait_queue	vmlinux	EXPORT_SYMBOL
+0xde293f9e	add_wait_queue_exclusive	vmlinux	EXPORT_SYMBOL
+0xe3ec2f2b	alloc_chrdev_region	vmlinux	EXPORT_SYMBOL
+0x690924ff	alloc_cpumask_var	vmlinux	EXPORT_SYMBOL
+0x83dba64c	alloc_netdev_mqs	vmlinux	EXPORT_SYMBOL
+0xfc3b81ee	alloc_pages_current	vmlinux	EXPORT_SYMBOL
+0xb28249bf	apic	vmlinux	EXPORT_SYMBOL_GPL
+0x25301bc6	arch_wb_cache_pmem	vmlinux	EXPORT_SYMBOL_GPL
+0x2b9997fb	atomic_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
+0x7181db30	atomic_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xad73041f	autoremove_wake_function	vmlinux	EXPORT_SYMBOL
+0x078a5f9c	bdev_read_only	vmlinux	EXPORT_SYMBOL
+0xc618630e	bdevname	vmlinux	EXPORT_SYMBOL
+0x51536bad	bdget	vmlinux	EXPORT_SYMBOL
+0x1dcae62e	bdget_disk	vmlinux	EXPORT_SYMBOL
+0x67b45de7	bdput	vmlinux	EXPORT_SYMBOL
+0x886cfa9a	bio_add_page	vmlinux	EXPORT_SYMBOL
+0x5e39268a	bio_alloc_bioset	vmlinux	EXPORT_SYMBOL
+0xbb6020a9	bio_associate_blkg	vmlinux	EXPORT_SYMBOL_GPL
+0x2d051151	bio_clone_fast	vmlinux	EXPORT_SYMBOL
+0x0e1cf36e	bio_endio	vmlinux	EXPORT_SYMBOL
+0x85e5553a	bio_free_pages	vmlinux	EXPORT_SYMBOL
+0xf5b19601	bio_init	vmlinux	EXPORT_SYMBOL
+0x213ba188	bio_put	vmlinux	EXPORT_SYMBOL
+0x7ed80dfc	bioset_exit	vmlinux	EXPORT_SYMBOL
+0x141fa066	bioset_init	vmlinux	EXPORT_SYMBOL
+0x16e297c3	bit_wait	vmlinux	EXPORT_SYMBOL
+0x63a7c28c	bitmap_find_free_region	vmlinux	EXPORT_SYMBOL
+0x1b015d25	bitmap_parselist	vmlinux	EXPORT_SYMBOL
+0xf474c21c	bitmap_print_to_pagebuf	vmlinux	EXPORT_SYMBOL
+0x574c2e74	bitmap_release_region	vmlinux	EXPORT_SYMBOL
+0x40778cdd	blk_alloc_queue	vmlinux	EXPORT_SYMBOL
+0xd27b25dd	blk_check_plugged	vmlinux	EXPORT_SYMBOL
+0x450f13ad	blk_cleanup_queue	vmlinux	EXPORT_SYMBOL
+0xd6e954f9	blk_execute_rq	vmlinux	EXPORT_SYMBOL
+0x1038c5e8	blk_execute_rq_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0xf2215f74	blk_finish_plug	vmlinux	EXPORT_SYMBOL
+0x6c7bca30	blk_get_request	vmlinux	EXPORT_SYMBOL
+0xac6f90c0	blk_mq_end_request	vmlinux	EXPORT_SYMBOL
+0xd50e8401	blk_mq_run_hw_queues	vmlinux	EXPORT_SYMBOL
+0xde819c29	blk_mq_tag_to_rq	vmlinux	EXPORT_SYMBOL
+0x23ca731a	blk_mq_unique_tag	vmlinux	EXPORT_SYMBOL
+0xbd080f0a	blk_put_request	vmlinux	EXPORT_SYMBOL
+0xfb941e77	blk_queue_bounce_limit	vmlinux	EXPORT_SYMBOL
+0xd741b07c	blk_queue_dma_alignment	vmlinux	EXPORT_SYMBOL
+0xcadd9892	blk_queue_flag_clear	vmlinux	EXPORT_SYMBOL
+0x538f3a71	blk_queue_flag_set	vmlinux	EXPORT_SYMBOL
+0x538daabb	blk_queue_io_min	vmlinux	EXPORT_SYMBOL
+0xbe2ce71f	blk_queue_io_opt	vmlinux	EXPORT_SYMBOL
+0x2e678bbf	blk_queue_logical_block_size	vmlinux	EXPORT_SYMBOL
+0xee60e147	blk_queue_make_request	vmlinux	EXPORT_SYMBOL
+0xecd78f1b	blk_queue_max_discard_sectors	vmlinux	EXPORT_SYMBOL
+0x9c190423	blk_queue_max_hw_sectors	vmlinux	EXPORT_SYMBOL
+0x3a194a04	blk_queue_max_segment_size	vmlinux	EXPORT_SYMBOL
+0xb7628e15	blk_queue_max_segments	vmlinux	EXPORT_SYMBOL
+0x76d53dc9	blk_queue_max_write_same_sectors	vmlinux	EXPORT_SYMBOL
+0xfc66ee7e	blk_queue_physical_block_size	vmlinux	EXPORT_SYMBOL
+0x7ec61961	blk_queue_rq_timeout	vmlinux	EXPORT_SYMBOL_GPL
+0xe01de66f	blk_queue_segment_boundary	vmlinux	EXPORT_SYMBOL
+0x6553ebef	blk_queue_split	vmlinux	EXPORT_SYMBOL
+0x168a8cfa	blk_queue_stack_limits	vmlinux	EXPORT_SYMBOL
+0xacf49ead	blk_queue_update_dma_alignment	vmlinux	EXPORT_SYMBOL
+0x6eb523f6	blk_queue_virt_boundary	vmlinux	EXPORT_SYMBOL
+0x80a1d516	blk_queue_write_cache	vmlinux	EXPORT_SYMBOL_GPL
+0x65dd91fb	blk_rq_append_bio	vmlinux	EXPORT_SYMBOL
+0xed978f65	blk_rq_map_kern	vmlinux	EXPORT_SYMBOL
+0x5fb9261e	blk_rq_map_user_iov	vmlinux	EXPORT_SYMBOL
+0x016dcf93	blk_rq_unmap_user	vmlinux	EXPORT_SYMBOL
+0x506fbfbe	blk_set_stacking_limits	vmlinux	EXPORT_SYMBOL
+0x7a9b37e8	blk_start_plug	vmlinux	EXPORT_SYMBOL
+0x84502a47	blk_status_to_errno	vmlinux	EXPORT_SYMBOL_GPL
+0xc6a7a9d4	blk_verify_command	vmlinux	EXPORT_SYMBOL
+0xf981545f	blkdev_fsync	vmlinux	EXPORT_SYMBOL
+0x8edf9bbe	blkdev_get	vmlinux	EXPORT_SYMBOL
+0x91c306c1	blkdev_get_by_dev	vmlinux	EXPORT_SYMBOL
+0xf80e4f97	blkdev_get_by_path	vmlinux	EXPORT_SYMBOL
+0xead69937	blkdev_issue_discard	vmlinux	EXPORT_SYMBOL
+0xb36a1cb6	blkdev_issue_write_same	vmlinux	EXPORT_SYMBOL
+0x06875746	blkdev_issue_zeroout	vmlinux	EXPORT_SYMBOL
+0x27ea8e2c	blkdev_put	vmlinux	EXPORT_SYMBOL
+0xb47eab4b	blocking_notifier_call_chain	vmlinux	EXPORT_SYMBOL_GPL
+0xe31b82b7	blocking_notifier_chain_register	vmlinux	EXPORT_SYMBOL_GPL
+0x3931f77c	blocking_notifier_chain_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x15244c9d	boot_cpu_data	vmlinux	EXPORT_SYMBOL
+0x18565e4a	bsg_job_done	vmlinux	EXPORT_SYMBOL_GPL
+0x28aa6a67	call_rcu	vmlinux	EXPORT_SYMBOL_GPL
+0xa7eedcc4	call_usermodehelper	vmlinux	EXPORT_SYMBOL
+0xb5a8d234	cancel_delayed_work	vmlinux	EXPORT_SYMBOL
+0x68f927fb	cancel_delayed_work_sync	vmlinux	EXPORT_SYMBOL
+0x81b1b255	cancel_work_sync	vmlinux	EXPORT_SYMBOL_GPL
+0xc6cbbc89	capable	vmlinux	EXPORT_SYMBOL
+0x58d9cd11	cdev_add	vmlinux	EXPORT_SYMBOL
+0x35a7490c	cdev_alloc	vmlinux	EXPORT_SYMBOL
+0x361c68dd	cdev_del	vmlinux	EXPORT_SYMBOL
+0x71a3afd4	cdev_init	vmlinux	EXPORT_SYMBOL
+0x21e01071	class_destroy	vmlinux	EXPORT_SYMBOL_GPL
+0x02edfc37	class_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0x8d85a7b8	clear_inode	vmlinux	EXPORT_SYMBOL
+0x2c704e54	clear_nlink	vmlinux	EXPORT_SYMBOL
+0x7da99cdd	clear_user	vmlinux	EXPORT_SYMBOL
+0x436d11d6	commit_creds	vmlinux	EXPORT_SYMBOL
+0x29361773	complete	vmlinux	EXPORT_SYMBOL
+0xfd94814e	complete_all	vmlinux	EXPORT_SYMBOL
+0x8133c67d	complete_and_exit	vmlinux	EXPORT_SYMBOL
+0xd471b997	consume_skb	vmlinux	EXPORT_SYMBOL
+0x60b40fd8	copy_user_enhanced_fast_string	vmlinux	EXPORT_SYMBOL
+0xe5772d4a	copy_user_generic_string	vmlinux	EXPORT_SYMBOL
+0xdcc3a419	copy_user_generic_unrolled	vmlinux	EXPORT_SYMBOL
+0xcca03002	cpu_bit_bitmap	vmlinux	EXPORT_SYMBOL_GPL
+0x0ec327a3	cpu_core_map	vmlinux	EXPORT_SYMBOL
+0x0177847e	cpu_info	vmlinux	EXPORT_SYMBOL
+0xd6b33026	cpu_khz	vmlinux	EXPORT_SYMBOL
+0x7a2af7b4	cpu_number	vmlinux	EXPORT_SYMBOL
+0x40cf6820	cpu_sibling_map	vmlinux	EXPORT_SYMBOL
+0x7c46233a	cpufreq_quick_get	vmlinux	EXPORT_SYMBOL
+0xa792fd7f	cpumask_next	vmlinux	EXPORT_SYMBOL
+0x9877db88	cpumask_next_and	vmlinux	EXPORT_SYMBOL
+0xa04f945a	cpus_read_lock	vmlinux	EXPORT_SYMBOL_GPL
+0x18fb2caf	cpus_read_unlock	vmlinux	EXPORT_SYMBOL_GPL
+0x4b05a46b	create_empty_buffers	vmlinux	EXPORT_SYMBOL
+0xd47c857d	crypto_ahash_digest	vmlinux	EXPORT_SYMBOL_GPL
+0x2b3a6251	crypto_ahash_final	vmlinux	EXPORT_SYMBOL_GPL
+0x3997a883	crypto_ahash_setkey	vmlinux	EXPORT_SYMBOL_GPL
+0xd3c1f2a2	crypto_alloc_ahash	vmlinux	EXPORT_SYMBOL_GPL
+0xe156f99a	crypto_destroy_tfm	vmlinux	EXPORT_SYMBOL_GPL
+0xf0c7df0a	crypto_register_shash	vmlinux	EXPORT_SYMBOL_GPL
+0xef21df6f	crypto_unregister_shash	vmlinux	EXPORT_SYMBOL_GPL
+0xb47cca30	csum_ipv6_magic	vmlinux	EXPORT_SYMBOL
+0xe113bbbc	csum_partial	vmlinux	EXPORT_SYMBOL
+0x9202ba1c	current_task	vmlinux	EXPORT_SYMBOL
+0xf944f517	current_time	vmlinux	EXPORT_SYMBOL
+0x51afd267	d_add	vmlinux	EXPORT_SYMBOL
+0x2f925e44	d_drop	vmlinux	EXPORT_SYMBOL
+0xff3c65e3	d_instantiate	vmlinux	EXPORT_SYMBOL
+0xb7c36a6c	d_make_root	vmlinux	EXPORT_SYMBOL
+0x9ec574bb	d_obtain_alias	vmlinux	EXPORT_SYMBOL
+0x4cfdc2d3	d_prune_aliases	vmlinux	EXPORT_SYMBOL
+0x27dee34f	deactivate_super	vmlinux	EXPORT_SYMBOL
+0x384172fd	default_llseek	vmlinux	EXPORT_SYMBOL
+0xaad8c7d6	default_wake_function	vmlinux	EXPORT_SYMBOL
+0xb6a81801	del_gendisk	vmlinux	EXPORT_SYMBOL
+0xfa5223cc	del_timer	vmlinux	EXPORT_SYMBOL
+0xec02a35f	del_timer_sync	vmlinux	EXPORT_SYMBOL
+0x0c1c794e	delayed_work_timer_fn	vmlinux	EXPORT_SYMBOL
+0xbb81a0da	dentry_open	vmlinux	EXPORT_SYMBOL
+0x8c03d20c	destroy_workqueue	vmlinux	EXPORT_SYMBOL_GPL
+0x9c00a37e	dev_get_by_index	vmlinux	EXPORT_SYMBOL
+0xb6fc7fb2	dev_get_by_name	vmlinux	EXPORT_SYMBOL
+0x04977b3c	dev_mc_add	vmlinux	EXPORT_SYMBOL
+0xa7b9bcfb	dev_mc_del	vmlinux	EXPORT_SYMBOL
+0x17cb5773	dev_queue_xmit	vmlinux	EXPORT_SYMBOL
+0x37009442	dev_set_mac_address	vmlinux	EXPORT_SYMBOL
+0x7a8e31b6	dev_set_mtu	vmlinux	EXPORT_SYMBOL
+0x22975705	dev_set_promiscuity	vmlinux	EXPORT_SYMBOL
+0x87c3a329	device_add_disk	vmlinux	EXPORT_SYMBOL
+0xfae8f523	device_create	vmlinux	EXPORT_SYMBOL_GPL
+0x7b4244f7	device_destroy	vmlinux	EXPORT_SYMBOL_GPL
+0x362c9244	dget_parent	vmlinux	EXPORT_SYMBOL
+0xf4db2b68	dma_get_required_mask	vmlinux	EXPORT_SYMBOL_GPL
+0x4ce6ccb6	dma_ops	vmlinux	EXPORT_SYMBOL
+0x0c0b6182	dma_set_coherent_mask	vmlinux	EXPORT_SYMBOL
+0x72743f81	dma_set_mask	vmlinux	EXPORT_SYMBOL
+0x4f68e5c9	do_gettimeofday	vmlinux	EXPORT_SYMBOL
+0x6626afca	down	vmlinux	EXPORT_SYMBOL
+0x25170ad2	down_interruptible	vmlinux	EXPORT_SYMBOL
+0x8e24c3d1	down_read	vmlinux	EXPORT_SYMBOL
+0x121a7fe3	down_read_trylock	vmlinux	EXPORT_SYMBOL
+0x014e4112	down_trylock	vmlinux	EXPORT_SYMBOL
+0xe727456a	down_write	vmlinux	EXPORT_SYMBOL
+0x765a6f77	down_write_trylock	vmlinux	EXPORT_SYMBOL
+0x2e3ee29b	downgrade_write	vmlinux	EXPORT_SYMBOL
+0x873f9a35	dput	vmlinux	EXPORT_SYMBOL
+0x0cc084f7	dst_release	vmlinux	EXPORT_SYMBOL
+0x6b2dc060	dump_stack	vmlinux	EXPORT_SYMBOL
+0xd0c05159	emergency_restart	vmlinux	EXPORT_SYMBOL_GPL
+0x612bfd89	errno_to_blk_status	vmlinux	EXPORT_SYMBOL_GPL
+0x1030cd3d	eth_type_trans	vmlinux	EXPORT_SYMBOL
+0xb05be19c	ether_setup	vmlinux	EXPORT_SYMBOL
+0x34b84315	ethtool_op_get_link	vmlinux	EXPORT_SYMBOL
+0xf654831f	ex_handler_default	vmlinux	EXPORT_SYMBOL
+0xb348a850	ex_handler_refcount	vmlinux	EXPORT_SYMBOL
+0x9620f845	fc_remove_host	drivers/scsi/scsi_transport_fc	EXPORT_SYMBOL
+0x6e314ecb	fget	vmlinux	EXPORT_SYMBOL
+0x851d26ac	filemap_fault	vmlinux	EXPORT_SYMBOL
+0xa92e474e	filp_close	vmlinux	EXPORT_SYMBOL
+0x2a35269e	filp_open	vmlinux	EXPORT_SYMBOL
+0xb352177e	find_first_bit	vmlinux	EXPORT_SYMBOL
+0xf11543ff	find_first_zero_bit	vmlinux	EXPORT_SYMBOL
+0xc0a3d105	find_next_bit	vmlinux	EXPORT_SYMBOL
+0x479c3c86	find_next_zero_bit	vmlinux	EXPORT_SYMBOL
+0x141cfa2c	find_pid_ns	vmlinux	EXPORT_SYMBOL_GPL
+0xef8779bd	find_vma	vmlinux	EXPORT_SYMBOL
+0x92540fbf	finish_wait	vmlinux	EXPORT_SYMBOL
+0x05db4657	flush_signals	vmlinux	EXPORT_SYMBOL
+0x42160169	flush_workqueue	vmlinux	EXPORT_SYMBOL
+0x01ae6893	force_sig	vmlinux	EXPORT_SYMBOL
+0xcbd4898c	fortify_panic	vmlinux	EXPORT_SYMBOL
+0x5813db4b	fput	vmlinux	EXPORT_SYMBOL
+0x8cac8c08	free_cpumask_var	vmlinux	EXPORT_SYMBOL
+0xc1514a3b	free_irq	vmlinux	EXPORT_SYMBOL
+0xef045c19	free_netdev	vmlinux	EXPORT_SYMBOL
+0x4302d0eb	free_pages	vmlinux	EXPORT_SYMBOL
+0xe823886d	freeze_bdev	vmlinux	EXPORT_SYMBOL
+0x57de7efd	from_kgid	vmlinux	EXPORT_SYMBOL
+0x7eba1fd6	from_kuid	vmlinux	EXPORT_SYMBOL
+0x661aea07	fs_bio_set	vmlinux	EXPORT_SYMBOL
+0xd89530c1	fsync_bdev	vmlinux	EXPORT_SYMBOL
+0x3c6053a8	generic_end_io_acct	vmlinux	EXPORT_SYMBOL
+0xc27ffb37	generic_file_llseek	vmlinux	EXPORT_SYMBOL
+0x1908824a	generic_file_open	vmlinux	EXPORT_SYMBOL
+0x1a4cfafb	generic_fillattr	vmlinux	EXPORT_SYMBOL
+0x8847e7c2	generic_make_request	vmlinux	EXPORT_SYMBOL
+0xb3785816	generic_permission	vmlinux	EXPORT_SYMBOL
+0x653e71c5	generic_read_dir	vmlinux	EXPORT_SYMBOL
+0x36692a80	generic_shutdown_super	vmlinux	EXPORT_SYMBOL
+0x1fc190b2	generic_start_io_acct	vmlinux	EXPORT_SYMBOL
+0x8c3e547c	genl_register_family	vmlinux	EXPORT_SYMBOL
+0xf9388c43	genl_unregister_family	vmlinux	EXPORT_SYMBOL
+0x77a5b2a6	genlmsg_put	vmlinux	EXPORT_SYMBOL
+0x25716b2f	get_fs_type	vmlinux	EXPORT_SYMBOL
+0xd0e82063	get_gendisk	vmlinux	EXPORT_SYMBOL
+0x79aa04a2	get_random_bytes	vmlinux	EXPORT_SYMBOL
+0x405c1144	get_seconds	vmlinux	EXPORT_SYMBOL
+0xcbf925f9	get_task_mm	vmlinux	EXPORT_SYMBOL_GPL
+0xe058e703	get_user_pages	vmlinux	EXPORT_SYMBOL
+0x6ac30568	get_user_pages_remote	vmlinux	EXPORT_SYMBOL
+0x9b388444	get_zeroed_page	vmlinux	EXPORT_SYMBOL
+0x3e2b0ba6	groups_alloc	vmlinux	EXPORT_SYMBOL
+0x643d9ba1	groups_free	vmlinux	EXPORT_SYMBOL
+0xf97d1a04	hrtimer_cancel	vmlinux	EXPORT_SYMBOL_GPL
+0xae909197	hrtimer_forward	vmlinux	EXPORT_SYMBOL_GPL
+0xdf243169	hrtimer_init	vmlinux	EXPORT_SYMBOL_GPL
+0x09181e45	hrtimer_start_range_ns	vmlinux	EXPORT_SYMBOL_GPL
+0x1415801b	hrtimer_try_to_cancel	vmlinux	EXPORT_SYMBOL_GPL
+0x370c512e	igrab	vmlinux	EXPORT_SYMBOL
+0x39461d6a	in_egroup_p	vmlinux	EXPORT_SYMBOL
+0x8b8059bd	in_group_p	vmlinux	EXPORT_SYMBOL
+0xa29abf62	init_net	vmlinux	EXPORT_SYMBOL
+0x7cab427a	init_task	vmlinux	EXPORT_SYMBOL
+0x4cc8f9c8	init_timer_key	vmlinux	EXPORT_SYMBOL
+0x70d5fdae	init_uts_ns	vmlinux	EXPORT_SYMBOL_GPL
+0xfe487975	init_wait_entry	vmlinux	EXPORT_SYMBOL
+0xaf73b8cd	inode_init_always	vmlinux	EXPORT_SYMBOL
+0x7aec6520	inode_permission	vmlinux	EXPORT_SYMBOL
+0x5ed90adc	int_to_scsilun	vmlinux	EXPORT_SYMBOL
+0x06640311	invalidate_partition	vmlinux	EXPORT_SYMBOL
+0x93a6e0b2	io_schedule	vmlinux	EXPORT_SYMBOL
+0xfbc4f89e	io_schedule_timeout	vmlinux	EXPORT_SYMBOL
+0x8e82828e	iomem_resource	vmlinux	EXPORT_SYMBOL
+0x556422b3	ioremap_cache	vmlinux	EXPORT_SYMBOL
+0x093a219c	ioremap_nocache	vmlinux	EXPORT_SYMBOL
+0xedc03953	iounmap	vmlinux	EXPORT_SYMBOL
+0xc4d9f382	ipmi_create_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xf388b18b	ipmi_destroy_user	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xd1f579d0	ipmi_free_recv_msg	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xf5531bea	ipmi_poll_interface	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x9b21c8ea	ipmi_register_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x4c2054d7	ipmi_request_settime	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x50f65edf	ipmi_set_gets_events	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xfaaa4831	ipmi_set_my_address	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xa19985b7	ipmi_smi_msg_received	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xe4330a39	ipmi_unregister_smi	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0xe4f4665b	ipmi_validate_addr	drivers/char/ipmi/ipmi_msghandler	EXPORT_SYMBOL
+0x23daa267	iput	vmlinux	EXPORT_SYMBOL
+0x263074f8	irq_set_affinity_hint	vmlinux	EXPORT_SYMBOL_GPL
+0x12e285ec	is_uv_system	vmlinux	EXPORT_SYMBOL_GPL
+0x0ac8de99	iterate_dir	vmlinux	EXPORT_SYMBOL
+0x15ba50a6	jiffies	vmlinux	EXPORT_SYMBOL
+0x055e77e8	jiffies_64	vmlinux	EXPORT_SYMBOL
+0x37befc70	jiffies_to_msecs	vmlinux	EXPORT_SYMBOL
+0x188ea314	jiffies_to_timespec64	vmlinux	EXPORT_SYMBOL
+0x7f24de73	jiffies_to_usecs	vmlinux	EXPORT_SYMBOL
+0x44b5ee9a	kasprintf	vmlinux	EXPORT_SYMBOL
+0x1f5b120b	kern_path	vmlinux	EXPORT_SYMBOL
+0x2f304e00	kernel_recvmsg	vmlinux	EXPORT_SYMBOL
+0xcbd4506c	kernel_sendmsg	vmlinux	EXPORT_SYMBOL
+0xcc8e5988	kernel_setsockopt	vmlinux	EXPORT_SYMBOL
+0x265bbef9	kexec_crash_loaded	vmlinux	EXPORT_SYMBOL_GPL
+0x037a0cba	kfree	vmlinux	EXPORT_SYMBOL
+0x19f462ab	kfree_call_rcu	vmlinux	EXPORT_SYMBOL_GPL
+0x67b4bbab	kfree_skb	vmlinux	EXPORT_SYMBOL
+0x9de2b11d	kill_anon_super	vmlinux	EXPORT_SYMBOL
+0x1036efcc	kill_block_super	vmlinux	EXPORT_SYMBOL
+0xf4b9b193	kmalloc_caches	vmlinux	EXPORT_SYMBOL
+0xa202a8e5	kmalloc_order_trace	vmlinux	EXPORT_SYMBOL
+0xf159fe55	kmem_cache_alloc	vmlinux	EXPORT_SYMBOL
+0xc2ce825d	kmem_cache_alloc_node	vmlinux	EXPORT_SYMBOL
+0x697512e8	kmem_cache_alloc_node_trace	vmlinux	EXPORT_SYMBOL
+0xf86c8d03	kmem_cache_alloc_trace	vmlinux	EXPORT_SYMBOL
+0x88833fb1	kmem_cache_create	vmlinux	EXPORT_SYMBOL
+0x8221c5b1	kmem_cache_create_usercopy	vmlinux	EXPORT_SYMBOL
+0x47b84d71	kmem_cache_destroy	vmlinux	EXPORT_SYMBOL
+0xfb2557c2	kmem_cache_free	vmlinux	EXPORT_SYMBOL
+0xfee794cb	kmem_cache_shrink	vmlinux	EXPORT_SYMBOL
+0x0973d7fb	kobject_add	vmlinux	EXPORT_SYMBOL
+0xc985b4ca	kobject_create_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0xe9ec6844	kobject_del	vmlinux	EXPORT_SYMBOL
+0xa9c2cec5	kobject_get	vmlinux	EXPORT_SYMBOL
+0x217548d3	kobject_init	vmlinux	EXPORT_SYMBOL
+0x71c0e774	kobject_init_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0x2cec6038	kobject_put	vmlinux	EXPORT_SYMBOL
+0xafab167e	kobject_set_name	vmlinux	EXPORT_SYMBOL
+0x3243d256	kobject_uevent_env	vmlinux	EXPORT_SYMBOL_GPL
+0x85f5e2aa	krealloc	vmlinux	EXPORT_SYMBOL
+0xa967147b	kset_create_and_add	vmlinux	EXPORT_SYMBOL_GPL
+0x84d07d10	kset_find_obj	vmlinux	EXPORT_SYMBOL_GPL
+0x2064e105	kset_register	vmlinux	EXPORT_SYMBOL
+0x026fd227	kset_unregister	vmlinux	EXPORT_SYMBOL
+0xc499ae1e	kstrdup	vmlinux	EXPORT_SYMBOL
+0xaf6ae696	kstrndup	vmlinux	EXPORT_SYMBOL
+0x752d5f5b	kstrtobool	vmlinux	EXPORT_SYMBOL
+0xc6c09e43	kstrtobool_from_user	vmlinux	EXPORT_SYMBOL
+0x373db350	kstrtoint	vmlinux	EXPORT_SYMBOL
+0x10f1064d	kstrtoint_from_user	vmlinux	EXPORT_SYMBOL
+0x1b17e06c	kstrtoll	vmlinux	EXPORT_SYMBOL
+0x42adadb9	kstrtoll_from_user	vmlinux	EXPORT_SYMBOL
+0x3fa0d062	kstrtou16	vmlinux	EXPORT_SYMBOL
+0xa46f2f1b	kstrtouint	vmlinux	EXPORT_SYMBOL
+0xdc20f322	kstrtouint_from_user	vmlinux	EXPORT_SYMBOL
+0x7c3aaa29	kstrtoul_from_user	vmlinux	EXPORT_SYMBOL
+0x060ea2d6	kstrtoull	vmlinux	EXPORT_SYMBOL
+0x886ce541	kstrtoull_from_user	vmlinux	EXPORT_SYMBOL
+0x7a22066a	kthread_bind	vmlinux	EXPORT_SYMBOL
+0xdc1e5ca7	kthread_create_on_node	vmlinux	EXPORT_SYMBOL
+0xb3f7646e	kthread_should_stop	vmlinux	EXPORT_SYMBOL
+0x3e18c761	kthread_stop	vmlinux	EXPORT_SYMBOL
+0xb43f9365	ktime_get	vmlinux	EXPORT_SYMBOL_GPL
+0x484f6edf	ktime_get_coarse_real_ts64	vmlinux	EXPORT_SYMBOL
+0x1edb69d6	ktime_get_raw_ts64	vmlinux	EXPORT_SYMBOL
+0x953e1b9e	ktime_get_real_seconds	vmlinux	EXPORT_SYMBOL_GPL
+0x9ec6ca96	ktime_get_real_ts64	vmlinux	EXPORT_SYMBOL
+0xa9320d27	ktime_get_seconds	vmlinux	EXPORT_SYMBOL_GPL
+0x5e515be6	ktime_get_ts64	vmlinux	EXPORT_SYMBOL_GPL
+0xc4f0da12	ktime_get_with_offset	vmlinux	EXPORT_SYMBOL_GPL
+0x5c017464	kvasprintf	vmlinux	EXPORT_SYMBOL
+0x7aa1756e	kvfree	vmlinux	EXPORT_SYMBOL
+0x7a4497db	kzfree	vmlinux	EXPORT_SYMBOL
+0x4a6b7fd5	lock_page_memcg	vmlinux	EXPORT_SYMBOL
+0xca57baf0	lock_sock_nested	vmlinux	EXPORT_SYMBOL
+0xd9b85ef6	lockref_get	vmlinux	EXPORT_SYMBOL
+0x5d804bfd	lookup_one_len	vmlinux	EXPORT_SYMBOL
+0xaeb7642d	make_kgid	vmlinux	EXPORT_SYMBOL
+0x05d6ab6c	make_kuid	vmlinux	EXPORT_SYMBOL
+0x7c46cf7f	mark_buffer_dirty	vmlinux	EXPORT_SYMBOL
+0xd983e6d2	mark_page_accessed	vmlinux	EXPORT_SYMBOL
+0xacf4d843	match_strdup	vmlinux	EXPORT_SYMBOL
+0x44e9a829	match_token	vmlinux	EXPORT_SYMBOL
+0x54c99fac	mem_section	vmlinux	EXPORT_SYMBOL
+0xa07a37f0	memchr	vmlinux	EXPORT_SYMBOL
+0x449ad0a7	memcmp	vmlinux	EXPORT_SYMBOL
+0x69acdf38	memcpy	vmlinux	EXPORT_SYMBOL
+0xb0e602eb	memmove	vmlinux	EXPORT_SYMBOL
+0x27864d57	memparse	vmlinux	EXPORT_SYMBOL
+0x86c45796	mempool_alloc	vmlinux	EXPORT_SYMBOL
+0x183fa88b	mempool_alloc_slab	vmlinux	EXPORT_SYMBOL
+0x6a244503	mempool_create	vmlinux	EXPORT_SYMBOL
+0x9300507b	mempool_destroy	vmlinux	EXPORT_SYMBOL
+0x074b55fe	mempool_free	vmlinux	EXPORT_SYMBOL
+0x8a99a016	mempool_free_slab	vmlinux	EXPORT_SYMBOL
+0xf812cff6	memscan	vmlinux	EXPORT_SYMBOL
+0xfb578fc5	memset	vmlinux	EXPORT_SYMBOL
+0x113b918c	misc_deregister	vmlinux	EXPORT_SYMBOL
+0x692fcb28	misc_register	vmlinux	EXPORT_SYMBOL
+0x2aa7dddc	mmput	vmlinux	EXPORT_SYMBOL_GPL
+0x87b0fc1b	mmu_notifier_register	vmlinux	EXPORT_SYMBOL_GPL
+0x9f147e1c	mmu_notifier_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xb4234478	mntget	vmlinux	EXPORT_SYMBOL
+0x44bd1620	mntput	vmlinux	EXPORT_SYMBOL
+0xebca8b54	mod_delayed_work_on	vmlinux	EXPORT_SYMBOL_GPL
+0x28985b9f	mod_timer	vmlinux	EXPORT_SYMBOL
+0xaac80d5b	mod_timer_pending	vmlinux	EXPORT_SYMBOL
+0x3fca107d	module_put	vmlinux	EXPORT_SYMBOL
+0x703206a5	module_refcount	vmlinux	EXPORT_SYMBOL
+0xf9a482f9	msleep	vmlinux	EXPORT_SYMBOL
+0x41aed6e7	mutex_lock	vmlinux	EXPORT_SYMBOL
+0xe8de29eb	mutex_lock_killable	vmlinux	EXPORT_SYMBOL
+0xb3b42a38	mutex_trylock	vmlinux	EXPORT_SYMBOL
+0xa6093a32	mutex_unlock	vmlinux	EXPORT_SYMBOL
+0x8d340b10	napi_complete_done	vmlinux	EXPORT_SYMBOL
+0x7c5f4d10	napi_disable	vmlinux	EXPORT_SYMBOL
+0xc29d929c	napi_gro_receive	vmlinux	EXPORT_SYMBOL
+0xad0cc62f	napi_schedule_prep	vmlinux	EXPORT_SYMBOL
+0xcc323b06	netdev_features_change	vmlinux	EXPORT_SYMBOL
+0x89247409	netdev_rx_handler_register	vmlinux	EXPORT_SYMBOL_GPL
+0x338cbfb6	netdev_rx_handler_unregister	vmlinux	EXPORT_SYMBOL_GPL
+0xa1b52f28	netif_carrier_off	vmlinux	EXPORT_SYMBOL
+0x2c6e8018	netif_carrier_on	vmlinux	EXPORT_SYMBOL
+0xb9964ceb	netif_napi_add	vmlinux	EXPORT_SYMBOL
+0x599a521e	netif_napi_del	vmlinux	EXPORT_SYMBOL
+0x13790fe0	netif_receive_skb	vmlinux	EXPORT_SYMBOL
+0x591e6107	netif_rx	vmlinux	EXPORT_SYMBOL
+0x7c119fd5	netlink_broadcast	vmlinux	EXPORT_SYMBOL
+0x22afdba8	netlink_unicast	vmlinux	EXPORT_SYMBOL
+0x84698f00	new_inode	vmlinux	EXPORT_SYMBOL
+0xfdc1bd61	nla_put	vmlinux	EXPORT_SYMBOL
+0x1d5ad689	node_data	vmlinux	EXPORT_SYMBOL
+0x81348cf2	node_to_cpumask_map	vmlinux	EXPORT_SYMBOL
+0x017de3d5	nr_cpu_ids	vmlinux	EXPORT_SYMBOL
+0xfe26fc7c	nr_node_ids	vmlinux	EXPORT_SYMBOL
+0x1e1e140e	ns_to_timespec64	vmlinux	EXPORT_SYMBOL
+0x2f548802	ns_to_timeval	vmlinux	EXPORT_SYMBOL
+0xffae8e8b	nsecs_to_jiffies	vmlinux	EXPORT_SYMBOL_GPL
+0x618911fc	numa_node	vmlinux	EXPORT_SYMBOL
+0x5541ea93	on_each_cpu	vmlinux	EXPORT_SYMBOL
+0x1984d421	out_of_line_wait_on_bit	vmlinux	EXPORT_SYMBOL
+0xb7e99965	override_creds	vmlinux	EXPORT_SYMBOL
+0xc0c0fbb8	page_mapped	vmlinux	EXPORT_SYMBOL
+0x7cd8d75e	page_offset_base	vmlinux	EXPORT_SYMBOL
+0x41956437	pagevec_lookup_range	vmlinux	EXPORT_SYMBOL
+0x8e0ed18f	pagevec_lookup_range_tag	vmlinux	EXPORT_SYMBOL
+0x7c1372e8	panic	vmlinux	EXPORT_SYMBOL
+0x07ceeac9	panic_notifier_list	vmlinux	EXPORT_SYMBOL
+0x109bf554	param_array_ops	vmlinux	EXPORT_SYMBOL
+0x848d4b0d	param_get_int	vmlinux	EXPORT_SYMBOL
+0xaf0bcc3b	param_ops_bool	vmlinux	EXPORT_SYMBOL
+0x1bc833a0	param_ops_byte	vmlinux	EXPORT_SYMBOL
+0x6d688605	param_ops_charp	vmlinux	EXPORT_SYMBOL
+0x0e222cb8	param_ops_int	vmlinux	EXPORT_SYMBOL
+0xf20dc1a6	param_ops_long	vmlinux	EXPORT_SYMBOL
+0xea0d36a9	param_ops_short	vmlinux	EXPORT_SYMBOL
+0x83796716	param_ops_string	vmlinux	EXPORT_SYMBOL
+0xdb792a1b	param_ops_uint	vmlinux	EXPORT_SYMBOL
+0xbd0768f2	param_ops_ulong	vmlinux	EXPORT_SYMBOL
+0x6ff098e1	param_set_bool	vmlinux	EXPORT_SYMBOL
+0x046fe32e	param_set_int	vmlinux	EXPORT_SYMBOL
+0x2e2d56be	path_put	vmlinux	EXPORT_SYMBOL
+0xa16facc2	pci_alloc_irq_vectors_affinity	vmlinux	EXPORT_SYMBOL
+0xe37cbc5c	pci_free_irq_vectors	vmlinux	EXPORT_SYMBOL
+0xc643e9c6	pci_get_device	vmlinux	EXPORT_SYMBOL
+0x5debf108	pci_irq_vector	vmlinux	EXPORT_SYMBOL
+0x0217e814	pci_read_config_byte	vmlinux	EXPORT_SYMBOL
+0xd06cfeb7	pci_read_config_dword	vmlinux	EXPORT_SYMBOL
+0xe7eb21df	pci_set_power_state	vmlinux	EXPORT_SYMBOL
+0x21935607	pci_write_config_byte	vmlinux	EXPORT_SYMBOL
+0xf38f65fd	pci_write_config_dword	vmlinux	EXPORT_SYMBOL
+0x914a26f9	pcie_capability_clear_and_set_word	vmlinux	EXPORT_SYMBOL
+0x1b769475	pcie_capability_read_dword	vmlinux	EXPORT_SYMBOL
+0xa785480e	pcie_capability_read_word	vmlinux	EXPORT_SYMBOL
+0x4c9d28b0	phys_base	vmlinux	EXPORT_SYMBOL
+0x1d19f77b	physical_mask	vmlinux	EXPORT_SYMBOL
+0x6e14fd0d	pid_task	vmlinux	EXPORT_SYMBOL
+0x60a32ea9	pm_power_off	vmlinux	EXPORT_SYMBOL
+0x09533d1b	prepare_creds	vmlinux	EXPORT_SYMBOL
+0xd5fd90f1	prepare_to_wait	vmlinux	EXPORT_SYMBOL
+0x8c26d495	prepare_to_wait_event	vmlinux	EXPORT_SYMBOL
+0x45e69e01	prepare_to_wait_exclusive	vmlinux	EXPORT_SYMBOL
+0x86e03c0a	print_stack_trace	vmlinux	EXPORT_SYMBOL_GPL
+0x27e1a049	printk	vmlinux	EXPORT_SYMBOL
+0x3557b982	pskb_expand_head	vmlinux	EXPORT_SYMBOL
+0x782e6c6b	put_disk	vmlinux	EXPORT_SYMBOL
+0x97ab9ad3	pv_irq_ops	vmlinux	EXPORT_SYMBOL
+0x58388972	pv_lock_ops	vmlinux	EXPORT_SYMBOL
+0xd1e4ec46	queue_delayed_work_on	vmlinux	EXPORT_SYMBOL
+0x121da905	queue_work_on	vmlinux	EXPORT_SYMBOL
+0xa4d9e222	raid_class_attach	drivers/scsi/raid_class	EXPORT_SYMBOL
+0xa7c1a29f	raid_class_release	drivers/scsi/raid_class	EXPORT_SYMBOL
+0x60a13e90	rcu_barrier	vmlinux	EXPORT_SYMBOL_GPL
+0x082ed22e	read_cache_pages	vmlinux	EXPORT_SYMBOL
+0xfb6af58d	recalc_sigpending	vmlinux	EXPORT_SYMBOL
+0x71a50dbc	register_blkdev	vmlinux	EXPORT_SYMBOL
+0x921b5d72	register_filesystem	vmlinux	EXPORT_SYMBOL
+0x60352082	register_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
+0xf68285c0	register_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
+0x6aee3d4e	register_netdev	vmlinux	EXPORT_SYMBOL
+0xd2da1048	register_netdevice_notifier	vmlinux	EXPORT_SYMBOL
+0x3517383e	register_reboot_notifier	vmlinux	EXPORT_SYMBOL
+0xf97d7de2	register_sysctl_table	vmlinux	EXPORT_SYMBOL
+0x14072f0b	release_sock	vmlinux	EXPORT_SYMBOL
+0x72e90816	remap_pfn_range	vmlinux	EXPORT_SYMBOL
+0x37110088	remove_wait_queue	vmlinux	EXPORT_SYMBOL
+0xd6b8e852	request_threaded_irq	vmlinux	EXPORT_SYMBOL
+0xb1625172	revert_creds	vmlinux	EXPORT_SYMBOL
+0xc7a4fbed	rtnl_lock	vmlinux	EXPORT_SYMBOL
+0x6e720ff2	rtnl_unlock	vmlinux	EXPORT_SYMBOL
+0x21dd6f60	sas_attach_transport	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x21f1b728	sas_end_device_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x6f6f9ca3	sas_expander_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x1d6a2bab	sas_phy_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x5c90ad4c	sas_phy_alloc	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xfca42e6f	sas_phy_free	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x0af726c8	sas_port_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xbc5512bb	sas_port_add_phy	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xb51ffc1b	sas_port_alloc_num	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xa1292d65	sas_port_delete	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x91e877a6	sas_port_delete_phy	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x569f0f3f	sas_read_port_mode_page	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xbf1f638a	sas_release_transport	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x595e77d1	sas_remove_host	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0xfca40854	sas_rphy_add	drivers/scsi/scsi_transport_sas	EXPORT_SYMBOL
+0x4629baf2	save_stack_trace	vmlinux	EXPORT_SYMBOL_GPL
+0x723b0954	save_stack_trace_tsk	vmlinux	EXPORT_SYMBOL_GPL
+0x3446e94e	sched_setscheduler	vmlinux	EXPORT_SYMBOL_GPL
+0x01000e51	schedule	vmlinux	EXPORT_SYMBOL
+0x1f37cca7	schedule_hrtimeout_range	vmlinux	EXPORT_SYMBOL_GPL
+0x8ddd8aad	schedule_timeout	vmlinux	EXPORT_SYMBOL
+0x054496b4	schedule_timeout_interruptible	vmlinux	EXPORT_SYMBOL
+0x151f4898	schedule_timeout_uninterruptible	vmlinux	EXPORT_SYMBOL
+0x47e5de68	scmd_printk	vmlinux	EXPORT_SYMBOL
+0x4ca9669f	scnprintf	vmlinux	EXPORT_SYMBOL
+0x5efe852c	scsi_add_device	vmlinux	EXPORT_SYMBOL
+0x2b2c684c	scsi_add_host_with_dma	vmlinux	EXPORT_SYMBOL
+0xbd3e01b5	scsi_block_requests	vmlinux	EXPORT_SYMBOL
+0xf5276e21	scsi_change_queue_depth	vmlinux	EXPORT_SYMBOL
+0x20c23cd5	scsi_device_get	vmlinux	EXPORT_SYMBOL
+0x8d638fde	scsi_device_lookup	vmlinux	EXPORT_SYMBOL
+0xba5c4aa4	scsi_device_put	vmlinux	EXPORT_SYMBOL
+0x849e998f	scsi_device_set_state	vmlinux	EXPORT_SYMBOL
+0x72ea7b2d	scsi_device_type	vmlinux	EXPORT_SYMBOL
+0x15417b7e	scsi_dma_map	vmlinux	EXPORT_SYMBOL
+0x523d5d38	scsi_dma_unmap	vmlinux	EXPORT_SYMBOL
+0xbe57818e	scsi_get_vpd_page	vmlinux	EXPORT_SYMBOL_GPL
+0x84152498	scsi_host_alloc	vmlinux	EXPORT_SYMBOL
+0xf52cff0e	scsi_host_lookup	vmlinux	EXPORT_SYMBOL
+0x9c5407b7	scsi_host_put	vmlinux	EXPORT_SYMBOL
+0xa6bda7d0	scsi_internal_device_block_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0xe17180e6	scsi_internal_device_unblock_nowait	vmlinux	EXPORT_SYMBOL_GPL
+0xdecc4128	scsi_is_host_device	vmlinux	EXPORT_SYMBOL
+0xfdc1bb6e	scsi_is_sdev_device	vmlinux	EXPORT_SYMBOL
+0x433fa965	scsi_print_command	vmlinux	EXPORT_SYMBOL
+0x4627e7c9	scsi_register_driver	vmlinux	EXPORT_SYMBOL
+0xd487b0a3	scsi_remove_device	vmlinux	EXPORT_SYMBOL
+0x1e5c4137	scsi_remove_host	vmlinux	EXPORT_SYMBOL
+0xdb66299c	scsi_remove_target	vmlinux	EXPORT_SYMBOL
+0xff29490b	scsi_scan_host	vmlinux	EXPORT_SYMBOL
+0x5243d0ba	scsi_unblock_requests	vmlinux	EXPORT_SYMBOL
+0xea3c8e4e	scsilun_to_int	vmlinux	EXPORT_SYMBOL
+0x3c95e13f	sdev_prefix_printk	vmlinux	EXPORT_SYMBOL
+0x58b975ad	security_d_instantiate	vmlinux	EXPORT_SYMBOL
+0x08493c4c	send_sig	vmlinux	EXPORT_SYMBOL
+0x525a244e	seq_lseek	vmlinux	EXPORT_SYMBOL
+0x420ecfe3	seq_printf	vmlinux	EXPORT_SYMBOL
+0x98600ced	seq_read	vmlinux	EXPORT_SYMBOL
+0xeb30405e	set_cpus_allowed_ptr	vmlinux	EXPORT_SYMBOL_GPL
+0x025483b1	set_current_groups	vmlinux	EXPORT_SYMBOL
+0x85b4cac1	set_device_ro	vmlinux	EXPORT_SYMBOL
+0x5d02e1a9	set_disk_ro	vmlinux	EXPORT_SYMBOL
+0x9e61bb05	set_freezable	vmlinux	EXPORT_SYMBOL
+0x193e0142	set_nlink	vmlinux	EXPORT_SYMBOL
+0x365acda7	set_normalized_timespec64	vmlinux	EXPORT_SYMBOL
+0xecf3ac66	set_page_dirty	vmlinux	EXPORT_SYMBOL
+0x5a1247f8	set_page_dirty_lock	vmlinux	EXPORT_SYMBOL
+0x29af5707	set_user_nice	vmlinux	EXPORT_SYMBOL
+0xad0cae96	shrink_dcache_parent	vmlinux	EXPORT_SYMBOL
+0x40c7247c	si_meminfo	vmlinux	EXPORT_SYMBOL
+0x6a5fa363	sigprocmask	vmlinux	EXPORT_SYMBOL
+0x8ae0340b	simple_statfs	vmlinux	EXPORT_SYMBOL
+0x0b742fd7	simple_strtol	vmlinux	EXPORT_SYMBOL
+0x20000329	simple_strtoul	vmlinux	EXPORT_SYMBOL
+0x61b7b126	simple_strtoull	vmlinux	EXPORT_SYMBOL
+0x46a5e192	single_open	vmlinux	EXPORT_SYMBOL
+0x61704c0d	single_release	vmlinux	EXPORT_SYMBOL
+0xd724a1eb	skb_checksum_help	vmlinux	EXPORT_SYMBOL
+0xf1b501ca	skb_clone	vmlinux	EXPORT_SYMBOL
+0xb945b867	skb_copy	vmlinux	EXPORT_SYMBOL
+0xe0da1a0e	skb_copy_bits	vmlinux	EXPORT_SYMBOL
+0xdea8077e	skb_dequeue	vmlinux	EXPORT_SYMBOL
+0x098bd7f6	skb_pull	vmlinux	EXPORT_SYMBOL
+0x94ca0b57	skb_push	vmlinux	EXPORT_SYMBOL
+0x5bce0a2a	skb_put	vmlinux	EXPORT_SYMBOL
+0xd2dd5216	skb_queue_purge	vmlinux	EXPORT_SYMBOL
+0x4f13dc57	skb_queue_tail	vmlinux	EXPORT_SYMBOL
+0x994d5651	skb_realloc_headroom	vmlinux	EXPORT_SYMBOL
+0xab9c4857	skb_trim	vmlinux	EXPORT_SYMBOL
+0x7ae5ad74	sme_active	vmlinux	EXPORT_SYMBOL
+0x8a35b432	sme_me_mask	vmlinux	EXPORT_SYMBOL
+0xa3eded0c	smp_call_function_many	vmlinux	EXPORT_SYMBOL
+0x6228c21f	smp_call_function_single	vmlinux	EXPORT_SYMBOL
+0x8b966b63	sn_rtc_cycles_per_second	vmlinux	EXPORT_SYMBOL
+0x28318305	snprintf	vmlinux	EXPORT_SYMBOL
+0xf6106730	sock_create_kern	vmlinux	EXPORT_SYMBOL
+0xa2005ede	sock_release	vmlinux	EXPORT_SYMBOL
+0x91715312	sprintf	vmlinux	EXPORT_SYMBOL
+0x20c55ae0	sscanf	vmlinux	EXPORT_SYMBOL
+0xb369a66d	starget_for_each_device	vmlinux	EXPORT_SYMBOL
+0xaafdc258	strcasecmp	vmlinux	EXPORT_SYMBOL
+0x061651be	strcat	vmlinux	EXPORT_SYMBOL
+0x349cba85	strchr	vmlinux	EXPORT_SYMBOL
+0xe2d5255a	strcmp	vmlinux	EXPORT_SYMBOL
+0xe914e41e	strcpy	vmlinux	EXPORT_SYMBOL
+0x1ac5d3cb	strcspn	vmlinux	EXPORT_SYMBOL
+0x77bc13a0	strim	vmlinux	EXPORT_SYMBOL
+0xf9c0b663	strlcat	vmlinux	EXPORT_SYMBOL
+0x5792f848	strlcpy	vmlinux	EXPORT_SYMBOL
+0x754d539c	strlen	vmlinux	EXPORT_SYMBOL
+0x96b29254	strncasecmp	vmlinux	EXPORT_SYMBOL
+0x5a921311	strncmp	vmlinux	EXPORT_SYMBOL
+0x9166fada	strncpy	vmlinux	EXPORT_SYMBOL
+0x6263e02d	strncpy_from_user	vmlinux	EXPORT_SYMBOL
+0xa916b694	strnlen	vmlinux	EXPORT_SYMBOL
+0xc310b981	strnstr	vmlinux	EXPORT_SYMBOL
+0x9a1dfd65	strpbrk	vmlinux	EXPORT_SYMBOL
+0x9f984513	strrchr	vmlinux	EXPORT_SYMBOL
+0x85df9b6c	strsep	vmlinux	EXPORT_SYMBOL
+0xc29bf967	strspn	vmlinux	EXPORT_SYMBOL
+0x1e6d26a8	strstr	vmlinux	EXPORT_SYMBOL
+0xd349ffc9	submit_bio	vmlinux	EXPORT_SYMBOL
+0x2d3385d3	system_wq	vmlinux	EXPORT_SYMBOL
+0x9545af6d	tasklet_init	vmlinux	EXPORT_SYMBOL
+0x69e49036	thaw_bdev	vmlinux	EXPORT_SYMBOL
+0x53569707	this_cpu_off	vmlinux	EXPORT_SYMBOL
+0xb840d099	try_module_get	vmlinux	EXPORT_SYMBOL
+0x4005f38c	try_wait_for_completion	vmlinux	EXPORT_SYMBOL
+0x44aaf30f	tsc_khz	vmlinux	EXPORT_SYMBOL
+0xfb9107dc	unlock_page	vmlinux	EXPORT_SYMBOL
+0x269e520a	unlock_page_memcg	vmlinux	EXPORT_SYMBOL
+0x74f7f012	unmap_mapping_range	vmlinux	EXPORT_SYMBOL
+0xb5a459dc	unregister_blkdev	vmlinux	EXPORT_SYMBOL
+0x6091b333	unregister_chrdev_region	vmlinux	EXPORT_SYMBOL
+0xa9c55461	unregister_filesystem	vmlinux	EXPORT_SYMBOL
+0x2fe252cc	unregister_inet6addr_notifier	vmlinux	EXPORT_SYMBOL
+0xfe029963	unregister_inetaddr_notifier	vmlinux	EXPORT_SYMBOL
+0x51adffd1	unregister_netdev	vmlinux	EXPORT_SYMBOL
+0x9d0d6206	unregister_netdevice_notifier	vmlinux	EXPORT_SYMBOL
+0xe64ad8ea	unregister_nmi_handler	vmlinux	EXPORT_SYMBOL_GPL
+0xac1a55be	unregister_reboot_notifier	vmlinux	EXPORT_SYMBOL
+0x6be0d38b	unregister_sysctl_table	vmlinux	EXPORT_SYMBOL
+0x51a26dee	unuse_mm	vmlinux	EXPORT_SYMBOL_GPL
+0xcf2a6966	up	vmlinux	EXPORT_SYMBOL
+0xb862f611	up_read	vmlinux	EXPORT_SYMBOL
+0x7c75c1ef	up_write	vmlinux	EXPORT_SYMBOL
+0x81b882d9	use_mm	vmlinux	EXPORT_SYMBOL_GPL
+0x12a38747	usleep_range	vmlinux	EXPORT_SYMBOL
+0xaa86cfb5	uv_possible_blades	vmlinux	EXPORT_SYMBOL_GPL
+0x67dcd76b	uv_setup_irq	vmlinux	EXPORT_SYMBOL_GPL
+0x5d9317d7	uv_teardown_irq	vmlinux	EXPORT_SYMBOL_GPL
+0x999e8297	vfree	vmlinux	EXPORT_SYMBOL
+0x9829a737	vfs_create	vmlinux	EXPORT_SYMBOL
+0xf4b30abf	vfs_fsync	vmlinux	EXPORT_SYMBOL
+0xc6e940e2	vfs_fsync_range	vmlinux	EXPORT_SYMBOL
+0x32552b0a	vfs_getattr	vmlinux	EXPORT_SYMBOL
+0x48f23811	vfs_link	vmlinux	EXPORT_SYMBOL
+0xae8ef654	vfs_llseek	vmlinux	EXPORT_SYMBOL
+0xaabee7af	vfs_mkdir	vmlinux	EXPORT_SYMBOL
+0x642efa64	vfs_mknod	vmlinux	EXPORT_SYMBOL
+0xc210437a	vfs_readlink	vmlinux	EXPORT_SYMBOL
+0xf534550d	vfs_rename	vmlinux	EXPORT_SYMBOL
+0x92c0adbe	vfs_rmdir	vmlinux	EXPORT_SYMBOL
+0xaff59a24	vfs_statfs	vmlinux	EXPORT_SYMBOL
+0x318693f3	vfs_symlink	vmlinux	EXPORT_SYMBOL
+0x8eddea79	vfs_unlink	vmlinux	EXPORT_SYMBOL
+0x3e6a0c09	vm_mmap	vmlinux	EXPORT_SYMBOL
+0x5b56860c	vm_munmap	vmlinux	EXPORT_SYMBOL
+0xd6ee688f	vmalloc	vmlinux	EXPORT_SYMBOL
+0x9cb986f2	vmalloc_base	vmlinux	EXPORT_SYMBOL
+0x2198cff7	vmalloc_to_page	vmlinux	EXPORT_SYMBOL
+0x18e5edf9	vmap	vmlinux	EXPORT_SYMBOL
+0x97651e6c	vmemmap_base	vmlinux	EXPORT_SYMBOL
+0x4b8b3239	vprintk	vmlinux	EXPORT_SYMBOL
+0xf5e03a3a	vscnprintf	vmlinux	EXPORT_SYMBOL
+0x1e01660e	vsnprintf	vmlinux	EXPORT_SYMBOL
+0x5c7574a1	vsprintf	vmlinux	EXPORT_SYMBOL
+0x94961283	vunmap	vmlinux	EXPORT_SYMBOL
+0x40a9b349	vzalloc	vmlinux	EXPORT_SYMBOL
+0x9e0c711d	vzalloc_node	vmlinux	EXPORT_SYMBOL
+0x6de13801	wait_for_completion	vmlinux	EXPORT_SYMBOL
+0x262e823a	wait_for_completion_interruptible	vmlinux	EXPORT_SYMBOL
+0x4d1ff60a	wait_for_completion_timeout	vmlinux	EXPORT_SYMBOL
+0xaa2fd36c	wait_on_page_bit	vmlinux	EXPORT_SYMBOL
+0xa0fbac79	wake_up_bit	vmlinux	EXPORT_SYMBOL
+0xc00d5473	wake_up_process	vmlinux	EXPORT_SYMBOL
+0xded5cc67	write_cache_pages	vmlinux	EXPORT_SYMBOL
+0xa50bcff0	x86_cpu_to_apicid	vmlinux	EXPORT_SYMBOL
+0xabfa477a	xattr_full_name	vmlinux	EXPORT_SYMBOL
+0x760a0f4f	yield	vmlinux	EXPORT_SYMBOL
+0x0525c1ee	zalloc_cpumask_var	vmlinux	EXPORT_SYMBOL
+0x6de864bf	zap_vma_ptes	vmlinux	EXPORT_SYMBOL_GPL
diff --git a/kernel-source/thirdparty/kernel/SOURCES/check-kabi b/kernel-source/thirdparty/kernel/SOURCES/check-kabi
new file mode 100755
index 0000000..f9d4dcb
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/check-kabi
@@ -0,0 +1,149 @@
+#!/usr/bin/python3
+#
+# check-kabi - Red Hat kABI reference checking tool
+#
+# We use this script to check against reference Module.kabi files.
+#
+# Author: Jon Masters <jcm@redhat.com>
+# Copyright (C) 2007-2009 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# General Public License (GPL).
+
+# Changelog:
+#
+# 2018/06/01 - Update for python3 by Petr Oros.
+# 2009/08/15 - Updated for use in RHEL6.
+# 2007/06/13 - Initial rewrite in python by Jon Masters.
+
+__author__ = "Jon Masters <jcm@redhat.com>"
+__version__ = "2.0"
+__date__ = "2009/08/15"
+__copyright__ = "Copyright (C) 2007-2009 Red Hat, Inc"
+__license__ = "GPL"
+
+import getopt
+import string
+import sys
+
+true = 1
+false = 0
+
+
+def load_symvers(symvers, filename):
+    """Load a Module.symvers file."""
+
+    symvers_file = open(filename, "r")
+
+    while true:
+        in_line = symvers_file.readline()
+        if in_line == "":
+            break
+        if in_line == "\n":
+            continue
+        checksum, symbol, directory, type = in_line.split()
+
+        symvers[symbol] = in_line[0:-1]
+
+
+def load_kabi(kabi, filename):
+    """Load a Module.kabi file."""
+
+    kabi_file = open(filename, "r")
+
+    while true:
+        in_line = kabi_file.readline()
+        if in_line == "":
+            break
+        if in_line == "\n":
+            continue
+        checksum, symbol, directory, type = in_line.split()
+
+        kabi[symbol] = in_line[0:-1]
+
+
+def check_kabi(symvers, kabi):
+    """Check Module.kabi and Module.symvers files."""
+
+    fail = 0
+    warn = 0
+    changed_symbols = []
+    moved_symbols = []
+
+    for symbol in kabi:
+        abi_hash, abi_sym, abi_dir, abi_type = kabi[symbol].split()
+        if symbol in symvers:
+            sym_hash, sym_sym, sym_dir, sym_type = symvers[symbol].split()
+            if abi_hash != sym_hash:
+                fail = 1
+                changed_symbols.append(symbol)
+
+            if abi_dir != sym_dir:
+                warn = 1
+                moved_symbols.append(symbol)
+        else:
+            fail = 1
+            changed_symbols.append(symbol)
+
+    if fail:
+        print("*** ERROR - ABI BREAKAGE WAS DETECTED ***")
+        print("")
+        print("The following symbols have been changed (this will cause an ABI breakage):")
+        print("")
+        for symbol in changed_symbols:
+            print(symbol)
+        print("")
+
+    if warn:
+        print("*** WARNING - ABI SYMBOLS MOVED ***")
+        print("")
+        print("The following symbols moved (typically caused by moving a symbol from being")
+        print("provided by the kernel vmlinux out to a loadable module):")
+        print("")
+        for symbol in moved_symbols:
+            print(symbol)
+        print("")
+
+    """Halt the build, if we got errors and/or warnings. In either case,
+       double-checkig is required to avoid introducing / concealing
+       KABI inconsistencies."""
+    if fail or warn:
+        sys.exit(1)
+    sys.exit(0)
+
+
+def usage():
+    print("""
+check-kabi: check Module.kabi and Module.symvers files.
+
+    check-kabi [ -k Module.kabi ] [ -s Module.symvers ]
+
+""")
+
+
+if __name__ == "__main__":
+
+    symvers_file = ""
+    kabi_file = ""
+
+    opts, args = getopt.getopt(sys.argv[1:], 'hk:s:')
+
+    for o, v in opts:
+        if o == "-s":
+            symvers_file = v
+        if o == "-h":
+            usage()
+            sys.exit(0)
+        if o == "-k":
+            kabi_file = v
+
+    if (symvers_file == "") or (kabi_file == ""):
+        usage()
+        sys.exit(1)
+
+    symvers = {}
+    kabi = {}
+
+    load_symvers(symvers, symvers_file)
+    load_kabi(kabi, kabi_file)
+    check_kabi(symvers, kabi)
diff --git a/kernel-source/thirdparty/SOURCES/cpupower.config b/kernel-source/thirdparty/kernel/SOURCES/cpupower.config
similarity index 100%
rename from kernel-source/thirdparty/SOURCES/cpupower.config
rename to kernel-source/thirdparty/kernel/SOURCES/cpupower.config
diff --git a/kernel-source/thirdparty/SOURCES/cpupower.service b/kernel-source/thirdparty/kernel/SOURCES/cpupower.service
similarity index 100%
rename from kernel-source/thirdparty/SOURCES/cpupower.service
rename to kernel-source/thirdparty/kernel/SOURCES/cpupower.service
diff --git a/kernel-source/thirdparty/kernel/SOURCES/filter-aarch64.sh b/kernel-source/thirdparty/kernel/SOURCES/filter-aarch64.sh
new file mode 100644
index 0000000..d45da67
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/filter-aarch64.sh
@@ -0,0 +1,18 @@
+#! /bin/bash
+
+# This is the aarch64 override file for the core/drivers package split.  The
+# module directories listed here and in the generic list in filter-modules.sh
+# will be moved to the resulting kernel-modules package for this arch.
+# Anything not listed in those files will be in the kernel-core package.
+#
+# Please review the default list in filter-modules.sh before making
+# modifications to the overrides below.  If something should be removed across
+# all arches, remove it in the default instead of per-arch.
+
+driverdirs="atm auxdisplay bcma bluetooth firewire fmc infiniband isdn leds media memstick message mmc mtd mwave nfc ntb pcmcia platform power ssb staging tty uio uwb w1"
+
+ethdrvs="3com adaptec arc alteon atheros broadcom cadence calxeda chelsio cisco dec dlink emulex icplus marvell micrel myricom neterion nvidia oki-semi packetengines qlogic rdc renesas sfc silan sis smsc stmicro sun tehuti ti via wiznet xircom"
+
+drmdrvs="amd arm bridge ast exynos hisilicon i2c imx mgag200 meson msm nouveau panel radeon rockchip tegra sun4i tinydrm vc4"
+
+singlemods="ntb_netdev iscsi_ibft iscsi_boot_sysfs megaraid pmcraid qedi qla1280 9pnet_rdma rpcrdma nvmet-rdma nvme-rdma hid-picolcd hid-prodikeys hwa-hc hwpoison-inject target_core_user sbp_target cxgbit iw_cxgb3 iw_cxgb4 cxgb3i cxgb3i cxgb3i_ddp cxgb4i chcr"
diff --git a/kernel-source/thirdparty/kernel/SOURCES/filter-modules.sh b/kernel-source/thirdparty/kernel/SOURCES/filter-modules.sh
new file mode 100755
index 0000000..1fbf683
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/filter-modules.sh
@@ -0,0 +1,154 @@
+#! /bin/bash
+#
+# Called as filter-modules.sh list-of-modules Arch
+
+# This script filters the modules into the kernel-core and kernel-modules
+# subpackages.  We list out subsystems/subdirs to prune from the installed
+# module directory.  What is left is put into the kernel-core package.  What is
+# pruned is contained in the kernel-modules package.
+#
+# This file contains the default subsys/subdirs to prune from all architectures.
+# If an architecture needs to differ, we source a per-arch filter-<arch>.sh file
+# that contains the set of override lists to be used instead.  If a module or
+# subsys should be in kernel-modules on all arches, please change the defaults
+# listed here.
+
+# Set the default dirs/modules to filter out
+driverdirs="atm auxdisplay bcma bluetooth firewire fmc iio infiniband isdn leds media memstick mfd mmc mtd nfc ntb pcmcia platform power ssb staging tty uio uwb w1 virt"
+
+chardrvs="mwave pcmcia"
+
+netdrvs="appletalk can dsa hamradio ieee802154 irda ppp slip usb wireless"
+
+ethdrvs="3com adaptec alteon amd aquantia atheros broadcom cadence calxeda chelsio cisco dec dlink emulex icplus marvell neterion nvidia oki-semi packetengines qlogic rdc renesas sfc silan sis smsc stmicro sun tehuti ti wiznet xircom"
+
+inputdrvs="gameport tablet touchscreen"
+
+scsidrvs="aacraid aic7xxx aic94xx be2iscsi bfa bnx2i bnx2fc csiostor cxgbi esas2r fcoe fnic hisi_sas isci libsas lpfc megaraid mpt2sas mpt3sas mvsas pm8001 qla2xxx qla4xxx sym53c8xx_2 ufs qedf"
+
+usbdrvs="atm image misc serial wusbcore"
+
+fsdrvs="affs befs cifs coda cramfs ecryptfs hfs hfsplus jfs minix ncpfs nilfs2 ocfs2 reiserfs romfs squashfs sysv ubifs ufs"
+
+netprots="6lowpan appletalk atm ax25 batman-adv bluetooth can dccp dsa ieee802154 irda l2tp mac80211 mac802154 mpls netrom nfc rds rfkill rose sctp smc wireless"
+
+drmdrvs="amd ast gma500 i2c i915 mgag200 nouveau radeon via "
+
+singlemods="ntb_netdev iscsi_ibft iscsi_boot_sysfs megaraid pmcraid qedi qla1280 9pnet_rdma rpcrdma nvmet-rdma nvme-rdma hid-picolcd hid-prodikeys hwa-hc hwpoison-inject hid-sensor-hub target_core_user sbp_target cxgbit iw_cxgb3 iw_cxgb4 cxgb3i cxgb3i cxgb3i_ddp cxgb4i chcr parport_serial ism xt_u32 act_ct"
+
+# Grab the arch-specific filter list overrides
+source ./filter-$2.sh
+
+filter_dir() {
+	filelist=$1
+	dir=$2
+
+	grep -v -e "${dir}/" ${filelist} > ${filelist}.tmp
+
+	if [ $? -ne 0 ]
+	then
+		echo "Couldn't remove ${dir}.  Skipping."
+	else
+		grep -e "${dir}/" ${filelist} >> k-d.list
+		mv ${filelist}.tmp $filelist
+	fi
+	
+	return 0
+}
+
+filter_ko() {
+	filelist=$1
+	mod=$2
+
+	grep -v -e "${mod}.ko" ${filelist} > ${filelist}.tmp
+
+	if [ $? -ne 0 ]
+	then
+		echo "Couldn't remove ${mod}.ko  Skipping."
+	else
+		grep -e "${mod}.ko" ${filelist} >> k-d.list
+		mv ${filelist}.tmp $filelist
+	fi
+	
+	return 0
+}
+
+# Filter the drivers/ subsystems
+for subsys in ${driverdirs}
+do
+	filter_dir $1 drivers/${subsys}
+done
+
+# Filter the networking drivers
+for netdrv in ${netdrvs}
+do
+	filter_dir $1 drivers/net/${netdrv}
+done
+
+# Filter the char drivers
+for char in ${chardrvs}
+do
+	filter_dir $1 drivers/char/${input}
+done
+
+# Filter the ethernet drivers
+for eth in ${ethdrvs}
+do
+	filter_dir $1 drivers/net/ethernet/${eth}
+done
+
+# SCSI
+for scsi in ${scsidrvs}
+do
+	filter_dir $1 drivers/scsi/${scsi}
+done
+
+# Input
+for input in ${inputdrvs}
+do
+	filter_dir $1 drivers/input/${input}
+done
+
+# USB
+for usb in ${usbdrvs}
+do
+	filter_dir $1 drivers/usb/${usb}
+done
+
+# Filesystems
+for fs in ${fsdrvs}
+do
+	filter_dir $1 fs/${fs}
+done
+
+# Network protocols
+for prot in ${netprots}
+do
+	filter_dir $1 kernel/net/${prot}
+done
+
+# DRM
+for drm in ${drmdrvs}
+do
+	filter_dir $1 drivers/gpu/drm/${drm}
+done
+
+# Just kill sound.
+filter_dir $1 kernel/sound
+filter_ko $1 drivers/base/regmap/regmap-sdw
+filter_ko $1 drivers/base/regmap/regmap-sdw-mbq
+filter_dir $1 drivers/soundwire
+
+# Now go through and filter any single .ko files that might have deps on the
+# things we filtered above
+for mod in ${singlemods}
+do
+        filter_ko $1 ${mod}
+done
+
+# Go through our generated drivers list and remove the .ko files.  We'll
+# restore them later.
+for mod in `cat k-d.list`
+do
+	rm -rf $mod
+done
diff --git a/kernel-source/thirdparty/kernel/SOURCES/filter-ppc64le.sh b/kernel-source/thirdparty/kernel/SOURCES/filter-ppc64le.sh
new file mode 100644
index 0000000..70eda9c
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/filter-ppc64le.sh
@@ -0,0 +1,14 @@
+#! /bin/bash
+
+# This is the ppc64le override file for the core/drivers package split.  The
+# module directories listed here and in the generic list in filter-modules.sh
+# will be moved to the resulting kernel-modules package for this arch.
+# Anything not listed in those files will be in the kernel-core package.
+#
+# Please review the default list in filter-modules.sh before making
+# modifications to the overrides below.  If something should be removed across
+# all arches, remove it in the default instead of per-arch.
+
+driverdirs="atm auxdisplay bcma bluetooth firewire fmc infiniband isdn leds media memstick message mmc mtd mwave nfc ntb pcmcia platform power ssb staging tty uio uwb w1"
+
+singlemods="ntb_netdev iscsi_ibft iscsi_boot_sysfs megaraid pmcraid qedi qla1280 9pnet_rdma rpcrdma nvmet-rdma nvme-rdma hid-picolcd hid-prodikeys hwa-hc hwpoison-inject target_core_user sbp_target cxgbit iw_cxgb3 iw_cxgb4 cxgb3i cxgb3i cxgb3i_ddp cxgb4i chcr"
diff --git a/kernel-source/thirdparty/kernel/SOURCES/filter-s390x.sh b/kernel-source/thirdparty/kernel/SOURCES/filter-s390x.sh
new file mode 100644
index 0000000..04f7110
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/filter-s390x.sh
@@ -0,0 +1,12 @@
+#! /bin/bash
+
+# This is the s390x override file for the core/drivers package split.  The
+# module directories listed here and in the generic list in filter-modules.sh
+# will be moved to the resulting kernel-modules package for this arch.
+# Anything not listed in those files will be in the kernel-core package.
+#
+# Please review the default list in filter-modules.sh before making
+# modifications to the overrides below.  If something should be removed across
+# all arches, remove it in the default instead of per-arch.
+
+# Defaults work so no need to override
diff --git a/kernel-source/thirdparty/kernel/SOURCES/filter-x86_64.sh b/kernel-source/thirdparty/kernel/SOURCES/filter-x86_64.sh
new file mode 100644
index 0000000..1aa80f2
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/filter-x86_64.sh
@@ -0,0 +1,12 @@
+#! /bin/bash
+
+# This is the x86_64 override file for the core/drivers package split.  The
+# module directories listed here and in the generic list in filter-modules.sh
+# will be moved to the resulting kernel-modules package for this arch.
+# Anything not listed in those files will be in the kernel-core package.
+#
+# Please review the default list in filter-modules.sh before making
+# modifications to the overrides below.  If something should be removed across
+# all arches, remove it in the default instead of per-arch.
+
+# Defaults work so no need to override
diff --git a/kernel-source/thirdparty/kernel/SOURCES/gating.yaml b/kernel-source/thirdparty/kernel/SOURCES/gating.yaml
new file mode 100644
index 0000000..460839d
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/gating.yaml
@@ -0,0 +1,9 @@
+--- !Policy
+product_versions:
+  - rhel-8
+decision_context: osci_compose_gate
+rules:
+  - !PassingTestCaseRule {test_case_name: cki.tier1-aarch64.functional}
+  - !PassingTestCaseRule {test_case_name: cki.tier1-ppc64le.functional}
+  - !PassingTestCaseRule {test_case_name: cki.tier1-s390x.functional}
+  - !PassingTestCaseRule {test_case_name: cki.tier1-x86_64.functional}
diff --git a/kernel-source/thirdparty/kernel/SOURCES/generate_all_configs.sh b/kernel-source/thirdparty/kernel/SOURCES/generate_all_configs.sh
new file mode 100755
index 0000000..86bd6b0
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/generate_all_configs.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+for i in ${NAME}-*.config; do
+	NEW=${NAME}-${VERSION}-`echo $i | cut -d - -f2-`
+	mv ${i} ${NEW}
+done
diff --git a/kernel-source/thirdparty/kernel/SOURCES/generate_bls_conf.sh b/kernel-source/thirdparty/kernel/SOURCES/generate_bls_conf.sh
new file mode 100755
index 0000000..f8415db
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/generate_bls_conf.sh
@@ -0,0 +1,31 @@
+#!/bin/bash
+set -e
+
+. /etc/os-release
+
+kernelver=$1 && shift
+rootfs=$1 && shift
+variant=$1 && shift
+
+output="${rootfs}/lib/modules/${kernelver}/bls.conf"
+date=$(date -u +%Y%m%d%H%M%S)
+
+if [ "${variant:-5}" = "debug" ]; then
+    debugname=" with debugging"
+    debugid="-debug"
+else
+    debugname=""
+    debugid=""
+fi
+
+cat >${output} <<EOF
+title ${NAME} (${kernelver}) ${VERSION}${debugname}
+version ${kernelver}${debugid}
+linux ${bootprefix}/vmlinuz-${kernelver}
+initrd ${bootprefix}/initramfs-${kernelver}.img
+options \$kernelopts
+id ${ID}-${date}-${kernelver}${debugid}
+grub_users \$grub_users
+grub_arg --unrestricted
+grub_class kernel${variant}
+EOF
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-aarch64-debug.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-aarch64-debug.config
new file mode 100644
index 0000000..3ff4c94
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-aarch64-debug.config
@@ -0,0 +1,5694 @@
+# arm64
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACPI_BGRT is not set
+# CONFIG_ACPI_DOCK is not set
+# CONFIG_ACPI_EC_DEBUGFS is not set
+# CONFIG_ACPI_TAD is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AHCI_CEVA is not set
+# CONFIG_AHCI_QORIQ is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_STAPL is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMBA_PL08X is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMD_XGBE_DCB is not set
+# CONFIG_AMIGA_PARTITION is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9802ALS is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCH_ACTIONS is not set
+# CONFIG_ARCH_ALPINE is not set
+# CONFIG_ARCH_BCM2835 is not set
+# CONFIG_ARCH_BERLIN is not set
+# CONFIG_ARCH_BRCMSTB is not set
+# CONFIG_ARCH_EXYNOS is not set
+# CONFIG_ARCH_LAYERSCAPE is not set
+# CONFIG_ARCH_LG1K is not set
+# CONFIG_ARCH_MEDIATEK is not set
+# CONFIG_ARCH_MESON is not set
+# CONFIG_ARCH_MVEBU is not set
+# CONFIG_ARCH_REALTEK is not set
+# CONFIG_ARCH_RENESAS is not set
+# CONFIG_ARCH_ROCKCHIP is not set
+# CONFIG_ARCH_SPRD is not set
+# CONFIG_ARCH_STRATIX10 is not set
+# CONFIG_ARCH_SUNXI is not set
+# CONFIG_ARCH_SYNQUACER is not set
+# CONFIG_ARCH_UNIPHIER is not set
+# CONFIG_ARCH_ZX is not set
+# CONFIG_ARCH_ZYNQMP is not set
+# CONFIG_ARCNET is not set
+# CONFIG_ARM64_16K_PAGES is not set
+# CONFIG_ARM64_4K_PAGES is not set
+# CONFIG_ARM64_DEBUG_PRIORITY_MASKING is not set
+# CONFIG_ARM64_PA_BITS_48 is not set
+# CONFIG_ARM64_PTDUMP_DEBUGFS is not set
+# CONFIG_ARM64_PTR_AUTH is not set
+# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set
+# CONFIG_ARM64_RELOC_TEST is not set
+# CONFIG_ARM64_SW_TTBR0_PAN is not set
+# CONFIG_ARM64_TAGGED_ADDR_ABI is not set
+# CONFIG_ARM64_VA_BITS_42 is not set
+# CONFIG_ARM_BIG_LITTLE_CPUFREQ is not set
+# CONFIG_ARM_CCI_PMU is not set
+# CONFIG_ARM_DSU_PMU is not set
+# CONFIG_ARM_PSCI_CHECKER is not set
+# CONFIG_ARM_SCMI_PROTOCOL is not set
+# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set
+# CONFIG_AS3935 is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATL2 is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_FLEXRM_MBOX is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BCM_PDC_MBOX is not set
+# CONFIG_BCM_SBA_RAID is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFQ_CGROUP_DEBUG is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BGMAC_PLATFORM is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_NULL_BLK_FAULT_INJECTION is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_RSXX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
+# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BRCMSTB_GISB_ARB is not set
+# CONFIG_BT is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CLK_HSDK is not set
+# CONFIG_CLK_QORIQ is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA is not set
+# CONFIG_CMDLINE_FORCE is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CNIC is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMMON_CLK_CDCE706 is not set
+# CONFIG_COMMON_CLK_CDCE925 is not set
+# CONFIG_COMMON_CLK_CS2000_CP is not set
+# CONFIG_COMMON_CLK_HI6220 is not set
+# CONFIG_COMMON_CLK_PWM is not set
+# CONFIG_COMMON_CLK_QCOM is not set
+# CONFIG_COMMON_CLK_SI514 is not set
+# CONFIG_COMMON_CLK_SI5351 is not set
+# CONFIG_COMMON_CLK_SI544 is not set
+# CONFIG_COMMON_CLK_SI570 is not set
+# CONFIG_COMMON_CLK_VC5 is not set
+# CONFIG_COMMON_RESET_HI3660 is not set
+# CONFIG_COMPAT is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CORESIGHT is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPU_BIG_ENDIAN is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_842 is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
+# CONFIG_CRYPTO_DEV_QAT_C62X is not set
+# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
+# CONFIG_CRYPTO_DEV_QCE is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_DH is not set
+# CONFIG_CRYPTO_ECDH is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MCRYPTD is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_SHA3_ARM64 is not set
+# CONFIG_CRYPTO_SHA512_ARM64 is not set
+# CONFIG_CRYPTO_SHA512_ARM64_CE is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM3_ARM64_CE is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_SPECK_NEON is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_ALIGN_RODATA is not set
+# CONFIG_DEBUG_BLK_CGROUP is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_EFI is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_KOBJECT_RELEASE is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM is not set
+# CONFIG_DEBUG_VM_PGFLAGS is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_VM_VMACACHE is not set
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DEBUG_WX is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DEVPORT is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMDGPU_USERPTR is not set
+# CONFIG_DRM_AMD_DC_DCN1_0 is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I2C_SIL164 is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MSM is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LG_LG4573 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_VMWGFX is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DWMAC_GENERIC is not set
+# CONFIG_DWMAC_IPQ806X is not set
+# CONFIG_DW_AXI_DMAC is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_E1000 is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_EPIC100 is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXTCON_MAX3355 is not set
+# CONFIG_EXTCON_QCOM_SPMI_MISC is not set
+# CONFIG_EXTCON_RT8973A is not set
+# CONFIG_EXTCON_SM5502 is not set
+# CONFIG_EXTCON_USB_GPIO is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAIL_FUTEX is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ARMCLCD is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IBM_GXT4500 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_MATROX_G is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VGA16 is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSI is not set
+# CONFIG_FSL_EDMA is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FUJITSU_ES is not set
+# CONFIG_FUNCTION_PROFILER is not set
+# CONFIG_FUSE_DAX is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENWQE is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GFS2_FS is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPIO_74X164 is not set
+# CONFIG_GPIO_74XX_MMIO is not set
+# CONFIG_GPIO_ADNP is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_ALTERA is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_FTGPIO010 is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_HLWD is not set
+# CONFIG_GPIO_MAX3191X is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX7301 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MC33880 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCA953X is not set
+# CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_PISOSR is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_SYSCON is not set
+# CONFIG_GPIO_THUNDERX is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VIPERBOARD is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_XILINX is not set
+# CONFIG_GPIO_XRA1403 is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HARDLOCKUP_DETECTOR is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_ALPS is not set
+# CONFIG_HID_ASUS is not set
+# CONFIG_HID_CMEDIA is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HIP04_ETH is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HISI_FEMAC is not set
+# CONFIG_HIX5HD2_GMAC is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HOTPLUG_PCI_SHPC is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HSA_AMD is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HVC_DCC is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HWSPINLOCK_QCOM is not set
+# CONFIG_HW_RANDOM_IPROC_RNG200 is not set
+# CONFIG_HW_RANDOM_MSM is not set
+# CONFIG_HX711 is not set
+# CONFIG_HYPERV_BALLOON is not set
+# CONFIG_HZ_1000 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_AMD756 is not set
+# CONFIG_I2C_AMD756_S4882 is not set
+# CONFIG_I2C_AMD8111 is not set
+# CONFIG_I2C_BCM_IPROC is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_HELPER_AUTO is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_I801 is not set
+# CONFIG_I2C_ISCH is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NFORCE2_S4985 is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_PIIX4 is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SCMI is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SIS96X is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_VIA is not set
+# CONFIG_I2C_VIAPRO is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_I40E_DCB is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154 is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IIO is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HFI1 is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MISC is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_PWM_BEEPER is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INPUT_TABLET is not set
+# CONFIG_INPUT_TOUCHSCREEN is not set
+# CONFIG_INTEGRITY is not set
+# CONFIG_INTEGRITY_ASYMMETRIC_KEYS is not set
+# CONFIG_INTEGRITY_SIGNATURE is not set
+# CONFIG_INTEL_IDMA64 is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SVM is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTEL_TH is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IP_VS_DEBUG is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IRQ_TIME_ACCOUNTING is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29003 is not set
+# CONFIG_ISL29020 is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_K3_DMA is not set
+# CONFIG_KARMA_PARTITION is not set
+# CONFIG_KASAN_EXTRA is not set
+# CONFIG_KASAN_OUTLINE is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
+# CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZMA is not set
+# CONFIG_KERNEL_LZO is not set
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_AMS369FG06 is not set
+# CONFIG_LCD_HX8357 is not set
+# CONFIG_LCD_ILI922X is not set
+# CONFIG_LCD_ILI9320 is not set
+# CONFIG_LCD_L4F00242T03 is not set
+# CONFIG_LCD_LD9040 is not set
+# CONFIG_LCD_LMS283GF05 is not set
+# CONFIG_LCD_LMS501KF03 is not set
+# CONFIG_LCD_LTV350QV is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LCD_S6E63M0 is not set
+# CONFIG_LCD_TDO24M is not set
+# CONFIG_LCD_VGG2432A4 is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_AAT1290 is not set
+# CONFIG_LEDS_AS3645A is not set
+# CONFIG_LEDS_BCM6328 is not set
+# CONFIG_LEDS_BCM6358 is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_CR0014114 is not set
+# CONFIG_LEDS_DAC124S085 is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_IS31FL319X is not set
+# CONFIG_LEDS_IS31FL32XX is not set
+# CONFIG_LEDS_KTD2692 is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3601X is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LM3692X is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_LP8860 is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_SYSCON is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOAD_UEFI_KEYS is not set
+# CONFIG_LOCALVERSION_AUTO is not set
+# CONFIG_LOCK_STAT is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LPC_ICH is not set
+# CONFIG_LPC_SCH is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MACB is not set
+# CONFIG_MAC_PARTITION is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MDIO_BCM_IPROC is not set
+# CONFIG_MDIO_BUS_MUX_BCM_IPROC is not set
+# CONFIG_MDIO_BUS_MUX_GPIO is not set
+# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEDIA_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_QCOM_RPM is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SM501 is not set
+# CONFIG_MFD_SM501_GPIO is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_VEXPRESS_SYSREG is not set
+# CONFIG_MFD_VIPERBOARD is not set
+# CONFIG_MFD_VX855 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MINIX_SUBPARTITION is not set
+# CONFIG_MISC_RTSX_PCI is not set
+# CONFIG_MISC_RTSX_USB is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_MSM is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_APPLETOUCH is not set
+# CONFIG_MOUSE_BCM5974 is not set
+# CONFIG_MOUSE_CYAPA is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2 is not set
+# CONFIG_MOUSE_PS2_ELANTECH is not set
+# CONFIG_MOUSE_PS2_SENTELIC is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOUSE_SERIAL is not set
+# CONFIG_MOUSE_VSXXXAA is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MV_XOR_V2 is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_MYRI10GE is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_BROCADE is not set
+# CONFIG_NET_VENDOR_CISCO is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_DEC is not set
+# CONFIG_NET_VENDOR_DLINK is not set
+# CONFIG_NET_VENDOR_EMULEX is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NFC is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NOZOMI is not set
+# CONFIG_NO_HZ_IDLE is not set
+# CONFIG_NTB is not set
+# CONFIG_NTB_AMD is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_INTEL is not set
+# CONFIG_NTB_PERF is not set
+# CONFIG_NTB_PINGPONG is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTB_TOOL is not set
+# CONFIG_NTB_TRANSPORT is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NVM is not set
+# CONFIG_NVMEM_BCM_OCOTP is not set
+# CONFIG_NVRAM is not set
+# CONFIG_NVSW_SN2201 is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OSF_PARTITION is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_PLATFORM is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCIE_QCOM is not set
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_PF_STUB is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHY_BCM_NS_USB2 is not set
+# CONFIG_PHY_BCM_NS_USB3 is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_HISI_INNO_USB2 is not set
+# CONFIG_PHY_HISTB_COMBPHY is not set
+# CONFIG_PHY_MAPPHONE_MDM6600 is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PHY_QCOM_APQ8064_SATA is not set
+# CONFIG_PHY_QCOM_IPQ806X_SATA is not set
+# CONFIG_PHY_QCOM_QMP is not set
+# CONFIG_PHY_QCOM_QUSB2 is not set
+# CONFIG_PHY_QCOM_UFS is not set
+# CONFIG_PHY_QCOM_USB_HS is not set
+# CONFIG_PHY_QCOM_USB_HSIC is not set
+# CONFIG_PHY_TUSB1210 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PID_IN_CONTEXTIDR is not set
+# CONFIG_PINCTRL_AMD is not set
+# CONFIG_PINCTRL_APQ8064 is not set
+# CONFIG_PINCTRL_APQ8084 is not set
+# CONFIG_PINCTRL_BROXTON is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8064 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8660 is not set
+# CONFIG_PINCTRL_MSM8916 is not set
+# CONFIG_PINCTRL_MSM8960 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8996 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_MSM8X74 is not set
+# CONFIG_PINCTRL_NS2_MUX is not set
+# CONFIG_PINCTRL_QCOM_SSBI_PMIC is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SINGLE is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PL330_DMA is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PMIC_OPREGION is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_POWERCAP is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_MSM is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_RESET_XGENE is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_NONE is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROTECTED_VIRTUALIZATION_GUEST is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PTP_1588_CLOCK_DTE is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM_FSL_FTM is not set
+# CONFIG_PWM_HIBVT is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_BAM_DMA is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_EBI2 is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_GSBI is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_QFPROM is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QCOM_WDT is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QORIQ_THERMAL is not set
+# CONFIG_QRTR is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RANDOM32_SELFTEST is not set
+# CONFIG_RANDOM_TRUST_CPU is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RC_CORE is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RESET_TI_SYSCON is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RH_KABI_SIZE_ALIGN_CHECKS is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_DS1302 is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS1689 is not set
+# CONFIG_RTC_DRV_DS17285 is not set
+# CONFIG_RTC_DRV_DS17485 is not set
+# CONFIG_RTC_DRV_DS17885 is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_HYM8563 is not set
+# CONFIG_RTC_DRV_ISL12026 is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_MAX6916 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_PL030 is not set
+# CONFIG_RTC_DRV_R7301 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_RX6110 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_SNVS is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_DRV_XGENE is not set
+# CONFIG_RTC_DRV_ZYNQMP is not set
+# CONFIG_RTC_DS1685_PROC_REGS is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTC_SYSTOHC is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_AACRAID is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BNX2X_FCOE is not set
+# CONFIG_SCSI_BNX2_ISCSI is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MPT2SAS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7414 is not set
+# CONFIG_SENSORS_AD7418 is not set
+# CONFIG_SENSORS_ADM1021 is not set
+# CONFIG_SENSORS_ADM1025 is not set
+# CONFIG_SENSORS_ADM1026 is not set
+# CONFIG_SENSORS_ADM1029 is not set
+# CONFIG_SENSORS_ADM1031 is not set
+# CONFIG_SENSORS_ADM1275 is not set
+# CONFIG_SENSORS_ADM9240 is not set
+# CONFIG_SENSORS_ADS1015 is not set
+# CONFIG_SENSORS_ADS7828 is not set
+# CONFIG_SENSORS_ADT7310 is not set
+# CONFIG_SENSORS_ADT7410 is not set
+# CONFIG_SENSORS_ADT7411 is not set
+# CONFIG_SENSORS_ADT7462 is not set
+# CONFIG_SENSORS_ADT7470 is not set
+# CONFIG_SENSORS_ADT7475 is not set
+# CONFIG_SENSORS_AMC6821 is not set
+# CONFIG_SENSORS_APDS990X is not set
+# CONFIG_SENSORS_ASC7621 is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_ATXP1 is not set
+# CONFIG_SENSORS_BH1770 is not set
+# CONFIG_SENSORS_DELL_SMM is not set
+# CONFIG_SENSORS_DME1737 is not set
+# CONFIG_SENSORS_DS1621 is not set
+# CONFIG_SENSORS_DS620 is not set
+# CONFIG_SENSORS_EMC1403 is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_EMC6W201 is not set
+# CONFIG_SENSORS_F71805F is not set
+# CONFIG_SENSORS_F71882FG is not set
+# CONFIG_SENSORS_F75375S is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G760A is not set
+# CONFIG_SENSORS_GL518SM is not set
+# CONFIG_SENSORS_GL520SM is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_I5K_AMB is not set
+# CONFIG_SENSORS_IBMAEM is not set
+# CONFIG_SENSORS_IBMPEX is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA209 is not set
+# CONFIG_SENSORS_INA2XX is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_IT87 is not set
+# CONFIG_SENSORS_LINEAGE is not set
+# CONFIG_SENSORS_LIS3_I2C is not set
+# CONFIG_SENSORS_LM25066 is not set
+# CONFIG_SENSORS_LM63 is not set
+# CONFIG_SENSORS_LM73 is not set
+# CONFIG_SENSORS_LM75 is not set
+# CONFIG_SENSORS_LM77 is not set
+# CONFIG_SENSORS_LM78 is not set
+# CONFIG_SENSORS_LM80 is not set
+# CONFIG_SENSORS_LM83 is not set
+# CONFIG_SENSORS_LM85 is not set
+# CONFIG_SENSORS_LM87 is not set
+# CONFIG_SENSORS_LM90 is not set
+# CONFIG_SENSORS_LM92 is not set
+# CONFIG_SENSORS_LM93 is not set
+# CONFIG_SENSORS_LM95234 is not set
+# CONFIG_SENSORS_LM95241 is not set
+# CONFIG_SENSORS_LM95245 is not set
+# CONFIG_SENSORS_LTC2978 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC4151 is not set
+# CONFIG_SENSORS_LTC4215 is not set
+# CONFIG_SENSORS_LTC4245 is not set
+# CONFIG_SENSORS_LTC4261 is not set
+# CONFIG_SENSORS_MAX16064 is not set
+# CONFIG_SENSORS_MAX16065 is not set
+# CONFIG_SENSORS_MAX1619 is not set
+# CONFIG_SENSORS_MAX1668 is not set
+# CONFIG_SENSORS_MAX197 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX34440 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_MAX6639 is not set
+# CONFIG_SENSORS_MAX6642 is not set
+# CONFIG_SENSORS_MAX6650 is not set
+# CONFIG_SENSORS_MAX6697 is not set
+# CONFIG_SENSORS_MAX8688 is not set
+# CONFIG_SENSORS_MCP3021 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT6775 is not set
+# CONFIG_SENSORS_PC87360 is not set
+# CONFIG_SENSORS_PC87427 is not set
+# CONFIG_SENSORS_PCF8591 is not set
+# CONFIG_SENSORS_PMBUS is not set
+# CONFIG_SENSORS_SCH5627 is not set
+# CONFIG_SENSORS_SCH5636 is not set
+# CONFIG_SENSORS_SHT15 is not set
+# CONFIG_SENSORS_SHT21 is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SIS5595 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_SMSC47B397 is not set
+# CONFIG_SENSORS_SMSC47M1 is not set
+# CONFIG_SENSORS_SMSC47M192 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_THMC50 is not set
+# CONFIG_SENSORS_TMP102 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TMP401 is not set
+# CONFIG_SENSORS_TMP421 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2550 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_UCD9000 is not set
+# CONFIG_SENSORS_UCD9200 is not set
+# CONFIG_SENSORS_VIA686A is not set
+# CONFIG_SENSORS_VT1211 is not set
+# CONFIG_SENSORS_VT8231 is not set
+# CONFIG_SENSORS_W83627EHF is not set
+# CONFIG_SENSORS_W83627HF is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83781D is not set
+# CONFIG_SENSORS_W83791D is not set
+# CONFIG_SENSORS_W83792D is not set
+# CONFIG_SENSORS_W83793 is not set
+# CONFIG_SENSORS_W83795 is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_W83L785TS is not set
+# CONFIG_SENSORS_W83L786NG is not set
+# CONFIG_SENSORS_ZL6100 is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_AMBA_PL010 is not set
+# CONFIG_SERIAL_ARC is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_JSM is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_MSM is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_UARTLITE is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SFC is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SFC_SIENA is not set
+# CONFIG_SGI_IOC4 is not set
+# CONFIG_SGI_PARTITION is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIMPLE_PM_BUS is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMC is not set
+# CONFIG_SMC911X is not set
+# CONFIG_SMSC911X is not set
+# CONFIG_SMSC9420 is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8326 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_AMD_REMBRANDT is not set
+# CONFIG_SND_SOC_SOF_AMD_TOPLEVEL is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_I2C is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_XEN_FRONTEND is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOCIONEXT_SYNQUACER_PREITS is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SOLARIS_X86_PARTITION is not set
+# CONFIG_SOUNDWIRE is not set
+# CONFIG_SOUNDWIRE_AMD is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI_ALTERA is not set
+# CONFIG_SPI_AXI_SPI_ENGINE is not set
+# CONFIG_SPI_BCM_QSPI is not set
+# CONFIG_SPI_BITBANG is not set
+# CONFIG_SPI_FSL_SPI is not set
+# CONFIG_SPI_GPIO is not set
+# CONFIG_SPI_LOOPBACK_TEST is not set
+# CONFIG_SPI_MEM is not set
+# CONFIG_SPI_OC_TINY is not set
+# CONFIG_SPI_PXA2XX is not set
+# CONFIG_SPI_ROCKCHIP is not set
+# CONFIG_SPI_SC18IS602 is not set
+# CONFIG_SPI_SLAVE is not set
+# CONFIG_SPI_SPIDEV is not set
+# CONFIG_SPI_THUNDERX is not set
+# CONFIG_SPI_TLE62X0 is not set
+# CONFIG_SPI_XCOMM is not set
+# CONFIG_SPI_XILINX is not set
+# CONFIG_SPI_ZYNQMP_GQSPI is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SUN_PARTITION is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
+# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_SYS_HYPERVISOR is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TCG_INFINEON is not set
+# CONFIG_TCG_TIS_I2C_ATMEL is not set
+# CONFIG_TCG_TIS_I2C_INFINEON is not set
+# CONFIG_TCG_TIS_I2C_NUVOTON is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KASAN is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_BANG_BANG is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_OF is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THERMAL_WRITABLE_TRIPS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_TIFM_7XX1 is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TUN_VNET_CROSS_LE is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNIXWARE_DISKLABEL is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_SPEEDTOUCH is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_DBGCAP is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFIO_MDEV is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VFIO_PLATFORM is not set
+# CONFIG_VGA_CONSOLE is not set
+# CONFIG_VGA_SWITCHEROO is not set
+# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VMXNET3 is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WDAT_WDT is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WIRELESS is not set
+# CONFIG_WLAN is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_XEN is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XGENE_DMA is not set
+# CONFIG_XILINX_DMA is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILINX_ZYNQMP_DMA is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_A64FX_DIAG=y
+CONFIG_ACPI=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_ERST_DEBUG=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_MEMORY_FAILURE=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_APEI_SEA=y
+CONFIG_ACPI_BUTTON=y
+CONFIG_ACPI_CONFIGFS=m
+CONFIG_ACPI_CONTAINER=y
+CONFIG_ACPI_CPPC_CPUFREQ=y
+CONFIG_ACPI_CUSTOM_METHOD=m
+CONFIG_ACPI_DEBUG=y
+CONFIG_ACPI_DEBUGGER=y
+CONFIG_ACPI_DEBUGGER_USER=m
+CONFIG_ACPI_FAN=y
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_HOTPLUG_MEMORY=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_NUMA=y
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_THERMAL=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AHCI_XGENE=m
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALIM7101_WDT=m
+CONFIG_ALX=m
+CONFIG_AMD_PHY=m
+CONFIG_AMD_XGBE=m
+CONFIG_AMPERE_ERRATUM_AC03_CPU_38=y
+CONFIG_ANON_INODES=y
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_BCM_IPROC=y
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y
+CONFIG_ARCH_HISI=y
+CONFIG_ARCH_QCOM=y
+CONFIG_ARCH_RANDOM=y
+CONFIG_ARCH_SEATTLE=y
+CONFIG_ARCH_TEGRA=y
+CONFIG_ARCH_THUNDER2=y
+CONFIG_ARCH_THUNDER=y
+CONFIG_ARCH_VEXPRESS=y
+CONFIG_ARCH_XGENE=y
+CONFIG_ARM64=y
+CONFIG_ARM64_64K_PAGES=y
+CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y
+CONFIG_ARM64_CNP=y
+CONFIG_ARM64_CRYPTO=y
+CONFIG_ARM64_E0PD=y
+CONFIG_ARM64_ERRATUM_1024718=y
+CONFIG_ARM64_ERRATUM_1542419=y
+CONFIG_ARM64_ERRATUM_819472=y
+CONFIG_ARM64_ERRATUM_824069=y
+CONFIG_ARM64_ERRATUM_826319=y
+CONFIG_ARM64_ERRATUM_827319=y
+CONFIG_ARM64_ERRATUM_832075=y
+CONFIG_ARM64_ERRATUM_834220=y
+CONFIG_ARM64_ERRATUM_843419=y
+CONFIG_ARM64_ERRATUM_858921=y
+CONFIG_ARM64_HW_AFDBM=y
+CONFIG_ARM64_LSE_ATOMICS=y
+CONFIG_ARM64_PAN=y
+CONFIG_ARM64_PA_BITS_52=y
+CONFIG_ARM64_PMEM=y
+CONFIG_ARM64_PSEUDO_NMI=y
+CONFIG_ARM64_RAS_EXTN=y
+CONFIG_ARM64_SVE=y
+CONFIG_ARM64_UAO=y
+CONFIG_ARM64_USER_VA_BITS_52=y
+CONFIG_ARM64_VA_BITS_48=y
+CONFIG_ARM64_VHE=y
+CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y
+CONFIG_ARM_CCN=y
+CONFIG_ARM_CMN=m
+CONFIG_ARM_CPUIDLE=y
+CONFIG_ARM_DMC620_PMU=m
+CONFIG_ARM_MHU=m
+CONFIG_ARM_PMU=y
+CONFIG_ARM_SBSA_WATCHDOG=m
+CONFIG_ARM_SCPI_CPUFREQ=m
+CONFIG_ARM_SCPI_POWER_DOMAIN=m
+CONFIG_ARM_SCPI_PROTOCOL=m
+CONFIG_ARM_SDE_INTERFACE=y
+CONFIG_ARM_SMMU=y
+CONFIG_ARM_SMMU_V3=y
+CONFIG_ARM_SP805_WATCHDOG=m
+CONFIG_ARM_SPE_PMU=m
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_AT803X_PHY=m
+CONFIG_ATA=y
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=y
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUG=y
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH10K_TRACING=y
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATH_DEBUG=y
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATM=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
+CONFIG_AUDIT=y
+CONFIG_AUDITSYSCALL=y
+CONFIG_AUDIT_TREE=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
+CONFIG_BACKLIGHT_GPIO=m
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BACKLIGHT_PWM=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCM87XX_PHY=m
+CONFIG_BCMA=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BCMA_POSSIBLE=y
+CONFIG_BCM_SR_THERMAL=m
+CONFIG_BE2ISCSI=m
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_MISC=m
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_BLK_DEV_LOOP=m
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NULL_BLK=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_SD=y
+CONFIG_BLK_DEV_SR=m
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_LSM=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BQL=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMDBG=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRCM_TRACING=y
+CONFIG_BRIDGE=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BROADCOM_PHY=m
+CONFIG_BSD_DISKLABEL=y
+CONFIG_BSD_PROCESS_ACCT=y
+CONFIG_BSD_PROCESS_ACCT_V3=y
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG=y
+CONFIG_BUG_ON_DATA_CORRUPTION=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEBUG_DEVICES=y
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_CPT=m
+CONFIG_CAVIUM_ERRATUM_22375=y
+CONFIG_CAVIUM_ERRATUM_23144=y
+CONFIG_CAVIUM_ERRATUM_23154=y
+CONFIG_CAVIUM_ERRATUM_27456=y
+CONFIG_CAVIUM_ERRATUM_30115=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CAVIUM_TX2_ERRATUM_219=y
+CONFIG_CB710_CORE=m
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
+CONFIG_CDROM_PKTCDVD=m
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_PRETTYDEBUG=y
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEBUGFS=y
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
+CONFIG_CGROUPS=y
+CONFIG_CGROUP_BPF=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_DEBUG=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHARGER_SMB347=m
+CONFIG_CHECKPOINT_RESTORE=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CHROME_PLATFORMS=y
+CONFIG_CHR_DEV_SCH=m
+CONFIG_CHR_DEV_SG=m
+CONFIG_CHR_DEV_ST=m
+CONFIG_CICADA_PHY=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLKDEV_LOOKUP=y
+CONFIG_CLK_BCM_NS2=y
+CONFIG_CLK_BCM_SR=y
+CONFIG_CLK_SP810=y
+CONFIG_CLK_VEXPRESS_OSC=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CMDLINE="console=ttyAMA0"
+CONFIG_COMMON_CLK_HI3516CV300=y
+CONFIG_COMMON_CLK_HI3519=y
+CONFIG_COMMON_CLK_HI3660=y
+CONFIG_COMMON_CLK_HI3798CV200=y
+CONFIG_COMMON_CLK_SCPI=m
+CONFIG_COMMON_CLK_XGENE=y
+CONFIG_COMMON_RESET_HI6220=m
+CONFIG_COMPACTION=y
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONNECTOR=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONSOLE_TRANSLATIONS=y
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=m
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_CPUMASK_OFFSTACK=y
+CONFIG_CPUSETS=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CRAMFS=m
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=m
+CONFIG_CRC8=m
+CONFIG_CRC_CCITT=y
+CONFIG_CRC_ITU_T=m
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_AES_ARM64_BS=m
+CONFIG_CRYPTO_AES_ARM64_CE=y
+CONFIG_CRYPTO_AES_ARM64_CE_BLK=y
+CONFIG_CRYPTO_AES_ARM64_CE_CCM=y
+CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=m
+CONFIG_CRYPTO_CHACHA20POLY1305=m
+CONFIG_CRYPTO_CHACHA20_NEON=m
+CONFIG_CRYPTO_CMAC=m
+CONFIG_CRYPTO_CRC32=m
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRC32_ARM64_CE=m
+CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=m
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES=m
+CONFIG_CRYPTO_DEV_BCM_SPU=m
+CONFIG_CRYPTO_DEV_CAVIUM_ZIP=m
+CONFIG_CRYPTO_DEV_CCP=y
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CCP_DD=m
+CONFIG_CRYPTO_DEV_CCP_DEBUGFS=y
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECHAINIV=m
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_GHASH_ARM64_CE=m
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_POLY1305=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA1_ARM64_CE=m
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA256_ARM64=m
+CONFIG_CRYPTO_SHA2_ARM64_CE=m
+CONFIG_CRYPTO_SHA3=m
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_XTS=m
+CONFIG_CUSE=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_CYCLADES=m
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DAVICOM_PHY=m
+CONFIG_DCB=y
+CONFIG_DEBUG_ATOMIC_SLEEP=y
+CONFIG_DEBUG_CREDENTIALS=y
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK=y
+CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE=40000
+CONFIG_DEBUG_LIST=y
+CONFIG_DEBUG_LOCK_ALLOC=y
+CONFIG_DEBUG_MUTEXES=y
+CONFIG_DEBUG_NOTIFIERS=y
+CONFIG_DEBUG_OBJECTS=y
+CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
+CONFIG_DEBUG_OBJECTS_FREE=y
+CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
+CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
+CONFIG_DEBUG_OBJECTS_TIMERS=y
+CONFIG_DEBUG_OBJECTS_WORK=y
+CONFIG_DEBUG_PAGEALLOC=y
+CONFIG_DEBUG_PAGE_REF=y
+CONFIG_DEBUG_PERF_USE_VMALLOC=y
+CONFIG_DEBUG_PER_CPU_MAPS=y
+CONFIG_DEBUG_RT_MUTEXES=y
+CONFIG_DEBUG_RWSEMS=y
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DEBUG_SG=y
+CONFIG_DEBUG_SHIRQ=y
+CONFIG_DEBUG_SLAB=y
+CONFIG_DEBUG_SPINLOCK=y
+CONFIG_DEBUG_STACK_USAGE=y
+CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+CONFIG_DETECT_HUNG_TASK=y
+CONFIG_DEVMEM=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DE_AOC=y
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMADEVICES=y
+CONFIG_DMADEVICES_DEBUG=y
+CONFIG_DMADEVICES_VDEBUG=y
+CONFIG_DMATEST=m
+CONFIG_DMA_API_DEBUG=y
+CONFIG_DMA_API_DEBUG_SG=y
+CONFIG_DMA_ENGINE=y
+CONFIG_DMI=y
+CONFIG_DMIID=y
+CONFIG_DMI_SYSFS=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNET=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83640_PHY=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DRM=m
+CONFIG_DRM_AMDGPU=m
+CONFIG_DRM_AMDGPU_CIK=y
+CONFIG_DRM_AMDGPU_GART_DEBUGFS=y
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_AST=m
+CONFIG_DRM_BOCHS=m
+CONFIG_DRM_CIRRUS_QEMU=m
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_HISI_HIBMC=m
+CONFIG_DRM_I2C_CH7006=m
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_LOAD_EDID_FIRMWARE=y
+CONFIG_DRM_MGAG200=m
+CONFIG_DRM_NOUVEAU=m
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_QXL=m
+CONFIG_DRM_RADEON=m
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DUMMY=m
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DWMAC_DWC_QOS_ETH=m
+CONFIG_DW_DMAC=m
+CONFIG_DW_DMAC_PCI=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC=y
+CONFIG_EDAC_BLUEFIELD=m
+CONFIG_EDAC_DEBUG=y
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EDAC_THUNDERX=m
+CONFIG_EDAC_XGENE=m
+CONFIG_EEPROM_93CX6=m
+CONFIG_EEPROM_AT24=m
+CONFIG_EEPROM_EE1004=m
+CONFIG_EEPROM_LEGACY=m
+CONFIG_EEPROM_MAX6875=m
+CONFIG_EFI=y
+CONFIG_EFIVAR_FS=y
+CONFIG_EFI_PARTITION=y
+CONFIG_EFI_STUB=y
+CONFIG_EFI_VARS=y
+CONFIG_EFI_VARS_PSTORE=y
+CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENA_ETHERNET=m
+CONFIG_ENCLOSURE_SERVICES=m
+CONFIG_ENCRYPTED_KEYS=m
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPOLL=y
+CONFIG_ETHOC=m
+CONFIG_EVENT_TRACING=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_DEBUG=y
+CONFIG_EXT4_FS=m
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTCON=y
+CONFIG_EXTCON_GPIO=m
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_FAILOVER=m
+CONFIG_FAILSLAB=y
+CONFIG_FAIL_IO_TIMEOUT=y
+CONFIG_FAIL_MAKE_REQUEST=y
+CONFIG_FAIL_MMC_REQUEST=y
+CONFIG_FAIL_PAGE_ALLOC=y
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FAULT_INJECTION=y
+CONFIG_FAULT_INJECTION_DEBUG_FS=y
+CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y
+CONFIG_FB=y
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_SIMPLE=y
+CONFIG_FB_SSD1307=m
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FMC=m
+CONFIG_FMC_CHARDEV=m
+CONFIG_FMC_FAKEDEV=m
+CONFIG_FMC_TRIVIAL=m
+CONFIG_FMC_WRITE_EEPROM=m
+CONFIG_FONT_SUPPORT=y
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_POINTER=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_OBJECT_LIST=y
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FS_DAX=y
+CONFIG_FTRACE=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ERRATUM_010001=y
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSE_FS=m
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENERIC_CALIBRATE_DELAY=y
+CONFIG_GENERIC_CSUM=y
+CONFIG_GENERIC_HWEIGHT=y
+CONFIG_GENERIC_IRQ_DEBUGFS=y
+CONFIG_GENERIC_PCI_IOMAP=y
+CONFIG_GENERIC_PHY=y
+CONFIG_GENEVE=m
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIOLIB_FASTPATH_LIMIT=512
+CONFIG_GPIO_AMDPT=m
+CONFIG_GPIO_DWAPB=m
+CONFIG_GPIO_GENERIC_PLATFORM=m
+CONFIG_GPIO_MLXBF2=m
+CONFIG_GPIO_PL061=y
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_WATCHDOG=m
+CONFIG_GPIO_XGENE=y
+CONFIG_GPIO_XGENE_SB=m
+CONFIG_GPIO_XLP=m
+CONFIG_GUP_TEST=y
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HIBERNATION=y
+CONFIG_HID=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_BETOP_FF=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CORSAIR=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_ELO=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GEMBIRD=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GFRM=m
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GT683R=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LENOVO=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PENMOUNT=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PLANTRONICS=m
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SENSOR_HUB=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_XINMO=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HISILICON_ERRATUM_161600802=y
+CONFIG_HISILICON_IRQ_MBIGEN=y
+CONFIG_HISILICON_LPC=y
+CONFIG_HISI_PMU=y
+CONFIG_HISI_THERMAL=m
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HNS3=m
+CONFIG_HNS3_DCB=y
+CONFIG_HNS3_ENET=m
+CONFIG_HNS3_HCLGE=m
+CONFIG_HNS3_HCLGEVF=m
+CONFIG_HNS=m
+CONFIG_HNS_DSAF=m
+CONFIG_HNS_ENET=m
+CONFIG_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_PCIE=y
+CONFIG_HP_ILO=m
+CONFIG_HP_WATCHDOG=m
+CONFIG_HUGETLBFS=y
+CONFIG_HVC_DRIVER=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWMON=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_CAVIUM=m
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_TIMERIOMEM=m
+CONFIG_HW_RANDOM_TPM=y
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HW_RANDOM_XGENE=m
+CONFIG_HYPERV=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_TESTING=y
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_100=y
+CONFIG_I2C=y
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_ALGOPCA=m
+CONFIG_I2C_ALGOPCF=m
+CONFIG_I2C_ARB_GPIO_CHALLENGE=m
+CONFIG_I2C_CHARDEV=m
+CONFIG_I2C_COMPAT=y
+CONFIG_I2C_DESIGNWARE_PLATFORM=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_GPIO=m
+CONFIG_I2C_GPIO_FAULT_INJECTOR=y
+CONFIG_I2C_HID=m
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_MLXBF=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MUX=m
+CONFIG_I2C_MUX_GPIO=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_MUX_PCA9541=m
+CONFIG_I2C_MUX_PCA954x=m
+CONFIG_I2C_MUX_PINCTRL=m
+CONFIG_I2C_NFORCE2=m
+CONFIG_I2C_PARPORT=m
+CONFIG_I2C_PARPORT_LIGHT=m
+CONFIG_I2C_PCA_PLATFORM=m
+CONFIG_I2C_QUP=y
+CONFIG_I2C_SIMTEC=m
+CONFIG_I2C_SLAVE=y
+CONFIG_I2C_SLAVE_EEPROM=m
+CONFIG_I2C_SMBUS=m
+CONFIG_I2C_STUB=m
+CONFIG_I2C_THUNDERX=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VERSATILE=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I2C_XGENE_SLIMPRO=m
+CONFIG_I2C_XLP9XX=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I6300ESB_WDT=m
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_ICE=m
+CONFIG_ICPLUS_PHY=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IFCVF=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IKHEADERS=m
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET=y
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_BNXT_RE=m
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_EFA=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_ISER=m
+CONFIG_INFINIBAND_ISERT=m
+CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_SRP=m
+CONFIG_INFINIBAND_SRPT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USER_MAD=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_EVDEV=y
+CONFIG_INPUT_FF_MEMLESS=m
+CONFIG_INPUT_GP2A=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_KEYBOARD=y
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MOUSE=y
+CONFIG_INPUT_MOUSEDEV=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_PCSPKR=m
+CONFIG_INPUT_POLLDEV=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_SPARSEKMAP=m
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_PLATFORM_KEYRING=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_DEVICE_INTERFACE=m
+CONFIG_IPMI_HANDLER=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_ISCSI_TARGET=m
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISO9660_FS=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUG=y
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IWLWIFI_DEVICE_TRACING=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KASAN=y
+CONFIG_KASAN_INLINE=y
+CONFIG_KASAN_VMALLOC=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x1
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYS=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KSM=y
+CONFIG_KUNIT=m
+CONFIG_KUNIT_ALL_TESTS=m
+CONFIG_KVM=y
+CONFIG_KVM_AMD_SEV=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LATENCYTOP=y
+CONFIG_LCD_CLASS_DEVICE=m
+CONFIG_LCD_PLATFORM=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLASS_FLASH=m
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBCRC32C=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOCALVERSION=""
+CONFIG_LOCKD=m
+CONFIG_LOCKDEP_BITS=16
+CONFIG_LOCKDEP_CHAINS_BITS=17
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOCK_EVENT_COUNTS=y
+CONFIG_LOCK_TORTURE_TEST=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=20
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=m
+CONFIG_LSI_ET1011C_PHY=m
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_LXT_PHY=m
+CONFIG_MAC80211=m
+CONFIG_MAC80211_DEBUGFS=y
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_MESSAGE_TRACING=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MAILBOX=y
+CONFIG_MAILBOX_TEST=m
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MARVELL_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MD=y
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_BITBANG=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_GPIO=m
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MDIO_XGENE=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MEGARAID_SAS=m
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
+CONFIG_MEMCG=y
+CONFIG_MEMCG_SWAP=y
+CONFIG_MEMCG_SWAP_ENABLED=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK=m
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_SYSCON=y
+CONFIG_MHI_BUS=m
+CONFIG_MHI_BUS_PCI_GENERIC=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICREL_PHY=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MIGRATION=y
+CONFIG_MII=m
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCMULTI=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_CORE=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXBF_BOOTCTL=m
+CONFIG_MLXBF_GIGE=m
+CONFIG_MLXBF_PMC=m
+CONFIG_MLXBF_TMFIFO=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_I2C=m
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC=m
+CONFIG_MMC_ARMMMCI=m
+CONFIG_MMC_BLOCK=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_DW_PLTFM=m
+CONFIG_MMC_MTK=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_RICOH_MMC=y
+CONFIG_MMC_SDHCI=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_SDHCI_IPROC=m
+CONFIG_MMC_SDHCI_PCI=m
+CONFIG_MMC_SDHCI_PLTFM=m
+CONFIG_MMC_TIFM_SD=m
+CONFIG_MMC_TOSHIBA_PCI=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VIA_SDMMC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMIOTRACE=y
+CONFIG_MMU=y
+CONFIG_MODULES=y
+CONFIG_MODULE_FORCE_LOAD=y
+CONFIG_MODULE_SIG=y
+CONFIG_MODULE_SIG_ALL=y
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
+CONFIG_MODULE_SIG_SHA256=y
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MOUSE_ELAN_I2C=m
+CONFIG_MOUSE_ELAN_I2C_I2C=y
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MPLS=y
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPTCP=y
+CONFIG_MPTCP_HMAC_TEST=y
+CONFIG_MPTCP_IPV6=y
+CONFIG_MQ_IOSCHED_DEADLINE=y
+CONFIG_MQ_IOSCHED_KYBER=y
+CONFIG_MSDOS_FS=m
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MSPRO_BLOCK=m
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD=m
+CONFIG_MTD_BLOCK=m
+CONFIG_MTD_CFI=m
+CONFIG_MTD_CFI_AMDSTD=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_CFI_INTELEXT=m
+CONFIG_MTD_CFI_STAA=m
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_PHYSMAP=m
+CONFIG_MTD_PHYSMAP_OF=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_NATIONAL_PHY=m
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
+CONFIG_NET=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVICES=y
+CONFIG_NETDEVSIM=m
+CONFIG_NETFILTER=y
+CONFIG_NETFILTER_ADVANCED=y
+CONFIG_NETFILTER_INGRESS=y
+CONFIG_NETFILTER_NETLINK=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
+CONFIG_NETFILTER_NETLINK_LOG=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_XTABLES=y
+CONFIG_NETFILTER_XT_CONNMARK=m
+CONFIG_NETFILTER_XT_MARK=m
+CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
+CONFIG_NETFILTER_XT_MATCH_BPF=m
+CONFIG_NETFILTER_XT_MATCH_CGROUP=m
+CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
+CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
+CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
+CONFIG_NETFILTER_XT_MATCH_CPU=m
+CONFIG_NETFILTER_XT_MATCH_DCCP=m
+CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
+CONFIG_NETFILTER_XT_MATCH_DSCP=m
+CONFIG_NETFILTER_XT_MATCH_ECN=m
+CONFIG_NETFILTER_XT_MATCH_ESP=m
+CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_HELPER=m
+CONFIG_NETFILTER_XT_MATCH_HL=m
+CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
+CONFIG_NETFILTER_XT_MATCH_IPVS=m
+CONFIG_NETFILTER_XT_MATCH_LENGTH=m
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+CONFIG_NETFILTER_XT_MATCH_MARK=m
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
+CONFIG_NETFILTER_XT_MATCH_OSF=m
+CONFIG_NETFILTER_XT_MATCH_OWNER=m
+CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
+CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
+CONFIG_NETFILTER_XT_MATCH_QUOTA=m
+CONFIG_NETFILTER_XT_MATCH_RATEEST=m
+CONFIG_NETFILTER_XT_MATCH_REALM=m
+CONFIG_NETFILTER_XT_MATCH_RECENT=m
+CONFIG_NETFILTER_XT_MATCH_SCTP=m
+CONFIG_NETFILTER_XT_MATCH_SOCKET=m
+CONFIG_NETFILTER_XT_MATCH_STATE=m
+CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
+CONFIG_NETFILTER_XT_MATCH_STRING=m
+CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
+CONFIG_NETFILTER_XT_MATCH_U32=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=m
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_FC=y
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_NSH=y
+CONFIG_NET_PACKET_ENGINE=y
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_NET_RX_BUSY_POLL=y
+CONFIG_NET_SCHED=y
+CONFIG_NET_SCH_ATM=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
+CONFIG_NET_SCH_RED=m
+CONFIG_NET_SCH_SFB=m
+CONFIG_NET_SCH_SFQ=m
+CONFIG_NET_SCH_TBF=m
+CONFIG_NET_SCH_TEQL=m
+CONFIG_NET_SWITCHDEV=y
+CONFIG_NET_TC_SKB_EXT=y
+CONFIG_NET_TEAM=m
+CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
+CONFIG_NET_TEAM_MODE_LOADBALANCE=m
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
+CONFIG_NET_VENDOR_AMAZON=y
+CONFIG_NET_VENDOR_AMD=y
+CONFIG_NET_VENDOR_AQUANTIA=y
+CONFIG_NET_VENDOR_ATHEROS=y
+CONFIG_NET_VENDOR_CAVIUM=y
+CONFIG_NET_VENDOR_CHELSIO=y
+CONFIG_NET_VENDOR_GOOGLE=y
+CONFIG_NET_VENDOR_HISILICON=y
+CONFIG_NET_VENDOR_HUAWEI=y
+CONFIG_NET_VENDOR_INTEL=y
+CONFIG_NET_VENDOR_MELLANOX=y
+CONFIG_NET_VENDOR_MICROSOFT=y
+CONFIG_NET_VENDOR_MYRI=y
+CONFIG_NET_VENDOR_NETRONOME=y
+CONFIG_NET_VENDOR_OKI=y
+CONFIG_NET_VENDOR_PENSANDO=y
+CONFIG_NET_VENDOR_QLOGIC=y
+CONFIG_NET_VENDOR_QUALCOMM=y
+CONFIG_NET_VENDOR_REALTEK=y
+CONFIG_NET_VENDOR_ROCKER=y
+CONFIG_NET_VENDOR_SMSC=y
+CONFIG_NET_VENDOR_SOLARFLARE=y
+CONFIG_NET_VENDOR_STMICRO=y
+CONFIG_NET_VRF=m
+CONFIG_NET_XGENE=m
+CONFIG_NET_XGENE_V2=m
+CONFIG_NEW_LEDS=y
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
+CONFIG_NFP_DEBUG=y
+CONFIG_NFSD=m
+CONFIG_NFSD_FAULT_INJECTION=y
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
+CONFIG_NFSD_V2_ACL=y
+CONFIG_NFSD_V3=y
+CONFIG_NFSD_V3_ACL=y
+CONFIG_NFSD_V4=y
+CONFIG_NFSD_V4_SECURITY_LABEL=y
+CONFIG_NFS_COMMON=y
+CONFIG_NFS_DEBUG=y
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_USE_KERNEL_DNS=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
+CONFIG_NLS=y
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
+CONFIG_NLS_CODEPAGE_437=y
+CONFIG_NLS_CODEPAGE_737=m
+CONFIG_NLS_CODEPAGE_775=m
+CONFIG_NLS_CODEPAGE_850=m
+CONFIG_NLS_CODEPAGE_852=m
+CONFIG_NLS_CODEPAGE_855=m
+CONFIG_NLS_CODEPAGE_857=m
+CONFIG_NLS_CODEPAGE_860=m
+CONFIG_NLS_CODEPAGE_861=m
+CONFIG_NLS_CODEPAGE_862=m
+CONFIG_NLS_CODEPAGE_863=m
+CONFIG_NLS_CODEPAGE_864=m
+CONFIG_NLS_CODEPAGE_865=m
+CONFIG_NLS_CODEPAGE_866=m
+CONFIG_NLS_CODEPAGE_869=m
+CONFIG_NLS_CODEPAGE_874=m
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
+CONFIG_NLS_ISO8859_1=m
+CONFIG_NLS_ISO8859_2=m
+CONFIG_NLS_ISO8859_3=m
+CONFIG_NLS_ISO8859_4=m
+CONFIG_NLS_ISO8859_5=m
+CONFIG_NLS_ISO8859_6=m
+CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
+CONFIG_NLS_ISO8859_9=m
+CONFIG_NLS_KOI8_R=m
+CONFIG_NLS_KOI8_U=m
+CONFIG_NLS_MAC_CELTIC=m
+CONFIG_NLS_MAC_CENTEURO=m
+CONFIG_NLS_MAC_CROATIAN=m
+CONFIG_NLS_MAC_CYRILLIC=m
+CONFIG_NLS_MAC_GAELIC=m
+CONFIG_NLS_MAC_GREEK=m
+CONFIG_NLS_MAC_ICELAND=m
+CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
+CONFIG_NLS_MAC_ROMANIAN=m
+CONFIG_NLS_MAC_TURKISH=m
+CONFIG_NLS_UTF8=m
+CONFIG_NODES_SHIFT=3
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NOUVEAU_DEBUG_MMU=y
+CONFIG_NOUVEAU_DEBUG_PUSH=y
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_FULL=y
+CONFIG_NR_CPUS=4096
+CONFIG_NUMA=y
+CONFIG_NUMA_BALANCING=y
+CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_FC=m
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_N_GSM=m
+CONFIG_N_HDLC=m
+CONFIG_OCXL=m
+CONFIG_OF=y
+CONFIG_OF_MDIO=y
+CONFIG_OF_OVERLAY=y
+CONFIG_OF_PMEM=m
+CONFIG_OPENVSWITCH=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPENVSWITCH_GRE=m
+CONFIG_OPENVSWITCH_VXLAN=m
+CONFIG_OPROFILE=m
+CONFIG_OPTIMIZE_INLINING=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_OVERLAY_FS=m
+CONFIG_PACKET=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PAGE_EXTENSION=y
+CONFIG_PAGE_OWNER=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANIC_ON_OOPS=y
+CONFIG_PANIC_ON_OOPS_VALUE=1
+CONFIG_PANIC_TIMEOUT=0
+CONFIG_PARAVIRT=y
+CONFIG_PARAVIRT_TIME_ACCOUNTING=y
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PCC=y
+CONFIG_PCCARD=y
+CONFIG_PCI=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIEPORTBUS=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCIE_IPROC=y
+CONFIG_PCIE_IPROC_MSI=y
+CONFIG_PCIE_IPROC_PLATFORM=y
+CONFIG_PCIPCWATCHDOG=m
+CONFIG_PCI_HISI=y
+CONFIG_PCI_HOST_COMMON=y
+CONFIG_PCI_HOST_GENERIC=y
+CONFIG_PCI_HOST_THUNDER_ECAM=y
+CONFIG_PCI_HOST_THUNDER_PEM=y
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_PASID=y
+CONFIG_PCI_PRI=y
+CONFIG_PCI_STUB=y
+CONFIG_PCI_XGENE=y
+CONFIG_PCI_XGENE_MSI=y
+CONFIG_PERCPU_TEST=m
+CONFIG_PERF_EVENTS=y
+CONFIG_PERSISTENT_KEYRINGS=y
+CONFIG_PHYLIB=y
+CONFIG_PHYLINK=m
+CONFIG_PHY_BRCM_SATA=y
+CONFIG_PHY_HI6220_USB=m
+CONFIG_PHY_NS2_USB_DRD=y
+CONFIG_PHY_XGENE=y
+CONFIG_PID_NS=y
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_IPROC_GPIO=y
+CONFIG_PINCTRL_QDF2XXX=y
+CONFIG_PM=y
+CONFIG_PMBUS=m
+CONFIG_PM_ADVANCED_DEBUG=y
+CONFIG_PM_DEBUG=y
+CONFIG_PM_STD_PARTITION=""
+CONFIG_PM_TEST_SUSPEND=y
+CONFIG_PM_TRACE_RTC=y
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_PNP_DEBUG_MESSAGES=y
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_RESET_GPIO=y
+CONFIG_POWER_RESET_GPIO_RESTART=y
+CONFIG_POWER_RESET_HISI=y
+CONFIG_POWER_RESET_RESTART=y
+CONFIG_POWER_RESET_SYSCON=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPDEV=m
+CONFIG_PPP=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREEMPT_VOLUNTARY=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROFILING=y
+CONFIG_PROVE_LOCKING=y
+CONFIG_PROVE_RCU=y
+CONFIG_PSAMPLE=m
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PSTORE_RAM=m
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_PWM=y
+CONFIG_PWM_BCM_IPROC=y
+CONFIG_QCOM_EMAC=m
+CONFIG_QCOM_FALKOR_ERRATUM_1003=y
+CONFIG_QCOM_FALKOR_ERRATUM_1009=y
+CONFIG_QCOM_FALKOR_ERRATUM_E1041=y
+CONFIG_QCOM_HIDMA=m
+CONFIG_QCOM_HIDMA_MGMT=m
+CONFIG_QCOM_L2_PMU=y
+CONFIG_QCOM_L3_PMU=y
+CONFIG_QCOM_QDF2400_ERRATUM_0065=y
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QFMT_V2=y
+CONFIG_QLA3XXX=m
+CONFIG_QSEMI_PHY=m
+CONFIG_QUEUED_LOCK_STAT=y
+CONFIG_QUOTA=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTA_DEBUG=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RAID_ATTRS=m
+CONFIG_RANDOMIZE_BASE=y
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOMIZE_MODULE_REGION_FULL=y
+CONFIG_RAS=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RCU_TORTURE_TEST=m
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_LOOPBACK=m
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_REALTEK_PHY=m
+CONFIG_REFCOUNT_FULL=y
+CONFIG_RELAY=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RESET_CONTROLLER=y
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL=m
+CONFIG_RFKILL_GPIO=m
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_CORE=m
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_ABB5ZES3=m
+CONFIG_RTC_DRV_ABX80X=m
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1305=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1343=m
+CONFIG_RTC_DRV_DS1347=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1374_WDT=y
+CONFIG_RTC_DRV_DS1390=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1685=y
+CONFIG_RTC_DRV_DS1685_FAMILY=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_DS3232_HWMON=y
+CONFIG_RTC_DRV_EFI=y
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M41T93=m
+CONFIG_RTC_DRV_M41T94=m
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MAX6902=m
+CONFIG_RTC_DRV_MCP795=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_PCF2123=m
+CONFIG_RTC_DRV_PCF2127=m
+CONFIG_RTC_DRV_PCF85063=m
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_PL031=y
+CONFIG_RTC_DRV_R9701=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C348=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX4581=m
+CONFIG_RTC_DRV_RX8010=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_DS1685_SYSFS_REGS=y
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTC_NVMEM=y
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTLWIFI_DEBUG=y
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW88_DEBUG=y
+CONFIG_RTW88_DEBUGFS=y
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_SAMPLES=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SATA_AHCI=y
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_AHCI_SEATTLE=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SCF_TORTURE_TEST=m
+CONFIG_SCHEDSTATS=y
+CONFIG_SCHED_AUTOGROUP=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCSI=y
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_CXGB4_ISCSI=m
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=m
+CONFIG_SCSI_FC_ATTRS=m
+CONFIG_SCSI_HISI_SAS=m
+CONFIG_SCSI_HISI_SAS_PCI=m
+CONFIG_SCSI_HPSA=m
+CONFIG_SCSI_IPR=m
+CONFIG_SCSI_IPR_DUMP=y
+CONFIG_SCSI_IPR_TRACE=y
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_LPFC=m
+CONFIG_SCSI_MPI3MR=m
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS=m
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_QLA_FC=m
+CONFIG_SCSI_QLA_ISCSI=m
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SMARTPQI=m
+CONFIG_SCSI_SPI_ATTRS=m
+CONFIG_SCSI_SRP_ATTRS=m
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SDIO_UART=m
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
+CONFIG_SECURITY=y
+CONFIG_SECURITYFS=y
+CONFIG_SECURITY_INFINIBAND=y
+CONFIG_SECURITY_NETWORK=y
+CONFIG_SECURITY_NETWORK_XFRM=y
+CONFIG_SECURITY_PATH=y
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
+CONFIG_SECURITY_YAMA=y
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_ACPI_POWER=y
+CONFIG_SENSORS_AD7314=m
+CONFIG_SENSORS_ADC128D818=m
+CONFIG_SENSORS_ADCXX=m
+CONFIG_SENSORS_ADS7871=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ARM_SCPI=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G762=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LM70=m
+CONFIG_SENSORS_LTC2945=m
+CONFIG_SENSORS_LTC3815=m
+CONFIG_SENSORS_LTC4222=m
+CONFIG_SENSORS_LTC4260=m
+CONFIG_SENSORS_MAX1111=m
+CONFIG_SENSORS_MAX20751=m
+CONFIG_SENSORS_MAX31790=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT7802=m
+CONFIG_SENSORS_NCT7904=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_POWR1220=m
+CONFIG_SENSORS_PWM_FAN=m
+CONFIG_SENSORS_SHTC1=m
+CONFIG_SENSORS_TC74=m
+CONFIG_SENSORS_TMP103=m
+CONFIG_SENSORS_TPS40422=m
+CONFIG_SENSORS_VEXPRESS=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_XGENE=m
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_DMA=y
+CONFIG_SERIAL_8250_DW=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=32
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RT288X=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_8250_TEGRA=y
+CONFIG_SERIAL_AMBA_PL011=y
+CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=y
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST=y
+CONFIG_SERIAL_NONSTANDARD=y
+CONFIG_SERIAL_OF_PLATFORM=y
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO=y
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_AMBAKMI=y
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
+CONFIG_SIGNED_PE_FILE_VERIFICATION=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP=m
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMC91X=m
+CONFIG_SMP=y
+CONFIG_SMSC_PHY=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_DEBUG=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTL_INPUT_VALIDATION=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DEBUG=y
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_INTEL=m
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=512
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCM_XRUN_DEBUG=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PRINTK=y
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SONY_FF=y
+CONFIG_SOUND=m
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SPI=y
+CONFIG_SPI_CADENCE=m
+CONFIG_SPI_DEBUG=y
+CONFIG_SPI_DESIGNWARE=m
+CONFIG_SPI_DW_MMIO=m
+CONFIG_SPI_MASTER=y
+CONFIG_SPI_PL022=m
+CONFIG_SPI_QUP=y
+CONFIG_SPI_XLP=m
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZ4=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACK_TRACER=y
+CONFIG_STANDALONE=y
+CONFIG_STE10XP=m
+CONFIG_STMMAC_ETH=m
+CONFIG_STMMAC_PLATFORM=m
+CONFIG_STRICT_DEVMEM=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUSPEND=y
+CONFIG_SWAP=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNCLINKMP=m
+CONFIG_SYNCLINK_GT=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_SYSVIPC=y
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=m
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_ATMEL=m
+CONFIG_TCG_CRB=y
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TIS_CORE=y
+CONFIG_TCG_TIS_SPI=m
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=m
+CONFIG_TCM_IBLOCK=m
+CONFIG_TCM_PSCSI=m
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_STRING_HELPERS=m
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL=y
+CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
+CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_GOV_USER_SPACE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_THUNDERX2_PMU=m
+CONFIG_THUNDER_NIC_BGX=m
+CONFIG_THUNDER_NIC_PF=m
+CONFIG_THUNDER_NIC_RGX=m
+CONFIG_THUNDER_NIC_VF=m
+CONFIG_TIFM_CORE=m
+CONFIG_TIGON3=m
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TORTURE_TEST=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRANSPARENT_HUGEPAGE=y
+CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=m
+CONFIG_TUN=m
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UBSAN=y
+CONFIG_UBSAN_SANITIZE_ALL=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UDF_FS=m
+CONFIG_UEFI_CPER_ARM=y
+CONFIG_UHID=m
+CONFIG_UIO=m
+CONFIG_UIO_AEC=m
+CONFIG_UIO_CIF=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PCI_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UIO_SERCOS3=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CHAOSKEY=m
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_HCD_PLATFORM=m
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LED_TRIG=y
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_HUAWEI_CDC_NCM=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_SR9700=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SIMPLE=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_ISD200=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_SUPPORT=y
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_ULPI_BUS=m
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XHCI_PLATFORM=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UWB=m
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_UWB_WHCI=m
+CONFIG_VDPA=m
+CONFIG_VDPA_SIM=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFAT_FS=m
+CONFIG_VFIO=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_NOIOMMU=y
+CONFIG_VFIO_PCI=m
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VHOST_NET=m
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_MMIO=m
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI=y
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VDPA=m
+CONFIG_VIRTIO_VSOCKETS=m
+CONFIG_VIRTUALIZATION=y
+CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VITESSE_PHY=m
+CONFIG_VLAN_8021Q=m
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VM_EVENT_COUNTERS=y
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WDTPCI=m
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_WQ_WATCHDOG=y
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XFS_WARN=y
+CONFIG_XGENE_PMU=y
+CONFIG_XGENE_SLIMPRO_MBOX=m
+CONFIG_XILINX_GMII2RGMII=m
+CONFIG_XZ_DEC=y
+CONFIG_XZ_DEC_POWERPC=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZBUD=y
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZPOOL=y
+CONFIG_ZRAM=m
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
+CONFIG_ZSWAP=y
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-aarch64.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-aarch64.config
new file mode 100644
index 0000000..98c77a5
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-aarch64.config
@@ -0,0 +1,5668 @@
+# arm64
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACPI_APEI_ERST_DEBUG is not set
+# CONFIG_ACPI_BGRT is not set
+# CONFIG_ACPI_CONFIGFS is not set
+# CONFIG_ACPI_CUSTOM_METHOD is not set
+# CONFIG_ACPI_DEBUG is not set
+# CONFIG_ACPI_DEBUGGER is not set
+# CONFIG_ACPI_DEBUGGER_USER is not set
+# CONFIG_ACPI_DOCK is not set
+# CONFIG_ACPI_EC_DEBUGFS is not set
+# CONFIG_ACPI_TAD is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AHCI_CEVA is not set
+# CONFIG_AHCI_QORIQ is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_STAPL is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMBA_PL08X is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMD_XGBE_DCB is not set
+# CONFIG_AMIGA_PARTITION is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9802ALS is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCH_ACTIONS is not set
+# CONFIG_ARCH_ALPINE is not set
+# CONFIG_ARCH_BCM2835 is not set
+# CONFIG_ARCH_BERLIN is not set
+# CONFIG_ARCH_BRCMSTB is not set
+# CONFIG_ARCH_EXYNOS is not set
+# CONFIG_ARCH_LAYERSCAPE is not set
+# CONFIG_ARCH_LG1K is not set
+# CONFIG_ARCH_MEDIATEK is not set
+# CONFIG_ARCH_MESON is not set
+# CONFIG_ARCH_MVEBU is not set
+# CONFIG_ARCH_REALTEK is not set
+# CONFIG_ARCH_RENESAS is not set
+# CONFIG_ARCH_ROCKCHIP is not set
+# CONFIG_ARCH_SPRD is not set
+# CONFIG_ARCH_STRATIX10 is not set
+# CONFIG_ARCH_SUNXI is not set
+# CONFIG_ARCH_SYNQUACER is not set
+# CONFIG_ARCH_UNIPHIER is not set
+# CONFIG_ARCH_ZX is not set
+# CONFIG_ARCH_ZYNQMP is not set
+# CONFIG_ARCNET is not set
+# CONFIG_ARM64_16K_PAGES is not set
+# CONFIG_ARM64_4K_PAGES is not set
+# CONFIG_ARM64_PA_BITS_48 is not set
+# CONFIG_ARM64_PTDUMP_DEBUGFS is not set
+# CONFIG_ARM64_PTR_AUTH is not set
+# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set
+# CONFIG_ARM64_RELOC_TEST is not set
+# CONFIG_ARM64_SW_TTBR0_PAN is not set
+# CONFIG_ARM64_TAGGED_ADDR_ABI is not set
+# CONFIG_ARM64_VA_BITS_42 is not set
+# CONFIG_ARM_BIG_LITTLE_CPUFREQ is not set
+# CONFIG_ARM_CCI_PMU is not set
+# CONFIG_ARM_DSU_PMU is not set
+# CONFIG_ARM_PSCI_CHECKER is not set
+# CONFIG_ARM_SCMI_PROTOCOL is not set
+# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set
+# CONFIG_AS3935 is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_DEBUG is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_TRACING is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_DEBUG is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATL2 is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_FLEXRM_MBOX is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BCM_PDC_MBOX is not set
+# CONFIG_BCM_SBA_RAID is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFQ_CGROUP_DEBUG is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BGMAC_PLATFORM is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_RSXX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
+# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BRCMDBG is not set
+# CONFIG_BRCMSTB_GISB_ARB is not set
+# CONFIG_BRCM_TRACING is not set
+# CONFIG_BT is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_DEBUG_DEVICES is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
+# CONFIG_CFG80211_DEBUGFS is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CGROUP_DEBUG is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CLK_HSDK is not set
+# CONFIG_CLK_QORIQ is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA is not set
+# CONFIG_CMDLINE_FORCE is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CNIC is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMMON_CLK_CDCE706 is not set
+# CONFIG_COMMON_CLK_CDCE925 is not set
+# CONFIG_COMMON_CLK_CS2000_CP is not set
+# CONFIG_COMMON_CLK_HI6220 is not set
+# CONFIG_COMMON_CLK_PWM is not set
+# CONFIG_COMMON_CLK_QCOM is not set
+# CONFIG_COMMON_CLK_SI514 is not set
+# CONFIG_COMMON_CLK_SI5351 is not set
+# CONFIG_COMMON_CLK_SI544 is not set
+# CONFIG_COMMON_CLK_SI570 is not set
+# CONFIG_COMMON_CLK_VC5 is not set
+# CONFIG_COMMON_RESET_HI3660 is not set
+# CONFIG_COMPAT is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CORESIGHT is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPU_BIG_ENDIAN is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_842 is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
+# CONFIG_CRYPTO_DEV_QAT_C62X is not set
+# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
+# CONFIG_CRYPTO_DEV_QCE is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_DH is not set
+# CONFIG_CRYPTO_ECDH is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MCRYPTD is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_SHA3_ARM64 is not set
+# CONFIG_CRYPTO_SHA512_ARM64 is not set
+# CONFIG_CRYPTO_SHA512_ARM64_CE is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM3_ARM64_CE is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_SPECK_NEON is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_ALIGN_RODATA is not set
+# CONFIG_DEBUG_ATOMIC_SLEEP is not set
+# CONFIG_DEBUG_BLK_CGROUP is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_CREDENTIALS is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_EFI is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK is not set
+# CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_LOCK_ALLOC is not set
+# CONFIG_DEBUG_MUTEXES is not set
+# CONFIG_DEBUG_NOTIFIERS is not set
+# CONFIG_DEBUG_OBJECTS is not set
+# CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_OBJECTS_FREE is not set
+# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set
+# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_OBJECTS_TIMERS is not set
+# CONFIG_DEBUG_OBJECTS_WORK is not set
+# CONFIG_DEBUG_PAGEALLOC is not set
+# CONFIG_DEBUG_PAGE_REF is not set
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+# CONFIG_DEBUG_PER_CPU_MAPS is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_RT_MUTEXES is not set
+# CONFIG_DEBUG_RWSEMS is not set
+# CONFIG_DEBUG_SG is not set
+# CONFIG_DEBUG_SLAB is not set
+# CONFIG_DEBUG_SPINLOCK is not set
+# CONFIG_DEBUG_STACK_USAGE is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
+# CONFIG_DEBUG_WX is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DEVMEM is not set
+# CONFIG_DEVPORT is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMADEVICES_DEBUG is not set
+# CONFIG_DMADEVICES_VDEBUG is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_API_DEBUG is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMDGPU_USERPTR is not set
+# CONFIG_DRM_AMD_DC_DCN1_0 is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I2C_SIL164 is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MSM is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LG_LG4573 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_VMWGFX is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DWMAC_GENERIC is not set
+# CONFIG_DWMAC_IPQ806X is not set
+# CONFIG_DW_AXI_DMAC is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_E1000 is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EDAC_DEBUG is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_EPIC100 is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_DEBUG is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXTCON_MAX3355 is not set
+# CONFIG_EXTCON_QCOM_SPMI_MISC is not set
+# CONFIG_EXTCON_RT8973A is not set
+# CONFIG_EXTCON_SM5502 is not set
+# CONFIG_EXTCON_USB_GPIO is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAILSLAB is not set
+# CONFIG_FAIL_IO_TIMEOUT is not set
+# CONFIG_FAIL_MAKE_REQUEST is not set
+# CONFIG_FAIL_MMC_REQUEST is not set
+# CONFIG_FAIL_PAGE_ALLOC is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FAULT_INJECTION is not set
+# CONFIG_FAULT_INJECTION_DEBUG_FS is not set
+# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ARMCLCD is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IBM_GXT4500 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_MATROX_G is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VGA16 is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSCACHE_OBJECT_LIST is not set
+# CONFIG_FSI is not set
+# CONFIG_FSL_EDMA is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FUJITSU_ES is not set
+# CONFIG_FUNCTION_PROFILER is not set
+# CONFIG_FUSE_DAX is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENERIC_IRQ_DEBUGFS is not set
+# CONFIG_GENWQE is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GFS2_FS is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPIO_74X164 is not set
+# CONFIG_GPIO_74XX_MMIO is not set
+# CONFIG_GPIO_ADNP is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_ALTERA is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_FTGPIO010 is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_HLWD is not set
+# CONFIG_GPIO_MAX3191X is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX7301 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MC33880 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCA953X is not set
+# CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_PISOSR is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_SYSCON is not set
+# CONFIG_GPIO_THUNDERX is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VIPERBOARD is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_XILINX is not set
+# CONFIG_GPIO_XRA1403 is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_GUP_TEST is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HARDLOCKUP_DETECTOR is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_ALPS is not set
+# CONFIG_HID_ASUS is not set
+# CONFIG_HID_CMEDIA is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HIP04_ETH is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HISI_FEMAC is not set
+# CONFIG_HIX5HD2_GMAC is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HOTPLUG_PCI_SHPC is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HSA_AMD is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HVC_DCC is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HWSPINLOCK_QCOM is not set
+# CONFIG_HW_RANDOM_IPROC_RNG200 is not set
+# CONFIG_HW_RANDOM_MSM is not set
+# CONFIG_HX711 is not set
+# CONFIG_HYPERV_BALLOON is not set
+# CONFIG_HZ_1000 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_AMD756 is not set
+# CONFIG_I2C_AMD756_S4882 is not set
+# CONFIG_I2C_AMD8111 is not set
+# CONFIG_I2C_BCM_IPROC is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
+# CONFIG_I2C_HELPER_AUTO is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_I801 is not set
+# CONFIG_I2C_ISCH is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NFORCE2_S4985 is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_PIIX4 is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SCMI is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SIS96X is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_VIA is not set
+# CONFIG_I2C_VIAPRO is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_I40E_DCB is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154 is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IIO is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HFI1 is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MISC is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_PWM_BEEPER is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INPUT_TABLET is not set
+# CONFIG_INPUT_TOUCHSCREEN is not set
+# CONFIG_INTEGRITY is not set
+# CONFIG_INTEGRITY_ASYMMETRIC_KEYS is not set
+# CONFIG_INTEGRITY_SIGNATURE is not set
+# CONFIG_INTEL_IDMA64 is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SVM is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTEL_TH is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IP_VS_DEBUG is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IRQ_TIME_ACCOUNTING is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29003 is not set
+# CONFIG_ISL29020 is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IWLWIFI_DEBUG is not set
+# CONFIG_IWLWIFI_DEVICE_TRACING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_K3_DMA is not set
+# CONFIG_KARMA_PARTITION is not set
+# CONFIG_KASAN is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
+# CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZMA is not set
+# CONFIG_KERNEL_LZO is not set
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATENCYTOP is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_AMS369FG06 is not set
+# CONFIG_LCD_HX8357 is not set
+# CONFIG_LCD_ILI922X is not set
+# CONFIG_LCD_ILI9320 is not set
+# CONFIG_LCD_L4F00242T03 is not set
+# CONFIG_LCD_LD9040 is not set
+# CONFIG_LCD_LMS283GF05 is not set
+# CONFIG_LCD_LMS501KF03 is not set
+# CONFIG_LCD_LTV350QV is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LCD_S6E63M0 is not set
+# CONFIG_LCD_TDO24M is not set
+# CONFIG_LCD_VGG2432A4 is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_AAT1290 is not set
+# CONFIG_LEDS_AS3645A is not set
+# CONFIG_LEDS_BCM6328 is not set
+# CONFIG_LEDS_BCM6358 is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_CR0014114 is not set
+# CONFIG_LEDS_DAC124S085 is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_IS31FL319X is not set
+# CONFIG_LEDS_IS31FL32XX is not set
+# CONFIG_LEDS_KTD2692 is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3601X is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LM3692X is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_LP8860 is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_SYSCON is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOAD_UEFI_KEYS is not set
+# CONFIG_LOCALVERSION_AUTO is not set
+# CONFIG_LOCK_STAT is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LPC_ICH is not set
+# CONFIG_LPC_SCH is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211_DEBUGFS is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MAC80211_MESSAGE_TRACING is not set
+# CONFIG_MACB is not set
+# CONFIG_MAC_PARTITION is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MAILBOX_TEST is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MDIO_BCM_IPROC is not set
+# CONFIG_MDIO_BUS_MUX_BCM_IPROC is not set
+# CONFIG_MDIO_BUS_MUX_GPIO is not set
+# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEDIA_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_QCOM_RPM is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SM501 is not set
+# CONFIG_MFD_SM501_GPIO is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_VEXPRESS_SYSREG is not set
+# CONFIG_MFD_VIPERBOARD is not set
+# CONFIG_MFD_VX855 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MINIX_SUBPARTITION is not set
+# CONFIG_MISC_RTSX_PCI is not set
+# CONFIG_MISC_RTSX_USB is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_MSM is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MMIOTRACE is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_APPLETOUCH is not set
+# CONFIG_MOUSE_BCM5974 is not set
+# CONFIG_MOUSE_CYAPA is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2 is not set
+# CONFIG_MOUSE_PS2_ELANTECH is not set
+# CONFIG_MOUSE_PS2_SENTELIC is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOUSE_SERIAL is not set
+# CONFIG_MOUSE_VSXXXAA is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MV_XOR_V2 is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_MYRI10GE is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_BROCADE is not set
+# CONFIG_NET_VENDOR_CISCO is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_DEC is not set
+# CONFIG_NET_VENDOR_DLINK is not set
+# CONFIG_NET_VENDOR_EMULEX is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NFC is not set
+# CONFIG_NFP_DEBUG is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FAULT_INJECTION is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_DEBUG_MMU is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NOZOMI is not set
+# CONFIG_NO_HZ_IDLE is not set
+# CONFIG_NTB is not set
+# CONFIG_NTB_AMD is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_INTEL is not set
+# CONFIG_NTB_PERF is not set
+# CONFIG_NTB_PINGPONG is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTB_TOOL is not set
+# CONFIG_NTB_TRANSPORT is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NVM is not set
+# CONFIG_NVMEM_BCM_OCOTP is not set
+# CONFIG_NVRAM is not set
+# CONFIG_NVSW_SN2201 is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OSF_PARTITION is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_PLATFORM is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCIE_QCOM is not set
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_PF_STUB is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PERCPU_TEST is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHY_BCM_NS_USB2 is not set
+# CONFIG_PHY_BCM_NS_USB3 is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_HISI_INNO_USB2 is not set
+# CONFIG_PHY_HISTB_COMBPHY is not set
+# CONFIG_PHY_MAPPHONE_MDM6600 is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PHY_QCOM_APQ8064_SATA is not set
+# CONFIG_PHY_QCOM_IPQ806X_SATA is not set
+# CONFIG_PHY_QCOM_QMP is not set
+# CONFIG_PHY_QCOM_QUSB2 is not set
+# CONFIG_PHY_QCOM_UFS is not set
+# CONFIG_PHY_QCOM_USB_HS is not set
+# CONFIG_PHY_QCOM_USB_HSIC is not set
+# CONFIG_PHY_TUSB1210 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PID_IN_CONTEXTIDR is not set
+# CONFIG_PINCTRL_AMD is not set
+# CONFIG_PINCTRL_APQ8064 is not set
+# CONFIG_PINCTRL_APQ8084 is not set
+# CONFIG_PINCTRL_BROXTON is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8064 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8660 is not set
+# CONFIG_PINCTRL_MSM8916 is not set
+# CONFIG_PINCTRL_MSM8960 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8996 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_MSM8X74 is not set
+# CONFIG_PINCTRL_NS2_MUX is not set
+# CONFIG_PINCTRL_QCOM_SSBI_PMIC is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SINGLE is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PL330_DMA is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PMIC_OPREGION is not set
+# CONFIG_PM_ADVANCED_DEBUG is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_TEST_SUSPEND is not set
+# CONFIG_PM_TRACE_RTC is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_POWERCAP is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_MSM is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_RESET_XGENE is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_NONE is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROTECTED_VIRTUALIZATION_GUEST is not set
+# CONFIG_PROVE_LOCKING is not set
+# CONFIG_PROVE_RCU is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PTP_1588_CLOCK_DTE is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM_FSL_FTM is not set
+# CONFIG_PWM_HIBVT is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_BAM_DMA is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_EBI2 is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_GSBI is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_QFPROM is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QCOM_WDT is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QORIQ_THERMAL is not set
+# CONFIG_QRTR is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_QUEUED_LOCK_STAT is not set
+# CONFIG_QUOTA_DEBUG is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RANDOM32_SELFTEST is not set
+# CONFIG_RANDOM_TRUST_CPU is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TORTURE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RC_CORE is not set
+# CONFIG_RC_LOOPBACK is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RESET_TI_SYSCON is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_DS1302 is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS1689 is not set
+# CONFIG_RTC_DRV_DS17285 is not set
+# CONFIG_RTC_DRV_DS17485 is not set
+# CONFIG_RTC_DRV_DS17885 is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_HYM8563 is not set
+# CONFIG_RTC_DRV_ISL12026 is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_MAX6916 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_PL030 is not set
+# CONFIG_RTC_DRV_R7301 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_RX6110 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_SNVS is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_DRV_XGENE is not set
+# CONFIG_RTC_DRV_ZYNQMP is not set
+# CONFIG_RTC_DS1685_PROC_REGS is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTC_SYSTOHC is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTLWIFI_DEBUG is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_AACRAID is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BNX2X_FCOE is not set
+# CONFIG_SCSI_BNX2_ISCSI is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MPT2SAS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7414 is not set
+# CONFIG_SENSORS_AD7418 is not set
+# CONFIG_SENSORS_ADM1021 is not set
+# CONFIG_SENSORS_ADM1025 is not set
+# CONFIG_SENSORS_ADM1026 is not set
+# CONFIG_SENSORS_ADM1029 is not set
+# CONFIG_SENSORS_ADM1031 is not set
+# CONFIG_SENSORS_ADM1275 is not set
+# CONFIG_SENSORS_ADM9240 is not set
+# CONFIG_SENSORS_ADS1015 is not set
+# CONFIG_SENSORS_ADS7828 is not set
+# CONFIG_SENSORS_ADT7310 is not set
+# CONFIG_SENSORS_ADT7410 is not set
+# CONFIG_SENSORS_ADT7411 is not set
+# CONFIG_SENSORS_ADT7462 is not set
+# CONFIG_SENSORS_ADT7470 is not set
+# CONFIG_SENSORS_ADT7475 is not set
+# CONFIG_SENSORS_AMC6821 is not set
+# CONFIG_SENSORS_APDS990X is not set
+# CONFIG_SENSORS_ASC7621 is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_ATXP1 is not set
+# CONFIG_SENSORS_BH1770 is not set
+# CONFIG_SENSORS_DELL_SMM is not set
+# CONFIG_SENSORS_DME1737 is not set
+# CONFIG_SENSORS_DS1621 is not set
+# CONFIG_SENSORS_DS620 is not set
+# CONFIG_SENSORS_EMC1403 is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_EMC6W201 is not set
+# CONFIG_SENSORS_F71805F is not set
+# CONFIG_SENSORS_F71882FG is not set
+# CONFIG_SENSORS_F75375S is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G760A is not set
+# CONFIG_SENSORS_GL518SM is not set
+# CONFIG_SENSORS_GL520SM is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_I5K_AMB is not set
+# CONFIG_SENSORS_IBMAEM is not set
+# CONFIG_SENSORS_IBMPEX is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA209 is not set
+# CONFIG_SENSORS_INA2XX is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_IT87 is not set
+# CONFIG_SENSORS_LINEAGE is not set
+# CONFIG_SENSORS_LIS3_I2C is not set
+# CONFIG_SENSORS_LM25066 is not set
+# CONFIG_SENSORS_LM63 is not set
+# CONFIG_SENSORS_LM73 is not set
+# CONFIG_SENSORS_LM75 is not set
+# CONFIG_SENSORS_LM77 is not set
+# CONFIG_SENSORS_LM78 is not set
+# CONFIG_SENSORS_LM80 is not set
+# CONFIG_SENSORS_LM83 is not set
+# CONFIG_SENSORS_LM85 is not set
+# CONFIG_SENSORS_LM87 is not set
+# CONFIG_SENSORS_LM90 is not set
+# CONFIG_SENSORS_LM92 is not set
+# CONFIG_SENSORS_LM93 is not set
+# CONFIG_SENSORS_LM95234 is not set
+# CONFIG_SENSORS_LM95241 is not set
+# CONFIG_SENSORS_LM95245 is not set
+# CONFIG_SENSORS_LTC2978 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC4151 is not set
+# CONFIG_SENSORS_LTC4215 is not set
+# CONFIG_SENSORS_LTC4245 is not set
+# CONFIG_SENSORS_LTC4261 is not set
+# CONFIG_SENSORS_MAX16064 is not set
+# CONFIG_SENSORS_MAX16065 is not set
+# CONFIG_SENSORS_MAX1619 is not set
+# CONFIG_SENSORS_MAX1668 is not set
+# CONFIG_SENSORS_MAX197 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX34440 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_MAX6639 is not set
+# CONFIG_SENSORS_MAX6642 is not set
+# CONFIG_SENSORS_MAX6650 is not set
+# CONFIG_SENSORS_MAX6697 is not set
+# CONFIG_SENSORS_MAX8688 is not set
+# CONFIG_SENSORS_MCP3021 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT6775 is not set
+# CONFIG_SENSORS_PC87360 is not set
+# CONFIG_SENSORS_PC87427 is not set
+# CONFIG_SENSORS_PCF8591 is not set
+# CONFIG_SENSORS_PMBUS is not set
+# CONFIG_SENSORS_SCH5627 is not set
+# CONFIG_SENSORS_SCH5636 is not set
+# CONFIG_SENSORS_SHT15 is not set
+# CONFIG_SENSORS_SHT21 is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SIS5595 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_SMSC47B397 is not set
+# CONFIG_SENSORS_SMSC47M1 is not set
+# CONFIG_SENSORS_SMSC47M192 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_THMC50 is not set
+# CONFIG_SENSORS_TMP102 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TMP401 is not set
+# CONFIG_SENSORS_TMP421 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2550 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_UCD9000 is not set
+# CONFIG_SENSORS_UCD9200 is not set
+# CONFIG_SENSORS_VIA686A is not set
+# CONFIG_SENSORS_VT1211 is not set
+# CONFIG_SENSORS_VT8231 is not set
+# CONFIG_SENSORS_W83627EHF is not set
+# CONFIG_SENSORS_W83627HF is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83781D is not set
+# CONFIG_SENSORS_W83791D is not set
+# CONFIG_SENSORS_W83792D is not set
+# CONFIG_SENSORS_W83793 is not set
+# CONFIG_SENSORS_W83795 is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_W83L785TS is not set
+# CONFIG_SENSORS_W83L786NG is not set
+# CONFIG_SENSORS_ZL6100 is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_AMBA_PL010 is not set
+# CONFIG_SERIAL_ARC is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_JSM is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_MSM is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_UARTLITE is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SFC is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SFC_SIENA is not set
+# CONFIG_SGI_IOC4 is not set
+# CONFIG_SGI_PARTITION is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIMPLE_PM_BUS is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMC is not set
+# CONFIG_SMC911X is not set
+# CONFIG_SMSC911X is not set
+# CONFIG_SMSC9420 is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PCM_XRUN_DEBUG is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8326 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_AMD_REMBRANDT is not set
+# CONFIG_SND_SOC_SOF_AMD_TOPLEVEL is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_I2C is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_VERBOSE_PRINTK is not set
+# CONFIG_SND_XEN_FRONTEND is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOCIONEXT_SYNQUACER_PREITS is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SOLARIS_X86_PARTITION is not set
+# CONFIG_SOUNDWIRE is not set
+# CONFIG_SOUNDWIRE_AMD is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI_ALTERA is not set
+# CONFIG_SPI_AXI_SPI_ENGINE is not set
+# CONFIG_SPI_BCM_QSPI is not set
+# CONFIG_SPI_BITBANG is not set
+# CONFIG_SPI_DEBUG is not set
+# CONFIG_SPI_FSL_SPI is not set
+# CONFIG_SPI_GPIO is not set
+# CONFIG_SPI_LOOPBACK_TEST is not set
+# CONFIG_SPI_MEM is not set
+# CONFIG_SPI_OC_TINY is not set
+# CONFIG_SPI_PXA2XX is not set
+# CONFIG_SPI_ROCKCHIP is not set
+# CONFIG_SPI_SC18IS602 is not set
+# CONFIG_SPI_SLAVE is not set
+# CONFIG_SPI_SPIDEV is not set
+# CONFIG_SPI_THUNDERX is not set
+# CONFIG_SPI_TLE62X0 is not set
+# CONFIG_SPI_XCOMM is not set
+# CONFIG_SPI_XILINX is not set
+# CONFIG_SPI_ZYNQMP_GQSPI is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SUN_PARTITION is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
+# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_SYS_HYPERVISOR is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TCG_INFINEON is not set
+# CONFIG_TCG_TIS_I2C_ATMEL is not set
+# CONFIG_TCG_TIS_I2C_INFINEON is not set
+# CONFIG_TCG_TIS_I2C_NUVOTON is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_STRING_HELPERS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_BANG_BANG is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_OF is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THERMAL_WRITABLE_TRIPS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_TIFM_7XX1 is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TUN_VNET_CROSS_LE is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UBSAN is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNIXWARE_DISKLABEL is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_SPEEDTOUCH is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_DBGCAP is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFIO_MDEV is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VFIO_PLATFORM is not set
+# CONFIG_VGA_CONSOLE is not set
+# CONFIG_VGA_SWITCHEROO is not set
+# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VMXNET3 is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WDAT_WDT is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WIRELESS is not set
+# CONFIG_WLAN is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WQ_WATCHDOG is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_XEN is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XFS_WARN is not set
+# CONFIG_XGENE_DMA is not set
+# CONFIG_XILINX_DMA is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILINX_ZYNQMP_DMA is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_A64FX_DIAG=y
+CONFIG_ACPI=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_MEMORY_FAILURE=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_APEI_SEA=y
+CONFIG_ACPI_BUTTON=y
+CONFIG_ACPI_CONTAINER=y
+CONFIG_ACPI_CPPC_CPUFREQ=y
+CONFIG_ACPI_FAN=y
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_HOTPLUG_MEMORY=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_NUMA=y
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_THERMAL=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AHCI_XGENE=m
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALIM7101_WDT=m
+CONFIG_ALX=m
+CONFIG_AMD_PHY=m
+CONFIG_AMD_XGBE=m
+CONFIG_AMPERE_ERRATUM_AC03_CPU_38=y
+CONFIG_ANON_INODES=y
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_BCM_IPROC=y
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y
+CONFIG_ARCH_HISI=y
+CONFIG_ARCH_QCOM=y
+CONFIG_ARCH_RANDOM=y
+CONFIG_ARCH_SEATTLE=y
+CONFIG_ARCH_TEGRA=y
+CONFIG_ARCH_THUNDER2=y
+CONFIG_ARCH_THUNDER=y
+CONFIG_ARCH_VEXPRESS=y
+CONFIG_ARCH_XGENE=y
+CONFIG_ARM64=y
+CONFIG_ARM64_64K_PAGES=y
+CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y
+CONFIG_ARM64_CNP=y
+CONFIG_ARM64_CRYPTO=y
+CONFIG_ARM64_E0PD=y
+CONFIG_ARM64_ERRATUM_1024718=y
+CONFIG_ARM64_ERRATUM_1542419=y
+CONFIG_ARM64_ERRATUM_819472=y
+CONFIG_ARM64_ERRATUM_824069=y
+CONFIG_ARM64_ERRATUM_826319=y
+CONFIG_ARM64_ERRATUM_827319=y
+CONFIG_ARM64_ERRATUM_832075=y
+CONFIG_ARM64_ERRATUM_834220=y
+CONFIG_ARM64_ERRATUM_843419=y
+CONFIG_ARM64_ERRATUM_858921=y
+CONFIG_ARM64_HW_AFDBM=y
+CONFIG_ARM64_LSE_ATOMICS=y
+CONFIG_ARM64_PAN=y
+CONFIG_ARM64_PA_BITS_52=y
+CONFIG_ARM64_PMEM=y
+CONFIG_ARM64_PSEUDO_NMI=y
+CONFIG_ARM64_RAS_EXTN=y
+CONFIG_ARM64_SVE=y
+CONFIG_ARM64_UAO=y
+CONFIG_ARM64_USER_VA_BITS_52=y
+CONFIG_ARM64_VA_BITS_48=y
+CONFIG_ARM64_VHE=y
+CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y
+CONFIG_ARM_CCN=y
+CONFIG_ARM_CMN=m
+CONFIG_ARM_CPUIDLE=y
+CONFIG_ARM_DMC620_PMU=m
+CONFIG_ARM_MHU=m
+CONFIG_ARM_PMU=y
+CONFIG_ARM_SBSA_WATCHDOG=m
+CONFIG_ARM_SCPI_CPUFREQ=m
+CONFIG_ARM_SCPI_POWER_DOMAIN=m
+CONFIG_ARM_SCPI_PROTOCOL=m
+CONFIG_ARM_SDE_INTERFACE=y
+CONFIG_ARM_SMMU=y
+CONFIG_ARM_SMMU_V3=y
+CONFIG_ARM_SP805_WATCHDOG=m
+CONFIG_ARM_SPE_PMU=m
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_AT803X_PHY=m
+CONFIG_ATA=y
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=y
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATM=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
+CONFIG_AUDIT=y
+CONFIG_AUDITSYSCALL=y
+CONFIG_AUDIT_TREE=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
+CONFIG_BACKLIGHT_GPIO=m
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BACKLIGHT_PWM=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCM87XX_PHY=m
+CONFIG_BCMA=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BCMA_POSSIBLE=y
+CONFIG_BCM_SR_THERMAL=m
+CONFIG_BE2ISCSI=m
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_MISC=m
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_BLK_DEV_LOOP=m
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NULL_BLK=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_SD=y
+CONFIG_BLK_DEV_SR=m
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_LSM=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BQL=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRIDGE=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BROADCOM_PHY=m
+CONFIG_BSD_DISKLABEL=y
+CONFIG_BSD_PROCESS_ACCT=y
+CONFIG_BSD_PROCESS_ACCT_V3=y
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG=y
+CONFIG_BUG_ON_DATA_CORRUPTION=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_CPT=m
+CONFIG_CAVIUM_ERRATUM_22375=y
+CONFIG_CAVIUM_ERRATUM_23144=y
+CONFIG_CAVIUM_ERRATUM_23154=y
+CONFIG_CAVIUM_ERRATUM_27456=y
+CONFIG_CAVIUM_ERRATUM_30115=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CAVIUM_TX2_ERRATUM_219=y
+CONFIG_CB710_CORE=m
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
+CONFIG_CDROM_PKTCDVD=m
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
+CONFIG_CGROUPS=y
+CONFIG_CGROUP_BPF=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHARGER_SMB347=m
+CONFIG_CHECKPOINT_RESTORE=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CHROME_PLATFORMS=y
+CONFIG_CHR_DEV_SCH=m
+CONFIG_CHR_DEV_SG=m
+CONFIG_CHR_DEV_ST=m
+CONFIG_CICADA_PHY=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLKDEV_LOOKUP=y
+CONFIG_CLK_BCM_NS2=y
+CONFIG_CLK_BCM_SR=y
+CONFIG_CLK_SP810=y
+CONFIG_CLK_VEXPRESS_OSC=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CMDLINE="console=ttyAMA0"
+CONFIG_COMMON_CLK_HI3516CV300=y
+CONFIG_COMMON_CLK_HI3519=y
+CONFIG_COMMON_CLK_HI3660=y
+CONFIG_COMMON_CLK_HI3798CV200=y
+CONFIG_COMMON_CLK_SCPI=m
+CONFIG_COMMON_CLK_XGENE=y
+CONFIG_COMMON_RESET_HI6220=m
+CONFIG_COMPACTION=y
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONNECTOR=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONSOLE_TRANSLATIONS=y
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=m
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_CPUMASK_OFFSTACK=y
+CONFIG_CPUSETS=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CRAMFS=m
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=m
+CONFIG_CRC8=m
+CONFIG_CRC_CCITT=y
+CONFIG_CRC_ITU_T=m
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_AES_ARM64_BS=m
+CONFIG_CRYPTO_AES_ARM64_CE=y
+CONFIG_CRYPTO_AES_ARM64_CE_BLK=y
+CONFIG_CRYPTO_AES_ARM64_CE_CCM=y
+CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=m
+CONFIG_CRYPTO_CHACHA20POLY1305=m
+CONFIG_CRYPTO_CHACHA20_NEON=m
+CONFIG_CRYPTO_CMAC=m
+CONFIG_CRYPTO_CRC32=m
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRC32_ARM64_CE=m
+CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=m
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES=m
+CONFIG_CRYPTO_DEV_BCM_SPU=m
+CONFIG_CRYPTO_DEV_CAVIUM_ZIP=m
+CONFIG_CRYPTO_DEV_CCP=y
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CCP_DD=m
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECHAINIV=m
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_GHASH_ARM64_CE=m
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_POLY1305=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA1_ARM64_CE=m
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA256_ARM64=m
+CONFIG_CRYPTO_SHA2_ARM64_CE=m
+CONFIG_CRYPTO_SHA3=m
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_XTS=m
+CONFIG_CUSE=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_CYCLADES=m
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DAVICOM_PHY=m
+CONFIG_DCB=y
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_LIST=y
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DEBUG_SHIRQ=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+CONFIG_DETECT_HUNG_TASK=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DE_AOC=y
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMADEVICES=y
+CONFIG_DMATEST=m
+CONFIG_DMA_ENGINE=y
+CONFIG_DMI=y
+CONFIG_DMIID=y
+CONFIG_DMI_SYSFS=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNET=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83640_PHY=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DRM=m
+CONFIG_DRM_AMDGPU=m
+CONFIG_DRM_AMDGPU_CIK=y
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_AST=m
+CONFIG_DRM_BOCHS=m
+CONFIG_DRM_CIRRUS_QEMU=m
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_HISI_HIBMC=m
+CONFIG_DRM_I2C_CH7006=m
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_LOAD_EDID_FIRMWARE=y
+CONFIG_DRM_MGAG200=m
+CONFIG_DRM_NOUVEAU=m
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_QXL=m
+CONFIG_DRM_RADEON=m
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DUMMY=m
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DWMAC_DWC_QOS_ETH=m
+CONFIG_DW_DMAC=m
+CONFIG_DW_DMAC_PCI=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC=y
+CONFIG_EDAC_BLUEFIELD=m
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EDAC_THUNDERX=m
+CONFIG_EDAC_XGENE=m
+CONFIG_EEPROM_93CX6=m
+CONFIG_EEPROM_AT24=m
+CONFIG_EEPROM_EE1004=m
+CONFIG_EEPROM_LEGACY=m
+CONFIG_EEPROM_MAX6875=m
+CONFIG_EFI=y
+CONFIG_EFIVAR_FS=y
+CONFIG_EFI_PARTITION=y
+CONFIG_EFI_STUB=y
+CONFIG_EFI_VARS=y
+CONFIG_EFI_VARS_PSTORE=y
+CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENA_ETHERNET=m
+CONFIG_ENCLOSURE_SERVICES=m
+CONFIG_ENCRYPTED_KEYS=m
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPOLL=y
+CONFIG_ETHOC=m
+CONFIG_EVENT_TRACING=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_FS=m
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTCON=y
+CONFIG_EXTCON_GPIO=m
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_FAILOVER=m
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FB=y
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_SIMPLE=y
+CONFIG_FB_SSD1307=m
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FMC=m
+CONFIG_FMC_CHARDEV=m
+CONFIG_FMC_FAKEDEV=m
+CONFIG_FMC_TRIVIAL=m
+CONFIG_FMC_WRITE_EEPROM=m
+CONFIG_FONT_SUPPORT=y
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_POINTER=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FS_DAX=y
+CONFIG_FTRACE=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ERRATUM_010001=y
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSE_FS=m
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENERIC_CALIBRATE_DELAY=y
+CONFIG_GENERIC_CSUM=y
+CONFIG_GENERIC_HWEIGHT=y
+CONFIG_GENERIC_PCI_IOMAP=y
+CONFIG_GENERIC_PHY=y
+CONFIG_GENEVE=m
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIOLIB_FASTPATH_LIMIT=512
+CONFIG_GPIO_AMDPT=m
+CONFIG_GPIO_DWAPB=m
+CONFIG_GPIO_GENERIC_PLATFORM=m
+CONFIG_GPIO_MLXBF2=m
+CONFIG_GPIO_PL061=y
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_WATCHDOG=m
+CONFIG_GPIO_XGENE=y
+CONFIG_GPIO_XGENE_SB=m
+CONFIG_GPIO_XLP=m
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HIBERNATION=y
+CONFIG_HID=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_BETOP_FF=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CORSAIR=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_ELO=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GEMBIRD=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GFRM=m
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GT683R=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LENOVO=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PENMOUNT=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PLANTRONICS=m
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SENSOR_HUB=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_XINMO=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HISILICON_ERRATUM_161600802=y
+CONFIG_HISILICON_IRQ_MBIGEN=y
+CONFIG_HISILICON_LPC=y
+CONFIG_HISI_PMU=y
+CONFIG_HISI_THERMAL=m
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HNS3=m
+CONFIG_HNS3_DCB=y
+CONFIG_HNS3_ENET=m
+CONFIG_HNS3_HCLGE=m
+CONFIG_HNS3_HCLGEVF=m
+CONFIG_HNS=m
+CONFIG_HNS_DSAF=m
+CONFIG_HNS_ENET=m
+CONFIG_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_PCIE=y
+CONFIG_HP_ILO=m
+CONFIG_HP_WATCHDOG=m
+CONFIG_HUGETLBFS=y
+CONFIG_HVC_DRIVER=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWMON=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_CAVIUM=m
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_TIMERIOMEM=m
+CONFIG_HW_RANDOM_TPM=y
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HW_RANDOM_XGENE=m
+CONFIG_HYPERV=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_100=y
+CONFIG_I2C=y
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_ALGOPCA=m
+CONFIG_I2C_ALGOPCF=m
+CONFIG_I2C_ARB_GPIO_CHALLENGE=m
+CONFIG_I2C_CHARDEV=m
+CONFIG_I2C_COMPAT=y
+CONFIG_I2C_DESIGNWARE_PLATFORM=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_GPIO=m
+CONFIG_I2C_HID=m
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_MLXBF=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MUX=m
+CONFIG_I2C_MUX_GPIO=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_MUX_PCA9541=m
+CONFIG_I2C_MUX_PCA954x=m
+CONFIG_I2C_MUX_PINCTRL=m
+CONFIG_I2C_NFORCE2=m
+CONFIG_I2C_PARPORT=m
+CONFIG_I2C_PARPORT_LIGHT=m
+CONFIG_I2C_PCA_PLATFORM=m
+CONFIG_I2C_QUP=y
+CONFIG_I2C_SIMTEC=m
+CONFIG_I2C_SLAVE=y
+CONFIG_I2C_SLAVE_EEPROM=m
+CONFIG_I2C_SMBUS=m
+CONFIG_I2C_STUB=m
+CONFIG_I2C_THUNDERX=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VERSATILE=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I2C_XGENE_SLIMPRO=m
+CONFIG_I2C_XLP9XX=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I6300ESB_WDT=m
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_ICE=m
+CONFIG_ICPLUS_PHY=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IFCVF=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IKHEADERS=m
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET=y
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_BNXT_RE=m
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_EFA=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_ISER=m
+CONFIG_INFINIBAND_ISERT=m
+CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_SRP=m
+CONFIG_INFINIBAND_SRPT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USER_MAD=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_EVDEV=y
+CONFIG_INPUT_FF_MEMLESS=m
+CONFIG_INPUT_GP2A=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_KEYBOARD=y
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MOUSE=y
+CONFIG_INPUT_MOUSEDEV=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_PCSPKR=m
+CONFIG_INPUT_POLLDEV=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_SPARSEKMAP=m
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_PLATFORM_KEYRING=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_DEVICE_INTERFACE=m
+CONFIG_IPMI_HANDLER=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_ISCSI_TARGET=m
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISO9660_FS=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x0
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYS=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KSM=y
+CONFIG_KUNIT=m
+CONFIG_KUNIT_ALL_TESTS=m
+CONFIG_KVM=y
+CONFIG_KVM_AMD_SEV=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LCD_CLASS_DEVICE=m
+CONFIG_LCD_PLATFORM=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLASS_FLASH=m
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBCRC32C=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOCALVERSION=""
+CONFIG_LOCKD=m
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOCK_TORTURE_TEST=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=20
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=m
+CONFIG_LSI_ET1011C_PHY=m
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_LXT_PHY=m
+CONFIG_MAC80211=m
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MAILBOX=y
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MARVELL_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MD=y
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_BITBANG=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_GPIO=m
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MDIO_XGENE=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MEGARAID_SAS=m
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
+CONFIG_MEMCG=y
+CONFIG_MEMCG_SWAP=y
+CONFIG_MEMCG_SWAP_ENABLED=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK=m
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_SYSCON=y
+CONFIG_MHI_BUS=m
+CONFIG_MHI_BUS_PCI_GENERIC=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICREL_PHY=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MIGRATION=y
+CONFIG_MII=m
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCMULTI=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_CORE=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXBF_BOOTCTL=m
+CONFIG_MLXBF_GIGE=m
+CONFIG_MLXBF_PMC=m
+CONFIG_MLXBF_TMFIFO=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_I2C=m
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC=m
+CONFIG_MMC_ARMMMCI=m
+CONFIG_MMC_BLOCK=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_DW_PLTFM=m
+CONFIG_MMC_MTK=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_RICOH_MMC=y
+CONFIG_MMC_SDHCI=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_SDHCI_IPROC=m
+CONFIG_MMC_SDHCI_PCI=m
+CONFIG_MMC_SDHCI_PLTFM=m
+CONFIG_MMC_TIFM_SD=m
+CONFIG_MMC_TOSHIBA_PCI=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VIA_SDMMC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMU=y
+CONFIG_MODULES=y
+CONFIG_MODULE_FORCE_LOAD=y
+CONFIG_MODULE_SIG=y
+CONFIG_MODULE_SIG_ALL=y
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
+CONFIG_MODULE_SIG_SHA256=y
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MOUSE_ELAN_I2C=m
+CONFIG_MOUSE_ELAN_I2C_I2C=y
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MPLS=y
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPTCP=y
+CONFIG_MPTCP_IPV6=y
+CONFIG_MQ_IOSCHED_DEADLINE=y
+CONFIG_MQ_IOSCHED_KYBER=y
+CONFIG_MSDOS_FS=m
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MSPRO_BLOCK=m
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD=m
+CONFIG_MTD_BLOCK=m
+CONFIG_MTD_CFI=m
+CONFIG_MTD_CFI_AMDSTD=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_CFI_INTELEXT=m
+CONFIG_MTD_CFI_STAA=m
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_PHYSMAP=m
+CONFIG_MTD_PHYSMAP_OF=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_NATIONAL_PHY=m
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
+CONFIG_NET=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVICES=y
+CONFIG_NETDEVSIM=m
+CONFIG_NETFILTER=y
+CONFIG_NETFILTER_ADVANCED=y
+CONFIG_NETFILTER_INGRESS=y
+CONFIG_NETFILTER_NETLINK=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
+CONFIG_NETFILTER_NETLINK_LOG=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_XTABLES=y
+CONFIG_NETFILTER_XT_CONNMARK=m
+CONFIG_NETFILTER_XT_MARK=m
+CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
+CONFIG_NETFILTER_XT_MATCH_BPF=m
+CONFIG_NETFILTER_XT_MATCH_CGROUP=m
+CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
+CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
+CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
+CONFIG_NETFILTER_XT_MATCH_CPU=m
+CONFIG_NETFILTER_XT_MATCH_DCCP=m
+CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
+CONFIG_NETFILTER_XT_MATCH_DSCP=m
+CONFIG_NETFILTER_XT_MATCH_ECN=m
+CONFIG_NETFILTER_XT_MATCH_ESP=m
+CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_HELPER=m
+CONFIG_NETFILTER_XT_MATCH_HL=m
+CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
+CONFIG_NETFILTER_XT_MATCH_IPVS=m
+CONFIG_NETFILTER_XT_MATCH_LENGTH=m
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+CONFIG_NETFILTER_XT_MATCH_MARK=m
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
+CONFIG_NETFILTER_XT_MATCH_OSF=m
+CONFIG_NETFILTER_XT_MATCH_OWNER=m
+CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
+CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
+CONFIG_NETFILTER_XT_MATCH_QUOTA=m
+CONFIG_NETFILTER_XT_MATCH_RATEEST=m
+CONFIG_NETFILTER_XT_MATCH_REALM=m
+CONFIG_NETFILTER_XT_MATCH_RECENT=m
+CONFIG_NETFILTER_XT_MATCH_SCTP=m
+CONFIG_NETFILTER_XT_MATCH_SOCKET=m
+CONFIG_NETFILTER_XT_MATCH_STATE=m
+CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
+CONFIG_NETFILTER_XT_MATCH_STRING=m
+CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
+CONFIG_NETFILTER_XT_MATCH_U32=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=m
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_FC=y
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_NSH=y
+CONFIG_NET_PACKET_ENGINE=y
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_NET_RX_BUSY_POLL=y
+CONFIG_NET_SCHED=y
+CONFIG_NET_SCH_ATM=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
+CONFIG_NET_SCH_RED=m
+CONFIG_NET_SCH_SFB=m
+CONFIG_NET_SCH_SFQ=m
+CONFIG_NET_SCH_TBF=m
+CONFIG_NET_SCH_TEQL=m
+CONFIG_NET_SWITCHDEV=y
+CONFIG_NET_TC_SKB_EXT=y
+CONFIG_NET_TEAM=m
+CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
+CONFIG_NET_TEAM_MODE_LOADBALANCE=m
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
+CONFIG_NET_VENDOR_AMAZON=y
+CONFIG_NET_VENDOR_AMD=y
+CONFIG_NET_VENDOR_AQUANTIA=y
+CONFIG_NET_VENDOR_ATHEROS=y
+CONFIG_NET_VENDOR_CAVIUM=y
+CONFIG_NET_VENDOR_CHELSIO=y
+CONFIG_NET_VENDOR_GOOGLE=y
+CONFIG_NET_VENDOR_HISILICON=y
+CONFIG_NET_VENDOR_HUAWEI=y
+CONFIG_NET_VENDOR_INTEL=y
+CONFIG_NET_VENDOR_MELLANOX=y
+CONFIG_NET_VENDOR_MICROSOFT=y
+CONFIG_NET_VENDOR_MYRI=y
+CONFIG_NET_VENDOR_NETRONOME=y
+CONFIG_NET_VENDOR_OKI=y
+CONFIG_NET_VENDOR_PENSANDO=y
+CONFIG_NET_VENDOR_QLOGIC=y
+CONFIG_NET_VENDOR_QUALCOMM=y
+CONFIG_NET_VENDOR_REALTEK=y
+CONFIG_NET_VENDOR_ROCKER=y
+CONFIG_NET_VENDOR_SMSC=y
+CONFIG_NET_VENDOR_SOLARFLARE=y
+CONFIG_NET_VENDOR_STMICRO=y
+CONFIG_NET_VRF=m
+CONFIG_NET_XGENE=m
+CONFIG_NET_XGENE_V2=m
+CONFIG_NEW_LEDS=y
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
+CONFIG_NFSD=m
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
+CONFIG_NFSD_V2_ACL=y
+CONFIG_NFSD_V3=y
+CONFIG_NFSD_V3_ACL=y
+CONFIG_NFSD_V4=y
+CONFIG_NFSD_V4_SECURITY_LABEL=y
+CONFIG_NFS_COMMON=y
+CONFIG_NFS_DEBUG=y
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_USE_KERNEL_DNS=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
+CONFIG_NLS=y
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
+CONFIG_NLS_CODEPAGE_437=y
+CONFIG_NLS_CODEPAGE_737=m
+CONFIG_NLS_CODEPAGE_775=m
+CONFIG_NLS_CODEPAGE_850=m
+CONFIG_NLS_CODEPAGE_852=m
+CONFIG_NLS_CODEPAGE_855=m
+CONFIG_NLS_CODEPAGE_857=m
+CONFIG_NLS_CODEPAGE_860=m
+CONFIG_NLS_CODEPAGE_861=m
+CONFIG_NLS_CODEPAGE_862=m
+CONFIG_NLS_CODEPAGE_863=m
+CONFIG_NLS_CODEPAGE_864=m
+CONFIG_NLS_CODEPAGE_865=m
+CONFIG_NLS_CODEPAGE_866=m
+CONFIG_NLS_CODEPAGE_869=m
+CONFIG_NLS_CODEPAGE_874=m
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
+CONFIG_NLS_ISO8859_1=m
+CONFIG_NLS_ISO8859_2=m
+CONFIG_NLS_ISO8859_3=m
+CONFIG_NLS_ISO8859_4=m
+CONFIG_NLS_ISO8859_5=m
+CONFIG_NLS_ISO8859_6=m
+CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
+CONFIG_NLS_ISO8859_9=m
+CONFIG_NLS_KOI8_R=m
+CONFIG_NLS_KOI8_U=m
+CONFIG_NLS_MAC_CELTIC=m
+CONFIG_NLS_MAC_CENTEURO=m
+CONFIG_NLS_MAC_CROATIAN=m
+CONFIG_NLS_MAC_CYRILLIC=m
+CONFIG_NLS_MAC_GAELIC=m
+CONFIG_NLS_MAC_GREEK=m
+CONFIG_NLS_MAC_ICELAND=m
+CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
+CONFIG_NLS_MAC_ROMANIAN=m
+CONFIG_NLS_MAC_TURKISH=m
+CONFIG_NLS_UTF8=m
+CONFIG_NODES_SHIFT=3
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_FULL=y
+CONFIG_NR_CPUS=4096
+CONFIG_NUMA=y
+CONFIG_NUMA_BALANCING=y
+CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_FC=m
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_N_GSM=m
+CONFIG_N_HDLC=m
+CONFIG_OCXL=m
+CONFIG_OF=y
+CONFIG_OF_MDIO=y
+CONFIG_OF_OVERLAY=y
+CONFIG_OF_PMEM=m
+CONFIG_OPENVSWITCH=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPENVSWITCH_GRE=m
+CONFIG_OPENVSWITCH_VXLAN=m
+CONFIG_OPROFILE=m
+CONFIG_OPTIMIZE_INLINING=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_OVERLAY_FS=m
+CONFIG_PACKET=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PAGE_EXTENSION=y
+CONFIG_PAGE_OWNER=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANIC_ON_OOPS=y
+CONFIG_PANIC_TIMEOUT=0
+CONFIG_PARAVIRT=y
+CONFIG_PARAVIRT_TIME_ACCOUNTING=y
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PCC=y
+CONFIG_PCCARD=y
+CONFIG_PCI=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIEPORTBUS=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCIE_IPROC=y
+CONFIG_PCIE_IPROC_MSI=y
+CONFIG_PCIE_IPROC_PLATFORM=y
+CONFIG_PCIPCWATCHDOG=m
+CONFIG_PCI_HISI=y
+CONFIG_PCI_HOST_COMMON=y
+CONFIG_PCI_HOST_GENERIC=y
+CONFIG_PCI_HOST_THUNDER_ECAM=y
+CONFIG_PCI_HOST_THUNDER_PEM=y
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_PASID=y
+CONFIG_PCI_PRI=y
+CONFIG_PCI_STUB=y
+CONFIG_PCI_XGENE=y
+CONFIG_PCI_XGENE_MSI=y
+CONFIG_PERF_EVENTS=y
+CONFIG_PERSISTENT_KEYRINGS=y
+CONFIG_PHYLIB=y
+CONFIG_PHYLINK=m
+CONFIG_PHY_BRCM_SATA=y
+CONFIG_PHY_HI6220_USB=m
+CONFIG_PHY_NS2_USB_DRD=y
+CONFIG_PHY_XGENE=y
+CONFIG_PID_NS=y
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_IPROC_GPIO=y
+CONFIG_PINCTRL_QDF2XXX=y
+CONFIG_PM=y
+CONFIG_PMBUS=m
+CONFIG_PM_DEBUG=y
+CONFIG_PM_STD_PARTITION=""
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_PNP_DEBUG_MESSAGES=y
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_RESET_GPIO=y
+CONFIG_POWER_RESET_GPIO_RESTART=y
+CONFIG_POWER_RESET_HISI=y
+CONFIG_POWER_RESET_RESTART=y
+CONFIG_POWER_RESET_SYSCON=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPDEV=m
+CONFIG_PPP=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREEMPT_VOLUNTARY=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROFILING=y
+CONFIG_PSAMPLE=m
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PSTORE_RAM=m
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_PWM=y
+CONFIG_PWM_BCM_IPROC=y
+CONFIG_QCOM_EMAC=m
+CONFIG_QCOM_FALKOR_ERRATUM_1003=y
+CONFIG_QCOM_FALKOR_ERRATUM_1009=y
+CONFIG_QCOM_FALKOR_ERRATUM_E1041=y
+CONFIG_QCOM_HIDMA=m
+CONFIG_QCOM_HIDMA_MGMT=m
+CONFIG_QCOM_L2_PMU=y
+CONFIG_QCOM_L3_PMU=y
+CONFIG_QCOM_QDF2400_ERRATUM_0065=y
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QFMT_V2=y
+CONFIG_QLA3XXX=m
+CONFIG_QSEMI_PHY=m
+CONFIG_QUOTA=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RAID_ATTRS=m
+CONFIG_RANDOMIZE_BASE=y
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOMIZE_MODULE_REGION_FULL=y
+CONFIG_RAS=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_REALTEK_PHY=m
+CONFIG_REFCOUNT_FULL=y
+CONFIG_RELAY=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RESET_CONTROLLER=y
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL=m
+CONFIG_RFKILL_GPIO=m
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_CORE=m
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_ABB5ZES3=m
+CONFIG_RTC_DRV_ABX80X=m
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1305=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1343=m
+CONFIG_RTC_DRV_DS1347=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1374_WDT=y
+CONFIG_RTC_DRV_DS1390=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1685=y
+CONFIG_RTC_DRV_DS1685_FAMILY=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_DS3232_HWMON=y
+CONFIG_RTC_DRV_EFI=y
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M41T93=m
+CONFIG_RTC_DRV_M41T94=m
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MAX6902=m
+CONFIG_RTC_DRV_MCP795=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_PCF2123=m
+CONFIG_RTC_DRV_PCF2127=m
+CONFIG_RTC_DRV_PCF85063=m
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_PL031=y
+CONFIG_RTC_DRV_R9701=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C348=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX4581=m
+CONFIG_RTC_DRV_RX8010=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_DS1685_SYSFS_REGS=y
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTC_NVMEM=y
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_SAMPLES=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SATA_AHCI=y
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_AHCI_SEATTLE=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SCF_TORTURE_TEST=m
+CONFIG_SCHEDSTATS=y
+CONFIG_SCHED_AUTOGROUP=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCSI=y
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_CXGB4_ISCSI=m
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=m
+CONFIG_SCSI_FC_ATTRS=m
+CONFIG_SCSI_HISI_SAS=m
+CONFIG_SCSI_HISI_SAS_PCI=m
+CONFIG_SCSI_HPSA=m
+CONFIG_SCSI_IPR=m
+CONFIG_SCSI_IPR_DUMP=y
+CONFIG_SCSI_IPR_TRACE=y
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_LPFC=m
+CONFIG_SCSI_MPI3MR=m
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS=m
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_QLA_FC=m
+CONFIG_SCSI_QLA_ISCSI=m
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SMARTPQI=m
+CONFIG_SCSI_SPI_ATTRS=m
+CONFIG_SCSI_SRP_ATTRS=m
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SDIO_UART=m
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
+CONFIG_SECURITY=y
+CONFIG_SECURITYFS=y
+CONFIG_SECURITY_INFINIBAND=y
+CONFIG_SECURITY_NETWORK=y
+CONFIG_SECURITY_NETWORK_XFRM=y
+CONFIG_SECURITY_PATH=y
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
+CONFIG_SECURITY_YAMA=y
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_ACPI_POWER=y
+CONFIG_SENSORS_AD7314=m
+CONFIG_SENSORS_ADC128D818=m
+CONFIG_SENSORS_ADCXX=m
+CONFIG_SENSORS_ADS7871=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ARM_SCPI=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G762=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LM70=m
+CONFIG_SENSORS_LTC2945=m
+CONFIG_SENSORS_LTC3815=m
+CONFIG_SENSORS_LTC4222=m
+CONFIG_SENSORS_LTC4260=m
+CONFIG_SENSORS_MAX1111=m
+CONFIG_SENSORS_MAX20751=m
+CONFIG_SENSORS_MAX31790=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT7802=m
+CONFIG_SENSORS_NCT7904=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_POWR1220=m
+CONFIG_SENSORS_PWM_FAN=m
+CONFIG_SENSORS_SHTC1=m
+CONFIG_SENSORS_TC74=m
+CONFIG_SENSORS_TMP103=m
+CONFIG_SENSORS_TPS40422=m
+CONFIG_SENSORS_VEXPRESS=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_XGENE=m
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_DMA=y
+CONFIG_SERIAL_8250_DW=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=32
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RT288X=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_8250_TEGRA=y
+CONFIG_SERIAL_AMBA_PL011=y
+CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=y
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST=y
+CONFIG_SERIAL_NONSTANDARD=y
+CONFIG_SERIAL_OF_PLATFORM=y
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO=y
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_AMBAKMI=y
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
+CONFIG_SIGNED_PE_FILE_VERIFICATION=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP=m
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMC91X=m
+CONFIG_SMP=y
+CONFIG_SMSC_PHY=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_INTEL=m
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=512
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SONY_FF=y
+CONFIG_SOUND=m
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SPI=y
+CONFIG_SPI_CADENCE=m
+CONFIG_SPI_DESIGNWARE=m
+CONFIG_SPI_DW_MMIO=m
+CONFIG_SPI_MASTER=y
+CONFIG_SPI_PL022=m
+CONFIG_SPI_QUP=y
+CONFIG_SPI_XLP=m
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZ4=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACK_TRACER=y
+CONFIG_STANDALONE=y
+CONFIG_STE10XP=m
+CONFIG_STMMAC_ETH=m
+CONFIG_STMMAC_PLATFORM=m
+CONFIG_STRICT_DEVMEM=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUSPEND=y
+CONFIG_SWAP=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNCLINKMP=m
+CONFIG_SYNCLINK_GT=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_SYSVIPC=y
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=m
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_ATMEL=m
+CONFIG_TCG_CRB=y
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TIS_CORE=y
+CONFIG_TCG_TIS_SPI=m
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=m
+CONFIG_TCM_IBLOCK=m
+CONFIG_TCM_PSCSI=m
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL=y
+CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
+CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_GOV_USER_SPACE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_THUNDERX2_PMU=m
+CONFIG_THUNDER_NIC_BGX=m
+CONFIG_THUNDER_NIC_PF=m
+CONFIG_THUNDER_NIC_RGX=m
+CONFIG_THUNDER_NIC_VF=m
+CONFIG_TIFM_CORE=m
+CONFIG_TIGON3=m
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TORTURE_TEST=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRANSPARENT_HUGEPAGE=y
+CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=m
+CONFIG_TUN=m
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UDF_FS=m
+CONFIG_UEFI_CPER_ARM=y
+CONFIG_UHID=m
+CONFIG_UIO=m
+CONFIG_UIO_AEC=m
+CONFIG_UIO_CIF=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PCI_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UIO_SERCOS3=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CHAOSKEY=m
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_HCD_PLATFORM=m
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LED_TRIG=y
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_HUAWEI_CDC_NCM=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_SR9700=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SIMPLE=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_ISD200=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_SUPPORT=y
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_ULPI_BUS=m
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XHCI_PLATFORM=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UWB=m
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_UWB_WHCI=m
+CONFIG_VDPA=m
+CONFIG_VDPA_SIM=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFAT_FS=m
+CONFIG_VFIO=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_NOIOMMU=y
+CONFIG_VFIO_PCI=m
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VHOST_NET=m
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_MMIO=m
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI=y
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VDPA=m
+CONFIG_VIRTIO_VSOCKETS=m
+CONFIG_VIRTUALIZATION=y
+CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VITESSE_PHY=m
+CONFIG_VLAN_8021Q=m
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VM_EVENT_COUNTERS=y
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WDTPCI=m
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XGENE_PMU=y
+CONFIG_XGENE_SLIMPRO_MBOX=m
+CONFIG_XILINX_GMII2RGMII=m
+CONFIG_XZ_DEC=y
+CONFIG_XZ_DEC_POWERPC=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZBUD=y
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZPOOL=y
+CONFIG_ZRAM=m
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
+CONFIG_ZSWAP=y
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-abi-stablelists-4.18.0-513.tar.bz2 b/kernel-source/thirdparty/kernel/SOURCES/kernel-abi-stablelists-4.18.0-513.tar.bz2
new file mode 100644
index 0000000..b5a220d
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-abi-stablelists-4.18.0-513.tar.bz2
Binary files differ
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-kabi-dw-4.18.0-513.tar.bz2 b/kernel-source/thirdparty/kernel/SOURCES/kernel-kabi-dw-4.18.0-513.tar.bz2
new file mode 100644
index 0000000..fa7785e
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-kabi-dw-4.18.0-513.tar.bz2
Binary files differ
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-ppc64le-debug.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-ppc64le-debug.config
new file mode 100644
index 0000000..05d137c
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-ppc64le-debug.config
@@ -0,0 +1,5425 @@
+# powerpc
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AHCI_CEVA is not set
+# CONFIG_AHCI_QORIQ is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMIGA_PARTITION is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCNET is not set
+# CONFIG_AS3935 is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_GPIO is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_NULL_BLK_FAULT_INJECTION is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
+# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_FLEXCAN is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_MSCAN is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHROME_PLATFORMS is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA_DEBUG is not set
+# CONFIG_CMA_DEBUGFS is not set
+# CONFIG_CMDLINE_BOOL is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_CODE_PATCHING_SELFTEST is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPU_BIG_ENDIAN is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_CRC32C_VPMSUM is not set
+# CONFIG_CRYPTO_CRCT10DIF_VPMSUM is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
+# CONFIG_CRYPTO_DEV_QAT_C62X is not set
+# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_DH is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MCRYPTD is not set
+# CONFIG_CRYPTO_MD5_PPC is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_SHA1_PPC is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_KOBJECT_RELEASE is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM_PGFLAGS is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_VM_VMACACHE is not set
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DEVPORT is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU_CIK is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMD_DC_DCN1_0 is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_HIBMC is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DW_AXI_DMAC is not set
+# CONFIG_DW_DMAC_PCI is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_E1000 is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EDAC_BLUEFIELD is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_EE1004 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_ENA_ETHERNET is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM_ADD_XATTRS is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXTCON is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAIL_FUTEX is not set
+# CONFIG_FAIL_IOMMU is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIMPLE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FMC is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FRAME_POINTER is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSI is not set
+# CONFIG_FSL_EDMA is not set
+# CONFIG_FSL_LBC is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FTR_FIXUP_SELFTEST is not set
+# CONFIG_FUNCTION_PROFILER is not set
+# CONFIG_FUSE_DAX is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENERIC_PHY is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPIO_74XX_MMIO is not set
+# CONFIG_GPIO_ADNP is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_ALTERA is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_DWAPB is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_FTGPIO010 is not set
+# CONFIG_GPIO_GENERIC_PLATFORM is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_HLWD is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MLXBF2 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_WATCHDOG is not set
+# CONFIG_GPIO_XILINX is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HCALL_STATS is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HIBERNATION is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_ALPS is not set
+# CONFIG_HID_ASUS is not set
+# CONFIG_HID_BETOP_FF is not set
+# CONFIG_HID_CMEDIA is not set
+# CONFIG_HID_CORSAIR is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_ELO is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GEMBIRD is not set
+# CONFIG_HID_GFRM is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_GT683R is not set
+# CONFIG_HID_LENOVO is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_PENMOUNT is not set
+# CONFIG_HID_PLANTRONICS is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set
+# CONFIG_HID_SENSOR_HUB is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HID_XINMO is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HOTPLUG_PCI_PCIE is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HP_ILO is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HVC_OLD_HVSI is not set
+# CONFIG_HVC_UDBG is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HX711 is not set
+# CONFIG_HYPERV_BALLOON is not set
+# CONFIG_HZ_1000 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_AMD756 is not set
+# CONFIG_I2C_AMD756_S4882 is not set
+# CONFIG_I2C_AMD8111 is not set
+# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_GPIO is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_I801 is not set
+# CONFIG_I2C_ISCH is not set
+# CONFIG_I2C_MLXBF is not set
+# CONFIG_I2C_MUX_GPIO is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_PCA9541 is not set
+# CONFIG_I2C_MUX_PCA954x is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NFORCE2_S4985 is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_PIIX4 is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SIS96X is not set
+# CONFIG_I2C_SLAVE is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_VIA is not set
+# CONFIG_I2C_VIAPRO is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IIO is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INFINIBAND_EFA is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HFI1 is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_GP2A is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_PCSPKR is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INTEL_IDMA64 is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SVM is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTEL_TH is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IRQ_TIME_ACCOUNTING is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG is not set
+# CONFIG_KASAN is not set
+# CONFIG_KASAN_EXTRA is not set
+# CONFIG_KASAN_INLINE is not set
+# CONFIG_KASAN_OUTLINE is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
+# CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZMA is not set
+# CONFIG_KERNEL_LZO is not set
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KVM_BOOK3S_HV_EXIT_TIMING is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_BCM6328 is not set
+# CONFIG_LEDS_BCM6358 is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_CLASS_FLASH is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_IS31FL319X is not set
+# CONFIG_LEDS_IS31FL32XX is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LM3692X is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_LP8860 is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOAD_UEFI_KEYS is not set
+# CONFIG_LOCALVERSION_AUTO is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LPC_ICH is not set
+# CONFIG_LPC_SCH is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MAILBOX is not set
+# CONFIG_MAILBOX_TEST is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MDIO_BUS_MUX_GPIO is not set
+# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CEC_RC is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_REALTEK_USB is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_SYSCON is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MLXBF_BOOTCTL is not set
+# CONFIG_MLXBF_GIGE is not set
+# CONFIG_MLXBF_PMC is not set
+# CONFIG_MLXBF_TMFIFO is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_MTK is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OF_ESDHC is not set
+# CONFIG_MMC_SDHCI_OF_HLWD is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_TOSHIBA_PCI is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPIC_MSGR is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_AMD is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_DLINK is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_HUAWEI is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_STMICRO is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NET_VENDOR_XILINX is not set
+# CONFIG_NFC is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NO_HZ_IDLE is not set
+# CONFIG_NTB is not set
+# CONFIG_NTB_AMD is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_INTEL is not set
+# CONFIG_NTB_PERF is not set
+# CONFIG_NTB_PINGPONG is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTB_TOOL is not set
+# CONFIG_NTB_TRANSPORT is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NVM is not set
+# CONFIG_NVRAM is not set
+# CONFIG_NVSW_SN2201 is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF_OVERLAY is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANIC_ON_OOPS is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_HOST_GENERIC is not set
+# CONFIG_PCI_P2PDMA is not set
+# CONFIG_PCI_PF_STUB is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PERCPU_TEST is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_MAPPHONE_MDM6600 is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PINCTRL is not set
+# CONFIG_PINCTRL_BROXTON is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_POWER7_CPU is not set
+# CONFIG_POWER8_CPU is not set
+# CONFIG_POWER9_CPU is not set
+# CONFIG_POWERCAP is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_GPIO_RESTART is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_RESTART is not set
+# CONFIG_POWER_RESET_SYSCON is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPC_4K_PAGES is not set
+# CONFIG_PPC_BOOK3E_64 is not set
+# CONFIG_PPC_EARLY_DEBUG is not set
+# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set
+# CONFIG_PPC_FAST_ENDIAN_SWITCH is not set
+# CONFIG_PPC_IRQ_SOFT_MASK_DEBUG is not set
+# CONFIG_PPC_MEMTRACE is not set
+# CONFIG_PPC_PTDUMP is not set
+# CONFIG_PPC_QUEUED_SPINLOCKS is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_NONE is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROTECTED_VIRTUALIZATION_GUEST is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM_FSL_FTM is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_HIDMA is not set
+# CONFIG_QCOM_HIDMA_MGMT is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLA3XXX is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QORIQ_THERMAL is not set
+# CONFIG_QRTR is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RANDOMIZE_BASE is not set
+# CONFIG_RAPIDIO is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REFCOUNT_FULL is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_RELOCATABLE_TEST is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RESET_CONTROLLER is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RFKILL_GPIO is not set
+# CONFIG_RH_KABI_SIZE_ALIGN_CHECKS is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_ABB5ZES3 is not set
+# CONFIG_RTC_DRV_ABX80X is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS1374_WDT is not set
+# CONFIG_RTC_DRV_DS1685_FAMILY is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_HYM8563 is not set
+# CONFIG_RTC_DRV_ISL12026 is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_PCF2127 is not set
+# CONFIG_RTC_DRV_PCF85063 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_R7301 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_RX8010 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_SNVS is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_DRV_ZYNQMP is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTC_SYSTOHC is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCHED_MC is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7314 is not set
+# CONFIG_SENSORS_ADC128D818 is not set
+# CONFIG_SENSORS_ADCXX is not set
+# CONFIG_SENSORS_ADS7871 is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_DELL_SMM is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G762 is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_I5K_AMB is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_LM70 is not set
+# CONFIG_SENSORS_LTC2945 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC3815 is not set
+# CONFIG_SENSORS_LTC4222 is not set
+# CONFIG_SENSORS_LTC4260 is not set
+# CONFIG_SENSORS_MAX1111 is not set
+# CONFIG_SENSORS_MAX20751 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX31790 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT7802 is not set
+# CONFIG_SENSORS_NCT7904 is not set
+# CONFIG_SENSORS_POWR1220 is not set
+# CONFIG_SENSORS_PWM_FAN is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SHTC1 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_TC74 is not set
+# CONFIG_SENSORS_TMP103 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TPS40422 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_XGENE is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_DW is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_8250_RT288X is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SERIO_XILINX_XPS_PS2 is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SGI_IOC4 is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
+# CONFIG_SIMPLE_PM_BUS is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMC is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_HDA_INTEL is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8326 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_AMD_REMBRANDT is not set
+# CONFIG_SND_SOC_SOF_AMD_TOPLEVEL is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_I2C is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_XEN_FRONTEND is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SONY_FF is not set
+# CONFIG_SOUNDWIRE is not set
+# CONFIG_SOUNDWIRE_AMD is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI is not set
+# CONFIG_SPI_DEBUG is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_LZ4 is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TCG_ATMEL is not set
+# CONFIG_TCG_TIS_SPI is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KASAN is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_BANG_BANG is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THERMAL_WRITABLE_TRIPS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_THUNDER_NIC_BGX is not set
+# CONFIG_THUNDER_NIC_PF is not set
+# CONFIG_THUNDER_NIC_RGX is not set
+# CONFIG_THUNDER_NIC_VF is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UDBG_RTAS_CONSOLE is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHAOSKEY is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHCI_HCD_PLATFORM is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LED_TRIG is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9700 is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_SIMPLE is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_STORAGE_ISD200 is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_ULPI_BUS is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_DBGCAP is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_XHCI_PLATFORM is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFIO_MDEV is not set
+# CONFIG_VFIO_NOIOMMU is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set
+# CONFIG_VGA_SWITCHEROO is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VMXNET3 is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WDAT_WDT is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WINDFARM is not set
+# CONFIG_WIRELESS is not set
+# CONFIG_WLAN is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WQ_WATCHDOG is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XMON_DEFAULT is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_6LOWPAN=m
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_842_DECOMPRESS=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_ERST_DEBUG=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_CONFIGFS=m
+CONFIG_ACPI_CUSTOM_METHOD=m
+CONFIG_ACPI_DEBUG=y
+CONFIG_ACPI_DEBUGGER=y
+CONFIG_ACPI_DEBUGGER_USER=m
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALIM7101_WDT=m
+CONFIG_ALTERA_STAPL=m
+CONFIG_ALTIVEC=y
+CONFIG_ALX=m
+CONFIG_AMD_PHY=m
+CONFIG_ANON_INODES=y
+CONFIG_APDS9802ALS=m
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y
+CONFIG_ARCH_HAS_KEXEC_PURGATORY=y
+CONFIG_ARCH_HAS_MEM_ENCRYPT=y
+CONFIG_ARCH_MEMORY_PROBE=y
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_AT803X_PHY=m
+CONFIG_ATA=m
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=m
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUG=y
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH10K_TRACING=y
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATH_DEBUG=y
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATL2=m
+CONFIG_ATM=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
+CONFIG_AUDIT=y
+CONFIG_AUDITSYSCALL=y
+CONFIG_AUDIT_TREE=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BACKLIGHT_PWM=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCM87XX_PHY=m
+CONFIG_BCMA=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BE2ISCSI=m
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_CGROUP_DEBUG=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_MISC=m
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_BLK_DEV_LOOP=m
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NULL_BLK=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_RSXX=m
+CONFIG_BLK_DEV_SD=m
+CONFIG_BLK_DEV_SR=m
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOTX_TEXT=y
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_LSM=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMDBG=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRCM_TRACING=y
+CONFIG_BRIDGE=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BROADCOM_PHY=m
+CONFIG_BSD_DISKLABEL=y
+CONFIG_BSD_PROCESS_ACCT=y
+CONFIG_BSD_PROCESS_ACCT_V3=y
+CONFIG_BT=m
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG_ON_DATA_CORRUPTION=y
+CONFIG_BUILD_BIN2C=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEBUG_DEVICES=y
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CB710_CORE=m
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
+CONFIG_CDROM_PKTCDVD=m
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_PRETTYDEBUG=y
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEBUGFS=y
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
+CONFIG_CGROUPS=y
+CONFIG_CGROUP_BPF=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_DEBUG=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHARGER_SMB347=m
+CONFIG_CHECKPOINT_RESTORE=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CHR_DEV_SCH=m
+CONFIG_CHR_DEV_SG=m
+CONFIG_CHR_DEV_ST=m
+CONFIG_CICADA_PHY=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CMA=y
+CONFIG_CMA_AREAS=7
+CONFIG_CMM=y
+CONFIG_CNIC=m
+CONFIG_COMPACTION=y
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONNECTOR=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=m
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_CPUMASK_OFFSTACK=y
+CONFIG_CPUSETS=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IDLE=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CPU_LITTLE_ENDIAN=y
+CONFIG_CRAMFS=m
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=m
+CONFIG_CRC8=m
+CONFIG_CRC_CCITT=y
+CONFIG_CRC_ITU_T=m
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_842=m
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=m
+CONFIG_CRYPTO_CHACHA20POLY1305=m
+CONFIG_CRYPTO_CMAC=m
+CONFIG_CRYPTO_CRC32=m
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES=m
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CCP_DEBUGFS=y
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_NX=y
+CONFIG_CRYPTO_DEV_NX_COMPRESS=y
+CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=y
+CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=y
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DEV_VMX=y
+CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECDH=m
+CONFIG_CRYPTO_ECHAINIV=m
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MD5=y
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_POLY1305=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA3=m
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_XTS=m
+CONFIG_CUSE=m
+CONFIG_CXL=m
+CONFIG_CXLFLASH=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_CXL_LIB=y
+CONFIG_CYCLADES=m
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DAVICOM_PHY=m
+CONFIG_DCB=y
+CONFIG_DEBUGGER=y
+CONFIG_DEBUG_ATOMIC_SLEEP=y
+CONFIG_DEBUG_BLK_CGROUP=y
+CONFIG_DEBUG_CREDENTIALS=y
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK=y
+CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE=40000
+CONFIG_DEBUG_LIST=y
+CONFIG_DEBUG_LOCK_ALLOC=y
+CONFIG_DEBUG_MUTEXES=y
+CONFIG_DEBUG_NOTIFIERS=y
+CONFIG_DEBUG_OBJECTS=y
+CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
+CONFIG_DEBUG_OBJECTS_FREE=y
+CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
+CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
+CONFIG_DEBUG_OBJECTS_TIMERS=y
+CONFIG_DEBUG_OBJECTS_WORK=y
+CONFIG_DEBUG_PAGEALLOC=y
+CONFIG_DEBUG_PAGE_REF=y
+CONFIG_DEBUG_PER_CPU_MAPS=y
+CONFIG_DEBUG_RT_MUTEXES=y
+CONFIG_DEBUG_RWSEMS=y
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DEBUG_SG=y
+CONFIG_DEBUG_SHIRQ=y
+CONFIG_DEBUG_SLAB=y
+CONFIG_DEBUG_SPINLOCK=y
+CONFIG_DEBUG_STACKOVERFLOW=y
+CONFIG_DEBUG_STACK_USAGE=y
+CONFIG_DEBUG_VM=y
+CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+CONFIG_DETECT_HUNG_TASK=y
+CONFIG_DEVICE_PRIVATE=y
+CONFIG_DEVMEM=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DEV_PAGEMAP_OPS=y
+CONFIG_DE_AOC=y
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMADEVICES=y
+CONFIG_DMADEVICES_DEBUG=y
+CONFIG_DMADEVICES_VDEBUG=y
+CONFIG_DMATEST=m
+CONFIG_DMA_API_DEBUG=y
+CONFIG_DMA_API_DEBUG_SG=y
+CONFIG_DMA_ENGINE=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNET=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83640_PHY=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DRM=m
+CONFIG_DRM_AMDGPU=m
+CONFIG_DRM_AMDGPU_GART_DEBUGFS=y
+CONFIG_DRM_AMDGPU_USERPTR=y
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_AST=m
+CONFIG_DRM_BOCHS=m
+CONFIG_DRM_CIRRUS_QEMU=m
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_I2C_CH7006=m
+CONFIG_DRM_I2C_SIL164=m
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_LOAD_EDID_FIRMWARE=y
+CONFIG_DRM_MGAG200=m
+CONFIG_DRM_NOUVEAU=m
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_QXL=m
+CONFIG_DRM_RADEON=m
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DTL=y
+CONFIG_DUMMY=m
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_B2C2_FLEXCOP_USB=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DW_DMAC=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC=y
+CONFIG_EDAC_CPC925=m
+CONFIG_EDAC_DEBUG=y
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EEPROM_93CX6=m
+CONFIG_EEPROM_AT24=m
+CONFIG_EEPROM_LEGACY=m
+CONFIG_EEPROM_MAX6875=m
+CONFIG_EFI_PARTITION=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENCLOSURE_SERVICES=m
+CONFIG_ENCRYPTED_KEYS=y
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPIC100=m
+CONFIG_EPOLL=y
+CONFIG_ETHOC=m
+CONFIG_EVENT_TRACING=y
+CONFIG_EVM=y
+CONFIG_EVM_ATTR_FSUUID=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_DEBUG=y
+CONFIG_EXT4_FS=m
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_EXTRA_TARGETS=""
+CONFIG_FAILOVER=m
+CONFIG_FAILSLAB=y
+CONFIG_FAIL_IO_TIMEOUT=y
+CONFIG_FAIL_MAKE_REQUEST=y
+CONFIG_FAIL_MMC_REQUEST=y
+CONFIG_FAIL_PAGE_ALLOC=y
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FAULT_INJECTION=y
+CONFIG_FAULT_INJECTION_DEBUG_FS=y
+CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y
+CONFIG_FA_DUMP=y
+CONFIG_FB=y
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_IBM_GXT4500=y
+CONFIG_FB_MATROX=y
+CONFIG_FB_MATROX_G=y
+CONFIG_FB_NVIDIA=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_OF=y
+CONFIG_FB_RADEON=m
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_SSD1307=m
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FB_VGA16=m
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE=m
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FONT_SUPPORT=y
+CONFIG_FORCE_MAX_ZONEORDER=9
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_OBJECT_LIST=y
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FS_DAX=y
+CONFIG_FTRACE=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ES=m
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSE_FS=m
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENERIC_CPU=y
+CONFIG_GENERIC_IRQ_DEBUGFS=y
+CONFIG_GENEVE=m
+CONFIG_GENWQE=m
+CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=1
+CONFIG_GFS2_FS=m
+CONFIG_GFS2_FS_LOCKING_DLM=y
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIOLIB_FASTPATH_LIMIT=512
+CONFIG_GPIO_PCA953X=m
+CONFIG_GPIO_PCF857X=m
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_VIPERBOARD=m
+CONFIG_GUP_TEST=y
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HARDLOCKUP_DETECTOR=y
+CONFIG_HAVE_IMA_KEXEC=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HID=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HMM=y
+CONFIG_HMM_MIRROR=y
+CONFIG_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_POWERNV=y
+CONFIG_HOTPLUG_PCI_RPA=m
+CONFIG_HOTPLUG_PCI_RPA_DLPAR=m
+CONFIG_HOTPLUG_PCI_SHPC=y
+CONFIG_HSA_AMD=y
+CONFIG_HUGETLBFS=y
+CONFIG_HVCS=m
+CONFIG_HVC_CONSOLE=y
+CONFIG_HVC_OPAL=y
+CONFIG_HVC_RTAS=y
+CONFIG_HV_PERF_CTRS=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWMON=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_POWERNV=m
+CONFIG_HW_RANDOM_PSERIES=m
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_TIMERIOMEM=m
+CONFIG_HW_RANDOM_TPM=y
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HYPERV=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_TESTING=y
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_100=y
+CONFIG_I2C=y
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_ALGOPCA=m
+CONFIG_I2C_ALGOPCF=m
+CONFIG_I2C_CHARDEV=m
+CONFIG_I2C_COMPAT=y
+CONFIG_I2C_DESIGNWARE_PLATFORM=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_GPIO_FAULT_INJECTOR=y
+CONFIG_I2C_HELPER_AUTO=y
+CONFIG_I2C_HID=m
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MPC=m
+CONFIG_I2C_MUX=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_NFORCE2=m
+CONFIG_I2C_OPAL=y
+CONFIG_I2C_PARPORT=m
+CONFIG_I2C_PARPORT_LIGHT=m
+CONFIG_I2C_PCA_PLATFORM=m
+CONFIG_I2C_SIMTEC=m
+CONFIG_I2C_SMBUS=m
+CONFIG_I2C_STUB=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I40E_DCB=y
+CONFIG_I6300ESB_WDT=m
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_IBMVETH=m
+CONFIG_IBMVMC=m
+CONFIG_IBMVNIC=m
+CONFIG_IBM_BSR=m
+CONFIG_ICE=m
+CONFIG_ICPLUS_PHY=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IEEE802154=m
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IFCVF=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IKHEADERS=m
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_ARCH_POLICY=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_KEXEC=y
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET=y
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_BNXT_RE=m
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_ISER=m
+CONFIG_INFINIBAND_ISERT=m
+CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_SRP=m
+CONFIG_INFINIBAND_SRPT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USER_MAD=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_EVDEV=y
+CONFIG_INPUT_FF_MEMLESS=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_KEYBOARD=y
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MISC=y
+CONFIG_INPUT_MOUSE=y
+CONFIG_INPUT_MOUSEDEV=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_POLLDEV=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_PWM_BEEPER=m
+CONFIG_INPUT_SPARSEKMAP=m
+CONFIG_INPUT_TABLET=y
+CONFIG_INPUT_TOUCHSCREEN=y
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INTEGRITY=y
+CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_PLATFORM_KEYRING=y
+CONFIG_INTEGRITY_SIGNATURE=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IO_EVENT_IRQ=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_DEVICE_INTERFACE=m
+CONFIG_IPMI_HANDLER=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWERNV=m
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DEBUG=y
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IRQ_ALL_CPUS=y
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_ISCSI_TARGET=m
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN=y
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISL29003=m
+CONFIG_ISL29020=m
+CONFIG_ISO9660_FS=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUG=y
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IWLWIFI_DEVICE_TRACING=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_JUMP_LABEL_FEATURE_CHECKS=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KARMA_PARTITION=y
+CONFIG_KASAN_VMALLOC=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x0
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_ELF=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYS=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBES_ON_FTRACE=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KSM=y
+CONFIG_KUNIT=m
+CONFIG_KUNIT_ALL_TESTS=m
+CONFIG_KVM_AMD_SEV=y
+CONFIG_KVM_BOOK3S_64=m
+CONFIG_KVM_BOOK3S_64_HV=m
+CONFIG_KVM_BOOK3S_PR_POSSIBLE=y
+CONFIG_KVM_GUEST=y
+CONFIG_KVM_XICS=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LATENCYTOP=y
+CONFIG_LCD_CLASS_DEVICE=m
+CONFIG_LCD_PLATFORM=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_POWERNV=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBCRC32C=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOAD_PPC_KEYS=y
+CONFIG_LOCALVERSION=""
+CONFIG_LOCKD=m
+CONFIG_LOCKDEP_BITS=16
+CONFIG_LOCKDEP_CHAINS_BITS=17
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOCK_DOWN_KERNEL=y
+CONFIG_LOCK_EVENT_COUNTS=y
+CONFIG_LOCK_STAT=y
+CONFIG_LOCK_TORTURE_TEST=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=20
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=m
+CONFIG_LPARCFG=y
+CONFIG_LSI_ET1011C_PHY=m
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_LXT_PHY=m
+CONFIG_MAC80211=m
+CONFIG_MAC80211_DEBUGFS=y
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_MESSAGE_TRACING=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACB=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACINTOSH_DRIVERS=y
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAC_PARTITION=y
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MARVELL_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MD=y
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_BITBANG=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_GPIO=m
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_SUPPORT=m
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MEGARAID_SAS=m
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
+CONFIG_MEMCG=y
+CONFIG_MEMCG_SWAP=y
+CONFIG_MEMCG_SWAP_ENABLED=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK=m
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_SM501=m
+CONFIG_MFD_SM501_GPIO=y
+CONFIG_MFD_VIPERBOARD=m
+CONFIG_MFD_VX855=m
+CONFIG_MHI_BUS=m
+CONFIG_MHI_BUS_PCI_GENERIC=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICREL_PHY=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MIGRATION=y
+CONFIG_MII=m
+CONFIG_MINIX_SUBPARTITION=y
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_MISC_RTSX_PCI=m
+CONFIG_MISC_RTSX_USB=m
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCMULTI=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_I2C=m
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC=m
+CONFIG_MMC_BLOCK=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_RICOH_MMC=y
+CONFIG_MMC_SDHCI=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_SDHCI_PCI=m
+CONFIG_MMC_SDHCI_PLTFM=m
+CONFIG_MMC_TIFM_SD=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VIA_SDMMC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMIOTRACE=y
+CONFIG_MMU=y
+CONFIG_MODULES=y
+CONFIG_MODULE_FORCE_LOAD=y
+CONFIG_MODULE_SIG=y
+CONFIG_MODULE_SIG_ALL=y
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
+CONFIG_MODULE_SIG_SHA256=y
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MOUSE_APPLETOUCH=m
+CONFIG_MOUSE_BCM5974=m
+CONFIG_MOUSE_CYAPA=m
+CONFIG_MOUSE_ELAN_I2C=m
+CONFIG_MOUSE_ELAN_I2C_I2C=y
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_PS2=y
+CONFIG_MOUSE_PS2_ELANTECH=y
+CONFIG_MOUSE_PS2_SENTELIC=y
+CONFIG_MOUSE_SERIAL=m
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MOUSE_VSXXXAA=m
+CONFIG_MPLS=y
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPROFILE_KERNEL=y
+CONFIG_MPTCP=y
+CONFIG_MPTCP_HMAC_TEST=y
+CONFIG_MPTCP_IPV6=y
+CONFIG_MQ_IOSCHED_DEADLINE=y
+CONFIG_MQ_IOSCHED_KYBER=y
+CONFIG_MSDOS_FS=m
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MSI_BITMAP_SELFTEST=y
+CONFIG_MSPRO_BLOCK=m
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_POWERNV_FLASH=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_NATIONAL_PHY=m
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
+CONFIG_NEED_MULTIPLE_NODES=y
+CONFIG_NET=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVICES=y
+CONFIG_NETDEVSIM=m
+CONFIG_NETFILTER=y
+CONFIG_NETFILTER_ADVANCED=y
+CONFIG_NETFILTER_INGRESS=y
+CONFIG_NETFILTER_NETLINK=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
+CONFIG_NETFILTER_NETLINK_LOG=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_XTABLES=y
+CONFIG_NETFILTER_XT_CONNMARK=m
+CONFIG_NETFILTER_XT_MARK=m
+CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
+CONFIG_NETFILTER_XT_MATCH_BPF=m
+CONFIG_NETFILTER_XT_MATCH_CGROUP=m
+CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
+CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
+CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
+CONFIG_NETFILTER_XT_MATCH_CPU=m
+CONFIG_NETFILTER_XT_MATCH_DCCP=m
+CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
+CONFIG_NETFILTER_XT_MATCH_DSCP=m
+CONFIG_NETFILTER_XT_MATCH_ECN=m
+CONFIG_NETFILTER_XT_MATCH_ESP=m
+CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_HELPER=m
+CONFIG_NETFILTER_XT_MATCH_HL=m
+CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
+CONFIG_NETFILTER_XT_MATCH_IPVS=m
+CONFIG_NETFILTER_XT_MATCH_LENGTH=m
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+CONFIG_NETFILTER_XT_MATCH_MARK=m
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
+CONFIG_NETFILTER_XT_MATCH_OSF=m
+CONFIG_NETFILTER_XT_MATCH_OWNER=m
+CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
+CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
+CONFIG_NETFILTER_XT_MATCH_QUOTA=m
+CONFIG_NETFILTER_XT_MATCH_RATEEST=m
+CONFIG_NETFILTER_XT_MATCH_REALM=m
+CONFIG_NETFILTER_XT_MATCH_RECENT=m
+CONFIG_NETFILTER_XT_MATCH_SCTP=m
+CONFIG_NETFILTER_XT_MATCH_SOCKET=m
+CONFIG_NETFILTER_XT_MATCH_STATE=m
+CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
+CONFIG_NETFILTER_XT_MATCH_STRING=m
+CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
+CONFIG_NETFILTER_XT_MATCH_U32=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=m
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_FC=y
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_NSH=y
+CONFIG_NET_PACKET_ENGINE=y
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_NET_RX_BUSY_POLL=y
+CONFIG_NET_SCHED=y
+CONFIG_NET_SCH_ATM=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
+CONFIG_NET_SCH_RED=m
+CONFIG_NET_SCH_SFB=m
+CONFIG_NET_SCH_SFQ=m
+CONFIG_NET_SCH_TBF=m
+CONFIG_NET_SCH_TEQL=m
+CONFIG_NET_SWITCHDEV=y
+CONFIG_NET_TC_SKB_EXT=y
+CONFIG_NET_TEAM=m
+CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
+CONFIG_NET_TEAM_MODE_LOADBALANCE=m
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
+CONFIG_NET_VENDOR_AMAZON=y
+CONFIG_NET_VENDOR_AQUANTIA=y
+CONFIG_NET_VENDOR_ATHEROS=y
+CONFIG_NET_VENDOR_BROCADE=y
+CONFIG_NET_VENDOR_CAVIUM=y
+CONFIG_NET_VENDOR_CHELSIO=y
+CONFIG_NET_VENDOR_CISCO=y
+CONFIG_NET_VENDOR_DEC=y
+CONFIG_NET_VENDOR_EMULEX=y
+CONFIG_NET_VENDOR_GOOGLE=y
+CONFIG_NET_VENDOR_IBM=y
+CONFIG_NET_VENDOR_INTEL=y
+CONFIG_NET_VENDOR_MICROSOFT=y
+CONFIG_NET_VENDOR_MYRI=y
+CONFIG_NET_VENDOR_NETRONOME=y
+CONFIG_NET_VENDOR_OKI=y
+CONFIG_NET_VENDOR_PENSANDO=y
+CONFIG_NET_VENDOR_QLOGIC=y
+CONFIG_NET_VENDOR_REALTEK=y
+CONFIG_NET_VENDOR_ROCKER=y
+CONFIG_NET_VENDOR_SOLARFLARE=y
+CONFIG_NET_VRF=m
+CONFIG_NEW_LEDS=y
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
+CONFIG_NFP_DEBUG=y
+CONFIG_NFSD=m
+CONFIG_NFSD_FAULT_INJECTION=y
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
+CONFIG_NFSD_V3=y
+CONFIG_NFSD_V3_ACL=y
+CONFIG_NFSD_V4=y
+CONFIG_NFSD_V4_SECURITY_LABEL=y
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
+CONFIG_NLS=y
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
+CONFIG_NLS_CODEPAGE_437=y
+CONFIG_NLS_CODEPAGE_737=m
+CONFIG_NLS_CODEPAGE_775=m
+CONFIG_NLS_CODEPAGE_850=m
+CONFIG_NLS_CODEPAGE_852=m
+CONFIG_NLS_CODEPAGE_855=m
+CONFIG_NLS_CODEPAGE_857=m
+CONFIG_NLS_CODEPAGE_860=m
+CONFIG_NLS_CODEPAGE_861=m
+CONFIG_NLS_CODEPAGE_862=m
+CONFIG_NLS_CODEPAGE_863=m
+CONFIG_NLS_CODEPAGE_864=m
+CONFIG_NLS_CODEPAGE_865=m
+CONFIG_NLS_CODEPAGE_866=m
+CONFIG_NLS_CODEPAGE_869=m
+CONFIG_NLS_CODEPAGE_874=m
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
+CONFIG_NLS_ISO8859_1=m
+CONFIG_NLS_ISO8859_2=m
+CONFIG_NLS_ISO8859_3=m
+CONFIG_NLS_ISO8859_4=m
+CONFIG_NLS_ISO8859_5=m
+CONFIG_NLS_ISO8859_6=m
+CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
+CONFIG_NLS_ISO8859_9=m
+CONFIG_NLS_KOI8_R=m
+CONFIG_NLS_KOI8_U=m
+CONFIG_NLS_MAC_CELTIC=m
+CONFIG_NLS_MAC_CENTEURO=m
+CONFIG_NLS_MAC_CROATIAN=m
+CONFIG_NLS_MAC_CYRILLIC=m
+CONFIG_NLS_MAC_GAELIC=m
+CONFIG_NLS_MAC_GREEK=m
+CONFIG_NLS_MAC_ICELAND=m
+CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
+CONFIG_NLS_MAC_ROMANIAN=m
+CONFIG_NLS_MAC_TURKISH=m
+CONFIG_NLS_UTF8=m
+CONFIG_NODES_SHIFT=8
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NOUVEAU_DEBUG_MMU=y
+CONFIG_NOUVEAU_DEBUG_PUSH=y
+CONFIG_NOZOMI=m
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_FULL=y
+CONFIG_NR_CPUS=2048
+CONFIG_NR_IRQS=512
+CONFIG_NUMA=y
+CONFIG_NUMA_BALANCING=y
+CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_FC=m
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_N_GSM=m
+CONFIG_N_HDLC=m
+CONFIG_OCXL=m
+CONFIG_OF=y
+CONFIG_OF_PMEM=m
+CONFIG_OPAL_CORE=y
+CONFIG_OPAL_PRD=m
+CONFIG_OPENVSWITCH=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPENVSWITCH_GRE=m
+CONFIG_OPENVSWITCH_VXLAN=m
+CONFIG_OPROFILE=m
+CONFIG_OPTIMIZE_INLINING=y
+CONFIG_OSF_PARTITION=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_OVERLAY_FS=m
+CONFIG_PACKET=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PAGE_EXTENSION=y
+CONFIG_PAGE_OWNER=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANIC_TIMEOUT=180
+CONFIG_PAPR_SCM=m
+CONFIG_PARPORT=m
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_PC=m
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PATA_OF_PLATFORM=m
+CONFIG_PATA_PLATFORM=m
+CONFIG_PCCARD=y
+CONFIG_PCI=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIEPORTBUS=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCIPCWATCHDOG=m
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_PASID=y
+CONFIG_PCI_PRI=y
+CONFIG_PCI_STUB=y
+CONFIG_PERF_EVENTS=y
+CONFIG_PERSISTENT_KEYRINGS=y
+CONFIG_PHYLIB=y
+CONFIG_PID_NS=y
+CONFIG_PM=y
+CONFIG_PMBUS=m
+CONFIG_PMU_SYSFS=y
+CONFIG_PM_ADVANCED_DEBUG=y
+CONFIG_PM_DEBUG=y
+CONFIG_PM_STD_PARTITION=""
+CONFIG_PM_TEST_SUSPEND=y
+CONFIG_PM_TRACE_RTC=y
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_CPUIDLE=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_RESET_GPIO=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPC64=y
+CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y
+CONFIG_PPC=y
+CONFIG_PPC_64K_PAGES=y
+CONFIG_PPC_BOOK3S_64=y
+CONFIG_PPC_DENORMALISATION=y
+CONFIG_PPC_DISABLE_WERROR=y
+CONFIG_PPC_DT_CPU_FTRS=y
+CONFIG_PPC_EMULATED_STATS=y
+CONFIG_PPC_MEM_KEYS=y
+CONFIG_PPC_OF_BOOT_TRAMPOLINE=y
+CONFIG_PPC_POWERNV=y
+CONFIG_PPC_PSERIES=y
+CONFIG_PPC_RADIX_MMU=y
+CONFIG_PPC_RADIX_MMU_DEFAULT=y
+CONFIG_PPC_RTAS_FILTER=y
+CONFIG_PPC_SECURE_BOOT=y
+CONFIG_PPC_SECVAR_SYSFS=y
+CONFIG_PPC_SMLPAR=y
+CONFIG_PPC_SPLPAR=y
+CONFIG_PPC_SUBPAGE_PROT=y
+CONFIG_PPC_SVM=y
+CONFIG_PPC_TRANSACTIONAL_MEM=y
+CONFIG_PPC_UV=y
+CONFIG_PPC_VAS=y
+CONFIG_PPC_XIVE=y
+CONFIG_PPC_XIVE_NATIVE=y
+CONFIG_PPDEV=m
+CONFIG_PPP=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREEMPT_VOLUNTARY=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PRINT_STACK_DEPTH=64
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROFILING=y
+CONFIG_PROVE_LOCKING=y
+CONFIG_PROVE_RCU=y
+CONFIG_PSAMPLE=m
+CONFIG_PSERIES_CPUIDLE=y
+CONFIG_PSERIES_ENERGY=m
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PSTORE_RAM=m
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_PWM=y
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QFMT_V2=y
+CONFIG_QSEMI_PHY=m
+CONFIG_QUEUED_LOCK_STAT=y
+CONFIG_QUOTA=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTA_DEBUG=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RAID_ATTRS=m
+CONFIG_RANDOM32_SELFTEST=y
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOM_TRUST_CPU=y
+CONFIG_RAS=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RCU_TORTURE_TEST=m
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_CORE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_LOOPBACK=m
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_REALTEK_PHY=m
+CONFIG_RELAY=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL=m
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_CORE=m
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTAS_FLASH=y
+CONFIG_RTAS_PROC=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_DS3232_HWMON=y
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_GENERIC=y
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_OPAL=y
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTC_NVMEM=y
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTLWIFI_DEBUG=y
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW88_DEBUG=y
+CONFIG_RTW88_DEBUGFS=y
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_SAMPLES=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SATA_AHCI=m
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SCANLOG=y
+CONFIG_SCF_TORTURE_TEST=m
+CONFIG_SCHEDSTATS=y
+CONFIG_SCHED_AUTOGROUP=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCOM_DEBUGFS=y
+CONFIG_SCSI=y
+CONFIG_SCSI_AACRAID=m
+CONFIG_SCSI_BNX2X_FCOE=m
+CONFIG_SCSI_BNX2_ISCSI=m
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_CXGB4_ISCSI=m
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=m
+CONFIG_SCSI_FC_ATTRS=m
+CONFIG_SCSI_HPSA=m
+CONFIG_SCSI_IBMVFC=m
+CONFIG_SCSI_IBMVFC_TRACE=y
+CONFIG_SCSI_IBMVSCSI=m
+CONFIG_SCSI_IBMVSCSIS=m
+CONFIG_SCSI_IPR=m
+CONFIG_SCSI_IPR_DUMP=y
+CONFIG_SCSI_IPR_TRACE=y
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_LPFC=m
+CONFIG_SCSI_MPI3MR=m
+CONFIG_SCSI_MPT2SAS=m
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS=m
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_QLA_FC=m
+CONFIG_SCSI_QLA_ISCSI=m
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SMARTPQI=m
+CONFIG_SCSI_SPI_ATTRS=m
+CONFIG_SCSI_SRP_ATTRS=m
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SDIO_UART=m
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
+CONFIG_SECURITY=y
+CONFIG_SECURITYFS=y
+CONFIG_SECURITY_INFINIBAND=y
+CONFIG_SECURITY_NETWORK=y
+CONFIG_SECURITY_NETWORK_XFRM=y
+CONFIG_SECURITY_PATH=y
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
+CONFIG_SECURITY_YAMA=y
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_AD7414=m
+CONFIG_SENSORS_AD7418=m
+CONFIG_SENSORS_ADM1021=m
+CONFIG_SENSORS_ADM1025=m
+CONFIG_SENSORS_ADM1026=m
+CONFIG_SENSORS_ADM1029=m
+CONFIG_SENSORS_ADM1031=m
+CONFIG_SENSORS_ADM1275=m
+CONFIG_SENSORS_ADM9240=m
+CONFIG_SENSORS_ADS1015=m
+CONFIG_SENSORS_ADS7828=m
+CONFIG_SENSORS_ADT7310=m
+CONFIG_SENSORS_ADT7410=m
+CONFIG_SENSORS_ADT7411=m
+CONFIG_SENSORS_ADT7462=m
+CONFIG_SENSORS_ADT7470=m
+CONFIG_SENSORS_ADT7475=m
+CONFIG_SENSORS_AMC6821=m
+CONFIG_SENSORS_APDS990X=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ASC7621=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_ATXP1=m
+CONFIG_SENSORS_BH1770=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_DME1737=m
+CONFIG_SENSORS_DS1621=m
+CONFIG_SENSORS_DS620=m
+CONFIG_SENSORS_EMC1403=m
+CONFIG_SENSORS_EMC6W201=m
+CONFIG_SENSORS_F71805F=m
+CONFIG_SENSORS_F71882FG=m
+CONFIG_SENSORS_F75375S=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G760A=m
+CONFIG_SENSORS_GL518SM=m
+CONFIG_SENSORS_GL520SM=m
+CONFIG_SENSORS_IBMAEM=m
+CONFIG_SENSORS_IBMPEX=m
+CONFIG_SENSORS_IBMPOWERNV=m
+CONFIG_SENSORS_INA209=m
+CONFIG_SENSORS_INA2XX=m
+CONFIG_SENSORS_IT87=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LINEAGE=m
+CONFIG_SENSORS_LIS3_I2C=m
+CONFIG_SENSORS_LM25066=m
+CONFIG_SENSORS_LM63=m
+CONFIG_SENSORS_LM73=m
+CONFIG_SENSORS_LM75=m
+CONFIG_SENSORS_LM77=m
+CONFIG_SENSORS_LM78=m
+CONFIG_SENSORS_LM80=m
+CONFIG_SENSORS_LM83=m
+CONFIG_SENSORS_LM85=m
+CONFIG_SENSORS_LM87=m
+CONFIG_SENSORS_LM90=m
+CONFIG_SENSORS_LM92=m
+CONFIG_SENSORS_LM93=m
+CONFIG_SENSORS_LM95234=m
+CONFIG_SENSORS_LM95241=m
+CONFIG_SENSORS_LM95245=m
+CONFIG_SENSORS_LTC2978=m
+CONFIG_SENSORS_LTC4151=m
+CONFIG_SENSORS_LTC4215=m
+CONFIG_SENSORS_LTC4245=m
+CONFIG_SENSORS_LTC4261=m
+CONFIG_SENSORS_MAX16064=m
+CONFIG_SENSORS_MAX16065=m
+CONFIG_SENSORS_MAX1619=m
+CONFIG_SENSORS_MAX1668=m
+CONFIG_SENSORS_MAX197=m
+CONFIG_SENSORS_MAX34440=m
+CONFIG_SENSORS_MAX6639=m
+CONFIG_SENSORS_MAX6642=m
+CONFIG_SENSORS_MAX6650=m
+CONFIG_SENSORS_MAX6697=m
+CONFIG_SENSORS_MAX8688=m
+CONFIG_SENSORS_MCP3021=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT6775=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_PC87360=m
+CONFIG_SENSORS_PC87427=m
+CONFIG_SENSORS_PCF8591=m
+CONFIG_SENSORS_PMBUS=m
+CONFIG_SENSORS_SCH5627=m
+CONFIG_SENSORS_SCH5636=m
+CONFIG_SENSORS_SHT15=m
+CONFIG_SENSORS_SHT21=m
+CONFIG_SENSORS_SIS5595=m
+CONFIG_SENSORS_SMSC47B397=m
+CONFIG_SENSORS_SMSC47M192=m
+CONFIG_SENSORS_SMSC47M1=m
+CONFIG_SENSORS_THMC50=m
+CONFIG_SENSORS_TMP102=m
+CONFIG_SENSORS_TMP401=m
+CONFIG_SENSORS_TMP421=m
+CONFIG_SENSORS_TSL2550=m
+CONFIG_SENSORS_UCD9000=m
+CONFIG_SENSORS_UCD9200=m
+CONFIG_SENSORS_VIA686A=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_VT1211=m
+CONFIG_SENSORS_VT8231=m
+CONFIG_SENSORS_W83627EHF=m
+CONFIG_SENSORS_W83627HF=m
+CONFIG_SENSORS_W83781D=m
+CONFIG_SENSORS_W83791D=m
+CONFIG_SENSORS_W83792D=m
+CONFIG_SENSORS_W83793=m
+CONFIG_SENSORS_W83795=m
+CONFIG_SENSORS_W83L785TS=m
+CONFIG_SENSORS_W83L786NG=m
+CONFIG_SENSORS_ZL6100=m
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=32
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_ARC=m
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=y
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_ICOM=m
+CONFIG_SERIAL_JSM=m
+CONFIG_SERIAL_NONSTANDARD=y
+CONFIG_SERIAL_OF_PLATFORM=m
+CONFIG_SERIAL_UARTLITE=m
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO=y
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SFC=m
+CONFIG_SFC_MCDI_LOGGING=y
+CONFIG_SFC_MCDI_MON=y
+CONFIG_SFC_MTD=y
+CONFIG_SFC_SIENA=m
+CONFIG_SFC_SIENA_MCDI_LOGGING=y
+CONFIG_SFC_SIENA_MCDI_MON=y
+CONFIG_SFC_SIENA_MTD=y
+CONFIG_SFC_SIENA_SRIOV=y
+CONFIG_SFC_SRIOV=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SGI_PARTITION=y
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
+CONFIG_SIGNATURE=y
+CONFIG_SIMPLE_GPIO=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP=m
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMP=y
+CONFIG_SMSC9420=m
+CONFIG_SMSC_PHY=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_DEBUG=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTL_INPUT_VALIDATION=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DEBUG=y
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=512
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCM_XRUN_DEBUG=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_PPC=y
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PRINTK=y
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SOLARIS_X86_PARTITION=y
+CONFIG_SOUND=m
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SPAPR_TCE_IOMMU=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACK_TRACER=y
+CONFIG_STANDALONE=y
+CONFIG_STE10XP=m
+CONFIG_STRICT_DEVMEM=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUN_PARTITION=y
+CONFIG_SUSPEND=y
+CONFIG_SUSPEND_FREEZER=y
+CONFIG_SWAP=y
+CONFIG_SWIOTLB=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNCLINKMP=m
+CONFIG_SYNCLINK_GT=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSTEM_BLACKLIST_HASH_LIST=""
+CONFIG_SYSTEM_BLACKLIST_KEYRING=y
+CONFIG_SYSTEM_EXTRA_CERTIFICATE=y
+CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_SYSVIPC=y
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=m
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_CRB=y
+CONFIG_TCG_IBMVTPM=y
+CONFIG_TCG_INFINEON=m
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TIS_I2C_ATMEL=y
+CONFIG_TCG_TIS_I2C_INFINEON=y
+CONFIG_TCG_TIS_I2C_NUVOTON=y
+CONFIG_TCG_TIS_ST33ZP24_I2C=m
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=m
+CONFIG_TCM_IBLOCK=m
+CONFIG_TCM_PSCSI=m
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_LIVEPATCH=m
+CONFIG_TEST_STRING_HELPERS=m
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL=y
+CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
+CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_THERMAL_OF=y
+CONFIG_TIFM_7XX1=m
+CONFIG_TIFM_CORE=m
+CONFIG_TIGON3=m
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TORTURE_TEST=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRANSPARENT_HUGEPAGE=y
+CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=y
+CONFIG_TUN=m
+CONFIG_TUN_VNET_CROSS_LE=y
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UBSAN=y
+CONFIG_UBSAN_SANITIZE_ALL=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UDF_FS=m
+CONFIG_UHID=m
+CONFIG_UIO=m
+CONFIG_UIO_AEC=m
+CONFIG_UIO_CIF=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PCI_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UIO_SERCOS3=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX=y
+CONFIG_UNIXWARE_DISKLABEL=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_HCD_PPC_OF=y
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_OHCI_HCD_PPC_OF=y
+CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
+CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_SPEEDTOUCH=m
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_SUPPORT=y
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UWB=m
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_UWB_WHCI=m
+CONFIG_VDPA=m
+CONFIG_VDPA_SIM=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFAT_FS=m
+CONFIG_VFIO=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_PCI=m
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VGA_CONSOLE=y
+CONFIG_VHOST_CROSS_ENDIAN_LEGACY=y
+CONFIG_VHOST_NET=m
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI=y
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VDPA=m
+CONFIG_VIRTIO_VSOCKETS=m
+CONFIG_VIRTUALIZATION=y
+CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VITESSE_PHY=m
+CONFIG_VLAN_8021Q=m
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VSX=y
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_RTAS=m
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WDTPCI=m
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XFS_WARN=y
+CONFIG_XILINX_GMII2RGMII=m
+CONFIG_XMON=y
+CONFIG_XMON_DISASSEMBLY=y
+CONFIG_XZ_DEC=y
+CONFIG_XZ_DEC_POWERPC=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZBUD=y
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZPOOL=y
+CONFIG_ZRAM=m
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
+CONFIG_ZSWAP=y
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-ppc64le.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-ppc64le.config
new file mode 100644
index 0000000..ad6ed9c
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-ppc64le.config
@@ -0,0 +1,5401 @@
+# powerpc
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACPI_APEI_ERST_DEBUG is not set
+# CONFIG_ACPI_CONFIGFS is not set
+# CONFIG_ACPI_CUSTOM_METHOD is not set
+# CONFIG_ACPI_DEBUG is not set
+# CONFIG_ACPI_DEBUGGER is not set
+# CONFIG_ACPI_DEBUGGER_USER is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AHCI_CEVA is not set
+# CONFIG_AHCI_QORIQ is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMIGA_PARTITION is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCNET is not set
+# CONFIG_AS3935 is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_DEBUG is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_TRACING is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_DEBUG is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_GPIO is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFQ_CGROUP_DEBUG is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
+# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BRCMDBG is not set
+# CONFIG_BRCM_TRACING is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_DEBUG_DEVICES is not set
+# CONFIG_CAN_FLEXCAN is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_MSCAN is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
+# CONFIG_CFG80211_DEBUGFS is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CGROUP_DEBUG is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHROME_PLATFORMS is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA_DEBUG is not set
+# CONFIG_CMA_DEBUGFS is not set
+# CONFIG_CMDLINE_BOOL is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_CODE_PATCHING_SELFTEST is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPUMASK_OFFSTACK is not set
+# CONFIG_CPU_BIG_ENDIAN is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_CRC32C_VPMSUM is not set
+# CONFIG_CRYPTO_CRCT10DIF_VPMSUM is not set
+# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
+# CONFIG_CRYPTO_DEV_QAT_C62X is not set
+# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_DH is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MCRYPTD is not set
+# CONFIG_CRYPTO_MD5_PPC is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_SHA1_PPC is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_ATOMIC_SLEEP is not set
+# CONFIG_DEBUG_BLK_CGROUP is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_CREDENTIALS is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK is not set
+# CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_LOCK_ALLOC is not set
+# CONFIG_DEBUG_MUTEXES is not set
+# CONFIG_DEBUG_NOTIFIERS is not set
+# CONFIG_DEBUG_OBJECTS is not set
+# CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_OBJECTS_FREE is not set
+# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set
+# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_OBJECTS_TIMERS is not set
+# CONFIG_DEBUG_OBJECTS_WORK is not set
+# CONFIG_DEBUG_PAGEALLOC is not set
+# CONFIG_DEBUG_PAGE_REF is not set
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+# CONFIG_DEBUG_PER_CPU_MAPS is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_RT_MUTEXES is not set
+# CONFIG_DEBUG_RWSEMS is not set
+# CONFIG_DEBUG_SG is not set
+# CONFIG_DEBUG_SLAB is not set
+# CONFIG_DEBUG_SPINLOCK is not set
+# CONFIG_DEBUG_STACK_USAGE is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DEVPORT is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMADEVICES_DEBUG is not set
+# CONFIG_DMADEVICES_VDEBUG is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_API_DEBUG is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU_CIK is not set
+# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMD_DC_DCN1_0 is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_HIBMC is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DW_AXI_DMAC is not set
+# CONFIG_DW_DMAC_PCI is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_E1000 is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EDAC_BLUEFIELD is not set
+# CONFIG_EDAC_DEBUG is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_EE1004 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_ENA_ETHERNET is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM_ADD_XATTRS is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_DEBUG is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXTCON is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAILSLAB is not set
+# CONFIG_FAIL_IOMMU is not set
+# CONFIG_FAIL_IO_TIMEOUT is not set
+# CONFIG_FAIL_MAKE_REQUEST is not set
+# CONFIG_FAIL_MMC_REQUEST is not set
+# CONFIG_FAIL_PAGE_ALLOC is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FAULT_INJECTION is not set
+# CONFIG_FAULT_INJECTION_DEBUG_FS is not set
+# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIMPLE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FMC is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FRAME_POINTER is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSCACHE_OBJECT_LIST is not set
+# CONFIG_FSI is not set
+# CONFIG_FSL_EDMA is not set
+# CONFIG_FSL_LBC is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FTR_FIXUP_SELFTEST is not set
+# CONFIG_FUNCTION_PROFILER is not set
+# CONFIG_FUSE_DAX is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENERIC_IRQ_DEBUGFS is not set
+# CONFIG_GENERIC_PHY is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPIO_74XX_MMIO is not set
+# CONFIG_GPIO_ADNP is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_ALTERA is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_DWAPB is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_FTGPIO010 is not set
+# CONFIG_GPIO_GENERIC_PLATFORM is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_HLWD is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MLXBF2 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_WATCHDOG is not set
+# CONFIG_GPIO_XILINX is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_GUP_TEST is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HCALL_STATS is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HIBERNATION is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_ALPS is not set
+# CONFIG_HID_ASUS is not set
+# CONFIG_HID_BETOP_FF is not set
+# CONFIG_HID_CMEDIA is not set
+# CONFIG_HID_CORSAIR is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_ELO is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GEMBIRD is not set
+# CONFIG_HID_GFRM is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_GT683R is not set
+# CONFIG_HID_LENOVO is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_PENMOUNT is not set
+# CONFIG_HID_PLANTRONICS is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set
+# CONFIG_HID_SENSOR_HUB is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HID_XINMO is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HOTPLUG_PCI_PCIE is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HP_ILO is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HVC_OLD_HVSI is not set
+# CONFIG_HVC_UDBG is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HX711 is not set
+# CONFIG_HYPERV_BALLOON is not set
+# CONFIG_HZ_1000 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_AMD756 is not set
+# CONFIG_I2C_AMD756_S4882 is not set
+# CONFIG_I2C_AMD8111 is not set
+# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_GPIO is not set
+# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_I801 is not set
+# CONFIG_I2C_ISCH is not set
+# CONFIG_I2C_MLXBF is not set
+# CONFIG_I2C_MUX_GPIO is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_PCA9541 is not set
+# CONFIG_I2C_MUX_PCA954x is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NFORCE2_S4985 is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_PIIX4 is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SIS96X is not set
+# CONFIG_I2C_SLAVE is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_VIA is not set
+# CONFIG_I2C_VIAPRO is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IIO is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INFINIBAND_EFA is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HFI1 is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_GP2A is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_PCSPKR is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INTEL_IDMA64 is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SVM is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTEL_TH is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IP_VS_DEBUG is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IRQ_TIME_ACCOUNTING is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IWLWIFI_DEBUG is not set
+# CONFIG_IWLWIFI_DEVICE_TRACING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG is not set
+# CONFIG_KASAN is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
+# CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZMA is not set
+# CONFIG_KERNEL_LZO is not set
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KVM_BOOK3S_HV_EXIT_TIMING is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATENCYTOP is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_BCM6328 is not set
+# CONFIG_LEDS_BCM6358 is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_CLASS_FLASH is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_IS31FL319X is not set
+# CONFIG_LEDS_IS31FL32XX is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LM3692X is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_LP8860 is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOAD_UEFI_KEYS is not set
+# CONFIG_LOCALVERSION_AUTO is not set
+# CONFIG_LOCK_STAT is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LPC_ICH is not set
+# CONFIG_LPC_SCH is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211_DEBUGFS is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MAC80211_MESSAGE_TRACING is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MAILBOX is not set
+# CONFIG_MAILBOX_TEST is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MDIO_BUS_MUX_GPIO is not set
+# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CEC_RC is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_REALTEK_USB is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_SYSCON is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MLXBF_BOOTCTL is not set
+# CONFIG_MLXBF_GIGE is not set
+# CONFIG_MLXBF_PMC is not set
+# CONFIG_MLXBF_TMFIFO is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_MTK is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OF_ESDHC is not set
+# CONFIG_MMC_SDHCI_OF_HLWD is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_TOSHIBA_PCI is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MMIOTRACE is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPIC_MSGR is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_AMD is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_DLINK is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_HUAWEI is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_STMICRO is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NET_VENDOR_XILINX is not set
+# CONFIG_NFC is not set
+# CONFIG_NFP_DEBUG is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FAULT_INJECTION is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_DEBUG_MMU is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NO_HZ_IDLE is not set
+# CONFIG_NTB is not set
+# CONFIG_NTB_AMD is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_INTEL is not set
+# CONFIG_NTB_PERF is not set
+# CONFIG_NTB_PINGPONG is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTB_TOOL is not set
+# CONFIG_NTB_TRANSPORT is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NVM is not set
+# CONFIG_NVRAM is not set
+# CONFIG_NVSW_SN2201 is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF_OVERLAY is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_HOST_GENERIC is not set
+# CONFIG_PCI_P2PDMA is not set
+# CONFIG_PCI_PF_STUB is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PERCPU_TEST is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_MAPPHONE_MDM6600 is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PINCTRL is not set
+# CONFIG_PINCTRL_BROXTON is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PM_ADVANCED_DEBUG is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_TEST_SUSPEND is not set
+# CONFIG_PM_TRACE_RTC is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_POWER7_CPU is not set
+# CONFIG_POWER8_CPU is not set
+# CONFIG_POWER9_CPU is not set
+# CONFIG_POWERCAP is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_GPIO_RESTART is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_RESTART is not set
+# CONFIG_POWER_RESET_SYSCON is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPC_4K_PAGES is not set
+# CONFIG_PPC_BOOK3E_64 is not set
+# CONFIG_PPC_EARLY_DEBUG is not set
+# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set
+# CONFIG_PPC_FAST_ENDIAN_SWITCH is not set
+# CONFIG_PPC_IRQ_SOFT_MASK_DEBUG is not set
+# CONFIG_PPC_MEMTRACE is not set
+# CONFIG_PPC_PTDUMP is not set
+# CONFIG_PPC_QUEUED_SPINLOCKS is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_NONE is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROTECTED_VIRTUALIZATION_GUEST is not set
+# CONFIG_PROVE_LOCKING is not set
+# CONFIG_PROVE_RCU is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM_FSL_FTM is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_HIDMA is not set
+# CONFIG_QCOM_HIDMA_MGMT is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLA3XXX is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QORIQ_THERMAL is not set
+# CONFIG_QRTR is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_QUEUED_LOCK_STAT is not set
+# CONFIG_QUOTA_DEBUG is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RANDOM32_SELFTEST is not set
+# CONFIG_RANDOMIZE_BASE is not set
+# CONFIG_RAPIDIO is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TORTURE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RC_LOOPBACK is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REFCOUNT_FULL is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_RELOCATABLE_TEST is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RESET_CONTROLLER is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RFKILL_GPIO is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_ABB5ZES3 is not set
+# CONFIG_RTC_DRV_ABX80X is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS1374_WDT is not set
+# CONFIG_RTC_DRV_DS1685_FAMILY is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_HYM8563 is not set
+# CONFIG_RTC_DRV_ISL12026 is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_PCF2127 is not set
+# CONFIG_RTC_DRV_PCF85063 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_R7301 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_RX8010 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_SNVS is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_DRV_ZYNQMP is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTC_SYSTOHC is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTLWIFI_DEBUG is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCHED_MC is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7314 is not set
+# CONFIG_SENSORS_ADC128D818 is not set
+# CONFIG_SENSORS_ADCXX is not set
+# CONFIG_SENSORS_ADS7871 is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_DELL_SMM is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G762 is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_I5K_AMB is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_LM70 is not set
+# CONFIG_SENSORS_LTC2945 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC3815 is not set
+# CONFIG_SENSORS_LTC4222 is not set
+# CONFIG_SENSORS_LTC4260 is not set
+# CONFIG_SENSORS_MAX1111 is not set
+# CONFIG_SENSORS_MAX20751 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX31790 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT7802 is not set
+# CONFIG_SENSORS_NCT7904 is not set
+# CONFIG_SENSORS_POWR1220 is not set
+# CONFIG_SENSORS_PWM_FAN is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SHTC1 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_TC74 is not set
+# CONFIG_SENSORS_TMP103 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TPS40422 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_XGENE is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_DW is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_8250_RT288X is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SERIO_XILINX_XPS_PS2 is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SGI_IOC4 is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
+# CONFIG_SIMPLE_PM_BUS is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMC is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_HDA_INTEL is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PCM_XRUN_DEBUG is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8326 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_AMD_REMBRANDT is not set
+# CONFIG_SND_SOC_SOF_AMD_TOPLEVEL is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_I2C is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_VERBOSE_PRINTK is not set
+# CONFIG_SND_XEN_FRONTEND is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SONY_FF is not set
+# CONFIG_SOUNDWIRE is not set
+# CONFIG_SOUNDWIRE_AMD is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI is not set
+# CONFIG_SPI_DEBUG is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_LZ4 is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TCG_ATMEL is not set
+# CONFIG_TCG_TIS_SPI is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_STRING_HELPERS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_BANG_BANG is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THERMAL_WRITABLE_TRIPS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_THUNDER_NIC_BGX is not set
+# CONFIG_THUNDER_NIC_PF is not set
+# CONFIG_THUNDER_NIC_RGX is not set
+# CONFIG_THUNDER_NIC_VF is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UBSAN is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UDBG_RTAS_CONSOLE is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHAOSKEY is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHCI_HCD_PLATFORM is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LED_TRIG is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9700 is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_SIMPLE is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_STORAGE_ISD200 is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_ULPI_BUS is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_DBGCAP is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_XHCI_PLATFORM is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFIO_MDEV is not set
+# CONFIG_VFIO_NOIOMMU is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set
+# CONFIG_VGA_SWITCHEROO is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VMXNET3 is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WDAT_WDT is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WINDFARM is not set
+# CONFIG_WIRELESS is not set
+# CONFIG_WLAN is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WQ_WATCHDOG is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XFS_WARN is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XMON_DEFAULT is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_6LOWPAN=m
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_842_DECOMPRESS=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALIM7101_WDT=m
+CONFIG_ALTERA_STAPL=m
+CONFIG_ALTIVEC=y
+CONFIG_ALX=m
+CONFIG_AMD_PHY=m
+CONFIG_ANON_INODES=y
+CONFIG_APDS9802ALS=m
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y
+CONFIG_ARCH_HAS_KEXEC_PURGATORY=y
+CONFIG_ARCH_HAS_MEM_ENCRYPT=y
+CONFIG_ARCH_MEMORY_PROBE=y
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_AT803X_PHY=m
+CONFIG_ATA=m
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=m
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATL2=m
+CONFIG_ATM=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
+CONFIG_AUDIT=y
+CONFIG_AUDITSYSCALL=y
+CONFIG_AUDIT_TREE=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BACKLIGHT_PWM=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCM87XX_PHY=m
+CONFIG_BCMA=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BE2ISCSI=m
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_MISC=m
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_BLK_DEV_LOOP=m
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NULL_BLK=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_RSXX=m
+CONFIG_BLK_DEV_SD=m
+CONFIG_BLK_DEV_SR=m
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOTX_TEXT=y
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_LSM=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRIDGE=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BROADCOM_PHY=m
+CONFIG_BSD_DISKLABEL=y
+CONFIG_BSD_PROCESS_ACCT=y
+CONFIG_BSD_PROCESS_ACCT_V3=y
+CONFIG_BT=m
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG_ON_DATA_CORRUPTION=y
+CONFIG_BUILD_BIN2C=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CB710_CORE=m
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
+CONFIG_CDROM_PKTCDVD=m
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
+CONFIG_CGROUPS=y
+CONFIG_CGROUP_BPF=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHARGER_SMB347=m
+CONFIG_CHECKPOINT_RESTORE=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CHR_DEV_SCH=m
+CONFIG_CHR_DEV_SG=m
+CONFIG_CHR_DEV_ST=m
+CONFIG_CICADA_PHY=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CMA=y
+CONFIG_CMA_AREAS=7
+CONFIG_CMM=y
+CONFIG_CNIC=m
+CONFIG_COMPACTION=y
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONNECTOR=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=m
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_CPUSETS=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IDLE=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CPU_LITTLE_ENDIAN=y
+CONFIG_CRAMFS=m
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=m
+CONFIG_CRC8=m
+CONFIG_CRC_CCITT=y
+CONFIG_CRC_ITU_T=m
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_842=m
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=m
+CONFIG_CRYPTO_CHACHA20POLY1305=m
+CONFIG_CRYPTO_CMAC=m
+CONFIG_CRYPTO_CRC32=m
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES=m
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_NX=y
+CONFIG_CRYPTO_DEV_NX_COMPRESS=y
+CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=y
+CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=y
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DEV_VMX=y
+CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECDH=m
+CONFIG_CRYPTO_ECHAINIV=m
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MD5=y
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_POLY1305=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA3=m
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_XTS=m
+CONFIG_CUSE=m
+CONFIG_CXL=m
+CONFIG_CXLFLASH=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_CXL_LIB=y
+CONFIG_CYCLADES=m
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DAVICOM_PHY=m
+CONFIG_DCB=y
+CONFIG_DEBUGGER=y
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_LIST=y
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DEBUG_SHIRQ=y
+CONFIG_DEBUG_STACKOVERFLOW=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+CONFIG_DETECT_HUNG_TASK=y
+CONFIG_DEVICE_PRIVATE=y
+CONFIG_DEVMEM=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DEV_PAGEMAP_OPS=y
+CONFIG_DE_AOC=y
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMADEVICES=y
+CONFIG_DMATEST=m
+CONFIG_DMA_ENGINE=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNET=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83640_PHY=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DRM=m
+CONFIG_DRM_AMDGPU=m
+CONFIG_DRM_AMDGPU_USERPTR=y
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_AST=m
+CONFIG_DRM_BOCHS=m
+CONFIG_DRM_CIRRUS_QEMU=m
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_I2C_CH7006=m
+CONFIG_DRM_I2C_SIL164=m
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_LOAD_EDID_FIRMWARE=y
+CONFIG_DRM_MGAG200=m
+CONFIG_DRM_NOUVEAU=m
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_QXL=m
+CONFIG_DRM_RADEON=m
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DTL=y
+CONFIG_DUMMY=m
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_B2C2_FLEXCOP_USB=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DW_DMAC=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC=y
+CONFIG_EDAC_CPC925=m
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EEPROM_93CX6=m
+CONFIG_EEPROM_AT24=m
+CONFIG_EEPROM_LEGACY=m
+CONFIG_EEPROM_MAX6875=m
+CONFIG_EFI_PARTITION=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENCLOSURE_SERVICES=m
+CONFIG_ENCRYPTED_KEYS=y
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPIC100=m
+CONFIG_EPOLL=y
+CONFIG_ETHOC=m
+CONFIG_EVENT_TRACING=y
+CONFIG_EVM=y
+CONFIG_EVM_ATTR_FSUUID=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_FS=m
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_EXTRA_TARGETS=""
+CONFIG_FAILOVER=m
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FA_DUMP=y
+CONFIG_FB=y
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_IBM_GXT4500=y
+CONFIG_FB_MATROX=y
+CONFIG_FB_MATROX_G=y
+CONFIG_FB_NVIDIA=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_OF=y
+CONFIG_FB_RADEON=m
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_SSD1307=m
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FB_VGA16=m
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE=m
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FONT_SUPPORT=y
+CONFIG_FORCE_MAX_ZONEORDER=9
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FS_DAX=y
+CONFIG_FTRACE=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ES=m
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSE_FS=m
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENERIC_CPU=y
+CONFIG_GENEVE=m
+CONFIG_GENWQE=m
+CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=1
+CONFIG_GFS2_FS=m
+CONFIG_GFS2_FS_LOCKING_DLM=y
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIOLIB_FASTPATH_LIMIT=512
+CONFIG_GPIO_PCA953X=m
+CONFIG_GPIO_PCF857X=m
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_VIPERBOARD=m
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HARDLOCKUP_DETECTOR=y
+CONFIG_HAVE_IMA_KEXEC=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HID=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HMM=y
+CONFIG_HMM_MIRROR=y
+CONFIG_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_POWERNV=y
+CONFIG_HOTPLUG_PCI_RPA=m
+CONFIG_HOTPLUG_PCI_RPA_DLPAR=m
+CONFIG_HOTPLUG_PCI_SHPC=y
+CONFIG_HSA_AMD=y
+CONFIG_HUGETLBFS=y
+CONFIG_HVCS=m
+CONFIG_HVC_CONSOLE=y
+CONFIG_HVC_OPAL=y
+CONFIG_HVC_RTAS=y
+CONFIG_HV_PERF_CTRS=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWMON=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_POWERNV=m
+CONFIG_HW_RANDOM_PSERIES=m
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_TIMERIOMEM=m
+CONFIG_HW_RANDOM_TPM=y
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HYPERV=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_100=y
+CONFIG_I2C=y
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_ALGOPCA=m
+CONFIG_I2C_ALGOPCF=m
+CONFIG_I2C_CHARDEV=m
+CONFIG_I2C_COMPAT=y
+CONFIG_I2C_DESIGNWARE_PLATFORM=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_HELPER_AUTO=y
+CONFIG_I2C_HID=m
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MPC=m
+CONFIG_I2C_MUX=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_NFORCE2=m
+CONFIG_I2C_OPAL=y
+CONFIG_I2C_PARPORT=m
+CONFIG_I2C_PARPORT_LIGHT=m
+CONFIG_I2C_PCA_PLATFORM=m
+CONFIG_I2C_SIMTEC=m
+CONFIG_I2C_SMBUS=m
+CONFIG_I2C_STUB=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I40E_DCB=y
+CONFIG_I6300ESB_WDT=m
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_IBMVETH=m
+CONFIG_IBMVMC=m
+CONFIG_IBMVNIC=m
+CONFIG_IBM_BSR=m
+CONFIG_ICE=m
+CONFIG_ICPLUS_PHY=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IEEE802154=m
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IFCVF=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IKHEADERS=m
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_ARCH_POLICY=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_KEXEC=y
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET=y
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_BNXT_RE=m
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_ISER=m
+CONFIG_INFINIBAND_ISERT=m
+CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_SRP=m
+CONFIG_INFINIBAND_SRPT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USER_MAD=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_EVDEV=y
+CONFIG_INPUT_FF_MEMLESS=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_KEYBOARD=y
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MISC=y
+CONFIG_INPUT_MOUSE=y
+CONFIG_INPUT_MOUSEDEV=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_POLLDEV=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_PWM_BEEPER=m
+CONFIG_INPUT_SPARSEKMAP=m
+CONFIG_INPUT_TABLET=y
+CONFIG_INPUT_TOUCHSCREEN=y
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INTEGRITY=y
+CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_PLATFORM_KEYRING=y
+CONFIG_INTEGRITY_SIGNATURE=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IO_EVENT_IRQ=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_DEVICE_INTERFACE=m
+CONFIG_IPMI_HANDLER=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWERNV=m
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IRQ_ALL_CPUS=y
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_ISCSI_TARGET=m
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN=y
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISL29003=m
+CONFIG_ISL29020=m
+CONFIG_ISO9660_FS=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_JUMP_LABEL_FEATURE_CHECKS=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KARMA_PARTITION=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x0
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_ELF=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYS=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBES_ON_FTRACE=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KSM=y
+CONFIG_KUNIT=m
+CONFIG_KUNIT_ALL_TESTS=m
+CONFIG_KVM_AMD_SEV=y
+CONFIG_KVM_BOOK3S_64=m
+CONFIG_KVM_BOOK3S_64_HV=m
+CONFIG_KVM_BOOK3S_PR_POSSIBLE=y
+CONFIG_KVM_GUEST=y
+CONFIG_KVM_XICS=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LCD_CLASS_DEVICE=m
+CONFIG_LCD_PLATFORM=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_POWERNV=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBCRC32C=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOAD_PPC_KEYS=y
+CONFIG_LOCALVERSION=""
+CONFIG_LOCKD=m
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOCK_DOWN_KERNEL=y
+CONFIG_LOCK_TORTURE_TEST=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=20
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=m
+CONFIG_LPARCFG=y
+CONFIG_LSI_ET1011C_PHY=m
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_LXT_PHY=m
+CONFIG_MAC80211=m
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACB=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACINTOSH_DRIVERS=y
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAC_PARTITION=y
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MARVELL_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MD=y
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_BITBANG=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_GPIO=m
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_SUPPORT=m
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MEGARAID_SAS=m
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
+CONFIG_MEMCG=y
+CONFIG_MEMCG_SWAP=y
+CONFIG_MEMCG_SWAP_ENABLED=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK=m
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_SM501=m
+CONFIG_MFD_SM501_GPIO=y
+CONFIG_MFD_VIPERBOARD=m
+CONFIG_MFD_VX855=m
+CONFIG_MHI_BUS=m
+CONFIG_MHI_BUS_PCI_GENERIC=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICREL_PHY=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MIGRATION=y
+CONFIG_MII=m
+CONFIG_MINIX_SUBPARTITION=y
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_MISC_RTSX_PCI=m
+CONFIG_MISC_RTSX_USB=m
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCMULTI=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_I2C=m
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC=m
+CONFIG_MMC_BLOCK=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_RICOH_MMC=y
+CONFIG_MMC_SDHCI=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_SDHCI_PCI=m
+CONFIG_MMC_SDHCI_PLTFM=m
+CONFIG_MMC_TIFM_SD=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VIA_SDMMC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMU=y
+CONFIG_MODULES=y
+CONFIG_MODULE_FORCE_LOAD=y
+CONFIG_MODULE_SIG=y
+CONFIG_MODULE_SIG_ALL=y
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
+CONFIG_MODULE_SIG_SHA256=y
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MOUSE_APPLETOUCH=m
+CONFIG_MOUSE_BCM5974=m
+CONFIG_MOUSE_CYAPA=m
+CONFIG_MOUSE_ELAN_I2C=m
+CONFIG_MOUSE_ELAN_I2C_I2C=y
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_PS2=y
+CONFIG_MOUSE_PS2_ELANTECH=y
+CONFIG_MOUSE_PS2_SENTELIC=y
+CONFIG_MOUSE_SERIAL=m
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MOUSE_VSXXXAA=m
+CONFIG_MPLS=y
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPROFILE_KERNEL=y
+CONFIG_MPTCP=y
+CONFIG_MPTCP_IPV6=y
+CONFIG_MQ_IOSCHED_DEADLINE=y
+CONFIG_MQ_IOSCHED_KYBER=y
+CONFIG_MSDOS_FS=m
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MSI_BITMAP_SELFTEST=y
+CONFIG_MSPRO_BLOCK=m
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_POWERNV_FLASH=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_NATIONAL_PHY=m
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
+CONFIG_NEED_MULTIPLE_NODES=y
+CONFIG_NET=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVICES=y
+CONFIG_NETDEVSIM=m
+CONFIG_NETFILTER=y
+CONFIG_NETFILTER_ADVANCED=y
+CONFIG_NETFILTER_INGRESS=y
+CONFIG_NETFILTER_NETLINK=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
+CONFIG_NETFILTER_NETLINK_LOG=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_XTABLES=y
+CONFIG_NETFILTER_XT_CONNMARK=m
+CONFIG_NETFILTER_XT_MARK=m
+CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
+CONFIG_NETFILTER_XT_MATCH_BPF=m
+CONFIG_NETFILTER_XT_MATCH_CGROUP=m
+CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
+CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
+CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
+CONFIG_NETFILTER_XT_MATCH_CPU=m
+CONFIG_NETFILTER_XT_MATCH_DCCP=m
+CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
+CONFIG_NETFILTER_XT_MATCH_DSCP=m
+CONFIG_NETFILTER_XT_MATCH_ECN=m
+CONFIG_NETFILTER_XT_MATCH_ESP=m
+CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_HELPER=m
+CONFIG_NETFILTER_XT_MATCH_HL=m
+CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
+CONFIG_NETFILTER_XT_MATCH_IPVS=m
+CONFIG_NETFILTER_XT_MATCH_LENGTH=m
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+CONFIG_NETFILTER_XT_MATCH_MARK=m
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
+CONFIG_NETFILTER_XT_MATCH_OSF=m
+CONFIG_NETFILTER_XT_MATCH_OWNER=m
+CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
+CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
+CONFIG_NETFILTER_XT_MATCH_QUOTA=m
+CONFIG_NETFILTER_XT_MATCH_RATEEST=m
+CONFIG_NETFILTER_XT_MATCH_REALM=m
+CONFIG_NETFILTER_XT_MATCH_RECENT=m
+CONFIG_NETFILTER_XT_MATCH_SCTP=m
+CONFIG_NETFILTER_XT_MATCH_SOCKET=m
+CONFIG_NETFILTER_XT_MATCH_STATE=m
+CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
+CONFIG_NETFILTER_XT_MATCH_STRING=m
+CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
+CONFIG_NETFILTER_XT_MATCH_U32=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=m
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_FC=y
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_NSH=y
+CONFIG_NET_PACKET_ENGINE=y
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_NET_RX_BUSY_POLL=y
+CONFIG_NET_SCHED=y
+CONFIG_NET_SCH_ATM=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
+CONFIG_NET_SCH_RED=m
+CONFIG_NET_SCH_SFB=m
+CONFIG_NET_SCH_SFQ=m
+CONFIG_NET_SCH_TBF=m
+CONFIG_NET_SCH_TEQL=m
+CONFIG_NET_SWITCHDEV=y
+CONFIG_NET_TC_SKB_EXT=y
+CONFIG_NET_TEAM=m
+CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
+CONFIG_NET_TEAM_MODE_LOADBALANCE=m
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
+CONFIG_NET_VENDOR_AMAZON=y
+CONFIG_NET_VENDOR_AQUANTIA=y
+CONFIG_NET_VENDOR_ATHEROS=y
+CONFIG_NET_VENDOR_BROCADE=y
+CONFIG_NET_VENDOR_CAVIUM=y
+CONFIG_NET_VENDOR_CHELSIO=y
+CONFIG_NET_VENDOR_CISCO=y
+CONFIG_NET_VENDOR_DEC=y
+CONFIG_NET_VENDOR_EMULEX=y
+CONFIG_NET_VENDOR_GOOGLE=y
+CONFIG_NET_VENDOR_IBM=y
+CONFIG_NET_VENDOR_INTEL=y
+CONFIG_NET_VENDOR_MICROSOFT=y
+CONFIG_NET_VENDOR_MYRI=y
+CONFIG_NET_VENDOR_NETRONOME=y
+CONFIG_NET_VENDOR_OKI=y
+CONFIG_NET_VENDOR_PENSANDO=y
+CONFIG_NET_VENDOR_QLOGIC=y
+CONFIG_NET_VENDOR_REALTEK=y
+CONFIG_NET_VENDOR_ROCKER=y
+CONFIG_NET_VENDOR_SOLARFLARE=y
+CONFIG_NET_VRF=m
+CONFIG_NEW_LEDS=y
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
+CONFIG_NFSD=m
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
+CONFIG_NFSD_V3=y
+CONFIG_NFSD_V3_ACL=y
+CONFIG_NFSD_V4=y
+CONFIG_NFSD_V4_SECURITY_LABEL=y
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
+CONFIG_NLS=y
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
+CONFIG_NLS_CODEPAGE_437=y
+CONFIG_NLS_CODEPAGE_737=m
+CONFIG_NLS_CODEPAGE_775=m
+CONFIG_NLS_CODEPAGE_850=m
+CONFIG_NLS_CODEPAGE_852=m
+CONFIG_NLS_CODEPAGE_855=m
+CONFIG_NLS_CODEPAGE_857=m
+CONFIG_NLS_CODEPAGE_860=m
+CONFIG_NLS_CODEPAGE_861=m
+CONFIG_NLS_CODEPAGE_862=m
+CONFIG_NLS_CODEPAGE_863=m
+CONFIG_NLS_CODEPAGE_864=m
+CONFIG_NLS_CODEPAGE_865=m
+CONFIG_NLS_CODEPAGE_866=m
+CONFIG_NLS_CODEPAGE_869=m
+CONFIG_NLS_CODEPAGE_874=m
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
+CONFIG_NLS_ISO8859_1=m
+CONFIG_NLS_ISO8859_2=m
+CONFIG_NLS_ISO8859_3=m
+CONFIG_NLS_ISO8859_4=m
+CONFIG_NLS_ISO8859_5=m
+CONFIG_NLS_ISO8859_6=m
+CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
+CONFIG_NLS_ISO8859_9=m
+CONFIG_NLS_KOI8_R=m
+CONFIG_NLS_KOI8_U=m
+CONFIG_NLS_MAC_CELTIC=m
+CONFIG_NLS_MAC_CENTEURO=m
+CONFIG_NLS_MAC_CROATIAN=m
+CONFIG_NLS_MAC_CYRILLIC=m
+CONFIG_NLS_MAC_GAELIC=m
+CONFIG_NLS_MAC_GREEK=m
+CONFIG_NLS_MAC_ICELAND=m
+CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
+CONFIG_NLS_MAC_ROMANIAN=m
+CONFIG_NLS_MAC_TURKISH=m
+CONFIG_NLS_UTF8=m
+CONFIG_NODES_SHIFT=8
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NOZOMI=m
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_FULL=y
+CONFIG_NR_CPUS=2048
+CONFIG_NR_IRQS=512
+CONFIG_NUMA=y
+CONFIG_NUMA_BALANCING=y
+CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_FC=m
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_N_GSM=m
+CONFIG_N_HDLC=m
+CONFIG_OCXL=m
+CONFIG_OF=y
+CONFIG_OF_PMEM=m
+CONFIG_OPAL_CORE=y
+CONFIG_OPAL_PRD=m
+CONFIG_OPENVSWITCH=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPENVSWITCH_GRE=m
+CONFIG_OPENVSWITCH_VXLAN=m
+CONFIG_OPROFILE=m
+CONFIG_OPTIMIZE_INLINING=y
+CONFIG_OSF_PARTITION=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_OVERLAY_FS=m
+CONFIG_PACKET=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PAGE_EXTENSION=y
+CONFIG_PAGE_OWNER=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANIC_ON_OOPS=y
+CONFIG_PANIC_TIMEOUT=180
+CONFIG_PAPR_SCM=m
+CONFIG_PARPORT=m
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_PC=m
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PATA_OF_PLATFORM=m
+CONFIG_PATA_PLATFORM=m
+CONFIG_PCCARD=y
+CONFIG_PCI=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIEPORTBUS=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCIPCWATCHDOG=m
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_PASID=y
+CONFIG_PCI_PRI=y
+CONFIG_PCI_STUB=y
+CONFIG_PERF_EVENTS=y
+CONFIG_PERSISTENT_KEYRINGS=y
+CONFIG_PHYLIB=y
+CONFIG_PID_NS=y
+CONFIG_PM=y
+CONFIG_PMBUS=m
+CONFIG_PMU_SYSFS=y
+CONFIG_PM_DEBUG=y
+CONFIG_PM_STD_PARTITION=""
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_CPUIDLE=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_RESET_GPIO=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPC64=y
+CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y
+CONFIG_PPC=y
+CONFIG_PPC_64K_PAGES=y
+CONFIG_PPC_BOOK3S_64=y
+CONFIG_PPC_DENORMALISATION=y
+CONFIG_PPC_DISABLE_WERROR=y
+CONFIG_PPC_DT_CPU_FTRS=y
+CONFIG_PPC_EMULATED_STATS=y
+CONFIG_PPC_MEM_KEYS=y
+CONFIG_PPC_OF_BOOT_TRAMPOLINE=y
+CONFIG_PPC_POWERNV=y
+CONFIG_PPC_PSERIES=y
+CONFIG_PPC_RADIX_MMU=y
+CONFIG_PPC_RADIX_MMU_DEFAULT=y
+CONFIG_PPC_RTAS_FILTER=y
+CONFIG_PPC_SECURE_BOOT=y
+CONFIG_PPC_SECVAR_SYSFS=y
+CONFIG_PPC_SMLPAR=y
+CONFIG_PPC_SPLPAR=y
+CONFIG_PPC_SUBPAGE_PROT=y
+CONFIG_PPC_SVM=y
+CONFIG_PPC_TRANSACTIONAL_MEM=y
+CONFIG_PPC_UV=y
+CONFIG_PPC_VAS=y
+CONFIG_PPC_XIVE=y
+CONFIG_PPC_XIVE_NATIVE=y
+CONFIG_PPDEV=m
+CONFIG_PPP=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREEMPT_VOLUNTARY=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PRINT_STACK_DEPTH=64
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROFILING=y
+CONFIG_PSAMPLE=m
+CONFIG_PSERIES_CPUIDLE=y
+CONFIG_PSERIES_ENERGY=m
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PSTORE_RAM=m
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_PWM=y
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QFMT_V2=y
+CONFIG_QSEMI_PHY=m
+CONFIG_QUOTA=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RAID_ATTRS=m
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOM_TRUST_CPU=y
+CONFIG_RAS=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_CORE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_REALTEK_PHY=m
+CONFIG_RELAY=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL=m
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_CORE=m
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTAS_FLASH=y
+CONFIG_RTAS_PROC=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_DS3232_HWMON=y
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_GENERIC=y
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_OPAL=y
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTC_NVMEM=y
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_SAMPLES=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SATA_AHCI=m
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SCANLOG=y
+CONFIG_SCF_TORTURE_TEST=m
+CONFIG_SCHEDSTATS=y
+CONFIG_SCHED_AUTOGROUP=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCOM_DEBUGFS=y
+CONFIG_SCSI=y
+CONFIG_SCSI_AACRAID=m
+CONFIG_SCSI_BNX2X_FCOE=m
+CONFIG_SCSI_BNX2_ISCSI=m
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_CXGB4_ISCSI=m
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=m
+CONFIG_SCSI_FC_ATTRS=m
+CONFIG_SCSI_HPSA=m
+CONFIG_SCSI_IBMVFC=m
+CONFIG_SCSI_IBMVFC_TRACE=y
+CONFIG_SCSI_IBMVSCSI=m
+CONFIG_SCSI_IBMVSCSIS=m
+CONFIG_SCSI_IPR=m
+CONFIG_SCSI_IPR_DUMP=y
+CONFIG_SCSI_IPR_TRACE=y
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_LPFC=m
+CONFIG_SCSI_MPI3MR=m
+CONFIG_SCSI_MPT2SAS=m
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS=m
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_QLA_FC=m
+CONFIG_SCSI_QLA_ISCSI=m
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SMARTPQI=m
+CONFIG_SCSI_SPI_ATTRS=m
+CONFIG_SCSI_SRP_ATTRS=m
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SDIO_UART=m
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
+CONFIG_SECURITY=y
+CONFIG_SECURITYFS=y
+CONFIG_SECURITY_INFINIBAND=y
+CONFIG_SECURITY_NETWORK=y
+CONFIG_SECURITY_NETWORK_XFRM=y
+CONFIG_SECURITY_PATH=y
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
+CONFIG_SECURITY_YAMA=y
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_AD7414=m
+CONFIG_SENSORS_AD7418=m
+CONFIG_SENSORS_ADM1021=m
+CONFIG_SENSORS_ADM1025=m
+CONFIG_SENSORS_ADM1026=m
+CONFIG_SENSORS_ADM1029=m
+CONFIG_SENSORS_ADM1031=m
+CONFIG_SENSORS_ADM1275=m
+CONFIG_SENSORS_ADM9240=m
+CONFIG_SENSORS_ADS1015=m
+CONFIG_SENSORS_ADS7828=m
+CONFIG_SENSORS_ADT7310=m
+CONFIG_SENSORS_ADT7410=m
+CONFIG_SENSORS_ADT7411=m
+CONFIG_SENSORS_ADT7462=m
+CONFIG_SENSORS_ADT7470=m
+CONFIG_SENSORS_ADT7475=m
+CONFIG_SENSORS_AMC6821=m
+CONFIG_SENSORS_APDS990X=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ASC7621=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_ATXP1=m
+CONFIG_SENSORS_BH1770=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_DME1737=m
+CONFIG_SENSORS_DS1621=m
+CONFIG_SENSORS_DS620=m
+CONFIG_SENSORS_EMC1403=m
+CONFIG_SENSORS_EMC6W201=m
+CONFIG_SENSORS_F71805F=m
+CONFIG_SENSORS_F71882FG=m
+CONFIG_SENSORS_F75375S=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G760A=m
+CONFIG_SENSORS_GL518SM=m
+CONFIG_SENSORS_GL520SM=m
+CONFIG_SENSORS_IBMAEM=m
+CONFIG_SENSORS_IBMPEX=m
+CONFIG_SENSORS_IBMPOWERNV=m
+CONFIG_SENSORS_INA209=m
+CONFIG_SENSORS_INA2XX=m
+CONFIG_SENSORS_IT87=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LINEAGE=m
+CONFIG_SENSORS_LIS3_I2C=m
+CONFIG_SENSORS_LM25066=m
+CONFIG_SENSORS_LM63=m
+CONFIG_SENSORS_LM73=m
+CONFIG_SENSORS_LM75=m
+CONFIG_SENSORS_LM77=m
+CONFIG_SENSORS_LM78=m
+CONFIG_SENSORS_LM80=m
+CONFIG_SENSORS_LM83=m
+CONFIG_SENSORS_LM85=m
+CONFIG_SENSORS_LM87=m
+CONFIG_SENSORS_LM90=m
+CONFIG_SENSORS_LM92=m
+CONFIG_SENSORS_LM93=m
+CONFIG_SENSORS_LM95234=m
+CONFIG_SENSORS_LM95241=m
+CONFIG_SENSORS_LM95245=m
+CONFIG_SENSORS_LTC2978=m
+CONFIG_SENSORS_LTC4151=m
+CONFIG_SENSORS_LTC4215=m
+CONFIG_SENSORS_LTC4245=m
+CONFIG_SENSORS_LTC4261=m
+CONFIG_SENSORS_MAX16064=m
+CONFIG_SENSORS_MAX16065=m
+CONFIG_SENSORS_MAX1619=m
+CONFIG_SENSORS_MAX1668=m
+CONFIG_SENSORS_MAX197=m
+CONFIG_SENSORS_MAX34440=m
+CONFIG_SENSORS_MAX6639=m
+CONFIG_SENSORS_MAX6642=m
+CONFIG_SENSORS_MAX6650=m
+CONFIG_SENSORS_MAX6697=m
+CONFIG_SENSORS_MAX8688=m
+CONFIG_SENSORS_MCP3021=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT6775=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_PC87360=m
+CONFIG_SENSORS_PC87427=m
+CONFIG_SENSORS_PCF8591=m
+CONFIG_SENSORS_PMBUS=m
+CONFIG_SENSORS_SCH5627=m
+CONFIG_SENSORS_SCH5636=m
+CONFIG_SENSORS_SHT15=m
+CONFIG_SENSORS_SHT21=m
+CONFIG_SENSORS_SIS5595=m
+CONFIG_SENSORS_SMSC47B397=m
+CONFIG_SENSORS_SMSC47M192=m
+CONFIG_SENSORS_SMSC47M1=m
+CONFIG_SENSORS_THMC50=m
+CONFIG_SENSORS_TMP102=m
+CONFIG_SENSORS_TMP401=m
+CONFIG_SENSORS_TMP421=m
+CONFIG_SENSORS_TSL2550=m
+CONFIG_SENSORS_UCD9000=m
+CONFIG_SENSORS_UCD9200=m
+CONFIG_SENSORS_VIA686A=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_VT1211=m
+CONFIG_SENSORS_VT8231=m
+CONFIG_SENSORS_W83627EHF=m
+CONFIG_SENSORS_W83627HF=m
+CONFIG_SENSORS_W83781D=m
+CONFIG_SENSORS_W83791D=m
+CONFIG_SENSORS_W83792D=m
+CONFIG_SENSORS_W83793=m
+CONFIG_SENSORS_W83795=m
+CONFIG_SENSORS_W83L785TS=m
+CONFIG_SENSORS_W83L786NG=m
+CONFIG_SENSORS_ZL6100=m
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=32
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_ARC=m
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=y
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_ICOM=m
+CONFIG_SERIAL_JSM=m
+CONFIG_SERIAL_NONSTANDARD=y
+CONFIG_SERIAL_OF_PLATFORM=m
+CONFIG_SERIAL_UARTLITE=m
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO=y
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SFC=m
+CONFIG_SFC_MCDI_LOGGING=y
+CONFIG_SFC_MCDI_MON=y
+CONFIG_SFC_MTD=y
+CONFIG_SFC_SIENA=m
+CONFIG_SFC_SIENA_MCDI_LOGGING=y
+CONFIG_SFC_SIENA_MCDI_MON=y
+CONFIG_SFC_SIENA_MTD=y
+CONFIG_SFC_SIENA_SRIOV=y
+CONFIG_SFC_SRIOV=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SGI_PARTITION=y
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
+CONFIG_SIGNATURE=y
+CONFIG_SIMPLE_GPIO=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP=m
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMP=y
+CONFIG_SMSC9420=m
+CONFIG_SMSC_PHY=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=512
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_PPC=y
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SOLARIS_X86_PARTITION=y
+CONFIG_SOUND=m
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SPAPR_TCE_IOMMU=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACK_TRACER=y
+CONFIG_STANDALONE=y
+CONFIG_STE10XP=m
+CONFIG_STRICT_DEVMEM=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUN_PARTITION=y
+CONFIG_SUSPEND=y
+CONFIG_SUSPEND_FREEZER=y
+CONFIG_SWAP=y
+CONFIG_SWIOTLB=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNCLINKMP=m
+CONFIG_SYNCLINK_GT=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSTEM_BLACKLIST_HASH_LIST=""
+CONFIG_SYSTEM_BLACKLIST_KEYRING=y
+CONFIG_SYSTEM_EXTRA_CERTIFICATE=y
+CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_SYSVIPC=y
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=m
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_CRB=y
+CONFIG_TCG_IBMVTPM=y
+CONFIG_TCG_INFINEON=m
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TIS_I2C_ATMEL=y
+CONFIG_TCG_TIS_I2C_INFINEON=y
+CONFIG_TCG_TIS_I2C_NUVOTON=y
+CONFIG_TCG_TIS_ST33ZP24_I2C=m
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=m
+CONFIG_TCM_IBLOCK=m
+CONFIG_TCM_PSCSI=m
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_LIVEPATCH=m
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL=y
+CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
+CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_THERMAL_OF=y
+CONFIG_TIFM_7XX1=m
+CONFIG_TIFM_CORE=m
+CONFIG_TIGON3=m
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TORTURE_TEST=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRANSPARENT_HUGEPAGE=y
+CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=y
+CONFIG_TUN=m
+CONFIG_TUN_VNET_CROSS_LE=y
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UDF_FS=m
+CONFIG_UHID=m
+CONFIG_UIO=m
+CONFIG_UIO_AEC=m
+CONFIG_UIO_CIF=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PCI_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UIO_SERCOS3=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX=y
+CONFIG_UNIXWARE_DISKLABEL=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_HCD_PPC_OF=y
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_OHCI_HCD_PPC_OF=y
+CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
+CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_SPEEDTOUCH=m
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_SUPPORT=y
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UWB=m
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_UWB_WHCI=m
+CONFIG_VDPA=m
+CONFIG_VDPA_SIM=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFAT_FS=m
+CONFIG_VFIO=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_PCI=m
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VGA_CONSOLE=y
+CONFIG_VHOST_CROSS_ENDIAN_LEGACY=y
+CONFIG_VHOST_NET=m
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI=y
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VDPA=m
+CONFIG_VIRTIO_VSOCKETS=m
+CONFIG_VIRTUALIZATION=y
+CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VITESSE_PHY=m
+CONFIG_VLAN_8021Q=m
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VSX=y
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_RTAS=m
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WDTPCI=m
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XILINX_GMII2RGMII=m
+CONFIG_XMON=y
+CONFIG_XMON_DISASSEMBLY=y
+CONFIG_XZ_DEC=y
+CONFIG_XZ_DEC_POWERPC=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZBUD=y
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZPOOL=y
+CONFIG_ZRAM=m
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
+CONFIG_ZSWAP=y
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x-debug.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x-debug.config
new file mode 100644
index 0000000..4b0d60c
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x-debug.config
@@ -0,0 +1,5325 @@
+# s390
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALIM7101_WDT is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_STAPL is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMD_PHY is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9802ALS is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCNET is not set
+# CONFIG_AS3935 is not set
+# CONFIG_AT803X_PHY is not set
+# CONFIG_ATA is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_CLASS_DEVICE is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCM87XX_PHY is not set
+# CONFIG_BCMA is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BE2ISCSI is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_NULL_BLK_FAULT_INJECTION is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_RSXX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_XPRAM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
+# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BROADCOM_PHY is not set
+# CONFIG_BT is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CAN is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+# CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHARGER_SMB347 is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHROME_PLATFORMS is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CICADA_PHY is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA_DEBUG is not set
+# CONFIG_CMA_DEBUGFS is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CNIC is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_842 is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
+# CONFIG_CRYPTO_DEV_QAT_C62X is not set
+# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_DH is not set
+# CONFIG_CRYPTO_ECDH is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MCRYPTD is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYCLADES is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DAVICOM_PHY is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_KOBJECT_RELEASE is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM_PGFLAGS is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_VM_VMACACHE is not set
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DEVPORT is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMADEVICES is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DNET is not set
+# CONFIG_DP83640_PHY is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU is not set
+# CONFIG_DRM_AMDGPU_CIK is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMDGPU_USERPTR is not set
+# CONFIG_DRM_AMD_DC_DCN1_0 is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_AST is not set
+# CONFIG_DRM_BOCHS is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_CIRRUS_QEMU is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_HIBMC is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_CH7006 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I2C_SIL164 is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MGAG200 is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NOUVEAU is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_QXL is not set
+# CONFIG_DRM_RADEON is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DW_DMAC is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_E1000 is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EDAC is not set
+# CONFIG_EDAC_BLUEFIELD is not set
+# CONFIG_EEPROM_93CX6 is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT24 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_EE1004 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EEPROM_LEGACY is not set
+# CONFIG_EEPROM_MAX6875 is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_ETHOC is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXPOLINE_FULL is not set
+# CONFIG_EXPOLINE_OFF is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXTCON is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAIL_FUTEX is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IBM_GXT4500 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_MATROX_G is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_MODE_HELPERS is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIMPLE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VGA16 is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FMC is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FRAME_POINTER is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSI is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FUNCTION_PROFILER is not set
+# CONFIG_FUSE_DAX is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENERIC_PHY is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPIOLIB is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_GENERIC_PLATFORM is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MLXBF2 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCA953X is not set
+# CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_WATCHDOG is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HARDLOCKUP_DETECTOR is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HID is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set
+# CONFIG_HID_SENSOR_HUB is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HOTPLUG_PCI_PCIE is not set
+# CONFIG_HOTPLUG_PCI_SHPC is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HP_ILO is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HWMON is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HW_RANDOM_TIMERIOMEM is not set
+# CONFIG_HW_RANDOM_TPM is not set
+# CONFIG_HX711 is not set
+# CONFIG_HYPERV_BALLOON is not set
+# CONFIG_HZ_1000 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C_ALGOPCA is not set
+# CONFIG_I2C_ALGOPCF is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_AMD756 is not set
+# CONFIG_I2C_AMD756_S4882 is not set
+# CONFIG_I2C_AMD8111 is not set
+# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_CHARDEV is not set
+# CONFIG_I2C_COMPAT is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_GPIO is not set
+# CONFIG_I2C_HELPER_AUTO is not set
+# CONFIG_I2C_HID is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_I801 is not set
+# CONFIG_I2C_ISCH is not set
+# CONFIG_I2C_MLXBF is not set
+# CONFIG_I2C_MUX is not set
+# CONFIG_I2C_MUX_GPIO is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_PCA9541 is not set
+# CONFIG_I2C_MUX_PCA954x is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NFORCE2 is not set
+# CONFIG_I2C_NFORCE2_S4985 is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_PARPORT is not set
+# CONFIG_I2C_PARPORT_LIGHT is not set
+# CONFIG_I2C_PCA_PLATFORM is not set
+# CONFIG_I2C_PIIX4 is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SIMTEC is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SIS96X is not set
+# CONFIG_I2C_SLAVE is not set
+# CONFIG_I2C_SMBUS is not set
+# CONFIG_I2C_STUB is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_VIA is not set
+# CONFIG_I2C_VIAPRO is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_I6300ESB_WDT is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_ICPLUS_PHY is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IIO is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INFINIBAND_BNXT_RE is not set
+# CONFIG_INFINIBAND_EFA is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HFI1 is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_ISER is not set
+# CONFIG_INFINIBAND_ISERT is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_ON_DEMAND_PAGING is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFINIBAND_SRP is not set
+# CONFIG_INFINIBAND_SRPT is not set
+# CONFIG_INFINIBAND_USER_MAD is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_FF_MEMLESS is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KEYBOARD is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MISC is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSE is not set
+# CONFIG_INPUT_MOUSEDEV is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_POLLDEV is not set
+# CONFIG_INPUT_PWM_BEEPER is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INPUT_TABLET is not set
+# CONFIG_INPUT_TOUCHSCREEN is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SVM is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTEL_TH is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPMI_DEVICE_INTERFACE is not set
+# CONFIG_IPMI_HANDLER is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29003 is not set
+# CONFIG_ISL29020 is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_KASAN_EXTRA is not set
+# CONFIG_KASAN_OUTLINE is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
+# CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZ4 is not set
+# CONFIG_KERNEL_LZMA is not set
+# CONFIG_KERNEL_LZO is not set
+# CONFIG_KERNEL_NOBP is not set
+# CONFIG_KERNEL_UNCOMPRESSED is not set
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KVM_S390_UCONTROL is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_CLASS_DEVICE is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LCD_PLATFORM is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOAD_UEFI_KEYS is not set
+# CONFIG_LOCALVERSION_AUTO is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LPC_ICH is not set
+# CONFIG_LPC_SCH is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LSI_ET1011C_PHY is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_LXT_PHY is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211 is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MACB is not set
+# CONFIG_MAC_PARTITION is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MAILBOX is not set
+# CONFIG_MAILBOX_TEST is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MARCH_Z10 is not set
+# CONFIG_MARCH_Z14 is not set
+# CONFIG_MARCH_Z15 is not set
+# CONFIG_MARCH_Z196 is not set
+# CONFIG_MARCH_Z900 is not set
+# CONFIG_MARCH_Z990 is not set
+# CONFIG_MARCH_Z9_109 is not set
+# CONFIG_MARCH_ZEC12 is not set
+# CONFIG_MARVELL_PHY is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MDIO_BITBANG is not set
+# CONFIG_MDIO_GPIO is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEDIA_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEGARAID_SAS is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SM501 is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_SYSCON is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MICREL_PHY is not set
+# CONFIG_MII is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MISC_RTSX_PCI is not set
+# CONFIG_MISDN_HFCMULTI is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MLXBF_BOOTCTL is not set
+# CONFIG_MLXBF_GIGE is not set
+# CONFIG_MLXBF_PMC is not set
+# CONFIG_MLXBF_TMFIFO is not set
+# CONFIG_MLXSW_I2C is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_BLOCK is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_MTK is not set
+# CONFIG_MMC_RICOH_MMC is not set
+# CONFIG_MMC_SDHCI is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_PCI is not set
+# CONFIG_MMC_SDHCI_PLTFM is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_TIFM_SD is not set
+# CONFIG_MMC_TOSHIBA_PCI is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_VIA_SDMMC is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_ELAN_I2C is not set
+# CONFIG_MOUSE_ELAN_I2C_I2C is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MSPRO_BLOCK is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_NATIONAL_PHY is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NETIUCV is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FC is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_PACKET_ENGINE is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_AMD is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_ATHEROS is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_BROADCOM is not set
+# CONFIG_NET_VENDOR_BROCADE is not set
+# CONFIG_NET_VENDOR_CHELSIO is not set
+# CONFIG_NET_VENDOR_CISCO is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_DEC is not set
+# CONFIG_NET_VENDOR_DLINK is not set
+# CONFIG_NET_VENDOR_EMULEX is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_HUAWEI is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_INTEL is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_MYRI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_OKI is not set
+# CONFIG_NET_VENDOR_QLOGIC is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_REALTEK is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_STMICRO is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NEW_LEDS is not set
+# CONFIG_NFC is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NOZOMI is not set
+# CONFIG_NO_HZ_FULL is not set
+# CONFIG_NTB is not set
+# CONFIG_NTB_AMD is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_INTEL is not set
+# CONFIG_NTB_PERF is not set
+# CONFIG_NTB_PINGPONG is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTB_TOOL is not set
+# CONFIG_NTB_TRANSPORT is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NUMA_BALANCING is not set
+# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set
+# CONFIG_NUMA_EMU is not set
+# CONFIG_NVM is not set
+# CONFIG_NVRAM is not set
+# CONFIG_NVSW_SN2201 is not set
+# CONFIG_N_HDLC is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF is not set
+# CONFIG_OF_OVERLAY is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OSF_PARTITION is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANIC_ON_OOPS is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIEPORTBUS is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCIPCWATCHDOG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_HOST_GENERIC is not set
+# CONFIG_PCI_PASID is not set
+# CONFIG_PCI_PF_STUB is not set
+# CONFIG_PCI_PRI is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_STUB is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PERCPU_TEST is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHYLIB is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PINCTRL is not set
+# CONFIG_PINCTRL_BROXTON is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_POWERCAP is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_GPIO_RESTART is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_RESTART is not set
+# CONFIG_POWER_RESET_SYSCON is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPP is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_VOLUNTARY is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PSTORE_RAM is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QRTR is not set
+# CONFIG_QSEMI_PHY is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RAS is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RC_CORE is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REALTEK_PHY is not set
+# CONFIG_REFCOUNT_FULL is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RESET_CONTROLLER is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RFKILL_GPIO is not set
+# CONFIG_RH_KABI_SIZE_ALIGN_CHECKS is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_CORE is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS3232_HWMON is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTC_NVMEM is not set
+# CONFIG_RTC_SYSTOHC is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_S390_PTDUMP is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCLP_OFB is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_AACRAID is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BNX2X_FCOE is not set
+# CONFIG_SCSI_BNX2_ISCSI is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_CXGB4_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPSA is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_LPFC is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MPI3MR is not set
+# CONFIG_SCSI_MPT2SAS is not set
+# CONFIG_SCSI_MPT3SAS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLA_FC is not set
+# CONFIG_SCSI_QLA_ISCSI is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SMARTPQI is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDIO_UART is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7314 is not set
+# CONFIG_SENSORS_ADC128D818 is not set
+# CONFIG_SENSORS_ADCXX is not set
+# CONFIG_SENSORS_ADS7871 is not set
+# CONFIG_SENSORS_APDS990X is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_BH1770 is not set
+# CONFIG_SENSORS_DELL_SMM is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G762 is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_I5K_AMB is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_LIS3LV02D is not set
+# CONFIG_SENSORS_LIS3_I2C is not set
+# CONFIG_SENSORS_LM70 is not set
+# CONFIG_SENSORS_LTC2945 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC3815 is not set
+# CONFIG_SENSORS_LTC4222 is not set
+# CONFIG_SENSORS_LTC4260 is not set
+# CONFIG_SENSORS_MAX1111 is not set
+# CONFIG_SENSORS_MAX20751 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX31790 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT7802 is not set
+# CONFIG_SENSORS_NCT7904 is not set
+# CONFIG_SENSORS_POWR1220 is not set
+# CONFIG_SENSORS_PWM_FAN is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SHTC1 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_TC74 is not set
+# CONFIG_SENSORS_TMP103 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TPS40422 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2550 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_XGENE is not set
+# CONFIG_SERIAL_8250 is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_DW is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_8250_RT288X is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_NONSTANDARD is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_UARTLITE is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SFC is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SFC_SIENA is not set
+# CONFIG_SGI_IOC4 is not set
+# CONFIG_SGI_PARTITION is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMSC_PHY is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8326 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_AMD_REMBRANDT is not set
+# CONFIG_SND_SOC_SOF_AMD_TOPLEVEL is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_I2C is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_XEN_FRONTEND is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SOUND is not set
+# CONFIG_SOUNDWIRE is not set
+# CONFIG_SOUNDWIRE_AMD is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI is not set
+# CONFIG_SPI_DEBUG is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_LZ4 is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STE10XP is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STM is not set
+# CONFIG_STRICT_DEVMEM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SUN_PARTITION is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYNCLINKMP is not set
+# CONFIG_SYNCLINK_GT is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TCG_TIS_I2C_ATMEL is not set
+# CONFIG_TCG_TIS_I2C_INFINEON is not set
+# CONFIG_TCG_TIS_I2C_NUVOTON is not set
+# CONFIG_TCG_TIS_SPI is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KASAN is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_THUNDER_NIC_BGX is not set
+# CONFIG_THUNDER_NIC_PF is not set
+# CONFIG_THUNDER_NIC_RGX is not set
+# CONFIG_THUNDER_NIC_VF is not set
+# CONFIG_TIFM_7XX1 is not set
+# CONFIG_TIFM_CORE is not set
+# CONFIG_TIGON3 is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TUNE_DEFAULT is not set
+# CONFIG_TUNE_Z10 is not set
+# CONFIG_TUNE_Z13 is not set
+# CONFIG_TUNE_Z15 is not set
+# CONFIG_TUNE_Z196 is not set
+# CONFIG_TUNE_Z900 is not set
+# CONFIG_TUNE_Z990 is not set
+# CONFIG_TUNE_Z9_109 is not set
+# CONFIG_TUNE_ZEC12 is not set
+# CONFIG_TUN_VNET_CROSS_LE is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO is not set
+# CONFIG_UIO_AEC is not set
+# CONFIG_UIO_CIF is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PCI_GENERIC is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_UIO_SERCOS3 is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHAOSKEY is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHCI_HCD_PLATFORM is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LED_TRIG is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9700 is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_SIMPLE is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_SUPPORT is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_ULPI_BUS is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_DBGCAP is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_XHCI_PLATFORM is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_UWB is not set
+# CONFIG_UWB_WHCI is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFIO_NOIOMMU is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VGA_SWITCHEROO is not set
+# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VIRTIO_PCI is not set
+# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
+# CONFIG_VITESSE_PHY is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VMXNET3 is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WARN_DYNAMIC_STACK is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WDAT_WDT is not set
+# CONFIG_WDTPCI is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WQ_WATCHDOG is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZBUD is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZPOOL is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZSWAP is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_6LOWPAN=m
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_ERST_DEBUG=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_CONFIGFS=m
+CONFIG_ACPI_CUSTOM_METHOD=m
+CONFIG_ACPI_DEBUG=y
+CONFIG_ACPI_DEBUGGER=y
+CONFIG_ACPI_DEBUGGER_USER=m
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_AFIUCV=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALX=m
+CONFIG_AMIGA_PARTITION=y
+CONFIG_ANON_INODES=y
+CONFIG_APPLDATA_BASE=y
+CONFIG_APPLDATA_MEM=m
+CONFIG_APPLDATA_NET_SUM=m
+CONFIG_APPLDATA_OS=m
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ARCH_RANDOM=y
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=m
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUG=y
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH10K_TRACING=y
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATH_DEBUG=y
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATL2=m
+CONFIG_ATM=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
+CONFIG_AUDIT=y
+CONFIG_AUDITSYSCALL=y
+CONFIG_AUDIT_TREE=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_CGROUP_DEBUG=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_MISC=m
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_BLK_DEV_LOOP=m
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NULL_BLK=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_SD=m
+CONFIG_BLK_DEV_SR=m
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_LSM=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMDBG=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRCM_TRACING=y
+CONFIG_BRIDGE=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BSD_DISKLABEL=y
+CONFIG_BSD_PROCESS_ACCT=y
+CONFIG_BSD_PROCESS_ACCT_V3=y
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG_ON_DATA_CORRUPTION=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEBUG_DEVICES=y
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CB710_CORE=m
+CONFIG_CCW=y
+CONFIG_CCWGROUP=m
+CONFIG_CCW_CONSOLE=y
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_PRETTYDEBUG=y
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEBUGFS=y
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
+CONFIG_CGROUPS=y
+CONFIG_CGROUP_BPF=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_DEBUG=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHECKPOINT_RESTORE=y
+CONFIG_CHECK_STACK=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CHR_DEV_SCH=m
+CONFIG_CHR_DEV_SG=m
+CONFIG_CHR_DEV_ST=m
+CONFIG_CHSC_SCH=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CMA=y
+CONFIG_CMA_AREAS=7
+CONFIG_CMM=m
+CONFIG_CMM_IUCV=y
+CONFIG_COMPACTION=y
+CONFIG_COMPAT=y
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONNECTOR=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=m
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_CPUMASK_OFFSTACK=y
+CONFIG_CPUSETS=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CPU_ISOLATION=y
+CONFIG_CRAMFS=m
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=m
+CONFIG_CRC8=m
+CONFIG_CRC_CCITT=y
+CONFIG_CRC_ITU_T=m
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_AES_S390=m
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=m
+CONFIG_CRYPTO_CHACHA20POLY1305=m
+CONFIG_CRYPTO_CMAC=m
+CONFIG_CRYPTO_CRC32=m
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRC32_S390=y
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES=m
+CONFIG_CRYPTO_DES_S390=m
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CCP_DEBUGFS=y
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECHAINIV=m
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_GHASH_S390=m
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_LZO=m
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_PAES_S390=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_POLY1305=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA1_S390=y
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA256_S390=y
+CONFIG_CRYPTO_SHA3=m
+CONFIG_CRYPTO_SHA3_256_S390=m
+CONFIG_CRYPTO_SHA3_512_S390=m
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_SHA512_S390=m
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_XTS=m
+CONFIG_CTCM=m
+CONFIG_CUSE=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DASD=m
+CONFIG_DASD_DIAG=m
+CONFIG_DASD_ECKD=m
+CONFIG_DASD_EER=y
+CONFIG_DASD_FBA=m
+CONFIG_DASD_PROFILE=y
+CONFIG_DCB=y
+CONFIG_DCSSBLK=m
+CONFIG_DEBUG_ATOMIC_SLEEP=y
+CONFIG_DEBUG_BLK_CGROUP=y
+CONFIG_DEBUG_CREDENTIALS=y
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK=y
+CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE=40000
+CONFIG_DEBUG_LIST=y
+CONFIG_DEBUG_LOCK_ALLOC=y
+CONFIG_DEBUG_MUTEXES=y
+CONFIG_DEBUG_NOTIFIERS=y
+CONFIG_DEBUG_OBJECTS=y
+CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
+CONFIG_DEBUG_OBJECTS_FREE=y
+CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
+CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
+CONFIG_DEBUG_OBJECTS_TIMERS=y
+CONFIG_DEBUG_OBJECTS_WORK=y
+CONFIG_DEBUG_PAGEALLOC=y
+CONFIG_DEBUG_PAGE_REF=y
+CONFIG_DEBUG_PER_CPU_MAPS=y
+CONFIG_DEBUG_RT_MUTEXES=y
+CONFIG_DEBUG_RWSEMS=y
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DEBUG_SG=y
+CONFIG_DEBUG_SHIRQ=y
+CONFIG_DEBUG_SLAB=y
+CONFIG_DEBUG_SPINLOCK=y
+CONFIG_DEBUG_STACK_USAGE=y
+CONFIG_DEBUG_VM=y
+CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+CONFIG_DETECT_HUNG_TASK=y
+CONFIG_DEVMEM=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DE_AOC=y
+CONFIG_DIAG288_WATCHDOG=m
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMADEVICES_DEBUG=y
+CONFIG_DMADEVICES_VDEBUG=y
+CONFIG_DMATEST=m
+CONFIG_DMA_API_DEBUG=y
+CONFIG_DMA_API_DEBUG_SG=y
+CONFIG_DMA_ENGINE=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DRM=m
+CONFIG_DRM_AMDGPU_GART_DEBUGFS=y
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DUMMY=m
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_B2C2_FLEXCOP_USB=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EADM_SCH=m
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC_DEBUG=y
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EFI_PARTITION=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENCLOSURE_SERVICES=m
+CONFIG_ENCRYPTED_KEYS=m
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPIC100=m
+CONFIG_EPOLL=y
+CONFIG_ETHERNET=y
+CONFIG_EVENT_TRACING=y
+CONFIG_EXPOLINE=y
+CONFIG_EXPOLINE_AUTO=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_DEBUG=y
+CONFIG_EXT4_FS=m
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_FAILOVER=m
+CONFIG_FAILSLAB=y
+CONFIG_FAIL_IO_TIMEOUT=y
+CONFIG_FAIL_MAKE_REQUEST=y
+CONFIG_FAIL_MMC_REQUEST=y
+CONFIG_FAIL_PAGE_ALLOC=y
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FAULT_INJECTION=y
+CONFIG_FAULT_INJECTION_DEBUG_FS=y
+CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y
+CONFIG_FB=m
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FONT_SUPPORT=m
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_OBJECT_LIST=y
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FS_DAX=y
+CONFIG_FTRACE=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ES=m
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSE_FS=m
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENERIC_IRQ_DEBUGFS=y
+CONFIG_GENEVE=m
+CONFIG_GENWQE=m
+CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0
+CONFIG_GFS2_FS=m
+CONFIG_GFS2_FS_LOCKING_DLM=y
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_VIPERBOARD=m
+CONFIG_GUP_TEST=y
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HIBERNATION=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_ALPS=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_ASUS=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_BETOP_FF=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CMEDIA=m
+CONFIG_HID_CORSAIR=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_ELO=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GEMBIRD=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GFRM=m
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GT683R=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LENOVO=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PENMOUNT=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PLANTRONICS=m
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_XINMO=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HMC_DRV=m
+CONFIG_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_S390=y
+CONFIG_HSA_AMD=y
+CONFIG_HUGETLBFS=y
+CONFIG_HVC_IUCV=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HYPERV=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_TESTING=y
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_100=y
+CONFIG_I2C=m
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_GPIO_FAULT_INJECTOR=y
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I40E_DCB=y
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_IBM_PARTITION=y
+CONFIG_ICE=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IEEE802154=m
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IFCVF=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IKHEADERS=m
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET=y
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_EVDEV=y
+CONFIG_INPUT_GP2A=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_PCSPKR=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_SPARSEKMAP=m
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INTEGRITY=y
+CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_PLATFORM_KEYRING=y
+CONFIG_INTEGRITY_SIGNATURE=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DEBUG=y
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_ISCSI_TARGET=m
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN=y
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISM=m
+CONFIG_ISO9660_FS=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IUCV=y
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUG=y
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IWLWIFI_DEVICE_TRACING=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KARMA_PARTITION=y
+CONFIG_KASAN=y
+CONFIG_KASAN_INLINE=y
+CONFIG_KASAN_S390_4_LEVEL_PAGING=y
+CONFIG_KASAN_VMALLOC=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x0
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEXEC_SIG=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYS=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBES_ON_FTRACE=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KSM=y
+CONFIG_KUNIT=m
+CONFIG_KUNIT_ALL_TESTS=m
+CONFIG_KVM=m
+CONFIG_KVM_AMD_SEV=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LATENCYTOP=y
+CONFIG_LCS=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBCRC32C=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOAD_IPL_KEYS=y
+CONFIG_LOCALVERSION=""
+CONFIG_LOCKD=m
+CONFIG_LOCKDEP_BITS=16
+CONFIG_LOCKDEP_CHAINS_BITS=17
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOCK_DOWN_KERNEL=y
+CONFIG_LOCK_EVENT_COUNTS=y
+CONFIG_LOCK_STAT=y
+CONFIG_LOCK_TORTURE_TEST=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=17
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=m
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_MAC80211_DEBUGFS=y
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_MESSAGE_TRACING=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARCH_Z13=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAX_PHYSMEM_BITS=46
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MD=y
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
+CONFIG_MEMCG=y
+CONFIG_MEMCG_SWAP=y
+CONFIG_MEMCG_SWAP_ENABLED=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_SM501_GPIO=y
+CONFIG_MFD_VIPERBOARD=m
+CONFIG_MFD_VX855=m
+CONFIG_MHI_BUS=m
+CONFIG_MHI_BUS_PCI_GENERIC=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MIGRATION=y
+CONFIG_MINIX_SUBPARTITION=y
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_MISC_RTSX_USB=m
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMIOTRACE=y
+CONFIG_MMU=y
+CONFIG_MODULES=y
+CONFIG_MODULE_FORCE_LOAD=y
+CONFIG_MODULE_SIG=y
+CONFIG_MODULE_SIG_ALL=y
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
+CONFIG_MODULE_SIG_SHA256=y
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MONREADER=m
+CONFIG_MONWRITER=m
+CONFIG_MOUSE_APPLETOUCH=m
+CONFIG_MOUSE_BCM5974=m
+CONFIG_MOUSE_CYAPA=m
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_PS2=y
+CONFIG_MOUSE_PS2_ELANTECH=y
+CONFIG_MOUSE_PS2_SENTELIC=y
+CONFIG_MOUSE_SERIAL=m
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MOUSE_VSXXXAA=m
+CONFIG_MPLS=y
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPTCP=y
+CONFIG_MPTCP_HMAC_TEST=y
+CONFIG_MPTCP_IPV6=y
+CONFIG_MQ_IOSCHED_DEADLINE=y
+CONFIG_MQ_IOSCHED_KYBER=y
+CONFIG_MSDOS_FS=m
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
+CONFIG_NEED_MULTIPLE_NODES=y
+CONFIG_NET=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVICES=y
+CONFIG_NETDEVSIM=m
+CONFIG_NETFILTER=y
+CONFIG_NETFILTER_ADVANCED=y
+CONFIG_NETFILTER_INGRESS=y
+CONFIG_NETFILTER_NETLINK=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
+CONFIG_NETFILTER_NETLINK_LOG=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_XTABLES=y
+CONFIG_NETFILTER_XT_CONNMARK=m
+CONFIG_NETFILTER_XT_MARK=m
+CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
+CONFIG_NETFILTER_XT_MATCH_BPF=m
+CONFIG_NETFILTER_XT_MATCH_CGROUP=m
+CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
+CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
+CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
+CONFIG_NETFILTER_XT_MATCH_CPU=m
+CONFIG_NETFILTER_XT_MATCH_DCCP=m
+CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
+CONFIG_NETFILTER_XT_MATCH_DSCP=m
+CONFIG_NETFILTER_XT_MATCH_ECN=m
+CONFIG_NETFILTER_XT_MATCH_ESP=m
+CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_HELPER=m
+CONFIG_NETFILTER_XT_MATCH_HL=m
+CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
+CONFIG_NETFILTER_XT_MATCH_IPVS=m
+CONFIG_NETFILTER_XT_MATCH_LENGTH=m
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+CONFIG_NETFILTER_XT_MATCH_MARK=m
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
+CONFIG_NETFILTER_XT_MATCH_OSF=m
+CONFIG_NETFILTER_XT_MATCH_OWNER=m
+CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
+CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
+CONFIG_NETFILTER_XT_MATCH_QUOTA=m
+CONFIG_NETFILTER_XT_MATCH_RATEEST=m
+CONFIG_NETFILTER_XT_MATCH_REALM=m
+CONFIG_NETFILTER_XT_MATCH_RECENT=m
+CONFIG_NETFILTER_XT_MATCH_SCTP=m
+CONFIG_NETFILTER_XT_MATCH_SOCKET=m
+CONFIG_NETFILTER_XT_MATCH_STATE=m
+CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
+CONFIG_NETFILTER_XT_MATCH_STRING=m
+CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
+CONFIG_NETFILTER_XT_MATCH_U32=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=m
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_NSH=y
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_NET_RX_BUSY_POLL=y
+CONFIG_NET_SCHED=y
+CONFIG_NET_SCH_ATM=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
+CONFIG_NET_SCH_RED=m
+CONFIG_NET_SCH_SFB=m
+CONFIG_NET_SCH_SFQ=m
+CONFIG_NET_SCH_TBF=m
+CONFIG_NET_SCH_TEQL=m
+CONFIG_NET_SWITCHDEV=y
+CONFIG_NET_TC_SKB_EXT=y
+CONFIG_NET_TEAM=m
+CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
+CONFIG_NET_TEAM_MODE_LOADBALANCE=m
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
+CONFIG_NET_VENDOR_AMAZON=y
+CONFIG_NET_VENDOR_AQUANTIA=y
+CONFIG_NET_VENDOR_CAVIUM=y
+CONFIG_NET_VENDOR_GOOGLE=y
+CONFIG_NET_VENDOR_MICROSOFT=y
+CONFIG_NET_VENDOR_NETRONOME=y
+CONFIG_NET_VENDOR_PENSANDO=y
+CONFIG_NET_VENDOR_ROCKER=y
+CONFIG_NET_VENDOR_SOLARFLARE=y
+CONFIG_NET_VRF=m
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
+CONFIG_NFP_DEBUG=y
+CONFIG_NFSD=m
+CONFIG_NFSD_FAULT_INJECTION=y
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
+CONFIG_NFSD_V3=y
+CONFIG_NFSD_V3_ACL=y
+CONFIG_NFSD_V4=y
+CONFIG_NFSD_V4_SECURITY_LABEL=y
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
+CONFIG_NLS=y
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
+CONFIG_NLS_CODEPAGE_437=y
+CONFIG_NLS_CODEPAGE_737=m
+CONFIG_NLS_CODEPAGE_775=m
+CONFIG_NLS_CODEPAGE_850=m
+CONFIG_NLS_CODEPAGE_852=m
+CONFIG_NLS_CODEPAGE_855=m
+CONFIG_NLS_CODEPAGE_857=m
+CONFIG_NLS_CODEPAGE_860=m
+CONFIG_NLS_CODEPAGE_861=m
+CONFIG_NLS_CODEPAGE_862=m
+CONFIG_NLS_CODEPAGE_863=m
+CONFIG_NLS_CODEPAGE_864=m
+CONFIG_NLS_CODEPAGE_865=m
+CONFIG_NLS_CODEPAGE_866=m
+CONFIG_NLS_CODEPAGE_869=m
+CONFIG_NLS_CODEPAGE_874=m
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
+CONFIG_NLS_ISO8859_1=m
+CONFIG_NLS_ISO8859_2=m
+CONFIG_NLS_ISO8859_3=m
+CONFIG_NLS_ISO8859_4=m
+CONFIG_NLS_ISO8859_5=m
+CONFIG_NLS_ISO8859_6=m
+CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
+CONFIG_NLS_ISO8859_9=m
+CONFIG_NLS_KOI8_R=m
+CONFIG_NLS_KOI8_U=m
+CONFIG_NLS_MAC_CELTIC=m
+CONFIG_NLS_MAC_CENTEURO=m
+CONFIG_NLS_MAC_CROATIAN=m
+CONFIG_NLS_MAC_CYRILLIC=m
+CONFIG_NLS_MAC_GAELIC=m
+CONFIG_NLS_MAC_GREEK=m
+CONFIG_NLS_MAC_ICELAND=m
+CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
+CONFIG_NLS_MAC_ROMANIAN=m
+CONFIG_NLS_MAC_TURKISH=m
+CONFIG_NLS_UTF8=m
+CONFIG_NODES_SHIFT=4
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NOUVEAU_DEBUG_MMU=y
+CONFIG_NOUVEAU_DEBUG_PUSH=y
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_IDLE=y
+CONFIG_NR_CPUS=512
+CONFIG_NUMA=y
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_FC=m
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_N_GSM=m
+CONFIG_OCXL=m
+CONFIG_OF_PMEM=m
+CONFIG_OPENVSWITCH=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPENVSWITCH_GRE=m
+CONFIG_OPENVSWITCH_VXLAN=m
+CONFIG_OPROFILE=m
+CONFIG_OPTIMIZE_INLINING=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_OVERLAY_FS=m
+CONFIG_PACKET=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PACK_STACK=y
+CONFIG_PAGE_EXTENSION=y
+CONFIG_PAGE_OWNER=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANIC_TIMEOUT=0
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_PC=m
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PCCARD=y
+CONFIG_PCI=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCI_DEBUG=y
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_NR_FUNCTIONS=512
+CONFIG_PERF_EVENTS=y
+CONFIG_PERSISTENT_KEYRINGS=y
+CONFIG_PFAULT=y
+CONFIG_PID_NS=y
+CONFIG_PKEY=m
+CONFIG_PM=y
+CONFIG_PMBUS=m
+CONFIG_PM_ADVANCED_DEBUG=y
+CONFIG_PM_DEBUG=y
+CONFIG_PM_STD_PARTITION="/dev/jokes"
+CONFIG_PM_TEST_SUSPEND=y
+CONFIG_PM_TRACE_RTC=y
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPDEV=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NONE=y
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROFILING=y
+CONFIG_PROTECTED_VIRTUALIZATION_GUEST=y
+CONFIG_PROVE_LOCKING=y
+CONFIG_PROVE_RCU=y
+CONFIG_PSAMPLE=m
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_QDIO=m
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QETH=m
+CONFIG_QETH_L2=m
+CONFIG_QETH_L3=m
+CONFIG_QETH_OSN=y
+CONFIG_QETH_OSX=y
+CONFIG_QFMT_V2=y
+CONFIG_QLA3XXX=m
+CONFIG_QUEUED_LOCK_STAT=y
+CONFIG_QUOTA=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTA_DEBUG=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RAID_ATTRS=m
+CONFIG_RANDOM32_SELFTEST=y
+CONFIG_RANDOMIZE_BASE=y
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOM_TRUST_CPU=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RCU_TORTURE_TEST=m
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_LOOPBACK=m
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_RELAY=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL=m
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTLWIFI_DEBUG=y
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW88_DEBUG=y
+CONFIG_RTW88_DEBUGFS=y
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_S390_AP_IOMMU=y
+CONFIG_S390_CCW_IOMMU=y
+CONFIG_S390_GUEST=y
+CONFIG_S390_HYPFS_FS=y
+CONFIG_S390_PRNG=m
+CONFIG_S390_TAPE=m
+CONFIG_S390_TAPE_34XX=m
+CONFIG_S390_TAPE_3590=m
+CONFIG_S390_UV_UAPI=y
+CONFIG_S390_VMUR=m
+CONFIG_SAMPLES=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SATA_AHCI=m
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SCF_TORTURE_TEST=m
+CONFIG_SCHEDSTATS=y
+CONFIG_SCHED_AUTOGROUP=y
+CONFIG_SCHED_BOOK=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TOPOLOGY=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCLP_ASYNC=m
+CONFIG_SCLP_ASYNC_ID="000000000"
+CONFIG_SCLP_CONSOLE=y
+CONFIG_SCLP_TTY=y
+CONFIG_SCLP_VT220_CONSOLE=y
+CONFIG_SCLP_VT220_TTY=y
+CONFIG_SCM_BLOCK=m
+CONFIG_SCM_BUS=y
+CONFIG_SCSI=y
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=m
+CONFIG_SCSI_FC_ATTRS=m
+CONFIG_SCSI_IPR=m
+CONFIG_SCSI_IPR_DUMP=y
+CONFIG_SCSI_IPR_TRACE=y
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SPI_ATTRS=m
+CONFIG_SCSI_SRP_ATTRS=m
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
+CONFIG_SECURITY=y
+CONFIG_SECURITYFS=y
+CONFIG_SECURITY_INFINIBAND=y
+CONFIG_SECURITY_NETWORK=y
+CONFIG_SECURITY_NETWORK_XFRM=y
+CONFIG_SECURITY_PATH=y
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
+CONFIG_SECURITY_YAMA=y
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_AD7414=m
+CONFIG_SENSORS_AD7418=m
+CONFIG_SENSORS_ADM1021=m
+CONFIG_SENSORS_ADM1025=m
+CONFIG_SENSORS_ADM1026=m
+CONFIG_SENSORS_ADM1029=m
+CONFIG_SENSORS_ADM1031=m
+CONFIG_SENSORS_ADM1275=m
+CONFIG_SENSORS_ADM9240=m
+CONFIG_SENSORS_ADS1015=m
+CONFIG_SENSORS_ADS7828=m
+CONFIG_SENSORS_ADT7310=m
+CONFIG_SENSORS_ADT7410=m
+CONFIG_SENSORS_ADT7411=m
+CONFIG_SENSORS_ADT7462=m
+CONFIG_SENSORS_ADT7470=m
+CONFIG_SENSORS_ADT7475=m
+CONFIG_SENSORS_AMC6821=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ASC7621=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_ATXP1=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_DME1737=m
+CONFIG_SENSORS_DS1621=m
+CONFIG_SENSORS_DS620=m
+CONFIG_SENSORS_EMC1403=m
+CONFIG_SENSORS_EMC6W201=m
+CONFIG_SENSORS_F71805F=m
+CONFIG_SENSORS_F71882FG=m
+CONFIG_SENSORS_F75375S=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G760A=m
+CONFIG_SENSORS_GL518SM=m
+CONFIG_SENSORS_GL520SM=m
+CONFIG_SENSORS_IBMAEM=m
+CONFIG_SENSORS_IBMPEX=m
+CONFIG_SENSORS_INA209=m
+CONFIG_SENSORS_INA2XX=m
+CONFIG_SENSORS_IT87=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LINEAGE=m
+CONFIG_SENSORS_LM25066=m
+CONFIG_SENSORS_LM63=m
+CONFIG_SENSORS_LM73=m
+CONFIG_SENSORS_LM75=m
+CONFIG_SENSORS_LM77=m
+CONFIG_SENSORS_LM78=m
+CONFIG_SENSORS_LM80=m
+CONFIG_SENSORS_LM83=m
+CONFIG_SENSORS_LM85=m
+CONFIG_SENSORS_LM87=m
+CONFIG_SENSORS_LM90=m
+CONFIG_SENSORS_LM92=m
+CONFIG_SENSORS_LM93=m
+CONFIG_SENSORS_LM95234=m
+CONFIG_SENSORS_LM95241=m
+CONFIG_SENSORS_LM95245=m
+CONFIG_SENSORS_LTC2978=m
+CONFIG_SENSORS_LTC4151=m
+CONFIG_SENSORS_LTC4215=m
+CONFIG_SENSORS_LTC4245=m
+CONFIG_SENSORS_LTC4261=m
+CONFIG_SENSORS_MAX16064=m
+CONFIG_SENSORS_MAX16065=m
+CONFIG_SENSORS_MAX1619=m
+CONFIG_SENSORS_MAX1668=m
+CONFIG_SENSORS_MAX197=m
+CONFIG_SENSORS_MAX34440=m
+CONFIG_SENSORS_MAX6639=m
+CONFIG_SENSORS_MAX6642=m
+CONFIG_SENSORS_MAX6650=m
+CONFIG_SENSORS_MAX6697=m
+CONFIG_SENSORS_MAX8688=m
+CONFIG_SENSORS_MCP3021=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT6775=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_PC87360=m
+CONFIG_SENSORS_PC87427=m
+CONFIG_SENSORS_PCF8591=m
+CONFIG_SENSORS_PMBUS=m
+CONFIG_SENSORS_SCH5627=m
+CONFIG_SENSORS_SCH5636=m
+CONFIG_SENSORS_SHT15=m
+CONFIG_SENSORS_SHT21=m
+CONFIG_SENSORS_SIS5595=m
+CONFIG_SENSORS_SMSC47B397=m
+CONFIG_SENSORS_SMSC47M192=m
+CONFIG_SENSORS_SMSC47M1=m
+CONFIG_SENSORS_THMC50=m
+CONFIG_SENSORS_TMP102=m
+CONFIG_SENSORS_TMP401=m
+CONFIG_SENSORS_TMP421=m
+CONFIG_SENSORS_UCD9000=m
+CONFIG_SENSORS_UCD9200=m
+CONFIG_SENSORS_VIA686A=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_VT1211=m
+CONFIG_SENSORS_VT8231=m
+CONFIG_SENSORS_W83627EHF=m
+CONFIG_SENSORS_W83627HF=m
+CONFIG_SENSORS_W83781D=m
+CONFIG_SENSORS_W83791D=m
+CONFIG_SENSORS_W83792D=m
+CONFIG_SENSORS_W83793=m
+CONFIG_SENSORS_W83795=m
+CONFIG_SENSORS_W83L785TS=m
+CONFIG_SENSORS_W83L786NG=m
+CONFIG_SENSORS_ZL6100=m
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=32
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_ARC=m
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=m
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_JSM=m
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
+CONFIG_SIGNATURE=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMC=m
+CONFIG_SMC_DIAG=m
+CONFIG_SMP=y
+CONFIG_SMSC9420=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMSGIUCV=m
+CONFIG_SMSGIUCV_EVENT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_DEBUG=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTL_INPUT_VALIDATION=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DEBUG=y
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_INTEL=m
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=512
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCM_XRUN_DEBUG=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PRINTK=y
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SOLARIS_X86_PARTITION=y
+CONFIG_SONY_FF=y
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACK_GUARD=256
+CONFIG_STACK_TRACER=y
+CONFIG_STANDALONE=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUSPEND=y
+CONFIG_SWAP=y
+CONFIG_SWIOTLB=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSTEM_BLACKLIST_KEYRING=y
+CONFIG_SYSTEM_DATA_VERIFICATION=y
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_SYSVIPC=y
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=m
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_ATMEL=m
+CONFIG_TCG_CRB=y
+CONFIG_TCG_INFINEON=m
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=m
+CONFIG_TCM_IBLOCK=m
+CONFIG_TCM_PSCSI=m
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_STRING_HELPERS=m
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TN3215=y
+CONFIG_TN3215_CONSOLE=y
+CONFIG_TN3270=y
+CONFIG_TN3270_CONSOLE=y
+CONFIG_TN3270_FS=m
+CONFIG_TN3270_TTY=y
+CONFIG_TORTURE_TEST=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRANSPARENT_HUGEPAGE=y
+CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=m
+CONFIG_TUN=m
+CONFIG_TUNE_Z14=y
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UBSAN=y
+CONFIG_UBSAN_SANITIZE_ALL=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UDF_FS=m
+CONFIG_UHID=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX=y
+CONFIG_UNIXWARE_DISKLABEL=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_SPEEDTOUCH=m
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_ISD200=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_VDPA=m
+CONFIG_VDPA_SIM=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFAT_FS=m
+CONFIG_VFIO=m
+CONFIG_VFIO_AP=m
+CONFIG_VFIO_CCW=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_MDEV=m
+CONFIG_VFIO_MDEV_DEVICE=m
+CONFIG_VFIO_PCI=m
+CONFIG_VFIO_PCI_ZDEV_KVM=y
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VGA_CONSOLE=y
+CONFIG_VHOST_NET=m
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VDPA=m
+CONFIG_VIRTIO_VSOCKETS=m
+CONFIG_VIRTUALIZATION=y
+CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VLAN_8021Q=m
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMCP=y
+CONFIG_VMCP_CMA_SIZE=4
+CONFIG_VMLOGRDR=m
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WIRELESS=y
+CONFIG_WLAN=y
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XFS_WARN=y
+CONFIG_XILINX_GMII2RGMII=m
+CONFIG_XZ_DEC=y
+CONFIG_XZ_DEC_POWERPC=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZCRYPT=m
+CONFIG_ZCRYPT_DEBUG=y
+CONFIG_ZCRYPT_MULTIDEVNODES=y
+CONFIG_ZFCP=m
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_DFLTCC=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZRAM=m
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x-zfcpdump.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x-zfcpdump.config
new file mode 100644
index 0000000..ee24354
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x-zfcpdump.config
@@ -0,0 +1,5336 @@
+# s390
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACPI_APEI_ERST_DEBUG is not set
+# CONFIG_ACPI_CONFIGFS is not set
+# CONFIG_ACPI_CUSTOM_METHOD is not set
+# CONFIG_ACPI_DEBUG is not set
+# CONFIG_ACPI_DEBUGGER is not set
+# CONFIG_ACPI_DEBUGGER_USER is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFIUCV is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALIM7101_WDT is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_STAPL is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMD_PHY is not set
+# CONFIG_AMIGA_PARTITION is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9802ALS is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLDATA_BASE is not set
+# CONFIG_APPLDATA_MEM is not set
+# CONFIG_APPLDATA_OS is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCNET is not set
+# CONFIG_AS3935 is not set
+# CONFIG_AT803X_PHY is not set
+# CONFIG_ATA is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_DEBUG is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_TRACING is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_DEBUG is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUDIT is not set
+# CONFIG_AUDITSYSCALL is not set
+# CONFIG_AUTOFS4_FS is not set
+# CONFIG_AUTOFS_FS is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_CLASS_DEVICE is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCM87XX_PHY is not set
+# CONFIG_BCMA is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BE2ISCSI is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFQ_CGROUP_DEBUG is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BINFMT_MISC is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_IO_TRACE is not set
+# CONFIG_BLK_DEV_LOOP is not set
+# CONFIG_BLK_DEV_NBD is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_RAM is not set
+# CONFIG_BLK_DEV_RSXX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SR is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_XPRAM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
+# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BPF_LSM is not set
+# CONFIG_BPF_SYSCALL is not set
+# CONFIG_BRCMDBG is not set
+# CONFIG_BRCM_TRACING is not set
+# CONFIG_BRIDGE is not set
+# CONFIG_BROADCOM_PHY is not set
+# CONFIG_BSD_DISKLABEL is not set
+# CONFIG_BSD_PROCESS_ACCT is not set
+# CONFIG_BT is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_BUG_ON_DATA_CORRUPTION is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CAN is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_DEBUG_DEVICES is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set
+# CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
+# CONFIG_CFG80211_DEBUGFS is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CGROUPS is not set
+# CONFIG_CGROUP_DEBUG is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHARGER_SMB347 is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHECKPOINT_RESTORE is not set
+# CONFIG_CHECK_STACK is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHROME_PLATFORMS is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CHR_DEV_SCH is not set
+# CONFIG_CHR_DEV_SG is not set
+# CONFIG_CHR_DEV_ST is not set
+# CONFIG_CHSC_SCH is not set
+# CONFIG_CICADA_PHY is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA is not set
+# CONFIG_CMA_DEBUG is not set
+# CONFIG_CMA_DEBUGFS is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CMM is not set
+# CONFIG_CNIC is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMPAT is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONNECTOR is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPUSETS is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CRC_CCITT is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_842 is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_CCM is not set
+# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
+# CONFIG_CRYPTO_DEV_QAT_C62X is not set
+# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_DH is not set
+# CONFIG_CRYPTO_ECDH is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MCRYPTD is not set
+# CONFIG_CRYPTO_MD5 is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_RSA is not set
+# CONFIG_CRYPTO_SHA3_256_S390 is not set
+# CONFIG_CRYPTO_SHA3_512_S390 is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYCLADES is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DASD is not set
+# CONFIG_DAVICOM_PHY is not set
+# CONFIG_DAX is not set
+# CONFIG_DCB is not set
+# CONFIG_DCSSBLK is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_ATOMIC_SLEEP is not set
+# CONFIG_DEBUG_BLK_CGROUP is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_CREDENTIALS is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK is not set
+# CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_LIST is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_LOCK_ALLOC is not set
+# CONFIG_DEBUG_MUTEXES is not set
+# CONFIG_DEBUG_NOTIFIERS is not set
+# CONFIG_DEBUG_OBJECTS is not set
+# CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_OBJECTS_FREE is not set
+# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set
+# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_OBJECTS_TIMERS is not set
+# CONFIG_DEBUG_OBJECTS_WORK is not set
+# CONFIG_DEBUG_PAGEALLOC is not set
+# CONFIG_DEBUG_PAGE_REF is not set
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+# CONFIG_DEBUG_PER_CPU_MAPS is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_RT_MUTEXES is not set
+# CONFIG_DEBUG_RWSEMS is not set
+# CONFIG_DEBUG_SG is not set
+# CONFIG_DEBUG_SHIRQ is not set
+# CONFIG_DEBUG_SLAB is not set
+# CONFIG_DEBUG_SPINLOCK is not set
+# CONFIG_DEBUG_STACK_USAGE is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CFQ is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_NOOP is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_SELINUX is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
+# CONFIG_DETECT_HUNG_TASK is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DEVPORT is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMADEVICES is not set
+# CONFIG_DMADEVICES_DEBUG is not set
+# CONFIG_DMADEVICES_VDEBUG is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_API_DEBUG is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DNET is not set
+# CONFIG_DP83640_PHY is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU is not set
+# CONFIG_DRM_AMDGPU_CIK is not set
+# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMDGPU_USERPTR is not set
+# CONFIG_DRM_AMD_DC_DCN1_0 is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_AST is not set
+# CONFIG_DRM_BOCHS is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_CIRRUS_QEMU is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_HIBMC is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_CH7006 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I2C_SIL164 is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MGAG200 is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NOUVEAU is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_QXL is not set
+# CONFIG_DRM_RADEON is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DW_DMAC is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_E1000 is not set
+# CONFIG_EADM_SCH is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EDAC is not set
+# CONFIG_EDAC_BLUEFIELD is not set
+# CONFIG_EDAC_DEBUG is not set
+# CONFIG_EEPROM_93CX6 is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT24 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_EE1004 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EEPROM_LEGACY is not set
+# CONFIG_EEPROM_MAX6875 is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_ETHOC is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXPOLINE_FULL is not set
+# CONFIG_EXPOLINE_OFF is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_DEBUG is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXT4_FS is not set
+# CONFIG_EXTCON is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAILSLAB is not set
+# CONFIG_FAIL_IO_TIMEOUT is not set
+# CONFIG_FAIL_MAKE_REQUEST is not set
+# CONFIG_FAIL_MMC_REQUEST is not set
+# CONFIG_FAIL_PAGE_ALLOC is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FAULT_INJECTION is not set
+# CONFIG_FAULT_INJECTION_DEBUG_FS is not set
+# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IBM_GXT4500 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_MATROX_G is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_MODE_HELPERS is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIMPLE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VGA16 is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FMC is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FRAME_POINTER is not set
+# CONFIG_FSCACHE is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSCACHE_OBJECT_LIST is not set
+# CONFIG_FSI is not set
+# CONFIG_FS_DAX is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FS_POSIX_ACL is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FUNCTION_PROFILER is not set
+# CONFIG_FUSE_DAX is not set
+# CONFIG_FUSE_FS is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENERIC_IRQ_DEBUGFS is not set
+# CONFIG_GENERIC_PHY is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GFS2_FS is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPIOLIB is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_GENERIC_PLATFORM is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MLXBF2 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCA953X is not set
+# CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_WATCHDOG is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_GUP_TEST is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HANGCHECK_TIMER is not set
+# CONFIG_HARDLOCKUP_DETECTOR is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HIBERNATION is not set
+# CONFIG_HID is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set
+# CONFIG_HID_SENSOR_HUB is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_CPU is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HOTPLUG_PCI_PCIE is not set
+# CONFIG_HOTPLUG_PCI_SHPC is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HP_ILO is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HUGETLBFS is not set
+# CONFIG_HVC_DRIVER is not set
+# CONFIG_HVC_IUCV is not set
+# CONFIG_HWMON is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HW_RANDOM_TIMERIOMEM is not set
+# CONFIG_HW_RANDOM_TPM is not set
+# CONFIG_HX711 is not set
+# CONFIG_HYPERV_BALLOON is not set
+# CONFIG_HZ_1000 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C is not set
+# CONFIG_I2C_ALGOPCA is not set
+# CONFIG_I2C_ALGOPCF is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_AMD756 is not set
+# CONFIG_I2C_AMD756_S4882 is not set
+# CONFIG_I2C_AMD8111 is not set
+# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_CHARDEV is not set
+# CONFIG_I2C_COMPAT is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_GPIO is not set
+# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
+# CONFIG_I2C_HELPER_AUTO is not set
+# CONFIG_I2C_HID is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_I801 is not set
+# CONFIG_I2C_ISCH is not set
+# CONFIG_I2C_MLXBF is not set
+# CONFIG_I2C_MUX is not set
+# CONFIG_I2C_MUX_GPIO is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_PCA9541 is not set
+# CONFIG_I2C_MUX_PCA954x is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NFORCE2 is not set
+# CONFIG_I2C_NFORCE2_S4985 is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_PARPORT is not set
+# CONFIG_I2C_PARPORT_LIGHT is not set
+# CONFIG_I2C_PCA_PLATFORM is not set
+# CONFIG_I2C_PIIX4 is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SIMTEC is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SIS96X is not set
+# CONFIG_I2C_SLAVE is not set
+# CONFIG_I2C_SMBUS is not set
+# CONFIG_I2C_STUB is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_VIA is not set
+# CONFIG_I2C_VIAPRO is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_I6300ESB_WDT is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_ICPLUS_PHY is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154 is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IFCVF is not set
+# CONFIG_IIO is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IKHEADERS is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INET is not set
+# CONFIG_INFINIBAND_BNXT_RE is not set
+# CONFIG_INFINIBAND_EFA is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HFI1 is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_ISER is not set
+# CONFIG_INFINIBAND_ISERT is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_ON_DEMAND_PAGING is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFINIBAND_SRP is not set
+# CONFIG_INFINIBAND_SRPT is not set
+# CONFIG_INFINIBAND_USER_MAD is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_EVDEV is not set
+# CONFIG_INPUT_FF_MEMLESS is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KEYBOARD is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MISC is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSE is not set
+# CONFIG_INPUT_MOUSEDEV is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_POLLDEV is not set
+# CONFIG_INPUT_PWM_BEEPER is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INPUT_SPARSEKMAP is not set
+# CONFIG_INPUT_TABLET is not set
+# CONFIG_INPUT_TOUCHSCREEN is not set
+# CONFIG_INTEGRITY_ASYMMETRIC_KEYS is not set
+# CONFIG_INTEGRITY_PLATFORM_KEYRING is not set
+# CONFIG_INTEGRITY_SIGNATURE is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SVM is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTEL_TH is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOMMU_SUPPORT is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPMI_DEVICE_INTERFACE is not set
+# CONFIG_IPMI_HANDLER is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IP_VS_DEBUG is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IRQ_POLL is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29003 is not set
+# CONFIG_ISL29020 is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ISO9660_FS is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IUCV is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IWLWIFI_DEBUG is not set
+# CONFIG_IWLWIFI_DEVICE_TRACING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_KARMA_PARTITION is not set
+# CONFIG_KASAN is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
+# CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZ4 is not set
+# CONFIG_KERNEL_LZMA is not set
+# CONFIG_KERNEL_LZO is not set
+# CONFIG_KERNEL_NOBP is not set
+# CONFIG_KERNEL_UNCOMPRESSED is not set
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEXEC_SIG is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEYS is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KSM is not set
+# CONFIG_KUNIT is not set
+# CONFIG_KUNIT_ALL_TESTS is not set
+# CONFIG_KVM is not set
+# CONFIG_KVM_S390_UCONTROL is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATENCYTOP is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_CLASS_DEVICE is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LCD_PLATFORM is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBCRC32C is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOAD_IPL_KEYS is not set
+# CONFIG_LOAD_UEFI_KEYS is not set
+# CONFIG_LOCKDEP is not set
+# CONFIG_LOCK_DOWN_KERNEL is not set
+# CONFIG_LOCK_STAT is not set
+# CONFIG_LOCK_TORTURE_TEST is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LPC_ICH is not set
+# CONFIG_LPC_SCH is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LSI_ET1011C_PHY is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_LXT_PHY is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211 is not set
+# CONFIG_MAC80211_DEBUGFS is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MAC80211_MESSAGE_TRACING is not set
+# CONFIG_MACB is not set
+# CONFIG_MAC_PARTITION is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MAGIC_SYSRQ is not set
+# CONFIG_MAILBOX is not set
+# CONFIG_MAILBOX_TEST is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MARCH_Z10 is not set
+# CONFIG_MARCH_Z14 is not set
+# CONFIG_MARCH_Z15 is not set
+# CONFIG_MARCH_Z196 is not set
+# CONFIG_MARCH_Z900 is not set
+# CONFIG_MARCH_Z990 is not set
+# CONFIG_MARCH_Z9_109 is not set
+# CONFIG_MARCH_ZEC12 is not set
+# CONFIG_MARVELL_PHY is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MD is not set
+# CONFIG_MDIO_BITBANG is not set
+# CONFIG_MDIO_GPIO is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEDIA_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEGARAID_SAS is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SM501 is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_SYSCON is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MHI_BUS_PCI_GENERIC is not set
+# CONFIG_MICREL_PHY is not set
+# CONFIG_MII is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MINIX_SUBPARTITION is not set
+# CONFIG_MISC_FILESYSTEMS is not set
+# CONFIG_MISC_RTSX_PCI is not set
+# CONFIG_MISDN_HFCMULTI is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MLXBF_BOOTCTL is not set
+# CONFIG_MLXBF_GIGE is not set
+# CONFIG_MLXBF_PMC is not set
+# CONFIG_MLXBF_TMFIFO is not set
+# CONFIG_MLXSW_I2C is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_BLOCK is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_MTK is not set
+# CONFIG_MMC_RICOH_MMC is not set
+# CONFIG_MMC_SDHCI is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_PCI is not set
+# CONFIG_MMC_SDHCI_PLTFM is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_TIFM_SD is not set
+# CONFIG_MMC_TOSHIBA_PCI is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_VIA_SDMMC is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MMIOTRACE is not set
+# CONFIG_MODULES is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_ELAN_I2C is not set
+# CONFIG_MOUSE_ELAN_I2C_I2C is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPLS is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MSDOS_FS is not set
+# CONFIG_MSPRO_BLOCK is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_NATIONAL_PHY is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETDEVICES is not set
+# CONFIG_NETFILTER is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NETIUCV is not set
+# CONFIG_NETPOLL is not set
+# CONFIG_NETWORK_FILESYSTEMS is not set
+# CONFIG_NETWORK_SECMARK is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FC is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_KEY is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_NSH is not set
+# CONFIG_NET_PACKET_ENGINE is not set
+# CONFIG_NET_PKTGEN is not set
+# CONFIG_NET_POLL_CONTROLLER is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCHED is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_AMD is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_ATHEROS is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_BROADCOM is not set
+# CONFIG_NET_VENDOR_BROCADE is not set
+# CONFIG_NET_VENDOR_CHELSIO is not set
+# CONFIG_NET_VENDOR_CISCO is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_DEC is not set
+# CONFIG_NET_VENDOR_DLINK is not set
+# CONFIG_NET_VENDOR_EMULEX is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_HUAWEI is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_INTEL is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_MYRI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_OKI is not set
+# CONFIG_NET_VENDOR_QLOGIC is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_REALTEK is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_STMICRO is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NEW_LEDS is not set
+# CONFIG_NFC is not set
+# CONFIG_NFP_DEBUG is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FAULT_INJECTION is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NLS is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_DEBUG_MMU is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NOZOMI is not set
+# CONFIG_NO_HZ_FULL is not set
+# CONFIG_NTB is not set
+# CONFIG_NTB_AMD is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_INTEL is not set
+# CONFIG_NTB_PERF is not set
+# CONFIG_NTB_PINGPONG is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTB_TOOL is not set
+# CONFIG_NTB_TRANSPORT is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NUMA is not set
+# CONFIG_NUMA_BALANCING is not set
+# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set
+# CONFIG_NUMA_EMU is not set
+# CONFIG_NVM is not set
+# CONFIG_NVME_FC is not set
+# CONFIG_NVME_TARGET is not set
+# CONFIG_NVRAM is not set
+# CONFIG_NVSW_SN2201 is not set
+# CONFIG_N_HDLC is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF is not set
+# CONFIG_OF_OVERLAY is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPENVSWITCH is not set
+# CONFIG_OPENVSWITCH_GRE is not set
+# CONFIG_OPENVSWITCH_VXLAN is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OSF_PARTITION is not set
+# CONFIG_OVERLAY_FS is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PACKET is not set
+# CONFIG_PAGE_EXTENSION is not set
+# CONFIG_PAGE_OWNER is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIEPORTBUS is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCIPCWATCHDOG is not set
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_HOST_GENERIC is not set
+# CONFIG_PCI_PASID is not set
+# CONFIG_PCI_PF_STUB is not set
+# CONFIG_PCI_PRI is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_STUB is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PERCPU_TEST is not set
+# CONFIG_PERF_EVENTS is not set
+# CONFIG_PFAULT is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHYLIB is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PINCTRL is not set
+# CONFIG_PINCTRL_BROXTON is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PM is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PM_ADVANCED_DEBUG is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_TEST_SUSPEND is not set
+# CONFIG_PM_TRACE_RTC is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_POSIX_MQUEUE is not set
+# CONFIG_POWERCAP is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_GPIO_RESTART is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_RESTART is not set
+# CONFIG_POWER_RESET_SYSCON is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPP is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_VOLUNTARY is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROC_KCORE is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROFILING is not set
+# CONFIG_PROVE_LOCKING is not set
+# CONFIG_PROVE_RCU is not set
+# CONFIG_PSAMPLE is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PSTORE_RAM is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QRTR is not set
+# CONFIG_QSEMI_PHY is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_QUEUED_LOCK_STAT is not set
+# CONFIG_QUOTA is not set
+# CONFIG_QUOTA_DEBUG is not set
+# CONFIG_QUOTA_NETLINK_INTERFACE is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RAID_ATTRS is not set
+# CONFIG_RANDOM32_SELFTEST is not set
+# CONFIG_RAS is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TORTURE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RC_CORE is not set
+# CONFIG_RC_LOOPBACK is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REALTEK_PHY is not set
+# CONFIG_REFCOUNT_FULL is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_RELAY is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RESET_CONTROLLER is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RFKILL is not set
+# CONFIG_RFKILL_GPIO is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_CORE is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS3232_HWMON is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTC_NVMEM is not set
+# CONFIG_RTC_SYSTOHC is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTLWIFI_DEBUG is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_S390_GUEST is not set
+# CONFIG_S390_HYPFS_FS is not set
+# CONFIG_S390_PTDUMP is not set
+# CONFIG_S390_TAPE is not set
+# CONFIG_S390_UV_UAPI is not set
+# CONFIG_SAMPLES is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCF_TORTURE_TEST is not set
+# CONFIG_SCHEDSTATS is not set
+# CONFIG_SCHED_AUTOGROUP is not set
+# CONFIG_SCHED_DEBUG is not set
+# CONFIG_SCHED_INFO is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCLP_OFB is not set
+# CONFIG_SCM_BUS is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_AACRAID is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BNX2X_FCOE is not set
+# CONFIG_SCSI_BNX2_ISCSI is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_CXGB4_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DEBUG is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPSA is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_ISCSI_ATTRS is not set
+# CONFIG_SCSI_LPFC is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MPI3MR is not set
+# CONFIG_SCSI_MPT2SAS is not set
+# CONFIG_SCSI_MPT3SAS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLA_FC is not set
+# CONFIG_SCSI_QLA_ISCSI is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SAS_ATTRS is not set
+# CONFIG_SCSI_SAS_LIBSAS is not set
+# CONFIG_SCSI_SMARTPQI is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_SPI_ATTRS is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDIO_UART is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7314 is not set
+# CONFIG_SENSORS_ADC128D818 is not set
+# CONFIG_SENSORS_ADCXX is not set
+# CONFIG_SENSORS_ADS7871 is not set
+# CONFIG_SENSORS_APDS990X is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_BH1770 is not set
+# CONFIG_SENSORS_DELL_SMM is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G762 is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_I5K_AMB is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_LIS3LV02D is not set
+# CONFIG_SENSORS_LIS3_I2C is not set
+# CONFIG_SENSORS_LM70 is not set
+# CONFIG_SENSORS_LTC2945 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC3815 is not set
+# CONFIG_SENSORS_LTC4222 is not set
+# CONFIG_SENSORS_LTC4260 is not set
+# CONFIG_SENSORS_MAX1111 is not set
+# CONFIG_SENSORS_MAX20751 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX31790 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT7802 is not set
+# CONFIG_SENSORS_NCT7904 is not set
+# CONFIG_SENSORS_POWR1220 is not set
+# CONFIG_SENSORS_PWM_FAN is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SHTC1 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_TC74 is not set
+# CONFIG_SENSORS_TMP103 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TPS40422 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2550 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_XGENE is not set
+# CONFIG_SERIAL_8250 is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_DW is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_8250_RT288X is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_NONSTANDARD is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_UARTLITE is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SFC is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SFC_SIENA is not set
+# CONFIG_SGI_IOC4 is not set
+# CONFIG_SGI_PARTITION is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIGNATURE is not set
+# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMSC_PHY is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PCM_XRUN_DEBUG is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8326 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_AMD_REMBRANDT is not set
+# CONFIG_SND_SOC_SOF_AMD_TOPLEVEL is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_I2C is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_VERBOSE_PRINTK is not set
+# CONFIG_SND_XEN_FRONTEND is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SOLARIS_X86_PARTITION is not set
+# CONFIG_SOUND is not set
+# CONFIG_SOUNDWIRE is not set
+# CONFIG_SOUNDWIRE_AMD is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI is not set
+# CONFIG_SPI_DEBUG is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_LZ4 is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STACKTRACE is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STE10XP is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STM is not set
+# CONFIG_STRICT_DEVMEM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SUN_PARTITION is not set
+# CONFIG_SWAP is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYNCLINKMP is not set
+# CONFIG_SYNCLINK_GT is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
+# CONFIG_SYSTEM_DATA_VERIFICATION is not set
+# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSVIPC is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_SYS_HYPERVISOR is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TASKSTATS is not set
+# CONFIG_TCG_TIS_I2C_ATMEL is not set
+# CONFIG_TCG_TIS_I2C_INFINEON is not set
+# CONFIG_TCG_TIS_I2C_NUVOTON is not set
+# CONFIG_TCG_TIS_SPI is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_STRING_HELPERS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_THUNDER_NIC_BGX is not set
+# CONFIG_THUNDER_NIC_PF is not set
+# CONFIG_THUNDER_NIC_RGX is not set
+# CONFIG_THUNDER_NIC_VF is not set
+# CONFIG_TIFM_7XX1 is not set
+# CONFIG_TIFM_CORE is not set
+# CONFIG_TIGON3 is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TMPFS is not set
+# CONFIG_TORTURE_TEST is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TUN is not set
+# CONFIG_TUNE_DEFAULT is not set
+# CONFIG_TUNE_Z10 is not set
+# CONFIG_TUNE_Z13 is not set
+# CONFIG_TUNE_Z15 is not set
+# CONFIG_TUNE_Z196 is not set
+# CONFIG_TUNE_Z900 is not set
+# CONFIG_TUNE_Z990 is not set
+# CONFIG_TUNE_Z9_109 is not set
+# CONFIG_TUNE_ZEC12 is not set
+# CONFIG_TUN_VNET_CROSS_LE is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UBSAN is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UDF_FS is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO is not set
+# CONFIG_UIO_AEC is not set
+# CONFIG_UIO_CIF is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PCI_GENERIC is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_UIO_SERCOS3 is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNIX is not set
+# CONFIG_UNIXWARE_DISKLABEL is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHAOSKEY is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHCI_HCD_PLATFORM is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LED_TRIG is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9700 is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_SIMPLE is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_SUPPORT is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_ULPI_BUS is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_DBGCAP is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_XHCI_PLATFORM is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_UWB is not set
+# CONFIG_UWB_WHCI is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VDPA is not set
+# CONFIG_VDPA_SIM is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFAT_FS is not set
+# CONFIG_VFIO_NOIOMMU is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VGA_SWITCHEROO is not set
+# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
+# CONFIG_VHOST_NET is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VIRTIO_PCI is not set
+# CONFIG_VIRTIO_VDPA is not set
+# CONFIG_VIRTUALIZATION is not set
+# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
+# CONFIG_VITESSE_PHY is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VLAN_8021Q is not set
+# CONFIG_VMCP is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VMXNET3 is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VSOCKETS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WARN_DYNAMIC_STACK is not set
+# CONFIG_WATCHDOG is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WDAT_WDT is not set
+# CONFIG_WDTPCI is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WQ_WATCHDOG is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_FS is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XFS_WARN is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZBUD is not set
+# CONFIG_ZCRYPT is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZPOOL is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZSWAP is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_6LOWPAN=m
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALX=m
+CONFIG_ANON_INODES=y
+CONFIG_APPLDATA_NET_SUM=m
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ARCH_RANDOM=y
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=m
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATL2=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
+CONFIG_AUDIT_ARCH=y
+CONFIG_AUDIT_TREE=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BASE_FULL=y
+CONFIG_BASE_SMALL=0
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NULL_BLK=y
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_SD=y
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BSD_PROCESS_ACCT_V3=y
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CB710_CORE=m
+CONFIG_CCW=y
+CONFIG_CCWGROUP=m
+CONFIG_CCW_CONSOLE=y
+CONFIG_CC_OPTIMIZE_FOR_SIZE=y
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
+CONFIG_CGROUP_BPF=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CMA_AREAS=7
+CONFIG_CMM_IUCV=y
+CONFIG_COMPACTION=y
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=y
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_CPUMASK_OFFSTACK=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CPU_ISOLATION=y
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=y
+CONFIG_CRC8=y
+CONFIG_CRC_ITU_T=y
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_AES_S390=y
+CONFIG_CRYPTO_ANSI_CPRNG=y
+CONFIG_CRYPTO_ANUBIS=y
+CONFIG_CRYPTO_ARC4=y
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=y
+CONFIG_CRYPTO_CAMELLIA=y
+CONFIG_CRYPTO_CAST5=y
+CONFIG_CRYPTO_CAST6=y
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=y
+CONFIG_CRYPTO_CHACHA20POLY1305=y
+CONFIG_CRYPTO_CMAC=y
+CONFIG_CRYPTO_CRC32=y
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRC32_S390=y
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES=y
+CONFIG_CRYPTO_DES_S390=y
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECHAINIV=y
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=y
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_GHASH_S390=y
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=y
+CONFIG_CRYPTO_LRW=y
+CONFIG_CRYPTO_LZO=y
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MD4=y
+CONFIG_CRYPTO_MICHAEL_MIC=y
+CONFIG_CRYPTO_PAES_S390=m
+CONFIG_CRYPTO_PCBC=y
+CONFIG_CRYPTO_PCRYPT=y
+CONFIG_CRYPTO_POLY1305=y
+CONFIG_CRYPTO_RMD128=y
+CONFIG_CRYPTO_RMD160=y
+CONFIG_CRYPTO_RMD256=y
+CONFIG_CRYPTO_RMD320=y
+CONFIG_CRYPTO_SALSA20=y
+CONFIG_CRYPTO_SEED=y
+CONFIG_CRYPTO_SERPENT=y
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA1_S390=y
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA256_S390=y
+CONFIG_CRYPTO_SHA3=y
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_SHA512_S390=y
+CONFIG_CRYPTO_TEA=y
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=y
+CONFIG_CRYPTO_TWOFISH=y
+CONFIG_CRYPTO_USER=y
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=y
+CONFIG_CRYPTO_WP512=y
+CONFIG_CRYPTO_XCBC=y
+CONFIG_CRYPTO_XTS=y
+CONFIG_CTCM=m
+CONFIG_CUSE=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DASD_DIAG=m
+CONFIG_DASD_ECKD=m
+CONFIG_DASD_EER=y
+CONFIG_DASD_FBA=m
+CONFIG_DASD_PROFILE=y
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_IOSCHED="deadline"
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_DAC=y
+CONFIG_DEVMEM=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DE_AOC=y
+CONFIG_DIAG288_WATCHDOG=m
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMATEST=m
+CONFIG_DMA_ENGINE=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DRM=m
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_B2C2_FLEXCOP_USB=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EFI_PARTITION=y
+CONFIG_ELF_CORE=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENCLOSURE_SERVICES=y
+CONFIG_ENCRYPTED_KEYS=m
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPIC100=m
+CONFIG_EPOLL=y
+CONFIG_ETHERNET=y
+CONFIG_EVENT_TRACING=y
+CONFIG_EXPOLINE=y
+CONFIG_EXPOLINE_AUTO=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_FAILOVER=y
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FB=m
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FONT_SUPPORT=m
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ES=m
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENERIC_CALIBRATE_DELAY=y
+CONFIG_GENERIC_HWEIGHT=y
+CONFIG_GENEVE=m
+CONFIG_GENWQE=m
+CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0
+CONFIG_GFS2_FS_LOCKING_DLM=y
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_VIPERBOARD=m
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_ALPS=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_ASUS=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_BETOP_FF=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CMEDIA=m
+CONFIG_HID_CORSAIR=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_ELO=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GEMBIRD=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GFRM=m
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GT683R=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LENOVO=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PENMOUNT=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PLANTRONICS=m
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_XINMO=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HMC_DRV=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_S390=y
+CONFIG_HSA_AMD=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HYPERV=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_100=y
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I40E_DCB=y
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_IBM_PARTITION=y
+CONFIG_ICE=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_COMPRESSION_BZIP2=y
+CONFIG_INITRAMFS_ROOT_GID=0
+CONFIG_INITRAMFS_ROOT_UID=0
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INIT_ENV_ARG_LIMIT=32
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_GP2A=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_PCSPKR=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INTEGRITY=y
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=y
+CONFIG_ISCSI_TARGET=y
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN=y
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISM=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x0
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBES_ON_FTRACE=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KVM_AMD_SEV=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LCS=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBFC=y
+CONFIG_LIBFCOE=y
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOCALVERSION=""
+CONFIG_LOCALVERSION_AUTO=y
+CONFIG_LOCKD=m
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=16
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=y
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARCH_Z13=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAX_PHYSMEM_BITS=46
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
+CONFIG_MEMCG=y
+CONFIG_MEMCG_SWAP=y
+CONFIG_MEMCG_SWAP_ENABLED=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_SM501_GPIO=y
+CONFIG_MFD_VIPERBOARD=m
+CONFIG_MFD_VX855=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MIGRATION=y
+CONFIG_MISC_RTSX_USB=m
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMU=y
+CONFIG_MODULE_FORCE_LOAD=y
+CONFIG_MODULE_SIG=y
+CONFIG_MODULE_SIG_ALL=y
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
+CONFIG_MODULE_SIG_SHA256=y
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MONREADER=m
+CONFIG_MONWRITER=y
+CONFIG_MOUSE_APPLETOUCH=m
+CONFIG_MOUSE_BCM5974=m
+CONFIG_MOUSE_CYAPA=m
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_PS2=y
+CONFIG_MOUSE_PS2_ELANTECH=y
+CONFIG_MOUSE_PS2_SENTELIC=y
+CONFIG_MOUSE_SERIAL=m
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MOUSE_VSXXXAA=m
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPTCP=y
+CONFIG_MPTCP_IPV6=y
+CONFIG_MQ_IOSCHED_DEADLINE=y
+CONFIG_MQ_IOSCHED_KYBER=y
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
+CONFIG_NEED_MULTIPLE_NODES=y
+CONFIG_NET=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVSIM=m
+CONFIG_NETFILTER_ADVANCED=y
+CONFIG_NETFILTER_INGRESS=y
+CONFIG_NETFILTER_NETLINK=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
+CONFIG_NETFILTER_NETLINK_LOG=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_XTABLES=y
+CONFIG_NETFILTER_XT_CONNMARK=m
+CONFIG_NETFILTER_XT_MARK=m
+CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
+CONFIG_NETFILTER_XT_MATCH_BPF=m
+CONFIG_NETFILTER_XT_MATCH_CGROUP=m
+CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
+CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
+CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
+CONFIG_NETFILTER_XT_MATCH_CPU=m
+CONFIG_NETFILTER_XT_MATCH_DCCP=m
+CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
+CONFIG_NETFILTER_XT_MATCH_DSCP=m
+CONFIG_NETFILTER_XT_MATCH_ECN=m
+CONFIG_NETFILTER_XT_MATCH_ESP=m
+CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_HELPER=m
+CONFIG_NETFILTER_XT_MATCH_HL=m
+CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
+CONFIG_NETFILTER_XT_MATCH_IPVS=m
+CONFIG_NETFILTER_XT_MATCH_LENGTH=m
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+CONFIG_NETFILTER_XT_MATCH_MARK=m
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
+CONFIG_NETFILTER_XT_MATCH_OSF=m
+CONFIG_NETFILTER_XT_MATCH_OWNER=m
+CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
+CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
+CONFIG_NETFILTER_XT_MATCH_QUOTA=m
+CONFIG_NETFILTER_XT_MATCH_RATEEST=m
+CONFIG_NETFILTER_XT_MATCH_REALM=m
+CONFIG_NETFILTER_XT_MATCH_RECENT=m
+CONFIG_NETFILTER_XT_MATCH_SCTP=m
+CONFIG_NETFILTER_XT_MATCH_SOCKET=m
+CONFIG_NETFILTER_XT_MATCH_STATE=m
+CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
+CONFIG_NETFILTER_XT_MATCH_STRING=m
+CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
+CONFIG_NETFILTER_XT_MATCH_U32=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_RX_BUSY_POLL=y
+CONFIG_NET_SCH_ATM=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
+CONFIG_NET_SCH_RED=m
+CONFIG_NET_SCH_SFB=m
+CONFIG_NET_SCH_SFQ=m
+CONFIG_NET_SCH_TBF=m
+CONFIG_NET_SCH_TEQL=m
+CONFIG_NET_SWITCHDEV=y
+CONFIG_NET_TC_SKB_EXT=y
+CONFIG_NET_TEAM=m
+CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
+CONFIG_NET_TEAM_MODE_LOADBALANCE=m
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
+CONFIG_NET_VENDOR_AMAZON=y
+CONFIG_NET_VENDOR_AQUANTIA=y
+CONFIG_NET_VENDOR_CAVIUM=y
+CONFIG_NET_VENDOR_GOOGLE=y
+CONFIG_NET_VENDOR_MICROSOFT=y
+CONFIG_NET_VENDOR_NETRONOME=y
+CONFIG_NET_VENDOR_PENSANDO=y
+CONFIG_NET_VENDOR_ROCKER=y
+CONFIG_NET_VENDOR_SOLARFLARE=y
+CONFIG_NET_VRF=m
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
+CONFIG_NFSD=m
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
+CONFIG_NFSD_V3=y
+CONFIG_NFSD_V3_ACL=y
+CONFIG_NFSD_V4=y
+CONFIG_NFSD_V4_SECURITY_LABEL=y
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
+CONFIG_NLS_CODEPAGE_437=y
+CONFIG_NLS_CODEPAGE_737=m
+CONFIG_NLS_CODEPAGE_775=m
+CONFIG_NLS_CODEPAGE_850=m
+CONFIG_NLS_CODEPAGE_852=m
+CONFIG_NLS_CODEPAGE_855=m
+CONFIG_NLS_CODEPAGE_857=m
+CONFIG_NLS_CODEPAGE_860=m
+CONFIG_NLS_CODEPAGE_861=m
+CONFIG_NLS_CODEPAGE_862=m
+CONFIG_NLS_CODEPAGE_863=m
+CONFIG_NLS_CODEPAGE_864=m
+CONFIG_NLS_CODEPAGE_865=m
+CONFIG_NLS_CODEPAGE_866=m
+CONFIG_NLS_CODEPAGE_869=m
+CONFIG_NLS_CODEPAGE_874=m
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
+CONFIG_NLS_ISO8859_1=m
+CONFIG_NLS_ISO8859_2=m
+CONFIG_NLS_ISO8859_3=m
+CONFIG_NLS_ISO8859_4=m
+CONFIG_NLS_ISO8859_5=m
+CONFIG_NLS_ISO8859_6=m
+CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
+CONFIG_NLS_ISO8859_9=m
+CONFIG_NLS_KOI8_R=m
+CONFIG_NLS_KOI8_U=m
+CONFIG_NLS_MAC_CELTIC=m
+CONFIG_NLS_MAC_CENTEURO=m
+CONFIG_NLS_MAC_CROATIAN=m
+CONFIG_NLS_MAC_CYRILLIC=m
+CONFIG_NLS_MAC_GAELIC=m
+CONFIG_NLS_MAC_GREEK=m
+CONFIG_NLS_MAC_ICELAND=m
+CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
+CONFIG_NLS_MAC_ROMANIAN=m
+CONFIG_NLS_MAC_TURKISH=m
+CONFIG_NLS_UTF8=m
+CONFIG_NODES_SHIFT=4
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_IDLE=y
+CONFIG_NR_CPUS=32
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_N_GSM=y
+CONFIG_OCXL=m
+CONFIG_OF_PMEM=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPROFILE=m
+CONFIG_OPTIMIZE_INLINING=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PACK_STACK=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANIC_ON_OOPS=y
+CONFIG_PANIC_TIMEOUT=0
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_PC=m
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PCCARD=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_NR_FUNCTIONS=512
+CONFIG_PERSISTENT_KEYRINGS=y
+CONFIG_PID_NS=y
+CONFIG_PKEY=m
+CONFIG_PMBUS=m
+CONFIG_PM_DEBUG=y
+CONFIG_PM_STD_PARTITION="/dev/jokes"
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPDEV=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=y
+CONFIG_PPS_CLIENT_LDISC=y
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NONE=y
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK=y
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROTECTED_VIRTUALIZATION_GUEST=y
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_QDIO=y
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QETH=m
+CONFIG_QETH_L2=m
+CONFIG_QETH_L3=m
+CONFIG_QETH_OSN=y
+CONFIG_QETH_OSX=y
+CONFIG_QFMT_V2=y
+CONFIG_QLA3XXX=m
+CONFIG_QUOTACTL=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RANDOMIZE_BASE=y
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOM_TRUST_CPU=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RT_MUTEXES=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_S390=y
+CONFIG_S390_AP_IOMMU=y
+CONFIG_S390_CCW_IOMMU=y
+CONFIG_S390_PRNG=y
+CONFIG_S390_TAPE_34XX=m
+CONFIG_S390_TAPE_3590=m
+CONFIG_S390_VMUR=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SATA_AHCI=m
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SCHED_BOOK=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_MC=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TOPOLOGY=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCLP_ASYNC=y
+CONFIG_SCLP_ASYNC_ID="000000000"
+CONFIG_SCLP_CONSOLE=y
+CONFIG_SCLP_TTY=y
+CONFIG_SCLP_VT220_CONSOLE=y
+CONFIG_SCLP_VT220_TTY=y
+CONFIG_SCM_BLOCK=m
+CONFIG_SCSI=y
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=y
+CONFIG_SCSI_FC_ATTRS=y
+CONFIG_SCSI_IPR=m
+CONFIG_SCSI_IPR_DUMP=y
+CONFIG_SCSI_IPR_TRACE=y
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_NETLINK=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SRP_ATTRS=y
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
+CONFIG_SECURITYFS=y
+CONFIG_SECURITY_INFINIBAND=y
+CONFIG_SECURITY_NETWORK=y
+CONFIG_SECURITY_NETWORK_XFRM=y
+CONFIG_SECURITY_PATH=y
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
+CONFIG_SECURITY_YAMA=y
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_AD7414=m
+CONFIG_SENSORS_AD7418=m
+CONFIG_SENSORS_ADM1021=m
+CONFIG_SENSORS_ADM1025=m
+CONFIG_SENSORS_ADM1026=m
+CONFIG_SENSORS_ADM1029=m
+CONFIG_SENSORS_ADM1031=m
+CONFIG_SENSORS_ADM1275=m
+CONFIG_SENSORS_ADM9240=m
+CONFIG_SENSORS_ADS1015=m
+CONFIG_SENSORS_ADS7828=m
+CONFIG_SENSORS_ADT7310=m
+CONFIG_SENSORS_ADT7410=m
+CONFIG_SENSORS_ADT7411=m
+CONFIG_SENSORS_ADT7462=m
+CONFIG_SENSORS_ADT7470=m
+CONFIG_SENSORS_ADT7475=m
+CONFIG_SENSORS_AMC6821=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ASC7621=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_ATXP1=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_DME1737=m
+CONFIG_SENSORS_DS1621=m
+CONFIG_SENSORS_DS620=m
+CONFIG_SENSORS_EMC1403=m
+CONFIG_SENSORS_EMC6W201=m
+CONFIG_SENSORS_F71805F=m
+CONFIG_SENSORS_F71882FG=m
+CONFIG_SENSORS_F75375S=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G760A=m
+CONFIG_SENSORS_GL518SM=m
+CONFIG_SENSORS_GL520SM=m
+CONFIG_SENSORS_IBMAEM=m
+CONFIG_SENSORS_IBMPEX=m
+CONFIG_SENSORS_INA209=m
+CONFIG_SENSORS_INA2XX=m
+CONFIG_SENSORS_IT87=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LINEAGE=m
+CONFIG_SENSORS_LM25066=m
+CONFIG_SENSORS_LM63=m
+CONFIG_SENSORS_LM73=m
+CONFIG_SENSORS_LM75=m
+CONFIG_SENSORS_LM77=m
+CONFIG_SENSORS_LM78=m
+CONFIG_SENSORS_LM80=m
+CONFIG_SENSORS_LM83=m
+CONFIG_SENSORS_LM85=m
+CONFIG_SENSORS_LM87=m
+CONFIG_SENSORS_LM90=m
+CONFIG_SENSORS_LM92=m
+CONFIG_SENSORS_LM93=m
+CONFIG_SENSORS_LM95234=m
+CONFIG_SENSORS_LM95241=m
+CONFIG_SENSORS_LM95245=m
+CONFIG_SENSORS_LTC2978=m
+CONFIG_SENSORS_LTC4151=m
+CONFIG_SENSORS_LTC4215=m
+CONFIG_SENSORS_LTC4245=m
+CONFIG_SENSORS_LTC4261=m
+CONFIG_SENSORS_MAX16064=m
+CONFIG_SENSORS_MAX16065=m
+CONFIG_SENSORS_MAX1619=m
+CONFIG_SENSORS_MAX1668=m
+CONFIG_SENSORS_MAX197=m
+CONFIG_SENSORS_MAX34440=m
+CONFIG_SENSORS_MAX6639=m
+CONFIG_SENSORS_MAX6642=m
+CONFIG_SENSORS_MAX6650=m
+CONFIG_SENSORS_MAX6697=m
+CONFIG_SENSORS_MAX8688=m
+CONFIG_SENSORS_MCP3021=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT6775=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_PC87360=m
+CONFIG_SENSORS_PC87427=m
+CONFIG_SENSORS_PCF8591=m
+CONFIG_SENSORS_PMBUS=m
+CONFIG_SENSORS_SCH5627=m
+CONFIG_SENSORS_SCH5636=m
+CONFIG_SENSORS_SHT15=m
+CONFIG_SENSORS_SHT21=m
+CONFIG_SENSORS_SIS5595=m
+CONFIG_SENSORS_SMSC47B397=m
+CONFIG_SENSORS_SMSC47M192=m
+CONFIG_SENSORS_SMSC47M1=m
+CONFIG_SENSORS_THMC50=m
+CONFIG_SENSORS_TMP102=m
+CONFIG_SENSORS_TMP401=m
+CONFIG_SENSORS_TMP421=m
+CONFIG_SENSORS_UCD9000=m
+CONFIG_SENSORS_UCD9200=m
+CONFIG_SENSORS_VIA686A=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_VT1211=m
+CONFIG_SENSORS_VT8231=m
+CONFIG_SENSORS_W83627EHF=m
+CONFIG_SENSORS_W83627HF=m
+CONFIG_SENSORS_W83781D=m
+CONFIG_SENSORS_W83791D=m
+CONFIG_SENSORS_W83792D=m
+CONFIG_SENSORS_W83793=m
+CONFIG_SENSORS_W83795=m
+CONFIG_SENSORS_W83L785TS=m
+CONFIG_SENSORS_W83L786NG=m
+CONFIG_SENSORS_ZL6100=m
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=32
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_ARC=m
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=m
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_JSM=m
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SHMEM=y
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMC=m
+CONFIG_SMC_DIAG=m
+CONFIG_SMP=y
+CONFIG_SMSC9420=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMSGIUCV=m
+CONFIG_SMSGIUCV_EVENT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_INTEL=m
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=512
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SONY_FF=y
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SPLIT_PTLOCK_CPUS=4
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACKTRACE_SUPPORT=y
+CONFIG_STACK_GUARD=256
+CONFIG_STACK_TRACER=y
+CONFIG_STANDALONE=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUSPEND=y
+CONFIG_SWIOTLB=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSFS=y
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_ATMEL=m
+CONFIG_TCG_CRB=y
+CONFIG_TCG_INFINEON=m
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=y
+CONFIG_TCM_IBLOCK=y
+CONFIG_TCM_PSCSI=y
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TN3215=y
+CONFIG_TN3215_CONSOLE=y
+CONFIG_TN3270=y
+CONFIG_TN3270_CONSOLE=y
+CONFIG_TN3270_FS=y
+CONFIG_TN3270_TTY=y
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRACE_IRQFLAGS_SUPPORT=y
+CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=m
+CONFIG_TUNE_Z14=y
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UHID=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_SPEEDTOUCH=m
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_ISD200=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFIO=m
+CONFIG_VFIO_AP=m
+CONFIG_VFIO_CCW=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_MDEV=m
+CONFIG_VFIO_MDEV_DEVICE=m
+CONFIG_VFIO_PCI=m
+CONFIG_VFIO_PCI_ZDEV_KVM=y
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VGA_CONSOLE=y
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VSOCKETS=m
+CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMCP_CMA_SIZE=4
+CONFIG_VMLOGRDR=m
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VM_EVENT_COUNTERS=y
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WIRELESS=y
+CONFIG_WLAN=y
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XILINX_GMII2RGMII=m
+CONFIG_XZ_DEC=y
+CONFIG_XZ_DEC_POWERPC=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZCRYPT_MULTIDEVNODES=y
+CONFIG_ZFCP=y
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_DFLTCC=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZRAM=y
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x.config
new file mode 100644
index 0000000..783113f
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-s390x.config
@@ -0,0 +1,5299 @@
+# s390
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACPI_APEI_ERST_DEBUG is not set
+# CONFIG_ACPI_CONFIGFS is not set
+# CONFIG_ACPI_CUSTOM_METHOD is not set
+# CONFIG_ACPI_DEBUG is not set
+# CONFIG_ACPI_DEBUGGER is not set
+# CONFIG_ACPI_DEBUGGER_USER is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALIM7101_WDT is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_STAPL is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMD_PHY is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9802ALS is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCNET is not set
+# CONFIG_AS3935 is not set
+# CONFIG_AT803X_PHY is not set
+# CONFIG_ATA is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_DEBUG is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_TRACING is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_DEBUG is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_CLASS_DEVICE is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCM87XX_PHY is not set
+# CONFIG_BCMA is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BE2ISCSI is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFQ_CGROUP_DEBUG is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_RSXX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_XPRAM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
+# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BRCMDBG is not set
+# CONFIG_BRCM_TRACING is not set
+# CONFIG_BROADCOM_PHY is not set
+# CONFIG_BT is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CAN is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_DEBUG_DEVICES is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+# CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
+# CONFIG_CFG80211_DEBUGFS is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CGROUP_DEBUG is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHARGER_SMB347 is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHROME_PLATFORMS is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CICADA_PHY is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA_DEBUG is not set
+# CONFIG_CMA_DEBUGFS is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CNIC is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_842 is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_QAT_4XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
+# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
+# CONFIG_CRYPTO_DEV_QAT_C62X is not set
+# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
+# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_DH is not set
+# CONFIG_CRYPTO_ECDH is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MCRYPTD is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYCLADES is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DAVICOM_PHY is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_ATOMIC_SLEEP is not set
+# CONFIG_DEBUG_BLK_CGROUP is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_CREDENTIALS is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK is not set
+# CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_LOCK_ALLOC is not set
+# CONFIG_DEBUG_MUTEXES is not set
+# CONFIG_DEBUG_NOTIFIERS is not set
+# CONFIG_DEBUG_OBJECTS is not set
+# CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_OBJECTS_FREE is not set
+# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set
+# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_OBJECTS_TIMERS is not set
+# CONFIG_DEBUG_OBJECTS_WORK is not set
+# CONFIG_DEBUG_PAGEALLOC is not set
+# CONFIG_DEBUG_PAGE_REF is not set
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+# CONFIG_DEBUG_PER_CPU_MAPS is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_RT_MUTEXES is not set
+# CONFIG_DEBUG_RWSEMS is not set
+# CONFIG_DEBUG_SG is not set
+# CONFIG_DEBUG_SLAB is not set
+# CONFIG_DEBUG_SPINLOCK is not set
+# CONFIG_DEBUG_STACK_USAGE is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DEVPORT is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMADEVICES is not set
+# CONFIG_DMADEVICES_DEBUG is not set
+# CONFIG_DMADEVICES_VDEBUG is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_API_DEBUG is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DNET is not set
+# CONFIG_DP83640_PHY is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU is not set
+# CONFIG_DRM_AMDGPU_CIK is not set
+# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMDGPU_USERPTR is not set
+# CONFIG_DRM_AMD_DC_DCN1_0 is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_AST is not set
+# CONFIG_DRM_BOCHS is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_CIRRUS_QEMU is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_HIBMC is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_CH7006 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I2C_SIL164 is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MGAG200 is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NOUVEAU is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_QXL is not set
+# CONFIG_DRM_RADEON is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DW_DMAC is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_E1000 is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EDAC is not set
+# CONFIG_EDAC_BLUEFIELD is not set
+# CONFIG_EDAC_DEBUG is not set
+# CONFIG_EEPROM_93CX6 is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT24 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_EE1004 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EEPROM_LEGACY is not set
+# CONFIG_EEPROM_MAX6875 is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_ETHOC is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXPOLINE_FULL is not set
+# CONFIG_EXPOLINE_OFF is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_DEBUG is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXTCON is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAILSLAB is not set
+# CONFIG_FAIL_IO_TIMEOUT is not set
+# CONFIG_FAIL_MAKE_REQUEST is not set
+# CONFIG_FAIL_MMC_REQUEST is not set
+# CONFIG_FAIL_PAGE_ALLOC is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FAULT_INJECTION is not set
+# CONFIG_FAULT_INJECTION_DEBUG_FS is not set
+# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IBM_GXT4500 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_MATROX_G is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_MODE_HELPERS is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIMPLE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VGA16 is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FMC is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FRAME_POINTER is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSCACHE_OBJECT_LIST is not set
+# CONFIG_FSI is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FUNCTION_PROFILER is not set
+# CONFIG_FUSE_DAX is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENERIC_IRQ_DEBUGFS is not set
+# CONFIG_GENERIC_PHY is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPIOLIB is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_GENERIC_PLATFORM is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MLXBF2 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCA953X is not set
+# CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_WATCHDOG is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_GUP_TEST is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HARDLOCKUP_DETECTOR is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HID is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set
+# CONFIG_HID_SENSOR_HUB is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HOTPLUG_PCI_PCIE is not set
+# CONFIG_HOTPLUG_PCI_SHPC is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HP_ILO is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HWMON is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HW_RANDOM_TIMERIOMEM is not set
+# CONFIG_HW_RANDOM_TPM is not set
+# CONFIG_HX711 is not set
+# CONFIG_HYPERV_BALLOON is not set
+# CONFIG_HZ_1000 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C_ALGOPCA is not set
+# CONFIG_I2C_ALGOPCF is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_AMD756 is not set
+# CONFIG_I2C_AMD756_S4882 is not set
+# CONFIG_I2C_AMD8111 is not set
+# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_CHARDEV is not set
+# CONFIG_I2C_COMPAT is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_GPIO is not set
+# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
+# CONFIG_I2C_HELPER_AUTO is not set
+# CONFIG_I2C_HID is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_I801 is not set
+# CONFIG_I2C_ISCH is not set
+# CONFIG_I2C_MLXBF is not set
+# CONFIG_I2C_MUX is not set
+# CONFIG_I2C_MUX_GPIO is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_PCA9541 is not set
+# CONFIG_I2C_MUX_PCA954x is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NFORCE2 is not set
+# CONFIG_I2C_NFORCE2_S4985 is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_PARPORT is not set
+# CONFIG_I2C_PARPORT_LIGHT is not set
+# CONFIG_I2C_PCA_PLATFORM is not set
+# CONFIG_I2C_PIIX4 is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SIMTEC is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SIS96X is not set
+# CONFIG_I2C_SLAVE is not set
+# CONFIG_I2C_SMBUS is not set
+# CONFIG_I2C_STUB is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_VIA is not set
+# CONFIG_I2C_VIAPRO is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_I6300ESB_WDT is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_ICPLUS_PHY is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IIO is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INFINIBAND_BNXT_RE is not set
+# CONFIG_INFINIBAND_EFA is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HFI1 is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_ISER is not set
+# CONFIG_INFINIBAND_ISERT is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_ON_DEMAND_PAGING is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFINIBAND_SRP is not set
+# CONFIG_INFINIBAND_SRPT is not set
+# CONFIG_INFINIBAND_USER_MAD is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_FF_MEMLESS is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYDEV is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KEYBOARD is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MISC is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSE is not set
+# CONFIG_INPUT_MOUSEDEV is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_POLLDEV is not set
+# CONFIG_INPUT_PWM_BEEPER is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INPUT_TABLET is not set
+# CONFIG_INPUT_TOUCHSCREEN is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SVM is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTEL_TH is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPMI_DEVICE_INTERFACE is not set
+# CONFIG_IPMI_HANDLER is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IP_VS_DEBUG is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29003 is not set
+# CONFIG_ISL29020 is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IWLWIFI_DEBUG is not set
+# CONFIG_IWLWIFI_DEVICE_TRACING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_KASAN is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
+# CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZ4 is not set
+# CONFIG_KERNEL_LZMA is not set
+# CONFIG_KERNEL_LZO is not set
+# CONFIG_KERNEL_NOBP is not set
+# CONFIG_KERNEL_UNCOMPRESSED is not set
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KVM_S390_UCONTROL is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATENCYTOP is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_CLASS_DEVICE is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LCD_PLATFORM is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOAD_UEFI_KEYS is not set
+# CONFIG_LOCALVERSION_AUTO is not set
+# CONFIG_LOCK_STAT is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LPC_ICH is not set
+# CONFIG_LPC_SCH is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LSI_ET1011C_PHY is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_LXT_PHY is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211 is not set
+# CONFIG_MAC80211_DEBUGFS is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MAC80211_MESSAGE_TRACING is not set
+# CONFIG_MACB is not set
+# CONFIG_MAC_PARTITION is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MAILBOX is not set
+# CONFIG_MAILBOX_TEST is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MARCH_Z10 is not set
+# CONFIG_MARCH_Z14 is not set
+# CONFIG_MARCH_Z15 is not set
+# CONFIG_MARCH_Z196 is not set
+# CONFIG_MARCH_Z900 is not set
+# CONFIG_MARCH_Z990 is not set
+# CONFIG_MARCH_Z9_109 is not set
+# CONFIG_MARCH_ZEC12 is not set
+# CONFIG_MARVELL_PHY is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MDIO_BITBANG is not set
+# CONFIG_MDIO_GPIO is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEDIA_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEGARAID_SAS is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SM501 is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_SYSCON is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MICREL_PHY is not set
+# CONFIG_MII is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MISC_RTSX_PCI is not set
+# CONFIG_MISDN_HFCMULTI is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MLXBF_BOOTCTL is not set
+# CONFIG_MLXBF_GIGE is not set
+# CONFIG_MLXBF_PMC is not set
+# CONFIG_MLXBF_TMFIFO is not set
+# CONFIG_MLXSW_I2C is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_BLOCK is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_MTK is not set
+# CONFIG_MMC_RICOH_MMC is not set
+# CONFIG_MMC_SDHCI is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_PCI is not set
+# CONFIG_MMC_SDHCI_PLTFM is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_TIFM_SD is not set
+# CONFIG_MMC_TOSHIBA_PCI is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_VIA_SDMMC is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MMIOTRACE is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_ELAN_I2C is not set
+# CONFIG_MOUSE_ELAN_I2C_I2C is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MSPRO_BLOCK is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_NATIONAL_PHY is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NETIUCV is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FC is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_PACKET_ENGINE is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_AMD is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_ATHEROS is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_BROADCOM is not set
+# CONFIG_NET_VENDOR_BROCADE is not set
+# CONFIG_NET_VENDOR_CHELSIO is not set
+# CONFIG_NET_VENDOR_CISCO is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_DEC is not set
+# CONFIG_NET_VENDOR_DLINK is not set
+# CONFIG_NET_VENDOR_EMULEX is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_HUAWEI is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_INTEL is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_MYRI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_OKI is not set
+# CONFIG_NET_VENDOR_QLOGIC is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_REALTEK is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_STMICRO is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NEW_LEDS is not set
+# CONFIG_NFC is not set
+# CONFIG_NFP_DEBUG is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FAULT_INJECTION is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_DEBUG_MMU is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NOZOMI is not set
+# CONFIG_NO_HZ_FULL is not set
+# CONFIG_NTB is not set
+# CONFIG_NTB_AMD is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_INTEL is not set
+# CONFIG_NTB_PERF is not set
+# CONFIG_NTB_PINGPONG is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTB_TOOL is not set
+# CONFIG_NTB_TRANSPORT is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NUMA_BALANCING is not set
+# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set
+# CONFIG_NUMA_EMU is not set
+# CONFIG_NVM is not set
+# CONFIG_NVRAM is not set
+# CONFIG_NVSW_SN2201 is not set
+# CONFIG_N_HDLC is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF is not set
+# CONFIG_OF_OVERLAY is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OSF_PARTITION is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIEPORTBUS is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCIPCWATCHDOG is not set
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_HOST_GENERIC is not set
+# CONFIG_PCI_PASID is not set
+# CONFIG_PCI_PF_STUB is not set
+# CONFIG_PCI_PRI is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_STUB is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PERCPU_TEST is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHYLIB is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PINCTRL is not set
+# CONFIG_PINCTRL_BROXTON is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PM_ADVANCED_DEBUG is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_TEST_SUSPEND is not set
+# CONFIG_PM_TRACE_RTC is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_POWERCAP is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_GPIO_RESTART is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_RESTART is not set
+# CONFIG_POWER_RESET_SYSCON is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPP is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_VOLUNTARY is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROVE_LOCKING is not set
+# CONFIG_PROVE_RCU is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PSTORE_RAM is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QRTR is not set
+# CONFIG_QSEMI_PHY is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_QUEUED_LOCK_STAT is not set
+# CONFIG_QUOTA_DEBUG is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RANDOM32_SELFTEST is not set
+# CONFIG_RAS is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TORTURE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RC_CORE is not set
+# CONFIG_RC_LOOPBACK is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REALTEK_PHY is not set
+# CONFIG_REFCOUNT_FULL is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RESET_CONTROLLER is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RFKILL_GPIO is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_CORE is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS3232_HWMON is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTC_NVMEM is not set
+# CONFIG_RTC_SYSTOHC is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTLWIFI_DEBUG is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_S390_PTDUMP is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCLP_OFB is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_AACRAID is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BNX2X_FCOE is not set
+# CONFIG_SCSI_BNX2_ISCSI is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_CXGB4_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPSA is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_LPFC is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MPI3MR is not set
+# CONFIG_SCSI_MPT2SAS is not set
+# CONFIG_SCSI_MPT3SAS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLA_FC is not set
+# CONFIG_SCSI_QLA_ISCSI is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SMARTPQI is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDIO_UART is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7314 is not set
+# CONFIG_SENSORS_ADC128D818 is not set
+# CONFIG_SENSORS_ADCXX is not set
+# CONFIG_SENSORS_ADS7871 is not set
+# CONFIG_SENSORS_APDS990X is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_BH1770 is not set
+# CONFIG_SENSORS_DELL_SMM is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G762 is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_I5K_AMB is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_LIS3LV02D is not set
+# CONFIG_SENSORS_LIS3_I2C is not set
+# CONFIG_SENSORS_LM70 is not set
+# CONFIG_SENSORS_LTC2945 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC3815 is not set
+# CONFIG_SENSORS_LTC4222 is not set
+# CONFIG_SENSORS_LTC4260 is not set
+# CONFIG_SENSORS_MAX1111 is not set
+# CONFIG_SENSORS_MAX20751 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX31790 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT7802 is not set
+# CONFIG_SENSORS_NCT7904 is not set
+# CONFIG_SENSORS_POWR1220 is not set
+# CONFIG_SENSORS_PWM_FAN is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SHTC1 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_TC74 is not set
+# CONFIG_SENSORS_TMP103 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TPS40422 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2550 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_XGENE is not set
+# CONFIG_SERIAL_8250 is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_DW is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_8250_RT288X is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_NONSTANDARD is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_UARTLITE is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SFC is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SFC_SIENA is not set
+# CONFIG_SGI_IOC4 is not set
+# CONFIG_SGI_PARTITION is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMSC_PHY is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PCM_XRUN_DEBUG is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8326 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_AMD_REMBRANDT is not set
+# CONFIG_SND_SOC_SOF_AMD_TOPLEVEL is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_I2C is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_VERBOSE_PRINTK is not set
+# CONFIG_SND_XEN_FRONTEND is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SOUND is not set
+# CONFIG_SOUNDWIRE is not set
+# CONFIG_SOUNDWIRE_AMD is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI is not set
+# CONFIG_SPI_DEBUG is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_LZ4 is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STE10XP is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SUN_PARTITION is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYNCLINKMP is not set
+# CONFIG_SYNCLINK_GT is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TCG_TIS_I2C_ATMEL is not set
+# CONFIG_TCG_TIS_I2C_INFINEON is not set
+# CONFIG_TCG_TIS_I2C_NUVOTON is not set
+# CONFIG_TCG_TIS_SPI is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_STRING_HELPERS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_THUNDER_NIC_BGX is not set
+# CONFIG_THUNDER_NIC_PF is not set
+# CONFIG_THUNDER_NIC_RGX is not set
+# CONFIG_THUNDER_NIC_VF is not set
+# CONFIG_TIFM_7XX1 is not set
+# CONFIG_TIFM_CORE is not set
+# CONFIG_TIGON3 is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TUNE_DEFAULT is not set
+# CONFIG_TUNE_Z10 is not set
+# CONFIG_TUNE_Z13 is not set
+# CONFIG_TUNE_Z15 is not set
+# CONFIG_TUNE_Z196 is not set
+# CONFIG_TUNE_Z900 is not set
+# CONFIG_TUNE_Z990 is not set
+# CONFIG_TUNE_Z9_109 is not set
+# CONFIG_TUNE_ZEC12 is not set
+# CONFIG_TUN_VNET_CROSS_LE is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UBSAN is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO is not set
+# CONFIG_UIO_AEC is not set
+# CONFIG_UIO_CIF is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PCI_GENERIC is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_UIO_SERCOS3 is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHAOSKEY is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHCI_HCD_PLATFORM is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LED_TRIG is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9700 is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_SIMPLE is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_SUPPORT is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_ULPI_BUS is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_DBGCAP is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_XHCI_PLATFORM is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_UWB is not set
+# CONFIG_UWB_WHCI is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFIO_NOIOMMU is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VGA_SWITCHEROO is not set
+# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VIRTIO_PCI is not set
+# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
+# CONFIG_VITESSE_PHY is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VMXNET3 is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WARN_DYNAMIC_STACK is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WDAT_WDT is not set
+# CONFIG_WDTPCI is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WQ_WATCHDOG is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XFS_WARN is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZBUD is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZPOOL is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZSWAP is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_6LOWPAN=m
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_AFIUCV=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALX=m
+CONFIG_AMIGA_PARTITION=y
+CONFIG_ANON_INODES=y
+CONFIG_APPLDATA_BASE=y
+CONFIG_APPLDATA_MEM=m
+CONFIG_APPLDATA_NET_SUM=m
+CONFIG_APPLDATA_OS=m
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ARCH_RANDOM=y
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=m
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATL2=m
+CONFIG_ATM=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
+CONFIG_AUDIT=y
+CONFIG_AUDITSYSCALL=y
+CONFIG_AUDIT_TREE=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_MISC=m
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_BLK_DEV_LOOP=m
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NULL_BLK=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_SD=m
+CONFIG_BLK_DEV_SR=m
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_LSM=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRIDGE=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BSD_DISKLABEL=y
+CONFIG_BSD_PROCESS_ACCT=y
+CONFIG_BSD_PROCESS_ACCT_V3=y
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG_ON_DATA_CORRUPTION=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CB710_CORE=m
+CONFIG_CCW=y
+CONFIG_CCWGROUP=m
+CONFIG_CCW_CONSOLE=y
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
+CONFIG_CGROUPS=y
+CONFIG_CGROUP_BPF=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHECKPOINT_RESTORE=y
+CONFIG_CHECK_STACK=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CHR_DEV_SCH=m
+CONFIG_CHR_DEV_SG=m
+CONFIG_CHR_DEV_ST=m
+CONFIG_CHSC_SCH=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CMA=y
+CONFIG_CMA_AREAS=7
+CONFIG_CMM=m
+CONFIG_CMM_IUCV=y
+CONFIG_COMPACTION=y
+CONFIG_COMPAT=y
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONNECTOR=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=m
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_CPUMASK_OFFSTACK=y
+CONFIG_CPUSETS=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CPU_ISOLATION=y
+CONFIG_CRAMFS=m
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=m
+CONFIG_CRC8=m
+CONFIG_CRC_CCITT=y
+CONFIG_CRC_ITU_T=m
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_AES_S390=m
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=m
+CONFIG_CRYPTO_CHACHA20POLY1305=m
+CONFIG_CRYPTO_CMAC=m
+CONFIG_CRYPTO_CRC32=m
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRC32_S390=y
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES=m
+CONFIG_CRYPTO_DES_S390=m
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECHAINIV=m
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_GHASH_S390=m
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_LZO=m
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_PAES_S390=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_POLY1305=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA1_S390=y
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA256_S390=y
+CONFIG_CRYPTO_SHA3=m
+CONFIG_CRYPTO_SHA3_256_S390=m
+CONFIG_CRYPTO_SHA3_512_S390=m
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_SHA512_S390=m
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_XTS=m
+CONFIG_CTCM=m
+CONFIG_CUSE=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DASD=m
+CONFIG_DASD_DIAG=m
+CONFIG_DASD_ECKD=m
+CONFIG_DASD_EER=y
+CONFIG_DASD_FBA=m
+CONFIG_DASD_PROFILE=y
+CONFIG_DCB=y
+CONFIG_DCSSBLK=m
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_LIST=y
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DEBUG_SHIRQ=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+CONFIG_DETECT_HUNG_TASK=y
+CONFIG_DEVMEM=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DE_AOC=y
+CONFIG_DIAG288_WATCHDOG=m
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMATEST=m
+CONFIG_DMA_ENGINE=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DRM=m
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DUMMY=m
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_B2C2_FLEXCOP_USB=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EADM_SCH=m
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EFI_PARTITION=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENCLOSURE_SERVICES=m
+CONFIG_ENCRYPTED_KEYS=m
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPIC100=m
+CONFIG_EPOLL=y
+CONFIG_ETHERNET=y
+CONFIG_EVENT_TRACING=y
+CONFIG_EXPOLINE=y
+CONFIG_EXPOLINE_AUTO=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_FS=m
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_FAILOVER=m
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FB=m
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FONT_SUPPORT=m
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FS_DAX=y
+CONFIG_FTRACE=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ES=m
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSE_FS=m
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENEVE=m
+CONFIG_GENWQE=m
+CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0
+CONFIG_GFS2_FS=m
+CONFIG_GFS2_FS_LOCKING_DLM=y
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_VIPERBOARD=m
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HIBERNATION=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_ALPS=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_ASUS=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_BETOP_FF=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CMEDIA=m
+CONFIG_HID_CORSAIR=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_ELO=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GEMBIRD=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GFRM=m
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GT683R=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LENOVO=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PENMOUNT=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PLANTRONICS=m
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_XINMO=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HMC_DRV=m
+CONFIG_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_S390=y
+CONFIG_HSA_AMD=y
+CONFIG_HUGETLBFS=y
+CONFIG_HVC_IUCV=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HYPERV=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_100=y
+CONFIG_I2C=m
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I40E_DCB=y
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_IBM_PARTITION=y
+CONFIG_ICE=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IEEE802154=m
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IFCVF=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IKHEADERS=m
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET=y
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_EVDEV=y
+CONFIG_INPUT_GP2A=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_PCSPKR=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_SPARSEKMAP=m
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INTEGRITY=y
+CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_PLATFORM_KEYRING=y
+CONFIG_INTEGRITY_SIGNATURE=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_ISCSI_TARGET=m
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN=y
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISM=m
+CONFIG_ISO9660_FS=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IUCV=y
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KARMA_PARTITION=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x0
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEXEC_SIG=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYS=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBES_ON_FTRACE=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KSM=y
+CONFIG_KUNIT=m
+CONFIG_KUNIT_ALL_TESTS=m
+CONFIG_KVM=m
+CONFIG_KVM_AMD_SEV=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LCS=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBCRC32C=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOAD_IPL_KEYS=y
+CONFIG_LOCALVERSION=""
+CONFIG_LOCKD=m
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOCK_DOWN_KERNEL=y
+CONFIG_LOCK_TORTURE_TEST=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=17
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=m
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARCH_Z13=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAX_PHYSMEM_BITS=46
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MD=y
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
+CONFIG_MEMCG=y
+CONFIG_MEMCG_SWAP=y
+CONFIG_MEMCG_SWAP_ENABLED=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_SM501_GPIO=y
+CONFIG_MFD_VIPERBOARD=m
+CONFIG_MFD_VX855=m
+CONFIG_MHI_BUS=m
+CONFIG_MHI_BUS_PCI_GENERIC=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MIGRATION=y
+CONFIG_MINIX_SUBPARTITION=y
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_MISC_RTSX_USB=m
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMU=y
+CONFIG_MODULES=y
+CONFIG_MODULE_FORCE_LOAD=y
+CONFIG_MODULE_SIG=y
+CONFIG_MODULE_SIG_ALL=y
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
+CONFIG_MODULE_SIG_SHA256=y
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MONREADER=m
+CONFIG_MONWRITER=m
+CONFIG_MOUSE_APPLETOUCH=m
+CONFIG_MOUSE_BCM5974=m
+CONFIG_MOUSE_CYAPA=m
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_PS2=y
+CONFIG_MOUSE_PS2_ELANTECH=y
+CONFIG_MOUSE_PS2_SENTELIC=y
+CONFIG_MOUSE_SERIAL=m
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MOUSE_VSXXXAA=m
+CONFIG_MPLS=y
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPTCP=y
+CONFIG_MPTCP_IPV6=y
+CONFIG_MQ_IOSCHED_DEADLINE=y
+CONFIG_MQ_IOSCHED_KYBER=y
+CONFIG_MSDOS_FS=m
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
+CONFIG_NEED_MULTIPLE_NODES=y
+CONFIG_NET=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVICES=y
+CONFIG_NETDEVSIM=m
+CONFIG_NETFILTER=y
+CONFIG_NETFILTER_ADVANCED=y
+CONFIG_NETFILTER_INGRESS=y
+CONFIG_NETFILTER_NETLINK=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
+CONFIG_NETFILTER_NETLINK_LOG=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_XTABLES=y
+CONFIG_NETFILTER_XT_CONNMARK=m
+CONFIG_NETFILTER_XT_MARK=m
+CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
+CONFIG_NETFILTER_XT_MATCH_BPF=m
+CONFIG_NETFILTER_XT_MATCH_CGROUP=m
+CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
+CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
+CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
+CONFIG_NETFILTER_XT_MATCH_CPU=m
+CONFIG_NETFILTER_XT_MATCH_DCCP=m
+CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
+CONFIG_NETFILTER_XT_MATCH_DSCP=m
+CONFIG_NETFILTER_XT_MATCH_ECN=m
+CONFIG_NETFILTER_XT_MATCH_ESP=m
+CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_HELPER=m
+CONFIG_NETFILTER_XT_MATCH_HL=m
+CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
+CONFIG_NETFILTER_XT_MATCH_IPVS=m
+CONFIG_NETFILTER_XT_MATCH_LENGTH=m
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+CONFIG_NETFILTER_XT_MATCH_MARK=m
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
+CONFIG_NETFILTER_XT_MATCH_OSF=m
+CONFIG_NETFILTER_XT_MATCH_OWNER=m
+CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
+CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
+CONFIG_NETFILTER_XT_MATCH_QUOTA=m
+CONFIG_NETFILTER_XT_MATCH_RATEEST=m
+CONFIG_NETFILTER_XT_MATCH_REALM=m
+CONFIG_NETFILTER_XT_MATCH_RECENT=m
+CONFIG_NETFILTER_XT_MATCH_SCTP=m
+CONFIG_NETFILTER_XT_MATCH_SOCKET=m
+CONFIG_NETFILTER_XT_MATCH_STATE=m
+CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
+CONFIG_NETFILTER_XT_MATCH_STRING=m
+CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
+CONFIG_NETFILTER_XT_MATCH_U32=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=m
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_NSH=y
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_NET_RX_BUSY_POLL=y
+CONFIG_NET_SCHED=y
+CONFIG_NET_SCH_ATM=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
+CONFIG_NET_SCH_RED=m
+CONFIG_NET_SCH_SFB=m
+CONFIG_NET_SCH_SFQ=m
+CONFIG_NET_SCH_TBF=m
+CONFIG_NET_SCH_TEQL=m
+CONFIG_NET_SWITCHDEV=y
+CONFIG_NET_TC_SKB_EXT=y
+CONFIG_NET_TEAM=m
+CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
+CONFIG_NET_TEAM_MODE_LOADBALANCE=m
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
+CONFIG_NET_VENDOR_AMAZON=y
+CONFIG_NET_VENDOR_AQUANTIA=y
+CONFIG_NET_VENDOR_CAVIUM=y
+CONFIG_NET_VENDOR_GOOGLE=y
+CONFIG_NET_VENDOR_MICROSOFT=y
+CONFIG_NET_VENDOR_NETRONOME=y
+CONFIG_NET_VENDOR_PENSANDO=y
+CONFIG_NET_VENDOR_ROCKER=y
+CONFIG_NET_VENDOR_SOLARFLARE=y
+CONFIG_NET_VRF=m
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
+CONFIG_NFSD=m
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
+CONFIG_NFSD_V3=y
+CONFIG_NFSD_V3_ACL=y
+CONFIG_NFSD_V4=y
+CONFIG_NFSD_V4_SECURITY_LABEL=y
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
+CONFIG_NLS=y
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
+CONFIG_NLS_CODEPAGE_437=y
+CONFIG_NLS_CODEPAGE_737=m
+CONFIG_NLS_CODEPAGE_775=m
+CONFIG_NLS_CODEPAGE_850=m
+CONFIG_NLS_CODEPAGE_852=m
+CONFIG_NLS_CODEPAGE_855=m
+CONFIG_NLS_CODEPAGE_857=m
+CONFIG_NLS_CODEPAGE_860=m
+CONFIG_NLS_CODEPAGE_861=m
+CONFIG_NLS_CODEPAGE_862=m
+CONFIG_NLS_CODEPAGE_863=m
+CONFIG_NLS_CODEPAGE_864=m
+CONFIG_NLS_CODEPAGE_865=m
+CONFIG_NLS_CODEPAGE_866=m
+CONFIG_NLS_CODEPAGE_869=m
+CONFIG_NLS_CODEPAGE_874=m
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
+CONFIG_NLS_ISO8859_1=m
+CONFIG_NLS_ISO8859_2=m
+CONFIG_NLS_ISO8859_3=m
+CONFIG_NLS_ISO8859_4=m
+CONFIG_NLS_ISO8859_5=m
+CONFIG_NLS_ISO8859_6=m
+CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
+CONFIG_NLS_ISO8859_9=m
+CONFIG_NLS_KOI8_R=m
+CONFIG_NLS_KOI8_U=m
+CONFIG_NLS_MAC_CELTIC=m
+CONFIG_NLS_MAC_CENTEURO=m
+CONFIG_NLS_MAC_CROATIAN=m
+CONFIG_NLS_MAC_CYRILLIC=m
+CONFIG_NLS_MAC_GAELIC=m
+CONFIG_NLS_MAC_GREEK=m
+CONFIG_NLS_MAC_ICELAND=m
+CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
+CONFIG_NLS_MAC_ROMANIAN=m
+CONFIG_NLS_MAC_TURKISH=m
+CONFIG_NLS_UTF8=m
+CONFIG_NODES_SHIFT=4
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_IDLE=y
+CONFIG_NR_CPUS=512
+CONFIG_NUMA=y
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_FC=m
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_N_GSM=m
+CONFIG_OCXL=m
+CONFIG_OF_PMEM=m
+CONFIG_OPENVSWITCH=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPENVSWITCH_GRE=m
+CONFIG_OPENVSWITCH_VXLAN=m
+CONFIG_OPROFILE=m
+CONFIG_OPTIMIZE_INLINING=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_OVERLAY_FS=m
+CONFIG_PACKET=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PACK_STACK=y
+CONFIG_PAGE_EXTENSION=y
+CONFIG_PAGE_OWNER=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANIC_ON_OOPS=y
+CONFIG_PANIC_TIMEOUT=0
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_PC=m
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PCCARD=y
+CONFIG_PCI=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_NR_FUNCTIONS=512
+CONFIG_PERF_EVENTS=y
+CONFIG_PERSISTENT_KEYRINGS=y
+CONFIG_PFAULT=y
+CONFIG_PID_NS=y
+CONFIG_PKEY=m
+CONFIG_PM=y
+CONFIG_PMBUS=m
+CONFIG_PM_DEBUG=y
+CONFIG_PM_STD_PARTITION="/dev/jokes"
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPDEV=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NONE=y
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROFILING=y
+CONFIG_PROTECTED_VIRTUALIZATION_GUEST=y
+CONFIG_PSAMPLE=m
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_QDIO=m
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QETH=m
+CONFIG_QETH_L2=m
+CONFIG_QETH_L3=m
+CONFIG_QETH_OSN=y
+CONFIG_QETH_OSX=y
+CONFIG_QFMT_V2=y
+CONFIG_QLA3XXX=m
+CONFIG_QUOTA=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RAID_ATTRS=m
+CONFIG_RANDOMIZE_BASE=y
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOM_TRUST_CPU=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_RELAY=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL=m
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_S390_AP_IOMMU=y
+CONFIG_S390_CCW_IOMMU=y
+CONFIG_S390_GUEST=y
+CONFIG_S390_HYPFS_FS=y
+CONFIG_S390_PRNG=m
+CONFIG_S390_TAPE=m
+CONFIG_S390_TAPE_34XX=m
+CONFIG_S390_TAPE_3590=m
+CONFIG_S390_UV_UAPI=y
+CONFIG_S390_VMUR=m
+CONFIG_SAMPLES=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SATA_AHCI=m
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SCF_TORTURE_TEST=m
+CONFIG_SCHEDSTATS=y
+CONFIG_SCHED_AUTOGROUP=y
+CONFIG_SCHED_BOOK=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TOPOLOGY=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCLP_ASYNC=m
+CONFIG_SCLP_ASYNC_ID="000000000"
+CONFIG_SCLP_CONSOLE=y
+CONFIG_SCLP_TTY=y
+CONFIG_SCLP_VT220_CONSOLE=y
+CONFIG_SCLP_VT220_TTY=y
+CONFIG_SCM_BLOCK=m
+CONFIG_SCM_BUS=y
+CONFIG_SCSI=y
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=m
+CONFIG_SCSI_FC_ATTRS=m
+CONFIG_SCSI_IPR=m
+CONFIG_SCSI_IPR_DUMP=y
+CONFIG_SCSI_IPR_TRACE=y
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SPI_ATTRS=m
+CONFIG_SCSI_SRP_ATTRS=m
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
+CONFIG_SECURITY=y
+CONFIG_SECURITYFS=y
+CONFIG_SECURITY_INFINIBAND=y
+CONFIG_SECURITY_NETWORK=y
+CONFIG_SECURITY_NETWORK_XFRM=y
+CONFIG_SECURITY_PATH=y
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
+CONFIG_SECURITY_YAMA=y
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_AD7414=m
+CONFIG_SENSORS_AD7418=m
+CONFIG_SENSORS_ADM1021=m
+CONFIG_SENSORS_ADM1025=m
+CONFIG_SENSORS_ADM1026=m
+CONFIG_SENSORS_ADM1029=m
+CONFIG_SENSORS_ADM1031=m
+CONFIG_SENSORS_ADM1275=m
+CONFIG_SENSORS_ADM9240=m
+CONFIG_SENSORS_ADS1015=m
+CONFIG_SENSORS_ADS7828=m
+CONFIG_SENSORS_ADT7310=m
+CONFIG_SENSORS_ADT7410=m
+CONFIG_SENSORS_ADT7411=m
+CONFIG_SENSORS_ADT7462=m
+CONFIG_SENSORS_ADT7470=m
+CONFIG_SENSORS_ADT7475=m
+CONFIG_SENSORS_AMC6821=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ASC7621=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_ATXP1=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_DME1737=m
+CONFIG_SENSORS_DS1621=m
+CONFIG_SENSORS_DS620=m
+CONFIG_SENSORS_EMC1403=m
+CONFIG_SENSORS_EMC6W201=m
+CONFIG_SENSORS_F71805F=m
+CONFIG_SENSORS_F71882FG=m
+CONFIG_SENSORS_F75375S=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G760A=m
+CONFIG_SENSORS_GL518SM=m
+CONFIG_SENSORS_GL520SM=m
+CONFIG_SENSORS_IBMAEM=m
+CONFIG_SENSORS_IBMPEX=m
+CONFIG_SENSORS_INA209=m
+CONFIG_SENSORS_INA2XX=m
+CONFIG_SENSORS_IT87=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LINEAGE=m
+CONFIG_SENSORS_LM25066=m
+CONFIG_SENSORS_LM63=m
+CONFIG_SENSORS_LM73=m
+CONFIG_SENSORS_LM75=m
+CONFIG_SENSORS_LM77=m
+CONFIG_SENSORS_LM78=m
+CONFIG_SENSORS_LM80=m
+CONFIG_SENSORS_LM83=m
+CONFIG_SENSORS_LM85=m
+CONFIG_SENSORS_LM87=m
+CONFIG_SENSORS_LM90=m
+CONFIG_SENSORS_LM92=m
+CONFIG_SENSORS_LM93=m
+CONFIG_SENSORS_LM95234=m
+CONFIG_SENSORS_LM95241=m
+CONFIG_SENSORS_LM95245=m
+CONFIG_SENSORS_LTC2978=m
+CONFIG_SENSORS_LTC4151=m
+CONFIG_SENSORS_LTC4215=m
+CONFIG_SENSORS_LTC4245=m
+CONFIG_SENSORS_LTC4261=m
+CONFIG_SENSORS_MAX16064=m
+CONFIG_SENSORS_MAX16065=m
+CONFIG_SENSORS_MAX1619=m
+CONFIG_SENSORS_MAX1668=m
+CONFIG_SENSORS_MAX197=m
+CONFIG_SENSORS_MAX34440=m
+CONFIG_SENSORS_MAX6639=m
+CONFIG_SENSORS_MAX6642=m
+CONFIG_SENSORS_MAX6650=m
+CONFIG_SENSORS_MAX6697=m
+CONFIG_SENSORS_MAX8688=m
+CONFIG_SENSORS_MCP3021=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT6775=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_PC87360=m
+CONFIG_SENSORS_PC87427=m
+CONFIG_SENSORS_PCF8591=m
+CONFIG_SENSORS_PMBUS=m
+CONFIG_SENSORS_SCH5627=m
+CONFIG_SENSORS_SCH5636=m
+CONFIG_SENSORS_SHT15=m
+CONFIG_SENSORS_SHT21=m
+CONFIG_SENSORS_SIS5595=m
+CONFIG_SENSORS_SMSC47B397=m
+CONFIG_SENSORS_SMSC47M192=m
+CONFIG_SENSORS_SMSC47M1=m
+CONFIG_SENSORS_THMC50=m
+CONFIG_SENSORS_TMP102=m
+CONFIG_SENSORS_TMP401=m
+CONFIG_SENSORS_TMP421=m
+CONFIG_SENSORS_UCD9000=m
+CONFIG_SENSORS_UCD9200=m
+CONFIG_SENSORS_VIA686A=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_VT1211=m
+CONFIG_SENSORS_VT8231=m
+CONFIG_SENSORS_W83627EHF=m
+CONFIG_SENSORS_W83627HF=m
+CONFIG_SENSORS_W83781D=m
+CONFIG_SENSORS_W83791D=m
+CONFIG_SENSORS_W83792D=m
+CONFIG_SENSORS_W83793=m
+CONFIG_SENSORS_W83795=m
+CONFIG_SENSORS_W83L785TS=m
+CONFIG_SENSORS_W83L786NG=m
+CONFIG_SENSORS_ZL6100=m
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=32
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_ARC=m
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=m
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_JSM=m
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
+CONFIG_SIGNATURE=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMC=m
+CONFIG_SMC_DIAG=m
+CONFIG_SMP=y
+CONFIG_SMSC9420=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMSGIUCV=m
+CONFIG_SMSGIUCV_EVENT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_INTEL=m
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=512
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SOLARIS_X86_PARTITION=y
+CONFIG_SONY_FF=y
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACK_GUARD=256
+CONFIG_STACK_TRACER=y
+CONFIG_STANDALONE=y
+CONFIG_STRICT_DEVMEM=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUSPEND=y
+CONFIG_SWAP=y
+CONFIG_SWIOTLB=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSTEM_BLACKLIST_KEYRING=y
+CONFIG_SYSTEM_DATA_VERIFICATION=y
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_SYSVIPC=y
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=m
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_ATMEL=m
+CONFIG_TCG_CRB=y
+CONFIG_TCG_INFINEON=m
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=m
+CONFIG_TCM_IBLOCK=m
+CONFIG_TCM_PSCSI=m
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TN3215=y
+CONFIG_TN3215_CONSOLE=y
+CONFIG_TN3270=y
+CONFIG_TN3270_CONSOLE=y
+CONFIG_TN3270_FS=m
+CONFIG_TN3270_TTY=y
+CONFIG_TORTURE_TEST=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRANSPARENT_HUGEPAGE=y
+CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=m
+CONFIG_TUN=m
+CONFIG_TUNE_Z14=y
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UDF_FS=m
+CONFIG_UHID=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX=y
+CONFIG_UNIXWARE_DISKLABEL=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_SPEEDTOUCH=m
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_ISD200=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_VDPA=m
+CONFIG_VDPA_SIM=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFAT_FS=m
+CONFIG_VFIO=m
+CONFIG_VFIO_AP=m
+CONFIG_VFIO_CCW=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_MDEV=m
+CONFIG_VFIO_MDEV_DEVICE=m
+CONFIG_VFIO_PCI=m
+CONFIG_VFIO_PCI_ZDEV_KVM=y
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VGA_CONSOLE=y
+CONFIG_VHOST_NET=m
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VDPA=m
+CONFIG_VIRTIO_VSOCKETS=m
+CONFIG_VIRTUALIZATION=y
+CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VLAN_8021Q=m
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMCP=y
+CONFIG_VMCP_CMA_SIZE=4
+CONFIG_VMLOGRDR=m
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WIRELESS=y
+CONFIG_WLAN=y
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XILINX_GMII2RGMII=m
+CONFIG_XZ_DEC=y
+CONFIG_XZ_DEC_POWERPC=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZCRYPT=m
+CONFIG_ZCRYPT_MULTIDEVNODES=y
+CONFIG_ZFCP=m
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_DFLTCC=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZRAM=m
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-x86_64-debug.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-x86_64-debug.config
similarity index 62%
rename from kernel-source/thirdparty/SOURCES/kernel-3.10.0-x86_64-debug.config
rename to kernel-source/thirdparty/kernel/SOURCES/kernel-x86_64-debug.config
index d0b2f41..b734039 100644
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-x86_64-debug.config
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-x86_64-debug.config
@@ -1,1029 +1,4081 @@
 # x86_64
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/x86_64 3.10.0 Kernel Configuration
-#
-CONFIG_64BIT=y
-CONFIG_X86_64=y
-CONFIG_X86=y
-CONFIG_INSTRUCTION_DECODER=y
-CONFIG_OUTPUT_FORMAT="elf64-x86-64"
-CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_MMU=y
-CONFIG_ARCH_MMAP_RND_BITS_MIN=28
-CONFIG_ARCH_MMAP_RND_BITS_MAX=32
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
-CONFIG_NEED_DMA_MAP_STATE=y
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_GENERIC_ISA_DMA=y
-CONFIG_GENERIC_BUG=y
-CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_ARCH_MAY_HAVE_PC_FDC=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-CONFIG_GENERIC_CALIBRATE_DELAY=y
-CONFIG_ARCH_HAS_CPU_RELAX=y
-CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
-CONFIG_ARCH_HAS_CPU_AUTOPROBE=y
-CONFIG_HAVE_SETUP_PER_CPU_AREA=y
-CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
-CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_ARCH_SUSPEND_POSSIBLE=y
-CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
-CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
-CONFIG_ZONE_DMA32=y
-CONFIG_AUDIT_ARCH=y
-CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_HAVE_INTEL_TXT=y
-CONFIG_X86_INTEL_UMIP=y
-CONFIG_X86_INTEL_MPX=y
-CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
-CONFIG_X86_64_SMP=y
-CONFIG_X86_HT=y
-CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-CONFIG_BUILDTIME_EXTABLE_SORT=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_HAVE_KERNEL_GZIP=y
-CONFIG_HAVE_KERNEL_BZIP2=y
-CONFIG_HAVE_KERNEL_LZMA=y
-CONFIG_HAVE_KERNEL_XZ=y
-CONFIG_HAVE_KERNEL_LZO=y
-CONFIG_KERNEL_GZIP=y
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACER_WIRELESS is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACPI_PROCFS_POWER is not set
+# CONFIG_ACPI_TOSHIBA is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALIENWARE_WMI is not set
+# CONFIG_ALTERA_FREEZE_BRIDGE is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_PR_IP_CORE is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set
+# CONFIG_AMD_XGBE_DCB is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCH_MEMORY_PROBE is not set
+# CONFIG_ARCNET is not set
+# CONFIG_AS3935 is not set
+# CONFIG_ASUS_WIRELESS is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_GPIO is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_PWM is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_NULL_BLK_FAULT_INJECTION is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_RSXX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CALGARY_IOMMU is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHROME_PLATFORMS is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA is not set
+# CONFIG_CMDLINE_BOOL is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMMON_CLK_CDCE706 is not set
+# CONFIG_COMMON_CLK_CS2000_CP is not set
+# CONFIG_COMMON_CLK_PWM is not set
+# CONFIG_COMMON_CLK_SI5351 is not set
+# CONFIG_COMMON_CLK_SI544 is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPAT_VDSO is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CPA_DEBUG is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_842 is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS128L_AESNI_SSE2 is not set
+# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AEGIS256_AESNI_SSE2 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS1280_AVX2 is not set
+# CONFIG_CRYPTO_MORUS1280_SSE2 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_MORUS640_SSE2 is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_ENTRY is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_KOBJECT_RELEASE is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_NMI_SELFTEST is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_TLBFLUSH is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM_PGFLAGS is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_VM_VMACACHE is not set
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DEBUG_WX is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DELL_SMBIOS_SMM is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DPTF_PCH_FIVR is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU_CIK is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_HIBMC is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set
+# CONFIG_EDAC_BLUEFIELD is not set
+# CONFIG_EDD_OFF is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT24 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_EE1004 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM_ADD_XATTRS is not set
+# CONFIG_EVM_LOAD_X509 is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXTCON is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAIL_FUNCTION is not set
+# CONFIG_FAIL_FUTEX is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IBM_GXT4500 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_MATROX_G is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_MODE_HELPERS is not set
+# CONFIG_FB_N411 is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIMPLE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VGA16 is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FMC is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FPGA_BRIDGE is not set
+# CONFIG_FPGA_DFL is not set
+# CONFIG_FPGA_DFL_AFU is not set
+# CONFIG_FPGA_DFL_FME is not set
+# CONFIG_FPGA_DFL_FME_BRIDGE is not set
+# CONFIG_FPGA_DFL_FME_MGR is not set
+# CONFIG_FPGA_DFL_FME_REGION is not set
+# CONFIG_FPGA_DFL_PCI is not set
+# CONFIG_FPGA_MGR_ALTERA_CVP is not set
+# CONFIG_FPGA_MGR_ALTERA_PS_SPI is not set
+# CONFIG_FPGA_REGION is not set
+# CONFIG_FRAME_POINTER is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSI is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENERIC_PHY is not set
+# CONFIG_GENWQE is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPD_POCKET_FAN is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_DWAPB is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_F7188X is not set
+# CONFIG_GPIO_GENERIC_PLATFORM is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_IT87 is not set
+# CONFIG_GPIO_LYNXPOINT is not set
+# CONFIG_GPIO_MAX3191X is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX7301 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MC33880 is not set
+# CONFIG_GPIO_MLXBF2 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCA953X is not set
+# CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_PISOSR is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_SCH311X is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_WATCHDOG is not set
+# CONFIG_GPIO_WINBOND is not set
+# CONFIG_GPIO_WS16C48 is not set
+# CONFIG_GPIO_XRA1403 is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPET_MMAP_DEFAULT is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HX711 is not set
+# CONFIG_HZ_100 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_GPIO is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_MLXBF is not set
+# CONFIG_I2C_MUX_GPIO is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_PCA9541 is not set
+# CONFIG_I2C_MUX_PCA954x is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SLAVE is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_IA32_AOUT is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_IBM_RTL is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_PWM_BEEPER is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INT3406_THERMAL is not set
+# CONFIG_INTEL_INT0002_VGPIO is not set
+# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MENLOW is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_PMC_IPC is not set
+# CONFIG_INTEL_PUNIT_IPC is not set
+# CONFIG_INTEL_SMARTCONNECT is not set
+# CONFIG_INTEL_SOC_DTS_THERMAL is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_KASAN_EXTRA is not set
+# CONFIG_KASAN_OUTLINE is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
 # CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZ4 is not set
 # CONFIG_KERNEL_LZMA is not set
-# CONFIG_KERNEL_XZ is not set
 # CONFIG_KERNEL_LZO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KVM_DEBUG_FS is not set
+# CONFIG_KVM_XEN is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_AMS369FG06 is not set
+# CONFIG_LCD_HX8357 is not set
+# CONFIG_LCD_ILI922X is not set
+# CONFIG_LCD_ILI9320 is not set
+# CONFIG_LCD_L4F00242T03 is not set
+# CONFIG_LCD_LD9040 is not set
+# CONFIG_LCD_LMS283GF05 is not set
+# CONFIG_LCD_LMS501KF03 is not set
+# CONFIG_LCD_LTV350QV is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LCD_S6E63M0 is not set
+# CONFIG_LCD_TDO24M is not set
+# CONFIG_LCD_VGG2432A4 is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_APU is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_CLASS_FLASH is not set
+# CONFIG_LEDS_DAC124S085 is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_NIC78BX is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOCALVERSION_AUTO is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MAILBOX_TEST is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAX9611 is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MDIO_GPIO is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CEC_RC is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_SYSCON is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MICROCODE_LATE_LOADING is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MK8 is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MLXBF_BOOTCTL is not set
+# CONFIG_MLXBF_GIGE is not set
+# CONFIG_MLXBF_PMC is not set
+# CONFIG_MLXBF_TMFIFO is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_MTK is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_TOSHIBA_PCI is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MMIOTRACE_TEST is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPSC is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NFC is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NO_HZ_IDLE is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NVM is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF is not set
+# CONFIG_OF_OVERLAY is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANIC_ON_OOPS is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARAVIRT_DEBUG is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_HOST_GENERIC is not set
+# CONFIG_PCI_P2PDMA is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PEAQ_WMI is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PERCPU_TEST is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_TEST_SUSPEND is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_PNP_DEBUG_MESSAGES is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_GPIO_RESTART is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_RESTART is not set
+# CONFIG_POWER_RESET_SYSCON is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_NONE is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROTECTED_VIRTUALIZATION_GUEST is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_HIDMA is not set
+# CONFIG_QCOM_HIDMA_MGMT is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RAPIDIO is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REFCOUNT_FULL is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RFKILL_GPIO is not set
+# CONFIG_RH_KABI_SIZE_ALIGN_CHECKS is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_ABB5ZES3 is not set
+# CONFIG_RTC_DRV_ABX80X is not set
+# CONFIG_RTC_DRV_DS1302 is not set
+# CONFIG_RTC_DRV_DS1305 is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS1343 is not set
+# CONFIG_RTC_DRV_DS1347 is not set
+# CONFIG_RTC_DRV_DS1374_WDT is not set
+# CONFIG_RTC_DRV_DS1390 is not set
+# CONFIG_RTC_DRV_DS1685_FAMILY is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_M41T93 is not set
+# CONFIG_RTC_DRV_M41T94 is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_MAX6902 is not set
+# CONFIG_RTC_DRV_MAX6916 is not set
+# CONFIG_RTC_DRV_MCP795 is not set
+# CONFIG_RTC_DRV_PCF2123 is not set
+# CONFIG_RTC_DRV_PCF2127 is not set
+# CONFIG_RTC_DRV_PCF85063 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_R9701 is not set
+# CONFIG_RTC_DRV_RS5C348 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_RX6110 is not set
+# CONFIG_RTC_DRV_RX8010 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPR is not set
+# CONFIG_SCSI_IPR_DUMP is not set
+# CONFIG_SCSI_IPR_TRACE is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7314 is not set
+# CONFIG_SENSORS_ADC128D818 is not set
+# CONFIG_SENSORS_ADCXX is not set
+# CONFIG_SENSORS_ADS7871 is not set
+# CONFIG_SENSORS_ADT7310 is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G762 is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_LM70 is not set
+# CONFIG_SENSORS_LTC2945 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC3815 is not set
+# CONFIG_SENSORS_LTC4222 is not set
+# CONFIG_SENSORS_LTC4260 is not set
+# CONFIG_SENSORS_MAX1111 is not set
+# CONFIG_SENSORS_MAX20751 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX31790 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT7802 is not set
+# CONFIG_SENSORS_NCT7904 is not set
+# CONFIG_SENSORS_POWR1220 is not set
+# CONFIG_SENSORS_PWM_FAN is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SHTC1 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_TC74 is not set
+# CONFIG_SENSORS_TMP103 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TPS40422 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_XGENE is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_8250_RT288X is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_UARTLITE is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SGI_GRU_DEBUG is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMC is not set
+# CONFIG_SMSC37B787_WDT is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PCM512x_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SPI is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI_ALTERA is not set
+# CONFIG_SPI_AXI_SPI_ENGINE is not set
+# CONFIG_SPI_BITBANG is not set
+# CONFIG_SPI_BUTTERFLY is not set
+# CONFIG_SPI_CADENCE is not set
+# CONFIG_SPI_DEBUG is not set
+# CONFIG_SPI_DESIGNWARE is not set
+# CONFIG_SPI_GPIO is not set
+# CONFIG_SPI_LM70_LLP is not set
+# CONFIG_SPI_LOOPBACK_TEST is not set
+# CONFIG_SPI_MEM is not set
+# CONFIG_SPI_OC_TINY is not set
+# CONFIG_SPI_ROCKCHIP is not set
+# CONFIG_SPI_SC18IS602 is not set
+# CONFIG_SPI_SLAVE is not set
+# CONFIG_SPI_SPIDEV is not set
+# CONFIG_SPI_TLE62X0 is not set
+# CONFIG_SPI_XCOMM is not set
+# CONFIG_SPI_XILINX is not set
+# CONFIG_SPI_ZYNQMP_GQSPI is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_LZ4 is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STMMAC_PLATFORM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SUNDANCE is not set
+# CONFIG_SURFACE3_WMI is not set
+# CONFIG_SURFACE_PRO3_BUTTON is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TCG_TIS_SPI is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KASAN is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THINKPAD_ACPI_DEBUG is not set
+# CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set
+# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_THUNDER_NIC_BGX is not set
+# CONFIG_THUNDER_NIC_PF is not set
+# CONFIG_THUNDER_NIC_RGX is not set
+# CONFIG_THUNDER_NIC_VF is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TOSHIBA_HAPS is not set
+# CONFIG_TOSHIBA_WMI is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TUN_VNET_CROSS_LE is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNISYS_VISORBUS is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHAOSKEY is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHCI_HCD_PLATFORM is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9700 is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_SIMPLE is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_ULPI_BUS is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VFIO_PCI_VGA is not set
+# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set
+# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WQ_WATCHDOG is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_X86_GOLDFISH is not set
+# CONFIG_X86_INTEL_MID is not set
+# CONFIG_X86_INTEL_MPX is not set
+# CONFIG_X86_NUMACHIP is not set
+# CONFIG_X86_PCC_CPUFREQ is not set
+# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
+# CONFIG_X86_SYSFB is not set
+# CONFIG_X86_VERBOSE_BOOTUP is not set
+# CONFIG_X86_VSMP is not set
+# CONFIG_X86_X32 is not set
+# CONFIG_XEN_BALLOON is not set
+# CONFIG_XEN_BALLOON_MEMORY_HOTPLUG is not set
+# CONFIG_XEN_DEBUG_FS is not set
+# CONFIG_XEN_FBDEV_FRONTEND is not set
+# CONFIG_XEN_GNTDEV is not set
+# CONFIG_XEN_GRANT_DEV_ALLOC is not set
+# CONFIG_XEN_PCIDEV_FRONTEND is not set
+# CONFIG_XEN_PV is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XEN_SCSI_FRONTEND is not set
+# CONFIG_XEN_SELFBALLOONING is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_6LOWPAN=m
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_ACERHDF=m
+CONFIG_ACER_WMI=m
+CONFIG_ACPI=y
+CONFIG_ACPI_AC=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_ERST_DEBUG=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_MEMORY_FAILURE=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_BATTERY=y
+CONFIG_ACPI_BGRT=y
+CONFIG_ACPI_BUTTON=y
+CONFIG_ACPI_CMPC=m
+CONFIG_ACPI_CONFIGFS=m
+CONFIG_ACPI_CONTAINER=y
+CONFIG_ACPI_CUSTOM_METHOD=m
+CONFIG_ACPI_DEBUG=y
+CONFIG_ACPI_DEBUGGER=y
+CONFIG_ACPI_DEBUGGER_USER=m
+CONFIG_ACPI_DOCK=y
+CONFIG_ACPI_DPTF=y
+CONFIG_ACPI_EC_DEBUGFS=m
+CONFIG_ACPI_EXTLOG=m
+CONFIG_ACPI_FAN=y
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_HOTPLUG_MEMORY=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_NUMA=y
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
+CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
+CONFIG_ACPI_SBS=m
+CONFIG_ACPI_SLEEP=y
+CONFIG_ACPI_SPCR_TABLE=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_TAD=m
+CONFIG_ACPI_THERMAL=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_ACPI_WATCHDOG=y
+CONFIG_ACPI_WMI=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALIM7101_WDT=m
+CONFIG_ALTERA_STAPL=m
+CONFIG_ALX=m
+CONFIG_AMD_HSMP=m
+CONFIG_AMD_IOMMU=y
+CONFIG_AMD_IOMMU_V2=m
+CONFIG_AMD_MEM_ENCRYPT=y
+CONFIG_AMD_NUMA=y
+CONFIG_AMD_PHY=m
+CONFIG_AMD_PMC=m
+CONFIG_AMD_PTDMA=m
+CONFIG_AMD_SFH_HID=m
+CONFIG_AMD_XGBE=m
+CONFIG_AMIGA_PARTITION=y
+CONFIG_AMILO_RFKILL=m
+CONFIG_ANON_INODES=y
+CONFIG_APDS9802ALS=m
+CONFIG_APPLE_GMUX=m
+CONFIG_APPLE_MFI_FASTCHARGE=m
+CONFIG_AQTION=m
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASUS_LAPTOP=m
+CONFIG_ASUS_NB_WMI=m
+CONFIG_ASUS_WMI=m
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_AS_TPAUSE=y
+CONFIG_AT803X_PHY=m
+CONFIG_ATA=m
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=m
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUG=y
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH10K_TRACING=y
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATH_DEBUG=y
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATL2=m
+CONFIG_ATM=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
 CONFIG_AUDIT=y
 CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
 CONFIG_AUDIT_TREE=y
-CONFIG_HAVE_GENERIC_HARDIRQS=y
-
-#
-# IRQ subsystem
-#
-CONFIG_GENERIC_HARDIRQS=y
-CONFIG_GENERIC_IRQ_PROBE=y
-CONFIG_GENERIC_IRQ_SHOW=y
-CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ=y
-CONFIG_GENERIC_PENDING_IRQ=y
-CONFIG_IRQ_DOMAIN=y
-# CONFIG_IRQ_DOMAIN_DEBUG is not set
-CONFIG_IRQ_FORCED_THREADING=y
-CONFIG_SPARSE_IRQ=y
-CONFIG_ARCH_CLOCKSOURCE_DATA=y
-CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
-CONFIG_GENERIC_TIME_VSYSCALL=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
-CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
-CONFIG_GENERIC_CMOS_UPDATE=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-# CONFIG_NO_HZ_IDLE is not set
-CONFIG_NO_HZ_FULL=y
-# CONFIG_NO_HZ_FULL_ALL is not set
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_BACKLIGHT_APPLE=m
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCM87XX_PHY=m
+CONFIG_BCMA=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BE2ISCSI=m
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_CGROUP_DEBUG=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_MISC=m
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_BLK_DEV_LOOP=m
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NULL_BLK=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_SD=m
+CONFIG_BLK_DEV_SR=m
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
+CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_LSM=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMDBG=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRCM_TRACING=y
+CONFIG_BRIDGE=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BROADCOM_PHY=m
+CONFIG_BSD_DISKLABEL=y
 CONFIG_BSD_PROCESS_ACCT=y
 CONFIG_BSD_PROCESS_ACCT_V3=y
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_CONTEXT_TRACKING=y
-CONFIG_RCU_USER_QS=y
-# CONFIG_CONTEXT_TRACKING_FORCE is not set
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-CONFIG_BUILD_BIN2C=y
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=20
-CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
-CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
-CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
-CONFIG_ARCH_SUPPORTS_INT128=y
-CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
-CONFIG_ARCH_USES_NUMA_PROT_NONE=y
-CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
-CONFIG_NUMA_BALANCING=y
+CONFIG_BT=m
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG_ON_DATA_CORRUPTION=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEBUG_DEVICES=y
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CB710_CORE=m
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
+CONFIG_CDROM_PKTCDVD=m
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_PRETTYDEBUG=y
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEBUGFS=y
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
 CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
+CONFIG_CGROUP_BPF=y
 CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
+CONFIG_CGROUP_DEBUG=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHARGER_SMB347=m
+CONFIG_CHECKPOINT_RESTORE=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CHR_DEV_SCH=m
+CONFIG_CHR_DEV_SG=m
+CONFIG_CHR_DEV_ST=m
+CONFIG_CICADA_PHY=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CNIC=m
+CONFIG_COMPACTION=y
+CONFIG_COMPAL_LAPTOP=m
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONNECTOR=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=m
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_COUNTER=m
+CONFIG_CPUMASK_OFFSTACK=y
+CONFIG_CPUSETS=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IBPB_ENTRY=y
+CONFIG_CPU_IBRS_ENTRY=y
+CONFIG_CPU_IDLE=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CPU_IDLE_GOV_MENU=y
+CONFIG_CPU_UNRET_ENTRY=y
+CONFIG_CRAMFS=m
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=m
+CONFIG_CRC8=m
+CONFIG_CRC_CCITT=y
+CONFIG_CRC_ITU_T=m
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_AES_NI_INTEL=y
+CONFIG_CRYPTO_AES_X86_64=y
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_BLOWFISH_X86_64=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m
+CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m
+CONFIG_CRYPTO_CAMELLIA_X86_64=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST5_AVX_X86_64=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_CAST6_AVX_X86_64=m
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=m
+CONFIG_CRYPTO_CHACHA20POLY1305=m
+CONFIG_CRYPTO_CHACHA20_X86_64=m
+CONFIG_CRYPTO_CMAC=m
+CONFIG_CRYPTO_CRC32=m
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRC32C_INTEL=m
+CONFIG_CRYPTO_CRC32_PCLMUL=m
+CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES3_EDE_X86_64=m
+CONFIG_CRYPTO_DES=m
+CONFIG_CRYPTO_DEV_CCP=y
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CCP_DD=m
+CONFIG_CRYPTO_DEV_CCP_DEBUGFS=y
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_PADLOCK=m
+CONFIG_CRYPTO_DEV_PADLOCK_AES=m
+CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
+CONFIG_CRYPTO_DEV_QAT_4XXX=m
+CONFIG_CRYPTO_DEV_QAT_C3XXX=m
+CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m
+CONFIG_CRYPTO_DEV_QAT_C62X=m
+CONFIG_CRYPTO_DEV_QAT_C62XVF=m
+CONFIG_CRYPTO_DEV_QAT_DH895xCC=m
+CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DH=m
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECDH=m
+CONFIG_CRYPTO_ECHAINIV=m
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MCRYPTD=m
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_POLY1305=m
+CONFIG_CRYPTO_POLY1305_X86_64=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m
+CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
+CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA1_MB=m
+CONFIG_CRYPTO_SHA1_SSSE3=y
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA256_MB=m
+CONFIG_CRYPTO_SHA256_SSSE3=y
+CONFIG_CRYPTO_SHA3=m
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_SHA512_MB=m
+CONFIG_CRYPTO_SHA512_SSSE3=y
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
+CONFIG_CRYPTO_TWOFISH_X86_64=m
+CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_XTS=m
+CONFIG_CUSE=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_CYCLADES=m
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DAVICOM_PHY=m
+CONFIG_DCA=m
+CONFIG_DCB=y
+CONFIG_DCDBAS=m
+CONFIG_DEBUG_ATOMIC_SLEEP=y
+CONFIG_DEBUG_BLK_CGROUP=y
+CONFIG_DEBUG_BOOT_PARAMS=y
+CONFIG_DEBUG_CREDENTIALS=y
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK=y
+CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE=40000
+CONFIG_DEBUG_LIST=y
+CONFIG_DEBUG_LOCK_ALLOC=y
+CONFIG_DEBUG_MUTEXES=y
+CONFIG_DEBUG_NOTIFIERS=y
+CONFIG_DEBUG_OBJECTS=y
+CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
+CONFIG_DEBUG_OBJECTS_FREE=y
+CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
+CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
+CONFIG_DEBUG_OBJECTS_TIMERS=y
+CONFIG_DEBUG_OBJECTS_WORK=y
+CONFIG_DEBUG_PAGEALLOC=y
+CONFIG_DEBUG_PAGE_REF=y
+CONFIG_DEBUG_PER_CPU_MAPS=y
+CONFIG_DEBUG_RT_MUTEXES=y
+CONFIG_DEBUG_RWSEMS=y
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DEBUG_SG=y
+CONFIG_DEBUG_SHIRQ=y
+CONFIG_DEBUG_SLAB=y
+CONFIG_DEBUG_SPINLOCK=y
+CONFIG_DEBUG_STACKOVERFLOW=y
+CONFIG_DEBUG_STACK_USAGE=y
+CONFIG_DEBUG_VM=y
+CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+CONFIG_DEFERRED_STRUCT_PAGE_INIT=y
+CONFIG_DELL_LAPTOP=m
+CONFIG_DELL_RBTN=m
+CONFIG_DELL_RBU=m
+CONFIG_DELL_SMBIOS=m
+CONFIG_DELL_SMBIOS_WMI=y
+CONFIG_DELL_SMO8800=m
+CONFIG_DELL_WMI=m
+CONFIG_DELL_WMI_AIO=m
+CONFIG_DELL_WMI_LED=m
+CONFIG_DELL_WMI_SYSMAN=m
+CONFIG_DETECT_HUNG_TASK=y
+CONFIG_DEVICE_PRIVATE=y
+CONFIG_DEVMEM=y
+CONFIG_DEVPORT=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DE_AOC=y
+CONFIG_DL2K=m
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMADEVICES=y
+CONFIG_DMADEVICES_DEBUG=y
+CONFIG_DMADEVICES_VDEBUG=y
+CONFIG_DMATEST=m
+CONFIG_DMA_API_DEBUG=y
+CONFIG_DMA_API_DEBUG_SG=y
+CONFIG_DMA_ENGINE=y
+CONFIG_DMIID=y
+CONFIG_DMI_SYSFS=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNET=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83640_PHY=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DPTF_POWER=m
+CONFIG_DRM=m
+CONFIG_DRM_AMDGPU=m
+CONFIG_DRM_AMDGPU_GART_DEBUGFS=y
+CONFIG_DRM_AMDGPU_USERPTR=y
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_DCN1_0=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_AST=m
+CONFIG_DRM_BOCHS=m
+CONFIG_DRM_CIRRUS_QEMU=m
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_GMA3600=y
+CONFIG_DRM_GMA500=m
+CONFIG_DRM_GMA600=y
+CONFIG_DRM_I2C_CH7006=m
+CONFIG_DRM_I2C_SIL164=m
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_GVT=y
+CONFIG_DRM_I915_GVT_KVMGT=m
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_LOAD_EDID_FIRMWARE=y
+CONFIG_DRM_MGAG200=m
+CONFIG_DRM_NOUVEAU=m
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_QXL=m
+CONFIG_DRM_RADEON=m
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DUMMY=m
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_B2C2_FLEXCOP_USB=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DWMAC_INTEL=m
+CONFIG_DW_DMAC=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000=m
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_EFI=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC=y
+CONFIG_EDAC_AMD64=m
+CONFIG_EDAC_DEBUG=y
+CONFIG_EDAC_DECODE_MCE=m
+CONFIG_EDAC_E752X=m
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_I10NM=m
+CONFIG_EDAC_I3000=m
+CONFIG_EDAC_I3200=m
+CONFIG_EDAC_I5000=m
+CONFIG_EDAC_I5100=m
+CONFIG_EDAC_I5400=m
+CONFIG_EDAC_I7300=m
+CONFIG_EDAC_I7CORE=m
+CONFIG_EDAC_I82975X=m
+CONFIG_EDAC_IE31200=m
+CONFIG_EDAC_IGEN6=m
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EDAC_SBRIDGE=m
+CONFIG_EDAC_SKX=m
+CONFIG_EDAC_X38=m
+CONFIG_EDD=m
+CONFIG_EEEPC_LAPTOP=m
+CONFIG_EEEPC_WMI=m
+CONFIG_EEPROM_93CX6=m
+CONFIG_EEPROM_LEGACY=m
+CONFIG_EEPROM_MAX6875=m
+CONFIG_EFI=y
+CONFIG_EFIVAR_FS=y
+CONFIG_EFI_MIXED=y
+CONFIG_EFI_PARTITION=y
+CONFIG_EFI_RCI2_TABLE=y
+CONFIG_EFI_RUNTIME_MAP=y
+CONFIG_EFI_STUB=y
+CONFIG_EFI_VARS=y
+CONFIG_EFI_VARS_PSTORE=y
+CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENA_ETHERNET=m
+CONFIG_ENCLOSURE_SERVICES=m
+CONFIG_ENCRYPTED_KEYS=y
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPIC100=m
+CONFIG_EPOLL=y
+CONFIG_ETHOC=m
+CONFIG_EVENT_TRACING=y
+CONFIG_EVM=y
+CONFIG_EVM_ATTR_FSUUID=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_DEBUG=y
+CONFIG_EXT4_FS=m
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_F71808E_WDT=m
+CONFIG_FAILOVER=m
+CONFIG_FAILSLAB=y
+CONFIG_FAIL_IO_TIMEOUT=y
+CONFIG_FAIL_MAKE_REQUEST=y
+CONFIG_FAIL_MMC_REQUEST=y
+CONFIG_FAIL_PAGE_ALLOC=y
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FAULT_INJECTION=y
+CONFIG_FAULT_INJECTION_DEBUG_FS=y
+CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y
+CONFIG_FB=y
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE=m
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FONT_SUPPORT=y
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_OBJECT_LIST=y
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FS_DAX=y
+CONFIG_FTRACE=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ES=m
+CONFIG_FUJITSU_LAPTOP=m
+CONFIG_FUJITSU_TABLET=m
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_PROFILER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSE_DAX=y
+CONFIG_FUSE_FS=m
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENERIC_CPU=y
+CONFIG_GENERIC_IRQ_DEBUGFS=y
+CONFIG_GENERIC_ISA_DMA=y
+CONFIG_GENEVE=m
+CONFIG_GFS2_FS=m
+CONFIG_GFS2_FS_LOCKING_DLM=y
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIOLIB=y
+CONFIG_GPIOLIB_FASTPATH_LIMIT=512
+CONFIG_GPIO_AMDPT=m
+CONFIG_GPIO_ICH=m
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_VIPERBOARD=m
+CONFIG_GUP_TEST=y
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HARDLOCKUP_DETECTOR=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HDMI_LPE_AUDIO=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HIBERNATION=y
+CONFIG_HID=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_ALPS=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_ASUS=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_BETOP_FF=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CMEDIA=m
+CONFIG_HID_CORSAIR=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_ELO=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GEMBIRD=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GFRM=m
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GT683R=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LENOVO=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PENMOUNT=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PLANTRONICS=m
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SENSOR_ACCEL_3D=m
+CONFIG_HID_SENSOR_ALS=m
+CONFIG_HID_SENSOR_CUSTOM_SENSOR=m
+CONFIG_HID_SENSOR_DEVICE_ROTATION=m
+CONFIG_HID_SENSOR_GYRO_3D=m
+CONFIG_HID_SENSOR_HUB=y
+CONFIG_HID_SENSOR_HUMIDITY=m
+CONFIG_HID_SENSOR_IIO_COMMON=m
+CONFIG_HID_SENSOR_IIO_TRIGGER=m
+CONFIG_HID_SENSOR_INCLINOMETER_3D=m
+CONFIG_HID_SENSOR_MAGNETOMETER_3D=m
+CONFIG_HID_SENSOR_PRESS=m
+CONFIG_HID_SENSOR_PROX=m
+CONFIG_HID_SENSOR_TEMP=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_XINMO=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HMM=y
+CONFIG_HMM_MIRROR=y
+CONFIG_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_PCIE=y
+CONFIG_HOTPLUG_PCI_SHPC=y
+CONFIG_HPET=y
+CONFIG_HPET_MMAP=y
+CONFIG_HPET_TIMER=y
+CONFIG_HPWDT_NMI_DECODING=y
+CONFIG_HP_ACCEL=m
+CONFIG_HP_ILO=m
+CONFIG_HP_WATCHDOG=m
+CONFIG_HP_WIRELESS=m
+CONFIG_HP_WMI=m
+CONFIG_HSA_AMD=y
+CONFIG_HUGETLBFS=y
+CONFIG_HVC_XEN=y
+CONFIG_HVC_XEN_FRONTEND=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWMON=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_AMD=m
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_INTEL=m
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_TIMERIOMEM=m
+CONFIG_HW_RANDOM_TPM=y
+CONFIG_HW_RANDOM_VIA=m
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HYPERV=m
+CONFIG_HYPERVISOR_GUEST=y
+CONFIG_HYPERV_BALLOON=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_TESTING=y
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_1000=y
+CONFIG_I2C=y
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_ALGOPCA=m
+CONFIG_I2C_ALGOPCF=m
+CONFIG_I2C_AMD756=m
+CONFIG_I2C_AMD756_S4882=m
+CONFIG_I2C_AMD8111=m
+CONFIG_I2C_CHARDEV=m
+CONFIG_I2C_COMPAT=y
+CONFIG_I2C_DESIGNWARE_BAYTRAIL=y
+CONFIG_I2C_DESIGNWARE_PLATFORM=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_GPIO_FAULT_INJECTOR=y
+CONFIG_I2C_HELPER_AUTO=y
+CONFIG_I2C_HID=m
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_I801=m
+CONFIG_I2C_ISCH=m
+CONFIG_I2C_ISMT=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MUX=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_NFORCE2=m
+CONFIG_I2C_NFORCE2_S4985=m
+CONFIG_I2C_PARPORT=m
+CONFIG_I2C_PARPORT_LIGHT=m
+CONFIG_I2C_PCA_PLATFORM=m
+CONFIG_I2C_PIIX4=m
+CONFIG_I2C_SCMI=m
+CONFIG_I2C_SIMTEC=m
+CONFIG_I2C_SIS96X=m
+CONFIG_I2C_SMBUS=m
+CONFIG_I2C_STUB=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VIA=m
+CONFIG_I2C_VIAPRO=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I40E_DCB=y
+CONFIG_I6300ESB_WDT=m
+CONFIG_I8K=m
+CONFIG_IA32_EMULATION=y
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_ICE=m
+CONFIG_ICPLUS_PHY=m
+CONFIG_IDEAPAD_LAPTOP=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IE6XX_WDT=m
+CONFIG_IEEE802154=m
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IFCVF=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IKHEADERS=m
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_ARCH_POLICY=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET=y
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_BNXT_RE=m
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_EFA=m
+CONFIG_INFINIBAND_HFI1=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_ISER=m
+CONFIG_INFINIBAND_ISERT=m
+CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
+CONFIG_INFINIBAND_OPA_VNIC=m
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_SRP=m
+CONFIG_INFINIBAND_SRPT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USER_MAD=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_EVDEV=y
+CONFIG_INPUT_FF_MEMLESS=m
+CONFIG_INPUT_GP2A=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_JOYDEV=m
+CONFIG_INPUT_KEYBOARD=y
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MISC=y
+CONFIG_INPUT_MOUSE=y
+CONFIG_INPUT_MOUSEDEV=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_PCSPKR=m
+CONFIG_INPUT_POLLDEV=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_SPARSEKMAP=m
+CONFIG_INPUT_TABLET=y
+CONFIG_INPUT_TOUCHSCREEN=y
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INT340X_THERMAL=m
+CONFIG_INTEGRITY=y
+CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_PLATFORM_KEYRING=y
+CONFIG_INTEGRITY_SIGNATURE=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_HFI_THERMAL=y
+CONFIG_INTEL_HID_EVENT=m
+CONFIG_INTEL_IDLE=y
+CONFIG_INTEL_IDMA64=m
+CONFIG_INTEL_IDXD=m
+CONFIG_INTEL_IDXD_PERFMON=y
+CONFIG_INTEL_IDXD_SVM=y
+CONFIG_INTEL_IFS=m
+CONFIG_INTEL_IOATDMA=m
+CONFIG_INTEL_IOMMU=y
+CONFIG_INTEL_IOMMU_DEBUGFS=y
+CONFIG_INTEL_IOMMU_FLOPPY_WA=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_IOMMU_SVM=y
+CONFIG_INTEL_IPS=m
+CONFIG_INTEL_ISHTP_ECLITE=m
+CONFIG_INTEL_ISH_HID=m
+CONFIG_INTEL_MEI=m
+CONFIG_INTEL_MEI_ME=m
+CONFIG_INTEL_MEI_WDT=m
+CONFIG_INTEL_OAKTRAIL=m
+CONFIG_INTEL_PCH_THERMAL=m
+CONFIG_INTEL_PMC_CORE=m
+CONFIG_INTEL_PMT_CRASHLOG=m
+CONFIG_INTEL_PMT_TELEMETRY=m
+CONFIG_INTEL_POWERCLAMP=m
+CONFIG_INTEL_QEP=m
+CONFIG_INTEL_RAPL=m
+CONFIG_INTEL_RST=m
+CONFIG_INTEL_SDSI=m
+CONFIG_INTEL_SPEED_SELECT_INTERFACE=m
+CONFIG_INTEL_TDX_GUEST=y
+CONFIG_INTEL_TH=m
+CONFIG_INTEL_TH_ACPI=m
+CONFIG_INTEL_TH_GTH=m
+CONFIG_INTEL_TH_MSU=m
+CONFIG_INTEL_TH_PCI=m
+CONFIG_INTEL_TH_PTI=m
+CONFIG_INTEL_TH_STH=m
+CONFIG_INTEL_TURBO_MAX_3=y
+CONFIG_INTEL_TXT=y
+CONFIG_INTEL_UNCORE_FREQ_CONTROL=m
+CONFIG_INTEL_VBTN=m
+CONFIG_INTEL_VSEC=m
+CONFIG_INTEL_WMI_THUNDERBOLT=m
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IOMMU_DEBUGFS=y
+CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IOSF_MBI=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_DEVICE_INTERFACE=m
+CONFIG_IPMI_HANDLER=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DEBUG=y
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IRQ_REMAP=y
+CONFIG_IRQ_TIME_ACCOUNTING=y
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_ISCSI_IBFT=m
+CONFIG_ISCSI_IBFT_FIND=y
+CONFIG_ISCSI_TARGET=m
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN=y
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISL29003=m
+CONFIG_ISL29020=m
+CONFIG_ISO9660_FS=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUG=y
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IWLWIFI_DEVICE_TRACING=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KARMA_PARTITION=y
+CONFIG_KASAN=y
+CONFIG_KASAN_INLINE=y
+CONFIG_KASAN_VMALLOC=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x0
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEXEC_JUMP=y
+CONFIG_KEXEC_SIG=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYS=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KSM=y
+CONFIG_KUNIT=m
+CONFIG_KUNIT_ALL_TESTS=m
+CONFIG_KVM=m
+CONFIG_KVM_AMD=m
+CONFIG_KVM_AMD_SEV=y
+CONFIG_KVM_GUEST=y
+CONFIG_KVM_INTEL=m
+CONFIG_KVM_MMU_AUDIT=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LATENCYTOP=y
+CONFIG_LCD_CLASS_DEVICE=m
+CONFIG_LCD_PLATFORM=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBCRC32C=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOAD_UEFI_KEYS=y
+CONFIG_LOCALVERSION=""
+CONFIG_LOCKD=m
+CONFIG_LOCKDEP_BITS=16
+CONFIG_LOCKDEP_CHAINS_BITS=17
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT=y
+CONFIG_LOCK_DOWN_KERNEL=y
+CONFIG_LOCK_EVENT_COUNTS=y
+CONFIG_LOCK_STAT=y
+CONFIG_LOCK_TORTURE_TEST=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=20
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=m
+CONFIG_LPC_ICH=m
+CONFIG_LPC_SCH=m
+CONFIG_LSI_ET1011C_PHY=m
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_LXT_PHY=m
+CONFIG_MAC80211=m
+CONFIG_MAC80211_DEBUGFS=y
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_MESSAGE_TRACING=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACB=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACINTOSH_DRIVERS=y
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAC_PARTITION=y
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MAILBOX=y
+CONFIG_MANA_INFINIBAND=m
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MARVELL_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAXSMP=y
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MD=y
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_BITBANG=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_SUPPORT=m
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MEGARAID_SAS=m
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
 CONFIG_MEMCG_SWAP_ENABLED=y
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-CONFIG_DEBUG_BLK_CGROUP=y
-CONFIG_CHECKPOINT_RESTORE=y
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-CONFIG_SCHED_AUTOGROUP=y
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_HAVE_UID16=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_HAVE_PCSPKR_PLATFORM=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-CONFIG_UID16=y
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_PCSPKR_PLATFORM=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-CONFIG_USERFAULTFD=y
-CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
-CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
-CONFIG_PCI_QUIRKS=y
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_HOTPLUG_SMT=y
-CONFIG_OPROFILE=m
-CONFIG_OPROFILE_EVENT_MULTIPLEX=y
-CONFIG_HAVE_OPROFILE=y
-CONFIG_OPROFILE_NMI_TIMER=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_OPTPROBES=y
-CONFIG_KPROBES_ON_FTRACE=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_ARCH_USE_BUILTIN_BSWAP=y
-CONFIG_KRETPROBES=y
-CONFIG_USER_RETURN_NOTIFIER=y
-CONFIG_HAVE_IOREMAP_PROT=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_OPTPROBES=y
-CONFIG_HAVE_KPROBES_ON_FTRACE=y
-CONFIG_HAVE_KPROBE_OVERRIDE=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_CLK=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_HW_BREAKPOINT=y
-CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
-CONFIG_HAVE_USER_RETURN_NOTIFIER=y
-CONFIG_HAVE_PERF_EVENTS_NMI=y
-CONFIG_HAVE_PERF_REGS=y
-CONFIG_HAVE_PERF_USER_STACK_DUMP=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_HAVE_RCU_TABLE_FREE=y
-CONFIG_HAVE_RCU_TABLE_INVALIDATE=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
-CONFIG_HAVE_CMPXCHG_LOCAL=y
-CONFIG_HAVE_CMPXCHG_DOUBLE=y
-CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-CONFIG_HAVE_CC_STACKPROTECTOR=y
-CONFIG_CC_STACKPROTECTOR=y
-# CONFIG_CC_STACKPROTECTOR_NONE is not set
-# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
-CONFIG_CC_STACKPROTECTOR_STRONG=y
-CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
-CONFIG_HAVE_CONTEXT_TRACKING=y
-CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
-CONFIG_HAVE_ARCH_SOFT_DIRTY=y
-CONFIG_HAVE_ARCH_HUGE_VMAP=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_HAVE_STACK_VALIDATION=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
-CONFIG_ARCH_MMAP_RND_BITS=28
-CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
-CONFIG_HAVE_RELIABLE_STACKTRACE=y
-CONFIG_OLD_SIGSUSPEND3=y
-CONFIG_COMPAT_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-CONFIG_SYSTEM_BLACKLIST_KEYRING=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK=m
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_REALTEK_USB=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_INTEL_LPSS=m
+CONFIG_MFD_INTEL_LPSS_ACPI=m
+CONFIG_MFD_INTEL_LPSS_PCI=m
+CONFIG_MFD_SM501=m
+CONFIG_MFD_SM501_GPIO=y
+CONFIG_MFD_VIPERBOARD=m
+CONFIG_MFD_VX855=m
+CONFIG_MHI_BUS=m
+CONFIG_MHI_BUS_PCI_GENERIC=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICREL_PHY=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROCODE=y
+CONFIG_MICROCODE_AMD=y
+CONFIG_MICROCODE_INTEL=y
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MICROSOFT_MANA=m
+CONFIG_MIGRATION=y
+CONFIG_MII=m
+CONFIG_MINIX_SUBPARTITION=y
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_MISC_RTSX_PCI=m
+CONFIG_MISC_RTSX_USB=m
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCMULTI=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_I2C=m
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC=m
+CONFIG_MMC_BLOCK=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_RICOH_MMC=y
+CONFIG_MMC_SDHCI=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_SDHCI_PCI=m
+CONFIG_MMC_SDHCI_PLTFM=m
+CONFIG_MMC_TIFM_SD=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VIA_SDMMC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMIOTRACE=y
+CONFIG_MMU=y
 CONFIG_MODULES=y
 CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
 CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
 CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_UEFI=y
-# CONFIG_MODULE_SIG_SHA1 is not set
-# CONFIG_MODULE_SIG_SHA224 is not set
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
 CONFIG_MODULE_SIG_SHA256=y
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha256"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-CONFIG_OSF_PARTITION=y
-CONFIG_AMIGA_PARTITION=y
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_MAC_PARTITION=y
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-# CONFIG_LDM_PARTITION is not set
-CONFIG_SGI_PARTITION=y
-# CONFIG_ULTRIX_PARTITION is not set
-CONFIG_SUN_PARTITION=y
-CONFIG_KARMA_PARTITION=y
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_BLOCK_COMPAT=y
-CONFIG_BLK_MQ_PCI=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MOUSE_APPLETOUCH=m
+CONFIG_MOUSE_BCM5974=m
+CONFIG_MOUSE_CYAPA=m
+CONFIG_MOUSE_ELAN_I2C=m
+CONFIG_MOUSE_ELAN_I2C_I2C=y
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_PS2=y
+CONFIG_MOUSE_PS2_ELANTECH=y
+CONFIG_MOUSE_PS2_SENTELIC=y
+CONFIG_MOUSE_PS2_VMMOUSE=y
+CONFIG_MOUSE_SERIAL=m
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MOUSE_VSXXXAA=m
+CONFIG_MPILIB=y
+CONFIG_MPLS=y
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPTCP=y
+CONFIG_MPTCP_HMAC_TEST=y
+CONFIG_MPTCP_IPV6=y
 CONFIG_MQ_IOSCHED_DEADLINE=y
 CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PREEMPT_NOTIFIERS=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_UNINLINE_SPIN_UNLOCK=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
-CONFIG_QUEUED_SPINLOCKS=y
-CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
-CONFIG_QUEUED_RWLOCKS=y
-CONFIG_FREEZER=y
-
-#
-# Processor type and features
-#
-CONFIG_ZONE_DMA=y
-CONFIG_SMP=y
-CONFIG_X86_X2APIC=y
-CONFIG_X86_MPPARSE=y
-CONFIG_RETPOLINE=y
-CONFIG_INTEL_RDT=y
-CONFIG_X86_EXTENDED_PLATFORM=y
-# CONFIG_X86_NUMACHIP is not set
-# CONFIG_X86_VSMP is not set
-CONFIG_X86_UV=y
-CONFIG_X86_INTEL_LPSS=y
-CONFIG_X86_AMD_PLATFORM_DEVICE=y
-# CONFIG_IOSF_MBI_DEBUG is not set
-CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_HYPERVISOR_GUEST=y
-CONFIG_PARAVIRT=y
-# CONFIG_PARAVIRT_DEBUG is not set
-CONFIG_PARAVIRT_SPINLOCKS=y
-# CONFIG_QUEUED_LOCK_STAT is not set
-CONFIG_XEN=y
-# CONFIG_XEN_DOM0 is not set
-# CONFIG_XEN_PRIVILEGED_GUEST is not set
-CONFIG_XEN_PVHVM=y
-CONFIG_XEN_MAX_DOMAIN_MEMORY=500
-CONFIG_XEN_SAVE_RESTORE=y
-# CONFIG_XEN_DEBUG_FS is not set
-CONFIG_KVM_GUEST=y
-CONFIG_ARCH_CPUIDLE_HALTPOLL=y
-# CONFIG_KVM_DEBUG_FS is not set
-CONFIG_PARAVIRT_TIME_ACCOUNTING=y
-CONFIG_PARAVIRT_CLOCK=y
-CONFIG_NO_BOOTMEM=y
-# CONFIG_MEMTEST is not set
-# CONFIG_MK8 is not set
-# CONFIG_MPSC is not set
-# CONFIG_MCORE2 is not set
-# CONFIG_MATOM is not set
-CONFIG_GENERIC_CPU=y
-CONFIG_X86_INTERNODE_CACHE_SHIFT=6
-CONFIG_X86_L1_CACHE_SHIFT=6
-CONFIG_X86_TSC=y
-CONFIG_X86_CMPXCHG64=y
-CONFIG_X86_CMOV=y
-CONFIG_X86_MINIMUM_CPU_FAMILY=64
-CONFIG_X86_DEBUGCTLMSR=y
-CONFIG_CPU_SUP_INTEL=y
-CONFIG_CPU_SUP_AMD=y
-CONFIG_CPU_SUP_CENTAUR=y
-CONFIG_HPET_TIMER=y
-CONFIG_HPET_EMULATE_RTC=y
-CONFIG_DMI=y
-CONFIG_GART_IOMMU=y
-# CONFIG_CALGARY_IOMMU is not set
-CONFIG_SWIOTLB=y
-CONFIG_IOMMU_HELPER=y
-CONFIG_MAXSMP=y
-CONFIG_NR_CPUS=5120
-CONFIG_SCHED_SMT=y
-CONFIG_SCHED_MC=y
-CONFIG_SCHED_MC_PRIO=y
-# CONFIG_PREEMPT_NONE is not set
-CONFIG_PREEMPT_VOLUNTARY=y
-# CONFIG_PREEMPT is not set
-CONFIG_PREEMPT_COUNT=y
-CONFIG_X86_LOCAL_APIC=y
-CONFIG_X86_IO_APIC=y
-CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
-CONFIG_X86_MCE=y
-CONFIG_X86_MCE_INTEL=y
-CONFIG_X86_MCE_AMD=y
-CONFIG_X86_MCE_THRESHOLD=y
-CONFIG_X86_MCE_INJECT=m
-CONFIG_X86_THERMAL_VECTOR=y
-
-#
-# Performance monitoring
-#
-CONFIG_PERF_EVENTS_INTEL_UNCORE=y
-CONFIG_PERF_EVENTS_INTEL_RAPL=y
-CONFIG_X86_16BIT=y
-CONFIG_I8K=m
-CONFIG_MICROCODE=y
-CONFIG_MICROCODE_INTEL=y
-CONFIG_MICROCODE_AMD=y
-CONFIG_MICROCODE_OLD_INTERFACE=y
-CONFIG_X86_MSR=y
-CONFIG_X86_CPUID=y
-CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_DIRECT_GBPAGES=y
-CONFIG_TRACK_DIRTY_PAGES=y
-CONFIG_ARCH_HAS_MEM_ENCRYPT=y
-CONFIG_AMD_MEM_ENCRYPT=y
-# CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set
-CONFIG_ARCH_USE_MEMREMAP_PROT=y
-CONFIG_NUMA=y
-CONFIG_AMD_NUMA=y
-CONFIG_X86_64_ACPI_NUMA=y
-CONFIG_NODES_SPAN_OTHER_NODES=y
-CONFIG_NUMA_EMU=y
-CONFIG_NODES_SHIFT=10
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_MEMORY_PROBE=y
-CONFIG_ARCH_PROC_KCORE_TEXT=y
-CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_NEED_MULTIPLE_NODES=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_ARCH_DISCARD_MEMBLOCK=y
-CONFIG_MEMORY_ISOLATION=y
-CONFIG_MOVABLE_NODE=y
-CONFIG_HAVE_BOOTMEM_INFO_NODE=y
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
-CONFIG_HMM=y
-CONFIG_HMM_MIRROR=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_VIRT_TO_BUS=y
-CONFIG_MMU_NOTIFIER=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_MEMORY_FAILURE=y
-CONFIG_HWPOISON_INJECT=m
-CONFIG_TRANSPARENT_HUGEPAGE=y
-CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
-# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-CONFIG_FRONTSWAP=y
-CONFIG_CMA=y
-# CONFIG_CMA_DEBUG is not set
-CONFIG_MEM_SOFT_DIRTY=y
-CONFIG_ZSWAP=y
-CONFIG_ZPOOL=y
-CONFIG_ZBUD=y
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y
-CONFIG_DEFERRED_STRUCT_PAGE_INIT=y
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ZONE_DEVICE=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-CONFIG_ARCH_HAS_PKEYS=y
-CONFIG_PERCPU_STATS=y
-CONFIG_X86_PMEM_LEGACY_DEVICE=y
-CONFIG_X86_PMEM_LEGACY=m
-CONFIG_X86_CHECK_BIOS_CORRUPTION=y
-CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
-CONFIG_X86_RESERVE_LOW=64
+CONFIG_MSDOS_FS=m
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MSI_LAPTOP=m
+CONFIG_MSI_WMI=m
+CONFIG_MSPRO_BLOCK=m
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD=m
+CONFIG_MTD_BLOCK=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
 CONFIG_MTRR=y
 CONFIG_MTRR_SANITIZER=y
 CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
 CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
-CONFIG_X86_PAT=y
-CONFIG_ARCH_USES_PG_UNCACHED=y
-CONFIG_ARCH_RANDOM=y
-CONFIG_X86_SMAP=y
-# CONFIG_X86_INTEL_TSX_MODE_OFF is not set
-CONFIG_X86_INTEL_TSX_MODE_ON=y
-# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set
-CONFIG_EFI=y
-CONFIG_EFI_STUB=y
-CONFIG_EFI_SECURE_BOOT_SECURELEVEL=y
-CONFIG_EFI_MIXED=y
-CONFIG_SECCOMP=y
-# CONFIG_HZ_100 is not set
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-CONFIG_HZ_1000=y
-CONFIG_HZ=1000
-CONFIG_SCHED_HRTICK=y
-CONFIG_KEXEC=y
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_KEXEC_FILE=y
-CONFIG_KEXEC_VERIFY_SIG=y
-CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y
-CONFIG_CRASH_DUMP=y
-CONFIG_KEXEC_JUMP=y
-CONFIG_PHYSICAL_START=0x1000000
-CONFIG_RELOCATABLE=y
-CONFIG_RANDOMIZE_BASE=y
-CONFIG_X86_NEED_RELOCS=y
-CONFIG_PHYSICAL_ALIGN=0x200000
-CONFIG_RANDOMIZE_MEMORY=y
-CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa
-CONFIG_HOTPLUG_CPU=y
-CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
-# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
-# CONFIG_COMPAT_VDSO is not set
-# CONFIG_CMDLINE_BOOL is not set
-CONFIG_HAVE_LIVEPATCH=y
-CONFIG_LIVEPATCH=y
-CONFIG_ARCH_HAS_ADD_PAGES=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_USE_PERCPU_NUMA_NODE_ID=y
-
-#
-# Power management and ACPI options
-#
-CONFIG_ARCH_HIBERNATION_HEADER=y
-CONFIG_SUSPEND=y
-CONFIG_SUSPEND_FREEZER=y
-CONFIG_HIBERNATE_CALLBACKS=y
-CONFIG_HIBERNATION=y
-CONFIG_PM_STD_PARTITION=""
-CONFIG_PM_SLEEP=y
-CONFIG_PM_SLEEP_SMP=y
-# CONFIG_PM_AUTOSLEEP is not set
-# CONFIG_PM_WAKELOCKS is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-# CONFIG_PM_TEST_SUSPEND is not set
-CONFIG_PM_SLEEP_DEBUG=y
-CONFIG_PM_TRACE=y
-CONFIG_PM_TRACE_RTC=y
-CONFIG_PM_CLK=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_ACPI=y
-CONFIG_ACPI_SLEEP=y
-CONFIG_ACPI_PROCFS=y
-CONFIG_ACPI_LPIT=y
-# CONFIG_ACPI_PROCFS_POWER is not set
-CONFIG_ACPI_EC_DEBUGFS=m
-# CONFIG_ACPI_PROC_EVENT is not set
-CONFIG_ACPI_AC=y
-CONFIG_ACPI_BATTERY=y
-CONFIG_ACPI_BUTTON=y
-CONFIG_ACPI_VIDEO=m
-CONFIG_ACPI_FAN=y
-CONFIG_ACPI_DOCK=y
-CONFIG_ACPI_CPPC_LIB=y
-CONFIG_ACPI_PROCESSOR=y
-CONFIG_ACPI_IPMI=m
-CONFIG_ACPI_HOTPLUG_CPU=y
-CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
-CONFIG_ACPI_THERMAL=y
-CONFIG_ACPI_NUMA=y
-# CONFIG_ACPI_CUSTOM_DSDT is not set
-CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
-# CONFIG_ACPI_DEBUG is not set
-CONFIG_ACPI_PCI_SLOT=y
-CONFIG_X86_PM_TIMER=y
-CONFIG_ACPI_CONTAINER=y
-CONFIG_ACPI_HOTPLUG_MEMORY=y
-CONFIG_ACPI_SBS=m
-CONFIG_ACPI_HED=y
-CONFIG_ACPI_CUSTOM_METHOD=m
-CONFIG_ACPI_BGRT=y
-CONFIG_ACPI_NFIT=m
-# CONFIG_NFIT_SECURITY_DEBUG is not set
-CONFIG_ACPI_APEI=y
-CONFIG_ACPI_APEI_GHES=y
-CONFIG_ACPI_APEI_PCIEAER=y
-CONFIG_ACPI_APEI_MEMORY_FAILURE=y
-CONFIG_ACPI_APEI_EINJ=m
-# CONFIG_ACPI_APEI_ERST_DEBUG is not set
-# CONFIG_DPTF_POWER is not set
-CONFIG_ACPI_WATCHDOG=y
-CONFIG_ACPI_EXTLOG=m
-CONFIG_ACPI_ADXL=y
-CONFIG_SFI=y
-
-#
-# CPU Frequency scaling
-#
-CONFIG_CPU_FREQ=y
-CONFIG_CPU_FREQ_GOV_COMMON=y
-CONFIG_CPU_FREQ_STAT=m
-CONFIG_CPU_FREQ_STAT_DETAILS=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
-CONFIG_CPU_FREQ_GOV_POWERSAVE=y
-CONFIG_CPU_FREQ_GOV_USERSPACE=y
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
-CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
-
-#
-# x86 CPU frequency scaling drivers
-#
-CONFIG_X86_INTEL_PSTATE=y
-CONFIG_X86_PCC_CPUFREQ=m
-CONFIG_X86_ACPI_CPUFREQ=m
-CONFIG_X86_ACPI_CPUFREQ_CPB=y
-CONFIG_X86_POWERNOW_K8=m
-CONFIG_X86_AMD_FREQ_SENSITIVITY=m
-# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
-CONFIG_X86_P4_CLOCKMOD=m
-
-#
-# shared options
-#
-CONFIG_X86_SPEEDSTEP_LIB=m
-CONFIG_CPU_IDLE=y
-# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
-# CONFIG_CPU_IDLE_GOV_LADDER is not set
-CONFIG_CPU_IDLE_GOV_MENU=y
-CONFIG_CPU_IDLE_GOV_HALTPOLL=y
-CONFIG_HALTPOLL_CPUIDLE=m
-# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
-CONFIG_INTEL_IDLE=y
-
-#
-# Memory power savings
-#
-CONFIG_I7300_IDLE_IOAT_CHANNEL=y
-CONFIG_I7300_IDLE=m
-
-#
-# Bus options (PCI etc.)
-#
-CONFIG_PCI=y
-CONFIG_PCI_DIRECT=y
-CONFIG_PCI_MMCONFIG=y
-CONFIG_PCI_XEN=y
-CONFIG_PCI_DOMAINS=y
-CONFIG_PCIEPORTBUS=y
-CONFIG_HOTPLUG_PCI_PCIE=y
-CONFIG_PCIEAER=y
-CONFIG_PCIE_ECRC=y
-CONFIG_PCIEAER_INJECT=m
-CONFIG_PCIEASPM=y
-# CONFIG_PCIEASPM_DEBUG is not set
-CONFIG_PCIEASPM_DEFAULT=y
-# CONFIG_PCIEASPM_POWERSAVE is not set
-# CONFIG_PCIEASPM_PERFORMANCE is not set
-CONFIG_PCIE_PME=y
-# CONFIG_PCIE_DPC is not set
-CONFIG_PCI_BUS_ADDR_T_64BIT=y
-CONFIG_PCI_MSI=y
-# CONFIG_PCI_DEBUG is not set
-# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
-CONFIG_PCI_STUB=y
-# CONFIG_XEN_PCIDEV_FRONTEND is not set
-CONFIG_PCI_HYPERV=m
-CONFIG_HT_IRQ=y
-CONFIG_PCI_ATS=y
-CONFIG_PCI_IOV=y
-CONFIG_PCI_PRI=y
-CONFIG_PCI_PASID=y
-CONFIG_PCI_IOAPIC=y
-CONFIG_PCI_LABEL=y
-CONFIG_HOTPLUG_PCI=y
-CONFIG_HOTPLUG_PCI_ACPI=y
-CONFIG_HOTPLUG_PCI_ACPI_IBM=m
-# CONFIG_HOTPLUG_PCI_CPCI is not set
-CONFIG_HOTPLUG_PCI_SHPC=y
-CONFIG_ISA_DMA_API=y
-CONFIG_AMD_NB=y
-CONFIG_PCCARD=y
-# CONFIG_PCMCIA is not set
-CONFIG_CARDBUS=y
-
-#
-# PC-card bridges
-#
-CONFIG_YENTA=m
-CONFIG_YENTA_O2=y
-CONFIG_YENTA_RICOH=y
-CONFIG_YENTA_TI=y
-CONFIG_YENTA_ENE_TUNE=y
-CONFIG_YENTA_TOSHIBA=y
-# CONFIG_RAPIDIO is not set
-
-#
-# Executable file formats / Emulations
-#
-CONFIG_BINFMT_ELF=y
-CONFIG_COMPAT_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_COREDUMP=y
-CONFIG_IA32_EMULATION=y
-# CONFIG_IA32_AOUT is not set
-# CONFIG_X86_X32 is not set
-CONFIG_COMPAT=y
-CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
-CONFIG_SYSVIPC_COMPAT=y
-CONFIG_HAVE_TEXT_POKE_SMP=y
-CONFIG_X86_DEV_DMA_OPS=y
-CONFIG_IOSF_MBI=m
-CONFIG_VMD=y
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_NATIONAL_PHY=m
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
 CONFIG_NET=y
-CONFIG_COMPAT_NETLINK_MESSAGES=y
-CONFIG_NET_INGRESS=y
-CONFIG_NET_EGRESS=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_PACKET_DIAG=m
-CONFIG_UNIX=y
-CONFIG_UNIX_DIAG=m
-CONFIG_XFRM=y
-CONFIG_XFRM_ALGO=y
-CONFIG_XFRM_USER=y
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-CONFIG_XFRM_STATISTICS=y
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_FIB_TRIE_STATS=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-CONFIG_NET_IPGRE_DEMUX=m
-CONFIG_NET_IP_TUNNEL=m
-CONFIG_NET_IPGRE=m
-CONFIG_NET_IPGRE_BROADCAST=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NET_IPVTI=m
-CONFIG_NET_UDP_TUNNEL=m
-# CONFIG_NET_FOU is not set
-# CONFIG_NET_FOU_IP_TUNNELS is not set
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=y
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_INET_UDP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_TCP_CONG_DCTCP=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=m
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_VTI=m
-CONFIG_IPV6_SIT=m
-CONFIG_IPV6_SIT_6RD=y
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_GRE=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-# CONFIG_IPV6_SUBTREES is not set
-CONFIG_IPV6_MROUTE=y
-CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IPV6_PIMSM_V2=y
-CONFIG_NETLABEL=y
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVICES=y
+CONFIG_NETDEVSIM=m
 CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
 CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=m
-
-#
-# Core Netfilter Configuration
-#
+CONFIG_NETFILTER_INGRESS=y
 CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_ACCT=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
 CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_LOG_COMMON=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_ZONES=y
-CONFIG_NF_CONNTRACK_PROCFS=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-CONFIG_NF_CONNTRACK_TIMEOUT=y
-CONFIG_NF_CONNTRACK_TIMESTAMP=y
-CONFIG_NF_CONNTRACK_LABELS=y
-CONFIG_NF_CT_PROTO_DCCP=y
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=y
-CONFIG_NF_CT_PROTO_UDPLITE=y
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-CONFIG_NF_CONNTRACK_SNMP=m
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NF_CT_NETLINK_TIMEOUT=m
-CONFIG_NF_CT_NETLINK_HELPER=m
-CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_NF_NAT_PROTO_DCCP=y
-CONFIG_NF_NAT_PROTO_UDPLITE=y
-CONFIG_NF_NAT_PROTO_SCTP=y
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_REDIRECT=m
-CONFIG_NETFILTER_SYNPROXY=m
-CONFIG_NF_TABLES=m
-CONFIG_NF_TABLES_INET=m
-CONFIG_NFT_EXTHDR=m
-CONFIG_NFT_META=m
-CONFIG_NFT_CT=m
-CONFIG_NFT_RBTREE=m
-CONFIG_NFT_HASH=m
-CONFIG_NFT_COUNTER=m
-CONFIG_NFT_LOG=m
-CONFIG_NFT_LIMIT=m
-CONFIG_NFT_MASQ=m
-CONFIG_NFT_REDIR=m
-CONFIG_NFT_NAT=m
-CONFIG_NFT_QUEUE=m
-CONFIG_NFT_REJECT=m
-CONFIG_NFT_REJECT_INET=m
-CONFIG_NFT_COMPAT=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
 CONFIG_NETFILTER_XTABLES=y
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
 CONFIG_NETFILTER_XT_CONNMARK=m
-CONFIG_NETFILTER_XT_SET=m
-
-#
-# Xtables targets
-#
-CONFIG_NETFILTER_XT_TARGET_AUDIT=m
-CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-CONFIG_NETFILTER_XT_TARGET_CT=m
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-CONFIG_NETFILTER_XT_TARGET_HMARK=m
-CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
-CONFIG_NETFILTER_XT_TARGET_LED=m
-CONFIG_NETFILTER_XT_TARGET_LOG=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_NAT=m
-CONFIG_NETFILTER_XT_TARGET_NETMAP=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
-CONFIG_NETFILTER_XT_TARGET_TEE=m
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
+CONFIG_NETFILTER_XT_MARK=m
 CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
 CONFIG_NETFILTER_XT_MATCH_BPF=m
 CONFIG_NETFILTER_XT_MATCH_CGROUP=m
@@ -1050,12 +4102,11 @@
 CONFIG_NETFILTER_XT_MATCH_MAC=m
 CONFIG_NETFILTER_XT_MATCH_MARK=m
 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_NFACCT=m
 CONFIG_NETFILTER_XT_MATCH_OSF=m
 CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
 CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
 CONFIG_NETFILTER_XT_MATCH_QUOTA=m
 CONFIG_NETFILTER_XT_MATCH_RATEEST=m
 CONFIG_NETFILTER_XT_MATCH_REALM=m
@@ -1066,4877 +4117,274 @@
 CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
 CONFIG_NETFILTER_XT_MATCH_STRING=m
 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
 CONFIG_NETFILTER_XT_MATCH_U32=m
-CONFIG_IP_SET=m
-CONFIG_IP_SET_MAX=256
-CONFIG_IP_SET_BITMAP_IP=m
-CONFIG_IP_SET_BITMAP_IPMAC=m
-CONFIG_IP_SET_BITMAP_PORT=m
-CONFIG_IP_SET_HASH_IP=m
-CONFIG_IP_SET_HASH_IPMARK=m
-CONFIG_IP_SET_HASH_IPPORT=m
-CONFIG_IP_SET_HASH_IPPORTIP=m
-CONFIG_IP_SET_HASH_IPPORTNET=m
-CONFIG_IP_SET_HASH_IPMAC=m
-CONFIG_IP_SET_HASH_MAC=m
-CONFIG_IP_SET_HASH_NETPORTNET=m
-CONFIG_IP_SET_HASH_NET=m
-CONFIG_IP_SET_HASH_NETNET=m
-CONFIG_IP_SET_HASH_NETPORT=m
-CONFIG_IP_SET_HASH_NETIFACE=m
-CONFIG_IP_SET_LIST_SET=m
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-CONFIG_IP_VS_DEBUG=y
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-CONFIG_IP_VS_PROTO_SCTP=y
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS SH scheduler
-#
-CONFIG_IP_VS_SH_TAB_BITS=8
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-CONFIG_IP_VS_PE_SIP=m
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
-CONFIG_NF_TABLES_IPV4=m
-CONFIG_NFT_CHAIN_ROUTE_IPV4=m
-CONFIG_NFT_REJECT_IPV4=m
-CONFIG_NFT_DUP_IPV4=m
-CONFIG_NF_TABLES_ARP=m
-CONFIG_NF_DUP_IPV4=m
-CONFIG_NF_LOG_IPV4=m
-CONFIG_NF_REJECT_IPV4=m
-CONFIG_NF_NAT_IPV4=m
-CONFIG_NFT_CHAIN_NAT_IPV4=m
-CONFIG_NF_NAT_MASQUERADE_IPV4=m
-CONFIG_NFT_MASQ_IPV4=m
-CONFIG_NFT_REDIR_IPV4=m
-CONFIG_NF_NAT_SNMP_BASIC=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_RPFILTER=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_SYNPROXY=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_IP_NF_NAT=m
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_NF_TABLES_IPV6=m
-CONFIG_NFT_CHAIN_ROUTE_IPV6=m
-CONFIG_NFT_REJECT_IPV6=m
-CONFIG_NFT_DUP_IPV6=m
-CONFIG_NF_DUP_IPV6=m
-CONFIG_NF_REJECT_IPV6=m
-CONFIG_NF_LOG_IPV6=m
-CONFIG_NF_NAT_IPV6=m
-CONFIG_NFT_CHAIN_NAT_IPV6=m
-CONFIG_NF_NAT_MASQUERADE_IPV6=m
-CONFIG_NFT_MASQ_IPV6=m
-CONFIG_NFT_REDIR_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RPFILTER=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_TARGET_SYNPROXY=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-CONFIG_IP6_NF_NAT=m
-CONFIG_IP6_NF_TARGET_MASQUERADE=m
-CONFIG_IP6_NF_TARGET_NPT=m
-CONFIG_NF_TABLES_BRIDGE=m
-CONFIG_NFT_BRIDGE_META=m
-CONFIG_NFT_BRIDGE_REJECT=m
-CONFIG_NF_LOG_BRIDGE=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-CONFIG_NET_SCTPPROBE=m
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
-CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
-CONFIG_SCTP_COOKIE_HMAC_MD5=y
-CONFIG_SCTP_COOKIE_HMAC_SHA1=y
-CONFIG_INET_SCTP_DIAG=m
-# CONFIG_RDS is not set
-# CONFIG_TIPC is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-# CONFIG_ATM_MPOA is not set
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-CONFIG_L2TP=m
-CONFIG_L2TP_DEBUGFS=m
-CONFIG_L2TP_V3=y
-CONFIG_L2TP_IP=m
-CONFIG_L2TP_ETH=m
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_MRP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-CONFIG_BRIDGE_VLAN_FILTERING=y
-CONFIG_HAVE_NET_DSA=y
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_VLAN_8021Q_MVRP=y
-# CONFIG_DECNET is not set
-CONFIG_LLC=m
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_6LOWPAN=m
-# CONFIG_6LOWPAN_DEBUGFS is not set
-CONFIG_6LOWPAN_NHC=m
-CONFIG_6LOWPAN_NHC_DEST=m
-CONFIG_6LOWPAN_NHC_FRAGMENT=m
-CONFIG_6LOWPAN_NHC_HOP=m
-CONFIG_6LOWPAN_NHC_IPV6=m
-CONFIG_6LOWPAN_NHC_MOBILITY=m
-CONFIG_6LOWPAN_NHC_ROUTING=m
-CONFIG_6LOWPAN_NHC_UDP=m
-# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set
-# CONFIG_6LOWPAN_GHC_UDP is not set
-# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_IEEE802154_6LOWPAN=m
-CONFIG_MAC802154=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=m
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_FC=y
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_NSH=y
+CONFIG_NET_PACKET_ENGINE=y
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_NET_RX_BUSY_POLL=y
 CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
 CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
 CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
 CONFIG_NET_SCH_RED=m
 CONFIG_NET_SCH_SFB=m
 CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
 CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_CBS=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-CONFIG_NET_SCH_MQPRIO=m
-CONFIG_NET_SCH_CHOKE=m
-CONFIG_NET_SCH_QFQ=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_SCH_FQ=m
-# CONFIG_NET_SCH_HHF is not set
-# CONFIG_NET_SCH_PIE is not set
-CONFIG_NET_SCH_INGRESS=m
-CONFIG_NET_SCH_PLUG=m
-# CONFIG_NET_SCH_DEFAULT is not set
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_CLS_BPF=m
-CONFIG_NET_CLS_FLOWER=m
-CONFIG_NET_CLS_MATCHALL=m
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-# CONFIG_NET_EMATCH_CANID is not set
-CONFIG_NET_EMATCH_IPSET=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_SAMPLE=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-CONFIG_NET_ACT_CSUM=m
-CONFIG_NET_ACT_VLAN=m
-CONFIG_NET_ACT_TUNNEL_KEY=m
-CONFIG_NET_ACT_CONNMARK=m
-CONFIG_NET_ACT_SKBMOD=m
-# CONFIG_NET_ACT_IFE is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_OPENVSWITCH=m
-CONFIG_OPENVSWITCH_GRE=m
-CONFIG_OPENVSWITCH_VXLAN=m
-CONFIG_OPENVSWITCH_GENEVE=m
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VMWARE_VMCI_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_HYPERV_VSOCKETS=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_SCH_TEQL=m
 CONFIG_NET_SWITCHDEV=y
-CONFIG_RPS=y
-CONFIG_RFS_ACCEL=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_HAMRADIO is not set
-CONFIG_CAN=m
-CONFIG_CAN_RAW=m
-CONFIG_CAN_BCM=m
-CONFIG_CAN_GW=m
-
-#
-# CAN Device Drivers
-#
-CONFIG_CAN_VCAN=m
-CONFIG_CAN_SLCAN=m
-CONFIG_CAN_DEV=m
-CONFIG_CAN_CALC_BITTIMING=y
-CONFIG_CAN_LEDS=y
-# CONFIG_CAN_MCP251X is not set
-# CONFIG_PCH_CAN is not set
-CONFIG_CAN_SJA1000=m
-# CONFIG_CAN_SJA1000_ISA is not set
-CONFIG_CAN_SJA1000_PLATFORM=m
-CONFIG_CAN_EMS_PCI=m
-CONFIG_CAN_PEAK_PCI=m
-CONFIG_CAN_PEAK_PCIEC=y
-CONFIG_CAN_KVASER_PCI=m
-CONFIG_CAN_PLX_PCI=m
-CONFIG_CAN_C_CAN=m
-CONFIG_CAN_C_CAN_PLATFORM=m
-CONFIG_CAN_C_CAN_PCI=m
-CONFIG_CAN_CC770=m
-# CONFIG_CAN_CC770_ISA is not set
-CONFIG_CAN_CC770_PLATFORM=m
-
-#
-# CAN USB interfaces
-#
-CONFIG_CAN_EMS_USB=m
-CONFIG_CAN_ESD_USB2=m
-CONFIG_CAN_KVASER_USB=m
-CONFIG_CAN_PEAK_USB=m
-CONFIG_CAN_8DEV_USB=m
-CONFIG_CAN_SOFTING=m
-CONFIG_CAN_DEBUG_DEVICES=y
-# CONFIG_IRDA is not set
-CONFIG_BT=m
-CONFIG_BT_BREDR=y
-CONFIG_BT_RFCOMM=m
-CONFIG_BT_RFCOMM_TTY=y
-CONFIG_BT_BNEP=m
-CONFIG_BT_BNEP_MC_FILTER=y
-CONFIG_BT_BNEP_PROTO_FILTER=y
-CONFIG_BT_CMTP=m
-CONFIG_BT_HIDP=m
-CONFIG_BT_HS=y
-CONFIG_BT_LE=y
-# CONFIG_BT_6LOWPAN is not set
-# CONFIG_BT_LEDS is not set
-# CONFIG_BT_SELFTEST is not set
-CONFIG_BT_DEBUGFS=y
-
-#
-# Bluetooth device drivers
-#
-CONFIG_BT_INTEL=m
-CONFIG_BT_BCM=m
-CONFIG_BT_RTL=m
-CONFIG_BT_HCIBTUSB=m
-CONFIG_BT_HCIBTUSB_BCM=y
-CONFIG_BT_HCIBTUSB_RTL=y
-CONFIG_BT_HCIBTSDIO=m
-CONFIG_BT_HCIUART=m
-CONFIG_BT_HCIUART_H4=y
-CONFIG_BT_HCIUART_BCSP=y
-CONFIG_BT_HCIUART_ATH3K=y
-CONFIG_BT_HCIUART_LL=y
-CONFIG_BT_HCIUART_3WIRE=y
-# CONFIG_BT_HCIUART_INTEL is not set
-# CONFIG_BT_HCIUART_BCM is not set
-# CONFIG_BT_HCIUART_QCA is not set
-# CONFIG_BT_HCIUART_AG6XX is not set
-# CONFIG_BT_HCIUART_MRVL is not set
-CONFIG_BT_HCIBCM203X=m
-CONFIG_BT_HCIBPA10X=m
-CONFIG_BT_HCIBFUSB=m
-CONFIG_BT_HCIVHCI=m
-CONFIG_BT_MRVL=m
-CONFIG_BT_MRVL_SDIO=m
-CONFIG_BT_ATH3K=m
-# CONFIG_AF_RXRPC is not set
-CONFIG_FIB_RULES=y
-CONFIG_WIRELESS=y
-CONFIG_WIRELESS_EXT=y
-CONFIG_WEXT_CORE=y
-CONFIG_WEXT_PROC=y
-CONFIG_WEXT_PRIV=y
-CONFIG_CFG80211=m
-# CONFIG_NL80211_TESTMODE is not set
-# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
-# CONFIG_CFG80211_REQUIRE_SIGNED_REGDB is not set
-CONFIG_CFG80211_DEFAULT_PS=y
-CONFIG_CFG80211_DEBUGFS=y
-CONFIG_CFG80211_CRDA_SUPPORT=y
-CONFIG_CFG80211_WEXT=y
-CONFIG_LIB80211=m
-# CONFIG_LIB80211_DEBUG is not set
-CONFIG_MAC80211=m
-CONFIG_MAC80211_HAS_RC=y
-CONFIG_MAC80211_RC_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
-# CONFIG_MAC80211_MESH is not set
-CONFIG_MAC80211_LEDS=y
-CONFIG_MAC80211_DEBUGFS=y
-CONFIG_MAC80211_MESSAGE_TRACING=y
-# CONFIG_MAC80211_DEBUG_MENU is not set
-CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_LEDS=y
-CONFIG_RFKILL_INPUT=y
-# CONFIG_RFKILL_GPIO is not set
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-CONFIG_CEPH_LIB=m
-CONFIG_CEPH_LIB_PRETTYDEBUG=y
-CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-CONFIG_DST_CACHE=y
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_PAGE_POOL=y
-CONFIG_FAILOVER=m
-CONFIG_HAVE_EBPF_JIT=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-CONFIG_WANT_DEV_COREDUMP=y
-CONFIG_DEV_COREDUMP=y
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-CONFIG_SYS_HYPERVISOR=y
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-CONFIG_REGMAP=y
-CONFIG_REGMAP_I2C=m
-CONFIG_REGMAP_SPI=m
-CONFIG_REGMAP_IRQ=y
-CONFIG_DMA_SHARED_BUFFER=y
-
-#
-# Bus devices
-#
-CONFIG_CONNECTOR=y
-CONFIG_PROC_EVENTS=y
-CONFIG_MTD=m
-# CONFIG_MTD_TESTS is not set
-# CONFIG_MTD_REDBOOT_PARTS is not set
-# CONFIG_MTD_CMDLINE_PARTS is not set
-# CONFIG_MTD_AR7_PARTS is not set
-
-#
-# User Modules And Translation Layers
-#
-CONFIG_MTD_BLKDEVS=m
-CONFIG_MTD_BLOCK=m
-# CONFIG_MTD_BLOCK_RO is not set
-# CONFIG_FTL is not set
-# CONFIG_NFTL is not set
-# CONFIG_INFTL is not set
-# CONFIG_RFD_FTL is not set
-# CONFIG_SSFDC is not set
-# CONFIG_SM_FTL is not set
-# CONFIG_MTD_OOPS is not set
-# CONFIG_MTD_SWAP is not set
-
-#
-# RAM/ROM/Flash chip drivers
-#
-# CONFIG_MTD_CFI is not set
-# CONFIG_MTD_JEDECPROBE is not set
-CONFIG_MTD_MAP_BANK_WIDTH_1=y
-CONFIG_MTD_MAP_BANK_WIDTH_2=y
-CONFIG_MTD_MAP_BANK_WIDTH_4=y
-# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
-CONFIG_MTD_CFI_I1=y
-CONFIG_MTD_CFI_I2=y
-# CONFIG_MTD_CFI_I4 is not set
-# CONFIG_MTD_CFI_I8 is not set
-# CONFIG_MTD_RAM is not set
-# CONFIG_MTD_ROM is not set
-# CONFIG_MTD_ABSENT is not set
-
-#
-# Mapping drivers for chip access
-#
-# CONFIG_MTD_COMPLEX_MAPPINGS is not set
-# CONFIG_MTD_TS5500 is not set
-# CONFIG_MTD_INTEL_VR_NOR is not set
-# CONFIG_MTD_PLATRAM is not set
-
-#
-# Self-contained MTD device drivers
-#
-# CONFIG_MTD_PMC551 is not set
-# CONFIG_MTD_DATAFLASH is not set
-# CONFIG_MTD_M25P80 is not set
-# CONFIG_MTD_SST25L is not set
-# CONFIG_MTD_SLRAM is not set
-# CONFIG_MTD_PHRAM is not set
-# CONFIG_MTD_MTDRAM is not set
-# CONFIG_MTD_BLOCK2MTD is not set
-
-#
-# Disk-On-Chip Device Drivers
-#
-# CONFIG_MTD_DOCG3 is not set
-# CONFIG_MTD_NAND is not set
-# CONFIG_MTD_ONENAND is not set
-
-#
-# LPDDR flash memory drivers
-#
-# CONFIG_MTD_LPDDR is not set
-CONFIG_MTD_UBI=m
-CONFIG_MTD_UBI_WL_THRESHOLD=4096
-CONFIG_MTD_UBI_BEB_LIMIT=20
-# CONFIG_MTD_UBI_FASTMAP is not set
-# CONFIG_MTD_UBI_GLUEBI is not set
-CONFIG_PARPORT=m
-CONFIG_PARPORT_PC=m
-CONFIG_PARPORT_SERIAL=m
-# CONFIG_PARPORT_PC_FIFO is not set
-# CONFIG_PARPORT_PC_SUPERIO is not set
-# CONFIG_PARPORT_GSC is not set
-# CONFIG_PARPORT_AX88796 is not set
-CONFIG_PARPORT_1284=y
-CONFIG_PARPORT_NOT_PC=y
-CONFIG_PNP=y
-# CONFIG_PNP_DEBUG_MESSAGES is not set
-
-#
-# Protocols
-#
-CONFIG_PNPACPI=y
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-CONFIG_BLK_DEV_FD=m
-# CONFIG_PARIDE is not set
-CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m
-CONFIG_ZRAM=m
-# CONFIG_BLK_CPQ_DA is not set
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=m
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-CONFIG_BLK_DEV_SX8=m
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=16384
-CONFIG_CDROM_PKTCDVD=m
-CONFIG_CDROM_PKTCDVD_BUFFERS=8
-# CONFIG_CDROM_PKTCDVD_WCACHE is not set
-CONFIG_ATA_OVER_ETH=m
-CONFIG_XEN_BLKDEV_FRONTEND=m
-CONFIG_VIRTIO_BLK=m
-# CONFIG_BLK_DEV_HD is not set
-CONFIG_BLK_DEV_RBD=m
-# CONFIG_BLK_DEV_RSXX is not set
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_RDMA=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_RDMA=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-CONFIG_SENSORS_LIS3LV02D=m
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_ATMEL_PWM is not set
-# CONFIG_DUMMY_IRQ is not set
-# CONFIG_IBM_ASM is not set
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-CONFIG_SGI_IOC4=m
-CONFIG_TIFM_CORE=m
-CONFIG_TIFM_7XX1=m
-# CONFIG_ICS932S401 is not set
-# CONFIG_ATMEL_SSC is not set
-CONFIG_ENCLOSURE_SERVICES=m
-CONFIG_SGI_XP=m
-CONFIG_HP_ILO=m
-CONFIG_SGI_GRU=m
-# CONFIG_SGI_GRU_DEBUG is not set
-CONFIG_APDS9802ALS=m
-CONFIG_ISL29003=m
-CONFIG_ISL29020=m
-CONFIG_SENSORS_TSL2550=m
-# CONFIG_SENSORS_BH1780 is not set
-CONFIG_SENSORS_BH1770=m
-CONFIG_SENSORS_APDS990X=m
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_TI_DAC7512 is not set
-CONFIG_VMWARE_BALLOON=m
-# CONFIG_BMP085_I2C is not set
-# CONFIG_BMP085_SPI is not set
-CONFIG_PCH_PHUB=m
-# CONFIG_USB_SWITCH_FSA9480 is not set
-# CONFIG_LATTICE_ECP3_CONFIG is not set
-# CONFIG_SRAM is not set
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-CONFIG_EEPROM_AT24=m
-# CONFIG_EEPROM_AT25 is not set
-CONFIG_EEPROM_LEGACY=m
-CONFIG_EEPROM_MAX6875=m
-CONFIG_EEPROM_93CX6=m
-# CONFIG_EEPROM_93XX46 is not set
-CONFIG_CB710_CORE=m
-# CONFIG_CB710_DEBUG is not set
-CONFIG_CB710_DEBUG_ASSUMPTIONS=y
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_TI_ST is not set
-CONFIG_SENSORS_LIS3_I2C=m
-
-#
-# Altera FPGA firmware download module
-#
-CONFIG_ALTERA_STAPL=m
-CONFIG_INTEL_MEI=m
-CONFIG_INTEL_MEI_ME=m
-# CONFIG_INTEL_MEI_TXE is not set
-CONFIG_VMWARE_VMCI=m
-# CONFIG_GENWQE is not set
-# CONFIG_CXL_BASE is not set
-# CONFIG_CXL_KERNEL_API is not set
-# CONFIG_CXL_EEH is not set
-CONFIG_HAVE_IDE=y
-# CONFIG_IDE is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=m
-CONFIG_CHR_DEV_ST=m
-CONFIG_CHR_DEV_OSST=m
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-CONFIG_CHR_DEV_SCH=m
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_ATA=y
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_TCP=m
-CONFIG_ISCSI_BOOT_SYSFS=m
-CONFIG_SCSI_CXGB3_ISCSI=m
-CONFIG_SCSI_CXGB4_ISCSI=m
-CONFIG_SCSI_BNX2_ISCSI=m
-CONFIG_SCSI_BNX2X_FCOE=m
-CONFIG_BE2ISCSI=m
-# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
-CONFIG_SCSI_HPSA=m
-CONFIG_SCSI_3W_9XXX=m
-CONFIG_SCSI_3W_SAS=m
-# CONFIG_SCSI_ACARD is not set
-CONFIG_SCSI_AACRAID=m
-# CONFIG_SCSI_AIC7XXX is not set
-# CONFIG_SCSI_AIC7XXX_OLD is not set
-CONFIG_SCSI_AIC79XX=m
-CONFIG_AIC79XX_CMDS_PER_DEVICE=4
-CONFIG_AIC79XX_RESET_DELAY_MS=15000
-# CONFIG_AIC79XX_DEBUG_ENABLE is not set
-CONFIG_AIC79XX_DEBUG_MASK=0
-# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
-# CONFIG_SCSI_AIC94XX is not set
-CONFIG_SCSI_MVSAS=m
-# CONFIG_SCSI_MVSAS_DEBUG is not set
-CONFIG_SCSI_MVSAS_TASKLET=y
-CONFIG_SCSI_MVUMI=m
-# CONFIG_SCSI_DPT_I2O is not set
-# CONFIG_SCSI_ADVANSYS is not set
-CONFIG_SCSI_ARCMSR=m
-# CONFIG_MEGARAID_NEWGEN is not set
-# CONFIG_MEGARAID_LEGACY is not set
-CONFIG_MEGARAID_SAS=m
-CONFIG_SCSI_MPT2SAS=m
-CONFIG_SCSI_MPT3SAS=m
-CONFIG_SCSI_MPT2SAS_MAX_SGE=128
-CONFIG_SCSI_MPT3SAS_MAX_SGE=128
-CONFIG_SCSI_SMARTPQI=m
-CONFIG_SCSI_UFSHCD=m
-CONFIG_SCSI_UFSHCD_PCI=m
-# CONFIG_SCSI_UFSHCD_PLATFORM is not set
-CONFIG_SCSI_HPTIOP=m
-# CONFIG_SCSI_BUSLOGIC is not set
-CONFIG_VMWARE_PVSCSI=m
-CONFIG_HYPERV_STORAGE=m
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-CONFIG_FCOE_FNIC=m
-# CONFIG_SCSI_DMX3191D is not set
-# CONFIG_SCSI_EATA is not set
-# CONFIG_SCSI_FUTURE_DOMAIN is not set
-# CONFIG_SCSI_GDTH is not set
-CONFIG_SCSI_ISCI=m
-# CONFIG_SCSI_IPS is not set
-CONFIG_SCSI_INITIO=m
-# CONFIG_SCSI_INIA100 is not set
-# CONFIG_SCSI_PPA is not set
-# CONFIG_SCSI_IMM is not set
-CONFIG_SCSI_STEX=m
-# CONFIG_SCSI_SYM53C8XX_2 is not set
-# CONFIG_SCSI_IPR is not set
-# CONFIG_SCSI_QLOGIC_1280 is not set
-CONFIG_SCSI_QLA_FC=m
-CONFIG_TCM_QLA2XXX=m
-# CONFIG_TCM_QLA2XXX_DEBUG is not set
-CONFIG_SCSI_QLA_ISCSI=m
-CONFIG_QEDI=m
-CONFIG_QEDF=m
-CONFIG_SCSI_LPFC=m
-# CONFIG_SCSI_LPFC_DEBUG_FS is not set
-# CONFIG_SCSI_DC395x is not set
-# CONFIG_SCSI_DC390T is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_SCSI_PMCRAID=m
-CONFIG_SCSI_PM8001=m
-CONFIG_SCSI_SRP=m
-CONFIG_SCSI_BFA_FC=m
-CONFIG_SCSI_VIRTIO=m
-CONFIG_SCSI_CHELSIO_FCOE=m
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=m
-# CONFIG_ATA_NONSTANDARD is not set
-CONFIG_ATA_VERBOSE_ERROR=y
-CONFIG_ATA_ACPI=y
-# CONFIG_SATA_ZPODD is not set
-CONFIG_SATA_PMP=y
-
-#
-# Controllers with non-SFF native interface
-#
-CONFIG_SATA_AHCI=m
-CONFIG_SATA_AHCI_PLATFORM=m
-# CONFIG_SATA_INIC162X is not set
-CONFIG_SATA_ACARD_AHCI=m
-CONFIG_SATA_SIL24=m
-CONFIG_ATA_SFF=y
-
-#
-# SFF controllers with custom DMA interface
-#
-CONFIG_PDC_ADMA=m
-CONFIG_SATA_QSTOR=m
-CONFIG_SATA_SX4=m
-CONFIG_ATA_BMDMA=y
-
-#
-# SATA SFF controllers with BMDMA
-#
-CONFIG_ATA_PIIX=m
-# CONFIG_SATA_HIGHBANK is not set
-CONFIG_SATA_MV=m
-CONFIG_SATA_NV=m
-CONFIG_SATA_PROMISE=m
-CONFIG_SATA_SIL=m
-CONFIG_SATA_SIS=m
-CONFIG_SATA_SVW=m
-CONFIG_SATA_ULI=m
-CONFIG_SATA_VIA=m
-CONFIG_SATA_VITESSE=m
-
-#
-# PATA SFF controllers with BMDMA
-#
-CONFIG_PATA_ALI=m
-CONFIG_PATA_AMD=m
-CONFIG_PATA_ARASAN_CF=m
-CONFIG_PATA_ARTOP=m
-CONFIG_PATA_ATIIXP=m
-CONFIG_PATA_ATP867X=m
-CONFIG_PATA_CMD64X=m
-# CONFIG_PATA_CS5520 is not set
-# CONFIG_PATA_CS5530 is not set
-CONFIG_PATA_CS5536=m
-# CONFIG_PATA_CYPRESS is not set
-# CONFIG_PATA_EFAR is not set
-CONFIG_PATA_HPT366=m
-CONFIG_PATA_HPT37X=m
-CONFIG_PATA_HPT3X2N=m
-CONFIG_PATA_HPT3X3=m
-# CONFIG_PATA_HPT3X3_DMA is not set
-CONFIG_PATA_IT8213=m
-CONFIG_PATA_IT821X=m
-CONFIG_PATA_JMICRON=m
-CONFIG_PATA_MARVELL=m
-CONFIG_PATA_NETCELL=m
-CONFIG_PATA_NINJA32=m
-# CONFIG_PATA_NS87415 is not set
-CONFIG_PATA_OLDPIIX=m
-# CONFIG_PATA_OPTIDMA is not set
-CONFIG_PATA_PDC2027X=m
-CONFIG_PATA_PDC_OLD=m
-# CONFIG_PATA_RADISYS is not set
-CONFIG_PATA_RDC=m
-# CONFIG_PATA_SC1200 is not set
-CONFIG_PATA_SCH=m
-CONFIG_PATA_SERVERWORKS=m
-CONFIG_PATA_SIL680=m
-CONFIG_PATA_SIS=m
-CONFIG_PATA_TOSHIBA=m
-# CONFIG_PATA_TRIFLEX is not set
-CONFIG_PATA_VIA=m
-# CONFIG_PATA_WINBOND is not set
-
-#
-# PIO-only SFF controllers
-#
-# CONFIG_PATA_CMD640_PCI is not set
-# CONFIG_PATA_MPIIX is not set
-# CONFIG_PATA_NS87410 is not set
-# CONFIG_PATA_OPTI is not set
-# CONFIG_PATA_RZ1000 is not set
-
-#
-# Generic fallback / legacy drivers
-#
-CONFIG_PATA_ACPI=m
-CONFIG_ATA_GENERIC=m
-# CONFIG_PATA_LEGACY is not set
-CONFIG_MD=y
-CONFIG_BLK_DEV_MD=y
-CONFIG_MD_AUTODETECT=y
-CONFIG_MD_LINEAR=m
-CONFIG_MD_RAID0=m
-CONFIG_MD_RAID1=m
-CONFIG_MD_RAID10=m
-CONFIG_MD_RAID456=m
-# CONFIG_MD_MULTIPATH is not set
-CONFIG_MD_FAULTY=m
-# CONFIG_BCACHE is not set
-CONFIG_BLK_DEV_DM_BUILTIN=y
-CONFIG_BLK_DEV_DM=m
-# CONFIG_DM_MQ_DEFAULT is not set
-CONFIG_DM_DEBUG=y
-CONFIG_DM_BUFIO=m
-# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
-CONFIG_DM_BIO_PRISON=m
-CONFIG_DM_PERSISTENT_DATA=m
-CONFIG_DM_CRYPT=m
-CONFIG_DM_SNAPSHOT=m
-CONFIG_DM_THIN_PROVISIONING=m
-CONFIG_DM_CACHE=m
-CONFIG_DM_CACHE_SMQ=m
-CONFIG_DM_ERA=m
-CONFIG_DM_MIRROR=m
-CONFIG_DM_LOG_USERSPACE=m
-CONFIG_DM_RAID=m
-CONFIG_DM_ZERO=m
-CONFIG_DM_MULTIPATH=m
-CONFIG_DM_MULTIPATH_QL=m
-CONFIG_DM_MULTIPATH_ST=m
-CONFIG_DM_DELAY=m
-CONFIG_DM_UEVENT=y
-CONFIG_DM_FLAKEY=m
-CONFIG_DM_VERITY=m
-CONFIG_DM_SWITCH=m
-CONFIG_DM_LOG_WRITES=m
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_TCM_USER2=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-CONFIG_ISCSI_TARGET_CXGB4=m
-# CONFIG_SBP_TARGET is not set
-CONFIG_FUSION=y
-CONFIG_FUSION_SPI=m
-# CONFIG_FUSION_FC is not set
-CONFIG_FUSION_SAS=m
-CONFIG_FUSION_MAX_SGE=128
-CONFIG_FUSION_CTL=m
-CONFIG_FUSION_LOGGING=y
-
-#
-# IEEE 1394 (FireWire) support
-#
-CONFIG_FIREWIRE=m
-CONFIG_FIREWIRE_OHCI=m
-CONFIG_FIREWIRE_SBP2=m
-CONFIG_FIREWIRE_NET=m
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-CONFIG_MACINTOSH_DRIVERS=y
-CONFIG_MAC_EMUMOUSEBTN=y
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-CONFIG_BONDING=m
-CONFIG_DUMMY=m
-# CONFIG_EQUALIZER is not set
-CONFIG_NET_FC=y
-CONFIG_MII=m
-CONFIG_IFB=m
+CONFIG_NET_TC_SKB_EXT=y
 CONFIG_NET_TEAM=m
-CONFIG_NET_TEAM_MODE_BROADCAST=m
-CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
-CONFIG_NET_TEAM_MODE_RANDOM=m
 CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
 CONFIG_NET_TEAM_MODE_LOADBALANCE=m
-CONFIG_MACVLAN=m
-CONFIG_MACVTAP=m
-CONFIG_VXLAN=m
-CONFIG_GENEVE=m
-CONFIG_MACSEC=m
-CONFIG_NETCONSOLE=m
-CONFIG_NETCONSOLE_DYNAMIC=y
-CONFIG_NETPOLL=y
-CONFIG_NET_POLL_CONTROLLER=y
-CONFIG_NTB_NETDEV=m
-CONFIG_TUN=m
-# CONFIG_TUN_VNET_CROSS_LE is not set
-CONFIG_VETH=m
-CONFIG_VIRTIO_NET=m
-CONFIG_NLMON=m
-CONFIG_VSOCKMON=m
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_VHOST_NET=m
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST_RING=m
-CONFIG_VHOST=m
-# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
-
-#
-# Distributed Switch Architecture drivers
-#
-# CONFIG_NET_DSA_MV88E6XXX is not set
-# CONFIG_NET_DSA_MV88E6060 is not set
-# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
-# CONFIG_NET_DSA_MV88E6131 is not set
-# CONFIG_NET_DSA_MV88E6123_61_65 is not set
-CONFIG_ETHERNET=y
-CONFIG_MDIO=m
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
 CONFIG_NET_VENDOR_AMAZON=y
-CONFIG_ENA_ETHERNET=m
 CONFIG_NET_VENDOR_AMD=y
-CONFIG_AMD8111_ETH=m
-CONFIG_PCNET32=m
-CONFIG_AMD_XGBE=m
-# CONFIG_AMD_XGBE_DCB is not set
-CONFIG_AMD_XGBE_HAVE_ECC=y
 CONFIG_NET_VENDOR_AQUANTIA=y
-CONFIG_AQTION=m
 CONFIG_NET_VENDOR_ATHEROS=y
-CONFIG_ATL2=m
-CONFIG_ATL1=m
-CONFIG_ATL1E=m
-CONFIG_ATL1C=m
-CONFIG_ALX=m
-CONFIG_NET_CADENCE=y
-CONFIG_ARM_AT91_ETHER=m
-CONFIG_MACB=m
-CONFIG_NET_VENDOR_BROADCOM=y
-CONFIG_B44=m
-CONFIG_B44_PCI_AUTOSELECT=y
-CONFIG_B44_PCICORE_AUTOSELECT=y
-CONFIG_B44_PCI=y
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-CONFIG_TIGON3=m
-CONFIG_TIGON3_HWMON=y
-CONFIG_BNX2X=m
-CONFIG_BNX2X_SRIOV=y
-CONFIG_BNXT=m
-CONFIG_BNXT_SRIOV=y
-CONFIG_BNXT_FLOWER_OFFLOAD=y
-CONFIG_BNXT_DCB=y
-CONFIG_BNXT_HWMON=y
 CONFIG_NET_VENDOR_BROCADE=y
-CONFIG_BNA=m
-CONFIG_NET_CALXEDA_XGMAC=m
 CONFIG_NET_VENDOR_CAVIUM=y
-CONFIG_LIQUIDIO=m
-CONFIG_LIQUIDIO_VF=m
 CONFIG_NET_VENDOR_CHELSIO=y
-# CONFIG_CHELSIO_T1 is not set
-CONFIG_CHELSIO_T3=m
-CONFIG_CHELSIO_T4=m
-# CONFIG_CHELSIO_T4_DCB is not set
-CONFIG_CHELSIO_T4VF=m
-CONFIG_CHELSIO_LIB=m
 CONFIG_NET_VENDOR_CISCO=y
-CONFIG_ENIC=m
-CONFIG_DNET=m
 CONFIG_NET_VENDOR_DEC=y
-CONFIG_NET_TULIP=y
-CONFIG_DE2104X=m
-CONFIG_DE2104X_DSL=0
-CONFIG_TULIP=m
-# CONFIG_TULIP_MWI is not set
-CONFIG_TULIP_MMIO=y
-# CONFIG_TULIP_NAPI is not set
-CONFIG_DE4X5=m
-CONFIG_WINBOND_840=m
-CONFIG_DM9102=m
-CONFIG_ULI526X=m
-CONFIG_PCMCIA_XIRCOM=m
-# CONFIG_NET_VENDOR_DLINK is not set
+CONFIG_NET_VENDOR_DLINK=y
 CONFIG_NET_VENDOR_EMULEX=y
-CONFIG_BE2NET=m
-CONFIG_BE2NET_HWMON=y
-# CONFIG_NET_VENDOR_EXAR is not set
 CONFIG_NET_VENDOR_GOOGLE=y
-CONFIG_GVE=m
-# CONFIG_NET_VENDOR_HP is not set
+CONFIG_NET_VENDOR_HUAWEI=y
 CONFIG_NET_VENDOR_INTEL=y
-# CONFIG_E100 is not set
-CONFIG_E1000=m
-CONFIG_E1000E=m
-CONFIG_E1000E_HWTS=y
-CONFIG_IGB=m
-CONFIG_IGB_HWMON=y
-CONFIG_IGB_DCA=y
-CONFIG_IGBVF=m
-# CONFIG_IXGB is not set
-CONFIG_IXGBE=m
-CONFIG_IXGBE_HWMON=y
-CONFIG_IXGBE_DCA=y
-CONFIG_IXGBE_DCB=y
-CONFIG_IXGBEVF=m
-CONFIG_I40E=m
-CONFIG_I40E_VXLAN=y
-CONFIG_I40E_DCB=y
-CONFIG_IAVF=m
-CONFIG_I40EVF=m
-CONFIG_ICE=m
-CONFIG_FM10K=m
-CONFIG_IGC=m
-# CONFIG_NET_VENDOR_I825XX is not set
-CONFIG_IP1000=m
-CONFIG_JME=m
-CONFIG_NET_VENDOR_MARVELL=y
-CONFIG_MVMDIO=m
-CONFIG_SKGE=m
-# CONFIG_SKGE_DEBUG is not set
-CONFIG_SKGE_GENESIS=y
-CONFIG_SKY2=m
-# CONFIG_SKY2_DEBUG is not set
-CONFIG_NET_VENDOR_MELLANOX=y
-CONFIG_MLX4_EN=m
-CONFIG_MLX4_EN_DCB=y
-CONFIG_MLX4_CORE=m
-CONFIG_MLX4_DEBUG=y
-CONFIG_MLX4_CORE_GEN2=y
-CONFIG_MLX5_CORE=m
-# CONFIG_MLX5_FPGA is not set
-CONFIG_MLX5_CORE_EN=y
-CONFIG_MLX5_EN_ARFS=y
-CONFIG_MLX5_EN_RXNFC=y
-CONFIG_MLX5_MPFS=y
-CONFIG_MLX5_ESWITCH=y
-CONFIG_MLX5_CORE_EN_DCB=y
-CONFIG_MLX5_CORE_IPOIB=y
-CONFIG_MLXSW_CORE=m
-CONFIG_MLXSW_CORE_HWMON=y
-CONFIG_MLXSW_CORE_THERMAL=y
-CONFIG_MLXSW_PCI=m
-CONFIG_MLXSW_I2C=m
-CONFIG_MLXSW_SWITCHIB=m
-CONFIG_MLXSW_SWITCHX2=m
-CONFIG_MLXSW_SPECTRUM=m
-CONFIG_MLXSW_SPECTRUM_DCB=y
-CONFIG_MLXSW_MINIMAL=m
-CONFIG_MLXFW=m
-# CONFIG_NET_VENDOR_MICREL is not set
-# CONFIG_NET_VENDOR_MICROCHIP is not set
+CONFIG_NET_VENDOR_MICROSOFT=y
 CONFIG_NET_VENDOR_MYRI=y
-CONFIG_MYRI10GE=m
-CONFIG_MYRI10GE_DCA=y
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
 CONFIG_NET_VENDOR_NETRONOME=y
-CONFIG_NFP=m
-CONFIG_NFP_APP_FLOWER=y
-CONFIG_NFP_APP_ABM_NIC=y
-CONFIG_NFP_DEBUG=y
-# CONFIG_NET_VENDOR_NVIDIA is not set
 CONFIG_NET_VENDOR_OKI=y
-CONFIG_PCH_GBE=m
-CONFIG_ETHOC=m
-CONFIG_NET_PACKET_ENGINE=y
-# CONFIG_HAMACHI is not set
-# CONFIG_YELLOWFIN is not set
+CONFIG_NET_VENDOR_PENSANDO=y
 CONFIG_NET_VENDOR_QLOGIC=y
-CONFIG_QLA3XXX=m
-CONFIG_QLCNIC=m
-CONFIG_QLCNIC_SRIOV=y
-CONFIG_QLCNIC_DCB=y
-# CONFIG_QLCNIC_VXLAN is not set
-CONFIG_QLCNIC_HWMON=y
-CONFIG_QLGE=m
-CONFIG_NETXEN_NIC=m
-CONFIG_QED=m
-CONFIG_QED_LL2=y
-CONFIG_QED_SRIOV=y
-CONFIG_QEDE=m
-CONFIG_QED_RDMA=y
-CONFIG_QED_ISCSI=y
-CONFIG_QED_FCOE=y
-CONFIG_QED_OOO=y
 CONFIG_NET_VENDOR_REALTEK=y
-# CONFIG_ATP is not set
-CONFIG_8139CP=m
-CONFIG_8139TOO=m
-# CONFIG_8139TOO_PIO is not set
-# CONFIG_8139TOO_TUNE_TWISTER is not set
-CONFIG_8139TOO_8129=y
-# CONFIG_8139_OLD_RX_RESET is not set
-CONFIG_R8169=m
-# CONFIG_NET_VENDOR_RDC is not set
 CONFIG_NET_VENDOR_ROCKER=y
-CONFIG_ROCKER=m
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
 CONFIG_NET_VENDOR_SOLARFLARE=y
-CONFIG_SFC=m
-CONFIG_SFC_MTD=y
-CONFIG_SFC_MCDI_MON=y
-CONFIG_SFC_SRIOV=y
-CONFIG_SFC_MCDI_LOGGING=y
-CONFIG_SFC_FALCON=m
-CONFIG_SFC_FALCON_MTD=y
-CONFIG_NET_VENDOR_SMSC=y
-CONFIG_EPIC100=m
-CONFIG_SMSC9420=m
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-CONFIG_NET_VENDOR_TI=y
-CONFIG_TLAN=m
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_NET_VENDOR_WIZNET is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-# CONFIG_NET_SB1000 is not set
-CONFIG_PHYLIB=y
-
-#
-# MII PHY device drivers
-#
-CONFIG_AT803X_PHY=m
-CONFIG_AMD_PHY=m
-CONFIG_MARVELL_PHY=m
-CONFIG_DAVICOM_PHY=m
-CONFIG_QSEMI_PHY=m
-CONFIG_LXT_PHY=m
-CONFIG_CICADA_PHY=m
-CONFIG_VITESSE_PHY=m
-CONFIG_SMSC_PHY=m
-CONFIG_BROADCOM_PHY=m
-CONFIG_BCM87XX_PHY=m
-CONFIG_ICPLUS_PHY=m
-CONFIG_REALTEK_PHY=y
-CONFIG_NATIONAL_PHY=m
-CONFIG_STE10XP=m
-CONFIG_LSI_ET1011C_PHY=m
-CONFIG_MICREL_PHY=m
-CONFIG_FIXED_PHY=y
-CONFIG_MDIO_BITBANG=m
-# CONFIG_MDIO_GPIO is not set
-# CONFIG_MICREL_KS8995MA is not set
-# CONFIG_PLIP is not set
-CONFIG_PPP=m
-CONFIG_PPP_BSDCOMP=m
-CONFIG_PPP_DEFLATE=m
-CONFIG_PPP_FILTER=y
-CONFIG_PPP_MPPE=m
-CONFIG_PPP_MULTILINK=y
-CONFIG_PPPOATM=m
-CONFIG_PPPOE=m
-CONFIG_PPTP=m
-CONFIG_PPPOL2TP=m
-CONFIG_PPP_ASYNC=m
-CONFIG_PPP_SYNC_TTY=m
-CONFIG_SLIP=m
-CONFIG_SLHC=m
-CONFIG_SLIP_COMPRESSED=y
-CONFIG_SLIP_SMART=y
-# CONFIG_SLIP_MODE_SLIP6 is not set
-CONFIG_USB_NET_DRIVERS=y
-CONFIG_USB_CATC=m
-CONFIG_USB_KAWETH=m
-CONFIG_USB_PEGASUS=m
-CONFIG_USB_RTL8150=m
-CONFIG_USB_RTL8152=m
-# CONFIG_USB_LAN78XX is not set
-CONFIG_USB_USBNET=m
-CONFIG_USB_NET_AX8817X=m
-CONFIG_USB_NET_AX88179_178A=m
-CONFIG_USB_NET_CDCETHER=m
-CONFIG_USB_NET_CDC_EEM=m
-CONFIG_USB_NET_CDC_NCM=m
-CONFIG_USB_NET_HUAWEI_CDC_NCM=m
-CONFIG_USB_NET_CDC_MBIM=m
-CONFIG_USB_NET_DM9601=m
-# CONFIG_USB_NET_SR9700 is not set
-# CONFIG_USB_NET_SR9800 is not set
-CONFIG_USB_NET_SMSC75XX=m
-CONFIG_USB_NET_SMSC95XX=m
-CONFIG_USB_NET_GL620A=m
-CONFIG_USB_NET_NET1080=m
-CONFIG_USB_NET_PLUSB=m
-CONFIG_USB_NET_MCS7830=m
-CONFIG_USB_NET_RNDIS_HOST=m
-CONFIG_USB_NET_CDC_SUBSET_ENABLE=m
-CONFIG_USB_NET_CDC_SUBSET=m
-CONFIG_USB_ALI_M5632=y
-CONFIG_USB_AN2720=y
-CONFIG_USB_BELKIN=y
-CONFIG_USB_ARMLINUX=y
-CONFIG_USB_EPSON2888=y
-CONFIG_USB_KC2190=y
-CONFIG_USB_NET_ZAURUS=m
-CONFIG_USB_NET_CX82310_ETH=m
-CONFIG_USB_NET_KALMIA=m
-CONFIG_USB_NET_QMI_WWAN=m
-CONFIG_USB_HSO=m
-CONFIG_USB_NET_INT51X1=m
-CONFIG_USB_IPHETH=m
-CONFIG_USB_SIERRA_NET=m
-CONFIG_USB_VL600=m
-# CONFIG_USB_NET_CH9200 is not set
-CONFIG_WLAN=y
-# CONFIG_LIBERTAS_THINFIRM is not set
-# CONFIG_AIRO is not set
-# CONFIG_ATMEL is not set
-# CONFIG_AT76C50X_USB is not set
-# CONFIG_PRISM54 is not set
-# CONFIG_USB_ZD1201 is not set
-# CONFIG_USB_NET_RNDIS_WLAN is not set
-# CONFIG_ADM8211 is not set
-CONFIG_MAC80211_HWSIM=m
-CONFIG_ATH_COMMON=m
-CONFIG_WLAN_VENDOR_ATH=y
-CONFIG_ATH_DEBUG=y
-# CONFIG_ATH_TRACEPOINTS is not set
-# CONFIG_ATH5K is not set
-# CONFIG_ATH5K_PCI is not set
-CONFIG_ATH9K_HW=m
-CONFIG_ATH9K_COMMON=m
-CONFIG_ATH9K_COMMON_DEBUG=y
-CONFIG_ATH9K_BTCOEX_SUPPORT=y
-CONFIG_ATH9K=m
-CONFIG_ATH9K_PCI=y
-CONFIG_ATH9K_AHB=y
-CONFIG_ATH9K_DEBUGFS=y
-# CONFIG_ATH9K_STATION_STATISTICS is not set
-# CONFIG_ATH9K_DYNACK is not set
-CONFIG_ATH9K_WOW=y
-CONFIG_ATH9K_RFKILL=y
-# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
-CONFIG_ATH9K_PCOEM=y
-CONFIG_ATH9K_HTC=m
-# CONFIG_ATH9K_HTC_DEBUGFS is not set
-# CONFIG_ATH9K_HWRNG is not set
-CONFIG_CARL9170=m
-CONFIG_CARL9170_LEDS=y
-CONFIG_CARL9170_DEBUGFS=y
-CONFIG_CARL9170_WPC=y
-# CONFIG_CARL9170_HWRNG is not set
-# CONFIG_ATH6KL is not set
-# CONFIG_AR5523 is not set
-CONFIG_WIL6210=m
-CONFIG_WIL6210_ISR_COR=y
-CONFIG_WIL6210_TRACING=y
-CONFIG_WIL6210_DEBUGFS=y
-CONFIG_ATH10K=m
-CONFIG_ATH10K_PCI=m
-# CONFIG_ATH10K_SDIO is not set
-# CONFIG_ATH10K_USB is not set
-CONFIG_ATH10K_DEBUG=y
-CONFIG_ATH10K_DEBUGFS=y
-CONFIG_ATH10K_TRACING=y
-# CONFIG_B43 is not set
-# CONFIG_B43LEGACY is not set
-CONFIG_WLAN_VENDOR_BROADCOM=y
-CONFIG_BRCMUTIL=m
-CONFIG_BRCMSMAC=m
-CONFIG_BRCMFMAC=m
-CONFIG_BRCMFMAC_PROTO_BCDC=y
-CONFIG_BRCMFMAC_PROTO_MSGBUF=y
-CONFIG_BRCMFMAC_SDIO=y
-CONFIG_BRCMFMAC_USB=y
-CONFIG_BRCMFMAC_PCIE=y
-# CONFIG_BRCM_TRACING is not set
-# CONFIG_BRCMDBG is not set
-# CONFIG_HOSTAP is not set
-# CONFIG_IPW2100 is not set
-# CONFIG_IPW2200 is not set
-CONFIG_WLAN_VENDOR_INTEL=y
-CONFIG_IWLEGACY=m
-CONFIG_IWL4965=m
-CONFIG_IWL3945=m
-
-#
-# iwl3945 / iwl4965 Debugging Options
-#
-CONFIG_IWLEGACY_DEBUG=y
-CONFIG_IWLEGACY_DEBUGFS=y
-CONFIG_IWLWIFI=m
-CONFIG_IWLWIFI_LEDS=y
-CONFIG_IWLDVM=m
-CONFIG_IWLMVM=m
-CONFIG_IWLWIFI_OPMODE_MODULAR=y
-# CONFIG_IWLWIFI_BCAST_FILTERING is not set
-
-#
-# Debugging Options
-#
-CONFIG_IWLWIFI_DEBUG=y
-CONFIG_IWLWIFI_DEBUGFS=y
-CONFIG_IWLWIFI_DEVICE_TRACING=y
-# CONFIG_LIBERTAS is not set
-CONFIG_WLAN_VENDOR_MARVELL=y
-CONFIG_MWIFIEX=m
-CONFIG_MWIFIEX_SDIO=m
-CONFIG_MWIFIEX_PCIE=m
-CONFIG_MWIFIEX_USB=m
-CONFIG_MWL8K=m
-# CONFIG_HERMES is not set
-# CONFIG_P54_COMMON is not set
-CONFIG_WLAN_VENDOR_RALINK=y
-CONFIG_RT2X00=m
-# CONFIG_RT2400PCI is not set
-# CONFIG_RT2500PCI is not set
-CONFIG_RT61PCI=m
-CONFIG_RT2800PCI=m
-CONFIG_RT2800PCI_RT33XX=y
-CONFIG_RT2800PCI_RT35XX=y
-CONFIG_RT2800PCI_RT53XX=y
-CONFIG_RT2800PCI_RT3290=y
-# CONFIG_RT2500USB is not set
-CONFIG_RT73USB=m
-CONFIG_RT2800USB=m
-CONFIG_RT2800USB_RT33XX=y
-CONFIG_RT2800USB_RT35XX=y
-CONFIG_RT2800USB_RT3573=y
-CONFIG_RT2800USB_RT53XX=y
-CONFIG_RT2800USB_RT55XX=y
-CONFIG_RT2800USB_UNKNOWN=y
-CONFIG_RT2800_LIB=m
-CONFIG_RT2800_LIB_MMIO=m
-CONFIG_RT2X00_LIB_MMIO=m
-CONFIG_RT2X00_LIB_PCI=m
-CONFIG_RT2X00_LIB_USB=m
-CONFIG_RT2X00_LIB=m
-CONFIG_RT2X00_LIB_FIRMWARE=y
-CONFIG_RT2X00_LIB_CRYPTO=y
-CONFIG_RT2X00_LIB_LEDS=y
-CONFIG_RT2X00_LIB_DEBUGFS=y
-# CONFIG_RT2X00_DEBUG is not set
-CONFIG_WLAN_VENDOR_REALTEK=y
-# CONFIG_RTL8180 is not set
-CONFIG_RTL8187=m
-CONFIG_RTL8187_LEDS=y
-CONFIG_RTL_CARDS=m
-CONFIG_RTL8192CE=m
-CONFIG_RTL8192SE=m
-CONFIG_RTL8192DE=m
-CONFIG_RTL8723AE=m
-CONFIG_RTL8723BE=m
-CONFIG_RTL8188EE=m
-CONFIG_RTL8192EE=m
-CONFIG_RTL8821AE=m
-CONFIG_RTL8192CU=m
-CONFIG_RTLWIFI=m
-CONFIG_RTLWIFI_PCI=m
-CONFIG_RTLWIFI_USB=m
-CONFIG_RTLWIFI_DEBUG=y
-CONFIG_RTL8192C_COMMON=m
-CONFIG_RTL8723_COMMON=m
-CONFIG_RTLBTCOEXIST=m
-CONFIG_RTW88=m
-CONFIG_RTW88_CORE=m
-CONFIG_RTW88_PCI=m
-CONFIG_RTW88_8822BE=y
-CONFIG_RTW88_8822CE=y
-CONFIG_RTW88_DEBUG=y
-CONFIG_RTW88_DEBUGFS=y
-# CONFIG_WL_TI is not set
-# CONFIG_ZD1211RW is not set
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-CONFIG_WAN=y
-# CONFIG_LANMEDIA is not set
-CONFIG_HDLC=m
-CONFIG_HDLC_RAW=m
-# CONFIG_HDLC_RAW_ETH is not set
-CONFIG_HDLC_CISCO=m
-CONFIG_HDLC_FR=m
-CONFIG_HDLC_PPP=m
-
-#
-# X.25/LAPB support is disabled
-#
-# CONFIG_PCI200SYN is not set
-# CONFIG_WANXL is not set
-# CONFIG_PC300TOO is not set
-# CONFIG_FARSYNC is not set
-# CONFIG_DSCC4 is not set
-CONFIG_DLCI=m
-CONFIG_DLCI_MAX=8
-# CONFIG_SBNI is not set
-CONFIG_IEEE802154_DRIVERS=m
-CONFIG_IEEE802154_FAKELB=m
-# CONFIG_IEEE802154_AT86RF230 is not set
-# CONFIG_IEEE802154_MRF24J40 is not set
-# CONFIG_IEEE802154_CC2520 is not set
-# CONFIG_IEEE802154_ATUSB is not set
-# CONFIG_IEEE802154_ADF7242 is not set
-CONFIG_XEN_NETDEV_FRONTEND=m
-CONFIG_VMXNET3=m
-CONFIG_FUJITSU_ES=m
-CONFIG_THUNDERBOLT_NET=m
-CONFIG_HYPERV_NET=m
-CONFIG_NET_FAILOVER=m
-CONFIG_ISDN=y
-CONFIG_ISDN_I4L=m
-CONFIG_ISDN_PPP=y
-CONFIG_ISDN_PPP_VJ=y
-CONFIG_ISDN_MPP=y
-CONFIG_IPPP_FILTER=y
-# CONFIG_ISDN_PPP_BSDCOMP is not set
-CONFIG_ISDN_AUDIO=y
-CONFIG_ISDN_TTY_FAX=y
-
-#
-# ISDN feature submodules
-#
-CONFIG_ISDN_DIVERSION=m
-
-#
-# ISDN4Linux hardware drivers
-#
-
-#
-# Passive cards
-#
-CONFIG_ISDN_DRV_HISAX=m
-
-#
-# D-channel protocol features
-#
-CONFIG_HISAX_EURO=y
-CONFIG_DE_AOC=y
-CONFIG_HISAX_NO_SENDCOMPLETE=y
-CONFIG_HISAX_NO_LLC=y
-CONFIG_HISAX_NO_KEYPAD=y
-CONFIG_HISAX_1TR6=y
-CONFIG_HISAX_NI1=y
-CONFIG_HISAX_MAX_CARDS=8
-
-#
-# HiSax supported cards
-#
-CONFIG_HISAX_16_3=y
-CONFIG_HISAX_TELESPCI=y
-CONFIG_HISAX_S0BOX=y
-CONFIG_HISAX_FRITZPCI=y
-CONFIG_HISAX_AVM_A1_PCMCIA=y
-CONFIG_HISAX_ELSA=y
-CONFIG_HISAX_DIEHLDIVA=y
-CONFIG_HISAX_SEDLBAUER=y
-CONFIG_HISAX_NETJET=y
-CONFIG_HISAX_NETJET_U=y
-CONFIG_HISAX_NICCY=y
-CONFIG_HISAX_BKM_A4T=y
-CONFIG_HISAX_SCT_QUADRO=y
-CONFIG_HISAX_GAZEL=y
-CONFIG_HISAX_HFC_PCI=y
-CONFIG_HISAX_W6692=y
-CONFIG_HISAX_HFC_SX=y
-CONFIG_HISAX_ENTERNOW_PCI=y
-# CONFIG_HISAX_DEBUG is not set
-
-#
-# HiSax PCMCIA card service modules
-#
-
-#
-# HiSax sub driver modules
-#
-CONFIG_HISAX_ST5481=m
-# CONFIG_HISAX_HFCUSB is not set
-CONFIG_HISAX_HFC4S8S=m
-CONFIG_HISAX_FRITZ_PCIPNP=m
-
-#
-# Active cards
-#
-CONFIG_ISDN_CAPI=m
-CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
-# CONFIG_CAPI_TRACE is not set
-CONFIG_ISDN_CAPI_MIDDLEWARE=y
-CONFIG_ISDN_CAPI_CAPI20=m
-CONFIG_ISDN_CAPI_CAPIDRV=m
-
-#
-# CAPI hardware drivers
-#
-CONFIG_CAPI_AVM=y
-CONFIG_ISDN_DRV_AVMB1_B1PCI=m
-CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
-CONFIG_ISDN_DRV_AVMB1_T1PCI=m
-CONFIG_ISDN_DRV_AVMB1_C4=m
-# CONFIG_CAPI_EICON is not set
-CONFIG_ISDN_DRV_GIGASET=m
-CONFIG_GIGASET_CAPI=y
-# CONFIG_GIGASET_I4L is not set
-# CONFIG_GIGASET_DUMMYLL is not set
-CONFIG_GIGASET_BASE=m
-CONFIG_GIGASET_M105=m
-CONFIG_GIGASET_M101=m
-# CONFIG_GIGASET_DEBUG is not set
-CONFIG_HYSDN=m
-CONFIG_HYSDN_CAPI=y
-CONFIG_MISDN=m
-CONFIG_MISDN_DSP=m
-CONFIG_MISDN_L1OIP=m
-
-#
-# mISDN hardware drivers
-#
-CONFIG_MISDN_HFCPCI=m
-CONFIG_MISDN_HFCMULTI=m
-CONFIG_MISDN_HFCUSB=m
-CONFIG_MISDN_AVMFRITZ=m
-CONFIG_MISDN_SPEEDFAX=m
-CONFIG_MISDN_INFINEON=m
-CONFIG_MISDN_W6692=m
-CONFIG_MISDN_NETJET=m
-CONFIG_MISDN_IPAC=m
-CONFIG_MISDN_ISAR=m
-CONFIG_ISDN_HDLC=m
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-CONFIG_INPUT_LEDS=y
-CONFIG_INPUT_FF_MEMLESS=y
-CONFIG_INPUT_POLLDEV=m
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-CONFIG_INPUT_MOUSEDEV=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
-CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
-CONFIG_INPUT_JOYDEV=m
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-CONFIG_INPUT_KEYBOARD=y
-# CONFIG_KEYBOARD_ADP5588 is not set
-# CONFIG_KEYBOARD_ADP5589 is not set
-CONFIG_KEYBOARD_ATKBD=y
-# CONFIG_KEYBOARD_QT1070 is not set
-# CONFIG_KEYBOARD_QT2160 is not set
-# CONFIG_KEYBOARD_LKKBD is not set
-# CONFIG_KEYBOARD_GPIO is not set
-# CONFIG_KEYBOARD_GPIO_POLLED is not set
-# CONFIG_KEYBOARD_TCA6416 is not set
-# CONFIG_KEYBOARD_TCA8418 is not set
-# CONFIG_KEYBOARD_MATRIX is not set
-# CONFIG_KEYBOARD_LM8323 is not set
-# CONFIG_KEYBOARD_LM8333 is not set
-# CONFIG_KEYBOARD_MAX7359 is not set
-# CONFIG_KEYBOARD_MCS is not set
-# CONFIG_KEYBOARD_MPR121 is not set
-# CONFIG_KEYBOARD_NEWTON is not set
-# CONFIG_KEYBOARD_OPENCORES is not set
-# CONFIG_KEYBOARD_SAMSUNG is not set
-# CONFIG_KEYBOARD_STOWAWAY is not set
-# CONFIG_KEYBOARD_SUNKBD is not set
-# CONFIG_KEYBOARD_XTKBD is not set
-CONFIG_INPUT_MOUSE=y
-CONFIG_MOUSE_PS2=y
-CONFIG_MOUSE_PS2_ALPS=y
-CONFIG_MOUSE_PS2_LOGIPS2PP=y
-CONFIG_MOUSE_PS2_SYNAPTICS=y
-CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
-CONFIG_MOUSE_PS2_CYPRESS=y
-CONFIG_MOUSE_PS2_LIFEBOOK=y
-CONFIG_MOUSE_PS2_TRACKPOINT=y
-CONFIG_MOUSE_PS2_ELANTECH=y
-CONFIG_MOUSE_PS2_SENTELIC=y
-# CONFIG_MOUSE_PS2_TOUCHKIT is not set
-CONFIG_MOUSE_PS2_VMMOUSE=y
-CONFIG_MOUSE_PS2_SMBUS=y
-CONFIG_MOUSE_SERIAL=m
-CONFIG_MOUSE_APPLETOUCH=m
-CONFIG_MOUSE_BCM5974=m
-CONFIG_MOUSE_CYAPA=m
-CONFIG_MOUSE_VSXXXAA=m
-# CONFIG_MOUSE_GPIO is not set
-CONFIG_MOUSE_SYNAPTICS_I2C=m
-CONFIG_MOUSE_SYNAPTICS_USB=m
-# CONFIG_INPUT_JOYSTICK is not set
-CONFIG_INPUT_TABLET=y
-CONFIG_TABLET_USB_ACECAD=m
-CONFIG_TABLET_USB_AIPTEK=m
-CONFIG_TABLET_USB_GTCO=m
-# CONFIG_TABLET_USB_HANWANG is not set
-CONFIG_TABLET_USB_KBTAB=m
-CONFIG_TABLET_USB_WACOM=m
-CONFIG_INPUT_TOUCHSCREEN=y
-# CONFIG_TOUCHSCREEN_ADS7846 is not set
-# CONFIG_TOUCHSCREEN_AD7877 is not set
-# CONFIG_TOUCHSCREEN_AD7879 is not set
-# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
-# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_BU21013 is not set
-# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
-# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
-# CONFIG_TOUCHSCREEN_DYNAPRO is not set
-# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
-# CONFIG_TOUCHSCREEN_EETI is not set
-# CONFIG_TOUCHSCREEN_FUJITSU is not set
-# CONFIG_TOUCHSCREEN_ILI210X is not set
-# CONFIG_TOUCHSCREEN_GUNZE is not set
-CONFIG_TOUCHSCREEN_ELO=m
-CONFIG_TOUCHSCREEN_WACOM_W8001=m
-CONFIG_TOUCHSCREEN_WACOM_I2C=m
-# CONFIG_TOUCHSCREEN_MAX11801 is not set
-# CONFIG_TOUCHSCREEN_MCS5000 is not set
-# CONFIG_TOUCHSCREEN_MMS114 is not set
-# CONFIG_TOUCHSCREEN_MTOUCH is not set
-# CONFIG_TOUCHSCREEN_INEXIO is not set
-# CONFIG_TOUCHSCREEN_MK712 is not set
-# CONFIG_TOUCHSCREEN_PENMOUNT is not set
-# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
-# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
-# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
-# CONFIG_TOUCHSCREEN_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_WM97XX is not set
-# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
-# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
-# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
-# CONFIG_TOUCHSCREEN_TSC2005 is not set
-# CONFIG_TOUCHSCREEN_TSC2007 is not set
-# CONFIG_TOUCHSCREEN_W90X900 is not set
-# CONFIG_TOUCHSCREEN_ST1232 is not set
-# CONFIG_TOUCHSCREEN_TPS6507X is not set
-CONFIG_INPUT_MISC=y
-# CONFIG_INPUT_AD714X is not set
-# CONFIG_INPUT_BMA150 is not set
-CONFIG_INPUT_PCSPKR=m
-# CONFIG_INPUT_MMA8450 is not set
-# CONFIG_INPUT_MPU3050 is not set
-CONFIG_INPUT_APANEL=m
-CONFIG_INPUT_GP2A=m
-# CONFIG_INPUT_GPIO_TILT_POLLED is not set
-CONFIG_INPUT_ATLAS_BTNS=m
-CONFIG_INPUT_ATI_REMOTE2=m
-CONFIG_INPUT_KEYSPAN_REMOTE=m
-# CONFIG_INPUT_KXTJ9 is not set
-CONFIG_INPUT_POWERMATE=m
-CONFIG_INPUT_YEALINK=m
-CONFIG_INPUT_CM109=m
-CONFIG_INPUT_UINPUT=m
-# CONFIG_INPUT_PCF8574 is not set
-# CONFIG_INPUT_PWM_BEEPER is not set
-CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
-# CONFIG_INPUT_ADXL34X is not set
-# CONFIG_INPUT_IMS_PCU is not set
-# CONFIG_INPUT_CMA3000 is not set
-CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m
-CONFIG_RMI4_CORE=m
-CONFIG_RMI4_SMB=m
-CONFIG_RMI4_F03=y
-CONFIG_RMI4_F03_SERIO=m
-CONFIG_RMI4_2D_SENSOR=y
-CONFIG_RMI4_F11=y
-CONFIG_RMI4_F12=y
-CONFIG_RMI4_F30=y
-
-#
-# Hardware I/O ports
-#
-CONFIG_SERIO=y
-CONFIG_SERIO_I8042=y
-CONFIG_SERIO_SERPORT=y
-# CONFIG_SERIO_CT82C710 is not set
-# CONFIG_SERIO_PARKBD is not set
-# CONFIG_SERIO_PCIPS2 is not set
-CONFIG_SERIO_LIBPS2=y
-CONFIG_SERIO_RAW=m
-CONFIG_SERIO_ALTERA_PS2=m
-# CONFIG_SERIO_PS2MULT is not set
-CONFIG_SERIO_ARC_PS2=m
-CONFIG_HYPERV_KEYBOARD=m
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_VT_CONSOLE_SLEEP=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_SERIAL_NONSTANDARD=y
-# CONFIG_ROCKETPORT is not set
-CONFIG_CYCLADES=m
-# CONFIG_CYZ_INTR is not set
-# CONFIG_MOXA_INTELLIO is not set
-# CONFIG_MOXA_SMARTIO is not set
-CONFIG_SYNCLINK=m
-CONFIG_SYNCLINKMP=m
-CONFIG_SYNCLINK_GT=m
-CONFIG_NOZOMI=m
-# CONFIG_ISI is not set
-CONFIG_N_HDLC=m
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=y
-# CONFIG_STALDRV is not set
-
-#
-# Serial drivers
-#
-CONFIG_SERIAL_8250=y
-# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
-CONFIG_SERIAL_8250_PNP=y
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_FIX_EARLYCON_MEM=y
-CONFIG_SERIAL_8250_DMA=y
-CONFIG_SERIAL_8250_PCI=y
-CONFIG_SERIAL_8250_NR_UARTS=32
-CONFIG_SERIAL_8250_RUNTIME_UARTS=4
-CONFIG_SERIAL_8250_EXTENDED=y
-CONFIG_SERIAL_8250_MANY_PORTS=y
-CONFIG_SERIAL_8250_SHARE_IRQ=y
-# CONFIG_SERIAL_8250_DETECT_IRQ is not set
-CONFIG_SERIAL_8250_RSA=y
-CONFIG_SERIAL_8250_DW=y
-
-#
-# Non-8250 serial port support
-#
-# CONFIG_SERIAL_KGDB_NMI is not set
-# CONFIG_SERIAL_MAX3100 is not set
-# CONFIG_SERIAL_MAX310X is not set
-# CONFIG_SERIAL_MFD_HSU is not set
-CONFIG_SERIAL_CORE=y
-CONFIG_SERIAL_CORE_CONSOLE=y
-CONFIG_CONSOLE_POLL=y
-CONFIG_SERIAL_JSM=m
-# CONFIG_SERIAL_SCCNXP is not set
-# CONFIG_SERIAL_TIMBERDALE is not set
-# CONFIG_SERIAL_ALTERA_JTAGUART is not set
-# CONFIG_SERIAL_ALTERA_UART is not set
-# CONFIG_SERIAL_IFX6X60 is not set
-# CONFIG_SERIAL_PCH_UART is not set
-CONFIG_SERIAL_ARC=m
-CONFIG_SERIAL_ARC_NR_PORTS=1
-# CONFIG_SERIAL_RP2 is not set
-CONFIG_PRINTER=m
-# CONFIG_LP_CONSOLE is not set
-CONFIG_PPDEV=m
-CONFIG_HVC_DRIVER=y
-CONFIG_HVC_IRQ=y
-CONFIG_HVC_XEN=y
-CONFIG_HVC_XEN_FRONTEND=y
-CONFIG_VIRTIO_CONSOLE=m
-CONFIG_IPMI_HANDLER=m
-CONFIG_IPMI_DMI_DECODE=y
-CONFIG_IPMI_PROC_INTERFACE=y
-CONFIG_IPMI_PANIC_EVENT=y
-# CONFIG_IPMI_PANIC_STRING is not set
-CONFIG_IPMI_DEVICE_INTERFACE=m
-CONFIG_IPMI_SI=m
-CONFIG_IPMI_SSIF=m
-CONFIG_IPMI_WATCHDOG=m
-CONFIG_IPMI_POWEROFF=m
-CONFIG_HW_RANDOM=y
-CONFIG_HW_RANDOM_TIMERIOMEM=m
-CONFIG_HW_RANDOM_INTEL=m
-CONFIG_HW_RANDOM_AMD=m
-# CONFIG_HW_RANDOM_ATMEL is not set
-CONFIG_HW_RANDOM_VIA=m
-CONFIG_HW_RANDOM_VIRTIO=m
-# CONFIG_HW_RANDOM_EXYNOS is not set
-CONFIG_NVRAM=y
-# CONFIG_R3964 is not set
-# CONFIG_APPLICOM is not set
-# CONFIG_MWAVE is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-CONFIG_HPET=y
-CONFIG_HPET_MMAP=y
-# CONFIG_HPET_MMAP_DEFAULT is not set
-CONFIG_HANGCHECK_TIMER=m
-CONFIG_UV_MMTIMER=m
-CONFIG_TCG_TPM=y
-CONFIG_HW_RANDOM_TPM=y
-CONFIG_TCG_TIS_CORE=y
-CONFIG_TCG_TIS=y
-# CONFIG_TCG_TIS_SPI is not set
-CONFIG_TCG_TIS_I2C_ATMEL=m
-CONFIG_TCG_TIS_I2C_INFINEON=m
-CONFIG_TCG_TIS_I2C_NUVOTON=m
-CONFIG_TCG_NSC=m
-CONFIG_TCG_ATMEL=m
-CONFIG_TCG_INFINEON=m
-# CONFIG_TCG_XEN is not set
-CONFIG_TCG_CRB=m
-# CONFIG_TCG_VTPM_PROXY is not set
-CONFIG_TCG_TIS_ST33ZP24=m
-CONFIG_TCG_TIS_ST33ZP24_I2C=m
-# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
-CONFIG_TELCLOCK=m
-CONFIG_DEVPORT=y
-CONFIG_HMC_DRV=m
-
-#
-# I2C support
-#
-CONFIG_I2C=y
-CONFIG_I2C_ACPI=y
-CONFIG_I2C_BOARDINFO=y
-CONFIG_I2C_COMPAT=y
-CONFIG_I2C_CHARDEV=m
-# CONFIG_I2C_MUX is not set
-CONFIG_I2C_HELPER_AUTO=y
-CONFIG_I2C_SMBUS=m
-CONFIG_I2C_ALGOBIT=m
-CONFIG_I2C_ALGOPCA=m
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-CONFIG_I2C_AMD756=m
-CONFIG_I2C_AMD756_S4882=m
-CONFIG_I2C_AMD8111=m
-CONFIG_I2C_I801=m
-CONFIG_I2C_ISCH=m
-CONFIG_I2C_ISMT=m
-CONFIG_I2C_PIIX4=m
-CONFIG_I2C_NFORCE2=m
-CONFIG_I2C_NFORCE2_S4985=m
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-CONFIG_I2C_SIS96X=m
-CONFIG_I2C_VIA=m
-CONFIG_I2C_VIAPRO=m
-
-#
-# ACPI drivers
-#
-CONFIG_I2C_SCMI=m
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_CBUS_GPIO is not set
-CONFIG_I2C_DESIGNWARE_CORE=m
-CONFIG_I2C_DESIGNWARE_PLATFORM=m
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_EG20T is not set
-# CONFIG_I2C_GPIO is not set
-# CONFIG_I2C_INTEL_MID is not set
-# CONFIG_I2C_OCORES is not set
-CONFIG_I2C_PCA_PLATFORM=m
-# CONFIG_I2C_PXA_PCI is not set
-CONFIG_I2C_SIMTEC=m
-# CONFIG_I2C_XILINX is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-CONFIG_I2C_DIOLAN_U2C=m
-CONFIG_I2C_PARPORT=m
-CONFIG_I2C_PARPORT_LIGHT=m
-# CONFIG_I2C_TAOS_EVM is not set
-CONFIG_I2C_TINY_USB=m
-CONFIG_I2C_VIPERBOARD=m
-
-#
-# Other I2C/SMBus bus drivers
-#
-CONFIG_I2C_STUB=m
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-CONFIG_SPI=y
-# CONFIG_SPI_DEBUG is not set
-CONFIG_SPI_MASTER=y
-
-#
-# SPI Master Controller Drivers
-#
-# CONFIG_SPI_ALTERA is not set
-# CONFIG_SPI_BITBANG is not set
-# CONFIG_SPI_BUTTERFLY is not set
-# CONFIG_SPI_GPIO is not set
-# CONFIG_SPI_LM70_LLP is not set
-# CONFIG_SPI_OC_TINY is not set
-# CONFIG_SPI_PXA2XX is not set
-# CONFIG_SPI_PXA2XX_PCI is not set
-# CONFIG_SPI_SC18IS602 is not set
-# CONFIG_SPI_TOPCLIFF_PCH is not set
-# CONFIG_SPI_XCOMM is not set
-# CONFIG_SPI_XILINX is not set
-# CONFIG_SPI_DESIGNWARE is not set
-
-#
-# SPI Protocol Masters
-#
-# CONFIG_SPI_SPIDEV is not set
-# CONFIG_SPI_TLE62X0 is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-CONFIG_PPS_CLIENT_PARPORT=m
-CONFIG_PPS_CLIENT_GPIO=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-CONFIG_DP83640_PHY=m
-CONFIG_PTP_1588_CLOCK_PCH=m
-CONFIG_PTP_1588_CLOCK_KVM=m
-CONFIG_PINCTRL=y
-
-#
-# Pin controllers
-#
-CONFIG_PINMUX=y
-CONFIG_PINCONF=y
-CONFIG_GENERIC_PINCONF=y
-# CONFIG_DEBUG_PINCTRL is not set
-CONFIG_PINCTRL_AMD=m
-# CONFIG_PINCTRL_EXYNOS5440 is not set
-CONFIG_PINCTRL_BAYTRAIL=y
-CONFIG_PINCTRL_INTEL=m
-CONFIG_PINCTRL_CANNONLAKE=m
-CONFIG_PINCTRL_CEDARFORK=m
-CONFIG_PINCTRL_DENVERTON=m
-CONFIG_PINCTRL_GEMINILAKE=m
-CONFIG_PINCTRL_ICELAKE=m
-CONFIG_PINCTRL_LEWISBURG=m
-CONFIG_PINCTRL_BROXTON=m
-CONFIG_PINCTRL_SUNRISEPOINT=m
-CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_DEVRES=y
-CONFIG_GPIO_ACPI=y
-CONFIG_GPIOLIB_IRQCHIP=y
-# CONFIG_DEBUG_GPIO is not set
-CONFIG_GPIO_SYSFS=y
-CONFIG_GPIO_AMDPT=m
-
-#
-# Memory mapped GPIO drivers:
-#
-# CONFIG_GPIO_GENERIC_PLATFORM is not set
-# CONFIG_GPIO_IT8761E is not set
-# CONFIG_GPIO_F7188X is not set
-# CONFIG_GPIO_SCH311X is not set
-# CONFIG_GPIO_TS5500 is not set
-# CONFIG_GPIO_SCH is not set
-CONFIG_GPIO_ICH=m
-# CONFIG_GPIO_VX855 is not set
-# CONFIG_GPIO_LYNXPOINT is not set
-
-#
-# I2C GPIO expanders:
-#
-# CONFIG_GPIO_MAX7300 is not set
-# CONFIG_GPIO_MAX732X is not set
-# CONFIG_GPIO_PCA953X is not set
-# CONFIG_GPIO_PCF857X is not set
-# CONFIG_GPIO_SX150X is not set
-# CONFIG_GPIO_ADP5588 is not set
-
-#
-# PCI GPIO expanders:
-#
-# CONFIG_GPIO_AMD8111 is not set
-CONFIG_GPIO_LANGWELL=y
-# CONFIG_GPIO_PCH is not set
-# CONFIG_GPIO_ML_IOH is not set
-# CONFIG_GPIO_RDC321X is not set
-
-#
-# SPI GPIO expanders:
-#
-# CONFIG_GPIO_MAX7301 is not set
-# CONFIG_GPIO_MC33880 is not set
-# CONFIG_GPIO_74X164 is not set
-
-#
-# AC97 GPIO expanders:
-#
-
-#
-# LPC GPIO expanders:
-#
-
-#
-# MODULbus GPIO expanders:
-#
-
-#
-# USB GPIO expanders:
-#
-CONFIG_GPIO_VIPERBOARD=m
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_PDA_POWER is not set
-# CONFIG_GENERIC_ADC_BATTERY is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-# CONFIG_BATTERY_DS2781 is not set
-# CONFIG_BATTERY_DS2782 is not set
-# CONFIG_BATTERY_SBS is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-# CONFIG_BATTERY_MAX17040 is not set
-# CONFIG_BATTERY_MAX17042 is not set
-# CONFIG_CHARGER_MAX8903 is not set
-# CONFIG_CHARGER_LP8727 is not set
-# CONFIG_CHARGER_GPIO is not set
-# CONFIG_CHARGER_BQ2415X is not set
-CONFIG_CHARGER_SMB347=m
-# CONFIG_BATTERY_GOLDFISH is not set
-CONFIG_POWER_RESET=y
-# CONFIG_POWER_AVS is not set
-CONFIG_POWERCAP=y
-CONFIG_INTEL_RAPL=m
-CONFIG_HWMON=y
-CONFIG_HWMON_VID=m
-# CONFIG_HWMON_DEBUG_CHIP is not set
-
-#
-# Native drivers
-#
-CONFIG_SENSORS_ABITUGURU=m
-CONFIG_SENSORS_ABITUGURU3=m
-# CONFIG_SENSORS_AD7314 is not set
-CONFIG_SENSORS_AD7414=m
-CONFIG_SENSORS_AD7418=m
-# CONFIG_SENSORS_ADCXX is not set
-CONFIG_SENSORS_ADM1021=m
-CONFIG_SENSORS_ADM1025=m
-CONFIG_SENSORS_ADM1026=m
-CONFIG_SENSORS_ADM1029=m
-CONFIG_SENSORS_ADM1031=m
-CONFIG_SENSORS_ADM9240=m
-CONFIG_SENSORS_ADT7X10=m
-# CONFIG_SENSORS_ADT7310 is not set
-CONFIG_SENSORS_ADT7410=m
-CONFIG_SENSORS_ADT7411=m
-CONFIG_SENSORS_ADT7462=m
-CONFIG_SENSORS_ADT7470=m
-CONFIG_SENSORS_ADT7475=m
-CONFIG_SENSORS_ASC7621=m
-CONFIG_SENSORS_K8TEMP=m
-CONFIG_SENSORS_K10TEMP=m
-CONFIG_SENSORS_FAM15H_POWER=m
-CONFIG_SENSORS_ASB100=m
-CONFIG_SENSORS_ATXP1=m
-CONFIG_SENSORS_DS620=m
-CONFIG_SENSORS_DS1621=m
-CONFIG_SENSORS_I5K_AMB=m
-CONFIG_SENSORS_F71805F=m
-CONFIG_SENSORS_F71882FG=m
-CONFIG_SENSORS_F75375S=m
-CONFIG_SENSORS_FSCHMD=m
-CONFIG_SENSORS_G760A=m
-CONFIG_SENSORS_GL518SM=m
-CONFIG_SENSORS_GL520SM=m
-# CONFIG_SENSORS_GPIO_FAN is not set
-# CONFIG_SENSORS_HIH6130 is not set
-CONFIG_SENSORS_CORETEMP=m
-CONFIG_SENSORS_IBMAEM=m
-CONFIG_SENSORS_IBMPEX=m
-# CONFIG_SENSORS_IIO_HWMON is not set
-CONFIG_SENSORS_IT87=m
-CONFIG_SENSORS_JC42=m
-CONFIG_SENSORS_LINEAGE=m
-CONFIG_SENSORS_LM63=m
-# CONFIG_SENSORS_LM70 is not set
-CONFIG_SENSORS_LM73=m
-CONFIG_SENSORS_LM75=m
-CONFIG_SENSORS_LM77=m
-CONFIG_SENSORS_LM78=m
-CONFIG_SENSORS_LM80=m
-CONFIG_SENSORS_LM83=m
-CONFIG_SENSORS_LM85=m
-CONFIG_SENSORS_LM87=m
-CONFIG_SENSORS_LM90=m
-CONFIG_SENSORS_LM92=m
-CONFIG_SENSORS_LM93=m
-CONFIG_SENSORS_LTC4151=m
-CONFIG_SENSORS_LTC4215=m
-CONFIG_SENSORS_LTC4245=m
-CONFIG_SENSORS_LTC4261=m
-CONFIG_SENSORS_LM95234=m
-CONFIG_SENSORS_LM95241=m
-CONFIG_SENSORS_LM95245=m
-# CONFIG_SENSORS_MAX1111 is not set
-CONFIG_SENSORS_MAX16065=m
-CONFIG_SENSORS_MAX1619=m
-CONFIG_SENSORS_MAX1668=m
-CONFIG_SENSORS_MAX197=m
-CONFIG_SENSORS_MAX6639=m
-CONFIG_SENSORS_MAX6642=m
-CONFIG_SENSORS_MAX6650=m
-CONFIG_SENSORS_MAX6697=m
-CONFIG_SENSORS_MCP3021=m
-CONFIG_SENSORS_NCT6775=m
-CONFIG_SENSORS_NTC_THERMISTOR=m
-CONFIG_SENSORS_PC87360=m
-CONFIG_SENSORS_PC87427=m
-CONFIG_SENSORS_PCF8591=m
-CONFIG_PMBUS=m
-CONFIG_SENSORS_PMBUS=m
-CONFIG_SENSORS_ADM1275=m
-CONFIG_SENSORS_LM25066=m
-CONFIG_SENSORS_LTC2978=m
-CONFIG_SENSORS_MAX16064=m
-CONFIG_SENSORS_MAX34440=m
-CONFIG_SENSORS_MAX8688=m
-CONFIG_SENSORS_UCD9000=m
-CONFIG_SENSORS_UCD9200=m
-CONFIG_SENSORS_ZL6100=m
-CONFIG_SENSORS_SHT15=m
-CONFIG_SENSORS_SHT21=m
-CONFIG_SENSORS_SIS5595=m
-# CONFIG_SENSORS_SMM665 is not set
-CONFIG_SENSORS_DME1737=m
-CONFIG_SENSORS_EMC1403=m
-# CONFIG_SENSORS_EMC2103 is not set
-CONFIG_SENSORS_EMC6W201=m
-CONFIG_SENSORS_SMSC47M1=m
-CONFIG_SENSORS_SMSC47M192=m
-CONFIG_SENSORS_SMSC47B397=m
-CONFIG_SENSORS_SCH56XX_COMMON=m
-CONFIG_SENSORS_SCH5627=m
-CONFIG_SENSORS_SCH5636=m
-CONFIG_SENSORS_ADS1015=m
-CONFIG_SENSORS_ADS7828=m
-# CONFIG_SENSORS_ADS7871 is not set
-CONFIG_SENSORS_AMC6821=m
-CONFIG_SENSORS_INA209=m
-CONFIG_SENSORS_INA2XX=m
-CONFIG_SENSORS_THMC50=m
-CONFIG_SENSORS_TMP102=m
-CONFIG_SENSORS_TMP401=m
-CONFIG_SENSORS_TMP421=m
-CONFIG_SENSORS_VIA_CPUTEMP=m
-CONFIG_SENSORS_VIA686A=m
-CONFIG_SENSORS_VT1211=m
-CONFIG_SENSORS_VT8231=m
-CONFIG_SENSORS_W83781D=m
-CONFIG_SENSORS_W83791D=m
-CONFIG_SENSORS_W83792D=m
-CONFIG_SENSORS_W83793=m
-CONFIG_SENSORS_W83795=m
-# CONFIG_SENSORS_W83795_FANCTRL is not set
-CONFIG_SENSORS_W83L785TS=m
-CONFIG_SENSORS_W83L786NG=m
-CONFIG_SENSORS_W83627HF=m
-CONFIG_SENSORS_W83627EHF=m
-CONFIG_SENSORS_APPLESMC=m
-
-#
-# ACPI drivers
-#
-CONFIG_SENSORS_ACPI_POWER=m
-CONFIG_SENSORS_ATK0110=m
-CONFIG_THERMAL=y
-CONFIG_THERMAL_HWMON=y
-CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
-# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
-# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
-CONFIG_THERMAL_GOV_FAIR_SHARE=y
-CONFIG_THERMAL_GOV_STEP_WISE=y
-# CONFIG_THERMAL_GOV_USER_SPACE is not set
-# CONFIG_CPU_THERMAL is not set
-# CONFIG_THERMAL_EMULATION is not set
-CONFIG_INTEL_POWERCLAMP=m
-CONFIG_INT340X_THERMAL=m
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_CORE=y
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
-CONFIG_WATCHDOG_SYSFS=y
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-CONFIG_WDAT_WDT=m
-# CONFIG_ACQUIRE_WDT is not set
-# CONFIG_ADVANTECH_WDT is not set
-CONFIG_ALIM1535_WDT=m
-CONFIG_ALIM7101_WDT=m
-CONFIG_F71808E_WDT=m
-CONFIG_SP5100_TCO=m
-# CONFIG_SC520_WDT is not set
-CONFIG_SBC_FITPC2_WATCHDOG=m
-# CONFIG_EUROTECH_WDT is not set
-CONFIG_IB700_WDT=m
-CONFIG_IBMASR=m
-# CONFIG_WAFER_WDT is not set
-CONFIG_I6300ESB_WDT=m
-CONFIG_IE6XX_WDT=m
-CONFIG_ITCO_WDT=m
-CONFIG_ITCO_VENDOR_SUPPORT=y
-CONFIG_IT8712F_WDT=m
-CONFIG_IT87_WDT=m
-CONFIG_HP_WATCHDOG=m
-CONFIG_HPWDT_NMI_DECODING=y
-# CONFIG_SC1200_WDT is not set
-# CONFIG_PC87413_WDT is not set
-CONFIG_NV_TCO=m
-# CONFIG_60XX_WDT is not set
-# CONFIG_SBC8360_WDT is not set
-# CONFIG_CPU5_WDT is not set
-CONFIG_SMSC_SCH311X_WDT=m
-# CONFIG_SMSC37B787_WDT is not set
-CONFIG_VIA_WDT=m
-CONFIG_W83627HF_WDT=m
-CONFIG_W83697HF_WDT=m
-CONFIG_W83697UG_WDT=m
-CONFIG_W83877F_WDT=m
-CONFIG_W83977F_WDT=m
-CONFIG_MACHZ_WDT=m
-# CONFIG_SBC_EPX_C3_WATCHDOG is not set
-CONFIG_INTEL_MEI_WDT=m
-CONFIG_XEN_WDT=m
-
-#
-# PCI-based Watchdog Cards
-#
-CONFIG_PCIPCWATCHDOG=m
-CONFIG_WDTPCI=m
-
-#
-# USB-based Watchdog Cards
-#
-CONFIG_USBPCWATCHDOG=m
-
-#
-# Watchdog Pretimeout Governors
-#
-# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-CONFIG_SSB=m
-CONFIG_SSB_SPROM=y
-CONFIG_SSB_PCIHOST_POSSIBLE=y
-CONFIG_SSB_PCIHOST=y
-# CONFIG_SSB_B43_PCI_BRIDGE is not set
-CONFIG_SSB_SDIOHOST_POSSIBLE=y
-CONFIG_SSB_SDIOHOST=y
-# CONFIG_SSB_DEBUG is not set
-CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
-CONFIG_SSB_DRIVER_PCICORE=y
-CONFIG_SSB_DRIVER_GPIO=y
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-CONFIG_BCMA=m
-CONFIG_BCMA_HOST_PCI_POSSIBLE=y
-CONFIG_BCMA_HOST_PCI=y
-# CONFIG_BCMA_HOST_SOC is not set
-CONFIG_BCMA_DRIVER_PCI=y
-CONFIG_BCMA_DRIVER_GMAC_CMN=y
-CONFIG_BCMA_DRIVER_GPIO=y
-# CONFIG_BCMA_DEBUG is not set
-
-#
-# Multifunction device drivers
-#
-CONFIG_MFD_CORE=y
-# CONFIG_MFD_CS5535 is not set
-# CONFIG_MFD_AS3711 is not set
-# CONFIG_PMIC_ADP5520 is not set
-# CONFIG_MFD_AAT2870_CORE is not set
-# CONFIG_MFD_CROS_EC is not set
-# CONFIG_PMIC_DA903X is not set
-# CONFIG_MFD_DA9052_SPI is not set
-# CONFIG_MFD_DA9052_I2C is not set
-# CONFIG_MFD_DA9055 is not set
-# CONFIG_MFD_MC13XXX_SPI is not set
-# CONFIG_MFD_MC13XXX_I2C is not set
-# CONFIG_HTC_PASIC3 is not set
-# CONFIG_HTC_I2CPLD is not set
-CONFIG_LPC_ICH=m
-CONFIG_LPC_SCH=m
-CONFIG_MFD_INTEL_LPSS=y
-CONFIG_MFD_INTEL_LPSS_ACPI=y
-CONFIG_MFD_INTEL_LPSS_PCI=y
-# CONFIG_MFD_JANZ_CMODIO is not set
-# CONFIG_MFD_88PM800 is not set
-# CONFIG_MFD_88PM805 is not set
-# CONFIG_MFD_88PM860X is not set
-# CONFIG_MFD_MAX77686 is not set
-# CONFIG_MFD_MAX77693 is not set
-# CONFIG_MFD_MAX8907 is not set
-# CONFIG_MFD_MAX8925 is not set
-# CONFIG_MFD_MAX8997 is not set
-# CONFIG_MFD_MAX8998 is not set
-# CONFIG_EZX_PCAP is not set
-CONFIG_MFD_VIPERBOARD=m
-# CONFIG_MFD_RETU is not set
-# CONFIG_MFD_PCF50633 is not set
-# CONFIG_UCB1400_CORE is not set
-# CONFIG_MFD_RDC321X is not set
-CONFIG_MFD_RTSX_PCI=m
-CONFIG_MFD_RTSX_USB=m
-# CONFIG_MFD_RC5T583 is not set
-# CONFIG_MFD_SEC_CORE is not set
-# CONFIG_MFD_SI476X_CORE is not set
-CONFIG_MFD_SM501=m
-CONFIG_MFD_SM501_GPIO=y
-# CONFIG_MFD_SMSC is not set
-# CONFIG_ABX500_CORE is not set
-# CONFIG_MFD_STMPE is not set
-# CONFIG_MFD_SYSCON is not set
-# CONFIG_MFD_TI_AM335X_TSCADC is not set
-# CONFIG_MFD_LP8788 is not set
-# CONFIG_MFD_PALMAS is not set
-# CONFIG_TPS6105X is not set
-# CONFIG_TPS65010 is not set
-# CONFIG_TPS6507X is not set
-# CONFIG_MFD_TPS65090 is not set
-# CONFIG_MFD_TPS65217 is not set
-# CONFIG_MFD_TPS6586X is not set
-# CONFIG_MFD_TPS65910 is not set
-# CONFIG_MFD_TPS65912 is not set
-# CONFIG_MFD_TPS65912_I2C is not set
-# CONFIG_MFD_TPS65912_SPI is not set
-# CONFIG_MFD_TPS80031 is not set
-# CONFIG_TWL4030_CORE is not set
-# CONFIG_TWL6040_CORE is not set
-# CONFIG_MFD_WL1273_CORE is not set
-# CONFIG_MFD_LM3533 is not set
-# CONFIG_MFD_TIMBERDALE is not set
-# CONFIG_MFD_TC3589X is not set
-# CONFIG_MFD_TMIO is not set
-CONFIG_MFD_VX855=m
-# CONFIG_MFD_ARIZONA_I2C is not set
-# CONFIG_MFD_ARIZONA_SPI is not set
-# CONFIG_MFD_WM8400 is not set
-# CONFIG_MFD_WM831X_I2C is not set
-# CONFIG_MFD_WM831X_SPI is not set
-# CONFIG_MFD_WM8350_I2C is not set
-# CONFIG_MFD_WM8994 is not set
-# CONFIG_REGULATOR is not set
-CONFIG_MEDIA_SUPPORT=m
-
-#
-# Multimedia core support
-#
-CONFIG_MEDIA_CAMERA_SUPPORT=y
-CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
-CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
-CONFIG_MEDIA_RADIO_SUPPORT=y
-CONFIG_MEDIA_RC_SUPPORT=y
-# CONFIG_MEDIA_CONTROLLER is not set
-CONFIG_VIDEO_DEV=m
-CONFIG_VIDEO_V4L2=m
-# CONFIG_VIDEO_ADV_DEBUG is not set
-# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
-CONFIG_VIDEO_TUNER=m
-CONFIG_VIDEOBUF_GEN=m
-CONFIG_VIDEOBUF_DMA_SG=m
-CONFIG_VIDEOBUF_VMALLOC=m
-CONFIG_VIDEOBUF_DVB=m
-CONFIG_VIDEOBUF2_CORE=m
-CONFIG_VIDEOBUF2_MEMOPS=m
-CONFIG_VIDEOBUF2_VMALLOC=m
-# CONFIG_VIDEO_V4L2_INT_DEVICE is not set
-CONFIG_DVB_CORE=m
-CONFIG_DVB_NET=y
-CONFIG_TTPCI_EEPROM=m
-CONFIG_DVB_MAX_ADAPTERS=8
-CONFIG_DVB_DYNAMIC_MINORS=y
-
-#
-# Media drivers
-#
-CONFIG_RC_CORE=m
-CONFIG_RC_MAP=m
-CONFIG_RC_DECODERS=y
-CONFIG_LIRC=m
-CONFIG_IR_LIRC_CODEC=m
-CONFIG_IR_NEC_DECODER=m
-CONFIG_IR_RC5_DECODER=m
-CONFIG_IR_RC6_DECODER=m
-CONFIG_IR_JVC_DECODER=m
-CONFIG_IR_SONY_DECODER=m
-CONFIG_IR_RC5_SZ_DECODER=m
-CONFIG_IR_SANYO_DECODER=m
-CONFIG_IR_MCE_KBD_DECODER=m
-CONFIG_RC_DEVICES=y
-CONFIG_RC_ATI_REMOTE=m
-CONFIG_IR_ENE=m
-CONFIG_IR_IMON=m
-CONFIG_IR_MCEUSB=m
-CONFIG_IR_ITE_CIR=m
-CONFIG_IR_FINTEK=m
-CONFIG_IR_NUVOTON=m
-CONFIG_IR_REDRAT3=m
-CONFIG_IR_STREAMZAP=m
-CONFIG_IR_WINBOND_CIR=m
-CONFIG_IR_IGUANA=m
-CONFIG_IR_TTUSBIR=m
-CONFIG_RC_LOOPBACK=m
-CONFIG_IR_GPIO_CIR=m
-CONFIG_MEDIA_USB_SUPPORT=y
-
-#
-# Webcam devices
-#
-CONFIG_USB_VIDEO_CLASS=m
-CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
-CONFIG_USB_GSPCA=m
-CONFIG_USB_M5602=m
-CONFIG_USB_STV06XX=m
-CONFIG_USB_GL860=m
-CONFIG_USB_GSPCA_BENQ=m
-CONFIG_USB_GSPCA_CONEX=m
-CONFIG_USB_GSPCA_CPIA1=m
-CONFIG_USB_GSPCA_ETOMS=m
-CONFIG_USB_GSPCA_FINEPIX=m
-CONFIG_USB_GSPCA_JEILINJ=m
-CONFIG_USB_GSPCA_JL2005BCD=m
-# CONFIG_USB_GSPCA_KINECT is not set
-CONFIG_USB_GSPCA_KONICA=m
-CONFIG_USB_GSPCA_MARS=m
-CONFIG_USB_GSPCA_MR97310A=m
-CONFIG_USB_GSPCA_NW80X=m
-CONFIG_USB_GSPCA_OV519=m
-CONFIG_USB_GSPCA_OV534=m
-CONFIG_USB_GSPCA_OV534_9=m
-CONFIG_USB_GSPCA_PAC207=m
-CONFIG_USB_GSPCA_PAC7302=m
-CONFIG_USB_GSPCA_PAC7311=m
-CONFIG_USB_GSPCA_SE401=m
-CONFIG_USB_GSPCA_SN9C2028=m
-CONFIG_USB_GSPCA_SN9C20X=m
-CONFIG_USB_GSPCA_SONIXB=m
-CONFIG_USB_GSPCA_SONIXJ=m
-CONFIG_USB_GSPCA_SPCA500=m
-CONFIG_USB_GSPCA_SPCA501=m
-CONFIG_USB_GSPCA_SPCA505=m
-CONFIG_USB_GSPCA_SPCA506=m
-CONFIG_USB_GSPCA_SPCA508=m
-CONFIG_USB_GSPCA_SPCA561=m
-CONFIG_USB_GSPCA_SPCA1528=m
-CONFIG_USB_GSPCA_SQ905=m
-CONFIG_USB_GSPCA_SQ905C=m
-CONFIG_USB_GSPCA_SQ930X=m
-CONFIG_USB_GSPCA_STK014=m
-CONFIG_USB_GSPCA_STV0680=m
-CONFIG_USB_GSPCA_SUNPLUS=m
-CONFIG_USB_GSPCA_T613=m
-CONFIG_USB_GSPCA_TOPRO=m
-CONFIG_USB_GSPCA_TV8532=m
-CONFIG_USB_GSPCA_VC032X=m
-CONFIG_USB_GSPCA_VICAM=m
-CONFIG_USB_GSPCA_XIRLINK_CIT=m
-CONFIG_USB_GSPCA_ZC3XX=m
-CONFIG_USB_PWC=m
-# CONFIG_USB_PWC_DEBUG is not set
-CONFIG_USB_PWC_INPUT_EVDEV=y
-# CONFIG_VIDEO_CPIA2 is not set
-CONFIG_USB_ZR364XX=m
-CONFIG_USB_STKWEBCAM=m
-CONFIG_USB_S2255=m
-# CONFIG_USB_SN9C102 is not set
-
-#
-# Analog TV USB devices
-#
-CONFIG_VIDEO_PVRUSB2=m
-CONFIG_VIDEO_PVRUSB2_SYSFS=y
-CONFIG_VIDEO_PVRUSB2_DVB=y
-# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
-CONFIG_VIDEO_HDPVR=m
-CONFIG_VIDEO_TLG2300=m
-CONFIG_VIDEO_USBVISION=m
-CONFIG_VIDEO_STK1160=m
-CONFIG_VIDEO_STK1160_AC97=y
-
-#
-# Analog/digital TV USB devices
-#
-CONFIG_VIDEO_AU0828=m
-CONFIG_VIDEO_AU0828_V4L2=y
-CONFIG_VIDEO_CX231XX=m
-CONFIG_VIDEO_CX231XX_RC=y
-CONFIG_VIDEO_CX231XX_ALSA=m
-CONFIG_VIDEO_CX231XX_DVB=m
-CONFIG_VIDEO_TM6000=m
-CONFIG_VIDEO_TM6000_ALSA=m
-CONFIG_VIDEO_TM6000_DVB=m
-
-#
-# Digital TV USB devices
-#
-CONFIG_DVB_USB=m
-# CONFIG_DVB_USB_DEBUG is not set
-CONFIG_DVB_USB_A800=m
-CONFIG_DVB_USB_DIBUSB_MB=m
-# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
-CONFIG_DVB_USB_DIBUSB_MC=m
-CONFIG_DVB_USB_DIB0700=m
-CONFIG_DVB_USB_UMT_010=m
-CONFIG_DVB_USB_CXUSB=m
-CONFIG_DVB_USB_M920X=m
-CONFIG_DVB_USB_DIGITV=m
-CONFIG_DVB_USB_VP7045=m
-CONFIG_DVB_USB_VP702X=m
-CONFIG_DVB_USB_GP8PSK=m
-CONFIG_DVB_USB_NOVA_T_USB2=m
-CONFIG_DVB_USB_TTUSB2=m
-CONFIG_DVB_USB_DTT200U=m
-CONFIG_DVB_USB_OPERA1=m
-CONFIG_DVB_USB_AF9005=m
-CONFIG_DVB_USB_AF9005_REMOTE=m
-CONFIG_DVB_USB_PCTV452E=m
-CONFIG_DVB_USB_DW2102=m
-CONFIG_DVB_USB_CINERGY_T2=m
-CONFIG_DVB_USB_DTV5100=m
-CONFIG_DVB_USB_FRIIO=m
-CONFIG_DVB_USB_AZ6027=m
-CONFIG_DVB_USB_TECHNISAT_USB2=m
-CONFIG_DVB_USB_V2=m
-CONFIG_DVB_USB_AF9015=m
-CONFIG_DVB_USB_AF9035=m
-CONFIG_DVB_USB_ANYSEE=m
-CONFIG_DVB_USB_AU6610=m
-CONFIG_DVB_USB_AZ6007=m
-CONFIG_DVB_USB_CE6230=m
-CONFIG_DVB_USB_EC168=m
-CONFIG_DVB_USB_GL861=m
-CONFIG_DVB_USB_IT913X=m
-CONFIG_DVB_USB_LME2510=m
-CONFIG_DVB_USB_MXL111SF=m
-CONFIG_DVB_USB_RTL28XXU=m
-CONFIG_DVB_TTUSB_BUDGET=m
-CONFIG_DVB_TTUSB_DEC=m
-CONFIG_SMS_USB_DRV=m
-CONFIG_DVB_B2C2_FLEXCOP_USB=m
-# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
-
-#
-# Webcam, TV (analog/digital) USB devices
-#
-CONFIG_VIDEO_EM28XX=m
-CONFIG_VIDEO_EM28XX_ALSA=m
-CONFIG_VIDEO_EM28XX_DVB=m
-CONFIG_VIDEO_EM28XX_RC=m
-CONFIG_MEDIA_PCI_SUPPORT=y
-
-#
-# Media capture support
-#
-# CONFIG_VIDEO_MEYE is not set
-
-#
-# Media capture/analog TV support
-#
-CONFIG_VIDEO_IVTV=m
-# CONFIG_VIDEO_IVTV_ALSA is not set
-CONFIG_VIDEO_FB_IVTV=m
-# CONFIG_VIDEO_ZORAN is not set
-# CONFIG_VIDEO_HEXIUM_GEMINI is not set
-# CONFIG_VIDEO_HEXIUM_ORION is not set
-# CONFIG_VIDEO_MXB is not set
-
-#
-# Media capture/analog/hybrid TV support
-#
-CONFIG_VIDEO_CX18=m
-CONFIG_VIDEO_CX18_ALSA=m
-CONFIG_VIDEO_CX23885=m
-CONFIG_MEDIA_ALTERA_CI=m
-# CONFIG_VIDEO_CX25821 is not set
-CONFIG_VIDEO_CX88=m
-CONFIG_VIDEO_CX88_ALSA=m
-CONFIG_VIDEO_CX88_BLACKBIRD=m
-CONFIG_VIDEO_CX88_DVB=m
-CONFIG_VIDEO_CX88_VP3054=m
-CONFIG_VIDEO_CX88_MPEG=m
-CONFIG_VIDEO_BT848=m
-CONFIG_DVB_BT8XX=m
-CONFIG_VIDEO_SAA7134=m
-CONFIG_VIDEO_SAA7134_ALSA=m
-CONFIG_VIDEO_SAA7134_RC=y
-CONFIG_VIDEO_SAA7134_DVB=m
-CONFIG_VIDEO_SAA7164=m
-
-#
-# Media digital TV PCI Adapters
-#
-CONFIG_DVB_AV7110=m
-CONFIG_DVB_AV7110_OSD=y
-CONFIG_DVB_BUDGET_CORE=m
-CONFIG_DVB_BUDGET=m
-CONFIG_DVB_BUDGET_CI=m
-CONFIG_DVB_BUDGET_AV=m
-CONFIG_DVB_BUDGET_PATCH=m
-CONFIG_DVB_B2C2_FLEXCOP_PCI=m
-# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
-CONFIG_DVB_PLUTO2=m
-CONFIG_DVB_DM1105=m
-CONFIG_DVB_PT1=m
-CONFIG_MANTIS_CORE=m
-CONFIG_DVB_MANTIS=m
-CONFIG_DVB_HOPPER=m
-CONFIG_DVB_NGENE=m
-CONFIG_DVB_DDBRIDGE=m
-# CONFIG_V4L_PLATFORM_DRIVERS is not set
-# CONFIG_V4L_MEM2MEM_DRIVERS is not set
-# CONFIG_V4L_TEST_DRIVERS is not set
-
-#
-# Supported MMC/SDIO adapters
-#
-CONFIG_SMS_SDIO_DRV=m
-# CONFIG_MEDIA_PARPORT_SUPPORT is not set
-# CONFIG_RADIO_ADAPTERS is not set
-
-#
-# Supported FireWire (IEEE 1394) Adapters
-#
-CONFIG_DVB_FIREDTV=m
-CONFIG_DVB_FIREDTV_INPUT=y
-CONFIG_MEDIA_COMMON_OPTIONS=y
-
-#
-# common driver options
-#
-CONFIG_VIDEO_CX2341X=m
-CONFIG_VIDEO_BTCX=m
-CONFIG_VIDEO_TVEEPROM=m
-CONFIG_CYPRESS_FIRMWARE=m
-CONFIG_DVB_B2C2_FLEXCOP=m
-CONFIG_VIDEO_SAA7146=m
-CONFIG_VIDEO_SAA7146_VV=m
-CONFIG_SMS_SIANO_MDTV=m
-CONFIG_SMS_SIANO_RC=y
-# CONFIG_SMS_SIANO_DEBUGFS is not set
-
-#
-# Media ancillary drivers (tuners, sensors, i2c, frontends)
-#
-CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
-CONFIG_MEDIA_ATTACH=y
-CONFIG_VIDEO_IR_I2C=m
-
-#
-# Audio decoders, processors and mixers
-#
-CONFIG_VIDEO_TVAUDIO=m
-CONFIG_VIDEO_TDA7432=m
-CONFIG_VIDEO_MSP3400=m
-CONFIG_VIDEO_CS5345=m
-CONFIG_VIDEO_CS53L32A=m
-CONFIG_VIDEO_WM8775=m
-CONFIG_VIDEO_WM8739=m
-CONFIG_VIDEO_VP27SMPX=m
-
-#
-# RDS decoders
-#
-CONFIG_VIDEO_SAA6588=m
-
-#
-# Video decoders
-#
-CONFIG_VIDEO_SAA711X=m
-CONFIG_VIDEO_TVP5150=m
-
-#
-# Video and audio decoders
-#
-CONFIG_VIDEO_SAA717X=m
-CONFIG_VIDEO_CX25840=m
-
-#
-# Video encoders
-#
-CONFIG_VIDEO_SAA7127=m
-
-#
-# Camera sensor devices
-#
-CONFIG_VIDEO_MT9V011=m
-
-#
-# Flash devices
-#
-
-#
-# Video improvement chips
-#
-CONFIG_VIDEO_UPD64031A=m
-CONFIG_VIDEO_UPD64083=m
-
-#
-# Miscelaneous helper chips
-#
-CONFIG_VIDEO_M52790=m
-
-#
-# Sensors used on soc_camera driver
-#
-CONFIG_MEDIA_TUNER=m
-CONFIG_MEDIA_TUNER_SIMPLE=m
-CONFIG_MEDIA_TUNER_TDA8290=m
-CONFIG_MEDIA_TUNER_TDA827X=m
-CONFIG_MEDIA_TUNER_TDA18271=m
-CONFIG_MEDIA_TUNER_TDA9887=m
-CONFIG_MEDIA_TUNER_TEA5761=m
-CONFIG_MEDIA_TUNER_TEA5767=m
-CONFIG_MEDIA_TUNER_MT20XX=m
-CONFIG_MEDIA_TUNER_MT2060=m
-CONFIG_MEDIA_TUNER_MT2063=m
-CONFIG_MEDIA_TUNER_MT2266=m
-CONFIG_MEDIA_TUNER_MT2131=m
-CONFIG_MEDIA_TUNER_QT1010=m
-CONFIG_MEDIA_TUNER_XC2028=m
-CONFIG_MEDIA_TUNER_XC5000=m
-CONFIG_MEDIA_TUNER_XC4000=m
-CONFIG_MEDIA_TUNER_MXL5005S=m
-CONFIG_MEDIA_TUNER_MXL5007T=m
-CONFIG_MEDIA_TUNER_MC44S803=m
-CONFIG_MEDIA_TUNER_MAX2165=m
-CONFIG_MEDIA_TUNER_TDA18218=m
-CONFIG_MEDIA_TUNER_FC0011=m
-CONFIG_MEDIA_TUNER_FC0012=m
-CONFIG_MEDIA_TUNER_FC0013=m
-CONFIG_MEDIA_TUNER_TDA18212=m
-CONFIG_MEDIA_TUNER_E4000=m
-CONFIG_MEDIA_TUNER_FC2580=m
-CONFIG_MEDIA_TUNER_TUA9001=m
-CONFIG_MEDIA_TUNER_IT913X=m
-CONFIG_MEDIA_TUNER_R820T=m
-
-#
-# Multistandard (satellite) frontends
-#
-CONFIG_DVB_STB0899=m
-CONFIG_DVB_STB6100=m
-CONFIG_DVB_STV090x=m
-CONFIG_DVB_STV6110x=m
-
-#
-# Multistandard (cable + terrestrial) frontends
-#
-CONFIG_DVB_DRXK=m
-CONFIG_DVB_TDA18271C2DD=m
-
-#
-# DVB-S (satellite) frontends
-#
-CONFIG_DVB_CX24110=m
-CONFIG_DVB_CX24123=m
-CONFIG_DVB_MT312=m
-CONFIG_DVB_ZL10036=m
-CONFIG_DVB_ZL10039=m
-CONFIG_DVB_S5H1420=m
-CONFIG_DVB_STV0288=m
-CONFIG_DVB_STB6000=m
-CONFIG_DVB_STV0299=m
-CONFIG_DVB_STV6110=m
-CONFIG_DVB_STV0900=m
-CONFIG_DVB_TDA8083=m
-CONFIG_DVB_TDA10086=m
-CONFIG_DVB_TDA8261=m
-CONFIG_DVB_VES1X93=m
-CONFIG_DVB_TUNER_ITD1000=m
-CONFIG_DVB_TUNER_CX24113=m
-CONFIG_DVB_TDA826X=m
-CONFIG_DVB_TUA6100=m
-CONFIG_DVB_CX24116=m
-CONFIG_DVB_SI21XX=m
-CONFIG_DVB_TS2020=m
-CONFIG_DVB_DS3000=m
-CONFIG_DVB_MB86A16=m
-CONFIG_DVB_TDA10071=m
-
-#
-# DVB-T (terrestrial) frontends
-#
-CONFIG_DVB_SP8870=m
-CONFIG_DVB_SP887X=m
-CONFIG_DVB_CX22700=m
-CONFIG_DVB_CX22702=m
-CONFIG_DVB_DRXD=m
-CONFIG_DVB_L64781=m
-CONFIG_DVB_TDA1004X=m
-CONFIG_DVB_NXT6000=m
-CONFIG_DVB_MT352=m
-CONFIG_DVB_ZL10353=m
-CONFIG_DVB_DIB3000MB=m
-CONFIG_DVB_DIB3000MC=m
-CONFIG_DVB_DIB7000M=m
-CONFIG_DVB_DIB7000P=m
-CONFIG_DVB_TDA10048=m
-CONFIG_DVB_AF9013=m
-CONFIG_DVB_EC100=m
-CONFIG_DVB_STV0367=m
-CONFIG_DVB_CXD2820R=m
-CONFIG_DVB_RTL2830=m
-CONFIG_DVB_RTL2832=m
-
-#
-# DVB-C (cable) frontends
-#
-CONFIG_DVB_VES1820=m
-CONFIG_DVB_TDA10021=m
-CONFIG_DVB_TDA10023=m
-CONFIG_DVB_STV0297=m
-
-#
-# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
-#
-CONFIG_DVB_NXT200X=m
-CONFIG_DVB_OR51211=m
-CONFIG_DVB_OR51132=m
-CONFIG_DVB_BCM3510=m
-CONFIG_DVB_LGDT330X=m
-CONFIG_DVB_LGDT3305=m
-CONFIG_DVB_LG2160=m
-CONFIG_DVB_S5H1409=m
-CONFIG_DVB_AU8522=m
-CONFIG_DVB_AU8522_DTV=m
-CONFIG_DVB_AU8522_V4L=m
-CONFIG_DVB_S5H1411=m
-
-#
-# ISDB-T (terrestrial) frontends
-#
-CONFIG_DVB_S921=m
-CONFIG_DVB_DIB8000=m
-CONFIG_DVB_MB86A20S=m
-
-#
-# Digital terrestrial only tuners/PLL
-#
-CONFIG_DVB_PLL=m
-CONFIG_DVB_TUNER_DIB0070=m
-CONFIG_DVB_TUNER_DIB0090=m
-
-#
-# SEC control devices for DVB-S
-#
-CONFIG_DVB_LNBP21=m
-CONFIG_DVB_LNBP22=m
-CONFIG_DVB_ISL6405=m
-CONFIG_DVB_ISL6421=m
-CONFIG_DVB_ISL6423=m
-CONFIG_DVB_A8293=m
-CONFIG_DVB_LGS8GXX=m
-CONFIG_DVB_ATBM8830=m
-CONFIG_DVB_TDA665x=m
-CONFIG_DVB_IX2505V=m
-CONFIG_DVB_IT913X_FE=m
-CONFIG_DVB_M88RS2000=m
-CONFIG_DVB_AF9033=m
-
-#
-# Tools to develop new frontends
-#
-# CONFIG_DVB_DUMMY_FE is not set
-
-#
-# Graphics support
-#
-CONFIG_AGP=y
-CONFIG_AGP_AMD64=y
-CONFIG_AGP_INTEL=y
-CONFIG_AGP_SIS=y
-CONFIG_AGP_VIA=y
-CONFIG_INTEL_GTT=y
-CONFIG_VGA_ARB=y
-CONFIG_VGA_ARB_MAX_GPUS=64
-CONFIG_VGA_SWITCHEROO=y
-CONFIG_DRM=m
-CONFIG_DRM_MIPI_DSI=y
-CONFIG_DRM_DP_AUX_CHARDEV=y
-# CONFIG_DRM_DEBUG_SELFTEST is not set
-CONFIG_DRM_KMS_HELPER=m
-CONFIG_DRM_KMS_FB_HELPER=y
-CONFIG_DRM_FBDEV_EMULATION=y
-CONFIG_DRM_FBDEV_OVERALLOC=100
-CONFIG_DRM_LOAD_EDID_FIRMWARE=y
-# CONFIG_DRM_DP_CEC is not set
-CONFIG_DRM_TTM=m
-CONFIG_DRM_VM=y
-CONFIG_DRM_SCHED=m
-
-#
-# I2C encoder or helper chips
-#
-CONFIG_DRM_I2C_CH7006=m
-CONFIG_DRM_I2C_SIL164=m
-# CONFIG_DRM_I2C_NXP_TDA998X is not set
-# CONFIG_DRM_I2C_NXP_TDA9950 is not set
-CONFIG_DRM_RADEON=m
-# CONFIG_DRM_RADEON_USERPTR is not set
-CONFIG_DRM_AMDGPU=m
-# CONFIG_DRM_AMDGPU_SI is not set
-# CONFIG_DRM_AMDGPU_CIK is not set
-# CONFIG_DRM_AMDGPU_USERPTR is not set
-# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
-
-#
-# ACP (Audio CoProcessor) Configuration
-#
-# CONFIG_DRM_AMD_ACP is not set
-
-#
-# Display Engine Configuration
-#
-CONFIG_DRM_AMD_DC=y
-CONFIG_DRM_AMD_DC_DCN1_0=y
-CONFIG_DRM_AMD_DC_DCN1_01=y
-# CONFIG_DEBUG_KERNEL_DC is not set
-CONFIG_HSA_AMD=y
-
-#
-# AMD Library routines
-#
-CONFIG_CHASH=m
-# CONFIG_CHASH_STATS is not set
-# CONFIG_CHASH_SELFTEST is not set
-CONFIG_DRM_NOUVEAU=m
-CONFIG_NOUVEAU_DEBUG=5
-CONFIG_NOUVEAU_DEBUG_DEFAULT=3
-CONFIG_NOUVEAU_DEBUG_MMU=y
-CONFIG_DRM_NOUVEAU_BACKLIGHT=y
-CONFIG_DRM_I915=m
-# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
-CONFIG_DRM_I915_CAPTURE_ERROR=y
-CONFIG_DRM_I915_COMPRESS_ERROR=y
-CONFIG_DRM_I915_USERPTR=y
-CONFIG_DRM_I915_GVT=y
-CONFIG_DRM_I915_GVT_KVMGT=m
-CONFIG_DRM_VGEM=m
-# CONFIG_DRM_VKMS is not set
-CONFIG_DRM_VMWGFX=m
-CONFIG_DRM_VMWGFX_FBCON=y
-CONFIG_DRM_GMA500=m
-CONFIG_DRM_GMA600=y
-CONFIG_DRM_GMA3600=y
-CONFIG_DRM_UDL=m
-CONFIG_DRM_AST=m
-CONFIG_DRM_MGAG200=m
-CONFIG_DRM_CIRRUS_QEMU=m
-CONFIG_DRM_QXL=m
-CONFIG_DRM_BOCHS=m
-CONFIG_DRM_VIRTIO_GPU=m
-# CONFIG_DRM_LEGACY is not set
-CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
-# CONFIG_DRM_LIB_RANDOM is not set
-# CONFIG_VGASTATE is not set
-CONFIG_VIDEO_OUTPUT_CONTROL=m
-CONFIG_HDMI=y
-CONFIG_FB=y
-# CONFIG_FIRMWARE_EDID is not set
-# CONFIG_FB_DDC is not set
-CONFIG_FB_BOOT_VESA_SUPPORT=y
-CONFIG_FB_CFB_FILLRECT=y
-CONFIG_FB_CFB_COPYAREA=y
-CONFIG_FB_CFB_IMAGEBLIT=y
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-CONFIG_FB_DEFERRED_IO=y
-# CONFIG_FB_SVGALIB is not set
-# CONFIG_FB_MACMODES is not set
-CONFIG_FB_BACKLIGHT=y
-# CONFIG_FB_MODE_HELPERS is not set
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-# CONFIG_FB_ARC is not set
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-# CONFIG_FB_VGA16 is not set
-# CONFIG_FB_UVESA is not set
-CONFIG_FB_VESA=y
-CONFIG_FB_EFI=y
-# CONFIG_FB_N411 is not set
-# CONFIG_FB_HGA is not set
-# CONFIG_FB_S1D13XXX is not set
-# CONFIG_FB_NVIDIA is not set
-# CONFIG_FB_RIVA is not set
-# CONFIG_FB_I740 is not set
-# CONFIG_FB_LE80578 is not set
-# CONFIG_FB_MATROX is not set
-# CONFIG_FB_RADEON is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_VIA is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_GEODE is not set
-# CONFIG_FB_TMIO is not set
-# CONFIG_FB_SM501 is not set
-# CONFIG_FB_SMSCUFX is not set
-# CONFIG_FB_UDL is not set
-# CONFIG_FB_GOLDFISH is not set
-# CONFIG_FB_VIRTUAL is not set
-# CONFIG_XEN_FBDEV_FRONTEND is not set
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-# CONFIG_FB_AUO_K190X is not set
-CONFIG_FB_HYPERV=m
-# CONFIG_EXYNOS_VIDEO is not set
-CONFIG_BACKLIGHT_LCD_SUPPORT=y
-CONFIG_LCD_CLASS_DEVICE=m
-# CONFIG_LCD_L4F00242T03 is not set
-# CONFIG_LCD_LMS283GF05 is not set
-# CONFIG_LCD_LTV350QV is not set
-# CONFIG_LCD_ILI922X is not set
-# CONFIG_LCD_ILI9320 is not set
-# CONFIG_LCD_TDO24M is not set
-# CONFIG_LCD_VGG2432A4 is not set
-CONFIG_LCD_PLATFORM=m
-# CONFIG_LCD_S6E63M0 is not set
-# CONFIG_LCD_LD9040 is not set
-# CONFIG_LCD_AMS369FG06 is not set
-# CONFIG_LCD_LMS501KF03 is not set
-# CONFIG_LCD_HX8357 is not set
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-# CONFIG_BACKLIGHT_GENERIC is not set
-# CONFIG_BACKLIGHT_PWM is not set
-CONFIG_BACKLIGHT_APPLE=m
-# CONFIG_BACKLIGHT_SAHARA is not set
-# CONFIG_BACKLIGHT_ADP8860 is not set
-# CONFIG_BACKLIGHT_ADP8870 is not set
-# CONFIG_BACKLIGHT_LM3630 is not set
-# CONFIG_BACKLIGHT_LM3639 is not set
-CONFIG_BACKLIGHT_LP855X=m
-CONFIG_LOGO=y
-# CONFIG_LOGO_LINUX_MONO is not set
-# CONFIG_LOGO_LINUX_VGA16 is not set
-CONFIG_LOGO_LINUX_CLUT224=y
-
-#
-# Console display driver support
-#
-CONFIG_VGA_CONSOLE=y
-CONFIG_VGACON_SOFT_SCROLLBACK=y
-CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-CONFIG_SOUND=m
-CONFIG_SOUND_OSS_CORE=y
-CONFIG_SOUND_OSS_CORE_PRECLAIM=y
-CONFIG_SND=m
-CONFIG_SND_TIMER=m
-CONFIG_SND_PCM=m
-CONFIG_SND_PCM_ELD=y
-CONFIG_SND_HWDEP=m
-CONFIG_SND_SEQ_DEVICE=m
-CONFIG_SND_RAWMIDI=m
-CONFIG_SND_COMPRESS_OFFLOAD=m
-CONFIG_SND_JACK=y
-CONFIG_SND_JACK_INPUT_DEV=y
-CONFIG_SND_OSSEMUL=y
-# CONFIG_SND_MIXER_OSS is not set
-# CONFIG_SND_PCM_OSS is not set
-CONFIG_SND_PCM_TIMER=y
-CONFIG_SND_HRTIMER=m
-CONFIG_SND_DYNAMIC_MINORS=y
-CONFIG_SND_MAX_CARDS=32
-# CONFIG_SND_SUPPORT_OLD_API is not set
-CONFIG_SND_PROC_FS=y
-CONFIG_SND_VERBOSE_PROCFS=y
-CONFIG_SND_VERBOSE_PRINTK=y
-CONFIG_SND_DEBUG=y
-# CONFIG_SND_DEBUG_VERBOSE is not set
-CONFIG_SND_PCM_XRUN_DEBUG=y
-CONFIG_SND_VMASTER=y
-CONFIG_SND_DMA_SGBUF=y
-CONFIG_SND_SEQUENCER=m
-CONFIG_SND_SEQ_DUMMY=m
-CONFIG_SND_SEQUENCER_OSS=m
-CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
-CONFIG_SND_SEQ_MIDI_EVENT=m
-CONFIG_SND_SEQ_MIDI=m
-CONFIG_SND_SEQ_MIDI_EMUL=m
-CONFIG_SND_SEQ_VIRMIDI=m
-CONFIG_SND_MPU401_UART=m
-CONFIG_SND_OPL3_LIB=m
-CONFIG_SND_OPL3_LIB_SEQ=m
-# CONFIG_SND_OPL4_LIB_SEQ is not set
-CONFIG_SND_VX_LIB=m
-CONFIG_SND_AC97_CODEC=m
-CONFIG_SND_DRIVERS=y
-CONFIG_SND_PCSP=m
-CONFIG_SND_DUMMY=m
-CONFIG_SND_ALOOP=m
-CONFIG_SND_VIRMIDI=m
-CONFIG_SND_MTPAV=m
-# CONFIG_SND_MTS64 is not set
-# CONFIG_SND_SERIAL_U16550 is not set
-CONFIG_SND_MPU401=m
-# CONFIG_SND_PORTMAN2X4 is not set
-CONFIG_SND_AC97_POWER_SAVE=y
-CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
-CONFIG_SND_TEA575X=m
-CONFIG_SND_PCI=y
-CONFIG_SND_AD1889=m
-# CONFIG_SND_ALS300 is not set
-# CONFIG_SND_ALS4000 is not set
-CONFIG_SND_ALI5451=m
-CONFIG_SND_ASIHPI=m
-CONFIG_SND_ATIIXP=m
-CONFIG_SND_ATIIXP_MODEM=m
-CONFIG_SND_AU8810=m
-CONFIG_SND_AU8820=m
-CONFIG_SND_AU8830=m
-# CONFIG_SND_AW2 is not set
-# CONFIG_SND_AZT3328 is not set
-CONFIG_SND_BT87X=m
-# CONFIG_SND_BT87X_OVERCLOCK is not set
-CONFIG_SND_CA0106=m
-CONFIG_SND_CMIPCI=m
-CONFIG_SND_OXYGEN_LIB=m
-CONFIG_SND_OXYGEN=m
-# CONFIG_SND_CS4281 is not set
-CONFIG_SND_CS46XX=m
-CONFIG_SND_CS46XX_NEW_DSP=y
-CONFIG_SND_CTXFI=m
-CONFIG_SND_DARLA20=m
-CONFIG_SND_GINA20=m
-CONFIG_SND_LAYLA20=m
-CONFIG_SND_DARLA24=m
-CONFIG_SND_GINA24=m
-CONFIG_SND_LAYLA24=m
-CONFIG_SND_MONA=m
-CONFIG_SND_MIA=m
-CONFIG_SND_ECHO3G=m
-CONFIG_SND_INDIGO=m
-CONFIG_SND_INDIGOIO=m
-CONFIG_SND_INDIGODJ=m
-CONFIG_SND_INDIGOIOX=m
-CONFIG_SND_INDIGODJX=m
-CONFIG_SND_EMU10K1=m
-CONFIG_SND_EMU10K1_SEQ=m
-CONFIG_SND_EMU10K1X=m
-CONFIG_SND_ENS1370=m
-CONFIG_SND_ENS1371=m
-# CONFIG_SND_ES1938 is not set
-CONFIG_SND_ES1968=m
-CONFIG_SND_ES1968_INPUT=y
-CONFIG_SND_ES1968_RADIO=y
-# CONFIG_SND_FM801 is not set
-CONFIG_SND_HDSP=m
-CONFIG_SND_HDSPM=m
-CONFIG_SND_ICE1712=m
-CONFIG_SND_ICE1724=m
-CONFIG_SND_INTEL8X0=m
-CONFIG_SND_INTEL8X0M=m
-CONFIG_SND_KORG1212=m
-CONFIG_SND_LOLA=m
-CONFIG_SND_LX6464ES=m
-CONFIG_SND_MAESTRO3=m
-CONFIG_SND_MAESTRO3_INPUT=y
-CONFIG_SND_MIXART=m
-# CONFIG_SND_NM256 is not set
-CONFIG_SND_PCXHR=m
-# CONFIG_SND_RIPTIDE is not set
-CONFIG_SND_RME32=m
-CONFIG_SND_RME96=m
-CONFIG_SND_RME9652=m
-# CONFIG_SND_SONICVIBES is not set
-CONFIG_SND_TRIDENT=m
-CONFIG_SND_VIA82XX=m
-CONFIG_SND_VIA82XX_MODEM=m
-CONFIG_SND_VIRTUOSO=m
-CONFIG_SND_VX222=m
-# CONFIG_SND_YMFPCI is not set
-
-#
-# HD-Audio
-#
-CONFIG_SND_HDA=m
-CONFIG_SND_HDA_INTEL=m
-CONFIG_SND_HDA_HWDEP=y
-CONFIG_SND_HDA_RECONFIG=y
-CONFIG_SND_HDA_INPUT_BEEP=y
-CONFIG_SND_HDA_INPUT_BEEP_MODE=0
-CONFIG_SND_HDA_PATCH_LOADER=y
-CONFIG_SND_HDA_CODEC_REALTEK=m
-CONFIG_SND_HDA_CODEC_ANALOG=m
-CONFIG_SND_HDA_CODEC_SIGMATEL=m
-CONFIG_SND_HDA_CODEC_VIA=m
-CONFIG_SND_HDA_CODEC_HDMI=m
-CONFIG_SND_HDA_CODEC_CIRRUS=m
-CONFIG_SND_HDA_CODEC_CONEXANT=m
-CONFIG_SND_HDA_CODEC_CA0110=m
-CONFIG_SND_HDA_CODEC_CA0132=m
-CONFIG_SND_HDA_CODEC_CA0132_DSP=y
-CONFIG_SND_HDA_CODEC_CMEDIA=m
-CONFIG_SND_HDA_CODEC_SI3054=m
-CONFIG_SND_HDA_GENERIC=m
-CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
-CONFIG_SND_HDA_CORE=m
-CONFIG_SND_HDA_DSP_LOADER=y
-CONFIG_SND_HDA_COMPONENT=y
-CONFIG_SND_HDA_I915=y
-CONFIG_SND_HDA_EXT_CORE=m
-CONFIG_SND_HDA_PREALLOC_SIZE=512
-# CONFIG_SND_SPI is not set
-CONFIG_SND_USB=y
-CONFIG_SND_USB_AUDIO=m
-CONFIG_SND_USB_UA101=m
-CONFIG_SND_USB_USX2Y=m
-CONFIG_SND_USB_CAIAQ=m
-CONFIG_SND_USB_CAIAQ_INPUT=y
-CONFIG_SND_USB_US122L=m
-CONFIG_SND_USB_6FIRE=m
-CONFIG_SND_USB_HIFACE=m
-CONFIG_SND_BCD2000=m
-CONFIG_SND_USB_LINE6=m
-CONFIG_SND_USB_POD=m
-CONFIG_SND_USB_PODHD=m
-CONFIG_SND_USB_TONEPORT=m
-CONFIG_SND_USB_VARIAX=m
-CONFIG_SND_FIREWIRE=y
-CONFIG_SND_FIREWIRE_LIB=m
-CONFIG_SND_FIREWIRE_SPEAKERS=m
-CONFIG_SND_ISIGHT=m
-CONFIG_SND_SCS1X=m
-CONFIG_SND_SOC=m
-CONFIG_SND_SOC_COMPRESS=y
-CONFIG_SND_SOC_TOPOLOGY=y
-CONFIG_SND_SOC_ACPI=m
-CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y
-CONFIG_SND_SST_IPC=m
-CONFIG_SND_SST_IPC_ACPI=m
-CONFIG_SND_SOC_INTEL_SST=m
-CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m
-CONFIG_SND_SOC_INTEL_SST_ACPI=m
-CONFIG_SND_SOC_INTEL_HASWELL=m
-CONFIG_SND_SOC_INTEL_BAYTRAIL=m
-# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
-CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
-CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m
-CONFIG_SND_SOC_INTEL_SKYLAKE=m
-CONFIG_SND_SOC_ACPI_INTEL_MATCH=m
-CONFIG_SND_SOC_INTEL_MACH=y
-CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
-CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m
-CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
-# CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH is not set
-# CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH is not set
-CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
-CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
-CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
-CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m
-CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m
-# CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH is not set
-CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m
-CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m
-CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=m
-CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m
-CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m
-CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m
-CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m
-CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m
-CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m
-CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m
-CONFIG_SND_SOC_I2C_AND_SPI=m
-
-#
-# CODEC drivers
-#
-CONFIG_SND_SOC_DA7213=m
-CONFIG_SND_SOC_DA7219=m
-CONFIG_SND_SOC_DMIC=m
-CONFIG_SND_SOC_ES8316=m
-CONFIG_SND_SOC_HDAC_HDMI=m
-CONFIG_SND_SOC_MAX98090=m
-CONFIG_SND_SOC_MAX98357A=m
-CONFIG_SND_SOC_MAX98927=m
-CONFIG_SND_SOC_RL6231=m
-CONFIG_SND_SOC_RL6347A=m
-CONFIG_SND_SOC_RT286=m
-CONFIG_SND_SOC_RT298=m
-CONFIG_SND_SOC_RT5514=m
-CONFIG_SND_SOC_RT5514_SPI=m
-CONFIG_SND_SOC_RT5640=m
-CONFIG_SND_SOC_RT5645=m
-CONFIG_SND_SOC_RT5651=m
-CONFIG_SND_SOC_RT5663=m
-CONFIG_SND_SOC_RT5670=m
-CONFIG_SND_SOC_RT5677=m
-CONFIG_SND_SOC_RT5677_SPI=m
-# CONFIG_SND_SOC_SPDIF is not set
-CONFIG_SND_SOC_SSM4567=m
-CONFIG_SND_SOC_TS3A227E=m
-CONFIG_SND_SOC_NAU8824=m
-CONFIG_SND_SOC_NAU8825=m
-CONFIG_SND_X86=y
-CONFIG_HDMI_LPE_AUDIO=m
-CONFIG_SND_SYNTH_EMUX=m
-# CONFIG_SOUND_PRIME is not set
-CONFIG_AC97_BUS=m
-
-#
-# HID support
-#
-CONFIG_HID=y
-CONFIG_HID_BATTERY_STRENGTH=y
-CONFIG_HIDRAW=y
-CONFIG_UHID=m
-CONFIG_HID_GENERIC=y
-
-#
-# Special HID drivers
-#
-CONFIG_HID_A4TECH=y
-CONFIG_HID_ACRUX=m
-# CONFIG_HID_ACRUX_FF is not set
-CONFIG_HID_APPLE=y
-CONFIG_HID_APPLEIR=m
-CONFIG_HID_AUREAL=m
-CONFIG_HID_BELKIN=y
-CONFIG_HID_CHERRY=y
-CONFIG_HID_CHICONY=y
-CONFIG_HID_PRODIKEYS=m
-CONFIG_HID_CYPRESS=y
-CONFIG_HID_DRAGONRISE=m
-# CONFIG_DRAGONRISE_FF is not set
-# CONFIG_HID_EMS_FF is not set
-CONFIG_HID_ELECOM=m
-CONFIG_HID_EZKEY=y
-CONFIG_HID_HOLTEK=m
-# CONFIG_HOLTEK_FF is not set
-CONFIG_HID_KEYTOUCH=m
-CONFIG_HID_KYE=m
-CONFIG_HID_UCLOGIC=m
-CONFIG_HID_WALTOP=m
-CONFIG_HID_GYRATION=m
-CONFIG_HID_ICADE=m
-CONFIG_HID_TWINHAN=m
-CONFIG_HID_KENSINGTON=y
-CONFIG_HID_LCPOWER=m
-CONFIG_HID_LENOVO_TPKBD=m
-CONFIG_HID_LOGITECH=y
-CONFIG_HID_LOGITECH_DJ=m
-# CONFIG_LOGITECH_FF is not set
-# CONFIG_LOGIRUMBLEPAD2_FF is not set
-# CONFIG_LOGIG940_FF is not set
-# CONFIG_LOGIWHEELS_FF is not set
-CONFIG_HID_MAGICMOUSE=y
-CONFIG_HID_MICROSOFT=y
-CONFIG_HID_MONTEREY=y
-CONFIG_HID_MULTITOUCH=m
-CONFIG_HID_NTRIG=y
-CONFIG_HID_ORTEK=m
-CONFIG_HID_PANTHERLORD=m
-# CONFIG_PANTHERLORD_FF is not set
-CONFIG_HID_PETALYNX=m
-CONFIG_HID_PICOLCD=m
-CONFIG_HID_PICOLCD_FB=y
-CONFIG_HID_PICOLCD_BACKLIGHT=y
-CONFIG_HID_PICOLCD_LCD=y
-CONFIG_HID_PICOLCD_LEDS=y
-CONFIG_HID_PICOLCD_CIR=y
-CONFIG_HID_PLANTRONICS=y
-CONFIG_HID_PRIMAX=m
-CONFIG_HID_PS3REMOTE=m
-CONFIG_HID_ROCCAT=m
-CONFIG_HID_SAITEK=m
-CONFIG_HID_SAMSUNG=m
-CONFIG_HID_SONY=m
-CONFIG_HID_SPEEDLINK=m
-CONFIG_HID_STEELSERIES=m
-CONFIG_HID_SUNPLUS=m
-CONFIG_HID_RMI=m
-CONFIG_HID_GREENASIA=m
-# CONFIG_GREENASIA_FF is not set
-CONFIG_HID_HYPERV_MOUSE=m
-CONFIG_HID_SMARTJOYPLUS=m
-# CONFIG_SMARTJOYPLUS_FF is not set
-CONFIG_HID_TIVO=m
-CONFIG_HID_TOPSEED=m
-CONFIG_HID_THINGM=m
-CONFIG_HID_THRUSTMASTER=m
-# CONFIG_THRUSTMASTER_FF is not set
-CONFIG_HID_WACOM=m
-CONFIG_HID_WIIMOTE=m
-CONFIG_HID_WIIMOTE_EXT=y
-CONFIG_HID_ZEROPLUS=m
-# CONFIG_ZEROPLUS_FF is not set
-CONFIG_HID_ZYDACRON=m
-CONFIG_HID_SENSOR_HUB=m
-CONFIG_HID_ALPS=m
-
-#
-# USB HID support
-#
-CONFIG_USB_HID=y
-CONFIG_HID_PID=y
-CONFIG_USB_HIDDEV=y
-
-#
-# I2C HID support
-#
-CONFIG_I2C_HID=m
-CONFIG_HID_SENSOR_CUSTOM_SENSOR=m
-
-#
-# Intel ISH HID support
-#
-CONFIG_INTEL_ISH_HID=y
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-CONFIG_USB_SUPPORT=y
-CONFIG_USB_COMMON=y
-CONFIG_USB_ARCH_HAS_HCD=y
-CONFIG_USB=y
-CONFIG_USB_PCI=y
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-
-#
-# Miscellaneous USB options
-#
-CONFIG_USB_DEFAULT_PERSIST=y
-# CONFIG_USB_DYNAMIC_MINORS is not set
-# CONFIG_USB_OTG is not set
-# CONFIG_USB_OTG_WHITELIST is not set
-# CONFIG_USB_OTG_FSM is not set
-CONFIG_USB_LEDS_TRIGGER_USBPORT=m
-CONFIG_USB_MON=y
-CONFIG_USB_WUSB=m
-CONFIG_USB_WUSB_CBAF=m
-# CONFIG_USB_WUSB_CBAF_DEBUG is not set
-
-#
-# USB Host Controller Drivers
-#
-# CONFIG_USB_C67X00_HCD is not set
-CONFIG_USB_XHCI_HCD=y
-# CONFIG_USB_XHCI_DBGCAP is not set
-CONFIG_USB_XHCI_PCI=y
-# CONFIG_USB_XHCI_PLATFORM is not set
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_ROOT_HUB_TT=y
-CONFIG_USB_EHCI_TT_NEWSCHED=y
-CONFIG_USB_EHCI_PCI=y
-# CONFIG_USB_EHCI_HCD_PLATFORM is not set
-# CONFIG_USB_OXU210HP_HCD is not set
-# CONFIG_USB_ISP116X_HCD is not set
-# CONFIG_USB_ISP1760_HCD is not set
-# CONFIG_USB_ISP1362_HCD is not set
-# CONFIG_USB_FOTG210_HCD is not set
-# CONFIG_USB_MAX3421_HCD is not set
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_OHCI_HCD_PCI=y
-# CONFIG_USB_OHCI_HCD_PLATFORM is not set
-CONFIG_USB_UHCI_HCD=y
-# CONFIG_USB_U132_HCD is not set
-# CONFIG_USB_SL811_HCD is not set
-# CONFIG_USB_R8A66597_HCD is not set
-# CONFIG_USB_WHCI_HCD is not set
-CONFIG_USB_HWA_HCD=m
-# CONFIG_USB_HCD_BCMA is not set
-# CONFIG_USB_HCD_SSB is not set
-# CONFIG_USB_HCD_TEST_MODE is not set
-
-#
-# USB Device Class drivers
-#
-CONFIG_USB_ACM=m
-CONFIG_USB_PRINTER=m
-CONFIG_USB_WDM=m
-CONFIG_USB_TMC=m
-
-#
-# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
-#
-
-#
-# also be needed; see USB_STORAGE Help for more info
-#
-CONFIG_USB_STORAGE=m
-# CONFIG_USB_STORAGE_DEBUG is not set
-CONFIG_USB_STORAGE_REALTEK=m
-CONFIG_REALTEK_AUTOPM=y
-CONFIG_USB_STORAGE_DATAFAB=m
-CONFIG_USB_STORAGE_FREECOM=m
-CONFIG_USB_STORAGE_ISD200=m
-CONFIG_USB_STORAGE_USBAT=m
-CONFIG_USB_STORAGE_SDDR09=m
-CONFIG_USB_STORAGE_SDDR55=m
-CONFIG_USB_STORAGE_JUMPSHOT=m
-CONFIG_USB_STORAGE_ALAUDA=m
-CONFIG_USB_STORAGE_ONETOUCH=m
-CONFIG_USB_STORAGE_KARMA=m
-CONFIG_USB_STORAGE_CYPRESS_ATACB=m
-CONFIG_USB_STORAGE_ENE_UB6250=m
-CONFIG_USB_UAS=m
-
-#
-# USB Imaging devices
-#
-CONFIG_USB_MDC800=m
-CONFIG_USB_MICROTEK=m
-CONFIG_USBIP_CORE=m
-# CONFIG_USBIP_VHCI_HCD is not set
-# CONFIG_USBIP_HOST is not set
-# CONFIG_USBIP_DEBUG is not set
-# CONFIG_USB_DWC3 is not set
-# CONFIG_USB_CHIPIDEA is not set
-
-#
-# USB port drivers
-#
-CONFIG_USB_USS720=m
-CONFIG_USB_SERIAL=y
-CONFIG_USB_SERIAL_CONSOLE=y
-CONFIG_USB_SERIAL_GENERIC=y
-# CONFIG_USB_SERIAL_SIMPLE is not set
-CONFIG_USB_SERIAL_AIRCABLE=m
-CONFIG_USB_SERIAL_ARK3116=m
-CONFIG_USB_SERIAL_BELKIN=m
-CONFIG_USB_SERIAL_CH341=m
-CONFIG_USB_SERIAL_WHITEHEAT=m
-CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
-CONFIG_USB_SERIAL_CP210X=m
-CONFIG_USB_SERIAL_CYPRESS_M8=m
-CONFIG_USB_SERIAL_EMPEG=m
-CONFIG_USB_SERIAL_FTDI_SIO=m
-CONFIG_USB_SERIAL_VISOR=m
-CONFIG_USB_SERIAL_IPAQ=m
-CONFIG_USB_SERIAL_IR=m
-CONFIG_USB_SERIAL_EDGEPORT=m
-CONFIG_USB_SERIAL_EDGEPORT_TI=m
-# CONFIG_USB_SERIAL_F81232 is not set
-CONFIG_USB_SERIAL_GARMIN=m
-CONFIG_USB_SERIAL_IPW=m
-CONFIG_USB_SERIAL_IUU=m
-CONFIG_USB_SERIAL_KEYSPAN_PDA=m
-CONFIG_USB_SERIAL_KEYSPAN=m
-CONFIG_USB_SERIAL_KLSI=m
-CONFIG_USB_SERIAL_KOBIL_SCT=m
-CONFIG_USB_SERIAL_MCT_U232=m
-# CONFIG_USB_SERIAL_METRO is not set
-CONFIG_USB_SERIAL_MOS7720=m
-CONFIG_USB_SERIAL_MOS7715_PARPORT=y
-CONFIG_USB_SERIAL_MOS7840=m
-# CONFIG_USB_SERIAL_MXUPORT is not set
-CONFIG_USB_SERIAL_NAVMAN=m
-CONFIG_USB_SERIAL_PL2303=m
-CONFIG_USB_SERIAL_OTI6858=m
-CONFIG_USB_SERIAL_QCAUX=m
-CONFIG_USB_SERIAL_QUALCOMM=m
-CONFIG_USB_SERIAL_SPCP8X5=m
-CONFIG_USB_SERIAL_SAFE=m
-CONFIG_USB_SERIAL_SAFE_PADDED=y
-CONFIG_USB_SERIAL_SIERRAWIRELESS=m
-CONFIG_USB_SERIAL_SYMBOL=m
-CONFIG_USB_SERIAL_TI=m
-CONFIG_USB_SERIAL_CYBERJACK=m
-CONFIG_USB_SERIAL_XIRCOM=m
-CONFIG_USB_SERIAL_WWAN=m
-CONFIG_USB_SERIAL_OPTION=m
-CONFIG_USB_SERIAL_OMNINET=m
-CONFIG_USB_SERIAL_OPTICON=m
-CONFIG_USB_SERIAL_XSENS_MT=m
-# CONFIG_USB_SERIAL_WISHBONE is not set
-CONFIG_USB_SERIAL_SSU100=m
-CONFIG_USB_SERIAL_QT2=m
-# CONFIG_USB_SERIAL_UPD78F0730 is not set
-CONFIG_USB_SERIAL_DEBUG=m
-
-#
-# USB Miscellaneous drivers
-#
-CONFIG_USB_EMI62=m
-CONFIG_USB_EMI26=m
-CONFIG_USB_ADUTUX=m
-CONFIG_USB_SEVSEG=m
-# CONFIG_USB_RIO500 is not set
-CONFIG_USB_LEGOTOWER=m
-CONFIG_USB_LCD=m
-# CONFIG_USB_CYPRESS_CY7C63 is not set
-# CONFIG_USB_CYTHERM is not set
-CONFIG_USB_IDMOUSE=m
-CONFIG_USB_FTDI_ELAN=m
-CONFIG_USB_APPLEDISPLAY=m
-CONFIG_USB_SISUSBVGA=m
-CONFIG_USB_SISUSBVGA_CON=y
-CONFIG_USB_LD=m
-# CONFIG_USB_TRANCEVIBRATOR is not set
-CONFIG_USB_IOWARRIOR=m
-# CONFIG_USB_TEST is not set
-# CONFIG_USB_EHSET_TEST_FIXTURE is not set
-CONFIG_USB_ISIGHTFW=m
-# CONFIG_USB_YUREX is not set
-CONFIG_USB_EZUSB_FX2=m
-CONFIG_USB_HSIC_USB3503=m
-# CONFIG_USB_HSIC_USB4604 is not set
-# CONFIG_USB_LINK_LAYER_TEST is not set
-# CONFIG_USB_CHAOSKEY is not set
-CONFIG_USB_ATM=m
-CONFIG_USB_SPEEDTOUCH=m
-CONFIG_USB_CXACRU=m
-CONFIG_USB_UEAGLEATM=m
-CONFIG_USB_XUSBATM=m
-# CONFIG_USB_PHY is not set
-# CONFIG_USB_GADGET is not set
-CONFIG_TYPEC=y
-# CONFIG_TYPEC_TCPM is not set
-CONFIG_TYPEC_UCSI=y
-CONFIG_UCSI_ACPI=y
-# CONFIG_TYPEC_TPS6598X is not set
-
-#
-# USB Type-C Multiplexer/DeMultiplexer Switch support
-#
-# CONFIG_TYPEC_MUX_PI3USB30532 is not set
-
-#
-# USB Type-C Alternate Mode drivers
-#
-CONFIG_TYPEC_DP_ALTMODE=y
-# CONFIG_USB_LED_TRIG is not set
-# CONFIG_USB_ULPI_BUS is not set
-CONFIG_UWB=m
-CONFIG_UWB_HWA=m
-CONFIG_UWB_WHCI=m
-CONFIG_UWB_I1480U=m
-CONFIG_MMC=m
-CONFIG_MMC_BLOCK=m
-CONFIG_MMC_BLOCK_MINORS=8
-CONFIG_SDIO_UART=m
-# CONFIG_MMC_TEST is not set
-
-#
-# MMC/SD/SDIO Host Controller Drivers
-#
-# CONFIG_MMC_DEBUG is not set
-CONFIG_MMC_SDHCI=m
-CONFIG_MMC_SDHCI_PCI=m
-CONFIG_MMC_RICOH_MMC=y
-CONFIG_MMC_SDHCI_ACPI=m
-CONFIG_MMC_SDHCI_PLTFM=m
-# CONFIG_MMC_WBSD is not set
-CONFIG_MMC_TIFM_SD=m
-# CONFIG_MMC_SPI is not set
-CONFIG_MMC_CB710=m
-CONFIG_MMC_VIA_SDMMC=m
-CONFIG_MMC_VUB300=m
-CONFIG_MMC_USHC=m
-# CONFIG_MMC_USDHI6ROL0 is not set
-CONFIG_MMC_REALTEK_PCI=m
-CONFIG_MMC_REALTEK_USB=m
-CONFIG_MMC_CQHCI=m
-# CONFIG_MMC_TOSHIBA_PCI is not set
-# CONFIG_MMC_MTK is not set
-CONFIG_MEMSTICK=m
-# CONFIG_MEMSTICK_DEBUG is not set
-
-#
-# MemoryStick drivers
-#
-# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
-CONFIG_MSPRO_BLOCK=m
-
-#
-# MemoryStick Host Controller Drivers
-#
-CONFIG_MEMSTICK_TIFM_MS=m
-CONFIG_MEMSTICK_JMICRON_38X=m
-CONFIG_MEMSTICK_R592=m
-CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_NET_VENDOR_STMICRO=y
+CONFIG_NET_VRF=m
 CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-
-#
-# LED drivers
-#
-CONFIG_LEDS_LM3530=m
-# CONFIG_LEDS_LM3642 is not set
-# CONFIG_LEDS_PCA9532 is not set
-# CONFIG_LEDS_GPIO is not set
-CONFIG_LEDS_LP3944=m
-CONFIG_LEDS_LP55XX_COMMON=m
-CONFIG_LEDS_LP5521=m
-CONFIG_LEDS_LP5523=m
-CONFIG_LEDS_LP5562=m
-CONFIG_LEDS_CLEVO_MAIL=m
-# CONFIG_LEDS_PCA955X is not set
-# CONFIG_LEDS_PCA9633 is not set
-# CONFIG_LEDS_DAC124S085 is not set
-# CONFIG_LEDS_PWM is not set
-# CONFIG_LEDS_BD2802 is not set
-CONFIG_LEDS_INTEL_SS4200=m
-CONFIG_LEDS_LT3593=m
-CONFIG_LEDS_DELL_NETBOOKS=m
-# CONFIG_LEDS_RENESAS_TPU is not set
-# CONFIG_LEDS_TCA6507 is not set
-# CONFIG_LEDS_LM355x is not set
-# CONFIG_LEDS_OT200 is not set
-CONFIG_LEDS_BLINKM=m
-
-#
-# LED Triggers
-#
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_TIMER=m
-CONFIG_LEDS_TRIGGER_ONESHOT=m
-CONFIG_LEDS_TRIGGER_HEARTBEAT=m
-CONFIG_LEDS_TRIGGER_BACKLIGHT=m
-# CONFIG_LEDS_TRIGGER_CPU is not set
-CONFIG_LEDS_TRIGGER_GPIO=m
-CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
-
-#
-# iptables trigger is under Netfilter config (LED target)
-#
-CONFIG_LEDS_TRIGGER_TRANSIENT=m
-CONFIG_LEDS_TRIGGER_CAMERA=m
-# CONFIG_ACCESSIBILITY is not set
-CONFIG_INFINIBAND=m
-CONFIG_INFINIBAND_USER_MAD=m
-CONFIG_INFINIBAND_USER_ACCESS=m
-# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
-CONFIG_INFINIBAND_USER_MEM=y
-CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
-CONFIG_INFINIBAND_ADDR_TRANS=y
-CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
-CONFIG_INFINIBAND_MTHCA=m
-CONFIG_INFINIBAND_MTHCA_DEBUG=y
-CONFIG_INFINIBAND_IPATH=m
-CONFIG_INFINIBAND_QIB=m
-CONFIG_INFINIBAND_QIB_DCA=y
-# CONFIG_INFINIBAND_AMSO1100 is not set
-CONFIG_INFINIBAND_CXGB3=m
-# CONFIG_INFINIBAND_CXGB3_DEBUG is not set
-CONFIG_INFINIBAND_CXGB4=m
-CONFIG_INFINIBAND_I40IW=m
-CONFIG_MLX4_INFINIBAND=m
-CONFIG_MLX5_INFINIBAND=m
-CONFIG_INFINIBAND_NES=m
-# CONFIG_INFINIBAND_NES_DEBUG is not set
-CONFIG_INFINIBAND_OCRDMA=m
-CONFIG_INFINIBAND_VMWARE_PVRDMA=m
-CONFIG_INFINIBAND_USNIC=m
-CONFIG_INFINIBAND_IPOIB=m
-CONFIG_INFINIBAND_IPOIB_CM=y
-CONFIG_INFINIBAND_IPOIB_DEBUG=y
-# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
-CONFIG_INFINIBAND_SRP=m
-CONFIG_INFINIBAND_SRPT=m
-CONFIG_INFINIBAND_ISER=m
-CONFIG_INFINIBAND_ISERT=m
-CONFIG_INFINIBAND_OPA_VNIC=m
-CONFIG_INFINIBAND_RDMAVT=m
-CONFIG_RDMA_RXE=m
-CONFIG_INFINIBAND_HFI1=m
-# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
-# CONFIG_SDMA_VERBOSITY is not set
-CONFIG_INFINIBAND_QEDR=m
-CONFIG_INFINIBAND_BNXT_RE=m
-CONFIG_EDAC=y
-CONFIG_EDAC_LEGACY_SYSFS=y
-CONFIG_EDAC_DEBUG=y
-CONFIG_EDAC_DECODE_MCE=m
-CONFIG_EDAC_MCE_INJ=m
-CONFIG_EDAC_MM_EDAC=y
-CONFIG_EDAC_GHES=y
-CONFIG_EDAC_AMD64=m
-# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set
-CONFIG_EDAC_E752X=m
-CONFIG_EDAC_I82975X=m
-CONFIG_EDAC_I3000=m
-CONFIG_EDAC_I3200=m
-CONFIG_EDAC_IE31200=m
-CONFIG_EDAC_X38=m
-CONFIG_EDAC_I5400=m
-CONFIG_EDAC_I7CORE=m
-CONFIG_EDAC_I5000=m
-CONFIG_EDAC_I5100=m
-CONFIG_EDAC_I7300=m
-CONFIG_EDAC_SBRIDGE=m
-CONFIG_EDAC_SKX=m
-CONFIG_EDAC_I10NM=m
-CONFIG_EDAC_PND2=m
-CONFIG_RTC_LIB=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_HCTOSYS=y
-# CONFIG_RTC_SYSTOHC is not set
-CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
-# CONFIG_RTC_DEBUG is not set
-
-#
-# RTC interfaces
-#
-CONFIG_RTC_INTF_SYSFS=y
-CONFIG_RTC_INTF_PROC=y
-CONFIG_RTC_INTF_DEV=y
-# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
-# CONFIG_RTC_DRV_TEST is not set
-
-#
-# I2C RTC drivers
-#
-CONFIG_RTC_DRV_DS1307=m
-CONFIG_RTC_DRV_DS1374=m
-CONFIG_RTC_DRV_DS1672=m
-CONFIG_RTC_DRV_DS3232=m
-CONFIG_RTC_DRV_MAX6900=m
-CONFIG_RTC_DRV_RS5C372=m
-CONFIG_RTC_DRV_ISL1208=m
-CONFIG_RTC_DRV_ISL12022=m
-CONFIG_RTC_DRV_X1205=m
-CONFIG_RTC_DRV_PCF8523=m
-CONFIG_RTC_DRV_PCF8563=m
-CONFIG_RTC_DRV_PCF8583=m
-CONFIG_RTC_DRV_M41T80=m
-CONFIG_RTC_DRV_M41T80_WDT=y
-CONFIG_RTC_DRV_BQ32K=m
-# CONFIG_RTC_DRV_S35390A is not set
-CONFIG_RTC_DRV_FM3130=m
-CONFIG_RTC_DRV_RX8581=m
-CONFIG_RTC_DRV_RX8025=m
-CONFIG_RTC_DRV_EM3027=m
-CONFIG_RTC_DRV_RV3029C2=m
-
-#
-# SPI RTC drivers
-#
-# CONFIG_RTC_DRV_M41T93 is not set
-# CONFIG_RTC_DRV_M41T94 is not set
-# CONFIG_RTC_DRV_DS1305 is not set
-# CONFIG_RTC_DRV_DS1390 is not set
-# CONFIG_RTC_DRV_MAX6902 is not set
-# CONFIG_RTC_DRV_R9701 is not set
-# CONFIG_RTC_DRV_RS5C348 is not set
-# CONFIG_RTC_DRV_DS3234 is not set
-# CONFIG_RTC_DRV_PCF2123 is not set
-CONFIG_RTC_DRV_RX4581=m
-
-#
-# Platform RTC drivers
-#
-CONFIG_RTC_DRV_CMOS=y
-CONFIG_RTC_DRV_DS1286=m
-CONFIG_RTC_DRV_DS1511=m
-CONFIG_RTC_DRV_DS1553=m
-CONFIG_RTC_DRV_DS1742=m
-CONFIG_RTC_DRV_STK17TA8=m
-# CONFIG_RTC_DRV_M48T86 is not set
-CONFIG_RTC_DRV_M48T35=m
-CONFIG_RTC_DRV_M48T59=m
-CONFIG_RTC_DRV_MSM6242=m
-CONFIG_RTC_DRV_BQ4802=m
-CONFIG_RTC_DRV_RP5C01=m
-CONFIG_RTC_DRV_V3020=m
-CONFIG_RTC_DRV_DS2404=m
-
-#
-# on-CPU RTC drivers
-#
-
-#
-# HID Sensor RTC drivers
-#
-# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
-CONFIG_DMADEVICES=y
-CONFIG_DMADEVICES_DEBUG=y
-CONFIG_DMADEVICES_VDEBUG=y
-
-#
-# DMA Devices
-#
-# CONFIG_INTEL_MID_DMAC is not set
-CONFIG_INTEL_IOATDMA=m
-CONFIG_DW_DMAC_CORE=m
-CONFIG_DW_DMAC=m
-# CONFIG_DW_DMAC_PCI is not set
-# CONFIG_DW_DMAC_BIG_ENDIAN_IO is not set
-CONFIG_IDMA64=m
-# CONFIG_TIMB_DMA is not set
-CONFIG_PCH_DMA=m
-CONFIG_DMA_ENGINE=y
-CONFIG_DMA_VIRTUAL_CHANNELS=m
-CONFIG_DMA_ACPI=y
-
-#
-# DMA Clients
-#
-CONFIG_NET_DMA_RH_KABI=y
-CONFIG_ASYNC_TX_DMA=y
-# CONFIG_DMATEST is not set
-
-#
-# DMABUF options
-#
-CONFIG_SYNC_FILE=y
-# CONFIG_SW_SYNC is not set
-CONFIG_DCA=m
-CONFIG_AUXDISPLAY=y
-CONFIG_KS0108=m
-CONFIG_KS0108_PORT=0x378
-CONFIG_KS0108_DELAY=2
-CONFIG_CFAG12864B=m
-CONFIG_CFAG12864B_RATE=20
-CONFIG_UIO=m
-CONFIG_UIO_CIF=m
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_DMEM_GENIRQ is not set
-CONFIG_UIO_AEC=m
-CONFIG_UIO_SERCOS3=m
-CONFIG_UIO_PCI_GENERIC=m
-# CONFIG_UIO_NETX is not set
-CONFIG_UIO_HV_GENERIC=m
-CONFIG_VFIO_IOMMU_TYPE1=m
-CONFIG_VFIO=m
-CONFIG_VFIO_NOIOMMU=y
-CONFIG_VFIO_PCI=m
-# CONFIG_VFIO_PCI_VGA is not set
-CONFIG_VFIO_PCI_MMAP=y
-CONFIG_VFIO_PCI_INTX=y
-# CONFIG_VFIO_PCI_IGD is not set
-CONFIG_VFIO_MDEV=m
-CONFIG_VFIO_MDEV_DEVICE=m
-CONFIG_IRQ_BYPASS_MANAGER=m
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=m
-
-#
-# Virtio drivers
-#
-CONFIG_VIRTIO_PCI=m
-CONFIG_VIRTIO_PCI_LEGACY=y
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-# CONFIG_VIRTIO_MMIO is not set
-
-#
-# Microsoft Hyper-V guest support
-#
-CONFIG_HYPERV=m
-CONFIG_HYPERV_TSCPAGE=y
-CONFIG_HYPERV_UTILS=m
-CONFIG_HYPERV_BALLOON=m
-
-#
-# Xen driver support
-#
-CONFIG_XEN_BALLOON=y
-# CONFIG_XEN_BALLOON_MEMORY_HOTPLUG is not set
-CONFIG_XEN_SCRUB_PAGES=y
-CONFIG_XEN_DEV_EVTCHN=m
-CONFIG_XENFS=m
-CONFIG_XEN_COMPAT_XENFS=y
-CONFIG_XEN_SYS_HYPERVISOR=y
-CONFIG_XEN_XENBUS_FRONTEND=y
-# CONFIG_XEN_GNTDEV is not set
-# CONFIG_XEN_GRANT_DEV_ALLOC is not set
-CONFIG_SWIOTLB_XEN=y
-# CONFIG_XEN_TMEM is not set
-CONFIG_XEN_PRIVCMD=m
-CONFIG_XEN_ACPI_PROCESSOR=m
-CONFIG_XEN_HAVE_PVMMU=y
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_SLICOSS is not set
-# CONFIG_W35UND is not set
-# CONFIG_PRISM2_USB is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_ASUS_OLED is not set
-# CONFIG_PANEL is not set
-# CONFIG_R8187SE is not set
-# CONFIG_RTL8192U is not set
-CONFIG_RTLLIB=m
-CONFIG_RTLLIB_CRYPTO_CCMP=m
-CONFIG_RTLLIB_CRYPTO_TKIP=m
-CONFIG_RTLLIB_CRYPTO_WEP=m
-CONFIG_RTL8192E=m
-CONFIG_R8712U=m
-# CONFIG_RTS5139 is not set
-# CONFIG_TRANZPORT is not set
-# CONFIG_IDE_PHISON is not set
-# CONFIG_LINE6_USB is not set
-# CONFIG_USB_SERIAL_QUATECH2 is not set
-# CONFIG_VT6655 is not set
-# CONFIG_VT6656 is not set
-# CONFIG_DX_SEP is not set
-
-#
-# IIO staging drivers
-#
-
-#
-# Accelerometers
-#
-# CONFIG_ADIS16201 is not set
-# CONFIG_ADIS16203 is not set
-# CONFIG_ADIS16204 is not set
-# CONFIG_ADIS16209 is not set
-# CONFIG_ADIS16220 is not set
-# CONFIG_ADIS16240 is not set
-# CONFIG_LIS3L02DQ is not set
-# CONFIG_SCA3000 is not set
-
-#
-# Analog to digital converters
-#
-# CONFIG_AD7291 is not set
-# CONFIG_AD7606 is not set
-# CONFIG_AD799X is not set
-# CONFIG_AD7780 is not set
-# CONFIG_AD7816 is not set
-# CONFIG_AD7192 is not set
-# CONFIG_AD7280 is not set
-
-#
-# Analog digital bi-direction converters
-#
-# CONFIG_ADT7316 is not set
-
-#
-# Capacitance to digital converters
-#
-# CONFIG_AD7150 is not set
-# CONFIG_AD7152 is not set
-# CONFIG_AD7746 is not set
-
-#
-# Direct Digital Synthesis
-#
-# CONFIG_AD5930 is not set
-# CONFIG_AD9832 is not set
-# CONFIG_AD9834 is not set
-# CONFIG_AD9850 is not set
-# CONFIG_AD9852 is not set
-# CONFIG_AD9910 is not set
-# CONFIG_AD9951 is not set
-
-#
-# Digital gyroscope sensors
-#
-# CONFIG_ADIS16060 is not set
-# CONFIG_ADIS16130 is not set
-# CONFIG_ADIS16260 is not set
-
-#
-# Network Analyzer, Impedance Converters
-#
-# CONFIG_AD5933 is not set
-
-#
-# Light sensors
-#
-# CONFIG_SENSORS_ISL29018 is not set
-# CONFIG_SENSORS_ISL29028 is not set
-# CONFIG_TSL2583 is not set
-# CONFIG_TSL2x7x is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_SENSORS_HMC5843 is not set
-
-#
-# Active energy metering IC
-#
-# CONFIG_ADE7753 is not set
-# CONFIG_ADE7754 is not set
-# CONFIG_ADE7758 is not set
-# CONFIG_ADE7759 is not set
-# CONFIG_ADE7854 is not set
-
-#
-# Resolver to digital converters
-#
-# CONFIG_AD2S90 is not set
-# CONFIG_AD2S1200 is not set
-# CONFIG_AD2S1210 is not set
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_PERIODIC_RTC_TRIGGER is not set
-# CONFIG_IIO_GPIO_TRIGGER is not set
-# CONFIG_IIO_SIMPLE_DUMMY is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_CXT1E1 is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_ACPI_QUICKSTART is not set
-# CONFIG_SBE_2T3E3 is not set
-# CONFIG_USB_ENESTORAGE is not set
-# CONFIG_BCM_WIMAX is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_USB_WPAN_HCD is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_CSR_WIFI is not set
-# CONFIG_NET_VENDOR_SILICOM is not set
-# CONFIG_CED1401 is not set
-# CONFIG_DGRP is not set
-CONFIG_FIREWIRE_SERIAL=m
-# CONFIG_ZCACHE is not set
-# CONFIG_USB_DWC2 is not set
-# CONFIG_UNISYSSPAR is not set
-CONFIG_X86_PLATFORM_DEVICES=y
-CONFIG_ACER_WMI=m
-CONFIG_ACERHDF=m
-CONFIG_ASUS_LAPTOP=m
-CONFIG_CHROMEOS_LAPTOP=m
-CONFIG_DELL_SMBIOS=m
-CONFIG_DELL_SMBIOS_WMI=y
-CONFIG_DELL_SMBIOS_SMM=y
-CONFIG_DELL_LAPTOP=m
-CONFIG_DELL_WMI=m
-CONFIG_DELL_WMI_DESCRIPTOR=m
-CONFIG_DELL_WMI_AIO=m
-CONFIG_DELL_SMO8800=m
-CONFIG_DELL_RBTN=m
-CONFIG_FUJITSU_LAPTOP=m
-# CONFIG_FUJITSU_LAPTOP_DEBUG is not set
-CONFIG_FUJITSU_TABLET=m
-CONFIG_AMILO_RFKILL=m
-CONFIG_HP_ACCEL=m
-CONFIG_HP_WIRELESS=m
-CONFIG_HP_WMI=m
-CONFIG_MSI_LAPTOP=m
-CONFIG_PANASONIC_LAPTOP=m
-CONFIG_COMPAL_LAPTOP=m
-CONFIG_SONY_LAPTOP=m
-CONFIG_SONYPI_COMPAT=y
-CONFIG_IDEAPAD_LAPTOP=m
-CONFIG_THINKPAD_ACPI=m
-CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y
-# CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set
-# CONFIG_THINKPAD_ACPI_DEBUG is not set
-# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set
-CONFIG_THINKPAD_ACPI_VIDEO=y
-CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y
-CONFIG_SENSORS_HDAPS=m
-# CONFIG_INTEL_MENLOW is not set
-CONFIG_EEEPC_LAPTOP=m
-CONFIG_ASUS_WMI=m
-CONFIG_ASUS_NB_WMI=m
-CONFIG_EEEPC_WMI=m
-CONFIG_ACPI_WMI=m
-CONFIG_INTEL_WMI_THUNDERBOLT=m
-CONFIG_MSI_WMI=m
-CONFIG_TOPSTAR_LAPTOP=m
-CONFIG_ACPI_TOSHIBA=m
-CONFIG_TOSHIBA_BT_RFKILL=m
-CONFIG_ACPI_CMPC=m
-CONFIG_INTEL_HID_EVENT=m
-CONFIG_INTEL_VBTN=m
-CONFIG_INTEL_IPS=m
-CONFIG_INTEL_PMC_CORE=m
-# CONFIG_IBM_RTL is not set
-# CONFIG_XO15_EBOOK is not set
-CONFIG_SAMSUNG_LAPTOP=m
-CONFIG_MXM_WMI=m
-CONFIG_INTEL_OAKTRAIL=m
-CONFIG_SAMSUNG_Q10=m
-CONFIG_APPLE_GMUX=m
-CONFIG_PVPANIC=y
-CONFIG_CLKDEV_LOOKUP=y
-CONFIG_HAVE_CLK_PREPARE=y
-CONFIG_COMMON_CLK=y
-
-#
-# Common Clock Framework
-#
-# CONFIG_COMMON_CLK_DEBUG is not set
-
-#
-# Hardware Spinlock drivers
-#
-CONFIG_CLKEVT_I8253=y
-CONFIG_I8253_LOCK=y
-CONFIG_CLKBLD_I8253=y
-CONFIG_MAILBOX=y
-CONFIG_PCC=y
-CONFIG_IOMMU_API=y
-CONFIG_IOMMU_SUPPORT=y
-CONFIG_IOMMU_DEBUGFS=y
-CONFIG_IOMMU_IOVA=y
-CONFIG_AMD_IOMMU=y
-CONFIG_AMD_IOMMU_V2=m
-CONFIG_DMAR_TABLE=y
-CONFIG_INTEL_IOMMU=y
-CONFIG_INTEL_IOMMU_DEBUGFS=y
-# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
-CONFIG_INTEL_IOMMU_FLOPPY_WA=y
-CONFIG_IRQ_REMAP=y
-CONFIG_HYPERV_IOMMU=y
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-CONFIG_IIO=y
-CONFIG_IIO_BUFFER=y
-CONFIG_IIO_BUFFER_CB=y
-CONFIG_IIO_KFIFO_BUF=y
-CONFIG_IIO_TRIGGERED_BUFFER=m
-# CONFIG_IIO_CONFIGFS is not set
-CONFIG_IIO_TRIGGER=y
-CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
-# CONFIG_IIO_SW_DEVICE is not set
-# CONFIG_IIO_SW_TRIGGER is not set
-
-#
-# Accelerometers
-#
-CONFIG_HID_SENSOR_ACCEL_3D=m
-# CONFIG_IIO_ST_ACCEL_3AXIS is not set
-# CONFIG_KXSD9 is not set
-
-#
-# Analog to digital converters
-#
-# CONFIG_AD7266 is not set
-# CONFIG_AD7298 is not set
-# CONFIG_AD7923 is not set
-# CONFIG_AD7791 is not set
-# CONFIG_AD7793 is not set
-# CONFIG_AD7476 is not set
-# CONFIG_AD7887 is not set
-# CONFIG_MAX1363 is not set
-# CONFIG_TI_ADC081C is not set
-# CONFIG_VIPERBOARD_ADC is not set
-
-#
-# Amplifiers
-#
-# CONFIG_AD8366 is not set
-
-#
-# Hid Sensor IIO Common
-#
-CONFIG_HID_SENSOR_IIO_COMMON=m
-CONFIG_HID_SENSOR_IIO_TRIGGER=m
-
-#
-# Digital to analog converters
-#
-# CONFIG_AD5064 is not set
-# CONFIG_AD5360 is not set
-# CONFIG_AD5380 is not set
-# CONFIG_AD5421 is not set
-# CONFIG_AD5624R_SPI is not set
-# CONFIG_AD5446 is not set
-# CONFIG_AD5449 is not set
-# CONFIG_AD5504 is not set
-# CONFIG_AD5755 is not set
-# CONFIG_AD5764 is not set
-# CONFIG_AD5791 is not set
-# CONFIG_AD5686 is not set
-# CONFIG_MAX517 is not set
-# CONFIG_MCP4725 is not set
-
-#
-# Frequency Synthesizers DDS/PLL
-#
-
-#
-# Clock Generator/Distribution
-#
-# CONFIG_AD9523 is not set
-
-#
-# Phase-Locked Loop (PLL) frequency synthesizers
-#
-# CONFIG_ADF4350 is not set
-
-#
-# Digital gyroscope sensors
-#
-# CONFIG_ADIS16080 is not set
-# CONFIG_ADIS16136 is not set
-# CONFIG_ADXRS450 is not set
-CONFIG_HID_SENSOR_GYRO_3D=m
-# CONFIG_IIO_ST_GYRO_3AXIS is not set
-# CONFIG_ITG3200 is not set
-
-#
-# Inertial measurement units
-#
-# CONFIG_ADIS16400 is not set
-# CONFIG_ADIS16480 is not set
-# CONFIG_INV_MPU6050_IIO is not set
-
-#
-# Light sensors
-#
-# CONFIG_ADJD_S311 is not set
-CONFIG_HID_SENSOR_ALS=m
-CONFIG_HID_SENSOR_PROX=m
-# CONFIG_SENSORS_TSL2563 is not set
-# CONFIG_VCNL4000 is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_AK8975 is not set
-CONFIG_HID_SENSOR_MAGNETOMETER_3D=m
-# CONFIG_IIO_ST_MAGN_3AXIS is not set
-
-#
-# Inclinometer sensors
-#
-CONFIG_HID_SENSOR_INCLINOMETER_3D=m
-CONFIG_HID_SENSOR_DEVICE_ROTATION=m
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_INTERRUPT_TRIGGER is not set
-# CONFIG_IIO_SYSFS_TRIGGER is not set
-
-#
-# Pressure Sensors
-#
-CONFIG_HID_SENSOR_PRESS=m
-# CONFIG_IIO_ST_PRESS is not set
-CONFIG_NTB=m
-CONFIG_NTB_AMD=m
-# CONFIG_NTB_INTEL is not set
-# CONFIG_NTB_PINGPONG is not set
-# CONFIG_NTB_TOOL is not set
-CONFIG_NTB_PERF=m
-CONFIG_NTB_TRANSPORT=m
-# CONFIG_VME_BUS is not set
-CONFIG_PWM=y
-CONFIG_PWM_SYSFS=y
-CONFIG_PWM_LPSS=m
-# CONFIG_IPACK_BUS is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_RAS=y
-CONFIG_LIBNVDIMM=m
-CONFIG_BLK_DEV_PMEM=m
-CONFIG_ND_BLK=m
-CONFIG_ND_CLAIM=y
-CONFIG_ND_BTT=m
-CONFIG_BTT=y
-CONFIG_ND_PFN=m
-CONFIG_NVDIMM_PFN=y
-CONFIG_NVDIMM_DAX=y
-CONFIG_NVDIMM_KEYS=y
-CONFIG_DAX_DRIVER=y
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-CONFIG_DEV_DAX_PMEM=m
-CONFIG_STM=m
-CONFIG_STM_PROTO_BASIC=m
-CONFIG_STM_PROTO_SYS_T=m
-CONFIG_STM_DUMMY=m
-CONFIG_STM_SOURCE_CONSOLE=m
-CONFIG_STM_SOURCE_HEARTBEAT=m
-CONFIG_STM_SOURCE_FTRACE=m
-CONFIG_INTEL_TH=m
-CONFIG_INTEL_TH_PCI=m
-CONFIG_INTEL_TH_ACPI=m
-CONFIG_INTEL_TH_GTH=m
-CONFIG_INTEL_TH_STH=m
-CONFIG_INTEL_TH_MSU=m
-CONFIG_INTEL_TH_PTI=m
-# CONFIG_INTEL_TH_DEBUG is not set
-CONFIG_THUNDERBOLT=y
-CONFIG_NVMEM=y
-
-#
-# Firmware Drivers
-#
-CONFIG_EDD=m
-# CONFIG_EDD_OFF is not set
-CONFIG_FIRMWARE_MEMMAP=y
-CONFIG_DELL_RBU=m
-CONFIG_DCDBAS=m
-CONFIG_DMIID=y
-CONFIG_DMI_SYSFS=y
-CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
-CONFIG_ISCSI_IBFT_FIND=y
-CONFIG_ISCSI_IBFT=m
-CONFIG_FW_CFG_SYSFS=y
-# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
-# CONFIG_GOOGLE_FIRMWARE is not set
-
-#
-# EFI (Extensible Firmware Interface) Support
-#
-CONFIG_EFI_VARS=y
-CONFIG_EFI_ESRT=y
-CONFIG_EFI_VARS_PSTORE=y
-CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
-CONFIG_EFI_RUNTIME_MAP=y
-CONFIG_UEFI_CPER=y
-CONFIG_UEFI_CPER_X86=y
-CONFIG_EFI_RUNTIME_WRAPPERS=y
-# CONFIG_EFI_DEV_PATH_PARSER is not set
-
-#
-# File systems
-#
-CONFIG_DCACHE_WORD_ACCESS=y
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=m
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-CONFIG_EXT4_DEBUG=y
-CONFIG_JBD2=m
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=m
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=m
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-CONFIG_XFS_WARN=y
-# CONFIG_XFS_DEBUG is not set
-CONFIG_GFS2_FS=m
-CONFIG_GFS2_FS_LOCKING_DLM=y
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-CONFIG_BTRFS_ASSERT=y
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_DAX_PMD=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-CONFIG_QUOTA_DEBUG=y
-CONFIG_QUOTA_TREE=y
-# CONFIG_QFMT_V1 is not set
-CONFIG_QFMT_V2=y
-CONFIG_QUOTACTL=y
-CONFIG_QUOTACTL_COMPAT=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-CONFIG_FSCACHE_OBJECT_LIST=y
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_JFFS2_FS is not set
-# CONFIG_UBIFS_FS is not set
-# CONFIG_LOGFS is not set
-CONFIG_CRAMFS=m
-CONFIG_SQUASHFS=m
-CONFIG_SQUASHFS_XATTR=y
-CONFIG_SQUASHFS_ZLIB=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_SQUASHFS_XZ=y
-# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
-# CONFIG_SQUASHFS_EMBEDDED is not set
-CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-CONFIG_PSTORE_RAM=m
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-CONFIG_EFIVAR_FS=y
-CONFIG_ORE=m
-CONFIG_NETWORK_FILESYSTEMS=y
-CONFIG_NFS_FS=m
-# CONFIG_NFS_V2 is not set
-CONFIG_NFS_V3=m
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=m
-# CONFIG_NFS_SWAP is not set
-CONFIG_NFS_V4_1=y
-CONFIG_NFS_V4_2=y
-CONFIG_PNFS_FILE_LAYOUT=m
-CONFIG_PNFS_BLOCK=m
-CONFIG_PNFS_OBJLAYOUT=m
-CONFIG_PNFS_FLEXFILE_LAYOUT=m
-CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
-# CONFIG_NFS_V4_1_MIGRATION is not set
-CONFIG_NFS_V4_SECURITY_LABEL=y
-CONFIG_NFS_FSCACHE=y
-# CONFIG_NFS_USE_LEGACY_DNS is not set
-CONFIG_NFS_USE_KERNEL_DNS=y
-CONFIG_NFS_DEBUG=y
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
+CONFIG_NFP_DEBUG=y
 CONFIG_NFSD=m
-CONFIG_NFSD_V2_ACL=y
+CONFIG_NFSD_FAULT_INJECTION=y
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
 CONFIG_NFSD_V3=y
 CONFIG_NFSD_V3_ACL=y
 CONFIG_NFSD_V4=y
-CONFIG_NFSD_PNFS=y
-# CONFIG_NFSD_BLOCKLAYOUT is not set
-CONFIG_NFSD_SCSILAYOUT=y
 CONFIG_NFSD_V4_SECURITY_LABEL=y
-CONFIG_NFSD_FAULT_INJECTION=y
-CONFIG_GRACE_PERIOD=m
-CONFIG_LOCKD=m
-CONFIG_LOCKD_V4=y
-CONFIG_NFS_ACL_SUPPORT=m
-CONFIG_NFS_COMMON=y
-CONFIG_SUNRPC=m
-CONFIG_SUNRPC_GSS=m
-CONFIG_SUNRPC_BACKCHANNEL=y
-CONFIG_RPCSEC_GSS_KRB5=m
-CONFIG_SUNRPC_DEBUG=y
-CONFIG_SUNRPC_XPRT_RDMA=m
-CONFIG_CEPH_FS=m
-CONFIG_CEPH_FS_POSIX_ACL=y
-CONFIG_CIFS=m
-CONFIG_CIFS_STATS=y
-# CONFIG_CIFS_STATS2 is not set
-CONFIG_CIFS_WEAK_PW_HASH=y
-CONFIG_CIFS_UPCALL=y
-CONFIG_CIFS_XATTR=y
-CONFIG_CIFS_POSIX=y
-CONFIG_CIFS_ACL=y
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
-CONFIG_CIFS_DFS_UPCALL=y
-# CONFIG_CIFS_SMB311 is not set
-# CONFIG_CIFS_FSCACHE is not set
-# CONFIG_NCP_FS is not set
-# CONFIG_CODA_FS is not set
-# CONFIG_AFS_FS is not set
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
 CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
 CONFIG_NLS_CODEPAGE_437=y
 CONFIG_NLS_CODEPAGE_737=m
 CONFIG_NLS_CODEPAGE_775=m
@@ -5952,15 +4400,15 @@
 CONFIG_NLS_CODEPAGE_865=m
 CONFIG_NLS_CODEPAGE_866=m
 CONFIG_NLS_CODEPAGE_869=m
-CONFIG_NLS_CODEPAGE_936=m
-CONFIG_NLS_CODEPAGE_950=m
-CONFIG_NLS_CODEPAGE_932=m
-CONFIG_NLS_CODEPAGE_949=m
 CONFIG_NLS_CODEPAGE_874=m
-CONFIG_NLS_ISO8859_8=m
-CONFIG_NLS_CODEPAGE_1250=m
-CONFIG_NLS_CODEPAGE_1251=m
-CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
 CONFIG_NLS_ISO8859_1=m
 CONFIG_NLS_ISO8859_2=m
 CONFIG_NLS_ISO8859_3=m
@@ -5968,13 +4416,10 @@
 CONFIG_NLS_ISO8859_5=m
 CONFIG_NLS_ISO8859_6=m
 CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
 CONFIG_NLS_ISO8859_9=m
-CONFIG_NLS_ISO8859_13=m
-CONFIG_NLS_ISO8859_14=m
-CONFIG_NLS_ISO8859_15=m
 CONFIG_NLS_KOI8_R=m
 CONFIG_NLS_KOI8_U=m
-CONFIG_NLS_MAC_ROMAN=m
 CONFIG_NLS_MAC_CELTIC=m
 CONFIG_NLS_MAC_CENTEURO=m
 CONFIG_NLS_MAC_CROATIAN=m
@@ -5983,576 +4428,1459 @@
 CONFIG_NLS_MAC_GREEK=m
 CONFIG_NLS_MAC_ICELAND=m
 CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
 CONFIG_NLS_MAC_ROMANIAN=m
 CONFIG_NLS_MAC_TURKISH=m
 CONFIG_NLS_UTF8=m
-CONFIG_DLM=m
-CONFIG_DLM_DEBUG=y
-
-#
-# Kernel hacking
-#
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=2048
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-CONFIG_PAGE_OWNER=y
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_STACK_VALIDATION=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_SHIRQ=y
-CONFIG_LOCKUP_DETECTOR=y
-CONFIG_HARDLOCKUP_DETECTOR=y
-CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
-CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
-CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=1
-# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
-# CONFIG_WQ_WATCHDOG is not set
-# CONFIG_PANIC_ON_OOPS is not set
-CONFIG_PANIC_ON_OOPS_VALUE=0
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_PANIC_TIMEOUT=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-CONFIG_DEBUG_OBJECTS=y
-# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
-CONFIG_DEBUG_OBJECTS_FREE=y
-CONFIG_DEBUG_OBJECTS_TIMERS=y
-CONFIG_DEBUG_OBJECTS_WORK=y
-CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
-CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
-CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-CONFIG_DEBUG_KMEMLEAK=y
-CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=20000
-# CONFIG_DEBUG_KMEMLEAK_TEST is not set
-CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-CONFIG_PROVE_LOCKING=y
-CONFIG_LOCK_STAT=y
-CONFIG_DEBUG_RT_MUTEXES=y
-CONFIG_DEBUG_PI_LIST=y
-# CONFIG_RT_MUTEX_TESTER is not set
-CONFIG_DEBUG_SPINLOCK=y
-CONFIG_DEBUG_MUTEXES=y
-CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
-CONFIG_DEBUG_RWSEMS=y
-CONFIG_DEBUG_LOCK_ALLOC=y
-CONFIG_LOCKDEP=y
-# CONFIG_DEBUG_LOCKDEP is not set
-CONFIG_TRACE_IRQFLAGS=y
-CONFIG_DEBUG_ATOMIC_SLEEP=y
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-CONFIG_DEBUG_STACK_USAGE=y
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-CONFIG_DEBUG_VM=y
-# CONFIG_DEBUG_VM_RB is not set
-# CONFIG_DEBUG_VIRTUAL is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-CONFIG_TEST_LIST_SORT=y
-CONFIG_DEBUG_SG=y
-CONFIG_DEBUG_NOTIFIERS=y
-CONFIG_DEBUG_CREDENTIALS=y
-CONFIG_ARCH_WANT_FRAME_POINTERS=y
-CONFIG_FRAME_POINTER=y
-CONFIG_BOOT_PRINTK_DELAY=y
-
-#
-# RCU Debugging
-#
-CONFIG_PROVE_RCU=y
-# CONFIG_PROVE_RCU_REPEATEDLY is not set
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-CONFIG_DEBUG_PER_CPU_MAPS=y
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-CONFIG_FAULT_INJECTION=y
-CONFIG_FAILSLAB=y
-CONFIG_FAIL_PAGE_ALLOC=y
-CONFIG_FAIL_MAKE_REQUEST=y
-CONFIG_FAIL_IO_TIMEOUT=y
-CONFIG_FAIL_MMC_REQUEST=y
-CONFIG_FAULT_INJECTION_DEBUG_FS=y
-CONFIG_LATENCYTOP=y
-CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
-# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
-CONFIG_PAGE_EXTENSION=y
-CONFIG_DEBUG_PAGEALLOC=y
-CONFIG_WANT_PAGE_DEBUG_FLAGS=y
-# CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT is not set
-CONFIG_PAGE_GUARD=y
-CONFIG_USER_STACKTRACE_SUPPORT=y
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_HAVE_FENTRY=y
-CONFIG_HAVE_C_RECORDMCOUNT=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-CONFIG_FUNCTION_GRAPH_TRACER=y
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-CONFIG_STACK_TRACER=y
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_FUNCTION_PROFILER=y
-CONFIG_BPF_KPROBE_OVERRIDE=y
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-CONFIG_MMIOTRACE=y
-# CONFIG_MMIOTRACE_TEST is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_TEST_PARMAN is not set
-CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
-# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-CONFIG_DMA_API_DEBUG=y
-CONFIG_ATOMIC64_SELFTEST=y
-# CONFIG_TEST_LIVEPATCH is not set
-CONFIG_ASYNC_RAID6_TEST=m
-# CONFIG_SAMPLES is not set
-CONFIG_HAVE_ARCH_KGDB=y
-CONFIG_KGDB=y
-CONFIG_KGDB_SERIAL_CONSOLE=y
-CONFIG_KGDB_TESTS=y
-# CONFIG_KGDB_TESTS_ON_BOOT is not set
-CONFIG_KGDB_LOW_LEVEL_TRAP=y
-CONFIG_KGDB_KDB=y
-CONFIG_KDB_KEYBOARD=y
-CONFIG_KDB_CONTINUE_CATASTROPHIC=0
-CONFIG_HAVE_ARCH_KMEMCHECK=y
-CONFIG_TEST_STRING_HELPERS=m
-CONFIG_TEST_KSTRTOX=y
-CONFIG_EARLY_PRINTK_USB=y
-CONFIG_STRICT_DEVMEM=y
-# CONFIG_X86_VERBOSE_BOOTUP is not set
-CONFIG_EARLY_PRINTK=y
-CONFIG_EARLY_PRINTK_DBGP=y
-CONFIG_DEBUG_STACKOVERFLOW=y
-CONFIG_EARLY_PRINTK_EFI=y
-# CONFIG_EARLY_PRINTK_USB_XDBC is not set
-# CONFIG_MCSAFE_TEST is not set
-CONFIG_X86_PTDUMP=y
-# CONFIG_EFI_PGT_DUMP is not set
-# CONFIG_DEBUG_RODATA is not set
-CONFIG_DEBUG_SET_MODULE_RONX=y
-# CONFIG_DEBUG_TLBFLUSH is not set
-# CONFIG_IOMMU_DEBUG is not set
-# CONFIG_IOMMU_STRESS is not set
-CONFIG_HAVE_MMIOTRACE_SUPPORT=y
-CONFIG_X86_DECODER_SELFTEST=y
-CONFIG_IO_DELAY_TYPE_0X80=0
-CONFIG_IO_DELAY_TYPE_0XED=1
-CONFIG_IO_DELAY_TYPE_UDELAY=2
-CONFIG_IO_DELAY_TYPE_NONE=3
-CONFIG_IO_DELAY_0X80=y
-# CONFIG_IO_DELAY_0XED is not set
-# CONFIG_IO_DELAY_UDELAY is not set
-# CONFIG_IO_DELAY_NONE is not set
-CONFIG_DEFAULT_IO_DELAY_TYPE=0
-CONFIG_DEBUG_BOOT_PARAMS=y
-# CONFIG_CPA_DEBUG is not set
+CONFIG_NODES_SHIFT=10
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NOUVEAU_DEBUG_MMU=y
+CONFIG_NOUVEAU_DEBUG_PUSH=y
+CONFIG_NOZOMI=m
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_FULL=y
+CONFIG_NR_CPUS=8192
+CONFIG_NTB=m
+CONFIG_NTB_AMD=m
+CONFIG_NTB_INTEL=m
+CONFIG_NTB_MSI=y
+CONFIG_NTB_NETDEV=m
+CONFIG_NTB_PERF=m
+CONFIG_NTB_PINGPONG=m
+CONFIG_NTB_TOOL=m
+CONFIG_NTB_TRANSPORT=m
+CONFIG_NUMA=y
+CONFIG_NUMA_BALANCING=y
+CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
+CONFIG_NUMA_EMU=y
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_FC=m
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_NVRAM=y
+CONFIG_NVSW_SN2201=m
+CONFIG_NV_TCO=m
+CONFIG_N_GSM=m
+CONFIG_N_HDLC=m
+CONFIG_OCXL=m
+CONFIG_OF_PMEM=m
+CONFIG_OPENVSWITCH=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPENVSWITCH_GRE=m
+CONFIG_OPENVSWITCH_VXLAN=m
+CONFIG_OPROFILE=m
+CONFIG_OPROFILE_EVENT_MULTIPLEX=y
 CONFIG_OPTIMIZE_INLINING=y
-# CONFIG_DEBUG_NMI_SELFTEST is not set
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_KEYS_COMPAT=y
+CONFIG_OSF_PARTITION=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_OVERLAY_FS=m
+CONFIG_PACKET=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PAGE_EXTENSION=y
+CONFIG_PAGE_OWNER=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANASONIC_LAPTOP=m
+CONFIG_PANIC_TIMEOUT=0
+CONFIG_PARAVIRT=y
+CONFIG_PARAVIRT_SPINLOCKS=y
+CONFIG_PARAVIRT_TIME_ACCOUNTING=y
+CONFIG_PARPORT=m
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_PC=m
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PCCARD=y
+CONFIG_PCI=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIEPORTBUS=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCIPCWATCHDOG=m
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MMCONFIG=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_PASID=y
+CONFIG_PCI_PF_STUB=m
+CONFIG_PCI_PRI=y
+CONFIG_PCI_STUB=y
+CONFIG_PERF_EVENTS=y
+CONFIG_PERF_EVENTS_AMD_BRS=y
+CONFIG_PERF_EVENTS_AMD_POWER=m
+CONFIG_PERF_EVENTS_INTEL_CSTATE=m
+CONFIG_PERF_EVENTS_INTEL_RAPL=m
+CONFIG_PERF_EVENTS_INTEL_UNCORE=m
 CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_BIG_KEYS=y
-CONFIG_TRUSTED_KEYS=y
-CONFIG_ENCRYPTED_KEYS=y
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
+CONFIG_PHYLIB=y
+CONFIG_PHYLINK=m
+CONFIG_PHYSICAL_ALIGN=0x200000
+CONFIG_PHYSICAL_START=0x1000000
+CONFIG_PID_NS=y
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_ALDERLAKE=m
+CONFIG_PINCTRL_AMD=y
+CONFIG_PINCTRL_BAYTRAIL=y
+CONFIG_PINCTRL_BROXTON=m
+CONFIG_PINCTRL_CANNONLAKE=m
+CONFIG_PINCTRL_CEDARFORK=m
+CONFIG_PINCTRL_DENVERTON=m
+CONFIG_PINCTRL_ELKHARTLAKE=m
+CONFIG_PINCTRL_EMMITSBURG=m
+CONFIG_PINCTRL_GEMINILAKE=m
+CONFIG_PINCTRL_ICELAKE=m
+CONFIG_PINCTRL_LEWISBURG=m
+CONFIG_PINCTRL_METEORLAKE=m
+CONFIG_PINCTRL_SUNRISEPOINT=m
+CONFIG_PINCTRL_TIGERLAKE=m
+CONFIG_PM=y
+CONFIG_PMBUS=m
+CONFIG_PMIC_OPREGION=y
+CONFIG_PM_ADVANCED_DEBUG=y
+CONFIG_PM_DEBUG=y
+CONFIG_PM_SLEEP_DEBUG=y
+CONFIG_PM_STD_PARTITION=""
+CONFIG_PM_TRACE_RTC=y
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_PNP=y
+CONFIG_PNPACPI=y
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POWERCAP=y
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPDEV=m
+CONFIG_PPP=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREEMPT_VOLUNTARY=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROFILING=y
+CONFIG_PROVE_LOCKING=y
+CONFIG_PROVE_RCU=y
+CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
+CONFIG_PSAMPLE=m
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PSTORE_RAM=m
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_PTP_1588_CLOCK_VMW=m
+CONFIG_PVPANIC=y
+CONFIG_PWM=y
+CONFIG_PWM_DWC=m
+CONFIG_PWM_LPSS_PCI=m
+CONFIG_PWM_LPSS_PLATFORM=m
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QFMT_V2=y
+CONFIG_QLA3XXX=m
+CONFIG_QRTR=m
+CONFIG_QSEMI_PHY=m
+CONFIG_QUEUED_LOCK_STAT=y
+CONFIG_QUOTA=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTA_DEBUG=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RAID_ATTRS=m
+CONFIG_RANDOM32_SELFTEST=y
+CONFIG_RANDOMIZE_BASE=y
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOM_TRUST_CPU=y
+CONFIG_RAS=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RCU_TORTURE_TEST=m
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_CORE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_LOOPBACK=m
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_REALTEK_PHY=m
+CONFIG_RELAY=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RESET_CONTROLLER=y
+CONFIG_RETHUNK=y
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL=m
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_CORE=m
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_DS3232_HWMON=y
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX4581=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTC_NVMEM=y
+CONFIG_RTC_SYSTOHC=y
+CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTLWIFI_DEBUG=y
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW88_DEBUG=y
+CONFIG_RTW88_DEBUGFS=y
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_SAMPLES=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SAMSUNG_LAPTOP=m
+CONFIG_SAMSUNG_Q10=m
+CONFIG_SATA_AHCI=m
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SBC_FITPC2_WATCHDOG=m
+CONFIG_SCF_TORTURE_TEST=m
+CONFIG_SCHEDSTATS=y
+CONFIG_SCHED_AUTOGROUP=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCSI=y
+CONFIG_SCSI_AACRAID=m
+CONFIG_SCSI_BNX2X_FCOE=m
+CONFIG_SCSI_BNX2_ISCSI=m
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_CXGB4_ISCSI=m
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=m
+CONFIG_SCSI_FC_ATTRS=m
+CONFIG_SCSI_HPSA=m
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_LPFC=m
+CONFIG_SCSI_MPI3MR=m
+CONFIG_SCSI_MPT2SAS=m
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS=m
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_QLA_FC=m
+CONFIG_SCSI_QLA_ISCSI=m
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SMARTPQI=m
+CONFIG_SCSI_SPI_ATTRS=m
+CONFIG_SCSI_SRP_ATTRS=m
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SDIO_UART=m
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
 CONFIG_SECURITY=y
 CONFIG_SECURITYFS=y
-CONFIG_SECURITY_NETWORK=y
 CONFIG_SECURITY_INFINIBAND=y
-CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_SECURITY_NETWORK=y
 CONFIG_SECURITY_NETWORK_XFRM=y
 CONFIG_SECURITY_PATH=y
-CONFIG_SECURITY_SECURELEVEL=y
-CONFIG_INTEL_TXT=y
-CONFIG_LSM_MMAP_MIN_ADDR=65535
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
 CONFIG_SECURITY_SELINUX=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
-CONFIG_SECURITY_SELINUX_DISABLE=y
-CONFIG_SECURITY_SELINUX_DEVELOP=y
 CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
 CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
-# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
-# CONFIG_SECURITY_SMACK is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
 CONFIG_SECURITY_YAMA=y
-CONFIG_SECURITY_YAMA_STACKED=y
-CONFIG_INTEGRITY=y
-CONFIG_INTEGRITY_SIGNATURE=y
-CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
-CONFIG_IMA=y
-CONFIG_IMA_MEASURE_PCR_IDX=10
-CONFIG_IMA_AUDIT=y
-CONFIG_IMA_LSM_RULES=y
-CONFIG_IMA_APPRAISE=y
-CONFIG_IMA_TRUSTED_KEYRING=y
-CONFIG_EVM=y
-CONFIG_EVM_HMAC_VERSION=2
-CONFIG_DEFAULT_SECURITY_SELINUX=y
-# CONFIG_DEFAULT_SECURITY_YAMA is not set
-# CONFIG_DEFAULT_SECURITY_DAC is not set
-CONFIG_DEFAULT_SECURITY="selinux"
-CONFIG_XOR_BLOCKS=m
-CONFIG_ASYNC_CORE=m
-CONFIG_ASYNC_MEMCPY=m
-CONFIG_ASYNC_XOR=m
-CONFIG_ASYNC_PQ=m
-CONFIG_ASYNC_RAID6_RECOV=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_AKCIPHER=m
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_KPP=m
-CONFIG_CRYPTO_ACOMP2=y
-CONFIG_CRYPTO_RSA=m
-CONFIG_CRYPTO_DH=m
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-CONFIG_CRYPTO_CRYPTD=m
-CONFIG_CRYPTO_MCRYPTD=m
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-CONFIG_CRYPTO_ABLK_HELPER_X86=m
-CONFIG_CRYPTO_GLUE_HELPER_X86=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32C_INTEL=m
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRC32_PCLMUL=m
-CONFIG_CRYPTO_CRCT10DIF=m
-CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-CONFIG_CRYPTO_SHA1_SSSE3=y
-CONFIG_CRYPTO_SHA256_SSSE3=y
-CONFIG_CRYPTO_SHA512_SSSE3=m
-CONFIG_CRYPTO_SHA1_MB=m
-CONFIG_CRYPTO_SHA256_MB=m
-CONFIG_CRYPTO_SHA512_MB=m
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_AES_X86_64=y
-CONFIG_CRYPTO_AES_NI_INTEL=m
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_BLOWFISH_X86_64=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAMELLIA_X86_64=m
-CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m
-CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST5_AVX_X86_64=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_CAST6_AVX_X86_64=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SALSA20_X86_64=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m
-CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
-CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-CONFIG_CRYPTO_TWOFISH_X86_64=m
-CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
-CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=y
-# CONFIG_CRYPTO_842 is not set
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-CONFIG_CRYPTO_DEV_PADLOCK=m
-CONFIG_CRYPTO_DEV_PADLOCK_AES=m
-CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
-CONFIG_CRYPTO_DEV_CCP=y
-CONFIG_CRYPTO_DEV_CCP_DD=m
-CONFIG_CRYPTO_DEV_QAT=m
-CONFIG_CRYPTO_DEV_QAT_DH895xCC=m
-CONFIG_CRYPTO_DEV_QAT_C3XXX=m
-CONFIG_CRYPTO_DEV_QAT_C62X=m
-CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m
-CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m
-CONFIG_CRYPTO_DEV_QAT_C62XVF=m
-CONFIG_CRYPTO_DEV_CHELSIO=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-CONFIG_EFI_SIGNATURE_LIST_PARSER=y
-CONFIG_PKCS7_MESSAGE_PARSER=y
-# CONFIG_PKCS7_TEST_KEY is not set
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_ACPI_POWER=m
+CONFIG_SENSORS_AD7414=m
+CONFIG_SENSORS_AD7418=m
+CONFIG_SENSORS_ADM1021=m
+CONFIG_SENSORS_ADM1025=m
+CONFIG_SENSORS_ADM1026=m
+CONFIG_SENSORS_ADM1029=m
+CONFIG_SENSORS_ADM1031=m
+CONFIG_SENSORS_ADM1275=m
+CONFIG_SENSORS_ADM9240=m
+CONFIG_SENSORS_ADS1015=m
+CONFIG_SENSORS_ADS7828=m
+CONFIG_SENSORS_ADT7410=m
+CONFIG_SENSORS_ADT7411=m
+CONFIG_SENSORS_ADT7462=m
+CONFIG_SENSORS_ADT7470=m
+CONFIG_SENSORS_ADT7475=m
+CONFIG_SENSORS_AMC6821=m
+CONFIG_SENSORS_AMD_ENERGY=m
+CONFIG_SENSORS_APDS990X=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ASC7621=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_ATXP1=m
+CONFIG_SENSORS_BH1770=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_DELL_SMM=m
+CONFIG_SENSORS_DME1737=m
+CONFIG_SENSORS_DS1621=m
+CONFIG_SENSORS_DS620=m
+CONFIG_SENSORS_EMC1403=m
+CONFIG_SENSORS_EMC6W201=m
+CONFIG_SENSORS_F71805F=m
+CONFIG_SENSORS_F71882FG=m
+CONFIG_SENSORS_F75375S=m
+CONFIG_SENSORS_FAM15H_POWER=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G760A=m
+CONFIG_SENSORS_GL518SM=m
+CONFIG_SENSORS_GL520SM=m
+CONFIG_SENSORS_HDAPS=m
+CONFIG_SENSORS_I5500=m
+CONFIG_SENSORS_I5K_AMB=m
+CONFIG_SENSORS_IBMAEM=m
+CONFIG_SENSORS_IBMPEX=m
+CONFIG_SENSORS_INA209=m
+CONFIG_SENSORS_INA2XX=m
+CONFIG_SENSORS_IT87=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LINEAGE=m
+CONFIG_SENSORS_LIS3_I2C=m
+CONFIG_SENSORS_LM25066=m
+CONFIG_SENSORS_LM63=m
+CONFIG_SENSORS_LM73=m
+CONFIG_SENSORS_LM75=m
+CONFIG_SENSORS_LM77=m
+CONFIG_SENSORS_LM78=m
+CONFIG_SENSORS_LM80=m
+CONFIG_SENSORS_LM83=m
+CONFIG_SENSORS_LM85=m
+CONFIG_SENSORS_LM87=m
+CONFIG_SENSORS_LM90=m
+CONFIG_SENSORS_LM92=m
+CONFIG_SENSORS_LM93=m
+CONFIG_SENSORS_LM95234=m
+CONFIG_SENSORS_LM95241=m
+CONFIG_SENSORS_LM95245=m
+CONFIG_SENSORS_LTC2978=m
+CONFIG_SENSORS_LTC4151=m
+CONFIG_SENSORS_LTC4215=m
+CONFIG_SENSORS_LTC4245=m
+CONFIG_SENSORS_LTC4261=m
+CONFIG_SENSORS_MAX16064=m
+CONFIG_SENSORS_MAX16065=m
+CONFIG_SENSORS_MAX1619=m
+CONFIG_SENSORS_MAX1668=m
+CONFIG_SENSORS_MAX197=m
+CONFIG_SENSORS_MAX34440=m
+CONFIG_SENSORS_MAX6639=m
+CONFIG_SENSORS_MAX6642=m
+CONFIG_SENSORS_MAX6650=m
+CONFIG_SENSORS_MAX6697=m
+CONFIG_SENSORS_MAX8688=m
+CONFIG_SENSORS_MCP3021=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT6775=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_PC87360=m
+CONFIG_SENSORS_PC87427=m
+CONFIG_SENSORS_PCF8591=m
+CONFIG_SENSORS_PMBUS=m
+CONFIG_SENSORS_SCH5627=m
+CONFIG_SENSORS_SCH5636=m
+CONFIG_SENSORS_SHT15=m
+CONFIG_SENSORS_SHT21=m
+CONFIG_SENSORS_SIS5595=m
+CONFIG_SENSORS_SMSC47B397=m
+CONFIG_SENSORS_SMSC47M192=m
+CONFIG_SENSORS_SMSC47M1=m
+CONFIG_SENSORS_THMC50=m
+CONFIG_SENSORS_TMP102=m
+CONFIG_SENSORS_TMP401=m
+CONFIG_SENSORS_TMP421=m
+CONFIG_SENSORS_TSL2550=m
+CONFIG_SENSORS_UCD9000=m
+CONFIG_SENSORS_UCD9200=m
+CONFIG_SENSORS_VIA686A=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_VT1211=m
+CONFIG_SENSORS_VT8231=m
+CONFIG_SENSORS_W83627EHF=m
+CONFIG_SENSORS_W83627HF=m
+CONFIG_SENSORS_W83781D=m
+CONFIG_SENSORS_W83791D=m
+CONFIG_SENSORS_W83792D=m
+CONFIG_SENSORS_W83793=m
+CONFIG_SENSORS_W83795=m
+CONFIG_SENSORS_W83L785TS=m
+CONFIG_SENSORS_W83L786NG=m
+CONFIG_SENSORS_ZL6100=m
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_DW=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=64
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_ARC=m
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=y
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_JSM=m
+CONFIG_SERIAL_MULTI_INSTANTIATE=m
+CONFIG_SERIAL_NONSTANDARD=y
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO=y
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SEV_GUEST=m
+CONFIG_SFC=m
+CONFIG_SFC_MCDI_LOGGING=y
+CONFIG_SFC_MCDI_MON=y
+CONFIG_SFC_MTD=y
+CONFIG_SFC_SIENA=m
+CONFIG_SFC_SIENA_MCDI_LOGGING=y
+CONFIG_SFC_SIENA_MCDI_MON=y
+CONFIG_SFC_SIENA_MTD=y
+CONFIG_SFC_SIENA_SRIOV=y
+CONFIG_SFC_SRIOV=y
+CONFIG_SFI=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SGI_GRU=m
+CONFIG_SGI_IOC4=m
+CONFIG_SGI_PARTITION=y
+CONFIG_SGI_XP=m
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
 CONFIG_SIGNED_PE_FILE_VERIFICATION=y
-CONFIG_HAVE_KVM=y
-CONFIG_HAVE_KVM_IRQCHIP=y
-CONFIG_HAVE_KVM_IRQFD=y
-CONFIG_HAVE_KVM_IRQ_ROUTING=y
-CONFIG_HAVE_KVM_EVENTFD=y
-CONFIG_KVM_APIC_ARCHITECTURE=y
-CONFIG_KVM_MMIO=y
-CONFIG_KVM_ASYNC_PF=y
-CONFIG_HAVE_KVM_MSI=y
-CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
-CONFIG_KVM_VFIO=y
-CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
-CONFIG_HAVE_KVM_IRQ_BYPASS=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP=m
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLS=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMP=y
+CONFIG_SMSC9420=m
+CONFIG_SMSC_PHY=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_DEBUG=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTL_INPUT_VALIDATION=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DEBUG=y
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_CS8409=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_INTEL=m
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=0
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDA_SCODEC_CS35L41_I2C=m
+CONFIG_SND_HDA_SCODEC_CS35L41_SPI=m
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCM_XRUN_DEBUG=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SOC=m
+CONFIG_SND_SOC_AMD_ACP5x=m
+CONFIG_SND_SOC_AMD_ACP6x=m
+CONFIG_SND_SOC_AMD_RENOIR=m
+CONFIG_SND_SOC_AMD_RENOIR_MACH=m
+CONFIG_SND_SOC_AMD_VANGOGH_MACH=m
+CONFIG_SND_SOC_AMD_YC_MACH=m
+CONFIG_SND_SOC_CS35L41_I2C=m
+CONFIG_SND_SOC_CS35L41_SPI=m
+CONFIG_SND_SOC_ES8326=m
+CONFIG_SND_SOC_INTEL_AVS=m
+CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH=m
+CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m
+CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
+CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m
+CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
+CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
+CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH=m
+CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m
+CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m
+CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=m
+CONFIG_SND_SOC_INTEL_CATPT=m
+CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m
+CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH=m
+CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m
+CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
+CONFIG_SND_SOC_INTEL_CML_H=m
+CONFIG_SND_SOC_INTEL_CML_LP=m
+CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH=m
+CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_HASWELL=m
+CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m
+CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH=m
+CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m
+CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m
+CONFIG_SND_SOC_INTEL_SKYLAKE=m
+CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH=m
+CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m
+CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y
+CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES=y
+CONFIG_SND_SOC_NAU8315=m
+CONFIG_SND_SOC_NAU8821=m
+CONFIG_SND_SOC_PCM512x_I2C=m
+CONFIG_SND_SOC_RT1308_SDW=m
+CONFIG_SND_SOC_RT700_SDW=m
+CONFIG_SND_SOC_RT711_SDW=m
+CONFIG_SND_SOC_RT712_SDCA_SDW=m
+CONFIG_SND_SOC_RT715_SDW=m
+CONFIG_SND_SOC_SOF=m
+CONFIG_SND_SOC_SOF_ACPI=m
+CONFIG_SND_SOC_SOF_AMD_REMBRANDT=m
+CONFIG_SND_SOC_SOF_AMD_RENOIR=m
+CONFIG_SND_SOC_SOF_AMD_TOPLEVEL=m
+CONFIG_SND_SOC_SOF_APOLLOLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_BAYTRAIL_SUPPORT=y
+CONFIG_SND_SOC_SOF_BROADWELL_SUPPORT=y
+CONFIG_SND_SOC_SOF_CANNONLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_COFFEELAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_COMETLAKE_H_SUPPORT=y
+CONFIG_SND_SOC_SOF_COMETLAKE_LP_SUPPORT=y
+CONFIG_SND_SOC_SOF_DEBUG=y
+CONFIG_SND_SOC_SOF_DEBUG_ENABLE_DEBUGFS_CACHE=y
+CONFIG_SND_SOC_SOF_DEBUG_PROBES=m
+CONFIG_SND_SOC_SOF_DEBUG_VERBOSE_IPC=y
+CONFIG_SND_SOC_SOF_DEBUG_XRUN_STOP=y
+CONFIG_SND_SOC_SOF_ELKHARTLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_GEMINILAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC=y
+CONFIG_SND_SOC_SOF_HDA_COMMON_HDMI_CODEC=y
+CONFIG_SND_SOC_SOF_HDA_LINK=y
+CONFIG_SND_SOC_SOF_HDA_PROBES=m
+CONFIG_SND_SOC_SOF_ICELAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK=y
+CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL=y
+CONFIG_SND_SOC_SOF_JASPERLAKE=m
+CONFIG_SND_SOC_SOF_JASPERLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_MERRIFIELD_SUPPORT=y
+CONFIG_SND_SOC_SOF_METEORLAKE=m
+CONFIG_SND_SOC_SOF_OPTIONS=m
+CONFIG_SND_SOC_SOF_PCI=m
+CONFIG_SND_SOC_SOF_TIGERLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_TOPLEVEL=y
+CONFIG_SND_SOC_WM8804_I2C=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PRINTK=y
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SND_X86=y
+CONFIG_SND_XEN_FRONTEND=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SOLARIS_X86_PARTITION=y
+CONFIG_SONYPI_COMPAT=y
+CONFIG_SONY_FF=y
+CONFIG_SONY_LAPTOP=m
+CONFIG_SOUND=m
+CONFIG_SOUNDWIRE=m
+CONFIG_SOUNDWIRE_AMD=m
+CONFIG_SOUNDWIRE_INTEL=m
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SP5100_TCO=m
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SPECULATION_MITIGATIONS=y
+CONFIG_SPI=y
+CONFIG_SPI_AMD=m
+CONFIG_SPI_PXA2XX=m
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACK_TRACER=y
+CONFIG_STACK_VALIDATION=y
+CONFIG_STANDALONE=y
+CONFIG_STE10XP=m
+CONFIG_STM=m
+CONFIG_STMMAC_ETH=m
+CONFIG_STM_DUMMY=m
+CONFIG_STM_PROTO_BASIC=m
+CONFIG_STM_PROTO_SYS_T=m
+CONFIG_STM_SOURCE_CONSOLE=m
+CONFIG_STM_SOURCE_FTRACE=m
+CONFIG_STM_SOURCE_HEARTBEAT=m
+CONFIG_STRICT_DEVMEM=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUN_PARTITION=y
+CONFIG_SUSPEND=y
+CONFIG_SWAP=y
+CONFIG_SWIOTLB=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNCLINKMP=m
+CONFIG_SYNCLINK_GT=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSTEM_BLACKLIST_HASH_LIST=""
+CONFIG_SYSTEM_BLACKLIST_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_SYSVIPC=y
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=m
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_ATMEL=m
+CONFIG_TCG_CRB=y
+CONFIG_TCG_INFINEON=m
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TIS_I2C_ATMEL=m
+CONFIG_TCG_TIS_I2C_INFINEON=m
+CONFIG_TCG_TIS_I2C_NUVOTON=m
+CONFIG_TCG_TIS_ST33ZP24_I2C=m
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=m
+CONFIG_TCM_IBLOCK=m
+CONFIG_TCM_PSCSI=m
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TDX_GUEST_DRIVER=m
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_FPU=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_LIVEPATCH=m
+CONFIG_TEST_STRING_HELPERS=m
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
+CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_GOV_USER_SPACE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_THINKPAD_ACPI=m
+CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y
+CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y
+CONFIG_THINKPAD_ACPI_VIDEO=y
+CONFIG_THINKPAD_LMI=m
+CONFIG_TIFM_7XX1=m
+CONFIG_TIFM_CORE=m
+CONFIG_TIGON3=m
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TOPSTAR_LAPTOP=m
+CONFIG_TORTURE_TEST=m
+CONFIG_TOSHIBA_BT_RFKILL=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRANSPARENT_HUGEPAGE=y
+CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=y
+CONFIG_TUN=m
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_HD3SS3220=m
+CONFIG_TYPEC_MT6360=y
+CONFIG_TYPEC_MUX_INTEL_PMC=y
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_QCOM_PMIC=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_STUSB160X=m
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UBSAN=y
+CONFIG_UBSAN_SANITIZE_ALL=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UDF_FS=m
+CONFIG_UHID=m
+CONFIG_UID16=y
+CONFIG_UIO=m
+CONFIG_UIO_AEC=m
+CONFIG_UIO_CIF=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PCI_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UIO_SERCOS3=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX=y
+CONFIG_UNIXWARE_DISKLABEL=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UNWINDER_ORC=y
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_KUNIT_TEST=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CONN_GPIO=y
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FEW_INIT_RETRIES=y
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LED_TRIG=y
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_HUAWEI_CDC_NCM=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_ROLES_INTEL_XHCI=y
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_SPEEDTOUCH=m
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_ISD200=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_SUPPORT=y
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_DBGCAP=y
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XHCI_PLATFORM=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UV_MMTIMER=m
+CONFIG_UV_SYSFS=m
+CONFIG_UWB=m
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_UWB_WHCI=m
+CONFIG_VDPA=m
+CONFIG_VDPA_SIM=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFAT_FS=m
+CONFIG_VFIO=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_MDEV=m
+CONFIG_VFIO_MDEV_DEVICE=m
+CONFIG_VFIO_NOIOMMU=y
+CONFIG_VFIO_PCI=m
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VGA_CONSOLE=y
+CONFIG_VGA_SWITCHEROO=y
+CONFIG_VHOST_NET=m
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIA_WDT=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MEM=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI=y
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VDPA=m
+CONFIG_VIRTIO_VSOCKETS=m
 CONFIG_VIRTUALIZATION=y
-CONFIG_KVM=m
-CONFIG_KVM_INTEL=m
-CONFIG_KVM_AMD=m
-CONFIG_KVM_MMU_AUDIT=y
-# CONFIG_KVM_DEVICE_ASSIGNMENT is not set
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_STRNCPY_FROM_USER=y
-CONFIG_GENERIC_STRNLEN_USER=y
-CONFIG_GENERIC_FIND_FIRST_BIT=y
-CONFIG_GENERIC_PCI_IOMAP=y
-CONFIG_GENERIC_IOMAP=y
-CONFIG_GENERIC_IO=y
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=m
-CONFIG_CRC8=m
-CONFIG_RANDOM32_SELFTEST=y
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=y
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
+CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VITESSE_PHY=m
+CONFIG_VLAN_8021Q=m
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMD=y
+CONFIG_VMWARE_BALLOON=m
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VMWARE_VMCI=m
+CONFIG_VMWARE_VMCI_VSOCKETS=m
+CONFIG_VMXNET3=m
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WDAT_WDT=m
+CONFIG_WDTPCI=m
+CONFIG_WIRELESS=y
+CONFIG_WLAN=y
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_WMI_BMOF=m
+CONFIG_X86_5LEVEL=y
+CONFIG_X86_64_ACPI_NUMA=y
+CONFIG_X86_ACPI_CPUFREQ=m
+CONFIG_X86_ACPI_CPUFREQ_CPB=y
+CONFIG_X86_AMD_FREQ_SENSITIVITY=m
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_AMD_PSTATE=y
+CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
+CONFIG_X86_CHECK_BIOS_CORRUPTION=y
+CONFIG_X86_CMPXCHG64=y
+CONFIG_X86_CPA_STATISTICS=y
+CONFIG_X86_CPUID=y
+CONFIG_X86_CPU_RESCTRL=y
+CONFIG_X86_DEBUG_FPU=y
+CONFIG_X86_DECODER_SELFTEST=y
+CONFIG_X86_EXTENDED_PLATFORM=y
+CONFIG_X86_INTEL_LPSS=y
+CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
+CONFIG_X86_INTEL_PSTATE=y
+CONFIG_X86_MCE=y
+CONFIG_X86_MCELOG_LEGACY=y
+CONFIG_X86_MCE_AMD=y
+CONFIG_X86_MCE_INJECT=m
+CONFIG_X86_MCE_INTEL=y
+CONFIG_X86_MPPARSE=y
+CONFIG_X86_MSR=y
+CONFIG_X86_P4_CLOCKMOD=m
+CONFIG_X86_PAT=y
+CONFIG_X86_PKG_TEMP_THERMAL=m
+CONFIG_X86_PLATFORM_DEVICES=y
+CONFIG_X86_PLATFORM_DRIVERS_INTEL=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_X86_PM_TIMER=y
+CONFIG_X86_POWERNOW_K8=m
+CONFIG_X86_PTDUMP=y
+CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
+CONFIG_X86_RESERVE_LOW=64
+CONFIG_X86_SGX=y
+CONFIG_X86_SGX_KVM=y
+CONFIG_X86_UV=y
+CONFIG_X86_X2APIC=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN=y
+CONFIG_XENFS=m
+CONFIG_XEN_BLKDEV_FRONTEND=m
+CONFIG_XEN_COMPAT_XENFS=y
+CONFIG_XEN_DEV_EVTCHN=m
+CONFIG_XEN_NETDEV_FRONTEND=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XEN_SAVE_RESTORE=y
+CONFIG_XEN_SCRUB_PAGES=y
+CONFIG_XEN_SYS_HYPERVISOR=y
+CONFIG_XEN_WDT=m
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XFS_WARN=y
+CONFIG_XILINX_GMII2RGMII=m
 CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
 CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_REED_SOLOMON=m
-CONFIG_REED_SOLOMON_ENC8=y
-CONFIG_REED_SOLOMON_DEC8=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_BTREE=y
-CONFIG_INTERVAL_TREE=y
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_IOMEM=y
-CONFIG_HAS_IOPORT=y
-CONFIG_HAS_DMA=y
-CONFIG_DMA_VIRT_OPS=y
-CONFIG_CHECK_SIGNATURE=y
-CONFIG_CPUMASK_OFFSTACK=y
-CONFIG_CPU_RMAP=y
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-CONFIG_IRQ_POLL=y
-CONFIG_MPILIB=y
-CONFIG_SIGNATURE=y
-CONFIG_OID_REGISTRY=y
-CONFIG_UCS2_STRING=y
-CONFIG_SG_POOL=y
-CONFIG_ARCH_HAS_PMEM_API=y
-CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
-CONFIG_ARCH_HAS_UACCESS_MCSAFE=y
-CONFIG_ARCH_HAS_MMIO_FLUSH=y
-CONFIG_PARMAN=m
-CONFIG_SBITMAP=y
-# CONFIG_RH_KABI_SIZE_ALIGN_CHECKS is not set
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZBUD=y
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZPOOL=y
+CONFIG_ZRAM=m
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
+CONFIG_ZSWAP=y
diff --git a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-x86_64.config b/kernel-source/thirdparty/kernel/SOURCES/kernel-x86_64.config
similarity index 62%
rename from kernel-source/thirdparty/SOURCES/kernel-3.10.0-x86_64.config
rename to kernel-source/thirdparty/kernel/SOURCES/kernel-x86_64.config
index 49b49c7..f4f3cd9 100644
--- a/kernel-source/thirdparty/SOURCES/kernel-3.10.0-x86_64.config
+++ b/kernel-source/thirdparty/kernel/SOURCES/kernel-x86_64.config
@@ -1,1033 +1,4080 @@
 # x86_64
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/x86_64 3.10.0 Kernel Configuration
-#
-CONFIG_64BIT=y
-CONFIG_X86_64=y
-CONFIG_X86=y
-CONFIG_INSTRUCTION_DECODER=y
-CONFIG_OUTPUT_FORMAT="elf64-x86-64"
-CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_MMU=y
-CONFIG_ARCH_MMAP_RND_BITS_MIN=28
-CONFIG_ARCH_MMAP_RND_BITS_MAX=32
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
-CONFIG_NEED_DMA_MAP_STATE=y
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_GENERIC_ISA_DMA=y
-CONFIG_GENERIC_BUG=y
-CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_ARCH_MAY_HAVE_PC_FDC=y
-CONFIG_RWSEM_XCHGADD_ALGORITHM=y
-CONFIG_GENERIC_CALIBRATE_DELAY=y
-CONFIG_ARCH_HAS_CPU_RELAX=y
-CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
-CONFIG_ARCH_HAS_CPU_AUTOPROBE=y
-CONFIG_HAVE_SETUP_PER_CPU_AREA=y
-CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
-CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_ARCH_SUSPEND_POSSIBLE=y
-CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
-CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
-CONFIG_ZONE_DMA32=y
-CONFIG_AUDIT_ARCH=y
-CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_HAVE_INTEL_TXT=y
-CONFIG_X86_INTEL_UMIP=y
-CONFIG_X86_INTEL_MPX=y
-CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
-CONFIG_X86_64_SMP=y
-CONFIG_X86_HT=y
-CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
-CONFIG_ARCH_SUPPORTS_UPROBES=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_IRQ_WORK=y
-CONFIG_BUILDTIME_EXTABLE_SORT=y
-
-#
-# General setup
-#
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_HAVE_KERNEL_GZIP=y
-CONFIG_HAVE_KERNEL_BZIP2=y
-CONFIG_HAVE_KERNEL_LZMA=y
-CONFIG_HAVE_KERNEL_XZ=y
-CONFIG_HAVE_KERNEL_LZO=y
-CONFIG_KERNEL_GZIP=y
+# CONFIG_60XX_WDT is not set
+# CONFIG_6LOWPAN_DEBUGFS is not set
+# CONFIG_6LOWPAN_NHC is not set
+# CONFIG_8139TOO_PIO is not set
+# CONFIG_8139TOO_TUNE_TWISTER is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+# CONFIG_ABP060MG is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_ACER_WIRELESS is not set
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_ACPI_ALS is not set
+# CONFIG_ACPI_APEI_ERST_DEBUG is not set
+# CONFIG_ACPI_CONFIGFS is not set
+# CONFIG_ACPI_CUSTOM_METHOD is not set
+# CONFIG_ACPI_DEBUG is not set
+# CONFIG_ACPI_DEBUGGER is not set
+# CONFIG_ACPI_DEBUGGER_USER is not set
+# CONFIG_ACPI_PROCFS_POWER is not set
+# CONFIG_ACPI_TOSHIBA is not set
+# CONFIG_ACQUIRE_WDT is not set
+# CONFIG_AD2S1200 is not set
+# CONFIG_AD2S1210 is not set
+# CONFIG_AD2S90 is not set
+# CONFIG_AD5064 is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5272 is not set
+# CONFIG_AD5360 is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5421 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5449 is not set
+# CONFIG_AD5504 is not set
+# CONFIG_AD5592R is not set
+# CONFIG_AD5593R is not set
+# CONFIG_AD5624R_SPI is not set
+# CONFIG_AD5686_SPI is not set
+# CONFIG_AD5696_I2C is not set
+# CONFIG_AD5755 is not set
+# CONFIG_AD5761 is not set
+# CONFIG_AD5764 is not set
+# CONFIG_AD5791 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7192 is not set
+# CONFIG_AD7266 is not set
+# CONFIG_AD7280 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7298 is not set
+# CONFIG_AD7303 is not set
+# CONFIG_AD7476 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
+# CONFIG_AD7766 is not set
+# CONFIG_AD7780 is not set
+# CONFIG_AD7791 is not set
+# CONFIG_AD7793 is not set
+# CONFIG_AD7816 is not set
+# CONFIG_AD7887 is not set
+# CONFIG_AD7923 is not set
+# CONFIG_AD799X is not set
+# CONFIG_AD8366 is not set
+# CONFIG_AD8801 is not set
+# CONFIG_AD9523 is not set
+# CONFIG_AD9832 is not set
+# CONFIG_AD9834 is not set
+# CONFIG_ADE7854 is not set
+# CONFIG_ADF4350 is not set
+# CONFIG_ADFS_FS is not set
+# CONFIG_ADIS16060 is not set
+# CONFIG_ADIS16080 is not set
+# CONFIG_ADIS16130 is not set
+# CONFIG_ADIS16136 is not set
+# CONFIG_ADIS16201 is not set
+# CONFIG_ADIS16203 is not set
+# CONFIG_ADIS16209 is not set
+# CONFIG_ADIS16240 is not set
+# CONFIG_ADIS16260 is not set
+# CONFIG_ADIS16400 is not set
+# CONFIG_ADIS16480 is not set
+# CONFIG_ADJD_S311 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADVANTECH_WDT is not set
+# CONFIG_ADXL345_I2C is not set
+# CONFIG_ADXL345_SPI is not set
+# CONFIG_ADXRS450 is not set
+# CONFIG_AFE4403 is not set
+# CONFIG_AFE4404 is not set
+# CONFIG_AFFS_FS is not set
+# CONFIG_AFS_FS is not set
+# CONFIG_AF_KCM is not set
+# CONFIG_AF_RXRPC is not set
+# CONFIG_AGP is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_AK09911 is not set
+# CONFIG_AK8975 is not set
+# CONFIG_AL3320A is not set
+# CONFIG_ALIENWARE_WMI is not set
+# CONFIG_ALTERA_FREEZE_BRIDGE is not set
+# CONFIG_ALTERA_MBOX is not set
+# CONFIG_ALTERA_MSGDMA is not set
+# CONFIG_ALTERA_PR_IP_CORE is not set
+# CONFIG_ALTERA_TSE is not set
+# CONFIG_AM2315 is not set
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set
+# CONFIG_AMD_XGBE_DCB is not set
+# CONFIG_ANDROID is not set
+# CONFIG_APDS9300 is not set
+# CONFIG_APDS9960 is not set
+# CONFIG_APPLICOM is not set
+# CONFIG_AR5523 is not set
+# CONFIG_ARCH_MEMORY_PROBE is not set
+# CONFIG_ARCNET is not set
+# CONFIG_AS3935 is not set
+# CONFIG_ASUS_WIRELESS is not set
+# CONFIG_ATALK is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_ATA_OVER_ETH is not set
+# CONFIG_ATH10K_DEBUG is not set
+# CONFIG_ATH10K_SDIO is not set
+# CONFIG_ATH10K_SPECTRAL is not set
+# CONFIG_ATH10K_TRACING is not set
+# CONFIG_ATH10K_USB is not set
+# CONFIG_ATH5K is not set
+# CONFIG_ATH5K_PCI is not set
+# CONFIG_ATH6KL is not set
+# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
+# CONFIG_ATH9K_COMMON_SPECTRAL is not set
+# CONFIG_ATH9K_DYNACK is not set
+# CONFIG_ATH9K_HTC_DEBUGFS is not set
+# CONFIG_ATH9K_HWRNG is not set
+# CONFIG_ATH9K_STATION_STATISTICS is not set
+# CONFIG_ATH_DEBUG is not set
+# CONFIG_ATH_TRACEPOINTS is not set
+# CONFIG_ATLAS_PH_SENSOR is not set
+# CONFIG_ATM_BR2684_IPFILTER is not set
+# CONFIG_ATM_CLIP_NO_ICMP is not set
+# CONFIG_ATM_DRIVERS is not set
+# CONFIG_ATM_MPOA is not set
+# CONFIG_ATP is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_B43 is not set
+# CONFIG_B43LEGACY is not set
+# CONFIG_B44 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_ARCXCNN is not set
+# CONFIG_BACKLIGHT_BD6107 is not set
+# CONFIG_BACKLIGHT_GENERIC is not set
+# CONFIG_BACKLIGHT_GPIO is not set
+# CONFIG_BACKLIGHT_LM3630A is not set
+# CONFIG_BACKLIGHT_LM3639 is not set
+# CONFIG_BACKLIGHT_LV5207LP is not set
+# CONFIG_BACKLIGHT_PM8941_WLED is not set
+# CONFIG_BACKLIGHT_PWM is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_BATTERY_BQ27XXX is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BCACHE is not set
+# CONFIG_BCMA_DEBUG is not set
+# CONFIG_BCMA_HOST_SOC is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BCM_KONA_USB2_PHY is not set
+# CONFIG_BE2NET_BE2 is not set
+# CONFIG_BE2NET_BE3 is not set
+# CONFIG_BEFS_FS is not set
+# CONFIG_BFQ_CGROUP_DEBUG is not set
+# CONFIG_BFS_FS is not set
+# CONFIG_BH1750 is not set
+# CONFIG_BH1780 is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
+# CONFIG_BLK_DEV_CRYPTOLOOP is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_DRBD is not set
+# CONFIG_BLK_DEV_FD is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_DEV_RSXX is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+# CONFIG_BLK_DEV_THROTTLING_LOW is not set
+# CONFIG_BLK_DEV_UMEM is not set
+# CONFIG_BLK_DEV_ZONED is not set
+# CONFIG_BLK_SED_OPAL is not set
+# CONFIG_BLK_WBT_SQ is not set
+# CONFIG_BMA180 is not set
+# CONFIG_BMA220 is not set
+# CONFIG_BMC150_ACCEL is not set
+# CONFIG_BMC150_MAGN_I2C is not set
+# CONFIG_BMC150_MAGN_SPI is not set
+# CONFIG_BMG160 is not set
+# CONFIG_BMI160_I2C is not set
+# CONFIG_BMI160_SPI is not set
+# CONFIG_BMP280 is not set
+# CONFIG_BNA is not set
+# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
+# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
+# CONFIG_BPFILTER is not set
+# CONFIG_BRCMDBG is not set
+# CONFIG_BRCM_TRACING is not set
+# CONFIG_BTRFS_FS is not set
+# CONFIG_BT_6LOWPAN is not set
+# CONFIG_BT_HCIUART_AG6XX is not set
+# CONFIG_BT_HCIUART_INTEL is not set
+# CONFIG_BT_HCIUART_MRVL is not set
+# CONFIG_BT_LEDS is not set
+# CONFIG_BT_SELFTEST is not set
+# CONFIG_C2PORT is not set
+# CONFIG_CACHEFILES_DEBUG is not set
+# CONFIG_CACHEFILES_HISTOGRAM is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_CAIF is not set
+# CONFIG_CALGARY_IOMMU is not set
+# CONFIG_CAN_CC770_ISA is not set
+# CONFIG_CAN_DEBUG_DEVICES is not set
+# CONFIG_CAN_GRCAN is not set
+# CONFIG_CAN_GS_USB is not set
+# CONFIG_CAN_HI311X is not set
+# CONFIG_CAN_IFI_CANFD is not set
+# CONFIG_CAN_MCBA_USB is not set
+# CONFIG_CAN_MCP251X is not set
+# CONFIG_CAN_M_CAN is not set
+# CONFIG_CAN_PEAK_PCIEFD is not set
+# CONFIG_CAN_SJA1000_ISA is not set
+# CONFIG_CAN_VXCAN is not set
+# CONFIG_CAN_XILINXCAN is not set
+# CONFIG_CAPI_EICON is not set
+# CONFIG_CAPI_TRACE is not set
+# CONFIG_CARL9170 is not set
+# CONFIG_CB710_DEBUG is not set
+# CONFIG_CCS811 is not set
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+# CONFIG_CEPH_FSCACHE is not set
+# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
+# CONFIG_CFG80211_DEBUGFS is not set
+# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_WEXT is not set
+# CONFIG_CGROUP_DEBUG is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24257 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_BQ25890 is not set
+# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_LTC3651 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_RT9455 is not set
+# CONFIG_CHARGER_SBS is not set
+# CONFIG_CHASH_SELFTEST is not set
+# CONFIG_CHASH_STATS is not set
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4_DCB is not set
+# CONFIG_CHROMEOS_TBMC is not set
+# CONFIG_CHROME_PLATFORMS is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
+# CONFIG_CIFS_FSCACHE is not set
+# CONFIG_CIFS_SMB311 is not set
+# CONFIG_CIFS_STATS2 is not set
+# CONFIG_CM32181 is not set
+# CONFIG_CM3232 is not set
+# CONFIG_CM3323 is not set
+# CONFIG_CM36651 is not set
+# CONFIG_CMA is not set
+# CONFIG_CMDLINE_BOOL is not set
+# CONFIG_CMDLINE_PARTITION is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_COMEDI is not set
+# CONFIG_COMMON_CLK_CDCE706 is not set
+# CONFIG_COMMON_CLK_CS2000_CP is not set
+# CONFIG_COMMON_CLK_PWM is not set
+# CONFIG_COMMON_CLK_SI5351 is not set
+# CONFIG_COMMON_CLK_SI544 is not set
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_COMPAT_VDSO is not set
+# CONFIG_COMPILE_TEST is not set
+# CONFIG_CONTEXT_TRACKING_FORCE is not set
+# CONFIG_CPA_DEBUG is not set
+# CONFIG_CPU5_WDT is not set
+# CONFIG_CPUFREQ_DT is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
+# CONFIG_CPU_IDLE_GOV_LADDER is not set
+# CONFIG_CPU_THERMAL is not set
+# CONFIG_CRAMFS_MTD is not set
+# CONFIG_CRC32_BIT is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC4 is not set
+# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
+# CONFIG_CRYPTO_842 is not set
+# CONFIG_CRYPTO_AEGIS128 is not set
+# CONFIG_CRYPTO_AEGIS128L is not set
+# CONFIG_CRYPTO_AEGIS128L_AESNI_SSE2 is not set
+# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set
+# CONFIG_CRYPTO_AEGIS256 is not set
+# CONFIG_CRYPTO_AEGIS256_AESNI_SSE2 is not set
+# CONFIG_CRYPTO_AES_TI is not set
+# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set
+# CONFIG_CRYPTO_DEV_CCREE is not set
+# CONFIG_CRYPTO_DEV_CHELSIO_TLS is not set
+# CONFIG_CRYPTO_DEV_VIRTIO is not set
+# CONFIG_CRYPTO_KEYWRAP is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
+# CONFIG_CRYPTO_MORUS1280 is not set
+# CONFIG_CRYPTO_MORUS1280_AVX2 is not set
+# CONFIG_CRYPTO_MORUS1280_SSE2 is not set
+# CONFIG_CRYPTO_MORUS640 is not set
+# CONFIG_CRYPTO_MORUS640_SSE2 is not set
+# CONFIG_CRYPTO_SKEIN is not set
+# CONFIG_CRYPTO_SM3 is not set
+# CONFIG_CRYPTO_SM4 is not set
+# CONFIG_CRYPTO_SM4_ARM64_CE is not set
+# CONFIG_CRYPTO_SPECK is not set
+# CONFIG_CRYPTO_ZSTD is not set
+# CONFIG_CXD2880_SPI_DRV is not set
+# CONFIG_CX_ECAT is not set
+# CONFIG_CYZ_INTR is not set
+# CONFIG_DA280 is not set
+# CONFIG_DA311 is not set
+# CONFIG_DDR is not set
+# CONFIG_DEBUG_ATOMIC_SLEEP is not set
+# CONFIG_DEBUG_BLK_CGROUP is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_CREDENTIALS is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_ENTRY is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_GPIO is not set
+# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
+# CONFIG_DEBUG_INFO_REDUCED is not set
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_KERNEL_DC is not set
+# CONFIG_DEBUG_KMEMLEAK is not set
+# CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set
+# CONFIG_DEBUG_KMEMLEAK_TEST is not set
+# CONFIG_DEBUG_KOBJECT is not set
+# CONFIG_DEBUG_LOCKDEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+# CONFIG_DEBUG_LOCK_ALLOC is not set
+# CONFIG_DEBUG_MUTEXES is not set
+# CONFIG_DEBUG_NMI_SELFTEST is not set
+# CONFIG_DEBUG_NOTIFIERS is not set
+# CONFIG_DEBUG_OBJECTS is not set
+# CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT is not set
+# CONFIG_DEBUG_OBJECTS_FREE is not set
+# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set
+# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set
+# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
+# CONFIG_DEBUG_OBJECTS_TIMERS is not set
+# CONFIG_DEBUG_OBJECTS_WORK is not set
+# CONFIG_DEBUG_PAGEALLOC is not set
+# CONFIG_DEBUG_PAGE_REF is not set
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+# CONFIG_DEBUG_PER_CPU_MAPS is not set
+# CONFIG_DEBUG_PINCTRL is not set
+# CONFIG_DEBUG_PI_LIST is not set
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_RT_MUTEXES is not set
+# CONFIG_DEBUG_RWSEMS is not set
+# CONFIG_DEBUG_SG is not set
+# CONFIG_DEBUG_SLAB is not set
+# CONFIG_DEBUG_SPINLOCK is not set
+# CONFIG_DEBUG_STACK_USAGE is not set
+# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_DEBUG_TLBFLUSH is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_VM is not set
+# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
+# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
+# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
+# CONFIG_DEBUG_WX is not set
+# CONFIG_DECNET is not set
+# CONFIG_DEFAULT_CODEL is not set
+# CONFIG_DEFAULT_FQ is not set
+# CONFIG_DEFAULT_PFIFO_FAST is not set
+# CONFIG_DEFAULT_RENO is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+# CONFIG_DEFAULT_SFQ is not set
+# CONFIG_DELL_SMBIOS_SMM is not set
+# CONFIG_DEVKMEM is not set
+# CONFIG_DGNC is not set
+# CONFIG_DHT11 is not set
+# CONFIG_DMADEVICES_DEBUG is not set
+# CONFIG_DMADEVICES_VDEBUG is not set
+# CONFIG_DMARD09 is not set
+# CONFIG_DMARD10 is not set
+# CONFIG_DMA_API_DEBUG is not set
+# CONFIG_DMA_CMA is not set
+# CONFIG_DMA_FENCE_TRACE is not set
+# CONFIG_DMA_RESTRICTED_POOL is not set
+# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
+# CONFIG_DM_UNSTRIPED is not set
+# CONFIG_DM_VERITY_FEC is not set
+# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
+# CONFIG_DM_ZONED is not set
+# CONFIG_DPTF_PCH_FIVR is not set
+# CONFIG_DRAGONRISE_FF is not set
+# CONFIG_DRM_AMDGPU_CIK is not set
+# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
+# CONFIG_DRM_AMDGPU_SI is not set
+# CONFIG_DRM_AMD_DC_FBC is not set
+# CONFIG_DRM_ANALOGIX_ANX78XX is not set
+# CONFIG_DRM_ARCPGU is not set
+# CONFIG_DRM_CDNS_DSI is not set
+# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
+# CONFIG_DRM_DEBUG_SELFTEST is not set
+# CONFIG_DRM_DP_CEC is not set
+# CONFIG_DRM_DUMB_VGA_DAC is not set
+# CONFIG_DRM_HDLCD is not set
+# CONFIG_DRM_HISI_HIBMC is not set
+# CONFIG_DRM_HISI_KIRIN is not set
+# CONFIG_DRM_I2C_ADV7511 is not set
+# CONFIG_DRM_I2C_NXP_TDA9950 is not set
+# CONFIG_DRM_I2C_NXP_TDA998X is not set
+# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
+# CONFIG_DRM_LEGACY is not set
+# CONFIG_DRM_LVDS_ENCODER is not set
+# CONFIG_DRM_MALI_DISPLAY is not set
+# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
+# CONFIG_DRM_MXSFB is not set
+# CONFIG_DRM_NXP_PTN3460 is not set
+# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
+# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
+# CONFIG_DRM_PANEL_LVDS is not set
+# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
+# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
+# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
+# CONFIG_DRM_PANEL_SIMPLE is not set
+# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
+# CONFIG_DRM_PARADE_PS8622 is not set
+# CONFIG_DRM_PL111 is not set
+# CONFIG_DRM_RCAR_DW_HDMI is not set
+# CONFIG_DRM_RCAR_LVDS is not set
+# CONFIG_DRM_SII902X is not set
+# CONFIG_DRM_SII9234 is not set
+# CONFIG_DRM_SIL_SII8620 is not set
+# CONFIG_DRM_THINE_THC63LVD1024 is not set
+# CONFIG_DRM_TINYDRM is not set
+# CONFIG_DRM_TI_TFP410 is not set
+# CONFIG_DRM_TOSHIBA_TC358767 is not set
+# CONFIG_DRM_USE_DYNAMIC_DEBUG is not set
+# CONFIG_DRM_VGEM is not set
+# CONFIG_DRM_XEN is not set
+# CONFIG_DS1682 is not set
+# CONFIG_DS1803 is not set
+# CONFIG_DS4424 is not set
+# CONFIG_DSCC4 is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_DVB_AS102 is not set
+# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
+# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
+# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
+# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
+# CONFIG_DVB_MMAP is not set
+# CONFIG_DVB_NETUP_UNIDVB is not set
+# CONFIG_DVB_PLATFORM_DRIVERS is not set
+# CONFIG_DVB_PT3 is not set
+# CONFIG_DVB_SMIPCIE is not set
+# CONFIG_DVB_ULE_DEBUG is not set
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
+# CONFIG_DVB_USB_DVBSKY is not set
+# CONFIG_DVB_USB_ZD1301 is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_E100 is not set
+# CONFIG_EBC_C384_WDT is not set
+# CONFIG_ECHO is not set
+# CONFIG_ECRYPT_FS is not set
+# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set
+# CONFIG_EDAC_BLUEFIELD is not set
+# CONFIG_EDAC_DEBUG is not set
+# CONFIG_EDD_OFF is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_EEPROM_AT24 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_EE1004 is not set
+# CONFIG_EEPROM_IDT_89HPESX is not set
+# CONFIG_EFI_BOOTLOADER_CONTROL is not set
+# CONFIG_EFI_CAPSULE_LOADER is not set
+# CONFIG_EFI_FAKE_MEMMAP is not set
+# CONFIG_EFI_PGT_DUMP is not set
+# CONFIG_EFI_TEST is not set
+# CONFIG_EFS_FS is not set
+# CONFIG_EMBEDDED is not set
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_EUROTECH_WDT is not set
+# CONFIG_EVM_ADD_XATTRS is not set
+# CONFIG_EVM_LOAD_X509 is not set
+# CONFIG_EXPERT is not set
+# CONFIG_EXT2_FS is not set
+# CONFIG_EXT3_FS is not set
+# CONFIG_EXT4_DEBUG is not set
+# CONFIG_EXT4_ENCRYPTION is not set
+# CONFIG_EXTCON is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_FAILSLAB is not set
+# CONFIG_FAIL_IO_TIMEOUT is not set
+# CONFIG_FAIL_MAKE_REQUEST is not set
+# CONFIG_FAIL_MMC_REQUEST is not set
+# CONFIG_FAIL_PAGE_ALLOC is not set
+# CONFIG_FARSYNC is not set
+# CONFIG_FAT_DEFAULT_UTF8 is not set
+# CONFIG_FAULT_INJECTION is not set
+# CONFIG_FAULT_INJECTION_DEBUG_FS is not set
+# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_IBM_GXT4500 is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_MATROX_G is not set
+# CONFIG_FB_MATROX_I2C is not set
+# CONFIG_FB_MATROX_MILLENIUM is not set
+# CONFIG_FB_MATROX_MYSTIQUE is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_MODE_HELPERS is not set
+# CONFIG_FB_N411 is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_NVIDIA_DEBUG is not set
+# CONFIG_FB_NVIDIA_I2C is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_RADEON_DEBUG is not set
+# CONFIG_FB_RADEON_I2C is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIMPLE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SM712 is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VGA16 is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FCOE is not set
+# CONFIG_FDDI is not set
+# CONFIG_FEALNX is not set
+# CONFIG_FIND_BIT_BENCHMARK is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FMC is not set
+# CONFIG_FONTS is not set
+# CONFIG_FPGA is not set
+# CONFIG_FPGA_BRIDGE is not set
+# CONFIG_FPGA_DFL is not set
+# CONFIG_FPGA_DFL_AFU is not set
+# CONFIG_FPGA_DFL_FME is not set
+# CONFIG_FPGA_DFL_FME_BRIDGE is not set
+# CONFIG_FPGA_DFL_FME_MGR is not set
+# CONFIG_FPGA_DFL_FME_REGION is not set
+# CONFIG_FPGA_DFL_PCI is not set
+# CONFIG_FPGA_MGR_ALTERA_CVP is not set
+# CONFIG_FPGA_MGR_ALTERA_PS_SPI is not set
+# CONFIG_FPGA_REGION is not set
+# CONFIG_FRAME_POINTER is not set
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_HISTOGRAM is not set
+# CONFIG_FSCACHE_OBJECT_LIST is not set
+# CONFIG_FSI is not set
+# CONFIG_FS_ENCRYPTION is not set
+# CONFIG_FTL is not set
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_FUSION_CTL is not set
+# CONFIG_FUSION_FC is not set
+# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
+# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+# CONFIG_GAMEPORT is not set
+# CONFIG_GART_IOMMU is not set
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_GDB_SCRIPTS is not set
+# CONFIG_GEMINI_ETHERNET is not set
+# CONFIG_GENERIC_ADC_BATTERY is not set
+# CONFIG_GENERIC_ADC_THERMAL is not set
+# CONFIG_GENERIC_IRQ_DEBUGFS is not set
+# CONFIG_GENERIC_PHY is not set
+# CONFIG_GENWQE is not set
+# CONFIG_GEN_RTC is not set
+# CONFIG_GIGASET_DEBUG is not set
+# CONFIG_GLOB_SELFTEST is not set
+# CONFIG_GOLDFISH is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+# CONFIG_GP2AP020A00F is not set
+# CONFIG_GPD_POCKET_FAN is not set
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_DWAPB is not set
+# CONFIG_GPIO_EXAR is not set
+# CONFIG_GPIO_F7188X is not set
+# CONFIG_GPIO_GENERIC_PLATFORM is not set
+# CONFIG_GPIO_GRGPIO is not set
+# CONFIG_GPIO_IT87 is not set
+# CONFIG_GPIO_LYNXPOINT is not set
+# CONFIG_GPIO_MAX3191X is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX7301 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_MB86S7X is not set
+# CONFIG_GPIO_MC33880 is not set
+# CONFIG_GPIO_MLXBF2 is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_MOCKUP is not set
+# CONFIG_GPIO_PCA953X is not set
+# CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_PCIE_IDIO_24 is not set
+# CONFIG_GPIO_PCI_IDIO_16 is not set
+# CONFIG_GPIO_PISOSR is not set
+# CONFIG_GPIO_RDC321X is not set
+# CONFIG_GPIO_SCH is not set
+# CONFIG_GPIO_SCH311X is not set
+# CONFIG_GPIO_TPIC2810 is not set
+# CONFIG_GPIO_VX855 is not set
+# CONFIG_GPIO_WATCHDOG is not set
+# CONFIG_GPIO_WINBOND is not set
+# CONFIG_GPIO_WS16C48 is not set
+# CONFIG_GPIO_XRA1403 is not set
+# CONFIG_GREENASIA_FF is not set
+# CONFIG_GREYBUS is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_GTP is not set
+# CONFIG_GUP_TEST is not set
+# CONFIG_HAMACHI is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_HDC100X is not set
+# CONFIG_HDLC_RAW_ETH is not set
+# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
+# CONFIG_HFSPLUS_FS is not set
+# CONFIG_HFS_FS is not set
+# CONFIG_HI8435 is not set
+# CONFIG_HID_ACCUTOUCH is not set
+# CONFIG_HID_ACRUX_FF is not set
+# CONFIG_HID_CP2112 is not set
+# CONFIG_HID_EMS_FF is not set
+# CONFIG_HID_GOOGLE_HAMMER is not set
+# CONFIG_HID_MAYFLASH is not set
+# CONFIG_HID_REDRAGON is not set
+# CONFIG_HID_RETRODE is not set
+# CONFIG_HID_STEAM is not set
+# CONFIG_HID_UDRAW_PS3 is not set
+# CONFIG_HIPPI is not set
+# CONFIG_HISAX_DEBUG is not set
+# CONFIG_HISAX_HFCUSB is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_HOLTEK_FF is not set
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+# CONFIG_HP03 is not set
+# CONFIG_HP206C is not set
+# CONFIG_HPET_MMAP_DEFAULT is not set
+# CONFIG_HPFS_FS is not set
+# CONFIG_HSI is not set
+# CONFIG_HSR is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTS221 is not set
+# CONFIG_HTU21 is not set
+# CONFIG_HWMON_DEBUG_CHIP is not set
+# CONFIG_HX711 is not set
+# CONFIG_HZ_100 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+# CONFIG_HZ_PERIODIC is not set
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
+# CONFIG_I2C_CADENCE is not set
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEMUX_PINCTRL is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_DESIGNWARE_SLAVE is not set
+# CONFIG_I2C_EMEV2 is not set
+# CONFIG_I2C_GPIO is not set
+# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
+# CONFIG_I2C_HIX5HD2 is not set
+# CONFIG_I2C_MLXBF is not set
+# CONFIG_I2C_MUX_GPIO is not set
+# CONFIG_I2C_MUX_GPMUX is not set
+# CONFIG_I2C_MUX_LTC4306 is not set
+# CONFIG_I2C_MUX_PCA9541 is not set
+# CONFIG_I2C_MUX_PCA954x is not set
+# CONFIG_I2C_MUX_REG is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SLAVE is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_XILINX is not set
+# CONFIG_IA32_AOUT is not set
+# CONFIG_IAQCORE is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_IBM_RTL is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_IDE is not set
+# CONFIG_IEEE802154_ADF7242 is not set
+# CONFIG_IEEE802154_AT86RF230 is not set
+# CONFIG_IEEE802154_ATUSB is not set
+# CONFIG_IEEE802154_CA8210 is not set
+# CONFIG_IEEE802154_CC2520 is not set
+# CONFIG_IEEE802154_MCR20A is not set
+# CONFIG_IEEE802154_MRF24J40 is not set
+# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
+# CONFIG_IIO_BUFFER_CB is not set
+# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
+# CONFIG_IIO_CONFIGFS is not set
+# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set
+# CONFIG_IIO_INTERRUPT_TRIGGER is not set
+# CONFIG_IIO_SSP_SENSORHUB is not set
+# CONFIG_IIO_ST_ACCEL_3AXIS is not set
+# CONFIG_IIO_ST_GYRO_3AXIS is not set
+# CONFIG_IIO_ST_LSM6DSX is not set
+# CONFIG_IIO_ST_MAGN_3AXIS is not set
+# CONFIG_IIO_ST_PRESS is not set
+# CONFIG_IIO_SW_DEVICE is not set
+# CONFIG_IIO_SW_TRIGGER is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
+# CONFIG_IKCONFIG is not set
+# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set
+# CONFIG_IMA_BLACKLIST_KEYRING is not set
+# CONFIG_IMA_LOAD_X509 is not set
+# CONFIG_IMA_NG_TEMPLATE is not set
+# CONFIG_IMA_TEMPLATE is not set
+# CONFIG_INA2XX_ADC is not set
+# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
+# CONFIG_INFINIBAND_HNS is not set
+# CONFIG_INFINIBAND_HNS_HIP08 is not set
+# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
+# CONFIG_INFINIBAND_MTHCA is not set
+# CONFIG_INFINIBAND_OCRDMA is not set
+# CONFIG_INFINIBAND_QIB is not set
+# CONFIG_INFTL is not set
+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set
+# CONFIG_INITRAMFS_COMPRESSION_LZO is not set
+# CONFIG_INITRAMFS_COMPRESSION_NONE is not set
+# CONFIG_INITRAMFS_COMPRESSION_XZ is not set
+# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
+# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
+# CONFIG_INPUT_AD714X is not set
+# CONFIG_INPUT_ADXL34X is not set
+# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
+# CONFIG_INPUT_BMA150 is not set
+# CONFIG_INPUT_CMA3000 is not set
+# CONFIG_INPUT_DRV260X_HAPTICS is not set
+# CONFIG_INPUT_DRV2665_HAPTICS is not set
+# CONFIG_INPUT_DRV2667_HAPTICS is not set
+# CONFIG_INPUT_E3X0_BUTTON is not set
+# CONFIG_INPUT_EVBUG is not set
+# CONFIG_INPUT_GPIO_BEEPER is not set
+# CONFIG_INPUT_GPIO_DECODER is not set
+# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
+# CONFIG_INPUT_IMS_PCU is not set
+# CONFIG_INPUT_JOYSTICK is not set
+# CONFIG_INPUT_KXTJ9 is not set
+# CONFIG_INPUT_MATRIXKMAP is not set
+# CONFIG_INPUT_MMA8450 is not set
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+# CONFIG_INPUT_PCF8574 is not set
+# CONFIG_INPUT_PWM_BEEPER is not set
+# CONFIG_INPUT_PWM_VIBRA is not set
+# CONFIG_INT3406_THERMAL is not set
+# CONFIG_INTEL_INT0002_VGPIO is not set
+# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
+# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
+# CONFIG_INTEL_MEI_TXE is not set
+# CONFIG_INTEL_MENLOW is not set
+# CONFIG_INTEL_MIC_BUS is not set
+# CONFIG_INTEL_PMC_IPC is not set
+# CONFIG_INTEL_PUNIT_IPC is not set
+# CONFIG_INTEL_SMARTCONNECT is not set
+# CONFIG_INTEL_SOC_DTS_THERMAL is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
+# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
+# CONFIG_INTERVAL_TREE_TEST is not set
+# CONFIG_INV_MPU6050_I2C is not set
+# CONFIG_INV_MPU6050_SPI is not set
+# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+# CONFIG_IOSF_MBI_DEBUG is not set
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_NONE is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_STRICT_DEVMEM is not set
+# CONFIG_IP6_NF_MATCH_SRH is not set
+# CONFIG_IP6_NF_TARGET_HL is not set
+# CONFIG_IPACK_BUS is not set
+# CONFIG_IPV6_ILA is not set
+# CONFIG_IPV6_SEG6_HMAC is not set
+# CONFIG_IPV6_SEG6_LWTUNNEL is not set
+# CONFIG_IPV6_SUBTREES is not set
+# CONFIG_IPW2100 is not set
+# CONFIG_IPW2200 is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_PNP is not set
+# CONFIG_IP_VS_DEBUG is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_IR_HIX5HD2 is not set
+# CONFIG_IR_IGORPLUGUSB is not set
+# CONFIG_IR_SHARP_DECODER is not set
+# CONFIG_IR_XMP_DECODER is not set
+# CONFIG_ISDN_PPP_BSDCOMP is not set
+# CONFIG_ISI is not set
+# CONFIG_ISL29125 is not set
+# CONFIG_ITG3200 is not set
+# CONFIG_IWL3945 is not set
+# CONFIG_IWL4965 is not set
+# CONFIG_IWLWIFI_BCAST_FILTERING is not set
+# CONFIG_IWLWIFI_DEBUG is not set
+# CONFIG_IWLWIFI_DEVICE_TRACING is not set
+# CONFIG_IXGB is not set
+# CONFIG_JAILHOUSE_GUEST is not set
+# CONFIG_JBD2_DEBUG is not set
+# CONFIG_JFFS2_FS is not set
+# CONFIG_JFS_FS is not set
+# CONFIG_JME is not set
+# CONFIG_JSA1212 is not set
+# CONFIG_KASAN is not set
+# CONFIG_KCOV is not set
+# CONFIG_KCSAN is not set
 # CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZ4 is not set
 # CONFIG_KERNEL_LZMA is not set
-# CONFIG_KERNEL_XZ is not set
 # CONFIG_KERNEL_LZO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_FHANDLE=y
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KEYBOARD_ADC is not set
+# CONFIG_KEYBOARD_ADP5588 is not set
+# CONFIG_KEYBOARD_ADP5589 is not set
+# CONFIG_KEYBOARD_CAP11XX is not set
+# CONFIG_KEYBOARD_DLINK_DIR685 is not set
+# CONFIG_KEYBOARD_GPIO is not set
+# CONFIG_KEYBOARD_GPIO_POLLED is not set
+# CONFIG_KEYBOARD_LKKBD is not set
+# CONFIG_KEYBOARD_LM8323 is not set
+# CONFIG_KEYBOARD_LM8333 is not set
+# CONFIG_KEYBOARD_MATRIX is not set
+# CONFIG_KEYBOARD_MAX7359 is not set
+# CONFIG_KEYBOARD_MCS is not set
+# CONFIG_KEYBOARD_MPR121 is not set
+# CONFIG_KEYBOARD_NEWTON is not set
+# CONFIG_KEYBOARD_OMAP4 is not set
+# CONFIG_KEYBOARD_OPENCORES is not set
+# CONFIG_KEYBOARD_QT1070 is not set
+# CONFIG_KEYBOARD_QT2160 is not set
+# CONFIG_KEYBOARD_SAMSUNG is not set
+# CONFIG_KEYBOARD_STOWAWAY is not set
+# CONFIG_KEYBOARD_SUNKBD is not set
+# CONFIG_KEYBOARD_TCA6416 is not set
+# CONFIG_KEYBOARD_TCA8418 is not set
+# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
+# CONFIG_KEYBOARD_XTKBD is not set
+# CONFIG_KEY_DH_OPERATIONS is not set
+# CONFIG_KGDB_TESTS_ON_BOOT is not set
+# CONFIG_KMX61 is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_KS7010 is not set
+# CONFIG_KVM_DEBUG_FS is not set
+# CONFIG_KVM_XEN is not set
+# CONFIG_KXCJK1013 is not set
+# CONFIG_KXSD9 is not set
+# CONFIG_LANMEDIA is not set
+# CONFIG_LAPB is not set
+# CONFIG_LATENCYTOP is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_LCD_AMS369FG06 is not set
+# CONFIG_LCD_HX8357 is not set
+# CONFIG_LCD_ILI922X is not set
+# CONFIG_LCD_ILI9320 is not set
+# CONFIG_LCD_L4F00242T03 is not set
+# CONFIG_LCD_LD9040 is not set
+# CONFIG_LCD_LMS283GF05 is not set
+# CONFIG_LCD_LMS501KF03 is not set
+# CONFIG_LCD_LTV350QV is not set
+# CONFIG_LCD_OTM3225A is not set
+# CONFIG_LCD_S6E63M0 is not set
+# CONFIG_LCD_TDO24M is not set
+# CONFIG_LCD_VGG2432A4 is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_LEDS_APU is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_CLASS_FLASH is not set
+# CONFIG_LEDS_DAC124S085 is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_LM355x is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_LP3952 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_NIC78BX is not set
+# CONFIG_LEDS_PCA9532 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_PWM is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_TLC591XX is not set
+# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_MTD is not set
+# CONFIG_LEDS_TRIGGER_NETDEV is not set
+# CONFIG_LEDS_TRIGGER_PANIC is not set
+# CONFIG_LEDS_USER is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
+# CONFIG_LIBERTAS is not set
+# CONFIG_LIBERTAS_THINFIRM is not set
+# CONFIG_LIDAR_LITE_V2 is not set
+# CONFIG_LKDTM is not set
+# CONFIG_LLC2 is not set
+# CONFIG_LMP91000 is not set
+# CONFIG_LOCALVERSION_AUTO is not set
+# CONFIG_LOCK_STAT is not set
+# CONFIG_LOGIG940_FF is not set
+# CONFIG_LOGIRUMBLEPAD2_FF is not set
+# CONFIG_LOGIWHEELS_FF is not set
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+# CONFIG_LP_CONSOLE is not set
+# CONFIG_LTC2471 is not set
+# CONFIG_LTC2485 is not set
+# CONFIG_LTC2497 is not set
+# CONFIG_LTC2632 is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_LTR501 is not set
+# CONFIG_LV0104CS is not set
+# CONFIG_M62332 is not set
+# CONFIG_MAC80211_DEBUG_MENU is not set
+# CONFIG_MAC80211_MESH is not set
+# CONFIG_MAC80211_MESSAGE_TRACING is not set
+# CONFIG_MAG3110 is not set
+# CONFIG_MAILBOX_TEST is not set
+# CONFIG_MANAGER_SBS is not set
+# CONFIG_MANDATORY_FILE_LOCKING is not set
+# CONFIG_MATOM is not set
+# CONFIG_MAX1027 is not set
+# CONFIG_MAX11100 is not set
+# CONFIG_MAX1118 is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX30100 is not set
+# CONFIG_MAX30102 is not set
+# CONFIG_MAX44000 is not set
+# CONFIG_MAX517 is not set
+# CONFIG_MAX5481 is not set
+# CONFIG_MAX5487 is not set
+# CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MAX9611 is not set
+# CONFIG_MAXIM_THERMOCOUPLE is not set
+# CONFIG_MC3230 is not set
+# CONFIG_MCB is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MCP320X is not set
+# CONFIG_MCP3422 is not set
+# CONFIG_MCP4018 is not set
+# CONFIG_MCP4131 is not set
+# CONFIG_MCP4531 is not set
+# CONFIG_MCP4725 is not set
+# CONFIG_MCP4922 is not set
+# CONFIG_MDIO_GPIO is not set
+# CONFIG_MD_MULTIPATH is not set
+# CONFIG_MEDIA_CEC_RC is not set
+# CONFIG_MEDIA_CONTROLLER is not set
+# CONFIG_MEDIA_SDR_SUPPORT is not set
+# CONFIG_MEGARAID_LEGACY is not set
+# CONFIG_MEGARAID_NEWGEN is not set
+# CONFIG_MEMORY is not set
+# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
+# CONFIG_MEMSTICK_DEBUG is not set
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+# CONFIG_MEMTEST is not set
+# CONFIG_MEN_A21_WDT is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ACT8945A is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_MFD_ATMEL_FLEXCOM is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_AXP20X_I2C is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_BD9571MWV is not set
+# CONFIG_MFD_CPCAP is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9062 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_MFD_HI655X_PMIC is not set
+# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77620 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_MFD_STMPE is not set
+# CONFIG_MFD_SYSCON is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_TI_LMU is not set
+# CONFIG_MFD_TI_LP873X is not set
+# CONFIG_MFD_TI_LP87565 is not set
+# CONFIG_MFD_TPS65086 is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS68470 is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM8994 is not set
+# CONFIG_MHI_BUS_EP is not set
+# CONFIG_MICROCODE_LATE_LOADING is not set
+# CONFIG_MINIX_FS is not set
+# CONFIG_MK8 is not set
+# CONFIG_MLX4_CORE_GEN2 is not set
+# CONFIG_MLX90614 is not set
+# CONFIG_MLX90632 is not set
+# CONFIG_MLXBF_BOOTCTL is not set
+# CONFIG_MLXBF_GIGE is not set
+# CONFIG_MLXBF_PMC is not set
+# CONFIG_MLXBF_TMFIFO is not set
+# CONFIG_MMA7455_I2C is not set
+# CONFIG_MMA7455_SPI is not set
+# CONFIG_MMA7660 is not set
+# CONFIG_MMA8452 is not set
+# CONFIG_MMA9551 is not set
+# CONFIG_MMA9553 is not set
+# CONFIG_MMC35240 is not set
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_DW_EXYNOS is not set
+# CONFIG_MMC_DW_HI3798CV200 is not set
+# CONFIG_MMC_DW_K3 is not set
+# CONFIG_MMC_DW_PCI is not set
+# CONFIG_MMC_MTK is not set
+# CONFIG_MMC_SDHCI_CADENCE is not set
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+# CONFIG_MMC_SDHCI_OF_AT91 is not set
+# CONFIG_MMC_SDHCI_OMAP is not set
+# CONFIG_MMC_SDHCI_XENON is not set
+# CONFIG_MMC_SPI is not set
+# CONFIG_MMC_TEST is not set
+# CONFIG_MMC_TOSHIBA_PCI is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_WBSD is not set
+# CONFIG_MMIOTRACE is not set
+# CONFIG_MMIOTRACE_TEST is not set
+# CONFIG_MODULE_COMPRESS is not set
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODULE_SIG_FORCE is not set
+# CONFIG_MODULE_SIG_SHA1 is not set
+# CONFIG_MODULE_SIG_SHA224 is not set
+# CONFIG_MODULE_SIG_SHA384 is not set
+# CONFIG_MODULE_SIG_SHA512 is not set
+# CONFIG_MOST is not set
+# CONFIG_MOUSE_GPIO is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+# CONFIG_MOXA_INTELLIO is not set
+# CONFIG_MOXA_SMARTIO is not set
+# CONFIG_MPL115_I2C is not set
+# CONFIG_MPL115_SPI is not set
+# CONFIG_MPL3115 is not set
+# CONFIG_MPSC is not set
+# CONFIG_MPU3050_I2C is not set
+# CONFIG_MS5611 is not set
+# CONFIG_MS5637 is not set
+# CONFIG_MSCC_OCELOT_SWITCH is not set
+# CONFIG_MS_BLOCK is not set
+# CONFIG_MT7603E is not set
+# CONFIG_MT7615E is not set
+# CONFIG_MTD_ABSENT is not set
+# CONFIG_MTD_AFS_PARTS is not set
+# CONFIG_MTD_AR7_PARTS is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+# CONFIG_MTD_BLOCK_RO is not set
+# CONFIG_MTD_CFI is not set
+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
+# CONFIG_MTD_CMDLINE_PARTS is not set
+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_DOCG3 is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_JEDECPROBE is not set
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_MCHP23K256 is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_NAND is not set
+# CONFIG_MTD_ONENAND is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_PHYSMAP_COMPAT is not set
+# CONFIG_MTD_PHYSMAP_OF_GEMINI is not set
+# CONFIG_MTD_PHYSMAP_OF_VERSATILE is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_UBI_BLOCK is not set
+# CONFIG_MTD_UBI_FASTMAP is not set
+# CONFIG_MTD_UBI_GLUEBI is not set
+# CONFIG_MTK_MMC is not set
+# CONFIG_MWAVE is not set
+# CONFIG_MWL8K is not set
+# CONFIG_MXC4005 is not set
+# CONFIG_MXC6255 is not set
+# CONFIG_NAU7802 is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_TIME is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+# CONFIG_NET_9P is not set
+# CONFIG_NET_ACT_CONNMARK is not set
+# CONFIG_NET_ACT_CTINFO is not set
+# CONFIG_NET_ACT_IFE is not set
+# CONFIG_NET_ACT_IPT is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_DSA is not set
+# CONFIG_NET_EMATCH_CANID is not set
+# CONFIG_NET_EMATCH_IPT is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_NET_FOU_IP_TUNNELS is not set
+# CONFIG_NET_IFE is not set
+# CONFIG_NET_NCSI is not set
+# CONFIG_NET_SB1000 is not set
+# CONFIG_NET_SCH_CAKE is not set
+# CONFIG_NET_SCH_ETF is not set
+# CONFIG_NET_SCH_SKBPRIO is not set
+# CONFIG_NET_TULIP is not set
+# CONFIG_NET_VENDOR_3COM is not set
+# CONFIG_NET_VENDOR_ADAPTEC is not set
+# CONFIG_NET_VENDOR_AGERE is not set
+# CONFIG_NET_VENDOR_ALACRITECH is not set
+# CONFIG_NET_VENDOR_ALTEON is not set
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_VENDOR_AURORA is not set
+# CONFIG_NET_VENDOR_CORTINA is not set
+# CONFIG_NET_VENDOR_EXAR is not set
+# CONFIG_NET_VENDOR_EZCHIP is not set
+# CONFIG_NET_VENDOR_HP is not set
+# CONFIG_NET_VENDOR_I825XX is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_MICROCHIP is not set
+# CONFIG_NET_VENDOR_MICROSEMI is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+# CONFIG_NET_VENDOR_NI is not set
+# CONFIG_NET_VENDOR_NVIDIA is not set
+# CONFIG_NET_VENDOR_QUALCOMM is not set
+# CONFIG_NET_VENDOR_RDC is not set
+# CONFIG_NET_VENDOR_RENESAS is not set
+# CONFIG_NET_VENDOR_SAMSUNG is not set
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SILAN is not set
+# CONFIG_NET_VENDOR_SIS is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_SOCIONEXT is not set
+# CONFIG_NET_VENDOR_SUN is not set
+# CONFIG_NET_VENDOR_SYNOPSYS is not set
+# CONFIG_NET_VENDOR_TEHUTI is not set
+# CONFIG_NET_VENDOR_TI is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_NFC is not set
+# CONFIG_NFP_DEBUG is not set
+# CONFIG_NFSD_BLOCKLAYOUT is not set
+# CONFIG_NFSD_FAULT_INJECTION is not set
+# CONFIG_NFSD_FLEXFILELAYOUT is not set
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+# CONFIG_NFS_V2 is not set
+# CONFIG_NFS_V4_1_MIGRATION is not set
+# CONFIG_NFTL is not set
+# CONFIG_NI903X_WDT is not set
+# CONFIG_NIC7018_WDT is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_NL80211_TESTMODE is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
+# CONFIG_NOUVEAU_DEBUG_MMU is not set
+# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set
+# CONFIG_NO_HZ_IDLE is not set
+# CONFIG_NTB_IDT is not set
+# CONFIG_NTB_SWITCHTEC is not set
+# CONFIG_NTFS_FS is not set
+# CONFIG_NVM is not set
+# CONFIG_OCFS2_FS is not set
+# CONFIG_OF is not set
+# CONFIG_OF_OVERLAY is not set
+# CONFIG_OF_UNITTEST is not set
+# CONFIG_OMFS_FS is not set
+# CONFIG_OPT3001 is not set
+# CONFIG_OPTEE is not set
+# CONFIG_ORANGEFS_FS is not set
+# CONFIG_OVERLAY_FS_INDEX is not set
+# CONFIG_OVERLAY_FS_METACOPY is not set
+# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
+# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
+# CONFIG_OVERLAY_FS_XINO_AUTO is not set
+# CONFIG_PA12203001 is not set
+# CONFIG_PANEL is not set
+# CONFIG_PANTHERLORD_FF is not set
+# CONFIG_PARAVIRT_DEBUG is not set
+# CONFIG_PARIDE is not set
+# CONFIG_PARPORT_AX88796 is not set
+# CONFIG_PARPORT_PC_FIFO is not set
+# CONFIG_PARPORT_PC_SUPERIO is not set
+# CONFIG_PATA_ACPI is not set
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTI is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_RZ1000 is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+# CONFIG_PC300TOO is not set
+# CONFIG_PC87413_WDT is not set
+# CONFIG_PCI200SYN is not set
+# CONFIG_PCIEASPM_DEBUG is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
+# CONFIG_PCIE_CADENCE_HOST is not set
+# CONFIG_PCIE_DW_PLAT is not set
+# CONFIG_PCIE_DW_PLAT_HOST is not set
+# CONFIG_PCIE_HISI_STB is not set
+# CONFIG_PCIE_KIRIN is not set
+# CONFIG_PCIE_PTM is not set
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_ENDPOINT is not set
+# CONFIG_PCI_ENDPOINT_TEST is not set
+# CONFIG_PCI_FTPCI100 is not set
+# CONFIG_PCI_HOST_GENERIC is not set
+# CONFIG_PCI_P2PDMA is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_SW_SWITCHTEC is not set
+# CONFIG_PCMCIA is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_PDC_ADMA is not set
+# CONFIG_PEAQ_WMI is not set
+# CONFIG_PERCPU_STATS is not set
+# CONFIG_PERCPU_TEST is not set
+# CONFIG_PGTABLE_MAPPING is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_PHONET is not set
+# CONFIG_PHY_CPCAP_USB is not set
+# CONFIG_PHY_NS2_PCIE is not set
+# CONFIG_PHY_PXA_28NM_HSIC is not set
+# CONFIG_PHY_PXA_28NM_USB2 is not set
+# CONFIG_PI433 is not set
+# CONFIG_PINCTRL_CHERRYVIEW is not set
+# CONFIG_PINCTRL_IPQ4019 is not set
+# CONFIG_PINCTRL_IPQ8074 is not set
+# CONFIG_PINCTRL_MCP23S08 is not set
+# CONFIG_PINCTRL_MDM9615 is not set
+# CONFIG_PINCTRL_MSM8994 is not set
+# CONFIG_PINCTRL_MSM8998 is not set
+# CONFIG_PINCTRL_SDM845 is not set
+# CONFIG_PINCTRL_SX150X is not set
+# CONFIG_PKCS7_TEST_KEY is not set
+# CONFIG_PL320_MBOX is not set
+# CONFIG_PLATFORM_MHU is not set
+# CONFIG_PLIP is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_PM_ADVANCED_DEBUG is not set
+# CONFIG_PM_AUTOSLEEP is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_PM_TEST_SUSPEND is not set
+# CONFIG_PM_TRACE_RTC is not set
+# CONFIG_PM_WAKELOCKS is not set
+# CONFIG_PNP_DEBUG_MESSAGES is not set
+# CONFIG_POWER_AVS is not set
+# CONFIG_POWER_RESET_BRCMSTB is not set
+# CONFIG_POWER_RESET_GPIO_RESTART is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_RESTART is not set
+# CONFIG_POWER_RESET_SYSCON is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_DEBUG is not set
+# CONFIG_PREEMPT is not set
+# CONFIG_PREEMPTIRQ_EVENTS is not set
+# CONFIG_PREEMPT_NONE is not set
+# CONFIG_PRINTK_CALLER is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROTECTED_VIRTUALIZATION_GUEST is not set
+# CONFIG_PROVE_LOCKING is not set
+# CONFIG_PROVE_RCU is not set
+# CONFIG_PSTORE_842_COMPRESS is not set
+# CONFIG_PSTORE_CONSOLE is not set
+# CONFIG_PSTORE_FTRACE is not set
+# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
+# CONFIG_PSTORE_LZ4_COMPRESS is not set
+# CONFIG_PSTORE_LZO_COMPRESS is not set
+# CONFIG_PSTORE_PMSG is not set
+# CONFIG_PUNIT_ATOM_DEBUG is not set
+# CONFIG_PWM_PCA9685 is not set
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SD8787 is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+# CONFIG_QCA7000_SPI is not set
+# CONFIG_QCOM_APCS_IPC is not set
+# CONFIG_QCOM_COMMAND_DB is not set
+# CONFIG_QCOM_GENI_SE is not set
+# CONFIG_QCOM_HIDMA is not set
+# CONFIG_QCOM_HIDMA_MGMT is not set
+# CONFIG_QCOM_IOMMU is not set
+# CONFIG_QCOM_PDC is not set
+# CONFIG_QCOM_RMTFS_MEM is not set
+# CONFIG_QCOM_SMEM is not set
+# CONFIG_QCOM_SPMI_IADC is not set
+# CONFIG_QCOM_SPMI_VADC is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_QNX4FS_FS is not set
+# CONFIG_QNX6FS_FS is not set
+# CONFIG_QORIQ_CPUFREQ is not set
+# CONFIG_QTNFMAC_PEARL_PCIE is not set
+# CONFIG_QUEUED_LOCK_STAT is not set
+# CONFIG_QUOTA_DEBUG is not set
+# CONFIG_R3964 is not set
+# CONFIG_R8188EU is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8822BE is not set
+# CONFIG_RADIO_MAXIRADIO is not set
+# CONFIG_RADIO_SAA7706H is not set
+# CONFIG_RADIO_SHARK is not set
+# CONFIG_RADIO_SHARK2 is not set
+# CONFIG_RADIO_SI470X is not set
+# CONFIG_RADIO_SI4713 is not set
+# CONFIG_RADIO_TEA5764 is not set
+# CONFIG_RADIO_TEF6862 is not set
+# CONFIG_RADIO_WL1273 is not set
+# CONFIG_RANDOM32_SELFTEST is not set
+# CONFIG_RAPIDIO is not set
+# CONFIG_RAS_CEC is not set
+# CONFIG_RBTREE_TEST is not set
+# CONFIG_RCU_EQS_DEBUG is not set
+# CONFIG_RCU_EXPERT is not set
+# CONFIG_RCU_SCALE_TEST is not set
+# CONFIG_RCU_TORTURE_TEST is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_RC_LOOPBACK is not set
+# CONFIG_RDS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_READ_ONLY_THP_FOR_FS is not set
+# CONFIG_REFCOUNT_FULL is not set
+# CONFIG_REGULATOR is not set
+# CONFIG_REISERFS_FS is not set
+# CONFIG_REMOTEPROC is not set
+# CONFIG_RESET_ATTACK_MITIGATION is not set
+# CONFIG_RFD77402 is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_RFKILL_GPIO is not set
+# CONFIG_RING_BUFFER_STARTUP_TEST is not set
+# CONFIG_RMI4_F54 is not set
+# CONFIG_RMNET is not set
+# CONFIG_ROCKETPORT is not set
+# CONFIG_ROMFS_FS is not set
+# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
+# CONFIG_RPMSG_VIRTIO is not set
+# CONFIG_RPR0521 is not set
+# CONFIG_RT2400PCI is not set
+# CONFIG_RT2500PCI is not set
+# CONFIG_RT2500USB is not set
+# CONFIG_RT2X00_DEBUG is not set
+# CONFIG_RT61PCI is not set
+# CONFIG_RT73USB is not set
+# CONFIG_RTC_DEBUG is not set
+# CONFIG_RTC_DRV_ABB5ZES3 is not set
+# CONFIG_RTC_DRV_ABX80X is not set
+# CONFIG_RTC_DRV_DS1302 is not set
+# CONFIG_RTC_DRV_DS1305 is not set
+# CONFIG_RTC_DRV_DS1307_CENTURY is not set
+# CONFIG_RTC_DRV_DS1307_HWMON is not set
+# CONFIG_RTC_DRV_DS1343 is not set
+# CONFIG_RTC_DRV_DS1347 is not set
+# CONFIG_RTC_DRV_DS1374_WDT is not set
+# CONFIG_RTC_DRV_DS1390 is not set
+# CONFIG_RTC_DRV_DS1685_FAMILY is not set
+# CONFIG_RTC_DRV_FTRTC010 is not set
+# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
+# CONFIG_RTC_DRV_M41T93 is not set
+# CONFIG_RTC_DRV_M41T94 is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_MAX6902 is not set
+# CONFIG_RTC_DRV_MAX6916 is not set
+# CONFIG_RTC_DRV_MCP795 is not set
+# CONFIG_RTC_DRV_PCF2123 is not set
+# CONFIG_RTC_DRV_PCF2127 is not set
+# CONFIG_RTC_DRV_PCF85063 is not set
+# CONFIG_RTC_DRV_PCF85363 is not set
+# CONFIG_RTC_DRV_R9701 is not set
+# CONFIG_RTC_DRV_RS5C348 is not set
+# CONFIG_RTC_DRV_RV3029_HWMON is not set
+# CONFIG_RTC_DRV_RV8803 is not set
+# CONFIG_RTC_DRV_RX6110 is not set
+# CONFIG_RTC_DRV_RX8010 is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_TEST is not set
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTL8180 is not set
+# CONFIG_RTL8187 is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTL8723BS is not set
+# CONFIG_RTL8XXXU_UNTESTED is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_RTLWIFI_DEBUG is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_RTW88_8821CS is not set
+# CONFIG_RTW88_8822BS is not set
+# CONFIG_RTW88_8822CS is not set
+# CONFIG_RTW89_8852CE is not set
+# CONFIG_SAMPLE_CONFIGFS is not set
+# CONFIG_SAMPLE_CONNECTOR is not set
+# CONFIG_SAMPLE_HW_BREAKPOINT is not set
+# CONFIG_SAMPLE_KDB is not set
+# CONFIG_SAMPLE_KFIFO is not set
+# CONFIG_SAMPLE_KOBJECT is not set
+# CONFIG_SAMPLE_KPROBES is not set
+# CONFIG_SAMPLE_LIVEPATCH is not set
+# CONFIG_SAMPLE_SECCOMP is not set
+# CONFIG_SAMPLE_TRACE_EVENTS is not set
+# CONFIG_SAMPLE_TRACE_PRINTK is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set
+# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
+# CONFIG_SAMPLE_VFS is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_DWC is not set
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIL24 is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_SX4 is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+# CONFIG_SATA_ZPODD is not set
+# CONFIG_SBC_EPX_C3_WATCHDOG is not set
+# CONFIG_SBNI is not set
+# CONFIG_SBP_TARGET is not set
+# CONFIG_SC1200_WDT is not set
+# CONFIG_SCA3000 is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_SCIF_BUS is not set
+# CONFIG_SCSI_3W_9XXX is not set
+# CONFIG_SCSI_3W_SAS is not set
+# CONFIG_SCSI_ACARD is not set
+# CONFIG_SCSI_ADVANSYS is not set
+# CONFIG_SCSI_AIC79XX is not set
+# CONFIG_SCSI_AIC7XXX is not set
+# CONFIG_SCSI_AIC94XX is not set
+# CONFIG_SCSI_AM53C974 is not set
+# CONFIG_SCSI_ARCMSR is not set
+# CONFIG_SCSI_BFA_FC is not set
+# CONFIG_SCSI_BUSLOGIC is not set
+# CONFIG_SCSI_CXGB3_ISCSI is not set
+# CONFIG_SCSI_DC395x is not set
+# CONFIG_SCSI_DMX3191D is not set
+# CONFIG_SCSI_DPT_I2O is not set
+# CONFIG_SCSI_ESAS2R is not set
+# CONFIG_SCSI_GDTH is not set
+# CONFIG_SCSI_HPTIOP is not set
+# CONFIG_SCSI_IMM is not set
+# CONFIG_SCSI_INIA100 is not set
+# CONFIG_SCSI_INITIO is not set
+# CONFIG_SCSI_IPR is not set
+# CONFIG_SCSI_IPR_DUMP is not set
+# CONFIG_SCSI_IPR_TRACE is not set
+# CONFIG_SCSI_IPS is not set
+# CONFIG_SCSI_ISCI is not set
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+# CONFIG_SCSI_MVSAS is not set
+# CONFIG_SCSI_MVUMI is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+# CONFIG_SCSI_PM8001 is not set
+# CONFIG_SCSI_PMCRAID is not set
+# CONFIG_SCSI_PPA is not set
+# CONFIG_SCSI_QLOGIC_1280 is not set
+# CONFIG_SCSI_SNIC is not set
+# CONFIG_SCSI_STEX is not set
+# CONFIG_SCSI_SYM53C8XX_2 is not set
+# CONFIG_SCSI_UFSHCD is not set
+# CONFIG_SCSI_WD719X is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
+# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
+# CONFIG_SDMA_VERBOSITY is not set
+# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
+# CONFIG_SECURITY_APPARMOR is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY_LOADPIN is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SENSORS_AD7314 is not set
+# CONFIG_SENSORS_ADC128D818 is not set
+# CONFIG_SENSORS_ADCXX is not set
+# CONFIG_SENSORS_ADS7871 is not set
+# CONFIG_SENSORS_ADT7310 is not set
+# CONFIG_SENSORS_ASPEED is not set
+# CONFIG_SENSORS_EMC2103 is not set
+# CONFIG_SENSORS_FTSTEUTATES is not set
+# CONFIG_SENSORS_G762 is not set
+# CONFIG_SENSORS_GPIO_FAN is not set
+# CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843_I2C is not set
+# CONFIG_SENSORS_HMC5843_SPI is not set
+# CONFIG_SENSORS_IBM_CFFPS is not set
+# CONFIG_SENSORS_IIO_HWMON is not set
+# CONFIG_SENSORS_INA3221 is not set
+# CONFIG_SENSORS_IR35221 is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_LM70 is not set
+# CONFIG_SENSORS_LTC2945 is not set
+# CONFIG_SENSORS_LTC2990 is not set
+# CONFIG_SENSORS_LTC3815 is not set
+# CONFIG_SENSORS_LTC4222 is not set
+# CONFIG_SENSORS_LTC4260 is not set
+# CONFIG_SENSORS_MAX1111 is not set
+# CONFIG_SENSORS_MAX20751 is not set
+# CONFIG_SENSORS_MAX31722 is not set
+# CONFIG_SENSORS_MAX31785 is not set
+# CONFIG_SENSORS_MAX31790 is not set
+# CONFIG_SENSORS_MAX6621 is not set
+# CONFIG_SENSORS_NCT6683 is not set
+# CONFIG_SENSORS_NCT7802 is not set
+# CONFIG_SENSORS_NCT7904 is not set
+# CONFIG_SENSORS_POWR1220 is not set
+# CONFIG_SENSORS_PWM_FAN is not set
+# CONFIG_SENSORS_SHT3x is not set
+# CONFIG_SENSORS_SHTC1 is not set
+# CONFIG_SENSORS_SMM665 is not set
+# CONFIG_SENSORS_STTS751 is not set
+# CONFIG_SENSORS_TC654 is not set
+# CONFIG_SENSORS_TC74 is not set
+# CONFIG_SENSORS_TMP103 is not set
+# CONFIG_SENSORS_TMP108 is not set
+# CONFIG_SENSORS_TPS40422 is not set
+# CONFIG_SENSORS_TPS53679 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_SENSORS_W83773G is not set
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+# CONFIG_SENSORS_XGENE is not set
+# CONFIG_SERIAL_8250_ASPEED_VUART is not set
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+# CONFIG_SERIAL_8250_DETECT_IRQ is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+# CONFIG_SERIAL_8250_MOXA is not set
+# CONFIG_SERIAL_8250_RT288X is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_SERIAL_DEV_BUS is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_KGDB_NMI is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_UARTLITE is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIO_APBPS2 is not set
+# CONFIG_SERIO_CT82C710 is not set
+# CONFIG_SERIO_GPIO_PS2 is not set
+# CONFIG_SERIO_PARKBD is not set
+# CONFIG_SERIO_PCIPS2 is not set
+# CONFIG_SERIO_PS2MULT is not set
+# CONFIG_SFC_FALCON is not set
+# CONFIG_SGI_GRU_DEBUG is not set
+# CONFIG_SI1145 is not set
+# CONFIG_SI7005 is not set
+# CONFIG_SI7020 is not set
+# CONFIG_SIOX is not set
+# CONFIG_SLAB is not set
+# CONFIG_SLAB_MERGE_DEFAULT is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_SLIMBUS is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_SMARTJOYPLUS_FF is not set
+# CONFIG_SMC is not set
+# CONFIG_SMSC37B787_WDT is not set
+# CONFIG_SMS_SIANO_DEBUGFS is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_SND_ALS300 is not set
+# CONFIG_SND_ALS4000 is not set
+# CONFIG_SND_ATMEL_SOC is not set
+# CONFIG_SND_AW2 is not set
+# CONFIG_SND_AZT3328 is not set
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+# CONFIG_SND_CS4281 is not set
+# CONFIG_SND_DEBUG is not set
+# CONFIG_SND_DEBUG_VERBOSE is not set
+# CONFIG_SND_DESIGNWARE_I2S is not set
+# CONFIG_SND_ES1938 is not set
+# CONFIG_SND_FM801 is not set
+# CONFIG_SND_HDA_CTL_DEV_ID is not set
+# CONFIG_SND_I2S_HI6210_I2S is not set
+# CONFIG_SND_MIXER_OSS is not set
+# CONFIG_SND_MTS64 is not set
+# CONFIG_SND_NM256 is not set
+# CONFIG_SND_PCM_OSS is not set
+# CONFIG_SND_PCM_XRUN_DEBUG is not set
+# CONFIG_SND_PORTMAN2X4 is not set
+# CONFIG_SND_RIPTIDE is not set
+# CONFIG_SND_SERIAL_U16550 is not set
+# CONFIG_SND_SIMPLE_CARD is not set
+# CONFIG_SND_SOC_AC97_CODEC is not set
+# CONFIG_SND_SOC_ADAU1701 is not set
+# CONFIG_SND_SOC_ADAU1761_I2C is not set
+# CONFIG_SND_SOC_ADAU1761_SPI is not set
+# CONFIG_SND_SOC_ADAU7002 is not set
+# CONFIG_SND_SOC_AK4104 is not set
+# CONFIG_SND_SOC_AK4375 is not set
+# CONFIG_SND_SOC_AK4458 is not set
+# CONFIG_SND_SOC_AK4554 is not set
+# CONFIG_SND_SOC_AK4613 is not set
+# CONFIG_SND_SOC_AK4642 is not set
+# CONFIG_SND_SOC_AK5386 is not set
+# CONFIG_SND_SOC_AK5558 is not set
+# CONFIG_SND_SOC_ALC5623 is not set
+# CONFIG_SND_SOC_AMD_ACP is not set
+# CONFIG_SND_SOC_AW8738 is not set
+# CONFIG_SND_SOC_AW88395 is not set
+# CONFIG_SND_SOC_BD28623 is not set
+# CONFIG_SND_SOC_BT_SCO is not set
+# CONFIG_SND_SOC_CS35L32 is not set
+# CONFIG_SND_SOC_CS35L33 is not set
+# CONFIG_SND_SOC_CS35L34 is not set
+# CONFIG_SND_SOC_CS35L35 is not set
+# CONFIG_SND_SOC_CS35L56_I2C is not set
+# CONFIG_SND_SOC_CS35L56_SDW is not set
+# CONFIG_SND_SOC_CS35L56_SPI is not set
+# CONFIG_SND_SOC_CS4265 is not set
+# CONFIG_SND_SOC_CS4270 is not set
+# CONFIG_SND_SOC_CS4271_I2C is not set
+# CONFIG_SND_SOC_CS4271_SPI is not set
+# CONFIG_SND_SOC_CS42L42 is not set
+# CONFIG_SND_SOC_CS42L42_SDW is not set
+# CONFIG_SND_SOC_CS42L51_I2C is not set
+# CONFIG_SND_SOC_CS42L52 is not set
+# CONFIG_SND_SOC_CS42L56 is not set
+# CONFIG_SND_SOC_CS42L73 is not set
+# CONFIG_SND_SOC_CS42L83 is not set
+# CONFIG_SND_SOC_CS42XX8_I2C is not set
+# CONFIG_SND_SOC_CS43130 is not set
+# CONFIG_SND_SOC_CS4349 is not set
+# CONFIG_SND_SOC_CS53L30 is not set
+# CONFIG_SND_SOC_DIO2125 is not set
+# CONFIG_SND_SOC_ES7134 is not set
+# CONFIG_SND_SOC_ES8328_I2C is not set
+# CONFIG_SND_SOC_ES8328_SPI is not set
+# CONFIG_SND_SOC_FSL_ASRC is not set
+# CONFIG_SND_SOC_FSL_ESAI is not set
+# CONFIG_SND_SOC_FSL_SAI is not set
+# CONFIG_SND_SOC_FSL_SPDIF is not set
+# CONFIG_SND_SOC_FSL_SSI is not set
+# CONFIG_SND_SOC_GTM601 is not set
+# CONFIG_SND_SOC_IDT821034 is not set
+# CONFIG_SND_SOC_IMG is not set
+# CONFIG_SND_SOC_IMX_AUDMUX is not set
+# CONFIG_SND_SOC_INNO_RK3036 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927 is not set
+# CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE is not set
+# CONFIG_SND_SOC_MAX9759 is not set
+# CONFIG_SND_SOC_MAX98363 is not set
+# CONFIG_SND_SOC_MAX98504 is not set
+# CONFIG_SND_SOC_MAX9860 is not set
+# CONFIG_SND_SOC_MAX9867 is not set
+# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
+# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
+# CONFIG_SND_SOC_MT6351 is not set
+# CONFIG_SND_SOC_NAU8540 is not set
+# CONFIG_SND_SOC_NAU8810 is not set
+# CONFIG_SND_SOC_PCM1681 is not set
+# CONFIG_SND_SOC_PCM1789_I2C is not set
+# CONFIG_SND_SOC_PCM179X_I2C is not set
+# CONFIG_SND_SOC_PCM179X_SPI is not set
+# CONFIG_SND_SOC_PCM186X_I2C is not set
+# CONFIG_SND_SOC_PCM186X_SPI is not set
+# CONFIG_SND_SOC_PCM3168A_I2C is not set
+# CONFIG_SND_SOC_PCM3168A_SPI is not set
+# CONFIG_SND_SOC_PCM512x_SPI is not set
+# CONFIG_SND_SOC_PEB2466 is not set
+# CONFIG_SND_SOC_RT5616 is not set
+# CONFIG_SND_SOC_RT5631 is not set
+# CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW is not set
+# CONFIG_SND_SOC_SGTL5000 is not set
+# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
+# CONFIG_SND_SOC_SMA1303 is not set
+# CONFIG_SND_SOC_SOF_KABYLAKE is not set
+# CONFIG_SND_SOC_SOF_SKYLAKE is not set
+# CONFIG_SND_SOC_SPDIF is not set
+# CONFIG_SND_SOC_SRC4XXX_I2C is not set
+# CONFIG_SND_SOC_SSM2305 is not set
+# CONFIG_SND_SOC_SSM2602_I2C is not set
+# CONFIG_SND_SOC_SSM2602_SPI is not set
+# CONFIG_SND_SOC_STA32X is not set
+# CONFIG_SND_SOC_STA350 is not set
+# CONFIG_SND_SOC_STI_SAS is not set
+# CONFIG_SND_SOC_TAS2552 is not set
+# CONFIG_SND_SOC_TAS5086 is not set
+# CONFIG_SND_SOC_TAS571X is not set
+# CONFIG_SND_SOC_TAS5720 is not set
+# CONFIG_SND_SOC_TAS5805M is not set
+# CONFIG_SND_SOC_TAS6424 is not set
+# CONFIG_SND_SOC_TDA7419 is not set
+# CONFIG_SND_SOC_TFA9879 is not set
+# CONFIG_SND_SOC_TLV320ADC3XXX is not set
+# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC31XX is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
+# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
+# CONFIG_SND_SOC_TLV320AIC3X is not set
+# CONFIG_SND_SOC_TPA6130A2 is not set
+# CONFIG_SND_SOC_TSCS42XX is not set
+# CONFIG_SND_SOC_TSCS454 is not set
+# CONFIG_SND_SOC_WM8510 is not set
+# CONFIG_SND_SOC_WM8523 is not set
+# CONFIG_SND_SOC_WM8524 is not set
+# CONFIG_SND_SOC_WM8580 is not set
+# CONFIG_SND_SOC_WM8711 is not set
+# CONFIG_SND_SOC_WM8728 is not set
+# CONFIG_SND_SOC_WM8731 is not set
+# CONFIG_SND_SOC_WM8737 is not set
+# CONFIG_SND_SOC_WM8741 is not set
+# CONFIG_SND_SOC_WM8750 is not set
+# CONFIG_SND_SOC_WM8753 is not set
+# CONFIG_SND_SOC_WM8770 is not set
+# CONFIG_SND_SOC_WM8776 is not set
+# CONFIG_SND_SOC_WM8782 is not set
+# CONFIG_SND_SOC_WM8804_SPI is not set
+# CONFIG_SND_SOC_WM8903 is not set
+# CONFIG_SND_SOC_WM8960 is not set
+# CONFIG_SND_SOC_WM8961 is not set
+# CONFIG_SND_SOC_WM8962 is not set
+# CONFIG_SND_SOC_WM8974 is not set
+# CONFIG_SND_SOC_WM8978 is not set
+# CONFIG_SND_SOC_WM8985 is not set
+# CONFIG_SND_SOC_XTFPGA_I2S is not set
+# CONFIG_SND_SOC_ZX_AUD96P22 is not set
+# CONFIG_SND_SONICVIBES is not set
+# CONFIG_SND_SPI is not set
+# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
+# CONFIG_SND_SUPPORT_OLD_API is not set
+# CONFIG_SND_TEST_COMPONENT is not set
+# CONFIG_SND_VERBOSE_PRINTK is not set
+# CONFIG_SND_YMFPCI is not set
+# CONFIG_SOC_BRCMSTB is not set
+# CONFIG_SOC_TI is not set
+# CONFIG_SOUNDWIRE_QCOM is not set
+# CONFIG_SPEAKUP is not set
+# CONFIG_SPI_ALTERA is not set
+# CONFIG_SPI_AXI_SPI_ENGINE is not set
+# CONFIG_SPI_BITBANG is not set
+# CONFIG_SPI_BUTTERFLY is not set
+# CONFIG_SPI_CADENCE is not set
+# CONFIG_SPI_DEBUG is not set
+# CONFIG_SPI_DESIGNWARE is not set
+# CONFIG_SPI_GPIO is not set
+# CONFIG_SPI_LM70_LLP is not set
+# CONFIG_SPI_LOOPBACK_TEST is not set
+# CONFIG_SPI_MEM is not set
+# CONFIG_SPI_OC_TINY is not set
+# CONFIG_SPI_ROCKCHIP is not set
+# CONFIG_SPI_SC18IS602 is not set
+# CONFIG_SPI_SLAVE is not set
+# CONFIG_SPI_SPIDEV is not set
+# CONFIG_SPI_TLE62X0 is not set
+# CONFIG_SPI_XCOMM is not set
+# CONFIG_SPI_XILINX is not set
+# CONFIG_SPI_ZYNQMP_GQSPI is not set
+# CONFIG_SPMI is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+# CONFIG_SQUASHFS_FILE_CACHE is not set
+# CONFIG_SQUASHFS_LZ4 is not set
+# CONFIG_SQUASHFS_ZSTD is not set
+# CONFIG_SRAM is not set
+# CONFIG_SRF04 is not set
+# CONFIG_SRF08 is not set
+# CONFIG_SSB is not set
+# CONFIG_SSFDC is not set
+# CONFIG_STAGING is not set
+# CONFIG_STAGING_MEDIA is not set
+# CONFIG_STATIC_KEYS_SELFTEST is not set
+# CONFIG_STATIC_USERMODEHELPER is not set
+# CONFIG_STK3310 is not set
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
+# CONFIG_STMMAC_PLATFORM is not set
+# CONFIG_STRING_SELFTEST is not set
+# CONFIG_ST_UVIS25 is not set
+# CONFIG_SUNDANCE is not set
+# CONFIG_SURFACE3_WMI is not set
+# CONFIG_SURFACE_PRO3_BUTTON is not set
+# CONFIG_SW_SYNC is not set
+# CONFIG_SX9500 is not set
+# CONFIG_SYSCON_REBOOT_MODE is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_SYSTEMPORT is not set
+# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
+# CONFIG_SYSTEM_REVOCATION_KEYS is not set
+# CONFIG_SYSTEM_REVOCATION_LIST is not set
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_SYSV_FS is not set
+# CONFIG_T5403 is not set
+# CONFIG_TABLET_USB_HANWANG is not set
+# CONFIG_TABLET_USB_PEGASUS is not set
+# CONFIG_TCG_TIS_SPI is not set
+# CONFIG_TCG_TIS_SPI_CR50 is not set
+# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
+# CONFIG_TCG_VTPM_PROXY is not set
+# CONFIG_TCG_XEN is not set
+# CONFIG_TCM_FC is not set
+# CONFIG_TCM_QLA2XXX is not set
+# CONFIG_TCP_CONG_CDG is not set
+# CONFIG_TCS3414 is not set
+# CONFIG_TCS3472 is not set
+# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
+# CONFIG_TEST_BITMAP is not set
+# CONFIG_TEST_FIRMWARE is not set
+# CONFIG_TEST_HASH is not set
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_IDA is not set
+# CONFIG_TEST_KMOD is not set
+# CONFIG_TEST_LKM is not set
+# CONFIG_TEST_OVERFLOW is not set
+# CONFIG_TEST_PARMAN is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_TEST_PRINTF is not set
+# CONFIG_TEST_RHASHTABLE is not set
+# CONFIG_TEST_SORT is not set
+# CONFIG_TEST_STATIC_KEYS is not set
+# CONFIG_TEST_STRING_HELPERS is not set
+# CONFIG_TEST_SYSCTL is not set
+# CONFIG_TEST_UDELAY is not set
+# CONFIG_TEST_USER_COPY is not set
+# CONFIG_TEST_UUID is not set
+# CONFIG_TEST_XARRAY is not set
+# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
+# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
+# CONFIG_THERMAL_EMULATION is not set
+# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
+# CONFIG_THERMAL_STATISTICS is not set
+# CONFIG_THINKPAD_ACPI_DEBUG is not set
+# CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set
+# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set
+# CONFIG_THRUSTMASTER_FF is not set
+# CONFIG_THUNDER_NIC_BGX is not set
+# CONFIG_THUNDER_NIC_PF is not set
+# CONFIG_THUNDER_NIC_RGX is not set
+# CONFIG_THUNDER_NIC_VF is not set
+# CONFIG_TI_ADC081C is not set
+# CONFIG_TI_ADC0832 is not set
+# CONFIG_TI_ADC084S021 is not set
+# CONFIG_TI_ADC108S102 is not set
+# CONFIG_TI_ADC12138 is not set
+# CONFIG_TI_ADC128S052 is not set
+# CONFIG_TI_ADC161S626 is not set
+# CONFIG_TI_ADS1015 is not set
+# CONFIG_TI_ADS7950 is not set
+# CONFIG_TI_DAC082S085 is not set
+# CONFIG_TI_DAC5571 is not set
+# CONFIG_TI_ST is not set
+# CONFIG_TI_TLC4541 is not set
+# CONFIG_TLAN is not set
+# CONFIG_TMP006 is not set
+# CONFIG_TMP007 is not set
+# CONFIG_TOSHIBA_HAPS is not set
+# CONFIG_TOSHIBA_WMI is not set
+# CONFIG_TOUCHSCREEN_AD7877 is not set
+# CONFIG_TOUCHSCREEN_AD7879 is not set
+# CONFIG_TOUCHSCREEN_ADS7846 is not set
+# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
+# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
+# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_BU21013 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
+# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
+# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
+# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
+# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
+# CONFIG_TOUCHSCREEN_DYNAPRO is not set
+# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
+# CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
+# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
+# CONFIG_TOUCHSCREEN_EKTF2127 is not set
+# CONFIG_TOUCHSCREEN_ELAN is not set
+# CONFIG_TOUCHSCREEN_EXC3000 is not set
+# CONFIG_TOUCHSCREEN_FUJITSU is not set
+# CONFIG_TOUCHSCREEN_GOODIX is not set
+# CONFIG_TOUCHSCREEN_GUNZE is not set
+# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
+# CONFIG_TOUCHSCREEN_HIDEEP is not set
+# CONFIG_TOUCHSCREEN_ILI210X is not set
+# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
+# CONFIG_TOUCHSCREEN_INEXIO is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
+# CONFIG_TOUCHSCREEN_MCS5000 is not set
+# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
+# CONFIG_TOUCHSCREEN_MK712 is not set
+# CONFIG_TOUCHSCREEN_MMS114 is not set
+# CONFIG_TOUCHSCREEN_MTOUCH is not set
+# CONFIG_TOUCHSCREEN_PENMOUNT is not set
+# CONFIG_TOUCHSCREEN_PIXCIR is not set
+# CONFIG_TOUCHSCREEN_RM_TS is not set
+# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
+# CONFIG_TOUCHSCREEN_S6SY761 is not set
+# CONFIG_TOUCHSCREEN_SILEAD is not set
+# CONFIG_TOUCHSCREEN_SIS_I2C is not set
+# CONFIG_TOUCHSCREEN_ST1232 is not set
+# CONFIG_TOUCHSCREEN_STMFTS is not set
+# CONFIG_TOUCHSCREEN_SUR40 is not set
+# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
+# CONFIG_TOUCHSCREEN_SX8654 is not set
+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
+# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
+# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
+# CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_TSC2004 is not set
+# CONFIG_TOUCHSCREEN_TSC2005 is not set
+# CONFIG_TOUCHSCREEN_TSC2007 is not set
+# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
+# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
+# CONFIG_TOUCHSCREEN_WM97XX is not set
+# CONFIG_TOUCHSCREEN_ZET6223 is not set
+# CONFIG_TOUCHSCREEN_ZFORCE is not set
+# CONFIG_TPL0102 is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_TRACEPOINT_BENCHMARK is not set
+# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
+# CONFIG_TRACE_EVAL_MAP_FILE is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_TRACING_EVENTS_GPIO is not set
+# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
+# CONFIG_TRIM_UNUSED_KSYMS is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2772 is not set
+# CONFIG_TSL4531 is not set
+# CONFIG_TSYS01 is not set
+# CONFIG_TSYS02D is not set
+# CONFIG_TUN_VNET_CROSS_LE is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_UBIFS_FS is not set
+# CONFIG_UBSAN is not set
+# CONFIG_UCB1400_CORE is not set
+# CONFIG_UEVENT_HELPER is not set
+# CONFIG_UFS_FS is not set
+# CONFIG_UIO_DMEM_GENIRQ is not set
+# CONFIG_UIO_MF624 is not set
+# CONFIG_UIO_NETX is not set
+# CONFIG_UIO_PRUSS is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_UNISYSSPAR is not set
+# CONFIG_UNISYS_VISORBUS is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+# CONFIG_UNWINDER_FRAME_POINTER is not set
+# CONFIG_US5182D is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_C67X00_HCD is not set
+# CONFIG_USB_CHAOSKEY is not set
+# CONFIG_USB_CHIPIDEA is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_DSBR is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_DWC3 is not set
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_EHCI_HCD_PLATFORM is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_GSPCA_DTCS033 is not set
+# CONFIG_USB_GSPCA_KINECT is not set
+# CONFIG_USB_GSPCA_STK1135 is not set
+# CONFIG_USB_GSPCA_TOUPTEK is not set
+# CONFIG_USB_HCD_BCMA is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+# CONFIG_USB_HSIC_USB4604 is not set
+# CONFIG_USB_HUB_USB251XB is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1301 is not set
+# CONFIG_USB_ISP1760 is not set
+# CONFIG_USB_KEENE is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+# CONFIG_USB_MA901 is not set
+# CONFIG_USB_MAX3421_HCD is not set
+# CONFIG_USB_MR800 is not set
+# CONFIG_USB_MUSB_HDRC is not set
+# CONFIG_USB_NET_RNDIS_WLAN is not set
+# CONFIG_USB_NET_SR9700 is not set
+# CONFIG_USB_NET_SR9800 is not set
+# CONFIG_USB_OHCI_HCD_PLATFORM is not set
+# CONFIG_USB_OTG is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_PWC_DEBUG is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_RAREMONO is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_SERIAL_F81232 is not set
+# CONFIG_USB_SERIAL_METRO is not set
+# CONFIG_USB_SERIAL_SIMPLE is not set
+# CONFIG_USB_SERIAL_WISHBONE is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_U132_HCD is not set
+# CONFIG_USB_ULPI is not set
+# CONFIG_USB_ULPI_BUS is not set
+# CONFIG_USB_WHCI_HCD is not set
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+# CONFIG_USB_XHCI_HISTB is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USELIB is not set
+# CONFIG_USERIO is not set
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+# CONFIG_V4L_PLATFORM_DRIVERS is not set
+# CONFIG_V4L_TEST_DRIVERS is not set
+# CONFIG_VCNL4000 is not set
+# CONFIG_VEML6070 is not set
+# CONFIG_VFIO_PCI_IGD is not set
+# CONFIG_VFIO_PCI_VGA is not set
+# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set
+# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
+# CONFIG_VHOST_SCSI is not set
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_AU0828_RC is not set
+# CONFIG_VIDEO_CPIA2 is not set
+# CONFIG_VIDEO_CX25821 is not set
+# CONFIG_VIDEO_CX88_ENABLE_VP3054 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_VIDEO_EM28XX_V4L2 is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_VIDEO_HEXIUM_GEMINI is not set
+# CONFIG_VIDEO_HEXIUM_ORION is not set
+# CONFIG_VIDEO_IVTV_ALSA is not set
+# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
+# CONFIG_VIDEO_MEYE is not set
+# CONFIG_VIDEO_MXB is not set
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+# CONFIG_VIDEO_SOLO6X10 is not set
+# CONFIG_VIDEO_STK1160_COMMON is not set
+# CONFIG_VIDEO_TW5864 is not set
+# CONFIG_VIDEO_TW68 is not set
+# CONFIG_VIDEO_TW686X is not set
+# CONFIG_VIDEO_USBTV is not set
+# CONFIG_VIPERBOARD_ADC is not set
+# CONFIG_VIRTIO_BLK_SCSI is not set
+# CONFIG_VIRTIO_IOMMU is not set
+# CONFIG_VIRTIO_MMIO is not set
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+# CONFIG_VL6180 is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_VOP_BUS is not set
+# CONFIG_VT6655 is not set
+# CONFIG_VT6656 is not set
+# CONFIG_VXFS_FS is not set
+# CONFIG_VZ89X is not set
+# CONFIG_W1 is not set
+# CONFIG_WAFER_WDT is not set
+# CONFIG_WANXL is not set
+# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
+# CONFIG_WCN36XX is not set
+# CONFIG_WIL6210 is not set
+# CONFIG_WILC1000_SDIO is not set
+# CONFIG_WILC1000_SPI is not set
+# CONFIG_WIMAX is not set
+# CONFIG_WLAN_VENDOR_ADMTEK is not set
+# CONFIG_WLAN_VENDOR_ATMEL is not set
+# CONFIG_WLAN_VENDOR_CISCO is not set
+# CONFIG_WLAN_VENDOR_INTERSIL is not set
+# CONFIG_WLAN_VENDOR_RSI is not set
+# CONFIG_WLAN_VENDOR_ST is not set
+# CONFIG_WLAN_VENDOR_TI is not set
+# CONFIG_WLAN_VENDOR_ZYDAS is not set
+# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
+# CONFIG_WQ_WATCHDOG is not set
+# CONFIG_WW_MUTEX_SELFTEST is not set
+# CONFIG_X25 is not set
+# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set
+# CONFIG_X86_DEBUG_FPU is not set
+# CONFIG_X86_GOLDFISH is not set
+# CONFIG_X86_INTEL_MID is not set
+# CONFIG_X86_INTEL_MPX is not set
+# CONFIG_X86_NUMACHIP is not set
+# CONFIG_X86_PCC_CPUFREQ is not set
+# CONFIG_X86_PTDUMP is not set
+# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
+# CONFIG_X86_SYSFB is not set
+# CONFIG_X86_VERBOSE_BOOTUP is not set
+# CONFIG_X86_VSMP is not set
+# CONFIG_X86_X32 is not set
+# CONFIG_XEN_BALLOON is not set
+# CONFIG_XEN_BALLOON_MEMORY_HOTPLUG is not set
+# CONFIG_XEN_DEBUG_FS is not set
+# CONFIG_XEN_FBDEV_FRONTEND is not set
+# CONFIG_XEN_GNTDEV is not set
+# CONFIG_XEN_GRANT_DEV_ALLOC is not set
+# CONFIG_XEN_PCIDEV_FRONTEND is not set
+# CONFIG_XEN_PV is not set
+# CONFIG_XEN_PVCALLS_FRONTEND is not set
+# CONFIG_XEN_PVH is not set
+# CONFIG_XEN_SCSI_FRONTEND is not set
+# CONFIG_XEN_SELFBALLOONING is not set
+# CONFIG_XFS_DEBUG is not set
+# CONFIG_XFS_ONLINE_REPAIR is not set
+# CONFIG_XFS_ONLINE_SCRUB is not set
+# CONFIG_XFS_RT is not set
+# CONFIG_XFS_WARN is not set
+# CONFIG_XILINX_VCU is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_XILLYBUS is not set
+# CONFIG_XZ_DEC_TEST is not set
+# CONFIG_YELLOWFIN is not set
+# CONFIG_Z3FOLD is not set
+# CONFIG_ZEROPLUS_FF is not set
+# CONFIG_ZIIRAVE_WATCHDOG is not set
+# CONFIG_ZOPT2201 is not set
+# CONFIG_ZPA2326 is not set
+# CONFIG_ZRAM_MEMORY_TRACKING is not set
+# CONFIG_ZX_TDM is not set
+CONFIG_64BIT=y
+CONFIG_6LOWPAN=m
+CONFIG_8139CP=m
+CONFIG_8139TOO=m
+CONFIG_8139TOO_8129=y
+CONFIG_ACERHDF=m
+CONFIG_ACER_WMI=m
+CONFIG_ACPI=y
+CONFIG_ACPI_AC=y
+CONFIG_ACPI_APEI=y
+CONFIG_ACPI_APEI_EINJ=m
+CONFIG_ACPI_APEI_GHES=y
+CONFIG_ACPI_APEI_MEMORY_FAILURE=y
+CONFIG_ACPI_APEI_PCIEAER=y
+CONFIG_ACPI_BATTERY=y
+CONFIG_ACPI_BGRT=y
+CONFIG_ACPI_BUTTON=y
+CONFIG_ACPI_CMPC=m
+CONFIG_ACPI_CONTAINER=y
+CONFIG_ACPI_DOCK=y
+CONFIG_ACPI_DPTF=y
+CONFIG_ACPI_EC_DEBUGFS=m
+CONFIG_ACPI_EXTLOG=m
+CONFIG_ACPI_FAN=y
+CONFIG_ACPI_FPDT=y
+CONFIG_ACPI_HED=y
+CONFIG_ACPI_HMAT=y
+CONFIG_ACPI_HOTPLUG_MEMORY=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_NFIT=m
+CONFIG_ACPI_NUMA=y
+CONFIG_ACPI_PCI_SLOT=y
+CONFIG_ACPI_PLATFORM_PROFILE=m
+CONFIG_ACPI_PRMT=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
+CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
+CONFIG_ACPI_SBS=m
+CONFIG_ACPI_SLEEP=y
+CONFIG_ACPI_SPCR_TABLE=y
+CONFIG_ACPI_TABLE_UPGRADE=y
+CONFIG_ACPI_TAD=m
+CONFIG_ACPI_THERMAL=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_ACPI_WATCHDOG=y
+CONFIG_ACPI_WMI=m
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=y
+CONFIG_AGP_SIS=y
+CONFIG_AGP_VIA=y
+CONFIG_AIO=y
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALIM7101_WDT=m
+CONFIG_ALTERA_STAPL=m
+CONFIG_ALX=m
+CONFIG_AMD_HSMP=m
+CONFIG_AMD_IOMMU=y
+CONFIG_AMD_IOMMU_V2=m
+CONFIG_AMD_MEM_ENCRYPT=y
+CONFIG_AMD_NUMA=y
+CONFIG_AMD_PHY=m
+CONFIG_AMD_PMC=m
+CONFIG_AMD_PTDMA=m
+CONFIG_AMD_SFH_HID=m
+CONFIG_AMD_XGBE=m
+CONFIG_AMIGA_PARTITION=y
+CONFIG_AMILO_RFKILL=m
+CONFIG_ANON_INODES=y
+CONFIG_APDS9802ALS=m
+CONFIG_APPLE_GMUX=m
+CONFIG_APPLE_MFI_FASTCHARGE=m
+CONFIG_AQTION=m
+CONFIG_AQUANTIA_PHY=m
+CONFIG_ARCH_CPUIDLE_HALTPOLL=y
+CONFIG_ASIX_PHY=m
+CONFIG_ASN1=y
+CONFIG_ASUS_LAPTOP=m
+CONFIG_ASUS_NB_WMI=m
+CONFIG_ASUS_WMI=m
+CONFIG_ASYMMETRIC_KEY_TYPE=y
+CONFIG_ASYNC_RAID6_TEST=m
+CONFIG_ASYNC_TX_DMA=y
+CONFIG_AS_TPAUSE=y
+CONFIG_AT803X_PHY=m
+CONFIG_ATA=m
+CONFIG_ATA_ACPI=y
+CONFIG_ATA_BMDMA=y
+CONFIG_ATA_GENERIC=m
+CONFIG_ATA_PIIX=m
+CONFIG_ATA_SFF=y
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATH10K=m
+CONFIG_ATH10K_DEBUGFS=y
+CONFIG_ATH10K_PCI=m
+CONFIG_ATH11K=m
+CONFIG_ATH11K_DEBUG=y
+CONFIG_ATH11K_DEBUGFS=y
+CONFIG_ATH11K_PCI=m
+CONFIG_ATH11K_TRACING=y
+CONFIG_ATH9K=m
+CONFIG_ATH9K_AHB=y
+CONFIG_ATH9K_BTCOEX_SUPPORT=y
+CONFIG_ATH9K_DEBUGFS=y
+CONFIG_ATH9K_HTC=m
+CONFIG_ATH9K_PCI=y
+CONFIG_ATH9K_WOW=y
+CONFIG_ATH_COMMON=m
+CONFIG_ATL1=m
+CONFIG_ATL1C=m
+CONFIG_ATL1E=m
+CONFIG_ATL2=m
+CONFIG_ATM=m
+CONFIG_ATM_BR2684=m
+CONFIG_ATM_CLIP=m
+CONFIG_ATM_LANE=m
+CONFIG_ATOMIC64_SELFTEST=y
 CONFIG_AUDIT=y
 CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
 CONFIG_AUDIT_TREE=y
-CONFIG_HAVE_GENERIC_HARDIRQS=y
-
-#
-# IRQ subsystem
-#
-CONFIG_GENERIC_HARDIRQS=y
-CONFIG_GENERIC_IRQ_PROBE=y
-CONFIG_GENERIC_IRQ_SHOW=y
-CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ=y
-CONFIG_GENERIC_PENDING_IRQ=y
-CONFIG_IRQ_DOMAIN=y
-# CONFIG_IRQ_DOMAIN_DEBUG is not set
-CONFIG_IRQ_FORCED_THREADING=y
-CONFIG_SPARSE_IRQ=y
-CONFIG_ARCH_CLOCKSOURCE_DATA=y
-CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
-CONFIG_GENERIC_TIME_VSYSCALL=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
-CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
-CONFIG_GENERIC_CMOS_UPDATE=y
-
-#
-# Timers subsystem
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ_COMMON=y
-# CONFIG_HZ_PERIODIC is not set
-# CONFIG_NO_HZ_IDLE is not set
-CONFIG_NO_HZ_FULL=y
-# CONFIG_NO_HZ_FULL_ALL is not set
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-
-#
-# CPU/Task time and stats accounting
-#
-CONFIG_VIRT_CPU_ACCOUNTING=y
-CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_BACKLIGHT_APPLE=m
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BALLOON_COMPACTION=y
+CONFIG_BAREUDP=m
+CONFIG_BCM7XXX_PHY=m
+CONFIG_BCM87XX_PHY=m
+CONFIG_BCMA=m
+CONFIG_BCMA_DRIVER_GMAC_CMN=y
+CONFIG_BCMA_DRIVER_GPIO=y
+CONFIG_BCMA_HOST_PCI=y
+CONFIG_BCMA_HOST_PCI_POSSIBLE=y
+CONFIG_BE2ISCSI=m
+CONFIG_BE2NET=m
+CONFIG_BE2NET_HWMON=y
+CONFIG_BE2NET_LANCER=y
+CONFIG_BE2NET_SKYHAWK=y
+CONFIG_BFQ_GROUP_IOSCHED=y
+CONFIG_BIG_KEYS=y
+CONFIG_BINFMT_ELF=y
+CONFIG_BINFMT_MISC=m
+CONFIG_BINFMT_SCRIPT=y
+CONFIG_BLK_CGROUP=y
+CONFIG_BLK_CGROUP_FC_APPID=y
+CONFIG_BLK_CGROUP_IOLATENCY=y
+CONFIG_BLK_DEBUG_FS=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+CONFIG_BLK_DEV_DM=m
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_BLK_DEV_INTEGRITY=y
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_BLK_DEV_LOOP=m
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
+CONFIG_BLK_DEV_MD=y
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NULL_BLK=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_PMEM=m
+CONFIG_BLK_DEV_RAM=m
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+CONFIG_BLK_DEV_RBD=m
+CONFIG_BLK_DEV_SD=m
+CONFIG_BLK_DEV_SR=m
+CONFIG_BLK_DEV_THROTTLING=y
+CONFIG_BLK_WBT=y
+CONFIG_BLK_WBT_MQ=y
+CONFIG_BNX2=m
+CONFIG_BNX2X=m
+CONFIG_BNX2X_SRIOV=y
+CONFIG_BNXT=m
+CONFIG_BNXT_DCB=y
+CONFIG_BNXT_FLOWER_OFFLOAD=y
+CONFIG_BNXT_SRIOV=y
+CONFIG_BONDING=m
+CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
+CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
+CONFIG_BOOT_PRINTK_DELAY=y
+CONFIG_BOUNCE=y
+CONFIG_BPF_EVENTS=y
+CONFIG_BPF_JIT=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
+CONFIG_BPF_KPROBE_OVERRIDE=y
+CONFIG_BPF_LSM=y
+CONFIG_BPF_PROG_TYPE_LSM=y
+CONFIG_BPF_STREAM_PARSER=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_UNPRIV_DEFAULT_OFF=y
+CONFIG_BRANCH_PROFILE_NONE=y
+CONFIG_BRCMFMAC=m
+CONFIG_BRCMFMAC_PCIE=y
+CONFIG_BRCMFMAC_SDIO=y
+CONFIG_BRCMFMAC_USB=y
+CONFIG_BRCMSMAC=m
+CONFIG_BRIDGE=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+CONFIG_BRIDGE_NETFILTER=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_VLAN_FILTERING=y
+CONFIG_BROADCOM_PHY=m
+CONFIG_BSD_DISKLABEL=y
 CONFIG_BSD_PROCESS_ACCT=y
 CONFIG_BSD_PROCESS_ACCT_V3=y
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_RCU=y
-# CONFIG_PREEMPT_RCU is not set
-CONFIG_RCU_STALL_COMMON=y
-CONFIG_CONTEXT_TRACKING=y
-CONFIG_RCU_USER_QS=y
-# CONFIG_CONTEXT_TRACKING_FORCE is not set
-CONFIG_RCU_FANOUT=64
-CONFIG_RCU_FANOUT_LEAF=16
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_RCU_FAST_NO_HZ is not set
-# CONFIG_TREE_RCU_TRACE is not set
-CONFIG_RCU_NOCB_CPU=y
-CONFIG_RCU_NOCB_CPU_NONE=y
-# CONFIG_RCU_NOCB_CPU_ZERO is not set
-# CONFIG_RCU_NOCB_CPU_ALL is not set
-CONFIG_BUILD_BIN2C=y
-# CONFIG_IKCONFIG is not set
-CONFIG_LOG_BUF_SHIFT=20
-CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
-CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
-CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
-CONFIG_ARCH_SUPPORTS_INT128=y
-CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
-CONFIG_ARCH_USES_NUMA_PROT_NONE=y
-CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
-CONFIG_NUMA_BALANCING=y
+CONFIG_BT=m
+CONFIG_BTT=y
+CONFIG_BT_ATH3K=m
+CONFIG_BT_BCM=m
+CONFIG_BT_BNEP=m
+CONFIG_BT_BNEP_MC_FILTER=y
+CONFIG_BT_BNEP_PROTO_FILTER=y
+CONFIG_BT_BREDR=y
+CONFIG_BT_CMTP=m
+CONFIG_BT_DEBUGFS=y
+CONFIG_BT_HCIBCM203X=m
+CONFIG_BT_HCIBFUSB=m
+CONFIG_BT_HCIBPA10X=m
+CONFIG_BT_HCIBTSDIO=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
+CONFIG_BT_HCIBTUSB_BCM=y
+CONFIG_BT_HCIBTUSB_MTK=y
+CONFIG_BT_HCIBTUSB_RTL=y
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_3WIRE=y
+CONFIG_BT_HCIUART_ATH3K=y
+CONFIG_BT_HCIUART_BCSP=y
+CONFIG_BT_HCIUART_H4=y
+CONFIG_BT_HCIVHCI=m
+CONFIG_BT_HIDP=m
+CONFIG_BT_HS=y
+CONFIG_BT_INTEL=m
+CONFIG_BT_LE=y
+CONFIG_BT_MRVL=m
+CONFIG_BT_MRVL_SDIO=m
+CONFIG_BT_RFCOMM=m
+CONFIG_BT_RFCOMM_TTY=y
+CONFIG_BT_RTL=m
+CONFIG_BUG_ON_DATA_CORRUPTION=y
+CONFIG_CACHEFILES=m
+CONFIG_CAN=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_CC770=m
+CONFIG_CAN_CC770_PLATFORM=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_DEV=m
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GW=m
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_SJA1000=m
+CONFIG_CAN_SJA1000_PLATFORM=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_SOFTING=m
+CONFIG_CAN_UCAN=m
+CONFIG_CAN_VCAN=m
+CONFIG_CAPI_AVM=y
+CONFIG_CARDBUS=y
+CONFIG_CAVIUM_PTP=y
+CONFIG_CB710_CORE=m
+CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
+CONFIG_CDROM_PKTCDVD=m
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+CONFIG_CEC_PLATFORM_DRIVERS=y
+CONFIG_CEPH_FS=m
+CONFIG_CEPH_FS_POSIX_ACL=y
+CONFIG_CEPH_FS_SECURITY_LABEL=y
+CONFIG_CEPH_LIB=m
+CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
+CONFIG_CFG80211=m
+CONFIG_CFG80211_DEFAULT_PS=y
+CONFIG_CFS_BANDWIDTH=y
 CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_PIDS=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
+CONFIG_CGROUP_BPF=y
 CONFIG_CGROUP_CPUACCT=y
-CONFIG_PAGE_COUNTER=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_NET_CLASSID=y
+CONFIG_CGROUP_NET_PRIO=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_PIDS=y
+CONFIG_CGROUP_RDMA=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_CHARGER_SMB347=m
+CONFIG_CHECKPOINT_RESTORE=y
+CONFIG_CHELSIO_INLINE_CRYPTO=y
+CONFIG_CHELSIO_IPSEC_INLINE=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_CHELSIO_TLS_DEVICE=m
+CONFIG_CHR_DEV_SCH=m
+CONFIG_CHR_DEV_SG=m
+CONFIG_CHR_DEV_ST=m
+CONFIG_CICADA_PHY=m
+CONFIG_CIFS=m
+CONFIG_CIFS_ACL=y
+CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
+CONFIG_CIFS_DEBUG=y
+CONFIG_CIFS_DFS_UPCALL=y
+CONFIG_CIFS_POSIX=y
+CONFIG_CIFS_SMB_DIRECT=y
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_UPCALL=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+CONFIG_CIFS_XATTR=y
+CONFIG_CLEANCACHE=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_CLS_U32_PERF=y
+CONFIG_CNIC=m
+CONFIG_COMPACTION=y
+CONFIG_COMPAL_LAPTOP=m
+CONFIG_CONFIGFS_FS=y
+CONFIG_CONNECTOR=y
+CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_CORDIC=m
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+CONFIG_CORTINA_PHY=m
+CONFIG_COUNTER=m
+CONFIG_CPUMASK_OFFSTACK=y
+CONFIG_CPUSETS=y
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=y
+CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_STAT=y
+CONFIG_CPU_IBPB_ENTRY=y
+CONFIG_CPU_IBRS_ENTRY=y
+CONFIG_CPU_IDLE=y
+CONFIG_CPU_IDLE_GOV_HALTPOLL=y
+CONFIG_CPU_IDLE_GOV_MENU=y
+CONFIG_CPU_UNRET_ENTRY=y
+CONFIG_CRAMFS=m
+CONFIG_CRASH_DUMP=y
+CONFIG_CRC16=y
+CONFIG_CRC32=y
+CONFIG_CRC32_SLICEBY8=y
+CONFIG_CRC7=m
+CONFIG_CRC8=m
+CONFIG_CRC_CCITT=y
+CONFIG_CRC_ITU_T=m
+CONFIG_CRC_T10DIF=y
+CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_CRYPTO=y
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_AES_NI_INTEL=y
+CONFIG_CRYPTO_AES_X86_64=y
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_BLOWFISH_X86_64=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m
+CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m
+CONFIG_CRYPTO_CAMELLIA_X86_64=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST5_AVX_X86_64=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_CAST6_AVX_X86_64=m
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_CFB=y
+CONFIG_CRYPTO_CHACHA20=m
+CONFIG_CRYPTO_CHACHA20POLY1305=m
+CONFIG_CRYPTO_CHACHA20_X86_64=m
+CONFIG_CRYPTO_CMAC=m
+CONFIG_CRYPTO_CRC32=m
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRC32C_INTEL=m
+CONFIG_CRYPTO_CRC32_PCLMUL=m
+CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m
+CONFIG_CRYPTO_CRYPTD=y
+CONFIG_CRYPTO_CTR=y
+CONFIG_CRYPTO_CTS=y
+CONFIG_CRYPTO_DEFLATE=y
+CONFIG_CRYPTO_DES3_EDE_X86_64=m
+CONFIG_CRYPTO_DES=m
+CONFIG_CRYPTO_DEV_CCP=y
+CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
+CONFIG_CRYPTO_DEV_CCP_DD=m
+CONFIG_CRYPTO_DEV_CHELSIO=m
+CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
+CONFIG_CRYPTO_DEV_PADLOCK=m
+CONFIG_CRYPTO_DEV_PADLOCK_AES=m
+CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
+CONFIG_CRYPTO_DEV_QAT_4XXX=m
+CONFIG_CRYPTO_DEV_QAT_C3XXX=m
+CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m
+CONFIG_CRYPTO_DEV_QAT_C62X=m
+CONFIG_CRYPTO_DEV_QAT_C62XVF=m
+CONFIG_CRYPTO_DEV_QAT_DH895xCC=m
+CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m
+CONFIG_CRYPTO_DEV_SP_CCP=y
+CONFIG_CRYPTO_DEV_SP_PSP=y
+CONFIG_CRYPTO_DH=m
+CONFIG_CRYPTO_DRBG_CTR=y
+CONFIG_CRYPTO_DRBG_HASH=y
+CONFIG_CRYPTO_DRBG_HMAC=y
+CONFIG_CRYPTO_DRBG_MENU=y
+CONFIG_CRYPTO_ECB=y
+CONFIG_CRYPTO_ECDH=m
+CONFIG_CRYPTO_ECHAINIV=m
+CONFIG_CRYPTO_ESSIV=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_FIPS=y
+CONFIG_CRYPTO_FIPS_NAME="Rocky Linux 8 - Kernel Cryptographic API"
+CONFIG_CRYPTO_GCM=y
+CONFIG_CRYPTO_GF128MUL=y
+CONFIG_CRYPTO_GHASH=y
+CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_HW=y
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MCRYPTD=m
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_POLY1305=m
+CONFIG_CRYPTO_POLY1305_X86_64=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m
+CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
+CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA1_MB=m
+CONFIG_CRYPTO_SHA1_SSSE3=y
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA256_MB=m
+CONFIG_CRYPTO_SHA256_SSSE3=y
+CONFIG_CRYPTO_SHA3=m
+CONFIG_CRYPTO_SHA512=y
+CONFIG_CRYPTO_SHA512_MB=m
+CONFIG_CRYPTO_SHA512_SSSE3=y
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
+CONFIG_CRYPTO_TWOFISH_X86_64=m
+CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_USER_API_AEAD=y
+CONFIG_CRYPTO_USER_API_HASH=y
+CONFIG_CRYPTO_USER_API_RNG=y
+CONFIG_CRYPTO_USER_API_SKCIPHER=y
+CONFIG_CRYPTO_VMAC=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_XTS=m
+CONFIG_CUSE=m
+CONFIG_CXL_BIMODAL=y
+CONFIG_CYCLADES=m
+CONFIG_DAMON=y
+CONFIG_DAMON_DBGFS=y
+CONFIG_DAMON_PADDR=y
+CONFIG_DAMON_RECLAIM=y
+CONFIG_DAMON_VADDR=y
+CONFIG_DAVICOM_PHY=m
+CONFIG_DCA=m
+CONFIG_DCB=y
+CONFIG_DCDBAS=m
+CONFIG_DEBUG_BOOT_PARAMS=y
+CONFIG_DEBUG_FS=y
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_BTF=y
+CONFIG_DEBUG_INFO_DWARF4=y
+CONFIG_DEBUG_KERNEL=y
+CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
+CONFIG_DEBUG_LIST=y
+CONFIG_DEBUG_SECTION_MISMATCH=y
+CONFIG_DEBUG_SHIRQ=y
+CONFIG_DEBUG_STACKOVERFLOW=y
+CONFIG_DECOMPRESS_LZ4=y
+CONFIG_DEFAULT_CUBIC=y
+CONFIG_DEFAULT_FQ_CODEL=y
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_DEFAULT_NET_SCH="fq_codel"
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+CONFIG_DEFERRED_STRUCT_PAGE_INIT=y
+CONFIG_DELL_LAPTOP=m
+CONFIG_DELL_RBTN=m
+CONFIG_DELL_RBU=m
+CONFIG_DELL_SMBIOS=m
+CONFIG_DELL_SMBIOS_WMI=y
+CONFIG_DELL_SMO8800=m
+CONFIG_DELL_WMI=m
+CONFIG_DELL_WMI_AIO=m
+CONFIG_DELL_WMI_LED=m
+CONFIG_DELL_WMI_SYSMAN=m
+CONFIG_DETECT_HUNG_TASK=y
+CONFIG_DEVICE_PRIVATE=y
+CONFIG_DEVMEM=y
+CONFIG_DEVPORT=y
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DEV_DAX=m
+CONFIG_DEV_DAX_PMEM=m
+CONFIG_DEV_DAX_PMEM_COMPAT=m
+CONFIG_DE_AOC=y
+CONFIG_DL2K=m
+CONFIG_DLCI=m
+CONFIG_DLCI_MAX=8
+CONFIG_DLM=m
+CONFIG_DLM_DEBUG=y
+CONFIG_DMADEVICES=y
+CONFIG_DMATEST=m
+CONFIG_DMA_ENGINE=y
+CONFIG_DMIID=y
+CONFIG_DMI_SYSFS=y
+CONFIG_DM_CACHE=m
+CONFIG_DM_CACHE_SMQ=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_DEBUG=y
+CONFIG_DM_DELAY=m
+CONFIG_DM_ERA=m
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_INTEGRITY=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_LOG_WRITES=m
+CONFIG_DM_MIRROR=m
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_HST=m
+CONFIG_DM_MULTIPATH_IOA=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+CONFIG_DM_RAID=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_SWITCH=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_UEVENT=y
+CONFIG_DM_VERITY=m
+CONFIG_DM_WRITECACHE=m
+CONFIG_DM_ZERO=m
+CONFIG_DNET=m
+CONFIG_DNOTIFY=y
+CONFIG_DNS_RESOLVER=m
+CONFIG_DP83640_PHY=m
+CONFIG_DP83822_PHY=m
+CONFIG_DP83848_PHY=m
+CONFIG_DP83867_PHY=m
+CONFIG_DP83TC811_PHY=m
+CONFIG_DPTF_POWER=m
+CONFIG_DRM=m
+CONFIG_DRM_AMDGPU=m
+CONFIG_DRM_AMDGPU_USERPTR=y
+CONFIG_DRM_AMD_ACP=y
+CONFIG_DRM_AMD_DC=y
+CONFIG_DRM_AMD_DC_DCN1_0=y
+CONFIG_DRM_AMD_DC_PRE_VEGA=y
+CONFIG_DRM_AST=m
+CONFIG_DRM_BOCHS=m
+CONFIG_DRM_CIRRUS_QEMU=m
+CONFIG_DRM_DP_AUX_CHARDEV=y
+CONFIG_DRM_FBDEV_EMULATION=y
+CONFIG_DRM_FBDEV_OVERALLOC=100
+CONFIG_DRM_GMA3600=y
+CONFIG_DRM_GMA500=m
+CONFIG_DRM_GMA600=y
+CONFIG_DRM_I2C_CH7006=m
+CONFIG_DRM_I2C_SIL164=m
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_CAPTURE_ERROR=y
+CONFIG_DRM_I915_COMPRESS_ERROR=y
+CONFIG_DRM_I915_GVT=y
+CONFIG_DRM_I915_GVT_KVMGT=m
+CONFIG_DRM_I915_USERPTR=y
+CONFIG_DRM_LOAD_EDID_FIRMWARE=y
+CONFIG_DRM_MGAG200=m
+CONFIG_DRM_NOUVEAU=m
+CONFIG_DRM_NOUVEAU_BACKLIGHT=y
+CONFIG_DRM_QXL=m
+CONFIG_DRM_RADEON=m
+CONFIG_DRM_RADEON_USERPTR=y
+CONFIG_DRM_UDL=m
+CONFIG_DRM_VBOXVIDEO=m
+CONFIG_DRM_VIRTIO_GPU=m
+CONFIG_DRM_VKMS=m
+CONFIG_DRM_VMWGFX=m
+CONFIG_DRM_VMWGFX_FBCON=y
+CONFIG_DUMMY=m
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_DUMMY_CONSOLE_COLUMNS=80
+CONFIG_DUMMY_CONSOLE_ROWS=25
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_IR=y
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_B2C2_FLEXCOP_USB=m
+CONFIG_DVB_BT8XX=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET_PATCH=m
+CONFIG_DVB_CORE=m
+CONFIG_DVB_CX24117=m
+CONFIG_DVB_CX24120=m
+CONFIG_DVB_CXD2099=m
+CONFIG_DVB_DDBRIDGE=m
+CONFIG_DVB_DM1105=m
+CONFIG_DVB_DRX39XYJ=m
+CONFIG_DVB_DYNAMIC_MINORS=y
+CONFIG_DVB_FIREDTV=m
+CONFIG_DVB_HOPPER=m
+CONFIG_DVB_LGDT3306A=m
+CONFIG_DVB_M88DS3103=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_MAX_ADAPTERS=8
+CONFIG_DVB_MN88472=m
+CONFIG_DVB_MN88473=m
+CONFIG_DVB_NET=y
+CONFIG_DVB_NGENE=m
+CONFIG_DVB_PLUTO2=m
+CONFIG_DVB_PT1=m
+CONFIG_DVB_SI2165=m
+CONFIG_DVB_SI2168=m
+CONFIG_DVB_TC90522=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_DVB_USB=m
+CONFIG_DVB_USB_A800=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DWMAC_INTEL=m
+CONFIG_DW_DMAC=m
+CONFIG_DYNAMIC_DEBUG=y
+CONFIG_DYNAMIC_FTRACE=y
+CONFIG_E1000=m
+CONFIG_E1000E=m
+CONFIG_E1000E_HWTS=y
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_EARLY_PRINTK_EFI=y
+CONFIG_EARLY_PRINTK_USB_XDBC=y
+CONFIG_EDAC=y
+CONFIG_EDAC_AMD64=m
+CONFIG_EDAC_DECODE_MCE=m
+CONFIG_EDAC_E752X=m
+CONFIG_EDAC_GHES=y
+CONFIG_EDAC_I10NM=m
+CONFIG_EDAC_I3000=m
+CONFIG_EDAC_I3200=m
+CONFIG_EDAC_I5000=m
+CONFIG_EDAC_I5100=m
+CONFIG_EDAC_I5400=m
+CONFIG_EDAC_I7300=m
+CONFIG_EDAC_I7CORE=m
+CONFIG_EDAC_I82975X=m
+CONFIG_EDAC_IE31200=m
+CONFIG_EDAC_IGEN6=m
+CONFIG_EDAC_LEGACY_SYSFS=y
+CONFIG_EDAC_PND2=m
+CONFIG_EDAC_SBRIDGE=m
+CONFIG_EDAC_SKX=m
+CONFIG_EDAC_X38=m
+CONFIG_EDD=m
+CONFIG_EEEPC_LAPTOP=m
+CONFIG_EEEPC_WMI=m
+CONFIG_EEPROM_93CX6=m
+CONFIG_EEPROM_LEGACY=m
+CONFIG_EEPROM_MAX6875=m
+CONFIG_EFI=y
+CONFIG_EFIVAR_FS=y
+CONFIG_EFI_MIXED=y
+CONFIG_EFI_PARTITION=y
+CONFIG_EFI_RCI2_TABLE=y
+CONFIG_EFI_RUNTIME_MAP=y
+CONFIG_EFI_STUB=y
+CONFIG_EFI_VARS=y
+CONFIG_EFI_VARS_PSTORE=y
+CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_ENA_ETHERNET=m
+CONFIG_ENCLOSURE_SERVICES=m
+CONFIG_ENCRYPTED_KEYS=y
+CONFIG_ENERGY_MODEL=y
+CONFIG_ENIC=m
+CONFIG_EPIC100=m
+CONFIG_EPOLL=y
+CONFIG_ETHOC=m
+CONFIG_EVENT_TRACING=y
+CONFIG_EVM=y
+CONFIG_EVM_ATTR_FSUUID=y
+CONFIG_EXPORTFS=y
+CONFIG_EXPORTFS_BLOCK_OPS=y
+CONFIG_EXT4_FS=m
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_EXT4_USE_FOR_EXT2=y
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_F71808E_WDT=m
+CONFIG_FAILOVER=m
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_FANOTIFY=y
+CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
+CONFIG_FAT_FS=m
+CONFIG_FB=y
+CONFIG_FB_EFI=y
+CONFIG_FB_HYPERV=m
+CONFIG_FB_NVIDIA_BACKLIGHT=y
+CONFIG_FB_RADEON_BACKLIGHT=y
+CONFIG_FB_TILEBLITTING=y
+CONFIG_FB_VESA=y
+CONFIG_FCOE_FNIC=m
+CONFIG_FC_APPID=y
+CONFIG_FHANDLE=y
+CONFIG_FIPS_SIGNATURE_SELFTEST=y
+CONFIG_FIREWIRE=m
+CONFIG_FIREWIRE_NET=m
+CONFIG_FIREWIRE_OHCI=m
+CONFIG_FIREWIRE_SBP2=m
+CONFIG_FIREWIRE_SERIAL=m
+CONFIG_FIXED_PHY=y
+CONFIG_FM10K=m
+CONFIG_FONT_SUPPORT=y
+CONFIG_FORTIFY_SOURCE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
+CONFIG_FRAME_WARN=2048
+CONFIG_FRONTSWAP=y
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSL_ERRATUM_A008585=y
+CONFIG_FSNOTIFY=y
+CONFIG_FS_DAX=y
+CONFIG_FTRACE=y
+CONFIG_FTRACE_MCOUNT_RECORD=y
+CONFIG_FTRACE_SYSCALLS=y
+CONFIG_FUJITSU_ES=m
+CONFIG_FUJITSU_LAPTOP=m
+CONFIG_FUJITSU_TABLET=m
+CONFIG_FUNCTION_GRAPH_TRACER=y
+CONFIG_FUNCTION_PROFILER=y
+CONFIG_FUNCTION_TRACER=y
+CONFIG_FUSE_DAX=y
+CONFIG_FUSE_FS=m
+CONFIG_FUSION=y
+CONFIG_FUSION_LOGGING=y
+CONFIG_FUSION_MAX_SGE=128
+CONFIG_FUSION_SAS=m
+CONFIG_FUSION_SPI=m
+CONFIG_FUTEX=y
+CONFIG_FWTTY_MAX_CARD_PORTS=32
+CONFIG_FWTTY_MAX_TOTAL_PORTS=64
+CONFIG_FW_CFG_SYSFS=y
+CONFIG_FW_LOADER=y
+CONFIG_GACT_PROB=y
+CONFIG_GENERIC_CPU=y
+CONFIG_GENERIC_ISA_DMA=y
+CONFIG_GENEVE=m
+CONFIG_GFS2_FS=m
+CONFIG_GFS2_FS_LOCKING_DLM=y
+CONFIG_GIGASET_BASE=m
+CONFIG_GIGASET_CAPI=y
+CONFIG_GIGASET_M101=m
+CONFIG_GIGASET_M105=m
+CONFIG_GLOB=y
+CONFIG_GPIOLIB=y
+CONFIG_GPIOLIB_FASTPATH_LIMIT=512
+CONFIG_GPIO_AMDPT=m
+CONFIG_GPIO_ICH=m
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_VIPERBOARD=m
+CONFIG_GVE=m
+CONFIG_HALTPOLL_CPUIDLE=m
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_HARDENED_USERCOPY=y
+CONFIG_HARDENED_USERCOPY_FALLBACK=y
+CONFIG_HARDLOCKUP_DETECTOR=y
+CONFIG_HDLC=m
+CONFIG_HDLC_CISCO=m
+CONFIG_HDLC_FR=m
+CONFIG_HDLC_PPP=m
+CONFIG_HDLC_RAW=m
+CONFIG_HDMI_LPE_AUDIO=m
+CONFIG_HEADERS_CHECK=y
+CONFIG_HIBERNATION=y
+CONFIG_HID=y
+CONFIG_HIDRAW=y
+CONFIG_HID_A4TECH=m
+CONFIG_HID_ACRUX=m
+CONFIG_HID_ALPS=m
+CONFIG_HID_APPLE=m
+CONFIG_HID_APPLEIR=m
+CONFIG_HID_ASUS=m
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HID_BELKIN=m
+CONFIG_HID_BETOP_FF=m
+CONFIG_HID_CHERRY=m
+CONFIG_HID_CHICONY=m
+CONFIG_HID_CMEDIA=m
+CONFIG_HID_CORSAIR=m
+CONFIG_HID_CYPRESS=m
+CONFIG_HID_DRAGONRISE=m
+CONFIG_HID_ELAN=m
+CONFIG_HID_ELECOM=m
+CONFIG_HID_ELO=m
+CONFIG_HID_EZKEY=m
+CONFIG_HID_GEMBIRD=m
+CONFIG_HID_GENERIC=y
+CONFIG_HID_GFRM=m
+CONFIG_HID_GREENASIA=m
+CONFIG_HID_GT683R=m
+CONFIG_HID_GYRATION=m
+CONFIG_HID_HOLTEK=m
+CONFIG_HID_HYPERV_MOUSE=m
+CONFIG_HID_ICADE=m
+CONFIG_HID_ITE=m
+CONFIG_HID_JABRA=m
+CONFIG_HID_KENSINGTON=m
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=m
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LED=m
+CONFIG_HID_LENOVO=m
+CONFIG_HID_LOGITECH=m
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_HID_LOGITECH_HIDPP=m
+CONFIG_HID_MAGICMOUSE=y
+CONFIG_HID_MICROSOFT=m
+CONFIG_HID_MONTEREY=m
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTI=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=m
+CONFIG_HID_PENMOUNT=m
+CONFIG_HID_PETALYNX=m
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PID=y
+CONFIG_HID_PLANTRONICS=m
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_RMI=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=m
+CONFIG_HID_SENSOR_ACCEL_3D=m
+CONFIG_HID_SENSOR_ALS=m
+CONFIG_HID_SENSOR_CUSTOM_SENSOR=m
+CONFIG_HID_SENSOR_DEVICE_ROTATION=m
+CONFIG_HID_SENSOR_GYRO_3D=m
+CONFIG_HID_SENSOR_HUB=y
+CONFIG_HID_SENSOR_HUMIDITY=m
+CONFIG_HID_SENSOR_IIO_COMMON=m
+CONFIG_HID_SENSOR_IIO_TRIGGER=m
+CONFIG_HID_SENSOR_INCLINOMETER_3D=m
+CONFIG_HID_SENSOR_MAGNETOMETER_3D=m
+CONFIG_HID_SENSOR_PRESS=m
+CONFIG_HID_SENSOR_PROX=m
+CONFIG_HID_SENSOR_TEMP=m
+CONFIG_HID_SMARTJOYPLUS=m
+CONFIG_HID_SONY=m
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_STEELSERIES=m
+CONFIG_HID_SUNPLUS=m
+CONFIG_HID_THINGM=m
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=m
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WACOM=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_WIIMOTE=m
+CONFIG_HID_XINMO=m
+CONFIG_HID_ZEROPLUS=m
+CONFIG_HID_ZYDACRON=m
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_HINIC=m
+CONFIG_HISAX_16_3=y
+CONFIG_HISAX_1TR6=y
+CONFIG_HISAX_AVM_A1_PCMCIA=y
+CONFIG_HISAX_BKM_A4T=y
+CONFIG_HISAX_DIEHLDIVA=y
+CONFIG_HISAX_ELSA=y
+CONFIG_HISAX_ENTERNOW_PCI=y
+CONFIG_HISAX_EURO=y
+CONFIG_HISAX_FRITZPCI=y
+CONFIG_HISAX_FRITZ_PCIPNP=m
+CONFIG_HISAX_GAZEL=y
+CONFIG_HISAX_HFC4S8S=m
+CONFIG_HISAX_HFC_PCI=y
+CONFIG_HISAX_HFC_SX=y
+CONFIG_HISAX_MAX_CARDS=8
+CONFIG_HISAX_NETJET=y
+CONFIG_HISAX_NETJET_U=y
+CONFIG_HISAX_NI1=y
+CONFIG_HISAX_NICCY=y
+CONFIG_HISAX_NO_KEYPAD=y
+CONFIG_HISAX_NO_LLC=y
+CONFIG_HISAX_NO_SENDCOMPLETE=y
+CONFIG_HISAX_S0BOX=y
+CONFIG_HISAX_SCT_QUADRO=y
+CONFIG_HISAX_SEDLBAUER=y
+CONFIG_HISAX_ST5481=m
+CONFIG_HISAX_TELESPCI=y
+CONFIG_HISAX_W6692=y
+CONFIG_HISILICON_ERRATUM_161010101=y
+CONFIG_HIST_TRIGGERS=y
+CONFIG_HMM=y
+CONFIG_HMM_MIRROR=y
+CONFIG_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+CONFIG_HOTPLUG_PCI_PCIE=y
+CONFIG_HOTPLUG_PCI_SHPC=y
+CONFIG_HPET=y
+CONFIG_HPET_MMAP=y
+CONFIG_HPET_TIMER=y
+CONFIG_HPWDT_NMI_DECODING=y
+CONFIG_HP_ACCEL=m
+CONFIG_HP_ILO=m
+CONFIG_HP_WATCHDOG=m
+CONFIG_HP_WIRELESS=m
+CONFIG_HP_WMI=m
+CONFIG_HSA_AMD=y
+CONFIG_HUGETLBFS=y
+CONFIG_HVC_XEN=y
+CONFIG_HVC_XEN_FRONTEND=y
+CONFIG_HWLAT_TRACER=y
+CONFIG_HWMON=y
+CONFIG_HWPOISON_INJECT=m
+CONFIG_HWSPINLOCK=y
+CONFIG_HW_CONSOLE=y
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_AMD=m
+CONFIG_HW_RANDOM_HISI=y
+CONFIG_HW_RANDOM_INTEL=m
+CONFIG_HW_RANDOM_S390=y
+CONFIG_HW_RANDOM_TIMERIOMEM=m
+CONFIG_HW_RANDOM_TPM=y
+CONFIG_HW_RANDOM_VIA=m
+CONFIG_HW_RANDOM_VIRTIO=y
+CONFIG_HYPERV=m
+CONFIG_HYPERVISOR_GUEST=y
+CONFIG_HYPERV_BALLOON=m
+CONFIG_HYPERV_IOMMU=y
+CONFIG_HYPERV_KEYBOARD=m
+CONFIG_HYPERV_NET=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_HYPERV_UTILS=m
+CONFIG_HYPERV_VSOCKETS=m
+CONFIG_HYSDN=m
+CONFIG_HYSDN_CAPI=y
+CONFIG_HZ_1000=y
+CONFIG_I2C=y
+CONFIG_I2C_ALGOBIT=m
+CONFIG_I2C_ALGOPCA=m
+CONFIG_I2C_ALGOPCF=m
+CONFIG_I2C_AMD756=m
+CONFIG_I2C_AMD756_S4882=m
+CONFIG_I2C_AMD8111=m
+CONFIG_I2C_CHARDEV=m
+CONFIG_I2C_COMPAT=y
+CONFIG_I2C_DESIGNWARE_BAYTRAIL=y
+CONFIG_I2C_DESIGNWARE_PLATFORM=m
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_HELPER_AUTO=y
+CONFIG_I2C_HID=m
+CONFIG_I2C_HID_ACPI=m
+CONFIG_I2C_I801=m
+CONFIG_I2C_ISCH=m
+CONFIG_I2C_ISMT=m
+CONFIG_I2C_MLXCPLD=m
+CONFIG_I2C_MUX=m
+CONFIG_I2C_MUX_MLXCPLD=m
+CONFIG_I2C_NFORCE2=m
+CONFIG_I2C_NFORCE2_S4985=m
+CONFIG_I2C_PARPORT=m
+CONFIG_I2C_PARPORT_LIGHT=m
+CONFIG_I2C_PCA_PLATFORM=m
+CONFIG_I2C_PIIX4=m
+CONFIG_I2C_SCMI=m
+CONFIG_I2C_SIMTEC=m
+CONFIG_I2C_SIS96X=m
+CONFIG_I2C_SMBUS=m
+CONFIG_I2C_STUB=m
+CONFIG_I2C_TINY_USB=m
+CONFIG_I2C_VIA=m
+CONFIG_I2C_VIAPRO=m
+CONFIG_I2C_VIPERBOARD=m
+CONFIG_I40E=m
+CONFIG_I40EVF=m
+CONFIG_I40E_DCB=y
+CONFIG_I6300ESB_WDT=m
+CONFIG_I8K=m
+CONFIG_IA32_EMULATION=y
+CONFIG_IAVF=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_ICE=m
+CONFIG_ICPLUS_PHY=m
+CONFIG_IDEAPAD_LAPTOP=m
+CONFIG_IDLE_PAGE_TRACKING=y
+CONFIG_IE6XX_WDT=m
+CONFIG_IEEE802154=m
+CONFIG_IEEE802154_6LOWPAN=m
+CONFIG_IEEE802154_DRIVERS=m
+CONFIG_IEEE802154_FAKELB=m
+CONFIG_IEEE802154_SOCKET=m
+CONFIG_IFB=m
+CONFIG_IFCVF=m
+CONFIG_IGB=m
+CONFIG_IGBVF=m
+CONFIG_IGB_DCA=y
+CONFIG_IGB_HWMON=y
+CONFIG_IGC=m
+CONFIG_IIO=m
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+CONFIG_IKHEADERS=m
+CONFIG_IMA=y
+CONFIG_IMA_APPRAISE=y
+CONFIG_IMA_APPRAISE_BOOTPARAM=y
+CONFIG_IMA_APPRAISE_MODSIG=y
+CONFIG_IMA_ARCH_POLICY=y
+CONFIG_IMA_DEFAULT_HASH="sha256"
+CONFIG_IMA_DEFAULT_HASH_SHA256=y
+CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig"
+CONFIG_IMA_LSM_RULES=y
+CONFIG_IMA_MEASURE_PCR_IDX=10
+CONFIG_IMA_READ_POLICY=y
+CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT=y
+CONFIG_IMA_SIG_TEMPLATE=y
+CONFIG_IMA_TRUSTED_KEYRING=y
+CONFIG_IMA_WRITE_POLICY=y
+CONFIG_INET6_AH=m
+CONFIG_INET6_ESP=m
+CONFIG_INET6_ESPINTCP=y
+CONFIG_INET6_ESP_OFFLOAD=m
+CONFIG_INET6_IPCOMP=m
+CONFIG_INET6_XFRM_MODE_BEET=m
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=m
+CONFIG_INET6_XFRM_MODE_TUNNEL=m
+CONFIG_INET=y
+CONFIG_INET_AH=m
+CONFIG_INET_DIAG=m
+CONFIG_INET_DIAG_DESTROY=y
+CONFIG_INET_ESP=m
+CONFIG_INET_ESPINTCP=y
+CONFIG_INET_ESP_OFFLOAD=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_MPTCP_DIAG=m
+CONFIG_INET_RAW_DIAG=m
+CONFIG_INET_TUNNEL=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_BNXT_RE=m
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_INFINIBAND_EFA=m
+CONFIG_INFINIBAND_HFI1=m
+CONFIG_INFINIBAND_I40IW=m
+CONFIG_INFINIBAND_IPOIB=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IRDMA=m
+CONFIG_INFINIBAND_ISER=m
+CONFIG_INFINIBAND_ISERT=m
+CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
+CONFIG_INFINIBAND_OPA_VNIC=m
+CONFIG_INFINIBAND_QEDR=m
+CONFIG_INFINIBAND_RDMAVT=m
+CONFIG_INFINIBAND_SRP=m
+CONFIG_INFINIBAND_SRPT=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USER_MAD=m
+CONFIG_INFINIBAND_USNIC=m
+CONFIG_INFINIBAND_VMWARE_PVRDMA=m
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_INOTIFY_USER=y
+CONFIG_INPUT=y
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_EVDEV=y
+CONFIG_INPUT_FF_MEMLESS=m
+CONFIG_INPUT_GP2A=m
+CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
+CONFIG_INPUT_JOYDEV=m
+CONFIG_INPUT_KEYBOARD=y
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_LEDS=y
+CONFIG_INPUT_MISC=y
+CONFIG_INPUT_MOUSE=y
+CONFIG_INPUT_MOUSEDEV=y
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+CONFIG_INPUT_PCSPKR=m
+CONFIG_INPUT_POLLDEV=m
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_SPARSEKMAP=m
+CONFIG_INPUT_TABLET=y
+CONFIG_INPUT_TOUCHSCREEN=y
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INT340X_THERMAL=m
+CONFIG_INTEGRITY=y
+CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
+CONFIG_INTEGRITY_AUDIT=y
+CONFIG_INTEGRITY_PLATFORM_KEYRING=y
+CONFIG_INTEGRITY_SIGNATURE=y
+CONFIG_INTEGRITY_TRUSTED_KEYRING=y
+CONFIG_INTEL_HFI_THERMAL=y
+CONFIG_INTEL_HID_EVENT=m
+CONFIG_INTEL_IDLE=y
+CONFIG_INTEL_IDMA64=m
+CONFIG_INTEL_IDXD=m
+CONFIG_INTEL_IDXD_PERFMON=y
+CONFIG_INTEL_IDXD_SVM=y
+CONFIG_INTEL_IFS=m
+CONFIG_INTEL_IOATDMA=m
+CONFIG_INTEL_IOMMU=y
+CONFIG_INTEL_IOMMU_FLOPPY_WA=y
+CONFIG_INTEL_IOMMU_PERF_EVENTS=y
+CONFIG_INTEL_IOMMU_SVM=y
+CONFIG_INTEL_IPS=m
+CONFIG_INTEL_ISHTP_ECLITE=m
+CONFIG_INTEL_ISH_HID=m
+CONFIG_INTEL_MEI=m
+CONFIG_INTEL_MEI_ME=m
+CONFIG_INTEL_MEI_WDT=m
+CONFIG_INTEL_OAKTRAIL=m
+CONFIG_INTEL_PCH_THERMAL=m
+CONFIG_INTEL_PMC_CORE=m
+CONFIG_INTEL_PMT_CRASHLOG=m
+CONFIG_INTEL_PMT_TELEMETRY=m
+CONFIG_INTEL_POWERCLAMP=m
+CONFIG_INTEL_QEP=m
+CONFIG_INTEL_RAPL=m
+CONFIG_INTEL_RST=m
+CONFIG_INTEL_SDSI=m
+CONFIG_INTEL_SPEED_SELECT_INTERFACE=m
+CONFIG_INTEL_TDX_GUEST=y
+CONFIG_INTEL_TH=m
+CONFIG_INTEL_TH_ACPI=m
+CONFIG_INTEL_TH_GTH=m
+CONFIG_INTEL_TH_MSU=m
+CONFIG_INTEL_TH_PCI=m
+CONFIG_INTEL_TH_PTI=m
+CONFIG_INTEL_TH_STH=m
+CONFIG_INTEL_TURBO_MAX_3=y
+CONFIG_INTEL_TXT=y
+CONFIG_INTEL_UNCORE_FREQ_CONTROL=m
+CONFIG_INTEL_VBTN=m
+CONFIG_INTEL_VSEC=m
+CONFIG_INTEL_WMI_THUNDERBOLT=m
+CONFIG_INTEL_XWAY_PHY=m
+CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_IONIC=m
+CONFIG_IOSCHED_BFQ=y
+CONFIG_IOSF_MBI=y
+CONFIG_IO_DELAY_0X80=y
+CONFIG_IP6_NF_FILTER=m
+CONFIG_IP6_NF_IPTABLES=m
+CONFIG_IP6_NF_MANGLE=m
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=m
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_NAT=m
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_IP6_NF_TARGET_MASQUERADE=m
+CONFIG_IP6_NF_TARGET_NPT=m
+CONFIG_IP6_NF_TARGET_REJECT=m
+CONFIG_IP6_NF_TARGET_SYNPROXY=m
+CONFIG_IPC_NS=y
+CONFIG_IPMB_DEVICE_INTERFACE=m
+CONFIG_IPMI_DEVICE_INTERFACE=m
+CONFIG_IPMI_HANDLER=m
+CONFIG_IPMI_PANIC_EVENT=y
+CONFIG_IPMI_PANIC_STRING=y
+CONFIG_IPMI_POWEROFF=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_SSIF=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPPP_FILTER=y
+CONFIG_IPV6=y
+CONFIG_IPV6_GRE=m
+CONFIG_IPV6_MIP6=m
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_OPTIMISTIC_DAD=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+CONFIG_IPV6_SIT=m
+CONFIG_IPV6_SIT_6RD=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_VTI=m
+CONFIG_IPVLAN=m
+CONFIG_IPVTAP=m
+CONFIG_IP_ADVANCED_ROUTER=y
+CONFIG_IP_FIB_TRIE_STATS=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARP_MANGLE=m
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_IPTABLES=m
+CONFIG_IP_NF_MANGLE=m
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_TARGET_REJECT=m
+CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_SCTP=m
+CONFIG_IP_SET=m
+CONFIG_IP_SET_BITMAP_IP=m
+CONFIG_IP_SET_BITMAP_IPMAC=m
+CONFIG_IP_SET_BITMAP_PORT=m
+CONFIG_IP_SET_HASH_IP=m
+CONFIG_IP_SET_HASH_IPMAC=m
+CONFIG_IP_SET_HASH_IPMARK=m
+CONFIG_IP_SET_HASH_IPPORT=m
+CONFIG_IP_SET_HASH_IPPORTIP=m
+CONFIG_IP_SET_HASH_IPPORTNET=m
+CONFIG_IP_SET_HASH_MAC=m
+CONFIG_IP_SET_HASH_NET=m
+CONFIG_IP_SET_HASH_NETIFACE=m
+CONFIG_IP_SET_HASH_NETNET=m
+CONFIG_IP_SET_HASH_NETPORT=m
+CONFIG_IP_SET_HASH_NETPORTNET=m
+CONFIG_IP_SET_LIST_SET=m
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_VS=m
+CONFIG_IP_VS_DH=m
+CONFIG_IP_VS_FO=m
+CONFIG_IP_VS_FTP=m
+CONFIG_IP_VS_IPV6=y
+CONFIG_IP_VS_LBLC=m
+CONFIG_IP_VS_LBLCR=m
+CONFIG_IP_VS_LC=m
+CONFIG_IP_VS_MH=m
+CONFIG_IP_VS_MH_TAB_INDEX=12
+CONFIG_IP_VS_NQ=m
+CONFIG_IP_VS_OVF=m
+CONFIG_IP_VS_PE_SIP=m
+CONFIG_IP_VS_PROTO_AH=y
+CONFIG_IP_VS_PROTO_ESP=y
+CONFIG_IP_VS_PROTO_SCTP=y
+CONFIG_IP_VS_PROTO_TCP=y
+CONFIG_IP_VS_PROTO_UDP=y
+CONFIG_IP_VS_RR=m
+CONFIG_IP_VS_SED=m
+CONFIG_IP_VS_SH=m
+CONFIG_IP_VS_SH_TAB_BITS=8
+CONFIG_IP_VS_TAB_BITS=12
+CONFIG_IP_VS_WLC=m
+CONFIG_IP_VS_WRR=m
+CONFIG_IRQ_REMAP=y
+CONFIG_IRQ_TIME_ACCOUNTING=y
+CONFIG_IR_ENE=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_GPIO_CIR=m
+CONFIG_IR_GPIO_TX=m
+CONFIG_IR_IGUANA=m
+CONFIG_IR_IMON=m
+CONFIG_IR_IMON_DECODER=m
+CONFIG_IR_IMON_RAW=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_JVC_DECODER=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_MCE_KBD_DECODER=m
+CONFIG_IR_NEC_DECODER=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_PWM_TX=m
+CONFIG_IR_RC5_DECODER=m
+CONFIG_IR_RC6_DECODER=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_SANYO_DECODER=m
+CONFIG_IR_SERIAL=m
+CONFIG_IR_SERIAL_TRANSMITTER=y
+CONFIG_IR_SIR=m
+CONFIG_IR_SONY_DECODER=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_TTUSBIR=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_ISCSI_IBFT=m
+CONFIG_ISCSI_IBFT_FIND=y
+CONFIG_ISCSI_TARGET=m
+CONFIG_ISCSI_TARGET_CXGB4=m
+CONFIG_ISCSI_TCP=m
+CONFIG_ISDN=y
+CONFIG_ISDN_AUDIO=y
+CONFIG_ISDN_CAPI=m
+CONFIG_ISDN_CAPI_CAPI20=m
+CONFIG_ISDN_CAPI_CAPIDRV=m
+CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE=y
+CONFIG_ISDN_CAPI_MIDDLEWARE=y
+CONFIG_ISDN_DIVERSION=m
+CONFIG_ISDN_DRV_AVMB1_B1PCI=m
+CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
+CONFIG_ISDN_DRV_AVMB1_C4=m
+CONFIG_ISDN_DRV_AVMB1_T1PCI=m
+CONFIG_ISDN_DRV_GIGASET=m
+CONFIG_ISDN_DRV_HISAX=m
+CONFIG_ISDN_I4L=m
+CONFIG_ISDN_MPP=y
+CONFIG_ISDN_PPP=y
+CONFIG_ISDN_PPP_VJ=y
+CONFIG_ISDN_TTY_FAX=y
+CONFIG_ISL29003=m
+CONFIG_ISL29020=m
+CONFIG_ISO9660_FS=m
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_ITCO_WDT=m
+CONFIG_IWLDVM=m
+CONFIG_IWLMVM=m
+CONFIG_IWLWIFI=m
+CONFIG_IWLWIFI_DEBUGFS=y
+CONFIG_IXGBE=m
+CONFIG_IXGBEVF=m
+CONFIG_IXGBE_DCA=y
+CONFIG_IXGBE_DCB=y
+CONFIG_IXGBE_HWMON=y
+CONFIG_JBD2=m
+CONFIG_JOLIET=y
+CONFIG_JUMP_LABEL=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
+CONFIG_KARMA_PARTITION=y
+CONFIG_KDB_CONTINUE_CATASTROPHIC=0
+CONFIG_KDB_DEFAULT_ENABLE=0x0
+CONFIG_KDB_KEYBOARD=y
+CONFIG_KERNEL_GZIP=y
+CONFIG_KEXEC=y
+CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y
+CONFIG_KEXEC_FILE=y
+CONFIG_KEXEC_JUMP=y
+CONFIG_KEXEC_SIG=y
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYS=y
+CONFIG_KGDB=y
+CONFIG_KGDB_KDB=y
+CONFIG_KGDB_LOW_LEVEL_TRAP=y
+CONFIG_KGDB_SERIAL_CONSOLE=y
+CONFIG_KGDB_TESTS=y
+CONFIG_KPROBES=y
+CONFIG_KPROBE_EVENTS=y
+CONFIG_KSM=y
+CONFIG_KUNIT=m
+CONFIG_KUNIT_ALL_TESTS=m
+CONFIG_KVM=m
+CONFIG_KVM_AMD=m
+CONFIG_KVM_AMD_SEV=y
+CONFIG_KVM_GUEST=y
+CONFIG_KVM_INTEL=m
+CONFIG_KVM_MMU_AUDIT=y
+CONFIG_L2TP=m
+CONFIG_L2TP_DEBUGFS=m
+CONFIG_L2TP_ETH=m
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_V3=y
+CONFIG_LCD_CLASS_DEVICE=m
+CONFIG_LCD_PLATFORM=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_LP5562=m
+CONFIG_LEDS_LT3593=m
+CONFIG_LEDS_MLXCPLD=m
+CONFIG_LEDS_MLXREG=m
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_CAMERA=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+CONFIG_LEDS_TRIGGER_DISK=y
+CONFIG_LEDS_TRIGGER_GPIO=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+CONFIG_LED_TRIGGER_PHY=y
+CONFIG_LEGACY_VSYSCALL_EMULATE=y
+CONFIG_LIBCRC32C=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_LIBNVDIMM=m
+CONFIG_LIQUIDIO=m
+CONFIG_LIQUIDIO_VF=m
+CONFIG_LIRC=y
+CONFIG_LIVEPATCH=y
+CONFIG_LLC=m
+CONFIG_LOAD_UEFI_KEYS=y
+CONFIG_LOCALVERSION=""
+CONFIG_LOCKD=m
+CONFIG_LOCKD_V4=y
+CONFIG_LOCKUP_DETECTOR=y
+CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT=y
+CONFIG_LOCK_DOWN_KERNEL=y
+CONFIG_LOCK_TORTURE_TEST=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGO=y
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_LOG_BUF_SHIFT=20
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_LOOPBACK_TARGET=m
+CONFIG_LPC_ICH=m
+CONFIG_LPC_SCH=m
+CONFIG_LSI_ET1011C_PHY=m
+CONFIG_LSM="yama,integrity,selinux,bpf"
+CONFIG_LSM_MMAP_MIN_ADDR=65535
+CONFIG_LWTUNNEL=y
+CONFIG_LWTUNNEL_BPF=y
+CONFIG_LXT_PHY=m
+CONFIG_MAC80211=m
+CONFIG_MAC80211_DEBUGFS=y
+CONFIG_MAC80211_HWSIM=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
+CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
+CONFIG_MAC80211_RC_MINSTREL=y
+CONFIG_MAC802154=m
+CONFIG_MACB=m
+CONFIG_MACHZ_WDT=m
+CONFIG_MACINTOSH_DRIVERS=y
+CONFIG_MACSEC=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_MAC_PARTITION=y
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_MAGIC_SYSRQ_SERIAL=y
+CONFIG_MAILBOX=y
+CONFIG_MANA_INFINIBAND=m
+CONFIG_MANTIS_CORE=m
+CONFIG_MAPPING_DIRTY_HELPERS=y
+CONFIG_MARVELL_10G_PHY=m
+CONFIG_MARVELL_PHY=m
+CONFIG_MAXLINEAR_GPHY=m
+CONFIG_MAXSMP=y
+CONFIG_MAX_RAW_DEVS=8192
+CONFIG_MD=y
+CONFIG_MDIO_BCM_UNIMAC=m
+CONFIG_MDIO_BITBANG=m
+CONFIG_MDIO_DEVICE=y
+CONFIG_MDIO_HISI_FEMAC=m
+CONFIG_MDIO_MSCC_MIIM=m
+CONFIG_MDIO_OCTEON=m
+CONFIG_MDIO_THUNDER=m
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_CLUSTER=m
+CONFIG_MD_FAULTY=m
+CONFIG_MD_LINEAR=m
+CONFIG_MD_RAID0=m
+CONFIG_MD_RAID10=m
+CONFIG_MD_RAID1=m
+CONFIG_MD_RAID456=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_ATTACH=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CEC_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_PCI_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
+CONFIG_MEDIA_SUPPORT=m
+CONFIG_MEDIA_TUNER_M88RS6000T=m
+CONFIG_MEDIA_TUNER_QM1D1C0042=m
+CONFIG_MEDIA_TUNER_SI2157=m
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MEGARAID_SAS=m
+CONFIG_MELLANOX_PLATFORM=y
+CONFIG_MEMBARRIER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
 CONFIG_MEMCG_SWAP_ENABLED=y
-CONFIG_MEMCG_KMEM=y
-CONFIG_CGROUP_HUGETLB=y
-CONFIG_CGROUP_PERF=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
-CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
-CONFIG_CHECKPOINT_RESTORE=y
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-CONFIG_UIDGID_STRICT_TYPE_CHECKS=y
-CONFIG_SCHED_AUTOGROUP=y
-CONFIG_MM_OWNER=y
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-CONFIG_HAVE_UID16=y
-CONFIG_SYSCTL_EXCEPTION_TRACE=y
-CONFIG_HAVE_PCSPKR_PLATFORM=y
-CONFIG_BPF=y
-# CONFIG_EXPERT is not set
-CONFIG_UID16=y
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_PCSPKR_PLATFORM=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_BPF_SYSCALL=y
-CONFIG_BPF_JIT_ALWAYS_ON=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-CONFIG_USERFAULTFD=y
-CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
-CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
-CONFIG_PCI_QUIRKS=y
-CONFIG_MEMBARRIER=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_SLUB_DEBUG=y
-# CONFIG_COMPAT_BRK is not set
-# CONFIG_SLAB is not set
-CONFIG_SLUB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_CRASH_CORE=y
-CONFIG_KEXEC_CORE=y
-CONFIG_HOTPLUG_SMT=y
-CONFIG_OPROFILE=m
-CONFIG_OPROFILE_EVENT_MULTIPLEX=y
-CONFIG_HAVE_OPROFILE=y
-CONFIG_OPROFILE_NMI_TIMER=y
-CONFIG_KPROBES=y
-CONFIG_JUMP_LABEL=y
-CONFIG_OPTPROBES=y
-CONFIG_KPROBES_ON_FTRACE=y
-CONFIG_UPROBES=y
-# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_ARCH_USE_BUILTIN_BSWAP=y
-CONFIG_KRETPROBES=y
-CONFIG_USER_RETURN_NOTIFIER=y
-CONFIG_HAVE_IOREMAP_PROT=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_OPTPROBES=y
-CONFIG_HAVE_KPROBES_ON_FTRACE=y
-CONFIG_HAVE_KPROBE_OVERRIDE=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_GENERIC_SMP_IDLE_THREAD=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_CLK=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_HW_BREAKPOINT=y
-CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
-CONFIG_HAVE_USER_RETURN_NOTIFIER=y
-CONFIG_HAVE_PERF_EVENTS_NMI=y
-CONFIG_HAVE_PERF_REGS=y
-CONFIG_HAVE_PERF_USER_STACK_DUMP=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_HAVE_RCU_TABLE_FREE=y
-CONFIG_HAVE_RCU_TABLE_INVALIDATE=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
-CONFIG_HAVE_CMPXCHG_LOCAL=y
-CONFIG_HAVE_CMPXCHG_DOUBLE=y
-CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
-CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
-CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
-CONFIG_SECCOMP_FILTER=y
-CONFIG_HAVE_CC_STACKPROTECTOR=y
-CONFIG_CC_STACKPROTECTOR=y
-# CONFIG_CC_STACKPROTECTOR_NONE is not set
-# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
-CONFIG_CC_STACKPROTECTOR_STRONG=y
-CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
-CONFIG_HAVE_CONTEXT_TRACKING=y
-CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
-CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
-CONFIG_HAVE_ARCH_SOFT_DIRTY=y
-CONFIG_HAVE_ARCH_HUGE_VMAP=y
-CONFIG_MODULES_USE_ELF_RELA=y
-CONFIG_HAVE_STACK_VALIDATION=y
-CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
-CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
-CONFIG_ARCH_MMAP_RND_BITS=28
-CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
-CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
-CONFIG_HAVE_RELIABLE_STACKTRACE=y
-CONFIG_OLD_SIGSUSPEND3=y
-CONFIG_COMPAT_OLD_SIGACTION=y
-# CONFIG_REFCOUNT_FULL is not set
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_SYSTEM_TRUSTED_KEYRING=y
-CONFIG_SYSTEM_BLACKLIST_KEYRING=y
+CONFIG_MEMORY_FAILURE=y
+CONFIG_MEMORY_HOTPLUG=y
+CONFIG_MEMORY_HOTREMOVE=y
+CONFIG_MEMSTICK=m
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_MEMSTICK_REALTEK_USB=m
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEM_SOFT_DIRTY=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+CONFIG_MFD_INTEL_LPSS=m
+CONFIG_MFD_INTEL_LPSS_ACPI=m
+CONFIG_MFD_INTEL_LPSS_PCI=m
+CONFIG_MFD_SM501=m
+CONFIG_MFD_SM501_GPIO=y
+CONFIG_MFD_VIPERBOARD=m
+CONFIG_MFD_VX855=m
+CONFIG_MHI_BUS=m
+CONFIG_MHI_BUS_PCI_GENERIC=m
+CONFIG_MICREL_KS8995MA=m
+CONFIG_MICREL_PHY=m
+CONFIG_MICROCHIP_PHY=m
+CONFIG_MICROCHIP_T1_PHY=m
+CONFIG_MICROCODE=y
+CONFIG_MICROCODE_AMD=y
+CONFIG_MICROCODE_INTEL=y
+CONFIG_MICROSEMI_PHY=m
+CONFIG_MICROSOFT_MANA=m
+CONFIG_MIGRATION=y
+CONFIG_MII=m
+CONFIG_MINIX_SUBPARTITION=y
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_MISC_RTSX_PCI=m
+CONFIG_MISC_RTSX_USB=m
+CONFIG_MISDN=m
+CONFIG_MISDN_AVMFRITZ=m
+CONFIG_MISDN_DSP=m
+CONFIG_MISDN_HFCMULTI=m
+CONFIG_MISDN_HFCPCI=m
+CONFIG_MISDN_HFCUSB=m
+CONFIG_MISDN_INFINEON=m
+CONFIG_MISDN_L1OIP=m
+CONFIG_MISDN_NETJET=m
+CONFIG_MISDN_SPEEDFAX=m
+CONFIG_MISDN_W6692=m
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_EN_DCB=y
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_MLX5_CORE=m
+CONFIG_MLX5_CORE_EN=y
+CONFIG_MLX5_CORE_EN_DCB=y
+CONFIG_MLX5_CORE_IPOIB=y
+CONFIG_MLX5_EN_ARFS=y
+CONFIG_MLX5_EN_IPSEC=y
+CONFIG_MLX5_EN_RXNFC=y
+CONFIG_MLX5_EN_TLS=y
+CONFIG_MLX5_ESWITCH=y
+CONFIG_MLX5_FPGA=y
+CONFIG_MLX5_INFINIBAND=m
+CONFIG_MLX5_MPFS=y
+CONFIG_MLX5_SF=y
+CONFIG_MLX5_SF_MANAGER=y
+CONFIG_MLX5_TC_CT=y
+CONFIG_MLX5_VDPA=y
+CONFIG_MLX5_VDPA_NET=m
+CONFIG_MLXFW=m
+CONFIG_MLXREG_HOTPLUG=m
+CONFIG_MLXREG_IO=m
+CONFIG_MLXSW_CORE=m
+CONFIG_MLXSW_CORE_HWMON=y
+CONFIG_MLXSW_CORE_THERMAL=y
+CONFIG_MLXSW_I2C=m
+CONFIG_MLXSW_MINIMAL=m
+CONFIG_MLXSW_PCI=m
+CONFIG_MLXSW_SPECTRUM=m
+CONFIG_MLXSW_SPECTRUM_DCB=y
+CONFIG_MLXSW_SWITCHIB=m
+CONFIG_MLXSW_SWITCHX2=m
+CONFIG_MLX_PLATFORM=m
+CONFIG_MLX_WDT=m
+CONFIG_MMC=m
+CONFIG_MMC_BLOCK=m
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_CB710=m
+CONFIG_MMC_DW_BLUEFIELD=m
+CONFIG_MMC_REALTEK_PCI=m
+CONFIG_MMC_REALTEK_USB=m
+CONFIG_MMC_RICOH_MMC=y
+CONFIG_MMC_SDHCI=m
+CONFIG_MMC_SDHCI_ACPI=m
+CONFIG_MMC_SDHCI_PCI=m
+CONFIG_MMC_SDHCI_PLTFM=m
+CONFIG_MMC_TIFM_SD=m
+CONFIG_MMC_USHC=m
+CONFIG_MMC_VIA_SDMMC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMU=y
 CONFIG_MODULES=y
 CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-# CONFIG_MODULE_FORCE_UNLOAD is not set
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
 CONFIG_MODULE_SIG=y
-# CONFIG_MODULE_SIG_FORCE is not set
 CONFIG_MODULE_SIG_ALL=y
-CONFIG_MODULE_SIG_UEFI=y
-# CONFIG_MODULE_SIG_SHA1 is not set
-# CONFIG_MODULE_SIG_SHA224 is not set
+CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
 CONFIG_MODULE_SIG_SHA256=y
-# CONFIG_MODULE_SIG_SHA384 is not set
-# CONFIG_MODULE_SIG_SHA512 is not set
-CONFIG_MODULE_SIG_HASH="sha256"
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-CONFIG_BLK_DEV_THROTTLING=y
-CONFIG_BLK_DEBUG_FS=y
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-CONFIG_OSF_PARTITION=y
-CONFIG_AMIGA_PARTITION=y
-# CONFIG_ATARI_PARTITION is not set
-CONFIG_MAC_PARTITION=y
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-# CONFIG_LDM_PARTITION is not set
-CONFIG_SGI_PARTITION=y
-# CONFIG_ULTRIX_PARTITION is not set
-CONFIG_SUN_PARTITION=y
-CONFIG_KARMA_PARTITION=y
-CONFIG_EFI_PARTITION=y
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_BLOCK_COMPAT=y
-CONFIG_BLK_MQ_PCI=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_CFQ_GROUP_IOSCHED=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
+CONFIG_MODULE_SRCVERSION_ALL=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_MOUSE_APPLETOUCH=m
+CONFIG_MOUSE_BCM5974=m
+CONFIG_MOUSE_CYAPA=m
+CONFIG_MOUSE_ELAN_I2C=m
+CONFIG_MOUSE_ELAN_I2C_I2C=y
+CONFIG_MOUSE_ELAN_I2C_SMBUS=y
+CONFIG_MOUSE_PS2=y
+CONFIG_MOUSE_PS2_ELANTECH=y
+CONFIG_MOUSE_PS2_SENTELIC=y
+CONFIG_MOUSE_PS2_VMMOUSE=y
+CONFIG_MOUSE_SERIAL=m
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_MOUSE_VSXXXAA=m
+CONFIG_MPILIB=y
+CONFIG_MPLS=y
+CONFIG_MPLS_IPTUNNEL=m
+CONFIG_MPLS_ROUTING=m
+CONFIG_MPTCP=y
+CONFIG_MPTCP_IPV6=y
 CONFIG_MQ_IOSCHED_DEADLINE=y
 CONFIG_MQ_IOSCHED_KYBER=y
-CONFIG_PREEMPT_NOTIFIERS=y
-CONFIG_PADATA=y
-CONFIG_ASN1=y
-CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
-CONFIG_INLINE_READ_UNLOCK=y
-CONFIG_INLINE_READ_UNLOCK_IRQ=y
-CONFIG_INLINE_WRITE_UNLOCK=y
-CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
-CONFIG_MUTEX_SPIN_ON_OWNER=y
-CONFIG_RWSEM_SPIN_ON_OWNER=y
-CONFIG_LOCK_SPIN_ON_OWNER=y
-CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
-CONFIG_QUEUED_SPINLOCKS=y
-CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
-CONFIG_QUEUED_RWLOCKS=y
-CONFIG_FREEZER=y
-
-#
-# Processor type and features
-#
-CONFIG_ZONE_DMA=y
-CONFIG_SMP=y
-CONFIG_X86_X2APIC=y
-CONFIG_X86_MPPARSE=y
-CONFIG_RETPOLINE=y
-CONFIG_INTEL_RDT=y
-CONFIG_X86_EXTENDED_PLATFORM=y
-# CONFIG_X86_NUMACHIP is not set
-# CONFIG_X86_VSMP is not set
-CONFIG_X86_UV=y
-CONFIG_X86_INTEL_LPSS=y
-CONFIG_X86_AMD_PLATFORM_DEVICE=y
-# CONFIG_IOSF_MBI_DEBUG is not set
-CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-CONFIG_HYPERVISOR_GUEST=y
-CONFIG_PARAVIRT=y
-# CONFIG_PARAVIRT_DEBUG is not set
-CONFIG_PARAVIRT_SPINLOCKS=y
-# CONFIG_QUEUED_LOCK_STAT is not set
-CONFIG_XEN=y
-# CONFIG_XEN_DOM0 is not set
-# CONFIG_XEN_PRIVILEGED_GUEST is not set
-CONFIG_XEN_PVHVM=y
-CONFIG_XEN_MAX_DOMAIN_MEMORY=500
-CONFIG_XEN_SAVE_RESTORE=y
-# CONFIG_XEN_DEBUG_FS is not set
-CONFIG_KVM_GUEST=y
-CONFIG_ARCH_CPUIDLE_HALTPOLL=y
-# CONFIG_KVM_DEBUG_FS is not set
-CONFIG_PARAVIRT_TIME_ACCOUNTING=y
-CONFIG_PARAVIRT_CLOCK=y
-CONFIG_NO_BOOTMEM=y
-# CONFIG_MEMTEST is not set
-# CONFIG_MK8 is not set
-# CONFIG_MPSC is not set
-# CONFIG_MCORE2 is not set
-# CONFIG_MATOM is not set
-CONFIG_GENERIC_CPU=y
-CONFIG_X86_INTERNODE_CACHE_SHIFT=6
-CONFIG_X86_L1_CACHE_SHIFT=6
-CONFIG_X86_TSC=y
-CONFIG_X86_CMPXCHG64=y
-CONFIG_X86_CMOV=y
-CONFIG_X86_MINIMUM_CPU_FAMILY=64
-CONFIG_X86_DEBUGCTLMSR=y
-CONFIG_CPU_SUP_INTEL=y
-CONFIG_CPU_SUP_AMD=y
-CONFIG_CPU_SUP_CENTAUR=y
-CONFIG_HPET_TIMER=y
-CONFIG_HPET_EMULATE_RTC=y
-CONFIG_DMI=y
-CONFIG_GART_IOMMU=y
-# CONFIG_CALGARY_IOMMU is not set
-CONFIG_SWIOTLB=y
-CONFIG_IOMMU_HELPER=y
-CONFIG_MAXSMP=y
-CONFIG_NR_CPUS=5120
-CONFIG_SCHED_SMT=y
-CONFIG_SCHED_MC=y
-CONFIG_SCHED_MC_PRIO=y
-# CONFIG_PREEMPT_NONE is not set
-CONFIG_PREEMPT_VOLUNTARY=y
-# CONFIG_PREEMPT is not set
-CONFIG_X86_LOCAL_APIC=y
-CONFIG_X86_IO_APIC=y
-CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
-CONFIG_X86_MCE=y
-CONFIG_X86_MCE_INTEL=y
-CONFIG_X86_MCE_AMD=y
-CONFIG_X86_MCE_THRESHOLD=y
-CONFIG_X86_MCE_INJECT=m
-CONFIG_X86_THERMAL_VECTOR=y
-
-#
-# Performance monitoring
-#
-CONFIG_PERF_EVENTS_INTEL_UNCORE=y
-CONFIG_PERF_EVENTS_INTEL_RAPL=y
-CONFIG_X86_16BIT=y
-CONFIG_I8K=m
-CONFIG_MICROCODE=y
-CONFIG_MICROCODE_INTEL=y
-CONFIG_MICROCODE_AMD=y
-CONFIG_MICROCODE_OLD_INTERFACE=y
-CONFIG_X86_MSR=y
-CONFIG_X86_CPUID=y
-CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
-CONFIG_ARCH_DMA_ADDR_T_64BIT=y
-CONFIG_DIRECT_GBPAGES=y
-CONFIG_TRACK_DIRTY_PAGES=y
-CONFIG_ARCH_HAS_MEM_ENCRYPT=y
-CONFIG_AMD_MEM_ENCRYPT=y
-# CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set
-CONFIG_ARCH_USE_MEMREMAP_PROT=y
-CONFIG_NUMA=y
-CONFIG_AMD_NUMA=y
-CONFIG_X86_64_ACPI_NUMA=y
-CONFIG_NODES_SPAN_OTHER_NODES=y
-CONFIG_NUMA_EMU=y
-CONFIG_NODES_SHIFT=10
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_DEFAULT=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ARCH_MEMORY_PROBE=y
-CONFIG_ARCH_PROC_KCORE_TEXT=y
-CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
-CONFIG_SELECT_MEMORY_MODEL=y
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_NEED_MULTIPLE_NODES=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_EXTREME=y
-CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
-CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
-CONFIG_SPARSEMEM_VMEMMAP=y
-CONFIG_HAVE_MEMBLOCK=y
-CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
-CONFIG_ARCH_DISCARD_MEMBLOCK=y
-CONFIG_MEMORY_ISOLATION=y
-CONFIG_MOVABLE_NODE=y
-CONFIG_HAVE_BOOTMEM_INFO_NODE=y
-CONFIG_MEMORY_HOTPLUG=y
-CONFIG_MEMORY_HOTPLUG_SPARSE=y
-CONFIG_MEMORY_HOTREMOVE=y
-CONFIG_PAGEFLAGS_EXTENDED=y
-CONFIG_SPLIT_PTLOCK_CPUS=4
-CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
-CONFIG_MEMORY_BALLOON=y
-CONFIG_BALLOON_COMPACTION=y
-CONFIG_COMPACTION=y
-CONFIG_MIGRATION=y
-CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
-CONFIG_HMM=y
-CONFIG_HMM_MIRROR=y
-CONFIG_PHYS_ADDR_T_64BIT=y
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_VIRT_TO_BUS=y
-CONFIG_MMU_NOTIFIER=y
-CONFIG_KSM=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
-CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
-CONFIG_MEMORY_FAILURE=y
-CONFIG_HWPOISON_INJECT=m
-CONFIG_TRANSPARENT_HUGEPAGE=y
-CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
-# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
-CONFIG_CROSS_MEMORY_ATTACH=y
-CONFIG_CLEANCACHE=y
-CONFIG_FRONTSWAP=y
-CONFIG_CMA=y
-# CONFIG_CMA_DEBUG is not set
-CONFIG_MEM_SOFT_DIRTY=y
-CONFIG_ZSWAP=y
-CONFIG_ZPOOL=y
-CONFIG_ZBUD=y
-CONFIG_ZSMALLOC=y
-# CONFIG_PGTABLE_MAPPING is not set
-CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y
-CONFIG_DEFERRED_STRUCT_PAGE_INIT=y
-CONFIG_IDLE_PAGE_TRACKING=y
-CONFIG_ZONE_DEVICE=y
-CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
-CONFIG_ARCH_HAS_PKEYS=y
-# CONFIG_PERCPU_STATS is not set
-CONFIG_X86_PMEM_LEGACY_DEVICE=y
-CONFIG_X86_PMEM_LEGACY=m
-CONFIG_X86_CHECK_BIOS_CORRUPTION=y
-# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set
-CONFIG_X86_RESERVE_LOW=64
+CONFIG_MSDOS_FS=m
+CONFIG_MSDOS_PARTITION=y
+CONFIG_MSI_LAPTOP=m
+CONFIG_MSI_WMI=m
+CONFIG_MSPRO_BLOCK=m
+CONFIG_MT7601U=m
+CONFIG_MT76x0U=m
+CONFIG_MT76x2U=m
+CONFIG_MT7921E=m
+CONFIG_MTD=m
+CONFIG_MTD_BLOCK=m
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+CONFIG_MTD_OF_PARTS=m
+CONFIG_MTD_UBI=m
+CONFIG_MTD_UBI_BEB_LIMIT=20
+CONFIG_MTD_UBI_WL_THRESHOLD=4096
 CONFIG_MTRR=y
 CONFIG_MTRR_SANITIZER=y
 CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
 CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
-CONFIG_X86_PAT=y
-CONFIG_ARCH_USES_PG_UNCACHED=y
-CONFIG_ARCH_RANDOM=y
-CONFIG_X86_SMAP=y
-# CONFIG_X86_INTEL_TSX_MODE_OFF is not set
-CONFIG_X86_INTEL_TSX_MODE_ON=y
-# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set
-CONFIG_EFI=y
-CONFIG_EFI_STUB=y
-CONFIG_EFI_SECURE_BOOT_SECURELEVEL=y
-CONFIG_EFI_MIXED=y
-CONFIG_SECCOMP=y
-# CONFIG_HZ_100 is not set
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-CONFIG_HZ_1000=y
-CONFIG_HZ=1000
-CONFIG_SCHED_HRTICK=y
-CONFIG_KEXEC=y
-CONFIG_KEXEC_AUTO_RESERVE=y
-CONFIG_KEXEC_FILE=y
-CONFIG_KEXEC_VERIFY_SIG=y
-CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y
-CONFIG_CRASH_DUMP=y
-CONFIG_KEXEC_JUMP=y
-CONFIG_PHYSICAL_START=0x1000000
-CONFIG_RELOCATABLE=y
-CONFIG_RANDOMIZE_BASE=y
-CONFIG_X86_NEED_RELOCS=y
-CONFIG_PHYSICAL_ALIGN=0x200000
-CONFIG_RANDOMIZE_MEMORY=y
-CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa
-CONFIG_HOTPLUG_CPU=y
-CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
-# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
-# CONFIG_COMPAT_VDSO is not set
-# CONFIG_CMDLINE_BOOL is not set
-CONFIG_HAVE_LIVEPATCH=y
-CONFIG_LIVEPATCH=y
-CONFIG_ARCH_HAS_ADD_PAGES=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
-CONFIG_USE_PERCPU_NUMA_NODE_ID=y
-
-#
-# Power management and ACPI options
-#
-CONFIG_ARCH_HIBERNATION_HEADER=y
-CONFIG_SUSPEND=y
-CONFIG_SUSPEND_FREEZER=y
-CONFIG_HIBERNATE_CALLBACKS=y
-CONFIG_HIBERNATION=y
-CONFIG_PM_STD_PARTITION=""
-CONFIG_PM_SLEEP=y
-CONFIG_PM_SLEEP_SMP=y
-# CONFIG_PM_AUTOSLEEP is not set
-# CONFIG_PM_WAKELOCKS is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-# CONFIG_PM_TEST_SUSPEND is not set
-CONFIG_PM_SLEEP_DEBUG=y
-CONFIG_PM_TRACE=y
-CONFIG_PM_TRACE_RTC=y
-CONFIG_PM_CLK=y
-# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
-CONFIG_ACPI=y
-CONFIG_ACPI_SLEEP=y
-CONFIG_ACPI_PROCFS=y
-CONFIG_ACPI_LPIT=y
-# CONFIG_ACPI_PROCFS_POWER is not set
-CONFIG_ACPI_EC_DEBUGFS=m
-# CONFIG_ACPI_PROC_EVENT is not set
-CONFIG_ACPI_AC=y
-CONFIG_ACPI_BATTERY=y
-CONFIG_ACPI_BUTTON=y
-CONFIG_ACPI_VIDEO=m
-CONFIG_ACPI_FAN=y
-CONFIG_ACPI_DOCK=y
-CONFIG_ACPI_CPPC_LIB=y
-CONFIG_ACPI_PROCESSOR=y
-CONFIG_ACPI_IPMI=m
-CONFIG_ACPI_HOTPLUG_CPU=y
-CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
-CONFIG_ACPI_THERMAL=y
-CONFIG_ACPI_NUMA=y
-# CONFIG_ACPI_CUSTOM_DSDT is not set
-CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
-# CONFIG_ACPI_DEBUG is not set
-CONFIG_ACPI_PCI_SLOT=y
-CONFIG_X86_PM_TIMER=y
-CONFIG_ACPI_CONTAINER=y
-CONFIG_ACPI_HOTPLUG_MEMORY=y
-CONFIG_ACPI_SBS=m
-CONFIG_ACPI_HED=y
-CONFIG_ACPI_CUSTOM_METHOD=m
-CONFIG_ACPI_BGRT=y
-CONFIG_ACPI_NFIT=m
-# CONFIG_NFIT_SECURITY_DEBUG is not set
-CONFIG_ACPI_APEI=y
-CONFIG_ACPI_APEI_GHES=y
-CONFIG_ACPI_APEI_PCIEAER=y
-CONFIG_ACPI_APEI_MEMORY_FAILURE=y
-CONFIG_ACPI_APEI_EINJ=m
-# CONFIG_ACPI_APEI_ERST_DEBUG is not set
-# CONFIG_DPTF_POWER is not set
-CONFIG_ACPI_WATCHDOG=y
-CONFIG_ACPI_EXTLOG=m
-CONFIG_ACPI_ADXL=y
-CONFIG_SFI=y
-
-#
-# CPU Frequency scaling
-#
-CONFIG_CPU_FREQ=y
-CONFIG_CPU_FREQ_GOV_COMMON=y
-CONFIG_CPU_FREQ_STAT=m
-CONFIG_CPU_FREQ_STAT_DETAILS=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
-CONFIG_CPU_FREQ_GOV_POWERSAVE=y
-CONFIG_CPU_FREQ_GOV_USERSPACE=y
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
-CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
-
-#
-# x86 CPU frequency scaling drivers
-#
-CONFIG_X86_INTEL_PSTATE=y
-CONFIG_X86_PCC_CPUFREQ=m
-CONFIG_X86_ACPI_CPUFREQ=m
-CONFIG_X86_ACPI_CPUFREQ_CPB=y
-CONFIG_X86_POWERNOW_K8=m
-CONFIG_X86_AMD_FREQ_SENSITIVITY=m
-# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
-CONFIG_X86_P4_CLOCKMOD=m
-
-#
-# shared options
-#
-CONFIG_X86_SPEEDSTEP_LIB=m
-CONFIG_CPU_IDLE=y
-# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
-# CONFIG_CPU_IDLE_GOV_LADDER is not set
-CONFIG_CPU_IDLE_GOV_MENU=y
-CONFIG_CPU_IDLE_GOV_HALTPOLL=y
-CONFIG_HALTPOLL_CPUIDLE=m
-# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
-CONFIG_INTEL_IDLE=y
-
-#
-# Memory power savings
-#
-CONFIG_I7300_IDLE_IOAT_CHANNEL=y
-CONFIG_I7300_IDLE=m
-
-#
-# Bus options (PCI etc.)
-#
-CONFIG_PCI=y
-CONFIG_PCI_DIRECT=y
-CONFIG_PCI_MMCONFIG=y
-CONFIG_PCI_XEN=y
-CONFIG_PCI_DOMAINS=y
-CONFIG_PCIEPORTBUS=y
-CONFIG_HOTPLUG_PCI_PCIE=y
-CONFIG_PCIEAER=y
-CONFIG_PCIE_ECRC=y
-CONFIG_PCIEAER_INJECT=m
-CONFIG_PCIEASPM=y
-# CONFIG_PCIEASPM_DEBUG is not set
-CONFIG_PCIEASPM_DEFAULT=y
-# CONFIG_PCIEASPM_POWERSAVE is not set
-# CONFIG_PCIEASPM_PERFORMANCE is not set
-CONFIG_PCIE_PME=y
-# CONFIG_PCIE_DPC is not set
-CONFIG_PCI_BUS_ADDR_T_64BIT=y
-CONFIG_PCI_MSI=y
-# CONFIG_PCI_DEBUG is not set
-# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
-CONFIG_PCI_STUB=y
-# CONFIG_XEN_PCIDEV_FRONTEND is not set
-CONFIG_PCI_HYPERV=m
-CONFIG_HT_IRQ=y
-CONFIG_PCI_ATS=y
-CONFIG_PCI_IOV=y
-CONFIG_PCI_PRI=y
-CONFIG_PCI_PASID=y
-CONFIG_PCI_IOAPIC=y
-CONFIG_PCI_LABEL=y
-CONFIG_HOTPLUG_PCI=y
-CONFIG_HOTPLUG_PCI_ACPI=y
-CONFIG_HOTPLUG_PCI_ACPI_IBM=m
-# CONFIG_HOTPLUG_PCI_CPCI is not set
-CONFIG_HOTPLUG_PCI_SHPC=y
-CONFIG_ISA_DMA_API=y
-CONFIG_AMD_NB=y
-CONFIG_PCCARD=y
-# CONFIG_PCMCIA is not set
-CONFIG_CARDBUS=y
-
-#
-# PC-card bridges
-#
-CONFIG_YENTA=m
-CONFIG_YENTA_O2=y
-CONFIG_YENTA_RICOH=y
-CONFIG_YENTA_TI=y
-CONFIG_YENTA_ENE_TUNE=y
-CONFIG_YENTA_TOSHIBA=y
-# CONFIG_RAPIDIO is not set
-
-#
-# Executable file formats / Emulations
-#
-CONFIG_BINFMT_ELF=y
-CONFIG_COMPAT_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_BINFMT_SCRIPT=y
-# CONFIG_HAVE_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_COREDUMP=y
-CONFIG_IA32_EMULATION=y
-# CONFIG_IA32_AOUT is not set
-# CONFIG_X86_X32 is not set
-CONFIG_COMPAT=y
-CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
-CONFIG_SYSVIPC_COMPAT=y
-CONFIG_HAVE_TEXT_POKE_SMP=y
-CONFIG_X86_DEV_DMA_OPS=y
-CONFIG_IOSF_MBI=m
-CONFIG_VMD=y
+CONFIG_MULTIUSER=y
+CONFIG_MWIFIEX=m
+CONFIG_MWIFIEX_PCIE=m
+CONFIG_MWIFIEX_SDIO=m
+CONFIG_MWIFIEX_USB=m
+CONFIG_MYRI10GE=m
+CONFIG_MYRI10GE_DCA=y
+CONFIG_NAMESPACES=y
+CONFIG_NATIONAL_PHY=m
+CONFIG_ND_BLK=m
+CONFIG_ND_BTT=m
+CONFIG_ND_CLAIM=y
+CONFIG_ND_PFN=m
 CONFIG_NET=y
-CONFIG_COMPAT_NETLINK_MESSAGES=y
-CONFIG_NET_INGRESS=y
-CONFIG_NET_EGRESS=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_PACKET_DIAG=m
-CONFIG_UNIX=y
-CONFIG_UNIX_DIAG=m
-CONFIG_XFRM=y
-CONFIG_XFRM_ALGO=y
-CONFIG_XFRM_USER=y
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-CONFIG_XFRM_STATISTICS=y
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_FIB_TRIE_STATS=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-CONFIG_NET_IPGRE_DEMUX=m
-CONFIG_NET_IP_TUNNEL=m
-CONFIG_NET_IPGRE=m
-CONFIG_NET_IPGRE_BROADCAST=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NET_IPVTI=m
-CONFIG_NET_UDP_TUNNEL=m
-# CONFIG_NET_FOU is not set
-# CONFIG_NET_FOU_IP_TUNNELS is not set
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=y
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_INET_UDP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_TCP_CONG_DCTCP=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=m
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_VTI=m
-CONFIG_IPV6_SIT=m
-CONFIG_IPV6_SIT_6RD=y
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_GRE=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-# CONFIG_IPV6_SUBTREES is not set
-CONFIG_IPV6_MROUTE=y
-CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
-CONFIG_IPV6_PIMSM_V2=y
-CONFIG_NETLABEL=y
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETCONSOLE=m
+CONFIG_NETCONSOLE_DYNAMIC=y
+CONFIG_NETDEVICES=y
+CONFIG_NETDEVSIM=m
 CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
 CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=m
-
-#
-# Core Netfilter Configuration
-#
+CONFIG_NETFILTER_INGRESS=y
 CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_ACCT=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_NETLINK_GLUE_CT=y
 CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_LOG_COMMON=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_ZONES=y
-CONFIG_NF_CONNTRACK_PROCFS=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-CONFIG_NF_CONNTRACK_TIMEOUT=y
-CONFIG_NF_CONNTRACK_TIMESTAMP=y
-CONFIG_NF_CONNTRACK_LABELS=y
-CONFIG_NF_CT_PROTO_DCCP=y
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=y
-CONFIG_NF_CT_PROTO_UDPLITE=y
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-CONFIG_NF_CONNTRACK_SNMP=m
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NF_CT_NETLINK_TIMEOUT=m
-CONFIG_NF_CT_NETLINK_HELPER=m
-CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_NF_NAT_PROTO_DCCP=y
-CONFIG_NF_NAT_PROTO_UDPLITE=y
-CONFIG_NF_NAT_PROTO_SCTP=y
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_REDIRECT=m
-CONFIG_NETFILTER_SYNPROXY=m
-CONFIG_NF_TABLES=m
-CONFIG_NF_TABLES_INET=m
-CONFIG_NFT_EXTHDR=m
-CONFIG_NFT_META=m
-CONFIG_NFT_CT=m
-CONFIG_NFT_RBTREE=m
-CONFIG_NFT_HASH=m
-CONFIG_NFT_COUNTER=m
-CONFIG_NFT_LOG=m
-CONFIG_NFT_LIMIT=m
-CONFIG_NFT_MASQ=m
-CONFIG_NFT_REDIR=m
-CONFIG_NFT_NAT=m
-CONFIG_NFT_QUEUE=m
-CONFIG_NFT_REJECT=m
-CONFIG_NFT_REJECT_INET=m
-CONFIG_NFT_COMPAT=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
 CONFIG_NETFILTER_XTABLES=y
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
 CONFIG_NETFILTER_XT_CONNMARK=m
-CONFIG_NETFILTER_XT_SET=m
-
-#
-# Xtables targets
-#
-CONFIG_NETFILTER_XT_TARGET_AUDIT=m
-CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-CONFIG_NETFILTER_XT_TARGET_CT=m
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-CONFIG_NETFILTER_XT_TARGET_HMARK=m
-CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
-CONFIG_NETFILTER_XT_TARGET_LED=m
-CONFIG_NETFILTER_XT_TARGET_LOG=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_NAT=m
-CONFIG_NETFILTER_XT_TARGET_NETMAP=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
-CONFIG_NETFILTER_XT_TARGET_TEE=m
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
+CONFIG_NETFILTER_XT_MARK=m
 CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
 CONFIG_NETFILTER_XT_MATCH_BPF=m
 CONFIG_NETFILTER_XT_MATCH_CGROUP=m
@@ -1054,12 +4101,11 @@
 CONFIG_NETFILTER_XT_MATCH_MAC=m
 CONFIG_NETFILTER_XT_MATCH_MARK=m
 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_NFACCT=m
 CONFIG_NETFILTER_XT_MATCH_OSF=m
 CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
 CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=m
 CONFIG_NETFILTER_XT_MATCH_QUOTA=m
 CONFIG_NETFILTER_XT_MATCH_RATEEST=m
 CONFIG_NETFILTER_XT_MATCH_REALM=m
@@ -1070,4872 +4116,272 @@
 CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
 CONFIG_NETFILTER_XT_MATCH_STRING=m
 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
 CONFIG_NETFILTER_XT_MATCH_U32=m
-CONFIG_IP_SET=m
-CONFIG_IP_SET_MAX=256
-CONFIG_IP_SET_BITMAP_IP=m
-CONFIG_IP_SET_BITMAP_IPMAC=m
-CONFIG_IP_SET_BITMAP_PORT=m
-CONFIG_IP_SET_HASH_IP=m
-CONFIG_IP_SET_HASH_IPMARK=m
-CONFIG_IP_SET_HASH_IPPORT=m
-CONFIG_IP_SET_HASH_IPPORTIP=m
-CONFIG_IP_SET_HASH_IPPORTNET=m
-CONFIG_IP_SET_HASH_IPMAC=m
-CONFIG_IP_SET_HASH_MAC=m
-CONFIG_IP_SET_HASH_NETPORTNET=m
-CONFIG_IP_SET_HASH_NET=m
-CONFIG_IP_SET_HASH_NETNET=m
-CONFIG_IP_SET_HASH_NETPORT=m
-CONFIG_IP_SET_HASH_NETIFACE=m
-CONFIG_IP_SET_LIST_SET=m
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-# CONFIG_IP_VS_DEBUG is not set
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-CONFIG_IP_VS_PROTO_SCTP=y
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS SH scheduler
-#
-CONFIG_IP_VS_SH_TAB_BITS=8
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-CONFIG_IP_VS_PE_SIP=m
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
-CONFIG_NF_TABLES_IPV4=m
-CONFIG_NFT_CHAIN_ROUTE_IPV4=m
-CONFIG_NFT_REJECT_IPV4=m
-CONFIG_NFT_DUP_IPV4=m
-CONFIG_NF_TABLES_ARP=m
-CONFIG_NF_DUP_IPV4=m
-CONFIG_NF_LOG_IPV4=m
-CONFIG_NF_REJECT_IPV4=m
-CONFIG_NF_NAT_IPV4=m
-CONFIG_NFT_CHAIN_NAT_IPV4=m
-CONFIG_NF_NAT_MASQUERADE_IPV4=m
-CONFIG_NFT_MASQ_IPV4=m
-CONFIG_NFT_REDIR_IPV4=m
-CONFIG_NF_NAT_SNMP_BASIC=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_RPFILTER=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_SYNPROXY=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_IP_NF_NAT=m
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_NF_TABLES_IPV6=m
-CONFIG_NFT_CHAIN_ROUTE_IPV6=m
-CONFIG_NFT_REJECT_IPV6=m
-CONFIG_NFT_DUP_IPV6=m
-CONFIG_NF_DUP_IPV6=m
-CONFIG_NF_REJECT_IPV6=m
-CONFIG_NF_LOG_IPV6=m
-CONFIG_NF_NAT_IPV6=m
-CONFIG_NFT_CHAIN_NAT_IPV6=m
-CONFIG_NF_NAT_MASQUERADE_IPV6=m
-CONFIG_NFT_MASQ_IPV6=m
-CONFIG_NFT_REDIR_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RPFILTER=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_TARGET_SYNPROXY=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-CONFIG_IP6_NF_NAT=m
-CONFIG_IP6_NF_TARGET_MASQUERADE=m
-CONFIG_IP6_NF_TARGET_NPT=m
-CONFIG_NF_TABLES_BRIDGE=m
-CONFIG_NFT_BRIDGE_META=m
-CONFIG_NFT_BRIDGE_REJECT=m
-CONFIG_NF_LOG_BRIDGE=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-CONFIG_NET_SCTPPROBE=m
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
-CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
-# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
-CONFIG_SCTP_COOKIE_HMAC_MD5=y
-CONFIG_SCTP_COOKIE_HMAC_SHA1=y
-CONFIG_INET_SCTP_DIAG=m
-# CONFIG_RDS is not set
-# CONFIG_TIPC is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-# CONFIG_ATM_MPOA is not set
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-CONFIG_L2TP=m
-CONFIG_L2TP_DEBUGFS=m
-CONFIG_L2TP_V3=y
-CONFIG_L2TP_IP=m
-CONFIG_L2TP_ETH=m
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_MRP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-CONFIG_BRIDGE_VLAN_FILTERING=y
-CONFIG_HAVE_NET_DSA=y
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_VLAN_8021Q_MVRP=y
-# CONFIG_DECNET is not set
-CONFIG_LLC=m
-# CONFIG_LLC2 is not set
-# CONFIG_IPX is not set
-# CONFIG_ATALK is not set
-# CONFIG_X25 is not set
-# CONFIG_LAPB is not set
-# CONFIG_PHONET is not set
-CONFIG_6LOWPAN=m
-# CONFIG_6LOWPAN_DEBUGFS is not set
-CONFIG_6LOWPAN_NHC=m
-CONFIG_6LOWPAN_NHC_DEST=m
-CONFIG_6LOWPAN_NHC_FRAGMENT=m
-CONFIG_6LOWPAN_NHC_HOP=m
-CONFIG_6LOWPAN_NHC_IPV6=m
-CONFIG_6LOWPAN_NHC_MOBILITY=m
-CONFIG_6LOWPAN_NHC_ROUTING=m
-CONFIG_6LOWPAN_NHC_UDP=m
-# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set
-# CONFIG_6LOWPAN_GHC_UDP is not set
-# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
-# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
-CONFIG_IEEE802154=m
-# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
-CONFIG_IEEE802154_SOCKET=m
-CONFIG_IEEE802154_6LOWPAN=m
-CONFIG_MAC802154=m
+CONFIG_NETFILTER_XT_SET=m
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=m
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=m
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETLABEL=y
+CONFIG_NETLINK_DIAG=m
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NETWORK_PHY_TIMESTAMPING=y
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_ACT_BPF=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_ACT_CT=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_SAMPLE=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_SKBMOD=m
+CONFIG_NET_ACT_TUNNEL_KEY=m
+CONFIG_NET_ACT_VLAN=m
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=y
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_U32=m
+CONFIG_NET_CORE=y
+CONFIG_NET_DEVLINK=y
+CONFIG_NET_DROP_MONITOR=y
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_FAILOVER=m
+CONFIG_NET_FC=y
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPVTI=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_NS=y
+CONFIG_NET_NSH=y
+CONFIG_NET_PACKET_ENGINE=y
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_NET_RX_BUSY_POLL=y
 CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
 CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DEFAULT=y
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_ETS=m
+CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=y
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
 CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
+CONFIG_NET_SCH_PLUG=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_QFQ=m
 CONFIG_NET_SCH_RED=m
 CONFIG_NET_SCH_SFB=m
 CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
 CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_CBS=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-CONFIG_NET_SCH_MQPRIO=m
-CONFIG_NET_SCH_CHOKE=m
-CONFIG_NET_SCH_QFQ=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_SCH_FQ=m
-# CONFIG_NET_SCH_HHF is not set
-# CONFIG_NET_SCH_PIE is not set
-CONFIG_NET_SCH_INGRESS=m
-CONFIG_NET_SCH_PLUG=m
-# CONFIG_NET_SCH_DEFAULT is not set
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_CLS_BPF=m
-CONFIG_NET_CLS_FLOWER=m
-CONFIG_NET_CLS_MATCHALL=m
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-# CONFIG_NET_EMATCH_CANID is not set
-CONFIG_NET_EMATCH_IPSET=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_SAMPLE=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-CONFIG_NET_ACT_CSUM=m
-CONFIG_NET_ACT_VLAN=m
-CONFIG_NET_ACT_TUNNEL_KEY=m
-CONFIG_NET_ACT_CONNMARK=m
-CONFIG_NET_ACT_SKBMOD=m
-# CONFIG_NET_ACT_IFE is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=m
-# CONFIG_BATMAN_ADV is not set
-CONFIG_OPENVSWITCH=m
-CONFIG_OPENVSWITCH_GRE=m
-CONFIG_OPENVSWITCH_VXLAN=m
-CONFIG_OPENVSWITCH_GENEVE=m
-CONFIG_VSOCKETS=m
-CONFIG_VSOCKETS_DIAG=m
-CONFIG_VMWARE_VMCI_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS=m
-CONFIG_VIRTIO_VSOCKETS_COMMON=m
-CONFIG_HYPERV_VSOCKETS=m
-CONFIG_NETLINK_DIAG=m
-CONFIG_MPLS=y
-CONFIG_NET_MPLS_GSO=y
+CONFIG_NET_SCH_TEQL=m
 CONFIG_NET_SWITCHDEV=y
-CONFIG_RPS=y
-CONFIG_RFS_ACCEL=y
-CONFIG_XPS=y
-CONFIG_NETPRIO_CGROUP=y
-CONFIG_NET_RX_BUSY_POLL=y
-CONFIG_BQL=y
-CONFIG_BPF_JIT=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_HAMRADIO is not set
-CONFIG_CAN=m
-CONFIG_CAN_RAW=m
-CONFIG_CAN_BCM=m
-CONFIG_CAN_GW=m
-
-#
-# CAN Device Drivers
-#
-CONFIG_CAN_VCAN=m
-CONFIG_CAN_SLCAN=m
-CONFIG_CAN_DEV=m
-CONFIG_CAN_CALC_BITTIMING=y
-CONFIG_CAN_LEDS=y
-# CONFIG_CAN_MCP251X is not set
-# CONFIG_PCH_CAN is not set
-CONFIG_CAN_SJA1000=m
-# CONFIG_CAN_SJA1000_ISA is not set
-CONFIG_CAN_SJA1000_PLATFORM=m
-CONFIG_CAN_EMS_PCI=m
-CONFIG_CAN_PEAK_PCI=m
-CONFIG_CAN_PEAK_PCIEC=y
-CONFIG_CAN_KVASER_PCI=m
-CONFIG_CAN_PLX_PCI=m
-CONFIG_CAN_C_CAN=m
-CONFIG_CAN_C_CAN_PLATFORM=m
-CONFIG_CAN_C_CAN_PCI=m
-CONFIG_CAN_CC770=m
-# CONFIG_CAN_CC770_ISA is not set
-CONFIG_CAN_CC770_PLATFORM=m
-
-#
-# CAN USB interfaces
-#
-CONFIG_CAN_EMS_USB=m
-CONFIG_CAN_ESD_USB2=m
-CONFIG_CAN_KVASER_USB=m
-CONFIG_CAN_PEAK_USB=m
-CONFIG_CAN_8DEV_USB=m
-CONFIG_CAN_SOFTING=m
-# CONFIG_CAN_DEBUG_DEVICES is not set
-# CONFIG_IRDA is not set
-CONFIG_BT=m
-CONFIG_BT_BREDR=y
-CONFIG_BT_RFCOMM=m
-CONFIG_BT_RFCOMM_TTY=y
-CONFIG_BT_BNEP=m
-CONFIG_BT_BNEP_MC_FILTER=y
-CONFIG_BT_BNEP_PROTO_FILTER=y
-CONFIG_BT_CMTP=m
-CONFIG_BT_HIDP=m
-CONFIG_BT_HS=y
-CONFIG_BT_LE=y
-# CONFIG_BT_6LOWPAN is not set
-# CONFIG_BT_LEDS is not set
-# CONFIG_BT_SELFTEST is not set
-CONFIG_BT_DEBUGFS=y
-
-#
-# Bluetooth device drivers
-#
-CONFIG_BT_INTEL=m
-CONFIG_BT_BCM=m
-CONFIG_BT_RTL=m
-CONFIG_BT_HCIBTUSB=m
-CONFIG_BT_HCIBTUSB_BCM=y
-CONFIG_BT_HCIBTUSB_RTL=y
-CONFIG_BT_HCIBTSDIO=m
-CONFIG_BT_HCIUART=m
-CONFIG_BT_HCIUART_H4=y
-CONFIG_BT_HCIUART_BCSP=y
-CONFIG_BT_HCIUART_ATH3K=y
-CONFIG_BT_HCIUART_LL=y
-CONFIG_BT_HCIUART_3WIRE=y
-# CONFIG_BT_HCIUART_INTEL is not set
-# CONFIG_BT_HCIUART_BCM is not set
-# CONFIG_BT_HCIUART_QCA is not set
-# CONFIG_BT_HCIUART_AG6XX is not set
-# CONFIG_BT_HCIUART_MRVL is not set
-CONFIG_BT_HCIBCM203X=m
-CONFIG_BT_HCIBPA10X=m
-CONFIG_BT_HCIBFUSB=m
-CONFIG_BT_HCIVHCI=m
-CONFIG_BT_MRVL=m
-CONFIG_BT_MRVL_SDIO=m
-CONFIG_BT_ATH3K=m
-# CONFIG_AF_RXRPC is not set
-CONFIG_FIB_RULES=y
-CONFIG_WIRELESS=y
-CONFIG_WIRELESS_EXT=y
-CONFIG_WEXT_CORE=y
-CONFIG_WEXT_PROC=y
-CONFIG_WEXT_PRIV=y
-CONFIG_CFG80211=m
-# CONFIG_NL80211_TESTMODE is not set
-# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
-# CONFIG_CFG80211_REQUIRE_SIGNED_REGDB is not set
-CONFIG_CFG80211_DEFAULT_PS=y
-# CONFIG_CFG80211_DEBUGFS is not set
-CONFIG_CFG80211_CRDA_SUPPORT=y
-CONFIG_CFG80211_WEXT=y
-CONFIG_LIB80211=m
-# CONFIG_LIB80211_DEBUG is not set
-CONFIG_MAC80211=m
-CONFIG_MAC80211_HAS_RC=y
-CONFIG_MAC80211_RC_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
-# CONFIG_MAC80211_MESH is not set
-CONFIG_MAC80211_LEDS=y
-CONFIG_MAC80211_DEBUGFS=y
-# CONFIG_MAC80211_MESSAGE_TRACING is not set
-# CONFIG_MAC80211_DEBUG_MENU is not set
-CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
-# CONFIG_WIMAX is not set
-CONFIG_RFKILL=m
-CONFIG_RFKILL_LEDS=y
-CONFIG_RFKILL_INPUT=y
-# CONFIG_RFKILL_GPIO is not set
-# CONFIG_NET_9P is not set
-# CONFIG_CAIF is not set
-CONFIG_CEPH_LIB=m
-# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
-CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
-# CONFIG_NFC is not set
-CONFIG_PSAMPLE=m
-# CONFIG_NET_IFE is not set
-CONFIG_LWTUNNEL=y
-CONFIG_DST_CACHE=y
-CONFIG_NET_DEVLINK=m
-CONFIG_MAY_USE_DEVLINK=m
-CONFIG_PAGE_POOL=y
-CONFIG_FAILOVER=m
-CONFIG_HAVE_EBPF_JIT=y
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_FW_LOADER_USER_HELPER is not set
-CONFIG_WANT_DEV_COREDUMP=y
-CONFIG_DEV_COREDUMP=y
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-CONFIG_SYS_HYPERVISOR=y
-# CONFIG_GENERIC_CPU_DEVICES is not set
-CONFIG_GENERIC_CPU_VULNERABILITIES=y
-CONFIG_REGMAP=y
-CONFIG_REGMAP_I2C=m
-CONFIG_REGMAP_SPI=m
-CONFIG_REGMAP_IRQ=y
-CONFIG_DMA_SHARED_BUFFER=y
-
-#
-# Bus devices
-#
-CONFIG_CONNECTOR=y
-CONFIG_PROC_EVENTS=y
-CONFIG_MTD=m
-# CONFIG_MTD_TESTS is not set
-# CONFIG_MTD_REDBOOT_PARTS is not set
-# CONFIG_MTD_CMDLINE_PARTS is not set
-# CONFIG_MTD_AR7_PARTS is not set
-
-#
-# User Modules And Translation Layers
-#
-CONFIG_MTD_BLKDEVS=m
-CONFIG_MTD_BLOCK=m
-# CONFIG_MTD_BLOCK_RO is not set
-# CONFIG_FTL is not set
-# CONFIG_NFTL is not set
-# CONFIG_INFTL is not set
-# CONFIG_RFD_FTL is not set
-# CONFIG_SSFDC is not set
-# CONFIG_SM_FTL is not set
-# CONFIG_MTD_OOPS is not set
-# CONFIG_MTD_SWAP is not set
-
-#
-# RAM/ROM/Flash chip drivers
-#
-# CONFIG_MTD_CFI is not set
-# CONFIG_MTD_JEDECPROBE is not set
-CONFIG_MTD_MAP_BANK_WIDTH_1=y
-CONFIG_MTD_MAP_BANK_WIDTH_2=y
-CONFIG_MTD_MAP_BANK_WIDTH_4=y
-# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
-CONFIG_MTD_CFI_I1=y
-CONFIG_MTD_CFI_I2=y
-# CONFIG_MTD_CFI_I4 is not set
-# CONFIG_MTD_CFI_I8 is not set
-# CONFIG_MTD_RAM is not set
-# CONFIG_MTD_ROM is not set
-# CONFIG_MTD_ABSENT is not set
-
-#
-# Mapping drivers for chip access
-#
-# CONFIG_MTD_COMPLEX_MAPPINGS is not set
-# CONFIG_MTD_TS5500 is not set
-# CONFIG_MTD_INTEL_VR_NOR is not set
-# CONFIG_MTD_PLATRAM is not set
-
-#
-# Self-contained MTD device drivers
-#
-# CONFIG_MTD_PMC551 is not set
-# CONFIG_MTD_DATAFLASH is not set
-# CONFIG_MTD_M25P80 is not set
-# CONFIG_MTD_SST25L is not set
-# CONFIG_MTD_SLRAM is not set
-# CONFIG_MTD_PHRAM is not set
-# CONFIG_MTD_MTDRAM is not set
-# CONFIG_MTD_BLOCK2MTD is not set
-
-#
-# Disk-On-Chip Device Drivers
-#
-# CONFIG_MTD_DOCG3 is not set
-# CONFIG_MTD_NAND is not set
-# CONFIG_MTD_ONENAND is not set
-
-#
-# LPDDR flash memory drivers
-#
-# CONFIG_MTD_LPDDR is not set
-CONFIG_MTD_UBI=m
-CONFIG_MTD_UBI_WL_THRESHOLD=4096
-CONFIG_MTD_UBI_BEB_LIMIT=20
-# CONFIG_MTD_UBI_FASTMAP is not set
-# CONFIG_MTD_UBI_GLUEBI is not set
-CONFIG_PARPORT=m
-CONFIG_PARPORT_PC=m
-CONFIG_PARPORT_SERIAL=m
-# CONFIG_PARPORT_PC_FIFO is not set
-# CONFIG_PARPORT_PC_SUPERIO is not set
-# CONFIG_PARPORT_GSC is not set
-# CONFIG_PARPORT_AX88796 is not set
-CONFIG_PARPORT_1284=y
-CONFIG_PARPORT_NOT_PC=y
-CONFIG_PNP=y
-# CONFIG_PNP_DEBUG_MESSAGES is not set
-
-#
-# Protocols
-#
-CONFIG_PNPACPI=y
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_NULL_BLK=m
-CONFIG_BLK_DEV_FD=m
-# CONFIG_PARIDE is not set
-CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m
-CONFIG_ZRAM=m
-# CONFIG_BLK_CPQ_DA is not set
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=m
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-# CONFIG_BLK_DEV_NBD is not set
-CONFIG_BLK_DEV_OSD=m
-CONFIG_BLK_DEV_SX8=m
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=16384
-CONFIG_CDROM_PKTCDVD=m
-CONFIG_CDROM_PKTCDVD_BUFFERS=8
-# CONFIG_CDROM_PKTCDVD_WCACHE is not set
-CONFIG_ATA_OVER_ETH=m
-CONFIG_XEN_BLKDEV_FRONTEND=m
-CONFIG_VIRTIO_BLK=m
-# CONFIG_BLK_DEV_HD is not set
-CONFIG_BLK_DEV_RBD=m
-# CONFIG_BLK_DEV_RSXX is not set
-
-#
-# NVME Support
-#
-CONFIG_NVME_CORE=m
-CONFIG_BLK_DEV_NVME=m
-CONFIG_BLK_DEV_NVME_SCSI=y
-CONFIG_NVME_FABRICS=m
-CONFIG_NVME_RDMA=m
-CONFIG_NVME_FC=m
-CONFIG_NVME_TARGET=m
-CONFIG_NVME_TARGET_LOOP=m
-CONFIG_NVME_TARGET_RDMA=m
-CONFIG_NVME_TARGET_FC=m
-CONFIG_NVME_TARGET_FCLOOP=m
-
-#
-# Misc devices
-#
-CONFIG_SENSORS_LIS3LV02D=m
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_ATMEL_PWM is not set
-# CONFIG_DUMMY_IRQ is not set
-# CONFIG_IBM_ASM is not set
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-CONFIG_SGI_IOC4=m
-CONFIG_TIFM_CORE=m
-CONFIG_TIFM_7XX1=m
-# CONFIG_ICS932S401 is not set
-# CONFIG_ATMEL_SSC is not set
-CONFIG_ENCLOSURE_SERVICES=m
-CONFIG_SGI_XP=m
-CONFIG_HP_ILO=m
-CONFIG_SGI_GRU=m
-# CONFIG_SGI_GRU_DEBUG is not set
-CONFIG_APDS9802ALS=m
-CONFIG_ISL29003=m
-CONFIG_ISL29020=m
-CONFIG_SENSORS_TSL2550=m
-# CONFIG_SENSORS_BH1780 is not set
-CONFIG_SENSORS_BH1770=m
-CONFIG_SENSORS_APDS990X=m
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_TI_DAC7512 is not set
-CONFIG_VMWARE_BALLOON=m
-# CONFIG_BMP085_I2C is not set
-# CONFIG_BMP085_SPI is not set
-CONFIG_PCH_PHUB=m
-# CONFIG_USB_SWITCH_FSA9480 is not set
-# CONFIG_LATTICE_ECP3_CONFIG is not set
-# CONFIG_SRAM is not set
-# CONFIG_C2PORT is not set
-
-#
-# EEPROM support
-#
-CONFIG_EEPROM_AT24=m
-# CONFIG_EEPROM_AT25 is not set
-CONFIG_EEPROM_LEGACY=m
-CONFIG_EEPROM_MAX6875=m
-CONFIG_EEPROM_93CX6=m
-# CONFIG_EEPROM_93XX46 is not set
-CONFIG_CB710_CORE=m
-# CONFIG_CB710_DEBUG is not set
-CONFIG_CB710_DEBUG_ASSUMPTIONS=y
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_TI_ST is not set
-CONFIG_SENSORS_LIS3_I2C=m
-
-#
-# Altera FPGA firmware download module
-#
-CONFIG_ALTERA_STAPL=m
-CONFIG_INTEL_MEI=m
-CONFIG_INTEL_MEI_ME=m
-# CONFIG_INTEL_MEI_TXE is not set
-CONFIG_VMWARE_VMCI=m
-# CONFIG_GENWQE is not set
-# CONFIG_CXL_BASE is not set
-# CONFIG_CXL_KERNEL_API is not set
-# CONFIG_CXL_EEH is not set
-CONFIG_HAVE_IDE=y
-# CONFIG_IDE is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=m
-CONFIG_CHR_DEV_ST=m
-CONFIG_CHR_DEV_OSST=m
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-CONFIG_CHR_DEV_SCH=m
-CONFIG_SCSI_ENCLOSURE=m
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_ATA=y
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-CONFIG_ISCSI_TCP=m
-CONFIG_ISCSI_BOOT_SYSFS=m
-CONFIG_SCSI_CXGB3_ISCSI=m
-CONFIG_SCSI_CXGB4_ISCSI=m
-CONFIG_SCSI_BNX2_ISCSI=m
-CONFIG_SCSI_BNX2X_FCOE=m
-CONFIG_BE2ISCSI=m
-# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
-CONFIG_SCSI_HPSA=m
-CONFIG_SCSI_3W_9XXX=m
-CONFIG_SCSI_3W_SAS=m
-# CONFIG_SCSI_ACARD is not set
-CONFIG_SCSI_AACRAID=m
-# CONFIG_SCSI_AIC7XXX is not set
-# CONFIG_SCSI_AIC7XXX_OLD is not set
-CONFIG_SCSI_AIC79XX=m
-CONFIG_AIC79XX_CMDS_PER_DEVICE=4
-CONFIG_AIC79XX_RESET_DELAY_MS=15000
-# CONFIG_AIC79XX_DEBUG_ENABLE is not set
-CONFIG_AIC79XX_DEBUG_MASK=0
-# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
-# CONFIG_SCSI_AIC94XX is not set
-CONFIG_SCSI_MVSAS=m
-# CONFIG_SCSI_MVSAS_DEBUG is not set
-CONFIG_SCSI_MVSAS_TASKLET=y
-CONFIG_SCSI_MVUMI=m
-# CONFIG_SCSI_DPT_I2O is not set
-# CONFIG_SCSI_ADVANSYS is not set
-CONFIG_SCSI_ARCMSR=m
-# CONFIG_MEGARAID_NEWGEN is not set
-# CONFIG_MEGARAID_LEGACY is not set
-CONFIG_MEGARAID_SAS=m
-CONFIG_SCSI_MPT2SAS=m
-CONFIG_SCSI_MPT3SAS=m
-CONFIG_SCSI_MPT2SAS_MAX_SGE=128
-CONFIG_SCSI_MPT3SAS_MAX_SGE=128
-CONFIG_SCSI_SMARTPQI=m
-CONFIG_SCSI_UFSHCD=m
-CONFIG_SCSI_UFSHCD_PCI=m
-# CONFIG_SCSI_UFSHCD_PLATFORM is not set
-CONFIG_SCSI_HPTIOP=m
-# CONFIG_SCSI_BUSLOGIC is not set
-CONFIG_VMWARE_PVSCSI=m
-CONFIG_HYPERV_STORAGE=m
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-CONFIG_FCOE_FNIC=m
-# CONFIG_SCSI_DMX3191D is not set
-# CONFIG_SCSI_EATA is not set
-# CONFIG_SCSI_FUTURE_DOMAIN is not set
-# CONFIG_SCSI_GDTH is not set
-CONFIG_SCSI_ISCI=m
-# CONFIG_SCSI_IPS is not set
-CONFIG_SCSI_INITIO=m
-# CONFIG_SCSI_INIA100 is not set
-# CONFIG_SCSI_PPA is not set
-# CONFIG_SCSI_IMM is not set
-CONFIG_SCSI_STEX=m
-# CONFIG_SCSI_SYM53C8XX_2 is not set
-# CONFIG_SCSI_IPR is not set
-# CONFIG_SCSI_QLOGIC_1280 is not set
-CONFIG_SCSI_QLA_FC=m
-CONFIG_TCM_QLA2XXX=m
-# CONFIG_TCM_QLA2XXX_DEBUG is not set
-CONFIG_SCSI_QLA_ISCSI=m
-CONFIG_QEDI=m
-CONFIG_QEDF=m
-CONFIG_SCSI_LPFC=m
-# CONFIG_SCSI_LPFC_DEBUG_FS is not set
-# CONFIG_SCSI_DC395x is not set
-# CONFIG_SCSI_DC390T is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_SCSI_PMCRAID=m
-CONFIG_SCSI_PM8001=m
-CONFIG_SCSI_SRP=m
-CONFIG_SCSI_BFA_FC=m
-CONFIG_SCSI_VIRTIO=m
-CONFIG_SCSI_CHELSIO_FCOE=m
-CONFIG_SCSI_DH=y
-CONFIG_SCSI_DH_RDAC=y
-CONFIG_SCSI_DH_HP_SW=y
-CONFIG_SCSI_DH_EMC=y
-CONFIG_SCSI_DH_ALUA=y
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=m
-# CONFIG_ATA_NONSTANDARD is not set
-CONFIG_ATA_VERBOSE_ERROR=y
-CONFIG_ATA_ACPI=y
-# CONFIG_SATA_ZPODD is not set
-CONFIG_SATA_PMP=y
-
-#
-# Controllers with non-SFF native interface
-#
-CONFIG_SATA_AHCI=m
-CONFIG_SATA_AHCI_PLATFORM=m
-# CONFIG_SATA_INIC162X is not set
-CONFIG_SATA_ACARD_AHCI=m
-CONFIG_SATA_SIL24=m
-CONFIG_ATA_SFF=y
-
-#
-# SFF controllers with custom DMA interface
-#
-CONFIG_PDC_ADMA=m
-CONFIG_SATA_QSTOR=m
-CONFIG_SATA_SX4=m
-CONFIG_ATA_BMDMA=y
-
-#
-# SATA SFF controllers with BMDMA
-#
-CONFIG_ATA_PIIX=m
-# CONFIG_SATA_HIGHBANK is not set
-CONFIG_SATA_MV=m
-CONFIG_SATA_NV=m
-CONFIG_SATA_PROMISE=m
-CONFIG_SATA_SIL=m
-CONFIG_SATA_SIS=m
-CONFIG_SATA_SVW=m
-CONFIG_SATA_ULI=m
-CONFIG_SATA_VIA=m
-CONFIG_SATA_VITESSE=m
-
-#
-# PATA SFF controllers with BMDMA
-#
-CONFIG_PATA_ALI=m
-CONFIG_PATA_AMD=m
-CONFIG_PATA_ARASAN_CF=m
-CONFIG_PATA_ARTOP=m
-CONFIG_PATA_ATIIXP=m
-CONFIG_PATA_ATP867X=m
-CONFIG_PATA_CMD64X=m
-# CONFIG_PATA_CS5520 is not set
-# CONFIG_PATA_CS5530 is not set
-CONFIG_PATA_CS5536=m
-# CONFIG_PATA_CYPRESS is not set
-# CONFIG_PATA_EFAR is not set
-CONFIG_PATA_HPT366=m
-CONFIG_PATA_HPT37X=m
-CONFIG_PATA_HPT3X2N=m
-CONFIG_PATA_HPT3X3=m
-# CONFIG_PATA_HPT3X3_DMA is not set
-CONFIG_PATA_IT8213=m
-CONFIG_PATA_IT821X=m
-CONFIG_PATA_JMICRON=m
-CONFIG_PATA_MARVELL=m
-CONFIG_PATA_NETCELL=m
-CONFIG_PATA_NINJA32=m
-# CONFIG_PATA_NS87415 is not set
-CONFIG_PATA_OLDPIIX=m
-# CONFIG_PATA_OPTIDMA is not set
-CONFIG_PATA_PDC2027X=m
-CONFIG_PATA_PDC_OLD=m
-# CONFIG_PATA_RADISYS is not set
-CONFIG_PATA_RDC=m
-# CONFIG_PATA_SC1200 is not set
-CONFIG_PATA_SCH=m
-CONFIG_PATA_SERVERWORKS=m
-CONFIG_PATA_SIL680=m
-CONFIG_PATA_SIS=m
-CONFIG_PATA_TOSHIBA=m
-# CONFIG_PATA_TRIFLEX is not set
-CONFIG_PATA_VIA=m
-# CONFIG_PATA_WINBOND is not set
-
-#
-# PIO-only SFF controllers
-#
-# CONFIG_PATA_CMD640_PCI is not set
-# CONFIG_PATA_MPIIX is not set
-# CONFIG_PATA_NS87410 is not set
-# CONFIG_PATA_OPTI is not set
-# CONFIG_PATA_RZ1000 is not set
-
-#
-# Generic fallback / legacy drivers
-#
-CONFIG_PATA_ACPI=m
-CONFIG_ATA_GENERIC=m
-# CONFIG_PATA_LEGACY is not set
-CONFIG_MD=y
-CONFIG_BLK_DEV_MD=y
-CONFIG_MD_AUTODETECT=y
-CONFIG_MD_LINEAR=m
-CONFIG_MD_RAID0=m
-CONFIG_MD_RAID1=m
-CONFIG_MD_RAID10=m
-CONFIG_MD_RAID456=m
-# CONFIG_MD_MULTIPATH is not set
-CONFIG_MD_FAULTY=m
-# CONFIG_BCACHE is not set
-CONFIG_BLK_DEV_DM_BUILTIN=y
-CONFIG_BLK_DEV_DM=m
-# CONFIG_DM_MQ_DEFAULT is not set
-CONFIG_DM_DEBUG=y
-CONFIG_DM_BUFIO=m
-# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
-CONFIG_DM_BIO_PRISON=m
-CONFIG_DM_PERSISTENT_DATA=m
-CONFIG_DM_CRYPT=m
-CONFIG_DM_SNAPSHOT=m
-CONFIG_DM_THIN_PROVISIONING=m
-CONFIG_DM_CACHE=m
-CONFIG_DM_CACHE_SMQ=m
-CONFIG_DM_ERA=m
-CONFIG_DM_MIRROR=m
-CONFIG_DM_LOG_USERSPACE=m
-CONFIG_DM_RAID=m
-CONFIG_DM_ZERO=m
-CONFIG_DM_MULTIPATH=m
-CONFIG_DM_MULTIPATH_QL=m
-CONFIG_DM_MULTIPATH_ST=m
-CONFIG_DM_DELAY=m
-CONFIG_DM_UEVENT=y
-CONFIG_DM_FLAKEY=m
-CONFIG_DM_VERITY=m
-CONFIG_DM_SWITCH=m
-CONFIG_DM_LOG_WRITES=m
-CONFIG_TARGET_CORE=m
-CONFIG_TCM_IBLOCK=m
-CONFIG_TCM_FILEIO=m
-CONFIG_TCM_PSCSI=m
-CONFIG_TCM_USER2=m
-CONFIG_LOOPBACK_TARGET=m
-CONFIG_TCM_FC=m
-CONFIG_ISCSI_TARGET=m
-CONFIG_ISCSI_TARGET_CXGB4=m
-# CONFIG_SBP_TARGET is not set
-CONFIG_FUSION=y
-CONFIG_FUSION_SPI=m
-# CONFIG_FUSION_FC is not set
-CONFIG_FUSION_SAS=m
-CONFIG_FUSION_MAX_SGE=128
-CONFIG_FUSION_CTL=m
-CONFIG_FUSION_LOGGING=y
-
-#
-# IEEE 1394 (FireWire) support
-#
-CONFIG_FIREWIRE=m
-CONFIG_FIREWIRE_OHCI=m
-CONFIG_FIREWIRE_SBP2=m
-CONFIG_FIREWIRE_NET=m
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-CONFIG_MACINTOSH_DRIVERS=y
-CONFIG_MAC_EMUMOUSEBTN=y
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-CONFIG_BONDING=m
-CONFIG_DUMMY=m
-# CONFIG_EQUALIZER is not set
-CONFIG_NET_FC=y
-CONFIG_MII=m
-CONFIG_IFB=m
+CONFIG_NET_TC_SKB_EXT=y
 CONFIG_NET_TEAM=m
-CONFIG_NET_TEAM_MODE_BROADCAST=m
-CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
-CONFIG_NET_TEAM_MODE_RANDOM=m
 CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
 CONFIG_NET_TEAM_MODE_LOADBALANCE=m
-CONFIG_MACVLAN=m
-CONFIG_MACVTAP=m
-CONFIG_VXLAN=m
-CONFIG_GENEVE=m
-CONFIG_MACSEC=m
-CONFIG_NETCONSOLE=m
-CONFIG_NETCONSOLE_DYNAMIC=y
-CONFIG_NETPOLL=y
-CONFIG_NET_POLL_CONTROLLER=y
-CONFIG_NTB_NETDEV=m
-CONFIG_TUN=m
-# CONFIG_TUN_VNET_CROSS_LE is not set
-CONFIG_VETH=m
-CONFIG_VIRTIO_NET=m
-CONFIG_NLMON=m
-CONFIG_VSOCKMON=m
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_VHOST_NET=m
-# CONFIG_VHOST_SCSI is not set
-CONFIG_VHOST_VSOCK=m
-CONFIG_VHOST_RING=m
-CONFIG_VHOST=m
-# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
-
-#
-# Distributed Switch Architecture drivers
-#
-# CONFIG_NET_DSA_MV88E6XXX is not set
-# CONFIG_NET_DSA_MV88E6060 is not set
-# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
-# CONFIG_NET_DSA_MV88E6131 is not set
-# CONFIG_NET_DSA_MV88E6123_61_65 is not set
-CONFIG_ETHERNET=y
-CONFIG_MDIO=m
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
+CONFIG_NET_TEAM_MODE_RANDOM=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_UDP_TUNNEL=m
 CONFIG_NET_VENDOR_AMAZON=y
-CONFIG_ENA_ETHERNET=m
 CONFIG_NET_VENDOR_AMD=y
-CONFIG_AMD8111_ETH=m
-CONFIG_PCNET32=m
-CONFIG_AMD_XGBE=m
-# CONFIG_AMD_XGBE_DCB is not set
-CONFIG_AMD_XGBE_HAVE_ECC=y
 CONFIG_NET_VENDOR_AQUANTIA=y
-CONFIG_AQTION=m
 CONFIG_NET_VENDOR_ATHEROS=y
-CONFIG_ATL2=m
-CONFIG_ATL1=m
-CONFIG_ATL1E=m
-CONFIG_ATL1C=m
-CONFIG_ALX=m
-CONFIG_NET_CADENCE=y
-CONFIG_ARM_AT91_ETHER=m
-CONFIG_MACB=m
-CONFIG_NET_VENDOR_BROADCOM=y
-CONFIG_B44=m
-CONFIG_B44_PCI_AUTOSELECT=y
-CONFIG_B44_PCICORE_AUTOSELECT=y
-CONFIG_B44_PCI=y
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-CONFIG_TIGON3=m
-CONFIG_TIGON3_HWMON=y
-CONFIG_BNX2X=m
-CONFIG_BNX2X_SRIOV=y
-CONFIG_BNXT=m
-CONFIG_BNXT_SRIOV=y
-CONFIG_BNXT_FLOWER_OFFLOAD=y
-CONFIG_BNXT_DCB=y
-CONFIG_BNXT_HWMON=y
 CONFIG_NET_VENDOR_BROCADE=y
-CONFIG_BNA=m
-CONFIG_NET_CALXEDA_XGMAC=m
 CONFIG_NET_VENDOR_CAVIUM=y
-CONFIG_LIQUIDIO=m
-CONFIG_LIQUIDIO_VF=m
 CONFIG_NET_VENDOR_CHELSIO=y
-# CONFIG_CHELSIO_T1 is not set
-CONFIG_CHELSIO_T3=m
-CONFIG_CHELSIO_T4=m
-# CONFIG_CHELSIO_T4_DCB is not set
-CONFIG_CHELSIO_T4VF=m
-CONFIG_CHELSIO_LIB=m
 CONFIG_NET_VENDOR_CISCO=y
-CONFIG_ENIC=m
-CONFIG_DNET=m
 CONFIG_NET_VENDOR_DEC=y
-CONFIG_NET_TULIP=y
-CONFIG_DE2104X=m
-CONFIG_DE2104X_DSL=0
-CONFIG_TULIP=m
-# CONFIG_TULIP_MWI is not set
-CONFIG_TULIP_MMIO=y
-# CONFIG_TULIP_NAPI is not set
-CONFIG_DE4X5=m
-CONFIG_WINBOND_840=m
-CONFIG_DM9102=m
-CONFIG_ULI526X=m
-CONFIG_PCMCIA_XIRCOM=m
-# CONFIG_NET_VENDOR_DLINK is not set
+CONFIG_NET_VENDOR_DLINK=y
 CONFIG_NET_VENDOR_EMULEX=y
-CONFIG_BE2NET=m
-CONFIG_BE2NET_HWMON=y
-# CONFIG_NET_VENDOR_EXAR is not set
 CONFIG_NET_VENDOR_GOOGLE=y
-CONFIG_GVE=m
-# CONFIG_NET_VENDOR_HP is not set
+CONFIG_NET_VENDOR_HUAWEI=y
 CONFIG_NET_VENDOR_INTEL=y
-# CONFIG_E100 is not set
-CONFIG_E1000=m
-CONFIG_E1000E=m
-CONFIG_E1000E_HWTS=y
-CONFIG_IGB=m
-CONFIG_IGB_HWMON=y
-CONFIG_IGB_DCA=y
-CONFIG_IGBVF=m
-# CONFIG_IXGB is not set
-CONFIG_IXGBE=m
-CONFIG_IXGBE_HWMON=y
-CONFIG_IXGBE_DCA=y
-CONFIG_IXGBE_DCB=y
-CONFIG_IXGBEVF=m
-CONFIG_I40E=m
-CONFIG_I40E_VXLAN=y
-CONFIG_I40E_DCB=y
-CONFIG_IAVF=m
-CONFIG_I40EVF=m
-CONFIG_ICE=m
-CONFIG_FM10K=m
-CONFIG_IGC=m
-# CONFIG_NET_VENDOR_I825XX is not set
-CONFIG_IP1000=m
-CONFIG_JME=m
-CONFIG_NET_VENDOR_MARVELL=y
-CONFIG_MVMDIO=m
-CONFIG_SKGE=m
-# CONFIG_SKGE_DEBUG is not set
-CONFIG_SKGE_GENESIS=y
-CONFIG_SKY2=m
-# CONFIG_SKY2_DEBUG is not set
-CONFIG_NET_VENDOR_MELLANOX=y
-CONFIG_MLX4_EN=m
-CONFIG_MLX4_EN_DCB=y
-CONFIG_MLX4_CORE=m
-CONFIG_MLX4_DEBUG=y
-CONFIG_MLX4_CORE_GEN2=y
-CONFIG_MLX5_CORE=m
-# CONFIG_MLX5_FPGA is not set
-CONFIG_MLX5_CORE_EN=y
-CONFIG_MLX5_EN_ARFS=y
-CONFIG_MLX5_EN_RXNFC=y
-CONFIG_MLX5_MPFS=y
-CONFIG_MLX5_ESWITCH=y
-CONFIG_MLX5_CORE_EN_DCB=y
-CONFIG_MLX5_CORE_IPOIB=y
-CONFIG_MLXSW_CORE=m
-CONFIG_MLXSW_CORE_HWMON=y
-CONFIG_MLXSW_CORE_THERMAL=y
-CONFIG_MLXSW_PCI=m
-CONFIG_MLXSW_I2C=m
-CONFIG_MLXSW_SWITCHIB=m
-CONFIG_MLXSW_SWITCHX2=m
-CONFIG_MLXSW_SPECTRUM=m
-CONFIG_MLXSW_SPECTRUM_DCB=y
-CONFIG_MLXSW_MINIMAL=m
-CONFIG_MLXFW=m
-# CONFIG_NET_VENDOR_MICREL is not set
-# CONFIG_NET_VENDOR_MICROCHIP is not set
+CONFIG_NET_VENDOR_MICROSOFT=y
 CONFIG_NET_VENDOR_MYRI=y
-CONFIG_MYRI10GE=m
-CONFIG_MYRI10GE_DCA=y
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
 CONFIG_NET_VENDOR_NETRONOME=y
-CONFIG_NFP=m
-CONFIG_NFP_APP_FLOWER=y
-CONFIG_NFP_APP_ABM_NIC=y
-# CONFIG_NFP_DEBUG is not set
-# CONFIG_NET_VENDOR_NVIDIA is not set
 CONFIG_NET_VENDOR_OKI=y
-CONFIG_PCH_GBE=m
-CONFIG_ETHOC=m
-CONFIG_NET_PACKET_ENGINE=y
-# CONFIG_HAMACHI is not set
-# CONFIG_YELLOWFIN is not set
+CONFIG_NET_VENDOR_PENSANDO=y
 CONFIG_NET_VENDOR_QLOGIC=y
-CONFIG_QLA3XXX=m
-CONFIG_QLCNIC=m
-CONFIG_QLCNIC_SRIOV=y
-CONFIG_QLCNIC_DCB=y
-# CONFIG_QLCNIC_VXLAN is not set
-CONFIG_QLCNIC_HWMON=y
-CONFIG_QLGE=m
-CONFIG_NETXEN_NIC=m
-CONFIG_QED=m
-CONFIG_QED_LL2=y
-CONFIG_QED_SRIOV=y
-CONFIG_QEDE=m
-CONFIG_QED_RDMA=y
-CONFIG_QED_ISCSI=y
-CONFIG_QED_FCOE=y
-CONFIG_QED_OOO=y
 CONFIG_NET_VENDOR_REALTEK=y
-# CONFIG_ATP is not set
-CONFIG_8139CP=m
-CONFIG_8139TOO=m
-# CONFIG_8139TOO_PIO is not set
-# CONFIG_8139TOO_TUNE_TWISTER is not set
-CONFIG_8139TOO_8129=y
-# CONFIG_8139_OLD_RX_RESET is not set
-CONFIG_R8169=m
-# CONFIG_NET_VENDOR_RDC is not set
 CONFIG_NET_VENDOR_ROCKER=y
-CONFIG_ROCKER=m
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
 CONFIG_NET_VENDOR_SOLARFLARE=y
-CONFIG_SFC=m
-CONFIG_SFC_MTD=y
-CONFIG_SFC_MCDI_MON=y
-CONFIG_SFC_SRIOV=y
-CONFIG_SFC_MCDI_LOGGING=y
-CONFIG_SFC_FALCON=m
-CONFIG_SFC_FALCON_MTD=y
-CONFIG_NET_VENDOR_SMSC=y
-CONFIG_EPIC100=m
-CONFIG_SMSC9420=m
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-CONFIG_NET_VENDOR_TI=y
-CONFIG_TLAN=m
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_NET_VENDOR_WIZNET is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-# CONFIG_NET_SB1000 is not set
-CONFIG_PHYLIB=y
-
-#
-# MII PHY device drivers
-#
-CONFIG_AT803X_PHY=m
-CONFIG_AMD_PHY=m
-CONFIG_MARVELL_PHY=m
-CONFIG_DAVICOM_PHY=m
-CONFIG_QSEMI_PHY=m
-CONFIG_LXT_PHY=m
-CONFIG_CICADA_PHY=m
-CONFIG_VITESSE_PHY=m
-CONFIG_SMSC_PHY=m
-CONFIG_BROADCOM_PHY=m
-CONFIG_BCM87XX_PHY=m
-CONFIG_ICPLUS_PHY=m
-CONFIG_REALTEK_PHY=y
-CONFIG_NATIONAL_PHY=m
-CONFIG_STE10XP=m
-CONFIG_LSI_ET1011C_PHY=m
-CONFIG_MICREL_PHY=m
-CONFIG_FIXED_PHY=y
-CONFIG_MDIO_BITBANG=m
-# CONFIG_MDIO_GPIO is not set
-# CONFIG_MICREL_KS8995MA is not set
-# CONFIG_PLIP is not set
-CONFIG_PPP=m
-CONFIG_PPP_BSDCOMP=m
-CONFIG_PPP_DEFLATE=m
-CONFIG_PPP_FILTER=y
-CONFIG_PPP_MPPE=m
-CONFIG_PPP_MULTILINK=y
-CONFIG_PPPOATM=m
-CONFIG_PPPOE=m
-CONFIG_PPTP=m
-CONFIG_PPPOL2TP=m
-CONFIG_PPP_ASYNC=m
-CONFIG_PPP_SYNC_TTY=m
-CONFIG_SLIP=m
-CONFIG_SLHC=m
-CONFIG_SLIP_COMPRESSED=y
-CONFIG_SLIP_SMART=y
-# CONFIG_SLIP_MODE_SLIP6 is not set
-CONFIG_USB_NET_DRIVERS=y
-CONFIG_USB_CATC=m
-CONFIG_USB_KAWETH=m
-CONFIG_USB_PEGASUS=m
-CONFIG_USB_RTL8150=m
-CONFIG_USB_RTL8152=m
-# CONFIG_USB_LAN78XX is not set
-CONFIG_USB_USBNET=m
-CONFIG_USB_NET_AX8817X=m
-CONFIG_USB_NET_AX88179_178A=m
-CONFIG_USB_NET_CDCETHER=m
-CONFIG_USB_NET_CDC_EEM=m
-CONFIG_USB_NET_CDC_NCM=m
-CONFIG_USB_NET_HUAWEI_CDC_NCM=m
-CONFIG_USB_NET_CDC_MBIM=m
-CONFIG_USB_NET_DM9601=m
-# CONFIG_USB_NET_SR9700 is not set
-# CONFIG_USB_NET_SR9800 is not set
-CONFIG_USB_NET_SMSC75XX=m
-CONFIG_USB_NET_SMSC95XX=m
-CONFIG_USB_NET_GL620A=m
-CONFIG_USB_NET_NET1080=m
-CONFIG_USB_NET_PLUSB=m
-CONFIG_USB_NET_MCS7830=m
-CONFIG_USB_NET_RNDIS_HOST=m
-CONFIG_USB_NET_CDC_SUBSET_ENABLE=m
-CONFIG_USB_NET_CDC_SUBSET=m
-CONFIG_USB_ALI_M5632=y
-CONFIG_USB_AN2720=y
-CONFIG_USB_BELKIN=y
-CONFIG_USB_ARMLINUX=y
-CONFIG_USB_EPSON2888=y
-CONFIG_USB_KC2190=y
-CONFIG_USB_NET_ZAURUS=m
-CONFIG_USB_NET_CX82310_ETH=m
-CONFIG_USB_NET_KALMIA=m
-CONFIG_USB_NET_QMI_WWAN=m
-CONFIG_USB_HSO=m
-CONFIG_USB_NET_INT51X1=m
-CONFIG_USB_IPHETH=m
-CONFIG_USB_SIERRA_NET=m
-CONFIG_USB_VL600=m
-# CONFIG_USB_NET_CH9200 is not set
-CONFIG_WLAN=y
-# CONFIG_LIBERTAS_THINFIRM is not set
-# CONFIG_AIRO is not set
-# CONFIG_ATMEL is not set
-# CONFIG_AT76C50X_USB is not set
-# CONFIG_PRISM54 is not set
-# CONFIG_USB_ZD1201 is not set
-# CONFIG_USB_NET_RNDIS_WLAN is not set
-# CONFIG_ADM8211 is not set
-CONFIG_MAC80211_HWSIM=m
-CONFIG_ATH_COMMON=m
-CONFIG_WLAN_VENDOR_ATH=y
-# CONFIG_ATH_DEBUG is not set
-# CONFIG_ATH5K is not set
-# CONFIG_ATH5K_PCI is not set
-CONFIG_ATH9K_HW=m
-CONFIG_ATH9K_COMMON=m
-CONFIG_ATH9K_COMMON_DEBUG=y
-CONFIG_ATH9K_BTCOEX_SUPPORT=y
-CONFIG_ATH9K=m
-CONFIG_ATH9K_PCI=y
-CONFIG_ATH9K_AHB=y
-CONFIG_ATH9K_DEBUGFS=y
-# CONFIG_ATH9K_STATION_STATISTICS is not set
-# CONFIG_ATH9K_DYNACK is not set
-CONFIG_ATH9K_WOW=y
-CONFIG_ATH9K_RFKILL=y
-# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
-CONFIG_ATH9K_PCOEM=y
-CONFIG_ATH9K_HTC=m
-# CONFIG_ATH9K_HTC_DEBUGFS is not set
-# CONFIG_ATH9K_HWRNG is not set
-CONFIG_CARL9170=m
-CONFIG_CARL9170_LEDS=y
-# CONFIG_CARL9170_DEBUGFS is not set
-CONFIG_CARL9170_WPC=y
-# CONFIG_CARL9170_HWRNG is not set
-# CONFIG_ATH6KL is not set
-# CONFIG_AR5523 is not set
-CONFIG_WIL6210=m
-CONFIG_WIL6210_ISR_COR=y
-CONFIG_WIL6210_TRACING=y
-CONFIG_WIL6210_DEBUGFS=y
-CONFIG_ATH10K=m
-CONFIG_ATH10K_PCI=m
-# CONFIG_ATH10K_SDIO is not set
-# CONFIG_ATH10K_USB is not set
-# CONFIG_ATH10K_DEBUG is not set
-CONFIG_ATH10K_DEBUGFS=y
-# CONFIG_ATH10K_TRACING is not set
-# CONFIG_B43 is not set
-# CONFIG_B43LEGACY is not set
-CONFIG_WLAN_VENDOR_BROADCOM=y
-CONFIG_BRCMUTIL=m
-CONFIG_BRCMSMAC=m
-CONFIG_BRCMFMAC=m
-CONFIG_BRCMFMAC_PROTO_BCDC=y
-CONFIG_BRCMFMAC_PROTO_MSGBUF=y
-CONFIG_BRCMFMAC_SDIO=y
-CONFIG_BRCMFMAC_USB=y
-CONFIG_BRCMFMAC_PCIE=y
-# CONFIG_BRCM_TRACING is not set
-# CONFIG_BRCMDBG is not set
-# CONFIG_HOSTAP is not set
-# CONFIG_IPW2100 is not set
-# CONFIG_IPW2200 is not set
-CONFIG_WLAN_VENDOR_INTEL=y
-CONFIG_IWLEGACY=m
-CONFIG_IWL4965=m
-CONFIG_IWL3945=m
-
-#
-# iwl3945 / iwl4965 Debugging Options
-#
-CONFIG_IWLEGACY_DEBUG=y
-CONFIG_IWLEGACY_DEBUGFS=y
-CONFIG_IWLWIFI=m
-CONFIG_IWLWIFI_LEDS=y
-CONFIG_IWLDVM=m
-CONFIG_IWLMVM=m
-CONFIG_IWLWIFI_OPMODE_MODULAR=y
-# CONFIG_IWLWIFI_BCAST_FILTERING is not set
-
-#
-# Debugging Options
-#
-# CONFIG_IWLWIFI_DEBUG is not set
-CONFIG_IWLWIFI_DEBUGFS=y
-# CONFIG_IWLWIFI_DEVICE_TRACING is not set
-# CONFIG_LIBERTAS is not set
-CONFIG_WLAN_VENDOR_MARVELL=y
-CONFIG_MWIFIEX=m
-CONFIG_MWIFIEX_SDIO=m
-CONFIG_MWIFIEX_PCIE=m
-CONFIG_MWIFIEX_USB=m
-CONFIG_MWL8K=m
-# CONFIG_HERMES is not set
-# CONFIG_P54_COMMON is not set
-CONFIG_WLAN_VENDOR_RALINK=y
-CONFIG_RT2X00=m
-# CONFIG_RT2400PCI is not set
-# CONFIG_RT2500PCI is not set
-CONFIG_RT61PCI=m
-CONFIG_RT2800PCI=m
-CONFIG_RT2800PCI_RT33XX=y
-CONFIG_RT2800PCI_RT35XX=y
-CONFIG_RT2800PCI_RT53XX=y
-CONFIG_RT2800PCI_RT3290=y
-# CONFIG_RT2500USB is not set
-CONFIG_RT73USB=m
-CONFIG_RT2800USB=m
-CONFIG_RT2800USB_RT33XX=y
-CONFIG_RT2800USB_RT35XX=y
-CONFIG_RT2800USB_RT3573=y
-CONFIG_RT2800USB_RT53XX=y
-CONFIG_RT2800USB_RT55XX=y
-CONFIG_RT2800USB_UNKNOWN=y
-CONFIG_RT2800_LIB=m
-CONFIG_RT2800_LIB_MMIO=m
-CONFIG_RT2X00_LIB_MMIO=m
-CONFIG_RT2X00_LIB_PCI=m
-CONFIG_RT2X00_LIB_USB=m
-CONFIG_RT2X00_LIB=m
-CONFIG_RT2X00_LIB_FIRMWARE=y
-CONFIG_RT2X00_LIB_CRYPTO=y
-CONFIG_RT2X00_LIB_LEDS=y
-CONFIG_RT2X00_LIB_DEBUGFS=y
-# CONFIG_RT2X00_DEBUG is not set
-CONFIG_WLAN_VENDOR_REALTEK=y
-# CONFIG_RTL8180 is not set
-CONFIG_RTL8187=m
-CONFIG_RTL8187_LEDS=y
-CONFIG_RTL_CARDS=m
-CONFIG_RTL8192CE=m
-CONFIG_RTL8192SE=m
-CONFIG_RTL8192DE=m
-CONFIG_RTL8723AE=m
-CONFIG_RTL8723BE=m
-CONFIG_RTL8188EE=m
-CONFIG_RTL8192EE=m
-CONFIG_RTL8821AE=m
-CONFIG_RTL8192CU=m
-CONFIG_RTLWIFI=m
-CONFIG_RTLWIFI_PCI=m
-CONFIG_RTLWIFI_USB=m
-# CONFIG_RTLWIFI_DEBUG is not set
-CONFIG_RTL8192C_COMMON=m
-CONFIG_RTL8723_COMMON=m
-CONFIG_RTLBTCOEXIST=m
-CONFIG_RTW88=m
-CONFIG_RTW88_CORE=m
-CONFIG_RTW88_PCI=m
-CONFIG_RTW88_8822BE=y
-CONFIG_RTW88_8822CE=y
-# CONFIG_RTW88_DEBUG is not set
-# CONFIG_RTW88_DEBUGFS is not set
-# CONFIG_WL_TI is not set
-# CONFIG_ZD1211RW is not set
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-CONFIG_WAN=y
-# CONFIG_LANMEDIA is not set
-CONFIG_HDLC=m
-CONFIG_HDLC_RAW=m
-# CONFIG_HDLC_RAW_ETH is not set
-CONFIG_HDLC_CISCO=m
-CONFIG_HDLC_FR=m
-CONFIG_HDLC_PPP=m
-
-#
-# X.25/LAPB support is disabled
-#
-# CONFIG_PCI200SYN is not set
-# CONFIG_WANXL is not set
-# CONFIG_PC300TOO is not set
-# CONFIG_FARSYNC is not set
-# CONFIG_DSCC4 is not set
-CONFIG_DLCI=m
-CONFIG_DLCI_MAX=8
-# CONFIG_SBNI is not set
-CONFIG_IEEE802154_DRIVERS=m
-CONFIG_IEEE802154_FAKELB=m
-# CONFIG_IEEE802154_AT86RF230 is not set
-# CONFIG_IEEE802154_MRF24J40 is not set
-# CONFIG_IEEE802154_CC2520 is not set
-# CONFIG_IEEE802154_ATUSB is not set
-# CONFIG_IEEE802154_ADF7242 is not set
-CONFIG_XEN_NETDEV_FRONTEND=m
-CONFIG_VMXNET3=m
-CONFIG_FUJITSU_ES=m
-CONFIG_THUNDERBOLT_NET=m
-CONFIG_HYPERV_NET=m
-CONFIG_NET_FAILOVER=m
-CONFIG_ISDN=y
-CONFIG_ISDN_I4L=m
-CONFIG_ISDN_PPP=y
-CONFIG_ISDN_PPP_VJ=y
-CONFIG_ISDN_MPP=y
-CONFIG_IPPP_FILTER=y
-# CONFIG_ISDN_PPP_BSDCOMP is not set
-CONFIG_ISDN_AUDIO=y
-CONFIG_ISDN_TTY_FAX=y
-
-#
-# ISDN feature submodules
-#
-CONFIG_ISDN_DIVERSION=m
-
-#
-# ISDN4Linux hardware drivers
-#
-
-#
-# Passive cards
-#
-CONFIG_ISDN_DRV_HISAX=m
-
-#
-# D-channel protocol features
-#
-CONFIG_HISAX_EURO=y
-CONFIG_DE_AOC=y
-CONFIG_HISAX_NO_SENDCOMPLETE=y
-CONFIG_HISAX_NO_LLC=y
-CONFIG_HISAX_NO_KEYPAD=y
-CONFIG_HISAX_1TR6=y
-CONFIG_HISAX_NI1=y
-CONFIG_HISAX_MAX_CARDS=8
-
-#
-# HiSax supported cards
-#
-CONFIG_HISAX_16_3=y
-CONFIG_HISAX_TELESPCI=y
-CONFIG_HISAX_S0BOX=y
-CONFIG_HISAX_FRITZPCI=y
-CONFIG_HISAX_AVM_A1_PCMCIA=y
-CONFIG_HISAX_ELSA=y
-CONFIG_HISAX_DIEHLDIVA=y
-CONFIG_HISAX_SEDLBAUER=y
-CONFIG_HISAX_NETJET=y
-CONFIG_HISAX_NETJET_U=y
-CONFIG_HISAX_NICCY=y
-CONFIG_HISAX_BKM_A4T=y
-CONFIG_HISAX_SCT_QUADRO=y
-CONFIG_HISAX_GAZEL=y
-CONFIG_HISAX_HFC_PCI=y
-CONFIG_HISAX_W6692=y
-CONFIG_HISAX_HFC_SX=y
-CONFIG_HISAX_ENTERNOW_PCI=y
-# CONFIG_HISAX_DEBUG is not set
-
-#
-# HiSax PCMCIA card service modules
-#
-
-#
-# HiSax sub driver modules
-#
-CONFIG_HISAX_ST5481=m
-# CONFIG_HISAX_HFCUSB is not set
-CONFIG_HISAX_HFC4S8S=m
-CONFIG_HISAX_FRITZ_PCIPNP=m
-
-#
-# Active cards
-#
-CONFIG_ISDN_CAPI=m
-CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
-# CONFIG_CAPI_TRACE is not set
-CONFIG_ISDN_CAPI_MIDDLEWARE=y
-CONFIG_ISDN_CAPI_CAPI20=m
-CONFIG_ISDN_CAPI_CAPIDRV=m
-
-#
-# CAPI hardware drivers
-#
-CONFIG_CAPI_AVM=y
-CONFIG_ISDN_DRV_AVMB1_B1PCI=m
-CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
-CONFIG_ISDN_DRV_AVMB1_T1PCI=m
-CONFIG_ISDN_DRV_AVMB1_C4=m
-# CONFIG_CAPI_EICON is not set
-CONFIG_ISDN_DRV_GIGASET=m
-CONFIG_GIGASET_CAPI=y
-# CONFIG_GIGASET_I4L is not set
-# CONFIG_GIGASET_DUMMYLL is not set
-CONFIG_GIGASET_BASE=m
-CONFIG_GIGASET_M105=m
-CONFIG_GIGASET_M101=m
-# CONFIG_GIGASET_DEBUG is not set
-CONFIG_HYSDN=m
-CONFIG_HYSDN_CAPI=y
-CONFIG_MISDN=m
-CONFIG_MISDN_DSP=m
-CONFIG_MISDN_L1OIP=m
-
-#
-# mISDN hardware drivers
-#
-CONFIG_MISDN_HFCPCI=m
-CONFIG_MISDN_HFCMULTI=m
-CONFIG_MISDN_HFCUSB=m
-CONFIG_MISDN_AVMFRITZ=m
-CONFIG_MISDN_SPEEDFAX=m
-CONFIG_MISDN_INFINEON=m
-CONFIG_MISDN_W6692=m
-CONFIG_MISDN_NETJET=m
-CONFIG_MISDN_IPAC=m
-CONFIG_MISDN_ISAR=m
-CONFIG_ISDN_HDLC=m
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-CONFIG_INPUT_LEDS=y
-CONFIG_INPUT_FF_MEMLESS=y
-CONFIG_INPUT_POLLDEV=m
-CONFIG_INPUT_SPARSEKMAP=m
-# CONFIG_INPUT_MATRIXKMAP is not set
-
-#
-# Userland interfaces
-#
-CONFIG_INPUT_MOUSEDEV=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
-CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
-CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
-CONFIG_INPUT_JOYDEV=m
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-CONFIG_INPUT_KEYBOARD=y
-# CONFIG_KEYBOARD_ADP5588 is not set
-# CONFIG_KEYBOARD_ADP5589 is not set
-CONFIG_KEYBOARD_ATKBD=y
-# CONFIG_KEYBOARD_QT1070 is not set
-# CONFIG_KEYBOARD_QT2160 is not set
-# CONFIG_KEYBOARD_LKKBD is not set
-# CONFIG_KEYBOARD_GPIO is not set
-# CONFIG_KEYBOARD_GPIO_POLLED is not set
-# CONFIG_KEYBOARD_TCA6416 is not set
-# CONFIG_KEYBOARD_TCA8418 is not set
-# CONFIG_KEYBOARD_MATRIX is not set
-# CONFIG_KEYBOARD_LM8323 is not set
-# CONFIG_KEYBOARD_LM8333 is not set
-# CONFIG_KEYBOARD_MAX7359 is not set
-# CONFIG_KEYBOARD_MCS is not set
-# CONFIG_KEYBOARD_MPR121 is not set
-# CONFIG_KEYBOARD_NEWTON is not set
-# CONFIG_KEYBOARD_OPENCORES is not set
-# CONFIG_KEYBOARD_SAMSUNG is not set
-# CONFIG_KEYBOARD_STOWAWAY is not set
-# CONFIG_KEYBOARD_SUNKBD is not set
-# CONFIG_KEYBOARD_XTKBD is not set
-CONFIG_INPUT_MOUSE=y
-CONFIG_MOUSE_PS2=y
-CONFIG_MOUSE_PS2_ALPS=y
-CONFIG_MOUSE_PS2_LOGIPS2PP=y
-CONFIG_MOUSE_PS2_SYNAPTICS=y
-CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
-CONFIG_MOUSE_PS2_CYPRESS=y
-CONFIG_MOUSE_PS2_LIFEBOOK=y
-CONFIG_MOUSE_PS2_TRACKPOINT=y
-CONFIG_MOUSE_PS2_ELANTECH=y
-CONFIG_MOUSE_PS2_SENTELIC=y
-# CONFIG_MOUSE_PS2_TOUCHKIT is not set
-CONFIG_MOUSE_PS2_VMMOUSE=y
-CONFIG_MOUSE_PS2_SMBUS=y
-CONFIG_MOUSE_SERIAL=m
-CONFIG_MOUSE_APPLETOUCH=m
-CONFIG_MOUSE_BCM5974=m
-CONFIG_MOUSE_CYAPA=m
-CONFIG_MOUSE_VSXXXAA=m
-# CONFIG_MOUSE_GPIO is not set
-CONFIG_MOUSE_SYNAPTICS_I2C=m
-CONFIG_MOUSE_SYNAPTICS_USB=m
-# CONFIG_INPUT_JOYSTICK is not set
-CONFIG_INPUT_TABLET=y
-CONFIG_TABLET_USB_ACECAD=m
-CONFIG_TABLET_USB_AIPTEK=m
-CONFIG_TABLET_USB_GTCO=m
-# CONFIG_TABLET_USB_HANWANG is not set
-CONFIG_TABLET_USB_KBTAB=m
-CONFIG_TABLET_USB_WACOM=m
-CONFIG_INPUT_TOUCHSCREEN=y
-# CONFIG_TOUCHSCREEN_ADS7846 is not set
-# CONFIG_TOUCHSCREEN_AD7877 is not set
-# CONFIG_TOUCHSCREEN_AD7879 is not set
-# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
-# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_BU21013 is not set
-# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
-# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
-# CONFIG_TOUCHSCREEN_DYNAPRO is not set
-# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
-# CONFIG_TOUCHSCREEN_EETI is not set
-# CONFIG_TOUCHSCREEN_FUJITSU is not set
-# CONFIG_TOUCHSCREEN_ILI210X is not set
-# CONFIG_TOUCHSCREEN_GUNZE is not set
-CONFIG_TOUCHSCREEN_ELO=m
-CONFIG_TOUCHSCREEN_WACOM_W8001=m
-CONFIG_TOUCHSCREEN_WACOM_I2C=m
-# CONFIG_TOUCHSCREEN_MAX11801 is not set
-# CONFIG_TOUCHSCREEN_MCS5000 is not set
-# CONFIG_TOUCHSCREEN_MMS114 is not set
-# CONFIG_TOUCHSCREEN_MTOUCH is not set
-# CONFIG_TOUCHSCREEN_INEXIO is not set
-# CONFIG_TOUCHSCREEN_MK712 is not set
-# CONFIG_TOUCHSCREEN_PENMOUNT is not set
-# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
-# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
-# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
-# CONFIG_TOUCHSCREEN_PIXCIR is not set
-# CONFIG_TOUCHSCREEN_WM97XX is not set
-# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
-# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
-# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
-# CONFIG_TOUCHSCREEN_TSC2005 is not set
-# CONFIG_TOUCHSCREEN_TSC2007 is not set
-# CONFIG_TOUCHSCREEN_W90X900 is not set
-# CONFIG_TOUCHSCREEN_ST1232 is not set
-# CONFIG_TOUCHSCREEN_TPS6507X is not set
-CONFIG_INPUT_MISC=y
-# CONFIG_INPUT_AD714X is not set
-# CONFIG_INPUT_BMA150 is not set
-CONFIG_INPUT_PCSPKR=m
-# CONFIG_INPUT_MMA8450 is not set
-# CONFIG_INPUT_MPU3050 is not set
-CONFIG_INPUT_APANEL=m
-CONFIG_INPUT_GP2A=m
-# CONFIG_INPUT_GPIO_TILT_POLLED is not set
-CONFIG_INPUT_ATLAS_BTNS=m
-CONFIG_INPUT_ATI_REMOTE2=m
-CONFIG_INPUT_KEYSPAN_REMOTE=m
-# CONFIG_INPUT_KXTJ9 is not set
-CONFIG_INPUT_POWERMATE=m
-CONFIG_INPUT_YEALINK=m
-CONFIG_INPUT_CM109=m
-CONFIG_INPUT_UINPUT=m
-# CONFIG_INPUT_PCF8574 is not set
-# CONFIG_INPUT_PWM_BEEPER is not set
-CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
-# CONFIG_INPUT_ADXL34X is not set
-# CONFIG_INPUT_IMS_PCU is not set
-# CONFIG_INPUT_CMA3000 is not set
-CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m
-CONFIG_RMI4_CORE=m
-CONFIG_RMI4_SMB=m
-CONFIG_RMI4_F03=y
-CONFIG_RMI4_F03_SERIO=m
-CONFIG_RMI4_2D_SENSOR=y
-CONFIG_RMI4_F11=y
-CONFIG_RMI4_F12=y
-CONFIG_RMI4_F30=y
-
-#
-# Hardware I/O ports
-#
-CONFIG_SERIO=y
-CONFIG_SERIO_I8042=y
-CONFIG_SERIO_SERPORT=y
-# CONFIG_SERIO_CT82C710 is not set
-# CONFIG_SERIO_PARKBD is not set
-# CONFIG_SERIO_PCIPS2 is not set
-CONFIG_SERIO_LIBPS2=y
-CONFIG_SERIO_RAW=m
-CONFIG_SERIO_ALTERA_PS2=m
-# CONFIG_SERIO_PS2MULT is not set
-CONFIG_SERIO_ARC_PS2=m
-CONFIG_HYPERV_KEYBOARD=m
-# CONFIG_GAMEPORT is not set
-
-#
-# Character devices
-#
-CONFIG_TTY=y
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_VT_CONSOLE_SLEEP=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_SERIAL_NONSTANDARD=y
-# CONFIG_ROCKETPORT is not set
-CONFIG_CYCLADES=m
-# CONFIG_CYZ_INTR is not set
-# CONFIG_MOXA_INTELLIO is not set
-# CONFIG_MOXA_SMARTIO is not set
-CONFIG_SYNCLINK=m
-CONFIG_SYNCLINKMP=m
-CONFIG_SYNCLINK_GT=m
-CONFIG_NOZOMI=m
-# CONFIG_ISI is not set
-CONFIG_N_HDLC=m
-CONFIG_N_GSM=m
-# CONFIG_TRACE_SINK is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_CRASH=y
-# CONFIG_STALDRV is not set
-
-#
-# Serial drivers
-#
-CONFIG_SERIAL_8250=y
-# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
-CONFIG_SERIAL_8250_PNP=y
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_FIX_EARLYCON_MEM=y
-CONFIG_SERIAL_8250_DMA=y
-CONFIG_SERIAL_8250_PCI=y
-CONFIG_SERIAL_8250_NR_UARTS=32
-CONFIG_SERIAL_8250_RUNTIME_UARTS=4
-CONFIG_SERIAL_8250_EXTENDED=y
-CONFIG_SERIAL_8250_MANY_PORTS=y
-CONFIG_SERIAL_8250_SHARE_IRQ=y
-# CONFIG_SERIAL_8250_DETECT_IRQ is not set
-CONFIG_SERIAL_8250_RSA=y
-CONFIG_SERIAL_8250_DW=y
-
-#
-# Non-8250 serial port support
-#
-# CONFIG_SERIAL_KGDB_NMI is not set
-# CONFIG_SERIAL_MAX3100 is not set
-# CONFIG_SERIAL_MAX310X is not set
-# CONFIG_SERIAL_MFD_HSU is not set
-CONFIG_SERIAL_CORE=y
-CONFIG_SERIAL_CORE_CONSOLE=y
-CONFIG_CONSOLE_POLL=y
-CONFIG_SERIAL_JSM=m
-# CONFIG_SERIAL_SCCNXP is not set
-# CONFIG_SERIAL_TIMBERDALE is not set
-# CONFIG_SERIAL_ALTERA_JTAGUART is not set
-# CONFIG_SERIAL_ALTERA_UART is not set
-# CONFIG_SERIAL_IFX6X60 is not set
-# CONFIG_SERIAL_PCH_UART is not set
-CONFIG_SERIAL_ARC=m
-CONFIG_SERIAL_ARC_NR_PORTS=1
-# CONFIG_SERIAL_RP2 is not set
-CONFIG_PRINTER=m
-# CONFIG_LP_CONSOLE is not set
-CONFIG_PPDEV=m
-CONFIG_HVC_DRIVER=y
-CONFIG_HVC_IRQ=y
-CONFIG_HVC_XEN=y
-CONFIG_HVC_XEN_FRONTEND=y
-CONFIG_VIRTIO_CONSOLE=m
-CONFIG_IPMI_HANDLER=m
-CONFIG_IPMI_DMI_DECODE=y
-CONFIG_IPMI_PROC_INTERFACE=y
-CONFIG_IPMI_PANIC_EVENT=y
-# CONFIG_IPMI_PANIC_STRING is not set
-CONFIG_IPMI_DEVICE_INTERFACE=m
-CONFIG_IPMI_SI=m
-CONFIG_IPMI_SSIF=m
-CONFIG_IPMI_WATCHDOG=m
-CONFIG_IPMI_POWEROFF=m
-CONFIG_HW_RANDOM=y
-CONFIG_HW_RANDOM_TIMERIOMEM=m
-CONFIG_HW_RANDOM_INTEL=m
-CONFIG_HW_RANDOM_AMD=m
-# CONFIG_HW_RANDOM_ATMEL is not set
-CONFIG_HW_RANDOM_VIA=m
-CONFIG_HW_RANDOM_VIRTIO=m
-# CONFIG_HW_RANDOM_EXYNOS is not set
-CONFIG_NVRAM=y
-# CONFIG_R3964 is not set
-# CONFIG_APPLICOM is not set
-# CONFIG_MWAVE is not set
-CONFIG_RAW_DRIVER=y
-CONFIG_MAX_RAW_DEVS=8192
-CONFIG_HPET=y
-CONFIG_HPET_MMAP=y
-# CONFIG_HPET_MMAP_DEFAULT is not set
-CONFIG_HANGCHECK_TIMER=m
-CONFIG_UV_MMTIMER=m
-CONFIG_TCG_TPM=y
-CONFIG_HW_RANDOM_TPM=y
-CONFIG_TCG_TIS_CORE=y
-CONFIG_TCG_TIS=y
-# CONFIG_TCG_TIS_SPI is not set
-CONFIG_TCG_TIS_I2C_ATMEL=m
-CONFIG_TCG_TIS_I2C_INFINEON=m
-CONFIG_TCG_TIS_I2C_NUVOTON=m
-CONFIG_TCG_NSC=m
-CONFIG_TCG_ATMEL=m
-CONFIG_TCG_INFINEON=m
-# CONFIG_TCG_XEN is not set
-CONFIG_TCG_CRB=m
-# CONFIG_TCG_VTPM_PROXY is not set
-CONFIG_TCG_TIS_ST33ZP24=m
-CONFIG_TCG_TIS_ST33ZP24_I2C=m
-# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
-CONFIG_TELCLOCK=m
-CONFIG_DEVPORT=y
-CONFIG_HMC_DRV=m
-
-#
-# I2C support
-#
-CONFIG_I2C=y
-CONFIG_I2C_ACPI=y
-CONFIG_I2C_BOARDINFO=y
-CONFIG_I2C_COMPAT=y
-CONFIG_I2C_CHARDEV=m
-# CONFIG_I2C_MUX is not set
-CONFIG_I2C_HELPER_AUTO=y
-CONFIG_I2C_SMBUS=m
-CONFIG_I2C_ALGOBIT=m
-CONFIG_I2C_ALGOPCA=m
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-CONFIG_I2C_AMD756=m
-CONFIG_I2C_AMD756_S4882=m
-CONFIG_I2C_AMD8111=m
-CONFIG_I2C_I801=m
-CONFIG_I2C_ISCH=m
-CONFIG_I2C_ISMT=m
-CONFIG_I2C_PIIX4=m
-CONFIG_I2C_NFORCE2=m
-CONFIG_I2C_NFORCE2_S4985=m
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-CONFIG_I2C_SIS96X=m
-CONFIG_I2C_VIA=m
-CONFIG_I2C_VIAPRO=m
-
-#
-# ACPI drivers
-#
-CONFIG_I2C_SCMI=m
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_CBUS_GPIO is not set
-CONFIG_I2C_DESIGNWARE_CORE=m
-CONFIG_I2C_DESIGNWARE_PLATFORM=m
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_EG20T is not set
-# CONFIG_I2C_GPIO is not set
-# CONFIG_I2C_INTEL_MID is not set
-# CONFIG_I2C_OCORES is not set
-CONFIG_I2C_PCA_PLATFORM=m
-# CONFIG_I2C_PXA_PCI is not set
-CONFIG_I2C_SIMTEC=m
-# CONFIG_I2C_XILINX is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-CONFIG_I2C_DIOLAN_U2C=m
-CONFIG_I2C_PARPORT=m
-CONFIG_I2C_PARPORT_LIGHT=m
-# CONFIG_I2C_TAOS_EVM is not set
-CONFIG_I2C_TINY_USB=m
-CONFIG_I2C_VIPERBOARD=m
-
-#
-# Other I2C/SMBus bus drivers
-#
-CONFIG_I2C_STUB=m
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-CONFIG_SPI=y
-# CONFIG_SPI_DEBUG is not set
-CONFIG_SPI_MASTER=y
-
-#
-# SPI Master Controller Drivers
-#
-# CONFIG_SPI_ALTERA is not set
-# CONFIG_SPI_BITBANG is not set
-# CONFIG_SPI_BUTTERFLY is not set
-# CONFIG_SPI_GPIO is not set
-# CONFIG_SPI_LM70_LLP is not set
-# CONFIG_SPI_OC_TINY is not set
-# CONFIG_SPI_PXA2XX is not set
-# CONFIG_SPI_PXA2XX_PCI is not set
-# CONFIG_SPI_SC18IS602 is not set
-# CONFIG_SPI_TOPCLIFF_PCH is not set
-# CONFIG_SPI_XCOMM is not set
-# CONFIG_SPI_XILINX is not set
-# CONFIG_SPI_DESIGNWARE is not set
-
-#
-# SPI Protocol Masters
-#
-# CONFIG_SPI_SPIDEV is not set
-# CONFIG_SPI_TLE62X0 is not set
-
-#
-# Qualcomm MSM SSBI bus support
-#
-# CONFIG_SSBI is not set
-# CONFIG_HSI is not set
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-CONFIG_PPS_CLIENT_LDISC=m
-CONFIG_PPS_CLIENT_PARPORT=m
-CONFIG_PPS_CLIENT_GPIO=m
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-CONFIG_PTP_1588_CLOCK=m
-CONFIG_DP83640_PHY=m
-CONFIG_PTP_1588_CLOCK_PCH=m
-CONFIG_PTP_1588_CLOCK_KVM=m
-CONFIG_PINCTRL=y
-
-#
-# Pin controllers
-#
-CONFIG_PINMUX=y
-CONFIG_PINCONF=y
-CONFIG_GENERIC_PINCONF=y
-# CONFIG_DEBUG_PINCTRL is not set
-CONFIG_PINCTRL_AMD=m
-# CONFIG_PINCTRL_EXYNOS5440 is not set
-CONFIG_PINCTRL_BAYTRAIL=y
-CONFIG_PINCTRL_INTEL=m
-CONFIG_PINCTRL_CANNONLAKE=m
-CONFIG_PINCTRL_CEDARFORK=m
-CONFIG_PINCTRL_DENVERTON=m
-CONFIG_PINCTRL_GEMINILAKE=m
-CONFIG_PINCTRL_ICELAKE=m
-CONFIG_PINCTRL_LEWISBURG=m
-CONFIG_PINCTRL_BROXTON=m
-CONFIG_PINCTRL_SUNRISEPOINT=m
-CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_DEVRES=y
-CONFIG_GPIO_ACPI=y
-CONFIG_GPIOLIB_IRQCHIP=y
-# CONFIG_DEBUG_GPIO is not set
-CONFIG_GPIO_SYSFS=y
-CONFIG_GPIO_AMDPT=m
-
-#
-# Memory mapped GPIO drivers:
-#
-# CONFIG_GPIO_GENERIC_PLATFORM is not set
-# CONFIG_GPIO_IT8761E is not set
-# CONFIG_GPIO_F7188X is not set
-# CONFIG_GPIO_SCH311X is not set
-# CONFIG_GPIO_TS5500 is not set
-# CONFIG_GPIO_SCH is not set
-CONFIG_GPIO_ICH=m
-# CONFIG_GPIO_VX855 is not set
-# CONFIG_GPIO_LYNXPOINT is not set
-
-#
-# I2C GPIO expanders:
-#
-# CONFIG_GPIO_MAX7300 is not set
-# CONFIG_GPIO_MAX732X is not set
-# CONFIG_GPIO_PCA953X is not set
-# CONFIG_GPIO_PCF857X is not set
-# CONFIG_GPIO_SX150X is not set
-# CONFIG_GPIO_ADP5588 is not set
-
-#
-# PCI GPIO expanders:
-#
-# CONFIG_GPIO_AMD8111 is not set
-CONFIG_GPIO_LANGWELL=y
-# CONFIG_GPIO_PCH is not set
-# CONFIG_GPIO_ML_IOH is not set
-# CONFIG_GPIO_RDC321X is not set
-
-#
-# SPI GPIO expanders:
-#
-# CONFIG_GPIO_MAX7301 is not set
-# CONFIG_GPIO_MC33880 is not set
-# CONFIG_GPIO_74X164 is not set
-
-#
-# AC97 GPIO expanders:
-#
-
-#
-# LPC GPIO expanders:
-#
-
-#
-# MODULbus GPIO expanders:
-#
-
-#
-# USB GPIO expanders:
-#
-CONFIG_GPIO_VIPERBOARD=m
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-# CONFIG_PDA_POWER is not set
-# CONFIG_GENERIC_ADC_BATTERY is not set
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-# CONFIG_BATTERY_DS2781 is not set
-# CONFIG_BATTERY_DS2782 is not set
-# CONFIG_BATTERY_SBS is not set
-# CONFIG_BATTERY_BQ27x00 is not set
-# CONFIG_BATTERY_MAX17040 is not set
-# CONFIG_BATTERY_MAX17042 is not set
-# CONFIG_CHARGER_MAX8903 is not set
-# CONFIG_CHARGER_LP8727 is not set
-# CONFIG_CHARGER_GPIO is not set
-# CONFIG_CHARGER_BQ2415X is not set
-CONFIG_CHARGER_SMB347=m
-# CONFIG_BATTERY_GOLDFISH is not set
-CONFIG_POWER_RESET=y
-# CONFIG_POWER_AVS is not set
-CONFIG_POWERCAP=y
-CONFIG_INTEL_RAPL=m
-CONFIG_HWMON=y
-CONFIG_HWMON_VID=m
-# CONFIG_HWMON_DEBUG_CHIP is not set
-
-#
-# Native drivers
-#
-CONFIG_SENSORS_ABITUGURU=m
-CONFIG_SENSORS_ABITUGURU3=m
-# CONFIG_SENSORS_AD7314 is not set
-CONFIG_SENSORS_AD7414=m
-CONFIG_SENSORS_AD7418=m
-# CONFIG_SENSORS_ADCXX is not set
-CONFIG_SENSORS_ADM1021=m
-CONFIG_SENSORS_ADM1025=m
-CONFIG_SENSORS_ADM1026=m
-CONFIG_SENSORS_ADM1029=m
-CONFIG_SENSORS_ADM1031=m
-CONFIG_SENSORS_ADM9240=m
-CONFIG_SENSORS_ADT7X10=m
-# CONFIG_SENSORS_ADT7310 is not set
-CONFIG_SENSORS_ADT7410=m
-CONFIG_SENSORS_ADT7411=m
-CONFIG_SENSORS_ADT7462=m
-CONFIG_SENSORS_ADT7470=m
-CONFIG_SENSORS_ADT7475=m
-CONFIG_SENSORS_ASC7621=m
-CONFIG_SENSORS_K8TEMP=m
-CONFIG_SENSORS_K10TEMP=m
-CONFIG_SENSORS_FAM15H_POWER=m
-CONFIG_SENSORS_ASB100=m
-CONFIG_SENSORS_ATXP1=m
-CONFIG_SENSORS_DS620=m
-CONFIG_SENSORS_DS1621=m
-CONFIG_SENSORS_I5K_AMB=m
-CONFIG_SENSORS_F71805F=m
-CONFIG_SENSORS_F71882FG=m
-CONFIG_SENSORS_F75375S=m
-CONFIG_SENSORS_FSCHMD=m
-CONFIG_SENSORS_G760A=m
-CONFIG_SENSORS_GL518SM=m
-CONFIG_SENSORS_GL520SM=m
-# CONFIG_SENSORS_GPIO_FAN is not set
-# CONFIG_SENSORS_HIH6130 is not set
-CONFIG_SENSORS_CORETEMP=m
-CONFIG_SENSORS_IBMAEM=m
-CONFIG_SENSORS_IBMPEX=m
-# CONFIG_SENSORS_IIO_HWMON is not set
-CONFIG_SENSORS_IT87=m
-CONFIG_SENSORS_JC42=m
-CONFIG_SENSORS_LINEAGE=m
-CONFIG_SENSORS_LM63=m
-# CONFIG_SENSORS_LM70 is not set
-CONFIG_SENSORS_LM73=m
-CONFIG_SENSORS_LM75=m
-CONFIG_SENSORS_LM77=m
-CONFIG_SENSORS_LM78=m
-CONFIG_SENSORS_LM80=m
-CONFIG_SENSORS_LM83=m
-CONFIG_SENSORS_LM85=m
-CONFIG_SENSORS_LM87=m
-CONFIG_SENSORS_LM90=m
-CONFIG_SENSORS_LM92=m
-CONFIG_SENSORS_LM93=m
-CONFIG_SENSORS_LTC4151=m
-CONFIG_SENSORS_LTC4215=m
-CONFIG_SENSORS_LTC4245=m
-CONFIG_SENSORS_LTC4261=m
-CONFIG_SENSORS_LM95234=m
-CONFIG_SENSORS_LM95241=m
-CONFIG_SENSORS_LM95245=m
-# CONFIG_SENSORS_MAX1111 is not set
-CONFIG_SENSORS_MAX16065=m
-CONFIG_SENSORS_MAX1619=m
-CONFIG_SENSORS_MAX1668=m
-CONFIG_SENSORS_MAX197=m
-CONFIG_SENSORS_MAX6639=m
-CONFIG_SENSORS_MAX6642=m
-CONFIG_SENSORS_MAX6650=m
-CONFIG_SENSORS_MAX6697=m
-CONFIG_SENSORS_MCP3021=m
-CONFIG_SENSORS_NCT6775=m
-CONFIG_SENSORS_NTC_THERMISTOR=m
-CONFIG_SENSORS_PC87360=m
-CONFIG_SENSORS_PC87427=m
-CONFIG_SENSORS_PCF8591=m
-CONFIG_PMBUS=m
-CONFIG_SENSORS_PMBUS=m
-CONFIG_SENSORS_ADM1275=m
-CONFIG_SENSORS_LM25066=m
-CONFIG_SENSORS_LTC2978=m
-CONFIG_SENSORS_MAX16064=m
-CONFIG_SENSORS_MAX34440=m
-CONFIG_SENSORS_MAX8688=m
-CONFIG_SENSORS_UCD9000=m
-CONFIG_SENSORS_UCD9200=m
-CONFIG_SENSORS_ZL6100=m
-CONFIG_SENSORS_SHT15=m
-CONFIG_SENSORS_SHT21=m
-CONFIG_SENSORS_SIS5595=m
-# CONFIG_SENSORS_SMM665 is not set
-CONFIG_SENSORS_DME1737=m
-CONFIG_SENSORS_EMC1403=m
-# CONFIG_SENSORS_EMC2103 is not set
-CONFIG_SENSORS_EMC6W201=m
-CONFIG_SENSORS_SMSC47M1=m
-CONFIG_SENSORS_SMSC47M192=m
-CONFIG_SENSORS_SMSC47B397=m
-CONFIG_SENSORS_SCH56XX_COMMON=m
-CONFIG_SENSORS_SCH5627=m
-CONFIG_SENSORS_SCH5636=m
-CONFIG_SENSORS_ADS1015=m
-CONFIG_SENSORS_ADS7828=m
-# CONFIG_SENSORS_ADS7871 is not set
-CONFIG_SENSORS_AMC6821=m
-CONFIG_SENSORS_INA209=m
-CONFIG_SENSORS_INA2XX=m
-CONFIG_SENSORS_THMC50=m
-CONFIG_SENSORS_TMP102=m
-CONFIG_SENSORS_TMP401=m
-CONFIG_SENSORS_TMP421=m
-CONFIG_SENSORS_VIA_CPUTEMP=m
-CONFIG_SENSORS_VIA686A=m
-CONFIG_SENSORS_VT1211=m
-CONFIG_SENSORS_VT8231=m
-CONFIG_SENSORS_W83781D=m
-CONFIG_SENSORS_W83791D=m
-CONFIG_SENSORS_W83792D=m
-CONFIG_SENSORS_W83793=m
-CONFIG_SENSORS_W83795=m
-# CONFIG_SENSORS_W83795_FANCTRL is not set
-CONFIG_SENSORS_W83L785TS=m
-CONFIG_SENSORS_W83L786NG=m
-CONFIG_SENSORS_W83627HF=m
-CONFIG_SENSORS_W83627EHF=m
-CONFIG_SENSORS_APPLESMC=m
-
-#
-# ACPI drivers
-#
-CONFIG_SENSORS_ACPI_POWER=m
-CONFIG_SENSORS_ATK0110=m
-CONFIG_THERMAL=y
-CONFIG_THERMAL_HWMON=y
-CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
-# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
-# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
-CONFIG_THERMAL_GOV_FAIR_SHARE=y
-CONFIG_THERMAL_GOV_STEP_WISE=y
-# CONFIG_THERMAL_GOV_USER_SPACE is not set
-# CONFIG_CPU_THERMAL is not set
-# CONFIG_THERMAL_EMULATION is not set
-CONFIG_INTEL_POWERCLAMP=m
-CONFIG_INT340X_THERMAL=m
-CONFIG_WATCHDOG=y
-CONFIG_WATCHDOG_CORE=y
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
-CONFIG_WATCHDOG_SYSFS=y
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-CONFIG_WDAT_WDT=m
-# CONFIG_ACQUIRE_WDT is not set
-# CONFIG_ADVANTECH_WDT is not set
-CONFIG_ALIM1535_WDT=m
-CONFIG_ALIM7101_WDT=m
-CONFIG_F71808E_WDT=m
-CONFIG_SP5100_TCO=m
-# CONFIG_SC520_WDT is not set
-CONFIG_SBC_FITPC2_WATCHDOG=m
-# CONFIG_EUROTECH_WDT is not set
-CONFIG_IB700_WDT=m
-CONFIG_IBMASR=m
-# CONFIG_WAFER_WDT is not set
-CONFIG_I6300ESB_WDT=m
-CONFIG_IE6XX_WDT=m
-CONFIG_ITCO_WDT=m
-CONFIG_ITCO_VENDOR_SUPPORT=y
-CONFIG_IT8712F_WDT=m
-CONFIG_IT87_WDT=m
-CONFIG_HP_WATCHDOG=m
-CONFIG_HPWDT_NMI_DECODING=y
-# CONFIG_SC1200_WDT is not set
-# CONFIG_PC87413_WDT is not set
-CONFIG_NV_TCO=m
-# CONFIG_60XX_WDT is not set
-# CONFIG_SBC8360_WDT is not set
-# CONFIG_CPU5_WDT is not set
-CONFIG_SMSC_SCH311X_WDT=m
-# CONFIG_SMSC37B787_WDT is not set
-CONFIG_VIA_WDT=m
-CONFIG_W83627HF_WDT=m
-CONFIG_W83697HF_WDT=m
-CONFIG_W83697UG_WDT=m
-CONFIG_W83877F_WDT=m
-CONFIG_W83977F_WDT=m
-CONFIG_MACHZ_WDT=m
-# CONFIG_SBC_EPX_C3_WATCHDOG is not set
-CONFIG_INTEL_MEI_WDT=m
-CONFIG_XEN_WDT=m
-
-#
-# PCI-based Watchdog Cards
-#
-CONFIG_PCIPCWATCHDOG=m
-CONFIG_WDTPCI=m
-
-#
-# USB-based Watchdog Cards
-#
-CONFIG_USBPCWATCHDOG=m
-
-#
-# Watchdog Pretimeout Governors
-#
-# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-CONFIG_SSB=m
-CONFIG_SSB_SPROM=y
-CONFIG_SSB_PCIHOST_POSSIBLE=y
-CONFIG_SSB_PCIHOST=y
-# CONFIG_SSB_B43_PCI_BRIDGE is not set
-CONFIG_SSB_SDIOHOST_POSSIBLE=y
-CONFIG_SSB_SDIOHOST=y
-# CONFIG_SSB_DEBUG is not set
-CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
-CONFIG_SSB_DRIVER_PCICORE=y
-CONFIG_SSB_DRIVER_GPIO=y
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-CONFIG_BCMA=m
-CONFIG_BCMA_HOST_PCI_POSSIBLE=y
-CONFIG_BCMA_HOST_PCI=y
-# CONFIG_BCMA_HOST_SOC is not set
-CONFIG_BCMA_DRIVER_PCI=y
-CONFIG_BCMA_DRIVER_GMAC_CMN=y
-CONFIG_BCMA_DRIVER_GPIO=y
-# CONFIG_BCMA_DEBUG is not set
-
-#
-# Multifunction device drivers
-#
-CONFIG_MFD_CORE=y
-# CONFIG_MFD_CS5535 is not set
-# CONFIG_MFD_AS3711 is not set
-# CONFIG_PMIC_ADP5520 is not set
-# CONFIG_MFD_AAT2870_CORE is not set
-# CONFIG_MFD_CROS_EC is not set
-# CONFIG_PMIC_DA903X is not set
-# CONFIG_MFD_DA9052_SPI is not set
-# CONFIG_MFD_DA9052_I2C is not set
-# CONFIG_MFD_DA9055 is not set
-# CONFIG_MFD_MC13XXX_SPI is not set
-# CONFIG_MFD_MC13XXX_I2C is not set
-# CONFIG_HTC_PASIC3 is not set
-# CONFIG_HTC_I2CPLD is not set
-CONFIG_LPC_ICH=m
-CONFIG_LPC_SCH=m
-CONFIG_MFD_INTEL_LPSS=y
-CONFIG_MFD_INTEL_LPSS_ACPI=y
-CONFIG_MFD_INTEL_LPSS_PCI=y
-# CONFIG_MFD_JANZ_CMODIO is not set
-# CONFIG_MFD_88PM800 is not set
-# CONFIG_MFD_88PM805 is not set
-# CONFIG_MFD_88PM860X is not set
-# CONFIG_MFD_MAX77686 is not set
-# CONFIG_MFD_MAX77693 is not set
-# CONFIG_MFD_MAX8907 is not set
-# CONFIG_MFD_MAX8925 is not set
-# CONFIG_MFD_MAX8997 is not set
-# CONFIG_MFD_MAX8998 is not set
-# CONFIG_EZX_PCAP is not set
-CONFIG_MFD_VIPERBOARD=m
-# CONFIG_MFD_RETU is not set
-# CONFIG_MFD_PCF50633 is not set
-# CONFIG_UCB1400_CORE is not set
-# CONFIG_MFD_RDC321X is not set
-CONFIG_MFD_RTSX_PCI=m
-CONFIG_MFD_RTSX_USB=m
-# CONFIG_MFD_RC5T583 is not set
-# CONFIG_MFD_SEC_CORE is not set
-# CONFIG_MFD_SI476X_CORE is not set
-CONFIG_MFD_SM501=m
-CONFIG_MFD_SM501_GPIO=y
-# CONFIG_MFD_SMSC is not set
-# CONFIG_ABX500_CORE is not set
-# CONFIG_MFD_STMPE is not set
-# CONFIG_MFD_SYSCON is not set
-# CONFIG_MFD_TI_AM335X_TSCADC is not set
-# CONFIG_MFD_LP8788 is not set
-# CONFIG_MFD_PALMAS is not set
-# CONFIG_TPS6105X is not set
-# CONFIG_TPS65010 is not set
-# CONFIG_TPS6507X is not set
-# CONFIG_MFD_TPS65090 is not set
-# CONFIG_MFD_TPS65217 is not set
-# CONFIG_MFD_TPS6586X is not set
-# CONFIG_MFD_TPS65910 is not set
-# CONFIG_MFD_TPS65912 is not set
-# CONFIG_MFD_TPS65912_I2C is not set
-# CONFIG_MFD_TPS65912_SPI is not set
-# CONFIG_MFD_TPS80031 is not set
-# CONFIG_TWL4030_CORE is not set
-# CONFIG_TWL6040_CORE is not set
-# CONFIG_MFD_WL1273_CORE is not set
-# CONFIG_MFD_LM3533 is not set
-# CONFIG_MFD_TIMBERDALE is not set
-# CONFIG_MFD_TC3589X is not set
-# CONFIG_MFD_TMIO is not set
-CONFIG_MFD_VX855=m
-# CONFIG_MFD_ARIZONA_I2C is not set
-# CONFIG_MFD_ARIZONA_SPI is not set
-# CONFIG_MFD_WM8400 is not set
-# CONFIG_MFD_WM831X_I2C is not set
-# CONFIG_MFD_WM831X_SPI is not set
-# CONFIG_MFD_WM8350_I2C is not set
-# CONFIG_MFD_WM8994 is not set
-# CONFIG_REGULATOR is not set
-CONFIG_MEDIA_SUPPORT=m
-
-#
-# Multimedia core support
-#
-CONFIG_MEDIA_CAMERA_SUPPORT=y
-CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
-CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
-CONFIG_MEDIA_RADIO_SUPPORT=y
-CONFIG_MEDIA_RC_SUPPORT=y
-# CONFIG_MEDIA_CONTROLLER is not set
-CONFIG_VIDEO_DEV=m
-CONFIG_VIDEO_V4L2=m
-# CONFIG_VIDEO_ADV_DEBUG is not set
-# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
-CONFIG_VIDEO_TUNER=m
-CONFIG_VIDEOBUF_GEN=m
-CONFIG_VIDEOBUF_DMA_SG=m
-CONFIG_VIDEOBUF_VMALLOC=m
-CONFIG_VIDEOBUF_DVB=m
-CONFIG_VIDEOBUF2_CORE=m
-CONFIG_VIDEOBUF2_MEMOPS=m
-CONFIG_VIDEOBUF2_VMALLOC=m
-# CONFIG_VIDEO_V4L2_INT_DEVICE is not set
-CONFIG_DVB_CORE=m
-CONFIG_DVB_NET=y
-CONFIG_TTPCI_EEPROM=m
-CONFIG_DVB_MAX_ADAPTERS=8
-CONFIG_DVB_DYNAMIC_MINORS=y
-
-#
-# Media drivers
-#
-CONFIG_RC_CORE=m
-CONFIG_RC_MAP=m
-CONFIG_RC_DECODERS=y
-CONFIG_LIRC=m
-CONFIG_IR_LIRC_CODEC=m
-CONFIG_IR_NEC_DECODER=m
-CONFIG_IR_RC5_DECODER=m
-CONFIG_IR_RC6_DECODER=m
-CONFIG_IR_JVC_DECODER=m
-CONFIG_IR_SONY_DECODER=m
-CONFIG_IR_RC5_SZ_DECODER=m
-CONFIG_IR_SANYO_DECODER=m
-CONFIG_IR_MCE_KBD_DECODER=m
-CONFIG_RC_DEVICES=y
-CONFIG_RC_ATI_REMOTE=m
-CONFIG_IR_ENE=m
-CONFIG_IR_IMON=m
-CONFIG_IR_MCEUSB=m
-CONFIG_IR_ITE_CIR=m
-CONFIG_IR_FINTEK=m
-CONFIG_IR_NUVOTON=m
-CONFIG_IR_REDRAT3=m
-CONFIG_IR_STREAMZAP=m
-CONFIG_IR_WINBOND_CIR=m
-CONFIG_IR_IGUANA=m
-CONFIG_IR_TTUSBIR=m
-# CONFIG_RC_LOOPBACK is not set
-CONFIG_IR_GPIO_CIR=m
-CONFIG_MEDIA_USB_SUPPORT=y
-
-#
-# Webcam devices
-#
-CONFIG_USB_VIDEO_CLASS=m
-CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
-CONFIG_USB_GSPCA=m
-CONFIG_USB_M5602=m
-CONFIG_USB_STV06XX=m
-CONFIG_USB_GL860=m
-CONFIG_USB_GSPCA_BENQ=m
-CONFIG_USB_GSPCA_CONEX=m
-CONFIG_USB_GSPCA_CPIA1=m
-CONFIG_USB_GSPCA_ETOMS=m
-CONFIG_USB_GSPCA_FINEPIX=m
-CONFIG_USB_GSPCA_JEILINJ=m
-CONFIG_USB_GSPCA_JL2005BCD=m
-# CONFIG_USB_GSPCA_KINECT is not set
-CONFIG_USB_GSPCA_KONICA=m
-CONFIG_USB_GSPCA_MARS=m
-CONFIG_USB_GSPCA_MR97310A=m
-CONFIG_USB_GSPCA_NW80X=m
-CONFIG_USB_GSPCA_OV519=m
-CONFIG_USB_GSPCA_OV534=m
-CONFIG_USB_GSPCA_OV534_9=m
-CONFIG_USB_GSPCA_PAC207=m
-CONFIG_USB_GSPCA_PAC7302=m
-CONFIG_USB_GSPCA_PAC7311=m
-CONFIG_USB_GSPCA_SE401=m
-CONFIG_USB_GSPCA_SN9C2028=m
-CONFIG_USB_GSPCA_SN9C20X=m
-CONFIG_USB_GSPCA_SONIXB=m
-CONFIG_USB_GSPCA_SONIXJ=m
-CONFIG_USB_GSPCA_SPCA500=m
-CONFIG_USB_GSPCA_SPCA501=m
-CONFIG_USB_GSPCA_SPCA505=m
-CONFIG_USB_GSPCA_SPCA506=m
-CONFIG_USB_GSPCA_SPCA508=m
-CONFIG_USB_GSPCA_SPCA561=m
-CONFIG_USB_GSPCA_SPCA1528=m
-CONFIG_USB_GSPCA_SQ905=m
-CONFIG_USB_GSPCA_SQ905C=m
-CONFIG_USB_GSPCA_SQ930X=m
-CONFIG_USB_GSPCA_STK014=m
-CONFIG_USB_GSPCA_STV0680=m
-CONFIG_USB_GSPCA_SUNPLUS=m
-CONFIG_USB_GSPCA_T613=m
-CONFIG_USB_GSPCA_TOPRO=m
-CONFIG_USB_GSPCA_TV8532=m
-CONFIG_USB_GSPCA_VC032X=m
-CONFIG_USB_GSPCA_VICAM=m
-CONFIG_USB_GSPCA_XIRLINK_CIT=m
-CONFIG_USB_GSPCA_ZC3XX=m
-CONFIG_USB_PWC=m
-# CONFIG_USB_PWC_DEBUG is not set
-CONFIG_USB_PWC_INPUT_EVDEV=y
-# CONFIG_VIDEO_CPIA2 is not set
-CONFIG_USB_ZR364XX=m
-CONFIG_USB_STKWEBCAM=m
-CONFIG_USB_S2255=m
-# CONFIG_USB_SN9C102 is not set
-
-#
-# Analog TV USB devices
-#
-CONFIG_VIDEO_PVRUSB2=m
-CONFIG_VIDEO_PVRUSB2_SYSFS=y
-CONFIG_VIDEO_PVRUSB2_DVB=y
-# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
-CONFIG_VIDEO_HDPVR=m
-CONFIG_VIDEO_TLG2300=m
-CONFIG_VIDEO_USBVISION=m
-CONFIG_VIDEO_STK1160=m
-CONFIG_VIDEO_STK1160_AC97=y
-
-#
-# Analog/digital TV USB devices
-#
-CONFIG_VIDEO_AU0828=m
-CONFIG_VIDEO_AU0828_V4L2=y
-CONFIG_VIDEO_CX231XX=m
-CONFIG_VIDEO_CX231XX_RC=y
-CONFIG_VIDEO_CX231XX_ALSA=m
-CONFIG_VIDEO_CX231XX_DVB=m
-CONFIG_VIDEO_TM6000=m
-CONFIG_VIDEO_TM6000_ALSA=m
-CONFIG_VIDEO_TM6000_DVB=m
-
-#
-# Digital TV USB devices
-#
-CONFIG_DVB_USB=m
-# CONFIG_DVB_USB_DEBUG is not set
-CONFIG_DVB_USB_A800=m
-CONFIG_DVB_USB_DIBUSB_MB=m
-# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
-CONFIG_DVB_USB_DIBUSB_MC=m
-CONFIG_DVB_USB_DIB0700=m
-CONFIG_DVB_USB_UMT_010=m
-CONFIG_DVB_USB_CXUSB=m
-CONFIG_DVB_USB_M920X=m
-CONFIG_DVB_USB_DIGITV=m
-CONFIG_DVB_USB_VP7045=m
-CONFIG_DVB_USB_VP702X=m
-CONFIG_DVB_USB_GP8PSK=m
-CONFIG_DVB_USB_NOVA_T_USB2=m
-CONFIG_DVB_USB_TTUSB2=m
-CONFIG_DVB_USB_DTT200U=m
-CONFIG_DVB_USB_OPERA1=m
-CONFIG_DVB_USB_AF9005=m
-CONFIG_DVB_USB_AF9005_REMOTE=m
-CONFIG_DVB_USB_PCTV452E=m
-CONFIG_DVB_USB_DW2102=m
-CONFIG_DVB_USB_CINERGY_T2=m
-CONFIG_DVB_USB_DTV5100=m
-CONFIG_DVB_USB_FRIIO=m
-CONFIG_DVB_USB_AZ6027=m
-CONFIG_DVB_USB_TECHNISAT_USB2=m
-CONFIG_DVB_USB_V2=m
-CONFIG_DVB_USB_AF9015=m
-CONFIG_DVB_USB_AF9035=m
-CONFIG_DVB_USB_ANYSEE=m
-CONFIG_DVB_USB_AU6610=m
-CONFIG_DVB_USB_AZ6007=m
-CONFIG_DVB_USB_CE6230=m
-CONFIG_DVB_USB_EC168=m
-CONFIG_DVB_USB_GL861=m
-CONFIG_DVB_USB_IT913X=m
-CONFIG_DVB_USB_LME2510=m
-CONFIG_DVB_USB_MXL111SF=m
-CONFIG_DVB_USB_RTL28XXU=m
-CONFIG_DVB_TTUSB_BUDGET=m
-CONFIG_DVB_TTUSB_DEC=m
-CONFIG_SMS_USB_DRV=m
-CONFIG_DVB_B2C2_FLEXCOP_USB=m
-# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
-
-#
-# Webcam, TV (analog/digital) USB devices
-#
-CONFIG_VIDEO_EM28XX=m
-CONFIG_VIDEO_EM28XX_ALSA=m
-CONFIG_VIDEO_EM28XX_DVB=m
-CONFIG_VIDEO_EM28XX_RC=m
-CONFIG_MEDIA_PCI_SUPPORT=y
-
-#
-# Media capture support
-#
-# CONFIG_VIDEO_MEYE is not set
-
-#
-# Media capture/analog TV support
-#
-CONFIG_VIDEO_IVTV=m
-# CONFIG_VIDEO_IVTV_ALSA is not set
-CONFIG_VIDEO_FB_IVTV=m
-# CONFIG_VIDEO_ZORAN is not set
-# CONFIG_VIDEO_HEXIUM_GEMINI is not set
-# CONFIG_VIDEO_HEXIUM_ORION is not set
-# CONFIG_VIDEO_MXB is not set
-
-#
-# Media capture/analog/hybrid TV support
-#
-CONFIG_VIDEO_CX18=m
-CONFIG_VIDEO_CX18_ALSA=m
-CONFIG_VIDEO_CX23885=m
-CONFIG_MEDIA_ALTERA_CI=m
-# CONFIG_VIDEO_CX25821 is not set
-CONFIG_VIDEO_CX88=m
-CONFIG_VIDEO_CX88_ALSA=m
-CONFIG_VIDEO_CX88_BLACKBIRD=m
-CONFIG_VIDEO_CX88_DVB=m
-CONFIG_VIDEO_CX88_VP3054=m
-CONFIG_VIDEO_CX88_MPEG=m
-CONFIG_VIDEO_BT848=m
-CONFIG_DVB_BT8XX=m
-CONFIG_VIDEO_SAA7134=m
-CONFIG_VIDEO_SAA7134_ALSA=m
-CONFIG_VIDEO_SAA7134_RC=y
-CONFIG_VIDEO_SAA7134_DVB=m
-CONFIG_VIDEO_SAA7164=m
-
-#
-# Media digital TV PCI Adapters
-#
-CONFIG_DVB_AV7110=m
-CONFIG_DVB_AV7110_OSD=y
-CONFIG_DVB_BUDGET_CORE=m
-CONFIG_DVB_BUDGET=m
-CONFIG_DVB_BUDGET_CI=m
-CONFIG_DVB_BUDGET_AV=m
-CONFIG_DVB_BUDGET_PATCH=m
-CONFIG_DVB_B2C2_FLEXCOP_PCI=m
-# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
-CONFIG_DVB_PLUTO2=m
-CONFIG_DVB_DM1105=m
-CONFIG_DVB_PT1=m
-CONFIG_MANTIS_CORE=m
-CONFIG_DVB_MANTIS=m
-CONFIG_DVB_HOPPER=m
-CONFIG_DVB_NGENE=m
-CONFIG_DVB_DDBRIDGE=m
-# CONFIG_V4L_PLATFORM_DRIVERS is not set
-# CONFIG_V4L_MEM2MEM_DRIVERS is not set
-# CONFIG_V4L_TEST_DRIVERS is not set
-
-#
-# Supported MMC/SDIO adapters
-#
-CONFIG_SMS_SDIO_DRV=m
-# CONFIG_MEDIA_PARPORT_SUPPORT is not set
-# CONFIG_RADIO_ADAPTERS is not set
-
-#
-# Supported FireWire (IEEE 1394) Adapters
-#
-CONFIG_DVB_FIREDTV=m
-CONFIG_DVB_FIREDTV_INPUT=y
-CONFIG_MEDIA_COMMON_OPTIONS=y
-
-#
-# common driver options
-#
-CONFIG_VIDEO_CX2341X=m
-CONFIG_VIDEO_BTCX=m
-CONFIG_VIDEO_TVEEPROM=m
-CONFIG_CYPRESS_FIRMWARE=m
-CONFIG_DVB_B2C2_FLEXCOP=m
-CONFIG_VIDEO_SAA7146=m
-CONFIG_VIDEO_SAA7146_VV=m
-CONFIG_SMS_SIANO_MDTV=m
-CONFIG_SMS_SIANO_RC=y
-# CONFIG_SMS_SIANO_DEBUGFS is not set
-
-#
-# Media ancillary drivers (tuners, sensors, i2c, frontends)
-#
-CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
-CONFIG_MEDIA_ATTACH=y
-CONFIG_VIDEO_IR_I2C=m
-
-#
-# Audio decoders, processors and mixers
-#
-CONFIG_VIDEO_TVAUDIO=m
-CONFIG_VIDEO_TDA7432=m
-CONFIG_VIDEO_MSP3400=m
-CONFIG_VIDEO_CS5345=m
-CONFIG_VIDEO_CS53L32A=m
-CONFIG_VIDEO_WM8775=m
-CONFIG_VIDEO_WM8739=m
-CONFIG_VIDEO_VP27SMPX=m
-
-#
-# RDS decoders
-#
-CONFIG_VIDEO_SAA6588=m
-
-#
-# Video decoders
-#
-CONFIG_VIDEO_SAA711X=m
-CONFIG_VIDEO_TVP5150=m
-
-#
-# Video and audio decoders
-#
-CONFIG_VIDEO_SAA717X=m
-CONFIG_VIDEO_CX25840=m
-
-#
-# Video encoders
-#
-CONFIG_VIDEO_SAA7127=m
-
-#
-# Camera sensor devices
-#
-CONFIG_VIDEO_MT9V011=m
-
-#
-# Flash devices
-#
-
-#
-# Video improvement chips
-#
-CONFIG_VIDEO_UPD64031A=m
-CONFIG_VIDEO_UPD64083=m
-
-#
-# Miscelaneous helper chips
-#
-CONFIG_VIDEO_M52790=m
-
-#
-# Sensors used on soc_camera driver
-#
-CONFIG_MEDIA_TUNER=m
-CONFIG_MEDIA_TUNER_SIMPLE=m
-CONFIG_MEDIA_TUNER_TDA8290=m
-CONFIG_MEDIA_TUNER_TDA827X=m
-CONFIG_MEDIA_TUNER_TDA18271=m
-CONFIG_MEDIA_TUNER_TDA9887=m
-CONFIG_MEDIA_TUNER_TEA5761=m
-CONFIG_MEDIA_TUNER_TEA5767=m
-CONFIG_MEDIA_TUNER_MT20XX=m
-CONFIG_MEDIA_TUNER_MT2060=m
-CONFIG_MEDIA_TUNER_MT2063=m
-CONFIG_MEDIA_TUNER_MT2266=m
-CONFIG_MEDIA_TUNER_MT2131=m
-CONFIG_MEDIA_TUNER_QT1010=m
-CONFIG_MEDIA_TUNER_XC2028=m
-CONFIG_MEDIA_TUNER_XC5000=m
-CONFIG_MEDIA_TUNER_XC4000=m
-CONFIG_MEDIA_TUNER_MXL5005S=m
-CONFIG_MEDIA_TUNER_MXL5007T=m
-CONFIG_MEDIA_TUNER_MC44S803=m
-CONFIG_MEDIA_TUNER_MAX2165=m
-CONFIG_MEDIA_TUNER_TDA18218=m
-CONFIG_MEDIA_TUNER_FC0011=m
-CONFIG_MEDIA_TUNER_FC0012=m
-CONFIG_MEDIA_TUNER_FC0013=m
-CONFIG_MEDIA_TUNER_TDA18212=m
-CONFIG_MEDIA_TUNER_E4000=m
-CONFIG_MEDIA_TUNER_FC2580=m
-CONFIG_MEDIA_TUNER_TUA9001=m
-CONFIG_MEDIA_TUNER_IT913X=m
-CONFIG_MEDIA_TUNER_R820T=m
-
-#
-# Multistandard (satellite) frontends
-#
-CONFIG_DVB_STB0899=m
-CONFIG_DVB_STB6100=m
-CONFIG_DVB_STV090x=m
-CONFIG_DVB_STV6110x=m
-
-#
-# Multistandard (cable + terrestrial) frontends
-#
-CONFIG_DVB_DRXK=m
-CONFIG_DVB_TDA18271C2DD=m
-
-#
-# DVB-S (satellite) frontends
-#
-CONFIG_DVB_CX24110=m
-CONFIG_DVB_CX24123=m
-CONFIG_DVB_MT312=m
-CONFIG_DVB_ZL10036=m
-CONFIG_DVB_ZL10039=m
-CONFIG_DVB_S5H1420=m
-CONFIG_DVB_STV0288=m
-CONFIG_DVB_STB6000=m
-CONFIG_DVB_STV0299=m
-CONFIG_DVB_STV6110=m
-CONFIG_DVB_STV0900=m
-CONFIG_DVB_TDA8083=m
-CONFIG_DVB_TDA10086=m
-CONFIG_DVB_TDA8261=m
-CONFIG_DVB_VES1X93=m
-CONFIG_DVB_TUNER_ITD1000=m
-CONFIG_DVB_TUNER_CX24113=m
-CONFIG_DVB_TDA826X=m
-CONFIG_DVB_TUA6100=m
-CONFIG_DVB_CX24116=m
-CONFIG_DVB_SI21XX=m
-CONFIG_DVB_TS2020=m
-CONFIG_DVB_DS3000=m
-CONFIG_DVB_MB86A16=m
-CONFIG_DVB_TDA10071=m
-
-#
-# DVB-T (terrestrial) frontends
-#
-CONFIG_DVB_SP8870=m
-CONFIG_DVB_SP887X=m
-CONFIG_DVB_CX22700=m
-CONFIG_DVB_CX22702=m
-CONFIG_DVB_DRXD=m
-CONFIG_DVB_L64781=m
-CONFIG_DVB_TDA1004X=m
-CONFIG_DVB_NXT6000=m
-CONFIG_DVB_MT352=m
-CONFIG_DVB_ZL10353=m
-CONFIG_DVB_DIB3000MB=m
-CONFIG_DVB_DIB3000MC=m
-CONFIG_DVB_DIB7000M=m
-CONFIG_DVB_DIB7000P=m
-CONFIG_DVB_TDA10048=m
-CONFIG_DVB_AF9013=m
-CONFIG_DVB_EC100=m
-CONFIG_DVB_STV0367=m
-CONFIG_DVB_CXD2820R=m
-CONFIG_DVB_RTL2830=m
-CONFIG_DVB_RTL2832=m
-
-#
-# DVB-C (cable) frontends
-#
-CONFIG_DVB_VES1820=m
-CONFIG_DVB_TDA10021=m
-CONFIG_DVB_TDA10023=m
-CONFIG_DVB_STV0297=m
-
-#
-# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
-#
-CONFIG_DVB_NXT200X=m
-CONFIG_DVB_OR51211=m
-CONFIG_DVB_OR51132=m
-CONFIG_DVB_BCM3510=m
-CONFIG_DVB_LGDT330X=m
-CONFIG_DVB_LGDT3305=m
-CONFIG_DVB_LG2160=m
-CONFIG_DVB_S5H1409=m
-CONFIG_DVB_AU8522=m
-CONFIG_DVB_AU8522_DTV=m
-CONFIG_DVB_AU8522_V4L=m
-CONFIG_DVB_S5H1411=m
-
-#
-# ISDB-T (terrestrial) frontends
-#
-CONFIG_DVB_S921=m
-CONFIG_DVB_DIB8000=m
-CONFIG_DVB_MB86A20S=m
-
-#
-# Digital terrestrial only tuners/PLL
-#
-CONFIG_DVB_PLL=m
-CONFIG_DVB_TUNER_DIB0070=m
-CONFIG_DVB_TUNER_DIB0090=m
-
-#
-# SEC control devices for DVB-S
-#
-CONFIG_DVB_LNBP21=m
-CONFIG_DVB_LNBP22=m
-CONFIG_DVB_ISL6405=m
-CONFIG_DVB_ISL6421=m
-CONFIG_DVB_ISL6423=m
-CONFIG_DVB_A8293=m
-CONFIG_DVB_LGS8GXX=m
-CONFIG_DVB_ATBM8830=m
-CONFIG_DVB_TDA665x=m
-CONFIG_DVB_IX2505V=m
-CONFIG_DVB_IT913X_FE=m
-CONFIG_DVB_M88RS2000=m
-CONFIG_DVB_AF9033=m
-
-#
-# Tools to develop new frontends
-#
-# CONFIG_DVB_DUMMY_FE is not set
-
-#
-# Graphics support
-#
-CONFIG_AGP=y
-CONFIG_AGP_AMD64=y
-CONFIG_AGP_INTEL=y
-CONFIG_AGP_SIS=y
-CONFIG_AGP_VIA=y
-CONFIG_INTEL_GTT=y
-CONFIG_VGA_ARB=y
-CONFIG_VGA_ARB_MAX_GPUS=64
-CONFIG_VGA_SWITCHEROO=y
-CONFIG_DRM=m
-CONFIG_DRM_MIPI_DSI=y
-CONFIG_DRM_DP_AUX_CHARDEV=y
-# CONFIG_DRM_DEBUG_SELFTEST is not set
-CONFIG_DRM_KMS_HELPER=m
-CONFIG_DRM_KMS_FB_HELPER=y
-CONFIG_DRM_FBDEV_EMULATION=y
-CONFIG_DRM_FBDEV_OVERALLOC=100
-CONFIG_DRM_LOAD_EDID_FIRMWARE=y
-# CONFIG_DRM_DP_CEC is not set
-CONFIG_DRM_TTM=m
-CONFIG_DRM_VM=y
-CONFIG_DRM_SCHED=m
-
-#
-# I2C encoder or helper chips
-#
-CONFIG_DRM_I2C_CH7006=m
-CONFIG_DRM_I2C_SIL164=m
-# CONFIG_DRM_I2C_NXP_TDA998X is not set
-# CONFIG_DRM_I2C_NXP_TDA9950 is not set
-CONFIG_DRM_RADEON=m
-# CONFIG_DRM_RADEON_USERPTR is not set
-CONFIG_DRM_AMDGPU=m
-# CONFIG_DRM_AMDGPU_SI is not set
-# CONFIG_DRM_AMDGPU_CIK is not set
-# CONFIG_DRM_AMDGPU_USERPTR is not set
-# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
-
-#
-# ACP (Audio CoProcessor) Configuration
-#
-# CONFIG_DRM_AMD_ACP is not set
-
-#
-# Display Engine Configuration
-#
-CONFIG_DRM_AMD_DC=y
-CONFIG_DRM_AMD_DC_DCN1_0=y
-CONFIG_DRM_AMD_DC_DCN1_01=y
-# CONFIG_DEBUG_KERNEL_DC is not set
-CONFIG_HSA_AMD=y
-
-#
-# AMD Library routines
-#
-CONFIG_CHASH=m
-# CONFIG_CHASH_STATS is not set
-# CONFIG_CHASH_SELFTEST is not set
-CONFIG_DRM_NOUVEAU=m
-CONFIG_NOUVEAU_DEBUG=5
-CONFIG_NOUVEAU_DEBUG_DEFAULT=3
-# CONFIG_NOUVEAU_DEBUG_MMU is not set
-CONFIG_DRM_NOUVEAU_BACKLIGHT=y
-CONFIG_DRM_I915=m
-# CONFIG_DRM_I915_ALPHA_SUPPORT is not set
-CONFIG_DRM_I915_CAPTURE_ERROR=y
-CONFIG_DRM_I915_COMPRESS_ERROR=y
-CONFIG_DRM_I915_USERPTR=y
-CONFIG_DRM_I915_GVT=y
-CONFIG_DRM_I915_GVT_KVMGT=m
-CONFIG_DRM_VGEM=m
-# CONFIG_DRM_VKMS is not set
-CONFIG_DRM_VMWGFX=m
-CONFIG_DRM_VMWGFX_FBCON=y
-CONFIG_DRM_GMA500=m
-CONFIG_DRM_GMA600=y
-CONFIG_DRM_GMA3600=y
-CONFIG_DRM_UDL=m
-CONFIG_DRM_AST=m
-CONFIG_DRM_MGAG200=m
-CONFIG_DRM_CIRRUS_QEMU=m
-CONFIG_DRM_QXL=m
-CONFIG_DRM_BOCHS=m
-CONFIG_DRM_VIRTIO_GPU=m
-# CONFIG_DRM_LEGACY is not set
-CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m
-# CONFIG_DRM_LIB_RANDOM is not set
-# CONFIG_VGASTATE is not set
-CONFIG_VIDEO_OUTPUT_CONTROL=m
-CONFIG_HDMI=y
-CONFIG_FB=y
-# CONFIG_FIRMWARE_EDID is not set
-# CONFIG_FB_DDC is not set
-CONFIG_FB_BOOT_VESA_SUPPORT=y
-CONFIG_FB_CFB_FILLRECT=y
-CONFIG_FB_CFB_COPYAREA=y
-CONFIG_FB_CFB_IMAGEBLIT=y
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-CONFIG_FB_DEFERRED_IO=y
-# CONFIG_FB_SVGALIB is not set
-# CONFIG_FB_MACMODES is not set
-CONFIG_FB_BACKLIGHT=y
-# CONFIG_FB_MODE_HELPERS is not set
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-# CONFIG_FB_ARC is not set
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-# CONFIG_FB_VGA16 is not set
-# CONFIG_FB_UVESA is not set
-CONFIG_FB_VESA=y
-CONFIG_FB_EFI=y
-# CONFIG_FB_N411 is not set
-# CONFIG_FB_HGA is not set
-# CONFIG_FB_S1D13XXX is not set
-# CONFIG_FB_NVIDIA is not set
-# CONFIG_FB_RIVA is not set
-# CONFIG_FB_I740 is not set
-# CONFIG_FB_LE80578 is not set
-# CONFIG_FB_MATROX is not set
-# CONFIG_FB_RADEON is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_VIA is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_GEODE is not set
-# CONFIG_FB_TMIO is not set
-# CONFIG_FB_SM501 is not set
-# CONFIG_FB_SMSCUFX is not set
-# CONFIG_FB_UDL is not set
-# CONFIG_FB_GOLDFISH is not set
-# CONFIG_FB_VIRTUAL is not set
-# CONFIG_XEN_FBDEV_FRONTEND is not set
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-# CONFIG_FB_AUO_K190X is not set
-CONFIG_FB_HYPERV=m
-# CONFIG_EXYNOS_VIDEO is not set
-CONFIG_BACKLIGHT_LCD_SUPPORT=y
-CONFIG_LCD_CLASS_DEVICE=m
-# CONFIG_LCD_L4F00242T03 is not set
-# CONFIG_LCD_LMS283GF05 is not set
-# CONFIG_LCD_LTV350QV is not set
-# CONFIG_LCD_ILI922X is not set
-# CONFIG_LCD_ILI9320 is not set
-# CONFIG_LCD_TDO24M is not set
-# CONFIG_LCD_VGG2432A4 is not set
-CONFIG_LCD_PLATFORM=m
-# CONFIG_LCD_S6E63M0 is not set
-# CONFIG_LCD_LD9040 is not set
-# CONFIG_LCD_AMS369FG06 is not set
-# CONFIG_LCD_LMS501KF03 is not set
-# CONFIG_LCD_HX8357 is not set
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-# CONFIG_BACKLIGHT_GENERIC is not set
-# CONFIG_BACKLIGHT_PWM is not set
-CONFIG_BACKLIGHT_APPLE=m
-# CONFIG_BACKLIGHT_SAHARA is not set
-# CONFIG_BACKLIGHT_ADP8860 is not set
-# CONFIG_BACKLIGHT_ADP8870 is not set
-# CONFIG_BACKLIGHT_LM3630 is not set
-# CONFIG_BACKLIGHT_LM3639 is not set
-CONFIG_BACKLIGHT_LP855X=m
-CONFIG_LOGO=y
-# CONFIG_LOGO_LINUX_MONO is not set
-# CONFIG_LOGO_LINUX_VGA16 is not set
-CONFIG_LOGO_LINUX_CLUT224=y
-
-#
-# Console display driver support
-#
-CONFIG_VGA_CONSOLE=y
-CONFIG_VGACON_SOFT_SCROLLBACK=y
-CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-CONFIG_SOUND=m
-CONFIG_SOUND_OSS_CORE=y
-CONFIG_SOUND_OSS_CORE_PRECLAIM=y
-CONFIG_SND=m
-CONFIG_SND_TIMER=m
-CONFIG_SND_PCM=m
-CONFIG_SND_PCM_ELD=y
-CONFIG_SND_HWDEP=m
-CONFIG_SND_SEQ_DEVICE=m
-CONFIG_SND_RAWMIDI=m
-CONFIG_SND_COMPRESS_OFFLOAD=m
-CONFIG_SND_JACK=y
-CONFIG_SND_JACK_INPUT_DEV=y
-CONFIG_SND_OSSEMUL=y
-# CONFIG_SND_MIXER_OSS is not set
-# CONFIG_SND_PCM_OSS is not set
-CONFIG_SND_PCM_TIMER=y
-CONFIG_SND_HRTIMER=m
-CONFIG_SND_DYNAMIC_MINORS=y
-CONFIG_SND_MAX_CARDS=32
-# CONFIG_SND_SUPPORT_OLD_API is not set
-CONFIG_SND_PROC_FS=y
-CONFIG_SND_VERBOSE_PROCFS=y
-# CONFIG_SND_VERBOSE_PRINTK is not set
-# CONFIG_SND_DEBUG is not set
-CONFIG_SND_VMASTER=y
-CONFIG_SND_DMA_SGBUF=y
-CONFIG_SND_SEQUENCER=m
-CONFIG_SND_SEQ_DUMMY=m
-CONFIG_SND_SEQUENCER_OSS=m
-CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
-CONFIG_SND_SEQ_MIDI_EVENT=m
-CONFIG_SND_SEQ_MIDI=m
-CONFIG_SND_SEQ_MIDI_EMUL=m
-CONFIG_SND_SEQ_VIRMIDI=m
-CONFIG_SND_MPU401_UART=m
-CONFIG_SND_OPL3_LIB=m
-CONFIG_SND_OPL3_LIB_SEQ=m
-# CONFIG_SND_OPL4_LIB_SEQ is not set
-CONFIG_SND_VX_LIB=m
-CONFIG_SND_AC97_CODEC=m
-CONFIG_SND_DRIVERS=y
-CONFIG_SND_PCSP=m
-CONFIG_SND_DUMMY=m
-CONFIG_SND_ALOOP=m
-CONFIG_SND_VIRMIDI=m
-CONFIG_SND_MTPAV=m
-# CONFIG_SND_MTS64 is not set
-# CONFIG_SND_SERIAL_U16550 is not set
-CONFIG_SND_MPU401=m
-# CONFIG_SND_PORTMAN2X4 is not set
-CONFIG_SND_AC97_POWER_SAVE=y
-CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
-CONFIG_SND_TEA575X=m
-CONFIG_SND_PCI=y
-CONFIG_SND_AD1889=m
-# CONFIG_SND_ALS300 is not set
-# CONFIG_SND_ALS4000 is not set
-CONFIG_SND_ALI5451=m
-CONFIG_SND_ASIHPI=m
-CONFIG_SND_ATIIXP=m
-CONFIG_SND_ATIIXP_MODEM=m
-CONFIG_SND_AU8810=m
-CONFIG_SND_AU8820=m
-CONFIG_SND_AU8830=m
-# CONFIG_SND_AW2 is not set
-# CONFIG_SND_AZT3328 is not set
-CONFIG_SND_BT87X=m
-# CONFIG_SND_BT87X_OVERCLOCK is not set
-CONFIG_SND_CA0106=m
-CONFIG_SND_CMIPCI=m
-CONFIG_SND_OXYGEN_LIB=m
-CONFIG_SND_OXYGEN=m
-# CONFIG_SND_CS4281 is not set
-CONFIG_SND_CS46XX=m
-CONFIG_SND_CS46XX_NEW_DSP=y
-CONFIG_SND_CTXFI=m
-CONFIG_SND_DARLA20=m
-CONFIG_SND_GINA20=m
-CONFIG_SND_LAYLA20=m
-CONFIG_SND_DARLA24=m
-CONFIG_SND_GINA24=m
-CONFIG_SND_LAYLA24=m
-CONFIG_SND_MONA=m
-CONFIG_SND_MIA=m
-CONFIG_SND_ECHO3G=m
-CONFIG_SND_INDIGO=m
-CONFIG_SND_INDIGOIO=m
-CONFIG_SND_INDIGODJ=m
-CONFIG_SND_INDIGOIOX=m
-CONFIG_SND_INDIGODJX=m
-CONFIG_SND_EMU10K1=m
-CONFIG_SND_EMU10K1_SEQ=m
-CONFIG_SND_EMU10K1X=m
-CONFIG_SND_ENS1370=m
-CONFIG_SND_ENS1371=m
-# CONFIG_SND_ES1938 is not set
-CONFIG_SND_ES1968=m
-CONFIG_SND_ES1968_INPUT=y
-CONFIG_SND_ES1968_RADIO=y
-# CONFIG_SND_FM801 is not set
-CONFIG_SND_HDSP=m
-CONFIG_SND_HDSPM=m
-CONFIG_SND_ICE1712=m
-CONFIG_SND_ICE1724=m
-CONFIG_SND_INTEL8X0=m
-CONFIG_SND_INTEL8X0M=m
-CONFIG_SND_KORG1212=m
-CONFIG_SND_LOLA=m
-CONFIG_SND_LX6464ES=m
-CONFIG_SND_MAESTRO3=m
-CONFIG_SND_MAESTRO3_INPUT=y
-CONFIG_SND_MIXART=m
-# CONFIG_SND_NM256 is not set
-CONFIG_SND_PCXHR=m
-# CONFIG_SND_RIPTIDE is not set
-CONFIG_SND_RME32=m
-CONFIG_SND_RME96=m
-CONFIG_SND_RME9652=m
-# CONFIG_SND_SONICVIBES is not set
-CONFIG_SND_TRIDENT=m
-CONFIG_SND_VIA82XX=m
-CONFIG_SND_VIA82XX_MODEM=m
-CONFIG_SND_VIRTUOSO=m
-CONFIG_SND_VX222=m
-# CONFIG_SND_YMFPCI is not set
-
-#
-# HD-Audio
-#
-CONFIG_SND_HDA=m
-CONFIG_SND_HDA_INTEL=m
-CONFIG_SND_HDA_HWDEP=y
-CONFIG_SND_HDA_RECONFIG=y
-CONFIG_SND_HDA_INPUT_BEEP=y
-CONFIG_SND_HDA_INPUT_BEEP_MODE=0
-CONFIG_SND_HDA_PATCH_LOADER=y
-CONFIG_SND_HDA_CODEC_REALTEK=m
-CONFIG_SND_HDA_CODEC_ANALOG=m
-CONFIG_SND_HDA_CODEC_SIGMATEL=m
-CONFIG_SND_HDA_CODEC_VIA=m
-CONFIG_SND_HDA_CODEC_HDMI=m
-CONFIG_SND_HDA_CODEC_CIRRUS=m
-CONFIG_SND_HDA_CODEC_CONEXANT=m
-CONFIG_SND_HDA_CODEC_CA0110=m
-CONFIG_SND_HDA_CODEC_CA0132=m
-CONFIG_SND_HDA_CODEC_CA0132_DSP=y
-CONFIG_SND_HDA_CODEC_CMEDIA=m
-CONFIG_SND_HDA_CODEC_SI3054=m
-CONFIG_SND_HDA_GENERIC=m
-CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
-CONFIG_SND_HDA_CORE=m
-CONFIG_SND_HDA_DSP_LOADER=y
-CONFIG_SND_HDA_COMPONENT=y
-CONFIG_SND_HDA_I915=y
-CONFIG_SND_HDA_EXT_CORE=m
-CONFIG_SND_HDA_PREALLOC_SIZE=512
-# CONFIG_SND_SPI is not set
-CONFIG_SND_USB=y
-CONFIG_SND_USB_AUDIO=m
-CONFIG_SND_USB_UA101=m
-CONFIG_SND_USB_USX2Y=m
-CONFIG_SND_USB_CAIAQ=m
-CONFIG_SND_USB_CAIAQ_INPUT=y
-CONFIG_SND_USB_US122L=m
-CONFIG_SND_USB_6FIRE=m
-CONFIG_SND_USB_HIFACE=m
-CONFIG_SND_BCD2000=m
-CONFIG_SND_USB_LINE6=m
-CONFIG_SND_USB_POD=m
-CONFIG_SND_USB_PODHD=m
-CONFIG_SND_USB_TONEPORT=m
-CONFIG_SND_USB_VARIAX=m
-CONFIG_SND_FIREWIRE=y
-CONFIG_SND_FIREWIRE_LIB=m
-CONFIG_SND_FIREWIRE_SPEAKERS=m
-CONFIG_SND_ISIGHT=m
-CONFIG_SND_SCS1X=m
-CONFIG_SND_SOC=m
-CONFIG_SND_SOC_COMPRESS=y
-CONFIG_SND_SOC_TOPOLOGY=y
-CONFIG_SND_SOC_ACPI=m
-CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y
-CONFIG_SND_SST_IPC=m
-CONFIG_SND_SST_IPC_ACPI=m
-CONFIG_SND_SOC_INTEL_SST=m
-CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m
-CONFIG_SND_SOC_INTEL_SST_ACPI=m
-CONFIG_SND_SOC_INTEL_HASWELL=m
-CONFIG_SND_SOC_INTEL_BAYTRAIL=m
-# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
-CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
-CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m
-CONFIG_SND_SOC_INTEL_SKYLAKE=m
-CONFIG_SND_SOC_ACPI_INTEL_MATCH=m
-CONFIG_SND_SOC_INTEL_MACH=y
-CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
-CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m
-CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
-# CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH is not set
-# CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH is not set
-CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
-CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
-CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
-CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m
-CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m
-# CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH is not set
-CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m
-CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m
-CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=m
-CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m
-CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m
-CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m
-CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m
-CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m
-CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m
-CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m
-CONFIG_SND_SOC_I2C_AND_SPI=m
-
-#
-# CODEC drivers
-#
-CONFIG_SND_SOC_DA7213=m
-CONFIG_SND_SOC_DA7219=m
-CONFIG_SND_SOC_DMIC=m
-CONFIG_SND_SOC_ES8316=m
-CONFIG_SND_SOC_HDAC_HDMI=m
-CONFIG_SND_SOC_MAX98090=m
-CONFIG_SND_SOC_MAX98357A=m
-CONFIG_SND_SOC_MAX98927=m
-CONFIG_SND_SOC_RL6231=m
-CONFIG_SND_SOC_RL6347A=m
-CONFIG_SND_SOC_RT286=m
-CONFIG_SND_SOC_RT298=m
-CONFIG_SND_SOC_RT5514=m
-CONFIG_SND_SOC_RT5514_SPI=m
-CONFIG_SND_SOC_RT5640=m
-CONFIG_SND_SOC_RT5645=m
-CONFIG_SND_SOC_RT5651=m
-CONFIG_SND_SOC_RT5663=m
-CONFIG_SND_SOC_RT5670=m
-CONFIG_SND_SOC_RT5677=m
-CONFIG_SND_SOC_RT5677_SPI=m
-# CONFIG_SND_SOC_SPDIF is not set
-CONFIG_SND_SOC_SSM4567=m
-CONFIG_SND_SOC_TS3A227E=m
-CONFIG_SND_SOC_NAU8824=m
-CONFIG_SND_SOC_NAU8825=m
-CONFIG_SND_X86=y
-CONFIG_HDMI_LPE_AUDIO=m
-CONFIG_SND_SYNTH_EMUX=m
-# CONFIG_SOUND_PRIME is not set
-CONFIG_AC97_BUS=m
-
-#
-# HID support
-#
-CONFIG_HID=y
-CONFIG_HID_BATTERY_STRENGTH=y
-CONFIG_HIDRAW=y
-CONFIG_UHID=m
-CONFIG_HID_GENERIC=y
-
-#
-# Special HID drivers
-#
-CONFIG_HID_A4TECH=y
-CONFIG_HID_ACRUX=m
-# CONFIG_HID_ACRUX_FF is not set
-CONFIG_HID_APPLE=y
-CONFIG_HID_APPLEIR=m
-CONFIG_HID_AUREAL=m
-CONFIG_HID_BELKIN=y
-CONFIG_HID_CHERRY=y
-CONFIG_HID_CHICONY=y
-CONFIG_HID_PRODIKEYS=m
-CONFIG_HID_CYPRESS=y
-CONFIG_HID_DRAGONRISE=m
-# CONFIG_DRAGONRISE_FF is not set
-# CONFIG_HID_EMS_FF is not set
-CONFIG_HID_ELECOM=m
-CONFIG_HID_EZKEY=y
-CONFIG_HID_HOLTEK=m
-# CONFIG_HOLTEK_FF is not set
-CONFIG_HID_KEYTOUCH=m
-CONFIG_HID_KYE=m
-CONFIG_HID_UCLOGIC=m
-CONFIG_HID_WALTOP=m
-CONFIG_HID_GYRATION=m
-CONFIG_HID_ICADE=m
-CONFIG_HID_TWINHAN=m
-CONFIG_HID_KENSINGTON=y
-CONFIG_HID_LCPOWER=m
-CONFIG_HID_LENOVO_TPKBD=m
-CONFIG_HID_LOGITECH=y
-CONFIG_HID_LOGITECH_DJ=m
-# CONFIG_LOGITECH_FF is not set
-# CONFIG_LOGIRUMBLEPAD2_FF is not set
-# CONFIG_LOGIG940_FF is not set
-# CONFIG_LOGIWHEELS_FF is not set
-CONFIG_HID_MAGICMOUSE=y
-CONFIG_HID_MICROSOFT=y
-CONFIG_HID_MONTEREY=y
-CONFIG_HID_MULTITOUCH=m
-CONFIG_HID_NTRIG=y
-CONFIG_HID_ORTEK=m
-CONFIG_HID_PANTHERLORD=m
-# CONFIG_PANTHERLORD_FF is not set
-CONFIG_HID_PETALYNX=m
-CONFIG_HID_PICOLCD=m
-CONFIG_HID_PICOLCD_FB=y
-CONFIG_HID_PICOLCD_BACKLIGHT=y
-CONFIG_HID_PICOLCD_LCD=y
-CONFIG_HID_PICOLCD_LEDS=y
-CONFIG_HID_PICOLCD_CIR=y
-CONFIG_HID_PLANTRONICS=y
-CONFIG_HID_PRIMAX=m
-CONFIG_HID_PS3REMOTE=m
-CONFIG_HID_ROCCAT=m
-CONFIG_HID_SAITEK=m
-CONFIG_HID_SAMSUNG=m
-CONFIG_HID_SONY=m
-CONFIG_HID_SPEEDLINK=m
-CONFIG_HID_STEELSERIES=m
-CONFIG_HID_SUNPLUS=m
-CONFIG_HID_RMI=m
-CONFIG_HID_GREENASIA=m
-# CONFIG_GREENASIA_FF is not set
-CONFIG_HID_HYPERV_MOUSE=m
-CONFIG_HID_SMARTJOYPLUS=m
-# CONFIG_SMARTJOYPLUS_FF is not set
-CONFIG_HID_TIVO=m
-CONFIG_HID_TOPSEED=m
-CONFIG_HID_THINGM=m
-CONFIG_HID_THRUSTMASTER=m
-# CONFIG_THRUSTMASTER_FF is not set
-CONFIG_HID_WACOM=m
-CONFIG_HID_WIIMOTE=m
-CONFIG_HID_WIIMOTE_EXT=y
-CONFIG_HID_ZEROPLUS=m
-# CONFIG_ZEROPLUS_FF is not set
-CONFIG_HID_ZYDACRON=m
-CONFIG_HID_SENSOR_HUB=m
-CONFIG_HID_ALPS=m
-
-#
-# USB HID support
-#
-CONFIG_USB_HID=y
-CONFIG_HID_PID=y
-CONFIG_USB_HIDDEV=y
-
-#
-# I2C HID support
-#
-CONFIG_I2C_HID=m
-CONFIG_HID_SENSOR_CUSTOM_SENSOR=m
-
-#
-# Intel ISH HID support
-#
-CONFIG_INTEL_ISH_HID=y
-CONFIG_USB_OHCI_LITTLE_ENDIAN=y
-CONFIG_USB_SUPPORT=y
-CONFIG_USB_COMMON=y
-CONFIG_USB_ARCH_HAS_HCD=y
-CONFIG_USB=y
-CONFIG_USB_PCI=y
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-
-#
-# Miscellaneous USB options
-#
-CONFIG_USB_DEFAULT_PERSIST=y
-# CONFIG_USB_DYNAMIC_MINORS is not set
-# CONFIG_USB_OTG is not set
-# CONFIG_USB_OTG_WHITELIST is not set
-# CONFIG_USB_OTG_FSM is not set
-CONFIG_USB_LEDS_TRIGGER_USBPORT=m
-CONFIG_USB_MON=y
-CONFIG_USB_WUSB=m
-CONFIG_USB_WUSB_CBAF=m
-# CONFIG_USB_WUSB_CBAF_DEBUG is not set
-
-#
-# USB Host Controller Drivers
-#
-# CONFIG_USB_C67X00_HCD is not set
-CONFIG_USB_XHCI_HCD=y
-# CONFIG_USB_XHCI_DBGCAP is not set
-CONFIG_USB_XHCI_PCI=y
-# CONFIG_USB_XHCI_PLATFORM is not set
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_ROOT_HUB_TT=y
-CONFIG_USB_EHCI_TT_NEWSCHED=y
-CONFIG_USB_EHCI_PCI=y
-# CONFIG_USB_EHCI_HCD_PLATFORM is not set
-# CONFIG_USB_OXU210HP_HCD is not set
-# CONFIG_USB_ISP116X_HCD is not set
-# CONFIG_USB_ISP1760_HCD is not set
-# CONFIG_USB_ISP1362_HCD is not set
-# CONFIG_USB_FOTG210_HCD is not set
-# CONFIG_USB_MAX3421_HCD is not set
-CONFIG_USB_OHCI_HCD=y
-CONFIG_USB_OHCI_HCD_PCI=y
-# CONFIG_USB_OHCI_HCD_PLATFORM is not set
-CONFIG_USB_UHCI_HCD=y
-# CONFIG_USB_U132_HCD is not set
-# CONFIG_USB_SL811_HCD is not set
-# CONFIG_USB_R8A66597_HCD is not set
-# CONFIG_USB_WHCI_HCD is not set
-CONFIG_USB_HWA_HCD=m
-# CONFIG_USB_HCD_BCMA is not set
-# CONFIG_USB_HCD_SSB is not set
-# CONFIG_USB_HCD_TEST_MODE is not set
-
-#
-# USB Device Class drivers
-#
-CONFIG_USB_ACM=m
-CONFIG_USB_PRINTER=m
-CONFIG_USB_WDM=m
-CONFIG_USB_TMC=m
-
-#
-# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
-#
-
-#
-# also be needed; see USB_STORAGE Help for more info
-#
-CONFIG_USB_STORAGE=m
-# CONFIG_USB_STORAGE_DEBUG is not set
-CONFIG_USB_STORAGE_REALTEK=m
-CONFIG_REALTEK_AUTOPM=y
-CONFIG_USB_STORAGE_DATAFAB=m
-CONFIG_USB_STORAGE_FREECOM=m
-CONFIG_USB_STORAGE_ISD200=m
-CONFIG_USB_STORAGE_USBAT=m
-CONFIG_USB_STORAGE_SDDR09=m
-CONFIG_USB_STORAGE_SDDR55=m
-CONFIG_USB_STORAGE_JUMPSHOT=m
-CONFIG_USB_STORAGE_ALAUDA=m
-CONFIG_USB_STORAGE_ONETOUCH=m
-CONFIG_USB_STORAGE_KARMA=m
-CONFIG_USB_STORAGE_CYPRESS_ATACB=m
-CONFIG_USB_STORAGE_ENE_UB6250=m
-CONFIG_USB_UAS=m
-
-#
-# USB Imaging devices
-#
-CONFIG_USB_MDC800=m
-CONFIG_USB_MICROTEK=m
-CONFIG_USBIP_CORE=m
-# CONFIG_USBIP_VHCI_HCD is not set
-# CONFIG_USBIP_HOST is not set
-# CONFIG_USBIP_DEBUG is not set
-# CONFIG_USB_DWC3 is not set
-# CONFIG_USB_CHIPIDEA is not set
-
-#
-# USB port drivers
-#
-CONFIG_USB_USS720=m
-CONFIG_USB_SERIAL=y
-CONFIG_USB_SERIAL_CONSOLE=y
-CONFIG_USB_SERIAL_GENERIC=y
-# CONFIG_USB_SERIAL_SIMPLE is not set
-CONFIG_USB_SERIAL_AIRCABLE=m
-CONFIG_USB_SERIAL_ARK3116=m
-CONFIG_USB_SERIAL_BELKIN=m
-CONFIG_USB_SERIAL_CH341=m
-CONFIG_USB_SERIAL_WHITEHEAT=m
-CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
-CONFIG_USB_SERIAL_CP210X=m
-CONFIG_USB_SERIAL_CYPRESS_M8=m
-CONFIG_USB_SERIAL_EMPEG=m
-CONFIG_USB_SERIAL_FTDI_SIO=m
-CONFIG_USB_SERIAL_VISOR=m
-CONFIG_USB_SERIAL_IPAQ=m
-CONFIG_USB_SERIAL_IR=m
-CONFIG_USB_SERIAL_EDGEPORT=m
-CONFIG_USB_SERIAL_EDGEPORT_TI=m
-# CONFIG_USB_SERIAL_F81232 is not set
-CONFIG_USB_SERIAL_GARMIN=m
-CONFIG_USB_SERIAL_IPW=m
-CONFIG_USB_SERIAL_IUU=m
-CONFIG_USB_SERIAL_KEYSPAN_PDA=m
-CONFIG_USB_SERIAL_KEYSPAN=m
-CONFIG_USB_SERIAL_KLSI=m
-CONFIG_USB_SERIAL_KOBIL_SCT=m
-CONFIG_USB_SERIAL_MCT_U232=m
-# CONFIG_USB_SERIAL_METRO is not set
-CONFIG_USB_SERIAL_MOS7720=m
-CONFIG_USB_SERIAL_MOS7715_PARPORT=y
-CONFIG_USB_SERIAL_MOS7840=m
-# CONFIG_USB_SERIAL_MXUPORT is not set
-CONFIG_USB_SERIAL_NAVMAN=m
-CONFIG_USB_SERIAL_PL2303=m
-CONFIG_USB_SERIAL_OTI6858=m
-CONFIG_USB_SERIAL_QCAUX=m
-CONFIG_USB_SERIAL_QUALCOMM=m
-CONFIG_USB_SERIAL_SPCP8X5=m
-CONFIG_USB_SERIAL_SAFE=m
-CONFIG_USB_SERIAL_SAFE_PADDED=y
-CONFIG_USB_SERIAL_SIERRAWIRELESS=m
-CONFIG_USB_SERIAL_SYMBOL=m
-CONFIG_USB_SERIAL_TI=m
-CONFIG_USB_SERIAL_CYBERJACK=m
-CONFIG_USB_SERIAL_XIRCOM=m
-CONFIG_USB_SERIAL_WWAN=m
-CONFIG_USB_SERIAL_OPTION=m
-CONFIG_USB_SERIAL_OMNINET=m
-CONFIG_USB_SERIAL_OPTICON=m
-CONFIG_USB_SERIAL_XSENS_MT=m
-# CONFIG_USB_SERIAL_WISHBONE is not set
-CONFIG_USB_SERIAL_SSU100=m
-CONFIG_USB_SERIAL_QT2=m
-# CONFIG_USB_SERIAL_UPD78F0730 is not set
-CONFIG_USB_SERIAL_DEBUG=m
-
-#
-# USB Miscellaneous drivers
-#
-CONFIG_USB_EMI62=m
-CONFIG_USB_EMI26=m
-CONFIG_USB_ADUTUX=m
-CONFIG_USB_SEVSEG=m
-# CONFIG_USB_RIO500 is not set
-CONFIG_USB_LEGOTOWER=m
-CONFIG_USB_LCD=m
-# CONFIG_USB_CYPRESS_CY7C63 is not set
-# CONFIG_USB_CYTHERM is not set
-CONFIG_USB_IDMOUSE=m
-CONFIG_USB_FTDI_ELAN=m
-CONFIG_USB_APPLEDISPLAY=m
-CONFIG_USB_SISUSBVGA=m
-CONFIG_USB_SISUSBVGA_CON=y
-CONFIG_USB_LD=m
-# CONFIG_USB_TRANCEVIBRATOR is not set
-CONFIG_USB_IOWARRIOR=m
-# CONFIG_USB_TEST is not set
-# CONFIG_USB_EHSET_TEST_FIXTURE is not set
-CONFIG_USB_ISIGHTFW=m
-# CONFIG_USB_YUREX is not set
-CONFIG_USB_EZUSB_FX2=m
-CONFIG_USB_HSIC_USB3503=m
-# CONFIG_USB_HSIC_USB4604 is not set
-# CONFIG_USB_LINK_LAYER_TEST is not set
-# CONFIG_USB_CHAOSKEY is not set
-CONFIG_USB_ATM=m
-CONFIG_USB_SPEEDTOUCH=m
-CONFIG_USB_CXACRU=m
-CONFIG_USB_UEAGLEATM=m
-CONFIG_USB_XUSBATM=m
-# CONFIG_USB_PHY is not set
-# CONFIG_USB_GADGET is not set
-CONFIG_TYPEC=y
-# CONFIG_TYPEC_TCPM is not set
-CONFIG_TYPEC_UCSI=y
-CONFIG_UCSI_ACPI=y
-# CONFIG_TYPEC_TPS6598X is not set
-
-#
-# USB Type-C Multiplexer/DeMultiplexer Switch support
-#
-# CONFIG_TYPEC_MUX_PI3USB30532 is not set
-
-#
-# USB Type-C Alternate Mode drivers
-#
-CONFIG_TYPEC_DP_ALTMODE=y
-# CONFIG_USB_LED_TRIG is not set
-# CONFIG_USB_ULPI_BUS is not set
-CONFIG_UWB=m
-CONFIG_UWB_HWA=m
-CONFIG_UWB_WHCI=m
-CONFIG_UWB_I1480U=m
-CONFIG_MMC=m
-CONFIG_MMC_BLOCK=m
-CONFIG_MMC_BLOCK_MINORS=8
-CONFIG_SDIO_UART=m
-# CONFIG_MMC_TEST is not set
-
-#
-# MMC/SD/SDIO Host Controller Drivers
-#
-# CONFIG_MMC_DEBUG is not set
-CONFIG_MMC_SDHCI=m
-CONFIG_MMC_SDHCI_PCI=m
-CONFIG_MMC_RICOH_MMC=y
-CONFIG_MMC_SDHCI_ACPI=m
-CONFIG_MMC_SDHCI_PLTFM=m
-# CONFIG_MMC_WBSD is not set
-CONFIG_MMC_TIFM_SD=m
-# CONFIG_MMC_SPI is not set
-CONFIG_MMC_CB710=m
-CONFIG_MMC_VIA_SDMMC=m
-CONFIG_MMC_VUB300=m
-CONFIG_MMC_USHC=m
-# CONFIG_MMC_USDHI6ROL0 is not set
-CONFIG_MMC_REALTEK_PCI=m
-CONFIG_MMC_REALTEK_USB=m
-CONFIG_MMC_CQHCI=m
-# CONFIG_MMC_TOSHIBA_PCI is not set
-# CONFIG_MMC_MTK is not set
-CONFIG_MEMSTICK=m
-# CONFIG_MEMSTICK_DEBUG is not set
-
-#
-# MemoryStick drivers
-#
-# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
-CONFIG_MSPRO_BLOCK=m
-
-#
-# MemoryStick Host Controller Drivers
-#
-CONFIG_MEMSTICK_TIFM_MS=m
-CONFIG_MEMSTICK_JMICRON_38X=m
-CONFIG_MEMSTICK_R592=m
-CONFIG_MEMSTICK_REALTEK_PCI=m
+CONFIG_NET_VENDOR_STMICRO=y
+CONFIG_NET_VRF=m
 CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-
-#
-# LED drivers
-#
-CONFIG_LEDS_LM3530=m
-# CONFIG_LEDS_LM3642 is not set
-# CONFIG_LEDS_PCA9532 is not set
-# CONFIG_LEDS_GPIO is not set
-CONFIG_LEDS_LP3944=m
-CONFIG_LEDS_LP55XX_COMMON=m
-CONFIG_LEDS_LP5521=m
-CONFIG_LEDS_LP5523=m
-CONFIG_LEDS_LP5562=m
-CONFIG_LEDS_CLEVO_MAIL=m
-# CONFIG_LEDS_PCA955X is not set
-# CONFIG_LEDS_PCA9633 is not set
-# CONFIG_LEDS_DAC124S085 is not set
-# CONFIG_LEDS_PWM is not set
-# CONFIG_LEDS_BD2802 is not set
-CONFIG_LEDS_INTEL_SS4200=m
-CONFIG_LEDS_LT3593=m
-CONFIG_LEDS_DELL_NETBOOKS=m
-# CONFIG_LEDS_RENESAS_TPU is not set
-# CONFIG_LEDS_TCA6507 is not set
-# CONFIG_LEDS_LM355x is not set
-# CONFIG_LEDS_OT200 is not set
-CONFIG_LEDS_BLINKM=m
-
-#
-# LED Triggers
-#
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_TIMER=m
-CONFIG_LEDS_TRIGGER_ONESHOT=m
-CONFIG_LEDS_TRIGGER_HEARTBEAT=m
-CONFIG_LEDS_TRIGGER_BACKLIGHT=m
-# CONFIG_LEDS_TRIGGER_CPU is not set
-CONFIG_LEDS_TRIGGER_GPIO=m
-CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
-
-#
-# iptables trigger is under Netfilter config (LED target)
-#
-CONFIG_LEDS_TRIGGER_TRANSIENT=m
-CONFIG_LEDS_TRIGGER_CAMERA=m
-# CONFIG_ACCESSIBILITY is not set
-CONFIG_INFINIBAND=m
-CONFIG_INFINIBAND_USER_MAD=m
-CONFIG_INFINIBAND_USER_ACCESS=m
-# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
-CONFIG_INFINIBAND_USER_MEM=y
-CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
-CONFIG_INFINIBAND_ADDR_TRANS=y
-CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
-CONFIG_INFINIBAND_MTHCA=m
-CONFIG_INFINIBAND_MTHCA_DEBUG=y
-CONFIG_INFINIBAND_IPATH=m
-CONFIG_INFINIBAND_QIB=m
-CONFIG_INFINIBAND_QIB_DCA=y
-# CONFIG_INFINIBAND_AMSO1100 is not set
-CONFIG_INFINIBAND_CXGB3=m
-# CONFIG_INFINIBAND_CXGB3_DEBUG is not set
-CONFIG_INFINIBAND_CXGB4=m
-CONFIG_INFINIBAND_I40IW=m
-CONFIG_MLX4_INFINIBAND=m
-CONFIG_MLX5_INFINIBAND=m
-CONFIG_INFINIBAND_NES=m
-# CONFIG_INFINIBAND_NES_DEBUG is not set
-CONFIG_INFINIBAND_OCRDMA=m
-CONFIG_INFINIBAND_VMWARE_PVRDMA=m
-CONFIG_INFINIBAND_USNIC=m
-CONFIG_INFINIBAND_IPOIB=m
-CONFIG_INFINIBAND_IPOIB_CM=y
-CONFIG_INFINIBAND_IPOIB_DEBUG=y
-# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
-CONFIG_INFINIBAND_SRP=m
-CONFIG_INFINIBAND_SRPT=m
-CONFIG_INFINIBAND_ISER=m
-CONFIG_INFINIBAND_ISERT=m
-CONFIG_INFINIBAND_OPA_VNIC=m
-CONFIG_INFINIBAND_RDMAVT=m
-CONFIG_RDMA_RXE=m
-CONFIG_INFINIBAND_HFI1=m
-# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set
-# CONFIG_SDMA_VERBOSITY is not set
-CONFIG_INFINIBAND_QEDR=m
-CONFIG_INFINIBAND_BNXT_RE=m
-CONFIG_EDAC=y
-CONFIG_EDAC_LEGACY_SYSFS=y
-# CONFIG_EDAC_DEBUG is not set
-CONFIG_EDAC_DECODE_MCE=m
-# CONFIG_EDAC_MCE_INJ is not set
-CONFIG_EDAC_MM_EDAC=y
-CONFIG_EDAC_GHES=y
-CONFIG_EDAC_AMD64=m
-# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set
-CONFIG_EDAC_E752X=m
-CONFIG_EDAC_I82975X=m
-CONFIG_EDAC_I3000=m
-CONFIG_EDAC_I3200=m
-CONFIG_EDAC_IE31200=m
-CONFIG_EDAC_X38=m
-CONFIG_EDAC_I5400=m
-CONFIG_EDAC_I7CORE=m
-CONFIG_EDAC_I5000=m
-CONFIG_EDAC_I5100=m
-CONFIG_EDAC_I7300=m
-CONFIG_EDAC_SBRIDGE=m
-CONFIG_EDAC_SKX=m
-CONFIG_EDAC_I10NM=m
-CONFIG_EDAC_PND2=m
-CONFIG_RTC_LIB=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_HCTOSYS=y
-# CONFIG_RTC_SYSTOHC is not set
-CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
-# CONFIG_RTC_DEBUG is not set
-
-#
-# RTC interfaces
-#
-CONFIG_RTC_INTF_SYSFS=y
-CONFIG_RTC_INTF_PROC=y
-CONFIG_RTC_INTF_DEV=y
-# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
-# CONFIG_RTC_DRV_TEST is not set
-
-#
-# I2C RTC drivers
-#
-CONFIG_RTC_DRV_DS1307=m
-CONFIG_RTC_DRV_DS1374=m
-CONFIG_RTC_DRV_DS1672=m
-CONFIG_RTC_DRV_DS3232=m
-CONFIG_RTC_DRV_MAX6900=m
-CONFIG_RTC_DRV_RS5C372=m
-CONFIG_RTC_DRV_ISL1208=m
-CONFIG_RTC_DRV_ISL12022=m
-CONFIG_RTC_DRV_X1205=m
-CONFIG_RTC_DRV_PCF8523=m
-CONFIG_RTC_DRV_PCF8563=m
-CONFIG_RTC_DRV_PCF8583=m
-CONFIG_RTC_DRV_M41T80=m
-CONFIG_RTC_DRV_M41T80_WDT=y
-CONFIG_RTC_DRV_BQ32K=m
-# CONFIG_RTC_DRV_S35390A is not set
-CONFIG_RTC_DRV_FM3130=m
-CONFIG_RTC_DRV_RX8581=m
-CONFIG_RTC_DRV_RX8025=m
-CONFIG_RTC_DRV_EM3027=m
-CONFIG_RTC_DRV_RV3029C2=m
-
-#
-# SPI RTC drivers
-#
-# CONFIG_RTC_DRV_M41T93 is not set
-# CONFIG_RTC_DRV_M41T94 is not set
-# CONFIG_RTC_DRV_DS1305 is not set
-# CONFIG_RTC_DRV_DS1390 is not set
-# CONFIG_RTC_DRV_MAX6902 is not set
-# CONFIG_RTC_DRV_R9701 is not set
-# CONFIG_RTC_DRV_RS5C348 is not set
-# CONFIG_RTC_DRV_DS3234 is not set
-# CONFIG_RTC_DRV_PCF2123 is not set
-CONFIG_RTC_DRV_RX4581=m
-
-#
-# Platform RTC drivers
-#
-CONFIG_RTC_DRV_CMOS=y
-CONFIG_RTC_DRV_DS1286=m
-CONFIG_RTC_DRV_DS1511=m
-CONFIG_RTC_DRV_DS1553=m
-CONFIG_RTC_DRV_DS1742=m
-CONFIG_RTC_DRV_STK17TA8=m
-# CONFIG_RTC_DRV_M48T86 is not set
-CONFIG_RTC_DRV_M48T35=m
-CONFIG_RTC_DRV_M48T59=m
-CONFIG_RTC_DRV_MSM6242=m
-CONFIG_RTC_DRV_BQ4802=m
-CONFIG_RTC_DRV_RP5C01=m
-CONFIG_RTC_DRV_V3020=m
-CONFIG_RTC_DRV_DS2404=m
-
-#
-# on-CPU RTC drivers
-#
-
-#
-# HID Sensor RTC drivers
-#
-# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
-CONFIG_DMADEVICES=y
-# CONFIG_DMADEVICES_DEBUG is not set
-
-#
-# DMA Devices
-#
-# CONFIG_INTEL_MID_DMAC is not set
-CONFIG_INTEL_IOATDMA=m
-CONFIG_DW_DMAC_CORE=m
-CONFIG_DW_DMAC=m
-# CONFIG_DW_DMAC_PCI is not set
-# CONFIG_DW_DMAC_BIG_ENDIAN_IO is not set
-CONFIG_IDMA64=m
-# CONFIG_TIMB_DMA is not set
-CONFIG_PCH_DMA=m
-CONFIG_DMA_ENGINE=y
-CONFIG_DMA_VIRTUAL_CHANNELS=m
-CONFIG_DMA_ACPI=y
-
-#
-# DMA Clients
-#
-CONFIG_NET_DMA_RH_KABI=y
-CONFIG_ASYNC_TX_DMA=y
-# CONFIG_DMATEST is not set
-
-#
-# DMABUF options
-#
-CONFIG_SYNC_FILE=y
-# CONFIG_SW_SYNC is not set
-CONFIG_DCA=m
-CONFIG_AUXDISPLAY=y
-CONFIG_KS0108=m
-CONFIG_KS0108_PORT=0x378
-CONFIG_KS0108_DELAY=2
-CONFIG_CFAG12864B=m
-CONFIG_CFAG12864B_RATE=20
-CONFIG_UIO=m
-CONFIG_UIO_CIF=m
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_DMEM_GENIRQ is not set
-CONFIG_UIO_AEC=m
-CONFIG_UIO_SERCOS3=m
-CONFIG_UIO_PCI_GENERIC=m
-# CONFIG_UIO_NETX is not set
-CONFIG_UIO_HV_GENERIC=m
-CONFIG_VFIO_IOMMU_TYPE1=m
-CONFIG_VFIO=m
-CONFIG_VFIO_NOIOMMU=y
-CONFIG_VFIO_PCI=m
-# CONFIG_VFIO_PCI_VGA is not set
-CONFIG_VFIO_PCI_MMAP=y
-CONFIG_VFIO_PCI_INTX=y
-# CONFIG_VFIO_PCI_IGD is not set
-CONFIG_VFIO_MDEV=m
-CONFIG_VFIO_MDEV_DEVICE=m
-CONFIG_IRQ_BYPASS_MANAGER=m
-# CONFIG_VIRT_DRIVERS is not set
-CONFIG_VIRTIO=m
-
-#
-# Virtio drivers
-#
-CONFIG_VIRTIO_PCI=m
-CONFIG_VIRTIO_PCI_LEGACY=y
-CONFIG_VIRTIO_BALLOON=m
-CONFIG_VIRTIO_INPUT=m
-# CONFIG_VIRTIO_MMIO is not set
-
-#
-# Microsoft Hyper-V guest support
-#
-CONFIG_HYPERV=m
-CONFIG_HYPERV_TSCPAGE=y
-CONFIG_HYPERV_UTILS=m
-CONFIG_HYPERV_BALLOON=m
-
-#
-# Xen driver support
-#
-CONFIG_XEN_BALLOON=y
-# CONFIG_XEN_BALLOON_MEMORY_HOTPLUG is not set
-CONFIG_XEN_SCRUB_PAGES=y
-CONFIG_XEN_DEV_EVTCHN=m
-CONFIG_XENFS=m
-CONFIG_XEN_COMPAT_XENFS=y
-CONFIG_XEN_SYS_HYPERVISOR=y
-CONFIG_XEN_XENBUS_FRONTEND=y
-# CONFIG_XEN_GNTDEV is not set
-# CONFIG_XEN_GRANT_DEV_ALLOC is not set
-CONFIG_SWIOTLB_XEN=y
-# CONFIG_XEN_TMEM is not set
-CONFIG_XEN_PRIVCMD=m
-CONFIG_XEN_ACPI_PROCESSOR=m
-CONFIG_XEN_HAVE_PVMMU=y
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_SLICOSS is not set
-# CONFIG_W35UND is not set
-# CONFIG_PRISM2_USB is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_ASUS_OLED is not set
-# CONFIG_PANEL is not set
-# CONFIG_R8187SE is not set
-# CONFIG_RTL8192U is not set
-CONFIG_RTLLIB=m
-CONFIG_RTLLIB_CRYPTO_CCMP=m
-CONFIG_RTLLIB_CRYPTO_TKIP=m
-CONFIG_RTLLIB_CRYPTO_WEP=m
-CONFIG_RTL8192E=m
-CONFIG_R8712U=m
-# CONFIG_RTS5139 is not set
-# CONFIG_TRANZPORT is not set
-# CONFIG_IDE_PHISON is not set
-# CONFIG_LINE6_USB is not set
-# CONFIG_USB_SERIAL_QUATECH2 is not set
-# CONFIG_VT6655 is not set
-# CONFIG_VT6656 is not set
-# CONFIG_DX_SEP is not set
-
-#
-# IIO staging drivers
-#
-
-#
-# Accelerometers
-#
-# CONFIG_ADIS16201 is not set
-# CONFIG_ADIS16203 is not set
-# CONFIG_ADIS16204 is not set
-# CONFIG_ADIS16209 is not set
-# CONFIG_ADIS16220 is not set
-# CONFIG_ADIS16240 is not set
-# CONFIG_LIS3L02DQ is not set
-# CONFIG_SCA3000 is not set
-
-#
-# Analog to digital converters
-#
-# CONFIG_AD7291 is not set
-# CONFIG_AD7606 is not set
-# CONFIG_AD799X is not set
-# CONFIG_AD7780 is not set
-# CONFIG_AD7816 is not set
-# CONFIG_AD7192 is not set
-# CONFIG_AD7280 is not set
-
-#
-# Analog digital bi-direction converters
-#
-# CONFIG_ADT7316 is not set
-
-#
-# Capacitance to digital converters
-#
-# CONFIG_AD7150 is not set
-# CONFIG_AD7152 is not set
-# CONFIG_AD7746 is not set
-
-#
-# Direct Digital Synthesis
-#
-# CONFIG_AD5930 is not set
-# CONFIG_AD9832 is not set
-# CONFIG_AD9834 is not set
-# CONFIG_AD9850 is not set
-# CONFIG_AD9852 is not set
-# CONFIG_AD9910 is not set
-# CONFIG_AD9951 is not set
-
-#
-# Digital gyroscope sensors
-#
-# CONFIG_ADIS16060 is not set
-# CONFIG_ADIS16130 is not set
-# CONFIG_ADIS16260 is not set
-
-#
-# Network Analyzer, Impedance Converters
-#
-# CONFIG_AD5933 is not set
-
-#
-# Light sensors
-#
-# CONFIG_SENSORS_ISL29018 is not set
-# CONFIG_SENSORS_ISL29028 is not set
-# CONFIG_TSL2583 is not set
-# CONFIG_TSL2x7x is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_SENSORS_HMC5843 is not set
-
-#
-# Active energy metering IC
-#
-# CONFIG_ADE7753 is not set
-# CONFIG_ADE7754 is not set
-# CONFIG_ADE7758 is not set
-# CONFIG_ADE7759 is not set
-# CONFIG_ADE7854 is not set
-
-#
-# Resolver to digital converters
-#
-# CONFIG_AD2S90 is not set
-# CONFIG_AD2S1200 is not set
-# CONFIG_AD2S1210 is not set
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_PERIODIC_RTC_TRIGGER is not set
-# CONFIG_IIO_GPIO_TRIGGER is not set
-# CONFIG_IIO_SIMPLE_DUMMY is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_CXT1E1 is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_ACPI_QUICKSTART is not set
-# CONFIG_SBE_2T3E3 is not set
-# CONFIG_USB_ENESTORAGE is not set
-# CONFIG_BCM_WIMAX is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-# CONFIG_SPEAKUP is not set
-# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-
-#
-# Android
-#
-# CONFIG_ANDROID is not set
-# CONFIG_USB_WPAN_HCD is not set
-# CONFIG_WIMAX_GDM72XX is not set
-# CONFIG_CSR_WIFI is not set
-# CONFIG_NET_VENDOR_SILICOM is not set
-# CONFIG_CED1401 is not set
-# CONFIG_DGRP is not set
-CONFIG_FIREWIRE_SERIAL=m
-# CONFIG_ZCACHE is not set
-# CONFIG_USB_DWC2 is not set
-# CONFIG_UNISYSSPAR is not set
-CONFIG_X86_PLATFORM_DEVICES=y
-CONFIG_ACER_WMI=m
-CONFIG_ACERHDF=m
-CONFIG_ASUS_LAPTOP=m
-CONFIG_CHROMEOS_LAPTOP=m
-CONFIG_DELL_SMBIOS=m
-CONFIG_DELL_SMBIOS_WMI=y
-CONFIG_DELL_SMBIOS_SMM=y
-CONFIG_DELL_LAPTOP=m
-CONFIG_DELL_WMI=m
-CONFIG_DELL_WMI_DESCRIPTOR=m
-CONFIG_DELL_WMI_AIO=m
-CONFIG_DELL_SMO8800=m
-CONFIG_DELL_RBTN=m
-CONFIG_FUJITSU_LAPTOP=m
-# CONFIG_FUJITSU_LAPTOP_DEBUG is not set
-CONFIG_FUJITSU_TABLET=m
-CONFIG_AMILO_RFKILL=m
-CONFIG_HP_ACCEL=m
-CONFIG_HP_WIRELESS=m
-CONFIG_HP_WMI=m
-CONFIG_MSI_LAPTOP=m
-CONFIG_PANASONIC_LAPTOP=m
-CONFIG_COMPAL_LAPTOP=m
-CONFIG_SONY_LAPTOP=m
-CONFIG_SONYPI_COMPAT=y
-CONFIG_IDEAPAD_LAPTOP=m
-CONFIG_THINKPAD_ACPI=m
-CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y
-# CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set
-# CONFIG_THINKPAD_ACPI_DEBUG is not set
-# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set
-CONFIG_THINKPAD_ACPI_VIDEO=y
-CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y
-CONFIG_SENSORS_HDAPS=m
-# CONFIG_INTEL_MENLOW is not set
-CONFIG_EEEPC_LAPTOP=m
-CONFIG_ASUS_WMI=m
-CONFIG_ASUS_NB_WMI=m
-CONFIG_EEEPC_WMI=m
-CONFIG_ACPI_WMI=m
-CONFIG_INTEL_WMI_THUNDERBOLT=m
-CONFIG_MSI_WMI=m
-CONFIG_TOPSTAR_LAPTOP=m
-CONFIG_ACPI_TOSHIBA=m
-CONFIG_TOSHIBA_BT_RFKILL=m
-CONFIG_ACPI_CMPC=m
-CONFIG_INTEL_HID_EVENT=m
-CONFIG_INTEL_VBTN=m
-CONFIG_INTEL_IPS=m
-CONFIG_INTEL_PMC_CORE=m
-# CONFIG_IBM_RTL is not set
-# CONFIG_XO15_EBOOK is not set
-CONFIG_SAMSUNG_LAPTOP=m
-CONFIG_MXM_WMI=m
-CONFIG_INTEL_OAKTRAIL=m
-CONFIG_SAMSUNG_Q10=m
-CONFIG_APPLE_GMUX=m
-CONFIG_PVPANIC=y
-CONFIG_CLKDEV_LOOKUP=y
-CONFIG_HAVE_CLK_PREPARE=y
-CONFIG_COMMON_CLK=y
-
-#
-# Common Clock Framework
-#
-# CONFIG_COMMON_CLK_DEBUG is not set
-
-#
-# Hardware Spinlock drivers
-#
-CONFIG_CLKEVT_I8253=y
-CONFIG_I8253_LOCK=y
-CONFIG_CLKBLD_I8253=y
-CONFIG_MAILBOX=y
-CONFIG_PCC=y
-CONFIG_IOMMU_API=y
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_IOMMU_DEBUGFS is not set
-CONFIG_IOMMU_IOVA=y
-CONFIG_AMD_IOMMU=y
-CONFIG_AMD_IOMMU_V2=m
-CONFIG_DMAR_TABLE=y
-CONFIG_INTEL_IOMMU=y
-# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
-CONFIG_INTEL_IOMMU_FLOPPY_WA=y
-CONFIG_IRQ_REMAP=y
-CONFIG_HYPERV_IOMMU=y
-
-#
-# Remoteproc drivers
-#
-# CONFIG_STE_MODEM_RPROC is not set
-
-#
-# Rpmsg drivers
-#
-# CONFIG_PM_DEVFREQ is not set
-# CONFIG_EXTCON is not set
-# CONFIG_MEMORY is not set
-CONFIG_IIO=y
-CONFIG_IIO_BUFFER=y
-CONFIG_IIO_BUFFER_CB=y
-CONFIG_IIO_KFIFO_BUF=y
-CONFIG_IIO_TRIGGERED_BUFFER=m
-# CONFIG_IIO_CONFIGFS is not set
-CONFIG_IIO_TRIGGER=y
-CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
-# CONFIG_IIO_SW_DEVICE is not set
-# CONFIG_IIO_SW_TRIGGER is not set
-
-#
-# Accelerometers
-#
-CONFIG_HID_SENSOR_ACCEL_3D=m
-# CONFIG_IIO_ST_ACCEL_3AXIS is not set
-# CONFIG_KXSD9 is not set
-
-#
-# Analog to digital converters
-#
-# CONFIG_AD7266 is not set
-# CONFIG_AD7298 is not set
-# CONFIG_AD7923 is not set
-# CONFIG_AD7791 is not set
-# CONFIG_AD7793 is not set
-# CONFIG_AD7476 is not set
-# CONFIG_AD7887 is not set
-# CONFIG_MAX1363 is not set
-# CONFIG_TI_ADC081C is not set
-# CONFIG_VIPERBOARD_ADC is not set
-
-#
-# Amplifiers
-#
-# CONFIG_AD8366 is not set
-
-#
-# Hid Sensor IIO Common
-#
-CONFIG_HID_SENSOR_IIO_COMMON=m
-CONFIG_HID_SENSOR_IIO_TRIGGER=m
-
-#
-# Digital to analog converters
-#
-# CONFIG_AD5064 is not set
-# CONFIG_AD5360 is not set
-# CONFIG_AD5380 is not set
-# CONFIG_AD5421 is not set
-# CONFIG_AD5624R_SPI is not set
-# CONFIG_AD5446 is not set
-# CONFIG_AD5449 is not set
-# CONFIG_AD5504 is not set
-# CONFIG_AD5755 is not set
-# CONFIG_AD5764 is not set
-# CONFIG_AD5791 is not set
-# CONFIG_AD5686 is not set
-# CONFIG_MAX517 is not set
-# CONFIG_MCP4725 is not set
-
-#
-# Frequency Synthesizers DDS/PLL
-#
-
-#
-# Clock Generator/Distribution
-#
-# CONFIG_AD9523 is not set
-
-#
-# Phase-Locked Loop (PLL) frequency synthesizers
-#
-# CONFIG_ADF4350 is not set
-
-#
-# Digital gyroscope sensors
-#
-# CONFIG_ADIS16080 is not set
-# CONFIG_ADIS16136 is not set
-# CONFIG_ADXRS450 is not set
-CONFIG_HID_SENSOR_GYRO_3D=m
-# CONFIG_IIO_ST_GYRO_3AXIS is not set
-# CONFIG_ITG3200 is not set
-
-#
-# Inertial measurement units
-#
-# CONFIG_ADIS16400 is not set
-# CONFIG_ADIS16480 is not set
-# CONFIG_INV_MPU6050_IIO is not set
-
-#
-# Light sensors
-#
-# CONFIG_ADJD_S311 is not set
-CONFIG_HID_SENSOR_ALS=m
-CONFIG_HID_SENSOR_PROX=m
-# CONFIG_SENSORS_TSL2563 is not set
-# CONFIG_VCNL4000 is not set
-
-#
-# Magnetometer sensors
-#
-# CONFIG_AK8975 is not set
-CONFIG_HID_SENSOR_MAGNETOMETER_3D=m
-# CONFIG_IIO_ST_MAGN_3AXIS is not set
-
-#
-# Inclinometer sensors
-#
-CONFIG_HID_SENSOR_INCLINOMETER_3D=m
-CONFIG_HID_SENSOR_DEVICE_ROTATION=m
-
-#
-# Triggers - standalone
-#
-# CONFIG_IIO_INTERRUPT_TRIGGER is not set
-# CONFIG_IIO_SYSFS_TRIGGER is not set
-
-#
-# Pressure Sensors
-#
-CONFIG_HID_SENSOR_PRESS=m
-# CONFIG_IIO_ST_PRESS is not set
-CONFIG_NTB=m
-CONFIG_NTB_AMD=m
-# CONFIG_NTB_INTEL is not set
-# CONFIG_NTB_PINGPONG is not set
-# CONFIG_NTB_TOOL is not set
-CONFIG_NTB_PERF=m
-CONFIG_NTB_TRANSPORT=m
-# CONFIG_VME_BUS is not set
-CONFIG_PWM=y
-CONFIG_PWM_SYSFS=y
-CONFIG_PWM_LPSS=m
-# CONFIG_IPACK_BUS is not set
-# CONFIG_RESET_CONTROLLER is not set
-CONFIG_RAS=y
-CONFIG_LIBNVDIMM=m
-CONFIG_BLK_DEV_PMEM=m
-CONFIG_ND_BLK=m
-CONFIG_ND_CLAIM=y
-CONFIG_ND_BTT=m
-CONFIG_BTT=y
-CONFIG_ND_PFN=m
-CONFIG_NVDIMM_PFN=y
-CONFIG_NVDIMM_DAX=y
-CONFIG_NVDIMM_KEYS=y
-CONFIG_DAX_DRIVER=y
-CONFIG_DAX=y
-CONFIG_DEV_DAX=m
-CONFIG_DEV_DAX_PMEM=m
-CONFIG_STM=m
-CONFIG_STM_PROTO_BASIC=m
-CONFIG_STM_PROTO_SYS_T=m
-CONFIG_STM_DUMMY=m
-CONFIG_STM_SOURCE_CONSOLE=m
-CONFIG_STM_SOURCE_HEARTBEAT=m
-CONFIG_STM_SOURCE_FTRACE=m
-CONFIG_INTEL_TH=m
-CONFIG_INTEL_TH_PCI=m
-CONFIG_INTEL_TH_ACPI=m
-CONFIG_INTEL_TH_GTH=m
-CONFIG_INTEL_TH_STH=m
-CONFIG_INTEL_TH_MSU=m
-CONFIG_INTEL_TH_PTI=m
-# CONFIG_INTEL_TH_DEBUG is not set
-CONFIG_THUNDERBOLT=y
-CONFIG_NVMEM=y
-
-#
-# Firmware Drivers
-#
-CONFIG_EDD=m
-# CONFIG_EDD_OFF is not set
-CONFIG_FIRMWARE_MEMMAP=y
-CONFIG_DELL_RBU=m
-CONFIG_DCDBAS=m
-CONFIG_DMIID=y
-CONFIG_DMI_SYSFS=y
-CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
-CONFIG_ISCSI_IBFT_FIND=y
-CONFIG_ISCSI_IBFT=m
-CONFIG_FW_CFG_SYSFS=y
-# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
-# CONFIG_GOOGLE_FIRMWARE is not set
-
-#
-# EFI (Extensible Firmware Interface) Support
-#
-CONFIG_EFI_VARS=y
-CONFIG_EFI_ESRT=y
-CONFIG_EFI_VARS_PSTORE=y
-CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
-CONFIG_EFI_RUNTIME_MAP=y
-CONFIG_UEFI_CPER=y
-CONFIG_UEFI_CPER_X86=y
-CONFIG_EFI_RUNTIME_WRAPPERS=y
-# CONFIG_EFI_DEV_PATH_PARSER is not set
-
-#
-# File systems
-#
-CONFIG_DCACHE_WORD_ACCESS=y
-CONFIG_FS_IOMAP=y
-# CONFIG_EXT2_FS is not set
-# CONFIG_EXT3_FS is not set
-CONFIG_EXT4_FS=m
-CONFIG_EXT4_USE_FOR_EXT23=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-# CONFIG_EXT4_DEBUG is not set
-CONFIG_JBD2=m
-# CONFIG_JBD2_DEBUG is not set
-CONFIG_FS_MBCACHE=m
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=m
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-# CONFIG_XFS_RT is not set
-# CONFIG_XFS_WARN is not set
-# CONFIG_XFS_DEBUG is not set
-CONFIG_GFS2_FS=m
-CONFIG_GFS2_FS_LOCKING_DLM=y
-# CONFIG_OCFS2_FS is not set
-CONFIG_BTRFS_FS=m
-CONFIG_BTRFS_FS_POSIX_ACL=y
-# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
-# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
-# CONFIG_BTRFS_DEBUG is not set
-# CONFIG_BTRFS_ASSERT is not set
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_DAX=y
-CONFIG_FS_DAX_PMD=y
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_MANDATORY_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-CONFIG_FANOTIFY=y
-CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-# CONFIG_QUOTA_DEBUG is not set
-CONFIG_QUOTA_TREE=y
-# CONFIG_QFMT_V1 is not set
-CONFIG_QFMT_V2=y
-CONFIG_QUOTACTL=y
-CONFIG_QUOTACTL_COMPAT=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_OVERLAY_FS=m
-# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
-# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
-# CONFIG_OVERLAY_FS_INDEX is not set
-# CONFIG_OVERLAY_FS_XINO_AUTO is not set
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-CONFIG_FSCACHE=m
-CONFIG_FSCACHE_STATS=y
-# CONFIG_FSCACHE_HISTOGRAM is not set
-# CONFIG_FSCACHE_DEBUG is not set
-# CONFIG_FSCACHE_OBJECT_LIST is not set
-CONFIG_CACHEFILES=m
-# CONFIG_CACHEFILES_DEBUG is not set
-# CONFIG_CACHEFILES_HISTOGRAM is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_VMCORE=y
-CONFIG_PROC_VMCORE_DEVICE_DUMP=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_KERNFS=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-CONFIG_HUGETLBFS=y
-CONFIG_HUGETLB_PAGE=y
-CONFIG_CONFIGFS_FS=y
-CONFIG_MISC_FILESYSTEMS=y
-# CONFIG_ADFS_FS is not set
-# CONFIG_AFFS_FS is not set
-# CONFIG_ECRYPT_FS is not set
-# CONFIG_HFS_FS is not set
-# CONFIG_HFSPLUS_FS is not set
-# CONFIG_BEFS_FS is not set
-# CONFIG_BFS_FS is not set
-# CONFIG_EFS_FS is not set
-# CONFIG_JFFS2_FS is not set
-# CONFIG_UBIFS_FS is not set
-# CONFIG_LOGFS is not set
-CONFIG_CRAMFS=m
-CONFIG_SQUASHFS=m
-CONFIG_SQUASHFS_XATTR=y
-CONFIG_SQUASHFS_ZLIB=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_SQUASHFS_XZ=y
-# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
-# CONFIG_SQUASHFS_EMBEDDED is not set
-CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
-# CONFIG_VXFS_FS is not set
-# CONFIG_MINIX_FS is not set
-# CONFIG_OMFS_FS is not set
-# CONFIG_HPFS_FS is not set
-# CONFIG_QNX4FS_FS is not set
-# CONFIG_QNX6FS_FS is not set
-# CONFIG_ROMFS_FS is not set
-CONFIG_PSTORE=y
-# CONFIG_PSTORE_CONSOLE is not set
-# CONFIG_PSTORE_FTRACE is not set
-CONFIG_PSTORE_RAM=m
-# CONFIG_SYSV_FS is not set
-# CONFIG_UFS_FS is not set
-# CONFIG_EXOFS_FS is not set
-# CONFIG_F2FS_FS is not set
-CONFIG_EFIVAR_FS=y
-CONFIG_ORE=m
-CONFIG_NETWORK_FILESYSTEMS=y
-CONFIG_NFS_FS=m
-# CONFIG_NFS_V2 is not set
-CONFIG_NFS_V3=m
-CONFIG_NFS_V3_ACL=y
-CONFIG_NFS_V4=m
-# CONFIG_NFS_SWAP is not set
-CONFIG_NFS_V4_1=y
-CONFIG_NFS_V4_2=y
-CONFIG_PNFS_FILE_LAYOUT=m
-CONFIG_PNFS_BLOCK=m
-CONFIG_PNFS_OBJLAYOUT=m
-CONFIG_PNFS_FLEXFILE_LAYOUT=m
-CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
-# CONFIG_NFS_V4_1_MIGRATION is not set
-CONFIG_NFS_V4_SECURITY_LABEL=y
-CONFIG_NFS_FSCACHE=y
-# CONFIG_NFS_USE_LEGACY_DNS is not set
-CONFIG_NFS_USE_KERNEL_DNS=y
-CONFIG_NFS_DEBUG=y
+CONFIG_NFP=m
+CONFIG_NFP_APP_ABM_NIC=y
+CONFIG_NFP_APP_FLOWER=y
 CONFIG_NFSD=m
-CONFIG_NFSD_V2_ACL=y
+CONFIG_NFSD_PNFS=y
+CONFIG_NFSD_SCSILAYOUT=y
 CONFIG_NFSD_V3=y
 CONFIG_NFSD_V3_ACL=y
 CONFIG_NFSD_V4=y
-CONFIG_NFSD_PNFS=y
-# CONFIG_NFSD_BLOCKLAYOUT is not set
-CONFIG_NFSD_SCSILAYOUT=y
 CONFIG_NFSD_V4_SECURITY_LABEL=y
-# CONFIG_NFSD_FAULT_INJECTION is not set
-CONFIG_GRACE_PERIOD=m
-CONFIG_LOCKD=m
-CONFIG_LOCKD_V4=y
-CONFIG_NFS_ACL_SUPPORT=m
-CONFIG_NFS_COMMON=y
-CONFIG_SUNRPC=m
-CONFIG_SUNRPC_GSS=m
-CONFIG_SUNRPC_BACKCHANNEL=y
-CONFIG_RPCSEC_GSS_KRB5=m
-CONFIG_SUNRPC_DEBUG=y
-CONFIG_SUNRPC_XPRT_RDMA=m
-CONFIG_CEPH_FS=m
-CONFIG_CEPH_FS_POSIX_ACL=y
-CONFIG_CIFS=m
-CONFIG_CIFS_STATS=y
-# CONFIG_CIFS_STATS2 is not set
-CONFIG_CIFS_WEAK_PW_HASH=y
-CONFIG_CIFS_UPCALL=y
-CONFIG_CIFS_XATTR=y
-CONFIG_CIFS_POSIX=y
-CONFIG_CIFS_ACL=y
-CONFIG_CIFS_DEBUG=y
-# CONFIG_CIFS_DEBUG2 is not set
-# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
-CONFIG_CIFS_DFS_UPCALL=y
-# CONFIG_CIFS_SMB311 is not set
-# CONFIG_CIFS_FSCACHE is not set
-# CONFIG_NCP_FS is not set
-# CONFIG_CODA_FS is not set
-# CONFIG_AFS_FS is not set
+CONFIG_NFS_FS=m
+CONFIG_NFS_FSCACHE=y
+CONFIG_NFS_V3=m
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=m
+CONFIG_NFS_V4_1=y
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_NFS_V4_2=y
+CONFIG_NFT_BRIDGE_REJECT=m
+CONFIG_NFT_CHAIN_NAT_IPV4=m
+CONFIG_NFT_CHAIN_NAT_IPV6=m
+CONFIG_NFT_CHAIN_ROUTE_IPV4=m
+CONFIG_NFT_CHAIN_ROUTE_IPV6=m
+CONFIG_NFT_COMPAT=m
+CONFIG_NFT_CONNLIMIT=m
+CONFIG_NFT_COUNTER=m
+CONFIG_NFT_CT=m
+CONFIG_NFT_DUP_IPV4=m
+CONFIG_NFT_DUP_IPV6=m
+CONFIG_NFT_DUP_NETDEV=m
+CONFIG_NFT_FIB_INET=m
+CONFIG_NFT_FIB_IPV4=m
+CONFIG_NFT_FIB_IPV6=m
+CONFIG_NFT_FIB_NETDEV=m
+CONFIG_NFT_FLOW_OFFLOAD=m
+CONFIG_NFT_FWD_NETDEV=m
+CONFIG_NFT_HASH=m
+CONFIG_NFT_LIMIT=m
+CONFIG_NFT_LOG=m
+CONFIG_NFT_MASQ=m
+CONFIG_NFT_MASQ_IPV4=m
+CONFIG_NFT_MASQ_IPV6=m
+CONFIG_NFT_NAT=m
+CONFIG_NFT_NUMGEN=m
+CONFIG_NFT_OBJREF=m
+CONFIG_NFT_QUEUE=m
+CONFIG_NFT_QUOTA=m
+CONFIG_NFT_REDIR=m
+CONFIG_NFT_REDIR_IPV4=m
+CONFIG_NFT_REDIR_IPV6=m
+CONFIG_NFT_REJECT=m
+CONFIG_NFT_REJECT_INET=m
+CONFIG_NFT_REJECT_IPV4=m
+CONFIG_NFT_REJECT_IPV6=m
+CONFIG_NFT_SOCKET=m
+CONFIG_NFT_TPROXY=m
+CONFIG_NFT_XFRM=m
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_FTP=m
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IPV4=m
+CONFIG_NF_CONNTRACK_IPV6=m
+CONFIG_NF_CONNTRACK_IRC=m
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SECMARK=y
+CONFIG_NF_CONNTRACK_SIP=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+CONFIG_NF_CONNTRACK_TIMESTAMP=y
+CONFIG_NF_CONNTRACK_ZONES=y
+CONFIG_NF_CT_NETLINK=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_PROTO_DCCP=y
+CONFIG_NF_CT_PROTO_SCTP=y
+CONFIG_NF_CT_PROTO_UDPLITE=y
+CONFIG_NF_DUP_NETDEV=m
+CONFIG_NF_FLOW_TABLE=m
+CONFIG_NF_FLOW_TABLE_INET=m
+CONFIG_NF_FLOW_TABLE_IPV4=m
+CONFIG_NF_FLOW_TABLE_IPV6=m
+CONFIG_NF_LOG_ARP=m
+CONFIG_NF_LOG_BRIDGE=m
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_LOG_IPV6=m
+CONFIG_NF_LOG_NETDEV=m
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_IPV6=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_REJECT_IPV6=m
+CONFIG_NF_SOCKET_IPV4=m
+CONFIG_NF_SOCKET_IPV6=m
+CONFIG_NF_TABLES=m
+CONFIG_NF_TABLES_ARP=y
+CONFIG_NF_TABLES_BRIDGE=y
+CONFIG_NF_TABLES_INET=y
+CONFIG_NF_TABLES_IPV4=y
+CONFIG_NF_TABLES_IPV6=y
+CONFIG_NF_TABLES_NETDEV=y
+CONFIG_NF_TABLES_SET=m
+CONFIG_NF_TPROXY_IPV4=m
+CONFIG_NF_TPROXY_IPV6=m
+CONFIG_NITRO_ENCLAVES=m
+CONFIG_NLMON=m
 CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
 CONFIG_NLS_CODEPAGE_437=y
 CONFIG_NLS_CODEPAGE_737=m
 CONFIG_NLS_CODEPAGE_775=m
@@ -5951,15 +4397,15 @@
 CONFIG_NLS_CODEPAGE_865=m
 CONFIG_NLS_CODEPAGE_866=m
 CONFIG_NLS_CODEPAGE_869=m
-CONFIG_NLS_CODEPAGE_936=m
-CONFIG_NLS_CODEPAGE_950=m
-CONFIG_NLS_CODEPAGE_932=m
-CONFIG_NLS_CODEPAGE_949=m
 CONFIG_NLS_CODEPAGE_874=m
-CONFIG_NLS_ISO8859_8=m
-CONFIG_NLS_CODEPAGE_1250=m
-CONFIG_NLS_CODEPAGE_1251=m
-CONFIG_NLS_ASCII=y
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=m
 CONFIG_NLS_ISO8859_1=m
 CONFIG_NLS_ISO8859_2=m
 CONFIG_NLS_ISO8859_3=m
@@ -5967,13 +4413,10 @@
 CONFIG_NLS_ISO8859_5=m
 CONFIG_NLS_ISO8859_6=m
 CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_8=m
 CONFIG_NLS_ISO8859_9=m
-CONFIG_NLS_ISO8859_13=m
-CONFIG_NLS_ISO8859_14=m
-CONFIG_NLS_ISO8859_15=m
 CONFIG_NLS_KOI8_R=m
 CONFIG_NLS_KOI8_U=m
-CONFIG_NLS_MAC_ROMAN=m
 CONFIG_NLS_MAC_CELTIC=m
 CONFIG_NLS_MAC_CENTEURO=m
 CONFIG_NLS_MAC_CROATIAN=m
@@ -5982,550 +4425,1429 @@
 CONFIG_NLS_MAC_GREEK=m
 CONFIG_NLS_MAC_ICELAND=m
 CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMAN=m
 CONFIG_NLS_MAC_ROMANIAN=m
 CONFIG_NLS_MAC_TURKISH=m
 CONFIG_NLS_UTF8=m
-CONFIG_DLM=m
-CONFIG_DLM_DEBUG=y
-
-#
-# Kernel hacking
-#
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-# CONFIG_ENABLE_WARN_DEPRECATED is not set
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=2048
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_STRIP_ASM_SYMS=y
-# CONFIG_READABLE_ASM is not set
-# CONFIG_UNUSED_SYMBOLS is not set
-CONFIG_PAGE_OWNER=y
-CONFIG_DEBUG_FS=y
-CONFIG_HEADERS_CHECK=y
-CONFIG_STACK_VALIDATION=y
-CONFIG_DEBUG_SECTION_MISMATCH=y
-CONFIG_DEBUG_KERNEL=y
-CONFIG_DEBUG_SHIRQ=y
-CONFIG_LOCKUP_DETECTOR=y
-CONFIG_HARDLOCKUP_DETECTOR=y
-CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
-CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
-CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=1
-# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
-CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
-# CONFIG_WQ_WATCHDOG is not set
-CONFIG_PANIC_ON_OOPS=y
-CONFIG_PANIC_ON_OOPS_VALUE=1
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_PANIC_TIMEOUT=0
-CONFIG_SCHED_DEBUG=y
-CONFIG_SCHED_INFO=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-# CONFIG_DEBUG_OBJECTS is not set
-# CONFIG_SLUB_DEBUG_ON is not set
-# CONFIG_SLUB_STATS is not set
-CONFIG_HAVE_DEBUG_KMEMLEAK=y
-# CONFIG_DEBUG_KMEMLEAK is not set
-CONFIG_LOCK_DEBUGGING_SUPPORT=y
-# CONFIG_PROVE_LOCKING is not set
-# CONFIG_LOCK_STAT is not set
-# CONFIG_DEBUG_RT_MUTEXES is not set
-# CONFIG_RT_MUTEX_TESTER is not set
-# CONFIG_DEBUG_SPINLOCK is not set
-# CONFIG_DEBUG_MUTEXES is not set
-# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
-# CONFIG_DEBUG_RWSEMS is not set
-# CONFIG_DEBUG_LOCK_ALLOC is not set
-# CONFIG_DEBUG_ATOMIC_SLEEP is not set
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-# CONFIG_DEBUG_STACK_USAGE is not set
-# CONFIG_DEBUG_KOBJECT is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-CONFIG_DEBUG_INFO=y
-# CONFIG_DEBUG_INFO_REDUCED is not set
-# CONFIG_DEBUG_VM is not set
-# CONFIG_DEBUG_VIRTUAL is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-CONFIG_DEBUG_LIST=y
-# CONFIG_TEST_LIST_SORT is not set
-# CONFIG_DEBUG_SG is not set
-# CONFIG_DEBUG_NOTIFIERS is not set
-# CONFIG_DEBUG_CREDENTIALS is not set
-CONFIG_ARCH_WANT_FRAME_POINTERS=y
-CONFIG_FRAME_POINTER=y
-CONFIG_BOOT_PRINTK_DELAY=y
-
-#
-# RCU Debugging
-#
-CONFIG_SPARSE_RCU_POINTER=y
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-# CONFIG_RCU_CPU_STALL_INFO is not set
-# CONFIG_RCU_TRACE is not set
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-# CONFIG_DEBUG_PER_CPU_MAPS is not set
-# CONFIG_LKDTM is not set
-# CONFIG_NOTIFIER_ERROR_INJECTION is not set
-# CONFIG_FAULT_INJECTION is not set
-# CONFIG_LATENCYTOP is not set
-CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
-# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
-CONFIG_PAGE_EXTENSION=y
-# CONFIG_DEBUG_PAGEALLOC is not set
-CONFIG_USER_STACKTRACE_SUPPORT=y
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_HAVE_FENTRY=y
-CONFIG_HAVE_C_RECORDMCOUNT=y
-CONFIG_TRACER_MAX_TRACE=y
-CONFIG_TRACE_CLOCK=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_RING_BUFFER_ALLOW_SWAP=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-CONFIG_FUNCTION_TRACER=y
-CONFIG_FUNCTION_GRAPH_TRACER=y
-# CONFIG_IRQSOFF_TRACER is not set
-CONFIG_SCHED_TRACER=y
-CONFIG_HWLAT_TRACER=y
-CONFIG_FTRACE_SYSCALLS=y
-CONFIG_TRACER_SNAPSHOT=y
-# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-CONFIG_STACK_TRACER=y
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-CONFIG_UPROBE_EVENT=y
-CONFIG_BPF_EVENTS=y
-CONFIG_PROBE_EVENTS=y
-CONFIG_DYNAMIC_FTRACE=y
-CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
-CONFIG_FUNCTION_PROFILER=y
-CONFIG_BPF_KPROBE_OVERRIDE=y
-CONFIG_FTRACE_MCOUNT_RECORD=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-# CONFIG_MMIOTRACE is not set
-CONFIG_RING_BUFFER_BENCHMARK=m
-# CONFIG_RING_BUFFER_STARTUP_TEST is not set
-# CONFIG_RBTREE_TEST is not set
-# CONFIG_INTERVAL_TREE_TEST is not set
-# CONFIG_TEST_RHASHTABLE is not set
-# CONFIG_TEST_PARMAN is not set
-CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
-# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set
-# CONFIG_BUILD_DOCSRC is not set
-CONFIG_DYNAMIC_DEBUG=y
-# CONFIG_DMA_API_DEBUG is not set
-CONFIG_ATOMIC64_SELFTEST=y
-# CONFIG_TEST_LIVEPATCH is not set
-CONFIG_ASYNC_RAID6_TEST=m
-# CONFIG_SAMPLES is not set
-CONFIG_HAVE_ARCH_KGDB=y
-CONFIG_KGDB=y
-CONFIG_KGDB_SERIAL_CONSOLE=y
-CONFIG_KGDB_TESTS=y
-# CONFIG_KGDB_TESTS_ON_BOOT is not set
-CONFIG_KGDB_LOW_LEVEL_TRAP=y
-CONFIG_KGDB_KDB=y
-CONFIG_KDB_KEYBOARD=y
-CONFIG_KDB_CONTINUE_CATASTROPHIC=0
-CONFIG_HAVE_ARCH_KMEMCHECK=y
-# CONFIG_TEST_STRING_HELPERS is not set
-CONFIG_TEST_KSTRTOX=y
-CONFIG_EARLY_PRINTK_USB=y
-CONFIG_STRICT_DEVMEM=y
-# CONFIG_X86_VERBOSE_BOOTUP is not set
-CONFIG_EARLY_PRINTK=y
-CONFIG_EARLY_PRINTK_DBGP=y
-CONFIG_DEBUG_STACKOVERFLOW=y
-CONFIG_EARLY_PRINTK_EFI=y
-# CONFIG_EARLY_PRINTK_USB_XDBC is not set
-# CONFIG_MCSAFE_TEST is not set
-# CONFIG_X86_PTDUMP is not set
-CONFIG_DEBUG_RODATA=y
-CONFIG_DEBUG_RODATA_TEST=y
-CONFIG_DEBUG_SET_MODULE_RONX=y
-# CONFIG_DEBUG_TLBFLUSH is not set
-# CONFIG_IOMMU_DEBUG is not set
-# CONFIG_IOMMU_STRESS is not set
-CONFIG_HAVE_MMIOTRACE_SUPPORT=y
-CONFIG_X86_DECODER_SELFTEST=y
-CONFIG_IO_DELAY_TYPE_0X80=0
-CONFIG_IO_DELAY_TYPE_0XED=1
-CONFIG_IO_DELAY_TYPE_UDELAY=2
-CONFIG_IO_DELAY_TYPE_NONE=3
-CONFIG_IO_DELAY_0X80=y
-# CONFIG_IO_DELAY_0XED is not set
-# CONFIG_IO_DELAY_UDELAY is not set
-# CONFIG_IO_DELAY_NONE is not set
-CONFIG_DEFAULT_IO_DELAY_TYPE=0
-CONFIG_DEBUG_BOOT_PARAMS=y
-# CONFIG_CPA_DEBUG is not set
+CONFIG_NODES_SHIFT=10
+CONFIG_NOUVEAU_DEBUG=5
+CONFIG_NOUVEAU_DEBUG_DEFAULT=3
+CONFIG_NOZOMI=m
+CONFIG_NO_HZ=y
+CONFIG_NO_HZ_FULL=y
+CONFIG_NR_CPUS=8192
+CONFIG_NTB=m
+CONFIG_NTB_AMD=m
+CONFIG_NTB_INTEL=m
+CONFIG_NTB_MSI=y
+CONFIG_NTB_NETDEV=m
+CONFIG_NTB_PERF=m
+CONFIG_NTB_PINGPONG=m
+CONFIG_NTB_TOOL=m
+CONFIG_NTB_TRANSPORT=m
+CONFIG_NUMA=y
+CONFIG_NUMA_BALANCING=y
+CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
+CONFIG_NUMA_EMU=y
+CONFIG_NVDIMM_DAX=y
+CONFIG_NVDIMM_PFN=y
+CONFIG_NVMEM=y
+CONFIG_NVME_FC=m
+CONFIG_NVME_MULTIPATH=y
+CONFIG_NVME_RDMA=m
+CONFIG_NVME_TARGET=m
+CONFIG_NVME_TARGET_FC=m
+CONFIG_NVME_TARGET_FCLOOP=m
+CONFIG_NVME_TARGET_LOOP=m
+CONFIG_NVME_TARGET_RDMA=m
+CONFIG_NVME_TARGET_TCP=m
+CONFIG_NVME_TCP=m
+CONFIG_NVME_VERBOSE_ERRORS=y
+CONFIG_NVRAM=y
+CONFIG_NVSW_SN2201=m
+CONFIG_NV_TCO=m
+CONFIG_N_GSM=m
+CONFIG_N_HDLC=m
+CONFIG_OCXL=m
+CONFIG_OF_PMEM=m
+CONFIG_OPENVSWITCH=m
+CONFIG_OPENVSWITCH_GENEVE=m
+CONFIG_OPENVSWITCH_GRE=m
+CONFIG_OPENVSWITCH_VXLAN=m
+CONFIG_OPROFILE=m
+CONFIG_OPROFILE_EVENT_MULTIPLEX=y
 CONFIG_OPTIMIZE_INLINING=y
-# CONFIG_DEBUG_NMI_SELFTEST is not set
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-CONFIG_KEYS_COMPAT=y
+CONFIG_OSF_PARTITION=y
+CONFIG_OSNOISE_TRACER=y
+CONFIG_OVERLAY_FS=m
+CONFIG_PACKET=y
+CONFIG_PACKET_DIAG=m
+CONFIG_PAGE_EXTENSION=y
+CONFIG_PAGE_OWNER=y
+CONFIG_PAGE_POISONING=y
+CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_PANASONIC_LAPTOP=m
+CONFIG_PANIC_ON_OOPS=y
+CONFIG_PANIC_TIMEOUT=0
+CONFIG_PARAVIRT=y
+CONFIG_PARAVIRT_SPINLOCKS=y
+CONFIG_PARAVIRT_TIME_ACCOUNTING=y
+CONFIG_PARPORT=m
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_PC=m
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_PCCARD=y
+CONFIG_PCI=y
+CONFIG_PCIEAER=y
+CONFIG_PCIEAER_INJECT=m
+CONFIG_PCIEASPM=y
+CONFIG_PCIEASPM_DEFAULT=y
+CONFIG_PCIEPORTBUS=y
+CONFIG_PCIE_DPC=y
+CONFIG_PCIE_ECRC=y
+CONFIG_PCIE_EDR=y
+CONFIG_PCIPCWATCHDOG=m
+CONFIG_PCI_HYPERV=m
+CONFIG_PCI_IOV=y
+CONFIG_PCI_MMCONFIG=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_PASID=y
+CONFIG_PCI_PF_STUB=m
+CONFIG_PCI_PRI=y
+CONFIG_PCI_STUB=y
+CONFIG_PERF_EVENTS=y
+CONFIG_PERF_EVENTS_AMD_BRS=y
+CONFIG_PERF_EVENTS_AMD_POWER=m
+CONFIG_PERF_EVENTS_INTEL_CSTATE=m
+CONFIG_PERF_EVENTS_INTEL_RAPL=m
+CONFIG_PERF_EVENTS_INTEL_UNCORE=m
 CONFIG_PERSISTENT_KEYRINGS=y
-CONFIG_BIG_KEYS=y
-CONFIG_TRUSTED_KEYS=y
-CONFIG_ENCRYPTED_KEYS=y
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
+CONFIG_PHYLIB=y
+CONFIG_PHYLINK=m
+CONFIG_PHYSICAL_ALIGN=0x200000
+CONFIG_PHYSICAL_START=0x1000000
+CONFIG_PID_NS=y
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_ALDERLAKE=m
+CONFIG_PINCTRL_AMD=y
+CONFIG_PINCTRL_BAYTRAIL=y
+CONFIG_PINCTRL_BROXTON=m
+CONFIG_PINCTRL_CANNONLAKE=m
+CONFIG_PINCTRL_CEDARFORK=m
+CONFIG_PINCTRL_DENVERTON=m
+CONFIG_PINCTRL_ELKHARTLAKE=m
+CONFIG_PINCTRL_EMMITSBURG=m
+CONFIG_PINCTRL_GEMINILAKE=m
+CONFIG_PINCTRL_ICELAKE=m
+CONFIG_PINCTRL_LEWISBURG=m
+CONFIG_PINCTRL_METEORLAKE=m
+CONFIG_PINCTRL_SUNRISEPOINT=m
+CONFIG_PINCTRL_TIGERLAKE=m
+CONFIG_PM=y
+CONFIG_PMBUS=m
+CONFIG_PMIC_OPREGION=y
+CONFIG_PM_DEBUG=y
+CONFIG_PM_STD_PARTITION=""
+CONFIG_PNFS_BLOCK=m
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_PNP=y
+CONFIG_PNPACPI=y
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POWERCAP=y
+CONFIG_POWERNV_CPUFREQ=y
+CONFIG_POWERNV_OP_PANEL=m
+CONFIG_POWER_RESET=y
+CONFIG_POWER_SUPPLY=y
+CONFIG_PPDEV=m
+CONFIG_PPP=m
+CONFIG_PPPOATM=m
+CONFIG_PPPOE=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_PPS=y
+CONFIG_PPS_CLIENT_GPIO=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPTP=m
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PREEMPT_VOLUNTARY=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_PRINTER=m
+CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
+CONFIG_PRINTK_TIME=y
+CONFIG_PRINT_QUOTA_WARNING=y
+CONFIG_PROC_CHILDREN=y
+CONFIG_PROC_EVENTS=y
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_VMCORE_DEVICE_DUMP=y
+CONFIG_PROFILING=y
+CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
+CONFIG_PSAMPLE=m
+CONFIG_PSI=y
+CONFIG_PSI_DEFAULT_DISABLED=y
+CONFIG_PSTORE=y
+CONFIG_PSTORE_DEFLATE_COMPRESS=y
+CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
+CONFIG_PSTORE_RAM=m
+CONFIG_PTP_1588_CLOCK=y
+CONFIG_PTP_1588_CLOCK_KVM=m
+CONFIG_PTP_1588_CLOCK_VMW=m
+CONFIG_PVPANIC=y
+CONFIG_PWM=y
+CONFIG_PWM_DWC=m
+CONFIG_PWM_LPSS_PCI=m
+CONFIG_PWM_LPSS_PLATFORM=m
+CONFIG_QED=m
+CONFIG_QEDE=m
+CONFIG_QEDF=m
+CONFIG_QEDI=m
+CONFIG_QED_FCOE=y
+CONFIG_QED_ISCSI=y
+CONFIG_QED_LL2=y
+CONFIG_QED_SRIOV=y
+CONFIG_QFMT_V2=y
+CONFIG_QLA3XXX=m
+CONFIG_QRTR=m
+CONFIG_QSEMI_PHY=m
+CONFIG_QUOTA=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+CONFIG_R8169=m
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_TEA575X=m
+CONFIG_RAID_ATTRS=m
+CONFIG_RANDOMIZE_BASE=y
+CONFIG_RANDOMIZE_MEMORY=y
+CONFIG_RANDOM_TRUST_CPU=y
+CONFIG_RAS=y
+CONFIG_RAW_DRIVER=y
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+CONFIG_RCU_NOCB_CPU=y
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_RC_CORE=m
+CONFIG_RC_DECODERS=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_MAP=m
+CONFIG_RDMA_RXE=m
+CONFIG_RDMA_SIW=m
+CONFIG_RD_BZIP2=y
+CONFIG_RD_GZIP=y
+CONFIG_RD_LZ4=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_LZO=y
+CONFIG_RD_XZ=y
+CONFIG_REALTEK_AUTOPM=y
+CONFIG_REALTEK_PHY=m
+CONFIG_RELAY=y
+CONFIG_RELOCATABLE=y
+CONFIG_RENESAS_PHY=m
+CONFIG_RESET_CONTROLLER=y
+CONFIG_RETHUNK=y
+CONFIG_RETPOLINE=y
+CONFIG_RFKILL=m
+CONFIG_RFKILL_INPUT=y
+CONFIG_RHEL_DIFFERENCES=y
+CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
+CONFIG_RING_BUFFER_BENCHMARK=m
+CONFIG_RMI4_2D_SENSOR=y
+CONFIG_RMI4_CORE=m
+CONFIG_RMI4_F03=y
+CONFIG_RMI4_F03_SERIO=m
+CONFIG_RMI4_F11=y
+CONFIG_RMI4_F12=y
+CONFIG_RMI4_F30=y
+CONFIG_RMI4_F34=y
+CONFIG_RMI4_F3A=y
+CONFIG_RMI4_F55=y
+CONFIG_RMI4_I2C=m
+CONFIG_RMI4_SMB=m
+CONFIG_RMI4_SPI=m
+CONFIG_ROCKCHIP_PHY=m
+CONFIG_ROCKER=m
+CONFIG_RPCSEC_GSS_KRB5=m
+CONFIG_RT2800PCI=m
+CONFIG_RT2800PCI_RT3290=y
+CONFIG_RT2800PCI_RT33XX=y
+CONFIG_RT2800PCI_RT35XX=y
+CONFIG_RT2800PCI_RT53XX=y
+CONFIG_RT2800USB=m
+CONFIG_RT2800USB_RT33XX=y
+CONFIG_RT2800USB_RT3573=y
+CONFIG_RT2800USB_RT35XX=y
+CONFIG_RT2800USB_RT53XX=y
+CONFIG_RT2800USB_RT55XX=y
+CONFIG_RT2800USB_UNKNOWN=y
+CONFIG_RT2X00=m
+CONFIG_RT2X00_LIB_DEBUGFS=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DS2404=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_DS3232_HWMON=y
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_M41T80=m
+CONFIG_RTC_DRV_M41T80_WDT=y
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_PCF8523=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_RV3029C2=m
+CONFIG_RTC_DRV_RX4581=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+CONFIG_RTC_INTF_DEV=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTC_NVMEM=y
+CONFIG_RTC_SYSTOHC=y
+CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
+CONFIG_RTL8188EE=m
+CONFIG_RTL8192CE=m
+CONFIG_RTL8192CU=m
+CONFIG_RTL8192DE=m
+CONFIG_RTL8192EE=m
+CONFIG_RTL8192SE=m
+CONFIG_RTL8723AE=m
+CONFIG_RTL8723BE=m
+CONFIG_RTL8821AE=m
+CONFIG_RTL8XXXU=m
+CONFIG_RTLWIFI=m
+CONFIG_RTL_CARDS=m
+CONFIG_RTW88=m
+CONFIG_RTW88_8822BE=m
+CONFIG_RTW88_8822CE=m
+CONFIG_RTW89=m
+CONFIG_RTW89_8852AE=m
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_RUNTIME_TESTING_MENU=y
+CONFIG_SAMPLES=y
+CONFIG_SAMPLE_VFIO_MDEV_MTTY=m
+CONFIG_SAMSUNG_LAPTOP=m
+CONFIG_SAMSUNG_Q10=m
+CONFIG_SATA_AHCI=m
+CONFIG_SATA_AHCI_PLATFORM=m
+CONFIG_SATA_MOBILE_LPM_POLICY=0
+CONFIG_SATA_PMP=y
+CONFIG_SBC_FITPC2_WATCHDOG=m
+CONFIG_SCF_TORTURE_TEST=m
+CONFIG_SCHEDSTATS=y
+CONFIG_SCHED_AUTOGROUP=y
+CONFIG_SCHED_CLUSTER=y
+CONFIG_SCHED_DEBUG=y
+CONFIG_SCHED_MC=y
+CONFIG_SCHED_MC_PRIO=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_TRACER=y
+CONFIG_SCSI=y
+CONFIG_SCSI_AACRAID=m
+CONFIG_SCSI_BNX2X_FCOE=m
+CONFIG_SCSI_BNX2_ISCSI=m
+CONFIG_SCSI_CHELSIO_FCOE=m
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_CXGB4_ISCSI=m
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_DH=y
+CONFIG_SCSI_DH_ALUA=y
+CONFIG_SCSI_DH_EMC=y
+CONFIG_SCSI_DH_HP_SW=y
+CONFIG_SCSI_DH_RDAC=y
+CONFIG_SCSI_ENCLOSURE=m
+CONFIG_SCSI_FC_ATTRS=m
+CONFIG_SCSI_HPSA=m
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_LOGGING=y
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_SCSI_LPFC=m
+CONFIG_SCSI_MPI3MR=m
+CONFIG_SCSI_MPT2SAS=m
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT3SAS=m
+CONFIG_SCSI_MPT3SAS_MAX_SGE=128
+CONFIG_SCSI_MQ_DEFAULT=y
+CONFIG_SCSI_PROC_FS=y
+CONFIG_SCSI_QLA_FC=m
+CONFIG_SCSI_QLA_ISCSI=m
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SMARTPQI=m
+CONFIG_SCSI_SPI_ATTRS=m
+CONFIG_SCSI_SRP_ATTRS=m
+CONFIG_SCSI_VIRTIO=m
+CONFIG_SCTP_COOKIE_HMAC_MD5=y
+CONFIG_SCTP_COOKIE_HMAC_SHA1=y
+CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
+CONFIG_SDIO_UART=m
+CONFIG_SECCOMP=y
+CONFIG_SECTION_MISMATCH_WARN_ONLY=y
 CONFIG_SECURITY=y
 CONFIG_SECURITYFS=y
-CONFIG_SECURITY_NETWORK=y
 CONFIG_SECURITY_INFINIBAND=y
-CONFIG_PAGE_TABLE_ISOLATION=y
+CONFIG_SECURITY_NETWORK=y
 CONFIG_SECURITY_NETWORK_XFRM=y
 CONFIG_SECURITY_PATH=y
-CONFIG_SECURITY_SECURELEVEL=y
-CONFIG_INTEL_TXT=y
-CONFIG_LSM_MMAP_MIN_ADDR=65535
-CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
-CONFIG_HARDENED_USERCOPY=y
-# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
 CONFIG_SECURITY_SELINUX=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM=y
-CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
-CONFIG_SECURITY_SELINUX_DISABLE=y
-CONFIG_SECURITY_SELINUX_DEVELOP=y
 CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
 CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
-# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
-# CONFIG_SECURITY_SMACK is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
+CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
 CONFIG_SECURITY_YAMA=y
-CONFIG_SECURITY_YAMA_STACKED=y
-CONFIG_INTEGRITY=y
-CONFIG_INTEGRITY_SIGNATURE=y
-CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
-CONFIG_IMA=y
-CONFIG_IMA_MEASURE_PCR_IDX=10
-CONFIG_IMA_AUDIT=y
-CONFIG_IMA_LSM_RULES=y
-CONFIG_IMA_APPRAISE=y
-CONFIG_IMA_TRUSTED_KEYRING=y
-CONFIG_EVM=y
-CONFIG_EVM_HMAC_VERSION=2
-CONFIG_DEFAULT_SECURITY_SELINUX=y
-# CONFIG_DEFAULT_SECURITY_YAMA is not set
-# CONFIG_DEFAULT_SECURITY_DAC is not set
-CONFIG_DEFAULT_SECURITY="selinux"
-CONFIG_XOR_BLOCKS=m
-CONFIG_ASYNC_CORE=m
-CONFIG_ASYNC_MEMCPY=m
-CONFIG_ASYNC_XOR=m
-CONFIG_ASYNC_PQ=m
-CONFIG_ASYNC_RAID6_RECOV=m
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_FIPS=y
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=y
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=y
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=y
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_AKCIPHER2=y
-CONFIG_CRYPTO_AKCIPHER=m
-CONFIG_CRYPTO_KPP2=y
-CONFIG_CRYPTO_KPP=m
-CONFIG_CRYPTO_ACOMP2=y
-CONFIG_CRYPTO_RSA=m
-CONFIG_CRYPTO_DH=m
-# CONFIG_CRYPTO_ECDH is not set
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-CONFIG_CRYPTO_USER=m
-# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-CONFIG_CRYPTO_PCRYPT=m
-CONFIG_CRYPTO_WORKQUEUE=y
-CONFIG_CRYPTO_CRYPTD=m
-CONFIG_CRYPTO_MCRYPTD=m
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-CONFIG_CRYPTO_ABLK_HELPER_X86=m
-CONFIG_CRYPTO_GLUE_HELPER_X86=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=y
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=y
-CONFIG_CRYPTO_CTR=y
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=y
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_CMAC=m
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=y
-CONFIG_CRYPTO_CRC32C_INTEL=m
-CONFIG_CRYPTO_CRC32=m
-CONFIG_CRYPTO_CRC32_PCLMUL=m
-CONFIG_CRYPTO_CRCT10DIF=m
-CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=y
-CONFIG_CRYPTO_SHA1_SSSE3=y
-CONFIG_CRYPTO_SHA256_SSSE3=y
-CONFIG_CRYPTO_SHA512_SSSE3=m
-CONFIG_CRYPTO_SHA1_MB=m
-CONFIG_CRYPTO_SHA256_MB=m
-CONFIG_CRYPTO_SHA512_MB=m
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=y
-CONFIG_CRYPTO_AES_X86_64=y
-CONFIG_CRYPTO_AES_NI_INTEL=m
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_BLOWFISH_X86_64=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAMELLIA_X86_64=m
-CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m
-CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m
-CONFIG_CRYPTO_CAST_COMMON=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST5_AVX_X86_64=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_CAST6_AVX_X86_64=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-CONFIG_CRYPTO_SALSA20_X86_64=m
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m
-CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
-CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-CONFIG_CRYPTO_TWOFISH_X86_64=m
-CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
-CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=y
-# CONFIG_CRYPTO_842 is not set
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-CONFIG_CRYPTO_DRBG_MENU=m
-CONFIG_CRYPTO_DRBG_HMAC=y
-CONFIG_CRYPTO_DRBG_HASH=y
-CONFIG_CRYPTO_DRBG_CTR=y
-CONFIG_CRYPTO_DRBG=m
-CONFIG_CRYPTO_JITTERENTROPY=m
-CONFIG_CRYPTO_USER_API=y
-CONFIG_CRYPTO_USER_API_HASH=y
-CONFIG_CRYPTO_USER_API_SKCIPHER=y
-CONFIG_CRYPTO_USER_API_RNG=m
-CONFIG_CRYPTO_HASH_INFO=y
-CONFIG_CRYPTO_HW=y
-CONFIG_CRYPTO_DEV_PADLOCK=m
-CONFIG_CRYPTO_DEV_PADLOCK_AES=m
-CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
-CONFIG_CRYPTO_DEV_CCP=y
-CONFIG_CRYPTO_DEV_CCP_DD=m
-CONFIG_CRYPTO_DEV_QAT=m
-CONFIG_CRYPTO_DEV_QAT_DH895xCC=m
-CONFIG_CRYPTO_DEV_QAT_C3XXX=m
-CONFIG_CRYPTO_DEV_QAT_C62X=m
-CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m
-CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m
-CONFIG_CRYPTO_DEV_QAT_C62XVF=m
-CONFIG_CRYPTO_DEV_CHELSIO=m
-CONFIG_ASYMMETRIC_KEY_TYPE=y
-CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
-CONFIG_PUBLIC_KEY_ALGO_RSA=y
-CONFIG_X509_CERTIFICATE_PARSER=y
-CONFIG_EFI_SIGNATURE_LIST_PARSER=y
-CONFIG_PKCS7_MESSAGE_PARSER=y
-# CONFIG_PKCS7_TEST_KEY is not set
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_ACPI_POWER=m
+CONFIG_SENSORS_AD7414=m
+CONFIG_SENSORS_AD7418=m
+CONFIG_SENSORS_ADM1021=m
+CONFIG_SENSORS_ADM1025=m
+CONFIG_SENSORS_ADM1026=m
+CONFIG_SENSORS_ADM1029=m
+CONFIG_SENSORS_ADM1031=m
+CONFIG_SENSORS_ADM1275=m
+CONFIG_SENSORS_ADM9240=m
+CONFIG_SENSORS_ADS1015=m
+CONFIG_SENSORS_ADS7828=m
+CONFIG_SENSORS_ADT7410=m
+CONFIG_SENSORS_ADT7411=m
+CONFIG_SENSORS_ADT7462=m
+CONFIG_SENSORS_ADT7470=m
+CONFIG_SENSORS_ADT7475=m
+CONFIG_SENSORS_AMC6821=m
+CONFIG_SENSORS_AMD_ENERGY=m
+CONFIG_SENSORS_APDS990X=m
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ASC7621=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_SENSORS_ATXP1=m
+CONFIG_SENSORS_BH1770=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_DELL_SMM=m
+CONFIG_SENSORS_DME1737=m
+CONFIG_SENSORS_DS1621=m
+CONFIG_SENSORS_DS620=m
+CONFIG_SENSORS_EMC1403=m
+CONFIG_SENSORS_EMC6W201=m
+CONFIG_SENSORS_F71805F=m
+CONFIG_SENSORS_F71882FG=m
+CONFIG_SENSORS_F75375S=m
+CONFIG_SENSORS_FAM15H_POWER=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G760A=m
+CONFIG_SENSORS_GL518SM=m
+CONFIG_SENSORS_GL520SM=m
+CONFIG_SENSORS_HDAPS=m
+CONFIG_SENSORS_I5500=m
+CONFIG_SENSORS_I5K_AMB=m
+CONFIG_SENSORS_IBMAEM=m
+CONFIG_SENSORS_IBMPEX=m
+CONFIG_SENSORS_INA209=m
+CONFIG_SENSORS_INA2XX=m
+CONFIG_SENSORS_IT87=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_LINEAGE=m
+CONFIG_SENSORS_LIS3_I2C=m
+CONFIG_SENSORS_LM25066=m
+CONFIG_SENSORS_LM63=m
+CONFIG_SENSORS_LM73=m
+CONFIG_SENSORS_LM75=m
+CONFIG_SENSORS_LM77=m
+CONFIG_SENSORS_LM78=m
+CONFIG_SENSORS_LM80=m
+CONFIG_SENSORS_LM83=m
+CONFIG_SENSORS_LM85=m
+CONFIG_SENSORS_LM87=m
+CONFIG_SENSORS_LM90=m
+CONFIG_SENSORS_LM92=m
+CONFIG_SENSORS_LM93=m
+CONFIG_SENSORS_LM95234=m
+CONFIG_SENSORS_LM95241=m
+CONFIG_SENSORS_LM95245=m
+CONFIG_SENSORS_LTC2978=m
+CONFIG_SENSORS_LTC4151=m
+CONFIG_SENSORS_LTC4215=m
+CONFIG_SENSORS_LTC4245=m
+CONFIG_SENSORS_LTC4261=m
+CONFIG_SENSORS_MAX16064=m
+CONFIG_SENSORS_MAX16065=m
+CONFIG_SENSORS_MAX1619=m
+CONFIG_SENSORS_MAX1668=m
+CONFIG_SENSORS_MAX197=m
+CONFIG_SENSORS_MAX34440=m
+CONFIG_SENSORS_MAX6639=m
+CONFIG_SENSORS_MAX6642=m
+CONFIG_SENSORS_MAX6650=m
+CONFIG_SENSORS_MAX6697=m
+CONFIG_SENSORS_MAX8688=m
+CONFIG_SENSORS_MCP3021=m
+CONFIG_SENSORS_MLXREG_FAN=m
+CONFIG_SENSORS_NCT6775=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_PC87360=m
+CONFIG_SENSORS_PC87427=m
+CONFIG_SENSORS_PCF8591=m
+CONFIG_SENSORS_PMBUS=m
+CONFIG_SENSORS_SCH5627=m
+CONFIG_SENSORS_SCH5636=m
+CONFIG_SENSORS_SHT15=m
+CONFIG_SENSORS_SHT21=m
+CONFIG_SENSORS_SIS5595=m
+CONFIG_SENSORS_SMSC47B397=m
+CONFIG_SENSORS_SMSC47M192=m
+CONFIG_SENSORS_SMSC47M1=m
+CONFIG_SENSORS_THMC50=m
+CONFIG_SENSORS_TMP102=m
+CONFIG_SENSORS_TMP401=m
+CONFIG_SENSORS_TMP421=m
+CONFIG_SENSORS_TSL2550=m
+CONFIG_SENSORS_UCD9000=m
+CONFIG_SENSORS_UCD9200=m
+CONFIG_SENSORS_VIA686A=m
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_VT1211=m
+CONFIG_SENSORS_VT8231=m
+CONFIG_SENSORS_W83627EHF=m
+CONFIG_SENSORS_W83627HF=m
+CONFIG_SENSORS_W83781D=m
+CONFIG_SENSORS_W83791D=m
+CONFIG_SENSORS_W83792D=m
+CONFIG_SENSORS_W83793=m
+CONFIG_SENSORS_W83795=m
+CONFIG_SENSORS_W83L785TS=m
+CONFIG_SENSORS_W83L786NG=m
+CONFIG_SENSORS_ZL6100=m
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_8250_DW=y
+CONFIG_SERIAL_8250_EXAR=y
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_LPSS=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_MID=y
+CONFIG_SERIAL_8250_NR_UARTS=64
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_RSA=y
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_ARC=m
+CONFIG_SERIAL_ARC_NR_PORTS=1
+CONFIG_SERIAL_CORE=y
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_JSM=m
+CONFIG_SERIAL_MULTI_INSTANTIATE=m
+CONFIG_SERIAL_NONSTANDARD=y
+CONFIG_SERIAL_UARTLITE_NR_UARTS=1
+CONFIG_SERIO=y
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_ARC_PS2=m
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_SERPORT=y
+CONFIG_SEV_GUEST=m
+CONFIG_SFC=m
+CONFIG_SFC_MCDI_LOGGING=y
+CONFIG_SFC_MCDI_MON=y
+CONFIG_SFC_MTD=y
+CONFIG_SFC_SIENA=m
+CONFIG_SFC_SIENA_MCDI_LOGGING=y
+CONFIG_SFC_SIENA_MCDI_MON=y
+CONFIG_SFC_SIENA_MTD=y
+CONFIG_SFC_SIENA_SRIOV=y
+CONFIG_SFC_SRIOV=y
+CONFIG_SFI=y
+CONFIG_SGETMASK_SYSCALL=y
+CONFIG_SGI_GRU=m
+CONFIG_SGI_IOC4=m
+CONFIG_SGI_PARTITION=y
+CONFIG_SGI_XP=m
+CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
 CONFIG_SIGNED_PE_FILE_VERIFICATION=y
-CONFIG_HAVE_KVM=y
-CONFIG_HAVE_KVM_IRQCHIP=y
-CONFIG_HAVE_KVM_IRQFD=y
-CONFIG_HAVE_KVM_IRQ_ROUTING=y
-CONFIG_HAVE_KVM_EVENTFD=y
-CONFIG_KVM_APIC_ARCHITECTURE=y
-CONFIG_KVM_MMIO=y
-CONFIG_KVM_ASYNC_PF=y
-CONFIG_HAVE_KVM_MSI=y
-CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
-CONFIG_KVM_VFIO=y
-CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
-CONFIG_HAVE_KVM_IRQ_BYPASS=y
+CONFIG_SLAB_FREELIST_HARDENED=y
+CONFIG_SLAB_FREELIST_RANDOM=y
+CONFIG_SLIP=m
+CONFIG_SLIP_COMPRESSED=y
+CONFIG_SLIP_SMART=y
+CONFIG_SLS=y
+CONFIG_SLUB=y
+CONFIG_SLUB_CPU_PARTIAL=y
+CONFIG_SLUB_DEBUG=y
+CONFIG_SMP=y
+CONFIG_SMSC9420=m
+CONFIG_SMSC_PHY=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMS_SDIO_DRV=m
+CONFIG_SMS_SIANO_MDTV=m
+CONFIG_SMS_SIANO_RC=y
+CONFIG_SMS_USB_DRV=m
+CONFIG_SND=m
+CONFIG_SND_AC97_POWER_SAVE=y
+CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=m
+CONFIG_SND_ATIIXP_MODEM=m
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_BCD2000=m
+CONFIG_SND_BEBOB=m
+CONFIG_SND_BT87X=m
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CTL_FAST_LOOKUP=y
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_DICE=m
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_DUMMY=m
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1968=m
+CONFIG_SND_ES1968_INPUT=y
+CONFIG_SND_ES1968_RADIO=y
+CONFIG_SND_FIREFACE=m
+CONFIG_SND_FIREWIRE=y
+CONFIG_SND_FIREWIRE_DIGI00X=m
+CONFIG_SND_FIREWIRE_MOTU=m
+CONFIG_SND_FIREWIRE_TASCAM=m
+CONFIG_SND_FIREWORKS=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_HDA_CODEC_ANALOG=m
+CONFIG_SND_HDA_CODEC_CA0110=m
+CONFIG_SND_HDA_CODEC_CA0132=m
+CONFIG_SND_HDA_CODEC_CA0132_DSP=y
+CONFIG_SND_HDA_CODEC_CIRRUS=m
+CONFIG_SND_HDA_CODEC_CMEDIA=m
+CONFIG_SND_HDA_CODEC_CONEXANT=m
+CONFIG_SND_HDA_CODEC_CS8409=m
+CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_SI3054=m
+CONFIG_SND_HDA_CODEC_SIGMATEL=m
+CONFIG_SND_HDA_CODEC_VIA=m
+CONFIG_SND_HDA_GENERIC=m
+CONFIG_SND_HDA_HWDEP=y
+CONFIG_SND_HDA_INPUT_BEEP=y
+CONFIG_SND_HDA_INPUT_BEEP_MODE=0
+CONFIG_SND_HDA_INTEL=m
+CONFIG_SND_HDA_PATCH_LOADER=y
+CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
+CONFIG_SND_HDA_PREALLOC_SIZE=0
+CONFIG_SND_HDA_RECONFIG=y
+CONFIG_SND_HDA_SCODEC_CS35L41_I2C=m
+CONFIG_SND_HDA_SCODEC_CS35L41_SPI=m
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_HRTIMER=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_ISIGHT=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+CONFIG_SND_MAESTRO3_INPUT=y
+CONFIG_SND_MAX_CARDS=32
+CONFIG_SND_MIA=m
+CONFIG_SND_MIXART=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_OXFW=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_PCI=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_RME32=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_RME96=m
+CONFIG_SND_SEQUENCER=m
+CONFIG_SND_SEQUENCER_OSS=m
+CONFIG_SND_SEQ_DUMMY=m
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_SOC=m
+CONFIG_SND_SOC_AMD_ACP5x=m
+CONFIG_SND_SOC_AMD_ACP6x=m
+CONFIG_SND_SOC_AMD_RENOIR=m
+CONFIG_SND_SOC_AMD_RENOIR_MACH=m
+CONFIG_SND_SOC_AMD_VANGOGH_MACH=m
+CONFIG_SND_SOC_AMD_YC_MACH=m
+CONFIG_SND_SOC_CS35L41_I2C=m
+CONFIG_SND_SOC_CS35L41_SPI=m
+CONFIG_SND_SOC_ES8326=m
+CONFIG_SND_SOC_INTEL_AVS=m
+CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH=m
+CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m
+CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
+CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m
+CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
+CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
+CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH=m
+CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m
+CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m
+CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=m
+CONFIG_SND_SOC_INTEL_CATPT=m
+CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m
+CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH=m
+CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m
+CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
+CONFIG_SND_SOC_INTEL_CML_H=m
+CONFIG_SND_SOC_INTEL_CML_LP=m
+CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH=m
+CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_HASWELL=m
+CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m
+CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m
+CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH=m
+CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m
+CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m
+CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m
+CONFIG_SND_SOC_INTEL_SKYLAKE=m
+CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH=m
+CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH=m
+CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m
+CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y
+CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES=y
+CONFIG_SND_SOC_NAU8315=m
+CONFIG_SND_SOC_NAU8821=m
+CONFIG_SND_SOC_PCM512x_I2C=m
+CONFIG_SND_SOC_RT1308_SDW=m
+CONFIG_SND_SOC_RT700_SDW=m
+CONFIG_SND_SOC_RT711_SDW=m
+CONFIG_SND_SOC_RT712_SDCA_SDW=m
+CONFIG_SND_SOC_RT715_SDW=m
+CONFIG_SND_SOC_SOF=m
+CONFIG_SND_SOC_SOF_ACPI=m
+CONFIG_SND_SOC_SOF_AMD_REMBRANDT=m
+CONFIG_SND_SOC_SOF_AMD_RENOIR=m
+CONFIG_SND_SOC_SOF_AMD_TOPLEVEL=m
+CONFIG_SND_SOC_SOF_APOLLOLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_BAYTRAIL_SUPPORT=y
+CONFIG_SND_SOC_SOF_BROADWELL_SUPPORT=y
+CONFIG_SND_SOC_SOF_CANNONLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_COFFEELAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_COMETLAKE_H_SUPPORT=y
+CONFIG_SND_SOC_SOF_COMETLAKE_LP_SUPPORT=y
+CONFIG_SND_SOC_SOF_DEBUG=y
+CONFIG_SND_SOC_SOF_DEBUG_ENABLE_DEBUGFS_CACHE=y
+CONFIG_SND_SOC_SOF_DEBUG_VERBOSE_IPC=y
+CONFIG_SND_SOC_SOF_ELKHARTLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_GEMINILAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC=y
+CONFIG_SND_SOC_SOF_HDA_COMMON_HDMI_CODEC=y
+CONFIG_SND_SOC_SOF_HDA_LINK=y
+CONFIG_SND_SOC_SOF_ICELAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK=y
+CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL=y
+CONFIG_SND_SOC_SOF_JASPERLAKE=m
+CONFIG_SND_SOC_SOF_JASPERLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_MERRIFIELD_SUPPORT=y
+CONFIG_SND_SOC_SOF_METEORLAKE=m
+CONFIG_SND_SOC_SOF_OPTIONS=m
+CONFIG_SND_SOC_SOF_PCI=m
+CONFIG_SND_SOC_SOF_TIGERLAKE_SUPPORT=y
+CONFIG_SND_SOC_SOF_TOPLEVEL=y
+CONFIG_SND_SOC_WM8804_I2C=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
+CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_6FIRE=m
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_CAIAQ=m
+CONFIG_SND_USB_CAIAQ_INPUT=y
+CONFIG_SND_USB_HIFACE=m
+CONFIG_SND_USB_POD=m
+CONFIG_SND_USB_PODHD=m
+CONFIG_SND_USB_TONEPORT=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_VARIAX=m
+CONFIG_SND_VERBOSE_PROCFS=y
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_VIRTIO=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SND_X86=y
+CONFIG_SND_XEN_FRONTEND=m
+CONFIG_SOFTLOCKUP_DETECTOR=y
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_SOLARIS_X86_PARTITION=y
+CONFIG_SONYPI_COMPAT=y
+CONFIG_SONY_FF=y
+CONFIG_SONY_LAPTOP=m
+CONFIG_SOUND=m
+CONFIG_SOUNDWIRE=m
+CONFIG_SOUNDWIRE_AMD=m
+CONFIG_SOUNDWIRE_INTEL=m
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SP5100_TCO=m
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_SPECULATION_MITIGATIONS=y
+CONFIG_SPI=y
+CONFIG_SPI_AMD=m
+CONFIG_SPI_PXA2XX=m
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
+CONFIG_SQUASHFS_FILE_DIRECT=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_STACKPROTECTOR=y
+CONFIG_STACKPROTECTOR_STRONG=y
+CONFIG_STACK_TRACER=y
+CONFIG_STACK_VALIDATION=y
+CONFIG_STANDALONE=y
+CONFIG_STE10XP=m
+CONFIG_STM=m
+CONFIG_STMMAC_ETH=m
+CONFIG_STM_DUMMY=m
+CONFIG_STM_PROTO_BASIC=m
+CONFIG_STM_PROTO_SYS_T=m
+CONFIG_STM_SOURCE_CONSOLE=m
+CONFIG_STM_SOURCE_FTRACE=m
+CONFIG_STM_SOURCE_HEARTBEAT=m
+CONFIG_STRICT_DEVMEM=y
+CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SUNRPC=m
+CONFIG_SUNRPC_DEBUG=y
+CONFIG_SUNRPC_GSS=m
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_SUN_PARTITION=y
+CONFIG_SUSPEND=y
+CONFIG_SWAP=y
+CONFIG_SWIOTLB=y
+CONFIG_SYNCLINK=m
+CONFIG_SYNCLINKMP=m
+CONFIG_SYNCLINK_GT=m
+CONFIG_SYNC_FILE=y
+CONFIG_SYN_COOKIES=y
+CONFIG_SYSCTL=y
+CONFIG_SYSTEM_BLACKLIST_HASH_LIST=""
+CONFIG_SYSTEM_BLACKLIST_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYRING=y
+CONFIG_SYSTEM_TRUSTED_KEYS=""
+CONFIG_SYSVIPC=y
+CONFIG_TABLET_SERIAL_WACOM4=m
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TARGET_CORE=m
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_TASK_XACCT=y
+CONFIG_TCG_ATMEL=m
+CONFIG_TCG_CRB=y
+CONFIG_TCG_INFINEON=m
+CONFIG_TCG_NSC=m
+CONFIG_TCG_TIS=y
+CONFIG_TCG_TIS_I2C_ATMEL=m
+CONFIG_TCG_TIS_I2C_INFINEON=m
+CONFIG_TCG_TIS_I2C_NUVOTON=m
+CONFIG_TCG_TIS_ST33ZP24_I2C=m
+CONFIG_TCG_TPM=y
+CONFIG_TCM_FILEIO=m
+CONFIG_TCM_IBLOCK=m
+CONFIG_TCM_PSCSI=m
+CONFIG_TCM_USER2=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BBR=m
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_DCTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_NV=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_MD5SIG=y
+CONFIG_TDX_GUEST_DRIVER=m
+CONFIG_TEE=m
+CONFIG_TELCLOCK=m
+CONFIG_TERANETICS_PHY=m
+CONFIG_TEST_BPF=m
+CONFIG_TEST_HMM=m
+CONFIG_TEST_KSTRTOX=y
+CONFIG_TEST_LIVEPATCH=m
+CONFIG_TEST_VMALLOC=m
+CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
+CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
+CONFIG_THERMAL_GOV_FAIR_SHARE=y
+CONFIG_THERMAL_GOV_STEP_WISE=y
+CONFIG_THERMAL_GOV_USER_SPACE=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_THINKPAD_ACPI=m
+CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y
+CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y
+CONFIG_THINKPAD_ACPI_VIDEO=y
+CONFIG_THINKPAD_LMI=m
+CONFIG_TIFM_7XX1=m
+CONFIG_TIFM_CORE=m
+CONFIG_TIGON3=m
+CONFIG_TIGON3_HWMON=y
+CONFIG_TIMERLAT_TRACER=y
+CONFIG_TIPC=m
+CONFIG_TIPC_CRYPTO=y
+CONFIG_TIPC_DIAG=m
+CONFIG_TIPC_MEDIA_IB=y
+CONFIG_TIPC_MEDIA_UDP=y
+CONFIG_TLS=m
+CONFIG_TLS_DEVICE=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_TOPSTAR_LAPTOP=m
+CONFIG_TORTURE_TEST=m
+CONFIG_TOSHIBA_BT_RFKILL=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TRACER_SNAPSHOT=y
+CONFIG_TRANSPARENT_HUGEPAGE=y
+CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
+CONFIG_TREE_RCU=y
+CONFIG_TRUSTED_KEYS=y
+CONFIG_TUN=m
+CONFIG_TYPEC=y
+CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_TYPEC_FUSB302=m
+CONFIG_TYPEC_HD3SS3220=m
+CONFIG_TYPEC_MT6360=y
+CONFIG_TYPEC_MUX_INTEL_PMC=y
+CONFIG_TYPEC_MUX_PI3USB30532=m
+CONFIG_TYPEC_QCOM_PMIC=m
+CONFIG_TYPEC_RT1711H=y
+CONFIG_TYPEC_STUSB160X=m
+CONFIG_TYPEC_TCPCI=y
+CONFIG_TYPEC_TCPM=y
+CONFIG_TYPEC_TPS6598X=m
+CONFIG_TYPEC_UCSI=y
+CONFIG_UCSI_ACPI=y
+CONFIG_UDF_FS=m
+CONFIG_UHID=m
+CONFIG_UID16=y
+CONFIG_UIO=m
+CONFIG_UIO_AEC=m
+CONFIG_UIO_CIF=m
+CONFIG_UIO_HV_GENERIC=m
+CONFIG_UIO_PCI_GENERIC=m
+CONFIG_UIO_PDRV_GENIRQ=m
+CONFIG_UIO_SERCOS3=m
+CONFIG_UNIX98_PTYS=y
+CONFIG_UNIX=y
+CONFIG_UNIXWARE_DISKLABEL=y
+CONFIG_UNIX_DIAG=m
+CONFIG_UNWINDER_ORC=y
+CONFIG_UPROBE_EVENTS=y
+CONFIG_USB4=y
+CONFIG_USB4_KUNIT_TEST=y
+CONFIG_USB4_NET=m
+CONFIG_USB=y
+CONFIG_USBPCWATCHDOG=m
+CONFIG_USB_ACM=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_ATM=m
+CONFIG_USB_BELKIN=y
+CONFIG_USB_CATC=m
+CONFIG_USB_CONN_GPIO=y
+CONFIG_USB_CXACRU=m
+CONFIG_USB_DEFAULT_PERSIST=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EMI26=m
+CONFIG_USB_EMI62=m
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_EZUSB_FX2=m
+CONFIG_USB_FEW_INIT_RETRIES=y
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_HID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_HSIC_USB3503=m
+CONFIG_USB_HSO=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_KC2190=y
+CONFIG_USB_LAN78XX=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LD=m
+CONFIG_USB_LEDS_TRIGGER_USBPORT=m
+CONFIG_USB_LED_TRIG=y
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_M5602=m
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+CONFIG_USB_MON=y
+CONFIG_USB_NET_AX88179_178A=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_MBIM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_NET_CH9200=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_DRIVERS=y
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_HUAWEI_CDC_NCM=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_PCI=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_PRINTER=m
+CONFIG_USB_PULSE8_CEC=m
+CONFIG_USB_PWC=m
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_USB_RAINSHADOW_CEC=m
+CONFIG_USB_ROLES_INTEL_XHCI=y
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SERIAL=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_CONSOLE=y
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_DEBUG=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_F8153X=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=m
+CONFIG_USB_SERIAL_KLSI=m
+CONFIG_USB_SERIAL_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_MOS7715_PARPORT=y
+CONFIG_USB_SERIAL_MOS7720=m
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MXUPORT=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SAFE=m
+CONFIG_USB_SERIAL_SAFE_PADDED=y
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_UPD78F0730=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_XSENS_MT=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_SISUSBVGA=m
+CONFIG_USB_SISUSBVGA_CON=y
+CONFIG_USB_SPEEDTOUCH=m
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_STORAGE=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_ISD200=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_SUPPORT=y
+CONFIG_USB_TMC=m
+CONFIG_USB_UAS=m
+CONFIG_USB_UEAGLEATM=m
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_USBNET=m
+CONFIG_USB_USS720=m
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_VL600=m
+CONFIG_USB_WDM=m
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+CONFIG_USB_XHCI_DBGCAP=y
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XHCI_PLATFORM=y
+CONFIG_USB_XUSBATM=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USERFAULTFD=y
+CONFIG_USER_NS=y
+CONFIG_UTS_NS=y
+CONFIG_UV_MMTIMER=m
+CONFIG_UV_SYSFS=m
+CONFIG_UWB=m
+CONFIG_UWB_HWA=m
+CONFIG_UWB_I1480U=m
+CONFIG_UWB_WHCI=m
+CONFIG_VDPA=m
+CONFIG_VDPA_SIM=m
+CONFIG_VDPA_SIM_BLOCK=m
+CONFIG_VDPA_SIM_NET=m
+CONFIG_VETH=m
+CONFIG_VEXPRESS_SYSCFG=y
+CONFIG_VFAT_FS=m
+CONFIG_VFIO=m
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO_MDEV=m
+CONFIG_VFIO_MDEV_DEVICE=m
+CONFIG_VFIO_NOIOMMU=y
+CONFIG_VFIO_PCI=m
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=64
+CONFIG_VGA_CONSOLE=y
+CONFIG_VGA_SWITCHEROO=y
+CONFIG_VHOST_NET=m
+CONFIG_VHOST_VDPA=m
+CONFIG_VHOST_VSOCK=m
+CONFIG_VIA_WDT=m
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_AU0828_V4L2=y
+CONFIG_VIDEO_BT848=m
+CONFIG_VIDEO_CS3308=m
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX23885=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_DEV=m
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_DVB=y
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_SAA6588=m
+CONFIG_VIDEO_SAA6752HS=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_VIDEO_V4L2=m
+CONFIG_VIRTIO=y
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_BLK=m
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_VIRTIO_FS=m
+CONFIG_VIRTIO_INPUT=m
+CONFIG_VIRTIO_MEM=m
+CONFIG_VIRTIO_MENU=y
+CONFIG_VIRTIO_NET=m
+CONFIG_VIRTIO_PCI=y
+CONFIG_VIRTIO_PCI_LEGACY=y
+CONFIG_VIRTIO_VDPA=m
+CONFIG_VIRTIO_VSOCKETS=m
 CONFIG_VIRTUALIZATION=y
-CONFIG_KVM=m
-CONFIG_KVM_INTEL=m
-CONFIG_KVM_AMD=m
-CONFIG_KVM_MMU_AUDIT=y
-# CONFIG_KVM_DEVICE_ASSIGNMENT is not set
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_RAID6_PQ=m
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_STRNCPY_FROM_USER=y
-CONFIG_GENERIC_STRNLEN_USER=y
-CONFIG_GENERIC_FIND_FIRST_BIT=y
-CONFIG_GENERIC_PCI_IOMAP=y
-CONFIG_GENERIC_IOMAP=y
-CONFIG_GENERIC_IO=y
-CONFIG_PERCPU_RWSEM=y
-CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
-CONFIG_CMPXCHG_LOCKREF=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-# CONFIG_CRC32_SELFTEST is not set
-CONFIG_CRC32_SLICEBY8=y
-# CONFIG_CRC32_SLICEBY4 is not set
-# CONFIG_CRC32_SARWATE is not set
-# CONFIG_CRC32_BIT is not set
-# CONFIG_CRC7 is not set
-CONFIG_LIBCRC32C=m
-CONFIG_CRC8=m
-# CONFIG_RANDOM32_SELFTEST is not set
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=y
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
+CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_VIRT_DRIVERS=y
+CONFIG_VITESSE_PHY=m
+CONFIG_VLAN_8021Q=m
+CONFIG_VLAN_8021Q_GVRP=y
+CONFIG_VLAN_8021Q_MVRP=y
+CONFIG_VMAP_STACK=y
+CONFIG_VMD=y
+CONFIG_VMWARE_BALLOON=m
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_VMWARE_VMCI=m
+CONFIG_VMWARE_VMCI_VSOCKETS=m
+CONFIG_VMXNET3=m
+CONFIG_VP_VDPA=m
+CONFIG_VSOCKETS=m
+CONFIG_VSOCKETS_DIAG=m
+CONFIG_VSOCKMON=m
+CONFIG_VT=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_VXLAN=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_WAN=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
+CONFIG_WATCHDOG_SYSFS=y
+CONFIG_WDAT_WDT=m
+CONFIG_WDTPCI=m
+CONFIG_WIRELESS=y
+CONFIG_WLAN=y
+CONFIG_WLAN_VENDOR_ATH=y
+CONFIG_WLAN_VENDOR_BROADCOM=y
+CONFIG_WLAN_VENDOR_INTEL=y
+CONFIG_WLAN_VENDOR_MARVELL=y
+CONFIG_WLAN_VENDOR_MEDIATEK=y
+CONFIG_WLAN_VENDOR_QUANTENNA=y
+CONFIG_WLAN_VENDOR_RALINK=y
+CONFIG_WLAN_VENDOR_REALTEK=y
+CONFIG_WMI_BMOF=m
+CONFIG_X86_5LEVEL=y
+CONFIG_X86_64_ACPI_NUMA=y
+CONFIG_X86_ACPI_CPUFREQ=m
+CONFIG_X86_ACPI_CPUFREQ_CPB=y
+CONFIG_X86_AMD_FREQ_SENSITIVITY=m
+CONFIG_X86_AMD_PLATFORM_DEVICE=y
+CONFIG_X86_AMD_PSTATE=y
+CONFIG_X86_CHECK_BIOS_CORRUPTION=y
+CONFIG_X86_CMPXCHG64=y
+CONFIG_X86_CPUID=y
+CONFIG_X86_CPU_RESCTRL=y
+CONFIG_X86_DECODER_SELFTEST=y
+CONFIG_X86_EXTENDED_PLATFORM=y
+CONFIG_X86_INTEL_LPSS=y
+CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
+CONFIG_X86_INTEL_PSTATE=y
+CONFIG_X86_MCE=y
+CONFIG_X86_MCELOG_LEGACY=y
+CONFIG_X86_MCE_AMD=y
+CONFIG_X86_MCE_INJECT=m
+CONFIG_X86_MCE_INTEL=y
+CONFIG_X86_MPPARSE=y
+CONFIG_X86_MSR=y
+CONFIG_X86_P4_CLOCKMOD=m
+CONFIG_X86_PAT=y
+CONFIG_X86_PKG_TEMP_THERMAL=m
+CONFIG_X86_PLATFORM_DEVICES=y
+CONFIG_X86_PLATFORM_DRIVERS_INTEL=y
+CONFIG_X86_PMEM_LEGACY=m
+CONFIG_X86_PMEM_LEGACY_DEVICE=y
+CONFIG_X86_PM_TIMER=y
+CONFIG_X86_POWERNOW_K8=m
+CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
+CONFIG_X86_RESERVE_LOW=64
+CONFIG_X86_SGX=y
+CONFIG_X86_SGX_KVM=y
+CONFIG_X86_UV=y
+CONFIG_X86_X2APIC=y
+CONFIG_XARRAY_MULTI=y
+CONFIG_XDP_SOCKETS=y
+CONFIG_XDP_SOCKETS_DIAG=m
+CONFIG_XEN=y
+CONFIG_XENFS=m
+CONFIG_XEN_BLKDEV_FRONTEND=m
+CONFIG_XEN_COMPAT_XENFS=y
+CONFIG_XEN_DEV_EVTCHN=m
+CONFIG_XEN_NETDEV_FRONTEND=m
+CONFIG_XEN_PVHVM=y
+CONFIG_XEN_SAVE_RESTORE=y
+CONFIG_XEN_SCRUB_PAGES=y
+CONFIG_XEN_SYS_HYPERVISOR=y
+CONFIG_XEN_WDT=m
+CONFIG_XFRM=y
+CONFIG_XFRM_INTERFACE=m
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_OFFLOAD=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_USER=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_QUOTA=y
+CONFIG_XILINX_GMII2RGMII=m
 CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
 CONFIG_XZ_DEC_POWERPC=y
-# CONFIG_XZ_DEC_IA64 is not set
-# CONFIG_XZ_DEC_ARM is not set
-# CONFIG_XZ_DEC_ARMTHUMB is not set
-# CONFIG_XZ_DEC_SPARC is not set
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_GENERIC_ALLOCATOR=y
-CONFIG_REED_SOLOMON=m
-CONFIG_REED_SOLOMON_ENC8=y
-CONFIG_REED_SOLOMON_DEC8=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_BTREE=y
-CONFIG_INTERVAL_TREE=y
-CONFIG_RADIX_TREE_MULTIORDER=y
-CONFIG_ASSOCIATIVE_ARRAY=y
-CONFIG_HAS_IOMEM=y
-CONFIG_HAS_IOPORT=y
-CONFIG_HAS_DMA=y
-CONFIG_DMA_VIRT_OPS=y
-CONFIG_CHECK_SIGNATURE=y
-CONFIG_CPUMASK_OFFSTACK=y
-CONFIG_CPU_RMAP=y
-CONFIG_DQL=y
-CONFIG_NLATTR=y
-CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
-# CONFIG_AVERAGE is not set
-CONFIG_CLZ_TAB=y
-CONFIG_CORDIC=m
-# CONFIG_DDR is not set
-CONFIG_IRQ_POLL=y
-CONFIG_MPILIB=y
-CONFIG_SIGNATURE=y
-CONFIG_OID_REGISTRY=y
-CONFIG_UCS2_STRING=y
-CONFIG_SG_POOL=y
-CONFIG_ARCH_HAS_PMEM_API=y
-CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
-CONFIG_ARCH_HAS_UACCESS_MCSAFE=y
-CONFIG_ARCH_HAS_MMIO_FLUSH=y
-CONFIG_PARMAN=m
-CONFIG_SBITMAP=y
-CONFIG_RH_KABI_SIZE_ALIGN_CHECKS=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_YENTA=m
+CONFIG_ZBUD=y
+CONFIG_ZISOFS=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZONE_DEVICE=y
+CONFIG_ZPOOL=y
+CONFIG_ZRAM=m
+CONFIG_ZRAM_WRITEBACK=y
+CONFIG_ZSMALLOC=y
+CONFIG_ZSMALLOC_STAT=y
+CONFIG_ZSWAP=y
diff --git a/kernel-source/thirdparty/kernel/SOURCES/kvm_stat.logrotate b/kernel-source/thirdparty/kernel/SOURCES/kvm_stat.logrotate
new file mode 100644
index 0000000..105e15e
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/kvm_stat.logrotate
@@ -0,0 +1,11 @@
+/var/log/kvm_stat.csv {
+	size 10M
+	missingok
+	compress
+	maxage 30
+	rotate 5
+	nodateext
+	postrotate
+		/usr/bin/systemctl try-restart kvm_stat.service
+	endscript
+}
diff --git a/kernel-source/thirdparty/kernel/SOURCES/linux-4.18.0-513.9.1.el8_9.tar.xz b/kernel-source/thirdparty/kernel/SOURCES/linux-4.18.0-513.9.1.el8_9.tar.xz
new file mode 100644
index 0000000..d31817c
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/linux-4.18.0-513.9.1.el8_9.tar.xz
Binary files differ
diff --git a/kernel-source/thirdparty/SOURCES/linux-kernel-test.patch b/kernel-source/thirdparty/kernel/SOURCES/linux-kernel-test.patch
similarity index 100%
rename from kernel-source/thirdparty/SOURCES/linux-kernel-test.patch
rename to kernel-source/thirdparty/kernel/SOURCES/linux-kernel-test.patch
diff --git a/kernel-source/thirdparty/kernel/SOURCES/mod-blacklist.sh b/kernel-source/thirdparty/kernel/SOURCES/mod-blacklist.sh
new file mode 100755
index 0000000..5e3cccf
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/mod-blacklist.sh
@@ -0,0 +1,152 @@
+#! /bin/bash
+
+RpmDir=$1
+ModDir=$2
+Dir="$1/$2"
+# Note the list filename must have the format mod-[PACKAGE].list, for example,
+# mod-internal.list or mod-extra.list.  The PACKAGE is used to create a
+# override directory for the modules.
+List=$3
+Dest="$4"
+
+blacklist()
+{
+	cat > "$RpmDir/etc/modprobe.d/$1-blacklist.conf" <<-__EOF__
+	# This kernel module can be automatically loaded by non-root users. To
+	# enhance system security, the module is blacklisted by default to ensure
+	# system administrators make the module available for use as needed.
+	# See https://access.redhat.com/articles/3760101 for more details.
+	#
+	# Remove the blacklist by adding a comment # at the start of the line.
+	blacklist $1
+__EOF__
+}
+
+check_blacklist()
+{
+	mod=$(find $RpmDir/$ModDir -name "$1")
+	[ ! "$mod" ] && return 0
+	if modinfo $mod | grep -q '^alias:\s\+net-'; then
+		mod="${1##*/}"
+		mod="${mod%.ko*}"
+		echo "$mod has an alias that allows auto-loading. Blacklisting."
+		blacklist "$mod"
+	fi
+}
+
+find_depends()
+{
+	dep=$1
+	depends=`modinfo $dep | sed -n -e "/^depends/ s/^depends:[ \t]*//p"`
+	[ -z "$depends" ] && exit
+	for mod in ${depends//,/ }
+	do
+		match=$(grep "^$mod.ko" "$ListName")
+		[ -z "$match" ] && continue
+		# check if the module we are looking at is in mod-* too.
+		# if so we do not need to mark the dep as required.
+		mod2=${dep##*/}  # same as `basename $dep`, but faster
+		match2=$(grep "^$mod2" "$ListName")
+		if [ -n "$match2" ]
+		then
+			#echo $mod2 >> notreq.list
+			continue
+		fi
+		echo $mod.ko >> req.list
+	done
+}
+
+foreachp()
+{
+	P=$(nproc)
+	bgcount=0
+	while read mod; do
+		$1 "$mod" &
+
+		bgcount=$((bgcount + 1))
+		if [ $bgcount -eq $P ]; then
+			wait -n
+			bgcount=$((bgcount - 1))
+		fi
+	done
+
+	wait
+}
+
+# Destination was specified on the command line
+test -n "$4" && echo "$0: Override Destination $Dest has been specified."
+
+pushd $Dir
+
+OverrideDir=$(basename $List)
+OverrideDir=${OverrideDir%.*}
+OverrideDir=${OverrideDir#*-}
+mkdir -p $OverrideDir
+
+rm -rf modnames
+find . -name "*.ko" -type f > modnames
+# Look through all of the modules, and throw any that have a dependency in
+# our list into the list as well.
+rm -rf dep.list dep2.list
+rm -rf req.list req2.list
+touch dep.list req.list
+cp "$List" .
+
+# This variable needs to be exported because it is used in sub-script
+# executed by xargs
+export ListName=$(basename "$List")
+
+foreachp find_depends < modnames
+
+sort -u req.list > req2.list
+sort -u "$ListName" > modules2.list
+join -v 1 modules2.list req2.list > modules3.list
+
+for mod in $(cat modules3.list)
+do
+  # get the path for the module
+  modpath=`grep /$mod modnames`
+  [ -z "$modpath" ] && continue
+  echo $modpath >> dep.list
+done
+
+sort -u dep.list > dep2.list
+
+if [ -n "$Dest" ]; then
+	# now move the modules into the $Dest directory
+	for mod in `cat dep2.list`
+	do
+	  newpath=`dirname $mod | sed -e "s/kernel\\//$Dest\//"`
+	  mkdir -p $newpath
+	  mv $mod $newpath
+	  echo $mod | sed -e "s/kernel\\//$Dest\//" | sed -e "s|^.|${ModDir}|g" >> $RpmDir/$ListName
+	done
+fi
+
+popd
+
+# If we're signing modules, we can't leave the .mod files for the .ko files
+# we've moved in .tmp_versions/.  Remove them so the Kbuild 'modules_sign'
+# target doesn't try to sign a non-existent file.  This is kinda ugly, but
+# so are the modules-* packages.
+
+for mod in `cat ${Dir}/dep2.list`
+do
+  modfile=`basename $mod | sed -e 's/.ko/.mod/'`
+  rm .tmp_versions/$modfile
+done
+
+if [ ! -n "$Dest" ]; then
+	sed -e "s|^.|${ModDir}|g" ${Dir}/dep2.list > $RpmDir/$ListName
+	echo "./$RpmDir/$ListName created."
+	[ -d "$RpmDir/etc/modprobe.d/" ] || mkdir -p "$RpmDir/etc/modprobe.d/"
+	foreachp check_blacklist < $List
+fi
+
+# avoid an empty kernel-extra package
+echo "$ModDir/$OverrideDir" >> $RpmDir/$ListName
+
+pushd $Dir
+rm modnames dep.list dep2.list req.list req2.list
+rm "$ListName" modules2.list modules3.list
+popd
diff --git a/kernel-source/thirdparty/kernel/SOURCES/mod-extra.list b/kernel-source/thirdparty/kernel/SOURCES/mod-extra.list
new file mode 100644
index 0000000..a124b31
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/mod-extra.list
@@ -0,0 +1,198 @@
+6pack.ko
+a3d.ko
+act200l-sir.ko
+actisys-sir.ko
+act_mpls.ko
+act_ct.ko
+adi.ko
+aer_inject.ko
+af_802154.ko
+affs.ko
+ali-ircc.ko
+analog.ko
+appletalk.ko
+atm.ko
+avma1_cs.ko
+avm_cs.ko
+avmfritz.ko
+ax25.ko
+b1.ko
+bareudp.ko
+bas_gigaset.ko
+batman-adv.ko
+baycom_par.ko
+baycom_ser_fdx.ko
+baycom_ser_hdx.ko
+befs.ko
+bpqether.ko
+br2684.ko
+capi.ko
+c_can.ko
+c_can_platform.ko
+clip.ko
+cobra.ko
+coda.ko
+cuse.ko
+db9.ko
+dccp_diag.ko
+dccp_ipv4.ko
+dccp_ipv6.ko
+dccp.ko
+dccp_probe.ko
+diva_idi.ko
+divas.ko
+ds1wm.ko
+ds2482.ko
+ds2490.ko
+dss1_divert.ko
+elsa_cs.ko
+ems_pci.ko
+ems_usb.ko
+esd_usb2.ko
+esi-sir.ko
+gamecon.ko
+gf2k.ko
+gigaset.ko
+girbil-sir.ko
+grip.ko
+grip_mp.ko
+guillemot.ko
+hdlcdrv.ko
+hfc4s8s_l1.ko
+hfcmulti.ko
+hfcpci.ko
+hisax.ko
+hwa-rc.ko
+hysdn.ko
+i2400m.ko
+i2400m-sdio.ko
+i2400m-usb.ko
+ieee802154.ko
+iforce.ko
+interact.ko
+ipddp.ko
+ipx.ko
+ip_vs_mh.ko
+isdn.ko
+joydump.ko
+kingsun-sir.ko
+ks959-sir.ko
+ksdazzle-sir.ko
+kvaser_pci.ko
+l2tp_core.ko
+l2tp_debugfs.ko
+l2tp_eth.ko
+l2tp_ip.ko
+l2tp_netlink.ko
+l2tp_ppp.ko
+lec.ko
+ma600-sir.ko
+magellan.ko
+mcp2120-sir.ko
+mISDN_core.ko
+mISDN_dsp.ko
+mkiss.ko
+mptbase.ko
+mptctl.ko
+mptfc.ko
+nci.ko
+ncpfs.ko
+netjet.ko
+netrom.ko
+nfc.ko
+nilfs2.ko
+ocfs2_dlmfs.ko
+ocfs2_dlm.ko
+ocfs2.ko
+ocfs2_nodemanager.ko
+ocfs2_stackglue.ko
+ocfs2_stack_o2cb.ko
+ocfs2_stack_user.ko
+old_belkin-sir.ko
+orinoco_cs.ko
+orinoco.ko
+orinoco_nortel.ko
+orinoco_pci.ko
+orinoco_plx.ko
+orinoco_usb.ko
+plx_pci.ko
+pn_pep.ko
+pppoatm.ko
+rds.ko
+rds_rdma.ko
+rds_tcp.ko
+rose.ko
+sch_atm.ko
+sch_cbq.ko
+sch_cbs.ko
+sch_choke.ko
+sch_drr.ko
+sch_dsmark.ko
+sch_ets.ko
+sch_gred.ko
+sch_mqprio.ko
+sch_multiq.ko
+sch_netem.ko
+sch_qfq.ko
+sch_red.ko
+sch_sfb.ko
+sch_teql.ko
+sctp.ko
+sctp_diag.ko
+sidewinder.ko
+sja1000.ko
+sja1000_platform.ko
+slcan.ko
+slip.ko
+softing_cs.ko
+softing.ko
+spaceball.ko
+spaceorb.ko
+stinger.ko
+sysv.ko
+tcp_bic.ko
+tcp_highspeed.ko
+tcp_htcp.ko
+tcp_hybla.ko
+tcp_illinois.ko
+tcp_lp.ko
+tcp_scalable.ko
+tcp_vegas.ko
+tcp_veno.ko
+tcp_westwood.ko
+tcp_yeah.ko
+tekram-sir.ko
+tmdc.ko
+toim3232-sir.ko
+trancevibrator.ko
+turbografx.ko
+twidjoy.ko
+ubifs.ko
+ufs.ko
+umc.ko
+usbip-core.ko
+usbip-host.ko
+uwb.ko
+vcan.ko
+vhci-hcd.ko
+w1_bq27000.ko
+w1_ds2408.ko
+w1_ds2423.ko
+w1_ds2431.ko
+w1_ds2433.ko
+w1_ds2760.ko
+w1_ds2780.ko
+w1_ds2781.ko
+w1_ds28e04.ko
+w1_smem.ko
+w1_therm.ko
+w6692.ko
+walkera0701.ko
+wanrouter.ko
+warrior.ko
+whci.ko
+wire.ko
+xpad.ko
+xt_u32.ko
+yam.ko
+zhenhua.ko
diff --git a/kernel-source/thirdparty/kernel/SOURCES/mod-internal.list b/kernel-source/thirdparty/kernel/SOURCES/mod-internal.list
new file mode 100644
index 0000000..6fbd37d
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/mod-internal.list
@@ -0,0 +1,65 @@
+dmatest
+kunit
+kunit-test
+ext4-inode-test
+list-test
+sysctl-test
+mptcp_crypto_test
+mptcp_token_test
+bitfield_kunit
+cmdline_kunit
+property-entry-test
+qos-test
+resource_kunit
+soc-topology-test
+soc-utils-test
+string-stream-test
+test_linear_ranges
+test_bits
+test_kasan
+fat_test
+test_list_sort
+slub_kunit
+memcpy_kunit
+time_test
+drm_format_helper_test
+drm_damage_helper_test
+drm_cmdline_parser_test
+drm_kunit_helpers
+drm_rect_test
+drm_format_test
+drm_plane_helper_test
+drm_dp_mst_helper_test
+drm_framebuffer_test
+drm_buddy_test
+drm_mm_test
+drm_connector_test
+drm_managed_test
+drm_modes_test
+drm_probe_helper_test
+lib_test
+dev_addr_lists_test
+rational-test
+test_hash
+locktorture
+mac80211_hwsim
+netdevsim
+pktgen
+rcutorture
+rocker
+scftorture
+torture
+test_bpf
+test_klp_atomic_replace
+test_klp_callbacks_demo
+test_klp_callbacks_demo2
+test_klp_callbacks_busy
+test_klp_callbacks_mod
+test_klp_livepatch
+test_klp_shadow_vars
+test_klp_state
+test_klp_state2
+test_klp_state3
+test_hmm
+test_vmalloc
+mtty
diff --git a/kernel-source/thirdparty/kernel/SOURCES/mod-sign.sh b/kernel-source/thirdparty/kernel/SOURCES/mod-sign.sh
new file mode 100755
index 0000000..ed2bd62
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/mod-sign.sh
@@ -0,0 +1,37 @@
+#! /bin/bash
+
+# The modules_sign target checks for corresponding .o files for every .ko that
+# is signed. This doesn't work for package builds which re-use the same build
+# directory for every flavour, and the .config may change between flavours.
+# So instead of using this script to just sign lib/modules/$KernelVer/extra,
+# sign all .ko in the buildroot.
+
+# This essentially duplicates the 'modules_sign' Kbuild target and runs the
+# same commands for those modules.
+
+MODSECKEY=$1
+MODPUBKEY=$2
+moddir=$3
+
+modules=`find $moddir -type f -name '*.ko'`
+
+NPROC=`nproc`
+[ -z "$NPROC" ] && NPROC=1
+
+# NB: this loop runs 2000+ iterations. Try to be fast.
+echo "$modules" | xargs -r -n16 -P $NPROC sh -c "
+for mod; do
+    ./scripts/sign-file sha256 $MODSECKEY $MODPUBKEY \$mod
+    rm -f \$mod.sig \$mod.dig
+done
+" DUMMYARG0   # xargs appends ARG1 ARG2..., which go into $mod in for loop.
+
+RANDOMMOD=$(echo "$modules" | sort -R | head -n 1)
+if [ "~Module signature appended~" != "$(tail -c 28 $RANDOMMOD)" ]; then
+    echo "*****************************"
+    echo "*** Modules are unsigned! ***"
+    echo "*****************************"
+    exit 1
+fi
+
+exit 0
diff --git a/kernel-source/thirdparty/kernel/SOURCES/parallel_xz.sh b/kernel-source/thirdparty/kernel/SOURCES/parallel_xz.sh
new file mode 100755
index 0000000..bc08a54
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/parallel_xz.sh
@@ -0,0 +1,26 @@
+#!/bin/sh
+# Reads filenames on stdin, xz-compresses each in place.
+# Not optimal for "compress relatively few, large files" scenario!
+
+# How many xz's to run in parallel:
+procgroup=""
+while test "$#" != 0; do
+	# Get it from -jNUM
+	N="${1#-j}"
+	if test "$N" = "$1"; then
+		# Not -j<something> - warn and ignore
+		echo "parallel_xz: warning: unrecognized argument: '$1'"
+	else
+		procgroup="$N"
+	fi
+	shift
+done
+
+# If told to use only one cpu:
+test "$procgroup" || exec xargs -r xz
+test "$procgroup" = 1 && exec xargs -r xz
+
+# xz has some startup cost. If files are really small,
+# this cost might be significant. To combat this,
+# process several files (in sequence) by each xz process via -n 16:
+exec xargs -r -n 16 -P $procgroup xz
diff --git a/kernel-source/thirdparty/kernel/SOURCES/process_configs.sh b/kernel-source/thirdparty/kernel/SOURCES/process_configs.sh
new file mode 100755
index 0000000..896fdb0
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/process_configs.sh
@@ -0,0 +1,175 @@
+#!/bin/bash
+#
+# This script takes the merged config files and processes them through oldconfig
+# and listnewconfig
+#
+
+usage()
+{
+	echo "process_configs.sh [ -n|-c|-t ] package_name kernel_version [cross_opts]"
+	echo "     -n: error on unset config options"
+	echo "     -c: error on mismatched config options"
+	echo "     -t: test run, do not overwrite original config"
+	echo "     -w: error on misconfigured config options"
+	exit 1
+}
+
+die()
+{
+	echo "$1"
+	exit 1
+}
+
+# stupid function to find top of tree to do kernel make configs
+switch_to_toplevel()
+{
+	path="$(pwd)"
+	while test -n "$path"
+	do
+		test -d $path/firmware && \
+			test -e $path/MAINTAINERS && \
+			test -d $path/drivers && \
+			break
+
+		path="$(dirname $path)"
+	done
+
+	test -n "$path"  || die "Can't find toplevel"
+	echo "$path"
+}
+
+checkoptions()
+{
+	/usr/bin/awk '
+
+		/is not set/ {
+			split ($0, a, "#");
+			split(a[2], b);
+			if (NR==FNR) {
+				configs[b[1]]="is not set";
+			} else {
+				if (configs[b[1]] != "" && configs[b[1]] != "is not set")
+					 print "Found # "b[1] " is not set, after generation, had " b[1] " " configs[b[1]] " in Source tree";
+			}
+		}
+
+		/=/     {
+			split ($0, a, "=");
+			if (NR==FNR) {
+				configs[a[1]]=a[2];
+			} else {
+				if (configs[a[1]] != "" && configs[a[1]] != a[2])
+					 print "Found "a[1]"="a[2]" after generation, had " a[1]"="configs[a[1]]" in Source tree";
+			}
+		}
+	' $1 $2 > .mismatches
+
+	if test -s .mismatches
+	then
+		echo "Error: Mismatches found in configuration files"
+		cat .mismatches
+		exit 1
+	fi
+}
+
+function process_configs()
+{
+	# assume we are in $source_tree/configs, need to get to top level
+	pushd $(switch_to_toplevel) &>/dev/null
+
+	for cfg in $SCRIPT_DIR/${PACKAGE_NAME}${KVERREL}*.config
+	do
+		arch=$(head -1 $cfg | cut -b 3-)
+		cfgtmp="${cfg}.tmp"
+		cfgorig="${cfg}.orig"
+		cat $cfg > $cfgorig
+
+		echo -n "Processing $cfg ... "
+
+		make ARCH=$arch ${CROSSOPTS} KCONFIG_CONFIG=$cfgorig listnewconfig >& .listnewconfig
+		grep -E 'CONFIG_' .listnewconfig > .newoptions
+		if test -n "$NEWOPTIONS" && test -s .newoptions
+		then
+			echo "Found unset config items, please set them to an appropriate value"
+			cat .newoptions
+			rm .newoptions
+			exit 1
+		fi
+		rm .newoptions
+
+		grep -E 'config.*warning' .listnewconfig > .warnings
+		if test -n "$CHECKWARNINGS" && test -s .warnings
+		then
+			echo "Found misconfigured config items, please set them to an appropriate value"
+			cat .warnings
+			rm .warnings
+			exit 1
+		fi
+		rm .warnings
+
+		rm .listnewconfig
+
+		make ARCH=$arch ${CROSSOPTS} KCONFIG_CONFIG=$cfgorig oldnoconfig > /dev/null || exit 1
+		echo "# $arch" > ${cfgtmp}
+		cat "${cfgorig}" >> ${cfgtmp}
+		if test -n "$CHECKOPTIONS"
+		then
+			checkoptions $cfg $cfgtmp
+		fi
+		# if test run, don't overwrite original
+		if test -n "$TESTRUN"
+		then
+			rm ${cfgtmp}
+		else
+			mv ${cfgtmp} ${cfg}
+		fi
+		rm ${cfgorig}
+		echo "done"
+	done
+	rm "$SCRIPT_DIR"/*.config*.old
+	popd > /dev/null
+
+	echo "Processed config files are in $SCRIPT_DIR"
+}
+
+NEWOPTIONS=""
+CHECKOPTIONS=""
+CHECKWARNINGS=""
+TESTRUN=""
+
+while [[ $# -gt 0 ]]
+do
+	key="$1"
+	case $key in
+		-h)
+			usage
+			;;
+		-n)
+			NEWOPTIONS="x"
+			;;
+		-c)
+			CHECKOPTIONS="x"
+			;;
+		-t)
+			TESTRUN="x"
+			;;
+		-w)
+			CHECKWARNINGS="x"
+			;;
+		*)
+			break;;
+	esac
+	shift
+done
+
+PACKAGE_NAME="${1:-kernel}" # defines the package name used
+KVERREL="$(test -n "$2" && echo "-$2" || echo "")"
+CROSSOPTS="$3"
+SCRIPT="$(readlink -f $0)"
+OUTPUT_DIR="$PWD"
+SCRIPT_DIR="$(dirname $SCRIPT)"
+
+# to handle this script being a symlink
+cd $SCRIPT_DIR
+
+process_configs
diff --git a/kernel-source/thirdparty/kernel/SOURCES/rockydup1-aarch64.x509 b/kernel-source/thirdparty/kernel/SOURCES/rockydup1-aarch64.x509
new file mode 100644
index 0000000..58dc51d
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/rockydup1-aarch64.x509
Binary files differ
diff --git a/kernel-source/thirdparty/kernel/SOURCES/rockydup1.x509 b/kernel-source/thirdparty/kernel/SOURCES/rockydup1.x509
new file mode 100644
index 0000000..1c37228
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/rockydup1.x509
Binary files differ
diff --git a/kernel-source/thirdparty/kernel/SOURCES/rockykpatch1-aarch64.x509 b/kernel-source/thirdparty/kernel/SOURCES/rockykpatch1-aarch64.x509
new file mode 100644
index 0000000..b13959d
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/rockykpatch1-aarch64.x509
Binary files differ
diff --git a/kernel-source/thirdparty/kernel/SOURCES/rockykpatch1.x509 b/kernel-source/thirdparty/kernel/SOURCES/rockykpatch1.x509
new file mode 100644
index 0000000..6420ceb
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/rockykpatch1.x509
Binary files differ
diff --git a/kernel-source/thirdparty/kernel/SOURCES/rpminspect.yaml b/kernel-source/thirdparty/kernel/SOURCES/rpminspect.yaml
new file mode 100644
index 0000000..40d00d4
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SOURCES/rpminspect.yaml
@@ -0,0 +1,36 @@
+# additional rpminspect configuration for this branch
+
+---
+inspections:
+    abidiff: off
+    addedfiles: off
+    badfuncs: off
+    changedfiles: off
+    kmidiff: off
+    kmod: off
+    manpage: off
+    movedfiles: off
+    permissions: off
+    removedfiles: off
+    rpmdeps: off
+    upstream: off
+
+elf:
+    ignore:
+        - /usr/libexec/ksamples/*
+        - /usr/libexec/kselftests/*
+
+emptyrpm:
+    expected_empty:
+        - kernel
+        - kernel-debug
+        - kernel-zfcpdump
+        - kernel-zfcpdump-modules
+
+patches:
+    ignore_list:
+        - linux-kernel-test.patch
+
+types:
+    ignore:
+        - /usr/src/kernel/*
diff --git a/kernel-source/thirdparty/SOURCES/x509.genkey b/kernel-source/thirdparty/kernel/SOURCES/x509.genkey
similarity index 76%
rename from kernel-source/thirdparty/SOURCES/x509.genkey
rename to kernel-source/thirdparty/kernel/SOURCES/x509.genkey
index d98f8fe..f54fe40 100644
--- a/kernel-source/thirdparty/SOURCES/x509.genkey
+++ b/kernel-source/thirdparty/kernel/SOURCES/x509.genkey
@@ -5,9 +5,9 @@
 x509_extensions = myexts
 
 [ req_distinguished_name ]
-O = CentOS
-CN = CentOS Linux kernel signing key
-emailAddress = security@centos.org
+O = Rocky
+CN = Rocky kernel signing key
+emailAddress = security@rockylinux.org
 
 [ myexts ]
 basicConstraints=critical,CA:FALSE
diff --git a/kernel-source/thirdparty/kernel/SPECS/kernel.spec b/kernel-source/thirdparty/kernel/SPECS/kernel.spec
new file mode 100644
index 0000000..52b5f29
--- /dev/null
+++ b/kernel-source/thirdparty/kernel/SPECS/kernel.spec
@@ -0,0 +1,123020 @@
+# We have to override the new %%install behavior because, well... the kernel is special.
+%global __spec_install_pre %{___build_pre}
+
+# At the time of this writing (2019-03), RHEL8 packages use w2.xzdio
+# compression for rpms (xz, level 2).
+# Kernel has several large (hundreds of mbytes) rpms, they take ~5 mins
+# to compress by single-threaded xz. Switch to threaded compression,
+# and from level 2 to 3 to keep compressed sizes close to "w2" results.
+#
+# NB: if default compression in /usr/lib/rpm/redhat/macros ever changes,
+# this one might need tweaking (e.g. if default changes to w3.xzdio,
+# change below to w4T.xzdio):
+%define _binary_payload w3T.xzdio
+
+%global distro_build 513
+
+# Sign the x86_64 kernel for secure boot authentication
+%ifarch x86_64 aarch64 s390x ppc64le
+%global signkernel 1
+%else
+%global signkernel 0
+%endif
+
+# Sign modules on all arches
+%global signmodules 1
+
+# Compress modules only for architectures that build modules
+%ifarch noarch
+%global zipmodules 0
+%else
+%global zipmodules 1
+%endif
+
+%if %{zipmodules}
+%global zipsed -e 's/\.ko$/\.ko.xz/'
+%endif
+
+# define buildid .local
+
+%define rpmversion 4.18.0
+%define pkgrelease 513.9.1.el8_9
+
+# allow pkg_release to have configurable %%{?dist} tag
+%define specrelease 513.9.1%{?dist}
+
+%define pkg_release %{specrelease}%{?buildid}
+
+# libexec dir is not used by the linker, so the shared object there
+# should not be exported to RPM provides
+%global __provides_exclude_from ^%{_libexecdir}/kselftests
+
+# What parts do we want to build? These are the kernels that are built IF the
+# architecture allows it. All should default to 1 (enabled) and be flipped to
+# 0 (disabled) by later arch-specific checks.
+
+%define _with_kabidupchk 1
+# The following build options are enabled by default.
+# Use either --without <opt> in your rpmbuild command or force values
+# to 0 in here to disable them.
+#
+# standard kernel
+%define with_up        %{?_without_up:        0} %{?!_without_up:        1}
+# kernel-debug
+%define with_debug     %{?_without_debug:     0} %{?!_without_debug:     1}
+# kernel-doc
+%define with_doc       %{?_without_doc:       0} %{?!_without_doc:       1}
+# realtime
+# rhel doesn't incorporate PREEMPT_RT patches, but rhel-rt builds use base
+# kernel spec as a template.
+%define with_realtime 0
+# kernel-headers
+%define with_headers   %{?_without_headers:   0} %{?!_without_headers:   1}
+%define with_cross_headers   %{?_without_cross_headers:   0} %{?!_without_cross_headers:   1}
+# perf
+%define with_perf      %{?_without_perf:      0} %{?!_without_perf:      1}
+# tools
+%define with_tools     %{?_without_tools:     0} %{?!_without_tools:     1}
+# bpf tool
+%define with_bpftool   %{?_without_bpftool:   0} %{?!_without_bpftool:   1}
+# kernel-debuginfo
+%define with_debuginfo %{?_without_debuginfo: 0} %{?!_without_debuginfo: 1}
+# Want to build a the vsdo directories installed
+%define with_vdso_install %{?_without_vdso_install: 0} %{?!_without_vdso_install: 1}
+# kernel-zfcpdump (s390 specific kernel for zfcpdump)
+%define with_zfcpdump  %{?_without_zfcpdump:  0} %{?!_without_zfcpdump:  1}
+# kernel-abi-stablelists
+%define with_kernel_abi_stablelists %{?_without_kernel_abi_stablelists: 0} %{?!_without_kernel_abi_stablelists: 1}
+# internal samples and selftests
+%define with_selftests %{?_without_selftests: 0} %{?!_without_selftests: 1}
+#
+# Additional options for user-friendly one-off kernel building:
+#
+# Only build the base kernel (--with baseonly):
+%define with_baseonly  %{?_with_baseonly:     1} %{?!_with_baseonly:     0}
+# Only build the debug kernel (--with dbgonly):
+%define with_dbgonly   %{?_with_dbgonly:      1} %{?!_with_dbgonly:      0}
+# Control whether we perform a compat. check against published ABI.
+%define with_kabichk   %{?_without_kabichk:   0} %{?!_without_kabichk:   1}
+# Control whether we perform a compat. check against DUP ABI.
+%define with_kabidupchk %{?_with_kabidupchk:  1} %{?!_with_kabidupchk:   0}
+#
+# Control whether to run an extensive DWARF based kABI check.
+# Note that this option needs to have baseline setup in SOURCE300.
+%define with_kabidwchk %{?_without_kabidwchk: 0} %{?!_without_kabidwchk: 1}
+%define with_kabidw_base %{?_with_kabidw_base: 1} %{?!_with_kabidw_base: 0}
+#
+# should we do C=1 builds with sparse
+%define with_sparse    %{?_with_sparse:       1} %{?!_with_sparse:       0}
+#
+# Cross compile requested?
+%define with_cross    %{?_with_cross:         1} %{?!_with_cross:        0}
+#
+# build a release kernel on rawhide
+%define with_release   %{?_with_release:      1} %{?!_with_release:      0}
+
+# The kernel tarball/base version
+%define kversion 4.18
+
+%define with_gcov %{?_with_gcov:1}%{?!_with_gcov:0}
+
+# turn off debug kernel and kabichk for gcov builds
+%if %{with_gcov}
+%define with_debug 0
+%define with_kabichk 0
+%define with_kabidupchk 0
+%define with_kabidwchk 0
+%define with_kabidw_base 0
+%define with_kernel_abi_stablelists 0
+%endif
+
+# turn off kABI DWARF-based check if we're generating the base dataset
+%if %{with_kabidw_base}
+%define with_kabidwchk 0
+%endif
+
+# kpatch_kcflags are extra compiler flags applied to base kernel
+# -fdump-ipa-clones is enabled only for base kernels on selected arches
+%define with_ipaclones %{?_without_ipaclones: 0} %{?!_without_ipaclones: 1}
+%if %{with_ipaclones}
+%ifarch x86_64 ppc64le
+%define kpatch_kcflags -fdump-ipa-clones
+%else
+%define with_ipaclones 0
+%endif
+%endif
+
+%if %{with_realtime}
+# The preempt RT patch level
+%global rttag %%RTTAG%%
+# realtimeN
+%global rtbuild %%RTBUILD%%
+%define with_doc 0
+%define with_headers 0
+%define with_cross_headers 0
+%define with_perf 0
+%define with_tools 0
+%define with_bpftool 0
+%define with_zfcpdump 0
+%define with_kabichk  0
+%define with_kernel_abi_stablelists 0
+%define with_bpf_samples 0
+%define with_kabidw_base 0
+%define with_ipaclones 0
+%endif
+
+%define make_target bzImage
+%define image_install_path boot
+
+%define KVERREL %{version}-%{release}.%{_target_cpu}
+%define KVERREL_RE %(echo %KVERREL | sed 's/+/[+]/g')
+%define hdrarch %_target_cpu
+%define asmarch %_target_cpu
+
+%if !%{with_debuginfo}
+%define _enable_debug_packages 0
+%endif
+%define debuginfodir /usr/lib/debug
+# Needed because we override almost everything involving build-ids
+# and debuginfo generation. Currently we rely on the old alldebug setting.
+%global _build_id_links alldebug
+
+# if requested, only build base kernel
+%if %{with_baseonly}
+%define with_debug 0
+%define with_vdso_install 0
+%define with_perf 0
+%define with_tools 0
+%define with_bpftool 0
+%define with_kernel_abi_stablelists 0
+%define with_selftests 0
+%define with_cross 0
+%define with_cross_headers 0
+%define with_ipaclones 0
+%endif
+
+# if requested, only build debug kernel
+%if %{with_dbgonly}
+%define with_up 0
+%define with_vdso_install 0
+%define with_perf 0
+%define with_tools 0
+%define with_bpftool 0
+%define with_kernel_abi_stablelists 0
+%define with_selftests 0
+%define with_cross 0
+%define with_cross_headers 0
+%define with_ipaclones 0
+%endif
+
+# turn off kABI DUP check and DWARF-based check if kABI check is disabled
+%if !%{with_kabichk}
+%define with_kabidupchk 0
+%define with_kabidwchk 0
+%endif
+
+# selftests require bpftool to be built
+%if %{with_selftests}
+%define with_bpftool 1
+%endif
+
+%ifnarch noarch
+%define with_kernel_abi_stablelists 0
+%endif
+
+# Overrides for generic default options
+
+# only package docs noarch
+%ifnarch noarch
+%define with_doc 0
+%define doc_build_fail true
+%endif
+
+# don't build noarch kernels or headers (duh)
+%ifarch noarch
+%define with_up 0
+%define with_headers 0
+%define with_cross_headers 0
+%define with_tools 0
+%define with_perf 0
+%define with_bpftool 0
+%define with_selftests 0
+%define with_debug 0
+%define all_arch_configs %{name}-%{version}-*.config
+%endif
+
+# sparse blows up on ppc
+%ifnarch ppc64le
+%define with_sparse 0
+%endif
+
+# zfcpdump mechanism is s390 only
+%ifnarch s390x
+%define with_zfcpdump 0
+%endif
+
+# Per-arch tweaks
+
+%ifarch i686
+%define asmarch x86
+%define hdrarch i386
+%endif
+
+%ifarch x86_64
+%define asmarch x86
+%define all_arch_configs %{name}-%{version}-x86_64*.config
+%define kernel_image arch/x86/boot/bzImage
+%endif
+
+%ifarch ppc64le
+%define asmarch powerpc
+%define hdrarch powerpc
+%define make_target vmlinux
+%define kernel_image vmlinux
+%define kernel_image_elf 1
+%define all_arch_configs %{name}-%{version}-ppc64le*.config
+%define kcflags -O3
+%endif
+
+%ifarch s390x
+%define asmarch s390
+%define hdrarch s390
+%define all_arch_configs %{name}-%{version}-s390x.config
+%define kernel_image arch/s390/boot/bzImage
+%define vmlinux_decompressor arch/s390/boot/compressed/vmlinux
+%endif
+
+%ifarch aarch64
+%define all_arch_configs %{name}-%{version}-aarch64*.config
+%define asmarch arm64
+%define hdrarch arm64
+%define make_target Image.gz
+%define kernel_image arch/arm64/boot/Image.gz
+%endif
+
+# To temporarily exclude an architecture from being built, add it to
+# %%nobuildarches. Do _NOT_ use the ExclusiveArch: line, because if we
+# don't build kernel-headers then the new build system will no longer let
+# us use the previous build of that package -- it'll just be completely AWOL.
+# Which is a BadThing(tm).
+
+# We only build kernel-headers on the following...
+%define nobuildarches i386 i686
+
+%ifarch %nobuildarches
+%define with_up 0
+%define with_debug 0
+%define with_debuginfo 0
+%define with_perf 0
+%define with_tools 0
+%define with_bpftool 0
+%define with_selftests 0
+%define _enable_debug_packages 0
+%endif
+
+# Architectures we build tools/cpupower on
+%define cpupowerarchs x86_64 ppc64le aarch64
+
+
+#
+# Packages that need to be installed before the kernel is, because the %%post
+# scripts use them.
+#
+%define kernel_prereq  coreutils, systemd >= 203-2, /usr/bin/kernel-install
+%define initrd_prereq  dracut >= 027
+
+
+Name:                  kernel%{?variant}
+Group:                 System Environment/Kernel
+License:               GPLv2 and Redistributable, no modification permitted
+URL:                   http://www.kernel.org/
+Version:               %{rpmversion}
+Release:               %{pkg_release}
+Summary:               The Linux kernel, based on version %{version}, heavily modified with backports
+%if %{with_realtime}
+ExclusiveArch:         x86_64
+%else
+# DO NOT CHANGE THE 'ExclusiveArch' LINE TO TEMPORARILY EXCLUDE AN ARCHITECTURE BUILD.
+# SET %%nobuildarches (ABOVE) INSTEAD
+ExclusiveArch:         noarch i386 i686 x86_64 s390x aarch64 ppc64le
+%endif
+ExclusiveOS:           Linux
+%ifnarch %{nobuildarches}
+Requires:              %{name}-core-uname-r = %{KVERREL}%{?variant}
+Requires:              %{name}-modules-uname-r = %{KVERREL}%{?variant}
+%if %{with_realtime}
+Requires:              rt-setup
+%endif
+%endif
+
+
+#
+# List the packages used during the kernel build
+#
+BuildRequires:         kmod, patch, bash, coreutils, tar, git, which
+BuildRequires:         bzip2, xz, findutils, gzip, m4, perl-interpreter, perl-Carp, perl-devel, perl-generators, make, diffutils, gawk
+BuildRequires:         gcc, binutils, redhat-rpm-config, hmaccalc, python3-devel
+BuildRequires:         net-tools, hostname, bc, bison, flex, elfutils-devel, dwarves
+%ifnarch %nobuildarches noarch
+BuildRequires:         bpftool
+%endif
+%if %{with_doc}
+BuildRequires:         xmlto, asciidoc, python3-sphinx
+%endif
+%if %{with_sparse}
+BuildRequires:         sparse
+%endif
+%if %{with_perf}
+BuildRequires:         zlib-devel binutils-devel newt-devel perl(ExtUtils::Embed) bison flex xz-devel
+BuildRequires:         audit-libs-devel
+BuildRequires:         java-devel
+BuildRequires:         libbpf-devel
+BuildRequires:         libbabeltrace-devel
+BuildRequires:         libtraceevent-devel
+%ifnarch s390x
+BuildRequires:         numactl-devel
+%endif
+%ifarch aarch64
+BuildRequires:         opencsd-devel >= 1.0.0-2
+%endif
+%endif
+%if %{with_tools}
+BuildRequires:         gettext ncurses-devel
+%ifnarch s390x
+BuildRequires:         pciutils-devel
+%endif
+%endif
+%if %{with_bpftool}
+BuildRequires:         python3-docutils
+BuildRequires:         zlib-devel binutils-devel
+%endif
+%if %{with_selftests}
+BuildRequires:         libcap-devel libcap-ng-devel clang llvm numactl-devel rsync libmnl-devel
+%endif
+BuildConflicts:        rhbuildsys(DiskFree) < 500Mb
+%if %{with_debuginfo}
+BuildRequires:         rpm-build, elfutils
+BuildConflicts:        rpm < 4.13.0.1-19
+BuildConflicts:        dwarves < 1.13
+# Most of these should be enabled after more investigation
+%undefine _include_minidebuginfo
+%undefine _find_debuginfo_dwz_opts
+%undefine _unique_build_ids
+%undefine _unique_debug_names
+%undefine _unique_debug_srcs
+%undefine _debugsource_packages
+%undefine _debuginfo_subpackages
+%global _find_debuginfo_opts -r
+%global _missing_build_ids_terminate_build 1
+%global _no_recompute_build_ids 1
+%endif
+%if %{with_kabidwchk} || %{with_kabidw_base}
+BuildRequires:         kabi-dw
+%endif
+
+%if %{signkernel}%{signmodules}
+BuildRequires:         openssl openssl-devel
+%if %{signkernel}
+%ifarch x86_64 aarch64
+BuildRequires:         nss-tools
+BuildRequires:         pesign >= 0.10-4
+%endif
+%endif
+%endif
+
+%if %{with_cross}
+BuildRequires:         binutils-%{_build_arch}-linux-gnu, gcc-%{_build_arch}-linux-gnu
+%define cross_opts CROSS_COMPILE=%{_build_arch}-linux-gnu-
+%endif
+
+# These below are required to build man pages
+%if %{with_perf}
+BuildRequires:         xmlto
+%endif
+%if %{with_perf} || %{with_tools}
+BuildRequires:         asciidoc
+%endif
+
+Source0:               linux-%{rpmversion}-%{pkgrelease}.tar.xz
+
+Source9:               x509.genkey
+
+# Name of the packaged file containing signing key
+%ifarch ppc64le
+%define signing_key_filename kernel-signing-ppc.cer
+%endif
+%ifarch s390x
+%define signing_key_filename kernel-signing-s390.cer
+%endif
+
+BuildRequires:         system-sb-certs
+%define secureboot_ca_0 %{_datadir}/pki/sb-certs/secureboot-ca-%{_arch}.cer
+%define secureboot_key_0 %{_datadir}/pki/sb-certs/secureboot-kernel-%{_arch}.cer
+%define pesign_name_0 rockybootsigningcert
+
+Source17:              mod-blacklist.sh
+Source18:              mod-sign.sh
+Source19:              mod-extra.list
+Source80:              parallel_xz.sh
+Source90:              filter-x86_64.sh
+Source93:              filter-aarch64.sh
+Source96:              filter-ppc64le.sh
+Source97:              filter-s390x.sh
+Source99:              filter-modules.sh
+%define modsign_cmd %{SOURCE18}
+
+Source20:              %{name}-aarch64.config
+Source21:              %{name}-aarch64-debug.config
+Source32:              %{name}-ppc64le.config
+Source33:              %{name}-ppc64le-debug.config
+Source36:              %{name}-s390x.config
+Source37:              %{name}-s390x-debug.config
+Source38:              %{name}-s390x-zfcpdump.config
+Source39:              %{name}-x86_64.config
+Source40:              %{name}-x86_64-debug.config
+Source41:              generate_all_configs.sh
+
+Source42:              process_configs.sh
+Source43:              generate_bls_conf.sh
+
+Source44:              mod-internal.list
+
+Source100:             rockydup1.x509
+Source101:             rockykpatch1.x509
+Source110:             rockydup1-aarch64.x509
+Source111:             rockykpatch1-aarch64.x509
+
+%ifarch aarch64
+%define driver_cert %{SOURCE110}
+%define kpatch_cert %{SOURCE111}
+%else
+%define driver_cert %{SOURCE100}
+%define kpatch_cert %{SOURCE101}
+%endif
+
+%if %{with_kabichk}
+Source200:             check-kabi
+
+Source201:             Module.kabi_aarch64
+Source202:             Module.kabi_ppc64le
+Source203:             Module.kabi_s390x
+Source204:             Module.kabi_x86_64
+
+Source210:             Module.kabi_dup_aarch64
+Source211:             Module.kabi_dup_ppc64le
+Source212:             Module.kabi_dup_s390x
+Source213:             Module.kabi_dup_x86_64
+
+Source300:             kernel-abi-stablelists-%{rpmversion}-%{distro_build}.tar.bz2
+Source301:             kernel-kabi-dw-%{rpmversion}-%{distro_build}.tar.bz2
+%endif
+
+%if %{with_realtime}
+Source400:             mod-kvm.list
+%endif
+
+# Sources for kernel-tools
+Source2000:            cpupower.service
+Source2001:            cpupower.config
+Source2002:            kvm_stat.logrotate
+
+# CI gating config
+Source4000:            gating.yaml
+# rpminspect config
+Source4001:            rpminspect.yaml
+
+## Patches needed for building this package
+
+# empty final patch to facilitate testing of kernel patches
+Patch999999:           linux-kernel-test.patch
+Patch1000: 1000-Debrand-specific-Red-Hat-messages.patch
+
+# END OF PATCH DEFINITIONS
+
+BuildRoot:             %{_tmppath}/%{name}-%{KVERREL}-root
+
+%description
+This is the package which provides the Linux %{name} for Rocky
+Linux. It is based on upstream Linux at version %{version} and maintains kABI
+compatibility of a set of approved symbols, however it is heavily modified with
+backports and fixes pulled from newer upstream Linux %{name} releases. This means
+this is not a %{version} kernel anymore: it includes several components which come
+from newer upstream linux versions, while maintaining a well tested and stable
+core. Some of the components/backports that may be pulled in are: changes like
+updates to the core kernel (eg.: scheduler, cgroups, memory management, security
+fixes and features), updates to block layer, supported filesystems, major driver
+updates for supported hardware in Rocky Linux, enhancements for
+enterprise customers, etc.
+
+#
+# This macro does requires, provides, conflicts, obsoletes for a kernel package.
+#	%%kernel_reqprovconf <subpackage>
+# It uses any kernel_<subpackage>_conflicts and kernel_<subpackage>_obsoletes
+# macros defined above.
+#
+%define kernel_reqprovconf \
+Provides:              %{name} = %{rpmversion}-%{pkg_release}\
+Provides:              %{name}-%{_target_cpu} = %{rpmversion}-%{pkg_release}%{?1:+%{1}}\
+Provides:              kernel-drm-nouveau = 16\
+Provides:              %{name}-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+Requires(pre): %{kernel_prereq}\
+Requires(pre): %{initrd_prereq}\
+Requires(pre): linux-firmware >= 20200619-99.git3890db36\
+%ifnarch s390x\
+Requires(pre): ((grub2 >= 2.02-99) if grub2)\
+Requires(pre): ((grub2-efi >= 2.02-99) if grub2-efi)\
+%endif\
+Requires(preun): systemd >= 200\
+Conflicts:             xfsprogs < 4.3.0-1\
+Conflicts:             xorg-x11-drv-vmmouse < 13.0.99\
+Conflicts:             kexec-tools < 2.0.20-8\
+%{expand:%%{?kernel%{?1:_%{1}}_conflicts:Conflicts: %%{kernel%{?1:_%{1}}_conflicts}}}\
+%{expand:%%{?kernel%{?1:_%{1}}_obsoletes:Obsoletes: %%{kernel%{?1:_%{1}}_obsoletes}}}\
+%{expand:%%{?kernel%{?1:_%{1}}_provides:Provides: %%{kernel%{?1:_%{1}}_provides}}}\
+# We can't let RPM do the dependencies automatic because it'll then pick up\
+# a correct but undesirable perl dependency from the module headers which\
+# isn't required for the kernel proper to function\
+AutoReq:               no\
+AutoProv:              yes\
+%{nil}
+
+
+%package doc
+Summary:               Various documentation bits found in the kernel source
+Group:                 Documentation
+%description doc
+This package contains documentation files from the kernel
+source. Various bits of information about the Linux kernel and the
+device drivers shipped with it are documented in these files.
+
+You'll want to install this package if you need a reference to the
+options that can be passed to Linux kernel modules at load time.
+
+
+%package headers
+Summary:               Header files for the Linux kernel for use by glibc
+Group:                 Development/System
+Obsoletes:             glibc-kernheaders < 3.0-46
+Provides:              glibc-kernheaders = 3.0-46
+%if "0%{?variant}"
+Obsoletes:             kernel-headers < %{rpmversion}-%{pkg_release}
+Provides:              kernel-headers = %{rpmversion}-%{pkg_release}
+%endif
+%description headers
+Kernel-headers includes the C header files that specify the interface
+between the Linux kernel and userspace libraries and programs.  The
+header files define structures and constants that are needed for
+building most standard programs and are also needed for rebuilding the
+glibc package.
+
+%package cross-headers
+Summary:               Header files for the Linux kernel for use by cross-glibc
+Group:                 Development/System
+%description cross-headers
+Kernel-cross-headers includes the C header files that specify the interface
+between the Linux kernel and userspace libraries and programs.  The
+header files define structures and constants that are needed for
+building most standard programs and are also needed for rebuilding the
+cross-glibc package.
+
+
+%package debuginfo-common-%{_target_cpu}
+Summary:               Kernel source files used by %{name}-debuginfo packages
+Group:                 Development/Debug
+Provides:              installonlypkg(kernel)
+%description debuginfo-common-%{_target_cpu}
+This package is required by %{name}-debuginfo subpackages.
+It provides the kernel source files common to all builds.
+
+%if %{with_perf}
+%package -n perf
+Summary:               Performance monitoring for the Linux kernel
+Group:                 Development/System
+Requires:              bzip2
+License:               GPLv2
+%description -n perf
+This package contains the perf tool, which enables performance monitoring
+of the Linux kernel.
+
+%package -n perf-debuginfo
+Summary:               Debug information for package perf
+Group:                 Development/Debug
+Requires:              %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
+AutoReqProv:           no
+%description -n perf-debuginfo
+This package provides debug information for the perf package.
+
+# Note that this pattern only works right to match the .build-id
+# symlinks because of the trailing nonmatching alternation and
+# the leading .*, because of find-debuginfo.sh's buggy handling
+# of matching the pattern against the symlinks file.
+%{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{_bindir}/perf(\.debug)?|.*%%{_libexecdir}/perf-core/.*|.*%%{_libdir}/libperf-jvmti.so(\.debug)?|XXX' -o perf-debuginfo.list}
+
+%package -n python3-perf
+Summary:               Python bindings for apps which will manipulate perf events
+Group:                 Development/Libraries
+%description -n python3-perf
+The python3-perf package contains a module that permits applications
+written in the Python programming language to use the interface
+to manipulate perf events.
+
+%package -n python3-perf-debuginfo
+Summary:               Debug information for package perf python bindings
+Group:                 Development/Debug
+Requires:              %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
+AutoReqProv:           no
+%description -n python3-perf-debuginfo
+This package provides debug information for the perf python bindings.
+
+# the python_sitearch macro should already be defined from above
+%{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{python3_sitearch}/perf.*so(\.debug)?|XXX' -o python3-perf-debuginfo.list}
+
+# with_perf
+%endif
+
+%if %{with_tools}
+%package -n %{name}-tools
+Summary:               Assortment of tools for the Linux kernel
+Group:                 Development/System
+License:               GPLv2
+%ifarch %{cpupowerarchs}
+Provides:              cpupowerutils = 1:009-0.6.p1
+Obsoletes:             cpupowerutils < 1:009-0.6.p1
+Provides:              cpufreq-utils = 1:009-0.6.p1
+Provides:              cpufrequtils = 1:009-0.6.p1
+Obsoletes:             cpufreq-utils < 1:009-0.6.p1
+Obsoletes:             cpufrequtils < 1:009-0.6.p1
+Obsoletes:             cpuspeed < 1:1.5-16
+Requires:              %{name}-tools-libs = %{version}-%{release}
+%ifarch i686 x86_64
+BuildRequires:         libnl3-devel
+%endif
+%endif
+%define __requires_exclude ^%{_bindir}/python
+%description -n %{name}-tools
+This package contains the tools/ directory from the kernel source
+and the supporting documentation.
+
+%package -n %{name}-tools-libs
+Summary:               Libraries for the %{name}-tools
+Group:                 Development/System
+License:               GPLv2
+%description -n %{name}-tools-libs
+This package contains the libraries built from the tools/ directory
+from the kernel source.
+
+%package -n %{name}-tools-libs-devel
+Summary:               Assortment of tools for the Linux kernel
+Group:                 Development/System
+License:               GPLv2
+Requires:              %{name}-tools = %{version}-%{release}
+%ifarch %{cpupowerarchs}
+Provides:              cpupowerutils-devel = 1:009-0.6.p1
+Obsoletes:             cpupowerutils-devel < 1:009-0.6.p1
+%endif
+Requires:              %{name}-tools-libs = %{version}-%{release}
+Provides:              %{name}-tools-devel
+%description -n %{name}-tools-libs-devel
+This package contains the development files for the tools/ directory from
+the kernel source.
+
+%package -n %{name}-tools-debuginfo
+Summary:               Debug information for package %{name}-tools
+Group:                 Development/Debug
+Requires:              %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
+AutoReqProv:           no
+%description -n %{name}-tools-debuginfo
+This package provides debug information for package %{name}-tools.
+
+# Note that this pattern only works right to match the .build-id
+# symlinks because of the trailing nonmatching alternation and
+# the leading .*, because of find-debuginfo.sh's buggy handling
+# of matching the pattern against the symlinks file.
+%{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{_bindir}/centrino-decode(\.debug)?|.*%%{_bindir}/powernow-k8-decode(\.debug)?|.*%%{_bindir}/cpupower(\.debug)?|.*%%{_libdir}/libcpupower.*|.*%%{_bindir}/turbostat(\.debug)?|.*%%{_bindir}/x86_energy_perf_policy(\.debug)?|.*%%{_bindir}/tmon(\.debug)?|.*%%{_bindir}/lsgpio(\.debug)?|.*%%{_bindir}/gpio-hammer(\.debug)?|.*%%{_bindir}/gpio-event-mon(\.debug)?|.*%%{_bindir}/iio_event_monitor(\.debug)?|.*%%{_bindir}/iio_generic_buffer(\.debug)?|.*%%{_bindir}/lsiio(\.debug)?|.*%%{_bindir}/intel-speed-select(\.debug)?|.*%%{_bindir}/page_owner_sort(\.debug)?|.*%%{_bindir}/slabinfo(\.debug)?|.*%%{_sbindir}/intel_sdsi(\.debug)?|XXX' -o %{name}-tools-debuginfo.list}
+
+# with_tools
+%endif
+
+%if !%{with_realtime}
+%if %{with_bpftool}
+
+%package -n bpftool
+Summary:               Inspection and simple manipulation of eBPF programs and maps
+License:               GPLv2
+%description -n bpftool
+This package contains the bpftool, which allows inspection and simple
+manipulation of eBPF programs and maps.
+
+%package -n bpftool-debuginfo
+Summary:               Debug information for package bpftool
+Group:                 Development/Debug
+Requires:              %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
+AutoReqProv:           no
+%description -n bpftool-debuginfo
+This package provides debug information for the bpftool package.
+
+%{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{_sbindir}/bpftool(\.debug)?|XXX' -o bpftool-debuginfo.list}
+
+# with_bpftool
+%endif
+%endif
+
+%if %{with_selftests}
+
+%package selftests-internal
+Summary:               Kernel samples and selftests
+License:               GPLv2
+Requires:              binutils, bpftool, iproute-tc, nmap-ncat, python3
+%if %{with_realtime}
+Conflicts:             kernel-selftests-internal
+%else
+Conflicts:             kernel-rt-selftests-internal
+%endif
+%description selftests-internal
+Kernel sample programs and selftests.
+
+# Note that this pattern only works right to match the .build-id
+# symlinks because of the trailing nonmatching alternation and
+# the leading .*, because of find-debuginfo.sh's buggy handling
+# of matching the pattern against the symlinks file.
+%{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*%%{_libexecdir}/(ksamples|kselftests)/.*|XXX' -o selftests-debuginfo.list}
+
+# with_selftests
+%endif
+
+%if %{with_gcov}
+%package gcov
+Summary:               gcov graph and source files for coverage data collection.
+Group:                 Development/System
+%description gcov
+kernel-gcov includes the gcov graph and source files for gcov coverage collection.
+%endif
+
+%package -n %{name}-abi-stablelists
+Summary:               The Rocky Linux kernel ABI symbol stablelists
+Group:                 System Environment/Kernel
+AutoReqProv:           no
+Obsoletes:             %{name}-abi-whitelists < %{rpmversion}-%{pkg_release}
+Provides:              %{name}-abi-whitelists
+%description -n %{name}-abi-stablelists
+The kABI package contains information pertaining to the Rocky
+Linux kernel ABI, including lists of kernel symbols that are needed by
+external Linux kernel modules, and a yum plugin to aid enforcement.
+
+%if %{with_kabidw_base}
+%package kernel-kabidw-base-internal
+Summary:               The baseline dataset for kABI verification using DWARF data
+Group:                 System Environment/Kernel
+AutoReqProv:           no
+%description kernel-kabidw-base-internal
+The package contains data describing the current ABI of the Rocky
+Linux kernel, suitable for the kabi-dw tool.
+%endif
+
+#
+# This macro creates a kernel-<subpackage>-debuginfo package.
+#	%%kernel_debuginfo_package <subpackage>
+#
+%define kernel_debuginfo_package() \
+%package %{?1:%{1}-}debuginfo\
+Summary:               Debug information for package %{name}%{?1:-%{1}}\
+Group:                 Development/Debug\
+Requires:              %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}\
+Provides:              %{name}%{?1:-%{1}}-debuginfo-%{_target_cpu} = %{version}-%{release}\
+Provides:              installonlypkg(kernel)\
+AutoReqProv:           no\
+%description %{?1:%{1}-}debuginfo\
+This package provides debug information for package %{name}%{?1:-%{1}}.\
+This is required to use SystemTap with %{name}%{?1:-%{1}}-%{KVERREL}.\
+%{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '/.*/%%{KVERREL_RE}%{?1:[+]%{1}}/.*|/.*%%{KVERREL_RE}%{?1:\+%{1}}(\.debug)?' -o debuginfo%{?1}.list}\
+%{nil}
+
+#
+# This macro creates a kernel-<subpackage>-devel package.
+#	%%kernel_devel_package <subpackage> <pretty-name>
+#
+%define kernel_devel_package() \
+%package %{?1:%{1}-}devel\
+Summary:               Development package for building kernel modules to match the %{?2:%{2} }kernel\
+Group:                 System Environment/Kernel\
+Provides:              %{name}%{?1:-%{1}}-devel-%{_target_cpu} = %{version}-%{release}\
+Provides:              %{name}-devel-%{_target_cpu} = %{version}-%{release}%{?1:+%{1}}\
+Provides:              %{name}-devel-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+Provides:              installonlypkg(kernel)\
+AutoReqProv:           no\
+Requires(pre): findutils\
+Requires:              findutils\
+Recommends:            gcc flex bison openssl-devel make\
+Requires:              perl-interpreter\
+Recommends:            elfutils-libelf-devel\
+%description %{?1:%{1}-}devel\
+This package provides kernel headers and makefiles sufficient to build modules\
+against the %{?2:%{2} }kernel package.\
+%{nil}
+
+#
+# kernel-<variant>-ipaclones-internal package
+#
+%define kernel_ipaclones_package() \
+%package %{?1:%{1}-}ipaclones-internal\
+Summary:               *.ipa-clones files generated by -fdump-ipa-clones for kernel%{?1:-%{1}}\
+Group:                 System Environment/Kernel\
+AutoReqProv:           no\
+%description %{?1:%{1}-}ipaclones-internal\
+This package provides *.ipa-clones files.\
+%{nil}
+
+#
+# This macro creates a kernel-<subpackage>-modules-internal package.
+#	%%kernel_modules_internal_package <subpackage> <pretty-name>
+#
+%define kernel_modules_internal_package() \
+%package %{?1:%{1}-}modules-internal\
+Summary:               Extra kernel modules to match the %{?2:%{2} }kernel\
+Group:                 System Environment/Kernel\
+Provides:              %{name}%{?1:-%{1}}-modules-internal-%{_target_cpu} = %{version}-%{release}\
+Provides:              %{name}%{?1:-%{1}}-modules-internal-%{_target_cpu} = %{version}-%{release}%{?1:+%{1}}\
+Provides:              %{name}%{?1:-%{1}}-modules-internal = %{version}-%{release}%{?1:+%{1}}\
+Provides:              installonlypkg(kernel-module)\
+Provides:              %{name}%{?1:-%{1}}-modules-internal-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+Requires:              %{name}-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+Requires:              %{name}%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+AutoReq:               no\
+AutoProv:              yes\
+%description %{?1:%{1}-}modules-internal\
+This package provides kernel modules for the %{?2:%{2} }kernel package for Rocky internal usage.\
+%{nil}
+
+#
+# This macro creates a kernel-<subpackage>-modules-extra package.
+#	%%kernel_modules_extra_package <subpackage> <pretty-name>
+#
+%define kernel_modules_extra_package() \
+%package %{?1:%{1}-}modules-extra\
+Summary:               Extra kernel modules to match the %{?2:%{2} }kernel\
+Group:                 System Environment/Kernel\
+Provides:              %{name}%{?1:-%{1}}-modules-extra-%{_target_cpu} = %{version}-%{release}\
+Provides:              %{name}%{?1:-%{1}}-modules-extra-%{_target_cpu} = %{version}-%{release}%{?1:+%{1}}\
+Provides:              %{name}%{?1:-%{1}}-modules-extra = %{version}-%{release}%{?1:+%{1}}\
+Provides:              installonlypkg(kernel-module)\
+Provides:              %{name}%{?1:-%{1}}-modules-extra-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+Requires:              %{name}-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+Requires:              %{name}%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+AutoReq:               no\
+AutoProv:              yes\
+%description %{?1:%{1}-}modules-extra\
+This package provides less commonly used kernel modules for the %{?2:%{2} }kernel package.\
+%{nil}
+
+#
+# This macro creates a kernel-<subpackage>-modules package.
+#	%%kernel_modules_package <subpackage> <pretty-name>
+#
+%define kernel_modules_package() \
+%package %{?1:%{1}-}modules\
+Summary:               kernel modules to match the %{?2:%{2}-}core kernel\
+Group:                 System Environment/Kernel\
+Provides:              %{name}%{?1:-%{1}}-modules-%{_target_cpu} = %{version}-%{release}\
+Provides:              %{name}-modules-%{_target_cpu} = %{version}-%{release}%{?1:+%{1}}\
+Provides:              %{name}-modules = %{version}-%{release}%{?1:+%{1}}\
+Provides:              installonlypkg(kernel-module)\
+Provides:              %{name}%{?1:-%{1}}-modules-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+Requires:              %{name}-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+AutoReq:               no\
+AutoProv:              yes\
+%description %{?1:%{1}-}modules\
+This package provides commonly used kernel modules for the %{?2:%{2}-}core kernel package.\
+%{nil}
+
+#
+# this macro creates a kernel-<subpackage> meta package.
+#	%%kernel_meta_package <subpackage>
+#
+%define kernel_meta_package() \
+%package %{1}\
+summary:               kernel meta-package for the %{1} kernel\
+group:                 system environment/kernel\
+Requires:              %{name}-%{1}-core-uname-r = %{KVERREL}%{?variant}+%{1}\
+Requires:              %{name}-%{1}-modules-uname-r = %{KVERREL}%{?variant}+%{1}\
+%if %{with_realtime}\
+Requires:              rt-setup\
+%endif\
+Provides:              installonlypkg(kernel)\
+%description %{1}\
+The meta-package for the %{1} kernel\
+%{nil}
+
+%if %{with_realtime}
+#
+# this macro creates a kernel-rt-<subpackage>-kvm package
+# %%kernel_kvm_package <subpackage>
+#
+%define kernel_kvm_package() \
+%package %{?1:%{1}-}kvm\
+Summary:               KVM modules for package %{name}%{?1:-%{1}}\
+Group:                 System Environment/Kernel\
+Requires:              %{name}%{?1:-%{1}} = %{version}-%{release}\
+Provides:              installonlypkg(kernel-module)\
+Provides:              %{name}%{?1:-%{1}}-kvm-%{_target_cpu} = %{version}-%{release}\
+AutoReq:               no\
+%description -n %{name}%{?1:-%{1}}-kvm\
+This package provides KVM modules for package %{name}%{?1:-%{1}}.\
+%{nil}
+%endif
+
+#
+# This macro creates a %%{name}-<subpackage> and its -devel and -debuginfo too.
+#	%%define variant_summary The Linux kernel compiled for <configuration>
+#	%%kernel_variant_package [-n <pretty-name>] <subpackage>
+#
+%define kernel_variant_package(n:) \
+%package %{?1:%{1}-}core\
+Summary:               %{variant_summary}\
+Group:                 System Environment/Kernel\
+Provides:              %{name}-%{?1:%{1}-}core-uname-r = %{KVERREL}%{?variant}%{?1:+%{1}}\
+Provides:              installonlypkg(kernel)\
+%{expand:%%kernel_reqprovconf}\
+%if %{?1:1} %{!?1:0} \
+%{expand:%%kernel_meta_package %{?1:%{1}}}\
+%endif\
+%{expand:%%kernel_devel_package %{?1:%{1}} %{!?-n:%{?1:%{1}}}%{?-n:%{-n*}}}\
+%{expand:%%kernel_modules_package %{?1:%{1}} %{!?-n:%{?1:%{1}}}%{?-n:%{-n*}}}\
+%{expand:%%kernel_modules_extra_package %{?1:%{1}} %{!?-n:%{?1:%{1}}}%{?-n:%{-n*}}}\
+%{expand:%%kernel_modules_internal_package %{?1:%{1}} %{!?-n:%{?1:%{1}}}%{?-n:%{-n*}}}\
+%{expand:%%kernel_debuginfo_package %{?1:%{1}}}\
+%if %{with_realtime} \
+%{expand:%%kernel_kvm_package %{?1:%{1}}} %{!?{-n}:%{1}}%{?{-n}:%{-n*}}}\
+%endif \
+%{nil}
+
+# Now, each variant package.
+
+%if %{with_zfcpdump}
+%define variant_summary The Linux kernel compiled for zfcpdump usage
+%kernel_variant_package zfcpdump
+%description zfcpdump-core
+The kernel package contains the Linux kernel (vmlinuz) for use by the
+zfcpdump infrastructure.
+# with_zfcpdump
+%endif
+
+%define variant_summary The Linux kernel compiled with extra debugging enabled
+%kernel_variant_package debug
+%description debug-core
+The kernel package contains the Linux kernel (vmlinuz), the core of any
+Linux operating system.  The kernel handles the basic functions
+of the operating system:  memory allocation, process allocation, device
+input and output, etc.
+
+This variant of the kernel has numerous debugging options enabled.
+It should only be installed when trying to gather additional information
+on kernel bugs, as some of these options impact performance noticably.
+
+# And finally the main -core package
+
+%define variant_summary The Linux kernel
+%kernel_variant_package
+%description core
+The kernel package contains the Linux kernel (vmlinuz), the core of any
+Linux operating system.  The kernel handles the basic functions
+of the operating system: memory allocation, process allocation, device
+input and output, etc.
+
+%if %{with_ipaclones}
+%kernel_ipaclones_package
+%endif
+
+%prep
+# do a few sanity-checks for --with *only builds
+%if %{with_baseonly}
+%if !%{with_up}
+echo "Cannot build --with baseonly, up build is disabled"
+exit 1
+%endif
+%endif
+
+# more sanity checking; do it quietly
+if [ "%{patches}" != "%%{patches}" ] ; then
+  for patch in %{patches} ; do
+    if [ ! -f $patch ] ; then
+      echo "ERROR: Patch  ${patch##/*/}  listed in specfile but is missing"
+      exit 1
+    fi
+  done
+fi 2>/dev/null
+
+patch_command='patch -p1 -F1 -s'
+ApplyPatch()
+{
+  local patch=$1
+  shift
+  if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
+    exit 1
+  fi
+  if ! grep -E "^Patch[0-9]+: $patch\$" %{_specdir}/${RPM_PACKAGE_NAME%%%%%{?variant}}.spec ; then
+    if [ "${patch:0:8}" != "patch-4." ] ; then
+      echo "ERROR: Patch  $patch  not listed as a source patch in specfile"
+      exit 1
+    fi
+  fi 2>/dev/null
+  case "$patch" in
+  *.bz2) bunzip2 < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
+  *.gz)  gunzip  < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
+  *.xz)  unxz    < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
+  *) $patch_command ${1+"$@"} < "$RPM_SOURCE_DIR/$patch" ;;
+  esac
+}
+
+# don't apply patch if it's empty
+ApplyOptionalPatch()
+{
+  local patch=$1
+  shift
+  if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
+    exit 1
+  fi
+  local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}')
+  if [ "$C" -gt 9 ]; then
+    ApplyPatch $patch ${1+"$@"}
+  fi
+}
+
+%setup -q -n %{name}-%{rpmversion}-%{pkgrelease} -c
+mv linux-%{rpmversion}-%{pkgrelease} linux-%{KVERREL}
+
+cd linux-%{KVERREL}
+
+ApplyOptionalPatch linux-kernel-test.patch
+ApplyOptionalPatch 1000-Debrand-specific-Red-Hat-messages.patch
+
+
+# END OF PATCH APPLICATIONS
+
+# Any further pre-build tree manipulations happen here.
+
+%if %{with_realtime}
+# remove the localversion-rt file since it screws around with
+# the uname output
+if [ -f localversion-rt ]; then
+   rm -f localversion-rt
+fi
+%endif
+
+chmod +x scripts/checkpatch.pl
+mv COPYING COPYING-%{version}
+
+# This Prevents scripts/setlocalversion from mucking with our version numbers.
+touch .scmversion
+
+# Do not use "ambiguous" python shebangs. RHEL 8 now has a new script
+# (/usr/lib/rpm/redhat/brp-mangle-shebangs), which forces us to specify a
+# "non-ambiguous" python shebang for scripts we ship in buildroot. This
+# script throws an error like below:
+# *** ERROR: ambiguous python shebang in /usr/bin/kvm_stat: #!/usr/bin/python. Change it to python3 (or python2) explicitly.
+# We patch all sources below for which we got a report/error.
+pathfix.py -i %{__python3} -p -n \
+	scripts/show_delta \
+	scripts/diffconfig \
+	scripts/bloat-o-meter \
+	tools/perf/tests/attr.py \
+	tools/perf/scripts/python/stat-cpi.py \
+	tools/perf/scripts/python/sched-migration.py \
+	Documentation
+
+%define make make %{?cross_opts} HOSTCFLAGS="%{?build_hostcflags}" HOSTLDFLAGS="%{?build_hostldflags}"
+
+# only deal with configs if we are going to build for the arch
+%ifnarch %nobuildarches
+
+if [ -L configs ]; then
+	rm -f configs
+fi
+mkdir configs
+cd configs
+
+# Drop some necessary files from the source dir into the buildroot
+cp $RPM_SOURCE_DIR/kernel-*.config .
+cp %{SOURCE41} .
+VERSION=%{version} NAME=%{name} ./generate_all_configs.sh
+
+# Note we need to disable these flags for cross builds because the flags
+# from redhat-rpm-config assume that host == target so target arch
+# flags cause issues with the host compiler.
+%if !%{with_cross}
+%define build_hostcflags  ${RPM_OPT_FLAGS}
+%define build_hostldflags %{__global_ldflags}
+%endif
+
+# enable GCOV kernel config options if gcov is on
+%if %{with_gcov}
+for i in *.config
+do
+  sed -i 's/# CONFIG_GCOV_KERNEL is not set/CONFIG_GCOV_KERNEL=y\nCONFIG_GCOV_PROFILE_ALL=y\n/' $i
+done
+%endif
+
+# Add DUP and kpatch certificates to system trusted keys for RHEL
+%if 0%{?rhel}
+%if %{signkernel}%{signmodules}
+openssl x509 -inform der -in %{driver_cert} -out rheldup3.pem
+openssl x509 -inform der -in %{kpatch_cert} -out rhelkpatch1.pem
+cat rheldup3.pem rhelkpatch1.pem > ../certs/rhel.pem
+%ifarch ppc64le
+openssl x509 -inform pem -in %{secureboot_ca_0} -out secureboot.pem
+cat secureboot.pem >> ../certs/rhel.pem
+%endif
+for i in *.config; do
+  sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' $i
+done
+%endif
+%endif
+
+cp %{SOURCE42} .
+./process_configs.sh -w -c %{name} %{rpmversion} %{?cross_opts}
+
+# end of kernel config
+%endif
+
+cd ..
+# # End of Configs stuff
+
+# get rid of unwanted files resulting from patch fuzz
+find . \( -name "*.orig" -o -name "*~" \) -exec rm -f {} \; >/dev/null
+
+# remove unnecessary SCM files
+find . -name .gitignore -exec rm -f {} \; >/dev/null
+
+cd ..
+
+###
+### build
+###
+%build
+
+%if %{with_sparse}
+%define sparse_mflags	C=1
+%endif
+
+cp_vmlinux()
+{
+  eu-strip --remove-comment -o "$2" "$1"
+}
+
+InitBuildVars() {
+    # Initialize the kernel .config file and create some variables that are
+    # needed for the actual build process.
+
+    Flavour=$1
+    Flav=${Flavour:++${Flavour}}
+
+    # Pick the right kernel config file
+    Config=%{name}-%{version}-%{_target_cpu}${Flavour:+-${Flavour}}.config
+    DevelDir=/usr/src/kernels/%{KVERREL}${Flav}
+
+    KernelVer=%{version}-%{release}.%{_target_cpu}${Flav}
+
+    # make sure EXTRAVERSION says what we want it to say
+    perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}.%{_target_cpu}${Flav}/" Makefile
+
+    %{make} -s %{?_smp_mflags} mrproper
+    cp configs/$Config .config
+
+    %if %{signkernel}%{signmodules}
+    cp %{SOURCE9} certs/.
+    %endif
+
+    Arch=`head -1 .config | cut -b 3-`
+    echo USING ARCH=$Arch
+
+    KCFLAGS="%{?kcflags}"
+
+    # add kpatch flags for base kernel
+    if [ "$Flavour" == "" ]; then
+        KCFLAGS="$KCFLAGS %{?kpatch_kcflags}"
+    fi
+}
+
+BuildKernel() {
+    MakeTarget=$1
+    KernelImage=$2
+    Flavour=$4
+    DoVDSO=$3
+    Flav=${Flavour:++${Flavour}}
+    InstallName=${5:-vmlinuz}
+
+    DoModules=1
+    if [ "$Flavour" = "zfcpdump" ]; then
+	    DoModules=0
+    fi
+
+    # When the bootable image is just the ELF kernel, strip it.
+    # We already copy the unstripped file into the debuginfo package.
+    if [ "$KernelImage" = vmlinux ]; then
+      CopyKernel=cp_vmlinux
+    else
+      CopyKernel=cp
+    fi
+
+    InitBuildVars $Flavour
+
+    echo BUILDING A KERNEL FOR ${Flavour} %{_target_cpu}...
+
+    %{make} -s ARCH=$Arch oldnoconfig >/dev/null
+    %{make} -s ARCH=$Arch V=1 %{?_smp_mflags} KCFLAGS="$KCFLAGS" WITH_GCOV="%{?with_gcov}" $MakeTarget %{?sparse_mflags} %{?kernel_mflags}
+    if [ $DoModules -eq 1 ]; then
+	%{make} -s ARCH=$Arch V=1 %{?_smp_mflags} KCFLAGS="$KCFLAGS" WITH_GCOV="%{?with_gcov}" modules %{?sparse_mflags} || exit 1
+    fi
+
+    mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
+    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
+%if %{with_debuginfo}
+    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/%{image_install_path}
+%endif
+
+%ifarch aarch64
+    %{make} -s ARCH=$Arch V=1 dtbs dtbs_install INSTALL_DTBS_PATH=$RPM_BUILD_ROOT/%{image_install_path}/dtb-$KernelVer
+    cp -r $RPM_BUILD_ROOT/%{image_install_path}/dtb-$KernelVer $RPM_BUILD_ROOT/lib/modules/$KernelVer/dtb
+    find arch/$Arch/boot/dts -name '*.dtb' -type f | xargs rm -f
+%endif
+
+    # Start installing the results
+    install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
+    install -m 644 .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/config
+    install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
+    install -m 644 System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/System.map
+
+    # We estimate the size of the initramfs because rpm needs to take this size
+    # into consideration when performing disk space calculations. (See bz #530778)
+    dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initramfs-$KernelVer.img bs=1M count=20
+
+    if [ -f arch/$Arch/boot/zImage.stub ]; then
+      cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
+      cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/lib/modules/$KernelVer/zImage.stub-$KernelVer || :
+    fi
+
+    %if %{signkernel}
+    if [ "$KernelImage" = vmlinux ]; then
+        # We can't strip and sign $KernelImage in place, because
+        # we need to preserve original vmlinux for debuginfo.
+        # Use a copy for signing.
+        $CopyKernel $KernelImage $KernelImage.tosign
+        KernelImage=$KernelImage.tosign
+        CopyKernel=cp
+    fi
+
+    # Sign the image if we're using EFI
+    # aarch64 kernels are gziped EFI images
+    KernelExtension=${KernelImage##*.}
+    if [ "$KernelExtension" == "gz" ]; then
+        SignImage=${KernelImage%.*}
+    else
+        SignImage=$KernelImage
+    fi
+
+    %ifarch x86_64 aarch64
+    %pesign -s -i $SignImage -o vmlinuz.signed -a %{secureboot_ca_0} -c %{secureboot_key_0} -n %{pesign_name_0}
+    %endif
+    %ifarch s390x ppc64le
+    if [ -x /usr/bin/rpm-sign ]; then
+	rpm-sign --key "%{pesign_name_0}" --lkmsign $SignImage --output vmlinuz.signed
+    elif [ $DoModules -eq 1 ]; then
+	chmod +x scripts/sign-file
+	./scripts/sign-file -p sha256 certs/signing_key.pem certs/signing_key.x509 $SignImage vmlinuz.signed
+    else
+	mv $SignImage vmlinuz.signed
+    fi
+    %endif
+
+    if [ ! -s vmlinuz.signed ]; then
+        echo "pesigning failed"
+        exit 1
+    fi
+    mv vmlinuz.signed $SignImage
+    if [ "$KernelExtension" == "gz" ]; then
+        gzip -f9 $SignImage
+    fi
+    # signkernel
+    %endif
+
+    $CopyKernel $KernelImage \
+                $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
+    chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
+    cp $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer $RPM_BUILD_ROOT/lib/modules/$KernelVer/$InstallName
+
+    # hmac sign the kernel for FIPS
+    echo "Creating hmac file: $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac"
+    ls -l $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
+    sha512hmac $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer | sed -e "s,$RPM_BUILD_ROOT,," > $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac;
+    cp $RPM_BUILD_ROOT/%{image_install_path}/.vmlinuz-$KernelVer.hmac $RPM_BUILD_ROOT/lib/modules/$KernelVer/.vmlinuz.hmac
+
+    if [ $DoModules -eq 1 ]; then
+	# Override $(mod-fw) because we don't want it to install any firmware
+	# we'll get it from the linux-firmware package and we don't want conflicts
+	%{make} -s %{?_smp_mflags} ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
+    fi
+
+%if %{with_gcov}
+    # install gcov-needed files to $BUILDROOT/$BUILD/...:
+    #   gcov_info->filename is absolute path
+    #   gcno references to sources can use absolute paths (e.g. in out-of-tree builds)
+    #   sysfs symlink targets (set up at compile time) use absolute paths to BUILD dir
+    find . \( -name '*.gcno' -o -name '*.[chS]' \) -exec install -D '{}' "$RPM_BUILD_ROOT/$(pwd)/{}" \;
+%endif
+
+    if [ $DoVDSO -ne 0 ]; then
+        %{make} -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT vdso_install KERNELRELEASE=$KernelVer
+        if [ ! -s ldconfig-kernel.conf ]; then
+          echo > ldconfig-kernel.conf "\
+    # Placeholder file, no vDSO hwcap entries used in this kernel."
+        fi
+        %{__install} -D -m 444 ldconfig-kernel.conf \
+            $RPM_BUILD_ROOT/etc/ld.so.conf.d/%{name}-$KernelVer.conf
+        rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/vdso/.build-id
+    fi
+
+    # And save the headers/makefiles etc for building modules against
+    #
+    # This all looks scary, but the end result is supposed to be:
+    # * all arch relevant include/ files
+    # * all Makefile/Kconfig files
+    # * all script/ files
+
+    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
+    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
+    # dirs for additional modules per module-init-tools, kbuild/modules.txt
+    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates
+    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/weak-updates
+    # first copy everything
+    cp --parents `find  -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    cp System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    if [ -s Module.markers ]; then
+      cp Module.markers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    fi
+
+    # create the kABI metadata for use in packaging
+    # NOTENOTE: the name symvers is used by the rpm backend
+    # NOTENOTE: to discover and run the /usr/lib/rpm/fileattrs/kabi.attr
+    # NOTENOTE: script which dynamically adds exported kernel symbol
+    # NOTENOTE: checksums to the rpm metadata provides list.
+    # NOTENOTE: if you change the symvers name, update the backend too
+    echo "**** GENERATING kernel ABI metadata ****"
+    gzip -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz
+    cp $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz $RPM_BUILD_ROOT/lib/modules/$KernelVer/symvers.gz
+
+%if %{with_kabichk}
+    echo "**** kABI checking is enabled in kernel SPEC file. ****"
+    chmod 0755 $RPM_SOURCE_DIR/check-kabi
+    if [ -e $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour ]; then
+        cp $RPM_SOURCE_DIR/Module.kabi_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
+        $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
+        # for now, don't keep it around.
+        rm $RPM_BUILD_ROOT/Module.kabi
+    else
+        echo "**** NOTE: Cannot find reference Module.kabi file. ****"
+    fi
+%endif
+
+%if %{with_kabidupchk}
+    echo "**** kABI DUP checking is enabled in kernel SPEC file. ****"
+    if [ -e $RPM_SOURCE_DIR/Module.kabi_dup_%{_target_cpu}$Flavour ]; then
+        cp $RPM_SOURCE_DIR/Module.kabi_dup_%{_target_cpu}$Flavour $RPM_BUILD_ROOT/Module.kabi
+        $RPM_SOURCE_DIR/check-kabi -k $RPM_BUILD_ROOT/Module.kabi -s Module.symvers || exit 1
+        # for now, don't keep it around.
+        rm $RPM_BUILD_ROOT/Module.kabi
+    else
+        echo "**** NOTE: Cannot find DUP reference Module.kabi file. ****"
+    fi
+%endif
+
+%if %{with_kabidw_base}
+    # Don't build kabi base for debug kernels
+    if [ "$Flavour" != "zfcpdump" -a "$Flavour" != "debug" ]; then
+        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf
+        tar xjvf %{SOURCE301} -C $RPM_BUILD_ROOT/kabi-dwarf
+
+        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf/stablelists
+        tar xjvf %{SOURCE300} -C $RPM_BUILD_ROOT/kabi-dwarf/stablelists
+
+        echo "**** GENERATING DWARF-based kABI baseline dataset ****"
+        chmod 0755 $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh
+        $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh generate \
+            "$RPM_BUILD_ROOT/kabi-dwarf/stablelists/kabi-current/kabi_stablelist_%{_target_cpu}" \
+            "$(pwd)" \
+            "$RPM_BUILD_ROOT/kabidw-base/%{_target_cpu}${Flavour:+.${Flavour}}" || :
+
+        rm -rf $RPM_BUILD_ROOT/kabi-dwarf
+    fi
+%endif
+
+%if %{with_kabidwchk}
+    if [ "$Flavour" != "zfcpdump" ]; then
+        mkdir -p $RPM_BUILD_ROOT/kabi-dwarf
+        tar xjvf %{SOURCE301} -C $RPM_BUILD_ROOT/kabi-dwarf
+        if [ -d "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}" ]; then
+            mkdir -p $RPM_BUILD_ROOT/kabi-dwarf/stablelists
+            tar xjvf %{SOURCE300} -C $RPM_BUILD_ROOT/kabi-dwarf/stablelists
+
+            echo "**** GENERATING DWARF-based kABI dataset ****"
+            chmod 0755 $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh
+            $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh generate \
+                "$RPM_BUILD_ROOT/kabi-dwarf/stablelists/kabi-current/kabi_stablelist_%{_target_cpu}" \
+                "$(pwd)" \
+                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}.tmp" || :
+
+            echo "**** kABI DWARF-based comparison report ****"
+            $RPM_BUILD_ROOT/kabi-dwarf/run_kabi-dw.sh compare \
+                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}" \
+                "$RPM_BUILD_ROOT/kabi-dwarf/base/%{_target_cpu}${Flavour:+.${Flavour}}.tmp" || :
+            echo "**** End of kABI DWARF-based comparison report ****"
+        else
+            echo "**** Baseline dataset for kABI DWARF-BASED comparison report not found ****"
+        fi
+
+        rm -rf $RPM_BUILD_ROOT/kabi-dwarf
+    fi
+%endif
+
+    # then drop all but the needed Makefiles/Kconfig files
+    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
+    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
+    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
+    cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/tracing
+    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/spdxcheck.py
+
+    # Files for 'make scripts' to succeed with kernel-devel.
+    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/security/selinux/include
+    cp -a --parents security/selinux/include/classmap.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    cp -a --parents security/selinux/include/initial_sid_to_string.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/include/tools
+    cp -a --parents tools/include/tools/be_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+    cp -a --parents tools/include/tools/le_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+
+    if [ -f tools/objtool/objtool ]; then
+      cp -a tools/objtool/objtool $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/objtool/ || :
+    fi
+    if [ -d arch/$Arch/scripts ]; then
+      cp -a arch/$Arch/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch} || :
+    fi
+    if [ -f arch/$Arch/*lds ]; then
+      cp -a arch/$Arch/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch}/ || :
+    fi
+    if [ -f arch/%{asmarch}/kernel/module.lds ]; then
+      cp -a --parents arch/%{asmarch}/kernel/module.lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    fi
+    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
+    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
+%ifarch ppc64le
+    cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+%endif
+    if [ -d arch/%{asmarch}/include ]; then
+      cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    fi
+%ifarch aarch64
+    # arch/arm64/include/asm/xen references arch/arm
+    cp -a --parents arch/arm/include/asm/xen $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    # arch/arm64/include/asm/opcodes.h references arch/arm
+    cp -a --parents arch/arm/include/asm/opcodes.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+%endif
+    cp -a include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
+%ifarch x86_64
+    # files for 'make prepare' to succeed with kernel-devel
+    cp -a --parents arch/x86/entry/syscalls/syscall_32.tbl $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/entry/syscalls/syscalltbl.sh $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/entry/syscalls/syscallhdr.sh $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/entry/syscalls/syscall_64.tbl $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/tools/relocs_32.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/tools/relocs_64.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/tools/relocs.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/tools/relocs_common.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/tools/relocs.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents tools/include/tools/le_byteshift.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/purgatory/purgatory.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/purgatory/stack.S $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/purgatory/setup-x86_64.S $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/purgatory/entry64.S $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/boot/string.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/boot/string.c $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    cp -a --parents arch/x86/boot/ctype.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+%endif
+    # Make sure the Makefile and version.h have a matching timestamp so that
+    # external modules can be built
+    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/generated/uapi/linux/version.h
+
+    # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
+    cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
+
+%if %{with_debuginfo}
+    eu-readelf -n vmlinux | grep "Build ID" | awk '{print $NF}' > vmlinux.id
+    cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id
+
+    #
+    # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
+    #
+    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
+    cp vmlinux $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
+    if [ -n "%{vmlinux_decompressor}" ]; then
+	    eu-readelf -n  %{vmlinux_decompressor} | grep "Build ID" | awk '{print $NF}' > vmlinux.decompressor.id
+	    # Without build-id the build will fail. But for s390 the build-id
+	    # wasn't added before 5.11. In case it is missing prefer not
+	    # packaging the debuginfo over a build failure.
+	    if [ -s vmlinux.decompressor.id ]; then
+		    cp vmlinux.decompressor.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.decompressor.id
+		    cp %{vmlinux_decompressor} $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer/vmlinux.decompressor
+	    fi
+    fi
+%endif
+
+    find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
+
+    # mark modules executable so that strip-to-file can strip them
+    xargs --no-run-if-empty chmod u+x < modnames
+
+    # Generate a list of modules for block and networking.
+
+    grep -F /drivers/ modnames | xargs --no-run-if-empty nm -upA |
+    sed -n 's,^.*/\([^/]*\.ko\):  *U \(.*\)$,\1 \2,p' > drivers.undef
+
+    collect_modules_list()
+    {
+      sed -r -n -e "s/^([^ ]+) \\.?($2)\$/\\1/p" drivers.undef |
+        LC_ALL=C sort -u > $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
+      if [ ! -z "$3" ]; then
+        sed -r -e "/^($3)\$/d" -i $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
+      fi
+    }
+
+    collect_modules_list networking \
+      'register_netdev|ieee80211_register_hw|usbnet_probe|phy_driver_register|rt(l_|2x00)(pci|usb)_probe|register_netdevice'
+    collect_modules_list block \
+      'ata_scsi_ioctl|scsi_add_host|scsi_add_host_with_dma|blk_alloc_queue|blk_init_queue|register_mtd_blktrans|scsi_esp_register|scsi_register_device_handler|blk_queue_physical_block_size' 'pktcdvd.ko|dm-mod.ko'
+    collect_modules_list drm \
+      'drm_open|drm_init'
+    collect_modules_list modesetting \
+      'drm_crtc_init'
+%if %{with_realtime}
+    collect_modules_list kvm \
+      'kvm_init|kvmgt_init'
+%endif
+
+    # detect missing or incorrect license tags
+    ( find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name '*.ko' | xargs /sbin/modinfo -l | \
+        grep -E -v 'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' ) && exit 1
+
+    # remove files that will be auto generated by depmod at rpm -i time
+    pushd $RPM_BUILD_ROOT/lib/modules/$KernelVer/
+        rm -f modules.{alias*,builtin.bin,dep*,*map,symbols*,devname,softdep}
+    popd
+
+    # Identify modules in the kernel-modules-extras package
+    %{SOURCE17} $RPM_BUILD_ROOT lib/modules/$KernelVer %{SOURCE19}
+    # Identify modules in the kernel-modules-internal package
+    %{SOURCE17} $RPM_BUILD_ROOT lib/modules/$KernelVer %{SOURCE44} internal
+%if %{with_realtime}
+    # Identify modules in the kernel-rt-kvm package
+    %{SOURCE17} $RPM_BUILD_ROOT lib/modules/$KernelVer %{SOURCE400} kvm
+%endif
+
+    #
+    # Generate the kernel-core and kernel-modules files lists
+    #
+
+    # Copy the System.map file for depmod to use, and create a backup of the
+    # full module tree so we can restore it after we're done filtering
+    cp System.map $RPM_BUILD_ROOT/.
+    pushd $RPM_BUILD_ROOT
+    mkdir restore
+    cp -r lib/modules/$KernelVer/* restore/.
+
+    # don't include anything going into kernel-modules-extra in the file lists
+    xargs rm -rf < mod-extra.list
+    # don't include anything going int kernel-modules-internal in the file lists
+    xargs rm -rf < mod-internal.list
+%if %{with_realtime}
+    # don't include anything going into kernel-rt-kvm in the file lists
+    xargs rm -rf < mod-kvm.list
+%endif
+
+    if [ $DoModules -eq 1 ]; then
+	# Find all the module files and filter them out into the core and
+	# modules lists.  This actually removes anything going into -modules
+	# from the dir.
+	find lib/modules/$KernelVer/kernel -name *.ko | sort -n > modules.list
+	cp $RPM_SOURCE_DIR/filter-*.sh .
+	%{SOURCE99} modules.list %{_target_cpu}
+	rm filter-*.sh
+
+	# Run depmod on the resulting module tree and make sure it isn't broken
+	depmod -b . -aeF ./System.map $KernelVer &> depmod.out
+	if [ -s depmod.out ]; then
+	    echo "Depmod failure"
+	    cat depmod.out
+	    exit 1
+	else
+	    rm depmod.out
+	fi
+    else
+	# Ensure important files/directories exist to let the packaging succeed
+	echo '%%defattr(-,-,-)' > modules.list
+	echo '%%defattr(-,-,-)' > k-d.list
+	mkdir -p lib/modules/$KernelVer/kernel
+	# Add files usually created by make modules, needed to prevent errors
+	# thrown by depmod during package installation
+	touch lib/modules/$KernelVer/modules.order
+	touch lib/modules/$KernelVer/modules.builtin
+    fi
+
+    # remove files that will be auto generated by depmod at rpm -i time
+    pushd $RPM_BUILD_ROOT/lib/modules/$KernelVer/
+        rm -f modules.{alias*,builtin.bin,dep*,*map,symbols*,devname,softdep}
+    popd
+
+    # Go back and find all of the various directories in the tree.  We use this
+    # for the dir lists in kernel-core
+    find lib/modules/$KernelVer/kernel -mindepth 1 -type d | sort -n > module-dirs.list
+
+    # Cleanup
+    rm System.map
+    cp -r restore/* lib/modules/$KernelVer/.
+    rm -rf restore
+    popd
+
+    # Make sure the files lists start with absolute paths or rpmbuild fails.
+    # Also add in the dir entries
+    sed -e 's/^lib*/\/lib/' %{?zipsed} $RPM_BUILD_ROOT/k-d.list > ../%{name}${Flavour:+-${Flavour}}-modules.list
+    sed -e 's/^lib*/%dir \/lib/' %{?zipsed} $RPM_BUILD_ROOT/module-dirs.list > ../%{name}${Flavour:+-${Flavour}}-core.list
+    sed -e 's/^lib*/\/lib/' %{?zipsed} $RPM_BUILD_ROOT/modules.list >> ../%{name}${Flavour:+-${Flavour}}-core.list
+    sed -e 's/^lib*/\/lib/' %{?zipsed} $RPM_BUILD_ROOT/mod-extra.list >> ../%{name}${Flavour:+-${Flavour}}-modules-extra.list
+    sed -e 's/^lib*/\/lib/' %{?zipsed} $RPM_BUILD_ROOT/mod-internal.list >> ../%{name}${Flavour:+-${Flavour}}-modules-internal.list
+%if %{with_realtime}
+    sed -e 's/^lib*/\/lib/' %{?zipsed} $RPM_BUILD_ROOT/mod-kvm.list >> ../%{name}${Flavour:+-${Flavour}}-kvm.list
+%endif
+
+    # Cleanup
+    rm -f $RPM_BUILD_ROOT/k-d.list
+    rm -f $RPM_BUILD_ROOT/modules.list
+    rm -f $RPM_BUILD_ROOT/module-dirs.list
+    rm -f $RPM_BUILD_ROOT/mod-extra.list
+    rm -f $RPM_BUILD_ROOT/mod-internal.list
+%if %{with_realtime}
+    rm -f $RPM_BUILD_ROOT/mod-kvm.list
+%endif
+
+%if %{signmodules}
+    if [ $DoModules -eq 1 ]; then
+	# Save the signing keys so we can sign the modules in __modsign_install_post
+	cp certs/signing_key.pem certs/signing_key.pem.sign${Flav}
+	cp certs/signing_key.x509 certs/signing_key.x509.sign${Flav}
+    fi
+%endif
+
+%if %{with_cross}
+    make -C $RPM_BUILD_ROOT/lib/modules/$KernelVer/build M=scripts clean
+    sed -i 's/REBUILD_SCRIPTS_FOR_CROSS:=0/REBUILD_SCRIPTS_FOR_CROSS:=1/' $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile
+%endif
+
+    # Move the devel headers out of the root file system
+    mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
+    mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
+
+    # This is going to create a broken link during the build, but we don't use
+    # it after this point.  We need the link to actually point to something
+    # when kernel-devel is installed, and a relative link doesn't work across
+    # the F17 UsrMove feature.
+    ln -sf $DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
+
+    # Generate vmlinux.h and put it to kernel-devel path
+    bpftool btf dump file vmlinux format c > $RPM_BUILD_ROOT/$DevelDir/vmlinux.h
+
+    # prune junk from kernel-devel
+    find $RPM_BUILD_ROOT/usr/src/kernels -name ".*.cmd" -exec rm -f {} \;
+
+    # build a BLS config for this kernel
+    %{SOURCE43} "$KernelVer" "$RPM_BUILD_ROOT" "%{?variant}"
+
+    # Red Hat UEFI Secure Boot CA cert, which can be used to authenticate the kernel
+    mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer
+    install -m 0644 %{secureboot_ca_0} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/kernel-signing-ca.cer
+    %ifarch s390x ppc64le
+    if [ $DoModules -eq 1 ]; then
+	if [ -x /usr/bin/rpm-sign ]; then
+	    install -m 0644 %{secureboot_key_0} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/%{signing_key_filename}
+	else
+	    install -m 0644 certs/signing_key.x509.sign${Flav} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/kernel-signing-ca.cer
+	    openssl x509 -in certs/signing_key.pem.sign${Flav} -outform der -out $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/%{signing_key_filename}
+	    chmod 0644 $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/%{signing_key_filename}
+	fi
+    fi
+    %endif
+
+%if %{with_ipaclones}
+    MAXPROCS=$(echo %{?_smp_mflags} | sed -n 's/-j\s*\([0-9]\+\)/\1/p')
+    if [ -z "$MAXPROCS" ]; then
+        MAXPROCS=1
+    fi
+    if [ "$Flavour" == "" ]; then
+        mkdir -p $RPM_BUILD_ROOT/$DevelDir-ipaclones
+        find . -name '*.ipa-clones' | xargs -i{} -r -n 1 -P $MAXPROCS install -m 644 -D "{}" "$RPM_BUILD_ROOT/$DevelDir-ipaclones/{}"
+    fi
+%endif
+
+}
+
+###
+# DO it...
+###
+
+# prepare directories
+rm -rf $RPM_BUILD_ROOT
+mkdir -p $RPM_BUILD_ROOT/boot
+mkdir -p $RPM_BUILD_ROOT%{_libexecdir}
+
+cd linux-%{KVERREL}
+
+
+%if %{with_debug}
+BuildKernel %make_target %kernel_image %{with_vdso_install} debug
+%endif
+
+%if %{with_zfcpdump}
+BuildKernel %make_target %kernel_image %{with_vdso_install} zfcpdump
+%endif
+
+%if %{with_up}
+BuildKernel %make_target %kernel_image %{with_vdso_install}
+%endif
+
+%ifnarch noarch i686
+%if !%{with_debug} && !%{with_zfcpdump} && !%{with_up}
+# If only building the user space tools, then initialize the build environment
+# and some variables so that the various userspace tools can be built.
+InitBuildVars
+%endif
+%endif
+
+%ifarch aarch64
+%global perf_build_extra_opts CORESIGHT=1
+%endif
+%global perf_make \
+  make EXTRA_CFLAGS="${RPM_OPT_FLAGS}" LDFLAGS="%{__global_ldflags}" %{?cross_opts} -C tools/perf V=1 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 LIBBPF_DYNAMIC=1 LIBTRACEEVENT_DYNAMIC=1 %{?perf_build_extra_opts} prefix=%{_prefix} PYTHON=%{__python3}
+%if %{with_perf}
+# perf
+# make sure check-headers.sh is executable
+chmod +x tools/perf/check-headers.sh
+%{perf_make} DESTDIR=$RPM_BUILD_ROOT all
+%endif
+
+%global tools_make \
+  %{make} CFLAGS="${RPM_OPT_FLAGS}" LDFLAGS="%{__global_ldflags}" V=1
+
+%if %{with_tools}
+%ifarch %{cpupowerarchs}
+# cpupower
+# make sure version-gen.sh is executable.
+chmod +x tools/power/cpupower/utils/version-gen.sh
+%{tools_make} -C tools/power/cpupower CPUFREQ_BENCH=false DEBUG=false
+%ifarch x86_64
+    pushd tools/power/cpupower/debug/x86_64
+    %{tools_make} centrino-decode powernow-k8-decode
+    popd
+%endif
+%ifarch x86_64
+   pushd tools/power/x86/x86_energy_perf_policy/
+   %{tools_make}
+   popd
+   pushd tools/power/x86/turbostat
+   %{tools_make}
+   popd
+   pushd tools/power/x86/intel-speed-select
+   %{make} CFLAGS+="-D_GNU_SOURCE -Iinclude -I/usr/include/libnl3"
+   popd
+   pushd tools/arch/x86/intel_sdsi
+   %{tools_make}
+   popd
+%endif
+%endif
+pushd tools/thermal/tmon/
+%{tools_make}
+popd
+pushd tools/iio/
+%{tools_make}
+popd
+pushd tools/gpio/
+%{tools_make}
+popd
+# build VM tools
+pushd tools/vm/
+%{tools_make} slabinfo page_owner_sort
+popd
+%endif
+
+if [ -f $DevelDir/vmlinux.h ]; then
+  RPM_VMLINUX_H=$DevelDir/vmlinux.h
+fi
+
+%global bpftool_make \
+  make EXTRA_CFLAGS="${RPM_OPT_FLAGS}" EXTRA_LDFLAGS="%{__global_ldflags}" DESTDIR=$RPM_BUILD_ROOT VMLINUX_H="${RPM_VMLINUX_H}" V=1
+%if %{with_bpftool}
+pushd tools/bpf/bpftool
+%{bpftool_make}
+popd
+%endif
+
+%if %{with_selftests}
+# Unfortunately, samples/bpf/Makefile expects that the headers are installed
+# in the source tree. We installed them previously to $RPM_BUILD_ROOT/usr
+# but there's no way to tell the Makefile to take them from there.
+%{make} %{?_smp_mflags} headers_install
+%{make} %{?_smp_mflags} ARCH=$Arch V=1 samples/bpf/
+
+# Prevent bpf selftests to build bpftool repeatedly:
+export BPFTOOL=$(pwd)/tools/bpf/bpftool/bpftool
+
+pushd tools/testing/selftests
+# We need to install here because we need to call make with ARCH set which
+# doesn't seem possible to do in the install section.
+%{make} %{?_smp_mflags} ARCH=$Arch V=1 TARGETS="bpf vm livepatch net net/forwarding net/mptcp netfilter tc-testing" FORCE_TARGETS=1 INSTALL_PATH=%{buildroot}%{_libexecdir}/kselftests VMLINUX_H="${RPM_VMLINUX_H}" install
+
+# 'make install' for bpf is broken and upstream refuses to fix it.
+# Install the needed files manually.
+for dir in bpf bpf/no_alu32 bpf/progs; do
+	mkdir -p %{buildroot}%{_libexecdir}/kselftests/$dir
+	find $dir -maxdepth 1 -type f \( -executable -o -name '*.py' -o -name settings -o \
+		-name 'btf_dump_test_case_*.c' -o -name '*.ko' -o \
+		-name '*.o' -exec sh -c 'readelf -h "{}" | grep -q "^  Machine:.*BPF"' \; \) -print0 | \
+	xargs -0 cp -t %{buildroot}%{_libexecdir}/kselftests/$dir
+done
+popd
+export -n BPFTOOL
+%endif
+
+%if %{with_doc}
+# Make the HTML pages.
+make htmldocs || %{doc_build_fail}
+
+# sometimes non-world-readable files sneak into the kernel source tree
+chmod -R a=rX Documentation
+find Documentation -type d | xargs chmod u+w
+%endif
+
+# In the modsign case, we do 3 things.  1) We check the "flavour" and hard
+# code the value in the following invocations.  This is somewhat sub-optimal
+# but we're doing this inside of an RPM macro and it isn't as easy as it
+# could be because of that.  2) We restore the .tmp_versions/ directory from
+# the one we saved off in BuildKernel above.  This is to make sure we're
+# signing the modules we actually built/installed in that flavour.  3) We
+# grab the arch and invoke mod-sign.sh command to actually sign the modules.
+#
+# We have to do all of those things _after_ find-debuginfo runs, otherwise
+# that will strip the signature off of the modules.
+#
+# Don't sign modules for the zfcpdump flavour as it is monolithic.
+
+%define __modsign_install_post \
+  if [ "%{signmodules}" -eq "1" ]; then \
+    if [ "%{with_debug}" -ne "0" ]; then \
+      %{modsign_cmd} certs/signing_key.pem.sign+debug certs/signing_key.x509.sign+debug $RPM_BUILD_ROOT/lib/modules/%{KVERREL}+debug/ \
+    fi \
+    if [ "%{with_up}" -ne "0" ]; then \
+      %{modsign_cmd} certs/signing_key.pem.sign certs/signing_key.x509.sign $RPM_BUILD_ROOT/lib/modules/%{KVERREL}/ \
+    fi \
+  fi \
+  if [ "%{zipmodules}" -eq "1" ]; then \
+    find $RPM_BUILD_ROOT/lib/modules/ -type f -name '*.ko' | %{SOURCE80} %{?_smp_mflags}; \
+  fi \
+%{nil}
+
+###
+### Special hacks for debuginfo subpackages.
+###
+
+# This macro is used by %%install, so we must redefine it before that.
+%define debug_package %{nil}
+
+%if %{with_debuginfo}
+
+%ifnarch noarch
+%global __debug_package 1
+%files -f debugfiles.list debuginfo-common-%{_target_cpu}
+%defattr(-,root,root)
+%endif
+
+%endif
+
+# We don't want to package debuginfo for self-tests and samples but
+# we have to delete them to avoid an error messages about unpackaged
+# files.
+%define __remove_unwanted_dbginfo_install_post \
+  if [ "%{with_selftests}" -ne "0" ]; then \
+    rm -rf $RPM_BUILD_ROOT/usr/lib/debug/usr/libexec/ksamples; \
+    rm -rf $RPM_BUILD_ROOT/usr/lib/debug/usr/libexec/kselftests; \
+  fi \
+%{nil}
+
+#
+# Disgusting hack alert! We need to ensure we sign modules *after* all
+# invocations of strip occur, which is in __debug_install_post if
+# find-debuginfo.sh runs, and __os_install_post if not.
+#
+%define __spec_install_post \
+  %{?__debug_package:%{__debug_install_post}}\
+  %{__arch_install_post}\
+  %{__os_install_post}\
+  %{__remove_unwanted_dbginfo_install_post}\
+  %{__modsign_install_post}
+
+###
+### install
+###
+
+%install
+
+cd linux-%{KVERREL}
+
+%if %{with_doc}
+docdir=$RPM_BUILD_ROOT%{_datadir}/doc/kernel-doc-%{rpmversion}-%{pkgrelease}
+
+# copy the source over
+mkdir -p $docdir
+tar -h -f - --exclude=man --exclude='.*' -c Documentation | tar xf - -C $docdir
+
+# with_doc
+%endif
+
+# We have to do the headers install before the tools install because the
+# kernel headers_install will remove any header files in /usr/include that
+# it doesn't install itself.
+
+%if %{with_headers}
+# Install kernel headers
+%{make} ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
+
+find $RPM_BUILD_ROOT/usr/include \
+     \( -name .install -o -name .check -o \
+        -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
+
+%endif
+
+%if %{with_cross_headers}
+HDR_ARCH_LIST='arm64 powerpc s390 x86'
+mkdir -p $RPM_BUILD_ROOT/usr/tmp-headers
+%{make} ARCH=%{hdrarch} HDR_ARCH_LIST="$HDR_ARCH_LIST" INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr/tmp-headers headers_install_all
+
+find $RPM_BUILD_ROOT/usr/tmp-headers/include \
+     \( -name .install -o -name .check -o \
+        -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
+
+# Copy all the architectures we care about to their respective asm directories
+for arch in $HDR_ARCH_LIST ; do
+mkdir -p $RPM_BUILD_ROOT/usr/${arch}-linux-gnu/include
+mv $RPM_BUILD_ROOT/usr/tmp-headers/include/arch-${arch}/asm $RPM_BUILD_ROOT/usr/${arch}-linux-gnu/include/
+cp -a $RPM_BUILD_ROOT/usr/tmp-headers/include/asm-generic $RPM_BUILD_ROOT/usr/${arch}-linux-gnu/include/.
+done
+
+# Remove the rest of the architectures
+rm -rf $RPM_BUILD_ROOT/usr/tmp-headers/include/arch*
+rm -rf $RPM_BUILD_ROOT/usr/tmp-headers/include/asm-*
+
+# Copy the rest of the headers over
+for arch in $HDR_ARCH_LIST ; do
+cp -a $RPM_BUILD_ROOT/usr/tmp-headers/include/* $RPM_BUILD_ROOT/usr/${arch}-linux-gnu/include/.
+done
+
+rm -rf $RPM_BUILD_ROOT/usr/tmp-headers
+%endif
+
+%if %{with_kernel_abi_stablelists}
+# kabi directory
+INSTALL_KABI_PATH=$RPM_BUILD_ROOT/lib/modules/
+mkdir -p $INSTALL_KABI_PATH
+
+# install kabi releases directories
+tar xjvf %{SOURCE300} -C $INSTALL_KABI_PATH
+# with_kernel_abi_stablelists
+%endif
+
+%if %{with_perf}
+# perf tool binary and supporting scripts/binaries
+%{perf_make} DESTDIR=$RPM_BUILD_ROOT lib=%{_lib} install-bin
+# remove the 'trace' symlink.
+rm -f %{buildroot}%{_bindir}/trace
+
+# For both of the below, yes, this should be using a macro but right now
+# it's hard coded and we don't actually want it anyway right now.
+# Whoever wants examples can fix it up!
+
+# remove examples
+rm -rf %{buildroot}/usr/lib/examples/perf
+# remove the stray header file that somehow got packaged in examples
+rm -rf %{buildroot}/usr/lib/include/perf/bpf/bpf.h
+
+# remove perf-bpf examples
+rm -rf %{buildroot}/usr/lib/perf/examples
+rm -rf %{buildroot}/usr/lib/perf/include
+
+# python-perf extension
+%{perf_make} DESTDIR=$RPM_BUILD_ROOT install-python_ext
+
+# perf man pages (note: implicit rpm magic compresses them later)
+mkdir -p %{buildroot}/%{_mandir}/man1
+%{perf_make} DESTDIR=$RPM_BUILD_ROOT install-man
+
+# remove any tracevent files, eg. its plugins still gets built and installed,
+# even if we build against system's libtracevent during perf build (by setting
+# LIBTRACEEVENT_DYNAMIC=1 above in perf_make macro). Those files should already
+# ship with libtraceevent package.
+rm -rf %{buildroot}%{_libdir}/traceevent
+%endif
+
+%if %{with_tools}
+%ifarch %{cpupowerarchs}
+%{make} -C tools/power/cpupower DESTDIR=$RPM_BUILD_ROOT libdir=%{_libdir} mandir=%{_mandir} CPUFREQ_BENCH=false install
+rm -f %{buildroot}%{_libdir}/*.{a,la}
+%find_lang cpupower
+mv cpupower.lang ../
+%ifarch x86_64
+    pushd tools/power/cpupower/debug/x86_64
+    install -m755 centrino-decode %{buildroot}%{_bindir}/centrino-decode
+    install -m755 powernow-k8-decode %{buildroot}%{_bindir}/powernow-k8-decode
+    popd
+%endif
+chmod 0755 %{buildroot}%{_libdir}/libcpupower.so*
+mkdir -p %{buildroot}%{_unitdir} %{buildroot}%{_sysconfdir}/sysconfig
+install -m644 %{SOURCE2000} %{buildroot}%{_unitdir}/cpupower.service
+install -m644 %{SOURCE2001} %{buildroot}%{_sysconfdir}/sysconfig/cpupower
+%endif
+%ifarch x86_64
+   mkdir -p %{buildroot}%{_mandir}/man8
+   pushd tools/power/x86/x86_energy_perf_policy
+   %{tools_make} DESTDIR=%{buildroot} install
+   popd
+   pushd tools/power/x86/turbostat
+   %{tools_make} DESTDIR=%{buildroot} install
+   popd
+   pushd tools/power/x86/intel-speed-select
+   %{tools_make} CFLAGS+="-D_GNU_SOURCE -Iinclude -I/usr/include/libnl3" DESTDIR=%{buildroot} install
+   popd
+   pushd tools/arch/x86/intel_sdsi
+   %{tools_make} DESTDIR=%{buildroot} install
+   popd
+%endif
+pushd tools/thermal/tmon
+%{tools_make} INSTALL_ROOT=%{buildroot} install
+popd
+pushd tools/iio
+%{tools_make} DESTDIR=%{buildroot} install
+popd
+pushd tools/gpio
+%{tools_make} DESTDIR=%{buildroot} install
+popd
+install -m644 -D %{SOURCE2002} %{buildroot}%{_sysconfdir}/logrotate.d/kvm_stat
+pushd tools/kvm/kvm_stat
+make INSTALL_ROOT=%{buildroot} install-tools
+make INSTALL_ROOT=%{buildroot} install-man
+install -m644 -D kvm_stat.service %{buildroot}%{_unitdir}/kvm_stat.service
+popd
+# install VM tools
+pushd tools/vm/
+install -m755 slabinfo %{buildroot}%{_bindir}/slabinfo
+install -m755 page_owner_sort %{buildroot}%{_bindir}/page_owner_sort
+popd
+%endif
+
+# We don't call InitBuildVars in install section so $DevelDir
+# variable is not defined. Using the $DevelDir definition
+# directly.
+if [ -f /usr/src/kernels/%{KVERREL}/vmlinux.h ]; then
+  RPM_VMLINUX_H=/usr/src/kernels/%{KVERREL}/vmlinux.h
+fi
+
+%if !%{with_realtime}
+%if %{with_bpftool}
+pushd tools/bpf/bpftool
+%{bpftool_make} prefix=%{_prefix} bash_compdir=%{_sysconfdir}/bash_completion.d/ mandir=%{_mandir} install doc-install
+popd
+# bpf-helpers.7 manpage has been moved under samples
+# a01d935b2e09 ("tools/bpf: Remove bpf-helpers from bpftool docs")
+pushd tools/testing/selftests/bpf
+make -f Makefile.docs DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} docs-install
+popd
+%endif
+%endif
+
+%if %{with_selftests}
+pushd samples
+install -d %{buildroot}%{_libexecdir}/ksamples
+# install bpf samples
+pushd bpf
+install -d %{buildroot}%{_libexecdir}/ksamples/bpf
+find -type f -executable -exec install -m755 {} %{buildroot}%{_libexecdir}/ksamples/bpf \;
+install -m755 *.sh %{buildroot}%{_libexecdir}/ksamples/bpf
+# test_lwt_bpf.sh compiles test_lwt_bpf.c when run; this works only from the
+# kernel tree. Just remove it.
+rm %{buildroot}%{_libexecdir}/ksamples/bpf/test_lwt_bpf.sh
+install -m644 *_kern.o %{buildroot}%{_libexecdir}/ksamples/bpf
+install -m644 tcp_bpf.readme %{buildroot}%{_libexecdir}/ksamples/bpf
+popd
+# install pktgen samples
+pushd pktgen
+install -d %{buildroot}%{_libexecdir}/ksamples/pktgen
+find . -type f -executable -exec install -m755 {} %{buildroot}%{_libexecdir}/ksamples/pktgen/{} \;
+find . -type f ! -executable -exec install -m644 {} %{buildroot}%{_libexecdir}/ksamples/pktgen/{} \;
+popd
+popd
+# install vm selftests
+pushd tools/testing/selftests/vm
+find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/vm/{} \;
+find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/vm/{} \;
+find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/vm/{} \;
+popd
+# install drivers/net/mlxsw selftests
+pushd tools/testing/selftests/drivers/net/mlxsw
+find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/drivers/net/mlxsw/{} \;
+find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/mlxsw/{} \;
+find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/mlxsw/{} \;
+popd
+# install drivers/net/netdevsim selftests
+pushd tools/testing/selftests/drivers/net/netdevsim
+find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/drivers/net/netdevsim/{} \;
+find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/netdevsim/{} \;
+find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/drivers/net/netdevsim/{} \;
+popd
+# install net/forwarding selftests
+pushd tools/testing/selftests/net/forwarding
+find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/net/forwarding/{} \;
+find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/net/forwarding/{} \;
+find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/net/forwarding/{} \;
+popd
+# install net/mptcp selftests
+pushd tools/testing/selftests/net/mptcp
+find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/net/mptcp/{} \;
+find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/net/mptcp/{} \;
+find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/net/mptcp/{} \;
+popd
+# install tc-testing selftests
+pushd tools/testing/selftests/tc-testing
+find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/tc-testing/{} \;
+find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/tc-testing/{} \;
+find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/tc-testing/{} \;
+popd
+# install livepatch selftests
+pushd tools/testing/selftests/livepatch
+find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/livepatch/{} \;
+find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/livepatch/{} \;
+find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/livepatch/{} \;
+popd
+# install netfilter selftests
+pushd tools/testing/selftests/netfilter
+find -type d -exec install -d %{buildroot}%{_libexecdir}/kselftests/netfilter/{} \;
+find -type f -executable -exec install -D -m755 {} %{buildroot}%{_libexecdir}/kselftests/netfilter/{} \;
+find -type f ! -executable -exec install -D -m644 {} %{buildroot}%{_libexecdir}/kselftests/netfilter/{} \;
+popd
+%endif
+
+# We have to do the headers checksum calculation after the tools install because
+# these might end up installing their own set of headers on top of kernel's
+%if %{with_headers}
+# compute a content hash to export as Provides: kernel-headers-checksum
+HEADERS_CHKSUM=$(export LC_ALL=C; find $RPM_BUILD_ROOT/usr/include -type f -name "*.h" \
+			! -path $RPM_BUILD_ROOT/usr/include/linux/version.h | \
+		 sort | xargs cat | sha1sum - | cut -f 1 -d ' ');
+# export the checksum via usr/include/linux/version.h, so the dynamic
+# find-provides can grab the hash to update it accordingly
+echo "#define KERNEL_HEADERS_CHECKSUM \"$HEADERS_CHKSUM\"" >> $RPM_BUILD_ROOT/usr/include/linux/version.h
+%endif
+
+###
+### clean
+###
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+###
+### scripts
+###
+
+%if %{with_tools}
+
+%post -n %{name}-tools
+%systemd_post cpupower.service
+
+%preun -n %{name}-tools
+%systemd_preun cpupower.service
+
+%postun -n %{name}-tools
+%systemd_postun cpupower.service
+
+%post -n %{name}-tools-libs
+/sbin/ldconfig
+
+%postun -n %{name}-tools-libs
+/sbin/ldconfig
+%endif
+
+#
+# This macro defines a %%post script for a kernel*-devel package.
+#	%%kernel_devel_post [<subpackage>]
+#
+%define kernel_devel_post() \
+%{expand:%%post %{?1:%{1}-}devel}\
+if [ -f /etc/sysconfig/kernel ]\
+then\
+    . /etc/sysconfig/kernel || exit $?\
+fi\
+if [ "$HARDLINK" != "no" -a -x /usr/sbin/hardlink ]\
+then\
+    (cd /usr/src/kernels/%{KVERREL}%{?1:+%{1}} &&\
+     /usr/bin/find . -type f | while read f; do\
+       hardlink -c /usr/src/kernels/*%{?dist}.*/$f $f\
+     done)\
+fi\
+%if %{with_cross}\
+    echo "Building scripts"\
+    env --unset=ARCH make -C /usr/src/kernels/%{KVERREL}%{?1:+%{1}} prepare_after_cross\
+%endif\
+%{nil}
+
+#
+# This macro defines a %%post script for a kernel*-modules-extra package.
+# It also defines a %%postun script that does the same thing.
+#	%%kernel_modules_extra_post [<subpackage>]
+#
+%define kernel_modules_extra_post() \
+%{expand:%%post %{?1:%{1}-}modules-extra}\
+/sbin/depmod -a %{KVERREL}%{?1:+%{1}}\
+%{nil}\
+%{expand:%%postun %{?1:%{1}-}modules-extra}\
+/sbin/depmod -a %{KVERREL}%{?1:+%{1}}\
+%{nil}
+
+#
+# This macro defines a %%post script for a kernel*-modules-internal package.
+# It also defines a %%postun script that does the same thing.
+#	%%kernel_modules_internal_post [<subpackage>]
+#
+%define kernel_modules_internal_post() \
+%{expand:%%post %{?1:%{1}-}modules-internal}\
+/sbin/depmod -a %{KVERREL}%{?1:+%{1}}\
+%{nil}\
+%{expand:%%postun %{?1:%{1}-}modules-internal}\
+/sbin/depmod -a %{KVERREL}%{?1:+%{1}}\
+%{nil}
+
+%if %{with_realtime}
+#
+# This macro defines a %%post script for a kernel*-kvm package.
+# It also defines a %%postun script that does the same thing.
+#	%%kernel_kvm_post [<subpackage>]
+#
+%define kernel_kvm_post() \
+%{expand:%%post %{?1:%{1}-}kvm}\
+/sbin/depmod -a %{KVERREL}%{?1:+%{1}}\
+%{nil}\
+%{expand:%%postun %{?1:%{1}-}kvm}\
+/sbin/depmod -a %{KVERREL}%{?1:+%{1}}\
+%{nil}
+%endif
+
+#
+# This macro defines a %%post script for a kernel*-modules package.
+# It also defines a %%postun script that does the same thing.
+#	%%kernel_modules_post [<subpackage>]
+#
+%define kernel_modules_post() \
+%{expand:%%post %{?1:%{1}-}modules}\
+/sbin/depmod -a %{KVERREL}%{?1:+%{1}}\
+if [ ! -f %{_localstatedir}/lib/rpm-state/%{name}/installing_core_%{KVERREL}%{?1:+%{1}} ]; then\
+	mkdir -p %{_localstatedir}/lib/rpm-state/%{name}\
+	touch %{_localstatedir}/lib/rpm-state/%{name}/need_to_run_dracut_%{KVERREL}%{?1:+%{1}}\
+fi\
+%{nil}\
+%{expand:%%postun %{?1:%{1}-}modules}\
+/sbin/depmod -a %{KVERREL}%{?1:+%{1}}\
+%{nil}\
+%{expand:%%posttrans %{?1:%{1}-}modules}\
+if [ -f %{_localstatedir}/lib/rpm-state/%{name}/need_to_run_dracut_%{KVERREL}%{?1:+%{1}} ]; then\
+	rm -f %{_localstatedir}/lib/rpm-state/%{name}/need_to_run_dracut_%{KVERREL}%{?1:+%{1}}\
+	echo "Running: dracut -f --kver %{KVERREL}%{?1:+%{1}}"\
+	dracut -f --kver "%{KVERREL}%{?1:+%{1}}" || exit $?\
+fi\
+%{nil}
+
+# This macro defines a %%posttrans script for a kernel package.
+#	%%kernel_variant_posttrans [<subpackage>]
+# More text can follow to go at the end of this variant's %%post.
+#
+%define kernel_variant_posttrans() \
+%{expand:%%posttrans %{?1:%{1}-}core}\
+%if !%{with_realtime}\
+if [ -x %{_sbindir}/weak-modules ]\
+then\
+    %{_sbindir}/weak-modules --add-kernel %{KVERREL}%{?1:+%{1}} || exit $?\
+fi\
+%endif\
+rm -f %{_localstatedir}/lib/rpm-state/%{name}/installing_core_%{KVERREL}%{?1:+%{1}}\
+/bin/kernel-install add %{KVERREL}%{?1:+%{1}} /lib/modules/%{KVERREL}%{?1:+%{1}}/vmlinuz || exit $?\
+%{nil}
+
+#
+# This macro defines a %%post script for a kernel package and its devel package.
+#	%%kernel_variant_post [-v <subpackage>] [-r <replace>]
+# More text can follow to go at the end of this variant's %%post.
+#
+%define kernel_variant_post(v:r:) \
+%{expand:%%kernel_devel_post %{?-v*}}\
+%{expand:%%kernel_modules_post %{?-v*}}\
+%{expand:%%kernel_modules_extra_post %{?-v*}}\
+%{expand:%%kernel_modules_internal_post %{?-v*}}\
+%{expand:%%kernel_variant_posttrans %{?-v*}}\
+%{expand:%%post %{?-v*:%{-v*}-}core}\
+%{-r:\
+if [ `uname -i` == "x86_64" -o `uname -i` == "i386" ] &&\
+   [ -f /etc/sysconfig/kernel ]; then\
+  /bin/sed -r -i -e 's/^DEFAULTKERNEL=%{-r*}$/DEFAULTKERNEL=kernel%{?-v:-%{-v*}}/' /etc/sysconfig/kernel || exit $?\
+fi}\
+mkdir -p %{_localstatedir}/lib/rpm-state/%{name}\
+touch %{_localstatedir}/lib/rpm-state/%{name}/installing_core_%{KVERREL}%{?1:+%{1}}\
+%{nil}
+
+#
+# This macro defines a %%preun script for a kernel package.
+#	%%kernel_variant_preun <subpackage>
+#
+%define kernel_variant_preun() \
+%{expand:%%preun %{?1:%{1}-}core}\
+/bin/kernel-install remove %{KVERREL}%{?1:+%{1}} /lib/modules/%{KVERREL}%{?1:+%{1}}/vmlinuz || exit $?\
+%if !%{with_realtime}\
+if [ -x %{_sbindir}/weak-modules ]\
+then\
+    %{_sbindir}/weak-modules --remove-kernel %{KVERREL}%{?1:+%{1}} || exit $?\
+fi\
+%endif\
+%{nil}
+
+%kernel_variant_preun
+%kernel_variant_post -r kernel-smp
+%if %{with_realtime}
+%kernel_kvm_post
+%endif
+
+%kernel_variant_preun debug
+%kernel_variant_post -v debug
+%if %{with_realtime}
+%kernel_kvm_post debug
+%endif
+
+%if %{with_zfcpdump}
+%kernel_variant_preun zfcpdump
+%kernel_variant_post -v zfcpdump
+%endif
+
+if [ -x /sbin/ldconfig ]
+then
+    /sbin/ldconfig -X || exit $?
+fi
+
+###
+### file lists
+###
+
+%if %{with_headers}
+%files headers
+%defattr(-,root,root)
+/usr/include/*
+%exclude %{_includedir}/cpufreq.h
+%endif
+
+%if %{with_cross_headers}
+%files cross-headers
+%defattr(-,root,root)
+/usr/*-linux-gnu/include/*
+%endif
+
+%if %{with_kernel_abi_stablelists}
+%files -n kernel-abi-stablelists
+%defattr(-,root,root,-)
+/lib/modules/kabi-*
+%endif
+
+%if %{with_kabidw_base}
+%ifarch x86_64 s390x ppc64 ppc64le aarch64
+%files kernel-kabidw-base-internal
+%defattr(-,root,root)
+/kabidw-base/%{_target_cpu}/*
+%endif
+%endif
+
+# only some architecture builds need kernel-doc
+%if %{with_doc}
+%files doc
+%defattr(-,root,root)
+%{_datadir}/doc/kernel-doc-%{rpmversion}-%{pkgrelease}/Documentation/*
+%dir %{_datadir}/doc/kernel-doc-%{rpmversion}-%{pkgrelease}/Documentation
+%dir %{_datadir}/doc/kernel-doc-%{rpmversion}-%{pkgrelease}
+%endif
+
+%if %{with_perf}
+%files -n perf
+%defattr(-,root,root)
+%{_bindir}/perf
+%{_libdir}/libperf-jvmti.so
+%dir %{_libexecdir}/perf-core
+%{_libexecdir}/perf-core/*
+%{_datadir}/perf-core/*
+%{_mandir}/man[1-8]/perf*
+%{_sysconfdir}/bash_completion.d/perf
+%doc linux-%{KVERREL}/tools/perf/Documentation/examples.txt
+%{_docdir}/perf-tip/tips.txt
+
+%files -n python3-perf
+%defattr(-,root,root)
+%{python3_sitearch}/*
+
+%if %{with_debuginfo}
+%files -f perf-debuginfo.list -n perf-debuginfo
+%defattr(-,root,root)
+
+%files -f python3-perf-debuginfo.list -n python3-perf-debuginfo
+%defattr(-,root,root)
+%endif
+# with_perf
+%endif
+
+%if %{with_tools}
+%ifarch %{cpupowerarchs}
+%defattr(-,root,root)
+%files -n %{name}-tools -f cpupower.lang
+%{_bindir}/cpupower
+%{_datadir}/bash-completion/completions/cpupower
+%ifarch x86_64
+%{_bindir}/centrino-decode
+%{_bindir}/powernow-k8-decode
+%endif
+%{_unitdir}/cpupower.service
+%{_mandir}/man[1-8]/cpupower*
+%config(noreplace) %{_sysconfdir}/sysconfig/cpupower
+%ifarch x86_64
+%{_bindir}/x86_energy_perf_policy
+%{_mandir}/man8/x86_energy_perf_policy*
+%{_bindir}/turbostat
+%{_mandir}/man8/turbostat*
+%{_bindir}/intel-speed-select
+%{_sbindir}/intel_sdsi
+%endif
+# !cpupowerarchs
+%else
+%files -n %{name}-tools
+%defattr(-,root,root)
+# cpupowerarchs
+%endif
+%{_bindir}/tmon
+%{_bindir}/iio_event_monitor
+%{_bindir}/iio_generic_buffer
+%{_bindir}/lsiio
+%{_bindir}/lsgpio
+%{_bindir}/gpio-hammer
+%{_bindir}/gpio-event-mon
+%{_mandir}/man1/kvm_stat*
+%{_bindir}/kvm_stat
+%{_unitdir}/kvm_stat.service
+%config(noreplace) %{_sysconfdir}/logrotate.d/kvm_stat
+%{_bindir}/page_owner_sort
+%{_bindir}/slabinfo
+
+%if %{with_debuginfo}
+%files -f %{name}-tools-debuginfo.list -n %{name}-tools-debuginfo
+%defattr(-,root,root)
+%endif
+
+%ifarch %{cpupowerarchs}
+%files -n %{name}-tools-libs
+%{_libdir}/libcpupower.so.0
+%{_libdir}/libcpupower.so.0.0.1
+
+%files -n %{name}-tools-libs-devel
+%{_libdir}/libcpupower.so
+%{_includedir}/cpufreq.h
+%endif
+# with_tools
+%endif
+
+%if !%{with_realtime}
+%if %{with_bpftool}
+%files -n bpftool
+%{_sbindir}/bpftool
+%{_sysconfdir}/bash_completion.d/bpftool
+%{_mandir}/man8/bpftool-cgroup.8.gz
+%{_mandir}/man8/bpftool-map.8.gz
+%{_mandir}/man8/bpftool-prog.8.gz
+%{_mandir}/man8/bpftool-perf.8.gz
+%{_mandir}/man8/bpftool.8.gz
+%{_mandir}/man7/bpf-helpers.7.gz
+%{_mandir}/man8/bpftool-net.8.gz
+%{_mandir}/man8/bpftool-feature.8.gz
+%{_mandir}/man8/bpftool-btf.8.gz
+%{_mandir}/man8/bpftool-gen.8.gz
+%{_mandir}/man8/bpftool-struct_ops.8.gz
+%{_mandir}/man8/bpftool-iter.8.gz
+%{_mandir}/man8/bpftool-link.8.gz
+%{_mandir}/man2/bpf-syscall.2.gz
+
+%if %{with_debuginfo}
+%files -f bpftool-debuginfo.list -n bpftool-debuginfo
+%defattr(-,root,root)
+%endif
+%endif
+%endif
+
+%if %{with_selftests}
+%files selftests-internal
+%{_libexecdir}/ksamples
+%{_libexecdir}/kselftests
+%endif
+
+# empty meta-package
+%ifnarch %nobuildarches noarch
+%files
+%defattr(-,root,root)
+%endif
+
+%if %{with_gcov}
+%ifarch x86_64 s390x ppc64le aarch64
+%files gcov
+%defattr(-,root,root)
+%{_builddir}
+%endif
+%endif
+
+# This is %%{image_install_path} on an arch where that includes ELF files,
+# or empty otherwise.
+%define elf_image_install_path %{?kernel_image_elf:%{image_install_path}}
+
+#
+# This macro defines the %%files sections for a kernel package
+# and its devel and debuginfo packages.
+#	%%kernel_variant_files [-k vmlinux] <condition> <subpackage> <without_modules>
+#
+%define kernel_variant_files(k:) \
+%if %{2}\
+%{expand:%%files -f %{name}-%{?3:%{3}-}core.list %{?3:%{3}-}core}\
+%defattr(-,root,root)\
+%{!?_licensedir:%global license %%doc}\
+%license linux-%{KVERREL}/COPYING-%{version}\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/%{?-k:%{-k*}}%{!?-k:vmlinuz}\
+%ghost /%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVERREL}%{?3:+%{3}}\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/.vmlinuz.hmac \
+%ghost /%{image_install_path}/.vmlinuz-%{KVERREL}%{?3:+%{3}}.hmac \
+%ifarch aarch64\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/dtb \
+%ghost /%{image_install_path}/dtb-%{KVERREL}%{?3:+%{3}} \
+%endif\
+%attr(0600, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/System.map\
+%ghost %attr(0600, root, root) /boot/System.map-%{KVERREL}%{?3:+%{3}}\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/symvers.gz\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/config\
+%ghost %attr(0600, root, root) /boot/symvers-%{KVERREL}%{?3:+%{3}}.gz\
+%ghost %attr(0600, root, root) /boot/initramfs-%{KVERREL}%{?3:+%{3}}.img\
+%ghost %attr(0644, root, root) /boot/config-%{KVERREL}%{?3:+%{3}}\
+%dir /lib/modules\
+%dir /lib/modules/%{KVERREL}%{?3:+%{3}}\
+%dir /lib/modules/%{KVERREL}%{?3:+%{3}}/kernel\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/build\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/source\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/updates\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/weak-updates\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/bls.conf\
+%{_datadir}/doc/kernel-keys/%{KVERREL}%{?3:+%{3}}\
+%if %{1}\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/vdso\
+/etc/ld.so.conf.d/%{name}-%{KVERREL}%{?3:+%{3}}.conf\
+%endif\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/modules.*\
+%{expand:%%files -f %{name}-%{?3:%{3}-}modules.list %{?3:%{3}-}modules}\
+%defattr(-,root,root)\
+%{expand:%%files %{?3:%{3}-}devel}\
+%defattr(-,root,root)\
+%defverify(not mtime)\
+/usr/src/kernels/%{KVERREL}%{?3:+%{3}}\
+%{expand:%%files -f %{name}-%{?3:%{3}-}modules-extra.list %{?3:%{3}-}modules-extra}\
+%defattr(-,root,root)\
+%config(noreplace) /etc/modprobe.d/*-blacklist.conf\
+%{expand:%%files -f %{name}-%{?3:%{3}-}modules-internal.list %{?3:%{3}-}modules-internal}\
+%if %{with_realtime}\
+%{expand:%%files -f %{name}-%{?3:%{3}-}kvm.list %{?3:%{3}-}kvm}\
+%endif\
+%if %{with_debuginfo}\
+%ifnarch noarch\
+%{expand:%%files -f debuginfo%{?3}.list %{?3:%{3}-}debuginfo}\
+%defattr(-,root,root)\
+%endif\
+%endif\
+%if %{?3:1} %{!?3:0}\
+%{expand:%%files %{3}}\
+%defattr(-,root,root)\
+%endif\
+%endif\
+%{nil}
+
+%kernel_variant_files  %{with_vdso_install} %{with_up}
+%kernel_variant_files  %{with_vdso_install} %{with_debug} debug
+%kernel_variant_files  %{with_vdso_install} %{with_zfcpdump} zfcpdump 1
+
+%define kernel_variant_ipaclones(k:) \
+%if %{1}\
+%if %{with_ipaclones}\
+%{expand:%%files %{?2:%{2}-}ipaclones-internal}\
+%defattr(-,root,root)\
+%defverify(not mtime)\
+/usr/src/kernels/%{KVERREL}%{?2:+%{2}}-ipaclones\
+%endif\
+%endif\
+%{nil}
+
+%kernel_variant_ipaclones %{with_up}
+
+# plz don't put in a version string unless you're going to tag
+# and build.
+#
+#
+%changelog
+* Tue Nov 28 2023 Release Engineering <releng@rockylinux.org> - 4.18.0-513.9.1
+- Adding prod certs and changed cert date to 20210620 (Sherif Nagy)
+- Adding Rocky secure boot certs (Sherif Nagy)
+- Fixing vmlinuz removal (Sherif Nagy)
+- Fixing UEFI CA path (Sherif Nagy)
+- Porting to 8.9/8.10, debranding and Rocky branding (Louis Abel)
+- Fixing pesign_key_name values (Sherif Nagy)
+- Debrand the kernel (Louis Abel)
+
+* Thu Nov 16 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.9.1.el8_9]
+- ice: reset first in crash dump kernels (Petr Oros) [2244625 2139761]
+- nvmet-tcp: Fix a possible UAF in queue intialization setup (John Meneghini) [RHEL-11507 RHEL-11509] {CVE-2023-5178}
+- block: check_events: don't bother with events if unsupported (Ming Lei) [RHEL-15052 RHEL-2407]
+- Revert "block: unexport DISK_EVENT_MEDIA_CHANGE for legacy/fringe drivers" (Ming Lei) [RHEL-15052 RHEL-2407]
+- Revert "ide: unexport DISK_EVENT_MEDIA_CHANGE for ide-gd and ide-cd" (Ming Lei) [RHEL-15052 RHEL-2407]
+- block: disk_events: introduce event flags (Ming Lei) [RHEL-15052 RHEL-2407]
+- block: genhd: remove async_events field (Ming Lei) [RHEL-15052 RHEL-2407]
+- net: virtio_net_hdr_to_skb: count transport header in UFO (Cindy Lu) [RHEL-16332 RHEL-6030]
+- x86/sev: Make enc_dec_hypercall() accept a size instead of npages (Vitaly Kuznetsov) [RHEL-5764 RHEL-3656]
+
+* Thu Nov 09 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.8.1.el8_9]
+- cifs: Fix UAF in cifs_demultiplex_thread() (Scott Mayhew) [RHEL-15159 RHEL-7930] {CVE-2023-1192}
+- ipvs: queue delayed work to expire no destination connections if expire_nodest_conn=1 (Florian Westphal) [RHEL-12371 RHEL-5742]
+- sched/rt: Fix bad task migration for rt tasks (Valentin Schneider) [RHEL-11682 RHEL-3872]
+- bpf: Fix incorrect verifier pruning due to missing register precision taints (Artem Savkov) [RHEL-13049 RHEL-7534] {CVE-2023-2163}
+
+* Thu Nov 02 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.7.1.el8_9]
+- sched/fair: Block nohz tick_stop when cfs bandwidth in use (Phil Auld) [RHEL-12723 RHEL-2527]
+- sched, cgroup: Restore meaning to hierarchical_quota (Phil Auld) [RHEL-12723 RHEL-2527]
+- sched/fair: Hide unused init_cfs_bandwidth() stub (Phil Auld) [RHEL-12723 RHEL-2527]
+
+* Thu Oct 26 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.6.1.el8_9]
+- redhat: fix bug/zjira sort in the changelog (Patrick Talbert)
+- CI: Remove unused kpet_tree_family (Nikolai Kondrashov)
+- redhat: set default zstream brew target for 8.9 (Patrick Talbert)
+- rbd: take header_rwsem in rbd_dev_refresh() only when updating (Ilya Dryomov) [RHEL-12689 RHEL-11241]
+- rbd: decouple parent info read-in from updating rbd_dev (Ilya Dryomov) [RHEL-12689 RHEL-11241]
+- rbd: decouple header read-in from updating rbd_dev->header (Ilya Dryomov) [RHEL-12689 RHEL-11241]
+- rbd: move rbd_dev_refresh() definition (Ilya Dryomov) [RHEL-12689 RHEL-11241]
+- media: dvb-core: Fix use-after-free due to race condition at dvb_ca_en50221 (Dean Nelson) [RHEL-11279 RHEL-1784] {CVE-2022-45919}
+- media: dvb_ca_en50221: fix a size write bug (Dean Nelson) [RHEL-11279 RHEL-1784] {CVE-2022-45919}
+- media: dvb_ca_en50221: avoid speculation from CA slot (Dean Nelson) [RHEL-11279 RHEL-1784] {CVE-2022-45919}
+- media: dvb-core: fix epoll() by calling poll_wait first (Dean Nelson) [RHEL-11279 RHEL-1784] {CVE-2022-45919}
+- media: dvb_ca_en50221: off by one in dvb_ca_en50221_io_do_ioctl() (Dean Nelson) [RHEL-11279 RHEL-1784] {CVE-2022-45919}
+- iavf: schedule a request immediately after add/delete vlan (Petr Oros) [2240750 2231174]
+- iavf: add iavf_schedule_aq_request() helper (Petr Oros) [2240750 2231174]
+- bpf: sockmap: Remove preempt_disable in sock_map_sk_acquire (Tomas Glozar) [RHEL-6123 2229965]
+- media: dvb-core: Fix use-after-free due on race condition at dvb_net (Dean Nelson) [RHEL-11248 RHEL-1842] {CVE-2022-45886}
+- media: dvb_net: avoid speculation from net slot (Dean Nelson) [RHEL-11248 RHEL-1842] {CVE-2022-45886}
+- mm/slab_common: fix slab_caches list corruption after kmem_cache_destroy() (Rafael Aquini) [RHEL-11588 RHEL-3652]
+- ice: always add legacy 32byte RXDID in supported_rxdids (Michal Schmidt) [RHEL-10393 RHEL-3379]
+- net: tun: fix bugs for oversize packet when napi frags enabled (Ricardo Robaina) [RHEL-12295 RHEL-7185] {CVE-2023-3812}
+- ice: Don't tx before switchdev is fully configured (Michal Schmidt) [RHEL-11331 RHEL-10997]
+- media: dvb-core: Fix use-after-free due to race at dvb_register_device() (Dean Nelson) [RHEL-11271 RHEL-1841] {CVE-2022-45884}
+- media: dvbdev: fix refcnt bug (Dean Nelson) [RHEL-11271 RHEL-1841] {CVE-2022-45884}
+- media: dvbdev: adopts refcnt to avoid UAF (Dean Nelson) [RHEL-11271 RHEL-1841] {CVE-2022-45884}
+- media: dvbdev: fix error logic at dvb_register_device() (Dean Nelson) [RHEL-11271 RHEL-1841] {CVE-2022-45884}
+- media: dvbdev: Fix memleak in dvb_register_device (Dean Nelson) [RHEL-11271 RHEL-1841] {CVE-2022-45884}
+- media: media/dvb: Use kmemdup rather than duplicating its implementation (Dean Nelson) [RHEL-11271 RHEL-1841] {CVE-2022-45884}
+- media: dvbdev: remove double-unlock (Dean Nelson) [RHEL-11271 RHEL-1841] {CVE-2022-45884}
+- bpf: Adjust insufficient default bpf_jit_limit (Viktor Malik) [2243011 2219567]
+- bpf: Prevent increasing bpf_jit_limit above max (Viktor Malik) [2243011 2219567]
+
+* Fri Sep 29 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.5.1.el8_9]
+- redhat: list Z-Jiras in the changelog before Y-Jiras (Herton R. Krzesinski)
+- Revert "mm, meminit: recalculate pcpu batch and high limits after init completes" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm,memory_hotplug: factor out adjusting present pages into adjust_present_page_count()" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: move free_the_page" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: allow high-order pages to be stored on the per-cpu lists" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: fetch the correct pcp buddy during bulk free" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: track range of active PCP lists during bulk free" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: simplify how many pages are selected per pcp list during bulk free" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: drain the requested list first during bulk free" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: free pages in a single pass during bulk free" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: do not prefetch buddies during bulk free" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: check high-order pages for corruption during PCP operations" (Chris von Recklinghausen) [RHEL-8539]
+- Revert "mm/page_alloc: fix incorrect PGFREE and PGALLOC for high-order page" (Chris von Recklinghausen) [RHEL-8539]
+
+* Wed Sep 27 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.4.1.el8_9]
+- Revert "cnic: Use the bitmap API to allocate bitmaps" (Chris Leech) [RHEL-1950]
+- Revert "cnic: don't pass bogus GFP_ flags to dma_alloc_coherent" (Chris Leech) [RHEL-1950]
+- scsi: lpfc: Prevent use-after-free during rmmod with mapped NVMe rports (Paul Ely) [RHEL-2602]
+- scsi: lpfc: Early return after marking final NLP_DROPPED flag in dev_loss_tmo (Paul Ely) [RHEL-2602]
+- gfs2: Add quota_change type (Bob Peterson) [2224075]
+
+* Wed Sep 20 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.3.1.el8_9]
+- drm/amd/display: fix the white screen issue when >= 64GB DRAM (Mika Penttilä) [2231934]
+- gfs2: conversion deadlock do_promote bypass (Bob Peterson) [2225228]
+- gfs2: do_promote cleanup (Andreas Gruenbacher) [2225228]
+- gfs2: Make use of list_is_first (Andreas Gruenbacher) [2225228]
+
+* Fri Sep 15 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.2.1.el8_9]
+- x86/cpu: Enable STIBP on AMD if Automatic IBRS is enabled (Waiman Long) [2227916]
+- Documentation/hw-vuln: Document the interaction between IBRS and STIBP (Waiman Long) [2227916]
+- x86/CPU/AMD: Make sure EFER[AIBRSE] is set (Waiman Long) [2227916]
+- fs: don't audit the capability check in simple_xattr_list() (Andrey Albershteyn) [RHEL-863]
+
+* Wed Sep 06 2023 Patrick Talbert <ptalbert@redhat.com> [4.18.0-513.1.1.el8_9]
+- thunderbolt: Fix Thunderbolt 3 display flickering issue on 2nd hot plug onwards (Desnes Nunes) [2233974]
+- mm/userfaultfd: don't consider uffd-wp bit of writable migration entries (Rafael Aquini) [2231554]
+- mm/userfaultfd: fix uffd-wp handling for THP migration entries (Rafael Aquini) [2231554]
+- mm/userfaultfd: fix uffd-wp special cases for fork() (Rafael Aquini) [2231554]
+- mm/thp: simplify copying of huge zero page pmd when fork (Rafael Aquini) [2231554]
+
+* Fri Aug 25 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-513.el8]
+- redhat/configs: enable CONFIG_INET_DIAG_DESTROY (Andrea Claudi) [2230213]
+- net/sched: cls_u32: Fix reference counter leak leading to overflow (Davide Caratti) [2225202] {CVE-2023-3609}
+- cifs: fix bogus cifs_mount error handling in RHEL8 (Jeffrey Layton) [2215018]
+- KVM: nVMX: add missing consistency checks for CR0 and CR4 (Ricardo Robaina) [2190257] {CVE-2023-30456}
+- netfilter: snat: evict closing tcp entries on reply tuple collision (Florian Westphal) [2196717]
+- tun: avoid double free in tun_free_netdev (Jon Maloy) [2156366 2156371] {CVE-2022-4744}
+- net/sched: cls_fw: Fix improper refcount update leads to use-after-free (Davide Caratti) [2225103] {CVE-2023-3776}
+- net/sched: sch_qfq: account for stab overhead in qfq_enqueue (Davide Caratti) [2225196] {CVE-2023-3611}
+- net/sched: sch_qfq: reintroduce lmax bound check for MTU (Davide Caratti) [2225196]
+- net/sched: sch_qfq: refactor parsing of netlink parameters (Davide Caratti) [2225196]
+- net/sched: cls_route: No longer copy tcf_result on update to avoid use-after-free (Davide Caratti) [2225512] {CVE-2023-4128}
+- net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after-free (Davide Caratti) [2225512] {CVE-2023-4128}
+- net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after-free (Davide Caratti) [2225512] {CVE-2023-4128}
+- scsi: lpfc: Remove reftag check in DIF paths (Paul Ely) [2229152]
+- scsi: lpfc: Modify when a node should be put in device recovery mode during RSCN (Paul Ely) [2229152]
+- scsi: lpfc: Make fabric zone discovery more robust when handling unsolicited LOGO (Paul Ely) [2229152]
+- scsi: lpfc: Set Establish Image Pair service parameter only for Target Functions (Paul Ely) [2229152]
+- scsi: lpfc: Revise ndlp kref handling for dev_loss_tmo_callbk and lpfc_drop_node (Paul Ely) [2229152]
+- scsi: lpfc: Qualify ndlp discovery state when processing RSCN (Paul Ely) [2229152]
+- gfs2: Fix freeze consistency check in gfs2_trans_add_meta (Andreas Gruenbacher) [2095340]
+- gfs2: gfs2_freeze_lock_shared cleanup (Andreas Gruenbacher) [2095340]
+- gfs2: Replace sd_freeze_state with SDF_FROZEN flag (Andreas Gruenbacher) [2095340]
+- gfs2: Rework freeze / thaw logic (Andreas Gruenbacher) [2095340]
+- gfs2: Rename SDF_{FS_FROZEN => FREEZE_INITIATOR} (Andreas Gruenbacher) [2095340]
+- gfs2: Reconfiguring frozen filesystem already rejected (Andreas Gruenbacher) [2095340]
+- gfs2: Rename gfs2_freeze_lock{ => _shared } (Andreas Gruenbacher) [2095340]
+- gfs2: Rename the {freeze,thaw}_super callbacks (Andreas Gruenbacher) [2095340]
+- gfs2: Rename remaining "transaction" glock references (Andreas Gruenbacher) [2095340]
+- gfs2: init system threads before freeze lock (Bob Peterson) [2095340]
+- net: mana: Use the correct WQE count for ringing RQ doorbell (Bandan Das) [2222573]
+- net: mana: Batch ringing RX queue doorbell on receiving packets (Bandan Das) [2222573]
+- net: mana: Add support for vlan tagging (Bandan Das) [2222573]
+- net: mana: Fix perf regression: remove rx_cqes, tx_cqes counters (Bandan Das) [2222573]
+- net: mana: Check if netdev/napi_alloc_frag returns single page (Bandan Das) [2222573]
+- net: mana: Rename mana_refill_rxoob and remove some empty lines (Bandan Das) [2222573]
+- net: mana: Add support for jumbo frame (Bandan Das) [2222573]
+- net: mana: Enable RX path to handle various MTU sizes (Bandan Das) [2222573]
+- net: mana: Refactor RX buffer allocation code to prepare for various MTU (Bandan Das) [2222573]
+- net: mana: Use napi_build_skb in RX path (Bandan Das) [2222573]
+- net: mana: Remove redundant pci_clear_master (Bandan Das) [2222573]
+- net: mana: Add new MANA VF performance counters for easier troubleshooting (Bandan Das) [2222573]
+- ice: Fix NULL pointer deref during VF reset (Petr Oros) [2227743]
+- x86/kasan: Populate shadow for shared chunk of the CPU entry area (Rafael Aquini) [2232451]
+- x86/kasan: Add helpers to align shadow addresses up and down (Rafael Aquini) [2232451]
+- x86/kasan: Rename local CPU_ENTRY_AREA variables to shorten names (Rafael Aquini) [2232451]
+- x86/mm: Populate KASAN shadow for entire per-CPU range of CPU entry area (Rafael Aquini) [2232451]
+- x86/mm: Recompute physical address for every page of per-CPU CEA mapping (Rafael Aquini) [2232451]
+
+* Tue Aug 22 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-512.el8]
+- dm cache policy smq: ensure IO doesn't prevent cleaner policy progress (Benjamin Marzinski) [2227951]
+- netfilter: nf_tables: prevent OOB access in nft_byteorder_eval (Florian Westphal) [2221046] {CVE-2023-35001}
+- scsi: storvsc: Remove errant duplicate code (Cathy Avery) [2211725]
+- scsi: storvsc: Limit max_sectors for virtual Fibre Channel devices (Cathy Avery) [2211725]
+- redhat/configs: Enable CONFIG_AMPERE_ERRATUM_AC03_CPU_38 (Shaoqin Huang) [2219725]
+- arm64: errata: Mitigate Ampere1 erratum AC03_CPU_38 at stage-2 (Shaoqin Huang) [2219725]
+- KVM: arm64: Correctly handle page aging notifiers for unaligned memslot (Shaoqin Huang) [2219725]
+- KVM: arm64: timers: Fix resource leaks in kvm_timer_hyp_init() (Shaoqin Huang) [2219725]
+- KVM: arm64: vgic-v4: Make the doorbell request robust w.r.t preemption (Shaoqin Huang) [2219725]
+- KVM: arm64: Don't miss pending interrupts for suspended vCPU (Shaoqin Huang) [2219725]
+- KVM: arm64: Move vGIC v4 handling for WFI out arch callback hook (Shaoqin Huang) [2219725]
+- KVM: arm64: PMU: Don't overwrite PMUSERENR with vcpu loaded (Shaoqin Huang) [2219725]
+- KVM: arm64: PMU: Restore the host's PMUSERENR_EL0 (Shaoqin Huang) [2219725]
+- KVM: arm64: Restore mdcr_el2 from vcpu (Shaoqin Huang) [2219725]
+- kvm: arm64: Remove __hyp_this_cpu_read (Shaoqin Huang) [2219725]
+- wifi: rtw88: unlock on error path in rtw_ops_add_interface() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: check only affected links (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: send time sync only if needed (Íñigo Huguet) [2196823]
+- wifi: clean up erroneously introduced file (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Handle return value for iwl_mvm_sta_init (Íñigo Huguet) [2196823]
+- wifi: rtw88: delete timer and free skb queue when unloading (Íñigo Huguet) [2196823]
+- wifi: cfg80211: Fix return value in scan logic (Íñigo Huguet) [2196823]
+- Revert "wifi: ath11k: Enable threaded NAPI" (Íñigo Huguet) [2196823]
+- wifi: cfg80211: fix receiving mesh packets without RFC1042 header (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921e: fix init command fail with enabled device (Íñigo Huguet) [2196823]
+- wifi: ath9k: convert msecs to jiffies where needed (Íñigo Huguet) [2196823]
+- wifi: ath11k: Add missing check for ioremap (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix memory leak in WMI firmware stats (Íñigo Huguet) [2196823]
+- wifi: ath9k: Fix possible stall on ath9k_txq_list_has_key() (Íñigo Huguet) [2196823]
+- wifi: ath9k: don't allow to overwrite ENDPOINT0 attributes (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: avoid baid size integer overflow (Íñigo Huguet) [2196823]
+- wifi: rtw88: process VO packets without workqueue to avoid PTK rekey failed (Íñigo Huguet) [2196823]
+- wifi: rtw88: Fix action frame transmission fail before association (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: add a few rate index validity checks (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Validate slots_num before allocating memory (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Validate tid is in valid range before using it (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: pcie: fix NULL pointer dereference in iwl_pcie_irq_rx_msix_handler() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: check link during TX (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add a NULL pointer check (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: pull from TXQs with softirqs disabled (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Correctly indicate support for VHT TX STBC (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Add NULL check before dereferencing the pointer (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix potential array out of bounds access (Íñigo Huguet) [2196823]
+- wifi: rtw88: add missing unwind goto for __rtw_download_firmware() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: disable RX STBC when a device doesn't support it (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: don't silently ignore missing suspend or resume ops (Íñigo Huguet) [2196823]
+- wifi: ath9k: avoid referencing uninit memory in ath9k_wmi_ctrl_rx (Íñigo Huguet) [2196823]
+- wifi: ath9k: fix AR9003 mac hardware hang check register offset calculation (Íñigo Huguet) [2196823]
+- wifi: rtw89: pci: fix interrupt enable mask for HALT C2H of RTL8851B (Íñigo Huguet) [2196823]
+- wifi: rtw89: fix rtw89_read_chip_ver() for RTL8852B and RTL8851B (Íñigo Huguet) [2196823]
+- wifi: rtw88: fix incorrect error codes in rtw_debugfs_set_* (Íñigo Huguet) [2196823]
+- wifi: rtw88: fix incorrect error codes in rtw_debugfs_copy_from_user (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: pcie: Handle SO-F device for PCI id 0x7AF0 (Íñigo Huguet) [2196823]
+- config: wifi: debug configs for brcm80211 (Íñigo Huguet) [2196823]
+- config: wifi: set RTL8821CS, RTL8822BS and RTL8822CS as disabled (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: spin_lock_bh() to fix lockdep regression (Íñigo Huguet) [2196823]
+- wifi: mac80211: fragment per STA profile correctly (Íñigo Huguet) [2196823]
+- wifi: mac80211: Use active_links instead of valid_links in Tx (Íñigo Huguet) [2196823]
+- wifi: cfg80211: remove links only on AP (Íñigo Huguet) [2196823]
+- wifi: mac80211: take lock before setting vif links (Íñigo Huguet) [2196823]
+- wifi: cfg80211: fix link del callback to call correct handler (Íñigo Huguet) [2196823]
+- wifi: mac80211: fix link activation settings order (Íñigo Huguet) [2196823]
+- wifi: cfg80211: fix double lock bug in reg_wdev_chan_valid() (Íñigo Huguet) [2196823]
+- wifi: cfg80211: fix locking in regulatory disconnect (Íñigo Huguet) [2196823]
+- wifi: cfg80211: fix locking in sched scan stop work (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Fix -Warray-bounds bug in iwl_mvm_wait_d3_notif() (Íñigo Huguet) [2196823]
+- wifi: mac80211: fix switch count in EMA beacons (Íñigo Huguet) [2196823]
+- wifi: mac80211: don't translate beacon/presp addrs (Íñigo Huguet) [2196823]
+- wifi: mac80211: mlme: fix non-inheritence element (Íñigo Huguet) [2196823]
+- wifi: cfg80211: reject bad AP MLD address (Íñigo Huguet) [2196823]
+- wifi: mac80211: use correct iftype HE cap (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: fix possible NULL pointer dereference in mt7996_mac_write_txwi() (Íñigo Huguet) [2196823]
+- wifi: rtw89: remove redundant check of entering LPS (Íñigo Huguet) [2196823]
+- wifi: rtw89: correct PS calculation for SUPPORTS_DYNAMIC_PS (Íñigo Huguet) [2196823]
+- wifi: rtw88: correct PS calculation for SUPPORTS_DYNAMIC_PS (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll (Íñigo Huguet) [2196823]
+- wifi: b43: fix incorrect __packed annotation (Íñigo Huguet) [2196823]
+- wifi: rtw88: sdio: Always use two consecutive bytes for word operations (Íñigo Huguet) [2196823]
+- mac80211_hwsim: fix memory leak in hwsim_new_radio_nl (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Add locking to the rate read flow (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Don't use valid_links to iterate sta links (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: don't trust firmware n_channels (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix OEM's name in the tas approved list (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fix OEM's name in the ppag approved list (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix initialization of a return value (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix access to fw_id_to_mac_id (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fw: fix DBGI dump (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix number of concurrent link checks (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix cancel_delayed_work_sync() deadlock (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: don't double-init spinlock (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: always free dup_data (Íñigo Huguet) [2196823]
+- wifi: mac80211: recalc chanctx mindef before assigning (Íñigo Huguet) [2196823]
+- wifi: mac80211: consider reserved chanctx for mindef (Íñigo Huguet) [2196823]
+- wifi: mac80211: simplify chanctx allocation (Íñigo Huguet) [2196823]
+- wifi: mac80211: Abort running color change when stopping the AP (Íñigo Huguet) [2196823]
+- wifi: mac80211: fix min center freq offset tracing (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: rfi: disable RFI feature (Íñigo Huguet) [2196823]
+- wifi: mac80211: Fix puncturing bitmap handling in __ieee80211_csa_finalize() (Íñigo Huguet) [2196823]
+- wifi: mac80211: fortify the spinlock against deadlock by interrupt (Íñigo Huguet) [2196823]
+- wifi: cfg80211: Drop entries with invalid BSSIDs in RNR (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: fix authentication timeout due to incorrect RCR value (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: Check for probe() id argument being NULL (Íñigo Huguet) [2196823]
+- wifi: rtw88: correct qsel_to_ep[] type as int (Íñigo Huguet) [2196823]
+- wifi: rtw88: use work to update rate to avoid RCU warning (Íñigo Huguet) [2196823]
+- wifi: rtw89: 8852b: adjust quota to avoid SER L1 caused by access null page (Íñigo Huguet) [2196823]
+- wifi: mt76: connac: fix stats->tx_bytes calculation (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: fix endianness of MT_TXD6_TX_RATE (Íñigo Huguet) [2196823]
+- wifi: rtw88: Update spelling in main.h (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: Simplify setting the initial gain (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: Add rtl8xxxu_write{8,16,32}_{set,clear} (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: Don't print the vendor/product/serial (Íñigo Huguet) [2196823]
+- wifi: rtw88: Fix memory leak in rtw88_usb (Íñigo Huguet) [2196823]
+- wifi: rtw88: call rtw8821c_switch_rf_set() according to chip variant (Íñigo Huguet) [2196823]
+- wifi: rtw88: set pkg_type correctly for specific rtw8821c variants (Íñigo Huguet) [2196823]
+- wifi: rtw88: rtw8821c: Fix rfe_option field width (Íñigo Huguet) [2196823]
+- wifi: rtw88: usb: fix priority queue to endpoint mapping (Íñigo Huguet) [2196823]
+- wifi: rtw88: 8822c: add iface combination (Íñigo Huguet) [2196823]
+- wifi: rtw88: handle station mode concurrent scan with AP mode (Íñigo Huguet) [2196823]
+- wifi: rtw88: prevent scan abort with other VIFs (Íñigo Huguet) [2196823]
+- wifi: rtw88: refine reserved page flow for AP mode (Íñigo Huguet) [2196823]
+- wifi: rtw88: disallow PS during AP mode (Íñigo Huguet) [2196823]
+- wifi: rtw88: 8822c: extend reserved page number (Íñigo Huguet) [2196823]
+- wifi: rtw88: add port switch for AP mode (Íñigo Huguet) [2196823]
+- wifi: rtw88: add bitmap for dynamic port settings (Íñigo Huguet) [2196823]
+- wifi: rtw89: mac: use regular int as return type of DLE buffer request (Íñigo Huguet) [2196823]
+- wifi: mac80211: remove return value check of debugfs_create_dir() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix RFKILL report when driver is going down (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mei: re-ask for ownership after it was taken by CSME (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mei: make mei filtered scan more aggressive (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: modify scan request and results when in link protection (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: enable support for MLO APIs (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: prefer RCU_INIT_POINTER() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix potential memory leak (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fw: fix argument to efi.get_variable (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix MIC removal confusion (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fw: fix memory leak in debugfs (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Update support for b0 version (Íñigo Huguet) [2196823]
+- wifi: ath11k: Remove disabling of 80+80 and 160 MHz (Íñigo Huguet) [2196823]
+- wifi: ath11k: Fix SKB corruption in REO destination ring (Íñigo Huguet) [2196823]
+- wifi: ath11k: Fix incorrect update of radiotap fields (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix tx status reporting in encap offload mode (Íñigo Huguet) [2196823]
+- wifi: ath11k: add peer mac information in failure cases (Íñigo Huguet) [2196823]
+- wifi: ath11k: Prevent REO cmd failures (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix double free of peer rx_tid during reo cmd failure (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: fill txd by host driver (Íñigo Huguet) [2196823]
+- wifi: mt76: set NL80211_EXT_FEATURE_CAN_REPLACE_PTK0 on supported drivers (Íñigo Huguet) [2196823]
+- wifi: mt76: dma: use napi_build_skb (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7615: increase eeprom size for mt7663 (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: enable mesh HW amsdu/de-amsdu support (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: enable configured beacon tx rate (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: enable BSS_CHANGED_MCAST_RATE support (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: enable BSS_CHANGED_BASIC_RATES support (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: dvm: Fix memcpy: detected field-spanning write backtrace (Íñigo Huguet) [2196823]
+- wifi: mac80211: remove ieee80211_tx_status_8023 (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: bump FW API to 78 for AX devices (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: check firmware response size (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add MLO support to SF - use sta pointer (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: configure TLC on link activation (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fix iwl_mvm_max_amsdu_size() for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: remove RS rate init update argument (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: initialize per-link STA ratescale data (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: rs-fw: properly access sband->iftype_data (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: only clients can be 20MHz-only (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix iwl_mvm_sta_rc_update for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: remove per-STA MFP setting (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: allow NL80211_EXT_FEATURE_SCAN_MIN_PREQ_CONTENT (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use BSSID when building probe requests (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: update mac id management (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adopt the latest firmware API (Íñigo Huguet) [2196823]
+- wifi: mt76: connac: add nss calculation into mt76_connac2_mac_tx_rate_val() (Íñigo Huguet) [2196823]
+- wifi: mt76: connac: fix txd multicast rate setting (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921e: stop chip reset worker in unregister hook (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921e: improve reliability of dma reset (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: fix missing unwind goto in `mt7921u_probe` (Íñigo Huguet) [2196823]
+- mt76: mt7921: fix kernel panic by accessing unallocated eeprom.data (Íñigo Huguet) [2196823]
+- wifi: mt76: move mcu_uni_event and mcu_reg_event in common code (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: enable coredump support (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: add full system reset knobs into debugfs (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: enable full system reset support (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: enable p2p support (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: Replace fake flex-arrays with flexible-array members (Íñigo Huguet) [2196823]
+- wifi: mt76: Replace zero-length array with flexible-array member (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: add Netgear AXE3000 (A8000) support (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7915: drop redundant prefix of mt7915_txpower_puts() (Íñigo Huguet) [2196823]
+- wifi: mt76: fix 6GHz high channel not be scanned (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921e: fix probe timeout after reboot (Íñigo Huguet) [2196823]
+- wifi: mt76: move shared mac definitions in mt76_connac2_mac.h (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: get rid of eeprom.h (Íñigo Huguet) [2196823]
+- wifi: mt76: add mt76_connac_gen_ppe_thresh utility routine (Íñigo Huguet) [2196823]
+- wifi: mt76: get rid of unused sta_ps callbacks (Íñigo Huguet) [2196823]
+- wifi: mt76: add mt76_connac_irq_enable utility routine (Íñigo Huguet) [2196823]
+- wifi: mt76: move irq_tasklet in mt76_dev struct (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921e: Set memory space enable in PCI_COMMAND if unset (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: use driver flags rather than mac80211 flags to mcu (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: introduce mt7921_get_mac80211_ops utility routine (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: fix eeprom tx path bitfields (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: remove mt7996_mcu_set_pm() (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: init mpdu density cap (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: fix pointer calculation in ie countdown event (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: remove unused eeprom band selection (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: let non-bufferable MMPDUs use correct hw queue (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: add eht rx rate support (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: remove mt7996_mcu_beacon_check_caps() (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7915: remove mt7915_mcu_beacon_check_caps() (Íñigo Huguet) [2196823]
+- wifi: mt76: connac: refresh tx session timer for WED device (Íñigo Huguet) [2196823]
+- wifi: mt76: add missing locking to protect against concurrent rx/status calls (Íñigo Huguet) [2196823]
+- wifi: mt76: handle failure of vzalloc in mt7615_coredump_work (Íñigo Huguet) [2196823]
+- wifi: mt76: drop the incorrect scatter and gather frame (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7915: rework init flow in mt7915_thermal_init() (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7915: add dev->hif2 support for mt7916 WED device (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7915: expose device tree match table (Íñigo Huguet) [2196823]
+- wifi: mt76: dynamic channel bandwidth changes in AP mode (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: fix radiotap bitfield (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7915: unlock on error in mt7915_thermal_temp_store() (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7996: Remove unneeded semicolon (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: fix PCI DMA hang after reboot (Íñigo Huguet) [2196823]
+- wifi: mt76: mt7921: fix wrong command to set STA channel (Íñigo Huguet) [2196823]
+- wifi: mt76: remove redundent MCU_UNI_CMD_* definitions (Íñigo Huguet) [2196823]
+- wifi: ath9k: fix per-packet TX-power cap for TPC (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix undefined behavior with __fls in dp (Íñigo Huguet) [2196823]
+- wifi: ath11k: Ignore frags from uninitialized peer in dp. (Íñigo Huguet) [2196823]
+- wifi: ath11k: print a warning when crypto_alloc_shash() fails (Íñigo Huguet) [2196823]
+- wifi: ath11k: pci: Add more MODULE_FIRMWARE() entries (Íñigo Huguet) [2196823]
+- wifi: ath11k: enable SAR support on WCN6750 (Íñigo Huguet) [2196823]
+- wifi: ath11k: Disable Spectral scan upon removing interface (Íñigo Huguet) [2196823]
+- wifi: rtw89: add support of concurrent mode (Íñigo Huguet) [2196823]
+- wifi: rtw89: Disallow power save with multiple stations (Íñigo Huguet) [2196823]
+- wifi: rtw89: update statistics to FW for fine-tuning performance (Íñigo Huguet) [2196823]
+- wifi: rtw89: use struct instead of macros to set H2C command of hardware scan (Íñigo Huguet) [2196823]
+- wifi: rtw89: refine scan function after chanctx (Íñigo Huguet) [2196823]
+- wifi: rtw89: prohibit enter IPS during HW scan (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: send more hardware module info to firmware for 8851B (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Update function to get BT RSSI and hardware counter (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add path control register to monitor list (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Enable Wi-Fi RX gain control for free run solution (Íñigo Huguet) [2196823]
+- wifi: rtw89: fix power save function in WoWLAN mode (Íñigo Huguet) [2196823]
+- wifi: rtw89: support WoWLAN mode for 8852be (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: move debug buffer allocation failure to info verbosity (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: make the loop for card preparation effective (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: allow number of beacons from FW (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: implement key link switching (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: implement BAID link switching (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: track station mask for BAIDs (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: bump FW API to 77 for AX devices (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use correct sta mask to remove queue (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: avoid iterating over an un-initialized list (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: factor out iwl_mvm_sta_fw_id_mask() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: properly implement HE AP support (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Fix _iwl_mvm_get_scan_type() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix getting lowest TX rate for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: call napi_synchronize() before freeing rx/tx queues (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: nvm-parse: add full BW UL MU-MIMO support (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: Support devices with 5-6 out endpoints (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: Clean up some messy ifs (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: add Cypress 43439 SDIO ids (Íñigo Huguet) [2196823]
+- wifi: rtw89: fix crash due to null pointer of sta in AP mode (Íñigo Huguet) [2196823]
+- wifi: rtw89: correct 5 MHz mask setting (Íñigo Huguet) [2196823]
+- wifi: rtw89: 8851b: add tables for RFK (Íñigo Huguet) [2196823]
+- wifi: rtw89: 8851b: add BB and RF tables (2 of 2) (Íñigo Huguet) [2196823]
+- wifi: rtw89: 8851b: add BB and RF tables (1 of 2) (Íñigo Huguet) [2196823]
+- wifi: rtw89: pci: update PCI related settings to support 8851B (Íñigo Huguet) [2196823]
+- wifi: rtw89: mac: update MAC settings to support 8851b (Íñigo Huguet) [2196823]
+- wifi: rtw89: 8851b: fix TX path to path A for one RF path chip (Íñigo Huguet) [2196823]
+- wifi: rtw89: read version of analog hardware (Íñigo Huguet) [2196823]
+- wifi: rtw89: use hardware CFO to improve performance (Íñigo Huguet) [2196823]
+- wifi: rtw89: support parameter tables by RFE type (Íñigo Huguet) [2196823]
+- wifi: rtw89: fix authentication fail during scan (Íñigo Huguet) [2196823]
+- wifi: rtw89: add flag check for power state (Íñigo Huguet) [2196823]
+- wifi: rtw89: add ieee80211::remain_on_channel ops (Íñigo Huguet) [2196823]
+- wifi: rtw89: add function to wait for completion of TX skbs (Íñigo Huguet) [2196823]
+- wifi: rtw89: 8852c: add beacon filter and CQM support (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: tx: remove misleading if statement (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Fix setting the rate for non station cases (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: validate station properly in flush (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: set STA mask for keys in MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix ptk_pn memory leak (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: make iwl_mvm_mac_ctxt_send_beacon() static (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: track AP STA pointer and use it for MFP (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: pcie: Fix integer overflow in iwl_write_to_user_buf (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fw: move memset before early return (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: initialize seq variable (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Fix spelling mistake "Gerenal" -> "General" (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Fix spelling mistake "upto" -> "up to" (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: enable new MLD FW API (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: add a new PCI device ID for BZ device (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Add RF Step Type for BZ device (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: scan legacy bands and UHB channels with same antenna (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: yoyo: Fix possible division by zero (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: yoyo: skip dump correctly on hw error (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: pcie: fix possible NULL pointer dereference (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Fix the duplicate dump name (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: pcie: work around ROM bug on AX210 integrated (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add DSM_FUNC_ENABLE_6E value to debugfs (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: cleanup beacon_inject_active during hw restart (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: support wowlan info notification version 2 (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: make HLTK configuration for PASN station optional (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: request limiting to 8 MSDUs per A-MSDU (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix shift-out-of-bounds (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: acpi: support modules with high antenna gain (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: don't drop unencrypted MCAST frames (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: dbg: print pc register data once fw dump occurred (Íñigo Huguet) [2196823]
+- wifi: mac80211: add flush_sta method (Íñigo Huguet) [2196823]
+- wifi: mac80211: flush queues on STA removal (Íñigo Huguet) [2196823]
+- wifi: ieee80211: correctly mark FTM frames non-bufferable (Íñigo Huguet) [2196823]
+- wifi: ieee80211: clean up public action codes (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: don't set CHECKSUM_COMPLETE for unsupported protocols (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: trans: don't trigger d3 interrupt twice (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Update configurations for Bnj-a0 and specific rf devices (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Update init sequence if tx diversity supported (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: move function sequence (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: nvm: Update HE capabilities on 6GHz band for EHT device (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor TX csum mode check (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix A-MSDU checks (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: enable bz hw checksum from c step (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use OFDM rate if IEEE80211_TX_CTL_NO_CCK_RATE is set (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: convert TID to FW value on queue remove (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Update configuration for SO,SOF MAC and HR RF (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: add a validity check of queue_id in iwl_txq_reclaim (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: nvm-parse: enable 160/320 MHz for AP mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: debug: fix crash in __iwl_err() (Íñigo Huguet) [2196823]
+- wifi: rtw88: Add support for the SDIO based RTL8821CS chipset (Íñigo Huguet) [2196823]
+- wifi: rtw88: Add support for the SDIO based RTL8822CS chipset (Íñigo Huguet) [2196823]
+- wifi: rtw88: Add support for the SDIO based RTL8822BS chipset (Íñigo Huguet) [2196823]
+- wifi: rtw88: main: Reserve 8 bytes of extra TX headroom for SDIO cards (Íñigo Huguet) [2196823]
+- wifi: rtw88: main: Add the {cpwm,rpwm}_addr for SDIO based chipsets (Íñigo Huguet) [2196823]
+- wifi: rtw88: mac: Support SDIO specific bits in the power on sequence (Íñigo Huguet) [2196823]
+- wifi: rtw88: sdio: Add HCI implementation for SDIO based chipsets (Íñigo Huguet) [2196823]
+- wifi: rtw88: Clear RTW_FLAG_POWERON early in rtw_mac_power_switch() (Íñigo Huguet) [2196823]
+- wifi: ath12k: Remove redundant pci_clear_master (Íñigo Huguet) [2196823]
+- wifi: ath10k: Remove redundant pci_clear_master (Íñigo Huguet) [2196823]
+- wifi: ath11k: Remove redundant pci_clear_master (Íñigo Huguet) [2196823]
+- wifi: ath11k: Send 11d scan start before WMI_START_SCAN_CMDID (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix writing to unintended memory region (Íñigo Huguet) [2196823]
+- wifi: ath11k: Fix invalid management rx frame length issue (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix rssi station dump not updated in QCN9074 (Íñigo Huguet) [2196823]
+- wifi: ath11k: Configure the FTM responder role using firmware capability flag (Íñigo Huguet) [2196823]
+- wifi: ath11k: Optimize 6 GHz scan time (Íñigo Huguet) [2196823]
+- wifi: mac80211: set EHT support flag in AP mode (Íñigo Huguet) [2196823]
+- wifi: mac80211_hwsim: fix potential NULL deref in hwsim_pmsr_report_nl() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fix duplicate entry in iwl_dev_info_table (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix the order of TIMING_MEASUREMENT notifications (Íñigo Huguet) [2196823]
+- bus: mhi: host: Use mhi_tryset_pm_state() for setting fw error state (Íñigo Huguet) [2196823]
+- bus: mhi: host: Remove duplicate ee check for syserr (Íñigo Huguet) [2196823]
+- bus: mhi: host: Avoid ringing EV DB if there are no elements to process (Íñigo Huguet) [2196823]
+- net: rfkill-gpio: Add explicit include for of.h (Íñigo Huguet) [2196823]
+- net: qrtr: correct types of trace event parameters (Íñigo Huguet) [2196823]
+- wifi: rt2x00: Fix memory leak when handling surveys (Íñigo Huguet) [2196823]
+- wifi: b43legacy: Remove the unused function prev_slot() (Íñigo Huguet) [2196823]
+- wifi: rtw89: Remove redundant pci_clear_master (Íñigo Huguet) [2196823]
+- wifi: rtw89: fix potential race condition between napi_init and napi_enable (Íñigo Huguet) [2196823]
+- wifi: rtw89: config EDCCA threshold during scan to prevent TX failed (Íñigo Huguet) [2196823]
+- wifi: rtw89: fix incorrect channel info during scan due to ppdu_sts filtering (Íñigo Huguet) [2196823]
+- wifi: rtw89: remove superfluous H2C of join_info (Íñigo Huguet) [2196823]
+- wifi: rtw89: set data lowest rate according to AP supported rate (Íñigo Huguet) [2196823]
+- wifi: rtw89: add counters of register-based H2C/C2H (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Update Wi-Fi Bluetooth coexistence version to 7.0.1 (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add report control v5 variation (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Update RTL8852B LNA2 hardware parameter (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Not to enable firmware report when WiFi is power saving (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add LPS protocol radio state for RTL8852B (Íñigo Huguet) [2196823]
+- bus: mhi: pci_generic: Add Foxconn T99W510 (Íñigo Huguet) [2196823]
+- bus: mhi: host: Use ERANGE for BHIOFF/BHIEOFF range check (Íñigo Huguet) [2196823]
+- bus: mhi: host: Range check CHDBOFF and ERDBOFF (Íñigo Huguet) [2196823]
+- wifi: mwifiex: remove unused evt_buf variable (Íñigo Huguet) [2196823]
+- wifi: brcmsmac: ampdu: remove unused suc_mpdu variable (Íñigo Huguet) [2196823]
+- wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_reg() (Íñigo Huguet) [2196823]
+- wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_rfreg() (Íñigo Huguet) [2196823]
+- wifi: brcmsmac: remove unused has_5g variable (Íñigo Huguet) [2196823]
+- wifi: b43legacy: remove unused freq_r3A_value function (Íñigo Huguet) [2196823]
+- wifi: rtlwifi: Replace fake flex-array with flex-array member (Íñigo Huguet) [2196823]
+- wifi: rtw88: Remove redundant pci_clear_master (Íñigo Huguet) [2196823]
+- wifi: rndis_wlan: Replace fake flex-array with flexible-array member (Íñigo Huguet) [2196823]
+- wifi: rndis_wlan: clean up a type issue (Íñigo Huguet) [2196823]
+- wifi: rtw88: remove unused rtw_pci_get_tx_desc function (Íñigo Huguet) [2196823]
+- wifi: rsi: Slightly simplify rsi_set_channel() (Íñigo Huguet) [2196823]
+- wifi: ipw2x00: remove unused _ipw_read16 function (Íñigo Huguet) [2196823]
+- wifi: mac80211: enable EHT mesh support (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: correctly use link in iwl_mvm_sta_del() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: separate AP link management queues (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: free probe_resp_data later (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: bump FW API to 75 for AX devices (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: move max_agg_bufsize into host TLC lq_sta (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: send full STA during HW restart (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: rework active links counting (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: update mac config when assigning chanctx (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use the correct link queue (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: clean up mac_id vs. link_id in MLD sta (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix station link data leak (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: initialize max_rc_amsdu_len per-link (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use appropriate link for rate selection (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use the new lockdep-checking macros (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: remove chanctx WARN_ON (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: avoid sending MAC context for idle (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: remove only link-specific AP keys (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: skip inactive links (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust iwl_mvm_scan_respect_p2p_go_iter() for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: rxmq: report link ID to mac80211 (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use bcast/mcast link station id (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: translate management frame address (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: implement mac80211 callback change_sta_links (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use the link sta address (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust rs init to MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust radar detection to MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust iwl_mvm_sec_key_remove_ap to MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: make a few warnings only trigger once (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: coex: start handling multiple links (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: rs-fw: don't crash on missing channel (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: use STA link address (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: skip MEI update for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix narrow RU check for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: make some HW flags conditional (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: implement link change ops (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust some cleanup functions to MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor iwl_mvm_mac_sta_state_common() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: update iwl_mvm_tx_reclaim() for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust to MLO assign/unassign/switch_vif_chanctx() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add fw link id allocation (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust internal stations to MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: replace bss_info_changed() with vif_cfg/link_info_changed() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add link_conf parameter for add/remove/change link (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: don't check dtim_period in new API (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust SMPS for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add set_hw_timestamp to mld ops (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add link to firmware earlier (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust some PS and PM methods to MLD (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust mld_mac_ctxt_/beacon_changed() for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: adjust smart fifo configuration to MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: align to the LINK cmd update in the FW (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: always use the sta->addr as the peers addr (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: modify link instead of removing it during csa (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix crash on queue removal for MLD API too (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix "modify_mask" value in the link cmd. (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add all missing ops to iwl_mvm_mld_ops (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add support for post_channel_switch in MLD mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: unite sta_modify_disable_tx flows (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add cancel/remain_on_channel for MLD mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor iwl_mvm_roc() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add some new MLD ops (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add sta handling flows for MLD mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add an indication that the new MLD API is used (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: sta preparation for MLO (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: vif preparation for MLO (Íñigo Huguet) [2196823]
+- wifi: nl80211: support advertising S1G capabilities (Íñigo Huguet) [2196823]
+- wifi: mac80211: S1G capabilities information element in probe request (Íñigo Huguet) [2196823]
+- mac80211: minstrel_ht: remove unused n_supported variable (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Use 64-bit division helper in iwl_mvm_get_crosstimestamp_fw() (Íñigo Huguet) [2196823]
+- wifi: carl9170: Replace fake flex-array with flexible-array member (Íñigo Huguet) [2196823]
+- wifi: carl9170: Fix multiple -Warray-bounds warnings (Íñigo Huguet) [2196823]
+- wifi: ath10k: remove unused ath10k_get_ring_byte function (Íñigo Huguet) [2196823]
+- wifi: ath12k: incorrect channel survey dump (Íñigo Huguet) [2196823]
+- wifi: ath12k: fix incorrect handling of AMSDU frames (Íñigo Huguet) [2196823]
+- wifi: ath12k: fix packets are sent in native wifi mode while we set raw mode (Íñigo Huguet) [2196823]
+- wifi: ath12k: fill peer meta data during reo_reinject (Íñigo Huguet) [2196823]
+- mac80211_hwsim: add PMSR report support via virtio (Íñigo Huguet) [2196823]
+- mac80211_hwsim: add PMSR abort support via virtio (Íñigo Huguet) [2196823]
+- mac80211_hwsim: add PMSR request support via virtio (Íñigo Huguet) [2196823]
+- wifi: nl80211: make nl80211_send_chandef non-static (Íñigo Huguet) [2196823]
+- mac80211_hwsim: add PMSR capability support (Íñigo Huguet) [2196823]
+- mac80211: support RNR for EMA AP (Íñigo Huguet) [2196823]
+- cfg80211: support RNR for EMA AP (Íñigo Huguet) [2196823]
+- wifi: mac80211: use bullet list for amsdu_mesh_control formats list (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix NULL deref in iwl_mvm_mld_disable_txq (Íñigo Huguet) [2196823]
+- wifi: mac80211_hwsim: EMA support (Íñigo Huguet) [2196823]
+- wifi: mac80211_hwsim: Multiple BSSID support (Íñigo Huguet) [2196823]
+- wifi: mac80211_hwsim: move beacon transmission to a separate function (Íñigo Huguet) [2196823]
+- wifi: mac80211: generate EMA beacons in AP mode (Íñigo Huguet) [2196823]
+- wifi: nl80211: Update the documentation of NL80211_SCAN_FLAG_COLOCATED_6GHZ (Íñigo Huguet) [2196823]
+- wifi: mac80211: implement support for yet another mesh A-MSDU format (Íñigo Huguet) [2196823]
+- wifi: mac80211: add mesh fast-rx support (Íñigo Huguet) [2196823]
+- wifi: mac80211: use mesh header cache to speed up mesh forwarding (Íñigo Huguet) [2196823]
+- wifi: mac80211: mesh fast xmit support (Íñigo Huguet) [2196823]
+- wifi: mac80211: fix race in mesh sequence number assignment (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Add debugfs to get TAS status (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: support enabling and disabling HW timestamping (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Update configurations for Bnj device (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor iwl_mvm_add_sta(), iwl_mvm_rm_sta() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: remove not needed initializations (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor iwl_mvm_sta_send_to_fw() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor iwl_mvm_sta (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor iwl_mvm_cfg_he_sta() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Don't send MAC CTXT cmd after deauthorization (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add stop_ap() and leave_ibss() callbacks for MLD mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add start_ap() and join_ibss() callbacks for MLD mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: select ptp cross timestamp from multiple reads (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: implement PHC clock adjustments (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: enable TX beacon protection (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add support for timing measurement (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: report hardware timestamps in RX/TX status (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: read synced time from firmware if supported (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add support for PTP HW clock (PHC) (Íñigo Huguet) [2196823]
+- wifi: ath12k: Enable IMPS for WCN7850 (Íñigo Huguet) [2196823]
+- wifi: ath12k: Identify DFS channel when sending scan channel list command (Íñigo Huguet) [2196823]
+- wifi: ath12k: fix firmware assert during channel switch for peer sta (Íñigo Huguet) [2196823]
+- wifi: ath12k: fix memory leak in ath12k_qmi_driver_event_work() (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix BUFFER_DONE read on monitor ring rx buffer (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: Support new chip RTL8710BU aka RTL8188GU (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: RTL8192EU always needs full init (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Avoid disabling GCC specific flag with clang (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: suppress printf warnings in tracing (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fw: pnvm: fix uefi reduced TX power loading (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Update configurations for Bnj and Bz devices (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: rs: print BAD_RATE for invalid HT/VHT index (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Replace space with tabs as code indent (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Add required space before open '(' (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Remove prohibited spaces (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: fix typos in comment (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: remove setting of 'sta' parameter (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add an unassign_vif_chanctx() callback for MLD mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor __iwl_mvm_unassign_vif_chanctx() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add an assign_vif_chanctx() callback for MLD mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: refactor __iwl_mvm_assign_vif_chanctx() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Add a remove_interface() callback for mld mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Add an add_interface() callback for mld mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add support for the new STA related commands (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add support for the new LINK command (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add support for the new MAC CTXT command (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Refactor MAC_CONTEXT_CMD sending flow (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: Refactor STA_HE_CTXT_CMD sending flow (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: yoyo: Add driver defined dump file name (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: yoyo: Add new tlv for dump file name extension (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: avoid sta lookup in queue alloc (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix deinitialization of firmware resources (Íñigo Huguet) [2196823]
+- wifi: ath11k: Replace fake flex-array with flexible-array member (Íñigo Huguet) [2196823]
+- wifi: ath12k: Add missing unwind goto in ath12k_pci_probe() (Íñigo Huguet) [2196823]
+- net: Use of_property_present() for testing DT property presence (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() (Íñigo Huguet) [2196823] {CVE-2023-1380}
+- wifi: rtw88: fix memory leak in rtw_usb_probe() (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add v5 firmware cycle status report (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add v2 Bluetooth scan info (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Fix wrong structure assignment at null data report (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add register monitor report v2 format (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add traffic TX/RX info and its H2C (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add WiFi role info v2 (Íñigo Huguet) [2196823]
+- wifi: rtw89: coex: Add more error_map and counter to log (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: use module_usb_driver (Íñigo Huguet) [2196823]
+- wifi: rtw89: release RX standby timer of beamformee CSI to save power (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: mark Edimax EW-7811Un V2 as tested (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: Use ISO3166 country code and rev 0 as fallback on 4356 (Íñigo Huguet) [2196823]
+- wifi: move raycs, wl3501 and rndis_wlan to legacy directory (Íñigo Huguet) [2196823]
+- wifi: move mac80211_hwsim and virt_wifi to virtual directory (Íñigo Huguet) [2196823]
+- wifi: ath11k: add debug prints in regulatory WMI event processing (Íñigo Huguet) [2196823]
+- wifi: ath11k: add support to parse new WMI event for 6 GHz (Íñigo Huguet) [2196823]
+- wifi: ath11k: use proper regulatory reference for bands (Íñigo Huguet) [2196823]
+- bus: mhi: host: pci_generic: Revert "Add a secondary AT port to Telit FN990" (Íñigo Huguet) [2196823]
+- bus: mhi: host: pci_generic: Drop redundant pci_enable_pcie_error_reporting() (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: fix EOF bit reporting (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Do not include radiotap EHT user info if not needed (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add EHT RU allocation to radiotap (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Update logs for yoyo reset sw changes (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: clean up duplicated defines (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: rs-fw: break out for unsupported bandwidth (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Add support for B step of BnJ-Fm4 (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: make flush code a bit clearer (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: avoid UB shift of snif_queue (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add primary 80 known for EHT radiotap (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: parse FW frame metadata for EHT sniffer mode (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: decode USIG_B1_B7 RU to nl80211 RU width (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: rename define to generic name (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: allow Microsoft to use TAS (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add all EHT based on data0 info from HW (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add EHT radiotap info based on rate_n_flags (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add an helper function radiotap TLVs (Íñigo Huguet) [2196823]
+- wifi: radiotap: separate vendor TLV into header/content (Íñigo Huguet) [2196823]
+- bus: mhi: ep: Demote unsupported channel error log to debug (Íñigo Huguet) [2196823]
+- bus: mhi: host: Remove mhi_poll() API (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: reduce verbosity of some logging events (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: Adding the code to get RF name for MsP device (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: mark mac header with no data frames (Íñigo Huguet) [2196823]
+- wifi: iwlwifi: mvm: add LSIG info to radio tap info in EHT (Íñigo Huguet) [2196823]
+- wifi: nl80211: Add support for randomizing TA of auth and deauth frames (Íñigo Huguet) [2196823]
+- wifi: mac80211: add LDPC related flags in ieee80211_bss_conf (Íñigo Huguet) [2196823]
+- wifi: mac80211: add EHT MU-MIMO related flags in ieee80211_bss_conf (Íñigo Huguet) [2196823]
+- wifi: mac80211: introduce ieee80211_refresh_tx_agg_session_timer() (Íñigo Huguet) [2196823]
+- wifi: mac80211: add support for driver adding radiotap TLVs (Íñigo Huguet) [2196823]
+- wifi: radiotap: Add EHT radiotap definitions (Íñigo Huguet) [2196823]
+- wifi: mac80211: fix ieee80211_link_set_associated() type (Íñigo Huguet) [2196823]
+- wifi: mac80211: simplify reasoning about EHT capa handling (Íñigo Huguet) [2196823]
+- wifi: mac80211: mlme: remove pointless sta check (Íñigo Huguet) [2196823]
+- wifi: mac80211_hwsim: Indicate support for NL80211_EXT_FEATURE_SCAN_MIN_PREQ_CONTENT (Íñigo Huguet) [2196823]
+- wifi: mac80211: add netdev per-link debugfs data and driver hook (Íñigo Huguet) [2196823]
+- wifi: mac80211: remove SMPS from AP debugfs (Íñigo Huguet) [2196823]
+- wifi: mac80211: add pointer from bss_conf to vif (Íñigo Huguet) [2196823]
+- wifi: mac80211: warn only once on AP probe (Íñigo Huguet) [2196823]
+- wifi: cfg80211/mac80211: report link ID on control port RX (Íñigo Huguet) [2196823]
+- wifi: mac80211: add support for set_hw_timestamp command (Íñigo Huguet) [2196823]
+- wifi: nl80211: add a command to enable/disable HW timestamping (Íñigo Huguet) [2196823]
+- wifi: wireless: cleanup unused function parameters (Íñigo Huguet) [2196823]
+- wifi: wireless: correct primary channel validation on 6 GHz (Íñigo Huguet) [2196823]
+- wifi: wireless: return primary channel regardless of DUP (Íñigo Huguet) [2196823]
+- wifi: mac80211: allow beacon protection HW offload (Íñigo Huguet) [2196823]
+- wifi: mac80211: check key taint for beacon protection (Íñigo Huguet) [2196823]
+- wifi: mac80211: clear all bits that relate rtap fields on skb (Íñigo Huguet) [2196823]
+- wifi: mac80211: adjust scan cancel comment/check (Íñigo Huguet) [2196823]
+- wifi: nl80211: Update the documentation of NL80211_SCAN_FLAG_COLOCATED_6GHZ (Íñigo Huguet) [2196823]
+- gpiolib: split linux/gpio/driver.h out of linux/gpio.h (Íñigo Huguet) [2196823]
+- wifi: rtlwifi: rtl8192se: Remove some unused variables (Íñigo Huguet) [2196823]
+- wifi: rtw88: mac: Return the original error from rtw_mac_power_switch() (Íñigo Huguet) [2196823]
+- wifi: rtw88: mac: Return the original error from rtw_pwr_seq_parser() (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: pcie: Add 4359C0 firmware definition (Íñigo Huguet) [2196823]
+- wifi: rtw89: fix SER L1 might stop entering LPS issue (Íñigo Huguet) [2196823]
+- wifi: ath11k: Add tx ack signal support for management packets (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: pcie: Add BCM4378B3 support (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: common: Add support for external calibration blobs (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: pcie: Load and provide TxCap blobs (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: common: Add support for downloading TxCap blobs (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: pcie: Add IDs/properties for BCM4387 (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: cfg80211: Pass the PMK in binary instead of hex (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: cfg80211: Add support for PMKID_V3 operations (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: feature: Add support for setting feats based on WLC version (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: cfg80211: Add support for scan params v2 (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: chip: Handle 1024-unit sizes for TCM blocks (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: chip: Only disable D11 cores; handle an arbitrary number (Íñigo Huguet) [2196823]
+- wifi: ath11k: generate rx and tx mcs maps for supported HE mcs (Íñigo Huguet) [2196823]
+- wifi: ath11k: move HE MCS mapper to a separate function (Íñigo Huguet) [2196823]
+- wifi: ath11k: push MU-MIMO params from hostapd to hardware (Íñigo Huguet) [2196823]
+- wifi: ath11k: modify accessor macros to match index size (Íñigo Huguet) [2196823]
+- wifi: ath6kl: reduce WARN to dev_dbg() in callback (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: support CQM RSSI notification with older firmware (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: pcie: Provide a buffer of random bytes to the device (Íñigo Huguet) [2196823]
+- wifi: brcmfmac: acpi: Add support for fetching Apple ACPI properties (Íñigo Huguet) [2196823]
+- wifi: ath12k: remove memset with byte count of 278528 (Íñigo Huguet) [2196823]
+- wifi: wcn36xx: Slightly optimize PREPARE_HAL_BUF() (Íñigo Huguet) [2196823]
+- wifi: rtw89: refine FW feature judgement on packet drop (Íñigo Huguet) [2196823]
+- wifi: rtw89: 8852b: enable hw_scan support (Íñigo Huguet) [2196823]
+- wifi: rtw89: 8852b: add channel encoding for hw_scan (Íñigo Huguet) [2196823]
+- wifi: rtw89: adjust channel encoding to common function (Íñigo Huguet) [2196823]
+- wifi: rtw89: fw: configure CRASH_TRIGGER feature for 8852B (Íñigo Huguet) [2196823]
+- wifi: rtw89: add tx_wake notify for 8852B (Íñigo Huguet) [2196823]
+- wifi: rtw88: rtw8822c: Implement RTL8822CS (SDIO) efuse parsing (Íñigo Huguet) [2196823]
+- wifi: rtw88: rtw8822b: Implement RTL8822BS (SDIO) efuse parsing (Íñigo Huguet) [2196823]
+- wifi: rtw88: rtw8821c: Implement RTL8821CS (SDIO) efuse parsing (Íñigo Huguet) [2196823]
+- wifi: rtw88: mac: Add SDIO HCI support in the TX/page table setup (Íñigo Huguet) [2196823]
+- wifi: rtw88: mac: Add support for the SDIO HCI in rtw_pwr_seq_parser() (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: Remove always true condition in rtl8xxxu_print_chipinfo (Íñigo Huguet) [2196823]
+- wifi: rtw89: add RNR support for 6 GHz scan (Íñigo Huguet) [2196823]
+- wifi: rtlwifi: rtl8192de: Remove the unused variable bcnfunc_enable (Íñigo Huguet) [2196823]
+- wifi: rtl8xxxu: 8188e: parse single one element of RA report for station mode (Íñigo Huguet) [2196823]
+- wifi: rtlwifi: rtl8192ce: fix dealing empty EEPROM values (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix SAC bug on peer addition with sta band migration (Íñigo Huguet) [2196823]
+- wifi: ath10k: Remove redundant assignment to changed_flags (Íñigo Huguet) [2196823]
+- wifi: ath10k: snoc: enable threaded napi on WCN3990 (Íñigo Huguet) [2196823]
+- wifi: ath5k: fix an off by one check in ath5k_eeprom_read_freq_list() (Íñigo Huguet) [2196823]
+- wifi: ath5k: Use platform_get_irq() to get the interrupt (Íñigo Huguet) [2196823]
+- wifi: ath11k: Use platform_get_irq() to get the interrupt (Íñigo Huguet) [2196823]
+- wifi: ath12k: PCI ops for wakeup/release MHI (Íñigo Huguet) [2196823]
+- wifi: ath12k: Handle lock during peer_id find (Íñigo Huguet) [2196823]
+- wifi: ath9k: hif_usb: fix memory leak of remain_skbs (Íñigo Huguet) [2196823]
+- wifi: ath11k: fix return value check in ath11k_ahb_probe() (Íñigo Huguet) [2196823]
+- wifi: ath12k: use kfree_skb() instead of kfree() (Íñigo Huguet) [2196823]
+- wifi: ath: Silence memcpy run-time false positive warning (Íñigo Huguet) [2196823]
+- wifi: ath10k: Remove the unused function shadow_dst_wr_ind_addr() and ath10k_ce_error_intr_enable() (Íñigo Huguet) [2196823]
+- wifi: ath12k: dp_mon: clean up some inconsistent indentings (Íñigo Huguet) [2196823]
+- wifi: ath12k: dp_mon: Fix unsigned comparison with less than zero (Íñigo Huguet) [2196823]
+- wifi: ath12k: Fix spelling mistakes in warning messages and comments (Íñigo Huguet) [2196823]
+- wifi: ath6kl: minor fix for allocation size (Íñigo Huguet) [2196823]
+- wifi: ath11k: Set ext passive scan flag to adjust passive scan start time (Íñigo Huguet) [2196823]
+
+* Fri Aug 18 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-511.el8]
+- xfrm: add NULL check in xfrm_update_ae_params (Daniel Mendes) [2218948] {CVE-2023-3772}
+- scsi: storvsc: Fix handling of virtual Fibre Channel timeouts (Cathy Avery) [1986067]
+- netfilter: xt_owner: Add supplementary groups option (Phil Sutter) [2136194]
+- netfilter: nf_tables: can't schedule in nft_chain_validate (Florian Westphal) [2230460]
+- drm/nouveau/nvkm/dp: Add workaround to fix DP 1.3+ DPCD issues (Karol Herbst) [2229989]
+- net: deprecate PF_KEY (Sabrina Dubroca) [RHEL-1257]
+- KVM: SEV: remove ghcb variable declarations (Vitaly Kuznetsov) [2213807]
+- KVM: SEV: only access GHCB fields once (Vitaly Kuznetsov) [2213807] {CVE-2023-4155}
+- KVM: SEV: snapshot the GHCB before accessing it (Vitaly Kuznetsov) [2213807] {CVE-2023-4155}
+- Documentation/x86: Fix backwards on/off logic about YMM support (Waiman Long) [2229884] {CVE-2022-40982}
+- KVM: Add GDS_NO support to KVM (Waiman Long) [2229884] {CVE-2022-40982}
+- x86/speculation: Add Kconfig option for GDS (Waiman Long) [2229884] {CVE-2022-40982}
+- x86/speculation: Add force option to GDS mitigation (Waiman Long) [2229884] {CVE-2022-40982}
+- x86/speculation: Add Gather Data Sampling mitigation (Waiman Long) [2229884] {CVE-2022-40982}
+- x86/bugs: Use sysfs_emit() (Waiman Long) [2229884]
+- Documentation/ABI: Mention retbleed vulnerability info file for sysfs (Waiman Long) [2229884]
+- docs/kernel-parameters: Update descriptions for "mitigations=" param with retbleed (Waiman Long) [2229884]
+- arm64: correct the effect of mitigations off on kpti (Waiman Long) [2229884]
+- x86/speculation: Add missing srbds=off to the mitigations= help text (Waiman Long) [2229884]
+- usb: typec: ucsi: Mark dGPUs as DEVICE scope (Desnes Nunes) [2222463]
+- i2c: nvidia-gpu: Remove ccgx,firmware-build property (Desnes Nunes) [2222463]
+- usb: typec: ucsi_ccg: Add OF support (Desnes Nunes) [2222463]
+- usb: typec: ucsi/ucsi_ccg: Convert to i2c's .probe_new() (Desnes Nunes) [2222463]
+- i2c: nvidia-gpu: Add ACPI property to align with device-tree (Desnes Nunes) [2222463]
+- dt-bindings: usb: Add Cypress cypd4226 Type-C controller (Desnes Nunes) [2222463]
+- i2c: designware-pci: Switch to use i2c_new_ccgx_ucsi() (Desnes Nunes) [2222463]
+- i2c: nvidia-gpu: Convert to use dev_err_probe() (Desnes Nunes) [2222463]
+- i2c: nvidia-gpu: Use temporary variable for struct device (Desnes Nunes) [2222463]
+- i2c: nvidia-gpu: Switch to use i2c_new_ccgx_ucsi() (Desnes Nunes) [2222463]
+- i2c: Remove support for dangling device properties (Desnes Nunes) [2222463]
+- i2c: nvidia-gpu: Constify the software node (Desnes Nunes) [2222463]
+- i2c: nvidia-gpu: Use PTR_ERR_OR_ZERO() to simplify code (Desnes Nunes) [2222463]
+- i2c: nvidia-gpu: convert to use i2c_new_client_device() (Desnes Nunes) [2222463]
+- i2c: Add support for software nodes (Desnes Nunes) [2222463]
+- i2c: Introduce common module to instantiate CCGx UCSI (Desnes Nunes) [2222463]
+- power: supply: Fix logic checking if system is running from battery (Desnes Nunes) [2222463]
+- redhat: support virtio-mem on x86-64 as tech-preview (David Hildenbrand) [2229123]
+- virtio/virtio_mem: handle a possible NULL as a memcpy parameter (David Hildenbrand) [2229123]
+- virtio-mem: support VIRTIO_MEM_F_UNPLUGGED_INACCESSIBLE (David Hildenbrand) [2229123]
+- virtio-mem: disallow mapping virtio-mem memory via /dev/mem (David Hildenbrand) [2229123]
+- kernel/resource: disallow access to exclusive system RAM regions (David Hildenbrand) [2229123]
+- kernel/resource: clean up and optimize iomem_is_exclusive() (David Hildenbrand) [2229123]
+- virtio-mem: kdump mode to sanitize /proc/vmcore access (David Hildenbrand) [2229123]
+- virtio-mem: factor out hotplug specifics from virtio_mem_remove() into virtio_mem_deinit_hotplug() (David Hildenbrand) [2229123]
+- virtio-mem: factor out hotplug specifics from virtio_mem_probe() into virtio_mem_init_hotplug() (David Hildenbrand) [2229123]
+- virtio-mem: factor out hotplug specifics from virtio_mem_init() into virtio_mem_init_hotplug() (David Hildenbrand) [2229123]
+- proc/vmcore: fix possible deadlock on concurrent mmap and read (David Hildenbrand) [2229123]
+- proc/vmcore: don't fake reading zeroes on surprise vmcore_cb unregistration (David Hildenbrand) [2229123]
+- proc/vmcore: fix clearing user buffer by properly using clear_user() (David Hildenbrand) [2229123]
+- proc/vmcore: convert oldmem_pfn_is_ram callback to more generic vmcore callbacks (David Hildenbrand) [2229123]
+- proc/vmcore: let pfn_is_ram() return a bool (David Hildenbrand) [2229123]
+- x86/xen: print a warning when HVMOP_get_mem_type fails (David Hildenbrand) [2229123]
+- x86/xen: simplify xen_oldmem_pfn_is_ram() (David Hildenbrand) [2229123]
+- x86/xen: update xen_oldmem_pfn_is_ram() documentation (David Hildenbrand) [2229123]
+- virtio-mem: fix sleeping in RCU read side section in virtio_mem_online_page_cb() (David Hildenbrand) [2229123]
+- virtio-mem: prioritize unplug from ZONE_MOVABLE in Big Block Mode (David Hildenbrand) [2229123]
+- virtio-mem: simplify high-level unplug handling in Big Block Mode (David Hildenbrand) [2229123]
+- virtio-mem: prioritize unplug from ZONE_MOVABLE in Sub Block Mode (David Hildenbrand) [2229123]
+- virtio-mem: simplify high-level unplug handling in Sub Block Mode (David Hildenbrand) [2229123]
+- virtio-mem: simplify high-level plug handling in Sub Block Mode (David Hildenbrand) [2229123]
+- virtio-mem: use page_zonenum() in virtio_mem_fake_offline() (David Hildenbrand) [2229123]
+- virtio-mem: don't read big block size in Sub Block Mode (David Hildenbrand) [2229123]
+- fs/proc/kcore: use page_offline_(freeze|thaw) (David Hildenbrand) [2229123]
+- virtio-mem: use page_offline_(start|end) when setting PageOffline() (David Hildenbrand) [2229123]
+- mm: introduce page_offline_(begin|end|freeze|thaw) to synchronize setting PageOffline() (David Hildenbrand) [2229123]
+- fs/proc/kcore: don't read offline sections, logically offline pages and hwpoisoned pages (David Hildenbrand) [2229123]
+- fs/proc/kcore: pfn_is_ram check only applies to KCORE_RAM (David Hildenbrand) [2229123]
+- fs/proc/kcore: drop KCORE_REMAP and KCORE_OTHER (David Hildenbrand) [2229123]
+- proc/kcore: Remove unused kclist_add_remap() (David Hildenbrand) [2229123]
+- x86/gart: Exclude GART aperture from kcore (David Hildenbrand) [2229123]
+- kernel/resource: remove first_lvl / siblings_only logic (David Hildenbrand) [2229123]
+- kernel/resource: make walk_mem_res() find all busy IORESOURCE_MEM resources (David Hildenbrand) [2229123]
+- kernel/resource: make walk_system_ram_res() find all busy IORESOURCE_SYSTEM_RAM resources (David Hildenbrand) [2229123]
+- kernel/resource.c: fix kernel-doc markups (David Hildenbrand) [2229123]
+- resource: avoid unnecessary lookups in find_next_iomem_res() (David Hildenbrand) [2229123]
+- resource: fix locking in find_next_iomem_res() (David Hildenbrand) [2229123]
+- virtio-mem: check against mhp_get_pluggable_range() which memory we can hotplug (David Hildenbrand) [2229123]
+- virtio-mem: Assign boolean values to a bool variable (David Hildenbrand) [2229123]
+- mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE (David Hildenbrand) [2229123]
+- virtio-mem: Big Block Mode (BBM) - safe memory hotunplug (David Hildenbrand) [2229123]
+- virtio-mem: Big Block Mode (BBM) - basic memory hotunplug (David Hildenbrand) [2229123]
+- mm/memory_hotplug: extend offline_and_remove_memory() to handle more than one memory block (David Hildenbrand) [2229123]
+- virtio-mem: allow to force Big Block Mode (BBM) and set the big block size (David Hildenbrand) [2229123]
+- virtio-mem: Big Block Mode (BBM) memory hotplug (David Hildenbrand) [2229123]
+- virtio-mem: factor out adding/removing memory from Linux (David Hildenbrand) [2229123]
+- virtio-mem: memory notifier callbacks are specific to Sub Block Mode (SBM) (David Hildenbrand) [2229123]
+- virito-mem: existing (un)plug functions are specific to Sub Block Mode (SBM) (David Hildenbrand) [2229123]
+- virtio-mem: memory block ids are specific to Sub Block Mode (SBM) (David Hildenbrand) [2229123]
+- virtio-mem: nb_sb_per_mb and subblock_size are specific to Sub Block Mode (SBM) (David Hildenbrand) [2229123]
+- virito-mem: subblock states are specific to Sub Block Mode (SBM) (David Hildenbrand) [2229123]
+- virtio-mem: memory block states are specific to Sub Block Mode (SBM) (David Hildenbrand) [2229123]
+- virito-mem: document Sub Block Mode (SBM) (David Hildenbrand) [2229123]
+- virtio-mem: generalize handling when memory is getting onlined deferred (David Hildenbrand) [2229123]
+- virtio-mem: don't always trigger the workqueue when offlining memory (David Hildenbrand) [2229123]
+- virtio-mem: drop last_mb_id (David Hildenbrand) [2229123]
+- virtio-mem: generalize virtio_mem_overlaps_range() (David Hildenbrand) [2229123]
+- virtio-mem: generalize virtio_mem_owned_mb() (David Hildenbrand) [2229123]
+- virtio-mem: generalize check for added memory (David Hildenbrand) [2229123]
+- virtio-mem: retry fake-offlining via alloc_contig_range() on ZONE_MOVABLE (David Hildenbrand) [2229123]
+- virtio-mem: factor out handling of fake-offline pages in memory notifier (David Hildenbrand) [2229123]
+- virtio-mem: factor out fake-offlining into virtio_mem_fake_offline() (David Hildenbrand) [2229123]
+- virtio-mem: print debug messages from virtio_mem_send_*_request() (David Hildenbrand) [2229123]
+- virtio-mem: factor out calculation of the bit number within the subblock bitmap (David Hildenbrand) [2229123]
+- virtio-mem: use "unsigned long" for nr_pages when fake onlining/offlining (David Hildenbrand) [2229123]
+- virtio-mem: drop rc2 in virtio_mem_mb_plug_and_add() (David Hildenbrand) [2229123]
+- virtio-mem: simplify MAX_ORDER - 1 / pageblock_order handling (David Hildenbrand) [2229123]
+- virtio-mem: more precise calculation in virtio_mem_mb_state_prepare_next_mb() (David Hildenbrand) [2229123]
+- virtio-mem: determine nid only once using memory_add_physaddr_to_nid() (David Hildenbrand) [2229123]
+- MAINTAINERS: add URL for virtio-mem (David Hildenbrand) [2229123]
+- virtio-mem: Constify mem_id_table (David Hildenbrand) [2229123]
+- kernel/resource: make iomem_resource implicit in release_mem_region_adjustable() (David Hildenbrand) [2229123]
+- virtio-mem: try to merge system ram resources (David Hildenbrand) [2229123]
+- mm/memory_hotplug: MEMHP_MERGE_RESOURCE to specify merging of System RAM resources (David Hildenbrand) [2229123]
+- mm/memory_hotplug: prepare passing flags to add_memory() and friends (David Hildenbrand) [2229123]
+- mm/memory_hotplug: guard more declarations by CONFIG_MEMORY_HOTPLUG (David Hildenbrand) [2229123]
+- include/linux/memory_hotplug.h: move definitions of {set,clear}_zone_contiguous (David Hildenbrand) [2229123]
+- kernel/resource: make release_mem_region_adjustable() never fail (David Hildenbrand) [2229123]
+- virtio-mem: don't special-case ZONE_MOVABLE (David Hildenbrand) [2229123]
+- virtio_mem: convert to LE accessors (David Hildenbrand) [2229123]
+- virtio_mem: correct tags for config space fields (David Hildenbrand) [2229123]
+- virtio-mem: Fix build error due to improper use 'select' (David Hildenbrand) [2229123]
+- virtio-mem: add memory via add_memory_driver_managed() (David Hildenbrand) [2229123]
+- virtio-mem: silence a static checker warning (David Hildenbrand) [2229123]
+- virtio_mem: convert device block size into 64bit (David Hildenbrand) [2229123]
+- virtio-mem: drop unnecessary initialization (David Hildenbrand) [2229123]
+- virtio-mem: Don't rely on implicit compiler padding for requests (David Hildenbrand) [2229123]
+- virtio-mem: Try to unplug the complete online memory block first (David Hildenbrand) [2229123]
+- virtio-mem: Use -ETXTBSY as error code if the device is busy (David Hildenbrand) [2229123]
+- virtio-mem: Unplug subblocks right-to-left (David Hildenbrand) [2229123]
+- virtio-mem: Drop manual check for already present memory (David Hildenbrand) [2229123]
+- virtio-mem: Add parent resource for all added "System RAM" (David Hildenbrand) [2229123]
+- virtio-mem: Better retry handling (David Hildenbrand) [2229123]
+- virtio-mem: Offline and remove completely unplugged memory blocks (David Hildenbrand) [2229123]
+- mm/memory_hotplug: Introduce offline_and_remove_memory() (David Hildenbrand) [2229123]
+- virtio-mem: Allow to offline partially unplugged memory blocks (David Hildenbrand) [2229123]
+- virtio-mem: Paravirtualized memory hotunplug part 2 (David Hildenbrand) [2229123]
+- virtio-mem: Paravirtualized memory hotunplug part 1 (David Hildenbrand) [2229123]
+- virtio-mem: Allow to specify an ACPI PXM as nid (David Hildenbrand) [2229123]
+- MAINTAINERS: Add myself as virtio-mem maintainer (David Hildenbrand) [2229123]
+- virtio-mem: Paravirtualized memory hotplug (David Hildenbrand) [2229123]
+- Revert "drm/amd/display: edp do not add non-edid timings" (Jocelyn Falempe) [RHEL-845]
+- Revert "drm/amd/display: reallocate DET for dual displays with high pixel rate ratio" (Jocelyn Falempe) [RHEL-845]
+- drm/client: Fix memory leak in drm_client_modeset_probe (Jocelyn Falempe) [RHEL-845]
+- drm/client: Fix memory leak in drm_client_target_cloned (Jocelyn Falempe) [RHEL-845]
+- drm/atomic: Fix potential use-after-free in nonblocking commits (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: conditionally disable pcie lane/speed switching for SMU13 (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: share the code around SMU13 pcie parameters update (Jocelyn Falempe) [RHEL-845]
+- drm/ttm: Don't leak a resource on swapout move error (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: avoid restore process run into dead loop. (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Correct `DMUB_FW_VERSION` macro (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Fix 128b132b link loss handling (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: add a NULL pointer check (Jocelyn Falempe) [RHEL-845]
+- drm/amd: Disable PSR-SU on Parade 0803 TCON (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: fix clearing mappings for BOs that are always valid in VM (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: disable seamless boot if force_odm_combine is enabled (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Remove Phantom Pipe Check When Calculating K1 and K2 (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: fix seamless odm transitions (Jocelyn Falempe) [RHEL-845]
+- drm/dp_mst: Clear MSG_RDY flag before sending new message (Jocelyn Falempe) [RHEL-845]
+- drm/atomic: Allow vblank-enabled + self-refresh "disable" (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: perform a bounds check before filling dirty rectangles (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau: bring back blit subchannel for pre nv50 GPUs (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau/disp/g94: enable HDMI (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau/disp: fix HDMI on gt215+ (Jocelyn Falempe) [RHEL-845]
+- drm/i915: Fix one wrong caching mode enum usage (Jocelyn Falempe) [RHEL-845]
+- drm/i915: Don't preserve dpll_hw_state for slave crtc in Bigjoiner (Jocelyn Falempe) [RHEL-845]
+- drm/panel: simple: Add Powertip PH800480T013 drm_display_mode flags (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: ti-sn65dsi86: Fix auxiliary bus lifetime (Jocelyn Falempe) [RHEL-845]
+- drm/panel: simple: Add connector_type for innolux_at043tn24 (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau/acr: Abort loading ACR if no firmware was found (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: add RAS POISON interrupt funcs for jpeg_v4_0 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: add RAS POISON interrupt funcs for jpeg_v2_6 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: separate ras irq from jpeg instance irq for UVD_POISON (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Move jpeg ras block init to ras sw_init (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: add RAS POISON interrupt funcs for vcn_v4_0 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: add RAS POISON interrupt funcs for vcn_v2_6 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: separate ras irq from vcn instance irq for UVD_POISON (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Move vcn ras block init to ras sw_init (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Fix usage of UMC fill record in RAS (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Fix memcpy() in sienna_cichlid_append_powerplay_table function. (Jocelyn Falempe) [RHEL-845]
+- amdgpu: validate offset_in_bo of drm_amdgpu_gem_va (Jocelyn Falempe) [RHEL-845]
+- drm/radeon: fix possible division-by-zero errors (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Fix artifacting on eDP panels when engaging freesync video mode (Jocelyn Falempe) [RHEL-845]
+- drm/amdkfd: Fix potential deallocation of previously deallocated memory. (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Fix a test dml32_rq_dlg_get_rq_reg() (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Fix a test CalculatePrefetchSchedule() (Jocelyn Falempe) [RHEL-845]
+- drm/panel: simple: fix active size for Ampire AM-480272H3TMQW-T01H (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: ti-sn65dsi83: Fix enable/disable flow to meet spec (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: anx7625: Prevent endless probe loop (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau: dispnv50: fix missing-prototypes warning (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358767: Switch to devm MIPI-DSI helpers (Jocelyn Falempe) [RHEL-845]
+- drm/vkms: Fix RGB565 pixel conversion (Jocelyn Falempe) [RHEL-845]
+- drm: Add fixed-point helper to get rounded integer values (Jocelyn Falempe) [RHEL-845]
+- drm/vkms: isolate pixel conversion functionality (Jocelyn Falempe) [RHEL-845]
+- drm/panel: sharp-ls043t1le01: adjust mode settings (Jocelyn Falempe) [RHEL-845]
+- drm/vram-helper: fix function names in vram helper doc (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: fix THS_TRAILCNT computation (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: fix TXTAGOCNT computation (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: fix THS_ZEROCNT computation (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: fix TCLK_TRAILCNT computation (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: Add atomic_get_input_bus_fmts() implementation (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: fix TCLK_ZEROCNT computation (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: fix PLL target frequency (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: fix PLL parameters computation (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: tc358768: always enable HS video mode (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: ti-sn65dsi83: Fix enable error path (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: it6505: Move a variable assignment behind a null pointer check in receive_timing_debugfs_show() (Jocelyn Falempe) [RHEL-845]
+- drm/i915/guc/slpc: Provide sysfs for efficient freq (Jocelyn Falempe) [RHEL-845]
+- drm/i915/guc: More debug print updates - GuC SLPC (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Explicitly specify update type per plane info change (Jocelyn Falempe) [RHEL-845]
+- radeon: avoid double free in ci_dpm_init() (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: fix is_timing_changed() prototype (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Add logging for display MALL refresh setting (Jocelyn Falempe) [RHEL-845]
+- drm: use mgr->dev in drm_dbg_kms in drm_dp_add_payload_part2 (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Ensure vmin and vmax adjust for DCE (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Validate VM ioctl flags. (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Do not update DRR while BW optimizations pending (Jocelyn Falempe) [RHEL-845]
+- drm/radeon: fix race condition UAF in radeon_gem_set_domain_ioctl (Jocelyn Falempe) [RHEL-845]
+- udmabuf: revert 'Add support for mapping hugepages (v4)' (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: fix the system hang while disable PSR (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Add wrapper to call planes and stream update (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Use dc_update_planes_and_stream (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau: add nv_encoder pointer check for NULL (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau/dp: check for NULL nv_connector->native_mode (Jocelyn Falempe) [RHEL-845]
+- drm/bridge: ti-sn65dsi86: Avoid possible buffer overflow (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau: don't detect DSM for non-NVIDIA device (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Modify indirect buffer packages for resubmission (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Implement gfx9 patch functions for resubmission (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Program gds backup address as zero if no gds allocated (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Reset CP_VMID_PREEMPT after trailing fence signaled (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: add missing radeon secondary PCI ID (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: workaround for compute workload type on some skus (Jocelyn Falempe) [RHEL-845]
+- drm/amd: Tighten permissions on VBIOS flashing attributes (Jocelyn Falempe) [RHEL-845]
+- drm/amd: Make sure image is written to trigger VBIOS image update flow (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: edp do not add non-edid timings (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: limit DPIA link rate to HBR3 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: vcn_4_0 set instance 0 init sched score to 1 (Jocelyn Falempe) [RHEL-845]
+- Revert "drm/amdgpu: remove TOPDOWN flags when allocating VRAM in large bar system" (Jocelyn Falempe) [RHEL-845]
+- drm:amd:amdgpu: Fix missing buffer object unlock in failure path (Jocelyn Falempe) [RHEL-845]
+- drm: panel-orientation-quirks: Change Air's quirk to support Air Plus (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: add ODM case when looking for first split pipe (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Reduce sdp bw after urgent to 90%% (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: Fix power context allocation in SMU13 (Jocelyn Falempe) [RHEL-845]
+- drm/amd: Disallow s0ix without BIOS support again (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: change reserved vram info print (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: fix xclk freq on CHIP_STONEY (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: conditionally disable pcie lane switching for some sienna_cichlid SKUs (Jocelyn Falempe) [RHEL-845]
+- drm/i915/gt: Use the correct error value when kernel_context() fails (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: fix Null pointer dereference error in amdgpu_device_recover_vram (Jocelyn Falempe) [RHEL-845]
+- drm/i915/selftests: Add some missing error propagation (Jocelyn Falempe) [RHEL-845]
+- drm/i915: Use 18 fast wake AUX sync len (Jocelyn Falempe) [RHEL-845]
+- drm/i915: Explain the magic numbers for AUX SYNC/precharge length (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: reverse mclk and fclk clocks levels for renoir (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: reverse mclk and fclk clocks levels for yellow carp (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: reverse mclk clocks levels for SMU v13.0.5 (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: resolve reboot exception for si oland (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: reverse mclk and fclk clocks levels for vangogh (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: reverse mclk and fclk clocks levels for SMU v13.0.4 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: enable tmz by default for GC 11.0.1 (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Only wait for blank completion if OTG active (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: skip disabling fence driver src_irqs when device is unplugged (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: set gfx9 onwards APU atomics support to be true (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu/nv: update VCN 3 max HEVC encoding resolution (Jocelyn Falempe) [RHEL-845]
+- drm/ast: Fix ARM compatibility (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Use the default reset when loading or reloading the driver (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: fix memleak in aconnector->timing_requested (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: release gpu full access after "amdgpu_device_ip_late_init" (Jocelyn Falempe) [RHEL-845]
+- drm/i915: Fix PIPEDMC disabling for a bigjoiner configuration (Jocelyn Falempe) [RHEL-845]
+- drm/i915: Disable DPLLs before disconnecting the TC PHY (Jocelyn Falempe) [RHEL-845]
+- drm/i915: Move shared DPLL disabling into CRTC disable hook (Jocelyn Falempe) [RHEL-845]
+- drm: fix drmm_mutex_init() (Jocelyn Falempe) [RHEL-845]
+- drm/amd/amdgpu: limit one queue per gang (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: Fix output of pp_od_clk_voltage (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: add missing NotifyPowerSource message mapping for SMU13.0.7 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: don't enable secure display on incompatible platforms (Jocelyn Falempe) [RHEL-845]
+- drm/radeon: reintroduce radeon_dp_work_func content (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Have Payload Properly Created After Resume (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: reserve the old gc_11_0_*_mes.bin (Jocelyn Falempe) [RHEL-845]
+- drm/amd/amdgpu: introduce gc_*_mes_2.bin v2 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu/gfx11: update gpu_clock_counter logic (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: refine get gpu clock counter method (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu/gfx11: Adjust gfxoff before powergating on gfx11 as well (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu/gfx10: Disable gfxoff before disabling powergating. (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu/gmc11: implement get_vbios_fb_size() (Jocelyn Falempe) [RHEL-845]
+- drm/amd/pm: fix possible power mode mismatch between driver and PMFW (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Enable IH retry CAM on GFX9 (Jocelyn Falempe) [RHEL-845]
+- drm/amdgpu: Fix sdma v4 sw fini error (Jocelyn Falempe) [RHEL-845]
+- drm/amd: Fix an out of bounds error in BIOS parser (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Correct DML calculation to follow HW SPEC (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: fixed dcn30+ underflow issue (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: reallocate DET for dual displays with high pixel rate ratio (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Use DC_LOG_DC in the trasform pixel function (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Enable HostVM based on rIOMMU active (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: enable DPG when disabling plane for phantom pipe (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: Correct DML calculation to align HW formula (Jocelyn Falempe) [RHEL-845]
+- drm/amd/display: populate subvp cmd info only for the top pipe (Jocelyn Falempe) [RHEL-845]
+- drm/displayid: add displayid_get_header() and check bounds better (Jocelyn Falempe) [RHEL-845]
+- drm/i915: taint kernel when force probing unsupported devices (Jocelyn Falempe) [RHEL-845]
+- drm/i915/dp: prevent potential div-by-zero (Jocelyn Falempe) [RHEL-845]
+- drm/i915: Fix NULL ptr deref by checking new_crtc_state (Jocelyn Falempe) [RHEL-845]
+- drm/i915/guc: Don't capture Gen8 regs on Xe devices (Jocelyn Falempe) [RHEL-845]
+- drm/sched: Check scheduler work queue before calling timeout handling (Jocelyn Falempe) [RHEL-845]
+- drm/mipi-dsi: Set the fwnode for mipi_dsi_device (Jocelyn Falempe) [RHEL-845]
+- drm/nouveau/disp: More DP_RECEIVER_CAP_SIZE array fixes (Jocelyn Falempe) [RHEL-845]
+- drm/dsc: fix DP_DSC_MAX_BPP_DELTA_* macro values (Jocelyn Falempe) [RHEL-845]
+- drm/fbdev-generic: prohibit potential out-of-bounds access (Jocelyn Falempe) [RHEL-845]
+
+* Tue Aug 15 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-510.el8]
+- x86/show_trace_log_lvl: Ensure stack pointer is aligned, again (Oleg Nesterov) [2188093]
+- ahci: Add support for Dell S140 and later controllers (Tomas Henzl) [2222879]
+- s390/time: steer clocksource on STP syncs for CLOCK_MONOTONIC (Tobias Huschle) [2177649]
+- memstick: r592: Fix UAF bug in r592_remove due to race condition (Wander Lairson Costa) [2215906] {CVE-2023-35825}
+- scsi: zfcp: Defer fc_rport blocking until after ADISC response (Tobias Huschle) [2230241]
+- RDMA/efa: Add EFA 0xefa2 PCI ID (Izabela Bakollari) [2170086]
+- RDMA/efa: Support CQ receive entries with source GID (Izabela Bakollari) [2170086]
+- Revert "isystem: ship and use stdarg.h" (Jocelyn Falempe) [2229185]
+- drm/drm_print: Use system include for <stdargs.h> (Jocelyn Falempe) [2229185]
+- x86/mm: Do not shuffle CPU entry areas without KASLR (Rafael Aquini) [2165931] {CVE-2023-0597}
+- x86/mm: Randomize per-cpu entry area (Rafael Aquini) [2165931] {CVE-2023-0597}
+- x86/kasan: Map shadow for percpu pages on demand (Rafael Aquini) [2165931] {CVE-2023-0597}
+- x86/pti/32: Calculate the various PTI cpu_entry_area sizes correctly, make the CPU_ENTRY_AREA_PAGES assert precise (Rafael Aquini) [2165931] {CVE-2023-0597}
+
+* Wed Aug 09 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-509.el8]
+- cifs: fix for following DFS links where sharename is the same as prepath (Ronnie Sahlberg) [2130474]
+- crypto: rng - Fix lock imbalance in crypto_del_rng (Herbert Xu) [2229700]
+- ibmvnic: Do not reset dql stats on NON_FATAL err (Mamatha Inamdar) [2227904]
+- mptcp: Correct the sock::sk_lock.owned lockdep annotations (Felix Maurer) [2228890]
+- gpio: name PCA953x gpio chips after device name (Steve Best) [2226775]
+- scsi: storvsc: Handle SRB status value 0x30 (Cathy Avery) [2218133]
+- netfilter: nft_set_pipapo: fix improper element removal (Phil Sutter) [2225276] {CVE-2023-4004}
+- macvlan: add forgotten nla_policy for IFLA_MACVLAN_BC_CUTOFF (Xin Long) [2226791]
+- tcp: Reduce chance of collisions in inet6_hashfn(). (Felix Maurer) [2176119] {CVE-2023-1206}
+- ipv6: fix locking issues with loops over idev->addr_list (Jiri Benc) [2123305]
+- relayfs: fix out-of-bounds access in relay_file_read (Bill O'Donnell) [2215510] {CVE-2023-3268}
+- kernel/relay.c: fix read_pos error when multiple readers (Bill O'Donnell) [2215510]
+- seq_buf: Make trace_seq_putmem_hex() support data longer than 8 (Ricardo Robaina) [2212208] {CVE-2023-28772}
+- seq_buf: Fix overflow in seq_buf_putmem_hex() (Ricardo Robaina) [2212208] {CVE-2023-28772}
+- tools/power/x86/intel-speed-select: Support more than 8 sockets. (Frank Ramsay) [2212508]
+- platform/x86: ISST: Remove 8 socket limit (Frank Ramsay) [2212508]
+- media: saa7134: fix use after free bug in saa7134_finidev due to race condition (Wander Lairson Costa) [2215902] {CVE-2023-35823}
+- Bluetooth: btmtksdio: fix possible FW initialization failure (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: fix the reset takes too long (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: mask out interrupt status (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: Add support for Foxconn QCA 0xe0d0 (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: Add two more Bluetooth parts for WCN6855 (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: Add protocol for MediaTek bluetooth devices(MT7922) (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: Add support for Foxconn MT7922A (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: Fix kernel oops when sdio suspend. (David Marlin) [2142489 2144730 2145097]
+- Enable MTK BT Support for RHEL (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: Add a new PID/VID 13d3/3567 for MT7921 (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: mt7921s: support bluetooth reset mechanism (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: mt7921s: fix btmtksdio_[drv|fw]_pmctrl() (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: refactor btmtksdio_runtime_[suspend|resume]() (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: mt7921s: fix bus hang with wrong privilege (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: mt7921s: fix firmware coredump retrieve (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: mt7921s: Enable SCO over I2S (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: mt7921s: Support wake on bluetooth (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: rename btsdio_mtk_reg_read (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: enable AOSP extension for MT7921 (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: enable msft opcode (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: fix resume failure (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: handle runtime pm only when sdio_func is available (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: drop the unnecessary variable created (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: add support of processing firmware coredump and log (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: add MT7921s Bluetooth support (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: transmit packet according to status TX_EMPTY (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: use register CRPLR to read packet length (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: update register CSDIOCSR operation (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: move interrupt service to work (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: explicitly set WHISR as write-1-clear (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksdio: add .set_bdaddr support (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btmtksido: rely on BT_MTK module (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: mediatek: add BT_MTK module (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: Support public address configuration for MediaTek Chip. (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: Support Bluetooth Reset for Mediatek Chip(MT7921) (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: Add support for Foxconn Mediatek Chip (David Marlin) [2142489 2144730 2145097]
+- Bluetooth: btusb: fix blacklist_table context (David Marlin) [2142489 2144730 2145097]
+
+* Fri Aug 04 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-508.el8]
+- HID: betop: check shape of output reports (Desnes Nunes) [2212164] {CVE-2023-1073}
+- media: ttusb-dec: fix memory leak in ttusb_dec_exit_dvb() (Desnes Nunes) [2153575] {CVE-2022-45887}
+- selinux: make labeled NFS work when mounted before policy load (Juraj Marcin) [1753646]
+- Revert "xfs: expose the blockgc workqueue knobs publicly" (Bill O'Donnell) [2223260]
+- media: dm1105: Fix use after free bug in dm1105_remove due to race condition (Dean Nelson) [2215904] {CVE-2023-35824}
+- media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*() (Dean Nelson) [2213142] {CVE-2023-31084}
+- drm/ast: report connection status on Display Port. (Jocelyn Falempe) [2189645]
+- drm/ast: Add BMC virtual connector (Jocelyn Falempe) [2189645]
+- x86/cpu/amd: Add a Zenbleed fix (Waiman Long) [2226832] {CVE-2023-20593}
+- x86/cpu/amd: Move the errata checking functionality up (Waiman Long) [2226832] {CVE-2023-20593}
+- x86/amd: Cache debug register values in percpu variables (Waiman Long) [2226832] {CVE-2023-20593}
+- x86/cpu: Restore AMD's DE_CFG MSR after resume (Waiman Long) [2226832] {CVE-2023-20593}
+- x86/sev: Change snp_guest_issue_request()'s fw_err argument (John Allen) [2216284]
+- virt/coco/sev-guest: Double-buffer messages (John Allen) [2216284]
+- virt/coco/sev-guest: Add throttling awareness (John Allen) [2216284]
+- virt/coco/sev-guest: Convert the sw_exit_info_2 checking to a switch-case (John Allen) [2216284]
+- virt/coco/sev-guest: Do some code style cleanups (John Allen) [2216284]
+- virt/coco/sev-guest: Carve out the request issuing logic into a helper (John Allen) [2216284]
+- virt/coco/sev-guest: Remove the disable_vmpck label in handle_guest_request() (John Allen) [2216284]
+- virt/coco/sev-guest: Simplify extended guest request handling (John Allen) [2216284]
+- virt/coco/sev-guest: Check SEV_SNP attribute at probe time (John Allen) [2216284]
+- virt/sev-guest: Return -EIO if certificate buffer is not large enough (John Allen) [2216284]
+- x86/sev: Mark snp_abort() noreturn (John Allen) [2216284]
+- s390/uv: Update query for secret-UVCs (Cédric Le Goater) [2111749]
+- s390/uv: replace scnprintf with sysfs_emit (Cédric Le Goater) [2111749]
+- s390: Add attestation query information (Cédric Le Goater) [2111749]
+- s390/uvdevice: Add 'Lock Secret Store' UVC (Cédric Le Goater) [2111749]
+- s390/uvdevice: Add 'List Secrets' UVC (Cédric Le Goater) [2111749]
+- s390/uvdevice: Add 'Add Secret' UVC (Cédric Le Goater) [2111749]
+- s390/uvdevice: Add info IOCTL (Cédric Le Goater) [2111749]
+- s390/uv: Always export uv_info (Cédric Le Goater) [2111749]
+- s390/kasan: support protvirt with 4-level paging (Cédric Le Goater) [2111749]
+- s390/protvirt: support ultravisor without secure storage limit (Cédric Le Goater) [2111749]
+- s390/protvirt: parse prot_virt option in the decompressor (Cédric Le Goater) [2111749]
+- s390/mm: avoid trimming to MAX_ORDER (Cédric Le Goater) [2111749]
+- net/mlx5e: TC, CT: Offload ct clear only once (Amir Tzin) [2159233]
+- net/mlx5: DR, Fix wrong action data allocation in decap action (Amir Tzin) [2159233]
+- net/mlx5: DR, Support SW created encap actions for FW table (Amir Tzin) [2159233]
+- net/mlx5e: TC, Cleanup ct resources for nic flow (Amir Tzin) [2159233]
+- net/mlx5e: TC, Add null pointer check for hardware miss support (Amir Tzin) [2159233]
+- RDMA/mlx5: Fix affinity assignment (Amir Tzin) [2159233]
+- RDMA/mlx5: Create an indirect flow table for steering anchor (Amir Tzin) [2159233]
+- RDMA/mlx5: Initiate dropless RQ for RAW Ethernet functions (Amir Tzin) [2159233]
+- net/mlx5: DR, Add missing mutex init/destroy in pattern manager (Amir Tzin) [2117777]
+- net/mlx5: Read embedded cpu after init bit cleared (Amir Tzin) [2159233]
+- net/mlx5e: Fix error handling in mlx5e_refresh_tirs (Amir Tzin) [2159233]
+- net/mlx5e: Don't attach netdev profile while handling internal error (Amir Tzin) [2159233]
+- net/mlx5: Fix post parse infra to only parse every action once (Amir Tzin) [2159233]
+- net/mlx5: fw_tracer, Fix event handling (Amir Tzin) [2159233]
+- net/mlx5: SF, Drain health before removing device (Amir Tzin) [2159233]
+- net/mlx5e: Consider internal buffers size in port buffer calculations (Amir Tzin) [2159233]
+- net/mlx5e: Prevent encap offload when neigh update is running (Amir Tzin) [2159233]
+- net/mlx5e: Extract remaining tunnel encap code to dedicated file (Amir Tzin) [2159233]
+- net/mlx5e: TC, Remove sample and ct limitation (Amir Tzin) [2159233]
+- net/mlx5e: TC, Remove mirror and ct limitation (Amir Tzin) [2159233]
+- net/mlx5e: TC, Remove tuple rewrite and ct limitation (Amir Tzin) [2159233]
+- net/mlx5e: TC, Remove multiple ct actions limitation (Amir Tzin) [2159233]
+- net/mlx5e: TC, Remove special handling of CT action (Amir Tzin) [2159233]
+- net/mlx5e: TC, Remove CT action reordering (Amir Tzin) [2159233]
+- net/mlx5e: CT: Use per action stats (Amir Tzin) [2159233]
+- net/mlx5e: TC, Move main flow attribute cleanup to helper func (Amir Tzin) [2159233]
+- net/mlx5e: TC, Remove unused vf_tun variable (Amir Tzin) [2159233]
+- net/mlx5e: Set default can_offload action (Amir Tzin) [2159233]
+- net/mlx5: Devcom, serialize devcom registration (Amir Tzin) [2159233]
+- net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device (Amir Tzin) [2159233]
+- net/mlx5e: Fix SQ wake logic in ptp napi_poll context (Amir Tzin) [2159233]
+- net/mlx5e: Fix deadlock in tc route query code (Amir Tzin) [2159233]
+- net/mlx5: Fix error message when failing to allocate device memory (Amir Tzin) [2159233]
+- net/mlx5e: Use correct encap attribute during invalidation (Amir Tzin) [2159233]
+- net/mlx5: DR, Check force-loopback RC QP capability independently from RoCE (Amir Tzin) [2159233]
+- net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs (Amir Tzin) [2159233]
+- net/mlx5: Handle pairing of E-switch via uplink un/load APIs (Amir Tzin) [2159233]
+- net/mlx5: Collect command failures data only for known commands (Amir Tzin) [2159233]
+- net/mlx5e: do as little as possible in napi poll when budget is 0 (Amir Tzin) [2159233]
+- net/mlx5: Use recovery timeout on sync reset flow (Amir Tzin) [2159233]
+- net/mlx5: DR, Add memory statistics for domain object (Amir Tzin) [2117777]
+- net/mlx5: DR, Add more info in domain dbg dump (Amir Tzin) [2117777]
+- net/mlx5: DR, Calculate sync threshold of each pool according to its type (Amir Tzin) [2117777]
+- net/mlx5: DR, Fix dumping of legacy modify_hdr in debug dump (Amir Tzin) [2117777]
+- net/mlx5: DR, Enable patterns and arguments for supporting devices (Amir Tzin) [2117777]
+- net/mlx5: DR, Add support for the pattern/arg parameters in debug dump (Amir Tzin) [2117777]
+- net/mlx5: DR, Modify header action of size 1 optimization (Amir Tzin) [2117777]
+- net/mlx5: DR, Support decap L3 action using pattern / arg mechanism (Amir Tzin) [2117777]
+- net/mlx5: DR, Apply new accelerated modify action and decapl3 (Amir Tzin) [2117777]
+- net/mlx5: DR, Add modify header argument pointer to actions attributes (Amir Tzin) [2117777]
+- net/mlx5: DR, Add modify header arg pool mechanism (Amir Tzin) [2117777]
+- net/mlx5: DR, Fix QP continuous allocation (Amir Tzin) [2117777]
+- net/mlx5: DR, Read ICM memory into dedicated buffer (Amir Tzin) [2117777]
+- net/mlx5: DR, Add support for writing modify header argument (Amir Tzin) [2117777]
+- net/mlx5: DR, Add create/destroy for modify-header-argument general object (Amir Tzin) [2117777]
+- net/mlx5: DR, Check for modify_header_argument device capabilities (Amir Tzin) [2117777]
+- net/mlx5: DR, Split chunk allocation to HW-dependent ways (Amir Tzin) [2117777]
+- net/mlx5: DR, Add cache for modify header pattern (Amir Tzin) [2117777]
+- net/mlx5: DR, Move ACTION_CACHE_LINE_SIZE macro to header (Amir Tzin) [2117777]
+- net/mlx5: DR, Add modify-header-pattern ICM pool (Amir Tzin) [2117777]
+- net/mlx5: DR, Prepare sending new WQE type (Amir Tzin) [2117777]
+- net/mlx5: Add new WQE for updating flow table (Amir Tzin) [2117777]
+- net/mlx5: Add mlx5_ifc bits for modify header argument (Amir Tzin) [2117777]
+- net/mlx5: DR, Set counter ID on the last STE for STEv1 TX (Amir Tzin) [2117777]
+- net/mlx5e: TC, Remove redundant parse_attr argument (Amir Tzin) [2165908]
+- net/mlx5e: Use a simpler comparison for uplink rep (Amir Tzin) [2165908]
+- net/mlx5: Lag, Add single RDMA device in multiport mode (Amir Tzin) [2165908]
+- net/mlx5: Lag, set different uplink vport metadata in multiport eswitch mode (Amir Tzin) [2165908]
+- net/mlx5: E-Switch, rename bond update function to be reused (Amir Tzin) [2165908]
+- net/mlx5e: TC, Add peer flow in mpesw mode (Amir Tzin) [2165908]
+- net/mlx5: Lag, Control MultiPort E-Switch single FDB mode (Amir Tzin) [2165908]
+- net/mlx5e: Add devlink fdb_large_groups parameter (Add missing Documentation) (Amir Tzin) [2165908]
+- SUNRPC: Fix READ_PLUS crasher (Benjamin Coddington) [2218539]
+- SUNRPC: Remove pointer type casts from xdr_get_next_encode_buffer() (Benjamin Coddington) [2218539]
+- SUNRPC: Clean up xdr_get_next_encode_buffer() (Benjamin Coddington) [2218539]
+- NFSv4.1: freeze the session table upon receiving NFS4ERR_BADSESSION (Benjamin Coddington) [2218539]
+- NFSv4.2: fix wrong shrinker_id (Benjamin Coddington) [2218539]
+- svcrdma: Prevent page release when nothing was received (Benjamin Coddington) [2218539]
+- SUNRPC: Fix UAF in svc_tcp_listen_data_ready() (Benjamin Coddington) [2218539]
+- nfsd: fix double fget() bug in __write_ports_addfd() (Benjamin Coddington) [2218539]
+- SUNRPC: Fix trace_svc_register() call site (Benjamin Coddington) [2218539]
+- SUNRPC: remove the maximum number of retries in call_bind_status (Benjamin Coddington) [2218539]
+- NFSv4.1: Always send a RECLAIM_COMPLETE after establishing lease (Benjamin Coddington) [2218539]
+- NFSD: callback request does not use correct credential for AUTH_SYS (Benjamin Coddington) [2218539]
+- sunrpc: only free unix grouplist after RCU settles (Benjamin Coddington) [2218539]
+- nfsd: call op_release, even when op_func returns an error (Benjamin Coddington) [2218539]
+- NFSD: Avoid calling OPDESC() with ops->opnum == OP_ILLEGAL (Benjamin Coddington) [2218539]
+- SUNRPC: fix shutdown of NFS TCP client socket (Benjamin Coddington) [2218539]
+- NFSv4: Fix hangs when recovering open state after a server reboot (Benjamin Coddington) [2218539]
+- NFSD: Protect against filesystem freezing (Benjamin Coddington) [2218539]
+- nfsd: fix race to check ls_layouts (Benjamin Coddington) [2218539]
+- nfs4trace: fix state manager flag printing (Benjamin Coddington) [2218539]
+- SUNRPC: ensure the matching upcall is in-flight upon downcall (Benjamin Coddington) [2218539]
+- nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure (Benjamin Coddington) [2218539]
+- SUNRPC: Don't leak netobj memory when gss_read_proxy_verf() fails (Benjamin Coddington) [2218539]
+- NFSv4.x: Fail client initialisation if state manager thread can't run (Benjamin Coddington) [2218539]
+- SUNRPC: Fix missing release socket in rpc_sockname() (Benjamin Coddington) [2218539]
+- xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() (Benjamin Coddington) [2218539]
+- NFSD: Finish converting the NFSv3 GETACL result encoder (Benjamin Coddington) [2218539]
+- NFSD: Finish converting the NFSv2 GETACL result encoder (Benjamin Coddington) [2218539]
+- SUNRPC: Return true/false (not 1/0) from bool functions (Benjamin Coddington) [2218539]
+- NFS: Fix an Oops in nfs_d_automount() (Benjamin Coddington) [2218539]
+- NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn (Benjamin Coddington) [2218539]
+- NFSv4: Fix a credential leak in _nfs4_discover_trunking() (Benjamin Coddington) [2218539]
+- NFSv4.2: Fix initialisation of struct nfs4_label (Benjamin Coddington) [2218539]
+- NFSv4.2: Fix a memory stomp in decode_attr_security_label (Benjamin Coddington) [2218539]
+- NFSv4.2: Always decode the security label (Benjamin Coddington) [2218539]
+- NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding (Benjamin Coddington) [2218539]
+- nfs4: Fix kmemleak when allocate slot failed (Benjamin Coddington) [2218539]
+- NFSv4.2: Fixup CLONE dest file size for zero-length count (Benjamin Coddington) [2218539]
+- SUNRPC: Fix null-ptr-deref when xps sysfs alloc failed (Benjamin Coddington) [2218539]
+- NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot (Benjamin Coddington) [2218539]
+- NFSv4.1: Handle RECLAIM_COMPLETE trunking errors (Benjamin Coddington) [2218539]
+- NFSv4: Fix a potential state reclaim deadlock (Benjamin Coddington) [2218539]
+- NFSv4/pNFS: Always return layout stats on layout return for flexfiles (Benjamin Coddington) [2218539]
+- NFSD: Fix handling of oversized NFSv4 COMPOUND requests (Benjamin Coddington) [2218539]
+- nfsd: Fix a memory leak in an error handling path (Benjamin Coddington) [2218539]
+- Revert "SUNRPC: Remove unreachable error condition" (Benjamin Coddington) [2218539]
+- NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 (Benjamin Coddington) [2218539]
+- SUNRPC: RPC level errors should set task->tk_rpc_status (Benjamin Coddington) [2218539]
+- NFS: Fix another fsync() issue after a server reboot (Benjamin Coddington) [2218539]
+- net/sunrpc: fix potential memory leaks in rpc_sysfs_xprt_state_change() (Benjamin Coddington) [2218539]
+- SUNRPC: Fix xdr_encode_bool() (Benjamin Coddington) [2218539]
+- SUNRPC: Reinitialise the backchannel request buffers before reuse (Benjamin Coddington) [2218539]
+- NFSv4.1: RECLAIM_COMPLETE must handle EACCES (Benjamin Coddington) [2218539]
+- sunrpc: fix expiry of auth creds (Benjamin Coddington) [2218539]
+- pNFS/flexfiles: Report RDMA connection errors to the server (Benjamin Coddington) [2218539]
+- Revert "pNFS: nfs3_set_ds_client should set NFS_CS_NOPING" (Benjamin Coddington) [2218539]
+- SUNRPC: Fix the calculation of xdr->end in xdr_get_next_encode_buffer() (Benjamin Coddington) [2218539]
+- pNFS: Avoid a live lock condition in pnfs_update_layout() (Benjamin Coddington) [2218539]
+- pNFS: Don't keep retrying if the server replied NFS4ERR_LAYOUTUNAVAILABLE (Benjamin Coddington) [2218539]
+- SUNRPC: Trap RDMA segment overflows (Benjamin Coddington) [2218539]
+- nfsd: Fix null-ptr-deref in nfsd_fill_super() (Benjamin Coddington) [2218539]
+- NFS: Further fixes to the writeback error handling (Benjamin Coddington) [2218539]
+- NFS: clean up a needless assignment in nfs_file_write() (Benjamin Coddington) [2218539]
+- NFS: remove redundant code in nfs_file_write() (Benjamin Coddington) [2218539]
+- NFS: Add support for eager writes (Benjamin Coddington) [2218539]
+- NFS: 'flags' field should be unsigned in struct nfs_server (Benjamin Coddington) [2218539]
+- NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout (Benjamin Coddington) [2218539]
+- NFS: Memory allocation failures are not server fatal errors (Benjamin Coddington) [2218539]
+- SUNRPC: Ensure that the gssproxy client can start in a connected state (Benjamin Coddington) [2218539]
+- Revert "SUNRPC: Ensure gss-proxy connects on setup" (Benjamin Coddington) [2218539]
+- SUNRPC: Ensure gss-proxy connects on setup (Benjamin Coddington) [2218539]
+- NFSv4: Don't invalidate inode attributes on delegation return (Benjamin Coddington) [2218539]
+- SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec() (Benjamin Coddington) [2218539]
+- SUNRPC: Handle low memory situations in call_status() (Benjamin Coddington) [2218539]
+- SUNRPC: Handle ENOMEM in call_transmit_status() (Benjamin Coddington) [2218539]
+- SUNRPC: Fix the svc_deferred_event trace class (Benjamin Coddington) [2218539]
+- NFSv4: fix open failure with O_ACCMODE flag (Benjamin Coddington) [2218539]
+- NFSv4/pNFS: Fix another issue with a list iterator pointing to the head (Benjamin Coddington) [2218539]
+- NFSv4.1: Fix uninitialised variable in devicenotify (Benjamin Coddington) [2218539]
+- NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error (Benjamin Coddington) [2218539]
+- NFS: remove unneeded check in decode_devicenotify_args() (Benjamin Coddington) [2218539]
+- NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR (Benjamin Coddington) [2218539]
+- NFS: Do not report writeback errors in nfs_getattr() (Benjamin Coddington) [2218539]
+- NFS: Remove an incorrect revalidation in nfs4_update_changeattr_locked() (Benjamin Coddington) [2218539]
+- nfsd: nfsd4_setclientid_confirm mistakenly expires confirmed client. (Benjamin Coddington) [2218539]
+- SUNRPC: Fix sockaddr handling in svcsock_accept_class trace points (Benjamin Coddington) [2218539]
+- SUNRPC: Fix sockaddr handling in the svc_xprt_create_error trace point (Benjamin Coddington) [2218539]
+- NFSD: Fix zero-length NFSv3 WRITEs (Benjamin Coddington) [2218539]
+- NFS: Ensure the server has an up to date ctime before renaming (Benjamin Coddington) [2218539]
+- NFS: Ensure the server has an up to date ctime before hardlinking (Benjamin Coddington) [2218539]
+
+* Tue Aug 01 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-507.el8]
+- Revert "NFSv4: Retry LOCK on OLD_STATEID during delegation return" (Benjamin Coddington) [2217658]
+- powerpc/pseries/vas: Hold mmap_mutex after mmap lock during window close (Mamatha Inamdar) [2224883]
+- KVM: x86/mmu: Fix race condition in direct_page_fault (Jon Maloy) [2179929] {CVE-2022-45869}
+- x86/speculation: Allow enabling STIBP with legacy IBRS (Ricardo Robaina) [2187268] {CVE-2023-1998}
+- ACPI: sleep: Avoid breaking S3 wakeup due to might_sleep() (Mark Langsdorf) [2215625]
+- locking/semaphore: Add might_sleep() to down_*() family (Mark Langsdorf) [2215625]
+- perf stat: Support hybrid --topdown option (Michael Petlan) [2088833]
+- i40e: Wait for pending VF reset in VF set callbacks (Ivan Vecera) [2203921]
+- i40e: Add helper for VF inited state check with timeout (Ivan Vecera) [2203921]
+- tracing: Have filter accept "common_cpu" to be consistent (Jerome Marchand) [2210711]
+- tracing/histogram: Fix sorting on old "cpu" value (Jerome Marchand) [2210711]
+- tracing: Dump stacktrace trigger to the corresponding instance (Jerome Marchand) [2210711]
+- tracing/histogram: Rename "cpu" to "common_cpu" (Jerome Marchand) [2210711]
+- docs: histogram.txt: convert it to ReST file format (Jerome Marchand) [2210711]
+- bonding: add software tx timestamping support (Hangbin Liu) [2181339]
+- bonding: fix missed rcu protection (Hangbin Liu) [2181339]
+- bonding: use rcu_dereference_rtnl when get bonding active slave (Hangbin Liu) [2181339]
+- Bonding: return HWTSTAMP_FLAG_BONDED_PHC_INDEX to notify user space (Hangbin Liu) [2181339]
+- Bonding: force user to add HWTSTAMP_FLAG_BONDED_PHC_INDEX when get/set HWTSTAMP (Hangbin Liu) [2181339]
+- bond: pass get_ts_info and SIOC[SG]HWTSTAMP ioctl to active device (Hangbin Liu) [2181339]
+- mm/page_alloc: fix incorrect PGFREE and PGALLOC for high-order page (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: check high-order pages for corruption during PCP operations (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: do not prefetch buddies during bulk free (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: free pages in a single pass during bulk free (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: drain the requested list first during bulk free (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: simplify how many pages are selected per pcp list during bulk free (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: track range of active PCP lists during bulk free (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: fetch the correct pcp buddy during bulk free (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: allow high-order pages to be stored on the per-cpu lists (Chris von Recklinghausen) [2100592]
+- mm/page_alloc: move free_the_page (Chris von Recklinghausen) [2100592]
+- mm,memory_hotplug: factor out adjusting present pages into adjust_present_page_count() (Chris von Recklinghausen) [2100592]
+- mm, meminit: recalculate pcpu batch and high limits after init completes (Chris von Recklinghausen) [2100592]
+- compiler_attributes.h: Add kABI workaround (Waiman Long) [2215801]
+- linux/compiler-clang.h: define HAVE_BUILTIN_BSWAP* (Waiman Long) [2215801]
+- compiler.h: fix barrier_data() on clang (Waiman Long) [2215801]
+- compiler_types.h: Add __no_sanitize_{address,undefined} to noinstr (Waiman Long) [2215801]
+- x86, kcsan: Add __no_kcsan to noinstr (Waiman Long) [2215801]
+- kcsan: Add __no_kcsan function attribute (Waiman Long) [2215801]
+- kcsan: Reorganize compiler.h (Waiman Long) [2215801]
+- include/linux/compiler*.h: fix OPTIMIZER_HIDE_VAR (Waiman Long) [2215801]
+- include/linux/compiler_types.h: don't pollute userspace with macro definitions (Waiman Long) [2215801]
+- include/linux/compiler*.h: define asm_volatile_goto (Waiman Long) [2215801]
+- Compiler Attributes: use feature checks instead of version checks (Waiman Long) [2215801]
+- Compiler Attributes: remove unneeded sparse (__CHECKER__) tests (Waiman Long) [2215801]
+- Compiler Attributes: homogenize __must_be_array (Waiman Long) [2215801]
+- Compiler Attributes: remove unneeded tests (Waiman Long) [2215801]
+- Compiler Attributes: always use the extra-underscores syntax (Waiman Long) [2215801]
+- Compiler Attributes: remove unused attributes (Waiman Long) [2215801]
+- Compiler Attributes: naked can be shared (Waiman Long) [2215801]
+- Compiler Attributes: naked was fixed in gcc 4.6 (Waiman Long) [2215801]
+- include/linux/compiler*.h: make compiler-*.h mutually exclusive (Waiman Long) [2215801]
+- Raise the minimum required gcc version to 4.6 (Waiman Long) [2215801]
+- deprecate the '__deprecated' attribute warnings entirely and for good (Waiman Long) [2215801]
+
+* Thu Jul 27 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-506.el8]
+- libceph: harden msgr2.1 frame segment length checks (Ilya Dryomov) [2222256]
+- netfilter: nf_conntrack_netlink: need to hold rcu readlock when doing l4proto lookup (Florian Westphal) [2188230]
+- net/mlx5: Expose steering dropped packets counter (Amir Tzin) [2223198]
+- net/mlx5: Expose vnic diagnostic counters for eswitch managed vports (Amir Tzin) [2223198]
+- igbvf: add PCI reset handler functions (Corinna Vinschen) [2153365]
+- igbvf: Regard vf reset nack as success (Corinna Vinschen) [2153365]
+- intel/igbvf: free irq on the error path in igbvf_request_msix() (Corinna Vinschen) [2153365]
+- Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp} (Ricardo Robaina) [2139617] {CVE-2022-3640}
+- Bluetooth: L2CAP: Fix build errors in some archs (Ricardo Robaina) [2139617] {CVE-2022-3640}
+- Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression (Ricardo Robaina) [2139617] {CVE-2022-3640}
+- Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() (Ricardo Robaina) [2139617] {CVE-2022-3640}
+- Bluetooth: L2CAP: Fix use-after-free caused by l2cap_chan_put (Ricardo Robaina) [2139617] {CVE-2022-3640}
+- iavf: fix reset task race with iavf_remove() (Petr Oros) [2223604]
+- iavf: fix a deadlock caused by rtnl and driver's lock circular dependencies (Petr Oros) [2223604]
+- Revert "iavf: Do not restart Tx queues after reset task failure" (Petr Oros) [2223604]
+- Revert "iavf: Detach device during reset task" (Petr Oros) [2223604]
+- iavf: Wait for reset in callbacks which trigger it (Petr Oros) [2223604]
+- iavf: use internal state to free traffic IRQs (Petr Oros) [2223604]
+- iavf: Fix out-of-bounds when setting channels on remove (Petr Oros) [2223604]
+- iavf: Fix use-after-free in free_netdev (Petr Oros) [2223604]
+- iavf: make functions static where possible (Petr Oros) [2223604]
+- iavf: fix err handling for MAC replace (Petr Oros) [2223604]
+- iavf: remove some unused functions and pointless wrappers (Petr Oros) [2223604]
+- iavf: remove mask from iavf_irq_enable_queues() (Petr Oros) [2223604]
+- iavf: send VLAN offloading caps once after VFR (Petr Oros) [2223604]
+- cpufreq: Fix parameter in parse_perf_domain() (Mark Langsdorf) [2181273]
+- cpufreq: intel_pstate: remove MODULE_LICENSE in non-modules (Mark Langsdorf) [2181273]
+- cpufreq: intel_pstate: Adjust balance_performance EPP for Sapphire Rapids (Mark Langsdorf) [2181273]
+- cpufreq: Make kobj_type structure constant (Mark Langsdorf) [2181273]
+- driver core: make kobj_type constant. (Mark Langsdorf) [2181273]
+- cpufreq: Make cpufreq_unregister_driver() return void (Mark Langsdorf) [2181273]
+- drivers/cpufreq: Remove "select SRCU" (Mark Langsdorf) [2181273]
+- cpufreq: intel_pstate: Drop ACPI _PSS states table patching (Mark Langsdorf) [2181273]
+- cpufreq: stats: Convert to use sysfs_emit_at() API (Mark Langsdorf) [2181273]
+- cpufreq: Init completion before kobject_init_and_add() (Mark Langsdorf) [2181273]
+- cpufreq: intel_pstate: Allow EPP 0x80 setting by the firmware (Mark Langsdorf) [2181273]
+- cpufreq: ACPI: Use str_enabled_disabled() helper (Mark Langsdorf) [2181273]
+- cpufreq: Generalize of_perf_domain_get_sharing_cpumask phandle format (Mark Langsdorf) [2181273]
+- cpufreq: Add of_perf_domain_get_sharing_cpumask (Mark Langsdorf) [2181273]
+- cpufreq: intel_pstate: Read all MSRs on the target CPU (Mark Langsdorf) [2181273]
+- ACPI: CPPC: Add ACPI disabled check to acpi_cpc_valid() (Mark Langsdorf) [2181273]
+
+* Tue Jul 25 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-505.el8]
+- gfs2: Don't deref jdesc in evict (Bob Peterson) [2214356] {CVE-2023-3212}
+- md/raid5: Don't do accounting for non-align read io (Nigel Croxon) [2183033]
+- powerpc: Don't select HAVE_IRQ_EXIT_ON_IRQ_STACK (Mamatha Inamdar) [2218348]
+- NFSv4.1: freeze the session table upon receiving NFS4ERR_BADSESSION (Benjamin Coddington) [2217963]
+- proc: Use PIDTYPE_TGID in next_tgid (Brian Foster) [2047252]
+- netfilter: nf_tables: unbind non-anonymous set if rule construction fails (Phil Sutter) [2214963] {CVE-2023-3390}
+- netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound set/chain (Phil Sutter) [2214963] {CVE-2023-3390}
+- netfilter: nf_tables: incorrect error path handling with NFT_MSG_NEWRULE (Phil Sutter) [2214963] {CVE-2023-3390}
+- fanotify,audit: Allow audit to use the full permission event response (Richard Guy Briggs) [2055328]
+- fanotify: define struct members to hold response decision context (Richard Guy Briggs) [2055328]
+- fanotify: Ensure consistent variable type for response (Richard Guy Briggs) [2055328]
+- RDMA/mlx4: Prevent shift wrapping in set_user_sq_size() (Amir Tzin) [2166019]
+- RDMA/mlx: Calling qp event handler in workqueue context (mlx4 hunks only) (Amir Tzin) [2166019]
+- net/mlx4: small optimization in mlx4_en_xmit() (Amir Tzin) [2166019]
+- net/mlx4: rename two constants (Amir Tzin) [2166019]
+- RDMA/mlx4: Remove NULL check before dev_{put, hold} (Amir Tzin) [2166019]
+- ptp: mlx4: convert to .adjfine and adjust_by_scaled_ppm (Amir Tzin) [2166019]
+- mlx4: Do type_clear() for devlink ports when type_set() was called previously (Amir Tzin) [2166019]
+- cgroup: Reorganize css_set_lock and kernfs path processing (Waiman Long) [2193485]
+- cgroup: Fix build failure when CONFIG_SHRINKER_DEBUG (Waiman Long) [2193485]
+- cgroup: fix missing cpus_read_{lock,unlock}() in cgroup_transfer_tasks() (Waiman Long) [2193485]
+- cgroup: Make cgroup_get_from_id() prettier (Waiman Long) [2193485]
+- cgroup: remove obsolete comment on cgroup_on_dfl() (Waiman Long) [2193485]
+- cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach() (Waiman Long) [2193485]
+- kselftests: cgroup: update kmem test precision tolerance (Waiman Long) [2193485]
+- cgroup/cpuset: Improve cpuset_css_alloc() description (Waiman Long) [2193485]
+- selftests: cgroup: fix unsigned comparison with less than zero (Waiman Long) [2193485]
+- device_cgroup: Roll back to original exceptions after copy failure (Waiman Long) [2193485]
+- cgroup/cpuset: use hotplug_memory_notifier() directly (Waiman Long) [2193485]
+- mm: memcontrol: don't allocate cgroup swap arrays when memcg is disabled (Waiman Long) [2193485]
+- cgroup: cgroup_get_from_id() must check the looked-up kn is a directory (Waiman Long) [2193485]
+- sched/psi: Don't create cgroup PSI files when psi_disabled (Waiman Long) [2193485]
+- cgroup: Homogenize cgroup_get_from_id() return value (Waiman Long) [2193485]
+- cgroup: cgroup: Honor caller's cgroup NS when resolving cgroup id (Waiman Long) [2193485]
+- cgroup: Honor caller's cgroup NS when resolving path (Waiman Long) [2193485]
+- mm: memcontrol: introduce mem_cgroup_ino() and mem_cgroup_get_from_ino() (Waiman Long) [2193485]
+- cgroup: Use separate src/dst nodes when preloading css_sets for migration (Waiman Long) [2193485]
+- cgroup.c: add helper __cset_cgroup_from_root to cleanup duplicated codes (Waiman Long) [2193485]
+- cgroup/rstat: check updated_next only for root (Waiman Long) [2193485]
+- cgroup: rstat: explicitly put loop variant in while (Waiman Long) [2193485]
+- cgroup: return early if it is already on preloaded list (Waiman Long) [2193485]
+- cgroup: Trace event cgroup id fields should be u64 (Waiman Long) [2193485]
+- cgroup: fix a typo in comment (Waiman Long) [2193485]
+- hugetlb_cgroup: remove unused hugetlb_cgroup_from_counter macro (Waiman Long) [2193485]
+- cgroup: Make rebind_subsystems() disable v2 controllers all at once (Waiman Long) [2193485]
+- cgroup: Avoid compiler warnings with no subsystems (Waiman Long) [2193485]
+- cgroup: Fix kernel-doc (Waiman Long) [2193485]
+- kernfs: use 64bit inos if ino_t is 64bit (Waiman Long) [2193485]
+- kernfs: implement custom exportfs ops and fid type (Waiman Long) [2193485]
+- kernfs: combine ino/id lookup functions into kernfs_find_and_get_node_by_id() (Waiman Long) [2193485]
+- kernfs: kernfs_find_and_get_node_by_ino() should only look up activated nodes (Waiman Long) [2193485]
+- kernfs: use dumber locking for kernfs_find_and_get_node_by_ino() (Waiman Long) [2193485]
+- kernfs: fix ino wrap-around detection (Waiman Long) [2193485]
+- ice: prevent NULL pointer deref during reload (Petr Oros) [2153356]
+- ice: Unregister netdev and devlink_port only once (Petr Oros) [2153356]
+- ice: Fix ice module unload (Petr Oros) [2153356]
+- ice: Fix tx queue rate limit when TCs are configured (Petr Oros) [2153356]
+- ice: Fix max_rate check while configuring TX rate limits (Petr Oros) [2153356]
+- ice: Fix XDP memory leak when NIC is brought up and down (Petr Oros) [2153356]
+- ice: remove comment about not supporting driver reinit (Petr Oros) [2153356]
+- ice: block LAN in case of VF to VF offload (Petr Oros) [2153356]
+- ice: Fix stats after PF reset (Petr Oros) [2153356]
+- ice: Reset FDIR counter in FDIR init stage (Petr Oros) [2153356]
+- ice: fix wrong fallback logic for FDIR (Petr Oros) [2153356]
+- ice: add profile conflict check for AVF FDIR (Petr Oros) [2153356]
+- ice: Fix ice_cfg_rdma_fltr() to only update relevant fields (Petr Oros) [2153356]
+- ice: remove filters only if VSI is deleted (Petr Oros) [2153356]
+- ice: check if VF exists before mode check (Petr Oros) [2153356]
+- ice: xsk: disable txq irq before flushing hw (Petr Oros) [2153356]
+- ice: avoid bonding causing auxiliary plug/unplug under RTNL lock (Petr Oros) [2153356]
+- ethernet: ice: avoid gcc-9 integer overflow warning (Petr Oros) [2153356]
+- ice: don't ignore return codes in VSI related code (Petr Oros) [2153356]
+- ice: Fix DSCP PFC TLV creation (Petr Oros) [2153356]
+- ice: copy last block omitted in ice_get_module_eeprom() (Petr Oros) [2153356]
+- ice: properly alloc ICE_VSI_LB (Petr Oros) [2153356]
+- ice: xsk: Fix cleaning of XDP_TX frames (Petr Oros) [2153356]
+- ice: Mention CEE DCBX in code comment (Petr Oros) [2153356]
+- ice: Change ice_vsi_realloc_stat_arrays() to void (Petr Oros) [2153356]
+- ice: Add GPIO pin support for E823 products (Petr Oros) [2153356]
+- ice: switch: fix potential memleak in ice_add_adv_recipe() (Petr Oros) [2153356]
+- ice: Fix off by one in ice_tc_forward_to_queue() (Petr Oros) [2153356]
+- ice: Fix disabling Rx VLAN filtering with port VLAN enabled (Petr Oros) [2153356]
+- ice: fix out-of-bounds KASAN warning in virtchnl (Petr Oros) [2153356]
+- ice: Do not use WQ_MEM_RECLAIM flag for workqueue (Petr Oros) [2153356]
+- ice: remove unnecessary virtchnl_ether_addr struct use (Petr Oros) [2153356]
+- ice: introduce .irq_close VF operation (Petr Oros) [2153356]
+- ice: introduce clear_reset_state operation (Petr Oros) [2153356]
+- ice: convert vf_ops .vsi_rebuild to .create_vsi (Petr Oros) [2153356]
+- ice: introduce ice_vf_init_host_cfg function (Petr Oros) [2153356]
+- ice: add a function to initialize vf entry (Petr Oros) [2153356]
+- ice: Pull common tasks into ice_vf_post_vsi_rebuild (Petr Oros) [2153356]
+- ice: move ice_vf_vsi_release into ice_vf_lib.c (Petr Oros) [2153356]
+- ice: move vsi_type assignment from ice_vsi_alloc to ice_vsi_cfg (Petr Oros) [2153356]
+- ice: refactor VSI setup to use parameter structure (Petr Oros) [2153356]
+- ice: drop unnecessary VF parameter from several VSI functions (Petr Oros) [2153356]
+- ice: fix function comment referring to ice_vsi_alloc (Petr Oros) [2153356]
+- ice: Add more usage of existing function ice_get_vf_vsi(vf) (Petr Oros) [2153356]
+- ice: implement devlink reinit action (Petr Oros) [2153356]
+- ice: update VSI instead of init in some case (Petr Oros) [2153356]
+- ice: move VSI delete outside deconfig (Petr Oros) [2153356]
+- ice: sync netdev filters after clearing VSI (Petr Oros) [2153356]
+- ice: split probe into smaller functions (Petr Oros) [2153356]
+- ice: stop hard coding the ICE_VSI_CTRL location (Petr Oros) [2153356]
+- ice: split ice_vsi_setup into smaller functions (Petr Oros) [2153356]
+- ice: cleanup in VSI config/deconfig code (Petr Oros) [2153356]
+- ice: alloc id for RDMA using xa_array (Petr Oros) [2153356]
+- ice: move RDMA init to ice_idc.c (Petr Oros) [2153356]
+- ice: Prevent set_channel from changing queues while RDMA active (Petr Oros) [2153356]
+- ice: Remove redundant pci_enable_pcie_error_reporting() (Petr Oros) [2153356]
+- ice: move devlink port creation/deletion (Petr Oros) [2153356]
+- ice: Remove excess space (Petr Oros) [2153356]
+- ice: Introduce local var for readability (Petr Oros) [2153356]
+- ice: Match parameter name for ice_cfg_phy_fc() (Petr Oros) [2153356]
+- ice: Explicitly return 0 (Petr Oros) [2153356]
+- ice: Reduce scope of variables (Petr Oros) [2153356]
+- ice: Move support DDP code out of ice_flex_pipe.c (Petr Oros) [2153356]
+- ice: Remove cppcheck suppressions (Petr Oros) [2153356]
+- ice: combine cases in ice_ksettings_find_adv_link_speed() (Petr Oros) [2153356]
+- ice: Add support for 100G KR2/CR2/SR2 link reporting (Petr Oros) [2153356]
+- ice: add missing checks for PF vsi type (Petr Oros) [2153356]
+- ice: remove redundant non-null check in ice_setup_pf_sw() (Petr Oros) [2153356]
+- ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB (Petr Oros) [2153356]
+- ice: Support drop action (Petr Oros) [2153356]
+- ice: Handle LLDP MIB Pending change (Petr Oros) [2153356]
+- ice: Add 'Execute Pending LLDP MIB' Admin Queue command (Petr Oros) [2153356]
+- ice: xsk: do not use xdp_return_frame() on tx_buf->raw_buf (Petr Oros) [2153356]
+- ice: Use ICE_RLAN_BASE_S instead of magic number (Petr Oros) [2153356]
+- ice: Accumulate ring statistics over reset (Petr Oros) [2153356]
+- ice: Accumulate HW and Netdev statistics over reset (Petr Oros) [2153356]
+- ice: Remove and replace ice speed defines with ethtool.h versions (Petr Oros) [2153356]
+- ice: Check for PTP HW lock more frequently (Petr Oros) [2153356]
+- ice: Fix spurious interrupt during removal of trusted VF (Petr Oros) [2153356]
+- ice: Enable RX queue selection using skbedit action (Petr Oros) [2153356]
+- ice: Add support for VLAN priority filters in switchdev (Petr Oros) [2153356]
+- ice: support features on new E810T variants (Petr Oros) [2153356]
+- ice: xsk: drop power of 2 ring size restriction for AF_XDP (Petr Oros) [2153356]
+- ice: xsk: change batched Tx descriptor cleaning (Petr Oros) [2153356]
+- ice: reorder PF/representor devlink port register/unregister flows (Petr Oros) [2153356]
+- ice: Add L2TPv3 hardware offload support (Petr Oros) [2153356]
+- ice: Simplify memory allocation in ice_sched_init_port() (Petr Oros) [2153356]
+- ice: switch: Simplify memory allocation (Petr Oros) [2153356]
+- ice: add helper function to check FW API version (Petr Oros) [2153356]
+- ice: Print human-friendly PHY types (Petr Oros) [2153356]
+- ice: Add support for ip TTL & ToS offload (Petr Oros) [2153356]
+- ice: xsk: use Rx ring's XDP ring when picking NAPI context (Petr Oros) [2153356]
+- ice: xsk: prohibit usage of non-balanced queue id (Petr Oros) [2153356]
+- ice: remove non-inclusive language (Petr Oros) [2153356]
+- ice: Remove ucast_shared (Petr Oros) [2153356]
+- ice: Allow 100M speeds for some devices (Petr Oros) [2153356]
+- ice: Implement FCS/CRC and VLAN stripping co-existence policy (Petr Oros) [2153356]
+- ice: Implement control of FCS/CRC stripping (Petr Oros) [2153356]
+- ice: initialize cached_phctime when creating Rx rings (Petr Oros) [2153356]
+- ice: set tx_tstamps when creating new Tx rings via ethtool (Petr Oros) [2153356]
+- ice: link representors to PCI device (Petr Oros) [2153356]
+- ice, xsk: Avoid refilling single Rx descriptors (Petr Oros) [2153356]
+- ice, xsk: Diversify return values from xsk_wakeup call paths (Petr Oros) [2153356]
+- ice, xsk: Terminate Rx side of NAPI when XSK Rx queue gets full (Petr Oros) [2153356]
+- ice, xsk: Decorate ICE_XDP_REDIR with likely() (Petr Oros) [2153356]
+- ice: xsk: check if Rx ring was filled up to the end (Petr Oros) [2153356]
+- ice: xsk: Eliminate unnecessary loop iteration (Petr Oros) [2153356]
+- ice: xsk: fix GCC version checking against pragma unroll presence (Petr Oros) [2153356]
+- ice: xsk: Borrow xdp_tx_active logic from i40e (Petr Oros) [2153356]
+- ice: xsk: Improve AF_XDP ZC Tx and use batching API (Petr Oros) [2153356]
+- ice: xsk: Avoid potential dead AF_XDP Tx processing (Petr Oros) [2153356]
+- ice: Make Tx threshold dependent on ring length (Petr Oros) [2153356]
+- ice: xsk: Handle SW XDP ring wrap and bump tail more often (Petr Oros) [2153356]
+- ice: xsk: Force rings to be sized to power of 2 (Petr Oros) [2153356]
+- ice: xsk: do not clear status_error0 for ntu + nb_buffs descriptor (Petr Oros) [2153356]
+- ice: remove dead store on XSK hotpath (Petr Oros) [2153356]
+- ice: xsk: clear status_error0 for each allocated desc (Petr Oros) [2153356]
+- intel: Simplify bool conversion (Petr Oros) [2153356]
+- ice: Use the xsk batched rx allocation interface (Petr Oros) [2153356]
+
+* Thu Jul 20 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-504.el8]
+- blk-cgroup: Reinit blkg_iostat_set after clearing in blkcg_reset_stats() (Waiman Long) [2212032]
+- ipvlan:Fix out-of-bounds caused by unclear skb->cb (Davide Caratti) [2218676] {CVE-2023-3090}
+- net: openvswitch: fix upcall counter access before allocation (Eelco Chaudron) [2214262]
+- netfilter: Drop fragmented ndisc packets assembled in netfilter (Phil Sutter) [2217795]
+- netfilter: conntrack: gre: don't set assured flag for clash entries (Florian Westphal) [2219357]
+- netfilter: conntrack: allow insertion clash of gre protocol (Florian Westphal) [2219357]
+- sfc: use budget for TX completions (Íñigo Huguet) [2179558]
+- sfc: fix XDP queues mode with legacy IRQ (Íñigo Huguet) [2214589]
+- memstick: r592: Fix UAF bug in r592_remove due to race condition (Ricardo Robaina) [2213205] {CVE-2023-3141}
+- audit: avoid missing-prototype warnings (Richard Guy Briggs) [2175322]
+- audit: update the mailing list in MAINTAINERS (Richard Guy Briggs) [2175322]
+- audit: fix undefined behavior in bit shift for AUDIT_BIT (Richard Guy Briggs) [2175322]
+- fork: Use IS_ENABLED() in account_kernel_stack() (Valentin Schneider) [2131754]
+- fork: Only cache the VMAP stack in finish_task_switch() (Valentin Schneider) [2131754]
+- fork: Move task stack accounting to do_exit() (Valentin Schneider) [2131754]
+- fork: Move memcg_charge_kernel_stack() into CONFIG_VMAP_STACK (Valentin Schneider) [2131754]
+- fork: Don't assign the stack pointer in dup_task_struct() (Valentin Schneider) [2131754]
+- fork, IA64: Provide alloc_thread_stack_node() for IA64 (Valentin Schneider) [2131754]
+- fork: Duplicate task_struct before stack allocation (Valentin Schneider) [2131754]
+- fork: Redo ifdefs around task stack handling (Valentin Schneider) [2131754]
+- fork: fix some -Wmissing-prototypes warnings (Valentin Schneider) [2131754]
+- igb: fix nvm.ops.read() error handling (Corinna Vinschen) [2153360]
+- igb: Fix extts capture value format for 82580/i354/i350 (Corinna Vinschen) [2153360]
+- igb: Define igb_pm_ops conditionally on CONFIG_PM (Corinna Vinschen) [2153360]
+- igb: fix bit_shift to be in [1..8] range (Corinna Vinschen) [2153360]
+- igb: refactor igb_ptp_adjfine_82580 to use diff_by_scaled_ppm (Corinna Vinschen) [2153360]
+- igb: revert rtnl_lock() that causes deadlock (Corinna Vinschen) [2153360]
+- igb: Remove unnecessary aer.h include (Corinna Vinschen) [2153360]
+- igb: Fix PPS input and output using 3rd and 4th SDP (Corinna Vinschen) [2153360]
+- igb: Remove redundant pci_enable_pcie_error_reporting() (Corinna Vinschen) [2153360]
+- igb: Add lock to avoid data race (Corinna Vinschen) [2153360]
+- x86/cpu: Include the header of init_ia32_feat_ctl()'s prototype (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- x86/pm: Fix false positive kmemleak report in msr_build_context() (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- x86/speculation: Restore speculation related MSRs during S3 resume (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- kbuild: remove leftover comment for filechk utility (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- x86/cpu: Reinitialize IA32_FEAT_CTL MSR on BSP during wakeup (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- x86/rdrand: Sanity-check RDRAND output (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- x86/CPU/AMD: Clear RDRAND CPUID bit on AMD family 15h/16h (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- kbuild: change filechk to surround the given command with { } (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- firmware: refactor firmware/Makefile (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- kbuild: remove redundant 'set -e' from filechk_offsets (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- kbuild: do not redirect the first prerequisite for filechk (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- kbuild: move bin2c back to scripts/ from scripts/basic/ (Chris von Recklinghausen) [2181906] {CVE-2023-1637}
+- perf/x86/ibs: Add new IBS register bits into header (Michael Petlan) [2088767]
+- perf tool x86: Fix perf_env memory leak (Michael Petlan) [2088767]
+- perf tool x86: Consolidate is_amd check into single function (Michael Petlan) [2088767]
+- perf env: Add perf_env__cpuid, perf_env__{nr_}pmu_mappings (Michael Petlan) [2088767]
+- perf/x86/amd/uncore: Fix memory leak for events array (Michael Petlan) [2088767]
+- perf script: Add missing fields in usage hint (Michael Petlan) [2086837]
+- perf mem: Print "LFB/MAB" for PERF_MEM_LVLNUM_LFB (Michael Petlan) [2088767]
+- perf mem/c2c: Avoid printing empty lines for unsupported events (Michael Petlan) [2088767]
+- perf mem/c2c: Add load store event mappings for AMD (Michael Petlan) [2088767]
+- perf mem/c2c: Set PERF_SAMPLE_WEIGHT for LOAD_STORE events (Michael Petlan) [2088767]
+- perf mem: Add support for printing PERF_MEM_LVLNUM_{CXL|IO} (Michael Petlan) [2088767]
+- perf/mem: Rename PERF_MEM_LVLNUM_EXTN_MEM to PERF_MEM_LVLNUM_CXL (Michael Petlan) [2088767]
+- perf amd ibs: Sync arch/x86/include/asm/amd-ibs.h header with the kernel (Michael Petlan) [2088767]
+- tools headers UAPI: Sync include/uapi/linux/perf_event.h header with the kernel (Michael Petlan) [2088767]
+- perf/uapi: Define PERF_MEM_SNOOPX_PEER in kernel header file (Michael Petlan) [2088767]
+- perf: correct SNOOPX field offset (Michael Petlan) [2088767]
+- perf tools: Sync addition of PERF_MEM_SNOOPX_PEER (Michael Petlan) [2088767]
+- perf/x86/amd: Support PERF_SAMPLE_PHY_ADDR (Michael Petlan) [2088767]
+- perf: Add sample_flags to indicate the PMU-filled sample data (Michael Petlan) [2086837]
+- perf/x86/amd: Support PERF_SAMPLE_ADDR (Michael Petlan) [2088767]
+- perf/x86/amd: Support PERF_SAMPLE_{WEIGHT|WEIGHT_STRUCT} (Michael Petlan) [2088767]
+- perf/x86/amd: Support PERF_SAMPLE_DATA_SRC (Michael Petlan) [2088767]
+- perf/x86/amd: Add IBS OP_DATA2 DataSrc bit definitions (Michael Petlan) [2088767]
+- perf/mem: Introduce PERF_MEM_LVLNUM_{EXTN_MEM|IO} (Michael Petlan) [2088767]
+- perf/x86/amd/uncore: Add PerfMonV2 RDPMC assignments (Michael Petlan) [2086837]
+- perf/x86/amd/uncore: Add PerfMonV2 DF event format (Michael Petlan) [2086837]
+- perf/x86/amd/uncore: Detect available DF counters (Michael Petlan) [2086837]
+- perf/x86/amd/uncore: Use attr_update for format attributes (Michael Petlan) [2086837]
+- perf/x86/amd/uncore: Use dynamic events array (Michael Petlan) [2086837]
+- tracing/osnoise: set several trace_osnoise.c variables storage-class-specifier to static (John Kacur) [2175293]
+- tracing/osnoise: No need for schedule_hrtimeout range (John Kacur) [2175293]
+- tracing/osnoise: Use built-in RCU list checking (John Kacur) [2175293]
+- tracing/osnoise: Add preempt and/or irq disabled options (John Kacur) [2175293]
+- tracing/osnoise: Add PANIC_ON_STOP option (John Kacur) [2175293]
+- tracing/osnoise: Make osnoise_options static (John Kacur) [2175293]
+- tracing/osnoise: Add OSNOISE_WORKLOAD option (John Kacur) [2175293]
+- tracing/osnoise: Add osnoise/options file (John Kacur) [2175293]
+- tracing/osnoise: Fix duration type (John Kacur) [2175293]
+- tracing/osnoise: Fix possible recursive locking in stop_per_cpu_kthreads (John Kacur) [2175293]
+- tracing/timerlat: Do not wakeup the thread if the trace stops at the IRQ (John Kacur) [2175293]
+- tracing/timerlat: Print stacktrace in the IRQ handler if needed (John Kacur) [2175293]
+- tracing/timerlat: Notify IRQ new max latency only if stop tracing is set (John Kacur) [2175293]
+- drivers: base: cacheinfo: Fix shared_cpu_map changes in event of CPU hotplug (Mark Lansgdorf) [2178301]
+- drivers: base: cacheinfo: Update cpu_map_populated during CPU Hotplug (Mark Lansgdorf) [2178301]
+- driver core: bus: move documentation for lock_key to proper location. (Mark Langsdorf) [2178301]
+- cacheinfo: Check cache properties are present in DT (Mark Langsdorf) [2178301]
+- cacheinfo: Fix LLC is not exported through sysfs (Mark Langsdorf) [2178301]
+- of: Add of_property_present() helper (Mark Langsdorf) [2178301]
+- driver core: fw_devlink: Print full path and name of fwnode (Mark Langsdorf) [2178301]
+- driver core: fw_devlink: Avoid spurious error message (Mark Langsdorf) [2178301]
+- driver core: bus: Handle early calls to bus_to_subsys() (Mark Langsdorf) [2178301]
+- driver core: class: move EXPORT_SYMBOL_GPL() lines to the correct place (Mark Langsdorf) [2178301]
+- driver core: cpu: don't hand-override the uevent bus_type callback. (Mark Langsdorf) [2178301]
+- driver core: bus: update my copyright notice (Mark Langsdorf) [2178301]
+- driver core: bus: add bus_get_dev_root() function (Mark Langsdorf) [2178301]
+- driver core: bus: constify bus_unregister() (Mark Langsdorf) [2178301]
+- driver core: bus: constify some internal functions (Mark Langsdorf) [2178301]
+- driver core: bus: constify bus_get_kset() (Mark Langsdorf) [2178301]
+- driver core: bus: constify bus_register/unregister_notifier() (Mark Langsdorf) [2178301]
+- driver core: create bus_is_registered() (Mark Langsdorf) [2178301]
+- driver core: bus: clean up driver_find() (Mark Langsdorf) [2178301]
+- driver core: move driver_find() to bus.c (Mark Langsdorf) [2178301]
+- driver core: bus: clean up bus_sort_breadthfirst() (Mark Langsdorf) [2178301]
+- driver core: bus: bus iterator cleanups (Mark Langsdorf) [2178301]
+- driver core: bus: bus_add/remove_driver() cleanups (Mark Langsdorf) [2178301]
+- driver core: bus: bus_register/unregister_notifier() cleanups (Mark Langsdorf) [2178301]
+- driver core: bus: bus_get_kset() cleanup (Mark Langsdorf) [2178301]
+- driver core: bus: subsys_interface_register/unregister() cleanups (Mark Langsdorf) [2178301]
+- driver core: bus: bus_register/unregister() cleanups (Mark Langsdorf) [2178301]
+- driver core: bus: bus_add/probe/remove_device() cleanups (Mark Langsdorf) [2178301]
+- driver core: bus: sysfs function cleanups (Mark Langsdorf) [2178301]
+- driver core: bus: convert bus_create/remove_file to be constant (Mark Langsdorf) [2178301]
+- driver core: bus: constantify the bus_find_* functions (Mark Langsdorf) [2178301]
+- driver core: bus: implement bus_get/put() without the private pointer (Mark Langsdorf) [2178301]
+- driver core: add local subsys_get and subsys_put functions (Mark Langsdorf) [2178301]
+- driver core: fw_devlink: Make cycle detection more robust (Mark Langsdorf) [2178301]
+- driver core: fw_devlink: Consolidate device link flag computation (Mark Langsdorf) [2178301]
+- driver core: fw_devlink: Allow marking a fwnode link as being part of a cycle (Mark Langsdorf) [2178301]
+- driver core: Add wait_for_init_devices_probe helper function (Mark Langsdorf) [2178301]
+- driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links (Mark Langsdorf) [2178301]
+- driver core: fw_devlink: Improve check for fwnode with no device/driver (Mark Langsdorf) [2178301]
+- driver core: fw_devlink: Don't purge child fwnode's consumer links (Mark Langsdorf) [2178301]
+- drivers: base: dd: fix memory leak with using debugfs_lookup() (Mark Langsdorf) [2178301]
+- drivers: base: component: fix memory leak with using debugfs_lookup() (Mark Langsdorf) [2178301]
+- drivers/base: Remove CONFIG_SRCU (Mark Langsdorf) [2178301]
+- devtmpfs: convert to pr_fmt (Mark Langsdorf) [2178301]
+- driver core: bus: move lock_class_key into dynamic structure (Mark Langsdorf) [2178301]
+- driver core: platform: simplify __platform_driver_probe() (Mark Langsdorf) [2178301]
+- driver core: platform: removed unneeded variable from __platform_driver_probe() (Mark Langsdorf) [2178301]
+- cacheinfo: Initialize variables in fetch_cache_info() (Mark Langsdorf) [2178301]
+- regmap: apply reg_base and reg_downshift for single register ops (Mark Langsdorf) [2178301]
+- driver core: soc: remove layering violation for the soc_bus (Mark Langsdorf) [2178301]
+- of: device: make of_device_uevent_modalias() take a const device * (Mark Langsdorf) [2178301]
+- driver core: device_get_devnode() should take a const * (Mark Langsdorf) [2178301]
+- driver core: fix up missed drivers/s390/char/hmcdrv_dev.c class.devnode() conversion. (Mark Langsdorf) [2178301]
+- driver core: fix up missed scsi/cxlflash class.devnode() conversion. (Mark Langsdorf) [2178301]
+- driver core: fix up some missing class.devnode() conversions. (Mark Langsdorf) [2178301]
+- driver core: make struct class.devnode() take a const * (Mark Langsdorf) [2178301]
+- driver core: make struct device_type.devnode() take a const * (Mark Langsdorf) [2178301]
+- driver core: class: Clear private pointer on registration failures (Mark Langsdorf) [2178301]
+- cacheinfo: Fix shared_cpu_map to handle shared caches at different levels (Mark Langsdorf) [2178301]
+- cacheinfo: Check 'cache-unified' property to count cache leaves (Mark Langsdorf) [2178301]
+- arch_topology: Build cacheinfo from primary CPU (Mark Langsdorf) [2178301]
+- cacheinfo: Make default acpi_get_cache_info() return an error (Mark Langsdorf) [2178301]
+- ACPI: PPTT: Update acpi_find_last_cache_level() to acpi_get_cache_info() (Mark Langsdorf) [2178301]
+- ACPI: PPTT: Remove acpi_find_cache_levels() (Mark Langsdorf) [2178301]
+- drivers: base: transport_class: fix resource leak when transport_add_device() fails (Mark Langsdorf) [2178301]
+- driver core: location: Free struct acpi_pld_info *pld before return false (Mark Langsdorf) [2178301]
+- driver core: fix resource leak in device_add() (Mark Langsdorf) [2178301]
+- drivers/base/memory: Fix comments for phys_index_show() (Mark Langsdorf) [2178301]
+- drivers/base/memory: rename base_memory_block_id to memory_block_id (Mark Langsdorf) [2178301]
+- driver core: Fix test_async_probe_init saves device in wrong array (Mark Langsdorf) [2178301]
+- device property: fix of node refcount leak in fwnode_graph_get_next_endpoint() (Mark Langsdorf) [2178301]
+- driver core: bus: move bus notifier logic into bus.c (Mark Langsdorf) [2178301]
+- driver core: bus.h: document bus notifiers better (Mark Langsdorf) [2178301]
+- cacheinfo: Return error code in init_of_cache_level() (Mark Langsdorf) [2178301]
+- cacheinfo: Use RISC-V's init_cache_level() as generic OF implementation (Mark Langsdorf) [2178301]
+- platform: remove useless if-branch in __platform_get_irq_byname() (Mark Langsdorf) [2178301]
+- platform: Document platform_add_devices() return value (Mark Langsdorf) [2178301]
+- software node: Remove unused APIs (Mark Langsdorf) [2178301]
+- software node: Switch property entry test to a new API (Mark Langsdorf) [2178301]
+- platform: Provide a remove callback that returns no value (Mark Langsdorf) [2178301]
+- regmap: Rework regmap_mdio_c45_{read|write} for new C45 API. (Mark Langsdorf) [2178301]
+- net: Convert more users of mdiobus_* to mdiodev_* (Mark Langsdorf) [2178301]
+- PM: runtime: Document that force_suspend() is incompatible with SMART_SUSPEND (Mark Langsdorf) [2178301]
+- cpuidle, ARM: OMAP2+: powerdomain: Remove trace_.*_rcuidle() (Mark Langsdorf) [2178301]
+- driver core: fix potential null-ptr-deref in device_add() (Mark Langsdorf) [2178301]
+- PM: domains: Allow a genpd consumer to require a synced power off (Mark Langsdorf) [2178301]
+- driver core: move struct subsys_dev_iter to a local file (Mark Langsdorf) [2178301]
+- driver core: make subsys_dev_iter_exit() static (Mark Langsdorf) [2178301]
+- driver core: make subsys_dev_iter_next() static (Mark Langsdorf) [2178301]
+- driver core: make subsys_dev_iter_init() static (Mark Langsdorf) [2178301]
+- driver core: remove subsys_find_device_by_id() (Mark Langsdorf) [2178301]
+- driver core: make bus_get_device_klist() static (Mark Langsdorf) [2178301]
+- platform/mellanox: mlxbf-pmc: Fix event typo (Mark Langsdorf) [2178301]
+- firmware_loader: remove #include <generated/utsrelease.h> (Mark Langsdorf) [2178301]
+- PM: runtime: Adjust white space in the core code (Mark Langsdorf) [2178301]
+- device property: Fix documentation for fwnode_get_next_parent() (Mark Langsdorf) [2178301]
+- PM: runtime: Relocate rpm_callback() right after __rpm_callback() (Mark Langsdorf) [2178301]
+- regmap: Add FSI bus support (Mark Langsdorf) [2178301]
+- PM: domains: Reverse the order of performance and enabling ops (Mark Langsdorf) [2178301]
+- driver core: make struct class.dev_uevent() take a const * (Mark Langsdorf) [2178301]
+- driver core: change to_subsys_private() to use container_of_const() (Mark Langsdorf) [2178301]
+- xen/xenbus: move to_xenbus_device() to use container_of_const() (Mark Langsdorf) [2178301]
+- virtio: move dev_to_virtio() to use container_of_const() (Mark Langsdorf) [2178301]
+- cacheinfo: Remove of_node_put() for fw_token (Mark Langsdorf) [2178301]
+- device property: Add a blank line in Kconfig of tests (Mark Langsdorf) [2178301]
+- device property: Rename goto label to be more precise (Mark Langsdorf) [2178301]
+- regmap: add regmap_might_sleep() (Mark Langsdorf) [2178301]
+- regmap: Add can_sleep configuration option (Mark Langsdorf) [2178301]
+- regmap: Use flexible sleep (Mark Lansgdorf) [2178301]
+- platform: use fwnode_irq_get_byname instead of of_irq_get_byname to get irq (Mark Langsdorf) [2178301]
+- driver core: Fix bus_type.match() error handling in __driver_attach() (Mark Langsdorf) [2178301]
+- driver core: Use kstrtobool() instead of strtobool() (Mark Langsdorf) [2178301]
+- cacheinfo: Decrement refcount in cache_setup_of_node() (Mark Langsdorf) [2178301]
+- driver core: mark driver_allows_async_probing static (Mark Langsdorf) [2178301]
+- driver core: remove devm_device_remove_group() (Mark Langsdorf) [2178301]
+- driver core: remove devm_device_remove_groups() (Mark Langsdorf) [2178301]
+- driver core: class: make namespace and get_ownership take const * (Mark Langsdorf) [2178301]
+- devres: Use kmalloc_size_roundup() to match ksize() usage (Mark Langsdorf) [2178301]
+- class: fix possible memory leak in __class_register() (Mark Langsdorf) [2178301]
+- PM: domains: Power off[on] domain in hibernate .freeze[thaw]_noirq hook (Mark Langsdorf) [2178301]
+- PM: domains: Consolidate genpd_restore_noirq() and genpd_resume_noirq() (Mark Langsdorf) [2178301]
+- PM: domains: Pass generic PM noirq hooks to genpd_finish_suspend() (Mark Langsdorf) [2178301]
+- PM: domains: Drop genpd status manipulation for hibernate restore (Mark Langsdorf) [2178301]
+- PM: domains: Fix handling of unavailable/disabled idle states (Mark Langsdorf) [2178301]
+- device property: Fix documentation for *_match_string() APIs (Mark Langsdorf) [2178301]
+- device property: Constify parameter in device_dma_supported() and device_get_dma_attr() (Mark Langsdorf) [2178301]
+- device property: Constify device child node APIs (Mark Langsdorf) [2178301]
+- device property: Constify fwnode connection match APIs (Mark Langsdorf) [2178301]
+- device property: Allow const parameter to dev_fwnode() (Mark Langsdorf) [2178301]
+- PM: domains: log failures to register always-on domains (Mark Langsdorf) [2178301]
+- dt-bindings: irqchip: Describe the IMX MU block as a MSI controller (Mark Langsdorf) [2178301]
+- platform-msi: Export symbol platform_msi_create_irq_domain() (Mark Langsdorf) [2178301]
+- PM: runtime: Return -EINPROGRESS from rpm_resume() in the RPM_NOWAIT case (Mark Langsdorf) [2178301]
+- device property: Add const qualifier to device_get_match_data() parameter (Mark Langsdorf) [2178301]
+- driver core: use IS_ERR_OR_NULL() helper in device_create_groups_vargs() (Mark Langsdorf) [2178301]
+- devcoredump : Serialize devcd_del work (Mark Langsdorf) [2178301]
+- regmap: mmio: replace return 0 with break in switch statement (Mark Langsdorf) [2178301]
+- mm: kill is_memblock_offlined() (Mark Langsdorf) [2178301]
+- driver core: remove make_class_name declaration (Mark Langsdorf) [2178301]
+- regmap/hexagon: Properly fix the generic IO helpers (Mark Langsdorf) [2178301]
+- regmap: trace: Remove unneeded blank lines (Mark Langsdorf) [2178301]
+- regmap: trace: Remove explicit castings (Mark Langsdorf) [2178301]
+- regmap: trace: Remove useless check for NULL for bulk ops (Mark Langsdorf) [2178301]
+- PM: wakeup: Add extra debugging statement for multiple active IRQs (Mark Langsdorf) [2178301]
+- devres: Slightly optimize alloc_dr() (Mark Langsdorf) [2178301]
+- drivers: base: Print error code on synthetic uevent failure (Mark Langsdorf) [2178301]
+- class: use IS_ERR_OR_NULL() helper in class_unregister() (Mark Langsdorf) [2178301]
+- regmap: introduce value tracing for regmap bulk operations (Mark Langsdorf) [2178301]
+- regmap: mmio: Fix MMIO accessors to avoid talking to IO port (Mark Langsdorf) [2178301]
+- regmap: mmio: Introduce IO accessors that can talk to IO port (Mark Langsdorf) [2178301]
+- regmap: mmio: Get rid of broken 64-bit IO (Mark Langsdorf) [2178301]
+- regmap: mmio: Remove mmio_relaxed member from context (Mark Langsdorf) [2178301]
+- thunderbolt: Mask ring interrupt on Intel hardware as well (Desnes Nunes) [2216483]
+- thunderbolt: Clear registers properly when auto clear isn't in use (Desnes Nunes) [2216483]
+- dt-bindings: usb: fsa4480: Use generic node name (Desnes Nunes) [2216483]
+- media: Revert "media: uvcvideo: Set unique vdev name based in type" (Desnes Nunes) [2216483]
+- media: uvcvideo: Don't expose unsupported formats to userspace (Desnes Nunes) [2216483]
+- usb: typec: altmodes/displayport: Fix configure initial pin assignment (Desnes Nunes) [2216483]
+- xhci: Free the command allocated for setting LPM if we return early (Desnes Nunes) [2216483]
+- xhci: also avoid the XHCI_ZERO_64B_REGS quirk with a passthrough iommu (Desnes Nunes) [2216483]
+- USB: serial: option: add Quectel RM500U-CN modem (Desnes Nunes) [2216483]
+- thunderbolt: Rename shadowed variables bit to interrupt_bit and auto_clear_bit (Desnes Nunes) [2216483]
+- thunderbolt: Disable interrupt auto clear for rings (Desnes Nunes) [2216483]
+- thunderbolt: Use const qualifier for `ring_interrupt_index` (Desnes Nunes) [2216483]
+- uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2 (Desnes Nunes) [2216483]
+- USB: serial: option: add Telit FE990 compositions (Desnes Nunes) [2216483]
+- USB: serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs (Desnes Nunes) [2216483]
+- thunderbolt: Use scale field when allocating USB3 bandwidth (Desnes Nunes) [2216483]
+- thunderbolt: Limit USB3 bandwidth of certain Intel USB4 host routers (Desnes Nunes) [2216483]
+- thunderbolt: Call tb_check_quirks() after initializing adapters (Desnes Nunes) [2216483]
+- thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access (Desnes Nunes) [2216483]
+- thunderbolt: Fix memory leak in margining (Desnes Nunes) [2216483]
+- usb: typec: tcpm: fix warning when handle discover_identity message (Desnes Nunes) [2216483]
+- usb: typec: tcpm: fix create duplicate source-capabilities file (Desnes Nunes) [2216483]
+- usb: ucsi_acpi: Increase the command completion timeout (Desnes Nunes) [2216483]
+- usb: ucsi: Fix ucsi->connector race (Desnes Nunes) [2216483]
+- usb: ucsi: Fix NULL pointer deref in ucsi_connector_change() (Desnes Nunes) [2216483]
+- thunderbolt: Add quirk to disable CLx (Desnes Nunes) [2216483]
+- usb: typec: pd: Add higher capability sysfs for sink PDO (Desnes Nunes) [2216483]
+- usb: typec: pd: Remove usb_suspend_supported sysfs from sink PDO (Desnes Nunes) [2216483]
+- xhci: host: potential NULL dereference in xhci_generic_plat_probe() (Desnes Nunes) [2216483]
+- media: usb: siano: Fix warning due to null work_func_t function pointer (Desnes Nunes) [2216483]
+- media: usb: siano: Fix use after free bugs caused by do_submit_urb (Desnes Nunes) [2216483]
+- media: usb: dvb-usb-v2: af9015.c: return 0 instead of 'ret'. (Desnes Nunes) [2216483]
+- dt-bindings: usb: convert fcs,fusb302.txt to yaml (Desnes Nunes) [2216483]
+- dt-bindings: usb: fusb302: Remove deprecated properties (Desnes Nunes) [2216483]
+- usb: uvc: Enumerate valid values for color matching (Desnes Nunes) [2216483]
+- USB: ene_usb6250: Allocate enough memory for full object (Desnes Nunes) [2216483]
+- USB: uhci: fix memory leak with using debugfs_lookup() (Desnes Nunes) [2216483]
+- USB: ULPI: fix memory leak with using debugfs_lookup() (Desnes Nunes) [2216483]
+- USB: serial: option: add support for VW/Skoda "Carstick LTE" (Desnes Nunes) [2216483]
+- usb: remove the dead USB_OHCI_SH option (Desnes Nunes) [2216483]
+- xhci: decouple usb2 port resume and get_port_status request handling (Desnes Nunes) [2216483]
+- xhci: clear usb2 resume related variables in one place. (Desnes Nunes) [2216483]
+- xhci: rename resume_done to resume_timestamp (Desnes Nunes) [2216483]
+- xhci: Pass port structure as parameter to xhci_disable_port(). (Desnes Nunes) [2216483]
+- xhci: move port specific items such as state completions to port structure (Desnes Nunes) [2216483]
+- xhci: pass port pointer as parameter to xhci_set_port_power() (Desnes Nunes) [2216483]
+- xhci: cleanup xhci_hub_control port references (Desnes Nunes) [2216483]
+- xhci: add helpers for enabling and disabling interrupters (Desnes Nunes) [2216483]
+- xhci: Refactor interrupter code for initial multi interrupter support. (Desnes Nunes) [2216483]
+- xhci: remove xhci_test_trb_in_td_math early development check (Desnes Nunes) [2216483]
+- xhci: fix event ring segment table related masks and variables in header (Desnes Nunes) [2216483]
+- USB: core: Don't hold device lock while reading the "descriptors" sysfs file (Desnes Nunes) [2216483]
+- usb: early: xhci-dbc: Use memcpy_and_pad() (Desnes Nunes) [2216483]
+- usb: early: xhci-dbc: Optimize early_xdbc_write() (Desnes Nunes) [2216483]
+- usb: early: xhci-dbc: Fix a potential out-of-bound memory access (Desnes Nunes) [2216483]
+- Documentation: usb: correct spelling (Desnes Nunes) [2216483]
+- docs: usb: convert documents to ReST (Desnes Nunes) [2216483]
+- Documentation/usb: Fix typo (Desnes Nunes) [2216483]
+- USB: serial: clean up kl5kusb105 documentation (Desnes Nunes) [2216483]
+- usb: uvc: use v4l2_fill_fmtdesc instead of open coded format name (Desnes Nunes) [2216483]
+- usb: uvc: make uvc_format_desc table const (Desnes Nunes) [2216483]
+- usb: uvc: move uvc_fmts and uvc_format_by_guid to own compile unit (Desnes Nunes) [2216483]
+- usb: uvc: move media/v4l2-uvc.h to usb/uvc.h (Desnes Nunes) [2216483]
+- media: uvcvideo: Add GUID for BGRA/X 8:8:8:8 (Desnes Nunes) [2216483]
+- usb: gadget: uvc: add v4l2 try_format api call (Desnes Nunes) [2216483]
+- usb: gadget: uvc: add v4l2 enumeration api calls (Desnes Nunes) [2216483]
+- usb: gadget: uvc: allow for application to cleanly shutdown (Desnes Nunes) [2216483]
+- usb: gadget: uvc: rename function to be more consistent (Desnes Nunes) [2216483]
+- usb: gadget: uvc: fix multiple opens (Desnes Nunes) [2216483]
+- thunderbolt: Add missing kernel-doc comment to tb_tunnel_maximum_bandwidth() (Desnes Nunes) [2216483]
+- thunderbolt: Handle bandwidth allocation mode enablement notification (Desnes Nunes) [2216483]
+- xhci: split out rcar/rz support from xhci-plat.c (Desnes Nunes) [2216483]
+- usb: host: xhci-rcar: Use xhci_plat_priv.quirks instead of code settings (Desnes Nunes) [2216483]
+- usb: host: xhci-plat: Remove useless DMA-32 fallback configuration (Desnes Nunes) [2216483]
+- usb: host: xhci-plat: Add reset support (Desnes Nunes) [2216483]
+- usb: host: xhci-plat: Improve clock handling in probe() (Desnes Nunes) [2216483]
+- dt-bindings: usb: Convert Marvell Orion EHCI to DT schema (Desnes Nunes) [2216483]
+- dt-bindings: usb: Convert OMAP OHCI/EHCI bindings to schema (Desnes Nunes) [2216483]
+- dt-bindings: usb: Convert multiple "usb-ohci" bindings to DT schema (Desnes Nunes) [2216483]
+- dt-bindings: usb: generic-ohci: Document dr_mode property (Desnes Nunes) [2216483]
+- dt-bindings: usb: generic-ehci: Document dr_mode property (Desnes Nunes) [2216483]
+- dt-bindings: ehci/ohci: Allow iommus property (Desnes Nunes) [2216483]
+- dt-bindings: usb: generic-ohci: Add missing compatible strings (Desnes Nunes) [2216483]
+- dt-bindings: usb: generic-ehci: Add missing compatible strings (Desnes Nunes) [2216483]
+- dt-bindings: Fix incorrect 'reg' property sizes (Desnes Nunes) [2216483]
+- dt-bindings: usb: ehci: Add missing 2nd register region (Desnes Nunes) [2216483]
+- usb: typec: tcpm: Remove altmode active state updates (Desnes Nunes) [2216483]
+- usb: typec: altmodes/displayport: Update active state (Desnes Nunes) [2216483]
+- usb: typec: mux: Introduce GPIO-based SBU mux (Desnes Nunes) [2216483]
+- redhat: configs: Add unset CONFIG_TYPEC_MUX_GPIO_SBU option (Desnes Nunes) [2216483]
+- usb: typec: mux: Add On Semi fsa4480 driver (Desnes Nunes) [2216483]
+- dt-bindings: usb: Add binding for fcs,fsa4480 (Desnes Nunes) [2216483]
+- dt-bindings: usb: Introduce GPIO-based SBU mux (Desnes Nunes) [2216483]
+- usb: host: ehci-fsl: Use DRV_NAME (Desnes Nunes) [2216483]
+- usb: typec: maxim_contaminant: Implement check_contaminant callback (Desnes Nunes) [2216483]
+- usb: typec: tcpci: Add callback for evaluating contaminant presence (Desnes Nunes) [2216483]
+- usb: typec: tcpm: Add callbacks to mitigate wakeups due to contaminant (Desnes Nunes) [2216483]
+- usb: typec: Make bus switch code retimer-aware (Desnes Nunes) [2216483]
+- usb: typec: retimer: Use device type for matching (Desnes Nunes) [2216483]
+- usb: typec: Add wrapper for bus switch set code (Desnes Nunes) [2216483]
+- usb: typec: Add retimer handle to port altmode (Desnes Nunes) [2216483]
+- usb: typec: tipd: Support wakeup (Desnes Nunes) [2216483]
+- dt-bindings: usb: tps6598x: Add wakeup property (Desnes Nunes) [2216483]
+- USB: fix memory leak with using debugfs_lookup() (Desnes Nunes) [2216483]
+- usb: typec: intel_pmc_mux: Deduplicate ACPI matching in probe (Desnes Nunes) [2216483]
+- usb: typec: intel_pmc_mux: Don't leak the ACPI device reference count (Desnes Nunes) [2216483]
+- usb: typec: tcpci: Request IRQ with IRQF_SHARED (Desnes Nunes) [2216483]
+- USB: Improve usb_fill_* documentation (Desnes Nunes) [2216483]
+- usb: typec: hd3ss3220: Add polling support (Desnes Nunes) [2216483]
+- dt-bindings: usb: ti,hd3ss3220: Update interrupt property as optional (Desnes Nunes) [2216483]
+- dt-bindings: usb: convert ti,hd3ss3220 bindings to json-schema (Desnes Nunes) [2216483]
+- dt-bindings: Convert usb-connector to YAML format. (Desnes Nunes) [2216483]
+- dt-bindings: usb: rt1711h: Add connector bindings (Desnes Nunes) [2216483]
+- dt-bindings: usb: hd3ss3220 device tree binding document (Desnes Nunes) [2216483]
+- thunderbolt: Add support for DisplayPort bandwidth allocation mode (Desnes Nunes) [2216483]
+- thunderbolt: Include the additional DP IN double word in debugfs dump (Desnes Nunes) [2216483]
+- thunderbolt: Add functions to support DisplayPort bandwidth allocation mode (Desnes Nunes) [2216483]
+- thunderbolt: Increase timeout of DP OUT adapter handshake (Desnes Nunes) [2216483]
+- thunderbolt: Take CL states into account when waiting for link to come up (Desnes Nunes) [2216483]
+- thunderbolt: Improve debug logging in tb_available_bandwidth() (Desnes Nunes) [2216483]
+- thunderbolt: Log DP adapter type (Desnes Nunes) [2216483]
+- thunderbolt: Use decimal port number in control and tunnel logs too (Desnes Nunes) [2216483]
+- media: uvcvideo: Silence memcpy() run-time false positive warnings (Desnes Nunes) [2216483]
+- media: uvcvideo: Quirk for autosuspend in Logitech B910 and C910 (Desnes Nunes) [2216483]
+- media: uvcvideo: Fix race condition with usb_kill_urb (Desnes Nunes) [2216483]
+- media: uvcvideo: Use standard names for menus (Desnes Nunes) [2216483]
+- media: uvcvideo: Fix power line control for Lenovo Integrated Camera (Desnes Nunes) [2216483]
+- media: uvcvideo: Add a quirk to force GEO GC6500 Camera bits-per-pixel value (Desnes Nunes) [2216483]
+- media: v4l: common: Fix naming of v4l2_get_link_rate (Desnes Nunes) [2216483]
+- media: ipu3-cio2: Use v4l2_get_link_freq helper (Desnes Nunes) [2216483]
+- media: ipu3-cio2: Update Copyright year and fix indentation issues (Desnes Nunes) [2216483]
+- media: v4l: Add a helper for obtaining the link frequency (Desnes Nunes) [2216483]
+- media: v4l2-common: add RGB565 and RGB55 to v4l2_format_info (Desnes Nunes) [2216483]
+- media: v4l2-common: add pixel encoding support (Desnes Nunes) [2216483]
+- media: v4l2-common: add support for new RGB32 pixelformats (Desnes Nunes) [2216483]
+- media: v4l2-common: add bayer formats in v4l2_format_info (Desnes Nunes) [2216483]
+- media: v4l2-common: Add an helper to apply frmsize constraints (Desnes Nunes) [2216483]
+- media: v4l2-common: Fix v4l2_fill_pixfmt[_mp]() prototypes (Desnes Nunes) [2216483]
+- media: Introduce helpers to fill pixel format structs (Desnes Nunes) [2216483]
+- media: uvcvideo: Refactor power_line_frequency_controls_limited (Desnes Nunes) [2216483]
+- media: uvcvideo: Refactor uvc_ctrl_mappings_uvcXX (Desnes Nunes) [2216483]
+- media: uvcvideo: Implement mask for V4L2_CTRL_TYPE_MENU (Desnes Nunes) [2216483]
+- media: uvcvideo: Extend documentation of uvc_video_clock_decode() (Desnes Nunes) [2216483]
+- media: uvcvideo: Refactor __uvc_ctrl_add_mapping (Desnes Nunes) [2216483]
+- media: uvcvideo: Undup use uvc_endpoint_max_bpi() code (Desnes Nunes) [2216483]
+- media: uvcvideo: Simplify uvc_endpoint_max_bpi() (Desnes Nunes) [2216483]
+- media: uvcvideo: Fix memory leak if uvc_ctrl_add_mapping fails (Desnes Nunes) [2216483]
+- media: uvcvideo: Avoid returning invalid controls (Desnes Nunes) [2216483]
+- media: uvcvideo: Avoid invalid memory access (Desnes Nunes) [2216483]
+- media: uvcvideo: Set the colorspace as sRGB if undefined (Desnes Nunes) [2216483]
+- media: uvcvideo: Fix memory leak of object map on error exit path (Desnes Nunes) [2216483]
+- media: uvcvideo: Fix handling on Bitmask controls (Desnes Nunes) [2216483]
+- media: uvcvideo: Do not return positive errors in uvc_query_ctrl() (Desnes Nunes) [2216483]
+- media: uvcvideo: Return -EACCES for Wrong state error (Desnes Nunes) [2216483]
+- media: uvcvideo: Improve error logging in uvc_query_ctrl() (Desnes Nunes) [2216483]
+- media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible() (Desnes Nunes) [2216483]
+- media: uvcvideo: Factor out usb_string() calls (Desnes Nunes) [2216483]
+- media: uvcvideo: Limit power line control for Acer EasyCamera (Desnes Nunes) [2216483]
+- media: uvcvideo: Recover stalled ElGato devices (Desnes Nunes) [2216483]
+- media: uvcvideo: Remove void casting for the status endpoint (Desnes Nunes) [2216483]
+- media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds. (Desnes Nunes) [2216483]
+- media: uvcvideo: Fix usage of symbolic permissions to octal (Desnes Nunes) [2216483]
+- media: uvcvideo: Fix assignment inside if condition (Desnes Nunes) [2216483]
+- media: uvcvideo: Fix missing newline after declarations (Desnes Nunes) [2216483]
+- media: uvcvideo: Handle errors from calls to usb_string (Desnes Nunes) [2216483]
+- media: uvcvideo: Only create input devs if hw supports it (Desnes Nunes) [2216483]
+- media: uvcvideo: Handle cameras with invalid descriptors (Desnes Nunes) [2216483]
+- media: uvcvideo: Remove format descriptions (Desnes Nunes) [2216483]
+- media: docs: Document the behaviour of uvcvideo driver (Desnes Nunes) [2216483]
+- media: uvcvideo: Set error_idx during ctrl_commit errors (Desnes Nunes) [2216483]
+- media: uvcvideo: Check controls flags before accessing them (Desnes Nunes) [2216483]
+- media: uvcvideo: Use control names from framework (Desnes Nunes) [2216483]
+- media: uvcvideo: Set unique vdev name based in type (Desnes Nunes) [2216483]
+- media: uvcvideo: Use dev->name for querycap() (Desnes Nunes) [2216483]
+- media: uvcvideo: Add support for V4L2_CTRL_TYPE_CTRL_CLASS (Desnes Nunes) [2216483]
+- media: uvcvideo: Set capability in s_param (Desnes Nunes) [2216483]
+- media: uvcvideo: Remove s_ctrl and g_ctrl (Desnes Nunes) [2216483]
+- media: v4l2-ioctl: S_CTRL output the right value (Desnes Nunes) [2216483]
+- media: uvcvideo: Do not check for V4L2_CTRL_WHICH_DEF_VAL (Desnes Nunes) [2216483]
+- media: pvrusb2: Do not check for V4L2_CTRL_WHICH_DEF_VAL (Desnes Nunes) [2216483]
+- media: v4l2-ioctl: Fix check_ext_ctrls (Desnes Nunes) [2216483]
+- net: thunderbolt: Add tracepoints (Desnes Nunes) [2216483]
+- net: thunderbolt: Add debugging when sending/receiving control packets (Desnes Nunes) [2216483]
+- net: thunderbolt: Move into own directory (Desnes Nunes) [2216483]
+- xhci: Convert to use list_count_nodes() (Desnes Nunes) [2216483]
+- usb: typec: ucsi: Register USB Power Delivery Capabilities (Desnes Nunes) [2216483]
+- xhci: Add hub_control to xhci_driver_overrides (Desnes Nunes) [2216483]
+- xhci: hub: export symbol on xhci_hub_control (Desnes Nunes) [2216483]
+- usb: typec: altmodes/displayport: Add hpd sysfs attribute (Desnes Nunes) [2216483]
+- usb: typec: altmodes/displayport: Notify drm subsys of (Desnes Nunes) [2216483]
+- usb: typec: altmodes/displayport: Make dp_altmode_notify() more generic (Desnes Nunes) [2216483]
+- thunderbolt: Refactor tb_acpi_add_link() (Desnes Nunes) [2216483]
+- thunderbolt: Use correct type in tb_port_is_clx_enabled() prototype (Desnes Nunes) [2216483]
+
+* Sun Jul 16 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-503.el8]
+- s390/diag: fix display of diagnose call statistics (Tobias Huschle) [2187995]
+- rseq, ptrace: Add PTRACE_GET_RSEQ_CONFIGURATION request (Adrian Reber) [2218454]
+- locking/rwbase: Mitigate indefinite writer starvation (Eder Zulian) [2077282]
+- fbcon: Check font dimension limits (Ricardo Robaina) [2213493] {CVE-2023-3161}
+- libnvdimm: Notify disk drivers to revalidate region read-only (Jeff Moyer) [1999673]
+- nvdimm/region: always show the 'align' attribute (Jeff Moyer) [1999673]
+- nvdimm/region: Fix default alignment for small regions (Jeff Moyer) [1999673]
+- libnvdimm/region: Allow setting align attribute on regions without mappings (Jeff Moyer) [1999673]
+- KVM: SVM: Return the local "r" variable from svm_set_msr() (Emanuele Giuseppe Esposito) [2124598]
+- KVM: x86: Virtualize FLUSH_L1D and passthrough MSR_IA32_FLUSH_CMD (Emanuele Giuseppe Esposito) [2124598]
+- KVM: x86: Move MSR_IA32_PRED_CMD WRMSR emulation to common code (Emanuele Giuseppe Esposito) [2124598]
+- KVM: SVM: Passthrough MSR_IA32_PRED_CMD based purely on host+guest CPUID (Emanuele Giuseppe Esposito) [2124598]
+- KVM: VMX: Passthrough MSR_IA32_PRED_CMD based purely on host+guest CPUID (Emanuele Giuseppe Esposito) [2124598]
+- KVM: x86: Revert MSR_IA32_FLUSH_CMD.FLUSH_L1D enabling (Emanuele Giuseppe Esposito) [2124598]
+- kvm: x86: Advertise FLUSH_L1D to user space (Emanuele Giuseppe Esposito) [2124598]
+- kvm: svm: Add IA32_FLUSH_CMD guest support (Emanuele Giuseppe Esposito) [2124598]
+- kvm: vmx: Add IA32_FLUSH_CMD guest support (Emanuele Giuseppe Esposito) [2124598]
+- rtc: lib_test: add MODULE_LICENSE (Lenny Szubowicz) [2207975]
+- rtc: efi: Remove the repeated module alias (Lenny Szubowicz) [2207975]
+- efi/efivars: Set generic ops before loading SSDT (Lenny Szubowicz) [2207975]
+- efi: efibc: check for efivars write capability (Lenny Szubowicz) [2207975]
+- efi/efivars: Expose RT service availability via efivars abstraction (Lenny Szubowicz) [2207975]
+- integrity: Check properly whether EFI GetVariable() is available (Lenny Szubowicz) [2207975]
+- x86/ima: Use EFI GetVariable only when available (Lenny Szubowicz) [2207975]
+- efi: Use EFI ResetSystem only when available (Lenny Szubowicz) [2207975]
+- scsi: iscsi: Use EFI GetVariable only when available (Lenny Szubowicz) [2207975]
+- infiniband: hfi1: Use EFI GetVariable only when available (Lenny Szubowicz) [2207975]
+- efi: Register EFI rtc platform device only when available (Lenny Szubowicz) [2207975]
+- efi: Use more granular check for availability for variable services (Lenny Szubowicz) [2207975]
+- efi: mark all efi runtime services as unsupported on non-efi boot (Lenny Szubowicz) [2207975]
+- efi: Add support for EFI_RT_PROPERTIES table (Lenny Szubowicz) [2207975]
+- crypto: ccp - Add support for PCI device 0x156E (Vladis Dronov) [2180960]
+- crypto: ccp - Add support for PCI device 0x17E0 (Vladis Dronov) [2180960]
+- crypto: ccp - Validate that platform access mailbox registers are declared (Vladis Dronov) [2180960]
+- crypto: ccp - Use lower 8 bytes to communicate with doorbell command register (Vladis Dronov) [2180960]
+- crypto: ccp - Return doorbell status code as an argument (Vladis Dronov) [2180960]
+- crypto: ccp - Bump up doorbell debug message to error (Vladis Dronov) [2180960]
+- crypto: ccp - Drop extra doorbell checks (Vladis Dronov) [2180960]
+- crypto: ccp - Don't initialize CCP for PSP 0x1649 (Vladis Dronov) [2180960]
+- crypto: ccp - Clear PSP interrupt status register before calling handler (Vladis Dronov) [2180960]
+- crypto: ccp - Add support for ringing a platform doorbell (Vladis Dronov) [2180960]
+- crypto: ccp - Enable platform access interface on client PSP parts (Vladis Dronov) [2180960]
+- crypto: ccp - Add support for an interface for platform features (Vladis Dronov) [2180960]
+- crypto: ccp - Move some PSP mailbox bit definitions into common header (Vladis Dronov) [2180960]
+- crypto: ccp - Add a header for multiple drivers to use `__psp_pa` (Vladis Dronov) [2180960]
+- crypto: ccp - Drop TEE support for IRQ handler (Vladis Dronov) [2180960]
+- crypto: ccp: Get rid of __sev_platform_init_locked()'s local function pointer (Vladis Dronov) [2180960]
+- crypto: ccp - Name -1 return value as SEV_RET_NO_FW_CALL (Vladis Dronov) [2180960]
+- crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware (Vladis Dronov) [2180960]
+- crypto: ccp - Add a firmware definition for EPYC gen 4 processors (Vladis Dronov) [2180960]
+- crypto: ccp - Provide MMIO register naming for documenation (Vladis Dronov) [2180960]
+- redhat/configs: enable CONFIG_INTEL_UNCORE_FREQ_CONTROL for x86_64 (David Arcari) [2156826]
+- platform/x86/intel-uncore-freq: Return error on write frequency (David Arcari) [2156826]
+- platform/x86: intel-uncore-freq: Add client processors (David Arcari) [2156826]
+- platform/x86: intel-uncore-freq: add Emerald Rapids support (David Arcari) [2156826]
+- platform/x86: intel-uncore-freq: Use sysfs_emit() to instead of scnprintf() (David Arcari) [2156826]
+- platform/x86: intel-uncore-freq: Prevent driver loading in guests (David Arcari) [2156826]
+- platform/x86: intel-uncore-freq: fix uncore_freq_common_init() error codes (David Arcari) [2156826]
+- platform/x86/intel-uncore-freq: Split common and enumeration part (David Arcari) [2156826]
+- platform/x86/intel/uncore-freq: Display uncore current frequency (David Arcari) [2156826]
+- platform/x86/intel/uncore-freq: Use sysfs API to create attributes (David Arcari) [2156826]
+- platform/x86/intel/uncore-freq: Move to uncore-frequency folder (David Arcari) [2156826]
+- platform/x86: intel-uncore-frequency: use default_groups in kobj_type (David Arcari) [2156826]
+- platform/x86: intel-uncore-frequency: Move to intel sub-directory (David Arcari) [2156826]
+- platform/x86/intel-uncore-freq: Add Sapphire Rapids server support (David Arcari) [2156826]
+- platform/x86/intel-uncore-freq: make uncore_root_kobj static (David Arcari) [2156826]
+- platform/x86: Convert to new CPU match macros (David Arcari) [2156826]
+- platform/x86/intel-uncore-freq: Add release callback (David Arcari) [2156826]
+- platform/x86/intel-uncore-freq: Fix static checker issue and potential race condition (David Arcari) [2156826]
+- MAINTAINERS: Update for the intel uncore frequency control (David Arcari) [2156826]
+- platform/x86: Add support for Uncore frequency control (David Arcari) [2156826]
+
+* Tue Jul 11 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-502.el8]
+- ceph: fix use-after-free bug for inodes when flushing capsnaps (Xiubo Li) [2209299]
+- net/tls: tls_is_tx_ready() checked list_entry (Sabrina Dubroca) [2212176] {CVE-2023-1075}
+- Revert "RDMA/umem: remove FOLL_FORCE usage" (Kamal Heib) [2210153 2210849]
+- Revert "RDMA/core: Refactor rdma_bind_addr" (Kamal Heib) [2212211 2212217]
+- cpufreq: intel_pstate: Fix scaling for hybrid-capable systems with disabled E-cores (David Arcari) [2221276]
+- netfilter: nf_tables: fix scheduling-while-atomic splat (Phil Sutter) [2217731]
+- netfilter: nf_tables: add rescheduling points during loop detection walks (Phil Sutter) [2217731]
+- ipv6: Remove dependency of ipv6_frag_thdr_truncated on ipv6 module (Phil Sutter) [2217794]
+- ipv6/netfilter: Discard first fragment not including all headers (Phil Sutter) [2217794]
+- s390/ipl: add eckd dump support (Tobias Huschle) [2159695]
+- net/smc: fix document build WARNING from smc-sysctl.rst (Tobias Huschle) [2159734]
+- s390/ism: switch from 'pci_' to 'dma_' API (Tobias Huschle) [2159734]
+- net/smc: Fix device de-init sequence (Tobias Huschle) [2159734]
+- net/smc: fix deadlock triggered by cancel_delayed_work_syn() (Tobias Huschle) [2159734]
+- net/smc: fix NULL sndbuf_desc in smc_cdc_tx_handler() (Tobias Huschle) [2159734]
+- net/smc: fix fallback failed while sendmsg with fastopen (Tobias Huschle) [2159734]
+- net/smc: fix application data exception (Tobias Huschle) [2159734]
+- net/smc: replace mutex rmbs_lock and sndbufs_lock with rw_semaphore (Tobias Huschle) [2159734]
+- net/smc: reduce unnecessary blocking in smcr_lgr_reg_rmbs() (Tobias Huschle) [2159734]
+- net/smc: use read semaphores to reduce unnecessary blocking in smc_buf_create() & smcr_buf_unuse() (Tobias Huschle) [2159734]
+- net/smc: llc_conf_mutex refactor, replace it with rw_semaphore (Tobias Huschle) [2159734]
+- net: add missing includes of linux/splice.h (Tobias Huschle) [2159734]
+- net/smc: De-tangle ism and smc device initialization (Tobias Huschle) [2159734]
+- s390/ism: Consolidate SMC-D-related code (Tobias Huschle) [2159734]
+- net/smc: Separate SMC-D and ISM APIs (Tobias Huschle) [2159734]
+- net/smc: Register SMC-D as ISM client (Tobias Huschle) [2159734]
+- net/ism: Add new API for client registration (Tobias Huschle) [2159734]
+- s390/ism: Introduce struct ism_dmb (Tobias Huschle) [2159734]
+- net/ism: Add missing calls to disable bus-mastering (Tobias Huschle) [2159734]
+- net/smc: Terminate connections prior to device removal (Tobias Huschle) [2159734]
+- net/smc: Fix possible leaked pernet namespace in smc_init() (Tobias Huschle) [2159734]
+- net/smc: Fix an error code in smc_lgr_create() (Tobias Huschle) [2159734]
+- net/smc: Support SO_REUSEPORT (Tobias Huschle) [2159734]
+- net/smc: Introduce a specific sysctl for TEST_LINK time (Tobias Huschle) [2159734]
+- net/smc: Stop the CLC flow if no link to map buffers on (Tobias Huschle) [2159734]
+- net/smc: Fix possible access to freed memory in link clear (Tobias Huschle) [2159734]
+- net/smc: Remove redundant refcount increase (Tobias Huschle) [2159734]
+- net/smc: Enable module load on netlink usage (Tobias Huschle) [2159734]
+- net/smc: Pass on DMBE bit mask in IRQ handler (Tobias Huschle) [2159734]
+- s390/ism: Cleanups (Tobias Huschle) [2159734]
+- net/smc: Eliminate struct smc_ism_position (Tobias Huschle) [2159734]
+- tcp: Fix data-races around keepalive sysctl knobs. (Tobias Huschle) [2159734]
+- net/smc: Extend SMC-R link group netlink attribute (Tobias Huschle) [2159734]
+- net/smc: Allow virtually contiguous sndbufs or RMBs for SMC-R (Tobias Huschle) [2159734]
+- net/smc: Use sysctl-specified types of buffers in new link group (Tobias Huschle) [2159734]
+- net/smc: Introduce a sysctl for setting SMC-R buffer type (Tobias Huschle) [2159734]
+- net/smc: optimize for smc_sndbuf_sync_sg_for_device and smc_rmb_sync_sg_for_cpu (Tobias Huschle) [2159734]
+- net/smc: remove redundant dma sync ops (Tobias Huschle) [2159734]
+- net/smc: fixes for converting from "struct smc_cdc_tx_pend **" to "struct smc_wr_tx_pend_priv *" (Tobias Huschle) [2159734]
+- net/smc: set ini->smcrv2.ib_dev_v2 to NULL if SMC-Rv2 is unavailable (Tobias Huschle) [2159734]
+- net/smc: postpone sk_refcnt increment in connect() (Tobias Huschle) [2159734]
+- net/smc: rdma write inline if qp has sufficient inline space (Tobias Huschle) [2159734]
+- net/smc: send cdc msg inline if qp has sufficient inline space (Tobias Huschle) [2159734]
+- net/smc: align the connect behaviour with TCP (Tobias Huschle) [2159734]
+- net/smc: non blocking recvmsg() return -EAGAIN when no data and signal_pending (Tobias Huschle) [2159734]
+- net/smc: Fix slab-out-of-bounds issue in fallback (Tobias Huschle) [2159734]
+- net/smc: Only save the original clcsock callback functions (Tobias Huschle) [2159734]
+- net/smc: sync err code when tcp connection was refused (Tobias Huschle) [2159734]
+- net/smc: Fix sock leak when release after smc_shutdown() (Tobias Huschle) [2159734]
+- net/smc: Send out the remaining data in sndbuf before close (Tobias Huschle) [2159734]
+- net/smc: fix a memory leak in smc_sysctl_net_exit() (Tobias Huschle) [2159734]
+- net/smc: fix -Wmissing-prototypes warning when CONFIG_SYSCTL not set (Tobias Huschle) [2159734]
+- net/smc: fix compile warning for smc_sysctl (Tobias Huschle) [2159734]
+- net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error cause by server (Tobias Huschle) [2159734]
+- net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error generated by client (Tobias Huschle) [2159734]
+- net: smc: fix different types in min() (Tobias Huschle) [2159734]
+- net/smc: don't send in the BH context if sock_owned_by_user (Tobias Huschle) [2159734]
+- net/smc: correct settings of RMB window update limit (Tobias Huschle) [2159734]
+- net/smc: send directly on setting TCP_NODELAY (Tobias Huschle) [2159734]
+- net/smc: add sysctl for autocorking (Tobias Huschle) [2159734]
+- net/smc: add autocorking support (Tobias Huschle) [2159734]
+- net/smc: add sysctl interface for SMC (Tobias Huschle) [2159734]
+- x86/resctrl: Clear staged_config[] before and after it is used (Prarit Bhargava) [1989284]
+- x86/resctl: fix scheduler confusion with 'current' (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix a silly -Wunused-but-set-variable warning (Prarit Bhargava) [1989284]
+- x86/resctrl: Add interface to write mbm_local_bytes_config (Prarit Bhargava) [1989284]
+- x86/resctrl: Add interface to write mbm_total_bytes_config (Prarit Bhargava) [1989284]
+- x86/resctrl: Add interface to read mbm_local_bytes_config (Prarit Bhargava) [1989284]
+- x86/resctrl: Add interface to read mbm_total_bytes_config (Prarit Bhargava) [1989284]
+- x86/resctrl: Support monitor configuration (Prarit Bhargava) [1989284]
+- x86/resctrl: Add __init attribute to rdt_get_mon_l3_config() (Prarit Bhargava) [1989284]
+- x86/resctrl: Detect and configure Slow Memory Bandwidth Allocation (Prarit Bhargava) [1989284]
+- x86/cpufeatures: Add Bandwidth Monitoring Event Configuration feature flag (Prarit Bhargava) [1989284]
+- x86/cpufeatures: Add Slow Memory Bandwidth Allocation feature flag (Prarit Bhargava) [1989284]
+- x86/resctrl: Include new features in command line options (Prarit Bhargava) [1989284]
+- x86/resctrl: Add a new resource type RDT_RESOURCE_SMBA (Prarit Bhargava) [1989284]
+- x86/resctrl: Replace smp_call_function_many() with on_each_cpu_mask() (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix event counts regression in reused RMIDs (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix task CLOSID/RMID update race (Prarit Bhargava) [1989284]
+- x86/resctrl: Move MSR defines into msr-index.h (Prarit Bhargava) [1989284]
+- x86/resctrl: Remove arch_has_empty_bitmaps (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix min_cbm_bits for AMD (Prarit Bhargava) [1989284]
+- x86/resctrl: Make resctrl_arch_rmid_read() return values in bytes (Prarit Bhargava) [1989284]
+- x86/resctrl: Add resctrl_rmid_realloc_limit to abstract x86's boot_cpu_data (Prarit Bhargava) [1989284]
+- x86/resctrl: Rename and change the units of resctrl_cqm_threshold (Prarit Bhargava) [1989284]
+- x86/resctrl: Move get_corrected_mbm_count() into resctrl_arch_rmid_read() (Prarit Bhargava) [1989284]
+- x86/resctrl: Move mbm_overflow_count() into resctrl_arch_rmid_read() (Prarit Bhargava) [1989284]
+- x86/resctrl: Pass the required parameters into resctrl_arch_rmid_read() (Prarit Bhargava) [1989284]
+- x86/resctrl: Abstract __rmid_read() (Prarit Bhargava) [1989284]
+- x86/resctrl: Allow per-rmid arch private storage to be reset (Prarit Bhargava) [1989284]
+- x86/resctrl: Add per-rmid arch private storage for overflow and chunks (Prarit Bhargava) [1989284]
+- x86/resctrl: Calculate bandwidth from the previous __mon_event_count() chunks (Prarit Bhargava) [1989284]
+- x86/resctrl: Allow update_mba_bw() to update controls directly (Prarit Bhargava) [1989284]
+- x86/resctrl: Remove architecture copy of mbps_val (Prarit Bhargava) [1989284]
+- x86/resctrl: Switch over to the resctrl mbps_val list (Prarit Bhargava) [1989284]
+- x86/resctrl: Create mba_sc configuration in the rdt_domain (Prarit Bhargava) [1989284]
+- x86/resctrl: Abstract and use supports_mba_mbps() (Prarit Bhargava) [1989284]
+- x86/resctrl: Remove set_mba_sc()s control array re-initialisation (Prarit Bhargava) [1989284]
+- x86/resctrl: Add domain offline callback for resctrl work (Prarit Bhargava) [1989284]
+- x86/resctrl: Group struct rdt_hw_domain cleanup (Prarit Bhargava) [1989284]
+- x86/resctrl: Add domain online callback for resctrl work (Prarit Bhargava) [1989284]
+- x86/resctrl: Merge mon_capable and mon_enabled (Prarit Bhargava) [1989284]
+- x86/resctrl: Kill off alloc_enabled (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix to restore to original value when re-enabling hardware prefetch register (Prarit Bhargava) [1989284]
+- x86: Replace cpumask_weight() with cpumask_empty() where appropriate (Prarit Bhargava) [1989284]
+- x86/resctrl: Remove redundant assignment to variable chunks (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix kfree() of the wrong type in domain_add_cpu() (Prarit Bhargava) [1989284]
+- x86/resctrl: Free the ctrlval arrays when domain_setup_mon_state() fails (Prarit Bhargava) [1989284]
+- x86/resctrl: Make resctrl_arch_get_config() return its value (Prarit Bhargava) [1989284]
+- x86/resctrl: Merge the CDP resources (Prarit Bhargava) [1989284]
+- x86/resctrl: Expand resctrl_arch_update_domains()'s msr_param range (Prarit Bhargava) [1989284]
+- x86/resctrl: Remove rdt_cdp_peer_get() (Prarit Bhargava) [1989284]
+- x86/resctrl: Merge the ctrl_val arrays (Prarit Bhargava) [1989284]
+- x86/resctrl: Calculate the index from the configuration type (Prarit Bhargava) [1989284]
+- x86/resctrl: Apply offset correction when config is staged (Prarit Bhargava) [1989284]
+- x86/resctrl: Make ctrlval arrays the same size (Prarit Bhargava) [1989284]
+- x86/resctrl: Pass configuration type to resctrl_arch_get_config() (Prarit Bhargava) [1989284]
+- x86/resctrl: Add a helper to read a closid's configuration (Prarit Bhargava) [1989284]
+- x86/resctrl: Rename update_domains() to resctrl_arch_update_domains() (Prarit Bhargava) [1989284]
+- x86/resctrl: Allow different CODE/DATA configurations to be staged (Prarit Bhargava) [1989284]
+- x86/resctrl: Group staged configuration into a separate struct (Prarit Bhargava) [1989284]
+- x86/resctrl: Move the schemata names into struct resctrl_schema (Prarit Bhargava) [1989284]
+- x86/resctrl: Add a helper to read/set the CDP configuration (Prarit Bhargava) [1989284]
+- x86/resctrl: Swizzle rdt_resource and resctrl_schema in pseudo_lock_region (Prarit Bhargava) [1989284]
+- x86/resctrl: Pass the schema to resctrl filesystem functions (Prarit Bhargava) [1989284]
+- x86/resctrl: Add resctrl_arch_get_num_closid() (Prarit Bhargava) [1989284]
+- x86/resctrl: Store the effective num_closid in the schema (Prarit Bhargava) [1989284]
+- x86/resctrl: Walk the resctrl schema list instead of an arch list (Prarit Bhargava) [1989284]
+- x86/resctrl: Label the resources with their configuration type (Prarit Bhargava) [1989284]
+- x86/resctrl: Pass the schema in info dir's private pointer (Prarit Bhargava) [1989284]
+- x86/resctrl: Add a separate schema list for resctrl (Prarit Bhargava) [1989284]
+- x86/resctrl: Split struct rdt_domain (Prarit Bhargava) [1989284]
+- x86/resctrl: Split struct rdt_resource (Prarit Bhargava) [1989284]
+- x86/resctrl: Include pid.h (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix kernel-doc in internal.h (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix kernel-doc in pseudo_lock.c (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix init const confusion (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix various typos in comments, take #2 (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix various typos in comments (Prarit Bhargava) [1989284]
+- x86/resctrl: Apply READ_ONCE/WRITE_ONCE to task_struct.{rmid,closid} (Prarit Bhargava) [1989284]
+- x86/resctrl: Use task_curr() instead of task_struct->on_cpu to prevent unnecessary IPI (Prarit Bhargava) [1989284]
+- x86/resctrl: Add printf attribute to log function (Prarit Bhargava) [1989284]
+- x86/resctrl: Don't move a task to the same resource group (Prarit Bhargava) [1989284]
+- x86/resctrl: Use an IPI instead of task_work_add() to update PQR_ASSOC MSR (Prarit Bhargava) [1989284]
+- x86/resctrl: Fix incorrect local bandwidth when mba_sc is enabled (Prarit Bhargava) [1989284]
+- x86/resctrl: Clean up unused function parameter in rmdir path (Prarit Bhargava) [1989284]
+- x86/resctrl: Add necessary kernfs_put() calls to prevent refcount leak (Prarit Bhargava) [1989284]
+- x86/resctrl: Remove superfluous kernfs_get() calls to prevent refcount leak (Prarit Bhargava) [1989284]
+- x86/resctrl: Constify kernfs_ops (Prarit Bhargava) [1989284]
+- x86/resctrl: Correct MBM total and local values (Prarit Bhargava) [1989284]
+- x86/include/asm/msr-index.h: Add IFS Array test bits (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Update IFS doc (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Implement Array BIST test (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Sysfs interface for Array BIST (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Introduce Array Scan test to IFS (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: IFS cleanup (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Reorganize driver data (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Separate ifs_pkg_auth from ifs_data (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Add missing kernel-doc entry (Prarit Bhargava) [1971937]
+- Revert "platform/x86/intel/ifs: Mark as BROKEN" (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Add current_batch sysfs entry (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Remove reload sysfs entry (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Add metadata validation (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Use generic microcode headers and functions (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Add metadata support (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Remove memory allocation from load path (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Remove image loading during init (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Return a more appropriate error code (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Remove unused selection (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Mark as BROKEN (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Add CPU_SUP_INTEL dependency (Prarit Bhargava) [1971937]
+- Documentation: In-Field Scan (Prarit Bhargava) [1971937]
+- redhat/configs: Add CONFIG_INTEL_IFS (Prarit Bhargava) [1971937]
+- redhat/configs: Add CONFIG_MICROCODE_LATE_LOADING (Prarit Bhargava) [1971937]
+- stop_machine: Add stop_core_cpuslocked() for per-core operations (Prarit Bhargava) [1971937]
+- trace: platform/x86/intel/ifs: Add trace point to track Intel IFS operations (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Add IFS sysfs interface (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Add scan test support (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Authenticate and copy to secured memory (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Check IFS Image sanity (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Read IFS firmware image (Prarit Bhargava) [1971937]
+- platform/x86/intel/ifs: Add stub driver for In-Field Scan (Prarit Bhargava) [1971937]
+- x86/msr-index: Define INTEGRITY_CAPABILITIES MSR (Prarit Bhargava) [1971937]
+- x86/microcode/core: Return an error only when necessary (Prarit Bhargava) [1971937]
+- x86/microcode/AMD: Fix mixed steppings support (Prarit Bhargava) [1971937]
+- x86/microcode/AMD: Add a @cpu parameter to the reloading functions (Prarit Bhargava) [1971937]
+- x86/microcode/amd: Remove load_microcode_amd()'s bsp parameter (Prarit Bhargava) [1971937]
+- x86/microcode: Allow only "1" as a late reload trigger value (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Print old and new revision during early boot (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Pass the microcode revision to print_ucode_info() directly (Prarit Bhargava) [1971937]
+- x86/microcode: Adjust late loading result reporting message (Prarit Bhargava) [1971937]
+- x86/microcode: Check CPU capabilities after late microcode update correctly (Prarit Bhargava) [1971937]
+- x86/microcode: Add a parameter to microcode_check() to store CPU capabilities (Prarit Bhargava) [1971937]
+- x86/microcode: Use the DEVICE_ATTR_RO() macro (Prarit Bhargava) [1971937]
+- x86/microcode/AMD: Handle multiple glued containers properly (Prarit Bhargava) [1971937]
+- x86/microcode/AMD: Rename a couple of functions (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Do not retry microcode reloading on the APs (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Do not print microcode revision and processor flags (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Use a reserved field for metasize (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Add hdr_type to intel_microcode_sanity_check() (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Reuse microcode_sanity_check() (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Use appropriate type in microcode_sanity_check() (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Reuse find_matching_signature() (Prarit Bhargava) [1971937]
+- x86/microcode: Drop struct ucode_cpu_info.valid (Prarit Bhargava) [1971937]
+- x86/microcode: Do some minor fixups (Prarit Bhargava) [1971937]
+- x86/microcode: Kill refresh_fw (Prarit Bhargava) [1971937]
+- x86/microcode: Simplify init path even more (Prarit Bhargava) [1971937]
+- x86/microcode: Rip out the subsys interface gunk (Prarit Bhargava) [1971937]
+- x86/microcode/AMD: Track patch allocation size explicitly (Prarit Bhargava) [1971937]
+- x86/microcode: Print previous version of microcode after reload (Prarit Bhargava) [1971937]
+- x86/microcode: Remove ->request_microcode_user() (Prarit Bhargava) [1971937]
+- misc: Mark MICROCODE_MINOR unused (Prarit Bhargava) [1971937]
+- x86/microcode: Remove unnecessary perf callback (Prarit Bhargava) [1971937]
+- x86/microcode: Taint and warn on late loading (Prarit Bhargava) [1971937]
+- x86/microcode: Default-disable late loading (Prarit Bhargava) [1971937]
+- x86/microcode: Rip out the OLD_INTERFACE (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Expose collect_cpu_info_early() for IFS (Prarit Bhargava) [1971937]
+- x86/cpu: Load microcode during restore_processor_state() (Prarit Bhargava) [1971937]
+- microcode: Replace zero-length arrays with flexible-array members (Prarit Bhargava) [1971937]
+- x86/microcode: Use the firmware_loader built-in API (Prarit Bhargava) [1971937]
+- firmware: Export firmware_request_builtin() (Prarit Bhargava) [1971937]
+- x86/microcode: Replace deprecated CPU-hotplug functions. (Prarit Bhargava) [1971937]
+- x86/microcode: Make microcode_init() static (Prarit Bhargava) [1971937]
+- x86/microcode/intel: Check patch signature before saving microcode for early loading (Prarit Bhargava) [1971937]
+- x86/microcode/amd: Remove unneeded break (Prarit Bhargava) [1971937]
+- x86/microcode: Do not select FW_LOADER (Prarit Bhargava) [1971937]
+- x86/microcode: Fix return value for microcode late loading (Prarit Bhargava) [1971937]
+- docs: fix broken documentation links (Prarit Bhargava) [1971937]
+
+* Tue Jul 04 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-501.el8]
+- x86/cpu: Add Xeon Emerald Rapids to list of CPUs that support PPIN (Prarit Bhargava) [2215040]
+- redhat: configs: increase CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE (Audra Mitchell) [2215423]
+- docs: admin-guide: Add information about intel_pstate active mode (Prarit Bhargava) [2216962]
+- net/sched: flower: fix possible OOB write in fl_set_geneve_opt() (Davide Caratti) [2214027] {CVE-2023-35788}
+- scsi: aacraid: Reply queue mapping to CPUs based on IRQ affinity (Tomas Henzl) [2160149]
+- cifs: missing null pointer check in cifs_mount (Ronnie Sahlberg) [2215018]
+- cpufreq: intel_pstate: Enable HWP IO boost for all servers (Prarit Bhargava) [2175625]
+- block: make sure local irq is disabled when calling __blkcg_rstat_flush (Ming Lei) [2208904]
+- blk-cgroup: Flush stats before releasing blkcg_gq (Ming Lei) [2208904]
+- scsi: storvsc: Always set no_report_opcodes (Cathy Avery) [2217552]
+- scsi: storvsc: Don't pass unused PFNs to Hyper-V host (Cathy Avery) [2217552]
+- scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file (Cathy Avery) [2217552]
+- dm thin: fix issue_discard to pass GFP_NOIO to __blkdev_issue_discard (Benjamin Marzinski) [2212240]
+- dm thin metadata: check fail_io before using data_sm (Benjamin Marzinski) [2215418]
+- dm: don't lock fs when the map is NULL during suspend or resume (Benjamin Marzinski) [2215418]
+- redhat/configs: enable CONFIG_MANA_INFINIBAND for RHEL (Kamal Heib) [2188737]
+- RDMA/mana_ib: Fix a bug when the PF indicates more entries for registering memory on first packet (Kamal Heib) [2188737]
+- RDMA/mana_ib: Prevent array underflow in mana_ib_create_qp_raw() (Kamal Heib) [2188737]
+- RDMA/mana: Remove redefinition of basic u64 type (Kamal Heib) [2188737]
+- RDMA/mana_ib: Add a driver for Microsoft Azure Network Adapter (Kamal Heib) [2188737]
+- net: mana: Define data structures for allocating doorbell page from GDMA (Kamal Heib) [2188737]
+- Documentation: net: net.core.txrehash is not specific to listening sockets (Antoine Tenart) [2175716]
+- net: ipv4: use consistent txhash in TIME_WAIT and SYN_RECV (Antoine Tenart) [2175716]
+- net: tcp: make the txhash available in TIME_WAIT sockets for IPv4 too (Antoine Tenart) [2175716]
+- net: ipv6: fix skb hash for some RST packets (Antoine Tenart) [2175716]
+- ipv6: tcp: send consistent autoflowlabel in RST packets (Antoine Tenart) [2175716]
+- ipv6: tcp: send consistent autoflowlabel in SYN_RECV state (Antoine Tenart) [2175716]
+- ipv6: tcp: send consistent autoflowlabel in TIME_WAIT state (Antoine Tenart) [2175716]
+- txhash: fix sk->sk_txrehash default (Antoine Tenart) [2175716]
+- socket: Don't use u8 type in uapi socket.h (Antoine Tenart) [2175716]
+- tcp: Change SYN ACK retransmit behaviour to account for rehash (Antoine Tenart) [2175716]
+- txhash: Add txrehash sysctl description (Antoine Tenart) [2175716]
+- txhash: Add socket option to control TX hash rethink behavior (Antoine Tenart) [2175716]
+- txhash: Make rethinking txhash behavior configurable via sysctl (Antoine Tenart) [2175716]
+- igc: Fix possible system crash when loading module (Corinna Vinschen) [2153370]
+- igc: Clean the TX buffer and TX descriptor ring (Corinna Vinschen) [2153370]
+- igc: Avoid transmit queue timeout for XDP (Corinna Vinschen) [2153370]
+- igc: read before write to SRRCTL register (Corinna Vinschen) [2153370]
+- igc: Enable and fix RX hash usage by netstack (Corinna Vinschen) [2153370]
+- igc: Remove obsolete DMA coalescing code (Corinna Vinschen) [2153370]
+- igc: fix the validation logic for taprio's gate list (Corinna Vinschen) [2153370]
+- igc: Add ndo_tx_timeout support (Corinna Vinschen) [2153370]
+- igc: return an error if the mac type is unknown in igc_ptp_systim_to_hwtstamp() (Corinna Vinschen) [2153370]
+- igc: Remove redundant pci_enable_pcie_error_reporting() (Corinna Vinschen) [2153370]
+- igc: Fix PPS delta between two synchronized end-points (Corinna Vinschen) [2153370]
+- igc: Remove reset adapter task for i226 during disable tsn config (Corinna Vinschen) [2153370]
+- igc: enable Qbv configuration for 2nd GCL (Corinna Vinschen) [2153370]
+- igc: remove I226 Qbv BaseTime restriction (Corinna Vinschen) [2153370]
+- igc: Set Qbv start_time and end_time to end_time if not being configured in GCL (Corinna Vinschen) [2153370]
+- igc: recalculate Qbv end_time by considering cycle time (Corinna Vinschen) [2153370]
+- igc: allow BaseTime 0 enrollment for Qbv (Corinna Vinschen) [2153370]
+- igc: Add checking for basetime less than zero (Corinna Vinschen) [2153370]
+- igc: Use strict cycles for Qbv scheduling (Corinna Vinschen) [2153370]
+- igc: Enhance Qbv scheduling by using first flag bit (Corinna Vinschen) [2153370]
+- r8152: fix the autosuspend doesn't work (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: move setting r8153b_rx_agg_chg_indicate() (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix the poor throughput for 2.5G devices (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix flow control issue of RTL8156A (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: Add __GFP_NOWARN to big allocations (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: reduce the control transfer of rtl8152_get_version() (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: remove rtl_vendor_mode function (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: avoid to change cfg for all devices (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: add vendor/device ID pair for Microsoft Devkit (Jose Ignacio Tornos Martinez) [2159264]
+- cdc_ether: no need to blacklist any r8152 devices (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: add USB device driver for config selection (Jose Ignacio Tornos Martinez) [2159264]
+- net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem (Jose Ignacio Tornos Martinez) [2159264]
+- net: usb: cdc_ether: add u-blox 0x1343 composition (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: Add MAC passthrough support for Lenovo Travel Hub (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: allow userland to disable multicast (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: add PID for the Lenovo OneLink+ Dock (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix the RX FIFO settings when suspending (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix the units of some registers for RTL8156A (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix a WOL issue (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix accessing unset transport header (Jose Ignacio Tornos Martinez) [2159264]
+- net: usb: r8152: Add in new Devices that are supported for Mac-Passthru (Jose Ignacio Tornos Martinez) [2159264]
+- cdc_ether: export usbnet_cdc_zte_rx_fixup (Jose Ignacio Tornos Martinez) [2159264]
+- USB: zaurus: support another broken Zaurus (Jose Ignacio Tornos Martinez) [2159264]
+- Revert "net: usb: r8152: Add MAC passthrough support for more Lenovo Docks" (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: sync ocp base (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix the force speed doesn't work for RTL8156 (Jose Ignacio Tornos Martinez) [2159264]
+- net: usb: r8152: Add MAC passthrough support for more Lenovo Docks (Jose Ignacio Tornos Martinez) [2159264]
+- net: usb: use eth_hw_addr_set() for dev->addr_len cases (Jose Ignacio Tornos Martinez) [2159264]
+- net: usb: use eth_hw_addr_set() instead of ether_addr_copy() (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: avoid to resubmit rx immediately (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix the maximum number of PLA bp for RTL8153C (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: fix writing USB_BP2_EN (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: Fix a deadlock by doubly PM resume (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: Fix potential PM refcount imbalance (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: store the information of the pipes (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: support pauseparam of ethtool_ops (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: Avoid memcpy() over-reading of ETH_SS_STATS (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: check the informaton of the device (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: remove some bit operations (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: redefine REALTEK_USB_DEVICE macro (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: remove NCM mode from REALTEK_USB_DEVICE macro (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: replace return with break for ram code speedup mode timeout (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: search the configuration of vendor mode (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: support PHY firmware for RTL8156 series (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: support new chips (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: add help function to change mtu (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: adjust rtl8152_check_firmware function (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: set inter fram gap time depending on speed (Jose Ignacio Tornos Martinez) [2159264]
+- r8152: adjust the flow of power cut for RTL8153B (Jose Ignacio Tornos Martinez) [2159264]
+- treewide: Use fallthrough pseudo-keyword (Jose Ignacio Tornos Martinez) [2159264]
+- nouveau: fix client work fence deletion race (Jocelyn Falempe) [2160452]
+- drm/mgag200: Fix gamma lut not initialized. (Jocelyn Falempe) [2160452]
+- drm/amd/display: Fix hang when skipping modeset (Jocelyn Falempe) [2160452]
+- drm/amd/display: Lowering min Z8 residency time (Jocelyn Falempe) [2160452]
+- drm/amd/display: Update minimum stutter residency for DCN314 Z8 (Jocelyn Falempe) [2160452]
+- drm/amd/display: Add minimum Z8 residency debug option (Jocelyn Falempe) [2160452]
+- drm/i915: disable sampler indirect state in bindless heap (Jocelyn Falempe) [2160452]
+- drm/i915/mtl: Add Wa_14017856879 (Jocelyn Falempe) [2160452]
+- drm/i915/mtl: Add workarounds Wa_14017066071 and Wa_14017654203 (Jocelyn Falempe) [2160452]
+- drm/i915: Add _PICK_EVEN_2RANGES() (Jocelyn Falempe) [2160452]
+- drm/amd/display: hpd rx irq not working with eDP interface (Jocelyn Falempe) [2160452]
+- drm/amd/display: merge dc_link.h into dc.h and dc_types.h (Jocelyn Falempe) [2160452]
+- drm/amd/pm: avoid potential UBSAN issue on legacy asics (Jocelyn Falempe) [2160452]
+- drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend (Jocelyn Falempe) [2160452]
+- drm/amdgpu: drop gfx_v11_0_cp_ecc_error_irq_funcs (Jocelyn Falempe) [2160452]
+- drm/amd/pm: parse pp_handle under appropriate conditions (Jocelyn Falempe) [2160452]
+- drm/amd/display: Enforce 60us prefetch for 200Mhz DCFCLK modes (Jocelyn Falempe) [2160452]
+- drm/amdgpu: Fix vram recover doesn't work after whole GPU reset (v2) (Jocelyn Falempe) [2160452]
+- drm/amdgpu: change gfx 11.0.4 external_id range (Jocelyn Falempe) [2160452]
+- drm/amdgpu/jpeg: Remove harvest checking for JPEG3 (Jocelyn Falempe) [2160452]
+- drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx ras (Jocelyn Falempe) [2160452]
+- drm/amdgpu: fix amdgpu_irq_put call trace in gmc_v11_0_hw_fini (Jocelyn Falempe) [2160452]
+- drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini() (Jocelyn Falempe) [2160452]
+- drm/amdgpu: fix amdgpu_irq_put call trace in gmc_v10_0_hw_fini (Jocelyn Falempe) [2160452]
+- drm/amd/display: Change default Z8 watermark values (Jocelyn Falempe) [2160452]
+- drm/amdgpu: drop redundant sched job cleanup when cs is aborted (Jocelyn Falempe) [2160452]
+- drm/amd/display: fix flickering caused by S/G mode (Jocelyn Falempe) [2160452]
+- drm/amd/display: fix access hdcp_workqueue assert (Jocelyn Falempe) [2160452]
+- drm/amd/display: filter out invalid bits in pipe_fuses (Jocelyn Falempe) [2160452]
+- drm/amd/display: Fix 4to1 MPC black screen with DPP RCO (Jocelyn Falempe) [2160452]
+- drm/amd/display: Add NULL plane_state check for cursor disable logic (Jocelyn Falempe) [2160452]
+- drm/panel: otm8009a: Set backlight parent to panel device (Jocelyn Falempe) [2160452]
+- drm/dsc: fix drm_edp_dsc_sink_output_bpp() DPCD high byte usage (Jocelyn Falempe) [2160452]
+- drm/i915/dsi: Use unconditional msleep() instead of intel_dsi_msleep() (Jocelyn Falempe) [2160452]
+- drm/i915: Check pipe source size when using skl+ scalers (Jocelyn Falempe) [2160452]
+- drm/i915/color: Fix typo for Plane CSC indexes (Jocelyn Falempe) [2160452]
+- drm/bridge: lt8912b: Fix DSI Video Mode (Jocelyn Falempe) [2160452]
+- drm/amdgpu: add a missing lock for AMDGPU_SCHED (Jocelyn Falempe) [2160452]
+- drm/i915/mtl: Add the missing CPU transcoder mask in intel_device_info (Jocelyn Falempe) [2160452]
+- drm/i915/guc: Actually return an error if GuC version range check fails (Jocelyn Falempe) [2160452]
+- drm/i915/guc: More debug print updates - UC firmware (Jocelyn Falempe) [2160452]
+- drm/amd/display: Update bounding box values for DCN321 (Jocelyn Falempe) [2160452]
+- drm/amd/display: Do not clear GPINT register when releasing DMUB from reset (Jocelyn Falempe) [2160452]
+- drm/amd/display: Reset OUTBOX0 r/w pointer on DMUB reset (Jocelyn Falempe) [2160452]
+- drm/amd/display: Fixes for dcn32_clk_mgr implementation (Jocelyn Falempe) [2160452]
+- drm/amd/display: Return error code on DSC atomic check failure (Jocelyn Falempe) [2160452]
+- drm/amd/display: Add missing WA and MCLK validation (Jocelyn Falempe) [2160452]
+- drm/panel: novatek-nt35950: Only unregister DSI1 if it exists (Jocelyn Falempe) [2160452]
+- drm/panel: novatek-nt35950: Improve error handling (Jocelyn Falempe) [2160452]
+- drm/i915: Fix memory leaks in i915 selftests (Jocelyn Falempe) [2160452]
+- drm/i915: Make intel_get_crtc_new_encoder() less oopsy (Jocelyn Falempe) [2160452]
+- drm/amd/display: Fix potential null dereference (Jocelyn Falempe) [2160452]
+- drm/ttm/pool: Fix ttm_pool_alloc error path (Jocelyn Falempe) [2160452]
+- drm/i915/pxp: limit drm-errors or warning on firmware API failures (Jocelyn Falempe) [2160452]
+- drm/i915/pxp: Invalidate all PXP fw sessions during teardown (Jocelyn Falempe) [2160452]
+- drm/amd/display/dc/dce60/Makefile: Fix previous attempt to silence known override-init warnings (Jocelyn Falempe) [2160452]
+- accel: Link to compute accelerator subsystem intro (Jocelyn Falempe) [2160452]
+- drm/bridge: adv7533: Fix adv7533_mode_valid for adv7533 and adv7535 (Jocelyn Falempe) [2160452]
+- drm/probe-helper: Cancel previous job before starting new one (Jocelyn Falempe) [2160452]
+- drm/vgem: add missing mutex_destroy (Jocelyn Falempe) [2160452]
+- drm/i915/dg2: Drop one PCI ID (Jocelyn Falempe) [2160452]
+- drm/amd/pm: re-enable the gfx imu when smu resume (Jocelyn Falempe) [2160452]
+- drm/vmwgfx: Fix Legacy Display Unit atomic drm support (Jocelyn Falempe) [2160452]
+- drm/fb-helper: set x/yres_virtual in drm_fb_helper_check_var (Jocelyn Falempe) [2160452]
+- redhat: include new drm tests in mod-internals (Jocelyn Falempe) [2160452]
+- drm/amd/display: build with std=gnu99 (Jocelyn Falempe) [2160452]
+- overflow: Introduce overflows_type() and castable_to_type() (Jocelyn Falempe) [2160452]
+- Revert "driver core: make struct bus_type.uevent() take a const *" (Jocelyn Falempe) [2160452]
+- Revert "iommu: Add a gfp parameter to iommu_map()" (Jocelyn Falempe) [2160452]
+- Revert "mm: replace vma->vm_flags direct modifications with modifier calls" (Jocelyn Falempe) [2160452]
+- Merge DRM changes from upstream v6.2..v6.3 (Jocelyn Falempe) [2160452]
+- redhat: include new drm_kunit_helpers in mod-internals (Jocelyn Falempe) [2160452]
+- drm/i915: build i915 with std=gnu99 (Jocelyn Falempe) [2160452]
+- drm/amdgpu: Add missing include for ppc64le (Jocelyn Falempe) [2160452]
+- drm/fb-helper: Add missing include for s390x (Jocelyn Falempe) [2160452]
+- drm/edid: Add missing include (Jocelyn Falempe) [2160452]
+- Revert "drm/i915/gvt: use atomic operations to change the vGPU status" (Jocelyn Falempe) [2160452]
+- Revert "kunit: Use KUNIT_EXPECT_MEMEQ macro" (Jocelyn Falempe) [2160452]
+- Revert "treewide: use get_random_u32_inclusive() when possible" (Jocelyn Falempe) [2160452]
+- Revert "treewide: use get_random_u32_below() instead of deprecated function" (Jocelyn Falempe) [2160452]
+- Revert "overflow: Introduce overflows_type() and castable_to_type()" (Jocelyn Falempe) [2160452]
+- Merge DRM changes from upstream v6.1..v6.2 (Jocelyn Falempe) [2160452]
+- kconfig: disable DRM dynamic debug. (Jocelyn Falempe) [2160452]
+- drm/vkms: build driver with gnu99 (Jocelyn Falempe) [2160452]
+- Revert "drm: POC drm on dyndbg - use in core, 2 helpers, 3 drivers." (Jocelyn Falempe) [2160452]
+- Revert "mm: free device private pages have zero refcount" (Jocelyn Falempe) [2160452]
+- Revert "mm/memory.c: fix race when faulting a device private page" (Jocelyn Falempe) [2160452]
+- Revert "drm/i915/gvt: simplify vgpu configuration management" (Jocelyn Falempe) [2160452]
+- Revert "i915: use the VMA iterator" (Jocelyn Falempe) [2160452]
+- Revert "drm/i915/userptr: restore probe_range behaviour" (Jocelyn Falempe) [2160452]
+- Revert "dynamic_dname(): drop unused dentry argument" (Jocelyn Falempe) [2160452]
+- Revert "i2c: Make remove callback return void" (Jocelyn Falempe) [2160452]
+- Merge DRM changes from upstream v6.0..v6.1 (Jocelyn Falempe) [2160452]
+- Enable A64FX_DIAG config option (Charles Mirabile) [2047817]
+- NMI workaround for GIC irq controllers (Charles Mirabile) [2047817]
+- arm64: entry: avoid kprobe recursion (Charles Mirabile) [2047817]
+- soc: a64fx-diag: disable modular build (Charles Mirabile) [2047817]
+- soc: fujitsu: Add A64FX diagnostic interrupt driver (Charles Mirabile) [2047817]
+- irqchip/gic-v3: Fix priority mask handling (Charles Mirabile) [2047817]
+- irqchip/gic-v3: Refactor ISB + EOIR at ack time (Charles Mirabile) [2047817]
+- irqchip/gic-v3: Ensure pseudo-NMIs have an ISB between ack and handling (Charles Mirabile) [2047817]
+- arm64: select TRACE_IRQFLAGS_NMI_SUPPORT (Charles Mirabile) [2047817]
+- arm64: entry: Save some nops when CONFIG_ARM64_PSEUDO_NMI is not set (Charles Mirabile) [2047817]
+- irqchip/gic-v3: Fix priority comparison when non-secure priorities are used (Charles Mirabile) [2047817]
+- arm64: entry: add missing noinstr (Charles Mirabile) [2047817]
+- arm64: suspend: Use cpuidle context helpers in cpu_suspend() (Charles Mirabile) [2047817]
+- PSCI: Use cpuidle context helpers in psci_cpu_suspend_enter() (Charles Mirabile) [2047817]
+- arm64: Convert cpu_do_idle() to using cpuidle context helpers (Charles Mirabile) [2047817]
+- arm64: Add cpuidle context save/restore helpers (Charles Mirabile) [2047817]
+- arm64: entry: make NMI entry/exit functions static (Charles Mirabile) [2047817]
+- arm64: entry: split SDEI entry (Charles Mirabile) [2047817]
+- arm64: entry: split bad stack entry (Charles Mirabile) [2047817]
+- arm64: entry: fold el1_inv() into el1h_64_sync_handler() (Charles Mirabile) [2047817]
+- arm64: entry: handle all vectors with C (Charles Mirabile) [2047817]
+- arm64: entry: template the entry asm functions (Charles Mirabile) [2047817]
+- arm64: entry: improve bad_mode() (Charles Mirabile) [2047817]
+- arm64: entry: move bad_mode() to entry-common.c (Charles Mirabile) [2047817]
+- arm64: entry: consolidate EL1 exception returns (Charles Mirabile) [2047817]
+- arm64: entry: organise entry vectors consistently (Charles Mirabile) [2047817]
+- arm64: entry: organise entry handlers consistently (Charles Mirabile) [2047817]
+- arm64: entry: convert IRQ+FIQ handlers to C (Charles Mirabile) [2047817]
+- arm64: entry: add a call_on_irq_stack helper (Charles Mirabile) [2047817]
+- arm64: entry: move NMI preempt logic to C (Charles Mirabile) [2047817]
+- arm64: entry: move arm64_preempt_schedule_irq to entry-common.c (Charles Mirabile) [2047817]
+- arm64: entry: convert SError handlers to C (Charles Mirabile) [2047817]
+- arm64: entry: unmask IRQ+FIQ after EL0 handling (Charles Mirabile) [2047817]
+- arm64: remove redundant local_daif_mask() in bad_mode() (Charles Mirabile) [2047817]
+- arm64: entry: always set GIC_PRIO_PSR_I_SET during entry (Charles Mirabile) [2047817]
+- arm64: entry: remove test_irqs_unmasked macro (Charles Mirabile) [2047817]
+- arm64: irq: allow FIQs to be handled (Charles Mirabile) [2047817]
+- arm64: Always keep DAIF.[IF] in sync (Charles Mirabile) [2047817]
+- arm64: entry: factor irq triage logic into macros (Charles Mirabile) [2047817]
+- arm64: irq: rework root IRQ handler registration (Charles Mirabile) [2047817]
+- arm64: don't use GENERIC_IRQ_MULTI_HANDLER (Charles Mirabile) [2047817]
+- genirq: Allow architectures to override set_handle_irq() fallback (Charles Mirabile) [2047817]
+- irqchip: Do not blindly select CONFIG_GENERIC_IRQ_MULTI_HANDLER (Charles Mirabile) [2047817]
+- arm64: entry: consolidate Cortex-A76 erratum 1463225 workaround (Charles Mirabile) [2047817]
+- arm64: entry: remove redundant IRQ flag tracing (Charles Mirabile) [2047817]
+- arm64: entry: suppress W=1 prototype warnings (Charles Mirabile) [2047817]
+- arm64: sdei: explicitly simulate PAN/UAO entry (Charles Mirabile) [2047817]
+- arm64: entry: fix EL1 debug transitions (Charles Mirabile) [2047817]
+- arm64: entry: fix NMI {user, kernel}->kernel transitions (Charles Mirabile) [2047817]
+- arm64: entry: fix non-NMI kernel<->kernel transitions (Charles Mirabile) [2047817]
+- arm64: ptrace: prepare for EL1 irq/rcu tracking (Charles Mirabile) [2047817]
+- arm64: entry: fix non-NMI user<->kernel transitions (Charles Mirabile) [2047817]
+- arm64: entry: move el1 irq/nmi logic to C (Charles Mirabile) [2047817]
+- arm64: entry: prepare ret_to_user for function call (Charles Mirabile) [2047817]
+- arm64: entry: move enter_from_user_mode to entry-common.c (Charles Mirabile) [2047817]
+- arm64: entry: mark entry code as noinstr (Charles Mirabile) [2047817]
+- arm64: mark idle code as noinstr (Charles Mirabile) [2047817]
+- arm64: add C wrappers for SET_PSTATE_*() (Charles Mirabile) [2047817]
+- kgdb: Honour the kprobe blocklist when setting breakpoints (Charles Mirabile) [2047817]
+- genirq: Add stub for set_handle_irq() when !GENERIC_IRQ_MULTI_HANDLER (Charles Mirabile) [2047817]
+- arm64: Improve diagnostics when trapping BRK with FAULT_BRK_IMM (Charles Mirabile) [2047817]
+- arm64/entry: deduplicate SW PAN entry/exit routines (Charles Mirabile) [2047817]
+- arm64: Prepare arch_nmi_enter() for recursion (Charles Mirabile) [2047817]
+- arm64: Make debug exception handlers visible from RCU (Charles Mirabile) [2047817]
+- irqchip: Remove unneeded select IRQ_DOMAIN (Charles Mirabile) [2047817]
+- net/mlx5e: TC, Fix using eswitch mapping in nic mode (Amir Tzin) [2166015]
+- net/mlx5e: Use query_special_contexts cmd only once per mdev (Amir Tzin) [2166015]
+- net/mlx5e: Move Ethernet driver debugfs to profile init callback (Amir Tzin) [2166015]
+- net/mlx5e: Do not update SBCM when prio2buffer command is invalid (Amir Tzin) [2166015]
+- RDMA/mlx5: Use correct device num_ports when modify DC (Amir Tzin) [2166015]
+- net/mlx5e: Nullify table pointer when failing to create (Amir Tzin) [2166015]
+- net/mlx5e: Fix error flow in representor failing to add vport rx rule (Amir Tzin) [2166015]
+- net/mlx5: E-switch, Don't destroy indirect table in split rule (Amir Tzin) [2166015]
+- net/mlx5: E-switch, Create per vport table based on devlink encap mode (Amir Tzin) [2166015]
+- net/mlx5e: Don't clone flow post action attributes second time (Amir Tzin) [2166015]
+- Revert "net/mlx5: Expose vnic diagnostic counters for eswitch managed vports" (Amir Tzin) [2166015]
+- RDMA/mlx5: Fix flow counter query via DEVX (Amir Tzin) [2166015]
+- RDMA/mlx5: Check pcie_relaxed_ordering_enabled() in UMR (Amir Tzin) [2166015]
+- net/mlx5: Fix wrong comment (Amir Tzin) [2166015]
+- net/mlx5e: Coding style fix, add empty line (Amir Tzin) [2166015]
+- RDMA/mlx5: Coding style fix reported by checkpatch (Amir Tzin) [2166015]
+- net/mlx5e: Release the label when replacing existing ct entry (Amir Tzin) [2165914]
+- net/mlx5: Release tunnel device after tc update skb (Amir Tzin) [2166015]
+- Revert "net/mlx5: Expose steering dropped packets counter" (Amir Tzin) [2166015]
+- Revert "net/mlx5e: Don't use termination table when redundant" (Amir Tzin) [2166015]
+- Revert "net/mlx5: Enable management PF initialization" (Amir Tzin) [2166015]
+- net/mlx5: E-Switch, Fix an Oops in error handling code (Amir Tzin) [2166015]
+- net/mlx5: Read the TC mapping of all priorities on ETS query (Amir Tzin) [2166015]
+- net/mlx5e: Initialize link speed to zero (Amir Tzin) [2166015]
+- net/mlx5: Fix steering rules cleanup (Amir Tzin) [2166015]
+- net/mlx5e: Block entering switchdev mode with ns inconsistency (Amir Tzin) [2166015 2166018]
+- net/mlx5e: Set uplink rep as NETNS_LOCAL (Amir Tzin) [2166015]
+- IB/mlx5: Add support for 400G_8X lane speed (Amir Tzin) [2166015]
+- net/mlx5e: TC, Remove error message log print (Amir Tzin) [2166015]
+- net/mlx5e: TC, fix cloned flow attribute (Amir Tzin) [2166015]
+- net/mlx5e: TC, fix missing error code (Amir Tzin) [2166015]
+- net/sched: TC, fix raw counter initialization (Amir Tzin) [2166015]
+- net/mlx5: Set BREAK_FW_WAIT flag first when removing driver (Amir Tzin) [2166013]
+- net/mlx5e: Fix cleanup null-ptr deref on encap lock (Amir Tzin) [2166013]
+- net/mlx5: E-switch, Fix missing set of split_count when forward to ovs internal port (Amir Tzin) [2166013]
+- net/mlx5: E-switch, Fix wrong usage of source port rewrite in split rules (Amir Tzin) [2166013 2166018]
+- net/mlx5: Disable eswitch before waiting for VF pages (Amir Tzin) [2166013]
+- net/mlx5: Fix setting ec_function bit in MANAGE_PAGES (Amir Tzin) [2166013]
+- net/mlx5e: Don't cache tunnel offloads capability (Amir Tzin) [2166013]
+- net/mlx5e: Remove hairpin write debugfs files (Amir Tzin) [2166015]
+- net/mlx5: Remove NULL check before dev_{put, hold} (Amir Tzin) [2166015]
+- net/mlx5e: TC, Set CT miss to the specific ct action instance (Amir Tzin) [2166015]
+- net/mlx5e: Rename CHAIN_TO_REG to MAPPED_OBJ_TO_REG (Amir Tzin) [2166015]
+- net/mlx5: Refactor tc miss handling to a single function (Amir Tzin) [2166015]
+- net/mlx5: Kconfig: Make tc offload depend on tc skb extension (Amir Tzin) [2166015]
+- net/sched: Rename user cookie and act cookie (mlx5 hunk only) (Amir Tzin) [2166015]
+- IB/mlx5: Extend debug control for CC parameters (Amir Tzin) [2166015]
+- net/mlx5e: Allow offloading of ct 'new' match (Amir Tzin) [2165914 2166015]
+- net/mlx5e: Implement CT entry update (Amir Tzin) [2165914 2166015]
+- net: flow_offload: provision conntrack info in ct_metadata(mlx5 hunks only) (Amir Tzin) [2165914 2166015]
+- net/mlx5e: Fix outdated TLS comment (Amir Tzin) [2166015]
+- net/mlx5e: Remove unused function mlx5e_sq_xmit_simple (Amir Tzin) [2166015]
+- net/mlx5: Simplify eq list traversal (Amir Tzin) [2166015]
+- net/mlx5e: Switch to using napi_build_skb() (Amir Tzin) [2166015]
+- RDMA/mlx5: Use query_special_contexts for mkeys (Amir Tzin) [2166015]
+- net/mlx5e: Use query_special_contexts for mkeys (Amir Tzin) [2166015]
+- net/mlx5: Change define name for 0x100 lkey value (Amir Tzin) [2166015]
+- net/mlx5: Expose bits for querying special mkeys (Amir Tzin) [2166015]
+- RDMA/mlx5: Use rdma_umem_for_each_dma_block() (Amir Tzin) [2166015]
+- net/mlx5e: TC, fix return value check in mlx5e_tc_act_stats_create() (Amir Tzin) [2166015]
+- net/mlx5e: TC, support per action stats (Amir Tzin) [2166015]
+- net/mlx5e: TC, map tc action cookie to a hw counter (Amir Tzin) [2166015]
+- net/mlx5e: TC, store tc action cookies per attr (Amir Tzin) [2166015]
+- net/mlx5e: TC, add hw counter to branching actions (Amir Tzin) [2166015]
+- RDMA/mlx5: Track netdev to avoid deadlock during netdev notifier unregister (Amir Tzin) [2166015]
+- net/mlx5e: Propagate an internal event in case uplink netdev changes (Amir Tzin) [2166015]
+- net/mlx5e: Fix trap event handling (Amir Tzin) [2166015]
+- net/mlx5: fw_tracer, Add support for unrecognized string (Amir Tzin) [2166015]
+- net/mlx5: fw_tracer, Add support for strings DB update event (Amir Tzin) [2166015]
+- net/mlx5: fw_tracer, allow 0 size string DBs (Amir Tzin) [2166015]
+- net/mlx5: fw_tracer: Fix debug print (Amir Tzin) [2166015]
+- net/mlx5: fs, Remove redundant assignment of size (Amir Tzin) [2166015]
+- net/mlx5: fs_core, Remove redundant variable err (Amir Tzin) [2166015]
+- net/mlx5: fs, Remove redundant vport_number assignment (Amir Tzin) [2166015]
+- net/mlx5e: Remove redundant code for handling vlan actions (Amir Tzin) [2166015 2166018]
+- net/mlx5: fw reset: Skip device ID check if PCI link up failed (Amir Tzin) [2166015]
+- net/mlx5: Remove redundant health work lock (Amir Tzin) [2166015]
+- mlx5: reduce stack usage in mlx5_setup_tc (Amir Tzin) [2166015]
+- net/mlx5e: Trigger NAPI after activating an SQ (Amir Tzin) [2166015]
+- net/mlx5e: IPoIB, Add support for XDR speed (Amir Tzin) [2166015]
+- net/mlx5: Lag, Move mpesw related definitions to mpesw.h (Amir Tzin) [2166015]
+- net/mlx5: Lag, Use flag to check for shared FDB mode (Amir Tzin) [2166015]
+- net/mlx5: Lag, Remove redundant bool allocation on the stack (Amir Tzin) [2166015]
+- net/mlx5: Lag, Use mlx5_lag_dev() instead of derefering pointers (Amir Tzin) [2166015]
+- net/mlx5: Lag, Update multiport eswitch check to log an error (Amir Tzin) [2166015]
+- net/mlx5: Add firmware support for MTUTC scaled_ppm frequency adjustments (Amir Tzin) [2166015]
+- net/mlx5: Add hardware extended range support for PTP adjtime and adjphase (Amir Tzin) [2166015]
+- net/mlx5: Add adjphase function to support hardware-only offset control (Amir Tzin) [2166015]
+- net/mlx5: Geneve, Fix handling of Geneve object id as error code (Amir Tzin) [2166015]
+- net/mlx5e: Verify flow_source cap before using it (Amir Tzin) [2166015 2166018]
+- net/mlx5: ECPF, wait for VF pages only after disabling host PFs (Amir Tzin) [2166015]
+- mlx5: fix possible ptp queue fifo use-after-free (Amir Tzin) [2166015]
+- mlx5: fix skb leak while fifo resync and push (Amir Tzin) [2166015]
+- net/mlx5: Fix memory leak in error flow of port set buffer (Amir Tzin) [2166015]
+- net/mlx5e: Remove incorrect debugfs_create_dir NULL check in TLS (Amir Tzin) [2166015]
+- net/mlx5e: Remove incorrect debugfs_create_dir NULL check in hairpin (Amir Tzin) [2166015]
+- net/mlx5: Enhance debug print in page allocation failure (Amir Tzin) [2166015]
+- net/mlx5e: kTLS, Improve connection rate by using fast update encryption key (Amir Tzin) [2166015]
+- net/mlx5: Keep only one bulk of full available DEKs (Amir Tzin) [2166015]
+- net/mlx5: Add async garbage collector for DEK bulk (Amir Tzin) [2166015]
+- net/mlx5: Reuse DEKs after executing SYNC_CRYPTO command (Amir Tzin) [2166015]
+- net/mlx5: Use bulk allocation for fast update encryption key (Amir Tzin) [2166015]
+- net/mlx5: Add bulk allocation and modify_dek operation (Amir Tzin) [2166015]
+- net/mlx5: Add support SYNC_CRYPTO command (Amir Tzin) [2166015]
+- net/mlx5: Add new APIs for fast update encryption key (Amir Tzin) [2166015]
+- net/mlx5: Refactor the encryption key creation (Amir Tzin) [2166015]
+- net/mlx5: Add const to the key pointer of encryption key creation (Amir Tzin) [2166015]
+- net/mlx5: Prepare for fast crypto key update if hardware supports it (Amir Tzin) [2166015]
+- net/mlx5: Change key type to key purpose (Amir Tzin) [2166015]
+- net/mlx5: Add IFC bits and enums for crypto key (Amir Tzin) [2166015]
+- net/mlx5: Add IFC bits for general obj create param (Amir Tzin) [2166015]
+- net/mlx5: Header file for crypto (Amir Tzin) [2166015]
+- net/mlx5e: Use read lock for eswitch get callbacks (Amir Tzin) [2166015 2166018]
+- net/mlx5e: Remove redundant allocation of spec in create indirect fwd group (Amir Tzin) [2165994 2166015]
+- net/mlx5e: Support Geneve and GRE with VF tunnel offload (Amir Tzin) [2165994 2166015 2166018]
+- net/mlx5: E-Switch, Fix typo for egress (Amir Tzin) [2166015]
+- net/mlx5e: Warn when destroying mod hdr hash table that is not empty (Amir Tzin) [2166015]
+- net/mlx5e: TC, Use common function allocating flow mod hdr or encap mod hdr (Amir Tzin) [2166015]
+- net/mlx5e: TC, Add tc prefix to attach/detach hdr functions (Amir Tzin) [2166015]
+- net/mlx5e: TC, Pass flow attr to attach/detach mod hdr functions (Amir Tzin) [2166015]
+- net/mlx5: E-switch, Remove redundant comment about meta rules (Amir Tzin) [2166015]
+- net/mlx5: Suppress error logging on UCTX creation (Amir Tzin) [2166015]
+- net/mlx5e: Suppress Send WQEBB room warning for PAGE_SIZE >= 16KB (Amir Tzin) [2166015]
+- net/mlx5e: Use kzalloc() in mlx5e_accel_fs_tcp_create() (Amir Tzin) [2166015]
+- net/mlx5: remove redundant ret variable (Amir Tzin) [2166015]
+- net/mlx5e: Replace 0-length array with flexible array (Amir Tzin) [2166015]
+- net/mlx5e: Replace zero-length array with flexible-array member (Amir Tzin) [2166015]
+- net/mlx5: Prevent high-rate FW commands from populating all slots (Amir Tzin) [2166015]
+- net/mlx5: Introduce and use opcode getter in command interface (Amir Tzin) [2166015]
+- net/mlx5: Enable management PF initialization (Amir Tzin) [2166015]
+- net/mlx5e: Add hairpin debugfs files (Amir Tzin) [2166015]
+- net/mlx5e: Add flow steering debugfs directory (Amir Tzin) [2166015]
+- net/mlx5e: Add hairpin params structure (Amir Tzin) [2166015]
+- net/mlx5e: kTLS, Add debugfs (Amir Tzin) [2166015]
+- net/mlx5e: Add Ethernet driver debugfs (Amir Tzin) [2166015]
+- net/mlx5e: Update shared buffer along with device buffer changes (Amir Tzin) [2166015]
+- net/mlx5e: Add API to query/modify SBPR and SBCM registers (Amir Tzin) [2166015]
+- net/mlx5: Expose shared buffer registers bits and structs (Amir Tzin) [2166015]
+- net/mlx5: Serialize module cleanup with reload and remove (Amir Tzin) [2166013]
+- net/mlx5: fw_tracer, Zero consumer index when reloading the tracer (Amir Tzin) [2166013]
+- net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers (Amir Tzin) [2166013]
+- net/mlx5: Expose SF firmware pages counter (Amir Tzin) [2166013]
+- net/mlx5: Store page counters in a single array (Amir Tzin) [2166013]
+- net/mlx5e: IPoIB, Show unknown speed instead of error (Amir Tzin) [2166013]
+- net/mlx5e: Fix crash unsetting rx-vlan-filter in switchdev mode (Amir Tzin) [2055530 2166013]
+- net/mlx5: Bridge, fix ageing of peer FDB entries (Amir Tzin) [2166013]
+- net/mlx5: DR, Fix potential race in dr_rule_create_rule_nic (Amir Tzin) [2166013]
+- net/mlx5e: Update rx ring hw mtu upon each rx-fcs flag change (Amir Tzin) [2166013]
+- net/mlx5e: Don't support encap rules with gbp option (Amir Tzin) [2166013]
+- net/mlx5e: Fix memory leak on updating vport counters (Amir Tzin) [2165677 2166013]
+- net/mlx5e: TC, Restore pkt rate policing support (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, ignore match level for post meter rules (Amir Tzin) [2165893 2166013]
+- net/mlx5: DR, Fix 'stack frame size exceeds limit' error in dr_rule (Amir Tzin) [2166013]
+- net/mlx5: Lag, fix failure to cancel delayed bond work (Amir Tzin) [2166013]
+- net/mlx5e: Fix RX reporter for XSK RQs (Amir Tzin) [2166013]
+- net/mlx5: Expose steering dropped packets counter (Amir Tzin) [2166013]
+- net/mlx5: Refactor and expand rep vport stat group (Amir Tzin) [2165677 2166013]
+- net/mlx5e: TC, add support for meter mtu offload (Amir Tzin) [2165893 2166013 2166018]
+- net/mlx5e: meter, add mtu post meter tables (Amir Tzin) [2165893 2166013]
+- net/mlx5e: meter, refactor to allow multiple post meter tables (Amir Tzin) [2165893 2166013]
+- net/mlx5: DR, Add support for range match action (Amir Tzin) [2165893 2166013]
+- net/mlx5: DR, Add function that tells if STE miss addr has been initialized (Amir Tzin) [2165893 2166013]
+- net/mlx5: DR, Some refactoring of miss address handling (Amir Tzin) [2165893 2166013]
+- net/mlx5: DR, Manage definers with refcounts (Amir Tzin) [2165893 2166013]
+- net/mlx5: DR, Handle FT action in a separate function (Amir Tzin) [2165893 2166013]
+- net/mlx5: DR, Rework is_fw_table function (Amir Tzin) [2165893 2166013]
+- net/mlx5: DR, Add functions to create/destroy MATCH_DEFINER general object (Amir Tzin) [2165893 2166013]
+- net/mlx5: fs, add match on ranges API (Amir Tzin) [2165893 2166013]
+- net/mlx5: mlx5_ifc updates for MATCH_DEFINER general object (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, allow meter jump control action (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, init post meter rules with branching attributes (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, rename post_meter actions (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, initialize branching action with target attr (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, initialize branch flow attributes (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, set control params for branching actions (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, validate action list per attribute (Amir Tzin) [2165893 2166013]
+- net/mlx5e: Adjust function actions_match_supported() to upstream. (Amir Tzin) [2166006]
+- net/mlx5e: TC, add terminating actions (Amir Tzin) [2165893 2166013]
+- net/mlx5e: TC, reuse flow attribute post parser processing (Amir Tzin) [2165893 2166013]
+- net/mlx5: fs, assert null dest pointer when dest_num is 0 (Amir Tzin) [2165893 2166013]
+- net/mlx5e: E-Switch, handle flow attribute with no destinations (Amir Tzin) [2165893 2166013 2166018]
+- RDMA/mlx5: Remove not-used IB_FLOW_SPEC_IB define (Amir Tzin) [2166013]
+- RDMA/mlx5: no need to kfree NULL pointer (Amir Tzin) [2166013]
+- net/mlx5e: TC, Add offload support for trap with additional actions (Amir Tzin) [2166013 2166018]
+- net/mlx5e: Do early return when setup vports dests for slow path flow (Amir Tzin) [2166013 2166018]
+- net/mlx5e: Support devlink reload of IPsec core (Amir Tzin) [2166013]
+- net/mlx5: Remove redundant check (Amir Tzin) [2166013]
+- net/mlx5e: Don't use termination table when redundant (Amir Tzin) [2166013]
+- net/mlx5: Remove unused ctx variables (Amir Tzin) [2166013]
+- net/mlx5e: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper (Amir Tzin) [2166013]
+- net/mlx5e: Remove unneeded io-mapping.h #include (Amir Tzin) [2166013]
+- net/mlx5e: CT, optimize pre_ct table lookup (Amir Tzin) [2166013]
+- net/mlx5e: kTLS, Use a single async context object per a callback bulk (Amir Tzin) [2166013]
+- net/mlx5e: kTLS, Remove unnecessary per-callback completion (Amir Tzin) [2166013]
+- net/mlx5e: kTLS, Remove unused work field (Amir Tzin) [2166013]
+- net/mlx5e: TC, Remove redundant WARN_ON() (Amir Tzin) [2166013]
+- net/mlx5e: Add error flow when failing update_rx (Amir Tzin) [2166013]
+- net/mlx5e: Move params kernel log print to probe function (Amir Tzin) [2166013]
+- net/mlx5e: Support enhanced CQE compression (Amir Tzin) [2166013]
+- net/mlx5e: Use clamp operation instead of open coding it (Amir Tzin) [2166013]
+- net/mlx5e: remove unused list in arfs (Amir Tzin) [2166013]
+- net/mlx5: Expose vhca_id to debugfs (Amir Tzin) [2166013]
+- net/mlx5: Unregister traps on driver unload flow (Amir Tzin) [2166013]
+- net/mlx5: Fix spelling mistake "destoy" -> "destroy" (Amir Tzin) [2166013]
+- net/mlx5: Bridge, Use debug instead of warn if entry doesn't exists (Amir Tzin) [2166013]
+- RDMA/mlx5: Change debug log level for remote access error syndromes (Amir Tzin) [2166013]
+- ptp: mlx5: convert to .adjfine and adjust_by_scaled_ppm (Amir Tzin) [2166013]
+- net/mlx5: DR, Remove the buddy used_list (Amir Tzin) [2166013]
+- net/mlx5: DR, Keep track of hot ICM chunks in an array instead of list (Amir Tzin) [2166013]
+- net/mlx5: DR, Lower sync threshold for ICM hot memory (Amir Tzin) [2166013]
+- net/mlx5: DR, Allocate htbl from its own slab allocator (Amir Tzin) [2166013]
+- net/mlx5: DR, Allocate icm_chunks from their own slab allocator (Amir Tzin) [2166013]
+- net/mlx5: DR, Manage STE send info objects in pool (Amir Tzin) [2166013]
+- net/mlx5: DR, In rehash write the line in the entry immediately (Amir Tzin) [2166013]
+- net/mlx5: DR, Handle domain memory resources init/uninit separately (Amir Tzin) [2166013]
+- net/mlx5: DR, Initialize chunk's ste_arrays at chunk creation (Amir Tzin) [2166013]
+- net/mlx5: DR, For short chains of STEs, avoid allocating ste_arr dynamically (Amir Tzin) [2166013]
+- net/mlx5: DR, Remove unneeded argument from dr_icm_chunk_destroy (Amir Tzin) [2166013]
+- net/mlx5: DR, Check device state when polling CQ (Amir Tzin) [2166013]
+- net/mlx5: DR, In destroy flow, free resources even if FW command failed (Amir Tzin) [2166013]
+- net/mlx5: Add support for NPPS with real time mode (Amir Tzin) [2166006]
+- net/mlx5: Expose NPPS related registers (Amir Tzin) [2166006]
+- net/mlx5e: Use kvfree() in mlx5e_accel_fs_tcp_create() (Amir Tzin) [2166006]
+- net/mlx5e: Remove leftovers from old XSK queues enumeration (Amir Tzin) [2166006]
+- net/mlx5: Lag, avoid lockdep warnings (Amir Tzin) [2166006]
+- net/mlx5: Update fw fatal reporter state on PCI handlers successful recover (Amir Tzin) [2166006]
+- net/mlx5: Make ASO poll CQ usable in atomic context (Amir Tzin) [2166006]
+- net/mlx5: E-Switch, Return EBUSY if can't get mode lock (Amir Tzin) [2166006]
+- net/mlx5: E-switch, Don't update group if qos is not enabled (Amir Tzin) [2166006]
+- net/mlx5: E-Switch, Allow offloading fwd dest flow table with vport (Amir Tzin) [2166006 2166018]
+- net/mlx5: Set default grace period based on function type (Amir Tzin) [2166006]
+- net/mlx5: Start health poll at earlier stage of driver load (Amir Tzin) [2166006]
+- net/mlx5e: Expose rx_oversize_pkts_buffer counter (Amir Tzin) [2166006]
+- net/mlx5: Remove from FPGA IFC file not-needed definitions (Amir Tzin) [2166006]
+- net/mlx5: Remove unused structs (Amir Tzin) [2166006]
+- net/mlx5: Remove unused functions (Amir Tzin) [2166006]
+- net/mlx5: detect and enable bypass port select flow table (Amir Tzin) [2166006]
+- net/mlx5: Lag, enable hash mode by default for all NICs (Amir Tzin) [2166006]
+- net/mlx5: Lag, set active ports if support bypass port select flow table (Amir Tzin) [2166006]
+- RDMA/mlx5: Don't set tx affinity when lag is in hash mode (Amir Tzin) [2166006]
+- net/mlx5: add IFC bits for bypassing port select flow table (Amir Tzin) [2166006]
+- RDMA/mlx5: Move function mlx5_core_query_ib_ppcnt() to mlx5_ib (Amir Tzin) [2166006]
+- IB/mlx5: Support querying eswitch functions from DEVX (Amir Tzin) [2166006]
+- net: ethernet: move from strlcpy with unused retval to strscpy (mlx5 hunks only) (Amir Tzin) [2166006]
+- net/mlx5e: Do not use err uninitialized in mlx5e_rep_add_meta_tunnel_rule() (Amir Tzin) [2166006]
+- IB/mlx5: Remove duplicate header inclusion related to ODP (Amir Tzin) [2166006]
+- net/mlx5: TC, Add support for SF tunnel offload (Amir Tzin) [2166006]
+- net/mlx5: E-Switch, Move send to vport meta rule creation (Amir Tzin) [2166006 2166018]
+- net/mlx5: E-Switch, Split creating fdb tables into smaller chunks (Amir Tzin) [2166006 2166018]
+- net/mlx5: E-Switch, Add default drop rule for unmatched packets (Amir Tzin) [2166006 2166018]
+- net/mlx5: Adjust function mlx5_eswitch_inline_mode_get() location (Amir Tzin) [2166006]
+- net/mlx5e: Completely eliminate priv from fs.h (Amir Tzin) [2166006]
+- net/mlx5e: Make all ttc functions of en_fs get fs struct as argument (Amir Tzin) [2166006]
+- net/mlx5e: Make flow steering arfs independent of priv (Amir Tzin) [2166006]
+- net/mlx5e: Introduce flow steering debug macros (Amir Tzin) [2166006]
+- net/mlx5e: Separate ethtool_steering from fs.h and make private (Amir Tzin) [2166006]
+- net/mlx5e: Directly get flow_steering struct as input when init/cleanup ethtool steering (Amir Tzin) [2166006]
+- Revert "[netdrv] net/mlx5e: Fix missing cleanup of ethtool steering during rep rx cleanup" (Amir Tzin) [2166006]
+- net/mlx5e: Convert ethtool_steering member of flow_steering struct to pointer (Amir Tzin) [2166006]
+- net/mlx5e: Drop priv argument of ptp function in en_fs (Amir Tzin) [2166006]
+- net/mlx5e: Decouple fs_tcp from en.h (Amir Tzin) [2166006]
+- net/mlx5e: Decouple fs_tt_redirect from en.h (Amir Tzin) [2166006]
+- net/mlx5e: Introduce flow steering API (Amir Tzin) [2166006]
+- IB/mlx5: Call io_stop_wc() after writing to WC MMIO (Amir Tzin) [2166006]
+
+* Tue Jun 27 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-500.el8]
+- mm: page_counter: mitigate consequences of a page_counter underflow (Ty Berry) [2196726]
+- ceph: fix decoding of client session messages flags (Xiubo Li) [2213062]
+- net: stmmac: propagate feature flags to vlan (Corinna Vinschen) [2174701]
+- KVM: Avoid illegal stage2 mapping on invalid memory slot (Gavin Shan) [2190376]
+- perf/x86/rapl: Add support for Intel Emerald Rapids (Michael Petlan) [2165766]
+- s390/dasd: Use correct lock while counting channel queue length (Tobias Huschle) [2215889]
+- inotify: show inotify mask flags in proc fdinfo (Andrey Albershteyn) [2163455]
+- scsi: scsi_transport_fc: Add an additional flag to fc_host_fpin_rcv() (Ewan D. Milne) [2169276]
+- perf bench: Fix numa bench to fix usage of affinity for machines with #CPUs > 1K (Michael Petlan) [2134284]
+- perf bench: Fix numa testcase to check if CPU used to bind task is online (Michael Petlan) [2134284]
+- powerpc/64s: Make POWER10 and later use pause_short in cpu_relax loops (avchouha) [2188343]
+- powerpc: add ISA v3.0 / v3.1 wait opcode macro (avchouha) [2188343]
+- scsi: lpfc: Account for fabric domain ctlr device loss recovery (Dick Kennedy) [2213027]
+- scsi: lpfc: Clear NLP_IN_DEV_LOSS flag if already in rediscovery (Dick Kennedy) [2213027]
+- scsi: lpfc: Fix use-after-free rport memory access in lpfc_register_remote_port() (Dick Kennedy) [2213027]
+- PCI: hv: Add a per-bus mutex state_lock (Vitaly Kuznetsov) [2184863]
+- Revert "PCI: hv: Fix a timing issue which causes kdump to fail occasionally" (Vitaly Kuznetsov) [2184863]
+- PCI: hv: Remove the useless hv_pcichild_state from struct hv_pci_dev (Vitaly Kuznetsov) [2184863]
+- PCI: hv: Fix a race condition in hv_irq_unmask() that can cause panic (Vitaly Kuznetsov) [2184863]
+- PCI: hv: Fix a race condition bug in hv_pci_query_relations() (Vitaly Kuznetsov) [2184863]
+- RHEL-only: KVM: arm64: Fixes comments (Shaoqin Huang) [2202988]
+- KVM: arm64: Fix buffer overflow in kvm_arm_set_fw_reg() (Shaoqin Huang) [2202988]
+- KVM: selftests: arm64: Fix pte encode/decode for PA bits > 48 (Shaoqin Huang) [2202988]
+- KVM: arm64: selftests: Use FIELD_GET() to extract ID register fields (Shaoqin Huang) [2202988]
+- tools: Copy bitfield.h from the kernel sources (Shaoqin Huang) [2202988]
+- x86/platform/uv: Update UV[23] platform code for SNC (Frank Ramsay) [2163467]
+- x86/platform/uv: Remove remaining BUG_ON() and BUG() calls (Frank Ramsay) [2163467]
+- x86/platform/uv: UV support for sub-NUMA clustering (Frank Ramsay) [2163467]
+- x86: uv: uv_hub.h: Delete duplicated word (Frank Ramsay) [2163467]
+- x86/platform/uv: Helper functions for allocating and freeing conversion tables (Frank Ramsay) [2163467]
+- x86/platform/uv: When searching for minimums, start at INT_MAX not 99999 (Frank Ramsay) [2163467]
+- x86/platform/uv: Fix printed information in calc_mmioh_map (Frank Ramsay) [2163467]
+- x86/platform/uv: Introduce helper function uv_pnode_to_socket. (Frank Ramsay) [2163467]
+- x86/platform/uv: Add platform resolving #defines for misc GAM_MMIOH_REDIRECT* (Frank Ramsay) [2163467]
+- IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors (Izabela Bakollari) [2170629]
+- IB/hfi1: Fix math bugs in hfi1_can_pin_pages() (Izabela Bakollari) [2170629]
+- IB/hfi1: Restore allocated resources on failed copyout (Izabela Bakollari) [2170629]
+- IB/hfi1: Use dma_mmap_coherent for matching buffers (Izabela Bakollari) [2170629]
+- IB/hfi1: Update RMT size calculation (Izabela Bakollari) [2170629]
+- IB/hfi1: Split IB counter allocation (Izabela Bakollari) [2170629]
+- IB/hfi1: Improve TID validity checking (Izabela Bakollari) [2170629]
+- IB/hfi1: Consolidate the creation of user TIDs (Izabela Bakollari) [2170629]
+- IB/hfi1: Assign npages earlier (Izabela Bakollari) [2170629]
+- IB/hfi1: Fix expected receive setup error exit issues (Izabela Bakollari) [2170629]
+- IB/hfi1: Reserve user expected TIDs (Izabela Bakollari) [2170629]
+- IB/hfi1: Reject a zero-length user expected buffer (Izabela Bakollari) [2170629]
+- RDMA/hfi1: Fix doc for hfi1_free_ctxt (Izabela Bakollari) [2170629]
+- RDMA/hfi1: use sysfs_emit() to instead of scnprintf() (Izabela Bakollari) [2170629]
+- RDMA/hfi1: Fix error return code in parse_platform_config() (Izabela Bakollari) [2170629]
+- IB/hfi1: Switch to netif_napi_add() (Izabela Bakollari) [2170629]
+- RDMA/hfi: Decrease PCI device reference count in error path (Izabela Bakollari) [2170629]
+- RDMA/hfi1: don't pass bogus GFP_ flags to dma_alloc_coherent (Izabela Bakollari) [2170629]
+- IB/hfi1: Replace 1-element array with singleton (Izabela Bakollari) [2170629]
+- RDMA/opa_vnic: fix spelling typo in comment (Izabela Bakollari) [2170629]
+- IB/hfi1: Use skb_put_data() instead of skb_put/memcpy pair (Izabela Bakollari) [2170629]
+- IB/hfi1: remove rc_only_opcode and uc_only_opcode declarations (Izabela Bakollari) [2170629]
+- RDMA/hfi1: fix repeated words in comments (Izabela Bakollari) [2170629]
+- RDMA/hfi1: Remove the unneeded result variable (Izabela Bakollari) [2170629]
+- IB: move from strlcpy with unused retval to strscpy (Izabela Bakollari) [2170629]
+- perf intel-pt: Add documentation for Event Trace and TNT disable (Michael Petlan) [2154066]
+- perf scripts python: export-to-postgresql.py: Export all sample flags (Michael Petlan) [2154066]
+- perf scripts python: export-to-sqlite.py: Export all sample flags (Michael Petlan) [2154066]
+- perf scripting python: Add all sample flags to DB export (Michael Petlan) [2154066]
+- perf scripts python: intel-pt-events.py: Add Event Trace (Michael Petlan) [2154066]
+- perf script: Display new D (Intr Disabled) and t (Intr Toggle) flags (Michael Petlan) [2154066]
+- perf script: Display Intel PT iflag synthesized event (Michael Petlan) [2154066]
+- perf script: Display Intel PT CFE (Control Flow Event) / EVD (Event Data) synthesized event (Michael Petlan) [2154066]
+- perf intel-pt: Force 'quick' mode when TNT (Taken/Not-Taken packet) is disabled (Michael Petlan) [2154066]
+- perf intel-pt: Synthesize new D (Intr Disabled) and t (Intr Toggle) flags (Michael Petlan) [2154066]
+- perf intel-pt: Synthesize iflag event (Michael Petlan) [2154066]
+- perf intel-pt: Synthesize CFE (Control Flow Event) / EVD (Event Data) event (Michael Petlan) [2154066]
+- perf intel-pt: Record Event Trace capability flag (Michael Petlan) [2154066]
+- perf auxtrace: Add itrace option "I" (Michael Petlan) [2154066]
+- perf tools: Define new D (Intr Disable) and t (Intr Toggle) flags (Michael Petlan) [2154066]
+- perf tools: Define Intel PT iflag synthesized event (Michael Petlan) [2154066]
+- perf tools: Define Intel PT CFE (Control Flow Event) / EVD (Event Data) event (Michael Petlan) [2154066]
+- perf intel-pt: decoder: Add MODE.Exec IFLAG processing (Michael Petlan) [2154066]
+- perf intel-pt: decoder: Add CFE (Control Flow Event) and EVD (Event Data) processing (Michael Petlan) [2154066]
+- perf intel-pt: decoder: Factor out clearing of FUP (Flow Update) event variables (Michael Petlan) [2154066]
+- perf intel-pt: Fix error timestamp setting on the decoder error path (Michael Petlan) [2154066]
+- perf intel-pt: Fix missing 'instruction' events with 'q' option (Michael Petlan) [2154066]
+- perf intel-pt: Fix next 'err' value, walking trace (Michael Petlan) [2154066]
+- perf intel-pt: Fix state setting when receiving overflow (OVF) packet (Michael Petlan) [2154066]
+- perf intel-pt: Fix intel_pt_fup_event() assumptions about setting state type (Michael Petlan) [2154066]
+- perf intel-pt: Fix sync state when a PSB (synchronization) packet is found (Michael Petlan) [2154066]
+- perf intel-pt: Fix some PGE (packet generation enable/control flow packets) usage (Michael Petlan) [2154066]
+- perf intel-pt: decoder: Add config bit definitions (Michael Petlan) [2154066]
+- perf intel-pt: pkt-decoder: Add MODE.Exec IFLAG bit (Michael Petlan) [2154066]
+- perf intel-pt: pkt-decoder: Add CFE and EVD packets (Michael Petlan) [2154066]
+- perf intel-pt: pkt-decoder: Remove misplaced linebreak (Michael Petlan) [2154066]
+- perf intel-pt: pkt-decoder-test: Fix scope of test_data (Michael Petlan) [2154066]
+- perf/x86/intel/pt: Add a capability and config bit for disabling TNTs (Michael Petlan) [2154066]
+- perf/x86/intel/pt: Add a capability and config bit for event tracing (Michael Petlan) [2154068]
+- container_of: Update header inclusions (Desnes Nunes) [2196368]
+- media: netup_unidvb: fix irq init by register it at the end of probe (Desnes Nunes) [2196368]
+- media: dvb-usb: dw2102: fix uninit-value in su3000_read_mac_address (Desnes Nunes) [2196368]
+- media: dvb-usb: digitv: fix null-ptr-deref in digitv_i2c_xfer() (Desnes Nunes) [2196368]
+- media: dvb-usb-v2: rtl28xxu: fix null-ptr-deref in rtl28xxu_i2c_xfer (Desnes Nunes) [2196368]
+- media: dvb-usb-v2: ce6230: fix null-ptr-deref in ce6230_i2c_master_xfer() (Desnes Nunes) [2196368]
+- media: dvb-usb-v2: ec168: fix null-ptr-deref in ec168_i2c_xfer() (Desnes Nunes) [2196368]
+- media: dvb-usb: az6027: fix three null-ptr-deref in az6027_i2c_xfer() (Desnes Nunes) [2196368]
+- Revert "usb: xhci-pci: Set PROBE_PREFER_ASYNCHRONOUS" (Desnes Nunes) [2196368]
+- usb: typec: Don't try to register component master without components (Desnes Nunes) [2196368]
+- usb: typec: Only attempt to link USB ports if there is fwnode (Desnes Nunes) [2196368]
+- usb: core: Unregister device on component_add() failure (Desnes Nunes) [2196368]
+- usb: core: add quirk for Alcor Link AK9563 smartcard reader (Desnes Nunes) [2196368]
+- USB: new quirk for Dell Gen 2 devices (Desnes Nunes) [2196368]
+- USB: quirks: add STRING quirk for VCOM device (Desnes Nunes) [2196368]
+- USB: quirks: add a Realtek card reader (Desnes Nunes) [2196368]
+- usb: typec: altmodes/displayport: Fix probe pin assign check (Desnes Nunes) [2196368]
+- usb: typec: ucsi: Don't attempt to resume the ports before they exist (Desnes Nunes) [2196368]
+- USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100 (Desnes Nunes) [2196368]
+- usb: host: ehci-fsl: Fix module alias (Desnes Nunes) [2196368]
+- usb: core: hub: disable autosuspend for TI TUSB8041 (Desnes Nunes) [2196368]
+- USB: fix misleading usb_set_intfdata() kernel doc (Desnes Nunes) [2196368]
+- usb: typec: tcpm: Fix altmode re-registration causes sysfs create fail (Desnes Nunes) [2196368]
+- usb: typec: altmodes/displayport: Use proper macro for pin assignment check (Desnes Nunes) [2196368]
+- usb: typec: altmodes/displayport: Fix pin assignment calculation (Desnes Nunes) [2196368]
+- usb: typec: altmodes/displayport: Add pin assignment helper (Desnes Nunes) [2196368]
+- usb: ucsi: Ensure connector delayed work items are flushed (Desnes Nunes) [2196368]
+- xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables (Desnes Nunes) [2196368]
+- usb: acpi: add helper to check port lpm capability using acpi _DSM (Desnes Nunes) [2196368]
+- xhci: Add a flag to disable USB3 lpm on a xhci root port level. (Desnes Nunes) [2196368]
+- xhci: Add update_hub_device override for PCI xHCI hosts (Desnes Nunes) [2196368]
+- xhci: Fix null pointer dereference when host dies (Desnes Nunes) [2196368]
+- usb: xhci: Check endpoint is valid before dereferencing it (Desnes Nunes) [2196368]
+- xhci-pci: set the dma max_seg_size (Desnes Nunes) [2196368]
+- usb-storage: apply IGNORE_UAS only for HIKSEMI MD202 on RTL9210 (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EM05CN modem (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EM05CN (SG) modem (Desnes Nunes) [2196368]
+- USB: serial: cp210x: add SCALANCE LPE-9000 device id (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EC200U modem (Desnes Nunes) [2196368]
+- USB: serial: qcserial: add EM9191 QDL support (Desnes Nunes) [2196368]
+- USB: serial: option: add prod. id for Quectel EG91 (Desnes Nunes) [2196368]
+- USB: serial: option: add Telit LE910Cx composition 0x1204 (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EM05-G (RS) modem (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EM05-G (GR) modem (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EM05-G (CS) modem (Desnes Nunes) [2196368]
+- thunderbolt: Disable XDomain lane 1 only in software connection manager (Desnes Nunes) [2196368]
+- thunderbolt: Use correct function to calculate maximum USB3 link rate (Desnes Nunes) [2196368]
+- thunderbolt: Do not call PM runtime functions in tb_retimer_scan() (Desnes Nunes) [2196368]
+- Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout" (Desnes Nunes) [2196368]
+- thunderbolt: Do not report errors if on-board retimers are found (Desnes Nunes) [2196368]
+- treewide: Convert del_timer*() to timer_shutdown*() (Desnes Nunes) [2196368]
+- USB: core: export usb_cache_string() (Desnes Nunes) [2196368]
+- usb: ulpi: defer ulpi_register on ulpi_read_id timeout (Desnes Nunes) [2196368]
+- usb: storage: Add check for kcalloc (Desnes Nunes) [2196368]
+- USB: sisusbvga: use module_usb_driver() (Desnes Nunes) [2196368]
+- USB: sisusbvga: rename sisusb.c to sisusbvga.c (Desnes Nunes) [2196368]
+- USB: sisusbvga: remove console support (Desnes Nunes) [2196368]
+- media: Switch to use dev_err_probe() helper (Desnes Nunes) [2196368]
+- media: uvcvideo: Fix memory leak in uvc_gpio_parse (Desnes Nunes) [2196368]
+- media: usb: pwc-uncompress: Use flex array destination for memcpy() (Desnes Nunes) [2196368]
+- media: usb: pwc-uncompress: Use struct_size() helper in pwc_decompress() (Desnes Nunes) [2196368]
+- firmware_loader: fix up to_fw_sysfs() to preserve const (Desnes Nunes) [2196368]
+- usb.h: take advantage of container_of_const() (Desnes Nunes) [2196368]
+- device.h: move kobj_to_dev() to use container_of_const() (Desnes Nunes) [2196368]
+- container_of: add container_of_const() that preserves const-ness of the pointer (Desnes Nunes) [2196368]
+- driver core: allow kobj_to_dev() to take a const pointer (Desnes Nunes) [2196368]
+- container_of: remove container_of_safe() (Desnes Nunes) [2196368]
+- linux/container_of.h: switch to static_assert (Desnes Nunes) [2196368]
+- media: dvb-usb: m920x: make read-only arrays static const (Desnes Nunes) [2196368]
+- net: thunderbolt: Use bitwise types in the struct thunderbolt_ip_frame_header (Desnes Nunes) [2196368]
+- net: thunderbolt: Switch from __maybe_unused to pm_sleep_ptr() etc (Desnes Nunes) [2196368]
+- USB: serial: f81534: fix division by zero on line-speed change (Desnes Nunes) [2196368]
+- xhci: remove unused stream_id parameter from xhci_handle_halted_endpoint() (Desnes Nunes) [2196368]
+- xhci: Prevent infinite loop in transaction errors recovery for streams (Desnes Nunes) [2196368]
+- xhci: disable U3 suspended ports in S4 hibernate poweroff_late stage (Desnes Nunes) [2196368]
+- USB: hcd-pci: Fully suspend across freeze/thaw cycle (Desnes Nunes) [2196368]
+- USB: core: Disable remote wakeup for freeze/quiesce (Desnes Nunes) [2196368]
+- xhci: export two xhci_hub functions for xhci-pci module usage (Desnes Nunes) [2196368]
+- xhci: Apply XHCI_RESET_TO_DEFAULT quirk to ADL-N (Desnes Nunes) [2196368]
+- xhci: print warning when HCE was set (Desnes Nunes) [2196368]
+- Revert "xhci: Convert to use list_count()" (Desnes Nunes) [2196368]
+- xhci: Convert to use list_count() (Desnes Nunes) [2196368]
+- usb: typec: Add partner PD object wrapper (Desnes Nunes) [2196368]
+- usb: xhci-mtk: fix leakage of shared hcd when fail to set wakeup irq (Desnes Nunes) [2196368]
+- usb: add usb_set_intfdata() documentation (Desnes Nunes) [2196368]
+- usb: host: fix a typo in ehci.h (Desnes Nunes) [2196368]
+- usb: core: hcd: Fix return value check in usb_hcd_setup_local_mem() (Desnes Nunes) [2196368]
+- usb: typec: ucsi: Resume in separate work (Desnes Nunes) [2196368]
+- usb: roles: fix of node refcount leak in usb_role_switch_is_parent() (Desnes Nunes) [2196368]
+- net: thunderbolt: Use kmap_local_page() instead of kmap_atomic() (Desnes Nunes) [2196368]
+- media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer() (Desnes Nunes) [2196368]
+- media: dvb-usb: dib0700_devices: Remove unused struct dibx090p_adc (Desnes Nunes) [2196368]
+- media: dib0700: remove orphan dvb_usb_dib0700_ir_proto declaration (Desnes Nunes) [2196368]
+- media: dvb-usb: fix memory leak in dvb_usb_adapter_init() (Desnes Nunes) [2196368]
+- media: dvb-core: Enhance shared multi-frontend support (Desnes Nunes) [2196368]
+- media: docs: fix minor typos (Desnes Nunes) [2196368]
+- media: dvb-frontends: a8293: fix LNB powerup failure in PCTV 461e (Desnes Nunes) [2196368]
+- USB: serial: kl5kusb105: drop line-status helper (Desnes Nunes) [2196368]
+- USB: serial: kl5kusb105: simplify line-status handling (Desnes Nunes) [2196368]
+- USB: serial: kl5kusb105: clean up line-status handling (Desnes Nunes) [2196368]
+- USB: serial: cp210x: add support for B0 hangup (Desnes Nunes) [2196368]
+- USB: serial: cp210x: add Kamstrup RF sniffer PIDs (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EM05-G modem (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel RM520N (Desnes Nunes) [2196368]
+- USB: serial: ch341: fix lost character on LCR updates (Desnes Nunes) [2196368]
+- USB: serial: ch314: use usb_control_msg_recv() (Desnes Nunes) [2196368]
+- USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode (Desnes Nunes) [2196368]
+- USB: serial: option: add support for Cinterion MV31 with new baseline (Desnes Nunes) [2196368]
+- USB: serial: io_ti: add Agilent E5805A support (Desnes Nunes) [2196368]
+- USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS (Desnes Nunes) [2196368]
+- USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader (Desnes Nunes) [2196368]
+- USB: serial: option: add support for Cinterion MV32-WA/MV32-WB (Desnes Nunes) [2196368]
+- USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions (Desnes Nunes) [2196368]
+- USB: serial: option: add Telit FN990 compositions (Desnes Nunes) [2196368]
+- USB: serial: cp210x: add ID for GW Instek GDM-834x Digital Multimeter (Desnes Nunes) [2196368]
+- USB: serial: cp210x: add part-number debug printk (Desnes Nunes) [2196368]
+- USB: serial: option: add Telit LN920 compositions (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EM060K modem (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel RM500K module support (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EM05-G modem (Desnes Nunes) [2196368]
+- USB: serial: option: add Quectel EC200S-CN module support (Desnes Nunes) [2196368]
+- USB: serial: pl2303: add support for more HXN (G) types (Desnes Nunes) [2196368]
+- USB: serial: option: add Telit LE910Cx 0x1250 composition (Desnes Nunes) [2196368]
+- usb: typec: tipd: Set mode of operation for USB Type-C connector (Desnes Nunes) [2196368]
+- usb: typec: tipd: Move tps6598x_disconnect error path to its own label (Desnes Nunes) [2196368]
+- usb: typec: tipd: Fix typec_unregister_port error paths (Desnes Nunes) [2196368]
+- usb: typec: tipd: Only update power status on IRQ (Desnes Nunes) [2196368]
+- usb: typec: tipd: Forward plug orientation to typec subsystem (Desnes Nunes) [2196368]
+- tps6598x: clear int mask on probe failure (Desnes Nunes) [2196368]
+- usb: typec: tipd: Fix initialization sequence for cd321x (Desnes Nunes) [2196368]
+- usb: typec: tipd: Fix typo in cd321x_switch_power_state (Desnes Nunes) [2196368]
+- usb: typec: tipd: Enable event interrupts by default (Desnes Nunes) [2196368]
+- usb: typec: tipd: Remove FIXME about testing with I2C_FUNC_I2C (Desnes Nunes) [2196368]
+- usb: typec: tipd: Switch CD321X power state to S0 (Desnes Nunes) [2196368]
+- usb: typec: tipd: Add support for Apple CD321X (Desnes Nunes) [2196368]
+- usb: typec: tipd: Add short-circuit for no irqs (Desnes Nunes) [2196368]
+- usb: typec: tipd: Split interrupt handler (Desnes Nunes) [2196368]
+- dt-bindings: usb: tps6598x: Add Apple CD321x compatible (Desnes Nunes) [2196368]
+- dt-bindings: usb: Add TI tps6598x device tree binding documentation (Desnes Nunes) [2196368]
+- usb: typec: tipd: Remove WARN_ON in tps6598x_block_read (Desnes Nunes) [2196368]
+- usb: typec: tipd: Add an additional overflow check (Desnes Nunes) [2196368]
+- usb: typec: tipd: Don't read/write more bytes than required (Desnes Nunes) [2196368]
+- usb: typec: tipd: Fix spurious fwnode_handle_put in error path (Desnes Nunes) [2196368]
+- usb: typec: tipd: Cleanup resources if devm_tps6598_psy_register fails (Desnes Nunes) [2196368]
+- usb: host: xhci-mtk: omit shared hcd if either root hub has no ports (Desnes Nunes) [2196368]
+- usb: xhci-mtk: enable wake-up interrupt after runtime_suspend called (Desnes Nunes) [2196368]
+- usb: typec: tcpci: fix of node refcount leak in tcpci_register_port() (Desnes Nunes) [2196368]
+- usb: typec: Check for ops->exit instead of ops->enter in altmode_exit (Desnes Nunes) [2196368]
+- usb: ftdi-elan: remove variable l (Desnes Nunes) [2196368]
+- Documentation: USB: correct possessive "its" usage (Desnes Nunes) [2196368]
+- usb: Check !irq instead of irq == NO_IRQ (Desnes Nunes) [2196368]
+- tools: usb: ffs-aio-example: Fix build error with aarch64-*-gnu-gcc toolchain(s) (Desnes Nunes) [2196368]
+- usb: xhci-pci: Set PROBE_PREFER_ASYNCHRONOUS (Desnes Nunes) [2196368]
+- usb: ehci-pci: Set PROBE_PREFER_ASYNCHRONOUS (Desnes Nunes) [2196368]
+- dt-bindings: usb: usb-drd: Describe default dual-role mode (Desnes Nunes) [2196368]
+- dt-bindings: usb: xhci: Add Broadcom STB v2 compatible device (Desnes Nunes) [2196368]
+- dt-bindings: usb: Convert xHCI bindings to DT schema (Desnes Nunes) [2196368]
+- usb: host: Add ability to build new Broadcom STB USB drivers (Desnes Nunes) [2196368]
+- dt-bindings: Add Broadcom STB USB support (Desnes Nunes) [2196368]
+- dt-bindings: usb: Add generic "usb-phy" property (Desnes Nunes) [2196368]
+- dt-bindings: usb: usb-hcd: Add "tpl-support" property (Desnes Nunes) [2196368]
+- dt-bindings: usb: Add "ulpi/serial/hsic" PHY types (Desnes Nunes) [2196368]
+- dt-bindings: usb: usb-drd: Add "otg-rev" property constraints (Desnes Nunes) [2196368]
+- dt-bindings: usb: Convert generic USB properties to DT schemas (Desnes Nunes) [2196368]
+- dt-bindings: usb: mtu3: add properties about USB Role Switch (Desnes Nunes) [2196368]
+- dt-bindings: usb: add binding for USB GPIO based connection detection driver (Desnes Nunes) [2196368]
+- dt-bindings: connector: add optional properties for Type-B (Desnes Nunes) [2196368]
+- dt-bindings: connector: Add self-powered property (Desnes Nunes) [2196368]
+- dt-bindings: usb: generic: Add role-switch-default-mode binding (Desnes Nunes) [2196368]
+- dt-binding: usb: add usb-role-switch property (Desnes Nunes) [2196368]
+- dt-binding: usb: add "super-speed-plus" (Desnes Nunes) [2196368]
+- dt-bindings: usb: usb-hcd: Detach generic USB controller properties (Desnes Nunes) [2196368]
+- dt-bindings: Explicitly allow additional properties in common schemas (Desnes Nunes) [2196368]
+- dt-bindings: usb: Bring back phy-names (Desnes Nunes) [2196368]
+- usb: core: stop USB enumeration if too many retries (Desnes Nunes) [2196368]
+- usb: hub: port: add sysfs entry to switch port power (Desnes Nunes) [2196368]
+- usb: typec: port-mapper: Convert to the component framework (Desnes Nunes) [2196368]
+- usb: Link the ports to the connectors they are attached to (Desnes Nunes) [2196368]
+- usb: Remove usb_for_each_port() (Desnes Nunes) [2196368]
+- thunderbolt: Add wake on connect/disconnect on USB4 ports (Desnes Nunes) [2196368]
+- thunderbolt: Link USB4 ports to their USB Type-C connectors (Desnes Nunes) [2196368]
+- usb: core: Use kstrtobool() instead of strtobool() (Desnes Nunes) [2196368]
+- kernel.h: split out kstrtox() and simple_strtox() to a separate header (Desnes Nunes) [2196368]
+- USB: core: Change configuration warnings to notices (Desnes Nunes) [2196368]
+- thunderbolt: ACPI: Use the helper fwnode_find_reference() (Desnes Nunes) [2196368]
+- thunderbolt: Remove redundant assignment to variable len (Desnes Nunes) [2196368]
+- thunderbolt: Use str_enabled_disabled() helper (Desnes Nunes) [2196368]
+- media: device property: Add a function to test is a fwnode is a graph endpoint (Desnes Nunes) [2196368]
+- usb: typec: mux: Allow multiple mux_devs per mux (Desnes Nunes) [2196368]
+- usb: typec: mux: Introduce indirection (Desnes Nunes) [2196368]
+- device property: Use multi-connection matchers for single case (Desnes Nunes) [2196368]
+- device property: Fix fwnode_graph_devcon_match() fwnode leak (Desnes Nunes) [2196368]
+- device property: Add helper to match multiple connections (Desnes Nunes) [2196368]
+- Documentation: Remove device connection documentation (Desnes Nunes) [2196368]
+- usb: ftdi-elan: remove variable err_count (Desnes Nunes) [2196368]
+- USB: make devnode() callback in usb_class_driver take a const * (Desnes Nunes) [2196368]
+- USB: remove usb_bus_type from usb.h (Desnes Nunes) [2196368]
+- USB: allow some usb functions to take a const pointer. (Desnes Nunes) [2196368]
+
+* Thu Jun 22 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-499.el8]
+- s390/ap: Fix hanging ioctl caused by orphaned replies (Tobias Huschle) [2215891]
+- crypto: jitter - correct health test during initialization (Vladis Dronov) [2214270]
+- x86: properly define CONFIG_AS_TPAUSE in Makefile (Nico Pache) [2193009]
+- zsmalloc: fix races between asynchronous zspage free and page migration (Oleksandr Natalenko) [2213146]
+- netfilter: ip6t_rpfilter: Fix regression with VRF interfaces (Phil Sutter) [2169958]
+- x86/mm: Avoid incomplete Global INVLPG flushes (Rafael Aquini) [2213793]
+- rbd: get snapshot context after exclusive lock is ensured to be held (Ilya Dryomov) [2214973]
+- rbd: move RBD_OBJ_FLAG_COPYUP_ENABLED flag setting (Ilya Dryomov) [2214973]
+- vfio/pci: Also demote hiding standard cap messages (Oleksandr Natalenko) [2207849]
+- vfio/pci: demote hiding ecap messages to debug level (Oleksandr Natalenko) [2207849]
+- mm: avoid unnecessary page fault retires on shared memory types (Nico Pache) [2213877]
+- mm: remove redundant check about FAULT_FLAG_ALLOW_RETRY bit (Nico Pache) [2213877]
+- mm: Allow the [page|pfn]_mkwrite callbacks to drop the mmap_sem (Nico Pache) [2213877]
+- s390/qeth: convert sysfs snprintf to sysfs_emit (Tobias Huschle) [2203380]
+- s390/lcs: Fix return type of lcs_start_xmit() (Tobias Huschle) [2203380]
+- s390/netiucv: Fix return type of netiucv_tx() (Tobias Huschle) [2203380]
+- s390/ctcm: Fix return type of ctc{mp,}m_tx() (Tobias Huschle) [2203380]
+- s390/pci: clean up left over special treatment for function zero (Tobias Huschle) [2214268]
+- s390/pci: remove redundant pci_bus_add_devices() on new bus (Tobias Huschle) [2214268]
+- s390/pci: only add specific device in zpci_bus_scan_device() (Tobias Huschle) [2214268]
+- PCI: s390: Fix use-after-free of PCI resources with per-function hotplug (Tobias Huschle) [2214268]
+- net: atlantic: fix potential memory leak in aq_ndev_close() (Íñigo Huguet) [2184353]
+- net: atlantic: fix aq_vec index out of range error (Íñigo Huguet) [2179726 2184353]
+- net: atlantic: verify hw_head_ lies within TX buffer ring (Íñigo Huguet) [2184353]
+- net: atlantic: add check for MAX_SKB_FRAGS (Íñigo Huguet) [2184353]
+- net: atlantic: reduce scope of is_rsc_complete (Íñigo Huguet) [2184353]
+- net: atlantic: fix "frag[0] not initialized" (Íñigo Huguet) [2184353]
+- net: atlantic: Avoid out-of-bounds indexing (Íñigo Huguet) [2179726 2184353]
+- atlantic: Fix buff_ring OOB in aq_ring_rx_clean (Íñigo Huguet) [2184353]
+- atlantic: Remove warn trace message. (Íñigo Huguet) [2184353]
+- atlantic: Fix statistics logic for production hardware (Íñigo Huguet) [2184353]
+- atlantic: Add missing DIDs and fix 115c. (Íñigo Huguet) [2184353]
+- atlantic: Fix to display FW bundle version instead of FW mac version. (Íñigo Huguet) [2184353]
+- atlantic: Increase delay for fw transactions (Íñigo Huguet) [2184353]
+- atlantic: fix double-free in aq_ring_tx_clean (Íñigo Huguet) [2184353]
+- atlantic: Fix OOB read and write in hw_atl_utils_fw_rpc_wait (Íñigo Huguet) [2184353]
+- net: ethernet: aquantia: Handle error cleanup of start on open (Íñigo Huguet) [2184353]
+- aquantia: Remove the build_skb path (Íñigo Huguet) [2184353]
+- net: fix __dev_kfree_skb_any() vs drop monitor (Antoine Tenart) [2184076]
+- ipv6: icmp6: add drop reason support to icmpv6_echo_reply() (Antoine Tenart) [2184076]
+- ipv6: icmp6: add SKB_DROP_REASON_IPV6_NDISC_NS_OTHERHOST (Antoine Tenart) [2184076]
+- ipv6: icmp6: add SKB_DROP_REASON_IPV6_NDISC_BAD_OPTIONS (Antoine Tenart) [2184076]
+- ipv6: icmp6: add drop reason support to ndisc_redirect_rcv() (Antoine Tenart) [2184076]
+- ipv6: icmp6: add drop reason support to ndisc_router_discovery() (Antoine Tenart) [2184076]
+- ipv6: icmp6: add drop reason support to ndisc_recv_rs() (Antoine Tenart) [2184076]
+- ipv6: icmp6: add drop reason support to ndisc_recv_na() (Antoine Tenart) [2184076]
+- ipv6: icmp6: add drop reason support to ndisc_recv_ns() (Antoine Tenart) [2184076]
+- ipv6: icmp6: add drop reason support to ndisc_rcv() (Antoine Tenart) [2184076]
+- ipv6: icmp6: add drop reason support to icmpv6_notify() (Antoine Tenart) [2184076]
+- net: add pskb_may_pull_reason() helper (Antoine Tenart) [2184076]
+- net-next: skbuff: refactor pskb_pull (Antoine Tenart) [2184076]
+- net: dropreason: add SKB_DROP_REASON_IPV6_BAD_EXTHDR (Antoine Tenart) [2184076]
+- rxrpc: Use consume_skb() rather than kfree_skb_reason() (Antoine Tenart) [2184076]
+- ipv4: raw: add drop reasons (Antoine Tenart) [2184076]
+- ipv6: raw: add drop reasons (Antoine Tenart) [2184076]
+- tcp: add TCP_MINTTL drop reason (Antoine Tenart) [2184076]
+- net: fix call location in kfree_skb_list_reason (Antoine Tenart) [2184076]
+- rxrpc: Show consumed and freed packets as non-dropped in dropwatch (Antoine Tenart) [2184076]
+- net: tun: rebuild error handling in tun_get_user (Antoine Tenart) [2184076]
+- ALSA: Update kernel configuration for 8.9 (Jaroslav Kysela) [2179850]
+- soundwire: stream: Add missing clear of alloc_slave_rt (Jaroslav Kysela) [2179850]
+- soundwire: dmi-quirks: add new mapping for HP Spectre x360 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Enable 4 amplifiers instead of 2 on a HP platform (Jaroslav Kysela) [2179850]
+- ALSA: hda: Fix kctl->id initialization (Jaroslav Kysela) [2179850]
+- ALSA: gus: Fix kctl->id initialization (Jaroslav Kysela) [2179850]
+- ALSA: cmipci: Fix kctl->id initialization (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Fix kctl->id initialization (Jaroslav Kysela) [2179850]
+- ALSA: ice1712,ice1724: fix the kcontrol->id initialization (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for Clevo NS50AU (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirks for Asus ROG 2024 laptops using CS35L41 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add "Intel Reference board" and "NUC 13" SSID in the ALC256 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add Lenovo P3 Tower platform (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add a quirk for HP Slim Desktop S01 (Jaroslav Kysela) [2179850]
+- ASoC: simple-card-utils: fix PCM constraint error check (Jaroslav Kysela) [2179850]
+- ASoC: max98363: limit the number of channel to 1 (Jaroslav Kysela) [2179850]
+- ASoC: max98363: Removed 32bit support (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add Thinkpad Neo14 to quirks list for acp6x (Jaroslav Kysela) [2179850]
+- ASoC: nau8824: Add quirk to active-high jack-detect (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: fix for acp_lock access in pdm driver (Jaroslav Kysela) [2179850]
+- ASoC: simple-card: Add missing of_node_put() in case of error (Jaroslav Kysela) [2179850]
+- ASoC: codecs: wsa881x: do not set can_multi_write flag (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: remove code for module namespaces (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Enable headset onLenovo M70/M90 (Jaroslav Kysela) [2179850]
+- regmap: sdw: check for invalid multi-register writes config (Jaroslav Kysela) [2179850]
+- ALSA: hda/ca0132: add quirk for EVGA X299 DARK (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add missing checks on FE startup (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Fix avs_path_module::instance_id size (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Account for UID of ACPI device (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Fix declaration of enum avs_channel_config (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Fix declaration of enum skl_ch_cfg (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Access path components under lock (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Fix module lookup (Jaroslav Kysela) [2179850]
+- ALSA: hda: Fix unhandled register update during auto-suspend period (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm: test if a BE can be prepared (Jaroslav Kysela) [2179850]
+- ALSA: hda: Add NVIDIA codec IDs a3 through a7 to patch table (Jaroslav Kysela) [2179850]
+- ALSA: oss: avoid missing-prototype warnings (Jaroslav Kysela) [2179850]
+- ALSA: cs46xx: mark snd_cs46xx_download_image as static (Jaroslav Kysela) [2179850]
+- ALSA: hda: Fix Oops by 9.1 surround channel names (Jaroslav Kysela) [2179850]
+- ASoC: rt5682: Disable jack detection interrupt during suspend (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Separate the tokens for input and output pin index (Jaroslav Kysela) [2179850]
+- ASoC: SOF: topology: Fix tuples array allocation (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helper to program SoundWire PCMSyCM registers (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: initialize instance_offset member (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: use 'ml_addr' parameter consistently (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: fix base_ptr computation (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helper to get SoundWire hlink (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: fix sublink refcounting (Jaroslav Kysela) [2179850]
+- ASoC: SOF: topology: Fix logic for copying tuples (Jaroslav Kysela) [2179850]
+- ASoC: dwc: move DMA init to snd_soc_dai_driver probe() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc3-topology: Make sure that only one cmd is sent in dai_config (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pm: save io region state in case of errors in resume (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-client-probes: fix pm_runtime imbalance in error handling (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pcm: fix pm_runtime imbalance in error handling (Jaroslav Kysela) [2179850]
+- ASoC: SOF: debug: conditionally bump runtime_pm counter on exceptions (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Fix mute and micmute LEDs for yet another HP laptop (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Add a sample rate workaround for Line6 Pod Go (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Apply HP B&O top speaker profile to Pavilion 15 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirks for ASUS GU604V and GU603V (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for HP EliteBook G10 laptops (Jaroslav Kysela) [2179850]
+- tools include UAPI: Sync the sound/asound.h copy with the kernel sources (Jaroslav Kysela) [2179850]
+- firewire: net: fix unexpected release of object for asynchronous request packet (Jaroslav Kysela) [2179850]
+- ASoC: ssm2602: Add workaround for playback distortions (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Fix NULL pointer crash in acp_sof_ipc_msg_data function (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add a quirk for HP EliteDesk 805 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for 2nd ASUS GU603 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for Clevo L140AU (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add DMI entry to support System76 Pangolin 12 (Jaroslav Kysela) [2179850]
+- ALSA: pcm: use exit controlled loop in snd_pcm_playback_silence() (Jaroslav Kysela) [2179850]
+- ALSA: pcm: simplify top-up mode init in snd_pcm_playback_silence() (Jaroslav Kysela) [2179850]
+- ALSA: pcm: playback silence - move silence variable updates to separate function (Jaroslav Kysela) [2179850]
+- ALSA: pcm: playback silence - remove extra code (Jaroslav Kysela) [2179850]
+- ALSA: pcm: fix playback silence - correct incremental silencing (Jaroslav Kysela) [2179850]
+- ALSA: pcm: fix playback silence - use the actual new_hw_ptr for the threshold mode (Jaroslav Kysela) [2179850]
+- ALSA: pcm: Revert "ALSA: pcm: rewrite snd_pcm_playback_silence()" (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Fix mute and micmute LEDs for an HP laptop (Jaroslav Kysela) [2179850]
+- ALSA: caiaq: input: Add error handling for unsupported input methods in `snd_usb_caiaq_input_init` (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Add quirk for Pioneer DDJ-800 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: support HP Pavilion Aero 13-be0xxx Mute LED (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for ASUS UM3402YAR using CS35L41 (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add Asus VivoBook Pro 14 OLED M6400RC to the quirks list for acp6x (Jaroslav Kysela) [2179850]
+- ALSA: docs: Extend module parameters description (Jaroslav Kysela) [2179850]
+- ASoC: Intel: soc-acpi-cht: Add quirk for Nextbook Ares 8A tablet (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: use more existing defines instead of open-coded numbers (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add ASUS M3402RA into DMI table (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for ThinkPad P1 Gen 6 (Jaroslav Kysela) [2179850]
+- ALSA: hda: Glenfly: add HD Audio PCI IDs and HDMI Codec Vendor IDs. (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: use high-level I/O in set_filterQ() (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: fix error handling in snd_audigy_i2c_volume_put() (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: don't stop DSP in _snd_emu10k1_{,audigy_}init_efx() (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: skip Sound Blaster-specific hacks for E-MU cards (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: fixup DSP defines (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: use high-level I/O functions also during init (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: fix SNDRV_EMU10K1_IOCTL_SINGLE_STEP (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: pull in some register definitions from kX-project (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: remove some bogus defines (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: eliminate some unused defines (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: fix lineup of EMU_HANA_* defines (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: comment updates (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: fix snd_emu1010_fpga_read() input masking for rev2 cards (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: remove unused emu->pcm_playback_efx_substream field (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: remove unused `resume` parameter from snd_emu10k1_init() (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: minor optimizations (Jaroslav Kysela) [2179850]
+- ASoC: max98090: make it selectable (Jaroslav Kysela) [2179850]
+- ASoC: Intel: soc-acpi-byt: Fix "WM510205" match no longer working (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Rate limit usb_set_interface error reporting (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: remove remaining cruft from snd_emu10k1_emu1010_init() (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: clean up P16V part somewhat (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: clarify various fx8010.*_mask fields (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: remove apparently pointless EMU_HANA_OPTION_CARDS reads (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: remove apparently pointless FPGA reads (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: remove unused snd_emu10k1_voice.emu field (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: stop doing weird things with HCFG in snd_emu10k1_emu1010_init() (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: remove obsolete card type variable and defines (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: fix access to Audigy GPIO port (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: drop redundant snd_emu10k1_efx_playback_pointer() (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: properly assert E-MU FPGA access constaints (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: drop redundant snd_emu10k1_efx_playback_hw_free() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pcm: Add an option to skip platform trigger during stop (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Do not stop/start DMA during pause/release (Jaroslav Kysela) [2179850]
+- ALSA: pcm: rewrite snd_pcm_playback_silence() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: Split the set_power_op for IPC3 and IPC4 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_sdw: append codec type to dai link name (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_sdw: support different devices on the same sdw link (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_sdw: set codec_num = 1 if the device is not aggregated (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_sdw_max98373: change sof_sdw_mx8373_late_probe to static call (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_sdw: remove late_probe flag in struct sof_sdw_codec_info (Jaroslav Kysela) [2179850]
+- ASoC: Intel: soc-acpi: Add entry for rt711-sdca-sdw at link 2 in RPL match table (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_cirrus_common: Guard against missing buses (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Use no_reply calls for TX (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc: Add no reply inline calls (Jaroslav Kysela) [2179850]
+- ASoC: es8316: Don't use ranges based register lookup for a single register (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Remove specific patch for Dell Precision 3260 (Jaroslav Kysela) [2179850]
+- ASoC: nau8825: fix bounds check for adc_delay (Jaroslav Kysela) [2179850]
+- ASoC: codecs: wcd934x: Simplify &pdev->dev in probe (Jaroslav Kysela) [2179850]
+- ASoC: codecs: wcd934x: Simplify with dev_err_probe (Jaroslav Kysela) [2179850]
+- ASoC: codecs: wcd9335: Simplify with dev_err_probe (Jaroslav Kysela) [2179850]
+- ALSA: hda/hdmi: Remove some dead code (Jaroslav Kysela) [2179850]
+- ASoC: cs35l41: Fix default regmap values for some registers (Jaroslav Kysela) [2179850]
+- ASoC: ssm2602: Add support for CLKDIV2 (Jaroslav Kysela) [2179850]
+- ASoC: nau8825: Add delay control for input path (Jaroslav Kysela) [2179850]
+- ALSA: hda/hdmi: disable KAE for Intel DG2 (Jaroslav Kysela) [2179850]
+- ASoC: da7218: Use devm_clk_get_optional() (Jaroslav Kysela) [2179850]
+- ASoC: da7219: Improve the relability of AAD IRQ process (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirks for Lenovo Z13/Z16 Gen2 (Jaroslav Kysela) [2179850]
+- ASoC: amd: Add check for acp config flags (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add ThinkBook 14 G5+ ARP to quirks list for acp6x (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: mtl: fix page fault in dspless mode when DSP is disabled (Jaroslav Kysela) [2179850]
+- ASoC: tas5720: add missing unwind goto in tas5720_codec_probe (Jaroslav Kysela) [2179850]
+- ASoC: ep93xx: Add OF support (Jaroslav Kysela) [2179850]
+- ASoC: ep93xx: i2s: Make it individually selectable (Jaroslav Kysela) [2179850]
+- ASoC: cs4271: flat regcache, trivial simplifications (Jaroslav Kysela) [2179850]
+- ASoC: ep93xx: i2s: move enable call to startup callback (Jaroslav Kysela) [2179850]
+- ASoC: amd: Add Dell G15 5525 to quirks list (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Print the format_val as hexadecimal number (Jaroslav Kysela) [2179850]
+- ASoC: max98373: change power down sequence for smart amp (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: MTL: conditionally wake WPIO1PG domain (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Add rpl_mx98360_rt5682 driver (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: add __func__ in SoundWire lcount() error logs (Jaroslav Kysela) [2179850]
+- ALSA: hda: patch_realtek: add quirk for Asus N7601ZM (Jaroslav Kysela) [2179850]
+- ALSA: hda: LNL: add HD Audio PCI ID (Jaroslav Kysela) [2179850]
+- ASoC: max98363: Make soc_codec_dev_max98363 static (Jaroslav Kysela) [2179850]
+- soundwire: bus: Fix unbalanced pm_runtime_put() causing usage count underflow (Jaroslav Kysela) [2179850]
+- ALSA: firewire-tascam: add missing unwind goto in snd_tscm_stream_start_duplex() (Jaroslav Kysela) [2179850]
+- ALSA: document that struct __snd_pcm_mmap_control64 is messed up (Jaroslav Kysela) [2179850]
+- ASoC: rt712-sdca: Add RT712 SDCA driver for Mic topology (Jaroslav Kysela) [2179850]
+- ASoC: add snd_soc_card_mutex_lock/unlock() (Jaroslav Kysela) [2179850]
+- ASoC: expand snd_soc_dpcm_mutex_lock/unlock() (Jaroslav Kysela) [2179850]
+- ASoC: expand snd_soc_dapm_mutex_lock/unlock() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: tidyup dapm_connect_dai_pair() (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: documentation updates (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: update label & help in config system (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: don't create old pass-through playback device on Audigy (Jaroslav Kysela) [2179850]
+- ALSA: emu10k1: fix capture interrupt handler unlinking (Jaroslav Kysela) [2179850]
+- ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards (Jaroslav Kysela) [2179850]
+- ALSA: i2c/cs8427: fix iec958 mixer control deactivation (Jaroslav Kysela) [2179850]
+- ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard (Jaroslav Kysela) [2179850]
+- ALSA: pcm: fix wait_time calculations (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pm: Tear down pipelines only if DSP was active (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helper to retrieve eml_lock (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helper to offload link ownership (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helpers to retrieve DMIC/SSP hlink (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: program SoundWire LSDIID registers (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helper to check cmdsync (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helpers for sync_arm/sync_go (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helpers to set link SYNC frequency (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helpers to enable/check interrupts (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helper to return sublink count (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add convenience helpers for SoundWire PM (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: introduce helpers for 'extended links' PM (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: special-case HDaudio regular links (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add structures to parse ALT links (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: move to a dedicated module (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add return value for hda_bus_ml_get_capabilities() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: improve hda_bus_ml_free() helper (Jaroslav Kysela) [2179850]
+- ALSA: hda: add HDaudio Extended link definitions (Jaroslav Kysela) [2179850]
+- Documentation: sound: add description of Intel HDaudio multi-links (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-tgl: Allow DSPless mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-skl: Allow DSPless mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-mtl: Allow DSPless mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-icl: Allow DSPless mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-cnl: Allow DSPless mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-apl: Allow DSPless mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: make DSPless mode work with DSP disabled in BIOS (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Add support for DSPless mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Skip interfaces not supported on a platform (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add support for DSPless mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add flag and state which will be used for DSP-less mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-stream: Do not dereference hstream until it is safe (Jaroslav Kysela) [2179850]
+- ASoC: tegra20_ac97: Add missing unwind goto in tegra20_ac97_platform_probe() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Clarify bind failure caused by missing fw_module (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: refactor dmic codec platform device creation (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: refactor error checks in probe call (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: refactor get_chip_info callback (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: remove unused variables (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: remove acp_dai_probe() function (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: remove unused code (Jaroslav Kysela) [2179850]
+- ASoC: soc.h: remove unused params/num_params (Jaroslav Kysela) [2179850]
+- ASoC: samsung: switch to use c2c_params instead of params (Jaroslav Kysela) [2179850]
+- ASoC: audio-graph-card2: switch to use c2c_params instead of params (Jaroslav Kysela) [2179850]
+- ASoC: soc.h: clarify Codec2Codec params (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add DMI entries to support HP OMEN 16-n0xxx (8A42) (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for Clevo X370SNW (Jaroslav Kysela) [2179850]
+- ALSA: hda/hdmi: Preserve the previous PCM device upon re-enablement (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: update the acp clock source. (Jaroslav Kysela) [2179850]
+- ASoC: max98363: add soundwire amplifier driver (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4/intel: Fix spelling mistake "schduler" -> "scheduler" (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4/intel: Add missing mutex_unlock() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4/intel: Add support for chained DMA (Jaroslav Kysela) [2179850]
+- ASoC: SOF: avoid a NULL dereference with unsupported widgets (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Use register macro in place of integer literal (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Use u16 consistently for old_legacy_ctrl (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Store additional legacy registers on suspend (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Store saved legacy registers in an array (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Move allocation of saved registers to struct snd_ymfpci (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Switch to DEFINE_SIMPLE_DEV_PM_OPS() (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Add error messages for abritrary IO ports on older chips (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Fix BUG_ON in probe function (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: Create card with device-managed snd_devm_card_new() (Jaroslav Kysela) [2179850]
+- ASoC: soc-topology.c: dai_link->platform again (Jaroslav Kysela) [2179850]
+- firmware: cs_dsp: Add a debugfs entry containing control details (Jaroslav Kysela) [2179850]
+- ASoC: wm8903: Remove outdated DMIC comment (Jaroslav Kysela) [2179850]
+- ASoC: es8316: Handle optional IRQ assignment (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for Lenovo ZhaoYang CF4620Z (Jaroslav Kysela) [2179850]
+- ASoC: da7213.c: add missing pm_runtime_disable() (Jaroslav Kysela) [2179850]
+- ASoC: audio-graph-card2-custom-sample.dtsi: use card->name to avoid long name (Jaroslav Kysela) [2179850]
+- ASoC: soc-core.c: add snd_soc_add_pcm_runtimes() (Jaroslav Kysela) [2179850]
+- ALSA: asihpi: remove unused loop_count variable (Jaroslav Kysela) [2179850]
+- ASoC: hdac_hdmi: use set_stream() instead of set_tdm_slots() (Jaroslav Kysela) [2179850]
+- ASoC: dapm: Sort speakers after other outputs (Jaroslav Kysela) [2179850]
+- ASoC: soc-compress: Inherit atomicity from DAI link for Compress FE (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Fix regression on detection of Roland VS-100 (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt5682-sdw: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt715-sdca: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt715: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt712-sdca: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt711-sdca: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt711-sdw: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt700-sdw: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt1318-sdw: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt1316-sdw: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt1308-sdw: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: max98373-sdw: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: sdw-mockup: simplify set_stream (Jaroslav Kysela) [2179850]
+- ASoC: codecs: cs42l42-sdw: clear stream (Jaroslav Kysela) [2179850]
+- ASoC: simple-card.c: add missing of_node_put() (Jaroslav Kysela) [2179850]
+- ASoC: soc-topology.c: remove unnecessary dai_link->platform (Jaroslav Kysela) [2179850]
+- ASoC: ti: remove unnecessary dai_link->platform (Jaroslav Kysela) [2179850]
+- ASoC: atmel: remove unnecessary dai_link->platform (Jaroslav Kysela) [2179850]
+- ALSA: hdspm: remove unused copy_u32_le function (Jaroslav Kysela) [2179850]
+- ALSA: docs: A few more words for PCM XRUN handling and stream locks (Jaroslav Kysela) [2179850]
+- ALSA: docs: Add description about ack callback -EPIPE error handling (Jaroslav Kysela) [2179850]
+- ALSA: pcm: Improved XRUN handling for indirect PCM helpers (Jaroslav Kysela) [2179850]
+- soundwire: intel_auxdevice: improve pm_prepare step (Jaroslav Kysela) [2179850]
+- soundwire: bus: Update sdw_nread/nwrite_no_pm to handle page boundaries (Jaroslav Kysela) [2179850]
+- soundwire: bus: Update kernel doc for no_pm functions (Jaroslav Kysela) [2179850]
+- soundwire: bus: Remove now outdated comments on no_pm IO (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Fix support for Dell Precision 3260 (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Acer Iconia One 7 B1-750 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pcm: Improve the pcm trigger sequence (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pcm: Make hw_params reset conditional for IPC3 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Do not perform DMA cleanup during stop (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Ensure DSP is in D0I0 during sof_ipc4_set_get_data() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: Remove conditional dpcm_capture setting (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: Update BT offload config for MTL RVP (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: Update BT offload config for Rex (Jaroslav Kysela) [2179850]
+- soundwire: stream: uniquify dev_err() logs (Jaroslav Kysela) [2179850]
+- soundwire: stream: remove bus->dev from logs on multiple buses (Jaroslav Kysela) [2179850]
+- ASoC: tegra: remove unneeded semicolon (Jaroslav Kysela) [2179850]
+- ASoC: simple-card: add comment to indicate don't remove platforms (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-control: Return on error in sof_ipc4_widget_kcontrol_setup() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Add macros for chain-dma message bits (Jaroslav Kysela) [2179850]
+- ASoC: SOF: topology: Set pipeline widget before updating IPC structures (Jaroslav Kysela) [2179850]
+- soundwire: amd: add pm_prepare callback and pm ops support (Jaroslav Kysela) [2179850]
+- soundwire: amd: handle SoundWire wake enable interrupt (Jaroslav Kysela) [2179850]
+- soundwire: amd: add runtime pm ops for AMD SoundWire manager driver (Jaroslav Kysela) [2179850]
+- soundwire: amd: add SoundWire manager interrupt handling (Jaroslav Kysela) [2179850]
+- soundwire: amd: enable build for AMD SoundWire manager driver (Jaroslav Kysela) [2179850]
+- soundwire: amd: register SoundWire manager dai ops (Jaroslav Kysela) [2179850]
+- soundwire: amd: Add support for AMD Manager driver (Jaroslav Kysela) [2179850]
+- soundwire: export sdw_compute_slave_ports() function (Jaroslav Kysela) [2179850]
+- soundwire: intel: don't save hw_params for use in prepare (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Fix recursive locking at XRUN during syncing (Jaroslav Kysela) [2179850]
+- ALSA: hda/conexant: Partial revert of a quirk for Lenovo (Jaroslav Kysela) [2179850]
+- ASoC: wm_adsp: Simplify the logging of requested firmware files (Jaroslav Kysela) [2179850]
+- ASoC: wm_adsp: Add support for loading bin files without wmfw (Jaroslav Kysela) [2179850]
+- ASoC: wm_adsp: Expose the DSP boot work actions as wm_adsp_power_up() (Jaroslav Kysela) [2179850]
+- ASoC: wm_adsp: Support DSPs that don't require firmware download (Jaroslav Kysela) [2179850]
+- firmware: cs_dsp: Support DSPs that don't require firmware download (Jaroslav Kysela) [2179850]
+- ASoC: wm_adsp: Use no_core_startstop to prevent creating preload control (Jaroslav Kysela) [2179850]
+- firmware: cs_dsp: Introduce no_core_startstop for self-booting DSPs (Jaroslav Kysela) [2179850]
+- mfd: arizona-i2c: Add the missing device table IDs for OF (Jaroslav Kysela) [2179850]
+- ASoC: cs35l41: Add 12288000 clk freq to cs35l41_fs_mon clk config (Jaroslav Kysela) [2179850]
+- ALSA: portman2x4: remove unused portman_read_command,data functions (Jaroslav Kysela) [2179850]
+- ALSA: ymfpci: remove unused snd_ymfpci_readb function (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirks for some Clevo laptops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Initialize in_format to NULL in sof_ipc4_get_audio_fmt (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add DMI entries to support Victus by HP Laptop 16-e1xxx (8A22) (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: update pipeline_params in process prepare (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: set copier output format for process module (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Add support for base config extension (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: add base module config extension structure (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: add effect widget support (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Move the kcontrol module_id update to helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: use common helper function in copier prepare (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: support multiple configs for BE DAIs (Jaroslav Kysela) [2179850]
+- soundwire: stream: restore cumulative bus bandwidth when compute_params callback failed (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: rembrandt: Drop if blocks with always false condition (Jaroslav Kysela) [2179850]
+- ALSA: sh: aica: Drop if blocks with always false condition (Jaroslav Kysela) [2179850]
+- soundwire: bandwidth allocation: Use hweight32() to calculate set bits (Jaroslav Kysela) [2179850]
+- soundwire: dmi-quirks: add remapping for Intel 'Rooks County' NUC M15 (Jaroslav Kysela) [2179850]
+- ASoC: Intel: soc-acpi: add table for Intel 'Rooks County' NUC M15 (Jaroslav Kysela) [2179850]
+- ASOC: Intel: sof_sdw: add quirk for Intel 'Rooks County' NUC M15 (Jaroslav Kysela) [2179850]
+- soundwire: cadence: change access to IP_MCP_CMD_BASE (Jaroslav Kysela) [2179850]
+- soundwire: cadence: split access to IP_MCP_CMDCTRL fields (Jaroslav Kysela) [2179850]
+- soundwire: cadence: split access to IP_MCP_CONTROL fields (Jaroslav Kysela) [2179850]
+- soundwire: cadence: split access to IP_MCP_CONFIG fields (Jaroslav Kysela) [2179850]
+- soundwire: cadence: add helpers to access IP_MCP registers (Jaroslav Kysela) [2179850]
+- soundwire: cadence: remove CDNS_MCP_CONFIG_SSPMOD (Jaroslav Kysela) [2179850]
+- soundwire: intel: move bank switch routine to common intel_bus_common.c (Jaroslav Kysela) [2179850]
+- soundwire: intel: add abstraction for cmdsync check (Jaroslav Kysela) [2179850]
+- soundwire: intel: move bus common sequences to different file (Jaroslav Kysela) [2179850]
+- soundwire: intel: use indirection before moving bus start/stop sequences (Jaroslav Kysela) [2179850]
+- soundwire: intel: add sync_arm/sync_go to ops (Jaroslav Kysela) [2179850]
+- soundwire: intel: simplify sync_go sequence (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove useless abstraction (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove PDI-level restrictions on rates and formats (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove stale/misleading comment (Jaroslav Kysela) [2179850]
+- soundwire: intel: move common definitions to header file (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Search only pin 0 formats (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Add new tokens for input/output pin format count (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Remove the ref_audio_fmt field (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Modify the signature of sof_ipc4_init_audio_fmt() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Modify the type of available input/output formats (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Always parse the output formats in topology (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Parse the SOF_COMP_TOKENS only once (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Do not parse the DMA_BUFFER_SIZE token (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Add a new field in struct sof_ipc4_available_audio_format (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Use input/output pin consistently (Jaroslav Kysela) [2179850]
+- ASoC: SOF: rename a couple of tokens (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-control: Add support for bytes control get and put (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Add support for TPLG_CTL_BYTES (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-control: set_volume_data only applies to VOLSW family (Jaroslav Kysela) [2179850]
+- ASoC: SOF: uapi: header: Update sof_abi_hdr doc for IPC4 use (Jaroslav Kysela) [2179850]
+- ASoC: SOF: uapi: header: Convert sof_abi_hdr comments to kernel style (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc3-control: Merge functions to handle bytes_ext get variants (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc3-control: Rename snd_sof_refresh_control() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: add support for setting up loopback routes (Jaroslav Kysela) [2179850]
+- ALSA: hda/ca0132: fixup buffer overrun at tuning_ctl_set() (Jaroslav Kysela) [2179850]
+- ALSA: asihpi: check pao in control_message() (Jaroslav Kysela) [2179850]
+- ASoC: codecs: zl38060: Mark OF related data as maybe unused (Jaroslav Kysela) [2179850]
+- ASoC: codecs: rt1019: Mark OF related data as maybe unused (Jaroslav Kysela) [2179850]
+- ASoC: codecs: pcm179x-spi: Mark OF related data as maybe unused (Jaroslav Kysela) [2179850]
+- ASoC: codecs: adau1977-spi: Mark OF related data as maybe unused (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: Enable Bluetooth offload on adl_rt1019_rt5682 (Jaroslav Kysela) [2179850]
+- ALSA: Use of_property_read_bool() for boolean properties (Jaroslav Kysela) [2179850]
+- ALSA: ppc/tumbler: Use of_property_present() for testing DT property presence (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: MTL: Don't access EM2 (Jaroslav Kysela) [2179850]
+- ASoC: cs35l41: Steam Deck Shared boost properties quirk (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm: fix hw->formats cleared by soc_pcm_hw_init() for dpcm (Jaroslav Kysela) [2179850]
+- ASoC: hdmi-codec: only startup/shutdown on supported streams (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Enable cont_update_posn variable in pcm hw_params. (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Add pcm pointer callback for amd platforms. (Jaroslav Kysela) [2179850]
+- ASoC: tegra: Support MAX9808x by machine driver (Jaroslav Kysela) [2179850]
+- ASoC: tegra: Support RT5631 by machine driver (Jaroslav Kysela) [2179850]
+- ASoC: tegra: Support coupled mic-hp detection (Jaroslav Kysela) [2179850]
+- ALSA: hda: Match only Intel devices with CONTROLLER_IN_GPU() (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro (Jaroslav Kysela) [2179850]
+- ASoC: da7219: Initialize jack_det_mutex (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: remove redundant DAI config during hw_free (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Remove hda_ctrl_dai_widget_setup/free() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Unify DAI drv ops for IPC3 and IPC4 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Define DAI widget DMA trigger ops for IPC4 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Use the topology IPC dai_config op (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Add setup_hext_stream/reset_hext_stream DMA ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Define and set the HDA DAI widget DMA ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Introduce DAI widget ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Use the dai argument in ipc4_hda_dai_trigger (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Pass the CPU dai pointer (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Modify the signature of hda_link_dma_cleanup() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: remove struct hda_pipe_params (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Remove hda_link_dma_params() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: Remove BE DAI DRV ops for SSP DAI's (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: fix speaker, mute/micmute LEDs not work on a HP platform (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: add core token in each module extended token list (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Add support for core_id for pipelines (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Add macro to set the core_id in create_pipe message (Jaroslav Kysela) [2179850]
+- ASoC: SOF: loader: Remove log prefixes for snd_sof_run_firmware (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc3: Check for upper size limit for the received message (Jaroslav Kysela) [2179850]
+- ASoC: SOF: topology: Fix error handling in sof_widget_ready() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: don't squelch errors in WIDGET_SETUP phase (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: Fix broken early bclk feature for SSP (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-mtrace: process pending logs upon FW crash (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: don't allocate blob if it will not be used (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Fix incorrect sample rate print unit (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: set dmic dai index from copier (Jaroslav Kysela) [2179850]
+- ASoC: SOF: IPC4: update gain ipc msg definition to align with fw (Jaroslav Kysela) [2179850]
+- ASoC: Intel: soc-acpi: fix copy-paste issue in topology names (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dsp: harden D0i3 programming sequence (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-ctrl: re-add sleep after entering and exiting reset (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-tng: revert invalid bar size setting (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: mtl: Access MTL_HFPWRCTL from HDA_DSP_BAR (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-loader: use SOF helper for consistency (Jaroslav Kysela) [2179850]
+- ASOC: SOF: Intel: pci-tgl: Fix device description (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: SKL: Fix device description (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: HDA: Fix device description (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: MTL: Fix the device description (Jaroslav Kysela) [2179850]
+- ALSA: hda: intel-dsp-config: add MTL PCI id (Jaroslav Kysela) [2179850]
+- ASoC: soc-core.c: remove useless dev_dbg() (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm.c: remove indirect runtime copy (Jaroslav Kysela) [2179850]
+- ASoC: soc-dai.c: add missing flag check at snd_soc_pcm_dai_probe() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Use struct_size for struct avs_modcfg_ext size (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: nau8825: Adjust clock control (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: ssm4567: Remove nau8825 bits (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt5682: Explicitly define codec format (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: da7219: Explicitly define codec format (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: max98357a: Explicitly define codec format (Jaroslav Kysela) [2179850]
+- ASoC: maxim,max9867: add "mclk" support (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm: add option to start DMA after DAI (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add DMI entries to support HP OMEN 16-n0xxx (8A43) (Jaroslav Kysela) [2179850]
+- ASoC: zl38060 add gpiolib dependency (Jaroslav Kysela) [2179850]
+- ASoC: mt6358: Remove undefined HPx Mux enumeration values (Jaroslav Kysela) [2179850]
+- ASoC: mt6358: Validate Wake on Voice 2 writes (Jaroslav Kysela) [2179850]
+- ASoC: mt6358: Fix event generation for wake on voice stage 2 switch (Jaroslav Kysela) [2179850]
+- ALSA: ice1712: Delete unreachable code in aureon_add_controls() (Jaroslav Kysela) [2179850]
+- ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls() (Jaroslav Kysela) [2179850]
+- ASoC: adau7118: don't disable regulators on device unbind (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Replace fake flexible arrays with flexible-array member (Jaroslav Kysela) [2179850]
+- ALSA: cs35l41: Add shared boost feature (Jaroslav Kysela) [2179850]
+- ASoC: cs35l41: Refactor error release code (Jaroslav Kysela) [2179850]
+- ASoC: cs35l41: Only disable internal boost (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC (Jaroslav Kysela) [2179850]
+- soundwire: qcom: gracefully handle too many ports in DT (Jaroslav Kysela) [2179850]
+- soundwire: qcom: define hardcoded version magic numbers (Jaroslav Kysela) [2179850]
+- soundwire: qcom: correct setting ignore bit on v1.5.1 (Jaroslav Kysela) [2179850]
+- ASoC: jack: allow multiple interrupt per gpio (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Improve support for Dell Precision 3260 (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: Add quirk for Rex board with mx98360a amplifier (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: MTL: Enable DMI L1 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Restrict DMI L1 disable workaround (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Do not re-enable L1 if disabled before suspend (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: Add components prefix in structs and function names (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: Centralize strings definition (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: Move nau8821 and CPU side code up for future platform (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: Check Bit Clock rate before snd_soc_dai_set_pll (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: use for_each_rtd_components instead of for (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: remove unnecessarily included headers (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: use sizeof of variable instead of struct type (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: Small code refactor (Jaroslav Kysela) [2179850]
+- ASoC: amd: vangogh: Remove unnecessary init function (Jaroslav Kysela) [2179850]
+- ASoC: nau8821: Implement DRC controls (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak (Jaroslav Kysela) [2179850]
+- ASoC: amd: yp: Add OMEN by HP Gaming Laptop 16z-n000 to quirks (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared (Jaroslav Kysela) [2179850]
+- ASoC: soc-ac97: Return correct error codes (Jaroslav Kysela) [2179850]
+- ASoC: da7219: Improve the IRQ process to increase the stability (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Enable mute/micmute LEDs and speaker support for HP Laptops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dsp: Set streaming flag for d0i3 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: Enable d0i3 work for ipc4 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Wake up dsp core before sending ipc msg (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dsp: use set_pm_gate according to ipc version (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Introduce a new set_pm_gate() IPC PM op (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform. (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Fix struct definition (Jaroslav Kysela) [2179850]
+- ASoC: codecs: wcd934x: Use min macro for comparison and assignment (Jaroslav Kysela) [2179850]
+- ASoC: soc-ac97: Convert to agnostic GPIO API (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Enable Amp High Pass Filter (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Ensure firmware/tuning pairs are always loaded (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Correct error condition handling (Jaroslav Kysela) [2179850]
+- ASoC: codecs: Modify error implicit declaration of function 'gpiod_set_value_cansleep' (Jaroslav Kysela) [2179850]
+- ASoC: codecs: Modify the log print statement (Jaroslav Kysela) [2179850]
+- ASoC: codecs: Fixed a spelling error in the function name (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek - fixed wrong gpio assigned (Jaroslav Kysela) [2179850]
+- ALSA: hda: Fix codec device field initializan (Jaroslav Kysela) [2179850]
+- ASoC: rt712-sdca: fix coding style and unconditionally return issues (Jaroslav Kysela) [2179850]
+- ASoC: rt5640: Update MCLK rate in set_sysclk() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: set copier sink format (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Print queue IDs in error (Jaroslav Kysela) [2179850]
+- ALSA: hda: remove redundant variable in snd_hdac_stream_start() (Jaroslav Kysela) [2179850]
+- ALSA: hda/conexant: add a new hda codec SN6180 (Jaroslav Kysela) [2179850]
+- SoC: rt5682s: Disable jack detection interrupt during suspend (Jaroslav Kysela) [2179850]
+- ALSA: ppc: fix unused function local variable (Jaroslav Kysela) [2179850]
+- ASoC: codecs: max98090: simplify snd_soc_dai_driver (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ops: refine parameters order in function snd_sof_dsp_update8 (Jaroslav Kysela) [2179850]
+- ASoC: topology: Return -ENOMEM on memory allocation failure (Jaroslav Kysela) [2179850]
+- ALSA: core: Make snd_card_free() return void (Jaroslav Kysela) [2179850]
+- ALSA: core: Make snd_card_free_when_closed() return void (Jaroslav Kysela) [2179850]
+- ALSA: core: Make snd_card_disconnect() return void (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add Positivo N14KP6-TG (Jaroslav Kysela) [2179850]
+- ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control() (Jaroslav Kysela) [2179850]
+- ASoC: rt712-sdca: Add RT712 SDCA driver for Jack and Amp topology (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform. (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Add quirk for ASUS UM3402 using CS35L41 (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Enable mute/micmute LEDs on HP Elitebook, 645 G9 (Jaroslav Kysela) [2179850]
+- ASoC: codecs: aw88395: initialize cur_scene_id to 0 (Jaroslav Kysela) [2179850]
+- ASoC: codecs: es8326: Fix DTS properties reading (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Fix for handling spurious interrupts from DSP (Jaroslav Kysela) [2179850]
+- ASoC: codecs: fix platform_no_drv_owner.cocci warning (Jaroslav Kysela) [2179850]
+- ALSA: fireface: add field for the number of messages copied to user space (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: add delay function support (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: mtl: add get_stream_position support (Jaroslav Kysela) [2179850]
+- ASoC: SOF: add get_stream_position ops for pcm delay (Jaroslav Kysela) [2179850]
+- ASoC: SOF: add delay function support in sof framework (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: add hw_params (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: allocate time info for pcm delay feature (Jaroslav Kysela) [2179850]
+- ASoC: SOF: add time info structure for ipc4 path (Jaroslav Kysela) [2179850]
+- ASoC: SOF: add fw_info_box support (Jaroslav Kysela) [2179850]
+- ASoC: SOF: add ipc4_fw_reg header file (Jaroslav Kysela) [2179850]
+- ASoC: codecs: aw88395: Fix spelling mistake "cersion" -> "version" (Jaroslav Kysela) [2179850]
+- ASoC: SOF: fix intel-soundwire link failure (Jaroslav Kysela) [2179850]
+- ALSA: hda: Fix the control element identification for multiple codecs (Jaroslav Kysela) [2179850]
+- ASoC: amd: update ps platform acp header file (Jaroslav Kysela) [2179850]
+- ASoC: topology: Set correct unload callback for graph type (Jaroslav Kysela) [2179850]
+- ASoC: SOF: topology: Add missed "else" in sof_connect_dai_widget (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: use helper function (Jaroslav Kysela) [2179850]
+- ALSA: pci: lx6464es: fix a debug loop (Jaroslav Kysela) [2179850]
+- ASoC: soc-dai.h: cleanup Playback/Capture data for snd_soc_dai (Jaroslav Kysela) [2179850]
+- ASoC: soc-topology.c: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm.c: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: soc-dai.c: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: soc-core.c: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: ti: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: tegra: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: sof: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: intel: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: sdw-mockup: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: spear: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: cirrus: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: rt: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: max: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: hda: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: hdmi-codec: use helper function (Jaroslav Kysela) [2179850]
+- ASoC: soc.h: add snd_soc_card_is_instantiated() helper (Jaroslav Kysela) [2179850]
+- ASoC: soc-dai.h: add snd_soc_dai_get/set_widget_playback/capture() helper (Jaroslav Kysela) [2179850]
+- ASoC: soc-dai.h: add snd_soc_dai_tdm_mask_set/get() helper (Jaroslav Kysela) [2179850]
+- ASoC: soc-dai.h: add snd_soc_dai_dma_data_set/get() for low level (Jaroslav Kysela) [2179850]
+- ASoC: soc-dai.h: add missing snd_soc_dai_set_widget() (Jaroslav Kysela) [2179850]
+- ALSA: doc: Fix PCM interface section typos (Jaroslav Kysela) [2179850]
+- ALSA: firewire-motu: fix unreleased lock warning in hwdep device (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: fix uninitialized local variable (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Refactor bit width calculation (Jaroslav Kysela) [2179850]
+- ASoC: rt715-sdca: fix clock stop prepare timeout issue (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360 (Jaroslav Kysela) [2179850]
+- ASoC: tas5720: set bit 7 in ANALOG_CTRL_REG for TAS5720A-Q1 during probe (Jaroslav Kysela) [2179850]
+- ASoC: codecs: tas5720: add support for TAS5720A-Q1 (automotive) variant (Jaroslav Kysela) [2179850]
+- ASoC: codecs: tas5720: split a tas5720_mute_soc_component() function (Jaroslav Kysela) [2179850]
+- ASoC: topology: Use unload() op directly (Jaroslav Kysela) [2179850]
+- ASoC: topology: Unify kcontrol removal code (Jaroslav Kysela) [2179850]
+- ASoC: topology: Remove unnecessary check for EOF (Jaroslav Kysela) [2179850]
+- ASoC: topology: Return an error on complete() failure (Jaroslav Kysela) [2179850]
+- ASoC: topology: Pass correct pointer instead of casting (Jaroslav Kysela) [2179850]
+- ASoC: topology: Remove unnecessary forward declarations (Jaroslav Kysela) [2179850]
+- ASoC: topology: Rename remove_ handlers (Jaroslav Kysela) [2179850]
+- ASoC: topology: Fix function name (Jaroslav Kysela) [2179850]
+- ASoC: topology: Fix typo in functions name (Jaroslav Kysela) [2179850]
+- ASoC: topology: Remove unused SOC_TPLG_PASS_PINS constant (Jaroslav Kysela) [2179850]
+- ASoC: topology: Properly access value coming from topology file (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Wait for debounce interval after resume (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Don't set idle_bias_on (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Add SoundWire support (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Export some functions for SoundWire (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Separate ASP config from PLL config (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Ensure MCLKint is a multiple of the sample rate (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Add SOFT_RESET_REBOOT register (Jaroslav Kysela) [2179850]
+- soundwire: stream: Add specific prep/deprep commands to port_prep callback (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: Do not run the trigger pipelines if no spipe is stored (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Protect swidget->use_count with mutex for kcontrol access race (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Avoid double decrementing use_count in sof_widget_setup on error (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Protect pipeline free with mutex (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: Implement pipeline trigger reference counting (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: Rename 'data' variable to trigger_list (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Introduce struct snd_sof_pipeline (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: Use the PCM stream's pipeline_info during trigger (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: Populate the PCM stream pipeline_info (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Add flag to skip triggering pipelines during FE DAI trigger (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-pcm: Define pcm_setup/free ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Introduce PCM setup/free PCM IPC ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: topology: Set IPC-specific trigger order for DAI links (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pcm: do not free widgets during suspend trigger (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: Only process widgets in the connected widget list (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: Set up/free DAI/AIF widgets only once (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm: Export widget_in_list() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: No need to unbind routes within a pipeline (Jaroslav Kysela) [2179850]
+- Documentation: sound: correct spelling (Jaroslav Kysela) [2179850]
+- treewide: fix up files incorrectly marked executable (Jaroslav Kysela) [2179850]
+- ASoC: cs42l56: fix DT probe (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: add buffer type support (Jaroslav Kysela) [2179850]
+- ALSA: memalloc: Workaround for Xen PV (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: use different channel mask for each sdw amp feedback (Jaroslav Kysela) [2179850]
+- soundwire: bus_type: Avoid lockdep assert in sdw_drv_probe() (Jaroslav Kysela) [2179850]
+- soundwire: cadence: further simplify low-level xfer_msg_defer() callback (Jaroslav Kysela) [2179850]
+- soundwire: stream: use consistent pattern for freeing buffers (Jaroslav Kysela) [2179850]
+- soundwire: bus: Remove unused reset_page_addr() callback (Jaroslav Kysela) [2179850]
+- soundwire: bus: Don't zero page registers after every transaction (Jaroslav Kysela) [2179850]
+- ASoC: ts3a227e: add set_jack and get_jack_type (Jaroslav Kysela) [2179850]
+- ASoC: simple-card-utils: create jack inputs for aux_devs (Jaroslav Kysela) [2179850]
+- ASoC: soc-component: add get_jack_type (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Simplify probe-component implementation (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: prepare_widgets: Check swidget for NULL on sink failure (Jaroslav Kysela) [2179850]
+- firewire: cdev: use single object to dispatch event for request to IEC 61883-1 FCP region (Jaroslav Kysela) [2179850]
+- firewire: cdev: obsolete NULL check to detect IEC 61883-1 FCP region (Jaroslav Kysela) [2179850]
+- firewire: core: use kref structure to maintain lifetime of data for fw_request structure (Jaroslav Kysela) [2179850]
+- ASoC: hdmi-codec: zero clear HDMI pdata (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-mtrace: prevent underflow in sof_ipc4_priority_mask_dfs_write() (Jaroslav Kysela) [2179850]
+- soundwire: bus: remove sdw_defer argument in sdw_transfer_defer() (Jaroslav Kysela) [2179850]
+- soundwire: cadence: use directly bus sdw_defer structure (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum610 Wireless (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: fix mute/micmute LEDs, speaker don't work for a HP platform (Jaroslav Kysela) [2179850]
+- ASoC: SOF: keep prepare/unprepare widgets in sink path (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: skip prepare/unprepare if swidget is NULL (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: unprepare when swidget->use_count > 0 (Jaroslav Kysela) [2179850]
+- ALSA: fireface: fix locking bug in ff400_copy_msg_to_user() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: start with the right widget type (Jaroslav Kysela) [2179850]
+- ASoC: SOF: compress: Set compress data offset (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add support for compress API for stream data/offset (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Prepare set_stream_data_offset for compress API (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Prepare ipc_msg_data to be used with compress API (Jaroslav Kysela) [2179850]
+- ALSA: hda/ca0132: minor fix for allocation size (Jaroslav Kysela) [2179850]
+- firewire: fix memory leak for payload of request subaction to IEC 61883-1 FCP region (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Use asoc_substream_to_rtd() to obtain rtd (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Use min_t instead of min with cast (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Correctly access topology fields (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Implement PCI shutdown (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Fix possible NULL pointer dereference in snd_usb_pcm_has_fixed_rate() (Jaroslav Kysela) [2179850]
+- ASoC: codecs: Aw88395 chip register file, data type file and Kconfig Makefile (Jaroslav Kysela) [2179850]
+- ASoC: codecs: Aw88395 function for ALSA Audio Driver (Jaroslav Kysela) [2179850]
+- ASoC: codecs: ACF bin parsing and check library file for aw88395 (Jaroslav Kysela) [2179850]
+- ASoC: codecs: Add i2c and codec registration for aw88395 and their associated operation functions (Jaroslav Kysela) [2179850]
+- regmap: sdw: Remove 8-bit value size restriction (Jaroslav Kysela) [2179850]
+- regmap: sdw: Update misleading comment (Jaroslav Kysela) [2179850]
+- ALSA: fireface: implement message parser for Fireface 400 (Jaroslav Kysela) [2179850]
+- ALSA: fireface: add local framework to message parser (Jaroslav Kysela) [2179850]
+- ALSA: fireface: update UAPI for data of knob control (Jaroslav Kysela) [2179850]
+- ALSA: fireface: add helper function to parse MIDI messages transmitted by Fireface 400 (Jaroslav Kysela) [2179850]
+- ALSA: fireface: pick up time stamp for request subaction of asynchronous transaction (Jaroslav Kysela) [2179850]
+- ALSA: fireface: rename callback functions (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_es8336: Drop reference count of ACPI device after use (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp-es8336: Drop reference count of ACPI device after use (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add DMI support for new acer/emdoor platforms (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: Enable mute/micmute LEDs on HP Spectre x360 13-aw0xxx (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: compute extra delay for runtime of PCM substream (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: obsolete return value from context payload processing layer (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: move parameter for pcm frame multiplier from context payload processing layer (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: Provide debugfs_add_region_item ops for core (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: Support mt8188 platform (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: extend tracepoints event including CYCLE_TIME of 1394 OHCI (Jaroslav Kysela) [2179850]
+- ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list (Jaroslav Kysela) [2179850]
+- ALSA: control-led: use strscpy in set_led_id() (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Always initialize fixed_rate in snd_usb_find_implicit_fb_sync_format() (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Enable i2s tdm support for skyrim platforms (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Add i2s tdm support in machine driver (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Refactor i2s clocks programming sequence (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Refactor dai format implementation (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Add new cpu dai's in machine driver (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: keep history to process isochronous packet (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: use circular linked list for context payload processing layer (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: use circular linked list to enumerate packet descriptors (Jaroslav Kysela) [2179850]
+- ASoC: nau8315: remove dependency on GPIOLIB (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: code refactoring for cache position in sequence replay (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: code refactoring for cache position in tx packets (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: code refactoring for pool position in rx packets (Jaroslav Kysela) [2179850]
+- ALSA: firewire-lib: code refactoring for helper functions to pool sequence in rx packets (Jaroslav Kysela) [2179850]
+- ALSA: aoa: make remove callback of soundbus driver void returned (Jaroslav Kysela) [2179850]
+- ALSA: ac97: make remove callback of ac97 driver void returned (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: Fix uninitialized ret in create_acp64_platform_devs() (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Check runtime suspend capability at runtime_idle (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Don't return -EINVAL from system suspend/resume (Jaroslav Kysela) [2179850]
+- mfd: arizona: Use pm_runtime_resume_and_get() to prevent refcnt leak (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: use static function (Jaroslav Kysela) [2179850]
+- ASoC: nau8822: add speaker Bridge Tied Output configuration (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: remove unused variable (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: use acp_lock to protect common registers in pdm driver (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: add mutex lock for accessing common registers (Jaroslav Kysela) [2179850]
+- ALSA: hda - Enable headset mic on another Dell laptop with ALC3254 (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_ssp_amp: remove unused variable (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof-wm8804: Replace open coded acpi_dev_put() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: cht_bsw_rt5672: Replace open coded acpi_dev_put() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: cht_bsw_rt5645: Replace open coded acpi_dev_put() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bytcht_da7213: Replace open coded acpi_dev_put() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bytcht_cx2072x: Replace open coded acpi_dev_put() (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: More refactoring of hw constraint rules (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Relax hw constraints for implicit fb sync (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Make sure to stop endpoints before closing EPs (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek - Turn on power early (Jaroslav Kysela) [2179850]
+- ASoC: rt9120: Make dev PM runtime bind AsoC component PM (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add ASUS M5402RA into DMI table (Jaroslav Kysela) [2179850]
+- ASoC: wm8904: fix wrong outputs volume after power reactivation (Jaroslav Kysela) [2179850]
+- ASoC: rt711-sdca: add jack detection mode for JD2 100K (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_nau8825: add variant with nau8318 amplifier. (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: move irq handler registration (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: update dev index value in irq handler (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: refactor platform device creation logic (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: implement api to retrieve acp device config (Jaroslav Kysela) [2179850]
+- ASoC: Intel: fix sof-nau8825 link failure (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof-nau8825: fix module alias overflow (Jaroslav Kysela) [2179850]
+- ASoC: SOF: trace: No need to check for op pointer in sof_fw_trace_free() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: trace: Use sof_ipc_get_ops() in sof_fw_trace_init (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-priv: Mark fw_tracing ops optional in documentation (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pm: Extend the optionality of IPC ops to IPC as well (Jaroslav Kysela) [2179850]
+- ASoC: SOF: topology: Extend the optionality of IPC ops to IPC as well (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: Extend the optionality of IPC ops to IPC as well (Jaroslav Kysela) [2179850]
+- ASoC: SOF: control: Extend the optionality of IPC ops to IPC as well (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pcm: Extend the optionality of IPC ops to IPC as well (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add helper macro to be used to get an IPC ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: Update documentation for sof_ipc_tplg_ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: sof-audio: Treat tplg_ops->route_setup() as optional (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add FW state to debugfs (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pm: Always tear down pipelines before DSP suspend (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pm: Set target state earlier (Jaroslav Kysela) [2179850]
+- ASoC: SOF: core: Print out the value of sof_debug if it is set (Jaroslav Kysela) [2179850]
+- ASoC: SOF: IPC3 topology: Print the conflicting bytes sizes (Jaroslav Kysela) [2179850]
+- ASoC: wm8940: Read chip ID when wm8940 codec probing (Jaroslav Kysela) [2179850]
+- ASoC: wm8940: Rewrite code to set proper clocks (Jaroslav Kysela) [2179850]
+- ASoC: wm8940: Remove warning when no plat data present (Jaroslav Kysela) [2179850]
+- ASoC: amd: yc: Add Razer Blade 14 2022 into DMI table (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Add new quirk FIXED_RATE for JBL Quantum810 Wireless (Jaroslav Kysela) [2179850]
+- ASoC: lochnagar: Fix unused lochnagar_of_match warning (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove DAI startup/shutdown (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: mt8195: remove a redundant comparison of sram (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Peakvol module configuration (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Parse control tuples (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add control volume operations (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add peakvol runtime-parameter requests (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Add HP Stream 8 to bytcr_rt5640.c (Jaroslav Kysela) [2179850]
+- ASoC: da7213: Add support for mono, set frame width to 32 when possible (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: initialize panic_info to zero (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Enable cache for AMD Rembrandt platform (Jaroslav Kysela) [2179850]
+- ALSA: azt3328: Remove the unused function snd_azf3328_codec_outl() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: nocodec: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: wl1273: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: mc13783: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: cq93vc: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: bt-sco: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: adau7002: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: ac97: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: 88pm860x: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: atmel-pdmic: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: atmel-classd: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: amd: Drop empty platform remove function (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Revert: "core: unregister clients and machine drivers in .shutdown" (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-tgl: unblock S5 entry if DMA stop has failed" (Jaroslav Kysela) [2179850]
+- ASoC: rt5640: Allow configuration of LOUT to mono differential mode (Jaroslav Kysela) [2179850]
+- ALSA: hda: Error out if invalid stream is being setup (Jaroslav Kysela) [2179850]
+- ASoC: soc-compress: Reposition and add pcm_mutex (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_realtek_common: set ret = 0 as initial value (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: add jsl_rt5682 board config (Jaroslav Kysela) [2179850]
+- ALSA: hda/cirrus: Add extra 10 ms delay to allow PLL settle and lock. (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Workaround for XRUN at prepare (Jaroslav Kysela) [2179850]
+- ALSA: pcm: Handle XRUN at trigger START (Jaroslav Kysela) [2179850]
+- ASoC : SOF: amd: Add support for IPC and DSP dumps (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Use poll function instead to read ACP_SHA_DSP_FW_QUALIFIER (Jaroslav Kysela) [2179850]
+- ASoC: imx-audmux: use sysfs_emit() to instead of scnprintf() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Use SG allocation for SKL-based firmware load (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Introduce single place for pipe-config selection (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Drop pipe_config_idx (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Remove skl_tplg_is_multi_fmt() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Update pipe_config_idx before filling BE params (Jaroslav Kysela) [2179850]
+- ASoC: codecs: wcd-clsh: Remove the unused function (Jaroslav Kysela) [2179850]
+- ASoC: rt715: Make read-only arrays capture_reg_H and capture_reg_L static const (Jaroslav Kysela) [2179850]
+- soundwire: cadence: Drain the RX FIFO after an IO timeout (Jaroslav Kysela) [2179850]
+- soundwire: cadence: Remove wasted space in response_buf (Jaroslav Kysela) [2179850]
+- soundwire: cadence: Don't overflow the command FIFOs (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Allow for dumping debug window snapshot (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Allow for dumping FW_REGS area (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Gather remaining logs on strace_release() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Probing and firmware tracing over debugfs (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add probe machine board (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Data probing soc-component (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Probe compress operations (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add data probing requests (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Drop usage of debug members in non-debug code (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Make enable_logs() dependent on DEBUG_FS (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Introduce debug-context aware helpers (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Drop fifo_lock (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Introduce avs_log_buffer_status_locked() (Jaroslav Kysela) [2179850]
+- ALSA: hda: Interrupt servicing and BDL setup for compress streams (Jaroslav Kysela) [2179850]
+- ALSA: hda: Prepare for compress stream support (Jaroslav Kysela) [2179850]
+- ALSA: hda: Allow for compress stream to hdac_ext_stream assignment (Jaroslav Kysela) [2179850]
+- ALSA: dice: Remove left-over license text (Jaroslav Kysela) [2179850]
+- drm: tda99x: Don't advertise non-existent capture support (Jaroslav Kysela) [2179850]
+- ASoC: hdmi-codec: Allow playback and capture to be disabled (Jaroslav Kysela) [2179850]
+- ALSA: dice: add support for Focusrite Saffire Pro 40 with TCD3070 ASIC (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt5682: Refactor jack handling (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt5682: Add define for codec DAI name (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Add quirk for Tascam Model 12 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add DAI configuration support for AMD platforms. (Jaroslav Kysela) [2179850]
+- ASoC: rt5640: Fix Jack work after system suspend (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm.c: Clear DAIs parameters after stream_active is updated (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: add shutdown callback (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Drop obsolete dependency on COMPILE_TEST (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt298: Refactor jack handling (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt298: Add define for codec DAI name (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt286: Refactor jack handling (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt286: Add define for codec DAI name (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt274: Refactor jack handling (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: rt274: Refer to DAI name through a constant (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: nau8825: Refactor jack handling (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: da7219: Refactor jack handling (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bdw_rt286: Refactor jack handling (Jaroslav Kysela) [2179850]
+- ALSA: pcm: fix tracing reason in hw_ptr_error (Jaroslav Kysela) [2179850]
+- soundwire: stream: Move remaining register accesses over to no_pm (Jaroslav Kysela) [2179850]
+- soundwire: debugfs: Switch to sdw_read_no_pm (Jaroslav Kysela) [2179850]
+- soundwire: Provide build stubs for common functions (Jaroslav Kysela) [2179850]
+- soundwire: bus: export sdw_nwrite_no_pm and sdw_nread_no_pm functions (Jaroslav Kysela) [2179850]
+- firmware: cs_dsp: Rename KConfig symbol CS_DSP -> FW_CS_DSP (Jaroslav Kysela) [2179850]
+- ASoC: nau8315: add new acpi id and compatible id (Jaroslav Kysela) [2179850]
+- ASoC: wm_adsp: Return whether changed when writing controls (Jaroslav Kysela) [2179850]
+- firmware: cs_dsp: cs_dsp_coeff_write_ctrl() should report changed (Jaroslav Kysela) [2179850]
+- ASoC: sdw-mockup: Switch to new snd_sdw_params_to_config helper (Jaroslav Kysela) [2179850]
+- ASoC: rt715: Switch to new snd_sdw_params_to_config helper (Jaroslav Kysela) [2179850]
+- ASoC: rt711: Switch to new snd_sdw_params_to_config helper (Jaroslav Kysela) [2179850]
+- ASoC: rt700: Switch to new snd_sdw_params_to_config helper (Jaroslav Kysela) [2179850]
+- ASoC: rt5682-sdw: Switch to new snd_sdw_params_to_config helper (Jaroslav Kysela) [2179850]
+- ASoC: rt1316-sdw: Switch to new snd_sdw_params_to_config helper (Jaroslav Kysela) [2179850]
+- ASoC: rt1308-sdw: Switch to new snd_sdw_params_to_config helper (Jaroslav Kysela) [2179850]
+- ASoC: max98373-sdw: Switch to new snd_sdw_params_to_config helper (Jaroslav Kysela) [2179850]
+- sound: sdw: Add hw_params to SoundWire config helper function (Jaroslav Kysela) [2179850]
+- ASoC: max9867: Implement exact integer mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: ADD HS and SP virtual DAI. (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Fix for selecting clock source as external clock. (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Fix for reading position updates from stream box. (Jaroslav Kysela) [2179850]
+- ASoC: nau8825: Add a manually mechanism for detection failure (Jaroslav Kysela) [2179850]
+- ASoC: nau8825: Adjust internal clock during jack detection (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add missing audio amplifier for KBL (Jaroslav Kysela) [2179850]
+- ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Fix Kconfig dependency (Jaroslav Kysela) [2179850]
+- ASoC: da7219: Fix pole orientation detection on OMTP headsets when playing music (Jaroslav Kysela) [2179850]
+- ASoC: max98396: Convert to i2c's .probe_new() (Jaroslav Kysela) [2179850]
+- ASoC: codecs: es8326: Convert to i2c's .probe_new() (Jaroslav Kysela) [2179850]
+- ALSA: ppc: keywest: Convert to i2c's .probe_new() (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Convert to i2c's .probe_new() (Jaroslav Kysela) [2179850]
+- ALSA: aoa: tas: Convert to i2c's .probe_new() (Jaroslav Kysela) [2179850]
+- ALSA: aoa: onyx: Convert to i2c's .probe_new() (Jaroslav Kysela) [2179850]
+- mfd: arizona-i2c: Convert to i2c's .probe_new() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Initialize private data for subsequent HDA FEs (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Fix possible UAF in acp_dma_open (Jaroslav Kysela) [2179850]
+- soundwire: enable optional clock registers for SoundWire 1.2 devices (Jaroslav Kysela) [2179850]
+- ASoC/soundwire: remove is_sdca boolean property (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_sdw_amp: mark coeff tables with __maybe_unused (Jaroslav Kysela) [2179850]
+- ASoC: SOF: dai: move AMD_HS to end of list to restore backwards-compatibility (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_nau8825: support rt1015p speaker amplifier (Jaroslav Kysela) [2179850]
+- ASoC: SOF: probes: Check ops before memory allocation (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Disconnect substream if suspend or resume fails (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: Move acp63_dev_data strcture from PCI driver (Jaroslav Kysela) [2179850]
+- ASoC: amd: ps: update macros with ps platform naming convention (Jaroslav Kysela) [2179850]
+- ALSA: pcm: avoid nused-but-set-variable warning (Jaroslav Kysela) [2179850]
+- ALSA: memalloc: Allocate more contiguous pages for fallback case (Jaroslav Kysela) [2179850]
+- ASoC: codecs: Remove a useless include (Jaroslav Kysela) [2179850]
+- ASoC: audio-graph-card2: remove Experimental announce (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: read multi-link capabilities earlier (Jaroslav Kysela) [2179850]
+- soundwire: intel_init: remove check on number of links (Jaroslav Kysela) [2179850]
+- soundwire: intel_init: remove sdw_intel_enable_irq() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: add callback to check SoundWire lcount information (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: mtl: move SoundWire interrupt enabling to callback (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: mtl: factor interrupt enable/disable interrupt functions (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: add per-chip enable_sdw_irq() callback (Jaroslav Kysela) [2179850]
+- soundwire: intel_init: remove useless interrupt enablement in interrupt thread (Jaroslav Kysela) [2179850]
+- soundwire: intel: split auxdevice to different file (Jaroslav Kysela) [2179850]
+- soundwire: intel: add in-band wake callbacks in hw_ops (Jaroslav Kysela) [2179850]
+- soundwire: intel: add link power management callbacks in hw_ops (Jaroslav Kysela) [2179850]
+- soundwire: intel: add bus management callbacks in hw_ops (Jaroslav Kysela) [2179850]
+- soundwire: intel: add register_dai callback in hw_ops (Jaroslav Kysela) [2179850]
+- soundwire: intel: add debugfs callbacks in hw_ops (Jaroslav Kysela) [2179850]
+- soundwire: intel: start using hw_ops (Jaroslav Kysela) [2179850]
+- ASoC: Intel: soc-acpi: add MTL AIC SoundWire configurations (Jaroslav Kysela) [2179850]
+- ASoC: wm_adsp: Allow client to hook into pre_run callback (Jaroslav Kysela) [2179850]
+- ASoC: rt1316-sdw: get BQ params property and apply them (Jaroslav Kysela) [2179850]
+- ASoC: rt1308-sdw: get BQ params property and apply them (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof rt5682: remove the duplicate codes (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: add support for ALC5682I-VD with amp rt1019p (Jaroslav Kysela) [2179850]
+- ASoC: core: fix wrong size kzalloc for rtd's components member (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: get pipeline instance id from pipe_widget->instance_id (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-loader: get max pipeline number (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: rename sof_ipc4_widget_free_comp (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: set d0i3 register with d0i3_offset (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: add d0i3_offset in chip_info (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: add d0i3 definition for MTL (Jaroslav Kysela) [2179850]
+- ASoC: SOF: topology: Add helper to get/put widget queue id (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add support to parse pin binding array from topology (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add support for parsing the number of sink/source pins (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: Implement tear_down_all_pipelines callback (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-loader: use small buffer for iccmax stream (Jaroslav Kysela) [2179850]
+- ALSA: cs5535audio: Remove the redundant assignment (Jaroslav Kysela) [2179850]
+- ASoC: soc-dai: Do not call snd_soc_link_be_hw_params_fixup() twice (Jaroslav Kysela) [2179850]
+- ASoC: amd: fix ACP version typo mistake (Jaroslav Kysela) [2179850]
+- ASoC: Intel: cirrus-common: Make const array uid_strings static (Jaroslav Kysela) [2179850]
+- ARM: omap2: n8x0: stop instantiating codec platform data (Jaroslav Kysela) [2179850]
+- ASoC: tlv320aic3x: switch to using gpiod API (Jaroslav Kysela) [2179850]
+- ASoC: tlv320aic3x: remove support for platform data (Jaroslav Kysela) [2179850]
+- ASoC: rt5682: Support DBVDD and LDO1-IN supplies (Jaroslav Kysela) [2179850]
+- ASoC: rt5682s: Support DBVDD and LDO1-IN supplies (Jaroslav Kysela) [2179850]
+- ASoC: audio-graph-card2: check also dpcm node for convert-xxx (Jaroslav Kysela) [2179850]
+- ASoC: audio-graph-card2-custom-sample.dtsi: add convert-rate for DPCM (MIXer) (Jaroslav Kysela) [2179850]
+- ASoC: simple-card-utils: remove asoc_simple_convert_fixup() (Jaroslav Kysela) [2179850]
+- soundwire: cadence: use dai_runtime_array instead of dma_data (Jaroslav Kysela) [2179850]
+- soundwire: cadence: rename sdw_cdns_dai_dma_data as sdw_cdns_dai_runtime (Jaroslav Kysela) [2179850]
+- ASoC: cs42xx8-i2c.c: add module device table for of (Jaroslav Kysela) [2179850]
+- ALSA: hda: clarify comments on SCF changes (Jaroslav Kysela) [2179850]
+- ASoC: SOF: fix compilation issue with readb/writeb helpers (Jaroslav Kysela) [2179850]
+- ASoC: codecs: da7219: Do not export internal symbols (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Drop da7219_aad_jack_det() usage (Jaroslav Kysela) [2179850]
+- ASoC: amd: Drop da7219_aad_jack_det() usage (Jaroslav Kysela) [2179850]
+- ASoC: rockchip: Drop da7219_aad_jack_det() usage (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Drop da7219_aad_jack_det() usage (Jaroslav Kysela) [2179850]
+- ASoC: codecs: da7219: Introduce set_jack() callback (Jaroslav Kysela) [2179850]
+- ASoC: SOF: IPC4: probes: Implement IPC4 ops for probes client device (Jaroslav Kysela) [2179850]
+- ASoC: SOF: client: Add sof_client_ipc4_find_module() function (Jaroslav Kysela) [2179850]
+- ASoC: SOF: client: Add sof_client_ipc_set_get_data() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: probes: Separate IPC3 operations to a separate file (Jaroslav Kysela) [2179850]
+- ASoC: SOF: probes: Replace [0] union members with DECLARE_FLEX_ARRAY() (Jaroslav Kysela) [2179850]
+- ASoC: adau1372: correct PGA enable & mute bit (Jaroslav Kysela) [2179850]
+- ASoC: adau1372: add support for S24_LE mode (Jaroslav Kysela) [2179850]
+- ASoC: adau1372: fix mclk (Jaroslav Kysela) [2179850]
+- ASoC: SOF: introduce new DEBUG_NOCODEC mode (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-codec: use GPL-2.0-only license (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: clarify Kconfig dependencies (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: add hda_bus_ml_free helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-mlink: add helpers to suspend/resume links (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: clarify bus_init and bus_exit sequences (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-codec: add helpers to suspend and resume cmd_io (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dsp: clarify dependencies on SND_SOC_SOF_HDA (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-ctrl: use helper to clear RIRB status (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-codec: add hda_codec_check_rirb_status() helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-stream: always allocate CORB/RIRB buffer (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-codec: add stop_cmd_io helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-codec: add hda_codec_device_remove() helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-ctrl: add codec wakeup helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: move all RIRB/CMD_IO helpers to hda-codec.c (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: add multi-link helper for LOSVID (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: start moving multi-link handling in dedicated file (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: move codec state change to hda-codec.c (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-codec: simplify SND_SOC_SOF_HDA_AUDIO_CODEC handling (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: remove all dependencies on SND_SOC_HDAC_HDMI (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: remove option to disable the common_hdmi handling (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Enact power gating policy (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Power and clock gating policy overriding (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Standby power-state support (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Count low power streams (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Restart instead of resuming HDA capture streams (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Handle SUSPEND and RESUME triggers (Jaroslav Kysela) [2179850]
+- ALSA: hda: Introduce snd_hdac_stream_wait_drsm() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Introduce PCM power management routines (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Split pcm pages freeing operation from hw_free() (Jaroslav Kysela) [2179850]
+- ASoC: core: Exit all links before removing their components (Jaroslav Kysela) [2179850]
+- ASoC: tas5805m: add missing page switch. (Jaroslav Kysela) [2179850]
+- ASoC: tas5805m: rework to avoid scheduling while atomic. (Jaroslav Kysela) [2179850]
+- soundwire: qcom: add support for v1.7 Soundwire Controller (Jaroslav Kysela) [2179850]
+- soundwire: qcom: make reset optional for v1.6 controller (Jaroslav Kysela) [2179850]
+- soundwire: qcom: remove unused SWRM_SPECIAL_CMD_ID (Jaroslav Kysela) [2179850]
+- ASoC: dapm: Don't use prefix for regulator name (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-loader: Return ssize_t from sof_ipc4_fw_parse_ext_man() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: boards: Fix typo in comments (Jaroslav Kysela) [2179850]
+- ASoC: Intel: boards: Fix typo in comments (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-stream: use readb/writeb for stream registers (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-stream: use snd_sof_dsp_updateb() helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: use SOF helper for consistency (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-stream: rename CL_SD_CTL registers as SD_CTL (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-stream: use SOF helpers for consistency (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: remove useless check on GCTL (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: always do a full reset (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-ctrl: remove useless sleep (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: remove useless members in hda_pipe_params (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: use component_get_drvdata to find hdac_bus (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: start removing the use of runtime->private_data in BE (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dsp: use SOF helpers for consistency (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ops: add snd_sof_dsp_updateb() helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ops: add readb/writeb helpers (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: use mmio fallback for all platforms (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ops: fallback to mmio in helpers (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: MTL: fix comment error (Jaroslav Kysela) [2179850]
+- ALSA: asihpi: remove variable loops (Jaroslav Kysela) [2179850]
+- ALSA: rawmidi: remove variable dest_frames (Jaroslav Kysela) [2179850]
+- mfd: arizona: Remove #ifdef guards for PM related functions (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-codec: fix possible memory leak in hda_codec_device_init() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: fix possible memory leak in skl_codec_device_init() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-loader: Support for loading external libraries (Jaroslav Kysela) [2179850]
+- ASoC: SOF: loader: Remove the query_fw_configuration ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Stop using the query_fw_configuration fw_loader ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: loader: Add support for IPC dependent post firmware boot ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: Add ipc4 library loading implementation (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Add flag to indicate that the firmware is IMR booted (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Define platform dependent library loading callback (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: Set the default firmware library path for IPC4 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Add path definition for external firmware libraries (Jaroslav Kysela) [2179850]
+- ASoC: SOF: IPC4: Add helper for looking up module by UUID (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Convert the firmware handling (loader) to library convention (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-loader: Save the maximum number of libraries supported (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc: ops: Add support for optional init and exit callbacks (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Drop the firmware and fw_offset from snd_sof_pdata (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-loader-skl: Use the basefw firmware container directly (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-loader: Use the basefw firmware container directly (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Use the basefw firmware container directly (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Introduce container struct for SOF firmware (Jaroslav Kysela) [2179850]
+- ASoC: SOF: loader: Set complete state before post_fw_run op (Jaroslav Kysela) [2179850]
+- soundwire: intel: Initialize clock stop timeout (Jaroslav Kysela) [2179850]
+- ALSA/ASoC: hda: move SPIB/DRMS functionality from ext layer (Jaroslav Kysela) [2179850]
+- ALSA: hda: hdac_ext_controller: remove useless loop (Jaroslav Kysela) [2179850]
+- ALSA: hda: ext: reduce ambiguity between 'multi-link' and 'link' DMA (Jaroslav Kysela) [2179850]
+- ALSA/ASoC: hda: ext: add 'bus' prefix for multi-link stream setting (Jaroslav Kysela) [2179850]
+- ALSA/ASoC: hda: ext: remove 'link' prefix for stream-related operations (Jaroslav Kysela) [2179850]
+- ALSA/ASoC: hda: ext: add 'ext' prefix to snd_hdac_link_free_all (Jaroslav Kysela) [2179850]
+- ALSA/ASoC: hda: clarify bus_get_link() and bus_link_get() helpers (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dai: use hlink variable/parameter (Jaroslav Kysela) [2179850]
+- ALSA: hda: ext: hda_ext_controller: use hlink variable/parameter (Jaroslav Kysela) [2179850]
+- ALSA: hda: ext: hdac_ext_controller: use helpers in loop (Jaroslav Kysela) [2179850]
+- ASoC: rt1308-sdw: update the preset settings (Jaroslav Kysela) [2179850]
+- ASoC: simple-card: Fix up checks for HW param fixups (Jaroslav Kysela) [2179850]
+- ASoC: soc-dpcm.h: remove snd_soc_dpcm::hw_param (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.h: fixup comment for snd_soc_dapm_widget_for_each_path() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.h: cleanup white space (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: numerical order for dapm_up_seq (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: cleanup snd_soc_dapm_new_dai() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: merge dapm_power_one_widget() and dapm_widget_set_power() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: cleanup dapm_widget_set_power() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: ignore parameter NULL at snd_soc_dapm_free_widget() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: remove no meaning variable from snd_soc_dapm_add_path() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: tidyup error handling on snd_soc_dapm_add_route() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: replace snd_soc_dapm_wcache to snd_soc_dapm_widget (Jaroslav Kysela) [2179850]
+- ASoC: twl4030: make read-only array ramp_base static const (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc3: Log the tx message before sending it (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: ipc4: Ack a received reply or notification separately (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: ipc4: Wait for channel to be free before sending a message (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: ipc4: Read the interrupt reason registers at the same time (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Log the tx message before sending it (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Add TDM slots setting support for ACP I2S controller (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-mtrace: protect per-core nodes against multiple open (Jaroslav Kysela) [2179850]
+- soundwire: dmi-quirks: add quirk variant for LAPBC710 NUC15 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dsp: simplify S3 resume flows (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: simplify S3 resume flows (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: simplify S3 resume flows (Jaroslav Kysela) [2179850]
+- ASoC: codecs: jz4725b: add missed microphone widgets (Jaroslav Kysela) [2179850]
+- ASoC: codecs: jz4725b: add missed Mixer inputs (Jaroslav Kysela) [2179850]
+- ASoC: codecs: jz4725b: use right control for Master Playback (Jaroslav Kysela) [2179850]
+- ALSA: hda/realtek: simplify the return of comp_bind() (Jaroslav Kysela) [2179850]
+- ASoC: ak4458: add optional reset control to instead of gpio (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Support System Suspend (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Remove suspend/resume hda hooks (Jaroslav Kysela) [2179850]
+- ALSA: hda/cs_dsp_ctl: Fix mutex inversion when creating controls (Jaroslav Kysela) [2179850]
+- ALSA: hda: hda_cs_dsp_ctl: Ensure pwr_lock is held before reading/writing controls (Jaroslav Kysela) [2179850]
+- ALSA: hda: hda_cs_dsp_ctl: Minor clean and redundant code removal (Jaroslav Kysela) [2179850]
+- ASoC: codecs: hda: Fix spelling error in log message (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Simplify log control for SKL (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Simplify ignore_fw_version description (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Do not print IPC error message twice (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Do not treat unsupported IPCs as invalid (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Do not reuse msg between different IPC handlers (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add missing include to HDA board (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Simplify d0ix disabling routine (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add missing SKL-based device IDs (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Support da7219 on both KBL and APL (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Support AML with rt286 configuration (Jaroslav Kysela) [2179850]
+- ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe" (Jaroslav Kysela) [2179850]
+- ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe" (Jaroslav Kysela) [2179850]
+- ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe" (Jaroslav Kysela) [2179850]
+- ASoC: amd: Update Pink Sardine platform ACP register header (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Avoid superfluous endpoint setup (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Correct the return code from snd_usb_endpoint_set_params() (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Apply mutex around snd_usb_endpoint_set_params() (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Avoid unnecessary interface change at EP close (Jaroslav Kysela) [2179850]
+- ASoC: cx2072x: fix spelling typo in comment (Jaroslav Kysela) [2179850]
+- ALSA: hda: Update register polling macros (Jaroslav Kysela) [2179850]
+- Revert "ASoC: soc-component: using pm_runtime_resume_and_get instead of pm_runtime_get_sync" (Jaroslav Kysela) [2179850]
+- ASoC: codecs: allow WM8961 to be selected by the user (Jaroslav Kysela) [2179850]
+- ASoC: wm8961: add support for devicetree (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Load max98927 on target platform (Jaroslav Kysela) [2179850]
+- ASoC: Intel: avs: Add max98927 machine board (Jaroslav Kysela) [2179850]
+- ASoC: nau8825: Add TDM support (Jaroslav Kysela) [2179850]
+- ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe (Jaroslav Kysela) [2179850]
+- ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe (Jaroslav Kysela) [2179850]
+- ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe (Jaroslav Kysela) [2179850]
+- ASoC: core: clarify the driver name initialization (Jaroslav Kysela) [2179850]
+- ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe (Jaroslav Kysela) [2179850]
+- ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe (Jaroslav Kysela) [2179850]
+- ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe (Jaroslav Kysela) [2179850]
+- ALSA: asihpi - Remove unused struct hpi_subsys_response (Jaroslav Kysela) [2179850]
+- ALSA: sb: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [2179850]
+- ASoC: wm8978: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [2179850]
+- ASoC: cs35l36: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Fallback to headphones for type detect (Jaroslav Kysela) [2179850]
+- ASoC: uapi: Replace zero-length arrays with __DECLARE_FLEX_ARRAY() helper (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: control.h: Replace zero-length array with DECLARE_FLEX_ARRAY() helper (Jaroslav Kysela) [2179850]
+- usb: gadget: Replace runtime->status->state reference to runtime->state (Jaroslav Kysela) [2179850]
+- ASoC: intel: Replace runtime->status->state reference to runtime->state (Jaroslav Kysela) [2179850]
+- ALSA: usx2y: Replace runtime->status->state reference to runtime->state (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Replace runtime->status->state reference to runtime->state (Jaroslav Kysela) [2179850]
+- ALSA: asihpi: Replace runtime->status->state reference to runtime->state (Jaroslav Kysela) [2179850]
+- ALSA: hda: Replace runtime->status->state reference to runtime->state (Jaroslav Kysela) [2179850]
+- ALSA: firewire: Replace runtime->status->state reference to runtime->state (Jaroslav Kysela) [2179850]
+- ALSA: aloop: Replace runtime->status->state reference to runtime->state (Jaroslav Kysela) [2179850]
+- ALSA: pcm: Make mmap status read-only (Jaroslav Kysela) [2179850]
+- ALSA: pcm: Avoid reference to status->state (Jaroslav Kysela) [2179850]
+- ALSA: Remove some left-over license text in include/uapi/sound/ (Jaroslav Kysela) [2179850]
+- ALSA: firewire: Remove some left-over license text in sound/firewire (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: mt8195: Add pcm_pointer callback (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: mt8195: Add pcm_hw_params callback (Jaroslav Kysela) [2179850]
+- ALSA: memalloc: use __GFP_RETRY_MAYFAIL for DMA mem allocs (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Call snd_sof_handle_fw_exception() in case of timeout (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Only dump firmware registers for IPC3 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: mtl: Print relevant register in ipc_dump (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: skl: Use the ipc4 version of the ipc_dump (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Add separate ops for ipc_dump for IPC4 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: cnl: Add separate ops for ipc_dump for IPC4 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: MTL: remove the unnecessary snd_sof_dsp_read() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: MTL: reuse the common ops for PM (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: HDA: use IPC version-specific ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: MTL: define and set the disable_interrupts op (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: define and set the disable_interrupts op for cavs platforms (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: Add a new op for disabling interrupts (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: use power_down_dsp op in hda_dsp_remove (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: mtl: define and set power_down_dsp op (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: define and set power_down_dsp op for HDA platforms (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: introduce new op to handle dsp power down (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_da7219_mx98360a: Access num_codecs through dai_link (Jaroslav Kysela) [2179850]
+- ASoC: soc-component: using pm_runtime_resume_and_get instead of pm_runtime_get_sync (Jaroslav Kysela) [2179850]
+- ALSA: hda/ca0132 - remove the unneeded result variable (Jaroslav Kysela) [2179850]
+- ASoC: SOF: pci-tgl: add missing PCI IDs for RPL (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: pci-tgl: reorder PCI IDs (Jaroslav Kysela) [2179850]
+- ASoC: es8316: fix register sync error in suspend/resume tests (Jaroslav Kysela) [2179850]
+- ASoC: cs42l83: change cs42l83_regmap to static (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: add pcm_pointer callback for mt8186 (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Add setbias level for rt5682s codec in machine driver (Jaroslav Kysela) [2179850]
+- ASoC: ts3a227e: add parameters to control debounce times (Jaroslav Kysela) [2179850]
+- ALSA: usb-audio: Split endpoint setups for hw_params and prepare (take#2) (Jaroslav Kysela) [2179850]
+- ASoC: rt5682s: simplify the return of rt5682s_probe() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: don't unprepare widget used other pipelines (Jaroslav Kysela) [2179850]
+- ASoC: SOF: clear prepare state when widget is unprepared (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: remove useless assignment (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-topology: clarify calculation precedence (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: add ops for SKL/KBL (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: add initial SKL/KBL hardware support (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: add SKL/KBL hardware code loader (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-dsp: expose functions for SKL support (Jaroslav Kysela) [2179850]
+- ALSA: es18xx: Remove the unneeded result variable (Jaroslav Kysela) [2179850]
+- ASoC: soc.h: use array instead of playback/capture_widget (Jaroslav Kysela) [2179850]
+- ASoC: soc.h: use defined number instead of direct number (Jaroslav Kysela) [2179850]
+- ASoC: soc.h: remove num_cpus/codecs (Jaroslav Kysela) [2179850]
+- soundwire: intel: add helper to stop bus (Jaroslav Kysela) [2179850]
+- soundwire: intel: introduce helpers to start bus (Jaroslav Kysela) [2179850]
+- soundwire: intel: introduce intel_shim_check_wake() helper (Jaroslav Kysela) [2179850]
+- soundwire: intel: simplify read ops assignment (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove intel_init() wrapper (Jaroslav Kysela) [2179850]
+- soundwire: intel: move shim initialization before power up/down (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove clock_stop parameter in intel_shim_init() (Jaroslav Kysela) [2179850]
+- soundwire: intel: move all PDI initialization under intel_register_dai() (Jaroslav Kysela) [2179850]
+- soundwire: intel: move DAI registration and debugfs init earlier (Jaroslav Kysela) [2179850]
+- soundwire: intel: simplify flow and use devm_ for DAI registration (Jaroslav Kysela) [2179850]
+- soundwire: intel: fix error handling on dai registration issues (Jaroslav Kysela) [2179850]
+- ASoC: SOF: replace ipc4-loader dev_vdbg with tracepoints (Jaroslav Kysela) [2179850]
+- ASoC: SOF: replace dev_vdbg with tracepoints (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: replace dev_vdbg with tracepoints (Jaroslav Kysela) [2179850]
+- ASoC: SOF: remove unneeded dev_vdbg (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: remove unneeded dev_vdbg (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: add HDA interrupt source tracing (Jaroslav Kysela) [2179850]
+- ASoC: SOF: add widget setup/free tracing (Jaroslav Kysela) [2179850]
+- ALSA: hda: ext: remove always-true conditions on host and link release (Jaroslav Kysela) [2179850]
+- ALSA: hda: ext: fix locking in stream_release (Jaroslav Kysela) [2179850]
+- ALSA: hda: ext: simplify logic for stream assignment (Jaroslav Kysela) [2179850]
+- ALSA: hda: Use hdac_ext prefix in snd_hdac_stream_free_all() for clarity (Jaroslav Kysela) [2179850]
+- ALSA: hda: ext: make snd_hdac_ext_stream_init() static (Jaroslav Kysela) [2179850]
+- ALSA: hda: document state machine for hdac_streams (Jaroslav Kysela) [2179850]
+- ALSA: hda: make snd_hdac_stream_clear() static (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: override mclk_id after parsing NHLT SSP blob (Jaroslav Kysela) [2179850]
+- ALSA: hda: intel-nhlt: add intel_nhlt_ssp_mclk_mask() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: refine SSP count support (Jaroslav Kysela) [2179850]
+- soundwire: cadence: Simplify error paths in cdns_xfer_msg() (Jaroslav Kysela) [2179850]
+- soundwire: cadence: Fix error check in cdns_xfer_msg() (Jaroslav Kysela) [2179850]
+- soundwire: bus: Fix wrong port number in sdw_handle_slave_alerts() (Jaroslav Kysela) [2179850]
+- soundwire: cadence: Write to correct address for each FIFO chunk (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: add pcm_hw_params callback for mt8186 (Jaroslav Kysela) [2179850]
+- ALSA: ppc: Switch to use for_each_child_of_node() macro (Jaroslav Kysela) [2179850]
+- ASoC: Intel: skylake: remove unnecessary dev_set_drvdata() (Jaroslav Kysela) [2179850]
+- soundwire: qcom: do not send status of device 0 during alert (Jaroslav Kysela) [2179850]
+- soundwire: qcom: update status from device id 1 (Jaroslav Kysela) [2179850]
+- ASoC: max98390: Fix dsm calibration reading (Jaroslav Kysela) [2179850]
+- soundwire: cadence: Don't overwrite msg->buf during write commands (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: use devm_kcalloc() instead of devm_kzalloc() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_ssp_amp: use devm_kcalloc() instead of devm_kzalloc() (Jaroslav Kysela) [2179850]
+- ASOC: SOF: use devm_kcalloc() instead of devm_kzalloc() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_es8336: use function devm_kcalloc() instead of devm_kzalloc() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_nau8825: use function devm_kcalloc() instead of devm_kzalloc() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_cs42l42: use function devm_kcalloc() instead of devm_kzalloc() (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: use function devm_kcalloc() instead of devm_kzalloc() (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: use devm_kcalloc() instead of devm_kzalloc() (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Switch to dev_err_probe() helper (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Implement 'set_bclk_ratio' (Jaroslav Kysela) [2179850]
+- ASoC: cs42l83: Extend CS42L42 support to new part (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Export regmap elements to core namespace (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Split I2C identity into separate module (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Pass component and dai defs into common probe (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Split cs42l42_resume into two functions (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Split probe() and remove() into stages (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Use cs42l42->dev instead of &i2c_client->dev (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Add bitclock frequency argument to cs42l42_pll_config() (Jaroslav Kysela) [2179850]
+- soundwire: bus: Don't exit early if no device IDs were programmed (Jaroslav Kysela) [2179850]
+- soundwire: cadence: Fix lost ATTACHED interrupts when enumerating (Jaroslav Kysela) [2179850]
+- soundwire: bus: Don't re-enumerate before status is UNATTACHED (Jaroslav Kysela) [2179850]
+- soundwire: bus: Don't lose unattach notifications (Jaroslav Kysela) [2179850]
+- soundwire: cadence: fix updating slave status when a bus has multiple peripherals (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm: Switch to use dev_err_probe() helper (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Switch to use dev_err_probe() helper (Jaroslav Kysela) [2179850]
+- ASoC: bcm2835-i2s: Switch to use dev_err_probe() helper (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: increase SRAM inbox and outbox size to 1024 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Adding amd HS functionality to the sof core (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Add support for Rembrandt plaform. (Jaroslav Kysela) [2179850]
+- ASoC: SOF: amd: Make ACP core code generic for newer SOC transition (Jaroslav Kysela) [2179850]
+- ASoC: nau8825: Add ADCOUT IO drive strength control (Jaroslav Kysela) [2179850]
+- ASoC: ak4458: Add ak4458_reset in device probe and remove (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sof_rt5682: remove SOF_RT1015_SPEAKER_AMP_100FS flag (Jaroslav Kysela) [2179850]
+- ASoC: rt5682s: Reduce coupling of PLLB setting (Jaroslav Kysela) [2179850]
+- ASoC: rt5682s: Reduce coupling of I2S1 setting (Jaroslav Kysela) [2179850]
+- ASoC: rt5682s: Reduce coupling of Micbias and Vref2 settings (Jaroslav Kysela) [2179850]
+- ALSA: dummy: Add customizable volume min/max. (Jaroslav Kysela) [2179850]
+- ALSA: dummy: Fix trailing whitespaces. (Jaroslav Kysela) [2179850]
+- soundwire: cadence: remove unused sdw_cdns_master_ops declaration (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: Add mtrace type information for IPC4 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: icl: Set IPC4-specific DSP ops (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Add support for mtrace log extraction (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Configure the debug box offset (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Add define for the outbox window index (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Add macro to get core ID from log buffer status message (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4: Only print LOG BUFFER update message info if requested (Jaroslav Kysela) [2179850]
+- sound: oss: dmasound: remove software_input_volume declaration (Jaroslav Kysela) [2179850]
+- ALSA: memalloc: remove snd_dma_sg_ops declaration (Jaroslav Kysela) [2179850]
+- ALSA: line6: remove line6_set_raw declaration (Jaroslav Kysela) [2179850]
+- ASoC: hdmi-codec.c: use devm_kzalloc() for DMA data (Jaroslav Kysela) [2179850]
+- ASoC: soc-core.c: setup rtd->pmdown_time at soc_new_pcm_runtime() (Jaroslav Kysela) [2179850]
+- ASoC: ak4458: Remove component probe() and remove() (Jaroslav Kysela) [2179850]
+- ASoC: max98390: Remove unnecessary amp on/off conrtol (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: tidyup snd_soc_dai_link_event_pre_pmu() (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: add comment for kzalloc()/kfree() on snd_soc_dai_link_event_pre_pmu() (Jaroslav Kysela) [2179850]
+- ASoC: sti-sas: Remove the unneeded result variable (Jaroslav Kysela) [2179850]
+- ASoC: simple-card-utils: switch to using gpiod API (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: mt8195: Add devicetree support to select topologies (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: mt8195: Add generic pcm_{open,close} callbacks (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: mt8195: Add mailbox generic callbacks for IPC (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: fixup snd_soc_dapm_new_control_unlocked() error handling (Jaroslav Kysela) [2179850]
+- ASoC: soc-dapm.c: don't use WARN_ON() at snd_soc_dai_link_event_pre_pmu() (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Utilize acpi_get_subsystem_id() (Jaroslav Kysela) [2179850]
+- ALSA: hda: cs35l41: Call put_device() in the scope of get_device() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Remove strsplit_u32() and tokenize_input() (Jaroslav Kysela) [2179850]
+- lib/string_helpers: Introduce parse_int_array_user() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Introduce function sof_of_machine_select (Jaroslav Kysela) [2179850]
+- ALSA: asihpi - Remove useless code in hpi_meter_get_peak() (Jaroslav Kysela) [2179850]
+- ASoC: amd: fix spelling mistake: "i.e" -> "i.e." (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm.c: check fe condition at out of loop (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm.c: add soc_pcm_ret() (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm.c: remove unnecessary codec2codec_close_delayed_work() (Jaroslav Kysela) [2179850]
+- ALSA: hda/hdmi: Replace zero-length array with DECLARE_FLEX_ARRAY() helper (Jaroslav Kysela) [2179850]
+- ASoC: codecs: max98088: remove redundant ret variable (Jaroslav Kysela) [2179850]
+- ASoC: amd: enable Pink sardine platform machine driver build. (Jaroslav Kysela) [2179850]
+- ASoC: amd: add Pink Sardine machine driver using dmic (Jaroslav Kysela) [2179850]
+- ASoC: amd: create platform device for acp6.2 machine driver (Jaroslav Kysela) [2179850]
+- ASoC: amd: enable Pink Sardine acp6.2 drivers build (Jaroslav Kysela) [2179850]
+- ASoC: amd: add acp6.2 pdm driver pm ops (Jaroslav Kysela) [2179850]
+- ASoC: amd: add acp6.2 pci driver pm ops (Jaroslav Kysela) [2179850]
+- ASoC: amd: add acp6.2 pdm driver dma ops (Jaroslav Kysela) [2179850]
+- ASoC: amd: add acp6.2 irq handler (Jaroslav Kysela) [2179850]
+- ASoC: amd: add acp6.2 pdm platform driver (Jaroslav Kysela) [2179850]
+- ASoC: amd: add platform devices for acp6.2 pdm driver and dmic driver (Jaroslav Kysela) [2179850]
+- ASoC: amd: add acp6.2 init/de-init functions (Jaroslav Kysela) [2179850]
+- ASoC: amd: add Pink Sardine ACP PCI driver (Jaroslav Kysela) [2179850]
+- ASoC: amd: add Pink Sardine platform ACP IP register header (Jaroslav Kysela) [2179850]
+- ASoC: max98396: Make data monitor features configurable (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Modify dai_id macros to be more generic (Jaroslav Kysela) [2179850]
+- ASoC: tas2562: Drop conflicting set_bias_level power setting (Jaroslav Kysela) [2179850]
+- ASoC: tas2764: Export highpass filter setting (Jaroslav Kysela) [2179850]
+- ASoC: tas2764: Add IRQ handling (Jaroslav Kysela) [2179850]
+- ASoC: sigmadsp: switch to use kmemdup_nul() helper (Jaroslav Kysela) [2179850]
+- ASoC: max98088: add support for noise gate reg (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: Use generic implementation for .ipc_msg_data field (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: add snd_sof_dsp_ops callbacks for pcm and mail box (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: Add dai driver for mt8186 (Jaroslav Kysela) [2179850]
+- ASoC: codecs: add suspend and resume for ES8316 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: imx8ulp: add missing of_node_put() in imx8ulp_probe() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: imx: imx8ulp: declare ops structure as static (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Skip IMR boot after a firmware crash or boot failure (Jaroslav Kysela) [2179850]
+- ASoC: SOF: ipc4-loader: Verify ext manifest magic number (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Kconfig: Make IPC_MESSAGE_INJECTOR depend on SND_SOC_SOF (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Kconfig: Make IPC_FLOOD_TEST depend on SND_SOC_SOF (Jaroslav Kysela) [2179850]
+- ALSA: memalloc: Drop special handling of GFP for CONTINUOUS allocation (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sst: Switch to standard device pages (Jaroslav Kysela) [2179850]
+- ALSA: pdaudiocf: Drop superfluous GFP setup (Jaroslav Kysela) [2179850]
+- ALSA: vx: Drop superfluous GFP setup (Jaroslav Kysela) [2179850]
+- ASoC: atmel_ssc_dai: Remove the unneeded result variable (Jaroslav Kysela) [2179850]
+- soundwire: intel: cleanup WakeEnable and WakeStatus (Jaroslav Kysela) [2179850]
+- soundwire: intel: cleanup AC Timing Control (Jaroslav Kysela) [2179850]
+- soundwire: intel: cleanup IO control (Jaroslav Kysela) [2179850]
+- soundwire: intel: cleanup PCM Stream channel map and channel count (Jaroslav Kysela) [2179850]
+- soundwire: intel: cleanup PCM stream capabilities (Jaroslav Kysela) [2179850]
+- soundwire: intel: add comment for control stream cap/chmap (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove unused PDM capabilities (Jaroslav Kysela) [2179850]
+- soundwire: intel: cleanup SHIM SYNC (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove IPPTR unused definition (Jaroslav Kysela) [2179850]
+- soundwire: intel: regroup definitions for LCTL (Jaroslav Kysela) [2179850]
+- soundwire: intel: cleanup definition of LCOUNT (Jaroslav Kysela) [2179850]
+- soundwire: intel: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2179850]
+- soundwire: bus: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2179850]
+- soundwire: intel: set dev_num_ida_min (Jaroslav Kysela) [2179850]
+- soundwire: bus: allow device number to be unique at system level (Jaroslav Kysela) [2179850]
+- soundwire: bus: rename sdw_ida as sdw_bus_ida (Jaroslav Kysela) [2179850]
+- soundwire: dmi-quirks: add remapping for HP Omen 16-k0005TX (Jaroslav Kysela) [2179850]
+- ALSA: hda: cleanup definitions for multi-link registers (Jaroslav Kysela) [2179850]
+- ASoC: wcd9335: remove always-true condition (Jaroslav Kysela) [2179850]
+- ASoC: hdmi-codec: remove unused definitions (Jaroslav Kysela) [2179850]
+- ASoC: SOF: compress: Remove dai_posn variable (Jaroslav Kysela) [2179850]
+- ASoC: SOF: compress: Add copy function for capture case (Jaroslav Kysela) [2179850]
+- ASoC: SOF: compress: Move sof_compr_copy functionality (Jaroslav Kysela) [2179850]
+- ASoC: Intel: fix unused-variable warning in probe_codec (Jaroslav Kysela) [2179850]
+- ASoC: soc-pcm.c: summarize related settings at soc_new_pcm() (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Fix compilation when HDA_AUDIO_CODEC config is disabled (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: add a label to make error path more clean (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: switch to use dev_err_probe() (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: remove unnecessary NULL checks (Jaroslav Kysela) [2179850]
+- ASoC: Change handling of unimplemented set_bclk_ratio (Jaroslav Kysela) [2179850]
+- ALSA: hda: Remove unused defines (Jaroslav Kysela) [2179850]
+- ALSA: hda: Remove unused MAX_PIN_CONFIGS constant (Jaroslav Kysela) [2179850]
+- ALSA: hda: Rework snd_hdac_stream_reset() to use macros (Jaroslav Kysela) [2179850]
+- ALSA: hda: Move stream-register polling macros (Jaroslav Kysela) [2179850]
+- ASoC: SOF: imx: Add i.MX8ULP HW support (Jaroslav Kysela) [2179850]
+- ASoC: soc-utils-test: Add test for snd_soc_params_to_bclk() (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Use snd_soc_tdm_params_to_bclk() (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Fix comment typo in cs42l42_slow_start_put() (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Move cs42l42_supply_names to .c file (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Add include dependencies to cs42l42.h (Jaroslav Kysela) [2179850]
+- ASoC: cs42l42: Don't include kernel.h (Jaroslav Kysela) [2179850]
+- ASoC: codecs: es8326: change es8326_regmap_config to static (Jaroslav Kysela) [2179850]
+- ASoC: SOF: compress: Add support for computing timestamps (Jaroslav Kysela) [2179850]
+- ASoC: SOF: compress: Save channel count and sample bytes (Jaroslav Kysela) [2179850]
+- ASoC: SOF: compress: Introduce sof_compr_stream (Jaroslav Kysela) [2179850]
+- ASoC: SOF: compress: Remove byte offset computation (Jaroslav Kysela) [2179850]
+- soundwire: intel: Remove unnecessary TODO (Jaroslav Kysela) [2179850]
+- ASoC: Variable type completion (Jaroslav Kysela) [2179850]
+- ASoC: core: remove setting platform_max in kcontrol macros (Jaroslav Kysela) [2179850]
+- ALSA: hda: Fix page fault in snd_hda_codec_shutdown() (Jaroslav Kysela) [2179850]
+- ALSA: hda: Remove codec init and exit routines (Jaroslav Kysela) [2179850]
+- ALSA: hda: Always free codec on the device release (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Drop hdac_ext usage for codec device creation (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: Introduce HDA codec init and exit routines (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Skylake: Introduce HDA codec init and exit routines (Jaroslav Kysela) [2179850]
+- ASoC: codecs: add support for ES8326 (Jaroslav Kysela) [2179850]
+- ASoC: Intel: Drop legacy HSW/BDW board-match information (Jaroslav Kysela) [2179850]
+- ASoC: Intel: catpt: Drop SND_SOC_ACPI_INTEL_MATCH dependency (Jaroslav Kysela) [2179850]
+- ASoC: Intel: bdw_rt286: Rename module (Jaroslav Kysela) [2179850]
+- ASoC: Intel: hsw_rt5640: Rename module (Jaroslav Kysela) [2179850]
+- ASoC: soc-utils: Improve kerneldoc for snd_soc_tdm_params_to_bclk() (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Add TDM support for acp i2s stream (Jaroslav Kysela) [2179850]
+- ASoC: amd: acp: Initialize list to store acp_stream during pcm_open (Jaroslav Kysela) [2179850]
+- ASoC: Variable type completion (Jaroslav Kysela) [2179850]
+- ASoC: simple-card-utils: Fixup DAI sample format (Jaroslav Kysela) [2179850]
+- ASoC: SOF: mediatek: Add sof_mt8186_machs for mt8186 (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Introduce function sof_of_machine_select (Jaroslav Kysela) [2179850]
+- ASoC: omap: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ASoC: DAPM: Replace sprintf() calls with sysfs_emit_at() (Jaroslav Kysela) [2179850]
+- ASoC: core: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: skylake: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: catpt: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: sst: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ASoC: tlv320aic26: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ASoC: cs43130: Replace scnprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ALSA: aoa: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ALSA: ac97: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2179850]
+- ASoC: Intel: cirrus-common: Use UID to map correct amp to prefix (Jaroslav Kysela) [2179850]
+- ASoC: codecs: show PING status on resume failures (Jaroslav Kysela) [2179850]
+- soundwire: add sdw_show_ping_status() helper (Jaroslav Kysela) [2179850]
+- soundwire: intel/cadence: expose PING status in manager ops (Jaroslav Kysela) [2179850]
+- soundwire: add read_ping_status helper definition in manager ops (Jaroslav Kysela) [2179850]
+- soundwire: qcom: Update error prints to debug prints (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda: Drop no longer used ROM state definitions (Jaroslav Kysela) [2179850]
+- ASoC: SOF: Intel: hda-loader: Use the FSR state definitions during bootup (Jaroslav Kysela) [2179850]
+- ALSA: wavefront: remove redundant assignment to pointer end (Jaroslav Kysela) [2179850]
+- soundwire: Use acpi_dev_for_each_child() (Jaroslav Kysela) [2179850]
+- firewire: cdev: fix potential leak of kernel stack due to uninitialized value (Jaroslav Kysela) [2179850]
+- list: Add list_next_entry_circular() and list_prev_entry_circular() (Jaroslav Kysela) [2179850]
+- ASoC: cs43130: Re-use generic struct u16_fract (Jaroslav Kysela) [2179850]
+- firewire: fix potential uaf in outbound_phy_packet_callback() (Jaroslav Kysela) [2179850]
+- firewire: add kernel API to access packet structure in request structure for AR context (Jaroslav Kysela) [2179850]
+- firewire: add kernel API to access CYCLE_TIME register (Jaroslav Kysela) [2179850]
+- firewire: Add dummy read_csr/write_csr functions (Jaroslav Kysela) [2179850]
+- treewide: Replace open-coded flex arrays in unions (Jaroslav Kysela) [2179850]
+- firewire: Remove function callback casts (Jaroslav Kysela) [2179850]
+- ALSA: doc: Document PC Beep Hidden Register on Realtek ALC256 (Jaroslav Kysela) [2179850]
+- tools include UAPI: Sync sound/asound.h copy with the kernel sources (Jaroslav Kysela) [2179850]
+
+* Fri Jun 16 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-498.el8]
+- Revert "softirq: Let ksoftirqd do its job" (Oleg Nesterov) [2196767]
+- perf: Fix check before add_event_to_groups() in perf_group_detach() (Michael Petlan) [2209645] {CVE-2023-2235}
+- perf/core: Call LSM hook after copying perf_event_attr (Audra Mitchell) [2172142]
+- kprobes: Skip clearing aggrprobe's post_handler in kprobe-on-ftrace case (Audra Mitchell) [2172142]
+- cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset (Audra Mitchell) [2172142]
+- cgroup: Fix race condition at rebind_subsystems() (Audra Mitchell) [2172142]
+- tick/nohz: unexport __init-annotated tick_nohz_full_setup() (Audra Mitchell) [2172142]
+- ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() (Audra Mitchell) [2172142]
+- genirq: Synchronize interrupt thread startup (Audra Mitchell) [2172142]
+- genirq: Initialize request_mutex if CONFIG_SPARSE_IRQ=n (Audra Mitchell) [2172142]
+- scftorture: Fix distribution of short handler delays (Audra Mitchell) [2172142]
+- tick/nohz: Use WARN_ON_ONCE() to prevent console saturation (Audra Mitchell) [2172142]
+- ipc/sem: do not sleep with a spin lock held (Audra Mitchell) [2172142]
+- signal: In get_signal test for signal_group_exit every time through the loop (Audra Mitchell) [2172142]
+- genirq: Move prio assignment into the newly created thread (Audra Mitchell) [2172142]
+- sched,irq: Convert to sched_set_fifo() (Audra Mitchell) [2172142]
+- cgroup/cpuset: Fix violation of cpuset locking rule (Audra Mitchell) [2172142]
+- timers: Move clearing of base::timer_running under base:: Lock (Audra Mitchell) [2172142]
+- cgroup1: fix leaked context root causing sporadic NULL deref in LTP (Audra Mitchell) [2172142]
+- jump_label: Fix usage in module __init (Audra Mitchell) [2172142]
+- padata: fix possible padata_works_lock deadlock (Audra Mitchell) [2172142]
+- genirq/PM: Always unlock IRQ descriptor in rearm_wake_irq() (Audra Mitchell) [2172142]
+- padata: upgrade smp_mb__after_atomic to smp_mb in padata_do_serial (Audra Mitchell) [2172142]
+- cpu/speculation: Warn on unsupported mitigations= parameter (Audra Mitchell) [2172142]
+- x86/speculation: Remove redundant arch_smt_update() invocation (Audra Mitchell) [2172142]
+- cpu/hotplug: Non-SMP machines do not make use of booted_once (Audra Mitchell) [2172142]
+- can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error path (Jose Ignacio Tornos Martinez) [2156581] {CVE-2022-28388}
+- kernfs: Improve kernfs_notify() poll notification latency (Ian Kent) [2195844]
+- stmmac: fix changing mac address (Corinna Vinschen) [2177654]
+- net/sched: cls_tcindex: downgrade to imperfect hash (Davide Caratti) [2192308] {CVE-2023-1829}
+- Bluetooth: btsdio: fix use after free bug in btsdio_remove due to race condition (Ricardo Robaina) [2185961] {CVE-2023-1989}
+- net: qcom/emac: Fix use after free bug in emac_remove due to race condition (Ricardo Robaina) [2192673] {CVE-2023-2483}
+- s390/crypto: improve retry logic in case of master key change (Tobias Huschle) [2212794]
+- bpf: pull before calling skb_postpull_rcsum() (Felix Maurer) [2186521]
+- bpf, sockmap: fix race in sock_map_free() (Felix Maurer) [2186521]
+- bpf, sock_map: Move cancel_work_sync() out of sock lock (Felix Maurer) [2186521]
+- brcmfmac: Switch to appropriate helper to load EFI variable contents (Lenny Szubowicz) [2183047]
+- iwlwifi: Switch to proper EFI variable store interface (Lenny Szubowicz) [2183047]
+- efi: Store mask of supported runtime services in struct efi (Lenny Szubowicz) [2183047]
+- NFS: Don't report errors from nfs_pageio_complete() more than once (Benjamin Coddington) [2213644]
+- NFS: Do not report flush errors in nfs_write_end() (Benjamin Coddington) [2213644]
+- NFS: Don't report ENOSPC write errors twice (Benjamin Coddington) [2213644]
+- NFS: fsync() should report filesystem errors over EINTR/ERESTARTSYS (Benjamin Coddington) [2213644]
+- NFS: Do not report EINTR/ERESTARTSYS as mapping errors (Benjamin Coddington) [2213644]
+- net: openvswitch: release vport resources on failure (Antoine Tenart) [2190225]
+- net: openvswitch: Add support to count upcall packets (Antoine Tenart) [2190225]
+- net: openvswitch: fix race on port output (Antoine Tenart) [2190225]
+- net: openvswitch: fix possible memory leak in ovs_meter_cmd_set() (Antoine Tenart) [2190225]
+- net: openvswitch: fix flow memory leak in ovs_flow_cmd_new (Antoine Tenart) [2190225]
+- openvswitch: Fix flow lookup to use unmasked key (Antoine Tenart) [2190225]
+- openvswitch: switch from WARN to pr_warn (Antoine Tenart) [2190225]
+- EDAC/i10nm: Add Intel Emerald Rapids server support (Aristeu Rozanski) [2165649]
+- EDAC/skx_common: Delete duplicated and unreachable code (Aristeu Rozanski) [2165649]
+- EDAC/skx_common: Enable EDAC support for the "near" memory (Aristeu Rozanski) [2165649]
+- EDAC/i10nm: Print an extra register set of retry_rd_err_log (Aristeu Rozanski) [2165649]
+- EDAC/i10nm: Retrieve and print retry_rd_err_log registers for HBM (Aristeu Rozanski) [2165649]
+- EDAC/skx_common: Add ChipSelect ADXL component (Aristeu Rozanski) [2165649]
+- EDAC/i10nm: Fix NVDIMM detection (Aristeu Rozanski) [2165649]
+- EDAC/skx_common: Set the memory type correctly for HBM memory (Aristeu Rozanski) [2165649]
+- EDAC/mc: Add new HBM2 memory type (Aristeu Rozanski) [2165649]
+- EDAC: Replace EDAC_DIMM_PTR() macro with edac_get_dimm() function (Aristeu Rozanski) [2165649]
+- tpm: disable hwrng for fTPM on some AMD designs (Štěpán Horáček) [2159583]
+- tpm/eventlog: Don't abort tpm_read_log on faulty ACPI address (Štěpán Horáček) [2159583]
+- tpm: Use managed allocation for bios event log (Štěpán Horáček) [2159583]
+- efi: tpm: Avoid READ_ONCE() for accessing the event log (Štěpán Horáček) [2159583]
+- tpm: Allow system suspend to continue when TPM suspend fails (Štěpán Horáček) [2159583]
+- tpm: tpm_tis: Add the missed acpi_put_table() to fix memory leak (Štěpán Horáček) [2159583]
+- tpm: tpm_crb: Add the missed acpi_put_table() to fix memory leak (Štěpán Horáček) [2159583]
+- tpm: acpi: Call acpi_put_table() to fix memory leak (Štěpán Horáček) [2159583]
+- tpm/tpm_crb: Fix error message in __crb_relinquish_locality() (Štěpán Horáček) [2159583]
+- tpm: Avoid function type cast of put_device() (Štěpán Horáček) [2159583]
+- char: tpm: Protect tpm_pm_suspend with locks (Štěpán Horáček) [2159583]
+- efi/tpm: Pass correct address to memblock_reserve (Štěpán Horáček) [2159583]
+- char: move from strlcpy with unused retval to strscpy (Štěpán Horáček) [2159583]
+- tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH (Štěpán Horáček) [2159583]
+- tpm: Fix buffer access in tpm2_get_tpm_pt() (Štěpán Horáček) [2159583]
+- tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe() (Štěpán Horáček) [2159583]
+- tpm: use try_get_ops() in tpm-space.c (Štěpán Horáček) [2159583]
+- tpm: Fix error handling in async work (Štěpán Horáček) [2159583]
+- tpm: vtpm_proxy: Check length to avoid compiler warning (Štěpán Horáček) [2159583]
+- tpm: fix NPE on probe for missing device (Štěpán Horáček) [2159583]
+- tpm: fix potential NULL pointer access in tpm_del_char_device (Štěpán Horáček) [2159583]
+- tpm_tis: Fix an error handling path in 'tpm_tis_core_init()' (Štěpán Horáček) [2159583]
+- tpm: add request_locality before write TPM_INT_ENABLE (Štěpán Horáček) [2159583]
+- tpm_tis_spi: Add missing SPI ID (Štěpán Horáček) [2159583]
+- tpm: fix Atmel TPM crash caused by too frequent queries (Štěpán Horáček) [2159583]
+- tpm: Check for integer overflow in tpm2_map_response_body() (Štěpán Horáček) [2159583]
+- KEYS: trusted: Fix TPM reservation for seal/unseal (Štěpán Horáček) [2135881]
+- KVM: x86: Add helpers to recalc physical vs. logical optimized APIC maps (John Allen) [2117761]
+- KVM: x86: Allow APICv APIC ID inhibit to be cleared (John Allen) [2117761]
+- KVM: x86: Track required APICv inhibits with variable, not callback (John Allen) [2117761]
+- Revert "KVM: SVM: Do not throw warning when calling avic_vcpu_load on a running vcpu" (John Allen) [2117761]
+- KVM: SVM: Handle multiple logical targets in AVIC kick fastpath (John Allen) [2117761]
+- KVM: SVM: Require logical ID to be power-of-2 for AVIC entry (John Allen) [2117761]
+- KVM: SVM: Update svm->ldr_reg cache even if LDR is "bad" (John Allen) [2117761]
+- KVM: SVM: Always update local APIC on writes to logical dest register (John Allen) [2117761]
+- KVM: SVM: Inhibit AVIC if vCPUs are aliased in logical mode (John Allen) [2117761]
+- KVM: x86: Inhibit APICv/AVIC if the optimized physical map is disabled (John Allen) [2117761]
+- KVM: x86: Honor architectural behavior for aliased 8-bit APIC IDs (John Allen) [2117761]
+- Documentation: KVM: Add SPDX-License-Identifier tag (John Allen) [2117761]
+- Documentation: KVM: add virtual CPU errata documentation (John Allen) [2117761]
+- KVM: x86: Disable APIC logical map if vCPUs are aliased in logical mode (John Allen) [2117761]
+- KVM: x86: Disable APIC logical map if logical ID covers multiple MDAs (John Allen) [2117761]
+- KVM: x86: Skip redundant x2APIC logical mode optimized cluster setup (John Allen) [2117761]
+- KVM: x86: Explicitly track all possibilities for APIC map's logical modes (John Allen) [2117761]
+- KVM: x86: Explicitly skip optimized logical map setup if vCPU's LDR==0 (John Allen) [2117761]
+- KVM: SVM: Add helper to perform final AVIC "kick" of single vCPU (John Allen) [2117761]
+- KVM: SVM: Document that vCPU ID == APIC ID in AVIC kick fastpatch (John Allen) [2117761]
+- Revert "KVM: SVM: Use target APIC ID to complete x2AVIC IRQs when possible" (John Allen) [2117761]
+- KVM: SVM: Replace "avic_mode" enum with "x2avic_enabled" boolean (John Allen) [2117761]
+- KVM: x86: Inhibit APIC memslot if x2APIC and AVIC are enabled (John Allen) [2117761]
+- KVM: x86: Handle APICv updates for APIC "mode" changes via request (John Allen) [2117761]
+- KVM: x86: Don't inhibit APICv/AVIC if xAPIC ID mismatch is due to 32-bit ID (John Allen) [2117761]
+- KVM: x86: Don't inhibit APICv/AVIC on xAPIC ID "change" if APIC is disabled (John Allen) [2117761]
+- KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target (John Allen) [2117761]
+- KVM: SVM: Flush the "current" TLB when activating AVIC (John Allen) [2117761]
+- KVM: x86: Purge "highest ISR" cache when updating APICv state (John Allen) [2117761]
+- KVM: x86: Blindly get current x2APIC reg value on "nodecode write" traps (John Allen) [2117761]
+- KVM: x86: Bug the VM if an accelerated x2APIC trap occurs on a "bad" reg (John Allen) [2117761]
+- KVM: x86: Do not block APIC write for non ICR registers (John Allen) [2117761]
+- KVM: x86: Add support for vICR APIC-write VM-Exits in x2APIC mode (John Allen) [2117761]
+- KVM: x86: fix APICv/x2AVIC disabled when vm reboot by itself (John Allen) [2117761]
+- KVM: SEV: fix misplaced closing parenthesis (John Allen) [2117761]
+- KVM: SVM: Do not virtualize MSR accesses for APIC LVTT register (John Allen) [2117761]
+- KVM: SVM: Fix x2APIC MSRs interception (John Allen) [2117761]
+- KVM: x86: nSVM: optimize svm_set_x2apic_msr_interception (John Allen) [2117761]
+- KVM: SVM: Add AVIC doorbell tracepoint (John Allen) [2117761]
+- KVM: SVM: Use target APIC ID to complete x2AVIC IRQs when possible (John Allen) [2117761]
+- KVM: x86: Warning APICv inconsistency only when vcpu APIC mode is valid (John Allen) [2117761]
+- KVM: x86: Move APIC access page helper to common x86 code (John Allen) [2117761]
+- KVM: SVM: Introduce hybrid-AVIC mode (John Allen) [2117761]
+- KVM: SVM: Do not throw warning when calling avic_vcpu_load on a running vcpu (John Allen) [2117761]
+- KVM: SVM: Modify AVIC GATag to support max number of 512 vCPUs (John Allen) [2117761]
+- KVM: SVM: Fix a benign off-by-one bug in AVIC physical table mask (John Allen) [2117761]
+- KVM: SVM: Ignore writes to Remote Read Data on AVIC write traps (John Allen) [2117761]
+- KVM: SVM: Introduce logic to (de)activate x2AVIC mode (John Allen) [2117761]
+- KVM: x86: nSVM: always intercept x2apic msrs (John Allen) [2117761]
+- KVM: SVM: Don't put/load AVIC when setting virtual APIC mode (John Allen) [2117761]
+- KVM: SVM: Refresh AVIC configuration when changing APIC mode (John Allen) [2117761]
+- KVM: x86: Deactivate APICv on vCPU with APIC disabled (John Allen) [2117761]
+- KVM: SVM: Adding support for configuring x2APIC MSRs interception (John Allen) [2117761]
+- KVM: SVM: Do not support updating APIC ID when in x2APIC mode (John Allen) [2117761]
+- KVM: SVM: Compute dest based on sender's x2APIC status for AVIC kick (John Allen) [2117761]
+- KVM: SVM: Update avic_kick_target_vcpus to support 32-bit APIC ID (John Allen) [2117761]
+- KVM: SVM: Update max number of vCPUs supported for x2AVIC mode (John Allen) [2117761]
+- KVM: svm/avic: Drop "struct kvm_x86_ops" for avic_hardware_setup() (John Allen) [2117761]
+- KVM: SVM: Detect X2APIC virtualization (x2AVIC) support (John Allen) [2117761]
+- KVM: x86: lapic: Rename [GET/SET]_APIC_DEST_FIELD to [GET/SET]_XAPIC_DEST_FIELD (John Allen) [2117761]
+- x86/cpufeatures: Introduce x2AVIC CPUID bit (John Allen) [2117761]
+- KVM: x86: SVM: fix nested PAUSE filtering when L0 intercepts PAUSE (John Allen) [2117761]
+- KVM: x86: nSVM: support PAUSE filtering when L0 doesn't intercept PAUSE (John Allen) [2117761]
+- KVM: x86: SVM: drop preempt-safe wrappers for avic_vcpu_load/put (John Allen) [2117761]
+- KVM: x86: disable preemption around the call to kvm_arch_vcpu_{un|}blocking (John Allen) [2117761]
+- KVM: x86: disable preemption while updating apicv inhibition (John Allen) [2117761]
+- KVM: SVM: Fix x2APIC Logical ID calculation for avic_kick_target_vcpus_fast (John Allen) [2117761]
+- KVM: x86: SVM: fix avic_kick_target_vcpus_fast (John Allen) [2117761]
+- KVM: SVM: Use target APIC ID to complete AVIC IRQs when possible (John Allen) [2117761]
+- KVM: x86: SVM: remove avic's broken code that updated APIC ID (John Allen) [2117761]
+- KVM: x86: inhibit APICv/AVIC on changes to APIC ID or APIC base (John Allen) [2117761]
+- KVM: x86: document AVIC/APICv inhibit reasons (John Allen) [2117761]
+- KVM: x86: SVM: allow AVIC to co-exist with a nested guest running (John Allen) [2117761]
+- KVM: x86: allow per cpu apicv inhibit reasons (John Allen) [2117761]
+- KVM: x86: SVM: allow to force AVIC to be enabled (John Allen) [2117761]
+
+* Fri Jun 09 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-497.el8]
+- sctp: fix a potential overflow in sctp_ifwdtsn_skip (Xin Long) [2189324]
+- sctp: check send stream number after wait_for_sndbuf (Xin Long) [2189324]
+- sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list (Xin Long) [2189324]
+- sctp: fail if no bound addresses can be used for a given scope (Xin Long) [2189324]
+- sctp: sysctl: make extra pointers netns aware (Xin Long) [2189324]
+- sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop (Xin Long) [2189324]
+- sctp: delete free member from struct sctp_sched_ops (Xin Long) [2189324]
+- sctp: fix memory leak in sctp_stream_outq_migrate() (Xin Long) [2189324]
+- sctp: clear out_curr if all frag chunks of current msg are pruned (Xin Long) [2189324]
+- sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent (Xin Long) [2189324]
+- sched/fair: Fix imbalance overflow (Phil Auld) [RHEL-419]
+- sched/fair: Move calculate of avg_load to a better location (Phil Auld) [RHEL-419]
+- sched/fair: Sanitize vruntime of entity being migrated (Phil Auld) [RHEL-419]
+- sched/rt: pick_next_rt_entity(): check list_entry (Phil Auld) [RHEL-419]
+- sched/fair: sanitize vruntime of entity being placed (Phil Auld) [RHEL-419]
+- sched/fair: Limit sched slice duration (Phil Auld) [RHEL-419]
+- sched/topology: Add __init for sched_init_domains() (Phil Auld) [RHEL-419]
+- sched/core: Reorganize ttwu_do_wakeup() and ttwu_do_activate() (Phil Auld) [RHEL-419]
+- sched/core: Micro-optimize ttwu_runnable() (Phil Auld) [RHEL-419]
+- sched/numa: Stop an exhastive search if an idle core is found (Phil Auld) [RHEL-419]
+- sched/topology: Add __init for init_defrootdomain (Phil Auld) [RHEL-419]
+- sched: Clear ttwu_pending after enqueue_task() (Phil Auld) [RHEL-419]
+- sched/psi: Fix possible missing or delayed pending event (Phil Auld) [RHEL-419]
+- sched/fair: Cleanup for SIS_PROP (Phil Auld) [RHEL-419]
+- sched/fair: Default to false in test_idle_cores() (Phil Auld) [RHEL-419]
+- sched/fair: Remove useless check in select_idle_core() (Phil Auld) [RHEL-419]
+- sched/fair: Avoid double search on same cpu (Phil Auld) [RHEL-419]
+- sched/fair: Remove redundant check in select_idle_smt() (Phil Auld) [RHEL-419]
+- sched: Rename task_running() to task_on_cpu() (Phil Auld) [RHEL-419]
+- sched/fair: Move call to list_last_entry() in detach_tasks (Phil Auld) [RHEL-419]
+- sched/fair: Cleanup loop_max and loop_break (Phil Auld) [RHEL-419]
+- sched/fair: Make sure to try to detach at least one movable task (Phil Auld) [RHEL-419]
+- sched: Add update_current_exec_runtime helper (Phil Auld) [RHEL-419]
+- sched/fair: Don't init util/runnable_avg for !fair task (Phil Auld) [RHEL-419]
+- sched/fair: Move task sched_avg attach to enqueue_task_fair() (Phil Auld) [RHEL-419]
+- sched/fair: Update comments in enqueue/dequeue_entity() (Phil Auld) [RHEL-419]
+- sched/fair: Maintain task se depth in set_task_rq() (Phil Auld) [RHEL-419]
+- sched/debug: Print each field value left-aligned in sched_show_task() (Phil Auld) [RHEL-419]
+- sched/fair: Make per-cpu cpumasks static (Phil Auld) [RHEL-419]
+- sched/fair: Rename select_idle_mask to select_rq_mask (Phil Auld) [RHEL-419]
+- sched: Snapshot thread flags (Phil Auld) [RHEL-419]
+- sched/fair: find_idlest_group(): Remove unused sd_flag parameter (Phil Auld) [RHEL-419]
+- redhat/genlog.py: add support to list/process zstream Jira tickets (Herton R. Krzesinski)
+- powercap: intel_rapl: add support for Emerald Rapids (Prarit Bhargava) [2156804]
+- vsock: avoid to close connected socket after the timeout (Stefano Garzarella) [2209710]
+- sfc: Fix module EEPROM reporting for QSFP modules (Íñigo Huguet) [2192382]
+- perf script: Fix missing Retire Latency fields option documentation (Michael Petlan) [2177014]
+- perf event x86: Add retire_lat when synthesizing PERF_SAMPLE_WEIGHT_STRUCT (Michael Petlan) [2177014]
+- perf test x86: Support the retire_lat (Retire Latency) sample_type check (Michael Petlan) [2177014]
+- perf script: Support Retire Latency (Michael Petlan) [2177014]
+- perf report: Support Retire Latency (Michael Petlan) [2177014]
+
+* Thu Jun 01 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-496.el8]
+- netfilter: nft_redir: correct value of inet type `.maxattrs` (Florian Westphal) [2189517]
+- netfilter: tproxy: fix deadlock due to missing BH disable (Florian Westphal) [2189517]
+- netfilter: ebtables: fix table blob use-after-free (Florian Westphal) [2189517]
+- netfilter: ctnetlink: fix possible refcount leak in ctnetlink_create_conntrack() (Florian Westphal) [2189517]
+- netfilter: nf_tables: make table handle allocation per-netns friendly (Florian Westphal) [2189517]
+- netfilter: nf_tables: really skip inactive sets when allocating name (Florian Westphal) [2189517]
+- intel_idle: add Emerald Rapids Xeon support (Prarit Bhargava) [2156824]
+- tools/power turbostat: Introduce support for EMR (Prarit Bhargava) [2156806]
+- kunit: drm: make DRM buddy test compatible with other pages sizes (Nico Pache) [2209108]
+- redhat: fix missing kunit module in mod-internal.list (Nico Pache) [2209108]
+- bluetooth: Perform careful capability checks in hci_sock_ioctl() (Ricardo Robaina) [2196353] {CVE-2023-2002}
+- macvlan: Fix mc_filter calculation (Xin Long) [2186948]
+- macvlan: Add netlink attribute for broadcast cutoff (Xin Long) [2186948]
+- macvlan: Skip broadcast queue if multicast with single receiver (Xin Long) [2186948]
+- net: macvlan: fix memory leaks of macvlan_common_newlink (Xin Long) [2186948]
+- net: macvlan: change schedule system_wq to system_unbound_wq (Xin Long) [2186948]
+- net: macvlan: fix potential UAF problem for lowerdev (Xin Long) [2186948]
+- macvlan: Support for high multicast packet rate (Xin Long) [2186948]
+- macvlan: Skip loopback packets in RX handler (Xin Long) [2186948]
+- macvlan: fix null dereference in macvlan_device_event() (Xin Long) [2186948]
+- macvlan: add cond_resched() during multicast processing (Xin Long) [2186948]
+- macvlan: schedule bc_work even if error (Xin Long) [2186948]
+- macvlan: replace kfree_skb by consume_skb for drop profiles (Xin Long) [2186948]
+- tipc: fix unexpected link reset due to discovery messages (Xin Long) [2193242]
+- tipc: Fix potential OOB in tipc_link_proto_rcv() (Xin Long) [2193242]
+- tipc: check skb_linearize() return value in tipc_disc_rcv() (Xin Long) [2193242]
+- tipc: fix the msg->req tlv len check in tipc_nl_compat_name_table_dump_header (Xin Long) [2193242]
+- tipc: fix a null-ptr-deref in tipc_topsrv_accept (Xin Long) [2193242]
+- s390/dasd: fix hanging blockdevice after request requeue (Tobias Huschle) [2043875]
+- s390/dasd: add autoquiesce event for start IO error (Tobias Huschle) [2043875]
+- s390/dasd: add aq_timeouts autoquiesce trigger (Tobias Huschle) [2043875]
+- s390/dasd: add aq_requeue sysfs attribute (Tobias Huschle) [2043875]
+- s390/dasd: add aq_mask sysfs attribute (Tobias Huschle) [2043875]
+- s390/dasd: add autoquiesce feature (Tobias Huschle) [2043875]
+- s390/dasd: remove unused DASD EER defines (Tobias Huschle) [2043875]
+- md: Fix bitmap offset type in sb writer (Nigel Croxon) [2189478]
+- md/raid5: Improve performance for sequential IO (Nigel Croxon) [2189478]
+- md/raid5: remove unused working_disks variable (Nigel Croxon) [2189478]
+- md/raid10: fix memleak of md thread (Nigel Croxon) [2189478]
+- md/raid10: fix memleak for 'conf->bio_split' (Nigel Croxon) [2189478]
+- md/raid10: fix leak of 'r10bio->remaining' for recovery (Nigel Croxon) [2189478]
+- md/raid10: don't BUG_ON() in raise_barrier() (Nigel Croxon) [2189478]
+- md: fix soft lockup in status_resync (Nigel Croxon) [2189478]
+- md: add error_handlers for raid0 and linear (Nigel Croxon) [2151208 2189478]
+- md: Use optimal I/O size for last bitmap page (Nigel Croxon) [2189478]
+- md: Fix types in sb writer (Nigel Croxon) [2189478]
+- md: Move sb writer loop to its own function (Nigel Croxon) [2189478]
+- md/raid10: Fix typo in comment (replacment -> replacement) (Nigel Croxon) [2189478]
+- md/raid10: fix null-ptr-deref in raid10_sync_request (Nigel Croxon) [2189478]
+- md/raid10: fix task hung in raid10d (Nigel Croxon) [2189478]
+- md: simplify sysctl registration (Nigel Croxon) [2189478]
+- HID: intel-ish-hid: ipc: Fix potential use-after-free in work function (Tony Camuso) [2182388]
+- devm-helpers: Fix devm_delayed_work_autocancel() kerneldoc (Tony Camuso) [2182388]
+- devm-helpers: Add resource managed version of work init (Tony Camuso) [2182388]
+- workqueue: Add resource managed version of delayed work init (Tony Camuso) [2182388]
+- HID: stop drivers from selecting CONFIG_HID (Tony Camuso) [2182388]
+- HID: intel_ish-hid: Add check for ishtp_dma_tx_map (Tony Camuso) [2182388]
+- HID: intel-ish-hid: ishtp: remove variable rb_count (Tony Camuso) [2182388]
+
+* Fri May 26 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-495.el8]
+- i40e: Add support for VF to specify its primary MAC address (Stefan Assmann) [2091552]
+- net/tg3: resolve deadlock in tg3_reset_task() during EEH (Ken Cox) [2159218 2166475]
+- HID: asus: use spinlock to safely schedule workers (Ricardo Robaina) [2186282] {CVE-2023-1079}
+- HID: asus: use spinlock to protect concurrent accesses (Ricardo Robaina) [2186282] {CVE-2023-1079}
+- e1000e: Disable TSO on i219-LM card to increase speed (Ken Cox) [2109782]
+- erspan: get the proto with the md version for collect_md (Xin Long) [2207724]
+- netfilter: nf_tables: deactivate anonymous set from preparation phase (Florian Westphal) [2196148] {CVE-2023-32233}
+- scsi: scsi_dh_alua: Fix memleak for 'qdata' in alua_activate() (Ewan D. Milne) [2171092]
+- scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR (Ewan D. Milne) [2171092]
+- scsi: core: Add BLIST_NO_VPD_SIZE for some VDASD (Ewan D. Milne) [2171092]
+- scsi: core: Fix a source code comment (Ewan D. Milne) [2171092]
+- scsi: Revert "scsi: core: map PQ=1, PDT=other values to SCSI_SCAN_TARGET_PRESENT" (Ewan D. Milne) [2171092]
+- scsi: scsi_debug: Delete unreachable code in inquiry_vpd_b0() (Ewan D. Milne) [2171092]
+- scsi: core: Use SCSI_SCAN_INITIAL in do_scsi_scan_host() (Ewan D. Milne) [2171092]
+- scsi: core: Use SCSI_SCAN_RESCAN in __scsi_add_device() (Ewan D. Milne) [2171092]
+- scsi: Define the COMPLETED sense key (Ewan D. Milne) [2171092]
+- scsi: core: Add I/O timeout count for SCSI device (Ewan D. Milne) [2171092]
+- tipc: check the bearer min mtu properly when setting it by netlink (Xin Long) [2185143]
+- tipc: do not update mtu if msg_max is too small in mtu negotiation (Xin Long) [2185143]
+- tipc: add tipc_bearer_min_mtu to calculate min mtu (Xin Long) [2185143]
+- net/tipc: fix tipc header files for kernel-doc (Xin Long) [2185143]
+- scsi: smartpqi: Update version to 2.1.22-040 (Don Brace) [2162103]
+- scsi: smartpqi: Update copyright to 2023 (Don Brace) [2162103]
+- scsi: smartpqi: Add sysfs entry for NUMA node in /sys/block/sdX/device (Don Brace) [2162103]
+- scsi: smartpqi: Stop sending driver-initiated TURs (Don Brace) [2162103]
+- scsi: smartpqi: Fix byte aligned writew for ARM servers (Don Brace) [2162103]
+- scsi: smartpqi: Add support for RAID NCQ priority (Don Brace) [2162103]
+- scsi: smartpqi: Validate block layer host tag (Don Brace) [2162103]
+- scsi: smartpqi: Remove contention for raid_bypass_cnt (Don Brace) [2162103]
+- scsi: smartpqi: Fix rare SAS transport memory leak (Don Brace) [2162103]
+- scsi: smartpqi: Remove NULL pointer check (Don Brace) [2162103]
+- scsi: smartpqi: Add new controller PCI IDs (Don Brace) [2162103]
+- scsi: smartpqi: Map full length of PCI BAR 0 (Don Brace) [2162103]
+- scsi: smartpqi: Replace one-element array with flexible-array member (Don Brace) [2162103]
+- scsi: mpi3mr: Use -ENOMEM instead of -1 in mpi3mr_expander_add() (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Use IRQ save variants of spinlock to protect chain frame allocation (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Handle soft reset in progress fault code (0xF002) (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Update driver version to 8.4.1.0.0 (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Update copyright year (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix W=1 compilation warnings (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Update MPI Headers to revision 27 (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Avoid escalating to higher level reset when target is removed (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Modify MUR timeout value to 120 seconds (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix admin queue memory leak upon soft reset (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Successive VD delete and add causes FW fault (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix expander node leak in mpi3mr_remove() (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix memory leaks in mpi3mr_init_ioc() (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix sas_hba.phy memory leak in mpi3mr_remove() (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix mpi3mr_hba_port memory leak in mpi3mr_remove() (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix config page DMA memory leak (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix throttle_groups memory leak (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Bad drive in topology results kernel crash (Tomas Henzl) [2163671]
+- scsi: mpi3mr: NVMe command size greater than 8K fails (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Return proper values for failures in firmware init path (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Wait for diagnostic save during controller init (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Driver unload crashes host when enhanced logging is enabled (Tomas Henzl) [2163671]
+- scsi: mpi3mr: ioctl timeout when disabling/enabling interrupt (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Remove unneeded version.h include (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix missing mrioc->evtack_cmds initialization (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Use number of bits to manage bitmap sizes (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Remove unnecessary memcpy() to alltgt_info->dmi (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix issues in mpi3mr_get_all_tgt_info() (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Fix an issue found by KASAN (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Refer CONFIG_SCSI_MPI3MR in Makefile (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Remove usage of dma_get_required_mask() API (Tomas Henzl) [2163671]
+- scsi: mpi3mr: Suppress command reply debug prints (Tomas Henzl) [2163671]
+- ipmi: ipmb: Fix the MODULE_PARM_DESC associated to 'retry_time_ms' (Tony Camuso) [2174220]
+- ipmi:ssif: Add a timer between request retries (Tony Camuso) [2174220]
+- ipmi:ssif: Remove rtc_us_timer (Tony Camuso) [2174220]
+- ipmi_ssif: Rename idle state and check (Tony Camuso) [2174220]
+- ipmi:ssif: resend_msg() cannot fail (Tony Camuso) [2174220]
+- ipmi/watchdog: use strscpy() to instead of strncpy() (Tony Camuso) [2174220]
+- ipmi: ssif_bmc: Convert to i2c's .probe_new() (Tony Camuso) [2174220]
+- ipmi: fix use after free in _ipmi_destroy_user() (Tony Camuso) [2174220]
+- ipmi:ssif: Increase the message retry time (Tony Camuso) [2174220]
+- ipmi: Fix some kernel-doc warnings (Tony Camuso) [2174220]
+- ipmi: ssif_bmc: Use EPOLLIN instead of POLLIN (Tony Camuso) [2174220]
+- ipmi: fix msg stack when IPMI is disconnected (Tony Camuso) [2174220]
+- ipmi: fix memleak when unload ipmi driver (Tony Camuso) [2174220]
+- ipmi: fix long wait in unload when IPMI disconnect (Tony Camuso) [2174220]
+- ipmi: kcs: Poll OBF briefly to reduce OBE latency (Tony Camuso) [2174220]
+- ipmi: ssif_bmc: Add SSIF BMC driver (Tony Camuso) [2174220]
+- ipmi: Remove unused struct watcher_entry (Tony Camuso) [2174220]
+- ipmi: kcs: aspeed: Update port address comments (Tony Camuso) [2174220]
+- ipmi: Add __init/__exit annotations to module init/exit funcs (Tony Camuso) [2174220]
+- ipmi:ipmb: Don't call ipmi_unregister_smi() on a register failure (Tony Camuso) [2174220]
+- ipmi:ipmb: Fix a vague comment and a typo (Tony Camuso) [2174220]
+- ipmi: Fix comment typo (Tony Camuso) [2174220]
+- char: ipmi: modify NPCM KCS configuration (Tony Camuso) [2174220]
+- cipso: Fix data-races around sysctl. (Juraj Marcin) [2181138]
+- netlabel: fix out-of-bounds memory accesses (Juraj Marcin) [2181138]
+- CIPSO: Fix unaligned memory access in cipso_v4_gentag_hdr (Juraj Marcin) [2181138]
+- netlabel_domainhash.c: Use built-in RCU list checking (Juraj Marcin) [2181138]
+- net: netlabel: Use built-in RCU list checking (Juraj Marcin) [2181138]
+- netlabel: remove redundant assignment to pointer iter (Juraj Marcin) [2181138]
+- capabilities: fix potential memleak on error path from vfs_getxattr_alloc() (Juraj Marcin) [2181138]
+- selinux: enable use of both GFP_KERNEL and GFP_ATOMIC in convert_context() (Juraj Marcin) [2181138]
+- selinux: free contexts previously transferred in selinux_add_opt() (Juraj Marcin) [2181138]
+- LSM: general protection fault in legacy_parse_param (Juraj Marcin) [2181138]
+- selinux: check return value of sel_make_avc_files (Juraj Marcin) [2181138]
+- net/sched: flower: fix error handler on replace (Ivan Vecera) [2180870]
+- Revert "net/sched: flower: Fix wrong handle assignment during filter change" (Ivan Vecera) [2180870]
+- net/sched: flower: fix filter idr initialization (Ivan Vecera) [2180870]
+- net/sched: cls_api: remove block_cb from driver_list before freeing (Ivan Vecera) [2180870]
+- net/sched: flower: Fix wrong handle assignment during filter change (Ivan Vecera) [2180870]
+- net/sched: cls_api: Initialize miss_cookie_node when action miss is not used (Ivan Vecera) [2180870]
+- net/sched: sch_fq: fix integer overflow of "credit" (Ivan Vecera) [2180870]
+- net/sched: clear actions pointer in miss cookie init fail (Ivan Vecera) [2180870]
+- net/sched: mqprio: simplify handling of nlattr portion of TCA_OPTIONS (Ivan Vecera) [2180870]
+- l2tp: generate correct module alias strings (Ivan Vecera) [2180870]
+- net/sched: act_api: add specific EXT_WARN_MSG for tc action (Ivan Vecera) [2180870]
+- Revert "net/sched: act_api: move TCA_EXT_WARN_MSG to the correct hierarchy" (Ivan Vecera) [2180870]
+- netfilter: ctnetlink: revert to dumping mark regardless of event type (Ivan Vecera) [2180870]
+- net/sched: flower: fix fl_change() error recovery path (Ivan Vecera) [2180870]
+- net/sched: act_api: move TCA_EXT_WARN_MSG to the correct hierarchy (Ivan Vecera) [2180870]
+- net/sched: act_connmark: handle errno on tcf_idr_check_alloc (Ivan Vecera) [2180870]
+- net/sched: act_sample: fix action bind logic (Ivan Vecera) [2180870]
+- net/sched: act_mpls: fix action bind logic (Ivan Vecera) [2180870]
+- net/sched: act_pedit: fix action bind logic (Ivan Vecera) [2180870]
+- net/sched: cls_api: Move call to tcf_exts_miss_cookie_base_destroy() (Ivan Vecera) [2180870]
+- net/sched: flower: Support hardware miss to tc action (Ivan Vecera) [2180870]
+- net/sched: flower: Move filter handle initialization earlier (Ivan Vecera) [2180870]
+- net/sched: cls_api: Support hardware miss to tc action (Ivan Vecera) [2180870]
+- net/sched: Rename user cookie and act cookie (Ivan Vecera) [2180870]
+- net/sched: taprio: dynamic max_sdu larger than the max_mtu is unlimited (Ivan Vecera) [2180870]
+- net/sched: taprio: don't allow dynamic max_sdu to go negative after stab adjustment (Ivan Vecera) [2180870]
+- net/sched: taprio: fix calculation of maximum gate durations (Ivan Vecera) [2180870]
+- net/sched: act_pedit: use percpu overlimit counter when available (Ivan Vecera) [2180870]
+- net/sched: act_gate: use percpu stats (Ivan Vecera) [2180870]
+- net/sched: act_connmark: transition to percpu stats and rcu (Ivan Vecera) [2180870]
+- net/sched: act_nat: transition to percpu stats and rcu (Ivan Vecera) [2180870]
+- selftests: forwarding: tc_actions: cleanup temporary files when test is aborted (Ivan Vecera) [2180870]
+- net/sched: support per action hw stats (Ivan Vecera) [2180870]
+- net/sched: introduce flow_offload action cookie (Ivan Vecera) [2180870]
+- net/sched: pass flow_stats instead of multiple stats args (Ivan Vecera) [2180870]
+- net/sched: act_pedit, setup offload action for action stats query (Ivan Vecera) [2180870]
+- net/sched: optimize action stats api calls (Ivan Vecera) [2180870]
+- net/sched: act_ctinfo: use percpu stats (Ivan Vecera) [2180870]
+- net/sched: fix error recovery in qdisc_create() (Ivan Vecera) [2180870]
+- net/sched: taprio: don't segment unnecessarily (Ivan Vecera) [2180870]
+- net/sched: taprio: split segmentation logic from qdisc_enqueue() (Ivan Vecera) [2180870]
+- net/sched: taprio: automatically calculate queueMaxSDU based on TC gate durations (Ivan Vecera) [2180870]
+- net/sched: keep the max_frm_len information inside struct sched_gate_list (Ivan Vecera) [2180870]
+- net/sched: taprio: warn about missing size table (Ivan Vecera) [2180870]
+- net/sched: make stab available before ops->init() call (Ivan Vecera) [2180870]
+- net/sched: taprio: calculate guard band against actual TC gate close time (Ivan Vecera) [2180870]
+- net/sched: taprio: calculate budgets per traffic class (Ivan Vecera) [2180870]
+- net/sched: taprio: rename close_time to end_time (Ivan Vecera) [2180870]
+- net/sched: taprio: calculate tc gate durations (Ivan Vecera) [2180870]
+- net/sched: taprio: give higher priority to higher TCs in software dequeue mode (Ivan Vecera) [2180870]
+- net/sched: taprio: avoid calling child->ops->dequeue(child) twice (Ivan Vecera) [2180870]
+- net/sched: taprio: refactor one skb dequeue from TXQ to separate function (Ivan Vecera) [2180870]
+- net/sched: taprio: continue with other TXQs if one dequeue() failed (Ivan Vecera) [2180870]
+- net/sched: taprio: delete peek() implementation (Ivan Vecera) [2180870]
+- net: sched: sch: Fix off by one in htb_activate_prios() (Ivan Vecera) [2180870]
+- net/sched: taprio: only pass gate mask per TXQ for igc, stmmac, tsnep, am65_cpsw (Ivan Vecera) [2180870]
+- net/sched: taprio: pass mqprio queue configuration to ndo_setup_tc() (Ivan Vecera) [2180870]
+- net/sched: refactor mqprio qopt reconstruction to a library function (Ivan Vecera) [2180870]
+- net/sched: taprio: centralize mqprio qopt validation (Ivan Vecera) [2180870]
+- net/sched: mqprio: add extack messages for queue count validation (Ivan Vecera) [2180870]
+- net/sched: mqprio: allow offloading drivers to request queue count validation (Ivan Vecera) [2180870]
+- net/sched: mqprio: allow reverse TC:TXQ mappings (Ivan Vecera) [2180870]
+- net/sched: move struct tc_mqprio_qopt_offload from pkt_cls.h to pkt_sched.h (Ivan Vecera) [2180870]
+- net/sched: mqprio: refactor offloading and unoffloading to dedicated functions (Ivan Vecera) [2180870]
+- net/sched: mqprio: refactor nlattr parsing to a separate function (Ivan Vecera) [2180870]
+- netlink: add support for formatted extack messages (Ivan Vecera) [2180870]
+- net/sched: simplify tcf_pedit_act (Ivan Vecera) [2180870]
+- net/sched: transition act_pedit to rcu and percpu stats (Ivan Vecera) [2180870]
+- net: sched: sch: Bounds check priority (Ivan Vecera) [2180870]
+- net: Kconfig: fix spellos (Ivan Vecera) [2180870]
+- net/sched: sch_taprio: do not schedule in taprio_reset() (Ivan Vecera) [2180870]
+- sched: add new attr TCA_EXT_WARN_MSG to report tc extact message (Ivan Vecera) [2180870]
+- net/sched: sch_taprio: fix possible use-after-free (Ivan Vecera) [2180870]
+- net: sched: htb: fix htb_classify() kernel-doc (Ivan Vecera) [2180870]
+- net/sched: fix retpoline wrapper compilation on configs without tc filters (Ivan Vecera) [2180870]
+- net: sched: update the nat flag for icmp error packets in ct_nat_execute (Ivan Vecera) [2180870]
+- net/sched: avoid indirect classify functions on retpoline kernels (Ivan Vecera) [2180870]
+- net/sched: avoid indirect act functions on retpoline kernels (Ivan Vecera) [2180870]
+- net/sched: add retpoline wrapper for tc (Ivan Vecera) [2180870]
+- net/sched: move struct action_ops definition out of ifdef (Ivan Vecera) [2180870]
+- netfilter: ctnetlink: fix compilation warning after data race fixes in ct mark (Ivan Vecera) [2180870]
+- net: sched: allow act_ct to be built without NF_NAT (Ivan Vecera) [2180870]
+- netfilter: conntrack: Fix data-races around ct mark (Ivan Vecera) [2180870]
+- net: flow_offload: add support for ARP frame matching (Ivan Vecera) [2180870]
+- selftests: tc-testing: Add matchJSON to tdc (Ivan Vecera) [2180870]
+- Documentation: networking: TC queue based filtering (Ivan Vecera) [2180870]
+- act_skbedit: skbedit queue mapping for receive queue (Ivan Vecera) [2180870]
+- net: sched: cake: fix null pointer access issue when cake_init() fails (Ivan Vecera) [2180870]
+- net: sched: use tc_cls_bind_class() in filter (Ivan Vecera) [2180870]
+- net: sched: cls_api: introduce tc_cls_bind_class() helper (Ivan Vecera) [2180870]
+- net: sched: ensure n arg not empty before call bind_class (Ivan Vecera) [2180870]
+- selftests/tc-testing: update qdisc/cls/action features in config (Ivan Vecera) [2180870]
+- net/sched: taprio: allow user input of per-tc max SDU (Ivan Vecera) [2180870]
+- net/sched: query offload capabilities through ndo_setup_tc() (Ivan Vecera) [2180870]
+- net: sched: act_bpf: simplify code logic in tcf_bpf_init() (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for teql qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for tbf qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for taprio qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for skbprio qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for sfq qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for sfb qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for plug qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for pfifo_fast qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for hhf qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for gred qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for fq qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for etf qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for codel qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for choke qdisc (Ivan Vecera) [2180870]
+- selftests/tc-testing: add selftests for atm qdisc (Ivan Vecera) [2180870]
+- headers: Remove some left-over license text (Ivan Vecera) [2180870]
+- net/sched: taprio: simplify list iteration in taprio_dev_notifier() (Ivan Vecera) [2180870]
+- net/sched: taprio: remove unnecessary taprio_list_lock (Ivan Vecera) [2180870]
+- net: sched: remove unused tcf_result extension (Ivan Vecera) [2180870]
+- net: sched: simplify code in mall_reoffload (Ivan Vecera) [2180870]
+- net: sched: act_ct: remove redundant variable err (Ivan Vecera) [2180870]
+- selftests/tc-testings: add list case for basic filter (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for tcindex filter (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for rsvp filter (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for route filter (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for flow filter (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for cgroup filter (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for bpf filter (Ivan Vecera) [2180870]
+- net/sched: use tc_cls_stats_dump() in filter (Ivan Vecera) [2180870]
+- net/sched: cls_api: add helper for tc cls walker stats dump (Ivan Vecera) [2180870]
+- net/sched: taprio: replace safety precautions with comments (Ivan Vecera) [2180870]
+- net/sched: taprio: add extack messages in taprio_init (Ivan Vecera) [2180870]
+- net/sched: taprio: stop going through private ops for dequeue and peek (Ivan Vecera) [2180870]
+- net/sched: taprio: remove redundant FULL_OFFLOAD_IS_ENABLED check in taprio_enqueue (Ivan Vecera) [2180870]
+- net/sched: taprio: use rtnl_dereference for oper and admin sched in taprio_destroy() (Ivan Vecera) [2180870]
+- net/sched: taprio: taprio_dump and taprio_change are protected by rtnl_mutex (Ivan Vecera) [2180870]
+- net/sched: taprio: taprio_offload_config_changed() is protected by rtnl_mutex (Ivan Vecera) [2180870]
+- net/sched: taprio: avoid disabling offload when it was never enabled (Ivan Vecera) [2180870]
+- flow_offload: Introduce flow_match_l2tpv3 (Ivan Vecera) [2180870]
+- net/sched: flower: Add L2TPv3 filter (Ivan Vecera) [2180870]
+- flow_dissector: Add L2TPv3 dissectors (Ivan Vecera) [2180870]
+- skbuff: make __skb_header_pointer()'s data argument const (Ivan Vecera) [2180870]
+- tools headers uapi: Update linux/in.h copy (Ivan Vecera) [2180870]
+- uapi: move IPPROTO_L2TP to in.h (Ivan Vecera) [2180870]
+- selftests/tc-testings: add tunnel_key action deleting test case (Ivan Vecera) [2180870]
+- selftests/tc-testings: add sample action deleting test case (Ivan Vecera) [2180870]
+- selftests/tc-testings: add nat action deleting test case (Ivan Vecera) [2180870]
+- selftests/tc-testings: add ife action deleting test case (Ivan Vecera) [2180870]
+- selftests/tc-testings: add connmark action deleting test case (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for xt action (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for gate action (Ivan Vecera) [2180870]
+- selftests/tc-testings: add selftests for ctinfo action (Ivan Vecera) [2180870]
+- net: sched: act_vlan: get rid of tcf_vlan_walker and tcf_vlan_search (Ivan Vecera) [2180870]
+- net: sched: act_tunnel_key: get rid of tunnel_key_walker and tunnel_key_search (Ivan Vecera) [2180870]
+- net: sched: act_skbmod: get rid of tcf_skbmod_walker and tcf_skbmod_search (Ivan Vecera) [2180870]
+- net: sched: act_skbedit: get rid of tcf_skbedit_walker and tcf_skbedit_search (Ivan Vecera) [2180870]
+- net: sched: act_simple: get rid of tcf_simp_walker and tcf_simp_search (Ivan Vecera) [2180870]
+- net: sched: act_sample: get rid of tcf_sample_walker and tcf_sample_search (Ivan Vecera) [2180870]
+- net: sched: act_police: get rid of tcf_police_walker and tcf_police_search (Ivan Vecera) [2180870]
+- net: sched: act_pedit: get rid of tcf_pedit_walker and tcf_pedit_search (Ivan Vecera) [2180870]
+- net: sched: act_nat: get rid of tcf_nat_walker and tcf_nat_search (Ivan Vecera) [2180870]
+- net: sched: act_mpls: get rid of tcf_mpls_walker and tcf_mpls_search (Ivan Vecera) [2180870]
+- net: sched: act_mirred: get rid of tcf_mirred_walker and tcf_mirred_search (Ivan Vecera) [2180870]
+- net: sched: act_ipt: get rid of tcf_ipt_walker/tcf_xt_walker and tcf_ipt_search/tcf_xt_search (Ivan Vecera) [2180870]
+- net: sched: act_ife: get rid of tcf_ife_walker and tcf_ife_search (Ivan Vecera) [2180870]
+- net: sched: act_gate: get rid of tcf_gate_walker and tcf_gate_search (Ivan Vecera) [2180870]
+- net: sched: act_gact: get rid of tcf_gact_walker and tcf_gact_search (Ivan Vecera) [2180870]
+- net: sched: act_ctinfo: get rid of tcf_ctinfo_walker and tcf_ctinfo_search (Ivan Vecera) [2180870]
+- net: sched: act_ct: get rid of tcf_ct_walker and tcf_ct_search (Ivan Vecera) [2180870]
+- net: sched: act_csum: get rid of tcf_csum_walker and tcf_csum_search (Ivan Vecera) [2180870]
+- net: sched: act_connmark: get rid of tcf_connmark_walker and tcf_connmark_search (Ivan Vecera) [2180870]
+- net: sched: act_bpf: get rid of tcf_bpf_walker and tcf_bpf_search (Ivan Vecera) [2180870]
+- net: sched: act_api: implement generic walker and search for tc action (Ivan Vecera) [2180870]
+- net: sched: act: move global static variable net_id to tc_action_ops (Ivan Vecera) [2180870]
+- net: sched: htb: remove redundant resource cleanup in htb_init() (Ivan Vecera) [2180870]
+- net/sched: cls_api: remove redundant 0 check in tcf_qevent_init() (Ivan Vecera) [2180870]
+- net: sched: etf: remove true check in etf_enable_offload() (Ivan Vecera) [2180870]
+- net: sched: gred: remove NULL check before free table->tab in gred_destroy() (Ivan Vecera) [2180870]
+- net: sched: remove redundant NULL check in change hook function (Ivan Vecera) [2180870]
+- net: sched: gred/red: remove unused variables in struct red_stats (Ivan Vecera) [2180870]
+- net: sched: choke: remove unused variables in struct choke_sched_data (Ivan Vecera) [2180870]
+- net: sched: using TCQ_MIN_PRIO_BANDS in prio_tune() (Ivan Vecera) [2180870]
+- net_sched: remove impossible conditions (Ivan Vecera) [2180870]
+- net: sched: remove unnecessary init of qdisc skb head (Ivan Vecera) [2180870]
+- net: sched: delete duplicate cleanup of backlog and qlen (Ivan Vecera) [2180870]
+- net: sched: remove duplicate check of user rights in qdisc (Ivan Vecera) [2180870]
+- net_sched: move from strlcpy with unused retval to strscpy (Ivan Vecera) [2180870]
+- net: sched: delete unused input parameter in qdisc_create (Ivan Vecera) [2180870]
+- net: sched: remove the unused return value of unregister_qdisc (Ivan Vecera) [2180870]
+- net_sched: cls_route: disallow handle of 0 (Ivan Vecera) [2180870]
+- net/sched: sch_cbq: change the type of cbq_set_lss to void (Ivan Vecera) [2180870]
+- net/sched: remove qdisc_root_lock() helper (Ivan Vecera) [2180870]
+- net/sched: sch_cbq: Delete unused delay_timer (Ivan Vecera) [2180870]
+- net/sched: remove return value of unregister_tcf_proto_ops (Ivan Vecera) [2180870]
+- net: extract port range fields from fl_flow_key (Ivan Vecera) [2180870]
+- net/sched: act_ct: set 'net' pointer when creating new nf_flow_table (Ivan Vecera) [2180870]
+- net: sched: provide shim definitions for taprio_offload_{get,free} (Ivan Vecera) [2180870]
+- time64.h: consolidate uses of PSEC_PER_NSEC (Ivan Vecera) [2180870]
+- selftests: tc-testing: Add testcases to test new flush behaviour (Ivan Vecera) [2180870]
+- tc-testing: gitignore, delete plugins directory (Ivan Vecera) [2180870]
+- net/sched: sch_netem: Fix arithmetic in netem_dump() for 32-bit platforms (Ivan Vecera) [2180870]
+- net_sched: em_meta: add READ_ONCE() in var_sk_bound_if() (Ivan Vecera) [2180870]
+- selftests: forwarding: tc_actions: allow mirred egress test to run on non-offloaded h2 (Ivan Vecera) [2180870]
+- net: sched: support hash selecting tx queue (Ivan Vecera) [2180870]
+- net: sched: use queue_mapping to pick tx queue (Ivan Vecera) [2180870]
+- net_sched: make qdisc_reset() smaller (Ivan Vecera) [2180870]
+- sch_red: Fix a typo (Ivan Vecera) [2180870]
+- wifi: ath9k: Don't mark channelmap stack variable read-only in ath9k_mci_update_wlan_channels() (Jose Ignacio Tornos Martinez) [2183487]
+- net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: ignore key disable commands (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: reduce the MHI timeout to 20s (Jose Ignacio Tornos Martinez) [2183487]
+- net: qrtr: Do not do DEL_SERVER broadcast after DEL_CLIENT (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: fix fw used for offload check for mt7922 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: Fix use-after-free in fw features query. (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Fix SDIO suspend/resume regression (Jose Ignacio Tornos Martinez) [2183487]
+- net: qrtr: Fix a refcount bug in qrtr_recvmsg() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix invalid drv_sta_pre_rcu_remove calls for non-uploaded sta (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix flow dissection for forwarded packets (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix mesh forwarding (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix receiving mesh packets in forwarding=0 networks (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix the size calculation of ieee80211_ie_len_eht_cap() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix potential null pointer dereference (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: drop bogus static keywords in A-MSDU rx (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix mesh path discovery based on unicast packets (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix qos on mesh interfaces (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Serialize ieee80211_handle_wake_tx_queue() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mwifiex: mark OF related data as maybe unused (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: do not check WED status for non-mmio devices (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add back 160MHz channel width support for MT7915 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: do not run mt76_unregister_device() on unregistered hw (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Partial revert "wifi: cfg80211: Fix use after free for wext" (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: fix MLO connection ownership (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: check basic rates validity (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: nl80211: fix puncturing bitmap policy (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: nl80211: fix NULL-ptr deref in offchan check (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: wext: warn about usage only once (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: allow system suspend to survive ath11k (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: add LEDS_CLASS dependency (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: remove unused iwl_dbgfs_is_match() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fix AP mode authentication transmission failed (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: use RTW_FLAG_POWERON flag to prevent to power on/off twice (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: p2p: Introduce generic flexible array frame member (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add documentation for amsdu_mesh_control (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: remove gfp parameter from cfg80211_obss_color_collision_notify description (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: always initialize link_sta with sta (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: pass 'sta' to ieee80211_rx_data_set_sta() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Set SSID if it is not already set (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: move H2C of del_pkt_offload before polling FW status ready (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: use readable return 0 in rtw89_mac_cfg_ppdu_status() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: usb: drop now unnecessary URB size check (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: usb: send Zero length packets if necessary (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: usb: Set qsel correctly (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix off-by-one link setting (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Fix for Rx fragmented action frames (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: avoid u32_encode_bits() warning (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Don't translate MLD addresses for multicast (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: call reg_notifier for self managed wiphy from driver hint (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: get rid of gfp in cfg80211_bss_color_notify (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: nl80211: Allow authentication frames and set keys on NAN interface (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix non-MLO station association (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Allow NSS change only up to capability (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add a workaround for receiving non-standard mesh A-MSDU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix receiving A-MSDU frames on mesh interfaces (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: remove mesh forwarding congestion check (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: factor out bridge tunnel / RFC1042 header check (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: move A-MSDU check in ieee80211_data_to_8023_exthdr (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: make rate u32 in sta_set_rate_info_rx() (Jose Ignacio Tornos Martinez) [2183487]
+- rfkill: Use sysfs_emit() to instead of sprintf() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Allow action frames to be transmitted with link BSS in MLD (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: configure puncturing bitmap (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: include puncturing bitmap in channel switch events (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: nl80211: validate and configure puncturing bitmap (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: move puncturing bitmap validation from mac80211 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: nl80211: return error message for malformed chandef (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211_hwsim: Rename pid to portid to avoid confusion (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: nl80211: add MLO_LINK_ID to CMD_STOP_AP event (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: nl80211: emit CMD_START_AP on multicast group when an AP is started (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: mlme: handle EHT channel puncturing (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Extend cfg80211_update_owe_info_event() for MLD AP (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Extend cfg80211_new_sta() for MLD AP (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: move color collision detection report in a delayed work (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Fix use after free for wext (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Authentication offload to user space for MLO connection in STA mode (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: trace: remove MAC_PR_{FMT,ARG} (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: fix txdw7 assignment of TX DESC v3 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Add LED control code for RTL8723AU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Add LED control code for RTL8192EU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Add LED control code for RTL8188EU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Register the LED and make it blink (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: phy: set TX power according to RF path number by chip (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: correct register mask name of TX power offset (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: use passed channel in set_tx_shape_dfir() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852be: enable CLKREQ of PCI capability (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: try to use NORMAL_CE type firmware first (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: don't support LPS-PG mode after firmware 0.29.26.0 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: reset IDMEM mode to default value (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add use of pkt_list offload to debug entry (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: refine packet offload flow (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fix potential wrong mapping for pkt-offload (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: disallow enter PS mode after create TDLS link (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: refine MCC C2H debug logs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fix parsing offset for MCC C2H (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: deal with RXI300 error (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: debug: avoid invalid access on RTW89_DBG_SEL_MAC_30 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: mac: add function to get TSF (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: split out generic part of rtw89_mac_port_tsf_sync() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: correct unit for port offset and refine macro (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Update Wi-Fi Bluetooth coexistence version to 7.0.0 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Fix test fail when coexist with raspberryPI A2DP idle (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Correct A2DP exist variable source (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Set Bluetooth background scan PTA request priority (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Refine coexistence log (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Force to update TDMA parameter when radio state change (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Clear Bluetooth HW PTA counter when radio state change (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Update Wi-Fi external control TDMA parameters/tables (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: change cfg80211_set_channel() name and signature (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mwifiex: Replace one-element array with flexible-array member (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mwifiex: Replace one-element arrays with flexible-array members (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Replace one-element array with flexible-array member (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mwifiex: Support firmware hotfix version in GET_HW_SPEC responses (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mwifiex: Support SD8978 chipset (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mwifiex: Add missing compatible string for SD8787 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: pcie: Perform correct BCM4364 firmware selection (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: pcie: Add IDs/properties for BCM4377 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: pcie: Add IDs/properties for BCM4355 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Rename Cypress 89459 to BCM4355 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: mac: Use existing macros in rtw_pwr_seq_parser() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Move enum rtw_tx_queue_type mapping code to tx.{c,h} (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: pci: Change queue datatype to enum rtw_tx_queue_type (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: pci: Use enum type for rtw_hw_queue_mapping() and ac_to_hwq (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: support ww power config in dts node (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt76x0u: report firmware version through ethtool (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: complete wed reset support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add mt7915 wed reset callbacks (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: dma: reset wed queues in mt76_dma_rx_reset (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: dma: add reset to mt76_dma_wed_setup signature (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: add EHT beamforming support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: enable EHT support in firmware (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: add support for EHT rate report (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: add EHT capability init (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: rework capability init (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: add helpers for wtbl and interface limit (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: add variants support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: add EHT rate stats for ethtool (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: increase wcid size to 1088 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: add cmd id related to EHT support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: add helpers for EHT capability (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: add CMD_CBW_320MHZ (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: add EHT phy type (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: remove __mt76_mcu_restart macro (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: avoid mcu_restart function pointer (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: rely on mt76_connac_tx_complete_skb (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: rely on mt76_connac_txp_skb_unmap (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: rely on mt76_connac_txp_common structure (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: rely on mt76_connac2_mac_tx_rate_val (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: release rxwi in mt7915_wed_release_rx_buf (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix memory leak in mt7915_mmio_wed_init_rx_buf (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: fix rx filter incorrect by drv/fw inconsistent (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: add memory barrier to SDIO queue kick (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: reduce polling time in pmctrl (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: add flexible polling wait-interval support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix WED TxS reporting (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: wed: enable red per-band token drop (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: set sku initial value to zero (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921u: add support for Comfast CF-952AX (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: fix switch default case in mt7996_reverse_frag0_hdr_trans (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: avoid mcu_restart function pointer (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7615: avoid mcu_restart function pointer (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7603: avoid mcu_restart function pointer (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: avoid mcu_restart function pointer (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: dma: fix memory leak running mt76_dma_tx_cleanup (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: fix memory leak in mt7996_mcu_exit (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix memory leak in mt7915_mcu_exit (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: introduce mt76_queue_is_wed_rx utility routine (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: fix invalid remain_on_channel duration (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: remove BW160 and BW80+80 support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: fix POWER_CTRL command name typo (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: do not hardcode vht beamform cap (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: update register for CFEND_RATE (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: fix chainmask calculation in mt7996_set_antenna() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: add ack signal support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: fix channel switch fail in monitor mode (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add chip id condition in mt7915_check_eeprom() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add error message in mt7915_thermal_set_cur_throttle_state() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: rework mt7915_thermal_temp_store() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: rework mt7915_mcu_set_thermal_throttling (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: call mt7915_mcu_set_thermal_throttling() only after init_work (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: fix deadlock in mt7921_abort_roc (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: ep: Fix off by one in mhi_ep_process_cmd_ring() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: fix compilation errors in rfkill() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: bump FW API to 74 for AX devices (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: Reset rate index if rate is wrong (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: simplify by using SKB MAC header pointer (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: add sniffer meta data APIs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: rx: add sniffer support for EHT mode (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: always send nullfunc frames on MGMT queue (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: remove h from printk format specifier (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: improve tag handling in iwl_request_firmware (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mention the response structure in the kerneldoc (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: add minimal EHT rate reporting (Jose Ignacio Tornos Martinez) [2183487]
+- net: qrtr: free memory on error path in radix_tree_insert() (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: ep: Change state_lock to mutex (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: ep: Save channel state locally during suspend and resume (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: ep: Move chan->lock to the start of processing queued ch ring (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: ep: Fix the debug message for MHI_PKT_TYPE_RESET_CHAN_CMD cmd (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: ep: Only send -ENOTCONN status if client driver is available (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: ep: Check if the channel is supported by the controller (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: ep: Power up/down MHI stack during MHI RESET (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: host: Update mhi driver description (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: Update Makefile to used Kconfig flags (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: wireless: deny wireless extensions on MLO-capable devices (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: wireless: warn on most wireless extension usage (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: drop extra 'e' from ieeee80211... name (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Deduplicate certificate loading (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add kernel-doc for EHT structure (Jose Ignacio Tornos Martinez) [2183487]
+- mac80211: support minimal EHT rate reporting on RX (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Add HE MU-MIMO related flags in ieee80211_bss_conf (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Add VHT MU-MIMO related flags in ieee80211_bss_conf (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Use MLD address to indicate MLD STA disconnection (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Support 32 bytes KCK key in GTK rekey offload (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Fix extended KCK key length check in nl80211_set_rekey_data() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: remove support for static WEP (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: Add support to read EEPROM caldata (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: Add new qmi_bdf_type to handle caldata (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: Fix incorrect qmi_file_type enum values (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: dp_mon: Fix uninitialized warning related to the pktlog (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: dp_mon: Fix out of bounds clang warning (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: hal_rx: Use memset_startat() for clearing queue descriptors (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: Fix uninitilized variable clang warnings (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: wmi: delete PSOC_HOST_MAX_NUM_SS (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: hal: convert offset macros to functions (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: hal: add ab parameter to macros using it (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: fix ce memory mapping for ahb devices (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Remove the unused function ath10k_ce_shadow_src_ring_write_index_set() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: add channel 177 into 5 GHz channel list (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Add support to configure FTM responder role (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: Fix potential stack-out-of-bounds write in ath9k_wmi_rsp_callback() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback function (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Dump the efuse only for untested devices (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Print the ROM version too (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Use non-atomic sta iterator in rtw_ra_mask_info_update() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Use rtw_iterate_vifs() for rtw_vif_watch_dog_iter() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Move register access from rtw_bf_assoc() outside the RCU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Use a longer retry limit of 48 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Report the RSSI to the firmware (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rt2x00: Remove useless else if (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt7601u: fix an integer underflow (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtlwifi: rtl8723ae: fix obvious spelling error tyep->type (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU (Jose Ignacio Tornos Martinez) [2183487]
+- Revert "wifi: mac80211: fix memory leak in ieee80211_if_add()" (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: dma: fix a regression in adding rx buffers (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: fill the missing configuration about queue empty checking (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fix assignation of TX BD RAM table (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: rfk: correct ADC clock settings (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: correct register definitions of digital CFO and spur elimination (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: set the correct mac_id for management frames (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fix null vif pointer when get management frame date rate (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Change Wi-Fi role info related logic to version separate (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Change RTL8852B use v1 TDMA policy (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Packet traffic arbitration hardware owner monitor (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: refactor debug log of slot list (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Change firmware steps report to version separate (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Change Wi-Fi Null data report to version separate (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Add version code for Wi-Fi firmware coexistence control (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Update WiFi role info H2C report (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: only read Bluetooth counter of report version 1 for RTL8852A (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Add v5 firmware control report (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Change firmware control report to version separate (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Add v4 version firmware cycle report (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Rename BTC firmware cycle report by feature version (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Remove le32 to CPU translator at firmware cycle report (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: Fix a typo in debug message (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out-of-bounds (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: fix regression for Broadcom PCIe wifi devices (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: avoid NULL-deref in survey dump for 2G only device (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: avoid handling disabled channels for survey dump (Jose Ignacio Tornos Martinez) [2183487]
+- net: rfkill: gpio: add DT support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix double space in comment (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: debugfs: fix to work with multiple PCI devices (Jose Ignacio Tornos Martinez) [2183487]
+- mac80211: Fix MLO address translation for multiple bss case (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: reset multiple BSSID options in stop_ap() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Fix iTXQ AMPDU fragmentation handling (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: sdata can be NULL during AMPDU start (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Proper mark iTXQs for resumption (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: Prefer DT board type over DMI board type (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: remove most hidden macro dependencies on ah (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: wl3501_cs: don't call kfree_skb() under spin_lock_irqsave() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Add rate control code for RTL8188EU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Support new chip RTL8188EU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Define masks for cck_agc_rpt bits (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Make rtl8xxxu_load_firmware take const char* (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Deduplicate the efuse dumping code (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: rfk: refine AGC tuning flow of DPK for irregular PA (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: refine 6 GHz scanning dwell time (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: update BSS color mapping register (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Change TDMA related logic to version separate (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: refactor _chk_btc_report() to extend more features (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Add v2 BT AFH report and related variable (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Update BTC firmware report bitmap definition (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: Enable Bluetooth report when show debug info (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: use new introduction BTC version format (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: add BTC format version derived from firmware version (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: select CONFIG_RELAY (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtlwifi: Fix global-out-of-bounds bug in _rtl8812ae_phy_set_txpower_limit() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: rfk: recover RX DCK failure (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: rfk: correct DPK settings (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: rfk: correct DACK setting (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fw: adapt to new firmware format of security section (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: consider ER SU as a TX capability (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Fix assignment to bit field priv->cck_agc_report_type (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Fix assignment to bit field priv->pi_enabled (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtlwifi: rtl8723be: don't call kfree_skb() under spin_lock_irqsave() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under spin_lock_irqsave() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under spin_lock_irqsave() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: get rid of wed rx_buf_ring page_frag_cache (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: resource leaks at mt7921_check_offload_capability() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: dma: rely on queue page_frag_cache for wed rx queues (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: handle possible mt76_rx_token_consume failures (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: dma: do not increment queue head if mt76_dma_add_buf fails (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7615: enable per-phy led support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable per-phy led support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: move leds struct in mt76_phy (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: move leds field in leds struct (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix unintended sign extension of mt7915_hw_queue_read() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: fix unintended sign extension of mt7996_hw_queue_read() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: add support to update fw capability with MTFG table (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt76x0: fix oob access in mt76x0_phy_get_target_power (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: fix endianness warning in mt7996_mcu_sta_he_tlv (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: drop always true condition of __mt7996_reg_addr() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: drop always true condition of __mt7915_reg_addr() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: check the correctness of event data (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: check return value before accessing free_block_num (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: check return value before accessing free_block_num (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: split mcu chan_mib array up (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: fix integer handling issue of mt7996_rf_regval_set() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: fix insecure data handling of mt7996_mcu_rx_radar_detected() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: fix insecure data handling of mt7996_mcu_ie_countdown() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix mt7915_rate_txpower_get() resource leaks (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921s: fix slab-out-of-bounds access in sdio host (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add missing of_node_put() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: fix monitor mode bringup crash (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Fix scan request param frame size warning (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: fixing IQK failures for rtl8192eu (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtlwifi: btcoexist: fix conditions branches that are never executed (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtlwifi: rtl8192se: remove redundant rtl_get_bbreg() call (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Add rtw8723du chipset support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Add rtw8822cu chipset support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Add rtw8822bu chipset support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Add rtw8821cu chipset support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Add common USB chip support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: iterate over vif/sta list non-atomically (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Drop coex mutex (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Drop h2c.lock (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Drop rf_lock (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: Call rtw_fw_beacon_filter_config() with rtwdev->mutex held (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: print firmware type in info message (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add join info upon create interface (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fix unsuccessful interface_add flow (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: stop mac port function when stop_ap() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add mac TSF sync function (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Introduce rtl8xxxu_update_ra_report (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Fix the channel width reporting (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: add vendor name in revinfo debugfs file (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: add support Broadcom BCA firmware api (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: add support for Cypress firmware api (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: add support for vendor-specific firmware api (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: add firmware vendor info in driver info (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: add function to unbind device to bus layer api (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: add ipq5018 device support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: add new hw ops for IPQ5018 to get rx dest ring hashmap (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: initialize hw_ops for IPQ5018 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: update hal srng regs for IPQ5018 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: remap ce register space for IPQ5018 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: update ce configurations for IPQ5018 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: update hw params for IPQ5018 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: fw: use correct IML/ROM status register (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: dump: Update check for UMAC valid FW address (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: d3: add TKIP to the GTK iterator (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: clean up comments (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: Don't use deprecated register (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: pcie: Add reading and storing of crf and cdb id. (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: replace usage of found with dedicated list iterator variable (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: dump: Update check for valid FW address (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: don't access packet before checking len (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: modify new queue allocation command (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: nvm-parse: enable WiFi7 for Fm radio for now (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: add reset to rx_ring_setup callback (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Fix race condition with struct htt_ppdu_stats_info (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: fix QCOM_SMEM dependency (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921e: add pci .shutdown() support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: mmio: fix naming convention (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: add support to configure spatial reuse parameter set (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: enable ack signal support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: enable use_cts_prot support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: rely on band_idx of mt76_phy (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable per bandwidth power limit support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: introduce mt7915_get_power_bound() (Jose Ignacio Tornos Martinez) [2183487]
+- mt76: mt7915: Fix PCI device refcount leak in mt7915_pci_init_hif2() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: fix coverity overrun-call in mt76_get_txpower() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7996: add driver for MediaTek Wi-Fi 7 (802.11be) devices (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt76x0: remove dead code in mt76x0_phy_get_target_power (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix band_idx usage (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable .sta_set_txpwr support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add basedband Txpower info into debugfs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add support to configure spatial reuse parameter set (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add missing MODULE_PARM_DESC (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable WED RX stats (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable WED RX support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: introduce mt76_connac_mcu_sta_wed_update utility routine (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: add info parameter to rx_skb signature (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: add WED RX support to dma queue alloc (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: add WED RX support to mt76_dma_rx_fill (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: add WED RX support to mt76_dma_{add,get}_buf (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: introduce rxwi and rx token utility routines (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: introduce helper for mt7996 chipset (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: add more starec command tags (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: add more bss info command tags (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: introduce unified event table (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: add more unified command IDs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: rework fields for larger bandwidth support in sta_rec_bf (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: update struct sta_rec_phy (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: rework macros for unified command (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: introduce chanctx support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: introduce remain_on_channel support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: accept hw scan request at a time (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: drop ieee80211_[start, stop]_queues in driver (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: add unified ROC cmd/event support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7921: add chanctx parameter to mt76_connac_mcu_uni_add_bss signature (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: add mt76_connac_mcu_uni_set_chctx (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: do not run mt76u_status_worker if the device is not running (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: update nss calculation in txs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: don't claim 160MHz support with mt7915 DBDC (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: Fix VHT beamforming capabilities with DBDC (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: Fix chainmask calculation on mt7915 DBDC (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable coredump support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add full system reset into debugfs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable full system reset support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: rework mt7915_dma_reset() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: move aggr_stats array in mt76_phy (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7615: rely on mt7615_phy in mt7615_mac_reset_counters (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix reporting of TX AGGR histogram (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7615: enable use_cts_prot support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable use_cts_prot support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: fix bandwidth 80MHz link fail in 6GHz band (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add ack signal support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: improve accuracy of time_busy calculation (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable wed for mt7986-wmac chipset (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: enable wed for mt7986 chipset (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: move wed init routines in mmio.c (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix mt7915_mac_set_timing() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: set correct antenna for radar detection on MT7915D (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: add spatial extension index support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: connac: introduce mt76_connac_spe_idx() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: rework testmode tx antenna setting (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: deal with special variant of mt7916 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: rework eeprom tx paths and streams init (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: reserve 8 bits for the index of rf registers (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt7915: fix bounds checking for tx-free-done command (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: Remove unused inline function mt76_wcid_mask_test() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: mt76x02: simplify struct mt76x02_rate_power (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mt76: move mt76_rate_power from core to mt76x02 driver code (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix and simplify unencrypted drop check for mesh (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add support for restricting netdev features per vif (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: update TIM for S1G specification changes (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: don't parse multi-BSSID in assoc resp (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: use bss_from_pub() instead of container_of() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: remove unnecessary synchronize_net() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Drop not needed check for NULL (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() fails (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: fix comparison of BSS frequencies (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Correct example of ieee80211_iface_limit (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix memory leak in ieee80211_if_add() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ieee80211: Do not open-code qos address offsets (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: link rtw89_vif and chanctx stuffs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fw: implement MCC related H2C (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: mac: process MCC related C2H (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: introduce helpers to wait/complete on condition (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: check if atomic before queuing c2h (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: rfk: rename rtw89_mcc_info to rtw89_rfk_mcc_info (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: 8821c: enable BT device recovery mechanism (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: turn off PoP function in monitor mode (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add HE radiotap for monitor mode (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: enable mac80211 virtual monitor interface (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Check the count value of channel spec to prevent out-of-bounds reads (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath12k: driver for Qualcomm Wi-Fi 7 devices (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: add reset to tx_ring_setup callback (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: add mtk_wed_rx_reset routine (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: update mtk_wed_stop (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: move MTK_WDMA_RESET_IDX_TX configuration in mtk_wdma_tx_reset (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: return status value in mtk_wdma_rx_reset (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: add wcid overwritten support for wed v1 (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: add configure wed wo support (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: rename tx_wdma array in rx_wdma (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: introduce wed wo support (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_wed: introduce wed mcu support (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_wed: add missing of_node_put() (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_wed: add missing put_device() in mtk_wed_add_hw() (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_wed: add axi bus support (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_wed: add wed support for mt7986 chipset (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_wed: add mtk_wed_configure_irq and mtk_wed_dma_{enable/disable} (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_soc: fix off by one check of ARRAY_SIZE (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_soc: add check for allocation failure (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_soc/wed: fix sparse endian warnings (Jose Ignacio Tornos Martinez) [2183487]
+- net: ethernet: mtk_eth_soc: fix return value check in mtk_wed_add_hw() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: fix parameter passing to iwl_mei_alive_notif() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: return error value in case PLDR sync failed (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: trigger PCI re-enumeration in case of PLDR sync (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: fix double free on tx path. (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: print OTP info after alive (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: nvm: Update EHT capabilities for GL device (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: nvm-parse: support A-MPDU in EHT 2.4 GHz (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: advertise 320 MHz in 6 GHz only conditionally (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: set HE PHY bandwidth according to band (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: support PPE Thresholds for EHT (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: add support for EHT 1K aggregation size (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: rs: add support for parsing max MCS per NSS/BW in 11be (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: support 320 MHz PHY configuration (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: Advertise EHT capabilities (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw88: fix race condition when doing H2C command (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Store WLAN firmware version in SMEM image table (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: avoid inaccessible IO operations during doing change_interface() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: switch BANDEDGE and TX_SHAPE based on OFDMA trigger frame (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: read CFO from FD or preamble CFO field of phy status ie_type 1 accordingly (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: correct TX power controlled by BT-coexistence (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Use struct_size() in code ralated to struct brcmf_dload_data_le (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: replace one-element array with flexible-array member in struct brcmf_dload_data_le (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Use struct_size() and array_size() in code ralated to struct brcmf_gscan_config (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Replace one-element array with flexible-array member (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Remove redundant argument offset (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Fix return value in ath10k_pci_init() (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: host: pci_generic: Add definition for some VIDs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: Fix some error handling path in rtw89_wow_enable() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: Avoid clashing function prototypes (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Use u32_get_bits in *_identify_chip (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Use strscpy instead of sprintf (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Name some bits used in burst init (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Rename rtl8xxxu_8188f_channel_to_group (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Split up rtl8xxxu_identify_chip (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Move burst init to a function (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: wait for the mac to stop on suspend (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: iwlmei: report disconnection as temporary (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: use wait_event_timeout() return value (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: implement PLDR flow (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: Fix getting the lowest rate (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: support new key API (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: dbg: use bit of DRAM alloc ID to store failed allocs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: print an error instead of a warning on invalid rate (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: cfg: disable STBC for BL step A devices (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: dbg: add support for DBGC4 on BZ family and above (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: use old checksum for Bz A-step (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: fix potential NULL-ptr deref after clone (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: avoid blocking sap messages handling due to rtnl lock (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: fix tx DHCP packet for devices with new Tx API (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: don't send SAP commands if AMT is disabled (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mei: make sure ownership confirmed message is sent (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: iwlwifi: mvm: send TKIP connection status to csme (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Use IEEE80211_SEQ_TO_SN() for seq_ctrl conversion (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: Remove unused variable mismatch (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: change debug mask of message of no TX resource (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Trigger sta disconnect on hardware restart (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: update D-MAC and C-MAC dump to diagnose SER (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: dump dispatch status via debug port (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: Use kstrtobool() instead of strtobool() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Avoiding Connection delay (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Fix for when connect request is not success (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: correctly remove all p2p vif (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: host: pci_generic: Add HP variant of T99W175 (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: host: pci_generic: add support for sc8280xp-crd SDX55 variant (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Use dev_* instead of pr_info (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Set IEEE80211_HW_SUPPORT_FAST_XMIT (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Recognise all possible chip cuts (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Fix the CCK RSSI calculation (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Add central frequency offset tracking (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Fix potential NULL pointer dereference in 'brcmf_c_preinit_dcmds()' (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Fix a typo "unknow" (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtlwifi: rtl8192ee: remove static variable stop_report_cnt (Jose Ignacio Tornos Martinez) [2183487]
+- bcma: Use the proper gpio include (Jose Ignacio Tornos Martinez) [2183487]
+- mtd: rawnand: brcmnand: Add platform data structure for BCMA (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: brcmfmac: Fix potential shift-out-of-bounds in brcmf_fw_alloc_request() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Make QMI message rules const (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Make QMI message rules const (Jose Ignacio Tornos Martinez) [2183487]
+- soc: qcom: qmi: use const for struct qmi_elem_info (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: synchronize ath11k_mac_he_gi_to_nl80211_he_gi()'s return type (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Fix qmi_msg_handler data structure initialization (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: remove variable sent (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: Fix spelling mistake KIP_RESOTRE -> KIP_RESTORE (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add WoWLAN pattern match support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add WoWLAN function support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add related H2C for WoWLAN mode (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add drop tx packet function (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add function to adjust and restore PLE quota (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: move enable_cpu/disable_cpu into fw_download (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: collect and send RF parameters to firmware for WoWLAN (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: check if sta's mac_id is valid under AP/TDLS (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add BW info for both TX and RX in phy_info (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: make table of RU mask constant (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: declare support bands with const (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fw: adapt to new firmware format of dynamic header (Jose Ignacio Tornos Martinez) [2183487]
+- net: Remove the obsolte u64_stats_fetch_*_irq() users (net). (Jose Ignacio Tornos Martinez) [2183487]
+- net: Remove the obsolte u64_stats_fetch_*_irq() users (drivers). (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: host: pci_generic: Add a secondary AT port to Telit FN990 (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: host: Fix race between channel preparation and M0 event (Jose Ignacio Tornos Martinez) [2183487]
+- bus: mhi: host: Use mhi_soc_reset() API in place of register write (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: fix monitor vdev creation with firmware recovery (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Fix reads of uninitialized variables hw_ctrl_s1, sw_ctrl_s1 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add 8852be to Makefile and Kconfig (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: phy: add dummy C2H handler to avoid warning message (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops related to RF calibration (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: rfk: add DPK (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: rfk: add TSSI (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: rfk: add IQK (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: rfk: add RX DCK (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: rfk: add RCK (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: rfk: add DACK (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Delay the unmapping of the buffer (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Check return value of ath10k_get_arvif() in ath10k_wmi_event_tdls_peer() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Fix firmware crash on vdev delete race condition (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Send PME message during wakeup from D3cold (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: add support to configure channel dwell time (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: suppress add interface error (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add basic attributes of chip_info (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add functions to control BB to assist RF calibrations (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops to configure TX/RX path (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops to query PPDU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops related to BT coexistence (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops to get thermal (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add basic baseband chip_ops (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add power on/off functions (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops::set_channel_help (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Update module description (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Fix reading the vendor of combo chips (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Make some arrays const (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: fix wrong bandwidth settings after scan (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: correct 6 GHz scan behavior (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops::set_channel (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: make generic functions to convert subband gain index (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add HFC quota arrays (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: set proper configuration before loading NCTL (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: parse PHY status only when PPDU is to_self (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: coex: move chip_ops::btc_bt_aci_imp to a generic code (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: verify the expected usb_endpoints are present (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: Remove -Warray-bounds exception (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: hif_usb: fix memory leak of urbs in ath9k_hif_usb_dealloc_tx_urbs() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: realtek: remove duplicated wake_tx_queue (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath9k: Make arrays prof_prio and channelmap static const (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Fix spelling mistake "chnange" -> "change" (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Drop support for TX push path (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add wake_tx_queue callback to drivers (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add internal handler for wake_tx_queue (Jose Ignacio Tornos Martinez) [2183487]
+- cfg80211: Update Transition Disable policy during port authorization (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: minstrel_ht: remove unused has_mrr member from struct minstrel_priv (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: remove support for AddBA with fragmentation (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: agg-rx: avoid band check (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: prohibit IEEE80211_HT_CAP_DELAY_BA with MLO (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: don't clear DTIM period after setting it (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: change AddBA deny error message (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: mlme: mark assoc link in output (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add RCU _check() link access variants (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: fix AddBA response addressing (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: set internal scan request BSSID (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: advertise TWT requester only with HW support (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: use link_id in ieee80211_change_bss() (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: nl80211: use link ID in NL80211_CMD_SET_BSS (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: transmit AddBA with MLD address (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: wme: use ap_addr instead of deflink BSSID (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Process association status for affiliated links (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: Parse station profile from association response (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211/mac80211: Fix ML element common size validation (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211/mac80211: Fix ML element common size calculation (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ieee80211: Support validating ML station profile length (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: cfg80211: support reporting failed links (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: recalc station aggregate data during link switch (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: include link address in debugfs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add API to show the link STAs in debugfs (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: mac80211: add pointer from link STA to STA (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: add to dump TX FIFO 0/1 for 8852C (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: set pin MUX to enable BT firmware log (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: phy: ignore warning of bb gain cfg_type 4 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: update BB parameters to v28 (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: rfk: correct miscoding delay of DPK (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852c: correct set of IQK backup registers (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: Fix AP interface delete issue (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: support station interface creation version 1, 2 and 3 (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: add creating station interface support (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: dump dongle memory when attaching failed (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: return error when getting invalid max_flowrings from dongle (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: add a timer to read console periodically in PCIE bus (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: Fix authentication latency caused by OBSS stats survey (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: fix CERT-P2P:5.1.10 failure (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: fix firmware trap while dumping obss stats (Jose Ignacio Tornos Martinez) [2183487]
+- brcmfmac: Add dump_survey cfg80211 ops for HostApd AutoChannelSelection (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtl8xxxu: Support new chip RTL8188FU (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852be: add 8852BE PCI entry (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops to read phy cap (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops to read efuse (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add chip_ops::set_txpwr (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: debug: txpwr_table considers sign (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: phy: make generic txpwr setting functions (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add tables for RFK (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add BB and RF tables (2 of 2) (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: rtw89: 8852b: add BB and RF tables (1 of 2) (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: Don't exit on wakeup failure (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath10k: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper (Jose Ignacio Tornos Martinez) [2183487]
+- wifi: ath11k: stop tx queues immediately upon firmware exit (Jose Ignacio Tornos Martinez) [2183487]
+- Revert "mac80211: set NETIF_F_LLTX when using intermediate tx queues" (Jose Ignacio Tornos Martinez) [2183487]
+- treewide: use get_random_u32() when possible (Jose Ignacio Tornos Martinez) [2183487]
+- treewide: use prandom_u32_max() when possible, part 1 (Jose Ignacio Tornos Martinez) [2183487]
+- hwrng: core - let sleep be interrupted when unregistering hwrng (Jose Ignacio Tornos Martinez) [2183487]
+- tracing/kprobes: Do the notrace functions check without kprobes on ftrace (Mukesh Chaurasiya) [2203370]
+- tracing/kprobes: Fix a double initialization typo (Mukesh Chaurasiya) [2203370]
+- tracing/kprobe: Check whether the non-suffixed symbol is notrace (Mukesh Chaurasiya) [2203370]
+- tracing/kprobes: Fix to check notrace function with correct range (Mukesh Chaurasiya) [2203370]
+- tracing/kprobes: Fix within_notrace_func() to check only notrace functions (Mukesh Chaurasiya) [2203370]
+- powerpc/kprobes: Fix kprobe Oops happens in booke (Mukesh Chaurasiya) [2203370]
+- xfs: verify buffer contents when we skip log replay (Andrey Albershteyn) [2187456] {CVE-2023-2124}
+- perf c2c: Add report option to show false sharing in adjacent cachelines (Michael Petlan) [2193188]
+- powerpc/papr_scm: Update the NUMA distance table for the target node (Mamatha Inamdar) [2183474]
+- i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer() (Tony Camuso) [2188408] {CVE-2023-2194}
+- prlimit: do_prlimit needs to have a speculation check (Alex Gladkov) [2196314] {CVE-2023-0458}
+- vmxnet3: use gro callback when UPT is enabled (Izabela Bakollari) [2183057]
+- r8152: Rate limit overflow messages (Jose Ignacio Tornos Martinez) [2153573] {CVE-2022-3594}
+- docs: Remove unnecessary unicode character (Patrick Talbert) [2207988]
+- PCI: vmd: Add quirk to configure PCIe ASPM and LTR (Myron Stowe) [2136922]
+- PCI: vmd: Create feature grouping for client products (Myron Stowe) [2136922]
+- PCI: vmd: Use PCI_VDEVICE in device list (Myron Stowe) [2136922]
+- PCI/ASPM: Add pci_enable_link_state() (Myron Stowe) [2136922]
+- PCI: vmd: Fix secondary bus reset for Intel bridges (Myron Stowe) [2136922]
+- PCI: vmd: Disable MSI remapping after suspend (Myron Stowe) [2136922]
+- PCI: vmd: Add DID 8086:7D0B and 8086:AD0B for Intel MTL SKUs (Myron Stowe) [2136922]
+- PCI: vmd: Use devm_kasprintf() instead of simple kasprintf() (Myron Stowe) [2136922]
+
+* Mon May 22 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-494.el8]
+- net/sched: sch_fq: fix integer overflow of "credit" (Davide Caratti) [2187718]
+- net: sched: gred: prevent races when adding offloads to stats (Davide Caratti) [2187718]
+- sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb (Davide Caratti) [2187718]
+- net/sched: act_mpls: Fix warning during failed attribute validation (Davide Caratti) [2187718]
+- net: sched: fix memory leak in tcindex_set_parms (Davide Caratti) [2187718]
+- net_sched: reject TCF_EM_SIMPLE case for complex ematch module (Davide Caratti) [2187718]
+- net: sched: Fix use after free in red_enqueue() (Davide Caratti) [2187718]
+- net: sched: fix race condition in qdisc_graft() (Davide Caratti) [2187718]
+- net: sched: sfb: fix null pointer access issue when sfb_init() fails (Davide Caratti) [2187718]
+- net/sched: cls_api: Fix flow action initialization (Davide Caratti) [2187718]
+- scsi: lpfc: Update inbox lpfc driver for RHEL 8.9 to 14.0.0.21. (Paul Ely) [2165048]
+- scsi: lpfc: Copyright updates for 14.2.0.11 patches (Paul Ely) [2165048]
+- scsi: lpfc: Copyright updates for 14.2.0.10 patches (Paul Ely) [2165048]
+- scsi: lpfc: Defer issuing new PLOGI if received RSCN before completing REG_LOGIN (Paul Ely) [2165048]
+- scsi: lpfc: Record LOGO state with discovery engine even if aborted (Paul Ely) [2165048]
+- scsi: lpfc: Fix lockdep warning for rx_monitor lock when unloading driver (Paul Ely) [2165048]
+- scsi: lpfc: Reorder freeing of various DMA buffers and their list removal (Paul Ely) [2165048]
+- scsi: lpfc: Prevent lpfc_debugfs_lockstat_write() buffer overflow (Paul Ely) [2165048]
+- scsi: lpfc: Introduce new attention types for lpfc_sli4_async_fc_evt() handler (Paul Ely) [2165048]
+- scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write (Paul Ely) [2165048]
+- scsi: lpfc: Exit PRLI completion handling early if ndlp not in PRLI_ISSUE state (Paul Ely) [2165048]
+- scsi: lpfc: Remove duplicate ndlp kref decrement in lpfc_cleanup_rpis() (Paul Ely) [2165048]
+- scsi: lpfc: Remove redundant clean up code in disable_vport() (Paul Ely) [2165048]
+- scsi: lpfc: Fix crash involving race between FLOGI timeout and devloss handler (Paul Ely) [2165048]
+- net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg (Ricardo Robaina) [2192680] {CVE-2023-2248 CVE-2023-31436}
+- vfio/ccw: remove old IDA format restrictions (Tobias Huschle) [2187662]
+- vfio/ccw: handle a guest Format-1 IDAL (Tobias Huschle) [2187662]
+- vfio/ccw: allocate/populate the guest idal (Tobias Huschle) [2187662]
+- vfio/ccw: calculate number of IDAWs regardless of format (Tobias Huschle) [2187662]
+- vfio/ccw: read only one Format-1 IDAW (Tobias Huschle) [2187662]
+- vfio/ccw: refactor the idaw counter (Tobias Huschle) [2187662]
+- vfio/ccw: populate page_array struct inline (Tobias Huschle) [2187662]
+- vfio/ccw: record the page offset in struct pfn_array (Tobias Huschle) [2187662]
+- vfio/ccw: pass page count to page_array struct (Tobias Huschle) [2187662]
+- vfio/ccw: simplify CCW chain fetch routines (Tobias Huschle) [2187662]
+- vfio/ccw: move where IDA flag is set in ORB (Tobias Huschle) [2187662]
+- vfio/ccw: allow non-zero storage keys (Tobias Huschle) [2187662]
+- iavf: remove active_cvlans and active_svlans bitmaps (Stefan Assmann) [2153349]
+- iavf: refactor VLAN filter states (Stefan Assmann) [2153349]
+- iavf: do not track VLAN 0 filters (Stefan Assmann) [2153349]
+- iavf: fix non-tunneled IPv6 UDP packet type and hashing (Stefan Assmann) [2153349]
+- iavf: fix inverted Rx hash condition leading to disabled hash (Stefan Assmann) [2153349]
+- net/sched: move struct tc_mqprio_qopt_offload from pkt_cls.h to pkt_sched.h (Stefan Assmann) [2153349]
+- iavf/iavf_main: actually log ->src mask when talking about it (Stefan Assmann) [2153349]
+- iavf: Fix VF driver counting VLAN 0 filters (Stefan Assmann) [2153349]
+- iavf: Change information about device removal in dmesg (Stefan Assmann) [2153349]
+- iavf: Replace __FUNCTION__ with __func__ (Stefan Assmann) [2153349]
+- net: Remove the obsolte u64_stats_fetch_*_irq() users (drivers). (Stefan Assmann) [2153349]
+- ipv4: prevent potential spectre v1 gadget in fib_metrics_match() (Guillaume Nault) [2188040]
+- ipv4: prevent potential spectre v1 gadget in ip_metrics_convert() (Guillaume Nault) [2188040]
+- ipv4: Fix error return code in fib_table_insert() (Guillaume Nault) [2188040]
+- ipv4: drop dst in multicast routing path (Guillaume Nault) [2188040]
+- net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter() (Guillaume Nault) [2188040]
+- xfrm: Zero padding when dumping algos and encap (Sabrina Dubroca) [2189212]
+- xfrm: redact SA secret with lockdown confidentiality (Sabrina Dubroca) [2189212]
+- xfrm: fix bug with DSCP copy to v6 from v4 tunnel (Sabrina Dubroca) [2189212]
+- xfrm: enforce validity of offload input flags (Sabrina Dubroca) [2189212]
+- ice: Remove LAG+SRIOV mutual exclusion (Michal Schmidt) [2120585]
+- ext4: correct the misjudgment in ext4_iget_extra_inode (Carlos Maiolino) [2193101]
+- ext4: correct max_inline_xattr_value_size computing (Carlos Maiolino) [2193101]
+- ext4: fix use-after-free in ext4_xattr_set_entry (Carlos Maiolino) [2193101] {CVE-2023-2513}
+- ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h (Carlos Maiolino) [2193101]
+- ixgbevf: Fix resource leak in ixgbevf_init_module() (Ken Cox) [2153374]
+- ixgbevf: Add error messages on vlan error (Ken Cox) [2153374]
+
+* Tue May 16 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-493.el8]
+- kunit: make kunit_test_timeout compatible with comment (Nico Pache) [2168375]
+- kunit: fix assert_type for comparison macros (Nico Pache) [2168375]
+- redhat: include new kunit tests in mod-internals (Nico Pache) [2168375]
+- kernel.h: split out mathematical helpers (Nico Pache) [2168375]
+- linux/kernel.h: fix overflow for DIV_ROUND_UP_ULL (Nico Pache) [2168375]
+- linux/kernel.h: Use parentheses around argument in u64_to_user_ptr() (Nico Pache) [2168375]
+- <linux/kernel.h>: drop the gcc-3.3 'const' hack in roundup() (Nico Pache) [2168375]
+- kernel.h: documentation for roundup() vs round_up() (Nico Pache) [2168375]
+- apparmor: test: Use NULL macros (Nico Pache) [2168375]
+- kasan: test: Use NULL macros (Nico Pache) [2168375]
+- kunit: use NULL macros (Nico Pache) [2168375]
+- kunit: Introduce _NULL and _NOT_NULL macros (Nico Pache) [2168375]
+- kunit: decrease macro layering for EQ/NE asserts (Nico Pache) [2168375]
+- kunit: decrease macro layering for integer asserts (Nico Pache) [2168375]
+- kunit: reduce layering in string assertion macros (Nico Pache) [2168375]
+- kunit: drop unused intermediate macros for ptr inequality checks (Nico Pache) [2168375]
+- kunit: make KUNIT_EXPECT_EQ() use KUNIT_EXPECT_EQ_MSG(), etc. (Nico Pache) [2168375]
+- Documentation: kunit: Remove redundant 'tips.rst' page (Nico Pache) [2168375]
+- Documentation: KUnit: reword description of assertions (Nico Pache) [2168375]
+- kunit: tool: Don't download risc-v opensbi firmware with wget (Nico Pache) [2168375]
+- drm/tests: Split up test cases in igt_check_drm_format_min_pitch (Nico Pache) [2168375]
+- kunit: executor: Fix a memory leak on failure in kunit_filter_tests (Nico Pache) [2168375]
+- Documentation: kunit: Cleanup run_wrapper, fix x-ref (Nico Pache) [2168375]
+- kunit: use kmemdup in kunit_filter_tests(), take suite as const (Nico Pache) [2168375]
+- kunit: fix executor OOM error handling logic on non-UML (Nico Pache) [2168375]
+- drm: selftest: convert drm_mm selftest to KUnit (Nico Pache) [2168375]
+- drm: selftest: convert drm_buddy selftest to KUnit (Nico Pache) [2168375]
+- drm: selftest: convert drm_framebuffer selftest to KUnit (Nico Pache) [2168375]
+- drm: selftest: convert drm_dp_mst_helper selftest to KUnit (Nico Pache) [2168375]
+- drm: selftest: convert drm_plane_helper selftest to KUnit (Nico Pache) [2168375]
+- drm: selftest: convert drm_format selftest to KUnit (Nico Pache) [2168375]
+- drm: selftest: convert drm_rect selftest to KUnit (Nico Pache) [2168375]
+- drm: selftest: convert drm_cmdline_parser selftest to KUnit (Nico Pache) [2168375]
+- drm: selftest: convert drm_damage_helper selftest to KUnit (Nico Pache) [2168375]
+- drm/doc: Add KUnit documentation (Nico Pache) [2168375]
+- kunit: drop unused assert_type from kunit_assert and clean up macros (Nico Pache) [2168375]
+- kunit: split out part of kunit_assert into a static const (Nico Pache) [2168375]
+- kunit: factor out kunit_base_assert_format() call into kunit_fail() (Nico Pache) [2168375]
+- kunit: drop unused kunit* field in kunit_assert (Nico Pache) [2168375]
+- kunit: move check if assertion passed into the macros (Nico Pache) [2168375]
+- kunit: tool: misc cleanups (Nico Pache) [2168375]
+- kunit: tool: minor cosmetic cleanups in kunit_parser.py (Nico Pache) [2168375]
+- kunit: tool: make parser stop overwriting status of suites w/ no_tests (Nico Pache) [2168375]
+- kunit: tool: remove dead parse_crash_in_log() logic (Nico Pache) [2168375]
+- kunit: tool: print clearer error message when there's no TAP output (Nico Pache) [2168375]
+- kunit: tool: stop using a shell to run kernel under QEMU (Nico Pache) [2168375]
+- kunit: tool: update test counts summary line format (Nico Pache) [2168375]
+- kunit: bail out of test filtering logic quicker if OOM (Nico Pache) [2168375]
+- lib/Kconfig.debug: change KUnit tests to default to KUNIT_ALL_TESTS (Nico Pache) [2168375]
+- kunit: Rework kunit_resource allocation policy (Nico Pache) [2168375]
+- thunderbolt: Add KUnit test for devices with no DisplayPort adapters (Nico Pache) [2168375]
+- drm/todo: Add entry for converting kselftests to kunit (Nico Pache) [2168375]
+- drm/todo: Add entry for using kunit in the subsystem (Nico Pache) [2168375]
+- kunit: fix debugfs code to use enum kunit_status, not bool (Nico Pache) [2168375]
+- kunit: add ability to specify suite-level init and exit functions (Nico Pache) [2168375]
+- kunit: rename print_subtest_{start,end} for clarity (s/subtest/suite) (Nico Pache) [2168375]
+- kunit: add support for kunit_suites that reference init code (Nico Pache) [2168375]
+- Documentation: kunit: change complete_and_exit to kthread_complete_and_exit (Nico Pache) [2168375]
+- mm/slub, kunit: Make slub_kunit unaffected by user specified flags (Nico Pache) [2168375]
+- kunit: Make kunit_remove_resource() idempotent (Nico Pache) [2168375]
+- list: test: Test the hlist structure (Nico Pache) [2168375]
+- ASoC: soc-utils: Add kunit test for snd_soc_tdm_params_to_bclk() (Nico Pache) [2168375]
+- ASoC: soc-utils: Add helper to calculate BCLK from TDM info (Nico Pache) [2168375]
+- Documentation: kunit: update kconfig options needed for UML coverage (Nico Pache) [2168375]
+- kunit: split resource API impl from test.c into new resource.c (Nico Pache) [2168375]
+- kunit: split resource API from test.h into new resource.h (Nico Pache) [2168375]
+- kunit: tool: more descriptive metavars/--help output (Nico Pache) [2168375]
+- kunit: tool: Do not colorize output when redirected (Nico Pache) [2168375]
+- kunit: tool: properly report the used arch for --json, or '' if not known (Nico Pache) [2168375]
+- kunit: tool: refactor how we plumb metadata into JSON (Nico Pache) [2168375]
+- kunit: tool: drop mostly unused KunitResult.result field (Nico Pache) [2168375]
+- kunit: tool: readability tweaks in KernelCI json generation logic (Nico Pache) [2168375]
+- kunit: tool: simplify code since build_dir can't be None (Nico Pache) [2168375]
+- kunit: tool: drop last uses of collections.namedtuple (Nico Pache) [2168375]
+- kunit: tool: drop unused KernelDirectoryPath var (Nico Pache) [2168375]
+- kunit: tool: make --json handling a bit clearer (Nico Pache) [2168375]
+- Documentation: kunit: fix path to .kunitconfig in start.rst (Nico Pache) [2168375]
+- Documentation: kunit: Fix cross-referencing warnings (Nico Pache) [2168375]
+- binfmt_elf: Introduce KUnit test (Nico Pache) [2168375]
+- list: test: Add a test for list_entry_is_head() (Nico Pache) [2168375]
+- list: test: Add a test for list_is_head() (Nico Pache) [2168375]
+- list: test: Add test for list_del_init_careful() (Nico Pache) [2168375]
+- list: introduce list_is_head() helper and re-use it in list.h (Nico Pache) [2168375]
+- list: add "list_del_init_careful()" to go with "list_empty_careful()" (Nico Pache) [2168375]
+- kunit: add example test case showing off all the expect macros (Nico Pache) [2168375]
+- test_hash.c: refactor into kunit (Nico Pache) [2168375]
+- lib/Kconfig.debug: properly split hash test kernel entries (Nico Pache) [2168375]
+- test_hash.c: split test_hash_init (Nico Pache) [2168375]
+- test_hash.c: split test_int_hash into arch-specific functions (Nico Pache) [2168375]
+- hash.h: remove unused define directive (Nico Pache) [2168375]
+- iio: test: Add check against NULL for buffer in tests. (Nico Pache) [2168375]
+- net: kunit: add a test for dev_addr_lists (Nico Pache) [2168375]
+- kprobes: convert tests to kunit (Nico Pache) [2168375]
+- bitfield: build kunit tests without structleak plugin (Nico Pache) [2168375]
+- thunderbolt: build kunit tests without structleak plugin (Nico Pache) [2168375]
+- iio/test-format: build kunit tests without structleak plugin (Nico Pache) [2168375]
+- gcc-plugins/structleak: add makefile var for disabling structleak (Nico Pache) [2168375]
+- math: RATIONAL_KUNIT_TEST should depend on RATIONAL instead of selecting it (Nico Pache) [2168375]
+- math: make RATIONAL tristate (Nico Pache) [2168375]
+- rtc: move RTC_LIB_KUNIT_TEST to proper location (Nico Pache) [2168375]
+- rtc: Improve performance of rtc_time64_to_tm(). Add tests. (Nico Pache) [2168375]
+- lib/math/rational: add Kunit test cases (Nico Pache) [2168375]
+- time/kunit: Add missing MODULE_LICENSE() (Nico Pache) [2168375]
+- kasan: test: make use of kunit_skip() (Nico Pache) [2168375]
+- time: Improve performance of time64_to_tm() (Nico Pache) [2168375]
+- iio: Remove a cast in iio-test-format which is no longer required (Nico Pache) [2168375]
+- lib: kunit: suppress a compilation warning of frame size (Nico Pache) [2168375]
+- kasan: docs: update tests section (Nico Pache) [2168375]
+- iio: Add basic unit test for iio_format_value() (Nico Pache) [2168375]
+- Documentation: KUnit: Fix usage bug (Nico Pache) [2168375]
+- kunit: fix missing f in f-string in run_checks.py (Nico Pache) [2168375]
+- kunit: tool: Import missing importlib.abc (Nico Pache) [2168375]
+- kunit: replace kernel.h with the necessary inclusions (Nico Pache) [2168375]
+- Documentation: KUnit: Restyled Frequently Asked Questions (Nico Pache) [2168375]
+- Documentation: KUnit: Restyle Test Style and Nomenclature page (Nico Pache) [2168375]
+- Documentation: KUnit: Rework writing page to focus on writing tests (Nico Pache) [2168375]
+- Documentation: kunit: Reorganize documentation related to running tests (Nico Pache) [2168375]
+- Documentation: KUnit: Added KUnit Architecture (Nico Pache) [2168375]
+- Documentation: KUnit: Rewrite getting started (Nico Pache) [2168375]
+- Documentation: KUnit: Rewrite main page (Nico Pache) [2168375]
+- kunit: tool: Default --jobs to number of CPUs (Nico Pache) [2168375]
+- kunit: tool: fix newly introduced typechecker errors (Nico Pache) [2168375]
+- kunit: tool: make `build` subcommand also reconfigure if needed (Nico Pache) [2168375]
+- kunit: tool: delete kunit_parser.TestResult type (Nico Pache) [2168375]
+- kunit: tool: use dataclass instead of collections.namedtuple (Nico Pache) [2168375]
+- kunit: tool: suggest using decode_stacktrace.sh on kernel crash (Nico Pache) [2168375]
+- kunit: tool: reconfigure when the used kunitconfig changes (Nico Pache) [2168375]
+- kunit: tool: revamp message for invalid kunitconfig (Nico Pache) [2168375]
+- kunit: tool: add --kconfig_add to allow easily tweaking kunitconfigs (Nico Pache) [2168375]
+- kunit: tool: move Kconfig read_from_file/parse_from_string to package-level (Nico Pache) [2168375]
+- kunit: tool: print parsed test results fully incrementally (Nico Pache) [2168375]
+- kunit: Report test parameter results as (K)TAP subtests (Nico Pache) [2168375]
+- kunit: Don't crash if no parameters are generated (Nico Pache) [2168375]
+- kunit: tool: Report an error if any test has no subtests (Nico Pache) [2168375]
+- kunit: tool: Do not error on tests without test plans (Nico Pache) [2168375]
+- kunit: add run_checks.py script to validate kunit changes (Nico Pache) [2168375]
+- kunit: tool: fix --json output for skipped tests (Nico Pache) [2168375]
+- kunit: tool: fix typecheck errors about loading qemu configs (Nico Pache) [2168375]
+- kunit: tool: continue past invalid utf-8 output (Nico Pache) [2168375]
+- kunit: tool: improve compatibility of kunit_parser with KTAP specification (Nico Pache) [2168375]
+- kunit: tool: yield output from run_kernel in real time (Nico Pache) [2168375]
+- kunit: tool: support running each suite/test separately (Nico Pache) [2168375]
+- kunit: tool: actually track how long it took to run tests (Nico Pache) [2168375]
+- kunit: tool: factor exec + parse steps into a function (Nico Pache) [2168375]
+- kunit: add 'kunit.action' param to allow listing out tests (Nico Pache) [2168375]
+- kunit: tool: show list of valid --arch options when invalid (Nico Pache) [2168375]
+- kunit: tool: misc fixes (unused vars, imports, leaked files) (Nico Pache) [2168375]
+- kunit: fix too small allocation when using suite-only kunit.filter_glob (Nico Pache) [2168375]
+- kunit: tool: allow filtering test cases via glob (Nico Pache) [2168375]
+- kunit: tool: better handling of quasi-bool args (--json, --raw_output) (Nico Pache) [2168375]
+- kunit: tool: make --raw_output support only showing kunit output (Nico Pache) [2168375]
+- kunit: tool: add --kernel_args to allow setting module params (Nico Pache) [2168375]
+- kunit: tool: Assert the version requirement (Nico Pache) [2168375]
+- kunit: tool: remove unnecessary "annotations" import (Nico Pache) [2168375]
+- Documentation: kunit: drop obsolete note about uml_abort for coverage (Nico Pache) [2168375]
+- kunit: tool: Fix error messages for cases of no tests and wrong TAP header (Nico Pache) [2168375]
+- kunit: tool: Support skipped tests in kunit_tool (Nico Pache) [2168375]
+- kunit: tool: internal refactor of parser input handling (Nico Pache) [2168375]
+- kunit: Remove the unused all_tests.config (Nico Pache) [2168375]
+- kunit: Move default config from arch/um -> tools/testing/kunit (Nico Pache) [2168375]
+- kunit: arch/um/configs: Enable KUNIT_ALL_TESTS by default (Nico Pache) [2168375]
+- kunit: tool: add support for QEMU (Nico Pache) [2168375]
+- kunit: tool: make --kunitconfig accept dirs, add lib/kunit fragment (Nico Pache) [2168375]
+- kunit: tool: Disable PAGE_POISONING under --alltests (Nico Pache) [2168375]
+- kunit: tool: Fix a python tuple typing error (Nico Pache) [2168375]
+- iommu/amd: Indicate whether DMA remap support is enabled (Desnes Nunes) [2184064]
+- Revert "usb: typec: ucsi: add a common function ucsi_unregister_connectors()" (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Only check the contract if there is a connection (Desnes Nunes) [2184064]
+- media: uvcvideo: Fix InterfaceProtocol for Quanta camera (Desnes Nunes) [2184064]
+- net: thunderbolt: fix memory leak in tbnet_open() (Desnes Nunes) [2184064]
+- USB: serial: option: add u-blox LARA-L6 modem (Desnes Nunes) [2184064]
+- USB: serial: option: add u-blox LARA-R6 00B modem (Desnes Nunes) [2184064]
+- USB: serial: option: remove old LARA-R6 PID (Desnes Nunes) [2184064]
+- net: thunderbolt: Fix error handling in tbnet_init() (Desnes Nunes) [2184064]
+- USB: serial: option: add Fibocom FM160 0x0111 composition (Desnes Nunes) [2184064]
+- USB: serial: option: add Fibocom MA510 modem (Desnes Nunes) [2184064]
+- USB: serial: option: add Fibocom L610 modem (Desnes Nunes) [2184064]
+- USB: serial: option: add device id for Foxconn T99W265 (Desnes Nunes) [2184064]
+- USB: serial: option: add Fibocom FM101-GL variants (Desnes Nunes) [2184064]
+- USB: serial: option: add Telit LE910S1 0x9200 composition (Desnes Nunes) [2184064]
+- usb: add NO_LPM quirk for Realforce 87U Keyboard (Desnes Nunes) [2184064]
+- usb: typec: tipd: Prevent uninitialized event{1,2} in IRQ handler (Desnes Nunes) [2184064]
+- usb: typec: mux: Enter safe mode only when pins need to be reconfigured (Desnes Nunes) [2184064]
+- USB: bcma: Make GPIO explicitly optional (Desnes Nunes) [2184064]
+- USB: serial: option: add Sierra Wireless EM9191 (Desnes Nunes) [2184064]
+- xhci: Remove device endpoints from bandwidth list when freeing the device (Desnes Nunes) [2184064]
+- xhci-pci: Set runtime PM as default policy on all xHC 1.2 or later devices (Desnes Nunes) [2184064]
+- xhci: Add quirk to reset host back to default state at shutdown (Desnes Nunes) [2184064]
+- usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 controller (Desnes Nunes) [2184064]
+- Revert "xhci: turn off port power in shutdown" (Desnes Nunes) [2184064]
+- xhci-pci: Allow host runtime PM as default for Intel Meteor Lake xHCI (Desnes Nunes) [2184064]
+- xhci-pci: Allow host runtime PM as default for Intel Raptor Lake xHCI (Desnes Nunes) [2184064]
+- xhci: turn off port power in shutdown (Desnes Nunes) [2184064]
+- xhci: Keep interrupt disabled in initialization until host is running. (Desnes Nunes) [2184064]
+- fbdev: sisfb: use explicitly signed char (Desnes Nunes) [2184064]
+- usb: typec: ucsi: acpi: Implement resume callback (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Check the connection on resume (Desnes Nunes) [2184064]
+- usb: host: ehci-exynos: switch to using gpiod API (Desnes Nunes) [2184064]
+- usb: typec: ucsi_ccg: Disable UCSI ALT support on Tegra (Desnes Nunes) [2184064]
+- usb: typec: Replace custom implementation of device_match_fwnode() (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Don't warn on probe deferral (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Wait for the USB role switches (Desnes Nunes) [2184064]
+- usb: typec: ucsi: add a common function ucsi_unregister_connectors() (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Better fix for missing unplug events issue (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Read the PDOs in separate work (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Check the partner alt modes always if there is PD contract (Desnes Nunes) [2184064]
+- usb: typec: ucsi: acpi: Reduce the command completion timeout (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Add polling mechanism for partner tasks like alt mode checking (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Don't stop alt mode registration on busy condition (Desnes Nunes) [2184064]
+- usb: typec: ucsi: Always cancel the command if PPM reports BUSY condition (Desnes Nunes) [2184064]
+- usb: add quirks for Lenovo OneLink+ Dock (Desnes Nunes) [2184064]
+- USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) (Desnes Nunes) [2184064]
+- USB: NO_LPM quirk Lenovo Powered USB-C Travel Hub (Desnes Nunes) [2184064]
+- usb: idmouse: fix an uninit-value in idmouse_open (Desnes Nunes) [2184064]
+- usb: ulpi: use DEFINE_SHOW_ATTRIBUTE to simplify ulpi_regs (Desnes Nunes) [2184064]
+- usb: ulpi: Add debugfs support (Desnes Nunes) [2184064]
+- usb: typec: fusb302: Switch to use dev_err_probe() helper (Desnes Nunes) [2184064]
+- usb: typec: qcom-pmic-typec: Switch to use dev_err_probe() helper (Desnes Nunes) [2184064]
+- usb: typec: stusb160x: Switch to use dev_err_probe() helper (Desnes Nunes) [2184064]
+- USB: serial: qcserial: add new usb-id for Dell branded EM7455 (Desnes Nunes) [2184064]
+- thunderbolt: Explicitly enable lane adapter hotplug events at startup (Desnes Nunes) [2184064]
+- media: flexcop-usb: use usb_endpoint_maxp() (Desnes Nunes) [2184064]
+- media: flexcop-usb: clean up URB initialisation (Desnes Nunes) [2184064]
+- media: flexcop-usb: clean up endpoint sanity checks (Desnes Nunes) [2184064]
+- media: flexcop-usb: fix endpoint type check (Desnes Nunes) [2184064]
+- media: flexcop-usb: sanity checking of endpoint type (Desnes Nunes) [2184064]
+- media: dib0700: fix rc endpoint lookup (Desnes Nunes) [2184064]
+- media: flexcop-usb: fix endpoint sanity check (Desnes Nunes) [2184064]
+- media: b2c2-flexcop-usb: add sanity checking (Desnes Nunes) [2184064]
+- media: flexcop-usb: fix NULL-ptr deref in flexcop_usb_transfer_init() (Desnes Nunes) [2184064]
+- media: usb/dvb-usb-v2: fix repeated words in comments (Desnes Nunes) [2184064]
+- thunderbolt: Use dev_err_probe() (Desnes Nunes) [2184064]
+- thunderbolt: Convert to use sysfs_emit()/sysfs_emit_at() APIs (Desnes Nunes) [2184064]
+- Revert "usb: storage: Add quirk for Samsung Fit flash" (Desnes Nunes) [2184064]
+- USB: add RESET_RESUME quirk for NVIDIA Jetson devices in RCM (Desnes Nunes) [2184064]
+- media: uvcvideo: move uvc_format_desc to common header (Desnes Nunes) [2184064]
+- media: uvcvideo: Add UVC_GUID_FORMAT_H265 (Desnes Nunes) [2184064]
+- media: v4l: move helper functions for fractions from uvc to v4l2-common (Desnes Nunes) [2184064]
+- xhci: remove unused lpm_failed_dev member from struct xhci_hcd (Desnes Nunes) [2184064]
+- xhci: remove unused command member from struct xhci_hcd struct (Desnes Nunes) [2184064]
+- xhci: show fault reason for a failed enable slot command (Desnes Nunes) [2184064]
+- xhci: Don't show warning for reinit on known broken suspend (Desnes Nunes) [2184064]
+- xhci: dbc: Fix memory leak in xhci_alloc_dbc() (Desnes Nunes) [2184064]
+- usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: clean up driver prefix (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: move driver structure (Desnes Nunes) [2184064]
+- USB: serial: make remove callback return void (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: clean up attribute visibility logic (Desnes Nunes) [2184064]
+- USB: serial: console: move mutex_unlock() before usb_serial_put() (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: convert to use dev_groups (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: add support for HP and HA devices (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: simplify divisor handling (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: assume hi-speed type (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: clean up baudrate request (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: clean up attribute handling (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: clean up modem-status handling (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: tighten device-type detection (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: rename channel index (Desnes Nunes) [2184064]
+- USB: serial: kl5kusb105: use usb_control_msg_recv() and usb_control_msg_send() (Desnes Nunes) [2184064]
+- USB: serial: keyspan_pda: use usb_control_msg_recv() (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: use usb_control_msg_recv() (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: include FT2232D in type string (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: rename chip types (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: drop redundant chip type comments (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: clean up chip type enum (Desnes Nunes) [2184064]
+- USB: serial: ftdi_sio: fix 300 bps rate for SIO (Desnes Nunes) [2184064]
+- usb: typec: intel_pmc_mux: Use the helper acpi_dev_get_memory_resources() (Desnes Nunes) [2184064]
+- usb: misc: usb3503: call clk_disable_unprepare in the error handling (Desnes Nunes) [2184064]
+- usb: misc: uss720: fix uninitialized variable rlen (Desnes Nunes) [2184064]
+- thunderbolt: debugfs: Fix spelling mistakes in seq_puts text (Desnes Nunes) [2184064]
+- thunderbolt: Add support for ASMedia NVM image format (Desnes Nunes) [2184064]
+- thunderbolt: Move vendor specific NVM handling into nvm.c (Desnes Nunes) [2184064]
+- thunderbolt: Provide tb_retimer_nvm_read() analogous to tb_switch_nvm_read() (Desnes Nunes) [2184064]
+- thunderbolt: Rename and make nvm_read() available for other files (Desnes Nunes) [2184064]
+- thunderbolt: Extend NVM version fields to 32-bits (Desnes Nunes) [2184064]
+- thunderbolt: Allow NVM upgrade of USB4 host routers (Desnes Nunes) [2184064]
+- scsi: uas: Drop DID_TARGET_FAILURE use (Desnes Nunes) [2184064]
+- usb: clean up after dropping driver registration log spam (Desnes Nunes) [2184064]
+- USB: host: ehci-atmel: Add support for HSIC phy (Desnes Nunes) [2184064]
+- dt-bindings: usb: atmel: add USB PHY type property (Desnes Nunes) [2184064]
+- USB: xhci: make xhci_get_endpoint_address static (Desnes Nunes) [2184064]
+- thunderbolt: Add support for receiver lane margining (Desnes Nunes) [2184064]
+- thunderbolt: Add helper to check if CL states are enabled on port (Desnes Nunes) [2184064]
+- thunderbolt: Pass CL state bitmask to tb_port_clx_supported() (Desnes Nunes) [2184064]
+- thunderbolt: Move port CL state functions into correct place in switch.c (Desnes Nunes) [2184064]
+- thunderbolt: Move tb_xdomain_parent() to tb.h (Desnes Nunes) [2184064]
+- USB: hcd-pci: Drop the unused id parameter from usb_hcd_pci_probe() (Desnes Nunes) [2184064]
+- USB: FHCI: Switch to GPIO descriptors (Desnes Nunes) [2184064]
+- net: thunderbolt: Update module description with mention of USB4 (Desnes Nunes) [2184064]
+- net: thunderbolt: Convert to use SPDX identifier (Desnes Nunes) [2184064]
+- net: thunderbolt: Enable full end-to-end flow control (Desnes Nunes) [2184064]
+- net: thunderbolt: Align the driver to the USB4 networking spec (Desnes Nunes) [2184064]
+- net: thunderbolt: Add comment clarifying prtcstns flags (Desnes Nunes) [2184064]
+- thunderbolt: Add back Intel Falcon Ridge end-to-end flow control workaround (Desnes Nunes) [2184064]
+- thunderbolt: Make iommu_dma_protection more accurate (Desnes Nunes) [2184064]
+- iommu: Add capability for pre-boot DMA protection (Desnes Nunes) [2184064]
+- iommu: Introduce device_iommu_capable() (Desnes Nunes) [2184064]
+- thunderbolt: Show link type for XDomain connections too (Desnes Nunes) [2184064]
+- thunderbolt: Add KUnit test for devices with no DisplayPort adapters (Desnes Nunes) [2184064]
+- thunderbolt: Add support for XDomain lane bonding (Desnes Nunes) [2184064]
+- thunderbolt: Split setting link width and lane bonding into own functions (Desnes Nunes) [2184064]
+- thunderbolt: Move tb_port_state() prototype to correct place (Desnes Nunes) [2184064]
+- thunderbolt: Fix typo in comment (Desnes Nunes) [2184064]
+- thunderbolt: Replace usage of found with dedicated list iterator variable (Desnes Nunes) [2184064]
+- net: thunderbolt: Enable DMA paths only after rings are enabled (Desnes Nunes) [2184064]
+- usb: reduce kernel log spam on driver registration (Desnes Nunes) [2184064]
+- usb: host: xhci-plat: suspend/resume clks for brcm (Desnes Nunes) [2184064]
+- usb: host: xhci-plat: suspend and resume clocks (Desnes Nunes) [2184064]
+- usb: host: Initiate urb ep with udev ep0 (Desnes Nunes) [2184064]
+- usb: ehci: Use endpoint in URB to get maxpacket (Desnes Nunes) [2184064]
+- dt-bindings: usb: Add missing (unevaluated|additional)Properties on child nodes (Desnes Nunes) [2184064]
+- dt-bindings: usb: Add DT bindings for STUSB160x Type-C controller (Desnes Nunes) [2184064]
+- media: uvcvideo: Limit power line control for Sonix Technology (Desnes Nunes) [2184064]
+- media: uvcvideo: Use entity get_cur in uvc_ctrl_set (Desnes Nunes) [2184064]
+- media: uvcvideo: Fix typo 'the the' in comment (Desnes Nunes) [2184064]
+- media: uvcvideo: Use indexed loops in uvc_ctrl_init_ctrl() (Desnes Nunes) [2184064]
+- media: uvcvideo: Fix invalid pointer in uvc_ctrl_init_ctrl() (Desnes Nunes) [2184064]
+- media: uvcvideo: Remove unneeded goto (Desnes Nunes) [2184064]
+- media: uvcvideo: Limit power line control for Acer EasyCamera (Desnes Nunes) [2184064]
+- media: uvcvideo: Limit power line control for Quanta cameras (Desnes Nunes) [2184064]
+- media: uvcvideo: Limit power line control for Chicony Easycamera (Desnes Nunes) [2184064]
+- media: uvcvideo: Limit power line control for Chicony Easycamera (Desnes Nunes) [2184064]
+- media: uvcvideo: Limit power line control for Quanta UVC Webcam (Desnes Nunes) [2184064]
+- media: uvcvideo: Add support for per-device control mapping overrides (Desnes Nunes) [2184064]
+- media: uvcvideo: Add missing value for power_line_frequency (Desnes Nunes) [2184064]
+- media: uvcvideo: Replace broken URL (Desnes Nunes) [2184064]
+- media: uvcvideo: Fix comment blocks style (Desnes Nunes) [2184064]
+- media: uvcvideo: refactor __uvc_ctrl_add_mapping (Desnes Nunes) [2184064]
+- media: technisat-usb2: Fix comment typo (Desnes Nunes) [2184064]
+- media: tm6000: Fix typo 'the the' in comment (Desnes Nunes) [2184064]
+- media: gspca: Fix typo 'the the' in comment (Desnes Nunes) [2184064]
+- thunderbolt: Add support for Intel Meteor Lake (Desnes Nunes) [2184064]
+- thunderbolt: Add comment where Thunderbolt 4 PCI IDs start (Desnes Nunes) [2184064]
+- usb/hcd: Fix dma_map_sg error check (Desnes Nunes) [2184064]
+- usb: move from strlcpy with unused retval to strscpy (Desnes Nunes) [2184064]
+- usb: typec: tcpci_rt1711h: Fix CC PHY noise filter of voltage level (Desnes Nunes) [2184064]
+- usb: typec: tcpci: Move function "tcpci_to_typec_cc" to common (Desnes Nunes) [2184064]
+- usb: typec: tcpci_rt1711h: Add compatible id with rt1715 (Desnes Nunes) [2184064]
+- usb: typec: tcpci_rt1711h: Add initial phy setting (Desnes Nunes) [2184064]
+- usb: typec: tcpci_rt1711h: Add regulator support when source vbus (Desnes Nunes) [2184064]
+- usb: typec: tcpci_rt1711h: Fix vendor setting when set vconn (Desnes Nunes) [2184064]
+- dt-bindings usb: typec: rt1711h: Add binding for Richtek RT1711H (Desnes Nunes) [2184064]
+- usb: common: debug: Check non-standard control requests (Desnes Nunes) [2184064]
+- usb: typec: ucsi: stm32g0: Fix spelling mistake "booloader" -> "bootloader" (Desnes Nunes) [2184064]
+- usb: common: usb-conn-gpio: Simplify some error message (Desnes Nunes) [2184064]
+- scsi: target: iscsi: Fix an error message in iscsi_check_key() (Maurizio Lombardi) [2186500]
+- scsi: target: core: Fix warning on RT kernels (Maurizio Lombardi) [2186500]
+- scsi: target: core: Remove unused variable 'unit_serial_len' (Maurizio Lombardi) [2186500]
+- scsi: target: Remove the unused function transport_lba_64_ext() (Maurizio Lombardi) [2186500]
+- fix iov_iter_bvec() "direction" argument (Maurizio Lombardi) [2186500]
+- scsi: target: tcm_loop: Fix possible name leak in tcm_loop_setup_hba_bus() (Maurizio Lombardi) [2186500]
+- scsi: target: core: New key must be used for moved PR (Maurizio Lombardi) [2186500]
+- scsi: target: core: UA on all LUNs after reset (Maurizio Lombardi) [2186500]
+- scsi: target: core: Abort all preempted regs if requested (Maurizio Lombardi) [2186500]
+- scsi: target: core: Fix memory leak in preempt_and_abort (Maurizio Lombardi) [2186500]
+- scsi: target: core: Fix preempt and abort for allreg res (Maurizio Lombardi) [2186500]
+- scsi: target: Remove unused se_tmr_req_cache declaration (Maurizio Lombardi) [2186500]
+- scsi: target: alua: Do not report emtpy port group (Maurizio Lombardi) [2186500]
+- scsi: target: core: Set MULTIP bit for se_device with multiple ports (Maurizio Lombardi) [2186500]
+- scsi: target: pscsi: Remove repeated word "calling" (Maurizio Lombardi) [2186500]
+- scsi: target: core: De-RCU of se_lun and se_lun acl (Maurizio Lombardi) [2186500]
+- scsi: target: core: Fix race during ACL removal (Maurizio Lombardi) [2186500]
+- scsi: target: Remove XDWRITEREAD emulated support (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Do not require target authentication (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Allow AuthMethod=None (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Support base64 in CHAP (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Add support for extended CDB AHS (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Fix clang -Wformat warnings (Maurizio Lombardi) [2186500]
+- scsi: target: Remove incorrect zero blocks WRITE_SAME check (Maurizio Lombardi) [2186500]
+- scsi: target: Remove duplicate "the" (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Fix NULL pointer dereference in iscsi_conn_auth_required() (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Control authentication per ACL (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Extract auth functions (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Add upcast helpers (Maurizio Lombardi) [2186500]
+- scsi: target: tcmu: Avoid holding XArray lock when calling lock_page (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Rename iscsi_session to iscsit_session (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Rename iscsi_conn to iscsit_conn (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Rename iscsi_cmd to iscsit_cmd (Maurizio Lombardi) [2186500]
+- scsi: target: tcmu: Fix possible data corruption (Maurizio Lombardi) [2186500]
+- scsi: target: core: Silence the message about unknown VPD pages (Maurizio Lombardi) [2186500]
+- target: remove an incorrect unmap zeroes data deduction (Maurizio Lombardi) [2186500]
+- scsi: target: Fix incorrect use of cpumask_t (Maurizio Lombardi) [2186500]
+- scsi: target: tcmu: Fix possible page UAF (Maurizio Lombardi) [2186500]
+- scsi: target: Add iscsi/cpus_allowed_list in configfs (Maurizio Lombardi) [2186500]
+- scsi: target: tcmu: Make cmd_ring_size changeable via configfs (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Make sure the np under each tpg is unique (Maurizio Lombardi) [2186500]
+- scsi: target: configfs: Delete unnecessary checks for NULL (Maurizio Lombardi) [2186500]
+- scsi: target: core: Use RCU helpers for INQUIRY t10_alua_tg_pt_gp (Maurizio Lombardi) [2186500]
+- scsi: target: core: Remove from tmr_list during LUN unlink (Maurizio Lombardi) [2186500]
+- scsi: target: core: Stop using bdevname() (Maurizio Lombardi) [2186500]
+- scsi: target: Perform ALUA group changes in one step (Maurizio Lombardi) [2186500]
+- scsi: target: Replace lun_tg_pt_gp_lock with rcu in I/O path (Maurizio Lombardi) [2186500]
+- scsi: target: Fix alua_tg_pt_gps_count tracking (Maurizio Lombardi) [2186500]
+- scsi: target: Fix ordered tag handling (Maurizio Lombardi) [2186500]
+- scsi: target: Fix ordered CMD_T_SENT handling (Maurizio Lombardi) [2186500]
+- scsi: target: tcmu: Allocate zeroed pages for data area (Maurizio Lombardi) [2186500]
+- scsi: target: tcmu: Use struct_size() helper in kmalloc() (Maurizio Lombardi) [2186500]
+- scsi: target: sbp: Replace enable attr with ops.enable (Maurizio Lombardi) [2186500]
+- scsi: target: iscsi: Replace tpg enable attr with ops.enable (Maurizio Lombardi) [2186500]
+- scsi: target: core: Add common tpg/enable attribute (Maurizio Lombardi) [2186500]
+- scsi: target: core: Make logs less verbose (Maurizio Lombardi) [2186500]
+- scsi: target: Remove unused function arguments (Maurizio Lombardi) [2186500]
+- scsi: target: Fix spelling mistake "CONFLIFT" -> "CONFLICT" (Maurizio Lombardi) [2186500]
+- dm: don't lock fs when the map is NULL in process of resume (Benjamin Marzinski) [2192702]
+- dm flakey: add an "error_reads" option (Benjamin Marzinski) [2192702]
+- dm flakey: remove trailing space in the table line (Benjamin Marzinski) [2192702]
+- dm flakey: fix a crash with invalid table line (Benjamin Marzinski) [2192702]
+- dm ioctl: fix nested locking in table_clear() to remove deadlock concern (Benjamin Marzinski) [2192702]
+- dm: unexport dm_get_queue_limits() (Benjamin Marzinski) [2192702]
+- dm: add helper macro for simple DM target module init and exit (Benjamin Marzinski) [2192702]
+- dm raid: remove unused d variable (Benjamin Marzinski) [2192702]
+- dm mirror: add DMERR message if alloc_workqueue fails (Benjamin Marzinski) [2192702]
+- dm: push error reporting down to dm_register_target() (Benjamin Marzinski) [2192702]
+- dm integrity: call kmem_cache_destroy() in dm_integrity_init() error path (Benjamin Marzinski) [2192702]
+- dm error: add discard support (Benjamin Marzinski) [2192702]
+- dm zero: add discard support (Benjamin Marzinski) [2192702]
+- dm table: allow targets without devices to set ->io_hints (Benjamin Marzinski) [2192702]
+- dm verity: fix error handling for check_at_most_once on FEC (Benjamin Marzinski) [2192702]
+- dm thin: speed up cell_defer_no_holder() (Benjamin Marzinski) [2192702]
+- dm bufio: don't bug for clear developer oversight (Benjamin Marzinski) [2192702]
+- dm bufio: never crash if dm_bufio_in_request() (Benjamin Marzinski) [2192702]
+- dm bufio: use WARN_ON in dm_bufio_client_destroy and dm_bufio_exit (Benjamin Marzinski) [2192702]
+- dm bufio: remove unused dm_bufio_release_move interface (Benjamin Marzinski) [2192702]
+- dm stats: check for and propagate alloc_percpu failure (Benjamin Marzinski) [2192702]
+- dm crypt: avoid accessing uninitialized tasklet (Benjamin Marzinski) [2192702]
+- dm crypt: add cond_resched() to dmcrypt_write() (Benjamin Marzinski) [2192702]
+- dm thin: fix deadlock when swapping to thin device (Benjamin Marzinski) [2192702]
+- units: add the HZ macros (Jocelyn Falempe) [2160451]
+- isystem: ship and use stdarg.h (Jocelyn Falempe) [2160451]
+- i915: Move list_count() to list.h as list_count_nodes() for broader use (Jocelyn Falempe) [2160451]
+- resource: Convert DEFINE_RES_NAMED() to be compound literal (Jocelyn Falempe) [2160451]
+- media: videobuf2: Assert held reservation lock for dma-buf mmapping (Jocelyn Falempe) [2160451]
+- media: videobuf2: Stop using internal dma-buf lock (Jocelyn Falempe) [2160451]
+- media: videobuf2: Prepare to dynamic dma-buf locking specification (Jocelyn Falempe) [2160451]
+- media: videobuf2-dma-contig.c: remove spurious 'b' in message (Jocelyn Falempe) [2160451]
+- dma-buf: Add unlocked variant of attachment-mapping functions (Jocelyn Falempe) [2160451]
+- dma-buf: Add unlocked variant of vmapping functions (Jocelyn Falempe) [2160451]
+- kbuild: simplify access to the kernel's version (Jocelyn Falempe) [2160451]
+- hwmon: (core) Add support for rated attributes (Jocelyn Falempe) [2160451]
+- ACPI: video: Allow GPU drivers to report no panels (Jocelyn Falempe) [2160451]
+- drm: Move nomodeset kernel parameter to drivers/video (Jocelyn Falempe) [2160451]
+- PM: core: Add EXPORT[_GPL]_SIMPLE_DEV_PM_OPS macros (Jocelyn Falempe) [2160451]
+- PM: runtime: Add DEFINE_RUNTIME_DEV_PM_OPS() macro (Jocelyn Falempe) [2160451]
+- ACPI: video: Make backlight class device registration a separate step (v2) (Jocelyn Falempe) [2160451]
+- ACPI: video: Add acpi_video_backlight_use_native() helper (Jocelyn Falempe) [2160451]
+- scsi: sched/wait: Add wait_event_lock_irq_timeout for TASK_UNINTERRUPTIBLE usage (Jocelyn Falempe) [2160451]
+- iosys-map: Add IOSYS_MAP_INIT_VADDR_IOMEM() (Jocelyn Falempe) [2160451]
+- perf branch: Fix interpretation of branch records (Michael Petlan) [2086826]
+- perf/x86/amd/lbr: Adjust LBR regardless of filtering (Michael Petlan) [2086826]
+- perf/x86/utils: Fix uninitialized var in get_branch_type() (Michael Petlan) [2086826]
+- perf/x86/amd/lbr: Add LbrExtV2 branch speculation info support (Michael Petlan) [2086826]
+- perf/core: Add speculation info to branch entries (Michael Petlan) [2086826]
+- perf/x86/amd/lbr: Use fusion-aware branch classifier (Michael Petlan) [2086826]
+- perf/x86: Make branch classifier fusion-aware (Michael Petlan) [2086826]
+- perf/x86/amd/lbr: Add LbrExtV2 software branch filter support (Michael Petlan) [2086826]
+- perf/x86: Move branch classifier (Michael Petlan) [2086826]
+- perf: Add irq and exception return branch types (Michael Petlan) [2086826]
+- perf/x86/intel/ds: Check return values of insn decoder functions (Michael Petlan) [2086826]
+- perf/x86/amd/lbr: Add LbrExtV2 hardware branch filter support (Michael Petlan) [2086826]
+- perf/x86/amd/lbr: Add LbrExtV2 branch record support (Michael Petlan) [2086826]
+- perf/x86/amd/lbr: Detect LbrExtV2 support (Michael Petlan) [2086826]
+- x86/cpufeatures: Add LbrExtV2 feature bit (Michael Petlan) [2086826]
+- perf/x86/amd/core: Add generic branch record interfaces (Michael Petlan) [2086826]
+- perf/x86/amd/core: Refactor branch attributes (Michael Petlan) [2086826]
+- perf/x86/amd/brs: Move feature-specific functions (Michael Petlan) [2086826]
+- scsi: zfcp: Trace when request remove fails after qdio send fails (Tobias Huschle) [2159733]
+- scsi: zfcp: Change the type of all fsf request id fields and variables to u64 (Tobias Huschle) [2159733]
+- scsi: zfcp: Make the type for accessing request hashtable buckets size_t (Tobias Huschle) [2159733]
+- scsi: zfcp: Drop redundant "the" in the comments (Tobias Huschle) [2159733]
+- s390/qeth: Convert sprintf/snprintf to scnprintf (Tobias Huschle) [2159732]
+- s390/qeth: Convert sysfs sprintf to sysfs_emit (Tobias Huschle) [2159732]
+- s390/qeth: Use constant for IP address buffers (Tobias Huschle) [2159732]
+- s390/ctcm: cleanup indenting (Tobias Huschle) [2159732]
+- s390/ipl: add loadparm parameter to eckd ipl/reipl data (Tobias Huschle) [2159689]
+- s390/ipl: add DEFINE_GENERIC_LOADPARM() (Tobias Huschle) [2159689]
+- s390/ipl: use octal values instead of S_* macros (Tobias Huschle) [2159689]
+- s390/ipl: add eckd support (Tobias Huschle) [2159689]
+- net/iucv: Fix size of interrupt data (Tobias Huschle) [2192507]
+- workqueue: Protects wq_unbound_cpumask with wq_pool_attach_mutex (Waiman Long) [2176760]
+- workqueue: make sysfs of unbound kworker cpumask more clever (Waiman Long) [2176760]
+- workqueue: Rename "delayed" (delayed by active management) to "inactive" (Waiman Long) [2176760]
+- workqueue: Kick a worker based on the actual activation of delayed works (Waiman Long) [2176760]
+- workqueue: fix UAF in pwq_unbound_release_workfn() (Waiman Long) [2176760]
+- workqueue: fix a piece of comment about reserved bits for work flags (Waiman Long) [2176760]
+- workqueue: void unneeded requeuing the pwq in rescuer thread (Waiman Long) [2176760]
+- mm/memcg: Fix mem_cgroup_id_get_online() underflow problem (Waiman Long) [2176760]
+- net: fix NULL pointer in skb_segment_list (Paolo Abeni) [2188595]
+- net: stream: purge sk_error_queue in sk_stream_kill_queues() (Paolo Abeni) [2188595]
+- skbuff: Account for tail adjustment during pull operations (Paolo Abeni) [2188595]
+- net: vmxnet3: Fix NULL pointer dereference in vmxnet3_rq_rx_complete() (Seiji Nishikawa) [2186419]
+- tipc: add an extra conn_get in tipc_conn_alloc (Xin Long) [2177374] {CVE-2023-1382}
+- tipc: set con sock in tipc_conn_alloc (Xin Long) [2177374] {CVE-2023-1382}
+- net: sched: fix memory leak in tcindex_set_parms (Davide Caratti) [2181874]
+- net/sched: tcindex: search key must be 16 bits (Davide Caratti) [2181874]
+- net/sched: tcindex: update imperfect hash filters respecting rcu (Davide Caratti) [2181874] {CVE-2023-1281}
+- crypto: rng - Use a different crypto_rng for reseeding (Herbert Xu) [2193410]
+- media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() (Ricardo Robaina) [2174409] {CVE-2023-1118}
+
+* Tue May 09 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-492.el8]
+- xfs: assert in xfs_btree_del_cursor should take into account error (Andrey Albershteyn) [2183168]
+- xfs: prevent a UAF when log IO errors race with unmount (Andrey Albershteyn) [2183168]
+- xfs: fix NULL pointer dereference in xfs_getbmap() (Andrey Albershteyn) [2183168]
+- xfs: avoid a UAF when log intent item recovery fails (Andrey Albershteyn) [2183168]
+- xfs: fix memory leak in xfs_errortag_init (Andrey Albershteyn) [2183168]
+- xfs: Fix unreferenced object reported by kmemleak in xfs_sysfs_init() (Andrey Albershteyn) [2183168]
+- xfs: fix sb write verify for lazysbcount (Andrey Albershteyn) [2183168]
+- xfs: invalidate block device page cache during unmount (Andrey Albershteyn) [2183168]
+- xfs: invalidate xfs_bufs when allocating cow extents (Andrey Albershteyn) [2183168]
+- xfs: dquot shrinker doesn't check for XFS_DQFLAG_FREEING (Andrey Albershteyn) [2183168]
+- xfs: fix intermittent hang during quotacheck (Andrey Albershteyn) [2183168]
+- xfs: fix exception caused by unexpected illegal bestcount in leaf dir (Andrey Albershteyn) [2183168]
+- xfs: fix super block buf log item UAF during force shutdown (Andrey Albershteyn) [2183168]
+- xfs: fix uninitialized variable access (Andrey Albershteyn) [2183168]
+- xfs: fix potential log item leak (Andrey Albershteyn) [2183168]
+- xfs: fix inode reservation space for removing transaction (Andrey Albershteyn) [2183168]
+- xfs: fix extent busy updating (Andrey Albershteyn) [2183168]
+- xfs: fix low space alloc deadlock (Andrey Albershteyn) [2183168]
+- xfs: purge dquots after inode walk fails during quotacheck (Andrey Albershteyn) [2183168]
+- xfs: get root inode correctly at bulkstat (Andrey Albershteyn) [2183168]
+- iomap: iomap: fix memory corruption when recording errors during writeback (Andrey Albershteyn) [2183168]
+- xfs: attach dquots to inode before reading data/cow fork mappings (Andrey Albershteyn) [2183168]
+- xfs: get rid of assert from xfs_btree_islastblock (Andrey Albershteyn) [2183168]
+- xfs: fix use-after-free in xattr node block inactivation (Andrey Albershteyn) [2183168]
+- xfs: pass the correct cursor to xfs_iomap_prealloc_size (Andrey Albershteyn) [2183168]
+- xfs: don't report reserved bnobt space as available (Andrey Albershteyn) [2183168]
+- xfs: fix overfilling of reserve pool (Andrey Albershteyn) [2183168]
+- xfs: always succeed at setting the reserve pool size (Andrey Albershteyn) [2183168]
+- xfs: remove infinite loop when reserving free block pool (Andrey Albershteyn) [2166567 2183168]
+- xfs: don't include bnobt blocks when reserving free block pool (Andrey Albershteyn) [2183168]
+- xfs: document the XFS_ALLOC_AGFL_RESERVE constant (Andrey Albershteyn) [2183168]
+- xfs: prevent UAF in xfs_log_item_in_current_chkpt (Andrey Albershteyn) [2183168]
+- xfs: fix incorrect i_nlink caused by inode racing (Andrey Albershteyn) [2183168]
+- xfs: fix incorrect error-out in xfs_remove (Andrey Albershteyn) [2183168]
+- KVM: s390: GISA: sort out physical vs virtual pointers usage (Cédric Le Goater) [2169294]
+- KVM: s390: disable migration mode when dirty tracking is disabled (Cédric Le Goater) [2169294]
+- KVM: s390: Unwind kvm_arch_init() piece-by-piece() if a step fails (Cédric Le Goater) [2169294]
+- iommu/s390: Make attach succeed even if the device is in error state (Cédric Le Goater) [2169294]
+- KVM: s390: pci: Fix allocation size of aift kzdev elements (Cédric Le Goater) [2169294]
+- iommu/s390: Fix incorrect aperture check (Cédric Le Goater) [2169294]
+- KVM: s390: VSIE: sort out virtual/physical address in pin_guest_page (Cédric Le Goater) [2169294]
+- KVM: s390: pv: sort out physical vs virtual pointers usage (Cédric Le Goater) [2169294]
+- KVM: s390: sida: sort out physical vs virtual pointers usage (Cédric Le Goater) [2169294]
+- KVM: s390: sort out physical vs virtual pointers usage (Cédric Le Goater) [2169294]
+- iommu/s390: Fail probe for non-PCI devices (Cédric Le Goater) [2169294]
+- PCI/AER: Remove redundant Device Control Error Reporting Enable (Myron Stowe) [2180894]
+- PCI/AER: Configure ECRC only if AER is native (Myron Stowe) [2180894]
+- PCI/AER: Iterate over error counters instead of error strings (Myron Stowe) [2180894]
+- PCI/AER: Enable error reporting when AER is native (Myron Stowe) [2180894]
+- PCI/AER: Configure ECRC for every device (Myron Stowe) [2180894]
+- PCI/AER: Clear MULTI_ERR_COR/UNCOR_RCV bits (Myron Stowe) [2180894]
+- PCI/sysfs: Use sysfs_emit() and sysfs_emit_at() in "show" functions (Myron Stowe) [2180894]
+- PCI/AER: Use consistent format when printing PCI device (Myron Stowe) [2180894]
+- PCI/sysfs: Rely on lengths from scnprintf(), dsm_label_utf16s_to_utf8s() (Myron Stowe) [2180894]
+- PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun (Myron Stowe) [2180894]
+- mlxsw: minimal: Fix deadlock in ports creation (Petr Oros) [2177956]
+- mlxsw: core: Fix use-after-free calling devl_unlock() in mlxsw_core_bus_device_unregister() (Petr Oros) [2177956]
+- net: devlink: convert reload command to take implicit devlink->lock (Petr Oros) [2177956]
+- mlxsw: convert driver to use unlocked devlink API during init/fini (Petr Oros) [2177956]
+- mlxsw: Narrow the critical section of devl_lock during ports creation/removal (Petr Oros) [2177956]
+- ice: sleep, don't busy-wait, in the SQ send retry loop (Michal Schmidt) [2184013]
+- ice: remove unused buffer copy code in ice_sq_send_cmd_retry() (Michal Schmidt) [2184013]
+- ice: sleep, don't busy-wait, for ICE_CTL_Q_SQ_CMD_TIMEOUT (Michal Schmidt) [2184013]
+- ice: remove ice_ctl_q_info::sq_cmd_timeout (Michal Schmidt) [2184013]
+- ice: increase the GNSS data polling interval to 20 ms (Michal Schmidt) [2184013]
+- ice: do not busy-wait to read GNSS data (Michal Schmidt) [2184013]
+- enic: Use irq_update_affinity_hint() (Michal Schmidt) [2101515]
+- ethernet:enic: Fix a use after free bug in enic_hard_start_xmit (Michal Schmidt) [2101515]
+- net: enic: Cure the enic api locking trainwreck (Michal Schmidt) [2101515]
+- enic: switch from 'pci_' to 'dma_' API (Michal Schmidt) [2101515]
+- enic: convert to new udp_tunnel_nic infra (Michal Schmidt) [2101515]
+- enic: let core reject the unsupported coalescing parameters (Michal Schmidt) [2101515]
+- scsi: mpt3sas: Fix an issue when driver is being removed (Tomas Henzl) [2166206]
+- scsi: mpt3sas: Remove HBA BIOS version in the kernel log (Tomas Henzl) [2166206]
+- scsi: mpt3sas: Don't print sense pool info twice (Tomas Henzl) [2166206]
+- scsi: mpt3sas: Fix NULL pointer access in mpt3sas_transport_port_add() (Tomas Henzl) [2166206]
+- scsi: mpt3sas: Fix a memory leak (Tomas Henzl) [2166206]
+- scsi: mpt3sas: Demote log level for trace buffer allocation to info (Tomas Henzl) [2166206]
+- scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add() (Tomas Henzl) [2166206]
+- scsi: mpt3sas: Remove usage of dma_get_required_mask() API (Tomas Henzl) [2166206]
+- scsi: mpt3sas: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Tomas Henzl) [2166206]
+- ipmi: msghandler: kABI implementation was wrong (Tony Camuso) [2182345]
+- hwmon: (xgene) Fix use after free bug in xgene_hwmon_remove due to race condition (Chris von Recklinghausen) [2184583] {CVE-2023-1855}
+- RDMA/irdma: Add ipv4 check to irdma_find_listener() (Kamal Heib) [2117129 2135976]
+- RDMA/irdma: Increase iWARP CM default rexmit count (Kamal Heib) [2117129 2135976]
+- RDMA/irdma: Fix memory leak of PBLE objects (Kamal Heib) [2117129 2135976]
+- RDMA/irdma: Do not generate SW completions for NOPs (Kamal Heib) [2117129 2135976]
+- RDMA/irdma: Remove a redundant irdma_arp_table() call (Kamal Heib) [2117129 2135976]
+- migrate: grab the compound head in migration_entry_wait_on_locked (Nico Pache) [2188249]
+- module: Don't wait for GOING modules (Mark Langsdorf) [1964563]
+- redhat/configs: Fix DEBUG_BLK_CGROUP and BFQ_CGROUP_DEBUG configs (Vladis Dronov)
+- x86/MCE/AMD: Clear DFR errors found in THR handler (Prarit Bhargava) [2190279]
+
+* Fri May 05 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-491.el8]
+- iommu/amd: Update amd_iommu_fault structure to include PCI seg ID (Jerry Snitselaar) [2117775]
+- iommu/amd: Update device_state structure to include PCI seg ID (Jerry Snitselaar) [2117775]
+- iommu/amd: Print PCI segment ID in error log messages (Jerry Snitselaar) [2117775]
+- iommu/amd: Add PCI segment support for ivrs_[ioapic/hpet/acpihid] commands (Jerry Snitselaar) [2117775]
+- iommu/amd: Specify PCI segment ID when getting pci device (Jerry Snitselaar) [2117775]
+- iommu/amd: Include PCI segment ID when initialize IOMMU (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce get_device_sbdf_id() helper function (Jerry Snitselaar) [2117775]
+- iommu/amd: Flush upto last_bdf only (Jerry Snitselaar) [2117775]
+- iommu/amd: Remove global amd_iommu_[dev_table/alias_table/last_bdf] (Jerry Snitselaar) [2117775]
+- iommu/amd: Update set_dev_entry_bit() and get_dev_entry_bit() (Jerry Snitselaar) [2117775]
+- iommu/amd: Update (un)init_device_table_dma() (Jerry Snitselaar) [2117775]
+- iommu/amd: Update set_dte_irq_entry (Jerry Snitselaar) [2117775]
+- iommu/amd: Update dump_dte_entry (Jerry Snitselaar) [2117775]
+- iommu/amd: Update iommu_ignore_device (Jerry Snitselaar) [2117775]
+- iommu/amd: Update set_dte_entry and clear_dte_entry (Jerry Snitselaar) [2117775]
+- iommu/amd: Convert to use per PCI segment rlookup_table (Jerry Snitselaar) [2117775]
+- iommu/amd: Update alloc_irq_table and alloc_irq_index (Jerry Snitselaar) [2117775]
+- iommu/amd: Update amd_irte_ops functions (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce struct amd_ir_data.iommu (Jerry Snitselaar) [2117775]
+- iommu/amd: Update irq_remapping_alloc to use IOMMU lookup helper function (Jerry Snitselaar) [2117775]
+- iommu/amd: Convert to use rlookup_amd_iommu helper function (Jerry Snitselaar) [2117775]
+- iommu/amd: Convert to use per PCI segment irq_lookup_table (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment rlookup table size (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment alias table size (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment device table size (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment last_bdf (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment unity map list (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment alias_table (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment old_dev_tbl_cpy (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment dev_data_list (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment irq_lookup_table (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment rlookup table (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce per PCI segment device table (Jerry Snitselaar) [2117775]
+- iommu/amd: Introduce pci segment structure (Jerry Snitselaar) [2117775]
+- iommu/amd: Update struct iommu_dev_data definition (Jerry Snitselaar) [2117775]
+- redhat: configs: Enable CONFIG_INTEL_IOMMU_PERF_EVENTS (Jerry Snitselaar) [2176995]
+- iommu/vt-d: Fix an IOMMU perfmon warning when CPU hotplug (Jerry Snitselaar) [2176995]
+- iommu/vt-d: Enable IOMMU perfmon support (Jerry Snitselaar) [2176995]
+- iommu/vt-d: Add IOMMU perfmon overflow handler support (Jerry Snitselaar) [2176995]
+- iommu/vt-d: Support cpumask for IOMMU perfmon (Jerry Snitselaar) [2176995]
+- iommu/vt-d: Add IOMMU perfmon support (Jerry Snitselaar) [2176995]
+- iommu/vt-d: Support Enhanced Command Interface (Jerry Snitselaar) [2176995]
+- iommu/vt-d: Retrieve IOMMU perfmon capability information (Jerry Snitselaar) [2176995]
+- iommu/vt-d: Fix error handling in sva enable/disable paths (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Support size of the register set in DRHD (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Allow zero SAGAW if second-stage not supported (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Remove include/linux/intel-svm.h (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Allow to use flush-queue when first level is default (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Fix PASID directory pointer coherency (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Set No Execute Enable bit in PASID table entry (Jerry Snitselaar) [2181397]
+- iommu: Remove SVM_FLAG_SUPERVISOR_MODE support (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Fix PCI device refcount leak in prq_event_thread() (Jerry Snitselaar) [2181397]
+- PCI: Enable PASID only when ACS RR & UF enabled on upstream path (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Set SRE bit only when hardware has SRS cap (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Preset Access bit for IOVA in FL non-leaf paging entries (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Remove pasid_set_eafe() (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Remove unnecessary SVA data accesses in page fault path (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Add RPLS to quirk list to skip TE disabling (Jerry Snitselaar) [2181397]
+- iommu: Remove guest pasid related interfaces and definitions (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Remove guest pasid related callbacks (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Remove unused PASID_DISABLED (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Clean up unused PASID updating functions (Jerry Snitselaar) [2181397]
+- iommu/vtd: Replace acpi_bus_get_device() (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Remove unused dma_to_mm_pfn function (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Use bitmap_zalloc() when applicable (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Remove unused macros (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Allow NVS regions in arch_rmrr_sanity_check() (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Use rcu_lock in get_resv_regions (Jerry Snitselaar) [2181397]
+- iommu: Add gfp parameter to iommu_alloc_resv_region (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Fix PCI device refcount leak in dmar_dev_scope_init() (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Fix PCI device refcount leak in has_external_pci() (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Remove iova_cache_get/put() (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Add missing "__init" for rmrr_sanity_check() (Jerry Snitselaar) [2181397]
+- iommu/arm-smmu: Force identity domains for legacy binding (Jerry Snitselaar) [2181397]
+- iommu/arm-smmu-v3: Properly handle the return value of arm_smmu_cmdq_build_cmd() (Jerry Snitselaar) [2181397]
+- iommu/arm-smmu-v3: Stop pre-zeroing batch commands in arm_smmu_atc_inv_master() (Jerry Snitselaar) [2181397]
+- iommu/arm-smmu: Add clk_bulk_{prepare/unprepare} to system pm callbacks (Jerry Snitselaar) [2181397]
+- iommu: Make sysfs robust for non-API groups (Jerry Snitselaar) [2181397]
+- iommu: Use right way to retrieve iommu_ops (Jerry Snitselaar) [2181397]
+- iommu: Remove apply_resv_region (Jerry Snitselaar) [2181397]
+- iommu/dma: Explicitly sort PCI DMA windows (Jerry Snitselaar) [2181397]
+- iommu: Do not dereference fwnode in struct device (Jerry Snitselaar) [2181397]
+- iommu: Remove duplicate ida_free in iommu_group_alloc (Jerry Snitselaar) [2181397]
+- iommu: Directly use ida_alloc()/free() (Jerry Snitselaar) [2181397]
+- iommu/iova: change IOVA_MAG_SIZE to 127 to save memory (Jerry Snitselaar) [2181397]
+- iommu/iova: Fix alloc iova overflows issue (Jerry Snitselaar) [2181397]
+- iova: Remove iovad->rcaches check in iova_rcache_get() (Jerry Snitselaar) [2181397]
+- iova: Remove magazine BUG_ON() checks (Jerry Snitselaar) [2181397]
+- iova: Remove some magazine pointer NULL checks (Jerry Snitselaar) [2181397]
+- swiotlb: fix a braino in the alignment check fix (Jerry Snitselaar) [2181397]
+- swiotlb: fix slot alignment checks (Jerry Snitselaar) [2181397]
+- swiotlb: use wrap_area_index() instead of open-coding it (Jerry Snitselaar) [2181397]
+- swiotlb: fix the deadlock in swiotlb_do_find_slots (Jerry Snitselaar) [2181397]
+- swiotlb: mark swiotlb_memblock_alloc() as __init (Jerry Snitselaar) [2181397]
+- swiotlb: remove swiotlb_max_segment (Jerry Snitselaar) [2181397]
+- swiotlb: reduce the swiotlb buffer size on allocation failure (Jerry Snitselaar) [2181397]
+- swiotlb: replace kmap_atomic() with memcpy_{from,to}_page() (Jerry Snitselaar) [2181397]
+- swiotlb: don't panic! (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode (Jerry Snitselaar) [2175620]
+- iommu/amd: Add map/unmap_pages() iommu_domain_ops callback support (Jerry Snitselaar) [2181397]
+- iommu/amd/io-pgtable: Implement unmap_pages io_pgtable_ops callback (Jerry Snitselaar) [2181397]
+- iommu/amd/io-pgtable: Implement map_pages io_pgtable_ops callback (Jerry Snitselaar) [2181397]
+- iommu/vt-d: Avoid unnecessary global DMA cache invalidation (Jerry Snitselaar) [2176983]
+- iommu/vt-d: Avoid unnecessary global IRTE cache invalidation (Jerry Snitselaar) [2176983]
+- iommu/vt-d: Fix buggy QAT device mask (Jerry Snitselaar) [2169568]
+- iommu/vt-d: Add a fix for devices need extra dtlb flush (Jerry Snitselaar) [2169568]
+- xfs: fix off-by-one-block in xfs_discard_folio() (Carlos Maiolino) [2112147]
+- xfs: drop write error injection is unfixable, remove it (Carlos Maiolino) [2112147]
+- xfs: use iomap_valid method to detect stale cached iomaps (Carlos Maiolino) [2112147]
+- iomap: write iomap validity checks (Carlos Maiolino) [2112147]
+- xfs: xfs_bmap_punch_delalloc_range() should take a byte range (Carlos Maiolino) [2112147]
+- iomap: buffered write failure should not truncate the page cache (Carlos Maiolino) [2112147]
+- iomap: Export page_cache_seek_hole_data (Carlos Maiolino) [2112147]
+- xfs,iomap: move delalloc punching to iomap (Carlos Maiolino) [2112147]
+- xfs: use byte ranges for write cleanup ranges (Carlos Maiolino) [2112147]
+- xfs: punching delalloc extents on write failure is racy (Carlos Maiolino) [2112147]
+- xfs: write page faults in iomap are not buffered writes (Carlos Maiolino) [2112147]
+- iomap: iomap_read_inline_data cleanup (Carlos Maiolino) [2112147]
+- iomap: Fix inline extent handling in iomap_readpage (Carlos Maiolino) [2112147]
+- iomap: constify iomap_iter_srcmap (Carlos Maiolino) [2112147]
+- iomap: rework unshare flag (Carlos Maiolino) [2112147]
+- iomap: pass an iomap_iter to various buffered I/O helpers (Carlos Maiolino) [2112147]
+- iomap: remove iomap_apply (Carlos Maiolino) [2112147]
+- fsdax: Fix infinite loop in dax_iomap_rw() (Carlos Maiolino) [2112147]
+- fsdax: switch dax_iomap_rw to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch iomap_swapfile_activate to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch iomap_seek_data to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch iomap_seek_hole to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch iomap_bmap to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch iomap_fiemap to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch __iomap_dio_rw to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: support REQ_OP_ZONE_APPEND (Carlos Maiolino) [2112147]
+- iomap: add a filesystem hook for direct I/O bio submission (Carlos Maiolino) [2112147]
+- iomap: switch iomap_page_mkwrite to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch iomap_zero_range to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: Change calling convention for zeroing (Carlos Maiolino) [2112147]
+- iomap: switch iomap_file_unshare to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch iomap_file_buffered_write to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: switch readahead and readpage to use iomap_iter (Carlos Maiolino) [2112147]
+- iomap: add the new iomap_iter model (Carlos Maiolino) [2112147]
+- iomap: fix the iomap_readpage_actor return value for inline data (Carlos Maiolino) [2112147]
+- iomap: Support inline data with block size < page size (Carlos Maiolino) [2112147]
+- fs: mark the iomap argument to __block_write_begin_int const (Carlos Maiolino) [2112147]
+- fsdax: mark the iomap argument to dax_iomap_sector as const (Carlos Maiolino) [2112147]
+- iomap: mark the iomap argument to iomap_read_page_sync const (Carlos Maiolino) [2112147]
+- iomap: mark the iomap argument to iomap_read_inline_data const (Carlos Maiolino) [2112147]
+- iomap: mark the iomap argument to iomap_inline_data_valid const (Carlos Maiolino) [2112147]
+- iomap: mark the iomap argument to iomap_inline_data const (Carlos Maiolino) [2112147]
+- iomap: mark the iomap argument to iomap_sector const (Carlos Maiolino) [2112147]
+- ipv6: Fix an uninit variable access bug in __ip6_make_skb() (Hangbin Liu) [2185798]
+- ipv6: Fix tcp socket connection with DSCP. (Hangbin Liu) [2185798]
+- ipv6: Fix datagram socket connection with DSCP. (Hangbin Liu) [2185798]
+- ipv6: avoid use-after-free in ip6_fragment() (Hangbin Liu) [2185798]
+- ipv6: addrlabel: fix infoleak when sending struct ifaddrlblmsg to network (Hangbin Liu) [2185798]
+- ipv6: fix WARNING in ip6_route_net_exit_late() (Hangbin Liu) [2185798]
+- ipv6: ensure sane device mtu in tunnels (Hangbin Liu) [2185798]
+- KVM: arm64: PMU: Restore the guest's EL0 event counting after migration (Shaoqin Huang) [2175146]
+- KVM: arm64: Retry fault if vma_lookup() results become invalid (Shaoqin Huang) [2175146]
+- KVM: arm64: PMU: Don't save PMCR_EL0.{C,P} for the vCPU (Shaoqin Huang) [2175146]
+- KVM: arm64: PMU: Fix GET_ONE_REG for vPMC regs to return the current value (Shaoqin Huang) [2175146]
+- KVM: arm64: timers: Convert per-vcpu virtual offset to a global value (Shaoqin Huang) [2175146]
+- KVM: arm64: Fix non-kerneldoc comments (Shaoqin Huang) [2175146]
+- arm64/sysreg: clean up some inconsistent indenting (Shaoqin Huang) [2175146]
+- KVM: arm64: timers: Don't BUG() on unhandled timer trap (Shaoqin Huang) [2175146]
+- KVM: arm64: Reduce overhead of trapped timer sysreg accesses (Shaoqin Huang) [2175146]
+- KVM: arm64: Don't arm a hrtimer for an already pending timer (Shaoqin Huang) [2175146]
+- KVM: arm64: Fix S1PTW handling on RO memslots (Shaoqin Huang) [2175146]
+- KVM: arm64: Fix typo in comment (Shaoqin Huang) [2175146]
+- KVM: arm64: Fix pvtime documentation (Shaoqin Huang) [2175146]
+- KVM: arm64: Fix PAR_TO_HPFAR() to work independently of PA_BITS. (Shaoqin Huang) [2175146]
+- KVM: arm64: nvhe: Fix build with profile optimization (Shaoqin Huang) [2175146]
+- fuse: wait for writepages in syncfs (Brian Foster) [2185834]
+- virtio_fs: Modify format for virtio_fs_direct_access (Brian Foster) [2185834]
+- virtiofs: delete unused parameter for virtio_fs_cleanup_vqs (Brian Foster) [2185834]
+- virtiofs: use strscpy for copying the queue name (Brian Foster) [2185834]
+- virtiofs: propagate sync() to file server (Brian Foster) [2185834]
+- fuse: add a flag FUSE_SETXATTR_ACL_KILL_SGID to kill SGID (Brian Foster) [2185834]
+- fuse: extend FUSE_SETXATTR request (Brian Foster) [2185834]
+- virtiofs: fix userns (Brian Foster) [2185834]
+- virtiofs: remove useless function (Brian Foster) [2185834]
+- virtiofs: split requests that exceed virtqueue size (Brian Foster) [2185834]
+- virtiofs: fix memory leak in virtio_fs_probe() (Brian Foster) [2185834]
+- virtio_fs: convert to LE accessors (Brian Foster) [2185834]
+- dmaengine: use sysfs_emit() to instead of scnprintf() (Jerry Snitselaar) [2181398]
+- dmaengine: Simplify dmaenginem_async_device_register() function (Jerry Snitselaar) [2181398]
+- dmaengine: idma64: Update bytes_transferred field (Jerry Snitselaar) [2181398]
+- dmaengine: dw: Move check for paused channel to dwc_get_residue() (Jerry Snitselaar) [2181398]
+- dmaengine: ptdma: check for null desc before calling pt_cmd_callback (Jerry Snitselaar) [2181398]
+- dmaengine: idxd: Fix default allowed read buffers value in group (Jerry Snitselaar) [2181398]
+- dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0 (Jerry Snitselaar) [2181398]
+- ptdma: pt_core_execute_cmd() should use spinlock (Jerry Snitselaar) [2181398]
+- dmaengine: Fix double increment of client_count in dma_chan_get() (Jerry Snitselaar) [2181398]
+- dmaengine: ioat: stop mod_timer from resurrecting deleted timer in __cleanup() (Jerry Snitselaar) [2153929]
+- cifs: set a minimum of 120s for next dns resolution (Ronnie Sahlberg) [2182867]
+- cifs: use the expiry output of dns_query to schedule next resolution (Ronnie Sahlberg) [2182867]
+- cifs: sanitize paths in cifs_update_super_prepath. (Ronnie Sahlberg) [2182472]
+- redhat/configs: Fix incorrect configs location and content (Vladis Dronov)
+- scsi: megaraid_sas: Fix double kfree() (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Fix fw_crash_buffer_show() (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Fix crash after a double completion (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Driver version update to 07.725.01.00-rc1 (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Add crash dump mode capability bit in MFI capabilities (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Update max supported LD IDs to 240 (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Add flexible array member for SGLs (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Fix some spelling mistakes in comment (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Remove unnecessary kfree() (Tomas Henzl) [2163670]
+- scsi: megaraid_sas: Use irq_set_affinity_and_hint() (Tomas Henzl) [2163670]
+- scsi: megaraid: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Tomas Henzl) [2163670]
+- scsi: ses: Handle enclosure with just a primary component gracefully (Tomas Henzl) [2188481]
+- ipvlan: hold lower dev to avoid possible use-after-free (Davide Caratti) [2188055]
+- net: macvlan: Use built-in RCU list checking (Davide Caratti) [2188055]
+- x86/split_lock: Enumerate architectural split lock disable bit (Prarit Bhargava) [2123535]
+- bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state (Yauheni Kaliuta) [2175160]
+- hwmon: (coretemp) avoid RDMSR interrupts to isolated CPUs (Marcelo Tosatti) [2158707]
+- scsi: target: iscsi: Handle abort for WRITE_PENDING cmds (Maurizio Lombardi) [2156588]
+- scsi: target: iscsit: Fix TAS handling during conn cleanup (Maurizio Lombardi) [2156588]
+
+* Tue May 02 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-490.el8]
+- RDMA/cma: Distinguish between sockaddr_in and sockaddr_in6 by size (Kamal Heib) [2170083]
+- RDMA/umem: Remove unused 'work' member from struct ib_umem (Kamal Heib) [2170083]
+- RDMA/restrack: Correct spelling (Kamal Heib) [2170083]
+- scripts/spelling.txt: add "exsits" pattern and fix typo instances (Kamal Heib) [2170083]
+- RDMA/cma: Refactor the inbound/outbound path records process flow (Kamal Heib) [2170083]
+- RDMA/core: Refactor rdma_bind_addr (Kamal Heib) [2170083]
+- IB/IPoIB: Fix legacy IPoIB due to wrong number of queues (Kamal Heib) [2170076]
+- RDMA/core: Fix ib block iterator counter overflow (Kamal Heib) [2170076]
+- RDMA/srp: Move large values to a new enum for gcc13 (Kamal Heib) [2170076]
+- IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces (Kamal Heib) [2170076]
+- RDMA/cm: Make QP FLUSHABLE for supported device (Kamal Heib) [2170076]
+- RDMA: Extend RDMA kernel verbs ABI to support flush (Kamal Heib) [2170076]
+- RDMA: Extend RDMA user ABI to support flush (Kamal Heib) [2170076]
+- RDMA/cma: Change RoCE packet life time from 18 to 16 (Kamal Heib) [2170076]
+- RDMA/srp: Fix error return code in srp_parse_options() (Kamal Heib) [2170076]
+- RDMA: Extend RDMA kernel ABI to support atomic write (Kamal Heib) [2170076]
+- RDMA: Extend RDMA user ABI to support atomic write (Kamal Heib) [2170076]
+- RDMA/umem: remove FOLL_FORCE usage (Kamal Heib) [2170076]
+- RDMA/nldev: Fix failure to send large messages (Kamal Heib) [2170076]
+- RDMA/nldev: Add NULL check to silence false warnings (Kamal Heib) [2170076]
+- RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps() (Kamal Heib) [2170076]
+- IB/isert: use the ISCSI_LOGIN_CURRENT_STAGE macro (Kamal Heib) [2170076]
+- RDMA/nldev: Return "-EAGAIN" if the cm_id isn't from expected port (Kamal Heib) [2170076]
+- RDMA/core: Make sure "ib_port" is valid when access sysfs node (Kamal Heib) [2170076]
+- RDMA/restrack: Release MR restrack when delete (Kamal Heib) [2170076]
+- IB/mad: Don't call to function that might sleep while in atomic context (Kamal Heib) [2170076]
+- RDMA/core: Fix order of nldev_exit call (Kamal Heib) [2170076]
+- RDMA/core: fix repeated words in comments (Kamal Heib) [2170076]
+- IB/iser: open code iser_disconnected_handler (Kamal Heib) [2170076]
+- IB/iser: add safety checks for state_mutex lock (Kamal Heib) [2170076]
+- IB/iser: open code iser_conn_state_comp_exch (Kamal Heib) [2170076]
+- RDMA/opa_vnic: fix spelling typo in comment (Kamal Heib) [2170076]
+- RDMA/core: return -EOPNOSUPP for ODP unsupported device (Kamal Heib) [2170076]
+- IB/uverbs: fix the typo of optional (Kamal Heib) [2170076]
+- treewide: use get_random_u32() when possible (Kamal Heib) [2170070]
+- treewide: use prandom_u32_max() when possible, part 1 (Kamal Heib) [2170070]
+- RDMA/core: Clean up a variable name in ib_create_srq_user() (Kamal Heib) [2170070]
+- RDMA/srp: Support more than 255 rdma ports (Kamal Heib) [2170070]
+- RDMA/cm: Use DLID from inbound/outbound PathRecords as the datapath DLID (Kamal Heib) [2170070]
+- RDMA/cma: Multiple path records support with netlink channel (Kamal Heib) [2170070]
+- RDMA/core: Rename rdma_route.num_paths field to num_pri_alt_paths (Kamal Heib) [2170070]
+- RDMA/srpt: Use flex array destination for memcpy() (Kamal Heib) [2170070]
+- IB/cm: Refactor cm_insert_listen() and cm_find_listen() (Kamal Heib) [2170070]
+- IB/cm: remove cm_id_priv->id.service_mask and service_mask parameter of cm_init_listen() (Kamal Heib) [2170070]
+- IB/cm: Remove the service_mask parameter from ib_cm_listen() (Kamal Heib) [2170070]
+- RDMA/core: Remove 'device' argument from rdma_build_skb() (Kamal Heib) [2170070]
+- RDMA/srp: Use the attribute group mechanism for sysfs attributes (Kamal Heib) [2170070]
+- RDMA/srp: Handle dev_set_name() failure (Kamal Heib) [2170070]
+- RDMA/srp: Remove the srp_host.released completion (Kamal Heib) [2170070]
+- RDMA/srp: Rework the srp_add_port() error path (Kamal Heib) [2170070]
+- IB: move from strlcpy with unused retval to strscpy (Kamal Heib) [2170070]
+- treewide: uapi: Replace zero-length arrays with flexible-array members (Kamal Heib) [2170070]
+- RDMA/core: Delete IPsec flow action logic from the core (Kamal Heib) [2170070]
+- net: Don't include filter.h from net/sock.h (Kamal Heib) [2170070]
+- scsi: qla2xxx: Synchronize the IOCB count to be in order (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Perform lockless command completion in abort path (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Use the proper SCSI midlayer interfaces for PI (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Remove the unused variable wwn (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Simplify if condition evaluation (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Use a variable for repeated mem_size computation (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Make qla_trim_buf() and __qla_adjust_buf() static (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix printk() format string (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Update version to 10.02.08.200-k (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Select qpair depending on which CPU post_cmd() gets called (Nilesh Javali) [2164947]
+- scsi: qla2xxx: edif: Fix clang warning (Nilesh Javali) [2164947]
+- scsi: qla2xxx: edif: Reduce memory usage during low I/O (Nilesh Javali) [2164947]
+- scsi: qla2xxx: edif: Fix stall session after app start (Nilesh Javali) [2164947]
+- scsi: qla2xxx: edif: Fix performance dip due to lock contention (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Relocate/rename vp map (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Remove dead code (GNN ID) (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Remove dead code (GPNID) (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Remove dead code (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Update version to 10.02.08.100-k (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix IOCB resource check warning (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Remove increment of interface err cnt (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix erroneous link down (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Remove unintended flag clearing (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix stalled login (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix exchange oversubscription for management commands (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix exchange oversubscription (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix link failure in NPIV environment (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Check if port is online before sending ELS (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Initialize vha->unknown_atio_[list, work] for NPIV hosts (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Remove duplicate of vha->iocb_work initialization (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Remove unused variable 'found_devs' (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix set-but-not-used variable warnings (Nilesh Javali) [2164947]
+- scsi: qla2xxx: Fix memory leak in __qlt_24xx_handle_abts() (Nilesh Javali) [2164947]
+- ethtool: eeprom: fix null-deref on genl_info in dump (Davide Caratti) [2188002]
+- packet: do not set TP_STATUS_CSUM_VALID on CHECKSUM_COMPLETE (Davide Caratti) [2188002]
+- af_key: Fix send_acquire race with pfkey_register (Davide Caratti) [2188002]
+- net: llc: fix skb_over_panic (Davide Caratti) [2188002]
+- inet_ecn: Fix endianness of checksum update when setting ECT(1) (Davide Caratti) [2188002]
+- RDMA/irdma: Fix potential NULL-ptr-dereference (Kamal Heib) [2153377]
+- RDMA/irdma: Split CQ handler into irdma_reg_user_mr_type_cq (Kamal Heib) [2153377]
+- RDMA/irdma: Split QP handler into irdma_reg_user_mr_type_qp (Kamal Heib) [2153377]
+- RDMA/irdma: Split mr alloc and free into new functions (Kamal Heib) [2153377]
+- RDMA/irdma: Split MEM handler into irdma_reg_user_mr_type_mem (Kamal Heib) [2153377]
+- RDMA/irdma: Remove extra ret variable in favor of existing err (Kamal Heib) [2153377]
+- RDMA/irdma: Initialize net_type before checking it (Kamal Heib) [2153377]
+- RDMA/irdma: Do not request 2-level PBLEs for CQ alloc (Kamal Heib) [2153377]
+- RDMA/irdma: Fix RQ completion opcode (Kamal Heib) [2153377]
+- RDMA/irdma: Fix inline for multiple SGE's (Kamal Heib) [2153377]
+- bnxt_en: Fix mqprio and XDP ring checking logic (Ken Cox) [2159222]
+- bnxt: Do not read past the end of test names (Ken Cox) [2159222]
+- bnxt: report FEC block stats via standard interface (Ken Cox) [2159222]
+- bnxt_en: Remove debugfs when pci_register_driver failed (Ken Cox) [2159222]
+- bnxt_en: update RSS config using difference algorithm (Ken Cox) [2159222]
+- bnxt_en: refactor VNIC RSS update functions (Ken Cox) [2159222]
+- bnxt_en: fix potentially incorrect return value for ndo_rx_flow_steer (Ken Cox) [2159222]
+- bnxt_en: Fix possible crash in bnxt_hwrm_set_coal() (Ken Cox) [2159222]
+- bnxt_en: fix the handling of PCIE-AER (Ken Cox) [2159222]
+- bnxt_en: refactor bnxt_cancel_reservations() (Ken Cox) [2159222]
+- bnxt_en: check and resize NVRAM UPDATE entry before flashing (Ken Cox) [2159222]
+- bnxt_en: Update firmware interface to 1.10.2.118 (Ken Cox) [2159222]
+- bnxt_en: replace reset with config timestamps (Ken Cox) [2159222]
+- hugetlbfs: don't delete error page from pagecache (Aristeu Rozanski) [2188334]
+- mm: shmem: don't truncate page if memory failure happens (Aristeu Rozanski) [2188334]
+- mm: hwpoison: handle non-anonymous THP correctly (Aristeu Rozanski) [2188334]
+- mm: hwpoison: refactor refcount check handling (Aristeu Rozanski) [2188334]
+- scsi: qedf: Remove set but unused variable 'page' (Nilesh Javali) [2164955]
+- scsi: qedf: Fix a UAF bug in __qedf_probe() (Nilesh Javali) [2164955]
+- xfs: don't use BMBT btree split workers for IO completion (Carlos Maiolino) [2127493]
+- tools/power turbostat: Add support for MeteorLake platforms (Derek Barbosa) [2153966]
+- x86/bugs: Workaround for incorrectly set X86_BUG_RETBLEED under VMware (Waiman Long) [2184343]
+
+* Thu Apr 27 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-489.el8]
+- nvmet: fix workqueue MEM_RECLAIM flushing dependency (Maurizio Lombardi) [2187618]
+- nvmet: use a private workqueue instead of the system workqueue (Maurizio Lombardi) [2187618]
+- nvme: fix discard support without oncs (Maurizio Lombardi) [2187618]
+- nvme-pci: fix timeout request state check (Maurizio Lombardi) [2187618]
+- nvme: fix multipath crash caused by flush request when blktrace is enabled (Maurizio Lombardi) [2187618]
+- nvme: return err on nvme_init_non_mdts_limits fail (Maurizio Lombardi) [2187618]
+- nvme initialize core quirks before calling nvme_init_subsystem (Maurizio Lombardi) [2187618]
+- nvmet: fix memory leak in nvmet_subsys_attr_model_store_locked (Maurizio Lombardi) [2187618]
+- nvme: quiet user passthrough command errors (Maurizio Lombardi) [2187618]
+- nvme-tcp: fix possible circular locking when deleting a controller under memory pressure (Maurizio Lombardi) [2187618]
+- nvme-hwmon: kmalloc the NVME SMART log buffer (Maurizio Lombardi) [2187618]
+- nvme-hwmon: consistently ignore errors from nvme_hwmon_init (Maurizio Lombardi) [2187618]
+- nvme-pci: disable write zeroes on various Kingston SSD (Maurizio Lombardi) [2187618]
+- nvme-pci: avoid the deepest sleep state on ZHITAI TiPro5000 SSDs (Maurizio Lombardi) [2187618]
+- nvme-rdma: fix possible hang caused during ctrl deletion (Maurizio Lombardi) [2187618]
+- nvmet-tcp: add bounds check on Transfer Tag (Maurizio Lombardi) [2187618]
+- nvmet-tcp: handle ICReq PDU received in NVMET_TCP_Q_LIVE state (Maurizio Lombardi) [2187618]
+- nvme-pci: set min_align_mask before calculating max_hw_sectors (Maurizio Lombardi) [2187618]
+- nvme: enumerate controller flags (Maurizio Lombardi) [2187618]
+- nvme: ensure subsystem reset is single threaded (Maurizio Lombardi) [2187618]
+- nvme: copy firmware_rev on each init (Maurizio Lombardi) [2187618]
+- nvme: restrict management ioctls to admin (Maurizio Lombardi) [2187618]
+- nvme: consider also host_iface when checking ip options (Maurizio Lombardi) [2187618]
+- nvme: move from strlcpy with unused retval to strscpy (Maurizio Lombardi) [2187618]
+- nvme: add comment for unaligned "fake" nqn (Maurizio Lombardi) [2187618]
+- nvme-pci: disable Write Zeroes on Phison E3C/E4C (Maurizio Lombardi) [2187618]
+- nvmet: fix mar and mor off-by-one errors (Maurizio Lombardi) [2187618]
+- nvmet: fix a use-after-free (Maurizio Lombardi) [2187618]
+- nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() (Maurizio Lombardi) [2187618]
+- nvme-fabrics: Fix a typo in an error message (Maurizio Lombardi) [2187618]
+- nvme-fabrics: parse nvme connect Linux error codes (Maurizio Lombardi) [2187618]
+- nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown (Maurizio Lombardi) [2187618]
+- nvme: rename nvme_validate_or_alloc_ns to nvme_scan_ns (Maurizio Lombardi) [2187618]
+- nvme: catch -ENODEV from nvme_revalidate_zones again (Maurizio Lombardi) [2187618]
+- nvme-pci: print the command name of aborted commands (Maurizio Lombardi) [2187618]
+- nvme: use command_id instead of req->tag in trace_nvme_complete_rq() (Maurizio Lombardi) [2187618]
+- nvme-pci: use nvme core helper to cancel requests in tagset (Maurizio Lombardi) [2187618]
+- nvme-tcp: use in-capsule data for I/O connect (Maurizio Lombardi) [2187618]
+- nvme-rdma: remove timeout for getting RDMA-CM established event (Maurizio Lombardi) [2187618]
+- nvmet: parse fabrics commands on io queues (Maurizio Lombardi) [2187618]
+- nvme-fabrics: decode 'authentication required' connect error (Maurizio Lombardi) [2187618]
+- nvme-loop: use nvme core helpers to cancel all requests in a tagset (Maurizio Lombardi) [2187618]
+- nvme: handle the persistent internal error AER (Maurizio Lombardi) [2187618]
+- nvme: remove a double word in a comment (Maurizio Lombardi) [2187618]
+- nvme: use struct group for generic command dwords (Maurizio Lombardi) [2187618]
+- nvme-pci: fix freeze accounting for error handling (Maurizio Lombardi) [2187618]
+- nvmet-tcp: fix regression in data_digest calculation (Maurizio Lombardi) [2187618]
+- nvme: add a bogus subsystem NQN quirk for Micron MTFDKBA2T0TFH (Maurizio Lombardi) [2187618]
+- nvme-pci: disable write zeros support on UMIC and Samsung SSDs (Maurizio Lombardi) [2187618]
+- nvme-pci: avoid the deepest sleep state on ZHITAI TiPro7000 SSDs (Maurizio Lombardi) [2187618]
+- nvme-pci: add trouble shooting steps for timeouts (Maurizio Lombardi) [2187618]
+- nvme: add device name to warning in uuid_show() (Maurizio Lombardi) [2187618]
+- nvmet: fix typo in comment (Maurizio Lombardi) [2187618]
+- nvme: set controller enable bit in a separate write (Maurizio Lombardi) [2187618]
+- nvme: set non-mdts limits in nvme_scan_work (Maurizio Lombardi) [2187618]
+- nvme-pci: harden drive presence detect in nvme_dev_disable() (Maurizio Lombardi) [2187618]
+- nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags (Maurizio Lombardi) [2187618]
+- nvme: mark internal passthru request RQF_QUIET (Maurizio Lombardi) [2187618]
+- nvme: remove unneeded include from constants file (Maurizio Lombardi) [2187618]
+- nvme: set dma alignment to dword (Maurizio Lombardi) [2187618]
+- nvme: fix interpretation of DMRSL (Maurizio Lombardi) [2187618]
+- ixgbe: add double of VLAN header when computing the max MTU (Ken Cox) [2153372]
+- ixgbe: allow to increase MTU to 3K with XDP enabled (Ken Cox) [2153372]
+- ixgbe: Filter out spurious link up indication (Ken Cox) [2153372]
+- ixgbe: XDP: fix checker warning from rcu pointer (Ken Cox) [2153372]
+- ixgbe: fix pci device refcount leak (Ken Cox) [2153372]
+- ixgbe: change MAX_RXD/MAX_TXD based on adapter type (Ken Cox) [2153372]
+- tracing: kprobes: Prohibit probing on notrace function (Mukesh Chaurasiya) [2183475]
+- powerpc/kprobes: Ignore traps that happened in real mode (Mukesh Chaurasiya) [2183475]
+- nvme-rdma: handle number of queue changes (Kamal Heib) [2160665]
+- nvme-rdma: remove timeout for getting RDMA-CM established event (Kamal Heib) [2160665]
+- nvmet-rdma: fix kernel-doc warning for nvmet_rdma_device_removal (Kamal Heib) [2160665]
+- net: mpls: fix stale pointer if allocation fails during device rename (Guillaume Nault) [2184956] {CVE-2023-26545}
+- block: don't set GD_NEED_PART_SCAN if scan partition failed (Ming Lei) [2151112]
+- block: fix wrong mode for blkdev_put() from disk_scan_partitions() (Ming Lei) [2151112]
+- block: fix scan partition for exclusively open device again (Ming Lei) [2151112]
+- mm: swap: get rid of livelock in swapin readahead (Aristeu Rozanski) [2035182 2182084]
+- redhat: require reasonably recent grub2 _only_ if grub2 is already installed (Denys Vlasenko) [2183531]
+- i40e: Fix kernel crash during reboot when adapter is in recovery mode (Stefan Assmann) [2153348]
+- i40e: add double of VLAN header when computing the max MTU (Stefan Assmann) [2153348]
+- i40e: Add checking for null for nlmsg_find_attr() (Stefan Assmann) [2153348]
+- net/i40e: Replace 0-length array with flexible array (Stefan Assmann) [2153348]
+- i40e: use ERR_PTR error print in i40e messages (Stefan Assmann) [2153348]
+- i40e: use int for i40e_status (Stefan Assmann) [2153348]
+- i40e: Remove string printing for i40e_status (Stefan Assmann) [2153348]
+- i40e: Remove unused i40e status codes (Stefan Assmann) [2153348]
+- net/sched: move struct tc_mqprio_qopt_offload from pkt_cls.h to pkt_sched.h (Stefan Assmann) [2153348]
+- i40e: Remove redundant pci_enable_pcie_error_reporting() (Stefan Assmann) [2153348]
+- virtchnl: i40e/iavf: rename iwarp to rdma (Stefan Assmann) [2153348]
+- treewide: Convert del_timer*() to timer_shutdown*() (Stefan Assmann) [2153348]
+- i40e: allow toggling loopback mode via ndo_set_features callback (Stefan Assmann) [2153348]
+- i40e: Disallow ip4 and ip6 l4_4_bytes (Stefan Assmann) [2153348]
+- i40e: Fix for VF MAC address 0 (Stefan Assmann) [2153348]
+- i40e: Fix not setting default xps_cpus after reset (Stefan Assmann) [2153348]
+- dm: fix __send_duplicate_bios() to always allow for splitting IO (Benjamin Marzinski) [2183559]
+- dm: fix improper splitting for abnormal bios (Benjamin Marzinski) [2183559]
+- dm: remove unnecessary (void*) conversion in event_callback() (Benjamin Marzinski) [2179207]
+- dm ioctl: remove unnecessary check when using dm_get_mdptr() (Benjamin Marzinski) [2179207]
+- dm ioctl: assert _hash_lock is held in __hash_remove (Benjamin Marzinski) [2179207]
+- dm cache: add cond_resched() to various workqueue loops (Benjamin Marzinski) [2179207]
+- dm thin: add cond_resched() to various workqueue loops (Benjamin Marzinski) [2179207]
+- dm: add cond_resched() to dm_wq_work() (Benjamin Marzinski) [2179207]
+- dm: update targets using system workqueues to use a local workqueue (Benjamin Marzinski) [2179207]
+- dm: remove flush_scheduled_work() during local_exit() (Benjamin Marzinski) [2179207]
+- dm: declare variables static when sensible (Benjamin Marzinski) [2179207]
+- dm ioctl: prefer strscpy() instead of strlcpy() (Benjamin Marzinski) [2179207]
+- dm: avoid 'do {} while(0)' loop in single statement macros (Benjamin Marzinski) [2179207]
+- dm: favour __packed versus "__attribute__ ((packed))" (Benjamin Marzinski) [2179207]
+- dm: favour __aligned(N) versus "__attribute__ (aligned(N))" (Benjamin Marzinski) [2179207]
+- dm: adjust EXPORT_SYMBOL() to follow functions immediately (Benjamin Marzinski) [2179207]
+- dm block-manager: avoid not required parentheses (Benjamin Marzinski) [2179207]
+- dm: send just one event on resize, not two (Benjamin Marzinski) [2179207]
+- dm table: check that a dm device doesn't reference itself (Benjamin Marzinski) [2179207]
+- dm raid: fix some spelling mistakes in comments (Benjamin Marzinski) [2179207]
+- dm verity: stop using WQ_UNBOUND for verify_wq (Benjamin Marzinski) [2179207]
+- dm integrity: Remove bi_sector that's only used by commented debug code (Benjamin Marzinski) [2179207]
+- dm crypt: Slightly simplify crypt_set_keyring_key() (Benjamin Marzinski) [2179207]
+- dm ioctl: drop always-false condition (Benjamin Marzinski) [2179207]
+- dm flakey: fix logic when corrupting a bio (Benjamin Marzinski) [2179207]
+- dm flakey: fix a bug with 32-bit highmem systems (Benjamin Marzinski) [2179207]
+- dm flakey: don't corrupt the zero page (Benjamin Marzinski) [2179207]
+- dm cache: Add some documentation to dm-cache-background-tracker.h (Benjamin Marzinski) [2179207]
+- dm cache: free background tracker's queued work in btracker_destroy (Benjamin Marzinski) [2179207]
+- dm ioctl: fix a couple ioctl codes (Benjamin Marzinski) [2179207]
+- dm ioctl: a small code cleanup in list_version_get_info (Benjamin Marzinski) [2179207]
+- sfc: include vport_id in filter spec hash and equal() (Íñigo Huguet) [2159251]
+- ptp: convert remaining drivers to adjfine interface (Íñigo Huguet) [2159251]
+- sfc: Use kmap_local_page() instead of kmap_atomic() (Íñigo Huguet) [2159251]
+- sfc: use sysfs_emit() to instead of scnprintf() (Íñigo Huguet) [2159251]
+- selftests: forwarding: add tunnel_key "nofrag" test case (Davide Caratti) [2103797]
+- selftests: tc-testing: add tunnel_key "nofrag" test case (Davide Caratti) [2103797]
+- selftests: tc-testing: add "depends_on" property to skip tests (Davide Caratti) [2103797]
+- net/sched: act_tunnel_key: add support for "don't fragment" (Davide Caratti) [2103797]
+- e1000e: Fix TX dispatch condition (Ken Cox) [2153313]
+- e1000e: Separate MTP board type from ADP (Ken Cox) [2153313]
+- drivers/net/ethernet/e1000e: check return value of e1e_rphy() (Ken Cox) [2153313]
+- ipvs: add sysctl_run_estimation to support disable estimation (Hangbin Liu) [2182003]
+- scsi: ses: Don't attach if enclosure has no components (Tomas Henzl) [1975026]
+- scsi: ses: Fix slab-out-of-bounds in ses_intf_remove() (Tomas Henzl) [1975026]
+- scsi: ses: Fix possible desc_ptr out-of-bounds accesses (Tomas Henzl) [1975026]
+- scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses (Tomas Henzl) [1975026]
+- scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process() (Tomas Henzl) [1975026]
+- vmxnet3: move rss code block under eop descriptor (Izabela Bakollari) [2172579]
+
+* Fri Apr 21 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-488.el8]
+- crypto: qat - add support for 402xx devices (Vladis Dronov) [2144529]
+- crypto: qat - drop log level of msg in get_instance_node() (Vladis Dronov) [2144529]
+- crypto: qat - fix out-of-bounds read (Vladis Dronov) [2144529]
+- Documentation: qat: change kernel version (Vladis Dronov) [2144529]
+- crypto: qat - add qat_zlib_deflate (Vladis Dronov) [2144529]
+- crypto: qat - extend buffer list logic interface (Vladis Dronov) [2144529]
+- crypto: qat - fix spelling mistakes from 'bufer' to 'buffer' (Vladis Dronov) [2144529]
+- crypto: qat - add resubmit logic for decompression (Vladis Dronov) [2144529]
+- crypto: acomp - define max size for destination (Vladis Dronov) [2144529]
+- crypto: qat - enable deflate for QAT GEN4 (Vladis Dronov) [2144529]
+- crypto: qat - expose deflate through acomp api for QAT GEN2 (Vladis Dronov) [2144529]
+- crypto: qat - rename and relocate GEN2 config function (Vladis Dronov) [2144529]
+- crypto: qat - relocate qat_algs_alloc_flags() (Vladis Dronov) [2144529]
+- crypto: qat - relocate backlog related structures (Vladis Dronov) [2144529]
+- crypto: qat - extend buffer list interface (Vladis Dronov) [2144529]
+- crypto: qat - generalize crypto request buffers (Vladis Dronov) [2144529]
+- crypto: qat - change bufferlist logic interface (Vladis Dronov) [2144529]
+- crypto: qat - rename bufferlist functions (Vladis Dronov) [2144529]
+- crypto: qat - relocate bufferlist logic (Vladis Dronov) [2144529]
+- crypto: qat - Use helper to set reqsize (Vladis Dronov) [2144529]
+- crypto: kpp - Add helper to set reqsize (Vladis Dronov) [2144529]
+- crypto: qat - fix error return code in adf_probe (Vladis Dronov) [2144529]
+- crypto: qat - remove ADF_STATUS_PF_RUNNING flag from probe (Vladis Dronov) [2144529]
+- selftests: net: rps_default_mask.sh: delete veth link specifically (Hangbin Liu) [2185801]
+- selftests: net: devlink_port_split.py: skip test if no suitable device available (Hangbin Liu) [2185801]
+- selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is operational (Hangbin Liu) [2185801]
+- selftests/tls: Add {} to avoid static checker warning (Hangbin Liu) [2185801]
+- selftests: nft_nat: ensuring the listening side is up before starting the client (Hangbin Liu) [2185801]
+- selftest: fib_tests: Always cleanup before exit (Hangbin Liu) [2185801]
+- selftests/net: Interpret UDP_GRO cmsg data as an int value (Hangbin Liu) [2185801]
+- selftests: forwarding: lib: quote the sysctl values (Hangbin Liu) [2185801]
+- selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy benchmarking (Hangbin Liu) [2185801]
+- selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs (Hangbin Liu) [2185801]
+- selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided (Hangbin Liu) [2185801]
+- selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning (Hangbin Liu) [2185801]
+- selftests: rtnetlink: correct xfrm policy rule in kci_test_ipsec_offload (Hangbin Liu) [2185801]
+- selftests: forwarding: Fix failing tests with old libnet (Hangbin Liu) [2185801]
+- powerpc/pseries/mobility: set NMI watchdog factor during an LPM (Mamatha Inamdar) [2186026]
+- powerpc/watchdog: introduce a NMI watchdog's factor (Mamatha Inamdar) [2186026]
+- watchdog: export lockup_detector_reconfigure (Mamatha Inamdar) [2186026]
+- powerpc/mobility: wait for memory transfer to complete (Mamatha Inamdar) [2186026]
+- crypto: drbg - Only fail when jent is unavailable in FIPS mode (Vladis Dronov) [2175712]
+- crypto: jitter - permanent and intermittent health errors (Vladis Dronov) [2175712]
+- crypto: jitter - quit sample collection loop upon RCT failure (Vladis Dronov) [2175712]
+- crypto: jitter - don't limit ->health_failure check to FIPS mode (Vladis Dronov) [2175712]
+- crypto: jitter - drop kernel-doc notation (Vladis Dronov) [2175712]
+- selftests/livepatch: normalize sysctl error message (Julia Denham) [RHEL-256]
+- livepatch: Skip livepatch tests if ftrace cannot be configured (Julia Denham) [RHEL-256]
+- livepatch: Add a missing newline character in klp_module_coming() (Julia Denham) [RHEL-256]
+- livepatch: fix race between fork and KLP transition (Julia Denham) [RHEL-256]
+- scsi: bnx2i: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Nilesh Javali) [2164956]
+- x86/xen: Split HVM vector callback setup and interrupt gate allocation (Prarit Bhargava) [2187810]
+- s390/uaccess: add missing earlyclobber annotations to __clear_user() (Tobias Huschle) [2183078]
+- s390/qeth: fix use-after-free in hsci (Tobias Huschle) [2183992]
+- SUNRPC: Fix a server shutdown leak (Benjamin Coddington) [2166107]
+- powerpc/pseries/vas: Ignore VAS update for DLPAR if copy/paste is not enabled (Mamatha Inamdar) [2184979]
+- cnic: don't pass bogus GFP_ flags to dma_alloc_coherent (Nilesh Javali) [2164958]
+- cnic: Use the bitmap API to allocate bitmaps (Nilesh Javali) [2164958]
+
+* Tue Apr 18 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-487.el8]
+- perf vendor events intel: Add uncore event list for Sapphirerapids (Michael Petlan) [2180657]
+- perf vendor events intel: Add metrics for Sapphirerapids (Michael Petlan) [2180657]
+- perf vendor events intel: Update core event list for Sapphirerapids (Michael Petlan) [2180657]
+- perf vendor events intel: Add sapphirerapids events (Michael Petlan) [2180657]
+- perf vendor events intel: Update metrics for Alderlake (Michael Petlan) [2180656]
+- perf vendor events: Fix Alderlake metric groups (Michael Petlan) [2180656]
+- perf vendor events intel: Add metrics for Alderlake (Michael Petlan) [2180656]
+- perf/x86/rapl: Add support for Intel Raptor Lake (Michael Petlan) [2180654]
+- perf/x86/intel: Add Cooper Lake stepping to isolation_ucodes[] (Michael Petlan) [2153896]
+- perf/x86/intel/cstate: Add Emerald Rapids (Michael Petlan) [2156802]
+- perf/x86/intel: Add Emerald Rapids (Michael Petlan) [2156802]
+- perf/x86/intel/uncore: Add Emerald Rapids (Michael Petlan) [2156802]
+- perf/x86/msr: Add Emerald Rapids (Michael Petlan) [2156802]
+- perf/x86/msr: Add Sapphire Rapids CPU support (Michael Petlan) [2156802]
+- perf/x86/intel/uncore: Add Meteor Lake support (Michael Petlan) [2177039]
+- perf/x86/msr: Add Meteor Lake support (Michael Petlan) [2153962]
+- perf/x86/cstate: Add Meteor Lake support (Michael Petlan) [2153962]
+- perf/x86/intel: Support Architectural PerfMon Extension leaf (Michael Petlan) [2153962]
+- x86/cpufeatures: Add Architectural PerfMon Extension bit (Michael Petlan) [2153962]
+- perf/x86: Support Retire Latency (Michael Petlan) [2153962]
+- perf/x86: Add Meteor Lake support (Michael Petlan) [2153962]
+- perf: Add PMU_FORMAT_ATTR_SHOW (Michael Petlan) [2153962]
+- mm/hugetlb: add dedicated func to get 'allowed' nodemask for current process (Rafael Aquini) [2153926]
+- mm/hugetlb: simplify the calculation of variables (Rafael Aquini) [2153926]
+- mm/mempolicy: fix lock contention on mems_allowed (Rafael Aquini) [2153926]
+- mm/mempolicy: do not allow illegal MPOL_F_NUMA_BALANCING | MPOL_LOCAL in mbind() (Rafael Aquini) [2153926]
+- mm/mempolicy.c: use in_task() in mempolicy_slab_node() (Rafael Aquini) [2153926]
+- mm/mempolicy: unify the create() func for bind/interleave/prefer-many policies (Rafael Aquini) [2153926]
+- mm/mempolicy: advertise new MPOL_PREFERRED_MANY (Rafael Aquini) [2153926]
+- mm/hugetlb: add support for mempolicy MPOL_PREFERRED_MANY (Rafael Aquini) [2153926]
+- mm/memplicy: add page allocation function for MPOL_PREFERRED_MANY policy (Rafael Aquini) [2153926]
+- mm/mempolicy: add MPOL_PREFERRED_MANY for multiple preferred nodes (Rafael Aquini) [2153926]
+- mm/mempolicy: use readable NUMA_NO_NODE macro instead of magic number (Rafael Aquini) [2153926]
+- mm/mempolicy: unify the parameter sanity check for mbind and set_mempolicy (Rafael Aquini) [2153926]
+- mm/mempolicy: use unified 'nodes' for bind/interleave/prefer policies (Rafael Aquini) [2153926]
+- mm/mempolicy: don't handle MPOL_LOCAL like a fake MPOL_PREFERRED policy (Rafael Aquini) [2153926]
+- mm/mempolicy: cleanup nodemask intersection check for oom (Rafael Aquini) [2153926]
+- mm/mempolicy: fix mpol_misplaced kernel-doc (Rafael Aquini) [2153926]
+- numa balancing: migrate on fault among multiple bound nodes (Rafael Aquini) [2153926]
+- mm/hugetlb: add mempolicy check in the reservation routine (Rafael Aquini) [2153926]
+- mm: remove unused alloc_page_vma_node() (Rafael Aquini) [2153926]
+- mm/mempolicy: remove or narrow the lock on current (Rafael Aquini) [2153926]
+- mm, mempolicy: fix uninit memory access (Rafael Aquini) [2153926]
+- mm/mempool: minor coding style tweaks (Rafael Aquini) [2153926]
+- mm: fix typos in comments (Rafael Aquini) [2153926]
+- futex: Do not apply time namespace adjustment on FUTEX_LOCK_PI (Joel Savitz) [2170113]
+- Revert 337f13046ff0 ("futex: Allow FUTEX_CLOCK_REALTIME with FUTEX_WAIT op") (Joel Savitz) [2170113]
+- kernel, fs: Introduce and use set_restart_fn() and arch_set_restart_data() (Joel Savitz) [2170113]
+- futex: Remove unneeded gotos (Joel Savitz) [2170113]
+- rtmutex: Ensure that the top waiter is always woken up (Joel Savitz) [2170113]
+- rtmutex: Add acquire semantics for rtmutex lock acquisition slow path (Joel Savitz) [2170113]
+- locking/lockdep: Fix lockdep_init_map_*() confusion (Joel Savitz) [2170113]
+- locking/lockdep: Avoid potential access of invalid memory in lock_class (Joel Savitz) [2170113]
+- lockdep: Correct lock_classes index mapping (Joel Savitz) [2170113]
+- locking/rtmutex: Squash self-deadlock check for ww_rt_mutex. (Joel Savitz) [2170113]
+- locking/rtmutex: Fix incorrect condition in rtmutex_spin_on_owner() (Joel Savitz) [2170113]
+- kallsyms: remove arch specific text and data check (Joel Savitz) [2170113]
+- lockdep: Let lock_is_held_type() detect recursive read as read (Joel Savitz) [2170113]
+- lockdep: Fix wait-type for empty stack (Joel Savitz) [2170113]
+- locking/lockdep: Improve noinstr vs errors (Joel Savitz) [2170113]
+- locking/lockdep: Correct calling tracepoints (Joel Savitz) [2170113]
+- locking/percpu-rwsem: Use this_cpu_{inc,dec}() for read_count (Joel Savitz) [2170113]
+- locking/ww_mutex: Fix runtime warning in the WW mutex selftest (Joel Savitz) [2170113]
+- fortify: Do not cast to "unsigned char" (Josef Oskera) [2139487]
+- fortify: Use SIZE_MAX instead of (size_t)-1 (Josef Oskera) [2139487]
+- afs: Work around strnlen() oops with CONFIG_FORTIFIED_SOURCE=y (Josef Oskera) [2139487]
+- net/mlx4_en: Introduce flexible array to silence overflow warning (Josef Oskera) [2139487]
+- wusbcore: silence fortify warning (Josef Oskera) [2139487]
+- skbuff: Switch structure bounds to struct_group() (Josef Oskera) [2139487]
+- RDMA/cxgb4: fix accept failure due to increased cpl_t5_pass_accept_rpl size (Josef Oskera) [2139487]
+- intel_th: msu: Use memset_startat() for clearing hw header (Josef Oskera) [2139487]
+- dm integrity: Use struct_group() to zero struct journal_sector (Josef Oskera) [2139487]
+- iw_cxgb4: Use memset_startat() for cpl_t5_pass_accept_rpl (Josef Oskera) [2139487]
+- scsi: lpfc: Use struct_group() to initialize struct lpfc_cgn_info (Josef Oskera) [2139487]
+- netfilter: conntrack: Use memset_startat() to zero struct nf_conn (Josef Oskera) [2139487]
+- netfilter: conntrack: avoid gcc-10 zero-length-bounds warning (Josef Oskera) [2139487]
+- thermal: int340x: Use struct_group() for memcpy() region (Josef Oskera) [2139487]
+- net/af_iucv: Use struct_group() to zero struct iucv_sock region (Josef Oskera) [2139487]
+- ipv6: Use memset_after() to zero rt6_info (Josef Oskera) [2139487]
+- bnx2x: Use struct_group() for memcpy() region (Josef Oskera) [2139487]
+- tracing: Use memset_startat() to zero struct trace_iterator (Josef Oskera) [2139487]
+- xfrm: Use memset_after() to clear padding (Josef Oskera) [2139487]
+- HID: roccat: Use struct_group() to zero kone_mouse_event (Josef Oskera) [2139487]
+- scsi: ibmvscsi: Avoid multi-field memset() overflow by aiming at srp (Josef Oskera) [2139487]
+- ipv4: ip_output.c: Fix out-of-bounds warning in ip_copy_addrs() (Josef Oskera) [2139487]
+- media: ngene: Fix out-of-bounds bug in ngene_command_config_free_buf() (Josef Oskera) [2139487]
+- s390/zcrypt: Switch to flexible array member (Josef Oskera) [2139487]
+- s390/speculation: Use statically initialized const for instructions (Josef Oskera) [2139487]
+- cifs: avoid extra calls in posix_info_parse (Josef Oskera) [2139487]
+- x86/entry: Fixup bad_iret vs noinstr (Josef Oskera) [2139487]
+- x86/traps: Mark fixup_bad_iret() noinstr (Josef Oskera) [2139487]
+- x86/doublefault: Remove memmove() call (Josef Oskera) [2139487]
+- tracing: Initialize iter->seq after zeroing in tracing_read_pipe() (Josef Oskera) [2139487]
+- tracing: Silence GCC 9 array bounds warning (Josef Oskera) [2139487]
+- fortify: Fix __compiletime_strlen() under UBSAN_BOUNDS_LOCAL (Josef Oskera) [2139487]
+- fortify: Provide a memcpy trap door for sharp corners (Josef Oskera) [2139487]
+- fortify: Make pointer arguments const (Josef Oskera) [2139487]
+- fortify: Replace open-coded __gnu_inline attribute (Josef Oskera) [2139487]
+- fortify: Update compile-time tests for Clang 14 (Josef Oskera) [2139487]
+- fortify: Detect struct member overflows in memset() at compile-time (Josef Oskera) [2139487]
+- fortify: Detect struct member overflows in memmove() at compile-time (Josef Oskera) [2139487]
+- fortify: Detect struct member overflows in memcpy() at compile-time (Josef Oskera) [2139487]
+- fortify: strlen: Avoid shadowing previous locals (Josef Oskera) [2139487]
+- fortify: Add compile-time FORTIFY_SOURCE tests (Josef Oskera) [2139487]
+- fortify: Allow strlen() and strnlen() to pass compile-time known lengths (Josef Oskera) [2139487]
+- fortify: Prepare to improve strnlen() and strlen() warnings (Josef Oskera) [2139487]
+- fortify: Fix dropped strcpy() compile-time write overflow check (Josef Oskera) [2139487]
+- fortify: Explicitly disable Clang support (Josef Oskera) [2139487]
+- fortify: Move remaining fortify helpers into fortify-string.h (Josef Oskera) [2139487]
+- lib/string: Move helper functions out of string.c (Josef Oskera) [2139487]
+- lib/string.c: update match_string() doc-strings with correct behavior (Josef Oskera) [2139487]
+- string.h: move fortified functions definitions in a dedicated header. (Josef Oskera) [2139487]
+- string.h: add FORTIFY coverage for strscpy() (Josef Oskera) [2139487]
+- lib: string.h: detect intra-object overflow in fortified string functions (Josef Oskera) [2139487]
+- lib: string_helpers: provide kfree_strarray() (Josef Oskera) [2139487]
+- lib/string.c: implement stpcpy (Josef Oskera) [2139487]
+- kernel-doc: core-api: include string.h into core-api (Josef Oskera) [2139487]
+- docs/core-api: move *{str,mem}dup* to "String Manipulation" (Josef Oskera) [2139487]
+- selftests/tc-testing: add show class case for red qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add show class case for prio qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add show class case for mq qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add show class case for ingress qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for qfq qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for netem qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for multiq qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for mqprio qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for htb qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for hfsc qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for fq_codel qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for dsmark qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for drr qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for cbs qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for cbq qdisc (Ivan Vecera) [2172130]
+- selftests/tc-testing: add selftests for cake qdisc (Ivan Vecera) [2172130]
+- net/sched: use tc_qdisc_stats_dump() in qdisc (Ivan Vecera) [2172130]
+- net/sched: sch_api: add helper for tc qdisc walker stats dump (Ivan Vecera) [2172130]
+- hwrng: core - use per-rng quality value instead of global setting (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - start and stop in-kernel rngd in separate function (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - do not bother to order list of devices by quality (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - credit entropy for low quality sources of randomness (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - break out of hwrng_fillfn if current rng is not trusted (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - only set cur_rng_set_by_user if it is working (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - use rng_fillbuf in add_early_randomness() (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - read() callback must be called for size of 32 or more bytes (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - explicit ordering of initcalls (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - Use DEVICE_ATTR_<RW|RO> macro (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - remove redundant initialization of variable err (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - convert sysfs sprintf/snprintf family to sysfs_emit (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - remove redundant initialization of variable ret (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - Fix use-after-free warning in hwrng_register() (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - move add_early_randomness() out of rng_mutex (Jose Ignacio Tornos Martinez) [2172884]
+- hwrng: core - document the quality field (Jose Ignacio Tornos Martinez) [2172884]
+- netfilter: nf_conntrack: allow early drop of offloaded UDP conns (Florian Westphal) [2183080]
+- net/sched: act_ct: offload UDP NEW connections (Florian Westphal) [2183080]
+- net/sched: act_ct: set ctinfo in meta action depending on ct state (Florian Westphal) [2183080]
+- netfilter: flowtable: cache info of last offload (Florian Westphal) [2183080]
+- netfilter: flowtable: allow unidirectional rules (Florian Westphal) [2183080]
+- netfilter: flowtable: fixup UDP timeout depending on ct state (Florian Westphal) [2183080]
+- ptp_clock: Let the ADJ_OFFSET interface respect the ADJ_NANO flag for PHC devices. (Íñigo Huguet) [2180896]
+- ptp: Add adjust_phase to ptp_clock_caps capability. (Íñigo Huguet) [2180896]
+- ptp: Add adjphase function to support phase offset control. (Íñigo Huguet) [2180896]
+- kernfs: dont take d_lock on revalidate (Ian Kent) [2126350]
+- kernfs: dont take i_lock on inode attr read (Ian Kent) [2126350]
+- kernfs: remove redundant kernfs_rwsem declaration. (Ian Kent) [2126350]
+- kernfs: fix potential NULL dereference in __kernfs_remove (Ian Kent) [2126350]
+- kernfs: fix NULL dereferencing in kernfs_remove (Ian Kent) [2126350]
+- kernfs: prevent early freeing of root node (Ian Kent) [2126350]
+- kernfs: switch global kernfs_rwsem lock to per-fs lock (Ian Kent) [2126350]
+- workqueue: Fold rebind_worker() within rebind_workers() (Valentin Schneider) [2088578]
+- workqueue: Unbind kworkers before sending them to exit() (Valentin Schneider) [2088578]
+- workqueue: Don't hold any lock while rcuwait'ing for !POOL_MANAGER_ACTIVE (Valentin Schneider) [2088578]
+- workqueue: Convert the idle_timer to a timer + work_struct (Valentin Schneider) [2088578]
+- workqueue: Factorize unbind/rebind_workers() logic (Valentin Schneider) [2088578]
+- workqueue: Protects wq_unbound_cpumask with wq_pool_attach_mutex (Valentin Schneider) [2088578]
+- workqueue: make sysfs of unbound kworker cpumask more clever (Valentin Schneider) [2088578]
+- fuse: add feature flag for expire-only (Pavel Reichl) [2109496]
+- fuse: add "expire only" mode to FUSE_NOTIFY_INVAL_ENTRY (Pavel Reichl) [2109496]
+- fuse: extend init flags (Pavel Reichl) [2109496]
+- wifi: iwlwifi: mvm: protect TXQ list manipulation (Jose Ignacio Tornos Martinez) [2152168]
+- wifi: iwlwifi: mvm: fix mvmtxq->stopped handling (Jose Ignacio Tornos Martinez) [2152168]
+- thunderbolt: Explicitly enable lane adapter hotplug events at startup (Desnes Nunes) [2130062]
+- x86/tsc: Add option to force frequency recalibration with HW timer (Prarit Bhargava) [2100597]
+- ovl: fix use after free in struct ovl_aio_req (Miklos Szeredi) [2176159] {CVE-2023-1252}
+
+* Thu Apr 13 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-486.el8]
+- mm/memremap: fix missing call to untrack_pfn() in pagemap_range() (Nico Pache) [2168370]
+- arm64: mm: correct the inside linear map range during hotplug check (Nico Pache) [2168370]
+- s390/mm: define arch_get_mappable_range() (Nico Pache) [2168370]
+- arm64/mm: define arch_get_mappable_range() (Nico Pache) [2168370]
+- mm/memory_hotplug: prevalidate the address range being added with platform (Nico Pache) [2168370]
+- s390/extmem: return correct segment type in __segment_load() (Nico Pache) [2168370]
+- s390/vmem: get rid of memory segment list (Nico Pache) [2168370]
+- arm64/mm: Validate hotplug range before creating linear mapping (Nico Pache) [2168370]
+- mm/truncate.c: make __invalidate_mapping_pages() static (Nico Pache) [2168370]
+- powerpc/mm: fix "section_base" set but not used (Nico Pache) [2168370]
+- powerpc: Avoid link stack corruption in misc asm functions (Nico Pache) [2168370]
+- powerpc/booke: Avoid link stack corruption in several places (Nico Pache) [2168370]
+- powerpc/mm: Fix lockup on kernel exec fault (Nico Pache) [2168370]
+- x86: fix seq_file iteration for pat/memtype.c (Nico Pache) [2168370]
+- powerpc/book3s64/hash: Add cond_resched to avoid soft lockup warning (Nico Pache) [2168370]
+- powerpc/nvdimm: Update vmemmap_populated to check sub-section range (Nico Pache) [2168370]
+- powerpc/pseries: Fix cpu_hotplug_lock acquisition in resize_hpt() (Nico Pache) [2168370]
+- x86/mm: Sync also unmappings in vmalloc_sync_all() (Nico Pache) [2168370]
+- Fix page corruption caused by racy check in __free_pages (Nico Pache) [2168370]
+- mm/gup: fix gup_pud_range() for dax (Nico Pache) [2168370]
+- memcg: Fix possible use-after-free in memcg_write_event_control() (Nico Pache) [2168370]
+- mm/huge_memory: use pfn_to_online_page() in split_huge_pages_all() (Nico Pache) [2168370]
+- mm: fix madivse_pageout mishandling on non-LRU page (Nico Pache) [2168370]
+- mm/page_alloc: fix race condition between build_all_zonelists and page allocation (Nico Pache) [2168370]
+- mm/slub: fix to return errno if kmalloc() fails (Nico Pache) [2168370]
+- writeback: avoid use-after-free after removing device (Nico Pache) [2168370]
+- x86/mm: Use proper mask when setting PUD mapping (Nico Pache) [2168370]
+- mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region (Nico Pache) [2168370]
+- mm/hmm: fault non-owner device private entries (Nico Pache) [2168370]
+- mm: split huge PUD on wp_huge_pud fallback (Nico Pache) [2168370]
+- mm/page_owner: use strscpy() instead of strlcpy() (Nico Pache) [2168370]
+- mm/vmscan: take min_slab_pages into account when try to call shrink_node (Nico Pache) [2168370]
+- x86: Fix return value of __setup handlers (Nico Pache) [2168370]
+- mm: fix unexpected zeroed page mapping with zram swap (Nico Pache) [2168370]
+- mm, page_alloc: fix build_zonerefs_node() (Nico Pache) [2168370]
+- mm/mempolicy: fix mpol_new leak in shared_policy_replace (Nico Pache) [2168370]
+- mm/slub: remove forced_order parameter in calculate_sizes (Nico Pache) [2168370]
+- mm/usercopy: return 1 from hardened_usercopy __setup() handler (Nico Pache) [2168370]
+- mm/thp: ClearPageDoubleMap in first page_add_file_rmap() (Nico Pache) [2168370]
+- mm/thp: refix __split_huge_pmd_locked() for migration PMD (Nico Pache) [2168370]
+- mempolicy: mbind_range() set_policy() after vma_merge() (Nico Pache) [2168370]
+- mm/pages_alloc.c: don't create ZONE_MOVABLE beyond the end of a node (Nico Pache) [2168370]
+- mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and __mcopy_atomic() (Nico Pache) [2168370]
+- mm: hugetlb: fix missing cache flush in copy_huge_page_from_user() (Nico Pache) [2168370]
+- mm: thp: fix wrong cache flush in remove_migration_pmd() (Nico Pache) [2168370]
+- mm: fix missing cache flush for all tail pages of compound page (Nico Pache) [2168370]
+- tmpfs: fix regressions from wider use of ZERO_PAGE (Nico Pache) [2168370]
+- tmpfs: do not allocate pages on read (Nico Pache) [2168370]
+- shmem: mapping_set_exiting() to help mapped resilience (Nico Pache) [2168370]
+- mm/hmm.c: allow VM_MIXEDMAP to work with hmm_range_fault (Nico Pache) [2168370]
+- shmem: fix a race between shmem_unused_huge_shrink and shmem_evict_inode (Nico Pache) [2168370]
+- mm, slub: use prefetchw instead of prefetch (Nico Pache) [2168370]
+- arm64: mm: update max_pfn after memory hotplug (Nico Pache) [2168370]
+- mm, vmscan: guarantee drop_slab_node() termination (Nico Pache) [2168370]
+- fs, mm: fix race in unlinking swapfile (Nico Pache) [2168370]
+- fs: inode: count invalidated shadow pages in pginodesteal (Nico Pache) [2168370]
+- mm, fadvise: improve the expensive remote LRU cache draining after FADV_DONTNEED (Nico Pache) [2168370]
+- mm/filemap.c: rewrite mapping_needs_writeback in less fancy manner (Nico Pache) [2168370]
+- fs: drop_caches: fix skipping over shadow cache inodes (Nico Pache) [2168370]
+- mm: introduce and use mapping_empty() (Nico Pache) [2168370]
+- mm: remove irqsave/restore locking from contexts with irqs enabled (Nico Pache) [2168370]
+- mm: zswap: clean up confusing comment (Nico Pache) [2168370]
+- mm/memory_hotplug: use helper function zone_end_pfn() to get end_pfn (Nico Pache) [2168370]
+- mm: vmstat: add some comments on internal storage of byte items (Nico Pache) [2168370]
+- mm: vmstat: fix NOHZ wakeups for node stat changes (Nico Pache) [2168370]
+- mm/mmap.c: replace do_brk with do_brk_flags in comment of insert_vm_struct() (Nico Pache) [2168370]
+- mm/mmap.c: use helper function allow_write_access() in __remove_shared_vm_struct() (Nico Pache) [2168370]
+- mm: use helper function mapping_allow_writable() (Nico Pache) [2168370]
+- mm: memcontrol: reword obsolete comment of mem_cgroup_unmark_under_oom() (Nico Pache) [2168370]
+- mm/page_counter: correct the obsolete func name in the comment of page_counter_try_charge() (Nico Pache) [2168370]
+- mm: memcontrol: correct the comment of mem_cgroup_iter() (Nico Pache) [2168370]
+- x86/mm: use max memory block size on bare metal (Nico Pache) [2168370]
+- mm/util.c: remove the VM_WARN_ONCE for vm_committed_as underflow check (Nico Pache) [2168370]
+- include/linux/swapops.h: correct guards for non_swap_entry() (Nico Pache) [2168370]
+- mm: set vm_next and vm_prev to NULL in vm_area_dup() (Nico Pache) [2168370]
+- mm: don't prepare anon_vma if vma has VM_WIPEONFORK (Nico Pache) [2168370]
+- page-flags: fix a crash at SetPageError(THP_SWAP) (Nico Pache) [2168370]
+- mm/rmap.c: fix outdated comment in page_get_anon_vma() (Nico Pache) [2168370]
+- mm/mmap.c: extract __vma_unlink_list() as counterpart for __vma_link_list() (Nico Pache) [2168370]
+- mm: hugetlb: switch to css_tryget() in hugetlb_cgroup_charge_cgroup() (Nico Pache) [2168370]
+- x86/mm: Kill stray kernel fault handling comment (Nico Pache) [2168370]
+- arm64/numa: Unify common error path in numa_init() (Nico Pache) [2168370]
+- tools/power/x86/intel-speed-select: v1.14 release (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Adjust uncore max/min frequency (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Fix display of uncore min frequency (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Add Emerald Rapid quirk (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: turbo-freq auto mode with SMT off (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: cpufreq reads on offline CPUs (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Use null-terminated string (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Remove duplicate dup() (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Handle open() failure case (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Remove unused non_block flag (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Remove wrong check in set_isst_id() (Prarit Bhargava) [2154078]
+- platform/x86: ISST: Fix typo in comments (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Release v1.13 (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Optimize CPU initialization (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Utilize cpu_map to get physical id (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Remove unused struct clos_config fields (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Enforce isst_id value (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Do not export get_physical_id (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Introduce is_cpu_in_power_domain helper (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Cleanup get_physical_id usage (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Convert more function to use isst_id (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Add pkg and die in isst_id (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Introduce struct isst_id (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Remove unused core_mask array (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Remove dead code (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Fix cpu count for TDP level display (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Remove unneeded semicolon (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Fix off by one check (Prarit Bhargava) [2154078]
+- platform/x86: ISST: PUNIT device mapping with Sub-NUMA clustering (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Fix warning for perf_cap.cpu (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: Display error on turbo mode disabled (Prarit Bhargava) [2154078]
+- tools/power/x86/intel-speed-select: fix build failure when using -Wl,--as-needed (Prarit Bhargava) [2154078]
+- KVM: x86: Propagate the AMD Automatic IBRS feature to the guest (Waiman Long) [1989283]
+- x86/cpu: Support AMD Automatic IBRS (Waiman Long) [1989283]
+- x86/cpu, kvm: Add the SMM_CTL MSR not present feature (Waiman Long) [1989283]
+- x86/cpu, kvm: Add the Null Selector Clears Base feature (Waiman Long) [1989283]
+- x86/cpu, kvm: Move X86_FEATURE_LFENCE_RDTSC to its native leaf (Waiman Long) [1989283]
+- x86/cpu, kvm: Add the NO_NESTED_DATA_BP feature (Waiman Long) [1989283]
+- KVM: x86: Move open-coded CPUID leaf 0x80000021 EAX bit propagation code (Waiman Long) [1989283]
+- x86/cpu, kvm: Add support for CPUID_80000021_EAX (Waiman Long) [1989283]
+- x86/bugs: Make sure MSR_SPEC_CTRL is updated properly upon resume from S3 (Waiman Long) [1989283]
+- KVM: x86: Advertise that the SMM_CTL MSR is not supported (Waiman Long) [1989283]
+- Documentation/hw-vuln: Update spectre doc (Waiman Long) [1989283]
+- nvme-tcp: fence TCP socket on receive error (John Meneghini) [2116939]
+- nvme-multipath: fix possible hang in live ns resize with ANA access (John Meneghini) [2116939]
+- nvme-tcp: fix possible hang caused during ctrl deletion (John Meneghini) [2116939]
+- nvme-tcp: fix regression that causes sporadic requests to time out (John Meneghini) [2116939]
+- nvme-tcp: fix UAF when detecting digest errors (John Meneghini) [2116939]
+- nvme-tcp: check if the queue is allocated before stopping it (John Meneghini) [2116939]
+- nvme-tcp: always fail a request when sending it failed (John Meneghini) [2116939]
+- nvme: fix regression when disconnect a recovering ctrl (John Meneghini) [2116939]
+- nvme-multipath: use vmalloc for ANA log buffer (John Meneghini) [2116939]
+- bfq: fix waker_bfqq inconsistency crash (Ming Lei) [2177565]
+- blktrace: Fix output non-blktrace event when blk_classic option enabled (Ming Lei) [2177565]
+- blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init() (Ming Lei) [2177565]
+- blk-wbt: call rq_qos_add() after wb_normal is initialized (Ming Lei) [2177565]
+- block: sync mixed merged request's failfast with 1st bio's (Ming Lei) [2177565]
+- blk-mq: Fix potential io hung for shared sbitmap per tagset (Ming Lei) [2177565]
+- block: bio-integrity: Copy flags when bio_integrity_payload is cloned (Ming Lei) [2177565]
+- dim: initialize all struct fields (Audra Mitchell) [2172125]
+- XArray: Update the LRU list in xas_split() (Audra Mitchell) [2172125]
+- lib: bitmap: fix many kernel-doc warnings (Audra Mitchell) [2172125]
+- vsprintf: Fix %%pK with kptr_restrict == 0 (Audra Mitchell) [2172125]
+- lib: uninline simple_strntoull() as well (Audra Mitchell) [2172125]
+- lib: dimlib: fix help text typos (Audra Mitchell) [2172125]
+- locks: fix TOCTOU race when granting write lease (Waiman Long) [2152051]
+- locks: eliminate false positive conflicts for write lease (Waiman Long) [2152051]
+- locks: Use inode_is_open_for_write (Waiman Long) [2152051]
+- fs/locks: remove unnecessary white space. (Waiman Long) [2152051]
+- fs/locks: use properly initialized file_lock when unlocking. (Waiman Long) [2152051]
+- redhat/configs: Enable CONFIG_PINCTRL_METEORLAKE in RHEL (Prarit Bhargava) [2156845]
+- pinctrl: intel: Add Intel Meteor Lake pin controller support (Prarit Bhargava) [2156845]
+- md: fix regression for null-ptr-deference in __md_stop() (Nigel Croxon) [2162231]
+- md: avoid signed overflow in slot_store() (Nigel Croxon) [2162231]
+- md: Free resources in __md_stop (Nigel Croxon) [2162231]
+- md: account io_acct_set usage with active_io (Nigel Croxon) [2162231]
+- md: use MD_RESYNC_* whenever possible (Nigel Croxon) [2162231]
+- md: Free writes_pending in md_stop (Nigel Croxon) [2162231]
+- md: Change active_io to percpu (Nigel Croxon) [2162231]
+- md: Factor out is_md_suspended helper (Nigel Croxon) [2162231]
+- md: don't update recovery_cp when curr_resync is ACTIVE (Nigel Croxon) [2162231]
+- md: fold unbind_rdev_from_array into md_kick_rdev_from_array (Nigel Croxon) [2162231]
+- md: mark md_kick_rdev_from_array static (Nigel Croxon) [2162231]
+- mm/kmemleak: fix UAF bug in kmemleak_scan() (Waiman Long) [2172763]
+- mm/kmemleak: simplify kmemleak_cond_resched() usage (Waiman Long) [2172763]
+- mm/kmemleak.c: fix a comment (Waiman Long) [2172763]
+- ptp: introduce a phase offset in the periodic output request (Íñigo Huguet) [2179072]
+- ptp: add ability to configure duty cycle for periodic output (Íñigo Huguet) [2179072]
+- platform/x86: intel/pmc/core: Add Meteor Lake mobile support (Prarit Bhargava) [2153968]
+- platform/x86: intel/pmc/core: Add Meteor Lake support to pmc core driver (Prarit Bhargava) [2153968]
+- sched/core: Fix arch_scale_freq_tick() on tickless systems (Phil Auld) [2184083]
+- qede: avoid uninitialized entries in coal_entry array (Michal Schmidt) [2160054]
+- qede: fix interrupt coalescing configuration (Jonathan Toppins) [2160054]
+- powerpc/64s: Unmerge EX_LR and EX_DAR (Mamatha Inamdar) [2134271]
+- powercap: intel_rapl: add support for Meteor Lake (Prarit Bhargava) [2153964]
+- dm: fix __send_duplicate_bios() to always allow for splitting IO (Benjamin Marzinski) [2184429]
+- dm: fix improper splitting for abnormal bios (Benjamin Marzinski) [2184429]
+- ovl: fail on invalid uid/gid mapping at copy up (Miklos Szeredi) [2165342] {CVE-2023-0386}
+
+* Fri Apr 07 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-485.el8]
+- timers: Provide timer_shutdown[_sync]() (Ivan Vecera) [2174474]
+- timers: Add shutdown mechanism to the internal functions (Ivan Vecera) [2174474]
+- timers: Split [try_to_]del_timer[_sync]() to prepare for shutdown mode (Ivan Vecera) [2174474]
+- timers: Silently ignore timers with a NULL function (Ivan Vecera) [2174474]
+- timers: Rename del_timer() to timer_delete() (Ivan Vecera) [2174474]
+- timers: Rename del_timer_sync() to timer_delete_sync() (Ivan Vecera) [2174474]
+- timers: Use del_timer_sync() even on UP (Ivan Vecera) [2174474]
+- timers: Update kernel-doc for various functions (Ivan Vecera) [2174474]
+- timers: Replace BUG_ON()s (Ivan Vecera) [2174474]
+- timers: Get rid of del_singleshot_timer_sync() (Ivan Vecera) [2174474]
+- clocksource/drivers/sp804: Do not use timer namespace for timer_shutdown() function (Ivan Vecera) [2174474]
+- clocksource/drivers/arm_arch_timer: Do not use timer namespace for timer_shutdown() function (Ivan Vecera) [2174474]
+- misc/sgi-xp: Replace in_interrupt() usage (Ivan Vecera) [2174474]
+- timers: Don't block on ->expiry_lock for TIMER_IRQSAFE timers (Ivan Vecera) [2174474]
+- hvcs: Synchronize hotplug remove with port free (Mamatha Inamdar) [2167962]
+- hvcs: Use vhangup in hotplug remove (Mamatha Inamdar) [2167962]
+- hvcs: Get reference to tty in remove (Mamatha Inamdar) [2167962]
+- hvcs: Use driver groups to manage driver attributes (Mamatha Inamdar) [2167962]
+- hvcs: Use dev_groups to manage hvcs device attributes (Mamatha Inamdar) [2167962]
+- hvcs: Fix hvcs port reference counting (Mamatha Inamdar) [2167962]
+- tty: hvcs: Don't NULL tty->driver_data until hvcs_cleanup() (Mamatha Inamdar) [2167962]
+- docs/memory-barriers.txt/kokr: introduce io_stop_wc() and add implementation for ARM64 (Ivan Vecera) [2179061]
+- docs/memory-barriers.txt: Add a missed closing parenthesis (Ivan Vecera) [2179061]
+- asm-generic: Add missing brackets for io_stop_wc macro (Ivan Vecera) [2179061]
+- asm-generic: introduce io_stop_wc() and add implementation for ARM64 (Ivan Vecera) [2179061]
+- ipv4: Fix incorrect table ID in IOCTL path (Guillaume Nault) [2176792]
+- ipv4: Fix incorrect route flushing when table ID 0 is used (Guillaume Nault) [2176792]
+- ipv4: Fix incorrect route flushing when source address is deleted (Guillaume Nault) [2176792]
+- selftests: Add source route tests to fib_tests (Guillaume Nault) [2176792]
+- mm/rmap: split page_dup_rmap() into page_dup_file_rmap() and page_try_dup_anon_rmap() (David Hildenbrand) [2179164]
+- mm/memory: slightly simplify copy_present_pte() (David Hildenbrand) [2179164]
+- mm/hugetlb: take src_mm->write_protect_seq in copy_hugetlb_page_range() (David Hildenbrand) [2179164]
+- mm: /proc/sys/vm/stat_refresh stop checking monotonic numa stats (Waiman Long) [2178001]
+- mm: /proc/sys/vm/stat_refresh skip checking known negative stats (Waiman Long) [2178001]
+- mm: no more EINVAL from /proc/sys/vm/stat_refresh (Waiman Long) [2178001]
+- mm: restore node stat checking in /proc/sys/vm/stat_refresh (Waiman Long) [2178001]
+- sfc: ef10: don't overwrite offload features at NIC reset (Íñigo Huguet) [2154500]
+- sfc: correctly advertise tunneled IPv6 segmentation (Íñigo Huguet) [2154500]
+- igb: conditionalize I2C bit banging on external thermal sensor support (Corinna Vinschen) [2130727]
+- platform/x86: ISST: PUNIT device mapping with Sub-NUMA clustering (Prarit Bhargava) [2139963]
+- x86/nmi: Make register_nmi_handler() more robust (Ani Sinha) [2037005]
+- net: tls: fix possible race condition between do_tls_getsockopt_conf() and do_tls_setsockopt_conf() (Sabrina Dubroca) [2179819] {CVE-2023-28466}
+- cpufreq: intel_pstate: hybrid: Use known scaling factor for P-cores (Prarit Bhargava) [2179183]
+- target: iscsi: use GFP_NOIO with loopback connections (Maurizio Lombardi) [2156546]
+- core_pattern: add CPU specifier (Oleksandr Natalenko) [1968108]
+- Bluetooth: L2CAP: Fix accepting connection request for invalid SPSM (David Marlin) [2148404] {CVE-2022-42896}
+- ipv6: prevent router_solicitations for team port (Xin Long) [2141600]
+- ipv6: Don't send rs packets to the interface of ARPHRD_TUNNEL (Xin Long) [2141600]
+- Bluetooth: L2CAP: Fix attempting to access uninitialized memory (David Marlin) [2148408] {CVE-2022-42895}
+- redhat/scripts/create-tarball.sh: Use nproc instead of rpm macros (Prarit Bhargava)
+- Revert "Switch to z-stream for 8.8 for CKI pipelines" (Denys Vlasenko)
+
+* Wed Apr 05 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-484.el8]
+- ethernet: Remove vf rate limit check for drivers (Izabela Bakollari) [2172124]
+- rtnetlink: verify rate parameters for calls to ndo_set_vf_rate (Izabela Bakollari) [2172124]
+- sfc: Change VF mac via PF as first preference if available. (Íñigo Huguet) [2117449]
+- Fix genlog.py to ensure that comments retain "%%" characters. (Eder Zulian) [RHEL-340]
+- redhat: fix duplicate jira issues in the resolves line (Eder Zulian) [RHEL-340]
+- redhat: add support for Jira issues in changelog (Eder Zulian) [RHEL-340]
+- redhat/configs: Put CONFIG_SFC_* to a proper location (Vladis Dronov)
+- redhat/configs: Put CONFIG_SEV_GUEST to a proper location (Vladis Dronov)
+- Reinstate "GFS2: free disk inode which is deleted by remote node -V2" (Bob Peterson) [2181343]
+- iavf: fix hang on reboot with ice (Stefan Assmann) [2181811]
+- iavf: Fix race condition between iavf_shutdown and iavf_remove (Stefan Assmann) [2181811]
+- net/ulp: use consistent error code when blocking ULP (Sabrina Dubroca) [2176955] {CVE-2023-0461}
+- net/ulp: prevent ULP without clone op from entering the LISTEN status (Sabrina Dubroca) [2176955] {CVE-2023-0461}
+- lockd: lockd server-side shouldn't set fl_ops (Jeffrey Layton) [2179329]
+- NFS: Correct timing for assigning access cache timestamp (Benjamin Coddington) [2180851]
+- Switch to z-stream for 8.8 for CKI pipelines (Michael Hofmann)
+- KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS (Jon Maloy) [2160033] {CVE-2022-2196}
+
+* Fri Mar 31 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-483.el8]
+- tracing/hwlat: Replace sched_setaffinity with set_cpus_allowed_ptr (Jerome Marchand) [2174935]
+- drivers: hv, hyperv_fb: Untangle and refactor Hyper-V panic notifiers (Mohammed Gamal) [2172513]
+- video: hyperv_fb: Avoid taking busy spinlock on panic path (Mohammed Gamal) [2172513]
+- HID: hyperv: remove unused struct synthhid_msg (Mohammed Gamal) [2172513]
+- HID: hyperv: Replace one-element array with flexible-array member (Mohammed Gamal) [2172513]
+- clocksource: hyper-v: Add TSC page support for root partition (Mohammed Gamal) [2172443]
+- clocksource: hyper-v: Use TSC PFN getter to map vvar page (Mohammed Gamal) [2172443]
+- clocksource: hyper-v: Introduce TSC PFN getter (Mohammed Gamal) [2172443]
+- clocksource: hyper-v: Introduce a pointer to TSC page (Mohammed Gamal) [2172443]
+- HV: hv_balloon: fix memory leak with using debugfs_lookup() (Mohammed Gamal) [2172435]
+- debugfs: add debugfs_lookup_and_remove() (Mohammed Gamal) [2172435]
+- Drivers: hv: Enable vmbus driver for nested root partition (Mohammed Gamal) [2172435]
+- video: hyperv_fb: Avoid taking busy spinlock on panic path (Mohammed Gamal) [2172435]
+
+* Mon Mar 27 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-482.el8]
+- sched/deadline: Add more reschedule cases to prio_changed_dl() (Valentin Schneider) [2120570]
+- perf/x86/uncore: Add new Raptor Lake S support (Michael Petlan) [2120365]
+- perf/x86/cstate: Add new Raptor Lake S support (Michael Petlan) [2120365]
+- perf/x86/msr: Add new Raptor Lake S support (Michael Petlan) [2120365]
+- perf/x86: Add new Raptor Lake S support (Michael Petlan) [2120365]
+- net: sched: atm: dont intepret cls results when asked to drop (Davide Caratti) [2168336] {CVE-2023-23455}
+- nvdimm: Allow overwrite in the presence of disabled dimms (Aristeu Rozanski) [2154070]
+- Revert "GFS2: free disk inode which is deleted by remote node -V2" (Bob Peterson) [2109600]
+- gfs2: Evict inodes cooperatively (Andreas Gruenbacher) [2109600]
+- gfs2: Flush delete work before shrinking inode cache (Andreas Gruenbacher) [2109600]
+- gfs2: Add SDF_DEACTIVATING super block flag (Bob Peterson) [2109600]
+- gfs2: check gl_object in rgrp glops (Bob Peterson) [2109600]
+- gfs2: Split the two kinds of glock "delete" work (Andreas Gruenbacher) [2109600]
+- gfs2: Move delete workqueue into super block (Andreas Gruenbacher) [2109600]
+- gfs2: Use container_of() for gfs2_glock(aspace) (Andreas Gruenbacher) [2109600]
+- gfs2: Get rid of GLF_PENDING_DELETE flag (Andreas Gruenbacher) [2109600]
+- gfs2: Make glock lru list scanning safer (Andreas Gruenbacher) [2109600]
+- gfs2: Fix use-after-free in gfs2_glock_shrink_scan (Andreas Gruenbacher) [2109600]
+- gfs2: Clean up gfs2_scan_glock_lru (Andreas Gruenbacher) [2109600]
+- gfs2: gl_object races fix (Andreas Gruenbacher) [2109600]
+- iomap/gfs2: Unlock and put folio in page_done handler (Andreas Gruenbacher) [2109600]
+- iomap: Add __iomap_put_folio helper (Andreas Gruenbacher) [2109600]
+- gfs2: Remove support for glock holder auto-demotion (2) (Andreas Gruenbacher) [2109600]
+- gfs2: Remove support for glock holder auto-demotion (Andreas Gruenbacher) [2109600]
+- gfs2: Minor gfs2_try_evict cleanup (Andreas Gruenbacher) [2109600]
+- gfs2: Partially revert gfs2_inode_lookup change (Andreas Gruenbacher) [2109600]
+- gfs2: Add gfs2_inode_lookup comment (Andreas Gruenbacher) [2109600]
+- gfs2: Uninline and improve glock_{set,clear}_object (Andreas Gruenbacher) [2109600]
+- gfs2: Simply dequeue iopen glock in gfs2_evict_inode (Andreas Gruenbacher) [2109600]
+- gfs2: Clean up after gfs2_create_inode rework (Andreas Gruenbacher) [2109600]
+- gfs2: Avoid dequeuing GL_ASYNC glock holders twice (Andreas Gruenbacher) [2109600]
+- gfs2: Handle -EBUSY result of insert_inode_locked4 (Andreas Gruenbacher) [2109600]
+- gfs2: Fix and clean up create / evict interaction (Andreas Gruenbacher) [2109600]
+- gfs2: Clean up initialization of "ip" in gfs2_create_inode (Andreas Gruenbacher) [2109600]
+- gfs2: Get rid of ghs[] in gfs2_create_inode (Andreas Gruenbacher) [2109600]
+- gfs2: Dequeue waiters when withdrawn (Bob Peterson) [2109600]
+- gfs2: Prevent double iput for journal on error (Bob Peterson) [2109600]
+- Revert "gfs2: stop using generic_writepages in gfs2_ail1_start_one" (Andreas Gruenbacher) [2109600]
+- gfs2: remove ->writepage (Andreas Gruenbacher) [2109600]
+- gfs2: stop using generic_writepages in gfs2_ail1_start_one (Andreas Gruenbacher) [2109600]
+- gfs2: List traversal in do_promote is safe (Andreas Gruenbacher) [2109600]
+- gfs2: do_promote glock holder stealing fix (Bob Peterson) [2109600]
+- gfs2: Use better variable name (Andreas Gruenbacher) [2109600]
+- gfs2: Make go_instantiate take a glock (Andreas Gruenbacher) [2109600]
+- gfs2: Add new go_held glock operation (Andreas Gruenbacher) [2109600]
+- gfs2: Revert 'Fix "truncate in progress" hang' (Andreas Gruenbacher) [2109600]
+- gfs2: Instantiate glocks ouside of glock state engine (Andreas Gruenbacher) [2109600]
+- gfs2: Fix up gfs2_glock_async_wait (Andreas Gruenbacher) [2109600]
+- gfs2: Add GL_NOPID flag for process-independent glock holders (Andreas Gruenbacher) [2109600]
+- gfs2: dump inode object for iopen glocks (Bob Peterson) [2109600]
+- gfs2: convert to use DEFINE_SEQ_ATTRIBUTE macro (Andreas Gruenbacher) [2109600]
+- gfs2: Use TRY lock in gfs2_inode_lookup for UNLINKED inodes (Bob Peterson) [2109600]
+- Updated dist tag to el8_8 (Lucas Zampieri)
+- Revert "net/mlx5: Don't perform lookup after already known sec_path" (Amir Tzin) [2176349]
+- KVM: x86: do not report a vCPU as preempted outside instruction boundaries (Jon Maloy) [2124800] {CVE-2022-39189}
+- Drivers: vmbus: Check for channel allocation before looking up relids (Mohammed Gamal) [2178622]
+- drm/nouveau/fb/tu102-: fix register used to determine scrub status (Karol Herbst) [2168648]
+- drm/nouveau/devinit/tu102-: wait for GFW_BOOT_PROGRESS == COMPLETED (Karol Herbst) [2168648]
+- fs/proc: task_mmu.c: don't read mapcount for migration entry (Jay Shin) [2174623]
+- perf/core: Fix cgroup event list management (Michael Petlan) [2162525]
+
+* Tue Mar 21 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-481.el8]
+- redhat: include all certs (Red Hat and CentOS) in the srpm (Denys Vlasenko) [2179095]
+- redhat: do not require grub2 on s390x (Denys Vlasenko) [2179095]
+- thermal: int340x: Add Meteor Lake PCI device ID (Prarit Bhargava) [2156822]
+- i2c: i801: Add support for Intel Meteor Lake-P (Prarit Bhargava) [2156841]
+
+* Sat Mar 18 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-480.el8]
+- redhat: fix the signing failure on ppc64el on centos (Denys Vlasenko) [2179095]
+
+* Sat Mar 18 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-479.el8]
+- redhat: add centos signing certs (Denys Vlasenko)
+- redhat: fix "make rh-brew" not choosing _scratch_ build (Denys Vlasenko)
+- mfd: intel-lpss: Add Intel Meteor Lake-P PCI IDs (Prarit Bhargava) [2156843]
+- x86/cpu: Add CPU model numbers for Meteor Lake (Prarit Bhargava) [2153936]
+- redhat: require grub2 >= 2.02-99 (Denys Vlasenko) [2179095]
+- redhat: delete unused script and file (Denys Vlasenko) [2179095]
+- redhat: drop certificates that were deprecated after GRUB's BootHole flaw (Denys Vlasenko) [2179095]
+- redhat: align file names with names of signing keys for ppc and s390 (Denys Vlasenko) [2179095]
+
+* Thu Mar 16 2023 Denys Vlasenko <dvlasenk@redhat.com> [4.18.0-478.el8]
+- net/tunnel: wait until all sk_user_data reader finish before releasing the sock (Hangbin Liu) [2176344]
+- powerpc/pseries: unregister VPA when hot unplugging a CPU (Mamatha Inamdar) [2143007]
+- net: mana: Fix IRQ name - add PCI and queue number (Mohammed Gamal) [2172474]
+- net: mana: Fix return type of mana_start_xmit() (Mohammed Gamal) [2172474]
+- net: mana: Define data structures for protection domain and memory registration (Mohammed Gamal) [2172474]
+- net: mana: Define and process GDMA response code GDMA_STATUS_MORE_ENTRIES (Mohammed Gamal) [2172474]
+- net: mana: Define max values for SGL entries (Mohammed Gamal) [2172474]
+- net: mana: Move header files to a common location (Mohammed Gamal) [2172474]
+- net: mana: Record port number in netdev (Mohammed Gamal) [2172474]
+- net: mana: Export Work Queue functions for use by RDMA driver (Mohammed Gamal) [2172474]
+- net: mana: Set the DMA device max segment size (Mohammed Gamal) [2172474]
+- net: mana: Handle vport sharing between devices (Mohammed Gamal) [2172474]
+- net: mana: Record the physical address for doorbell page region (Mohammed Gamal) [2172474]
+- net: mana: Add support for auxiliary device (Mohammed Gamal) [2172474]
+- hv_netvsc: Check status in SEND_RNDIS_PKT completion message (Mohammed Gamal) [2172438]
+- hv_netvsc: Allocate memory in netvsc_dma_map() with GFP_ATOMIC (Mohammed Gamal) [2172438]
+- hv_netvsc: Fix missed pagebuf entries in netvsc_dma_map/unmap() (Mohammed Gamal) [2172438]
+- Drivers: hv: Make remove callback of hyperv driver void returned (Mohammed Gamal) [2172438]
+- hv: fix comment typo in vmbus_channel/low_latency (Mohammed Gamal) [2172434]
+- x86/hyperv: Introduce HV_MAX_SPARSE_VCPU_BANKS/HV_VCPUS_PER_SPARSE_BANK constants (Mohammed Gamal) [2172434]
+- x86/hyperv: Fix hv_get/set_register for nested bringup (Mohammed Gamal) [2172434]
+- x86/hyperv: Add an interface to do nested hypercalls (Mohammed Gamal) [2172434]
+- Drivers: hv: Setup synic registers in case of nested root partition (Mohammed Gamal) [2172434]
+- x86/hyperv: Add support for detecting nested hypervisor (Mohammed Gamal) [2172434]
+- x86/hyperv: Add HV_EXPOSE_INVARIANT_TSC define (Mohammed Gamal) [2172434]
+- x86/hyperv: Expand definition of struct hv_vp_assist_page (Mohammed Gamal) [2172434]
+- KVM: x86: hyper-v: Expose support for extended gva ranges for flush hypercalls (Mohammed Gamal) [2172434]
+- x86/hyperv: Move VMCB enlightenment definitions to hyperv-tlfs.h (Mohammed Gamal) [2172434]
+- iommu/hyper-v: Allow hyperv irq remapping without x2apic (Mohammed Gamal) [2172434]
+- smp: Fix offline cpu check in flush_smp_call_function_queue() (Waiman Long) [2169471]
+- sched/fair: Trigger the update of blocked load on newly idle cpu (Waiman Long) [2169471]
+- redhat: rh-dist-git should depend on rh-srpm (Denys Vlasenko)
+- redhat: change kabi tarballs to use the package release (Denys Vlasenko)
+- redhat/Makefile: add variables used in rhel9 makefiles (Denys Vlasenko)
+- redhat/Makefile: Remove RHPRODUCT variable (Denys Vlasenko)
+- redhat/scripts/rh-dist-git.sh: expand sources from srpm (Denys Vlasenko)
+- redhat: remove GL_DISTGIT_USER, RHDISTGIT and unify dist-git cloning (Denys Vlasenko)
+- redhat/scripts/rh-dist-git.sh: Use Makefile variables (Denys Vlasenko)
+- redhat: fix typo and make the output more silent for dist-git sync (Denys Vlasenko)
+- redhat: add initial support for centos stream dist-git sync on Makefiles (Denys Vlasenko)
+- internal: update RHEL_MINOR for the start of RHEL-8.9 development (Denys Vlasenko)
+- watchdog: diag288_wdt: fix __diag288() inline assembly (Tobias Huschle) [2171361]
+- watchdog: diag288_wdt: do not use stack buffers for hardware data (Tobias Huschle) [2171361]
+- bonding: add documentation for peer_notif_delay (Ryosuke Yasuoka) [2171348]
+- net: mana: Fix IRQ name - add PCI and queue number (Mohammed Gamal) [2166787]
+- crypto: des - disallow des3 in FIPS mode (Vladis Dronov) [2175234]
+- self-tests: more rps self tests (Paolo Abeni) [2168878]
+- net: make default_rps_mask a per netns attribute (Paolo Abeni) [2168878]
+- self-tests: introduce self-tests for RPS default mask (Paolo Abeni) [2168878]
+- net: introduce default_rps_mask netns attribute (Paolo Abeni) [2168878]
+- net-sysctl: factor-out rpm mask manipulation helpers (Paolo Abeni) [2168878]
+- net-sysctl: factor out cpumask parsing helper (Paolo Abeni) [2168878]
+- txhash: Make rethinking txhash behavior configurable via sysctl (Paolo Abeni) [2168878]
+- net-sysfs: Call dev_hold always in rx_queue_add_kobject (Paolo Abeni) [2168878]
+- net-sysfs: Call dev_hold always in netdev_queue_add_kobject (Paolo Abeni) [2168878]
+- net-sysfs: fix netdev_queue_add_kobject() breakage (Paolo Abeni) [2168878]
+- net-sysfs: Fix reference count leak in rx|netdev_queue_add_kobject (Paolo Abeni) [2168878]
+- ice/ptp: fix the PTP worker retrying indefinitely if the link went down (Petr Oros) [2166392]
+- ice: reschedule ice_ptp_wait_for_offset_valid during reset (Petr Oros) [2166392]
+- ice: make Tx and Rx vernier offset calibration independent (Petr Oros) [2166392]
+- ice: only check set bits in ice_ptp_flush_tx_tracker (Petr Oros) [2166392]
+- ice: handle flushing stale Tx timestamps in ice_ptp_tx_tstamp (Petr Oros) [2166392]
+- ice: cleanup allocations in ice_ptp_alloc_tx_tracker (Petr Oros) [2166392]
+- ice: protect init and calibrating check in ice_ptp_request_ts (Petr Oros) [2166392]
+- ice: check Tx timestamp memory register for ready timestamps (Petr Oros) [2166392]
+- ice: handle discarding old Tx requests in ice_ptp_tx_tstamp (Petr Oros) [2166392]
+- ice: always call ice_ptp_link_change and make it void (Petr Oros) [2166392]
+- ice: fix misuse of "link err" with "link status" (Petr Oros) [2166392]
+- ice: Reset TS memory for all quads (Petr Oros) [2166392]
+- ice: Remove the E822 vernier "bypass" logic (Petr Oros) [2166392]
+- ice: Use more generic names for ice_ptp_tx fields (Petr Oros) [2166392]
+- ice: Merge pin initialization of E810 and E810T adapters (Petr Oros) [2166392]
+- ice: Check if reset in progress while waiting for offsets (Petr Oros) [2166392]
+- NFS: Judge the file access cache's timestamp in rcu path (Benjamin Coddington) [2161321]
+- redhat: switch to z-stream for 8.8 (Lucas Zampieri)
+
+* Wed Mar 08 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-477.2.1.el8]
+- net: mana: Fix IRQ name - add PCI and queue number (Mohammed Gamal) [2166787]
+- crypto: des - disallow des3 in FIPS mode (Vladis Dronov) [2175234]
+- self-tests: more rps self tests (Paolo Abeni) [2168878]
+- net: make default_rps_mask a per netns attribute (Paolo Abeni) [2168878]
+- self-tests: introduce self-tests for RPS default mask (Paolo Abeni) [2168878]
+- net: introduce default_rps_mask netns attribute (Paolo Abeni) [2168878]
+- net-sysctl: factor-out rpm mask manipulation helpers (Paolo Abeni) [2168878]
+- net-sysctl: factor out cpumask parsing helper (Paolo Abeni) [2168878]
+- txhash: Make rethinking txhash behavior configurable via sysctl (Paolo Abeni) [2168878]
+- net-sysfs: Call dev_hold always in rx_queue_add_kobject (Paolo Abeni) [2168878]
+- net-sysfs: Call dev_hold always in netdev_queue_add_kobject (Paolo Abeni) [2168878]
+- net-sysfs: fix netdev_queue_add_kobject() breakage (Paolo Abeni) [2168878]
+- net-sysfs: Fix reference count leak in rx|netdev_queue_add_kobject (Paolo Abeni) [2168878]
+
+* Mon Mar 06 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-477.1.1.el8]
+- ice/ptp: fix the PTP worker retrying indefinitely if the link went down (Petr Oros) [2166392]
+- ice: reschedule ice_ptp_wait_for_offset_valid during reset (Petr Oros) [2166392]
+- ice: make Tx and Rx vernier offset calibration independent (Petr Oros) [2166392]
+- ice: only check set bits in ice_ptp_flush_tx_tracker (Petr Oros) [2166392]
+- ice: handle flushing stale Tx timestamps in ice_ptp_tx_tstamp (Petr Oros) [2166392]
+- ice: cleanup allocations in ice_ptp_alloc_tx_tracker (Petr Oros) [2166392]
+- ice: protect init and calibrating check in ice_ptp_request_ts (Petr Oros) [2166392]
+- ice: check Tx timestamp memory register for ready timestamps (Petr Oros) [2166392]
+- ice: handle discarding old Tx requests in ice_ptp_tx_tstamp (Petr Oros) [2166392]
+- ice: always call ice_ptp_link_change and make it void (Petr Oros) [2166392]
+- ice: fix misuse of "link err" with "link status" (Petr Oros) [2166392]
+- ice: Reset TS memory for all quads (Petr Oros) [2166392]
+- ice: Remove the E822 vernier "bypass" logic (Petr Oros) [2166392]
+- ice: Use more generic names for ice_ptp_tx fields (Petr Oros) [2166392]
+- ice: Merge pin initialization of E810 and E810T adapters (Petr Oros) [2166392]
+- ice: Check if reset in progress while waiting for offsets (Petr Oros) [2166392]
+- NFS: Judge the file access cache's timestamp in rcu path (Benjamin Coddington) [2161321]
+- redhat: switch to z-stream for 8.8 (Lucas Zampieri)
+
+* Thu Feb 23 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-477.el8]
+- cpufreq: intel_pstate: Add Sapphire Rapids support in no-HWP mode (Prarit Bhargava) [2170564]
+
+* Thu Feb 23 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-476.el8]
+- igb: Initialize mailbox message for VF reset (Corinna Vinschen) [2103948]
+- igb: Allocate MSI-X vector when testing (Corinna Vinschen) [2103948]
+- igb: Proactively round up to kmalloc bucket size (Corinna Vinschen) [2103948]
+- igb: Do not free q_vector unless new one was allocated (Corinna Vinschen) [2103948]
+- ptp: introduce helpers to adjust by scaled parts per million (Corinna Vinschen) [2103948]
+- net: Remove the obsolte u64_stats_fetch_*_irq() users (drivers). (Corinna Vinschen) [2103948]
+- net: ethernet: move from strlcpy with unused retval to strscpy (Corinna Vinschen) [2103948]
+- igb: convert .adjfreq to .adjfine (Corinna Vinschen) [2103948]
+- ASoC: Intel: soc-acpi: add configuration for variant of 0C11 product (Jaroslav Kysela) [2100582]
+- ASoC: Intel: soc-acpi: add configuration for variant of 0C40 product (Jaroslav Kysela) [2100582]
+- ASoC: Intel: sof_sdw: use common helpers for all Realtek amps (Jaroslav Kysela) [2100582]
+- ASoC: Intel: sof_sdw: Add support for SKU 0C11 product (Jaroslav Kysela) [2100582]
+- ASoC: Intel: sof_sdw: Add support for SKU 0C4F product (Jaroslav Kysela) [2100582]
+- ASoC: Intel: sof_sdw: Add support for SKU 0C40 product (Jaroslav Kysela) [2100582]
+- ASoC: Intel: sof_sdw: Add support for SKU 0C10 product (Jaroslav Kysela) [2100582]
+- ASoC: Intel: sof_sdw_rt1316: add BQ params for the Dell models (Jaroslav Kysela) [2100582]
+- ASoC: Intel: sof_sdw_rt1308: add BQ params for the Dell models (Jaroslav Kysela) [2100582]
+- ASoC: intel: sof_sdw: add rt1318 codec support. (Jaroslav Kysela) [2100582]
+- ASoC: rt1318: Add RT1318 SDCA vendor-specific driver (Jaroslav Kysela) [2100582]
+- ASoC: Intel: soc-acpi: update codec addr on 0C11/0C4F product (Jaroslav Kysela) [2100582]
+- ASoC: Intel: soc-acpi: add SKU 0C11 SoundWire configuration (Jaroslav Kysela) [2100582]
+- ASoC: Intel: soc-acpi: add SKU 0C40 SoundWire configuration (Jaroslav Kysela) [2100582]
+- ASoC: Intel: soc-acpi: add SKU 0C10 SoundWire configuration (Jaroslav Kysela) [2100582]
+- ASoC: Intel: soc-acpi-intel-rpl-match: add rpl_sdca_3_in_1 support (Jaroslav Kysela) [2100582]
+
+* Wed Feb 22 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-475.el8]
+- net: ena: Update NUMA TPH hint register upon NUMA node update (Petr Oros) [2167316]
+- net: ena: Set default value for RX interrupt moderation (Petr Oros) [2167316]
+- net: ena: Fix rx_copybreak value update (Petr Oros) [2167316]
+- net: ena: Use bitmask to indicate packet redirection (Petr Oros) [2167316]
+- net: ena: Account for the number of processed bytes in XDP (Petr Oros) [2167316]
+- net: ena: Don't register memory info on XDP exchange (Petr Oros) [2167316]
+- net: ena: Fix toeplitz initial hash value (Petr Oros) [2167316]
+- net: ena: Fix error handling in ena_init() (Petr Oros) [2167316]
+- net: sched: disallow noqueue for qdisc classes (Xin Long) [2168282] {CVE-2022-47929}
+- net: sched: cbq: dont intepret cls results when asked to drop (Xin Long) [2168327] {CVE-2023-23454}
+- sctp: do not check hb_timer.expires when resetting hb_timer (Xin Long) [2133092]
+- arm64: Add AMPERE1 to the Spectre-BHB affected list (Mark Salter) [2140727]
+- net: mana: Fix accessing freed irq affinity_hint (Emanuele Giuseppe Esposito) [2168969]
+- net: mana: Assign interrupts to CPUs based on NUMA nodes (Emanuele Giuseppe Esposito) [2168969]
+- Revert "RDMA/irdma: Report the correct link speed" (Kamal Heib) [2143088]
+- Documentation/sysctl: document page_lock_unfairness (Nico Pache) [2165737] {CVE-2022-3623}
+- mm: allow a controlled amount of unfairness in the page lock (Nico Pache) [2165737] {CVE-2022-3623}
+- mm/hugetlb: fix races when looking up a CONT-PTE/PMD size hugetlb page (Nico Pache) [2165737] {CVE-2022-3623}
+- mm/migration: fix potential pte_unmap on an not mapped pte (Nico Pache) [2165737] {CVE-2022-3623}
+- mm/migrate.c: rework migration_entry_wait() to not take a pageref (Nico Pache) [2165737] {CVE-2022-3623}
+- mm: make wait_on_page_writeback() wait for multiple pending writebacks (Nico Pache) [2165737] {CVE-2022-3623}
+- mm: rewrite wait_on_page_bit_common() logic (Nico Pache) [2165737] {CVE-2022-3623}
+- mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge (Nico Pache) [2165737] {CVE-2022-3623}
+
+* Mon Feb 20 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-474.el8]
+- perf/x86/amd: Fix crash due to race between amd_pmu_enable_all, perf NMI and throttling (Michael Petlan) [2085282]
+- x86/perf: Fix snapshot_branch_stack warning in VM (Michael Petlan) [2085282]
+- perf/x86/amd/core: Fix reloading events for SVM (Michael Petlan) [2085282 2086722]
+- perf/x86/amd: Run AMD BRS code only on supported hw (Michael Petlan) [2085282]
+- perf/x86/amd: Fix AMD BRS period adjustment (Michael Petlan) [2085282]
+- perf/x86/amd: Remove unused variable 'hwc' (Michael Petlan) [2085282]
+- perf/ibs: Fix comment (Michael Petlan) [2085282]
+- perf report: Add tools/arch/x86/include/asm/amd-ibs.h (Michael Petlan) [2085282]
+- perf/amd/ibs: Advertise zen4_ibs_extensions as pmu capability attribute (Michael Petlan) [2085282]
+- perf/amd/ibs: Add support for L3 miss filtering (Michael Petlan) [2085282]
+- perf/amd/ibs: Use ->is_visible callback for dynamic attributes (Michael Petlan) [2085282]
+- perf/amd/ibs: Cascade pmu init functions' return value (Michael Petlan) [2085282]
+- perf/amd/ibs: Use interrupt regs ip for stack unwinding (Michael Petlan) [2085282]
+- perf/x86/amd/core: Add PerfMonV2 overflow handling (Michael Petlan) [2085282 2086722]
+- perf/x86/amd/core: Add PerfMonV2 counter control (Michael Petlan) [2085282 2086722]
+- perf/x86/amd/core: Detect available counters (Michael Petlan) [2085282 2086722]
+- perf/x86/amd/core: Detect PerfMonV2 support (Michael Petlan) [2085282 2086722]
+- x86/msr: Add PerfCntrGlobal* registers (Michael Petlan) [2085282 2086722]
+- x86/cpufeatures: Add PerfMonV2 feature bit (Michael Petlan) [2085282 2086722]
+- perf/x86: Unify format of events sysfs show (Michael Petlan) [2085282]
+- perf/x86/amd: Add idle hooks for branch sampling (Michael Petlan) [2085282]
+- perf: Enable branch record for software events (Michael Petlan) [2085282]
+- redhat/configs: Enable AMD Zen3 branch sampling by default (Michael Petlan) [2085282]
+- perf/x86/amd: Make Zen3 branch sampling opt-in (Michael Petlan) [2085282]
+- perf/x86/amd: Add AMD branch sampling period adjustment (Michael Petlan) [2085282]
+- perf/x86/amd: Enable branch sampling priv level filtering (Michael Petlan) [2085282]
+- perf/x86/amd: Add branch-brs helper event for Fam19h BRS (Michael Petlan) [2085282]
+- perf/x86/amd: Add AMD Fam19h Branch Sampling support (Michael Petlan) [2085282]
+- perf/x86/amd/ibs: Add bitfield definitions in new <asm/amd-ibs.h> header (Michael Petlan) [2085282]
+- perf/amd/uncore: Allow the driver to be built as a module (Michael Petlan) [2085282]
+- perf/amd/uncore: Clean up header use, use <linux/ include paths instead of <asm/ (Michael Petlan) [2085282]
+- perf/amd/uncore: Simplify code, use free_percpu()'s built-in check for NULL (Michael Petlan) [2085282]
+- x86/cpufeatures: Add AMD Fam19h Branch Sampling feature (Michael Petlan) [2085282]
+- perf/core: Add perf_clear_branch_entry_bitfields() helper (Michael Petlan) [2085282]
+
+* Fri Feb 17 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-473.el8]
+- ice: fix lost multicast packets in promisc mode (Ken Cox) [2138215]
+- RDMA/irdma: Cap MSIX used to online CPUs + 1 (Kamal Heib) [2118548]
+- usb: mon: make mmapped memory read only (Desnes Nunes) [2157697] {CVE-2022-43750}
+- blk-cgroup: don't update io stat for root cgroup (Ming Lei) [2167547]
+- x86/hyperv: Remove unregister syscore call from Hyper-V cleanup (Mohammed Gamal) [1865745]
+- perf test: Skip watchpoint tests if no watchpoints available (Michael Petlan) [2148337]
+- powercap: intel_rapl: Add support for RAPTORLAKE_P (Prarit Bhargava) [2076726]
+- crypto: hmac - disallow keys < 112 bits in FIPS mode (Vladis Dronov) [2166715]
+- crypto: hmac - add fips_skip support (Vladis Dronov) [2166715]
+- crypto: dh - limit key size to 2048 in FIPS mode (Vladis Dronov) [2166715]
+- crypto: rsa - limit key size to 2048 in FIPS mode (Vladis Dronov) [2166715]
+
+* Wed Feb 15 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-472.el8]
+- netfilter: flowtable_offload: add missing locking (Florian Westphal) [2134371]
+- netfilter: ipset: Rework long task execution when adding/deleting entries (Florian Westphal) [2134371]
+- netfilter: ipset: fix hash:net,port,net hang with /0 subnet (Florian Westphal) [2134371]
+- netfilter: ipset: regression in ip_set_hash_ip.c (Florian Westphal) [2134371]
+- netfilter: ipset: Limit the maximal range of consecutive elements to add/delete (Florian Westphal) [2134371]
+- netfilter: flowtable: really fix NAT IPv6 offload (Florian Westphal) [2134371]
+- netfilter: nft_set_pipapo: Actually validate intervals in fields after the first one (Florian Westphal) [2134371]
+- netfilter: Cleanup nft_net->module_list from nf_tables_exit_net() (Florian Westphal) [2134371]
+- netfilter: nf_tables: fix nft_counters_enabled underflow at nf_tables_addchain() (Florian Westphal) [2134371]
+- netfilter: nf_tables: do not leave chain stats enabled on error (Florian Westphal) [2134371]
+- ipvs: use explicitly signed chars (Florian Westphal) [2134371]
+- netfilter: nf_tables: release flow rule object from commit path (Florian Westphal) [2134371]
+- netfilter: nf_tables: fix percpu memory leak at nf_tables_addchain() (Florian Westphal) [2134371]
+- netfilter: nf_tables: clean up hook list when offload flags check fails (Florian Westphal) [2134371]
+- netfilter: br_netfilter: Drop dst references before setting. (Florian Westphal) [2134371]
+- netfilter: nft_tproxy: restrict to prerouting hook (Florian Westphal) [2134371]
+- netfilter: ebtables: fix memory leak when blob is malformed (Florian Westphal) [2134371]
+- netfilter: ebtables: reject blobs that don't provide all entry points (Florian Westphal) [2134371]
+- netfilter: nf_tables: check NFT_SET_CONCAT flag if field_count is specified (Florian Westphal) [2134371]
+- netfilter: nf_tables: relax NFTA_SET_ELEM_KEY_END set flags requirements (Florian Westphal) [2134371]
+- netfilter: nf_tables: NFTA_SET_ELEM_KEY_END requires concat and interval flags (Florian Westphal) [2134371]
+- netfilter: nf_tables: validate NFTA_SET_ELEM_OBJREF based on NFT_SET_OBJECT flag (Florian Westphal) [2134371]
+- netfilter: nf_tables: possible module reference underflow in error path (Florian Westphal) [2134371]
+- netfilter: nf_tables: disallow NFTA_SET_ELEM_KEY_END with NFT_SET_ELEM_INTERVAL_END flag (Florian Westphal) [2134371]
+- netfilter: nf_tables: use READ_ONCE and WRITE_ONCE for shared generation id access (Florian Westphal) [2134371]
+- netfilter: nf_tables: fix null deref due to zeroed list head (Florian Westphal) [2134371]
+
+* Wed Feb 15 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-471.el8]
+- bnxt_en: fix memory leak in bnxt_nvm_test() (Ken Cox) [2112186]
+- bnxt_en: Fix HDS and jumbo thresholds for RX packets (Ken Cox) [2112186]
+- bnxt_en: Fix first buffer size calculations for XDP multi-buffer (Ken Cox) [2112186]
+- bnxt_en: Fix XDP RX path (Ken Cox) [2112186]
+- bnxt_en: Simplify bnxt_xdp_buff_init() (Ken Cox) [2112186]
+- bnxt: prevent skb UAF after handing over to PTP worker (Ken Cox) [2112186]
+- bnxt_en: fix flags to check for supported fw version (Ken Cox) [2112186]
+- net: ethernet: move from strlcpy with unused retval to strscpy (Ken Cox) [2112186]
+- bnxt_en: fix NQ resource accounting during vf creation on 57500 chips (Ken Cox) [2112186]
+- bnxt_en: set missing reload flag in devlink features (Ken Cox) [2112186]
+- bnxt_en: Use PAGE_SIZE to init buffer when multi buffer XDP is not in use (Ken Cox) [2112186]
+- bnxt_en: Remove duplicated include bnxt_devlink.c (Ken Cox) [2112186]
+- bnxt_en: implement callbacks for devlink selftests (Ken Cox) [2112186]
+- bnxt_en: Fix bnxt_refclk_read() (Ken Cox) [2112186]
+- bnxt_en: fix livepatch query (Ken Cox) [2112186]
+- bnxt_en: Fix bnxt_reinit_after_abort() code path (Ken Cox) [2112186]
+- bnxt_en: reclaim max resources if sriov enable fails (Ken Cox) [2112186]
+- bnxt: Use the bitmap API to allocate bitmaps (Ken Cox) [2112186]
+- bnxt: Fix typo in comments (Ken Cox) [2112186]
+- eth: bnxt: make ulp_id unsigned to make GCC 12 happy (Ken Cox) [2112186]
+- bnxt_en: Enable packet timestamping for all RX packets (Ken Cox) [2112186]
+- bnxt_en: Configure ptp filters during bnxt open (Ken Cox) [2112186]
+- bnxt_en: Update firmware interface to 1.10.2.95 (Ken Cox) [2112186]
+- bnxt: add page_pool support for aggregation ring when using xdp (Ken Cox) [2112186]
+- bnxt: change receive ring space parameters (Ken Cox) [2112186]
+- bnxt: rename bnxt_rx_pages to bnxt_rx_agg_pages_skb (Ken Cox) [2112186]
+- bnxt: refactor bnxt_rx_pages operate on skb_shared_info (Ken Cox) [2112186]
+- bnxt: add flag to denote that an xdp program is currently attached (Ken Cox) [2112186]
+- bnxt: refactor bnxt_rx_xdp to separate xdp_init_buff/xdp_prepare_buff (Ken Cox) [2112186]
+- bnxt: report header-data split state (Ken Cox) [2112186]
+- net: Don't include filter.h from net/sock.h (Ken Cox) [2112186]
+- ethernet: constify references to netdev->dev_addr in drivers (Ken Cox) [2112186]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Ken Cox) [2112186]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Ken Cox) [2112186]
+- bnxt_en: Use struct_group_attr() for memcpy() region (Ken Cox) [2112186]
+- net: don't include ethtool.h from netdevice.h (Ken Cox) [2112186]
+- treewide: Use fallthrough pseudo-keyword (Ken Cox) [2112186]
+- net: Use skb_frag_off accessors (Ken Cox) [2112186]
+- net: Use skb accessors in network drivers (Ken Cox) [2112186]
+- ethernet: remove redundant memset (Ken Cox) [2112186]
+- treewide: Add SPDX license identifier - Makefile/Kconfig (Ken Cox) [2112186]
+
+* Wed Feb 15 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-470.el8]
+- ASoC: amd: renoir: Add a module parameter to influence pdm_gain (Jaroslav Kysela) [2169761]
+- ASoC: amd: renoir: Adjust the gain for PDM DMIC (Jaroslav Kysela) [2169761]
+- ASoC: amd: yc: Add a module parameter to influence pdm_gain (Jaroslav Kysela) [2169761]
+- ASoC: amd: yc: Adjust the gain for PDM DMIC (Jaroslav Kysela) [2169761]
+- genirq: Fix reference leaks on irq affinity notifiers (Ricardo Robaina) [2154842]
+- genirq: Prevent use-after-free and work list corruption (Ricardo Robaina) [2154842]
+- perf/x86/uncore: Don't WARN_ON_ONCE() for a broken discovery table (Michael Petlan) [2154044]
+- perf/x86/uncore: Add a quirk for UPI on SPR (Michael Petlan) [2154044]
+- perf/x86/uncore: Ignore broken units in discovery table (Michael Petlan) [2154044]
+- perf/x86/uncore: Fix potential NULL pointer in uncore_get_alias_name (Michael Petlan) [2154044]
+- perf/x86/uncore: Factor out uncore_device_to_die() (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Support extra IMC channel on Ice Lake server (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix CAS_COUNT_WRITE issue for ICX (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix IIO event constraints for Snowridge (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix IIO event constraints for Skylake Server (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix Intel ICX IIO event constraints (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix reference count leak in __uncore_imc_init_box() (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix reference count leak in snr_uncore_mmio_map() (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox() (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Fix reference count leak in sad_cfg_iio_topology() (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Make set_mapping() procedure void (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Update sysfs-devices-mapping file (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Enable UPI topology discovery for Sapphire Rapids (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Enable UPI topology discovery for Icelake Server (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Get UPI NodeID and GroupID (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Enable UPI topology discovery for Skylake Server (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Generalize get_topology() for SKX PMUs (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Disable I/O stacks to PMU mapping on ICX-D (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Clear attr_update properly (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Introduce UPI topology type (Michael Petlan) [2154044]
+- perf/x86/intel/uncore: Generalize IIO topology support (Michael Petlan) [2154044]
+
+* Wed Feb 15 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-469.el8]
+- net/mlx4: Check retval of mlx4_bitmap_init (Amir Tzin) [2150787]
+- net/mlx4: Fix error check for dma_map_sg (Amir Tzin) [2150787]
+- net/mlx4_en: Fix wrong return value on ioctl EEPROM query failure (Amir Tzin) [2150787]
+- RDMA/mlx4: Avoid flush_scheduled_work() usage (Amir Tzin) [2150787]
+- net: mellanox: fix open-coded for_each_set_bit() (Amir Tzin) [2150787]
+- tracing: Add linear buckets to histogram logic (Jerome Marchand) [2161509]
+- configs/generic: enable CONFIG_RTC_SYSTOHC (Marcelo Tosatti) [2135417]
+- watchdog: fix UAF in reboot notifier handling in watchdog core code (Wander Lairson Costa) [2131308]
+
+* Tue Feb 14 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-468.el8]
+- drm/i915/fbdev: do not create fbdev if HPD is suspended (Jocelyn Falempe) [2156006]
+- drm/i915/fbdev: suspend HPD before fbdev unregistration (Jocelyn Falempe) [2156006]
+- drm/i915/hpd: suspend MST at the end of intel_modeset_driver_remove (Jocelyn Falempe) [2156006]
+- drm/i915/gvt: fix vgpu debugfs clean in remove (Jocelyn Falempe) [2115903]
+- drm/i915/gvt: fix gvt debugfs destroy (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix kernel warning during topology setup (Jocelyn Falempe) [2115903]
+- Revert "drm/amd/display: Enable Freesync Video Mode by default" (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix double release compute pasid (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix kfd_process_device_init_vm error handling (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Fix size validation for non-exclusive domains (v4) (Jocelyn Falempe) [2115903]
+- drm/i915/gvt: fix double free bug in split_2MB_gtt_entry (Jocelyn Falempe) [2115903]
+- drm/i915: unpin on error in intel_vgpu_shadow_mm_pin() (Jocelyn Falempe) [2115903]
+- drm/amd/pm: correct the fan speed retrieving in PWM for some SMU13 asics (Jocelyn Falempe) [2115903]
+- drm/amd/pm: bump SMU13.0.0 driver_if header to version 0x34 (Jocelyn Falempe) [2115903]
+- drm/amd/pm: add missing SMU13.0.7 mm_dpm feature mapping (Jocelyn Falempe) [2115903]
+- drm/amd/pm: add missing SMU13.0.0 mm_dpm feature mapping (Jocelyn Falempe) [2115903]
+- drm/i915/migrate: Account for the reserved_space (Jocelyn Falempe) [2115903]
+- drm/i915: improve the catch-all evict to handle lock contention (Jocelyn Falempe) [2115903]
+- drm/amdgpu: make display pinning more flexible (v2) (Jocelyn Falempe) [2115903]
+- drm/amdgpu: handle polaris10/11 overlap asics (v2) (Jocelyn Falempe) [2115903]
+- drm/amd/display: Add DCN314 display SG Support (Jocelyn Falempe) [2115903]
+- drm/i915/ttm: consider CCS for backup objects (Jocelyn Falempe) [2115903]
+- drm/i915/dsi: fix VBT send packet port selection for dual link DSI (Jocelyn Falempe) [2115903]
+- drm/vmwgfx: Validate the box size for the snooped cursor (Jocelyn Falempe) [2115903]
+- drm/connector: send hotplug uevent on connector cleanup (Jocelyn Falempe) [2115903]
+- drm/amdgpu: fix mmhub register base coding error (Jocelyn Falempe) [2115903]
+- drm/amd/pm: correct SMU13.0.0 pstate profiling clock settings (Jocelyn Falempe) [2115903]
+- drm/amd/pm: update SMU13.0.0 reported maximum shader clock (Jocelyn Falempe) [2115903]
+- drm/amdgpu: skip MES for S0ix as well since it's part of GFX (Jocelyn Falempe) [2115903]
+- drm/amd/display: revert Disable DRR actions during state commit (Jocelyn Falempe) [2115903]
+- drm/amd/pm: avoid large variable on kernel stack (Jocelyn Falempe) [2115903]
+- drm/i915/display: Don't disable DDI/Transcoder when setting phy test pattern (Jocelyn Falempe) [2115903]
+- drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid() (Jocelyn Falempe) [2115903]
+- drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid() (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix DTBCLK disable requests and SRC_SEL programming (Jocelyn Falempe) [2115903]
+- drm/amd/display: Use the largest vready_offset in pipe group (Jocelyn Falempe) [2115903]
+- drm/amd/display: fix array index out of bound error in bios parser (Jocelyn Falempe) [2115903]
+- drm/amd/display: Workaround to increase phantom pipe vactive in pipesplit (Jocelyn Falempe) [2115903]
+- drm/sti: Use drm_mode_copy() (Jocelyn Falempe) [2115903]
+- drm/amd/display: Disable DRR actions during state commit (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Fix type of second parameter in odn_edit_dpm_table() callback (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Fix type of second parameter in trans_msg() callback (Jocelyn Falempe) [2115903]
+- Revert "drm/amd/display: Limit max DSC target bpp for specific monitors" (Jocelyn Falempe) [2115903]
+- drm/edid: add a quirk for two LG monitors to get them to work on 10bpc (Jocelyn Falempe) [2115903]
+- drm/amd/display: prevent memory leak (Jocelyn Falempe) [2115903]
+- drm/i915/bios: fix a memory leak in generate_lfp_data_ptrs (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix memory leakage (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios() (Jocelyn Falempe) [2115903]
+- drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios() (Jocelyn Falempe) [2115903]
+- amdgpu/nv.c: Corrected typo in the video capabilities resolution (Jocelyn Falempe) [2115903]
+- drm/amd/pm/smu11: BACO is supported when it's in BACO state (Jocelyn Falempe) [2115903]
+- drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe() (Jocelyn Falempe) [2115903]
+- drm/i915/guc: make default_lists const data (Jocelyn Falempe) [2115903]
+- drm/amdgpu: fix pci device refcount leak (Jocelyn Falempe) [2115903]
+- drm/fourcc: Fix vsub/hsub for Q410 and Q401 (Jocelyn Falempe) [2115903]
+- amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table() (Jocelyn Falempe) [2115903]
+- drm/radeon: Add the missed acpi_put_table() to fix memory leak (Jocelyn Falempe) [2115903]
+- drm/ttm: fix undefined behavior in bit shift for TTM_TT_FLAG_PRIV_POPULATED (Jocelyn Falempe) [2115903]
+- drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure (Jocelyn Falempe) [2115903]
+- drm/amd/display: wait for vblank during pipe programming (Jocelyn Falempe) [2115903]
+- drm/i915/guc: Fix GuC error capture sizing estimation and reporting (Jocelyn Falempe) [2115903]
+- drm/i915/guc: Add error-capture init warnings when needed (Jocelyn Falempe) [2115903]
+- drm/i915/guc: Make GuC log sizes runtime configurable (Jocelyn Falempe) [2115903]
+- drm/i915/guc: Fix capture size warning and bump the size (Jocelyn Falempe) [2115903]
+- drm/i915/guc: Add a helper for log buffer size (Jocelyn Falempe) [2115903]
+- drm/i915: Fix compute pre-emption w/a to apply to compute engines (Jocelyn Falempe) [2115903]
+- drm/i915/guc: Limit scheduling properties to avoid overflow (Jocelyn Falempe) [2115903]
+- drm/bridge: it6505: Initialize AUX channel in it6505_i2c_probe (Jocelyn Falempe) [2115903]
+- drm/amdgpu/powerplay/psm: Fix memory leak in power state init (Jocelyn Falempe) [2115903]
+- drm/bridge: adv7533: remove dynamic lane switching from adv7533 bridge (Jocelyn Falempe) [2115903]
+- drm/atomic-helper: Don't allocate new plane state in CRTC check (Jocelyn Falempe) [2115903]
+- drm/amdgpu/vcn: update vcn4 fw shared data structure (Jocelyn Falempe) [2115903]
+- drm: bridge: dw_hdmi: fix preference of RGB modes over YUV420 (Jocelyn Falempe) [2115903]
+- drm/bridge: ti-sn65dsi86: Fix output polarity setting bug (Jocelyn Falempe) [2115903]
+- drm/vmwgfx: Fix race issue calling pin_user_pages (Jocelyn Falempe) [2115903]
+- drm/shmem-helper: Avoid vm_open error paths (Jocelyn Falempe) [2115903]
+- drm/shmem-helper: Remove errant put in error path (Jocelyn Falempe) [2115903]
+- drm/amd/display: fix array index out of bound error in DCN32 DML (Jocelyn Falempe) [2115903]
+- drm/amdgpu/sdma_v4_0: turn off SDMA ring buffer in the s2idle suspend (Jocelyn Falempe) [2115903]
+- drm/vmwgfx: Don't use screen objects when SEV is active (Jocelyn Falempe) [2115903]
+- drm/amdgpu: fix use-after-free during gpu recovery (Jocelyn Falempe) [2115903]
+- drm/amd/display: Use new num clk levels struct for max mclk index (Jocelyn Falempe) [2115903]
+- drm/amd/display: Avoid setting pixel rate divider to N/A (Jocelyn Falempe) [2115903]
+- drm/amd/display: Use viewport height for subvp mall allocation size (Jocelyn Falempe) [2115903]
+- drm/i915: Remove non-existent pipes from bigjoiner pipe mask (Jocelyn Falempe) [2115903]
+- drm/i915: Never return 0 if not all requests retired (Jocelyn Falempe) [2115903]
+- drm/i915: Fix negative value passed as remaining time (Jocelyn Falempe) [2115903]
+- drm/amdgpu: enable Vangogh VCN indirect sram mode (Jocelyn Falempe) [2115903]
+- drm/amdgpu: temporarily disable broken Clang builds due to blown stack-frame (Jocelyn Falempe) [2115903]
+- drm/amd/pm: update driver if header for smu_13_0_7 (Jocelyn Falempe) [2115903]
+- drm/amd/pm: update driver-if header for smu_v13_0_10 (Jocelyn Falempe) [2115903]
+- drm/amd/pm: add smu_v13_0_10 driver if version (Jocelyn Falempe) [2115903]
+- drm/amdgpu: fix userptr HMM range handling v2 (Jocelyn Falempe) [2115903]
+- drm/amdgpu: cleanup error handling in amdgpu_cs_parser_bos (Jocelyn Falempe) [2115903]
+- drm/amdgpu: move setting the job resources (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Partially revert "drm/amdgpu: update drm_display_info correctly when the edid is read" (Jocelyn Falempe) [2115903]
+- drm/amdgpu: always register an MMU notifier for userptr (Jocelyn Falempe) [2115903]
+- drm/amd/display: Update soc bounding box for dcn32/dcn321 (Jocelyn Falempe) [2115903]
+- drm/amd/amdgpu: reserve vm invalidation engine for firmware (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Enable Aldebaran devices to report CU Occupancy (Jocelyn Falempe) [2115903]
+- drm/amdgpu/psp: don't free PSP buffers on suspend (Jocelyn Falempe) [2115903]
+- drm/amd/display: No display after resume from WB/CB (Jocelyn Falempe) [2115903]
+- drm/amd/dc/dce120: Fix audio register mapping, stop triggering KASAN (Jocelyn Falempe) [2115903]
+- drm/display/dp_mst: Fix drm_dp_mst_add_affected_dsc_crtcs() return code (Jocelyn Falempe) [2115903]
+- drm/i915/ttm: never purge busy objects (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix a memory limit issue (Jocelyn Falempe) [2115903]
+- drm/amdgpu: disable BACO support on more cards (Jocelyn Falempe) [2115903]
+- drm/amd/display: use uclk pstate latency for fw assisted mclk validation dcn32 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix calculation for cursor CAB allocation (Jocelyn Falempe) [2115903]
+- drm/amd/display: Update MALL SS NumWays calculation (Jocelyn Falempe) [2115903]
+- drm/amd/display: Add debug option for allocating extra way for cursor (Jocelyn Falempe) [2115903]
+- drm/amd/display: Added debug option for forcing subvp num ways (Jocelyn Falempe) [2115903]
+- drm/amdkfd: update GFX11 CWSR trap handler (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Enable SA software trap. (Jocelyn Falempe) [2115903]
+- dma-buf: Use dma_fence_unwrap_for_each when importing fences (Jocelyn Falempe) [2115903]
+- dma-buf: fix racing conflict of dma_heap_add() (Jocelyn Falempe) [2115903]
+- drm/i915: Fix warn in intel_display_power_*_domain() functions (Jocelyn Falempe) [2115903]
+- drm/amd/display: only fill dirty rectangles when PSR is enabled (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Drop eviction lock when allocating PT BO (Jocelyn Falempe) [2115903]
+- Revert "drm/amdgpu: Revert "drm/amdgpu: getting fan speed pwm for vega10 properly"" (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix gpio port mapping issue (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix FCLK deviation and tool compile issues (Jocelyn Falempe) [2115903]
+- drm/amd/display: Zeromem mypipe heap struct before using it (Jocelyn Falempe) [2115903]
+- drm: panel-orientation-quirks: Add quirk for Acer Switch V 10 (SW5-017) (Jocelyn Falempe) [2115903]
+- drm: panel-orientation-quirks: Add quirk for Nanote UMPC-01 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix prefetch calculations for dcn32 (Jocelyn Falempe) [2115903]
+- drm/amd/display: don't enable DRM CRTC degamma property for DCE (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix optc2_configure warning on dcn314 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Support parsing VRAM info v3.0 from VBIOS (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix access timeout to DPIA AUX at boot time (Jocelyn Falempe) [2115903]
+- drm/amd/display: Add HUBP surface flip interrupt handler (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix invalid DPIA AUX reply causing system hang (Jocelyn Falempe) [2115903]
+- drm/display: Don't assume dual mode adaptors support i2c sub-addressing (Jocelyn Falempe) [2115903]
+- drm/amd/pm: fix SMU13 runpm hang due to unintentional workaround (Jocelyn Falempe) [2115903]
+- drm/amd/pm: enable runpm support over BACO for SMU13.0.0 (Jocelyn Falempe) [2115903]
+- drm/amd/pm: enable runpm support over BACO for SMU13.0.7 (Jocelyn Falempe) [2115903]
+- drm: Fix potential null-ptr-deref in drm_vblank_destroy_worker() (Jocelyn Falempe) [2115903]
+- drm/drv: Fix potential memory leak in drm_dev_init() (Jocelyn Falempe) [2115903]
+- drm/panel: simple: set bpc field for logic technologies displays (Jocelyn Falempe) [2115903]
+- drm/amd/display: Investigate tool reported FCLK P-state deviations (Jocelyn Falempe) [2115903]
+- drm/amd/display: Round up DST_after_scaler to nearest int (Jocelyn Falempe) [2115903]
+- drm/amd/display: Use forced DSC bpp in DML (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix DCN32 DSC delay calculation (Jocelyn Falempe) [2115903]
+- drm/amd: Fail the suspend if resources can't be evicted (Jocelyn Falempe) [2115903]
+- drm/amdgpu: set fb_modifiers_not_supported in vkms (Jocelyn Falempe) [2115903]
+- drm/amd/display: Enable timing sync on DCN32 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Ignore Cable ID Feature (Jocelyn Falempe) [2115903]
+- drm/imx: imx-tve: Fix return type of imx_tve_connector_mode_valid (Jocelyn Falempe) [2115903]
+- drm/scheduler: fix fence ref counting (Jocelyn Falempe) [2115903]
+- drm/amd/display: Don't return false if no stream (Jocelyn Falempe) [2115903]
+- drm/amd/display: Remove wrong pipe control lock (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Adjust MES polling timeout for sriov (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Migrate in CPU page fault use current mm (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix error handling in kfd_criu_restore_events (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix error handling in criu_checkpoint (Jocelyn Falempe) [2115903]
+- drm/amdgpu: disable BACO on special BEIGE_GOBY card (Jocelyn Falempe) [2115903]
+- drm/amdgpu: workaround for TLB seq race (Jocelyn Falempe) [2115903]
+- drm/amd/display: Update SR watermarks for DCN314 (Jocelyn Falempe) [2115903]
+- drm/amd/pm: update SMU IP v13.0.4 msg interface header (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix reg timeout in enc314_enable_fifo (Jocelyn Falempe) [2115903]
+- drm/i915/dmabuf: fix sg_table handling in map_dma_buf (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Fix the lpfn checking condition in drm buddy (Jocelyn Falempe) [2115903]
+- drm/i915: Do not set cache_dirty for DGFX (Jocelyn Falempe) [2115903]
+- drm/i915/psr: Send update also on invalidate (Jocelyn Falempe) [2115903]
+- drm/vc4: Fix missing platform_unregister_drivers() call in vc4_drm_register() (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix NULL pointer dereference in svm_migrate_to_ram() (Jocelyn Falempe) [2115903]
+- drm/amdkfd: handle CPU fault on COW mapping (Jocelyn Falempe) [2115903]
+- drm/amd/display: Set memclk levels to be at least 1 for dcn32 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Limit dcn32 to 1950Mhz display clock (Jocelyn Falempe) [2115903]
+- drm/amd/display: Acquire FCLK DPM levels on DCN32 (Jocelyn Falempe) [2115903]
+- drm/i915/sdvo: Grab mode_config.mutex during LVDS init to avoid WARNs (Jocelyn Falempe) [2115903]
+- drm/i915: Simplify intel_panel_add_edid_alt_fixed_modes() (Jocelyn Falempe) [2115903]
+- drm/i915: Allow more varied alternate fixed modes for panels (Jocelyn Falempe) [2115903]
+- drm/i915/sdvo: Setup DDC fully before output init (Jocelyn Falempe) [2115903]
+- drm/i915/sdvo: Filter out invalid outputs more sensibly (Jocelyn Falempe) [2115903]
+- drm/amd/display: Update DSC capabilitie for DCN314 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Update latencies on DCN321 (Jocelyn Falempe) [2115903]
+- drm/amdgpu: disable GFXOFF during compute for GFX11 (Jocelyn Falempe) [2115903]
+- drm/i915: stop abusing swiotlb_max_segment (Jocelyn Falempe) [2115903]
+- drm/rockchip: fix fbdev on non-IOMMU devices (Jocelyn Falempe) [2115903]
+- drm/rockchip: dw_hdmi: filter regulator -EPROBE_DEFER error messages (Jocelyn Falempe) [2115903]
+- drm/amdgpu: dequeue mes scheduler during fini (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Program GC registers through RLCG interface in gfx_v11/gmc_v11 (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix type of reset_type parameter in hqd_destroy() callback (Jocelyn Falempe) [2115903]
+- drm/amd/pm: skip loading pptable from driver on secure board for smu_v13_0_10 (Jocelyn Falempe) [2115903]
+- drm/amdgpu: set vm_update_mode=0 as default for Sienna Cichlid in SRIOV case (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix memory leak in kfd_mem_dmamap_userptr() (Jocelyn Falempe) [2115903]
+- drm/i915/dp: Reset frl trained flag before restarting FRL training (Jocelyn Falempe) [2115903]
+- drm/i915/dgfx: Keep PCI autosuspend control 'on' by default on all dGPU (Jocelyn Falempe) [2115903]
+- drm/bridge: ps8640: Add back the 50 ms mystery delay after HPD (Jocelyn Falempe) [2115903]
+- drm/msm: Fix return type of mdp4_lvds_connector_mode_valid (Jocelyn Falempe) [2115903]
+- drm/msm/hdmi: fix memory corruption with too many bridges (Jocelyn Falempe) [2115903]
+- drm/msm/dsi: fix memory corruption with too many bridges (Jocelyn Falempe) [2115903]
+- drm/amdkfd: correct the cache info for gfx1036 (Jocelyn Falempe) [2115903]
+- drm/amdkfd: update gfx1037 Lx cache setting (Jocelyn Falempe) [2115903]
+- drm/amd/display: Revert logic for plane modifiers (Jocelyn Falempe) [2115903]
+- drm/amdgpu: fix pstate setting issue (Jocelyn Falempe) [2115903]
+- drm/amdgpu: disallow gfxoff until GC IP blocks complete s2idle resume (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Remove ATC L2 access for MMHUB 2.1.x (Jocelyn Falempe) [2115903]
+- drm/i915: Extend Wa_1607297627 to Alderlake-P (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Fix for BO move issue (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Fix VRAM BO swap issue (Jocelyn Falempe) [2115903]
+- drm/vc4: Add module dependency on hdmi-codec (Jocelyn Falempe) [2115903]
+- drm/amdgpu: fix sdma doorbell init ordering on APUs (Jocelyn Falempe) [2115903]
+- drm/amd/pm: update SMU IP v13.0.4 driver interface version (Jocelyn Falempe) [2115903]
+- drm/amd/pm: fulfill SMU13.0.0 cstate control interface (Jocelyn Falempe) [2115903]
+- drm/amd/pm: disable cstate feature for gpu reset scenario (Jocelyn Falempe) [2115903]
+- drm/amd/pm: add SMU IP v13.0.4 IF version define to V7 (Jocelyn Falempe) [2115903]
+- drm/amd/pm: fulfill SMU13.0.7 cstate control interface (Jocelyn Falempe) [2115903]
+- drm/i915/bios: Use hardcoded fp_timing size for generating LFP data pointers (Jocelyn Falempe) [2115903]
+- drm/i915/bios: Validate fp_timing terminator presence (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n (Jocelyn Falempe) [2115903]
+- Revert "drm/amd/display: correct hostvm flag" (Jocelyn Falempe) [2115903]
+- drm/amdkfd: Fix UBSAN shift-out-of-bounds warning (Jocelyn Falempe) [2115903]
+- drm/amd/display: polling vid stream status in hpo dp blank (Jocelyn Falempe) [2115903]
+- drm/amd/display: Remove interface for periodic interrupt 1 (Jocelyn Falempe) [2115903]
+- drm/dp: Don't rewrite link config when setting phy test pattern (Jocelyn Falempe) [2115903]
+- drm/amdgpu: fix initial connector audio value (Jocelyn Falempe) [2115903]
+- drm/amd/display: correct hostvm flag (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix urgent latency override for DCN32/DCN321 (Jocelyn Falempe) [2115903]
+- drm/amdgpu: SDMA update use unlocked iterator (Jocelyn Falempe) [2115903]
+- drm: panel-orientation-quirks: Add quirk for Aya Neo Air (Jocelyn Falempe) [2115903]
+- drm: panel-orientation-quirks: Add quirk for Anbernic Win600 (Jocelyn Falempe) [2115903]
+- drm/vc4: vec: Fix timings for VEC modes (Jocelyn Falempe) [2115903]
+- drm/admgpu: Skip CG/PG on SOC21 under SRIOV VF (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Skip the program of MMMC_VM_AGP_* in SRIOV on MMHUB v3_0_0 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix variable dereferenced before check (Jocelyn Falempe) [2115903]
+- drm: bridge: dw_hdmi: only trigger hotplug event on link change (Jocelyn Falempe) [2115903]
+- drm/amd: fix potential memory leak (Jocelyn Falempe) [2115903]
+- udmabuf: Set ubuf->sg = NULL if the creation of sg table fails (Jocelyn Falempe) [2115903]
+- drm/amd/display: fix overflow on MIN_I64 definition (Jocelyn Falempe) [2115903]
+- gpu: lontium-lt9611: Fix NULL pointer dereference in lt9611_connector_init() (Jocelyn Falempe) [2115903]
+- drm: Prevent drm_copy_field() to attempt copying a NULL pointer (Jocelyn Falempe) [2115903]
+- drm: Use size_t type for len variable in drm_copy_field() (Jocelyn Falempe) [2115903]
+- drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() (Jocelyn Falempe) [2115903]
+- virtio-gpu: fix shift wrapping bug in virtio_gpu_fence_event_create() (Jocelyn Falempe) [2115903]
+- drm/vmwgfx: Fix memory leak in vmw_mksstat_add_ioctl() (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Fix memory leak in hpd_rx_irq_create_workqueue() (Jocelyn Falempe) [2115903]
+- drm/bochs: fix blanking (Jocelyn Falempe) [2115903]
+- drm/virtio: set fb_modifiers_not_supported (Jocelyn Falempe) [2115903]
+- drm/bridge: it6505: Fix the order of DP_SET_POWER commands (Jocelyn Falempe) [2115903]
+- drm/bridge: megachips: Fix a null pointer dereference bug (Jocelyn Falempe) [2115903]
+- drm/amdgpu: add missing pci_disable_device() in amdgpu_pmops_runtime_resume() (Jocelyn Falempe) [2115903]
+- drm: fix drm_mipi_dbi build errors (Jocelyn Falempe) [2115903]
+- drm/panel: use 'select' for Ili9341 panel driver helpers (Jocelyn Falempe) [2115903]
+- drm/virtio: Fix same-context optimization (Jocelyn Falempe) [2115903]
+- drm/i915/dg2: Bump up CDCLK for DG2 (Jocelyn Falempe) [2115903]
+- drm/dp_mst: fix drm_dp_dpcd_read return value checks (Jocelyn Falempe) [2115903]
+- drm/format-helper: Fix test on big endian architectures (Jocelyn Falempe) [2115903]
+- drm/bridge: parade-ps8640: Fix regulator supply order (Jocelyn Falempe) [2115903]
+- drm/bridge: tc358767: Add of_node_put() when breaking out of loop (Jocelyn Falempe) [2115903]
+- drm/bridge: anx7625: Fix refcount bug in anx7625_parse_dt() (Jocelyn Falempe) [2115903]
+- drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling (Jocelyn Falempe) [2115903]
+- drm/bridge: it6505: Power on downstream device in .atomic_enable (Jocelyn Falempe) [2115903]
+- drm/mipi-dsi: Detach devices when removing the host (Jocelyn Falempe) [2115903]
+- drm/bridge: Avoid uninitialized variable warning (Jocelyn Falempe) [2115903]
+- drm: bridge: adv7511: unregister cec i2c device after cec adapter (Jocelyn Falempe) [2115903]
+- drm: bridge: adv7511: fix CEC power down control register offset (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Enable F32_WPTR_POLL_ENABLE in mqd (Jocelyn Falempe) [2115903]
+- drm/amdgpu: Enable VCN PG on GC11_0_1 (Jocelyn Falempe) [2115903]
+- drm/amd/display: explicitly disable psr_feature_enable appropriately (Jocelyn Falempe) [2115903]
+- drm/amd/display: Add HUBP surface flip interrupt handler (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix vblank refcount in vrr transition (Jocelyn Falempe) [2115903]
+- drm/amd/display: Enable 2 to 1 ODM policy if supported (Jocelyn Falempe) [2115903]
+- drm/amd/display: Enable dpia support for dcn314 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Validate DSC After Enable All New CRTCs (Jocelyn Falempe) [2115903]
+- drm/amd/display: zeromem mypipe heap struct before using it (Jocelyn Falempe) [2115903]
+- drm/amd/display: Update PMFW z-state interface for DCN314 (Jocelyn Falempe) [2115903]
+- drm/amd/display: Fix watermark calculation (Jocelyn Falempe) [2115903]
+- drm/i915: Fix display problems after resume (Jocelyn Falempe) [2115903]
+- drm/i915/guc: Fix revocation of non-persistent contexts (Jocelyn Falempe) [2115903]
+- drm/i915/gt: Use i915_vm_put on ppgtt_create error paths (Jocelyn Falempe) [2115903]
+- drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() (Jocelyn Falempe) [2115903]
+- drm/udl: Restore display mode on resume (Jocelyn Falempe) [2115903]
+- drm/virtio: Use appropriate atomic state in virtio_gpu_plane_cleanup_fb() (Jocelyn Falempe) [2115903]
+- drm/virtio: Unlock reservations on dma_resv_reserve_fences() error (Jocelyn Falempe) [2115903]
+- drm/virtio: Unlock reservations on virtio_gpu_object_shmem_init() error (Jocelyn Falempe) [2115903]
+- drm/virtio: Check whether transferred 2D BO is shmem (Jocelyn Falempe) [2115903]
+- Revert "drm/amdgpu: use dirty framebuffer helper" (Jocelyn Falempe) [2115903]
+
+* Mon Feb 13 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-467.el8]
+- nvme: fix SRCU protection of nvme_ns_head list (Ewan D. Milne) [2113865]
+- perf vendor events power10: Fix hv-24x7 metric events (Mamatha Inamdar) [2149192]
+- perf tests: Fix 'perf probe' error log check in skip_if_no_debuginfo (Mamatha Inamdar) [2149192]
+- perf tests: Fix *probe_vfs_getname.sh test failures (Mamatha Inamdar) [2149192]
+- blk-cgroup: Optimize blkcg_rstat_flush() (Waiman Long) [2162173]
+- blk-cgroup: Return -ENOMEM directly in blkcg_css_alloc() error path (Waiman Long) [2162173]
+- blk-cgroup: factor out blkcg_iostat_update() (Waiman Long) [2162173]
+- mm/memcg: Free percpu stats memory of dying memcg's again (Waiman Long) [2162173]
+- memcg: sync flush only if periodic flush is delayed (Waiman Long) [2162173]
+- memcg: better bounds on the memcg stats updates (Waiman Long) [2162173]
+- memcg: unify memcg stat flushing (Waiman Long) [2162173]
+- memcg: flush stats only if updated (Waiman Long) [2162173]
+- memcg: flush lruvec stats in the refault (Waiman Long) [2162173]
+- memcg: infrastructure to flush memcg stats (Waiman Long) [2162173]
+- memcg: switch lruvec stats to rstat (Waiman Long) [2162173]
+- mm/memcg: Remove mem_cgroup_per_node from being kABI protected (Waiman Long) [2162173]
+- mm/memcg: Revert "Free percpu stats memory of dying memcg's" (Waiman Long) [2162173]
+
+* Mon Feb 13 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-466.el8]
+- virt/sev-guest: Prevent IV reuse in the SNP guest driver (John Allen) [2087262]
+- virt/sev-guest: Add a MODULE_ALIAS (John Allen) [2087262]
+- virt/sev-guest: Remove unnecessary free in init_crypto() (John Allen) [2087262]
+- x86/sev: Don't use cc_platform_has() for early SEV-SNP calls (John Allen) [2087262]
+- x86/boot: Don't propagate uninitialized boot_params->cc_blob_address (John Allen) [2087262]
+- x86/idt: Rework IDT setup for boot CPU (John Allen) [2087262]
+- x86/cpu: Init AP exception handling from cpu_init_secondary() (John Allen) [2087262]
+- x86/idt: Cleanup trap_init() (John Allen) [2087262]
+- x86/idt: Annotate alloc_intr_gate() with __init (John Allen) [2087262]
+- redhat/configs: enable CONFIG_SEV_GUEST (John Allen) [2087262]
+- virt: sev-guest: Pass the appropriate argument type to iounmap() (John Allen) [2087262]
+- x86/compressed/64: Add identity mappings for setup_data entries (John Allen) [2087262]
+- x86/sev: Mark the code returning to user space as syscall gap (John Allen) [2087262]
+- x86/sev: Annotate stack change in the #VC handler (John Allen) [2087262]
+- x86/sev: Remove duplicated assignment to variable info (John Allen) [2087262]
+- x86/sev: Fix address space sparse warning (John Allen) [2087262]
+- x86/sev: Get the AP jump table address from secrets page (John Allen) [2087262]
+- x86/sev: Add missing __init annotations to SEV init routines (John Allen) [2087262]
+- virt: sevguest: Rename the sevguest dir and files to sev-guest (John Allen) [2087262]
+- virt: sevguest: Change driver name to reflect generic SEV support (John Allen) [2087262]
+- x86/boot: Put globals that are accessed early into the .data section (John Allen) [2087262]
+- x86/boot: Add an efi.h header for the decompressor (John Allen) [2087262]
+- virt: sevguest: Fix bool function returning negative value (John Allen) [2087262]
+- virt: sevguest: Fix return value check in alloc_shared_pages() (John Allen) [2087262]
+- x86/sev: Unroll string mmio with CC_ATTR_GUEST_UNROLL_STRING_IO (John Allen) [2087262]
+- x86/sev-es: Replace open-coded hlt-loop with sev_es_terminate() (John Allen) [2087262]
+- virt: sevguest: Add documentation for SEV-SNP CPUID Enforcement (John Allen) [2087262]
+- virt: sevguest: Add support to get extended report (John Allen) [2087262]
+- virt: sevguest: Add support to derive key (John Allen) [2087262]
+- virt: Add SEV-SNP guest driver (John Allen) [2087262]
+- x86/sev: Register SEV-SNP guest request platform device (John Allen) [2087262]
+- x86/sev: Provide support for SNP guest request NAEs (John Allen) [2087262]
+- x86/sev: Add a sev= cmdline option (John Allen) [2087262]
+- x86/sev: Use firmware-validated CPUID for SEV-SNP guests (John Allen) [2087262]
+- x86/sev: Add SEV-SNP feature detection/setup (John Allen) [2087262]
+- x86/sev: Check SME/SEV support in CPUID first (John Allen) [2087262]
+- x86/compressed/64: Add identity mapping for Confidential Computing blob (John Allen) [2087262]
+- x86/compressed: Export and rename add_identity_map() (John Allen) [2087262]
+- x86/compressed: Use firmware-validated CPUID leaves for SEV-SNP guests (John Allen) [2087262]
+- x86/compressed: Add SEV-SNP feature detection/setup (John Allen) [2087262]
+- x86/boot: Add a pointer to Confidential Computing blob in bootparams (John Allen) [2087262]
+- x86/boot: Preserve boot_params.secure_boot from sanitizing (John Allen) [2087262]
+- x86/boot: Fix boot regression caused by bootparam sanitizing (John Allen) [2087262]
+- x86/boot: Save fields explicitly, zero out everything else (John Allen) [2087262]
+- x86/compressed/64: Add support for SEV-SNP CPUID table in #VC handlers (John Allen) [2087262]
+- x86/sev: Move MSR-based VMGEXITs for CPUID to helper (John Allen) [2087262]
+- KVM: x86: Move lookup of indexed CPUID leafs to helper (John Allen) [2087262]
+- x86/boot: Add Confidential Computing type to setup_data (John Allen) [2087262]
+- x86/compressed/acpi: Move EFI kexec handling into common code (John Allen) [2087262]
+- x86/compressed/acpi: Move EFI vendor table lookup to helper (John Allen) [2087262]
+- x86/compressed/acpi: Move EFI config table lookup to helper (John Allen) [2087262]
+- x86/compressed/acpi: Move EFI system table lookup to helper (John Allen) [2087262]
+- x86/compressed/acpi: Move EFI detection to helper (John Allen) [2087262]
+- x86/head/64: Re-enable stack protection (John Allen) [2087262]
+- x86/sev: Use SEV-SNP AP creation to start secondary CPUs (John Allen) [2087262]
+- x86/apic/of: Fix CPU devicetree-node lookups (John Allen) [2087262]
+- x86/mm: Validate memory when changing the C-bit (John Allen) [2087262]
+- x86/kernel: Validate ROM memory before accessing when SEV-SNP is active (John Allen) [2087262]
+- x86/kernel: Mark the .bss..decrypted section as shared in the RMP table (John Allen) [2087262]
+- x86/sev: Add helper for validating pages in early enc attribute changes (John Allen) [2087262]
+- x86/sev: Register GHCB memory when SEV-SNP is active (John Allen) [2087262]
+- x86/compressed: Register GHCB memory when SEV-SNP is active (John Allen) [2087262]
+- x86/compressed: Add helper for validating pages in the decompression stage (John Allen) [2087262]
+- x86/sev: Check the VMPL level (John Allen) [2087262]
+- x86/sev: Add a helper for the PVALIDATE instruction (John Allen) [2087262]
+- x86/sev: Check SEV-SNP features support (John Allen) [2087262]
+- x86/mm: Extend cc_attr to include AMD SEV-SNP (John Allen) [2087262]
+- x86/sev: Detect/setup SEV/SME features earlier in boot (John Allen) [2087262]
+- x86/compressed/64: Detect/setup SEV/SME features earlier during boot (John Allen) [2087262]
+- x86/boot: Use MSR read/write helpers instead of inline assembly (John Allen) [2087262]
+- x86/boot: Introduce helpers for MSR reads/writes (John Allen) [2087262]
+- KVM: SVM: Update the SEV-ES save area mapping (John Allen) [2087262]
+- KVM: SVM: Create a separate mapping for the GHCB save area (John Allen) [2087262]
+- KVM: SVM: Create a separate mapping for the SEV-ES save area (John Allen) [2087262]
+- KVM: SVM: Define sev_features and VMPL field in the VMSA (John Allen) [2087262]
+- x86/sev: Remove do_early_exception() forward declarations (John Allen) [2087262]
+- x86/sev: Make the #VC exception stacks part of the default stacks storage (John Allen) [2087262]
+- x86: Increase exception stack sizes (John Allen) [2087262]
+- x86/head64: Carve out the guest encryption postprocessing into a helper (John Allen) [2087262]
+- x86/sev: Get rid of excessive use of defines (John Allen) [2087262]
+- x86/sev: Add defines for GHCB version 2 MSR protocol requests (John Allen) [2087262]
+- x86/sev: Make sure IRQs are disabled while GHCB is active (John Allen) [2087262]
+- x86/sev: Propagate #GP if getting linear instruction address failed (John Allen) [2087262]
+- x86/insn: Extend error reporting from insn_fetch_from_user[_inatomic]() (John Allen) [2087262]
+- x86/sev-es: Convert to insn_decode() (John Allen) [2087262]
+- x86/sev-es: Split vc_decode_insn() (John Allen) [2087262]
+- x86/insn-eval: Make 0 a valid RIP for insn_get_effective_ip() (John Allen) [2087262]
+- x86/sev: Fix error message in runtime #VC handler (John Allen) [2087262]
+- x86/sev-es: Optimize __sev_es_ist_enter() for better readability (John Allen) [2087262]
+- x86/sev: Do not require Hypervisor CPUID bit for SEV guests (John Allen) [2087262]
+- x86/boot/compressed/64: Cleanup exception handling before booting kernel (John Allen) [2087262]
+- x86/sev-es: Remove subtraction of res variable (John Allen) [2087262]
+
+* Thu Feb 09 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-465.el8]
+- net: mlx5: eliminate anonymous module_init & module_exit (Amir Tzin) [2157750]
+- net/mlx5: E-switch, Fix switchdev mode after devlink reload (Amir Tzin) [2157750]
+- net/mlx5e: Set decap action based on attr for sample (Amir Tzin) [2157750]
+- net/mlx5e: QoS, Fix wrongfully setting parent_element_id on MODIFY_SCHEDULING_ELEMENT (Amir Tzin) [2157750]
+- net/mlx5: E-switch, Fix setting of reserved fields on MODIFY_SCHEDULING_ELEMENT (Amir Tzin) [2157750]
+- net/mlx5e: Avoid false lock dependency warning on tc_ht even more (Amir Tzin) [2157750]
+- net/mlx5: fix missing mutex_unlock in mlx5_fw_fatal_reporter_err_work() (Amir Tzin) [2157750]
+- net/mlx5: Fix ptp max frequency adjustment range (Amir Tzin) [2157750]
+- net/mlx5e: IPoIB, Fix child PKEY interface stats on rx path (Amir Tzin) [2157750]
+- net/mlx5e: IPoIB, Block PKEY interfaces with less rx queues than parent (Amir Tzin) [2157750]
+- net/mlx5e: IPoIB, Block queue count configuration when sub interfaces are present (Amir Tzin) [2157750]
+- net/mlx5e: Verify dev is present for fix features ndo (Amir Tzin) [2157750]
+- net/mlx5: Fix command stats access after free (Amir Tzin) [2157750]
+- net/mlx5e: TC, Keep mod hdr actions after mod hdr alloc (Amir Tzin) [2157750]
+- net/mlx5: check attr pointer validity before dereferencing it (Amir Tzin) [2157750]
+- RDMA/mlx5: Fix validation of max_rd_atomic caps for DC (Amir Tzin) [2157750]
+- RDMA/mlx5: Fix mlx5_ib_get_hw_stats when used for device (Amir Tzin) [2157750]
+- net/mlx5e: Set geneve_tlv_option_0_exist when matching on geneve option (Amir Tzin) [2157750]
+- net/mlx5e: Fix hw mtu initializing at XDP SQ allocation (Amir Tzin) [2157750]
+- net/mlx5e: Always clear dest encap in neigh-update-del (Amir Tzin) [2157750]
+- net/mlx5e: CT: Fix ct debugfs folder name (Amir Tzin) [2157750]
+- net/mlx5e: IPoIB, Don't allow CQE compression to be turned on by default (Amir Tzin) [2157750]
+- net/mlx5: Fix RoCE setting at HCA level (Amir Tzin) [2157750]
+- net/mlx5: Avoid recovery in probe flows (Amir Tzin) [2157750]
+- net/mlx5: Fix io_eq_size and event_eq_size params validation (Amir Tzin) [2157750]
+- net/mlx5: Add forgotten cleanup calls into mlx5_init_once() error path (Amir Tzin) [2157750]
+- net/mlx5: E-Switch, properly handle ingress tagged packets on VST (Amir Tzin) [2157750 2096109]
+- dm thin: Use last transaction's pmd->root when commit failed (Benjamin Marzinski) [2162537]
+- dm thin: resume even if in FAIL mode (Benjamin Marzinski) [2162537]
+- dm cache: set needs_check flag after aborting metadata (Benjamin Marzinski) [2162537]
+- dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort (Benjamin Marzinski) [2162537]
+- dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata (Benjamin Marzinski) [2162537]
+- dm integrity: Fix UAF in dm_integrity_dtr() (Benjamin Marzinski) [2162537]
+- dm cache: Fix UAF in destroy() (Benjamin Marzinski) [2162537]
+- dm thin: Fix UAF in run_timer_softirq() (Benjamin Marzinski) [2162537]
+- dm integrity: clear the journal on suspend (Benjamin Marzinski) [2162537]
+- dm integrity: flush the journal on suspend (Benjamin Marzinski) [2162537]
+- dm bufio: Fix missing decrement of no_sleep_enabled if dm_bufio_client_create failed (Benjamin Marzinski) [2162537]
+- dm ioctl: fix misbehavior if list_versions races with module loading (Benjamin Marzinski) [2162537]
+
+* Thu Feb 09 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-464.el8]
+- net: gso: fix panic on frag_list with mixed head alloc types (Jiri Benc) [2136229]
+- futex: Resend potentially swallowed owner death notification (Rafael Aquini) [2161526]
+- Bluetooth: L2CAP: Fix memory leak in vhci_write (Wander Lairson Costa) [2155872] {CVE-2022-3619}
+- net: Use this_cpu_inc() to increment net->core_stats (Antoine Tenart) [2152542]
+- vlan: fix memory leak in vlan_newlink() (Xin Long) [2051415]
+- vlan: move dev_put into vlan_dev_uninit (Xin Long) [2051415]
+- vlan: introduce vlan_dev_free_egress_priority (Xin Long) [2051415]
+- vlan: fix memory leak in vlan_dev_set_egress_priority (Xin Long) [2051415]
+- net: ethernet: move from strlcpy with unused retval to strscpy (Ken Cox) [2103956]
+- intel/ixgbevf:fix repeated words in comments (Ken Cox) [2103956]
+- intel: remove unused macros (Ken Cox) [2103956]
+- ixgbe: propagate XFRM offload state direction instead of flags (Ken Cox) [2103956]
+- ixgbevf: add disable link state (Ken Cox) [2103956]
+- ixgbevf: clean up some inconsistent indenting (Ken Cox) [2103956]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Ken Cox) [2103956]
+- intel: Remove rcu_read_lock() around XDP program invocation (Ken Cox) [2103956]
+
+* Thu Feb 09 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-463.el8]
+- RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. (Kamal Heib) [2141420]
+- cifs: fix use-after-free caused by invalid pointer `hostname` (Ronnie Sahlberg) [2154172]
+- ceph: blocklist the kclient when receiving corrupted snap trace (Xiubo Li) [2162414]
+- ceph: move mount state enum to super.h (Xiubo Li) [2162414]
+- xfs: estimate post-merge refcounts correctly (Bill O'Donnell) [2161678]
+- xfs: hoist refcount record merge predicates (Bill O'Donnell) [2161678]
+- NFS: Fix revalidation of empty readdir pages (Benjamin Coddington) [2166364]
+- NFS: Don't deadlock when cookie hashes collide (Benjamin Coddington) [2166364]
+- locking/rwsem: Disable preemption in all down_read*() and up_read() code paths (Waiman Long) [2162139]
+- locking/rwsem: Prevent non-first waiter from spinning in down_write() slowpath (Waiman Long) [2162139]
+- locking/rwsem: Allow slowpath writer to ignore handoff bit if not set by first waiter (Waiman Long) [2162139]
+- locking/rwsem: Always try to wake waiters in out_nolock path (Waiman Long) [2162139]
+- locking/rwsem: No need to check for handoff bit if wait queue empty (Waiman Long) [2162139]
+- locking/rwsem: Make handoff bit handling more consistent (Waiman Long) [2162139]
+- dax: fix ENOMEM handling in grab_mapping_entry() (Andrey Albershteyn) [2128474]
+- crypto: ccp - Failure on re-initialization due to duplicate sysfs filename (Vladis Dronov) [2130714]
+- crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2 (Vladis Dronov) [2130714]
+- crypto: ccp - Add support for TEE for PCI ID 0x14CA (Vladis Dronov) [2130714]
+- crypto: ccp - Remove unused struct ccp_crypto_cpu (Vladis Dronov) [2130714]
+- crypto: ccp - Add __init/__exit annotations to module init/exit funcs (Vladis Dronov) [2130714]
+- i40e: Fix the inability to attach XDP program on downed interface (Ivan Vecera) [2121511]
+- mm, compaction: fix fast_isolate_around() to stay within boundaries (Daniel Vacek) [2149309]
+
+* Wed Feb 08 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-462.el8]
+- aio: fix mremap after fork null-deref (Jeff Moyer) [2166088]
+- mm/hugetlb: use hugetlb_pte_stable in migration race check (Rafael Aquini) [2158120] {CVE-2022-3522}
+- mm/hugetlb: fix race condition of uffd missing/minor handling (Rafael Aquini) [2158120] {CVE-2022-3522}
+- mm/hugetlb: simplify the code when alloc_huge_page() failed in hugetlb_no_page() (Rafael Aquini) [2158120] {CVE-2022-3522}
+- mm/hugetlb: pass the old pte entry value to hugetlb_no_page() (Rafael Aquini) [2158120] {CVE-2022-3522}
+- perf/arm-cmn: Add more bits to child node address offset field (Charles Mirabile) [2122267]
+- perf/arm-cmn: Decode CAL devices properly in debugfs (Charles Mirabile) [2122267]
+- perf/arm-cmn: Fix filter_sel lookup (Charles Mirabile) [2122267]
+- drivers/perf: arm_spe: Expose saturating counter to 16-bit (Charles Mirabile) [2122267]
+- perf/arm-cmn: Add CMN-700 support (Charles Mirabile) [2122267]
+- perf/arm-cmn: Refactor occupancy filter selector (Charles Mirabile) [2122267]
+- perf/arm-cmn: Add CMN-650 support (Charles Mirabile) [2122267]
+- perf: check return value of armpmu_request_irq() (Charles Mirabile) [2122267]
+- arm_pmu: Validate single/group leader events (Charles Mirabile) [2122267]
+- perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator (Charles Mirabile) [2122267]
+- drivers/perf: arm_pmu: Handle 47 bit counters (Charles Mirabile) [2122267]
+- perf/arm-cmn: Update watchpoint format (Charles Mirabile) [2122267]
+- perf/arm-cmn: Hide XP PUB events for CMN-600 (Charles Mirabile) [2122267]
+- perf: replace bitmap_weight with bitmap_empty where appropriate (Charles Mirabile) [2122267]
+- perf: Replace acpi_bus_get_device() (Charles Mirabile) [2122267]
+- perf/arm-cmn: Make arm_cmn_debugfs static (Charles Mirabile) [2122267]
+- perf/arm-ccn: Use platform_get_irq() to get the interrupt (Charles Mirabile) [2122267]
+- perf/smmuv3: Don't cast parameter in bit operations (Charles Mirabile) [2122267]
+- perf/smmuv3: Use msi_get_virq() (Charles Mirabile) [2122267]
+- perf/smmuv3: Synthesize IIDR from CoreSight ID registers (Charles Mirabile) [2122267]
+- perf/arm-cmn: Add debugfs topology info (Charles Mirabile) [2122267]
+- perf/arm-cmn: Add CI-700 Support (Charles Mirabile) [2122267]
+- perf/arm-cmn: Support new IP features (Charles Mirabile) [2122267]
+- devres: provide devm_krealloc() (Charles Mirabile) [2122267]
+- devres: move the size check from alloc_dr() into a separate function (Charles Mirabile) [2122267]
+- perf/arm-cmn: Demarcate CMN-600 specifics (Charles Mirabile) [2122267]
+- perf/arm-cmn: Move group validation data off-stack (Charles Mirabile) [2122267]
+- perf/arm-cmn: Optimise DTC counter accesses (Charles Mirabile) [2122267]
+- perf/arm-cmn: Optimise DTM counter reads (Charles Mirabile) [2122267]
+- perf/arm-cmn: Refactor DTM handling (Charles Mirabile) [2122267]
+- perf/arm-cmn: Streamline node iteration (Charles Mirabile) [2122267]
+- perf/arm-cmn: Refactor node ID handling (Charles Mirabile) [2122267]
+- perf/arm-cmn: Drop compile-test restriction (Charles Mirabile) [2122267]
+- perf/arm-cmn: Account for NUMA affinity (Charles Mirabile) [2122267]
+- perf/arm-cmn: Fix CPU hotplug unregistration (Charles Mirabile) [2122267]
+- drivers/perf: thunderx2_pmu: Change data in size tx2_uncore_event_update() (Charles Mirabile) [2122267]
+- perf: qcom_l2_pmu: move to use request_irq by IRQF_NO_AUTOEN flag (Charles Mirabile) [2122267]
+- arm_pmu: move to use request_irq by IRQF_NO_AUTOEN flag (Charles Mirabile) [2122267]
+- arm64: perf: Fix 64-bit event counter read truncation (Charles Mirabile) [2122267]
+- drivers/perf: Replace spin_lock_irqsave to spin_lock (Charles Mirabile) [2122267]
+- arm_pmu: arm64: Use NMIs for PMU (Charles Mirabile) [2122267]
+- arm_pmu: Introduce pmu_irq_ops (Charles Mirabile) [2122267]
+- arm64: perf: Defer irq_work to IPI_IRQ_WORK (Charles Mirabile) [2122267]
+- arm64: perf: Remove PMU locking (Charles Mirabile) [2122267]
+- arm64: perf: Avoid PMXEV* indirection (Charles Mirabile) [2122267]
+- arm64: perf: Add missing ISB in armv8pmu_enable_counter() (Charles Mirabile) [2122267]
+- perf: arm_spe: Remove unnecessary zero check on 'nr_pages' (Charles Mirabile) [2122267]
+- drivers/perf: arm_pmu_acpi: Fix incorrect checking of gicc pointer (Charles Mirabile) [2122267]
+- perf/smmuv3: Use platform_get_irq_optional() for wired interrupt (Charles Mirabile) [2122267]
+
+* Wed Feb 08 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-461.el8]
+- wifi: rtw89: Add missing check for alloc_workqueue (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: fix potential leak in rtw89_append_probe_req_ie() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix initialization of rx->link and rx->link_sta (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: Drop stations iterator where the iterator function may sleep (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath9k: use proper statements in conditionals (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix MLO + AP_VLAN check (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: fix coverity uninit_use_in_call in mt76_connac2_reverse_frag0_hdr_trans() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: nl80211: Add checks for nla_nest_start() in nl80211_send_iface() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: Add missing __packed annotation of struct mt7921_clc (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: do not send firmware FW_FEATURE_NON_DL region (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: Fix use after rcu_read_unlock in rtl8xxxu_bss_info_changed (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: fix physts IE page check (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: fix wrong power after multiple SAR set (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: Fix some error handling path in rtw89_core_sta_assoc() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: use u32_encode_bits() to fill MAC quota value (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: fix reporting of TX AGGR histogram (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix ifdef symbol name (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: fix firmware assert during bandwidth change for peer sta (Jose Ignacio Tornos Martinez) [2136125]
+- Revert "mt76: use IEEE80211_OFFLOAD_ENCAP_ENABLED instead of MT_DRV_AMSDU_OFFLOAD" (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: gen2: Turn on the rate control (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: fix warning in dma_free_coherent() of memory chunks while recovery (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: check link ID in auth/assoc continuation (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: mlme: fix null-ptr deref on failed assoc (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: fix multi-link element subelement iteration (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: fix antenna signal are way off in monitor mode (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac8021: fix possible oob access in ieee80211_get_rate_duration (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: don't allow multi-BSSID in S1G (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: fix buffer overflow in elem comparison (Jose Ignacio Tornos Martinez) [2136125]
+- net: mhi: Fix memory leak in mhi_net_dellink() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Fix QCN9074 firmware boot on x86 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: Set TWT Information Frame Disabled bit as 1 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: Fix ack frame idr leak when mesh has no route (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix general-protection-fault in ieee80211_subif_start_xmit() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: fix debugfs attribute ps with rc table support (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: Fix bitrates overflow issue (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: fix memory leak in query_regdb_file() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix memory free error when registering wiphy fail (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: silence a sparse RCU warning (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: use explicitly signed or unsigned types (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: mac: fix reading 16 bytes from a region of size 0 warning (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: fix rx checksum offload on mt7615/mt7915/mt7921 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: fix receiving LLC packets on mt7615/mt7915 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: update hidden BSSes to avoid WARN_ON (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix crash in beacon protection for P2P-device (Jose Ignacio Tornos Martinez) [2136125 2134582] {CVE-2022-42722}
+- wifi: mac80211_hwsim: avoid mac80211 warning on bad rate (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: avoid nontransmitted BSS list corruption (Jose Ignacio Tornos Martinez) [2136125 2134511] {CVE-2022-42721}
+- wifi: cfg80211: fix BSS refcounting bugs (Jose Ignacio Tornos Martinez) [2136125 2134460] {CVE-2022-42720}
+- wifi: cfg80211: ensure length byte is present before access (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix MBSSID parsing use-after-free (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211/mac80211: reject bad MBSSID elements (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: fix u8 overflow in cfg80211_update_notlisted_nontrans() (Jose Ignacio Tornos Martinez) [2136125 2134385] {CVE-2022-41674}
+- wifi: nl80211: Split memcpy() of struct nl80211_wowlan_tcp_data_token flexible array (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: wext: use flex array destination for memcpy() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: fix ieee80211_data_to_8023_exthdr handling of small packets (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: netdev compatible TX stop for iTXQ drivers (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix decap offload for stations on AP_VLAN interfaces (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: unlock on error in ieee80211_can_powered_addr_change() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: remove/avoid misleading prints (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix probe req HE capabilities access (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: do not drop packets smaller than the LLC-SNAP header on fast-rx (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: fix rate reporting / throughput regression on mt7915 and newer (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: Improve rtl8xxxu_queue_select (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: Fix AIFS written to REG_EDCA_*_PARAM (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: gen2: Enable 40 MHz channel width (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852b: configure DLE mem (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: check DLE FIFO size with reserved size (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: mac: correct register of report IMR (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: set power cut closed for 8852be (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: add to do PCI auto calibration (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852b: implement chip_ops::{enable,disable}_bb_rf (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: add DMA busy checking bits to chip info (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: mac: define DMA channel mask to avoid unsupported channels (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: mask out unsupported TX channels (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: Track scan_cmd allocation size explicitly (Jose Ignacio Tornos Martinez) [2136125]
+- brcmfmac: Remove the call to "dtim_assoc" IOVAR (Jose Ignacio Tornos Martinez) [2136125]
+- brcmfmac: increase dcmd maximum buffer size (Jose Ignacio Tornos Martinez) [2136125]
+- brcmfmac: Support 89459 pcie (Jose Ignacio Tornos Martinez) [2136125]
+- brcmfmac: increase default max WOWL patterns to 16 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Fix deadlock during WoWLAN suspend (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Remove redundant ath11k_mac_drain_tx (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Add spectral scan support for 160 MHz (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Add support to get power save duration for each client (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: fix peer addition/deletion error on sta band migration (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support for enable/disable MSDU aggregation (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: disable 26-tone RU HE TB PPDU transmissions (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support for processing P2P power saving (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support WMM-PS in P2P GO mode (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: set wifi_role of P2P (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: send OFDM rate only in P2P mode (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support P2P (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: correctly set BBP register 86 for MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: set SoC wmac clock register (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: set VGC gain for both chains of MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: fix HT20/HT40 bandwidth switch on MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: move helper functions up in file (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: add TX LOFT calibration for MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: add RXIQ calibration for MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: add RXDCOC calibration for MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: add r calibration for MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: add RF self TXDC calibration for MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: move up and reuse busy wait functions (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: add support for external PA on MT7620 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: add throughput LED trigger (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: define RF5592 in init_eeprom routine (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: fix number of VHT beamformee spatial streams (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: retrieve MAC address from system firmware if provided (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: add get_txpower mac ops (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: move firmware stats out of debugfs (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath9k: fix repeated the words in a comment (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath9k: fix repeated to words in a comment (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath10k: reset pointer after memory free to avoid potential use-after-free (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: fix failed to find the peer with peer_id 0 when disconnected (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: change complete() to complete_all() for scan.completed (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: update coexistence to 6.3.0 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: add logic to control BT scan priority (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: summarize Wi-Fi to BT scoreboard and inform BT one time a cycle (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: modify LNA2 setting to avoid BT destroyed Wi-Fi aggregation (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: add WL_S0 hardware TX/RX mask to allow WL_S0 TX/RX during GNT_BT (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: add v1 Wi-Fi firmware steps report (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: add v1 summary info to parse the traffic status from firmware (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: translate slot ID to readable name (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: add v1 cycle report to parsing Bluetooth A2DP status (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mwifiex: fix array of flexible structures warnings (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rndis_wlan: fix array of flexible structures warning (Jose Ignacio Tornos Martinez) [2136125]
+- mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv (Jose Ignacio Tornos Martinez) [2136125]
+- bus: mhi: host: pci_generic: Add a secondary AT port to Telit FN990 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Add WoW support for WCN6750 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Include STA_KEEPALIVE_ARP_RESPONSE TLV header by default (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rt2x00: Fix "Error - Attempt to send packet over invalid queue 2" (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: add multi-port ID to TX descriptor (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: fix rx filter after scan (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: free unused skb to prevent memory leak (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: reset halt registers before turn on wifi CPU (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: update LTR settings (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: mac: set NAV upper to 25ms (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: initialize DMA of CMAC (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support SER L1 simulation (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: support fw crash simulation (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: introudce functions to drop packets (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: unify use of rtw89_h2c_tx() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: concentrate control function of TX DMA channel (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: correct enable functions of HCI/PCI DMA (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: L1 DMA reset has offloaded to FW (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support for setting TID specific configuration (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support for setting HE GI and LTF (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: show connecting state in debug message (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: Combine set grant WL/BT and correct the debug log (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: Remove trace_step at COEX-MECH control structure for RTL8852C (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: Parsing Wi-Fi firmware TDMA info from reports (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: Parsing Wi-Fi firmware error message from reports (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: Move coexistence firmware buffer size parameter to chip info (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: Add v1 Wi-Fi firmware power-saving null data report (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: coex: use void pointer as temporal type to copy report (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: pcie: Add IDs/properties for BCM4378 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: pcie: Support PCIe core revisions >= 64 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: msgbuf: Increase RX ring sizes to 1024 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: firmware: Allow platform to override macaddr (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: pcie: Perform firmware selection for Apple platforms (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: of: Fetch Apple properties (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: pcie: Read Apple OTP information (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: firmware: Support passing in multiple board_types (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: pcie/sdio/usb: Get CLM blob via standard firmware mechanism (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: firmware: Handle per-board clm_blob files (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: d3: parse keys from wowlan info notification (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: iterate over interfaces after an assert in d3 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: trigger resume flow before wait for notifications (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: Add handling for scan offload match info notification (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: enable resume based on notifications (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: Add support for d3 end notification (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: Add support for wowlan wake packet notification (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: Add support for wowlan info notification (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: don't check D0I3 version (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: cfg: remove IWL_DEVICE_BZ_COMMON macro (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: refactor iwl_mvm_set_sta_rate() a bit (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: rxmq: further unify some VHT/HE code (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: rxmq: refactor mac80211 rx_status setting (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: mvm: fix typo in struct iwl_rx_no_data API (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: pcie: add support for BZ devices (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Fix kernel-doc issues (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Fix miscellaneous spelling errors (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath10k: Fix miscellaneous spelling errors (Jose Ignacio Tornos Martinez) [2136125]
+- bus: mhi: host: always print detected modem name (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921s: Switch to DEFINE_SIMPLE_DEV_PM_OPS() and pm_sleep_ptr() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7663s: Switch to DEFINE_SIMPLE_DEV_PM_OPS() and pm_sleep_ptr() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921e: fix random fw download fail (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: introduce Country Location Control support (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921e: fix rmmod crash in driver reload test (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: reset msta->airtime_ac while clearing up hw value (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7915: do not check state before configuring implicit beamform (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: fix uninitialized pointer in mt7921_mac_fill_rx (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7915: fix mcs value in ht mode (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: get rid of the false positive reset (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: connac: fix in comment (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: add PPDU based TxS support for WED device (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: move move mt76_sta_stats to mt76_wcid (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: fix the firmware version report (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_sta_set_decap_offload (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_[start, stop]_ap (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt76_usb.mt76u_mcu.burst is always false remove related code (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7663s: add rx_check callback (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: connac: fix possible unaligned access in mt76_connac_mcu_add_nested_tlv (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7915: fix possible unaligned access in mt7915_mac_add_twt_setup (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7615: add mt7615_mutex_acquire/release in mt7615_sta_set_decap_offload (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: sdio: fix transmitting packet hangs (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: sdio: add rx_check callback for sdio devices (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: delete stray if statement (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: fix use after free in mt7921_acpi_read() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7915: fix an uninitialized variable bug (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: sdio: poll sta stat when device transmits data (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: sdio: fix the deadlock caused by sdio->stat_work (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921: move mt7921_rx_check and mt7921_queue_rx_skb in mac.c (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921u: remove unnecessary MT76_STATE_SUSPEND (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921u: fix race issue between reset and suspend/resume (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921s: fix race issue between reset and suspend/resume (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: mt7921e: fix race issue between reset and suspend/resume (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: add rx_check callback for usb devices (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: testmode: use random payload for tx packets (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mt76: connac: introduce mt76_connac_reg_map structure (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: Remove copy-paste leftover in gen2_update_rate_mask (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: split scan including lots of channels (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: support hw_scan (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: call tx_wake notify for 8852c in deep ps mode (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support deep ps mode for rtw8852c (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: set response rate selection (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: set TX to single path TX on path B in 6GHz band (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: enlarge polling timeout of RX DCK (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: enable the interference cancellation of MU-MIMO on 6GHz (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: add DIG register struct to share common algorithm (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: support TX diversity for 1T2R chipset (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: record signal strength per RF path (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: configure TX path via H2C command (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: parse phycap of TX/RX antenna number (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: use u32_get_bits to access C2H content of PHY capability (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Increase TCL data ring size for WCN6750 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Add multi TX ring support for WCN6750 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Enable threaded NAPI (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: mhi: fix potential memory leak in ath11k_mhi_register() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: implement SRAM dump debugfs interface (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Split PCI write/read functions (Jose Ignacio Tornos Martinez) [2136125]
+- ath11k: Enable remain-on-channel support on WCN6750 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mwifiex: fix endian annotations in casts (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mwifiex: fix endian conversion (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mwifiex: mark a variable unused (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: Fix skb misuse in TX queue selection (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: remove redundant variable err (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: add 43439 SDIO ids and initialization (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: Simplify the error handling code (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mwifiex: Fix comment typo (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: Add DMI nvram filename quirk for Chuwi Hi8 Pro tablet (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: Use ISO3166 country code and rev 0 as fallback on 43430 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: iwlwifi: calib: Refactor iwl_calib_result usage for clarity (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: always activate all links (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: implement link switching (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: keep A-MSDU data in sta and per-link (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: set up beacon timing config on links (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: add vif/sta link RCU dereference macros (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: send NDP for link (de)activation (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: extend ieee80211_nullfunc_get() for MLO (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: track active STA links (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: skip inactive links on TX (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: add ieee80211_find_sta_by_link_addrs API (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: isolate driver from inactive links (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: make smps_mode per-link (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: use correct rx link_sta instead of default (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: set link_sta in reorder timeout (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: fix multi-channel handling in netlink RX (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: call drv_sta_state() under sdata_lock() in reconfig (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: nl80211: add MLD address to assoc BSS entries (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: mlme: refactor QoS settings code (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: warn on invalid link address (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix double SW scan stop (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: mlme: assign link address correctly (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: move link code to a new file (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: refactor RX a bit (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: check STA magic in change_sta_links (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: remove unused arg to ieee80211_chandef_eht_oper (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: remove multicast workaround (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: nl80211: remove redundant err variable (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: Support POWERED_ADDR_CHANGE feature (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: nl80211: Add POWERED_ADDR_CHANGE feature (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: prevent 4-addr use on MLDs (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: prevent VLANs on MLDs (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Add support to connect to non-transmit MBSSID profiles (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Fix hardware restart failure due to twt debugfs failure (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Add TWT debugfs support for STA interface (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: move from strlcpy with unused retval to strscpy (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: add missing destroy_workqueue() on error path in rtw_core_init() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: declare to support beamformee above bandwidth 80MHz (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: correct polling address of address CAM (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: no HTC field if TX rate might fallback to legacy (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: correct TX resource checking in low power mode (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: fix interrupt stuck after leaving low power mode (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: enlarge the CFO tracking boundary (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: correct suspend/resume setting for variant chips (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: enable CLK_REQ, ASPM, L1 and L1ss for 8852c (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: pci: fix PCI PHY auto adaption by using software restore (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: set TBTT shift configuration (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: add retry to change power_mode state (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: correct BA CAM allocation (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: initialize and correct BA CAM content (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: declare correct BA CAM number (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: update TX power tables to R49 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852c: update RF radio A/B parameters to R49 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: TX power limit/limit_ru consider negative (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: Update Wi-Fi driver/firmware TDMA cycle report for RTL8852c (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: Add v1 Wi-Fi SCC coexistence policy (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: Move _set_policy to chip_ops (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: update WL role info v1 for RTL8852C branch using (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: Add v1 version TDMA format and parameters (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: Define BT B1 slot length (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: Add logic to parsing rtl8852c firmware type ctrl report (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: Move Wi-Fi firmware coexistence matching version to chip (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: coex: update radio state for RTL8852A/RTL8852C (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: 8852c: adjust mactxen delay of mac/phy interface (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: 8852c: modify PCIE prebkf time (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: ser: leave lps with mutex (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: declare support HE HTC always (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: 8852a: update HW setting on BB (Jose Ignacio Tornos Martinez) [2136125]
+- rtw89: 8852c: disable dma during mac init (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: declare support for mac80211 chanctx ops by chip (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: add skeleton of mac80211 chanctx ops support (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: introduce entity mode and its recalculated prototype (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: initialize entity and configure default chandef (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: concentrate chandef setting to stack callback (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: concentrate parameter control for setting channel callback (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: rfk: concentrate parameter control while set_channel() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: txpwr: concentrate channel related control to top (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: create rtw89_chan centrally to avoid breakage (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: re-arrange channel related stuffs under HAL (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: introduce rtw89_chan for channel stuffs (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: rewrite decision on channel by entity state (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Add cold boot calibration support on WCN6750 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Fix incorrect QMI message ID mappings (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath11k: Register shutdown handler for WCN6750 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix potential deadlock in ieee80211_key_link() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: fix uninitialized use of primary channel index (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: use full 'unsigned int' type (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: move from strlcpy with unused retval to strscpy (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: read ethtool's sta_stats from sinfo (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: correct SMPS mode in HE 6 GHz capability (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: Add link_id to cfg80211_ch_switch_started_notify() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: nl80211: send MLO links channel info in GET_INTERFACE (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: allow bw change during channel switch in mesh (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: clean up a needless assignment in ieee80211_sta_activate_link() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: allow link address A2 in TXQ dequeue (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix control port frame addressing (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: set link ID in TX info for beacons (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: fix link change handling (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: maintain link_id in link_sta (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211/mac80211: check EHT capability size correctly (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211_hwsim: split iftype data into AP/non-AP (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: mlme: don't add empty EML capabilities (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: use link ID for MLO in queued frames (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: use the corresponding link for stats update (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: add link information in ieee80211_rx_status (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: properly implement MLO key handling (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: Add link_id parameter to various key operations for MLO (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: Prevent cfg80211_wext_siwencodeext() on MLD (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: reject connect response with MLO params for WEP (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: fix use-after-free (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: use link in TXQ parameter configuration (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: add link id to txq params (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: set link BSSID (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: get correct AP link chandef (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: cfg80211: Update RNR parsing to align with Draft P802.11be_D2.0 (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: properly set old_links when removing a link (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: mac80211: accept STA changes without link changes (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: prohibit enter IPS during HW scan (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: add flag check before enter or leave IPS (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: add flushing queue before HW scan (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: fix WARNING:rtw_get_tx_power_params() during HW scan (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: add the update channel flow to support setting by parameters (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: add mutex when set regulatory and get Tx power table (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: add mutex when set SAR (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: Fix to add skb free for TIM update info when tx is completed (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: Fix to add brcmf_clear_assoc_ies when rmmod (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: fix invalid address access when enabling SCAN log level (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: fix scheduling while atomic issue when deleting flowring (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmfmac: fix continuous 802.1x tx pending timeout error (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: ath10k: Set tx credit to one for WCN3990 snoc based devices (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: 8852a: correct WDE IMR settings (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw89: refine leaving LPS function (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtlwifi: 8192de: correct checking of IQK reload (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: brcmsmac: remove duplicate words (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: access chip_info by const pointer (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: phy: fix warning of possible buffer overflow (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: fix store OP channel info timing when HW scan (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: fix stopping queues in wrong timing when HW scan (Jose Ignacio Tornos Martinez) [2136125]
+- wifi: rtw88: 8822c: extend supported probe request size (Jose Ignacio Tornos Martinez) [2136125]
+
+* Tue Feb 07 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-459.el8]
+- ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF (Jaroslav Kysela) [2125548] {CVE-2023-0266}
+- ALSA: usb-audio: Remove redundant workaround for Roland quirk (Jaroslav Kysela) [2125548]
+- ASoC: jz4740-i2s: Handle independent FIFO flush bits (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops (Jaroslav Kysela) [2125548]
+- ALSA: patch_realtek: Fix Dell Inspiron Plus 16 (Jaroslav Kysela) [2125548]
+- ALSA: hda/hdmi: Static PCM mapping again with AMD HDMI codecs (Jaroslav Kysela) [2125548]
+- ALSA: line6: fix stack overflow in line6_midi_transmit (Jaroslav Kysela) [2125548]
+- ALSA: line6: correct midi status byte when receiving data from podxt (Jaroslav Kysela) [2125548]
+- ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: add the quirk for KT0206 device (Jaroslav Kysela) [2125548]
+- ASoC: rt5670: Remove unbalanced pm_runtime_put() (Jaroslav Kysela) [2125548]
+- ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in rk_spdif_runtime_resume() (Jaroslav Kysela) [2125548]
+- ASoC: wm8994: Fix potential deadlock (Jaroslav Kysela) [2125548]
+- ALSA: hda/hdmi: fix stream-id config keep-alive for rt suspend (Jaroslav Kysela) [2125548]
+- ALSA: hda/hdmi: set default audio parameters for KAE silent-stream (Jaroslav Kysela) [2125548]
+- ALSA: hda/hdmi: fix i915 silent stream programming flow (Jaroslav Kysela) [2125548]
+- ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in rockchip_pdm_runtime_resume() (Jaroslav Kysela) [2125548]
+- ASoC: audio-graph-card: fix refcount leak of cpu_ep in __graph_for_each_link() (Jaroslav Kysela) [2125548]
+- ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in mt8173_rt5650_rt5514_dev_probe() (Jaroslav Kysela) [2125548]
+- ASoC: Intel: Skylake: Fix driver hang during shutdown (Jaroslav Kysela) [2125548]
+- ALSA: hda: add snd_hdac_stop_streams() helper (Jaroslav Kysela) [2125548]
+- ASoC: sof_es8336: fix possible use-after-free in sof_es8336_remove() (Jaroslav Kysela) [2125548]
+- ASoC: amd: yc: Add Xiaomi Redmi Book Pro 14 2022 into DMI table (Jaroslav Kysela) [2125548]
+- ASoC: Intel: avs: Add quirk for KBL-R RVP platform (Jaroslav Kysela) [2125548]
+- ASoC: codecs: rt298: Add quirk for KBL-R RVP platform (Jaroslav Kysela) [2125548]
+- ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt (Jaroslav Kysela) [2125548]
+- ALSA: pcm: Set missing stop_operating flag at undoing trigger start (Jaroslav Kysela) [2125548]
+- ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe (Jaroslav Kysela) [2125548]
+- ALSA: asihpi: fix missing pci_disable_device() (Jaroslav Kysela) [2125548]
+- ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd (Jaroslav Kysela) [2125548]
+- ASoC: qcom: Add checks for devm_kcalloc (Jaroslav Kysela) [2125548]
+- ASoC: Intel: avs: Lock substream before snd_pcm_stop() (Jaroslav Kysela) [2125548]
+- ASoC: pxa: fix null-pointer dereference in filter() (Jaroslav Kysela) [2125548]
+- ASoC: Intel: avs: Fix potential RX buffer overflow (Jaroslav Kysela) [2125548]
+- ASoC: Intel: avs: Fix DMA mask assignment (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook (Jaroslav Kysela) [2125548]
+- ASoC: ops: Correct bounds check for second channel on SX controls (Jaroslav Kysela) [2125548]
+- ASoC: cs42l51: Correct PGA Volume minimum value (Jaroslav Kysela) [2125548]
+- ASoC: ops: Check bounds for second channel in snd_soc_put_volsw_sx() (Jaroslav Kysela) [2125548]
+- ASoC: fsl_micfil: explicitly clear CHnF flags (Jaroslav Kysela) [2125548]
+- ASoC: fsl_micfil: explicitly clear software reset bit (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: More robust component matching for CS35L41 (Jaroslav Kysela) [2125548]
+- ASoC: soc-pcm: Add NULL check in BE reparenting (Jaroslav Kysela) [2125548]
+- ALSA: seq: Fix function prototype mismatch in snd_seq_expand_var_event (Jaroslav Kysela) [2125548]
+- ASoC: rt711-sdca: fix the latency time of clock stop prepare state machine transitions (Jaroslav Kysela) [2125548]
+- ASoC: wm8962: Wait for updated value of WM8962_CLOCKING1 register (Jaroslav Kysela) [2125548]
+- ASoC: ops: Fix bounds check for _sx controls (Jaroslav Kysela) [2125548]
+- ALSA: dice: fix regression for Lexicon I-ONIX FW810S (Jaroslav Kysela) [2125548]
+- ASoC: sof_es8336: reduce pop noise on speaker (Jaroslav Kysela) [2125548]
+- ASoC: SOF: ipc3-topology: use old pipeline teardown flow with SOF2.1 and older (Jaroslav Kysela) [2125548]
+- ASoC: hda: intel-dsp-config: add ES83x6 quirk for IceLake (Jaroslav Kysela) [2125548]
+- ASoC: Intel: soc-acpi: add ES83x6 support to IceLake (Jaroslav Kysela) [2125548]
+- ASoC: Intel: bytcht_es8316: Add quirk for the Nanote UMPC-01 (Jaroslav Kysela) [2125548]
+- ASoC: amd: yc: Add Alienware m17 R5 AMD into DMI table (Jaroslav Kysela) [2125548]
+- ASoC: max98373: Add checks for devm_kcalloc (Jaroslav Kysela) [2125548]
+- ASoC: soc-pcm: Don't zero TDM masks in __soc_pcm_open() (Jaroslav Kysela) [2125548]
+- ASoC: sgtl5000: Reset the CHIP_CLK_CTRL reg on remove (Jaroslav Kysela) [2125548]
+- ASoC: hdac_hda: fix hda pcm buffer overflow issue (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: add quirk to fix Hamedal C20 disconnect issue (Jaroslav Kysela) [2125548]
+- ASoC: SOF: topology: No need to assign core ID if token parsing failed (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book Pro 360 (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: fix speakers for Samsung Galaxy Book Pro (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Drop snd_BUG_ON() from snd_usbmidi_output_open() (Jaroslav Kysela) [2125548]
+- ASoC: soc-utils: Remove __exit for snd_soc_util_exit() (Jaroslav Kysela) [2125548]
+- ASoC: rt5677: fix legacy dai naming (Jaroslav Kysela) [2125548]
+- ASoC: rt5514: fix legacy dai naming (Jaroslav Kysela) [2125548]
+- ASoC: tas2764: Fix set_tdm_slot in case of single slot (Jaroslav Kysela) [2125548]
+- ASoC: tas2770: Fix set_tdm_slot in case of single slot (Jaroslav Kysela) [2125548]
+- ASoC: core: Fix use-after-free in snd_soc_exit() (Jaroslav Kysela) [2125548]
+- ASoC: codecs: jz4725b: Fix spelling mistake "Sourc" -> "Source", "Routee" -> "Route" (Jaroslav Kysela) [2125548]
+- ASoC: amd: yc: Add Lenovo Thinkbook 14+ 2022 21D0 to quirks table (Jaroslav Kysela) [2125548]
+- ASoC: amd: yc: Adding Lenovo ThinkBook 14 Gen 4+ ARA and Lenovo ThinkBook 16 Gen 4+ ARA to the Quirks List (Jaroslav Kysela) [2125548]
+- ASoC: rt1308-sdw: add the default value of some registers (Jaroslav Kysela) [2125548]
+- ASoC: Intel: sof_rt5682: Add quirk for Rex board (Jaroslav Kysela) [2125548]
+- ASoC: Intel: sof_sdw: add quirk variant for LAPBC710 NUC15 (Jaroslav Kysela) [2125548]
+- ASoC: codecs: jz4725b: fix capture selector naming (Jaroslav Kysela) [2125548]
+- ASoC: codecs: jz4725b: use right control for Capture Volume (Jaroslav Kysela) [2125548]
+- ASoC: codecs: jz4725b: fix reported volume for Master ctl (Jaroslav Kysela) [2125548]
+- ASoC: codecs: jz4725b: add missed Line In power control bit (Jaroslav Kysela) [2125548]
+- ASoC: wm8962: Add an event handler for TEMP_HP and TEMP_SPK (Jaroslav Kysela) [2125548]
+- ASoC: rt1019: Fix the TDM settings (Jaroslav Kysela) [2125548]
+- ASoC: rt5682s: Fix the TDM Tx settings (Jaroslav Kysela) [2125548]
+- ASoC: mt6660: Keep the pm_runtime enables before component stuff in mt6660_i2c_probe (Jaroslav Kysela) [2125548]
+- ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe" (Jaroslav Kysela) [2125548]
+- ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe" (Jaroslav Kysela) [2125548]
+- ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe" (Jaroslav Kysela) [2125548]
+- ALSA: memalloc: Try dma_alloc_noncontiguous() at first (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Add DSD support for Accuphase DAC-60 (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Add quirk entry for M-Audio Micro (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Yet more regression for for the delayed card registration (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Add Positivo C6300 model quirk (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Add quirk for ASUS Zenbook using CS35L41 (Jaroslav Kysela) [2125548]
+- ALSA: hda: fix potential memleak in 'add_widget_node' (Jaroslav Kysela) [2125548]
+- ALSA: hda/ca0132: add quirk for EVGA Z390 DARK (Jaroslav Kysela) [2125548]
+- ALSA: hda/hdmi - enable runtime pm for more AMD display audio (Jaroslav Kysela) [2125548]
+- ALSA: memalloc: Don't fall back for SG-buffer with IOMMU (Jaroslav Kysela) [2125548]
+- ALSA: aoa: Fix I2S device accounting (Jaroslav Kysela) [2125548]
+- ALSA: aoa: i2sbus: fix possible memory leak in i2sbus_add_dev() (Jaroslav Kysela) [2125548]
+- ALSA: ac97: fix possible memory leak in snd_ac97_dev_register() (Jaroslav Kysela) [2125548]
+- ASoC: SOF: Intel: pci-tgl: fix ADL-N descriptor (Jaroslav Kysela) [2125548]
+- ASoC: SOF: Intel: pci-tgl: use RPL specific firmware definitions (Jaroslav Kysela) [2125548]
+- ASoC: Intel: common: add ACPI matching tables for Raptor Lake (Jaroslav Kysela) [2125548]
+- ALSA: rme9652: use explicitly signed char (Jaroslav Kysela) [2125548]
+- ALSA: au88x0: use explicitly signed char (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Add another HP ZBook G9 model quirks (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Add quirks for M-Audio Fast Track C400/600 (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Add quirk for ASUS Zenbook using CS35L41 (Jaroslav Kysela) [2125548]
+- ALSA: Use del_timer_sync() before freeing timer (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Fix last interface check for registration (Jaroslav Kysela) [2125548]
+- ASoC: amd: yc: Add Lenovo Yoga Slim 7 Pro X to quirks table (Jaroslav Kysela) [2125548]
+- ASoC: amd: yc: Add ASUS UM5302TA into DMI table (Jaroslav Kysela) [2125548]
+- ASoC: SOF: add quirk to override topology mclk_id (Jaroslav Kysela) [2125548]
+- ASoC: SOF: pci: Change DMI match info to support all Chrome platforms (Jaroslav Kysela) [2125548]
+- ALSA: intel-dspconfig: add ES8336 support for AlderLake-PS (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Register card at the last interface (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Add quirk to enable Avid Mbox 3 support (Jaroslav Kysela) [2125548]
+- ASoC: mt6660: Fix PM disable depth imbalance in mt6660_i2c_probe (Jaroslav Kysela) [2125548]
+- ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe (Jaroslav Kysela) [2125548]
+- ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe (Jaroslav Kysela) [2125548]
+- ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe (Jaroslav Kysela) [2125548]
+- ASoC: stm: Fix PM disable depth imbalance in stm32_i2s_probe (Jaroslav Kysela) [2125548]
+- ASoC: stm32: spdifrx: Fix PM disable depth imbalance in stm32_spdifrx_probe (Jaroslav Kysela) [2125548]
+- ASoC: stm32: dfsdm: Fix PM disable depth imbalance in stm32_adfsdm_probe (Jaroslav Kysela) [2125548]
+- ALSA: dmaengine: increment buffer pointer atomically (Jaroslav Kysela) [2125548]
+- ASoC: da7219: Fix an error handling path in da7219_register_dai_clks() (Jaroslav Kysela) [2125548]
+- ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API (Jaroslav Kysela) [2125548]
+- ASoC: wm_adsp: Handle optional legacy support (Jaroslav Kysela) [2125548]
+- ASoC: rsnd: Add check for rsnd_mod_power_on (Jaroslav Kysela) [2125548]
+- ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close() (Jaroslav Kysela) [2125548]
+- ASoC: mt6359: fix tests for platform_get_irq() failure (Jaroslav Kysela) [2125548]
+- ASoC: wcd934x: fix order of Slimbus unprepare/disable (Jaroslav Kysela) [2125548]
+- ASoC: wcd9335: fix order of Slimbus unprepare/disable (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Add Intel Reference SSID to support headset keys (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Add quirk for ASUS GV601R laptop (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Fix NULL dererence at error path (Jaroslav Kysela) [2125548]
+- ALSA: usb-audio: Fix potential memory leaks (Jaroslav Kysela) [2125548]
+- ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() (Jaroslav Kysela) [2125548]
+- ALSA: oss: Fix potential deadlock at unregistration (Jaroslav Kysela) [2125548]
+- ALSA: hda/realtek: Add quirk for HP Zbook Firefly 14 G9 model (Jaroslav Kysela) [2125548]
+- ALSA: hda: Fix position reporting on Poulsbo (Jaroslav Kysela) [2125548]
+
+* Mon Feb 06 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-458.el8]
+- KVM: x86: smm: preserve interrupt shadow in SMRAM (Maxim Levitsky) [2097144]
+- KVM: x86: SVM: don't save SVM state to SMRAM when VM is not long mode capable (Maxim Levitsky) [2097144]
+- KVM: x86: SVM: use smram structs (Maxim Levitsky) [2097144]
+- KVM: svm: drop explicit return value of kvm_vcpu_map (Maxim Levitsky) [2097144]
+- KVM: x86: smm: use smram struct for 64 bit smram load/restore (Maxim Levitsky) [2097144]
+- KVM: x86: smm: use smram struct for 32 bit smram load/restore (Maxim Levitsky) [2097144]
+- KVM: x86: smm: use smram structs in the common code (Maxim Levitsky) [2097144]
+- KVM: x86: smm: add structs for KVM's smram layout (Maxim Levitsky) [2097144]
+- KVM: x86: smm: check for failures on smm entry (Maxim Levitsky) [2097144]
+- KVM: x86: do not go through ctxt->ops when emulating rsm (Maxim Levitsky) [2097144]
+- KVM: x86: move SMM exit to a new file (Maxim Levitsky) [2097144]
+- KVM: x86: move SMM entry to a new file (Maxim Levitsky) [2097144]
+- KVM: x86: start moving SMM-related functions to new files (Maxim Levitsky) [2097144]
+- bug: introduce ASSERT_STRUCT_OFFSET (Maxim Levitsky) [2097144]
+- KVM: x86: Rename and expose helper to detect if INIT/SIPI are allowed (Maxim Levitsky) [2097144]
+- KVM: x86: smm: number of GPRs in the SMRAM image depends on the image format (Maxim Levitsky) [2097144]
+- KVM: x86: emulator: update the emulation mode after CR0 write (Maxim Levitsky) [2097144]
+- KVM: x86: emulator: update the emulation mode after rsm (Maxim Levitsky) [2097144]
+- KVM: x86: emulator: introduce emulator_recalc_and_set_mode (Maxim Levitsky) [2097144]
+- KVM: x86: emulator: em_sysexit should update ctxt->mode (Maxim Levitsky) [2097144]
+- KVM: x86: Bug the VM if the emulator accesses a non-existent GPR (Maxim Levitsky) [2097144]
+- KVM: x86: Reduce the number of emulator GPRs to '8' for 32-bit KVM (Maxim Levitsky) [2097144]
+- KVM: x86: Use 16-bit fields to track dirty/valid emulator GPRs (Maxim Levitsky) [2097144]
+- KVM: x86: Omit VCPU_REGS_RIP from emulator's _regs array (Maxim Levitsky) [2097144]
+- KVM: x86: Harden _regs accesses to guard against buggy input (Maxim Levitsky) [2097144]
+- KVM: x86: Grab regs_dirty in local 'unsigned long' (Maxim Levitsky) [2097144]
+
+* Fri Feb 03 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-457.el8]
+- RDMA/bnxt_re: Fix endianness warning for req.pkey (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Use bitmap_zalloc() when applicable (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Remove dynamic pkey table (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Scan the whole bitmap when checking if "disabling RCFW with pending cmd-bit" (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Remove unneeded variable (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Remove unsupported bnxt_re_modify_ah callback (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Use helper function to set GUIDs (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Check if the vlan is valid before reporting (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Correct FRMR size calculation (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Use GFP_KERNEL in non atomic context (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Fix FRMR issue with single page MR allocation (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Fix query SRQ failure (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Suppress unwanted error messages (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Support multiple page sizes (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Reduce the delay in polling for hwrm command completion (Kamal Heib) [2142690]
+- RDMA/bnxt_re: Use separate response buffer for stat_ctx_free (Kamal Heib) [2142690]
+- net/mlx5: Lag, Fix for loop when checking lag (Amir Tzin) [2112917]
+- net/mlx5e: Fix use-after-free when reverting termination table (Amir Tzin) [2112927]
+- net/mlx5: Fix uninitialized variable bug in outlen_write() (Amir Tzin) [2112927]
+- net/mlx5: E-switch, Fix duplicate lag creation (Amir Tzin) [2112927 2112917]
+- net/mlx5: E-switch, Destroy legacy fdb table when needed (Amir Tzin) [2112927 2112917]
+- net/mlx5: DR, Fix uninitialized var warning (Amir Tzin) [2112927]
+- net/mlx5e: Offload rule only when all encaps are valid (Amir Tzin) [2112927]
+- net/mlx5: Fix sync reset event handler error flow (Amir Tzin) [2112927]
+- net/mlx5: E-Switch, Set correctly vport destination (Amir Tzin) [2112927]
+- net/mlx5: Fix handling of entry refcount when command is not issued to FW (Amir Tzin) [2112927]
+- net/mlx5: cmdif, Print info on any firmware cmd failure to tracepoint (Amir Tzin) [2112927]
+- net/mlx5: SF: Fix probing active SFs during driver probe phase (Amir Tzin) [2112927]
+- net/mlx5: Fix FW tracer timestamp calculation (Amir Tzin) [2112927]
+- net/mlx5: Do not query pci info while pci disabled (Amir Tzin) [2112927 2129249]
+- net/mlx5e: TC, Fix slab-out-of-bounds in parse_tc_actions (Amir Tzin) [2112927]
+- net/mlx5e: Clean up and fix error flows in mlx5e_alloc_rq (Amir Tzin) [2112927]
+- net/mlx5: DR, Fix the SMFS sync_steering for fast teardown (Amir Tzin) [2112927]
+- net/mlx5e: E-Switch, Fix comparing termination table instance (Amir Tzin) [2112927]
+- net/mlx5e: TC, Fix wrong rejection of packet-per-second policing (Amir Tzin) [2112927 2049622]
+- net/mlx5e: Fix tc acts array not to be dependent on enum order (Amir Tzin) [2112927]
+- net/mlx5e: Add missing sanity checks for max TX WQE size (Amir Tzin) [2112927]
+- net/mlx5: fw_reset: Don't try to load device in case PCI isn't working (Amir Tzin) [2112927]
+- net/mlx5: E-switch, Set to legacy mode if failed to change switchdev mode (Amir Tzin) [2112927 2112917]
+- net/mlx5: Allow async trigger completion execution on single CPU systems (Amir Tzin) [2112927]
+- net/mlx5: Bridge, verify LAG state when adding bond to bridge (Amir Tzin) [2112927]
+- net/mlx5: Fix crash during sync firmware reset (Amir Tzin) [2112927]
+- net/mlx5e: TC, Fix cloned flow attr instance dests are not zeroed (Amir Tzin) [2112927]
+- net/mlx5: Fix possible use-after-free in async command interface (Amir Tzin) [2112927]
+- net/mlx5: ASO, Create the ASO SQ with the correct timestamp format (Amir Tzin) [2112927 2049622]
+- net/mlx5e: Update restore chain id for slow path packets (Amir Tzin) [2112927]
+- net/mlx5e: Extend SKB room check to include PTP-SQ (Amir Tzin) [2112927]
+- net/mlx5: DR, Fix matcher disconnect error flow (Amir Tzin) [2112927]
+- net/mlx5: Wait for firmware to enable CRS before pci_restore_state (Amir Tzin) [2112927]
+- net/mlx5e: Do not increment ESN when updating IPsec ESN state (Amir Tzin) [2112927]
+- net/mlx5e: Fix calculations for ICOSQ size (Amir Tzin) [2112927]
+- net/mlx5: Fix spelling mistake "syndrom" -> "syndrome" (Amir Tzin) [2112927]
+- net/mlx5e: Fix a typo in mlx5e_xdp_mpwqe_is_full (Amir Tzin) [2112927]
+- RDMA/mlx5: Don't compare mkey tags in DEVX indirect mkey (Amir Tzin) [2112927]
+- RDMA/mlx5: Fix UMR cleanup on error flow of driver init (Amir Tzin) [2112927]
+- RDMA/mlx5: Rely on RoCE fw cap instead of devlink when setting profile (Amir Tzin) [2112927]
+- net/mlx5: Unlock on error in mlx5_sriov_enable() (Amir Tzin) [2112927]
+- net/mlx5e: Fix use after free in mlx5e_fs_init() (Amir Tzin) [2112927]
+- net/mlx5e: kTLS, Use _safe() iterator in mlx5e_tls_priv_tx_list_cleanup() (Amir Tzin) [2112927]
+- net/mlx5: unlock on error path in esw_vfs_changed_event_handler() (Amir Tzin) [2112927 2150647]
+- net/mlx5e: Fix wrong tc flag used when set hw-tc-offload off (Amir Tzin) [2112927]
+- net/mlx5e: TC, Add missing policer validation (Amir Tzin) [2112927]
+- net/mlx5e: Fix wrong application of the LRO state (Amir Tzin) [2112927]
+- net/mlx5: Avoid false positive lockdep warning by adding lock_class_key (Amir Tzin) [2112927]
+- net/mlx5: Fix cmd error logging for manage pages cmd (Amir Tzin) [2112927]
+- net/mlx5: Disable irq when locking lag_lock (Amir Tzin) [2112927]
+- net/mlx5: Eswitch, Fix forwarding decision to uplink (Amir Tzin) [2112927 2150647]
+- net/mlx5: LAG, fix logic over MLX5_LAG_FLAG_NDEVS_READY (Amir Tzin) [2112927]
+- net/mlx5e: Properly disable vlan strip on non-UL reps (Amir Tzin) [2112927]
+- net/mlx5e: Allocate flow steering storage during uplink initialization (Amir Tzin) [2112927]
+- RDMA/mlx5: Use the proper number of ports (Amir Tzin) [2112927]
+- mlx5: do not use RT_TOS for IPv6 flowlabel (Amir Tzin) [2112927]
+- RDMA/mlx5: Add missing check for return value in get namespace flow (Amir Tzin) [2112927]
+- net/mlx5e: xsk: Discard unaligned XSK frames on striding RQ (Amir Tzin) [2112927]
+- net: devlink: convert reload command to take implicit devlink->lock (mlx5 hunk only) (Amir Tzin) [2112927]
+- devlink: Hold the instance lock in health callbacks (mlx5 hunk only) (Amir Tzin) [2112927]
+- net/mlx5: Lock mlx5 devlink health recovery callback (Amir Tzin) [2112927]
+- net/mlx5: Lock mlx5 devlink reload callbacks (Amir Tzin) [2112927]
+- net/mlx5: Move fw reset unload to mlx5_fw_reset_complete_reload (Amir Tzin) [2112927]
+- net/mlx5e: kTLS, Dynamically re-size TX recycling pool (Amir Tzin) [2112927]
+- net/mlx5e: kTLS, Recycle objects of device-offloaded TLS TX connections (Amir Tzin) [2112927]
+- net/mlx5e: kTLS, Take stats out of OOO handler (Amir Tzin) [2112927]
+- net/mlx5e: kTLS, Introduce TLS-specific create TIS (Amir Tzin) [2112927]
+- net/mlx5e: Move mlx5e_init_l2_addr to en_main (Amir Tzin) [2112927]
+- net/mlx5e: Split en_fs ndo's and move to en_main (Amir Tzin) [2112927]
+- net/mlx5e: Separate mlx5e_set_rx_mode_work and move caller to en_main (Amir Tzin) [2112927]
+- net/mlx5e: Add mdev to flow_steering struct (Amir Tzin) [2112927]
+- net/mlx5e: Report flow steering errors with mdev err report API (Amir Tzin) [2112927]
+- net/mlx5e: Convert mlx5e_flow_steering member of mlx5e_priv to pointer (Amir Tzin) [2112927]
+- net/mlx5e: Allocate VLAN and TC for featured profiles only (Amir Tzin) [2112927]
+- net/mlx5e: Make mlx5e_tc_table private (Amir Tzin) [2112927]
+- net/mlx5e: Convert mlx5e_tc_table member of mlx5e_flow_steering to pointer (Amir Tzin) [2112927]
+- net/mlx5e: TC, Support tc action api for police (Amir Tzin) [2112927]
+- net/mlx5e: TC, Separate get/update/replace meter functions (Amir Tzin) [2112927]
+- net/mlx5e: Add red and green counters for metering (Amir Tzin) [2112927]
+- net/mlx5e: TC, Allocate post meter ft per rule (Amir Tzin) [2112927]
+- net/mlx5: DR, Add support for flow metering ASO (Amir Tzin) [2112927]
+- net/mlx5: Fix driver use of uninitialized timeout (Amir Tzin) [2112927]
+- net/mlx5: DR, Fix SMFS steering info dump format (Amir Tzin) [2112927]
+- net/mlx5: Adjust log_max_qp to be 18 at most (Amir Tzin) [2112927]
+- net/mlx5e: Modify slow path rules to go to slow fdb (Amir Tzin) [2112927 2150647]
+- net/mlx5e: Fix calculations related to max MPWQE size (Amir Tzin) [2112927]
+- net/mlx5e: xsk: Account for XSK RQ UMRs when calculating ICOSQ size (Amir Tzin) [2112927]
+- net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS (Amir Tzin) [2112927]
+- net/mlx5e: TC, Fix post_act to not match on in_port metadata (Amir Tzin) [2112927]
+- net/mlx5e: Remove WARN_ON when trying to offload an unsupported TLS cipher/version (Amir Tzin) [2112927]
+- RDMA/mlx5: Rename the mkey cache variables and functions (Amir Tzin) [2112927]
+- RDMA/mlx5: Store in the cache mkeys instead of mrs (Amir Tzin) [2112927]
+- RDMA/mlx5: Store the number of in_use cache mkeys instead of total_mrs (Amir Tzin) [2112927]
+- RDMA/mlx5: Replace cache list with Xarray (Amir Tzin) [2112927]
+- RDMA/mlx5: Replace ent->lock with xa_lock (Amir Tzin) [2112927]
+- net/mlx5: CT: Remove warning of ignore_flow_level support for non PF (Amir Tzin) [2112927]
+- net/mlx5e: Add resiliency for PTP TX port timestamp (Amir Tzin) [2112927]
+- net/mlx5: Expose ts_cqe_metadata_size2wqe_counter (Amir Tzin) [2112927]
+- net/mlx5e: HTB, move htb functions to a new file (Amir Tzin) [2112927]
+- net/mlx5e: HTB, change functions name to follow convention (Amir Tzin) [2112927]
+- net/mlx5e: HTB, remove priv from htb function calls (Amir Tzin) [2112927]
+- net/mlx5e: HTB, hide and dynamically allocate mlx5e_htb structure (Amir Tzin) [2112927]
+- net/mlx5e: HTB, move stats and max_sqs to priv (Amir Tzin) [2112927]
+- net/mlx5e: HTB, move section comment to the right place (Amir Tzin) [2112927]
+- net/mlx5e: HTB, move ids to selq_params struct (Amir Tzin) [2112927]
+- net/mlx5e: HTB, reduce visibility of htb functions (Amir Tzin) [2112927]
+- net/mlx5e: Fix mqprio_rl handling on devlink reload (Amir Tzin) [2112927]
+- net/mlx5e: Report header-data split state through ethtool (Amir Tzin) [2112927]
+- RDMA/mlx5: Expose steering anchor to userspace (Amir Tzin) [2112927]
+- RDMA/mlx5: Refactor get flow table function (Amir Tzin) [2112927]
+- net/mlx5: fs, allow flow table creation with a UID (Amir Tzin) [2112927]
+- net/mlx5: fs, expose flow table ID to users (Amir Tzin) [2112927]
+- net/mlx5: Expose the ability to point to any UID from shared UID (Amir Tzin) [2112927]
+- net/mlx5e: Remove the duplicating check for striding RQ when enabling LRO (Amir Tzin) [2112927]
+- net/mlx5e: Move the LRO-XSK check to mlx5e_fix_features (Amir Tzin) [2112927]
+- net/mlx5e: Extend flower police validation (Amir Tzin) [2112927]
+- net/mlx5e: configure meter in flow action (Amir Tzin) [2112927 2150647 2049622]
+- net/mlx5e: Removed useless code in function (Amir Tzin) [2112927]
+- net/mlx5: Bridge, implement QinQ support (Amir Tzin) [2112927]
+- net/mlx5: Bridge, implement infrastructure for VLAN protocol change (Amir Tzin) [2112927]
+- net/mlx5: Bridge, extract VLAN push/pop actions creation (Amir Tzin) [2112927]
+- net/mlx5: Bridge, rename filter fg to vlan_filter (Amir Tzin) [2112927]
+- net/mlx5: Bridge, refactor groups sizes and indices (Amir Tzin) [2112927]
+- net/mlx5: debugfs, Add num of in-use FW command interface slots (Amir Tzin) [2112927]
+- net/mlx5: Expose vnic diagnostic counters for eswitch managed vports (Amir Tzin) [2112927 2150647 2049881]
+- net/mlx5: Use software VHCA id when it's supported (Amir Tzin) [2112927]
+- net/mlx5: Introduce ifc bits for using software vhca id (Amir Tzin) [2112927]
+- net/mlx5: Use the bitmap API to allocate bitmaps (Amir Tzin) [2112927]
+- devlink: Hold the instance lock in port_new / port_del callbacks (mlx5 hunks only) (Amir Tzin) [2112925]
+- net/mlx5: Remove devl_unlock from mlx5_devlink_eswitch_mode_set (Amir Tzin) [2112927 2150647]
+- net/mlx5: Use devl_ API in mlx5e_devlink_port_register (Amir Tzin) [2112927 2150647]
+- net/mlx5: Use devl_ API in mlx5_esw_devlink_sf_port_register (Amir Tzin) [2112927]
+- net/mlx5: Use devl_ API in mlx5_esw_offloads_devlink_port_register (Amir Tzin) [2112927 2150647]
+- net/mlx5: Use devl_ API for rate nodes destroy (Amir Tzin) [2112927 2150647]
+- net/mlx5: Remove devl_unlock from mlx5_eswtich_mode_callback_enter (Amir Tzin) [2112927 2150647]
+- net/mlx5: fix 32bit build (Amir Tzin) [2112927 2049622]
+- net/mlx5e: TC, Support offloading police action (Amir Tzin) [2112927 2049622]
+- net/mlx5e: Add flow_action to parse state (Amir Tzin) [2112927 2049622]
+- net/mlx5e: Add post meter table for flow metering (Amir Tzin) [2112927 2049622]
+- net/mlx5e: Add generic macros to use metadata register mapping (Amir Tzin) [2112927 2049622]
+- net/mlx5e: Get or put meter by the index of tc police action (Amir Tzin) [2112927 2049622]
+- net/mlx5e: Add support to modify hardware flow meter parameters (Amir Tzin) [2112927 2049622]
+- net/mlx5e: Prepare for flow meter offload if hardware supports it (Amir Tzin) [2112927 2049622]
+- net/mlx5: Implement interfaces to control ASO SQ and CQ (Amir Tzin) [2112927 2049622]
+- net/mlx5: Add support to create SQ and CQ for ASO (Amir Tzin) [2112927 2049622]
+- net/mlx5: E-switch: Change eswitch mode only via devlink command (Amir Tzin) [2112927 2150647 2112917]
+- net/mlx5: E-switch, Remove dependency between sriov and eswitch mode (Amir Tzin) [2112927 2150647 2112917]
+- net/mlx5: E-switch, Introduce flag to indicate if fdb table is created (Amir Tzin) [2112927 2112917]
+- net/mlx5: E-switch, Introduce flag to indicate if vport acl namespace is created (Amir Tzin) [2112927 2112917]
+- net/mlx5: delete dead code in mlx5_esw_unlock() (Amir Tzin) [2112927]
+- net/mlx5: Delete ipsec_fs header file as not used (Amir Tzin) [2112927]
+- net/mlx5: Add bits and fields to support enhanced CQE compression (Amir Tzin) [2112927]
+- net/mlx5: Remove not used MLX5_CAP_BITS_RW_MASK (Amir Tzin) [2112927]
+- net/mlx5: group fdb cleanup to single function (Amir Tzin) [2112927]
+- net/mlx5: Add support EXECUTE_ASO action for flow entry (Amir Tzin) [2112927 2049622]
+- net/mlx5: Add HW definitions of vport debug counters (Amir Tzin) [2112927]
+- net/mlx5: Add IFC bits and enums for flow meter (Amir Tzin) [2112927 2049622]
+- RDMA/mlx5: Support handling of modify-header pattern ICM area (Amir Tzin) [2112927]
+- net/mlx5: Manage ICM of type modify-header pattern (Amir Tzin) [2112927]
+- net/mlx5: Introduce header-modify-pattern ICM properties (Amir Tzin) [2112927]
+- RDMA/mlx5: Add a umr recovery flow (Amir Tzin) [2112927]
+- net/mlx5e: Ring the TX doorbell on DMA errors (Amir Tzin) [2112925]
+- net/mlx5e: Fix capability check for updating vnic env counters (Amir Tzin) [2112925]
+- net/mlx5: Lag, correct get the port select mode str (Amir Tzin) [2112925]
+- net/mlx5e: Fix enabling sriov while tc nic rules are offloaded (Amir Tzin) [2112925]
+- net/mlx5e: kTLS, Fix build time constant test in RX (Amir Tzin) [2112925]
+- net/mlx5e: kTLS, Fix build time constant test in TX (Amir Tzin) [2112925]
+- net/mlx5: Lag, decouple FDB selection and shared FDB (Amir Tzin) [2112925]
+- net/mlx5: TC, allow offload from uplink to other PF's VF (Amir Tzin) [2112925]
+- mellanox: mlx5: avoid uninitialized variable warning with gcc-12 (Amir Tzin) [2112925]
+- net/mlx5: E-Switch, pair only capable devices (Amir Tzin) [2112925 2150647]
+- Revert "net/mlx5e: Allow relaxed ordering over VFs" (Amir Tzin) [2112925]
+- net/mlx5: Fix mlx5_get_next_dev() peer device matching (Amir Tzin) [2112925]
+- RDMA/mlx5: Remove duplicate pointer assignment in mlx5_ib_alloc_implicit_mr() (Amir Tzin) [2112925]
+- net/mlx5: fix multiple definitions of mlx5_lag_mpesw_init / mlx5_lag_mpesw_cleanup (Amir Tzin) [2112925]
+- net/mlx5: Support multiport eswitch mode (Amir Tzin) [2112925 2150647]
+- net/mlx5: Remove unused argument (Amir Tzin) [2112925]
+- net/mlx5: Lag, refactor lag state machine (Amir Tzin) [2112925]
+- net/mlx5e: Add XDP SQs to uplink representors steering tables (Amir Tzin) [2112925]
+- net/mlx5e: Allow relaxed ordering over VFs (Amir Tzin) [2112925]
+- net/mlx5e: Support partial GSO for tunnels over vlans (Amir Tzin) [2112925]
+- net/mlx5e: IPoIB, Improve ethtool rxnfc callback structure in IPoIB (Amir Tzin) [2112925]
+- net/mlx5e: Allocate virtually contiguous memory for reps structures (Amir Tzin) [2112925]
+- net/mlx5e: Allocate virtually contiguous memory for VLANs list (Amir Tzin) [2112925]
+- net/mlx5: Allocate virtually contiguous memory in pci_irq.c (Amir Tzin) [2112925]
+- net/mlx5: Allocate virtually contiguous memory in vport.c (Amir Tzin) [2112925]
+- net/mlx5: Inline db alloc API function (Amir Tzin) [2112925]
+- net/mlx5: Add last command failure syndrome to debugfs (Amir Tzin) [2112925]
+- net/mlx5: sparse: error: context imbalance in 'mlx5_vf_get_core_dev' (Amir Tzin) [2112925]
+- net/mlx5: Expose mlx5_sriov_blocking_notifier_register / unregister APIs (Amir Tzin) [2112925]
+- net/mlx5: Lag, add debugfs to query hardware lag state (Amir Tzin) [2112925]
+- net/mlx5: Lag, use buckets in hash mode (Amir Tzin) [2112925]
+- net/mlx5: Lag, refactor dmesg print (Amir Tzin) [2112925]
+- net/mlx5: Support devices with more than 2 ports (Amir Tzin) [2112925]
+- net/mlx5: Lag, use actual number of lag ports (Amir Tzin) [2112925]
+- net/mlx5: Lag, use hash when in roce lag on 4 ports (Amir Tzin) [2112925]
+- net/mlx5: Lag, support single FDB only on 2 ports (Amir Tzin) [2112925]
+- net/mlx5: Lag, store number of ports inside lag object (Amir Tzin) [2112925]
+- net/mlx5: Lag, filter non compatible devices (Amir Tzin) [2112925]
+- net/mlx5: Lag, use lag lock (Amir Tzin) [2112925]
+- net/mlx5: Lag, move E-Switch prerequisite check into lag code (Amir Tzin) [2112925]
+- net/mlx5: devcom only supports 2 ports (Amir Tzin) [2112925]
+- net/mlx5: Lag, expose number of lag ports (Amir Tzin) [2112925]
+- net/mlx5: Increase FW pre-init timeout for health recovery (Amir Tzin) [2112925]
+- net/mlx5: Add exit route when waiting for FW (Amir Tzin) [2112925]
+- net/mlx5e: Use XFRM state direction instead of flags (Amir Tzin) [2112925]
+- net/mlx5: Allow future addition of IPsec object modifiers (Amir Tzin) [2112925]
+- net/mlx5: Don't perform lookup after already known sec_path (Amir Tzin) [2112925]
+- net/mlx5: Cleanup XFRM attributes struct (Amir Tzin) [2112925]
+- net/mlx5: Remove not-supported ICV length (Amir Tzin) [2112925]
+- net/mlx5: Simplify IPsec capabilities logic (Amir Tzin) [2112925]
+- net/mlx5: Don't advertise IPsec netdev support for non-IPsec device (Amir Tzin) [2112925]
+- net/mlx5: Make sure that no dangling IPsec FS pointers exist (Amir Tzin) [2112925]
+- net/mlx5: Clean IPsec FS add/delete rules (Amir Tzin) [2112925]
+- net/mlx5: Simplify HW context interfaces by using SA entry (Amir Tzin) [2112925]
+- net/mlx5: Remove indirections from esp functions (Amir Tzin) [2112925]
+- net/mlx5: Merge various control path IPsec headers into one file (Amir Tzin) [2112925]
+- net/mlx5: Remove useless validity check (Amir Tzin) [2112925]
+- net/mlx5: Store IPsec ESN update work in XFRM state (Amir Tzin) [2112925]
+- net/mlx5: Reduce useless indirection in IPsec FS add/delete flows (Amir Tzin) [2112925]
+- net/mlx5: Don't hide fallback to software IPsec in FS code (Amir Tzin) [2112925]
+- net/mlx5: Check IPsec TX flow steering namespace in advance (Amir Tzin) [2112925]
+- net/mlx5: Simplify IPsec flow steering init/cleanup functions (Amir Tzin) [2112925]
+- net/mlx5: fs, an FTE should have no dests when deleted (Amir Tzin) [2112925]
+- net/mlx5: fs, call the deletion function of the node (Amir Tzin) [2112925]
+- net/mlx5: fs, delete the FTE when there are no rules attached to it (Amir Tzin) [2112925]
+- net/mlx5: fs, do proper bookkeeping for forward destinations (Amir Tzin) [2112925]
+- net/mlx5: fs, add unused destination type (Amir Tzin) [2112925]
+- net/mlx5: fs, jump to exit point and don't fall through (Amir Tzin) [2112925]
+- net/mlx5: fs, refactor software deletion rule (Amir Tzin) [2112925]
+- net/mlx5: fs, split software and IFC flow destination definitions (Amir Tzin) [2112925]
+- net/mlx5e: TC, set proper dest type (Amir Tzin) [2112925]
+- net/mlx5e: Remove unused mlx5e_dcbnl_build_rep_netdev function (Amir Tzin) [2112925]
+- net/mlx5e: Drop error CQE handling from the XSK RX handler (Amir Tzin) [2112925]
+- net/mlx5: Print initializing field in case of timeout (Amir Tzin) [2112925]
+- net/mlx5: Delete redundant default assignment of runtime devlink params (Amir Tzin) [2112925]
+- net/mlx5: Remove useless kfree (Amir Tzin) [2112925]
+- net/mlx5: use kvfree() for kvzalloc() in mlx5_ct_fs_smfs_matcher_create (Amir Tzin) [2112925]
+- RDMA/mlx5: Clean UMR QP type flow from mlx5_ib_post_send() (Amir Tzin) [2112925]
+- RDMA/mlx5: Use mlx5_umr_post_send_wait() to update xlt (Amir Tzin) [2112925]
+- RDMA/mlx5: Use mlx5_umr_post_send_wait() to update MR pas (Amir Tzin) [2112925]
+- RDMA/mlx5: Move creation and free of translation tables to umr.c (Amir Tzin) [2112925]
+- RDMA/mlx5: Use mlx5_umr_post_send_wait() to rereg pd access (Amir Tzin) [2112925]
+- RDMA/mlx5: Use mlx5_umr_post_send_wait() to revoke MRs (Amir Tzin) [2112925]
+- RDMA/mlx5: Introduce mlx5_umr_post_send_wait() (Amir Tzin) [2112925]
+- RDMA/mlx5: Expose wqe posting helpers outside of wr.c (Amir Tzin) [2112925]
+- RDMA/mlx5: Simplify get_umr_update_access_mask() (Amir Tzin) [2112925]
+- RDMA/mlx5: Move mkey ctrl segment logic to umr.c (Amir Tzin) [2112925]
+- RDMA/mlx5: Move umr checks to umr.h (Amir Tzin) [2112925]
+- RDMA/mlx5: Move init and cleanup of UMR to umr.c (Amir Tzin) [2112925]
+- RDMA/mlx5: Fix flow steering egress flow (Amir Tzin) [2112925]
+- mlx5, xsk: Diversify return values from xsk_wakeup call paths (Amir Tzin) [2112925]
+- net/mlx5: Remove not-implemented IPsec capabilities (Amir Tzin) [2112925]
+- net/mlx5: Remove ipsec_ops function table (Amir Tzin) [2112925]
+- net/mlx5: Reduce kconfig complexity while building crypto support (Amir Tzin) [2112925]
+- net/mlx5: Move IPsec file to relevant directory (Amir Tzin) [2112925]
+- net/mlx5: Remove not-needed IPsec config (Amir Tzin) [2112925]
+- net/mlx5: Align flow steering allocation namespace to common style (Amir Tzin) [2112925]
+- net/mlx5: Unify device IPsec capabilities check (Amir Tzin) [2112925]
+- net/mlx5: Remove useless IPsec device checks (Amir Tzin) [2112925]
+- net/mlx5: Remove ipsec vs. ipsec offload file separation (Amir Tzin) [2112925]
+- RDMA/mlx5: Drop crypto flow steering API (Amir Tzin) [2112925]
+- RDMA/mlx5: Delete never supported IPsec flow action (Amir Tzin) [2112925]
+- net/mlx5: Remove FPGA ipsec specific statistics (Amir Tzin) [2112925]
+- net/mlx5: Remove XFRM no_trailer flag (Amir Tzin) [2112925]
+- net/mlx5: Remove not-used IDA field from IPsec struct (Amir Tzin) [2112925]
+- net/mlx5: Delete metadata handling logic (Amir Tzin) [2112925]
+- net/mlx5_fpga: Drop INNOVA IPsec support (Amir Tzin) [2112925]
+- net/mlx5: Cleanup kTLS function names and their exposure (Amir Tzin) [2112925]
+- net/mlx5: Remove tls vs. ktls separation as it is the same (Amir Tzin) [2112925]
+- net/mlx5: Remove indirection in TLS build (Amir Tzin) [2112925]
+- net/mlx5: Reliably return TLS device capabilities (Amir Tzin) [2112925]
+- net/mlx5_fpga: Drop INNOVA TLS support (Amir Tzin) [2112925]
+- ipv6: Use ipv6_only_sock() helper in condition (mlx5 hunk only). (Amir Tzin) [2112925]
+- Revert "stmmac/intel: mark driver as tech preview" (Mark Salter) [2122230]
+- net: stmmac: Fix queue statistics reading (Mark Salter) [2122230]
+- stmmac: intel: Update PCH PTP clock rate from 200MHz to 204.8MHz (Mark Salter) [2122230]
+- net: stmmac: power up/down serdes in stmmac_open/release (Mark Salter) [2122230]
+- stmmac: intel: Simplify intel_eth_pci_remove() (Mark Salter) [2122230]
+- net: stmmac: work around sporadic tx issue on link-up (Mark Salter) [2122230]
+- stmmac: intel: Add a missing clk_disable_unprepare() call in intel_eth_pci_remove() (Mark Salter) [2122230]
+- net: phylink: fix SGMII inband autoneg enable (Mark Salter) [2122230]
+- net: phylink: fix NULL pl->pcs dereference during phylink_pcs_poll_start (Mark Salter) [2122230]
+- net: phylink: disable PCS polling over major configuration (Mark Salter) [2122230]
+- net: phylink: remove pcs_ops member (Mark Salter) [2122230]
+- net: pcs: xpcs: depends on PHYLINK in Kconfig (Mark Salter) [2122230]
+- net: phylink: add QSGMII support to phylink_mii_c22_pcs_encode_advertisement() (Mark Salter) [2122230]
+- net: stmmac: make mdio register skips PHY scanning for fixed-link (Mark Salter) [2122230]
+- stmmac: intel: add phy-mode and fixed-link ACPI _DSD setting support (Mark Salter) [2122230]
+- net: pcs: xpcs: add CL37 1000BASE-X AN support (Mark Salter) [2122230]
+- stmmac: intel: prepare to support 1000BASE-X phy interface setting (Mark Salter) [2122230]
+- net: make xpcs_do_config to accept advertising for pcs-xpcs and sja1105 (Mark Salter) [2122230]
+- net: pcs: xpcs: propagate xpcs_read error to xpcs_get_state_c37_sgmii (Mark Salter) [2122230]
+- net: stmmac: remove redunctant disable xPCS EEE call (Mark Salter) [2122230]
+- net: stmmac: fix dma queue left shift overflow issue (Mark Salter) [2122230]
+- net: stmmac: switch to use interrupt for hw crosstimestamping (Mark Salter) [2122230]
+- net: stmmac: fix unbalanced ptp clock issue in suspend/resume flow (Mark Salter) [2122230]
+- net: stmmac: fix pm runtime issue in stmmac_dvr_remove() (Mark Salter) [2122230]
+- net: stmmac: dwc-qos: Disable split header for Tegra194 (Mark Salter) [2122230]
+- stmmac: intel: Fix an error handling path in intel_eth_pci_probe() (Mark Salter) [2122230]
+- stmmac: intel: Add RPL-P PCI ID (Mark Salter) [2122230]
+- net: stmmac: use dev_err_probe() for reporting mdio bus registration failure (Mark Salter) [2122230]
+- net: stmmac: remove unused get_addr() callback (Mark Salter) [2122230]
+- net: pcs: pcs-xpcs: Convert to mdiobus_c45_read (Mark Salter) [2122230]
+- net: phylink: Convert to mdiobus_c45_{read|write} (Mark Salter) [2122230]
+- net: stmmac: stmmac_main: using pm_runtime_resume_and_get instead of pm_runtime_get_sync (Mark Salter) [2122230]
+- net: phylink: remove phylink_helper_basex_speed() (Mark Salter) [2122230]
+- net: phylink: remove phylink_set_10g_modes() (Mark Salter) [2122230]
+- net: stmmac: using pm_runtime_resume_and_get instead of pm_runtime_get_sync (Mark Salter) [2122230]
+- net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe() (Mark Salter) [2122230]
+- net: stmmac: disable Split Header (SPH) for Intel platforms (Mark Salter) [2122230]
+- net: stmmac: Use readl_poll_timeout_atomic() in atomic state (Mark Salter) [2122230]
+- net: stmmac: Fix unset max_speed difference between DT and non-DT platforms (Mark Salter) [2122230]
+- stmmac: intel: Add ADL-N PCI ID (Mark Salter) [2122230]
+- net: stmmac: switch no PTP HW support message to info level (Mark Salter) [2122230]
+- net: phylink: remove phylink_set_pcs() (Mark Salter) [2122230]
+- stmmac: intel: Enable 2.5Gbps for Intel AlderLake-S (Mark Salter) [2122230]
+- net: phylink: remove phylink_config's pcs_poll (Mark Salter) [2122230]
+- net: phylink: use legacy_pre_march2020 (Mark Salter) [2122230]
+- net: phylink: add legacy_pre_march2020 indicator (Mark Salter) [2122230]
+- net: stmmac: optimize locking around PTP clock reads (Mark Salter) [2122230]
+- net: stmmac: use .mac_select_pcs() interface (Mark Salter) [2122230]
+- net: stmmac: convert to phylink_generic_validate() (Mark Salter) [2122230]
+- net: stmmac: remove phylink_config.pcs_poll usage (Mark Salter) [2122230]
+- net: stmmac/xpcs: convert to pcs_validate() (Mark Salter) [2122230]
+- net: convert users of bitmap_foo() to linkmode_foo() (Mark Salter) [2122230]
+- net: phylink: add pcs_validate() method (Mark Salter) [2122230]
+- net: phylink: add mac_select_pcs() method to phylink_mac_ops (Mark Salter) [2122230]
+- net: phylink: tidy up disable bit clearing (Mark Salter) [2122230]
+- net: phylink: handle NA interface mode in phylink_fwnode_phy_connect() (Mark Salter) [2122230]
+- net: phylink: Add helpers for c22 registers without MDIO (Mark Salter) [2122230]
+- net: phylink: add 1000base-KX to phylink_caps_to_linkmodes() (Mark Salter) [2122230]
+- net: phylink: add generic validate implementation (Mark Salter) [2122230]
+- net: phylink: use supported_interfaces for phylink validation (Mark Salter) [2122230]
+- net: phylink: add MAC phy_interface_t bitmap (Mark Salter) [2122230]
+- net: phy: add phy_interface_t bitmap support (Mark Salter) [2122230]
+- net: phylink: Convert some users of mdiobus_* to mdiodev_* (Mark Salter) [2122230]
+- net: phylink: use mdiobus_modify_changed() helper (Mark Salter) [2122230]
+- net: mdio: add mdiobus_modify_changed() (Mark Salter) [2122230]
+- net: phylink: add phylink_set_10g_modes() helper (Mark Salter) [2122230]
+- net: stmmac: fill in supported_interfaces (Mark Salter) [2122230]
+- net: stmmac: convert to phylink_get_linkmodes() (Mark Salter) [2122230]
+- net: xpcs: add support for retrieving supported interface modes (Mark Salter) [2122230]
+- net: mdio: Add helper functions for accessing MDIO devices (Mark Salter) [2122230]
+- net: stmmac: fix return value of __setup handler (Mark Salter) [2122230]
+- net: stmmac: only enable DMA interrupts when ready (Mark Salter) [2122230]
+- net: stmmac: ensure PTP time register reads are consistent (Mark Salter) [2122230]
+- net: stmmac: dump gmac4 DMA registers correctly (Mark Salter) [2122230]
+- net: stmmac: properly handle with runtime pm in stmmac_dvr_remove() (Mark Salter) [2122230]
+- net: stmmac: skip only stmmac_ptp_register when resume from suspend (Mark Salter) [2122230]
+- drivers/net/ethernet: clean up mis-targeted comments (Mark Salter) [2122230]
+- net: stmmac: configure PTP clock source prior to PTP initialization (Mark Salter) [2122230]
+- net: stmmac: reduce unnecessary wakeups from eee sw timer (Mark Salter) [2122230]
+- net: stmmac: remove unused members in struct stmmac_priv (Mark Salter) [2122230]
+- net: stmmac: Fix "Unbalanced pm_runtime_enable!" warning (Mark Salter) [2122230]
+- net: stmmac: add tc flower filter for EtherType matching (Mark Salter) [2122230]
+- net: stmmac: bump tc when get underflow error from DMA descriptor (Mark Salter) [2122230]
+- stmmac: remove ethtool driver version info (Mark Salter) [2122230]
+- net: stmmac: Calculate CDC error only once (Mark Salter) [2122230]
+- net: stmmac: ptp: fix potentially overflowing expression (Mark Salter) [2122230]
+- net: stmmac: fix tc flower deletion for VLAN priority Rx steering (Mark Salter) [2122230]
+- net: stmmac: Avoid DMA_CHAN_CONTROL write if no Split Header support (Mark Salter) [2122230]
+- net: stmmac: Disable Tx queues when reconfiguring the interface (Mark Salter) [2122230]
+- net: phylink: Force retrigger in case of latched link-fail indicator (Mark Salter) [2122230]
+- net: phylink: Force link down and retrigger resolve on interface change (Mark Salter) [2122230]
+- net: stmmac: retain PTP clock time during SIOCSHWTSTAMP ioctls (Mark Salter) [2122230]
+- stmmac_pci: Fix underflow size in stmmac_rx (Mark Salter) [2122230]
+- net: stmmac: Fix signed/unsigned wreckage (Mark Salter) [2122230]
+- net: stmmac: allow a tc-taprio base-time of zero (Mark Salter) [2122230]
+- ethernet: stmmac: use eth_hw_addr_set() (Mark Salter) [2122230]
+- net: phylink: Support disabling autonegotiation for PCS (Mark Salter) [2122230]
+- net: stmmac: fix off-by-one error in sanity check (Mark Salter) [2122230]
+- net: stmmac: fix gcc-10 -Wrestrict warning (Mark Salter) [2122230]
+- net: phylink: don't call netif_carrier_off() with NULL netdev (Mark Salter) [2122230]
+- net: stmmac: Fix E2E delay mechanism (Mark Salter) [2122230]
+- net: stmmac: add support for dwmac 3.40a (Mark Salter) [2122230]
+- net: stmmac: fix get_hw_feature() on old hardware (Mark Salter) [2122230]
+- net: stmmac: trigger PCS EEE to turn off on link down (Mark Salter) [2122230]
+- net: pcs: xpcs: fix incorrect steps on disable EEE (Mark Salter) [2122230]
+- net: pcs: xpcs: fix incorrect CL37 AN sequence (Mark Salter) [2122230]
+- net: stmmac: fix EEE init issue when paired with EEE capable PHYs (Mark Salter) [2122230]
+- net: stmmac: allow CSR clock of 300MHz (Mark Salter) [2122230]
+- net: stmmac: platform: fix build warning when with !CONFIG_PM_SLEEP (Mark Salter) [2122230]
+- net: stmmac: fix system hang caused by eee_ctrl_timer during suspend/resume (Mark Salter) [2122230]
+- net: stmmac: fix MAC not working when system resume back with WoL active (Mark Salter) [2122230]
+- net: phylink: add suspend/resume support (Mark Salter) [2122230]
+- net: stmmac: add ethtool per-queue irq statistic support (Mark Salter) [2122230]
+- net: stmmac: add ethtool per-queue statistic framework (Mark Salter) [2122230]
+- net: stmmac: fix INTR TBU status affecting irq count statistic (Mark Salter) [2122230]
+- net: pcs: xpcs: Add Pause Mode support for SGMII and 2500BaseX (Mark Salter) [2122230]
+- net: stmmac: fix kernel panic due to NULL pointer dereference of plat->est (Mark Salter) [2122230]
+- net: pcs: xpcs: fix error handling on failed to allocate memory (Mark Salter) [2122230]
+- net: stmmac: add est_irq_status callback function for GMAC 4.10 and 5.10 (Mark Salter) [2122230]
+- net: stmmac: ptp: update tas basetime after ptp adjust (Mark Salter) [2122230]
+- net: stmmac: add mutex lock to protect est parameters (Mark Salter) [2122230]
+- net: stmmac: separate the tas basetime calculation function (Mark Salter) [2122230]
+- net: stmmac: Terminate FPE workqueue in suspend (Mark Salter) [2122230]
+- stmmac: intel: set PCI_D3hot in suspend (Mark Salter) [2122230]
+- stmmac: intel: Enable PHY WOL option in EHL (Mark Salter) [2122230]
+- net: stmmac: option to enable PHY WOL with PMT enabled (Mark Salter) [2122230]
+- net: stmmac: remove redundant continue statement (Mark Salter) [2122230]
+- stmmac: intel: fix wrong kernel-doc (Mark Salter) [2122230]
+- stmmac: intel: move definitions to dwmac-intel header file (Mark Salter) [2122230]
+- net: pcs: xpcs: export xpcs_do_config and xpcs_link_up (Mark Salter) [2122230]
+- net: pcs: xpcs: also ignore phy id if it's all ones (Mark Salter) [2122230]
+- net: pcs: xpcs: add support for sgmii with no inband AN (Mark Salter) [2122230]
+- net: pcs: xpcs: move register bit descriptions to a header file (Mark Salter) [2122230]
+- net: stmmac: reduce indentation when calling stmmac_xpcs_setup (Mark Salter) [2122230]
+- net: stmmac: reverse Christmas tree notation in stmmac_xpcs_setup (Mark Salter) [2122230]
+- net: pcs: xpcs: rename mdio_xpcs_args to dw_xpcs (Mark Salter) [2122230]
+- net: phylink: Refactor phylink_of_phy_connect() (Mark Salter) [2122230]
+- net: phylink: introduce phylink_fwnode_phy_connect() (Mark Salter) [2122230]
+- net: phy: Introduce phy related fwnode functions (Mark Salter) [2122230]
+- net: phy: Introduce fwnode_mdio_find_device() (Mark Salter) [2122230]
+- net: stmmac: Fix unused values warnings (Mark Salter) [2122230]
+- net: stmmac: Fix mixed enum type warning (Mark Salter) [2122230]
+- net: stmmac: Fix missing { } around two statements in an if statement (Mark Salter) [2122230]
+- net: stmmac: explicitly deassert GMAC_AHB_RESET (Mark Salter) [2122230]
+- net: stmmac: platform: use optional clk/reset get APIs (Mark Salter) [2122230]
+- net: stmmac: fix NPD with phylink_set_pcs if there is no MDIO bus (Mark Salter) [2122230]
+- net: stmmac: enable Intel mGbE 2.5Gbps link speed (Mark Salter) [2122230]
+- net: pcs: add 2500BASEX support for Intel mGbE controller (Mark Salter) [2122230]
+- net: stmmac: split xPCS setup from mdio register (Mark Salter) [2122230]
+- net: pcs: xpcs: convert to phylink_pcs_ops (Mark Salter) [2122230]
+- net: pcs: xpcs: convert to mdio_device (Mark Salter) [2122230]
+- net: pcs: xpcs: use mdiobus_c45_addr in xpcs_{read,write} (Mark Salter) [2122230]
+- net: pcs: xpcs: export xpcs_probe (Mark Salter) [2122230]
+- net: pcs: xpcs: export xpcs_config_eee (Mark Salter) [2122230]
+- net: pcs: xpcs: export xpcs_validate (Mark Salter) [2122230]
+- net: pcs: xpcs: make the checks related to the PHY interface mode stateless (Mark Salter) [2122230]
+- net: pcs: xpcs: delete shim definition for mdio_xpcs_get_ops() (Mark Salter) [2122230]
+- net: pcs: xpcs: there is only one PHY ID (Mark Salter) [2122230]
+- net: stmmac: enable platform specific safety features (Mark Salter) [2122230]
+- net: stmmac: the XPCS obscures a potential "PHY not found" error (Mark Salter) [2122230]
+- net: stmmac: Add callbacks for DWC xpcs Energy Efficient Ethernet (Mark Salter) [2122230]
+- net: pcs: Introducing support for DWC xpcs Energy Efficient Ethernet (Mark Salter) [2122230]
+
+* Thu Feb 02 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-456.el8]
+- xfs: reserve quota for dir expansion when linking/unlinking files (Bill O'Donnell) [2086880]
+- scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM (Emanuele Giuseppe Esposito) [2150659]
+- ACPICA: Fix operand resolution (Mark Langsdorf) [2156144]
+- driver core: Add missing kernel doc for device::msi_lock (Myron Stowe) [2158839]
+- PCI/MSI: Protect msi_desc::masked for multi-MSI (Myron Stowe) [2158839]
+- KVM: arm64: Don't retrieve memory slot again in page fault handler (Gavin Shan) [2161161]
+- fs: allow cross-vfsmount reflink/dedupe (Andrey Albershteyn) [2086200]
+- powerpc/hv-gpci: Fix hv_gpci event list (Mamatha Inamdar) [2161258]
+- powerpc: declare unmodified attribute_group usages const (Mamatha Inamdar) [2161258]
+- drm/amd: Delay removal of the firmware framebuffer (Michel Dänzer) [2162039]
+- cpuidle: Add cpu_idle_miss trace event (Mark Langsdorf) [2122312]
+- cpuidle: haltpoll: Add trace points for guest_halt_poll_ns grow/shrink (Mark Langsdorf) [2122312]
+- efi/cper, cxl: Decode CXL Error Log (Lenny Szubowicz) [2143733]
+- efi/cper, cxl: Decode CXL Protocol Error Section (Lenny Szubowicz) [2143733]
+- efi: cper: Add support for printing Firmware Error Record Reference (Lenny Szubowicz) [2143733]
+- Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu (Wander Lairson Costa) [2152927] {CVE-2022-3564}
+- drm/i915: Fix CFI violations in gt_sysfs (Jocelyn Falempe) [2154880]
+- NFS: Clear the file access cache upon login (Benjamin Coddington) [2050832]
+- NFS: don't store 'struct cred *' in struct nfs_access_entry (Benjamin Coddington) [2050832]
+- NFS: pass cred explicitly for access tests (Benjamin Coddington) [2050832]
+- NFS: change nfs_access_get_cached to only report the mask (Benjamin Coddington) [2050832]
+- init: Initialize noop_backing_dev_info early (Nico Pache) [2160228]
+- mm: vmscan: make rotations a secondary factor in balancing anon vs file (Nico Pache) [2160228]
+- writeback: Fix inode->i_io_list not be protected by inode->i_lock error (Nico Pache) [2160228]
+- mm: vmscan: fix extreme overreclaim and swap floods (Nico Pache) [2160228]
+- mm/page_alloc: ensure kswapd doesn't accidentally go to sleep (Nico Pache) [2160228]
+- mm/page_io: count submission time as thrashing delay for delayacct (Nico Pache) [2160228]
+- delayacct: support re-entrance detection of thrashing accounting (Nico Pache) [2160228]
+- filemap: make the accounting of thrashing more consistent (Nico Pache) [2160228]
+- writeback: don't warn on an unregistered BDI in __mark_inode_dirty (Nico Pache) [2160228]
+- s390/dasd: fix no record found for raw_track_access (Tobias Huschle) [2161270]
+- crypto: testmgr - disallow certain DRBG hash functions in FIPS mode (Vladis Dronov) [2152133]
+- dmaengine: idxd: Fix crc_val field for completion record (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: Make read buffer sysfs attributes invisible for Intel IAA (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: Make max batch size attributes in sysfs invisible for Intel IAA (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: Do not call DMX TX callbacks during workqueue disable (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: Prevent use after free on completion memory (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: Let probe fail when workqueue cannot be enabled (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: Fix max batch size for Intel IAA (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: add configuration for concurrent batch descriptor processing (Jerry Snitselaar) [2144375]
+- dmanegine: idxd: reformat opcap output to match bitmap_parse() input (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: add configuration for concurrent work descriptor processing (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: add WQ operation cap restriction support (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: convert ats_dis to a wq flag (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: track enabled workqueues in bitmap (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: Set wq state to disabled in idxd_wq_disable_cleanup() (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: Do not enable user type Work Queue without Shared Virtual Addressing (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: fix RO device state error after been disabled/reset (Jerry Snitselaar) [2144375]
+- dmaengine: idxd: avoid deadlock in process_misc_interrupts() (Jerry Snitselaar) [2144375]
+- KVM: x86: nSVM: implement nested LBR virtualization (Emanuele Giuseppe Esposito) [2155149]
+- KVM: x86: nSVM: correctly virtualize LBR msrs when L2 is running (Emanuele Giuseppe Esposito) [2155149]
+- kvm: x86: SVM: use vmcb* instead of svm->vmcb where it makes sense (Emanuele Giuseppe Esposito) [2155149]
+- KVM: x86: nSVM: implement nested VMLOAD/VMSAVE (Emanuele Giuseppe Esposito) [2155149]
+- eth: octeon: fix build after netif_napi_add() changes (Íñigo Huguet) [2152918]
+- net: drop the weight argument from netif_napi_add (Íñigo Huguet) [2152918]
+- net: remove netif_tx_napi_add() (Íñigo Huguet) [2152918]
+- ipoib: switch to netif_napi_add_weight() (Íñigo Huguet) [2152918]
+- IB/hfi1: switch to netif_napi_add_weight() (Íñigo Huguet) [2152918]
+- IB/hfi1: switch to netif_napi_add_tx() (Íñigo Huguet) [2152918]
+- crypto: caam/qi2 - switch to netif_napi_add_tx_weight() (Íñigo Huguet) [2152918]
+- can: can-dev: move to netif_napi_add_weight() (Íñigo Huguet) [2152918]
+- net: virtio: switch to netif_napi_add_weight() (Íñigo Huguet) [2152918]
+- r8152: switch to netif_napi_add_weight() (Íñigo Huguet) [2152918]
+- eth: switch to netif_napi_add_weight() (Íñigo Huguet) [2152918]
+- mt76: switch to netif_napi_add_tx() (Íñigo Huguet) [2152918]
+- net: move snowflake callers to netif_napi_add_tx_weight() (Íñigo Huguet) [2152918]
+- net: switch to netif_napi_add_tx() (Íñigo Huguet) [2152918]
+- can: m_can: remove a copy of the NAPI_POLL_WEIGHT define (Íñigo Huguet) [2152918]
+- eth: remove remaining copies of the NAPI_POLL_WEIGHT define (Íñigo Huguet) [2152918]
+- eth: benet: remove a copy of the NAPI_POLL_WEIGHT define (Íñigo Huguet) [2152918]
+- eth: atlantic: remove a copy of the NAPI_POLL_WEIGHT define (Íñigo Huguet) [2152918]
+- eth: smsc: remove a copy of the NAPI_POLL_WEIGHT define (Íñigo Huguet) [2152918]
+- eth: remove copies of the NAPI_POLL_WEIGHT define (Íñigo Huguet) [2152918]
+- netdev: reshuffle netif_napi_add() APIs to allow dropping weight (Íñigo Huguet) [2152918]
+- ipv6: raw: Deduct extension header length in rawv6_push_pending_frames (Hangbin Liu) [2162124] {CVE-2023-0394}
+- netfilter: conntrack: handle tcp challenge acks during connection reuse (Florian Westphal) [2158726]
+- act_mirred: use the backlog for nested calls to mirred ingress (Davide Caratti) [2131339] {CVE-2022-4269}
+- net/sched: act_mirred: better wording on protection against excessive stack growth (Davide Caratti) [2131339]
+- xfs: add selinux labels to whiteout inodes (Andrey Albershteyn) [2094060]
+- tdx: enable TDX attestation driver (Wander Lairson Costa) [2076748]
+- selftests/tdx: Test TDX attestation GetReport support (Wander Lairson Costa) [2076748]
+- virt: Add TDX guest driver (Wander Lairson Costa) [2076748]
+- x86/tdx: Add a wrapper to get TDREPORT0 from the TDX Module (Wander Lairson Costa) [2076748]
+- proc: proc_skip_spaces() shouldn't think it is working on C strings (Wander Lairson Costa) [2152572] {CVE-2022-4378}
+- proc: avoid integer type confusion in get_proc_long (Wander Lairson Costa) [2152572] {CVE-2022-4378}
+- NFSv4.2: Update mode bits after ALLOCATE and DEALLOCATE (Jeffrey Layton) [2127153]
+- NFS: nfsiod should not block forever in mempool_alloc() (Jeffrey Layton) [2127153]
+- NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly (Benjamin Coddington) [2061259]
+- NFSv4.1: Don't decrease the value of seq_nr_highest_sent (Benjamin Coddington) [2061259]
+
+* Wed Feb 01 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-455.el8]
+- uas: ignore UAS for Thinkplus chips (Torez Smith) [2113004]
+- usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS (Torez Smith) [2113004]
+- thunderbolt: Explicitly reset plug events delay back to USB4 spec value (Torez Smith) [2113004]
+- USB: serial: option: add Quectel BG95 0x0203 composition (Torez Smith) [2113004]
+- thunderbolt: Add support for Intel Maple Ridge single port controller (Torez Smith) [2113004]
+- USB: core: Fix RST error in hub.c (Torez Smith) [2113004]
+- kunit: fix Kconfig for build-in tests USB4 and Nitro Enclaves (Torez Smith) [2113004]
+- usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS (Torez Smith) [2113004]
+- USB: serial: cp210x: add Decagon UCA device id (Torez Smith) [2113004]
+- USB: core: Prevent nested device-reset calls (Torez Smith) [2113004]
+- usb: typec: Remove retimers properly (Torez Smith) [2113004]
+- USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id (Torez Smith) [2113004]
+- USB: serial: option: add support for OPPO R11 diag port (Torez Smith) [2113004]
+- xhci: Add grace period after xHC start to prevent premature runtime suspend. (Torez Smith) [2113004]
+- xhci: Fix null pointer dereference in remove if xHC has only one roothub (Torez Smith) [2113004]
+- USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) (Torez Smith) [2113004]
+- usb: xhci-mtk: fix bandwidth release issue (Torez Smith) [2113004]
+- usb: xhci-mtk: relax TT periodic bandwidth allocation (Torez Smith) [2113004]
+- usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles (Torez Smith) [2113004]
+- usb: typec: intel_pmc_mux: Add new ACPI ID for Meteor Lake IOM device (Torez Smith) [2113004]
+- usb-storage: Add ignore-residue quirk for NXP PN7462AU (Torez Smith) [2113004]
+- usb: typec: tcpm: Return ENOTSUPP for power supply prop writes (Torez Smith) [2113004]
+- thunderbolt: Check router generation before connecting xHCI (Torez Smith) [2113004]
+- thunderbolt: Use the actual buffer in tb_async_error() (Torez Smith) [2113004]
+- USB: usbsevseg: convert sysfs snprintf to sysfs_emit (Torez Smith) [2113004]
+- dt-bindings: usb: Add binding for TI USB8041 hub controller (Torez Smith) [2113004]
+- usb: typec: ucsi: stm32g0: add bootloader support (Torez Smith) [2113004]
+- usb: typec: ucsi: stm32g0: add support for stm32g0 controller (Torez Smith) [2113004]
+- dt-bindings: usb: typec: add bindings for stm32g0 controller (Torez Smith) [2113004]
+- usb: typec: ucsi: Acknowledge the GET_ERROR_STATUS command completion (Torez Smith) [2113004]
+- usb: typec: retimer: Add missing id check in match callback (Torez Smith) [2113004]
+- USB: xhci: Fix comment typo (Torez Smith) [2113004]
+- usb/typec/tcpm: fix repeated words in comments (Torez Smith) [2113004]
+- usb/misc: fix repeated words in comments (Torez Smith) [2113004]
+- usb/image: fix repeated words in comments (Torez Smith) [2113004]
+- usb/host: fix repeated words in comments (Torez Smith) [2113004]
+- usb/core: fix repeated words in comments (Torez Smith) [2113004]
+- usb/atm: fix repeated words in comments (Torez Smith) [2113004]
+- USB: HCD: Fix URB giveback issue in tasklet function (Torez Smith) [2113004]
+- usb: xhci_plat_remove: avoid NULL dereference (Torez Smith) [2113004]
+- USB: serial: fix tty-port initialized comments (Torez Smith) [2113004]
+- USB: serial: usb_wwan: replace DTR/RTS magic numbers with macros (Torez Smith) [2113004]
+- USB: cdc-acm: use CDC serial-state defines (Torez Smith) [2113004]
+- USB: cdc-acm: use CDC control-line defines (Torez Smith) [2113004]
+- USB: cdc: add serial-state defines (Torez Smith) [2113004]
+- USB: cdc: add control-signal defines (Torez Smith) [2113004]
+- net/cdc_ncm: Increase NTB max RX/TX values to 64kb (Torez Smith) [2113004]
+- usb: typec: Add retimer handle to port (Torez Smith) [2113004]
+- usb: typec: Add support for retimers (Torez Smith) [2113004]
+- dt-bindings: usb: Add analogix anx7411 PD binding (Torez Smith) [2113004]
+- usb: ldusb: replace ternary operator with max_t() (Torez Smith) [2113004]
+- USB: serial: fix repeated word "the" in comments (Torez Smith) [2113004]
+- USB: serial: io_edgeport: fix spelling mistakes (Torez Smith) [2113004]
+- USB: serial: ftdi_sio: add Belimo device ids (Torez Smith) [2113004]
+- thunderbolt: test: Use kunit_test_suite() macro (Torez Smith) [2113004]
+- media: pvrusb2: drop unexpected word 'a' in comments (Torez Smith) [2113004]
+- media: gspca: drop unexpected word 'is' in the comments (Torez Smith) [2113004]
+- usb: typec: add missing uevent when partner support PD (Torez Smith) [2113004]
+- tools: usb: testusb: Add super-plus speed reporting (Torez Smith) [2113004]
+- tools: usb: testusb: Add super speed reporting (Torez Smith) [2113004]
+- tools: usb: testusb: Add wireless speed reporting (Torez Smith) [2113004]
+- usb: typec: tcpci: move tcpci.h to include/linux/usb/ (Torez Smith) [2113004]
+- ARM: sa1100/assabet: move dmabounce hack to ohci driver (Torez Smith) [2113004]
+- usb: host: xhci: use snprintf() in xhci_decode_trb() (Torez Smith) [2113004]
+- USB: cdc-acm: use define for timeout (Torez Smith) [2113004]
+- usb: typec_altmode: add a missing "@" at a kernel-doc parameter (Torez Smith) [2113004]
+- usb: core: sysfs: convert sysfs snprintf to sysfs_emit (Torez Smith) [2113004]
+- media: usb: gspca: aligned '*' each line (Torez Smith) [2113004]
+- media: hdpvr: fix error value returns in hdpvr_read (Torez Smith) [2113004]
+- media: em28xx: Remove useless license text when SPDX-License-Identifier is already used (Torez Smith) [2113004]
+- USB: serial: use kmemdup instead of kmalloc + memcpy (Torez Smith) [2113004]
+- usb: host: ehci-q: Fix ehci_submit_single_step_set_feature annotation typo (Torez Smith) [2113004]
+- USB: storage: Fix typo in comment (Torez Smith) [2113004]
+- usb: typec: mux: Add CONFIG guards for functions (Torez Smith) [2113004]
+- usb: typec: mux: Allow muxes to specify mode-switch (Torez Smith) [2113004]
+- usb: musb: Add support for PolarFire SoC's musb controller (Torez Smith) [2113004]
+- media: pvrusb2: fix memory leak in pvr_probe (Torez Smith) [2113004]
+- media: airspy: respect the DMA coherency rules (Torez Smith) [2113004]
+- media: usbtv: Add PAL-Nc standard (Torez Smith) [2113004]
+- thunderbolt: Fix typo in comment (Torez Smith) [2113004]
+- dt-bindings: usb: add documentation for aspeed udc (Torez Smith) [2113004]
+- usb: Avoid extra usb SET_SEL requests when enabling link power management (Torez Smith) [2113004]
+- usb: typec: tcpm: Register USB Power Delivery Capabilities (Torez Smith) [2113004]
+- usb: typec: USB Power Delivery helpers for ports and partners (Torez Smith) [2113004]
+- usb: typec: Separate USB Power Delivery from USB Type-C (Torez Smith) [2113004]
+- usb: hub: port: add sysfs entry to switch port power (Torez Smith) [2113004]
+- ucsi_ccg: ACPI based I2c client enumeration for AMD ASICs (Torez Smith) [2113004]
+- ucsi_ccg: Do not hardcode interrupt polarity and type (Torez Smith) [2113004]
+- usb: xhci-mtk: add support optional controller reset (Torez Smith) [2113004]
+- usb: typec: tcpm: fix typo in comment (Torez Smith) [2113004]
+- usb: xhci: tegra: Fix error check (Torez Smith) [2113004]
+- usb: common: usb-conn-gpio: Allow wakeup from system suspend (Torez Smith) [2113004]
+- usbip: vudc: Don't enable IRQs prematurely (Torez Smith) [2113004]
+- USB: usbip: clean up mixed use of _irq() and _irqsave() (Torez Smith) [2113004]
+- USB: Follow-up to SPDX identifiers addition - remove now useless comments (Torez Smith) [2113004]
+- thunderbolt: Fix some kernel-doc comments (Torez Smith) [2113004]
+- usb: hub: Simplify error and success path in port_over_current_notify (Torez Smith) [2113004]
+- usb: remove Link Powermanagement (LPM) disable before port reset. (Torez Smith) [2113004]
+- thunderbolt: Change TMU mode to HiFi uni-directional once DisplayPort tunneled (Torez Smith) [2113004]
+- usb: core: Bail out when port is stuck in reset loop (Torez Smith) [2113004]
+- thunderbolt: Add CL1 support for USB4 and Titan Ridge routers (Torez Smith) [2113004]
+- thunderbolt: Change downstream router's TMU rate in both TMU uni/bidir mode (Torez Smith) [2113004]
+- USB: core: Fix bug in resuming hub's handling of wakeup requests (Torez Smith) [2113004]
+- thunderbolt: Fix typos in CLx enabling (Torez Smith) [2113004]
+- usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 (Torez Smith) [2113004]
+- usb: hub: make wait_for_connected() take an int instead of a pointer to int (Torez Smith) [2113004]
+- thunderbolt: CLx disable before system suspend only if previously enabled (Torez Smith) [2113004]
+- usb: hub: avoid warm port reset during USB3 disconnect (Torez Smith) [2113004]
+- thunderbolt: Silently ignore CLx enabling in case CLx is not supported (Torez Smith) [2113004]
+
+* Mon Jan 30 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-454.el8]
+- config: Enable Security Path (Ricardo Robaina) [2161309]
+- tcp: Fix build break when CONFIG_IPV6=n (Jamie Bainbridge) [2143849]
+- tcp: annotate data-race around queue->synflood_warned (Jamie Bainbridge) [2143849]
+- tcp: Add listening address to SYN flood message (Jamie Bainbridge) [2143849]
+- tcp: Fix data-races around sysctl_tcp_syncookies. (Jamie Bainbridge) [2143849]
+- firmware_loader: Fix memory leak in firmware upload (Mark Langsdorf) [2122319]
+- firmware_loader: Fix use-after-free during unregister (Mark Langsdorf) [2122319]
+- firmware_loader: fix memory leak for paged buffer (Mark Langsdorf) [2122319]
+- firmware_loader: describe 'module' parameter of firmware_upload_register() (Mark Langsdorf) [2122319]
+- firmware_loader: Move definitions from sysfs_upload.h to sysfs.h (Mark Langsdorf) [2122319]
+- firmware_loader: Add sysfs nodes to monitor fw_upload (Mark Langsdorf) [2122319]
+- firmware_loader: Add firmware-upload support (Mark Langsdorf) [2122319]
+- firmware_loader: Split sysfs support from fallback (Mark Langsdorf) [2122319]
+- firmware_loader: Clear data and size in fw_free_paged_buf (Mark Langsdorf) [2122319]
+- firmware: Use kvmalloc for page tables (Mark Langsdorf) [2122319]
+- firmware: Unify the paged buffer release helper (Mark Langsdorf) [2122319]
+- firmware: Free temporary page table after vmapping (Mark Langsdorf) [2122319]
+- arch_topology: Make cluster topology span at least SMT CPUs (Mark Langsdorf) [2122319]
+- driver core: fix driver_set_override() issue with empty strings (Mark Langsdorf) [2122319]
+- arch_topology: Silence early cacheinfo errors when non-existent (Mark Langsdorf) [2122319]
+- driver core: Don't probe devices after bus_type.match() probe deferral (Mark Langsdorf) [2122319]
+- regmap: spi: Reserve space for register address/padding (Mark Langsdorf) [2122319]
+- arch_topology: Fix cache attributes detection in the CPU hotplug path (Mark Langsdorf) [2122319]
+- cacheinfo: Use atomic allocation for percpu cache attributes (Mark Langsdorf) [2122319]
+- regmap: permit to set reg_update_bits with bulk implementation (Mark Langsdorf) [2122319]
+- PM: domains: Ensure genpd_debugfs_dir exists before remove (Mark Langsdorf) [2122319]
+- PM: runtime: Extend support for wakeirq for force_suspend|resume (Mark Langsdorf) [2122319]
+- regmap: add WARN_ONCE when invalid mask is provided to regmap_field_init() (Mark Langsdorf) [2122319]
+- PM: wakeup: Unify device_init_wakeup() for PM_SLEEP and !PM_SLEEP (Mark Langsdorf) [2122319]
+- arch_topology: Warn that topology for nested clusters is not supported (Mark Langsdorf) [2122319]
+- arch_topology: Add support for parsing sockets in /cpu-map (Mark Langsdorf) [2122319]
+- arch_topology: Set cluster identifier in each core/thread from /cpu-map (Mark Langsdorf) [2122319]
+- arch_topology: Limit span of cpu_clustergroup_mask() (Mark Langsdorf) [2122319]
+- arch_topology: Don't set cluster identifier as physical package identifier (Mark Langsdorf) [2122319]
+- arch_topology: Avoid parsing through all the CPUs once a outlier CPU is found (Mark Langsdorf) [2122319]
+- arch_topology: Check for non-negative value rather than -1 for IDs validity (Mark Langsdorf) [2122319]
+- arch_topology: Set thread sibling cpumask only within the cluster (Mark Langsdorf) [2122319]
+- arch_topology: Drop LLC identifier stash from the CPU topology (Mark Langsdorf) [2122319]
+- arm64: topology: Remove redundant setting of llc_id in CPU topology (Mark Langsdorf) [2122319]
+- arch_topology: Use the last level cache information from the cacheinfo (Mark Langsdorf) [2122319]
+- arch_topology: Add support to parse and detect cache attributes (Mark Langsdorf) [2122319]
+- cacheinfo: Align checks in cache_shared_cpu_map_{setup,remove} for readability (Mark Langsdorf) [2122319]
+- cacheinfo: Use cache identifiers to check if the caches are shared if available (Mark Langsdorf) [2122319]
+- cacheinfo: Allow early detection and population of cache attributes (Mark Langsdorf) [2122319]
+- cacheinfo: Add support to check if last level cache(LLC) is valid or shared (Mark Langsdorf) [2122319]
+- cacheinfo: Move cache_leaves_are_shared out of CONFIG_OF (Mark Langsdorf) [2122319]
+- cacheinfo: Add helper to access any cache index for a given CPU (Mark Langsdorf) [2122319]
+- cacheinfo: Use of_cpu_device_node_get instead cpu_dev->of_node (Mark Langsdorf) [2122319]
+- regmap: cache: Add extra parameter check in regcache_init (Mark Langsdorf) [2122319]
+- regmap-irq: Refactor checks for status bulk read support (Mark Langsdorf) [2122319]
+- regmap-irq: Remove mask_writeonly and regmap_irq_update_bits() (Mark Langsdorf) [2122319]
+- regmap-irq: Remove inappropriate uses of regmap_irq_update_bits() (Mark Langsdorf) [2122319]
+- driver core: fix potential deadlock in __driver_attach (Mark Langsdorf) [2122319]
+- devtmpfs: fix the dangling pointer of global devtmpfsd thread (Mark Langsdorf) [2122319]
+- regmap: Don't warn about cache only mode for devices with no cache (Mark Langsdorf) [2122319]
+- regmap: Wire up regmap_config provided bulk write in missed functions (Mark Langsdorf) [2122319]
+- regmap: Make regmap_noinc_read() return -ENOTSUPP if map->read isn't set (Mark Langsdorf) [2122319]
+- regmap: Re-introduce bulk read support check in regmap_bulk_read() (Mark Langsdorf) [2122319]
+- init: Initialize noop_backing_dev_info early (Mark Langsdorf) [2122319]
+- driver core: Introduce device_find_any_child() helper (Mark Langsdorf) [2122319]
+- regmap: cache: Fix syntax errors in comments (Mark Langsdorf) [2122319]
+- PM: domains: Trust domain-idle-states from DT to be correct by genpd (Mark Langsdorf) [2122319]
+- PM: domains: Measure power-on/off latencies in genpd based on a governor (Mark Langsdorf) [2122319]
+- PM: domains: Allocate governor data dynamically based on a genpd governor (Mark Langsdorf) [2122319]
+- PM: domains: Clean up some code in pm_genpd_init() and genpd_remove() (Mark Langsdorf) [2122319]
+- PM: domains: Fix initialization of genpd's next_wakeup (Mark Langsdorf) [2122319]
+- PM: domains: Fixup QoS latency measurements for IRQ safe devices in genpd (Mark Langsdorf) [2122319]
+- PM: domains: Measure suspend/resume latencies in genpd based on governor (Mark Langsdorf) [2122319]
+- PM: domains: Move the next_wakeup variable into the struct gpd_timing_data (Mark Langsdorf) [2122319]
+- PM: domains: Allocate gpd_timing_data dynamically based on governor (Mark Langsdorf) [2122319]
+- PM: domains: Skip another warning in irq_safe_dev_in_sleep_domain() (Mark Langsdorf) [2122319]
+- PM: domains: Rename irq_safe_dev_in_no_sleep_domain() in genpd (Mark Langsdorf) [2122319]
+- PM: domains: Don't check PM_QOS_FLAG_NO_POWER_OFF in genpd (Mark Langsdorf) [2122319]
+- PM: domains: Drop redundant code for genpd always-on governor (Mark Langsdorf) [2122319]
+- PM: domains: Add GENPD_FLAG_RPM_ALWAYS_ON for the always-on governor (Mark Langsdorf) [2122319]
+- PM: wakeup: expose pm_wakeup_pending to modules (Mark Langsdorf) [2122319]
+- driver core: fix deadlock in __device_attach (Mark Langsdorf) [2122319]
+- driver: base: fix UAF when driver_attach failed (Mark Langsdorf) [2122319]
+- driver core: location: Add "back" as a possible output for panel (Mark Langsdorf) [2122319]
+- driver core: location: Free struct acpi_pld_info *pld (Mark Langsdorf) [2122319]
+- regmap: Add missing map->bus check (Mark Langsdorf) [2122319]
+- device property: Advertise fwnode and device property count API calls (Mark Langsdorf) [2122319]
+- driver core: location: Check for allocations failure (Mark Langsdorf) [2122319]
+- regmap: Add bulk read/write callbacks into regmap_config (Mark Langsdorf) [2122319]
+- device property: Fix recent breakage of fwnode_get_next_parent_dev() (Mark Langsdorf) [2122319]
+- drivers/base/memory: fix an unlikely reference counting issue in __add_memory_block() (Mark Langsdorf) [2122319]
+- driver core: Add dma_cleanup callback in bus_type (Mark Langsdorf) [2122319]
+- driver core: Add sysfs support for physical location of a device (Mark Langsdorf) [2122319]
+- drivers/base/node.c: fix compaction sysfs file leak (Mark Langsdorf) [2122319]
+- driver core: Prevent overriding async driver of a device before it probe (Mark Langsdorf) [2122319]
+- Documentation: dd: Use ReST lists for return values of driver_deferred_probe_check_state() (Mark Langsdorf) [2122319]
+- regmap: cache: set max_register with reg_stride (Mark Langsdorf) [2122319]
+- firmware_loader: Check fw_state_is_done in loading_store (Mark Langsdorf) [2122319]
+- driver: platform: Add helper for safer setting of driver_override (Mark Langsdorf) [2122319]
+- PM: domains: Move genpd's time-accounting to ktime_get_mono_fast_ns() (Mark Langsdorf) [2122319]
+- PM: runtime: Allow to call __pm_runtime_set_status() from atomic context (Mark Langsdorf) [2122319]
+- device property: Drop 'test' prefix in parameters of fwnode_is_ancestor_of() (Mark Langsdorf) [2122319]
+- device property: Introduce fwnode_for_each_parent_node() (Mark Langsdorf) [2122319]
+- device property: Allow error pointer to be passed to fwnode APIs (Mark Langsdorf) [2122319]
+- device property: Check fwnode->secondary in fwnode_graph_get_next_endpoint() (Mark Langsdorf) [2122319]
+- PM: runtime: Avoid device usage count underflows (Mark Langsdorf) [2122319]
+- PM: domains: Extend dev_pm_domain_detach() doc (Mark Langsdorf) [2122319]
+
+* Wed Jan 25 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-453.el8]
+- gitlab-ci: use CI templates from production branch (Michael Hofmann)
+- cpufreq: ACPI: Remove unused variables 'acpi_cpufreq_online' and 'ret' (Mark Langsdorf) [2038200]
+- cpufreq: ACPI: Only set boost MSRs on supported CPUs (Mark Langsdorf) [2038200]
+- cpufreq: ACPI: Defer setting boost MSRs (Mark Langsdorf) [2038200]
+- s390/kexec: fix ipl report address for kdump (Tobias Huschle) [2161328]
+- iavf: schedule watchdog immediately when changing primary MAC (Michal Schmidt) [2152493]
+- iavf: Move netdev_update_features() into watchdog task (Michal Schmidt) [2152493]
+- iavf: fix temporary deadlock and failure to set MAC address (Michal Schmidt) [2152493]
+- iavf: Fix error handling in iavf_init_module() (Michal Schmidt) [2152493]
+
+* Mon Jan 23 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-452.el8]
+- net: ethernet: move from strlcpy with unused retval to strscpy (Ken Cox) [2103955]
+- ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter (Ken Cox) [2103955]
+- ixgbe: Manual AN-37 for troublesome link partners for X550 SFI (Ken Cox) [2103955]
+- ixgbe: Don't call kmap() on page allocated with GFP_ATOMIC (Ken Cox) [2103955]
+- ixgbe: convert .adjfreq to .adjfine (Ken Cox) [2103955]
+- ixgbe: drop unexpected word 'for' in comments (Ken Cox) [2103955]
+- ixgbe: remove unexpected word "the" (Ken Cox) [2103955]
+- intel: remove unused macros (Ken Cox) [2103955]
+- ixgbe: Fix typos in comments (Ken Cox) [2103955]
+- drivers, ixgbe: export vf statistics (Ken Cox) [2103955]
+- ixgbe: fix unexpected VLAN Rx in promisc mode on VF (Ken Cox) [2103955]
+- ixgbe: fix bcast packets Rx on VF after promisc removal (Ken Cox) [2103955]
+- ixgbe: propagate XFRM offload state direction instead of flags (Ken Cox) [2103955]
+- ixgbe: Fix module_param allow_unsupported_sfp type (Ken Cox) [2103955]
+- ixgbe: ensure IPsec VF<->PF compatibility (Ken Cox) [2103955]
+- ixgbe, xsk: Get rid of redundant 'fallthrough' (Ken Cox) [2103955]
+- ixgbe, xsk: Diversify return values from xsk_wakeup call paths (Ken Cox) [2103955]
+- ixgbe, xsk: Terminate Rx side of NAPI when XSK Rx queue gets full (Ken Cox) [2103955]
+- ixgbe, xsk: Decorate IXGBE_XDP_REDIR with likely() (Ken Cox) [2103955]
+- ixgbe: add improvement for MDD response functionality (Ken Cox) [2103955]
+- ixgbe: add the ability for the PF to disable VF link state (Ken Cox) [2103955]
+- ixgbe: xsk: change !netif_carrier_ok() handling in ixgbe_xmit_zc() (Ken Cox) [2103955]
+- ixgbe: Remove non-inclusive language (Ken Cox) [2103955]
+- ixgbe: Use irq_update_affinity_hint() (Ken Cox) [2103955]
+- net: convert users of bitmap_foo() to linkmode_foo() (Ken Cox) [2103955]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Ken Cox) [2103955]
+- net: Use skb_frag_off accessors (Ken Cox) [2103955]
+- drm/i915: Fix watermark calculations for DG2 CCS+CC modifier (Jocelyn Falempe) [2041686]
+- drm/i915: Fix watermark calculations for DG2 CCS modifiers (Jocelyn Falempe) [2041686]
+- drm/i915: Fix watermark calculations for gen12+ CCS+CC modifier (Jocelyn Falempe) [2041686]
+- drm/i915: Fix watermark calculations for gen12+ MC CCS modifier (Jocelyn Falempe) [2041686]
+- drm/i915: Fix watermark calculations for gen12+ RC CCS modifier (Jocelyn Falempe) [2041686]
+- drm/i915/uc: fix device/bus include on rhel8 (Jocelyn Falempe) [2041686]
+- drm/i915/display: consider DG2_RC_CCS_CC when migrating buffers (Jocelyn Falempe) [2041686]
+- drm/i915: allow control over the flags when migrating (Jocelyn Falempe) [2041686]
+- drm/i915/display: handle migration for dpt (Jocelyn Falempe) [2041686]
+- drm/i915/huc: better define HuC status getparam possible return values. (Jocelyn Falempe) [2041686]
+- drm/i915/huc: stall media submission until HuC is loaded (Jocelyn Falempe) [2041686]
+- drm/i915/huc: track delayed HuC load with a fence (Jocelyn Falempe) [2041686]
+- drm/i915/dg2: setup HuC loading via GSC (Jocelyn Falempe) [2041686]
+- drm/i915/pxp: add huc authentication and loading command (Jocelyn Falempe) [2041686]
+- drm/i915/pxp: implement function for sending tee stream command (Jocelyn Falempe) [2041686]
+- drm/i915/pxp: load the pxp module when we have a gsc-loaded huc (Jocelyn Falempe) [2041686]
+- drm/i915/gt: Flush to global observation point before breadcrumb write (Jocelyn Falempe) [2041686]
+- drm/i915/guc/slpc: Add SLPC selftest live_slpc_power (Jocelyn Falempe) [2041686]
+- drm/i915/guc/slpc: Run SLPC selftests on all tiles (Jocelyn Falempe) [2041686]
+- drm/i915: Remove unwanted pointer unpacking (Jocelyn Falempe) [2041686]
+- drm/i915/guc: Enable compute scheduling on DG2 (Jocelyn Falempe) [2041686]
+- drm/i915/dg2: introduce Wa_22015475538 (Jocelyn Falempe) [2041686]
+- drm/i915/uc: Update to latest GuC and use new-format GuC/HuC names (Jocelyn Falempe) [2041686]
+- Revert "drm/i915/dg2: extend Wa_1409120013 to DG2" (Jocelyn Falempe) [2041686]
+- drm/i915/gsc: allocate extended operational memory in LMEM (Jocelyn Falempe) [2041686]
+- drm/i915/gsc: add GSC XeHP SDV platform definition (Jocelyn Falempe) [2041686]
+- drm/i915/gsc: add slow_firmware flag to the gsc device definition (Jocelyn Falempe) [2041686]
+- drm/i915/gsc: skip irq initialization if using polling (Jocelyn Falempe) [2041686]
+- drm/i915/uc: Add patch level version number support (Jocelyn Falempe) [2041686]
+- drm/i915/uc: Support for version reduced and multiple firmware files (Jocelyn Falempe) [2041686]
+- drm/i915/ttm: Abort suspend on i915_ttm_backup failure (Jocelyn Falempe) [2041686]
+- drm/i915/dg2: Incorporate Wa_16014892111 into DRAW_WATERMARK tuning (Jocelyn Falempe) [2041686]
+- drm/i915/guc: Record CTB info in error logs (Jocelyn Falempe) [2041686]
+- drm/i915/guc: Add GuC <-> kernel time stamp translation information (Jocelyn Falempe) [2041686]
+- drm/i915/guc: Don't use pr_err when not necessary (Jocelyn Falempe) [2041686]
+- drm/i915/dg2: Add support for DC5 state (Jocelyn Falempe) [2041686]
+- drm/i915/dmc: Update DG2 DMC firmware to v2.07 (Jocelyn Falempe) [2041686]
+- drm/i915/dg2: Add additional tuning settings (Jocelyn Falempe) [2041686]
+- drm/i915/gt: Add dedicated function for non-ctx register tuning settings (Jocelyn Falempe) [2041686]
+- drm/i915/dg2: Add Wa_1509727124 (Jocelyn Falempe) [2041686]
+- drm/i915/dg2: Update DG2 to GuC v70.4.1 (Jocelyn Falempe) [2041686]
+- drm/i915/dg2: Add additional HDMI pixel clock frequencies (Jocelyn Falempe) [2041686]
+- Revert "drm/i915/dg2: Add preemption changes for Wa_14015141709" (Jocelyn Falempe) [2041686]
+- config: Enable TDX Guest (Wander Lairson Costa) [1836977]
+- x86/tdx: mark TDX as a tech preview (Wander Lairson Costa) [1836977]
+- x86/tdx: Panic on bad configs that #VE on "private" memory access (Wander Lairson Costa) [1836977]
+- x86/tdx: Prepare for using "INFO" call for a second purpose (Wander Lairson Costa) [1836977]
+- x86/tdx: Handle load_unaligned_zeropad() page-cross to a shared page (Wander Lairson Costa) [1836977]
+- x86/tdx: Clarify RIP adjustments in #VE handler (Wander Lairson Costa) [1836977]
+- vt: Initialize conswitchp to dummy_con if unset (Wander Lairson Costa) [1836977]
+- x86/tdx: Fix early #VE handling (Wander Lairson Costa) [1836977]
+- x86/tdx: Fix RETs in TDX asm (Wander Lairson Costa) [1836977]
+- x86/apic: Do apic driver probe for "nosmp" use case (Wander Lairson Costa) [1836977]
+- x86/mm: Fix spacing within memory encryption features message (Wander Lairson Costa) [1836977]
+- x86/kaslr: Fix build warning in KASLR code in boot stub (Wander Lairson Costa) [1836977]
+- Documentation/x86: Document TDX kernel architecture (Wander Lairson Costa) [1836977]
+- ACPICA: Avoid cache flush inside virtual machines (Wander Lairson Costa) [1836977]
+- x86/tdx/ioapic: Add shared bit for IOAPIC base address (Wander Lairson Costa) [1836977]
+- x86/mm: Make DMA memory shared for TD guest (Wander Lairson Costa) [1836977]
+- x86/mm/cpa: Add support for TDX shared memory (Wander Lairson Costa) [1836977]
+- x86/tdx: Make pages shared in ioremap() (Wander Lairson Costa) [1836977]
+- x86/topology: Disable CPU online/offline control for TDX guests (Wander Lairson Costa) [1836977]
+- x86/boot: Avoid #VE during boot for TDX platforms (Wander Lairson Costa) [1836977]
+- x86/boot/compressed/64: Use TEST reg,reg instead of CMP $0,reg (Wander Lairson Costa) [1836977]
+- x86/boot/compressed/64: Do not corrupt EDX on EFER.LME=1 setting (Wander Lairson Costa) [1836977]
+- x86/boot/compressed/64: Set EFER.LME=1 in 32-bit trampoline before returning to long mode (Wander Lairson Costa) [1836977]
+- x86/boot: Set CR0.NE early and keep it set during the boot (Wander Lairson Costa) [1836977]
+- x86/acpi/x86/boot: Add multiprocessor wake-up support (Wander Lairson Costa) [1836977]
+- x86/boot: Add a trampoline for booting APs via firmware handoff (Wander Lairson Costa) [1836977]
+- x86/asm/realmode: Use SYM_DATA_* instead of GLOBAL (Wander Lairson Costa) [1836977]
+- x86/realmode: Remove trampoline_status (Wander Lairson Costa) [1836977]
+- x86/tdx: Wire up KVM hypercalls (Wander Lairson Costa) [1836977]
+- x86/tdx: Port I/O: Add early boot support (Wander Lairson Costa) [1836977]
+- x86/tdx: Port I/O: Add runtime hypercalls (Wander Lairson Costa) [1836977]
+- x86/boot: Port I/O: Add decompression-time support for TDX (Wander Lairson Costa) [1836977]
+- x86/boot: Port I/O: Allow to hook up alternative helpers (Wander Lairson Costa) [1836977]
+- x86: Consolidate port I/O helpers (Wander Lairson Costa) [1836977]
+- x86: Adjust types used in port I/O helpers (Wander Lairson Costa) [1836977]
+- x86/tdx: Detect TDX at early kernel decompression time (Wander Lairson Costa) [1836977]
+- x86/tdx: Handle in-kernel MMIO (Wander Lairson Costa) [1836977]
+- x86/tdx: Handle CPUID via #VE (Wander Lairson Costa) [1836977]
+- x86/tdx: Add MSR support for TDX guests (Wander Lairson Costa) [1836977]
+- x86/tdx: Add HLT support for TDX guests (Wander Lairson Costa) [1836977]
+- x86/traps: Add #VE support for TDX guest (Wander Lairson Costa) [1836977]
+- x86/traps: Refactor exc_general_protection() (Wander Lairson Costa) [1836977]
+- x86/traps: Cleanup do_general_protection() (Wander Lairson Costa) [1836977]
+- x86/dumpstack: Introduce die_addr() for die() with #GP fault address (Wander Lairson Costa) [1836977]
+- x86/traps: Print address on #GP (Wander Lairson Costa) [1836977]
+- x86/kprobes: Inline kprobe_exceptions_notify() into do_general_protection() (Wander Lairson Costa) [1836977]
+- x86/tdx: Exclude shared bit from __PHYSICAL_MASK (Wander Lairson Costa) [1836977]
+- x86/tdx: Extend the confidential computing API to support TDX guests (Wander Lairson Costa) [1836977]
+- x86/tdx: Add __tdx_module_call() and __tdx_hypercall() helper functions (Wander Lairson Costa) [1836977]
+- x86/tdx: Provide common base for SEAMCALL and TDCALL C wrappers (Wander Lairson Costa) [1836977]
+- x86/tdx: Detect running as a TDX guest in early boot (Wander Lairson Costa) [1836977]
+- x86/mm/cpa: Generalize __set_memory_enc_pgtable() (Wander Lairson Costa) [1836977]
+- x86/mm/pat: Don't flush cache if hardware enforces cache coherency across encryption domnains (Wander Lairson Costa) [1836977]
+- x86/coco: Add API to handle encryption mask (Wander Lairson Costa) [1836977]
+- x86/cc: Move arch/x86/{kernel/cc_platform.c => coco/core.c} (Wander Lairson Costa) [1836977]
+- x86/sev-es: Use insn_decode_mmio() for MMIO implementation (Wander Lairson Costa) [1836977]
+- x86/insn-eval: Introduce insn_decode_mmio() (Wander Lairson Costa) [1836977]
+- x86/insn-eval: Introduce insn_get_modrm_reg_ptr() (Wander Lairson Costa) [1836977]
+- x86/insn-eval: Handle insn_get_opcode() failure (Wander Lairson Costa) [1836977]
+- x86/sev: Move common memory encryption code to mem_encrypt.c (Wander Lairson Costa) [1836977]
+- x86/sev: Rename mem_encrypt.c to mem_encrypt_amd.c (Wander Lairson Costa) [1836977]
+- x86/virtio: Have SEV guests enforce restricted virtio memory access (Wander Lairson Costa) [1836977]
+- devlink: protect devlink dump by the instance lock (Petr Oros) [2131116]
+- devlink: hold region lock when flushing snapshots (Petr Oros) [2131116]
+- net: devlink: enable parallel ops on netlink interface (Petr Oros) [2131116]
+- net: devlink: remove devlink_mutex (Petr Oros) [2131116]
+- net: devlink: convert reload command to take implicit devlink->lock (Petr Oros) [2131116]
+- net: devlink: introduce "unregistering" mark and use it during devlinks iteration (Petr Oros) [2131116]
+- devlink: Fix use-after-free after a failed reload (Petr Oros) [2131116]
+- net: devlink: Fix missing mutex_unlock() call (Petr Oros) [2131116]
+- Documentation: devlink: add add devlink-selftests to the table of contents (Petr Oros) [2131116]
+- devlink: Hold the instance lock in health callbacks (Petr Oros) [2131116]
+- net/mlx4: Lock mlx4 devlink reload callback (Petr Oros) [2131116]
+- net/mlx4: Use devl_ API for devlink port register / unregister (Petr Oros) [2131116]
+- net/mlx4: Use devl_ API for devlink region create / destroy (Petr Oros) [2131116]
+- net: devlink: remove region snapshots list dependency on devlink->lock (Petr Oros) [2131116]
+- net: devlink: remove region snapshot ID tracking dependency on devlink->lock (Petr Oros) [2131116]
+- devlink: introduce framework for selftests (Petr Oros) [2131116]
+- net: devlink: remove redundant net_eq() check from sb_pool_get_dumpit() (Petr Oros) [2131116]
+- net: devlink: move net check into devlinks_xa_for_each_registered_get() (Petr Oros) [2131116]
+- net: devlink: make sure that devlink_try_get() works with valid pointer during xarray iteration (Petr Oros) [2131116]
+- netdevsim: convert driver to use unlocked devlink API during init/fini (Petr Oros) [2131116]
+- net: devlink: add unlocked variants of devlink_region_create/destroy() functions (Petr Oros) [2131116]
+- net: devlink: add unlocked variants of devlink_dpipe*() functions (Petr Oros) [2131116]
+- net: devlink: add unlocked variants of devlink_sb*() functions (Petr Oros) [2131116]
+- net: devlink: add unlocked variants of devlink_resource*() functions (Petr Oros) [2131116]
+- net: devlink: add unlocked variants of devling_trap*() functions (Petr Oros) [2131116]
+- net: devlink: avoid false DEADLOCK warning reported by lockdep (Petr Oros) [2131116]
+- net: devlink: fix return statement in devlink_port_new_notify() (Petr Oros) [2131116]
+- net: devlink: fix a typo in function name devlink_port_new_notifiy() (Petr Oros) [2131116]
+- net: devlink: make devlink_dpipe_headers_register() return void (Petr Oros) [2131116]
+- net: devlink: move unlocked function prototypes alongside the locked ones (Petr Oros) [2131116]
+- net: devlink: use helpers to work with devlink->lock mutex (Petr Oros) [2131116]
+- net: devlink: fix unlocked vs locked functions descriptions (Petr Oros) [2131116]
+- devlink: Hold the instance lock in port_new / port_del callbacks (Petr Oros) [2131116]
+- powercap: intel_rapl: Add support for RAPTORLAKE_S (Prarit Bhargava) [2120363]
+- selftests/bpf: Fix test_varlen verification failure with latest llvm (Yauheni Kaliuta) [2149222]
+- iwlwifi: remove firmware version limit for AC9560 (Íñigo Huguet) [2129361]
+- wifi: iwlwifi: fw: skip PPAG for JF (Íñigo Huguet) [2129361]
+- sched: Improve wake_up_all_idle_cpus() take #2 (Julia Denham) [2134931]
+- selftests/livepatch: better synchronize test_klp_callbacks_busy (Julia Denham) [2121204]
+- sched,livepatch: Use wake_up_if_idle() (Joe Lawrence) [2134931]
+- sched: Simplify wake_up_*idle*() (Joe Lawrence) [2134931]
+- sched,livepatch: Use task_call_func() (Joe Lawrence) [2134931]
+- sched,rcu: Rework try_invoke_on_locked_down_task() (Joe Lawrence) [2134931]
+- sched: Improve try_invoke_on_locked_down_task() (Joe Lawrence) [2134931]
+- arm64/bpf: Remove 128MB limit for BPF JIT programs (Yauheni Kaliuta) [2140163]
+- bpf: Define bpf_jit_alloc_exec_limit for arm64 JIT (Yauheni Kaliuta) [2140163]
+- arm64: extable: add `type` and `data` fields (Yauheni Kaliuta) [2140163]
+- arm64: extable: use `ex` for `exception_table_entry` (Yauheni Kaliuta) [2140163]
+- arm64: extable: make fixup_exception() return bool (Yauheni Kaliuta) [2140163]
+- arm64: extable: consolidate definitions (Yauheni Kaliuta) [2140163]
+- arm64: kvm: use kvm_exception_table_entry (Yauheni Kaliuta) [2140163]
+- s390/cio: check the subchannel validity for dev_busid (Tobias Huschle) [2160494]
+- s390/cio: add dev_busid sysfs entry for each subchannel (Tobias Huschle) [2160494]
+
+* Thu Jan 19 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-451.el8]
+- intel_idle: Add AlderLake-N support (Prarit Bhargava) [2144692]
+- selftests/timens: add a test for vfork+exit (Oleg Nesterov) [2116444]
+- fs/exec: switch timens when a task gets a new mm (Oleg Nesterov) [2116444]
+- namespace: make timens_on_fork() return nothing (Oleg Nesterov) [2116444]
+- timens: make vdso_join_timens() always succeed (Oleg Nesterov) [2116444]
+- xfrm: Fix oops in __xfrm_state_delete() (Sabrina Dubroca) [2156048]
+- tcp: Fix data races around icsk->icsk_af_ops. (Guillaume Nault) [2143904] {CVE-2022-3566}
+- ice: synchronize the misc IRQ when tearing down Tx tracker (Petr Oros) [2148858]
+- ice: fix handling of burst Tx timestamps (Petr Oros) [2148858]
+- vhost/vsock: Fix error handling in vhost_vsock_init() (Stefano Garzarella) [2159969]
+- net: vmw_vsock: vmci: Check memcpy_from_msg() (Stefano Garzarella) [2159969]
+- vhost/vsock: Use kvmalloc/kvfree for larger packets. (Stefano Garzarella) [2159969]
+- vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() (Stefano Garzarella) [2159969]
+- vsock: Fix memory leak in vsock_connect() (Stefano Garzarella) [2159969]
+- tools/power turbostat: Add support for RPL-S (Prarit Bhargava) [2122848]
+
+* Tue Jan 17 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-450.el8]
+- nvme: re-order nvme_alloc_ns to match "nvme: use blk_mq_alloc_disk" (Chris Leech) [2152742]
+- perf vendor events amd: Add Zen 4 mapping (Michael Petlan) [2148294]
+- perf vendor events amd: Add Zen 4 metrics (Michael Petlan) [2148294]
+- perf vendor events amd: Add Zen 4 uncore events (Michael Petlan) [2148294]
+- perf vendor events amd: Add Zen 4 core events (Michael Petlan) [2148294]
+- cpuhotplug: Fix KABI breakage (Prarit Bhargava) [2156529]
+- scsi: target: core: Fix hard lockup when executing a compare-and-write command (Maurizio Lombardi) [2119897]
+- x86/topology: Fix duplicated core ID within a package (Prarit Bhargava) [2159553]
+- x86/topology: Fix multiple packages shown on a single-package system (Prarit Bhargava) [2159553]
+- hwmon/coretemp: Handle large core ID value (Prarit Bhargava) [2159553]
+- x86: Remove vendor checks from prefer_mwait_c1_over_halt (Prarit Bhargava) [2150067]
+- x86: Handle idle=nomwait cmdline properly for x86_idle (Prarit Bhargava) [2150067]
+- cpufreq: intel_pstate: Support Sapphire Rapids OOB mode (Prarit Bhargava) [2117767]
+- KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails (Emanuele Giuseppe Esposito) [2159433]
+- vmxnet3: correctly report csum_level for encapsulated packet (Izabela Bakollari) [2158809]
+- mei: pxp: support matching with a gfx discrete card (Jocelyn Falempe) [2147557]
+- mei: pxp: add command streamer API to the PXP driver (Jocelyn Falempe) [2147557]
+- mei: bus: extend bus API to support command streamer API (Jocelyn Falempe) [2147557]
+- mei: adjust extended header kdocs (Jocelyn Falempe) [2147557]
+- mei: bus: enable sending gsc commands (Jocelyn Falempe) [2147557]
+- mei: add support to GSC extended header (Jocelyn Falempe) [2147557]
+- mei: debugfs: add pxp mode to devstate in debugfs (Jocelyn Falempe) [2147557]
+- mei: drop ready bits check after start (Jocelyn Falempe) [2147557]
+- mei: gsc: add transition to PXP mode in resume flow (Jocelyn Falempe) [2147557]
+- mei: gsc: setup gsc extended operational memory (Jocelyn Falempe) [2147557]
+- mei: mkhi: add memory ready command (Jocelyn Falempe) [2147557]
+- mei: bus: export common mkhi definitions into a separate header (Jocelyn Falempe) [2147557]
+- mei: extend timeouts on slow devices (Jocelyn Falempe) [2147557]
+- mei: gsc: wait for reset thread on stop (Jocelyn Falempe) [2147557]
+- mei: gsc: use polling instead of interrupts (Jocelyn Falempe) [2147557]
+- mei: add slow_firmware flag to the mei auxiliary device (Jocelyn Falempe) [2147557]
+- mei: add kdoc for struct mei_aux_device (Jocelyn Falempe) [2147557]
+- mei: me: fix clang -Wformat warning (Jocelyn Falempe) [2147557]
+- mei: me: add raptor lake point S DID (Jocelyn Falempe) [2147557]
+- mei: hbm: drop capability response on early shutdown (Jocelyn Falempe) [2147557]
+- mei: me: set internal pg flag to off on hardware reset (Jocelyn Falempe) [2147557]
+- misc/mei: Add NULL check to component match callback functions (Jocelyn Falempe) [2147557]
+- drm/display: Move HDCP helpers into display-helper module (Jocelyn Falempe) [2147557]
+- mei: gsc: retrieve the firmware version (Jocelyn Falempe) [2147557]
+- mei: gsc: add runtime pm handlers (Jocelyn Falempe) [2147557]
+- mei: gsc: setup char driver alive in spite of firmware handshake failure (Jocelyn Falempe) [2147557]
+- mei: add support for graphics system controller (gsc) devices (Jocelyn Falempe) [2147557]
+- mei: avoid iterator usage outside of list_for_each_entry (Jocelyn Falempe) [2147557]
+- mei: do not overwrite state on hw start (Jocelyn Falempe) [2147557]
+- mei: me: fix reset policy on read error in interrupt (Jocelyn Falempe) [2147557]
+- mei: me: avoid link reset on shutdown (Jocelyn Falempe) [2147557]
+- mei: me: disable driver on the ign firmware (Jocelyn Falempe) [2147557]
+- mei: me: Use dma_set_mask_and_coherent() and simplify code (Jocelyn Falempe) [2147557]
+- mei: hbm: fix client dma reply status (Jocelyn Falempe) [2147557]
+- mei: cleanup status before client dma setup call (Jocelyn Falempe) [2147557]
+- mei: add POWERING_DOWN into device state print (Jocelyn Falempe) [2147557]
+- mei: Remove some dead code (Jocelyn Falempe) [2147557]
+- mei: bus: add client dma interface (Jocelyn Falempe) [2147557]
+- mei: hbm: drop hbm responses on early shutdown (Jocelyn Falempe) [2147557]
+- mei: me: add Ice Lake-N device id. (Jocelyn Falempe) [2147557]
+- mei: pxp: export pavp client to me client bus (Jocelyn Falempe) [2147557]
+- mei: Remove usage of the deprecated "pci-dma-compat.h" API (Jocelyn Falempe) [2147557]
+- mei: constify passed buffers and structures (Jocelyn Falempe) [2147557]
+- mei: revamp mei extension header structure layout. (Jocelyn Falempe) [2147557]
+- mei: fix kdoc in the driver (Jocelyn Falempe) [2147557]
+- mei: hdcp: SPDX tag should be the first line (Jocelyn Falempe) [2147557]
+- mei: request autosuspend after sending rx flow control (Jocelyn Falempe) [2147557]
+- mei: Drop unnecessary NULL check after container_of (Jocelyn Falempe) [2147557]
+- mei: me: add Alder Lake P device id. (Jocelyn Falempe) [2147557]
+- mei: allow map and unmap of client dma buffer only for disconnected client (Jocelyn Falempe) [2147557]
+- mei: use sysfs_emit() in tx_queue_limit_show sysfs (Jocelyn Falempe) [2147557]
+- mei: bus: block send with vtag on non-conformat FW (Jocelyn Falempe) [2147557]
+- mei: bus: change remove callback to return void (Jocelyn Falempe) [2147557]
+- mei: bus: simplify mei_cl_device_remove() (Jocelyn Falempe) [2147557]
+- mei: implement client dma setup. (Jocelyn Falempe) [2147557]
+- mei: hbm: add client dma hbm messages (Jocelyn Falempe) [2147557]
+- mei: add support for client dma capability (Jocelyn Falempe) [2147557]
+- mei: allow clients on bus to communicate in remove callback (Jocelyn Falempe) [2147557]
+- mei: me: add adler lake point LP DID (Jocelyn Falempe) [2147557]
+- mei: hbm: drop hbm responses on shutdown (Jocelyn Falempe) [2147557]
+- mei: hbm: call mei_set_devstate() on hbm stop response (Jocelyn Falempe) [2147557]
+- mei: document that mei_msg_hdr_init returns ERR_PTR (Jocelyn Falempe) [2147557]
+- mei: fix transfer over dma with extended header (Jocelyn Falempe) [2147557]
+- misc/mei/hdcp: Fix AUTH_STREAM_REQ cmd buffer len (Jocelyn Falempe) [2147557]
+- mei: bus: enable pavp device. (Jocelyn Falempe) [2147557]
+- mei: bus: add vtag support (Jocelyn Falempe) [2147557]
+- Revert "mei: virtio: virtualization frontend driver" (Jocelyn Falempe) [2147557]
+- mei: bus: fix a kernel-doc markup (Jocelyn Falempe) [2147557]
+- mei: protect mei_cl_mtu from null dereference (Jocelyn Falempe) [2147557]
+- mei: bus: deinitialize callback functions on init failure (Jocelyn Falempe) [2147557]
+- mei: bus: do not start a read for disconnected clients (Jocelyn Falempe) [2147557]
+- misc: mei: remove unneeded break (Jocelyn Falempe) [2147557]
+- mei: hw: Replace zero-length array with flexible-array member (Jocelyn Falempe) [2147557]
+- mei: virtio: virtualization frontend driver (Jocelyn Falempe) [2147557]
+- mei: add connect with vtag ioctl (Jocelyn Falempe) [2147557]
+- mei: bus: unconditionally enable clients with vtag support (Jocelyn Falempe) [2147557]
+- mei: bus: use zero vtag for bus clients. (Jocelyn Falempe) [2147557]
+- mei: handle tx queue flushing for vtag connections (Jocelyn Falempe) [2147557]
+- mei: add a vtag map for each client (Jocelyn Falempe) [2147557]
+- mei: add a spin lock to protect rd_completed queue (Jocelyn Falempe) [2147557]
+- mei: bump hbm version to 2.2 (Jocelyn Falempe) [2147557]
+- mei: add support for mei extended header. (Jocelyn Falempe) [2147557]
+- mei: add vtag support bit in client properties (Jocelyn Falempe) [2147557]
+- mei: restrict vtag support to hbm version 2.2 (Jocelyn Falempe) [2147557]
+- mei: hbm: add capabilities message (Jocelyn Falempe) [2147557]
+- Revert "scsi: iscsi: ql4xxx: Use per-session workqueue for unbinding" (Chris Leech) [2122624]
+- Revert "scsi: iscsi: Use the session workqueue for recovery" (Chris Leech) [2122624]
+- l2tp: Don't sleep and disable BH under writer-side sk_callback_lock (Guillaume Nault) [2145235] {CVE-2022-4129}
+- l2tp: Serialize access to sk_user_data with sk_callback_lock (Guillaume Nault) [2145235] {CVE-2022-4129}
+- net: fix a concurrency bug in l2tp_tunnel_register() (Guillaume Nault) [2145235] {CVE-2022-4129}
+- net: tap: fix general protection fault when freeing an skb when the ring is full (Antoine Tenart) [2152802]
+- platform/x86/intel/pmt: Sapphire Rapids PMT errata fix (Prarit Bhargava) [2144689]
+- RDMA/core: Fix null-ptr-deref in ib_core_cleanup() (Kamal Heib) [2120677]
+- RDMA/rxe: Fix mr leak in RESPST_ERR_RNR (Kamal Heib) [2120677]
+- IB/hfi1: Correctly move list in sc_disable() (Kamal Heib) [2120677]
+- RDMA/cma: Use output interface for net_dev check (Kamal Heib) [2120677]
+- RDMA/usnic: fix set-but-not-unused variable 'flags' warning (Kamal Heib) [2120677]
+- IB/rdmavt: Add __init/__exit annotations to module init/exit funcs (Kamal Heib) [2120677]
+- RDMA/rxe: Fix resize_finish() in rxe_queue.c (Kamal Heib) [2120677]
+- IB: Set IOVA/LENGTH on IB_MR in core/uverbs layers (Kamal Heib) [2120677]
+- RDMA/cm: Use SLID in the work completion as the DLID in responder side (Kamal Heib) [2120677]
+- RDMA/siw: Fix QP destroy to wait for all references dropped. (Kamal Heib) [2120677]
+- RDMA/srp: Fix srp_abort() (Kamal Heib) [2120677]
+- RDMA/irdma: Validate udata inlen and outlen (Kamal Heib) [2120677]
+- RDMA/irdma: Align AE id codes to correct flush code and event (Kamal Heib) [2120677]
+- RDMA/rxe: Fix the error caused by qp->sk (Kamal Heib) [2120677]
+- RDMA/rxe: Fix "kernel NULL pointer dereference" error (Kamal Heib) [2120677]
+- RDMA/rxe: Remove an unused member from struct rxe_mr (Kamal Heib) [2120677]
+- x86/fpu: Fix copy_xstate_to_uabi() to copy init states correctly (Dean Nelson) [2122850]
+- x86/fpu: Exclude dynamic states from init_fpstate (Dean Nelson) [2122850]
+- x86/fpu: Fix the init_fpstate size check with the actual size (Dean Nelson) [2122850]
+- x86/fpu: Configure init_fpstate attributes orderly (Dean Nelson) [2122850]
+- x86/fpu/xstate: Fix the ARCH_REQ_XCOMP_PERM implementation (Dean Nelson) [2122850]
+- ceph: rely on vfs for setgid stripping (Andrey Albershteyn) [2128904]
+- fs: move S_ISGID stripping into the vfs_*() helpers (Andrey Albershteyn) [2128904]
+- fs: Add missing umask strip in vfs_tmpfile (Andrey Albershteyn) [2128904]
+- fs: add mode_strip_sgid() helper (Andrey Albershteyn) [2128904]
+
+* Thu Jan 12 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-449.el8]
+- x86/insn: Add AMX instructions to the x86 instruction decoder (Prarit Bhargava) [2117765]
+- intel_idle: Add a new flag to initialize the AMX state (Prarit Bhargava) [2117765]
+- x86/fpu: Add a helper to prepare AMX state for low-power CPU idle (Prarit Bhargava) [2117765]
+- intel_idle: make SPR C1 and C1E be independent (Prarit Bhargava) [2117765]
+- rpmspec: drop traceevent files instead of just excluding them from files list (Michael Petlan) [2155509]
+- powerpc/bpf/64: Add instructions for atomic_[cmp]xchg (Mamatha Inamdar) [2113254]
+- powerpc/bpf/64: add support for atomic fetch operations (Mamatha Inamdar) [2113254]
+- powerpc/bpf/64: add support for BPF_ATOMIC bitwise operations (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Simplify bpf_to_ppc() and adopt it for powerpc64 (Mamatha Inamdar) [2113254]
+- powerpc64/bpf: Store temp registers' bpf to ppc mapping (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Use _Rn macros for GPRs (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Move bpf_jit64.h into bpf_jit_comp64.c (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Cleanup bpf_jit.h (Mamatha Inamdar) [2113254]
+- powerpc64/bpf: Get rid of PPC_BPF_[LL|STL|STLU] macros (Mamatha Inamdar) [2113254]
+- powerpc64/bpf: Convert some of the uses of PPC_BPF_[LL|STL] to PPC_BPF_[LD|STD] (Mamatha Inamdar) [2113254]
+- powerpc64/bpf: Optimize instruction sequence used for function calls (Mamatha Inamdar) [2113254]
+- powerpc64/bpf elfv1: Do not load TOC before calling functions (Mamatha Inamdar) [2113254]
+- powerpc64/bpf elfv2: Setup kernel TOC in r2 on entry (Mamatha Inamdar) [2113254]
+- powerpc64: Set PPC64_ELF_ABI_v[1|2] macros to 1 (Mamatha Inamdar) [2113254]
+- powerpc64/bpf: Use r12 for constant blinding (Mamatha Inamdar) [2113254]
+- powerpc64/bpf: Do not save/restore LR on each call to bpf_stf_barrier() (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Handle large branch ranges with BPF_EXIT (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Emit a single branch instruction for known short branch ranges (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Skip branch range validation during first pass (Mamatha Inamdar) [2113254]
+- powerpc64/bpf: Limit 'ldbrx' to processors compliant with ISA v2.06 (Mamatha Inamdar) [2113254]
+- tools/bpf: Rename 'struct event' to avoid naming conflict (Mamatha Inamdar) [2113254]
+- bpf: Guard against accessing NULL pt_regs in bpf_get_task_stack() (Mamatha Inamdar) [2113254]
+- bpf ppc64: Access only if addr is kernel address (Mamatha Inamdar) [2113254]
+- bpf ppc64: Add BPF_PROBE_MEM support for JIT (Mamatha Inamdar) [2113254]
+- powerpc/ppc-opcode: introduce PPC_RAW_BRANCH() macro (Mamatha Inamdar) [2113254]
+- bpf powerpc: refactor JIT compiler code (Mamatha Inamdar) [2113254]
+- bpf powerpc: Remove extra_pass from bpf_jit_build_body() (Mamatha Inamdar) [2113254]
+- bpf powerpc: Remove unused SEEN_STACK (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Emit stf barrier instruction sequences for BPF_NOSPEC (Mamatha Inamdar) [2113254]
+- powerpc/security: Add a helper to query stf_barrier type (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Fix BPF_MOD when imm == 1 (Mamatha Inamdar) [2113254]
+- powerpc/bpf: Validate branch ranges (Mamatha Inamdar) [2113254]
+- powerpc/lib: Add helper to check if offset is within conditional branch range (Mamatha Inamdar) [2113254]
+- powerpc/lib/feature-fixups: Use PPC_RAW_xxx() macros (Mamatha Inamdar) [2113254]
+- powerpc: Move PPC_HA() PPC_HI() and PPC_LO() to ppc-opcode.h (Mamatha Inamdar) [2113254]
+- swapfile: fix soft lockup in scan_swap_map_slots (Waiman Long) [2155734]
+- mm/swap: add helper swap_offset_available() (Waiman Long) [2155734]
+- pNFS/filelayout: Fix coalescing test for single DS (Benjamin Coddington) [2158520]
+- arm64: kdump: Support crashkernel=X fall back to reserve region above DMA zones (Pingfan Liu) [1940674]
+- arm64: kdump: Provide default size when crashkernel=Y,low is not specified (Pingfan Liu) [1940674]
+- media: dmxdev: fix UAF when dvb_register_device() fails (Dean Nelson) [2123301] {CVE-2022-41218}
+- crypto: s390/aes - drop redundant xts key check (Vladis Dronov) [2158893]
+- crypto: xts - implement xts_verify_key() with xts_check_key() (Vladis Dronov) [2158893]
+- audit: cache ctx->major in audit_filter_syscall() (Richard Guy Briggs) [2123854]
+- audit: free audit_proctitle only on task exit (Richard Guy Briggs) [2123854]
+- audit: explicitly check audit_context->context enum value (Richard Guy Briggs) [2123854]
+- audit: move audit_return_fixup before the filters (Richard Guy Briggs) [2123854]
+- audit: fix potential double free on error path from fsnotify_add_inode_mark (Richard Guy Briggs) [2123854]
+- i2c: ismt: Fix an out-of-bounds bug in ismt_access() (Prarit Bhargava) [2119066] {CVE-2022-2873}
+- net: dropreason: add SKB_DROP_REASON_FRAG_TOO_FAR (Antoine Tenart) [2155186]
+- net: dropreason: add SKB_DROP_REASON_FRAG_REASM_TIMEOUT (Antoine Tenart) [2155186]
+- net: dropreason: add SKB_DROP_REASON_DUP_FRAG (Antoine Tenart) [2155186]
+- net: dropreason: propagate drop_reason to skb_release_data() (Antoine Tenart) [2155186]
+- net: dropreason: add SKB_CONSUMED reason (Antoine Tenart) [2155186]
+- ipv4: remove redundant null pointer check before kfree_skb (Antoine Tenart) [2155186]
+
+* Mon Jan 09 2023 Lucas Zampieri <lzampier@redhat.com> [4.18.0-448.el8]
+- turbostat: Bring code up-to-date with upstream (Prarit Bhargava) [2117769]
+- tools/power turbostat: Enable accumulate RAPL display (Prarit Bhargava) [2117769]
+- tools/power turbostat: version 2022.07.28 (Prarit Bhargava) [2117769]
+- tools/power turbostat: do not decode ACC for ICX and SPR (Prarit Bhargava) [2117769]
+- tools/power turbostat: fix SPR PC6 limits (Prarit Bhargava) [2117769]
+- tools/power turbostat: cleanup 'automatic_cstate_conversion_probe()' (Prarit Bhargava) [2117769]
+- tools/power turbostat: separate SPR from ICX (Prarit Bhargava) [2117769]
+- tools/power turbosstat: fix comment (Prarit Bhargava) [2117769]
+- tools/power turbostat: Support RAPTORLAKE P (Prarit Bhargava) [2117769]
+- tools/power turbostat: add support for ALDERLAKE_N (Prarit Bhargava) [2117769]
+- tools/power turbostat: dump secondary Turbo-Ratio-Limit (Prarit Bhargava) [2117769]
+- tools/power turbostat: simplify dump_turbo_ratio_limits() (Prarit Bhargava) [2117769]
+- tools/power turbostat: dump CPUID.7.EDX.Hybrid (Prarit Bhargava) [2117769]
+- tools/power turbostat: update turbostat.8 (Prarit Bhargava) [2117769]
+- tools/power turbostat: Show uncore frequency (Prarit Bhargava) [2117769]
+- tools/power turbostat: Fix file pointer leak (Prarit Bhargava) [2117769]
+- tools/power turbostat: replace strncmp with single character compare (Prarit Bhargava) [2117769]
+- tools/power turbostat: print the kernel boot commandline (Prarit Bhargava) [2117769]
+- tools/power turbostat: Introduce support for RaptorLake (Prarit Bhargava) [2117769]
+- tools/power turbostat: version 2022.04.16 (Prarit Bhargava) [2117769]
+- tools/power turbostat: No build warnings with -Wextra (Prarit Bhargava) [2117769]
+- tools/power turbostat: be more useful as non-root (Prarit Bhargava) [2117769]
+- tools/power turbostat: fix ICX DRAM power numbers (Prarit Bhargava) [2117769]
+- tools/power turbostat: Support thermal throttle count print (Prarit Bhargava) [2117769]
+- tools/power turbostat: Allow printing header every N iterations (Prarit Bhargava) [2117769]
+- tools/power turbostat: Allow -e for all names. (Prarit Bhargava) [2117769]
+- tools/power turbostat: print power values upto three decimal (Prarit Bhargava) [2117769]
+- tools/power turbostat: Add Power Limit4 support (Prarit Bhargava) [2117769]
+- tools/power turbostat: fix dump for AMD cpus (Prarit Bhargava) [2117769]
+- tools/power turbostat: tweak --show and --hide capability (Prarit Bhargava) [2117769]
+- NFSv4: Retry LOCK on OLD_STATEID during delegation return (Benjamin Coddington) [2137826]
+- KVM: s390: pv: don't allow userspace to set the clock under PV (Tobias Huschle) [2154284]
+- net: mana: Fix race on per-CQ variable napi work_done (Emanuele Giuseppe Esposito) [2151722]
+- powercap: intel_rapl: support new layout of Psys PowerLimit Register on SPR (Prarit Bhargava) [2106143]
+- ceph: choose auth MDS for getxattr with the Xs caps (Milind Changire) [2126703]
+- ceph: try to choose the auth MDS if possible for getattr (Milind Changire) [2126703]
+- ceph: convert to generic_file_llseek (Milind Changire) [2126707]
+- ceph: don't leak snap_rwsem in handle_cap_grant (Milind Changire) [2126706]
+- ceph: prevent a client from exceeding the MDS maximum xattr size (Milind Changire) [2126704]
+- ceph: add session already open notify support (Milind Changire) [2126701]
+- ceph: use correct index when encoding client supported features (Milind Changire) [2143875]
+- ceph: switch TASK_INTERRUPTIBLE to TASK_KILLABLE (Milind Changire) [2126700]
+- ceph: allow ceph.dir.rctime xattr to be updatable (Milind Changire) [2126699]
+- ipv6: Use ipv6_only_sock() helper in condition. (Izabela Bakollari) [2144855]
+- ipv6: Remove __ipv6_only_sock(). (Izabela Bakollari) [2144855]
+- redhat/configs: Switch CONFIG_X86_AMD_PSTATE to built-in (Prarit Bhargava) [2150424]
+- Documentation: add amd-pstate kernel command line options (Prarit Bhargava) [2150424]
+- cpufreq: amd-pstate: add amd-pstate driver parameter for mode selection (Prarit Bhargava) [2150424]
+- cpufreq: amd-pstate: change amd-pstate driver to be built-in type (Prarit Bhargava) [2150424]
+- cpufreq: amd-pstate: cpufreq: amd-pstate: reset MSR_AMD_PERF_CTL register at init (Prarit Bhargava) [2150424]
+- scsi: target: iscsi: Fix a race condition between login_work and the login thread (Maurizio Lombardi) [2153832]
+- virtio_console: Introduce an ID allocator for virtual console numbers (Cédric Le Goater) [2072437]
+- blk-throttle: fix that io throttle can only work for single bio (Ming Lei) [2088193]
+- scsi: zfcp: Fix double free of FSF request when qdio send fails (Tobias Huschle) [2155157]
+- scsi: qla2xxx: Fix crash when I/O abort times out (Nilesh Javali) [2115820]
+- perf trace: Fix SIGSEGV when processing syscall args (Michael Petlan) [2145089]
+- config: mhi: set CONFIG_MHI_BUS_EP to disabled (Íñigo Huguet) [2136123]
+- config: rtw89: set CONFIG_RTW89_8852C to disabled (Íñigo Huguet) [2136123]
+- wifi: ath11k: avoid deadlock during regulatory update in ath11k_regd_update() (Íñigo Huguet) [2136123 2139481]
+- wifi: mac80211: mlme: Fix double unlock on assoc success handling (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: Fix missing unlock on beacon RX (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix memory corruption in minstrel_ht_update_rates() (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix regression with non-QoS drivers (Íñigo Huguet) [2136123]
+- wifi: mac80211: ensure vif queues are operational after start (Íñigo Huguet) [2136123]
+- wifi: mac80211: don't start TX with fq->lock to fix deadlock (Íñigo Huguet) [2136123]
+- wifi: cfg80211: fix MCS divisor value (Íñigo Huguet) [2136123]
+- wifi: mt76: fix 5 GHz connection regression on mt76x0/mt76x2 (Íñigo Huguet) [2136123]
+- wifi: mt76: fix reading current per-tid starting sequence number for aggregation (Íñigo Huguet) [2136123]
+- wifi: iwlwifi: Mark IWLMEI as broken (Íñigo Huguet) [2136123]
+- wifi: iwlwifi: don't spam logs with NSS>2 messages (Íñigo Huguet) [2136123]
+- wifi: use struct_group to copy addresses (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: check length for virtio packets (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix locking in auth/assoc timeout (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: release deflink channel in error case (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix link warning in RX agg timer expiry (Íñigo Huguet) [2136123]
+- bus: mhi: host: Fix up null pointer access in mhi_irq_handler (Íñigo Huguet) [2136123]
+- net: Use u64_stats_fetch_begin_irq() for stats fetch. (Íñigo Huguet) [2136123]
+- wifi: mt76: mt7921e: fix crash in chip reset fail (Íñigo Huguet) [2136123]
+- wifi: mac80211: potential NULL dereference in ieee80211_tx_control_port() (Íñigo Huguet) [2136123]
+- wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() (Íñigo Huguet) [2136123]
+- wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix possible leak in ieee80211_tx_control_port() (Íñigo Huguet) [2136123]
+- wifi: mac80211: always free sta in __sta_info_alloc in case of error (Íñigo Huguet) [2136123]
+- wifi: mac80211: Fix UAF in ieee80211_scan_rx() (Íñigo Huguet) [2136123]
+- net: qrtr: start MHI channel after endpoit creation (Íñigo Huguet) [2136123]
+- wifi: cfg80211: Fix validating BSS pointers in __cfg80211_connect_result (Íñigo Huguet) [2136123]
+- wifi: rtw88: check the return value of alloc_workqueue() (Íñigo Huguet) [2136123]
+- wifi: rtw89: 8852a: adjust IMR for SER L1 (Íñigo Huguet) [2136123]
+- wifi: rtw89: 8852a: update RF radio A/B R56 (Íñigo Huguet) [2136123]
+- wifi: brcmfmac: prevent double-free on hardware-reset (Íñigo Huguet) [2136123]
+- wifi: brcmfmac: support brcm,ccode-map-trivial DT property (Íñigo Huguet) [2136123]
+- wifi: brcmfmac: Replace default (not configured) MAC with a random MAC (Íñigo Huguet) [2136123]
+- wifi: brcmfmac: Add brcmf_c_set_cur_etheraddr() helper (Íñigo Huguet) [2136123]
+- wifi: brcmfmac: Remove #ifdef guards for PM related functions (Íñigo Huguet) [2136123]
+- wifi: brcmfmac: use strreplace() in brcmf_of_probe() (Íñigo Huguet) [2136123]
+- wifi: rtl8xxxu: Fix the error handling of the probe function (Íñigo Huguet) [2136123]
+- wifi: mwifiex: clean up one inconsistent indenting (Íñigo Huguet) [2136123]
+- wifi: rtlwifi: Remove duplicate word and Fix typo (Íñigo Huguet) [2136123]
+- wifi: mwifiex: Fix comment typo (Íñigo Huguet) [2136123]
+- wifi: iwlwifi: mvm: fix clang -Wformat warnings (Íñigo Huguet) [2136123]
+- Revert "ath11k: add support for hardware rfkill for QCA6390" (Íñigo Huguet) [2136123]
+- wifi: ath11k: Fix register write failure on QCN9074 (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix link data leak (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: fix disassoc with MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: add macros to loop over active links (Íñigo Huguet) [2136123]
+- wifi: mac80211: remove erroneous sband/link validation (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: transmit assoc frame with address translation (Íñigo Huguet) [2136123]
+- wifi: mac80211: verify link addresses are different (Íñigo Huguet) [2136123]
+- wifi: mac80211: rx: track link in RX data (Íñigo Huguet) [2136123]
+- wifi: mac80211: optionally implement MLO multicast TX (Íñigo Huguet) [2136123]
+- wifi: mac80211: expand ieee80211_mgmt_tx() for MLO (Íñigo Huguet) [2136123]
+- wifi: nl80211: add MLO link ID to the NL80211_CMD_FRAME TX API (Íñigo Huguet) [2136123]
+- wifi: mac80211: report link ID to cfg80211 on mgmt RX (Íñigo Huguet) [2136123]
+- wifi: cfg80211: report link ID in NL80211_CMD_FRAME (Íñigo Huguet) [2136123]
+- wifi: mac80211: add hardware timestamps for RX and TX (Íñigo Huguet) [2136123]
+- wifi: cfg80211: add hardware timestamps to frame RX info (Íñigo Huguet) [2136123]
+- wifi: cfg80211/nl80211: move rx management data into a struct (Íñigo Huguet) [2136123]
+- wifi: cfg80211: add a function for reporting TX status with hardware timestamps (Íñigo Huguet) [2136123]
+- wifi: nl80211: add RX and TX timestamp attributes (Íñigo Huguet) [2136123]
+- nl80211: document uapi for CMD_FRAME_WAIT_CANCEL (Íñigo Huguet) [2136123]
+- wifi: ieee80211: add helper functions for detecting TM/FTM frames (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: handle links for wmediumd/virtio (Íñigo Huguet) [2136123]
+- wifi: mac80211: sta_info: fix link_sta insertion (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: fix link_sta setup (Íñigo Huguet) [2136123]
+- wifi: nl80211/mac80211: clarify link ID in control port TX (Íñigo Huguet) [2136123]
+- wifi: mac80211: return error from control port TX for drops (Íñigo Huguet) [2136123]
+- wifi: nl80211: require MLD address on link STA add/modify (Íñigo Huguet) [2136123]
+- wifi: mac80211: more station handling sanity checks (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix link sta hash table handling (Íñigo Huguet) [2136123]
+- wifi: mac80211: validate link address doesn't change (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: set sta.mlo to mlo state (Íñigo Huguet) [2136123]
+- wifi: mac80211: fast-xmit: handle non-MLO clients (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: fix address translation for MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix RX MLD address translation (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix NULL pointer deref with non-MLD STA (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: fix override calculation (Íñigo Huguet) [2136123]
+- wifi: mac80211: tx: use AP address in some places for MLO (Íñigo Huguet) [2136123]
+- net: add missing includes and forward declarations under net/ (Íñigo Huguet) [2136123]
+- wifi: rtl8192se: fix repeated words in comments (Íñigo Huguet) [2136123]
+- wifi: rtlwifi: fix repeated words in comments (Íñigo Huguet) [2136123]
+- wifi: rt2x00: fix repeated words in comments (Íñigo Huguet) [2136123]
+- wifi: brcmsmac: fix repeated words in comments (Íñigo Huguet) [2136123]
+- wifi: brcmfmac: fix repeated words in comments (Íñigo Huguet) [2136123]
+- wifi: mac80211: do not abuse fq.lock in ieee80211_do_stop() (Íñigo Huguet) [2136123]
+- wifi: mt7601u: fix clang -Wformat warning (Íñigo Huguet) [2136123]
+- wifi: mt7601u: eeprom: fix clang -Wformat warning (Íñigo Huguet) [2136123]
+- wifi: ath: fix repeated words in comments (Íñigo Huguet) [2136123]
+- wifi: ath11k: mac: fix long line (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: set sta.mlo correctly (Íñigo Huguet) [2136123]
+- wifi: mac80211: remove stray printk (Íñigo Huguet) [2136123]
+- wifi: mac80211: support MLO authentication/association with one link (Íñigo Huguet) [2136123]
+- wifi: mac80211: add API to parse multi-link element (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: fix TX link selection (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: use MLO link ID for TX (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: do rc update per link (Íñigo Huguet) [2136123]
+- wifi: mac80211: do link->MLD address translation on RX (Íñigo Huguet) [2136123]
+- wifi: mac80211: select link when transmitting to non-MLO stations (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix up link station creation/insertion (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: implement sta_state for MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: limit A-MSDU subframes for client too (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: refactor ieee80211_set_associated() (Íñigo Huguet) [2136123]
+- wifi: cfg80211: add cfg80211_get_iftype_ext_capa() (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: look up beacon elems only if needed (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: refactor assoc link setup (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: remove address arg to ieee80211_mark_sta_auth() (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: refactor assoc success handling (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: refactor ieee80211_prep_channel() a bit (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: refactor assoc req element building (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: switch some things back to deflink (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: change flags in ieee80211_determine_chantype() (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: shift some code around (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: refactor link station setup (Íñigo Huguet) [2136123]
+- wifi: mac80211: move IEEE80211_SDATA_OPERATING_GMODE to link (Íñigo Huguet) [2136123]
+- wifi: mac80211: make ieee80211_check_rate_mask() link-aware (Íñigo Huguet) [2136123]
+- wifi: mac80211: add multi-link element to AUTH frames (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: clean up supported channels element code (Íñigo Huguet) [2136123]
+- wifi: mac80211: release channel context on link stop (Íñigo Huguet) [2136123]
+- wifi: mac80211: prohibit DEAUTH_NEED_MGD_TX_PREP in MLO (Íñigo Huguet) [2136123]
+- wifi: nl80211: fix some attribute policy entries (Íñigo Huguet) [2136123]
+- wifi: nl80211: reject fragmented and non-inheritance elements (Íñigo Huguet) [2136123]
+- wifi: nl80211: reject link specific elements on assoc link (Íñigo Huguet) [2136123]
+- wifi: cfg80211: set country_elem to NULL (Íñigo Huguet) [2136123]
+- wifi: mac80211: remove link_id parameter from link_info_changed() (Íñigo Huguet) [2136123]
+- wifi: mac80211: replace link_id with link_conf in switch/(un)assign_vif_chanctx() (Íñigo Huguet) [2136123]
+- wifi: nl80211: advertise MLO support (Íñigo Huguet) [2136123]
+- wifi: mac80211: Support multi link in ieee80211_recalc_min_chandef() (Íñigo Huguet) [2136123]
+- wifi: mac80211: don't check carrier in chanctx code (Íñigo Huguet) [2136123]
+- wifi: nl80211: allow link ID in set_wiphy with frequency (Íñigo Huguet) [2136123]
+- wifi: mac80211: Allow EAPOL tx from specific link (Íñigo Huguet) [2136123]
+- wifi: mac80211: Allow EAPOL frames from link addresses (Íñigo Huguet) [2136123]
+- wifi: cfg80211/mac80211: Support control port TX from specific link (Íñigo Huguet) [2136123]
+- wifi: nl80211: Support MLD parameters in nl80211_set_station() (Íñigo Huguet) [2136123]
+- wifi: nl80211: check MLO support in authenticate (Íñigo Huguet) [2136123]
+- wifi: mac80211: add a helper to fragment an element (Íñigo Huguet) [2136123]
+- wifi: mac80211: skip rate statistics for MLD STAs (Íñigo Huguet) [2136123]
+- wifi: nl80211: set BSS to NULL if IS_ERR() (Íñigo Huguet) [2136123]
+- wifi: nl80211: add EML/MLD capabilities to per-iftype capabilities (Íñigo Huguet) [2136123]
+- wifi: nl80211: better validate link ID for stations (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix link manipulation (Íñigo Huguet) [2136123]
+- wifi: mac80211: tighten locking check (Íñigo Huguet) [2136123]
+- wifi: cfg80211: clean up links appropriately (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: simplify adding ht/vht/he/eht elements (Íñigo Huguet) [2136123]
+- wifi: mac80211: refactor adding custom elements (Íñigo Huguet) [2136123]
+- wifi: mac80211: refactor adding rates to assoc request (Íñigo Huguet) [2136123]
+- wifi: mac80211: use only channel width in ieee80211_parse_bitrates() (Íñigo Huguet) [2136123]
+- wifi: cfg80211: add ieee80211_chanwidth_rate_flags() (Íñigo Huguet) [2136123]
+- wifi: mac80211: remove redundant condition (Íñigo Huguet) [2136123]
+- wifi: mac80211: don't set link address for station (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix multi-BSSID element parsing (Íñigo Huguet) [2136123]
+- wifi: mac80211: move tdls_chan_switch_prohibited to link data (Íñigo Huguet) [2136123]
+- wifi: mac80211: don't re-parse elems in ieee80211_assoc_success() (Íñigo Huguet) [2136123]
+- wifi: mac80211: replace link_id with link_conf in start/stop_ap() (Íñigo Huguet) [2136123]
+- wifi: mac80211: refactor elements parsing with parameter struct (Íñigo Huguet) [2136123]
+- wifi: cfg80211: extend cfg80211_rx_assoc_resp() for MLO (Íñigo Huguet) [2136123]
+- wifi: cfg80211: put cfg80211_rx_assoc_resp() arguments into a struct (Íñigo Huguet) [2136123]
+- wifi: cfg80211: adjust assoc comeback for MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: unify assoc data event sending (Íñigo Huguet) [2136123]
+- wifi: cfg80211: prepare association failure APIs for MLO (Íñigo Huguet) [2136123]
+- wifi: cfg80211: remove BSS pointer from cfg80211_disassoc_request (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: use correct link_sta (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: remove sta argument from ieee80211_config_bw (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: use ieee80211_get_link_sband() (Íñigo Huguet) [2136123]
+- wifi: mac80211: split IEEE80211_STA_DISABLE_WMM to link data (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: first adjustments for MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: do IEEE80211_STA_RESET_SIGNAL_AVE per link (Íñigo Huguet) [2136123]
+- wifi: mac80211: mlme: track AP (MLD) address separately (Íñigo Huguet) [2136123]
+- wifi: mac80211: remove unused bssid variable (Íñigo Huguet) [2136123]
+- wifi: mac80211: change QoS settings API to take link into account (Íñigo Huguet) [2136123]
+- wifi: mac80211: expect powersave handling in driver for MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: move ps setting to vif config (Íñigo Huguet) [2136123]
+- wifi: mac80211: provide link ID in link_conf (Íñigo Huguet) [2136123]
+- wifi: mac80211: set up/tear down client vif links properly (Íñigo Huguet) [2136123]
+- wifi: mac80211: move ieee80211_request_smps_mgd_work (Íñigo Huguet) [2136123]
+- wifi: nl80211: acquire wdev mutex for dump_survey (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix key lookup (Íñigo Huguet) [2136123]
+- wifi: mac80211: separate out connection downgrade flags (Íñigo Huguet) [2136123]
+- wifi: mac80211: Align with Draft P802.11be_D2.0 (Íñigo Huguet) [2136123]
+- wifi: mac80211: Align with Draft P802.11be_D1.5 (Íñigo Huguet) [2136123]
+- wifi: mac80211: skip powersave recalc if driver SUPPORTS_DYNAMIC_PS (Íñigo Huguet) [2136123]
+- wifi: mac80211: debug: omit link if non-MLO connection (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: Ack link addressed frames (Íñigo Huguet) [2136123]
+- wifi: cfg80211: drop BSS elements from assoc trace for now (Íñigo Huguet) [2136123]
+- wifi: cfg80211: make cfg80211_auth_request::key_idx signed (Íñigo Huguet) [2136123]
+- wifi: nl80211: enable setting the link address at new station (Íñigo Huguet) [2136123]
+- wifi: mac80211: RCU-ify link/link_conf pointers (Íñigo Huguet) [2136123]
+- wifi: nl80211: hold wdev mutex for station APIs (Íñigo Huguet) [2136123]
+- wifi: nl80211: hold wdev mutex for channel switch APIs (Íñigo Huguet) [2136123]
+- wifi: nl80211: hold wdev mutex in add/mod/del link station (Íñigo Huguet) [2136123]
+- wifi: mac80211: implement callbacks for <add/mod/del>_link_station (Íñigo Huguet) [2136123]
+- wifi: cfg80211/mac80211: separate link params from station params (Íñigo Huguet) [2136123]
+- wifi: cfg80211: add API to add/modify/remove a link station (Íñigo Huguet) [2136123]
+- wifi: mac80211: add an ieee80211_get_link_sband (Íñigo Huguet) [2136123]
+- wifi: mac80211: Remove AP SMPS leftovers (Íñigo Huguet) [2136123]
+- wifi: cfg80211: Allow MLO TX with link source address (Íñigo Huguet) [2136123]
+- wifi: mac80211: Consider MLO links in offchannel logic (Íñigo Huguet) [2136123]
+- wifi: mac80211: rx: accept link-addressed frames (Íñigo Huguet) [2136123]
+- wifi: mac80211: consistently use sdata_dereference() (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: Support link channel matching on rx (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix mesh airtime link metric estimating (Íñigo Huguet) [2136123]
+- wifi: mac80211: make 4addr null frames using min_rate for WDS (Íñigo Huguet) [2136123]
+- wifi: cfg80211: use strscpy to replace strlcpy (Íñigo Huguet) [2136123]
+- wifi: mac80211: exclude multicast packets from AQL pending airtime (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: use 32-bit skb cookie (Íñigo Huguet) [2136123]
+- mt76: mt7921: Let PCI core handle power state and use pm_sleep_ptr() (Íñigo Huguet) [2136123]
+- mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() (Íñigo Huguet) [2136123]
+- mt76: get rid of mt76_wcid_hw routine (Íñigo Huguet) [2136123]
+- mt76: convert MT_TX_HW_QUEUE_EXT_PHY to MT_TX_HW_QUEUE_PHY (Íñigo Huguet) [2136123]
+- mt76: add phy_idx to mt76_wcid (Íñigo Huguet) [2136123]
+- mt76: introduce phys array in mt76_dev structure (Íñigo Huguet) [2136123]
+- mt76: add phy_idx in mt76_rx_status (Íñigo Huguet) [2136123]
+- mt76: introduce MT_RXQ_BAND2 and MT_RXQ_BAND2_WA in mt76_rxq_id (Íñigo Huguet) [2136123]
+- mt76: add len parameter to __mt76_mcu_msg_alloc signature (Íñigo Huguet) [2136123]
+- mt76: mt7915 add ht mpdu density (Íñigo Huguet) [2136123]
+- mt76: mt7921: reduce the mutex lock scope during reset (Íñigo Huguet) [2136123]
+- mt76: mt7921: reduce log severity levels for informative messages (Íñigo Huguet) [2136123]
+- mt76: connac: move tx initialization/cleanup in mt76_connac module (Íñigo Huguet) [2136123]
+- mt76: mt7921: make mt7921_pci_driver static (Íñigo Huguet) [2136123]
+- mt76: mt7921: enable HW beacon filter in the initialization stage (Íñigo Huguet) [2136123]
+- mt76: mt7921: enable HW beacon filter not depending on PM flag (Íñigo Huguet) [2136123]
+- mt76: remove q->qid (Íñigo Huguet) [2136123]
+- mt76: do not use skb_set_queue_mapping for internal purposes (Íñigo Huguet) [2136123]
+- mt76: pass original queue id from __mt76_tx_queue_skb to the driver (Íñigo Huguet) [2136123]
+- mt76: allow receiving frames with invalid CCMP PN via monitor interfaces (Íñigo Huguet) [2136123]
+- mt76: mt76x02: improve reliability of the beacon hang check (Íñigo Huguet) [2136123]
+- mt76: mt7615: add sta_rec with EXTRA_INFO_NEW for the first time only (Íñigo Huguet) [2136123]
+- mt76: mt7915: update the maximum size of beacon offload (Íñigo Huguet) [2136123]
+- mt76: do not check the ccmp pn for ONLY_MONITOR frame (Íñigo Huguet) [2136123]
+- mt76: mt7915: add sta_rec with EXTRA_INFO_NEW for the first time only (Íñigo Huguet) [2136123]
+- mt76: mt7915: update mpdu density in 6g capability (Íñigo Huguet) [2136123]
+- mt76: mt7915: do not copy ieee80211_ops pointer in mt7915_mmio_probe (Íñigo Huguet) [2136123]
+- mt76: mt7915: disable UL MU-MIMO for mt7915 (Íñigo Huguet) [2136123]
+- mt76: move mt76_connac2_mcu_fill_message in mt76_connac module (Íñigo Huguet) [2136123]
+- mt76: move mcu_txd/mcu_rxd structures in shared code (Íñigo Huguet) [2136123]
+- mt76: mt7915: rely on mt76_connac_tx_free (Íñigo Huguet) [2136123]
+- mt76: connac: move mt7615_txp_skb_unmap in common code (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac_write_hw_txp in shared code (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac_tx_complete_skb in shared code (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac_tx_free in shared code (Íñigo Huguet) [2136123]
+- mt76: move mt7615_txp_ptr in mt76_connac module (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac_fw_txp in common module (Íñigo Huguet) [2136123]
+- mt76: mt7915: get rid of unnecessary new line in mt7915_mac_write_txwi (Íñigo Huguet) [2136123]
+- mt76: mt7921s: remove unnecessary goto in mt7921s_mcu_drv_pmctrl (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac2_mac_fill_rx_rate in connac module (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac2_reverse_frag0_hdr_trans in mt76-connac module (Íñigo Huguet) [2136123]
+- mt76: connac: move HE radiotap parsing in connac module (Íñigo Huguet) [2136123]
+- mt76: mt7921: fix command timeout in AP stop period (Íñigo Huguet) [2136123]
+- mt76: mt7921: not support beacon offload disable command (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac2_mac_add_txs_skb in connac module (Íñigo Huguet) [2136123]
+- mt76: connac: move connac2_mac_write_txwi in mt76_connac module (Íñigo Huguet) [2136123]
+- mt76: connac: move mac connac2 defs in mt76_connac2_mac.h (Íñigo Huguet) [2136123]
+- mt76: mt7915: rely on mt76_dev in mt7915_mac_write_txwi signature (Íñigo Huguet) [2136123]
+- mt76: mt7921: rely on mt76_dev in mt7921_mac_write_txwi signature (Íñigo Huguet) [2136123]
+- mt76: enable the VHT extended NSS BW feature (Íñigo Huguet) [2136123]
+- mt76: mt7663: rely on mt76_connac2_fw_trailer (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac2_load_patch in connac module (Íñigo Huguet) [2136123]
+- mt76: connac: move mt76_connac2_load_ram in connac module (Íñigo Huguet) [2136123]
+- mt76: mt7921: move fw toggle in mt7921_load_firmware (Íñigo Huguet) [2136123]
+- mt76: connac: move shared fw structures in connac module (Íñigo Huguet) [2136123]
+- mt76: mt7921: get rid of mt7921_mcu_exit (Íñigo Huguet) [2136123]
+- mt76: mt7921: add missing bh-disable around rx napi schedule (Íñigo Huguet) [2136123]
+- mt76: mt7615: add missing bh-disable around rx napi schedule (Íñigo Huguet) [2136123]
+- mt76: mt7915: add missing bh-disable around tx napi enable/schedule (Íñigo Huguet) [2136123]
+- mt76: mt7921: add PATCH_FINISH_REQ cmd response handling (Íñigo Huguet) [2136123]
+- mt76: add DBDC rxq handlings into mac_reset_work (Íñigo Huguet) [2136123]
+- mt76: mt7915: add more ethtool stats (Íñigo Huguet) [2136123]
+- mt76: mt7921: introduce ACPI SAR config in tx power (Íñigo Huguet) [2136123]
+- mt76: mt7921: introduce ACPI SAR support (Íñigo Huguet) [2136123]
+- mt76: add 6 GHz band support in mt76_sar_freq_ranges (Íñigo Huguet) [2136123]
+- mt76: mt7915: fix endian bug in mt7915_rf_regval_set() (Íñigo Huguet) [2136123]
+- mt76: mt76x02u: fix possible memory leak in __mt76x02u_mcu_send_msg (Íñigo Huguet) [2136123]
+- mt76: mt7915: fix endianness in mt7915_rf_regval_get (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: add back erroneously removed cast (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix queue selection for mesh/OCB interfaces (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: fix race condition in pending packet (Íñigo Huguet) [2136123]
+- wifi: mac80211: Use the bitmap API to allocate bitmaps (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix center freq calculation in ieee80211_chandef_downgrade (Íñigo Huguet) [2136123]
+- wifi: nl80211: fix sending link ID info of associated BSS (Íñigo Huguet) [2136123]
+- wifi: cfg80211: fix a comment in cfg80211_mlme_mgmt_tx() (Íñigo Huguet) [2136123]
+- wifi: nl80211: Fix reading NL80211_ATTR_MLO_LINK_ID in nl80211_pre_doit (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Check dev_set_name() return value (Íñigo Huguet) [2136123]
+- ath9k: remove unexpected words "the" in comments (Íñigo Huguet) [2136123]
+- ath11k: Fix typo in comments (Íñigo Huguet) [2136123]
+- wifi: nl80211: retrieve EHT related elements in AP mode (Íñigo Huguet) [2136123]
+- wifi: cfg80211: Increase akm_suites array size in cfg80211_crypto_settings (Íñigo Huguet) [2136123]
+- wifi: cfg80211: remove chandef check in cfg80211_cac_event() (Íñigo Huguet) [2136123]
+- wifi: nl80211: relax wdev mutex check in wdev_chandef() (Íñigo Huguet) [2136123]
+- wifi: nl80211: acquire wdev mutex earlier in start_ap (Íñigo Huguet) [2136123]
+- wifi: nl80211: hold wdev mutex for tid config (Íñigo Huguet) [2136123]
+- wifi: cfg80211: handle IBSS in channel switch (Íñigo Huguet) [2136123]
+- wifi: mac80211: properly skip link info driver update (Íñigo Huguet) [2136123]
+- wifi: mac80211: only accumulate airtime deficit for active clients (Íñigo Huguet) [2136123]
+- wifi: mac80211: add debugfs file to display per-phy AQL pending airtime (Íñigo Huguet) [2136123]
+- wifi: mac80211: add a per-PHY AQL limit to improve fairness (Íñigo Huguet) [2136123]
+- wifi: mac80211: keep recently active tx queues in scheduling list (Íñigo Huguet) [2136123]
+- wifi: mac80211: consider aql_tx_pending when checking airtime deficit (Íñigo Huguet) [2136123]
+- wifi: mac80211: make sta airtime deficit field s32 instead of s64 (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix a kernel-doc complaint (Íñigo Huguet) [2136123]
+- wifi: cfg80211: remove redundant documentation (Íñigo Huguet) [2136123]
+- wifi: mac80211: sta_info: fix a missing kernel-doc struct element (Íñigo Huguet) [2136123]
+- wifi: mac80211: add a missing comma at kernel-doc markup (Íñigo Huguet) [2136123]
+- wifi: cfg80211: fix kernel-doc warnings all over the file (Íñigo Huguet) [2136123]
+- wifi: ieee80211: s1g action frames are not robust (Íñigo Huguet) [2136123]
+- bus: mhi: host: pci_generic: Add another Foxconn T99W175 (Íñigo Huguet) [2136123]
+- wifi: cfg80211: Allow P2P client interface to indicate port authorization (Íñigo Huguet) [2136123]
+- wifi: mac80211: do not wake queues on a vif that is being stopped (Íñigo Huguet) [2136123]
+- wifi: mac80211: check skb_shared in ieee80211_8023_xmit() (Íñigo Huguet) [2136123]
+- wifi: mac80211: add gfp_t parameter to ieeee80211_obss_color_collision_notify (Íñigo Huguet) [2136123]
+- bus: mhi: host: Move IRQ allocation to controller registration phase (Íñigo Huguet) [2136123]
+- bus: mhi: host: pci_generic: Add Cinterion MV31-W with new baseline (Íñigo Huguet) [2136123]
+- bus: mhi: host: pci_generic: Add support for Quectel EM120 FCCL modem (Íñigo Huguet) [2136123]
+- wifi: rtw89: disable invalid phy reports for all ICs (Íñigo Huguet) [2136123]
+- wifi: rtw89: pci: fix PCI doesn't reclaim TX BD properly (Íñigo Huguet) [2136123]
+- wifi: rtw89: fix long RX latency in low power mode (Íñigo Huguet) [2136123]
+- wifi: rtw89: drop invalid TX rate report of legacy rate (Íñigo Huguet) [2136123]
+- wifi: rtw89: add UNEXP debug mask to keep monitor messages unexpected to happen frequently (Íñigo Huguet) [2136123]
+- wifi: rtw89: enable VO TX AMPDU (Íñigo Huguet) [2136123]
+- wifi: rtw89: fix potential TX stuck (Íñigo Huguet) [2136123]
+- wifi: rtw89: support TDLS (Íñigo Huguet) [2136123]
+- wifi: rtw89: allocate BSSID CAM per TDLS peer (Íñigo Huguet) [2136123]
+- wifi: rtw89: separate BSSID CAM operations (Íñigo Huguet) [2136123]
+- wifi: rtw89: allocate address CAM and MAC ID to TDLS peer (Íñigo Huguet) [2136123]
+- cfg80211: Indicate MLO connection info in connect and roam callbacks (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: print the link id (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: support creating MLO-capable radios (Íñigo Huguet) [2136123]
+- wifi: nl80211: expose link ID for associated BSSes (Íñigo Huguet) [2136123]
+- wifi: nl80211: expose link information for interfaces (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: send a beacon per link (Íñigo Huguet) [2136123]
+- wifi: mac80211: set STA deflink addresses (Íñigo Huguet) [2136123]
+- wifi: mac80211: maintain link-sta hash table (Íñigo Huguet) [2136123]
+- wifi: mac80211: RCU-ify link STA pointers (Íñigo Huguet) [2136123]
+- wifi: mac80211: ethtool: use deflink for now (Íñigo Huguet) [2136123]
+- wifi: mac80211: move ieee80211_bssid_match() function (Íñigo Huguet) [2136123]
+- wifi: mac80211: return a beacon for a specific link (Íñigo Huguet) [2136123]
+- wifi: mac80211: pass the link id in start/stop ap (Íñigo Huguet) [2136123]
+- wifi: mac80211: use link in start/stop ap (Íñigo Huguet) [2136123]
+- wifi: mac80211: implement add/del interface link callbacks (Íñigo Huguet) [2136123]
+- wifi: cfg80211: add optional link add/remove callbacks (Íñigo Huguet) [2136123]
+- wifi: cfg80211: sort trace.h (Íñigo Huguet) [2136123]
+- wifi: mac80211: add sta link addition/removal (Íñigo Huguet) [2136123]
+- wifi: mac80211: add MLO link ID to TX frame metadata (Íñigo Huguet) [2136123]
+- wifi: mac80211: remove band from TX info in MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: add vif link addition/removal (Íñigo Huguet) [2136123]
+- wifi: nl80211: support MLO in auth/assoc (Íñigo Huguet) [2136123]
+- wifi: mac80211: ignore IEEE80211_CONF_CHANGE_SMPS in chanctx mode (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: split bss_info_changed to vif/link info_changed (Íñigo Huguet) [2136123]
+- wifi: cfg80211: simplify cfg80211_mlme_auth() prototype (Íñigo Huguet) [2136123]
+- wifi: ieee80211: add definitions for multi-link element (Íñigo Huguet) [2136123]
+- wifi: nl80211: refactor BSS lookup in nl80211_associate() (Íñigo Huguet) [2136123]
+- wifi: cfg80211: mlme: get BSS entry outside cfg80211_mlme_assoc() (Íñigo Huguet) [2136123]
+- wifi: mac80211: tx: simplify chanctx_conf handling (Íñigo Huguet) [2136123]
+- wifi: mac80211: status: look up band only where needed (Íñigo Huguet) [2136123]
+- wifi: mac80211: sort trace.h file (Íñigo Huguet) [2136123]
+- wifi: mac80211: correct link config data in tracing (Íñigo Huguet) [2136123]
+- wifi: mac80211: make ieee80211_he_cap_ie_to_sta_he_cap() MLO-aware (Íñigo Huguet) [2136123]
+- wifi: mac80211: make some SMPS code MLD-aware (Íñigo Huguet) [2136123]
+- wifi: mac80211: HT: make ieee80211_ht_cap_ie_to_sta_ht_cap() MLO-aware (Íñigo Huguet) [2136123]
+- wifi: mac80211: add link_id to eht.c code for MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: add link_id to vht.c code for MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: refactor some link setup code (Íñigo Huguet) [2136123]
+- wifi: mac80211: validate some driver features for MLO (Íñigo Huguet) [2136123]
+- wifi: mac80211: use IEEE80211_MLD_MAX_NUM_LINKS (Íñigo Huguet) [2136123]
+- wifi: mac80211: refactor some sta_info link handling (Íñigo Huguet) [2136123]
+- wifi: mac80211: remove sta_info_tx_streams() (Íñigo Huguet) [2136123]
+- wifi: mac80211: make channel context code MLO-aware (Íñigo Huguet) [2136123]
+- wifi: mac80211: pass link ID where already present (Íñigo Huguet) [2136123]
+- wifi: mac80211: add per-link configuration pointer (Íñigo Huguet) [2136123]
+- wifi: mac80211: split bss_info_changed method (Íñigo Huguet) [2136123]
+- mac80211: fix maybe-unused warning (Íñigo Huguet) [2136123]
+- wifi: mac80211: reorg some iface data structs for MLD (Íñigo Huguet) [2136123]
+- wifi: mac80211: move interface config to new struct (Íñigo Huguet) [2136123]
+- wifi: mac80211: move some future per-link data to bss_conf (Íñigo Huguet) [2136123]
+- wifi: cfg80211: do some rework towards MLO link APIs (Íñigo Huguet) [2136123]
+- wifi: mac80211: reject WEP or pairwise keys with key ID > 3 (Íñigo Huguet) [2136123]
+- wifi: mac80211_hwsim: Directly use ida_alloc()/free() (Íñigo Huguet) [2136123]
+- wifi: mac80211: refactor some key code (Íñigo Huguet) [2136123]
+- wifi: mac80211: remove cipher scheme support (Íñigo Huguet) [2136123]
+- wifi: nl80211: fix typo in comment (Íñigo Huguet) [2136123]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_391.RULE (Íñigo Huguet) [2136123]
+- rtw88: 8821c: fix access const table of channel parameters (Íñigo Huguet) [2136123]
+- rtw89: add new state to CFO state machine for UL-OFDMA (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add trigger frame counter (Íñigo Huguet) [2136123]
+- ieee80211: add trigger frame definition (Íñigo Huguet) [2136123]
+- ath10k: fix recently introduced checkpatch warning (Íñigo Huguet) [2136123]
+- wifi: rtw89: support MULTI_BSSID and correct BSSID mask of H2C (Íñigo Huguet) [2136123]
+- wifi: ray_cs: Drop useless status variable in parse_addr() (Íñigo Huguet) [2136123]
+- wifi: ray_cs: Utilize strnlen() in parse_addr() (Íñigo Huguet) [2136123]
+- wifi: rtw88: use *ph to print small buffer (Íñigo Huguet) [2136123]
+- ath11k: Fix warnings reported by checkpatch (Íñigo Huguet) [2136123]
+- ath11k: Fix LDPC config in set_bitrate_mask hook (Íñigo Huguet) [2136123]
+- wifi: mac80211: fix use-after-free in chanctx code (Íñigo Huguet) [2136123]
+- ath10k: fix regdomain info of iw reg set/get (Íñigo Huguet) [2136123]
+- ath11k: support avg signal in station dump (Íñigo Huguet) [2136123]
+- wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() (Íñigo Huguet) [2136123]
+- wifi: rtw88: Fix Sparse warning for rtw8821c_hw_spec (Íñigo Huguet) [2136123]
+- wifi: rtw88: Fix Sparse warning for rtw8723d_hw_spec (Íñigo Huguet) [2136123]
+- wifi: rtw88: Fix Sparse warning for rtw8822c_hw_spec (Íñigo Huguet) [2136123]
+- wifi: rtw88: Fix sparse warning for rtw8822b_hw_spec (Íñigo Huguet) [2136123]
+- rtw88: fix null vif pointer when hw_scan fails (Íñigo Huguet) [2136123]
+- rtw89: sar: adjust and support SAR on 6GHz band (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: re-calibrate RX DCK once thermal changes a lot (Íñigo Huguet) [2136123]
+- rtw89: pci: handle hardware watchdog timeout interrupt status (Íñigo Huguet) [2136123]
+- rtw89: fix null vif pointer when hw_scan fails (Íñigo Huguet) [2136123]
+- rtw89: fix channel inconsistency during hw_scan (Íñigo Huguet) [2136123]
+- wifi: rtw88: add a work to correct atomic scheduling warning of ::set_tim (Íñigo Huguet) [2136123]
+- wifi: iwlwifi: pcie: rename CAUSE macro (Íñigo Huguet) [2136123]
+- wifi: brcmfmac: work around a GCC 12 -Warray-bounds warning (Íñigo Huguet) [2136123]
+- wifi: iwlwifi: use unsigned to silence a GCC 12 warning (Íñigo Huguet) [2136123]
+- wifi: rtlwifi: remove always-true condition pointed out by GCC 12 (Íñigo Huguet) [2136123]
+- wifi: ath9k: silence array-bounds warning on GCC 12 (Íñigo Huguet) [2136123]
+- ath9k: replace ternary operator with max() (Íñigo Huguet) [2136123]
+- ath11k: Init hw_params before setting up AHB resources (Íñigo Huguet) [2136123]
+- ath11k: Fix warning on variable 'sar' dereference before check (Íñigo Huguet) [2136123]
+- ath10k: fix misreported tx bandwidth for 160Mhz (Íñigo Huguet) [2136123]
+- ath10k: add encapsulation offloading support (Íñigo Huguet) [2136123]
+- ath10k: turn rawmode into frame_mode (Íñigo Huguet) [2136123]
+- ath10k: improve tx status reporting (Íñigo Huguet) [2136123]
+- ath10k: do not enforce interrupt trigger type (Íñigo Huguet) [2136123]
+- iwlwifi: mei: fix potential NULL-ptr deref (Íñigo Huguet) [2136123]
+- iwlwifi: mei: clear the sap data header before sending (Íñigo Huguet) [2136123]
+- iwlwifi: mvm: remove vif_count (Íñigo Huguet) [2136123]
+- iwlwifi: mvm: always tell the firmware to accept MCAST frames in BSS (Íñigo Huguet) [2136123]
+- iwlwifi: mvm: add OTP info in case of init failure (Íñigo Huguet) [2136123]
+- iwlwifi: mvm: fix assert 1F04 upon reconfig (Íñigo Huguet) [2136123]
+- iwlwifi: mvm: clean up authorized condition (Íñigo Huguet) [2136123]
+- iwlwifi: mvm: use NULL instead of ERR_PTR when parsing wowlan status (Íñigo Huguet) [2136123]
+- iwlwifi: pcie: simplify MSI-X cause mapping (Íñigo Huguet) [2136123]
+- ath11k: update missing MU-MIMO and OFDMA stats (Íñigo Huguet) [2136123]
+- rtw89: pci: only mask out INT indicator register for disable interrupt v1 (Íñigo Huguet) [2136123]
+- rtw89: convert rtw89_band to nl80211_band precisely (Íñigo Huguet) [2136123]
+- rtw89: 8852c: update txpwr tables to HALRF_027_00_052 (Íñigo Huguet) [2136123]
+- rtw89: cfo: check mac_id to avoid out-of-bounds (Íñigo Huguet) [2136123]
+- rtw89: 8852c: set TX antenna path (Íñigo Huguet) [2136123]
+- rtw89: add ieee80211::sta_rc_update ops (Íñigo Huguet) [2136123]
+- wireless: Fix Makefile to be in alphabetical order (Íñigo Huguet) [2136123]
+- mac80211: refactor freeing the next_beacon (Íñigo Huguet) [2136123]
+- cfg80211: fix kernel-doc for cfg80211_beacon_data (Íñigo Huguet) [2136123]
+- mac80211: minstrel_ht: support ieee80211_rate_status (Íñigo Huguet) [2136123]
+- mac80211: extend current rate control tx status API (Íñigo Huguet) [2136123]
+- mac80211: minstrel_ht: fill all requested rates (Íñigo Huguet) [2136123]
+- mac80211: disable BSS color collision detection in case of no free colors (Íñigo Huguet) [2136123]
+- nl80211: Parse NL80211_ATTR_HE_BSS_COLOR as a part of nl80211_parse_beacon (Íñigo Huguet) [2136123]
+- mac80211: mlme: track assoc_bss/associated separately (Íñigo Huguet) [2136123]
+- mac80211: remove useless bssid copy (Íñigo Huguet) [2136123]
+- mac80211: remove unused argument to ieee80211_sta_connection_lost() (Íñigo Huguet) [2136123]
+- mac80211: mlme: use local SSID copy (Íñigo Huguet) [2136123]
+- mac80211: use ifmgd->bssid instead of ifmgd->associated->bssid (Íñigo Huguet) [2136123]
+- mac80211: mlme: move in RSSI reporting code (Íñigo Huguet) [2136123]
+- mac80211: remove stray multi_sta_back_32bit docs (Íñigo Huguet) [2136123]
+- mac80211: fix typo in documentation (Íñigo Huguet) [2136123]
+- mac80211: unify CCMP/GCMP AAD construction (Íñigo Huguet) [2136123]
+- mt76: mt7921: add ipv6 NS offload support (Íñigo Huguet) [2136123]
+- mt76: add gfp to mt76_mcu_msg_alloc signature (Íñigo Huguet) [2136123]
+- mt76: mt7915: add more statistics from fw_util debugfs knobs (Íñigo Huguet) [2136123]
+- mt76: mt7915: improve error handling for fw_debug knobs (Íñigo Huguet) [2136123]
+- mt76: mt7615/mt7915: do reset_work with mt76's work queue (Íñigo Huguet) [2136123]
+- mt76: mt7915: add support for 6G in-band discovery (Íñigo Huguet) [2136123]
+- mt76: mt7915: add Wireless Ethernet Dispatch support (Íñigo Huguet) [2136123]
+- net: ethernet: mtk_eth_soc: add support for Wireless Ethernet Dispatch (WED) (Íñigo Huguet) [2136123]
+- mt76: make number of tokens configurable dynamically (Íñigo Huguet) [2136123]
+- mt76: add support for overriding the device used for DMA mapping (Íñigo Huguet) [2136123]
+- mt76: dma: add wrapper macro for accessing queue registers (Íñigo Huguet) [2136123]
+- mt76: mt7915: move MT_INT_MASK_CSR to init.c (Íñigo Huguet) [2136123]
+- mt76: mt7915: introduce mt7915_mac_severe_check() (Íñigo Huguet) [2136123]
+- mt76: mt7915: rework SER debugfs knob (Íñigo Huguet) [2136123]
+- mt76: mt7915: limit minimum twt duration (Íñigo Huguet) [2136123]
+- mt76: mt7915: reject duplicated twt flows (Íñigo Huguet) [2136123]
+- mt76: mt7915: update mt7986 patch in mt7986_wmac_adie_patch_7976() (Íñigo Huguet) [2136123]
+- mt76: connac: use skb_put_data instead of open coding (Íñigo Huguet) [2136123]
+- mt76: mt7915: configure soc clocks in mt7986_wmac_init (Íñigo Huguet) [2136123]
+- mt76: fix encap offload ethernet type check (Íñigo Huguet) [2136123]
+- mt76: mt7915: disable RX_HDR_TRANS_SHORT (Íñigo Huguet) [2136123]
+- mt76: mt7603: move spin_lock_bh() to spin_lock() (Íñigo Huguet) [2136123]
+- mt76: mt7915: add debugfs knob for RF registers read/write (Íñigo Huguet) [2136123]
+- mt76: mt7921: make read-only array ppet16_ppet8_ru3_ru0 static const (Íñigo Huguet) [2136123]
+- mt76: mt7915: make read-only array ppet16_ppet8_ru3_ru0 static const (Íñigo Huguet) [2136123]
+- mt76: mt7915: remove SCS feature (Íñigo Huguet) [2136123]
+- mt76: fix rx reordering with non explicit / psmp ack policy (Íñigo Huguet) [2136123]
+- mt76: mt7921: Add AP mode support (Íñigo Huguet) [2136123]
+- mt76: mt7915: use 0xff to initialize bitrate_mask in mt7915_init_bitrate_mask (Íñigo Huguet) [2136123]
+- mt76: mt7915: always call mt7915_wfsys_reset() during init (Íñigo Huguet) [2136123]
+- mt76: mt7921: rely on mt76_dev rxfilter in mt7921_configure_filter (Íñigo Huguet) [2136123]
+- mt76: mt7921u: add suspend/resume support (Íñigo Huguet) [2136123]
+- mt76: fix MBSS index condition in DBDC mode (Íñigo Huguet) [2136123]
+- mt76: fix use-after-free by removing a non-RCU wcid pointer (Íñigo Huguet) [2136123]
+- mt76: mt7921: accept rx frames with non-standard VHT MCS10-11 (Íñigo Huguet) [2136123]
+- mt76: mt7915: accept rx frames with non-standard VHT MCS10-11 (Íñigo Huguet) [2136123]
+- mt76: dma: use kzalloc instead of devm_kzalloc for txwi (Íñigo Huguet) [2136123]
+- mt76: reduce tx queue lock hold time (Íñigo Huguet) [2136123]
+- mt76: mt7915: rework hardware/phy initialization (Íñigo Huguet) [2136123]
+- rtlwifi: Use pr_warn instead of WARN_ONCE (Íñigo Huguet) [2136123]
+- rtw89: add debug entry to dump BSSID CAM (Íñigo Huguet) [2136123]
+- rtw89: add debug select to dump MAC pages 0x30 to 0x33 (Íñigo Huguet) [2136123]
+- rtw89: correct CCA control (Íñigo Huguet) [2136123]
+- rtw89: correct setting of RX MPDU length (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add settings to decrease the effect of DC (Íñigo Huguet) [2136123]
+- brcmfmac: allow setting wlan MAC address using device tree (Íñigo Huguet) [2136123]
+- ath11k: remove redundant assignment to variables vht_mcs and he_mcs (Íñigo Huguet) [2136123]
+- ath11k: Reuse the available memory after firmware reload (Íñigo Huguet) [2136123]
+- ath11k: Designating channel frequency when sending management frames (Íñigo Huguet) [2136123]
+- ath11k: Implement remain-on-channel support (Íñigo Huguet) [2136123]
+- ath11k: Handle keepalive during WoWLAN suspend and resume (Íñigo Huguet) [2136123]
+- bus: mhi: host: Add support for Foxconn T99W373 and T99W368 (Íñigo Huguet) [2136123]
+- bus: mhi: host: pci_generic: add Telit FN990 (Íñigo Huguet) [2136123]
+- bus: mhi: host: pci_generic: add Telit FN980 v1 hardware revision (Íñigo Huguet) [2136123]
+- bus: mhi: replace snprintf with sysfs_emit (Íñigo Huguet) [2136123]
+- rtw88: adjust adaptivity option to 1 (Íñigo Huguet) [2136123]
+- ath11k: Fix RX de-fragmentation issue on WCN6750 (Íñigo Huguet) [2136123]
+- ath10k: support bus and device specific API 1 BDF selection (Íñigo Huguet) [2136123]
+- ath10k: mac: fix too long lines (Íñigo Huguet) [2136123]
+- ath11k: mac: fix too long line (Íñigo Huguet) [2136123]
+- mac80211: support disabling EHT mode (Íñigo Huguet) [2136123]
+- cfg80211: support disabling EHT mode (Íñigo Huguet) [2136123]
+- mac80211: upgrade passive scan to active scan on DFS channels after beacon rx (Íñigo Huguet) [2136123]
+- mac80211: tx: delete a redundant if statement in ieee80211_check_fast_xmit() (Íñigo Huguet) [2136123]
+- mac80211: consider Order bit to fill CCMP AAD (Íñigo Huguet) [2136123]
+- cfg80211: declare MODULE_FIRMWARE for regulatory.db (Íñigo Huguet) [2136123]
+- nl80211: rework internal_flags usage (Íñigo Huguet) [2136123]
+- nl80211: don't hold RTNL in color change request (Íñigo Huguet) [2136123]
+- cfg80211: remove cfg80211_get_chan_state() (Íñigo Huguet) [2136123]
+- ath11k: Add support for targets without trustzone (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add 8852ce to Makefile and Kconfig (Íñigo Huguet) [2136123]
+- rtw89: 8852c: fix warning of FIELD_PREP() mask type (Íñigo Huguet) [2136123]
+- rtw89: 8852c: correct register definitions used by 8852c (Íñigo Huguet) [2136123]
+- rtw89: correct AID settings of beamformee (Íñigo Huguet) [2136123]
+- rtw89: ps: fine tune polling interval while changing low power mode (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add basic and remaining chip_info (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add chip_ops::bb_ctrl_btc_preagc (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: get calibrated channels to notify firmware (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: add DPK (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: add IQK (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: add RX DCK (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: add RCK (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: add TSSI (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: add LCK (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: add DACK (Íñigo Huguet) [2136123]
+- rtw89: 8852c: rfk: add RFK tables (Íñigo Huguet) [2136123]
+- rtw88: remove a copy of the NAPI_POLL_WEIGHT define (Íñigo Huguet) [2136123]
+- ath10k: remove a copy of the NAPI_POLL_WEIGHT define (Íñigo Huguet) [2136123]
+- ath11k: Add support for WCN6750 device (Íñigo Huguet) [2136123]
+- ath11k: Datapath changes to support WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: HAL changes to support WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: Add QMI changes for WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: Fetch device information via QMI for WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: Add register access logic for WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: Add HW params for WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: Move parameters in bus_params to hw_params (Íñigo Huguet) [2136123]
+- ath11k: change management tx queue to avoid connection timed out (Íñigo Huguet) [2136123]
+- ath11k: fix warning of not found station for bssid in message (Íñigo Huguet) [2136123]
+- rtw88: fix hw scan may cause disconnect issue (Íñigo Huguet) [2136123]
+- rtw88: fix not disabling beacon filter after disconnection (Íñigo Huguet) [2136123]
+- rtw88: add HT MPDU density value for each chip (Íñigo Huguet) [2136123]
+- ath11k: Don't use GFP_KERNEL in atomic context (Íñigo Huguet) [2136123]
+- ath10k: skip ath10k_halt during suspend for driver state RESTARTING (Íñigo Huguet) [2136123]
+- rtw89: remove unneeded semicolon (Íñigo Huguet) [2136123]
+- ath10k: simplify if-if to if-else (Íñigo Huguet) [2136123]
+- ath11k: read country code from SMBIOS for WCN6855/QCA6390 (Íñigo Huguet) [2136123]
+- ath11k: disable spectral scan during spectral deinit (Íñigo Huguet) [2136123]
+- ath11k: Update WBM idle ring HP after FW mode on (Íñigo Huguet) [2136123]
+- ath11k: WMI changes to support WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: Do not put HW in DBS mode for WCN6750 (Íñigo Huguet) [2136123]
+- rtlwifi: btcoex: fix if == else warning (Íñigo Huguet) [2136123]
+- rtw88: use the correct bit in the REG_HCI_OPT_CTRL register (Íñigo Huguet) [2136123]
+- mwifiex: Add SD8997 SDIO-UART firmware (Íñigo Huguet) [2136123]
+- mwifiex: Select firmware based on strapping (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add chip_ops related to BTC (Íñigo Huguet) [2136123]
+- rtw89: 8852c: fill freq and band of RX status by PPDU report (Íñigo Huguet) [2136123]
+- rtw89: 8852c: implement chip_ops::get_thermal (Íñigo Huguet) [2136123]
+- rtw89: 8852c: implement chip_ops related to TX power (Íñigo Huguet) [2136123]
+- rtw89: 8852c: configure default BB TX/RX path (Íñigo Huguet) [2136123]
+- rtw89: add RF H2C to notify firmware (Íñigo Huguet) [2136123]
+- rtw89: don't flush hci queues and send h2c if power is off (Íñigo Huguet) [2136123]
+- rtw89: pci: allow to process RPP prior to TX BD (Íñigo Huguet) [2136123]
+- rtw89: ps: access TX/RX rings via another registers in low power mode (Íñigo Huguet) [2136123]
+- rtw89: ser: re-enable interrupt in threadfn if under_recovery (Íñigo Huguet) [2136123]
+- rtw89: pci: add a separate interrupt handler for low power mode (Íñigo Huguet) [2136123]
+- rtw89: pci: reclaim TX BD only if it really need (Íñigo Huguet) [2136123]
+- rtw89: pci: add variant RPWM/CPWM to enter low power mode (Íñigo Huguet) [2136123]
+- rtw89: pci: add variant IMR/ISR and configure functions (Íñigo Huguet) [2136123]
+- bus: mhi: host: Add support for Cinterion MV32-WA/MV32-WB (Íñigo Huguet) [2136123]
+- bus: mhi: host: Optimize and update MMIO register write method (Íñigo Huguet) [2136123]
+- bus: mhi: host: Bail on writing register fields if read fails (Íñigo Huguet) [2136123]
+- bus: mhi: host: Wait for ready state after reset (Íñigo Huguet) [2136123]
+- bus: mhi: host: Add soc_reset sysfs (Íñigo Huguet) [2136123]
+- bus: mhi: host: pci_generic: Sort mhi_pci_id_table based on the PID (Íñigo Huguet) [2136123]
+- bus: mhi: host: Use cached values for calculating the shared write pointer (Íñigo Huguet) [2136123]
+- rtw88: pci: 8821c: Disable 21ce completion timeout (Íñigo Huguet) [2136123]
+- rtw88: fix uninitialized 'tim_offset' warning (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add help function of set channel (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add set channel of BB part (Íñigo Huguet) [2136123]
+- rtw89: 8852c: set channel of MAC part (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add set channel function of RF part (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add HFC parameters (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add efuse gain offset parser (Íñigo Huguet) [2136123]
+- rtw89: 8852c: support bb gain info (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add BB initial and reset functions (Íñigo Huguet) [2136123]
+- rtw89: 8852c: phy: configure TSSI bandedge (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add TX power track tables (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add TX power by rate and limit tables (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add BB and RF parameters tables (Íñigo Huguet) [2136123]
+- ath9k: fix QCA9561 PA bias level (Íñigo Huguet) [2136123]
+- ath9k_htc: fix potential out of bounds access with invalid rxstatus->rs_keyix (Íñigo Huguet) [2136123]
+- ath11k: Fix build warning without CONFIG_IPV6 (Íñigo Huguet) [2136123]
+- ath11k: fix missing unlock on error in ath11k_wow_op_resume() (Íñigo Huguet) [2136123]
+- ath11k: Add support for SAR (Íñigo Huguet) [2136123]
+- ath11k: add support for extended wmi service bit (Íñigo Huguet) [2136123]
+- rtw89: pci: correct return value handling of rtw89_write16_mdio_mask() (Íñigo Huguet) [2136123]
+- rtw89: configure security CAM for V1 chip (Íñigo Huguet) [2136123]
+- rtw89: add new H2C to configure security CAM via DCTL for V1 chip (Íñigo Huguet) [2136123]
+- rtw89: extend H2C of CMAC control info (Íñigo Huguet) [2136123]
+- rtlwifi: rtl8192cu: Fix spelling mistake "writting" -> "writing" (Íñigo Huguet) [2136123]
+- rtlwifi: Fix spelling mistake "cacluated" -> "calculated" (Íñigo Huguet) [2136123]
+- rtw88: 8821ce: Disable PCIe ASPM L1 for 8821CE using chip ID (Íñigo Huguet) [2136123]
+- rtw88: 8821ce: add support for device ID 0xb821 (Íñigo Huguet) [2136123]
+- rtw88: 8821c: fix debugfs rssi value (Íñigo Huguet) [2136123]
+- rtw88: do PHY calibration while starting AP (Íñigo Huguet) [2136123]
+- rtw88: 8821c: Enable TX report for management frames (Íñigo Huguet) [2136123]
+- rtw88: Add update beacon flow for AP mode (Íñigo Huguet) [2136123]
+- rtw88: fix incorrect frequency reported (Íñigo Huguet) [2136123]
+- rtw88: add ieee80211:sta_rc_update ops (Íñigo Huguet) [2136123]
+- rtw89: rtw89_ser: add const to struct state_ent and event_ent (Íñigo Huguet) [2136123]
+- rtw89: 8852c: add 8852c specific BT-coexistence initial function (Íñigo Huguet) [2136123]
+- rtw89: Skip useless dig gain and igi related settings for 8852C (Íñigo Huguet) [2136123]
+- rtw89: 8852c: disable firmware watchdog if CPU disabled (Íñigo Huguet) [2136123]
+- rtw89: reset BA CAM (Íñigo Huguet) [2136123]
+- rtw89: change station scheduler setting for hardware TX mode (Íñigo Huguet) [2136123]
+- rtw89: ser: configure top ERR IMR for firmware to recover (Íñigo Huguet) [2136123]
+- rtw89: ser: configure C-MAC interrupt mask (Íñigo Huguet) [2136123]
+- rtw89: ser: configure D-MAC interrupt mask (Íñigo Huguet) [2136123]
+- rtw89: ser: fix unannotated fall-through (Íñigo Huguet) [2136123]
+- ath9k: Remove unnecessary print function dev_err() (Íñigo Huguet) [2136123]
+- ath11k: Fix spelling mistake "reseting" -> "resetting" (Íñigo Huguet) [2136123]
+- ath9k: fix ath_get_rate_txpower() to respect the rate list end tag (Íñigo Huguet) [2136123]
+- mac80211: prepare sta handling for MLO support (Íñigo Huguet) [2136123]
+- mac80211: minstrel_ht: fix where rate stats are stored (fixes debugfs output) (Íñigo Huguet) [2136123]
+- nl80211: show SSID for P2P_GO interfaces (Íñigo Huguet) [2136123]
+- mac80211: introduce BSS color collision detection (Íñigo Huguet) [2136123]
+- mac80211: Improve confusing comment around tx_info clearing (Íñigo Huguet) [2136123]
+- mac80211: protect ieee80211_assign_beacon with next_beacon check (Íñigo Huguet) [2136123]
+- rtl8xxxu: fill up txrate info for gen1 chips (Íñigo Huguet) [2136123]
+- rtl8xxxu: feed antenna information for cfg80211 (Íñigo Huguet) [2136123]
+- rtlwifi: replace usage of found with dedicated list iterator variable (Íñigo Huguet) [2136123]
+- brcmfmac: Avoid keeping power to SDIO card unless WOWL is used (Íñigo Huguet) [2136123]
+- mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue (Íñigo Huguet) [2136123]
+- rtw89: fix misconfiguration on hw_scan channel time (Íñigo Huguet) [2136123]
+- rtw89: coex: Add case for scan offload (Íñigo Huguet) [2136123]
+- rtw89: packet offload handler to avoid warning (Íñigo Huguet) [2136123]
+- rtw89: change idle mode condition during hw_scan (Íñigo Huguet) [2136123]
+- rtw89: update ptcl_init (Íñigo Huguet) [2136123]
+- rtw89: update TMAC parameters (Íñigo Huguet) [2136123]
+- rtw89: initialize NAV control (Íñigo Huguet) [2136123]
+- rtw89: update scheduler setting (Íñigo Huguet) [2136123]
+- rtw89: 8852c: update security engine setting (Íñigo Huguet) [2136123]
+- rtw89: Turn on CR protection of CMAC (Íñigo Huguet) [2136123]
+- rtw89: add chip_ops::{enable,disable}_bb_rf to support v1 chip (Íñigo Huguet) [2136123]
+- rtw89: update STA scheduler parameters for v1 chip (Íñigo Huguet) [2136123]
+- rtw89: extend dmac_pre_init to support 8852C (Íñigo Huguet) [2136123]
+- rtw89: pci: add L1 settings (Íñigo Huguet) [2136123]
+- rtw89: pci: add deglitch setting (Íñigo Huguet) [2136123]
+- rtw89: pci: set address info registers depends on chips (Íñigo Huguet) [2136123]
+- rtw89: pci: add LTR setting for v1 chip (Íñigo Huguet) [2136123]
+- rtw89: pci: refine pci pre_init function (Íñigo Huguet) [2136123]
+- rtw89: pci: add pci attributes to configure operating mode (Íñigo Huguet) [2136123]
+- rtw89: pci: add register definition to rtw89_pci_info to generalize pci code (Íñigo Huguet) [2136123]
+- ath11k: mhi: remove unnecessary goto from ath11k_mhi_start() (Íñigo Huguet) [2136123]
+- ath11k: mhi: add error handling for suspend and resume (Íñigo Huguet) [2136123]
+- ath11k: mhi: remove state machine (Íñigo Huguet) [2136123]
+- rtw89: handle potential uninitialized variable (Íñigo Huguet) [2136123]
+- rtw89: read RX bandwidth from v1 type RX descriptor (Íñigo Huguet) [2136123]
+- rtw89: support hardware generate security header (Íñigo Huguet) [2136123]
+- rtw89: support variant of fill_txdesc (Íñigo Huguet) [2136123]
+- rtw89: pci: support variant of fill_txaddr_info (Íñigo Huguet) [2136123]
+- rtw89: add chip_info::h2c_desc_size/fill_txdesc_fwcmd to support new chips (Íñigo Huguet) [2136123]
+- rtw89: disabled IGI configuration for unsupported hardware (Íñigo Huguet) [2136123]
+- rtw89: packed IGI configuration flow into function for DIG feature (Íñigo Huguet) [2136123]
+- rtw89: regd: update mapping table to R59-R32 (Íñigo Huguet) [2136123]
+- rtw89: regd: consider 6G band (Íñigo Huguet) [2136123]
+- rtw89: 8852a: update txpwr tables to HALRF_027_00_038 (Íñigo Huguet) [2136123]
+- rtw89: add UK to regulation type (Íñigo Huguet) [2136123]
+- rtw89: reduce export symbol number of mac size and quota (Íñigo Huguet) [2136123]
+- rtw89: support FW crash simulation (Íñigo Huguet) [2136123]
+- rtw89: reconstruct fw feature (Íñigo Huguet) [2136123]
+- rtw89: ser: dump fw backtrace while L2 reset (Íñigo Huguet) [2136123]
+- rtw89: ser: dump memory for fw payload engine while L2 reset (Íñigo Huguet) [2136123]
+- rtw89: ser: control hci interrupts on/off by state (Íñigo Huguet) [2136123]
+- rtw89: mac: correct decision on error status by scenario (Íñigo Huguet) [2136123]
+- rtw89: mac: move table of mem base addr to common (Íñigo Huguet) [2136123]
+- rtw89: ser: fix CAM leaks occurring in L2 reset (Íñigo Huguet) [2136123]
+- rtw88: change idle mode condition during hw_scan (Íñigo Huguet) [2136123]
+- iwlwifi: mei: Replace zero-length array with flexible-array member (Íñigo Huguet) [2136123]
+- iwlwifi: fw: Replace zero-length arrays with flexible-array members (Íñigo Huguet) [2136123]
+- ath11k: fix driver initialization failure with WoW unsupported hw (Íñigo Huguet) [2136123]
+- ath11k: Remove unnecessary delay in ath11k_core_suspend (Íñigo Huguet) [2136123]
+- ath11k: Change max no of active probe SSID and BSSID to fw capability (Íñigo Huguet) [2136123]
+- ath11k: Remove core PCI references from PCI common code (Íñigo Huguet) [2136123]
+- ath11k: Refactor MSI logic to support WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: Choose MSI config based on HW revision (Íñigo Huguet) [2136123]
+- ath11k: Refactor PCI code to support WCN6750 (Íñigo Huguet) [2136123]
+- ath11k: PCI changes to support WCN6750 (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add uevent support for module autoloading (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for suspending and resuming channels (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for queueing SKBs to the host (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for processing channel rings (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for reading from the host (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for processing command rings (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for handling SYS_ERR condition (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for handling MHI_RESET (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for powering down the MHI endpoint stack (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for powering up the MHI endpoint stack (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for processing MHI endpoint interrupts (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for managing MHI state machine (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for sending events to the host (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for ring management (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for managing MMIO registers (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for creating and destroying MHI EP devices (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for registering MHI endpoint client drivers (Íñigo Huguet) [2136123]
+- bus: mhi: ep: Add support for registering MHI endpoint controllers (Íñigo Huguet) [2136123]
+- ath9k: make is2ghz consistent in ar9003_eeprom (Íñigo Huguet) [2136123]
+- ath10k: add support for MSDU IDs for USB devices (Íñigo Huguet) [2136123]
+- ath11k: add support to search regdb data in board-2.bin for WCN6855 (Íñigo Huguet) [2136123]
+- ath11k: store and send country code to firmware after recovery (Íñigo Huguet) [2136123]
+- ath9k: add functions to get paprd rate mask (Íñigo Huguet) [2136123]
+- ath9k: refactor ar9003_hw_spur_mitigate_ofdm (Íñigo Huguet) [2136123]
+- ath9k: fix ar9003_get_eepmisc (Íñigo Huguet) [2136123]
+- ath9k: use AR9300_MAX_CHAINS when appropriate (Íñigo Huguet) [2136123]
+- ath9k: split set11nRateFlags and set11nChainSel (Íñigo Huguet) [2136123]
+- ath9k: make ATH_SREV macros more consistent (Íñigo Huguet) [2136123]
+- ath11k: Add peer rhash table support (Íñigo Huguet) [2136123]
+- ath11k: add read variant from SMBIOS for download board data (Íñigo Huguet) [2136123]
+- ath11k: add fallback board name without variant while searching board-2.bin (Íñigo Huguet) [2136123]
+- ath11k: enable PLATFORM_CAP_PCIE_GLOBAL_RESET QMI host capability (Íñigo Huguet) [2136123]
+- ath11k: Add hw-restart option to simulate_fw_crash (Íñigo Huguet) [2136123]
+- ath11k: add synchronization operation between reconfigure of mac80211 and ath11k_base (Íñigo Huguet) [2136123]
+- ath11k: add support for device recovery for QCA6390/WCN6855 (Íñigo Huguet) [2136123]
+- ath11k: disable regdb support for QCA6390 (Íñigo Huguet) [2136123]
+- ath11k: remove unused ATH11K_BD_IE_BOARD_EXT (Íñigo Huguet) [2136123]
+- ath11k: change fw build id format in driver init log (Íñigo Huguet) [2136123]
+- ath11k: Refactor the peer delete (Íñigo Huguet) [2136123]
+- ath10k: Use of_device_get_match_data() helper (Íñigo Huguet) [2136123]
+- ath10k: Trigger sta disconnect on hardware restart (Íñigo Huguet) [2136123]
+- ath9k: Use platform_get_irq() to get the interrupt (Íñigo Huguet) [2136123]
+- ath11k: support GTK rekey offload (Íñigo Huguet) [2136123]
+- ath11k: support ARP and NS offload (Íñigo Huguet) [2136123]
+- ath11k: purge rx pktlog when entering WoW (Íñigo Huguet) [2136123]
+- ath11k: implement hardware data filter (Íñigo Huguet) [2136123]
+- ath11k: Add WoW net-detect functionality (Íñigo Huguet) [2136123]
+- ath11k: Add basic WoW functionalities (Íñigo Huguet) [2136123]
+- x86/cpu: Add several Intel server CPU model numbers (Prarit Bhargava) [2158037]
+- ice: Implement devlink port split operations (Petr Oros) [2009705]
+- ice: Add additional flags to ice_nvm_write_activate (Petr Oros) [2009705]
+- ice: Add port option admin queue commands (Petr Oros) [2009705]
+- hwmon: (coretemp) Check for null before removing sysfs attrs (Phil Auld) [2152429]
+- KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID (Jon Maloy) [2099301] {CVE-2022-1789}
+- redhat/configs: enable HP_WATCHDOG for aarch64 (Mark Salter) [2113079]
+- watchdog/hpwdt: Enable HP_WATCHDOG for ARM64 systems. (Mark Salter) [2113079]
+- watchdog: Improve Kconfig entry ordering and dependencies (Mark Salter) [2113079]
+- watchdog/hpwdt: Include nmi.h only if CONFIG_HPWDT_NMI_DECODING (Mark Salter) [2113079]
+- uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix (Oleg Nesterov) [2133797]
+- platform/mellanox: Remove redundant 'NULL' check (Mark Langsdorf) [2122314]
+- platform/mellanox: Remove unnecessary code (Mark Langsdorf) [2122314]
+- platform/mellanox: mlxreg-lc: Fix locking issue (Mark Langsdorf) [2122314]
+- platform/mellanox: mlxreg-lc: Fix coverity warning (Mark Langsdorf) [2122314]
+- platform/mellanox: mlxreg-lc: Fix error flow and extend verbosity (Mark Langsdorf) [2122314]
+- platform/mellanox: mlxreg-io: Add locking for io operations (Mark Langsdorf) [2122314]
+- platform/mellanox: nvsw-sn2201: fix error code in nvsw_sn2201_create_static_devices() (Mark Langsdorf) [2122314]
+- platform/mellanox: Add static in struct declaration. (Mark Langsdorf) [2122314]
+- platform/mellanox: Spelling s/platfom/platform/ (Mark Langsdorf) [2122314]
+- redhat/configs: Enable Mellanox SN2201 management device (Mark Langsdorf) [2122314]
+- platform/mellanox: Add support for new SN2201 system (Mark Langsdorf) [2122314]
+- platform_data/mlxreg: Add field for notification callback (Mark Langsdorf) [2122314]
+- Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Fix broken LED quirk for legacy ROM  devices (Gopal Tiwari) [2129295]
+- Bluetooth: Add support hdev to allocate private data (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Fix the legacy bootloader returns tlv based version (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Clean the exported function to static (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Move hci quirks to setup routine (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Refactoring setup routine for bootloader devices (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Add combined set_diag functions (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Fix the LED is not turning off immediately (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Fix the first HCI command not work with ROM device (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Add btintel data struct (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Refactoring setup routine for legacy ROM sku (Gopal Tiwari) [2129295]
+- Bluetooth: btintel: Add combined setup and shutdown functions (Gopal Tiwari) [2129295]
+- EDAC/mc_sysfs: Increase legacy channel support to 12 (Aristeu Rozanski) [2139861]
+- NFS: Trigger the "ls -l" readdir heuristic sooner (Benjamin Coddington) [2025991]
+- NFS: Cache all entries in the readdirplus reply (Benjamin Coddington) [2025991]
+- NFS: Optimise away the previous cookie field (Benjamin Coddington) [2025991]
+- NFS: Fix up forced readdirplus (Benjamin Coddington) [2025991]
+- NFS: Convert readdir page cache to use a cookie based index (Benjamin Coddington) [2025991]
+- NFS: Clean up page array initialisation/free (Benjamin Coddington) [2025991]
+- NFS: Trace effects of the readdirplus heuristic (Benjamin Coddington) [2025991]
+- NFS: Trace effects of readdirplus on the dcache (Benjamin Coddington) [2025991]
+- NFS: Add basic readdir tracing (Benjamin Coddington) [2025991]
+- NFS: Don't request readdirplus when revalidation was forced (Benjamin Coddington) [2025991]
+- NFSv4: Ask for a full XDR buffer of readdir goodness (Benjamin Coddington) [2025991]
+- NFS: Don't ask for readdirplus unless it can help nfs_getattr() (Benjamin Coddington) [2025991]
+- NFS: Improve heuristic for readdirplus (Benjamin Coddington) [2025991]
+- NFS: Reduce use of uncached readdir (Benjamin Coddington) [2025991]
+- NFS: Simplify nfs_readdir_xdr_to_array() (Benjamin Coddington) [2025991]
+- NFS: If the cookie verifier changes, we must invalidate the page cache (Benjamin Coddington) [2025991]
+- NFS: Adjust the amount of readahead performed by NFS readdir (Benjamin Coddington) [2025991]
+- NFS: Don't advance the page pointer unless the page is full (Benjamin Coddington) [2025991]
+- NFS: Don't re-read the entire page cache to find the next cookie (Benjamin Coddington) [2025991]
+- NFS: Store the change attribute in the directory page cache (Benjamin Coddington) [2025991]
+- NFS: Calculate page offsets algorithmically (Benjamin Coddington) [2025991]
+- NFS: Use kzalloc() to avoid initialising the nfs_open_dir_context (Benjamin Coddington) [2025991]
+- NFS: Initialise the readdir verifier as best we can in nfs_opendir() (Benjamin Coddington) [2025991]
+- NFS: Trace lookup revalidation failure (Benjamin Coddington) [2025991]
+- NFS: constify nfs_server_capable() and nfs_have_writebacks() (Benjamin Coddington) [2025991]
+- NFS: Return valid errors from nfs2/3_decode_dirent() (Benjamin Coddington) [2025991]
+- NFS: Avoid duplicate uncached readdir calls on eof (Benjamin Coddington) [2025991]
+- NFS: Don't skip directory entries when doing uncached readdir (Benjamin Coddington) [2025991]
+- NFS: Don't overfill uncached readdir pages (Benjamin Coddington) [2025991]
+- block: unhash blkdev part inode when the part is deleted (Ming Lei) [2148497]
+
+* Thu Dec 22 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-447.el8]
+- x86/fpu: Drop fpregs lock before inheriting FPU permissions (Eder Zulian) [2153549]
+- cpufreq: amd-pstate: Add resume and suspend callbacks (Mark Langsdorf) [2122310]
+- cpufreq: CPPC: Enable dvfs_possible_from_any_cpu (Mark Langsdorf) [2122310]
+- cpufreq: check only freq_table in __resolve_freq() (Mark Langsdorf) [2122310]
+- cpufreq: ondemand: Use cpumask_var_t for on-stack cpu mask (Mark Langsdorf) [2122310]
+- cpufreq: Change order of online() CB and policy->cpus modification (Mark Langsdorf) [2122310]
+- cpufreq: Warn users while freeing active policy (Mark Langsdorf) [2122310]
+- cpufreq: Drop unnecessary cpus locking from store() (Mark Langsdorf) [2122310]
+- cpufreq: Optimize cpufreq_show_cpus() (Mark Langsdorf) [2122310]
+- cpufreq: make interface functions and lock holding state clear (Mark Langsdorf) [2122310]
+- cpufreq: Abort show()/store() for half-initialized policies (Mark Langsdorf) [2122310]
+- cpufreq: Rearrange locking in cpufreq_remove_dev() (Mark Langsdorf) [2122310]
+- cpufreq: Split cpufreq_offline() (Mark Langsdorf) [2122310]
+- cpufreq: Reorganize checks in cpufreq_offline() (Mark Langsdorf) [2122310]
+- cpufreq: Clear real_cpus mask from remove_cpu_dev_symlink() (Mark Langsdorf) [2122310]
+- cpufreq: Prepare cleanup of powerpc's asm/prom.h (Mark Langsdorf) [2122310]
+- cpufreq: governor: Use kobject release() method to free dbs_data (Mark Langsdorf) [2122310]
+- ipv6: fix panic when fib_lookup_arg->result is fib6_info (Jiri Benc) [2140599]
+- tipc: re-fetch skb cb after tipc_msg_validate (Xin Long) [2142732]
+- Documentation: bonding: correct xmit hash steps (Jonathan Toppins) [2150390]
+- Documentation: bonding: update miimon default to 100 (Jonathan Toppins) [2150390]
+- selftests: bonding: up/down delay w/ slave link flapping (Jonathan Toppins) [2150390]
+- bonding (gcc13): synchronize bond_{a,t}lb_xmit() types (Jonathan Toppins) [2150390]
+- selftests: net: Fix cross-tree inclusion of scripts (Jonathan Toppins) [2150390]
+- treewide: use get_random_u32() when possible (Jonathan Toppins) [2150390]
+- selftests/bonding: re-add lladdr target test (Jonathan Toppins) [2150390]
+- selftests: bonding: cause oops in bond_rr_gen_slave_id (Jonathan Toppins) [2150390]
+- selftests/bonding: add a test for bonding lladdr target (Jonathan Toppins) [2150390]
+- net: Add tests for bonding and team address list management (Jonathan Toppins) [2150390]
+- net: bonding: Unsync device addresses on ndo_stop (Jonathan Toppins) [2150390]
+- net: bonding: Share lacpdu_mcast_addr definition (Jonathan Toppins) [2150390]
+- Documentation: bonding: clarify supported modes for tlb_dynamic_lb (Jonathan Toppins) [2150390]
+- selftests: include bonding tests into the kselftest infra (Jonathan Toppins) [2150390]
+- bonding: fix reference count leak in balance-alb mode (Jonathan Toppins) [2150390]
+- net:bonding:support balance-alb interface with vlan to bridge (Jonathan Toppins) [2150390]
+- bonding: cleanup bond_create (Jonathan Toppins) [2150390]
+- bonding: netlink error message support for options (Jonathan Toppins) [2150390]
+- bonding: Update layer2 and layer2+3 hash formula documentation (Jonathan Toppins) [2150390]
+- net: bonding: Add support for IPV6 ns/na to balance-alb/balance-tlb mode (Jonathan Toppins) [2150390]
+- net: remove bond_slave_has_mac_rcu() (Jonathan Toppins) [2150390]
+- net: bonding: debug: avoid printing debug logs when bond is not notifying peers (Jonathan Toppins) [2150390]
+- net: bonding: constify and use dev_addr_set() (Jonathan Toppins) [2150390]
+- net: use dev_addr_set() (Jonathan Toppins) [2150390]
+- bonding: remove extraneous definitions from bonding.h (Jonathan Toppins) [2150390]
+- net: bonding: bond_alb: Fix some typos in bond_alb.c (Jonathan Toppins) [2150390]
+- net: bonding: use tabs instead of space for code indent (Jonathan Toppins) [2150390]
+- net: bonding: remove unnecessary braces (Jonathan Toppins) [2150390]
+- net: bonding: fix code indent for conditional statements (Jonathan Toppins) [2150390]
+- net: bonding: add some required blank lines (Jonathan Toppins) [2150390]
+- docs: networking: bonding.rst Fix a typo in bonding.rst (Jonathan Toppins) [2150390]
+- docs: networking: bonding.rst resources section cleanup (Jonathan Toppins) [2150390]
+- bonding: Replace zero-length array with flexible-array member (Jonathan Toppins) [2150390]
+- include/net/bond_3ad: Simplify the code by using the ARRAY_SIZE (Jonathan Toppins) [2150390]
+- vmxnet3: use correct intrConf reference when using extended queues (Izabela Bakollari) [2150917]
+- vmxnet3: correctly report encapsulated LRO packet (Izabela Bakollari) [2150917]
+- net: move from strlcpy with unused retval to strscpy (Izabela Bakollari) [2150917]
+- vmxnet3: Implement ethtool's get_channels command (Izabela Bakollari) [2150917]
+- vmxnet3: Record queue number to incoming packets (Izabela Bakollari) [2150917]
+- [rt] Revert "mm/memcg: disable threshold event handlers on PREEMPT_RT" (Chris White) [2152035]
+- s390/pci: allow zPCI zbus without a function zero (Tobias Huschle) [2043829]
+- PCI: Extend isolated function probing to s390 (Tobias Huschle) [2043829]
+- PCI: Move jailhouse's isolated function handling to pci_scan_slot() (Tobias Huschle) [2043829]
+- PCI: Split out next_ari_fn() from next_fn() (Tobias Huschle) [2043829]
+- PCI: Clean up pci_scan_slot() (Tobias Huschle) [2043829]
+- KVM: selftests: Build the memslot tests for arm64 (Gavin Shan) [2134650]
+- KVM: selftests: memslot_perf_test: Report optimal memory slots (Gavin Shan) [2134650]
+- KVM: selftests: memslot_perf_test: Consolidate memory (Gavin Shan) [2134650]
+- KVM: selftests: memslot_perf_test: Support variable guest page size (Gavin Shan) [2134650]
+- KVM: selftests: memslot_perf_test: Probe memory slots for once (Gavin Shan) [2134650]
+- KVM: selftests: memslot_perf_test: Consolidate loop conditions in prepare_vm() (Gavin Shan) [2134650]
+- KVM: selftests: memslot_perf_test: Use data->nslots in prepare_vm() (Gavin Shan) [2134650]
+- KVM: selftests: Make memslot_perf_test arch independent (Gavin Shan) [2134650]
+- selftests: netfilter: Fix and review rpath.sh (Phil Sutter) [1961152]
+- netfilter: Use l3mdev flow key when re-routing mangled packets (Phil Sutter) [1961152]
+- netfilter: Update ip6_route_me_harder to consider L3 domain (Phil Sutter) [1961152]
+- netfilter: Dissect flow after packet mangling (Phil Sutter) [1961152]
+- netfilter: rpfilter/fib: Populate flowic_l3mdev field (Phil Sutter) [1961152]
+- selftests: netfilter: Test reverse path filtering (Phil Sutter) [1961152]
+- netfilter: nft_fib: Fix for rpath check with VRF devices (Phil Sutter) [1961152]
+- net: seg6: fix seg6_lookup_any_nexthop() to handle VRFs using flowi_l3mdev (Phil Sutter) [1961152]
+- net: Handle l3mdev in ip_tunnel_init_flow (Phil Sutter) [1961152]
+- xfrm: Pass flowi_oif or l3mdev as oif to xfrm_dst_lookup (Phil Sutter) [1961152]
+- net: Add l3mdev index to flow struct and avoid oif reset for port devices (Phil Sutter) [1961152]
+- l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using netdev_master_upper_dev_get_rcu (Phil Sutter) [1961152]
+- l3mdev: add function to retreive upper master (Phil Sutter) [1961152]
+- sfc: move deprecation message to sfc_siena (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: add entries for new CONFIG_SFC_SIENA* configs (Íñigo Huguet) [2112205 2136107]
+- sfc: Fix an error handling path in efx_pci_probe() (Íñigo Huguet) [2112205]
+- sfc: support PTP over Ethernet (Íñigo Huguet) [2112205 2065017]
+- sfc: support PTP over IPv6/UDP (Íñigo Huguet) [2112205 2065017]
+- sfc: allow more flexible way of adding filters for PTP (Íñigo Huguet) [2112205 2065017]
+- sfc: correct filter_table_remove method for EF10 PFs (Íñigo Huguet) [2112205]
+- sfc/siena: fix null pointer dereference in efx_hard_start_xmit (Íñigo Huguet) [2112205]
+- sfc/siena: fix TX channel offset when using legacy interrupts (Íñigo Huguet) [2112205]
+- sfc: implement ethtool get/set RX ring size for EF100 reps (Íñigo Huguet) [2112205]
+- sfc: use a dynamic m-port for representor RX and set it promisc (Íñigo Huguet) [2112205]
+- sfc: move table locking into filter_table_{probe,remove} methods (Íñigo Huguet) [2112205]
+- sfc: insert default MAE rules to connect VFs to representors (Íñigo Huguet) [2112205]
+- sfc: receive packets from EF100 VFs into representors (Íñigo Huguet) [2112205]
+- sfc: check ef100 RX packets are from the wire (Íñigo Huguet) [2112205]
+- sfc: determine wire m-port at EF100 PF probe time (Íñigo Huguet) [2112205]
+- sfc: ef100 representor RX top half (Íñigo Huguet) [2112205]
+- sfc: ef100 representor RX NAPI poll (Íñigo Huguet) [2112205]
+- sfc: plumb ef100 representor stats (Íñigo Huguet) [2112205]
+- sfc: disable softirqs for ptp TX (Íñigo Huguet) [2112205]
+- sfc/siena: fix repeated words in comments (Íñigo Huguet) [2112205]
+- sfc: attach/detach EF100 representors along with their owning PF (Íñigo Huguet) [2112205]
+- sfc: hook up ef100 representor TX (Íñigo Huguet) [2112205]
+- sfc: support passing a representor to the EF100 TX path (Íñigo Huguet) [2112205]
+- sfc: determine representee m-port for EF100 representors (Íñigo Huguet) [2112205]
+- sfc: phys port/switch identification for ef100 reps (Íñigo Huguet) [2112205]
+- sfc: add basic ethtool ops to ef100 reps (Íñigo Huguet) [2112205]
+- sfc: add skeleton ef100 VF representors (Íñigo Huguet) [2112205]
+- sfc: detect ef100 MAE admin privilege/capability at probe time (Íñigo Huguet) [2112205]
+- sfc: update EF100 register descriptions (Íñigo Huguet) [2112205]
+- sfc: update MCDI protocol headers (Íñigo Huguet) [2112205]
+- sfc/siena: Use the bitmap API to allocate bitmaps (Íñigo Huguet) [2112205]
+- sfc: Separate netdev probe/remove from PCI probe/remove (Íñigo Huguet) [2112205]
+- sfc: replace function name in string with __func__ (Íñigo Huguet) [2112205]
+- sfc: Unsplit literal string. (Íñigo Huguet) [2112205]
+- sfc: Move EF100 efx_nic_type structs to the end of the file (Íñigo Huguet) [2112205]
+- sfc: Separate efx_nic memory from net_device memory (Íñigo Huguet) [2112205]
+- sfc: Encapsulate access to netdev_priv() (Íñigo Huguet) [2112205]
+- sfc: Change BUG_ON to WARN_ON and recovery code. (Íñigo Huguet) [2112205]
+- sfc: Remove netdev init from efx_init_struct (Íñigo Huguet) [2112205]
+- sfc: Add a PROBED state for EF100 VDPA use. (Íñigo Huguet) [2112205]
+- sfc: Split STATE_READY in to STATE_NET_DOWN and STATE_NET_UP. (Íñigo Huguet) [2112205]
+- sfc: fix repeated words in comments (Íñigo Huguet) [2112205]
+- sfc: siena: fix repeated words in comments (Íñigo Huguet) [2112205]
+- sfc/siena: Fix typo in comment (Íñigo Huguet) [2112205]
+- sfc: Fix typo in comment (Íñigo Huguet) [2112205]
+- sfc/siena: fix wrong tx channel offset with efx_separate_tx_channels (Íñigo Huguet) [2112205]
+- sfc/siena: fix considering that all channels have TX queues (Íñigo Huguet) [2112205]
+- sfc/siena: Remove duplicate check on segments (Íñigo Huguet) [2112205 2136107]
+- sfc: siena: Have a unique wrapper ifndef for efx channels header (Íñigo Huguet) [2112205 2136107]
+- eth: sfc: remove remnants of the out-of-tree napi_weight module param (Íñigo Huguet) [2112205]
+- sfc: siena: Fix Kconfig dependencies (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Reinstate SRIOV init/fini function calls (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Make PTP and reset support specific for Siena (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Make MCDI logging support specific for Siena (Íñigo Huguet) [2112205 2136107]
+- siena: Make HWMON support specific for Siena (Íñigo Huguet) [2112205 2136107]
+- siena: Make SRIOV support specific for Siena (Íñigo Huguet) [2112205 2136107]
+- siena: Make MTD support specific for Siena (Íñigo Huguet) [2112205 2136107]
+- sfc: Add a basic Siena module (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Inline functions in sriov.h to avoid conflicts with sfc (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Rename functions in nic_common.h to avoid conflicts with sfc (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Rename functions in mcdi headers to avoid conflicts with sfc (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Rename peripheral functions to avoid conflicts with sfc (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Rename RX/TX functions to avoid conflicts with sfc (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Rename functions in efx headers to avoid conflicts with sfc (Íñigo Huguet) [2112205 2136107]
+- sfc/siena: Remove build references to missing functionality (Íñigo Huguet) [2112205 2136107]
+- sfc: Copy shared files needed for Siena (part 2) (Íñigo Huguet) [2112205 2136107]
+- sfc: Copy shared files needed for Siena (part 1) (Íñigo Huguet) [2112205 2136107]
+- sfc: Move Siena specific files (Íñigo Huguet) [2112205 2136107]
+- sfc: Copy a subset of mcdi_pcol.h to siena (Íñigo Huguet) [2112205 2136107]
+- sfc: Disable Siena support (Íñigo Huguet) [2112205 2136107]
+- sfc: add EF100 VF support via a write to sriov_numvfs (Íñigo Huguet) [2112205]
+- sfc: Remove global definition of efx_reset_type_names (Íñigo Huguet) [2112205]
+- sfc: Remove duplicate definition of efx_xmit_done (Íñigo Huguet) [2112205]
+- sfc: efx_default_channel_type APIs can be static (Íñigo Huguet) [2112205]
+- sfc: Fix spelling mistake "writting" -> "writing" (Íñigo Huguet) [2112205]
+- sfc: ef10: Fix assigning negative value to unsigned variable (Íñigo Huguet) [2112205]
+- sfc: use hardware tx timestamps for more than PTP (Íñigo Huguet) [2112205 2065017]
+- net: ethernet: sfc: Make subdir logic consistent with other vendors (Íñigo Huguet) [2112205 2136107]
+- hugetlbfs: fix mount mode command line processing (Bill O'Donnell) [2148876]
+- igc: Correct the launchtime offset (Corinna Vinschen) [2103954]
+- net: Remove the obsolte u64_stats_fetch_*_irq() users (drivers). (Corinna Vinschen) [2103954]
+- igc: Remove IGC_MDIC_INT_EN definition (Corinna Vinschen) [2103954]
+- igc: Remove forced_speed_duplex value (Corinna Vinschen) [2103954]
+- igc: Remove MSI-X PBA Clear register (Corinna Vinschen) [2103954]
+- igc: Lift TAPRIO schedule restriction (Corinna Vinschen) [2103954]
+- wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() (Wander Lairson Costa) [2150964] {CVE-2022-3628}
+- net: ethernet: move from strlcpy with unused retval to strscpy (Corinna Vinschen) [2103949]
+- tipc: call tipc_lxc_xmit without holding node_read_lock (Xin Long) [2141640]
+- mptcp: fix sleep in atomic at close time (Davide Caratti) [2150361]
+- mptcp: don't orphan ssk in mptcp_close() (Davide Caratti) [2150361]
+- net: Avoid overwriting valid skb->napi_id (Antoine Tenart) [2142593]
+- x86/microcode/AMD: Apply the patch early on every logical thread (Waiman Long) [2139856]
+- x86/bugs: Enable STIBP for IBPB mitigated RETBleed (Waiman Long) [2139856]
+- x86/bugs: Add "unknown" reporting for MMIO Stale Data (Waiman Long) [2139856]
+- tracing: Use a copy of the va_list for __assign_vstr() (Íñigo Huguet) [2143356]
+- tracing/events: Add __vstring() and __assign_vstr() helper macros (Íñigo Huguet) [2143356]
+- rtnetlink: add IFLA_PARENT_[DEV|DEV_BUS]_NAME (Jose Ignacio Tornos Martinez) [2144853]
+- rtnetlink: add alloc() method to rtnl_link_ops (Jose Ignacio Tornos Martinez) [2144853]
+- ipv6: Fix data races around sk->sk_prot. (Guillaume Nault) [2144805] {CVE-2022-3567}
+- ipv6: annotate some data-races around sk->sk_prot (Guillaume Nault) [2144805] {CVE-2022-3567}
+- ipv6: use indirect call wrappers for {tcp, udpv6}_{recv, send}msg() (Guillaume Nault) [2144805] {CVE-2022-3567}
+- mm/mremap: hold the rmap lock in write mode when moving page table entries. (Waiman Long) [2140945] {CVE-2022-41222}
+- mm/mremap: use pmd/pud_poplulate to update page table entries (Waiman Long) [2140945] {CVE-2022-41222}
+- mm/mremap: don't enable optimized PUD move if page table levels is 2 (Waiman Long) [2140945] {CVE-2022-41222}
+- mm/mremap: convert huge PUD move to separate helper (Waiman Long) [2140945] {CVE-2022-41222}
+- mm/mremap: fix BUILD_BUG_ON() error in get_extent (Waiman Long) [2140945] {CVE-2022-41222}
+- mm/mremap.c: fix extent calculation (Waiman Long) [2140945] {CVE-2022-41222}
+- x86: mremap speedup - Enable HAVE_MOVE_PUD (Waiman Long) [2140945] {CVE-2022-41222}
+- mm: speedup mremap on 1GB or larger regions (Waiman Long) [2140945] {CVE-2022-41222}
+- mm/mremap: start addresses are properly aligned (Waiman Long) [2140945] {CVE-2022-41222}
+- mm/mremap: calculate extent in one place (Waiman Long) [2140945] {CVE-2022-41222}
+- mm/mremap: it is sure to have enough space when extent meets requirement (Waiman Long) [2140945] {CVE-2022-41222}
+
+* Mon Dec 19 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-446.el8]
+- irqchip/gic, gic-v3: Make SGIs use handle_percpu_devid_irq() (Charles Mirabile) [2133892]
+- irqchip/gic-common: Don't enable SGIs by default (Charles Mirabile) [2133892]
+- irqchip/gic: Configure SGIs as standard interrupts (Charles Mirabile) [2133892]
+- irqchip/gic: Refactor SMP configuration (Charles Mirabile) [2133892]
+- irqchip/gic-v3: Configure SGIs as standard interrupts (Charles Mirabile) [2133892]
+- irqchip/gic-v3: Describe the SGI range (Charles Mirabile) [2133892]
+- arm64: Allow IPIs to be handled as normal interrupts (Charles Mirabile) [2133892]
+- irqchip/gic, gic-v3: Prevent GSI to SGI translations (Charles Mirabile) [2133892]
+- Workaround to enable support for IPI (Charles Mirabile) [2133892]
+- net: ethernet: move from strlcpy with unused retval to strscpy (Ken Cox) [2112182]
+- tg3: Disable tg3 device on system reboot to avoid triggering AER (Ken Cox) [2112182]
+- aquantia: Do not purge addresses when setting the number of rings (Izabela Bakollari) [2122571]
+- openvswitch: add nf_ct_is_confirmed check before assigning the helper (Antoine Tenart) [2135414]
+- net: openvswitch: allow conntrack in non-initial user namespace (Antoine Tenart) [2135414]
+- net: openvswitch: allow metering in non-initial user namespace (Antoine Tenart) [2135414]
+- openvswitch: Change the return type for vport_ops.send function hook to int (Antoine Tenart) [2135414]
+- net: openvswitch: fix repeated words in comments (Antoine Tenart) [2135414]
+- openvswitch: add OVS_DP_ATTR_PER_CPU_PIDS to get requests (Antoine Tenart) [2135414]
+- openvswitch: allow specifying ifindex of new interfaces (Antoine Tenart) [2135414]
+- openvswitch: move from strlcpy with unused retval to strscpy (Antoine Tenart) [2135414]
+- openvswitch: Fix overreporting of drops in dropwatch (Antoine Tenart) [2135414]
+- openvswitch: Fix double reporting of drops in dropwatch (Antoine Tenart) [2135414]
+- openvswitch: fix memory leak at failed datapath creation (Antoine Tenart) [2135414]
+- net: remove noblock parameter from skb_recv_datagram() (Íñigo Huguet) [2143359]
+- i40e: Fix error handling in i40e_init_module() (Stefan Assmann) [2103661]
+- i40e: Add appropriate error message logged for incorrect duplex setting (Stefan Assmann) [2103661]
+- i40e: Add i40e_napi_poll tracepoint (Stefan Assmann) [2103661]
+- i40e: Record number of RXes cleaned during NAPI (Stefan Assmann) [2103661]
+- i40e: Record number TXes cleaned during NAPI (Stefan Assmann) [2103661]
+- i40e: Store the irq number in i40e_q_vector (Stefan Assmann) [2103661]
+- ptp: introduce helpers to adjust by scaled parts per million (Stefan Assmann) [2103661]
+- net: Remove the obsolte u64_stats_fetch_*_irq() users (drivers). (Stefan Assmann) [2103661]
+- i40e: Fix flow-type by setting GL_HASH_INSET registers (Stefan Assmann) [2103661]
+- i40e: Fix ethtool rx-flow-hash setting for X722 (Stefan Assmann) [2103661]
+- i40e: Fix ADQ rate limiting for PF (Stefan Assmann) [2103661]
+- i40e: add description and modify interrupts configuration procedure (Stefan Assmann) [2103661]
+- i40e: Add basic support for I710 devices (Stefan Assmann) [2103661]
+- net: ethernet: move from strlcpy with unused retval to strscpy (Stefan Assmann) [2103661]
+- i40e: Fix incorrect address type for IPv6 flow rules (Stefan Assmann) [2103661]
+- i40e: Fix to stop tx_timeout recovery if GLOBR fails (Stefan Assmann) [2103661]
+- i40e: convert .adjfreq to .adjfine (Stefan Assmann) [2103661]
+- i40e: use mul_u64_u64_div_u64 for PTP frequency calculation (Stefan Assmann) [2103661]
+- i40e: Fix interface init with MSI interrupts (no MSI-X) (Stefan Assmann) [2103661]
+- i40e: Refactor tc mqprio checks (Stefan Assmann) [2103661]
+- i40e: Fix erroneous adapter reinitialization during recovery process (Stefan Assmann) [2103661]
+- i40e: Fix VF's MAC Address change on VM (Stefan Assmann) [2103661]
+- i40e: Fix dropped jumbo frames statistics (Stefan Assmann) [2103661]
+- intel/i40e:fix repeated words in comments (Stefan Assmann) [2103661]
+- intel: remove unused macros (Stefan Assmann) [2103661]
+- i40e: read the XDP program once per NAPI (Stefan Assmann) [2103661]
+- intel/i40e: delete if NULL check before dev_kfree_skb (Stefan Assmann) [2103661]
+- i40e: Remove unnecessary synchronize_irq() before free_irq() (Stefan Assmann) [2103661]
+- i40e: Add support for ethtool -s <interface> speed <speed in Mb> (Stefan Assmann) [2103661]
+- i40e: Add VF VLAN pruning (Stefan Assmann) [2103661]
+- xsk: Wipe out dead zero_copy_allocator declarations (Stefan Assmann) [2103661]
+- gpio: amdpt: add new device ID and 24-pin support (Prarit Bhargava) [2097868]
+- platform/x86/intel: pmc/core: Add Raptor Lake support to pmc core driver (Prarit Bhargava) [2076732]
+- HID: hyperv: fix possible memory leak in mousevsc_probe() (Mohammed Gamal) [2139468]
+- HID: hyperv: Correctly access fields declared as __le16 (Mohammed Gamal) [2139468]
+- Drivers: hv: vmbus: fix possible memory leak in vmbus_device_register() (Mohammed Gamal) [2139473]
+- Drivers: hv: vmbus: fix double free in the error path of vmbus_add_channel_work() (Mohammed Gamal) [2139473]
+- Drivers: hv: fix repeated words in comments (Mohammed Gamal) [2139473]
+- Drivers: hv: vmbus: Split memcpy of flex-array (Mohammed Gamal) [2139473]
+- Drivers: hv: vmbus: Don't wait for the ACPI device upon initialization (Mohammed Gamal) [2139473]
+- Drivers: hv: vmbus: Use PCI_VENDOR_ID_MICROSOFT for better discoverability (Mohammed Gamal) [2139473]
+- PCI: Move PCI_VENDOR_ID_MICROSOFT/PCI_DEVICE_ID_HYPERV_VIDEO definitions to pci_ids.h (Mohammed Gamal) [2139473]
+- Drivers: hv: vmbus: Fix kernel-doc (Mohammed Gamal) [2139473]
+- Drivers: hv: vmbus: Optimize vmbus_on_event (Mohammed Gamal) [2139473]
+- Drivers: hv: Never allocate anything besides framebuffer from framebuffer memory region (Mohammed Gamal) [2139473]
+- Drivers: hv: Always reserve framebuffer region for Gen1 VMs (Mohammed Gamal) [2139473]
+- Drivers: hv: remove duplicate word in a comment (Mohammed Gamal) [2139473]
+- Drivers: hv: Create debugfs file with hyper-v balloon usage information (Mohammed Gamal) [2139473]
+- Drivers: hv: vm_bus: Handle vmbus rescind calls after vmbus is suspended (Mohammed Gamal) [2139473]
+- scsi: storvsc: remove an extraneous "to" in a comment (Cathy Avery) [2143320]
+- Drivers: hv: vmbus: Optimize vmbus_on_event (Cathy Avery) [2143320]
+- scsi: storvsc: Drop DID_TARGET_FAILURE use (Cathy Avery) [2143320]
+- scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq (Cathy Avery) [2143320]
+- scsi: storvsc: Correct reporting of Hyper-V I/O size limits (Cathy Avery) [2143320]
+- scsi: storvsc: Removing Pre Win8 related logic (Cathy Avery) [2143320]
+- scsi: storvsc: Fix typo in comment (Cathy Avery) [2143320]
+- scsi: storvsc: Remove support for Hyper-V 2008 and 2008R2/Win7 (Cathy Avery) [2143320]
+- vdpa/mlx5: re-create forwarding rules after mac modified (Laurent Vivier) [2145136]
+- ipv6: Fix crash when IPv6 is administratively disabled (Guillaume Nault) [2140779]
+- raw: fix a typo in raw_icmp_error() (Guillaume Nault) [2140779]
+- raw: remove unused variables from raw6_icmp_error() (Guillaume Nault) [2140779]
+- raw: complete rcu conversion (Guillaume Nault) [2140779]
+- raw: Use helpers for the hlist_nulls variant. (Guillaume Nault) [2140779]
+- raw: Fix mixed declarations error in raw_icmp_error(). (Guillaume Nault) [2140779]
+- raw: convert raw sockets to RCU (Guillaume Nault) [2140779]
+- raw: use more conventional iterators (Guillaume Nault) [2140779]
+- raw: Add missing annotations to raw_seq_start() and raw_seq_stop() (Guillaume Nault) [2140779]
+- net: ethernet: move from strlcpy with unused retval to strscpy (Ken Cox) [2103941]
+- e1000e: convert .adjfreq to .adjfine (Ken Cox) [2103941]
+- e1000e: remove unnecessary range check in e1000e_phc_adjfreq (Ken Cox) [2103941]
+- Revert "e1000e: Fix possible HW unit hang after an s0ix exit" (Ken Cox) [2103941]
+- e1000e: Enable GPT clock before sending message to CSME (Ken Cox) [2103941]
+- intel/e1000e:fix repeated words in comments (Ken Cox) [2103941]
+- intel: remove unused macros (Ken Cox) [2103941]
+- net: move netif_set_gso_max helpers (Ivan Vecera) [2137564]
+- net: make drivers set the TSO limit not the GSO limit (Ivan Vecera) [2137564]
+- net: don't allow user space to lift the device limits (Ivan Vecera) [2137564]
+- net: add netif_inherit_tso_max() (Ivan Vecera) [2137564]
+- net: extract a few internals from netdevice.h (Ivan Vecera) [2137564]
+- net: unexport a handful of dev_* functions (Ivan Vecera) [2137564]
+- bpf: Fix extable address check. (Felix Maurer) [2138532]
+- bpf, x64: Factor out emission of REX byte in more cases (Felix Maurer) [2138532]
+- bpf: Support dual-stack sockets in bpf_tcp_check_syncookie (Felix Maurer) [2138532]
+- bpf: Fix extable fixup offset. (Felix Maurer) [2138532]
+- bpf: Fix the off-by-two error in range markings (Felix Maurer) [2138532]
+- bpf: Fix potential race in tail call compatibility check (Felix Maurer) [2138532]
+- bpf: Fix possible out of bound write in narrow load handling (Felix Maurer) [2138532]
+- bpf: Fix potential memleak and UAF in the verifier. (Felix Maurer) [2138532]
+- KVM: s390: vsie: Fix the initialization of the epoch extension (epdx) field (Thomas Huth) [2151854]
+- PM: core: Remove static qualifier in DEFINE_SIMPLE_DEV_PM_OPS macro (Íñigo Huguet) [2143354]
+- PM: core: Add new *_PM_OPS macros, deprecate old ones (Íñigo Huguet) [2143354]
+- PM: Make *_DEV_PM_OPS macros use __maybe_unused (Íñigo Huguet) [2143354]
+- PM: core: Redefine pm_ptr() macro (Íñigo Huguet) [2143354]
+- linux/kconfig.h: replace IF_ENABLED() with PTR_IF() in <linux/kernel.h> (Íñigo Huguet) [2143354]
+- net: Remove unused inline function sk_nulls_node_init() (Guillaume Nault) [2143239]
+- ping: convert to RCU lookups, get rid of rwlock (Guillaume Nault) [2143239]
+- mm/cgroup/reclaim: fix dirty pages throttling on cgroup v1 (Waiman Long) [2149544]
+- mm: vmscan: remove deadlock due to throttling failing to make progress (Waiman Long) [2149544]
+- mm: vmscan: reduce throttling due to a failure to make progress -fix (Waiman Long) [2149544]
+- mm: vmscan: Reduce throttling due to a failure to make progress (Waiman Long) [2149544]
+- mm/vmscan: delay waking of tasks throttled on NOPROGRESS (Waiman Long) [2149544]
+- mm/vmscan: increase the timeout if page reclaim is not making progress (Waiman Long) [2149544]
+- mm/vmscan: centralise timeout values for reclaim_throttle (Waiman Long) [2149544]
+- mm/page_alloc: remove the throttling logic from the page allocator (Waiman Long) [2149544]
+- mm/writeback: throttle based on page writeback instead of congestion (Waiman Long) [2149544]
+- mm/vmscan: throttle reclaim when no progress is being made (Waiman Long) [2149544]
+- mm/vmscan: throttle reclaim and compaction when too may pages are isolated (Waiman Long) [2149544]
+- mm/vmscan: throttle reclaim until some writeback completes if congested (Waiman Long) [2149544]
+- mm/vmscan.c: delete or fix duplicated words (Waiman Long) [2149544]
+- powerpc/pseries/vas: Add VAS IRQ primary handler (Mamatha Inamdar) [2131675]
+- powerpc: Ignore DSI error caused by the copy/paste instruction (Mamatha Inamdar) [2131675]
+- powerpc/pseries: Move vas_migration_handler early during migration (Mamatha Inamdar) [2131675]
+- vt: drop old FONT ioctls (Wander Lairson Costa) [2109164] {CVE-2021-33656}
+
+* Wed Dec 14 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-445.el8]
+- x86/mce: Reduce number of machine checks taken during recovery (Prarit Bhargava) [2104388]
+- scsi: storvsc: Fix handling of srb_status and capacity change events (Mohammed Gamal) [2139728]
+- clocksource: hyper-v: unexport __init-annotated hv_init_clocksource() (Mohammed Gamal) [2139463]
+- hv_netvsc: Fix race between VF offering and VF association message from host (Mohammed Gamal) [2139475]
+- sbitmap: fix lockup while swapping (Ming Lei) [2140214]
+- sbitmap: fix batched wait_cnt accounting (Ming Lei) [2140214]
+- sbitmap: Avoid leaving waitqueue in invalid state in __sbq_wake_up() (Ming Lei) [2140214]
+- sbitmap: fix possible io hung due to lost wakeup (Ming Lei) [2140214]
+- sbitmap: add helper to clear a batch of tags (Ming Lei) [2140214]
+- x86/hyperv: Restore VP assist page after cpu offlining/onlining (Mohammed Gamal) [2139454]
+- clocksource/drivers/hyperv: add data structure for reference TSC MSR (Mohammed Gamal) [2139454]
+- x86/hyperv: fix root partition faults when writing to VP assist page MSR (Mohammed Gamal) [2139454]
+- x86/hyperv: fix invalid writes to MSRs during root partition kexec (Mohammed Gamal) [2139454]
+- x86/hyperv: Remove BUG_ON() for kmap_local_page() (Mohammed Gamal) [2139454]
+- x86/hyperv: Disable hardlockup detector by default in Hyper-V guests (Mohammed Gamal) [2139454]
+- x86/hyperv: Update 'struct hv_enlightened_vmcs' definition (Mohammed Gamal) [2139454]
+- x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition (Mohammed Gamal) [2139454]
+- x86/hyperv: Replace kmap() with kmap_local_page() (Mohammed Gamal) [2139454]
+- hyperv: simplify and rename generate_guest_id (Mohammed Gamal) [2139454]
+- x86/Hyper-V: Add SEV negotiate protocol support in Isolation VM (Mohammed Gamal) [2139454]
+- x86/sev: Define the Linux-specific guest termination reasons (Mohammed Gamal) [2139454]
+- x86/sev: Shorten GHCB terminate macro names (Mohammed Gamal) [2139454]
+- x86/sev: Save the negotiated GHCB version (Mohammed Gamal) [2139454]
+- locking: Add __sched to semaphore functions (Waiman Long) [2141429]
+- locking/rwsem: Disable preemption while trying for rwsem lock (Waiman Long) [2141429]
+- locking/percpu-rwsem: Add percpu_is_write_locked() and percpu_is_read_locked() (Waiman Long) [2141429]
+- locking/rwsem: Conditionally wake waiters in reader/writer slowpaths (Waiman Long) [2141429]
+- locking: Mark racy reads of owner->on_cpu (Waiman Long) [2141429]
+- locking: Make owner_on_cpu() into <linux/sched.h> (Waiman Long) [2141429]
+- locking/rwsem: Optimize down_read_trylock() under highly contended case (Waiman Long) [2141429]
+- locking/rwsem: Fix comments about reader optimistic lock stealing conditions (Waiman Long) [2141429]
+- locking/rwsem: Disable preemption for spinning region (Waiman Long) [2141429]
+- locking: Remove rcu_read_{,un}lock() for preempt_{dis,en}able() (Waiman Long) [2141429]
+- NFSD: Mark exports of NFS as unsupported (Benjamin Coddington) [2150902]
+- fuse: lock inode unconditionally in fuse_fallocate() (Miklos Szeredi) [2110883]
+- fuse: add file_modified() to fallocate (Miklos Szeredi) [2110883]
+- mei: me: add adler lake point S DID (Prarit Bhargava) [2141602]
+- ocfs2/dlm: move BITS_TO_BYTES() to bitops.h for wider use (Izabela Bakollari) [2144858]
+- libnvdimm/namespace: Fix visibility of namespace resource attribute (Jeff Moyer) [2016347]
+- PCI: hv: Only reuse existing IRTE allocation for Multi-MSI (Mohammed Gamal) [2139458]
+- PCI: hv: Fix the definition of vector in hv_compose_msi_msg() (Mohammed Gamal) [2139458]
+- PCI: hv: Take a const cpumask in hv_compose_msi_req_get_cpu() (Mohammed Gamal) [2139458]
+- PCI: hv: Fix synchronization between channel callback and hv_pci_bus_exit() (Mohammed Gamal) [2139458]
+- PCI: hv: Add validation for untrusted Hyper-V values (Mohammed Gamal) [2139458]
+- PCI: hv: Fix interrupt mapping for multi-MSI (Mohammed Gamal) [2139458]
+- PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() (Mohammed Gamal) [2139458]
+- PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI (Mohammed Gamal) [2139458]
+- PCI: hv: Fix synchronization between channel callback and hv_compose_msi_msg() (Mohammed Gamal) [2139458]
+- PCI: hv: Use vmbus_requestor to generate transaction IDs for VMbus hardening (Mohammed Gamal) [2139458]
+- PCI: hv: Fix multi-MSI to allow more than one MSI vector (Mohammed Gamal) [2139458]
+- net: mana: Add rmb after checking owner bits (Mohammed Gamal) [2139462]
+- net: mana: Add support of XDP_REDIRECT action (Mohammed Gamal) [2139462]
+- net: mana: Add the Linux MANA PF driver (Mohammed Gamal) [2139462]
+- NFSD: Protect against send buffer overflow in NFSv3 READ (Scott Mayhew) [2141774] {CVE-2022-43945}
+- NFSD: Protect against send buffer overflow in NFSv2 READ (Scott Mayhew) [2141774] {CVE-2022-43945}
+- NFSD: Protect against send buffer overflow in NFSv3 READDIR (Scott Mayhew) [2141774] {CVE-2022-43945}
+- NFSD: Protect against send buffer overflow in NFSv2 READDIR (Scott Mayhew) [2141774] {CVE-2022-43945}
+- SUNRPC: Fix svcxdr_init_encode's buflen calculation (Scott Mayhew) [2141774] {CVE-2022-43945}
+- SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation (Scott Mayhew) [2141774] {CVE-2022-43945}
+- KVM: VMX: fully disable SGX if SECONDARY_EXEC_ENCLS_EXITING unavailable (Emanuele Giuseppe Esposito) [2127128]
+- cgroup/cpuset: Reduce cpuset_rwsem writer latency (Waiman Long) [2149031]
+- rcu/exp: Mark current CPU as exp-QS in IPI loop second pass (Waiman Long) [2149031]
+- rcu: Always inline rcu_dynticks_task*_{enter,exit}() (Waiman Long) [2149031]
+- rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() (Waiman Long) [2149031]
+- rcu: Fix macro name CONFIG_TASKS_RCU_TRACE (Waiman Long) [2149031]
+- rcu: Fix stall-warning deadlock due to non-release of rcu_node ->lock (Waiman Long) [2149031]
+- rcu: Fix to include first blocked task in stall warning (Waiman Long) [2149031]
+- cgroup: Use cgroup_attach_{lock,unlock}() from cgroup_attach_task_all() (Waiman Long) [2149031]
+- cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() (Waiman Long) [2149031]
+- cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock (Waiman Long) [2149031]
+- cgroup: Elide write-locking threadgroup_rwsem when updating csses on an empty subtree (Waiman Long) [2149031]
+- cgroup/cpuset: Fix a race between cpuset_attach() and cpu hotplug (Waiman Long) [2149031]
+- cgroup: reduce dependency on cgroup_mutex (Waiman Long) [2149031]
+
+* Mon Dec 12 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-444.el8]
+- drm/i915: fix TLB invalidation for Gen12 video and compute engines (Wander Lairson Costa) [2148150] {CVE-2022-4139}
+- redhat/configs: Set CONFIG_X86_AMD_PSTATE to 'm' (Prarit Bhargava) [2145246]
+- bonding: uninitialized variable in bond_miimon_inspect() (Jonathan Toppins) [1973124]
+- bonding: fix link recovery in mode 2 when updelay is nonzero (Jonathan Toppins) [1973124]
+- RHEL: ALSA: update configuration (Jaroslav Kysela) [2125544]
+- RHEL: ALSA: fix compilation issues (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: pci-mtl: fix firmware name (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Correct pin configs for ASUS G533Z (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 (Jaroslav Kysela) [2125544]
+- ALSA: ac97: Use snd_ctl_rename() to rename a control (Jaroslav Kysela) [2125544]
+- ALSA: ca0106: Use snd_ctl_rename() to rename a control (Jaroslav Kysela) [2125544]
+- ALSA: emu10k1: Use snd_ctl_rename() to rename a control (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Use snd_ctl_rename() to rename a control (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Use snd_ctl_rename() to rename a control (Jaroslav Kysela) [2125544]
+- ALSA: control: add snd_ctl_rename() (Jaroslav Kysela) [2125544]
+- ALSA: hda/hdmi: Use only dynamic PCM device allocation (Jaroslav Kysela) [2125544]
+- regmap: add reg_sequence helpers (Jaroslav Kysela) [2125544]
+- regmap: fix the kerneldoc for regmap_test_bits() (Jaroslav Kysela) [2125544]
+- regmap: provide helpers for simple bit operations (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Free the ida when IPC fails in sof_ipc4_widget_setup() (Jaroslav Kysela) [2125544]
+- ASoC: tlv320aic31xx: Handle BCLK set as PLL input configuration (Jaroslav Kysela) [2125544]
+- ASoC: test-component: Migrate to new style legacy DAI naming flag (Jaroslav Kysela) [2125544]
+- ASoC: tlv320aic31xx: Add support for pll_r coefficient (Jaroslav Kysela) [2125544]
+- ASoC: ssm4567: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: rk3328: fix disabling mclk on pclk probe failure (Jaroslav Kysela) [2125544]
+- ASoC: pcm3060: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: cs42l42: remove redundant test (Jaroslav Kysela) [2125544]
+- ALSA: ppc: beep: fix clang -Wimplicit-fallthrough (Jaroslav Kysela) [2125544]
+- ASoC: soc-component: Add comment for the endianness flag (Jaroslav Kysela) [2125544]
+- ASoC: codecs: wsa881x: handle timeouts in resume path (Jaroslav Kysela) [2125544]
+- ASoC: wsa881x: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: codecs: wsa881x: add runtime pm support (Jaroslav Kysela) [2125544]
+- ASoC: wm_adsp: Fix event generation for wm_adsp_fw_put() (Jaroslav Kysela) [2125544]
+- ASoC: wm_adsp: Minor clean and redundant code removal (Jaroslav Kysela) [2125544]
+- ASoC: wm_adsp: Compressed stream DSP memory structs should be __packed (Jaroslav Kysela) [2125544]
+- ASoC: wm8998: Fix event generation for input mux (Jaroslav Kysela) [2125544]
+- ASoC: arizona: Fix a wrong free in wm8997_probe (Jaroslav Kysela) [2125544]
+- ASoC: wm8962: Allow switching between analog and digital inputs (Jaroslav Kysela) [2125544]
+- ASoC: wm8960: Fix clock configuration on slave mode (Jaroslav Kysela) [2125544]
+- ASoC: wm8962: Fix suspend while playing music (Jaroslav Kysela) [2125544]
+- ASoC: codecs: wm8962: using pm_runtime_resume_and_get instead of pm_runtime_get_sync (Jaroslav Kysela) [2125544]
+- ASoC: wm8960: Add ACPI support (Jaroslav Kysela) [2125544]
+- ASoC: wm8958: Fix change notifications for DSP controls (Jaroslav Kysela) [2125544]
+- ASoC: wm8940: add devicetree support (Jaroslav Kysela) [2125544]
+- ASoC: wm*: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: wm8903: Fix the error handling of wm8903_i2c_probe() (Jaroslav Kysela) [2125544]
+- ASoC: wm8731: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: arizona: Make the wm5102, wm5110, wm8997 and wm8998 drivers use the new jack library (Jaroslav Kysela) [2125544]
+- ASoC: wm5102: Fix event generation for output compensation (Jaroslav Kysela) [2125544]
+- ASoC: wcd9335: Use int array instead of bitmask for TX mixers (Jaroslav Kysela) [2125544]
+- ASoC: wcd9335: Use DT bindings instead of local DAI definitions (Jaroslav Kysela) [2125544]
+- ASoC: wcd9335: Fix spurious event generation (Jaroslav Kysela) [2125544]
+- ASoC: wcd9335: Remove RX channel from old list before adding it to a new one (Jaroslav Kysela) [2125544]
+- ASoC: codecs: wcd9335: move gains from SX_TLV to S8_TLV (Jaroslav Kysela) [2125544]
+- ASoC: wcd9335: remove redundant tests (Jaroslav Kysela) [2125544]
+- ASoC: uda1380: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: uda1334: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: twl4030: Drop legacy, non DT boot support (Jaroslav Kysela) [2125544]
+- ASoC: tscs*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: ts3a227e: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: tpa6130: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: tlv320dac3x: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tlv320aic33: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: codec: tlv320aic32x4: fix mono playback via I2S (Jaroslav Kysela) [2125544]
+- ASoC: tlv320aic32x4: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tlv320aic31xx: Fix typo in BCLK clock name (Jaroslav Kysela) [2125544]
+- ASoC: tlv320*: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: Rename tlv320aic31xx-micbias.h as tlv320aic31xx.h (Jaroslav Kysela) [2125544]
+- ASoC: tlv320aic31xx: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tlv320aic26: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tlv320aic23: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tlv320*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: tas6424: Return zero in remove callback (Jaroslav Kysela) [2125544]
+- ASoC: tda7419: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: tas6424: Fix the error handling of tas6424_i2c_probe() (Jaroslav Kysela) [2125544]
+- ASoC: tas6424: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tas5720: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tas571x: Fix the error handling of tas571x_i2c_probe() (Jaroslav Kysela) [2125544]
+- ASoC: tas5086: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tas2552: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: tas2770: Reinit regcache on reset (Jaroslav Kysela) [2125544]
+- ASoC: tas2562: Propagate the error in tas2562_dac_event() (Jaroslav Kysela) [2125544]
+- ASoC: tas2562: Fix mute/unmute (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: Fix mute/unmute (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: Drop conflicting set_bias_level power setting (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: Allow mono streams (Jaroslav Kysela) [2125544]
+- ASoC: tas2770: Fix handling of mute/unmute (Jaroslav Kysela) [2125544]
+- ASoC: tas2770: Drop conflicting set_bias_level power setting (Jaroslav Kysela) [2125544]
+- ASoC: tas2770: Allow mono streams (Jaroslav Kysela) [2125544]
+- ASoC: tas2770: Set correct FSYNC polarity (Jaroslav Kysela) [2125544]
+- ASoC: tas2770: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tas*: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: tas2552: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: sti-sas: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: sta350: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: sta350: Remove redundant big endian formats (Jaroslav Kysela) [2125544]
+- ASoC: sta*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: sta32x: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: sta32x: Remove redundant big endian formats (Jaroslav Kysela) [2125544]
+- ASoC: ssm2602: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: ssm2518: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: sgtl5000: Fix noise on shutdown/remove (Jaroslav Kysela) [2125544]
+- ASoC: rt9120: Fix 3byte read, valule offset typo (Jaroslav Kysela) [2125544]
+- ASoC: rt9120: Use pm_runtime and regcache to optimize 'pwdnn' logic (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt715-sdca: remove useless assignment of ops (Jaroslav Kysela) [2125544]
+- ASoC: rt5682s: Separate the regulator consumer controls (Jaroslav Kysela) [2125544]
+- ASoC: rt5645: Fix the error handling of rt5645_i2c_probe() (Jaroslav Kysela) [2125544]
+- ASoC: rt5640: Fix the issue of the abnormal JD2 status (Jaroslav Kysela) [2125544]
+- ASoC: rt5640: Fix the JD voltage dropping issue (Jaroslav Kysela) [2125544]
+- ASoC: rt5640: Fix the wrong state of JD1 and JD2 (Jaroslav Kysela) [2125544]
+- ASoC: rt5640: Add the MICBIAS1 to the dapm routing (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt298: Fix jack detection (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt298: Fix NULL jack in interrupt (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt298: Set component to NULL on remove (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt286: Set component to NULL on remove (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt274: Set component to NULL on remove (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt274: Always init jack_detect_work (Jaroslav Kysela) [2125544]
+- ASoC: rt1308-sdw: add the default value of register 0xc320 (Jaroslav Kysela) [2125544]
+- ASoC: rk3328: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: pcm1789: Make pcm1789_common_exit() return void (Jaroslav Kysela) [2125544]
+- ASoC: pcm186x: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: pcm186x: simplify the return expression of pcm186x_power_off() (Jaroslav Kysela) [2125544]
+- ASoC: pcm*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: nau8825: Implement hw constraint for rates (Jaroslav Kysela) [2125544]
+- ASoC: nau8825: Declare 2 channels for DAI of capture stream (Jaroslav Kysela) [2125544]
+- ASoC: nau8824: Fix semaphore is released unexpectedly (Jaroslav Kysela) [2125544]
+- ASoC: nau8824: Implement hw constraint for rates (Jaroslav Kysela) [2125544]
+- ASoC: nau8824: Fix semaphore unbalance at error paths (Jaroslav Kysela) [2125544]
+- ASoC: nau8822: Don't reconfigure PLL to the same values (Jaroslav Kysela) [2125544]
+- ASoC: nau8822: Disable internal PLL if freq_out is zero (Jaroslav Kysela) [2125544]
+- ASoC: nau8821: Implement hw constraint for rates (Jaroslav Kysela) [2125544]
+- ASoC: nau8821: Don't unconditionally free interrupt (Jaroslav Kysela) [2125544]
+- ASoC: nau8821: add new widget to control system clock (Jaroslav Kysela) [2125544]
+- ASoC: nau8821: Add headset button detection (Jaroslav Kysela) [2125544]
+- ASoC: codecs: mt6359-accdet: remove useless initialization (Jaroslav Kysela) [2125544]
+- ASoC: mediatek: mt6366: support for mt6366 codec (Jaroslav Kysela) [2125544]
+- ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component (Jaroslav Kysela) [2125544]
+- ASoC: nau8540: Implement hw constraint for rates (Jaroslav Kysela) [2125544]
+- ASoC: nau8*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: mt6660: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: mt6359: Fix refcount leak bug (Jaroslav Kysela) [2125544]
+- ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs (Jaroslav Kysela) [2125544]
+- ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe (Jaroslav Kysela) [2125544]
+- ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV (Jaroslav Kysela) [2125544]
+- ASoC: ml26124: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: max9860: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: max98390: use linux/gpio/consumer.h to fix build (Jaroslav Kysela) [2125544]
+- ASoC: max98390: Add reset gpio control (Jaroslav Kysela) [2125544]
+- ASoC: codecs: soundwire: call pm_runtime_resume() in component probe (Jaroslav Kysela) [2125544]
+- ASoC: max98373: Removing 0x203E from the volatile reg (Jaroslav Kysela) [2125544]
+- ASoC: max98090: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: max98090: Fix event generation for custom controls (Jaroslav Kysela) [2125544]
+- ASoC: codecs: max98088: Clean up some inconsistent indenting (Jaroslav Kysela) [2125544]
+- ASoC: max980*: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: lm4857: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: da732x: Drop no-op remove function (Jaroslav Kysela) [2125544]
+- ASoC: da7219: Drop no-op remove function (Jaroslav Kysela) [2125544]
+- ASoC: max9*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: lm49xxx: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: hdmi-codec: Remove redundant big endian formats (Jaroslav Kysela) [2125544]
+- ASoC: es83*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: codes: Add support for ES8316 producer mode (Jaroslav Kysela) [2125544]
+- ASoC: dmic: Add support for DSD data format (Jaroslav Kysela) [2125544]
+- ASoC: da[79]*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: da7219: cancel AAD related work earlier for jack removal (Jaroslav Kysela) [2125544]
+- ASoC: da7219: Fix pole orientation detection on certain headsets (Jaroslav Kysela) [2125544]
+- ASoC: da7218: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: cx2072x: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: cx2072x: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: cs4349: Remove redundant big endian formats (Jaroslav Kysela) [2125544]
+- ASoC: cs42l56: Fix the error handling of cs42l56_i2c_probe() (Jaroslav Kysela) [2125544]
+- ASoC: cs42l51: Remove redundant big endian formats (Jaroslav Kysela) [2125544]
+- ASoC: cs42l42: Only report button state if there was a button interrupt (Jaroslav Kysela) [2125544]
+- ASoC: cs4270: update kernel-doc (Jaroslav Kysela) [2125544]
+- ASoC: cs4270: Remove redundant big endian formats (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Add support for CLSA3541 ACPI device ID (Jaroslav Kysela) [2125544]
+- ALSA: cs35l41: Enable Internal Boost in shared lib (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Do not print error when waking from hibernation (Jaroslav Kysela) [2125544]
+- ASoC: cs35l36: Fix the error handling of cs35l36_i2c_probe() (Jaroslav Kysela) [2125544]
+- ASoC: cs*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: arizona: Update arizona_aif_cfg_changed to use RX_BCLK_RATE (Jaroslav Kysela) [2125544]
+- ASoC: alc56*: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: ak4613: cares Simple-Audio-Card case for TDM (Jaroslav Kysela) [2125544]
+- ASoC: ak4613: add TDM256 support (Jaroslav Kysela) [2125544]
+- ASoC: ak4613: rename constraint to constraint_rates (Jaroslav Kysela) [2125544]
+- ASoC: ak4613: priv has ctrl1 instead of iface (Jaroslav Kysela) [2125544]
+- ASoC: ak4613: return error if it was setup as clock provider (Jaroslav Kysela) [2125544]
+- ASoC: ak4613: tidyup ak4613_interface (Jaroslav Kysela) [2125544]
+- ASoC: ak4613: add missing mutex_lock() (Jaroslav Kysela) [2125544]
+- ASoC: ak4642: Drop no-op remove function (Jaroslav Kysela) [2125544]
+- ASoC: ak*: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: ak4*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: adau1761: Add ADAU1761-as-ADAU1361 compatibility mode (Jaroslav Kysela) [2125544]
+- ASoC: ada*, ssm*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: ab8500: Remove some leftover from the "Replace GPLv2 boilerplate/reference with SPDX" rules (Jaroslav Kysela) [2125544]
+- ASoC: ad1*, ada*, ssm*: use i2c_match_id and simple i2c probe (Jaroslav Kysela) [2125544]
+- ASoC: test-component: Rename set_fmt_new back to set_fmt (Jaroslav Kysela) [2125544]
+- ASoC: simple-card-utils: rename asoc_simple_init_dai_link_params() to asoc_simple_init_for_codec2codec() (Jaroslav Kysela) [2125544]
+- ASoC: simple-card-utils.c: care Codec2Codec vs DPCM:BE (Jaroslav Kysela) [2125544]
+- ASoC: simple-card-utils.c: ignore Codec2Codec setting if it already have (Jaroslav Kysela) [2125544]
+- ASoC: simple-card-utils: Make asoc_simple_clean_reference() return void (Jaroslav Kysela) [2125544]
+- ASoC: audio-graph-card2: indicate "Experimental stage" warning only when successed (Jaroslav Kysela) [2125544]
+- ASoC: audio-graph-card2: Add of_node_put() in fail path (Jaroslav Kysela) [2125544]
+- ASoc: audio-graph-card2: Fix refcount leak bug in __graph_get_type() (Jaroslav Kysela) [2125544]
+- ASoC: audio-graph-card2.c: remove pre-alloced Codec2Codec space (Jaroslav Kysela) [2125544]
+- ASoC: audio-graph-card2.c: make Codec2Codec settings optional (Jaroslav Kysela) [2125544]
+- ASoC: audio-graph-card2.c: use of_property_read_u32() for rate (Jaroslav Kysela) [2125544]
+- ASoC: audio_graph_card2: Fix port numbers in example (Jaroslav Kysela) [2125544]
+- ASoC: audio-graph-card2-custom-sample.dtsi: add verbose explanation (Jaroslav Kysela) [2125544]
+- ASoC: audio-graph-card: Add of_node_put() in fail path (Jaroslav Kysela) [2125544]
+- ASoC: test-component: Update to use set_fmt_new callback (Jaroslav Kysela) [2125544]
+- ASoC: Intel: boards: use software node API in Atom boards (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_ssp_amp: remove 'set-but-not-used' warning (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_sdw: avoid oops in error handling (Jaroslav Kysela) [2125544]
+- ASoC: Intel: use software node API in SoundWire machines (Jaroslav Kysela) [2125544]
+- ASoC: Intel: boards: sof_sdw: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: Intel: catpt: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: Intel: catpt: Drop redundant enum constant (Jaroslav Kysela) [2125544]
+- ASoC: Intel: catpt: remove duplicating driver data retrieval (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_ssp_amp: enable capture stream from cs35l41 (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_sdw: allow HDaudio/HDMI disable (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_sdw: add quirk for HP Omen 16-k0005TX (Jaroslav Kysela) [2125544]
+- ASoC: intel: sof_sdw: add RT711 SDCA card for MTL platform (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_pcm512x: remove unnecessary init (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_nau8825: Move quirk check to the front in late probe (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_sdw: add support for Dell SKU 0AFF (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_sdw: add support for Dell SKU 0AF0 (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_rt5682: Perform quirk check first in card late probe (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_rt5682: Add support for mtl_mx98357_rt5682 (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_rt5682: fix out-of-bounds array access (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_rt5682: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: boards: rename RTL1019 compatible driver to rt1019p (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_nau8825: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: kbl_da7219_max98927: remap jack pins (Jaroslav Kysela) [2125544]
+- ALSA: x86: intel_hdmi_audio: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ALSA: x86: intel_hdmi_audio: enable pm_runtime and set autosuspend delay (Jaroslav Kysela) [2125544]
+- ASoC: xtensa: Update to use set_fmt_new callback (Jaroslav Kysela) [2125544]
+- ASoC: xtensa: Migrate to new style legacy DAI naming flag (Jaroslav Kysela) [2125544]
+- ASoC: uniphier: make arrays mul and div static const, makes object smaller (Jaroslav Kysela) [2125544]
+- ASoC: uniphier: simplify the return expression of uniphier_aio_compr_set_params() (Jaroslav Kysela) [2125544]
+- ASoC: spear: Migrate to new style legacy DAI naming flag (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-topology: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-stream: test DMA buffer first in hw_params (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-stream: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-ipc: Do not process IPC reply before firmware boot (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dsp: report error on power-up/down (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: Drop misleading comment regarding dma_data (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: Intel: fix sof_es8336 probe (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_es8336: remove hard-coded SSP selection (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_es8336: reset the num_links during probe (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_es8336: add support for HDMI_In capture (Jaroslav Kysela) [2125544]
+- ASoC: Intel: common: fix typo for tplg naming (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_rt5682: Add support for adl_rt1019_rt5682s (Jaroslav Kysela) [2125544]
+- ASoC: Intel: soc-acpi: add table for HP Omen 16-k0005TX (Jaroslav Kysela) [2125544]
+- ASoC: Intel: soc-acpi: Add entry for sof_es8336 in ADL match table (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_es8336: ignore GpioInt when looking for speaker/headset GPIO lines (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_es8336: Fix GPIO quirks set via module option (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_da7219_max98373: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_cs42l42: add adl_mx98360a_cs4242 board config (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_cs42l42: support BT offload audio (Jaroslav Kysela) [2125544]
+- ASoC: Intel: sof_cs42l42: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: skl_nau88l25_ssm4567: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: skl_nau88l25_max98357a: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: kbl_rt5663_rt5514_max98927: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: kbl_rt5663_max98927: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: kbl_da7219_max98357a: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: boards: hda: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: Intel: glk_rt5682_max98357a: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: cml_rt1011_rt5682: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: boards: Use temporary variable for struct device (Jaroslav Kysela) [2125544]
+- ASoC: Intel: boards: reset acpi_chan_package (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt298: Reorganize jack detect handling (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bxt_da7219_max98357a: remap jack pins (Jaroslav Kysela) [2125544]
+- ASoC: Intel: hsw_rt5640: Mark BE DAI as nonatomic (Jaroslav Kysela) [2125544]
+- ASoC: Intel: hsw_rt5640: Improve hw_params() debug-ability (Jaroslav Kysela) [2125544]
+- ASoC: Intel: hsw_rt5640: Improve probe() function quality (Jaroslav Kysela) [2125544]
+- ASoC: Intel: hsw_rt5640: Update file comments (Jaroslav Kysela) [2125544]
+- ASoC: Intel: hsw_rt5640: Update code indentation (Jaroslav Kysela) [2125544]
+- ASoC: Intel: hsw_rt5640: Reword driver name (Jaroslav Kysela) [2125544]
+- ASoC: Intel: hsw_rt5640: Reword prefixes of all driver members (Jaroslav Kysela) [2125544]
+- ASoC: Intel: Rename haswell source file to hsw_rt5640 (Jaroslav Kysela) [2125544]
+- ASoC: Intel: atom: sst_ipc: remove redundant test (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Mark BE DAI as nonatomic (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Remove FE DAI ops (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Improve codec_init() quality (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Improve hw_params() debug-ability (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Improve probe() function quality (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Update file comments (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Update code indentation (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Reword driver name (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt286: Reword prefixes of all driver members (Jaroslav Kysela) [2125544]
+- ASoC: Intel: Rename broadwell source file to bdw_rt286 (Jaroslav Kysela) [2125544]
+- ASoC: codecs: rt286: Reorganize jack detect handling (Jaroslav Kysela) [2125544]
+- ASoC: Intel: broadwell: Make broadwell_disable_jack() return void (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt5677: Mark BE DAI as nonatomic (Jaroslav Kysela) [2125544]
+- ASoC: Intel: bdw_rt5650: Mark BE DAI as nonatomic (Jaroslav Kysela) [2125544]
+- ASoC: Intel: atom: sst_ipc: remove useless initializations (Jaroslav Kysela) [2125544]
+- ASoC: Intel: atom: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: Intel: atom: sst: remove useless initialization (Jaroslav Kysela) [2125544]
+- ASoC: intel: atom: Remove superfluous flush_scheduled_work() (Jaroslav Kysela) [2125544]
+- ASoC: Intel: Update to use set_fmt_new callback (Jaroslav Kysela) [2125544]
+- ASoC: Intel: atom: controls: remove useless initializations (Jaroslav Kysela) [2125544]
+- ASoC: Intel: Migrate to new style legacy DAI naming flag (Jaroslav Kysela) [2125544]
+- ASoC: Intel: skylake: skl-pcm: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: Intel: Skylake: remove redundant re-assignments to pointer array (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: byt: remove duplicating driver data retrieval (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: cnl: Do not process IPC reply before firmware boot (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: Do snd_hdac_ext_stream_decouple() only once (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: Fix potential buffer overflow by snprintf() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: add sanity check on SSP index reported by NHLT (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: only fixup topology name if not set already (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: don't set fw_filename (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: enable dmic handling with 2 or fewer SoundWire links (Jaroslav Kysela) [2125544]
+- ASoC: soc-core: accept zero format at snd_soc_runtime_set_dai_fmt() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: compress: Prevent current kernel running with older FW (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Copy compress parameters into extended data (Jaroslav Kysela) [2125544]
+- ASoC: SOF: compress: Dynamically allocate pcm params struct (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: atom: don't keep a temporary string in fixup_tplg_name (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: add trigger callback into sdw_callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: Correct the ROM/FW state reporting code (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: MTL: remove redundant snd_sof_dsp_read() call (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: mtl: Do not process IPC reply before firmware boot (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: mtl: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: Introduce skip_imr_boot flag (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: disable IMR boot when resuming from ACPI S4 and S5 states (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: IPC4: enable IMR boot (Jaroslav Kysela) [2125544]
+- ASoC: SOC: Intel: introduce cl_init callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: Do not (wrongly) assume positive return value in IMR path (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: Revisit IMR boot sequence (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-dtrace: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-loader: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-loader: Print out the non matching ext_man magic number (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-topology: Fix clang -Wformat warning (Jaroslav Kysela) [2125544]
+- ASoC: SOF: remove warning on ABI checks (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Fix error code in sof_ipc4_volume_put() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-pcm: set pcm rate to dai setting (Jaroslav Kysela) [2125544]
+- ASoC: SOF: reduce default verbosity of IPC logs (Jaroslav Kysela) [2125544]
+- Revert "RedHat: ASoC: SOF: Intel: do not enable IMR boot when resuming by default" (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: fix alh_group_ida max value (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: fix wrong use of sizeof in sof_ipc4_widget_setup_comp_src() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: set domain bit based on dp domain type (Jaroslav Kysela) [2125544]
+- ASoC: SOF: add ipc4 SRC module support (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: move ida allocate/free to widget_setup/free (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: free memories allocated in sof_ipc4_get_audio_fmt (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: check dai->private in ipc_free() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: add SoundWire/ALH aggregation support (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Compile and runtime IPC version selection (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Align mt8186 clock names with dt-bindings (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Fix error code in probe (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Revise mt8195 boot flow (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: fix mt8195 StatvectorSel wrong setting (Jaroslav Kysela) [2125544]
+- ASoC: SOF: pcm: use pm_resume_and_get() on component probe (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc-msg-injector: fix copy in sof_msg_inject_ipc4_dfs_write() (Jaroslav Kysela) [2125544]
+- ASoC: sof: Migrate to new style legacy DAI naming flag (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client-probes: Only load the driver if IPC3 is used (Jaroslav Kysela) [2125544]
+- ASoC: SOF: probes: rename assign/free callbacks as startup/shutdown (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add cont_update_posn to platform parameters (Jaroslav Kysela) [2125544]
+- ASoC: SOF: pm: add definitions for S4 and S5 states (Jaroslav Kysela) [2125544]
+- ASoC: SOF: pm: add explicit behavior for ACPI S1 and S2 (Jaroslav Kysela) [2125544]
+- ASoC: SOF: debug: Clarify the IPC timeout handling path (Jaroslav Kysela) [2125544]
+- ASoC: SOF: topology: remove unused variable (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Switch to IPC generic firmware tracing (Jaroslav Kysela) [2125544]
+- ALSA: sc6000: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2125544]
+- ALSA: gus: Fix memory leaks at memory allocator error paths (Jaroslav Kysela) [2125544]
+- ALSA: sound/isa/gus: check the return value of kstrdup() (Jaroslav Kysela) [2125544]
+- ALSA: gus: Fix erroneous memory allocation (Jaroslav Kysela) [2125544]
+- ALSA: galaxy: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2125544]
+- ALSA: cs4236: fix an incorrect NULL check on list iterator (Jaroslav Kysela) [2125544]
+- ALSA: aloop: Fix random zeros in capture data when using jiffies timer (Jaroslav Kysela) [2125544]
+- ALSA: Add generic serial MIDI driver using serial bus API (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Fix potential buffer overflow by snprintf() (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Use lookup table to create modules (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Update AVS_FW_INIT_TIMEOUT_US declaration (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Lower UNLOAD_MULTIPLE_MODULES IPC timeout (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Replace hardcodes with SD_CTL_STREAM_RESET (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Recognize FW_CFG_RESERVED (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Use helper function to set up DMA (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Set max DMA segment size (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Block IPC channel on suspend (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Shield LARGE_CONFIG_GETs against zero payload_size (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Copy only as many RX bytes as necessary (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Relax DSP core transition timings (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Assign I2S gateway when parsing topology (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Fix i2s_test card name initialization (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: correct config reference for I2S test board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Fix parsing UUIDs in topology (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add da7219 machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add max98373 machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add max98357a machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add ssm4567 machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add nau8825 machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add rt5682 machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add rt298 machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add rt286 machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add rt274 machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add I2S-test machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add DMIC machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Fix build error on arc, m68k and sparc (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: APL-based platforms support (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: SKL-based platforms support (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Power management (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Machine board registration (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Replace link_mask usage with i2s_link_mask (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Event tracing (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: D0ix power state support (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Prepare for firmware tracing (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Register HDAudio ext-bus operations (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add HDAudio machine board (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: PCI driver implementation (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Coredump and recovery flow (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Drop direct ACPI dependency (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Depend on SND_INTEL_DSP_CONFIG (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Enable AVS driver only on x86 platforms (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: HDA PCM BE operations (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: non-HDA PCM BE operations (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Generic PCM FE operations (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Generic soc component driver (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Account for libraries when booting basefw (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Configure modules according to their type (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Prepare modules before bindings them (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Arm paths after creating them (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Path state management (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Path creation and freeing (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Declare path and its components (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Support link_mask formatted string (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add topology loading operations (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Parse path and path templates tuples (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Parse pipeline and module tuples (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Parse pplcfg and binding tuples (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Parse module-extension tuples (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Add topology parsing infrastructure (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: add MeteorLake machines (Jaroslav Kysela) [2125544]
+- ASoC: Intel: avs: Declare vendor tokens (Jaroslav Kysela) [2125544]
+- ASoC: SOF: dai-intel: add SOF_DAI_INTEL_SSP_CLKCTRL_MCLK_AON bit (Jaroslav Kysela) [2125544]
+- uapi: sof: abi: Bump SOF ABI for ext_data_length (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add two new structures for topology manifest data (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: introduce cont_update_posn in sof_ipc_stream_params struct (Jaroslav Kysela) [2125544]
+- ASoC: SOF: bump SOF_ABI_MINOR (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add header for IPC4 manifest (Jaroslav Kysela) [2125544]
+- ASoC: SOF: topology: add code to parse config params for ACPDMIC dai (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add topology tokens for IPC4 (Jaroslav Kysela) [2125544]
+- ASoC: hdac_hda: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: max98504: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: adau1372: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: cx2072x: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: mt6351: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: mt6358: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: mt6359: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: mt6660: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: pcm3060: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: rt9120: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: wcd9335: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: rt700: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: rt715: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: rt715-sdca: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: rt1308-sdw: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: rt1316-sdw: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: wsa881x: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: sdw-mockup: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: lochnagar: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: lochnagar: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: tfa*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: tfa9879: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2125544]
+- ASoC: tlv320*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: cs*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: wm*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: wm9090: Remove redundant endianness flag (Jaroslav Kysela) [2125544]
+- ASoC: wm8731: Factor out the I2C and SPI bus code into separate modules (Jaroslav Kysela) [2125544]
+- ASoC: wm8731: Factor our MCLK and mutex initialisation (Jaroslav Kysela) [2125544]
+- ASoC: wm8731: Move regulator request into wm8731_init() (Jaroslav Kysela) [2125544]
+- ASoC: wm8731: Factor component init out of bus code (Jaroslav Kysela) [2125544]
+- ASoC: wm8731: Update to modern DAI terminology (Jaroslav Kysela) [2125544]
+- ASoC: wm2000: fix missing clk_disable_unprepare() on error in wm2000_anc_transition() (Jaroslav Kysela) [2125544]
+- ASoC: wm2000: Remove redundant endianness flag (Jaroslav Kysela) [2125544]
+- ASoC: wm*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: Fix amp gain register offset & default (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: Correct playback volume range (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: Fix and extend FSYNC polarity handling (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: Add post reset delays (Jaroslav Kysela) [2125544]
+- ASoC: tas*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: tas*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: constify static struct snd_soc_dai_ops (Jaroslav Kysela) [2125544]
+- ASoC: tas*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [2125544]
+- ASoC: tas2764: Add the driver for the TAS2764 (Jaroslav Kysela) [2125544]
+- ASoC: max98396: Fix TDM mode BSEL settings (Jaroslav Kysela) [2125544]
+- ASoC: max*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: max98396: Implement DSP speaker monitor (Jaroslav Kysela) [2125544]
+- ASoC: max98396: Fix register access for PCM format settings (Jaroslav Kysela) [2125544]
+- ASoC: max98396: Improve some error prints (Jaroslav Kysela) [2125544]
+- ASoC: max98396: add voltage regulators (Jaroslav Kysela) [2125544]
+- ASoC: max98396: Fix build error for implicit function declaration (Jaroslav Kysela) [2125544]
+- ASoC: max98396: add amplifier driver (Jaroslav Kysela) [2125544]
+- ASoC: rt*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: rt1019: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: rt*: use simple i2c probe function (Jaroslav Kysela) [2125544]
+- ASoC: fsl: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: pistachio: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: samsung: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: sunxi: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: tegra: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: test-component: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: uniphier: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: ad*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: ak*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: alc*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: da*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: es*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: msm*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: nau*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: pcm*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: spdif: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: ssm*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: sta*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: twl*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: uda*: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: 88pm860x: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: ab8500: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: ac97: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: ads117x: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: bd28623: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: bt-sco: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: cpcap: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: cq93vc: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: cx20442: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: dmic: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: gtm601: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: hdac_hdmi: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: hdmi-codec: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: ics43432: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: inno_rk3036: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: isabelle: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: jz4740: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: lm49453: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: mc13783: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: ml26124: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: sgtl5000: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: si476x: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: stac9766: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: sti-sas: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: tscs42xx: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: wl1273: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: zl38060: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: fsl_micfil: Add legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: fsl_asrc_dma: Add legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: soc-component: Remove non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: simple-card-utils: Move snd_soc_component_is_codec to be local (Jaroslav Kysela) [2125544]
+- ASoC: soc-component: Add legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: core: Add new SOC_DOUBLE_SX_TLV macro (Jaroslav Kysela) [2125544]
+- ASoC: Remove unused hw_write_t type (Jaroslav Kysela) [2125544]
+- ASoC: soc.h: Add SOC_SINGLE_S_EXT_TLV macro (Jaroslav Kysela) [2125544]
+- ASoC: soc.h: Introduce SOC_DOUBLE_R_S_EXT_TLV() macro (Jaroslav Kysela) [2125544]
+- ASoC: soc.h: Add SOC_SINGLE_S_TLV() macro (Jaroslav Kysela) [2125544]
+- ASoC: hdmi-codec: Update to modern DAI terminology (Jaroslav Kysela) [2125544]
+- ALSA: hda: Skip event processing for unregistered codecs (Jaroslav Kysela) [2125544]
+- ASoC: codecs: Add HD-Audio codec driver (Jaroslav Kysela) [2125544]
+- ASoC: cs42l42: Move CS42L42 register descriptions to general include (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Read System Name from ACPI _SUB to identify firmware (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Add common cs35l41 enter hibernate function (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Move cs35l41 exit hibernate function into shared code (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Move cs_dsp config struct into shared code (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Move cs35l41 fs errata into shared code (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Move cs35l41_set_cspl_mbox_cmd to shared code (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2125544]
+- ASoC: cs35l41: Support external boost (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: Add support for MeteorLake (MTL) (Jaroslav Kysela) [2125544]
+- treewide: Replace zero-length arrays with flexible-array members (Jaroslav Kysela) [2125544]
+- ASoC: SOF: add definitions for different IPC types (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: enhance debug messages (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-dtrace: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: IPC4: add sdw blob (Jaroslav Kysela) [2125544]
+- AsoC: SOF: ipc4-topology: Add dai_get_clk op (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add support for SSP/DMIC DAI's (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add a new IPC op for parsing topology manifest (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: init NHLT for IPC4 (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add ops_free (Jaroslav Kysela) [2125544]
+- ASoC: SOF: IPC4: set the BE DAI ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-pcm: Expose sof_ipc4_set_pipeline_state() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add the dai_config op (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add route_setup/route_free ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add widget_setup/widget_free ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: IPC4: Add pcm ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add control IO ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add control_setup op (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add support for parsing mixer widgets (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add support for parsing and preparing pga widgets (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add prepare op for DAI type widgets (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add prepare op for AIF type widgets (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add support for parsing DAI_IN/DAI_OUT widgets (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4-topology: Add support for parsing AIF_IN/AIF_OUT widgets (Jaroslav Kysela) [2125544]
+- ASoC: SOF: IPC4: Introduce topology ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-dtrace: Return from dtrace_read if there is no new data available (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-dtrace: Add helper function to update the sdev->host_offset (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-dtrace: Introduce SOF_DTRACE_INITIALIZING state (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4: implement pm ctx_save callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: Switch to use the generic pm_ops.set_core_state (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4: Add set_core_state pm_ops implementation (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add initial header file for ipc4 (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3: Add set_core_state pm_ops implementation (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof_ipc_pm_ops: Add support for DSP core power management (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: mt8195 suspend check dsp idle (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: mt8195 modify dram type as non-cache (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add shared_size for mediatek common chip information (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: revise mt8195 clock sequence (Jaroslav Kysela) [2125544]
+- ASoC: SOF: amd: Add SOF pm ops callback for Renoir (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc-msg-injector: Fix reversed if statement (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc-msg-injector: Propagate write errors correctly (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Fix potential NULL pointer dereference (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client-ipc-flood-test: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: remove duplicate include in mt8195.c (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add mt8195 debug dump (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add mediatek common debug dump (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-dtrace: Move dtrace related variables local from sof_dev (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Introduce opaque storage of private data for firmware tracing (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Modify the host trace_init parameter list to include dmab (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-dtrace: Move host ops wrappers from generic header to private (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Clone the trace code to ipc3-dtrace as fw_tracing implementation (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Rename dtrace_is_supported flag to fw_trace_is_supported (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Introduce IPC independent ops for firmware tracing support (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc-msg-injector: Cap the rmaining to count in IPC4 mode (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add mt8186 ipc support (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add ipc support for mt8195 (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: HDA: Set up sof_ipc4_fw_data for IPC4 (Jaroslav Kysela) [2125544]
+- ASoC: SOF: IPC4: Add FW loader ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add IPC4 private header (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: HDA: Set IPC4-specific DSP ops for CaVS platforms (Jaroslav Kysela) [2125544]
+- ASoC: SOF: trace: The dtrace is only available with SOF_IPC (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client: IPC flood test can only work with SOF_IPC (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc-msg-injector: Add support for IPC4 messages (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc-msg-injector: Separate the message sending (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client: Add support IPC4 message sending (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client: Add API to get the ipc_type (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client-probes: Query the maximum IPC payload size (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc-msg-injector: Query the maximum IPC payload size (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client: Add API to get the maximum IPC payload size (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc4: Add support for mandatory message handling functionality (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add rx_data pointer to snd_sof_ipc_msg struct (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3: Remove the ipc3-ops.h header file (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-pci-dev: fix missing pci_release_regions() on error in sof_pci_probe() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: loader: Call optional query_fw_configuration on first boot (Jaroslav Kysela) [2125544]
+- ASoC: SOF: loader: Remove snd_sof_parse_module_memcpy() as it is not used (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: mt8195: Do not set the load_module ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: bdw/byt/pci-tng: Do not set the load_module ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: imx: Do not set the load_module ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: amd: renoir: Do not set the load_module ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: loader: Switch to use the fw_loader ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Add check for fw_loader ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3-loader: Implement firmware parsing and loading (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Introduce IPC dependent ops for firmware handling, loading (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add a prepare op to IPC topology widget ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: clarify use of widget complete flag (Jaroslav Kysela) [2125544]
+- ASoC: SOF: topology: Skip parsing DAI link tokens if not needed (Jaroslav Kysela) [2125544]
+- ASoC: SOF: pcm: remove unnecessary function declaration (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add two new fields to struct snd_sof_widget (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add a route_free op in struct sof_ipc_tplg_ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: expose a couple of functions (Jaroslav Kysela) [2125544]
+- ASoC: SOF: pcm: Move the call to snd_sof_pcm_platform_hw_params() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-audio: Set up widgets from source to sink (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-audio: reset route status before freeing widget (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add a new op to set up volume table (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Fix allyesconfig build error (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: mt8195 change ipc timeout as 1 second (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-client-ipc-msg-injector: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: debug: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: control: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add DSP system PM callback for mt8186 (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add mt8186 dsp clock support (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add mt8186 sof fw loader and dsp ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: Add mt8186 hardware support (Jaroslav Kysela) [2125544]
+- ASoC: SOF: loader: Remove the old fw_ready related code (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: Do not set fw_ready callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: imx: Do not set fw_ready callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: amd: Do not set fw_ready callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Do not check for the fw_ready callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3: Add local implementation for handling fw_ready message (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: protect hw_params against successive calls (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: add helper for link DMA cleanups (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: reset dma_data and release stream (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: improve suspend case (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: move code to deal with hda dai/dailink suspend (Jaroslav Kysela) [2125544]
+- ASOC: SOF: Intel: hda-dai: add hda_dai_hw_free_ipc() helper (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-audio: flag errors on pipeline teardown (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: regroup dai and link DMA operations (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: split link DMA and dai operations (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: use snd_soc_dai_get_widget() helper (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-dai: simplify hda_dai_widget_update() prototype (Jaroslav Kysela) [2125544]
+- ASOC: SOF: Intel: hda-dai: consistent naming for HDA DAI and HDA link DMA (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: Add IPC-specific dai ops for IPC3 (Jaroslav Kysela) [2125544]
+- ASoC: SOF: remove incorrect clearing of prepared flag (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: simplify NHLT handling (Jaroslav Kysela) [2125544]
+- ASoC: SOF: topology: Check w->sname validity once in sof_connect_dai_widget() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-audio: remove useless assignment (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: pci-tgl: add RPL-P support (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: pci-tgl: add ADL-PS support (Jaroslav Kysela) [2125544]
+- ASOC: SOF: pci: add ipc_type override for Intel IPC4 tests (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-pci-dev: don't use the community key on APL Chromebooks (Jaroslav Kysela) [2125544]
+- ASoC: SOF: amd: Use dedicated MBOX for ACP and PSP communication (Jaroslav Kysela) [2125544]
+- ASoC: SOF: amd: Add psp_mbox_ready() and psp_send_cmd() callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: using pm_runtime_resume_and_get to simplify the code (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Kconfig: Make SND_SOC_SOF_HDA_PROBES tristate (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: add IP identifier (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: expose some codeloader functions (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: Define rom_status_reg in sof_intel_dsp_desc (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: define check_ipc_irq op (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: use BIT() macros for consistency (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: move HDA_CL_STREAM_FORMAT definition to header (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda: use common ops across platforms (Jaroslav Kysela) [2125544]
+- ASoC: SOF: remove const qualifier for 'struct snd_sof_dsp_ops' (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-audio: preserve topology filename override in nocodec mode (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-pci-dev: add parameter to override topology filename (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-pci-dev: add parameter to override firmware filename (Jaroslav Kysela) [2125544]
+- ASoC: SOF: add IPC-dependent file names (Jaroslav Kysela) [2125544]
+- ASoC: SOF: add default IPC capability and file paths (Jaroslav Kysela) [2125544]
+- ASoC: SOF: add path indirection to each IPC type (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: Check the bar size before remapping (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Move the ipc_set_get_comp_data() local to ipc3-control (Jaroslav Kysela) [2125544]
+- ASoC: SOF: sof-audio: Use the widget_kcontrol_setup ops for kcontrol set up (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add widget_kcontrol_setup control ops for IPC3 (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Switch over to use the rx_msg ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Switch over to use the tx_msg and set_get_data ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Use the get_reply ops in snd_sof_ipc_get_reply() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Add check for mandatory IPC message handling ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Separate the ops checks by functions/topics (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3: Implement rx_msg IPC ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3: Implement the get_reply IPC ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3: Implement the set_get_data IPC ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3: Use sof_ipc3_tx_msg() internally for message sending (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc3: Implement the tx_msg IPC ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add high level IPC IO callback definitions to ipc_ops (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Add helper function to prepare and send an IPC message (Jaroslav Kysela) [2125544]
+- ASoC: SOF: mediatek: mt8195 add shutdown callback (Jaroslav Kysela) [2125544]
+- ASoC: SOF: OF: Add shutdown callback for SOF OF device (Jaroslav Kysela) [2125544]
+- ASoC: SOF: topology: Avoid open coded arithmetic in memory allocation (Jaroslav Kysela) [2125544]
+- ASoC: SOF: topology: use new sound control LED layer (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Remove redundant return statements (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Remove header from struct snd_sof_ipc_msg (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Drop 'header' parameter from tx_message() API (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Use msg->reply_data directly in snd_sof_ipc_get_reply() (Jaroslav Kysela) [2125544]
+- ASoC: SOF: disable dma trace in s0ix (Jaroslav Kysela) [2125544]
+- ASoC: SOF: extend the interface to stop DMA trace (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Drop support for mapped control data (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Use ipc->max_payload_size for message/reply size checking (Jaroslav Kysela) [2125544]
+- ASoC: SOF: ipc: Add max_payload_size field in struct snd_sof_ipc (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Remove dmab and dmab_bdl from snd_sof_dev struct (Jaroslav Kysela) [2125544]
+- ASoC: SOF: Intel: hda-loader: Use local snd_dma_buffer (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: add missing platform_device_unregister() in acp_pci_probe() (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Fix initialization of ext_intr_stat1 in i2s_irq_handler() (Jaroslav Kysela) [2125544]
+- ASoC: amd: vangogh: Use non-legacy DAI naming for cs35l41 (Jaroslav Kysela) [2125544]
+- ASoC: amd: enable RPL Platform acp drivers build (Jaroslav Kysela) [2125544]
+- ASoC: amd: add RPL Platform pci driver pm-ops (Jaroslav Kysela) [2125544]
+- ASoC: amd: add RPL Platform init/de-init functions (Jaroslav Kysela) [2125544]
+- ASoC: amd: add ACP PCI driver for RPL platform (Jaroslav Kysela) [2125544]
+- ASoC: amd: add RPL Platform acp header file (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Add error handling cases (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Modify const resource struct variable to generic (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Drop superfluous mmap callback (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Modify local variables name to generic (Jaroslav Kysela) [2125544]
+- ASoC: amd: yc: Decrease level of error message (Jaroslav Kysela) [2125544]
+- ASoC: amd: yc: add new YC platform varaint support (Jaroslav Kysela) [2125544]
+- ASoC: amd: fix Jadeite kconfig warning and build errors (Jaroslav Kysela) [2125544]
+- ASoC: amd: Fix error pointer dereference (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Add legacy audio driver support for Rembrandt platform (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: ACP code generic to support newer platforms (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Remove rt1019_1 codec conf from machine driver (Jaroslav Kysela) [2125544]
+- ASoC: amd: Remove duplicated include in acp-es8336.c (Jaroslav Kysela) [2125544]
+- ASoC: amd: fix for variable set but not used warning (Jaroslav Kysela) [2125544]
+- ASoC: amd: drop machine driver remove function (Jaroslav Kysela) [2125544]
+- ASoC: amd: remove unused header file inclusion (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp-es8336: use static variables (Jaroslav Kysela) [2125544]
+- ASoC: amd: fix ACPI dependency compile errors and warnings (Jaroslav Kysela) [2125544]
+- ASoC: amd: enable machine driver build for Jadeite platform (Jaroslav Kysela) [2125544]
+- ASoC: amd: add Machine driver for Jadeite platform (Jaroslav Kysela) [2125544]
+- ASoC: amd: add I2S MICSP instance support (Jaroslav Kysela) [2125544]
+- ASoC: amd: Migrate to new style legacy DAI naming flag (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Fix error handling in .remove() (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: fix typo in comment (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Add support for rt5682s and rt1019 card with hs instance (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Add support for nau8825 and max98360 card (Jaroslav Kysela) [2125544]
+- ASoC: amd: vangogh: Rename set_fmt_new back to set_fmt (Jaroslav Kysela) [2125544]
+- ASoC: amd: vangogh: Update to use set_fmt_new callback (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Set Speaker enable/disable pin through rt1019 codec driver. (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Set Speaker enable/disable pin through rt1019 codec driver (Jaroslav Kysela) [2125544]
+- ASoC: amd: vangogh: Remove duplicate include files (Jaroslav Kysela) [2125544]
+- ASoC: amd: acp: Add pm ops callback in machine driver (Jaroslav Kysela) [2125544]
+- ASoC: soc-utils: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: topology: Drop superfluous check of CONFIG_SND_CTL_VALIDATION (Jaroslav Kysela) [2125544]
+- ASoC: topology: Rename soc_tplg_init_kcontrol() function (Jaroslav Kysela) [2125544]
+- ASoC: topology: Correct error message (Jaroslav Kysela) [2125544]
+- ASoC: topology: Rename SOC_TPLG_PASS_MIXER to _CONTROL (Jaroslav Kysela) [2125544]
+- ASoC: topology: Return bool instead of int (Jaroslav Kysela) [2125544]
+- ASoC: topology: Remove unnecessary looping (Jaroslav Kysela) [2125544]
+- ASoC: topology: Use for loop instead of while (Jaroslav Kysela) [2125544]
+- ASoC: topology: KUnit: Remove now redundant non_legacy_dai_naming flag (Jaroslav Kysela) [2125544]
+- ASoC: topology: KUnit: Followup prototype change of snd_soc_unregister_card() (Jaroslav Kysela) [2125544]
+- ASoC: DPCM: Don't pick up BE without substream (Jaroslav Kysela) [2125544]
+- ASoC: soc-pcm: demote warnings on non-atomic BE connection (Jaroslav Kysela) [2125544]
+- ASoC: soc-pcm: fix BE transition for TRIGGER_START (Jaroslav Kysela) [2125544]
+- ASoC: soc-pcm: improve BE transition for TRIGGER_START (Jaroslav Kysela) [2125544]
+- ASoC: soc-pcm: improve BE transition for PAUSE_RELEASE (Jaroslav Kysela) [2125544]
+- ASoC: ops: Fix integer detection for when max possible values > 1 (Jaroslav Kysela) [2125544]
+- ASoC: ops: Fix boolean/integer detection for simple controls (Jaroslav Kysela) [2125544]
+- ASoC: ops: Don't modify the driver's plaform_max when reading state (Jaroslav Kysela) [2125544]
+- ASoC: ops: Remove unneeded delay.h inclusion (Jaroslav Kysela) [2125544]
+- ASoC: ops: Clarify snd_soc_info_volsw_sx() (Jaroslav Kysela) [2125544]
+- ASoC: soc-generic-dmaengine-pcm: Use default config when none is given (Jaroslav Kysela) [2125544]
+- ASoC: dapm: Move stereo autodisable check (Jaroslav Kysela) [2125544]
+- ASoC: soc-dai: Remove set_fmt_new callback (Jaroslav Kysela) [2125544]
+- ASoC: soc-core.c: share code for snd_soc_of_get_dai_link_cpus/codecs() (Jaroslav Kysela) [2125544]
+- ASoC: soc-core.c: fixup snd_soc_of_get_dai_link_cpus() (Jaroslav Kysela) [2125544]
+- ASoC: core: Switch core to new DAI naming flag (Jaroslav Kysela) [2125544]
+- ASoC: core: Make snd_soc_unregister_card() return void (Jaroslav Kysela) [2125544]
+- ASoC: core: Always send the CPU DAI a direct clock specifier (Jaroslav Kysela) [2125544]
+- ASoC: core: Add set_fmt_new callback that directly specifies provider (Jaroslav Kysela) [2125544]
+- ASoC: core: Pass legacy_dai_naming flag directly (Jaroslav Kysela) [2125544]
+- ASoC: core: Correct spelling fliped -> flipped (Jaroslav Kysela) [2125544]
+- ASoC: soc-core: remove always-false path (Jaroslav Kysela) [2125544]
+- ASoC: Introduce snd_soc_of_get_dai_link_cpus (Jaroslav Kysela) [2125544]
+- ASoC: soc-component: Update handling to component delays (Jaroslav Kysela) [2125544]
+- ASoC: Introduce 'fixup_controls' card method (Jaroslav Kysela) [2125544]
+- ASoC: soc-card: Create jack kcontrol without pins (Jaroslav Kysela) [2125544]
+- ALSA: Replace acpi_bus_get_device() (Jaroslav Kysela) [2125544]
+- Revert "ALSA: hda: cs35l41: Allow compilation test on non-ACPI configurations" (Jaroslav Kysela) [2125544]
+- ALSA: hda: beep: Simplify keep-power-at-enable behavior (Jaroslav Kysela) [2125544]
+- ALSA: hda/hdmi: Don't skip notification handling during PM operation (Jaroslav Kysela) [2125544]
+- ALSA: hda/hdmi: Limit the maximal count of PCM devices to 8 (Jaroslav Kysela) [2125544]
+- ALSA: hda/hdmi: ELD procfs - print the codec NIDs (Jaroslav Kysela) [2125544]
+- ALSA: hda/hdmi: Simplify the pcm_idx condition in hdmi_pcm_setup_pin() (Jaroslav Kysela) [2125544]
+- ALSA: hda/hdmi: Fix the converter allocation for the silent stream (Jaroslav Kysela) [2125544]
+- ALSA: hda/hdmi: change type for the 'assigned' variable (Jaroslav Kysela) [2125544]
+- ALSA: hda: intel-nhlt: Move structs out of #define block (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add a quirk for HP OMEN 16 (8902) mute LED (Jaroslav Kysela) [2125544]
+- ALSA: hda/hdmi: Fix the converter reuse for the silent stream (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirk for ASUS GA503R laptop (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Re-arrange quirk table entries (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5570 laptop (Jaroslav Kysela) [2125544]
+- ALSA: hda: Fix Nvidia dp infoframe (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 (Jaroslav Kysela) [2125544]
+- ALSA: hda/tegra: set depop delay for tegra (Jaroslav Kysela) [2125544]
+- ALSA: hda: add Intel 5 Series / 3400 PCI DID (Jaroslav Kysela) [2125544]
+- ALSA: hda: Fix hang at HD-audio codec unbinding due to refcount saturation (Jaroslav Kysela) [2125544]
+- ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() (Jaroslav Kysela) [2125544]
+- ALSA: hda/tegra: Align BDL entry to 4KB boundary (Jaroslav Kysela) [2125544]
+- ALSA: hda/sigmatel: Fix unused variable warning for beep power change (Jaroslav Kysela) [2125544]
+- ALSA: hda/sigmatel: Keep power up while beep is enabled (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirk for Clevo NS50PU, NS70PU (Jaroslav Kysela) [2125544]
+- ALSA: hda/cs8409: Support new Dolphin Variants (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirk for Lenovo Yoga7 14IAL7 (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Clarify support for CSC3551 without _DSD Properties (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirks for ASUS Zenbooks using CS35L41 (Jaroslav Kysela) [2125544]
+- ALSA: hda: Fix crash due to jack poll in suspend (Jaroslav Kysela) [2125544]
+- ALSA: hda/cirrus - support for iMac 12,1 model (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add a quirk for HP OMEN 15 (8786) mute LED (Jaroslav Kysela) [2125544]
+- ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model (Jaroslav Kysela) [2125544]
+- ALSA: ice1712: remove redundant assignment to new (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirk for another Asus K42JZ model (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirk for HP Spectre x360 15-eb0xxx (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirk for Clevo NV45PZ (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Add quirk for Lenovo Yoga9 14IAP7 (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Support CLSA0101 (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Use the CS35L41 HDA internal define (Jaroslav Kysela) [2125544]
+- ALSA: hda/realtek: Enable speaker and mute LEDs for HP laptops (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Fix build error unused-function (Jaroslav Kysela) [2125544]
+- ALSA: asihpi: fix repeated words in comments (Jaroslav Kysela) [2125544]
+- ALSA: asihpi: Fix typo in comments (Jaroslav Kysela) [2125544]
+- ALSA: emu10k1: Fix typo in comments (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Add module parameter to control firmware load (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Support Firmware switching and reloading (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Add defaulted values into dsp bypass config sequence (Jaroslav Kysela) [2125544]
+- ALSA: hda: hda_cs_dsp_ctl: Add fw id strings (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Read Speaker Calibration data from UEFI variables (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Support Hibernation during Suspend (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Support Speaker ID for laptops (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Support multiple load paths for firmware (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Support reading subsystem id from ACPI (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Save Subsystem ID inside CS35L41 Driver (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Add initial DSP support and firmware loading (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Save codec object inside component struct (Jaroslav Kysela) [2125544]
+- ALSA: hda: hda_cs_dsp_ctl: Add apis to write the controls directly (Jaroslav Kysela) [2125544]
+- ALSA: hda: hda_cs_dsp_ctl: Add Library to support CS_DSP ALSA controls (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Consolidate selections under SND_HDA_SCODEC_CS35L41 (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Drop wrong use of ACPI_PTR() (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Allow compilation test on non-ACPI configurations (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Don't dereference fwnode handle (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Improve dev_err_probe() messaging (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Fix comments wrt serial-multi-instantiate reference (Jaroslav Kysela) [2125544]
+- ALSA: hda: Fix put_device() inconsistency in error path (Jaroslav Kysela) [2125544]
+- ALSA: hda: Make device usage_count consistent across subsequent probing (Jaroslav Kysela) [2125544]
+- ALSA: hda: Fix null-ptr-deref when i915 fails and hdmi is denylisted (Jaroslav Kysela) [2125544]
+- ALSA: hda/cs8409: change cs8409_fixups v.pins initializers to static (Jaroslav Kysela) [2125544]
+- ASoC: doc: Update dead links (Jaroslav Kysela) [2125544]
+- ALSA: hda/via: Delete does not require return (Jaroslav Kysela) [2125544]
+- ALSA: ctxfi: fix typo in comment (Jaroslav Kysela) [2125544]
+- ALSA: cs5535audio: fix typo in comment (Jaroslav Kysela) [2125544]
+- ALSA: lola: Bounds check loop iterator against streams array size (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Add Amp Name based on channel and index (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Enable GPIO2 Interrupt for CLSA0100 laptops (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Add Support for Interrupts (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Remove Set Channel Map api from binding (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Set Speaker Position for CLSA0100 Laptop (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Fix error in spi cs35l41 hda driver name (Jaroslav Kysela) [2125544]
+- ALSA: hda/cs8409: Add Speaker Playback Switch for Warlock (Jaroslav Kysela) [2125544]
+- ALSA: hda/cs8409: Add Speaker Playback Switch for Cyborg (Jaroslav Kysela) [2125544]
+- ALSA: hda/cs8409: Support new Odin Variants (Jaroslav Kysela) [2125544]
+- ALSA: hda/cs8409: Support manual mode detection for CS42L42 (Jaroslav Kysela) [2125544]
+- ALSA: hda/cs8409: Use general cs42l42 include in cs8409 hda driver (Jaroslav Kysela) [2125544]
+- ALSA: hdsp: remove redundant assignment to pointer kctl (Jaroslav Kysela) [2125544]
+- ALSA: hda/conexant: add a new hda codec SN6140 (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Move external boost handling to lib for ASoC use (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Handle all external boost setups the same way (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Reorganize log for playback actions (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Remove cs35l41_hda_reg_sequence struct (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Move boost config to initialization code (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Mute the device before shutdown (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Put the device into safe mode for external boost (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Add Boost type flag (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Always configure the DAI (Jaroslav Kysela) [2125544]
+- ALSA: hda: cs35l41: Fix I2S params comments (Jaroslav Kysela) [2125544]
+- ALSA: cs35l41: Move cs35l41_gpio_config to shared lib (Jaroslav Kysela) [2125544]
+- ALSA: cs35l41: Check hw_config before using it (Jaroslav Kysela) [2125544]
+- ALSA: cs35l41: Unify hardware configuration (Jaroslav Kysela) [2125544]
+- ALSA: hda/tegra: Enable Jack poll for tegra (Jaroslav Kysela) [2125544]
+- ALSA: hda: Jack detection poll in suspend state (Jaroslav Kysela) [2125544]
+- ALSA: echoaudio: remove redundant assignment to variable i (Jaroslav Kysela) [2125544]
+- ALSA: emu10k1: Stop using iommu_present() (Jaroslav Kysela) [2125544]
+- ALSA: hda: intel-dsp-config: add missing RaptorLake PCI IDs (Jaroslav Kysela) [2125544]
+- ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array (Jaroslav Kysela) [2125544]
+- ALSA: hda: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2125544]
+- ALSA: hda: Remove unused macro definition (Jaroslav Kysela) [2125544]
+- ALSA: hda: Reset all SIE bits in INTCTL (Jaroslav Kysela) [2125544]
+- tracing: ALSA: hda: Remove string manipulation out of the fast path (Jaroslav Kysela) [2125544]
+- ALSA: hda: intel-nhlt: remove use of __func__ in dev_dbg (Jaroslav Kysela) [2125544]
+- ALSA: hda: intel-dspcfg: use SOF for UpExtreme and UpExtreme11 boards (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Properly refcounting clock rate (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Clear fixed clock rate at closing EP (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Fix an out-of-bounds bug in __snd_usb_parse_audio_interface() (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Register card again for iface over delayed_register option (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Inform the delayed registration more properly (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Add quirk for LH Labs Geek Out HD Audio 1V5 (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: make read-only array marker static const (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: More comprehensive mixer map for ASUS ROG Zenith II (Jaroslav Kysela) [2125544]
+- ALSA: scarlett2: Add Focusrite Clarett+ 8Pre support (Jaroslav Kysela) [2125544]
+- ALSA: line6: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2125544]
+- ALSA: hiface: fix repeated words in comments (Jaroslav Kysela) [2125544]
+- ALSA: usb/6fire: fix repeated words in comments (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Add quirk for Behringer UMC202HD (Jaroslav Kysela) [2125544]
+- ALSA: bcd2000: Fix a UAF bug on the error path of probing (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Use atomic_try_cmpxchg in ep_state_update (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Add endianness annotations (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Turn off 'manual mode' on Dell dock (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Support jack detection on Dell dock (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: US16x08: Move overflow check before array access (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Cancel pending work at closing a MIDI substream (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Add mixer mapping for Gigabyte B450/550 Mobos (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Fix wrong kfree issue in snd_usb_endpoint_free_all (Jaroslav Kysela) [2125544]
+- ALSA: usb-audio: Refcount multiple accesses on the single clock (Jaroslav Kysela) [2125544]
+- mfd: arizona-spi: Add Android board ACPI table handling (Jaroslav Kysela) [2125544]
+- mfd: arizona-spi: Split Windows ACPI init code into its own function (Jaroslav Kysela) [2125544]
+- mfd: arizona: Add missing statics to the of_match_tables (Jaroslav Kysela) [2125544]
+- firmware: cs_dsp: Add memory chunk helpers (Jaroslav Kysela) [2125544]
+- firmware: cs_dsp: Add pre_stop callback (Jaroslav Kysela) [2125544]
+- regmap: sdw: add required header files (Jaroslav Kysela) [2125544]
+- regmap: soundwire: remove unused header mod_devicetable.h (Jaroslav Kysela) [2125544]
+- regmap: Constify static regmap_bus structs (Jaroslav Kysela) [2125544]
+- soundwire: peripheral: remove useless ops pointer (Jaroslav Kysela) [2125544]
+- soundwire: intel: use pm_runtime_resume() on component probe (Jaroslav Kysela) [2125544]
+- soundwire: qcom: fix device status array range (Jaroslav Kysela) [2125544]
+- soundwire: qcom: remove duplicate reset control get (Jaroslav Kysela) [2125544]
+- soundwire: Intel: add trigger callback (Jaroslav Kysela) [2125544]
+- soundwire: qcom: Enable software clock gating requirement flag (Jaroslav Kysela) [2125544]
+- soundwire: qcom: Check device status before reading devid (Jaroslav Kysela) [2125544]
+- soundwire: qcom: Add flag for software clock gating check (Jaroslav Kysela) [2125544]
+- soundwire: revisit driver bind/unbind and callbacks (Jaroslav Kysela) [2125544]
+- soundwire: bus_type: fix remove and shutdown support (Jaroslav Kysela) [2125544]
+- soundwire: intel: Migrate to new style legacy DAI naming flag (Jaroslav Kysela) [2125544]
+- ASoC: qcom: soundwire: Add support for controlling audio CGCR from HLOS (Jaroslav Kysela) [2125544]
+- soundwire: qcom: adjust autoenumeration timeout (Jaroslav Kysela) [2125544]
+- soundwire: qcom: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- soundwire: intel: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- soundwire: cadence: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- soundwire: bus: use pm_runtime_resume_and_get() (Jaroslav Kysela) [2125544]
+- soundwire: qcom: return error when pm_runtime_get_sync fails (Jaroslav Kysela) [2125544]
+- soundwire: bus: pm_runtime_request_resume on peripheral attachment (Jaroslav Kysela) [2125544]
+- soundwire: intel: disable WAKEEN in pm_runtime resume (Jaroslav Kysela) [2125544]
+- soundwire: cadence: recheck device0 attachment after status change (Jaroslav Kysela) [2125544]
+- soundwire: qcom: Add compatible name for v1.6.0 (Jaroslav Kysela) [2125544]
+- soundwire: stream: Fix error return code in do_bank_switch() (Jaroslav Kysela) [2125544]
+- soundwire: qcom: fix an error message in swrm_wait_for_frame_gen_enabled() (Jaroslav Kysela) [2125544]
+- soundwire: qcom: use __maybe_unused for swrm_runtime_resume() (Jaroslav Kysela) [2125544]
+- soundwire: qcom: constify static struct qcom_swrm_data global variables (Jaroslav Kysela) [2125544]
+- soundwire: qcom: add in-band wake up interrupt support (Jaroslav Kysela) [2125544]
+- soundwire: qcom: add runtime pm support (Jaroslav Kysela) [2125544]
+- soundwire: Replace acpi_bus_get_device() (Jaroslav Kysela) [2125544]
+- ALSA: Add snd_pcm_direction_name() helper (Jaroslav Kysela) [2125544]
+- ALSA: core: Fix double-free at snd_card_new() (Jaroslav Kysela) [2125544]
+- ALSA: hda: Once again fix regression of page allocations with IOMMU (Jaroslav Kysela) [2125544]
+- ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC (Jaroslav Kysela) [2125544]
+- ALSA: control: Re-order bounds checking in get_ctl_id_hash() (Jaroslav Kysela) [2125544]
+- ALSA: control: Fix an out-of-bounds bug in get_ctl_id_hash() (Jaroslav Kysela) [2125544]
+- ALSA: seq: Fix data-race at module auto-loading (Jaroslav Kysela) [2125544]
+- ALSA: seq: oss: Fix data-race for max_midi_devs access (Jaroslav Kysela) [2125544]
+- ALSA: memalloc: Revive x86-specific WC page allocations again (Jaroslav Kysela) [2125544]
+- ALSA: info: Fix llseek return value when using callback (Jaroslav Kysela) [2125544]
+- ALSA: pcm: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2125544]
+- ALSA: core: Replace scnprintf() with sysfs_emit() (Jaroslav Kysela) [2125544]
+- ALSA: control-led: Replace sprintf() with sysfs_emit() (Jaroslav Kysela) [2125544]
+- ALSA: control: Use deferred fasync helper (Jaroslav Kysela) [2125544]
+- ALSA: pcm: Use deferred fasync helper (Jaroslav Kysela) [2125544]
+- ALSA: timer: Use deferred fasync helper (Jaroslav Kysela) [2125544]
+- ALSA: core: Add async signal helpers (Jaroslav Kysela) [2125544]
+- ALSA: core: Fix missing return value comments for kernel docs (Jaroslav Kysela) [2125544]
+- ALSA: memalloc: Fix missing return value comments for kernel docs (Jaroslav Kysela) [2125544]
+- ALSA: control: Fix missing return value comments for kernel docs (Jaroslav Kysela) [2125544]
+- ALSA: compress: Fix kernel doc warnings (Jaroslav Kysela) [2125544]
+- ALSA: dmaengine: Fix missing return value comments for kernel docs (Jaroslav Kysela) [2125544]
+- ALSA: pcm: Fix missing return value comments for kernel docs (Jaroslav Kysela) [2125544]
+- ALSA: compress: Enable kernel doc markers for some functions (Jaroslav Kysela) [2125544]
+- ALSA: rawmidi: Take buffer refcount while draining output (Jaroslav Kysela) [2125544]
+- ALSA: rawmidi: Check stream state at exported functions (Jaroslav Kysela) [2125544]
+- ALSA: rawmidi: Take open_mutex around parameter changes (Jaroslav Kysela) [2125544]
+- ALSA: rawmidi: Move lock to snd_rawmidi_substream (Jaroslav Kysela) [2125544]
+- ALSA: rawmidi: Make internal functions local static (Jaroslav Kysela) [2125544]
+- ALSA: control: Add input validation (Jaroslav Kysela) [2125544]
+- ALSA: control: Drop superfluous ifdef CONFIG_SND_CTL_DEBUG (Jaroslav Kysela) [2125544]
+- ALSA: control: Rename CONFIG_SND_CTL_VALIDATION to CONFIG_SND_CTL_DEBUG (Jaroslav Kysela) [2125544]
+- ALSA: control: Use xarray for faster lookups (Jaroslav Kysela) [2125544]
+- ALSA: seq: replace ternary operator with max() (Jaroslav Kysela) [2125544]
+- ALSA: pcm: use DEVICE_ATTR_RO macro (Jaroslav Kysela) [2125544]
+- pinctrl: amd: Don't save/restore interrupt status and wake status bits (Prarit Bhargava) [2130059]
+- x86/paravirt: Add a dummy __x86_paravirt_patch_template() function (Waiman Long) [2144161]
+- x86/paravirt: Fix kABI breakage in struct pv_mmu_ops (Waiman Long) [2144161]
+
+* Mon Dec 05 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-442.el8.v2.g6f5f]
+- can: af_can: fix NULL pointer dereference in can_rx_register() (Ivan Vecera) [2136823]
+- net: disable preemption in dev_core_stats_XXX_inc() helpers (Ivan Vecera) [2136823]
+- net: introduce CAN specific pointer in the struct net_device (Ivan Vecera) [2136823]
+- can: af_can: can_pernet_exit(): no need to iterate over and cleanup registered CAN devices (Ivan Vecera) [2136823]
+- net: add per-cpu storage and net->core_stats (Ivan Vecera) [2136823]
+- tun: switch to net core provided statistics counters (Ivan Vecera) [2136823]
+- tun: switch to u64_stats_t (Ivan Vecera) [2136823]
+- ceph: avoid putting the realm twice when decoding snaps fails (Xiubo Li) [2139881]
+- powerpc/64/kdump: Limit kdump base to 512MB (Mamatha Inamdar) [2132921]
+- ice: virtchnl rss hena support (Petr Oros) [2136516]
+- Documentation/admin-guide: Document nomodeset kernel parameter (Jocelyn Falempe) [2143952]
+- drm: Move nomodeset kernel parameter to the DRM subsystem (Jocelyn Falempe) [2143952]
+- usb: remove third argument of usb_maxpacket() (Íñigo Huguet) [2143362]
+- sound: usb: remove third argument of usb_maxpacket() (Íñigo Huguet) [2143362]
+- usb: remove third argument of usb_maxpacket() (Íñigo Huguet) [2143362]
+- net: remove third argument of usb_maxpacket() (Íñigo Huguet) [2143362]
+- media: remove third argument of usb_maxpacket() (Íñigo Huguet) [2143362]
+- Input: remove third argument of usb_maxpacket() (Íñigo Huguet) [2143362]
+- HID: usbhid: remove third argument of usb_maxpacket() (Íñigo Huguet) [2143362]
+- usb: deprecate the third argument of usb_maxpacket() (Íñigo Huguet) [2143362]
+- scsi: smartpqi: Change version to 2.1.20-035 (Don Brace) [2116976]
+- scsi: smartpqi: Initialize feature section info (Don Brace) [2116976]
+- scsi: smartpqi: Add controller cache flush during rmmod (Don Brace) [2116976]
+- scsi: smartpqi: Correct device removal for multi-actuator devices (Don Brace) [2116976]
+- scsi: smartpqi: Change sysfs raid_level attribute to N/A for controllers (Don Brace) [2116976]
+- scsi: smartpqi: Correct max LUN number (Don Brace) [2116976]
+- scsi: smartpqi: Add new controller PCI IDs (Don Brace) [2116976]
+- scsi: smartpqi: Convert to host_tagset (Don Brace) [2116976]
+- scsi: smartpqi: Stop using the SCSI pointer (Don Brace) [2116976]
+- smartpqi: Change request pointer to scsi_cmd_to_rq (Don Brace) [2116976]
+- scsi: smartpqi: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Don Brace) [2116976]
+- EDAC/skx_common: Make output format similar (Aristeu Rozanski) [2124915]
+- EDAC/skx_common: Use driver decoder first (Aristeu Rozanski) [2124915]
+- ptp: introduce helpers to adjust by scaled parts per million (Izabela Bakollari) [2141639]
+- ptp: add missing documentation for parameters (Izabela Bakollari) [2141639]
+- mm: slub: fix flush_cpu_slab()/__free_slab() invocations in task context. (Nico Pache) [2144559]
+- scsi: target: loop: Fix handling of aborted TMRs (Maurizio Lombardi) [2141713]
+- ceph: fix NULL pointer dereference for req->r_session (Xiubo Li) [2137955]
+- ceph: Use kcalloc for allocating multiple elements (Xiubo Li) [2137955]
+- net/mlx5e: TC, Reject forwarding from internal port to internal port (Mohammad Kabat) [2131345]
+- md/raid1: stop mdx_raid1 thread when raid1 array run failed (Nigel Croxon) [2143270]
+- md: fix a crash in mempool_free (Nigel Croxon) [2143257]
+- md/raid0, raid10: Don't set discard sectors for request queue (Nigel Croxon) [2143250]
+- sgx: use ->f_mapping... (Vladis Dronov) [2130210]
+- x86/sgx: Improve comments for sgx_encl_lookup/alloc_backing() (Vladis Dronov) [2130210]
+- x86/sgx: Handle VA page allocation failure for EAUG on PF. (Vladis Dronov) [2130210]
+- x86/sgx: Do not fail on incomplete sanitization on premature stop of ksgxd (Vladis Dronov) [2130210]
+- selftests/sgx: Ignore OpenSSL 3.0 deprecated functions warning (Vladis Dronov) [2130210]
+- x86/sgx: Set active memcg prior to shmem allocation (Vladis Dronov) [2130210]
+- x86/sgx: Drop 'page_index' from sgx_backing (Vladis Dronov) [2130210]
+- selftests/sgx: Page removal stress test (Vladis Dronov) [2130210]
+- selftests/sgx: Test reclaiming of untouched page (Vladis Dronov) [2130210]
+- selftests/sgx: Test invalid access to removed enclave page (Vladis Dronov) [2130210]
+- selftests/sgx: Test faulty enclave behavior (Vladis Dronov) [2130210]
+- selftests/sgx: Test complete changing of page type flow (Vladis Dronov) [2130210]
+- selftests/sgx: Introduce TCS initialization enclave operation (Vladis Dronov) [2130210]
+- selftests/sgx: Introduce dynamic entry point (Vladis Dronov) [2130210]
+- selftests/sgx: Test two different SGX2 EAUG flows (Vladis Dronov) [2130210]
+- selftests/sgx: Add test for TCS page permission changes (Vladis Dronov) [2130210]
+- selftests/sgx: Add test for EPCM permission changes (Vladis Dronov) [2130210]
+- Documentation/x86: Introduce enclave runtime management section (Vladis Dronov) [2130210]
+- x86/sgx: Free up EPC pages directly to support large page ranges (Vladis Dronov) [2130210]
+- x86/sgx: Support complete page removal (Vladis Dronov) [2130210]
+- x86/sgx: Support modifying SGX page type (Vladis Dronov) [2130210]
+- x86/sgx: Tighten accessible memory range after enclave initialization (Vladis Dronov) [2130210]
+- x86/sgx: Support adding of pages to an initialized enclave (Vladis Dronov) [2130210]
+- x86/sgx: Support restricting of enclave page permissions (Vladis Dronov) [2130210]
+- x86/sgx: Support VA page allocation without reclaiming (Vladis Dronov) [2130210]
+- x86/sgx: Export sgx_encl_page_alloc() (Vladis Dronov) [2130210]
+- x86/sgx: Export sgx_encl_{grow,shrink}() (Vladis Dronov) [2130210]
+- x86/sgx: Keep record of SGX page type (Vladis Dronov) [2130210]
+- x86/sgx: Create utility to validate user provided offset and length (Vladis Dronov) [2130210]
+- x86/sgx: Make sgx_ipi_cb() available internally (Vladis Dronov) [2130210]
+- x86/sgx: Move PTE zap code to new sgx_zap_enclave_ptes() (Vladis Dronov) [2130210]
+- x86/sgx: Rename sgx_encl_ewb_cpumask() as sgx_encl_cpumask() (Vladis Dronov) [2130210]
+- x86/sgx: Export sgx_encl_ewb_cpumask() (Vladis Dronov) [2130210]
+- x86/sgx: Support loading enclave page without VMA permissions check (Vladis Dronov) [2130210]
+- x86/sgx: Add wrapper for SGX2 EAUG function (Vladis Dronov) [2130210]
+- x86/sgx: Add wrapper for SGX2 EMODT function (Vladis Dronov) [2130210]
+- x86/sgx: Add wrapper for SGX2 EMODPR function (Vladis Dronov) [2130210]
+- x86/sgx: Add short descriptions to ENCLS wrappers (Vladis Dronov) [2130210]
+- x86/sgx: Ensure no data in PCMD page after truncate (Vladis Dronov) [2130210]
+- x86/sgx: Fix race between reclaimer and page fault handler (Vladis Dronov) [2130210]
+- x86/sgx: Obtain backing storage page with enclave mutex held (Vladis Dronov) [2130210]
+- x86/sgx: Mark PCMD page as dirty when modifying contents (Vladis Dronov) [2130210]
+- x86/sgx: Disconnect backing page references from dirty status (Vladis Dronov) [2130210]
+- HID: intel-ish-hid: ipc: Add Meteor Lake PCI device ID (Tony Camuso) [2132441]
+- hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message (Tony Camuso) [2132441]
+- HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo (Tony Camuso) [2132441]
+- ID: intel-ish-hid: hid-client: drop unexpected word "the" in the comments (Tony Camuso) [2132441]
+- HID: intel-ish-hid: ipc: use time_before to replace "jiffies < a" (Tony Camuso) [2132441]
+- HID: intel-ish-hid: ipc: add ADL and RPL device id (Tony Camuso) [2132441]
+- HID: intel-ish-hid: Use dma_alloc_coherent for firmware update (Tony Camuso) [2132441]
+- HID: intel-ish-hid: ishtp-fw-loader: Fix a kernel-doc formatting issue (Tony Camuso) [2132441]
+- HID: intel-ish-hid: ipc: Specify no cache snooping on TGL and ADL (Tony Camuso) [2132441]
+- HID: intel-ish-hid: ipc: only enable IRQ wakeup when requested (Tony Camuso) [2132441]
+- HID: intel-ish-hid: fix module device-id handling (Tony Camuso) [2132441]
+- HID: intel-ish-hid: hid-client: only load for matching devices (Tony Camuso) [2132441]
+- HID: intel-ish-hid: fw-loader: only load for matching devices (Tony Camuso) [2132441]
+- HID: intel-ish-hid: use constants for modaliases (Tony Camuso) [2132441]
+- s390/pci: add missing EX_TABLE entries to __pcistg_mio_inuser()/__pcilg_mio_inuser() (Tobias Huschle) [2141963]
+- s390/futex: add missing EX_TABLE entry to __futex_atomic_op() (Tobias Huschle) [2141963]
+- s390/uaccess: add missing EX_TABLE entries to __clear_user() (Tobias Huschle) [2141963]
+- net: usb: ax88179_178a: Fix packet receiving (Jose Ignacio Tornos Martinez) [2142725] {CVE-2022-2964}
+- net: usb: ax88179_178a: Fix out-of-bounds accesses in RX fixup (Jose Ignacio Tornos Martinez) [2142725] {CVE-2022-2964}
+- drm/i915/rpl-p: Add PCI IDs (Jocelyn Falempe) [2115880]
+- Revert "dma-buf: remove useless FMODE_LSEEK flag" (Jocelyn Falempe) [2115880]
+- drm/amd/display: Increase stack frame size limit for a few files. (Jocelyn Falempe) [2115880]
+- drm_crtc.h is missing include/linux/slab.h (Jocelyn Falempe) [2115880]
+- drm/amd/display: remove a duplicated declaration (Jocelyn Falempe) [2115880]
+- Revert "mm: shrinkers: provide shrinkers with names" (Jocelyn Falempe) [2115880]
+- Revert "drm/amdkfd: add SPM support for SVM" (Jocelyn Falempe) [2115880]
+- Merge DRM changes from upstream v5.19..v6.0 (Jocelyn Falempe) [2115880]
+- drm/i915/gvt: IMPORT_MODULE_NS workaround (Jocelyn Falempe) [2115880]
+- Replace EXPORT_SYMBOL_NS_GPL with EXPORT_SYMBOL_GPL (Jocelyn Falempe) [2115880]
+- Revert "vfio/gvt: Fix open/close when multiple device FDs are open" (Michel Dänzer) [2115880]
+- Revert "vfio/mdev: Pass in a struct vfio_device * to vfio_dma_rw()" (Jocelyn Falempe) [2115880]
+- Revert "drm/i915/gvt: convert to use vfio_register_emulated_iommu_dev" (Jocelyn Falempe) [2115880]
+- Revert "drm/i915/gvt: merge gvt.c into kvmgvt.c" (Jocelyn Falempe) [2115880]
+- Revert "vfio/mdev: Remove mdev_parent_ops" (Jocelyn Falempe) [2115880]
+- Revert "vfio: Make vfio_(un)register_notifier accept a vfio_device" (Jocelyn Falempe) [2115880]
+- Revert "drm/i915/gvt: Change from vfio_group_(un)pin_pages to vfio_(un)pin_pages" (Jocelyn Falempe) [2115880]
+- Revert "vfio: remove VFIO_GROUP_NOTIFY_SET_KVM" (Jocelyn Falempe) [2115880]
+- Revert "i915: Call aops write_begin() and write_end() directly" (Jocelyn Falempe) [2115880]
+- Merge DRM changes from upstream v5.18..v5.19 (Jocelyn Falempe) [2115880]
+- crypto: testmgr - disallow plain cbcmac(aes) and ghash in FIPS mode (Vladis Dronov) [2107595]
+- crypto: set the required FIPS_INTERNAL flag for gcm and ccm (Vladis Dronov) [2107595]
+- crypto: seqiv - flag instantiations as FIPS compliant (Vladis Dronov) [2107595]
+- crypto: xts - restrict key lengths to approved values in FIPS mode (Vladis Dronov) [2107595]
+- crypto: api - allow algs only in specific constructions in FIPS mode (Vladis Dronov) [2107595]
+- crypto: api - check for ERR pointers in crypto_destroy_tfm() (Vladis Dronov) [2107595]
+- crypto: api - Fix use-after-free and race in crypto_spawn_alg (Vladis Dronov) [2107595]
+- crypto: algapi - Avoid spurious modprobe on LOADED (Vladis Dronov) [2107595]
+- crypto: api - Retain alg refcount in crypto_grab_spawn (Vladis Dronov) [2107595]
+- crypto: api - Do not zap spawn->alg (Vladis Dronov) [2107595]
+- crypto: api - Fix race condition in crypto_spawn_alg (Vladis Dronov) [2107595]
+- crypto: api - Check spawn->alg under lock in crypto_drop_spawn (Vladis Dronov) [2107595]
+- crypto: algapi - reject NULL crypto_spawn::inst (Vladis Dronov) [2107595]
+- iavf: remove INITIAL_MAC_SET to allow gARP to work properly (Stefan Assmann) [1938635]
+- mm, slab: remove duplicate kernel-doc comment for ksize() (Michal Schmidt) [2143367]
+- slab: Introduce kmalloc_size_roundup() (Michal Schmidt) [2143367]
+- thermal: int340x: Mode setting with new OS handshake (Prarit Bhargava) [2072652]
+- thermal: int340x: Update OS policy capability handshake (Prarit Bhargava) [2072652]
+- hugetlb: remove unnecessary set_page_count in prep_compound_gigantic_page (Chris von Recklinghausen) [2143631]
+- mm/hugetlb: clear compound_nr before freeing gigantic pages (Chris von Recklinghausen) [2143631]
+- uprobes: __replace_page() avoid BUG in munlock_vma_page() (Chris von Recklinghausen) [2143631]
+- s390/boot: add secure boot trailer (Tobias Huschle) [2141967]
+- ice: Fix configuring VIRTCHNL_OP_CONFIG_VSI_QUEUES with unbalanced queues (Michal Schmidt) [2137378]
+- nvme: wait until quiesce is done (Ming Lei) [2144258]
+- scsi: make sure that request queue queiesce and unquiesce balanced (Ming Lei) [2144258]
+- scsi: avoid to quiesce sdev->request_queue two times (Ming Lei) [2144258]
+- dm: don't stop request queue after the dm device is suspended (Ming Lei) [2144258]
+
+* Tue Nov 29 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-441.el8]
+- ata: libata-core: Print timeout value when internal command times (Ewan D. Milne) [1823688]
+- ata: libata-core: fix sloppy parameter type in ata_exec_internal[_sg]() (Ewan D. Milne) [1823688]
+- ata: libata-core: make ata_exec_internal_sg() *static* (Ewan D. Milne) [1823688]
+- perf/x86/intel: Fix unchecked MSR access error for Alder Lake N (Michael Petlan) [2104807]
+- perf/x86/intel: Fix PEBS data source encoding for ADL (Michael Petlan) [2104807]
+- perf/x86/intel: Fix PEBS memory access info encoding for ADL (Michael Petlan) [2104807]
+- i40e: Fix DMA mappings leak (Ivan Vecera) [2077847]
+- fbcon: Fix delayed takeover locking (Jocelyn Falempe) [2134795]
+- fbcon: use min() to make code cleaner (Jocelyn Falempe) [2134795]
+- fbcon: Use array3_size() helper in scr_memcpyw() (Jocelyn Falempe) [2134795]
+- fbcon: Maintain a private array of fb_info (Jocelyn Falempe) [2134795]
+- fbcon: untangle fbcon_exit (Jocelyn Falempe) [2134795]
+- fbcon: Move more code into fbcon_release (Jocelyn Falempe) [2134795]
+- fbcon: Move console_lock for register/unlink/unregister (Jocelyn Falempe) [2134795]
+- fbcon: Consistently protect deferred_takeover with console_lock() (Jocelyn Falempe) [2134795]
+- fbcon: use lock_fb_info in fbcon_open/release (Jocelyn Falempe) [2134795]
+- fbcon: move more common code into fb_open() (Jocelyn Falempe) [2134795]
+- fbcon: Ditch error handling for con2fb_release_oldinfo (Jocelyn Falempe) [2134795]
+- fbcon: Extract fbcon_open/release helpers (Jocelyn Falempe) [2134795]
+- fb: Delete fb_info->queue (Jocelyn Falempe) [2134795]
+- fbcon: Replace FBCON_FLAGS_INIT with a boolean (Jocelyn Falempe) [2134795]
+- fbcon: Use delayed work for cursor (Jocelyn Falempe) [2134795]
+- fbdev/sysfs: Fix locking (Jocelyn Falempe) [2134795]
+- fbcon: delete delayed loading code (Jocelyn Falempe) [2134795]
+- fbcon: Introduce wrapper for console->fb_info lookup (Jocelyn Falempe) [2134795]
+- fbcon: Move fbcon_bmove(_rec) functions (Jocelyn Falempe) [2134795]
+- fbcon: delete a few unneeded forward decl (Jocelyn Falempe) [2134795]
+- fbcon: Avoid 'cap' set but not used warning (Jocelyn Falempe) [2134795]
+- video: fbcon: Fix warnings by using pr_debug() in fbcon (Jocelyn Falempe) [2134795]
+- fbcon: Fix user font detection test at fbcon_resize(). (Jocelyn Falempe) [2134795]
+- fbcon: remove now unusued 'softback_lines' cursor() argument (Jocelyn Falempe) [2134795]
+- fbcon: remove soft scrollback code (Jocelyn Falempe) [2134795]
+- fbcon: prevent user font height or width change from causing potential out-of-bounds access (Jocelyn Falempe) [2134795]
+- fbmem: pull fbcon_update_vcs() out of fb_set_var() (Jocelyn Falempe) [2134795]
+- fbcon: fix null-ptr-deref in fbcon_switch (Jocelyn Falempe) [2134795]
+- fbcon: Adjust indentation in set_con2fb_map (Jocelyn Falempe) [2134795]
+- fbdev: Unexport unlink_framebuffer() (Jocelyn Falempe) [2134795]
+- backlight: drop EARLY_EVENT_BLANK support (Jocelyn Falempe) [2134795]
+- fbcon: Export fbcon_update_vcs (Jocelyn Falempe) [2134795]
+- backlight: simplify lcd notifier (Jocelyn Falempe) [2134795]
+- fbcon: Document what I learned about fbcon locking (Jocelyn Falempe) [2134795]
+- fbcon: Call con2fb_map functions directly (Jocelyn Falempe) [2134795]
+- fbcon: replace FB_EVENT_MODE_CHANGE/_ALL with direct calls (Jocelyn Falempe) [2134795]
+- fb: Flatten control flow in fb_set_var (Jocelyn Falempe) [2134795]
+- fbdev: remove FBINFO_MISC_USEREVENT around fb_blank (Jocelyn Falempe) [2134795]
+- fbmem: pull fbcon_fb_blanked out of fb_blank (Jocelyn Falempe) [2134795]
+- Revert "backlight/fbcon: Add FB_EVENT_CONBLANK" (Jocelyn Falempe) [2134795]
+- fbdev: Call fbcon_get_requirement directly (Jocelyn Falempe) [2134795]
+- fbcon: Call fbcon_mode_deleted/new_modelist directly (Jocelyn Falempe) [2134795]
+- fbdev: directly call fbcon_suspended/resumed (Jocelyn Falempe) [2134795]
+- fbdev: unify unlink_framebuffer paths (Jocelyn Falempe) [2134795]
+- fbdev: make unregister/unlink functions not fail (Jocelyn Falempe) [2134795]
+- fbcon: call fbcon_fb_bind directly (Jocelyn Falempe) [2134795]
+- fbcon: call fbcon_fb_(un)registered directly (Jocelyn Falempe) [2134795]
+- fbdev: fbmem: fix memory access if logo is bigger than the screen (Jocelyn Falempe) [2134795]
+- fbdev: add kerneldoc do remove_conflicting_framebuffers() (Jocelyn Falempe) [2134795]
+- fbdev: allow apertures == NULL in remove_conflicting_framebuffers() (Jocelyn Falempe) [2134795]
+- fbdev: show fbdev number for debugging (Jocelyn Falempe) [2134795]
+- fbcon: use kvmalloc() for scrollback buffer (Jocelyn Falempe) [2134795]
+- fbdev: fbcon: Fix unregister crash when more than one framebuffer (Jocelyn Falempe) [2134795]
+- fb: fix lost console when the user unplugs a USB adapter (Jocelyn Falempe) [2134795]
+- fbcon: introduce for_each_registered_fb() helper (Jocelyn Falempe) [2134795]
+- timers/nohz: Last resort update jiffies on nohz_full IRQ entry (Waiman Long) [2108387]
+- irq: Call tick_irq_enter() inside HARDIRQ_OFFSET (Waiman Long) [2108387]
+- irqtime: Move irqtime entry accounting after irq offset incrementation (Waiman Long) [2108387]
+- sched/vtime: Consolidate IRQ time accounting (Waiman Long) [2108387]
+- s390/vtime: Use the generic IRQ entry accounting (Waiman Long) [2108387]
+- sched/cputime: Remove symbol exports from IRQ time accounting (Waiman Long) [2108387]
+- genirq/irqdomain: Don't try to free an interrupt that has no mapping (Waiman Long) [2108387]
+- genirq: Provide __irq_enter/exit_raw() (Waiman Long) [2108387]
+- powerpc/time: Only set CONFIG_ARCH_HAS_SCALED_CPUTIME on PPC64 (Waiman Long) [2108387]
+- powerpc/time: isolate scaled cputime accounting in dedicated functions. (Waiman Long) [2108387]
+- perf: Fix list corruption in perf_cgroup_switch() (Aaron Tomlin) [2136548]
+- gen_compile_commands: fix issues in RHEL-8 (Íñigo Huguet) [2136840]
+- .gitignore: Add compilation database file (Íñigo Huguet) [2136840]
+- gen_compile_commands: fix missing 'sys' package (Íñigo Huguet) [2136840]
+- gen_compile_commands: extract compiler command from a series of commands (Íñigo Huguet) [2136840]
+- gen_compile_commands: prune some directories (Íñigo Huguet) [2136840]
+- scripts/clang-tools: switch explicitly to Python 3 (Íñigo Huguet) [2136840]
+- Makefile: Add clang-tidy and static analyzer support to makefile (Íñigo Huguet) [2136840]
+- kbuild: wire up the build rule of compile_commands.json to Makefile (Íñigo Huguet) [2136840]
+- gen_compile_commands: remove the warning about too few .cmd files (Íñigo Huguet) [2136840]
+- gen_compile_commands: support *.o, *.a, modules.order in positional argument (Íñigo Huguet) [2136840]
+- gen_compile_commands: move directory walk to a generator function (Íñigo Huguet) [2136840]
+- gen_compile_commands: make -o option independent of -d option (Íñigo Huguet) [2136840]
+- gen_compile_commands: reword the help message of -d option (Íñigo Huguet) [2136840]
+- gen_compile_commands: do not support .cmd files under tools/ directory (Íñigo Huguet) [2136840]
+- gen_compile_commands: use choices for --log_levels option (Íñigo Huguet) [2136840]
+- gen_compile_commands: parse only the first line of .*.cmd files (Íñigo Huguet) [2136840]
+- gen_compile_commands: lower the entry count threshold (Íñigo Huguet) [2136840]
+- scripts: add a tool to produce a compile_commands.json file (Íñigo Huguet) [2136840]
+- iavf: Do not restart Tx queues after reset task failure (Petr Oros) [2134005]
+- iavf: Fix a crash during reset task (Petr Oros) [2134005]
+- spec: add bpf_testmod.ko to kselftests/bpf (Yauheni Kaliuta) [2140082]
+- fuse: fix readdir cache race (Miklos Szeredi) [2131391]
+- ice: config netdev tc before setting queues number (Petr Oros) [2103946]
+- ice: Fix ice_xdp_xmit() when XDP TX queue number is not sufficient (Petr Oros) [2103946]
+- ice: Don't double unplug aux on peer initiated reset (Petr Oros) [2103946]
+- ice: use bitmap_free instead of devm_kfree (Petr Oros) [2103946]
+- ice: Fix DMA mappings leak (Petr Oros) [2103946]
+- ice: Fix call trace with null VSI during VF reset (Petr Oros) [2103946]
+- ice: Fix VSI rebuild WARN_ON check for VF (Petr Oros) [2103946]
+- net/ice: fix initializing the bitmap in the switch code (Petr Oros) [2103946]
+- net: ice: fix error NETIF_F_HW_VLAN_CTAG_FILTER check in ice_vsi_sync_fltr() (Petr Oros) [2103946]
+- ice: allow toggling loopback mode via ndo_set_features callback (Petr Oros) [2103946]
+- ice: compress branches in ice_set_features() (Petr Oros) [2103946]
+- ice: Add support for PPPoE hardware offload (Petr Oros) [2103946]
+- ice: add i2c write command (Petr Oros) [2103946]
+- ice: Remove pci_aer_clear_nonfatal_status() call (Petr Oros) [2103946]
+- ice: Remove unnecessary NULL check before dev_put (Petr Oros) [2103946]
+- ice: use eth_broadcast_addr() to set broadcast address (Petr Oros) [2103946]
+- ice: switch: dynamically add VLAN headers to dummy packets (Petr Oros) [2103946]
+- ice: Add support for VLAN TPID filters in switchdev (Petr Oros) [2103946]
+- ice: Add support for double VLAN in switchdev (Petr Oros) [2103946]
+- intel/ice:fix repeated words in comments (Petr Oros) [2103946]
+- drivers/net/ethernet/intel: fix typos in comments (Petr Oros) [2103946]
+- ice: Use correct order for the parameters of devm_kcalloc() (Petr Oros) [2103946]
+- ice: remove u16 arithmetic in ice_gnss (Petr Oros) [2103946]
+- ice: remove VLAN representor specific ops (Petr Oros) [2103946]
+- ice: don't set VF VLAN caps in switchdev (Petr Oros) [2103946]
+- kernel-doc: fix undefined args variable (Jan Stancek) [2134954]
+
+* Tue Nov 22 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-440.el8]
+- sunrpc: Set sk_allocation to GFP_NOFS to avoid using current->task_frag. (Guillaume Nault) [2089660]
+- selftests/vm: enable running select groups of tests (Joel Savitz) [2089502]
+- selftests: make use of GUP_TEST_FILE macro (Nico Pache) [2089502]
+- selftests: clarify common error when running gup_test (Nico Pache) [2089502]
+- tools/testing/selftests/vm/gup_test.c: clarify error statement (Nico Pache) [2089502]
+- mm: remove the extra ZONE_DEVICE struct page refcount (Chris von Recklinghausen) [2082247]
+- mm: simplify freeing of devmap managed pages (Chris von Recklinghausen) [2082247]
+- mm: move free_devmap_managed_page to memremap.c (Chris von Recklinghausen) [2082247]
+- mm/memremap: add ZONE_DEVICE support for compound pages (Chris von Recklinghausen) [2082247]
+- mm/page_alloc: refactor memmap_init_zone_device() page init (Chris von Recklinghausen) [2082247]
+- mm/page_alloc: split prep_compound_page into head and tail subparts (Chris von Recklinghausen) [2082247]
+- mm/debug: sync up MR_CONTIG_RANGE and MR_LONGTERM_PIN (Chris von Recklinghausen) [2082247]
+- mm: gup: use helper PAGE_ALIGNED in populate_vma_page_range() (Chris von Recklinghausen) [2082247]
+- mm: gup: remove useless BUG_ON in __get_user_pages() (Chris von Recklinghausen) [2082247]
+- mm: gup: remove unneed local variable orig_refs (Chris von Recklinghausen) [2082247]
+- mm: gup: remove set but unused local variable major (Chris von Recklinghausen) [2082247]
+- writeback: make the laptop_mode prototypes available unconditionally (Chris von Recklinghausen) [2082247]
+- mm: hide laptop_mode_wb_timer entirely behind the BDI API (Chris von Recklinghausen) [2082247]
+- mm: remove special swap entry functions (Chris von Recklinghausen) [2082247]
+- hugetlb: address ref count racing in prep_compound_gigantic_page (Chris von Recklinghausen) [2082247]
+- hugetlb: remove prep_compound_huge_page cleanup (Chris von Recklinghausen) [2082247]
+- mm: page_vma_mapped_walk(): get vma_address_end() earlier (Chris von Recklinghausen) [2082247]
+- mm: page_vma_mapped_walk(): use goto instead of while (1) (Chris von Recklinghausen) [2082247]
+- mm: page_vma_mapped_walk(): add a level of indentation (Chris von Recklinghausen) [2082247]
+- mm: page_vma_mapped_walk(): crossing page table boundary (Chris von Recklinghausen) [2082247]
+- mm: page_vma_mapped_walk(): prettify PVMW_MIGRATION block (Chris von Recklinghausen) [2082247]
+- mm: page_vma_mapped_walk(): use pmde for *pvmw->pmd (Chris von Recklinghausen) [2082247]
+- mm: page_vma_mapped_walk(): settle PageHuge on entry (Chris von Recklinghausen) [2082247]
+- mm: page_vma_mapped_walk(): use page for pvmw->page (Chris von Recklinghausen) [2082247]
+- mm/gup: longterm pin migration cleanup (Chris von Recklinghausen) [2082247]
+- mm/gup: change index type to long as it counts pages (Chris von Recklinghausen) [2082247]
+- mm/gup: migrate pinned pages out of movable zone (Chris von Recklinghausen) [2082247]
+- mm: honor PF_MEMALLOC_PIN for all movable pages (Chris von Recklinghausen) [2082247]
+- mm cma: rename PF_MEMALLOC_NOCMA to PF_MEMALLOC_PIN (Chris von Recklinghausen) [2082247]
+- mm/huge_memory.c: use helper function migration_entry_to_page() (Chris von Recklinghausen) [2082247]
+- block: add queue_to_disk() to get gendisk from request_queue (Chris von Recklinghausen) [2082247]
+- mm/hugetlb: remove redundant check in preparing and destroying gigantic page (Chris von Recklinghausen) [2082247]
+- mm/hugetlb: use helper huge_page_order and pages_per_huge_page (Chris von Recklinghausen) [2082247]
+- mm: handle zone device pages in release_pages() (Chris von Recklinghausen) [2082247]
+- mm/gup: remove the vma allocation from gup_longterm_locked() (Chris von Recklinghausen) [2082247]
+- mm/mremap_pages: fix static key devmap_managed_key updates (Chris von Recklinghausen) [2082247]
+- mm/memremap.c: convert devmap static branch to {inc,dec} (Chris von Recklinghausen) [2082247]
+- mm/page_alloc: handle a missing case for memalloc_nocma_{save/restore} APIs (Chris von Recklinghausen) [2082247]
+- mm: store compound_nr as well as compound_order (Chris von Recklinghausen) [2082247]
+- mm: clean up the last pieces of page fault accountings (Chris von Recklinghausen) [2082247]
+- mm/x86: use general page fault accounting (Chris von Recklinghausen) [2082247]
+- mm/s390: use general page fault accounting (Chris von Recklinghausen) [2082247]
+- mm/powerpc: use general page fault accounting (Chris von Recklinghausen) [2082247]
+- mm/arm64: use general page fault accounting (Chris von Recklinghausen) [2082247]
+- mm: do page fault accounting in handle_mm_fault (Chris von Recklinghausen) [2082247]
+- include/linux/sched/mm.h: optimize current_gfp_context() (Chris von Recklinghausen) [2082247]
+- mm/page_alloc: fix memalloc_nocma_{save/restore} APIs (Chris von Recklinghausen) [2082247]
+- mm: remove redundant check non_swap_entry() (Chris von Recklinghausen) [2082247]
+- mm: rename gfpflags_to_migratetype to gfp_migratetype for same convention (Chris von Recklinghausen) [2082247]
+- mm,page_alloc,cma: conditionally prefer cma pageblocks for movable allocations (Chris von Recklinghausen) [2082247]
+- mm/vma: introduce VM_ACCESS_FLAGS (Chris von Recklinghausen) [2082247]
+- mm/vma: make vma_is_accessible() available for general use (Chris von Recklinghausen) [2082247]
+- kernel/events/uprobes.c: only do FOLL_SPLIT_PMD for uprobe register (Chris von Recklinghausen) [2082247]
+- uprobe: collapse THP pmd after removing all uprobes (Chris von Recklinghausen) [2082247]
+- uprobe: use FOLL_SPLIT_PMD instead of FOLL_SPLIT (Chris von Recklinghausen) [2082247]
+- mm, thp: introduce FOLL_SPLIT_PMD (Chris von Recklinghausen) [2082247]
+- mm: clean up is_device_*_page() definitions (Chris von Recklinghausen) [2082247]
+- driver core: Add helper device_find_child_by_name() (Chris von Recklinghausen) [2082247]
+- mm/page_alloc.c: remove unnecessary parameter in rmqueue_pcplist (Chris von Recklinghausen) [2082247]
+- sctp: handle the error returned from sctp_auth_asoc_init_active_key (Xin Long) [2134892]
+- sctp: leave the err path free in sctp_stream_init to sctp_stream_free (Xin Long) [2134892]
+- sctp: fix sleep in atomic context bug in timer handlers (Xin Long) [2134892]
+- stcp: Use memset_after() to zero sctp_stream_out_ext (Xin Long) [2134892]
+- sctp: read sk->sk_bound_dev_if once in sctp_rcv() (Xin Long) [2134892]
+- ethtool: add header/data split indication (Ivan Vecera) [2135624]
+- xfrm: store and rely on direction to construct offload flags (Sabrina Dubroca) [2137562]
+- platform/x86/intel: pmc: Support Intel Raptorlake P (Prarit Bhargava) [2076736]
+
+* Fri Nov 18 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-439.el8]
+- KVM: selftests: Build the memslot tests for arm64 (Gavin Shan) [2132161]
+- KVM: selftests: Fix number of pages for memory slot in memslot_modification_stress_test (Gavin Shan) [2132161]
+- tools/include: Add _RET_IP_ and math definitions to kernel.h (Gavin Shan) [2132161]
+- tcp: fix early ETIMEDOUT after spurious non-SACK RTO (Davide Caratti) [2136409]
+- tcp: add a missing nf_reset_ct() in 3WHS handling (Davide Caratti) [2136409]
+- sock: redo the psock vs ULP protection check (Davide Caratti) [2136409]
+- tcp: tcp_rtx_synack() can be called from process context (Davide Caratti) [2136409]
+- tcp: fix tcp_mtup_probe_success vs wrong snd_cwnd (Davide Caratti) [2136409]
+- tcp: fix F-RTO may not work correctly when receiving DSACK (Davide Caratti) [2136409]
+- selftests: xsk: do not send zero-length packets (Ivan Vecera) [2135634]
+- selftests/xsk: Introduce XDP prog load based on existing AF_XDP socket (Ivan Vecera) [2135634]
+- selftests, xsk: Fix rx_full stats test (Ivan Vecera) [2135634]
+- selftests/bpf: Fix xdpxceiver failures for no hugepages (Ivan Vecera) [2135634]
+- selftests/xsk: Add missing close() on netns fd (Ivan Vecera) [2135634]
+- selftests, xsk: Fix bpf_res cleanup test (Ivan Vecera) [2135634]
+- selftests: xsk: Add frame_headroom test (Ivan Vecera) [2135634]
+- selftests: xsk: Change interleaving of packets in unaligned mode (Ivan Vecera) [2135634]
+- selftests: xsk: Add single packet test (Ivan Vecera) [2135634]
+- selftests: xsk: Introduce pacing of traffic (Ivan Vecera) [2135634]
+- selftests: xsk: Fix socket creation retry (Ivan Vecera) [2135634]
+- selftests: xsk: Put the same buffer only once in the fill ring (Ivan Vecera) [2135634]
+- selftests: xsk: Fix missing initialization (Ivan Vecera) [2135634]
+- selftests: xsk: Add tests for 2K frame size (Ivan Vecera) [2135634]
+- selftests: xsk: Add tests for invalid xsk descriptors (Ivan Vecera) [2135634]
+- selftests: xsk: Eliminate test specific if-statement in test runner (Ivan Vecera) [2135634]
+- selftests: xsk: Add test for unaligned mode (Ivan Vecera) [2135634]
+- selftests: xsk: Introduce replacing the default packet stream (Ivan Vecera) [2135634]
+- selftests: xsk: Allow for invalid packets (Ivan Vecera) [2135634]
+- selftests: xsk: Eliminate MAX_SOCKS define (Ivan Vecera) [2135634]
+- selftests: xsx: Make pthreads local scope (Ivan Vecera) [2135634]
+- selftests: xsk: Make xdp_flags and bind_flags local (Ivan Vecera) [2135634]
+- selftests: xsk: Specify number of sockets to create (Ivan Vecera) [2135634]
+- selftests: xsk: Replace second_step global variable (Ivan Vecera) [2135634]
+- selftests: xsk: Introduce rx_on and tx_on in ifobject (Ivan Vecera) [2135634]
+- selftests: xsk: Add use_poll to ifobject (Ivan Vecera) [2135634]
+- selftests: xsx: Introduce test name in test spec (Ivan Vecera) [2135634]
+- selftests: xsk: Make frame_size configurable (Ivan Vecera) [2135634]
+- selftests: xsk: Move rxqsize into xsk_socket_info (Ivan Vecera) [2135634]
+- selftests: xsk: Move num_frames and frame_headroom to xsk_umem_info (Ivan Vecera) [2135634]
+- selftests: xsk: Introduce test specifications (Ivan Vecera) [2135634]
+- selftests: xsk: Introduce type for thread function (Ivan Vecera) [2135634]
+- selftests: xsk: Simplify xsk and umem arrays (Ivan Vecera) [2135634]
+- selftests: xsk: Preface options with opt (Ivan Vecera) [2135634]
+- selftests: xsk: Make enums lower case (Ivan Vecera) [2135634]
+- selftests: xsk: Generate packets from specification (Ivan Vecera) [2135634]
+- selftests: xsk: Generate packet directly in umem (Ivan Vecera) [2135634]
+- selftests: xsk: Simplify cleanup of ifobjects (Ivan Vecera) [2135634]
+- selftests: xsk: Decrease sending speed (Ivan Vecera) [2135634]
+- selftests: xsk: Validate tx stats on tx thread (Ivan Vecera) [2135634]
+- selftests: xsk: Simplify packet validation in xsk tests (Ivan Vecera) [2135634]
+- selftests: xsk: Rename worker_* functions that are not thread entry points (Ivan Vecera) [2135634]
+- selftests: xsk: Disassociate umem size with packets sent (Ivan Vecera) [2135634]
+- selftests: xsk: Remove end-of-test packet (Ivan Vecera) [2135634]
+- selftests: xsk: Simplify the retry code (Ivan Vecera) [2135634]
+- selftests: xsk: Return correct error codes (Ivan Vecera) [2135634]
+- selftests: xsk: Remove unused variables (Ivan Vecera) [2135634]
+- selftests: xsk: Remove the num_tx_packets option (Ivan Vecera) [2135634]
+- selftests: xsk: Remove color mode (Ivan Vecera) [2135634]
+- xsk: Fix possible crash when multiple sockets are created (Ivan Vecera) [2135634]
+- i40e: xsk: Move tmp desc array from driver to pool (Ivan Vecera) [2135634]
+- xsk: Initialise xskb free_list_node (Ivan Vecera) [2135634]
+- xsk: Fix corrupted packets for XDP_SHARED_UMEM (Ivan Vecera) [2135634]
+- xsk: Fix clang build error in __xp_alloc (Ivan Vecera) [2135634]
+- xsk: Do not write NULL in SW ring at allocation failure (Ivan Vecera) [2135634]
+- xsk: Fix crash on double free in buffer pool (Ivan Vecera) [2135634]
+- xsk: Optimize for aligned case (Ivan Vecera) [2135634]
+- xsk: Batched buffer allocation for the pool (Ivan Vecera) [2135634]
+- xsk: Get rid of unused entry in struct xdp_buff_xsk (Ivan Vecera) [2135634]
+- redhat/configs: Move config files under common/generic/x86 to generic/x86_64 (Waiman Long) [2139172]
+- fbmem: Check virtual screen sizes in fb_set_var() (Wander Lairson Costa) [2109116] {CVE-2021-33655}
+- fbcon: Prevent that screen size is smaller than font size (Wander Lairson Costa) [2109116] {CVE-2021-33655}
+- fbcon: Disallow setting font bigger than screen size (Wander Lairson Costa) [2109116] {CVE-2021-33655}
+- video: of_display_timing.h: include errno.h (Wander Lairson Costa) [2109116] {CVE-2021-33655}
+- MAINTAINERS: pick up all vfio_ap docs for VFIO AP maintainers (Cédric Le Goater) [1660908]
+- s390/docs: fix warnings for vfio_ap driver doc (Cédric Le Goater) [1660908]
+- s390/docs: fix warnings for vfio_ap driver lock usage doc (Cédric Le Goater) [1660908]
+- s390/Docs: new doc describing lock usage by the vfio_ap device driver (Cédric Le Goater) [1660908]
+- s390/vfio-ap: bypass unnecessary processing of AP resources (Cédric Le Goater) [1660908]
+- s390/vfio-ap: update docs to include dynamic config support (Cédric Le Goater) [1660908]
+- s390/vfio-ap: handle config changed and scan complete notification (Cédric Le Goater) [1660908]
+- s390/vfio-ap: sysfs attribute to display the guest's matrix (Cédric Le Goater) [1660908]
+- s390/vfio-ap: implement in-use callback for vfio_ap driver (Cédric Le Goater) [1660908]
+- s390/vfio-ap: reset queues after adapter/domain unassignment (Cédric Le Goater) [1660908]
+- s390/vfio-ap: hot plug/unplug of AP devices when probed/removed (Cédric Le Goater) [1660908]
+- s390/vfio-ap: allow hot plug/unplug of AP devices when assigned/unassigned (Cédric Le Goater) [1660908]
+- s390/vfio-ap: prepare for dynamic update of guest's APCB on queue probe/remove (Cédric Le Goater) [1660908]
+- s390/vfio-ap: prepare for dynamic update of guest's APCB on assign/unassign (Cédric Le Goater) [1660908]
+- s390/vfio-ap: use proper locking order when setting/clearing KVM pointer (Cédric Le Goater) [1660908]
+- s390/vfio-ap: introduce new mutex to control access to the KVM pointer (Cédric Le Goater) [1660908]
+- s390/vfio-ap: rename matrix_dev->lock mutex to matrix_dev->mdevs_lock (Cédric Le Goater) [1660908]
+- s390/vfio-ap: allow assignment of unavailable AP queues to mdev device (Cédric Le Goater) [1660908]
+- s390/vfio-ap: refresh guest's APCB by filtering AP resources assigned to mdev (Cédric Le Goater) [1660908]
+- s390/vfio-ap: introduce shadow APCB (Cédric Le Goater) [1660908]
+- s390/vfio-ap: manage link between queue struct and matrix mdev (Cédric Le Goater) [1660908]
+- s390/vfio-ap: move probe and remove callbacks to vfio_ap_ops.c (Cédric Le Goater) [1660908]
+- s390/vfio-ap: use new AP bus interface to search for queue devices (Cédric Le Goater) [1660908]
+- s390/ap: fix error handling in __verify_queue_reservations() (Cédric Le Goater) [1660908]
+- s390/zcrypt: code cleanup (Cédric Le Goater) [1660908]
+- s390/zcrypt: fix wrong offset index for APKA master key valid state (Cédric Le Goater) [1660908]
+- s390/ap: uevent on apmask/aqpmask change (Cédric Le Goater) [1660908]
+- s390/vfio-ap: fix kernel doc and signature of group notifier functions (Cédric Le Goater) [1660908]
+- s390/ap: enable sysfs attribute scans to force AP bus rescan (Cédric Le Goater) [1660908]
+- s390/ap: fix crash on older machines based on QCI info missing (Cédric Le Goater) [1660908]
+- s390/ap: notify drivers on config changed and scan complete callbacks (Cédric Le Goater) [1660908]
+- s390/ap: driver callback to indicate resource in use (Cédric Le Goater) [1660908]
+- MAINTAINERS: update file path for S390 VFIO AP DRIVER (Cédric Le Goater) [1660908]
+- s390/vfio-ap: add status attribute to AP queue device's sysfs dir (Cédric Le Goater) [1660908]
+- s390/ap: function rework based on compiler warning (Cédric Le Goater) [1660908]
+- s390/vfio-ap: s390/crypto: fix all kernel-doc warnings (Cédric Le Goater) [1660908]
+- s390/ap: new module option ap.useirq (Cédric Le Goater) [1660908]
+- s390/ap: fix state machine hang after failure to enable irq (Cédric Le Goater) [1660908]
+- s390/crypto: fix all kernel-doc warnings in vfio_ap_ops.c (Cédric Le Goater) [1660908]
+- s390/ap: use the common device_driver pointer (Cédric Le Goater) [1660908]
+- s390/vfio-ap: replace open coded locks for VFIO_GROUP_NOTIFY_SET_KVM notification (Cédric Le Goater) [1660908]
+- s390/vfio-ap: r/w lock for PQAP interception handler function pointer (Cédric Le Goater) [1660908]
+- s390/vfio-ap: clean up mdev resources when remove callback invoked (Cédric Le Goater) [1660908]
+- s390/vfio-ap: clean up vfio_ap_drv's definition (Cédric Le Goater) [1660908]
+- s390/vfio-ap: fix circular lockdep when setting/clearing crypto masks (Cédric Le Goater) [1660908]
+- s390/vfio-ap: clean up vfio_ap resources when KVM pointer invalidated (Cédric Le Goater) [1660908]
+- s390/vfio-ap: No need to disable IRQ after queue reset (Cédric Le Goater) [1660908]
+- Documentation: s390/vfio-ap: eliminate duplicated word (Cédric Le Goater) [1660908]
+- docs: s390: Fix wrong label Guest2 instead of Guest3 (Cédric Le Goater) [1660908]
+- s390: vfio-ap: make local functions and data static (Cédric Le Goater) [1660908]
+- i40e: Fix set max_tx_rate when it is lower than 1 Mbps (Petr Oros) [2106964]
+- i40e: Fix VF set max MTU size (Petr Oros) [2106964]
+- iavf: Fix set max MTU size with port VLAN and jumbo frames (Petr Oros) [2106964]
+- iavf: Fix bad page state (Petr Oros) [2106964]
+- i40e: Fix VF hang when reset is triggered on another VF (Ivan Vecera) [2103801]
+- mpi3mr: a minor change (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Select CONFIG_SCSI_SAS_ATTRS (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Remove unnecessary cast (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Update driver version to 8.2.0.3.0 (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Fix scheduling while atomic type bug (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Scan the devices during resume time (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Free enclosure objects during driver unload (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Handle 0xF003 Fault Code (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Graceful handling of surprise removal of PCIe HBA (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Support new power management framework (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Update mpi3 header files (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Fix error code in mpi3mr_transport_smp_handler() (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Fix error codes in mpi3mr_report_manufacture() (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Block I/Os while refreshing target dev objects (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Refresh SAS ports during soft reset (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Support SAS transport class callbacks (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add framework to issue MPT transport cmds (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add SAS SATA end devices to STL (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Get target object based on rphy (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add expander devices to STL (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Enable STL on HBAs where multipath is disabled (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add helper functions to manage device's port (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add helper functions to retrieve device objects (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add framework to add phys to STL (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Enable Enclosure device add event (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add helper functions to retrieve config pages (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add framework to issue config requests (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Add config and transport related debug flags (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Delete a stray tab (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Unlock on error path (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Reduce VD queue depth on detecting throttling (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Resource Based Metering (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Increase cmd_per_lun to 128 (Tomas Henzl) [2115748]
+- scsi: mpi3mr: Enable shared host tagset (Tomas Henzl) [2115748]
+- lpfc version to 14.0.0.18. (Dick Kennedy) [2114050]
+- scsi: lpfc: Create a sysfs entry called lpfc_xcvr_data for transceiver info (Dick Kennedy) [2114050]
+- scsi: lpfc: Log when congestion management limits are in effect (Dick Kennedy) [2114050]
+- scsi: lpfc: Fix hard lockup when reading the rx_monitor from debugfs (Dick Kennedy) [2114050]
+- scsi: lpfc: Set sli4_param's cmf option to zero when CMF is turned off (Dick Kennedy) [2114050]
+- scsi: lpfc: Fix various issues reported by tools (Dick Kennedy) [2114050]
+- scsi: lpfc: Add reporting capability for Link Degrade Signaling (Dick Kennedy) [2114050]
+- scsi: lpfc: Rework FDMI attribute registration for unintential padding (Dick Kennedy) [2114050]
+- scsi: lpfc: Rework lpfc_fdmi_cmd() routine for cleanup and consistency (Dick Kennedy) [2114050]
+- scsi: lpfc: Update congestion mode logging for Emulex SAN Manager application (Dick Kennedy) [2114050]
+- scsi: lpfc: Fix multiple NVMe remoteport registration calls for the same NPort ID (Dick Kennedy) [2114050]
+- scsi: lpfc: Add missing free iocb and nlp kref put for early return VMID cases (Dick Kennedy) [2114050]
+- scsi: lpfc: Fix mbuf pool resource detected as busy at driver unload (Dick Kennedy) [2114050]
+- scsi: lpfc: Fix FLOGI ACC with wrong SID in PT2PT topology (Dick Kennedy) [2114050]
+- scsi: lpfc: Fix prli_fc4_req checks in PRLI handling (Dick Kennedy) [2114050]
+- scsi: lpfc: Remove unneeded result variable (Dick Kennedy) [2114050]
+- scsi: lpfc: Remove the unneeded result variable (Dick Kennedy) [2114050]
+- scsi: lpfc: Copyright updates for 14.2.0.6 patches (Dick Kennedy) [2114050]
+- scsi: lpfc: Add warning notification period to CMF_SYNC_WQE (Dick Kennedy) [2114050]
+- scsi: lpfc: Rework MIB Rx Monitor debug info logic (Dick Kennedy) [2114050]
+- scsi: lpfc: Fix null ndlp ptr dereference in abnormal exit path for GFT_ID (Dick Kennedy) [2114050]
+- scsi: lpfc: Fix unsolicited FLOGI receive handling during PT2PT discovery (Dick Kennedy) [2114050]
+- scsi: lpfc: Check the return value of alloc_workqueue() (Dick Kennedy) [2114050]
+- scsi: lpfc: Rework FDMI initialization after link up (Dick Kennedy) [2114050]
+- scsi: mpt3sas: Revert "scsi: mpt3sas: Fix ioc->base_readl() use" (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Revert "scsi: mpt3sas: Fix writel() use" (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Fix return value check of dma_get_required_mask() (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Fix use-after-free warning (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Update driver version to 43.100.00.00 (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Increase cmd_per_lun to 128 (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Fix trace buffer registration failed (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Don't change DMA mask while reallocating pools (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Prevent error handler escalation when device removed (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Disable MPI2_FUNCTION_FW_DOWNLOAD for ATTO devices (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Add support for ATTO ExpressSAS H12xx GT devices (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Remove flush_scheduled_work() call (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Fix whitespace and spelling mistake (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Fix typo in comment (Tomas Henzl) [2115763]
+- scsi: mpt3sas: Fix out-of-bounds compiler warning (Tomas Henzl) [2115763]
+- media: em28xx: initialize refcount before kref_get (Dean Nelson) [2128003] {CVE-2022-3239}
+- gfs2: Register fs after creating workqueues (Bob Peterson) [2121201]
+- sysctl: returns -EINVAL when a negative value is passed to proc_doulongvec_minmax (Vratislav Bendel) [2139096]
+- mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse (Waiman Long) [2137585] {CVE-2022-42703}
+- mm: rmap: explicitly reset vma->anon_vma in unlink_anon_vmas() (Waiman Long) [2137585] {CVE-2022-42703}
+- mm/rmap: Fix typos in comments (Waiman Long) [2137585] {CVE-2022-42703}
+- iavf: Fix set max MTU size with port VLAN and jumbo frames (Stefan Assmann) [2103944]
+- iavf: Fix bad page state (Stefan Assmann) [2103944]
+- iavf: Fix cached head and tail value for iavf_get_tx_pending (Stefan Assmann) [2103944]
+- iavf: Fix change VF's mac address (Stefan Assmann) [2103944]
+- iavf: Fix race between iavf_close and iavf_reset_task (Stefan Assmann) [2103944]
+- net: ethernet: move from strlcpy with unused retval to strscpy (Stefan Assmann) [2103944]
+- iavf: Fix 'tc qdisc show' listing too many queues (Stefan Assmann) [2103944]
+- iavf: Fix max_rate limiting (Stefan Assmann) [2103944]
+- iavf: Check for duplicate TC flower filter before parsing (Stefan Assmann) [2103944]
+- iavf: Fix handling of dummy receive descriptors (Stefan Assmann) [2103944]
+- iavf: Disallow changing rx/tx-frames and rx/tx-frames-irq (Stefan Assmann) [2103944]
+- intel/iavf:fix repeated words in comments (Stefan Assmann) [2103944]
+- intel: remove unused macros (Stefan Assmann) [2103944]
+- iavf: Add waiting for response from PF in set mac (Stefan Assmann) [2103944]
+- iavf: Use irq_update_affinity_hint() (Stefan Assmann) [2103944]
+- net: Fix return value of qdisc ingress handling on success (Ivan Vecera) [2131361]
+
+* Mon Nov 14 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-438.el8]
+- PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time (Emanuele Giuseppe Esposito) [2082836]
+- megaraid_sas: add #ifdef CONFIG_RHEL_DIFFERENCES (Tomas Henzl) [2119096]
+- mpt3sas: add #ifdef CONFIG_RHEL_DIFFERENCES (Tomas Henzl) [2119096]
+- mptcp: fix unreleased socket in accept queue (Paolo Abeni) [2135884]
+- mptcp: factor out __mptcp_close() without socket lock (Paolo Abeni) [2135884]
+- mptcp: do not queue data on closed subflows (Paolo Abeni) [2135884]
+- mptcp: move subflow cleanup in mptcp_destroy_common() (Paolo Abeni) [2135884]
+- mptcp: fix msk traversal in mptcp_nl_cmd_set_flags() (Paolo Abeni) [2135884]
+- xfs: fix perag reference leak on iteration race with growfs (Brian Foster) [2081105]
+- xfs: terminate perag iteration reliably on agcount (Brian Foster) [2081105]
+- xfs: rename the next_agno perag iteration variable (Brian Foster) [2081105]
+- xfs: fold perag loop iteration logic into helper function (Brian Foster) [2081105]
+- xfs: prevent spoofing of rtbitmap blocks when recovering buffers (Brian Foster) [2081105]
+- xfs: Enforce attr3 buffer recovery order (Brian Foster) [2081105]
+- xfs: avoid unnecessary waits in xfs_log_force_lsn() (Brian Foster) [2081105]
+- xfs: factor out forced iclog flushes (Brian Foster) [2081105]
+- xfs: detect misaligned rtinherit directory extent size hints (Brian Foster) [2081105]
+- xfs: fix an integer overflow error in xfs_growfs_rt (Brian Foster) [2081105]
+- xfs: improve FSGROWFSRT precondition checking (Brian Foster) [2081105]
+- xfs: reset child dir '..' entry when unlinking child (Brian Foster) [2081105]
+- xfs: check for sparse inode clusters that cross new EOAG when shrinking (Brian Foster) [2081105]
+- xfs: Fix multiple fall-through warnings for Clang (Brian Foster) [2081105]
+- xfs: remove callback dequeue loop from xlog_state_do_iclog_callbacks (Brian Foster) [2081105]
+- xfs: don't nest icloglock inside ic_callback_lock (Brian Foster) [2081105]
+- xfs: Initialize error in xfs_attr_remove_iter (Brian Foster) [2081105]
+- xfs: remove dead stale buf unpin handling code (Brian Foster) [2081105]
+- xfs: hold buffer across unpin and potential shutdown processing (Brian Foster) [2081105]
+- xfs: force the log offline when log intent item recovery fails (Brian Foster) [2081105]
+- xfs: shorten the shutdown messages to a single line (Brian Foster) [2081105]
+- xfs: print name of function causing fs shutdown instead of hex pointer (Brian Foster) [2081105]
+- xfs: fix type mismatches in the inode reclaim functions (Brian Foster) [2081105]
+- xfs: separate primary inode selection criteria in xfs_iget_cache_hit (Brian Foster) [2081105]
+- xfs: refactor the inode recycling code (Brian Foster) [2081105]
+- xfs: add iclog state trace events (Brian Foster) [2081105]
+- xfs: xfs_log_force_lsn isn't passed a LSN (Brian Foster) [2081105]
+- xfs: remove need_start_rec parameter from xlog_write() (Brian Foster) [2081105]
+- xfs: remove xfs_blkdev_issue_flush (Brian Foster) [2081105]
+- xfs: Fix 64-bit division on 32-bit in xlog_state_switch_iclogs() (Brian Foster) [2081105]
+- xfs: log stripe roundoff is a property of the log (Brian Foster) [2081105]
+- xfs: remove redundant initialization of variable error (Brian Foster) [2081105]
+- xfs: perag may be null in xfs_imap() (Brian Foster) [2081105]
+- xfs: Make attr name schemes consistent (Brian Foster) [2081105]
+- xfs: Fix default ASSERT in xfs_attr_set_iter (Brian Foster) [2081105]
+- xfs: rename struct xfs_eofblocks to xfs_icwalk (Brian Foster) [2081105]
+- xfs: change the prefix of XFS_EOF_FLAGS_* to XFS_ICWALK_FLAG_ (Brian Foster) [2081105]
+- xfs: selectively keep sick inodes in memory (Brian Foster) [2081105]
+- xfs: drop IDONTCACHE on inodes when we mark them sick (Brian Foster) [2081105]
+- xfs: drop the AGI being passed to xfs_check_agi_freecount (Brian Foster) [2081105]
+- xfs: cleanup error handling in xfs_buf_get_map (Brian Foster) [2081105]
+- xfs: remove ->b_offset handling for page backed buffers (Brian Foster) [2081105]
+- xfs: refactor per-AG inode tagging functions (Brian Foster) [2081105]
+- xfs: merge xfs_reclaim_inodes_ag into xfs_inode_walk_ag (Brian Foster) [2081105]
+- xfs: pass struct xfs_eofblocks to the inode scan callback (Brian Foster) [2081105]
+- xfs: make the icwalk processing functions clean up the grab state (Brian Foster) [2081105]
+- xfs: clean up inode state flag tests in xfs_blockgc_igrab (Brian Foster) [2081105]
+- xfs: remove indirect calls from xfs_inode_walk{,_ag} (Brian Foster) [2081105]
+- xfs: remove iter_flags parameter from xfs_inode_walk_* (Brian Foster) [2081105]
+- xfs: move xfs_inew_wait call into xfs_dqrele_inode (Brian Foster) [2081105]
+- xfs: separate the dqrele_all inode grab logic from xfs_inode_walk_ag_grab (Brian Foster) [2081105]
+- xfs: pass the goal of the incore inode walk to xfs_inode_walk() (Brian Foster) [2081105]
+- xfs: rename xfs_inode_walk functions to xfs_icwalk (Brian Foster) [2081105]
+- xfs: move the inode walk functions further down (Brian Foster) [2081105]
+- xfs: detach inode dquots at the end of inactivation (Brian Foster) [2081105]
+- xfs: move the quotaoff dqrele inode walk into xfs_icache.c (Brian Foster) [2081105]
+- xfs: don't take a spinlock unconditionally in the DIO fastpath (Brian Foster) [2081105]
+- xfs: mark xfs_bmap_set_attrforkoff static (Brian Foster) [2081105]
+- xfs: Remove redundant assignment to busy (Brian Foster) [2081105]
+- xfs: sort variable alphabetically to avoid repeated declaration (Brian Foster) [2081105]
+- xfs: remove xfs_perag_t (Brian Foster) [2081105]
+- xfs: use perag through unlink processing (Brian Foster) [2081105]
+- xfs: clean up and simplify xfs_dialloc() (Brian Foster) [2081105]
+- xfs: inode allocation can use a single perag instance (Brian Foster) [2081105]
+- xfs: get rid of xfs_dir_ialloc() (Brian Foster) [2081105]
+- xfs: collapse AG selection for inode allocation (Brian Foster) [2081105]
+- xfs: simplify xfs_dialloc_select_ag() return values (Brian Foster) [2081105]
+- xfs: remove agno from btree cursor (Brian Foster) [2081105]
+- xfs: use perag for ialloc btree cursors (Brian Foster) [2081105]
+- xfs: convert allocbt cursors to use perags (Brian Foster) [2081105]
+- xfs: convert refcount btree cursor to use perags (Brian Foster) [2081105]
+- xfs: convert rmap btree cursor to using a perag (Brian Foster) [2081105]
+- xfs: add a perag to the btree cursor (Brian Foster) [2081105]
+- xfs: pass perags around in fsmap data dev functions (Brian Foster) [2081105]
+- xfs: push perags through the ag reservation callouts (Brian Foster) [2081105]
+- xfs: pass perags through to the busy extent code (Brian Foster) [2081105]
+- xfs: convert secondary superblock walk to use perags (Brian Foster) [2081105]
+- xfs: convert xfs_iwalk to use perag references (Brian Foster) [2081105]
+- xfs: convert raw ag walks to use for_each_perag (Brian Foster) [2081105]
+- xfs: make for_each_perag... a first class citizen (Brian Foster) [2081105]
+- xfs: move perag structure and setup to libxfs/xfs_ag.[ch] (Brian Foster) [2081105]
+- xfs: prepare for moving perag definitions and support to libxfs (Brian Foster) [2081105]
+- xfs: move xfs_perag_get/put to xfs_ag.[ch] (Brian Foster) [2081105]
+- xfs: remove unnecessary shifts (Brian Foster) [2081105]
+- xfs: clean up open-coded fs block unit conversions (Brian Foster) [2081105]
+- xfs: Clean up xfs_attr_node_addname_clear_incomplete (Brian Foster) [2081105]
+- xfs: Remove xfs_attr_rmtval_set (Brian Foster) [2081105]
+- xfs: Add delay ready attr set routines (Brian Foster) [2081105]
+- xfs: Add delay ready attr remove routines (Brian Foster) [2081105]
+- xfs: Hoist node transaction handling (Brian Foster) [2081105]
+- xfs: Hoist xfs_attr_leaf_addname (Brian Foster) [2081105]
+- xfs: Hoist xfs_attr_node_addname (Brian Foster) [2081105]
+- xfs: Add helper xfs_attr_node_addname_find_attr (Brian Foster) [2081105]
+- xfs: Separate xfs_attr_node_addname and xfs_attr_node_addname_clear_incomplete (Brian Foster) [2081105]
+- xfs: Refactor xfs_attr_set_shortform (Brian Foster) [2081105]
+- xfs: Add xfs_attr_node_remove_name (Brian Foster) [2081105]
+- xfs: Reverse apply 72b97ea40d (Brian Foster) [2081105]
+- xfs: use xfs_buf_alloc_pages for uncached buffers (Brian Foster) [2081105]
+- xfs: split up xfs_buf_allocate_memory (Brian Foster) [2081105]
+- xfs: Fix fall-through warnings for Clang (Brian Foster) [2081105]
+- scsi: qla2xxx: Use transport-defined speed mask for supported_speeds (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix serialization of DCBX TLV data request (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Remove unused declarations for qla2xxx (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Drop DID_TARGET_FAILURE use (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Update version to 10.02.07.900-k (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Add NVMe parameters support in Auxiliary Image Status (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Add debugfs create/delete helpers (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix response queue handler reading stale packets (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Revert "scsi: qla2xxx: Fix response queue handler reading stale packets" (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Log message "skipping scsi_scan_host()" as informational (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Avoid flush_scheduled_work() usage (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Always wait for qlt_sess_work_fn() from qlt_stop_phase1() (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Remove unused del_sess_list field (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Remove unused qlt_tmr_work() (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Update version to 10.02.07.800-k (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Update manufacturer details (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix discovery issues in FC-AL topology (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix dropped IKE message (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix response queue handler reading stale packets (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Zero undefined mailbox IN registers (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix incorrect display of max frame size (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Check correct variable in qla24xx_async_gffid() (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Update version to 10.02.07.700-k (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix losing FCP-2 targets on long port disable with I/Os (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Add debug prints in the device remove path (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix losing target when it reappears during delete (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix losing FCP-2 targets during port perturbation tests (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix crash due to stale SRB access around I/O timeouts (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Turn off multi-queue for 8G adapters (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Wind down adapter after PCIe error (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Update version to 10.02.07.600-k (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix slow session teardown (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Reduce N2N thrashing at app_start time (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix no logout on delete for N2N (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix session thrash (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Tear down session if keys have been removed (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix no login after app start (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Reduce disruption due to multiple app start (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Send LOGO for unexpected IKE message (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix I/O timeout due to over-subscription (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Update version to 10.02.07.500-k (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix n2n login retry for secure device (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix n2n discovery issue with secure target (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Remove old doorbell interface (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Add retry for ELS passthrough (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Synchronize NPIV deletion with authentication application (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Fix potential stuck session in sa update (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Add bsg interface to read doorbell events (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Wait for app to ack on sess down (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: bsg refactor (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Reduce Initiator-Initiator thrashing (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Remove unused 'ql_dm_tgt_ex_pct' parameter (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Remove setting of 'req' and 'rsp' parameters (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Fix missed DMA unmap for aborted commands (Nilesh Javali) [2109830]
+- scsi: qla2xxx: edif: Remove unneeded variable (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Remove unneeded flush_workqueue() (Nilesh Javali) [2109830]
+- scsi: qla2xxx: Remove free_sg command flag (Nilesh Javali) [2109830]
+- scsi: megaraid_sas: Clean up some inconsistent indenting (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Move megasas_dbg_lvl init to megasas_init() (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Remove unnecessary memset() (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Simplify megasas_update_device_list (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Correct an error message (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Correct value passed to scsi_device_lookup() (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Use struct_size() in code related to struct MR_PD_CFG_SEQ_NUM_SYNC (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Use struct_size() in code related to struct MR_FW_RAID_MAP (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Replace one-element array with flexible-array member in MR_PD_CFG_SEQ_NUM_SYNC (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Replace one-element array with flexible-array member in MR_DRV_RAID_MAP (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Replace one-element array with flexible-array member in MR_FW_RAID_MAP_DYNAMIC (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Replace one-element array with flexible-array member in MR_FW_RAID_MAP (Tomas Henzl) [2120070]
+- scsi: megaraid: Remove redundant assignment to variable mfiStatus (Tomas Henzl) [2120070]
+- scsi: megaraid_sas: Remove redundant variable cmd_type (Tomas Henzl) [2120070]
+- platform/x86/intel/vsec: Fix wrong type for local status variables (Prarit Bhargava) [2076744]
+- platform/x86/intel/vsec: Add PCI error recovery support to Intel PMT (Prarit Bhargava) [2076744]
+- platform/x86/intel/vsec: Add support for Raptor Lake (Prarit Bhargava) [2076744]
+- platform/x86/intel/pmt: telemetry: Fix fixed region handling (Prarit Bhargava) [2076744]
+- platform/x86/intel/vsec: Rework early hardware code (Prarit Bhargava) [2076744]
+- platform/x86/intel: Fix pmt_crashlog array reference (Prarit Bhargava) [2076744]
+- powerpc/kexec_file: Use current CPU info while setting up FDT (Mamatha Inamdar) [2126520]
+- mm/kmemleak: prevent soft lockup in kmemleak_scan()'s object iteration loops (Waiman Long) [2095075]
+- mm/kmemleak: prevent soft lockup in first object iteration loop of kmemleak_scan() (Waiman Long) [2095075]
+- mm/kmemleak: skip unlikely objects in kmemleak_scan() without taking lock (Waiman Long) [2095075]
+- mm/kmemleak: use _irq lock/unlock variants in kmemleak_scan/_clear() (Waiman Long) [2095075]
+- mm/kmemleak: avoid scanning potential huge holes (Waiman Long) [2095075]
+- KVM: s390: pci: fix GAIT physical vs virtual pointers usage (Thomas Huth) [1664379]
+- KVM: s390: pci: fix plain integer as NULL pointer warnings (Thomas Huth) [1664379]
+- KVM: s390/pci: fix include duplicates (Thomas Huth) [1664379]
+- redhat: Use group notifier to get the KVM pointer in the vfio_pci_zdev code (Thomas Huth) [1664379]
+- KVM: s390: pci: register pci hooks without interpretation (Thomas Huth) [1664379]
+- KVM: s390: pci: Hook to access KVM lowlevel from VFIO (Thomas Huth) [1664379]
+- Documentation: kvm: extend KVM_S390_ZPCI_OP subheading underline (Thomas Huth) [1664379]
+- KVM: s390: add KVM_S390_ZPCI_OP to manage guest zPCI devices (Thomas Huth) [1664379]
+- vfio-pci/zdev: different maxstbl for interpreted devices (Thomas Huth) [1664379]
+- vfio-pci/zdev: add function handle to clp base capability (Thomas Huth) [1664379]
+- vfio-pci/zdev: add open/close device hooks (Thomas Huth) [1664379]
+- KVM: s390: pci: add routines to start/stop interpretive execution (Thomas Huth) [1664379]
+- KVM: s390: pci: provide routines for enabling/disabling interrupt forwarding (Thomas Huth) [1664379]
+- KVM: s390: mechanism to enable guest zPCI Interpretation (Thomas Huth) [1664379]
+- KVM: s390: pci: enable host forwarding of Adapter Event Notifications (Thomas Huth) [1664379]
+- KVM: s390: pci: do initial setup for AEN interpretation (Thomas Huth) [1664379]
+- KVM: s390: pci: add basic kvm_zdev structure (Thomas Huth) [1664379]
+- redhat: Enable the new CONFIG_VFIO_PCI_ZDEV_KVM switch (Thomas Huth) [1664379]
+- vfio/pci: introduce CONFIG_VFIO_PCI_ZDEV_KVM (Thomas Huth) [1664379]
+- vfio/pci: remove CONFIG_VFIO_PCI_ZDEV from Kconfig (Thomas Huth) [1664379]
+- vfio-pci/zdev: fix possible segmentation fault issue (Thomas Huth) [1664379]
+- s390/pci: stash dtsm and maxstbl (Thomas Huth) [1664379]
+- s390/pci: stash associated GISA designation (Thomas Huth) [1664379]
+- s390/pci: externalize the SIC operation controls and routine (Thomas Huth) [1664379]
+- s390/airq: allow for airq structure that uses an input vector (Thomas Huth) [1664379]
+- s390/airq: pass more TPI info to airq handlers (Thomas Huth) [1664379]
+- s390/cio: add tpi.h header file (Thomas Huth) [1664379]
+- s390/ap: fix kernel doc comments (Thomas Huth) [1664379]
+- s390/sclp: detect the AISI facility (Thomas Huth) [1664379]
+- s390/sclp: detect the AENI facility (Thomas Huth) [1664379]
+- s390/sclp: detect the AISII facility (Thomas Huth) [1664379]
+- s390/sclp: detect the zPCI load/store interpretation facility (Thomas Huth) [1664379]
+- s390/sclp: add detection of IPL-complete-control facility (Thomas Huth) [1664379]
+- s390/pci: add error record for CC 2 retries (Thomas Huth) [2134399]
+- s390/pci: add PCI access type and length to error records (Thomas Huth) [2134399]
+- s390/pci: don't log availability events as errors (Thomas Huth) [2134399]
+- s390/pci: make better use of zpci_dbg() levels (Thomas Huth) [2134399]
+- s390/pci: rename get_zdev_by_bus() to zdev_from_bus() (Thomas Huth) [2134399]
+- redhat: Restore clp_rescan_pci_devices_simple() function (Thomas Huth) [2134399]
+- s390/pci: improve zpci_dev reference counting (Thomas Huth) [2134399]
+- s390/pci: make zpci_set_irq()/zpci_clear_irq() static (Thomas Huth) [2134399]
+- s390/pci: simplify __pciwb_mio() inline asm (Thomas Huth) [2134399]
+- s390/pci: use physical addresses in DMA tables (Thomas Huth) [2134399]
+- s390/pci: use phys_to_virt() for AIBVs/DIBVs (Thomas Huth) [2134399]
+- s390/pci: implement minimal PCI error recovery (Thomas Huth) [2134399]
+- PCI: Export pci_dev_lock() (Thomas Huth) [2134399]
+- PCI: Export pci_dev_trylock() and pci_dev_unlock() (Thomas Huth) [2134399]
+- s390/pci: implement reset_slot for hotplug slot (Thomas Huth) [2134399]
+- s390/pci: refresh function handle in iomap (Thomas Huth) [2134399]
+- s390/pci: add simpler s390dbf traces for events (Thomas Huth) [2134399]
+- s390/pci: tolerate inconsistent handle in recover (Thomas Huth) [2134399]
+- s390/pci_mmio: fully validate the VMA before calling follow_pte() (Thomas Huth) [2134399]
+- s390/pci: read clp_list_pci_req only once (Thomas Huth) [2134399]
+- s390/pci: fix clp_get_state() handling of -ENODEV (Thomas Huth) [2134399]
+- s390/pci: improve DMA translation init and exit (Thomas Huth) [2134399]
+- s390/pci: simplify CLP List PCI handling (Thomas Huth) [2134399]
+- s390/pci: handle FH state mismatch only on disable (Thomas Huth) [2134399]
+- s390/pci: fix misleading rc in clp_set_pci_fn() (Thomas Huth) [2134399]
+- s390/pci: reset zdev->zbus on registration failure (Thomas Huth) [2134399]
+- s390/pci: cleanup resources only if necessary (Thomas Huth) [2134399]
+- s390/pci: add zpci_set_irq()/zpci_clear_irq() (Thomas Huth) [2134399]
+- s390/pci: use register pair instead of register asm (Thomas Huth) [2134399]
+- s390: introduce register pair union (Thomas Huth) [2134399]
+- s390/pci: handle stale deconfiguration events (Thomas Huth) [2134399]
+- s390/pci: rename zpci_configure_device() (Thomas Huth) [2134399]
+- s390/pci: narrow scope of zpci_configure_device() (Thomas Huth) [2134399]
+- s390/pci: separate zbus registration from scanning (Thomas Huth) [2134399]
+- s390/pci: use mutex not spinlock for zbus list (Thomas Huth) [2134399]
+- s390/pci: separate zbus creation from scanning (Thomas Huth) [2134399]
+- s390/pci: do more bus setup in zpci_bus_scan() (Thomas Huth) [2134399]
+- s390/pci: introduce zpci_bus_scan_device() (Thomas Huth) [2134399]
+- s390/pci: fix DMA cleanup on hard deconfigure (Thomas Huth) [2134399]
+- s390/pci: move zpci_remove_device() to bus code (Thomas Huth) [2134399]
+- s390/pci: unify de-/configure for slots and events (Thomas Huth) [2134399]
+- s390/pci: add zpci_event_hard_deconfigured() (Thomas Huth) [2134399]
+- s390/pci: deconfigure device on release (Thomas Huth) [2134399]
+- s390/pci: refactor zpci function states (Thomas Huth) [2134399]
+- s390/pci: inform when missing required facilities (Thomas Huth) [2134399]
+- s390/pci: remove races against pte updates (Thomas Huth) [2134399]
+- s390: remove orphaned function declarations (Thomas Huth) [2134399]
+- s390/pci: add missing pci_iov.h include (Thomas Huth) [2134399]
+- s390/pci: remove clp_rescan_pci_devices_simple() (Thomas Huth) [2134399]
+- s390/pci: remove clp_rescan_pci_devices() (Thomas Huth) [2134399]
+- s390/pci: consolidate SR-IOV specific code (Thomas Huth) [2134399]
+- s390/pci: Implement ioremap_wc/prot() with MIO (Thomas Huth) [2134399]
+- s390/mm: properly clear _PAGE_NOEXEC bit when it is not supported (Thomas Huth) [2134399]
+- s390/pci: clarify comment in s390_mmio_read/write (Thomas Huth) [2134399]
+- s390/pci: remove unused functions (Thomas Huth) [2134399]
+- s390/pci: Log new handle in clp_disable_fh() (Thomas Huth) [2134399]
+- s390/pci: ioremap() align with generic code (Thomas Huth) [2134399]
+- s390: enforce CONFIG_SMP (Thomas Huth) [2134399]
+- s390/pci: mark function(s) __always_inline (Thomas Huth) [2134399]
+- s390/pci: avoid using strncmp with hardcoded length (Thomas Huth) [2134399]
+- s390/pci: PCI_IOV_RESOURCES loop refactoring in zpci_map_resources (Thomas Huth) [2134399]
+- s390: pci: no need to check return value of debugfs_create functions (Thomas Huth) [2134399]
+- s390/pci: fix sleeping in atomic during hotplug (Thomas Huth) [2134399]
+- s390/pci: remove fmb address from debug output (Thomas Huth) [2134399]
+- s390/pci: add fmt3 fmb (Thomas Huth) [2134399]
+- tools headers kvm s390: Sync headers with the kernel sources (Thomas Huth) [2111063]
+- KVM: s390: resetting the Topology-Change-Report (Thomas Huth) [2111063]
+- KVM: s390: guest support for topology function (Thomas Huth) [2111063]
+- KVM: s390: Cleanup ipte lock access and SIIF facility checks (Thomas Huth) [2111063]
+- KVM: s390: drop unexpected word 'and' in the comments (Thomas Huth) [2111063]
+- Documentation: KVM: update s390-diag.rst reference (Thomas Huth) [2043872]
+- Documentation: KVM: update msr.rst reference (Thomas Huth) [2043872]
+- Documentation: KVM: update amd-memory-encryption.rst references (Thomas Huth) [2043872]
+- Documentation: KVM: update s390-pv.rst reference (Thomas Huth) [2043872]
+- Documentation/virt/kvm/api.rst: Explain rc/rrc delivery (Thomas Huth) [2043872]
+- Documentation/virt/kvm/api.rst: Add protvirt dump/info api descriptions (Thomas Huth) [2043872]
+- Documentation: KVM: add API issues section (Thomas Huth) [2043872]
+- Documentation: virt: Protected virtual machine dumps (Thomas Huth) [2043872]
+- Documentation: KVM: add separate directories for architecture-specific documentation (Thomas Huth) [2043872]
+- KVM: s390: Add KVM_CAP_S390_PROTECTED_DUMP (Thomas Huth) [2043872]
+- KVM: s390: Add CPU dump functionality (Thomas Huth) [2043872]
+- KVM: s390: Add configuration dump functionality (Thomas Huth) [2043872]
+- KVM: s390: pv: Add query dump information (Thomas Huth) [2043872]
+- KVM: s390: pv: Add dump support definitions (Thomas Huth) [2043872]
+- KVM: s390: pv: Add query interface (Thomas Huth) [2043872]
+- s390/uv: Add dump fields to query (Thomas Huth) [2043872]
+- s390/uv: Add SE hdr query information (Thomas Huth) [2043872]
+- kvm: Move KVM_GET_XSAVE2 IOCTL definition at the end of kvm.h (Thomas Huth) [2043872]
+- docs: kvm: fix WARNINGs from api.rst (Thomas Huth) [2043872]
+- s390/mm: use non-quiescing sske for KVM switch to keyed guest (Thomas Huth) [2043872]
+- s390/gmap: voluntarily schedule during key setting (Thomas Huth) [2043872]
+- KVM: s390: Don't indicate suppression on dirtying, failing memop (Thomas Huth) [2043872]
+- s390: uv: Add offset comments to UV query struct and fix naming (Thomas Huth) [2043872]
+- KVM: s390: Use Makefile.kvm for common files (Thomas Huth) [2043872]
+- KVM: s390: Skip gfn/size sanity checks on memslot DELETE or FLAGS_ONLY (Thomas Huth) [2043872]
+- fs: dlm: fix invalid derefence of sb_lvbptr (Alexander Aring) [2121790]
+- fs: dlm: handle -EBUSY first in unlock validation (Alexander Aring) [2121790]
+- fs: dlm: handle -EBUSY first in lock arg validation (Alexander Aring) [2121790]
+- fs: dlm: fix race between test_bit() and queue_work() (Alexander Aring) [2121790]
+- scsi: core: Fix a use-after-free (Ming Lei) [1961010]
+- net/mlx5e: Fix wrong use of skb_tcp_all_headers() with encapsulation (Petr Oros) [2135685]
+- net: add skb_[inner_]tcp_all_headers helpers (Petr Oros) [2135685]
+- net: marvell: clean up trigraph warning on ??! string (Petr Oros) [2135685]
+- powerpc/pseries: Use lparcfg to reconfig VAS windows for DLPAR CPU (Steve Best) [2133103]
+- flow_dissector: Do not count vlan tags inside tunnel payload (Ivan Vecera) [2136875]
+- flow_offload: Introduce flow_match_pppoe (Ivan Vecera) [2136875]
+- net/sched: flower: Add PPPoE filter (Ivan Vecera) [2136875]
+- flow_dissector: Add PPPoE dissectors (Ivan Vecera) [2136875]
+- net/sched: flower: Consider the number of tags for vlan filters (Ivan Vecera) [2136875]
+- net/sched: flower: Add number of vlan tags filter (Ivan Vecera) [2136875]
+- flow_dissector: Add number of vlan tags dissector (Ivan Vecera) [2136875]
+- net/sched: flower: Reduce identation after is_key_vlan refactoring (Ivan Vecera) [2136875]
+- net/sched: flower: Helper function for vlan ethtype checks (Ivan Vecera) [2136875]
+- dissector: do not set invalid PPP protocol (Ivan Vecera) [2136875]
+- dm bufio: use the acquire memory barrier when testing for B_READING (Benjamin Marzinski) [2139161]
+- provide arch_test_bit_acquire for architectures that define test_bit (Benjamin Marzinski) [2139161]
+- wait_on_bit: add an acquire memory barrier (Benjamin Marzinski) [2139161]
+- add barriers to buffer_uptodate and set_buffer_uptodate (Benjamin Marzinski) [2139161]
+- dm verity: Add documentation for try_verify_in_tasklet option (Benjamin Marzinski) [2139161]
+- dm cache: delete the redundant word 'each' in comment (Benjamin Marzinski) [2139161]
+- dm raid: fix typo in analyse_superblocks code comment (Benjamin Marzinski) [2139161]
+- dm verity: enable WQ_HIGHPRI on verify_wq (Benjamin Marzinski) [2139161]
+- dm raid: delete the redundant word 'that' in comment (Benjamin Marzinski) [2139161]
+- dm: change from DMWARN to DMERR or DMCRIT for fatal errors (Benjamin Marzinski) [2139161]
+- dm bufio: fix some cases where the code sleeps with spinlock held (Benjamin Marzinski) [2139161]
+- dm writecache: fix smatch warning about invalid return from writecache_map (Benjamin Marzinski) [2139161]
+- dm verity: fix verity_parse_opt_args parsing (Benjamin Marzinski) [2139161]
+- dm verity: fix DM_VERITY_OPTS_MAX value yet again (Benjamin Marzinski) [2139161]
+- dm bufio: simplify DM_BUFIO_CLIENT_NO_SLEEP locking (Benjamin Marzinski) [2139161]
+- dm verity: have verify_wq use WQ_HIGHPRI if "try_verify_in_tasklet" (Benjamin Marzinski) [2139161]
+- dm verity: remove WQ_CPU_INTENSIVE flag since using WQ_UNBOUND (Benjamin Marzinski) [2139161]
+- dm verity: only copy bvec_iter in verity_verify_io if in_tasklet (Benjamin Marzinski) [2139161]
+- dm verity: optimize verity_verify_io if FEC not configured (Benjamin Marzinski) [2139161]
+- dm verity: conditionally enable branching for "try_verify_in_tasklet" (Benjamin Marzinski) [2139161]
+- dm bufio: conditionally enable branching for DM_BUFIO_CLIENT_NO_SLEEP (Benjamin Marzinski) [2139161]
+- dm verity: allow optional args to alter primary args handling (Benjamin Marzinski) [2139161]
+- dm verity: Add optional "try_verify_in_tasklet" feature (Benjamin Marzinski) [2139161]
+- dm bufio: Add DM_BUFIO_CLIENT_NO_SLEEP flag (Benjamin Marzinski) [2139161]
+- dm bufio: Add flags argument to dm_bufio_client_create (Benjamin Marzinski) [2139161]
+- dm: Start pr_preempt from the same starting path (Benjamin Marzinski) [2139161]
+- dm: Fix PR release handling for non All Registrants (Benjamin Marzinski) [2139161]
+- dm: Start pr_reserve from the same starting path (Benjamin Marzinski) [2139161]
+- dm: Allow dm_call_pr to be used for path searches (Benjamin Marzinski) [2139161]
+- Documentation: dm writecache: Render status list as list (Benjamin Marzinski) [2139161]
+- Documentation: dm writecache: add blank line before optional parameters (Benjamin Marzinski) [2139161]
+- dm snapshot: fix typo in snapshot_map() comment (Benjamin Marzinski) [2139161]
+- dm raid: remove redundant "the" in parse_raid_params() comment (Benjamin Marzinski) [2139161]
+- dm cache: fix typo in 2 comment blocks (Benjamin Marzinski) [2139161]
+- dm verity: fix checkpatch close brace error (Benjamin Marzinski) [2139161]
+- dm table: rename dm_target variable in dm_table_add_target() (Benjamin Marzinski) [2139161]
+- dm table: audit all dm_table_get_target() callers (Benjamin Marzinski) [2139161]
+- dm table: remove dm_table_get_num_targets() wrapper (Benjamin Marzinski) [2139161]
+- writeback: Avoid skipping inode writeback (Waiman Long) [2138886]
+- writeback: fix obtain a reference to a freeing memcg css (Waiman Long) [2138886]
+- mm/memcg: disable threshold event handlers on PREEMPT_RT (Waiman Long) [2138886]
+- memcg: increase MEMCG_CHARGE_BATCH to 64 (Waiman Long) [2138886]
+- mm: page_counter: rearrange struct page_counter fields (Waiman Long) [2138886]
+- mm: page_counter: remove unneeded atomic ops for low/min (Waiman Long) [2138886]
+- memcg: reduce size of memcg vmstats structures (Waiman Long) [2138886]
+- memcg: rearrange code (Waiman Long) [2138886]
+- memcg: extract memcg_vmstats from struct mem_cgroup (Waiman Long) [2138886]
+- mm: memcontrol: fix potential oom_lock recursion deadlock (Waiman Long) [2138886]
+- mm: memcontrol: add {pgscan,pgsteal}_{kswapd,direct} items in memory.stat of cgroup v2 (Waiman Long) [2138886]
+- mm/memcg: protect per-CPU counter by disabling preemption on PREEMPT_RT where needed. (Waiman Long) [2138886]
+- writeback: memcg: simplify cgroup_writeback_by_id (Waiman Long) [2138886]
+- writeback, cgroup: do not reparent dax inodes (Waiman Long) [2138886]
+- writeback, cgroup: remove wb from offline list before releasing refcnt (Waiman Long) [2138886]
+- writeback, cgroup: release dying cgwbs by switching attached inodes (Waiman Long) [2138886]
+- writeback, cgroup: support switching multiple inodes at once (Waiman Long) [2138886]
+- writeback, cgroup: split out the functional part of inode_switch_wbs_work_fn() (Waiman Long) [2138886]
+- writeback, cgroup: keep list of inodes attached to bdi_writeback (Waiman Long) [2138886]
+- writeback, cgroup: switch to rcu_work API in inode_switch_wbs() (Waiman Long) [2138886]
+- writeback, cgroup: increment isw_nr_in_flight before grabbing an inode (Waiman Long) [2138886]
+- writeback, cgroup: add smp_mb() to cgroup_writeback_umount() (Waiman Long) [2138886]
+- writeback, cgroup: do not switch inodes with I_WILL_FREE flag (Waiman Long) [2138886]
+- docs/admin-guide: cgroup-v2: typos and spaces (Waiman Long) [2138886]
+- fs: improve comments for writeback_single_inode() (Waiman Long) [2138886]
+- writeback: remove struct bdi_writeback_congested (Waiman Long) [2138886]
+- writeback: remove {set,clear}_wb_congested (Waiman Long) [2138886]
+- fs/writeback.c: use rcu_barrier() to wait for inflight wb switches going into workqueue when umount (Waiman Long) [2138886]
+- blkcg: remove unused __blkg_release_rcu() (Waiman Long) [2138886]
+- writeback: Add a bdi_writeback_rh extension to struct bdi_writeback (Waiman Long) [2138886]
+- RDMA/irdma: Report the correct link speed (Kamal Heib) [2125102]
+- blk-mq: avoid double ->queue_rq() because of early timeout (Ming Lei) [2132438]
+- blk-mq: add one API for waiting until quiesce is done (Ming Lei) [2132438]
+- blk-mq: support concurrent queue quiesce/unquiesce (Ming Lei) [2132438]
+- bridge: Do not send empty IFLA_AF_SPEC attribute (Ivan Vecera) [2139133]
+- net: bridge: Clear offload_fwd_mark when passing frame up bridge interface. (Ivan Vecera) [2139133]
+- net: bridge: vlan: fix memory leak in __allowed_ingress (Ivan Vecera) [2139133]
+
+* Fri Nov 11 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-437.el8]
+- ice: Add additional CSR registers to ETHTOOL_GREGS (Petr Oros) [2131024]
+- udp: Update reuse->has_conns under reuseport_lock. (Xin Long) [2135937]
+- udp: Remove redundant __udp_sysctl_init() call from udp_init(). (Xin Long) [2135937]
+- udp: Fix a data-race around sysctl_udp_l3mdev_accept. (Xin Long) [2135937]
+- Documentation: fix udp_wmem_min in ip-sysctl.rst (Xin Long) [2135937]
+- be2net: Fix buffer overflow in be_get_module_eeprom (Josef Oskera) [2126917]
+- iommu/vt-d: Clean up si_domain in the init_dmars() error path (Jerry Snitselaar) [2133331]
+
+* Wed Nov 09 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-436.el8]
+- md: Fix spelling mistake in comments of r5l_log (Nigel Croxon) [2112935]
+- md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d (Nigel Croxon) [2112935]
+- md/raid10: convert resync_lock to use seqlock (Nigel Croxon) [2112935]
+- md/raid10: fix improper BUG_ON() in raise_barrier() (Nigel Croxon) [2112935]
+- md/raid10: prevent unnecessary calls to wake_up() in fast path (Nigel Croxon) [2112935]
+- md/raid10: don't modify 'nr_waitng' in wait_barrier() for the case nowait (Nigel Croxon) [2112935]
+- md/raid10: factor out code from wait_barrier() to stop_waiting_barrier() (Nigel Croxon) [2112935]
+- md: Remove extra mddev_get() in md_seq_start() (Nigel Croxon) [2112935]
+- md/raid5: Remove unnecessary bio_put() in raid5_read_one_chunk() (Nigel Croxon) [2112935 2111563]
+- md/raid5: Ensure stripe_fill happens on non-read IO with journal (Nigel Croxon) [2112935]
+- md/raid5: Don't read ->active_stripes if it's not needed (Nigel Croxon) [2112935]
+- md/raid5: Cleanup prototype of raid5_get_active_stripe() (Nigel Croxon) [2112935]
+- md/raid5: Drop extern on function declarations in raid5.h (Nigel Croxon) [2112935]
+- md/raid5: Refactor raid5_get_active_stripe() (Nigel Croxon) [2112935]
+- md: Replace snprintf with scnprintf (Nigel Croxon) [2112935]
+- md/raid10: fix compile warning (Nigel Croxon) [2112935]
+- md/raid5: Fix spelling mistakes in comments (Nigel Croxon) [2112935]
+- md: call __md_stop_writes in md_stop (Nigel Croxon) [2112935]
+- md: Flush workqueue md_rdev_misc_wq in md_alloc() (Nigel Croxon) [2112935]
+- drivers:md:fix a potential use-after-free bug (Nigel Croxon) [2112935]
+- md/raid5: Ensure batch_last is released before sleeping for quiesce (Nigel Croxon) [2112935]
+- md/raid5: Move stripe_request_ctx up (Nigel Croxon) [2112935]
+- md/raid5: Drop unnecessary call to r5c_check_stripe_cache_usage() (Nigel Croxon) [2112935]
+- md/raid5: Make is_inactive_blocked() helper (Nigel Croxon) [2112935]
+- md/raid5: Refactor raid5_get_active_stripe() (Nigel Croxon) [2112935]
+- md-raid10: fix KASAN warning (Nigel Croxon) [2112935]
+- md: fix build failure for !MODULE (Nigel Croxon) [2112935]
+- raid5: fix duplicate checks for rdev->saved_raid_disk (Nigel Croxon) [2112935]
+- md/raid5: Convert prepare_to_wait() to wait_woken() api (Nigel Croxon) [2112935]
+- md/raid5: Fix sectors_to_do bitmap overflow in raid5_make_request() (Nigel Croxon) [2112935]
+- md: Fix spelling mistake in comments (Nigel Croxon) [2112935]
+- md/raid5: Increase restriction on max segments per request (Nigel Croxon) [2112935]
+- md/raid5: Improve debug prints (Nigel Croxon) [2112935]
+- md/raid5: Pivot raid5_make_request() (Nigel Croxon) [2112935]
+- md/raid5: Check all disks in a stripe_head for reshape progress (Nigel Croxon) [2112935]
+- md/raid5: Refactor add_stripe_bio() (Nigel Croxon) [2112935]
+- md/raid5: Keep a reference to last stripe_head for batch (Nigel Croxon) [2112935]
+- md/raid5: Refactor for loop in raid5_make_request() into while loop (Nigel Croxon) [2112935]
+- md/raid5: Move read_seqcount_begin() into make_stripe_request() (Nigel Croxon) [2112935]
+- md/raid5: Drop the do_prepare flag in raid5_make_request() (Nigel Croxon) [2112935]
+- md/raid5: Factor out helper from raid5_make_request() loop (Nigel Croxon) [2112935]
+- md/raid5: Move common stripe get code into new find_get_stripe() helper (Nigel Croxon) [2112935]
+- md/raid5: Move stripe_add_to_batch_list() call out of add_stripe_bio() (Nigel Croxon) [2112935]
+- md/raid5: Refactor raid5_make_request loop (Nigel Croxon) [2112935]
+- md/raid5: Factor out ahead_of_reshape() function (Nigel Croxon) [2112935]
+- md/raid5: Make logic blocking check consistent with logic that blocks (Nigel Croxon) [2112935]
+- md: unlock mddev before reap sync_thread in action_store (Nigel Croxon) [2112935]
+- md: Explicitly create command-line configured devices (Nigel Croxon) [2112935]
+- md: Notify sysfs sync_completed in md_reap_sync_thread() (Nigel Croxon) [2112935]
+- md: Ensure resync is reported after it starts (Nigel Croxon) [2112935]
+- md: Use enum for overloaded magic numbers used by mddev->curr_resync (Nigel Croxon) [2112935]
+- md/raid5-cache: Annotate pslot with __rcu notation (Nigel Croxon) [2112935]
+- md/raid5-cache: Clear conf->log after finishing work (Nigel Croxon) [2112935]
+- md/raid5-cache: Drop RCU usage of conf->log (Nigel Croxon) [2112935]
+- md/raid5-cache: Take mddev_lock in r5c_journal_mode_show() (Nigel Croxon) [2112935]
+- md/raid5: suspend the array for calls to log_exit() (Nigel Croxon) [2112935]
+- md/raid5-ppl: Drop unused argument from ppl_handle_flush_request() (Nigel Croxon) [2112935]
+- md/raid5-log: Drop extern decorators for function prototypes (Nigel Croxon) [2112935]
+- md/raid5: missing error code in setup_conf() (Nigel Croxon) [2112935]
+- Revert "md: don't unregister sync_thread with reconfig_mutex held" (Nigel Croxon) [2112935]
+- qed: fix typos in comments (Manish Chopra) [2111885]
+- net: qede: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2111885]
+- RDMA/qedr: Fix potential memory leak in __qedr_alloc_mr() (Manish Chopra) [2111885]
+- qlogic: qed: fix clang -Wformat warnings (Manish Chopra) [2111885]
+- qed: Use bitmap_empty() (Manish Chopra) [2111885]
+- qed: Use the bitmap API to allocate bitmaps (Manish Chopra) [2111885]
+- qlogic/qed: fix repeated words in comments (Manish Chopra) [2111885]
+- net: qed: fix typos in comments (Manish Chopra) [2111885]
+- RDMA/qedr: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2111885]
+- qed: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2111885]
+- qed: replace bitmap_weight with bitmap_empty in qed_roce_stop() (Manish Chopra) [2111885]
+- qed: rework qed_rdma_bmap_free() (Manish Chopra) [2111885]
+- qed: Remove IP services API. (Manish Chopra) [2111885]
+- qed: remove an unneed NULL check on list iterator (Manish Chopra) [2111885]
+- RDMA/irdma: Report RNR NAK generation in device caps (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Use s/g array in post send only when its valid (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Return correct WC error for bind operation failure (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Return error on MR deregister CQP failure (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Report the correct max cqes from query device (Kamal Heib) [2120676 2103957]
+- RDMA/siw: Pass a pointer to virt_to_page() (Kamal Heib) [2120676]
+- RDMA/cma: Fix arguments order in net device validation (Kamal Heib) [2120676]
+- RDMA/irdma: Fix drain SQ hang with no completion (Kamal Heib) [2120676 2103957 2033244 2053376]
+- IB/iser: Fix login with authentication (Kamal Heib) [2120676]
+- RDMA/ib_srpt: Unify checking rdma_cm_id condition in srpt_cm_req_recv() (Kamal Heib) [2120676]
+- RDMA/rxe: Fix error unwind in rxe_create_qp() (Kamal Heib) [2120676]
+- RDMA/rxe: Split qp state for requester and completer (Kamal Heib) [2120676]
+- RDMA/rxe: Generate error completion for error requester QP state (Kamal Heib) [2120676]
+- RDMA/rxe: Update wqe_index for each wqe error completion (Kamal Heib) [2120676]
+- RDMA/srpt: Fix a use-after-free (Kamal Heib) [2120676]
+- RDMA/srpt: Introduce a reference count in struct srpt_device (Kamal Heib) [2120676]
+- RDMA/srpt: Duplicate port name members (Kamal Heib) [2120676]
+- Revert "RDMA/rxe: Create duplicate mapping tables for FMRs" (Kamal Heib) [2120676]
+- RDMA/rxe: Replace __rxe_do_task by rxe_run_task (Kamal Heib) [2120676]
+- RDMA/rxe: Limit the number of calls to each tasklet (Kamal Heib) [2120676]
+- RDMA/rxe: Make the tasklet exits the same (Kamal Heib) [2120676]
+- RDMA/rxe: Fix rnr retry behavior (Kamal Heib) [2120676]
+- RDMA/rxe: Add rxe_is_fenced() subroutine (Kamal Heib) [2120676]
+- RDMA/rxe: For invalidate compare according to set keys in mr (Kamal Heib) [2120676]
+- RDMA: Fix comment typo (Kamal Heib) [2120676]
+- IB: Fix repeated words 'the the' comments (Kamal Heib) [2120676]
+- RDMA/rxe: Fix mw bind to allow any consumer key portion (Kamal Heib) [2120676]
+- RDMA/rxe: Fix spelling mistake in error print (Kamal Heib) [2120676]
+- RDMA/rxe: Remove unused qp parameter (Kamal Heib) [2120676]
+- RDMA/hfi1: fix potential memory leak in setup_base_ctxt() (Kamal Heib) [2120676]
+- RDMA/rxe: Remove unused mask parameter (Kamal Heib) [2120676]
+- RDMA/rxe: Rename rxe_atomic_reply to atomic_reply (Kamal Heib) [2120676]
+- RDMA/rxe: Add common rxe_prepare_res() (Kamal Heib) [2120676]
+- RDMA/rxe: Fix BUG: KASAN: null-ptr-deref in rxe_qp_do_cleanup (Kamal Heib) [2120676]
+- RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event (Kamal Heib) [2120676]
+- RDMA/hfi1: Depend on !UML (Kamal Heib) [2120676]
+- RDMA/irdma: Use the bitmap API to allocate bitmaps (Kamal Heib) [2120676 2103957]
+- RDMA: remove useless condition in siw_create_cq() (Kamal Heib) [2120676]
+- RDMA/irdma: Fix setting of QP context err_rq_idx_valid field (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Fix VLAN connection with wildcard address (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Fix a window for use-after-free (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Make resource distribution algorithm more QP oriented (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Make CQP invalid state error non-critical (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Add AE source to error log (Kamal Heib) [2120676 2103957]
+- RDMA/irdma: Add 2 level PBLE support for FMR (Kamal Heib) [2120676 2103957]
+- IB: Fix spelling of 'writable' (Kamal Heib) [2120676]
+- RDMA/rxe: Remove unnecessary include statement (Kamal Heib) [2120676]
+- RDMA/rxe: Replace include statement (Kamal Heib) [2120676]
+- RDMA/rxe: Convert pr_warn/err to pr_debug in pyverbs (Kamal Heib) [2120676]
+- RDMA/rxe: Fix deadlock in rxe_do_local_ops() (Kamal Heib) [2120676]
+- RDMA/rxe: Merge normal and retry atomic flows (Kamal Heib) [2120676]
+- RDMA/rxe: Move atomic original value to res (Kamal Heib) [2120676]
+- RDMA/rxe: Move atomic responder res to atomic_reply (Kamal Heib) [2120676]
+- RDMA/rxe: Add a responder state for atomic reply (Kamal Heib) [2120676]
+- RDMA/rxe: Move code to rxe_prepare_atomic_res() (Kamal Heib) [2120676]
+- RDMA/rxe: Convert read side locking to rcu (Kamal Heib) [2120676]
+- RDMA/rxe: Stop lookup of partially built objects (Kamal Heib) [2120676]
+- RDMA/rxe: Remove useless pkt parameters (Kamal Heib) [2120676]
+- RDMA: Correct duplicated words in comments (Kamal Heib) [2120676]
+- IB/iser: Drain the entire QP during destruction flow (Kamal Heib) [2120676]
+- RDMA/rxe: fix xa_alloc_cycle() error return value check again (Kamal Heib) [2120676]
+- RDMA/core: Add a netevent notifier to cma (Kamal Heib) [2120676 2117912]
+- RDMA/core: Add an rb_tree that stores cm_ids sorted by ifindex and remote IP (Kamal Heib) [2120676 2117912]
+- RDMA/hfi1: Fix typo in comment (Kamal Heib) [2120676]
+- RDMA: Split kernel-only global device caps from uverbs device caps (Kamal Heib) [2120675]
+- RDMA/hfi1: Remove all traces of diagpkt support (Kamal Heib) [2120675]
+- RDMA/hfi1: Consolidate software versions (Kamal Heib) [2120675]
+- RDMA/hfi1: Remove pointless driver version (Kamal Heib) [2120675]
+- RDMA/hfi1: Prevent panic when SDMA is disabled (Kamal Heib) [2120675]
+- RDMA/core: Fix typo in comment (Kamal Heib) [2120675]
+- IB/hf1: Fix typo in comment (Kamal Heib) [2120675]
+- IB/iser: Fix typo in comment (Kamal Heib) [2120675]
+- IB/isert: Avoid flush_scheduled_work() usage (Kamal Heib) [2120675]
+- RDMA/siw: Enable siw on tunnel devices (Kamal Heib) [2120675]
+- RDMA/rxe: Enforce IBA C11-17 (Kamal Heib) [2120675]
+- RDMA/rxe: Move mw cleanup code to rxe_mw_cleanup() (Kamal Heib) [2120675]
+- RDMA/rxe: Move mr cleanup code to rxe_mr_cleanup() (Kamal Heib) [2120675]
+- RDMA/rxe: Move qp cleanup code to rxe_qp_do_cleanup() (Kamal Heib) [2120675]
+- RDMA/rxe: Check rxe_get() return value (Kamal Heib) [2120675]
+- RDMA/rxe: Add rxe_srq_cleanup() (Kamal Heib) [2120675]
+- RDMA/rxe: Remove IB_SRQ_INIT_MASK (Kamal Heib) [2120675]
+- RDMA/rxe: Skip adjusting remote addr for write in retry operation (Kamal Heib) [2120675]
+- RDMA/rxe: Optimize the mr pool struct (Kamal Heib) [2120675]
+- RDMA/rxe: Replace paylen by payload (Kamal Heib) [2120675]
+- RDMA/core: Avoid flush_workqueue(system_unbound_wq) usage (Kamal Heib) [2120675]
+- RDMA/rxe: Remove useless parameters for update_state() (Kamal Heib) [2120675]
+- RDMA/rxe: Remove reliable datagram support (Kamal Heib) [2120675]
+- RDMA/rxe: Remove support for SMI QPs from rdma_rxe (Kamal Heib) [2120675]
+- RDMA/rxe: Remove mc_grp_pool from struct rxe_dev (Kamal Heib) [2120675]
+- RDMA/rxe: Remove type 2A memory window capability (Kamal Heib) [2120675]
+- RDMA/usnic: Refactor usnic_uiom_alloc_pd() (Kamal Heib) [2120675]
+- RDMA/usnic: Stop using iommu_present() (Kamal Heib) [2120675]
+- IB/SA: Replace usage of found with dedicated list iterator variable (Kamal Heib) [2120675]
+- IB/rdmavt: add missing locks in rvt_ruc_loopback (Kamal Heib) [2120675]
+- IB/uverbs: Move part of enum ib_device_cap_flags to uapi (Kamal Heib) [2120675]
+- IB/uverbs: Move enum ib_raw_packet_caps to uapi (Kamal Heib) [2120675]
+- RDMA/pvrdma: Remove useless DMA-32 fallback configuration (Kamal Heib) [2120675]
+- RDMA: switch from 'pci_' to 'dma_' API (Kamal Heib) [2120675]
+- scsi: RDMA/srp: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Kamal Heib) [2120675]
+- scsi: RDMA/iser: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Kamal Heib) [2120675]
+- x86/fpu: Prevent FPU state corruption (Oleksandr Natalenko) [2130890]
+- net: team: Unsync device addresses on ndo_stop (Hangbin Liu) [2135240]
+- mmu_gather: fix the CONFIG_MMU_GATHER_NO_RANGE case (Waiman Long) [2130166] {CVE-2022-39188}
+- mmu_gather: Force tlb-flush VM_PFNMAP vmas (Waiman Long) [2130166] {CVE-2022-39188}
+- mmu_gather: Let there be one tlb_{start,end}_vma() implementation (Waiman Long) [2130166] {CVE-2022-39188}
+- mmu_gather: Remove per arch tlb_{start,end}_vma() (Waiman Long) [2130166] {CVE-2022-39188}
+- x86/ldt: Use tlb_gather_mmu_fullmm() when freeing LDT page-tables (Waiman Long) [2130166] {CVE-2022-39188}
+- tlb: arch: Remove empty __tlb_remove_tlb_entry() stubs (Waiman Long) [2130166] {CVE-2022-39188}
+- tlb: mmu_gather: Remove start/end arguments from tlb_gather_mmu() (Waiman Long) [2130166] {CVE-2022-39188}
+- tlb: mmu_gather: Introduce tlb_gather_mmu_fullmm() (Waiman Long) [2130166] {CVE-2022-39188}
+- tlb: mmu_gather: Remove unused start/end arguments from tlb_finish_mmu() (Waiman Long) [2130166] {CVE-2022-39188}
+- mm: proc: Invalidate TLB after clearing soft-dirty page state (Waiman Long) [2130166] {CVE-2022-39188}
+- mm: fix clear_refs_write locking (Waiman Long) [2130166] {CVE-2022-39188}
+- s390/Kconfig: sort config S390 select list once again (Waiman Long) [2130166] {CVE-2022-39188}
+- asm-generic/tlb: provide MMU_GATHER_TABLE_FREE (Waiman Long) [2130166] {CVE-2022-39188}
+- asm-generic/tlb: rename HAVE_MMU_GATHER_NO_GATHER (Waiman Long) [2130166] {CVE-2022-39188}
+- asm-generic/tlb: rename HAVE_MMU_GATHER_PAGE_SIZE (Waiman Long) [2130166] {CVE-2022-39188}
+- asm-generic/tlb: rename HAVE_RCU_TABLE_FREE (Waiman Long) [2130166] {CVE-2022-39188}
+- asm-generic/tlb: avoid potential double flush (Waiman Long) [2130166] {CVE-2022-39188}
+- powerpc/mm/book3s64/radix: Flush the full mm even when need_flush_all is set (Waiman Long) [2130166] {CVE-2022-39188}
+- powerpc/mm/book3s64/radix: Use freed_tables instead of need_flush_all (Waiman Long) [2130166] {CVE-2022-39188}
+- mm/tlb: Remove CONFIG_HAVE_RCU_TABLE_INVALIDATE (Waiman Long) [2130166] {CVE-2022-39188}
+- Add skb drop reasons to IPv6 UDP receive path (Antoine Tenart) [2059158]
+- net: skb: export skb drop reaons to user by TRACE_DEFINE_ENUM (Antoine Tenart) [2059158]
+- net: skb: prevent the split of kfree_skb_reason() by gcc (Antoine Tenart) [2059158]
+- tcp: md5: fix IPv4-mapped support (Antoine Tenart) [2059158]
+- net: dropreason: reformat the comment fo skb drop reasons (Antoine Tenart) [2059158]
+- net: skb: use auto-generation to convert skb drop reason to string (Antoine Tenart) [2059158]
+- net: skb: move enum skb_drop_reason to standalone header file (Antoine Tenart) [2059158]
+- tcp_ipv6: set the drop_reason in the right place (Antoine Tenart) [2059158]
+- net: tcp: reset 'drop_reason' to NOT_SPCIFIED in tcp_v{4,6}_rcv() (Antoine Tenart) [2059158]
+- net: skb: change the definition SKB_DR_SET() (Antoine Tenart) [2059158]
+- net: skb: check the boundrary of drop reason in kfree_skb_reason() (Antoine Tenart) [2059158]
+- net: dm: check the boundary of skb drop reasons (Antoine Tenart) [2059158]
+- tcp: fix signed/unsigned comparison (Antoine Tenart) [2059158]
+- tcp: add drop reason support to tcp_ofo_queue() (Antoine Tenart) [2059158]
+- tcp: add drop reasons to tcp_rcv_synsent_state_process() (Antoine Tenart) [2059158]
+- tcp: make tcp_rcv_synsent_state_process() drop monitor friend (Antoine Tenart) [2059158]
+- tcp: add drop reason support to tcp_prune_ofo_queue() (Antoine Tenart) [2059158]
+- tcp: add two drop reasons for tcp_ack() (Antoine Tenart) [2059158]
+- tcp: add drop reasons to tcp_rcv_state_process() (Antoine Tenart) [2059158]
+- tcp: make tcp_rcv_state_process() drop monitor friendly (Antoine Tenart) [2059158]
+- tcp: add drop reason support to tcp_validate_incoming() (Antoine Tenart) [2059158]
+- tcp: get rid of rst_seq_match (Antoine Tenart) [2059158]
+- tcp: consume incoming skb leading to a reset (Antoine Tenart) [2059158]
+- tcp: tcp_send_challenge_ack delete useless param `skb` (Antoine Tenart) [2059158]
+- ipv6: fix NULL deref in ip6_rcv_core() (Antoine Tenart) [2059158]
+- net: ipv6: add skb drop reasons to ip6_protocol_deliver_rcu() (Antoine Tenart) [2059158]
+- net: ipv6: add skb drop reasons to ip6_rcv_core() (Antoine Tenart) [2059158]
+- net: ipv6: add skb drop reasons to TLV parse (Antoine Tenart) [2059158]
+- net: ipv6: remove redundant statistics in ipv6_hop_jumbo() (Antoine Tenart) [2059158]
+- net: icmp: introduce function icmpv6_param_prob_reason() (Antoine Tenart) [2059158]
+- net: ip: add skb drop reasons to ip forwarding (Antoine Tenart) [2059158]
+- net: ipv6: add skb drop reasons to ip6_pkt_drop() (Antoine Tenart) [2059158]
+- net: ipv4: add skb drop reasons to ip_error() (Antoine Tenart) [2059158]
+- skb: add some helpers for skb drop reasons (Antoine Tenart) [2059158]
+- net: icmp: add skb drop reasons to icmp protocol (Antoine Tenart) [2059158]
+- ping: Check return value of function 'ping_queue_rcv_skb' (Antoine Tenart) [2059158]
+- net: icmp: introduce __ping_queue_rcv_skb() to report drop reasons (Antoine Tenart) [2059158]
+- net: skb: rename SKB_DROP_REASON_PTYPE_ABSENT (Antoine Tenart) [2059158]
+- net: sock: introduce sock_queue_rcv_skb_reason() (Antoine Tenart) [2059158]
+- net: tcp: fix shim definition of tcp_inbound_md5_hash (Antoine Tenart) [2059158]
+- skb: make drop reason booleanable (Antoine Tenart) [2059158]
+- net/tcp: Merge TCP-MD5 inbound callbacks (Antoine Tenart) [2059158]
+- tcp: md5: add tcp_md5_needed jump label (Antoine Tenart) [2059158]
+- net: tun: track dropped skb via kfree_skb_reason() (Antoine Tenart) [2059158]
+- net: tun: split run_ebpf_filter() and pskb_trim() into different "if statement" (Antoine Tenart) [2059158]
+- net: tap: track dropped skb via kfree_skb_reason() (Antoine Tenart) [2059158]
+- net: dev: use kfree_skb_reason() for __netif_receive_skb_core() (Antoine Tenart) [2059158]
+- net: dev: use kfree_skb_reason() for sch_handle_ingress() (Antoine Tenart) [2059158]
+- net: dev: use kfree_skb_reason() for do_xdp_generic() (Antoine Tenart) [2059158]
+- net: dev: use kfree_skb_reason() for enqueue_to_backlog() (Antoine Tenart) [2059158]
+- net: dev: add skb drop reasons to __dev_xmit_skb() (Antoine Tenart) [2059158]
+- net: skb: introduce the function kfree_skb_list_reason() (Antoine Tenart) [2059158]
+- net: dev: use kfree_skb_reason() for sch_handle_egress() (Antoine Tenart) [2059158]
+- net: neigh: add skb drop reasons to arp_error_report() (Antoine Tenart) [2059158]
+- net: neigh: use kfree_skb_reason() for __neigh_event_send() (Antoine Tenart) [2059158]
+- net: ip: add skb drop reasons for ip egress path (Antoine Tenart) [2059158]
+- net: tcp: use tcp_drop_reason() for tcp_data_queue_ofo() (Antoine Tenart) [2059158]
+- net: tcp: use tcp_drop_reason() for tcp_data_queue() (Antoine Tenart) [2059158]
+- net: tcp: use tcp_drop_reason() for tcp_rcv_established() (Antoine Tenart) [2059158]
+- net: tcp: use kfree_skb_reason() for tcp_v{4,6}_do_rcv() (Antoine Tenart) [2059158]
+- net: tcp: add skb drop reasons to tcp_add_backlog() (Antoine Tenart) [2059158]
+- net: tcp: add skb drop reasons to tcp_v{4,6}_inbound_md5_hash() (Antoine Tenart) [2059158]
+- ipv4/tcp: Pass dif and sdif to tcp_v4_inbound_md5_hash (Antoine Tenart) [2059158]
+- ipv6/tcp: Pass dif and sdif to tcp_v6_inbound_md5_hash (Antoine Tenart) [2059158]
+- ipv4/tcp: Use local variable for tcp_md5_addr (Antoine Tenart) [2059158]
+- net: tcp: use kfree_skb_reason() for tcp_v6_rcv() (Antoine Tenart) [2059158]
+- net: tcp: add skb drop reasons to tcp_v4_rcv() (Antoine Tenart) [2059158]
+- net: tcp: introduce tcp_drop_reason() (Antoine Tenart) [2059158]
+- ipv6: Add reasons for skb drops to __udp6_lib_rcv (Antoine Tenart) [2059158]
+- net: drop_monitor: support drop reason (Antoine Tenart) [2059158]
+- net: udp: use kfree_skb_reason() in __udp_queue_rcv_skb() (Antoine Tenart) [2059158]
+- net: udp: use kfree_skb_reason() in udp_queue_rcv_one_skb() (Antoine Tenart) [2059158]
+- net: ipv4: use kfree_skb_reason() in ip_protocol_deliver_rcu() (Antoine Tenart) [2059158]
+- net: ipv4: use kfree_skb_reason() in ip_rcv_finish_core() (Antoine Tenart) [2059158]
+- net: ipv4: use kfree_skb_reason() in ip_rcv_core() (Antoine Tenart) [2059158]
+- net: netfilter: use kfree_drop_reason() for NF_DROP (Antoine Tenart) [2059158]
+- net: skb_drop_reason: add document for drop reasons (Antoine Tenart) [2059158]
+- net: socket: rename SKB_DROP_REASON_SOCKET_FILTER (Antoine Tenart) [2059158]
+- net: skb: use kfree_skb_reason() in __udp4_lib_rcv() (Antoine Tenart) [2059158]
+- net: skb: use kfree_skb_reason() in tcp_v4_rcv() (Antoine Tenart) [2059158]
+- net: skb: introduce kfree_skb_reason() (Antoine Tenart) [2059158]
+- bnx2x: Fix comment typo (Manish Chopra) [2111882]
+- bnx2x: Fix spelling mistake "regiser" -> "register" (Manish Chopra) [2111882]
+- bnx2x: Fix undefined behavior due to shift overflowing the constant (Manish Chopra) [2111882]
+- net: sched: act_ct: fix possible refcount leak in tcf_ct_init() (Davide Caratti) [2133741]
+- net: sched: fix possible refcount leak in tc_new_tfilter() (Davide Caratti) [2133741]
+- sch_sfb: Also store skb len before calling child enqueue (Davide Caratti) [2133741]
+- sch_sfb: Don't assume the skb is still around after enqueueing to child (Davide Caratti) [2133741]
+- net/sched: fix netdevice reference leaks in attach_default_qdiscs() (Davide Caratti) [2133741]
+- net: sched: tbf: don't call qdisc_put() while holding tree lock (Davide Caratti) [2133741]
+- net: Fix data-races around weight_p and dev_weight_[rt]x_bias. (Davide Caratti) [2133741]
+- net/sched: act_api: Notify user space if any actions were flushed before error (Davide Caratti) [2133741]
+- tipc: fix an information leak in tipc_topsrv_kern_subscr (Xin Long) [2134962]
+- tipc: Fix recognition of trial period (Xin Long) [2134962]
+- tipc: fix shift wrapping bug in map_get() (Xin Long) [2134962]
+- PCI/ASPM: Make Intel DG2 L1 acceptable latency unlimited (Myron Stowe) [2072656]
+- x86/pci/xen: Use msi_msg shadow structs (Jerry Snitselaar) [2133518]
+- iommu/intel: Use msi_msg shadow structs (Jerry Snitselaar) [2133518]
+- PCI: MSI: Fix Kconfig dependencies for PCI_MSI_ARCH_FALLBACKS (Jerry Snitselaar) [2133518]
+- x86/apic/msi: Unbreak DMAR and HPET MSI (Jerry Snitselaar) [2133518]
+- iommu/amd: Remove domain search for PCI/MSI (Jerry Snitselaar) [2133518]
+- iommu/vt-d: Remove domain search for PCI/MSI[X] (Jerry Snitselaar) [2133518]
+- x86/irq: Make most MSI ops XEN private (Jerry Snitselaar) [2133518]
+- x86/irq: Cleanup the arch_*_msi_irqs() leftovers (Jerry Snitselaar) [2133518]
+- PCI/MSI: Make arch_.*_msi_irq[s] fallbacks selectable (Jerry Snitselaar) [2133518]
+- x86/xen: Wrap XEN MSI management into irqdomain (Jerry Snitselaar) [2133518]
+- x86/xen: Consolidate XEN-MSI init (Jerry Snitselaar) [2133518]
+- x86/xen: Rework MSI teardown (Jerry Snitselaar) [2133518]
+- x86/xen: Make xen_msi_init() static and rename it to xen_hvm_msi_init() (Jerry Snitselaar) [2133518]
+- x86/irq: Move apic_post_init() invocation to one place (Jerry Snitselaar) [2133518]
+- x86/msi: Use generic MSI domain ops (Jerry Snitselaar) [2133518]
+- x86/msi: Remove pointless vcpu_affinity callback (Jerry Snitselaar) [2133518]
+- netfilter: nf_conntrack_irc: Tighten matching on DCC message (Wander Lairson Costa) [2124092] {CVE-2022-2663}
+- netfilter: nf_conntrack_irc: Fix forged IP logic (Wander Lairson Costa) [2124092] {CVE-2022-2663}
+- ice: Add support Flex RXD (Michal Schmidt) [2131310]
+- asm-generic: sections: refactor memory_intersects (Jerry Snitselaar) [2112119]
+- swiotlb: fix passing local variable to debugfs_create_ulong() (Jerry Snitselaar) [2112119]
+- swiotlb: move struct io_tlb_slot to swiotlb.c (Jerry Snitselaar) [2112119]
+- swiotlb: ensure a segment doesn't cross the area boundary (Jerry Snitselaar) [2112119]
+- swiotlb: consolidate rounding up default_nslabs (Jerry Snitselaar) [2112119]
+- swiotlb: remove unused fields in io_tlb_mem (Jerry Snitselaar) [2112119]
+- swiotlb: fix use after free on error handling path (Jerry Snitselaar) [2112119]
+- swiotlb: split up the global swiotlb lock (Jerry Snitselaar) [2112119]
+- swiotlb: fail map correctly with failed io_tlb_default_mem (Jerry Snitselaar) [2112119]
+- swiotlb: remove a useless return in swiotlb_init (Jerry Snitselaar) [2112119]
+- swiotlb: remove the unused swiotlb_force declaration (Jerry Snitselaar) [2112119]
+- iommu/dma: Fix race condition during iova_domain initialization (Jerry Snitselaar) [2112119]
+- iommu/amd: Fix compile warning in init code (Jerry Snitselaar) [2106599]
+- iommu/amd: Simplify and Consolidate Virtual APIC (AVIC) Enablement (Jerry Snitselaar) [2106599]
+- iommu/vt-d: Check correct capability for sagaw determination (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Correctly calculate sagaw value of IOMMU (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Fix kdump kernels boot failure with scalable mode (Jerry Snitselaar) [2080413]
+- iommu/amd: use full 64-bit value in build_completion_wait() (Jerry Snitselaar) [2112119]
+- swiotlb: avoid potential left shift overflow (Jerry Snitselaar) [2112119]
+- dma-debug: improve search for partial syncs (Jerry Snitselaar) [2112119]
+- iommu/iova: Improve 32-bit free space estimate (Jerry Snitselaar) [2112119]
+- iommu/amd: Handle return of iommu_device_sysfs_add (Jerry Snitselaar) [2112119]
+- swiotlb: fix setting ->force_bounce (Jerry Snitselaar) [2112119]
+- swiotlb: use the right nslabs-derived sizes in swiotlb_init_late (Jerry Snitselaar) [2112119]
+- swiotlb: use the right nslabs value in swiotlb_init_remap (Jerry Snitselaar) [2112119]
+- swiotlb: don't panic when the swiotlb buffer can't be allocated (Jerry Snitselaar) [2112119]
+- x86: remove cruft from <asm/dma-mapping.h> (Jerry Snitselaar) [2112119]
+- swiotlb: remove swiotlb_init_with_tbl and swiotlb_init_late_with_tbl (Jerry Snitselaar) [2112119]
+- swiotlb: provide swiotlb_init variants that remap the buffer (Jerry Snitselaar) [2112119]
+- swiotlb: pass a gfp_mask argument to swiotlb_init_late (Jerry Snitselaar) [2112119]
+- swiotlb: add a SWIOTLB_ANY flag to lift the low memory restriction (Jerry Snitselaar) [2112119]
+- swiotlb: make the swiotlb_init interface more useful (Jerry Snitselaar) [2112119]
+- x86: centralize setting SWIOTLB_FORCE when guest memory encryption is enabled (Jerry Snitselaar) [2112119]
+- x86: remove the IOMMU table infrastructure (Jerry Snitselaar) [2112119]
+- swiotlb: rename swiotlb_late_init_with_default_size (Jerry Snitselaar) [2112119]
+- swiotlb: simplify swiotlb_max_segment (Jerry Snitselaar) [2112119]
+- iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) (Jerry Snitselaar) [2112119]
+- iommu/arm-smmu-v3: check return value after calling platform_get_resource() (Jerry Snitselaar) [2112119]
+- iommu/arm-smmu: fix possible null-ptr-deref in arm_smmu_device_probe() (Jerry Snitselaar) [2112119]
+- iommu/amd: Increase timeout waiting for GA log enablement (Jerry Snitselaar) [2112119]
+- iommu/amd: Do not call sleep while holding spinlock (Jerry Snitselaar) [2112119]
+- iommu/amd: Remove redundant check (Jerry Snitselaar) [2112119]
+- swiotlb: simplify array allocation (Jerry Snitselaar) [2112119]
+- swiotlb: tidy up includes (Jerry Snitselaar) [2112119]
+- treewide: Replace the use of mem_encrypt_active() with cc_platform_has() (Jerry Snitselaar) [2112119]
+- swiotlb: simplify debugfs setup (Jerry Snitselaar) [2112119]
+- iommu: Log iova range in map/unmap trace events (Jerry Snitselaar) [2112119]
+- iommu/amd: Improve amd_iommu_v2_exit() (Jerry Snitselaar) [2112119]
+- iommu/amd: Remove unused struct fault.devid (Jerry Snitselaar) [2112119]
+- iommu/amd: Clean up function declarations (Jerry Snitselaar) [2112119]
+- iommu/amd: Improve error handling for amd_iommu_init_pci (Jerry Snitselaar) [2112119]
+- iommu/iova: Separate out rcache init (Jerry Snitselaar) [2112119]
+- iommu/iova: Temporarily include dma-mapping.h from iova.h (Jerry Snitselaar) [2112119]
+- iommu: Move flush queue data into iommu_dma_cookie (Jerry Snitselaar) [2112119]
+- iommu/iova: Move flush queue code to iommu-dma (Jerry Snitselaar) [2112119]
+- iommu/iova: Consolidate flush queue code (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Use put_pages_list (Jerry Snitselaar) [2112119]
+- iommu/amd: Use put_pages_list (Jerry Snitselaar) [2112119]
+- iommu/amd: Simplify pagetable freeing (Jerry Snitselaar) [2112119]
+- iommu/iova: Squash flush_cb abstraction (Jerry Snitselaar) [2112119]
+- iommu/iova: Squash entry_dtor abstraction (Jerry Snitselaar) [2112119]
+- iommu/iova: Move fast alloc size roundup into alloc_iova_fast() (Jerry Snitselaar) [2112119]
+- iommu/arm-smmu-v3: fix event handling soft lockup (Jerry Snitselaar) [2112119]
+- iommu/arm-smmu-v3: Avoid open coded arithmetic in memory allocation (Jerry Snitselaar) [2112119]
+- iommu/amd: Fix loop timeout issue in iommu_ga_log_enable() (Jerry Snitselaar) [2112119]
+- iommu/intel: Use msi_msg shadow structs (Jerry Snitselaar) [2112119]
+- dma-mapping: use 'bitmap_zalloc()' when applicable (Jerry Snitselaar) [2112119]
+- iommu/dma: Use kvcalloc() instead of kvzalloc() (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Convert the return type of first_pte_in_page to bool (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Use second level for GPA->HPA translation (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Remove duplicate identity domain flag (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Do not falsely log intel_iommu is unsupported kernel option (Jerry Snitselaar) [2112119]
+- iommu/dma: Unexport IOVA cookie management (Jerry Snitselaar) [2112119]
+- iommu/amd: Use struct_group() for memcpy() region (Jerry Snitselaar) [2112119]
+- dma-mapping: remove bogus test for pfn_valid from dma_map_resource (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Use pci_dev_id() helper (Jerry Snitselaar) [2112119]
+- swiotlb-xen: this is PV-only on x86 (Jerry Snitselaar) [2112119]
+- xen/pci-swiotlb: reduce visibility of symbols (Jerry Snitselaar) [2112119]
+- iova: Export alloc_iova_fast() and free_iova_fast() (Jerry Snitselaar) [2112119]
+- iommu: Clarify default domain Kconfig (Jerry Snitselaar) [2112119]
+- iommu/io-pgtable: Abstract iommu_iotlb_gather access (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Refactor Kconfig a bit (Jerry Snitselaar) [2112119]
+- iommu: Allow enabling non-strict mode dynamically (Jerry Snitselaar) [2112119]
+- iommu: Merge strictness and domain type configs (Jerry Snitselaar) [2112119]
+- iommu: Only log strictness for DMA domains (Jerry Snitselaar) [2112119]
+- iommu: Expose DMA domain strictness via sysfs (Jerry Snitselaar) [2112119]
+- iommu: Express DMA strictness via the domain type (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Prepare for multiple DMA domain types (Jerry Snitselaar) [2112119]
+- iommu/arm-smmu: Prepare for multiple DMA domain types (Jerry Snitselaar) [2112119]
+- iommu/amd: Prepare for multiple DMA domain types (Jerry Snitselaar) [2112119]
+- iommu: Introduce explicit type for non-strict DMA domains (Jerry Snitselaar) [2112119]
+- iommu/io-pgtable: Remove non-strict quirk (Jerry Snitselaar) [2112119]
+- iommu: Indicate queued flushes via gather data (Jerry Snitselaar) [2112119]
+- iommu/amd: Remove stale amd_iommu_unmap_flush usage (Jerry Snitselaar) [2112119]
+- iommu: Remove mode argument from iommu_set_dma_strict() (Jerry Snitselaar) [2112119]
+- iommu/amd: Add support for IOMMU default DMA mode build options (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Add support for IOMMU default DMA mode build options (Jerry Snitselaar) [2112119]
+- iommu: Enhance IOMMU default DMA mode build options (Jerry Snitselaar) [2112119]
+- iommu: Print strict or lazy mode at init time (Jerry Snitselaar) [2112119]
+- iommu: Deprecate Intel and AMD cmdline methods to enable strict mode (Jerry Snitselaar) [2112119]
+- dma-debug: use memory_intersects() directly (Jerry Snitselaar) [2112119]
+- dma-debug: fix return value of __setup handlers (Jerry Snitselaar) [2112119]
+- arm-smmu-qcom: Ensure the qcom_scm driver has finished probing (Jerry Snitselaar) [2112119]
+- iommu/io-pgtable-arm: Clean up faulty sanity check (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Fix RCU list debugging warnings (Jerry Snitselaar) [2112119]
+- iommu/dma: add a new dma_map_ops of get_merge_boundary() (Jerry Snitselaar) [2112119]
+- swiotlb: do not zero buffer in set_memory_decrypted() (Jerry Snitselaar) [2112119]
+- iommu: iommu_ops RH_KABI cleanup (Jerry Snitselaar) [2112119]
+- device: Fix RH_KABI work around (Jerry Snitselaar) [2112357]
+- iommu/vt-d: Drop stop marker messages (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Remove unused function intel_svm_capable() (Jerry Snitselaar) [2112119]
+- iommu/arm-smmu-v3: Fix size calculation in arm_smmu_mm_invalidate_range() (Jerry Snitselaar) [2112119]
+- iommu/vt-d: Delete dev_has_feat callback (Jerry Snitselaar) [2112119]
+- iommu/amd: Remove useless irq affinity notifier (Jerry Snitselaar) [2112119]
+
+* Mon Nov 07 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-435.el8]
+- scsi: qedi: Fix ABBA deadlock in qedi_process_tmf_resp() and qedi_process_cmd_cleanup_resp() (Nilesh Javali) [2109890]
+- scsi: qedi: Remove set but unused 'page' variable (Nilesh Javali) [2109890]
+- x86/elf: Disable automatic READ_IMPLIES_EXEC on 64-bit (Wander Lairson Costa) [2070700] {CVE-2022-25265}
+- x86/elf: Split READ_IMPLIES_EXEC from executable PT_GNU_STACK (Wander Lairson Costa) [2070700] {CVE-2022-25265}
+- x86/elf: Add table to document READ_IMPLIES_EXEC (Wander Lairson Costa) [2070700] {CVE-2022-25265}
+- RHEL-only: KVM: selftests: Enable rseq_test on aarch64 (Gavin Shan) [2128974]
+- KVM: selftests: Use getcpu() instead of sched_getcpu() in rseq_test (Gavin Shan) [2128974]
+- selftests: kvm: Fix a compile error in selftests/kvm/rseq_test.c (Gavin Shan) [2128974]
+- KVM: selftests: Fix target thread to be migrated in rseq_test (Gavin Shan) [2128974]
+- selftests: KVM: Handle compiler optimizations in ucall (Gavin Shan) [2128974]
+- selftests: kvm: replace ternary operator with min() (Gavin Shan) [2128974]
+- KVM: selftests: Fix typo in vgic_init test (Gavin Shan) [2128974]
+- KVM: selftests: Fix buggy-but-benign check in test_v3_new_redist_regions() (Gavin Shan) [2128974]
+- KVM: arm64: vgic: Fix exit condition in scan_its_table() (Gavin Shan) [2128974]
+- KVM: arm64: selftests: Add support for GICv2 on v3 (Gavin Shan) [2128974]
+- KVM: arm64: Fix comment typo in nvhe/switch.c (Gavin Shan) [2128974]
+- KVM: arm64: vgic: Remove duplicate check in update_affinity_collection() (Gavin Shan) [2128974]
+- KVM: arm64: Don't return from void function (Gavin Shan) [2128974]
+- KVM: arm64: Drop stale comment (Gavin Shan) [2128974]
+- KVM: arm64: Warn if accessing timer pending state outside of vcpu context (Gavin Shan) [2128974]
+- KVM: arm64: Replace vgic_v3_uaccess_read_pending with vgic_uaccess_read_pending (Gavin Shan) [2128974]
+- KVM: arm64: vgic: Undo work in failed ITS restores (Gavin Shan) [2128974]
+- KVM: arm64: vgic: Do not ignore vgic_its_restore_cte failures (Gavin Shan) [2128974]
+- KVM: arm64: vgic: Add more checks when restoring ITS tables (Gavin Shan) [2128974]
+- KVM: arm64: vgic: Check that new ITEs could be saved in guest memory (Gavin Shan) [2128974]
+- KVM: arm64: nvhe: Eliminate kernel-doc warnings (Gavin Shan) [2128974]
+- KVM: arm64: Print emulated register table name when it is unsorted (Gavin Shan) [2128974]
+- KVM: arm64: Don't BUG_ON() if emulated register table is unsorted (Gavin Shan) [2128974]
+- KVM: arm64: Inject exception on out-of-IPA-range translation fault (Gavin Shan) [2128974]
+- KVM: arm64: vgic: Remove unnecessary type castings (Gavin Shan) [2128974]
+- KVM: arm64: Drop unused param from kvm_psci_version() (Gavin Shan) [2128974]
+- KVM: arm64: vgic: Add memcg accounting to vgic allocations (Gavin Shan) [2128974]
+- x86/split_lock: Enable the split lock feature on Raptor Lake (Prarit Bhargava) [2076738]
+- mm: prevent page_frag_alloc() from corrupting the memory (Izabela Bakollari) [2132265]
+- RDMA/mlx5: Set local port to one when accessing counters (Mohammad Kabat) [2077119]
+- scsi: ch: Do not initialise statics to 0 (Ewan D. Milne) [2132458]
+- scsi: core: Fix warning in scsi_alloc_sgtables() (Ewan D. Milne) [2132458]
+- scsi: core: Move the definition of SCSI_QUEUE_DELAY (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Fix zone transition to full condition (Ewan D. Milne) [2132458]
+- scsi: sd_zbc: Prevent zone information memory leak (Ewan D. Milne) [2132458]
+- scsi: sd: Fix potential NULL pointer dereference (Ewan D. Milne) [2132458]
+- scsi: sr: Add memory allocation failure handling for get_capabilities() (Ewan D. Milne) [2132458]
+- scsi: sd: Use cached ATA Information VPD page (Ewan D. Milne) [2132458]
+- scsi: core: Do not truncate INQUIRY data on modern devices (Ewan D. Milne) [2132458]
+- scsi: core: Pick suitable allocation length in scsi_report_opcode() (Ewan D. Milne) [2132458]
+- scsi: core: Query VPD size before getting full page (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Add gap zone support (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Rename zone type constants (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Fix a typo (Ewan D. Milne) [2132458]
+- scsi: sd: sd_zbc: Hide gap zones (Ewan D. Milne) [2132458]
+- scsi: sd: sd_zbc: Return early in sd_zbc_check_zoned_characteristics() (Ewan D. Milne) [2132458]
+- scsi: sd: sd_zbc: Introduce struct zoned_disk_info (Ewan D. Milne) [2132458]
+- scsi: sd: sd_zbc: Use logical blocks as unit when querying zones (Ewan D. Milne) [2132458]
+- scsi: sd: sd_zbc: Verify that the zone size is a power of two (Ewan D. Milne) [2132458]
+- scsi: sd: sd_zbc: Improve source code documentation (Ewan D. Milne) [2132458]
+- scsi: sr: Do not leak information in ioctl (Ewan D. Milne) [2132458]
+- scsi: core: Remove unreachable code warning (Ewan D. Milne) [2132458]
+- scsi: libfc: Fix use after free in fc_exch_abts_resp() (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Silence unexpected unlock warnings (Ewan D. Milne) [2132458]
+- scsi: Remove unused member cmd_pool for structure scsi_host_template (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Add environmental reporting log subpage (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Add no_rwlock parameter (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Divide power on reset UNIT ATTENTION (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Use TASK SET FULL more (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Strengthen defer_t accesses (Ewan D. Milne) [2132458]
+- scsi: ch: Don't use GFP_DMA (Ewan D. Milne) [2132458]
+- scsi: scsi_transport_sas: Add 22.5 Gbps link rate definitions (Ewan D. Milne) [2132458]
+- scsi: sd: Free scsi_disk device via put_device() (Ewan D. Milne) [2132458]
+- scsi: scsi_debug: Adjust num_parts to create equally sized partitions (Ewan D. Milne) [2132458]
+- scsi: ch: remove ch_mutex() (Ewan D. Milne) [2132458]
+- scsi: ch: synchronize ch_probe() and ch_open() (Ewan D. Milne) [2132458]
+- scsi: ch: fixup refcounting imbalance for SCSI devices (Ewan D. Milne) [2132458]
+- scsi: mpi3mr: Schedule IRQ kthreads only on non-RT kernels (Tomas Henzl) [2134535]
+- netfilter: flowtable: fix stuck flows on cleanup due to pending work (Phil Sutter) [2131370]
+- netfilter: flowtable: add function to invoke garbage collection immediately (Phil Sutter) [2131370]
+- netfilter: flowtable: pass flowtable to nf_flow_table_iterate() (Phil Sutter) [2131370]
+- netfilter: flowtable: separate replace, destroy and stats to different workqueues (Phil Sutter) [2131370]
+- drm/mgag200: Fix PLL setup for G200_SE_A rev >=4 (Jocelyn Falempe) [2130159]
+- af_key: Do not call xfrm_probe_algs in parallel (Sabrina Dubroca) [2122369] {CVE-2022-3028}
+- xfrm: Update ipcomp_scratches with NULL when freed (Sabrina Dubroca) [2136193]
+- esp: choose the correct inner protocol for GSO on inter address family tunnels (Sabrina Dubroca) [2136193]
+- xfrm: fix refcount leak in __xfrm_policy_check() (Sabrina Dubroca) [2136193]
+- xfrm: xfrm_policy: fix a possible double xfrm_pols_put() in xfrm_bundle_lookup() (Sabrina Dubroca) [2136193]
+- net: Fix esp GSO on inter address family tunnels. (Sabrina Dubroca) [2136193]
+- esp: Fix BEET mode inter address family tunneling on GSO (Sabrina Dubroca) [2136193]
+- cifs: fix check of dfs interlinks (Ronnie Sahlberg) [2132414]
+- powerpc/pseries: Fix numa FORM2 parsing fallback code (Nico Pache) [2089496]
+- powerpc/pseries: rename numa_dist_table to form2_distances (Nico Pache) [2089496]
+- x86/pkey: Fix undefined behaviour with PKRU_WD_BIT (Nico Pache) [2089496]
+- hugetlb: add lockdep check for i_mmap_rwsem held in huge_pmd_share (Nico Pache) [2089496]
+- mm: page_io: fix psi memory pressure error on cold swapins (Nico Pache) [2089496]
+- mm/memcg: Remove 'page' parameter to mem_cgroup_charge_statistics() (Nico Pache) [2089496]
+- mm: workingset: replace IRQ-off check with a lockdep assert. (Nico Pache) [2089496]
+- mm/madvise: fix potential pte_unmap_unlock pte error (Nico Pache) [2089496]
+- mm/mmu_notifier.c: fix race in mmu_interval_notifier_remove() (Nico Pache) [2089496]
+- mm/sparse.c: remove NULL check in clear_hwpoisoned_pages() (Nico Pache) [2089496]
+- node: fix device cleanups in error handling code (Nico Pache) [2089496]
+- x86/setup: Fix static memory detection (Nico Pache) [2089496]
+- x86/fault: Don't send SIGSEGV twice on SEGV_PKUERR (Nico Pache) [2089496]
+- s390/startup: round down "mem" option to page boundary (Nico Pache) [2089496]
+- powerpc/64s: Remove 'dummy_copy_buffer' (Nico Pache) [2089496]
+- page_alloc: fix invalid watermark check on a negative value (Nico Pache) [2089496]
+- lib/radix-tree: remove unused argument of insert_entries (Nico Pache) [2089496]
+- drm/radeon: fix incorrrect SPDX-License-Identifiers (Nico Pache) [2089496]
+- mm/swap: fix the obsolete comment for SWP_TYPE_SHIFT (Nico Pache) [2089496]
+- irq_work: use kasan_record_aux_stack_noalloc() record callstack (Nico Pache) [2089496]
+- kdb: Fix the putarea helper function (Nico Pache) [2089496]
+- mm: slab: Delete unused SLAB_DEACTIVATED flag (Nico Pache) [2089496]
+- mm, kasan: use compare-exchange operation to set KASAN page tag (Nico Pache) [2089496]
+- rcu: Avoid alloc_pages() when recording stack (Nico Pache) [2089496]
+- workqueue, kasan: avoid alloc_pages() when recording stack (Nico Pache) [2089496]
+- kasan: generic: introduce kasan_record_aux_stack_noalloc() (Nico Pache) [2089496]
+- kasan: common: provide can_alloc in kasan_save_stack() (Nico Pache) [2089496]
+- lib/stackdepot: remove unused function argument (Nico Pache) [2089496]
+- lib/stackdepot: include gfp.h (Nico Pache) [2089496]
+- blk-cgroup: blk_cgroup_bio_start() should use irq-safe operations on blkg->iostat_cpu (Nico Pache) [2089496]
+- libnvdimm/pmem: Fix crash triggered when I/O in-flight during unbind (Nico Pache) [2089496]
+- include/trace/events/vmscan.h: remove mm_vmscan_inactive_list_is_low (Nico Pache) [2089496]
+- khugepaged: selftests: remove debug_cow (Nico Pache) [2089496]
+- mm/mmzone.h: simplify is_highmem_idx() (Nico Pache) [2089496]
+- mm/page-writeback: use __this_cpu_inc() in account_page_dirtied() (Nico Pache) [2089496]
+- mm/page-writeback: update the comment of Dirty position control (Nico Pache) [2089496]
+- mm/page-writeback: Fix performance when BDI's share of ratio is 0. (Nico Pache) [2089496]
+- fuse: ignore PG_workingset after stealing (Nico Pache) [2089496]
+- mm/slub: actually fix freelist pointer vs redzoning (Nico Pache) [2089496]
+- mm/slub: clarify verification reporting (Nico Pache) [2089496]
+- irq_work: Make irq_work_queue() NMI-safe again (Nico Pache) [2089496]
+- mm/huge_memory.c: remove unused macro TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG (Nico Pache) [2089496]
+- irq_work: record irq_work_queue() call stack (Nico Pache) [2089496]
+- arm64: kasan: fix page_alloc tagging with DEBUG_VIRTUAL (Nico Pache) [2089496]
+- mm/arm64: Correct obsolete comment in do_page_fault() (Nico Pache) [2089496]
+- kernel: kexec: remove the lock operation of system_transition_mutex (Nico Pache) [2089496]
+- libnvdimm/pmem: Remove unused header (Nico Pache) [2089496]
+- workqueue: kasan: record workqueue stack (Nico Pache) [2089496]
+- lib/test_kasan.c: add workqueue test case (Nico Pache) [2089496]
+- page_frag: Recover from memory pressure (Nico Pache) [2089496]
+- mm: use helper function put_write_access() (Nico Pache) [2089496]
+- mm/swapfile.c: remove unnecessary goto out in _swap_info_get() (Nico Pache) [2089496]
+- mm/swap.c: fix incomplete comment in lru_cache_add_inactive_or_unevictable() (Nico Pache) [2089496]
+- mm/page_io.c: remove useless out label in __swap_writepage() (Nico Pache) [2089496]
+- mm/swap_slots.c: remove always zero and unused return value of enable_swap_slots_cache() (Nico Pache) [2089496]
+- mm/swap.c: fix confusing comment in release_pages() (Nico Pache) [2089496]
+- mm: annotate a data race in page_zonenum() (Nico Pache) [2089496]
+- mm/swap.c: annotate data races for lru_rotate_pvecs (Nico Pache) [2089496]
+- mm/rmap: annotate a data race at tlb_flush_batched (Nico Pache) [2089496]
+- mm/mempool: fix a data race in mempool_free() (Nico Pache) [2089496]
+- mm/list_lru: fix a data race in list_lru_count_one (Nico Pache) [2089496]
+- mm/memcontrol: fix a data race in scan count (Nico Pache) [2089496]
+- mm/swapfile: fix and annotate various data races (Nico Pache) [2089496]
+- mm: thp: remove debug_cow switch (Nico Pache) [2089496]
+- page_alloc: consider highatomic reserve in watermark fast (Nico Pache) [2089496]
+- mm: remove unnecessary wrapper function do_mmap_pgoff() (Nico Pache) [2089496]
+- doc: don't use deprecated "---help---" markers in target docs (Nico Pache) [2089496]
+- doc: cgroup: update note about conditions when oom killer is invoked (Nico Pache) [2089496]
+- mm: add kvfree_sensitive() for freeing sensitive data objects (Nico Pache) [2089496]
+- f2fs: fix retry logic in f2fs_write_cache_pages() (Nico Pache) [2089496]
+- mm/hugetlb: avoid unnecessary check on pud and pmd entry in huge_pte_offset (Nico Pache) [2089496]
+- mm/page-writeback.c: remove unused variable (Nico Pache) [2089496]
+- zswap: docs/vm: Fix typo accept_threshold_percent in zswap.rst (Nico Pache) [2089496]
+- tracing: Add a vmalloc_sync_mappings() for safe measure (Nico Pache) [2089496]
+- mm/hugetlb: fix a addressing exception caused by huge_pte_offset (Nico Pache) [2089496]
+- mm/page-writeback.c: write_cache_pages(): deduplicate identical checks (Nico Pache) [2089496]
+- revert "topology: add support for node_to_mem_node() to determine the fallback node" (Nico Pache) [2089496]
+- net: memcg: fix lockdep splat in inet_csk_accept() (Nico Pache) [2089496]
+- net: memcg: late association of sock to memcg (Nico Pache) [2089496]
+- tmpfs: deny and force are not huge mount options (Nico Pache) [2089496]
+- mm/zswap.c: add allocation hysteresis if pool limit is hit (Nico Pache) [2089496]
+- mm/swapfile.c: swap_next should increase position index (Nico Pache) [2089496]
+- fat: use prandom_u32() for i_generation (Nico Pache) [2089496]
+- mm/mmap.c: rb_parent is not necessary in __vma_link_list() (Nico Pache) [2089496]
+- mm/mmap.c: __vma_unlink_prev() is not necessary now (Nico Pache) [2089496]
+- docs: kmemleak: DEBUG_KMEMLEAK_EARLY_LOG_SIZE changed names (Nico Pache) [2089496]
+- mm/mmap.c: prev could be retrieved from vma->vm_prev (Nico Pache) [2089496]
+- mm/zsmalloc.c: fix a -Wunused-function warning (Nico Pache) [2089496]
+- mm/rmap.c: remove set but not used variable 'cstart' (Nico Pache) [2089496]
+- tools headers UAPI: Update tools's copy of mman.h headers (Nico Pache) [2089496]
+- mm/mmap: move common defines to mman-common.h (Nico Pache) [2089496]
+- mm: fix the MAP_UNINITIALIZED flag (Nico Pache) [2089496]
+- mm: vmalloc: show number of vmalloc pages in /proc/meminfo (Nico Pache) [2089496]
+- slab: remove /proc/slab_allocators (Nico Pache) [2089496]
+- mm/huge_memory.c: fix "orig_pud" set but not used (Nico Pache) [2089496]
+- mm: hwpoison: use do_send_sig_info() instead of force_sig() (Nico Pache) [2089496]
+- mm, page_alloc: drop should_suppress_show_mem (Nico Pache) [2089496]
+- mm,page_alloc: PF_WQ_WORKER threads must sleep at should_reclaim_retry() (Nico Pache) [2089496]
+- powerpc/8xx: Use patch_site for perf counters setup (Nico Pache) [2089496]
+- powerpc/8xx: Use patch_site for memory setup patching (Nico Pache) [2089496]
+- Revert "powerpc/8xx: Use L1 entry APG to handle _PAGE_ACCESSED for CONFIG_SWAP" (Nico Pache) [2089496]
+- mm/swapfile.c: put_swap_page: share more between huge/normal code path (Nico Pache) [2089496]
+- mm, swap, get_swap_pages: use entry_size instead of cluster in parameter (Nico Pache) [2089496]
+- mm/swapfile.c: add __swap_entry_free_locked() (Nico Pache) [2089496]
+- mm/swapfile.c: unify normal/huge code path in put_swap_page() (Nico Pache) [2089496]
+- mm/swapfile.c: unify normal/huge code path in swap_page_trans_huge_swapped() (Nico Pache) [2089496]
+- mm/swapfile.c: replace some #ifdef with IS_ENABLED() (Nico Pache) [2089496]
+- mm: swap: add comments to lock_cluster_or_swap_info() (Nico Pache) [2089496]
+- mm/swapfile.c: use swap_count() in swap_page_trans_huge_swapped() (Nico Pache) [2089496]
+- mm, oom: remove sleep from under oom_lock (Nico Pache) [2089496]
+- mm/hugetlb: remove gigantic page support for HIGHMEM (Nico Pache) [2089496]
+- mm/page-writeback.c: update stale account_page_redirty() comment (Nico Pache) [2089496]
+- shmem: use monotonic time for i_generation (Nico Pache) [2089496]
+- mptcp: increase default max additional subflows to 2 (Paolo Abeni) [2127136]
+- ipv6/addrconf: fix a null-ptr-deref bug for ip6_ptr (Davide Caratti) [2103990]
+- ipv6: Refactor fib6_ignore_linkdown (Davide Caratti) [2103990]
+- Revert "net: af_key: add check for pfkey_broadcast in function pfkey_process" (Davide Caratti) [2103990]
+- net: af_key: add check for pfkey_broadcast in function pfkey_process (Davide Caratti) [2103990]
+- certs: Add FIPS selftests (Vladis Dronov) [2134828]
+- certs: Move load_certificate_list() to be with the asymmetric keys code (Vladis Dronov) [2134828]
+
+* Wed Nov 02 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-434.el8]
+- selftests/bpf: Limit unroll_count for pyperf600 test (Viktor Malik) [2139128]
+
+* Mon Oct 31 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-433.el8]
+- perf affinity: Fix out of bound access to "sched_cpus" mask (Michael Petlan) [2125952]
+- net: skb: introduce and use a single page frag cache (Paolo Abeni) [2063335]
+- powerpc/pseries/vas: Pass hw_cpu_id to node associativity HCALL (Steve Best) [2131651]
+- agp/intel: Rename intel-gtt symbols (Jocelyn Falempe) [2115871]
+- drm/i915/gt: Split intel-gtt functions by arch (Jocelyn Falempe) [2115871]
+- drm: Implement DRM aperture helpers under video/ (Jocelyn Falempe) [2115871]
+- efi: Fix build error due to enum collision between efi.h and ima.h (Jocelyn Falempe) [2115871]
+- Revert "workqueue: remove unused cancel_work()" (Jocelyn Falempe) [2115871]
+- dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace (Jocelyn Falempe) [2115871]
+- drm/i915/gsc: add gsc as a mei auxiliary device (Jocelyn Falempe) [2115871]
+- drm/i915: Prepare for multiple GTs (Jocelyn Falempe) [2115871]
+- drm/i915/gt: add gt_is_root() helper (Jocelyn Falempe) [2115871]
+- drm/i915: Rename INTEL_REGION_LMEM with INTEL_REGION_LMEM_0 (Jocelyn Falempe) [2115871]
+- drm/i915: fixup the initial fb base on DGFX (Jocelyn Falempe) [2115871]
+- drm/i915: add i915_gem_object_create_region_at() (Jocelyn Falempe) [2115871]
+- drm/i915: Report steering details in debugfs (Jocelyn Falempe) [2115871]
+- x86/gpu: include drm/i915_pciids.h directly in early quirks (Jocelyn Falempe) [2115871]
+- staging: fbtft: core: set smem_len before fb_deferred_io_init call (Jocelyn Falempe) [2115871]
+- fbdev: Put mmap for deferred I/O into drivers (Jocelyn Falempe) [2115871]
+- fbdev: Track deferred-I/O pages in pageref struct (Jocelyn Falempe) [2115871]
+- fbdev: defio: fix the pagelist corruption (Jocelyn Falempe) [2115871]
+- fbdev: Don't sort deferred-I/O pages by default (Jocelyn Falempe) [2115871]
+- staging: fbtft: Add spaces around / - Style (Jocelyn Falempe) [2115871]
+- fbdev/defio: Early-out if page is already enlisted (Jocelyn Falempe) [2115871]
+- panic, kexec: make __crash_kexec() NMI safe (Valentin Schneider) [2134126]
+- kexec: turn all kexec_mutex acquisitions into trylocks (Valentin Schneider) [2134126]
+- kexec: move locking into do_kexec_load (Valentin Schneider) [2134126]
+- ice: Fix interface being down after reset with link-down-on-close flag on (Petr Oros) [2024110]
+- ice: Add low latency Tx timestamp read (Petr Oros) [2092425]
+- ice: introduce ice_ptp_reset_cached_phctime function (Petr Oros) [2092425]
+- ice: re-arrange some static functions in ice_ptp.c (Petr Oros) [2092425]
+- ice: track and warn when PHC update is late (Petr Oros) [2092425]
+- ice: track Tx timestamp stats similar to other Intel drivers (Petr Oros) [2092425]
+- ice: implement adjfine with mul_u64_u64_div_u64 (Petr Oros) [2092425]
+- ice: Add EXTTS feature to the feature bitmap (Petr Oros) [2092425]
+- math: Export mul_u64_u64_div_u64 (Petr Oros) [2092425]
+- neighbour: allow NUD_NOARP entries to be forced GCed (Xin Long) [2076534]
+- neighbour: Prevent Race condition in neighbour subsytem (Xin Long) [2076534]
+- neighbour: Prevent a dead entry from updating gc_list (Xin Long) [2076534]
+- net: Exempt multicast addresses from five-second neighbor lifetime (Xin Long) [2076534]
+- neighbor: Reset gc_entries counter if new entry is released before insert (Xin Long) [2076534]
+- neighbor: Remove externally learned entries from gc_list (Xin Long) [2076534]
+- neighbor: Move neigh_update_ext_learned to core file (Xin Long) [2076534]
+- neighbor: Remove state and flags arguments to neigh_del (Xin Long) [2076534]
+- neighbor: Fix state check in neigh_forced_gc (Xin Long) [2076534]
+- neighbor: Fix locking order for gc_list changes (Xin Long) [2076534]
+- neighbor: gc_list changes should be protected by table lock (Xin Long) [2076534]
+- neighbor: Improve garbage collection (Xin Long) [2076534]
+- neighbour: send netlink notification if NTF_ROUTER changes (Xin Long) [2076534]
+- neighbour: allow admin to set NTF_ROUTER (Xin Long) [2076534]
+- s390/dasd: add device ping attribute (Tobias Huschle) [2043877]
+- s390/dasd: suppress generic error messages for PPRC secondary devices (Tobias Huschle) [2043877]
+- s390/dasd: add ioctl to perform a swap of the drivers copy pair (Tobias Huschle) [2043877]
+- s390/dasd: add copy pair swap capability (Tobias Huschle) [2043877]
+- s390/dasd: add copy pair setup (Tobias Huschle) [2043877]
+- s390/dasd: add query PPRC function (Tobias Huschle) [2043877]
+- s390/dasd: put block allocation in separate function (Tobias Huschle) [2043877]
+- s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup (Tobias Huschle) [2043877]
+- s390/qeth: Split memcpy() of struct qeth_ipacmd_addr_change flexible array (Tobias Huschle) [2110426]
+- s390/qeth: Fix typo 'the the' in comment (Tobias Huschle) [2110426]
+- s390/qdio: Fix spelling mistake (Tobias Huschle) [2110426]
+- qeth: remove a copy of the NAPI_POLL_WEIGHT define (Tobias Huschle) [2110426]
+- scsi: bnx2fc: Avoid using get_cpu() in bnx2fc_cmd_alloc() (Nilesh Javali) [2109895]
+- scsi: bnx2fc: Fix spelling mistake "mis-match" -> "mismatch" (Nilesh Javali) [2109895]
+- scsi: bnx2fc: Make use of the helper macro kthread_run() (Nilesh Javali) [2109895]
+- scsi: bnx2fc: Fix typo in comments (Nilesh Javali) [2109895]
+- scsi: qedf: Populate sysfs attributes for vport (Nilesh Javali) [2120219]
+- scsi: qedf: Fix typo in comment (Nilesh Javali) [2109893]
+- scsi: qedf: Remove redundant variable op (Nilesh Javali) [2109893]
+- scsi: qedf: Remove an unneeded NULL check on list iterator (Nilesh Javali) [2109893]
+- scsi: qedf: Remove unnecessary code (Nilesh Javali) [2109893]
+- s390/sclp: reserve memory occupied by sclp early buffer (Mete Durlu) [2060830]
+- s390: make command line configurable (Mete Durlu) [2060830]
+- s390: support command lines longer than 896 bytes (Mete Durlu) [2060830]
+- s390/kexec_file: move kernel image size check (Mete Durlu) [2060830]
+- s390/boot: move sclp early buffer from fixed address in asm to C (Mete Durlu) [2060830]
+- drivers/base: Fix unsigned comparison to -1 in CPUMAP_FILE_MAX_BYTES (Phil Auld) [2115518]
+- sched/core: Do not requeue task on CPU excluded from cpus_mask (Phil Auld) [2115518]
+- workqueue: Avoid a false warning in unbind_workers() (Phil Auld) [2115518]
+- sched/core: Always flush pending blk_plug (Phil Auld) [2115518]
+- sched/fair: fix case with reduced capacity CPU (Phil Auld) [2115518]
+- sched: Remove unused function group_first_cpu() (Phil Auld) [2115518]
+- sched/fair: Remove redundant word " *" (Phil Auld) [2115518]
+- sched: only perform capability check on privileged operation (Phil Auld) [2115518]
+- sched: Allow newidle balancing to bail out of load_balance (Phil Auld) [2115518]
+- sched: Remove the limitation of WF_ON_CPU on wakelist if wakee cpu is idle (Phil Auld) [2115518]
+- sched: Fix the check of nr_running at queue wakelist (Phil Auld) [2115518]
+- sched: Fix balance_push() vs __sched_setscheduler() (Phil Auld) [2115518]
+- sched/fair: Optimize and simplify rq leaf_cfs_rq_list (Phil Auld) [2115518]
+- topology: Remove unused cpu_cluster_mask() (Phil Auld) [2115518]
+- sched: Update task_tick_numa to ignore tasks without an mm (Phil Auld) [2115518]
+- sched/deadline: Remove superfluous rq clock update in push_dl_task() (Phil Auld) [2115518]
+- time/sched_clock: Fix formatting of frequency reporting code (Phil Auld) [2115518]
+- time/sched_clock: Use Hz as the unit for clock rate reporting below 4kHz (Phil Auld) [2115518]
+- time/sched_clock: Round the frequency reported to nearest rather than down (Phil Auld) [2115518]
+- sched/fair: Delete useless condition in tg_unthrottle_up() (Phil Auld) [2115518]
+- sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq (Phil Auld) [2115518]
+- workqueue: Restrict kworker in the offline CPU pool running on housekeeping CPUs (Phil Auld) [2115518]
+- kernel/sched: Remove dl_boosted flag comment (Phil Auld) [2115518]
+- workqueue: Remove schedule() in unbind_workers() (Phil Auld) [2115518]
+- workqueue: Remove outdated comment about exceptional workers in unbind_workers() (Phil Auld) [2115518]
+- workqueue: Remove the advanced kicking of the idle workers in rebind_workers() (Phil Auld) [2115518]
+- workqueue: Fix unbind_workers() VS wq_worker_running() race (Phil Auld) [2115518]
+- sched/membarrier: fix missing local execution of ipi_sync_rq_state() (Phil Auld) [2115518]
+- kthread: Move prio/affinite change into the newly created thread (Phil Auld) [2115518]
+
+* Mon Oct 24 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-432.el8]
+- dmaengine: idxd: Correct IAX operation code names (Jerry Snitselaar) [2112121]
+- dmaengine: dmatest: use strscpy to replace strlcpy (Jerry Snitselaar) [2112121]
+- dmaengine: remove DMA_MEMCPY_SG once again (Jerry Snitselaar) [2112121]
+- MAINTAINERS: idxd driver maintainer update (Jerry Snitselaar) [2112121]
+- dmaengine: dmatest: Replace symbolic permissions by octal permissions (Jerry Snitselaar) [2112121]
+- dmaengine: dmatest: Remove spaces before tabs (Jerry Snitselaar) [2112121]
+- dma:dw: remove reference to AVR32 architecture in core.c (Jerry Snitselaar) [2112121]
+- dmaengine: idxd: Only call idxd_enable_system_pasid() if succeeded in enabling SVA feature (Jerry Snitselaar) [2112121]
+- dmaengine: idxd: force wq context cleanup on device disable path (Jerry Snitselaar) [2112121]
+- dmaengine: Revert "dmaengine: add verification of DMA_INTERRUPT capability for dmatest" (Jerry Snitselaar) [2112121]
+- dmaengine: idxd: Separate user and kernel pasid enabling (Jerry Snitselaar) [2112121]
+- dmaengine: ptdma: statify pt_tx_status (Jerry Snitselaar) [2112121]
+- dmaengine: hidma: In hidma_prep_dma_memset treat value as a single byte (Jerry Snitselaar) [2112121]
+- dmaengine: Document dmaengine_prep_dma_memset (Jerry Snitselaar) [2112121]
+- dmaengine: PTDMA: support polled mode (Jerry Snitselaar) [2112121]
+- dmaengine: Remove a useless mutex (Jerry Snitselaar) [2112121]
+- dmaengine: idxd: update IAA definitions for user header (Jerry Snitselaar) [2112121]
+- dmaengine: Clarify cyclic transfer residue documentation (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: Remove useless DMA-32 fallback configuration (Jerry Snitselaar) [2112121]
+- dmaengine: iot: Remove useless DMA-32 fallback configuration (Jerry Snitselaar) [2112121]
+- dmaengine: ioatdma: use default_groups in kobj_type (Jerry Snitselaar) [2112121]
+- Documentation: dmaengine: Correctly describe dmatest with channel unset (Jerry Snitselaar) [2112121]
+- Documentation: dmaengine: Add a description of what dmatest does (Jerry Snitselaar) [2112121]
+- dmaengine: Add core function and capability check for DMA_MEMCPY_SG (Jerry Snitselaar) [2112121]
+- dmaengine: Add documentation for new memcpy scatter-gather function (Jerry Snitselaar) [2112121]
+- dmaengine: remove slave_id config field (Jerry Snitselaar) [2112121]
+- dmaengine: ioat: switch from 'pci_' to 'dma_' API (Jerry Snitselaar) [2112121]
+- dmaengine: hsu: switch from 'pci_' to 'dma_' API (Jerry Snitselaar) [2112121]
+- dmaengine: dw: switch from 'pci_' to 'dma_' API (Jerry Snitselaar) [2112121]
+- dmaengine: remove debugfs #ifdef (Jerry Snitselaar) [2112121]
+- dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` (Jerry Snitselaar) [2112121]
+- dmaengine: Remove redundant initialization of variable err (Jerry Snitselaar) [2112121]
+- dmaengine: Extend the dma_slave_width for 128 bytes (Jerry Snitselaar) [2112121]
+- dmaengine: ioat: depends on !UML (Jerry Snitselaar) [2112121]
+- dmaengine: dw: Simplify DT property parser (Jerry Snitselaar) [2112121]
+- dmaengine: dw: Convert members to u32 in platform data (Jerry Snitselaar) [2112121]
+- dmaengine: dw: Remove error message from DT parsing code (Jerry Snitselaar) [2112121]
+- dmaengine: of-dma: router_xlate to return -EPROBE_DEFER if controller is not yet available (Jerry Snitselaar) [2112121]
+- dmaengine: hsu: Account transferred bytes (Jerry Snitselaar) [2112121]
+- dmaengine: Move kdoc description of struct dma_chan_percpu closer to it (Jerry Snitselaar) [2112121]
+- dmaengine: QCOM_HIDMA_MGMT depends on HAS_IOMEM (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: comment platform_driver_register call (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: remove unused code (Jerry Snitselaar) [2112121]
+- dmaengine: Fix a double free in dma_async_device_register (Jerry Snitselaar) [2112121]
+- dmaengine: hsu: disable spurious interrupt (Jerry Snitselaar) [2112121]
+- dmaengine: Extend the dmaengine_alignment for 128 and 256 bytes (Jerry Snitselaar) [2112121]
+- dmaengine: dmatest: Use dmaengine_get_dma_device (Jerry Snitselaar) [2112121]
+- dmaengine: doc: client: Update for dmaengine_get_dma_device() usage (Jerry Snitselaar) [2112121]
+- dmaengine: Add support for per channel coherency handling (Jerry Snitselaar) [2112121]
+- dmaengine: of-dma: Add support for optional router configuration callback (Jerry Snitselaar) [2112121]
+- dmaengine: add peripheral configuration (Jerry Snitselaar) [2112121]
+- dmaengine: idma64: Switch to use __maybe_unused instead of ifdeffery (Jerry Snitselaar) [2112121]
+- dmaengine: ioatdma: remove unused function missed during dma_v2 removal (Jerry Snitselaar) [2112121]
+- dmaengine: Save few bytes and increase readability of dma_request_chan() (Jerry Snitselaar) [2112121]
+- dmaengine: of-dma: Fix of_dma_router_xlate's of_dma_xlate handling (Jerry Snitselaar) [2112121]
+- dmaengine: dw: Don't include unneeded header to platform data header (Jerry Snitselaar) [2112121]
+- dmaengine: linux/dmaengine.h: drop duplicated word in a comment (Jerry Snitselaar) [2112121]
+- dmaengine: ioat: Fix some parameter misspelling and provide description for phys_complete (Jerry Snitselaar) [2112121]
+- dmaengine: of-dma: Fix misspellings/formatting issues in some function headers (Jerry Snitselaar) [2112121]
+- Documentation/driver-api: dmaengine/provider: drop doubled word (Jerry Snitselaar) [2112121]
+- dmaengine: Add support for repeating transactions (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: use true,false for bool variable (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: Simplify error handling path in hidma_probe (Jerry Snitselaar) [2112121]
+- dmaengine: Fix misspelling of "Analog Devices" (Jerry Snitselaar) [2112121]
+- docs: dmaengine: provider.rst: get rid of some warnings (Jerry Snitselaar) [2112121]
+- dmaengine: doc: fix warnings/issues of client.rst (Jerry Snitselaar) [2112121]
+- dmaengine: doc: Properly indent metadata title (Jerry Snitselaar) [2112121]
+- dmaengine: doc: Add sections for per descriptor metadata support (Jerry Snitselaar) [2112121]
+- dmaengine: Fix Kconfig indentation (Jerry Snitselaar) [2112121]
+- dmaengine: qcom: hidma_mgmt: Add of_node_put() before goto (Jerry Snitselaar) [2112121]
+- dmaengine: Remove dev_err() usage after platform_get_irq() (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: Remove call to memset after dmam_alloc_coherent (Jerry Snitselaar) [2112121]
+- Documentation: dmaengine: clean up description of dmatest usage (Jerry Snitselaar) [2112121]
+- dmaengine: hsu: Revert "set HSU_CH_MTSR to memory width" (Jerry Snitselaar) [2112121]
+- dmaengine: qcom: hidma: no need to check return value of debugfs_create functions (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: assign channel cookie correctly (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: initialize tx flags in hidma_prep_dma_* (Jerry Snitselaar) [2112121]
+- dmaengine: qcom_hidma: convert to DEFINE_SHOW_ATTRIBUTE (Jerry Snitselaar) [2112121]
+- dmaengine: Documentation: Add documentation for multi chan testing (Jerry Snitselaar) [2112121]
+- dmaengine: hsu: remove dma_slave_config direction usage (Jerry Snitselaar) [2112121]
+- dmaengine: hsu: Support dmaengine_terminate_sync() (Jerry Snitselaar) [2112121]
+- scsi: core: Allow the ALUA transitioning state enough time (Tomas Henzl) [2084250]
+- scsi: core: Return BLK_STS_TRANSPORT for ALUA transitioning (Tomas Henzl) [2084250]
+- macvlan: enforce a consistent minimal mtu (Davide Caratti) [2134032]
+- ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header (Davide Caratti) [2134032]
+- net: ipvtap - add __init/__exit annotations to module init/exit funcs (Davide Caratti) [2134032]
+- tunnels: do not assume mac header is set in skb_tunnel_check_pmtu() (Guillaume Nault) [2134099]
+- erspan: do not assume transport header is always set (Guillaume Nault) [2134099]
+- net: ip_gre: do not report erspan_ver for gre or gretap (Guillaume Nault) [2134099]
+- selftests: Fix the if conditions of in test_extra_filter() (Hangbin Liu) [2135232]
+- selftests: forwarding: add shebang for sch_red.sh (Hangbin Liu) [2135232]
+- selftests: forwarding: fix error message in learning_test (Hangbin Liu) [2135232]
+- selftests/net: pass ipv6_args to udpgso_bench's IPv6 TCP test (Hangbin Liu) [2135232]
+- ping: remove pr_err from ping_lookup (Guillaume Nault) [2135424]
+- ping: fix the dif and sdif check in ping_lookup (Guillaume Nault) [2135424]
+- ping: fix the sk_bound_dev_if match in ping_lookup (Guillaume Nault) [2135424]
+- tcp/udp: Call inet6_destroy_sock() in IPv6 sk->sk_destruct(). (Hangbin Liu) [2135259]
+- udp: Call inet6_destroy_sock() in setsockopt(IPV6_ADDRFORM). (Hangbin Liu) [2135259]
+- tcp/udp: Fix memory leak in ipv6_renew_options(). (Hangbin Liu) [2135259]
+- ipv6: sr: fix out-of-bounds read when setting HMAC data. (Hangbin Liu) [2135259]
+- ipv6: do not use RT_TOS for IPv6 flowlabel (Hangbin Liu) [2135259]
+- ipv6/sit: fix ipip6_tunnel_get_prl return value (Hangbin Liu) [2135259]
+- sit: use min (Hangbin Liu) [2135259]
+- net: ipv6: unexport __init-annotated seg6_hmac_init() (Hangbin Liu) [2135259]
+- sit: do not call ipip6_dev_free() from sit_init_net() (Hangbin Liu) [2135259]
+- block: avoid sign extend problem with default queue flags mask (Nico Pache) [2131929]
+- mm/hwpoison: do not lock page again when me_huge_page() successfully recovers (Aristeu Rozanski) [2110292]
+- crypto: ccp - Remove the unneeded result variable (Vladis Dronov) [2130195]
+- crypto: ccp - Release dma channels before dmaengine unrgister (Vladis Dronov) [2130195]
+- crypto: ccp - Fail the PSP initialization when writing psp data file failed (Vladis Dronov) [2130195]
+- crypto: ccp - Initialize PSP when reading psp data file failed (Vladis Dronov) [2130195]
+- crypto: ccp - Add a quirk to firmware update (Vladis Dronov) [2130195]
+- crypto: ccp - Add support for new CCP/PSP device ID (Vladis Dronov) [2130195]
+- crypto: ccp - During shutdown, check SEV data pointer before using (Vladis Dronov) [2130195]
+- crypto: ccp - Fix device IRQ counting by using platform_irq_count() (Vladis Dronov) [2130195]
+- crypto: ccp - fix typo in comment (Vladis Dronov) [2130195]
+- crypto: ccp - Use kzalloc for sev ioctl interfaces to prevent kernel memory leak (Vladis Dronov) [2130195]
+- crypto: ccp - Fix the INIT_EX data file open failure (Vladis Dronov) [2130195]
+- crypto: ccp - Log when resetting PSP SEV state (Vladis Dronov) [2130195]
+- crypto: ccp - When TSME and SME both detected notify user (Vladis Dronov) [2130195]
+- crypto: ccp - Allow PSP driver to load without SEV/TEE support (Vladis Dronov) [2130195]
+- crypto: ccp - Export PSP security bits to userspace (Vladis Dronov) [2130195]
+- crypto: ccp - cache capability into psp device (Vladis Dronov) [2130195]
+- PCI: Add support for dev_groups to struct pci_driver (Vladis Dronov) [2130195]
+- ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel systems (Wei Huang) [2130653]
+- blk-mq: fix io hung due to missing commit_rqs (Ming Lei) [2130028]
+- block: schedule queue restart after BLK_STS_ZONE_RESOURCE (Ming Lei) [2130028]
+- blk-mq: call commit_rqs while list empty but error happen (Ming Lei) [2130028]
+- null_blk: fix ida error handling in null_add_dev() (Ming Lei) [2130028]
+- blktrace: Trace remapped requests correctly (Ming Lei) [2130028]
+- virtio_blk: fix the discard_granularity and discard_alignment queue limits (Ming Lei) [2130028]
+- block: fix bio_clone_blkg_association() to associate with proper blkcg_gq (Ming Lei) [2130028]
+- blk-mq: do not update io_ticks with passthrough requests (Ming Lei) [2130028]
+- blk-mq: don't touch ->tagset in blk_mq_get_sq_hctx (Ming Lei) [2130028]
+- ipmi:ipmb: Fix refcount leak in ipmi_ipmb_probe (Tony Camuso) [2130238]
+- ipmi: remove unnecessary type castings (Tony Camuso) [2130238]
+- ipmi: Make two logs unique (Tony Camuso) [2130238]
+- ipmi:si: Convert pr_debug() to dev_dbg() (Tony Camuso) [2130238]
+- ipmi: Convert pr_debug() to dev_dbg() (Tony Camuso) [2130238]
+- ipmi: Fix pr_fmt to avoid compilation issues (Tony Camuso) [2130238]
+- ipmi: Add an intializer for ipmi_recv_msg struct (Tony Camuso) [2130238]
+- ipmi: Add an intializer for ipmi_smi_msg struct (Tony Camuso) [2130238]
+- ipmi:ssif: Check for NULL msg when handling events and messages (Tony Camuso) [2130238]
+- ipmi: use simple i2c probe function (Tony Camuso) [2130238]
+- ipmi: Add a sysfs count of total outstanding messages for an interface (Tony Camuso) [2130238]
+- ipmi: Add a sysfs interface to view the number of users (Tony Camuso) [2130238]
+- ipmi: Limit the number of message a user may have outstanding (Tony Camuso) [2130238]
+- ipmi: Add a limit on the number of users that may use IPMI (Tony Camuso) [2130238]
+- ipmi:ipmi_ipmb: Fix null-ptr-deref in ipmi_unregister_smi() (Tony Camuso) [2130238]
+- ipmi: When handling send message responses, don't process the message (Tony Camuso) [2130238]
+- ipmi: fix IPMI_SMI_MSG_TYPE_IPMB_DIRECT response length checking (Tony Camuso) [2130238]
+- ipmi: fix oob access due to uninit smi_msg type (Tony Camuso) [2130238]
+- ipmi: Make kABI adjustments (Tony Camuso) [2130238]
+- ipmi: Add support for IPMB direct messages (Tony Camuso) [2130238]
+- ice: Fix crash by keep old cfg when update TCs more than queues (Petr Oros) [2129902]
+- ice: Fix tunnel checksum offload with fragmented traffic (Petr Oros) [2129902]
+- ice: handle E822 generic device ID in PLDM header (Petr Oros) [2129902]
+- ice: ethtool: Prohibit improper channel config for DCB (Petr Oros) [2129902]
+- ice: ethtool: advertise 1000M speeds properly (Petr Oros) [2129902]
+- ice: Fix switchdev rules book keeping (Petr Oros) [2129902]
+- ice: fix access-beyond-end in the switch code (Petr Oros) [2129902]
+- eth: ice: silence the GCC 12 array-bounds warning (Petr Oros) [2129902]
+- ice: Expose RSS indirection tables for queue groups via ethtool (Petr Oros) [2129902]
+- Revert "ice: Hide bus-info in ethtool for PRs in switchdev mode" (Petr Oros) [2129902]
+- ice: remove period on argument description in ice_for_each_vf (Petr Oros) [2129902]
+- ice: add a function comment for ice_cfg_mac_antispoof (Petr Oros) [2129902]
+- ice: fix wording in comment for ice_reset_vf (Petr Oros) [2129902]
+- ice: remove return value comment for ice_reset_all_vfs (Petr Oros) [2129902]
+- ice: always check VF VSI pointer values (Petr Oros) [2129902]
+- ice: add newline to dev_dbg in ice_vf_fdir_dump_info (Petr Oros) [2129902]
+- ice: get switch id on switchdev devices (Petr Oros) [2129902]
+- ice: return ENOSPC when exceeding ICE_MAX_CHAIN_WORDS (Petr Oros) [2129902]
+- ice: introduce common helper for retrieving VSI by vsi_num (Petr Oros) [2129902]
+- ice: use min_t() to make code cleaner in ice_gnss (Petr Oros) [2129902]
+- ice: Add mpls+tso support (Petr Oros) [2129902]
+- ice: switch: convert packet template match code to rodata (Petr Oros) [2129902]
+- ice: switch: use convenience macros to declare dummy pkt templates (Petr Oros) [2129902]
+- ice: switch: use a struct to pass packet template params (Petr Oros) [2129902]
+- ice: switch: unobscurify bitops loop in ice_fill_adv_dummy_packet() (Petr Oros) [2129902]
+- ice: switch: add and use u16[] aliases to ice_adv_lkup_elem::{h, m}_u (Petr Oros) [2129902]
+- ice: Support GTP-U and GTP-C offload in switchdev (Petr Oros) [2129902]
+- ice: Remove useless DMA-32 fallback configuration (Petr Oros) [2129902]
+- ice: switch to napi_build_skb() (Petr Oros) [2129902]
+- nbd: fix race between nbd_alloc_config() and module removal (Ming Lei) [2127601]
+- nbd: call genl_unregister_family() first in nbd_cleanup() (Ming Lei) [2127601]
+- kselftests: memcg: speed up the memory.high test (Waiman Long) [1839057]
+- tools/testing/selftests/cgroup/cgroup_util.c: cg_read_strcmp: fix null pointer dereference (Waiman Long) [1839057]
+- kselftest/cgroup: fix incorrect test_core skip (Waiman Long) [1839057]
+- kselftest/cgroup: fix unexpected testing failure on test_core (Waiman Long) [1839057]
+- selftests: cgroup: fix cleanup path in test_memcg_subtree_control() (Waiman Long) [1839057]
+- cgroup: fix an error handling path in alloc_pagecache_max_30M() (Waiman Long) [1839057]
+- selftests: memcg: expect no low events in unprotected sibling (Waiman Long) [1839057]
+- selftests: memcg: fix compilation (Waiman Long) [1839057]
+- kseltest/cgroup: Make test_stress.sh work if run interactively (Waiman Long) [1839057]
+- cgroup: fix racy check in alloc_pagecache_max_30M() helper function (Waiman Long) [1839057]
+- cgroup: remove racy check in test_memcg_sock() (Waiman Long) [1839057]
+- cgroup: account for memory_localevents in test_memcg_oom_group_leaf_events() (Waiman Long) [1839057]
+- cgroup: account for memory_recursiveprot in test_memcg_low() (Waiman Long) [1839057]
+- cgroups: refactor children cgroups in memcg tests (Waiman Long) [1839057]
+- kselftest/cgroup: fix test_stress.sh to use OUTPUT dir (Waiman Long) [1839057]
+- selftests: cgroup: add a selftest for memory.reclaim (Waiman Long) [1839057]
+- selftests: cgroup: fix alloc_anon_noexit() instantly freeing memory (Waiman Long) [1839057]
+- selftests: cgroup: return -errno from cg_read()/cg_write() on failure (Waiman Long) [1839057]
+- memcg: introduce per-memcg reclaim interface (Waiman Long) [1839057]
+- kselftests: memcg: update the oom group leaf events test (Waiman Long) [1839057]
+- mm/memcontrol: return 1 from cgroup.memory __setup() handler (Waiman Long) [1839057]
+- memcg: synchronously enforce memory.high for large overcharges (Waiman Long) [1839057]
+- selftests: memcg: test high limit for single entry allocation (Waiman Long) [1839057]
+- memcg: unify force charging conditions (Waiman Long) [1839057]
+- memcg: refactor mem_cgroup_oom (Waiman Long) [1839057]
+- memcg: prohibit unconditional exceeding the limit of dying tasks (Waiman Long) [1839057]
+- mm, oom: do not trigger out_of_memory from the #PF (Waiman Long) [1839057]
+- mm, oom: pagefault_out_of_memory: don't force global OOM for dying tasks (Waiman Long) [1839057]
+- mm: memcontrol: fix root_mem_cgroup charging (Waiman Long) [1839057]
+- tests/cgroup: move cg_wait_for(), cg_prepare_for_wait() (Waiman Long) [1839057]
+- mm: memcontrol: don't count limit-setting reclaim as memory pressure (Waiman Long) [1839057]
+- selftests: Uninitialized variable in test_cgcore_proc_migration() (Waiman Long) [1839057]
+- kselftests: cgroup: Avoid the reuse of fd after it is deallocated (Waiman Long) [1839057]
+- selftests: cgroup: Run test_core under interfering stress (Waiman Long) [1839057]
+- selftests: cgroup: Add task migration tests (Waiman Long) [1839057]
+- selftests: cgroup: Simplify task self migration (Waiman Long) [1839057]
+- cgroup: kselftest: relax fs_spec checks (Waiman Long) [1839057]
+- kselftests: cgroup: remove duplicated include from test_freezer.c (Waiman Long) [1839057]
+- kselftest/cgroup: fix unexpected testing failure on test_memcontrol (Waiman Long) [1839057]
+- kselftests: cgroup: add freezer controller self-tests (Waiman Long) [1839057]
+- Add tests for memory.oom.group (Waiman Long) [1839057]
+- Fix cg_read_strcmp() (Waiman Long) [1839057]
+- cgroup: kselftests: add test_core to .gitignore (Waiman Long) [1839057]
+- selftests: cgroup: add gitignore file (Waiman Long) [1839057]
+- Add cgroup core selftests (Waiman Long) [1839057]
+- devdax: Fix soft-reservation memory description (Mark Langsdorf) [2122316]
+- arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned fw_level (Mark Langsdorf) [2122316]
+- ACPI: property: Remove default association from integer maximum values (Mark Langsdorf) [2122316]
+- ACPI: property: Ignore already existing data node tags (Mark Langsdorf) [2122316]
+- ACPI: property: Fix type detection of unified integer reading functions (Mark Langsdorf) [2122316]
+- ACPI: processor: Remove freq Qos request for all CPUs (Mark Langsdorf) [2122316]
+- ACPI: property: Fix error handling in acpi_init_properties() (Mark Langsdorf) [2122316]
+- ACPI/IORT: Fix build error implicit-function-declaration (Mark Langsdorf) [2122316]
+- ACPI/PCI: Remove useless NULL pointer checks (Mark Langsdorf) [2122316]
+- ACPI: property: Read buffer properties as integers (Mark Langsdorf) [2122316]
+- ACPI: property: Add support for parsing buffer property UUID (Mark Langsdorf) [2122316]
+- ACPI: property: Unify integer value reading functions (Mark Langsdorf) [2122316]
+- ACPI: property: Switch node property referencing from ifs to a switch (Mark Langsdorf) [2122316]
+- ACPI: property: Move property ref argument parsing into a new function (Mark Langsdorf) [2122316]
+- ACPI: property: Use acpi_object_type consistently in property ref parsing (Mark Langsdorf) [2122316]
+- ACPI: property: Tie data nodes to acpi handles (Mark Langsdorf) [2122316]
+- ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool (Mark Langsdorf) [2122316]
+- ACPI: CPPC: Do not prevent CPPC from working in the future (Mark Langsdorf) [2122316]
+- ACPI: PM: x86: Print messages regarding LPS0 idle support (Mark Langsdorf) [2122316]
+- ACPI: PPTT: Leave the table mapped for the runtime usage (Mark Langsdorf) [2122316]
+- ACPI: resource: skip IRQ override on AMD Zen platforms (Mark Langsdorf) [2122316]
+- ACPI: irq: Allow acpi_gsi_to_irq() to have an arch-specific fallback (Mark Langsdorf) [2122316]
+- APCI: irq: Add support for multiple GSI domains (Mark Langsdorf) [2122316]
+- irqchip/gic: Drop support for secondary GIC in non-DT systems (Mark Langsdorf) [2122316]
+- ACPI: video: Use native backlight on Dell Inspiron N4010 (Mark Langsdorf) [2122316]
+- ACPI: PM: s2idle: Use LPS0 idle if ACPI_FADT_LOW_POWER_S0 is unset (Mark Langsdorf) [2122316]
+- Revert "[acpi] ACPI / PM: LPIT: Register sysfs attributes based on FADT" (Mark Langsdorf) [2122316]
+- ACPI: utils: Add api to read _SUB from ACPI (Mark Langsdorf) [2122316]
+- ACPI: video: Shortening quirk list by identifying Clevo by board_name only (Mark Langsdorf) [2122316]
+- ACPI: video: Force backlight native for some TongFang devices (Mark Langsdorf) [2122316]
+- PCI/ACPI: Guard ARM64-specific mcfg_quirks (Mark Langsdorf) [2122316]
+- ACPI/IORT: Add a helper to retrieve RMR info directly (Mark Langsdorf) [2122316]
+- ACPI/IORT: Add support to retrieve IORT RMR reserved regions (Mark Langsdorf) [2122316]
+- ACPI/IORT: Provide a generic helper to retrieve reserve regions (Mark Langsdorf) [2122316]
+- ACPI/IORT: Make iort_iommu_msi_get_resv_regions() return void (Mark Langsdorf) [2122316]
+- iommu: Introduce a callback to struct iommu_resv_region (Mark Langsdorf) [2122316]
+- ACPI: PM: s2idle: Add support for upcoming AMD uPEP HID AMDI008 (Mark Langsdorf) [2122316]
+- ACPI: PPTT: Use table offset as fw_token instead of virtual address (Mark Langsdorf) [2122316]
+- ACPI: Move PRM config option under the main ACPI config (Mark Langsdorf) [2122316]
+- ACPI: Enable Platform Runtime Mechanism(PRM) support on ARM64 (Mark Langsdorf) [2122316]
+- efi: Simplify arch_efi_call_virt() macro (Mark Langsdorf) [2122316]
+- efi/x86: Avoid redundant cast of EFI firmware service pointer (Mark Langsdorf) [2122316]
+- efi/libstub: Annotate firmware routines as __efiapi (Mark Langsdorf) [2122316]
+- ACPI: PRM: Change handler_addr type to void pointer (Mark Langsdorf) [2122316]
+- ACPI: bus: Drop driver member of struct acpi_device (Mark Langsdorf) [2122316]
+- ACPI: bus: Drop redundant check in acpi_device_remove() (Mark Langsdorf) [2122316]
+- ACPI: APEI: Fix _EINJ vs EFI_MEMORY_SP (Mark Langsdorf) [2122316]
+- ACPI: LPSS: Fix missing check in register_device_clock() (Mark Langsdorf) [2122316]
+- ACPI: APEI: Better fix to avoid spamming the console with old error logs (Mark Langsdorf) [2122316]
+- ACPI: PM: save NVS memory for Lenovo G40-45 (Mark Langsdorf) [2122316]
+- ACPI: EC: Drop unused ident initializers from dmi_system_id tables (Mark Langsdorf) [2122316]
+- ACPI: EC: Re-use boot_ec when possible even when EC_FLAGS_TRUST_DSDT_GPE is set (Mark Langsdorf) [2122316]
+- ACPI: EC: Drop the EC_FLAGS_IGNORE_DSDT_GPE quirk (Mark Langsdorf) [2122316]
+- ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks (Mark Langsdorf) [2122316]
+- ACPI: processor: Drop leftover acpi_processor_get_limit_info() declaration (Mark Langsdorf) [2122316]
+- ACPI: processor: Split out thermal initialization from ACPI PSS (Mark Langsdorf) [2122316]
+- redhat/configs: move CONFIG_ACPI_VIDEO to common/generic (Mark Langsdorf) [2122316]
+- ACPI: video: Drop X86 dependency from Kconfig (Mark Langsdorf) [2122316]
+- ACPI: video: Fix acpi_video_handles_brightness_key_presses() (Mark Langsdorf) [2122316]
+- ACPI: video: Change how we determine if brightness key-presses are handled (Mark Langsdorf) [2122316]
+- ACPI / MMC: PM: Unify fixing up device power (Mark Langsdorf) [2122316]
+- mmc: sdhci-acpi: Use the new soc_intel_is_byt() helper (Mark Langsdorf) [2122316]
+- mmc: sdhci-acpi: Remove special handling for GPD win/pocket devices (Mark Langsdorf) [2122316]
+- ACPI: scan: Walk ACPI device's children using driver core (Mark Langsdorf) [2122316]
+- ACPI: bus: Introduce acpi_dev_for_each_child_reverse() (Mark Langsdorf) [2122316]
+- ACPI: video: Use acpi_dev_for_each_child() (Mark Langsdorf) [2122316]
+- ACPI: property: Use acpi_dev_for_each_child() for child lookup (Mark Langsdorf) [2122316]
+- ACPI: container: Use acpi_dev_for_each_child() (Mark Langsdorf) [2122316]
+- ACPI: bus: Export acpi_dev_for_each_child() to modules (Mark Langsdorf) [2122316]
+- ACPI: glue: Introduce acpi_find_child_by_adr() (Mark Langsdorf) [2122316]
+- ACPI: glue: Introduce acpi_dev_has_children() (Mark Langsdorf) [2122316]
+- ACPI: glue: Use acpi_dev_for_each_child() (Mark Langsdorf) [2122316]
+- ACPI: APEI: Fix double word in a comment (Mark Langsdorf) [2122316]
+- ACPI: processor/idle: Annotate more functions to live in cpuidle section (Mark Langsdorf) [2122316]
+- ACPI: DPTF: Support Meteor Lake (Mark Langsdorf) [2122316]
+- ACPI: CPPC: fix typo in comment (Mark Langsdorf) [2122316]
+- ACPI: video: improve PM notifer callback (Mark Langsdorf) [2122316]
+- ACPI: utils: include UUID in _DSM evaluation warning (Mark Langsdorf) [2122316]
+- cpufreq: CPPC: Enable fast_switch (Mark Langsdorf) [2122316]
+- acpi/nfit: rely on mce->misc to determine poison granularity (Mark Langsdorf) [2122316]
+- ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default (Mark Langsdorf) [2122316]
+- ACPI: clean up white space in a few places for consistency (Mark Langsdorf) [2122316]
+- ACPI: glue: Rearrange find_child_checks() (Mark Langsdorf) [2122316]
+- ACPI: DPTF: Add support for high frequency impedance notification (Mark Langsdorf) [2122316]
+- ACPI: processor: idle: Expose max_cstate/nocst/bm_check_disable read-only in sysfs (Mark Langsdorf) [2122316]
+- ACPI: battery: Make "not-charging" the default on no charging or full info (Mark Langsdorf) [2122316]
+- PCI/ACPI: negotiate CXL _OSC (Mark Langsdorf) [2122316]
+- PCI/ACPI: Prefer CXL _OSC instead of PCIe _OSC for CXL host bridges (Mark Langsdorf) [2122316]
+- PCI/ACPI: add a helper for retrieving _OSC Control DWORDs (Mark Langsdorf) [2122316]
+- ACPI: bus: Avoid non-ACPI device objects in walks over children (Mark Langsdorf) [2122316]
+- ACPI: DPTF: Correct description of INT3407 / INT3532 attributes (Mark Langsdorf) [2122316]
+- ACPI: BGRT: use static for BGRT_SHOW kobj_attribute defines (Mark Langsdorf) [2122316]
+- ACPI, APEI, EINJ: Refuse to inject into the zero page (Mark Langsdorf) [2122316]
+- ACPI: PM: Always print final debug message in acpi_device_set_power() (Mark Langsdorf) [2122316]
+- ACPI: SPCR: Add support for NVIDIA 16550-compatible port subtype (Mark Langsdorf) [2122316]
+- ACPI: APEI: Fix missing ERST record id (Mark Langsdorf) [2122316]
+- ACPICA: Update version to 20220331 (Mark Langsdorf) [2122316]
+- ACPICA: IORT: Updates for revision E.d (Mark Langsdorf) [2122316]
+- ACPICA: iASL/MADT: Add OEM-defined subtable (Mark Langsdorf) [2122316]
+- ACPICA: Add support for ARM Performance Monitoring Unit Table. (Mark Langsdorf) [2122316]
+- ACPICA: Headers: Replace zero-length array with flexible-array member (Mark Langsdorf) [2122316]
+- ACPICA: Removed some tabs and // comments (Mark Langsdorf) [2122316]
+- ACPICA: Update copyright notices to the year 2022 (Mark Langsdorf) [2122316]
+- ACPICA: Clean up double word in comment (Mark Langsdorf) [2122316]
+- ACPICA: Add new ACPI 6.4 semantics for LoadTable() operator (Mark Langsdorf) [2122316]
+- ACPICA: Add new ACPI 6.4 semantics to the Load() operator (Mark Langsdorf) [2122316]
+- ACPICA: iASL: NHLT: Rename linux specific strucures to device_info (Mark Langsdorf) [2122316]
+- ACPICA: iASL: NHLT: Fix parsing undocumented bytes at the end of Endpoint Descriptor (Mark Langsdorf) [2122316]
+- ACPICA: iASL: NHLT: Treat Terminator as specific_config (Mark Langsdorf) [2122316]
+- ACPICA: Add the subtable CFMWS to the CEDT table (Mark Langsdorf) [2122316]
+- ACPICA: Add support for the Windows 11 _OSI string (Mark Langsdorf) [2122316]
+- ACPI: sysfs: Fix BERT error region memory mapping (Mark Langsdorf) [2122316]
+- ACPI: property: Release subnode properties with data nodes (Mark Langsdorf) [2122316]
+- PCI: ACPI: PM: Power up devices in D3cold before scanning them (Mark Langsdorf) [2122316]
+- ACPI: PM: Introduce acpi_dev_power_up_children_with_adr() (Mark Langsdorf) [2122316]
+- ACPI: bus: Introduce acpi_dev_for_each_child() (Mark Langsdorf) [2122316]
+- ACPI: PM: Unify debug messages in acpi_device_set_power() (Mark Langsdorf) [2122316]
+- ACPI: PM: Convert debug message in acpi_device_get_power() (Mark Langsdorf) [2122316]
+- device property: Add irq_get to fwnode operation (Mark Langsdorf) [2122316]
+- device property: Add iomap to fwnode operations (Mark Langsdorf) [2122316]
+- ACPI: property: Move acpi_fwnode_device_get_match_data() up (Mark Langsdorf) [2122316]
+- device property: Convert device_{dma_supported,get_dma_attr} to fwnode (Mark Langsdorf) [2122316]
+- ACPI: Add perf low power callback (Mark Langsdorf) [2122316]
+- s390: fix double free of GS and RI CBs on fork() failure (Brian Foster) [1944540]
+- wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue (other cases) (Jose Ignacio Tornos Martinez) [2086480]
+- wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue (Jose Ignacio Tornos Martinez) [2086480]
+
+* Mon Oct 17 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-431.el8]
+- crypto: ecdh - disallow plain "ecdh" usage in FIPS mode (Vladis Dronov) [2129392]
+- crypto: dh - disallow plain "dh" usage in FIPS mode (Vladis Dronov) [2129392]
+- x86/cpu: Add new Raptor Lake CPU model number (Prarit Bhargava) [2120361]
+- mm, oom: fix missing tlb_finish_mmu() in __oom_reap_task_mm(). (Waiman Long) [2130954]
+- net: atlantic: remove aq_nic_deinit() when resume (Íñigo Huguet) [2130839]
+- net: atlantic: remove deep parameter on suspend/resume functions (Íñigo Huguet) [2130839]
+- efi: Allow EFI_MEMORY_XP and EFI_MEMORY_RO both to be cleared (Lenny Szubowicz) [2128172]
+- bonding: 3ad: make ad_ticks_per_sec a const (Jonathan Toppins) [2020773]
+- bonding: 802.3ad: fix no transmission of LACPDUs (Jonathan Toppins) [2020773]
+- redhat: workaround CKI cross compilation for scripts (Jan Stancek) [2123399]
+- nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() (Phil Auld) [2107238]
+- gfs2: Make sure FITRIM minlen is rounded up to fs block size (Andrew Price) [2118256]
+- ceph: don't truncate file in atomic_open (Xiubo Li) [2120924]
+- of: address: Work around missing device_type property in pcie nodes (Jerry Snitselaar) [2118732]
+- dma-mapping: introduce DMA range map, supplanting dma_pfn_offset (Jerry Snitselaar) [2118732]
+- of/address: check for invalid range.cpu_addr (Jerry Snitselaar) [2118732]
+- of: address: Fix parser address/size cells initialization (Jerry Snitselaar) [2118732]
+- of_address: Guard of_bus_pci_get_flags with CONFIG_PCI (Jerry Snitselaar) [2118732]
+- of_address: Add bus type match for pci ranges parser (Jerry Snitselaar) [2118732]
+- of/address: Support multiple 'dma-ranges' entries (Jerry Snitselaar) [2118732]
+- of/address: use range parser for of_dma_get_range (Jerry Snitselaar) [2118732]
+- of/address: Rework of_pci_range parsing for non-PCI buses (Jerry Snitselaar) [2118732]
+- of: Drop struct of_pci_range.pci_space field (Jerry Snitselaar) [2118732]
+- of/address: Move range parser code out of CONFIG_PCI (Jerry Snitselaar) [2118732]
+- of: Make of_dma_get_range() work on bus nodes (Jerry Snitselaar) [2118732]
+- Revert "arm64: dts: juno: add dma-ranges property" (Jerry Snitselaar) [2118732]
+- of/address: Fix of_pci_range_parser_one translation of DMA addresses (Jerry Snitselaar) [2118732]
+- of/address: Translate 'dma-ranges' for parent nodes missing 'dma-ranges' (Jerry Snitselaar) [2118732]
+- of: address: Follow DMA parent for "dma-coherent" (Jerry Snitselaar) [2118732]
+- of: Factor out #{addr,size}-cells parsing (Jerry Snitselaar) [2118732]
+- of/address: Introduce of_get_next_dma_parent() helper (Jerry Snitselaar) [2118732]
+- of: address: Report of_dma_get_range() errors meaningfully (Jerry Snitselaar) [2118732]
+- of: address: Add support for the parent DMA bus (Jerry Snitselaar) [2118732]
+- of: address: Retrieve a parent through a callback in __of_translate_address (Jerry Snitselaar) [2118732]
+- of: reserved_mem: fix reserve memory leak (Jerry Snitselaar) [2118732]
+- of: Use device_type helpers to access the node type (Jerry Snitselaar) [2118732]
+- of: make PowerMac cache node search conditional on CONFIG_PPC_PMAC (Jerry Snitselaar) [2118732]
+
+* Fri Oct 07 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-430.el8]
+- crypto: qat - add limit to linked list parsing (Vladis Dronov) [2129897]
+- crypto: qat - use reference to structure in dma_map_single() (Vladis Dronov) [2129897]
+- Revert "crypto: qat - reduce size of mapped region" (Vladis Dronov) [2129897]
+- crypto: qat - fix DMA transfer direction (Vladis Dronov) [2129897]
+- crypto: qat - fix default value of WDT timer (Vladis Dronov) [2129897]
+- crypto: drivers - move from strlcpy with unused retval to strscpy (Vladis Dronov) [2129897]
+- crypto: qat - add check to validate firmware images (Vladis Dronov) [2129897]
+- Documentation: qat: rewrite description (Vladis Dronov) [2129897]
+- Documentation: qat: Use code block for qat sysfs example (Vladis Dronov) [2129897]
+- KVM: x86: Inject #UD on emulated XSETBV if XSAVES isn't enabled (Dr. David Alan Gilbert) [2079311]
+- KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES (Dr. David Alan Gilbert) [2079311]
+- KVM: x86: Reinstate kvm_vcpu_arch.guest_supported_xcr0 (Dr. David Alan Gilbert) [2079311]
+- bonding: fix NULL deref in bond_rr_gen_slave_id (Jonathan Toppins) [2051778]
+- tty: use new tty_insert_flip_string_and_push_buffer() in pty_write() (Rafael Aquini) [2078869] {CVE-2022-1462}
+- tty: extract tty_flip_buffer_commit() from tty_flip_buffer_push() (Rafael Aquini) [2078869] {CVE-2022-1462}
+- tty: drop tty_schedule_flip() (Rafael Aquini) [2078869] {CVE-2022-1462}
+- tty: the rest, stop using tty_schedule_flip() (Rafael Aquini) [2078869] {CVE-2022-1462}
+- tty: drivers/tty/, stop using tty_schedule_flip() (Rafael Aquini) [2078869] {CVE-2022-1462}
+- vt: keyboard, use tty_insert_flip_string in puts_queue (Rafael Aquini) [2078869] {CVE-2022-1462}
+- vt: use tty_insert_flip_string in respond_string (Rafael Aquini) [2078869] {CVE-2022-1462}
+
+* Mon Oct 03 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-429.el8]
+- intel_th: pci: Add Raptor Lake-S CPU support (Michael Petlan) [2040035]
+- intel_th: pci: Add Raptor Lake-S PCH support (Michael Petlan) [2040035]
+- virtio-net: support XDP when not more queues (Eugenio Pérez) [2122225]
+- virtio_net: Don't process redirected XDP frames when XDP is disabled (Eugenio Pérez) [2122225]
+- virtio_net: Fix not restoring real_num_rx_queues (Eugenio Pérez) [2122225]
+- x86,config: Enable straight-line-speculation fix (Wander Lairson Costa) [2062175] {CVE-2021-26341}
+- x86/alternative: Relax text_poke_bp() constraint (Wander Lairson Costa) [2062175] {CVE-2021-26341}
+- perf/x86: Add support for perf text poke event for text_poke_bp_batch() callers (Wander Lairson Costa) [2062175] {CVE-2021-26341}
+- objtool: Add straight-line-speculation validation (Wander Lairson Costa) [2062175] {CVE-2021-26341}
+- objtool: Support conditional retpolines (Wander Lairson Costa) [2062175] {CVE-2021-26341}
+- objtool: Refactor sibling call detection logic (Wander Lairson Costa) [2062175] {CVE-2021-26341}
+- objtool: Change dead_end_function() to return boolean (Wander Lairson Costa) [2062175] {CVE-2021-26341}
+- x86/lib/atomic64_386_32: Rename things (Wander Lairson Costa) [2062175] {CVE-2021-26341}
+- KVM: arm64: Fix debug architecture version (Gavin Shan) [2123587]
+- thunderbolt: Add support for Intel Raptor Lake (Torez Smith) [2040037]
+- iommu/vt-d: Fix compile error with CONFIG_PCI_ATS not set (Myron Stowe) [2118428 2122515 2127028]
+- iommu/vt-d: Cure VF irqdomain hickup (Myron Stowe) [2118428 2122515 2127028]
+- x86/pci: Set default irq domain in pcibios_add_device() (Myron Stowe) [2118428 2122515 2127028]
+- iommm/amd: Store irq domain in struct device (Myron Stowe) [2118428 2122515 2127028]
+- iommm/vt-d: Store irq domain in struct device (Myron Stowe) [2118428 2122515 2127028]
+- PCI/MSI: Provide pci_dev_has_special_msi_domain() helper (Myron Stowe) [2118428 2122515 2127028]
+- x86/msi: Consolidate MSI allocation (Myron Stowe) [2118428 2122515 2127028]
+- PCI/MSI: Rework pci_msi_domain_calc_hwirq() (Myron Stowe) [2118428 2122515 2127028]
+- x86/irq: Consolidate UV domain allocation (Myron Stowe) [2118428 2122515 2127028]
+- x86/irq: Consolidate DMAR irq allocation (Myron Stowe) [2118428 2122515 2127028]
+- x86_ioapic_Consolidate_IOAPIC_allocation (Myron Stowe) [2118428 2122515 2127028]
+- x86/msi: Consolidate HPET allocation (Myron Stowe) [2118428 2122515 2127028]
+- iommu/irq_remapping: Consolidate irq domain lookup (Myron Stowe) [2118428 2122515 2127028]
+- iommu/amd: Consolidate irq domain getter (Myron Stowe) [2118428 2122515 2127028]
+- iommu/vt-d: Consolidate irq domain getter (Myron Stowe) [2118428 2122515 2127028]
+- x86/irq: Add allocation type for parent domain retrieval (Myron Stowe) [2118428 2122515 2127028]
+- irqdomain: Export irq_domain_update_bus_token (Myron Stowe) [2118428 2122515 2127028]
+- perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids (Michael Petlan) [2125349]
+- perf/x86/intel/uncore: Fix invalid unit check (Michael Petlan) [2125349]
+
+* Tue Sep 27 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-428.el8]
+- KVM: s390: pv: don't present the ecall interrupt twice (Tobias Huschle) [2125236]
+- s390/mm: do not trigger write fault when vma does not allow VM_WRITE (Tobias Huschle) [2125218]
+- PCI: Print a debug message on PCI device release (Tobias Huschle) [2125216]
+- s390/pci: fix leak of PCI device structure (Tobias Huschle) [2125216]
+- s390/pci: refactor zpci_create_device() (Tobias Huschle) [2125216]
+- s390/pci: remove superfluous zdev->zbus check (Tobias Huschle) [2125216]
+- x86/boot/64: Add missing fixup_pointer() for next_early_pgt access (Rafael Aquini) [2082806]
+- x86/boot/64: Fix crash if kernel image crosses page table boundary (Rafael Aquini) [2082806]
+- mm/slab_common: fix possible double free of kmem_cache (Waiman Long) [2093781]
+- mm/slab_common: Deleting kobject in kmem_cache_destroy() without holding slab_mutex/cpu_hotplug_lock (Waiman Long) [2093781]
+- mm/slab_common: use WARN() if cache still has objects on destroy (Waiman Long) [2093781]
+- slab: use __func__ to trace function name (Waiman Long) [2093781]
+- s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages (Tobias Huschle) [2125215]
+- platform/x86: intel/pmc: Add Alder Lake N support to PMC core driver (Prarit Bhargava) [2072654]
+- crash_core: Increase crashkernel=auto size for x86_64, s390 and arm64 (Lichen Liu) [2122874]
+- virtio-net: fix use-after-free in skb_gro_receive (Cindy Lu) [2069047]
+- virtio-net: fix use-after-free in page_to_skb() (Cindy Lu) [2069047]
+- virtio-net: restrict build_skb() use to some arches (Cindy Lu) [2069047]
+- virtio-net: page_to_skb() use build_skb when there's sufficient tailroom (Cindy Lu) [2069047]
+- sched/fair: Consider CPU affinity when allowing NUMA imbalance in find_idlest_group() (Phil Auld) [2110020]
+- sched/numa: Adjust imb_numa_nr to a better approximation of memory channels (Phil Auld) [2110020]
+- sched/numa: Apply imbalance limitations consistently (Phil Auld) [2110020]
+- sched/numa: Do not swap tasks between nodes when spare capacity is available (Phil Auld) [2110020]
+- sched/numa: Initialise numa_migrate_retry (Phil Auld) [2110020]
+- cpufreq: intel_pstate: Handle no_turbo in frequency invariance (Phil Auld) [2100594]
+- sched/fair: Introduce SIS_UTIL to search idle CPU based on sum of util_avg (Phil Auld) [2100594]
+- i2c: piix4: Fix a memory leak in the EFCH MMIO support (Sudheesh Mavila) [2105160]
+- assoc_array: Fix BUG_ON during garbage collect (Dave Wysochanski) [1920523]
+- wait: Fix __wait_event_hrtimeout for RT/DL tasks (Derek Barbosa) [2125233]
+
+* Wed Sep 21 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-427.el8]
+- raid1: ensure write behind bio has less than BIO_MAX_VECS sectors (Nigel Croxon) [2116209]
+- ceph: fix statfs for subdir mounts (Xiubo Li) [2120943]
+- ceph: try to queue a writeback if revoking fails (Xiubo Li) [2120940]
+- ceph: update the auth cap when the async create req is forwarded (Xiubo Li) [2120932]
+- ceph: make change_auth_cap_ses a global symbol (Xiubo Li) [2120932]
+- fs/dcache: export d_same_name() helper (Xiubo Li) [2120932]
+- ceph: wait for the first reply of inflight async unlink (Xiubo Li) [2120932]
+- redhat: Enable KASAN_VMALLOC (Nico Pache) [2108620]
+- arm64: select KASAN_VMALLOC for SW/HW_TAGS modes (Nico Pache) [2108620]
+- x86/crash: Fix crash_setup_memmap_entries() out-of-bounds access (Nico Pache) [2108620]
+- mm: defer kmemleak object creation of module_alloc() (Nico Pache) [2108620]
+- arm64: kaslr: keep modules inside module region when KASAN is enabled (Nico Pache) [2108620]
+- kasan: arm64: fix pcpu_page_first_chunk crash with KASAN_VMALLOC (Nico Pache) [2108620]
+- arm64: Kconfig: select KASAN_VMALLOC if KANSAN_GENERIC is enabled (Nico Pache) [2108620]
+- arm64: kaslr: support randomized module area with KASAN_VMALLOC (Nico Pache) [2108620]
+- arm64: Kconfig: support CONFIG_KASAN_VMALLOC (Nico Pache) [2108620]
+- arm64: kasan: abstract _text and _end to KERNEL_START/END (Nico Pache) [2108620]
+- arm64: kasan: don't populate vmalloc area for CONFIG_KASAN_VMALLOC (Nico Pache) [2108620]
+- x86/kasan: support KASAN_VMALLOC (Nico Pache) [2108620]
+- ath9k: htc: clean up statistics macros (Jose Ignacio Tornos Martinez) [2084598] {CVE-2022-1679}
+- ath9k: hif_usb: simplify if-if to if-else (Jose Ignacio Tornos Martinez) [2084598] {CVE-2022-1679}
+- ath9k: fix use-after-free in ath9k_hif_usb_rx_cb (Jose Ignacio Tornos Martinez) [2084598] {CVE-2022-1679}
+- igmp: Add ip_mc_list lock in ip_check_mc_rcu (Hangbin Liu) [2114946] {CVE-2022-20141}
+- scsi: zfcp: Fix missing auto port scan and thus missing target ports (Tobias Huschle) [2121089]
+- vfio/type1: Unpin zero pages (Alex Williamson) [2123015]
+
+* Wed Sep 14 2022 Lucas Zampieri <lzampier@redhat.com> [4.18.0-426.el8]
+- iommu/vt-d: Make DMAR_UNITS_SUPPORTED default 1024 (Jerry Snitselaar) [2120412]
+- Revert "iommu/vt-d: Make DMAR_UNITS_SUPPORTED a config setting" (Jerry Snitselaar) [2120412]
+- ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE (Oleg Nesterov) [2121269] {CVE-2022-30594}
+- redhat: remove unused STAMP variable from genspec.sh (Herton R. Krzesinski)
+- internal: Update RHEL_MINOR for the start of RHEL-8.8 development (Lucas Zampieri)
+
+* Fri Sep 09 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-425.el8]
+- EDAC/amd64: Add new register offset support and related changes (Aristeu Rozanski) [2048792]
+- EDAC/amd64: Set memory type per DIMM (Aristeu Rozanski) [2048792]
+- Revert "ixgbevf: Mailbox improvements" (Ken Cox) [2120545]
+- Revert "ixgbevf: Add support for new mailbox communication between PF and VF" (Ken Cox) [2120545]
+- drm/amdgpu: Only disable prefer_shadow on hawaii (Lyude Paul) [2118755]
+
+* Fri Sep 02 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-424.el8]
+- redhat: configs: add CONFIG_SERIAL_MULTI_INSTANTIATE=m for x86_64 (Jaroslav Kysela) [2005073]
+- ACPI: scan: Add CLSA0101 Laptop Support (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Add CLSA0101 Laptop (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Sort ACPI IDs by HID (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Get rid of redundant 'else' (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Use while (i--) pattern to clean up (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Improve dev_err_probe() messaging (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Drop duplicate check (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Improve autodetection (Jaroslav Kysela) [2005073]
+- ACPI / scan: Create platform device for CS35L41 (Jaroslav Kysela) [2005073]
+- ACPI: scan: Create platform device for BCM4752 and LNV4752 ACPI nodes (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Add SPI support (Jaroslav Kysela) [2005073]
+- platform/x86: serial-multi-instantiate: Reorganize I2C functions (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Rename it for a generic serial driver name (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Use the new i2c_acpi_client_count() helper (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Use device_get_match_data() to get driver data (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Simplify with dev_err_probe() (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Drop redundant ACPI_PTR() (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Replace zero-length array with flexible-array member (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Fail the probe if no IRQ provided (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Derive the device name from parent (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Use struct_size() helper (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Allow to have same slaves (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Introduce IOAPIC IRQ support (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Distinguish IRQ resource type (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Count I2cSerialBus() resources (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Get rid of obsolete conditional (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Defer probe when no adapter found (Jaroslav Kysela) [2005073]
+- platform/x86: i2c-multi-instantiate: Accept errors of i2c_acpi_new_device() (Jaroslav Kysela) [2005073]
+- serdev: Fix detection of UART devices on Apple machines. (Jaroslav Kysela) [2005073]
+- serdev: Add ACPI devices by ResourceSource field (Jaroslav Kysela) [2005073]
+- spi: Return deferred probe error when controller isn't yet available (Jaroslav Kysela) [2005073]
+- spi/acpi: avoid spurious matches during slave enumeration (Jaroslav Kysela) [2005073]
+- spi: Add API to count spi acpi resources (Jaroslav Kysela) [2005073]
+- spi: Support selection of the index of the ACPI Spi Resource before alloc (Jaroslav Kysela) [2005073]
+- ACPI: Test for ACPI_SUCCESS rather than !ACPI_FAILURE (Jaroslav Kysela) [2005073]
+- spi/acpi: fix incorrect ACPI parent check (Jaroslav Kysela) [2005073]
+- spi: Create helper API to lookup ACPI info for spi device (Jaroslav Kysela) [2005073]
+- spi/acpi: enumerate all SPI slaves in the namespace (Jaroslav Kysela) [2005073]
+- spi: kill useless initializer in spi_register_controller() (Jaroslav Kysela) [2005073]
+- spi: fix ctrl->num_chipselect constraint (Jaroslav Kysela) [2005073]
+- spi: Don't call spi_get_gpio_descs() before device name is set (Jaroslav Kysela) [2005073]
+- spi: Avoid undefined behaviour when counting unused native CSs (Jaroslav Kysela) [2005073]
+- spi: Allow to have all native CSs in use along with GPIOs (Jaroslav Kysela) [2005073]
+- spi: Add missing error handling for CS GPIOs (Jaroslav Kysela) [2005073]
+- spi: export tracepoint symbols to modules (Jaroslav Kysela) [2005073]
+- spi: Fix zero length xfer bug (Jaroslav Kysela) [2005073]
+- spi: Add generic support for unused native cs with cs-gpios (Jaroslav Kysela) [2005073]
+- spi: Reduce kthread priority (Jaroslav Kysela) [2005073]
+- spi: core: Use DEVICE_ATTR_RW() for SPI slave control sysfs attribute (Jaroslav Kysela) [2005073]
+- i2c: acpi: Add an i2c_acpi_client_count() helper function (Jaroslav Kysela) [2005073]
+- s390/qeth: cache link_info for ethtool (Michal Schmidt) [2117098]
+- nfp: amend removal of MODULE_VERSION (Stefan Assmann) [1955769]
+- x86/speculation: Add LFENCE to RSB fill sequence (Waiman Long) [2115080] {CVE-2022-26373}
+- x86/speculation: Add RSB VM Exit protections (Waiman Long) [2115080] {CVE-2022-26373}
+- tools headers cpufeatures: Sync with the kernel sources (Waiman Long) [2115080]
+- tools headers cpufeatures: Sync with the kernel sources (Waiman Long) [2115080]
+- x86/speculation: Fix RSB filling with CONFIG_RETPOLINE=n (Waiman Long) [2115080]
+- x86/bugs: Do not enable IBPB at firmware entry when IBPB is not available (Waiman Long) [2115080]
+- x86/amd: Use IBPB for firmware calls (Waiman Long) [2115080]
+- x86/bugs: Warn when "ibrs" mitigation is selected on Enhanced IBRS parts (Waiman Long) [2115080]
+- iavf: Fix reset error handling (Petr Oros) [2119759]
+- iavf: Fix NULL pointer dereference in iavf_get_link_ksettings (Petr Oros) [2119759]
+- iavf: Fix adminq error handling (Petr Oros) [2119759]
+- iavf: Fix missing state logs (Petr Oros) [2119759]
+- ixgbe: Add locking to prevent panic when setting sriov_numvfs to zero (Ken Cox) [1978613]
+
+* Fri Aug 26 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-423.el8]
+- netfilter: ipset: fix suspicious RCU usage in find_set_and_id (Florian Westphal) [2118526]
+- net/mlx5e: Update netdev features after changing XDP state (Amir Tzin) [2049440]
+- net/mlx5e: CT: Use own workqueue instead of mlx5e priv (Amir Tzin) [2049440]
+- net/mlx5e: CT: Add ct driver counters (Amir Tzin) [2049440]
+- net/mlx5e: CT: Fix cleanup of CT before cleanup of TC ct rules (Amir Tzin) [2049440]
+- net/mlx5e: Align mlx5e_cleanup_uplink_rep_tx() with upstream code. (Amir Tzin) [2049440]
+- net/mlx5e: Correct the calculation of max channels for rep (Amir Tzin) [2049440]
+- Documentation: devlink: mlx5.rst: Fix htmldoc build warning (Amir Tzin) [2049440]
+- net/mlx5: fs, fail conflicting actions (Amir Tzin) [2049440]
+- net/mlx5: Rearm the FW tracer after each tracer event (Amir Tzin) [2049440]
+- net/mlx5: correct ECE offset in query qp output (Amir Tzin) [2049440]
+- net/mlx5e: Disable softirq in mlx5e_activate_rq to avoid race condition (Amir Tzin) [2049440]
+- net/mlx5e: TC NIC mode, fix tc chains miss table (Amir Tzin) [2049440]
+- net/mlx5: Don't use already freed action pointer (Amir Tzin) [2049440]
+- net/mlx5: fix typo in comment (Amir Tzin) [2049440]
+- IB/mlx5: Fix undefined behavior due to shift overflowing the constant (Amir Tzin) [2049440]
+- net/mlx5e: Force ethertype usage in mlx5_ct_fs_smfs_fill_mask() (Amir Tzin) [2049440]
+- net/mlx5: Drain fw_reset when removing device (Amir Tzin) [2049440]
+- net/mlx5e: CT: Fix setting flow_source for smfs ct tuples (Amir Tzin) [2049440]
+- net/mlx5e: CT: Fix support for GRE tuples (Amir Tzin) [2049440]
+- net/mlx5e: Remove HW-GRO from reported features (Amir Tzin) [2049440]
+- net/mlx5e: Properly block HW GRO when XDP is enabled (Amir Tzin) [2049440]
+- net/mlx5e: Properly block LRO when XDP is enabled (Amir Tzin) [2049440]
+- net/mlx5e: Block rx-gro-hw feature in switchdev mode (Amir Tzin) [2049440]
+- net/mlx5e: Wrap mlx5e_trap_napi_poll into rcu_read_lock (Amir Tzin) [2049440]
+- net/mlx5: Initialize flow steering during driver probe (Amir Tzin) [2049440]
+- net/mlx5: Fix matching on inner TTC (Amir Tzin) [2049440]
+- net/mlx5: Avoid double clear or set of sync reset requested (Amir Tzin) [2049440]
+- net/mlx5: Fix deadlock in sync reset flow (Amir Tzin) [2049440]
+- net/mlx5e: Fix trust state reset in reload (Amir Tzin) [2049440]
+- net/mlx5e: Avoid checking offload capability in post_parse action (Amir Tzin) [2049440]
+- net/mlx5e: CT: Fix queued up restore put() executing after relevant ft release (Amir Tzin) [2049440]
+- net/mlx5e: TC, Fix ct_clear overwriting ct action metadata (Amir Tzin) [2049440]
+- net/mlx5e: Lag, Don't skip fib events on current dst (Amir Tzin) [2049440]
+- net/mlx5e: Lag, Fix fib_info pointer assignment (Amir Tzin) [2049440]
+- net/mlx5e: Lag, Fix use-after-free in fib event handler (Amir Tzin) [2049440]
+- net/mlx5e: Fix the calling of update_buffer_lossy() API (Amir Tzin) [2049440]
+- net/mlx5e: Don't match double-vlan packets if cvlan is not set (Amir Tzin) [2049440]
+- net/mlx5: Fix slab-out-of-bounds while reading resource dump menu (Amir Tzin) [2049440]
+- RDMA/mlx5: Add a missing update of cache->last_add (Amir Tzin) [2049440]
+- RDMA/mlx5: Don't remove cache MRs when a delay is needed (Amir Tzin) [2049440]
+- net/mlx5e: HTB, remove unused function declaration (Amir Tzin) [2049440]
+- net/mlx5e: Statify function mlx5_cmd_trigger_completions (Amir Tzin) [2049440]
+- net/mlx5: Remove unused fill page array API function (Amir Tzin) [2049440]
+- net/mlx5: Remove unused exported contiguous coherent buffer allocation API (Amir Tzin) [2049440]
+- net/mlx5: CT: Remove extra rhashtable remove on tuple entries (Amir Tzin) [2049440]
+- net/mlx5: DR, Remove hw_ste from mlx5dr_ste to reduce memory (Amir Tzin) [2049440]
+- net/mlx5: DR, Remove 4 members from mlx5dr_ste_htbl to reduce memory (Amir Tzin) [2049440]
+- net/mlx5: DR, Remove num_of_entries byte_size from struct mlx5_dr_icm_chunk (Amir Tzin) [2049440]
+- net/mlx5: DR, Remove icm_addr from mlx5dr_icm_chunk to reduce memory (Amir Tzin) [2049440]
+- net/mlx5: DR, Remove mr_addr rkey from struct mlx5dr_icm_chunk (Amir Tzin) [2049440]
+- net/mlx5: DR, Adjust structure member to reduce memory hole (Amir Tzin) [2049440]
+- net/mlx5e: Drop cqe_bcnt32 from mlx5e_skb_from_cqe_mpwrq_linear (Amir Tzin) [2049440]
+- net/mlx5e: Drop the len output parameter from mlx5e_xdp_handle (Amir Tzin) [2049440]
+- net/mlx5e: RX, Test the XDP program existence out of the handler (Amir Tzin) [2049440]
+- net/mlx5e: Build SKB in place over the first fragment in non-linear legacy RQ (Amir Tzin) [2049440]
+- net/mlx5e: Add headroom only to the first fragment in legacy RQ (Amir Tzin) [2049440]
+- net/mlx5e: Validate MTU when building non-linear legacy RQ fragments info (Amir Tzin) [2049440]
+- net/mlx5e: MPLSoUDP encap, support action vlan pop_eth explicitly (Amir Tzin) [2049440]
+- net/mlx5e: MPLSoUDP decap, use vlan push_eth instead of pedit (Amir Tzin) [2049440]
+- RDMA/mlx5: Fix memory leak in error flow for subscribe event routine (Amir Tzin) [2049440]
+- net/mlx5e: Fix use-after-free in mlx5e_stats_grp_sw_update_stats (Amir Tzin) [2049440]
+- net/mlx5e: Remove overzealous validations in netlink EEPROM query (Amir Tzin) [2049440]
+- net/mlx5: Parse module mapping using mlx5_ifc (Amir Tzin) [2049440]
+- net/mlx5: Query the maximum MCIA register read size from firmware (Amir Tzin) [2049440]
+- net/mlx5: CT: Create smfs dr matchers dynamically (Amir Tzin) [2049440]
+- net/mlx5: CT: Add software steering ct flow steering provider (Amir Tzin) [2049440]
+- net/mlx5: Add smfs lib to export direct steering API to CT (Amir Tzin) [2049440]
+- net/mlx5: DR, Add helper to get backing dr table from a mlx5 flow table (Amir Tzin) [2049440]
+- net/mlx5: CT: Introduce a platform for multiple flow steering providers (Amir Tzin) [2049440]
+- net/mlx5: Node-aware allocation for the doorbell pgdir (Amir Tzin) [2049440]
+- net/mlx5: Node-aware allocation for UAR (Amir Tzin) [2049440]
+- net/mlx5: Node-aware allocation for the EQs (Amir Tzin) [2049440]
+- net/mlx5: Node-aware allocation for the EQ table (Amir Tzin) [2049440]
+- net/mlx5: Node-aware allocation for the IRQ table (Amir Tzin) [2049440]
+- net/mlx5: Delete useless module.h include (Amir Tzin) [2049440]
+- net/mlx5: DR, Add support for ConnectX-7 steering (Amir Tzin) [2049440]
+- net/mlx5: DR, Refactor ste_ctx handling for STE v0/1 (Amir Tzin) [2049440]
+- net/mlx5: DR, Rename action modify fields to reflect naming in HW spec (Amir Tzin) [2049440]
+- net/mlx5: DR, Fix handling of different actions on the same STE in STEv1 (Amir Tzin) [2049440]
+- net/mlx5: DR, Remove unneeded comments (Amir Tzin) [2049440]
+- net/mlx5: DR, Add support for matching on Internet Header Length (IHL) (Amir Tzin) [2049440]
+- net/mlx5: DR, Align mlx5dv_dr API vport action with FW behavior (Amir Tzin) [2049440]
+- net/mlx5: Add debugfs counters for page commands failures (Amir Tzin) [2049440]
+- net/mlx5: Add pages debugfs (Amir Tzin) [2049440]
+- net/mlx5: Move debugfs entries to separate struct (Amir Tzin) [2049440]
+- net/mlx5: Change release_all_pages cap bit location (Amir Tzin) [2049440]
+- net/mlx5: Remove redundant error on reclaim pages (Amir Tzin) [2049440]
+- net/mlx5: Remove redundant error on give pages (Amir Tzin) [2049440]
+- net/mlx5: Remove redundant notify fail on give pages (Amir Tzin) [2049440]
+- net/mlx5: Add command failures data to debugfs (Amir Tzin) [2049440]
+- net/mlx5e: TC, Fix use after free in mlx5e_clone_flow_attr_for_post_act() (Amir Tzin) [2049440]
+- net/mlx5: Support GRE conntrack offload (Amir Tzin) [2049440]
+- mlx5: add support for page_pool_get_stats (Amir Tzin) [2049440]
+- net/mlx5: Add migration commands definitions (Amir Tzin) [2049440]
+- net/mlx5: Introduce migration bits and structures (Amir Tzin) [2049440]
+- net/mlx5: Expose APIs to get/put the mlx5 core device (Amir Tzin) [2049440]
+- net/mlx5: Disable SRIOV before PF removal (Amir Tzin) [2049440]
+- net/mlx5: Reuse exported virtfn index function call (Amir Tzin) [2049440]
+- net/mlx5: Add clarification on sync reset failure (Amir Tzin) [2049440]
+- net/mlx5: Add reset_state field to MFRL register (Amir Tzin) [2049440]
+- RDMA/mlx5: Use new command interface API (Amir Tzin) [2049440]
+- net/mlx5: cmdif, Refactor error handling and reporting of async commands (Amir Tzin) [2049440]
+- net/mlx5: Use mlx5_cmd_do() in core create_{cq,dct} (Amir Tzin) [2049440]
+- net/mlx5: cmdif, Add new api for command execution (Amir Tzin) [2049440]
+- net/mlx5: cmdif, cmd_check refactoring (Amir Tzin) [2049440]
+- net/mlx5: cmdif, Return value improvements (Amir Tzin) [2049440]
+- net/mlx5: Lag, offload active-backup drops to hardware (Amir Tzin) [2049440]
+- net/mlx5: Lag, record inactive state of bond device (Amir Tzin) [2049440]
+- net/mlx5: Lag, don't use magic numbers for ports (Amir Tzin) [2049440]
+- net/mlx5: Lag, use local variable already defined to access E-Switch (Amir Tzin) [2049440]
+- net/mlx5: E-switch, add drop rule support to ingress ACL (Amir Tzin) [2049440]
+- net/mlx5: E-switch, remove special uplink ingress ACL handling (Amir Tzin) [2049440 2049580]
+- net/mlx5: E-Switch, reserve and use same uplink metadata across ports (Amir Tzin) [2049440 2049580]
+- net/mlx5: Add ability to insert to specific flow group (Amir Tzin) [2049440]
+- mlx5: remove unused static inlines (Amir Tzin) [2049440]
+- RDMA/mlx5: Reorder calls to pcie_relaxed_ordering_enabled() (Amir Tzin) [2049440]
+- RDMA/mlx5: Store ndescs instead of the translation table size (Amir Tzin) [2049440]
+- RDMA/mlx5: Merge similar flows of allocating MR from the cache (Amir Tzin) [2049440]
+- RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR (Amir Tzin) [2049440]
+- RDMA/mlx5: Remove redundant work in struct mlx5_cache_ent (Amir Tzin) [2049440]
+- net/mlx5e: TC, Allow sample action with CT (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Make post_act parse CT and sample actions (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Clean redundant counter flag from tc action parsers (Amir Tzin) [2049440 2049659]
+- net/mlx5e: Use multi table support for CT and sample actions (Amir Tzin) [2049440 2049659]
+- net/mlx5e: Create new flow attr for multi table actions (Amir Tzin) [2049440 2049659]
+- net/mlx5e: Add post act offload/unoffload API (Amir Tzin) [2049440 2049659]
+- net/mlx5e: Pass actions param to actions_match_supported() (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Move flow hashtable to be per rep (Amir Tzin) [2049440]
+- net/mlx5e: E-Switch, Add support for tx_port_ts in switchdev mode (Amir Tzin) [2049440]
+- net/mlx5e: E-Switch, Add PTP counters for uplink representor (Amir Tzin) [2049440]
+- net/mlx5e: RX, Restrict bulk size for small Striding RQs (Amir Tzin) [2049440]
+- net/mlx5e: Default to Striding RQ when not conflicting with CQE compression (Amir Tzin) [2049440]
+- net/mlx5e: Generalize packet merge error message (Amir Tzin) [2049440]
+- net/mlx5e: Add support for using xdp->data_meta (Amir Tzin) [2049440]
+- net/mlx5e: Fix spelling mistake "supoported" -> "supported" (Amir Tzin) [2049440]
+- net/mlx5e: Optimize the common case condition in mlx5e_select_queue (Amir Tzin) [2049440]
+- net/mlx5e: Optimize modulo in mlx5e_select_queue (Amir Tzin) [2049440]
+- net/mlx5e: Optimize mlx5e_select_queue (Amir Tzin) [2049440]
+- net/mlx5e: Use READ_ONCE/WRITE_ONCE for DCBX trust state (Amir Tzin) [2049440]
+- net/mlx5e: Move repeating code that gets TC prio into a function (Amir Tzin) [2049440]
+- net/mlx5e: Use select queue parameters to sync with control flow (Amir Tzin) [2049440]
+- net/mlx5e: Move mlx5e_select_queue to en/selq.c (Amir Tzin) [2049440]
+- net/mlx5e: Introduce select queue parameters (Amir Tzin) [2049440]
+- net/mlx5e: Sync txq2sq updates with mlx5e_xmit for HTB queues (Amir Tzin) [2049440]
+- net/mlx5e: Use a barrier after updating txq2sq (Amir Tzin) [2049440]
+- net/mlx5e: Disable TX queues before registering the netdev (Amir Tzin) [2049440]
+- net/mlx5e: Cleanup of start/stop all queues (Amir Tzin) [2049440]
+- net/mlx5e: Use FW limitation for max MPW WQEBBs (Amir Tzin) [2049440]
+- net/mlx5e: Read max WQEBBs on the SQ from firmware (Amir Tzin) [2049440]
+- net/mlx5e: Remove unused tstamp SQ field (Amir Tzin) [2049440]
+- RDMA/mlx5: Delete useless module.h include (Amir Tzin) [2049440]
+- RDMA/mlx5: Delete get_num_static_uars function (Amir Tzin) [2049440]
+- net/mlx5: VLAN push on RX, pop on TX (Amir Tzin) [2049440 2049616]
+- net/mlx5: Introduce software defined steering capabilities (Amir Tzin) [2049440 2049616]
+- net/mlx5: Remove unused TIR modify bitmask enums (Amir Tzin) [2049440]
+- net/mlx5e: CT, Remove redundant flow args from tc ct calls (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Store mapped tunnel id on flow attr (Amir Tzin) [2049440 2049659]
+- net/mlx5e: Test CT and SAMPLE on flow attr (Amir Tzin) [2049440 2049580 2049659]
+- net/mlx5e: Refactor eswitch attr flags to just attr flags (Amir Tzin) [2049440 2049580 2049659]
+- net/mlx5e: CT, Don't set flow flag CT for ct clear flow (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Hold sample_attr on stack instead of pointer (Amir Tzin) [2049440 2049580 2049659]
+- net/mlx5e: TC, Reject rules with multiple CT actions (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Refactor mlx5e_tc_add_flow_mod_hdr() to get flow attr (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Pass attr to tc_act can_offload() (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Split pedit offloads verify from alloc_tc_pedit_action() (Amir Tzin) [2049440 2049659]
+- net/mlx5e: TC, Move pedit_headers_action to parse_attr (Amir Tzin) [2049440 2049659]
+- net/mlx5e: Move counter creation call to alloc_flow_attr_counter() (Amir Tzin) [2049440 2049659]
+- net/mlx5e: Pass attr arg for attaching/detaching encaps (Amir Tzin) [2049440 2049659]
+- net/mlx5e: Move code chunk setting encap dests into its own function (Amir Tzin) [2049440 2049659]
+- net_sched: cls_route: remove from list when handle is 0 (Felix Maurer) [2116328] {CVE-2022-2588}
+- netfilter: nf_tables: do not allow RULE_ID to refer to another chain (Florian Westphal) [2116356] {CVE-2022-2586}
+- netfilter: nf_tables: do not allow SET_ID to refer to another table (Florian Westphal) [2116356] {CVE-2022-2586}
+- netfilter: nf_queue: do not allow packet truncation below transport header offset (Florian Westphal) [2116159] {CVE-2022-36946}
+- net: let flow have same hash in two directions (Ivan Vecera) [2111094]
+- ipv4: Fix data-races around sysctl_fib_multipath_hash_fields. (Ivan Vecera) [2111094]
+- net: Add notifications when multipath hash field change (Ivan Vecera) [2111094]
+- selftests: forwarding: Add test for custom multipath hash with IPv6 GRE (Ivan Vecera) [2111094]
+- selftests: forwarding: Add test for custom multipath hash with IPv4 GRE (Ivan Vecera) [2111094]
+- selftests: forwarding: Add test for custom multipath hash (Ivan Vecera) [2111094]
+- ipv6: Add custom multipath hash policy (Ivan Vecera) [2111094]
+- ipv6: Add a sysctl to control multipath hash fields (Ivan Vecera) [2111094]
+- ipv6: Calculate multipath hash inside switch statement (Ivan Vecera) [2111094]
+- ipv6: Use a more suitable label name (Ivan Vecera) [2111094]
+- ipv4: Add custom multipath hash policy (Ivan Vecera) [2111094]
+- ipv4: Add a sysctl to control multipath hash fields (Ivan Vecera) [2111094]
+- ipv4: Calculate multipath hash inside switch statement (Ivan Vecera) [2111094]
+- ipv6: Use math to point per net sysctls into the appropriate struct net (Ivan Vecera) [2111094]
+- selftest/net/forwarding: declare NETIFS p9 p10 (Ivan Vecera) [2111094]
+- ipv6: Fix sysctl max for fib_multipath_hash_policy (Ivan Vecera) [2111094]
+- selftests: forwarding: Test multipath hashing on inner IP pkts for GRE tunnel (Ivan Vecera) [2111094]
+- ipv6: Support multipath hashing on inner IP pkts (Ivan Vecera) [2111094]
+- ipv4: Multipath hashing on inner L3 needs to consider inner IPv6 pkts (Ivan Vecera) [2111094]
+- ipv4: Support multipath hashing on inner IP pkts for GRE tunnel (Ivan Vecera) [2111094]
+- ipv4: Initialize flowi4_multipath_hash in data path (Ivan Vecera) [2111094]
+- net: ipv4: Fix NULL pointer dereference in route lookup (Ivan Vecera) [2111094]
+- route: Add multipath_hash in flowi_common to make user-define hash (Ivan Vecera) [2111094]
+
+* Thu Aug 25 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-422.el8]
+- drm/nouveau/kms/nv140-: Disable interlacing (Lyude Paul) [2097647]
+- rpm: convert gcc and libelf to Recommends (Jarod Wilson) [2114900]
+- redhat: add ca7 to redhat/git/files (Jarod Wilson)
+
+* Wed Aug 24 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-421.el8]
+- net/mlx5e: TC, Remove redundant error logging (Amir Tzin) [2049436]
+- net/mlx5e: SHAMPO, reduce TIR indication (Amir Tzin) [2049436]
+- net/mlx5e: Lag, Only handle events from highest priority multipath entry (Amir Tzin) [2049436]
+- net/mlx5: Fix offloading with ESWITCH_IPV4_TTL_MODIFY_ENABLE (Amir Tzin) [2049436]
+- net/mlx5: Fix a race on command flush flow (Amir Tzin) [2049436]
+- net/mlx5: Fix size field in bufferx_reg struct (Amir Tzin) [2049436]
+- net/mlx5e: Fix VF min/max rate parameters interchange mistake (Amir Tzin) [2049436]
+- net/mlx5e: Add missing increment of count (Amir Tzin) [2049436]
+- net/mlx5e: MPLSoUDP decap, fix check for unsupported matches (Amir Tzin) [2049436]
+- net/mlx5e: Fix MPLSoUDP encap to use MPLS action information (Amir Tzin) [2049436]
+- net/mlx5e: Add feature check for set fec counters (Amir Tzin) [2049436 2049711]
+- net/mlx5e: TC, Skip redundant ct clear actions (Amir Tzin) [2049436]
+- net/mlx5e: TC, Reject rules with forward and drop actions (Amir Tzin) [2049436]
+- net/mlx5e: TC, Reject rules with drop and modify hdr action (Amir Tzin) [2049436]
+- net/mlx5e: kTLS, Use CHECKSUM_UNNECESSARY for device-offloaded packets (Amir Tzin) [2049436]
+- net/mlx5e: Use dma device access helper (add dropped hunk) (Amir Tzin) [2049436]
+- net/mlx5e: Fix wrong return value on ioctl EEPROM query failure (Amir Tzin) [2049436]
+- net/mlx5: Fix possible deadlock on rule deletion (Amir Tzin) [2049436]
+- net/mlx5: Fix tc max supported prio for nic mode (Amir Tzin) [2049436]
+- net/mlx5: Update log_max_qp value to be 17 at most (Amir Tzin) [2049436]
+- net/mlx5: DR, Don't allow match on IP w/o matching on full ethertype/ip_version (Amir Tzin) [2049436]
+- net/mlx5e: Avoid field-overflowing memcpy() (Amir Tzin) [2049436]
+- net/mlx5e: Use struct_group() for memcpy() region (Amir Tzin) [2049436]
+- net/mlx5e: IPsec: Fix tunnel mode crypto offload for non TCP/UDP traffic (Amir Tzin) [2049436 2052871]
+- net/mlx5e: IPsec: Fix crypto offload for non TCP/UDP encapsulated traffic (Amir Tzin) [2049436 2052871]
+- net/mlx5e: Don't treat small ceil values as unlimited in HTB offload (Amir Tzin) [2049436]
+- net/mlx5: E-Switch, Fix uninitialized variable modact (Amir Tzin) [2049436]
+- net/mlx5e: Fix handling of wrong devices during bond netevent (Amir Tzin) [2049436]
+- net/mlx5e: Fix broken SKB allocation in HW-GRO (Amir Tzin) [2049436]
+- net/mlx5e: Fix wrong calculation of header index in HW_GRO (Amir Tzin) [2049436]
+- net/mlx5: Fix offloading with ESWITCH_IPV4_TTL_MODIFY_ENABLE (Amir Tzin) [2049436]
+- net/mlx5e: TC, Reject rules with forward and drop actions (Amir Tzin) [2049436]
+- net/mlx5: Use del_timer_sync in fw reset flow of halting poll (Amir Tzin) [2049436]
+- net/mlx5e: Fix module EEPROM query (Amir Tzin) [2049436]
+- net/mlx5e: TC, Reject rules with drop and modify hdr action (Amir Tzin) [2049436]
+- net/mlx5: Bridge, ensure dev_name is null-terminated (Amir Tzin) [2049436]
+- net/mlx5: Bridge, take rtnl lock in init error handler (Amir Tzin) [2049436]
+- mlx5: Don't accidentally set RTO_ONLINK before mlx5e_route_lookup_ipv4_get() (Amir Tzin) [2049436]
+- net/mlx5e: Fix build error in fec_set_block_stats() (Amir Tzin) [2049436]
+- Revert "net/mlx5: Add retry mechanism to the command entry index allocation" (Amir Tzin) [2049436]
+- net/mlx5: Set command entry semaphore up once got index free (Amir Tzin) [2049436]
+- net/mlx5e: Sync VXLAN udp ports during uplink representor profile change (Amir Tzin) [2049436]
+- net/mlx5: Fix access to sf_dev_table on allocation failure (Amir Tzin) [2049436]
+- net/mlx5e: Fix matching on modified inner ip_ecn bits (Amir Tzin) [2049436]
+- Revert "net/mlx5e: Block offload of outer header csum for GRE tunnel" (Amir Tzin) [2049436]
+- Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" (Amir Tzin) [2049436]
+- net/mlx5e: Fix nullptr on deleting mirroring rule (Amir Tzin) [2049436]
+- net/mlx5e: Fix page DMA map/unmap attributes (Amir Tzin) [2049436]
+- net/mlx5: Use dma device access helper (add dropped hunk) (Amir Tzin) [2049436]
+- net/mlx5e: Add recovery flow in case of error CQE (Amir Tzin) [2049436]
+- net/mlx5e: Refactor set_pflag_cqe_based_moder (Amir Tzin) [2049436]
+- net/mlx5e: Move HW-GRO and CQE compression check to fix features flow (Amir Tzin) [2049436]
+- net/mlx5e: Fix feature check per profile (Amir Tzin) [2049436]
+- net/mlx5e: Unblock setting vid 0 for VF in case PF isn't eswitch manager (Amir Tzin) [2049436]
+- net/mlx5e: Expose FEC counters via ethtool (Amir Tzin) [2049436 2049711]
+- net/mlx5: Update log_max_qp value to FW max capability (Amir Tzin) [2049436]
+- net/mlx5: Use irq_set_affinity_and_hint() (Amir Tzin) [2049436]
+- net/mlx5: SF, Use all available cpu for setting cpu affinity (Amir Tzin) [2049436]
+- net/mlx5: Introduce API for bulk request and release of IRQs (Amir Tzin) [2049436]
+- net/mlx5: Split irq_pool_affinity logic to new file (Amir Tzin) [2049436]
+- net/mlx5: Move affinity assignment into irq_request (Amir Tzin) [2049436]
+- net/mlx5: Introduce control IRQ request API (Amir Tzin) [2049436]
+- net/mlx5: mlx5e_hv_vhca_stats_create return type to void (Amir Tzin) [2049436]
+- RDMA/mlx5: Print wc status on CQE error and dump needed (Amir Tzin) [2049436]
+- net: fixup build after bpf header changes (Amir Tzin) [2049436]
+- net/mlx5: CT: Set flow source hint from provided tuple device (Amir Tzin) [2049436]
+- net/mlx5: Set SMFS as a default steering mode if device supports it (Amir Tzin) [2049436]
+- net/mlx5: DR, Improve steering for empty or RX/TX-only matchers (Amir Tzin) [2049436]
+- net/mlx5: DR, Add support for matching on geneve_tlv_option_0_exist field (Amir Tzin) [2049436]
+- net/mlx5: DR, Support matching on tunnel headers 0 and 1 (Amir Tzin) [2049436]
+- net/mlx5: DR, Add misc5 to match_param structs (Amir Tzin) [2049436]
+- net/mlx5: Add misc5 flow table match parameters (Amir Tzin) [2049436]
+- net/mlx5: DR, Add support for UPLINK destination type (Amir Tzin) [2049436]
+- net/mlx5e: Use auxiliary_device driver data helpers (Amir Tzin) [2049436]
+- net/mlx5e: Take packet_merge params directly from the RX res struct (Amir Tzin) [2049436]
+- net/mlx5e: Allocate per-channel stats dynamically at first usage (Amir Tzin) [2049436]
+- net/mlx5e: Use dynamic per-channel allocations in stats (Amir Tzin) [2049436]
+- net/mlx5e: Allow profile-specific limitation on max num of channels (Amir Tzin) [2049436]
+- net/mlx5e: Save memory by using dynamic allocation in netdev priv (Amir Tzin) [2049436]
+- net/mlx5e: Add profile indications for PTP and QOS HTB features (Amir Tzin) [2049436]
+- net/mlx5e: Use bitmap field for profile features (Amir Tzin) [2049436]
+- net/mlx5: Remove the repeated declaration (Amir Tzin) [2049436]
+- net/mlx5: Let user configure max_macs generic param (Amir Tzin) [2049436]
+- net/mlx5: Let user configure event_eq_size param (Amir Tzin) [2049436]
+- net/mlx5: Let user configure io_eq_size param (Amir Tzin) [2049436]
+- net/mlx5: Introduce log_max_current_uc_list_wr_supported bit (Amir Tzin) [2049436]
+- net/mlx5e: Move goto action checks into tc_action goto post parse op (Amir Tzin) [2049436]
+- net/mlx5e: Move vlan action chunk into tc action vlan post parse op (Amir Tzin) [2049436]
+- net/mlx5e: Add post_parse() op to tc action infrastructure (Amir Tzin) [2049436]
+- net/mlx5e: Move sample attr allocation to tc_action sample parse op (Amir Tzin) [2049436]
+- net/mlx5e: TC action parsing loop (Amir Tzin) [2049436]
+- net/mlx5e: Add redirect ingress to tc action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add sample and ptype to tc_action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add ct to tc action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add mirred/redirect to tc action infra (Amir Tzin) [2049436]
+- Revert "net/mlx5e: TC, Remove redundant error logging" (Amir Tzin) [2049436]
+- net/mlx5e: Add mpls push/pop to tc action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add vlan push/pop/mangle to tc action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add pedit to tc action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add csum to tc action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add tunnel encap/decap to tc action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add goto to tc action infra (Amir Tzin) [2049436]
+- net/mlx5e: Add tc action infrastructure (Amir Tzin) [2049436]
+- RDMA/mlx5: Use memset_after() to zero struct mlx5_ib_mr (Amir Tzin) [2049436]
+- RDMA/mlx5: Add support to multiple priorities for FDB rules (Amir Tzin) [2049436]
+- net/mlx5: Create more priorities for FDB bypass namespace (Amir Tzin) [2049436]
+- net/mlx5: Refactor mlx5_get_flow_namespace (Amir Tzin) [2049436]
+- net/mlx5: Separate FDB namespace (Amir Tzin) [2049436]
+- net/mlx5: Dynamically resize flow counters query buffer (Amir Tzin) [2049436]
+- net/mlx5e: TC, Set flow attr ip_version earlier (Amir Tzin) [2049436]
+- net/mlx5e: TC, Move common flow_action checks into function (Amir Tzin) [2049436]
+- net/mlx5e: Remove redundant actions arg from vlan push/pop funcs (Amir Tzin) [2049436]
+- net/mlx5e: Remove redundant actions arg from validate_goto_chain() (Amir Tzin) [2049436]
+- net/mlx5e: TC, Remove redundant action stack var (Amir Tzin) [2049436]
+- net/mlx5e: Hide function mlx5e_num_channels_changed (Amir Tzin) [2049436]
+- net/mlx5e: SHAMPO, clean MLX5E_MAX_KLM_PER_WQE macro (Amir Tzin) [2049436]
+- net/mlx5: Print more info on pci error handlers (Amir Tzin) [2049436]
+- net/mlx5: SF, silence an uninitialized variable warning (Amir Tzin) [2049436]
+- net/mlx5: Fix error return code in esw_qos_create() (Amir Tzin) [2049436]
+- net/mlx5: E-switch, Create QoS on demand (Amir Tzin) [2049436]
+- net/mlx5: E-switch, Enable vport QoS on demand (Amir Tzin) [2049436]
+- net/mlx5: E-switch, move offloads mode callbacks to offloads file (Amir Tzin) [2049436]
+- net/mlx5: E-switch, Reuse mlx5_eswitch_set_vport_mac (Amir Tzin) [2049436]
+- net/mlx5: E-switch, Remove vport enabled check (Amir Tzin) [2049436]
+- net/mlx5e: Specify out ifindex when looking up decap route (Amir Tzin) [2049436]
+- net/mlx5e: TC, Move comment about mod header flag to correct place (Amir Tzin) [2049436]
+- net/mlx5e: TC, Move kfree() calls after destroying all resources (Amir Tzin) [2049436]
+- net/mlx5e: TC, Destroy nic flow counter if exists (Amir Tzin) [2049436]
+- net/mlx5: TC, using swap() instead of tmp variable (Amir Tzin) [2049436]
+- net/mlx5: CT: Allow static allocation of mod headers (Amir Tzin) [2049436]
+- net/mlx5e: Refactor mod header management API (Amir Tzin) [2049436]
+- net/mlx5: Avoid printing health buffer when firmware is unavailable (Amir Tzin) [2049436 2049717]
+- net/mlx5e: Support ethtool cq mode (Amir Tzin) [2049436 2049840]
+- Revert "RDMA/mlx5: Fix releasing unallocated memory in dereg MR flow" (Amir Tzin) [2049435]
+- net/mlx5: Use first online CPU instead of hard coded CPU (Amir Tzin) [2049435]
+- net/mlx5e: SHAMPO, Fix constant expression result (Amir Tzin) [2049435]
+- net/mlx5: Fix access to a non-supported register (Amir Tzin) [2049435 2049717]
+- net/mlx5: Fix too early queueing of log timestamp work (Amir Tzin) [2049435 2049717]
+- net/mlx5: Fix use after free in mlx5_health_wait_pci_up (Amir Tzin) [2049435]
+- net/mlx5: Lag, Fix recreation of VF LAG (Amir Tzin) [2049435]
+- net/mlx5e: Sync TIR params updates against concurrent create/modify (Amir Tzin) [2049435]
+- RDMA/mlx5: Fix releasing unallocated memory in dereg MR flow (Amir Tzin) [2049435]
+- net/mlx5: Fix flow counters SF bulk query len (Amir Tzin) [2049435]
+- net/mlx5: Lag, fix a potential Oops with mlx5_lag_create_definer() (Amir Tzin) [2049435]
+- net/mlx5e: Prevent HW-GRO and CQE-COMPRESS features operate together (Amir Tzin) [2049435]
+- net/mlx5e: Add HW-GRO offload (Amir Tzin) [2049435]
+- net/mlx5e: Add HW_GRO statistics (Amir Tzin) [2049435]
+- net/mlx5e: HW_GRO cqe handler implementation (Amir Tzin) [2049435]
+- net/mlx5e: Add data path for SHAMPO feature (Amir Tzin) [2049435]
+- net/mlx5e: Add handle SHAMPO cqe support (Amir Tzin) [2049435]
+- net/mlx5e: Add control path for SHAMPO feature (Amir Tzin) [2049435]
+- net/mlx5e: Add support to klm_umr_wqe (Amir Tzin) [2049435]
+- net/mlx5e: Rename TIR lro functions to TIR packet merge functions (Amir Tzin) [2049435]
+- net/mlx5e: Align mlx5e_resources with upstream code. (Amir Tzin) [2049435]
+- net/mlx5: Add SHAMPO caps, HW bits and enumerations (Amir Tzin) [2049435]
+- net/mlx5e: Rename lro_timeout to packet_merge_timeout (Amir Tzin) [2049435]
+- net/mlx5: SF_DEV Add SF device trace points (Amir Tzin) [2049435]
+- net/mlx5: SF, Add SF trace points (Amir Tzin) [2049435]
+- net/mlx5: Bridge, support replacing existing FDB entry (Amir Tzin) [2049435]
+- net/mlx5: Bridge, extract code to lookup and del/notify entry (Amir Tzin) [2049435]
+- net/mlx5: Add periodic update of host time to firmware (Amir Tzin) [2049435 2049717]
+- net/mlx5: Print health buffer by log level (Amir Tzin) [2049435 2049717]
+- net/mlx5: Extend health buffer dump (Amir Tzin) [2049435 2049717]
+- net/mlx5: Reduce flow counters bulk query buffer size for SFs (Amir Tzin) [2049435]
+- net/mlx5: Fix unused function warning of mlx5i_flow_type_mask (Amir Tzin) [2049435]
+- net/mlx5: Remove unnecessary checks for slow path flag (Amir Tzin) [2049435]
+- net/mlx5e: don't write directly to netdev->dev_addr (Amir Tzin) [2049435]
+- RDMA/mlx5: Use dev_addr_mod() (Amir Tzin) [2049435]
+- RDMA/mlx5: fix build error with INFINIBAND_USER_ACCESS=n (Amir Tzin) [2049435]
+- RDMA/mlx5: Attach ndescs to mlx5_ib_mkey (Amir Tzin) [2049435]
+- RDMA/mlx5: Move struct mlx5_core_mkey to mlx5_ib (Amir Tzin) [2049435]
+- RDMA/mlx5: Replace struct mlx5_core_mkey by u32 key (Amir Tzin) [2049435]
+- RDMA/mlx5: Align mlx5e_resources with upstream code. (Amir Tzin) [2049435]
+- RDMA/mlx5: Remove pd from struct mlx5_core_mkey (Amir Tzin) [2049435]
+- RDMA/mlx5: Remove size from struct mlx5_core_mkey (Amir Tzin) [2049435]
+- RDMA/mlx5: Remove iova from struct mlx5_core_mkey (Amir Tzin) [2049435]
+- net/mlx5: E-Switch, Increase supported number of forward destinations to 32 (Amir Tzin) [2049435]
+- net/mlx5: E-Switch, Use dynamic alloc for dest array (Amir Tzin) [2049435]
+- net/mlx5: Lag, use steering to select the affinity port in LAG (Amir Tzin) [2049435]
+- net/mlx5: Lag, add support to create/destroy/modify port selection (Amir Tzin) [2049435]
+- net/mlx5: Lag, add support to create TTC tables for LAG port selection (Amir Tzin) [2049435]
+- net/mlx5: Lag, add support to create definers for LAG (Amir Tzin) [2049435]
+- net/mlx5: Lag, set match mask according to the traffic type bitmap (Amir Tzin) [2049435]
+- net/mlx5: Lag, set LAG traffic type mapping (Amir Tzin) [2049435]
+- net/mlx5: Lag, move lag files into directory (Amir Tzin) [2049435]
+- net/mlx5: Introduce new uplink destination type (Amir Tzin) [2049435]
+- net/mlx5: Add support to create match definer (Amir Tzin) [2049435]
+- net/mlx5: Introduce port selection namespace (Amir Tzin) [2049435]
+- net/mlx5: Support partial TTC rules (Amir Tzin) [2049435]
+- mlx5: prevent 64bit divide (Amir Tzin) [2049435]
+- net/mlx5: Use system_image_guid to determine bonding (Amir Tzin) [2049435]
+- net/mlx5: Use native_port_num as 1st option of device index (Amir Tzin) [2049435]
+- net/mlx5: Introduce new device index wrapper (Amir Tzin) [2049435]
+- net/mlx5: Check return status first when querying system_image_guid (Amir Tzin) [2049435]
+- net/mlx5: DR, Prefer kcalloc over open coded arithmetic (Amir Tzin) [2049435]
+- net/mlx5e: Add extack msgs related to TC for better debug (Amir Tzin) [2049435]
+- net/mlx5: CT: Fix missing cleanup of ct nat table on init failure (Amir Tzin) [2049435]
+- Revert "net/mlx5e: TC, Skip redundant ct clear actions" (Amir Tzin) [2049435]
+- net/mlx5: Disable roce at HCA level (Amir Tzin) [2049435]
+- net/mlx5i: Enable Rx steering for IPoIB via ethtool (Amir Tzin) [2049435]
+- net/mlx5: Bridge, provide flow source hints (Amir Tzin) [2049435]
+- net/mlx5: Read timeout values from DTOR (Amir Tzin) [2049435]
+- net/mlx5: Read timeout values from init segment (Amir Tzin) [2049435]
+- net/mlx5: Add layout to support default timeouts register (Amir Tzin) [2049435]
+- net/mlx5: Set devlink reload feature bit for supported devices only (Amir Tzin) [2049435]
+- RDMA/mlx5: Add optional counter support in get_hw_stats callback (Amir Tzin) [2049435]
+- RDMA/mlx5: Add modify_op_stat() support (Amir Tzin) [2049435]
+- RDMA/mlx5: Add steering support in optional flow counters (Amir Tzin) [2049435]
+- RDMA/mlx5: Support optional counters in hw_stats initialization (Amir Tzin) [2049435]
+- net/mlx5: Add priorities for counters in RDMA namespaces (Amir Tzin) [2049435]
+- net/mlx5: Add ifc bits to support optional counters (Amir Tzin) [2049435]
+- net/mlx5: Enable single IRQ for PCI Function (Amir Tzin) [2049435]
+- net/mlx5: Shift control IRQ to the last index (Amir Tzin) [2049435]
+- net/mlx5: Bridge, pop VLAN on egress table miss (Amir Tzin) [2049435]
+- net/mlx5: Bridge, mark reg_c1 when pushing VLAN (Amir Tzin) [2049435]
+- net/mlx5: Bridge, extract VLAN pop code to dedicated functions (Amir Tzin) [2049435]
+- net/mlx5: Bridge, refactor eswitch instance usage (Amir Tzin) [2049435]
+- net/mlx5e: Support accept action (Amir Tzin) [2049435]
+- net/mlx5e: Specify out ifindex when looking up encap route (Amir Tzin) [2049435]
+- net/mlx5e: Reserve a value from TC tunnel options mapping (Amir Tzin) [2049435]
+- net/mlx5e: Move parse fdb check into actions_match_supported_fdb() (Amir Tzin) [2049435]
+- net/mlx5e: Split actions_match_supported() into a sub function (Amir Tzin) [2049435]
+- net/mlx5e: Move mod hdr allocation to a single place (Amir Tzin) [2049435]
+- net/mlx5e: TC, Refactor sample offload error flow (Amir Tzin) [2049435]
+- RDMA/mlx5: Avoid taking MRs from larger MR cache pools when a pool is empty (Amir Tzin) [2049435]
+- IB/mlx5: Flow through a more detailed return code from get_prefetchable_mr() (Amir Tzin) [2049435]
+- net/mlx5e: Use array_size() helper (Amir Tzin) [2049435]
+- net/mlx5: Use struct_size() helper in kvzalloc() (Amir Tzin) [2049435]
+- net/mlx5: Use kvcalloc() instead of kvzalloc() (Amir Tzin) [2049435]
+- net/mlx5: Tolerate failures in debug features while driver load (Amir Tzin) [2049435]
+- IB/mlx5: Enable UAR to have DevX UID (Amir Tzin) [2049435]
+- net/mlx5: Add uid field to UAR allocation structures (Amir Tzin) [2049435]
+- net/mlx5e: check return value of rhashtable_init (Amir Tzin) [2049435]
+- net/mlx5e: Enable TC offload for ingress MACVLAN (Amir Tzin) [2049435]
+- net/mlx5e: Enable TC offload for egress MACVLAN (Amir Tzin) [2049435]
+- net/mlx5e: loopback test is not supported in switchdev mode (Amir Tzin) [2049435]
+- net/mlx5e: Use NL_SET_ERR_MSG_MOD() for errors parsing tunnel attributes (Amir Tzin) [2049435]
+- net/mlx5e: Use tc sample stubs instead of ifdefs in source file (Amir Tzin) [2049435]
+- net/mlx5e: Remove redundant priv arg from parse_pedit_to_reformat() (Amir Tzin) [2049435]
+- net/mlx5e: Check action fwd/drop flag exists also for nic flows (Amir Tzin) [2049435]
+- net/mlx5e: Set action fwd flag when parsing tc action goto (Amir Tzin) [2049435]
+- net/mlx5e: Remove incorrect addition of action fwd flag (Amir Tzin) [2049435]
+- Revert "net/mlx5e: TC, Fix ct_clear overwriting ct action metadata" (Amir Tzin) [2049435]
+- net/mlx5e: Use correct return type (Amir Tzin) [2049435]
+- net/mlx5e: Add error flow for ethtool -X command (Amir Tzin) [2049435]
+- net/mlx5: Fix rdma aux device on devlink reload (Amir Tzin) [2049434]
+- RDMA/mlx5: Relax DCS QP creation checks (Amir Tzin) [2049434]
+- net/mellanox: switch from 'pci_' to 'dma_' API (Amir Tzin) [2049434]
+- net/mlx5e: Make use of netdev_warn() (Amir Tzin) [2049434]
+- net/mlx5: Initialize numa node for all core devices (Amir Tzin) [2049434]
+- net/mlx5: Allocate individual capability (Amir Tzin) [2049434]
+- net/mlx5: Reorganize current and maximal capabilities to be per-type (Amir Tzin) [2049434]
+- net/mlx5: SF, use recent sysfs api (Amir Tzin) [2049434]
+- net/mlx5: Refcount mlx5_irq with integer (Amir Tzin) [2049434]
+- net/mlx5: Change SF missing dedicated MSI-X err message to dbg (Amir Tzin) [2049434]
+- net/mlx5: Align mlx5_irq structure (Amir Tzin) [2049434]
+- net/mlx5: Delete impossible dev->state checks (Amir Tzin) [2049434]
+- net/mlx5: Support enable_vnet devlink dev param (Amir Tzin) [2049434]
+- net/mlx5: Support enable_rdma devlink dev param (Amir Tzin) [2049434]
+- net/mlx5: Support enable_eth devlink dev param (Amir Tzin) [2049434]
+- RDMA/mlx5: Drop in-driver verbs object creations (Amir Tzin) [2049434]
+- RDMA/mlx5: Delete device resource mutex that didn't protect anything (Amir Tzin) [2049434]
+- RDMA/mlx5: Cancel pkey work before destroying device resources (Amir Tzin) [2049434]
+- net/mlx5e: Return -EOPNOTSUPP if more relevant when parsing tc actions (Amir Tzin) [2049434]
+- net/mlx5e: Remove redundant assignment of counter to null (Amir Tzin) [2049434]
+- net/mlx5e: Remove redundant parse_attr arg (Amir Tzin) [2049434]
+- net/mlx5e: Remove redundant cap check for flow counter (Amir Tzin) [2049434]
+- net/mlx5e: Remove redundant filter_dev arg from parse_tc_fdb_actions() (Amir Tzin) [2049434]
+- net/mlx5e: Remove redundant tc act includes (Amir Tzin) [2049434]
+- IB/mlx5: Rename is_apu_thread_cq function to is_apu_cq (Amir Tzin) [2049434]
+- RDMA/mlx5: Add DCS offload support (Amir Tzin) [2049434]
+- RDMA/mlx5: Separate DCI QP creation logic (Amir Tzin) [2049434]
+- net/mlx5: Add DCS caps & fields support (Amir Tzin) [2049434]
+- KVM: nVMX: Inject #UD if VMXON is attempted with incompatible CR0/CR4 (Vitaly Kuznetsov) [2119233]
+- mm: Fix PASID use-after-free issue (Jerry Snitselaar) [2113046]
+- scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Fix a typo (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Assign boolean values to a bool variable (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Fix fall-through warnings for Clang (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Fix spelling mistake "couldnt" -> "couldn't" (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Add missing description for csio_rnode_fwevt_handler()'s 'fwevt' param (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Remove 2 unused variables {mc,edc}_bist_status_rdata_reg (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Demote kerneldoc that fails to meet the criteria (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Fix misnamed function parameter (Rahul Lakkireddy) [2105815]
+- scsi: csiostor: Adjust indentation in csio_device_reset (Rahul Lakkireddy) [2105815]
+- mediatek: mt76: eeprom: fix missing of_node_put() in mt76_find_power_limits_node() (Jose Ignacio Tornos Martinez) [2103625]
+- wifi: mac80211: consider EHT element size in assoc request (Jose Ignacio Tornos Martinez) [2103625]
+- wifi: mac80211: switch airtime fairness back to deficit round-robin scheduling (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7615: fix throughput regression on DFS channels (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7915: fix incorrect testmode ipg on band 1 caused by wmm_idx (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7921: enlarge maximum VHT MPDU length to 11454 (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7921: fix aggregation subframes setting to HE max (Jose Ignacio Tornos Martinez) [2103625]
+- wifi: mac80211_hwsim: set virtio device ready in probe() (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7921s: fix possible sdio deadlock in command fail (Jose Ignacio Tornos Martinez) [2103625]
+- wifi: rtw89: 8852a: rfk: fix div 0 exception (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7921: do not update pm states in case of error (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7615: do not update pm stats in case of error (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: Avoid REO CMD failed prints during firmware recovery (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: Fix incorrect debug_mask mappings (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: fix missing skb drop on htc_tx_completion error (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7921s: fix firmware download random fail (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: fix IRQ affinity warning on shutdown (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: fix netdev open race (Jose Ignacio Tornos Martinez) [2103625]
+- iwlwifi: fw: init SAR GEO table only if data is present (Jose Ignacio Tornos Martinez) [2103625]
+- ath10k: htt_tx: do not interpret Eth frames as WiFi (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: Don't check arvif->is_started before sending management frames (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7915: fix twt table_mask to u16 in mt7915_dev (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: reset 11d state in process of recovery (Jose Ignacio Tornos Martinez) [2103625]
+- brcmfmac: use ISO3166 country code and 0 rev as fallback on brcmfmac43602 chips (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: fix tx status related use-after-free race on station removal (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: do not attempt to reorder received 802.3 packets without agg session (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7921: fix kernel crash at mt7921_pci_remove (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: fix antenna config missing in 6G cap (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7915: report rx mode value in mt7915_mac_fill_rx_rate (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7915: do not pass data pointer to mt7915_mcu_muru_debug_set (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7915: fix possible NULL pointer dereference in mt7915_mac_fill_rx_vector (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7915: fix possible uninitialized pointer dereference in mt7986_wmac_gpio_setup (Jose Ignacio Tornos Martinez) [2103625]
+- ath10k: enable napi on RX path for usb (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: fix the warning of dev_wake in mhi_pm_disable_transition() (Jose Ignacio Tornos Martinez) [2103625]
+- ath11k: acquire ab->base_lock in unassign when finding the peer by addr (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7915: fix unbounded shift in mt7915_mcu_beacon_mbss (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7915: fix DBDC default band selection on MT7915D (Jose Ignacio Tornos Martinez) [2103625]
+- mt76: mt7921: honor pm user configuration in mt7921_sniffer_interface_iter (Jose Ignacio Tornos Martinez) [2103625]
+- i40e: Fix tunnel checksum offload with fragmented traffic (Ivan Vecera) [2107977]
+- net/mlx5e: Fix matchall police parameters validation (Ivan Vecera) [2106271]
+- net/sched: act_police: allow 'continue' action offload (Ivan Vecera) [2106271]
+- net: Print hashed skb addresses for all net and qdisc events (Ivan Vecera) [2106271]
+- net: sched: fixed barrier to prevent skbuff sticking in qdisc backlog (Ivan Vecera) [2106271]
+- net/sched: act_pedit: sanitize shift argument before usage (Ivan Vecera) [2106271]
+- net/sched: act_pedit: really ensure the skb is writable (Ivan Vecera) [2106271]
+- net/sched: taprio: Check if socket flags are valid (Ivan Vecera) [2106271]
+- net/sched: flower: Avoid overwriting error messages (Ivan Vecera) [2106271]
+- net/sched: matchall: Avoid overwriting error messages (Ivan Vecera) [2106271]
+- net/sched: cls_api: Add extack message for unsupported action offload (Ivan Vecera) [2106271]
+- net/sched: act_vlan: Add extack message for offload failure (Ivan Vecera) [2106271]
+- net/sched: act_tunnel_key: Add extack message for offload failure (Ivan Vecera) [2106271]
+- net/sched: act_skbedit: Add extack messages for offload failure (Ivan Vecera) [2106271]
+- net/sched: act_police: Add extack messages for offload failure (Ivan Vecera) [2106271]
+- net/sched: act_pedit: Add extack message for offload failure (Ivan Vecera) [2106271]
+- net/sched: act_mpls: Add extack messages for offload failure (Ivan Vecera) [2106271]
+- net/sched: act_mirred: Add extack message for offload failure (Ivan Vecera) [2106271]
+- net/sched: act_gact: Add extack messages for offload failure (Ivan Vecera) [2106271]
+- net/sched: act_api: Add extack to offload_act_setup() callback (Ivan Vecera) [2106271]
+- net/sched: flower: Take verbose flag into account when logging error messages (Ivan Vecera) [2106271]
+- net/sched: matchall: Take verbose flag into account when logging error messages (Ivan Vecera) [2106271]
+- net/sched: fix incorrect vlan_push_eth dest field (Ivan Vecera) [2106271]
+- net/sched: add vlan push_eth and pop_eth action to the hardware IR (Ivan Vecera) [2106271]
+- selftests: tc-testing: Increase timeout in tdc config file (Ivan Vecera) [2106271]
+- flow_offload: improve extack msg for user when adding invalid filter (Ivan Vecera) [2106271]
+- flow_offload: reject offload for all drivers with invalid police parameters (Ivan Vecera) [2106271]
+- net: flow_offload: add tc police action parameters (Ivan Vecera) [2106271]
+- net: sched: avoid newline at end of message in NL_SET_ERR_MSG_MOD (Ivan Vecera) [2106271]
+- net_sched: add __rcu annotation to netdev->qdisc (Ivan Vecera) [2106271]
+- net/sched: act_police: more accurate MTU policing (Ivan Vecera) [2106271]
+- net/sched: Enable tc skb ext allocation on chain miss only when needed (Ivan Vecera) [2106271]
+- net: sched: remove qdisc_qlen_cpu() (Ivan Vecera) [2106271]
+- net: sched: remove psched_tdiff_bounded() (Ivan Vecera) [2106271]
+- net: sched: Clarify error message when qdisc kind is unknown (Ivan Vecera) [2106271]
+- sch_cake: revise Diffserv docs (Ivan Vecera) [2106271]
+- flow_offload: fix suspicious RCU usage when offloading tc action (Ivan Vecera) [2106271]
+- net/sched: use min() macro instead of doing it manually (Ivan Vecera) [2106271]
+- selftests: tc-testing: add action offload selftest for action and filter (Ivan Vecera) [2106271]
+- flow_offload: validate flags of filter and actions (Ivan Vecera) [2106271]
+- flow_offload: add reoffload process to update hw_count (Ivan Vecera) [2106271]
+- net: sched: save full flags for tc action (Ivan Vecera) [2106271]
+- flow_offload: add process to update action stats from hardware (Ivan Vecera) [2106271]
+- flow_offload: rename exts stats update functions with hw (Ivan Vecera) [2106271]
+- flow_offload: add skip_hw and skip_sw to control if offload the action (Ivan Vecera) [2106271]
+- flow_offload: allow user to offload tc action to net device (Ivan Vecera) [2106271]
+- flow_offload: add ops to tc_action_ops for flow action setup (Ivan Vecera) [2106271]
+- flow_offload: rename offload functions with offload instead of flow (Ivan Vecera) [2106271]
+- flow_offload: add index to flow_action_entry structure (Ivan Vecera) [2106271]
+- flow_offload: reject to offload tc actions in offload drivers (Ivan Vecera) [2106271]
+- flow_offload: fill flags to action structure (Ivan Vecera) [2106271]
+- sch_cake: do not call cake_destroy() from cake_init() (Ivan Vecera) [2106271]
+- net/sched: fq_pie: prevent dismantle issue (Ivan Vecera) [2106271]
+- selftests/tc-testing: Fix cannot create /sys/bus/netdevsim/new_device: Directory nonexistent (Ivan Vecera) [2106271]
+- selftests/tc-testing: add missing config (Ivan Vecera) [2106271]
+- selftests/tc-testing: add exit code (Ivan Vecera) [2106271]
+- net/sched: act_ct: Offload only ASSURED connections (Ivan Vecera) [2106271]
+- selftests/tc-testings: Be compatible with newer tc output (Ivan Vecera) [2106271]
+- selftests: forwarding: Fix packet matching in mirroring selftests (Ivan Vecera) [2106271]
+- net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any (Ivan Vecera) [2106271]
+- cls_flower: Fix inability to match GRE/IPIP packets (Ivan Vecera) [2106271]
+- sch_htb: Add extack messages for EOPNOTSUPP errors (Ivan Vecera) [2106271]
+- net: sch: simplify condtion for selecting mini_Qdisc_pair buffer (Ivan Vecera) [2106271]
+- net: sch: eliminate unnecessary RCU waits in mini_qdisc_pair_swap() (Ivan Vecera) [2106271]
+- net: sched: gred: dynamically allocate tc_gred_qopt_offload (Ivan Vecera) [2106271]
+- net: stats: Read the statistics in ___gnet_stats_copy_basic() instead of adding. (Ivan Vecera) [2106271]
+- net: sched: Allow statistics reads from softirq. (Ivan Vecera) [2106271]
+- net: sched: remove one pair of atomic operations (Ivan Vecera) [2106271]
+- net: sched: fix logic error in qdisc_run_begin() (Ivan Vecera) [2106271]
+- net: sch_tbf: Add a graft command (Ivan Vecera) [2106271]
+- net: sched: Remove Qdisc::running sequence counter (Ivan Vecera) [2106271]
+- net: sched: Merge Qdisc::bstats and Qdisc::cpu_bstats data types (Ivan Vecera) [2106271]
+- net: sched: Use _bstats_update/set() instead of raw writes (Ivan Vecera) [2106271]
+- net: sched: Protect Qdisc::bstats with u64_stats (Ivan Vecera) [2106271]
+- u64_stats: Introduce u64_stats_set() (Ivan Vecera) [2106271]
+- gen_stats: Move remaining users to gnet_stats_add_queue(). (Ivan Vecera) [2106271]
+- mq, mqprio: Use gnet_stats_add_queue(). (Ivan Vecera) [2106271]
+- gen_stats: Add gnet_stats_add_queue(). (Ivan Vecera) [2106271]
+- gen_stats: Add instead Set the value in __gnet_stats_copy_basic(). (Ivan Vecera) [2106271]
+- testing: selftests: tc_common: Add tc_check_at_least_x_packets() (Ivan Vecera) [2106271]
+- testing: selftests: forwarding.config.sample: Add tc flag (Ivan Vecera) [2106271]
+- net/sched: sch_taprio: properly cancel timer from taprio_destroy() (Ivan Vecera) [2106271]
+- net: sched: Use struct_size() helper in kvmalloc() (Ivan Vecera) [2106271]
+- net_sched: Use struct_size() and flex_array_size() helpers (Ivan Vecera) [2106271]
+- net: prevent user from passing illegal stab size (Ivan Vecera) [2106271]
+- net: sched: move and reuse mq_change_real_num_tx() (Ivan Vecera) [2106271]
+- selftests: net: test ethtool -L vs mq (Ivan Vecera) [2106271]
+- netdevsim: add ability to change channel count (Ivan Vecera) [2106271]
+- net: add netif_set_real_num_queues() for device reconfig (Ivan Vecera) [2106271]
+- net: sched: update default qdisc visibility after Tx queue cnt changes (Ivan Vecera) [2106271]
+- fix array-index-out-of-bounds in taprio_change (Ivan Vecera) [2106271]
+- Revert "flow_offload: action should not be NULL when it is referenced" (Ivan Vecera) [2106271]
+- sch_cake: fix srchost/dsthost hashing mode (Ivan Vecera) [2106271]
+- net/sched: cls_api, reset flags on replay (Ivan Vecera) [2106271]
+- net: sched: provide missing kdoc for tcf_pkt_info and tcf_ematch_ops (Ivan Vecera) [2106271]
+- net: flow_offload: correct comments mismatch with code (Ivan Vecera) [2106271]
+- net/sched: taprio: Fix init procedure (Ivan Vecera) [2106271]
+- net_sched: refactor TC action init API (Ivan Vecera) [2106271]
+- tc-testing: Add control-plane selftest for skbmod SKBMOD_F_ECN option (Ivan Vecera) [2106271]
+- net/sched: act_skbmod: Add SKBMOD_F_ECN option support (Ivan Vecera) [2106271]
+- qdisc: add new field for qdisc_enqueue tracepoint (Ivan Vecera) [2106271]
+- net/sched: act_skbmod: Skip non-Ethernet packets (Ivan Vecera) [2106271]
+- net/sched: Remove unnecessary if statement (Ivan Vecera) [2106271]
+- net_sched: introduce tracepoint trace_qdisc_enqueue() (Ivan Vecera) [2106271]
+- net_sched: use px to print skb address in trace_qdisc_dequeue() (Ivan Vecera) [2106271]
+- net: use px to print skb address in trace_netif_receive_skb (Ivan Vecera) [2106271]
+- net/sched: sch_taprio: fix typo in comment (Ivan Vecera) [2106271]
+- flow_offload: action should not be NULL when it is referenced (Ivan Vecera) [2106271]
+- net: sched: remove qdisc->empty for lockless qdisc (Ivan Vecera) [2106271]
+- net: sched: implement TCQ_F_CAN_BYPASS for lockless qdisc (Ivan Vecera) [2106271]
+- net: sched: avoid unnecessary seqcount operation for lockless qdisc (Ivan Vecera) [2106271]
+- Revert "net/sched: cls_flower: Remove match on n_proto" (Ivan Vecera) [2106271]
+- net: sched: add barrier to ensure correct ordering for lockless qdisc (Ivan Vecera) [2106271]
+- net: sched: fix error return code in tcf_del_walker() (Ivan Vecera) [2106271]
+- net/sched: cls_flower: Remove match on n_proto (Ivan Vecera) [2106271]
+- sch_cake: revise docs for RFC 8622 LE PHB support (Ivan Vecera) [2106271]
+- sch_cake: Fix out of bounds when parsing TCP options and header (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_lookup_leaf() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_do_events() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_charge_class() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_deactivate() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_activate() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_change_class_mode() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_class_mode() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_deactivate_prios() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_activate_prios() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_remove_class_from_row() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_add_class_to_row() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_next_rb_node() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_add_to_wait_tree() (Ivan Vecera) [2106271]
+- sch_htb: fix doc warning in htb_add_to_id_tree() (Ivan Vecera) [2106271]
+- net/sched: act_vlan: Test priority 0 modification (Ivan Vecera) [2106271]
+- net/sched: act_vlan: No dump for unset priority (Ivan Vecera) [2106271]
+- net: sched: Fix spelling mistakes (Ivan Vecera) [2106271]
+- net/sched: fq_pie: fix OOB access in the traffic path (Ivan Vecera) [2106271]
+- net/sched: fq_pie: re-factor fix for fq_pie endless loop (Ivan Vecera) [2106271]
+- net: taprio offload: enforce qdisc to netdev queue mapping (Ivan Vecera) [2106271]
+- net/sched: taprio: Drop unnecessary NULL check after container_of (Ivan Vecera) [2106271]
+- net: flow_offload: add FLOW_ACTION_PPPOE_PUSH (Ivan Vecera) [2106271]
+- gve: Recording rx queue before sending to napi (Jordan Kimbrough) [2018609]
+- gve: fix the wrong AdminQ buffer queue index check (Jordan Kimbrough) [2018609]
+- gve: Fix GFP flags when allocing pages (Jordan Kimbrough) [2018609]
+- gve: Add tx|rx-coalesce-usec for DQO (Jordan Kimbrough) [2018609]
+- gve: Add consumed counts to ethtool stats (Jordan Kimbrough) [2018609]
+- gve: Implement suspend/resume/shutdown (Jordan Kimbrough) [2018609]
+- gve: Add optional metadata descriptor type GVE_TXD_MTD (Jordan Kimbrough) [2018609]
+- gve: remove memory barrier around seqno (Jordan Kimbrough) [2018609]
+- gve: Update gve_free_queue_page_list signature (Jordan Kimbrough) [2018609]
+- gve: Move the irq db indexes out of the ntfy block struct (Jordan Kimbrough) [2018609]
+- gve: Correct order of processing device options (Jordan Kimbrough) [2018609]
+- gve: fix for null pointer dereference. (Jordan Kimbrough) [2018609]
+- gve: fix unmatched u64_stats_update_end() (Jordan Kimbrough) [2018609]
+- gve: Fix off by one in gve_tx_timeout() (Jordan Kimbrough) [2018609]
+- gve: Add a jumbo-frame device option. (Jordan Kimbrough) [2018609]
+- gve: Implement packet continuation for RX. (Jordan Kimbrough) [2018609]
+- gve: Add RX context. (Jordan Kimbrough) [2018609]
+- gve: Track RX buffer allocation failures (Jordan Kimbrough) [2018609]
+- gve: Allow pageflips on larger pages (Jordan Kimbrough) [2018609]
+- gve: Add netif_set_xps_queue call (Jordan Kimbrough) [2018609]
+- gve: Recover from queue stall due to missed IRQ (Jordan Kimbrough) [2018609]
+- gve: Do lazy cleanup in TX path (Jordan Kimbrough) [2018609]
+- gve: Add rx buffer pagecnt bias (Jordan Kimbrough) [2018609]
+- gve: Switch to use napi_complete_done (Jordan Kimbrough) [2018609]
+- gve: report 64bit tx_bytes counter from gve_handle_report_stats() (Jordan Kimbrough) [2018609]
+- gve: fix gve_get_stats() (Jordan Kimbrough) [2018609]
+- gve: Properly handle errors in gve_assign_qpl (Jordan Kimbrough) [2018609]
+- gve: Avoid freeing NULL pointer (Jordan Kimbrough) [2018609]
+- gve: Correct available tx qpl check (Jordan Kimbrough) [2018609]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Jordan Kimbrough) [2018609]
+- gve: Use kvcalloc() instead of kvzalloc() (Jordan Kimbrough) [2018609]
+- gve: DQO: avoid unused variable warnings (Jordan Kimbrough) [2018609]
+- gve: fix the wrong AdminQ buffer overflow check (Jordan Kimbrough) [2018609]
+- gve: DQO: Remove incorrect prefetch (Jordan Kimbrough) [2018609]
+- gve: Simplify code and axe the use of a deprecated API (Jordan Kimbrough) [2018609]
+- gve: Propagate error codes to caller (Jordan Kimbrough) [2018609]
+- gve: Fix an error handling path in 'gve_probe()' (Jordan Kimbrough) [2018609]
+- gve: DQO: Fix off by one in gve_rx_dqo() (Jordan Kimbrough) [2018609]
+- gve: Fix swapped vars when fetching max queues (Jordan Kimbrough) [2018609]
+- gve: Fix warnings reported for DQO patchset (Jordan Kimbrough) [2018609]
+- gve: DQO: Add RX path (Jordan Kimbrough) [2018609]
+- gve: DQO: Add TX path (Jordan Kimbrough) [2018609]
+- gve: DQO: Configure interrupts on device up (Jordan Kimbrough) [2018609]
+- gve: DQO: Add ring allocation and initialization (Jordan Kimbrough) [2018609]
+- gve: DQO: Add core netdev features (Jordan Kimbrough) [2018609]
+- gve: Update adminq commands to support DQO queues (Jordan Kimbrough) [2018609]
+- gve: Add DQO fields for core data structures (Jordan Kimbrough) [2018609]
+- gve: Add dqo descriptors (Jordan Kimbrough) [2018609]
+- gve: Add support for DQO RX PTYPE map (Jordan Kimbrough) [2018609]
+- gve: adminq: DQO specific device descriptor logic (Jordan Kimbrough) [2018609]
+- gve: Introduce per netdev `enum gve_queue_format` (Jordan Kimbrough) [2018609]
+- gve: Introduce a new model for device options (Jordan Kimbrough) [2018609]
+- gve: Make gve_rx_slot_page_info.page_offset an absolute offset (Jordan Kimbrough) [2018609]
+- gve: gve_rx_copy: Move padding to an argument (Jordan Kimbrough) [2018609]
+- gve: Move some static functions to a common file (Jordan Kimbrough) [2018609]
+- gve: Correct SKB queue index validation. (Jordan Kimbrough) [2018609]
+- gve: Upgrade memory barrier in poll routine (Jordan Kimbrough) [2018609]
+- gve: Add NULL pointer checks when freeing irqs. (Jordan Kimbrough) [2018609]
+- gve: Update mgmt_msix_idx if num_ntfy changes (Jordan Kimbrough) [2018609]
+- gve: Check TX QPL was actually assigned (Jordan Kimbrough) [2018609]
+- net: gve: remove duplicated allowed (Jordan Kimbrough) [2018609]
+- net: gve: convert strlcpy to strscpy (Jordan Kimbrough) [2018609]
+- gve: Add support for raw addressing in the tx path (Jordan Kimbrough) [2018609]
+- gve: Rx Buffer Recycling (Jordan Kimbrough) [2018609]
+- gve: Add support for raw addressing to the rx path (Jordan Kimbrough) [2018609]
+- gve: Add support for raw addressing device option (Jordan Kimbrough) [2018609]
+- net: don't include ethtool.h from netdevice.h (Jordan Kimbrough) [2018609]
+- gve: Replace zero-length array with flexible-array member (Jordan Kimbrough) [2018609]
+- gve: Enable Link Speed Reporting in the driver. (Jordan Kimbrough) [2018609]
+- gve: Use link status register to report link status (Jordan Kimbrough) [2018609]
+- gve: Batch AQ commands for creating and destroying queues. (Jordan Kimbrough) [2018609]
+- gve: NIC stats for report-stats and for ethtool (Jordan Kimbrough) [2018609]
+- gve: Add Gvnic stats AQ command and ethtool show/set-priv-flags. (Jordan Kimbrough) [2018609]
+- gve: Use dev_info/err instead of netif_info/err. (Jordan Kimbrough) [2018609]
+- gve: Add stats for gve. (Jordan Kimbrough) [2018609]
+- gve: Get and set Rx copybreak via ethtool (Jordan Kimbrough) [2018609]
+- redhat: update ppc64le secureboot signing key (Jarod Wilson) [2109215]
+- tools: add cpupower daemon reload when installed/upgraded (Jarod Wilson) [2042424]
+- sfc: fix use after free when disabling sriov (Íñigo Huguet) [2105999]
+- drm/nouveau: recognise GA103 (Karol Herbst) [1923125]
+- drm/aperture: Run fbdev removal before internal helpers (Michel Dänzer) [2088410]
+- drm/i915/ttm: fix 32b build (Michel Dänzer) [2088410]
+- drm/amd/display: Ensure valid event timestamp for cursor-only commits (Michel Dänzer) [2088410]
+- drm/amd/pm: Prevent divide by zero (Michel Dänzer) [2088410]
+- drm/amd/display: Only use depth 36 bpp linebuffers on DCN display engines. (Michel Dänzer) [2088410]
+- drm/amdkfd: correct the MEC atomic support firmware checking for GC 10.3.7 (Michel Dänzer) [2088410]
+- drm/i915/selftests: fix subtraction overflow bug (Michel Dänzer) [2088410]
+- drm/i915/gt: Serialize TLB invalidates with GT resets (Michel Dänzer) [2088410]
+- drm/i915/gt: Serialize GRDOM access between multiple engine resets (Michel Dänzer) [2088410]
+- drm/i915/ttm: fix sg_table construction (Michel Dänzer) [2088410]
+- drm/i915/selftests: fix a couple IS_ERR() vs NULL tests (Michel Dänzer) [2088410]
+- drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() (Michel Dänzer) [2088410]
+- drm/i915/guc: ADL-N should use the same GuC FW as ADL-S (Michel Dänzer) [2088410]
+- drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector() (Michel Dänzer) [2088410]
+- drm/amdgpu/display: disable prefer_shadow for generic fb helpers (Michel Dänzer) [2088410]
+- drm/amdgpu: keep fbdev buffers pinned during suspend (Michel Dänzer) [2088410]
+- drm/fourcc: fix integer type usage in uapi header (Michel Dänzer) [2088410]
+- drm/i915/dgfx: Disable d3cold at gfx root port (Michel Dänzer) [2088410]
+- drm/i915/gem: add missing else (Michel Dänzer) [2088410]
+- drm/amdgpu: To flush tlb for MMHUB of RAVEN series (Michel Dänzer) [2088410]
+- Revert "drm/amdgpu/display: set vblank_disable_immediate for DC" (Michel Dänzer) [2088410]
+- drm/amdgpu: fix adev variable used in amdgpu_device_gpu_recover() (Michel Dänzer) [2088410]
+- drm/amd: Revert "drm/amd/display: keep eDP Vdd on when eDP stream is already enabled" (Michel Dänzer) [2088410]
+- udmabuf: add back sanity check (Michel Dänzer) [2088410]
+- drm/amd/display: Fix typo in override_lane_settings (Michel Dänzer) [2088410]
+- amd/display/dc: Fix COLOR_ENCODING and COLOR_RANGE doing nothing for DCN20+ (Michel Dänzer) [2088410]
+- drm/i915: Implement w/a 22010492432 for adl-s (Michel Dänzer) [2088410]
+- drm/i915/uc: remove accidental static from a local variable (Michel Dänzer) [2088410]
+- drm/amd/display: Cap OLED brightness per max frame-average luminance (Michel Dänzer) [2088410]
+- drm/amdgpu: Fix GTT size reporting in amdgpu_ioctl (Michel Dänzer) [2088410]
+- drm/i915/reset: Fix error_state_read ptr + offset use (Michel Dänzer) [2088410]
+- drm/amdkfd: add pinned BOs to kfd_bo_list (Michel Dänzer) [2088410]
+- drm/amdkfd: Use mmget_not_zero in MMU notifier (Michel Dänzer) [2088410]
+- drm/amdgpu: Resolve RAS GFX error count issue after cold boot on Arcturus (Michel Dänzer) [2088410]
+- drm/amd/display: Read Golden Settings Table from VBIOS (Michel Dänzer) [2088410]
+- Revert "drm/amd/display: Fix DCN3 B0 DP Alt Mapping" (Michel Dänzer) [2088410]
+- drm/amdgpu: update VCN codec support for Yellow Carp (Michel Dänzer) [2088410]
+- drm/amd/display: remove stale config guards (Michel Dänzer) [2088410]
+- drm/amdgpu/jpeg2: Add jpeg vmid update under IB submit (Michel Dänzer) [2088410]
+- drm/atomic: Force bridge self-refresh-exit on CRTC switch (Michel Dänzer) [2088410]
+- drm/bridge: analogix_dp: Support PSR-exit to disable transition (Michel Dänzer) [2088410]
+- drm/amdkfd:Fix fw version for 10.3.6 (Michel Dänzer) [2088410]
+- drm/amd/pm: use bitmap_{from,to}_arr32 where appropriate (Michel Dänzer) [2088410]
+- drm/amd/pm: correct the metrics version for SMU 11.0.11/12/13 (Michel Dänzer) [2088410]
+- drm/amd/pm: Fix missing thermal throttler status (Michel Dänzer) [2088410]
+- drm/amd/pm: fix a potential gpu_metrics_table memory leak (Michel Dänzer) [2088410]
+- drm/radeon: fix a possible null pointer dereference (Michel Dänzer) [2088410]
+- drm/amd/display: Check zero planes for OTG disable W/A on clock change (Michel Dänzer) [2088410]
+- drm/amd/display: Check if modulo is 0 before dividing. (Michel Dänzer) [2088410]
+- drm/amdgpu: fix limiting AV1 to the first instance on VCN3 (Michel Dänzer) [2088410]
+- drm/bridge: ti-sn65dsi83: Handle dsi_lanes == 0 as invalid (Michel Dänzer) [2088410]
+- drm/amdgpu: Off by one in dm_dmub_outbox1_low_irq() (Michel Dänzer) [2088410]
+- gma500: fix an incorrect NULL check on list iterator (Michel Dänzer) [2088410]
+- drm/i915/dsi: fix VBT send packet port selection for ICL+ (Michel Dänzer) [2088410]
+- drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX (Michel Dänzer) [2088410]
+- drm/nouveau/kms/nv50-: atom: fix an incorrect NULL check on list iterator (Michel Dänzer) [2088410]
+- drm/nouveau/clk: Fix an incorrect NULL check on list iterator (Michel Dänzer) [2088410]
+- drm/nouveau/subdev/bus: Ratelimit logging for fault errors (Michel Dänzer) [2088410]
+- drm/amdgpu/cs: make commands with 0 chunks illegal behaviour. (Michel Dänzer) [2088410]
+- drm/amdgpu: add beige goby PCI ID (Michel Dänzer) [2088410]
+- drm/i915: Fix CFI violation with show_dynamic_id() (Michel Dänzer) [2088410]
+- drm/bridge: it6505: Send DPCD SET_POWER to downstream (Michel Dänzer) [2088410]
+- drm/panel: panel-simple: Fix proper bpc for AM-1280800N3TZQW-T00H (Michel Dänzer) [2088410]
+- drm/panel: simple: Add missing bus flags for Innolux G070Y2-L01 (Michel Dänzer) [2088410]
+- drm/bridge: Fix it6505 Kconfig DRM_DP_AUX_BUS dependency (Michel Dänzer) [2088410]
+- drm/bridge: Fix error handling in analogix_dp_probe (Michel Dänzer) [2088410]
+- drm/bridge: anx7625: Use uint8 for lane-swing arrays (Michel Dänzer) [2088410]
+- drm/amd/amdgpu: Remove static from variable in RLCG Reg RW (Michel Dänzer) [2088410]
+- drm/amd/amdgpu: Fix asm/hypervisor.h build error. (Michel Dänzer) [2088410]
+- drm/amd/amdgpu: Only reserve vram for firmware with vega9 MS_HYPERV host. (Michel Dänzer) [2088410]
+- drm: bridge: icn6211: Fix HFP_HSW_HBP_HI and HFP_MIN handling (Michel Dänzer) [2088410]
+- drm: bridge: icn6211: Fix register layout (Michel Dänzer) [2088410]
+- drm/bridge: adv7511: clean up CEC adapter when probe fails (Michel Dänzer) [2088410]
+- drm/bridge: anx7625: add missing destroy_workqueue() in anx7625_i2c_probe() (Michel Dänzer) [2088410]
+- drm/edid: fix invalid EDID extension block filtering (Michel Dänzer) [2088410]
+- drm/bridge: it6505: Fix build error (Michel Dänzer) [2088410]
+- drm: bridge: it66121: Fix the register page length (Michel Dänzer) [2088410]
+- drm/vmwgfx: Fix an invalid read (Michel Dänzer) [2088410]
+- drm/ssd130x: Reduce temporary buffer sizes (Michel Dänzer) [2088410]
+- drm/ssd130x: Fix rectangle updates (Michel Dänzer) [2088410]
+- drm/format-helper: Fix XRGB888 to monochrome conversion (Michel Dänzer) [2088410]
+- drm/format-helper: Rename drm_fb_xrgb8888_to_mono_reversed() (Michel Dänzer) [2088410]
+- drm/solomon: Make DRM_SSD130X depends on MMU (Michel Dänzer) [2088410]
+- drm: ssd130x: Always apply segment remap setting (Michel Dänzer) [2088410]
+- drm: ssd130x: Fix COM scan direction register mask (Michel Dänzer) [2088410]
+- drm/bridge: anx7625: check the return on anx7625_aux_trans (Michel Dänzer) [2088410]
+- drm/selftests: missing error code in igt_buddy_alloc_smoke() (Michel Dänzer) [2088410]
+- drm/bridge_connector: enable HPD by default if supported (Michel Dänzer) [2088410]
+- drm: fix EDID struct for old ARM OABI format (Michel Dänzer) [2088410]
+- drm/amdgpu: Move mutex_init(&smu->message_lock) to smu_early_init() (Michel Dänzer) [2088410]
+- drm/amd/pm: update smartshift powerboost calc for smu13 (Michel Dänzer) [2088410]
+- drm/amd/pm: update smartshift powerboost calc for smu12 (Michel Dänzer) [2088410]
+- drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo (Michel Dänzer) [2088410]
+- drm/amdgpu/psp: move PSP memory alloc from hw_init to sw_init (Michel Dänzer) [2088410]
+- drm/amd/pm: fix the compile warning (Michel Dänzer) [2088410]
+- drm/amdkfd: Fix circular lock dependency warning (Michel Dänzer) [2088410]
+- drm/plane: Move range check for format_count earlier (Michel Dänzer) [2088410]
+- drm/amdgpu/sdma: Fix incorrect calculations of the wptr of the doorbells (Michel Dänzer) [2088410]
+- drm/amd/pm: fix double free in si_parse_power_table() (Michel Dänzer) [2088410]
+- drm/amdgpu/pm: fix the null pointer while the smu is disabled (Michel Dänzer) [2088410]
+- drm/amd/display: Disabling Z10 on DCN31 (Michel Dänzer) [2088410]
+- drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes (Michel Dänzer) [2088410]
+- drm/vmwgfx: validate the screen formats (Michel Dänzer) [2088410]
+- drm/selftests: fix a shift-out-of-bounds bug (Michel Dänzer) [2088410]
+- drm/i915: Fix -Wstringop-overflow warning in call to intel_read_wm_latency() (Michel Dänzer) [2088410]
+- selftests/xsk: Disable hanging BPF RES tests (Felix Maurer) [2116940]
+- NLM: Defend against file_lock changes after vfs_test_lock() (Benjamin Coddington) [2094884]
+- ice: Fix VF not able to send tagged traffic with no VLAN filters (Petr Oros) [2055446]
+- ice: Ignore error message when setting same promiscuous mode (Petr Oros) [2100683]
+- ice: Fix clearing of promisc mode with bridge over bond (Petr Oros) [2100683]
+- ice: Ignore EEXIST when setting promisc mode (Petr Oros) [2100683]
+- ice: Fix double VLAN error when entering promisc mode (Petr Oros) [2100683]
+
+* Fri Aug 19 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-420.el8]
+- fs: dlm: fix build with CONFIG_IPV6 disabled (Alexander Aring) [2036988]
+- fs: dlm: don't call kernel_getpeername() in error_report() (Alexander Aring) [2036988]
+- fs: dlm: use sk->sk_socket instead of con->sock (Alexander Aring) [2036988]
+- x86: intel_epb: Allow model specific normal EPB value (Prarit Bhargava) [2101488]
+- x86: intel_epb: Do not build when CONFIG_PM is unset (Prarit Bhargava) [2101488]
+- x86: intel_epb: Take CONFIG_PM into account (Prarit Bhargava) [2101488]
+- PM / arch: x86: MSR_IA32_ENERGY_PERF_BIAS sysfs interface (Prarit Bhargava) [2101488]
+- PM / arch: x86: Rework the MSR_IA32_ENERGY_PERF_BIAS handling (Prarit Bhargava) [2101488]
+- thermal: int340x: Add Raptor Lake PCI device id (Prarit Bhargava) [2064828]
+- thermal: int340x: Support Raptor Lake (Prarit Bhargava) [2064828]
+- nvme-fc: restart admin queue if the caller needs to restart queue (Ewan D. Milne) [2095693]
+- netfilter: nf_tables: replace BUG_ON by element length check (Florian Westphal) [2104497]
+- netfilter: nf_log: incorrect offset to network header (Florian Westphal) [2104497]
+- netfilter: nft_set_pipapo: release elements in clone from abort path (Florian Westphal) [2104497]
+- netfilter: nf_tables: stricter validation of element data (Florian Westphal) [2104497]
+- netfilter: nft_dynset: restore set element counter when failing to update (Florian Westphal) [2104497]
+- netfilter: use get_random_u32 instead of prandom (Florian Westphal) [2104497]
+- netfilter: nf_tables: memleak flow rule from commit path (Florian Westphal) [2104497]
+- netfilter: nf_tables: hold mutex on netns pre_exit path (Florian Westphal) [2104497]
+- netfilter: conntrack: re-fetch conntrack after insertion (Florian Westphal) [2104497]
+- netfilter: flowtable: fix excessive hw offload attempts after failure (Florian Westphal) [2104497]
+- netfilter: flowtable: avoid possible false sharing (Florian Westphal) [2104497]
+- netfilter: nf_nat_h323: eliminate anonymous module_init & module_exit (Florian Westphal) [2104497]
+- netfilter: ip6t_rt: fix rt0_hdr parsing in rt_mt6 (Florian Westphal) [2104497]
+- netfilter: socket: icmp6: fix use-after-scope (Florian Westphal) [2104497]
+- netfilter: nft_fib_ipv6: skip ipv6 packets from any to link-local (Florian Westphal) [2104497]
+- net/mlx5: Remove ConnectX-7 device from the unsupported devices (Kamal Heib) [1899567]
+- fs: dlm: change posix lock sigint handling (Alexander Aring) [2088499]
+- fs: dlm: use dlm_plock_info for do_unlock_close (Alexander Aring) [2088499]
+- fs: dlm: change plock interrupted message to debug again (Alexander Aring) [2088499]
+- fs: dlm: add pid to debug log (Alexander Aring) [2088499]
+- fs: dlm: plock use list_first_entry (Alexander Aring) [2088499]
+- dlm: replace usage of found with dedicated list iterator variable (Alexander Aring) [2088499]
+- dlm: move global to static inits (Alexander Aring) [2088499]
+- dlm: remove unnecessary INIT_LIST_HEAD() (Alexander Aring) [2088499]
+- dlm: improve plock logging if interrupted (Alexander Aring) [2088499]
+- dlm: rearrange async condition return (Alexander Aring) [2088499]
+- dlm: cleanup plock_op vs plock_xop (Alexander Aring) [2088499]
+- dlm: replace sanity checks with WARN_ON (Alexander Aring) [2088499]
+
+* Fri Aug 19 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-419.el8]
+- selftests: mptcp: make sendfile selftest work (Florian Westphal) [2109046]
+- selftests: mptcp: more stable simult_flows tests (Florian Westphal) [2109046]
+- be2net: Remove useless DMA-32 fallback configuration (Petr Oros) [2051324]
+- ethernet: constify references to netdev->dev_addr in drivers (Petr Oros) [2051324]
+- ethernet: Remove redundant 'flush_workqueue()' calls (Petr Oros) [2051324]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Petr Oros) [2051324]
+- ethernet: use eth_hw_addr_set() (Petr Oros) [2051324]
+- be2net: Use irq_update_affinity_hint() (Petr Oros) [2051324]
+- RedHat: ASoC: SOF: Intel: do not enable IMR boot when resuming by default (Jaroslav Kysela) [2114931]
+- ASoC: SOF: make ctx_store and ctx_restore as optional (Jaroslav Kysela) [2114931]
+- ASoC: SOF: ipc3-topology: Prevent double freeing of ipc_control_data via load_bytes (Jaroslav Kysela) [2114931]
+- ASoC: amd: yc: Update DMI table entries for AMD platforms (Jaroslav Kysela) [2114931]
+- ASoC: amd: yc: Update DMI table entries (Jaroslav Kysela) [2114931]
+- thunderbolt: Add DP OUT resource when DP tunnel is discovered (Torez Smith) [2107601]
+- iavf: Fix VLAN_V2 addition/rejection (Petr Oros) [2115618]
+- iavf: Fix deadlock in initialization (Petr Oros) [2054656]
+- qede: Reduce verbosity of ptp tx timestamp (Manish Chopra) [2080655]
+- dmaengine: idxd: Fixup merge conflict resolution from upstream (Jerry Snitselaar) [2100927]
+- dmaengine: idxd: skip clearing device context when device is read-only (Jerry Snitselaar) [2100927]
+- dmaengine: idxd: add RO check for wq max_transfer_size write (Jerry Snitselaar) [2100927]
+- dmaengine: idxd: add RO check for wq max_batch_size write (Jerry Snitselaar) [2100927]
+- dmaengine: idxd: fix device cleanup on disable (Jerry Snitselaar) [2100927]
+- Revert "dmaengine: idxd: Separate user and kernel pasid enabling" (Jerry Snitselaar) [2100927]
+- net: atlantic: always deep reset on pm op, fixing up my null deref regression (Foggy Liu) [2039680]
+- net: atlantic: invert deep par in pm functions, preventing null derefs (Foggy Liu) [2039680]
+- s390/ap: extend AP change bindings-complete uevent with counter (Mete Durlu) [2114907]
+- powerpc/memhotplug: Make lmb size 64bit (Diego Domingos) [2116517]
+- powerpc/drmem: Make lmb_size 64 bit (Diego Domingos) [2116517]
+- RHEL-only: tools: arm64: Use alternative.h header in sysreg.h (Eric Auger) [2118527]
+
+* Mon Aug 15 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-418.el8]
+- vmxnet3: do not reschedule napi for rx processing (Kamal Heib) [2117263]
+- lockdown: also lock down previous kgdb use (Lenny Szubowicz) [2104748] {CVE-2022-21499}
+- sfc: fix kernel panic when creating VF (Íñigo Huguet) [2114738]
+- net/mlx4_en: use kzalloc (Amir Tzin) [2049433]
+- net/mlx4: Delete useless moduleparam include (Amir Tzin) [2049433]
+- RDMA/mlx4: remove redundant assignment to variable nreq (Amir Tzin) [2049433]
+- RDMA/mlx4: Delete useless module.h include (Amir Tzin) [2049433]
+- RDMA/mlx4: Don't continue event handler after memory allocation failure (Amir Tzin) [2049433]
+- net/mlx4: Use irq_update_affinity_hint() (Amir Tzin) [2049433]
+- RDMA/mlx4: Use bitmap_alloc() when applicable (Amir Tzin) [2049433]
+- net/mlx4_en: Update reported link modes for 1/10G (Amir Tzin) [2049433]
+- ethernet: Remove redundant 'flush_workqueue()' calls (Amir Tzin) [2049433]
+- mlx4: constify args for const dev_addr (Amir Tzin) [2049433]
+- mlx4: remove custom dev_addr clearing (Amir Tzin) [2049433]
+- mlx4: replace mlx4_u64_to_mac() with u64_to_ether_addr() (Amir Tzin) [2049433]
+- mlx4: replace mlx4_mac_to_u64() with ether_addr_to_u64() (Amir Tzin) [2049433]
+- net/mlx4_en: avoid one cache line miss to ring doorbell (Amir Tzin) [2049433]
+- net/mlx4_en: Add XDP_REDIRECT statistics (Amir Tzin) [2049433]
+- net/mlx4: Use array_size() helper in copy_to_user() (Amir Tzin) [2049433]
+- net: mlx4: Add support for XDP_REDIRECT (Amir Tzin) [2049433]
+- net/mellanox: switch from 'pci_' to 'dma_' API (Amir Tzin) [2049433]
+- net/mlx4: Use ARRAY_SIZE to get an array's size (Amir Tzin) [2049433]
+- net/mlx4: make the array states static const, makes object smaller (Amir Tzin) [2049433]
+- dma-direct: use the correct size for dma_set_encrypted() (Jerry Snitselaar) [2105608]
+- dma-debug: make things less spammy under memory pressure (Jerry Snitselaar) [2105608]
+- dma-iommu: Check that swiotlb is active before trying to use it (Jerry Snitselaar) [2105608]
+- cpufreq: powernow-k8: Re-order the init checks (Mark Langsdorf) [2072974]
+- cpufreq: unify show() and store() naming and use __ATTR_XX (Mark Langsdorf) [2072974]
+- cpufreq: amd-pstate: Add more tracepoint for AMD P-State module (Mark Langsdorf) [2072974]
+- cpufreq: CPPC: Fix performance/frequency conversion (Mark Langsdorf) [2072974]
+- cpufreq: Move to_gov_attr_set() to cpufreq.h (Mark Langsdorf) [2072974]
+- cpufreq: use default_groups in kobj_type (Mark Langsdorf) [2072974]
+- cpufreq: Fix initialization of min and max frequency QoS requests (Mark Langsdorf) [2072974]
+- cpufreq: Fix a comment in cpufreq_policy_free (Mark Langsdorf) [2072974]
+- cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() (Mark Langsdorf) [2072974]
+- cpufreq: schedutil: Destroy mutex before kobject_put() frees the memory (Mark Langsdorf) [2072974]
+- cpufreq: sh: Remove sh_cpufreq_cpu_ready() (Mark Langsdorf) [2072974]
+- cpufreq: acpi: Remove acpi_cpufreq_cpu_ready() (Mark Langsdorf) [2072974]
+- cpufreq: Fix fall-through warning for Clang (Mark Langsdorf) [2072974]
+- cpufreq: Remove ->resolve_freq() (Mark Langsdorf) [2072974]
+- cpufreq: Reuse cpufreq_driver_resolve_freq() in __cpufreq_driver_target() (Mark Langsdorf) [2072974]
+- cpufreq: Remove the ->stop_cpu() driver callback (Mark Langsdorf) [2072974]
+- cpufreq: powernv: Migrate to ->exit() callback instead of ->stop_cpu() (Mark Langsdorf) [2072974]
+- cpufreq: Make cpufreq_online() call driver->offline() on errors (Mark Langsdorf) [2072974]
+- cpufreq: sh: Remove unused linux/sched.h headers (Mark Langsdorf) [2072974]
+- cpufreq: stats: Clean up local variable in cpufreq_stats_create_table() (Mark Langsdorf) [2072974]
+- cpufreq: Remove unused for_each_policy macro (Mark Langsdorf) [2072974]
+- cpufreq: Rudimentary typos fix in the file s5pv210-cpufreq.c (Mark Langsdorf) [2072974]
+- ACPI: CPPC: Fix enabling CPPC on AMD systems with shared memory (Mark Langsdorf) [2067296]
+- ACPI: CPPC: Don't require flexible address space if X86_FEATURE_CPPC is supported (Mark Langsdorf) [2067296]
+- ACPI: CPPC: Don't require _OSC if X86_FEATURE_CPPC is supported (Mark Langsdorf) [2067296]
+- x86/ACPI: CPPC: Rename cppc_msr.c to cppc.c (Mark Langsdorf) [2067296]
+- ACPI: CPPC: Only probe for _CPC if CPPC v2 is acked (Mark Langsdorf) [2067296]
+- ACPI: CPPC: Assume no transition latency if no PCCT (Mark Langsdorf) [2067296]
+- ACPI: bus: Set CPPC _OSC bits for all and when CPPC_LIB is supported (Mark Langsdorf) [2067296]
+- ACPI: CPPC: Check _OSC for flexible address space (Mark Langsdorf) [2067296]
+- ACPI: processor: idle: Avoid falling back to C3 type C-states (Mark Langsdorf) [2067296]
+- Revert "ACPI: processor: idle: Only flush cache on entering C3" (Mark Langsdorf) [2067296]
+- ACPI: CPPC: Change default error code and clean up debug messages in probe (Mark Langsdorf) [2067296]
+- ACPI: CPPC: Avoid out of bounds access when parsing _CPC data (Mark Langsdorf) [2067296]
+- ACPI: tables: Make LAPIC_ADDR_OVR address readable in message (Mark Langsdorf) [2067296]
+- ACPI: IPMI: replace usage of found with dedicated list iterator variable (Mark Langsdorf) [2067296]
+- ACPI, APEI: Use the correct variable for sizeof() (Mark Langsdorf) [2067296]
+- clocksource: acpi_pm: fix return value of __setup handler (Mark Langsdorf) [2067296]
+- ACPI / x86: Add support for LPS0 callback handler (Mark Langsdorf) [2067296]
+- ACPI: bus: Avoid using CPPC if not supported by firmware (Mark Langsdorf) [2067296]
+- Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query flag" (Mark Langsdorf) [2067296]
+- ACPI: video: Force backlight native for Clevo NL5xRU and NL5xNU (Mark Langsdorf) [2067296]
+- PM: hibernate: Honour ACPI hardware signature by default for virtual guests (Mark Langsdorf) [2067296]
+- ACPI: NFIT: Remove block aperture support (Mark Langsdorf) [2067296]
+- x86, ACPI: rename init_freq_invariance_cppc() to arch_init_invariance_cppc() (Mark Langsdorf) [2067296]
+- ACPI/APEI: Limit printable size of BERT table data (Mark Langsdorf) [2067296]
+- ACPI: APEI: fix return value of __setup handlers (Mark Langsdorf) [2067296]
+- ACPI / x86: Add skip i2c clients quirk for Lenovo Yoga Tablet 1050F/L (Mark Langsdorf) [2067296]
+- ACPI / x86: Add skip i2c clients quirk for Nextbook Ares 8 (Mark Langsdorf) [2067296]
+- ACPICA: Avoid walking the ACPI Namespace if it is not there (Mark Langsdorf) [2067296]
+- ACPI: processor idle: Check for architectural support for LPI (Mark Langsdorf) [2067296]
+- ACPI: battery: Add device HID and quirk for Microsoft Surface Go 3 (Mark Langsdorf) [2067296]
+- ACPI: fan: Add additional attributes for fine grain control (Mark Langsdorf) [2067296]
+- ACPI: fan: Properly handle fine grain control (Mark Langsdorf) [2067296]
+- ACPI: fan: Optimize struct acpi_fan_fif (Mark Langsdorf) [2067296]
+- ACPI: fan: Separate file for attributes creation (Mark Langsdorf) [2067296]
+- ACPI: fan: Fix error reporting to user space (Mark Langsdorf) [2067296]
+- ACPI: clean up double words in two comments (Mark Langsdorf) [2067296]
+- ACPI: property: Get rid of redundant 'else' (Mark Langsdorf) [2067296]
+- ACPI: EC: Rearrange code in acpi_ec_submit_event() (Mark Langsdorf) [2067296]
+- ACPI: EC: Reduce indentation level in acpi_ec_submit_event() (Mark Langsdorf) [2067296]
+- ACPI: EC: Do not return result from advance_transaction() (Mark Langsdorf) [2067296]
+- ACPI: EC / PM: Print additional debug message in acpi_ec_dispatch_gpe() (Mark Langsdorf) [2067296]
+- ACPI: PM: Print additional debug message in acpi_s2idle_wake() (Mark Langsdorf) [2067296]
+- ACPI: tables: Add CEDT signature to the list of known tables (Mark Langsdorf) [2067296]
+- ACPI: properties: Consistently return -ENOENT if there are no more references (Mark Langsdorf) [2067296]
+- ACPI: OSL: Fix and clean up acpi_os_read/write_port() (Mark Langsdorf) [2067296]
+- ACPICA: Use uintptr_t and offsetof() in Linux kernel builds (Mark Langsdorf) [2067296]
+- ACPI: processor: idle: Only flush cache on entering C3 (Mark Langsdorf) [2067296]
+- intel_idle: Add AlderLake support (Lenny Szubowicz) [2075709]
+- intel_idle: Fix SPR C6 optimization (Lenny Szubowicz) [2075709]
+- intel_idle: Fix the 'preferred_cstates' module parameter (Lenny Szubowicz) [2075709]
+- cpuidle: intel_idle: Update intel_idle() kerneldoc comment (Lenny Szubowicz) [2075709]
+- ice: Fix promiscuous mode not turning off (Petr Oros) [2088787]
+- ice: Introduce enabling promiscuous mode on multiple VF's (Petr Oros) [2088787]
+- PCI/IOV: Add pci_iov_get_pf_drvdata() to allow VF reaching the drvdata of a PF (Myron Stowe) [2106259]
+- PCI/IOV: Add pci_iov_vf_id() to get VF index (Myron Stowe) [2106259]
+- redhat: enable CONFIG_MAXLINEAR_GPHY as module (Petr Oros) [2071856]
+- net: phy: enhance GPY115 loopback disable function (Petr Oros) [2071856]
+- net: phy: add Maxlinear GPY115/21x/24x driver (Petr Oros) [2071856]
+- cgroup: Use css_tryget() instead of css_tryget_online() in task_get_css() (Vratislav Bendel) [2111491]
+- ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe (Jaroslav Kysela) [2065580]
+- ASoC: amd: Add support for enabling DMIC on acp6x via _DSD (Jaroslav Kysela) [2065580]
+- soundwire: intel: prevent pm_runtime resume prior to system suspend (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Add quirk for Fiero SC-01 (fw v1.0.0) (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Add quirk for Fiero SC-01 (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Add quirks for MacroSilicon MS2100/MS2106 devices (Jaroslav Kysela) [2065580]
+- ASoC: cs35l41: Add ASP TX3/4 source to register patch (Jaroslav Kysela) [2065580]
+- ASoC: dapm: Initialise kcontrol data for mux/demux controls (Jaroslav Kysela) [2065580]
+- ASoC: rt711-sdca: fix kernel NULL pointer dereference when IO error (Jaroslav Kysela) [2065580]
+- ASoC: cs35l41: Correct some control names (Jaroslav Kysela) [2065580]
+- ASoC: wm5110: Fix DRE control (Jaroslav Kysela) [2065580]
+- ASoC: wm_adsp: Fix event for preloader (Jaroslav Kysela) [2065580]
+- ASoC: Intel: bytcr_wm5102: Fix GPIO related probe-ordering problem (Jaroslav Kysela) [2065580]
+- ASoC: SOF: Intel: hda-loader: Clarify the cl_dsp_init() flow (Jaroslav Kysela) [2065580]
+- ASoC: SOF: Intel: hda-loader: Make sure that the fw load sequence is followed (Jaroslav Kysela) [2065580]
+- ASoC: SOF: Intel: hda-dsp: Expose hda_dsp_core_power_up() (Jaroslav Kysela) [2065580]
+- ASoC: codecs: rt700/rt711/rt711-sdca: initialize workqueues in probe (Jaroslav Kysela) [2065580]
+- ASoC: rt7*-sdw: harden jack_detect_handler (Jaroslav Kysela) [2065580]
+- ASoC: rt711: fix calibrate mutex initialization (Jaroslav Kysela) [2065580]
+- ASoC: Intel: sof_sdw: handle errors on card registration (Jaroslav Kysela) [2065580]
+- ASoC: rt711-sdca-sdw: fix calibrate mutex initialization (Jaroslav Kysela) [2065580]
+- ASoC: Realtek/Maxim SoundWire codecs: disable pm_runtime on remove (Jaroslav Kysela) [2065580]
+- ASoC: ops: Fix off by one in range control validation (Jaroslav Kysela) [2065580]
+- ASoC: Intel: Skylake: Correct the handling of fmt_config flexible array (Jaroslav Kysela) [2065580]
+- ASoC: Intel: Skylake: Correct the ssp rate discovery in skl_get_ssp_clks() (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek - Enable the headset-mic on a Xiaomi's laptop (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc221 (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP machines (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Fix headset mic for Acer SF313-51 (Jaroslav Kysela) [2065580]
+- ALSA: hda/conexant: Apply quirk for another HP ProDesk 600 G3 model (Jaroslav Kysela) [2065580]
+- ALSA: hda - Add fixup for Dell Latitidue E5430 (Jaroslav Kysela) [2065580]
+- ASoC: SOF: Intel: hda: Fix compressed stream position tracking (Jaroslav Kysela) [2065580]
+- ASoC: SOF: ipc3-topology: Move and correct size checks in sof_ipc3_control_load_bytes() (Jaroslav Kysela) [2065580]
+- ASoC: codecs: rt700/rt711/rt711-sdca: resume bus/codec in .set_jack_detect (Jaroslav Kysela) [2065580]
+- ASoC: rt711-sdca: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2065580]
+- ASoC: rt711: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2065580]
+- ALSA: cs46xx: Fix missing snd_card_free() call at probe error (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Add quirk for Clevo L140PU (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Workarounds for Behringer UMC 204/404 HD (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Add quirk for Clevo NS50PU (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Add quirk for Clevo PD70PNT (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Apply fixup for Lenovo Yoga Duet 7 properly (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek - ALC897 headset MIC no sound (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Add mute LED quirk for HP Omen laptop (Jaroslav Kysela) [2065580]
+- ALSA: hda/conexant: Fix missing beep setup (Jaroslav Kysela) [2065580]
+- ALSA: hda: Fix discovery of i915 graphics PCI device (Jaroslav Kysela) [2065580]
+- ALSA: hda/via: Fix missing beep setup (Jaroslav Kysela) [2065580]
+- ALSA: memalloc: Drop x86-specific hack for WC allocations (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek - Add HW8326 support (Jaroslav Kysela) [2065580]
+- ALSA: hda: MTL: add HD Audio PCI ID and HDMI codec vendor ID (Jaroslav Kysela) [2065580]
+- ASoC: es8328: Fix event generation for deemphasis control (Jaroslav Kysela) [2065580]
+- ASoC: cs42l51: Correct minimum value for SX volume control (Jaroslav Kysela) [2065580]
+- ASoC: cs42l56: Correct typo in minimum level for SX volume controls (Jaroslav Kysela) [2065580]
+- ASoC: cs42l52: Correct TLV for Bypass Volume (Jaroslav Kysela) [2065580]
+- ASoC: cs53l30: Correct number of volume levels on SX controls (Jaroslav Kysela) [2065580]
+- ASoC: cs35l36: Update digital volume TLV (Jaroslav Kysela) [2065580]
+- ASoC: cs42l52: Fix TLV scales for mixer controls (Jaroslav Kysela) [2065580]
+- ASoC: Intel: cirrus-common: fix incorrect channel mapping (Jaroslav Kysela) [2065580]
+- ASoC: nau8822: Add operation for internal PLL off and on (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Add quirk for HP Dev One (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo Yoga DuetITL 2021 (Jaroslav Kysela) [2065580]
+- ALSA: hda/conexant - Fix loopback issue with CX20632 (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Set up (implicit) sync for Saffire 6 (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Skip generic sync EP parse for secondary EP (Jaroslav Kysela) [2065580]
+- ASoC: rt5640: Do not manipulate pin "Platform Clock" if the "Platform Clock" is not in the DAPM (Jaroslav Kysela) [2065580]
+- ASoC: SOF: amd: Fixed Build error (Jaroslav Kysela) [2065580]
+- ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control (Jaroslav Kysela) [2065580]
+- ASoC: max98090: Move check for invalid values before casting in max98090_put_enab_tlv() (Jaroslav Kysela) [2065580]
+- ALSA: pcm: Check for null pointer of pointer substream before dereferencing it (Jaroslav Kysela) [2065580]
+- ASoC: SOF: ipc3-topology: Set scontrol->priv to NULL after freeing it (Jaroslav Kysela) [2065580]
+- ASoC: cs35l41: Fix an out-of-bounds access in otp_packed_element_t (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Move generic implicit fb quirk entries into quirks.c (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Add quirk bits for enabling/disabling generic implicit fb (Jaroslav Kysela) [2065580]
+- ASoC: amd: Add driver data to acp6x machine driver (Jaroslav Kysela) [2065580]
+- ASoC: rt1015p: remove dependency on GPIOLIB (Jaroslav Kysela) [2065580]
+- ASoC: max98357a: remove dependency on GPIOLIB (Jaroslav Kysela) [2065580]
+- ASoC: rt5645: Fix errorenous cleanup order (Jaroslav Kysela) [2065580]
+- ASoC: SOF: amd: add missing platform_device_unregister in acp_pci_rn_probe (Jaroslav Kysela) [2065580]
+- ASoC: Intel: sof_ssp_amp: fix no DMIC BE Link on Chromebooks (Jaroslav Kysela) [2065580]
+- ASoC: tscs454: Add endianness flag in snd_soc_component_driver (Jaroslav Kysela) [2065580]
+- ASoC: SOF: ipc3-topology: Correct get_control_data for non bytes payload (Jaroslav Kysela) [2065580]
+- ASoC: dapm: Don't fold register value changes into notifications (Jaroslav Kysela) [2065580]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the HP Pro Tablet 408 (Jaroslav Kysela) [2065580]
+- ALSA: jack: Access input_dev under mutex (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9520 laptop (Jaroslav Kysela) [2065580]
+- ALSA: hda/realtek - Add new type for ALC245 (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Optimize TEAC clock quirk (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Configure sync endpoints before data (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Add missing ep_idx in fixed EP quirks (Jaroslav Kysela) [2065580]
+- ALSA: usb-audio: Workaround for clock setup on TEAC devices (Jaroslav Kysela) [2065580]
+- ALSA: ctxfi: Add SB046x PCI ID (Jaroslav Kysela) [2065580]
+- NFS: Fix initialisation of nfs_client cl_flags field (Scott Mayhew) [2114577]
+- Documentation: Add an explanation of NFSv4 client identifiers (Dave Wysochanski) [1801326]
+
+* Wed Aug 10 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-417.el8]
+- crypto: chelsio/chcr - Remove useless MODULE_VERSION (Rahul Lakkireddy) [2105817]
+- crypto: chelsio - remove unused function (Rahul Lakkireddy) [2105817]
+- crypto: chelsio - Read rxchannel-id from firmware (Rahul Lakkireddy) [2105817]
+- crypto: chelsio - Fix some kernel-doc issues (Rahul Lakkireddy) [2105817]
+- crypto: chelsio - remove set but not used variable 'adap' (Rahul Lakkireddy) [2105817]
+- dm raid: fix address sanitizer warning in raid_resume (Benjamin Marzinski) [2115118]
+- dm raid: fix address sanitizer warning in raid_status (Benjamin Marzinski) [2115118]
+- dm: return early from dm_pr_call() if DM device is suspended (Benjamin Marzinski) [2115118]
+- dm thin: fix use-after-free crash in dm_sm_register_threshold_callback (Benjamin Marzinski) [2115118]
+- dm writecache: count number of blocks discarded, not number of discard bios (Benjamin Marzinski) [2115118]
+- dm writecache: count number of blocks written, not number of write bios (Benjamin Marzinski) [2115118]
+- dm writecache: count number of blocks read, not number of read bios (Benjamin Marzinski) [2115118]
+- dm writecache: return void from functions (Benjamin Marzinski) [2115118]
+- dm kcopyd: use __GFP_HIGHMEM when allocating pages (Benjamin Marzinski) [2115118]
+- dm writecache: set a default MAX_WRITEBACK_JOBS (Benjamin Marzinski) [2115118]
+- dm raid: fix KASAN warning in raid5_add_disks (Benjamin Marzinski) [2115118]
+- dm raid: fix KASAN warning in raid5_remove_disk (Benjamin Marzinski) [2115118]
+- KVM: x86: do not report preemption if the steal time cache is stale (Vitaly Kuznetsov) [2115240]
+- KVM: x86: revalidate steal time cache if MSR value changes (Vitaly Kuznetsov) [2115240]
+- KVM: nVMX: Always enable TSC scaling for L2 when it was enabled for L1 (Vitaly Kuznetsov) [2115240]
+- KVM: x86: Fully initialize 'struct kvm_lapic_irq' in kvm_pv_kick_cpu_op() (Vitaly Kuznetsov) [2115240]
+- KVM: SEV: Init target VMCBs in sev_migrate_from (Vitaly Kuznetsov) [2115240]
+- KVM: SVM: fix tsc scaling cache logic (Vitaly Kuznetsov) [2115240]
+- KVM: x86/mmu: Check every prev_roots in __kvm_mmu_free_obsolete_roots() (Vitaly Kuznetsov) [2115240]
+- KVM: LAPIC: Drop pending LAPIC timer injection when canceling the timer (Vitaly Kuznetsov) [2115240]
+- KVM: x86: avoid calling x86 emulator without a decoded instruction (Vitaly Kuznetsov) [2115240]
+- KVM: SVM: Use kzalloc for sev ioctl interfaces to prevent kernel data leak (Vitaly Kuznetsov) [2115240]
+- KVM: x86: avoid loading a vCPU after .vm_destroy was called (Vitaly Kuznetsov) [2115240]
+- KVM: nVMX: Clear IDT vectoring on nested VM-Exit for double/triple fault (Vitaly Kuznetsov) [2115240]
+- KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry (Vitaly Kuznetsov) [2115240]
+- KVM: x86: Drop WARNs that assert a triple fault never "escapes" from L2 (Vitaly Kuznetsov) [2115240]
+- sched/deadline: Fix BUG_ON condition for deboosted tasks (Phil Auld) [2111860]
+- scsi: qla2xxx: Fix excessive I/O error messages by default (Nilesh Javali) [2100728]
+- scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection (Nilesh Javali) [2044160]
+- drm/radeon: fix build rules of *_reg_safe.h (Michel Dänzer) [2006451]
+- RDMA/irdma: Fix sleep from invalid context BUG (Kamal Heib) [2097318]
+- RDMA/irdma: Do not advertise 1GB page size for x722 (Kamal Heib) [2097318]
+- RDMA/cm: Fix memory leak in ib_cm_insert_listen (Kamal Heib) [2097318]
+- RDMA/hfi1: Fix potential integer multiplication overflow errors (Kamal Heib) [2097318]
+- RDMA/hfi1: Prevent use of lock before it is initialized (Kamal Heib) [2097318]
+- RDMA/rxe: Fix an error handling path in rxe_get_mcg() (Kamal Heib) [2097318]
+- RDMA/rxe: Generate a completion for unsupported/invalid opcode (Kamal Heib) [2097318]
+- scsi: target: cxgbit: Enable Delayed ACK (Rahul Lakkireddy) [2105813]
+- scsi: target: cxgbit: Increase max DataSegmentLength (Rahul Lakkireddy) [2105813]
+- cxgb4: Use the bitmap API to allocate bitmaps (Rahul Lakkireddy) [2105806]
+- cxgb4: Fix typo in string (Rahul Lakkireddy) [2105806]
+- cxgb4/cxgb4vf: Fix typo in comments (Rahul Lakkireddy) [2105806]
+- cxgb4vf: remove unexpected word "the" (Rahul Lakkireddy) [2105806]
+- net: chelsio: cxgb4: Avoid potential negative array offset (Rahul Lakkireddy) [2105806]
+- libcxgb: Don't accidentally set RTO_ONLINK in cxgb_find_route() (Rahul Lakkireddy) [2105806]
+- cxgb4vf: Remove useless DMA-32 fallback configuration (Rahul Lakkireddy) [2105806]
+- cxgb4: Remove useless DMA-32 fallback configuration (Rahul Lakkireddy) [2105806]
+- cxgb4: allow reading unrecognized port module eeprom (Rahul Lakkireddy) [2105806]
+- net: chelsio: cxgb4vf: Fix an error code in cxgb4vf_pci_probe() (Rahul Lakkireddy) [2105806]
+- cxgb4: Use struct_group() for memcpy() region (Rahul Lakkireddy) [2105806]
+- cxgb4: fix eeprom len when diagnostics not implemented (Rahul Lakkireddy) [2105806]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Rahul Lakkireddy) [2105806]
+- ethernet: chelsio: use eth_hw_addr_set() (Rahul Lakkireddy) [2105806]
+- net: chelsio: cxgb4vf: Make use of the helper function dev_err_probe() (Rahul Lakkireddy) [2105806]
+- cxgb4: improve printing NIC information (Rahul Lakkireddy) [2105806]
+- net: chelsio: switch from 'pci_' to 'dma_' API (Rahul Lakkireddy) [2105806]
+- cxgb4: make the array match_all_mac static, makes object smaller (Rahul Lakkireddy) [2105806]
+- cxgb4: fix IRQ free race during driver unload (Rahul Lakkireddy) [2105806]
+- net: chelsio: cxgb4: use eth_zero_addr() to assign zero address (Rahul Lakkireddy) [2105806]
+- cxgb4: Fix -Wunused-const-variable warning (Rahul Lakkireddy) [2105806]
+- cxgb4: clip_tbl: use list_del_init instead of list_del/INIT_LIST_HEAD (Rahul Lakkireddy) [2105806]
+- net: chelsio: cxgb4vf: Fix wrong function name in comments (Rahul Lakkireddy) [2105806]
+- net: chelsio: cxgb4: Fix wrong function name in comments (Rahul Lakkireddy) [2105806]
+- cxgb4: Remove redundant NULL check (Rahul Lakkireddy) [2105806]
+- net: ethernet: chelsiofix: spelling typo of 'rewriteing' (Rahul Lakkireddy) [2105806]
+- net: don't include ethtool.h from netdevice.h (Rahul Lakkireddy) [2105806]
+- cxgb4vf: convert to use DEFINE_SEQ_ATTRIBUTE macro (Rahul Lakkireddy) [2105806]
+- cxgb4vf: fix t4vf_eth_xmit()'s return type (Rahul Lakkireddy) [2105806]
+- cxgb4vf: update kernel-doc line comments (Rahul Lakkireddy) [2105806]
+- cxgb4: remove duplicate headers (Rahul Lakkireddy) [2105806]
+- cxgb4/cxgb4vf: Remove superfluous void * cast in debugfs_create_file() call (Rahul Lakkireddy) [2105806]
+- cxgb4: Add missing annotation for service_ofldq() (Rahul Lakkireddy) [2105806]
+- net: cxgb4vf: reject unsupported coalescing params (Rahul Lakkireddy) [2105806]
+- scsi: mpt3sas: Stop fw fault watchdog work item during system shutdown (Tomas Henzl) [2106413]
+- drm/amd/display: Fix new dmub notification enabling in DM (Mika Penttilä) [2107632]
+- Revert "crypto: chelsio - Inline single pdu only" (Rahul Lakkireddy) [2105818]
+- crypto/chcr: Moving chelsio's inline ipsec functionality to /drivers/net (Rahul Lakkireddy) [2105818]
+- net/xfrm: IPsec tunnel mode fix inner_ipproto setting in sec_path (Sabrina Dubroca) [2107200]
+- scsi: ch: Make it possible to open a ch device multiple times again (Ewan D. Milne) [2108649]
+- lpfc updates for rh8.7 14.0.0.15 (Paul Ely) [2107726]
+- scsi: lpfc: Copyright updates for 14.2.0.5 patches (Paul Ely) [2107726]
+- scsi: lpfc: Fix lost NVMe paths during LIF bounce stress test (Paul Ely) [2107726]
+- scsi: lpfc: Fix attempted FA-PWWN usage after feature disable (Paul Ely) [2107726]
+- scsi: lpfc: Fix possible memory leak when failing to issue CMF WQE (Paul Ely) [2107726]
+- scsi: lpfc: Remove extra atomic_inc on cmd_pending in queuecommand after VMID (Paul Ely) [2107726]
+- scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user input (Paul Ely) [2107726]
+- scsi: lpfc: Fix uninitialized cqe field in lpfc_nvme_cancel_iocb() (Paul Ely) [2107726]
+- scsi: lpfc: Allow reduced polling rate for nvme_admin_async_event cmd completion (Paul Ely) [2107726]
+- scsi: lpfc: Fix port stuck in bypassed state after LIP in PT2PT topology (Paul Ely) [2107726]
+- scsi: lpfc: Resolve NULL ptr dereference after an ELS LOGO is aborted (Paul Ely) [2107726]
+- scsi: lpfc: Correct BDE type for XMIT_SEQ64_WQE in lpfc_ct_reject_event() (Paul Ely) [2107726]
+- scsi: qla2xxx: Fix imbalance vha->vref_count (Nilesh Javali) [2108964]
+- scsi: smartpqi: Update version to 2.1.18-045 (Don Brace) [2101548]
+- scsi: smartpqi: Update copyright to current year (Don Brace) [2101548]
+- scsi: smartpqi: Add ctrl ready timeout module parameter (Don Brace) [2101548]
+- scsi: smartpqi: Update deleting a LUN via sysfs (Don Brace) [2101548]
+- scsi: smartpqi: Add module param to disable managed ints (Don Brace) [2101548]
+- scsi: smartpqi: Fix RAID map race condition (Don Brace) [2101548]
+- scsi: smartpqi: Fix DMA direction for RAID requests (Don Brace) [2101548]
+- scsi: smartpqi: Stop logging spurious PQI reset failures (Don Brace) [2101548]
+- scsi: smartpqi: Add PCI IDs for Lenovo controllers (Don Brace) [2101548]
+- scsi: smartpqi: Add PCI ID for Adaptec SmartHBA 2100-8i (Don Brace) [2101548]
+- scsi: smartpqi: Fix PCI control linkdown system hang (Don Brace) [2101548]
+- scsi: smartpqi: Add driver support for multi-LUN devices (Don Brace) [2101548]
+- scsi: smartpqi: Close write read holes (Don Brace) [2101548]
+- scsi: smartpqi: Add PCI IDs for ramaxel controllers (Don Brace) [2101548]
+- scsi: smartpqi: Add controller fw version to console log (Don Brace) [2101548]
+- scsi: smartpqi: Shorten drive visibility after removal (Don Brace) [2101548]
+- scsi: smartpqi: Fix typo in comment (Don Brace) [2101548]
+- docs: kdump: Update the crashkernel description for arm64 (Pingfan Liu) [2093920]
+- of: Support more than one crash kernel regions for kexec -s (Pingfan Liu) [2093920]
+- of: kexec: Remove FDT_PROP_* definitions (Pingfan Liu) [2093920]
+- arm64: kexec: Fix missing error code 'ret' warning in load_other_segments() (Pingfan Liu) [2093920]
+- arm64: Use common of_kexec_alloc_and_setup_fdt() (Pingfan Liu) [2093920]
+- of: Add a common kexec FDT setup function (Pingfan Liu) [2093920]
+- arm64: Use ELF fields defined in 'struct kimage' (Pingfan Liu) [2093920]
+- kexec: Move ELF fields to struct kimage (Pingfan Liu) [2093920]
+- of: fdt: Add memory for devices by DT property "linux,usable-memory-range" (Pingfan Liu) [2093920]
+- efi: apply memblock cap after memblock_add() (Pingfan Liu) [2093920]
+- of: fdt: Aggregate the processing of "linux,usable-memory-range" (Pingfan Liu) [2093920]
+- of/fdt: Rework early_init_dt_scan_memory() to call directly (Pingfan Liu) [2093920]
+- of/fdt: Rework early_init_dt_scan_root() to call directly (Pingfan Liu) [2093920]
+- of/fdt: Rework early_init_dt_scan_chosen() to call directly (Pingfan Liu) [2093920]
+- of: fdt: Rename reserve_elfcorehdr() to fdt_reserve_elfcorehdr() (Pingfan Liu) [2093920]
+- of: fdt: Add generic support for handling elf core headers property (Pingfan Liu) [2093920]
+- arm64: kdump: Reimplement crashkernel=X (Pingfan Liu) [2093920]
+- arm64: Use insert_resource() to simplify code (Pingfan Liu) [2093920]
+- kdump: return -ENOENT if required cmdline option does not exist (Pingfan Liu) [2093920]
+
+* Mon Aug 08 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-416.el8]
+- sched: Add WARN_ONCE_SAFE for use during critical scheduler code. (Phil Auld) [2095898]
+- printk: remove NMI tracking [partial] (Phil Auld) [2095898]
+- ext4: make sure ext4_append() always allocates new block (Lukas Czerner) [2070216]
+- ext4: check if directory block is within i_size (Lukas Czerner) [2070216]
+- redhat: nvme/tcp mistakenly uses blk_mq_tag_to_rq(nvme_tcp_tagset(queue)) (John Meneghini) [2112036]
+- RDMA/cxgb4: Set queue pair state when being queried (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: Use non-atomic bitmap functions when possible (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: Use bitmap_set() when applicable (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: Use bitmap_zalloc() when applicable (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: Use helper function to set GUIDs (Rahul Lakkireddy) [2105809]
+- RDMA/iw_cxgb4: Fix refcount underflow while destroying cqs. (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: Use refcount_t instead of atomic_t for reference counting (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: Fix missing error code in create_qp() (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: Remove useless assignments (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: add missing qpid increment (Rahul Lakkireddy) [2105809]
+- RDMA/iw_cxgb4: Use DEFINE_SPINLOCK() for spinlock (Rahul Lakkireddy) [2105809]
+- RDMA/cxgb4: Use sizeof() notation (Rahul Lakkireddy) [2105809]
+- drm/amd/display: Ignore First MST Sideband Message Return Error (Michel Dänzer) [2089853]
+- sched, cpuset: Fix dl_cpu_busy() panic due to empty cs->cpus_allowed (Waiman Long) [2115165]
+- sched/deadline: Merge dl_task_can_attach() and dl_cpu_busy() (Waiman Long) [2115165]
+- ibmvnic: Properly dispose of all skbs during a failover. (Steve Best) [2107560]
+- redhat/configs: Enable CONFIG_AMD_HSMP for x86_64 (John Allen) [2072233]
+- platform/x86: Add AMD system management interface (John Allen) [2072233]
+- ice: do not setup vlan for loopback VSI (Petr Oros) [2103845]
+- ice: check (DD | EOF) bits on Rx descriptor rather than (EOP | RS) (Petr Oros) [2103845]
+- ice: Fix VSIs unable to share unicast MAC (Petr Oros) [2080033]
+- ice: Fix max VLANs available for VF (Petr Oros) [2112298]
+- ice: change devlink code to read NVM in blocks (Petr Oros) [2093904]
+- ALSA: Enable more Intel and AMD x86 chipset drivers (Jaroslav Kysela) [2065575]
+- ALSA: Remove module symbols namespace (Jaroslav Kysela) [2065575]
+- ASoC: SOF: tokens: add token for Mediatek AFE (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Expand firmware loading search options (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Add trace caps to speaker protection FW (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Make compressed buffers optional (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Correct control read size when parsing compressed buffer (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Add support for "toggle" preloaders (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Fix overrun of unterminated control name string (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Clear core reset for cache (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Move lockdep asserts to avoid potential null pointer (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Allow creation of event controls (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Add offset to cs_dsp read/write (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Clarify some kernel doc comments (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Perform NULL check in cs_dsp_coeff_write/read_ctrl (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Add support for rev 2 coefficient files (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Print messages from bin files (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Add pre_run callback (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Add version checks on coefficient loading (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: Add lockdep asserts to interface functions (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: tidy includes in cs_dsp.c and cs_dsp.h (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Remove the wmfw_add_ctl helper function (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: wm_adsp_control_add() error: uninitialized symbol 'ret' (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: remove a repeated including (Jaroslav Kysela) [2065575]
+- firmware: cs_dsp: add driver to support firmware loading on Cirrus Logic DSPs (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Separate wm_adsp specifics in cs_dsp_client_ops (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Split out struct cs_dsp from struct wm_adsp (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: move firmware loading to client (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Pass firmware names as parameters when starting DSP core (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Move check of dsp->running to better place (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Separate generic cs_dsp_coeff_ctl handling (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Move sys_config_size to wm_adsp (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Split DSP power operations into helper functions (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Separate some ASoC and generic functions (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Introduce cs_dsp logging macros (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Rename generic DSP support (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Cancel ongoing work when removing controls (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Switch to using wm_coeff_read_ctrl for compressed buffers (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Move check for control existence (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Remove use of snd_ctl_elem_type_t (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Put debugfs_remove_recursive back in (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Let soc_cleanup_component_debugfs remove debugfs (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Remove pointless string comparison (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Add CCM_CORE_RESET to Halo start core (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Correct wm_coeff_tlv_get handling (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Fix control name parsing for multi-fw (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Fix uninitialized variable warnings (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Use snd_ctl_elem_type_t for control types (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Only use __be32 for big-endian data (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: Improve handling of raw byte streams (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: remove "ctl" from list on error in wm_adsp_create_control() (Jaroslav Kysela) [2065575]
+- ASoC: wm_adsp: fix error return code in wm_adsp_load() (Jaroslav Kysela) [2065575]
+- ASoC: rt5640: Add the binding include file for the HDA header support (Jaroslav Kysela) [2065575]
+- ALSA: uapi: use C90 comment style instead of C99 style (Jaroslav Kysela) [2065575]
+- ALSA: hda: intel-dsp-config: Add RaptorLake PCI IDs (Jaroslav Kysela) [2065575]
+- ALSA: hda/i915: Fix one too many pci_dev_put() (Jaroslav Kysela) [2065575]
+- ALSA: hda: intel-dsp-config: update AlderLake PCI IDs (Jaroslav Kysela) [2065575]
+- ALSA: hda/i915 - skip acomp init if no matching display (Jaroslav Kysela) [2065575]
+- ALSA: hda/i915 - avoid hung task timeout in i915 wait (Jaroslav Kysela) [2065575]
+- ALSA: intel-dspconfig: add ES8336 support for CNL (Jaroslav Kysela) [2065575]
+- ALSA: intel-dsp-config: add more ACPI HIDs for ES83x6 devices (Jaroslav Kysela) [2065575]
+- ALSA: hda: intel-dsp-config: reorder the config table (Jaroslav Kysela) [2065575]
+- ALSA: hda: intel-dsp-config: add JasperLake support (Jaroslav Kysela) [2065575]
+- ALSA: hda: Simplify DMIC-in-NHLT check (Jaroslav Kysela) [2065575]
+- ALSA: intel_hdmi: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: x86: Use standard mmap helper for Intel HDMI LPE audio (Jaroslav Kysela) [2065575]
+- ALSA: intel_hdmi: Fix reference to PCM buffer address (Jaroslav Kysela) [2065575]
+- ALSA: intel_hdmi: Check for error num after setting mask (Jaroslav Kysela) [2065575]
+- tools include uapi: Update asound.h copy (Jaroslav Kysela) [2065575]
+- tools include UAPI: Sync sound/asound.h copy with the kernel sources (Jaroslav Kysela) [2065575]
+- tools include UAPI: Sync sound/asound.h copy with the kernel sources (Jaroslav Kysela) [2065575]
+- ALSA: hda: Add helper macros for DSP capable devices (Jaroslav Kysela) [2065575]
+- ALSA: intel-nhlt: add helper to detect SSP link mask (Jaroslav Kysela) [2065575]
+- ASoC: soc-acpi: add information on I2S/TDM link mask (Jaroslav Kysela) [2065575]
+- ASoC: soc-acpi: fix kernel-doc descriptor (Jaroslav Kysela) [2065575]
+- ASoC: SOF: fix 32 signed bit overflow (Jaroslav Kysela) [2065575]
+- ALSA: hda: Add snd_hdac_ext_bus_link_at() helper (Jaroslav Kysela) [2065575]
+- ALSA: cleanup double word in comment (Jaroslav Kysela) [2065575]
+- ASoC: SOF: add _D3_PERSISTENT flag to fw_ready message (Jaroslav Kysela) [2065575]
+- ALSA: HDA: hdac_ext_stream: use consistent prefixes for variables (Jaroslav Kysela) [2065575]
+- ipc: debug: Add shared memory heap to memory scan (Jaroslav Kysela) [2065575]
+- ALSA: pcm: comment about relation between msbits hw parameter and [S|U]32 formats (Jaroslav Kysela) [2065575]
+- ALSA: hda: Fill gaps in NHLT endpoint-interface (Jaroslav Kysela) [2065575]
+- ASoC: SOF: IPC: Add new IPC command to free trace DMA (Jaroslav Kysela) [2065575]
+- soundwire: stream: make enable/disable/deprepare idempotent (Jaroslav Kysela) [2065575]
+- soundwire: stream: sdw_stream_add_ functions can be called multiple times (Jaroslav Kysela) [2065575]
+- soundwire: stream: introduce sdw_slave_rt_find() helper (Jaroslav Kysela) [2065575]
+- soundwire: stream: separate alloc and config within sdw_stream_add_xxx() (Jaroslav Kysela) [2065575]
+- soundwire: stream: move list addition to sdw_slave_alloc_rt() (Jaroslav Kysela) [2065575]
+- soundwire: stream: rename and move master/slave_rt_free routines (Jaroslav Kysela) [2065575]
+- soundwire: stream: group sdw_stream_ functions (Jaroslav Kysela) [2065575]
+- soundwire: stream: split sdw_alloc_slave_rt() in alloc and config (Jaroslav Kysela) [2065575]
+- soundwire: stream: move sdw_alloc_slave_rt() before 'master' helpers (Jaroslav Kysela) [2065575]
+- soundwire: stream: split sdw_alloc_master_rt() in alloc and config (Jaroslav Kysela) [2065575]
+- soundwire: stream: simplify sdw_alloc_master_rt() (Jaroslav Kysela) [2065575]
+- soundwire: stream: group sdw_port and sdw_master/slave_port functions (Jaroslav Kysela) [2065575]
+- soundwire: stream: add 'slave' prefix for port range checks (Jaroslav Kysela) [2065575]
+- soundwire: stream: split alloc and config in two functions (Jaroslav Kysela) [2065575]
+- soundwire: stream: split port allocation and configuration loops (Jaroslav Kysela) [2065575]
+- soundwire: stream: add alloc/config/free helpers for ports (Jaroslav Kysela) [2065575]
+- soundwire: stream: simplify check on port range (Jaroslav Kysela) [2065575]
+- soundwire: stream: add slave runtime to list earlier (Jaroslav Kysela) [2065575]
+- soundwire: stream: remove unused parameter in sdw_stream_add_slave (Jaroslav Kysela) [2065575]
+- soundwire: intel: fix wrong register name in intel_shim_wake (Jaroslav Kysela) [2065575]
+- soundwire: bus: add dev_warn() messages to track UNATTACHED devices (Jaroslav Kysela) [2065575]
+- soundwire: intel: remove PDM support (Jaroslav Kysela) [2065575]
+- soundwire: intel: remove unnecessary init (Jaroslav Kysela) [2065575]
+- ASoC/SoundWire: dai: expand 'stream' concept beyond SoundWire (Jaroslav Kysela) [2065575]
+- soundwire: intel: improve suspend flows (Jaroslav Kysela) [2065575]
+- soundwire: intel: Use auxiliary_device driver data helpers (Jaroslav Kysela) [2065575]
+- soundwire: qcom: remove redundant version number read (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Fix NULL pointer exception in sof_pci_probe callback (Jaroslav Kysela) [2065575]
+- ASoC: ops: Validate input values in snd_soc_put_volsw_range() (Jaroslav Kysela) [2065575]
+- ASoC: dmaengine: Restore NULL prepare_slave_config() callback (Jaroslav Kysela) [2065575]
+- ASoC: max98090: Generate notifications on changes for custom control (Jaroslav Kysela) [2065575]
+- ASoC: max98090: Reject invalid values in custom control put() (Jaroslav Kysela) [2065575]
+- ASoC: rt9120: Correct the reg 0x09 size to one byte (Jaroslav Kysela) [2065575]
+- ASoC: soc-ops: fix error handling (Jaroslav Kysela) [2065575]
+- ASoC: da7219: Fix change notifications for tone generator frequency (Jaroslav Kysela) [2065575]
+- ASoC: simple-card-utils: fix sysclk shutdown (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: Add a quirk for Huawei Matebook D15 (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: add a quirk for headset at mic1 port (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: support a separate gpio to control headphone (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: simplify speaker gpio naming (Jaroslav Kysela) [2065575]
+- ASoC: Intel: soc-acpi: correct device endpoints for max98373 (Jaroslav Kysela) [2065575]
+- ASoC: codecs: wcd934x: do not switch off SIDO Buck when codec is in use (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Fix memory leak in sof_control_load() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: cleanup dailinks on widget unload (Jaroslav Kysela) [2065575]
+- ASoC: rt711/5682: check if bus is active before deferred jack detection (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_rt5682: Add support for max98360a speaker amp on SSP2 (Jaroslav Kysela) [2065575]
+- ASoC: simple-card-utils: Avoid NULL deref in asoc_simple_set_tdm() (Jaroslav Kysela) [2065575]
+- ASoC: soc-core: add debugfs_prefix member to snd_soc_component_driver (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Fix a shift-out-of-bounds warning found by UBSAN (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Add one more variable in the debug log (Jaroslav Kysela) [2065575]
+- ASoC: rt5682: fix an incorrect NULL check on list iterator (Jaroslav Kysela) [2065575]
+- ASoC: soc-dapm: fix two incorrect uses of list iterator (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: use GFP_KERNEL when the code is sleepable (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Fix memory leak of scontrol->name (Jaroslav Kysela) [2065575]
+- codecs: rt5682s: fix an incorrect NULL check on list iterator (Jaroslav Kysela) [2065575]
+- ASoC: topology: Correct error handling in soc_tplg_dapm_widget_create() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add a new dai_get_clk topology IPC op (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Add ops for setting up and tearing down pipelines (Jaroslav Kysela) [2065575]
+- ASoC: SOF: expose sof_route_setup() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add dai_link_fixup PCM op for IPC3 (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add trigger PCM op for IPC3 (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Define hw_params PCM op for IPC3 (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce IPC3 PCM hw_free op (Jaroslav Kysela) [2065575]
+- ASoC: SOF: pcm: expose the sof_pcm_setup_connected_widgets() function (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce IPC-specific PCM ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add bytes_ext control IPC ops for IPC3 (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add bytes_get/put control IPC ops for IPC3 (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add enum_get/put control ops for IPC3 (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add switch get/put IPC3 ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add volume_get/put IPC3 ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add IPC3 topology control ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce IPC ops for kcontrol IO (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Make sof_suspend/resume IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Make sof_widget_setup/free IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: set up scheduler widget before all other widgets in the pipeline (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Use kmemdup() to replace kzalloc + memcpy (Jaroslav Kysela) [2065575]
+- ASoC: ak4642: Use of_device_get_match_data() (Jaroslav Kysela) [2065575]
+- ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call (Jaroslav Kysela) [2065575]
+- ASoC: amd: Fix reference to PCM buffer address (Jaroslav Kysela) [2065575]
+- ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data (Jaroslav Kysela) [2065575]
+- ASoC: rt1308-sdw: get calibration params after power on (Jaroslav Kysela) [2065575]
+- ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe (Jaroslav Kysela) [2065575]
+- ASoC: ti: Fix spelling mistake "cant" -> "can't" (Jaroslav Kysela) [2065575]
+- ASoC: samsung: i2s: check the return value of kstrdup() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: remove snd_sof_complete_pipeline() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make widget binding IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make control parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make DAI widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make route setup IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make effect widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Replace zero-length array with flexible-array member (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make siggen widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make asrc widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make src widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make mux/demux widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make mixer widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make pga widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make buffer widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Make scheduler widget parsing IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce IPC3 ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Add helper function for processing tuple arrays (Jaroslav Kysela) [2065575]
+- ASoC: SOF: IPC: Introduce IPC ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce struct snd_sof_dai_link (Jaroslav Kysela) [2065575]
+- ASoC: soc-compress: Change the check for codec_dai (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Code loading over HDA (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Code loading over CLDMA (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Implement CLDMA transfer (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: General code loading flow (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Dynamic firmware resources management (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Declare module configuration types (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Firmware resources management utilities (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Add basefw runtime-parameter requests (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Add ROM requests (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Add power management requests (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Add module management requests (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Add pipeline management requests (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Add code loading requests (Jaroslav Kysela) [2065575]
+- ASoC: Intel: avs: Inter process communication (Jaroslav Kysela) [2065575]
+- ASoC: Intel: Introduce AVS driver (Jaroslav Kysela) [2065575]
+- ASoC: Export DAI register and widget ctor and dctor functions (Jaroslav Kysela) [2065575]
+- ASoC: simple-card-utils: Don't reset clock of active DAI (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Remove ipc_pcm_params() ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: imx: Convert to use the generic set_stream_data_offset ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: Convert to use the generic set_stream_data_offset ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda-ipc: Add hda_set_stream_data_offset() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: stream-ipc: Add sof_set_stream_data_offset() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Mark snd_sof_dsp_ops.ipc_pcm_params() callback optional (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce optional callback to configure stream data offset (Jaroslav Kysela) [2065575]
+- ASoC: SOF: pcm: Remove sof_pcm_dsp_params() wrapper (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Make pcm_hw_params snd_sof_dsp_ops callback IPC neutral (Jaroslav Kysela) [2065575]
+- ASoC: SOF: sof-priv: Remove stale snd_sof_ipc_stream_pcm_params() declaration (Jaroslav Kysela) [2065575]
+- ASoC: Intel: soc-acpi: Add entry for rt711-sdca-sdw in ADL match table (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: add topology overwrite for Taniks (Jaroslav Kysela) [2065575]
+- ASoC: SOF: trace: Use proper DMA direction for the trace data buffer (Jaroslav Kysela) [2065575]
+- ASoC: SOF: compress: fix null check after dereference (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: enable DMI L1 for playback streams (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ipc-msg-injector: Use devm_kzalloc() for the rx_buffer (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Remove unneeded semicolon (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Remove unneeded semicolon (Jaroslav Kysela) [2065575]
+- ASoC: Intel: boards: fix randconfig issue (Jaroslav Kysela) [2065575]
+- ASoC: Intel: bytcht_es8316: move comment to the right place (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: add cfg-dmics component for UCM support (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: extend machine driver to support ES8326 codec (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: add support for JD inverted quirk (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: move comment to the right place (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: log all quirks (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: use NHLT information to set dmic and SSP (Jaroslav Kysela) [2065575]
+- ASoC: Intel: Revert "ASoC: Intel: sof_es8336: add quirk for Huawei D15 2021" (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: get codec device with ACPI instead of bus search (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: make gpio optional (Jaroslav Kysela) [2065575]
+- ASoC: Intel: soc-acpi: add ESSX8336 support on Cannon Lake machines (Jaroslav Kysela) [2065575]
+- ASoC: Intel: soc-acpi: add more ACPI HIDs for ES83x6 devices (Jaroslav Kysela) [2065575]
+- ASoC: Intel: soc-acpi: quirk topology filename dynamically (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: report SSP link mask to machine driver (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: retrieve DMIC number for I2S boards (Jaroslav Kysela) [2065575]
+- ASoC: SOF: move definition of snd_sof_ipc to header file (Jaroslav Kysela) [2065575]
+- ASoC: SOF: make struct snd_sof_dai IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Rename arguments in sof_parse_tokens() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Rename arguments in sof_parse_token_sets() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Modify signature for token parsing functions (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add a tuples array to struct snd_sof_widget (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: make sof_route_load() IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: SOF: make struct snd_sof_widget IPC agnostic (Jaroslav Kysela) [2065575]
+- ASoC: mxs: Fix error handling in mxs_sgtl5000_probe (Jaroslav Kysela) [2065575]
+- ASoC: dmaengine: do not use a NULL prepare_slave_config() callback (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add missing of_node_put() in imx8m_probe (Jaroslav Kysela) [2065575]
+- ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in rockchip_i2s_probe (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp3x: Fix signedness bug in acp3x (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp5x-pcm-dma: Fix signedness bug (Jaroslav Kysela) [2065575]
+- ASoC: Intel: catpt: use asoc_substream_to_rtd() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: change comp_dai to a pointer in struct snd_sof_dai (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: expose some get_token ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Modify the get_token op for string tokens (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Drop the size parameter from struct sof_topology_token (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: remove redundant code in sof_link_afe_load() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: remove redundant code (Jaroslav Kysela) [2065575]
+- ASoC: SOF: sof-audio: removed unused function (Jaroslav Kysela) [2065575]
+- ASoC: SOF: set swidget's core for scheduler widget (Jaroslav Kysela) [2065575]
+- ASoC: SOF: simplify snd_sof_device_remove() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: remove snd_sof_pipeline_find() (Jaroslav Kysela) [2065575]
+- ASoC: amd: vg: fix signedness bug in acp5x_audio_probe() (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Remove unnecessary param (Jaroslav Kysela) [2065575]
+- ASoC: rt5682s: Stabilize the combo jack detection (Jaroslav Kysela) [2065575]
+- ASoC: wm8350: Handle error for wm8350_register_irq (Jaroslav Kysela) [2065575]
+- ASoC: amd: pcm-dma: Fix signedness bug in acp3x_audio_probe() (Jaroslav Kysela) [2065575]
+- ASoC: amd: pcm-dma: Fix signedness bug in acp_pdm_audio_probe() (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Fix signedness bug in renoir_audio_probe() (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13" (Jaroslav Kysela) [2065575]
+- ASoC: Intel: boards: add GPIOLIB dependency where missed (Jaroslav Kysela) [2065575]
+- ASoC: Intel: boards: remove explicit dependency on GPIOLIB when DMIC is used" (Jaroslav Kysela) [2065575]
+- ASoC: fsl_sai: store full version instead of major/minor (Jaroslav Kysela) [2065575]
+- ASoC: fsl_sai: simplify register poking in fsl_sai_set_bclk (Jaroslav Kysela) [2065575]
+- ASoC: fsl_sai: simplify irq return value (Jaroslav Kysela) [2065575]
+- ASoC: fsl_sai: Drop unnecessary defines (Jaroslav Kysela) [2065575]
+- ASoC: codecs: Add Awinic AW8738 audio amplifier driver (Jaroslav Kysela) [2065575]
+- ASoC: audio_graph_card2: Add support for variable slot widths (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: clarify operator precedence (Jaroslav Kysela) [2065575]
+- ASoC: SOF: debug: clarify operator precedence (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Increase ACP_HW_SEM_RETRY_COUNT value (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Move group register configuration to acp-loader (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Use semaphore register to synchronize ipc's irq (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Flush cache after ATU_BASE_ADDR_GRP register update (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Do not set ipc_pcm_params ops as it is optional (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: acp-pcm: Take buffer information directly from runtime (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: pci-tgl: add RPL-S support (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Fix DSP mbox start command and global enable order (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Fix max number of TX channels (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Fix GPIO2 configuration (Jaroslav Kysela) [2065575]
+- ASoC: bt-sco: fix bt-sco-pcm-wb dai widget don't connect to the endpoint (Jaroslav Kysela) [2065575]
+- ASoC: hdac_hda: Avoid unexpected match when pcm_name is "Analog" (Jaroslav Kysela) [2065575]
+- ASoC: soc-compress: prevent the potentially use of null pointer (Jaroslav Kysela) [2065575]
+- ASoC: soc-generic-dmaengine-pcm: set period_bytes_min based on maxburst (Jaroslav Kysela) [2065575]
+- ASoC: dwc-i2s: Handle errors for clk_enable (Jaroslav Kysela) [2065575]
+- ASoC: amd: use asoc_substream_to_rtd() (Jaroslav Kysela) [2065575]
+- ASoC: atmel_ssc_dai: Handle errors for clk_enable (Jaroslav Kysela) [2065575]
+- ASoC: mxs-saif: Handle errors for clk_enable (Jaroslav Kysela) [2065575]
+- ASoC: Intel: soc-acpi: add entries in ADL match table (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_ssp_amp: rename driver and support cs35l41 amplifier (Jaroslav Kysela) [2065575]
+- ASoC: Intel: cirrus-common: support cs35l41 amplifier (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_rt1308: move rt1308 code to common module (Jaroslav Kysela) [2065575]
+- ASoC: Intel: boards: create sof-realtek-common module (Jaroslav Kysela) [2065575]
+- ASoC: Intel: add RT1308 I2S machine driver and HDMI-in capture via I2S support. (Jaroslav Kysela) [2065575]
+- ASoC: Intel: boards: fix spelling in comments (Jaroslav Kysela) [2065575]
+- ASoC: soc-acpi: remove sof_fw_filename (Jaroslav Kysela) [2065575]
+- ASoC: es7241: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max98927: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max98926: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max98925: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max9867: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max9860: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max9850: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max98390: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max98371: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max98095: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: max98088: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: uda134x: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: ml26124: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: pcm512x: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: pcm3168a: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: pcm186x: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: pcm1681: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: pcm3060: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: ti: davinci-i2s: Add check for clk_enable() (Jaroslav Kysela) [2065575]
+- ASoC: mc13783: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: isabelle: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: amd: vangogh: fix uninitialized symbol warning in machine driver (Jaroslav Kysela) [2065575]
+- ASoC: amd: vg: remove warnings and errors pointed out by checkpatch pl (Jaroslav Kysela) [2065575]
+- ASoC: amd: vg: update DAI link name (Jaroslav Kysela) [2065575]
+- ASoC: amd: vg: fix for pm resume callback sequence (Jaroslav Kysela) [2065575]
+- ASoC: es8328: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: inno_rk3036: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: es8316: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: wl1273: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: es7134: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: twl4030: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: uda1334: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: uda1380: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: si476x: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: sti-sas: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: amd: pcm-dma: Use platform_get_irq() to get the interrupt (Jaroslav Kysela) [2065575]
+- ASoC: tscs454: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: tscs42xx: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: lm49453: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2065575]
+- ASoC: qcom: lpass-platform: Update warning print to control excess logging (Jaroslav Kysela) [2065575]
+- ASoC: acp: check the return value of devm_kzalloc() in acp_legacy_dai_links_create() (Jaroslav Kysela) [2065575]
+- ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: sof-priv: Drop duplicate sof_compressed_ops declaration (Jaroslav Kysela) [2065575]
+- ASoC: amd: Use platform_get_irq_byname() to get the interrupt (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Declare sof_compress_ops in sof-priv.h (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Add DMIC machine driver ops (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp-legacy: Add legacy card support for new machines (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Change card name for Guybrush Machine (Jaroslav Kysela) [2065575]
+- ASoC: SOF: pcm: Add compress_ops for SOF platform component driver (Jaroslav Kysela) [2065575]
+- ASoC: rt5682s: Fix the wrong jack type detected (Jaroslav Kysela) [2065575]
+- ASoC: Intel: soc-acpi-byt: Add new WM5102 ACPI HID (Jaroslav Kysela) [2065575]
+- ASoC: amd: vg: update acp init and deinit sequence (Jaroslav Kysela) [2065575]
+- ASoC: amd: vg: apply sample bits pcm constraint (Jaroslav Kysela) [2065575]
+- ASoC: amd: vg: update platform clock control sequence (Jaroslav Kysela) [2065575]
+- ASoC: nau8821: enable no_capture_mute flag (Jaroslav Kysela) [2065575]
+- ASoC: amd: vangogh: refactor i2s master mode clock sequence code (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: Add topology overwrite for Felwinter (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_es8336: add quirk for Huawei D15 2021 (Jaroslav Kysela) [2065575]
+- ASoC: intel: skylake: Set max DMA segment size (Jaroslav Kysela) [2065575]
+- ASoC: SOF: hda: Set max DMA segment size (Jaroslav Kysela) [2065575]
+- ASoC: SOF: core: unregister clients and machine drivers in .shutdown (Jaroslav Kysela) [2065575]
+- ASoC: cs4265: Fix the duplicated control name (Jaroslav Kysela) [2065575]
+- ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min (Jaroslav Kysela) [2065575]
+- ASoC: soc-core: skip zero num_dai component in searching dai name (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Makefile: Fix randconfig sof-client build when SND_SOC_SOF=y (Jaroslav Kysela) [2065575]
+- ASoC: codec: wm8960: complete discharge on BIAS OFF->STANDBY (Jaroslav Kysela) [2065575]
+- ASoC: wm8731: Delete empty remove() function (Jaroslav Kysela) [2065575]
+- ASoC: pcm3168a: remove numeric PCM3168A_NUM_SUPPLIES (Jaroslav Kysela) [2065575]
+- ASoC: pcm3168a: refactor format handling (Jaroslav Kysela) [2065575]
+- ASoC: pcm3168a: refactor hw_params routine (Jaroslav Kysela) [2065575]
+- ASoC: pcm3168a: cleanup unintuitive mask usage (Jaroslav Kysela) [2065575]
+- ASoC: SOF: compr: Mark snd_compress_ops static (Jaroslav Kysela) [2065575]
+- ASoC: Intel: bytcr_wm5102: use GFP_KERNEL (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Convert the generic probe support to SOF client (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Convert the generic IPC message injector into SOF client (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Convert the generic IPC flood test into SOF client (Jaroslav Kysela) [2065575]
+- ASoC: SOF: sof-client: Add support for clients not managed by pm framework (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce IPC SOF client support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Split up utils.c into sof-utils and iomem-utils (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ipc: Read and pass the whole message to handlers for IPC events (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Move the definition of enum sof_dsp_power_states to global header (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Drop unused DSP power states: D3_HOT and D3_COLD (Jaroslav Kysela) [2065575]
+- ASoC: rt5640: Remove the sysclk and sysclk_src checking (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hdac_ext_stream: consistent prefixes for variables/members (Jaroslav Kysela) [2065575]
+- ASoC: fsl_sai: Enable combine mode soft (Jaroslav Kysela) [2065575]
+- ASoC: SOF: compr: Add compress ops implementation (Jaroslav Kysela) [2065575]
+- ASoC: SOF: dma-trace: Pass pointer to params_ext struct in trace_init() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: intel: hda-trace: Pass the dma buffer pointer to hda_dsp_trace_prepare (Jaroslav Kysela) [2065575]
+- ASoC: zl38060: Remove spurious gpiolib select (Jaroslav Kysela) [2065575]
+- ASoC: max9759: Remove spurious gpiolib select (Jaroslav Kysela) [2065575]
+- ASoC: simple-amplifier: Remove spurious gpiolib select (Jaroslav Kysela) [2065575]
+- ASoC: rt9120: Remove spurious gpiolib select (Jaroslav Kysela) [2065575]
+- ASoC: dmic: Remove spurious gpiolib select (Jaroslav Kysela) [2065575]
+- ASoC: rt5682: do not block workqueue if card is unbound (Jaroslav Kysela) [2065575]
+- ASoC: rt5668: do not block workqueue if card is unbound (Jaroslav Kysela) [2065575]
+- ASoC: rt5682s: do not block workqueue if card is unbound (Jaroslav Kysela) [2065575]
+- ASoC: tas2770: Insert post reset delay (Jaroslav Kysela) [2065575]
+- ASoC: samsung: Explicitly include gpiolib header (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Set gpio_spkr_en to None for max speaker amplifer in machine driver (Jaroslav Kysela) [2065575]
+- ASoC: ops: Fix stereo change notifications in snd_soc_put_xr_sx() (Jaroslav Kysela) [2065575]
+- ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw_range() (Jaroslav Kysela) [2065575]
+- ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw_sx() (Jaroslav Kysela) [2065575]
+- ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw() (Jaroslav Kysela) [2065575]
+- ASoC: max98927: add missing header file (Jaroslav Kysela) [2065575]
+- ASoC: ops: Check for negative values before reading them (Jaroslav Kysela) [2065575]
+- ASoC: cs42l51: Improve error handling in cs42l51_remove() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ipc: Do not allocate buffer for msg_data (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ipc: Drop header parameter from sof_ipc_tx_message_unlocked() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: cnl: Use pm_gate->hdr.cmd in cnl_compact_ipc_compress() (Jaroslav Kysela) [2065575]
+- ASoC: amd: renoir: Add check for acp configuration flags (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: acp-legacy: Add DMIC dai link support for Renoir (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Add ACP init()/deinit() callback for Renoir. (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Add generic PCI driver module for ACP device (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Add PDM controller based dmic dai for Renoir (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Add generic support for PDM controller on ACP (Jaroslav Kysela) [2065575]
+- ASoC: rk3399_gru_sound: Wire up DP jack detection (Jaroslav Kysela) [2065575]
+- ASoC: rt5682: Fix deadlock on resume (Jaroslav Kysela) [2065575]
+- ASoC: hdmi-codec: Fix OOB memory accesses (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: Move debugfs removal out of spinlock (Jaroslav Kysela) [2065575]
+- ASoC: SOF: trace: Simplify count adjustment in trace_read (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: Remove link assignment limitation (Jaroslav Kysela) [2065575]
+- ASoC: ops: Reject out of bounds values in snd_soc_put_xr_sx() (Jaroslav Kysela) [2065575]
+- ASoC: ops: Reject out of bounds values in snd_soc_put_volsw_sx() (Jaroslav Kysela) [2065575]
+- ASoC: ops: Reject out of bounds values in snd_soc_put_volsw() (Jaroslav Kysela) [2065575]
+- ASoC: simple-card-utils: Add new system-clock-fixed flag (Jaroslav Kysela) [2065575]
+- ASoC: simple-card-utils: Set sysclk on all components (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_rt5682: add 512FS MCLK clock configuration (Jaroslav Kysela) [2065575]
+- ASoC: amd: sof-mach: Add support for RT5682S and RT1019 card (Jaroslav Kysela) [2065575]
+- ASoC: soc-generic-dmaengine-pcm: separate max_buffer_size assignment (Jaroslav Kysela) [2065575]
+- ASoC: samsung: remove unneeded ret variable (Jaroslav Kysela) [2065575]
+- ASoC: codecs: remove redundant ret variable (Jaroslav Kysela) [2065575]
+- ASoC: fsl-asoc-card: Add optional dt property for setting mclk-id (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_rt5682: Add support for platform without amplifier (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_rt5682: add support for systems without i915 audio (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: Compare sdw adr directly (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: match sdw version on link_slaves_found (Jaroslav Kysela) [2065575]
+- ASoC: add support for TAS5805M digital amplifier (Jaroslav Kysela) [2065575]
+- ASoC: topology: Optimize soc_tplg_dapm_graph_elems_load behavior (Jaroslav Kysela) [2065575]
+- ASoC: topology: Allow TLV control to be either read or write (Jaroslav Kysela) [2065575]
+- ASoC: topology: Remove superfluous error prints (Jaroslav Kysela) [2065575]
+- ASoC: SOF: add flag to disable IMR restore to sof_debug (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda-loader: add IMR restore support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda-loader: add SSP helper (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: use inclusive language for SSP clocks (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp-mach: Fix Left and Right rt1019 amp devices (Jaroslav Kysela) [2065575]
+- ASoC: max9759: fix underflow in speaker_gain_control_put() (Jaroslav Kysela) [2065575]
+- ASoC: cpcap: Check for NULL pointer after calling of_get_child_by_name (Jaroslav Kysela) [2065575]
+- ASoC: simple-card: fix probe failure on platform component (Jaroslav Kysela) [2065575]
+- ASoC: xilinx: xlnx_formatter_pcm: Make buffer bytes multiple of period bytes (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Add support for hibernate memory retention mode (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Update handling of test key registers (Jaroslav Kysela) [2065575]
+- ASoC: wcd9335: Keep a RX port value for each SLIM RX mux (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: acp-mach: Change default RT1019 amp dev id (Jaroslav Kysela) [2065575]
+- ASoC: topology: Fix typo (Jaroslav Kysela) [2065575]
+- ASoC: fsl_asrc: refine the check of available clock divider (Jaroslav Kysela) [2065575]
+- ASoC: Intel: bytcr_rt5640: Add support for external GPIO jack-detect (Jaroslav Kysela) [2065575]
+- ASoC: Intel: bytcr_rt5640: Support retrieving the codec IRQ from the AMCR0F28 ACPI dev (Jaroslav Kysela) [2065575]
+- ASoC: rt5640: Add support for boards with an external jack-detect GPIO (Jaroslav Kysela) [2065575]
+- ASoC: rt5640: Allow snd_soc_component_set_jack() to override the codec IRQ (Jaroslav Kysela) [2065575]
+- ASoC: rt5640: Change jack_work to a delayed_work (Jaroslav Kysela) [2065575]
+- ASoC: rt5640: Fix possible NULL pointer deref on resume (Jaroslav Kysela) [2065575]
+- ASoC: ak4375: Fix unused function error (Jaroslav Kysela) [2065575]
+- ASoC: cs4265: Add a remove() function (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Correct handling of some registers in the cache (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Correct DSP power down (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Remove incorrect comment (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Add cs35l51/53 IDs (Jaroslav Kysela) [2065575]
+- ASoC: fsl_mqs: fix MODULE_ALIAS (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Create shared function for boost configuration (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Create shared function for setting channels (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Create shared function for errata patches (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Move power initializations to reg_sequence (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Move cs35l41_otp_unpack to shared code (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Convert tables to shared source code (Jaroslav Kysela) [2065575]
+- ASoC: samsung: idma: Check of ioremap return value (Jaroslav Kysela) [2065575]
+- ASoC: cs4265: Fix part number ID error message (Jaroslav Kysela) [2065575]
+- ALSA/ASoC: hda: move/rename snd_hdac_ext_stop_streams to hdac_stream.c (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Power on/off the speaker enable gpio pin based on DAPM callback. (Jaroslav Kysela) [2065575]
+- ASoC: mediatek: mt8173: reduce log verbosity in probe() (Jaroslav Kysela) [2065575]
+- ASoC: mediatek: mt8183: fix device_node leak (Jaroslav Kysela) [2065575]
+- ASoC: mediatek: mt8173: fix device_node leak (Jaroslav Kysela) [2065575]
+- ASoC: Intel/SOF: use set_stream() instead of set_tdm_slots() for HDAudio (Jaroslav Kysela) [2065575]
+- ASoC/soundwire: intel: simplify callbacks for params/hw_free (Jaroslav Kysela) [2065575]
+- ASOC: SOF: Intel: use snd_soc_dai_get_widget() (Jaroslav Kysela) [2065575]
+- ASoC: msm8916-wcd-analog: Use separate outputs for HPH_L/HPH_R (Jaroslav Kysela) [2065575]
+- ASoC: qcom: common: Parse "pin-switches" and "widgets" from DT (Jaroslav Kysela) [2065575]
+- ASoC: core: Add snd_soc_of_parse_pin_switches() from simple-card-utils (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: Use DEBUG log level for optional prints (Jaroslav Kysela) [2065575]
+- ASoC: SOF: debug: Use DEBUG log level for optional prints (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add clarifying comments for sof_core_debug and DSP dump flags (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Rename snd_sof_get_status() and add kernel log level parameter (Jaroslav Kysela) [2065575]
+- ASoC: SOF: dsp_arch_ops: add kernel log level parameter for oops and stack (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ops: Always print DSP Panic message but use different message (Jaroslav Kysela) [2065575]
+- ASoc: SOF: core: Update the FW boot state transition diagram (Jaroslav Kysela) [2065575]
+- ASoC: SOF: pm: Force DSP off on suspend in BOOT_FAILED state also (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Set SOF_FW_BOOT_FAILED in case we have failure during boot (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ipc: Only allow sending of an IPC in SOF_FW_BOOT_COMPLETE state (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Rename 'enum snd_sof_fw_state' to 'enum sof_fw_state' (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Move the definition of enum snd_sof_fw_state to global header (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce new firmware state: SOF_FW_BOOT_READY_OK (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce new firmware state: SOF_FW_CRASHED (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add a 'message' parameter to snd_sof_dsp_dbg_dump() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add 'non_recoverable' parameter to snd_sof_dsp_panic() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Use sof_debug_check_flag() instead of sof_core_debug directly (Jaroslav Kysela) [2065575]
+- ASoC: SOF: core: Add simple wrapper to check flags in sof_core_debug (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda-loader: Avoid re-defining the HDA_FW_BOOT_ATTEMPTS (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ops: Use dev_warn() if the panic offsets differ (Jaroslav Kysela) [2065575]
+- ASoC: codecs: ak4375: Change invert controls to a stereo switch (Jaroslav Kysela) [2065575]
+- ASoC: Add AK4375 support (Jaroslav Kysela) [2065575]
+- ASoC: bcm: Use platform_get_irq() to get the interrupt (Jaroslav Kysela) [2065575]
+- ASoC: xlnx: Use platform_get_irq() to get the interrupt (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp: Remove duplicate dependency in Kconfig (Jaroslav Kysela) [2065575]
+- ASoC: SOF: AMD: simplify return status handling (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp-config: Update sof_tplg_filename for SOF machines (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp-config: Enable SOF audio for Google chrome boards. (Jaroslav Kysela) [2065575]
+- ASoC: sunxi: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: samsung: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: rockchip: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: qcom: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: mxs: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: img: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: generic: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: ti: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: ateml: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: tlv320aic31xx: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: ssm2305: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: simple-amplifier: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: sgtl5000: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: pcm3168a: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: max9860: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: max9759: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: es7241: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: codecs: ak4118: Use dev_err_probe() helper (Jaroslav Kysela) [2065575]
+- ASoC: Intel: catpt: Streamline locals declaration for PCM-functions (Jaroslav Kysela) [2065575]
+- ASoC: Intel: catpt: Reduce size of catpt_component_open() (Jaroslav Kysela) [2065575]
+- ASoC: tegra20: spdif: Improve driver's code (Jaroslav Kysela) [2065575]
+- ASoC: tegra20: spdif: Support device-tree (Jaroslav Kysela) [2065575]
+- ASoC: tegra20: spdif: Set FIFO trigger level (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Kconfig: Make the SOF_DEVELOPER_SUPPORT depend on SND_SOC_SOF (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ipc: Add null pointer check for substream->runtime (Jaroslav Kysela) [2065575]
+- ASoC: SOF: avoid casting "const" attribute away (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: remove support for RESUME in platform trigger (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: remove support for RESUME trigger (Jaroslav Kysela) [2065575]
+- ASoC: SOF: pcm: remove support for RESUME trigger (Jaroslav Kysela) [2065575]
+- ASoC: tegra20-spdif: stop setting slave_id (Jaroslav Kysela) [2065575]
+- ASoC: AMD: fix depend/select mistake on SND_AMD_ACP_CONFIG (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: read back control data from DSP (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Drop ctrl_type parameter for snd_sof_ipc_set_get_comp_data() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: control: Do not handle control notification with component type (Jaroslav Kysela) [2065575]
+- ASoC: SOF: sof-audio: Drop the `cmd` member from struct snd_sof_control (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Drop ctrl_cmd parameter for snd_sof_ipc_set_get_comp_data() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Set control_data->cmd alongside scontrol->cmd (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Drop ipc_cmd parameter for snd_sof_ipc_set_get_comp_data() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: ipc: Rename send parameter in snd_sof_ipc_set_get_comp_data() (Jaroslav Kysela) [2065575]
+- ASoC: rt5663: Handle device_property_read_u32_array error codes (Jaroslav Kysela) [2065575]
+- ASoC: SOF: OF: Avoid reverse module dependency (Jaroslav Kysela) [2065575]
+- ASoC: SOF: sof-probes: Constify sof_probe_compr_ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Remove pm_runtime_put_autosuspend() for SOF OF device (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: add comment on JasperLake support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda-dai: remove unused fields (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: add quirks for HDAudio DMA position information (Jaroslav Kysela) [2065575]
+- ASoC: SOF: hda-stream: only enable DPIB if needed (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda-ctrl: apply symmetry for DPIB (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda-stream: limit PROCEN workaround (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: ICL: move ICL-specific ops to icl.c (Jaroslav Kysela) [2065575]
+- ASoC: test-component: fix null pointer dereference. (Jaroslav Kysela) [2065575]
+- ASoC: amd: Convert to new style DAI format definitions (Jaroslav Kysela) [2065575]
+- ASoC: AMD: acp-config: fix missing dependency on SND_SOC_ACPI (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_rt5682: Move rt1015 speaker amp to common file (Jaroslav Kysela) [2065575]
+- ASoC: rt5682s: add delay time to fix pop sound issue (Jaroslav Kysela) [2065575]
+- ASoC: Intel: boards: add 'static' qualifiers for max98390 routes (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp6x-pdm-dma: Constify static snd_soc_dai_ops (Jaroslav Kysela) [2065575]
+- ASoC: ti: davinci-mcasp: Get rid of duplicate of_node assignment (Jaroslav Kysela) [2065575]
+- ASoC: zl38060: Setup parent device and get rid of unnecessary of_node assignment (Jaroslav Kysela) [2065575]
+- ASoC: test-component: fix null pointer dereference. (Jaroslav Kysela) [2065575]
+- sound/soc: remove useless bool conversion to bool variable (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Fix undefined reference to core functions (Jaroslav Kysela) [2065575]
+- ASoC: rt5640: Fix the wrong state of the JD in the HDA header (Jaroslav Kysela) [2065575]
+- ASoC: codecs: wcd934x: remove redundant ret variable (Jaroslav Kysela) [2065575]
+- ASoC: tegra: Add master volume/mute control support (Jaroslav Kysela) [2065575]
+- ASoC: Intel: Skylake: Use NHLT API to search for blob (Jaroslav Kysela) [2065575]
+- ASoC: Intel: boards: add max98390 2/4 speakers support (Jaroslav Kysela) [2065575]
+- ASoC: intel: boards: bytcht*: Constify static snd_soc_ops (Jaroslav Kysela) [2065575]
+- ASoC: Intel: hda_dsp_common: don't multiline PCM topology warning (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: tidyup soc_pcm_pointer()'s delay update method (Jaroslav Kysela) [2065575]
+- ASoC: intel: sst-mfld-platform-pcm: add .delay support (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp-pcm-dma: add .delay support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: mediatek: Use pR/pa to print resources/physical addresses (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: Fix link problem (Jaroslav Kysela) [2065575]
+- ASoC: codecs/jz4770: Add missing gain control after DAC/ADC mixer (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: send DAI_CONFIG IPC during pause (Jaroslav Kysela) [2065575]
+- ASoC: SOF: IPC: dai: Expand DAI_CONFIG IPC flags (Jaroslav Kysela) [2065575]
+- ASoC: SOF: align the hw_free sequence with stop (Jaroslav Kysela) [2065575]
+- ASoC: SOF: pcm: move the check for prepared flag (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add a helper for freeing PCM stream (Jaroslav Kysela) [2065575]
+- ASoC: SOF: call platform hw_free for paused streams during suspend (Jaroslav Kysela) [2065575]
+- ASoC: SOF: pcm: invoke platform hw_free for STOP/SUSPEND triggers (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: reset stream before coupling host and link DMA's (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: Add a helper function for stream reset (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: clear stream before freeing the DAI widget (Jaroslav Kysela) [2065575]
+- ASoC: rt5640: Add the HDA header support (Jaroslav Kysela) [2065575]
+- ASoC: uniphier: drop selecting non-existing SND_SOC_UNIPHIER_AIO_DMA (Jaroslav Kysela) [2065575]
+- ASoC: SOF: mediatek: Add missing of_node_put() in platform_parse_resource() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: don't use list_for_each_entry_reverse() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: add .ack support for HDaudio platforms (Jaroslav Kysela) [2065575]
+- ASoC: SOF: pcm: add .ack callback support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: sof-pci-dev: use community key on all Up boards (Jaroslav Kysela) [2065575]
+- ASoC: stm32: spdifrx: add pm_runtime support (Jaroslav Kysela) [2065575]
+- ASoC: stm32: dfsdm: add pm_runtime support for audio (Jaroslav Kysela) [2065575]
+- ASoC: stm32: i2s: add pm_runtime support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: free DAI widget during stop and suspend (Jaroslav Kysela) [2065575]
+- ASoC: SOF: add support for dynamic pipelines with multi-core (Jaroslav Kysela) [2065575]
+- ASoC: SOF: hda: don't use the core op for power up/power down (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: remove sof_load_pipeline_ipc() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: CNL/ICL/APL: set core_get/core_put ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: TGL: set core_get/put ops (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add ops for core_get and core_put (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Introduce num_cores and ref count per core (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Intel: hda: expose get_chip_info() (Jaroslav Kysela) [2065575]
+- ASoC: SOF: imx8m: Implement reset callback (Jaroslav Kysela) [2065575]
+- ASoC: SOF: imx8m: Implement DSP start (Jaroslav Kysela) [2065575]
+- ASoC: SOF: imx8m: Add runtime PM / System PM support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: imx8: Add runtime PM / System PM support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: imx: Add code to manage DSP related clocks (Jaroslav Kysela) [2065575]
+- ASoC: SOF: mediatek: Add DSP system PM callback for mt8195 (Jaroslav Kysela) [2065575]
+- ASoC: SOF: mediatek: Add mt8195 dsp clock support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: mediatek: Add dai driver dsp ops callback for mt8195 (Jaroslav Kysela) [2065575]
+- ASoC: SOF: Add mt8195 device descriptor (Jaroslav Kysela) [2065575]
+- ASoC: SOF: mediatek: Add fw loader and mt8195 dsp ops to load firmware (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Add support for Mediatek AFE DAI (Jaroslav Kysela) [2065575]
+- ASoC: SOF: mediatek: Add mt8195 hardware support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add support for SOF firmware authentication (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add trace logger support (Jaroslav Kysela) [2065575]
+- ASoC: SOF: topology: Add support for AMD ACP DAIs (Jaroslav Kysela) [2065575]
+- ASoC: amd: acp-config: Remove legacy acpi based machine struct (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add Renoir PCI driver interface (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add machine driver dsp ops for Renoir platform (Jaroslav Kysela) [2065575]
+- ASoC: amd: Add module to determine ACP configuration (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add PCM stream callback for Renoir dai's (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add dai driver dsp ops callback for Renoir (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add IPC support for ACP IP block (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add fw loader and renoir dsp ops to load firmware (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add helper callbacks for ACP's DMA configuration (Jaroslav Kysela) [2065575]
+- ASoC: SOF: amd: Add Renoir ACP HW support (Jaroslav Kysela) [2065575]
+- ASoC: stm32: sai: increase channels_max limit (Jaroslav Kysela) [2065575]
+- ASoC: SOF: debug: Add support for IPC message injection (Jaroslav Kysela) [2065575]
+- ASoC: SOF: intel: Use the generic helper to get the reply (Jaroslav Kysela) [2065575]
+- ASoC: SOF: imx: Use the generic helper to get the reply (Jaroslav Kysela) [2065575]
+- ASoC: SOF: utils: Add generic function to get the reply for a tx message (Jaroslav Kysela) [2065575]
+- ASoC: SOF: i.MX: simplify Kconfig (Jaroslav Kysela) [2065575]
+- ASoC: SOF: core: Unregister machine driver before IPC and debugfs (Jaroslav Kysela) [2065575]
+- ASoC: adau1701: Replace legacy gpio interface for gpiod (Jaroslav Kysela) [2065575]
+- ASoC: Intel: add sof-nau8825 machine driver (Jaroslav Kysela) [2065575]
+- ASoC: cs35l41: DSP Support (Jaroslav Kysela) [2065575]
+- ASoC: intel: sof_sdw: add link adr order check (Jaroslav Kysela) [2065575]
+- ASoC: intel: sof_sdw: remove get_next_be_id (Jaroslav Kysela) [2065575]
+- ASoC: intel: sof_sdw: remove sof_sdw_mic_codec_mockup_init (Jaroslav Kysela) [2065575]
+- ASoC: intel: sof_sdw: remove SOF_RT715_DAI_ID_FIX quirk (Jaroslav Kysela) [2065575]
+- ASoC: intel: sof_sdw: move DMIC link id overwrite to create_sdw_dailink (Jaroslav Kysela) [2065575]
+- ASoC: intel: sof_sdw: Use a fixed DAI link id for AMP (Jaroslav Kysela) [2065575]
+- ASoC: intel: sof_sdw: rename be_index/link_id to link_index (Jaroslav Kysela) [2065575]
+- ASoC: Intel: sof_sdw: add SKU for Dell Latitude 9520 (Jaroslav Kysela) [2065575]
+- ASoC: intel: sof_sdw: return the original error number (Jaroslav Kysela) [2065575]
+- ASoC: SOF: trace: send DMA_TRACE_FREE IPC during release (Jaroslav Kysela) [2065575]
+- ASoC: SOF: IPC: update ipc_log_header() (Jaroslav Kysela) [2065575]
+- ALSA: mtpav: Don't call card private_free at probe error path (Jaroslav Kysela) [2065575]
+- ALSA: virmidi: Remove duplicated code (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for TongFang devices with pop noise (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for the Framework Laptop (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for Dell Latitude 7520 (Jaroslav Kysela) [2065575]
+- ALSA: hda - fix unused Realtek function when PM is not enabled (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for Yoga Duet 7 13ITL6 speakers (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Enable mute/micmute LEDs support for HP Laptops (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Fix mute led issue on thinkpad with cs35l41 s-codec (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for Clevo NP70PNP (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook 845/865 G9 (Jaroslav Kysela) [2065575]
+- ALSA: hda/hdmi: add HDMI codec VID for Raptorlake-P (Jaroslav Kysela) [2065575]
+- ALSA: hda/hdmi: fix warning about PCM count when used with SOF (Jaroslav Kysela) [2065575]
+- ALSA: nm256: Don't call card private_free at probe error path (Jaroslav Kysela) [2065575]
+- ALSA: rme9652: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: hdspm: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: hdsp: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: oxygen: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: lx6464es: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: cmipci: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: aw2: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: als300: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: lola: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: bt87x: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: sis7019: Fix the missing error handling (Jaroslav Kysela) [2065575]
+- ALSA: via82xx: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: sonicvibes: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: rme96: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: rme32: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: riptide: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: maestro3: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: korg1212: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: intel8x0: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: ice1724: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: fm801: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: es1968: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: es1938: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: ens137x: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: emu10k1x: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: cs5535audio: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: cs4281: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: ca0106: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: azt3328: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: au88x0: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: atiixp: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: als4000: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: ali5451: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: ad1889: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: echoaudio: Fix the missing snd_card_free() call at probe error (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: add quirk for Lenovo Thinkpad X12 speakers (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for Clevo PD50PNT (Jaroslav Kysela) [2065575]
+- ALSA: hda: Avoid unsol event during RPM suspending (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 (Jaroslav Kysela) [2065575]
+- ALSA: hda/cs8409: Add new Dolphin HW variants (Jaroslav Kysela) [2065575]
+- ALSA: hda/cs8409: Disable HSBIAS_SENSE_EN for Cyborg (Jaroslav Kysela) [2065575]
+- ALSA: hda/cs8409: Support new Warlock MLK Variants (Jaroslav Kysela) [2065575]
+- ALSA: hda/cs8409: Fix Full Scale Volume setting for all variants (Jaroslav Kysela) [2065575]
+- ALSA: hda/cs8409: Re-order quirk table into ascending order (Jaroslav Kysela) [2065575]
+- ALSA: hda/cs8409: Fix Warlock to use mono mic configuration (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Enable headset mic on Lenovo P360 (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add mute and micmut LED support for Zbook Fury 17 G9 (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add alc256-samsung-headphone fixup (Jaroslav Kysela) [2065575]
+- ALSA: pci: fix reading of swapped values from pcmreg in AC97 codec (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Fix LED on Zbook Studio G9 (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machines (Jaroslav Kysela) [2065575]
+- ALSA: cmipci: Restore aux vol on suspend/resume (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for ASUS GA402 (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 (Jaroslav Kysela) [2065575]
+- ALSA: hda: Add AlderLake-PS variant PCI ID (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for Clevo NP50PNJ (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for Clevo NP70PNJ (Jaroslav Kysela) [2065575]
+- ALSA: lola: add a check for the return of vmalloc() (Jaroslav Kysela) [2065575]
+- ALSA: echoaudio: remove redundant assignment to variable bytes (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Make use of the helper component_compare_dev_name (Jaroslav Kysela) [2065575]
+- ALSA: hda/tegra: Update scratch reg. communication (Jaroslav Kysela) [2065575]
+- ALSA: hda/tegra: Hardcode GCAP ISS value on T234 (Jaroslav Kysela) [2065575]
+- ALSA: hda/tegra: Add Tegra234 hda driver support (Jaroslav Kysela) [2065575]
+- ALSA: hda: Expose codec cleanup and power-save functions (Jaroslav Kysela) [2065575]
+- ALSA: hda: Update and expose codec register procedures (Jaroslav Kysela) [2065575]
+- ALSA: hda: Update and expose snd_hda_codec_device_init() (Jaroslav Kysela) [2065575]
+- ALSA: hda/hdmi: add keep-alive support for ADL-P and DG2 (Jaroslav Kysela) [2065575]
+- ALSA: hda: Set max DMA segment size (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Fix deadlock by COEF mutex (Jaroslav Kysela) [2065575]
+- ALSA: hda: Fix missing codec probe on Shenker Dock 15 (Jaroslav Kysela) [2065575]
+- ALSA: hda: Fix regression on forced probe mask option (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for Legion Y9000X 2019 (Jaroslav Kysela) [2065575]
+- ALSA: hda: Add PCI and HDMI IDs for Intel Raptor Lake (Jaroslav Kysela) [2065575]
+- ALSA: ca0106: Rename register macro names (Jaroslav Kysela) [2065575]
+- ALSA: hda: Fix driver index handling at re-binding (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add support for HP Laptops (Jaroslav Kysela) [2065575]
+- ALSA: hda: Skip codec shutdown in case the codec is not registered (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add quirk for ASUS GU603 (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Fix silent output on Gigabyte X570 Aorus Xtreme after reboot from Windows (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Fix silent output on Gigabyte X570S Aorus Master (newer chipset) (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add missing fixup-model entry for Gigabyte X570 ALC1220 quirks (Jaroslav Kysela) [2065575]
+- ALSA: hda: realtek: Fix race at concurrent COEF updates (Jaroslav Kysela) [2065575]
+- ALSA: hda: Fix signedness of sscanf() arguments (Jaroslav Kysela) [2065575]
+- ALSA: hda: Fix UAF of leds class devs at unbinding (Jaroslav Kysela) [2065575]
+- ALSA: hda/cs8409: Add new Warlock SKUs to patch_cs8409 (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: Make cs35l41_hda_remove() return void (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: Tidyup code (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: Make use of the helper function dev_err_probe() (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: Add missing default cases (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: Move cs35l41* calls to its own symbol namespace (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: Add calls to newly added test key function (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: Avoid overwriting register patch (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: fix speakers and micmute on HP 855 G8 (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: fix double free on error in probe() (Jaroslav Kysela) [2065575]
+- ALSA: hda: Fix dependencies of CS35L41 on SPI/I2C buses (Jaroslav Kysela) [2065575]
+- ALSA: hda: Fix dependency on ASoC cs35l41 codec (Jaroslav Kysela) [2065575]
+- ALSA: hda: ALC287: Add Lenovo IdeaPad Slim 9i 14ITL5 speaker quirk (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add CS35L41 support for Thinkpad laptops (Jaroslav Kysela) [2065575]
+- ALSA: hda/realtek: Add support for Legion 7 16ACHg6 laptop (Jaroslav Kysela) [2065575]
+- ALSA: hda: cs35l41: Add support for CS35L41 in HDA systems (Jaroslav Kysela) [2065575]
+- MAINTAINERS: Update Cirrus Logic codec driver maintainers (Jaroslav Kysela) [2065575]
+- ASoC: dt-bindings: cs42l42: Convert binding to yaml (Jaroslav Kysela) [2065575]
+- dt-bindings: remove 'interrupt-parent' from bindings (Jaroslav Kysela) [2065575]
+- ASoC: dt-bindings: cs42l42: Correct description of ts-inv (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Add warnings about DETECT_MODE and PLL_START (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Handle system suspend (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Change jack_detect_mutex to a lock of all IRQ handling (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Report full jack status when plug is detected (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Remove redundant pll_divout member (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Simplify reporting of jack unplug (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Remove redundant writes to RS_PLUG/RS_UNPLUG masks (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Remove redundant writes to DETECT_MODE (Jaroslav Kysela) [2065575]
+- ASoC: cs42l42: Add control for audio slow-start switch (Jaroslav Kysela) [2065575]
+- ALSA: mixart: Add sanity check for timer notify streams (Jaroslav Kysela) [2065575]
+- ALSA: mixart: Reduce size of mixart_timer_notify (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Restore Rane SL-1 quirk (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Don't get sample rate for MCT Trigger 5 USB-to-HDMI (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Clear MIDI port active flag after draining (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: add mapping for MSI MAG X570S Torpedo MAX. (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Limit max buffer and period sizes per time (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Increase max buffer size (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Cap upper limits of buffer/period bytes for implicit fb (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Fix undefined behavior due to shift overflowing the constant (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Add mute TLV for playback volumes on RODE NT-USB (Jaroslav Kysela) [2065575]
+- ALSA: scarlett2: Add support for the internal "standalone" switch (Jaroslav Kysela) [2065575]
+- ALSA: scarlett2: Split scarlett2_config_items[] into 3 sections (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: add mapping for new Corsair Virtuoso SE (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Don't abort resume upon errors (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: revert to IMPLICIT_FB_FIXED_DEV for M-Audio FastTrack Ultra (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: remove redundant assignment to variable c (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: Correct quirk for VF0770 (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: initialize variables that could ignore errors (Jaroslav Kysela) [2065575]
+- ALSA: usb-audio: scarlett2: Use struct_size() helper in scarlett2_usb() (Jaroslav Kysela) [2065575]
+- ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes (Jaroslav Kysela) [2065575]
+- ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction (Jaroslav Kysela) [2065575]
+- ALSA: memalloc: Add fallback SG-buffer allocations for x86 (Jaroslav Kysela) [2065575]
+- ALSA: core: Add snd_card_free_on_error() helper (Jaroslav Kysela) [2065575]
+- ALSA: pcm: Test for "silence" field in struct "pcm_format_data" (Jaroslav Kysela) [2065575]
+- ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock (Jaroslav Kysela) [2065575]
+- ALSA: pcm: Add stream lock during PCM reset ioctl operations (Jaroslav Kysela) [2065575]
+- ALSA: pcm: Fix races among concurrent prealloc proc writes (Jaroslav Kysela) [2065575]
+- ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls (Jaroslav Kysela) [2065575]
+- ALSA: pcm: Fix races among concurrent read/write and buffer changes (Jaroslav Kysela) [2065575]
+- ALSA: pcm: Fix races among concurrent hw_params and hw_free calls (Jaroslav Kysela) [2065575]
+- ALSA: oss: Release temporary buffers upon errors (Jaroslav Kysela) [2065575]
+- ALSA: oss: Fix PCM OSS buffer allocation overflow (Jaroslav Kysela) [2065575]
+- ALSA: core: Fix typo in 'PCM Timer Interface' help (Jaroslav Kysela) [2065575]
+- ALSA: seq: oss: fix typo (Jaroslav Kysela) [2065575]
+- ALSA: seq: oss: use kzalloc (Jaroslav Kysela) [2065575]
+- ALSA: memalloc: invalidate SG pages before sync (Jaroslav Kysela) [2065575]
+- ALSA: memalloc: Fix dma_need_sync() checks (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: Fix DPCM lockdep warning due to nested stream locks (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: fix BE handling of PAUSE_RELEASE (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: test refcount before triggering (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: serialize BE triggers (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: Fix and cleanup DPCM locking (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: align BE 'atomicity' with that of the FE (Jaroslav Kysela) [2065575]
+- ASoC: soc-pcm: use GFP_ATOMIC for dpcm structure (Jaroslav Kysela) [2065575]
+- ASoC: soc-component: add snd_soc_pcm_component_delay() (Jaroslav Kysela) [2065575]
+- ASoC: soc-dai: update snd_soc_dai_delay() to snd_soc_pcm_dai_delay() (Jaroslav Kysela) [2065575]
+- ALSA: core: Simplify snd_power_ref_and_wait() with the standard macro (Jaroslav Kysela) [2065575]
+- ALSA: seq: virmidi: Add a drain operation (Jaroslav Kysela) [2065575]
+- ASoC: dai_dma: remove slave_id field (Jaroslav Kysela) [2065575]
+- ALSA: seq: Set upper limit of processed events (Jaroslav Kysela) [2065575]
+- ALSA: oss: remove useless NULL check before kfree (Jaroslav Kysela) [2065575]
+- ALSA: pcm: introduce INFO_NO_REWINDS flag (Jaroslav Kysela) [2065575]
+- ALSA: pcm: unconditionally check if appl_ptr is in 0..boundary range (Jaroslav Kysela) [2065575]
+- Revert "ASoC: Intel: soc-acpi: add entries in ADL match table" (Jaroslav Kysela) [2065575]
+- devlink: hold the instance lock during eswitch_mode callbacks (Petr Oros) [2101715]
+- netdevsim: replace vfs_lock with devlink instance lock (Petr Oros) [2101715]
+- netdevsim: replace port_list_lock with devlink instance lock (Petr Oros) [2101715]
+- devlink: add explicitly locked flavor of the rate node APIs (Petr Oros) [2101715]
+- bnxt: use the devlink instance lock to protect sriov (Petr Oros) [2101715]
+- devlink: pass devlink_port to port_split / port_unsplit callbacks (Petr Oros) [2101715]
+- devlink: hold the instance lock in port_split / port_unsplit callbacks (Petr Oros) [2101715]
+- eth: mlxsw: switch to explicit locking for port registration (Petr Oros) [2101715]
+- eth: nfp: replace driver's "pf" lock with devlink instance lock (Petr Oros) [2101715]
+- eth: nfp: wrap locking assertions in helpers (Petr Oros) [2101715]
+- devlink: expose instance locking and add locked port registering (Petr Oros) [2101715]
+- ethtool: don't drop the rtnl_lock half way thru the ioctl (Petr Oros) [2101715]
+- ethtool: handle info/flash data copying outside rtnl_lock (Petr Oros) [2101715]
+- ethtool: push the rtnl_lock into dev_ethtool() (Petr Oros) [2101715]
+- mlxsw: reg: Remove PMTM register (Ivan Vecera) [2101715]
+- mlxsw: spectrum: Use PMTDB register to obtain split info (Ivan Vecera) [2101715]
+- mlxsw: reg: Add Port Module To local DataBase Register (Ivan Vecera) [2101715]
+- mlxsw: spectrum: Use PLLP to get front panel number and split number (Ivan Vecera) [2101715]
+- mlxsw: reg: Add Port Local port to Label Port mapping Register (Ivan Vecera) [2101715]
+- mlxsw: spectrum: Move port SWID set before core port init (Ivan Vecera) [2101715]
+- mlxsw: spectrum: Move port module mapping before core port init (Ivan Vecera) [2101715]
+- mlxsw: spectrum: Bump minimum FW version to xx.2008.3326 (Ivan Vecera) [2101715]
+- bpf: fix build error due to missing bpf_perf_event.h header (Desnes A. Nunes do Rosario) [1908140]
+- powerpc/bpf: Fix use of user_pt_regs in uapi (Desnes A. Nunes do Rosario) [1908140]
+- net: ena: Do not waste napi skb cache (Michal Schmidt) [2097644]
+- net: ena: Extract recurring driver reset code into a function (Michal Schmidt) [2097644]
+- net: ena: Change the name of bad_csum variable (Michal Schmidt) [2097644]
+- net: ena: Add debug prints for invalid req_id resets (Michal Schmidt) [2097644]
+- net: ena: Remove ena_calc_queue_size_ctx struct (Michal Schmidt) [2097644]
+- net: ena: Move reset completion print to the reset function (Michal Schmidt) [2097644]
+- net: ena: Remove redundant return code check (Michal Schmidt) [2097644]
+- net: ena: Change ENI stats support check to use capabilities field (Michal Schmidt) [2097644]
+- net: ena: Add capabilities field with support for ENI stats capability (Michal Schmidt) [2097644]
+- net: ena: Change return value of ena_calc_io_queue_size() to void (Michal Schmidt) [2097644]
+- powerpc/ptrace: replace ptrace_report_syscall() with a tracehook call (Desnes A. Nunes do Rosario) [1992947]
+- powerpc/ptrace: Add support for PTRACE_SYSEMU (Desnes A. Nunes do Rosario) [1992947]
+- selftests/powerpc: New PTRACE_SYSEMU test (Desnes A. Nunes do Rosario) [1992947]
+- powerpc: Redefine TIF_32BITS thread flag (Desnes A. Nunes do Rosario) [1992947]
+- redhat: fix libnl3-devel BuildRequires for intel-speed-select (Jarod Wilson)
+
+* Thu Aug 04 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-415.el8]
+- redhat: enable mtty module for internal testing (Jarod Wilson) [2071992]
+- tools/power/x86/intel-speed-select: v1.12 release (Martin McConnell) [2072658]
+- tools/power/x86/intel-speed-select: HFI support (Martin McConnell) [2072658]
+- tools/power/x86/intel-speed-select: OOB daemon mode (Martin McConnell) [2072658]
+- tools/power/x86/intel-speed-select: v1.11 release (Martin McConnell) [2072658]
+- tools/power/x86/intel-speed-select: Update max frequency (Martin McConnell) [2072658]
+- Spec fixes for intel-speed-select (Martin McConnell) [2072658]
+- Add BuildRequires libnl3-devel for intel-speed-select (Martin McConnell) [2072658]
+- xfs: fix soft lockup via spinning in filestream ag selection loop (Brian Foster) [2033293]
+- net: ping6: Fix memleak in ipv6_renew_options(). (Ivan Vecera) [2112339]
+- Input: i8042 - Add quirk for Fujitsu Lifebook T725 (Benjamin Tissoires) [2019942]
+- HID: amd_sfh: Modify the hid name (Benjamin Tissoires) [2090040]
+- HID: amd_sfh: Modify the bus name (Benjamin Tissoires) [2090040]
+- HID: amd_sfh: Add support for sensor discovery (Benjamin Tissoires) [2090040]
+- igc: Reinstate IGC_REMOVED logic and implement it properly (Corinna Vinschen) [2037969]
+- intel/igc:fix repeated words in comments (Corinna Vinschen) [2037969]
+- intel: remove unused macros (Corinna Vinschen) [2037969]
+- igc: Change type of the 'igc_check_downshift' method (Corinna Vinschen) [2037969]
+- igc: Remove unused phy_type enum (Corinna Vinschen) [2037969]
+- igc: Remove igc_set_spd_dplx method (Corinna Vinschen) [2037969]
+- igc: Fix suspending when PTM is active (Corinna Vinschen) [2037969]
+- igc: Fix BUG: scheduling while atomic (Corinna Vinschen) [2037969 2014971]
+- igc: Fix infinite loop in release_swfw_sync (Corinna Vinschen) [2037969]
+- igc: igc_write_phy_reg_gpy: drop premature return (Corinna Vinschen) [2037969]
+- igc: igc_read_phy_reg_gpy: drop premature return (Corinna Vinschen) [2037969]
+- igc: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb (Corinna Vinschen) [2037969]
+- igc: Remove useless DMA-32 fallback configuration (Corinna Vinschen) [2037969]
+- igc: Fix TX timestamp support for non-MSI-X platforms (Corinna Vinschen) [2037969]
+- igc: Do not enable crosstimestamping for i225-V models (Corinna Vinschen) [2037969]
+- igc: switch to napi_build_skb() (Corinna Vinschen) [2037969]
+- igc: Remove obsolete define (Corinna Vinschen) [2037969]
+- igc: Remove obsolete mask (Corinna Vinschen) [2037969]
+- igc: Remove obsolete nvm type (Corinna Vinschen) [2037969]
+- igc: Remove unused phy type (Corinna Vinschen) [2037969]
+- igc: Remove unused _I_PHY_ID define (Corinna Vinschen) [2037969]
+- igc: enable XDP metadata in driver (Corinna Vinschen) [2037969]
+- intel_idle: Fix false positive RCU splats due to incorrect hardirqs state (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/spec_ctrl: Enable RHEL only ibrs_always & retpoline,ibrs_user spectre_v2 options (Waiman Long) [2090229]
+- KVM: emulate: do not adjust size of fastop and setcc subroutines (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/kvm: fix FASTOP_SIZE when return thunks are enabled (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- efi/x86: use naked RET on mixed mode call wrapper (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Remove apostrophe typo (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/speculation: Use DECLARE_PER_CPU for x86_spec_ctrl_current (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/entry: Remove UNTRAIN_RET from native_irq_return_ldt (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Mark retbleed_strings static (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/asm/32: Fix ANNOTATE_UNRET_SAFE use on 32-bit (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/speculation: Disable RRSBA behavior (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/kexec: Disable RET on kexec (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Do not enable IBPB-on-entry when IBPB is not supported (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Add Cannon lake to RETBleed affected CPU list (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- redhat/configs: Add new mitigation configs for RetBleed CVEs (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/retbleed: Add fine grained Kconfig knobs (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/cpu/amd: Enumerate BTC_NO (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/common: Stamp out the stepping madness (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- KVM: VMX: Prevent RSB underflow before vmenter (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/speculation: Fill RSB on vmexit for IBRS (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- KVM: VMX: Fix IBRS handling after vmexit (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- KVM: VMX: Prevent guest RSB poisoning attacks with eIBRS (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- KVM: VMX: Convert launched argument to flags (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- KVM: VMX: Flatten __vmx_vcpu_run() (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/speculation: Remove x86_spec_ctrl_mask (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/speculation: Use cached host SPEC_CTRL value for guest entry/exit (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/speculation: Fix SPEC_CTRL write on SMT state change (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/speculation: Fix firmware entry SPEC_CTRL handling (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/cpu/amd: Add Spectral Chicken (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Do IBPB fallback check only once (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Add retbleed=ibpb (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- objtool: Update Retpoline validation (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- intel_idle: Disable IBRS during long idle (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Report Intel retbleed vulnerability (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Split spectre_v2_select_mitigation() and spectre_v2_user_select_mitigation() (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/speculation: Add spectre_v2=ibrs option to support Kernel IBRS (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Optimize SPEC_CTRL MSR writes (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/entry: Add kernel IBRS implementation (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Keep a per-CPU IA32_SPEC_CTRL value (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Enable STIBP for JMP2RET (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Add AMD retbleed= boot parameter (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bugs: Report AMD retbleed vulnerability (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86: Add magic AMD return-thunk (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86: Use return-thunk in asm code (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/sev: Avoid using __x86_return_thunk (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/vsyscall_emu/64: Don't use RET in vsyscall emulation (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/kvm: Fix SETcc emulation for return thunks (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/bpf: Use alternative RET encoding (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/ftrace: Use alternative RET encoding (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86,objtool: Create .return_sites (Josh Poimboeuf) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86: Undo return-thunk damage (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/retpoline: Use -mfunction-return (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/retpoline: Swizzle retpoline thunk (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/retpoline: Cleanup some #ifdefery (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/cpufeatures: Move RETPOLINE flags to word 11 (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/kvm/vmx: Make noinstr clean (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- arch/x86/boot/compressed: Add -D__DISABLE_EXPORTS to kbuild flags (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86: (Ab)use __DISABLE_EXPORTS to disable RETHUNK in real mode (Waiman Long) [2090229] {CVE-2022-23816 CVE-2022-23825 CVE-2022-29900 CVE-2022-29901}
+- x86/entry: Remove skip_r11rcx (Waiman Long) [2090229]
+- cpuidle,intel_idle: Fix CPUIDLE_FLAG_IRQ_ENABLE (Waiman Long) [2090229]
+- x86/speculation/srbds: Do not try to turn mitigation off when not supported (Waiman Long) [2090229]
+- x86/ibt,paravirt: Use text_gen_insn() for paravirt_patch() (Waiman Long) [2090229]
+- x86/text-patching: Make text_gen_insn() play nice with ANNOTATE_NOENDBR (Waiman Long) [2090229]
+- x86/module: Fix the paravirt vs alternative order (Waiman Long) [2090229]
+- x86: Add straight-line-speculation mitigation (Waiman Long) [2090229]
+- x86: Prepare inline-asm for straight-line-speculation (Waiman Long) [2090229]
+- x86: Prepare asm files for straight-line-speculation (Waiman Long) [2090229]
+- x86: Use -mindirect-branch-cs-prefix for RETPOLINE builds (Waiman Long) [2090229]
+- x86: Move RETPOLINE*_CFLAGS to arch Makefile (Waiman Long) [2090229]
+- x86/entry: Add a fence for kernel entry SWAPGS in paranoid_entry() (Waiman Long) [2090229]
+- Makefile: remove stale cc-option checks (Waiman Long) [2090229]
+- tools headers: Remove broken definition of __LITTLE_ENDIAN (Waiman Long) [2090229]
+- tools arch: Update arch/x86/lib/mem{cpy,set}_64.S copies used in 'perf bench mem memcpy' (Waiman Long) [2090229]
+- x86: Add insn_decode_kernel() (Waiman Long) [2090229]
+- tools/insn: Restore the relative include paths for cross building (Waiman Long) [2090229]
+- x86/alternative: Use insn_decode() (Waiman Long) [2090229]
+- x86/insn: Add an insn_decode() API (Waiman Long) [2090229]
+- x86/insn: Rename insn_decode() to insn_decode_from_regs() (Waiman Long) [2090229]
+- x86/paravirt: Add new features for paravirt patching (Waiman Long) [2090229]
+- x86/alternative: Support not-feature (Waiman Long) [2090229]
+- x86/alternative: Merge include files (Waiman Long) [2090229]
+- objtool: Fix error handling for STD/CLD warnings (Waiman Long) [2090229]
+- x86/alternatives: Teach text_poke_bp() to emulate RET (Waiman Long) [2090229]
+- x86/ftrace: Have ftrace trampolines turn read-only at the end of system boot up (Waiman Long) [2090229]
+- x86/speculation: Change FILL_RETURN_BUFFER to work with objtool (Waiman Long) [2090229]
+- objtool: Add support for intra-function calls (Waiman Long) [2090229]
+- objtool: Rework allocating stack_ops on decode (Waiman Long) [2090229]
+- objtool: Better handle IRET (Waiman Long) [2090229]
+- objtool: Support multiple stack_op per instruction (Waiman Long) [2090229]
+- objtool: Make BP scratch register warning more robust (Waiman Long) [2090229]
+- x86/kexec: Make relocate_kernel_64.S objtool clean (Waiman Long) [2090229]
+- objtool: Introduce validate_return() (Waiman Long) [2090229]
+- Makefile: disallow data races on gcc-10 as well (Waiman Long) [2090229]
+- objtool: Improve call destination function detection (Waiman Long) [2090229]
+- x86/alternatives: Implement a better poke_int3_handler() completion scheme (Waiman Long) [2090229]
+- lib/: fix Kconfig indentation (Waiman Long) [2090229]
+- x86/alternatives: Use INT3_INSN_SIZE (Waiman Long) [2090229]
+- x86/kprobes: Fix ordering while text-patching (Waiman Long) [2090229]
+- x86/kprobes: Convert to text-patching.h (Waiman Long) [2090229]
+- x86/alternative: Shrink text_poke_loc (Waiman Long) [2090229]
+- x86/alternative: Remove text_poke_loc::len (Waiman Long) [2090229]
+- x86/ftrace: Use text_gen_insn() (Waiman Long) [2090229]
+- x86/alternative: Add text_opcode_size() (Waiman Long) [2090229]
+- x86/ftrace: Use text_poke() (Waiman Long) [2090229]
+- x86/ftrace: Use vmalloc special flag (Waiman Long) [2090229]
+- x86/ftrace: Explicitly include vmalloc.h for set_vm_flush_reset_perms() (Waiman Long) [2090229]
+- x86/alternatives: Add and use text_gen_insn() helper (Waiman Long) [2090229]
+- x86/alternatives, jump_label: Provide better text_poke() batching interface (Waiman Long) [2090229]
+- x86/asm: Annotate relocate_kernel_{32,64}.c (Waiman Long) [2090229]
+- x86: kprobes: Prohibit probing on instruction which has emulate prefix (Waiman Long) [2090229]
+- x86: Correct misc typos (Waiman Long) [2090229]
+- x86/speculation/mds: Apply more accurate check on hypervisor platform (Waiman Long) [2090229]
+- objtool: Convert insn type to enum (Waiman Long) [2090229]
+- objtool: Track original function across branches (Waiman Long) [2090229]
+- objtool: Rename elf_open() to prevent conflict with libelf from elftoolchain (Waiman Long) [2090229]
+- x86/ftrace: Make enable parameter bool where applicable (Waiman Long) [2090229]
+- x86/CPU/AMD: Don't force the CPB cap when running under a hypervisor (Waiman Long) [2090229]
+- objtool: Fix function fallthrough detection (Waiman Long) [2090229]
+- x86/paravirt: Detect over-sized patching bugs in paravirt_patch_call() (Waiman Long) [2090229]
+- x86/cpu/amd: Exclude 32bit only assembler from 64bit build (Waiman Long) [2090229]
+- x86/asm: Mark all top level asm statements as .text (Waiman Long) [2090229]
+- x86/cpu/bugs: Use __initconst for 'const' init data (Waiman Long) [2090229]
+- objtool: Add Direction Flag validation (Waiman Long) [2090229]
+- objtool: Rewrite add_ignores() (Waiman Long) [2090229]
+- x86/nospec, objtool: Introduce ANNOTATE_IGNORE_ALTERNATIVE (Waiman Long) [2090229]
+- x86/ftrace: Fix warning and considate ftrace_jmp_replace() and ftrace_call_replace() (Waiman Long) [2090229]
+- kbuild: Disable extra debugging info in .s output (Waiman Long) [2090229]
+- x86/CPU/AMD: Set the CPB bit unconditionally on F17h (Waiman Long) [2090229]
+- x86/alternatives: Print containing function (Waiman Long) [2090229]
+- x86/ftrace: Do not call function graph from dynamic trampolines (Waiman Long) [2090229]
+- ftrace: Create new ftrace_internal.h header (Waiman Long) [2090229]
+- kprobes/x86: Fix instruction patching corruption when copying more than one RIP-relative instruction (Waiman Long) [2090229]
+- tracing/Makefile: Fix handling redefinition of CC_FLAGS_FTRACE (Waiman Long) [2090229]
+- x86/paravirt: Remove unused paravirt bits (Waiman Long) [2090229]
+- x86/paravirt: Remove clobbers parameter from paravirt patch functions (Waiman Long) [2090229]
+- x86/paravirt: Make paravirt_patch_call() and paravirt_patch_jmp() static (Waiman Long) [2090229]
+- x86/l1tf: Fix build error seen if CONFIG_KVM_INTEL is disabled (Waiman Long) [2090229]
+- ftrace: Remove unused pointer ftrace_swapper_pid (Waiman Long) [2090229]
+- x86/spec_ctrl: Temporarily remove RHEL specific IBRS code (Waiman Long) [2090229]
+- net: bonding: fix use-after-free after 802.3ad slave unbind (Jonathan Toppins) [2109327]
+- net: bonding: fix possible NULL deref in rlb code (Jonathan Toppins) [2109327]
+- bonding: ARP monitor spams NETDEV_NOTIFY_PEERS notifiers (Jonathan Toppins) [2109327]
+- bonding: do not discard lowest hash bit for non layer3+4 hashing (Jonathan Toppins) [2109327]
+- bonding: helper macro __ATTR_RO to make code more clear (Jonathan Toppins) [2109327]
+- bonding: force carrier update when releasing slave (Jonathan Toppins) [2109327]
+- bonding: fix data-races around agg_select_timer (Jonathan Toppins) [2109327]
+- bonding: switch bond_net_exit() to batch mode (Jonathan Toppins) [2109327]
+- bonding: pair enable_port with slave_arr_updates (Jonathan Toppins) [2109327]
+- net: bonding: fix bond_xmit_broadcast return value error bug (Jonathan Toppins) [2109327]
+- tracing: Show size of requested perf buffer (Michael Petlan) [2103836]
+- tracing: Increase PERF_MAX_TRACE_SIZE to handle Sentinel1 and docker together (Michael Petlan) [2103836]
+- drivers/base/memory: determine and store zone for single-zone memory blocks (David Hildenbrand) [1997803]
+- drivers/base/node: rename link_mem_sections() to register_memory_block_under_node() (David Hildenbrand) [1997803]
+- drivers/base/node: consolidate node device subsystem initialization in node_dev_init() (David Hildenbrand) [1997803]
+- drivers/base/memory: introduce memory_block_{online,offline} (David Hildenbrand) [1997803]
+- mm/memory_hotplug: remove stale function declarations (David Hildenbrand) [1997803]
+- mm/memory_hotplug: remove HIGHMEM leftovers (David Hildenbrand) [1997803]
+- redhat/configs: remove CONFIG_MEMORY_HOTPLUG_SPARSE (David Hildenbrand) [1997803]
+- mm/memory_hotplug: restrict CONFIG_MEMORY_HOTPLUG to 64 bit (David Hildenbrand) [1997803]
+- mm/memory_hotplug: remove CONFIG_MEMORY_HOTPLUG_SPARSE (David Hildenbrand) [1997803]
+- mm/memory_hotplug: remove CONFIG_X86_64_ACPI_NUMA dependency from CONFIG_MEMORY_HOTPLUG (David Hildenbrand) [1997803]
+- memory: remove unused CONFIG_MEM_BLOCK_SIZE (David Hildenbrand) [1997803]
+- mm/memory_hotplug: disable the functionality for 32b (David Hildenbrand) [1997803]
+- include/linux/memory.h: drop fields 'hw' and 'phys_callback' from struct memory_block (David Hildenbrand) [1997803]
+- iommu/vt-d: Fix PCI bus rescan device hot add (Jerry Snitselaar) [2101591]
+- iommu/vt-d: Fix RID2PASID setup/teardown failure (Jerry Snitselaar) [2101591]
+
+* Mon Aug 01 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-414.el8]
+- cifs: support share failover when remounting (Ronnie Sahlberg) [2095258]
+- cifs: avoid starvation when refreshing dfs cache (Ronnie Sahlberg) [2095258]
+- cifs: fix path comparison and hash calc (Ronnie Sahlberg) [2095258]
+- cifs: handle different charsets in dfs cache (Ronnie Sahlberg) [2095258]
+- spi: amd: Limit max transfer and message size (Sudheesh Mavila) [2047996]
+- redhat/configs: enable CONFIG_SPI_AMD for x86_64 (Sudheesh Mavila) [2047996]
+- spi: amd: Fix building without ACPI enabled (Sudheesh Mavila) [2047996]
+- spi: amd: Add support for version AMDI0062 (Sudheesh Mavila) [2047996]
+- spi: amd: Remove needless rom_addr variable (Sudheesh Mavila) [2047996]
+- spi: amd: Use iopoll for busy waiting (Sudheesh Mavila) [2047996]
+- spi: amd: Don't wait for a write-only transfer to finish (Sudheesh Mavila) [2047996]
+- spi: amd: Remove unneeded variable (Sudheesh Mavila) [2047996]
+- spi: amd: Refactor amd_spi_busy_wait (Sudheesh Mavila) [2047996]
+- spi: amd: Refactor code to use less spi_master_get_devdata (Sudheesh Mavila) [2047996]
+- spi: amd: Use devm_platform_ioremap_resource() in amd_spi_probe (Sudheesh Mavila) [2047996]
+- spi: spi-amd: Do not define 'struct acpi_device_id' when !CONFIG_ACPI (Sudheesh Mavila) [2047996]
+- spi: amd: Drop superfluous member from struct amd_spi (Sudheesh Mavila) [2047996]
+- spi: amd: Fix refcount underflow on remove (Sudheesh Mavila) [2047996]
+- spi: amd: Drop duplicate driver data assignments (Sudheesh Mavila) [2047996]
+- spi: amd: Pass probe errors back to driver core (Sudheesh Mavila) [2047996]
+- spi: amd: Fix duplicate iounmap in error path (Sudheesh Mavila) [2047996]
+- spi: spi-amd: Fix a NULL vs IS_ERR() check in amd_spi_probe() (Sudheesh Mavila) [2047996]
+- spi: spi-amd: fix warning (Sudheesh Mavila) [2047996]
+- spi: spi-amd: Add AMD SPI controller driver support (Sudheesh Mavila) [2047996]
+- selftests/tc-testings: Be compatible with newer tc output (Hangbin Liu) [2100322]
+- selftests/net: enable lo.accept_local in psock_snd test (Hangbin Liu) [2100322]
+- selftests/net: Use kselftest skip code for skipped tests (Hangbin Liu) [2100322]
+- Bluetooth: SCO: Fix sco_send_frame returning skb->len (Gopal Tiwari) [1984641]
+- Bluetooth: Add bt_skb_sendmsg helper (Gopal Tiwari) [1984641]
+- Bluetooth: SCO: Replace use of memcpy_from_msg with bt_skb_sendmsg (Gopal Tiwari) [1984641]
+- Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() (Gopal Tiwari) [1984641]
+- platform/mellanox: mlxbf-pmc: Fix an IS_ERR() vs NULL bug in mlxbf_pmc_map_counters (Mark Langsdorf) [2068297]
+- platform/mellanox: mlxreg-lc: fix error code in mlxreg_lc_create_static_devices() (Mark Langsdorf) [2068297]
+- platform/mellanox: mlxreg-lc: Add initial support for Nvidia line card devices (Mark Langsdorf) [2068297]
+- platform/mellanox: mlxreg-io: Extend number of hwmon attributes (Mark Langsdorf) [2068297]
+- platform/mellanox: mlxreg-hotplug: Extend logic for hotplug devices operations (Mark Langsdorf) [2068297]
+- platform_data/mlxreg: Add new type to support modular systems (Mark Langsdorf) [2068297]
+- platform/mellanox: mlxreg-io: Fix read access of n-bytes size attributes (Mark Langsdorf) [2068297]
+- platform/mellanox: mlxbf-pmc: fix kernel-doc notation (Mark Langsdorf) [2068297]
+- platform/mellanox: Typo fix in the file mlxbf-bootctl.c (Mark Langsdorf) [2068297]
+- redhat/configs: Support QAT devices for x86 only (Vladis Dronov) [2040724]
+- crypto: qat - expose device config through sysfs for 4xxx (Vladis Dronov) [2040724]
+- crypto: qat - relocate and rename adf_sriov_prepare_restart() (Vladis Dronov) [2040724]
+- crypto: qat - change behaviour of adf_cfg_add_key_value_param() (Vladis Dronov) [2040724]
+- crypto: qat - expose device state through sysfs for 4xxx (Vladis Dronov) [2040724]
+- crypto: qat - Removes the x86 dependency on the QAT drivers (Vladis Dronov) [2040724]
+- crypto: qat - replace get_current_node() with numa_node_id() (Vladis Dronov) [2040724]
+- crypto: qat - add support for 401xx devices (Vladis Dronov) [2040724]
+- crypto: qat - re-enable registration of algorithms (Vladis Dronov) [2040724]
+- crypto: qat - honor CRYPTO_TFM_REQ_MAY_SLEEP flag (Vladis Dronov) [2040724]
+- crypto: qat - add param check for DH (Vladis Dronov) [2040724]
+- crypto: qat - add param check for RSA (Vladis Dronov) [2040724]
+- crypto: qat - remove dma_free_coherent() for DH (Vladis Dronov) [2040724]
+- crypto: qat - remove dma_free_coherent() for RSA (Vladis Dronov) [2040724]
+- crypto: qat - fix memory leak in RSA (Vladis Dronov) [2040724]
+- crypto: qat - add backlog mechanism (Vladis Dronov) [2040724]
+- crypto: qat - refactor submission logic (Vladis Dronov) [2040724]
+- crypto: qat - use pre-allocated buffers in datapath (Vladis Dronov) [2040724]
+- crypto: qat - set to zero DH parameters before free (Vladis Dronov) [2040724]
+- crypto: qat - Fix unsigned function returning negative constant (Vladis Dronov) [2040724]
+- crypto: qat - remove line wrapping for pfvf_ops functions (Vladis Dronov) [2040724]
+- crypto: qat - use u32 variables in all GEN4 pfvf_ops (Vladis Dronov) [2040724]
+- crypto: qat - replace disable_vf2pf_interrupts() (Vladis Dronov) [2040724]
+- crypto: qat - leverage the GEN2 VF mask definiton (Vladis Dronov) [2040724]
+- crypto: qat - rework the VF2PF interrupt handling logic (Vladis Dronov) [2040724]
+- crypto: qat - fix off-by-one error in PFVF debug print (Vladis Dronov) [2040724]
+- crypto: qat - fix wording and formatting in code comment (Vladis Dronov) [2040724]
+- crypto: qat - test PFVF registers for spurious interrupts on GEN4 (Vladis Dronov) [2040724]
+- crypto: qat - add check for invalid PFVF protocol version 0 (Vladis Dronov) [2040724]
+- crypto: qat - add missing restarting event notification in VFs (Vladis Dronov) [2040724]
+- crypto: qat - remove unnecessary tests to detect PFVF support (Vladis Dronov) [2040724]
+- crypto: qat - remove unused PFVF stubs (Vladis Dronov) [2040724]
+- crypto: qat - remove unneeded braces (Vladis Dronov) [2040724]
+- crypto: qat - fix ETR sources enabled by default on GEN2 devices (Vladis Dronov) [2040724]
+- crypto: qat - set COMPRESSION capability for DH895XCC (Vladis Dronov) [2040724]
+- crypto: qat - set CIPHER capability for DH895XCC (Vladis Dronov) [2040724]
+- crypto: qat - stop using iommu_present() (Vladis Dronov) [2040724]
+- crypto: qat - fix initialization of pfvf rts_map_msg structures (Vladis Dronov) [2040724]
+- crypto: qat - fix initialization of pfvf cap_msg structures (Vladis Dronov) [2040724]
+- crypto: qat - remove unneeded assignment (Vladis Dronov) [2040724]
+- crypto: qat - disable registration of algorithms (Vladis Dronov) [2040724]
+- crypto: qat - enable power management for QAT GEN4 (Vladis Dronov) [2040724]
+- crypto: qat - move and rename GEN4 error register definitions (Vladis Dronov) [2040724]
+- crypto: qat - add misc workqueue (Vladis Dronov) [2040724]
+- crypto: qat - don't cast parameter in bit operations (Vladis Dronov) [2040724]
+- crypto: qat - fix access to PFVF interrupt registers for GEN4 (Vladis Dronov) [2040724]
+- crypto: qat - fix a signedness bug in get_service_enabled() (Vladis Dronov) [2040724]
+- dlm: fix missing lkb refcount handling (Alexander Aring) [2084606]
+- scsi: storvsc: Fix unsigned comparison to zero (Mohammed Gamal) [2020774]
+- scsi: storvsc: Fix validation for unsolicited incoming packets (Mohammed Gamal) [2020774]
+- scsi: storvsc: Fix storvsc_queuecommand() memory leak (Mohammed Gamal) [2020774]
+- x86/kvm: Add kexec support for SEV Live Migration. (Mohammed Gamal) [2018614]
+- x86/kvm: Add guest support for detecting and enabling SEV Live Migration feature. (Mohammed Gamal) [2018614]
+- mm: x86: Invoke hypercall when page encryption status is changed (Mohammed Gamal) [2018614]
+- hv_netvsc: Fix potential dereference of NULL pointer (Mohammed Gamal) [2086611]
+- hv_netvsc: Add support for XDP_REDIRECT (Mohammed Gamal) [2086611]
+- hv_netvsc: Print value of invalid ID in netvsc_send_{completion,tx_complete}() (Mohammed Gamal) [2086611]
+- net: hyperv: remove use of bpf_op_t (Mohammed Gamal) [2086611]
+- hv_netvsc: Add check for kvmalloc_array (Mohammed Gamal) [2086611]
+- net: netvsc: remove break after return (Mohammed Gamal) [2086611]
+- hv_netvsc: Use bitmap_zalloc() when applicable (Mohammed Gamal) [2086611]
+- SMB3: EBADF/EIO errors in rename/open caused by race condition in smb2_compound_op (Ronnie Sahlberg) [2108871]
+- vsock/virtio: enable VQs early on probe (Stefano Garzarella) [2107594]
+- vsock/virtio: initialize vdev->priv before using VQs (Stefano Garzarella) [2107594]
+- vsock: each transport cycles only on its own sockets (Stefano Garzarella) [2107594]
+- vhost/vsock: don't check owner in vhost_vsock_stop() while releasing (Stefano Garzarella) [2107594]
+- vsock: remove vsock from connected table when connect is interrupted by a signal (Stefano Garzarella) [2107594]
+- ipv6: take care of disable_policy when restoring routes (Andrea Claudi) [2103894]
+- tools/testing/nvdimm: Fix security_init() symbol collision (Jeff Moyer) [2096791]
+- redhat: make kernel-devel pkgs Requires elfutils and gcc (Jarod Wilson) [1701282]
+- xhci: Fix null pointer dereference in resume if xhci has only one roothub (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Move null pinter check to proper place (Dean Nelson) [2061791]
+- xhci: Don't defer primary roothub registration if there is only one roothub (Dean Nelson) [2061791]
+- USB: serial: pl2303: fix type detection for odd device (Dean Nelson) [2061791]
+- media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init (Dean Nelson) [2061791]
+- usb: xhci-mtk: remove bandwidth budget table (Dean Nelson) [2061791]
+- usb: xhci-mtk: fix fs isoc's transfer error (Dean Nelson) [2061791]
+- xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI (Dean Nelson) [2061791]
+- xhci: prevent U2 link power state if Intel tier policy prevented U1 (Dean Nelson) [2061791]
+- xhci: use generic command timer for stop endpoint commands. (Dean Nelson) [2061791]
+- usb: host: xhci-plat: omit shared hcd if either root hub has no ports (Dean Nelson) [2061791]
+- usb: host: xhci-plat: prepare operation w/o shared hcd (Dean Nelson) [2061791]
+- usb: host: xhci-plat: create shared hcd after having added main hcd (Dean Nelson) [2061791]
+- xhci: prepare for operation w/o shared hcd (Dean Nelson) [2061791]
+- xhci: factor out parts of xhci_gen_setup() (Dean Nelson) [2061791]
+- xhci: Set HCD flag to defer primary roothub registration (Dean Nelson) [2061791]
+- usb: core: hcd: Add support for deferring roothub registration (Dean Nelson) [2061791]
+- thunderbolt: Fix buffer allocation of devices with no DisplayPort adapters (Dean Nelson) [2061791]
+- media: uvcvideo: Fix bit overflow in uvc_probe_video (Dean Nelson) [2061791]
+- media: uvcvideo: Fix missing check to determine if element is found in list (Dean Nelson) [2061791]
+- usb: typec: tcpci: Don't skip cleanup in .remove() on error (Dean Nelson) [2061791]
+- usb: cdc-wdm: fix reading stuck on device close (Dean Nelson) [2061791]
+- thunderbolt: Ignore port locked error in tb_port_wait_for_link_width() (Dean Nelson) [2061791]
+- thunderbolt: Add debug logging when lane is enabled/disabled (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Return proper request status (Dean Nelson) [2061791]
+- usb: typec: mux: Check dev_set_name() return value (Dean Nelson) [2061791]
+- usb: dwc3: pci: Fix pm_runtime_get_sync() error checking (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Replace list_for_each_entry_safe() if using giveback (Dean Nelson) [2061791]
+- usb: dwc3: core: Only handle soft-reset in DCTL (Dean Nelson) [2061791]
+- usb: dwc3: Try usb-role-switch first in dwc3_drd_init (Dean Nelson) [2061791]
+- usb: dwc3: core: Fix tx/rx threshold settings (Dean Nelson) [2061791]
+- USB: storage: karma: fix rio_karma_init return (Dean Nelson) [2061791]
+- xhci: Enable runtime PM on second Alderlake controller (Dean Nelson) [2061791]
+- usb: misc: fix improper handling of refcount in uss720_probe() (Dean Nelson) [2061791]
+- usb: typec: ucsi: Fix role swapping (Dean Nelson) [2061791]
+- usb: typec: ucsi: Fix reuse of completion structure (Dean Nelson) [2061791]
+- thunderbolt: Use different lane for second DisplayPort tunnel (Dean Nelson) [2061791]
+- thunderbolt: Dump path config space entries during discovery (Dean Nelson) [2061791]
+- thunderbolt: Use decimal number with port numbers (Dean Nelson) [2061791]
+- xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms (Dean Nelson) [2061791]
+- xhci: stop polling roothubs after shutdown (Dean Nelson) [2061791]
+- USB: Fix xhci event ring dequeue pointer ERDP update issue (Dean Nelson) [2061791]
+- USB: storage: ums-realtek: fix error code in rts51x_read_mem() (Dean Nelson) [2061791]
+- usb: early: xhci-dbc: Fix xdbc number parsing (Dean Nelson) [2061791]
+- usb: early: xhci-dbc: Remove duplicate keep parsing (Dean Nelson) [2061791]
+- USB: serial: pl2303: fix GS type detection (Dean Nelson) [2061791]
+- usb: host: xhci: Remove some unnecessary return value initializations (Dean Nelson) [2061791]
+- usb: host: xhci: add blank line in xhci_halt() (Dean Nelson) [2061791]
+- usb: host: xhci: update hci_version operation in xhci_gen_setup() (Dean Nelson) [2061791]
+- usb: host: xhci: fix a comment typo in xhci_mem_init() (Dean Nelson) [2061791]
+- usb: host: xhci: use ffs() in xhci_mem_init() (Dean Nelson) [2061791]
+- xhci: fix runtime PM imbalance in USB2 resume (Dean Nelson) [2061791]
+- xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() (Dean Nelson) [2061791]
+- xhci: fix garbage USBSTS being logged in some cases (Dean Nelson) [2061791]
+- xhci: make xhci_handshake timeout for xhci_reset() adjustable (Dean Nelson) [2061791]
+- xhci: omit mem read just after allocation of trb (Dean Nelson) [2061791]
+- Revert "USB: serial: ch341: add new Product ID for CH341A" (Dean Nelson) [2061791]
+- usb: xhci: fix minmax.cocci warnings (Dean Nelson) [2061791]
+- usb: host: xhci: drop redundant checks (Dean Nelson) [2061791]
+- xhci: Allocate separate command structures for each LPM command (Dean Nelson) [2061791]
+- xhci: dbgtty: use IDR to support several dbc instances. (Dean Nelson) [2061791]
+- xhci: dbc: Don't call dbc_tty_init() on every dbc tty probe (Dean Nelson) [2061791]
+- xhci: dbc: Rename xhci_dbc_init and xhci_dbc_exit (Dean Nelson) [2061791]
+- xhci: dbc: create and remove dbc structure in dbgtty driver. (Dean Nelson) [2061791]
+- xhci: dbc: refactor xhci_dbc_init() (Dean Nelson) [2061791]
+- usb: dwc3: pci: Fix Bay Trail phy GPIO mappings (Dean Nelson) [2061791]
+- xhci: Prevent futile URB re-submissions due to incorrect return value. (Dean Nelson) [2061791]
+- xhci: re-initialize the HC during resume if HCE was set (Dean Nelson) [2061791]
+- usb: dwc3: pci: Add "snps,dis_u2_susphy_quirk" for Intel Bay Trail (Dean Nelson) [2061791]
+- usb: dwc3: pci: add support for the Intel Raptor Lake-S (Dean Nelson) [2061791]
+- usb: xhci-mtk: add support ip-sleep wakeup for mt8195 (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Prevent core from processing stale TRBs (Dean Nelson) [2061791]
+- thunderbolt: Replace acpi_bus_get_device() (Dean Nelson) [2061791]
+- thunderbolt: Add internal xHCI connect flows for Thunderbolt 3 devices (Dean Nelson) [2061791]
+- thunderbolt: Add missing device ID to tb_switch_is_alpine_ridge() (Dean Nelson) [2061791]
+- thunderbolt: Disable LTTPR on Intel Titan Ridge (Dean Nelson) [2061791]
+- usb: ulpi: Call of_node_put correctly (Dean Nelson) [2061791]
+- usb: ulpi: Move of_node_put to ulpi_dev_release (Dean Nelson) [2061791]
+- usb: xhci-mtk: Use struct_size() helper in create_sch_ep() (Dean Nelson) [2061791]
+- usb: common: ulpi: Fix crash in ulpi_match() (Dean Nelson) [2061791]
+- usb: typec: tcpm: Do not disconnect when receiving VSAFE0V (Dean Nelson) [2061791]
+- usb: typec: tcpm: Do not disconnect while receiving VBUS off (Dean Nelson) [2061791]
+- xhci: Fresco FL1100 controller should not have BROKEN_MSI quirk set. (Dean Nelson) [2061791]
+- usb: typec: tcpci: don't touch CC line if it's Vconn source (Dean Nelson) [2061791]
+- thunderbolt: Remove useless DMA-32 fallback configuration (Dean Nelson) [2061791]
+- media: uvcvideo: Support devices that report an OT as an entity source (Dean Nelson) [2061791]
+- Revert "media: uvcvideo: Support devices that report an OT as an entity source" (Dean Nelson) [2061791]
+- thunderbolt: Add module parameter for CLx disabling (Dean Nelson) [2061791]
+- thunderbolt: Enable CL0s for Intel Titan Ridge (Dean Nelson) [2061791]
+- thunderbolt: Rename Intel TB_VSE_CAP_IECS capability (Dean Nelson) [2061791]
+- thunderbolt: Implement TMU time disruption for Intel Titan Ridge (Dean Nelson) [2061791]
+- thunderbolt: Move usb4_switch_wait_for_bit() to switch.c (Dean Nelson) [2061791]
+- thunderbolt: Add CL0s support for USB4 routers (Dean Nelson) [2061791]
+- thunderbolt: Add TMU uni-directional mode (Dean Nelson) [2061791]
+- xhci: use max() to make code cleaner (Dean Nelson) [2061791]
+- usb: ftdi-elan: fix memory leak on device disconnect (Dean Nelson) [2061791]
+- Revert "usb: early: convert to readl_poll_timeout_atomic()" (Dean Nelson) [2061791]
+- usb: typec: tcpm: fix tcpm unregister port but leave a pending timer (Dean Nelson) [2061791]
+- thunderbolt: Check return value of kmemdup() in icm_handle_event() (Dean Nelson) [2061791]
+- media: dw2102: Fix use after free (Dean Nelson) [2061791]
+- USB: serial: cp210x: fix CP2105 GPIO registration (Dean Nelson) [2061791]
+- usb: xhci-mtk: fix list_del warning when enable list debug (Dean Nelson) [2061791]
+- usb: core: config: fix validation of wMaxPacketValue entries (Dean Nelson) [2061791]
+- xhci: avoid race between disable slot command and host runtime suspend (Dean Nelson) [2061791]
+- xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime suspending (Dean Nelson) [2061791]
+- thunderbolt: Do not dereference fwnode in struct device (Dean Nelson) [2061791]
+- thunderbolt: Add debug logging of DisplayPort resource allocation (Dean Nelson) [2061791]
+- thunderbolt: Do not program path HopIDs for USB4 routers (Dean Nelson) [2061791]
+- thunderbolt: Do not allow subtracting more NFC credits than configured (Dean Nelson) [2061791]
+- thunderbolt: Runtime resume USB4 port when retimers are scanned (Dean Nelson) [2061791]
+- thunderbolt: Tear down existing tunnels when resuming from hibernate (Dean Nelson) [2061791]
+- thunderbolt: Runtime PM activate both ends of the device link (Dean Nelson) [2061791]
+- thunderbolt: xdomain: Avoid potential stack OOB read (Dean Nelson) [2061791]
+- media: uvcvideo: fix division by zero at stream start (Dean Nelson) [2061791]
+- usb: typec: tcpm: Wait in SNK_DEBOUNCED until disconnect (Dean Nelson) [2061791]
+- xhci: Fix commad ring abort, write all 64 bits to CRCR register. (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Skip reading GEVNTSIZn (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Ignore Update Transfer cmd params (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Skip checking Update Transfer status (Dean Nelson) [2061791]
+- usb: hub: Fix locking issues with address0_mutex (Dean Nelson) [2061791]
+- media: dib0700: Only touch one bit when start/stop an adapter (Dean Nelson) [2061791]
+- media: dib0700: cleanup start/stop streaming logic (Dean Nelson) [2061791]
+- media: dib0700: fix undefined behavior in tuner shutdown (Dean Nelson) [2061791]
+- media: s2255: fix control-message timeouts (Dean Nelson) [2061791]
+- media: pvrusb2: fix control-message timeouts (Dean Nelson) [2061791]
+- media: flexcop-usb: fix control-message timeouts (Dean Nelson) [2061791]
+- usb: hub: Fix usb enumeration issue due to address0 race (Dean Nelson) [2061791]
+- usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Fix null pointer exception (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Check for L1/L2/U3 for Start Transfer (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Ignore NoStream after End Transfer (Dean Nelson) [2061791]
+- usb: xhci-mtk: fix random remote wakeup (Dean Nelson) [2061791]
+- usb: xhci-mtk: remove unnecessary error check (Dean Nelson) [2061791]
+- USB: serial: keyspan: fix memleak on probe errors (Dean Nelson) [2061791]
+- USB: iowarrior: fix control-message timeouts (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Skip resizing EP's TX FIFO if already resized (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Change to dev_dbg() when queuing to inactive gadget/ep (Dean Nelson) [2061791]
+- xhci: Enable trust tx length quirk for Fresco FL11 USB controller (Dean Nelson) [2061791]
+- xhci: Fix command ring pointer corruption while aborting a command (Dean Nelson) [2061791]
+- USB: xhci: dbc: fix tty registration race (Dean Nelson) [2061791]
+- xhci: add quirk for host controllers that don't update endpoint DCS (Dean Nelson) [2061791]
+- xhci: guard accesses to ep_state in xhci_endpoint_reset() (Dean Nelson) [2061791]
+- media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() (Dean Nelson) [2061791]
+- USB: cdc-acm: fix break reporting (Dean Nelson) [2061791]
+- USB: cdc-acm: fix racy tty buffer accesses (Dean Nelson) [2061791]
+- usb: typec: tcpm: handle SRC_STARTUP state if cc changes (Dean Nelson) [2061791]
+- usb: typec: tcpci: don't handle vSafe0V event if it's not enabled (Dean Nelson) [2061791]
+- usb: xhci-mtk: use xhci_dbg() to print log (Dean Nelson) [2061791]
+- media: mxl111sf: change mutex_init() location (Dean Nelson) [2061791]
+- media: tm6000: Avoid card name truncation (Dean Nelson) [2061791]
+- media: gspca: Limit frame size to sizeimage. (Dean Nelson) [2061791]
+- media: uvcvideo: Don't spam the log in uvc_ctrl_restore_values() (Dean Nelson) [2061791]
+- media: uvcvideo: Increase the size of UVC_METADATA_BUF_SIZE (Dean Nelson) [2061791]
+- media: uvcvideo: Return -EIO for control errors (Dean Nelson) [2061791]
+- media: uvcvideo: Remove unused including <linux/version.h> (Dean Nelson) [2061791]
+- media: m5602_ov7660: remove the repeated declaration (Dean Nelson) [2061791]
+- media: dvb-usb: fix ununit-value in az6027_rc_query (Dean Nelson) [2061791]
+- thunderbolt: Fix -Wrestrict warning (Dean Nelson) [2061791]
+- USB: serial: cp210x: fix dropped characters with CP2102 (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Avoid starting DWC3 gadget during UDC unbind (Dean Nelson) [2061791]
+- USB: serial: option: remove duplicate USB device ID (Dean Nelson) [2061791]
+- USB: serial: mos7840: remove duplicated 0xac24 device ID (Dean Nelson) [2061791]
+- USB: cdc-acm: fix minor-number release (Dean Nelson) [2061791]
+- usb: dwc3: reference clock period configuration (Dean Nelson) [2061791]
+- usb: xhci-mtk: allow bandwidth table rollover (Dean Nelson) [2061791]
+- usb: xhci-mtk: modify the SOF/ITP interval for mt8195 (Dean Nelson) [2061791]
+- usb: xhci-mtk: add a member of num_esit (Dean Nelson) [2061791]
+- usb: xhci-mtk: check boundary before check tt (Dean Nelson) [2061791]
+- usb: xhci-mtk: update fs bus bandwidth by bw_budget_table (Dean Nelson) [2061791]
+- usb: xhci-mtk: support option to disable usb2 ports (Dean Nelson) [2061791]
+- usb: xhci-mtk: fix use-after-free of mtk->hcd (Dean Nelson) [2061791]
+- usb: dwc3: pci: add support for AMD's newer generation platform. (Dean Nelson) [2061791]
+- xhci: Add bus number to some debug messages (Dean Nelson) [2061791]
+- xhci: Add additional dynamic debug to follow URBs in cancel and error cases. (Dean Nelson) [2061791]
+- Revert "USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST quirk set" (Dean Nelson) [2061791]
+- xhci: Fix failure to give back some cached cancelled URBs. (Dean Nelson) [2061791]
+- xhci: fix even more unsafe memory usage in xhci tracing (Dean Nelson) [2061791]
+- xhci: fix unsafe memory usage in xhci tracing (Dean Nelson) [2061791]
+- usb: typec: tcpm: Support non-PD mode (Dean Nelson) [2061791]
+- USB: serial: cp210x: determine fw version for CP2105 and CP2108 (Dean Nelson) [2061791]
+- USB: serial: cp210x: clean up type detection (Dean Nelson) [2061791]
+- USB: serial: cp210x: clean up set-chars request (Dean Nelson) [2061791]
+- USB: serial: cp210x: clean up control-request timeout (Dean Nelson) [2061791]
+- USB: serial: cp210x: fix flow-control error handling (Dean Nelson) [2061791]
+- USB: serial: cp210x: fix control-characters error handling (Dean Nelson) [2061791]
+- tty: drop put_tty_driver (Dean Nelson) [2061791]
+- media: dvb-usb: fix uninit-value in vp702x_read_mac_addr (Dean Nelson) [2061791]
+- media: dvb-usb: fix uninit-value in dvb_usb_adapter_dvb_init (Dean Nelson) [2061791]
+- usb: renesas-xhci: Remove renesas_xhci_pci_exit() (Dean Nelson) [2061791]
+- usb: dwc3: Resize TX FIFOs to meet EP bursting requirements (Dean Nelson) [2061791]
+- memstick: rtsx_usb_ms: fix UAF (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Clear DEP flags after stop transfers in ep disable (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Set gadget_max_speed when set ssp_rate (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Prevent EP queuing while stopping transfers (Dean Nelson) [2061791]
+- media: lmedm04: Fix misuse of comma (Dean Nelson) [2061791]
+- media: tm6000: Fix memleak in tm6000_start_stream (Dean Nelson) [2061791]
+- usb: dwc3: gadget: Restart DWC3 gadget when enabling pullup (Dean Nelson) [2061791]
+- memstick: Skip allocating card when removing host (Dean Nelson) [2061791]
+- USB: Replace zero-length array with flexible-array member (Dean Nelson) [2061791]
+- USB: xhci: fix 'broken_suspend' placement in struct xchi_hcd (Dean Nelson) [2061791]
+- Revert "[usb] USB: xhci: fix 'broken_suspend' placement in struct xchi_hcd" (Dean Nelson) [2061791]
+- memstick: rtsx_usb_ms: Support runtime power management (Dean Nelson) [2061791]
+- memstick: rtsx_usb_ms: Use ms_dev() helper (Dean Nelson) [2061791]
+- memstick: Prevent memstick host from getting runtime suspended during card detection (Dean Nelson) [2061791]
+- misc: rtsx_usb: Use USB remote wakeup signaling for card insertion detection (Dean Nelson) [2061791]
+- memstick: rtsx_usb_ms: Add missing pm_runtime_disable() in probe function (Dean Nelson) [2061791]
+
+* Thu Jul 28 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-413.el8]
+- RDMA/qedr: Fix reporting QP timeout attribute (Kamal Heib) [2083620]
+- NFSD: Handle COPYer - Not suppored in RHEL8 (Benjamin Coddington) [2108628]
+- NFSD add ca_source_server<> to COPY (Benjamin Coddington) [2108628]
+- NFS NFSD: defining nl4_servers structure needed by both (Benjamin Coddington) [2108628]
+- fix backport powerpc/uaccess: get rid of small constant size cases in raw_copy_{to,from}_user() (Diego Domingos) [2106984]
+- bpf: Enable bpf_ktime_get_coarse_ns helper (Viktor Malik) [2105133]
+- kernel/resource: Introduce request_mem_region_muxed() (Sudheesh Mavila) [2047999]
+- i2c: piix4: Enable EFCH MMIO for Family 17h+ (Sudheesh Mavila) [2047999]
+- i2c: piix4: Add EFCH MMIO support for SMBus port select (Sudheesh Mavila) [2047999]
+- i2c: piix4: Add EFCH MMIO support to SMBus base address detect (Sudheesh Mavila) [2047999]
+- i2c: piix4: Add EFCH MMIO support to region request and release (Sudheesh Mavila) [2047999]
+- i2c: piix4: Move SMBus port selection into function (Sudheesh Mavila) [2047999]
+- i2c: piix4: Move SMBus controller base address detect into function (Sudheesh Mavila) [2047999]
+- i2c: piix4: Move port I/O region request/release code into functions (Sudheesh Mavila) [2047999]
+- i2c: piix4: Replace hardcoded memory map size with a #define (Sudheesh Mavila) [2047999]
+- i2c: piix4: Detect secondary SMBus controller on AMD AM4 chipsets (Sudheesh Mavila) [2047999]
+- i2c: piix4: Add ACPI support (Sudheesh Mavila) [2047999]
+- i2c: piix4: Fix probing of reserved ports on AMD Family 16h Model 30h (Sudheesh Mavila) [2047999]
+- i2c: piix4: Fix port selection for AMD Family 16h Model 30h (Sudheesh Mavila) [2047999]
+- i2c-piix4: Add Hygon Dhyana SMBus support (Sudheesh Mavila) [2047999]
+- tracing: Remove WARN_ON in start_thread() (Jerome Marchand) [2090967]
+- net: usb: Fix spelling mistakes (José Ignacio Tornos Martínez) [1984353]
+- net: usb: cdc_ether: record speed in status method (José Ignacio Tornos Martínez) [1984353]
+- net: usb: usbnet: add method for reporting speed without MII (José Ignacio Tornos Martínez) [1984353]
+- e1000e: Fix possible overflow in LTR decoding (Ken Cox) [2037965]
+- e1000e: Print PHY register address when MDI read/write fails (Ken Cox) [2037965]
+- e1000e: Correct NVM checksum verification flow (Ken Cox) [2037965]
+- e1000e: Fix possible HW unit hang after an s0ix exit (Ken Cox) [2037965 2049952]
+- e1000e: Handshake with CSME starts from ADL platforms (Ken Cox) [2037965 2049952]
+- e1000e: Separate ADP board type from TGP (Ken Cox) [2037965 2049952]
+- e1000e: Remove useless DMA-32 fallback configuration (Ken Cox) [2037965]
+- e1000e: Remove redundant statement (Ken Cox) [2037965]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Ken Cox) [2037965]
+- net: e1000e: solve insmod 'Unknown symbol mutex_lock' error (Ken Cox) [2037965]
+- RDMA/irdma: Add SW mechanism to generate completions on error (Kamal Heib) [2100316]
+- RDMA/irdma: Remove the redundant variable (Kamal Heib) [2100316]
+- RDMA/irdma: Add support for DSCP (Kamal Heib) [2100316]
+- RDMA/irdma: Use irq_update_affinity_hint() (Kamal Heib) [2100316]
+- RDMA/irdma: Set protocol based on PF rdma_mode flag (Kamal Heib) [2100316 2096481]
+- virtio-ring: fix DMA metadata flags (Cindy Lu) [1969742]
+- virtio_ring: fix typos in vring_desc_extra (Jason Wang) [1969742]
+- virtio-ring: store DMA metadata in desc_extra for split virtqueue (Jason Wang) [1969742]
+- virtio: use err label in __vring_new_virtqueue() (Jason Wang) [1969742]
+- virtio_ring: introduce virtqueue_desc_add_split() (Jason Wang) [1969742]
+- virtio_ring: secure handling of mapping errors (Jason Wang) [1969742]
+- virtio-ring: factor out desc_extra allocation (Jason Wang) [1969742]
+- virtio_ring: rename vring_desc_extra_packed (Jason Wang) [1969742]
+- virtio-ring: maintain next in extra state for packed virtqueue (Jason Wang) [1969742]
+- drivers/base: fix userspace break from using bin_attributes for cpumap and cpulist (Phil Auld) [2089715]
+- rpminspect: disable abidiff scanning (Jarod Wilson)
+
+* Mon Jul 25 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-412.el8]
+- Netvsc: Call hv_unmap_memory() in the netvsc_device_remove() (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Release cpu lock in error case (Mohammed Gamal) [2086613]
+- Drivers: hv: Fix syntax errors in comments (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Don't assign VMbus channel interrupts to isolated CPUs (Mohammed Gamal) [2086613]
+- hv_balloon: Fix balloon_probe() and balloon_remove() error handling (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: fix typo in comment (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Remove support for Hyper-V 2008 and Hyper-V 2008R2/Win7 (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Refactor the ring-buffer iterator functions (Mohammed Gamal) [2086613]
+- hv_sock: Copy packets sent by Hyper-V out of the ring buffer (Mohammed Gamal) [2086613]
+- hv_sock: Check hv_pkt_iter_first_raw()'s return value (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Accept hv_sock offers in isolated guests (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Introduce {lock,unlock}_requestor() (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Introduce vmbus_request_addr_match() (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Introduce vmbus_sendpacket_getid() (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Fix handling of messages with transaction ID of zero (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Add VMbus IMC device to unsupported list (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() (Mohammed Gamal) [2086613]
+- Drivers: hv: balloon: Disable balloon and hot-add accordingly (Mohammed Gamal) [2086613]
+- Drivers: hv: balloon: Support status report for larger page sizes (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Fix potential crash on module unload (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Fix initialization of device object in vmbus_device_register() (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Deactivate sysctl_record_panic_msg by default in isolated guests (Mohammed Gamal) [2086613]
+- drivers: hv: log when enabling crash_kexec_post_notifiers (Mohammed Gamal) [2086613]
+- Drivers: hv: utils: Make use of the helper macro LIST_HEAD() (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Rework use of DMA_BIT_MASK(64) (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Fix memory leak in vmbus_add_channel_kobj (Mohammed Gamal) [2086613]
+- Drivers: hv: Compare cpumasks and not their weights in init_vp_index() (Mohammed Gamal) [2086613]
+- Drivers: hv: Rename 'alloced' to 'allocated' (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Use struct_size() helper in kmalloc() (Mohammed Gamal) [2086613]
+- Drivers: hv: balloon: account for vmbus packet header in max_pkt_size (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Initialize request offers message for Isolation VM (Mohammed Gamal) [2086613]
+- Drivers: hv: Fix definition of hypercall input & output arg variables (Mohammed Gamal) [2086613]
+- net: netvsc: Add Isolation VM support for netvsc driver (Mohammed Gamal) [2086613]
+- scsi: storvsc: Add Isolation VM support for storvsc driver (Mohammed Gamal) [2086613]
+- Drivers: hv : vmbus: Adding NULL pointer check (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Remove unused code to check for subchannels (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Initialize VMbus ring buffer for Isolation VM (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Add SNP support for VMbus channel initiate message (Mohammed Gamal) [2086613]
+- Drivers: hv: vmbus: Mark vmbus ring buffer visible to host in Isolation VM (Mohammed Gamal) [2086613]
+- SUNRPC: Don't leak sockets in xs_local_connect() (Jeffrey Layton) [2089429]
+- SUNRPC: clean up some inconsistent indenting (Jeffrey Layton) [2089429]
+- SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() (Jeffrey Layton) [2089429]
+- SUNRPC: Don't call connect() more than once on a TCP socket (Jeffrey Layton) [2089429]
+- net: openvswitch: fix misuse of the cached connection on tuple changes (Timothy Redaelli) [2099213]
+- sfc: fix considering that all channels have TX queues (Íñigo Huguet) [1851823]
+- sfc: fix wrong tx channel offset with efx_separate_tx_channels (Íñigo Huguet) [1851823]
+- intel/igb:fix repeated words in comments (Corinna Vinschen) [2037959]
+- igb: remove unexpected word "the" (Corinna Vinschen) [2037959]
+- igb: Make DMA faster when CPU is active on the PCIe link (Corinna Vinschen) [2037959]
+- igb: fix a use-after-free issue in igb_clean_tx_ring (Corinna Vinschen) [2037959]
+- igb: Remove duplicate defines (Corinna Vinschen) [2037959]
+- igb: skip phy status check where unavailable (Corinna Vinschen) [2037959]
+- igb: Convert kmap() to kmap_local_page() (Corinna Vinschen) [2037959]
+- igb: zero hwtstamp by default (Corinna Vinschen) [2037959]
+- igb: Remove useless DMA-32 fallback configuration (Corinna Vinschen) [2037959]
+- PCI: Work around Intel I210 ROM BAR overlap defect (Corinna Vinschen) [2037959]
+- igb: support EXTTS on 82580/i354/i350 (Corinna Vinschen) [2037959]
+- igb: support PEROUT on 82580/i354/i350 (Corinna Vinschen) [2037959]
+- igb: move PEROUT and EXTTS isr logic to separate functions (Corinna Vinschen) [2037959]
+- igb: move SDP config initialization to separate function (Corinna Vinschen) [2037959]
+- igb: switch to napi_build_skb() (Corinna Vinschen) [2037959]
+- igb: remove never changed variable `ret_val' (Corinna Vinschen) [2037959]
+- NFSv4: Add an fattr allocation to _nfs4_discover_trunking() (Scott Mayhew) [2096393]
+- sunrpc: set cl_max_connect when cloning an rpc_clnt (Scott Mayhew) [2096393]
+- NFSv4.1 mark qualified async operations as MOVEABLE tasks (Scott Mayhew) [2096393]
+- powerpc/rtas: Allow ibm,platform-dump RTAS call with null buffer address (Desnes A. Nunes do Rosario) [2095041]
+- audit: free module name (Richard Guy Briggs) [2100259]
+- bfq: fix blkio cgroup leakage v4 (Ming Lei) [2093206]
+- scsi: scsi_dh_alua: Properly handle the ALUA transitioning state (Ewan D. Milne) [1992870]
+- mm: sparse: remove __section_nr() function (Mark Langsdorf) [2067280]
+- mm: sparse: pass section_nr to find_memory_block (Mark Langsdorf) [2067280]
+- mm: sparse: pass section_nr to section_mark_present (Mark Langsdorf) [2067280]
+- headers/uninline: Uninline single-use function: kobject_has_children() (Mark Langsdorf) [2067280]
+- arch_topology: Do not set llc_sibling if llc_id is invalid (Mark Langsdorf) [2067280]
+- topology: make core_mask include at least cluster_siblings (Mark Langsdorf) [2067280]
+- regmap: allow a defined reg_base to be added to every address (Mark Langsdorf) [2067280]
+- regmap: add configurable downshift for addresses (Mark Langsdorf) [2067280]
+- drivers/base/dd.c : Remove the initial value of the global variable (Mark Langsdorf) [2067280]
+- devres: fix typos in comments (Mark Langsdorf) [2067280]
+- base: soc: Make soc_device_match() simpler and easier to read (Mark Langsdorf) [2067280]
+- driver core: Refactor sysfs and drv/bus remove hooks (Mark Langsdorf) [2067280]
+- driver core: Refactor multiple copies of device cleanup (Mark Langsdorf) [2067280]
+- arch_topology: obtain cpu capacity using information from CPPC (Mark Langsdorf) [2067280]
+- PM: core: keep irq flags in device_pm_check_callbacks() (Mark Langsdorf) [2067280]
+- PM: sleep: Add device name to suspend_report_result() (Mark Langsdorf) [2067280]
+- PM: runtime: Have devm_pm_runtime_enable() handle pm_runtime_dont_use_autosuspend() (Mark Langsdorf) [2067280]
+- PM: sleep: wakeup: Fix typos in comments (Mark Langsdorf) [2067280]
+- PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove() (Mark Langsdorf) [2067280]
+- PM: domains: use dev_err_probe() to simplify error handling (Mark Langsdorf) [2067280]
+- PM: domains: Prevent power off for parent unless child is in deepest state (Mark Langsdorf) [2067280]
+- driver core: cleanup double words comments (Mark Langsdorf) [2067280]
+- device property: Don't split fwnode_get_irq*() APIs in the code (Mark Langsdorf) [2067280]
+- regmap: irq: cleanup comments (Mark Langsdorf) [2067280]
+- platform: use dev_err_probe() in platform_get_irq_byname() (Mark Langsdorf) [2067280]
+- devtmpfs: drop redundant fs parameters from internal fs (Mark Langsdorf) [2067280]
+- component: Replace most references to 'master' with 'aggregate device' (Mark Langsdorf) [2067280]
+- device property: Add fwnode_irq_get_byname (Mark Langsdorf) [2067280]
+- regmap-irq: Fix typo in comment (Mark Langsdorf) [2067280]
+- driver core: Free DMA range map when device is released (Mark Langsdorf) [2067280]
+- regmap-irq: Update interrupt clear register for proper reset (Mark Langsdorf) [2067280]
+- PM: s2idle: ACPI: Fix wakeup interrupts handling (Mark Langsdorf) [2067280]
+- devtmpfs regression fix: reconfigure on each mount (Mark Langsdorf) [2067280]
+- regmap: debugfs: Fix indentation (Mark Langsdorf) [2067280]
+- regmap: Call regmap_debugfs_exit() prior to _init() (Mark Langsdorf) [2067280]
+- driver core: Make bus notifiers in right order in really_probe() (Mark Langsdorf) [2067280]
+- driver core: Move driver_sysfs_remove() after driver_sysfs_add() (Mark Langsdorf) [2067280]
+- driver core: Simplify async probe test code by using ktime_ms_delta() (Mark Langsdorf) [2067280]
+- PM: runtime: Simplify locking in pm_runtime_put_suppliers() (Mark Langsdorf) [2067280]
+- software node: fix wrong node passed to find nargs_prop (Mark Langsdorf) [2067280]
+- driver core: platform: document registration-failure requirement (Mark Langsdorf) [2067280]
+- device property: Add fwnode_iomap() (Mark Langsdorf) [2067280]
+- device property: Use fwnode_graph_for_each_endpoint() macro (Mark Langsdorf) [2067280]
+- device property: Implement fwnode_graph_get_endpoint_count() (Mark Langsdorf) [2067280]
+- device property: Fix documentation for FWNODE_GRAPH_DEVICE_DISABLED (Mark Langsdorf) [2067280]
+- rtc: Check return value from mc146818_get_time() (Mark Langsdorf) [2067280]
+- device property: Check fwnode->secondary when finding properties (Mark Langsdorf) [2067280]
+- topology/sysfs: rework book and drawer topology ifdefery (Mark Langsdorf) [2067280]
+- topology/sysfs: export cluster attributes only if an architectures has support (Mark Langsdorf) [2067280]
+- topology/sysfs: export die attributes only if an architectures has support (Mark Langsdorf) [2067280]
+- driver core: Don't call device_remove_properties() from device_del() (Mark Langsdorf) [2067280]
+- regmap: allow to define reg_update_bits for no bus configuration (Mark Langsdorf) [2067280]
+- platform/x86: amd-pmc: Set QOS during suspend on CZN w/ timer wakeup (Mark Langsdorf) [2067250]
+- PM: sleep: Fix error handling in dpm_prepare() (Mark Langsdorf) [2067250]
+- PM: sleep: Avoid calling put_device() under dpm_list_mtx (Mark Langsdorf) [2067250]
+- PM: sleep: Fix runtime PM based cpuidle support (Mark Langsdorf) [2067250]
+- PM / wakeirq: support enabling wake-up irq after runtime_suspend called (Mark Langsdorf) [2067250]
+- device property: Drop redundant NULL checks (Mark Langsdorf) [2067250]
+- PM: sleep: Pause cpuidle later and resume it earlier during system transitions (Mark Langsdorf) [2067250]
+- PM: suspend: Do not pause cpuidle in the suspend-to-idle path (Mark Langsdorf) [2067250]
+- regmap: spi: Set regmap max raw r/w from max_transfer_size (Mark Langsdorf) [2067250]
+- PM: sleep: Do not let "syscore" devices runtime-suspend during system transitions (Mark Langsdorf) [2067250]
+- component: do not leave master devres group open after bind (Mark Langsdorf) [2067250]
+- driver core: Provide device_match_acpi_handle() helper (Mark Langsdorf) [2067250]
+- regmap: Fix possible double-free in regcache_rbtree_exit() (Mark Langsdorf) [2067250]
+- device property: build kunit tests without structleak plugin (Mark Langsdorf) [2067250]
+- driver core: Reject pointless SYNC_STATE_ONLY device links (Mark Langsdorf) [2067250]
+- firmware_loader: add a sanity check for firmware_request_builtin() (Mark Langsdorf) [2067250]
+- firmware_loader: split built-in firmware call (Mark Langsdorf) [2067250]
+- firmware_loader: fix pre-allocated buf built-in firmware use (Mark Langsdorf) [2067250]
+- drivers/base/component.c: remove superfluous header files from component.c (Mark Langsdorf) [2067250]
+- drivers/base/arch_topology.c: remove superfluous header (Mark Langsdorf) [2067250]
+- driver core: use NUMA_NO_NODE during device_initialize (Mark Langsdorf) [2067250]
+- driver core: Fix possible memory leak in device_link_add() (Mark Langsdorf) [2067250]
+- driver core: Add debug logs when fwnode links are added/deleted (Mark Langsdorf) [2067250]
+- driver core: Create __fwnode_link_del() helper function (Mark Langsdorf) [2067250]
+- driver core: Set deferred probe reason when deferred by driver core (Mark Langsdorf) [2067250]
+- driver core: fw_devlink: Add support for FWNODE_FLAG_NEEDS_CHILD_BOUND_ON_ADD (Mark Langsdorf) [2067250]
+- driver core: Clarify that dev_err_probe() is OK even w/out -EPROBE_DEFER (Mark Langsdorf) [2067250]
+- driver core: fw_devlink: Improve handling of cyclic dependencies (Mark Langsdorf) [2067250]
+- software node: balance refcount for managed software nodes (Mark Langsdorf) [2067250]
+- driver core: platform: Make use of the helper macro SET_RUNTIME_PM_OPS() (Mark Langsdorf) [2067250]
+- PM: base: power: don't try to use non-existing RTC for storing data (Mark Langsdorf) [2067250]
+- PM: sleep: core: Avoid setting power.must_resume to false (Mark Langsdorf) [2067250]
+- PM: sleep: wakeirq: drop useless parameter from dev_pm_attach_wake_irq() (Mark Langsdorf) [2067250]
+- PM: domains: Fix domain attach for CONFIG_PM_OPP=n (Mark Langsdorf) [2067250]
+- PM: runtime: add devm_pm_clk_create helper (Mark Langsdorf) [2067250]
+- PM: runtime: add devm_pm_runtime_enable helper (Mark Langsdorf) [2067250]
+- regmap: teach regmap to use raw spinlocks if requested in the config (Mark Langsdorf) [2067250]
+- PM: domains: Add support for 'required-opps' to set default perf state (Mark Langsdorf) [2067250]
+- Revert "media: device property: Call fwnode_graph_get_endpoint_by_id() for fwnode->secondary" (Mark Langsdorf) [2067250]
+- driver: base: Prefer unsigned int to bare use of unsigned (Mark Langsdorf) [2067250]
+- cacheinfo: clear cache_leaves(cpu) in free_cache_attributes() (Mark Langsdorf) [2067250]
+- driver core: Fix error return code in really_probe() (Mark Langsdorf) [2067250]
+- driver: base: Replace symbolic permissions with octal permissions (Mark Langsdorf) [2067250]
+- regmap: Prefer unsigned int to bare use of unsigned (Mark Langsdorf) [2067250]
+- regmap: fix the offset of register error log (Mark Langsdorf) [2067250]
+- bpf: Fix request_sock leak in sk lookup helpers (Antoine Tenart) [2085313]
+- crypto: fips - make proc files report fips module name and version (Vladis Dronov) [2103966]
+- net: tipc: fix possible refcount leak in tipc_sk_create() (Xin Long) [2106048]
+- tipc: move bc link creation back to tipc_node_create (Xin Long) [2106048]
+- tipc: fix use-after-free Read in tipc_named_reinit (Xin Long) [2106048]
+- tipc: check attribute length for bearer name (Xin Long) [2106048]
+- ice: Fix memory corruption in VF driver (Petr Oros) [2037937]
+- ice: Fix queue config fail handling (Petr Oros) [2037937]
+- ice: Sync VLAN filtering features for DVM (Petr Oros) [2037937]
+- ice: Fix PTP TX timestamp offset calculation (Petr Oros) [2037937]
+- ice: Fix interrupt moderation settings getting cleared (Petr Oros) [2037937]
+- ice: fix possible under reporting of ethtool Tx and Rx statistics (Petr Oros) [2037937]
+- ice: allow creating VFs for !CONFIG_NET_SWITCHDEV (Petr Oros) [2037937]
+- ice: add trace events for tx timestamps (Petr Oros) [2037937]
+- ice: fix return value check in ice_gnss.c (Petr Oros) [2037937]
+- ice: remove PF pointer from ice_check_vf_init (Petr Oros) [2037937]
+- ice: introduce ice_virtchnl.c and ice_virtchnl.h (Petr Oros) [2037937]
+- ice: cleanup long lines in ice_sriov.c (Petr Oros) [2037937]
+- ice: introduce ICE_VF_RESET_LOCK flag (Petr Oros) [2037937]
+- ice: introduce ICE_VF_RESET_NOTIFY flag (Petr Oros) [2037937]
+- ice: convert ice_reset_vf to take flags (Petr Oros) [2037937]
+- ice: convert ice_reset_vf to standard error codes (Petr Oros) [2037937]
+- ice: make ice_reset_all_vfs void (Petr Oros) [2037937]
+- ice: drop is_vflr parameter from ice_reset_all_vfs (Petr Oros) [2037937]
+- ice: move reset functionality into ice_vf_lib.c (Petr Oros) [2037937]
+- ice: fix a long line warning in ice_reset_vf (Petr Oros) [2037937]
+- ice: introduce VF operations structure for reset flows (Petr Oros) [2037937]
+- ice: fix incorrect dev_dbg print mistaking 'i' for vf->vf_id (Petr Oros) [2037937]
+- ice: introduce ice_vf_lib.c, ice_vf_lib.h, and ice_vf_lib_private.h (Petr Oros) [2037937]
+- ice: use ice_is_vf_trusted helper function (Petr Oros) [2037937]
+- ice: log an error message when eswitch fails to configure (Petr Oros) [2037937]
+- ice: cleanup error logging for ice_ena_vfs (Petr Oros) [2037937]
+- ice: move ice_set_vf_port_vlan near other .ndo ops (Petr Oros) [2037937]
+- ice: refactor spoofchk control code in ice_sriov.c (Petr Oros) [2037937]
+- ice: rename ICE_MAX_VF_COUNT to avoid confusion (Petr Oros) [2037937]
+- ice: remove unused definitions from ice_sriov.h (Petr Oros) [2037937]
+- ice: convert vf->vc_ops to a const pointer (Petr Oros) [2037937]
+- ice: remove circular header dependencies on ice.h (Petr Oros) [2037937]
+- ice: rename ice_virtchnl_pf.c to ice_sriov.c (Petr Oros) [2037937]
+- ice: rename ice_sriov.c to ice_vf_mbx.c (Petr Oros) [2037937]
+- ice: Fix FV offset searching (Petr Oros) [2037937]
+- ice: Add support for outer dest MAC for ADQ tunnels (Petr Oros) [2037937]
+- ice: avoid XDP checks in ice_clean_tx_irq() (Petr Oros) [2037937]
+- ice: change "can't set link" message to dbg level (Petr Oros) [2037937]
+- ice: Add slow path offload stats on port representor in switchdev (Petr Oros) [2037937]
+- ice: Add support for inner etype in switchdev (Petr Oros) [2037937]
+- ice: convert VF storage to hash table with krefs and RCU (Petr Oros) [2037937]
+- ice: introduce VF accessor functions (Petr Oros) [2037937]
+- ice: factor VF variables to separate structure (Petr Oros) [2037937]
+- ice: convert ice_for_each_vf to include VF entry iterator (Petr Oros) [2037937]
+- ice: use ice_for_each_vf for iteration during removal (Petr Oros) [2037937]
+- ice: remove checks in ice_vc_send_msg_to_vf (Petr Oros) [2037937]
+- ice: move VFLR acknowledge during ice_free_vfs (Petr Oros) [2037937]
+- ice: move clear_malvf call in ice_free_vfs (Petr Oros) [2037937]
+- ice: pass num_vfs to ice_set_per_vf_res() (Petr Oros) [2037937]
+- ice: store VF pointer instead of VF ID (Petr Oros) [2037937]
+- ice: refactor unwind cleanup in eswitch mode (Petr Oros) [2037937]
+- ice: add TTY for GNSS module for E810T device (Petr Oros) [2037937]
+- ice: Simplify tracking status of RDMA support (Petr Oros) [2037937]
+- ice: Add ability for PF admin to enable VF VLAN pruning (Petr Oros) [2037937]
+- ice: Add support for 802.1ad port VLANs VF (Petr Oros) [2037937]
+- ice: Advertise 802.1ad VLAN filtering and offloads for PF netdev (Petr Oros) [2037937]
+- ice: Support configuring the device to Double VLAN Mode (Petr Oros) [2037937]
+- ice: Add support for VIRTCHNL_VF_OFFLOAD_VLAN_V2 (Petr Oros) [2037937]
+- ice: Add hot path support for 802.1Q and 802.1ad VLAN offloads (Petr Oros) [2037937]
+- ice: Add outer_vlan_ops and VSI specific VLAN ops implementations (Petr Oros) [2037937]
+- ice: Adjust naming for inner VLAN operations (Petr Oros) [2037937]
+- ice: Use the proto argument for VLAN ops (Petr Oros) [2037937]
+- ice: Refactor vf->port_vlan_info to use ice_vlan (Petr Oros) [2037937]
+- ice: Introduce ice_vlan struct (Petr Oros) [2037937]
+- ice: Add new VSI VLAN ops (Petr Oros) [2037937]
+- ice: Add helper function for adding VLAN 0 (Petr Oros) [2037937]
+- ice: Refactor spoofcheck configuration functions (Petr Oros) [2037937]
+- Revert "ice: Allow to pass VLAN tagged packets to VF when port VLAN is configured" (Petr Oros) [2037937]
+- Revert "ice: Do not enable VLAN pruning when spoofchk is enabled" (Petr Oros) [2037937]
+- ice: Remove likely for napi_complete_done (Petr Oros) [2037937]
+- ice: add support for DSCP QoS for IDC (Petr Oros) [2037937]
+- ice: respect metadata on XSK Rx to skb (Petr Oros) [2037937]
+- ice: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb (Petr Oros) [2037937]
+- ice: respect metadata in legacy-rx/ice_construct_skb() (Petr Oros) [2037937]
+- ice: Fix broken IFF_ALLMULTI handling (Petr Oros) [2037937]
+
+* Wed Jul 20 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-411.el8]
+- i40e: Fix call trace in setup_tx_descriptors (Ivan Vecera) [2037943]
+- i40e: Fix calculating the number of queue pairs (Ivan Vecera) [2037943]
+- i40e: Fix adding ADQ filter to TC0 (Ivan Vecera) [2037943]
+- i40e: i40e_main: fix a missing check on list iterator (Ivan Vecera) [2037943]
+- i40e, xsk: Get rid of redundant 'fallthrough' (Ivan Vecera) [2037943]
+- i40e, xsk: Diversify return values from xsk_wakeup call paths (Ivan Vecera) [2037943]
+- i40e, xsk: Terminate Rx side of NAPI when XSK Rx queue gets full (Ivan Vecera) [2037943]
+- i40e: Add Ethernet Connection X722 for 10GbE SFP+ support (Ivan Vecera) [2037943]
+- i40e: Add vsi.tx_restart to i40e ethtool stats (Ivan Vecera) [2037943]
+- i40e: Add tx_stopped stat (Ivan Vecera) [2037943]
+- i40e: Add support for MPLS + TSO (Ivan Vecera) [2037943]
+- i40e: little endian only valid checksums (Ivan Vecera) [2037943]
+- i40e: stop disabling VFs due to PF error responses (Ivan Vecera) [2037943]
+- i40e: remove dead stores on XSK hotpath (Ivan Vecera) [2037943]
+- i40e: Add a stat for tracking busy rx pages (Ivan Vecera) [2037943]
+- i40e: Add a stat for tracking pages waived (Ivan Vecera) [2037943]
+- i40e: Add a stat tracking new RX page allocations (Ivan Vecera) [2037943]
+- i40e: Aggregate and export RX page reuse stat (Ivan Vecera) [2037943]
+- i40e: Remove rx page reuse double count (Ivan Vecera) [2037943]
+- i40e: Fix race condition while adding/deleting MAC/VLAN filters (Ivan Vecera) [2037943]
+- i40e: Add new version of i40e_aq_add_macvlan function (Ivan Vecera) [2037943]
+- i40e: Add new versions of send ASQ command functions (Ivan Vecera) [2037943]
+- i40e: Add sending commands in atomic context (Ivan Vecera) [2037943]
+- i40e: Remove unused RX realloc stat (Ivan Vecera) [2037943]
+- i40e: Disable hw-tc-offload feature on driver load (Ivan Vecera) [2037943]
+- i40e: Fix reset path while removing the driver (Ivan Vecera) [2037943]
+- i40e: respect metadata on XSK Rx to skb (Ivan Vecera) [2037943]
+- i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb (Ivan Vecera) [2037943]
+- i40e: Remove useless DMA-32 fallback configuration (Ivan Vecera) [2037943]
+- i40e: fix unsigned stat widths (Ivan Vecera) [2037943]
+- i40e: Fix for failed to init adminq while VF reset (Ivan Vecera) [2037943]
+- i40e: Fix queues reservation for XDP (Ivan Vecera) [2037943]
+- i40e: Fix issue when maximum queues is exceeded (Ivan Vecera) [2037943]
+- i40e: Increase delay to 1 s after global EMP reset (Ivan Vecera) [2037943]
+- i40e: remove variables set but not used (Ivan Vecera) [2037943]
+- i40e: Remove non-inclusive language (Ivan Vecera) [2037943]
+- i40e: Update FW API version (Ivan Vecera) [2037943]
+- i40e: Minimize amount of busy-waiting during AQ send (Ivan Vecera) [2037943]
+- i40e: Add ensurance of MacVlan resources for every trusted VF (Ivan Vecera) [2037943]
+- i40e: Fix incorrect netdev's real number of RX/TX queues (Ivan Vecera) [2037943]
+- i40e: Fix for displaying message regarding NVM version (Ivan Vecera) [2037943]
+- i40e: fix use-after-free in i40e_sync_filters_subtask() (Ivan Vecera) [2037943]
+- i40e: Fix to not show opcode msg on unsuccessful VF MAC change (Ivan Vecera) [2037943]
+- i40e: switch to napi_build_skb() (Ivan Vecera) [2037943]
+- i40e: Use irq_update_affinity_hint() (Ivan Vecera) [2037943]
+- mptcp: fix race on unaccepted mptcp sockets (Davide Caratti) [2076971]
+- mptcp: fix local endpoint accounting (Davide Caratti) [2076971]
+- mptcp: fix race in overlapping signal events (Davide Caratti) [2076971]
+- mptcp: fix subflow accounting on close (Davide Caratti) [2076971]
+- mptcp: introduce implicit endpoints (Davide Caratti) [2076971]
+- mptcp: constify a bunch of of helpers (Davide Caratti) [2076971]
+- mptcp: drop port parameter of mptcp_pm_add_addr_signal (Davide Caratti) [2076971]
+- mptcp: fix removing ids bitmap setting (Davide Caratti) [2076971]
+- selftests: mptcp: be more conservative with cookie MPJ limits (Davide Caratti) [2076971]
+- selftests: mptcp: more robust signal race test (Davide Caratti) [2076971]
+- mptcp: cleanup MPJ subflow list handling (Davide Caratti) [2076971]
+- mptcp: do not block subflows creation on errors (Davide Caratti) [2076971]
+- mptcp: keep track of local endpoint still available for each msk (Davide Caratti) [2076971]
+- mptcp: clean up harmless false expressions (Davide Caratti) [2076971]
+- mptcp: fix per socket endpoint accounting (Davide Caratti) [2076971]
+- selftests: mptcp: add fullmesh testcases (Davide Caratti) [2076971]
+- selftests: mptcp: set and print the fullmesh flag (Davide Caratti) [2076971]
+- mptcp: local addresses fullmesh (Davide Caratti) [2076971]
+- mptcp: remote addresses fullmesh (Davide Caratti) [2076971]
+- mptcp: remove MPTCP_ADD_ADDR_IPV6 and MPTCP_ADD_ADDR_PORT (Davide Caratti) [2076971]
+- mptcp: build ADD_ADDR/echo-ADD_ADDR option according pm.add_signal (Davide Caratti) [2076971]
+- mptcp: fix ADD_ADDR and RM_ADDR maybe flush addr_signal each other (Davide Caratti) [2076971]
+- mptcp: make MPTCP_ADD_ADDR_SIGNAL and MPTCP_ADD_ADDR_ECHO separate (Davide Caratti) [2076971]
+- mptcp: move drop_other_suboptions check under pm lock (Davide Caratti) [2076971]
+- mptcp: drop flags and ifindex arguments (Davide Caratti) [2076971]
+- mptcp: allow to use port and non-signal in set_flags (Davide Caratti) [2076971]
+- NFSv4.1 support for NFS4_RESULT_PRESERVER_UNLINKED (Scott Mayhew) [2066369]
+- KVM: selftests: get-reg-list: Add KVM_REG_ARM_FW_REG(3) (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: proton-pack: Include unprivileged eBPF status in Spectre v2 miti (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: Use the clearbhb instruction in mitigations (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: add ID_AA64ISAR2_EL1 sys register (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- KVM: arm64: Allow SMCCC_ARCH_WORKAROUND_3 to be discovered and migrated (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: Mitigate spectre style branch history side channels (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- KVM: arm64: Add templates for BHB mitigation sequences (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: proton-pack: Report Spectre-BHB vulnerabilities as part of Spect (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: Add percpu vectors for EL1 (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Add macro for reading symbol addresses from the trampolin (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Add vectors that have the bhb mitigation sequences (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Add non-kpti __bp_harden_el1_vectors for mitigations (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Allow the trampoline text to occupy multiple pages (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Make the kpti trampoline's kpti sequence optional (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Move trampoline macros out of ifdef'd section (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Don't assume tramp_vectors is the start of the vectors (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Allow tramp_alias to access symbols after the 4K boundary (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Move the trampoline data page before the text page (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Free up another register on kpti's tramp_exit path (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry: Make the trampoline cleanup optional (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: entry.S: Add ventry overflow sanity checks (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: Add Cortex-X2 CPU part definition (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: Add Neoverse-N2, Cortex-A710 CPU part definition (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: syscall: exit userspace before unmasking exceptions (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- arm64: ptrace: Consistently use pseudo-singlestep exceptions (Chris von Recklinghausen) [2062287] {CVE-2022-23960}
+- ethtool: Fix get module eeprom fallback (Ivan Vecera) [2091772]
+- xfs: use setattr_copy to set vfs inode attributes (Andrey Albershteyn) [2085622]
+- xfs: ensure log flush at the end of a synchronous fallocate call (Andrey Albershteyn) [2085622]
+- xfs: set prealloc flag in xfs_alloc_file_space() (Andrey Albershteyn) [2085622]
+- xfs: fallocate() should call file_modified() (Andrey Albershteyn) [2085622]
+- xfs: remove XFS_PREALLOC_SYNC (Andrey Albershteyn) [2085622]
+- drm/ast: Fix black screen when getting out of suspend (Jocelyn Falempe) [2097492]
+- drm/ast: Create the driver for ASPEED proprietory Display-Port (Jocelyn Falempe) [2097492]
+- x86: change default to spec_store_bypass_disable=prctl spectre_v2_user=prctl (Waiman Long) [2101938]
+- x86/speculation/mmio: Print SMT warning (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- KVM: x86/speculation: Disable Fill buffer clear within guests (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/speculation/mmio: Reuse SRBDS mitigation for SBDS (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/speculation/srbds: Update SRBDS mitigation selection (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/speculation/mmio: Enable CPU Fill buffer clearing on idle (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/speculation: Add a common function for MD_CLEAR mitigation update (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- Documentation: Add documentation for Processor MMIO Stale Data (Waiman Long) [2090252] {CVE-2022-21123 CVE-2022-21125 CVE-2022-21166}
+- x86/tsx: Disable TSX development mode at boot (Waiman Long) [2090252]
+- x86/tsx: Use MSR_TSX_CTRL to clear CPUID bits (Waiman Long) [2090252]
+- x86/tsx: Clear CPUID bits when TSX always force aborts (Waiman Long) [2090252]
+- cpu/speculation: Add prototype for cpu_show_srbds() (Waiman Long) [2090252]
+- x86/cpu: Move arch_smt_update() to a neutral place (Waiman Long) [2090252]
+- serial: 8250_pci: rewrite pericom_do_set_divisor() (Myron Stowe) [2096364]
+- serial: 8250_pci: Fix ACCES entries in pci_serial_quirks array (Myron Stowe) [2096364]
+- serial: 8250_pci: Merge 8250_moxa to 8250_pci (Myron Stowe) [2096364]
+- serial: 8250: Use dev_get_drvdata where possible (Myron Stowe) [2096364]
+- serial: 8250: pericom_do_set_divisor can be static (Myron Stowe) [2096364]
+- serial: 8250: Add support for higher baud rates to Pericom chips (Myron Stowe) [2096364]
+- serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 chip use the pci_pericom_setup() (Myron Stowe) [2096364]
+- serial: 8250_pci: Fix number of ports for ACCES serial cards (Myron Stowe) [2096364]
+- serial: 8250_pci: Replace custom code with pci_match_id() (Myron Stowe) [2096364]
+- net/sched: act_police: more accurate MTU policing (Davide Caratti) [2100893]
+- selinux: initialize proto variable in selinux_ip_postroute_compat() (Ondrej Mosnacek) [2005892]
+- selinux: fix a sock regression in selinux_ip_postroute_compat() (Ondrej Mosnacek) [2005892]
+- LSM: Avoid warnings about potentially unused hook variables (Ondrej Mosnacek) [2005892]
+- selinux: fix all of the W=1 build warnings (Ondrej Mosnacek) [2005892]
+- selinux: make better use of the nf_hook_state passed to the NF hooks (Ondrej Mosnacek) [2005892]
+- selinux: fix race condition when computing ocontext SIDs (Ondrej Mosnacek) [2005892 1969344]
+- selinux: remove unneeded ipv6 hook wrappers (Ondrej Mosnacek) [2005892]
+- lsm_audit: avoid overloading the "key" audit field (Ondrej Mosnacek) [2005892]
+- security: remove unneeded subdir-$(CONFIG_...) (Ondrej Mosnacek) [2005892]
+- selinux: return early for possible NULL audit buffers (Ondrej Mosnacek) [2005892]
+- selinux: correct the return value when loads initial sids (Ondrej Mosnacek) [2005892]
+- audit: remove unnecessary 'ret' initialization (Ondrej Mosnacek) [2005892]
+- selinux: kill 'flags' argument in avc_has_perm_flags() and avc_audit() (Ondrej Mosnacek) [2005892]
+- selinux: slow_avc_audit has become non-blocking (Ondrej Mosnacek) [2005892]
+- selinux: Fix kernel-doc (Ondrej Mosnacek) [2005892]
+- selinux: use __GFP_NOWARN with GFP_NOWAIT in the AVC (Ondrej Mosnacek) [2005892]
+- lsm_audit,selinux: pass IB device name by reference (Ondrej Mosnacek) [2005892]
+- selinux: Remove redundant assignment to rc (Ondrej Mosnacek) [2005892]
+- selinux: Corrected comment to match kernel-doc comment (Ondrej Mosnacek) [2005892]
+- selinux: delete selinux_xfrm_policy_lookup() useless argument (Ondrej Mosnacek) [2005892]
+- selinux: constify some avtab function arguments (Ondrej Mosnacek) [2005892]
+- selinux: simplify duplicate_policydb_cond_list() by using kmemdup() (Ondrej Mosnacek) [2005892]
+- selinux: add proper NULL termination to the secclass_map permissions (Ondrej Mosnacek) [2005892]
+- security: commoncap: clean up kernel-doc comments (Ondrej Mosnacek) [2005892]
+- security: commoncap: fix -Wstringop-overread warning (Ondrej Mosnacek) [2005892]
+- selinux: fix misspellings using codespell tool (Ondrej Mosnacek) [2005892]
+- selinux: fix misspellings using codespell tool (Ondrej Mosnacek) [2005892]
+- ext4: mballoc: Use this_cpu_read instead of this_cpu_ptr (Lukas Czerner) [2102619]
+- ext4: add reserved GDT blocks check (Lukas Czerner) [2099702]
+- ext4: make variable "count" signed (Lukas Czerner) [2099702]
+- ext4: fix bug_on ext4_mb_use_inode_pa (Lukas Czerner) [2099702]
+- ext4: fix super block checksum incorrect after mount (Lukas Czerner) [2099702]
+- ext4: fix bug_on in __es_tree_search (Lukas Czerner) [2099702]
+- ext4: avoid cycles in directory h-tree (Lukas Czerner) [2099702]
+- ext4: verify dir block before splitting it (Lukas Czerner) [2099702]
+- ext4: fix bug_on in ext4_writepages (Lukas Czerner) [2099702]
+- ext4: reject the 'commit' option on ext2 filesystems (Lukas Czerner) [2099702]
+- ext4: fix use-after-free in ext4_rename_dir_prepare (Lukas Czerner) [2099702]
+- ext4: fix warning in ext4_handle_inode_extension (Lukas Czerner) [2099702]
+
+* Fri Jul 15 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-410.el8]
+- i915: Explicitly #include <linux/string_helpers.h> (Michel Dänzer) [2041811]
+- i915: Use mdev_type_kobj_to_group_id instead of mtype_get_type_group_id (Michel Dänzer) [2041811]
+- drm/i915: #include <linux/highmem.h> for k(un)map APIs (Michel Dänzer) [2041811]
+- Revert "mm: remove the extra ZONE_DEVICE struct page refcount" (Michel Dänzer) [2041811]
+- Merge DRM changes from upstream v5.17..v5.18 (Michel Dänzer) [2041811]
+- iosys-map: Add a few more helpers (Michel Dänzer) [2041811]
+- iosys-map: Add offset to iosys_map_memcpy_to() (Michel Dänzer) [2041811]
+- dma-buf-map: Rename to iosys-map (Michel Dänzer) [2041811]
+- Revert "drm/amdgpu/display: set vblank_disable_immediate for DC" (Michel Dänzer) [2041811]
+- Revert "drm: import DMA_BUF module namespace" (Michel Dänzer) [2041811]
+- drm/virtio: Do not use virtio_reset_device (Michel Dänzer) [2041811]
+- Merge DRM changes from upstream v5.16..v5.17 (Michel Dänzer) [2041811]
+- agp/intel-gtt: reduce intel-gtt dependencies more (Michel Dänzer) [2041811]
+- agp/intel-gtt: Replace kernel.h with the necessary inclusions (Michel Dänzer) [2041811]
+- x86/gpu: Reserve stolen memory for first integrated Intel GPU (Michel Dänzer) [2041811]
+- drm/i915/rpl-s: Add PCI IDS for Raptor Lake S (Michel Dänzer) [2041811]
+- drm/amdgpu: Use MCE_PRIO_FIRST instead of MCE_PRIO_UC (Michel Dänzer) [2041811]
+- Revert "drm/amdgpu: disable runpm if we are the primary adapter" (Michel Dänzer) [2041811]
+- Revert "treewide: Replace the use of mem_encrypt_active() with cc_platform_has()" (Michel Dänzer) [2041811]
+- Revert "dma-buf: move dma-buf symbols into the DMA_BUF module namespace" (Michel Dänzer) [2041811]
+- Revert "fix for "dma-buf: move dma-buf symbols into the DMA_BUF module namespace"" (Michel Dänzer) [2041811]
+- x86/MCE/AMD, EDAC/mce_amd: Support non-uniform MCA bank type enumeration (Michel Dänzer) [2041811]
+- Merge DRM changes from upstream v5.15..v5.16 (Michel Dänzer) [2041811]
+- drm/bochs: Explicitly #include <linux/module.h> (Michel Dänzer) [2041811]
+- Revert "gpu: Bulk conversion to generic_handle_domain_irq()" (Michel Dänzer) [2041811]
+- Revert "vfio/gvt: Fix open/close when multiple device FDs are open" (Michel Dänzer) [2041811]
+- drm: Drop linux/ prefix from stdarg.h include (Michel Dänzer) [2041811]
+- drm/i915: Convert to older tasklet API (Michel Dänzer) [2041811]
+- Merge DRM changes from upstream v5.14.21..v5.15 (Michel Dänzer) [2041811]
+- dma-buf: Fix kerneldoc comment for struct dma_fence_array (Michel Dänzer) [2041811]
+- Makefile: Add RHEL_DRM_EXTRAVERSION (Michel Dänzer) [2041811]
+- mei: me: add Alder Lake N device id. (Prarit Bhargava) [2072660]
+- pinctrl: alderlake: Fix register offsets for ADL-N variant (Prarit Bhargava) [2049965]
+- pinctrl: alderlake: Add Intel Alder Lake-N pin controller support (Prarit Bhargava) [2049965]
+- pinctrl: tigerlake: Revert "Add Alder Lake-M ACPI ID" (Prarit Bhargava) [2049965]
+- spi: pxa2xx: Add support for Intel Alder Lake PCH-M (Prarit Bhargava) [2089507]
+- RHEL-only: KVM: selftests: Compile rseq_test out on aarch64 (Eric Auger) [2078919]
+- KVM: arm64: Don't read a HW interrupt pending state in user context (Eric Auger) [2078919]
+- KVM: arm64: selftests: Add init ITS device test (Eric Auger) [2078919]
+- KVM: arm64: selftests: Add test for legacy GICv3 REDIST base partially above IPA range (Eric Auger) [2078919]
+- KVM: arm64: selftests: Add tests for GIC redist/cpuif partially above IPA range (Eric Auger) [2078919]
+- KVM: arm64: selftests: Add some tests for GICv2 in vgic_init (Eric Auger) [2078919]
+- KVM: arm64: selftests: Make vgic_init/vm_gic_create version agnostic (Eric Auger) [2078919]
+- KVM: arm64: selftests: Make vgic_init gic version agnostic (Eric Auger) [2078919]
+- KVM: arm64: vgic: Drop vgic_check_ioaddr() (Eric Auger) [2078919]
+- KVM: arm64: vgic-v3: Check ITS region is not above the VM IPA size (Eric Auger) [2078919]
+- KVM: arm64: vgic-v2: Check cpu interface region is not above the VM IPA size (Eric Auger) [2078919]
+- KVM: arm64: vgic-v3: Check redist region is not above the VM IPA size (Eric Auger) [2078919]
+- kvm: arm64: vgic: Introduce vgic_check_iorange (Eric Auger) [2078919]
+- Revert "RHEL-only: KVM: selftests: Fix AArch64 compilation" (Eric Auger) [2078919]
+- selftests: KVM: Free the GIC FD when cleaning up in arch_timer (Eric Auger) [2078919]
+- selftests: KVM: Don't leak GIC FD across dirty log test iterations (Eric Auger) [2078919]
+- KVM: arm64: selftests: Introduce vcpu_width_config (Eric Auger) [2078919]
+- KVM: arm64: mixed-width check should be skipped for uninitialized vCPUs (Eric Auger) [2078919]
+- KVM: arm64: Generalise VM features into a set of flags (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Skip tests if we can't create a vgic-v3 (Eric Auger) [2078919]
+- kvm: selftests: aarch64: use a tighter assert in vgic_poke_irq() (Eric Auger) [2078919]
+- kvm: selftests: aarch64: fix some vgic related comments (Eric Auger) [2078919]
+- kvm: selftests: aarch64: fix the failure check in kvm_set_gsi_routing_irqchip_check (Eric Auger) [2078919]
+- kvm: selftests: aarch64: pass vgic_irq guest args as a pointer (Eric Auger) [2078919]
+- kvm: selftests: aarch64: fix assert in gicv3_access_reg (Eric Auger) [2078919]
+- KVM: selftests: Add vgic initialization for dirty log perf test for ARM (Eric Auger) [2078919]
+- KVM: arm64: vgic: Read HW interrupt pending state from the HW (Eric Auger) [2078919]
+- KVM: arm64: Emulate the OS Lock (Eric Auger) [2078919]
+- KVM: arm64: Allow guest to set the OSLK bit (Eric Auger) [2078919]
+- KVM: arm64: Stash OSLSR_EL1 in the cpu context (Eric Auger) [2078919]
+- KVM: arm64: Correctly treat writes to OSLSR_EL1 as undefined (Eric Auger) [2078919]
+- KVM: arm64: vgic: Replace kernel.h with the necessary inclusions (Eric Auger) [2078919]
+- KVM: arm64: Fix comment typo in kvm_vcpu_finalize_sve() (Eric Auger) [2078919]
+- KVM: arm64: selftests: get-reg-list: Add pauth configuration (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add test for restoring active IRQs (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add ISPENDR write tests in vgic_irq (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add tests for IRQFD in vgic_irq (Eric Auger) [2078919]
+- KVM: selftests: Add IRQ GSI routing library functions (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add test_inject_fail to vgic_irq (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add tests for LEVEL_INFO in vgic_irq (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Level-sensitive interrupts tests in vgic_irq (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add preemption tests in vgic_irq (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Cmdline arg to set EOI mode in vgic_irq (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Cmdline arg to set number of IRQs in vgic_irq test (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Abstract the injection functions in vgic_irq (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add vgic_irq to test userspace IRQ injection (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add vGIC library functions to deal with vIRQ state (Eric Auger) [2078919]
+- KVM: selftests: Add kvm_irq_line library function (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add GICv3 register accessor library functions (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Add function for accessing GICv3 dist and redist registers (Eric Auger) [2078919]
+- KVM: selftests: aarch64: Move gic_v3.h to shared headers (Eric Auger) [2078919]
+- KVM: selftests: arm64: Add support for various modes with 16kB page size (Eric Auger) [2078919]
+- KVM: selftests: arm64: Add support for VM_MODE_P36V48_{4K,64K} (Eric Auger) [2078919]
+- KVM: arm64: Fix comment on barrier in kvm_psci_vcpu_on() (Eric Auger) [2078919]
+- KVM: arm64: Fix comment for kvm_reset_vcpu() (Eric Auger) [2078919]
+- KVM: arm64: Use defined value for SCTLR_ELx_EE (Eric Auger) [2078919]
+- KVM: arm64: vgic: Demote userspace-triggered console prints to kvm_debug() (Eric Auger) [2078919]
+- KVM: arm64: Consolidate dist->ready setting into kvm_vgic_map_resources() (Eric Auger) [2078919]
+- arm64/kvm: Fix bitrotted comment for SVE handling in handle_exit.c (Eric Auger) [2078919]
+- KVM: arm64: Drop vcpu->arch.has_run_once for vcpu->pid (Eric Auger) [2078919]
+- KVM: arm64: Merge kvm_arch_vcpu_run_pid_change() and kvm_vcpu_first_run_init() (Eric Auger) [2078919]
+- KVM: arm64: Restructure the point where has_run_once is advertised (Eric Auger) [2078919]
+- KVM: arm64: Move kvm_arch_vcpu_run_pid_change() out of line (Eric Auger) [2078919]
+- KVM: arm64: Move SVE state mapping at HYP to finalize-time (Eric Auger) [2078919]
+- KVM: arm64: Move double-checked lock to kvm_vgic_map_resources() (Eric Auger) [2078919]
+- KVM: arm64: Constify kvm_io_gic_ops (Eric Auger) [2078919]
+- KVM: arm64: Avoid setting the upper 32 bits of TCR_EL2 and CPTR_EL2 to 1 (Eric Auger) [2078919]
+- selftests: KVM: Fix kvm device helper ioctl assertions (Eric Auger) [2078919]
+- ACPI: tables: Quiet ACPI table not found warning (Mark Langsdorf) [2067290]
+- ACPI/IORT: Check node revision for PMCG resources (Mark Langsdorf) [2067290]
+- PM: s2idle: ACPI: Fix wakeup interrupts handling (Mark Langsdorf) [2067290]
+- ACPI: PM: s2idle: Cancel wakeup before dispatching EC GPE (Mark Langsdorf) [2067290]
+- ACPI: PM: Revert "Only mark EC GPE for wakeup on Intel systems" (Mark Langsdorf) [2067290]
+- ACPI: require CRC32 to build (Mark Langsdorf) [2067290]
+- ACPI: DPTF: Support Raptor Lake (Mark Langsdorf) [2067290]
+- ACPI: scan: Rename label in acpi_scan_init() (Mark Langsdorf) [2067290]
+- ACPI: scan: Simplify initialization of power and sleep buttons (Mark Langsdorf) [2067290]
+- ACPI: scan: Change acpi_scan_init() return value type to void (Mark Langsdorf) [2067290]
+- ACPI: SPCR: check if table->serial_port.access_width is too wide (Mark Langsdorf) [2067290]
+- ACPI: APD: Check for NULL pointer after calling devm_ioremap() (Mark Langsdorf) [2067290]
+- ACPI: pfr_telemetry: Fix info leak in pfrt_log_ioctl() (Mark Langsdorf) [2067290]
+- ACPI: APD: Add a fmw property clk-name (Mark Langsdorf) [2067290]
+- ACPI: pfr_update: Fix return value check in pfru_write() (Mark Langsdorf) [2067290]
+- ACPI: processor: thermal: avoid cpufreq_get_policy() (Mark Langsdorf) [2067290]
+- ACPI / x86: Add acpi_quirk_skip_[i2c_client|serdev]_enumeration() helpers (Mark Langsdorf) [2067290]
+- ACPI: battery: Add the ThinkPad "Not Charging" quirk (Mark Langsdorf) [2067290]
+- acpi: Store CRC-32 hash of the _PLD in struct acpi_device (Mark Langsdorf) [2067290]
+- acpi: Export acpi_bus_type (Mark Langsdorf) [2067290]
+- ACPI: sysfs: use default_groups in kobj_type (Mark Langsdorf) [2067290]
+- ACPI: Introduce Platform Firmware Runtime Telemetry driver (Mark Langsdorf) [2067290]
+- ACPI: Introduce Platform Firmware Runtime Update device driver (Mark Langsdorf) [2067290]
+- efi: Introduce EFI_FIRMWARE_MANAGEMENT_CAPSULE_HEADER and corresponding structures (Mark Langsdorf) [2067290]
+- ACPICA: Update version to 20211217 (Mark Langsdorf) [2067290]
+- ACPICA: iASL/NHLT table: "Specific Data" field support (Mark Langsdorf) [2067290]
+- ACPICA: iASL: Add suppport for AGDI table (Mark Langsdorf) [2067290]
+- ACPICA: iASL: Add TDEL table to both compiler/disassembler (Mark Langsdorf) [2067290]
+- ACPICA: Fixed a couple of warnings under MSVC (Mark Langsdorf) [2067290]
+- ACPICA: Change a return_ACPI_STATUS (AE_BAD_PARAMETER) (Mark Langsdorf) [2067290]
+- ACPICA: Hardware: Do not flush CPU cache when entering S4 and S5 (Mark Langsdorf) [2067290]
+- ACPICA: Add support for PCC Opregion special context data (Mark Langsdorf) [2067290]
+- ACPICA: Fix wrong interpretation of PCC address (Mark Langsdorf) [2067290]
+- ACPICA: Executer: Fix the REFCLASS_REFOF case in acpi_ex_opcode_1A_0T_1R() (Mark Langsdorf) [2067290]
+- ACPICA: Utilities: Avoid deleting the same object twice in a row (Mark Langsdorf) [2067290]
+- ACPICA: Fix AEST Processor generic resource substructure data field byte length (Mark Langsdorf) [2067290]
+- ACPICA: iASL/Disassembler: Additional support for NHLT table (Mark Langsdorf) [2067290]
+- ACPICA: Avoid subobject buffer overflow when validating RSDP signature (Mark Langsdorf) [2067290]
+- ACPICA: Macros: Remove ACPI_PHYSADDR_TO_PTR (Mark Langsdorf) [2067290]
+- ACPICA: Use original pointer for virtual origin tables (Mark Langsdorf) [2067290]
+- ACPICA: Use original data_table_region pointer for accesses (Mark Langsdorf) [2067290]
+- ACPICA: actypes.h: Expand the ACPI_ACCESS_ definitions (Mark Langsdorf) [2067290]
+- ACPI: CPPC: Amend documentation in the comments (Mark Langsdorf) [2067290]
+- ACPI: NFIT: Import GUID before use (Mark Langsdorf) [2067290]
+- ACPI: PM: Remove redundant cache flushing (Mark Langsdorf) [2067290]
+- ACPI: Use acpi_fetch_acpi_dev() instead of acpi_bus_get_device() (Mark Langsdorf) [2067290]
+- ACPI: tables: Add AEST to the list of known table signatures (Mark Langsdorf) [2067290]
+- ACPI: PM: Avoid CPU cache flush when entering S4 (Mark Langsdorf) [2067290]
+- PM: hibernate: Allow ACPI hardware signature to be honoured (Mark Langsdorf) [2067290]
+- ACPI: PMIC: xpower: Fix _TMP ACPI errors (Mark Langsdorf) [2067290]
+- ACPI: PMIC: allow drivers to provide a custom lpat_raw_to_temp() function (Mark Langsdorf) [2067290]
+- ACPI: PMIC: constify all struct intel_pmic_opregion_data declarations (Mark Langsdorf) [2067290]
+- ACPI: EC: Mark the ec_sys write_support param as module_param_hw() (Mark Langsdorf) [2067290]
+- ACPI: EC: Relocate acpi_ec_create_query() and drop acpi_ec_delete_query() (Mark Langsdorf) [2067290]
+- ACPI: EC: Make the event work state machine visible (Mark Langsdorf) [2067290]
+- ACPI: EC: Avoid queuing unnecessary work in acpi_ec_submit_event() (Mark Langsdorf) [2067290]
+- ACPI: EC: Rename three functions (Mark Langsdorf) [2067290]
+- ACPI: EC: Simplify locking in acpi_ec_event_handler() (Mark Langsdorf) [2067290]
+- ACPI: EC: Rearrange the loop in acpi_ec_event_handler() (Mark Langsdorf) [2067290]
+- ACPI: EC: Fold acpi_ec_check_event() into acpi_ec_event_handler() (Mark Langsdorf) [2067290]
+- ACPI: EC: Pass one argument to acpi_ec_query() (Mark Langsdorf) [2067290]
+- ACPI: EC: Call advance_transaction() from acpi_ec_dispatch_gpe() (Mark Langsdorf) [2067290]
+- ACPI: EC: Rework flushing of EC work while suspended to idle (Mark Langsdorf) [2067290]
+- ACPI / x86: Add PWM2 on the Xiaomi Mi Pad 2 to the always_present list (Mark Langsdorf) [2067290]
+- ACPI / x86: Add not-present quirk for the PCI0.SDHB.BRC1 device on the GPD win (Mark Langsdorf) [2067290]
+- ACPI / x86: Allow specifying acpi_device_override_status() quirks by path (Mark Langsdorf) [2067290]
+- ACPI: Change acpi_device_always_present() into acpi_device_override_status() (Mark Langsdorf) [2067290]
+- ACPI / x86: Drop PWM2 device on Lenovo Yoga Book from always present table (Mark Langsdorf) [2067290]
+- ACPI: processor idle: Use swap() instead of open coding it (Mark Langsdorf) [2067290]
+- ACPI: processor: Replace kernel.h with the necessary inclusions (Mark Langsdorf) [2067290]
+- ACPI: DPTF: Update device ID in a comment (Mark Langsdorf) [2067290]
+- ACPI: PM: Emit debug messages when enabling/disabling wakeup power (Mark Langsdorf) [2067290]
+- ACPI: thermal: drop an always true check (Mark Langsdorf) [2067290]
+- ACPI: Add a context argument for table parsing handlers (Mark Langsdorf) [2067290]
+- ACPI: Teach ACPI table parsing about the CEDT header format (Mark Langsdorf) [2067290]
+- ACPI: Keep sub-table parsing infrastructure available for modules (Mark Langsdorf) [2067290]
+- cxgb4: fix wrong shift. (Raju Rangoju) [1977437]
+- cxgb4: fix wrong ethtool n-tuple rule lookup (Raju Rangoju) [1977437]
+- cxgb4: halt chip before flashing PHY firmware image (Raju Rangoju) [1977437]
+- cxgb4: fix sleep in atomic when flashing PHY firmware (Raju Rangoju) [1977437]
+- cxgb4: fix endianness when flashing boot image (Raju Rangoju) [1977437]
+- cxgb4: avoid link re-train during TC-MQPRIO configuration (Raju Rangoju) [1977437]
+- cxgb4: fix regression with HASH tc prio value update (Raju Rangoju) [1977437]
+- cxgb4: avoid accessing registers when clearing filters (Raju Rangoju) [1977437]
+- net:CXGB4: fix leak if sk_buff is not used (Raju Rangoju) [1977437]
+- cxgb4: Fix unintentional sign extension issues (Raju Rangoju) [1977437]
+- cxgb4: remove unneeded if-null-free check (Raju Rangoju) [1977437]
+- PCI: vmd: Assign VMD IRQ domain before enumeration (Myron Stowe) [2050850]
+- PCI: vmd: Prevent recursive locking on interrupt allocation (Myron Stowe) [2050850]
+- PCI: vmd: Add DID 8086:A77F for all Intel Raptor Lake SKU's (Myron Stowe) [2050850]
+- PCI: vmd: Honor ACPI _OSC on PCIe features (Myron Stowe) [2050850]
+- PCI: vmd: Clean up domain before enumeration (Myron Stowe) [2050850]
+- PCI: vmd: Use PCI_POSSIBLE_ERROR() to check config reads (Myron Stowe) [2050850]
+- PCI: Add PCI_ERROR_RESPONSE and related definitions (Myron Stowe) [2050850]
+- PCI: vmd: Drop redundant includes of <asm/device.h>, <asm/msi.h> (Myron Stowe) [2050850]
+- PCI: vmd: Assign a number to each VMD controller (Myron Stowe) [2050850]
+- PCI: vmd: Disable MSI-X remapping when possible (Myron Stowe) [2050850]
+- PCI: vmd: Offset Client VMD MSI-X vectors (Myron Stowe) [2050850]
+- PCI: vmd: Use msi_msg shadow structs (Myron Stowe) [2050850]
+- Merge tag 'pci-v5.10-changes' of git://git.kernel.org/pub/scm/linux/kernel/g (Myron Stowe) [2050850]
+- PCI: vmd: Update VMD PM to correctly use generic PCI PM (Myron Stowe) [2050850]
+- PCI: vmd: Create IRQ allocation helper (Myron Stowe) [2050850]
+- PCI: vmd: Create IRQ Domain configuration helper (Myron Stowe) [2050850]
+- PCI: vmd: Create bus offset configuration helper (Myron Stowe) [2050850]
+- PCI: vmd: Create physical offset helper (Myron Stowe) [2050850]
+- PCI_vmd_Mark_VMD_irqdomain_with_DOMAIN_BUS_VMD_MSI (Myron Stowe) [2050850]
+- irqdomain/msi: Provide DOMAIN_BUS_VMD_MSI (Myron Stowe) [2050850]
+- PCI: vmd: Dont abuse vector irqomain as parent (Myron Stowe) [2050850]
+- PCI: designware-ep: Fix the Header Type check (Myron Stowe) [2050850]
+- PCI: vmd: Use Shadow MEMBAR registers for QEMU/KVM guests (Myron Stowe) [2050850]
+- PCI: vmd: Filter resource type bits from shadow register (Myron Stowe) [2050850]
+- PCI: Fix indentation (Myron Stowe) [2050850]
+- scsi: iscsi: Fix session removal on shutdown (Chris Leech) [2101760]
+- scsi: qedi: Use QEDI_MODE_NORMAL for error handling (Chris Leech) [2101760]
+- scsi: iscsi: Add helper to remove a session from the kernel (Chris Leech) [2101760]
+- scsi: iscsi: Clean up bound endpoints during shutdown (Chris Leech) [2101760]
+- scsi: iscsi: Allow iscsi_if_stop_conn() to be called from kernel (Chris Leech) [2101760]
+- scsi: iscsi: Fix HW conn removal use after free (Chris Leech) [2101760]
+- scsi: iscsi: Make iscsi_unregister_transport() return void (Chris Leech) [2101760]
+- scsi: core: iscsi: Directly use ida_alloc()/ida_free() (Chris Leech) [2101760]
+- scsi: iscsi: Exclude zero from the endpoint ID range (Chris Leech) [2101760]
+- scsi: iscsi: Fix harmless double shift bug (Chris Leech) [2101760]
+- scsi: libiscsi: Remove unnecessary memset() in iscsi_conn_setup() (Chris Leech) [2101760]
+- scsi: libiscsi: Teardown iscsi_cls_conn gracefully (Chris Leech) [2101760]
+- scsi: libiscsi: Add iscsi_cls_conn to sysfs after initialization (Chris Leech) [2101760]
+- scsi: iscsi: Add helper functions to manage iscsi_cls_conn (Chris Leech) [2101760]
+- scsi: iscsi: Drop temp workq_name (Chris Leech) [2101760]
+- scsi: iscsi: Use the session workqueue for recovery (Chris Leech) [2101760]
+- scsi: iscsi: ql4xxx: Use per-session workqueue for unbinding (Chris Leech) [2101760]
+- scsi: iscsi: Remove iscsi_scan_finished() (Chris Leech) [2101760]
+- scsi: libiscsi: Fix UAF in iscsi_conn_get_param()/iscsi_conn_teardown() (Chris Leech) [2101760]
+- scsi: libiscsi: Move ehwait initialization to iscsi_session_setup() (Chris Leech) [2101760]
+- x86/sme: Explicitly map new EFI memmap table as encrypted (Chris von Recklinghausen) [2091831]
+- x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c (Chris von Recklinghausen) [2091831]
+- efi/x86: Fix boot regression on systems with invalid memmap entries (Chris von Recklinghausen) [2091831]
+- efi: Add tracking for dynamically allocated memmaps (Chris von Recklinghausen) [2091831]
+- efi: Add a flags parameter to efi_memory_map (Chris von Recklinghausen) [2091831]
+- x86/kexec: fix memory leak of elf header buffer (Tao Liu) [2014945]
+- net: sched: add barrier to fix packet stuck problem for lockless qdisc (Davide Caratti) [2103025]
+- powercap: intel_rapl: add support for ALDERLAKE_N (David Arcari) [2096964]
+- clk: fix invalid usage of list cursor in unregister (David Arcari) [2105258]
+- clk: fix invalid usage of list cursor in register (David Arcari) [2105258]
+- powercap: intel_rapl: add support for RaptorLake (David Arcari) [2076724]
+- lib/math: move int_pow() from pwm_bl.c for wider use (Ivan Vecera) [2101700]
+- x86/fpu: KVM: Set the base guest FPU uABI size to sizeof(struct kvm_xsave) (Paul Lai) [2092066]
+
+* Mon Jul 11 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-409.el8]
+- net/sched: cls_u32: fix possible leak in u32_init_knode() (Davide Caratti) [2081283]
+- net/sched: cls_u32: fix netns refcount changes in u32_change() (Davide Caratti) [2081283]
+- net/sched: flower: fix parsing of ethertype following VLAN header (Davide Caratti) [2081283]
+- net: sched: limit TC_ACT_REPEAT loops (Davide Caratti) [2081283]
+- net_sched: add __rcu annotation to netdev->qdisc (Davide Caratti) [2081283]
+- sch_htb: Fail on unsupported parameters when offload is requested (Davide Caratti) [2081283]
+- net_sched: restore "mpu xxx" handling (Davide Caratti) [2081283]
+- net: sched: sch_netem: Refactor code in 4-state loss generator (Davide Caratti) [2081283]
+- net/mlx5e: TC, Fix ct_clear overwriting ct action metadata (Amir Tzin) [2100474]
+- bpftool: man: Add missing top level docs (Yauheni Kaliuta) [2097615]
+- net/mlx5: CT: Fix header-rewrite re-use for tupels (Amir Tzin) [2101162]
+- cpuidle: haltpoll: Call cpuidle_poll_state_init() later (Mark Langsdorf) [2067313]
+- cpuidle: use default_groups in kobj_type (Mark Langsdorf) [2067313]
+- cpuidle: Fix cpuidle_remove_state_sysfs() kerneldoc comment (Mark Langsdorf) [2067313]
+- cpuidle: menu: Fix typo in a comment (Mark Langsdorf) [2067313]
+- cpuidle: Fix kobject memory leaks in error paths (Mark Langsdorf) [2067313]
+- cpuidle: menu: Take negative "sleep length" values into account (Mark Langsdorf) [2067313]
+- HID: elo: Revert USB reference counting (Benjamin Tissoires) [2073833]
+- HID: elo: fix memory leak in elo_probe (Benjamin Tissoires) [2073833]
+- fs: dlm: filter user dlm messages for kernel locks (Alexander Aring) [2026116]
+- psample: Add a fwd declaration for skbuff (Ivan Vecera) [2101706]
+- platform/x86/intel/sdsi: Fix bug in multi packet reads (Prarit Bhargava) [2100948]
+- platform/x86/intel/sdsi: Poll on ready bit for writes (Prarit Bhargava) [2100948]
+- platform/x86/intel/sdsi: Handle leaky bucket (Prarit Bhargava) [2100948]
+- indirect_call_wrapper: extend indirect wrapper to support up to 4 calls (Petr Oros) [2101705]
+- block: Fix handling of offline queues in blk_mq_alloc_request_hctx() (Ming Lei) [2081913]
+- netfilter: br_netfilter: do not skip all hooks with 0 priority (Florian Westphal) [2099732]
+- net: openvswitch: fix parsing of nw_proto for IPv6 fragments (Eelco Chaudron) [2101537]
+- s390/smp,vdso: fix ASCE handling (Tobias Huschle) [2103887]
+- [s390] s390/pci: fix zpci_zdev_put() on reserve (Claudio Imbrenda) [2102305]
+- intel/igbvf:fix repeated words in comments (Corinna Vinschen) [2037962]
+- igbvf: Remove useless DMA-32 fallback configuration (Corinna Vinschen) [2037962]
+- SUNRPC: avoid race between mod_timer() and del_timer_sync() (Benjamin Coddington) [2104507]
+- iavf: Fix issue with MAC address of VF shown as zero (Petr Oros) [2037938]
+- iavf: switch to napi_build_skb() (Petr Oros) [2037938]
+- iavf: Remove non-inclusive language (Petr Oros) [2037938]
+- iavf: Fix incorrect use of assigning iavf_status to int (Petr Oros) [2037938]
+- iavf: stop leaking iavf_status as "errno" values (Petr Oros) [2037938]
+- iavf: Add usage of new virtchnl format to set default MAC (Petr Oros) [2037938]
+- iavf: refactor processing of VLAN V2 capability message (Petr Oros) [2037938]
+- iavf: Add support for 50G/100G in AIM algorithm (Petr Oros) [2037938]
+- iavf: remove redundant ret variable (Petr Oros) [2037938]
+- iavf: Remove useless DMA-32 fallback configuration (Petr Oros) [2037938]
+- cifs: fix potential double free during failed mount (Ronnie Sahlberg) [2088799]
+- cifs: escape spaces in share names (Dave Wysochanski) [2100367]
+- Documentation: add documentation for force_cgroup_v2_swappiness control (Nico Pache) [2084242]
+- Introduce force_cgroup_v2_swappiness tuneable to deprecate cgv1 per-cgroup swappiness (Nico Pache) [2084242]
+- redhat: trim rpminspect config file (Jarod Wilson)
+
+* Wed Jul 06 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-408.el8]
+- powerpc/smp: Set numa node before updating mask (Diego Domingos) [2103833]
+- iommu/vt-d: Fix potential memory leak in intel_setup_irq_remapping() (Mohammed Gamal) [2088366]
+- irqdomain/treewide: Free firmware node after domain removal (Mohammed Gamal) [2088366]
+- x86/kvmclock: Fix Hyper-V Isolated VM's boot issue when vCPUs > 64 (Mohammed Gamal) [2088366]
+- x86/kvm: Don't waste memory if kvmclock is disabled (Mohammed Gamal) [2088366]
+- x86/pci: Create PCI/MSI irqdomain after x86_init.pci.arch_init() (Mohammed Gamal) [2088366]
+- x86/pci: Reducde #ifdeffery in PCI init code (Mohammed Gamal) [2088366]
+- hv_utils: Add comment about max VMbus packet size in VSS driver (Mohammed Gamal) [2088366]
+- x86/coco: Explicitly declare type of confidential computing platform (Mohammed Gamal) [2088366]
+- x86/hyper-v: Add hyperv Isolation VM check in the cc_platform_has() (Mohammed Gamal) [2088366]
+- x86/sev: Use CC_ATTR attribute to generalize string I/O unroll (Mohammed Gamal) [2088366]
+- random: remove unused irq_flags argument from add_interrupt_randomness() (Mohammed Gamal) [2088366]
+- x86/hyperv: Fix definition of hv_ghcb_pg variable (Mohammed Gamal) [2088366]
+- swiotlb: Add CONFIG_HAS_IOMEM check around swiotlb_mem_remap() (Mohammed Gamal) [2088366]
+- hyper-v: Enable swiotlb bounce buffer for Isolation VM (Mohammed Gamal) [2088366]
+- swiotlb: Add swiotlb bounce buffer remap function for HV IVM (Mohammed Gamal) [2088366]
+- x86/hyperv: Refactor hv_msi_domain_free_irqs() (Mohammed Gamal) [2088366]
+- x86/hyperv: Move required MSRs check to initial platform probing (Mohammed Gamal) [2088366]
+- x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails (Mohammed Gamal) [2088366]
+- x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted (Mohammed Gamal) [2088366]
+- x86/hyperv: Remove duplicate include (Mohammed Gamal) [2088366]
+- x86/hyperv: Remove duplicated include in hv_init (Mohammed Gamal) [2088366]
+- x86/hyperv: Add ghcb hvcall support for SNP VM (Mohammed Gamal) [2088366]
+- x86/hyperv: Add Write/Read MSR registers via ghcb page (Mohammed Gamal) [2088366]
+- x86/hyperv: Add new hvcall guest address host visibility support (Mohammed Gamal) [2088366]
+- x86/hyperv: Initialize shared memory boundary in the Isolation VM. (Mohammed Gamal) [2088366]
+- x86/hyperv: Initialize GHCB page in Isolation VM (Mohammed Gamal) [2088366]
+- x86/sev: Replace occurrences of sev_es_active() with cc_platform_has() (Mohammed Gamal) [2088366]
+- x86/sev: Replace occurrences of sev_active() with cc_platform_has() (Mohammed Gamal) [2088366]
+- x86/sev-es: Do not unroll string I/O for SEV-ES guests (Mohammed Gamal) [2088366]
+- efi/x86: Avoid RWX mappings for all of DRAM (Mohammed Gamal) [2088366]
+- x86/sme: Replace occurrences of sme_active() with cc_platform_has() (Mohammed Gamal) [2088366]
+- x86/sev: Add an x86 version of cc_platform_has() (Mohammed Gamal) [2088366]
+- vmalloc: fix the owner argument for the new __vmalloc_node_range callers (Mohammed Gamal) [2088366]
+- mm: remove vmalloc_exec (Mohammed Gamal) [2088366]
+- arm64: use PAGE_KERNEL_ROX directly in alloc_insn_page (Mohammed Gamal) [2088366]
+- arm64/kprobes: set VM_FLUSH_RESET_PERMS on kprobe instruction pages (Mohammed Gamal) [2088366]
+- x86/hyperv: allocate the hypercall page with only read and execute bits (Mohammed Gamal) [2088366]
+- x86/hyperv: use vmalloc_exec for the hypercall page (Mohammed Gamal) [2088366]
+- drivers: hv: Create a consistent pattern for checking Hyper-V hypercall status (Mohammed Gamal) [2088366]
+- x86/irq: Initialize PCI/MSI domain at PCI init time (Mohammed Gamal) [2088366]
+- x86/hyperv: implement an MSI domain for root partition (Mohammed Gamal) [2088366]
+- irqdomain/treewide: Keep firmware node unconditionally allocated (Mohammed Gamal) [2088366]
+- irqdomain/msi: Allow to override msi_domain_alloc/free_irqs() (Mohammed Gamal) [2088366]
+- x86/sev: Expose sev_es_ghcb_hv_call() for use by HyperV (Mohammed Gamal) [2088366]
+- x86/sev: Carve out HV call's return value verification (Mohammed Gamal) [2088366]
+- x86/sev: Fix noinstr for vc_ghcb_invalidate() (Mohammed Gamal) [2088366]
+- arch/cc: Introduce a function to check for confidential computing features (Mohammed Gamal) [2088366]
+- Revert "drivers: hv: Create a consistent pattern for checking Hyper-V hypercall status" (Mohammed Gamal) [2088366]
+- Revert "drivers: hv: Create a consistent pattern for checking Hyper-V hypercall status" (Mohammed Gamal) [2088366]
+- libperf tests: Fix typo in perf_evlist__open() failure error messages (Michael Petlan) [1878555]
+- libperf: Fix 32-bit build for tests uint64_t printf (Michael Petlan) [1878555]
+- libperf: Add arm64 support to perf_mmap__read_self() (Michael Petlan) [1878555]
+- libperf tests: Add test_stat_multiplexing test (Michael Petlan) [1878555]
+- libperf: Remove scaling process from perf_mmap__read_self() (Michael Petlan) [1878555]
+- libperf: Adopt perf_counts_values__scale() from tools/perf/util (Michael Petlan) [1878555]
+- arm64: perf: Don't register user access sysctl handler multiple times (Michael Petlan) [1878555]
+- Documentation: arm64: Document PMU counters access from userspace (Michael Petlan) [1878555]
+- arm64: perf: Enable PMU counter userspace access for perf event (Michael Petlan) [1878555]
+- arm64: perf: Add support for ARMv8.5-PMU 64-bit counters (Michael Petlan) [1878555]
+- arm64: perf: Clean up enable/disable calls (Michael Petlan) [1878555]
+- arm64: perf: Only advertise cap_user_time for arch_timer (Michael Petlan) [1878555]
+- arm64: perf: Implement correct cap_user_time (Michael Petlan) [1878555]
+- arm64: perf: Add userspace counter access disable switch (Michael Petlan) [1878555]
+- perf: Add a counter for number of user access events in context (Michael Petlan) [1878555]
+- x86: perf: Move RDPMC event flag to a common definition (Michael Petlan) [1878555]
+- Fix null ptr dereference crash due to premature release of ndlp. Upstream Status: RHEL-Only Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2034425 (Dick Kennedy)
+- lpfc updates for rh8.7 14.0.0.13 (Dick Kennedy) [2034425]
+- scsi: lpfc: Use sg_dma_address() and sg_dma_len() macros for NVMe I/O (Dick Kennedy) [2034425]
+- scsi: lpfc: Alter FPIN stat accounting logic (Dick Kennedy) [2034425]
+- scsi: lpfc: Decrement outstanding gidft_inp counter if lpfc_err_lost_link() (Dick Kennedy) [2034425]
+- scsi: lpfc: Use list_for_each_entry_safe() in rscn_recovery_check() (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix ndlp put following a LOGO completion (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix additional reference counting in lpfc_bsg_rport_els() (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix resource leak in lpfc_sli4_send_seq_to_ulp() (Dick Kennedy) [2034425]
+- scsi: lpfc: Remove unneeded variable (Dick Kennedy) [2034425]
+- scsi: lpfc: Copyright updates for 14.2.0.2 patches (Dick Kennedy) [2034425]
+- scsi: lpfc: Expand setting ELS_ID field in ELS_REQUEST64_WQE (Dick Kennedy) [2034425]
+- scsi: lpfc: Update stat accounting for READ_STATUS mbox command (Dick Kennedy) [2034425]
+- scsi: lpfc: Change FA-PWWN detection methodology (Dick Kennedy) [2034425]
+- scsi: lpfc: Register for Application Services FC-4 type in Fabric topology (Dick Kennedy) [2034425]
+- scsi: lpfc: Remove false FDMI NVMe FC-4 support for NPIV ports (Dick Kennedy) [2034425]
+- scsi: lpfc: Revise FDMI reporting of supported port speed for trunk groups (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix call trace observed during I/O with CMF enabled (Dick Kennedy) [2034425]
+- scsi: lpfc: Correct CRC32 calculation for congestion stats (Dick Kennedy) [2034425]
+- scsi: lpfc: Move MI module parameter check to handle dynamic disable (Dick Kennedy) [2034425]
+- scsi: lpfc: Remove unnecessary NULL pointer assignment for ELS_RDF path (Dick Kennedy) [2034425]
+- scsi: lpfc: Transition to NPR state upon LOGO cmpl if link down or aborted (Dick Kennedy) [2034425]
+- scsi: lpfc: Update fc_prli_sent outstanding only after guaranteed IOCB submit (Dick Kennedy) [2034425]
+- scsi: lpfc: Protect memory leak for NPIV ports sending PLOGI_RJT (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix null pointer dereference after failing to issue FLOGI and PLOGI (Dick Kennedy) [2034425]
+- scsi: lpfc: Clear fabric topology flag before initiating a new FLOGI (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix SCSI I/O completion and abort handler deadlock (Dick Kennedy) [2034425]
+- scsi: lpfc: Requeue SCSI I/O to upper layer when fw reports link down (Dick Kennedy) [2034425]
+- scsi: lpfc: Zero SLI4 fcp_cmnd buffer's fcpCntl0 field (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix diagnostic fw logging after a function reset (Dick Kennedy) [2034425]
+- scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg() (Dick Kennedy) [2034425]
+- scsi: lpfc: Tweak message log categories for ELS/FDMI/NVMe rescan (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix queue failures when recovering from PCI parity error (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix unload hang after back to back PCI EEH faults (Dick Kennedy) [2034425]
+- scsi: lpfc: Improve PCI EEH Error and Recovery Handling (Dick Kennedy) [2034425]
+- scsi: lpfc: Use kcalloc() (Dick Kennedy) [2034425]
+- scsi: lpfc: Fix typos in comments (Dick Kennedy) [2034425]
+- scsi: lpfc: Remove failing soft_wwn support (Dick Kennedy) [2034425]
+- scsi: lpfc: Reduce log messages seen after firmware download (Dick Kennedy) [2034425]
+- scsi: lpfc: Remove NVMe support if kernel has NVME_FC disabled (Dick Kennedy) [2034425]
+- scsi: lpfc: Remove redundant flush_workqueue() call (Dick Kennedy) [2034425]
+- scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() (Dick Kennedy) [2034425]
+- scsi: lpfc: Use irq_set_affinity() (Dick Kennedy) [2034425]
+- time: Handle negative seconds correctly in timespec64_to_ns() (Íñigo Huguet) [2098634]
+- time: Prevent undefined behaviour in timespec64_to_ns() (Íñigo Huguet) [2098634]
+- mm,hwpoison: return -EBUSY when migration fails (Rafael Aquini) [2092671 2099510]
+- mm,hwpoison: remove drain_all_pages from shake_page (Rafael Aquini) [2092671]
+- mm,hwpoison: disable pcplists before grabbing a refcount (Rafael Aquini) [2092671]
+- mm,hwpoison: fix printing of page flags (Rafael Aquini) [2092671]
+- mm,hwpoison: refactor get_any_page (Rafael Aquini) [2092671]
+- mm,hwpoison: drop unneeded pcplist draining (Rafael Aquini) [2092671]
+- mm,hwpoison: drain pcplists before bailing out for non-buddy zero-refcount page (Rafael Aquini) [2092671]
+- redhat: Exclude cpufreq.h from kernel-headers (Patrick Talbert)
+
+* Fri Jul 01 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-407.el8]
+- dm raid: fix accesses beyond end of raid member array (Benjamin Marzinski) [2012340]
+- dm mirror log: clear log bits up to BITS_PER_LONG boundary (Benjamin Marzinski) [2012340]
+- dm: fix BLK_STS_DM_REQUEUE handling when dm_io represents split bio (Benjamin Marzinski) [2012340]
+- dm mirror log: round up region bitmap size to BITS_PER_LONG (Benjamin Marzinski) [2012340]
+- dm: improve abnormal bio processing (Benjamin Marzinski) [2012340]
+- dm: simplify bio-based IO accounting further (Benjamin Marzinski) [2012340]
+- dm: don't grab target io reference in dm_zone_map_bio (Benjamin Marzinski) [2012340]
+- dm: improve bio splitting and associated IO accounting (Benjamin Marzinski) [2012340]
+- dm era: commit metadata in postsuspend after worker stops (Benjamin Marzinski) [2012340]
+- dm: fix race in dm_start_io_acct (Benjamin Marzinski) [2012340]
+- block: remove bioset_init_from_src (Benjamin Marzinski) [2012340]
+- dm: fix bio_set allocation (Benjamin Marzinski) [2012340]
+- dm verity: set DM_TARGET_IMMUTABLE feature flag (Benjamin Marzinski) [2012340]
+- dm cache metadata: remove unnecessary variable in __dump_mapping (Benjamin Marzinski) [2012340]
+- dm mpath: provide high-resolution timer to HST for bio-based (Benjamin Marzinski) [2012340]
+- dm crypt: make printing of the key constant-time (Benjamin Marzinski) [2012340]
+- dm integrity: fix error code in dm_integrity_ctr() (Benjamin Marzinski) [2012340]
+- dm stats: add cond_resched when looping over entries (Benjamin Marzinski) [2012340]
+- dm: improve dm_io reference counting (Benjamin Marzinski) [2012340]
+- dm: switch to bdev based IO accounting interfaces (Benjamin Marzinski) [2012340]
+- block: add sectors parameter to bio_start_io_acct_time() (Benjamin Marzinski) [2012340]
+- dm: pass dm_io instance to dm_io_acct directly (Benjamin Marzinski) [2012340]
+- dm: don't pass bio to __dm_start_io_acct and dm_end_io_acct (Benjamin Marzinski) [2012340]
+- dm: use bio_sectors in dm_aceept_partial_bio (Benjamin Marzinski) [2012340]
+- dm: simplify basic targets (Benjamin Marzinski) [2012340]
+- dm: conditionally enable branching for less used features (Benjamin Marzinski) [2012340]
+- dm: move hot dm_io members to same cacheline as dm_target_io (Benjamin Marzinski) [2012340]
+- dm: add local variables to clone_endio and __map_bio (Benjamin Marzinski) [2012340]
+- dm: mark various branches unlikely (Benjamin Marzinski) [2012340]
+- dm: simplify dm_start_io_acct (Benjamin Marzinski) [2012340]
+- dm: simplify dm_io access in dm_split_and_process_bio (Benjamin Marzinski) [2012340]
+- dm: factor out dm_io_set_error and __dm_io_dec_pending (Benjamin Marzinski) [2012340]
+- block: fix offset/size check in bio_trim() (Benjamin Marzinski) [2012340]
+- block: fix argument type of bio_trim() (Benjamin Marzinski) [2012340]
+- dm: allow dm_accept_partial_bio() for dm_io without duplicate bios (Benjamin Marzinski) [2012340]
+- dm mpath: only use ktime_get_ns() in historical selector (Benjamin Marzinski) [2012340]
+- dm: fix dm_io and dm_target_io flags race condition on Alpha (Benjamin Marzinski) [2012340]
+- dm integrity: set journal entry unused when shrinking device (Benjamin Marzinski) [2012340]
+- dm ioctl: log an error if the ioctl structure is corrupted (Benjamin Marzinski) [2012340]
+- dm: consolidate spinlocks in dm_io struct (Benjamin Marzinski) [2012340]
+- dm: reduce size of dm_io and dm_target_io structs (Benjamin Marzinski) [2012340]
+- dm: switch dm_target_io booleans over to proper flags (Benjamin Marzinski) [2012340]
+- dm: switch dm_io booleans over to proper flags (Benjamin Marzinski) [2012340]
+- dm: return void from __send_empty_flush (Benjamin Marzinski) [2012340]
+- dm: factor out dm_io_complete (Benjamin Marzinski) [2012340]
+- dm cache: use dm_submit_bio_remap (Benjamin Marzinski) [2012340]
+- dm: simplify dm_sumbit_bio_remap interface (Benjamin Marzinski) [2012340]
+- dm thin: use dm_submit_bio_remap (Benjamin Marzinski) [2012340]
+- dm: add WARN_ON_ONCE to dm_submit_bio_remap (Benjamin Marzinski) [2012340]
+- dm: requeue IO if mapping table not yet available (Benjamin Marzinski) [2012340]
+- dm thin metadata: remove unused dm_thin_remove_block and __remove (Benjamin Marzinski) [2012340]
+- dm thin: use time_is_before_jiffies instead of open coding it (Benjamin Marzinski) [2012340]
+- dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS (Benjamin Marzinski) [2012340]
+- dm ioctl: prevent potential spectre v1 gadget (Benjamin Marzinski) [2012340]
+- dm cache policy smq: make static read-only array table const (Benjamin Marzinski) [2012340]
+- dm delay: use dm_submit_bio_remap (Benjamin Marzinski) [2012340]
+- dm crypt: use dm_submit_bio_remap (Benjamin Marzinski) [2012340]
+- dm: add dm_submit_bio_remap interface (Benjamin Marzinski) [2012340]
+- dm: flag clones created by __send_duplicate_bios (Benjamin Marzinski) [2012340]
+- dm: reduce dm_io and dm_target_io struct sizes (Benjamin Marzinski) [2012340]
+- dm: move duplicate code from callers of alloc_tio into alloc_tio (Benjamin Marzinski) [2012340]
+- dm: record old_sector in dm_target_io before calling map function (Benjamin Marzinski) [2012340]
+- dm: remove legacy code only needed before submit_bio recursion (Benjamin Marzinski) [2012340]
+- dm: remove unused mapped_device argument from free_tio (Benjamin Marzinski) [2012340]
+- dm: remove impossible BUG_ON in __send_empty_flush (Benjamin Marzinski) [2012340]
+- dm: reduce code duplication in __map_bio (Benjamin Marzinski) [2012340]
+- dm: refactor dm_split_and_process_bio a bit (Benjamin Marzinski) [2012340]
+- dm: fold __clone_and_map_data_bio into __split_and_process_bio (Benjamin Marzinski) [2012340]
+- dm: rename split functions (Benjamin Marzinski) [2012340]
+- dm: eliminate copying of dm_io fields in dm_io_dec_pending (Benjamin Marzinski) [2012340]
+- dm ioctl: return UUID in DM_LIST_DEVICES_CMD result (Benjamin Marzinski) [2012340]
+- dm crypt: support using trusted keys (Benjamin Marzinski) [2012340]
+- dm crypt: replaced #if defined with IS_ENABLED (Benjamin Marzinski) [2012340]
+- ext4: add check to prevent attempting to resize an fs with sparse_super2 (Lukas Czerner) [2077760]
+- fscache: Avoid ASSERTCMP if two threads race into fscache_disable_cookie (Dave Wysochanski) [2073260]
+- lib: bitmap: Introduce node-aware alloc API (Ivan Vecera) [2101701]
+- exec: Force single empty string when argv is empty (Rafael Aquini) [2100955]
+- powerpc: Enable execve syscall exit tracepoint (Steve Best) [2095521]
+- cgroup: disable controllers at parse time (Waiman Long) [2098264]
+- init: initialize jump labels before command line option parsing (Waiman Long) [2098264]
+- smp: Make softirq handling RT safe in flush_smp_call_function_queue() (Phil Auld) [2097364]
+- smp: Rename flush_smp_call_function_from_idle() (Phil Auld) [2097364]
+- cpupower: Add "perf" option to print AMD P-State information (Steve Best) [2059365]
+- cpupower: Add function to print AMD P-State performance capabilities (Steve Best) [2059365]
+- cpupower: Move print_speed function into misc helper (Steve Best) [2059365]
+- cpupower: Enable boost state support for AMD P-State module (Steve Best) [2059365]
+- cpupower: Add AMD P-State sysfs definition and access helper (Steve Best) [2059365]
+- cpupower: Introduce ACPI CPPC library (Steve Best) [2059365]
+- cpupower: Add the function to get the sysfs value from specific table (Steve Best) [2059365]
+- cpupower: Initial AMD P-State capability (Steve Best) [2059365]
+- cpupower: Add the function to check AMD P-State enabled (Steve Best) [2059365]
+- cpupower: Add AMD P-State capability flag (Steve Best) [2059365]
+- tools/power/cpupower/{ToDo => TODO}: Rename the todo file (Steve Best) [2059365]
+- tools: cpupower: fix typo in cpupower-idle-set(1) manpage (Steve Best) [2059365]
+- ntb: intel: fix port config status offset for SPR (John W. Linville) [2048750]
+- NTB/msi: Use struct_size() helper in devm_kzalloc() (John W. Linville) [2048750]
+- ntb_hw_switchtec: Fix a minor issue in config_req_id_table() (John W. Linville) [2048750]
+- ntb_hw_switchtec: Remove code for disabling ID protection (John W. Linville) [2048750]
+- ntb_hw_switchtec: Update the way of getting VEP instance ID (John W. Linville) [2048750]
+- ntb_hw_switchtec: AND with the part_map for a valid tpart_vec (John W. Linville) [2048750]
+- ntb_hw_switchtec: Fix bug with more than 32 partitions (John W. Linville) [2048750]
+- ntb_hw_switchtec: Fix pff ioread to read into mmio_part_cfg_all (John W. Linville) [2048750]
+- ntb_hw_switchtec: fix the spelling of "its" (John W. Linville) [2048750]
+- NTB/msi: Fix ntbm_msi_request_threaded_irq() kernel-doc comment (John W. Linville) [2048750]
+- NTB: switch from 'pci_' to 'dma_' API (John W. Linville) [2048750]
+- ntb: ntb_pingpong: remove redundant initialization of variables msg_data and spad_data (John W. Linville) [2048750]
+- NTB: perf: Fix an error code in perf_setup_inbuf() (John W. Linville) [2048750]
+- NTB: Fix an error code in ntb_msit_probe() (John W. Linville) [2048750]
+- ntb: intel: remove invalid email address in header comment (John W. Linville) [2048750]
+- NTB: Add support for EPF PCI Non-Transparent Bridge (John W. Linville) [2048750]
+- ntb: intel: add Intel NTB LTR vendor support for gen4 NTB (John W. Linville) [2048750]
+- ntb: idt: fix error check in ntb_hw_idt.c (John W. Linville) [2048750]
+
+* Wed Jun 29 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-406.el8]
+- KVM: x86: Fix the intel_pt PMI handling wrongly considered from guest (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Don't rebuild page when the page is synced and no tlb flushing is required (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Verify the pmu event filter matches the correct event (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Add the helper function create_pmu_event_filter (Vitaly Kuznetsov) [2074835]
+- kvm: x86/pmu: Fix the compare function used by the pmu event filter (Vitaly Kuznetsov) [2074835]
+- KVM: Free new dirty bitmap if creating a new memslot fails (Vitaly Kuznetsov) [2074835]
+- KVM: Initialize debugfs_dentry when a VM is created to avoid NULL deref (Vitaly Kuznetsov) [2074835]
+- tools arch x86: Sync asm/cpufeatures.h with the with the kernel (Vitaly Kuznetsov) [2074835]
+- KVM: PPC: Book3S HV: Fix kvm_unmap_gfn_range_hv() for Hash MMU (Vitaly Kuznetsov) [2074835]
+- KVM: PPC: Book3S HV: Fix conversion to gfn-based MMU notifier callbacks (Vitaly Kuznetsov) [2074835]
+- KVM: arm64: Fix boolreturn.cocci warnings (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Exit to userspace if vCPU has injected exception and invalid state (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Mark nested locking of vcpu->lock (Vitaly Kuznetsov) [2074835]
+- kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU (Vitaly Kuznetsov) [2074835]
+- KVM: x86/svm: Account for family 17h event renumberings in amd_pmc_perf_hw_id (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Use atomic XCHG to write TDP MMU SPTEs with volatile bits (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Move shadow-present check out of spte_has_volatile_bits() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Don't treat fully writable SPTEs as volatile (modulo A/D) (Vitaly Kuznetsov) [2074835]
+- selftests: kvm: add amx_test to .gitignore (Vitaly Kuznetsov) [2074835]
+- Revert "x86/mm: Introduce lookup_address_in_mm()" (Vitaly Kuznetsov) [2074835]
+- KVM: x86: work around QEMU issue with synthetic CPUID leaves (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: fix potential races when walking host page table (Vitaly Kuznetsov) [2074835]
+- Documentation: KVM: Update documentation to indicate KVM is arm64-only (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Do not create SPTEs for GFNs that exceed host.MAXPHYADDR (Vitaly Kuznetsov) [2074835]
+- kvm: selftests: introduce and use more page size-related constants (Vitaly Kuznetsov) [2074835]
+- kvm: selftests: do not use bitfields larger than 32-bits for PTEs (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: add cache flush to solve SEV cache incoherency issues (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Flush when freeing encrypted pages even on SME_COHERENT CPUs (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Simplify and harden helper to flush SEV guest page(s) (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Silence compiler warning in the kvm_page_table_test (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Update AMD PMC sample period to fix guest NMI-watchdog (Vitaly Kuznetsov) [2074835]
+- x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Skip KVM_GUESTDBG_BLOCKIRQ APICv update if APICv is disabled (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Pend KVM_REQ_APICV_UPDATE during vCPU creation to fix a race (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Defer APICv updates while L2 is active until L1 is active (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Tag APICv DISABLE inhibit, not ABSENT, if APICv is disabled (Vitaly Kuznetsov) [2074835]
+- KVM: Add helpers to wrap vcpu->srcu_idx and yell if it's abused (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Don't re-acquire SRCU lock in complete_emulated_io() (Vitaly Kuznetsov) [2074835]
+- tools headers UAPI: Sync linux/kvm.h with the kernel sources (Vitaly Kuznetsov) [2074835]
+- tools arch x86: Sync the msr-index.h copy with the kernel sources (Vitaly Kuznetsov) [2074835]
+- tools headers UAPI: Sync x86's asm/kvm.h with the kernel sources (Vitaly Kuznetsov) [2074835]
+- tools headers UAPI: Sync linux/kvm.h with the kernel sources (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: arm64: Check for supported page sizes (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: arm64: Initialise default guest mode at test startup time (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: arm64: Introduce a variable default IPA size (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: arm64: Rework TCR_EL1 configuration (Vitaly Kuznetsov) [2074835]
+- KVM: x86: hyper-v: Avoid writing to TSC page without an active vCPU (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Do not activate AVIC for SEV-enabled guest (Vitaly Kuznetsov) [2074835]
+- selftests: kvm: add tsc_scaling_sync to .gitignore (Vitaly Kuznetsov) [2074835]
+- KVM: Don't create VM debugfs files outside of the VM directory (Vitaly Kuznetsov) [2074835]
+- KVM: avoid NULL pointer dereference in kvm_dirty_ring_push (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: remove unnecessary flush_workqueue() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Resolve nx_huge_pages when kvm.ko is loaded (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Add cond_resched() to loop in sev_clflush_pages() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: fix sending PV IPI (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: do compare-and-exchange of gPTE via the user address (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Remove redundant vm_entry_controls_clearbit() call (Vitaly Kuznetsov) [2074835]
+- KVM: x86: cleanup enter_rmode() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: SVM: fix tsc scaling when the host doesn't support it (Vitaly Kuznetsov) [2074835]
+- kvm: x86: SVM: remove unused defines (Vitaly Kuznetsov) [2074835]
+- KVM: x86: SVM: move tsc ratio definitions to svm.h (Vitaly Kuznetsov) [2074835]
+- KVM: x86: SVM: fix avic spec based definitions again (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Only do MSR filtering when access MSR by rdmsr/wrmsr (Vitaly Kuznetsov) [2074835]
+- KVM: x86/emulator: Emulate RDPID only if it is enabled in guest (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Fix and isolate TSX-specific performance event logic (Vitaly Kuznetsov) [2074835]
+- KVM: x86: mmu: trace kvm_mmu_set_spte after the new SPTE was set (Vitaly Kuznetsov) [2074835]
+- KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Trace all APICv inhibit changes and capture overall status (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Add wrappers for setting/clearing APICv inhibits (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Make APICv inhibit reasons an enum and cleanup naming (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Handle implicit supervisor access with SMAP (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Rename variable smap to not_smap in permission_fault() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Fix comments in update_permission_bitmask (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Change the type of access u32 to u64 (Vitaly Kuznetsov) [2074835]
+- KVM: Remove dirty handling from gfn_to_pfn_cache completely (Vitaly Kuznetsov) [2074835]
+- KVM: Use enum to track if cached PFN will be used in guest and/or host (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Use different raw event masks for AMD and Intel (Vitaly Kuznetsov) [2074835]
+- KVM: Don't actually set a request when evicting vCPUs for GFN cache invd (Vitaly Kuznetsov) [2074835]
+- KVM: avoid double put_page with gfn-to-pfn cache (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Zap only TDP MMU leafs in zap range and mmu_notifier unmap (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: fix panic on out-of-bounds guest IRQ (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: propagate alloc_workqueue failure (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Avoid theoretical NULL pointer dereference in kvm_irq_delivery_to_apic_fast() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Fix clang -Wimplicit-fallthrough in do_host_cpuid() (Vitaly Kuznetsov) [2074835]
+- Revert "KVM: set owner of cpu and vm file operations" (Vitaly Kuznetsov) [2074835]
+- KVM: Prevent module exit until all VMs are freed (Vitaly Kuznetsov) [2074835]
+- KVM: use kvcalloc for array allocations (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Introduce KVM_CAP_DISABLE_QUIRKS2 (Vitaly Kuznetsov) [2074835]
+- kvm: x86: Require const tsc for RT (Vitaly Kuznetsov) [2074835]
+- KVM: x86: synthesize CPUID leaf 0x80000021h if useful (Vitaly Kuznetsov) [2074835]
+- KVM: x86: add support for CPUID leaf 0x80000021 (Vitaly Kuznetsov) [2074835]
+- Revert "KVM: x86/mmu: Zap only TDP MMU leafs in kvm_zap_gfn_range()" (Vitaly Kuznetsov) [2074835]
+- kvm: x86/mmu: Flush TLB before zap_gfn_range releases RCU (Vitaly Kuznetsov) [2074835]
+- kvm/emulate: Fix SETcc emulation function offsets with SLS (Vitaly Kuznetsov) [2074835]
+- KVM: compat: riscv: Prevent KVM_COMPAT from being selected (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Add test to populate a VM with the max possible guest mem (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Define cpu_relax() helpers for s390 and x86 (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Split out helper to allocate guest mem via memfd (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: add shared hugetlbfs backing source type (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Move raw KVM_SET_USER_MEMORY_REGION helper to utils (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: WARN on any attempt to atomically update REMOVED SPTE (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Check for a REMOVED leaf SPTE before making the SPTE (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Zap defunct roots via asynchronous worker (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Zap roots in two passes to avoid inducing RCU stalls (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Allow yielding when zapping GFNs for defunct TDP MMU root (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Zap invalidated roots via asynchronous worker (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Defer TLB flush to caller when freeing TDP MMU shadow pages (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Do remote TLB flush before dropping RCU in TDP MMU resched (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Zap only TDP MMU leafs in kvm_zap_gfn_range() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Require mmu_lock be held for write to zap TDP MMU range (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Add dedicated helper to zap TDP MMU root shadow page (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Skip remote TLB flush when zapping all of TDP MMU (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Zap only the target TDP MMU shadow page in NX recovery (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Refactor low-level TDP MMU set SPTE helper to take raw values (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: WARN if old _or_ new SPTE is REMOVED in non-atomic path (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Add helpers to read/write TDP MMU SPTEs and document RCU (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Drop RCU after processing each root in MMU notifier hooks (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Batch TLB flushes from TDP MMU for MMU notifier change_spte (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Check for !leaf=>leaf, not PFN change, in TDP MMU SP removal (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: do not allow readers to acquire references to invalid roots (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: only perform eager page splitting on valid roots (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Require mmu_lock be held for write in unyielding root iter (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Document that zapping invalidated roots doesn't need to flush (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Formalize TDP MMU's (unintended?) deferred TLB flush logic (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Fix wrong/misleading comments in TDP MMU fast zap (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU (Vitaly Kuznetsov) [2074835]
+- selftests: kvm: add generated file to the .gitignore (Vitaly Kuznetsov) [2074835]
+- KVM: x86: pull kvm->srcu read-side to kvm_arch_vcpu_ioctl_run (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Passing up the error state of mmu_alloc_shadow_roots() (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Disable preemption across AVIC load/put during APICv refresh (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Exit to userspace on ENOMEM/EFAULT GHCB errors (Vitaly Kuznetsov) [2074835]
+- KVM: WARN if is_unsync_root() is called on a root without a shadow page (Vitaly Kuznetsov) [2074835]
+- KVM: Drop KVM_REQ_MMU_RELOAD and update vcpu-requests.rst documentation (Vitaly Kuznetsov) [2074835]
+- KVM: s390: Replace KVM_REQ_MMU_RELOAD usage with arch specific request (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Zap only obsolete roots if a root shadow page is zapped (Vitaly Kuznetsov) [2074835]
+- KVM: Drop kvm_reload_remote_mmus(), open code request in x86 users (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Invoke kvm_mmu_unload() directly on CR4.PCIDE change (Vitaly Kuznetsov) [2074835]
+- KVM: x86/emulator: Move the unhandled outer privilege level logic of far return into __load_segment_descriptor() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/emulator: Fix wrong privilege check for code segment in __load_segment_descriptor() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor() (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Add test to verify KVM handling of ICR (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Make kvm_lapic_set_reg() a "private" xAPIC helper (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Treat x2APIC's ICR as a 64-bit register, not two 32-bit regs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Add helpers to handle 64-bit APIC MSR read/writes (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Make kvm_lapic_reg_{read,write}() static (Vitaly Kuznetsov) [2074835]
+- KVM: x86: WARN if KVM emulates an IPI without clearing the BUSY flag (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Don't rewrite guest ICR on AVIC IPI virtualization failure (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Use common kvm_apic_write_nodecode() for AVIC write traps (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Use "raw" APIC register read for handling APIC-write VM-Exit (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Handle APIC-write offset wrangling in VMX code (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Do not change ICR on write to APIC_SELF_IPI (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Fix emulation in writing cr8 (Vitaly Kuznetsov) [2074835]
+- KVM: x86: flush TLB separately from MMU reset (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Yield to IPI target vCPU only if it is busy (Vitaly Kuznetsov) [2074835]
+- x86/kvmclock: Fix Hyper-V Isolated VM's boot issue when vCPUs > 64 (Vitaly Kuznetsov) [2074835]
+- x86/kvm: Don't waste memory if kvmclock is disabled (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: clear MMIO cache when unloading the MMU (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Always use current mmu's role when loading new PGD (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: load new PGD after the shadow MMU is initialized (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: look for a cached PGD when going from 32-bit to 64-bit (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: do not pass vcpu to root freeing functions (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: do not consult levels when freeing roots (Vitaly Kuznetsov) [2074835]
+- KVM: x86: use struct kvm_mmu_root_info for mmu->root (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: avoid NULL-pointer dereference on page freeing bugs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: do not deliver asynchronous page faults if CR0.PG=0 (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Reinitialize context if host userspace toggles EFER.LME (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Verify disabling PMU virtualization via KVM_CAP_CONFIG_PMU (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Carve out helper to create "default" VM without vCPUs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Provide per VM capability for disabling PMU virtualization (Vitaly Kuznetsov) [2074835]
+- KVM: Move VM's worker kthreads back to the original cgroup before exiting. (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Remove scratch 'cpu' variable that shadows an identical scratch var (Vitaly Kuznetsov) [2074835]
+- kvm: vmx: Fix typos comment in __loaded_vmcs_clear() (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Make setup/unsetup under the same conditions (Vitaly Kuznetsov) [2074835]
+- KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall (Vitaly Kuznetsov) [2074835]
+- KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB flush hypercalls (Vitaly Kuznetsov) [2074835]
+- KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_flush_tlb() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_send_ipi() (Vitaly Kuznetsov) [2074835]
+- Revert "KVM: VMX: Save HOST_CR3 in vmx_prepare_switch_to_guest()" (Vitaly Kuznetsov) [2074835]
+- Revert "KVM: VMX: Save HOST_CR3 in vmx_set_host_fs_gs()" (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM: disallow userspace setting of MSR_AMD64_TSC_RATIO to non default value when tsc scaling disabled (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: make apf token non-zero to fix bug (Vitaly Kuznetsov) [2074835]
+- selftests: kvm: Add the uapi headers include variable (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Add EXTRA_CFLAGS in top-level Makefile (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove MMU auditing (Vitaly Kuznetsov) [2074835]
+- KVM: x86: make several APIC virtualization callbacks optional (Vitaly Kuznetsov) [2074835]
+- KVM: x86: warn on incorrectly NULL members of kvm_x86_ops (Vitaly Kuznetsov) [2074835]
+- KVM: x86: remove KVM_X86_OP_NULL and mark optional kvm_x86_ops (Vitaly Kuznetsov) [2074835]
+- KVM: x86: use static_call_cond for optional callbacks (Vitaly Kuznetsov) [2074835]
+- KVM: x86: return 1 unconditionally for availability of KVM_CAP_VAPIC (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: allow sev_migrate_tests on machines without SEV-ES (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Allow SEV intra-host migration of VM with mirrors (Vitaly Kuznetsov) [2074835]
+- x86/kvm: Fix compilation warning in non-x86_64 builds (Vitaly Kuznetsov) [2074835]
+- kvm: x86: Disable KVM_HC_CLOCK_PAIRING if tsc is in always catchup mode (Vitaly Kuznetsov) [2074835]
+- KVM: Fix lockdep false negative during host resume (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Add KVM_CAP_ENABLE_CAP to x86 (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Rename AVIC helpers to use "avic" prefix instead of "svm" (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Use AMD64_RAW_EVENT_MASK for PERF_TYPE_RAW (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Don't truncate the PerfEvtSeln MSR when creating a perf event (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Replace memset() "optimization" with normal per-field writes (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: fix race between interrupt delivery and AVIC inhibition (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: set IRR in svm_deliver_interrupt (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: extract avic_ring_doorbell (Vitaly Kuznetsov) [2074835]
+- selftests: kvm: Remove absent target file (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Use local pointer to vcpu_vmx in vmx_vcpu_after_set_cpuid() (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: nSVM: Add enlightened MSR-Bitmap selftest (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: nSVM: Update 'struct vmcb_control_area' definition (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: nSVM: Set up MSR-Bitmap for SVM guests (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: nVMX: Add enlightened MSR-Bitmap selftest (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: nVMX: Properly deal with 'hv_clean_fields' (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Adapt hyperv_cpuid test to the newly introduced Enlightened MSR-Bitmap (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: Implement Enlightened MSR-Bitmap feature (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: Split off common definitions for Hyper-V on KVM and KVM on Hyper-V (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Make kvm_hv_hypercall_enabled() static inline (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: Track whether changes in L0 require MSR bitmap for L2 to be rebuilt (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Add an option to disable MANUAL_PROTECT_ENABLE and INITIALLY_SET (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Add tracepoint for splitting huge pages (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Split huge pages mapped by the TDP MMU during KVM_CLEAR_DIRTY_LOG (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Split huge pages mapped by the TDP MMU when dirty logging is enabled (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Separate TDP MMU shadow page allocation and initialization (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Derive page role for TDP MMU shadow pages from parent (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove redundant role overrides for TDP MMU shadow pages (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Refactor TDP MMU iterators to take kvm_mmu_page root (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Move restore_acc_track_spte() to spte.h (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Drop new_spte local variable from restore_acc_track_spte() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove unnecessary warnings from restore_acc_track_spte() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Consolidate logic to atomically install a new TDP MMU page table (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Rename handle_removed_tdp_mmu_page() to handle_removed_pt() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Rename TDP MMU functions that handle shadow pages (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Change tdp_mmu_{set,zap}_spte_atomic() to return 0/-EBUSY (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Automatically update iter->old_spte if cmpxchg fails (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Rename __rmap_write_protect() to rmap_write_protect() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Rename rmap_write_protect() to kvm_vcpu_write_protect_gfn() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Add checks for reserved-to-zero Hyper-V hypercall fields (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Reject fixeds-size Hyper-V hypercalls with non-zero "var_cnt" (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Shove vp_bitmap handling down into sparse_set_to_vcpu_mask() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Don't bother reading sparse banks that end up being ignored (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Add a helper to get the sparse VP_SET for IPIs and TLB flushes (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Refactor kvm_hv_flush_tlb() to reduce indentation (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Get the number of Hyper-V sparse banks from the VARHEAD field (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Consolidate comments about {Host,MMU}-writable (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Rename DEFAULT_SPTE_MMU_WRITEABLE to DEFAULT_SPTE_MMU_WRITABLE (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Move is_writable_pte() to spte.h (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Check SPTE writable invariants when setting leaf SPTEs (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Move SPTE writable invariant checks to a helper function (Vitaly Kuznetsov) [2074835]
+- KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Dont' send posted IRQ if vCPU == this vCPU and vCPU is IN_GUEST_MODE (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Rename hook implementations to conform to kvm_x86_ops' names (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Rename SEV implemenations to conform to kvm_x86_ops hooks (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Use more verbose names for mem encrypt kvm_x86_ops hooks (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Remove unused MAX_INST_SIZE #define (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Rename svm_flush_tlb() to svm_flush_tlb_current() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Move get_cs_db_l_bits() helper to SVM (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Rename VMX functions to conform to kvm_x86_ops names (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Use static_call() for copy/move encryption context ioctls() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Unexport kvm_x86_ops (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Uninline and export hv_track_root_tdp() (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Refactor PMU refresh to avoid referencing kvm_x86_ops.pmu_ops (Vitaly Kuznetsov) [2074835]
+- KVM: xen: Use static_call() for invoking kvm_x86_ops hooks (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Use static_call() for .vcpu_deliver_sipi_vector() (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Call vmx_get_cpl() directly in handle_dr() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Rename kvm_x86_ops pointers to align w/ preferred vendor names (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Drop export for .tlb_flush_current() static_call key (Vitaly Kuznetsov) [2074835]
+- KVM: x86: skip host CPUID call for hypervisor leaves (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Remove unused "flags" of kvm_pv_kick_cpu_op() (Vitaly Kuznetsov) [2074835]
+- KVM: Remove unused "kvm" of kvm_make_vcpu_request() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Remove unused "vcpu" of kvm_scale_tsc() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/emulate: Remove unused "tss_selector" of task_switch_{16, 32}() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/emulate: Remove unused "ctxt" of setup_syscalls_segments() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/ioapic: Remove unused "addr" and "length" of ioapic_read_indirect() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/i8259: Remove unused "addr" of elcr_ioport_{read,write}() (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: improve split between svm_prepare_guest_switch and sev_es_prepare_guest_switch (Vitaly Kuznetsov) [2074835]
+- KVM: x86/svm: Remove unused "vcpu" of svm_check_exit_valid() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu_audit: Remove unused "level" of audit_spte_after_sync() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/tdp_mmu: Remove unused "kvm" of kvm_tdp_mmu_get_root() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove unused "vcpu" of reset_{tdp,ept}_shadow_zero_bits_mask() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove unused "kvm" of __rmap_write_protect() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove unused "kvm" of kvm_mmu_unlink_parents() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Skip APICv update if APICv is disable at the module level (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Drop NULL check on kvm_x86_ops.check_apicv_inhibit_reasons (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Unexport __kvm_request_apicv_update() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Use common TDP MMU zap helper for MMU notifier unmap hook (Vitaly Kuznetsov) [2074835]
+- KVM: x86/xen: Fix runstate updates to be atomic when preempting vCPU (Vitaly Kuznetsov) [2074835]
+- KVM: x86: SVM: move avic definitions from AMD's spec to svm.h (Vitaly Kuznetsov) [2074835]
+- KVM: x86: lapic: don't touch irr_pending in kvm_apic_update_apicv when inhibiting it (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM: deal with L1 hypervisor that intercepts interrupts but lets L2 control them (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM: expose clean bit support to the guest (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM/nVMX: set nested_run_pending on VM entry which is a result of RSM (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM: mark vmcb01 as dirty when restoring SMM saved state (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM: fix potential NULL derefernce on nested migration (Vitaly Kuznetsov) [2074835]
+- KVM: x86: SVM: don't passthrough SMAP/SMEP/PKE bits in !NPT && !gCR0.PG case (Vitaly Kuznetsov) [2074835]
+- Revert "svm: Add warning message for AVIC IPI invalid target" (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: Test OS lock behavior (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: Add OSLSR_EL1 to the list of blessed regs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Report deprecated x87 features in supported CPUID (Vitaly Kuznetsov) [2074835]
+- x86/cpufeatures: Add FDP_EXCPTN_ONLY and ZERO_FCS_FDS (Vitaly Kuznetsov) [2074835]
+- KVM: x86: use the KVM side max supported fixed counter (Vitaly Kuznetsov) [2074835]
+- x86: Share definition of __is_canonical_address() (Vitaly Kuznetsov) [2074835]
+- perf/x86/intel/pt: Relax address filter validation (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Move delivery of non-APICv interrupt into vendor code (Vitaly Kuznetsov) [2074835]
+- KVM: eventfd: Fix false positive RCU usage warning (Vitaly Kuznetsov) [2074835]
+- selftests: kvm: check dynamic bits against KVM_X86_XCOMP_GUEST_SUPP (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Sync the states size with the XCR0/IA32_XSS at, any time (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Update vCPU's runtime CPUID on write to MSR_IA32_XSS (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Keep MSR_IA32_XSS unchanged for INIT (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Free kvm_cpuid_entry2 array on post-KVM_RUN KVM_SET_CPUID{,2} (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: WARN on any attempt to allocate shadow VMCS for vmcs02 (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Don't skip L2's VMCALL in SMM test for SVM guest (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Check .flags in kvm_cpuid_check_equal() too (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Forcibly leave nested virt when SMM state is toggled (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: drop unnecessary code in svm_hv_vmcb_dirty_nested_enlightenments() (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: hyper-v: Enable Enlightened MSR-Bitmap support for real (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Don't kill SEV guest if SMAP erratum triggers in usermode (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Don't apply SEV+SMAP workaround on code fetch or PT access (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Inject #UD on attempted emulation for SEV guest w/o insn buffer (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: WARN if KVM attempts emulation on #UD or #GP for SEV guests (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Pass emulation type to can_emulate_instruction() (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Explicitly require DECODEASSISTS to enable SEV support (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Don't intercept #GP for SEV guests (Vitaly Kuznetsov) [2074835]
+- Revert "KVM: SVM: avoid infinite loop on NPF from bad address" (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Never reject emulation due to SMAP errata for !SEV guests (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM: skip eax alignment check for non-SVM instructions (Vitaly Kuznetsov) [2074835]
+- KVM: LAPIC: Also cancel preemption timer during SET_LAPIC (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Remove vmcs_config.order (Vitaly Kuznetsov) [2074835]
+- KVM/X86: Make kvm_vcpu_reload_apic_access_page() static (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Re-enable access_tracking_perf_test (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Set vmcs.PENDING_DBG.BS on #DB in STI/MOVSS blocking shadow (Vitaly Kuznetsov) [2074835]
+- KVM: remove async parameter of hva_to_pfn_remapped() (Vitaly Kuznetsov) [2074835]
+- x86,kvm/xen: Remove superfluous .fixup usage (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Zero host's SYSENTER_ESP iff SYSENTER is NOT used (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Fix the warning in lib/x86_64/processor.c (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Fix the warning in pmu_event_filter_test.c (Vitaly Kuznetsov) [2074835]
+- kvm: selftests: Do not indent with spaces (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Nullify vcpu_(un)blocking() hooks if AVIC is disabled (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Move svm_hardware_setup() and its helpers below svm_x86_ops (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Drop AVIC's intermediate avic_set_running() helper (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Don't do full kick when handling posted interrupt wakeup (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Fold fallback path into triggering posted IRQ helper (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Pass desired vector instead of bool for triggering posted IRQ (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Don't do full kick when triggering posted interrupt "fails" (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Skip AVIC and IRTE updates when loading blocking vCPU (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Use kvm_vcpu_is_blocking() in AVIC load to handle preemption (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Remove unnecessary APICv/AVIC update in vCPU unblocking path (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Don't bother checking for "running" AVIC when kicking for IPIs (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Signal AVIC doorbell iff vCPU is in guest mode (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Remove defunct pre_block/post_block kvm_x86_ops hooks (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Unexport LAPIC's switch_to_{hv,sw}_timer() helpers (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Move preemption timer <=> hrtimer dance to common x86 (Vitaly Kuznetsov) [2074835]
+- KVM: Move x86 VMX's posted interrupt list_head to vcpu_vmx (Vitaly Kuznetsov) [2074835]
+- KVM: Drop unused kvm_vcpu.pre_pcpu field (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Handle PI descriptor updates during vcpu_put/load (Vitaly Kuznetsov) [2074835]
+- KVM: avoid warning on s390 in mark_page_dirty (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Add a test to force emulation with a pending exception (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Reject KVM_RUN if emulation is required with pending exception (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Add test for KVM_SET_PMU_EVENT_FILTER (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Introduce x86_model() (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Export x86_family() for use outside of processor.c (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Introduce is_amd_cpu() (Vitaly Kuznetsov) [2074835]
+- selftests: kvm/x86: Parameterize the CPUID vendor string check (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Use binary search to check filtered events (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Improve TLB flush comment in kvm_mmu_slot_remove_write_access() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Document and enforce MMU-writable and Host-writable invariants (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Clear MMU-writable during changed_pte notifier (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Fix write-protection of PTs mapped by the TDP MMU (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Making the module parameter of vPMU more common (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Test KVM_SET_CPUID2 after KVM_RUN (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Rename 'get_cpuid_test' to 'cpuid_test' (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Partially allow KVM_SET_CPUID{,2} after KVM_RUN (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Fix available_event_types check for REF_CPU_CYCLES event (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Check for rmaps allocation (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Mark nested locking of kvm->lock (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: include CR3 in initial VMSA state for SEV-ES guests (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Provide vmread version using asm-goto-with-outputs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Fix wall clock writes in Xen shared_info not to mark page dirty (Vitaly Kuznetsov) [2074835]
+- KVM: x86/xen: Add KVM_IRQ_ROUTING_XEN_EVTCHN and event channel delivery (Vitaly Kuznetsov) [2074835]
+- KVM: x86/xen: Maintain valid mapping of Xen shared_info page (Vitaly Kuznetsov) [2074835]
+- KVM: Reinstate gfn_to_pfn_cache with invalidation support (Vitaly Kuznetsov) [2074835]
+- KVM: Warn if mark_page_dirty() is called without an active vCPU (Vitaly Kuznetsov) [2074835]
+- x86/kvm: Silence per-cpu pr_info noise about KVM clocks and steal time (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Update vPMCs when retiring branch instructions (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Update vPMCs when retiring instructions (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Add pmc->intr to refactor kvm_perf_overflow{_intr}() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Reuse pmc_perf_hw_id() and drop find_fixed_event() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Refactoring find_arch_event() to pmc_perf_hw_id() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Setup pmc->eventsel for fixed PMCs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: avoid out of bounds indices for fixed performance counters (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Mark VCPU_EXREG_CR3 dirty when !CR0_PG -> CR0_PG if EPT + !URG (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Reconstruct shadow page root if the guest PDPTEs is changed (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Save HOST_CR3 in vmx_set_host_fs_gs() (Vitaly Kuznetsov) [2074835]
+- Revert "KVM: X86: Update mmu->pdptrs only when it is changed" (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: sev_migrate_tests: Add mirror command tests (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: sev_migrate_tests: Fix sev_ioctl() (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: sev_migrate_tests: Fix test_sev_mirror() (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Wake vCPU when delivering posted IRQ even if vCPU == this vCPU (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Add test to verify TRIPLE_FAULT on invalid L2 guest state (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Synthesize TRIPLE_FAULT for L2 if emulation is required (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Always clear vmx->fail on emulation_required (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: Fix non-x86 compiling (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Always set kvm_run->if_flag (Vitaly Kuznetsov) [2074835]
+- KVM: x86: remove PMU FIXED_CTR3 from msrs_to_save_all (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Retry page fault if MMU reload is pending and root has no sp (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: vmx_pmu_msrs_test: Drop tests mangling guest visible CPUIDs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Drop guest CPUID check for host initiated writes to MSR_IA32_PERF_CAPABILITIES (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: Add test to verify KVM doesn't explode on "bad" I/O (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Don't WARN if userspace mucks with RCX during string I/O exit (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Raise #GP when clearing CR0_PG in 64 bit mode (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: avoid failures due to reserved HyperTransport region (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req (Vitaly Kuznetsov) [2074835]
+- KVM: Add Makefile.kvm for common files, use it for x86 (Vitaly Kuznetsov) [2074835]
+- KVM: Introduce CONFIG_HAVE_KVM_DIRTY_RING (Vitaly Kuznetsov) [2074835]
+- KVM: x86: selftests: svm_int_ctl_test: fix intercept calculation (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Clean up PI pre/post-block WARNs (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Ensure vCPU honors event request if posting nested IRQ fails (Vitaly Kuznetsov) [2074835]
+- KVM: x86: add a tracepoint for APICv/AVIC interrupt delivery (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Implement Enlightened MSR Bitmap feature (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Track whether changes in L0 require MSR bitmap for L2 to be rebuilt (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Introduce vmx_msr_bitmap_l01_changed() helper (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Exit to userspace if emulation prepared a completion callback (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Don't use Enlightened MSR Bitmap for L3 (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Use different callback if msr access comes from the emulator (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Add an emulation type to handle completion of user exits (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Handle 32-bit wrap of EIP for EMULTYPE_SKIP with flat code seg (Vitaly Kuznetsov) [2074835]
+- KVM: Clear pv eoi pending bit only when it is set (Vitaly Kuznetsov) [2074835]
+- KVM: x86: don't print when fail to read/write pv eoi memory (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Remove mmu parameter from load_pdptrs() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Rename gpte_is_8_bytes to has_4_byte_gpte and invert the direction (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Use ept_caps_to_lpage_level() in hardware_setup() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Add parameter huge_page_level to kvm_init_shadow_ept_mmu() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Add huge_page_level to __reset_rsvds_bits_mask_ept() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Remove mmu->translate_gpa (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Add parameter struct kvm_mmu *mmu into mmu->gva_to_gpa() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Calculate quadrant when !role.gpte_is_8_bytes (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Remove useless code to set role.gpte_is_8_bytes when role.direct (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Remove unused declaration of __kvm_mmu_free_some_pages() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Fix comment in __kvm_mmu_create() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Skip allocating pae_root for vcpu->arch.guest_mmu when !tdp_enabled (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Allocate sd->save_area with __GFP_ZERO (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Rename get_max_npt_level() to get_npt_level() (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Change comments about vmx_get_msr() (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Use kvm_set_msr_common() for MSR_IA32_TSC_ADJUST in the default way (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Save HOST_CR3 in vmx_prepare_switch_to_guest() (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Update msr value after kvm_set_user_return_msr() succeeds (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Avoid to rdmsrl(MSR_IA32_SYSENTER_ESP) (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Update mmu->pdptrs only when it is changed (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Remove kvm_register_clear_available() (Vitaly Kuznetsov) [2074835]
+- KVM: vmx, svm: clean up mass updates to regs_avail/regs_dirty bits (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Update vmcs.GUEST_CR3 only when the guest CR3 is dirty (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Mark CR3 dirty when vcpu->arch.cr3 is changed (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Remove references to VCPU_EXREG_CR3 (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Remove outdated comment in svm_load_mmu_pgd() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Move CR0 pdptr_bits into header file as X86_CR0_PDPTR_BITS (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Add and use X86_CR4_PDPTR_BITS when !enable_ept (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Add and use X86_CR4_TLBFLUSH_BITS when !enable_ept (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Track dirtiness of PDPTRs even if NPT is disabled (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Mark VCPU_EXREG_PDPTR available in ept_save_pdptrs() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Ensure that dirty PDPTRs are loaded (Vitaly Kuznetsov) [2074835]
+- KVM: x86/svm: Add module param to control PMU virtualization (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Remove vCPU from PI wakeup list before updating PID.NV (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Move Posted Interrupt ndst computation out of write loop (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Read Posted Interrupt "control" exactly once per loop iteration (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Save/restore IRQs (instead of CLI/STI) during PI pre/post block (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Drop pointless PI.NDST update when blocking (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Use boolean returns for Posted Interrupt "test" helpers (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Drop unnecessary PI logic to handle impossible conditions (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Skip Posted Interrupt updates if APICv is hard disabled (Vitaly Kuznetsov) [2074835]
+- KVM: Add helpers to wake/query blocking vCPU (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Invoke kvm_vcpu_block() directly for non-HALTED wait states (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Directly block (instead of "halting") UNINITIALIZED vCPUs (Vitaly Kuznetsov) [2074835]
+- KVM: Don't redo ktime_get() when calculating halt-polling stop/deadline (Vitaly Kuznetsov) [2074835]
+- KVM: stats: Add stat to detect if vcpu is currently blocking (Vitaly Kuznetsov) [2074835]
+- KVM: Split out a kvm_vcpu_block() helper from kvm_vcpu_halt() (Vitaly Kuznetsov) [2074835]
+- KVM: Rename kvm_vcpu_block() => kvm_vcpu_halt() (Vitaly Kuznetsov) [2074835]
+- KVM: Drop obsolete kvm_arch_vcpu_block_finish() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Tweak halt emulation helper names to free up kvm_vcpu_halt() (Vitaly Kuznetsov) [2074835]
+- KVM: Don't block+unblock when halt-polling is successful (Vitaly Kuznetsov) [2074835]
+- KVM: Reconcile discrepancies in halt-polling stats (Vitaly Kuznetsov) [2074835]
+- KVM: Refactor and document halt-polling stats update helper (Vitaly Kuznetsov) [2074835]
+- KVM: Update halt-polling stats if and only if halt-polling was attempted (Vitaly Kuznetsov) [2074835]
+- KVM: Force PPC to define its own rcuwait object (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Ensure target pCPU is read once when signalling AVIC doorbell (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Don't unblock vCPU w/ Posted IRQ if IRQs are disabled in guest (Vitaly Kuznetsov) [2074835]
+- KVM: x86: change TLB flush indicator to bool (Vitaly Kuznetsov) [2074835]
+- KVM: Avoid atomic operations when kicking the running vCPU (Vitaly Kuznetsov) [2074835]
+- KVM: x86/MMU: Simplify flow of vmx_get_mt_mask (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Propagate memslot const qualifier (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove need for a vcpu from mmu_try_to_unsync_pages (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove need for a vcpu from kvm_slot_page_track_is_active (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Use shadow page role to detect PML-unfriendly pages for L2 (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: introduce struct vmcb_ctrl_area_cached (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: split out __nested_vmcb_check_controls (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: use svm->nested.save to load vmcb12 registers and avoid TOC/TOU races (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: use vmcb_save_area_cached in nested_vmcb_valid_sregs() (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: rename nested_load_control_from_vmcb12 in nested_copy_vmcb_control_to_cache (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: introduce svm->nested.save to cache save area before checks (Vitaly Kuznetsov) [2074835]
+- KVM: nSVM: move nested_vmcb_check_cr3_cr4 logic in nested_vmcb_valid_sregs (Vitaly Kuznetsov) [2074835]
+- KVM: Dynamically allocate "new" memslots from the get-go (Vitaly Kuznetsov) [2074835]
+- KVM: Wait 'til the bitter end to initialize the "new" memslot (Vitaly Kuznetsov) [2074835]
+- KVM: Optimize overlapping memslots check (Vitaly Kuznetsov) [2074835]
+- KVM: Optimize gfn lookup in kvm_zap_gfn_range() (Vitaly Kuznetsov) [2074835]
+- KVM: Call kvm_arch_flush_shadow_memslot() on the old slot in kvm_invalidate_memslot() (Vitaly Kuznetsov) [2074835]
+- KVM: Keep memslots in tree-based structures instead of array-based ones (Vitaly Kuznetsov) [2074835]
+- KVM: Use interval tree to do fast hva lookup in memslots (Vitaly Kuznetsov) [2074835]
+- KVM: Resolve memslot ID via a hash table instead of via a static array (Vitaly Kuznetsov) [2074835]
+- KVM: Move WARN on invalid memslot index to update_memslots() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Use nr_memslot_pages to avoid traversing the memslots array (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Don't call kvm_mmu_change_mmu_pages() if the count hasn't changed (Vitaly Kuznetsov) [2074835]
+- KVM: Don't make a full copy of the old memslot in __kvm_set_memory_region() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Don't assume old/new memslots are non-NULL at memslot commit (Vitaly Kuznetsov) [2074835]
+- KVM: Use prepare/commit hooks to handle generic memslot metadata updates (Vitaly Kuznetsov) [2074835]
+- KVM: Stop passing kvm_userspace_memory_region to arch memslot hooks (Vitaly Kuznetsov) [2074835]
+- KVM: PPC: Avoid referencing userspace memory region in memslot updates (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Use "new" memslot instead of userspace memory region (Vitaly Kuznetsov) [2074835]
+- KVM: s390: Use "new" memslot instead of userspace memory region (Vitaly Kuznetsov) [2074835]
+- KVM: arm64: Use "new" memslot instead of userspace memory region (Vitaly Kuznetsov) [2074835]
+- KVM: Let/force architectures to deal with arch specific memslot data (Vitaly Kuznetsov) [2074835]
+- KVM: Use "new" memslot's address space ID instead of dedicated param (Vitaly Kuznetsov) [2074835]
+- KVM: Resync only arch fields when slots_arch_lock gets reacquired (Vitaly Kuznetsov) [2074835]
+- KVM: Open code kvm_delete_memslot() into its only caller (Vitaly Kuznetsov) [2074835]
+- KVM: Require total number of memslot pages to fit in an unsigned long (Vitaly Kuznetsov) [2074835]
+- KVM: Convert kvm_for_each_vcpu() to using xa_for_each_range() (Vitaly Kuznetsov) [2074835]
+- KVM: arm64: vgic-v3: Fix vcpu index comparison (Vitaly Kuznetsov) [2074835]
+- KVM: Use 'unsigned long' as kvm_for_each_vcpu()'s index (Vitaly Kuznetsov) [2074835]
+- KVM: Convert the kvm->vcpus array to a xarray (Vitaly Kuznetsov) [2074835]
+- KVM: Move wiping of the kvm->vcpus array to common code (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: update comment on the number of page role combinations (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Retry page fault if root is invalidated by memslot update (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Set failure code in prepare_vmcs02() (Vitaly Kuznetsov) [2074835]
+- KVM: ensure APICv is considered inactive if there is no APIC (Vitaly Kuznetsov) [2074835]
+- KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register (Vitaly Kuznetsov) [2074835]
+- x86: Snapshot thread flags (Vitaly Kuznetsov) [2074835]
+- thread_info: Add helpers to snapshot thread flags (Vitaly Kuznetsov) [2074835]
+- KVM: fix avic_set_running for preemptable kernels (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: clear vmx_x86_ops.sync_pir_to_irr if APICv is disabled (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: accept signals in sev_lock_two_vms (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: do not take kvm->lock when destroying (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Prohibit migration of a VM that has mirrors (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Do COPY_ENC_CONTEXT_FROM with both VMs locked (Vitaly Kuznetsov) [2074835]
+- selftests: sev_migrate_tests: add tests for KVM_CAP_VM_COPY_ENC_CONTEXT_FROM (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: move mirror status to destination of KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: initialize regions_list of a mirror VM (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: cleanup locking for KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: do not use list_replace_init on an empty list (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Use a stable condition around all VT-d PI paths (Vitaly Kuznetsov) [2074835]
+- KVM: x86: check PIR even for vCPUs with disabled APICv (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: prepare sync_pir_to_irr for running with APICv disabled (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: page_table_test: fix calculation of guest_test_phys_mem (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Handle "default" period when selectively waking kthread (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: shadow nested paging does not have PKU (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Remove spurious TLB flushes in TDP MMU zap collapsible path (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Use yield-safe TDP MMU root iter in MMU notifier unmapping (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Use vcpu->arch.walk_mmu for kvm_mmu_invlpg() (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Forbid KVM_SET_CPUID{,2} after KVM_RUN (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Avoid KVM_SET_CPUID2 after KVM_RUN in hyperv_features test (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Emulate guest TLB flush on nested VM-Enter with new vpid12 (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Abide to KVM_REQ_TLB_FLUSH_GUEST request on nested vmentry/vmexit (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Flush current VPID (L1 vs. L2) for KVM_REQ_TLB_FLUSH_GUEST (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: expose KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM capability (Vitaly Kuznetsov) [2074835]
+- selftests: sev_migrate_tests: free all VMs (Vitaly Kuznetsov) [2074835]
+- selftests: fix check for circular KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM (Vitaly Kuznetsov) [2074835]
+- KVM: x86: ignore APICv if LAPIC is not enabled (Vitaly Kuznetsov) [2074835]
+- KVM: downgrade two BUG_ONs to WARN_ON_ONCE (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: do not use uninitialized gfn_to_hva_cache (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Pass parameter flush as false in kvm_tdp_mmu_zap_collapsible_sptes() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Skip tlb flush if it has been done in zap_gfn_range() (Vitaly Kuznetsov) [2074835]
+- x86/kvm: remove unused ack_notifier callbacks (Vitaly Kuznetsov) [2074835]
+- KVM: Disallow user memslot with size that exceeds "unsigned long" (Vitaly Kuznetsov) [2074835]
+- KVM: Ensure local memslot copies operate on up-to-date arch-specific data (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Fix TLB flush range when handling disconnected pt (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Assume a 64-bit hypercall for guests with protected state (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: Add /x86_64/sev_migrate_tests to .gitignore (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Fix typo in and tweak name of cmd_allowed_from_miror() (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Drop a redundant setting of sev->asid during initialization (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: WARN if SEV-ES is marked active but SEV is not (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Set sev_info.active after initial checks in sev_guest_init() (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Disallow COPY_ENC_CONTEXT_FROM if target has created vCPUs (Vitaly Kuznetsov) [2074835]
+- KVM: Kill kvm_map_gfn() / kvm_unmap_gfn() and gfn_to_pfn_cache (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Use a gfn_to_hva_cache for vmptrld (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Use kvm_read_guest_offset_cached() for nested VMCS check (Vitaly Kuznetsov) [2074835]
+- KVM: x86/xen: Use sizeof_field() instead of open-coding it (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Use kvm_{read,write}_guest_cached() for shadow_vmcs12 (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: include EFER.LMA in extended mmu role (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: don't use vcpu->arch.efer when checking host state on nested state load (Vitaly Kuznetsov) [2074835]
+- KVM: Fix steal time asm constraints (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Move Intel Processor Trace interrupt handler to vmx.c (Vitaly Kuznetsov) [2074835]
+- KVM: Move x86's perf guest info callbacks to generic KVM (Vitaly Kuznetsov) [2074835]
+- KVM: x86: More precisely identify NMI from guest when handling PMI (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Drop current_vcpu for kvm_running_vcpu + kvm_arch_vcpu variable (Vitaly Kuznetsov) [2074835]
+- perf/core: Rework guest callbacks to prepare for static_call support (Vitaly Kuznetsov) [2074835]
+- perf: Protect perf_guest_cbs with RCU (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Register Processor Trace interrupt hook iff PT enabled in guest (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Register perf callbacks after calling vendor's hardware_setup() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Fix uninitialized eoi_exit_bitmap usage in vcpu_load_eoi_exitmap() (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Use perf_test_destroy_vm in memslot_modification_stress_test (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Wait for all vCPU to be created before entering guest mode (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Move vCPU thread creation and joining to common helpers (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Sync perf_test_args to guest during VM creation (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Fill per-vCPU struct during "perf_test" VM creation (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Start at iteration 0 instead of -1 (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Create VM with adjusted number of guest pages for perf tests (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Remove perf_test_args.host_page_size (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Move per-VM GPA into perf_test_args (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Use perf util's per-vCPU GPA/pages in demand paging test (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Capture per-vCPU GPA in perf_test_vcpu_args (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Use shorthand local var to access struct perf_tests_args (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Require GPA to be aligned when backed by hugepages (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Assert mmap HVA is aligned when using HugeTLB (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Expose align() helpers to tests (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Explicitly state indicies for vm_guest_mode_params array (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Add event channel upcall support to xen_shinfo_test (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: unify cgroup cleanup code for svm_vm_migrate_from (Vitaly Kuznetsov) [2074835]
+- KVM: x86: move guest_pv_has out of user_access section (Vitaly Kuznetsov) [2074835]
+- KVM: Move INVPCID type check from vmx and svm to the common kvm_handle_invpcid() (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Add a helper function to retrieve the GPR index for INVPCID, INVVPID, and INVEPT (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Clean up x2APIC MSR handling for L2 (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Macrofy the MSR bitmap getters and setters (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Handle dynamic MSR intercept toggling (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Don't update vcpu->arch.pv_eoi.msr_val when a bogus value was written to MSR_KVM_PV_EOI_EN (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Rename kvm_lapic_enable_pv_eoi() (Vitaly Kuznetsov) [2074835]
+- kvm: mmu: Use fast PF path for access tracking of huge pages when possible (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Properly dereference rcu-protected TDP MMU sptep iterator (Vitaly Kuznetsov) [2074835]
+- kvm: x86: Convert return type of *is_valid_rdpmc_ecx() to bool (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Fix recording of guest steal time / preempted status (Vitaly Kuznetsov) [2074835]
+- selftest: KVM: Add intra host migration tests (Vitaly Kuznetsov) [2074835]
+- selftest: KVM: Add open sev dev helper (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Add support for SEV-ES intra host migration (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: Add support for SEV intra host migration (Vitaly Kuznetsov) [2074835]
+- KVM: SEV: provide helpers to charge/uncharge misc_cg (Vitaly Kuznetsov) [2074835]
+- KVM: generalize "bugged" VM to "dead" VM (Vitaly Kuznetsov) [2074835]
+- EFI: Introduce the new AMD Memory Encryption GUID. (Vitaly Kuznetsov) [2074835]
+- x86/kvm: Add AMD SEV specific Hypercall3 (Vitaly Kuznetsov) [2074835]
+- KVM: x86: SGX must obey the KVM_INTERNAL_ERROR_EMULATION protocol (Vitaly Kuznetsov) [2074835]
+- KVM: x86: On emulation failure, convey the exit reason, etc. to userspace (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Get exit_reason as part of kvm_x86_ops.get_exit_info (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Clarify the kvm_run.emulation_failure structure layout (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Fix nested SVM tests when built with clang (Vitaly Kuznetsov) [2074835]
+- kvm: x86: Remove stale declaration of kvm_no_apic_vcpu (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Move SVM's APICv sanity check to common x86 (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Extract zapping of rmaps for gfn range to separate helper (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Drop a redundant remote TLB flush in kvm_zap_gfn_range() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Drop a redundant, broken remote TLB flush (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Don't unload MMU in kvm_vcpu_flush_tlb_guest() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: pair smp_wmb() of mmu_try_to_unsync_pages() with smp_rmb() (Vitaly Kuznetsov) [2074835]
+- KVM: emulate: Comment on difference between RDPMC implementation and manual (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Add vendor name to kvm_x86_ops, use it for error messages (Vitaly Kuznetsov) [2074835]
+- kvm: x86: mmu: Make NX huge page recovery period configurable (Vitaly Kuznetsov) [2074835]
+- KVM: vPMU: Fill get_msr MSR_CORE_PERF_GLOBAL_OVF_CTRL w/ 0 (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Rename slot_handle_leaf to slot_handle_level_4k (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: RTIT_CTL_BRANCH_EN has no dependency on other CPUID bit (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Rename pt_desc.addr_range to pt_desc.num_address_ranges (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Use precomputed vmx->pt_desc.addr_range (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Restore host's MSR_IA32_RTIT_CTL when it's not zero (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: clean up prefetch/prefault/speculative naming (Vitaly Kuznetsov) [2074835]
+- KVM: cleanup allocation of rmaps and page tracking data (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: Introduce system counter offset test (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: Add helpers for vCPU device attributes (Vitaly Kuznetsov) [2074835]
+- selftests: KVM: Add test for KVM_{GET,SET}_CLOCK (Vitaly Kuznetsov) [2074835]
+- kvm: x86: protect masterclock with a seqcount (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Report host tsc and realtime values in KVM_GET_CLOCK (Vitaly Kuznetsov) [2074835]
+- KVM: x86: avoid warning with -Wbitwise-instead-of-logical (Vitaly Kuznetsov) [2074835]
+- KVM: x86: only allocate gfn_track when necessary (Vitaly Kuznetsov) [2074835]
+- KVM: x86: add config for non-kvm users of page tracking (Vitaly Kuznetsov) [2074835]
+- nSVM: Check for reserved encodings of TLB_CONTROL in nested VMCB (Vitaly Kuznetsov) [2074835]
+- kvm: use kvfree() in kvm_arch_free_vm() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Expose Predictive Store Forwarding Disable (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Avoid memslot lookup in make_spte and mmu_try_to_unsync_pages (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Avoid memslot lookup in rmap_add (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: pass struct kvm_page_fault to mmu_set_spte (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: pass kvm_mmu_page struct to make_spte (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: set ad_disabled in TDP MMU role (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: remove unnecessary argument to mmu_set_spte (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: clean up make_spte return value (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: inline set_spte in FNAME(sync_page) (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: inline set_spte in mmu_set_spte (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Avoid memslot lookup in page_fault_handle_page_track (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Pass the memslot around via struct kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: unify tdp_mmu_map_set_spte_atomic and tdp_mmu_set_spte_atomic_no_dirty_log (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: mark page dirty in make_spte (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Fold rmap_recycle into rmap_add (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Verify shadow walk doesn't terminate early in page faults (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change tracepoints arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change disallowed_hugepage_adjust() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change kvm_mmu_hugepage_adjust() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change fast_page_fault() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change tdp_mmu_map_handle_target_level() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change kvm_tdp_mmu_map() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change FNAME(fetch)() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change __direct_map() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change handle_abnormal_pfn() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change kvm_faultin_pfn() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change page_fault_handle_page_track() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change direct_page_fault() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: change mmu->page_fault() arguments to kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: Introduce struct kvm_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: MMU: pass unadulterated gpa to direct_page_fault (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Fix potential race in KVM_GET_CLOCK (Vitaly Kuznetsov) [2074835]
+- KVM: x86: extract KVM_GET_CLOCK/KVM_SET_CLOCK to separate functions (Vitaly Kuznetsov) [2074835]
+- kvm: x86: abstract locking around pvclock_update_vm_gtod_copy (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Move PTE present check from loop body to __shadow_walk_next() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM: implement nested TSC scaling (Vitaly Kuznetsov) [2074835]
+- KVM: x86: SVM: add module param to control TSC scaling (Vitaly Kuznetsov) [2074835]
+- KVM: x86: SVM: add module param to control LBR virtualization (Vitaly Kuznetsov) [2074835]
+- KVM: x86: nSVM: don't copy pause related settings (Vitaly Kuznetsov) [2074835]
+- kvm: irqfd: avoid update unmodified entries of the routing (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Don't check unsync if the original spte is writible (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Don't unsync pagetables when speculative (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Remove FNAME(update_pte) (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Zap the invalid list after remote tlb flushing (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Change kvm_sync_page() to return true when remote flush is needed (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Remove kvm_mmu_flush_or_zap() (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Don't flush current tlb on shadow page modification (Vitaly Kuznetsov) [2074835]
+- KVM: selftests: Fix kvm_vm_free() in cr4_cpuid_sync and vmx_tsc_adjust tests (Vitaly Kuznetsov) [2074835]
+- kvm: selftests: Fix spelling mistake "missmatch" -> "mismatch" (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Manually retrieve CPUID.0x1 when getting FMS for RESET/INIT (Vitaly Kuznetsov) [2074835]
+- KVM: x86: WARN on non-zero CRs at RESET to detect improper initalization (Vitaly Kuznetsov) [2074835]
+- KVM: SVM: Move RESET emulation to svm_vcpu_reset() (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Move RESET emulation to vmx_vcpu_reset() (Vitaly Kuznetsov) [2074835]
+- KVM: VMX: Drop explicit zeroing of MSR guest values at vCPU creation (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Fold fx_init() into kvm_arch_vcpu_create() (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Remove defunct setting of XCR0 for guest during vCPU create (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Remove defunct setting of CR0.ET for guests during vCPU create (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Simplify retrieving the page offset when loading PDTPRs (Vitaly Kuznetsov) [2074835]
+- KVM: x86: Subsume nested GPA read helper into load_pdptrs() (Vitaly Kuznetsov) [2074835]
+- kvm: rename KVM_MAX_VCPU_ID to KVM_MAX_VCPU_IDS (Vitaly Kuznetsov) [2074835]
+- KVM: Make kvm_make_vcpus_request_mask() use pre-allocated cpu_kick_mask (Vitaly Kuznetsov) [2074835]
+- KVM: Pre-allocate cpumasks for kvm_make_all_cpus_request_except() (Vitaly Kuznetsov) [2074835]
+- KVM: Drop 'except' parameter from kvm_make_vcpus_request_mask() (Vitaly Kuznetsov) [2074835]
+- KVM: Optimize kvm_make_vcpus_request_mask() a bit (Vitaly Kuznetsov) [2074835]
+- KVM: x86: hyper-v: Avoid calling kvm_make_vcpus_request_mask() with vcpu_mask==NULL (Vitaly Kuznetsov) [2074835]
+- KVM: use vma_pages() helper (Vitaly Kuznetsov) [2074835]
+- KVM: nVMX: Reset vmxon_ptr upon VMXOFF emulation. (Vitaly Kuznetsov) [2074835]
+- x86/kvm: Always inline to_svm() (Vitaly Kuznetsov) [2074835]
+- x86/kvm: Always inline vmload() / vmsave() (Vitaly Kuznetsov) [2074835]
+- x86/kvm: Always inline sev_*guest() (Vitaly Kuznetsov) [2074835]
+- KVM: Remove tlbs_dirty (Vitaly Kuznetsov) [2074835]
+- KVM: X86: fix lazy allocation of rmaps (Vitaly Kuznetsov) [2074835]
+- KVM: Remove unnecessary export of kvm_{inc,dec}_notifier_count() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Drop 'shared' param from tdp_mmu_link_page() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Add detailed page size stats (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: bump mmu notifier count in kvm_zap_gfn_range (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: fix parameters to kvm_flush_remote_tlbs_with_address (Vitaly Kuznetsov) [2074835]
+- Revert "KVM: x86/mmu: Allow zap gfn range to operate under the mmu read lock" (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Introduce mmu_rmaps_stat per-vm debugfs file (Vitaly Kuznetsov) [2074835]
+- KVM: X86: Introduce kvm_mmu_slot_lpages() helpers (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Protect marking SPs unsync when using TDP MMU with spinlock (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Don't step down in the TDP iterator when zapping all SPTEs (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Don't leak non-leaf SPTEs when zapping all SPTEs (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Rename __gfn_to_rmap to gfn_to_rmap (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Leverage vcpu->last_used_slot in tdp_mmu_map_handle_target_level (Vitaly Kuznetsov) [2074835]
+- KVM: const-ify all relevant uses of struct kvm_memory_slot (Vitaly Kuznetsov) [2074835]
+- KVM: Don't take mmu_lock for range invalidation unless necessary (Vitaly Kuznetsov) [2074835]
+- KVM: Block memslot updates across range_start() and range_end() (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Lazily allocate memslot rmaps (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Skip rmap operations if rmaps not allocated (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Tear down roots before kvm_mmu_zap_all_fast returns (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Fast invalidation for TDP MMU (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Allow enabling/disabling dirty logging under MMU read lock (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Allow zapping collapsible SPTEs to use MMU read lock (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Allow zap gfn range to operate under the mmu read lock (Vitaly Kuznetsov) [2074835]
+- KVM: x86/mmu: Allow yielding during MMU notifier unmap/zap, if possible (Vitaly Kuznetsov) [2074835]
+- KVM: Take mmu_lock when handling MMU notifier iff the hva hits a memslot (Vitaly Kuznetsov) [2074835]
+- KVM: Move MMU notifier's mmu_lock acquisition into common helper (Vitaly Kuznetsov) [2074835]
+- KVM: Kill off the old hva-based MMU notifier callbacks (Vitaly Kuznetsov) [2074835]
+- KVM: PPC: Convert to the gfn-based MMU notifier callbacks (Vitaly Kuznetsov) [2074835]
+- KVM: arm64: Convert to the gfn-based MMU notifier callbacks (Vitaly Kuznetsov) [2074835]
+- KVM: Move x86's MMU notifier memslot walkers to generic code (Vitaly Kuznetsov) [2074835]
+- KVM: Assert that notifier count is elevated in .change_pte() (Vitaly Kuznetsov) [2074835]
+- KVM: Move arm64's MMU notifier trace events to generic code (Vitaly Kuznetsov) [2074835]
+- KVM: Switch to new MMU notifiers API (Vitaly Kuznetsov) [2074835]
+- scsi: qedi: Remove redundant flush_workqueue() calls (Nilesh Javali) [2044837]
+- scsi: qedi: Fix SYSFS_FLAG_FW_SEL_BOOT formatting (Nilesh Javali) [2044837]
+- xfs: reserve quota for dir expansion when linking/unlinking files (Carlos Maiolino) [2082833]
+- iwlwifi: fix use-after-free (Jose Ignacio Tornos Martinez) [2091539]
+- nfs: fix broken handling of the softreval mount option (Benjamin Coddington) [2083224]
+- ethtool: extend ringparam setting/getting API with rx_buf_len (Ivan Vecera) [2091857]
+- ethtool: add support to set/get rx buf len via ethtool (Ivan Vecera) [2091857]
+- ethtool: add support to set/get tx copybreak buf size via ethtool (Ivan Vecera) [2091857]
+
+* Mon Jun 27 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-405.el8]
+- x86/apic: Make TSC deadline timer detection message visible (David Arcari) [2098086]
+- x86/apic: Move TSC deadline timer debug printk (David Arcari) [2098086]
+- [s390] KVM: s390: selftests: Add error memop tests (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: selftests: Add more copy memop tests (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: selftests: Add named stages for memop test (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: selftests: Add macro as abstraction for MEM_OP (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: selftests: Split memop tests (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Fix lockdep issue in vm memop (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Add missing vm MEM_OP size check (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Clarify key argument for MEM_OP in api docs (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Update api documentation for memop ioctl (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Add capability for storage key extension of MEM_OP IOCTL (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Rename existing vcpu memop functions (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Add vm IOCTL for key checked guest absolute memory access (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Add optional storage key checking to MEMOP IOCTL (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: selftests: Test TEST PROTECTION emulation (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: handle_tprot: Honor storage keys (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: Honor storage keys when accessing guest memory (Claudio Imbrenda) [1984917]
+- [s390] s390/uaccess: Add copy_from/to_user_key functions (Claudio Imbrenda) [1984917]
+- [s390] s390/uaccess: fix compile error (Claudio Imbrenda) [1984917]
+- [s390] s390/uaccess: introduce bit field for OAC specifier (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: gaccess: Cleanup access to guest pages (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: gaccess: Refactor access address range check (Claudio Imbrenda) [1984917]
+- [s390] KVM: s390: gaccess: Refactor gpa and length calculation (Claudio Imbrenda) [1984917]
+- xfs: reorder iunlink remove operation in xfs_ifree (Brian Foster) [2081146]
+- tcp: fix TCP socket rehash stats mis-accounting (Antoine Tenart) [2073082]
+- tcp: export count for rehash attempts (Antoine Tenart) [2073082]
+- tcp: add SRTT to SCM_TIMESTAMPING_OPT_STATS (Antoine Tenart) [2073082]
+- tcp: add new SNMP counter for drops when try to queue in rcv queue (Antoine Tenart) [2073082]
+- tcp: add SNMP counter for zero-window drops (Antoine Tenart) [2073082]
+- net: udp: introduce UDP_MIB_MEMERRORS for udp_mem (Antoine Tenart) [2073082]
+- context_tracking: Sync up lockdep and cpu irqs state to prevent false warnings (Waiman Long) [2098074]
+- platform/x86: ISST: Fix possible circular locking dependency detected (Prarit Bhargava) [2072659]
+- platform/x86: ISST: use semi-colons instead of commas (Prarit Bhargava) [2072659]
+- platform/x86: intel_speed_select_if: Move to intel sub-directory (Prarit Bhargava) [2072659]
+- x86/sgx: Free backing memory after faulting the enclave page (Vladis Dronov) [2081351]
+- x86/sgx: Fix missing poison handling in reclaimer (Vladis Dronov) [2081351]
+- x86/sgx: Silence softlockup detection when releasing large enclaves (Vladis Dronov) [2081351]
+- selftests/sgx: Treat CC as one argument (Vladis Dronov) [2081351]
+- selftests/x86: Add validity check and allow field splitting (Vladis Dronov) [2081351]
+- selftests/sgx: Remove extra newlines in test output (Vladis Dronov) [2081351]
+- selftests/sgx: Ensure enclave data available during debug print (Vladis Dronov) [2081351]
+- selftests/sgx: Do not attempt enclave build without valid enclave (Vladis Dronov) [2081351]
+- selftests/sgx: Fix NULL-pointer-dereference upon early test failure (Vladis Dronov) [2081351]
+- x86/sgx: Remove .fixup usage (Vladis Dronov) [2081351]
+- x86/sgx: Fix NULL pointer dereference on non-SGX systems (Vladis Dronov) [2081351]
+- x86/sgx: Add an attribute for the amount of SGX memory in a NUMA node (Vladis Dronov) [2081351]
+- vmxnet3: disable overlay offloads if UPT device does not support (Kamal Heib) [2100226]
+- vmxnet3: update to version 7 (Kamal Heib) [2100226]
+- vmxnet3: use ext1 field to indicate encapsulated packet (Kamal Heib) [2100226]
+- vmxnet3: limit number of TXDs used for TSO packet (Kamal Heib) [2100226]
+- vmxnet3: add command to set ring buffer sizes (Kamal Heib) [2100226]
+- vmxnet3: add support for out of order rx completion (Kamal Heib) [2100226]
+- vmxnet3: add support for large passthrough BAR register (Kamal Heib) [2100226]
+- vmxnet3: add support for capability registers (Kamal Heib) [2100226]
+- vmxnet3: prepare for version 7 changes (Kamal Heib) [2100226]
+- net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup() (Kamal Heib) [2100226]
+- net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf() (Kamal Heib) [2100226]
+
+* Fri Jun 24 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-404.el8]
+- iommu/amd: Enable swiotlb in all cases (Jerry Snitselaar) [2072179]
+- iommu/arm-smmu-v3-sva: Fix mm use-after-free (Jerry Snitselaar) [2072179]
+- dma-direct: don't over-decrypt memory (Jerry Snitselaar) [2072179]
+- dma-direct: always leak memory that can't be re-encrypted (Jerry Snitselaar) [2072179]
+- dma-direct: clean up the remapping checks in dma_direct_alloc (Jerry Snitselaar) [2072179]
+- dma-direct: don't call dma_set_decrypted for remapped allocations (Jerry Snitselaar) [2072179]
+- dma-direct: factor out dma_set_{de,en}crypted helpers (Jerry Snitselaar) [2072179]
+- swiotlb: max mapping size takes min align mask into account (Jerry Snitselaar) [2072179]
+- dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC (Jerry Snitselaar) [2072179]
+- dma-direct: don't fail on highmem CMA pages in dma_direct_alloc_pages (Jerry Snitselaar) [2072179]
+- dma-direct: factor out a helper for DMA_ATTR_NO_KERNEL_MAPPING allocations (Jerry Snitselaar) [2072179]
+- swiotlb: make swiotlb_exit a no-op if SWIOTLB_FORCE is set (Jerry Snitselaar) [2072179]
+- dma-direct: use is_swiotlb_active in dma_direct_map_page (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Calculate mask for non-aligned flushes (Jerry Snitselaar) [2072179]
+- iommu/amd: Call memunmap in error path (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Drop duplicate check in dma_pte_free_pagetable() (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Use correctly sized arguments for bit field (Jerry Snitselaar) [2072179]
+- Revert "iommu/arm-smmu-v3: Decrease the queue size of evtq and priq" (Jerry Snitselaar) [2072179]
+- iommu: Fix potential use-after-free during probe (Jerry Snitselaar) [2072179]
+- dma-direct: avoid redundant memory sync for swiotlb (Jerry Snitselaar) [2072179]
+- iommu/iova: Fix race between FQ timeout and teardown (Jerry Snitselaar) [2072179]
+- iommu/io-pgtable-arm: Fix table descriptor paddr formatting (Jerry Snitselaar) [2072179]
+- iommu: Extend mutex lock scope in iommu_probe_device() (Jerry Snitselaar) [2072179]
+- iommu/amd: X2apic mode: mask/unmask interrupts on suspend/resume (Jerry Snitselaar) [2072179]
+- iommu/amd: X2apic mode: setup the INTX registers on mask/unmask (Jerry Snitselaar) [2072179]
+- iommu/amd: X2apic mode: re-enable after resume (Jerry Snitselaar) [2072179]
+- iommu/amd: Restore GA log/tail pointer on host resume (Jerry Snitselaar) [2072179]
+- iommu/amd: Clarify AMD IOMMUv2 initialization messages (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Avoid duplicate removing in __domain_mapping() (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Fix an unbalanced rcu_read_lock/rcu_read_unlock() (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Check FL and SL capability sanity in scalable mode (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Add present bit check in pasid entry setup helpers (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Preset A/D bits for user space DMA usage (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Remove unnecessary oom message (Jerry Snitselaar) [2072179]
+- iommu/vt-d: Enable ATS for the devices in SATC table (Jerry Snitselaar) [1893460]
+- iommu/vt-d: Parse SATC reporting structure (Jerry Snitselaar) [1893460]
+- iommu/vt-d: Dump DMAR translation structure when DMA fault occurs (Jerry Snitselaar) [1868826]
+- nvme: fix typos in nvme status code values (Gopal Tiwari) [2091824]
+- Adding CONFIG_NVME_VERBOSE_ERRORS to RHEL-8. (Gopal Tiwari) [2091824]
+- nvme: add missing status values to verbose logging (Gopal Tiwari) [2091824]
+- nvme: don't print verbose errors for internal passthrough requests (Gopal Tiwari) [2091824]
+- nvme: add verbose error logging (Gopal Tiwari) [2091824]
+- perf/x86/msr: Add Raptor Lake CPU support (Michael Petlan) [2094572]
+- perf/x86: Add Intel Raptor Lake support (Michael Petlan) [2094572]
+- perf/x86/cstate: Add SAPPHIRERAPIDS_X CPU support (Michael Petlan) [2094572]
+- perf/x86/cstate: Add Raptor Lake support (Michael Petlan) [2094572]
+- [s390] s390/lcs: fix variable dereferenced before check (Mete Durlu) [2043835]
+- [s390] s390/ctcm: fix potential memory leak (Mete Durlu) [2043835]
+- [s390] s390/ctcm: fix variable dereferenced before check (Mete Durlu) [2043835]
+- [s390] s390/net: sort out physical vs virtual pointers usage (Mete Durlu) [2043835]
+- [s390] s390/qeth: remove check for packing mode in qeth_check_outbound_queue() (Mete Durlu) [2043835]
+- [s390] s390/qeth: fine-tune .ndo_select_queue() (Mete Durlu) [2043835]
+- [s390] s390/qeth: don't offer .ndo_bridge_* ops for OSA devices (Mete Durlu) [2043835]
+- [s390] s390/qeth: split up L2 netdev_ops (Mete Durlu) [2043835]
+- [s390] s390/qeth: simplify qeth_receive_skb() (Mete Durlu) [2043835]
+- [s390] s390/lcs: add braces around empty function body (Mete Durlu) [2043835]
+- [s390] s390/ctcm: add __printf format attribute to ctcm_dbf_longtext (Mete Durlu) [2043835]
+- [s390] s390/ctcm: fix format string (Mete Durlu) [2043835]
+- [s390] s390/qeth: allocate RX queue at probe time (Mete Durlu) [2043835]
+- [s390] s390/qeth: update kerneldoc for qeth_add_hw_header() (Mete Durlu) [2043835]
+- [s390] s390/qeth: fix kernel doc comments (Mete Durlu) [2043835]
+- [s390] s390/qeth: add __printf format attribute to qeth_dbf_longtext (Mete Durlu) [2043835]
+- [s390] s390/qeth: fix various format strings (Mete Durlu) [2043835]
+- [s390] s390/qeth: don't keep track of Input Queue count (Mete Durlu) [2043835]
+- [s390] s390/qeth: clarify remaining dev_kfree_skb_any() users (Mete Durlu) [2043835]
+- [s390] s390/qeth: move qdio's QAOB cache into qeth (Mete Durlu) [2043835]
+- [s390] s390/qeth: improve trace entries for MAC address (un)registration (Mete Durlu) [2043835]
+- [s390] s390/netiucv: remove incorrect kernel doc indicators (Mete Durlu) [2043835]
+- [s390] s390/lcs: remove incorrect kernel doc indicators (Mete Durlu) [2043835]
+- [s390] s390/ctcm: remove incorrect kernel doc indicators (Mete Durlu) [2043835]
+- [s390] s390/qeth: clean up device_type management (Mete Durlu) [2043835]
+- [s390] s390/qeth: clean up QETH_PROT_* naming (Mete Durlu) [2043835]
+- mm/memcg: Free percpu stats memory of dying memcg's (Waiman Long) [2004037]
+- netfilter: flowtable: fix TCP flow teardown (Florian Westphal) [2088234]
+- netfilter: conntrack: annotate data-races around ct->timeout (Florian Westphal) [2088234]
+- netfilter: conntrack: initialize ct->timeout (Florian Westphal) [2088234]
+- NFSv4: Fix free of uninitialized nfs4_label on referral lookup. (Scott Mayhew) [2090994]
+- md: fix double free of io_acct_set bioset (Nigel Croxon) [2094076]
+- md: Don't set mddev private to NULL in raid0 pers->free (Nigel Croxon) [2094076]
+- md: protect md_unregister_thread from reentrancy (Nigel Croxon) [2094076]
+- md: don't unregister sync_thread with reconfig_mutex held (Nigel Croxon) [2094076]
+- raid5: don't set the discard_alignment queue limit (Nigel Croxon) [2094076]
+- md: Replace role magic numbers with defined constants (Nigel Croxon) [2094076]
+- md/raid0: Ignore RAID0 layout if the second zone has only one device (Nigel Croxon) [2094076]
+- md/raid5: Annotate functions that hold device_lock with __must_hold (Nigel Croxon) [2094076]
+- md/raid5-ppl: Annotate with rcu_dereference_protected() (Nigel Croxon) [2094076]
+- md/raid5: Annotate rdev/replacement access when mddev_lock is held (Nigel Croxon) [2094076]
+- md/raid5: Annotate rdev/replacement accesses when nr_pending is elevated (Nigel Croxon) [2094076]
+- md/raid5: Add __rcu annotation to struct disk_info (Nigel Croxon) [2094076]
+- md/raid5: Un-nest struct raid5_percpu definition (Nigel Croxon) [2094076]
+- md/raid5: Cleanup setup_conf() error returns (Nigel Croxon) [2094076]
+- md: replace deprecated strlcpy & remove duplicated line (Nigel Croxon) [2094076]
+- md/bitmap: don't set sb values if can't pass sanity check (Nigel Croxon) [2094076]
+- md: fix an incorrect NULL check in md_reload_sb (Nigel Croxon) [2094076]
+- md: fix an incorrect NULL check in does_sb_need_changing (Nigel Croxon) [2094076]
+- md: use msleep() in md_notify_reboot() (Nigel Croxon) [2094076]
+- ext4: force overhead calculation if the s_overhead_cluster makes no sense (Lukas Czerner) [2079886]
+- ext4: fix overhead calculation to account for the reserved gdt blocks (Lukas Czerner) [2079886]
+- ext4: limit length to bitmap_maxbytes - blocksize in punch_hole (Lukas Czerner) [2079886]
+- ext4: fix use-after-free in ext4_search_dir (Lukas Czerner) [2079886]
+- ext4: fix symlink file size not match to file content (Lukas Czerner) [2079886]
+- ext4: fix fallocate to use file_modified to update permissions consistently (Lukas Czerner) [2085623]
+- ext4: remove unused macro MPAGE_DA_EXTENT_TAIL (Lukas Czerner) [2079886]
+- ext4: add missing braces in ext4_ext_drop_refs() (Lukas Czerner) [2079886]
+- ext4: remove obsolete comment from ext4_can_extents_be_merged() (Lukas Czerner) [2079886]
+- ext4: make some functions static in extents.c (Lukas Czerner) [2079886]
+- ext4: remove redundant S_ISREG() checks from ext4_fallocate() (Lukas Czerner) [2079886]
+- ext4: clean up len and offset checks in ext4_fallocate() (Lukas Czerner) [2079886]
+- ext4: remove ext4_{ind,ext}_calc_metadata_amount() (Lukas Czerner) [2079886]
+- ext4: fix fs corruption when tring to remove a non-empty directory with IO error (Lukas Czerner) [2079886]
+- ext4: fix error handling in ext4_restore_inline_data() (Lukas Czerner) [2079886]
+- jbd2: export jbd2_journal_[grab|put]_journal_head (Lukas Czerner) [2079886]
+- ext4: don't use the orphan list when migrating an inode (Lukas Czerner) [2079886]
+- ext4: set csum seed in tmp inode while migrating to extents (Lukas Czerner) [2079886]
+- ext4: fix an use-after-free issue about data=journal writeback mode (Lukas Czerner) [2079886]
+- ext4: fix bh ref count on error paths (Lukas Czerner) [2079886]
+- ext4: fix a possible ABBA deadlock due to busy PA (Lukas Czerner) [2079886]
+- ext4: discard preallocations before releasing group lock (Lukas Czerner) [2079886]
+- ext4: make ext_debug() implementation to use pr_debug() (Lukas Czerner) [2079886]
+- ext4: mballoc: make mb_debug() implementation to use pr_debug() (Lukas Czerner) [2079886]
+- ext4: improve ext_debug() msg in case of block allocation failure (Lukas Czerner) [2079886]
+- ext4: use BIT() macro for BH_** state bits (Lukas Czerner) [2079886]
+- ext4: balloc: use task_pid_nr() helper (Lukas Czerner) [2079886]
+- ext4: mballoc: fix possible NULL ptr & remove BUG_ONs from DOUBLE_CHECK (Lukas Czerner) [2079886]
+- ext4: mballoc: refactor code inside DOUBLE_CHECK into separate function (Lukas Czerner) [2079886]
+- ext4: mballoc: make ext4_mb_use_preallocated() return type as bool (Lukas Czerner) [2079886]
+- ext4: mballoc: simplify error handling in ext4_init_mballoc() (Lukas Czerner) [2079886]
+- ext4: mballoc: fix few other format specifier in mb_debug() (Lukas Czerner) [2079886]
+- ext4: mballoc: correct the mb_debug() format specifier for pa_len var (Lukas Czerner) [2079886]
+- ext4: mballoc: add more mb_debug() msgs (Lukas Czerner) [2079886]
+- ext4: mballoc: refactor ext4_mb_show_ac() (Lukas Czerner) [2079886]
+- ext4: mballoc: print bb_free info even when it is 0 (Lukas Czerner) [2079886]
+- ext4: fix dead loop in ext4_mb_new_blocks (Lukas Czerner) [2079886]
+- ext4: mballoc: use lock for checking free blocks while retrying (Lukas Czerner) [2079886]
+- ext4: mballoc: refactor ext4_mb_good_group() (Lukas Czerner) [2079886]
+- ext4: mballoc: introduce pcpu seqcnt for freeing PA to improve ENOSPC handling (Lukas Czerner) [2079886]
+- ext4: mballoc: refactor ext4_mb_discard_preallocations() (Lukas Czerner) [2079886]
+- ext4: mballoc: add blocks to PA list under same spinlock after allocating blocks (Lukas Czerner) [2079886]
+- ext4: fix lazy initialization next schedule time computation in more granular unit (Lukas Czerner) [2079886]
+- ext4: fix avefreec in find_group_orlov (Lukas Czerner) [2079886]
+- ext4: allow the dax flag to be set and cleared on inline directories (Lukas Czerner) [2079886]
+- ext4: annotate data race in jbd2_journal_dirty_metadata() (Lukas Czerner) [2079886]
+- ext4: annotate data race in start_this_handle() (Lukas Czerner) [2079886]
+- ext4: fix superblock checksum failure when setting password salt (Lukas Czerner) [2079886]
+- ext4: correctly report "not supported" for {usr,grp}jquota when !CONFIG_QUOTA (Lukas Czerner) [2079886]
+- jbd2: fix ocfs2 corrupt when clearing block group bits (Lukas Czerner) [2079886]
+- ext4: fix ext4_empty_dir() for directories with holes (Lukas Czerner) [2079886]
+- ext4: allow directory holes (Lukas Czerner) [2079886]
+- net/af_packet: make sure to pull mac header (Hangbin Liu) [2066976]
+- rcu/nocb: Make rcu_core() callbacks acceleration preempt-safe (Waiman Long) [2097549]
+- redhat: drop expired testing secureboot signing key (Jarod Wilson) [2095199]
+
+* Thu Jun 23 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-403.el8]
+- atlantic: Fix issue in the pm resume flow. (Igor Russkikh) [2002395]
+- atlantic: Fix driver resume flow. (Igor Russkikh) [2002395]
+- Build intel_sdsi with {tools_make} (Prarit Bhargava) [1971951]
+- redhat/kernel.spec.template: Add intel_sdsi tool (Prarit Bhargava) [1971951]
+- redhat/configs: Add CONFIG_INTEL_SDSI (Prarit Bhargava) [1971951]
+- selftests: sdsi: test sysfs setup (Prarit Bhargava) [1971951]
+- tools arch x86: Add Intel SDSi provisiong tool (Prarit Bhargava) [1971951]
+- platform/x86: Add Intel Software Defined Silicon driver (Prarit Bhargava) [1971951]
+- platform/x86/intel: Fix 'rmmod pmt_telemetry' panic (Prarit Bhargava) [2080426]
+- x86/cpu: Add new Alderlake and Raptorlake CPU model numbers (Prarit Bhargava) [2040019 2040059]
+- netfilter: nf_tables: sanitize nft_set_desc_concat_parse() (Florian Westphal) [2096403] {CVE-2022-2078}
+- mt76: mt7921: Fix the error handling path of mt7921_pci_probe() (Íñigo Huguet) [2096758]
+- Watchdog: sp5100_tco: Enable Family 17h+ CPUs (Sudheesh Mavila) [2031643]
+- Watchdog: sp5100_tco: Add initialization using EFCH MMIO (Sudheesh Mavila) [2031643]
+- kernel/resource: Introduce request_mem_region_muxed() (Sudheesh Mavila) [2031643]
+- Watchdog: sp5100_tco: Refactor MMIO base address initialization (Sudheesh Mavila) [2031643]
+- Watchdog: sp5100_tco: Move timer initialization into function (Sudheesh Mavila) [2031643]
+- watchdog: sp5100_tco: Add support for get_timeleft (Sudheesh Mavila) [2031643]
+- watchdog: sp5100_tco: Enable watchdog on Family 17h devices if disabled (Sudheesh Mavila) [2031643]
+- watchdog: sp5100_tco: drop warning after registering device (Sudheesh Mavila) [2031643]
+- watchdog: sp5100_tco: drop warning after calling watchdog_init_timeout (Sudheesh Mavila) [2031643]
+- Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" (Chris von Recklinghausen) [2059701] {CVE-2022-0854}
+- swiotlb: fix info leak with DMA_FROM_DEVICE (Chris von Recklinghausen) [2059701] {CVE-2022-0854}
+- redhat/configs: Add CONFIG_S390_UV_UAPI (Claudio Imbrenda) [1984905]
+- [s390] s390/uv_uapi: depend on CONFIG_S390 (Claudio Imbrenda) [1984905]
+- [s390] drivers/s390/char: Add Ultravisor io device (Claudio Imbrenda) [1984905]
+- cpufreq: Specify default governor on command line (Prarit Bhargava) [2083766]
+- cpufreq: Fix locking issues with governors (Prarit Bhargava) [2083766]
+- cpufreq: Register governors at core_initcall (Prarit Bhargava) [2083766]
+- nvme: fix RCU hole that allowed for endless looping in multipath round robin (Gopal Tiwari) [2078806]
+- nvme-multipath: fix hang when disk goes live over reconnect (Gopal Tiwari) [2078806]
+- nvme-tcp: send H2CData PDUs based on MAXH2CDATA (Gopal Tiwari) [2078806]
+- nvme: also mark passthrough-only namespaces ready in nvme_update_ns_info (Gopal Tiwari) [2078806]
+- nvme: don't return an error from nvme_configure_metadata (Gopal Tiwari) [2078806]
+- nvme-tcp: fix bogus request completion when failing to send AER (Gopal Tiwari) [2078806]
+- nvme-fabrics: remove the unneeded ret variable in nvmf_dev_show (Gopal Tiwari) [2078806]
+- nvme-pci: add the IGNORE_DEV_SUBNQN quirk for Intel P4500/P4600 SSDs (Gopal Tiwari) [2078806]
+- nvme-fabrics: print out valid arguments when reading from /dev/nvme-fabrics (Gopal Tiwari) [2078806]
+- nvmet-tcp: fix possible list corruption for unexpected command failure (Gopal Tiwari) [2078806]
+- nvme: fix use after free when disconnecting a reconnecting ctrl (Gopal Tiwari) [2078806]
+- nvme-multipath: set ana_log_size to 0 after free ana_log_buf (Gopal Tiwari) [2078806]
+- nvme: disable namespace access for unsupported metadata (Gopal Tiwari) [2078806]
+- nvme: report write pointer for a full zone as zone start + zone len (Gopal Tiwari) [2078806]
+- nvme: show subsys nqn for duplicate cntlids (Gopal Tiwari) [2078806]
+- nvme-pci: add NO APST quirk for Kioxia device (Gopal Tiwari) [2078806]
+- nvme: fix write zeroes pi (Gopal Tiwari) [2078806]
+- nvmet: use flex_array_size and struct_size (Gopal Tiwari) [2078806]
+- nvme: drop scan_lock and always kick requeue list when removing namespaces (Gopal Tiwari) [2078806]
+- nvmet: use struct_size over open coded arithmetic (Gopal Tiwari) [2078806]
+- nvme-pci: clear shadow doorbell memory on resets (Gopal Tiwari) [2078806]
+- nvmet: use macro definitions for setting cmic value (Gopal Tiwari) [2078806]
+- nvme-rdma: fix error code in nvme_rdma_setup_ctrl (Gopal Tiwari) [2078806]
+- nvmet: use macro definition for setting nmic value (Gopal Tiwari) [2078806]
+- nvmet-rdma: implement get_max_queue_size controller op (Gopal Tiwari) [2078806]
+- nvmet: add get_max_queue_size op for controllers (Gopal Tiwari) [2078806]
+- nvme-rdma: limit the maximal queue size for RDMA controllers (Gopal Tiwari) [2078806]
+- nvme: paring quiesce/unquiesce (Gopal Tiwari) [2078806]
+- nvme: add APIs for stopping/starting admin queue (Gopal Tiwari) [2078806]
+- nvme: prepare for pairing quiescing and unquiescing (Gopal Tiwari) [2078806]
+- nvme: apply nvme API to quiesce/unquiesce admin queue (Gopal Tiwari) [2078806]
+- nvme: loop: clear NVME_CTRL_ADMIN_Q_STOPPED after admin queue is reallocated (Gopal Tiwari) [2078806]
+- nvme: remove the call to nvme_update_disk_info in nvme_ns_remove (Gopal Tiwari) [2078806]
+- nvme: remove the GENHD_FL_UP check in nvme_ns_remove (Gopal Tiwari) [2078806]
+- nvme-rdma: destroy cm id before destroy qp to avoid use after free (Gopal Tiwari) [2078806]
+- nvme: only call synchronize_srcu when clearing current path (Gopal Tiwari) [2078806]
+- nvme-multipath: revalidate paths during rescan (Gopal Tiwari) [2078806]
+- nvme: remove the unused NVME_NS_* enum (Gopal Tiwari) [2078806]
+- nvme: Have NVME_FABRICS select NVME_CORE instead of transport drivers (Gopal Tiwari) [2078806]
+- nvme-pci: disable hmb on idle suspend (Gopal Tiwari) [2078806]
+- nvme: allow user toggling hmb usage (Gopal Tiwari) [2078806]
+- nvme-fabrics: remove superfluous nvmf_host_put in nvmf_parse_options (Gopal Tiwari) [2078806]
+- nvme: add set feature tracing support (Gopal Tiwari) [2078806]
+- nvmet: add set feature tracing support (Gopal Tiwari) [2078806]
+- nvme-pci: cmb sysfs: one file, one value (Gopal Tiwari) [2078806]
+- nvme-pci: use attribute group for cmb sysfs (Gopal Tiwari) [2078806]
+- compiler.h: Introduce absolute_pointer macro (Gopal Tiwari) [2078806]
+- vdpa: Fix vdpa-vhost driver (Laurent Vivier) [2093851]
+- nl80211: fix locking in nl80211_set_tx_bitrate_mask() (Íñigo Huguet) [2059994]
+- mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection (Íñigo Huguet) [2059994]
+- mac80211_hwsim: fix RCU protected chanctx access (Íñigo Huguet) [2059994]
+- mac80211: Reset MBSSID parameters upon connection (Íñigo Huguet) [2059994]
+- cfg80211: retrieve S1G operating channel number (Íñigo Huguet) [2059994]
+- nl80211: validate S1G channel width (Íñigo Huguet) [2059994]
+- mac80211: fix rx reordering with non explicit / psmp ack policy (Íñigo Huguet) [2059994]
+- ath11k: reduce the wait time of 11d scan and hw scan while add interface (Íñigo Huguet) [2059994]
+- iwlwifi: iwl-dbg: Use del_timer_sync() before freeing (Íñigo Huguet) [2059994]
+- bus: mhi: host: pci_generic: Flush recovery worker during freeze (Íñigo Huguet) [2059994]
+- bus: mhi: host: pci_generic: Add missing poweroff() PM callback (Íñigo Huguet) [2059994]
+- mac80211: fix ht_capa printout in debugfs (Íñigo Huguet) [2059994]
+- cfg80211: hold bss_lock while updating nontrans_list (Íñigo Huguet) [2059994]
+- nl80211: correctly check NL80211_ATTR_REG_ALPHA2 size (Íñigo Huguet) [2059994]
+- ath9k: Fix usage of driver-private space in tx_info (Íñigo Huguet) [2059994]
+- brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant (Íñigo Huguet) [2059994]
+- mt76: Fix undefined behavior due to shift overflowing the constant (Íñigo Huguet) [2059994]
+- Revert "ath11k: mesh: add support for 256 bitmap in blockack frames in 11ax" (Íñigo Huguet) [2059994]
+- ath9k: Properly clear TX status area before reporting to mac80211 (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Don't fail if PPAG isn't supported (Íñigo Huguet) [2059994]
+- bus: mhi: Make mhi_state_str[] array static inline and move to common.h (Íñigo Huguet) [2059994]
+- bus: mhi: Move common MHI definitions out of host directory (Íñigo Huguet) [2059994]
+- bus: mhi: host: Rename "struct mhi_tre" to "struct mhi_ring_element" (Íñigo Huguet) [2059994]
+- bus: mhi: Cleanup the register definitions used in headers (Íñigo Huguet) [2059994]
+- bus: mhi: Use bitfield operations for handling DWORDs of ring elements (Íñigo Huguet) [2059994]
+- bus: mhi: Use bitfield operations for register read and write (Íñigo Huguet) [2059994]
+- bus: mhi: Move host MHI code to "host" directory (Íñigo Huguet) [2059994]
+- bus: mhi: Fix MHI DMA structure endianness (Íñigo Huguet) [2059994]
+- bus: mhi: Fix pm_state conversion to string (Íñigo Huguet) [2059994]
+- bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series (Íñigo Huguet) [2059994]
+- rfkill: make new event layout opt-in (Íñigo Huguet) [2059994]
+- rtw89: implement stop and resume channels transmission v1 (Íñigo Huguet) [2059994]
+- rtw89: extend mac tx_en bits from 16 to 32 (Íñigo Huguet) [2059994]
+- rtw89: change value assignment style of rtw89_mac_cfg_gnt() (Íñigo Huguet) [2059994]
+- rtw89: 8852c: add mac_ctrl_path and mac_cfg_gnt APIs (Íñigo Huguet) [2059994]
+- rtw89: disable FW and H2C function if CPU disabled (Íñigo Huguet) [2059994]
+- rtw89: initialize preload window of D-MAC (Íñigo Huguet) [2059994]
+- rtw89: modify MAC enable functions (Íñigo Huguet) [2059994]
+- rtw89: add config_rf_reg_v1 to configure RF parameter tables (Íñigo Huguet) [2059994]
+- rtw89: 8852c: add read/write rf register function (Íñigo Huguet) [2059994]
+- rtw89: 8852c: add setting of TB UL TX power offset (Íñigo Huguet) [2059994]
+- rtw89: 8852c: add write/read crystal function in CFO tracking (Íñigo Huguet) [2059994]
+- rtw89: modify dcfo_comp to share with chips (Íñigo Huguet) [2059994]
+- rtw89: Fix spelling mistake "Mis-Match" -> "Mismatch" (Íñigo Huguet) [2059994]
+- brcmfmac: p2p: Fix spelling mistake "Comback" -> "Comeback" (Íñigo Huguet) [2059994]
+- iwlwifi: mei: fix building iwlmei (Íñigo Huguet) [2059994]
+- mt76: fix monitor rx FCS error in DFS channel (Íñigo Huguet) [2059994]
+- mt76: mt7921: don't enable beacon filter when IEEE80211_CONF_CHANGE_MONITOR is set (Íñigo Huguet) [2059994]
+- mt76: fix wrong HE data rate in sniffer tool (Íñigo Huguet) [2059994]
+- mt76: mt7915: introduce 802.11ax multi-bss support (Íñigo Huguet) [2059994]
+- mt76: mt7921: move mt7921_init_hw in a dedicated work (Íñigo Huguet) [2059994]
+- mt76: mt7921: add mt7921u driver (Íñigo Huguet) [2059994]
+- mt76: mt7921: move mt7921_usb_sdio_tx_status_data in mac common code. (Íñigo Huguet) [2059994]
+- mt76: mt7921: move mt7921_usb_sdio_tx_complete_skb in common mac code. (Íñigo Huguet) [2059994]
+- mt76: mt7921: move mt7921_usb_sdio_tx_prepare_skb in common mac code (Íñigo Huguet) [2059994]
+- mt76: mt7921: update mt7921_skb_add_usb_sdio_hdr to support usb (Íñigo Huguet) [2059994]
+- mt76: mt7921: disable runtime pm for usb (Íñigo Huguet) [2059994]
+- mt76: usb: introduce __mt76u_init utility routine (Íñigo Huguet) [2059994]
+- mt76: usb: add req_type to ___mt76u_wr signature (Íñigo Huguet) [2059994]
+- mt76: usb: add req_type to ___mt76u_rr signature (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix typos in comments (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix phy cap in mt7915_set_stream_he_txbf_caps() (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix beamforming mib stats (Íñigo Huguet) [2059994]
+- mt76: mt7915: set band1 TGID field in tx descriptor (Íñigo Huguet) [2059994]
+- mt76: fix invalid rssi report (Íñigo Huguet) [2059994]
+- mt76: use le32/16_get_bits() whenever possible (Íñigo Huguet) [2059994]
+- mt76: connac: make read-only array ba_range static const (Íñigo Huguet) [2059994]
+- mt76: mt7915: check for devm_pinctrl_get() failure (Íñigo Huguet) [2059994]
+- mt76: mt7921: get rid of mt7921_wait_for_mcu_init declaration (Íñigo Huguet) [2059994]
+- mt76: mt7915: add txpower init for 6GHz (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix eeprom fields of txpower init values (Íñigo Huguet) [2059994]
+- mt76: mt7915: add 6 GHz support (Íñigo Huguet) [2059994]
+- mt76: connac: add 6 GHz support for wtbl and starec configuration (Íñigo Huguet) [2059994]
+- mt76: mt7915: allow beaconing on all chains (Íñigo Huguet) [2059994]
+- mt76: fix monitor mode crash with sdio driver (Íñigo Huguet) [2059994]
+- mt76: mt7921: fix mt7921_queues_acq implementation (Íñigo Huguet) [2059994]
+- mt76: mt7921: fix xmit-queue dump for usb and sdio (Íñigo Huguet) [2059994]
+- mt76: mt7921: make mt7921_init_tx_queues static (Íñigo Huguet) [2059994]
+- mt76: split single ldpc cap bit into bits (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix DFS no radar detection event (Íñigo Huguet) [2059994]
+- mt76: mt7921: use mt76_hw instead of open coding it (Íñigo Huguet) [2059994]
+- mt76: mt7921: fix up the monitor mode (Íñigo Huguet) [2059994]
+- mt76: mt7663u: introduce mt7663u_mcu_power_on routine (Íñigo Huguet) [2059994]
+- mt76: mt7615: honor ret from mt7615_mcu_restart in mt7663u_mcu_init (Íñigo Huguet) [2059994]
+- rtw89: fix uninitialized variable of rtw89_append_probe_req_ie() (Íñigo Huguet) [2059994]
+- rtlwifi: rtl8821ae: fix typos in comments (Íñigo Huguet) [2059994]
+- rtlwifi: rtl8192cu: Add On Networks N150 (Íñigo Huguet) [2059994]
+- mwifiex: make read-only array wmm_oui static const (Íñigo Huguet) [2059994]
+- mac80211: update bssid_indicator in ieee80211_assign_beacon (Íñigo Huguet) [2059994]
+- mac80211: MBSSID channel switch (Íñigo Huguet) [2059994]
+- mac80211: MBSSID beacon handling in AP mode (Íñigo Huguet) [2059994]
+- mac80211: always have ieee80211_sta_restart() (Íñigo Huguet) [2059994]
+- mac80211: Add support to trigger sta disconnect on hardware restart (Íñigo Huguet) [2059994]
+- mac80211: fix potential double free on mesh join (Íñigo Huguet) [2059994]
+- mac80211: correct legacy rates check in ieee80211_calc_rx_airtime (Íñigo Huguet) [2059994]
+- nl80211: fix typo of NL80211_IF_TYPE_OCB in documentation (Íñigo Huguet) [2059994]
+- mac80211: Use GFP_KERNEL instead of GFP_ATOMIC when possible (Íñigo Huguet) [2059994]
+- mac80211: replace DEFINE_SIMPLE_ATTRIBUTE with DEFINE_DEBUGFS_ATTRIBUTE (Íñigo Huguet) [2059994]
+- rtw89: 8852c: process logic efuse map (Íñigo Huguet) [2059994]
+- rtw89: 8852c: process efuse of phycap (Íñigo Huguet) [2059994]
+- rtw89: support DAV efuse reading operation (Íñigo Huguet) [2059994]
+- rtw89: 8852c: add chip::dle_mem (Íñigo Huguet) [2059994]
+- rtw89: add page_regs to handle v1 chips (Íñigo Huguet) [2059994]
+- rtw89: add chip_info::{h2c,c2h}_reg to support more chips (Íñigo Huguet) [2059994]
+- rtw89: add hci_func_en_addr to support variant generation (Íñigo Huguet) [2059994]
+- rtw89: add power_{on/off}_func (Íñigo Huguet) [2059994]
+- rtw89: read chip version depends on chip ID (Íñigo Huguet) [2059994]
+- rtw89: pci: use a struct to describe all registers address related to DMA channel (Íñigo Huguet) [2059994]
+- rtw89: pci: add V1 of PCI channel address (Íñigo Huguet) [2059994]
+- rtw89: pci: add struct rtw89_pci_info (Íñigo Huguet) [2059994]
+- rtw89: 8852c: add 8852c empty files (Íñigo Huguet) [2059994]
+- brcmfmac: make the read-only array pktflags static const (Íñigo Huguet) [2059994]
+- rtlwifi: rtl8192ce: remove duplicated function '_rtl92ce_phy_set_rf_sleep' (Íñigo Huguet) [2059994]
+- ath10k: Fix error handling in ath10k_setup_msa_resources (Íñigo Huguet) [2059994]
+- ath11k: remove unneeded flush_workqueue (Íñigo Huguet) [2059994]
+- iwlwifi: bump FW API to 72 for AX devices (Íñigo Huguet) [2059994]
+- iwlwifi: acpi: move ppag code from mvm to fw/acpi (Íñigo Huguet) [2059994]
+- iwlwifi: dbg: check trigger data before access (Íñigo Huguet) [2059994]
+- iwlwifi: dbg: in sync mode don't call schedule (Íñigo Huguet) [2059994]
+- iwlwifi: use 4k queue size for Bz A-step (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: fix SW error MSI-X mapping (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: dump IMR DRAM only for HW and FW error (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add support for IMR based on platform (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: disable IMR DRAM region if IMR is disabled (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: remove cipher scheme support (Íñigo Huguet) [2059994]
+- iwlwifi: Configure FW debug preset via module param. (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add a flag to reduce power command. (Íñigo Huguet) [2059994]
+- iwlwifi: bump FW API to 71 for AX devices (Íñigo Huguet) [2059994]
+- ath9k: make array voice_priority static const (Íñigo Huguet) [2059994]
+- rtw89: declare HE capabilities in 6G band (Íñigo Huguet) [2059994]
+- rtw89: fix HE PHY bandwidth capability (Íñigo Huguet) [2059994]
+- rtw89: add tx_wake notify for low ps mode (Íñigo Huguet) [2059994]
+- rtw89: 8852a: add ieee80211_ops::hw_scan (Íñigo Huguet) [2059994]
+- Revert "ath: add support for special 0x0 regulatory domain" (Íñigo Huguet) [2059994]
+- rtw89: get channel parameters of 160MHz bandwidth (Íñigo Huguet) [2059994]
+- mt76: fix dfs state issue with 160 MHz channels (Íñigo Huguet) [2059994]
+- mt76: mt7915: simplify conditional (Íñigo Huguet) [2059994]
+- mt76: mt7921: fix injected MPDU transmission to not use HW A-MSDU (Íñigo Huguet) [2059994]
+- mt76: mt7915e: Enable thermal management by default (Íñigo Huguet) [2059994]
+- mt76: mt7915e: Add a hwmon attribute to get the actual throttle state. (Íñigo Huguet) [2059994]
+- mt76: mt7915e: Fix degraded performance after temporary overheat (Íñigo Huguet) [2059994]
+- mt76: improve signal strength reporting (Íñigo Huguet) [2059994]
+- mt76: mt7915: use min_t() to make code cleaner (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix the muru tlv issue (Íñigo Huguet) [2059994]
+- mt76: mt7915: check band idx for bcc event (Íñigo Huguet) [2059994]
+- mt76: mt7615: Fix assigning negative values to unsigned variable (Íñigo Huguet) [2059994]
+- mt76: connac: adjust wlan_idx size from u8 to u16 (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix endianness warnings in mt7915_mac_tx_free() (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix endianness warnings in mt7915_debugfs_rx_fw_monitor (Íñigo Huguet) [2059994]
+- mt76: mt7615: fix compiler warning on frame size (Íñigo Huguet) [2059994]
+- mt76: mt7915: initialize smps mode in mt7915_mcu_sta_rate_ctrl_tlv() (Íñigo Huguet) [2059994]
+- mt76: mt7915: introduce band_idx in mt7915_phy (Íñigo Huguet) [2059994]
+- mt76: mt7915: add support for MT7986 (Íñigo Huguet) [2059994]
+- ath10k: fix pointer arithmetic error in trace call (Íñigo Huguet) [2059994]
+- ath11k: add dbring debug support (Íñigo Huguet) [2059994]
+- ath11k: translate HE status to radiotap format (Íñigo Huguet) [2059994]
+- ath11k: decode HE status tlv (Íñigo Huguet) [2059994]
+- ath11k: switch to using ieee80211_tx_status_ext() (Íñigo Huguet) [2059994]
+- mt76: mt7921s: fix missing fc type/sub-type for 802.11 pkts (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix potential memory leak of fw monitor packets (Íñigo Huguet) [2059994]
+- mt76: mt7915: Fix channel state update error issue (Íñigo Huguet) [2059994]
+- mt76: fix endianness errors in reverse_frag0_hdr_trans (Íñigo Huguet) [2059994]
+- mt76: mt7615: introduce SAR support (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU (Íñigo Huguet) [2059994]
+- rtw88: change rtw_info() to proper message level (Íñigo Huguet) [2059994]
+- rtw89: Limit the CFO boundaries of x'tal value (Íñigo Huguet) [2059994]
+- rtw89: phy: handle txpwr lmt/lmt_ru of 160M bandwidth (Íñigo Huguet) [2059994]
+- rtw89: phy: handle txpwr lmt/lmt_ru of 6G band (Íñigo Huguet) [2059994]
+- ath11k: Fix frames flush failure caused by deadlock (Íñigo Huguet) [2059994]
+- ath11k: Handle failure in qmi firmware ready (Íñigo Huguet) [2059994]
+- ath11k: Invalidate cached reo ring entry before accessing it (Íñigo Huguet) [2059994]
+- ath: Replace zero-length arrays with flexible-array members (Íñigo Huguet) [2059994]
+- ath11k: Replace zero-length arrays with flexible-array members (Íñigo Huguet) [2059994]
+- ath10k: Replace zero-length array with flexible-array member (Íñigo Huguet) [2059994]
+- ath9k: use hw_random API instead of directly dumping into random.c (Íñigo Huguet) [2059994]
+- ath11k: configure RDDM size to mhi for recovery by firmware (Íñigo Huguet) [2059994]
+- ath11k: fix invalid m3 buffer address (Íñigo Huguet) [2059994]
+- ath11k: add ath11k_qmi_free_resource() for recovery (Íñigo Huguet) [2059994]
+- rtw89: core.h: Replace zero-length array with flexible-array member (Íñigo Huguet) [2059994]
+- brcmfmac: Replace zero-length arrays with flexible-array members (Íñigo Huguet) [2059994]
+- rtw89: fix RCU usage in rtw89_core_txq_push() (Íñigo Huguet) [2059994]
+- rtw88: coex: Update rtl8822c COEX version to 22020720 (Íñigo Huguet) [2059994]
+- rtw88: coex: Add C2H/H2C handshake with BT mailbox for asking HID Info (Íñigo Huguet) [2059994]
+- rtw88: coex: Add WLAN MIMO power saving for Bluetooth gaming controller (Íñigo Huguet) [2059994]
+- rtw88: coex: update BT PTA counter regularly (Íñigo Huguet) [2059994]
+- rtw88: coex: Improve WLAN throughput when HFP COEX (Íñigo Huguet) [2059994]
+- rtw88: 8822ce: add support for TX/RX 1ss mode (Íñigo Huguet) [2059994]
+- iwlwifi: dbg_ini: Split memcpy() to avoid multi-field write (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Fix an error code in iwl_mvm_up() (Íñigo Huguet) [2059994]
+- iwlwifi: Fix -EIO error code that is never returned (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: rfi: use kmemdup() to replace kzalloc + memcpy (Íñigo Huguet) [2059994]
+- iwlwifi: Fix syntax errors in comments (Íñigo Huguet) [2059994]
+- iwlwifi: dvm: use struct_size over open coded arithmetic (Íñigo Huguet) [2059994]
+- iwlwifi/fw: use struct_size over open coded arithmetic (Íñigo Huguet) [2059994]
+- iwlwifi: Make use of the helper macro LIST_HEAD() (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: fix off by one in iwl_mvm_stat_iterator_all_macs() (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: send hcmd to fw after dump collection completes. (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: move only to an enabled channel (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: update BAID allocation command again (Íñigo Huguet) [2059994]
+- iwlwifi: api: remove ttl field from TX command (Íñigo Huguet) [2059994]
+- iwlwifi: support new queue allocation command (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: support dump policy for the dump size (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: iwlwifi: fix device id 7F70 struct (Íñigo Huguet) [2059994]
+- iwlwifi: tlc: Add logs in rs_fw_rate_init func to print TLC configuration (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: remove iwl_mvm_disable_txq() flags argument (Íñigo Huguet) [2059994]
+- iwlwifi: remove command ID argument from queue allocation (Íñigo Huguet) [2059994]
+- iwlwifi: make iwl_txq_dyn_alloc_dma() return the txq (Íñigo Huguet) [2059994]
+- iwlwifi: fix small doc mistake for iwl_fw_ini_addr_val (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add additional info for boot info failures (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: always remove the session protection after association (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: make iwl_mvm_reconfig_scd() static (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: refactor setting PPE thresholds in STA_HE_CTXT_CMD (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Disable WiFi bands selectively with BIOS (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add additional info for boot info failures (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: don't send BAID removal to the FW during hw_restart (Íñigo Huguet) [2059994]
+- iwlwifi: don't dump_stack() when we get an unexpected interrupt (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: rfi: handle deactivation notification (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Consider P2P GO operation during scan (Íñigo Huguet) [2059994]
+- iwlwifi: bump FW API to 70 for AX devices (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Unify the scan iteration functions (Íñigo Huguet) [2059994]
+- iwlwifi: mei: use C99 initializer for device IDs (Íñigo Huguet) [2059994]
+- iwlwifi: debugfs: remove useless double condition (Íñigo Huguet) [2059994]
+- iwlwifi: remove unused macros (Íñigo Huguet) [2059994]
+- iwlwifi: eeprom: clean up macros (Íñigo Huguet) [2059994]
+- iwlwifi: drv: load tlv debug data earlier (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: Adapt rx queue write pointer for Bz family (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: adjust to Bz completion descriptor (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Passively scan non PSC channels only when requested so (Íñigo Huguet) [2059994]
+- iwlwifi: scan: Modify return value of a function (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: Avoid using dram data if allocation failed (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Correctly set fragmented EBS (Íñigo Huguet) [2059994]
+- iwlwifi: nvm: Correct HE capability (Íñigo Huguet) [2059994]
+- iwlwifi: mei: avoid -Wpointer-arith and -Wcast-qual warnings (Íñigo Huguet) [2059994]
+- iwlwifi: make some functions friendly to sparse (Íñigo Huguet) [2059994]
+- iwlwifi: avoid variable shadowing (Íñigo Huguet) [2059994]
+- iwlwifi: remove unused DC2DC_CONFIG_CMD definitions (Íñigo Huguet) [2059994]
+- iwlwifi: dbg-tlv: clean up iwl_dbg_tlv_update_drams() (Íñigo Huguet) [2059994]
+- iwlwifi: fw: make dump_start callback void (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: make sure iwl_rx_packet_payload_len() will not underflow (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: use debug print instead of WARN_ON() (Íñigo Huguet) [2059994]
+- iwlwifi: read and print OTP minor version (Íñigo Huguet) [2059994]
+- iwlwifi: add support for BZ-U and BZ-L HW (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add support for CT-KILL notification version 2 (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: remove DBGI_SRAM address reset writing (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: support v3 of station HE context command (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: add IMR DRAM dump support (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: fix DBGC allocation flow (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: add support for MS devices (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: align locking in D3 test debugfs (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: don't iterate unadded vifs when handling FW SMPS req (Íñigo Huguet) [2059994]
+- iwlwifi: advertise support for HE - DCM BPSK RX/TX (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: only enable HE DCM if we also support TX (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: fix DBGI_SRAM ini dump header. (Íñigo Huguet) [2059994]
+- iwlwifi: dbg: add infra for tracking free buffer size (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: starting from 22000 we have 32 Rx AMPDU sessions (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: support new BAID allocation command (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: refactor iwl_mvm_sta_rx_agg() (Íñigo Huguet) [2059994]
+- iwlwifi: cfg: add support for 1K BA queue (Íñigo Huguet) [2059994]
+- iwlwifi: avoid void pointer arithmetic (Íñigo Huguet) [2059994]
+- iwlwifi: fix various more -Wcast-qual warnings (Íñigo Huguet) [2059994]
+- iwlwifi: propagate (const) type qualifier (Íñigo Huguet) [2059994]
+- iwlwifi: de-const properly where needed (Íñigo Huguet) [2059994]
+- iwlwifi: make iwl_fw_lookup_cmd_ver() take a cmd_id (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: fw: clean up hcmd struct creation (Íñigo Huguet) [2059994]
+- iwlwifi: prefer WIDE_ID() over iwl_cmd_id() (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: allow enabling UHB TAS in the USA via ACPI setting (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: offload channel switch timing to FW (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Don't call iwl_mvm_sta_from_mac80211() with NULL sta (Íñigo Huguet) [2059994]
+- mac80211_hwsim: Advertise support for EHT capabilities (Íñigo Huguet) [2059994]
+- mac80211: parse AddBA request with extended AddBA element (Íñigo Huguet) [2059994]
+- mac80211: calculate max RX NSS for EHT mode (Íñigo Huguet) [2059994]
+- mac80211: Add support for storing station EHT capabilities (Íñigo Huguet) [2059994]
+- mac80211: Handle station association response with EHT (Íñigo Huguet) [2059994]
+- mac80211: Add EHT capabilities to association/probe request (Íñigo Huguet) [2059994]
+- mac80211: Add initial support for EHT and 320 MHz channels (Íñigo Huguet) [2059994]
+- mac80211: Support parsing EHT elements (Íñigo Huguet) [2059994]
+- cfg80211: Support configuration of station EHT capabilities (Íñigo Huguet) [2059994]
+- nl80211: fix NL80211_HE_MAX_CAPABILITY_LEN (Íñigo Huguet) [2059994]
+- cfg80211: add NO-EHT flag to regulatory (Íñigo Huguet) [2059994]
+- nl80211: add support for 320MHz channel limitation (Íñigo Huguet) [2059994]
+- nl80211: add EHT MCS support (Íñigo Huguet) [2059994]
+- cfg80211: Add support for EHT 320 MHz channel width (Íñigo Huguet) [2059994]
+- cfg80211: Add data structures to capture EHT capabilities (Íñigo Huguet) [2059994]
+- ieee80211: add EHT 1K aggregation definitions (Íñigo Huguet) [2059994]
+- ieee80211: Add EHT (802.11be) definitions (Íñigo Huguet) [2059994]
+- mac80211_hwsim: Add custom regulatory for 6GHz (Íñigo Huguet) [2059994]
+- mac80211_hwsim: don't shadow a global variable (Íñigo Huguet) [2059994]
+- mac80211_hwsim: check TX and STA bandwidth (Íñigo Huguet) [2059994]
+- nl80211: accept only HE capability elements with valid size (Íñigo Huguet) [2059994]
+- mac80211: parse only HE capability elements with valid size (Íñigo Huguet) [2059994]
+- ieee80211: add helper to check HE capability element size (Íñigo Huguet) [2059994]
+- nl80211: use RCU to read regdom in reg get/dump (Íñigo Huguet) [2059994]
+- mac80211_hwsim: Add debugfs to control rx status RSSI (Íñigo Huguet) [2059994]
+- ieee80211: use tab to indent struct ieee80211_neighbor_ap_info (Íñigo Huguet) [2059994]
+- rtw89: handle TX/RX 160M bandwidth (Íñigo Huguet) [2059994]
+- rtw89: declare if chip support 160M bandwidth (Íñigo Huguet) [2059994]
+- rtw89: add 6G support to rate adaptive mechanism (Íñigo Huguet) [2059994]
+- rtw89: extend subband for 6G band (Íñigo Huguet) [2059994]
+- rtw89: refine naming of rfk helpers with prefix (Íñigo Huguet) [2059994]
+- rtw89: make rfk helpers common across chips (Íñigo Huguet) [2059994]
+- brcmfmac: Add BCM43454/6 support (Íñigo Huguet) [2059994]
+- ath11k: fix destination monitor ring out of sync (Íñigo Huguet) [2059994]
+- ath11k: fix radar detection in 160 Mhz (Íñigo Huguet) [2059994]
+- ath11k: fix WARN_ON during ath11k_mac_update_vif_chan (Íñigo Huguet) [2059994]
+- ath11k: fix uninitialized rate_idx in ath11k_dp_tx_update_txcompl() (Íñigo Huguet) [2059994]
+- brcmfmac: of: remove redundant variable len (Íñigo Huguet) [2059994]
+- brcmfmac: p2p: Replace one-element arrays with flexible-array members (Íñigo Huguet) [2059994]
+- rtw89: coex: set EN bit to PLT register (Íñigo Huguet) [2059994]
+- rtw89: recover rates of rate adaptive mechanism (Íñigo Huguet) [2059994]
+- rtw88: recover rates of rate adaptive mechanism (Íñigo Huguet) [2059994]
+- rtw89: declare AP mode support (Íñigo Huguet) [2059994]
+- rtw89: debug: add stations entry to show ID assignment (Íñigo Huguet) [2059994]
+- rtw89: implement ieee80211_ops::start_ap and stop_ap (Íñigo Huguet) [2059994]
+- rtw89: maintain assoc/disassoc STA states of firmware and hardware (Íñigo Huguet) [2059994]
+- rtw89: only STA mode change vif_type mapping dynamically (Íñigo Huguet) [2059994]
+- rtw89: add addr_cam field to sta to support AP mode (Íñigo Huguet) [2059994]
+- rtw89: extend role_maintain to support AP mode (Íñigo Huguet) [2059994]
+- rtw88: fix use after free in rtw_hw_scan_update_probe_req() (Íñigo Huguet) [2059994]
+- mac80211: Remove redundent assignment channel_type (Íñigo Huguet) [2059994]
+- mac80211: remove useless ieee80211_vif_is_mesh() check (Íñigo Huguet) [2059994]
+- mac80211: fix struct ieee80211_tx_info size (Íñigo Huguet) [2059994]
+- mac80211: mlme: validate peer HE supported rates (Íñigo Huguet) [2059994]
+- mac80211: remove unused macros (Íñigo Huguet) [2059994]
+- cfg80211: pmsr: remove useless ifdef guards (Íñigo Huguet) [2059994]
+- mac80211: airtime: avoid variable shadowing (Íñigo Huguet) [2059994]
+- mac80211: mlme: add documentation from spec to code (Íñigo Huguet) [2059994]
+- mac80211: vht: use HE macros for parsing HE capabilities (Íñigo Huguet) [2059994]
+- ieee80211: radiotap: fix -Wcast-qual warnings (Íñigo Huguet) [2059994]
+- cfg80211: fix -Wcast-qual warnings (Íñigo Huguet) [2059994]
+- ieee80211: fix -Wcast-qual warnings (Íñigo Huguet) [2059994]
+- cfg80211: don't add non transmitted BSS to 6GHz scanned channels (Íñigo Huguet) [2059994]
+- ieee80211: fix HE SPR size calculation (Íñigo Huguet) [2059994]
+- cfg80211/mac80211: assume CHECKSUM_COMPLETE includes SNAP (Íñigo Huguet) [2059994]
+- mac80211: consider RX NSS in UHB connection (Íñigo Huguet) [2059994]
+- mac80211: limit bandwidth in HE capabilities (Íñigo Huguet) [2059994]
+- mt76: redefine mt76_for_each_q_rx to adapt mt7986 changes (Íñigo Huguet) [2059994]
+- mt76: dma: initialize skip_unmap in mt76_dma_rx_fill (Íñigo Huguet) [2059994]
+- mt76: do not always copy ethhdr in reverse_frag0_hdr_trans (Íñigo Huguet) [2059994]
+- mt76: mt76x02: use mt76_phy_dfs_state to determine radar detector state (Íñigo Huguet) [2059994]
+- mt76: mt7615: fix/rewrite the dfs state handling logic (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix/rewrite the dfs state handling logic (Íñigo Huguet) [2059994]
+- mt76: mt76x02: improve tx hang detection (Íñigo Huguet) [2059994]
+- mt76x02: improve mac error check/reset reliability (Íñigo Huguet) [2059994]
+- mt76: mt7921s: run sleep mode by default (Íñigo Huguet) [2059994]
+- mt76: sdio: honor the largest Tx buffer the hardware can support (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix the nss setting in bitrates (Íñigo Huguet) [2059994]
+- mt76: mt7915: update max_mpdu_size in mt7915_mcu_sta_amsdu_tlv() (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix mcs_map in mt7915_mcu_set_sta_he_mcs() (Íñigo Huguet) [2059994]
+- mt76: mt7921s: fix a possible memory leak in mt7921_load_patch (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix possible memory leak in mt7915_mcu_add_sta (Íñigo Huguet) [2059994]
+- mt76: stop the radar detector after leaving dfs channel (Íñigo Huguet) [2059994]
+- mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update (Íñigo Huguet) [2059994]
+- mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update (Íñigo Huguet) [2059994]
+- mt76: mt7663s: flush runtime-pm queue after waking up the device (Íñigo Huguet) [2059994]
+- mt76: mt7615: add support for LG LGSBWAC02 (MT7663BUN) (Íñigo Huguet) [2059994]
+- mt76: mt7921: remove duplicated code in mt7921_mac_decode_he_radiotap (Íñigo Huguet) [2059994]
+- mt76: mt7915: add missing DATA4_TB_SPTL_REUSE1 to mt7915_mac_decode_he_radiotap (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_lmac_mapping in mt76-connac module (Íñigo Huguet) [2059994]
+- mt76: mt7915: enable radar background detection (Íñigo Huguet) [2059994]
+- mt76: mt7915: report radar pattern if detected by rdd2 (Íñigo Huguet) [2059994]
+- mt76: mt7915: introduce rdd_monitor debugfs node (Íñigo Huguet) [2059994]
+- mt76: mt7915: enable radar trigger on rdd2 (Íñigo Huguet) [2059994]
+- mt76: mt7915: introduce mt7915_set_radar_background routine (Íñigo Huguet) [2059994]
+- mt76: mt7915: set bssinfo/starec command when adding interface (Íñigo Huguet) [2059994]
+- mt76: mt7921: toggle runtime-pm adding a monitor vif (Íñigo Huguet) [2059994]
+- mt76: mt7921: fix endianness issues in mt7921_mcu_set_tx() (Íñigo Huguet) [2059994]
+- mt76: sdio: disable interrupt in mt76s_sdio_irq (Íñigo Huguet) [2059994]
+- mt76: mt7921: fix crash when startup fails. (Íñigo Huguet) [2059994]
+- mt76: mt7921s: fix mt7921s_mcu_[fw|drv]_pmctrl (Íñigo Huguet) [2059994]
+- mt76: mt7921: fix ht mcs in mt7921_mac_add_txs_skb() (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix ht mcs in mt7915_mac_add_txs_skb() (Íñigo Huguet) [2059994]
+- mt76: mt7615: fix a leftover race in runtime-pm (Íñigo Huguet) [2059994]
+- mt76: mt7921: fix a leftover race in runtime-pm (Íñigo Huguet) [2059994]
+- mt76: mt7921: do not always disable fw runtime-pm (Íñigo Huguet) [2059994]
+- mt76: mt7915: add support for passing chip/firmware debug data to user space (Íñigo Huguet) [2059994]
+- mt76: mt7615e: process txfree and txstatus without allocating skbs (Íñigo Huguet) [2059994]
+- mt76: mt7915: update bss_info with cipher after setting the group key (Íñigo Huguet) [2059994]
+- mt76: mt7615: update bss_info with cipher after setting the group key (Íñigo Huguet) [2059994]
+- mt76: connac: add support for passing the cipher field in bss_info (Íñigo Huguet) [2059994]
+- mt76: mt7921e: process txfree and txstatus without allocating skbs (Íñigo Huguet) [2059994]
+- mt76: mt7615: fix a possible race enabling/disabling runtime-pm (Íñigo Huguet) [2059994]
+- mt76: mt7921: set EDCA parameters with the MCU CE command (Íñigo Huguet) [2059994]
+- mt76: mt76_connac: fix MCU_CE_CMD_SET_ROC definition error (Íñigo Huguet) [2059994]
+- mt76: mt7921: forbid the doze mode when coredump is in progress (Íñigo Huguet) [2059994]
+- mt76: mt7921e: make dev->fw_assert usage consistent (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_rdd_cmd in mt76-connac module (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_set_rts_thresh (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_gen_dl_mode in mt76-connac module (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_init_download (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_patch_sem_ctrl/mt76_connac_mcu_start_patch (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_restart in common module (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_start_firmware (Íñigo Huguet) [2059994]
+- mt76: mt7921: get rid of mt7921_mcu_get_eeprom (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_set_pm in connac module (Íñigo Huguet) [2059994]
+- mt76: connac: introduce is_connac_v1 utility routine (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_wtbl_update_hdr_trans in connac module (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_wtbl_hdr_trans_tlv (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_wtbl_ht_tlv (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_wtbl_smps_tlv (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_sta_uapsd (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_sta_basic_tlv (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_wtbl_generic_tlv (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_sta_ba (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_wtbl_ba_tlv (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_sta_ba_tlv (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_bss_basic_tlv in connac module (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_bss_ext_tlv in connac module (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_bss_omac_tlv in connac module (Íñigo Huguet) [2059994]
+- mt76: mt7915: remove duplicated defs in mcu.h (Íñigo Huguet) [2059994]
+- mt76: mt7915: move pci specific code back to pci.c (Íñigo Huguet) [2059994]
+- mt76: mt7921s: update mt7921s_wfsys_reset sequence (Íñigo Huguet) [2059994]
+- mt76: mt7921s: clear MT76_STATE_MCU_RUNNING immediately after reset (Íñigo Huguet) [2059994]
+- mt76: sdio: lock sdio when it is needed (Íñigo Huguet) [2059994]
+- mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv (Íñigo Huguet) [2059994]
+- mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta mode (Íñigo Huguet) [2059994]
+- mt76: make mt76_sar_capa static (Íñigo Huguet) [2059994]
+- mt76: mt7915: add device id for mt7916 (Íñigo Huguet) [2059994]
+- mt76: set wlan_idx_hi on mt7916 (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_add_key in connac module (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_get_phy utilities (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_chan_bw in common code (Íñigo Huguet) [2059994]
+- mt76: connac: move mt76_connac_mcu_get_cipher in common code (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_add_tlv routine (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_alloc_wtbl_req (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac_mcu_alloc_sta_req (Íñigo Huguet) [2059994]
+- mt76: connac: fix sta_rec_wtbl tag len (Íñigo Huguet) [2059994]
+- mt76: mt7915: add mt7916 calibrated data support (Íñigo Huguet) [2059994]
+- mt76: mt7915: update mt7915_chan_mib_offs for mt7916 (Íñigo Huguet) [2059994]
+- mt76: mt7915: update rx rate reporting for mt7916 (Íñigo Huguet) [2059994]
+- mt76: mt7915: add txfree event v3 (Íñigo Huguet) [2059994]
+- mt76: mt7915: enlarge wcid size to 544 (Íñigo Huguet) [2059994]
+- mt76: mt7915: rework eeprom.c to adapt mt7916 changes (Íñigo Huguet) [2059994]
+- mt76: mt7915: add firmware support for mt7916 (Íñigo Huguet) [2059994]
+- mt76: mt7915: rework dma.c to adapt mt7916 changes (Íñigo Huguet) [2059994]
+- mt76: add MT_RXQ_MAIN_WA for mt7916 (Íñigo Huguet) [2059994]
+- mt76: mt7915: refine register definition (Íñigo Huguet) [2059994]
+- mt76: mt7915: add mt7915_mmio_probe() as a common probing function (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix polling firmware-own status (Íñigo Huguet) [2059994]
+- brcmfmac: pcie: Read the console on init and shutdown (Íñigo Huguet) [2059994]
+- brcmfmac: fwil: Constify iovar name arguments (Íñigo Huguet) [2059994]
+- brcmfmac: of: Use devm_kstrdup for board_type & check for errors (Íñigo Huguet) [2059994]
+- brcmfmac: pcie: Fix crashes due to early IRQs (Íñigo Huguet) [2059994]
+- brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio (Íñigo Huguet) [2059994]
+- brcmfmac: pcie: Declare missing firmware files in pcie.c (Íñigo Huguet) [2059994]
+- brcmfmac: firmware: Allocate space for default boardrev in nvram (Íñigo Huguet) [2059994]
+- brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path (Íñigo Huguet) [2059994]
+- rtlwifi: remove redundant initialization of variable ul_encalgo (Íñigo Huguet) [2059994]
+- ray_cs: Check ioremap return value (Íñigo Huguet) [2059994]
+- ath11k: add debugfs for TWT debug calls (Íñigo Huguet) [2059994]
+- ath11k: add WMI calls to manually add/del/pause/resume TWT dialogs (Íñigo Huguet) [2059994]
+- ath11k: Add debugfs interface to configure firmware debug log level (Íñigo Huguet) [2059994]
+- rtw88: rtw8821c: enable rfe 6 devices (Íñigo Huguet) [2059994]
+- rtw88: fix memory overrun and memory leak during hw_scan (Íñigo Huguet) [2059994]
+- rtw88: fix idle mode flow for hw scan (Íñigo Huguet) [2059994]
+- rtw88: check for validity before using a pointer (Íñigo Huguet) [2059994]
+- ath11k: mhi: use mhi_sync_power_up() (Íñigo Huguet) [2059994]
+- ath11k: pci: fix crash on suspend if board file is not found (Íñigo Huguet) [2059994]
+- ath11k: Fix missing rx_desc_get_ldpc_support in wcn6855_ops (Íñigo Huguet) [2059994]
+- ath11k: Fix uninitialized symbol 'rx_buf_sz' (Íñigo Huguet) [2059994]
+- ath11k: fix kernel panic during unload/load ath11k modules (Íñigo Huguet) [2059994]
+- ath11k: Rename ath11k_ahb_ext_irq_config (Íñigo Huguet) [2059994]
+- brcmfmac: add CYW43570 PCIE device (Íñigo Huguet) [2059994]
+- brcmfmac: use ISO3166 country code and 0 rev as fallback on some devices (Íñigo Huguet) [2059994]
+- rtw89: use pci_read/write_config instead of dbi read/write (Íñigo Huguet) [2059994]
+- rtw89: refine DIG feature to support 160M and CCK PD (Íñigo Huguet) [2059994]
+- rtw89: include subband type in channel params (Íñigo Huguet) [2059994]
+- rtw89: handle 6G band if supported by a chipset (Íñigo Huguet) [2059994]
+- rtw89: separate {init,deinit}_addr_cam functions (Íñigo Huguet) [2059994]
+- rtw89: set mac_id and port ID to TXWD (Íñigo Huguet) [2059994]
+- rtw89: send broadcast/multicast packets via HIQ if STAs are in sleep mode (Íñigo Huguet) [2059994]
+- rtw89: configure mac port HIQ registers (Íñigo Huguet) [2059994]
+- rtw89: rename vif_maintain to role_maintain (Íñigo Huguet) [2059994]
+- rtw89: extend firmware commands on states of sta_assoc and sta_disconnect (Íñigo Huguet) [2059994]
+- rtw89: allocate mac_id for each station in AP mode (Íñigo Huguet) [2059994]
+- rtw89: implement mac80211_ops::set_tim to indicate STA to receive packets (Íñigo Huguet) [2059994]
+- rtw89: add C2H handle of BCN_CNT (Íñigo Huguet) [2059994]
+- rtw89: download beacon content to firmware (Íñigo Huguet) [2059994]
+- rtw89: use hardware SSN to TX management frame (Íñigo Huguet) [2059994]
+- rtw89: configure rx_filter according to FIF_PROBE_REQ (Íñigo Huguet) [2059994]
+- rtw89: correct use of BA CAM (Íñigo Huguet) [2059994]
+- rtw89: encapsulate RX handlers to single function (Íñigo Huguet) [2059994]
+- rtw89: Add RX counters of VHT MCS-10/11 to debugfs (Íñigo Huguet) [2059994]
+- rtw89: remove duplicate definition of hardware port number (Íñigo Huguet) [2059994]
+- rtw89: extract modules by chipset (Íñigo Huguet) [2059994]
+- ath11k: avoid firmware crash when reg set for QCA6390/WCN6855 (Íñigo Huguet) [2059994]
+- ath11k: set WMI_PEER_40MHZ while peer assoc for 6 GHz (Íñigo Huguet) [2059994]
+- ath9k_htc: fix uninit value bugs (Íñigo Huguet) [2059994]
+- ath10k: abstract htt_rx_desc structure (Íñigo Huguet) [2059994]
+- ath9k: remove redundant status variable (Íñigo Huguet) [2059994]
+- ath11k: Reconfigure hardware rate for WCN6855 after vdev is started (Íñigo Huguet) [2059994]
+- ath: dfs_pattern_detector: Avoid open coded arithmetic in memory allocation (Íñigo Huguet) [2059994]
+- ath10k: Use platform_get_irq() to get the interrupt (Íñigo Huguet) [2059994]
+- ath11k: fix error code in ath11k_qmi_assign_target_mem_chunk() (Íñigo Huguet) [2059994]
+- ath11k: move function ath11k_dp_rx_process_mon_status (Íñigo Huguet) [2059994]
+- ath11k: enable RX PPDU stats in monitor co-exist mode (Íñigo Huguet) [2059994]
+- ath11k: free peer for station when disconnect from AP for QCA6390/WCN6855 (Íñigo Huguet) [2059994]
+- ath11k: add LDPC FEC type in 802.11 radiotap header (Íñigo Huguet) [2059994]
+- ath11k: Refactor the fallback routine when peer create fails (Íñigo Huguet) [2059994]
+- ath11k: fix workqueue not getting destroyed after rmmod (Íñigo Huguet) [2059994]
+- ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern (Íñigo Huguet) [2059994]
+- ath11k: add missing of_node_put() to avoid leak (Íñigo Huguet) [2059994]
+- rfkill: define rfill_soft_blocked() if !RFKILL (Íñigo Huguet) [2059994]
+- Revert "ath10k: drop beacon and probe response which leak from other channel" (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: return value for request_ownership (Íñigo Huguet) [2059994]
+- nl80211: Update bss channel on channel switch for P2P_CLIENT (Íñigo Huguet) [2059994]
+- iwlwifi: fix build error for IWLMEI (Íñigo Huguet) [2059994]
+- mac80211: treat some SAE auth steps as final (Íñigo Huguet) [2059994]
+- nl80211: Handle nla_memdup failures in handle_nan_filter (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: check debugfs_dir ptr before use (Íñigo Huguet) [2059994]
+- iwlwifi: don't advertise TWT support (Íñigo Huguet) [2059994]
+- mac80211: fix forwarded mesh frames AC & queue selection (Íñigo Huguet) [2059994]
+- mac80211: refuse aggregations sessions before authorized (Íñigo Huguet) [2059994]
+- mac80211: fix EAPoL rekey fail in 802.3 rx path (Íñigo Huguet) [2059994]
+- iwlwifi: fix use-after-free (Íñigo Huguet) [2059994]
+- bus: mhi: pci_generic: Add mru_default for Cinterion MV31-W (Íñigo Huguet) [2059994]
+- bus: mhi: pci_generic: Add mru_default for Foxconn SDX55 (Íñigo Huguet) [2059994]
+- cfg80211: fix race in netlink owner interface destruction (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: don't send SAR GEO command for 3160 devices (Íñigo Huguet) [2059994]
+- iwlwifi: remove deprecated broadcast filtering feature (Íñigo Huguet) [2059994]
+- iwlwifi: mei: report RFKILL upon register when needed (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: don't feed the hardware RFKILL into iwlmei (Íñigo Huguet) [2059994]
+- iwlwifi: mei: retry mapping the shared area (Íñigo Huguet) [2059994]
+- iwlwifi: mei: fix the pskb_may_pull check in ipv4 (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: gen2: fix locking when "HW not ready" (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: fix locking when "HW not ready" (Íñigo Huguet) [2059994]
+- iwlwifi: fix iwl_legacy_rate_to_fw_idx (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: fix condition which checks the version of rate_n_flags (Íñigo Huguet) [2059994]
+- mac80211_hwsim: initialize ieee80211_tx_info at hw_scan_work (Íñigo Huguet) [2059994]
+- mac80211_hwsim: report NOACK frames in tx_status (Íñigo Huguet) [2059994]
+- mac80211: mlme: check for null after calling kmemdup (Íñigo Huguet) [2059994]
+- brcmfmac: firmware: Fix crash in brcm_alt_fw_path (Íñigo Huguet) [2059994]
+- mac80211: use ieee80211_bss_get_elem() (Íñigo Huguet) [2059994]
+- nl80211: clarify comment for mesh PLINK_BLOCKED state (Íñigo Huguet) [2059994]
+- mac80211: Add stations iterator where the iterator function may sleep (Íñigo Huguet) [2059994]
+- mac80211: allow non-standard VHT MCS-10/11 (Íñigo Huguet) [2059994]
+- codel: remove unnecessary pkt_sched.h include (Íñigo Huguet) [2059994]
+- codel: remove unnecessary sock.h include (Íñigo Huguet) [2059994]
+- rtw88: don't consider deep PS mode when transmitting packet (Íñigo Huguet) [2059994]
+- ath11k: add support of firmware logging for WCN6855 (Íñigo Huguet) [2059994]
+- ath10k: replace strlcpy with strscpy (Íñigo Huguet) [2059994]
+- rtw88: support SAR via kernel common API (Íñigo Huguet) [2059994]
+- rtw88: 8822c: add ieee80211_ops::hw_scan (Íñigo Huguet) [2059994]
+- iwlwifi: mei: wait before mapping the shared area (Íñigo Huguet) [2059994]
+- iwlwifi: mei: clear the ownership when the driver goes down (Íñigo Huguet) [2059994]
+- iwlwifi: fw: fix some scan kernel-doc (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: remove card state notification code (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: drop too short packets silently (Íñigo Huguet) [2059994]
+- iwlwifi: return op_mode only in case the failure is from MEI (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: support Bz TX checksum offload (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add US/CA to TAS block list if OEM isn't allowed (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: correctly set schedule scan profiles (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: correctly set channel flags (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: always store the PPAG table as the latest version. (Íñigo Huguet) [2059994]
+- iwlwifi: bump FW API to 69 for AX devices (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: support TLV-based firmware reset (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: change old-SN drop threshold (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: don't trust hardware queue number (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: handle RX checksum on Bz devices (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: use a define for checksum flags mask (Íñigo Huguet) [2059994]
+- iwlwifi: remove module loading failure message (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: isolate offload assist (checksum) calculation (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add support for OCE scan (Íñigo Huguet) [2059994]
+- iwlwifi: dump RCM error tables (Íñigo Huguet) [2059994]
+- iwlwifi: dump both TCM error tables if present (Íñigo Huguet) [2059994]
+- iwlwifi: dump CSR scratch from outer function (Íñigo Huguet) [2059994]
+- iwlwifi: parse error tables from debug TLVs (Íñigo Huguet) [2059994]
+- iwlwifi: recognize missing PNVM data and then log filename (Íñigo Huguet) [2059994]
+- iwlwifi: rs: add support for TLC config command ver 4 (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: rfi: update rfi table (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Add list of OEMs allowed to use TAS (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: support revision 1 of WTAS table (Íñigo Huguet) [2059994]
+- iwlwifi: fw: remove dead error log code (Íñigo Huguet) [2059994]
+- iwlwifi: do not use __unused as variable name (Íñigo Huguet) [2059994]
+- iwlwifi: iwl-eeprom-parse: mostly dvm only (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: clean up indenting in iwl_mvm_tlc_update_notif() (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: fix a stray tab (Íñigo Huguet) [2059994]
+- ath11k: add regdb.bin download for regdb offload (Íñigo Huguet) [2059994]
+- rtl8xxxu: Improve the A-MPDU retransmission rate with RTS/CTS protection (Íñigo Huguet) [2059994]
+- rtw88: don't check CRC of VHT-SIG-B in 802.11ac signal (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: fix imbalanced locking in iwl_mvm_start_get_nvm() (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add dbg_time_point to debugfs (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add missing min_size to kernel-doc (Íñigo Huguet) [2059994]
+- iwlwifi: mei: fix W=1 warnings (Íñigo Huguet) [2059994]
+- ath11k: add support for hardware rfkill for QCA6390 (Íñigo Huguet) [2059994]
+- ath11k: report tx bitrate for iw wlan station dump (Íñigo Huguet) [2059994]
+- ath11k: fix warning of RCU usage for ath11k_mac_get_arvif_by_vdev_id() (Íñigo Huguet) [2059994]
+- ath11k: add signal report to mac80211 for QCA6390 and WCN6855 (Íñigo Huguet) [2059994]
+- ath11k: report rssi of each chain to mac80211 for QCA6390/WCN6855 (Íñigo Huguet) [2059994]
+- cfg80211: Enable regulatory enforcement checks for drivers supporting mesh iface (Íñigo Huguet) [2059994]
+- rfkill: allow to get the software rfkill state (Íñigo Huguet) [2059994]
+- cfg80211: refactor cfg80211_get_ies_channel_number() (Íñigo Huguet) [2059994]
+- nl82011: clarify interface combinations wrt. channels (Íñigo Huguet) [2059994]
+- nl80211: Add support to offload SA Query procedures for AP SME device (Íñigo Huguet) [2059994]
+- nl80211: Add support to set AP settings flags with single attribute (Íñigo Huguet) [2059994]
+- mac80211: add more HT/VHT/HE state logging (Íñigo Huguet) [2059994]
+- cfg80211: Use the HE operation IE to determine a 6GHz BSS channel (Íñigo Huguet) [2059994]
+- cfg80211: rename offchannel_chain structs to background_chain to avoid confusion with ETSI standard (Íñigo Huguet) [2059994]
+- mac80211: Notify cfg80211 about association comeback (Íñigo Huguet) [2059994]
+- cfg80211: Add support for notifying association comeback (Íñigo Huguet) [2059994]
+- mac80211: introduce channel switch disconnect function (Íñigo Huguet) [2059994]
+- cfg80211: Fix order of enum nl80211_band_iftype_attr documentation (Íñigo Huguet) [2059994]
+- cfg80211: simplify cfg80211_chandef_valid() (Íñigo Huguet) [2059994]
+- mac80211: Remove a couple of obsolete TODO (Íñigo Huguet) [2059994]
+- mac80211: use coarse boottime for airtime fairness code (Íñigo Huguet) [2059994]
+- mt76: mt7921s: fix cmd timeout in throughput test (Íñigo Huguet) [2059994]
+- mt76: mt7921s: fix suspend error with enlarging mcu timeout value (Íñigo Huguet) [2059994]
+- mt76: mt7921s: make pm->suspended usage consistent (Íñigo Huguet) [2059994]
+- mt76: mt7921: clear pm->suspended in mt7921_mac_reset_work (Íñigo Huguet) [2059994]
+- mt76: connac: rely on le16_add_cpu in mt76_connac_mcu_add_nested_tlv (Íñigo Huguet) [2059994]
+- mt76: mt7921: remove dead definitions (Íñigo Huguet) [2059994]
+- mt76: mt7915: add mu-mimo and ofdma debugfs knobs (Íñigo Huguet) [2059994]
+- mt76: mt7915: introduce mt76_vif in mt7915_vif (Íñigo Huguet) [2059994]
+- mt76: mt7921: reduce log severity levels for informative messages (Íñigo Huguet) [2059994]
+- mt76: mt7915: rely on mt76_connac definitions (Íñigo Huguet) [2059994]
+- mt76: connac: rely on MCU_CMD macro (Íñigo Huguet) [2059994]
+- mt76: connac: introduce MCU_CE_CMD macro (Íñigo Huguet) [2059994]
+- mt76: connac: introduce MCU_UNI_CMD macro (Íñigo Huguet) [2059994]
+- mt76: connac: remove MCU_FW_PREFIX bit (Íñigo Huguet) [2059994]
+- mt76: connac: align MCU_EXT definitions with 7915 driver (Íñigo Huguet) [2059994]
+- mt76: connac: introduce MCU_EXT macros (Íñigo Huguet) [2059994]
+- mt76: mt7615: in debugfs queue stats, skip wmm index 3 on mt7663 (Íñigo Huguet) [2059994]
+- mt76: mt7915: process txfree and txstatus without allocating skbs (Íñigo Huguet) [2059994]
+- mt76: allow drivers to drop rx packets early (Íñigo Huguet) [2059994]
+- mt76: mt7663: disable 4addr capability (Íñigo Huguet) [2059994]
+- mt76: only access ieee80211_hdr after mt76_insert_ccmp_hdr (Íñigo Huguet) [2059994]
+- mt76: move sar_capa configuration in common code (Íñigo Huguet) [2059994]
+- mt76: mt7921s: fix possible kernel crash due to invalid Rx count (Íñigo Huguet) [2059994]
+- mt76: mt7921s: fix bus hang with wrong privilege (Íñigo Huguet) [2059994]
+- mt76: eeprom: tolerate corrected bit-flips (Íñigo Huguet) [2059994]
+- mt76: mt7603: improve reliability of tx powersave filtering (Íñigo Huguet) [2059994]
+- mt76: clear sta powersave flag after notifying driver (Íñigo Huguet) [2059994]
+- mt76: mt7915: introduce SAR support (Íñigo Huguet) [2059994]
+- mt76: mt7603: introduce SAR support (Íñigo Huguet) [2059994]
+- mt76: mt7915: improve wmm index allocation (Íñigo Huguet) [2059994]
+- mt76: mt7615: improve wmm index allocation (Íñigo Huguet) [2059994]
+- mt76: mt7921s: fix the device cannot sleep deeply in suspend (Íñigo Huguet) [2059994]
+- mt76: mt7615: fix decap offload corner case with 4-addr VLAN frames (Íñigo Huguet) [2059994]
+- mt76: mt7915: fix decap offload corner case with 4-addr VLAN frames (Íñigo Huguet) [2059994]
+- mt76: mt76x02: introduce SAR support (Íñigo Huguet) [2059994]
+- mt76: move sar utilities to mt76-core module (Íñigo Huguet) [2059994]
+- mt76: mt7921: honor mt76_connac_mcu_set_rate_txpower return value in mt7921_config (Íñigo Huguet) [2059994]
+- mt76: do not pass the received frame with decryption error (Íñigo Huguet) [2059994]
+- mt76: connac: remove PHY_MODE_AX_6G configuration in mt76_connac_get_phy_mode (Íñigo Huguet) [2059994]
+- mt76: mt7615: remove dead code in get_omac_idx (Íñigo Huguet) [2059994]
+- mt76: mt7921: introduce 160 MHz channel bandwidth support (Íñigo Huguet) [2059994]
+- mt76: mt7921: add support for PCIe ID 0x0608/0x0616 (Íñigo Huguet) [2059994]
+- mt76: testmode: add support to set MAC (Íñigo Huguet) [2059994]
+- mt76: mt7915: add default calibrated data support (Íñigo Huguet) [2059994]
+- mt76: only set rx radiotap flag from within decoder functions (Íñigo Huguet) [2059994]
+- mt76: reverse the first fragmented frame to 802.11 (Íñigo Huguet) [2059994]
+- bus: mhi: pci_generic: Introduce Sierra EM919X support (Íñigo Huguet) [2059994]
+- bus: mhi: core: Add an API for auto queueing buffers for DL channel (Íñigo Huguet) [2059994]
+- bus: mhi: pci_generic: Simplify code and axe the use of a deprecated API (Íñigo Huguet) [2059994]
+- bus: mhi: core: Use macros for execution environment features (Íñigo Huguet) [2059994]
+- bus: mhi: pci_generic: Add new device ID support for T99W175 (Íñigo Huguet) [2059994]
+- ath11k: Use reserved host DDR addresses from DT for PCI devices (Íñigo Huguet) [2059994]
+- ath11k: Change qcn9074 fw to operate in mode-2 (Íñigo Huguet) [2059994]
+- ath11k: add ab to TARGET_NUM_VDEVS & co (Íñigo Huguet) [2059994]
+- brcmfmac: Fix incorrect type assignments for keep-alive (Íñigo Huguet) [2059994]
+- ath11k: Avoid false DEADLOCK warning reported by lockdep (Íñigo Huguet) [2059994]
+- ath11k: set DTIM policy to stick mode for station interface (Íñigo Huguet) [2059994]
+- ath11k: support MAC address randomization in scan (Íñigo Huguet) [2059994]
+- ath10k: wmi: remove array of flexible structures (Íñigo Huguet) [2059994]
+- ath10k: htt: remove array of flexible structures (Íñigo Huguet) [2059994]
+- ath10k: drop beacon and probe response which leak from other channel (Íñigo Huguet) [2059994]
+- ath11k: Process full monitor mode rx support (Íñigo Huguet) [2059994]
+- ath11k: add software monitor ring descriptor for full monitor (Íñigo Huguet) [2059994]
+- ath11k: Add htt cmd to enable full monitor mode (Íñigo Huguet) [2059994]
+- ath11k: enable IEEE80211_HW_SINGLE_SCAN_ON_ALL_BANDS for WCN6855 (Íñigo Huguet) [2059994]
+- rtw88: refine tx_pwr_tbl debugfs to show channel and bandwidth (Íñigo Huguet) [2059994]
+- rtw88: add debugfs to fix tx rate (Íñigo Huguet) [2059994]
+- ath: regdom: extend South Korea regulatory domain support (Íñigo Huguet) [2059994]
+- ath11k: add wait operation for tx management packets for flush from mac80211 (Íñigo Huguet) [2059994]
+- ath11k: add 11d scan offload support (Íñigo Huguet) [2059994]
+- ath11k: add configure country code for QCA6390 and WCN6855 (Íñigo Huguet) [2059994]
+- ath11k: avoid deadlock by change ieee80211_queue_work for regd_update_work (Íñigo Huguet) [2059994]
+- iwlwifi: work around reverse dependency on MEI (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: optionally suppress assert log (Íñigo Huguet) [2059994]
+- iwlwifi: fw: correctly detect HW-SMEM region subtype (Íñigo Huguet) [2059994]
+- iwlwifi: implement reset flow for Bz devices (Íñigo Huguet) [2059994]
+- iwlwifi: dbg: disable ini debug in 8000 family and below (Íñigo Huguet) [2059994]
+- iwlwifi: support SAR GEO Offset Mapping override via BIOS (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: retake ownership after reset (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: always use 4K RB size by default (Íñigo Huguet) [2059994]
+- iwlwifi: mvm/api: define system control command (Íñigo Huguet) [2059994]
+- iwlwifi: bump FW API to 68 for AX devices (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add some missing command strings (Íñigo Huguet) [2059994]
+- iwlwifi: fw: add support for splitting region type bits (Íñigo Huguet) [2059994]
+- iwlwifi: swap 1650i and 1650s killer struct names (Íñigo Huguet) [2059994]
+- iwlwifi: yoyo: support for DBGC4 for dram (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: update rate scale in moving back to assoc state (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add support for statistics update version 15 (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: Add support for a new version of scan request command (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: remove session protection upon station removal (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add support for PHY context command v4 (Íñigo Huguet) [2059994]
+- iwlwifi: fw: api: add link to PHY context command struct v1 (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: support RLC configuration command (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: d3: support v12 wowlan status (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: parse firmware alive message version 6 (Íñigo Huguet) [2059994]
+- iwlwifi: pcie: support Bz suspend/resume trigger (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: d3: move GTK rekeys condition (Íñigo Huguet) [2059994]
+- ath11k: change to use dynamic memory for channel list of scan (Íñigo Huguet) [2059994]
+- ath11k: add support for WCN6855 hw2.1 (Íñigo Huguet) [2059994]
+- ath9k: switch to rate table based lookup (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: demote non-compliant kernel-doc header (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: fix a possible NULL pointer deference (Íñigo Huguet) [2059994]
+- iwlwifi: mei: Fix spelling mistake "req_ownserhip" -> "req_ownership" (Íñigo Huguet) [2059994]
+- iwlwifi: mei: don't rely on the size from the shared area (Íñigo Huguet) [2059994]
+- iwlwifi: mei: fix linking when tracing is not enabled (Íñigo Huguet) [2059994]
+- ath11k: Avoid NULL ptr access during mgmt tx cleanup (Íñigo Huguet) [2059994]
+- rtlwifi: rtl8192de: Style clean-ups (Íñigo Huguet) [2059994]
+- brcmfmac: Configure keep-alive packet on suspend (Íñigo Huguet) [2059994]
+- ieee80211: change HE nominal packet padding value defines (Íñigo Huguet) [2059994]
+- cfg80211: use ieee80211_bss_get_elem() instead of _get_ie() (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: read the rfkill state and feed it to iwlmei (Íñigo Huguet) [2059994]
+- iwlwifi: mvm: add vendor commands needed for iwlmei (Íñigo Huguet) [2059994]
+- iwlwifi: integrate with iwlmei (Íñigo Huguet) [2059994]
+- iwlwifi: mei: add debugfs hooks (Íñigo Huguet) [2059994]
+- iwlwifi: mei: add the driver to allow cooperation with CSME (Íñigo Huguet) [2059994]
+- mwifiex: Ensure the version string from the firmware is 0-terminated (Íñigo Huguet) [2059994]
+- mwifiex: Add quirk to disable deep sleep with certain hardware revision (Íñigo Huguet) [2059994]
+- mwifiex: Use a define for firmware version string length (Íñigo Huguet) [2059994]
+- rtw88: add debugfs to force lowest basic rate (Íñigo Huguet) [2059994]
+- rtw88: follow the AP basic rates for tx mgmt frame (Íñigo Huguet) [2059994]
+- mac80211: Use memset_after() to clear tx status (Íñigo Huguet) [2059994]
+- mac80211: notify non-transmitting BSS of color changes (Íñigo Huguet) [2059994]
+- mac80211: minstrel_ht: remove unused SAMPLE_SWITCH_THR define (Íñigo Huguet) [2059994]
+- cfg80211: allow continuous radar monitoring on offchannel chain (Íñigo Huguet) [2059994]
+- cfg80211: schedule offchan_cac_abort_wk in cfg80211_radar_event (Íñigo Huguet) [2059994]
+- cfg80211: delete redundant free code (Íñigo Huguet) [2059994]
+- mac80211: Remove unused assignment statements (Íñigo Huguet) [2059994]
+- cfg80211: fix possible NULL pointer dereference in cfg80211_stop_offchan_radar_detection (Íñigo Huguet) [2059994]
+- ath11k: Use memset_startat() for clearing queue descriptors (Íñigo Huguet) [2059994]
+- ath11k: Fix spelling mistake "detetction" -> "detection" (Íñigo Huguet) [2059994]
+- Revert "ath11k: add read variant from SMBIOS for download board data" (Íñigo Huguet) [2059994]
+- ath11k: add read variant from SMBIOS for download board data (Íñigo Huguet) [2059994]
+- ath11k: calculate the correct NSS of peer for HE capabilities (Íñigo Huguet) [2059994]
+- ath11k: change to treat alpha code na as world wide regdomain (Íñigo Huguet) [2059994]
+- cfg80211: move offchan_cac_event to a dedicated work (Íñigo Huguet) [2059994]
+- mac80211_hwsim: Fix spelling mistake "Droping" -> "Dropping" (Íñigo Huguet) [2059994]
+- mac80211: introduce set_radar_offchan callback (Íñigo Huguet) [2059994]
+- cfg80211: implement APIs for dedicated radar detection HW (Íñigo Huguet) [2059994]
+- ath11k: add support for BSS color change (Íñigo Huguet) [2059994]
+- ath11k: add trace log support (Íñigo Huguet) [2059994]
+- ath11k: Add missing qmi_txn_cancel() (Íñigo Huguet) [2059994]
+- ath11k: Disabling credit flow for WMI path (Íñigo Huguet) [2059994]
+- ath11k: Increment pending_mgmt_tx count before tx send invoke (Íñigo Huguet) [2059994]
+- ath11k: send proper txpower and maxregpower values to firmware (Íñigo Huguet) [2059994]
+- ath11k: move peer delete after vdev stop of station for QCA6390 and WCN6855 (Íñigo Huguet) [2059994]
+- ath11k: remove return for empty tx bitrate in mac_op_sta_statistics (Íñigo Huguet) [2059994]
+- ath11k: enable IEEE80211_VHT_EXT_NSS_BW_CAPABLE if NSS ratio enabled (Íñigo Huguet) [2059994]
+- ath11k: avoid unnecessary lock contention in tx_completion path (Íñigo Huguet) [2059994]
+- ath11k: add branch predictors in dp_tx path (Íñigo Huguet) [2059994]
+- ath11k: avoid while loop in ring selection of tx completion interrupt (Íñigo Huguet) [2059994]
+- ath11k: remove mod operator in dst ring processing (Íñigo Huguet) [2059994]
+- ath11k: allocate HAL_WBM2SW_RELEASE ring from cacheable memory (Íñigo Huguet) [2059994]
+- ath11k: add branch predictors in process_rx (Íñigo Huguet) [2059994]
+- ath11k: remove usage quota while processing rx packets (Íñigo Huguet) [2059994]
+- ath11k: avoid active pdev check for each msdu (Íñigo Huguet) [2059994]
+- ath11k: avoid additional access to ath11k_hal_srng_dst_num_free (Íñigo Huguet) [2059994]
+- ath11k: modify dp_rx desc access wrapper calls inline (Íñigo Huguet) [2059994]
+- ath11k: allocate dst ring descriptors from cacheable memory (Íñigo Huguet) [2059994]
+- ath11k: disable unused CE8 interrupts for ipq8074 (Íñigo Huguet) [2059994]
+- ath11k: avoid unnecessary BH disable lock in STA kickout event (Íñigo Huguet) [2059994]
+- ath11k: enable 802.11 power save mode in station mode (Íñigo Huguet) [2059994]
+- ath11k: convert ath11k_wmi_pdev_set_ps_mode() to use enum wmi_sta_ps_mode (Íñigo Huguet) [2059994]
+- ath9k: use swap() to make code cleaner (Íñigo Huguet) [2059994]
+- ath10k: fetch (pre-)calibration data via nvmem subsystem (Íñigo Huguet) [2059994]
+- Revert "ath11k: add support for WCN6855 hw2.1" (Íñigo Huguet) [2059994]
+- iommu/vt-d: Make DMAR_UNITS_SUPPORTED a config setting (Jerry Snitselaar) [2095498]
+- scsi: mpi3mr: Fix kernel-doc (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Rework mrioc->bsg_device model to fix warnings (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Add target device related sysfs attributes (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Add shost related sysfs attributes (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Return error if dma_alloc_coherent() fails (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Fix a NULL vs IS_ERR() bug in mpi3mr_bsg_init() (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Return I/Os to an unrecoverable HBA with DID_ERROR (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Hidden drives not removed during soft reset (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Increase I/O timeout value to 60s (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Update driver version to 8.0.0.69.0 (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Add support for NVMe passthrough (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Expose adapter state to sysfs (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Add support for PEL commands (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Add support for MPT commands (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Move data structures/definitions from MPI headers to uapi header (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Add support for driver commands (Tomas Henzl) [2091878]
+- scsi: mpi3mr: Add bsg device support (Tomas Henzl) [2091878]
+- selftests/powerpc: Add PPC_FEATURE2_ARCH_3_1 and PPC_FEATURE2_EBB bits (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc: Add helper to exit on failure (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Add interface test for mmcra register fields (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr3_src fields (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr2_fcs_fch fields (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr2_l2l3 field (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr1_comb field (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr0_pmc56 using pmc5 (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr0_fc56 field using pmc1 (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr0_pmcjce field (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr0_pmccext bit (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr0_cc56run field (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu/: Add interface test for mmcr0 exception bits (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Add macro to extract mmcr3 and mmcra fields (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Add macro to extract mmcr0/mmcr1 fields (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Add macros to extract mmcr fields (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Add event_init_sampling function (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Add utility functions to post process the mmap buffer (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Add macros to parse event codes (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Add support for perf sampling tests (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc: Add a test of counting larx/stcx (Desnes A. Nunes do Rosario) [2071113]
+- selftests/powerpc/pmu: Include mmap_buffer field as part of struct event (Desnes A. Nunes do Rosario) [2071113]
+- [s390] net/smc: Fix af_ops of child socket pointing to released memory (Tobias Huschle) [2043832]
+- [s390] net/smc: Fix NULL pointer dereference in smc_pnet_find_ib() (Tobias Huschle) [2043832]
+- [s390] net/smc: use memcpy instead of snprintf to avoid out of bounds read (Tobias Huschle) [2043832]
+- [s390] net/smc: Call trace_smc_tx_sendmsg when data corked (Tobias Huschle) [2043832]
+- [s390] net/smc: Fix cleanup when register ULP fails (Tobias Huschle) [2043832]
+- [s390] net/smc: fix connection leak (Tobias Huschle) [2043832]
+- [s390] net/smc: Use a mutex for locking "struct smc_pnettable" (Tobias Huschle) [2043832]
+- [s390] net/smc: unlock on error paths in __smc_setsockopt() (Tobias Huschle) [2043832]
+- [s390] net/smc: return ETIMEDOUT when smc_connect_clc() timeout (Tobias Huschle) [2043832]
+- [s390] net/smc: Add comment for smc_tx_pending (Tobias Huschle) [2043832]
+- [s390] net/smc: Add global configure for handshake limitation by netlink (Tobias Huschle) [2043832]
+- [s390] net/smc: Dynamic control handshake limitation by socket options (Tobias Huschle) [2043832]
+- [s390] net/smc: Limit SMC visits when handshake workqueue congested (Tobias Huschle) [2043832]
+- [s390] net/smc: Limit backlog connections (Tobias Huschle) [2043832]
+- [s390] net/smc: Make smc_tcp_listen_work() independent (Tobias Huschle) [2043832]
+- [s390] net/smc: Avoid overwriting the copies of clcsock callback functions (Tobias Huschle) [2043832]
+- [s390] Partially revert "net/smc: Add netlink net namespace support" (Tobias Huschle) [2043832]
+- [s390] net/smc: Cork when sendpage with MSG_SENDPAGE_NOTLAST flag (Tobias Huschle) [2043832]
+- [s390] net/smc: Remove corked dealyed work (Tobias Huschle) [2043832]
+- [s390] net/smc: Send directly when TCP_CORK is cleared (Tobias Huschle) [2043832]
+- [s390] net/smc: Forward wakeup to smc socket waitqueue after fallback (Tobias Huschle) [2043832]
+- [s390] net/smc: Transitional solution for clcsock race issue (Tobias Huschle) [2043832]
+- [s390] net/smc: Fix hung_task when removing SMC-R devices (Tobias Huschle) [2043832]
+- [s390] net/smc: Remove unused function declaration (Tobias Huschle) [2043832]
+- [s390] net/smc: Resolve the race between SMC-R link access and clear (Tobias Huschle) [2043832]
+- [s390] net/smc: Introduce a new conn->lgr validity check helper (Tobias Huschle) [2043832]
+- [s390] net/smc: Resolve the race between link group access and termination (Tobias Huschle) [2043832]
+- [s390] net/smc: Reset conn->lgr when link group registration fails (Tobias Huschle) [2043832]
+- [s390] net/smc: add comments for smc_link_{usable|sendable} (Tobias Huschle) [2043832]
+- [s390] net/smc: remove redundant re-assignment of pointer link (Tobias Huschle) [2043832]
+- [s390] net/smc: Introduce TCP ULP support (Tobias Huschle) [2043832]
+- [s390] net/smc: Add net namespace for tracepoints (Tobias Huschle) [2043832]
+- [s390] net/smc: Print net namespace in log (Tobias Huschle) [2043832]
+- [s390] net/smc: Add netlink net namespace support (Tobias Huschle) [2043832]
+- [s390] net/smc: Introduce net namespace support for linkgroup (Tobias Huschle) [2043832]
+- [s390] net/smc: Use the bitmap API when applicable (Tobias Huschle) [2043832]
+- [s390] net/smc: fix kernel panic caused by race of smc_sock (Tobias Huschle) [2043832]
+- [s390] net/smc: don't send CDC/LLC message if link not ready (Tobias Huschle) [2043832]
+- [s390] net/smc: fix using of uninitialized completions (Tobias Huschle) [2043832]
+- [s390] net/smc: Prevent smc_release() from long blocking (Tobias Huschle) [2043832]
+- [s390] net/smc: Clear memory when release and reuse buffer (Tobias Huschle) [2043832]
+- [s390] net/smc: Keep smc_close_final rc during active close (Tobias Huschle) [2043832]
+- [s390] net/smc: fix wrong list_del in smc_lgr_cleanup_early (Tobias Huschle) [2043832]
+- [s390] net/smc: Don't call clcsock shutdown twice when smc shutdown (Tobias Huschle) [2043832]
+- [s390] net/smc: Fix loop in smc_listen (Tobias Huschle) [2043832]
+- [s390] net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() (Tobias Huschle) [2043832]
+- [s390] net/smc: Ensure the active closing peer first closes clcsock (Tobias Huschle) [2043832]
+- [s390] net/smc: Clean up local struct sock variables (Tobias Huschle) [2043832]
+- [s390] net/smc: Avoid warning of possible recursive locking (Tobias Huschle) [2043832]
+- [s390] net/smc: Make sure the link_id is unique (Tobias Huschle) [2043832]
+- [s390] net/smc: Transfer remaining wait queue entries during fallback (Tobias Huschle) [2043832]
+- [s390] net/smc: fix sk_refcnt underflow on linkdown and fallback (Tobias Huschle) [2043832]
+- [s390] net/smc: Print function name in smcr_link_down tracepoint (Tobias Huschle) [2043832]
+- [s390] net/smc: Introduce tracepoint for smcr link down (Tobias Huschle) [2043832]
+- [s390] net/smc: Introduce tracepoints for tx and rx msg (Tobias Huschle) [2043832]
+- [s390] net/smc: Introduce tracepoint for fallback (Tobias Huschle) [2043832]
+- [s390] net/smc: Correct spelling mistake to TCPF_SYN_RECV (Tobias Huschle) [2043832]
+- [s390] net/smc: Fix smc_link->llc_testlink_time overflow (Tobias Huschle) [2043832]
+- [s390] net/smc: stop links when their GID is removed (Tobias Huschle) [2043832]
+- [s390] net/smc: add netlink support for SMC-Rv2 (Tobias Huschle) [2043832]
+- [s390] net/smc: extend LLC layer for SMC-Rv2 (Tobias Huschle) [2043832]
+- [s390] net/smc: add v2 support to the work request layer (Tobias Huschle) [2043832]
+- [s390] net/smc: retrieve v2 gid from IB device (Tobias Huschle) [2043832]
+- [s390] net/smc: add v2 format of CLC decline message (Tobias Huschle) [2043832]
+- [s390] net/smc: add listen processing for SMC-Rv2 (Tobias Huschle) [2043832]
+- [s390] net/smc: add SMC-Rv2 connection establishment (Tobias Huschle) [2043832]
+- [s390] net/smc: prepare for SMC-Rv2 connection (Tobias Huschle) [2043832]
+- [s390] net/smc: save stack space and allocate smc_init_info (Tobias Huschle) [2043832]
+- [s390] net/smc: add generic netlink support for system EID (Tobias Huschle) [2043832]
+- [s390] net/smc: keep static copy of system EID (Tobias Huschle) [2043832]
+- [s390] net/smc: add support for user defined EIDs (Tobias Huschle) [2043832]
+- [s390] net/smc: Allow SMC-D 1MB DMB allocations (Tobias Huschle) [2043832]
+- [s390] net/smc: no need to flush smcd_dev's event_wq before destroying it (Tobias Huschle) [2043832]
+- [s390] net/smc: avoid possible duplicate dmb unregistration (Tobias Huschle) [2043832]
+- [s390] net/smc: remove device from smcd_dev_list after failed device_add() (Tobias Huschle) [2043832]
+
+* Fri Jun 17 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-402.el8]
+- bnxt_en: parse and report result field when NVRAM package install fails (Ken Cox) [2043782]
+- bnxt_en: Fix unnecessary dropping of RX packets (Ken Cox) [2043782]
+- bnxt_en: Initiallize bp->ptp_lock first before using it (Ken Cox) [2043782]
+- bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag (Ken Cox) [2043782]
+- bnxt_en: Prevent XDP redirect from running when stopping TX queue (Ken Cox) [2043782 1944997]
+- bnxt_en: reserve space inside receive page for skb_shared_info (Ken Cox) [2043782 1944997]
+- bnxt_en: Synchronize tx when xdp redirects happen on same ring (Ken Cox) [2043782 1944997]
+- net: bnxt_ptp: fix compilation error (Ken Cox) [2043782]
+- bnxt: revert hastily merged uAPI aberrations (Ken Cox) [2043782]
+- bnxt_en: add an nvm test for hw diagnose (Ken Cox) [2043782]
+- bnxt_en: implement hw health reporter (Ken Cox) [2043782]
+- bnxt_en: Do not destroy health reporters during reset (Ken Cox) [2043782]
+- bnxt_en: Eliminate unintended link toggle during FW reset (Ken Cox) [2043782]
+- bnxt_en: Properly report no pause support on some cards (Ken Cox) [2043782]
+- bnxt_en: introduce initial link state of unknown (Ken Cox) [2043782]
+- bnxt_en: parse result field when NVRAM package install fails (Ken Cox) [2043782]
+- bnxt_en: add more error checks to HWRM_NVM_INSTALL_UPDATE (Ken Cox) [2043782]
+- bnxt_en: refactor error handling of HWRM_NVM_INSTALL_UPDATE (Ken Cox) [2043782]
+- bnxt_en: Increase firmware message response DMA wait time (Ken Cox) [2043782]
+- bnxt_en: Fix incorrect multicast rx mask setting when not requested (Ken Cox) [2043782]
+- bnxt_en: Fix occasional ethtool -t loopback test failures (Ken Cox) [2043782]
+- bnxt_en: Fix offline ethtool selftest with RDMA enabled (Ken Cox) [2043782]
+- bnxt_en: Fix active FEC reporting to ethtool (Ken Cox) [2043782]
+- bnxt_en: Fix devlink fw_activate (Ken Cox) [2043782]
+- bnxt_en: Restore the resets_reliable flag in bnxt_open() (Ken Cox) [2043782]
+- bnxt_en: Handle async event when the PHC is updated in RTC mode (Ken Cox) [2043782]
+- bnxt_en: Implement .adjtime() for PTP RTC mode (Ken Cox) [2043782]
+- bnxt_en: Add driver support to use Real Time Counter for PTP (Ken Cox) [2043782]
+- bnxt_en: PTP: Refactor PTP initialization functions (Ken Cox) [2043782]
+- bnxt_en: Update firmware interface to 1.10.2.73 (Ken Cox) [2043782]
+- bnxt_en: improve firmware timeout messaging (Ken Cox) [2043782]
+- bnxt_en: use firmware provided max timeout for messages (Ken Cox) [2043782]
+- bnxt_en: improve VF error messages when PF is unavailable (Ken Cox) [2043782]
+- bnxt_en: add dynamic debug support for HWRM messages (Ken Cox) [2043782]
+- bnxt_en: Use page frag RX buffers for better software GRO performance (Ken Cox) [2043782]
+- bnxt_en: convert to xdp_do_flush (Ken Cox) [2043782]
+- bnxt_en: Support CQE coalescing mode in ethtool (Ken Cox) [2043782]
+- bnxt_en: Support configurable CQE coalescing mode (Ken Cox) [2043782]
+- bnxt_en: enable interrupt sampling on 5750X for DIM (Ken Cox) [2043782]
+- bnxt_en: Log error report for dropped doorbell (Ken Cox) [2043782]
+- bnxt_en: Add event handler for PAUSE Storm event (Ken Cox) [2043782]
+- flow_offload: reject to offload tc actions in offload drivers (Ken Cox) [2043782]
+- bnxt_en: Fix compile error regression when CONFIG_BNXT_SRIOV is not set (Ken Cox) [2043782]
+- bnxt_en: fix format specifier in live patch error message (Ken Cox) [2043782]
+- bnxt_en: extend RTNL to VF check in devlink driver_reinit (Ken Cox) [2043782]
+- bnxt_en: avoid newline at end of message in NL_SET_ERR_MSG_MOD (Ken Cox) [2043782]
+- bnxt_en: Remove not used other ULP define (Ken Cox) [2043782]
+- bnxt_en: Provide stored devlink "fw" version on older firmware (Ken Cox) [2043782]
+- bnxt_en: implement firmware live patching (Ken Cox) [2043782]
+- bnxt_en: Update firmware interface to 1.10.2.63 (Ken Cox) [2043782]
+- bnxt_en: implement dump callback for fw health reporter (Ken Cox) [2043782]
+- bnxt_en: extract coredump command line from current task (Ken Cox) [2043782]
+- bnxt_en: Retrieve coredump and crashdump size via FW command (Ken Cox) [2043782]
+- bnxt_en: Add compression flags information in coredump segment header (Ken Cox) [2043782]
+- bnxt_en: move coredump functions into dedicated file (Ken Cox) [2043782]
+- bnxt_en: Refactor coredump functions (Ken Cox) [2043782]
+- bnxt_en: improve fw diagnose devlink health messages (Ken Cox) [2043782]
+- bnxt_en: consolidate fw devlink health reporters (Ken Cox) [2043782]
+- bnxt_en: remove fw_reset devlink health reporter (Ken Cox) [2043782]
+- bnxt_en: improve error recovery information messages (Ken Cox) [2043782]
+- bnxt_en: add enable_remote_dev_reset devlink parameter (Ken Cox) [2043782]
+- bnxt_en: implement devlink dev reload fw_activate (Ken Cox) [2043782]
+- bnxt_en: implement devlink dev reload driver_reinit (Ken Cox) [2043782]
+- bnxt_en: refactor cancellation of resource reservations (Ken Cox) [2043782]
+- bnxt_en: refactor printing of device info (Ken Cox) [2043782]
+- bnxt: use netif_is_rxfh_configured instead of open code (Ken Cox) [2043782]
+- ethernet: use eth_hw_addr_set() (Ken Cox) [2043782]
+- bnxt_en: Fix TX timeout when TX ring size is set to the smallest (Ken Cox) [2043782]
+- net/{mlx5|nfp|bnxt}: Remove unnecessary RTNL lock assert (Ken Cox) [2043782]
+- bnxt_en: make bnxt_free_skbs() safe to call after bnxt_free_mem() (Ken Cox) [2043782]
+- netfilter: nat: really support inet nat without l3 address (Phil Sutter) [2092424]
+- netfilter: nf_tables: use kfree_rcu(ptr, rcu) to release hooks in clean_net path (Phil Sutter) [2094236]
+- netfilter: nf_tables: double hook unregistration in netns path (Phil Sutter) [2094236]
+- video: fbdev: hyperv_fb: Allow resolutions with size > 64 MB for Gen1 (Mohammed Gamal) [1948442]
+- cpufreq: intel_pstate: Use firmware default EPP (Steve Best) [2072671]
+- cpufreq: intel_pstate: Update cpuinfo.max_freq on HWP_CAP changes (Steve Best) [2072671]
+- cpufreq: intel_pstate: Update EPP for AlderLake mobile (Steve Best) [2072671]
+- cpufreq: intel_pstate: Drop redundant intel_pstate_get_hwp_cap() call (Steve Best) [2072671]
+- cpufreq: intel_pstate: ITMT support for overclocked system (Steve Best) [2072671]
+- cpufreq: intel_pstate: Fix active mode offline/online EPP handling (Steve Best) [2072671]
+- cpufreq: intel_pstate: Clear HWP Status during HWP Interrupt enable (Steve Best) [2072671]
+- cpufreq: intel_pstate: Fix unchecked MSR 0x773 access (Steve Best) [2072671]
+- cpufreq: intel_pstate: Clear HWP desired on suspend/shutdown and offline (Steve Best) [2072671]
+- cpufreq: intel_pstate: Process HWP Guaranteed change notification (Steve Best) [2072671]
+- cpufreq: intel_pstate: Override parameters if HWP forced by BIOS (Steve Best) [2072671]
+- Revert "cpufreq: intel_pstate: Process HWP Guaranteed change notification" (Steve Best) [2072671]
+- cpufreq: intel_pstate: Process HWP Guaranteed change notification (Steve Best) [2072671]
+- cpuidle: intel_idle: Drop redundant backslash at line end (Steve Best) [2072893]
+- intel_idle: add core C6 optimization for SPR (Steve Best) [2072893]
+- intel_idle: add 'preferred_cstates' module argument (Steve Best) [2072893]
+- intel_idle: add SPR support (Steve Best) [2072893]
+- intel_idle: enable interrupts before C1 on Xeons (Steve Best) [2072893]
+
+* Wed Jun 15 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-401.el8]
+- [s390] s390/airq: use DMA memory for summary indicators (Tobias Huschle) [2043905]
+- [s390] s390/zcrypt: Provide target domain for EP11 cprbs to scheduling function (Tobias Huschle) [2043905]
+- [s390] s390/zcrypt: change reply buffer size offering (Tobias Huschle) [2043905]
+- [s390] s390/zcrypt: Support CPRB minor version T7 (Tobias Huschle) [2043905]
+- [s390] s390/zcrypt: handle checkstopped cards with new state (Tobias Huschle) [2043905]
+- [s390] s390/zcrypt: CEX8S exploitation support (Tobias Huschle) [2043905]
+- [s390] s390/ap/zcrypt: debug feature improvements (Tobias Huschle) [2043905]
+- [s390] s390/zcrypt: rework of debug feature messages (Tobias Huschle) [2043905]
+- powerpc/perf: Fix the threshold compare group constraint for power10 (Steve Best) [2090058]
+- arch/x86: Disable system wide bus lock rate limiting (Prarit Bhargava) [2028252]
+- rtnetlink: return ENODEV when IFLA_ALT_IFNAME is used in dellink (Xin Long) [2062780]
+- rtnetlink: enable alt_ifname for setlink/newlink (Xin Long) [2062780]
+- rtnetlink: return ENODEV when ifname does not exist and group is given (Xin Long) [2062780]
+- rtnetlink: Return correct error on changing device netns (Xin Long) [2062780]
+- net: remove the new_ifindex argument from dev_change_net_namespace (Xin Long) [2062780]
+- net: Allow to specify ifindex when device is moved to another namespace (Xin Long) [2062780]
+- net: rtnetlink: add possibility to use alternative names as message handle (Xin Long) [2062780]
+- net: rtnetlink: introduce helper to get net_device instance by ifname (Xin Long) [2062780]
+- net: rtnetlink: unify the code in __rtnl_newlink get dev with the rest (Xin Long) [2062780]
+- net: rtnetlink: put alternative names to getlink message (Xin Long) [2062780]
+- block-map: add __GFP_ZERO flag for alloc_page in function bio_copy_kern (Ewan D. Milne) [2049198] {CVE-2022-0494}
+- [s390] s390/dasd: prevent double format of tracks for ESE devices (Mete Durlu) [2094296]
+- [s390] s390/dasd: fix data corruption for ESE devices (Mete Durlu) [2094296]
+- [s390] s390/dasd: Fix read inconsistency for ESE DASD devices (Mete Durlu) [2094294]
+- [s390] s390/dasd: Fix read for ESE with blksize < 4k (Mete Durlu) [2094294]
+- xfs: validate inode fork size against fork format (Andrey Albershteyn) [2089447]
+- selftests/tc-testing: match any qdisc type (Petr Oros) [2021843]
+- tc-testing: Add control-plane selftests for sch_mq (Petr Oros) [2021843]
+- netdevsim: Zero-initialize memory for new map's value in function nsim_bpf_map_alloc (Petr Oros) [2021843]
+- netdevsim: don't overwrite read only ethtool parms (Petr Oros) [2021843]
+- netdevsim: fix uninit value in nsim_drv_configure_vfs() (Petr Oros) [2021843]
+- netdevsim: rename 'driver' entry points (Petr Oros) [2021843]
+- netdevsim: move max vf config to dev (Petr Oros) [2021843]
+- netdevsim: move details of vf config to dev (Petr Oros) [2021843]
+- netdevsim: move vfconfig to nsim_dev (Petr Oros) [2021843]
+- netdevsim: take rtnl_lock when assigning num_vfs (Petr Oros) [2021843]
+- netdevsim: Protect both reload_down and reload_up paths (Petr Oros) [2021843]
+- netdevsim: make array res_ids static const, makes object smaller (Petr Oros) [2021843]
+- netdevsim: Add multi-queue support (Petr Oros) [2021843]
+- net: netdevsim: use xso.real_dev instead of xso.dev in callback functions of struct xfrmdev_ops (Petr Oros) [2021843]
+- netdevsim: delete unnecessary debugfs checking (Petr Oros) [2021843]
+- netdevsim: switch to memdup_user_nul() (Petr Oros) [2021843]
+- netdevsim: init u64 stats for 32bit hardware (Petr Oros) [2021843]
+- dm: fix bio length of empty flush (Ming Lei) [2090940]
+- block: initialize the target bio in __bio_clone_fast (Ming Lei) [2090940]
+- dm: use bio_clone_fast in alloc_io/alloc_tio (Ming Lei) [2090940]
+- block: clone crypto and integrity data in __bio_clone_fast (Ming Lei) [2090940]
+- dm-cache: remove __remap_to_origin_clear_discard (Ming Lei) [2090940]
+- dm: simplify the single bio fast path in __send_duplicate_bios (Ming Lei) [2090940]
+- dm: retun the clone bio from alloc_tio (Ming Lei) [2090940]
+- dm: pass the bio instead of tio to __map_bio (Ming Lei) [2090940]
+- dm: move cloning the bio into alloc_tio (Ming Lei) [2090940]
+- dm: fold __send_duplicate_bios into __clone_and_map_simple_bio (Ming Lei) [2090940]
+- dm: fold clone_bio into __clone_and_map_data_bio (Ming Lei) [2090940]
+- dm: add a clone_to_tio helper (Ming Lei) [2090940]
+- block: make bio_crypt_clone() able to fail (Ming Lei) [2090940]
+- perf/x86/uncore: Add new Alder Lake and Raptor Lake support (Michael Petlan) [2088831]
+- perf/x86/uncore: Clean up uncore_pci_ids[] (Michael Petlan) [2088831]
+- perf/x86/uncore: Add Raptor Lake uncore support (Michael Petlan) [2088831]
+- perf/x86/cstate: Add new Alder Lake and Raptor Lake support (Michael Petlan) [2088831]
+- perf/x86/cstate: Add Raptor Lake support (Michael Petlan) [2088831]
+- perf/x86/msr: Add new Alder Lake and Raptor Lake support (Michael Petlan) [2088831]
+- perf/x86/msr: Add Raptor Lake CPU support (Michael Petlan) [2088831]
+- perf/x86: Add new Alder Lake and Raptor Lake support (Michael Petlan) [2088831]
+- perf/x86: Add Intel Raptor Lake support (Michael Petlan) [2088831]
+- x86/cpu: Add new Alderlake and Raptorlake CPU model numbers (Michael Petlan) [2088831]
+- x86/intel: Add common OPTDIFFs (Michael Petlan) [2088831]
+- x86/cpu: Explain Intel model naming convention (Michael Petlan) [2088831]
+- KVM: s390: vsie/gmap: reduce gmap_rmap overhead (Thomas Huth) [2072387]
+- KVM: s390x: fix SCK locking (Thomas Huth) [2072387]
+- s390/kvm: use union tod_clock (Thomas Huth) [2072387]
+- s390/time: introduce new store_tod_clock_ext() (Thomas Huth) [2072387]
+- s390/time: introduce union tod_clock (Thomas Huth) [2072387]
+- KVM: s390: Clarify SIGP orders versus STOP/RESTART (Thomas Huth) [2043868]
+- KVM: s390: Clear valid_wakeup in kvm_s390_handle_wait(), not in arch hook (Thomas Huth) [2072387]
+- KVM: s390: Ensure kvm_arch_no_poll() is read once when blocking vCPU (Thomas Huth) [2072387]
+- KVM: s390: Introduce kvm_s390_get_gfn_end() (Thomas Huth) [2072387]
+- KVM: Integrate gfn_to_memslot_approx() into search_memslots() (Thomas Huth) [2072387]
+- KVM: s390: Use kvm_get_vcpu() instead of open-coded access (Thomas Huth) [2072387]
+- KVM: s390: add debug statement for diag 318 CPNC data (Thomas Huth) [2072387]
+- KVM: s390: pv: properly handle page flags for protected guests (Thomas Huth) [2072387]
+- KVM: s390: Add a routine for setting userspace CPU state (Thomas Huth) [2072387]
+- net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe() (Íñigo Huguet) [2042840]
+- net: sfc: fix memory leak due to ptp channel (Íñigo Huguet) [2042840]
+- net: sfc: fix using uninitialized xdp tx_queue (Íñigo Huguet) [2042840]
+- sfc: Do not free an empty page_ring (Íñigo Huguet) [2042840]
+- net: sfc: add missing xdp queue reinitialization (Íñigo Huguet) [2042840]
+- sfc: Avoid NULL pointer dereference on systems without numa awareness (Íñigo Huguet) [2042840]
+- sfc: extend the locking on mcdi->seqno (Íñigo Huguet) [2042840]
+- sfc: set affinity hints in local NUMA node only (Íñigo Huguet) [2042840]
+- sfc: default config to 1 channel/core in local NUMA node only (Íñigo Huguet) [2042840]
+- sfc: The size of the RX recycle ring should be more flexible (Íñigo Huguet) [2042840]
+- sfc: Use swap() instead of open coding it (Íñigo Huguet) [2042840]
+- ethernet/sfc: remove redundant rc variable (Íñigo Huguet) [2042840]
+- PCI/ACPI: Allow D3 only if Root Port can signal and wake from D3 (Myron Stowe) [2015785]
+- thunderbolt: Do not make DROM read success compulsory (Myron Stowe) [2015785]
+- thunderbolt: Do not resume routers if UID is not set (Myron Stowe) [2015785]
+- thunderbolt: Retry DROM reads for more failure scenarios (Myron Stowe) [2015785]
+- PCI/ACPI: Replace acpi_bus_get_device() with acpi_fetch_acpi_dev() (Myron Stowe) [2015785]
+- ACPI: scan: Introduce acpi_fetch_acpi_dev() (Myron Stowe) [2015785]
+- PCI: PM: Fix ordering of operations in pci_back_from_sleep() (Myron Stowe) [2015785]
+- PCI: PM: Do not call platform_pci_power_manageable() unnecessarily (Myron Stowe) [2015785]
+- PCI: PM: Make pci_choose_state() call pci_target_state() (Myron Stowe) [2015785]
+- PCI: PM: Rearrange pci_target_state() (Myron Stowe) [2015785]
+- PCI: PM: Simplify acpi_pci_power_manageable() (Myron Stowe) [2015785]
+- PCI: PM: Drop struct pci_platform_pm_ops (Myron Stowe) [2015785]
+- PCI: ACPI: PM: Do not use pci_platform_pm_ops for ACPI (Myron Stowe) [2015785]
+- PCI: PM: Do not use pci_platform_pm_ops for Intel MID PM (Myron Stowe) [2015785]
+- ACPI: glue: Look for ACPI bus type only if ACPI companion is not known (Myron Stowe) [2015785]
+- ACPI: glue: Drop cleanup callback from struct acpi_bus_type (Myron Stowe) [2015785]
+- PCI: ACPI: Drop acpi_pci_bus (Myron Stowe) [2015785]
+- PCI: ACPI: Check parent pointer in acpi_pci_find_companion() (Myron Stowe) [2015785]
+- PCI/ACPI: Don't reset a fwnode set by OF (Myron Stowe) [2015785]
+- PCI: VMD: ACPI: Make ACPI companion lookup work for VMD bus (Myron Stowe) [2015785]
+- PCI: Change the type of probe argument in reset functions (Myron Stowe) [2015785]
+- PCI: Add support for ACPI _RST reset method (Myron Stowe) [2015785]
+- PCI: Setup ACPI fwnode early and at the same time with OF (Myron Stowe) [2015785]
+- PCI: Use acpi_pci_power_manageable() (Myron Stowe) [2015785]
+- PCI: Add pci_set_acpi_fwnode() to set ACPI_COMPANION (Myron Stowe) [2015785]
+- PCI: Allow userspace to query and set device reset mechanism (Myron Stowe) [2015785]
+- PCI: Remove reset_fn field from pci_dev (Myron Stowe) [2015785]
+- PCI: Add array to track reset method ordering (Myron Stowe) [2015785]
+- PCI: Add pcie_reset_flr() with 'probe' argument (Myron Stowe) [2015785]
+- PCI: Cache PCIe Device Capabilities register (Myron Stowe) [2015785]
+- driver core: Split device_platform_notify() (Myron Stowe) [2015785]
+- software nodes: Split software_node_notify() (Myron Stowe) [2015785]
+- PCI: PM: Enable PME if it can be signaled from D3cold (Myron Stowe) [2015785]
+- PCI: PM: Avoid forcing PCI_D0 for wakeup reasons inconsistently (Myron Stowe) [2015785]
+- PCI: Use pci_update_current_state() in pci_enable_device_flags() (Myron Stowe) [2015785]
+- PCI: Add pci_reset_bus_function() Secondary Bus Reset interface (Myron Stowe) [2015785]
+- ACPI: scan: Rearrange code related to acpi_get_device_data() (Myron Stowe) [2015785]
+- PCI/ACPI: Whitelist hotplug ports for D3 if power managed by ACPI (Myron Stowe) [2015785]
+- crypto: cavium/nitrox - use pcie_flr instead of duplicating it (Myron Stowe) [2015785]
+- NFSv4 only print the label when its queried (Scott Mayhew) [2030827]
+- NFSv4.1 provide mount option to toggle trunking discovery (Scott Mayhew) [2030827]
+- NFSv4.1 test and add 4.1 trunking transport (Scott Mayhew) [2030827]
+- SUNRPC allow for unspecified transport time in rpc_clnt_add_xprt (Scott Mayhew) [2030827]
+- NFSv4 handle port presence in fs_location server string (Scott Mayhew) [2030827]
+- NFSv4 expose nfs_parse_server_name function (Scott Mayhew) [2030827]
+- NFSv4.1 query for fs_location attr on a new file system (Scott Mayhew) [2030827]
+- NFSv4 store server support for fs_location attribute (Scott Mayhew) [2030827]
+- NFSv4 remove zero number of fs_locations entries error check (Scott Mayhew) [2030827]
+- NFSv4.1 add network transport when session trunking is detected (Scott Mayhew) [2030827]
+- SUNRPC enforce creation of no more than max_connect xprts (Scott Mayhew) [2030827]
+- NFSv4 introduce max_connect mount options (Scott Mayhew) [2030827]
+- SUNRPC add xps_nunique_destaddr_xprts to xprt_switch_info in sysfs (Scott Mayhew) [2030827]
+- SUNRPC keep track of number of transports to unique addresses (Scott Mayhew) [2030827]
+- powerpc/papr_scm: Make 'perf_stats' invisible if perf-stats unavailable (Diego Domingos) [1986188]
+- powerpc/papr_scm: Fix warnings about undeclared variable (Diego Domingos) [1986188]
+- VMCI: Add support for ARM64 (Cathy Avery) [2080095]
+- VMCI: Release notification_bitmap in error path (Cathy Avery) [2080095]
+- VMCI: Check exclusive_vectors when freeing interrupt 1 (Cathy Avery) [2080095]
+- VMCI: Fix some error handling paths in vmci_guest_probe_device() (Cathy Avery) [2080095]
+- VMCI: No need to clear memory after a dma_alloc_coherent() call (Cathy Avery) [2080095]
+- VMCI: Fix the description of vmci_check_host_caps() (Cathy Avery) [2080095]
+- VMCI: dma dg: add support for DMA datagrams receive (Cathy Avery) [2080095]
+- VMCI: dma dg: add support for DMA datagrams sends (Cathy Avery) [2080095]
+- VMCI: dma dg: allocate send and receive buffers for DMA datagrams (Cathy Avery) [2080095]
+- VMCI: dma dg: register dummy IRQ handlers for DMA datagrams (Cathy Avery) [2080095]
+- VMCI: dma dg: set OS page size (Cathy Avery) [2080095]
+- VMCI: dma dg: whitespace formatting change for vmci register defines (Cathy Avery) [2080095]
+- VMCI: dma dg: detect DMA datagram capability (Cathy Avery) [2080095]
+- VMCI: Use BIT() macro for bit definitions (Cathy Avery) [2080095]
+- VMCI: dma dg: add MMIO access to registers (Cathy Avery) [2080095]
+- misc: vmw_vmci: Switch to kvfree_rcu() API (Cathy Avery) [2080095]
+- VMCI: fix NULL pointer dereference when unmapping queue pair (Cathy Avery) [2080095]
+- misc: vmci: remove redundant variable is_local (Cathy Avery) [2080095]
+- misc: vmw_vmci: return the correct errno code (Cathy Avery) [2080095]
+- misc: vmw_vmci: explicitly initialize vmci_datagram payload (Cathy Avery) [2080095]
+- misc: vmw_vmci: explicitly initialize vmci_notify_bm_set_msg struct (Cathy Avery) [2080095]
+- vmci_host: print unexpanded names of ioctl requests in debug messages (Cathy Avery) [2080095]
+- drivers/misc/vmw_vmci: restrict too big queue size in qp_host_alloc_queue (Cathy Avery) [2080095]
+- VMCI: Enforce queuepair max size for IOCTL_VMCI_QUEUEPAIR_ALLOC (Cathy Avery) [2080095]
+- VMCI: Use set_page_dirty_lock() when unregistering guest memory (Cathy Avery) [2080095]
+- misc/vmw_vmci: fix typo (Cathy Avery) [2080095]
+- misc: vmw_vmci: fix kernel info-leak by initializing dbells in vmci_ctx_get_chkpt_doorbells() (Cathy Avery) [2080095]
+- VMCI: check return value of get_user_pages_fast() for errors (Cathy Avery) [2080095]
+- vmci_host: get rid of pointless access_ok() (Cathy Avery) [2080095]
+- treewide: Add SPDX license identifier - Makefile/Kconfig (Cathy Avery) [2080095]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 321 (Cathy Avery) [2080095]
+- VMCI: Use memdup_user() rather than duplicating its implementation (Cathy Avery) [2080095]
+- VMCI: remove set but not used variable 'cid' (Cathy Avery) [2080095]
+- vmci: type promotion bug in qp_host_get_user_memory() (Cathy Avery) [2080095]
+
+* Fri Jun 10 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-400.el8]
+- misc: pvpanic: introduce device capability (Emanuele Giuseppe Esposito) [2088457]
+- misc: pvpanic: add crash loaded event (Emanuele Giuseppe Esposito) [2088457]
+- misc: pvpanic: move bit definition to uapi header file (Emanuele Giuseppe Esposito) [2088457]
+- rfkill: make new event layout opt-in (Jose Ignacio Tornos Martinez) [2023175]
+- lib/sbitmap: fix sb->map leak (Ming Lei) [2093549]
+- openvswitch: fix OOB access in reserve_sfa_size() (Antoine Tenart) [2082023]
+- net: openvswitch: don't send internal clone attribute to the userspace. (Antoine Tenart) [2082023 2085509]
+- openvswitch: Add recirc_id to recirc warning (Antoine Tenart) [2082023]
+- openvswitch: Fixed nd target mask field in the flow dump. (Antoine Tenart) [2082023]
+- net: openvswitch: Remove redundant if statements (Antoine Tenart) [2082023]
+- netfilter: nf_tables: disallow non-stateful expression in sets earlier (Phil Sutter) [2092987] {CVE-2022-1966}
+- cachefiles: Drop superfluous readpages aops NULL check (Dave Wysochanski) [2083136]
+- audit: fix AUDIT_DISABLED undeclared error when AUDITSYSCALL unconfigured (Richard Guy Briggs) [2035123]
+- audit: log AUDIT_TIME_* records only from rules (Richard Guy Briggs) [2035123]
+- audit: improve audit queue handling when "audit=1" on cmdline (Richard Guy Briggs) [2035123]
+- audit: replace zero-length array with flexible-array member (Richard Guy Briggs) [2035123]
+- audit: use struct_size() helper in audit_[send|make]_reply() (Richard Guy Briggs) [2035123]
+- audit: ensure userspace is penalized the same as the kernel when under pressure (Richard Guy Briggs) [2035123]
+- audit: use struct_size() helper in kmalloc() (Richard Guy Briggs) [2035123]
+- audit: improve robustness of the audit queue handling (Richard Guy Briggs) [2035123]
+- audit: return early if the filter rule has a lower priority (Richard Guy Briggs) [2035123]
+- lsm_audit: avoid overloading the "key" audit field (Richard Guy Briggs) [2035123]
+- audit: Convert to SPDX identifier (Richard Guy Briggs) [2035123]
+- audit: rename struct node to struct audit_node to prevent future name collisions (Richard Guy Briggs) [2035123]
+- audit: prepare audit_context for use in calling contexts beyond syscalls (Richard Guy Briggs) [2035123]
+- audit: fix possible null-pointer dereference in audit_filter_rules (Richard Guy Briggs) [2035123]
+- audit: add header protection to kernel/audit.h (Richard Guy Briggs) [2035123]
+- audit: remove unnecessary 'ret' initialization (Richard Guy Briggs) [2035123]
+- audit: remove trailing spaces and tabs (Richard Guy Briggs) [2035123]
+- audit: Use list_move instead of list_del/list_add (Richard Guy Briggs) [2035123]
+- audit: Rename enum audit_state constants to avoid AUDIT_DISABLED redefinition (Richard Guy Briggs) [2035123]
+- selftests/bpf: Fix btf_dump test under new clang (Yauheni Kaliuta) [2087050]
+- perf: Fix sys_perf_event_open() race against self (Michael Petlan) [2087949]
+- scsi: fnic: Finish scsi_cmnd before dropping the spinlock (John Meneghini) [2062905]
+- [s390] s390/setup: Fix secure ipl message (Mete Durlu) [2058619]
+- perf evlist: Fix failed to use cpu list for uncore events (Michael Petlan) [2088835]
+- perf tools: Enable on a list of CPUs for hybrid (Michael Petlan) [2088835]
+- perf tools: Create hybrid flag in target (Michael Petlan) [2088835]
+- libperf: Add perf_cpu_map__default_new() (Michael Petlan) [2088835]
+- drm/i915: Stop force enabling pipe bottom color gammma/csc (Foggy Liu) [2054487]
+- blk-mq: fix blk_mq_flush_plug_list (Ming Lei) [2088397]
+- kernel/resource: move and rename IORESOURCE_MEM_DRIVER_MANAGED (Nico Pache) [2028988]
+- powerpc/numa: Handle partially initialized numa nodes (Nico Pache) [2028988]
+- mm: make free_area_init_node aware of memory less nodes (Nico Pache) [2028988]
+- mm, memory_hotplug: reorganize new pgdat initialization (Nico Pache) [2028988]
+- mm, memory_hotplug: drop arch_free_nodedata (Nico Pache) [2028988]
+- mm: handle uninitialized numa nodes gracefully (Nico Pache) [2028988]
+- mm, memory_hotplug: make arch_alloc_nodedata independent on CONFIG_MEMORY_HOTPLUG (Nico Pache) [2028988]
+- kexec_file: don't place kexec images on IORESOURCE_MEM_DRIVER_MANAGED (Nico Pache) [2028988]
+- mm/memory_hotplug: handle memblock_add_node() failures in add_memory_resource() (Nico Pache) [2028988]
+- mm/memory_hotplug: introduce add_memory_driver_managed() (Nico Pache) [2028988]
+- mm/memory_hotplug: handle memblocks only with CONFIG_ARCH_KEEP_MEMBLOCK (Nico Pache) [2028988]
+- mm/memory_hotplug: set node_start_pfn of hotadded pgdat to 0 (Nico Pache) [2028988]
+- mm/hotplug: reorder memblock_[free|remove]() calls in try_remove_memory() (Nico Pache) [2028988]
+- mm: memblock: make keeping memblock memory opt-in rather than opt-out (Nico Pache) [2028988]
+- [s390] s390/cpumf: add new extended counter set for IBM z16 (Mete Durlu) [2047728]
+
+* Wed Jun 08 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-399.el8]
+- [s390] s390/qdio: clarify logical vs absolute in QIB's kerneldoc (Mete Durlu) [2043836]
+- [s390] s390/qdio: remove unneeded sanity check in qdio_do_sqbs() (Mete Durlu) [2043836]
+- [s390] s390/qdio: split do_QDIO() (Mete Durlu) [2043836]
+- [s390] s390/qdio: split qdio_inspect_queue() (Mete Durlu) [2043836]
+- [s390] s390/qdio: clarify handler logic for qdio_handle_activate_check() (Mete Durlu) [2043836]
+- [s390] s390/qdio: clean up access to queue in qdio_handle_activate_check() (Mete Durlu) [2043836]
+- [s390] s390/qdio: avoid allocating the qdio_irq with GFP_DMA (Mete Durlu) [2043836]
+- [s390] s390/qdio: improve handling of CIWs (Mete Durlu) [2043836]
+- [s390] s390/qdio: remove QDIO_SBAL_SIZE macro (Mete Durlu) [2043836]
+- [s390] scsi: zfcp: fix kernel doc comments (Mete Durlu) [2043836]
+- [s390] s390/qdio: remove unused support for SLIB parameters (Mete Durlu) [2043836]
+- [s390] s390/qdio: consolidate QIB code (Mete Durlu) [2043836]
+- [s390] s390/qdio: use dev_info() in qdio_print_subchannel_info() (Mete Durlu) [2043836]
+- [s390] s390/qdio: fine-tune the queue sync (Mete Durlu) [2043836]
+- [s390] s390/qdio: clean up SIGA capability tracking (Mete Durlu) [2043836]
+- [s390] s390/qdio: remove unused sync-after-IRQ infrastructure (Mete Durlu) [2043836]
+- [s390] s390/qdio: use absolute data address in ESTABLISH ccw (Mete Durlu) [2043836]
+- [s390] s390/qdio: remove unused macros (Mete Durlu) [2043836]
+- [s390] s390/qdio: clarify reporting of errors to the drivers (Mete Durlu) [2043836]
+- [s390] s390/qdio: remove unneeded siga-sync for Output Queue (Mete Durlu) [2043836]
+- [s390] s390/qdio: remove remaining tasklet & timer code (Mete Durlu) [2043836]
+- ice: clear stale Tx queue settings before configuring (Petr Oros) [2079926]
+- ice: fix crash when writing timestamp on RX rings (Petr Oros) [2079926]
+- ice: Fix race during aux device (un)plugging (Petr Oros) [2079926]
+- ice: fix PTP stale Tx timestamps cleanup (Petr Oros) [2079926]
+- ice: ice_sched: fix an incorrect NULL check on list iterator (Petr Oros) [2079926]
+- ice: fix use-after-free when deinitializing mailbox snapshot (Petr Oros) [2079926]
+- ice: wait 5 s for EMP reset after firmware flash (Petr Oros) [2079926]
+- ice: Protect vf_state check by cfg_lock in ice_vc_process_vf_msg() (Petr Oros) [2079926]
+- ice: Fix incorrect locking in ice_vc_process_vf_msg() (Petr Oros) [2079926]
+- ice: Fix memory leak in ice_get_orom_civd_data() (Petr Oros) [2079926]
+- ice: fix crash in switchdev mode (Petr Oros) [2079926]
+- Revert "iavf: Fix deadlock occurrence during resetting VF interface" (Petr Oros) [2079926]
+- ice: arfs: fix use-after-free when freeing @rx_cpu_rmap (Petr Oros) [2079926]
+- ice: clear cmd_type_offset_bsz for TX rings (Petr Oros) [2079926]
+- ice: xsk: fix VSI state check in ice_xsk_wakeup() (Petr Oros) [2079926]
+- ice: synchronize_rcu() when terminating rings (Petr Oros) [2079926]
+- ice: Do not skip not enabled queues in ice_vc_dis_qs_msg (Petr Oros) [2079926]
+- ice: Set txq_teid to ICE_INVAL_TEID on ring creation (Petr Oros) [2079926]
+- ice: Fix broken IFF_ALLMULTI handling (Petr Oros) [2079926]
+- ice: Fix MAC address setting (Petr Oros) [2079926]
+- redhat/configs: Remove CONFIG_MFD_INTEL_PMT (Prarit Bhargava) [2058805]
+- redhat/configs: Add CONFIG_INTEL_VSEC (Prarit Bhargava) [2058805]
+- platform/x86/intel: Move intel_pmt from MFD to Auxiliary Bus (Prarit Bhargava) [2058805]
+- PCI: Add #defines for accessing PCIe DVSEC fields (Prarit Bhargava) [2058805]
+- platform/x86: intel_pmt_telemetry: Ignore zero sized entries (Prarit Bhargava) [2058805]
+- platform/x86/intel: pmt: Use y instead of objs in Makefile (Prarit Bhargava) [2058805]
+- platform/x86/intel: Move Intel PMT drivers to new subfolder (Prarit Bhargava) [2058805]
+- dlm: fix plock invalid read (Alexander Aring) [2053095]
+- NFS: LOOKUP_DIRECTORY is also ok with symlinks (Scott Mayhew) [2059727]
+- NFSv4: nfs_atomic_open() can race when looking up a non-regular file (Scott Mayhew) [2059727]
+- NFSv4: Handle case where the lookup of a directory fails (Scott Mayhew) [2059727]
+- redhat: always tag non-maintainer builds with .gXXXX (Jarod Wilson)
+- mm, compaction: fast_find_migrateblock() should return pfn in the target zone (Rafael Aquini) [2067130]
+- [s390] s390/pci: expose a PCI device's UID as its index (Mete Durlu) [1939916]
+- [s390] s390/pci: expose UID uniqueness guarantee (Mete Durlu) [1939916]
+- [s390] s390/pci: Documentation for zPCI (Mete Durlu) [1939916]
+- powerpc/fadump: print start of preserved area (Diego Domingos) [2075092]
+- powerpc/fadump: align destination address to pagesize (Diego Domingos) [2075092]
+- powerpc/fadump: fix PT_LOAD segment for boot memory area (Diego Domingos) [2075092]
+- dmaengine: idxd: make idxd_wq_enable() return 0 if wq is already enabled (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: Remove unnecessary synchronize_irq() before free_irq() (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: add missing callback function to support DMA_INTERRUPT (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: skip irq free when wq type is not kernel (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: make idxd_register/unregister_dma_channel() static (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: remove redudant idxd_wq_disable_cleanup() call (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: free irq before wq type is reset (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: fix lockdep warning on device driver removal (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: Separate user and kernel pasid enabling (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: refactor wq driver enable/disable operations (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: move wq irq enabling to after device enable (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: set max_xfer and max_batch for RO device (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: Fix the error handling path in idxd_cdev_register() (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: set DMA_INTERRUPT cap bit (Jerry Snitselaar) [2083414]
+- dmaengine: add verification of DMA_INTERRUPT capability for dmatest (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: remove trailing white space on input str for wq name (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: don't load pasid config until needed (Jerry Snitselaar) [2083414]
+- dmaengine: idxd: fix retry value to be constant for duration of function call (Jerry Snitselaar) [2075705]
+- dmaengine: idxd: match type for retries var in idxd_enqcmds() (Jerry Snitselaar) [2075705]
+- net: mana: Reuse XDP dropped page (Mohammed Gamal) [2086556]
+- net: mana: Add counter for XDP_TX (Mohammed Gamal) [2086556]
+- net: mana: Add counter for packet dropped by XDP (Mohammed Gamal) [2086556]
+- net: mana: Use struct_size() helper in mana_gd_create_dma_region() (Mohammed Gamal) [2086556]
+- SUNRPC release the transport of a relocated task with an assigned transport (Scott Mayhew) [2023840]
+- SUNRPC: Do not dereference non-socket transports in sysfs (Scott Mayhew) [2023840]
+- SUNRPC don't resend a task on an offlined transport (Scott Mayhew) [2023840]
+- SUNRPC: lock against ->sock changing during sysfs read (Scott Mayhew) [2023840]
+- SUNRPC: Check if the xprt is connected before handling sysfs reads (Scott Mayhew) [2023840]
+- SUNRPC: Add dst_port to the sysfs xprt info file (Scott Mayhew) [2023840]
+- SUNRPC: Add srcaddr as a file in sysfs (Scott Mayhew) [2023840]
+- sunrpc: Fix return value of get_srcport() (Scott Mayhew) [2023840]
+- sunrpc: remove an offlined xprt using sysfs (Scott Mayhew) [2023840]
+- sunrpc: display xprt's queuelen of assigned tasks via sysfs (Scott Mayhew) [2023840]
+- SUNRPC: take a xprt offline using sysfs (Scott Mayhew) [2023840]
+- SUNRPC for TCP display xprt's source port in sysfs xprt_info (Scott Mayhew) [2023840]
+- SUNRPC query transport's source port (Scott Mayhew) [2023840]
+- SUNRPC display xprt's main value in sysfs's xprt_info (Scott Mayhew) [2023840]
+- SUNRPC mark the first transport (Scott Mayhew) [2023840]
+- NFSv4.1 identify and mark RPC tasks that can move between transports (Scott Mayhew) [2023840]
+- sunrpc: provide showing transport's state info in the sysfs directory (Scott Mayhew) [2023840]
+- sunrpc: provide multipath info in the sysfs directory (Scott Mayhew) [2023840]
+- sunrpc: provide transport info in the sysfs directory (Scott Mayhew) [2023840]
+- sunrpc: add dst_attr attributes to the sysfs xprt directory (Scott Mayhew) [2023840]
+- sunrpc: add add sysfs directory per xprt under each xprt_switch (Scott Mayhew) [2023840]
+- sunrpc: add a symlink from rpc-client directory to the xprt_switch (Scott Mayhew) [2023840]
+- sunrpc: add xprt_switch direcotry to sunrpc's sysfs (Scott Mayhew) [2023840]
+- sunrpc: keep track of the xprt_class in rpc_xprt structure (Scott Mayhew) [2023840]
+- sunrpc: add IDs to multipath (Scott Mayhew) [2023840]
+- sunrpc: add xprt id (Scott Mayhew) [2023840]
+- sunrpc: Create per-rpc_clnt sysfs kobjects (Scott Mayhew) [2023840]
+- sunrpc: Create a client/ subdirectory in the sunrpc sysfs (Scott Mayhew) [2023840]
+- sunrpc: Create a sunrpc directory under /sys/kernel/ (Scott Mayhew) [2023840]
+- vfs: check fd has read access in kernel_read_file_from_fd() (Ian Kent) [2040615]
+- SUNRPC: Fix NFSD's request deferral on RDMA transports (Benjamin Coddington) [2090525]
+- vdpa/mlx5: Use consistent RQT size (Cindy Lu) [2063108]
+- vdpa/mlx5: add validation for VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET command (Cindy Lu) [2063108]
+- vdpa/mlx5: should verify CTRL_VQ feature exists for MQ (Cindy Lu) [2063108]
+- gfs2: Stop using glock holder auto-demotion for now (Andreas Gruenbacher) [2054855]
+- gfs2: buffered write prefaulting (Andreas Gruenbacher) [2054855]
+- gfs2: Align read and write chunks to the page cache (Andreas Gruenbacher) [2054855]
+- gfs2: Pull return value test out of should_fault_in_pages (Andreas Gruenbacher) [2054855]
+- gfs2: Clean up use of fault_in_iov_iter_{read,write}able (Andreas Gruenbacher) [2054855]
+- gfs2: Variable rename (Andreas Gruenbacher) [2054855]
+- gfs2: Fix filesystem block deallocation for short writes (Andreas Gruenbacher) [2054855]
+- iomap: iomap_write_end cleanup (Andreas Gruenbacher) [2054855]
+- iomap: iomap_write_failed fix (Andreas Gruenbacher) [2054855]
+- gfs2: Don't re-check for write past EOF unnecessarily (Andreas Gruenbacher) [2054855]
+- gfs2: No short reads or writes upon glock contention (Andreas Gruenbacher) [2054855]
+- fs/iomap: Fix buffered write page prefaulting (Andreas Gruenbacher) [2054855]
+- generic_perform_write()/iomap_write_actor(): saner logics for short copy (Andreas Gruenbacher) [2054855]
+- iomap: Convert iomap_write_end types (Andreas Gruenbacher) [2054855]
+- gfs2: Make sure not to return short direct writes (Andreas Gruenbacher) [2054855]
+- gfs2: Remove dead code in gfs2_file_read_iter (Andreas Gruenbacher) [2054855]
+- gfs2: Fix gfs2_file_buffered_write endless loop workaround (Andreas Gruenbacher) [2054855]
+- gfs2: Minor retry logic cleanup (Andreas Gruenbacher) [2054855]
+- gfs2: Disable page faults during lockless buffered reads (Andreas Gruenbacher) [2054855]
+- gfs2: Fix should_fault_in_pages() logic (Andreas Gruenbacher) [2054855]
+- mm: gup: make fault_in_safe_writeable() use fixup_user_fault() (Andreas Gruenbacher) [2054855]
+- gfs2: Initialize gh_error in gfs2_glock_nq (Andreas Gruenbacher) [2054855]
+- gfs2: Switch lock order of inode and iopen glock (Andreas Gruenbacher) [2054855]
+- gfs2: cancel timed-out glock requests (Andreas Gruenbacher) [2054855]
+- gfs2: Expect -EBUSY after canceling dlm locking requests (Andreas Gruenbacher) [2054855]
+- gfs2: gfs2_setattr_size error path fix (Andreas Gruenbacher) [2054855]
+- gfs2: assign rgrp glock before compute_bitstructs (Bob Peterson) [2054855]
+- gfs2: Fix gfs2_release for non-writers regression (Bob Peterson) [1955591]
+- gfs2: gfs2_create_inode rework (Andreas Gruenbacher) [1955591]
+- gfs2: gfs2_inode_lookup rework (Andreas Gruenbacher) [1955591]
+- gfs2: gfs2_inode_lookup cleanup (Andreas Gruenbacher) [1955591]
+- gfs2: Fix remote demote of weak glock holders (Andreas Gruenbacher) [1955591]
+- gfs2: Fix glock_hash_walk bugs (Andreas Gruenbacher) [1955591]
+- gfs2: Cancel remote delete work asynchronously (Bob Peterson) [1955591]
+- gfs2: set glock object after nq (Bob Peterson) [1955591]
+- gfs2: remove RDF_UPTODATE flag (Bob Peterson) [1955591]
+- gfs2: Eliminate GIF_INVALID flag (Bob Peterson) [1955591]
+- gfs2: Fix atomic bug in gfs2_instantiate (Andreas Gruenbacher) [1955591]
+- gfs2: fix GL_SKIP node_scope problems (Bob Peterson) [1955591]
+- gfs2: Add some flags missing from glock output (Bob Peterson) [1955591]
+- gfs2: split glock instantiation off from do_promote (Bob Peterson) [1955591]
+- gfs2: further simplify do_promote (Bob Peterson) [1955591]
+- gfs2: re-factor function do_promote (Bob Peterson) [1955591]
+- gfs2: Remove 'first' trace_gfs2_promote argument (Andreas Gruenbacher) [1955591]
+- gfs2: change go_lock to go_instantiate (Bob Peterson) [1955591]
+- gfs2: Switch some BUG_ON to GLOCK_BUG_ON for debug (Bob Peterson) [1955591]
+- gfs2: move GL_SKIP check from glops to do_promote (Bob Peterson) [1955591]
+- gfs2: Add GL_SKIP holder flag to dump_holder (Bob Peterson) [1955591]
+- gfs2: remove redundant check in gfs2_rgrp_go_lock (Bob Peterson) [1955591]
+- gfs2: Fix mmap + page fault deadlocks for direct I/O (Andreas Gruenbacher) [1955591]
+- iov_iter: Introduce ITER_IOVEC_FLAG_NOFAULT flag to disable page faults (Andreas Gruenbacher) [1955591]
+- gup: Introduce FOLL_NOFAULT flag to disable page faults (Andreas Gruenbacher) [1955591]
+- iomap: Add done_before argument to iomap_dio_rw (Andreas Gruenbacher) [1955591]
+- iomap: Support partial direct I/O on user copy failures (Andreas Gruenbacher) [1955591]
+- iomap: Fix iomap_dio_rw return value for user copies (Andreas Gruenbacher) [1955591]
+- iomap: support reading inline data from non-zero pos (Andreas Gruenbacher) [1955591]
+- gfs2: Only dereference i->iov when iter_is_iovec(i) (Andreas Gruenbacher) [1955591]
+- gfs2: Prevent endless loops in gfs2_file_buffered_write (Andreas Gruenbacher) [1955591]
+- gfs2: Fix mmap + page fault deadlocks for buffered I/O (Andreas Gruenbacher) [1955591]
+- gfs2: Eliminate ip->i_gh (Andreas Gruenbacher) [1955591]
+- gfs2: Move the inode glock locking to gfs2_file_buffered_write (Andreas Gruenbacher) [1955591]
+- gfs2: Fix "Introduce flag for glock holder auto-demotion" (Andreas Gruenbacher) [1955591]
+- gfs2: Introduce flag for glock holder auto-demotion (Bob Peterson) [1955591]
+- gfs2: fix scheduling while atomic bug in glocks (Bob Peterson) [1955591]
+- gfs2: Clean up function may_grant (Andreas Gruenbacher) [1955591]
+- gfs2: Add wrapper for iomap_file_buffered_write (Andreas Gruenbacher) [1955591]
+- iov_iter: Introduce fault_in_iov_iter_writeable (Andreas Gruenbacher) [1955591]
+- iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable (Andreas Gruenbacher) [1955591]
+- gup: Turn fault_in_pages_{readable,writeable} into fault_in_{readable,writeable} (Andreas Gruenbacher) [1955591]
+- powerpc/signal64: Don't opencode page prefaulting (Andreas Gruenbacher) [1955591]
+- sanitize iov_iter_fault_in_readable() (Andreas Gruenbacher) [1955591]
+- [xarray] iov_iter_fault_in_readable() should do nothing in xarray case (Andreas Gruenbacher) [1955591]
+- powerpc/kvm: Fix kvm_use_magic_page (Andreas Gruenbacher) [1955591]
+- iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value (Andreas Gruenbacher) [1955591]
+- gfs2: Fix length of holes reported at end-of-file (Andreas Gruenbacher) [1955591]
+- gfs2: Remove redundant check from gfs2_glock_dq (Bob Peterson) [1955591]
+- gfs2: release iopen glock early in evict (Bob Peterson) [1955591]
+- mm: change fault_in_pages_* to have an unsigned size parameter (Andreas Gruenbacher) [1955591]
+- gfs2: Eliminate vestigial HIF_FIRST (Bob Peterson) [1955591]
+- iomap: remove the iomap arguments to ->page_{prepare,done} (Andreas Gruenbacher) [1955591]
+- net: sched: fix use-after-free in tc_new_tfilter() (Ivan Vecera) [2071704]
+
+* Fri Jun 03 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-398.el8]
+- Bluetooth: virtio_bt: fix memory leak in virtbt_rx_handle() (Gopal Tiwari) [2076180]
+- powerpc/papr_scm: Fix buffer overflow issue with CONFIG_FORTIFY_SOURCE (Gustavo Walbon) [2069468]
+- powerpc/papr_scm: Fix build failure when (Gustavo Walbon) [2069468]
+- drivers/nvdimm: Fix build failure when CONFIG_PERF_EVENTS is not set (Gustavo Walbon) [2069468]
+- powerpc/papr_scm: Add perf interface support (Gustavo Walbon) [2069468]
+- drivers/nvdimm: Add perf interface to expose nvdimm performance stats (Gustavo Walbon) [2069468]
+- drivers/nvdimm: Add nvdimm pmu structure (Gustavo Walbon) [2069468]
+- mptcp: Fix crash due to tcp_tsorted_anchor was initialized before release skb (Davide Caratti) [2084048]
+- mptcp: Correctly set DATA_FIN timeout when number of retransmits is large (Davide Caratti) [2084048]
+- mptcp: add mibs counter for ignored incoming options (Davide Caratti) [2084048]
+- mptcp: fix race in incoming ADD_ADDR option processing (Davide Caratti) [2084048]
+- mptcp: netlink: process IPv6 addrs in creating listening sockets (Davide Caratti) [2084048]
+- mptcp: use delegate action to schedule 3rd ack retrans (Davide Caratti) [2084048]
+- mptcp: fix delack timer (Davide Caratti) [2084048]
+- powerpc/module_64: use module_init_section instead of patching names (Jan Stancek) [1985851]
+- module: check for exit sections in layout_sections() instead of module_init_section() (Jan Stancek) [1985851]
+- module: treat exit sections the same as init sections when !CONFIG_MODULE_UNLOAD (Jan Stancek) [1985851]
+- module: allow arch overrides for .exit section names (Jan Stancek) [1985851]
+- ARM: 8976/1: module: allow arch overrides for .init section names (Jan Stancek) [1985851]
+- KVM: s390: pv: make use of ultravisor AIV support (Thomas Huth) [2043870]
+- redhat: Enable VM kselftests (Nico Pache) [1978539]
+- selftests: vm: Makefile: rename TARGETS to VMTARGETS (Nico Pache) [1978539]
+- redhat: enable CONFIG_TEST_VMALLOC for vm selftests (Nico Pache) [1978539]
+- redhat: enable GUP TEST for kselftests (Nico Pache) [1978539]
+- redhat: Enable HMM test to be used by the kselftest test suite (Nico Pache) [1978539]
+- selftests/vm/pkeys: fix alloc_random_pkey() to make it really, really random (Nico Pache) [1978539]
+- selftests/vm: fix display of page size in map_hugetlb (Nico Pache) [1978539]
+- selftests/vm: fix building protection keys test (Nico Pache) [1978539]
+- lib/test_vmalloc.c: do not create cpumask_t variable on stack (Nico Pache) [1978539]
+- vmalloc: add test driver to analyse vmalloc allocator (Nico Pache) [1978539]
+- vmalloc: export __vmalloc_node_range for CONFIG_TEST_VMALLOC_MODULE (Nico Pache) [1978539]
+- selftests/vm: add protection_keys_32 / protection_keys_64 to gitignore (Nico Pache) [1978539]
+- selftests/vm: rename file run_vmtests to run_vmtests.sh (Nico Pache) [1978539]
+- mm/gup_benchmark: support threading (Nico Pache) [1978539]
+- selftests/vm: gup_test: test faulting in kernel, and verify pinnable pages (Nico Pache) [1978539]
+- selftests/vm: gup_test: fix test flag (Nico Pache) [1978539]
+- selftests/vm: fix out-of-tree build (Nico Pache) [1978539]
+- selftests/vm: 2x speedup for run_vmtests.sh (Nico Pache) [1978539]
+- selftests/vm: hmm-tests: remove the libhugetlbfs dependency (Nico Pache) [1978539]
+- selftests/vm: run_vmtests.sh: update and clean up gup_test invocation (Nico Pache) [1978539]
+- selftests/vm: gup_test: introduce the dump_pages() sub-test (Nico Pache) [1978539]
+- selftests/vm: only some gup_test items are really benchmarks (Nico Pache) [1978539]
+- selftests/vm: minor cleanup: Makefile and gup_test.c (Nico Pache) [1978539]
+- selftests/vm: rename run_vmtests --> run_vmtests.sh (Nico Pache) [1978539]
+- selftests/vm: use a common gup_test.h (Nico Pache) [1978539]
+- mm/gup_benchmark: rename to mm/gup_test (Nico Pache) [1978539]
+- tools/testing/selftests/vm: fix build error (Nico Pache) [1978539]
+- selftests: vm: add fragment CONFIG_GUP_BENCHMARK (Nico Pache) [1978539]
+- selftests/vm: 8x compaction_test speedup (Nico Pache) [1978539]
+- selftests/vm: fix incorrect gcc invocation in some cases (Nico Pache) [1978539]
+- selftests/vm: fix false build success on the second and later attempts (Nico Pache) [1978539]
+- mm/gup: don't permit users to call get_user_pages with FOLL_LONGTERM (Nico Pache) [1978539]
+- mm/gup_benchmark: use pin_user_pages for FOLL_LONGTERM flag (Nico Pache) [1978539]
+- mm/gup_benchmark: update the documentation in Kconfig (Nico Pache) [1978539]
+- khugepaged: selftests: fix timeout condition in wait_for_scan() (Nico Pache) [1978539]
+- selftests: vm: pkeys: fix multilib builds for x86 (Nico Pache) [1978539]
+- selftests: vm: pkeys: use the correct page size on powerpc (Nico Pache) [1978539]
+- selftests/vm/pkeys: override access right definitions on powerpc (Nico Pache) [1978539]
+- selftests/vm/pkeys: test correct behaviour of pkey-0 (Nico Pache) [1978539]
+- selftests/vm/pkeys: introduce a sub-page allocator (Nico Pache) [1978539]
+- selftests/vm/pkeys: detect write violation on a mapped access-denied-key page (Nico Pache) [1978539]
+- selftests/vm/pkeys: associate key on a mapped page and detect write violation (Nico Pache) [1978539]
+- selftests/vm/pkeys: associate key on a mapped page and detect access violation (Nico Pache) [1978539]
+- selftests/vm/pkeys: improve checks to determine pkey support (Nico Pache) [1978539]
+- selftests/vm/pkeys: fix assertion in test_pkey_alloc_exhaust() (Nico Pache) [1978539]
+- selftests/vm/pkeys: fix number of reserved powerpc pkeys (Nico Pache) [1978539]
+- selftests/vm/pkeys: introduce powerpc support (Nico Pache) [1978539]
+- selftests/vm/pkeys: introduce generic pkey abstractions (Nico Pache) [1978539]
+- selftests: vm: pkeys: use the correct huge page size (Nico Pache) [1978539]
+- selftests/vm/pkeys: fix alloc_random_pkey() to make it really random (Nico Pache) [1978539]
+- selftests/vm/pkeys: fix assertion in pkey_disable_set/clear() (Nico Pache) [1978539]
+- selftests/vm/pkeys: fix pkey_disable_clear() (Nico Pache) [1978539]
+- selftests: vm: pkeys: add helpers for pkey bits (Nico Pache) [1978539]
+- selftests: vm: pkeys: Use sane types for pkey register (Nico Pache) [1978539]
+- selftests/vm/pkeys: make gcc check arguments of sigsafe_printf() (Nico Pache) [1978539]
+- selftests/vm/pkeys: move some definitions to arch-specific header (Nico Pache) [1978539]
+- selftests/vm/pkeys: move generic definitions to header file (Nico Pache) [1978539]
+- selftests/vm/pkeys: rename all references to pkru to a generic name (Nico Pache) [1978539]
+- selftests/x86/pkeys: move selftests to arch-neutral directory (Nico Pache) [1978539]
+- selftests/vm: 10x speedup for hmm-tests (Nico Pache) [1978539]
+- mm/migrate: add migrate-shared test for migrate_vma_*() (Nico Pache) [1978539]
+- mm/migrate: optimize migrate_vma_setup() for holes (Nico Pache) [1978539]
+- lib/test_hmm: use vma_lookup() in dmirror_migrate() (Nico Pache) [1978539]
+- lib/test_hmm.c: fix an error code in dmirror_allocate_chunk() (Nico Pache) [1978539]
+- lib/test_hmm.c: remove unused dmirror_zero_page (Nico Pache) [1978539]
+- mm/memremap_pages: support multiple ranges per invocation (Nico Pache) [1978539]
+- mm/memremap_pages: convert to 'struct range' (Nico Pache) [1978539]
+- tools/testing/selftests/vm/hmm-tests.c: use the new SKIP() macro (Nico Pache) [1978539]
+- mm/hmm/test: use the new migration invalidation (Nico Pache) [1978539]
+- lib/test_hmm.c: add a flag parameter to migrate_vma (Nico Pache) [1978539]
+- mm/hmm: add tests for hmm_pfn_to_map_order() (Nico Pache) [1978539]
+- lib: fix test_hmm.c reference after free (Nico Pache) [1978539]
+- mm/hmm/test: add selftests for HMM (Nico Pache) [1978539]
+- mm/hmm/test: add selftest driver for HMM (Nico Pache) [1978539]
+- mm: convert insert_pfn() to vm_fault_t (Nico Pache) [1978539]
+- selftests/vm/.gitignore: add mremap_dontunmap (Nico Pache) [1978539]
+- selftests: vm: Fix 64-bit test builds for powerpc64le (Nico Pache) [1978539]
+- selftests: vm: Do not override definition of ARCH (Nico Pache) [1978539]
+- selftests/vm: fix map_hugetlb length used for testing read and write (Nico Pache) [1978539]
+- selftests/vm: add missed tests in run_vmtests (Nico Pache) [1978539]
+- selftests: vm: add fragment CONFIG_TEST_VMALLOC (Nico Pache) [1978539]
+- selftests: vm: Build/Run 64bit tests only on 64bit arch (Nico Pache) [1978539]
+- selftests: vm: Fix test build failure when built by itself (Nico Pache) [1978539]
+- selftests: vm: install test_vmalloc.sh for run_vmtests (Nico Pache) [1978539]
+- tools: mark 'test_vmalloc.sh' executable (Nico Pache) [1978539]
+- tools/selftest/vm: allow choosing mem size and page size in map_hugetlb (Nico Pache) [1978539]
+- selftests/vm: add script helper for CONFIG_TEST_VMALLOC_MODULE (Nico Pache) [1978539]
+- tools/testing/selftests/vm/map_fixed_noreplace.c: add test for MAP_FIXED_NOREPLACE (Nico Pache) [1978539]
+- tools/testing/selftests/vm/: add MAP_POPULATE test (Nico Pache) [1978539]
+- xfs: return errors in xfs_fs_sync_fs (Andrey Albershteyn) [2087991]
+- vfs: make sync_filesystem return errors from ->sync_fs (Andrey Albershteyn) [2087991]
+- PCI: hv: Remove unused hv_set_msi_entry_from_desc() (Mohammed Gamal) [2086560]
+- PCI: hv: Avoid the retarget interrupt hypercall in irq_unmask() on ARM64 (Mohammed Gamal) [2086560]
+- PCI: hv: Fix NUMA node assignment when kernel boots with custom NUMA topology (Mohammed Gamal) [2086560]
+- PCI: hv: Use PCI_ERROR_RESPONSE to identify config read errors (Mohammed Gamal) [2086560]
+- vdpa: clean up get_config_size ret value handling (Cindy Lu) [2059841]
+- vdpa: mlx5: synchronize driver status with CVQ (Jason Wang) [2048009]
+- vdpa: mlx5: prevent cvq work from hogging CPU (Jason Wang) [2048009]
+- vdpa/mlx5: Avoid processing works if workqueue was destroyed (Cindy Lu) [2048009]
+- cpufreq: Cancel policy update work scheduled before freeing (Prarit Bhargava) [2083728]
+- tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT (Paolo Abeni) [2081411]
+- tcp: ensure to use the most recently sent skb when filling the rate sample (Paolo Abeni) [2081411]
+- tcp: make sure treq->af_specific is initialized (Paolo Abeni) [2081411]
+- tcp: md5: incorrect tcp_header_len for incoming connections (Paolo Abeni) [2081411]
+- tcp: ensure PMTU updates are processed during fastopen (Paolo Abeni) [2081411]
+- tcp: add missing tcp_skb_can_collapse() test in tcp_shift_skb_data() (Paolo Abeni) [2081411]
+- inet: fully convert sk->sk_rx_dst to RCU rules (Paolo Abeni) [2081411]
+- tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited flows (Paolo Abeni) [2081411]
+
+* Tue May 31 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-397.el8]
+- selftests/bpf/test_xdp_redirect_multi: use temp netns for testing (Felix Maurer) [2017875]
+- selftests/bpf/xdp_redirect_multi: Limit the tests in netns (Jiri Benc) [2017875]
+- selftests/bpf/xdp_redirect_multi: Give tcpdump a chance to terminate cleanly (Jiri Benc) [2017875]
+- selftests/bpf/xdp_redirect_multi: Use arping to accurate the arp number (Jiri Benc) [2017875]
+- selftests/bpf/xdp_redirect_multi: Put the logs to tmp folder (Jiri Benc) [2017875]
+- bpf, sockmap: Zap ingress queues after stopping strparser (Jiri Benc) [2017875]
+- xdp, net: Fix use-after-free in bpf_xdp_link_release (Jiri Benc) [2017875]
+- doc, af_xdp: Fix bind flags option typo (Jiri Benc) [2017875]
+- bpf, devmap: Convert remaining READ_ONCE() to rcu_dereference_check() (Jiri Benc) [2017875]
+- xdp: Move the rxq_info.mem clearing to unreg_mem_model() (Jiri Benc) [2017875]
+- bpf, sched: Remove unneeded rcu_read_lock() around BPF program invocation (Jiri Benc) [2017875]
+- xdp: Add proper __rcu annotations to redirect map entries (Jiri Benc) [2017875]
+- doc: Give XDP as example of non-obvious RCU reader/updater pairing (Jiri Benc) [2017875]
+- doc: Clarify and expand RCU updaters and corresponding readers (Jiri Benc) [2017875]
+- bpfilter: Specify the log level for the kmsg message (Jiri Benc) [2017875]
+- docs, af_xdp: Consistent indentation in examples (Jiri Benc) [2017875]
+- xsk: Fix missing validation for skb and unaligned mode (Jiri Benc) [2017875]
+- bpf: Support all gso types in bpf_skb_change_proto() (Jiri Benc) [2017875]
+- bpf: Do not change gso_size during bpf_skb_change_proto() (Jiri Benc) [2017875]
+- Revert "bpf: Check for BPF_F_ADJ_ROOM_FIXED_GSO when bpf_skb_change_proto" (Jiri Benc) [2017875]
+- selftests/bpf: Add xdp_redirect_multi into .gitignore (Jiri Benc) [2017875]
+- bpf, devmap: Remove drops variable from bq_xmit_all() (Jiri Benc) [2017875]
+- locking/atomic: net: use linux/atomic.h for xchg & cmpxchg (Jiri Benc) [2017875]
+- xsk: Use kvcalloc to support large umems (Jiri Benc) [2017875]
+- selftests/bpf: Add xdp_redirect_multi test (Jiri Benc) [2017875]
+- sample/bpf: Add xdp_redirect_map_multi for redirect_map broadcast test (Jiri Benc) [2017875]
+- xdp: Extend xdp_redirect_map with broadcast support (Jiri Benc) [2017875]
+- bpf: Let bpf_warn_invalid_xdp_action() report more info (Felix Maurer) [2017875]
+- bpf: Run devmap xdp_prog on flush instead of bulk enqueue (Jiri Benc) [2017875]
+- skmsg: Remove unused parameters of sk_msg_wait_data() (Jiri Benc) [2017875]
+- bpf: Use struct_size() in kzalloc() (Jiri Benc) [2017875]
+- bpf: Check for BPF_F_ADJ_ROOM_FIXED_GSO when bpf_skb_change_proto (Jiri Benc) [2017875]
+- treewide: Replace zero-length arrays with flexible-array members (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Bump driver version to 8.0.0.68.0 (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Update the copyright year (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Update MPI3 headers (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Fix formatting problems in some kernel-doc comments (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Fix some spelling mistakes (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Bump driver version to 8.0.0.61.0 (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Add io_uring interface support in I/O-polled mode (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Print cable mngnt and temp threshold events (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Support Prepare for Reset event (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Add Event acknowledgment logic (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Gracefully handle online FW update operation (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Detect async reset that occurred in firmware (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Add IOC reinit function (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Handle offline FW activation in graceful manner (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Code refactor of IOC init - part2 (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Code refactor of IOC init - part1 (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Fault IOC when internal command gets timeout (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Display IOC firmware package version (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Handle unaligned PLL in unmap cmnds (Tomas Henzl) [2049660]
+- scsi: mpi3mr: Add support for PCIe Managed Switch SES device (Tomas Henzl) [2049660]
+- [s390] s390/cio: verify the driver availability for path_event call (Mete Durlu) [2058620]
+- selinux: fix bad cleanup on error in hashtab_duplicate() (Ondrej Mosnacek) [2005890]
+- selinux: fix race between old and new sidtab (Ondrej Mosnacek) [2005890]
+- selinux: fix cond_list corruption when changing booleans (Ondrej Mosnacek) [2005890]
+- selinux: make nslot handling in avtab more robust (Ondrej Mosnacek) [2005890]
+- selinuxfs: unify policy load error reporting (Ondrej Mosnacek) [2005890]
+- selinux: fix variable scope issue in live sidtab conversion (Ondrej Mosnacek) [2005890]
+- selinux: don't log MAC_POLICY_LOAD record on failed policy load (Ondrej Mosnacek) [2005890]
+- selinux: simplify away security_policydb_len() (Ondrej Mosnacek) [2005890]
+- selinux: move policy mutex to selinux_state, use in lockdep checks (Ondrej Mosnacek) [2005890]
+- selinux: fix error handling bugs in security_load_policy() (Ondrej Mosnacek) [2005890]
+- selinux: convert policy read-write lock to RCU (Ondrej Mosnacek) [2005890]
+- selinux: Create new booleans and class dirs out of tree (Ondrej Mosnacek) [2005890]
+- selinux: Standardize string literal usage for selinuxfs directory names (Ondrej Mosnacek) [2005890]
+- selinux: Refactor selinuxfs directory populating functions (Ondrej Mosnacek) [2005890]
+- selinux: Create function for selinuxfs directory cleanup (Ondrej Mosnacek) [2005890]
+- selinux: fix memdup.cocci warnings (Ondrej Mosnacek) [2005890]
+- selinux: avoid dereferencing the policy prior to initialization (Ondrej Mosnacek) [2005890]
+- selinux: fix allocation failure check on newpolicy->sidtab (Ondrej Mosnacek) [2005890]
+- selinux: refactor changing booleans (Ondrej Mosnacek) [2005890]
+- selinux: move policy commit after updating selinuxfs (Ondrej Mosnacek) [2005890]
+- selinux: encapsulate policy state, refactor policy load (Ondrej Mosnacek) [2005890]
+- Revert "selinux: fix deadlock in security_set_bools()" (Ondrej Mosnacek) [2005890]
+- thunderx nic: mark device as deprecated (Íñigo Huguet) [2060286]
+- cpufreq: intel_pstate: Add Ice Lake server to out-of-band IDs (Vitaly Kuznetsov) [2091523]
+- [s390] s390/hypfs: include z/VM guests with access control group set (Mete Durlu) [2058621]
+- scsi: mpt3sas: Fix a few kernel-doc issues (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fix a typo (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Update driver version to 42.100.00.00 (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fix junk chars displayed while printing ChipName (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Use cached ATA Information VPD page (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fix adapter replyPostRegisterIndex declaration (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fix event callback log_code value handling (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fix ioc->base_readl() use (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fix writel() use (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fix _ctl_set_task_mid() TaskMID check (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fail reset operation if config request timed out (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove() (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Page fault in reply q processing (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Convert to flexible arrays (Tomas Henzl) [2049623]
+- scsi: mpt3sas: Update persistent trigger pages from sysfs interface (Tomas Henzl) [2049623]
+- Revert "netfilter: conntrack: tag conntracks picked up in local out hook" (Florian Westphal) [2062870]
+- Revert "netfilter: nat: force port remap to prevent shadowing well-known ports" (Florian Westphal) [2062870]
+- drm/amdgpu: vi: disable ASPM on Intel Alder Lake based systems (Michel Dänzer) [2066918]
+- drm/amd: Use amdgpu_device_should_use_aspm on navi umd pstate switching (Michel Dänzer) [2066918]
+- drm/amd: Refactor `amdgpu_aspm` to be evaluated per device (Michel Dänzer) [2066918]
+- drm/amd: Check if ASPM is enabled from PCIe subsystem (Michel Dänzer) [2066918]
+- [s390] s390/tape: fix timer initialization in tape_std_assign() (Mete Durlu) [2085420]
+- powerpc/pseries/vas: Use QoS credits from the userspace (Steve Best) [2075174]
+- thermal: don't make THERMAL_NETLINK 'default y' (Prarit Bhargava) [2040062]
+- redhat/configs: Add CONFIG_INTEL_HFI_THERMAL (Prarit Bhargava) [2040062]
+- thermal/drivers/core: Remove module unload code (Prarit Bhargava) [2040062]
+- thermal: core: Fix TZ_GET_TRIP NULL pointer dereference (Prarit Bhargava) [2040062]
+- thermal: intel: hfi: INTEL_HFI_THERMAL depends on NET (Prarit Bhargava) [2040062]
+- thermal: netlink: Fix parameter type of thermal_genl_cpu_capability_event() stub (Prarit Bhargava) [2040062]
+- thermal: intel: hfi: Notify user space for HFI events (Prarit Bhargava) [2040062]
+- thermal: netlink: Add a new event to notify CPU capabilities change (Prarit Bhargava) [2040062]
+- thermal: intel: hfi: Enable notification interrupt (Prarit Bhargava) [2040062]
+- thermal: intel: hfi: Handle CPU hotplug events (Prarit Bhargava) [2040062]
+- thermal: intel: hfi: Minimally initialize the Hardware Feedback Interface (Prarit Bhargava) [2040062]
+- x86/cpu: Add definitions for the Intel Hardware Feedback Interface (Prarit Bhargava) [2040062]
+- x86/Documentation: Describe the Intel Hardware Feedback Interface (Prarit Bhargava) [2040062]
+- thermal: intel: Allow processing of HWP interrupt (Prarit Bhargava) [2040062]
+- x86/thermal: Fix LVT thermal setup for SMI delivery mode (Prarit Bhargava) [2040062]
+- thermal: Move therm_throt there from x86/mce (Prarit Bhargava) [2040062]
+- thermal: core: Adding missing nlmsg_free() in thermal_genl_sampling_temp() (Prarit Bhargava) [2040062]
+- thermal: move to smaller ops wherever possible (Prarit Bhargava) [2040062]
+- thermal: add small version of ops (Prarit Bhargava) [2040062]
+- thermal: netlink: Improve the initcall ordering (Prarit Bhargava) [2040062]
+- thermal: core: remove redundant initialization of variable ret (Prarit Bhargava) [2040062]
+- thermal: netlink: Fix compilation error when CONFIG_NET=n (Prarit Bhargava) [2040062]
+- thermal: core: Fix thermal zone lookup by ID (Prarit Bhargava) [2040062]
+- thermal: core: Get thermal zone by id (Prarit Bhargava) [2040062]
+- thermal: core: Add helpers to browse the cdev, tz and governor list (Prarit Bhargava) [2040062]
+- thermal: Remove netlink support (Prarit Bhargava) [2040062]
+- thermal: core: genetlink support for events/cmd/sampling (Prarit Bhargava) [2040062]
+
+* Fri May 27 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-396.el8]
+- mailbox: pcc: Handle all PCC subtypes correctly in pcc_mbox_irq (Mark Langsdorf) [1997698]
+- i2c: xgene-slimpro: Fix wrong pointer passed to PTR_ERR() (Mark Langsdorf) [1997698]
+- ACPI: Make acpi_node_get_parent() local (Mark Langsdorf) [1997698]
+- ACPI: Get acpi_device's parent from the parent field (Mark Langsdorf) [1997698]
+- ACPI: PM: Fix device wakeup power reference counting error (Mark Langsdorf) [1997698]
+- ACPI: video: use platform backlight driver on Xiaomi Mi Pad 2 (Mark Langsdorf) [1997698]
+- ACPI: video: Drop dmi_system_id.ident settings from video_detect_dmi_table[] (Mark Langsdorf) [1997698]
+- ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses (Mark Langsdorf) [1997698]
+- ACPI: EC: Use ec_no_wakeup on HP ZHAN 66 Pro (Mark Langsdorf) [1997698]
+- ACPI: Add a convenience function to tell a device is in D0 state (Mark Langsdorf) [1997698]
+- ACPI: scan: Obtain device's desired enumeration power state (Mark Langsdorf) [1997698]
+- perf: qcom_l2_pmu: ACPI: Use ACPI_COMPANION() directly (Mark Langsdorf) [1997698]
+- ACPI/PCC: Add maintainer for PCC mailbox driver (Mark Langsdorf) [1997698]
+- mailbox: pcc: Add support for PCCT extended PCC subspaces(type 3/4) (Mark Langsdorf) [1997698]
+- mailbox: pcc: Drop handling invalid bit-width in {read,write}_register (Mark Langsdorf) [1997698]
+- mailbox: pcc: Avoid accessing PCCT table in pcc_send_data and pcc_mbox_irq (Mark Langsdorf) [1997698]
+- mailbox: pcc: Add PCC register bundle and associated accessor functions (Mark Langsdorf) [1997698]
+- mailbox: pcc: Rename doorbell ack to platform interrupt ack register (Mark Langsdorf) [1997698]
+- mailbox: pcc: Use PCC mailbox channel pointer instead of standard (Mark Langsdorf) [1997698]
+- mailbox: pcc: Add pcc_mbox_chan structure to hold shared memory region info (Mark Langsdorf) [1997698]
+- mailbox: pcc: Consolidate subspace doorbell register parsing (Mark Langsdorf) [1997698]
+- mailbox: pcc: Consolidate subspace interrupt information parsing (Mark Langsdorf) [1997698]
+- mailbox: pcc: Refactor all PCC channel information into a structure (Mark Langsdorf) [1997698]
+- mailbox: pcc: Fix kernel doc warnings (Mark Langsdorf) [1997698]
+- ACPI: glue: Use acpi_device_adr() in acpi_find_child_device() (Mark Langsdorf) [1997698]
+- ACPI: APEI: mark apei_hest_parse() static (Mark Langsdorf) [1997698]
+- ACPI: APEI: EINJ: Relax platform response timeout to 1 second (Mark Langsdorf) [1997698]
+- ACPI: resources: Add one more Medion model in IRQ override quirk (Mark Langsdorf) [1997698]
+- ACPI: AC: Quirk GK45 to skip reading _PSR (Mark Langsdorf) [1997698]
+- ACPI: PM: sleep: Do not set suspend_ops unnecessarily (Mark Langsdorf) [1997698]
+- ACPI: PRM: Handle memory allocation and memory remap failure (Mark Langsdorf) [1997698]
+- ACPI: PRM: Remove unnecessary blank lines (Mark Langsdorf) [1997698]
+- ACPI: PM: Turn off wakeup power resources on _DSW/_PSW errors (Mark Langsdorf) [1997698]
+- ACPI: PM: Fix sharing of wakeup power resources (Mark Langsdorf) [1997698]
+- ACPI: PM: Turn off unused wakeup power resources (Mark Langsdorf) [1997698]
+- ACPI: PM: Check states of power resources during initialization (Mark Langsdorf) [1997698]
+- hwmon: (acpi_power_meter) Use acpi_bus_get_acpi_device() (Mark Langsdorf) [1997698]
+- ACPI: replace snprintf() in "show" functions with sysfs_emit() (Mark Langsdorf) [1997698]
+- ACPI: LPSS: Use ACPI_COMPANION() directly (Mark Langsdorf) [1997698]
+- ACPI: battery: Accept charges over the design capacity as full (Mark Langsdorf) [1997698]
+- ACPICA: Update version to 20210930 (Mark Langsdorf) [1997698]
+- ACPICA: iASL table disassembler: Added disassembly support for the NHLT ACPI table (Mark Langsdorf) [1997698]
+- ACPICA: ACPI 6.4 SRAT: add Generic Port Affinity type (Mark Langsdorf) [1997698]
+- ACPICA: Add support for Windows 2020 _OSI string (Mark Langsdorf) [1997698]
+- ACPICA: Avoid evaluating methods too early during system resume (Mark Langsdorf) [1997698]
+- ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40 (Mark Langsdorf) [1997698]
+- ACPI: processor idle: Allow playing dead in C3 state (Mark Langsdorf) [1997698]
+- ACPI: Kconfig: Fix a typo in Kconfig (Mark Langsdorf) [1997698]
+- ACPI: PNP: remove duplicated BRI0A49 and BDP3336 entries (Mark Langsdorf) [1997698]
+- ACPI: resources: Add DMI-based legacy IRQ override quirk (Mark Langsdorf) [1997698]
+- ACPICA: Add support for MADT online enabled bit (Mark Langsdorf) [1997698]
+- acpi/arm64: fix next_platform_timer() section mismatch error (Mark Langsdorf) [1997697]
+- ACPI: PM: Include alternate AMDI0005 id in special behaviour (Mark Langsdorf) [1997697]
+- MAINTAINERS: Change Rafael's e-mail address (Mark Langsdorf) [1997697]
+- ACPI: scan: Remove unneeded header linux/nls.h (Mark Langsdorf) [1997697]
+- ACPI: PM: s2idle: Run both AMD and Microsoft methods if both are supported (Mark Langsdorf) [1997697]
+- ACPI: power: Drop name from struct acpi_power_resource (Mark Langsdorf) [1997697]
+- ACPI: power: Use acpi_handle_debug() to print debug messages (Mark Langsdorf) [1997697]
+- ACPI: button: Add DMI quirk for Lenovo Yoga 9 (14INTL5) (Mark Langsdorf) [1997697]
+- ACPI: SPCR: Add support for the new 16550-compatible Serial Port Subtype (Mark Langsdorf) [1997697]
+- ACPI: platform-profile: call sysfs_notify() from platform_profile_store() (Mark Langsdorf) [1997697]
+- ACPICA: Update version to 20210730 (Mark Langsdorf) [1997697]
+- ACPICA: Add method name "_DIS" For use with aslmethod.c (Mark Langsdorf) [1997697]
+- ACPICA: iASL: Fix for WPBT table with no command-line arguments (Mark Langsdorf) [1997697]
+- ACPICA: Headers: Add new DBG2 Serial Port Subtypes (Mark Langsdorf) [1997697]
+- ACPICA: Macros should not use a trailing semicolon (Mark Langsdorf) [1997697]
+- ACPICA: Fix an if statement (add parens) (Mark Langsdorf) [1997697]
+- ACPICA: iASL: Add support for the AEST table (data compiler) (Mark Langsdorf) [1997697]
+- clk: fractional-divider: Introduce POWER_OF_TWO_PS flag (Mark Langsdorf) [1997697]
+- clk: fractional-divider: add explicit big endian support (Mark Langsdorf) [1997697]
+- clk: gate: add explicit big endian support (Mark Langsdorf) [1997697]
+- clk: fractional-divider: add CLK_FRAC_DIVIDER_ZERO_BASED flag support (Mark Langsdorf) [1997697]
+- ACPI: processor: Replace deprecated CPU-hotplug functions (Mark Langsdorf) [1997697]
+- ABI: sysfs-platform-dptf: Add tables markup to a table (Mark Langsdorf) [1997697]
+- ACPI: DPTF: Add new PCH FIVR methods (Mark Langsdorf) [1997697]
+- clk: x86: Rename clk-lpt to more specific clk-lpss-atom (Mark Langsdorf) [1997697]
+- ACPI: configfs: Make get_header() to return error pointer (Mark Langsdorf) [1997697]
+- ACPI: configfs: Use sysfs_emit() in "show" functions (Mark Langsdorf) [1997697]
+- ACPI: glue: Eliminate acpi_platform_notify() (Mark Langsdorf) [1997697]
+- ACPI: bus: Rename functions to avoid name collision (Mark Langsdorf) [1997697]
+- ACPI: glue: Change return type of two functions to void (Mark Langsdorf) [1997697]
+- ACPI: glue: Rearrange acpi_device_notify() (Mark Langsdorf) [1997697]
+- ACPI: Add LoongArch support for ACPI_PROCESSOR/ACPI_NUMA (Mark Langsdorf) [1997697]
+- ACPI / PMIC: XPower: optimize MIPI PMIQ sequence I2C-bus accesses (Mark Langsdorf) [1997697]
+- ACPI / PMIC: XPower: optimize I2C-bus accesses (Mark Langsdorf) [1997697]
+- stddef: Introduce DECLARE_FLEX_ARRAY() helper (Josef Oskera) [2062594]
+- Revert "iavf: Fix deadlock occurrence during resetting VF interface" (Ivan Vecera) [2066693]
+- scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map() (Ewan D. Milne) [2071831]
+- lib/sbitmap: allocate sb->map via kvzalloc_node (Ewan D. Milne) [2071831]
+- mm: move kvmalloc-related functions to slab.h (Ewan D. Milne) [2071831]
+- scsi: core: sd: Add silence_suspend flag to suppress some PM messages (Ewan D. Milne) [2071831]
+- scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters (Ewan D. Milne) [2071831]
+- sd: call sd_zbc_release_disk before releasing the scsi_device reference (Ewan D. Milne) [2071831]
+- scsi: core: Reallocate device's budget map on queue depth change (Ewan D. Milne) [2071831]
+- scsi: sr: Don't use GFP_DMA (Ewan D. Milne) [2071831]
+- scsi: core: Fix scsi_device_max_queue_depth() (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Fix buffer size of REPORT ZONES command (Ewan D. Milne) [2071831]
+- scsi: sd_zbc: Clean up sd_zbc_parse_report() setting of wp (Ewan D. Milne) [2071831]
+- scsi: sd_zbc: Simplify zone full condition check (Ewan D. Milne) [2071831]
+- scsi: core: Show SCMD_LAST in text form (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Zero clear zones at reset write pointer (Ewan D. Milne) [2071831]
+- scsi: core: sysfs: Fix setting device state to SDEV_RUNNING (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Fix type in min_t to avoid stack OOB (Ewan D. Milne) [2071831]
+- scsi: core: Simplify control flow in scmd_eh_abort_handler() (Ewan D. Milne) [2071831]
+- scsi: core: sysfs: Fix hang when device state is set via sysfs (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Don't call kcalloc() if size arg is zero (Ewan D. Milne) [2071831]
+- scsi: sr: Remove duplicate assignment (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Fix out-of-bound read in resp_report_tgtpgs() (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Fix out-of-bound read in resp_readcap16() (Ewan D. Milne) [2071831]
+- scsi: sd: Print write through due to no caching mode page as warning (Ewan D. Milne) [2071831]
+- scsi: sd: Fix crashes in sd_resume_runtime() (Ewan D. Milne) [2071831]
+- scsi: core: Fix shost->cmd_per_lun calculation in scsi_add_host_with_dma() (Ewan D. Milne) [2071831]
+- scsi: core: Fix spelling in a source code comment (Ewan D. Milne) [2071831]
+- scsi: sd: Fix sd_do_mode_sense() buffer length handling (Ewan D. Milne) [2071831]
+- scsi: core: Fix scsi_mode_select() buffer length handling (Ewan D. Milne) [2071831]
+- scsi: core: Fix scsi_mode_sense() buffer length handling (Ewan D. Milne) [2071831]
+- scsi: core: Remove include <scsi/scsi_host.h> from scsi_cmnd.h (Ewan D. Milne) [2071831]
+- scsi: sd_zbc: Support disks with more than 2**32 logical blocks (Ewan D. Milne) [2071831]
+- scsi: sd: Make sd_spinup_disk() less noisy (Ewan D. Milne) [2071831]
+- scsi: sr: Fix spelling mistake "does'nt" -> "doesn't" (Ewan D. Milne) [2071831]
+- scsi: sd_zbc: Ensure buffer size is aligned to SECTOR_SIZE (Ewan D. Milne) [2071831]
+- scsi: sd: Do not exit sd_spinup_disk() quietly (Ewan D. Milne) [2071831]
+- scsi: core: Add helper to return number of logical blocks in a request (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Ewan D. Milne) [2071831]
+- scsi: scsi_transport_spi: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Ewan D. Milne) [2071831]
+- scsi: scsi_transport_fc: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Ewan D. Milne) [2071831]
+- scsi: sr: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Ewan D. Milne) [2071831]
+- scsi: sd: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Ewan D. Milne) [2071831]
+- scsi: core: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Ewan D. Milne) [2071831]
+- scsi: core: Introduce the scsi_cmd_to_rq() function (Ewan D. Milne) [2071831]
+- scsi: core: Add BLIST_IGN_MEDIA_CHANGE for Ultra HS-SD/MMC USB card readers (Ewan D. Milne) [2071831]
+- scsi: sd: REQUEST SENSE for BLIST_IGN_MEDIA_CHANGE devices in runtime_resume() (Ewan D. Milne) [2071831]
+- scsi: core: Add new flag BLIST_IGN_MEDIA_CHANGE (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Improve RDPROTECT/WRPROTECT handling (Ewan D. Milne) [2071831]
+- scsi: scsi_debug: Remove dump_sector() (Ewan D. Milne) [2071831]
+- scsi: core: Add scsi_prot_ref_tag() helper (Ewan D. Milne) [2071831]
+- scsi: core: Add scsi_msg_to_host_byte() (Ewan D. Milne) [2071831]
+- scsi: core: Add get_{status,host}_byte() accessor functions (Ewan D. Milne) [2071831]
+- scsi: core: Cap scsi_host cmd_per_lun at can_queue (Ewan D. Milne) [2071831]
+- scsi: Fix spelling mistakes in header files (Ewan D. Milne) [2071831]
+- scsi: core: Treat device offline as a failure (Ewan D. Milne) [2071831]
+- sched/topology: Skip updating masks for non-online nodes (Diego Domingos) [1946251]
+- powerpc/numa: Update cpu_cpu_map on CPU online/offline (Diego Domingos) [1946251]
+- powerpc/numa: Print debug statements only when required (Diego Domingos) [1946251]
+- powerpc/numa: convert printk to pr_xxx (Diego Domingos) [1946251]
+- powerpc/numa: Drop dbg in favour of pr_debug (Diego Domingos) [1946251]
+- livepatch: Fix missing unlock on error in klp_enable_patch() (Julia Denham) [2069340]
+- livepatch: Fix kobject refcount bug on klp_init_patch_early failure path (Julia Denham) [2069340]
+- Documentation: livepatch: Add livepatch API page (Julia Denham) [2069340]
+- scsi: megaraid_sas: Remove unnecessary memset (Tomas Henzl) [2049686]
+- scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan (Tomas Henzl) [2049686]
+- scsi: megasas: Clean up some inconsistent indenting (Tomas Henzl) [2049686]
+- scsi: megasas: Stop using the SCSI pointer (Tomas Henzl) [2049686]
+- aarch64: enable memory hotplug (Baoquan He) [1818517]
+- mm/memory_hotplug: introduce default dummy memory_add_physaddr_to_nid() (Baoquan He) [1818517]
+- arm64/mm: Add one hunk back missed in earlier back porting (Baoquan He) [1818517]
+- arm64/mm: Hold memory hotplug lock while walking for kernel page table dump (Baoquan He) [1818517]
+- ARM64: dump: Convert to use DEFINE_SHOW_ATTRIBUTE macro (Baoquan He) [1818517]
+- net/mlx5: DR, Ignore modify TTL on RX if device doesn't support it (Amir Tzin) [2072934]
+- net: bridge: switchdev: check br_vlan_group() return value (Ivan Vecera) [2080332]
+- net: bridge: mst: Restrict info size queries to bridge ports (Ivan Vecera) [2080332]
+- net: bridge: mst: prevent NULL deref in br_mst_info_size() (Ivan Vecera) [2080332]
+- selftests: forwarding: Use same VRF for port and VLAN upper (Ivan Vecera) [2080332]
+- selftests: forwarding: Disable learning before link up (Ivan Vecera) [2080332]
+- net: bridge: mst: Add helper to query a port's MST state (Ivan Vecera) [2080332]
+- net: bridge: mst: Add helper to check if MST is enabled (Ivan Vecera) [2080332]
+- net: bridge: mst: Add helper to map an MSTI to a VID set (Ivan Vecera) [2080332]
+- net: bridge: mst: Notify switchdev drivers of MST state changes (Ivan Vecera) [2080332]
+- net: bridge: mst: Notify switchdev drivers of VLAN MSTI migrations (Ivan Vecera) [2080332]
+- net: bridge: mst: Notify switchdev drivers of MST mode changes (Ivan Vecera) [2080332]
+- net: bridge: mst: Support setting and reporting MST port states (Ivan Vecera) [2080332]
+- net: bridge: mst: Allow changing a VLAN's MSTI (Ivan Vecera) [2080332]
+- net: bridge: mst: Multiple Spanning Tree (MST) mode (Ivan Vecera) [2080332]
+- net: switchdev: remove lag_mod_cb from switchdev_handle_fdb_event_to_device (Ivan Vecera) [2080332]
+- selftests: forwarding: tests of locked port feature (Ivan Vecera) [2080332]
+- net: bridge: Add support for offloading of locked port flag (Ivan Vecera) [2080332]
+- net: bridge: Add support for bridge port in locked mode (Ivan Vecera) [2080332]
+- net: switchdev: avoid infinite recursion from LAG to bridge with port object handler (Ivan Vecera) [2080332]
+- bridge: switch br_net_exit to batch mode (Ivan Vecera) [2080332]
+- net: bridge: multicast: notify switchdev driver whenever MC processing gets disabled (Ivan Vecera) [2080332]
+- net: switchdev: introduce switchdev_handle_port_obj_{add,del} for foreign interfaces (Ivan Vecera) [2080332]
+- net: switchdev: rename switchdev_lower_dev_find to switchdev_lower_dev_find_rcu (Ivan Vecera) [2080332]
+- net: bridge: switchdev: replay all VLAN groups (Ivan Vecera) [2080332]
+- net: bridge: make nbp_switchdev_unsync_objs() follow reverse order of sync() (Ivan Vecera) [2080332]
+- net: bridge: switchdev: differentiate new VLANs from changed ones (Ivan Vecera) [2080332]
+- net: bridge: vlan: notify switchdev only when something changed (Ivan Vecera) [2080332]
+- net: bridge: vlan: make __vlan_add_flags react only to PVID and UNTAGGED (Ivan Vecera) [2080332]
+- net: bridge: vlan: don't notify to switchdev master VLANs without BRENTRY flag (Ivan Vecera) [2080332]
+- net: bridge: vlan: check early for lack of BRENTRY flag in br_vlan_add_existing (Ivan Vecera) [2080332]
+- net: bridge: vlan: check for errors from __vlan_del in __vlan_flush (Ivan Vecera) [2080332]
+- net/switchdev: use struct_size over open coded arithmetic (Ivan Vecera) [2080332]
+- net: bridge: vlan: fix single net device option dumping (Ivan Vecera) [2080332]
+- net: bridge: mcast: fix br_multicast_ctx_vlan_global_disabled helper (Ivan Vecera) [2080332]
+- net: bridge: mcast: add and enforce startup query interval minimum (Ivan Vecera) [2080332]
+- net: bridge: mcast: add and enforce query interval minimum (Ivan Vecera) [2080332]
+- netfilter: bridge: add support for pppoe filtering (Ivan Vecera) [2080332]
+- bridge: use __set_bit in __br_vlan_set_default_pvid (Ivan Vecera) [2080332]
+- net: bridge: Allow base 16 inputs in sysfs (Ivan Vecera) [2080332]
+- net/bridge: replace simple_strtoul to kstrtol (Ivan Vecera) [2080332]
+- net: bridge: Slightly optimize 'find_portno()' (Ivan Vecera) [2080332]
+- net: bridge: switchdev: fix shim definition for br_switchdev_mdb_notify (Ivan Vecera) [2080332]
+- net: bridge: switchdev: consistent function naming (Ivan Vecera) [2080332]
+- net: bridge: mdb: move all switchdev logic to br_switchdev.c (Ivan Vecera) [2080332]
+- net: bridge: split out the switchdev portion of br_mdb_notify (Ivan Vecera) [2080332]
+- net: bridge: move br_vlan_replay to br_switchdev.c (Ivan Vecera) [2080332]
+- net: bridge: provide shim definition for br_vlan_flags (Ivan Vecera) [2080332]
+- net: switchdev: merge switchdev_handle_fdb_{add,del}_to_device (Ivan Vecera) [2080332]
+- net: bridge: create a common function for populating switchdev FDB entries (Ivan Vecera) [2080332]
+- net: bridge: move br_fdb_replay inside br_switchdev.c (Ivan Vecera) [2080332]
+- net: bridge: reduce indentation level in fdb_create (Ivan Vecera) [2080332]
+- net: bridge: rename br_fdb_insert to br_fdb_add_local (Ivan Vecera) [2080332]
+- net: bridge: rename fdb_insert to fdb_add_local (Ivan Vecera) [2080332]
+- net: bridge: remove fdb_insert forward declaration (Ivan Vecera) [2080332]
+- net: bridge: remove fdb_notify forward declaration (Ivan Vecera) [2080332]
+- net: make use of helper netif_is_bridge_master() (Ivan Vecera) [2080332]
+- net: use eth_hw_addr_set() (Ivan Vecera) [2080332]
+- net: bridge: Use array_size() helper in copy_to_user() (Ivan Vecera) [2080332]
+- net/mlx5: DR, Fix missing flow_source when creating multi-destination FW table (Amir Tzin) [2072920]
+- net/mlx5: DR, Fix slab-out-of-bounds in mlx5_cmd_dr_create_fte (Amir Tzin) [2072920]
+- ixgbevf: Require large buffers for build_skb on 82599VF (Ken Cox) [2037956]
+- ixgbevf: Remove useless DMA-32 fallback configuration (Ken Cox) [2037956]
+- ixgbevf: switch to napi_build_skb() (Ken Cox) [2037956]
+- ixgbevf: Add support for new mailbox communication between PF and VF (Ken Cox) [2037956]
+- ixgbevf: Mailbox improvements (Ken Cox) [2037956]
+- ixgbevf: Add legacy suffix to old API mailbox functions (Ken Cox) [2037956]
+- ixgbevf: Improve error handling in mailbox (Ken Cox) [2037956]
+- ixgbevf: Rename MSGTYPE to SUCCESS and FAILURE (Ken Cox) [2037956]
+- net: ixgbevf: Remove redundant initialization of variable ret_val (Ken Cox) [2037956]
+- selftests: mptcp: fix diag instability (Hangbin Liu) [2077358]
+- selftests: mptcp: fix ipv6 routing setup (Hangbin Liu) [2077358]
+- selftests: mptcp: clean tmp files in simult_flows (Hangbin Liu) [2077358]
+- selftests: netfilter: fix exit value for nft_concat_range (Hangbin Liu) [2077358]
+- selftests: netfilter: remove stray bash debug line (Hangbin Liu) [2077358]
+- selftests: Fix IPv6 address bind tests (Hangbin Liu) [2077358]
+- selftests: Fix raw socket bind tests with VRF (Hangbin Liu) [2077358]
+- selftests: net: Correct case name (Hangbin Liu) [2077358]
+- selftests: pmtu.sh: Kill nettest processes launched in subshell. (Hangbin Liu) [2077358]
+- selftests: pmtu.sh: Kill tcpdump processes launched by subshell. (Hangbin Liu) [2077358]
+- selftests: net: Fix a typo in udpgro_fwd.sh (Hangbin Liu) [2077358]
+- selftests/net: udpgso_bench_tx: fix dst ip argument (Hangbin Liu) [2077358]
+- selftests/net: udpgso_bench_rx: fix port argument (Hangbin Liu) [2077358]
+- selftests: net: tls: remove unused variable and code (Hangbin Liu) [2077358]
+- selftest: net: fix typo in altname test (Hangbin Liu) [2077358]
+
+* Tue May 24 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-395.el8]
+- net/mlx5: DR, Fix the threshold that defines when pool sync is initiated (Amir Tzin) [2062715]
+- net/mlx5: DR, Cache STE shadow memory (Amir Tzin) [2062715]
+- perf/x86/intel/lbr: Add static_branch for LBR INFO flags (Michael Petlan) [2039998]
+- perf/x86/intel/lbr: Support LBR format V7 (Michael Petlan) [2039998]
+- net/mlx5e: TC, fix decap fallback to uplink when int port not supported (Amir Tzin) [2077048]
+- net/mlx5e: Fix wrong source vport matching on tunnel rule (Amir Tzin) [2064589]
+- hv_balloon: rate-limit "Unhandled message" warning (Vitaly Kuznetsov) [2087270]
+- tcp: drop the hash_32() part from the index calculation (Guillaume Nault) [2064876] {CVE-2022-1012}
+- tcp: increase source port perturb table to 2^16 (Guillaume Nault) [2064876] {CVE-2022-1012}
+- tcp: dynamically allocate the perturb table used by source ports (Guillaume Nault) [2064876] {CVE-2022-1012}
+- tcp: add small random increments to the source port (Guillaume Nault) [2064876] {CVE-2022-1012}
+- tcp: resalt the secret every 10 seconds (Guillaume Nault) [2064876] {CVE-2022-1012}
+- tcp: use different parts of the port_offset for index and offset (Guillaume Nault) [2064876] {CVE-2022-1012}
+- secure_seq: use the 64 bits of the siphash for port offset calculation (Guillaume Nault) [2064876] {CVE-2022-1012}
+- tcp: add some entropy in __inet_hash_connect() (Guillaume Nault) [2064876] {CVE-2022-1012}
+- tcp: change source port randomizarion at connect() time (Guillaume Nault) [2064876] {CVE-2022-1012}
+- net/mlx5e: TC, Skip redundant ct clear actions (Amir Tzin) [2055590]
+- spi: pxa2xx: Add support for Intel Raptor Lake PCH-S (Prarit Bhargava) [2040031]
+- mfd: intel-lpss: Add Intel Raptor Lake PCH-S PCI IDs (Prarit Bhargava) [2040031]
+- pinctrl: alderlake: Add Raptor Lake-S ACPI ID (Prarit Bhargava) [2040033]
+- i2c: i801: Add support for Intel Raptor Lake PCH-S (Prarit Bhargava) [2040027 2040029]
+- redhat/configs: Add CONFIG_INTEL_IDXD_PERFMON (Jerry Snitselaar) [1921296]
+- x86/fpu/xstate: Consolidate size calculations (Jerry Snitselaar) [2071461]
+- x86/fpu/xstate: Handle supervisor states in XSTATE permissions (Jerry Snitselaar) [2071461]
+- x86/fpu/xsave: Handle compacted offsets correctly with supervisor states (Jerry Snitselaar) [2071461]
+- x86/fpu: Cache xfeature flags from CPUID (Jerry Snitselaar) [2071461]
+- x86/fpu/xsave: Initialize offset/size cache early (Jerry Snitselaar) [2071461]
+- x86/fpu: Remove unused supervisor only offsets (Jerry Snitselaar) [2071461]
+- dmaengine: idxd: Change license on idxd.h to LGPL (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: fix delta_rec and crc size field for completion record (Jerry Snitselaar) [1971892]
+- dmaengine: idxd: Remove useless DMA-32 fallback configuration (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: restore traffic class defaults after wq reset (Jerry Snitselaar) [2046469]
+- dmaengine: idxd: deprecate token sysfs attributes for read buffers (Jerry Snitselaar) [2040042]
+- dmaengine: idxd: change bandwidth token to read buffers (Jerry Snitselaar) [2040042]
+- dmaengine: idxd: fix wq settings post wq disable (Jerry Snitselaar) [2040045]
+- dmaengine: idxd: change MSIX allocation based on per wq activation (Jerry Snitselaar) [2040495]
+- edmaengine: idxd: fix descriptor flushing locking (Jerry Snitselaar) [2040495]
+- dmaengine: idxd: embed irq_entry in idxd_wq struct (Jerry Snitselaar) [2040495]
+- dmaengine: idxd: fix calling wq quiesce inside spinlock (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: add knob for enqcmds retries (Jerry Snitselaar) [2040047]
+- dmaengine: idxd: set defaults for wq configs (Jerry Snitselaar) [2040047]
+- dmaengine: idxd: handle interrupt handle revoked event (Jerry Snitselaar) [2040051]
+- dmaengine: idxd: handle invalid interrupt handle descriptors (Jerry Snitselaar) [2040051]
+- dmaengine: idxd: create locked version of idxd_quiesce() call (Jerry Snitselaar) [2040051]
+- dmaengine: idxd: add helper for per interrupt handle drain (Jerry Snitselaar) [2040051]
+- dmaengine: idxd: move interrupt handle assignment (Jerry Snitselaar) [2040051]
+- dmaengine: idxd: int handle management refactoring (Jerry Snitselaar) [2040051]
+- dmaengine: idxd: rework descriptor free path on failure (Jerry Snitselaar) [2040051]
+- dmaengine: idxd: fix missed completion on abort path (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: fix resource leak on dmaengine driver disable (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: cleanup completion record allocation (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: reconfig device after device reset command (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: add halt interrupt support (Jerry Snitselaar) [2040047]
+- dmaengine: idxd: Use list_move_tail instead of list_del/list_add_tail (Jerry Snitselaar) [2072156]
+- dmanegine: idxd: fix resource free ordering on driver removal (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: remove kernel wq type set when load configuration (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: remove gen cap field per spec 1.2 update (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: check GENCAP config support for gencfg register (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: move out percpu_ref_exit() to ensure it's outside submission (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: remove interrupt disable for dev_lock (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: remove interrupt disable for cmd_lock (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: fix setting up priv mode for dwq (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: set descriptor allocation size to threshold for swq (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: make submit failure path consistent on desc freeing (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: remove interrupt flag for completion list spinlock (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: make I/O interrupt handler one shot (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: clear block on fault flag when clear wq (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: add capability check for 'block on fault' attribute (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: Remove unused status variable in irq_process_work_list() (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: Fix a possible NULL pointer dereference (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: fix abort status check (Jerry Snitselaar) [2040040]
+- dmanegine: idxd: add software command status (Jerry Snitselaar) [2040047]
+- dmaengine: idxd: rotate portal address for better performance (Jerry Snitselaar) [2040047]
+- dmaengine: idxd: fix wq slot allocation index check (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: fix uninit var for alt_drv (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: Set defaults for GRPCFG traffic class (Jerry Snitselaar) [2040047]
+- dmaengine: idxd: remove fault processing code (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: move dsa_drv support to compatible mode (Jerry Snitselaar) [1971961]
+- dmaengine: dsa: move dsa_bus_type out of idxd driver to standalone (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: create user driver for wq 'device' (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: create dmaengine driver for wq 'device' (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: create idxd_device sub-driver (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: add type to driver in order to allow device matching (Jerry Snitselaar) [1971961]
+- dmanegine: idxd: open code the dsa_drv registration (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: idxd: move remove() bits for idxd 'struct device' to device.c (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: move probe() bits for idxd 'struct device' to device.c (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: fix bus_probe() and bus_remove() for dsa_bus (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: remove iax_bus_type prototype (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: remove bus shutdown (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: move wq_disable() to device.c (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: move wq_enable() to device.c (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: remove IDXD_DEV_CONF_READY (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: add 'struct idxd_dev' as wrapper for conf_dev (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: add driver name (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: add driver register helper (Jerry Snitselaar) [1971961]
+- dmaengine: idxd: depends on !UML (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: fix PCI_MSI build errors (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: fix submission race window (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: fix sequence for pci driver remove() and shutdown() (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: fix setup sequence for MSIXPERM table (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: fix array index when int_handles are being used (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: assign MSIX vectors to each WQ rather than roundrobin (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: fix desc->vector that isn't being updated (Jerry Snitselaar) [2040040]
+- dmaengine: idxd: add missing percpu ref put on failure (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: have command status always set (Jerry Snitselaar) [1973882]
+- dmanegine: idxd: cleanup all device related bits after disabling device (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: Simplify code and axe the use of a deprecated API (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: remove devm allocation for idxd->int_handles (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: Remove redundant variable cdev_ctx (Jerry Snitselaar) [2072156]
+- dmaengine: idxd: Add missing cleanup for early error out in probe call (Jerry Snitselaar) [1971892]
+- dmaengine: idxd: Enable IDXD performance monitor support (Jerry Snitselaar) [1921296]
+- dmaengine: idxd: Add IDXD performance monitor support (Jerry Snitselaar) [1921296]
+- dmaengine: idxd: device cmd should use dedicated lock (Jerry Snitselaar) [1971892]
+- dmaengine: idxd: support reporting of halt interrupt (Jerry Snitselaar) [1971890]
+- dmaengine: idxd: convert sprintf() to sysfs_emit() for all usages (Jerry Snitselaar) [1971890]
+- dmaengine: idxd: add interrupt handle request and release support (Jerry Snitselaar) [1971890]
+- dmaengine: idxd: add support for readonly config mode (Jerry Snitselaar) [1971890]
+- dmaengine: idxd: add percpu_ref to descriptor submission path (Jerry Snitselaar) [1971949]
+- dmaengine: idxd: remove detection of device type (Jerry Snitselaar) [1971963]
+- Documentation/x86: Update documentation for SVA (Shared Virtual Addressing) (Jerry Snitselaar) [2071461]
+- tools/objtool: Check for use of the ENQCMD instruction in the kernel (Jerry Snitselaar) [2071461]
+- x86/cpufeatures: Re-enable ENQCMD (Jerry Snitselaar) [2071461]
+- x86/traps: Demand-populate PASID MSR via #GP (Jerry Snitselaar) [2071461]
+- sched: Define and initialize a flag to identify valid PASID in the task (Jerry Snitselaar) [2071461]
+- x86/fpu: Clear PASID when copying fpstate (Jerry Snitselaar) [2071461]
+- iommu/sva: Assign a PASID to mm on PASID allocation and free it on mm exit (Jerry Snitselaar) [2071461]
+- iommu/ioasid: Introduce a helper to check for valid PASIDs (Jerry Snitselaar) [2071461]
+- kernel/fork: Initialize mm's PASID (Jerry Snitselaar) [2071461]
+- mm: Change CONFIG option for mm->pasid field (Jerry Snitselaar) [2071461]
+- mm/fork: clear PASID for new mm (Jerry Snitselaar) [2071461]
+- iommu/sva: Rename CONFIG_IOMMU_SVA_LIB to CONFIG_IOMMU_SVA (Jerry Snitselaar) [2071461]
+- turbostat: fix PC6 displaying on some systems (Steve Best) [2040078]
+
+* Mon May 23 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-394.el8]
+- quota: make dquot_quota_sync return errors from ->sync_fs (Lukas Czerner) [2083057]
+- redhat: disable more noisy rpminspect tests (Jarod Wilson)
+- mm: thp: replace the page lock with the seqlock for the THP mapcount (Andrea Arcangeli) [1958020]
+- mm: do_wp_page: deduplicate smart_lock_page (Andrea Arcangeli) [1958020]
+- mm: hugetlbfs: gup_must_unshare() cleanup (Andrea Arcangeli) [1958020]
+- mm: GUP: cleanup FOLL_UNSHARE (Andrea Arcangeli) [1958020]
+- mm: COW: skip the page lock in the COW copy path (Andrea Arcangeli) [1958020]
+- mm: gup: gup_must_unshare() use can_read_pin_swap_page() (Andrea Arcangeli) [1958020]
+- mm: hugetlbfs: gup: gup_must_unshare(): enable hugetlbfs (Andrea Arcangeli) [1958020]
+- mm: hugetlbfs: FOLL_FAULT_UNSHARE (Andrea Arcangeli) [1958020]
+- mm: hugetlbfs: COR: copy-on-read fault (Andrea Arcangeli) [1958020]
+- mm: gup: FOLL_UNSHARE RHEL (Andrea Arcangeli) [1958020]
+- mm: gup: FOLL_NOUNSHARE: optimize follow_page (Andrea Arcangeli) [1958020]
+- mm: gup: FOLL_UNSHARE (Andrea Arcangeli) [1958020]
+- mm: gup: gup_must_unshare() (Andrea Arcangeli) [1958020]
+- mm: gup: COR: copy-on-read fault (Andrea Arcangeli) [1958020]
+- mm: thp: introduce page_trans_huge_anon_shared (Andrea Arcangeli) [1958020]
+- mm: thp: stabilize the THP mapcount in page_remove_anon_compound_rmap (Andrea Arcangeli) [1958020]
+- mm: thp: make the THP mapcount atomic with a seqlock (Andrea Arcangeli) [1958020]
+- mm: thp: consolidate mapcount logic on THP split (David Hildenbrand) [1958020]
+- vmxnet3: Remove useless DMA-32 fallback configuration (Kamal Heib) [2083561]
+- vmxnet3: fix minimum vectors alloc issue (Kamal Heib) [2083561]
+- net: vmxnet3: remove multiple false checks in vmxnet3_ethtool.c (Kamal Heib) [2083561]
+- vmxnet3: do not stop tx queues after netif_device_detach() (Kamal Heib) [2083561]
+- block: limit request dispatch loop duration (Ming Lei) [2005082]
+- esp: limit skb_page_frag_refill use to a single page (Sabrina Dubroca) [2062115] {CVE-2022-27666}
+- esp: Fix possible buffer overflow in ESP transformation (Sabrina Dubroca) [2062115] {CVE-2022-27666}
+- can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path (Chris von Recklinghausen) [2080376] {CVE-2022-28390}
+- NFSD: Deprecate NFS_OFFSET_MAX (Scott Mayhew) [2064216]
+- NFSD: Fix offset type in I/O trace points (Scott Mayhew) [2064216]
+- NFSD: COMMIT operations must not return NFS?ERR_INVAL (Scott Mayhew) [2064216]
+- NFSD: Clamp WRITE offsets (Scott Mayhew) [2064216]
+- NFSD: Fix NFSv3 SETATTR/CREATE's handling of large file sizes (Scott Mayhew) [2064216]
+- NFSD: Fix ia_size underflow (Scott Mayhew) [2064216]
+- NFSD: Fix the behavior of READ near OFFSET_MAX (Scott Mayhew) [2064216]
+- NFSD: Fix READDIR buffer overflow (Scott Mayhew) [2064216]
+- nfsd: Fix nsfd startup race (again) (Scott Mayhew) [2064216]
+- NFS: Add a tracepoint to show the results of nfs_set_cache_invalid() (Scott Mayhew) [2064216]
+- NFSv42: Don't fail clone() unless the OP_CLONE operation failed (Scott Mayhew) [2064216]
+- NFSD: Fix exposure in nfsd4_decode_bitmap() (Scott Mayhew) [2064216]
+- NFSv4: Sanity check the parameters in nfs41_update_target_slotid() (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label argument from decode_getattr_*() functions (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label argument from nfs_setsecurity (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label argument from nfs_fhget() (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label argument from nfs_add_or_obtain() (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label argument from nfs_instantiate() (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label from the nfs_setattrres (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label from the nfs4_getattr_res (Scott Mayhew) [2064216]
+- NFS: Remove the f_label from the nfs4_opendata and nfs_openres (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label from the nfs4_lookupp_res struct (Scott Mayhew) [2064216]
+- NFS: Remove the label from the nfs4_lookup_res struct (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label from the nfs4_link_res struct (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label from the nfs4_create_res struct (Scott Mayhew) [2064216]
+- NFS: Remove the nfs4_label from the nfs_entry struct (Scott Mayhew) [2064216]
+- NFS: Create a new nfs_alloc_fattr_with_label() function (Scott Mayhew) [2064216]
+- NFS: Always initialise fattr->label in nfs_fattr_alloc() (Scott Mayhew) [2064216]
+- NFSv4: Remove unnecessary 'minor version' check (Scott Mayhew) [2064216]
+- NFSv4: Fix potential Oops in decode_op_map() (Scott Mayhew) [2064216]
+- NFSv4: Ensure decode_compound_hdr() sanity checks the tag (Scott Mayhew) [2064216]
+- NFS: Don't trace an uninitialised value (Scott Mayhew) [2064216]
+- NFSv4.2 add tracepoint to OFFLOAD_CANCEL (Scott Mayhew) [2064216]
+- NFSv4.2 add tracepoint to CB_OFFLOAD (Scott Mayhew) [2064216]
+- NFSv4.2 add tracepoint to CLONE (Scott Mayhew) [2064216]
+- NFSv4.2 add tracepoint to COPY (Scott Mayhew) [2064216]
+- NFSv4.2 add tracepoints to FALLOCATE and DEALLOCATE (Scott Mayhew) [2064216]
+- NFSv4.2 add tracepoint to SEEK (Scott Mayhew) [2064216]
+- nfs4: take a reference on the nfs_client when running FREE_STATEID (Scott Mayhew) [2064216]
+- NFS: Move NFS protocol display macros to global header (Scott Mayhew) [2064216]
+- NFS: Move generic FS show macros to global header (Scott Mayhew) [2064216]
+- SUNRPC: Clean up xs_tcp_setup_sock() (Scott Mayhew) [2064216]
+- NFSv4: Fix a regression in nfs_set_open_stateid_locked() (Scott Mayhew) [2064216]
+- NFS: Remove redundant call to __set_page_dirty_nobuffers (Scott Mayhew) [2064216]
+- NFS: Unexport nfs_probe_fsinfo() (Scott Mayhew) [2064216]
+- NFS: Call nfs_probe_server() during a fscontext-reconfigure event (Scott Mayhew) [2064216]
+- NFS: Replace calls to nfs_probe_fsinfo() with nfs_probe_server() (Scott Mayhew) [2064216]
+- NFS: Move nfs_probe_destination() into the generic client (Scott Mayhew) [2064216]
+- NFS: Create an nfs4_server_set_init_caps() function (Scott Mayhew) [2064216]
+- NFS: Remove --> and <-- dprintk call sites (Scott Mayhew) [2064216]
+- SUNRPC: Trace calls to .rpc_call_done (Scott Mayhew) [2064216]
+- NFS: Replace dprintk callsites in nfs_readpage(s) (Scott Mayhew) [2064216]
+- SUNRPC: Use BIT() macro in rpc_show_xprt_state() (Scott Mayhew) [2064216]
+- SUNRPC: Tracepoints should display tk_pid and cl_clid as a fixed-size field (Scott Mayhew) [2064216]
+- xprtrdma: Remove rpcrdma_ep::re_implicit_roundup (Scott Mayhew) [2064216]
+- xprtrdma: Provide a buffer to pad Write chunks of unaligned length (Scott Mayhew) [2064216]
+- Fix user namespace leak (Scott Mayhew) [2064216]
+- NFS: Save some space in the inode (Scott Mayhew) [2064216]
+- NFS: Fix WARN_ON due to unionization of nfs_inode.nrequests (Scott Mayhew) [2064216]
+- NFSv4: Fixes for nfs4_inode_return_delegation() (Scott Mayhew) [2064216]
+- NFS: Fix an Oops in pnfs_mark_request_commit() (Scott Mayhew) [2064216]
+- NFS: Fix up commit deadlocks (Scott Mayhew) [2064216]
+- NFSD:fix boolreturn.cocci warning (Scott Mayhew) [2064216]
+- nfsd: update create verifier comment (Scott Mayhew) [2064216]
+- SUNRPC: Change return value type of .pc_encode (Scott Mayhew) [2064216]
+- SUNRPC: Replace the "__be32 *p" parameter to .pc_encode (Scott Mayhew) [2064216]
+- NFSD: Save location of NFSv4 COMPOUND status (Scott Mayhew) [2064216]
+- SUNRPC: Change return value type of .pc_decode (Scott Mayhew) [2064216]
+- SUNRPC: Replace the "__be32 *p" parameter to .pc_decode (Scott Mayhew) [2064216]
+- SUNRPC: De-duplicate .pc_release() call sites (Scott Mayhew) [2064216]
+- SUNRPC: Simplify the SVC dispatch code path (Scott Mayhew) [2064216]
+- NFS: Fix deadlocks in nfs_scan_commit_list() (Scott Mayhew) [2064216]
+- NFS: Instrument i_size_write() (Scott Mayhew) [2064216]
+- SUNRPC: Per-rpc_clnt task PIDs (Scott Mayhew) [2064216]
+- NFS: Remove unnecessary TRACE_DEFINE_ENUM()s (Scott Mayhew) [2064216]
+- SUNRPC: Capture value of xdr_buf::page_base (Scott Mayhew) [2064216]
+- svcrdma: Split svcrmda_wc_{read,write} tracepoints (Scott Mayhew) [2064216]
+- svcrdma: Split the svcrdma_wc_send() tracepoint (Scott Mayhew) [2064216]
+- svcrdma: Split the svcrdma_wc_receive() tracepoint (Scott Mayhew) [2064216]
+- pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds (Scott Mayhew) [2064216]
+- NFS: Remove unnecessary page cache invalidations (Scott Mayhew) [2064216]
+- NFS: Fix dentry verifier races (Scott Mayhew) [2064216]
+- NFS: Further optimisations for 'ls -l' (Scott Mayhew) [2064216]
+- NFS: Fix up nfs_readdir_inode_mapping_valid() (Scott Mayhew) [2064216]
+- NFS: Ignore the directory size when marking for revalidation (Scott Mayhew) [2064216]
+- NFS: Don't set NFS_INO_DATA_INVAL_DEFER and NFS_INO_INVALID_DATA (Scott Mayhew) [2064216]
+- NFS: Default change_attr_type to NFS4_CHANGE_TYPE_IS_UNDEFINED (Scott Mayhew) [2064216]
+- NFSv4: Retrieve ACCESS on open if we're not using NFS4_CREATE_EXCLUSIVE (Scott Mayhew) [2064216]
+- NFS: Fix a few more clear_bit() instances that need release semantics (Scott Mayhew) [2064216]
+- SUNRPC: xprt_clear_locked() only needs release memory semantics (Scott Mayhew) [2064216]
+- SUNRPC: Remove unnecessary memory barriers (Scott Mayhew) [2064216]
+- SUNRPC: Remove WQ_HIGHPRI from xprtiod (Scott Mayhew) [2064216]
+- SUNRPC: Add cond_resched() at the appropriate point in __rpc_execute() (Scott Mayhew) [2064216]
+- SUNRPC: Partial revert of commit 6f9f17287e78 (Scott Mayhew) [2064216]
+- NFS: Fix up nfs_ctx_key_to_expire() (Scott Mayhew) [2064216]
+- NFS: Label the dentry with a verifier in nfs_rmdir() and nfs_unlink() (Scott Mayhew) [2064216]
+- NFS: Label the dentry with a verifier in nfs_link(), nfs_symlink() (Scott Mayhew) [2064216]
+- NFSD: Have legacy NFSD WRITE decoders use xdr_stream_subsegment() (Scott Mayhew) [2064216]
+- SUNRPC: xdr_stream_subsegment() must handle non-zero page_bases (Scott Mayhew) [2064216]
+- NFSD: simplify struct nfsfh (Scott Mayhew) [2064216]
+- NFSD: drop support for ancient filehandles (Scott Mayhew) [2064216]
+- NFSD: move filehandle format declarations out of "uapi". (Scott Mayhew) [2064216]
+- UNRPC: Return specific error code on kmalloc failure (Scott Mayhew) [2064216]
+- NFSD: Optimize DRC bucket pruning (Scott Mayhew) [2064216]
+- nfsd: don't alloc under spinlock in rpc_parse_scope_id (Scott Mayhew) [2064216]
+- NFSD: Keep existing listeners on portlist error (Scott Mayhew) [2064216]
+- nfs: Fix kerneldoc warning shown up by W=1 (Scott Mayhew) [2064216]
+- nfsd: back channel stuck in SEQ4_STATUS_CB_PATH_DOWN (Scott Mayhew) [2064216]
+- NLM: Fix svcxdr_encode_owner() (Scott Mayhew) [2064216]
+- SUNRPC: improve error response to over-size gss credential (Scott Mayhew) [2064216]
+- NFS: Always provide aligned buffers to the RPC read layers (Scott Mayhew) [2064216]
+- NFSv3: Delete duplicate judgement in nfs3_async_handle_jukebox (Scott Mayhew) [2064216]
+- SUNRPC: Tweak TCP socket shutdown in the RPC client (Scott Mayhew) [2064216]
+- svcrdma: xpt_bc_xprt is already clear in __svc_rdma_free() (Scott Mayhew) [2064216]
+- rpc: fix gss_svc_init cleanup on failure (Scott Mayhew) [2064216]
+- SUNRPC: Add RPC_AUTH_TLS protocol numbers (Scott Mayhew) [2064216]
+- NFSD: remove vanity comments (Scott Mayhew) [2064216]
+- svcrdma: Convert rdma->sc_rw_ctxts to llist (Scott Mayhew) [2064216]
+- svcrdma: Relieve contention on sc_send_lock. (Scott Mayhew) [2064216]
+- svcrdma: Fewer calls to wake_up() in Send completion handler (Scott Mayhew) [2064216]
+- NFSD: Use new __string_len C macros for nfsd_clid_class (Scott Mayhew) [2064216]
+- NFSD: Use new __string_len C macros for the nfs_dirent tracepoint (Scott Mayhew) [2064216]
+- tracing: Add trace_event helper macros __string_len() and __assign_str_len() (Scott Mayhew) [2064216]
+- NFSD: Clean up splice actor (Scott Mayhew) [2064216]
+- NFS: Clean up the synopsis of callback process_op() (Scott Mayhew) [2064216]
+- NFS: Extract the xdr_init_encode/decode() calls from decode_compound (Scott Mayhew) [2064216]
+- NFS: Remove unused callback void decoder (Scott Mayhew) [2064216]
+- NFS: Add a private local dispatcher for NFSv4 callback operations (Scott Mayhew) [2064216]
+- SUNRPC: Eliminate the RQ_AUTHERR flag (Scott Mayhew) [2064216]
+- SUNRPC: Set rq_auth_stat in the pg_authenticate() callout (Scott Mayhew) [2064216]
+- SUNRPC: Add svc_rqst::rq_auth_stat (Scott Mayhew) [2064216]
+- NFSv4/pNFS: Remove dead code (Scott Mayhew) [2064216]
+- SUNRPC: Convert rpc_client refcount to use refcount_t (Scott Mayhew) [2064216]
+- xprtrdma: Eliminate rpcrdma_post_sends() (Scott Mayhew) [2064216]
+- xprtrdma: Add an xprtrdma_post_send_err tracepoint (Scott Mayhew) [2064216]
+- xprtrdma: Add xprtrdma_post_recvs_err() tracepoint (Scott Mayhew) [2064216]
+- xprtrdma: Add an rpcrdma_mr_completion_class (Scott Mayhew) [2064216]
+- xprtrdma: Don't display r_xprt memory addresses in tracepoints (Scott Mayhew) [2064216]
+- xprtrdma: Disconnect after an ib_post_send() immediate error (Scott Mayhew) [2064216]
+- SUNRPC: Record timeout value in xprt_retransmit tracepoint (Scott Mayhew) [2064216]
+- SUNRPC: xprt_retransmit() displays the the NULL procedure incorrectly (Scott Mayhew) [2064216]
+- treewide: Add missing semicolons to __assign_str uses (Scott Mayhew) [2064216]
+- SUNRPC: Remove unneeded TRACE_DEFINE_ENUMs (Scott Mayhew) [2064216]
+- SUNRPC: Unset RPC_TASK_NO_RETRANS_TIMEOUT for NULL RPCs (Scott Mayhew) [2064216]
+- SUNRPC: Refactor rpc_ping() (Scott Mayhew) [2064216]
+- nfsd: fix NULL dereference in nfs3svc_encode_getaclres (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 SHARE results encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 nlm_res results encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 TEST results encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 void results encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 FREE_ALL arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 SHARE arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 SM_NOTIFY arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 nlm_res arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 UNLOCK arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 CANCEL arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 LOCK arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 TEST arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv4 void arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 SHARE results encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 nlm_res results encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 TEST results encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 void results encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 FREE_ALL arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 SHARE arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 SM_NOTIFY arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 nlm_res arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 UNLOCK arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 CANCEL arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 LOCK arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 TEST arguments decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Update the NLMv1 void argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- lockd: Common NLM XDR helpers (Scott Mayhew) [2064216]
+- lockd: Create a simplified .vs_dispatch method for NLM requests (Scott Mayhew) [2064216]
+- lockd: Remove stale comments (Scott Mayhew) [2064216]
+- nfsd: rpc_peeraddr2str needs rcu lock (Scott Mayhew) [2064216]
+- rpc: remove redundant initialization of variable status (Scott Mayhew) [2064216]
+- NFSv4: setlease should return EAGAIN if locks are not available (Scott Mayhew) [2064216]
+- NFS: Avoid duplicate resets of attribute cache timeouts (Scott Mayhew) [2064216]
+- NFSv4: Fix handling of non-atomic change attrbute updates (Scott Mayhew) [2064216]
+- NFS: Fix up inode attribute revalidation timeouts (Scott Mayhew) [2064216]
+- NFSv4: Add support for application leases underpinned by a delegation (Scott Mayhew) [2064216]
+- NFSv4: Add lease breakpoints in case of a delegation recall or return (Scott Mayhew) [2064216]
+- NFSv4: Fix delegation return in cases where we have to retry (Scott Mayhew) [2064216]
+- nfsd: move some commit_metadata()s outside the inode lock (Scott Mayhew) [2064216]
+- NFSD: Update nfsd_cb_args tracepoint (Scott Mayhew) [2064216]
+- NFSD: Remove the nfsd_cb_work and nfsd_cb_done tracepoints (Scott Mayhew) [2064216]
+- NFSD: Add an nfsd_cb_probe tracepoint (Scott Mayhew) [2064216]
+- NFSD: Replace the nfsd_deleg_break tracepoint (Scott Mayhew) [2064216]
+- NFSD: Add an nfsd_cb_offload tracepoint (Scott Mayhew) [2064216]
+- NFSD: Add an nfsd_cb_lm_notify tracepoint (Scott Mayhew) [2064216]
+- NFSD: Enhance the nfsd_cb_setup tracepoint (Scott Mayhew) [2064216]
+- NFSD: Remove spurious cb_setup_err tracepoint (Scott Mayhew) [2064216]
+- NFSD: Adjust cb_shutdown tracepoint (Scott Mayhew) [2064216]
+- NFSD: Add cb_lost tracepoint (Scott Mayhew) [2064216]
+- NFSD: Drop TRACE_DEFINE_ENUM for NFSD4_CB_<state> macros (Scott Mayhew) [2064216]
+- NFSD: Capture every CB state transition (Scott Mayhew) [2064216]
+- NFSD: Constify @fh argument of knfsd_fh_hash() (Scott Mayhew) [2064216]
+- NFSD: Add tracepoints for EXCHANGEID edge cases (Scott Mayhew) [2064216]
+- NFSD: Add tracepoints for SETCLIENTID edge cases (Scott Mayhew) [2064216]
+- NFSD: Add a couple more nfsd_clid_expired call sites (Scott Mayhew) [2064216]
+- NFSD: Add nfsd_clid_destroyed tracepoint (Scott Mayhew) [2064216]
+- NFSD: Add nfsd_clid_reclaim_complete tracepoint (Scott Mayhew) [2064216]
+- NFSD: Add nfsd_clid_confirmed tracepoint (Scott Mayhew) [2064216]
+- NFSD: Remove trace_nfsd_clid_inuse_err (Scott Mayhew) [2064216]
+- NFSD: Add nfsd_clid_verf_mismatch tracepoint (Scott Mayhew) [2064216]
+- NFSD: Add nfsd_clid_cred_mismatch tracepoint (Scott Mayhew) [2064216]
+- NFSD: Add an RPC authflavor tracepoint display helper (Scott Mayhew) [2064216]
+- NFS: Ensure the NFS_CAP_SECURITY_LABEL capability is set when appropriate (Scott Mayhew) [2064216]
+- NFS: Split attribute support out from the server capabilities (Scott Mayhew) [2064216]
+- NFS: Don't store NFS_INO_REVAL_FORCED (Scott Mayhew) [2064216]
+- NFSv4: link must update the inode nlink. (Scott Mayhew) [2064216]
+- NFSv4: nfs4_inc/dec_nlink_locked should also invalidate ctime (Scott Mayhew) [2064216]
+- NFS: Another inode revalidation improvement (Scott Mayhew) [2064216]
+- NFS: Use information about the change attribute to optimise updates (Scott Mayhew) [2064216]
+- NFSv4: Add support for the NFSv4.2 "change_attr_type" attribute (Scott Mayhew) [2064216]
+- NFS: Simplify cache consistency in nfs_check_inode_attributes() (Scott Mayhew) [2064216]
+- NFS: Remove a line of code that has no effect in nfs_update_inode() (Scott Mayhew) [2064216]
+- NFS: Fix up handling of outstanding layoutcommit in nfs_update_inode() (Scott Mayhew) [2064216]
+- NFS: Separate tracking of file mode cache validity from the uid/gid (Scott Mayhew) [2064216]
+- NFS: Separate tracking of file nlinks cache validity from the mode/uid/gid (Scott Mayhew) [2064216]
+- NFSv4: Fix nfs4_bitmap_copy_adjust() (Scott Mayhew) [2064216]
+- NFS: Don't set NFS_INO_REVAL_PAGECACHE in the inode cache validity (Scott Mayhew) [2064216]
+- NFS: Replace use of NFS_INO_REVAL_PAGECACHE when checking cache validity (Scott Mayhew) [2064216]
+- NFS: Add a cache validity flag argument to nfs_revalidate_inode() (Scott Mayhew) [2064216]
+- NFS: nfs_setattr_update_inode() should clear the suid/sgid bits (Scott Mayhew) [2064216]
+- NFS: Fix up statx() results (Scott Mayhew) [2064216]
+- NFS: Don't revalidate attributes that are not being asked for (Scott Mayhew) [2064216]
+- NFSD: Clean up after updating NFSv3 ACL encoders (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 SETACL result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 GETACL result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Clean up after updating NFSv2 ACL encoders (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 ACL ACCESS result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 ACL GETATTR result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 SETACL result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 GETACL result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Add an xdr_stream-based encoder for NFSv2/3 ACLs (Scott Mayhew) [2064216]
+- NFSD: Remove unused NFSv2 directory entry encoders (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 READDIR entry encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 READDIR result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Count bytes instead of pages in the NFSv2 READDIR encoder (Scott Mayhew) [2064216]
+- NFSD: Add a helper that encodes NFSv3 directory offset cookies (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 STATFS result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 READ result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 READLINK result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 diropres encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 attrstat encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 stat encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Reduce svc_rqst::rq_pages churn during READDIR operations (Scott Mayhew) [2064216]
+- NFSD: Remove unused NFSv3 directory entry encoders (Scott Mayhew) [2064216]
+- NFSD: Update NFSv3 READDIR entry encoders to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 READDIR3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Count bytes instead of pages in the NFSv3 READDIR encoder (Scott Mayhew) [2064216]
+- NFSD: Add a helper that encodes NFSv3 directory offset cookies (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 COMMIT3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 PATHCONF3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 FSINFO3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 FSSTAT3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 LINK3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 RENAMEv3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 CREATE family of encoders to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 WRITE3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 READ3res encode to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 READLINK3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 wccstat result encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 LOOKUP3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 ACCESS3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the GETATTR3res encoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Extract the svcxdr_init_encode() helper (Scott Mayhew) [2064216]
+- NFSD: Clean up after updating NFSv3 ACL decoders (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 SETACL argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 GETACL argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Clean up after updating NFSv2 ACL decoders (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 ACL ACCESS argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 ACL GETATTR argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 SETACL argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Add an xdr_stream-based decoder for NFSv2/3 ACLs (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 GETACL argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Remove argument length checking in nfsd_dispatch() (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 SYMLINK argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 CREATE argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 SETATTR argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 LINK argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 RENAME argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update NFSv2 diropargs decoding to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 READDIR argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Add helper to set up the pages where the dirlist is encoded (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 READLINK argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 WRITE argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 READ argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv2 GETATTR argument decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the MKNOD3args decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the SYMLINK3args decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the MKDIR3args decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the CREATE3args decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the SETATTR3args decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the LINK3args decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the RENAME3args decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update the NFSv3 DIROPargs decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update COMMIT3arg decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update READDIR3args decoders to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Add helper to set up the pages where the dirlist is encoded (Scott Mayhew) [2064216]
+- NFSD: Fix returned READDIR offset cookie (Scott Mayhew) [2064216]
+- NFSD: Update READLINK3arg decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update WRITE3arg decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update READ3arg decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update ACCESS3arg decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- NFSD: Update GETATTR3args decoder to use struct xdr_stream (Scott Mayhew) [2064216]
+- SUNRPC: Move definition of XDR_UNIT (Scott Mayhew) [2064216]
+- rpcrdma: Capture bytes received in Receive completion tracepoints (Scott Mayhew) [2064216]
+- NFSD: Restore NFSv4 decoding's SAVEMEM functionality (Scott Mayhew) [2064216]
+- NFSD: Remove macros that are no longer used (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_compound() (Scott Mayhew) [2064216]
+- NFSD: Make nfsd4_ops::opnum a u32 (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_listxattrs() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_setxattr() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_xattr_name() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_clone() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_seek() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_offload_status() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_copy() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_fallocate() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_reclaim_complete() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_destroy_clientid() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_test_stateid() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_sequence() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_secinfo_no_name() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_layoutreturn() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_layoutget() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_layoutcommit() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_getdeviceinfo() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_free_stateid() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_destroy_session() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_create_session() (Scott Mayhew) [2064216]
+- NFSD: Add a helper to decode channel_attrs4 (Scott Mayhew) [2064216]
+- NFSD: Add a helper to decode nfs_impl_id4 (Scott Mayhew) [2064216]
+- NFSD: Add a helper to decode state_protect4_a (Scott Mayhew) [2064216]
+- NFSD: Add a separate decoder for ssv_sp_parms (Scott Mayhew) [2064216]
+- NFSD: Add a separate decoder to handle state_protect_ops (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_bind_conn_to_session() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_backchannel_ctl() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_cb_sec() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_release_lockowner() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_write() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_verify() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_setclientid_confirm() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_setclientid() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_setattr() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_secinfo() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_renew() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_rename() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_remove() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_readdir() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_read() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_putfh() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_open_downgrade() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_open_confirm() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_open() (Scott Mayhew) [2064216]
+- NFSD: Add helper to decode OPEN's open_claim4 argument (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_share_deny() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_share_access() (Scott Mayhew) [2064216]
+- NFSD: Add helper to decode OPEN's openflag4 argument (Scott Mayhew) [2064216]
+- NFSD: Add helper to decode OPEN's createhow4 argument (Scott Mayhew) [2064216]
+- NFSD: Add helper to decode NFSv4 verifiers (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_lookup() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_locku() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_lockt() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_lock() (Scott Mayhew) [2064216]
+- NFSD: Add helper for decoding locker4 (Scott Mayhew) [2064216]
+- NFSD: Add helpers to decode a clientid4 and an NFSv4 state owner (Scott Mayhew) [2064216]
+- NFSD: Relocate nfsd4_decode_opaque() (Scott Mayhew) [2064216]
+-  NFSD: Replace READ* macros in nfsd4_decode_link() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_getattr() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_delegreturn() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_create() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_fattr() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros that decode the fattr4 umask attribute (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros that decode the fattr4 security label attribute (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros that decode the fattr4 time_set attributes (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros that decode the fattr4 owner_group attribute (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros that decode the fattr4 owner attribute (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros that decode the fattr4 mode attribute (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros that decode the fattr4 acl attribute (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros that decode the fattr4 size attribute (Scott Mayhew) [2064216]
+- NFSD: Change the way the expected length of a fattr4 is checked (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_commit() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_close() (Scott Mayhew) [2064216]
+- NFSD: Replace READ* macros in nfsd4_decode_access() (Scott Mayhew) [2064216]
+- NFSD: Replace the internals of the READ_BUF() macro (Scott Mayhew) [2064216]
+- nfsd/nfs3: remove unused macro nfsd3_fhandleres (Scott Mayhew) [2064216]
+- vt: vt_ioctl: fix race in VT_RESIZEX (Čestmír Kalina) [2068338]
+- net/mlx5: Bridge, Fix devlink deadlock on net namespace deletion (Amir Tzin) [2055580]
+- openvswitch: Fix setting ipv6 fields causing hw csum failure (Eelco Chaudron) [1974356]
+
+* Wed May 18 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-393.el8]
+- Fix up versioning for maintainer builds (Jarod Wilson)
+- powerpc/iommu: Enable remaining IOMMU Pagesizes present in LoPAR (Gustavo Walbon) [1987109]
+- sizes.h: add SZ_8G/SZ_16G/SZ_32G macros (Gustavo Walbon) [1987109]
+- x86/cpu: Add Xeon Icelake-D to list of CPUs that support PPIN (Puneet Sethi) [2040336]
+- dm integrity: fix memory corruption when tag_size is less than digest size (Benjamin Marzinski) [2081775]
+- sctp: check asoc strreset_chunk in sctp_generate_reconf_event (Xin Long) [2079980]
+- sctp: Initialize daddr on peeled off socket (Xin Long) [2079980]
+- sctp: fix kernel-infoleak for SCTP sockets (Xin Long) [2079980]
+- sctp: do not update transport pathmtu if SPP_PMTUD_ENABLE is not set (Xin Long) [2079980]
+- dm crypt: fix copy and paste bug in crypt_alloc_req_aead (Benjamin Marzinski) [2073431]
+- dm crypt: defer decryption to a tasklet if interrupts disabled (Benjamin Marzinski) [2073431]
+- dm crypt: do not call bio_endio() from the dm-crypt tasklet (Benjamin Marzinski) [2073431]
+- dm crypt: use GFP_ATOMIC when allocating crypto requests from softirq (Benjamin Marzinski) [2073431]
+- dm crypt: do not wait for backlogged crypto request completion in softirq (Benjamin Marzinski) [2073431]
+- dm crypt: document new no_workqueue flags (Benjamin Marzinski) [2073431]
+- dm crypt: add flags to optionally bypass kcryptd workqueues (Benjamin Marzinski) [2073431]
+- tracing/osnoise: Force quiescent states while tracing (Jerome Marchand) [2069710]
+- tracing/osnoise: Do not unregister events twice (Jerome Marchand) [2069710]
+- tracing/osnoise: Make osnoise_main to sleep for microseconds (Jerome Marchand) [2069710]
+- tracing/osnoise: Properly unhook events if start_per_cpu_kthreads() fails (Jerome Marchand) [2069710]
+- tracing/osnoise: Make osnoise_instances static (Jerome Marchand) [2069710]
+- tracing/osnoise: Remove PREEMPT_RT ifdefs from inside functions (Jerome Marchand) [2069710]
+- tracing/osnoise: Remove STACKTRACE ifdefs from inside functions (Jerome Marchand) [2069710]
+- tracing/osnoise: Allow multiple instances of the same tracer (Jerome Marchand) [2069710]
+- tracing/osnoise: Remove TIMERLAT ifdefs from inside functions (Jerome Marchand) [2069710]
+- tracing/osnoise: Support a list of trace_array *tr (Jerome Marchand) [2069710]
+- tracing/osnoise: Use start/stop_per_cpu_kthreads() on osnoise_cpus_write() (Jerome Marchand) [2069710]
+- tracing/osnoise: Split workload start from the tracer start (Jerome Marchand) [2069710]
+- tracing/osnoise: Improve comments about barrier need for NMI callbacks (Jerome Marchand) [2069710]
+- tracing/osnoise: Do not follow tracing_cpumask (Jerome Marchand) [2069710]
+- trace/timerlat: Add migrate-disabled field to the timerlat header (Jerome Marchand) [2069710]
+- trace/osnoise: Add migrate-disabled field to the osnoise header (Jerome Marchand) [2069710]
+- tracing/doc: Fix typos on the timerlat tracer documentation (Jerome Marchand) [2069710]
+- trace/osnoise: Fix an ifdef comment (Jerome Marchand) [2069710]
+- redhat: indicate HEAD state in tarball/rpm name (Jarod Wilson)
+- selftest: net: Test IPv4 PMTU exceptions with DSCP and ECN (Guillaume Nault) [2081453]
+- ipv4: Fix route lookups when handling ICMP redirects and PMTU updates (Guillaume Nault) [2081453]
+- ipv4: tcp: send zero IPID in SYNACK messages (Guillaume Nault) [2081453]
+- ipv4: raw: lock the socket in raw_bind() (Guillaume Nault) [2081453]
+- net/af_packet: add VLAN support for AF_PACKET SOCK_RAW GSO (Hangbin Liu) [2066976]
+- net/packet: fix packet_sock xmit return value checking (Hangbin Liu) [2066976]
+- doc/ip-sysctl: add bc_forwarding (Xin Long) [2080486]
+- net/packet: fix packet_sock xmit return value checking (Xin Long) [2080486]
+- net: handle ARPHRD_PIMREG in dev_is_mac_header_xmit() (Xin Long) [2080486]
+- net/packet: fix slab-out-of-bounds access in packet_recvmsg() (Xin Long) [2080486]
+- veth: fix races around rq->rx_notify_masked (Xin Long) [2080486]
+- af_packet: fix data-race in packet_setsockopt / packet_setsockopt (Xin Long) [2080486]
+- ipv4: remove sparse error in ip_neigh_gw4() (Xin Long) [2080486]
+- af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress (Xin Long) [2080486]
+- veth: Do not record rx queue hint in veth_xmit (Xin Long) [2080486]
+- veth: ensure skb entering GRO are not cloned. (Xin Long) [2080486]
+- ethtool: Fix link extended state for big endian (Xin Long) [2080486]
+- ethtool: do not perform operations on net devices being unregistered (Xin Long) [2080486]
+- ethtool: Add transceiver module extended state (Xin Long) [2080486]
+- ethtool: runtime-resume netdev parent in ethnl_ops_begin (Xin Long) [2080486]
+- ethtool: move netif_device_present check from ethnl_parse_header_dev_get to ethnl_ops_begin (Xin Long) [2080486]
+- ethtool: move implementation of ethnl_ops_begin/complete to netlink.c (Xin Long) [2080486]
+- net: validate lwtstate->data before returning from skb_tunnel_info() (Xin Long) [2080486]
+
+* Tue May 17 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-392.el8]
+- bnx2x: fix napi API usage sequence (Manish Chopra) [2080659]
+- netfilter: fix use-after-free in __nf_register_net_hook() (Florian Westphal) [2080272]
+- netfilter: nf_tables: unregister flowtable hooks on netns exit (Florian Westphal) [2080272]
+- netfilter: nftables: add helper function to release hooks of one single table (Florian Westphal) [2080272]
+- netfilter: nft_socket: only do sk lookups when indev is available (Florian Westphal) [2080272]
+- netfilter: nf_conntrack_tcp: re-init for syn packets only (Florian Westphal) [2080272]
+- netfilter: nft_set_rbtree: overlap detection with element re-addition after deletion (Florian Westphal) [2080272]
+- netfilter: nf_tables: fix memory leak during stateful obj update (Florian Westphal) [2080272]
+- netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options (Florian Westphal) [2080272]
+- netfilter: ctnetlink: disable helper autoassign (Florian Westphal) [2080272]
+- netfilter: nft_payload: don't allow th access for fragments (Florian Westphal) [2080272]
+- netfilter: nft_payload: simplify vlan header handling (Florian Westphal) [2080272]
+- RDMA/rxe: Change mcg_lock to a _bh lock (Kamal Heib) [2056500]
+- RDMA/rxe: Do not call dev_mc_add/del() under a spinlock (Kamal Heib) [2056500]
+- RDMA/rxe: Recheck the MR in when generating a READ reply (Kamal Heib) [2056500]
+- RDMA/rxe: Fix "Replace mr by rkey in responder resources" (Kamal Heib) [2056500]
+- RDMA/siw: Fix a condition race issue in MPA request processing (Kamal Heib) [2056500]
+- RDMA/irdma: Fix possible crash due to NULL netdev in notifier (Kamal Heib) [2056500]
+- RDMA/irdma: Reduce iWARP QP destroy time (Kamal Heib) [2056500]
+- RDMA/irdma: Flush iWARP QP if modified to ERR from RTR state (Kamal Heib) [2056500]
+- RDMA/irdma: Fix deadlock in irdma_cleanup_cm_core() (Kamal Heib) [2056500]
+- RDMA/hfi1: Fix use-after-free bug for mm struct (Kamal Heib) [2056500]
+- IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition (Kamal Heib) [2056500]
+- IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD (Kamal Heib) [2056500]
+- RDMA/nldev: Prevent underflow in nldev_stat_set_counter_dynamic_doit() (Kamal Heib) [2056500]
+- IB/iser: Fix error flow in case of registration failure (Kamal Heib) [2056500]
+- IB/iser: Generalize map/unmap dma tasks (Kamal Heib) [2056500]
+- IB/iser: Use iser_fr_desc as registration context (Kamal Heib) [2056500]
+- IB/iser: Remove iser_reg_data_sg helper function (Kamal Heib) [2056500]
+- RDMA/rxe: Use standard names for ref counting (Kamal Heib) [2056500]
+- RDMA/rxe: Replace red-black trees by xarrays (Kamal Heib) [2056500]
+- RDMA/rxe: Shorten pool names in rxe_pool.c (Kamal Heib) [2056500]
+- RDMA/rxe: Move max_elem into rxe_type_info (Kamal Heib) [2056500]
+- RDMA/rxe: Replace obj by elem in declaration (Kamal Heib) [2056500]
+- RDMA/rxe: Delete _locked() APIs for pool objects (Kamal Heib) [2056500]
+- RDMA/rxe: Reverse the sense of RXE_POOL_NO_ALLOC (Kamal Heib) [2056500]
+- RDMA/rxe: Replace mr by rkey in responder resources (Kamal Heib) [2056500]
+- RDMA/rxe: Fix ref error in rxe_av.c (Kamal Heib) [2056500]
+- RDMA/irdma: Add support for address handle re-use (Kamal Heib) [2056500]
+- Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error" (Kamal Heib) [2056500]
+- RDMA/rxe: Remove useless argument for update_state() (Kamal Heib) [2056500]
+- RDMA/rxe: Change variable and function argument to proper type (Kamal Heib) [2056500]
+- RDMA/irdma: Prevent some integer underflows (Kamal Heib) [2056500]
+- RDMA/core: Fix ib_qp_usecnt_dec() called when error (Kamal Heib) [2056500]
+- IB/hfi1: Allow larger MTU without AIP (Kamal Heib) [2056500]
+- RDMA/core: Remove unnecessary statements (Kamal Heib) [2056500]
+- RDMA/irdma: Remove incorrect masking of PD (Kamal Heib) [2056500]
+- RDMA/irdma: Fix Passthrough mode in VM (Kamal Heib) [2056500]
+- RDMA/irdma: Fix netdev notifications for vlan's (Kamal Heib) [2056500]
+- RDMA/irdma: Make irdma_create_mg_ctx return a void (Kamal Heib) [2056500]
+- RDMA/irdma: Move union irdma_sockaddr to header file (Kamal Heib) [2056500]
+- RDMA/irdma: Remove the unnecessary variable saddr (Kamal Heib) [2056500]
+- RDMA/irdma: Use net_type to check network type (Kamal Heib) [2056500]
+- RDMA/rxe: Cleanup rxe_mcast.c (Kamal Heib) [2056500]
+- RDMA/rxe: Collect cleanup mca code in a subroutine (Kamal Heib) [2056500]
+- RDMA/rxe: Collect mca init code in a subroutine (Kamal Heib) [2056500]
+- RDMA/rxe: Warn if mcast memory is not freed (Kamal Heib) [2056500]
+- RDMA/irdma: Remove excess error variables (Kamal Heib) [2056500]
+- RDMA/irdma: Propagate error codes (Kamal Heib) [2056500]
+- RDMA/irdma: Remove enum irdma_status_code (Kamal Heib) [2056500]
+- RDMA/ib_srp: Add more documentation (Kamal Heib) [2056500]
+- IB/cma: Allow XRC INI QPs to set their local ACK timeout (Kamal Heib) [2056500]
+- RDMA/rxe: Remove mcg from rxe pools (Kamal Heib) [2056500]
+- RDMA/rxe: Remove key'ed object support (Kamal Heib) [2056500]
+- RDMA/rxe: Replace pool key by rxe->mcg_tree (Kamal Heib) [2056500]
+- RDMA/rxe: Replace int num_qp by atomic_t qp_num (Kamal Heib) [2056500]
+- RDMA/rxe: Replace grp by mcg, mce by mca (Kamal Heib) [2056500]
+- RDMA/rxe: Use kzmalloc/kfree for mca (Kamal Heib) [2056500]
+- RDMA/rxe: Move mcg_lock to rxe (Kamal Heib) [2056500]
+- RDMA/hfi: Replace cpumask_weight with cpumask_empty where appropriate (Kamal Heib) [2056500]
+- RDMA/irdma: Refactor DCB bits in prep for DSCP support (Kamal Heib) [2056500]
+- RDMA/opa: Delete useless module.h include (Kamal Heib) [2056500]
+- RDMA/iser: Delete useless module.h include (Kamal Heib) [2056500]
+- RDMA/ipoib: Delete useless module.h include (Kamal Heib) [2056500]
+- RDMA/rxe: Delete useless module.h include (Kamal Heib) [2056500]
+- RDMA/usnic: Delete useless module.h include (Kamal Heib) [2056500]
+- RDMA/hfi1: Delete useless module.h include (Kamal Heib) [2056500]
+- RDMA/core: Delete useless module.h include (Kamal Heib) [2056500]
+- RDMA/core: Set MR type in ib_reg_user_mr (Kamal Heib) [2056500]
+- md: Set MD_BROKEN for RAID1 and RAID10 (Nigel Croxon) [2042729]
+- raid5: introduce MD_BROKEN (Nigel Croxon) [2042729]
+- RHEL only Changes to support block changes not picked up (Nigel Croxon) [2042729]
+- md: fix NULL pointer deref with nowait but no mddev->queue (Nigel Croxon) [2042729]
+- md: use default_groups in kobj_type (Nigel Croxon) [2042729]
+- md: Move alloc/free acct bioset in to personality (Nigel Croxon) [2042729]
+- md: fix spelling of "its" (Nigel Croxon) [2042729]
+- md: raid456 add nowait support (Nigel Croxon) [2042729]
+- md: raid10 add nowait support (Nigel Croxon) [2042729]
+- md: raid1 add nowait support (Nigel Croxon) [2042729]
+- md: add support for REQ_NOWAIT (Nigel Croxon) [2042729]
+- md/raid5: play nice with PREEMPT_RT (Nigel Croxon) [2042729]
+- md/raid1: fix missing bitmap update w/o WriteMostly devices (Nigel Croxon) [2042729]
+- md: fix double free of mddev->private in autorun_array() (Nigel Croxon) [2042729]
+- md: fix update super 1.0 on rdev size change (Nigel Croxon) [2042729]
+- raid5-ppl: use swap() to make code cleaner (Nigel Croxon) [2042729]
+- md/bitmap: don't set max_write_behind if there is no write mostly device (Nigel Croxon) [2042729]
+- md: update superblock after changing rdev flags in state_store (Nigel Croxon) [2042729]
+- md: remove unused argument from md_new_event (Nigel Croxon) [2042729]
+- md/raid5: call roundup_pow_of_two in raid5_run (Nigel Croxon) [2042729]
+- md/raid1: use rdev in raid1_write_request directly (Nigel Croxon) [2042729]
+- md/raid1: only allocate write behind bio for WriteMostly device (Nigel Croxon) [2042729]
+- md: properly unwind when failing to add the kobject in md_alloc (Nigel Croxon) [2042729]
+- md: extend disks_mutex coverage (Nigel Croxon) [2042729]
+- md: add the bitmap group to the default groups for the md kobject (Nigel Croxon) [2042729]
+- md: add error handling support for add_disk() (Nigel Croxon) [2042729]
+- md: fix a lock order reversal in md_alloc (Nigel Croxon) [2042729]
+- scsi: qedf: Stop using the SCSI pointer (Nilesh Javali) [2044843]
+- scsi: qedf: Change context reset messages to ratelimited (Nilesh Javali) [2044843]
+- scsi: qedf: Fix refcount issue when LOGO is received during TMF (Nilesh Javali) [2044843]
+- scsi: qedf: Add stag_work to all the vports (Nilesh Javali) [2044843]
+- scsi: qedf: Fix potential dereference of NULL pointer (Nilesh Javali) [2044843]
+- eth: fwnode: remove the addr len from mac helpers (Íñigo Huguet) [2069565]
+- eth: fwnode: change the return type of mac address helpers (Íñigo Huguet) [2069565]
+- device property: move mac addr helpers to eth.c (Íñigo Huguet) [2069565]
+- net: thunderx: Use fwnode_get_mac_address() (Íñigo Huguet) [2069565]
+- qede: confirm skb is allocated before using (Manish Chopra) [2040267]
+- qed: fix ethtool register dump (Manish Chopra) [2040267]
+- qed: remove unnecessary memset in qed_init_fw_funcs (Manish Chopra) [2040267]
+- qed: return status of qed_iov_get_link (Manish Chopra) [2040267]
+- net: qlogic: check the return value of dma_alloc_coherent() in qed_vf_hw_prepare() (Manish Chopra) [2040267]
+- qed: validate and restrict untrusted VFs vlan promisc mode (Manish Chopra) [2040267]
+- qed: display VF trust config (Manish Chopra) [2040267]
+- qed: prevent a fw assert during device shutdown (Manish Chopra) [2040267]
+- qed: use msleep() in qed_mcp_cmd() and add qed_mcp_cmd_nosleep() for udelay. (Manish Chopra) [2040267]
+- qed: Use dma_set_mask_and_coherent() and simplify code (Manish Chopra) [2040267]
+- qed*: esl priv flag support through ethtool (Manish Chopra) [2040267]
+- qed*: enhance tx timeout debug info (Manish Chopra) [2040267]
+- qede: validate non LSO skb length (Manish Chopra) [2040267]
+- qed: Enhance rammod debug prints to provide pretty details (Manish Chopra) [2040267]
+- net: qed: fix the array may be out of bound (Manish Chopra) [2040267]
+- qed: Use the bitmap API to simplify some functions (Manish Chopra) [2040267]
+- RDMA/qed: Use helper function to set GUIDs (Manish Chopra) [2040267]
+- net: qed_dev: fix check of true !rc expression (Manish Chopra) [2040267]
+- net: qed_ptp: fix check of true !rc expression (Manish Chopra) [2040267]
+- RDMA/qedr: Remove unsupported qedr_resize_cq callback (Manish Chopra) [2040267]
+- qed: Change the TCP common variable - "iscsi_ooo" (Manish Chopra) [2040267]
+- qed: Optimize the ll2 ooo flow (Manish Chopra) [2040267]
+- net: qed_debug: fix check of false (grc_param < 0) expression (Manish Chopra) [2040267]
+- qed: Fix missing error code in qed_slowpath_start() (Manish Chopra) [2040267]
+- qed: Fix compilation for CONFIG_QED_SRIOV undefined scenario (Manish Chopra) [2040267]
+- qed: Initialize debug string array (Manish Chopra) [2040267]
+- qed: Fix spelling mistake "ctx_bsaed" -> "ctx_based" (Manish Chopra) [2040267]
+- qed: fix ll2 establishment during load of RDMA driver (Manish Chopra) [2040267]
+- qed: Update the TCP active termination 2 MSL timer ("TIME_WAIT") (Manish Chopra) [2040267]
+- qed: Update TCP silly-window-syndrome timeout for iwarp, scsi (Manish Chopra) [2040267]
+- qed: Update debug related changes (Manish Chopra) [2040267]
+- qed: Add '_GTT' suffix to the IRO RAM macros (Manish Chopra) [2040267]
+- qed: Update FW init functions to support FW 8.59.1.0 (Manish Chopra) [2040267]
+- qed: Use enum as per FW 8.59.1.0 in qed_iro_hsi.h (Manish Chopra) [2040267]
+- qed: Update qed_hsi.h for fw 8.59.1.0 (Manish Chopra) [2040267]
+- qed: Update qed_mfw_hsi.h for FW ver 8.59.1.0 (Manish Chopra) [2040267]
+- qed: Update common_hsi for FW ver 8.59.1.0 (Manish Chopra) [2040267]
+- qed: Split huge qed_hsi.h header file (Manish Chopra) [2040267]
+- qed: Remove e4_ and _e4 from FW HSI (Manish Chopra) [2040267]
+- qed: Fix kernel-doc warnings (Manish Chopra) [2040267]
+- qed: Don't ignore devlink allocation failures (Manish Chopra) [2040267]
+- qed: Improve the stack space of filter_config() (Manish Chopra) [2040267]
+- RDMA/qedr: Move variables reset to qedr_set_common_qp_params() (Manish Chopra) [2040267]
+- ip_gre, ip6_gre: Fix race condition on o_seqno in collect_md mode (Guillaume Nault) [2081030]
+- ip6_gre: Make o_seqno start from 0 in native mode (Guillaume Nault) [2081030]
+- ip_gre: Make o_seqno start from 0 in native mode (Guillaume Nault) [2081030]
+- ip6_gre: Fix skb_under_panic in __gre6_xmit() (Guillaume Nault) [2081030]
+- ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit() (Guillaume Nault) [2081030]
+- ipv6_tunnel: Rate limit warning messages (Guillaume Nault) [2081030]
+- net: fix up skbs delta_truesize in UDP GRO frag_list (Hangbin Liu) [2082388]
+- drop_monitor: fix data-race in dropmon_net_event / trace_napi_poll_hit (Hangbin Liu) [2082388]
+- rtnetlink: make sure to refresh master_dev/m_ops in __rtnl_newlink() (Hangbin Liu) [2082388]
+- netns: add schedule point in ops_exit_list() (Hangbin Liu) [2082388]
+- lwtunnel: Validate RTA_ENCAP_TYPE attribute length (Hangbin Liu) [2082388]
+- net, neigh: clear whole pneigh_entry at alloc time (Hangbin Liu) [2082388]
+- net: annotate data-races on txq->xmit_lock_owner (Hangbin Liu) [2082388]
+- sock: fix /proc/net/sockstat underflow in sk_clone_lock() (Hangbin Liu) [2082388]
+- net: stream: don't purge sk_error_queue in sk_stream_kill_queues() (Hangbin Liu) [2082388]
+- rtnetlink: fix if_nlmsg_stats_size() under estimation (Hangbin Liu) [2082388]
+- net: watchdog: hold device global xmit lock during tx disable (Hangbin Liu) [2082388]
+- torture: Fix incorrectly redirected "exit" in kvm-remote.sh (Waiman Long) [2065993]
+- rcu: Allow rcu_irq_enter_check_tick() from NMI (Waiman Long) [2065993]
+- srcu: Early test SRCU polling start (Waiman Long) [2065993]
+- rcu/nocb: Unify timers (Waiman Long) [2065993]
+- rcu/nocb: Prepare for fine-grained deferred wakeup (Waiman Long) [2065993]
+- rcu/nocb: Only cancel nocb timer if not polling (Waiman Long) [2065993]
+- rcu/nocb: Delete bypass_timer upon nocb_gp wakeup (Waiman Long) [2065993]
+- rcu/nocb: Cancel nocb_timer upon nocb_gp wakeup (Waiman Long) [2065993]
+- rcu/nocb: Allow de-offloading rdp leader (Waiman Long) [2065993]
+- rcu/nocb: Directly call __wake_nocb_gp() from bypass timer (Waiman Long) [2065993]
+- refscale: Avoid false-positive warnings in ref_scale_reader() (Waiman Long) [2065993]
+- scftorture: Avoid false-positive warnings in scftorture_invoker() (Waiman Long) [2065993]
+- rcu-tasks: Don't delete holdouts within trc_wait_for_one_reader() (Waiman Long) [2065993]
+- rcu-tasks: Don't delete holdouts within trc_inspect_reader() (Waiman Long) [2065993]
+- rcutorture: Move mem_dump_obj() tests into separate function (Waiman Long) [2065993]
+- rcu: Remove obsolete rcu_read_unlock() deadlock commentary (Waiman Long) [2065993]
+- rcu: Improve comments describing RCU read-side critical sections (Waiman Long) [2065993]
+- rcu: Add missing __releases() annotation (Waiman Long) [2065993]
+- kvfree_rcu: Fix comments according to current code (Waiman Long) [2065993]
+- torture: Don't cap remote runs by build-system number of CPUs (Waiman Long) [2065993]
+- torture: Make kvm-remote.sh account for network failure in pathname checks (Waiman Long) [2065993]
+- rcu: Create an unrcu_pointer() to remove __rcu from a pointer (Waiman Long) [2065993]
+- kvfree_rcu: Refactor kfree_rcu_monitor() (Waiman Long) [2065993]
+- srcu: Fix broken node geometry after early ssp init (Waiman Long) [2065993]
+- rcu: Point to documentation of ordering guarantees (Waiman Long) [2065993]
+- rcu: Don't penalize priority boosting when there is nothing to boost (Waiman Long) [2065993]
+- kvfree_rcu: Use kfree_rcu_monitor() instead of open-coded variant (Waiman Long) [2065993]
+- kvfree_rcu: Update "monitor_todo" once a batch is started (Waiman Long) [2065993]
+- kvfree_rcu: Add a bulk-list check when a scheduler is run (Waiman Long) [2065993]
+- kvfree_rcu: Use [READ/WRITE]_ONCE() macros to access to nr_bkv_objs (Waiman Long) [2065993]
+- kvfree_rcu: Release a page cache under memory pressure (Waiman Long) [2065993]
+- rcu: Shrink each possible cpu krcp (Waiman Long) [2065993]
+- rcu/segcblist: Prevent useless GP start if no CBs to accelerate (Waiman Long) [2065993]
+- rcutorture: Don't count CPU-stalled time against priority boosting (Waiman Long) [2065993]
+- rcu: Make rcu_gp_cleanup() be noinline for tracing (Waiman Long) [2065993]
+- rcutorture: Add BUSTED-BOOST to test RCU priority boosting tests (Waiman Long) [2065993]
+- srcu: Initialize SRCU after timers (Waiman Long) [2065993]
+- srcu: Unconditionally embed struct lockdep_map (Waiman Long) [2065993]
+- rcutorture: Forgive RCU boost failures when CPUs don't pass through QS (Waiman Long) [2065993]
+- rcutorture: Test start_poll_synchronize_rcu() and poll_state_synchronize_rcu() (Waiman Long) [2065993]
+- rcu: Provide polling interfaces for Tree RCU grace periods (Waiman Long) [2065993]
+- rcutorture: Make rcu_torture_boost_failed() check for GP end (Waiman Long) [2065993]
+- rcutorture: Consolidate rcu_torture_boost() timing and statistics (Waiman Long) [2065993]
+- rcutorture: Delay-based false positives for RCU priority boosting tests (Waiman Long) [2065993]
+- rcu: Restrict RCU_STRICT_GRACE_PERIOD to at most four CPUs (Waiman Long) [2065993]
+- rcu: Make show_rcu_gp_kthreads() dump rcu_node structures blocking GP (Waiman Long) [2065993]
+- rcu: Add quiescent states and boost states to show_rcu_gp_kthreads() output (Waiman Long) [2065993]
+- rcu: Make RCU priority boosting work on single-CPU rcu_node structures (Waiman Long) [2065993]
+- rcu: Reject RCU_LOCKDEP_WARN() false positives (Waiman Long) [2065993]
+- lockdep: Explicitly flag likely false-positive report (Waiman Long) [2065993]
+- rcu: Add ->gp_max to show_rcu_gp_kthreads() output (Waiman Long) [2065993]
+- rcu: Add ->rt_priority and ->gp_start to show_rcu_gp_kthreads() output (Waiman Long) [2065993]
+- srcu: Remove superfluous sdp->srcu_lock_count zero filling (Waiman Long) [2065993]
+- srcu: Remove superfluous ssp initialization for early callbacks (Waiman Long) [2065993]
+- torture:  Set kvm.sh language to English (Waiman Long) [2065993]
+- torture: Correctly fetch number of CPUs for non-English languages (Waiman Long) [2065993]
+- rcu: Invoke rcu_spawn_core_kthreads() from rcu_spawn_gp_kthread() (Waiman Long) [2065993]
+- rcutorture: Judge RCU priority boosting on grace periods, not callbacks (Waiman Long) [2065993]
+- sched,rcutorture: Convert to sched_set_fifo_low() (Waiman Long) [2065993]
+- rcu: Improve tree.c comments and add code cleanups (Waiman Long) [2065993]
+- rcu: Abstract out rcu_irq_enter_check_tick() from rcu_nmi_enter() (Waiman Long) [2065993]
+- rcu: Remove the unused rcu_irq_exit_preempt() function (Waiman Long) [2065993]
+- torture: Make kvm-find-errors.sh account for kvm-remote.sh (Waiman Long) [2065993]
+- torture:  Make the build machine control N in "make -jN" (Waiman Long) [2065993]
+- torture: Make kvm.sh use abstracted kvm-end-run-stats.sh (Waiman Long) [2065993]
+- torture: Abstract end-of-run summary (Waiman Long) [2065993]
+- rcu: Fix typo in comment: kthead -> kthread (Waiman Long) [2065993]
+- rcutorture: Abstract read-lock-held checks (Waiman Long) [2065993]
+- refscale: Add acqrel, lock, and lock-irq (Waiman Long) [2065993]
+- torture: Add kvm-remote.sh script for distributed rcutorture test runs (Waiman Long) [2065993]
+- refscale: Allow CPU hotplug to be enabled (Waiman Long) [2065993]
+- torture: Make kvm-again.sh use "scenarios" rather than "batches" file (Waiman Long) [2065993]
+- torture: Add "scenarios" option to kvm.sh --dryrun parameter (Waiman Long) [2065993]
+- rcu-tasks: Add block comment laying out RCU Rude design (Waiman Long) [2065993]
+- torture: Fix remaining erroneous torture.sh instance of $* (Waiman Long) [2065993]
+- rcu/tree: Add a trace event for RCU CPU stall warnings (Waiman Long) [2065993]
+- torture: Fix kvm.sh --datestamp regex check (Waiman Long) [2065993]
+- rcu: Add explicit barrier() to __rcu_read_unlock() (Waiman Long) [2065993]
+- rcu-tasks: Add block comment laying out RCU Tasks Trace design (Waiman Long) [2065993]
+- rcu: Make nocb_nobypass_lim_per_jiffy static (Waiman Long) [2065993]
+- torture: Consolidate qemu-cmd duration editing into kvm-transform.sh (Waiman Long) [2065993]
+- torture: Print proper vmlinux path for kvm-again.sh runs (Waiman Long) [2065993]
+- torture: Make TORTURE_TRUST_MAKE available in kvm-again.sh environment (Waiman Long) [2065993]
+- docs: Correctly spell Stephen Hemminger's name (Waiman Long) [2065993]
+- rcu/nocb: Use the rcuog CPU's ->nocb_timer (Waiman Long) [2065993]
+- rcu/nocb: Move trace_rcu_nocb_wake() calls outside nocb_lock when possible (Waiman Long) [2065993]
+- rcu/nocb: Remove stale comment above rcu_segcblist_offload() (Waiman Long) [2065993]
+- rcu/nocb: Disable bypass when CPU isn't completely offloaded (Waiman Long) [2065993]
+- rcu/nocb: Fix missed nocb_timer requeue (Waiman Long) [2065993]
+- rcu/nocb: Trigger self-IPI on late deferred wake up before user resume (Waiman Long) [2065993]
+- torture: Make kvm-transform.sh update jitter commands (Waiman Long) [2065993]
+- torture: Add --duration argument to kvm-again.sh (Waiman Long) [2065993]
+- rcu: deprecate "all" option to rcu_nocbs= (Waiman Long) [2065993]
+- torture: Rename SRCU-t and SRCU-u to avoid lowercase characters (Waiman Long) [2065993]
+- torture: Add kvm-again.sh to rerun a previous torture-test (Waiman Long) [2065993]
+- torture: Create a "batches" file for build reuse (Waiman Long) [2065993]
+- torture: De-capitalize TORTURE_SUITE (Waiman Long) [2065993]
+- rcuscale: Add kfree_rcu() single-argument scale test (Waiman Long) [2065993]
+- torture: Make upper-case-only no-dot no-slash scenario names official (Waiman Long) [2065993]
+- torture: Remove no-mpstat error message (Waiman Long) [2065993]
+- torture: Record kvm-test-1-run.sh and kvm-test-1-run-qemu.sh PIDs (Waiman Long) [2065993]
+- torture: Record jitter start/stop commands (Waiman Long) [2065993]
+- softirq: Don't try waking ksoftirqd before it has been spawned (Waiman Long) [2065993]
+- torture: Extract kvm-test-1-run-qemu.sh from kvm-test-1-run.sh (Waiman Long) [2065993]
+- torture: Record TORTURE_KCONFIG_GDB_ARG in qemu-cmd (Waiman Long) [2065993]
+- torture: Abstract jitter.sh start/stop into scripts (Waiman Long) [2065993]
+- torture: Reverse jittering and duration parameters for jitter.sh (Waiman Long) [2065993]
+- torture: Eliminate jitter_pids file (Waiman Long) [2065993]
+- torture: Use "jittering" file to control jitter.sh execution (Waiman Long) [2065993]
+- torture: Use file-based protocol to mark batch's runs complete (Waiman Long) [2065993]
+- torture: Move build/run synchronization files into scenario directories (Waiman Long) [2065993]
+- torture: Make jitter.sh handle large systems (Waiman Long) [2065993]
+- torture: Improve readability of the testid.txt file (Waiman Long) [2065993]
+- torture: Provide bare-metal modprobe-based advice (Waiman Long) [2065993]
+- kvfree_rcu: Use same set of GFP flags as does single-argument (Waiman Long) [2065993]
+- kvfree_rcu: Replace __GFP_RETRY_MAYFAIL by __GFP_NORETRY (Waiman Long) [2065993]
+- torture: Allow 1G of memory for torture.sh kvfree testing (Waiman Long) [2065993]
+- torture: Do Kconfig analysis only once per scenario (Waiman Long) [2065993]
+- torture: Compress KASAN vmlinux files (Waiman Long) [2065993]
+- torture: Add --kcsan-kmake-arg to torture.sh for KCSAN (Waiman Long) [2065993]
+- torture: Add command and results directory to torture.sh log (Waiman Long) [2065993]
+- torture: Allow scenarios to be specified to torture.sh (Waiman Long) [2065993]
+- torture: Drop log.long generation from torture.sh (Waiman Long) [2065993]
+- torture: Make torture.sh refuse to do zero-length runs (Waiman Long) [2065993]
+- torture: Make torture.sh throttle VERBOSE_TOROUT_*() for refscale (Waiman Long) [2065993]
+- torture: Make torture.sh allmodconfig retain and label output (Waiman Long) [2065993]
+- torture: Create doyesno helper function for torture.sh (Waiman Long) [2065993]
+- torture: Make torture.sh refscale runs use verbose_batched module parameter (Waiman Long) [2065993]
+- torture: Make torture.sh rcuscale and refscale deal with allmodconfig (Waiman Long) [2065993]
+- torture: Enable torture.sh argument checking (Waiman Long) [2065993]
+- torture: Auto-size SCF and scaling runs based on number of CPUs (Waiman Long) [2065993]
+- torture: Add "make allmodconfig" to torture.sh (Waiman Long) [2065993]
+- torture: Remove use of "eval" in torture.sh (Waiman Long) [2065993]
+- torture: Make torture.sh use common time-duration bash functions (Waiman Long) [2065993]
+- torture: Add torture.sh torture-everything script (Waiman Long) [2065993]
+- refscale: Disable verbose torture-test output (Waiman Long) [2065993]
+- rcuscale: Disable verbose torture-test output (Waiman Long) [2065993]
+- rcu/nocb: Rename nocb_gp_update_state to nocb_gp_update_state_deoffloading (Waiman Long) [2065993]
+- rcu/nocb: Avoid confusing double write of rdp->nocb_cb_sleep (Waiman Long) [2065993]
+- rcu/nocb: Only (re-)initialize segcblist when needed on CPU up (Waiman Long) [2065993]
+- rcu/nocb: Forbid NOCB toggling on offline CPUs (Waiman Long) [2065993]
+- rcu/nocb: Comment the reason behind BH disablement on batch processing (Waiman Long) [2065993]
+- rcu: Make rcu_read_unlock_special() expedite strict grace periods (Waiman Long) [2065993]
+- rcu-tasks: Rectify kernel-doc for struct rcu_tasks (Waiman Long) [2065993]
+- rcutorture: Replace rcu_torture_stall string with s (Waiman Long) [2065993]
+- torture: Replace torture_init_begin string with s (Waiman Long) [2065993]
+- rcutorture: Use "all" and "N" in "nohz_full" and "rcu_nocbs" (Waiman Long) [2065993]
+- kvfree_rcu: Make krc_this_cpu_unlock() use raw_spin_unlock_irqrestore() (Waiman Long) [2065993]
+- kvfree_rcu: Use __GFP_NOMEMALLOC for single-argument kvfree_rcu() (Waiman Long) [2065993]
+- kvfree_rcu: Directly allocate page for single-argument case (Waiman Long) [2065993]
+- rcutorture: Fix testing of RCU priority boosting (Waiman Long) [2065993]
+- rculist: Replace reference to atomic_ops.rst (Waiman Long) [2065993]
+- rcutorture: Make TREE03 use real-time tree.use_softirq setting (Waiman Long) [2065993]
+- rcu: Expedite deboost in case of deferred quiescent state (Waiman Long) [2065993]
+- rcu: Fix CPU-offline trace in rcutree_dying_cpu (Waiman Long) [2065993]
+- rcu: Remove superfluous rdp fetch (Waiman Long) [2065993]
+- torturescript: Don't rerun failed rcutorture builds (Waiman Long) [2065993]
+- rcutorture: Add crude tests for mem_dump_obj() (Waiman Long) [2065993]
+- mm: Don't build mm_dump_obj() on CONFIG_PRINTK=n kernels (Waiman Long) [2065993]
+- rcu/nocb: Detect unsafe checks for offloaded rdp (Waiman Long) [2065993]
+- sched/pelt: Fix attach_entity_load_avg() corner case (Phil Auld) [2056383]
+- devlink: Clarifies max_macs generic devlink param (Petr Oros) [2076586]
+- devlink: Add new "event_eq_size" generic device param (Petr Oros) [2076586]
+- devlink: Add new "io_eq_size" generic device param (Petr Oros) [2076586]
+- devlink: fix netns refcount leak in devlink_nl_cmd_reload() (Petr Oros) [2076586]
+- devlink: Simplify devlink resources unregister call (Petr Oros) [2076586]
+- devlink: Remove misleading internal_flags from health reporter dump (Petr Oros) [2076586]
+- devlink: Don't throw an error if flash notification sent before devlink visible (Petr Oros) [2076586]
+- devlink: fix flexible_array.cocci warning (Petr Oros) [2076586]
+- devlink: expose get/put functions (Petr Oros) [2076586]
+- devlink: make all symbols GPL-only (Petr Oros) [2076586]
+- devlink: Simplify internal devlink params implementation (Petr Oros) [2076586]
+- devlink: Clean not-executed param notifications (Petr Oros) [2076586]
+- devlink: Delete obsolete parameters publish API (Petr Oros) [2076586]
+- devlink: Remove extra device_lock assert checks (Petr Oros) [2076586]
+- devlink: Delete reload enable/disable interface (Petr Oros) [2076586]
+- devlink: Allow control devlink ops behavior through feature mask (Petr Oros) [2076586]
+- devlink: Annotate devlink API calls (Petr Oros) [2076586]
+- devlink: Move netdev_to_devlink helpers to devlink.c (Petr Oros) [2076586]
+- devlink: Reduce struct devlink exposure (Petr Oros) [2076586]
+- devlink: report maximum number of snapshots with regions (Petr Oros) [2076586]
+- devlink: Add missed notifications iterators (Petr Oros) [2076586]
+- netdevsim: Move devlink registration to be last devlink command (Petr Oros) [2076586]
+- qed: Move devlink registration to be last devlink command (Petr Oros) [2076586]
+- ionic: Move devlink registration to be last devlink command (Petr Oros) [2076586]
+- nfp: Move delink_register to be last command (Petr Oros) [2076586]
+- mlxsw: core: Register devlink instance last (Petr Oros) [2076586]
+- net/mlx5: Accept devlink user input after driver initialization complete (Petr Oros) [2076586]
+- net/mlx4: Move devlink_register to be the last initialization command (Petr Oros) [2076586]
+- ice: Open devlink when device is ready (Petr Oros) [2076586]
+- liquidio: Overcome missing device lock protection in init/remove flows (Petr Oros) [2076586]
+- bnxt_en: Register devlink instance at the end devlink configuration (Petr Oros) [2076586]
+- devlink: Notify users when objects are accessible (Petr Oros) [2076586]
+- devlink: Remove single line function obfuscations (Petr Oros) [2076586]
+- devlink: Delete not used port parameters APIs (Petr Oros) [2076586]
+- bnxt_en: Properly remove port parameter support (Petr Oros) [2076586]
+- bnxt_en: Check devlink allocation and registration status (Petr Oros) [2076586]
+- devlink: Make devlink_register to be void (Petr Oros) [2076586]
+- devlink: Delete not-used devlink APIs (Petr Oros) [2076586]
+- devlink: Delete not-used single parameter notification APIs (Petr Oros) [2076586]
+- devlink: Use xarray to store devlink instances (Petr Oros) [2076586]
+- devlink: Count struct devlink consumers (Petr Oros) [2076586]
+- devlink: Remove check of always valid devlink pointer (Petr Oros) [2076586]
+- devlink: Simplify devlink_pernet_pre_exit call (Petr Oros) [2076586]
+- devlink: Add APIs to publish, unpublish individual parameter (Petr Oros) [2076586]
+- devlink: Add API to register and unregister single parameter (Petr Oros) [2076586]
+- devlink: Create a helper function for one parameter registration (Petr Oros) [2076586]
+- devlink: Fix port_type_set function pointer check (Petr Oros) [2076586]
+- devlink: Set device as early as possible (Petr Oros) [2076586]
+- devlink: Simplify devlink port API calls (Petr Oros) [2076586]
+- devlink: Allocate devlink directly in requested net namespace (Petr Oros) [2076586]
+- devlink: Break parameter notification sequence to be before/after unload/load driver (Petr Oros) [2076586]
+- devlink: Remove duplicated registration check (Petr Oros) [2076586]
+- net/mlx5: Don't rely on always true registered field (Petr Oros) [2076586]
+- devlink: Unlock on error in dumpit() (Petr Oros) [2076586]
+- devlink: Fix some error codes (Petr Oros) [2076586]
+- net: devlink: Add support for port regions (Petr Oros) [2076586]
+- netdevsim: Forbid devlink reload when adding or deleting ports (Petr Oros) [2076586]
+- netdevsim: dev: Initialize FIB module after debugfs (Petr Oros) [2076586]
+- pidfd: fix a poll race when setting exit_state (Oleg Nesterov) [2044587]
+- fork: fix pidfd_poll()'s return type (Oleg Nesterov) [2044587]
+- pidfd: add polling support (Oleg Nesterov) [2044587]
+- kabi: introduce the kabi_aux_*() helpers (Oleg Nesterov) [2044587]
+- tg3: Remove redundant assignments (Ken Cox) [2043792]
+- ethernet: Remove redundant statement (Ken Cox) [2043792]
+- ethernet: tg3: remove direct netdev->dev_addr writes (Ken Cox) [2043792]
+- net: tg3: fix redundant check of true expression (Ken Cox) [2043792]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Ken Cox) [2043792]
+- net: ethernet: Use existing define with polynomial (Ken Cox) [2043792]
+
+* Fri May 13 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-391.el8]
+- scsi: mpt3sas: Fix mpt3sas_check_same_4gb_region() kdoc comment (Tomas Henzl) [2068045]
+- scsi: mpt3sas: Fix incorrect 4GB boundary check (Tomas Henzl) [2068045]
+- genirq/affinity: Consider that CPUs on nodes can be unbalanced (Ming Lei) [2074317]
+- scsi: target: pscsi: Set SCF_TREAT_READ_AS_NORMAL flag only if there is valid data (Maurizio Lombardi) [2074246]
+- audit: don't deref the syscall args when checking the openat2 open_how::flags (Carlos Maiolino) [2026590]
+- audit: add OPENAT2 record to list "how" info (Carlos Maiolino) [2026590]
+- audit: add support for the openat2 syscall (Carlos Maiolino) [2026590]
+- audit: replace magic audit syscall class numbers with macros (Carlos Maiolino) [2026590]
+- tools include UAPI: Sync x86's syscalls_64.tbl, generic unistd.h and fcntl.h to pick up openat2 and pidfd_getfd (Carlos Maiolino) [2026590]
+- open: don't silently ignore unknown O-flags in openat2() (Carlos Maiolino) [2026590]
+- openat2: reject RESOLVE_BENEATH|RESOLVE_IN_ROOT (Carlos Maiolino) [2026590]
+- open: introduce openat2(2) syscall (Carlos Maiolino) [2026590]
+- namei: LOOKUP_{IN_ROOT,BENEATH}: permit limited ".." resolution (Carlos Maiolino) [2026590]
+- namei: LOOKUP_IN_ROOT: chroot-like scoped resolution (Carlos Maiolino) [2026590]
+- namei: LOOKUP_BENEATH: O_BENEATH-like scoped resolution (Carlos Maiolino) [2026590]
+- namei: LOOKUP_NO_XDEV: block mountpoint crossing (Carlos Maiolino) [2026590]
+- namei: LOOKUP_NO_MAGICLINKS: block magic-link resolution (Carlos Maiolino) [2026590]
+- namei: LOOKUP_NO_SYMLINKS: block symlink resolution (Carlos Maiolino) [2026590]
+- namei: allow set_root() to produce errors (Carlos Maiolino) [2026590]
+- namei: allow nd_jump_link() to produce errors (Carlos Maiolino) [2026590]
+- nsfs: clean-up ns_get_path() signature to return int (Carlos Maiolino) [2026590]
+- namei: only return -ECHILD from follow_dotdot_rcu() (Carlos Maiolino) [2026590]
+- make path_init() unconditionally paired with terminate_walk() (Carlos Maiolino) [2026590]
+- nsfs: unobfuscate (Carlos Maiolino) [2026590]
+- ASoC: Intel: soc-acpi: add entries in ADL match table (Jaroslav Kysela) [2052011]
+- nvme-fc: add support for ->map_queues (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix typos in comments (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Update version to 10.02.07.400-k (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Increase max limit of ql2xnvme_queues (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Use correct feature type field during RFF_ID processing (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix stuck session of PRLI reject (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Reduce false trigger to login (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix laggy FC remote port session recovery (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix hang due to session stuck (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix N2N inconsistent PLOGI (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix crash during module load unload test (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix loss of NVMe namespaces after driver reload test (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix incorrect reporting of task management failure (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Use named initializers for q_dev_state (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Use named initializers for port_[d]state_str (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Stop using the SCSI pointer (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Remove unused qla_sess_op_cmd_list from scsi_qla_host_t (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Add qla2x00_async_done() for async routines (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Update version to 10.02.07.300-k (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Check for firmware dump already collected (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Add devids and conditionals for 28xx (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Fix clang warning (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix warning for missing error code (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix device reconnect in loop topology (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Add ql2xnvme_queues module param to configure number of NVMe queues (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix wrong FDMI data for 64G adapter (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Add retry for exec firmware (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix scheduling while atomic (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix premature hw access after PCI error (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix warning message due to adisc being flushed (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix stuck session in gpdb (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Implement ref count for SRB (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Refactor asynchronous command initialization (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Synchronize rport dev_loss_tmo setting (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Format log strings only if needed (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Fix off by one bug in qla_edif_app_getfcinfo() (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix mailbox direction flags in qla2xxx_get_adapter_id() (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Update version to 10.02.07.200-k (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Fix EDIF bsg (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Fix inconsistent check of db_flags (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Increase ELS payload (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Reduce connection thrash (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Tweak trace message (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Replace list_for_each_safe with list_for_each_entry_safe (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Flush stale events and msgs on session down (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Fix app start delay (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Fix app start fail (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Turn off target reset during issue_lip (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix gnl list corruption (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Relogin during fabric disturbance (Nilesh Javali) [2044833]
+- qla2xxx: add ->map_queues support for nvme (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix unmap of already freed sgl (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix a memory leak in an error path of qla2x00_process_els() (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Return -ENOMEM if kzalloc() fails (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Remove a declaration (Nilesh Javali) [2044833]
+- scsi: target: qla2xxx: Replace enable attr with ops.enable (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Restore initiator in dual mode (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Remove redundant initialization of pointer req (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Update version to 10.02.07.100-k (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix use after free in eh_abort path (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Move heartbeat handling from DPC thread to workqueue (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Call process_response_queue() in Tx path (Nilesh Javali) [2044833]
+- scsi: qla2xxx: edif: Use link event to wake up app (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Fix crash in NVMe abort path (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Check for firmware capability before creating QPair (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Display 16G only as supported speeds for 3830c card (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Indicate correct supported speeds for Mezz card (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Add support for mailbox passthru (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Open-code qla2xxx_eh_device_reset() (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Open-code qla2xxx_eh_target_reset() (Nilesh Javali) [2044833]
+- scsi: qla2xxx: Do not call fc_block_scsi_eh() during bus reset (Nilesh Javali) [2044833]
+- sctp: count singleton chunks in assoc user stats (Jamie Bainbridge) [2073913]
+- hrtimer: Unbreak hrtimer_force_reprogram() (Fernando Pacheco) [2071776]
+- hrtimer: Use raw_cpu_ptr() in clock_was_set() (Fernando Pacheco) [2071776]
+- hrtimer: Avoid more SMP function calls in clock_was_set() (Fernando Pacheco) [2071776]
+- hrtimer: Avoid unnecessary SMP function calls in clock_was_set() (Fernando Pacheco) [2071776]
+- hrtimer: Add bases argument to clock_was_set() (Fernando Pacheco) [2071776]
+- time/timekeeping: Avoid invoking clock_was_set() twice (Fernando Pacheco) [2071776]
+- timekeeping: Distangle resume and clock-was-set events (Fernando Pacheco) [2071776]
+- timerfd: Provide timerfd_resume() (Fernando Pacheco) [2071776]
+- hrtimer: Force clock_was_set() handling for the HIGHRES=n, NOHZ=y case (Fernando Pacheco) [2071776]
+- hrtimer: Ensure timerfd notification for HIGHRES=n (Fernando Pacheco) [2071776]
+- hrtimer: Consolidate reprogramming code (Fernando Pacheco) [2071776]
+- hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() (Fernando Pacheco) [2071776]
+- hrtimer: Update softirq_expires_next correctly after __hrtimer_get_next_event() (Fernando Pacheco) [2071776]
+- hrtimer: Annotate lockless access to timer->state (Fernando Pacheco) [2071776]
+- drm/i915/display: Remove check for low voltage sku for max dp source rate (Jocelyn Falempe) [2063931]
+- s390/kexec: handle R_390_PLT32DBL rela in arch_kexec_apply_relocations_add() (Philipp Rudo) [2039278]
+- s390/kexec_file: fix error handling when applying relocations (Philipp Rudo) [2039278]
+- s390/kexec_file: print some more error messages (Philipp Rudo) [2039278]
+- ixgbe: respect metadata on XSK Rx to skb (Ken Cox) [2037952]
+- ixgbe: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb (Ken Cox) [2037952]
+- ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly (Ken Cox) [2037952]
+- ixgbe: Remove useless DMA-32 fallback configuration (Ken Cox) [2037952]
+- ixgbe: switch to napi_build_skb() (Ken Cox) [2037952]
+- ixgbe: set X550 MDIO speed before talking to PHY (Ken Cox) [2037952]
+- ixgbe: Document how to enable NBASE-T support (Ken Cox) [2037952]
+- xsk: Wipe out dead zero_copy_allocator declarations (Ken Cox) [2037952]
+- ixgbe: let the xdpdrv work with more than 64 cpus (Ken Cox) [2037952]
+- scsi: fcoe: Fix I/O path allocation (Ken Cox) [2037952]
+- ixgbe: extend PTP gettime function to read system clock (Ken Cox) [2037952]
+- ixgbe: Replace GFP_ATOMIC with GFP_KERNEL (Ken Cox) [2037952]
+- net: mpls: Fix notifications when deleting a device (Guillaume Nault) [2081757]
+
+* Tue May 10 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-390.el8]
+- sched/cputime, proc/stat: Fix incorrect guest nice cpustat value (Waiman Long) [2017382]
+- procfs: Use all-in-one vtime aware kcpustat accessor (Waiman Long) [2017382]
+- procfs: Use vtime aware kcpustat accessor to fetch CPUTIME_SYSTEM (Waiman Long) [2017382]
+- proc: read kernel cpu stat pointer once (Waiman Long) [2017382]
+- proc: use "unsigned int" in /proc/stat hook (Waiman Long) [2017382]
+- sched/cputime: Support other fields on kcpustat_field() (Waiman Long) [2017382]
+- sched/cputime: Add vtime guest task state (Waiman Long) [2017382]
+- sched/cputime: Add vtime idle task state (Waiman Long) [2017382]
+- sched/cputime: Spare a seqcount lock/unlock cycle on context switch (Waiman Long) [2017382]
+- sched/vtime: Move task_struct_rh->vtime_cpu back to vtime structure (Waiman Long) [2017382]
+- usb: xhci-plat: fix crash when suspend if remote wake enable (Mark Langsdorf) [2065730]
+- PM: domains: Improve runtime PM performance state handling (Mark Langsdorf) [2065730]
+- firmware_loader: fix use-after-free in firmware_fallback_sysfs (Mark Langsdorf) [2065730]
+- firmware_loader: use -ETIMEDOUT instead of -EAGAIN in fw_load_sysfs_fallback (Mark Langsdorf) [2065730]
+- driver core: Prevent warning when removing a device link from unregistered consumer (Mark Langsdorf) [2065730]
+- PM: domains: Shrink locking area of the gpd_list_lock (Mark Langsdorf) [2065730]
+- PM: sleep: Use ktime_us_delta() in initcall_debug_report() (Mark Langsdorf) [2065730]
+- driver core: Export device_driver_attach() (Mark Langsdorf) [2065730]
+- driver core: Don't return EPROBE_DEFER to userspace during sysfs bind (Mark Langsdorf) [2065730]
+- driver core: Flow the return code from ->probe() through to sysfs bind (Mark Langsdorf) [2065730]
+- driver core: Better distinguish probe errors in really_probe (Mark Langsdorf) [2065730]
+- driver core: Pull required checks into driver_probe_device() (Mark Langsdorf) [2065730]
+- driver core: add a helper to setup both the of_node and fwnode of a device (Mark Langsdorf) [2065730]
+- devres: Enable trace events (Mark Langsdorf) [2065730]
+- devres: No need to call remove_nodes() when there none present (Mark Langsdorf) [2065730]
+- devres: Use list_for_each_safe_from() in remove_nodes() (Mark Langsdorf) [2065730]
+- devres: Make locking straight forward in release_nodes() (Mark Langsdorf) [2065730]
+- regmap: mdio: Reject invalid addresses (Mark Langsdorf) [2065730]
+- regmap: mdio: Fix regmap_bus pointer constness (Mark Langsdorf) [2065730]
+- PM: runtime: Allow unassigned ->runtime_suspend|resume callbacks (Mark Langsdorf) [2065730]
+- PM: runtime: Improve path in rpm_idle() when no callback (Mark Langsdorf) [2065730]
+- PM: domains: Drop/restore performance state votes for devices at runtime PM (Mark Langsdorf) [2065730]
+- PM: domains: Return early if perf state is already set for the device (Mark Langsdorf) [2065730]
+- PM: domains: Split code in dev_pm_genpd_set_performance_state() (Mark Langsdorf) [2065730]
+- PM: domains: fix some kernel-doc issues (Mark Langsdorf) [2065730]
+- regmap: mdio: Add clause-45 support (Mark Langsdorf) [2065730]
+- regmap: mdio: Clean up invalid clause-22 addresses (Mark Langsdorf) [2065730]
+- regmap-irq: Introduce inverted status registers support (Mark Langsdorf) [2065730]
+- ACPI: property: Constify stubs for CONFIG_ACPI=n case (Mark Langsdorf) [2065730]
+- device property: Unify access to of_node (Mark Langsdorf) [2065730]
+- drivers/base: Constify static attribute_group structs (Mark Langsdorf) [2065730]
+- devcoredump: remove contact information (Mark Langsdorf) [2065730]
+- component: Rename 'dev' to 'parent' (Mark Langsdorf) [2065730]
+- component: Drop 'dev' argument to component_match_realloc() (Mark Langsdorf) [2065730]
+- device property: Don't check for NULL twice in the loops (Mark Langsdorf) [2065730]
+- regmap: add support for 7/17 register formating (Mark Langsdorf) [2065730]
+- PM: wakeirq: Set IRQF_NO_AUTOEN when requesting the IRQ (Mark Langsdorf) [2065730]
+- drivers/base/node.c: make CACHE_ATTR define static DEVICE_ATTR_RO (Mark Langsdorf) [2065730]
+- regmap: mdio: Don't modify output if error happened (Mark Langsdorf) [2065730]
+- regmap: Add MDIO bus support (Mark Langsdorf) [2065730]
+- regmap-i2c: Set regmap max raw r/w from quirks (Mark Langsdorf) [2065730]
+- driver core: attribute_container: fix W=1 warnings (Mark Langsdorf) [2065730]
+- driver core: replace open-coded device_lock_assert() (Mark Langsdorf) [2065730]
+- device property: Retrieve fwnode from of_node via accessor (Mark Langsdorf) [2065730]
+- cpufreq: Kconfig: fix documentation links (Mark Langsdorf) [2065730]
+- PM: wakeup: remove redundant assignment to variable retval (Mark Langsdorf) [2065730]
+- PM / wakeup: use dev_set_name() directly (Mark Langsdorf) [2065730]
+- PM: clk: remove kernel-doc warning (Mark Langsdorf) [2065730]
+- PM: wakeup: fix kernel-doc warnings and fix typos (Mark Langsdorf) [2065730]
+- PM: runtime: remove kernel-doc warnings (Mark Langsdorf) [2065730]
+- software node: Introduce SOFTWARE_NODE_REFERENCE() helper macro (Mark Langsdorf) [2065730]
+- software node: Imply kobj_to_swnode() to be no-op (Mark Langsdorf) [2065730]
+- software node: Deduplicate code in fwnode_create_software_node() (Mark Langsdorf) [2065730]
+- software node: Introduce software_node_alloc()/software_node_free() (Mark Langsdorf) [2065730]
+- software node: Free resources explicitly when swnode_register() fails (Mark Langsdorf) [2065730]
+- driver core: add helper for deferred probe reason setting (Mark Langsdorf) [2065730]
+- driver core: Improve fw_devlink & deferred_probe_timeout interaction (Mark Langsdorf) [2065730]
+- driver core: Replace printf() specifier and drop unneeded casting (Mark Langsdorf) [2065730]
+- driver core: Cast to (void *) with __force for __percpu pointer (Mark Langsdorf) [2065730]
+- devcoredump: fix kernel-doc warning (Mark Langsdorf) [2065730]
+- platform-msi: fix kernel-doc warnings (Mark Langsdorf) [2065730]
+- driver core: attribute_container: remove kernel-doc warnings (Mark Langsdorf) [2065730]
+- driver core: remove kernel-doc warnings (Mark Langsdorf) [2065730]
+- base: dd: fix error return code of driver_sysfs_add() (Mark Langsdorf) [2065730]
+- driver core: Use unbound workqueue for deferred probes (Mark Langsdorf) [2065730]
+- devcoredump: avoid -Wempty-body warnings (Mark Langsdorf) [2065730]
+- device property: Add test cases for fwnode_property_count_*() APIs (Mark Langsdorf) [2065730]
+- device property: Sync descriptions of swnode array and group APIs (Mark Langsdorf) [2065730]
+- driver core: Update device link status properly for device_bind_driver() (Mark Langsdorf) [2065730]
+- driver core: Avoid pointless deferred probe attempts (Mark Langsdorf) [2065730]
+- drivers/base/cpu: remove redundant assignment of variable retval (Mark Langsdorf) [2065730]
+- driver core: dd: remove deferred_devices variable (Mark Langsdorf) [2065730]
+- driver core: component: remove dentry pointer in "struct master" (Mark Langsdorf) [2065730]
+- driver core: auxiliary bus: Remove unneeded module bits (Mark Langsdorf) [2065730]
+- PM: domains: Don't runtime resume devices at genpd_prepare() (Mark Langsdorf) [2065730]
+- redhat/configs: Add CONFIG_X86_AMD_PSTATE (Prarit Bhargava)
+- ACPI: CPPC: Drop redundant local variable from cpc_read() (Prarit Bhargava) [1961726]
+- ACPI: CPPC: Fix up I/O port access in cpc_read() (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Fix Kconfig dependencies for AMD P-State (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Fix struct amd_cpudata kernel-doc comment (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Add AMD P-State performance attributes (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Add AMD P-State frequencies attributes (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Add boost mode support for AMD P-State (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Add trace for AMD P-State module (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Introduce the support for the processors with shared memory solution (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Add fast switch function for AMD P-State (Prarit Bhargava) [1961726]
+- cpufreq: amd-pstate: Introduce a new AMD P-State driver to support future processors (Prarit Bhargava) [1961726]
+- ACPI: CPPC: Add CPPC enable register function (Prarit Bhargava) [1961726]
+- ACPI: CPPC: Check present CPUs for determining _CPC is valid (Prarit Bhargava) [1961726]
+- ACPI: CPPC: Implement support for SystemIO registers (Prarit Bhargava) [1961726]
+- x86/msr: Add AMD CPPC MSR definitions (Prarit Bhargava) [1961726]
+- x86/cpufeatures: Add AMD Collaborative Processor Performance Control feature flag (Prarit Bhargava) [1961726]
+- cpufreq: remove useless INIT_LIST_HEAD() (Prarit Bhargava) [1961726]
+- cpufreq: CPPC: Pass structure instance by reference (Prarit Bhargava) [1961726]
+- cpufreq: CPPC: Fix potential memleak in cppc_cpufreq_cpu_init (Prarit Bhargava) [1961726]
+- cpufreq: CPPC: Migrate to ->exit() callback instead of ->stop_cpu() (Prarit Bhargava) [1961726]
+- cpufreq: cppc: simplify default delay_us setting (Prarit Bhargava) [1961726]
+- cppc_cpufreq: replace per-cpu data array with a list (Prarit Bhargava) [1961726]
+- cppc_cpufreq: expose information on frequency domains (Prarit Bhargava) [1961726]
+- cppc_cpufreq: clarify support for coordination types (Prarit Bhargava) [1961726]
+- cppc_cpufreq: use policy->cpu as driver of frequency setting (Prarit Bhargava) [1961726]
+- cppc_cpufreq: simplify use of performance capabilities (Prarit Bhargava) [1961726]
+- cppc_cpufreq: clean up cpu, cpu_num and cpunum variable use (Prarit Bhargava) [1961726]
+- cppc_cpufreq: fix misspelling, code style and readability issues (Prarit Bhargava) [1961726]
+- cpufreq: CPPC: Reuse caps variable in few routines (Prarit Bhargava) [1961726]
+- cpufreq: cppc: Reorder code and remove apply_hisi_workaround variable (Prarit Bhargava) [1961726]
+- cpufreq: CPPC: add SW BOOST support (Prarit Bhargava) [1961726]
+- net/sched: act_ct: fix ref leak when switching zones (Marcelo Ricardo Leitner) [2014027]
+- net/sched: act_ct: Fix flow table lookup after ct clear or switching zones (Marcelo Ricardo Leitner) [2014027]
+- genirq: Provide new interfaces for affinity hints (Ivan Vecera) [2070044]
+- af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register (Xin Long) [2075181]
+- ipv6: make ip6_rt_gc_expire an atomic_t (Hangbin Liu) [2077365]
+- ipv6: fix panic when forwarding a pkt with no in6 dev (Hangbin Liu) [2077365]
+- net: ipv6: ensure we call ipv6_mc_down() at most once (Hangbin Liu) [2077365]
+- ipv6/addrconf: use a boolean to choose between UNREGISTER/DOWN (Hangbin Liu) [2077365]
+- ipv6/addrconf: call addrconf_ifdown with consistent values (Hangbin Liu) [2077365]
+- ipmr,ip6mr: acquire RTNL before calling ip[6]mr_free_table() on failure path (Hangbin Liu) [2077365]
+- ipv6: annotate accesses to fn->fn_sernum (Hangbin Liu) [2077365]
+- ipv6: correct comments about fib6_node sernum (Hangbin Liu) [2077365]
+- ipv6: fix typos in __ip6_finish_output() (Hangbin Liu) [2077365]
+- oom_kill.c: futex: delay the OOM reaper to allow time for proper futex cleanup (Nico Pache) [1778048]
+- KVM: PPC: Fix TCE handling for VFIO (Daniel Henrique Barboza) [2062687]
+- udf: Restore i_lenAlloc when inode expansion fails (Carlos Maiolino) [2054653] {CVE-2022-0617}
+- udf: Fix NULL ptr deref when converting from inline format (Carlos Maiolino) [2054653] {CVE-2022-0617}
+- net/tls: fix slab-out-of-bounds bug in decrypt_internal (Sabrina Dubroca) [2080344]
+- tls: fix replacing proto_ops (Sabrina Dubroca) [2080344]
+- net/tls: use semicolons rather than commas to separate statements (Sabrina Dubroca) [2080344]
+- redhat: further rpminspect tuning (Jarod Wilson)
+
+* Fri May 06 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-389.el8]
+- tun: annotate access to queue->trans_start (Ivan Vecera) [2069673]
+- net: annotate accesses to queue->trans_start (Ivan Vecera) [2069673]
+- ntb_hw_amd: Add NTB PCI ID for new gen CPU (Sudheesh Mavila) [2037287]
+- ipmi: initialize len variable (Tony Camuso) [2069839]
+- ipmi: kcs: aspeed: Remove old bindings support (Tony Camuso) [2069839]
+- ipmi:ipmb: Add the ability to have a separate slave and master device (Tony Camuso) [2069839]
+- ipmi:ipmi_ipmb: Unregister the SMI on remove (Tony Camuso) [2069839]
+- ipmi: kcs: aspeed: Add AST2600 compatible string (Tony Camuso) [2069839]
+- ipmi: ssif: replace strlcpy with strscpy (Tony Camuso) [2069839]
+- ipmi/watchdog: Constify ident (Tony Camuso) [2069839]
+- ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module (Tony Camuso) [2069839]
+- ipmi: fix initialization when workqueue allocation fails (Tony Camuso) [2069839]
+- ipmi: bail out if init_srcu_struct fails (Tony Camuso) [2069839]
+- ipmi: ssif: initialize ssif_info->client early (Tony Camuso) [2069839]
+- ipmi: msghandler: Make symbol 'remove_work_wq' static (Tony Camuso) [2069839]
+- ipmi: Move remove_work to dedicated workqueue (Tony Camuso) [2069839]
+- ipmi: kcs_bmc: Fix a memory leak in the error handling path of 'kcs_bmc_serio_add_device()' (Tony Camuso) [2069839]
+- char: ipmi: replace snprintf in show functions with sysfs_emit (Tony Camuso) [2069839]
+- ipmi: ipmb: fix dependencies to eliminate build error (Tony Camuso) [2069839]
+- ipmi:ipmb: Add OF support (Tony Camuso) [2069839]
+- ipmi: bt: Add ast2600 compatible string (Tony Camuso) [2069839]
+- ipmi: bt-bmc: Use registers directly (Tony Camuso) [2069839]
+- ipmi: ipmb: Fix off-by-one size check on rcvlen (Tony Camuso) [2069839]
+- ipmi:ssif: Use depends on, not select, for I2C (Tony Camuso) [2069839]
+- ipmi:ipmb: Add initial support for IPMI over IPMB (Tony Camuso) [2069839]
+- ipmi: Export ipmb_checksum() (Tony Camuso) [2069839]
+- ipmi: Check error code before processing BMC response (Tony Camuso) [2069839]
+- ipmi:devintf: Return a proper error when recv buffer too small (Tony Camuso) [2069839]
+- ipmi: Disable some operations during a panic (Tony Camuso) [2069839]
+- ipmi:watchdog: Set panic count to proper value on a panic (Tony Camuso) [2069839]
+- char: ipmi: use DEVICE_ATTR helper macro (Tony Camuso) [2069839]
+- ipmi: rate limit ipmi smi_event failure message (Tony Camuso) [2069839]
+- cifs: fix NULL ptr dereference in smb2_ioctl_query_info() (Ronnie Sahlberg) [2074316]
+- cifs: prevent bad output lengths in smb2_ioctl_query_info() (Ronnie Sahlberg) [2074316]
+- net: tcp better handling of reordering then loss cases (Marcelo Ricardo Leitner) [2074566]
+- tcp: tcp_mark_head_lost is only valid for sack-tcp (Marcelo Ricardo Leitner) [2074566]
+- udp6: allow SO_MARK ctrl msg to affect routing (Xin Long) [2066598]
+- ip: Fix SO_MARK in RST, ACK and ICMP packets (Xin Long) [2066598]
+- ip: support SO_MARK cmsg (Xin Long) [2066598]
+- ip: unconditionally set cork gso_size (Xin Long) [2066598]
+- ip: remove tx_flags from ipcm_cookie and use same logic for v4 and v6 (Xin Long) [2066598]
+- ipv6: fold sockcm_cookie into ipcm6_cookie (Xin Long) [2066598]
+- sock: sockc cookie initializer (Xin Long) [2066598]
+- ipv6: ipcm6_cookie initializer (Xin Long) [2066598]
+- ipv4: ipcm_cookie initializers (Xin Long) [2066598]
+- s390/kexec: fix memory leak of ipl report buffer (Lichen Liu) [2001758]
+- s390/kexec: fix return code handling (Lichen Liu) [2001758]
+- block: don't try to throttle split bio if iops limit isn't set (Ming Lei) [2027241]
+- block: throttle split bio in case of iops limit (Ming Lei) [2027241]
+- block: don't check bio in blk_throtl_dispatch_work_fn (Ming Lei) [2027241]
+- x86/apic/vector: Fix ordering in vector assignment (Frank Ramsay) [2076607]
+- mt76: mt7921e: fix possible probe failure after reboot (Íñigo Huguet) [2078877]
+- veth: Ensure eth header is in skb's linear part (Guillaume Nault) [1966887]
+- net: annotate accesses to dev->gso_max_segs (Ivan Vecera) [2080317]
+- net: annotate accesses to dev->gso_max_size (Ivan Vecera) [2080317]
+- NFS: Don't loop forever in nfs_do_recoalesce() (Scott Mayhew) [2080467]
+- tipc: fix the timer expires after interval 100ms (Xin Long) [2080369]
+- tipc: Fix end of loop tests for list_for_each_entry() (Xin Long) [2080369]
+- tipc: fix a bit overflow in tipc_crypto_key_rcv() (Xin Long) [2080369]
+- tipc: rate limit warning for received illegal binding update (Xin Long) [2080369]
+- net: tipc: remove unused static inlines (Xin Long) [2080369]
+- tipc: fix unique bearer names sanity check (Xin Long) [2080369]
+- net/tipc: fix missing destroy_workqueue() on error in tipc_crypto_start() (Xin Long) [2080369]
+- tipc: add extack messages for bearer/media failure (Xin Long) [2080369]
+- scsi: smartpqi: Fix unused variable pqi_pm_ops for clang (Don Brace) [2012227]
+- scsi: smartpqi: Update version to 2.1.14-035 (Don Brace) [2012227]
+- scsi: smartpqi: Fix lsscsi -t SAS addresses (Don Brace) [2012227]
+- scsi: smartpqi: Fix hibernate and suspend (Don Brace) [2012227]
+- scsi: smartpqi: Fix BUILD_BUG_ON() statements (Don Brace) [2012227]
+- scsi: smartpqi: Fix NUMA node not updated during init (Don Brace) [2012227]
+- scsi: smartpqi: Expose SAS address for SATA drives (Don Brace) [2012227]
+- scsi: smartpqi: Speed up RAID 10 sequential reads (Don Brace) [2012227]
+- scsi: smartpqi: Fix kdump issue when controller is locked up (Don Brace) [2012227]
+- scsi: smartpqi: Update volume size after expansion (Don Brace) [2012227]
+- scsi: smartpqi: Avoid drive spin-down during suspend (Don Brace) [2012227]
+- scsi: smartpqi: Resolve delay issue with PQI_HZ value (Don Brace) [2012227]
+- scsi: smartpqi: Fix a typo in func pqi_aio_submit_io() (Don Brace) [2012227]
+- scsi: smartpqi: Fix a name typo and cleanup code (Don Brace) [2012227]
+- scsi: smartpqi: Quickly propagate path failures to SCSI midlayer (Don Brace) [2012227]
+- scsi: smartpqi: Eliminate drive spin down on warm boot (Don Brace) [2012227]
+- scsi: smartpqi: Enable SATA NCQ priority in sysfs (Don Brace) [2012227]
+- scsi: smartpqi: Add PCI IDs (Don Brace) [2012227]
+- scsi: smartpqi: Fix rmmod stack trace (Don Brace) [2012227]
+- ibmvnic: fix race between xmit and reset (Diego Domingos) [2051354]
+- ibmvnic: Allow queueing resets during probe (Diego Domingos) [2051354]
+- ibmvnic: clear fop when retrying probe (Diego Domingos) [2051354]
+- ibmvnic: init init_done_rc earlier (Diego Domingos) [2051354]
+- ibmvnic: register netdev after init of adapter (Diego Domingos) [2051354]
+- ibmvnic: complete init_done on transport events (Diego Domingos) [2051354]
+- ibmvnic: define flush_reset_queue helper (Diego Domingos) [2051354]
+- ibmvnic: initialize rc before completing wait (Diego Domingos) [2051354]
+- ibmvnic: free reset-work-item when flushing (Diego Domingos) [2051354]
+- ibmvnic: schedule failover only if vioctl fails (Diego Domingos) [2051354]
+- net/ibmvnic: Cleanup workaround doing an EOI after partition migration (Diego Domingos) [2051354]
+
+* Fri Apr 29 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-388.el8]
+- xfs: don't expose misaligned extszinherit hints to userspace (Brian Foster) [2072552]
+- xfs: correct the narrative around misaligned rtinherit/extszinherit dirs (Brian Foster) [2072552]
+- xfs: fix endianness issue in xfs_ag_shrink_space (Brian Foster) [2072552]
+- xfs: bunmapi has unnecessary AG lock ordering issues (Brian Foster) [2072552]
+- xfs: btree format inode forks can have zero extents (Brian Foster) [2072552]
+- xfs: validate extsz hints against rt extent size when rtinherit is set (Brian Foster) [2072552]
+- xfs: standardize extent size hint validation (Brian Foster) [2072552]
+- xfs: check free AG space when making per-AG reservations (Brian Foster) [2072552]
+- xfs: retry allocations when locality-based search fails (Brian Foster) [2072552]
+- xfs: adjust rt allocation minlen when extszhint > rtextsize (Brian Foster) [2072552]
+- iomap: remove unused private field from ioend (Brian Foster) [2072552]
+- xfs: don't allow log writes if the data device is readonly (Brian Foster) [2072552]
+- xfs: count free space btree blocks when scrubbing pre-lazysbcount fses (Brian Foster) [2072552]
+- xfs: update superblock counters correctly for !lazysbcount (Brian Foster) [2072552]
+- xfs: don't check agf_btreeblks on pre-lazysbcount filesystems (Brian Foster) [2072552]
+- xfs: rename struct xfs_legacy_ictimestamp (Brian Foster) [2072552]
+- xfs: rename xfs_ictimestamp_t (Brian Foster) [2072552]
+- xfs: remove xfs_quiesce_attr declaration (Brian Foster) [2072552]
+- xfs: remove XFS_IFEXTENTS (Brian Foster) [2072552]
+- xfs: remove XFS_IFINLINE (Brian Foster) [2072552]
+- xfs: remove XFS_IFBROOT (Brian Foster) [2072552]
+- xfs: only look at the fork format in xfs_idestroy_fork (Brian Foster) [2072552]
+- xfs: simplify xfs_attr_remove_args (Brian Foster) [2072552]
+- xfs: rename and simplify xfs_bmap_one_block (Brian Foster) [2072552]
+- xfs: move the XFS_IFEXTENTS check into xfs_iread_extents (Brian Foster) [2072552]
+- xfs: get rid of the ip parameter to xchk_setup_* (Brian Foster) [2072552]
+- xfs: move the check for post-EOF mappings into xfs_can_free_eofblocks (Brian Foster) [2072552]
+- xfs: move the xfs_can_free_eofblocks call under the IOLOCK (Brian Foster) [2072552]
+- xfs: precalculate default inode attribute offset (Brian Foster) [2072552]
+- xfs: default attr fork size does not handle device inodes (Brian Foster) [2072552]
+- xfs: inode fork allocation depends on XFS_IFEXTENT flag (Brian Foster) [2072552]
+- xfs: eager inode attr fork init needs attr feature awareness (Brian Foster) [2072552]
+- xfs: scrub: Disable check for unoptimized data fork bmbt node (Brian Foster) [2072552]
+- xfs: Use struct xfs_bmdr_block instead of struct xfs_btree_block to calculate root node size (Brian Foster) [2072552]
+- xfs: merge _xfs_dic2xflags into xfs_ip2xflags (Brian Foster) [2072552]
+- xfs: move the di_crtime field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: move the di_flags2 field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: move the di_flags field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: move the di_forkoff field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: use a union for i_cowextsize and i_flushiter (Brian Foster) [2072552]
+- xfs: use XFS_B_TO_FSB in xfs_ioctl_setattr (Brian Foster) [2072552]
+- xfs: cleanup xfs_fill_fsxattr (Brian Foster) [2072552]
+- xfs: move the di_flushiter field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: move the di_cowextsize field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: move the di_extsize field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: move the di_nblocks field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: move the di_size field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: move the di_projid field to struct xfs_inode (Brian Foster) [2072552]
+- xfs: don't clear the "dinode core" in xfs_inode_alloc (Brian Foster) [2072552]
+- xfs: remove the di_dmevmask and di_dmstate fields from struct xfs_icdinode (Brian Foster) [2072552]
+- xfs: remove the unused xfs_icdinode_has_bigtime helper (Brian Foster) [2072552]
+- xfs: handle crtime more carefully in xfs_bulkstat_one_int (Brian Foster) [2072552]
+- xfs: consistently initialize di_flags2 (Brian Foster) [2072552]
+- xfs: split xfs_imap_to_bp (Brian Foster) [2072552]
+- xfs: scrub: Remove incorrect check executed on block format directories (Brian Foster) [2072552]
+- xfs: add error injection for per-AG resv failure (Brian Foster) [2072552]
+- xfs: support shrinking unused space in the last AG (Brian Foster) [2072552]
+- xfs: introduce xfs_ag_shrink_space() (Brian Foster) [2072552]
+- xfs: hoist out xfs_resizefs_init_new_ags() (Brian Foster) [2072552]
+- xfs: update lazy sb counters immediately for resizefs (Brian Foster) [2072552]
+- xfs: __percpu_counter_compare() inode count debug too expensive (Brian Foster) [2072552]
+- xfs: reduce debug overhead of dir leaf/node checks (Brian Foster) [2072552]
+- xfs: No need for inode number error injection in __xfs_dir3_data_check (Brian Foster) [2072552]
+- xfs: type verification is expensive (Brian Foster) [2072552]
+- xfs: optimise xfs_buf_item_size/format for contiguous regions (Brian Foster) [2072552]
+- xfs: xfs_buf_item_size_segment() needs to pass segment offset (Brian Foster) [2072552]
+- xfs: reduce buffer log item shadow allocations (Brian Foster) [2072552]
+- xfs: initialise attr fork on inode create (Brian Foster) [2072552]
+- xfs: ensure xfs_errortag_random_default matches XFS_ERRTAG_MAX (Brian Foster) [2072552]
+- xfs: rename variable mp to parsing_mp (Brian Foster) [2072552]
+- xfs: rename the blockgc workqueue (Brian Foster) [2072552]
+- xfs: validate ag btree levels using the precomputed values (Brian Foster) [2072552]
+- xfs: remove return value from xchk_ag_btcur_init (Brian Foster) [2072552]
+- xfs: set the scrub AG number in xchk_ag_read_headers (Brian Foster) [2072552]
+- xfs: bail out of scrub immediately if scan incomplete (Brian Foster) [2072552]
+- xfs: drop freeze protection when running GETFSMAP (Brian Foster) [2072552]
+- selftest/powerpc: Add PAPR sysfs attributes sniff test (Steve Best) [1986183]
+- powerpc/pseries: Interface to represent PAPR firmware attributes (Steve Best) [1986183]
+- net: mana: Remove unnecessary check of cqe_type in mana_process_rx_cqe() (Mohammed Gamal) [2051719]
+- net: mana: Add handling of CQE_RX_TRUNCATED (Mohammed Gamal) [2051719]
+- RDMA/rxe: Revert changes from irqsave to bh locks (Kamal Heib) [2056499]
+- RDMA/rxe: Check the last packet by RXE_END_MASK (Kamal Heib) [2056499]
+- RDMA/rxe: Remove qp->grp_lock and qp->grp_list (Kamal Heib) [2056499]
+- RDMA/rxe: Remove rxe_drop_all_macst_groups (Kamal Heib) [2056499]
+- RDMA/rxe: Enforce IBA o10-2.2.3 (Kamal Heib) [2056499]
+- RDMA/rxe: Rename rxe_mc_grp and rxe_mc_elem (Kamal Heib) [2056499]
+- RDMA/rxe: Move rxe_mcast_attach/detach to rxe_mcast.c (Kamal Heib) [2056499]
+- RDMA/rxe: Move rxe_mcast_add/delete to rxe_mcast.c (Kamal Heib) [2056499]
+- RDMA/cma: Do not change route.addr.src_addr outside state checks (Kamal Heib) [2056499]
+- RDMA/ib_srp: Fix a deadlock (Kamal Heib) [2056499]
+- RDMA/siw: Fix broken RDMA Read Fence/Resume logic. (Kamal Heib) [2056499]
+- IB/cm: Release previously acquired reference counter in the cm_id_priv (Kamal Heib) [2056499]
+- RDMA/siw: Fix refcounting leak in siw_create_qp() (Kamal Heib) [2056499]
+- RDMA/ucma: Protect mc during concurrent multicast leaves (Kamal Heib) [2056499]
+- RDMA/cma: Use correct address when leaving multicast group (Kamal Heib) [2056499]
+- IB/hfi1: Fix tstats alloc and dealloc (Kamal Heib) [2056499 2049845]
+- IB/hfi1: Fix AIP early init panic (Kamal Heib) [2056499 2049845]
+- IB/hfi1: Fix alloc failure with larger txqueuelen (Kamal Heib) [2056499 2049845]
+- IB/hfi1: Fix panic with larger ipoib send_queue_size (Kamal Heib) [2056499 2049845]
+- all: replace find_next{,_zero}_bit with find_first{,_zero}_bit where appropriate (Kamal Heib) [2056499]
+- RDMA/irdma: Remove the redundant return (Kamal Heib) [2056499 2037972]
+- RDMA/rxe: Use the standard method to produce udp source port (Kamal Heib) [2056499]
+- RDMA/irdma: Make the source udp port vary (Kamal Heib) [2056499 2037972]
+- RDMA/core: Calculate UDP source port based on flow label or lqpn/rqpn (Kamal Heib) [2056499]
+- IB/iser: Align coding style across driver (Kamal Heib) [2056499]
+- IB/iser: Remove un-needed casting to/from void pointer (Kamal Heib) [2056499]
+- IB/iser: Don't suppress send completions (Kamal Heib) [2056499]
+- IB/iser: Rename ib_ret local variable (Kamal Heib) [2056499]
+- IB/iser: Fix RNR errors (Kamal Heib) [2056499]
+- IB/iser: Remove deprecated pi_guard module param (Kamal Heib) [2056499]
+- IB/mlx5: Expose NDR speed through MAD (Kamal Heib) [2056499]
+- RDMA/rxe: Delete deprecated module parameters interface (Kamal Heib) [2056499]
+- RDMA/mad: Delete duplicated init_query_mad functions (Kamal Heib) [2056499]
+- RDMA/rxe: Fix indentations and operators sytle (Kamal Heib) [2056499]
+- RDMA: Use default_groups in kobj_type (Kamal Heib) [2056499]
+- RDMA/rxe: Fix a typo in opcode name (Kamal Heib) [2056499]
+- RDMA/rxe: Remove the unused xmit_errors member (Kamal Heib) [2056499]
+- RDMA/rxe: Remove redundant err variable (Kamal Heib) [2056499]
+- RDMA/irdma: Use auxiliary_device driver data helpers (Kamal Heib) [2056499 2037972]
+- driver core: auxiliary bus: Add driver data helpers (Kamal Heib) [2056499]
+- RDMA/cma: Let cma_resolve_ib_dev() continue search even after empty entry (Kamal Heib) [2056499]
+- RDMA/core: Let ib_find_gid() continue search even after empty entry (Kamal Heib) [2056499]
+- RDMA/core: Modify rdma_query_gid() to return accurate error codes (Kamal Heib) [2056499]
+- RDMA/rxe: Remove the unnecessary variable (Kamal Heib) [2056499]
+- RDMA/irdma: Fix the type used to declare a bitmap (Kamal Heib) [2056499 2037972]
+- RDMA/uverbs: Remove the unnecessary assignment (Kamal Heib) [2056499]
+- RDMA/siw: Use max() instead of doing it manually (Kamal Heib) [2056499]
+- RDMA/pvrdma: Use non-atomic bitmap functions when possible (Kamal Heib) [2056499]
+- RDMA/pvrdma: Use bitmap_zalloc() when applicable (Kamal Heib) [2056499]
+- IB/hfi1: Use bitmap_zalloc() when applicable (Kamal Heib) [2056499 2049845]
+- RDMA/siw: Use helper function to set sys_image_guid (Kamal Heib) [2056499]
+- RDMA/cma: Remove open coding of overflow checking for private_data_len (Kamal Heib) [2056499]
+- RDMA/rxe: Remove some #defines from rxe_pool.h (Kamal Heib) [2056499]
+- RDMA/rxe: Remove #include "rxe_loc.h" from rxe_pool.c (Kamal Heib) [2056499]
+- RDMA/rxe: Save object pointer in pool element (Kamal Heib) [2056499]
+- RDMA/rxe: Copy setup parameters into rxe_pool (Kamal Heib) [2056499]
+- RDMA/rxe: Cleanup rxe_pool_entry (Kamal Heib) [2056499]
+- RDMA/rxe: Replace irqsave locks with bh locks (Kamal Heib) [2056499]
+- RDMA/usnic: Clean up usnic_ib_alloc_pd() (Kamal Heib) [2056499]
+- RDMA/irdma: Use helper function to set GUIDs (Kamal Heib) [2056499 2037972]
+- RDMA/rxe: Prevent double freeing rxe_map_set() (Kamal Heib) [2056498]
+- IB/hfi1: Fix leak of rcvhdrtail_dummy_kvaddr (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Fix early init panic (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Insure use of smp_processor_id() is preempt disabled (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Correct guard on eager buffer deallocation (Kamal Heib) [2056498 2049845]
+- RDMA: Fix use-after-free in rxe_queue_cleanup (Kamal Heib) [2056498]
+- RDMA/nldev: Check stat attribute before accessing it (Kamal Heib) [2056498]
+- IB/hfi1: Properly allocate rdma counter desc memory (Kamal Heib) [2056498 2049845]
+- RDMA/core: Set send and receive CQ before forwarding to the driver (Kamal Heib) [2056498]
+- RDMA/netlink: Add __maybe_unused to static inline in C file (Kamal Heib) [2056498]
+- RDMA/core: Require the driver to set the IOVA correctly during rereg_mr (Kamal Heib) [2056498]
+- RDMA/irdma: optimize rx path by removing unnecessary copy (Kamal Heib) [2056498 2037972]
+- IB/opa_vnic: Rebranding of OPA VNIC driver to Cornelis Networks (Kamal Heib) [2056498]
+- IB/hfi1: Rebranding of hfi1 driver to Cornelis Networks (Kamal Heib) [2056498 2049845]
+- RDMA/rxe: Make rxe_type_info static const (Kamal Heib) [2056498]
+- RDMA/rxe: Use 'bitmap_zalloc()' when applicable (Kamal Heib) [2056498]
+- RDMA/rxe: Save a few bytes from struct rxe_pool (Kamal Heib) [2056498]
+- RDMA/irdma: Remove the unused variable local_qp (Kamal Heib) [2056498 2037972]
+- RDMA/core: Fix missed initialization of rdma_hw_stats::lock (Kamal Heib) [2056498]
+- RDMA/irdma: Remove the unused spin lock in struct irdma_qp_uk (Kamal Heib) [2056498 2037972]
+- RDMA: Constify netdev->dev_addr accesses (Kamal Heib) [2056498]
+- RDMA/ipoib: Use dev_addr_mod() (Kamal Heib) [2056498]
+- RDMA/core: Use kvzalloc when allocating the struct ib_port (Kamal Heib) [2056498]
+- RDMA/irdma: Make irdma_uk_cq_init() return a void (Kamal Heib) [2056498 2037972]
+- RDMA/rxe: Convert kernel UD post send to use ah_num (Kamal Heib) [2056498]
+- RDMA/rxe: Lookup kernel AH from ah index in UD WQEs (Kamal Heib) [2056498]
+- RDMA/rxe: Replace ah->pd by ah->ibah.pd (Kamal Heib) [2056498]
+- RDMA/rxe: Create AH index and return to user space (Kamal Heib) [2056498]
+- RDMA/rxe: Change AH objects to indexed (Kamal Heib) [2056498]
+- RDMA/rxe: Move AV from rxe_send_wqe to rxe_send_wr (Kamal Heib) [2056498]
+- RDMA/irdma: Remove irdma_cqp_up_map_cmd() (Kamal Heib) [2056498 2037972]
+- RDMA/irdma: Remove irdma_get_hw_addr() (Kamal Heib) [2056498 2037972]
+- RDMA/irdma: Remove irdma_sc_send_lsmm_nostag() (Kamal Heib) [2056498 2037972]
+- RDMA/irdma: Remove irdma_uk_mw_bind() (Kamal Heib) [2056498 2037972]
+- RDMA: Remove redundant 'flush_workqueue()' calls (Kamal Heib) [2056498]
+- RDMA/iwpm: Remove redundant initialization of pointer err_str (Kamal Heib) [2056498]
+- RDMA/nldev: Allow optional-counter status configuration through RDMA netlink (Kamal Heib) [2056498]
+- RDMA/nldev: Split nldev_stat_set_mode_doit out of nldev_stat_set_doit (Kamal Heib) [2056498]
+- RDMA/nldev: Add support to get status of all counters (Kamal Heib) [2056498]
+- RDMA/counter: Add optional counter support (Kamal Heib) [2056498]
+- RDMA/counter: Add an is_disabled field in struct rdma_hw_stats (Kamal Heib) [2056498]
+- RDMA/core: Add a helper API rdma_free_hw_stats_struct (Kamal Heib) [2056498]
+- RDMA/bnxt_re: Fix kernel panic when trying to access bnxt_re_stat_descs (Kamal Heib) [2056499]
+- RDMA/counter: Add a descriptor in struct rdma_hw_stats (Kamal Heib) [2056498]
+- RDMA/bnxt_re: Update statistics counter name (Kamal Heib) [2056498]
+- RDMA/bnxt_re: Add extended statistics counters (Kamal Heib) [2056498]
+- RDMA/efa: CQ notifications (Kamal Heib) [2056498]
+- RDMA/rxe: Remove duplicate settings (Kamal Heib) [2056498]
+- RDMA/rxe: Set partial attributes when completion status != IBV_WC_SUCCESS (Kamal Heib) [2056498]
+- RDMA/rxe: Change the is_user member of struct rxe_cq to bool (Kamal Heib) [2056498]
+- RDMA/rxe: Remove the is_user members of struct rxe_sq/rxe_rq/rxe_srq (Kamal Heib) [2056498]
+- RDMA/irdma: Delete unused struct irdma_bth (Kamal Heib) [2056498 2037972]
+- IB/hf1: Use string_upper() instead of an open coded variant (Kamal Heib) [2056498]
+- RDMA/cma: Split apart the multiple uses of the same list heads (Kamal Heib) [2056498]
+- RDMA/rxe: Remove unused WR_READ_WRITE_OR_SEND_MASK (Kamal Heib) [2056498]
+- RDMA/rxe: Add MASK suffix for RXE_READ_OR_ATOMIC and RXE_WRITE_OR_SEND (Kamal Heib) [2056498]
+- RDMA/rxe: Add new RXE_READ_OR_WRITE_MASK (Kamal Heib) [2056498]
+- RDMA/hfi1: Use struct_size() and flex_array_size() helpers (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Add ring consumer and producers traces (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Remove atomic completion count (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Tune netdev xmit cachelines (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Get rid of tx priv backpointer (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Get rid of hot path divide (Kamal Heib) [2056498 2049845]
+- IB/hfi1: Remove cache and embed txreq in ring (Kamal Heib) [2056498 2049845]
+- RDMA/rxe: Only allow invalidate for appropriate MRs (Kamal Heib) [2056498]
+- RDMA/rxe: Create duplicate mapping tables for FMRs (Kamal Heib) [2056498]
+- RDMA/rxe: Separate HW and SW l/rkeys (Kamal Heib) [2056498]
+- RDMA/rxe: Cleanup MR status and type enums (Kamal Heib) [2056498]
+- RDMA/rxe: Add memory barriers to kernel queues (Kamal Heib) [2056498]
+- RDMA/rxe: remove the unnecessary variable (Kamal Heib) [2056498]
+- RDMA/rxe: remove the redundant variable (Kamal Heib) [2056498]
+- RDMA/rxe: Fix wrong port_cap_flags (Kamal Heib) [2056498]
+- RDMA/rdmavt: Fix error code in rvt_create_qp() (Kamal Heib) [2056497 2049845]
+- IB/hfi1: Fix abba locking issue with sc_disable() (Kamal Heib) [2056497 2049845]
+- RDMA/hfi1: Fix kernel pointer leak (Kamal Heib) [2056497 2049845]
+- RDMA/usnic: Lock VF with mutex instead of spinlock (Kamal Heib) [2056497]
+- RDMA/cma: Do not change route.addr.src_addr.ss_family (Kamal Heib) [2056497]
+- IB/hfi1: make hist static (Kamal Heib) [2056497 2049845]
+- RDMA/hfi1: Convert to SPDX identifier (Kamal Heib) [2056497 2049845]
+- IB/rdmavt: Convert to SPDX identifier (Kamal Heib) [2056497 2049845]
+- RDMA/core/sa_query: Retry SA queries (Kamal Heib) [2056497]
+- IB/core: Remove deprecated current_seq comments (Kamal Heib) [2056497]
+- RDMA/efa: Rename vector field in efa_irq struct to irqn (Kamal Heib) [2056497]
+- RDMA/efa: Remove unused cpu field from irq struct (Kamal Heib) [2056497]
+- RDMA/core/sa_query: Remove unused function (Kamal Heib) [2056497]
+- RDMA/hfi1: Stop using seq_get_buf in _driver_stats_seq_show (Kamal Heib) [2056497 2049845]
+- RDMA/core: Create clean QP creations interface for uverbs (Kamal Heib) [2056497]
+- RDMA/core: Properly increment and decrement QP usecnts (Kamal Heib) [2056497]
+- RDMA/core: Configure selinux QP during creation (Kamal Heib) [2056497]
+- RDMA/core: Reorganize create QP low-level functions (Kamal Heib) [2056497]
+- RDMA/core: Remove protection from wrong in-kernel API usage (Kamal Heib) [2056497]
+- RDMA/core: Delete duplicated and unreachable code (Kamal Heib) [2056497]
+- rdma/qedr: Fix crash due to redundant release of device's qp memory (Kamal Heib) [2056497]
+- RDMA: Globally allocate and release QP memory (Kamal Heib) [2056497]
+- RDMA/mlx5: Rework custom driver QP type creation (Kamal Heib) [2056497]
+- RDMA/usnic: Fix memleak in find_free_vf_and_create_qp_grp (Kamal Heib) [2056497]
+- RDMA/rdmavt: Decouple QP and SGE lists allocations (Kamal Heib) [2056497 2049845]
+- RDMA/efa: Remove double QP type assignment (Kamal Heib) [2056497]
+- RDMA/hfi1: Fix typo in comments (Kamal Heib) [2056497 2049845]
+- RDMA/iwpm: Rely on the rdma_nl_[un]register() to ensure that requests are valid (Kamal Heib) [2056497]
+- RDMA/iwpm: Remove not-needed reference counting (Kamal Heib) [2056497]
+- RDMA/hfi1: Convert from atomic_t to refcount_t on hfi1_devdata->user_refcount (Kamal Heib) [2056497 2049845]
+- IB/hfi1: Adjust pkey entry in index 0 (Kamal Heib) [2056497 2049845]
+- IB/hfi1: Indicate DMA wait when txq is queued for wakeup (Kamal Heib) [2056497 2049845]
+- RDMA/rxe: Fix types in rxe_icrc.c (Kamal Heib) [2056497]
+- RDMA/rxe: Add kernel-doc comments to rxe_icrc.c (Kamal Heib) [2056497]
+- RDMA/rxe: Move crc32 init code to rxe_icrc.c (Kamal Heib) [2056497]
+- RDMA/rxe: Fixup rxe_icrc_hdr (Kamal Heib) [2056497]
+- RDMA/rxe: Move rxe_crc32 to a subroutine (Kamal Heib) [2056497]
+- RDMA/rxe: Move ICRC generation to a subroutine (Kamal Heib) [2056497]
+- RDMA/rxe: Fixup rxe_send and rxe_loopback (Kamal Heib) [2056497]
+- RDMA/rxe: Move rxe_xmit_packet to a subroutine (Kamal Heib) [2056497]
+- RDMA/rxe: Move ICRC checking to a subroutine (Kamal Heib) [2056497]
+- IB/core: Read subnet_prefix in ib_query_port via cache. (Kamal Heib) [2056497]
+- IB/core: Shifting initialization of device->cache_lock (Kamal Heib) [2056497]
+- IB/core: Updating cache for subnet_prefix in config_non_roce_gid_cache() (Kamal Heib) [2056497]
+- RDMA/efa: Split hardware stats to device and port stats (Kamal Heib) [2056497]
+- RDMA/rxe: Remove the repeated 'mr->umem = umem' (Kamal Heib) [2056497]
+- RDMA/siw: Convert siw_tx_hdt() to kmap_local_page() (Kamal Heib) [2056497]
+- RDMA/siw: Remove kmap() (Kamal Heib) [2056497]
+- treewide: Add missing semicolons to __assign_str uses (Kamal Heib) [2056497]
+- RDMA/hfi1: Remove use of kmap() (Kamal Heib) [2056497 2049845]
+- RDMA: Delete not-used static inline functions (Kamal Heib) [2056497]
+- mm/page_owner.c: record tgid (Waiman Long) [2069294]
+- mm/page_owner: record task command name (Waiman Long) [2069294]
+- mm/page_owner: print memcg information (Waiman Long) [2069294]
+- mm/page_owner: use scnprintf() to avoid excessive buffer overrun check (Waiman Long) [2069294]
+- lib/vsprintf: avoid redundant work with 0 size (Waiman Long) [2069294]
+- lib, stackdepot: add helper to print stack entries into buffer (Waiman Long) [2069294]
+- lib, stackdepot: add helper to print stack entries (Waiman Long) [2069294]
+- lib, stackdepot: check stackdepot handle before accessing slabs (Waiman Long) [2069294]
+- stacktrace: move filter_irq_stacks() to kernel/stacktrace.c (Waiman Long) [2069294]
+- lib/stackdepot: introduce __stack_depot_save() (Waiman Long) [2069294]
+- mm: introduce PAGEFLAGS_MASK to replace ((1UL << NR_PAGEFLAGS) - 1) (Waiman Long) [2069294]
+- mm/page_owner: constify dump_page_owner (Waiman Long) [2069294]
+- mm: page_owner: detect page_owner recursion via task_struct (Waiman Long) [2069294]
+- mm: page_owner: use kstrtobool() to parse bool option (Waiman Long) [2069294]
+- mm: page_owner: fetch backtrace only for tracked pages (Waiman Long) [2069294]
+- mm, page_owner: remove unused parameter in __set_page_owner_handle (Waiman Long) [2069294]
+- mm/page_owner: record the timestamp of all pages during free (Waiman Long) [2069294]
+- mm/page_owner: use helper function zone_end_pfn() to get end_pfn (Waiman Long) [2069294]
+- mm/page_owner: record timestamp and pid (Waiman Long) [2069294]
+- x86/platform/uv: Log gap hole end size (Frank Ramsay) [2074098]
+- x86/platform/uv: Update TSC sync state for UV5 (Frank Ramsay) [2074098]
+- x86/platform/uv: Update NMI Handler for UV5 (Frank Ramsay) [2074098]
+- x86/platform/uv: Remove unused variable in UV5 NMI handler (Frank Ramsay) [2074098]
+- timekeeping: Boot should be boottime for coarse ns accessor (Ivan Vecera) [2076879]
+
+* Thu Apr 28 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-387.el8]
+- net_tstamp: define new flag HWTSTAMP_FLAG_BONDED_PHC_INDEX (Petr Oros) [2070041]
+- net_tstamp: add new flag HWTSTAMP_FLAG_BONDED_PHC_INDEX (Petr Oros) [2070041]
+- net: fix NULL pointer reference in cipso_v4_doi_free (Guillaume Nault) [2074597]
+- partitions/efi: Fix partition name parsing in GUID partition entry (Ming Lei) [2075085]
+- psi: Fix uaf issue when psi trigger is destroyed while being polled (Waiman Long) [2046396]
+- cgroup/cpuset: Make child cpusets restrict parents on v1 hierarchy (Waiman Long) [2046396]
+- cgroup/cpuset: Don't let child cpusets restrict parent in default hierarchy (Waiman Long) [2046396]
+- mm/page_alloc: detect allocation forbidden by cpuset and bail out early (Waiman Long) [2046396]
+- cgroup: Fix rootcg cpu.stat guest double counting (Waiman Long) [2046396]
+- cgroup: no need for cgroup_mutex for /proc/cgroups (Waiman Long) [2046396]
+- cgroup: remove cgroup_mutex from cgroupstats_build (Waiman Long) [2046396]
+- cgroup: Fix memory leak caused by missing cgroup_bpf_offline (Waiman Long) [2046396]
+- cgroup: cgroup-v1: do not exclude cgrp_dfl_root (Waiman Long) [2046396]
+- bpf, test, cgroup: Use sk_{alloc,free} for test cases (Waiman Long) [2046396]
+- bpf, cgroup: Assign cgroup in cgroup_sk_alloc when called from interrupt (Waiman Long) [2046396]
+- bpf, cgroups: Fix cgroup v2 fallback on v1/v2 mixed mode (Waiman Long) [2046396]
+- cgroup/cpuset: Change references of cpuset_mutex to cpuset_rwsem (Waiman Long) [2046396]
+- cgroup: Replace deprecated CPU-hotplug functions. (Waiman Long) [2046396]
+- cgroup/cpuset: Fix a partition bug with hotplug (Waiman Long) [2046396]
+- cgroup/cpuset: Miscellaneous code cleanup (Waiman Long) [2046396]
+- cgroup/cpuset: fix typos in comments (Waiman Long) [2046396]
+- enable DAMON configs (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/reclaim: document statistics parameters (Chris von Recklinghausen) [2004233]
+- mm/damon: hide kernel pointer from tracepoint event (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr: hide kernel pointer from damon_va_three_regions() failure log (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr: use pr_debug() for damon_va_three_regions() failure logging (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: remove an unnecessary variable (Chris von Recklinghausen) [2004233]
+- mm/damon: move the implementation of damon_insert_region to damon.h (Chris von Recklinghausen) [2004233]
+- mm/damon: add access checking for hugetlb pages (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/usage: update for schemes statistics (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: support all DAMOS stats (Chris von Recklinghausen) [2004233]
+- mm/damon/reclaim: provide reclamation statistics (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: account how many times quota limit has exceeded (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: account scheme actions that successfully applied (Chris von Recklinghausen) [2004233]
+- mm/damon: remove a mistakenly added comment for a future feature (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/usage: update for kdamond_pid and (mk|rm)_contexts (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/usage: mention tracepoint at the beginning (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/usage: remove redundant information (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/usage: update for scheme quotas and watermarks (Chris von Recklinghausen) [2004233]
+- mm/damon: convert macro functions to static inline functions (Chris von Recklinghausen) [2004233]
+- mm/damon: modify damon_rand() macro to static inline function (Chris von Recklinghausen) [2004233]
+- mm/damon: move damon_rand() definition into damon.h (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: add the validity judgment of thresholds (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr: remove swap_ranges() and replace it with swap() (Chris von Recklinghausen) [2004233]
+- mm/damon: remove some unneeded function definitions in damon.h (Chris von Recklinghausen) [2004233]
+- mm/damon/core: use abs() instead of diff_of() (Chris von Recklinghausen) [2004233]
+- mm/damon: unified access_check function naming rules (Chris von Recklinghausen) [2004233]
+- mm/damon: add 'age' of region tracepoint support (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: fix 'struct pid' leaks in 'dbgfs_target_ids_write()' (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: protect targets destructions with kdamond_lock (Chris von Recklinghausen) [2004233]
+- selftests/damon: split test cases (Chris von Recklinghausen) [2004233]
+- selftests/damon: test debugfs file reads/writes with huge count (Chris von Recklinghausen) [2004233]
+- selftests/damon: test wrong DAMOS condition ranges input (Chris von Recklinghausen) [2004233]
+- selftests/damon: test DAMON enabling with empty target_ids case (Chris von Recklinghausen) [2004233]
+- selftests/damon: skip test if DAMON is running (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr-test: remove unnecessary variables (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr-test: split a test function having >1024 bytes frame size (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr: remove an unnecessary warning message (Chris von Recklinghausen) [2004233]
+- mm/damon/core: remove unnecessary error messages (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: remove an unnecessary error message (Chris von Recklinghausen) [2004233]
+- mm/damon/core: use better timer mechanisms selection threshold (Chris von Recklinghausen) [2004233]
+- mm/damon/core: fix fake load reports due to uninterruptible sleeps (Chris von Recklinghausen) [2004233]
+- timers: implement usleep_idle_range() (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: fix missed use of damon_dbgfs_lock (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: use '__GFP_NOWARN' for user-specified size buffer allocation (Chris von Recklinghausen) [2004233]
+- mm/damon: remove return value from before_terminate callback (Chris von Recklinghausen) [2004233]
+- mm/damon: fix a few spelling mistakes in comments and a pr_debug message (Chris von Recklinghausen) [2004233]
+- mm/damon: simplify stop mechanism (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/start: simplify the content (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/start: fix a wrong link (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon/start: fix wrong example commands (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: add adaptive_targets list check before enable monitor_on (Chris von Recklinghausen) [2004233]
+- mm/damon: remove unnecessary variable initialization (Chris von Recklinghausen) [2004233]
+- Documentation/admin-guide/mm/damon: add a document for DAMON_RECLAIM (Chris von Recklinghausen) [2004233]
+- mm/damon: introduce DAMON-based Reclamation (DAMON_RECLAIM) (Chris von Recklinghausen) [2004233]
+- selftests/damon: support watermarks (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: support watermarks (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: activate schemes based on a watermarks mechanism (Chris von Recklinghausen) [2004233]
+- tools/selftests/damon: update for regions prioritization of schemes (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: support prioritization weights (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr,paddr: support pageout prioritization (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: prioritize regions within the quotas (Chris von Recklinghausen) [2004233]
+- mm/damon/selftests: support schemes quotas (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: support quotas of schemes (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: implement time quota (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: skip already charged targets and regions (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: implement size quota for schemes application speed control (Chris von Recklinghausen) [2004233]
+- mm/damon/paddr: support the pageout scheme (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: remove unnecessary variables (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr: constify static mm_walk_ops (Chris von Recklinghausen) [2004233]
+- Docs/DAMON: document physical memory monitoring support (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: support physical memory monitoring (Chris von Recklinghausen) [2004233]
+- mm/damon: implement primitives for physical address space monitoring (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr: separate commonly usable functions (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs-test: add a unit test case for 'init_regions' (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon: document 'init_regions' feature (Chris von Recklinghausen) [2004233]
+- Docs/admin-guide/mm/damon: document DAMON-based Operation Schemes (Chris von Recklinghausen) [2004233]
+- docs/vm/damon: remove broken reference (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: allow users to set initial monitoring target regions (Chris von Recklinghausen) [2004233]
+- selftests/damon: add 'schemes' debugfs tests (Chris von Recklinghausen) [2004233]
+- mm/damon/schemes: implement statistics feature (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: support DAMON-based Operation Schemes (Chris von Recklinghausen) [2004233]
+- mm/damon/vaddr: support DAMON-based Operation Schemes (Chris von Recklinghausen) [2004233]
+- mm/damon/core: implement DAMON-based Operation Schemes (DAMOS) (Chris von Recklinghausen) [2004233]
+- mm/damon/core: account age of target regions (Chris von Recklinghausen) [2004233]
+- mm/damon/core: nullify pointer ctx->kdamond with a NULL (Chris von Recklinghausen) [2004233]
+- mm/damon: needn't hold kdamond_lock to print pid of kdamond (Chris von Recklinghausen) [2004233]
+- mm/damon: remove unnecessary do_exit() from kdamond (Chris von Recklinghausen) [2004233]
+- mm/damon/core: print kdamond start log in debug mode only (Chris von Recklinghausen) [2004233]
+- mm/damon: grammar s/works/work/ (Chris von Recklinghausen) [2004233]
+- mm/damon/core-test: fix wrong expectations for 'damon_split_regions_of()' (Chris von Recklinghausen) [2004233]
+- mm/damon: don't use strnlen() with known-bogus source length (Chris von Recklinghausen) [2004233]
+- mm/damon: add kunit tests (Chris von Recklinghausen) [2004233]
+- Documentation: add documents for DAMON (Chris von Recklinghausen) [2004233]
+- mm/damon: add user space selftests (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: support multiple contexts (Chris von Recklinghausen) [2004233]
+- mm/damon/dbgfs: export kdamond pid to the user space (Chris von Recklinghausen) [2004233]
+- mm/damon: implement a debugfs-based user space interface (Chris von Recklinghausen) [2004233]
+- mm/damon: add a tracepoint (Chris von Recklinghausen) [2004233]
+- mm/damon: implement primitives for the virtual memory address spaces (Chris von Recklinghausen) [2004233]
+- mm/damon: adaptively adjust regions (Chris von Recklinghausen) [2004233]
+- mm/damon/core: implement region-based sampling (Chris von Recklinghausen) [2004233]
+- mm: introduce Data Access MONitor (DAMON) (Chris von Recklinghausen) [2004233]
+- khugepaged: use helper khugepaged_test_exit() in __khugepaged_enter() (Chris von Recklinghausen) [2004233]
+- mm/madvise: pass mm to do_madvise (Chris von Recklinghausen) [2004233]
+- ceph: fix possible NULL pointer dereference for req->r_session (Xiubo Li) [2076165]
+- thermal: int340x: Fix VCoRefLow MMIO bit offset for TGL (Prarit Bhargava) [2039994]
+- MAINTAINERS: sort field names for all entries (Joel Savitz) [2064843]
+- parse-maintainers: Do not sort section content by default (Joel Savitz) [2064843]
+- parse-maintainers: Mark as executable (Joel Savitz) [2064843]
+- KVM: x86: Use ERR_PTR_USR() to return -EFAULT as a __user pointer (Paul Lai) [2074679]
+- KVM: x86: add system attribute to retrieve full set of supported xsave states (Paul Lai) [2074679]
+- KVM: x86: Add a helper to retrieve userspace address from kvm_device_attr (Paul Lai) [2074679]
+- tools: arch: x86: pull in pvclock headers (Paul Lai) [2074679]
+- KVM: x86: Expose TSC offset controls to userspace (Paul Lai) [2074679]
+- KVM: x86: Refactor tsc synchronization code (Paul Lai) [2074679]
+- selftests: kvm: move vm_xsave_req_perm call to amx_test (Paul Lai) [2074679]
+- powerpc/pseries/vas: Add VAS migration handler (Steve Best) [2028678]
+- powerpc/pseries/vas: Modify reconfig open/close functions for migration (Steve Best) [2028678]
+- powerpc/pseries/vas: Define global hv_cop_caps struct (Steve Best) [2028678]
+- powerpc/pseries/vas: Add 'update_total_credits' entry for QoS capabilities (Steve Best) [2028678]
+- powerpc/pseries/vas: sysfs interface to export capabilities (Steve Best) [2028678]
+- powerpc/pseries/vas: Reopen windows with DLPAR core add (Steve Best) [2028678]
+- powerpc/pseries/vas: Close windows with DLPAR core removal (Steve Best) [2028678]
+- powerpc/vas: Map paste address only if window is active (Steve Best) [2028678]
+- powerpc/vas: Return paste instruction failure if no active window (Steve Best) [2028678]
+- powerpc/vas: Add paste address mmap fault handler (Steve Best) [2028678]
+- powerpc/pseries/vas: Save PID in pseries_vas_window struct (Steve Best) [2028678]
+- powerpc/pseries/vas: Use common names in VAS capability structure (Steve Best) [2028678]
+- perf powerpc: Update global/local variants for p_stage_cyc (Desnes A. Nunes do Rosario) [2051358]
+- perf sort: Include global and local variants for p_stage_cyc sort key (Desnes A. Nunes do Rosario) [2051358]
+- perf sort: Fix the 'p_stage_cyc' sort key behavior (Desnes A. Nunes do Rosario) [2051358]
+- perf sort: Fix the 'ins_lat' sort key behavior (Desnes A. Nunes do Rosario) [2051358]
+- perf sort: Fix the 'weight' sort key behavior (Desnes A. Nunes do Rosario) [2051358]
+- block: loop:use kstatfs.f_bsize of backing file to set discard granularity (Ming Lei) [2069472]
+- blk-cgroup: set blkg iostat after percpu stat aggregation (Ming Lei) [2069472]
+- block: update io_ticks when io hang (Ming Lei) [2069472]
+- block: don't delete queue kobject before its children (Ming Lei) [2069472]
+- block/wbt: fix negative inflight counter when remove scsi device (Ming Lei) [2069472]
+- block: bio-integrity: Advance seed correctly for larger interval sizes (Ming Lei) [2069472]
+- block: fix async_depth sysfs interface for mq-deadline (Ming Lei) [2069472]
+- bfq: Do not let waker requests skip proper accounting (Ming Lei) [2069472]
+- block: Fix fsync always failed if once failed (Ming Lei) [2069472]
+- blktrace: fix use after free for struct blk_trace (Ming Lei) [2069472]
+- block: Check ADMIN before NICE for IOPRIO_CLASS_RT (Ming Lei) [2069472]
+- blk-cgroup: fix missing put device in error path from blkg_conf_pref() (Ming Lei) [2069472]
+- blkcg: Remove extra blkcg_bio_issue_init (Ming Lei) [2069472]
+- nbd: Fix use-after-free in pid_show (Ming Lei) [2069472]
+- block/mq-deadline: Improve request accounting further (Ming Lei) [2069472]
+- block, bfq: fix UAF problem in bfqg_stats_init() (Ming Lei) [2069472]
+- blk-cgroup: synchronize blkg creation against policy deactivation (Ming Lei) [2069472]
+- block, bfq: reset last_bfqq_created on group change (Ming Lei) [2069472]
+- block: bfq: fix bfq_set_next_ioprio_data() (Ming Lei) [2069472]
+- sched/topology: Remove redundant variable and fix incorrect type in build_sched_domains (Phil Auld) [2065200]
+- sched/fair: Adjust the allowed NUMA imbalance when SD_NUMA spans multiple LLCs (Phil Auld) [2065200]
+- sched/fair: Improve consistency of allowed NUMA balance calculations (Phil Auld) [2065200]
+- Revert: sched: Disable allowing small imbalance to preserve RHEL performance (Phil Auld) [2065200]
+- NFSv4.1: handle NFS4ERR_NOSPC by CREATE_SESSION (Steve Dickson) [2023844]
+- SUNRPC: use different lock keys for INET6 and LOCAL (Guillaume Nault) [2061651]
+- arm64: Restore forced disabling of KPTI on ThunderX (Mark Salter) [1999157]
+- arm64: mte: initialize RGSR_EL1.SEED in __cpu_setup (Mark Salter) [1999157]
+- arm64: Remove exporting cpu_logical_map symbol (Mark Salter) [1999157]
+- arm64: tlb: fix the TTL value of tlb_get_level (Mark Salter) [1999157]
+- arm64: Validate tagged addresses in access_ok() called from kernel threads (Mark Salter) [1999157]
+- arm64: ptrace: Fix seccomp of traced syscall -1 (NO_SYSCALL) (Mark Salter) [1999157]
+- arm64: ptrace: Use NO_SYSCALL instead of -1 in syscall_trace_enter() (Mark Salter) [1999157]
+- arm64: mm: Fix TLBI vs ASID rollover (Mark Salter) [1999157]
+- arm64: errata: Fix exec handling in erratum 1418040 workaround (Mark Salter) [1999157]
+- arm64: Generate cpucaps.h (Mark Salter) [1999157]
+- arm64/sve: Skip flushing Z registers with 128 bit vectors (Mark Salter) [1999157]
+- arm64/sve: Rework SVE access trap to convert state in registers (Mark Salter) [1999157]
+- arm64/sve: Use the sve_flush macros in sve_load_from_fpsimd_state() (Mark Salter) [1999157]
+- arm64/sve: Split _sve_flush macro into separate Z and predicate flushes (Mark Salter) [1999157]
+- arm64: fix inline asm in load_unaligned_zeropad() (Mark Salter) [1999157]
+- arm64: Extend workaround for erratum 1024718 to all versions of Cortex-A55 (Mark Salter) [1999157]
+- arm64/fpsimd: add <asm/insn.h> to <asm/kprobes.h> to fix fpsimd build (Mark Salter) [1999157]
+- arm64: cpu_errata: Apply Erratum 845719 to KRYO2XX Silver (Mark Salter) [1999157]
+- arm64: kpti: Add KRYO2XX gold/silver CPU cores to kpti safelist (Mark Salter) [1999157]
+- arm64: Add MIDR value for KRYO2XX gold/silver CPU cores (Mark Salter) [1999157]
+- arm64: errata: Fix handling of 1418040 with late CPU onlining (Mark Salter) [1999157]
+- arm64: cpufeature: upgrade hyp caps to final (Mark Salter) [1999157]
+- arm64: cpufeature: reorder cpus_have_{const, final}_cap() (Mark Salter) [1999157]
+- arm64: Add workaround for Arm Cortex-A77 erratum 1508412 (Mark Salter) [1999157]
+- arm64: Add part number for Arm Cortex-A77 (Mark Salter) [1999157]
+- arm64: reject prctl(PR_PAC_RESET_KEYS) on compat tasks (Mark Salter) [1999157]
+- arm64: Treat SSBS as a non-strict system feature (Mark Salter) [1999157]
+- arm64: Group start_thread() functions together (Mark Salter) [1999157]
+- arm64: Remove Spectre-related CONFIG_* options (Mark Salter) [1999157]
+- arm64: Run ARCH_WORKAROUND_2 enabling code on all CPUs (Mark Salter) [1999157]
+- arm64: Run ARCH_WORKAROUND_1 enabling code on all CPUs (Mark Salter) [1999157]
+- arm64: mte: CPU feature detection and initial sysreg configuration (Mark Salter) [1999157]
+- arm64: cpufeature: Export symbol read_sanitised_ftr_reg() (Mark Salter) [1999157]
+- arm64/fpsimd: Fix missing-prototypes in fpsimd.c (Mark Salter) [1999157]
+- arm64: traps: Add str of description to panic() in die() (Mark Salter) [1999157]
+- arm64/sve: Implement a helper to load SVE registers from FPSIMD state (Mark Salter) [1999157]
+- arm64/sve: Implement a helper to flush SVE registers (Mark Salter) [1999157]
+- arm64/fpsimdmacros: Allow the macro "for" to be used in more cases (Mark Salter) [1999157]
+- arm64/fpsimdmacros: Introduce a macro to update ZCR_EL1.LEN (Mark Salter) [1999157]
+- arm64/signal: Update the comment in preserve_sve_context (Mark Salter) [1999157]
+- arm64/fpsimd: Update documentation of do_sve_acc (Mark Salter) [1999157]
+- arm64: cpufeature: Modify address authentication cpufeature to exact (Mark Salter) [1999157]
+- arm64: ptrauth: Introduce Armv8.3 pointer authentication enhancements (Mark Salter) [1999157]
+- arm64: traps: Allow force_signal_inject to pass esr error code (Mark Salter) [1999157]
+- arm64/cpuinfo: Define HWCAP name arrays per their actual bit definitions (Mark Salter) [1999157]
+- arm64: Reserve HWCAP2_MTE as (1 << 18) (Mark Salter) [1999157]
+- arm64: Allow CPUs unffected by ARM erratum 1418040 to come in late (Mark Salter) [1999157]
+- arm64: Allow booting of late CPUs affected by erratum 1418040 (Mark Salter) [1999157]
+- arm64: Drop unnecessary include from asm/smp.h (Mark Salter) [1999157]
+- arm64: Move handling of erratum 1418040 into C code (Mark Salter) [1999157]
+- arm64: Fix __cpu_logical_map undefined issue (Mark Salter) [1999157]
+- arm64: tlb: don't set the ttl value in flush_tlb_page_nosync (Mark Salter) [1999157]
+- arm64: Shift the __tlbi_level() indentation left (Mark Salter) [1999157]
+- arm64: tlb: Set the TTL field in flush_*_tlb_range (Mark Salter) [1999157]
+- arm64: tlb: Set the TTL field in flush_tlb_range (Mark Salter) [1999157]
+- arm64: Add tlbi_user_level TLB invalidation helper (Mark Salter) [1999157]
+- arm64: Add level-hinted TLB invalidation helper (Mark Salter) [1999157]
+- arm64: Document SW reserved PTE/PMD bits in Stage-2 descriptors (Mark Salter) [1999157]
+- arm64/cpufeature: Validate feature bits spacing in arm64_ftr_regs[] (Mark Salter) [1999157]
+- arm64/cpufeature: Replace all open bits shift encodings with macros (Mark Salter) [1999157]
+- arm64/cpufeature: Add remaining feature bits in ID_AA64MMFR2 register (Mark Salter) [1999157]
+- arm64/cpufeature: Add remaining feature bits in ID_AA64MMFR1 register (Mark Salter) [1999157]
+- arm64/cpufeature: Add remaining feature bits in ID_AA64MMFR0 register (Mark Salter) [1999157]
+- arm64: csum: Fix handling of bad packets (Mark Salter) [1999157]
+- arm64: Add missing sentinel to erratum_1463225 (Mark Salter) [1999157]
+- arm64: Documentation: Fix broken table in generated HTML (Mark Salter) [1999157]
+- arm64: kgdb: Fix single-step exception handling oops (Mark Salter) [1999157]
+- arm64: entry: Tidy up block comments and label numbers (Mark Salter) [1999157]
+- arm64: Rework ARM_ERRATUM_1414080 handling (Mark Salter) [1999157]
+- arm64: entry: Fix the typo in the comment of el1_dbg() (Mark Salter) [1999157]
+- arm64: Add KRYO4XX silver CPU cores to erratum list 1530923 and 1024718 (Mark Salter) [1999157]
+- arm64: Add KRYO4XX gold CPU cores to erratum list 1463225 and 1418040 (Mark Salter) [1999157]
+- arm64: Add MIDR value for KRYO4XX gold CPU cores (Mark Salter) [1999157]
+- arm64: Add KRYO{3,4}XX silver CPU cores to SSB safelist (Mark Salter) [1999157]
+- arm64: kpti: Add KRYO{3, 4}XX silver CPU cores to kpti safelist (Mark Salter) [1999157]
+- arm64: sve: Fix build failure when ARM64_SVE=y and SYSCTL=n (Mark Salter) [1999157]
+- arm64: mm: reset address tag set by kasan sw tagging (Mark Salter) [1999157]
+- arm64: traps: Dump registers prior to panic() in bad_mode() (Mark Salter) [1999157]
+- arm64/sve: Eliminate data races on sve_default_vl (Mark Salter) [1999157]
+- arm64: csum: Disable KASAN for do_csum() (Mark Salter) [1999157]
+- arm64/cpufeature: Add get_arm64_ftr_reg_nowarn() (Mark Salter) [1999157]
+- arm64/cpuinfo: Add ID_MMFR4_EL1 into the cpuinfo_arm64 context (Mark Salter) [1999157]
+- arm64/cpufeature: Add remaining feature bits in ID_AA64PFR0 register (Mark Salter) [1999157]
+- arm64/cpufeature: Add remaining feature bits in ID_MMFR4 register (Mark Salter) [1999157]
+- arm64/cpufeature: Add remaining feature bits in ID_PFR0 register (Mark Salter) [1999157]
+- arm64/cpufeature: Introduce ID_MMFR5 CPU register (Mark Salter) [1999157]
+- arm64/cpufeature: Introduce ID_DFR1 CPU register (Mark Salter) [1999157]
+- arm64/cpufeature: Introduce ID_PFR2 CPU register (Mark Salter) [1999157]
+- arm64/cpufeature: Make doublelock a signed feature in ID_AA64DFR0 (Mark Salter) [1999157]
+- arm64/cpufeature: Drop TraceFilt feature exposure from ID_DFR0 register (Mark Salter) [1999157]
+- arm64/cpufeature: Add explicit ftr_id_isar0[] for ID_ISAR0 register (Mark Salter) [1999157]
+- arm64: cpufeature: Group indexed system register definitions by name (Mark Salter) [1999157]
+- arm64: cpufeature: Extend comment to describe absence of field info (Mark Salter) [1999157]
+- arm64: drop duplicate definitions of ID_AA64MMFR0_TGRAN constants (Mark Salter) [1999157]
+- arm64: cpufeature: Add an overview comment for the cpufeature framework (Mark Salter) [1999157]
+- arm64: cpufeature: Relax checks for AArch32 support at EL[0-2] (Mark Salter) [1999157]
+- arm64: cpufeature: Relax AArch32 system checks if EL1 is 64-bit only (Mark Salter) [1999157]
+- arm64: cpufeature: Factor out checking of AArch32 features (Mark Salter) [1999157]
+- arm64: cpufeature: Remove redundant call to id_aa64pfr0_32bit_el0() (Mark Salter) [1999157]
+- arm64: cpufeature: Spell out register fields for ID_ISAR4 and ID_PFR1 (Mark Salter) [1999157]
+- arm64: cpufeature: Relax check for IESB support (Mark Salter) [1999157]
+- arm64: mm: Add asid_gen_match() helper (Mark Salter) [1999157]
+- arm64: Call debug_traps_init() from trap_init() to help early kgdb (Mark Salter) [1999157]
+- arm64: cacheflush: Fix KGDB trap detection (Mark Salter) [1999157]
+- arm64/cpuinfo: Move device_initcall() near cpuinfo_regs_init() (Mark Salter) [1999157]
+- arm64: kexec_file: print appropriate variable (Mark Salter) [1999157]
+- arm: mm: use __pfn_to_section() to get mem_section (Mark Salter) [1999157]
+- arm64: Reorder the macro arguments in the copy routines (Mark Salter) [1999157]
+- KVM: arm64: Drop PTE_S2_MEMATTR_MASK (Mark Salter) [1999157]
+- arm64/kernel: Fix range on invalidating dcache for boot page tables (Mark Salter) [1999157]
+- arm64: set TEXT_OFFSET to 0x0 in preparation for removing it entirely (Mark Salter) [1999157]
+- arm64/mm: Use phys_to_page() to access pgtable memory (Mark Salter) [1999157]
+- arm64: smp: Make cpus_stuck_in_kernel static (Mark Salter) [1999157]
+- arm64: entry: remove unneeded semicolon in el1_sync_handler() (Mark Salter) [1999157]
+- arm64: cpufeature: Add "or" to mitigations for multiple errata (Mark Salter) [1999157]
+- arm64: Sort vendor-specific errata (Mark Salter) [1999157]
+- arm64: simplify ptrauth initialization (Mark Salter) [1999157]
+- arm64: remove ptrauth_keys_install_kernel sync arg (Mark Salter) [1999157]
+- arm64: insn: Provide a better name for aarch64_insn_is_nop() (Mark Salter) [1999157]
+- arm64: kernel: Convert to modern annotations for assembly functions (Mark Salter) [1999157]
+- arm64: entry: Refactor and modernise annotation for ret_to_user (Mark Salter) [1999157]
+- arm64: BTI: Reset BTYPE when skipping emulated instructions (Mark Salter) [1999157]
+- arm64: traps: Shuffle code to eliminate forward declarations (Mark Salter) [1999157]
+- arm64: unify native/compat instruction skipping (Mark Salter) [1999157]
+- arm64: BTI: Decode BYTPE bits when printing PSTATE (Mark Salter) [1999157]
+- arm64: Basic Branch Target Identification support (Mark Salter) [1999157]
+- arm64/kernel: Fix return value when cpu_online() fails in __cpu_up() (Mark Salter) [1999157]
+- arm64: Add get_user() type annotation on the !access_ok() path (Mark Salter) [1999157]
+- arm64: Fix PTRACE_SYSEMU semantics (Mark Salter) [1999157]
+- arm64: fix the flush_icache_range arguments in machine_kexec (Mark Salter) [1999157]
+- Documentation: arm64: fix amu.rst doc warnings (Mark Salter) [1999157]
+- arm64: sync kernel APIAKey when installing (Mark Salter) [1999157]
+- arm64: Delete the space separator in __emit_inst (Mark Salter) [1999157]
+- arm64: remove CONFIG_DEBUG_ALIGN_RODATA feature (Mark Salter) [1999157]
+- arm64: head: Convert install_el2_stub to SYM_INNER_LABEL (Mark Salter) [1999157]
+- arm64: Introduce get_cpu_ops() helper function (Mark Salter) [1999157]
+- arm64: Rename cpu_read_ops() to init_cpu_ops() (Mark Salter) [1999157]
+- arm64: Declare ACPI parking protocol CPU operation if needed (Mark Salter) [1999157]
+- arm64: move kimage_vaddr to .rodata (Mark Salter) [1999157]
+- arm64: sdei: Annotate SDEI entry points using new style annotations (Mark Salter) [1999157]
+- arm64: kernel: Convert to modern annotations for assembly data (Mark Salter) [1999157]
+- arm64: head: Annotate stext and preserve_boot_args as code (Mark Salter) [1999157]
+- arm64: head.S: Convert to modern annotations for assembly functions (Mark Salter) [1999157]
+- arm64: entry: Additional annotation conversions for entry.S (Mark Salter) [1999157]
+- arm64: entry: Annotate ret_from_fork as code (Mark Salter) [1999157]
+- arm64: entry: Annotate vector table and handlers as code (Mark Salter) [1999157]
+- kconfig: Add support for 'as-option' (Mark Salter) [1999157]
+- arm64: suspend: restore the kernel ptrauth keys (Mark Salter) [1999157]
+- arm64: __show_regs: strip PAC from lr in printk (Mark Salter) [1999157]
+- arm64: unwind: strip PAC from kernel addresses (Mark Salter) [1999157]
+- arm64/crash_core: Export KERNELPACMASK in vmcoreinfo (Mark Salter) [1999157]
+- arm64: mask PAC bits of __builtin_return_address (Mark Salter) [1999157]
+- compiler.h: Allow arch-specific asm/compiler.h (Mark Salter) [1999157]
+- arm64: initialize ptrauth keys for kernel booting task (Mark Salter) [1999157]
+- arm64: initialize and switch ptrauth kernel keys (Mark Salter) [1999157]
+- arm64: enable ptrauth earlier (Mark Salter) [1999157]
+- arm64: cpufeature: handle conflicts based on capability (Mark Salter) [1999157]
+- arm64: cpufeature: Move cpu capability helpers inside C file (Mark Salter) [1999157]
+- arm64: ptrauth: Add bootup/runtime flags for __cpu_setup (Mark Salter) [1999157]
+- arm64: install user ptrauth keys at kernel exit time (Mark Salter) [1999157]
+- arm64: rename ptrauth key structures to be user-specific (Mark Salter) [1999157]
+- arm64: cpufeature: add pointer auth meta-capabilities (Mark Salter) [1999157]
+- arm64: cpufeature: Fix meta-capability cpufeature check (Mark Salter) [1999157]
+- arm64: define __alloc_zeroed_user_highpage (Mark Salter) [1999157]
+- arm64/kernel: Simplify __cpu_up() by bailing out early (Mark Salter) [1999157]
+- arm64: smp: Mark expected switch fall-through (Mark Salter) [1999157]
+- arm64: remove redundant blank for '=' operator (Mark Salter) [1999157]
+- arm64: kexec_file: Fixed code style. (Mark Salter) [1999157]
+- arm64: add blank after 'if' (Mark Salter) [1999157]
+- arm64: fix spelling mistake "ca not" -> "cannot" (Mark Salter) [1999157]
+- arm64: entry: unmask IRQ in el0_sp() (Mark Salter) [1999157]
+- arm64: efi: add efi-entry.o to targets instead of extra-$(CONFIG_EFI) (Mark Salter) [1999157]
+- arm64: csum: Optimise IPv6 header checksum (Mark Salter) [1999157]
+- arch/arm64: fix typo in a comment (Mark Salter) [1999157]
+- arm64: remove gratuitious/stray .ltorg stanzas (Mark Salter) [1999157]
+- arm64: Update comment for ASID() macro (Mark Salter) [1999157]
+- arm64: mm: convert cpu_do_switch_mm() to C (Mark Salter) [1999157]
+- Documentation: arm64: document support for the AMU extension (Mark Salter) [1999157]
+- arm64: trap to EL1 accesses to AMU counters from EL0 (Mark Salter) [1999157]
+- arm64: add support for the AMU extension v1 (Mark Salter) [1999157]
+- arm64: smp: fix crash_smp_send_stop() behaviour (Mark Salter) [1999157]
+- arm64: smp: fix smp_send_stop() behaviour (Mark Salter) [1999157]
+- arm64: context: Fix ASID limit in boot messages (Mark Salter) [1999157]
+- docs: arm64: fix trivial spelling enought to enough in memory.rst (Mark Salter) [1999157]
+- arm64: time: Replace <linux/clk-provider.h> by <linux/of_clk.h> (Mark Salter) [1999157]
+- arm64: ssbs: Fix context-switch when SSBS is present on all CPUs (Mark Salter) [1999157]
+- arm64: use shared sysctl constants (Mark Salter) [1999157]
+- arm64: Drop do_el0_ia_bp_hardening() & do_sp_pc_abort() declarations (Mark Salter) [1999157]
+- arm64: entry: Avoid empty alternatives entries (Mark Salter) [1999157]
+- arm64: Kconfig: select HAVE_FUTEX_CMPXCHG (Mark Salter) [1999157]
+- arm64: Use macros instead of hard-coded constants for MAIR_EL1 (Mark Salter) [1999157]
+- arm64: Add KRYO{3,4}XX CPU cores to spectre-v2 safe list (Mark Salter) [1999157]
+- arm64: context: Free up kernel ASIDs if KPTI is not in use (Mark Salter) [1999157]
+- arm64: Remove __exception_text_start and __exception_text_end from asm/section.h (Mark Salter) [1999157]
+- arm64: armv8_deprecated: update the comments of armv8_deprecated_init() (Mark Salter) [1999157]
+- arm64: kpti: Add Broadcom Brahma-B53 core to the KPTI whitelist (Mark Salter) [1999157]
+- arm64: csum: Fix pathological zero-length calls (Mark Salter) [1999157]
+- arm64: Implement optimised checksum routine (Mark Salter) [1999157]
+- arm64: entry: cleanup sp_el0 manipulation (Mark Salter) [1999157]
+- arm64: entry: cleanup el0 svc handler naming (Mark Salter) [1999157]
+- arm64: entry: mark all entry code as notrace (Mark Salter) [1999157]
+- arm64: assembler: remove smp_dmb macro (Mark Salter) [1999157]
+- arm64: assembler: remove inherit_daif macro (Mark Salter) [1999157]
+- arm64: signal: nofpsimd: Handle fp/simd context for signal frames (Mark Salter) [1999157]
+- arm64: ptrace: nofpsimd: Fail FP/SIMD regset operations (Mark Salter) [1999157]
+- arm64: cpufeature: Set the FP/SIMD compat HWCAP bits properly (Mark Salter) [1999157]
+- arm64: cpufeature: Fix the type of no FP/SIMD capability (Mark Salter) [1999157]
+- arm64: fpsimd: Make sure SVE setup is complete before SIMD is used (Mark Salter) [1999157]
+- arm64: kernel: Correct annotation of end of el0_sync (Mark Salter) [1999157]
+- arm64: asm: Remove ENDPIPROC() (Mark Salter) [1999157]
+- arm64: mm: Use modern annotations for assembly functions (Mark Salter) [1999157]
+- arm64: lib: Use modern annotations for assembly functions (Mark Salter) [1999157]
+- arm64: asm: Add new-style position independent function annotations (Mark Salter) [1999157]
+- arm64: kernel: avoid x18 in __cpu_soft_restart (Mark Salter) [1999157]
+- arm64/lib: copy_page: avoid x18 register in assembler code (Mark Salter) [1999157]
+- arm64: mm: avoid x18 in idmap_kpti_install_ng_mappings (Mark Salter) [1999157]
+- arm64: cpu_errata: Add Hisilicon TSV110 to spectre-v2 safe list (Mark Salter) [1999157]
+- arm64: entry: refine comment of stack overflow check (Mark Salter) [1999157]
+- arm64: kpti: Add NVIDIA's Carmel core to the KPTI whitelist (Mark Salter) [1999157]
+- arm64: mm: simplify the page end calculation in __create_pgd_mapping() (Mark Salter) [1999157]
+- arm64: print additional fault message when executing non-exec memory (Mark Salter) [1999157]
+- arm64: pgtable: Correct typo in comment (Mark Salter) [1999157]
+- arm64: cpufeature: Fix typos in comment (Mark Salter) [1999157]
+- arm64: entry-common: don't touch daif before bp-hardening (Mark Salter) [1999157]
+- arm64: Remove asmlinkage from updated functions (Mark Salter) [1999157]
+- arm64: entry: convert el0_sync to C (Mark Salter) [1999157]
+- arm64: entry: convert el1_sync to C (Mark Salter) [1999157]
+- arm64: Add prototypes for functions called by entry.S (Mark Salter) [1999157]
+- arm64: remove __exception annotations (Mark Salter) [1999157]
+- arm64: kprobes: Move exception_text check in blacklist (Mark Salter) [1999157]
+- arm64: kprobes: Remove unneeded RODATA check (Mark Salter) [1999157]
+- arm64: kprobes: Move extable address check into arch_prepare_kprobe() (Mark Salter) [1999157]
+- arm64: cpufeature: introduce helper cpu_has_hw_af() (Mark Salter) [1999157]
+- arm64: Document ICC_CTLR_EL3.PMHE setting requirements (Mark Salter) [1999157]
+- firmware: arm_sdei: use common SMCCC_CONDUIT_* (Mark Salter) [1999157]
+- arm64: uaccess: Remove uaccess_*_not_uao asm macros (Mark Salter) [1999157]
+- arm64: uaccess: Ensure PAN is re-enabled after unhandled uaccess fault (Mark Salter) [1999157]
+- arm64: Do not mask out PTE_RDONLY in pte_same() (Mark Salter) [1999157]
+- arm64: apply ARM64_ERRATUM_843419 workaround for Brahma-B53 core (Mark Salter) [1999157]
+- arm64: Brahma-B53 is SSB and spectre v2 safe (Mark Salter) [1999157]
+- arm64: apply ARM64_ERRATUM_845719 workaround for Brahma-B53 core (Mark Salter) [1999157]
+- arm64: cpufeature: Enable Qualcomm Falkor errata 1009 for Kryo (Mark Salter) [1999157]
+- arm64: cpufeature: Enable Qualcomm Falkor/Kryo errata 1003 (Mark Salter) [1999157]
+- arm64: Ensure VM_WRITE|VM_SHARED ptes are clean by default (Mark Salter) [1999157]
+- arm64: mm: fix inverted PAR_EL1.F check (Mark Salter) [1999157]
+- arm64: hibernate: check pgd table allocation (Mark Salter) [1999157]
+- arm64: armv8_deprecated: Checking return value for memory allocation (Mark Salter) [1999157]
+- arm64: mm: fix spurious fault detection (Mark Salter) [1999157]
+- arm64: ftrace: Ensure synchronisation in PLT setup for Neoverse-N1 #1542419 (Mark Salter) [1999157]
+- arm64: mm: avoid virt_to_phys(init_mm.pgd) (Mark Salter) [1999157]
+- docs: arm64: Fix indentation and doc formatting (Mark Salter) [1999157]
+- arm64: errata: Update stale comment (Mark Salter) [1999157]
+- arm64: consider stack randomization for mmap base only when necessary (Mark Salter) [1999157]
+- arm64: make use of is_compat_task instead of hardcoding this test (Mark Salter) [1999157]
+- arm64: kpti: ensure patched kernel text is fetched from PoU (Mark Salter) [1999157]
+- arm64: Clarify when cpu_enable() is called (Mark Salter) [1999157]
+- arm64: constify sys64_hook instances (Mark Salter) [1999157]
+- arm64: constify aarch64_insn_encoding_class[] (Mark Salter) [1999157]
+- arm64: constify icache_policy_str[] (Mark Salter) [1999157]
+- arm64: prefer __section from compiler_attributes.h (Mark Salter) [1999157]
+- arm64/ptrace: Fix typoes in sve_set() comment (Mark Salter) [1999157]
+- arm64: mm: print hexadecimal EC value in mem_abort_decode() (Mark Salter) [1999157]
+- ahci: thunderx2: Fix workaround to use new inline function (Mark Salter) [1999157]
+- arm64/prefetch: fix a -Wtype-limits warning (Mark Salter) [1999157]
+- arm64: Move TIF_* documentation to individual definitions (Mark Salter) [1999157]
+- arm64: mm: free the initrd reserved memblock in a aligned manner (Mark Salter) [1999157]
+- arm64: io: Relax implicit barriers in default I/O accessors (Mark Salter) [1999157]
+- arm64: Remove unused cpucap_multi_entry_cap_cpu_enable() (Mark Salter) [1999157]
+- arm64: sysreg: Remove unused and rotting SCTLR_ELx field definitions (Mark Salter) [1999157]
+- arm64: esr: Add ESR exception class encoding for trapped ERET (Mark Salter) [1999157]
+- arm64/kexec: Use consistent convention of initializing 'kxec_buf.mem' with KEXEC_BUF_MEM_UNKNOWN (Mark Salter) [1999157]
+- arm64: remove pointless __KERNEL__ guards (Mark Salter) [1999157]
+- arm64: Remove unused assembly macro (Mark Salter) [1999157]
+- arm64: memory: Cosmetic cleanups (Mark Salter) [1999157]
+- arm64: memory: Add comments to end of non-trivial #ifdef blocks (Mark Salter) [1999157]
+- arm64: memory: Simplify virt_to_page() implementation (Mark Salter) [1999157]
+- arm64: memory: Rewrite default page_to_virt()/virt_to_page() (Mark Salter) [1999157]
+- arm64: mm: Ignore spurious translation faults taken from the kernel (Mark Salter) [1999157]
+- arm64: mm: Add ISB instruction to set_pgd() (Mark Salter) [1999157]
+- arm64: tlb: Ensure we execute an ISB following walk cache invalidation (Mark Salter) [1999157]
+- Revert "arm64: Remove unnecessary ISBs from set_{pte,pmd,pud}" (Mark Salter) [1999157]
+- arm64: pgtable: Implement p[mu]d_valid() and check in set_p[mu]d() (Mark Salter) [1999157]
+- arm64: Change the tagged_addr sysctl control semantics to only prevent the opt-in (Mark Salter) [1999157]
+- redhat/configs: Add CONFIG_ARM64_TAGGED_ADDR_ABI (Mark Salter) [1999157]
+- arm64: Introduce prctl() options to control the tagged user addresses ABI (Mark Salter) [1999157]
+- arm64: smp: Treat unknown boot failures as being 'stuck in kernel' (Mark Salter) [1999157]
+- arm64: smp: Don't enter kernel with NULL stack pointer or task struct (Mark Salter) [1999157]
+- arm64: map FDT as RW for early_init_dt_scan() (Mark Salter) [1999157]
+- arm64: ftrace: Ensure module ftrace trampoline is coherent with I-side (Mark Salter) [1999157]
+- arch: replace _BITUL() in kernel-space headers with BIT() (Mark Salter) [1999157]
+- arm64: move jump_label_init() before parse_early_param() (Mark Salter) [1999157]
+- arm64: don't use asm-generic/ptrace.h (Mark Salter) [1999157]
+- arm64: rename dump_instr as dump_kernel_instr (Mark Salter) [1999157]
+- arm64/mm: Drop [PTE|PMD]_TYPE_FAULT (Mark Salter) [1999157]
+- arm64: module: create module allocations without exec permissions (Mark Salter) [1999157]
+- acpi/arm64: ignore 5.1 FADTs that are reported as 5.0 (Mark Salter) [1999157]
+- arm64: remove redundant 'default n' from Kconfig (Mark Salter) [1999157]
+- arm64: mm: avoid redundant READ_ONCE(*ptep) (Mark Salter) [1999157]
+- arm64/mm: Document write abort detection from ESR (Mark Salter) [1999157]
+- arm64: Fix comment after #endif (Mark Salter) [1999157]
+- arm64: ptrace: add support for syscall emulation (Mark Salter) [1999157]
+- arm64: add PTRACE_SYSEMU{,SINGLESTEP} definations to uapi headers (Mark Salter) [1999157]
+- arm64/mm: Identify user instruction aborts (Mark Salter) [1999157]
+- arm64/mm: Change BUG_ON() to VM_BUG_ON() in [pmd|pud]_set_huge() (Mark Salter) [1999157]
+- arm64: kernel: use aff3 instead of aff2 in comment (Mark Salter) [1999157]
+- arm64/mm: Simplify protection flag creation for kernel huge mappings (Mark Salter) [1999157]
+- arm64/mm: Move PTE_VALID from SW defined to HW page table entry definitions (Mark Salter) [1999157]
+- arm64/sve: <uapi/asm/ptrace.h> should not depend on <uapi/linux/prctl.h> (Mark Salter) [1999157]
+- arm64: ssbd: explicitly depend on <linux/prctl.h> (Mark Salter) [1999157]
+- ARM64: trivial: s/TIF_SECOMP/TIF_SECCOMP/ comment typo fix (Mark Salter) [1999157]
+- arm64: smp: Moved cpu_logical_map[] to smp.h (Mark Salter) [1999157]
+- arm64: use the correct function type for __arm64_sys_ni_syscall (Mark Salter) [1999157]
+- arm64: use the correct function type in SYSCALL_DEFINE0 (Mark Salter) [1999157]
+- arm64: fix syscall_fn_t type (Mark Salter) [1999157]
+- signal/arm64: Use force_sig not force_sig_fault for SIGKILL (Mark Salter) [1999157]
+- arm64: Fix the arm64_personality() syscall wrapper redirection (Mark Salter) [1999157]
+- arm64: Remove useless message during oops (Mark Salter) [1999157]
+- arm64: don't trash config with compat symbol if COMPAT is disabled (Mark Salter) [1999157]
+- arm64: assembler: Update comment above cond_yield_neon() macro (Mark Salter) [1999157]
+- arm64: Fix size of __early_cpu_boot_status (Mark Salter) [1999157]
+- arm64: mm: Remove pte_unmap_nested() (Mark Salter) [1999157]
+- arm64: Fix compiler warning from pte_unmap() with -Wunused-but-set-variable (Mark Salter) [1999157]
+- arm64: compat: Reduce address limit for 64K pages (Mark Salter) [1999157]
+- arm64: mmap: Ensure file offset is treated as unsigned (Mark Salter) [1999157]
+- arm64: instrument smp_{load_acquire,store_release} (Mark Salter) [1999157]
+- arm64: mm: check virtual addr in virt_to_page() if CONFIG_DEBUG_VIRTUAL=y (Mark Salter) [1999157]
+- arm64: ptrace: Add function argument access API (Mark Salter) [1999157]
+- arm64: compat: Reduce address limit (Mark Salter) [1999157]
+- arm64: Save and restore OSDLR_EL1 across suspend/resume (Mark Salter) [1999157]
+- arm64: Clear OSDLR_EL1 on CPU boot (Mark Salter) [1999157]
+- arm64: debug: Separate debug hooks based on target exception level (Mark Salter) [1999157]
+- arm64: debug: Remove meaningless comment (Mark Salter) [1999157]
+- arm64: debug: Rename addr parameter for non-watchpoint exception hooks (Mark Salter) [1999157]
+- arm64: Use defines instead of magic numbers (Mark Salter) [1999157]
+- arm64: cpu_ops: fix a leaked reference by adding missing of_node_put (Mark Salter) [1999157]
+- arm64: mm: Make show_pte() a static function (Mark Salter) [1999157]
+- arm64: setup min_low_pfn (Mark Salter) [1999157]
+- arm64: mm: fix incorrect assignment of 'max_mapnr' (Mark Salter) [1999157]
+- arm64: perf_event: Remove wrongfully used inline (Mark Salter) [1999157]
+- arm64: backtrace: Don't bother trying to unwind the userspace stack (Mark Salter) [1999157]
+- arm64: replace memblock_alloc_low with memblock_alloc (Mark Salter) [1999157]
+- arm64: kdump: no need to mark crashkernel pages manually PG_reserved (Mark Salter) [1999157]
+- arm64: kexec: no need to ClearPageReserved() (Mark Salter) [1999157]
+- arm64: mmu: drop paging_init comments (Mark Salter) [1999157]
+- arm64: debug: Ensure debug handlers check triggering exception level (Mark Salter) [1999157]
+- arm64: io: Hook up __io_par() for inX() ordering (Mark Salter) [1999157]
+- arm64: Rename get_thread_info() (Mark Salter) [1999157]
+- arm64: Remove documentation about TIF_USEDFPU (Mark Salter) [1999157]
+- arm64: uaccess: Cleanup get/put_user() (Mark Salter) [1999157]
+- arm64: Remove asm/memblock.h (Mark Salter) [1999157]
+- arm64: default NR_CPUS to 256 (Mark Salter) [1999157]
+- arm64: perf: remove misleading comment (Mark Salter) [1999157]
+- arm64: Relax GIC version check during early boot (Mark Salter) [1999157]
+- arm64, mm, efi: Account for GICv3 LPI tables in static memblock reserve table (Mark Salter) [1999157]
+- arm64: hibernate: Clean the __hyp_text to PoC after resume (Mark Salter) [1999157]
+- arm64: hyp-stub: Forbid kprobing of the hyp-stub (Mark Salter) [1999157]
+- arm64: kprobe: Always blacklist the KVM world-switch code (Mark Salter) [1999157]
+- kasan, arm64: remove redundant ARCH_SLAB_MINALIGN define (Mark Salter) [1999157]
+- arm64: asm-prototypes: Fix fat-fingered typo in comment (Mark Salter) [1999157]
+- arm64: compat: Hook up io_pgetevents() for 32-bit tasks (Mark Salter) [1999157]
+- arm64: compat: Don't pull syscall number from regs in arm_compat_syscall (Mark Salter) [1999157]
+- arm64: compat: Avoid sending SIGILL for unallocated syscall numbers (Mark Salter) [1999157]
+- arm64: kaslr: Reserve size of ARM64_MEMSTART_ALIGN in linear region (Mark Salter) [1999157]
+- arm64: smp: Fix compilation error (Mark Salter) [1999157]
+- arm64: select ACPI PCI code only when both features are enabled (Mark Salter) [1999157]
+- arm64: kaslr: print PHYS_OFFSET in dump_kernel_offset() (Mark Salter) [1999157]
+- arm64: sysreg: Use _BITUL() when defining register bits (Mark Salter) [1999157]
+- arm64: perf: Treat EXCLUDE_EL* bit definitions as unsigned (Mark Salter) [1999157]
+- arm64: percpu: Fix LSE implementation of value-returning pcpu atomics (Mark Salter) [1999157]
+- arm64: smp: Handle errors reported by the firmware (Mark Salter) [1999157]
+- arm64: smp: Rework early feature mismatched detection (Mark Salter) [1999157]
+- arm64: percpu: Rewrite per-cpu ops to allow use of LSE atomics (Mark Salter) [1999157]
+- arm64: crypto: add NEON accelerated XOR implementation (Mark Salter) [1999157]
+- arm64/neon: add workaround for ambiguous C99 stdint.h types (Mark Salter) [1999157]
+- arm64: ftrace: always pass instrumented pc in x0 (Mark Salter) [1999157]
+- arm64: ftrace: use GLOBAL() (Mark Salter) [1999157]
+- arm64: io: Ensure value passed to __iormb() is held in a 64-bit register (Mark Salter) [1999157]
+- arm64: acpi: Prepare for longer MADTs (Mark Salter) [1999157]
+- arm64: io: Ensure calls to delay routines are ordered against prior readX() (Mark Salter) [1999157]
+- arm64: perf: Fix typos in comment (Mark Salter) [1999157]
+- arm64: function_graph: Simplify with function_graph_enter() (Mark Salter) [1999157]
+- arm64: sysreg: fix sparse warnings (Mark Salter) [1999157]
+- arm64: mm: define NET_IP_ALIGN to 0 (Mark Salter) [1999157]
+- arm64: kprobe: make page to RO mode when allocate it (Mark Salter) [1999157]
+- arm64: kdump: fix small typo (Mark Salter) [1999157]
+- arm64: mm: Use #ifdef for the __PAGETABLE_P?D_FOLDED defines (Mark Salter) [1999157]
+- arm64: Trap WFI executed in userspace (Mark Salter) [1999157]
+- arm64/mm: Use ESR_ELx_FSC macro while decoding fault exception (Mark Salter) [1999157]
+- arm64: compat: Add CNTFRQ trap handler (Mark Salter) [1999157]
+- arm64: compat: Add CNTVCT trap handler (Mark Salter) [1999157]
+- arm64: compat: Add cp15_32 and cp15_64 handler arrays (Mark Salter) [1999157]
+- arm64: compat: Add condition code checks and IT advance (Mark Salter) [1999157]
+- arm64: Add decoding macros for CP15_32 and CP15_64 traps (Mark Salter) [1999157]
+- arm64: Remove unused VGA console support (Mark Salter) [1999157]
+- arm64: Kconfig: Remove ARCH_HAS_HOLES_MEMORYMODEL (Mark Salter) [1999157]
+- arm64/cpufeatures: Emulate MRS instructions by parsing ESR_ELx.ISS (Mark Salter) [1999157]
+- arm64/cpufeatures: Factorize emulate_mrs() (Mark Salter) [1999157]
+- arm64: fix for bad_mode() handler to always result in panic (Mark Salter) [1999157]
+- arm64: force_signal_inject: WARN if called from kernel context (Mark Salter) [1999157]
+- arm64: tlb: Adjust stride and type of TLBI according to mmu_gather (Mark Salter) [1999157]
+- arm64: percpu: Initialize ret in the default case (Mark Salter) [1999157]
+- arm64: mm: always enable CONFIG_HOLES_IN_ZONE (Mark Salter) [1999157]
+- arm64: Avoid calling stop_machine() when patching jump labels (Mark Salter) [1999157]
+- arm64: Drop asmlinkage qualifier from syscall_trace_{enter,exit} (Mark Salter) [1999157]
+- arm64: zero GPRs upon entry from EL0 (Mark Salter) [1999157]
+- arm64: don't reload GPRs after apply_ssbd (Mark Salter) [1999157]
+- arm64: consistently use unsigned long for thread flags (Mark Salter) [1999157]
+- arm64: insn: Don't fallback on nosync path for general insn patching (Mark Salter) [1999157]
+- arm64: remove unused COMPAT_PSR definitions (Mark Salter) [1999157]
+- kvm/arm: use PSR_AA32 definitions (Mark Salter) [1999157]
+- arm64: use PSR_AA32 definitions (Mark Salter) [1999157]
+- arm64: compat: map SPSR_ELx<->PSR for signals (Mark Salter) [1999157]
+
+* Tue Apr 26 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-386.el8]
+- RDMA/qedr: Fix reporting max_{send/recv}_wr attrs (Kamal Heib) [2051524]
+- thermal/drivers/int340x: Fix RFIM mailbox write commands (Prarit Bhargava) [2040065]
+- thermal: int340x: Limit Kconfig to 64-bit (Prarit Bhargava) [2040065]
+- thermal: int340x: fix build on 32-bit targets (Prarit Bhargava) [2040065]
+- thermal/drivers/int340x: processor_thermal: Suppot 64 bit RFIM responses (Prarit Bhargava) [2040065]
+- PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error (Myron Stowe) [1911591]
+- PCI/MSI: Skip masking MSI-X on Xen PV (Myron Stowe) [1911591]
+- PCI/MSI: Mask all unused MSI-X entries (Myron Stowe) [1911591]
+- PCI/MSI: Enable and mask MSI-X early (Myron Stowe) [1911591]
+- genirq: Use rcu in kstat_irqs_usr() (Waiman Long) [2068445]
+- scsi: target: Allow changing dbroot if there are no registered devices (Maurizio Lombardi) [2073435]
+- powerpc/pseries: Fix use after free in remove_phb_dynamic() (Steve Best) [2073707]
+- sctp: use the correct skb for security_sctp_assoc_request (Xin Long) [2070915]
+- s390/mm: check 2KB-fragment page on release (Rafael Aquini) [2026578]
+- s390/mm: better annotate 2KB pagetable fragments handling (Rafael Aquini) [2026578]
+- s390/mm: fix 2KB pgtable release race (Rafael Aquini) [2026578]
+- s390/mm: fix phys vs virt confusion in pgtable allocation routines (Rafael Aquini) [2026578]
+- net: openvswitch: fix leak of nested actions (Eelco Chaudron) [2073538]
+- bpf: Let bpf_warn_invalid_xdp_action() report more info (Petr Oros) [2069671]
+- bpf: Do not WARN in bpf_warn_invalid_xdp_action() (Petr Oros) [2069671]
+
+* Mon Apr 25 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-385.el8]
+- scsi: qedi: Fix failed disconnect handling (Chris Leech) [2071519]
+- scsi: iscsi: Fix unbound endpoint error handling (Chris Leech) [2071519]
+- scsi: iscsi: Fix conn cleanup and stop race during iscsid restart (Chris Leech) [2071519]
+- scsi: iscsi: Fix endpoint reuse regression (Chris Leech) [2071519]
+- scsi: iscsi: Release endpoint ID when its freed (Chris Leech) [2071519]
+- scsi: iscsi: Fix offload conn cleanup when iscsid restarts (Chris Leech) [2071519]
+- Revert "scsi: iscsi: Fix offload conn cleanup when iscsid restarts" (Chris Leech) [2071519]
+- scsi: iscsi: Speed up session unblocking and removal (Chris Leech) [2071519]
+- scsi: iscsi: Fix recovery and unblocking race (Chris Leech) [2071519]
+- scsi: iscsi: Unblock session then wake up error handler (Chris Leech) [2071519]
+- bnxt_en: make hw-tc-offload default to off (Ken Cox) [2005101]
+- bnxt_en: reject indirect blk offload when hw-tc-offload is off (Ken Cox) [2005101]
+
+* Wed Apr 20 2022 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-384.el8]
+- bpf, test_offload.py: Skip base maps without names (Yauheni Kaliuta) [2025787]
+- bnx2x: truncate value to original sizing (Manish Chopra) [2040271]
+- bnx2x: use correct format characters (Manish Chopra) [2040271]
+- bnx2x: fix built-in kernel driver load failure (Manish Chopra) [2040271]
+- bnx2x: fix driver load from initrd (Manish Chopra) [2040271]
+- bnx2x: Replace one-element array with flexible-array member (Manish Chopra) [2040271]
+- bnx2x: Remove useless DMA-32 fallback configuration (Manish Chopra) [2040271]
+- bnx2x: Invalidate fastpath HSI version for VFs (Manish Chopra) [2040271]
+- bnx2x: Utilize firmware 7.13.21.0 (Manish Chopra) [2040271]
+- bnx2x: constify static inline stub for dev_addr (Manish Chopra) [2040271]
+- net: bnx2x: fix variable dereferenced before check (Manish Chopra) [2040271]
+- ethernet: bnx2x: use eth_hw_addr_set() (Manish Chopra) [2040271]
+- bnx2x: Fix enabling network interfaces without VFs (Manish Chopra) [2040271]
+- bnx2x: fix an error code in bnx2x_nic_load() (Manish Chopra) [2040271]
+- bnx2x: remove unused variable 'cur_data_offset' (Manish Chopra) [2040271]
+- bnx2x: Remove the repeated declaration (Manish Chopra) [2040271]
+- bnx2x: Fix missing error code in bnx2x_iov_init_one() (Manish Chopra) [2040271]
+- net: broadcom: bnx2x: Fix wrong function name in comments (Manish Chopra) [2040271]
+- bnx2x: Remove redundant assignment to err (Manish Chopra) [2040271]
+- bnx2x: Use fallthrough pseudo-keyword (Manish Chopra) [2040271]
+- bnx2x: use true,false for bool variables (Manish Chopra) [2040271]
+- bnx2x: Fix some kernel-doc warnings (Manish Chopra) [2040271]
+- bnx2x: convert to new udp_tunnel_nic infra (Manish Chopra) [2040271]
+- bnx2x: Remove hw_reset_t function casts (Manish Chopra) [2040271]
+- bnx2x: Remove format_fw_ver_t function casts (Manish Chopra) [2040271]
+- bnx2x: Remove config_init_t function casts (Manish Chopra) [2040271]
+- bnx2x: Remove read_status_t function casts (Manish Chopra) [2040271]
+- bnx2x: Drop redundant callback function casts (Manish Chopra) [2040271]
+- bnx2x: Use napi_alloc_frag() (Manish Chopra) [2040271]
+- HID: intel-ish-hid: fix module device-id handling (Tony Camuso) [1921300]
+- mod_devicetable: fix kdocs for ishtp_device_id (Tony Camuso) [1921300]
+- HID: intel-ish-hid: add support for MODULE_DEVICE_TABLE() (Tony Camuso) [1921300]
+- platform/x86: isthp_eclite: only load for matching devices (Tony Camuso) [1921300]
+- platform/x86: Add Intel ishtp eclite driver (Tony Camuso) [1921300]
+- platform/x86: Add config file for Intel ishtp eclite driver (Tony Camuso) [1921300]
+- modpost: add guid_t type definition (Tony Camuso) [1921300]
+- squashfs: provide backing_dev_info in order to disable read-ahead (Brian Foster) [2025351]
+- mm: fix readahead_page_batch for retry entries (Brian Foster) [2025351]
+- iomap: convert from readpages to readahead (Brian Foster) [2025351]
+- fs: convert mpage_readpages to mpage_readahead (Brian Foster) [2025351]
+- mm: use memalloc_nofs_save in readahead path (Brian Foster) [2025351]
+- mm: document why we don't set PageReadahead (Brian Foster) [2025351]
+- mm: add page_cache_readahead_unbounded (Brian Foster) [2025351]
+- mm: move end_index check out of readahead loop (Brian Foster) [2025351]
+- mm: add readahead address space operation (Brian Foster) [2025351]
+- mm: put readahead pages in cache earlier (Brian Foster) [2025351]
+- mm: remove 'page_offset' from readahead loop (Brian Foster) [2025351]
+- mm: rename readahead loop variable to 'i' (Brian Foster) [2025351]
+- mm: rename various 'offset' parameters to 'index' (Brian Foster) [2025351]
+- mm: use readahead_control to pass arguments (Brian Foster) [2025351]
+- mm: add new readahead_control API (Brian Foster) [2025351]
+- mm: move readahead nr_pages check into read_pages (Brian Foster) [2025351]
+- mm: ignore return value of ->readpages (Brian Foster) [2025351]
+- mm: return void from various readahead functions (Brian Foster) [2025351]
+- mm: move readahead prototypes from mm.h (Brian Foster) [2025351]
+- mpage: mpage_readpages() should submit IO as read-ahead (Brian Foster) [2025351]
+- mpage: add argument structure for do_mpage_readpage() (Brian Foster) [2025351]
+- redhat/configs: enable CONFIG_AMD_PTDMA for x86_64 (Sudheesh Mavila) [2027231]
+- dmaengine: ptdma: handle the cases based on DMA is complete (Sudheesh Mavila) [2027231]
+- dmaengine: ptdma: fix concurrency issue with multiple dma transfer (Sudheesh Mavila) [2027231]
+- dmaengine: ptdma: Fix the error handling path in pt_core_init() (Sudheesh Mavila) [2027231]
+- MAINTAINERS: Fix AMD PTDMA DRIVER entry (Sudheesh Mavila) [2027231]
+- dmaengine: ptdma: remove PT_OFFSET to avoid redefnition (Sudheesh Mavila) [2027231]
+- dmaengine: ptdma: Add debugfs entries for PTDMA (Sudheesh Mavila) [2027231]
+- dmaengine: ptdma: register PTDMA controller as a DMA resource (Sudheesh Mavila) [2027231]
+- dmaengine: ptdma: Initial driver for the AMD PTDMA (Sudheesh Mavila) [2027231]
+- isert: support for unsolicited NOPIN with no response (Maurizio Lombardi) [2035915]
+- iscsit: increment max_cmd_sn for isert on command release (Maurizio Lombardi) [2035915]
+- sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa (Phil Auld) [2062841]
+- sched/numa: initialize numa statistics when forking new task (Phil Auld) [2062841]
+- cgroup: Fix suspicious rcu_dereference_check() usage warning (Phil Auld) [2062841]
+- sched/cpuacct: Remove redundant RCU read lock (Phil Auld) [2062841]
+- sched/cpuacct: Optimize away RCU read lock (Phil Auld) [2062841]
+- sched/cpuacct: Fix charge percpu cpuusage (Phil Auld) [2062841]
+- sched: replace cpumask_weight with cpumask_empty where appropriate (Phil Auld) [2062841]
+- sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race (Phil Auld) [2062841]
+- psi: fix possible trigger missing in the window (Phil Auld) [2062841]
+- sched: Avoid double preemption in __cond_resched_*lock*() (Phil Auld) [2062841]
+- sched/fair: Fix all kernel-doc warnings (Phil Auld) [2062841]
+- sched/rt: Try to restart rt period timer when rt runtime exceeded (Phil Auld) [2062841]
+- sched/fair: Fix detection of per-CPU kthreads waking a task (Phil Auld) [2062841]
+- locking: Remove rt_rwlock_is_contended(). (Phil Auld) [2062841]
+- sched: Trigger warning if ->migration_disabled counter underflows. (Phil Auld) [2062841]
+- sched/cpuacct: Make user/system times in cpuacct.stat more precise (Phil Auld) [2062841]
+- sched/cpuacct: Fix user/system in shown cpuacct.usage* (Phil Auld) [2062841]
+- cpuacct: Convert BUG_ON() to WARN_ON_ONCE() (Phil Auld) [2062841]
+- cputime, cpuacct: Include guest time in user time in cpuacct.stat (Phil Auld) [2062841]
+- sched/fair: Document the slow path and fast path in select_task_rq_fair (Phil Auld) [2062841]
+- drm/i915/ehl: Remove require_force_probe protection (Michel Dänzer) [2048674]
+- net/sched: fix initialization order when updating chain 0 head (Marcelo Ricardo Leitner) [2044711]
+- smp: Process pending softirqs in flush_smp_call_function_from_idle() (Waiman Long) [2066087]
+- irq_work: Optimize irq_work_single() (Waiman Long) [2066087]
+- irq_work: Cleanup (Waiman Long) [2066087]
+- smp, irq_work: Continue smp_call_function*() and irq_work*() integration (Waiman Long) [2066087]
+- irq_work: Define irq_work_single() on !CONFIG_IRQ_WORK too (Waiman Long) [2066087]
+- sched/headers: Split out open-coded prototypes into kernel/sched/smp.h (Waiman Long) [2066087]
+- sched: Replace rq::wake_list (Waiman Long) [2066087]
+- sched: Add rq::ttwu_pending (Waiman Long) [2066087]
+- irq_work, smp: Allow irq_work on call_single_queue (Waiman Long) [2066087]
+- smp: Optimize send_call_function_single_ipi() (Waiman Long) [2066087]
+- smp: Move irq_work_run() out of flush_smp_call_function_queue() (Waiman Long) [2066087]
+- smp: Optimize flush_smp_call_function_queue() (Waiman Long) [2066087]
+- sched: Fix smp_call_function_single_async() usage for ILB (Waiman Long) [2066087]
+- sched: Make scheduler_ipi inline (Waiman Long) [2066087]
+- sched: Clean up scheduler_ipi() (Waiman Long) [2066087]
+- sched/core: Remove rq.hrtick_csd_pending (Waiman Long) [2066087]
+- sched/fair: Clean up comment in nohz_idle_balance() (Waiman Long) [2066087]
+- context_tracking: Rename context_tracking_is_enabled() => context_tracking_enabled() (Waiman Long) [2066087]
+- context_tracking: Remove context_tracking_active() (Waiman Long) [2066087]
+- redhat: configs: Disable CONFIG_MPLS for s390x/zfcpdump (Guillaume Nault) [2051659]
+- KVM: PPC: Book3S HV: Add infrastructure to support 2nd DAWR (Laurent Vivier) [2059318]
+- KVM: PPC: Book3S HV: Rename current DAWR macros and variables (Laurent Vivier) [2059318]
+- uapi/linux/stddef.h: Add include guards (Michel Dänzer) [2072125]
+- stddef: Introduce struct_group() helper macro (Michel Dänzer) [2072125]
+- component: Add common helper for compare/release functions (Michel Dänzer) [2072125]
+- PCI/VGA: Move vgaarb to drivers/pci (Michel Dänzer) [2072125]
+- vgaarb: don't pass a cookie to vga_client_register (Michel Dänzer) [2072125]
+- vgaarb: remove the unused irq_set_state argument to vga_client_register (Michel Dänzer) [2072125]
+- vgaarb: provide a vga_client_unregister wrapper (Michel Dänzer) [2072125]
+- vgaarb: cleanup vgaarb.h (Michel Dänzer) [2072125]
+- vgaarb: move the kerneldoc for vga_set_legacy_decoding to vgaarb.c (Michel Dänzer) [2072125]
+- vgaarb: remove vga_conflicts (Michel Dänzer) [2072125]
+- vgaarb: remove VGA_DEFAULT_DEVICE (Michel Dänzer) [2072125]
+- lib/string_helpers: Consolidate string helpers implementation (Michel Dänzer) [2072125]
+- include/linux/string_helpers.h: add linux/string.h for strlen() (Michel Dänzer) [2072125]
+- kernel.h: split out container_of() and typeof_member() macros (Michel Dänzer) [2072125]
+- mm/vmscan: add sync_shrinkers function v3 (Michel Dänzer) [2072125]
+- lib: devres: Add managed arch_io_reserve_memtype_wc() (Michel Dänzer) [2072125]
+- lib: devres: Add managed arch_phys_wc_add() (Michel Dänzer) [2072125]
+- kernel/locking: Use a pointer in ww_mutex_trylock(). (Michel Dänzer) [2072125]
+- locking/ww-mutex: Fix uninitialized use of ret in test_aa() (Michel Dänzer) [2072125]
+- kernel/locking: Add context to ww_mutex_trylock() (Michel Dänzer) [2072125]
+- locking/lockdep: Provide lockdep_assert{,_once}() helpers (Michel Dänzer) [2072125]
+- mm: gup: pack has_pinned in MMF_HAS_PINNED (Chris von Recklinghausen) [2073217]
+- mm: gup: allow FOLL_PIN to scale in SMP (Chris von Recklinghausen) [2073217]
+- CI: Drop baseline runs (Veronika Kabatova)
+
+* Thu Apr 14 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-383.el8]
+- powerpc/xive: Export XIVE IPI information for online-only processors. (Steve Best) [2038448]
+- netfilter: conntrack: fix reading nf_conntrack_buckets (Phil Sutter) [2053628]
+- netfilter: nf_tables: initialize registers in nft_do_chain() (Florian Westphal) [2067966] {CVE-2022-1016}
+- x86/sev-es: Use __put_user()/__get_user() for data accesses (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Handle string port IO to kernel memory properly (Vitaly Kuznetsov) [2063719]
+- x86/sev: Return an error on a returned non-zero SW_EXITINFO1[31:0] (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Use __copy_from_user_inatomic() (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Check regs->sp is trusted before adjusting #VC IST stack (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Introduce ip_within_syscall_gap() helper (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Forward page-faults which happen during emulation (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Don't return NULL from sev_es_get_ghcb() (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Invalidate the GHCB after completing VMGEXIT (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Move sev_es_put_ghcb() in prep for follow on patch (Vitaly Kuznetsov) [2063719]
+- x86/sev: Fix stack type check in vc_switch_off_ist() (Vitaly Kuznetsov) [2063719]
+- x86/sev: Allow #VC exceptions on the VC2 stack (Vitaly Kuznetsov) [2063719]
+- x86/sev-es: Enable #VC specific entry point for real (Vitaly Kuznetsov) [2063719]
+- x86/cpu: Use pinning mask for CR4 bits needing to be 0 (Vitaly Kuznetsov) [2063719]
+- x86/asm: Move native_write_cr0/4() out of line (Vitaly Kuznetsov) [2063719]
+- x86/asm: Pin sensitive CR4 bits (Vitaly Kuznetsov) [2063719]
+- x86/asm: Pin sensitive CR0 bits (Vitaly Kuznetsov) [2063719]
+- powerpc/mce: Modify the real address error logging messages (Desnes A. Nunes do Rosario) [2068761]
+- selftests/powerpc: Add test for real address error handling (Desnes A. Nunes do Rosario) [2068761]
+- powerpc/pseries: Parse control memory access error (Desnes A. Nunes do Rosario) [2068761]
+- powerpc/pseries/mce: Fix a typo in error type assignment (Desnes A. Nunes do Rosario) [2068761]
+- netfilter: nf_tables: validate registers coming from userspace. (Florian Westphal) [2065357] {CVE-2022-1015}
+- PCI: hv: Propagate coherence from VMbus device to PCI device (Vitaly Kuznetsov) [2068429]
+- Drivers: hv: vmbus: Propagate VMbus coherence to each VMbus device (Vitaly Kuznetsov) [2068429]
+- Revert "xfs: actually bump warning counts when we send warnings" (Carlos Maiolino) [2059262]
+- perf/x86/intel: Add a quirk for the calculation of the number of counters on Alder Lake (Michael Petlan) [2039996]
+- perf stat: Support --cputype option for hybrid events (Michael Petlan) [1971941]
+- perf/x86/intel/uncore: Add IMC uncore support for ADL (Michael Petlan) [2042217]
+- tipc: fix kernel panic when enabling bearer (Xin Long) [2061233]
+- media: v4l: ioctl: Fix memory leak in video_usercopy (Jarod Wilson) [1954604] {CVE-2021-30002}
+
+* Mon Apr 11 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-382.el8]
+- esp6: fix check on ipv6_skip_exthdr's return value (Sabrina Dubroca) [2054075]
+- scsi: iscsi: Fix nop handling during conn recovery (Chris Leech) [2069969]
+- scsi: iscsi: Merge suspend fields (Chris Leech) [2069969]
+- scsi: iscsi: Fix offload conn cleanup when iscsid restarts (Chris Leech) [2069969]
+- scsi: iscsi: Move iscsi_ep_disconnect (Chris Leech) [2069969]
+- CI: Remove deprecated option (Veronika Kabatova)
+
+* Fri Apr 08 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-381.el8]
+- redhat: add new KUNIT tests to mod-internal.list (Nico Pache) [2065444]
+- kasan: test: prevent cache merging in kmem_cache_double_destroy (Nico Pache) [2065444]
+- kasan: test: fix compatibility with FORTIFY_SOURCE (Nico Pache) [2065444]
+- kasan: test: add test case for double-kmem_cache_destroy() (Nico Pache) [2065444]
+- kasan: add ability to detect double-kmem_cache_destroy() (Nico Pache) [2065444]
+- kasan: test: add globals left-out-of-bounds test (Nico Pache) [2065444]
+- kasan: test: silence intentional read overflow warnings (Nico Pache) [2065444]
+- kasan: test: bypass __alloc_size checks (Nico Pache) [2065444]
+- kasan: test: add memcpy test that avoids out-of-bounds write (Nico Pache) [2065444]
+- kasan: test: clean up ksize_uaf (Nico Pache) [2065444]
+- kasan: test: disable kmalloc_memmove_invalid_size for HW_TAGS (Nico Pache) [2065444]
+- kasan: test: only do kmalloc_uaf_memset for generic mode (Nico Pache) [2065444]
+- kasan: test: avoid corrupting memory via memset (Nico Pache) [2065444]
+- kasan: test: avoid writing invalid memory (Nico Pache) [2065444]
+- kasan: test: rework kmalloc_oob_right (Nico Pache) [2065444]
+- Documentation: kunit: remove claims that kunit is a mocking framework (Nico Pache) [2065444]
+- kunit: Reset suite count after running tests (Nico Pache) [2065444]
+- kunit: drop assumption in kunit-log-test about current suite (Nico Pache) [2065444]
+- string.h: Introduce memset_startat() for wiping trailing members and padding (Nico Pache) [2065444]
+- string.h: Introduce memset_after() for wiping trailing members/padding (Nico Pache) [2065444]
+- lib: Introduce CONFIG_MEMCPY_KUNIT_TEST (Nico Pache) [2065444]
+- kunit: fix kernel-doc warnings due to mismatched arg names (Nico Pache) [2065444]
+- kunit: fix reference count leak in kfree_at_end (Nico Pache) [2065444]
+- kunit: Print test statistics on failure (Nico Pache) [2065444]
+- fat: Add KUnit tests for checksums and timestamps (Nico Pache) [2065444]
+- kunit: add unit test for filtering suites by names (Nico Pache) [2065444]
+- kunit: test: Add example tests which are always skipped (Nico Pache) [2065444]
+- kunit: Support skipped tests (Nico Pache) [2065444]
+- redhat: remove TEST_LIST_SORT config definitions (Nico Pache) [2065444]
+- lib/test: convert test_sort.c to use KUnit (Nico Pache) [2065444]
+- lib/test: convert lib/test_list_sort.c to use KUnit (Nico Pache) [2065444]
+- kunit: introduce kunit_kmalloc_array/kunit_kcalloc() helpers (Nico Pache) [2065444]
+- kunit: Add gnu_printf specifiers (Nico Pache) [2065444]
+- lib/cmdline_kunit: Remove a cast which are no-longer required (Nico Pache) [2065444]
+- kernel/sysctl-test: Remove some casts which are no-longer required (Nico Pache) [2065444]
+- device property: Remove some casts in property-entry-test (Nico Pache) [2065444]
+- Documentation: kunit: Clean up some string casts in examples (Nico Pache) [2065444]
+- kunit: Assign strings to 'const char*' in STREQ assertions (Nico Pache) [2065444]
+- kunit: Do not typecheck binary assertions (Nico Pache) [2065444]
+- Documentation: kunit: document support for QEMU in kunit_tool (Nico Pache) [2065444]
+- kunit: Add 'kunit_shutdown' option (Nico Pache) [2065444]
+- Documentation: kunit: Update kunit_tool page (Nico Pache) [2065444]
+- Documentation: kunit: add tips for running KUnit (Nico Pache) [2065444]
+- slub: remove resiliency_test() function (Nico Pache) [2065444]
+- mm/slub, kunit: add a KUnit test for SLUB debugging functionality (Nico Pache) [2065444]
+- kunit: make test->lock irq safe (Nico Pache) [2065444]
+- docs: dev-tools: kunit: avoid using ReST :doc:`foo` markup (Nico Pache) [2065444]
+- docs: dev-tools: kunit: don't use a table for docs name (Nico Pache) [2065444]
+- kunit: make KUNIT_EXPECT_STREQ() quote values, don't print literals (Nico Pache) [2065444]
+- kunit: Match parenthesis alignment to improve code readability (Nico Pache) [2065444]
+- openvswitch: always update flow key after nat (Aaron Conole) [2066885]
+- md: initialize percpu refcounters using PERCU_REF_ALLOW_REINIT (Nigel Croxon) [2032272]
+- net: fix a memleak when uncloning an skb dst and its metadata (Hangbin Liu) [2068355]
+- net: do not keep the dst cache when uncloning an skb dst and its metadata (Hangbin Liu) [2068355]
+- net: phy: at803x: move page selection fix to config_init (Petr Oros) [2021822]
+- net: phylink: rejig SFP interface selection in ksettings_set() (Petr Oros) [2021822]
+- ptp: dp83640: don't define PAGE0 (Petr Oros) [2021822]
+- net: phylink: Update SFP selected interface on advertising changes (Petr Oros) [2021822]
+- net: phy: marvell10g: fix broken PHY interrupts for anyone after us in the driver probe list (Petr Oros) [2021822]
+- net: phy: marvell: Add WAKE_PHY support to WOL event (Petr Oros) [2021822]
+- net: phy: micrel: Fix link detection on ksz87xx switch" (Petr Oros) [2021822]
+- net: phy: micrel: Fix detection of ksz87xx switch (Petr Oros) [2021822]
+- net: phy: broadcom: re-add check for PHY_BRCM_DIS_TXCRXC_NOENRGY on the BCM54811 PHY (Petr Oros) [2021822]
+- net: phy: at803x: simplify custom phy id matching (Petr Oros) [2021822]
+- net: phy: intel-xway: Add RGMII internal delay configuration (Petr Oros) [2021822]
+- net: phylink: cleanup ksettings_set (Petr Oros) [2021822]
+- net: phylink: add phy change pause mode debug (Petr Oros) [2021822]
+- net: phy: add API to read 802.3-c45 IDs (Petr Oros) [2021822]
+- net: phy: Fix data type in DP83822 dp8382x_disable_wol() (Petr Oros) [2021822]
+- net: phy: marvell10g: enable WoL for 88X3310 and 88E2110 (Petr Oros) [2021822]
+- net: phy: marvell10g: fix differentiation of 88X3310 from 88X3340 (Petr Oros) [2021822]
+- net: phy: replace if-else statements with switch (Petr Oros) [2021822]
+- net: phy: remove unnecessary line continuation (Petr Oros) [2021822]
+- net: phy: print the function name by __func__ instead of an fixed string (Petr Oros) [2021822]
+- net: phy: fix formatting issues with braces (Petr Oros) [2021822]
+- net: phy: fix space alignment issues (Petr Oros) [2021822]
+- net: phy: delete repeated words of comments (Petr Oros) [2021822]
+- net: phy: correct format of block comments (Petr Oros) [2021822]
+- net: phy: change format of some declarations (Petr Oros) [2021822]
+- net: phy: micrel: remove redundant assignment to pointer of_node (Petr Oros) [2021822]
+- net: phy: dp83867: perform soft reset and retain established link (Petr Oros) [2021822]
+- net: phy: do not print dump stack if device was removed (Petr Oros) [2021822]
+- net: phy: probe for C45 PHYs that return PHY ID of zero in C22 space (Petr Oros) [2021822]
+- net: phy: marvell: use phy_modify_changed() for marvell_set_polarity() (Petr Oros) [2021822]
+- net: phy: Fix inconsistent indenting (Petr Oros) [2021822]
+- net: mdiobus: get rid of a BUG_ON() (Petr Oros) [2021822]
+- net: phy: marvell: enable downshift by default (Petr Oros) [2021822]
+- net: phy: marvell: add downshift support for M88E1240 (Petr Oros) [2021822]
+- net: phy: marvell: fix m88e1111_set_downshift (Petr Oros) [2021822]
+- net: phy: marvell: fix m88e1011_set_downshift (Petr Oros) [2021822]
+- net: phy: marvell: don't use empty switch default case (Petr Oros) [2021822]
+- net: phy: intel-xway: enable integrated led functions (Petr Oros) [2021822]
+- net: phy: at803x: fix probe error if copper page is selected (Petr Oros) [2021822]
+- net: phy: marvell: add support for Amethyst internal PHY (Petr Oros) [2021822]
+- net: dsa: mv88e6xxx: simulate Amethyst PHY model number (Petr Oros) [2021822]
+- net: phy: marvell: use assignment by bitwise AND operator (Petr Oros) [2021822]
+- net: phy: marvell: fix HWMON enable register for 6390 (Petr Oros) [2021822]
+- net: phy: marvell: refactor HWMON OOP style (Petr Oros) [2021822]
+- net: phy: at803x: select correct page on config init (Petr Oros) [2021822]
+- net: phy: marvell: fix detection of PHY on Topaz switches (Petr Oros) [2021822]
+- net: phy: marvell10g: change module description (Petr Oros) [2021822]
+- net: phy: marvell10g: differentiate 88E2110 vs 88E2111 (Petr Oros) [2021822]
+- net: phy: add constants for 2.5G and 5G speed in PCS speed register (Petr Oros) [2021822]
+- net: phy: marvell10g: fix driver name for mv88e2110 (Petr Oros) [2021822]
+- net: phy: marvell10g: add separate structure for 88X3340 (Petr Oros) [2021822]
+- net: phy: marvell10g: support other MACTYPEs (Petr Oros) [2021822]
+- net: phy: marvell10g: store temperature read method in chip strucutre (Petr Oros) [2021822]
+- net: phy: marvell10g: check for correct supported interface mode (Petr Oros) [2021822]
+- net: phy: marvell10g: support all rate matching modes (Petr Oros) [2021822]
+- net: phy: marvell10g: add MACTYPE definitions for 88E21xx (Petr Oros) [2021822]
+- net: phy: marvell10g: add all MACTYPE definitions for 88X33x0 (Petr Oros) [2021822]
+- net: phy: marvell10g: indicate 88X33x0 only port control registers (Petr Oros) [2021822]
+- net: phy: marvell10g: allow 5gbase-r and usxgmii (Petr Oros) [2021822]
+- net: phy: marvell10g: fix typo (Petr Oros) [2021822]
+- net: phy: marvell10g: rename register (Petr Oros) [2021822]
+- net: fec: use mac-managed PHY PM (Petr Oros) [2021822]
+- net: phy: broadcom: Add statistics for all Gigabit PHYs (Petr Oros) [2021822]
+- net: phy: broadcom: Only advertise EEE for supported modes (Petr Oros) [2021822]
+- net: phy: remove repeated word (Petr Oros) [2021822]
+- net: phy: Correct function name mdiobus_register_board_info() in comment (Petr Oros) [2021822]
+- net: phy: lan87xx: fix access to wrong register of LAN87xx (Petr Oros) [2021822]
+- net: phy: at803x: remove at803x_aneg_done() (Petr Oros) [2021822]
+- net: phy: broadcom: Fix RGMII delays for BCM50160 and BCM50610M (Petr Oros) [2021822]
+- docs: networking: phy: Improve placement of parenthesis (Petr Oros) [2021822]
+- net: phy: broadcom: Add power down exit reset state delay (Petr Oros) [2021822]
+- net: phy: make mdio_bus_phy_suspend/resume as __maybe_unused (Petr Oros) [2021822]
+- net: mdio: Remove of_phy_attach() (Petr Oros) [2021822]
+- net: phy: broadcom: Do not modify LED configuration for SFP module PHYs (Petr Oros) [2021822]
+- net: phy: Add is_on_sfp_module flag and phy_on_sfp helper (Petr Oros) [2021822]
+- net: phy: broadcom: Set proper 1000BaseX/SGMII interface mode for BCM54616S (Petr Oros) [2021822]
+- net: phy: marvell: Ensure SGMII auto-negotiation is enabled for 88E1111 (Petr Oros) [2021822]
+- net: phylink: Add 5gbase-r support (Petr Oros) [2021822]
+- net: phy: Add 5GBASER interface mode (Petr Oros) [2021822]
+- net: phy: rename PHY_IGNORE_INTERRUPT to PHY_MAC_INTERRUPT (Petr Oros) [2021822]
+- net: phy: at803x: add MDIX support to AR8031/33 (Petr Oros) [2021822]
+- net: phy: broadcom: Allow BCM54210E to configure APD (Petr Oros) [2021822]
+- net: phy: broadcom: Remove unused flags (Petr Oros) [2021822]
+- net: phy: broadcom: Avoid forward for bcm54xx_config_clock_delay() (Petr Oros) [2021822]
+- net: phy: consider that suspend2ram may cut off PHY power (Petr Oros) [2021822]
+- net: phy: bcm7xxx: Add an entry for BCM72116 (Petr Oros) [2021822]
+- net: mdiobus: Remove WARN_ON_ONCE(in_interrupt()) (Petr Oros) [2021822]
+- net: Use kobj_to_dev() API (Petr Oros) [2021822]
+- net: phy: Fixup kernel doc (Petr Oros) [2021822]
+- net: phy: bcm7xxx: Add an entry for BCM72113 (Petr Oros) [2021822]
+- net: phy: mchp: Add support for LAN8814 QUAD PHY (Petr Oros) [2021822]
+- net: dp83867: Fix WoL SecureOn password (Petr Oros) [2021822]
+- net: phy: at803x: constify static regulator_ops (Petr Oros) [2021822]
+- net: phy: marvell10g: support XFI rate matching mode (Petr Oros) [2021822]
+- net: switch to using PHY_INTERFACE_MODE_10GBASER rather than 10GKR (Petr Oros) [2021822]
+- netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned() (Phil Sutter) [1896241]
+- net: do not reuse skbuff allocated from skbuff_fclone_cache in the skb cache (Ivan Vecera) [2069781]
+- skbuff: queue NAPI_MERGED_FREE skbs into NAPI cache instead of freeing (Ivan Vecera) [2069781]
+- skbuff: allow to use NAPI cache from __napi_alloc_skb() (Ivan Vecera) [2069781]
+- skbuff: allow to optionally use NAPI cache from __alloc_skb() (Ivan Vecera) [2069781]
+- skbuff: introduce {,__}napi_build_skb() which reuses NAPI cache heads (Ivan Vecera) [2069781]
+- skbuff: move NAPI cache declarations upper in the file (Ivan Vecera) [2069781]
+- skbuff: remove __kfree_skb_flush() (Ivan Vecera) [2069781]
+- skbuff: use __build_skb_around() in __alloc_skb() (Ivan Vecera) [2069781]
+- skbuff: simplify __alloc_skb() a bit (Ivan Vecera) [2069781]
+- skbuff: make __build_skb_around() return void (Ivan Vecera) [2069781]
+- skbuff: simplify kmalloc_reserve() (Ivan Vecera) [2069781]
+- skbuff: move __alloc_skb() next to the other skb allocation functions (Ivan Vecera) [2069781]
+- net: Introduce {netdev,napi}_alloc_frag_align() (Ivan Vecera) [2069781]
+- mm: page_frag: Introduce page_frag_alloc_align() (Ivan Vecera) [2069781]
+- perf tests attr: Add missing topdown metrics events (Michael Petlan) [1986275]
+- cifs: Return correct error code from smb2_get_enc_key (Ronnie Sahlberg) [2058369]
+- ipv4: avoid using shared IP generator for connected sockets (Paolo Abeni) [2062427] {CVE-2020-36516}
+- crypto: cryptd - Fix skcipher instance memory leak (Vladis Dronov) [2004344]
+- EVM: fix the evm= __setup handler return value (Bruno Meneguele) [2063900]
+- integrity: include keyring name for unknown key request (Bruno Meneguele) [2063900]
+- ima: limit secure boot feedback scope for appraise (Bruno Meneguele) [2063900]
+- integrity: invalid kernel parameters feedback (Bruno Meneguele) [2063900]
+- ima: add check for enforced appraise option (Bruno Meneguele) [2063900]
+- ima: Allow template selection with ima_template[_fmt]= after ima_hash= (Bruno Meneguele) [2063900]
+- ima: Remove ima_policy file before directory (Bruno Meneguele) [2063900]
+- integrity: check the return value of audit_log_start() (Bruno Meneguele) [2063900]
+- ima: fix deadlock when traversing "ima_default_rules". (Bruno Meneguele) [2063900]
+- evm: Introduce evm_revalidate_status() (Bruno Meneguele) [2063900]
+- evm: Refuse EVM_ALLOW_METADATA_WRITES only if an HMAC key is loaded (Bruno Meneguele) [2063900]
+- evm: Load EVM key in ima_load_x509() to avoid appraisal (Bruno Meneguele) [2063900]
+- evm: Execute evm_inode_init_security() only when an HMAC key is loaded (Bruno Meneguele) [2063900]
+- fs/kernel_read_file: Remove FIRMWARE_PREALLOC_BUFFER enum (Bruno Meneguele) [2063900]
+- RHEL-only: KVM: selftests: Fix AArch64 compilation (Andrew Jones) [2071997]
+- tools arch x86: Sync the msr-index.h copy with the kernel sources (Andrew Jones) [2071997]
+- RHEL-only: KVM: selftests: Remove unused modes (Andrew Jones) [2071997]
+
+* Wed Apr 06 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-380.el8]
+- netfilter: nf_tables_offload: incorrect flow offload action array size (Florian Westphal) [2056728] {CVE-2022-25636}
+- netfilter: nftables_offload: KASAN slab-out-of-bounds Read in nft_flow_rule_create (Florian Westphal) [2056728]
+- KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255 (Bandan Das) [2033068]
+- PCI/ACPI: Fix acpi_pci_osc_control_set() kernel-doc comment (Mark Langsdorf) [2049209]
+- PCI/ACPI: Check for _OSC support in acpi_pci_osc_control_set() (Mark Langsdorf) [2049209]
+- PCI/ACPI: Move _OSC query checks to separate function (Mark Langsdorf) [2049209]
+- PCI/ACPI: Move supported and control calculations to separate functions (Mark Langsdorf) [2049209]
+- PCI/ACPI: Remove OSC_PCI_SUPPORT_MASKS and OSC_PCI_CONTROL_MASKS (Mark Langsdorf) [2049209]
+- kabi: Adding symbol blkdev_get_by_dev (fs/block_dev.c) (Čestmír Kalina) [2010296]
+- kabi: Adding symbol thaw_bdev (fs/block_dev.c) (Čestmír Kalina) [2010296]
+- kabi: Adding symbol freeze_bdev (fs/block_dev.c) (Čestmír Kalina) [2010296]
+- s390/cio: make ccw_device_dma_* more robust (Thomas Huth) [2066709]
+- perf/x86/intel/uncore: Make uncore_discovery clean for 64 bit addresses (Michael Petlan) [2069237]
+- redhat: switch secureboot kernel image signing to release keys (Augusto Caringi)
+- ice: xsk: Stop Rx processing when ntc catches ntu (Ivan Vecera) [2069082]
+- ice: xsk: Fix indexing in ice_tx_xsk_pool() (Ivan Vecera) [2069082]
+- ice: Fix kernel crash in XDP scenario (Ivan Vecera) [2069082]
+
+* Wed Apr 06 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-379.el8]
+- do_wait: make PIDTYPE_PID case O(1) instead of O(n) (Nico Pache) [2055973]
+- n_tty: wake up poll(POLLRDNORM) on receiving data (Rafael Aquini) [2033338]
+- powerpc/papr_scm: Implement initial support for injecting smart errors (Steve Best) [1987103]
+- mm: memcg: synchronize objcg lists with a dedicated spinlock (Rafael Aquini) [2064847]
+- kasan: fix quarantine conflicting with init_on_free (Rafael Aquini) [2064847]
+- mm/hwpoison: clear MF_COUNT_INCREASED before retrying get_any_page() (Rafael Aquini) [2064847]
+- mm/memcg: relocate mod_objcg_mlstate(), get_obj_stock() and put_obj_stock() (Rafael Aquini) [2064847]
+- mm: move node_reclaim_distance to fix NUMA without SMP (Rafael Aquini) [2064847]
+- vmalloc: choose a better start address in vm_area_register_early() (Rafael Aquini) [2064847]
+- mm/vmalloc: check various alignments when debugging (Rafael Aquini) [2064847]
+- mm/vmalloc: don't allow VM_NO_GUARD on vmap() (Rafael Aquini) [2064847]
+- mm, thp: bail out early in collapse_file for writeback page (Rafael Aquini) [2064847]
+- mm/sparse: set SECTION_NID_SHIFT to 6 (Rafael Aquini) [2064847]
+- mm/memory_hotplug: fix kerneldoc comment for __remove_memory (Rafael Aquini) [2064847]
+- mm: fix memory_failure() handling of dax-namespace metadata (Rafael Aquini) [2064847]
+- mm: teach pfn_to_online_page() about ZONE_DEVICE section collisions (Rafael Aquini) [2064847]
+- mm: teach pfn_to_online_page() to consider subsection validity (Rafael Aquini) [2064847]
+- mm: move pfn_to_online_page() out of line (Rafael Aquini) [2064847]
+- Revert "mm: use early_pfn_to_nid in page_ext_init" (Rafael Aquini) [2064847]
+- x86/mm: Fix kern_addr_valid() to cope with existing but not present entries (Rafael Aquini) [2064847]
+- powerpc/book3s64: Fix error handling in mm_iommu_do_alloc() (Rafael Aquini) [2064847]
+- powerpc/pkeys: remove unused pkey_allows_readwrite (Rafael Aquini) [2064847]
+- x86/hyperv: Output host build info as normal Windows version number (Vitaly Kuznetsov) [2060700]
+- powerpc/smp: Update cpu_core_map on all PowerPc systems (Diego Domingos) [2064104]
+- crypto: ccp - ccp_dmaengine_unregister release dma channels (Vladis Dronov) [2015374]
+- crypto: ccp - remove redundant ret variable (Vladis Dronov) [2015374]
+- crypto: ccp - Ensure psp_ret is always init'd in __sev_platform_init_locked() (Vladis Dronov) [2015374]
+- crypto: ccp - remove unneeded semicolon (Vladis Dronov) [2015374]
+- crypto: ccp - Add SEV_INIT_EX support (Vladis Dronov) [2015374]
+- crypto: ccp - Add psp_init_on_probe module parameter (Vladis Dronov) [2015374]
+- crypto: ccp - Refactor out sev_fw_alloc() (Vladis Dronov) [2015374]
+- crypto: ccp - Move SEV_INIT retry for corrupted data (Vladis Dronov) [2015374]
+- crypto: ccp - Add SEV_INIT rc error logging on init (Vladis Dronov) [2015374]
+- crypto: ccp - no need to initialise statics to 0 (Vladis Dronov) [2015374]
+- ccp: ccp - add support for Green Sardine (Vladis Dronov) [2015374]
+- crypto: ccp - fix command queuing to TEE ring buffer (Vladis Dronov) [2015374]
+- crypto: ccp - reduce tee command status polling interval from 5ms to 1ms (Vladis Dronov) [2015374]
+- crypto: ccp - provide in-kernel API to submit TEE commands (Vladis Dronov) [2015374]
+- crypto: ccp - add TEE support for Raven Ridge (Vladis Dronov) [2015374]
+- crypto: ccp - check whether PSP supports SEV or TEE before initialization (Vladis Dronov) [2015374]
+- ice: Allow to pass VLAN tagged packets to VF when port VLAN is configured (Ivan Vecera) [2071027]
+- tools headers UAPI: Sync linux/perf_event.h with the kernel sources (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Fix power_pmu_disable to call clear_pmi_irq_pending only if PMI is pending (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Only define power_pmu_wants_prompt_pmi() for CONFIG_PPC64 (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Add data source encodings for power10 platform (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Add encodings to represent data based on newer composite PERF_MEM_LVLNUM* fields (Desnes A. Nunes do Rosario) [1992813]
+- perf: Add new macros for mem_hops field (Desnes A. Nunes do Rosario) [1992813]
+- tools headers UAPI: Add new macros for mem_hops field to perf_event.h (Desnes A. Nunes do Rosario) [1992813]
+- bpf: Remove config check to enable bpf support for branch records (Desnes A. Nunes do Rosario) [1992813]
+- perf powerpc: Update global/local variants for p_stage_cyc (Desnes A. Nunes do Rosario) [1992813]
+- perf sort: Include global and local variants for p_stage_cyc sort key (Desnes A. Nunes do Rosario) [1992813]
+- perf sort: Fix the 'p_stage_cyc' sort key behavior (Desnes A. Nunes do Rosario) [1992813]
+- perf sort: Fix the 'ins_lat' sort key behavior (Desnes A. Nunes do Rosario) [1992813]
+- perf sort: Fix the 'weight' sort key behavior (Desnes A. Nunes do Rosario) [1992813]
+- perf vendor events power10: Add metric events JSON file for power10 platform (Desnes A. Nunes do Rosario) [1992813]
+- perf powerpc: Add support to expose instruction and data address registers as part of extended regs (Desnes A. Nunes do Rosario) [1992813]
+- perf powerpc: Refactor the code definition of perf reg extended mask in tools side header file (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Expose instruction and data address registers as part of extended regs (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Refactor the code definition of perf reg extended mask (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Fix data source encodings for L2.1 and L3.1 accesses (Desnes A. Nunes do Rosario) [1992813]
+- tools/perf: Add mem_hops field in perf_mem_data_src structure (Desnes A. Nunes do Rosario) [1992813]
+- perf: Add mem_hops field in perf_mem_data_src structure (Desnes A. Nunes do Rosario) [1992813]
+- perf: Add comment about current state of PERF_MEM_LVL_* namespace and remove an extra line (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Fix the check for SIAR value (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Drop the case of returning 0 as instruction pointer (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Use stack siar instead of mfspr (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf/hv-gpci: Fix counter value parsing (Desnes A. Nunes do Rosario) [1992813]
+- powerpc/perf: Fix PMU callbacks to clear pending PMI before resetting an overflown PMC (Desnes A. Nunes do Rosario) [1992813]
+- CI: Remove deprecated option (Veronika Kabatova)
+
+* Fri Apr 01 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-378.el8]
+- bareudp: use ipv6_mod_enabled to check if IPv6 enabled (Hangbin Liu) [2063813]
+- powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() (Diego Domingos) [2048218]
+- redhat: copy rpminspect to dist-git repo (Jarod Wilson)
+- configs: enable CONFIG_RMI4_F3A (Benjamin Tissoires) [2067219]
+- Input: synaptics-rmi4 - add support for F3A (Benjamin Tissoires) [2067219]
+- RDMA/cma: Do not change route.addr.src_addr.ss_family (Kamal Heib) [2032074] {CVE-2021-4028}
+- drm/i915/adl_s: Remove require_force_probe protection (Michel Dänzer) [2025896]
+- drm/i915/adl_s: Update ADL-S PCI IDs (Michel Dänzer) [2025896]
+- drm/i915: Limit Wa_22010178259 to affected platforms (Michel Dänzer) [2025896]
+- drm/i915/adl_s: Fix dma_mask_size to 39 bit (Michel Dänzer) [2025896]
+- drm/i915/dmc: Update DMC to v2.14 on ADL-P (Michel Dänzer) [2060051]
+- drm/i915: Update memory bandwidth formulae (Michel Dänzer) [2060051]
+- drm/i915/fb: Fold modifier CCS type/tiling attribute to plane caps (Michel Dänzer) [2060051]
+- drm/i915/fb: Don't store bitmasks in the intel_plane_caps enum (Michel Dänzer) [2060051]
+- drm/i915/adl_p: Add ddc pin mapping (Michel Dänzer) [2060051]
+- iommu/amd: Fix I/O page table memory leak (Jerry Snitselaar) [2053210]
+- iommu/amd: Recover from event log overflow (Jerry Snitselaar) [2053210]
+
+* Thu Mar 31 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-377.el8]
+- redhat: tune rpminspect w/additions from rhel9 branch (Jarod Wilson)
+- powerpc/pseries/ddw: Revert "Extend upper limit for huge DMA window for persistent memory" (Steve Best) [2056080]
+- x86/tsc: Disable clocksource watchdog for TSC on qualified platorms (Prarit Bhargava) [1971939]
+- x86/tsc: Add a timer to make sure TSC_adjust is always checked (Prarit Bhargava) [1971939]
+- x86/hpet: Use another crystalball to evaluate HPET usability (Prarit Bhargava) [1971939]
+- x86/tsc: Respect tsc command line paraemeter for clocksource_tsc_early (Prarit Bhargava) [1971939]
+- [s390] s390/pci: fix zpci_zdev_put() on reserve (Claudio Imbrenda) [2039185]
+- [s390] s390/pci: fix use after free of zpci_dev (Claudio Imbrenda) [2039185]
+- [s390] s390/cio: make ccw_device_dma_* more robust (Claudio Imbrenda) [2039186]
+- [s390] s390/pci: add s390_iommu_aperture kernel parameter (Claudio Imbrenda) [2039181]
+- tools headers UAPI: Sync linux/kvm.h with the kernel sources (Paul Lai) [1918929]
+- kvm: selftests: sync uapi/linux/kvm.h with Linux header (Paul Lai) [1918929]
+- kvm: selftests: conditionally build vm_xsave_req_perm() (Paul Lai) [1918929]
+- x86/kvm/fpu: Remove kvm_vcpu_arch.guest_supported_xcr0 (Paul Lai) [1918929]
+- x86/kvm/fpu: Limit guest user_xfeatures to supported bits of XCR0 (Paul Lai) [1918929]
+- KVM: x86/cpuid: Exclude unpermitted xfeatures sizes at KVM_GET_SUPPORTED_CPUID (Paul Lai) [1918929]
+- KVM: x86: Move CPUID.(EAX=0x12,ECX=1) mangling to __kvm_update_cpuid_runtime() (Paul Lai) [1918929]
+- KVM: x86/cpuid: Clear XFD for component i if the base feature is missing (Paul Lai) [1918929]
+- KVM: x86: Do runtime CPUID update before updating vcpu->arch.cpuid_entries (Paul Lai) [1918929]
+- x86/fpu: Fix inline prefix warnings (Paul Lai) [1918929]
+- selftest: kvm: Add amx selftest (Paul Lai) [1918929]
+- selftest: kvm: Move struct kvm_x86_state to header (Paul Lai) [1918929]
+- selftest: kvm: Reorder vcpu_load_state steps for AMX (Paul Lai) [1918929]
+- kvm: x86: Disable interception for IA32_XFD on demand (Paul Lai) [1918929]
+- x86/fpu: Provide fpu_sync_guest_vmexit_xfd_state() (Paul Lai) [1918929]
+- kvm: selftests: Add support for KVM_CAP_XSAVE2 (Paul Lai) [1918929]
+- kvm: x86: Add support for getting/setting expanded xstate buffer (Paul Lai) [1918929]
+- x86/fpu: Add uabi_size to guest_fpu (Paul Lai) [1918929]
+- kvm: x86: Add CPUID support for Intel AMX (Paul Lai) [1918929]
+- kvm: x86: Add XCR0 support for Intel AMX (Paul Lai) [1918929]
+- kvm: x86: Disable RDMSR interception of IA32_XFD_ERR (Paul Lai) [1918929]
+- kvm: x86: Emulate IA32_XFD_ERR for guest (Paul Lai) [1918929]
+- kvm: x86: Intercept #NM for saving IA32_XFD_ERR (Paul Lai) [1918929]
+- x86/fpu: Prepare xfd_err in struct fpu_guest (Paul Lai) [1918929]
+- kvm: x86: Add emulation for IA32_XFD (Paul Lai) [1918929]
+- x86/fpu: Provide fpu_update_guest_xfd() for IA32_XFD emulation (Paul Lai) [1918929]
+- kvm: x86: Enable dynamic xfeatures at KVM_SET_CPUID2 (Paul Lai) [1918929]
+- x86/fpu: Provide fpu_enable_guest_xfd_features() for KVM (Paul Lai) [1918929]
+- x86/fpu: Add guest support to xfd_enable_feature() (Paul Lai) [1918929]
+- x86/fpu: Make XFD initialization in __fpstate_reset() a function argument (Paul Lai) [1918929]
+- kvm: x86: Exclude unpermitted xfeatures at KVM_GET_SUPPORTED_CPUID (Paul Lai) [1918929]
+- kvm: x86: Fix xstate_required_size() to follow XSTATE alignment rule (Paul Lai) [1918929]
+- x86/fpu: Prepare guest FPU for dynamically enabled FPU features (Paul Lai) [1918929]
+- x86/fpu: Extend fpu_xstate_prctl() with guest permissions (Paul Lai) [1918929]
+- kvm: selftests: move ucall declarations into ucall_common.h (Paul Lai) [1918929]
+- kvm: selftests: move base kvm_util.h declarations to kvm_util_base.h (Paul Lai) [1918929]
+- cpuid: kvm_find_kvm_cpuid_features() should be declared 'static' (Paul Lai) [1918929]
+- KVM: x86: Make sure KVM_CPUID_FEATURES really are KVM_CPUID_FEATURES (Paul Lai) [1918929]
+- KVM: x86: Add helper to consolidate core logic of SET_CPUID{2} flows (Paul Lai) [1918929]
+
+* Mon Mar 28 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-376.el8]
+- scsi: mpi3mr: Fix flushing !WQ_MEM_RECLAIM events warning (Tomas Henzl) [2052278]
+- scsi: mpi3mr: Fix memory leaks (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Fix reporting of actual data transfer size (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Fix cmnd getting marked as in use forever (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Fix hibernation issue (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Fix printing of pending I/O count (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Fix deadlock while canceling the fw event (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Fixes around reply request queues (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Enhanced Task Management Support Reply handling (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Use TM response codes from MPI3 headers (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Increase internal cmnds timeout to 60s (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Do access status validation before adding devices (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Update MPI3 headers - part2 (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Update MPI3 headers - part1 (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Don't reset IOC if cmnds flush with reset status (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Replace spin_lock() with spin_lock_irqsave() (Tomas Henzl) [2054814]
+- scsi: mpi3mr: Add debug APIs based on logging_level bits (Tomas Henzl) [2054814]
+- scsi: mpt3sas: Remove scsi_dma_map() error messages (Tomas Henzl) [2057021]
+- net/mlx5: Fix wrong limitation of metadata match on ecpf (Amir Tzin) [2049094]
+- nfsd: fix use-after-free due to delegation race (Thiago Becker) [2053262]
+- dma-buf: cma_heap: Fix mutex locking section (Michel Dänzer) [2044440]
+- drm/amdkfd: Check for null pointer after calling kmemdup (Michel Dänzer) [2044440]
+- drm/atomic: Check new_crtc_state->active to determine if CRTC needs disable in self refresh mode (Michel Dänzer) [2044440]
+- drm/amd: avoid suspend on dGPUs w/ s2idle support when runtime PM enabled (Michel Dänzer) [2044440]
+- drm/i915/overlay: Prevent divide by zero bugs in scaling (Michel Dänzer) [2044440]
+- dma-buf: heaps: Fix potential spectre v1 gadget (Michel Dänzer) [2044440]
+- drm/amd/display: Force link_rate as LINK_RATE_RBR2 for 2018 15" Apple Retina panels (Michel Dänzer) [2044440]
+- drm/amd/display: watermark latencies is not enough on DCN31 (Michel Dänzer) [2044440]
+- drm/amd/pm: correct the MGpuFanBoost support for Beige Goby (Michel Dänzer) [2044440]
+- drm/i915/adlp: Fix TypeC PHY-ready status readout (Michel Dänzer) [2044440]
+- drm/nouveau: fix off by one in BIOS boundary checking (Michel Dänzer) [2044440]
+- drm/i915: Disable DSB usage for now (Michel Dänzer) [2044440]
+- Revert "drm/ast: Support 1600x900 with 108MHz PCLK" (Michel Dänzer) [2044440]
+- drm/amd/display: Fix FP start/end for dcn30_internal_validate_bw. (Michel Dänzer) [2044440]
+- drm/atomic: Add the crtc to affected crtc only if uapi.enable = true (Michel Dänzer) [2044440]
+- drm/amdgpu: Use correct VIEWPORT_DIMENSION for DCN2 (Michel Dänzer) [2044440]
+- drm/amd/display: reset dcn31 SMU mailbox on failures (Michel Dänzer) [2044440]
+- drm/vmwgfx: Remove explicit transparent hugepages support (Michel Dänzer) [2044440]
+- drm/radeon: fix error handling in radeon_driver_open_kms (Michel Dänzer) [2044440]
+- drm/i915/display/ehl: Update voltage swing table (Michel Dänzer) [2044440]
+- drm/nouveau/kms/nv04: use vzalloc for nv04_display (Michel Dänzer) [2044440]
+- drm/amd/display: Fix the uninitialized variable in enable_stream_features() (Michel Dänzer) [2044440]
+- amdgpu/pm: Make sysfs pm attributes as read-only for VFs (Michel Dänzer) [2044440]
+- drm/amdgpu: fixup bad vram size on gmc v8 (Michel Dänzer) [2044440]
+- drm/amd/amdgpu: fix gmc bo pin count leak in SRIOV (Michel Dänzer) [2044440]
+- drm/amd/amdgpu: fix psp tmr bo pin count leak in SRIOV (Michel Dänzer) [2044440]
+- drm/amdkfd: Fix error handling in svm_range_add (Michel Dänzer) [2044440]
+- drm/vmwgfx: Introduce a new placement for MOB page tables (Michel Dänzer) [2044440]
+- drm/vmwgfx: Release ttm memory if probe fails (Michel Dänzer) [2044440]
+- drm/amd/display: add else to avoid double destroy clk_mgr (Michel Dänzer) [2044440]
+- drm/amdgpu/display: set vblank_disable_immediate for DC (Michel Dänzer) [2044440]
+- drm/amd/display: check top_pipe_to_program pointer (Michel Dänzer) [2044440]
+- drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L (Michel Dänzer) [2044440]
+- drm/amd/display: Fix out of bounds access on DNC31 stream encoder regs (Michel Dänzer) [2044440]
+- drm/amd/display: Fix bug in debugfs crc_win_update entry (Michel Dänzer) [2044440]
+- drm/radeon/radeon_kms: Fix a NULL pointer dereference in radeon_driver_open_kms() (Michel Dänzer) [2044440]
+- drm/amdgpu: Fix a NULL pointer dereference in amdgpu_connector_lcd_native_mode() (Michel Dänzer) [2044440]
+- drm/vmwgfx: Fail to initialize on broken configs (Michel Dänzer) [2044440]
+- drm/vmwgfx: Remove the deprecated lower mem limit (Michel Dänzer) [2044440]
+- drm/vboxvideo: fix a NULL vs IS_ERR() check (Michel Dänzer) [2044440]
+- drm: fix null-ptr-deref in drm_dev_init_release() (Michel Dänzer) [2044440]
+- drm/ttm: Put BO in its memory manager's lru list (Michel Dänzer) [2044440]
+- dma_fence_array: Fix PENDING_ERROR leak in dma_fence_array_signaled() (Michel Dänzer) [2044440]
+- drm/amd/display: explicitly set is_dsc_supported to false before use (Michel Dänzer) [2044440]
+- drm/i915: Avoid bitwise vs logical OR warning in snb_wm_latency_quirk() (Michel Dänzer) [2044440]
+- drm/amd/pm: keep the BACO feature enabled for suspend (Michel Dänzer) [2044440]
+- Revert "drm/amdgpu: stop scheduler when calling hw_fini (v2)" (Michel Dänzer) [2044440]
+- drm/amd/display: Added power down for DCN10 (Michel Dänzer) [2044440]
+- drm/amd/display: fix B0 TMDS deepcolor no dislay issue (Michel Dänzer) [2044440]
+- drm/amdgpu: put SMU into proper state on runpm suspending for BOCO capable platform (Michel Dänzer) [2044440]
+- drm/amd/pm: skip setting gfx cgpg in the s0ix suspend-resume (Michel Dänzer) [2044440]
+- drm/amd/pm: Fix xgmi link control on aldebaran (Michel Dänzer) [2044440]
+- drm/amdgpu: fix dropped backing store handling in amdgpu_dma_buf_move_notify (Michel Dänzer) [2044440]
+- drm/amd/display: Changed pipe split policy to allow for multi-display pipe split (Michel Dänzer) [2044440]
+- drm/amdgpu: add support for IP discovery gc_info table v2 (Michel Dänzer) [2044440]
+- drm/amdgpu: When the VCN(1.0) block is suspended, powergating is explicitly enabled (Michel Dänzer) [2044440]
+- drm/nouveau: wait for the exclusive fence after the shared ones v2 (Michel Dänzer) [2044440]
+- drm/nouveau: always wait for the exclusive fence (Michel Dänzer) [2044440]
+- drm/amd/display: Set optimize_pwr_state for DCN31 (Michel Dänzer) [2044440]
+- drm/amd/display: Send s0i2_rdy in stream_count == 0 optimization (Michel Dänzer) [2044440]
+- drm/amd/pm: fix reading SMU FW version from amdgpu_firmware_info on YC (Michel Dänzer) [2044440]
+- drm/amdgpu: don't override default ECO_BITs setting (Michel Dänzer) [2044440]
+- drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE (Michel Dänzer) [2044440]
+- drm/amd/pm: fix a potential gpu_metrics_table memory leak (Michel Dänzer) [2044440]
+- drm/amd/display: Set exit_optimized_pwr_state for DCN31 (Michel Dänzer) [2044440]
+- drm/i915/display: Fix an unsigned subtraction which can never be negative. (Michel Dänzer) [2044440]
+- drm/ast: potential dereference of null pointer (Michel Dänzer) [2044440]
+- drm: simpledrm: fix wrong unit with pixel clock (Michel Dänzer) [2044440]
+- Revert "drm/fb-helper: improve DRM fbdev emulation device names" (Michel Dänzer) [2044440]
+- drm/i915/hdmi: Turn DP++ TMDS output buffers back on in encoder->shutdown() (Michel Dänzer) [2044440]
+- drm/i915/hdmi: convert intel_hdmi_to_dev to intel_hdmi_to_i915 (Michel Dänzer) [2044440]
+- drm/amdkfd: process_info lock not needed for svm (Michel Dänzer) [2044440]
+- drm/amd/display: add connector type check for CRC source set (Michel Dänzer) [2044440]
+- drm/amdkfd: fix double free mem structure (Michel Dänzer) [2044440]
+- drm/amd/display: Fix for the no Audio bug with Tiled Displays (Michel Dänzer) [2044440]
+- drm/amdgpu: check atomic flag to differeniate with legacy path (Michel Dänzer) [2044440]
+- drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset (Michel Dänzer) [2044440]
+- drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. (Michel Dänzer) [2044440]
+- drm/i915/dp: Perform 30ms delay after source OUI write (Michel Dänzer) [2044440]
+- drm/amd/display: Allow DSC on supported MST branch devices (Michel Dänzer) [2044440]
+- dma-buf: system_heap: Use 'for_each_sgtable_sg' in pages free flow (Michel Dänzer) [2044440]
+- drm/amd/amdgpu: fix potential memleak (Michel Dänzer) [2044440]
+- drm/amd/amdkfd: Fix kernel panic when reset failed and been triggered again (Michel Dänzer) [2044440]
+- drm/amd/pm: Remove artificial freq level on Navi1x (Michel Dänzer) [2044440]
+- drm/amdgpu/gfx9: switch to golden tsc registers for renoir+ (Michel Dänzer) [2044440]
+- drm/amd/display: Set plane update flags for all planes in reset (Michel Dänzer) [2044440]
+- drm/amd/display: Fix DPIA outbox timeout after GPU reset (Michel Dänzer) [2044440]
+- drm/aspeed: Fix vga_pw sysfs output (Michel Dänzer) [2044440]
+- drm/nouveau/acr: fix a couple NULL vs IS_ERR() checks (Michel Dänzer) [2044440]
+- drm/amd/display: Fix OLED brightness control on eDP (Michel Dänzer) [2044440]
+- drm/amdgpu: IH process reset count when restart (Michel Dänzer) [2044440]
+- drm/amd/pm: avoid duplicate powergate/ungate setting (Michel Dänzer) [2044440]
+- drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga and dvi connectors (Michel Dänzer) [2044440]
+- drm/i915: Fix type1 DVI DP dual mode adapter heuristic for modern platforms (Michel Dänzer) [2044440]
+- drm/i915/dp: Ensure max link params are always valid (Michel Dänzer) [2044440]
+- drm/i915/dp: Ensure sink rate values are always valid (Michel Dänzer) [2044440]
+- drm/prime: Fix use after free in mmap with drm_gem_ttm_mmap (Michel Dänzer) [2044440]
+- drm/udl: fix control-message timeout (Michel Dänzer) [2044440]
+- drm/amd/display: Limit max DSC target bpp for specific monitors (Michel Dänzer) [2044440]
+- drm/amd/display: Update swizzle mode enums (Michel Dänzer) [2044440]
+- drm/cma-helper: Release non-coherent memory with dma_free_noncoherent() (Michel Dänzer) [2044440]
+- Revert "drm/i915/tgl/dsi: Gate the ddi clocks after pll mapping" (Michel Dänzer) [2044440]
+- drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame (Michel Dänzer) [2044440]
+- x86/speculation: Check CPU capability before applying IBRS spectre v2 mitigation (Waiman Long) [2062156 2062166] {CVE-2022-0001 CVE-2022-0002 CVE-2021-26401}
+- x86/speculation: Warn about eIBRS + LFENCE + Unprivileged eBPF + SMT (Waiman Long) [2062156 2062166] {CVE-2022-0001 CVE-2022-0002 CVE-2021-26401}
+- x86/speculation: Warn about Spectre v2 LFENCE mitigation (Waiman Long) [2062156 2062166] {CVE-2022-0001 CVE-2022-0002 CVE-2021-26401}
+- x86/speculation: Update link to AMD speculation whitepaper (Waiman Long) [2062166] {CVE-2021-26401}
+- x86/speculation: Use generic retpoline by default on AMD (Waiman Long) [2062166] {CVE-2021-26401}
+- x86/speculation: Include unprivileged eBPF status in Spectre v2 mitigation reporting (Waiman Long) [2062156] {CVE-2022-0001 CVE-2022-0002}
+- Documentation/hw-vuln: Update spectre doc (Waiman Long) [2062156] {CVE-2022-0001 CVE-2022-0002}
+- x86/speculation: Add eIBRS + Retpoline options (Waiman Long) [2062156] {CVE-2022-0001 CVE-2022-0002}
+- x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE (Waiman Long) [2062156] {CVE-2022-0001 CVE-2022-0002}
+- x86,bugs: Unconditionally allow spectre_v2=retpoline,amd (Waiman Long) [2062156] {CVE-2022-0001 CVE-2022-0002}
+- x86: deduplicate the spectre_v2_user documentation (Waiman Long) [2062156] {CVE-2022-0001 CVE-2022-0002}
+- fuse: fix pipe buffer lifetime for direct_io (Miklos Szeredi) [2064863] {CVE-2022-1011}
+- ice: Do not enable VLAN pruning when spoofchk is enabled (Ivan Vecera) [2062343]
+- ice: don't allow to run ice_send_event_to_aux() in atomic ctx (Ivan Vecera) [2062343]
+- ice: fix 'scheduling while atomic' on aux critical err interrupt (Ivan Vecera) [2062343]
+- ice: Fix MAC address setting (Ivan Vecera) [2062343]
+- ice: Clear default forwarding VSI during release (Ivan Vecera) [2062343]
+- ice: Fix broken IFF_ALLMULTI handling (Ivan Vecera) [2062343]
+- iavf: Fix hang during reboot/shutdown (Ivan Vecera) [2062343]
+- iavf: Fix double free in iavf_reset_task (Ivan Vecera) [2062343]
+- ice: destroy flow director filter mutex after releasing VSIs (Ivan Vecera) [2062343]
+- ice: fix NULL pointer dereference in ice_update_vsi_tx_ring_stats() (Ivan Vecera) [2062343]
+- iavf: Fix adopting new combined setting (Ivan Vecera) [2062343]
+- iavf: Fix handling of vlan strip virtual channel messages (Ivan Vecera) [2062343]
+- iavf: Fix __IAVF_RESETTING state usage (Ivan Vecera) [2062343]
+- iavf: Fix missing check for running netdev (Ivan Vecera) [2062343]
+- iavf: Fix deadlock in iavf_reset_task (Ivan Vecera) [2062343]
+- iavf: Fix race in init state (Ivan Vecera) [2062343]
+- iavf: Fix locking for VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS (Ivan Vecera) [2062343]
+- iavf: Fix init state closure on remove (Ivan Vecera) [2062343]
+- iavf: Add waiting so the port is initialized in remove (Ivan Vecera) [2062343]
+- iavf: Rework mutexes for better synchronisation (Ivan Vecera) [2062343]
+- iavf: remove an unneeded variable (Ivan Vecera) [2062343]
+- iavf: Fix limit of total number of queues to active queues of VF (Ivan Vecera) [2062343]
+- iavf: Restrict maximum VLAN filters for VIRTCHNL_VF_OFFLOAD_VLAN_V2 (Ivan Vecera) [2062343]
+- iavf: Add support for VIRTCHNL_VF_OFFLOAD_VLAN_V2 offload enable/disable (Ivan Vecera) [2062343]
+- iavf: Add support for VIRTCHNL_VF_OFFLOAD_VLAN_V2 hotpath (Ivan Vecera) [2062343]
+- iavf: Add support VIRTCHNL_VF_OFFLOAD_VLAN_V2 during netdev config (Ivan Vecera) [2062343]
+- iavf: Add support for VIRTCHNL_VF_OFFLOAD_VLAN_V2 negotiation (Ivan Vecera) [2062343]
+- virtchnl: Add support for new VLAN capabilities (Ivan Vecera) [2062343]
+- virtchnl: Use the BIT() macro for capability/offload flags (Ivan Vecera) [2062343]
+- virtchnl: Remove unused VIRTCHNL_VF_OFFLOAD_RSVD define (Ivan Vecera) [2062343]
+- virtchnl: Add missing padding to virtchnl_proto_hdrs (Ivan Vecera) [2062343]
+- ice: Fix race condition during interface enslave (Ivan Vecera) [2062343]
+- ice: Fix curr_link_speed advertised speed (Ivan Vecera) [2062343]
+- ice: Don't use GFP_KERNEL in atomic context (Ivan Vecera) [2062343]
+- ice: Fix error with handling of bonding MTU (Ivan Vecera) [2062343]
+- ice: stop disabling VFs due to PF error responses (Ivan Vecera) [2062343]
+- ice: initialize local variable 'tlv' (Ivan Vecera) [2062343]
+- ice: check the return of ice_ptp_gettimex64 (Ivan Vecera) [2062343]
+- ice: fix concurrent reset and removal of VFs (Ivan Vecera) [2062343]
+- ice: fix setting l4 port flag when adding filter (Ivan Vecera) [2062343]
+- ice: Match on all profiles in slow-path (Ivan Vecera) [2062343]
+- ice: enable parsing IPSEC SPI headers for RSS (Ivan Vecera) [2062343]
+- ice: Avoid RTNL lock when re-creating auxiliary device (Ivan Vecera) [2062343]
+- ice: Fix KASAN error in LAG NETDEV_UNREGISTER handler (Ivan Vecera) [2062343]
+- ice: fix IPIP and SIT TSO offload (Ivan Vecera) [2062343]
+- ice: fix an error code in ice_cfg_phy_fec() (Ivan Vecera) [2062343]
+- ice: Use bitmap_free() to free bitmap (Ivan Vecera) [2062343]
+- ice: Optimize a few bitmap operations (Ivan Vecera) [2062343]
+- ice: Slightly simply ice_find_free_recp_res_idx (Ivan Vecera) [2062343]
+- ice: improve switchdev's slow-path (Ivan Vecera) [2062343]
+- ice: replay advanced rules after reset (Ivan Vecera) [2062343]
+- ice: Add flow director support for channel mode (Ivan Vecera) [2062343]
+- ice: trivial: fix odd indenting (Ivan Vecera) [2062343]
+- ice: support crosstimestamping on E822 devices if supported (Ivan Vecera) [2062343]
+- ice: exit bypass mode once hardware finishes timestamp calibration (Ivan Vecera) [2062343]
+- ice: ensure the hardware Clock Generation Unit is configured (Ivan Vecera) [2062343]
+- ice: implement basic E822 PTP support (Ivan Vecera) [2062343]
+- ice: convert clk_freq capability into time_ref (Ivan Vecera) [2062343]
+- ice: introduce ice_ptp_init_phc function (Ivan Vecera) [2062343]
+- ice: use 'int err' instead of 'int status' in ice_ptp_hw.c (Ivan Vecera) [2062343]
+- ice: PTP: move setting of tstamp_config (Ivan Vecera) [2062343]
+- ice: introduce ice_base_incval function (Ivan Vecera) [2062343]
+- ice: xsk: fix cleaned_count setting (Ivan Vecera) [2062343]
+- ice: xsk: allow empty Rx descriptors on XSK ZC data path (Ivan Vecera) [2062343]
+- ice: xsk: allocate separate memory for XDP SW ring (Ivan Vecera) [2062343]
+- ice: xsk: return xsk buffers back to pool when cleaning the ring (Ivan Vecera) [2062343]
+- ice: use modern kernel API for kick (Ivan Vecera) [2062343]
+- ice: tighter control over VSI_DOWN state (Ivan Vecera) [2062343]
+- ice: use prefetch methods (Ivan Vecera) [2062343]
+- ice: update to newer kernel API (Ivan Vecera) [2062343]
+- ice: support immediate firmware activation via devlink reload (Ivan Vecera) [2062343]
+- ice: reduce time to read Option ROM CIVD data (Ivan Vecera) [2062343]
+- ice: move ice_devlink_flash_update and merge with ice_flash_pldm_image (Ivan Vecera) [2062343]
+- ice: move and rename ice_check_for_pending_update (Ivan Vecera) [2062343]
+- ice: devlink: add shadow-ram region to snapshot Shadow RAM (Ivan Vecera) [2062343]
+- ice: Remove unused ICE_FLOW_SEG_HDRS_L2_MASK (Ivan Vecera) [2062343]
+- ice: Remove unnecessary casts (Ivan Vecera) [2062343]
+- ice: Propagate error codes (Ivan Vecera) [2062343]
+- ice: Remove excess error variables (Ivan Vecera) [2062343]
+- ice: Cleanup after ice_status removal (Ivan Vecera) [2062343]
+- ice: Remove enum ice_status (Ivan Vecera) [2062343]
+- ice: Use int for ice_status (Ivan Vecera) [2062343]
+- ice: Remove string printing for ice_status (Ivan Vecera) [2062343]
+- ice: Refactor status flow for DDP load (Ivan Vecera) [2062343]
+- ice: Refactor promiscuous functions (Ivan Vecera) [2062343]
+- ice: refactor PTYPE validating (Ivan Vecera) [2062343]
+- ice: Add package PTYPE enable information (Ivan Vecera) [2062343]
+- ice: safer stats processing (Ivan Vecera) [2062343]
+- ice: fix adding different tunnels (Ivan Vecera) [2062343]
+- ice: fix choosing UDP header type (Ivan Vecera) [2062343]
+- ice: ignore dropped packets during init (Ivan Vecera) [2062343]
+- ice: rearm other interrupt cause register after enabling VFs (Ivan Vecera) [2062343]
+- net/ice: Remove unused enum (Ivan Vecera) [2062343]
+- net/ice: Fix boolean assignment (Ivan Vecera) [2062343]
+- net/ice: Add support for enable_iwarp and enable_roce devlink param (Ivan Vecera) [2062343]
+- ice: avoid bpf_prog refcount underflow (Ivan Vecera) [2062343]
+- ice: fix vsi->txq_map sizing (Ivan Vecera) [2062343]
+- ice: Hide bus-info in ethtool for PRs in switchdev mode (Ivan Vecera) [2062343]
+- ice: Clear synchronized addrs when adding VFs in switchdev mode (Ivan Vecera) [2062343]
+- ice: fix error return code in ice_get_recp_frm_fw() (Ivan Vecera) [2062343]
+- ice: Fix clang -Wimplicit-fallthrough in ice_pull_qvec_from_rc() (Ivan Vecera) [2062343]
+- ice: Add support to print error on PHY FW load failure (Ivan Vecera) [2062343]
+- ice: Add support for changing MTU on PR in switchdev mode (Ivan Vecera) [2062343]
+- ice: send correct vc status in switchdev (Ivan Vecera) [2062343]
+- ice: support for GRE in eswitch (Ivan Vecera) [2062343]
+- ice: low level support for tunnels (Ivan Vecera) [2062343]
+- ice: VXLAN and Geneve TC support (Ivan Vecera) [2062343]
+- ice: support for indirect notification (Ivan Vecera) [2062343]
+- ice: Add tc-flower filter support for channel (Ivan Vecera) [2062343]
+- ice: enable ndo_setup_tc support for mqprio_qdisc (Ivan Vecera) [2062343]
+- ice: Add infrastructure for mqprio support via ndo_setup_tc (Ivan Vecera) [2062343]
+- ice: fix an error code in ice_ena_vfs() (Ivan Vecera) [2062343]
+- ice: use devm_kcalloc() instead of devm_kzalloc() (Ivan Vecera) [2062343]
+- ice: Make use of the helper function devm_add_action_or_reset() (Ivan Vecera) [2062343]
+- ice: Refactor PR ethtool ops (Ivan Vecera) [2062343]
+- ice: Forbid trusted VFs in switchdev mode (Ivan Vecera) [2062343]
+- ice: Manage act flags for switchdev offloads (Ivan Vecera) [2062343]
+- ice: introduce XDP_TX fallback path (Ivan Vecera) [2062343]
+- ice: optimize XDP_TX workloads (Ivan Vecera) [2062343]
+- ice: propagate xdp_ring onto rx_ring (Ivan Vecera) [2062343]
+- ice: do not create xdp_frame on XDP_TX (Ivan Vecera) [2062343]
+- ice: unify xdp_rings accesses (Ivan Vecera) [2062343]
+- ice: ndo_setup_tc implementation for PR (Ivan Vecera) [2062343]
+- ice: ndo_setup_tc implementation for PF (Ivan Vecera) [2062343]
+- ice: Allow changing lan_en and lb_en on all kinds of filters (Ivan Vecera) [2062343]
+- ice: cleanup rules info (Ivan Vecera) [2062343]
+- ice: allow deleting advanced rules (Ivan Vecera) [2062343]
+- ice: allow adding advanced rules (Ivan Vecera) [2062343]
+- ice: create advanced switch recipe (Ivan Vecera) [2062343]
+- ice: manage profiles and field vectors (Ivan Vecera) [2062343]
+- ice: implement low level recipes functions (Ivan Vecera) [2062343]
+- ice: add port representor ethtool ops and stats (Ivan Vecera) [2062343]
+- ice: switchdev slow path (Ivan Vecera) [2062343]
+- ice: rebuild switchdev when resetting all VFs (Ivan Vecera) [2062343]
+- ice: enable/disable switchdev when managing VFs (Ivan Vecera) [2062343]
+- ice: introduce new type of VSI for switchdev (Ivan Vecera) [2062343]
+- ice: set and release switchdev environment (Ivan Vecera) [2062343]
+- net: export metadata_dst_free() (Ivan Vecera) [2062343]
+- ice: allow changing lan_en and lb_en on dflt rules (Ivan Vecera) [2062343]
+- ice: manage VSI antispoof and destination override (Ivan Vecera) [2062343]
+- ice: allow process VF opcodes in different ways (Ivan Vecera) [2062343]
+- ice: introduce VF port representor (Ivan Vecera) [2062343]
+- ice: Move devlink port to PF/VF struct (Ivan Vecera) [2062343]
+- ice: support basic E-Switch mode control (Ivan Vecera) [2062343]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Ivan Vecera) [2062343]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Ivan Vecera) [2062343]
+- ice: Use xdp_buf instead of rx_buf for xsk zero-copy (Ivan Vecera) [2062343]
+- ice: fix FDIR init missing when reset VF (Ivan Vecera) [2062343]
+- intel: Remove rcu_read_lock() around XDP program invocation (Ivan Vecera) [2062343]
+- intel: Update drivers to use ethtool_sprintf (Ivan Vecera) [2062343]
+- ice: fix conversion to new udp_tunnel infrastructure (Ivan Vecera) [2062343]
+- intel-ethernet: clean up W=1 warnings in kdoc (Ivan Vecera) [2062343]
+- PCI: Use 'pci_channel_state_t' instead of 'enum pci_channel_state' (Ivan Vecera) [2062343]
+- treewide: Use sizeof_field() macro (Ivan Vecera) [2062343]
+- devlink: Add 'enable_iwarp' generic device param (Ivan Vecera) [2062343]
+- devlink: Add new "enable_vnet" generic device param (Ivan Vecera) [2062343]
+- devlink: Add new "enable_rdma" generic device param (Ivan Vecera) [2062343]
+- devlink: Add new "enable_eth" generic device param (Ivan Vecera) [2062343]
+- gfs2: dequeue iopen holder in gfs2_inode_lookup error (Bob Peterson) [2061665]
+- redhat/configs: Increase CONFIG_LOCKDEP_CHAINS_BITS from 16 to 17 (Waiman Long) [2057339]
+- redhat: spec: trigger dracut when modules are installed separately (Jan Stancek) [2060237 2016948]
+
+* Wed Mar 23 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-375.el8]
+- makefile: Add dist-* targets (Prarit Bhargava)
+- Fonts: Replace discarded const qualifier (Nico Pache) [1904374]
+- Fonts: Support FONT_EXTRA_WORDS macros for built-in fonts (Nico Pache) [1904374]
+- fbdev, newport_con: Move FONT_EXTRA_WORDS macros into linux/font.h (Nico Pache) [1904374]
+- x86/cpu: Drop spurious underscore from RAPTOR_LAKE #define (Prarit Bhargava) [2040021]
+- x86/cpu: Add Raptor Lake to Intel family (Prarit Bhargava) [2040021]
+- powerpc/64: Move paca allocation later in boot (Desnes A. Nunes do Rosario) [2016335]
+- powerpc/prom: fix early DEBUG messages (Desnes A. Nunes do Rosario) [2016335]
+- powerpc: Set crashkernel offset to mid of RMA region (Desnes A. Nunes do Rosario) [2016335]
+- KVM: x86/mmu: Don't advance iterator after restart due to yielding (Nico Pache) [2058907]
+- igb: refactor XDP registration (Corinna Vinschen) [2040171]
+- igc: avoid kernel warning when changing RX ring parameters (Corinna Vinschen) [2040171]
+- scsi: qedi: Fix cmd_cleanup_cmpl counter mismatch issue (Nilesh Javali) [2054565]
+- EDAC/amd64: Save max number of controllers for F19 M70 (Aristeu Rozanski) [2064285]
+- CI: Use 8.6-rt branch for rhel8 realtime_check (Chris White)
+- blk-mq: avoid extending delays of active hctx from blk_mq_delay_run_hw_queues (Ming Lei) [2046525]
+- tipc: fix incorrect order of state message data sanity check (Xin Long) [2048971]
+- tipc: improve size validations for received domain records (Xin Long) [2048971] {CVE-2022-0435}
+- efi/x86: Call efi_parse_options() from efi_main() (Lenny Szubowicz) [2049233]
+
+* Mon Mar 21 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-374.el8]
+- net/mlx5e: TC, Remove redundant error logging (Amir Tzin) [2023907]
+- net/mlx5: DR, Warn on failure to destroy objects due to refcount (Amir Tzin) [2022325]
+- net/mlx5: DR, Add support for dumping steering info (Amir Tzin) [2022325]
+- net/mlx5: DR, Add missing reserved fields to dr_match_param (Amir Tzin) [2022325]
+- net/mlx5: DR, Add check for flex parser ID value (Amir Tzin) [2022325]
+- net/mlx5: DR, Rename list field in matcher struct to list_node (Amir Tzin) [2022325]
+- net/mlx5: DR, Remove unused struct member in matcher (Amir Tzin) [2022325]
+- net/mlx5: DR, Fix error flow in creating matcher (Amir Tzin) [2022325]
+- net/mlx5e: Avoid implicit modify hdr for decap drop rule (Amir Tzin) [2015434]
+- net/mlx5e: TC, Fix memory leak with rules with internal port (Amir Tzin) [2015434]
+- net/mlx5e: Fix skb memory leak when TC classifier action offloads are disabled (Amir Tzin) [2015434]
+- net/mlx5: Fix some error handling paths in 'mlx5e_tc_add_fdb_flow()' (Amir Tzin) [2015434]
+- net/mlx5: E-Switch, Check group pointer before reading bw_share value (Amir Tzin) [2015434]
+- net/mlx5: E-Switch, fix single FDB creation on BlueField (Amir Tzin) [2015434]
+- net/mlx5: E-switch, Respect BW share of the new group (Amir Tzin) [2015434]
+- net/mlx5: DR, Fix check for unsupported fields in match param (Amir Tzin) [2015434]
+- net/mlx5: E-Switch, rebuild lag only when needed (Amir Tzin) [2015434]
+- net/mlx5e: Delete forward rule for ct or sample action (Amir Tzin) [2015434]
+- net/mlx5: E-Switch, Use indirect table only if all destinations support it (Amir Tzin) [2015434]
+- net/mlx5: Support internal port as decap route device (Amir Tzin) [2015434]
+- net/mlx5e: Term table handling of internal port rules (Amir Tzin) [2015434]
+- net/mlx5e: Add indirect tc offload of ovs internal port (Amir Tzin) [2015434]
+- net/{mlx5|nfp|bnxt}: Remove unnecessary RTNL lock assert (Amir Tzin) [2015434]
+- net/mlx5e: Offload internal port as encap route device (Amir Tzin) [2015434]
+- net/mlx5e: Offload tc rules that redirect to ovs internal port (Amir Tzin) [2015434]
+- net/mlx5e: Accept action skbedit in the tc actions list (Amir Tzin) [2015434]
+- net/mlx5: E-Switch, Add ovs internal port mapping to metadata support (Amir Tzin) [2015434]
+- net/mlx5e: Use generic name for the forwarding dev pointer (Amir Tzin) [2015434]
+- net/mlx5e: Refactor rx handler of represetor device (Amir Tzin) [2015434]
+- net/mlx5: DR, Add check for unsupported fields in match param (Amir Tzin) [2015434]
+- net/mlx5: Allow skipping counter refresh on creation (Amir Tzin) [2015434]
+- net/mlx5e: IPsec: Refactor checksum code in tx data path (Amir Tzin) [2015434]
+- net/mlx5: CT: Remove warning of ignore_flow_level support for VFs (Amir Tzin) [2015434]
+- net/mlx5: Add esw assignment back in mlx5e_tc_sample_unoffload() (Amir Tzin) [2015434]
+- net/mlx5: Bridge, fix uninitialized variable usage (Amir Tzin) [2015434]
+- net/mlx5: Lag, don't update lag if lag isn't supported (Amir Tzin) [2015434]
+- net/mlx5: E-switch, Return correct error code on group creation failure (Amir Tzin) [2015434]
+- net/mlx5: Bridge, support LAG (Amir Tzin) [2015434]
+- net/mlx5: Bridge, allow merged eswitch connectivity (Amir Tzin) [2015434]
+- net/mlx5: Bridge, extract FDB delete notification to function (Amir Tzin) [2015434]
+- net/mlx5: Bridge, identify port by vport_num+esw_owner_vhca_id pair (Amir Tzin) [2015434]
+- net/mlx5: Bridge, obtain core device from eswitch instead of priv (Amir Tzin) [2015434]
+- net/mlx5: Bridge, release bridge in same function where it is taken (Amir Tzin) [2015434]
+- net/mlx5: Lag, Create shared FDB when in switchdev mode (Amir Tzin) [2015434]
+- net/mlx5: E-Switch, add logic to enable shared FDB (Amir Tzin) [2015434]
+- net/mlx5: Lag, properly lock eswitch if needed (Amir Tzin) [2015434]
+- net/mlx5: Add send to vport rules on paired device (Amir Tzin) [2015434]
+- net/mlx5: E-Switch, Add event callback for representors (Amir Tzin) [2015434]
+- net/mlx5e: Use shared mappings for restoring from metadata (Amir Tzin) [2015434]
+- net/mlx5e: Add an option to create a shared mapping (Amir Tzin) [2015434]
+- net/mlx5: E-Switch, set flow source for send to uplink rule (Amir Tzin) [2015434]
+- RDMA/mlx5: Add shared FDB support (Amir Tzin) [2015434]
+- {net, RDMA}/mlx5: Extend send to vport rules (Amir Tzin) [2015434]
+- RDMA/mlx5: Fill port info based on the relevant eswitch (Amir Tzin) [2015434]
+- net/mlx5: Lag, add initial logic for shared FDB (Amir Tzin) [2015434]
+- net/mlx5: Return mdev from eswitch (Amir Tzin) [2015434]
+- net/mlx5: E-switch, Add QoS tracepoints (Amir Tzin) [2015434]
+- net/mlx5: E-switch, Allow to add vports to rate groups (Amir Tzin) [2015434]
+- net/mlx5: E-switch, Allow setting share/max tx rate limits of rate groups (Amir Tzin) [2015434]
+- net/mlx5: E-switch, Introduce rate limiting groups API (Amir Tzin) [2015434]
+- net/mlx5: E-switch, Enable devlink port tx_{share|max} rate control (Amir Tzin) [2015434]
+- net/mlx5: E-switch, Move QoS related code to dedicated file (Amir Tzin) [2015434]
+- net/mlx5e: TC, Support sample offload action for tunneled traffic (Amir Tzin) [2015434]
+- net/mlx5e: TC, Restore tunnel info for sample offload (Amir Tzin) [2015434]
+- net/mlx5e: TC, Remove CONFIG_NET_TC_SKB_EXT dependency when restoring tunnel (Amir Tzin) [2015434]
+- net/mlx5e: Refactor ct to use post action infrastructure (Amir Tzin) [2015434]
+- net/mlx5e: Introduce post action infrastructure (Amir Tzin) [2015434]
+- net/mlx5e: CT, Use xarray to manage fte ids (Amir Tzin) [2015434]
+- net/mlx5e: Move sample attribute to flow attribute (Amir Tzin) [2015434]
+- net/mlx5e: Move esw/sample to en/tc/sample (Amir Tzin) [2015434]
+- net/mlx5e: Remove mlx5e dependency from E-Switch sample (Amir Tzin) [2015434]
+- net/mlx5: DR, Fix querying eswitch manager vport for ECPF (Amir Tzin) [2018097]
+- net/mlx5: DR, Handle eswitch manager and uplink vports separately (Amir Tzin) [2018097]
+- net/mlx5: DR, Add missing string for action type SAMPLER (Amir Tzin) [2018097]
+- net/mlx5: DR, init_next_match only if needed (Amir Tzin) [2018097]
+- net/mlx5: DR, Increase supported num of actions to 32 (Amir Tzin) [2018097]
+- net/mlx5: DR, Add support for SF vports (Amir Tzin) [2018097]
+- net/mlx5: DR, Support csum recalculation flow table on SFs (Amir Tzin) [2018097]
+- net/mlx5: DR, Align error messages for failure to obtain vport caps (Amir Tzin) [2018097]
+- net/mlx5: DR, Add missing query for vport 0 (Amir Tzin) [2018097]
+- net/mlx5: DR, Replace local WIRE_PORT macro with the existing MLX5_VPORT_UPLINK (Amir Tzin) [2018097]
+- scsi: lpfc: Fix pt2pt NVMe PRLI reject LOGO loop (Dick Kennedy) [1943202]
+- nvme-tcp: change target from tech-preview to unmaintained (John Meneghini) [2061577]
+- drm/amd/display: Don't reinitialize DMCUB on s0ix resume (Karol Herbst) [2059680]
+- tcp: Add snd_wnd to TCP_INFO (Davide Caratti) [2056608]
+- tcp: Add TCP_INFO counter for packets received out-of-order (Davide Caratti) [2056608]
+- net/mlx5: Move MODIFY_RQT command to ignore list in internal error state (Amir Tzin) [1982236]
+- net/mlx5e: Add TX max rate support for MQPRIO channel mode (Amir Tzin) [1982236]
+- net/mlx5e: Specify SQ stats struct for mlx5e_open_txqsq() (Amir Tzin) [1982236]
+- net/mlx5e: Allow only complete TXQs partition in MQPRIO channel mode (Amir Tzin) [1982236]
+- net/mlx5e: Mutually exclude setting of TX-port-TS and MQPRIO in channel mode (Amir Tzin) [1982236]
+- net/mlx5e: Fix condition when retrieving PTP-rqn (Amir Tzin) [1982236]
+- net/mlx5: Fix inner TTC table creation (Amir Tzin) [1982236]
+- net/mlx5e: Fix division by 0 in mlx5e_select_queue for representors (Amir Tzin) [1982236]
+- net/mlx5e: Improve MQPRIO resiliency (Amir Tzin) [1982236]
+- net/mlx5e: Support MQPRIO channel mode (Amir Tzin) [1982236]
+- net/mlx5e: Handle errors of netdev_set_num_tc() (Amir Tzin) [1982236]
+- net/mlx5e: Maintain MQPRIO mode parameter (Amir Tzin) [1982236]
+- net/mlx5e: Abstract MQPRIO params (Amir Tzin) [1982236]
+- net/mlx5e: Support flow classification into RSS contexts (Amir Tzin) [1982236]
+- net/mlx5e: Support multiple RSS contexts (Amir Tzin) [1982236]
+- net/mlx5e: Dynamically allocate TIRs in RSS contexts (Amir Tzin) [1982236]
+- net/mlx5e: Convert RSS to a dedicated object (Amir Tzin) [1982236]
+- net/mlx5e: Introduce abstraction of RSS context (Amir Tzin) [1982236]
+- net/mlx5e: Introduce TIR create/destroy API in rx_res (Amir Tzin) [1982236]
+- net/mlx5e: Do not try enable RSS when resetting indir table (Amir Tzin) [1982236]
+- net/mlx5: Embed mlx5_ttc_table (Amir Tzin) [1982236]
+- net/mlx5: Move TTC logic to fs_ttc (Amir Tzin) [1982236]
+- net/mlx5e: Decouple TTC logic from mlx5e (Amir Tzin) [1982236]
+- net/mlx5e: Rename some related TTC args and functions (Amir Tzin) [1982236]
+- net/mlx5e: Rename traffic type enums (Amir Tzin) [1982236]
+- net/mlx5e: Allocate the array of channels according to the real max_nch (Amir Tzin) [1982236]
+- net/mlx5e: Hide all implementation details of mlx5e_rx_res (Amir Tzin) [1982236]
+- net/mlx5e: Introduce mlx5e_channels API to get RQNs (Amir Tzin) [1982236]
+- net/mlx5e: Use a new initializer to build uniform indir table (Amir Tzin) [1982236]
+- net/mlx5e: Use the new TIR API for kTLS (Amir Tzin) [1982236]
+- net/mlx5e: Move management of indir traffic types to rx_res (Amir Tzin) [1982236]
+- net/mlx5e: Convert TIR to a dedicated object (Amir Tzin) [1982236]
+- net/mlx5e: Create struct mlx5e_rss_params_hash (Amir Tzin) [1982236]
+- net/mlx5e: Remove mdev from mlx5e_build_indir_tir_ctx_common() (Amir Tzin) [1982236]
+- net/mlx5e: Remove lro_param from mlx5e_build_indir_tir_ctx_common() (Amir Tzin) [1982236]
+- net/mlx5e: Remove mlx5e_priv usage from mlx5e_build_*tir_ctx*() (Amir Tzin) [1982236]
+- net/mlx5e: Use mlx5e_rqt_get_rqtn to access RQT hardware id (Amir Tzin) [1982236]
+- net/mlx5e: Take RQT out of TIR and group RX resources (Amir Tzin) [1982236]
+- net/mlx5e: Move RX resources to a separate struct (Amir Tzin) [1982236]
+- net/mlx5e: Move mlx5e_build_rss_params() call to init_rx (Amir Tzin) [1982236]
+- net/mlx5e: Convert RQT to a dedicated object (Amir Tzin) [1982236]
+- net/mlx5e: Check if inner FT is supported outside of create/destroy functions (Amir Tzin) [1982236]
+- net/mlx5: Take TIR destruction out of the TIR list lock (Amir Tzin) [1982236]
+- PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset (Myron Stowe) [2060122]
+- PCI/portdrv: Rename pm_iter() to pcie_port_device_iter() (Myron Stowe) [2060122]
+- iommu/vt-d: Fix double list_add when enabling VMD in scalable mode (Jerry Snitselaar) [2062094]
+- redhat/configs: Disable CONFIG_SENSORS_NCT6683 in RHEL for arm/aarch64 (Dean Nelson) [2059695]
+- redhat: drop the -sha512 suffix from default rhpkg invocation (Jarod Wilson)
+- sysctl: return -EINVAL if val violates minmax (Rafael Aquini) [2062571]
+- kernel/sysctl.c: switch to bitmap_zalloc() (Rafael Aquini) [2062571]
+- netlabel: remove unused parameter in netlbl_netlink_auditinfo() (William Zhao) [1985319]
+- netlabel: Fix memory leak in netlbl_mgmt_add_common (William Zhao) [1985319]
+- bpftool: Fix indent in option lists in the documentation (Yauheni Kaliuta) [2014861]
+- libbpf: Fix memleak in libbpf_netlink_recv() (Yauheni Kaliuta) [2014861]
+- libbpf: Use dynamically allocated buffer when receiving netlink messages (Yauheni Kaliuta) [2014861]
+- libbpf: Clean gen_loader's attach kind. (Yauheni Kaliuta) [2014861]
+- powerpc/bpf: Use bctrl for making function calls (Jiri Olsa) [2014861]
+- powerpc/signal: Use PPC_RAW_xx() macros (Jiri Olsa) [2014861]
+- powerpc/ebpf64: Use PPC_RAW_MFLR() (Jiri Olsa) [2014861]
+- powerpc/opcodes: Add shorter macros for registers for use with PPC_RAW_xx() (Jiri Olsa) [2014861]
+- lib/test: fix spelling mistakes (Jiri Olsa) [2014861]
+- tracepoint: Add tracepoint_probe_register_may_exist() for BPF tracing (Jiri Olsa) [2014861]
+- bpf: Allow bpf_get_current_ancestor_cgroup_id for tracing (Jiri Olsa) [2014861]
+- docs: bpf: bpf_lsm.rst: avoid using ReST :doc:`foo` markup (Jiri Olsa) [2014861]
+- bpf, docs: Add llvm_reloc.rst to explain llvm bpf relocations (Jiri Olsa) [2014861]
+- bpf, arm64: Remove redundant switch case about BPF_DIV and BPF_MOD (Jiri Olsa) [2014861]
+- bpf, arm64: Replace STACK_ALIGN() with round_up() to align stack size (Jiri Olsa) [2014861]
+- selftests, bpf: Test that dead ldx_w insns are accepted (Jiri Olsa) [2014861]
+- bpf, selftests: Add test cases for pointer alu from multiple paths (Jiri Olsa) [2014861]
+- bpf: Selftest to verify mixing bpf2bpf calls and tailcalls with insn patch (Jiri Olsa) [2014861]
+- selftests/bpf: Fix ringbuf test fetching map FD (Jiri Olsa) [2014861]
+- selftests/bpf: Whitelist test_progs.h from .gitignore (Jiri Olsa) [2014861]
+- selftests, bpf: Make docs tests fail more reliably (Jiri Olsa) [2014861]
+- selftests/bpf: Turn on libbpf 1.0 mode and fix all IS_ERR checks (Jiri Olsa) [2014861]
+- selftests/bpf: Add bpf_lookup_and_delete_elem tests (Jiri Olsa) [2014861]
+- selftests/bpf: Convert test trace_printk to lskel. (Jiri Olsa) [2014861]
+- selftests/bpf: Convert test printk to use rodata. (Jiri Olsa) [2014861]
+- selftests/bpf: Convert atomics test to light skeleton. (Yauheni Kaliuta) [2014861]
+- selftests/bpf: Convert few tests to light skeleton. (Jiri Olsa) [2014861]
+- selftests/bpf: Test for btf_load command. (Jiri Olsa) [2014861]
+- selftests/bpf: Test for syscall program type (Jiri Olsa) [2014861]
+- libbpf: Add selftests for TC-BPF management API (Jiri Olsa) [2014861]
+- selftests/bpf: Validate skeleton gen handles skipped fields (Jiri Olsa) [2014861]
+- selftests/bpf: Stop using static variables for passing data to/from user-space (Jiri Olsa) [2014861]
+- tools: bpftool: Document and add bash completion for -L, -B options (Jiri Olsa) [2014861]
+- tools: bpftool: Update and synchronise option list in doc and help msg (Jiri Olsa) [2014861]
+- bpftool: Remove unused includes to <bpf/bpf_gen_internal.h> (Jiri Olsa) [2014861]
+- powerpc/bpf: Fix write protecting JIT code (Jiri Olsa) [2014861]
+- libbpf: Fix lookup_and_delete_elem_flags error reporting (Jiri Olsa) [2014861]
+- bpftool: Check malloc return value in mount_bpffs_for_pin (Jiri Olsa) [2014861]
+- tools: bpf: Fix error in 'make -C tools/ bpf_install' (Jiri Olsa) [2014861]
+- bpftool: Properly close va_list 'ap' by va_end() on error (Jiri Olsa) [2014861]
+- bpf: Fix libelf endian handling in resolv_btfids (Jiri Olsa) [2014861]
+- tools/bpftool: Fix error return code in do_batch() (Jiri Olsa) [2014861]
+- tools/bpftool: Fix cross-build (Jiri Olsa) [2014861]
+- bpftool: Set errno on skeleton failures and propagate errors (Jiri Olsa) [2014861]
+- bpftool: Use syscall/loader program in "prog load" and "gen skeleton" command. (Jiri Olsa) [2014861]
+- bpftool: Stop emitting static variables in BPF skeleton (Jiri Olsa) [2014861]
+- bpftool: Strip const/volatile/restrict modifiers from .bss and .data vars (Jiri Olsa) [2014861]
+- bpf: Add missing bpf_read_[un]lock_trace() for syscall program (Jiri Olsa) [2014861]
+- libbpf: Fix skel_internal.h to set errno on loader retval < 0 (Jiri Olsa) [2014861]
+- libbpf: Fix segfault in light skeleton for objects without BTF (Jiri Olsa) [2014861]
+- libbpf: Return non-null error on failures in libbpf_find_prog_btf_id() (Jiri Olsa) [2014861]
+- libbpf, doc: Eliminate warnings in libbpf_naming_convention (Jiri Olsa) [2014861]
+- net, core: Allow netdev_lower_get_next_private_rcu in bh context (Jiri Olsa) [2014861]
+- samples/bpf: Fix the error return code of xdp_redirect's main() (Jiri Olsa) [2014861]
+- samples/bpf: Fix Segmentation fault for xdp_redirect command (Jiri Olsa) [2014861]
+- samples/bpf: Add missing option to xdp_sample_pkts usage (Jiri Olsa) [2014861]
+- samples/bpf: Add missing option to xdp_fwd usage (Jiri Olsa) [2014861]
+- samples, bpf: Suppress compiler warning (Jiri Olsa) [2014861]
+- file: Rename __close_fd to close_fd and remove the files parameter (Jiri Olsa) [2014861]
+- bpf: Fix ringbuf helper function compatibility (Jiri Olsa) [2014861]
+- bpf: Clear zext_dst of dead insns (Jiri Olsa) [2014861]
+- bpf: Add rcu_read_lock in bpf_get_current_[ancestor_]cgroup_id() helpers (Jiri Olsa) [2014861]
+- bpf, core: Fix kernel-doc notation (Jiri Olsa) [2014861]
+- libbpf: Do not close un-owned FD 0 on errors (Jiri Olsa) [2014861]
+- libbpf: Fix probe for BPF_PROG_TYPE_CGROUP_SOCKOPT (Jiri Olsa) [2014861]
+- s390/bpf: Perform r1 range checking before accessing jit->seen_reg[r1] (Jiri Olsa) [2014861]
+- libbpf: Restore errno return for functions that were already returning it (Jiri Olsa) [2014861]
+- powerpc/bpf: Write protect JIT code (Jiri Olsa) [2014861]
+- powerpc/bpf: Remove bpf_jit_free() (Jiri Olsa) [2014861]
+- bpf: Fix integer overflow in argument calculation for bpf_map_area_alloc (Jiri Olsa) [2014861]
+- bpf: Fix false positive kmemleak report in bpf_ringbuf_area_alloc() (Jiri Olsa) [2014861]
+- bpf: Allow RCU-protected lookups to happen from bh context (Jiri Olsa) [2014861]
+- bpf, x86: Remove unused cnt increase from EMIT macro (Jiri Olsa) [2014861]
+- libbpf: Switch to void * casting in netlink helpers (Jiri Olsa) [2014861]
+- libbpf: Add request buffer type for netlink messages (Jiri Olsa) [2014861]
+- libbpf: Add extra BPF_PROG_TYPE check to bpf_object__probe_loading (Jiri Olsa) [2014861]
+- bpf: Add documentation for libbpf including API autogen (Jiri Olsa) [2014861]
+- bpf: Fix up register-based shifts in interpreter to silence KUBSAN (Jiri Olsa) [2014861]
+- libbpf: Fail compilation if target arch is missing (Jiri Olsa) [2014861]
+- bpf: Fix typo in kernel/bpf/bpf_lsm.c (Jiri Olsa) [2014861]
+- bpf: Support BPF_FUNC_get_socket_cookie() for BPF_PROG_TYPE_SK_REUSEPORT. (Jiri Olsa) [2014861]
+- libbpf: Set NLM_F_EXCL when creating qdisc (Jiri Olsa) [2014861]
+- libbpf: Remove unneeded check for flags during tc detach (Jiri Olsa) [2014861]
+- libbpf: Simplify the return expression of bpf_object__init_maps function (Jiri Olsa) [2014861]
+- libbpf: Fix pr_warn type warnings on 32bit (Jiri Olsa) [2014861]
+- libbpf: Install skel_internal.h header used from light skeletons (Jiri Olsa) [2014861]
+- libbpf: Refactor header installation portions of Makefile (Jiri Olsa) [2014861]
+- libbpf: Move few APIs from 0.4 to 0.5 version (Jiri Olsa) [2014861]
+- bpf, tnums: Provably sound, faster, and more precise algorithm for tnum_mul (Jiri Olsa) [2014861]
+- libbpf: Move BPF_SEQ_PRINTF and BPF_SNPRINTF to bpf_helpers.h (Jiri Olsa) [2014861]
+- libbpf: Streamline error reporting for high-level APIs (Jiri Olsa) [2014861]
+- libbpf: Streamline error reporting for low-level APIs (Jiri Olsa) [2014861]
+- libbpf: Add libbpf_set_strict_mode() API to turn on libbpf 1.0 behaviors (Jiri Olsa) [2014861]
+- bpf: Fix spelling mistakes (Jiri Olsa) [2014861]
+- bpf: Extend libbpf with bpf_map_lookup_and_delete_elem_flags (Jiri Olsa) [2014861]
+- bpf: Add lookup_and_delete_elem support to hashtab (Jiri Olsa) [2014861]
+- libbpf: Skip bpf_object__probe_loading for light skeleton (Jiri Olsa) [2014861]
+- bpf: Make some symbols static (Jiri Olsa) [2014861]
+- bpf: Add cmd alias BPF_PROG_RUN (Jiri Olsa) [2014861]
+- libbpf: Introduce bpf_map__initial_value(). (Jiri Olsa) [2014861]
+- libbpf: Cleanup temp FDs when intermediate sys_bpf fails. (Jiri Olsa) [2014861]
+- libbpf: Generate loader program out of BPF ELF file. (Jiri Olsa) [2014861]
+- libbpf: Preliminary support for fd_idx (Jiri Olsa) [2014861]
+- libbpf: Add bpf_object pointer to kernel_supports(). (Jiri Olsa) [2014861]
+- libbpf: Change the order of data and text relocations. (Jiri Olsa) [2014861]
+- bpf: Add bpf_sys_close() helper. (Jiri Olsa) [2014861]
+- bpf: Add bpf_btf_find_by_name_kind() helper. (Jiri Olsa) [2014861]
+- bpf: Introduce fd_idx (Jiri Olsa) [2014861]
+- bpf: Make btf_load command to be bpfptr_t compatible. (Jiri Olsa) [2014861]
+- libbpf: Support for syscall program type (Jiri Olsa) [2014861]
+- bpf: Prepare bpf syscall to be used from kernel and user space. (Jiri Olsa) [2014861]
+- bpf: Introduce bpfptr_t user/kernel pointer. (Jiri Olsa) [2014861]
+- bpf: Introduce bpf_sys_bpf() helper and program type. (Jiri Olsa) [2014861]
+- libbpf: Add low level TC-BPF management API (Jiri Olsa) [2014861]
+- libbpf: Add various netlink helpers (Jiri Olsa) [2014861]
+- libbpf: Reject static entry-point BPF programs (Jiri Olsa) [2014861]
+- libbpf: Reject static maps (Jiri Olsa) [2014861]
+- libbpf: Treat STV_INTERNAL same as STV_HIDDEN for functions (Jiri Olsa) [2014861]
+- libbpf: Add per-file linker opts (Jiri Olsa) [2014861]
+- bpf: verifier: Use copy_array for jmp_history (Jiri Olsa) [2014861]
+- bpf: verifier: Improve function state reallocation (Jiri Olsa) [2014861]
+
+* Thu Mar 17 2022 Jarod Wilson <jarod@redhat.com> [4.18.0-373.el8]
+- ice: fix getting UDP tunnel entry (Jonathan Toppins) [2015409]
+- ice: convert to new udp_tunnel infrastructure (Jonathan Toppins) [2015409]
+- selftests: kvm: Check whether SIDA memop fails for normal guests (Thomas Huth) [2050807]
+- KVM: s390: Return error on SIDA memop on normal guest (Thomas Huth) [2050807] {CVE-2022-0516}
+- lib/iov_iter: initialize "flags" in new pipe_buffer (Jan Stancek) [2060875] {CVE-2022-0847}
+- fget: clarify and improve __fget_files() implementation (Patrick Talbert) [2032303]
+- fget: check that the fd still exists after getting a ref to it (Patrick Talbert) [2032303] {CVE-2021-4083}
+- drm/ast: Create threshold values for AST2600 (Jocelyn Falempe) [2053358]
+- cgroup-v1: Correct privileges check in release_agent writes (Waiman Long) [2052167]
+- cgroup-v1: Require capabilities to set release_agent (Waiman Long) [2052167] {CVE-2022-0492}
+- spec: Fix separate tools build (Yauheni Kaliuta) [2056301]
+- net/mlx5: DR, Add support for update FTE (Amir Tzin) [2047231]
+- net/mlx5: DR, Improve rule tracking memory consumption (Amir Tzin) [2047231]
+- net/mlx5: DR, Remove rehash ctrl struct from dr_htbl (Amir Tzin) [2047231]
+- net/mlx5: DR, Remove HW specific STE type from nic domain (Amir Tzin) [2047231]
+- net/mlx5: DR, Merge DR_STE_SIZE enums (Amir Tzin) [2047231]
+- net/mlx5: DR, Skip source port matching on FDB RX domain (Amir Tzin) [2047231]
+- net/mlx5: DR, Add ignore_flow_level support for multi-dest flow tables (Amir Tzin) [2047231]
+- net/mlx5: DR, replace uintN_t with kernel-style types (Amir Tzin) [2047231]
+- net/mlx5: DR, Support IPv6 matching on flow label for STEv0 (Amir Tzin) [2047231]
+- net/mlx5: DR, Reduce print level for FT chaining level check (Amir Tzin) [2047231]
+- net/mlx5: DR, Warn and ignore SW steering rule insertion on QP err (Amir Tzin) [2047231]
+- net/mlx5: DR, Improve error flow in actions_build_ste_arr (Amir Tzin) [2047231]
+- net/mlx5: DR, Enable QP retransmission (Amir Tzin) [2047231]
+- net/mlx5: DR, Enable VLAN pop on TX and VLAN push on RX (Amir Tzin) [2047231]
+- net/mlx5: DR, Split modify VLAN state to separate pop/push states (Amir Tzin) [2047231]
+- net/mlx5: DR, Added support for REMOVE_HEADER packet reformat (Amir Tzin) [2047231]
+- net/mlx4_en: Resolve bad operstate value (Amir Tzin) [1982190]
+- net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() (Amir Tzin) [1982190]
+- RDMA/mlx4: Do not fail the registration on port stats (Amir Tzin) [1982190]
+- RDMA/mlx4: Return missed an error if device doesn't support steering (Amir Tzin) [1982190]
+- net/mlx4_en: Don't allow aRFS for encapsulated packets (Amir Tzin) [1982190]
+- mlx4: Fix missing error code in mlx4_load_one() (Amir Tzin) [1982190]
+- net/mlx4: Fix fall-through warning for Clang (Amir Tzin) [1982190]
+- mlx4: Remove rcu_read_lock() around XDP program invocation (Amir Tzin) [1982190]
+- IB/mlx4: Avoid field-overflowing memcpy() (Amir Tzin) [1982190]
+- RDMA/mlx4: Do not map the core_clock page to user space unless enabled (Amir Tzin) [1982190]
+- net/mlx4: Treat VFs fair when handling comm_channel_events (Amir Tzin) [1982190]
+- RDMA/mlx4: Remove an unused variable (Amir Tzin) [1982190]
+- megaraid_sas: Add new messaging - a fix (Tomas Henzl) [2055248]
+- HID: amd_sfh: Add interrupt handler to process interrupts (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Add functionality to clear interrupts (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Disable the interrupt for all command (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Correct the structure field name (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Handle amd_sfh work buffer in PM ops (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Add illuminance mask to limit ALS max value (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Increase sensor command timeout (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Update Copyright details (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: switch from 'pci_' to 'dev_' API (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Use dma_set_mask_and_coherent() (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: switch from 'pci_' to 'dma_' API (Benjamin Tissoires) [2054929]
+- dm stats: fix too short end duration_ns when using precise_timestamps (Benjamin Marzinski) [2057166]
+- dm: fix double accounting of flush with data (Benjamin Marzinski) [2057166]
+- dm: interlock pending dm_io and dm_wait_for_bios_completion (Benjamin Marzinski) [2057166]
+- x86/MCE/AMD, EDAC/mce_amd: Support non-uniform MCA bank type enumeration (Aristeu Rozanski) [2050410 2048786 2050412]
+- x86/MCE/AMD, EDAC/mce_amd: Add new SMCA bank types (Aristeu Rozanski) [2050410 2048786 2050412]
+- EDAC/amd64: Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh (Aristeu Rozanski) [2050410 2048786 2050412]
+- EDAC: Add RDDR5 and LRDDR5 memory types (Aristeu Rozanski) [2050410 2048786 2050412]
+- EDAC/amd64: Handle three rank interleaving mode (Aristeu Rozanski) [2050410 2048786 2050412]
+- EDAC/amd64: Set proper family type for Family 19h Models 20h-2Fh (Aristeu Rozanski) [2050410 2048786 2050412]
+- netfilter: nf_queue: handle socket prefetch (Florian Westphal) [2009786]
+- netfilter: nf_queue: fix possible use-after-free (Florian Westphal) [2009786]
+- selftests: netfilter: add nfqueue TCP_NEW_SYN_RECV socket race test (Florian Westphal) [2009786]
+- netfilter: nf_queue: don't assume sk is full socket (Florian Westphal) [2009786]
+- Enable HSA_AMD_SVM config (Donald Dutile) [2025123]
+- mm/memremap_pages: support multiple ranges per invocation (Donald Dutile) [2025123]
+- mm/memremap_pages: convert to 'struct range' (Donald Dutile) [2025123]
+- device-dax: add an allocation interface for device-dax instances (Donald Dutile) [2025123]
+- device-dax: make pgmap optional for instance creation (Donald Dutile) [2025123]
+- device-dax: move instance creation parameters to 'struct dev_dax_data' (Donald Dutile) [2025123]
+- device-dax: drop the dax_region.pfn_flags attribute (Donald Dutile) [2025123]
+- memremap: rename MEMORY_DEVICE_DEVDAX to MEMORY_DEVICE_GENERIC (Donald Dutile) [2025123]
+- PCI/P2PDMA: Introduce private pagemap structure (Donald Dutile) [2025123]
+- security: implement sctp_assoc_established hook in selinux (Ondrej Mosnacek) [2015525 2048251]
+- security: add sctp_assoc_established hook (Ondrej Mosnacek) [2015525 2048251]
+- security: call security_sctp_assoc_request in sctp_sf_do_5_1D_ce (Ondrej Mosnacek) [2015525 2048251]
+- security: pass asoc to sctp_assoc_request and sctp_sk_clone (Ondrej Mosnacek) [2015525 2048251]
+- net: sctp: Fix some typos (Ondrej Mosnacek) [2015525 2048251]
+- iwlwifi: mvm: read 6E enablement flags from DSM and pass to FW (Íñigo Huguet) [1923170 1936001]
+- net/mlx5: Lag, Make mlx5_lag_is_multipath() be static inline (Amir Tzin) [1982193]
+- net/mlx5e: nullify cq->dbg pointer in mlx5_debug_cq_remove() (Amir Tzin) [1982193]
+- net/mlx5: DR, Ignore modify TTL if device doesn't support it (Amir Tzin) [1982193 2028504]
+- net/mlx5: Warn for devlink reload when there are VFs alive (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix lower case macro prefix "mlx5_" to "MLX5_" (Amir Tzin) [1982193]
+- net/mlx5e: Fix wrong features assignment in case of error (Amir Tzin) [1982193]
+- net/mlx5e: Fix ICOSQ recovery flow for XSK (Amir Tzin) [1982193]
+- net/mlx5e: Fix interoperability between XSK and ICOSQ recovery flow (Amir Tzin) [1982193]
+- net/mlx5e: Wrap the tx reporter dump callback to extract the sq (Amir Tzin) [1982193]
+- net/mlx5: Fix tc max supported prio for nic mode (Amir Tzin) [1982193]
+- net/mlx5: Fix SF health recovery flow (Amir Tzin) [1982193]
+- net/mlx5: Fix error print in case of IRQ request failed (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix NULL vs IS_ERR checking in dr_domain_init_resources (Amir Tzin) [1982193]
+- mlx5: fix mlx5i_grp_sw_update_stats() stack usage (Amir Tzin) [1982193]
+- mlx5: fix psample_sample_packet link error (Amir Tzin) [1982193]
+- net/mlx5: Fix format-security build warnings (Amir Tzin) [1982193]
+- net/mlx5e: Fix missing IPsec statistics on uplink representor (Amir Tzin) [1982193]
+- net/mlx5e: IPsec: Fix Software parser inner l3 type setting in case of encapsulation (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, return error if encap isn't supported (Amir Tzin) [1982193]
+- net/mlx5: Lag, update tracker when state change event received (Amir Tzin) [1982193]
+- net/mlx5e: CT, Fix multiple allocations and memleak of mod acts (Amir Tzin) [1982193 2017675]
+- net/mlx5: Update error handler for UCTX and UMEM (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, Fix resetting of encap mode when entering switchdev (Amir Tzin) [1982193]
+- net/mlx5e: Wait for concurrent flow deletion during neigh/fib events (Amir Tzin) [1982193]
+- net/mlx5e: kTLS, Fix crash in RX resync flow (Amir Tzin) [1982193]
+- net/mlx5e: IPsec: Fix work queue entry ethernet segment checksum flags (Amir Tzin) [1982193]
+- net/mlx5e: IPsec: Fix a misuse of the software parser's fields (Amir Tzin) [1982193]
+- net/mlx5e: Fix vlan data lost during suspend flow (Amir Tzin) [1982193]
+- net/mlx5: Lag, change multipath and bonding to be mutually exclusive (Amir Tzin) [1982193]
+- net/mlx5: Lag, move lag destruction to a workqueue (Amir Tzin) [1982193]
+- RDMA/mlx5: Initialize the ODP xarray when creating an ODP MR (Amir Tzin) [1982193]
+- net/mlx5e: Mutually exclude RX-FCS and RX-port-timestamp (Amir Tzin) [1982193]
+- net/mlx5e: Switchdev representors are not vlan challenged (Amir Tzin) [1982193]
+- net/mlx5e: Fix memory leak in mlx5_core_destroy_cq() error path (Amir Tzin) [1982193]
+- net/mlx5: Fix cleanup of bridge delayed work (Amir Tzin) [1982193]
+- RDMA/mlx5: Set user priority for DCT (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix typo 'offeset' to 'offset' (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix vport number data type to u16 (Amir Tzin) [1982193]
+- net/mlx5e: Fix the presented RQ index in PTP stats (Amir Tzin) [1982193]
+- net/mlx5: Fix setting number of EQs of SFs (Amir Tzin) [1982193]
+- net/mlx5: Fix length of irq_index in chars (Amir Tzin) [1982193]
+- net/mlx5: Avoid generating event after PPS out in Real time mode (Amir Tzin) [1982193]
+- net/mlx5: Force round second at 1PPS out start time (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, Fix double allocation of acl flow counter (Amir Tzin) [1982193]
+- net/mlx5e: Keep the value for maximum number of channels in-sync (Amir Tzin) [1982193]
+- net/mlx5e: IPSEC RX, enable checksum complete (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix code indentation in dr_ste_v1 (Amir Tzin) [1982193]
+- RDMA/mlx5: Fix xlt_chunk_align calculation (Amir Tzin) [1982193]
+- RDMA/mlx5: Fix number of allocated XLT entries (Amir Tzin) [1982193]
+- net/mlx5e: Fix mutual exclusion between CQE compression and HW TS (Amir Tzin) [1982193]
+- net/mlx5: Fix potential sleeping in atomic context (Amir Tzin) [1982193]
+- net/mlx5: FWTrace, cancel work on alloc pd error flow (Amir Tzin) [1982193]
+- net/mlx5: DR, fix a potential use-after-free bug (Amir Tzin) [1982193]
+- net/mlx5e: Use correct eswitch for stack devices with lag (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, Set vhca id valid flag when creating indir fwd group (Amir Tzin) [1982193]
+- net/mlx5: Remove all auxiliary devices at the unregister event (Amir Tzin) [1982193]
+- net/mlx5: Lag, fix multipath lag activation (Amir Tzin) [1982193]
+- net/mlx5: Fix variable type to match 64bit (Amir Tzin) [1982193]
+- net/mlx5: Fix typo in comments (Amir Tzin) [1982193]
+- net/mlx5e: Remove Duplicated hunk in function __parse_cls_flower() (Amir Tzin) [1982193]
+- net/mlx5: Fix unpublish devlink parameters (Amir Tzin) [1982193]
+- RDMA/mlx5: Delete not-available udata check (Amir Tzin) [1982193]
+- net/mlx5: Fix missing return value in mlx5_devlink_eswitch_inline_mode_set() (Amir Tzin) [1982193]
+- net/mlx5e: Block LRO if firmware asks for tunneled LRO (Amir Tzin) [1982193]
+- net/mlx5e: Prohibit inner indir TIRs in IPoIB (Amir Tzin) [1982193]
+- net: switchdev: zero-initialize struct switchdev_notifier_fdb_info emitted by drivers towards the bridge (Amir Tzin) [1982193]
+- net/mlx5: Fix return value from tracer initialization (Amir Tzin) [1982193]
+- net/mlx5: Synchronize correct IRQ when destroying CQ (Amir Tzin) [1982193 1982219]
+- net/mlx5e: TC, Fix error handling memory leak (Amir Tzin) [1982193]
+- net/mlx5: Destroy pool->mutex (Amir Tzin) [1982193]
+- net/mlx5: Set all field of mlx5_irq before inserting it to the xarray (Amir Tzin) [1982193]
+- net/mlx5: Fix order of functions in mlx5_irq_detach_nb() (Amir Tzin) [1982193]
+- net/mlx5: Block switchdev mode while devlink traps are active (Amir Tzin) [1982193]
+- net/mlx5e: Destroy page pool after XDP SQ to fix use-after-free (Amir Tzin) [1982193]
+- net/mlx5: Bridge, fix ageing time (Amir Tzin) [1982193]
+- net/mlx5e: Avoid creating tunnel headers for local route (Amir Tzin) [1982193]
+- net/mlx5: DR, Add fail on error check on decap (Amir Tzin) [1982193]
+- net/mlx5: Don't skip subfunction cleanup in case of error in module init (Amir Tzin) [1982193]
+- RDMA/mlx5: Delay emptying a cache entry when a new MR is added to it recently (Amir Tzin) [1982193]
+- net/mlx5: Fix mlx5_vport_tbl_attr chain from u16 to u32 (Amir Tzin) [1982193]
+- net/mlx5e: Fix nullptr in mlx5e_hairpin_get_mdev() (Amir Tzin) [1982193]
+- net/mlx5: Unload device upon firmware fatal error (Amir Tzin) [1982193]
+- net/mlx5e: Fix page allocation failure for ptp-RQ over SF (Amir Tzin) [1982193]
+- net/mlx5e: Fix page allocation failure for trap-RQ over SF (Amir Tzin) [1982193]
+- net/mlx5e: Consider PTP-RQ when setting RX VLAN stripping (Amir Tzin) [1982193]
+- net/mlx5e: Add NETIF_F_HW_TC to hw_features when HTB offload is available (Amir Tzin) [1982193]
+- net/mlx5e: RX, Avoid possible data corruption when relaxed ordering and LRO combined (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, handle devcom events only for ports on the same device (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, Set destination vport vhca id only when merged eswitch is supported (Amir Tzin) [1982193]
+- net/mlx5e: Disable Rx ntuple offload for uplink representor (Amir Tzin) [1982193]
+- net/mlx5e: kTLS, Add stats for number of deleted kTLS TX offloaded connections (Amir Tzin) [1982193]
+- net/mlx5: SF, Improve performance in SF allocation (Amir Tzin) [1982193]
+- net/mlx5: Increase hairpin buffer size (Amir Tzin) [1982193]
+- net/mlx5: DR, Add support for flow sampler offload (Amir Tzin) [1982193]
+- net/mlx5: Compare sampler flow destination ID in fs_core (Amir Tzin) [1982193]
+- net/mlx5: remove "default n" from Kconfig (Amir Tzin) [1982193]
+- net/mlx5: Fix spelling mistake "enught" -> "enough" (Amir Tzin) [1982193]
+- net/mlx5: Use cpumask_available() in mlx5_eq_create_generic() (Amir Tzin) [1982193]
+- net/mlx5: Fix missing error code in mlx5_init_fs() (Amir Tzin) [1982193]
+- RDMA/mlx5: Support real-time timestamp directly from the device (Amir Tzin) [1982193]
+- RDMA/mlx5: Refactor get_ts_format functions to simplify code (Amir Tzin) [1982193]
+- RDMA/mlx5: Enable Relaxed Ordering by default for kernel ULPs (Amir Tzin) [1982193]
+- net/mlx5: Round-Robin EQs over IRQs (Amir Tzin) [1982193]
+- net/mlx5: Separate between public and private API of sf.h (Amir Tzin) [1982193]
+- net/mlx5: Enlarge interrupt field in CREATE_EQ (Amir Tzin) [1982193]
+- net/mlx5: Allocating a pool of MSI-X vectors for SFs (Amir Tzin) [1982193]
+- net/mlx5: Change IRQ storage logic from static to dynamic (Amir Tzin) [1982193]
+- net/mlx5: Moving rmap logic to EQs (Amir Tzin) [1982193]
+- net/mlx5: Extend mlx5_irq_request to request IRQ from the kernel (Amir Tzin) [1982193]
+- net/mlx5: Removing rmap per IRQ (Amir Tzin) [1982193]
+- net/mlx5: Clean license text in eq.[c|h] files (Amir Tzin) [1982193]
+- net/mlx5: Provide cpumask at EQ creation phase (Amir Tzin) [1982193]
+- net/mlx5: Introduce API for request and release IRQs (Amir Tzin) [1982193]
+- net/mlx5: Delay IRQ destruction till all users are gone (Amir Tzin) [1982193]
+- net/mlx5: Change ownership model for lag (Amir Tzin) [1982193]
+- net/mlx5: Lag, Don't rescan if the device is going down (Amir Tzin) [1982193]
+- net/mlx5: Lag, refactor disable flow (Amir Tzin) [1982193]
+- net/mlx5: Bridge, add tracepoints (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, filter tagged packets that didn't match tagged fg (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, support pvid and untagged vlan configurations (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, match FDB entry vlan tag (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, implement infrastructure for vlans (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, dynamic entry ageing (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, handle FDB events (Amir Tzin) [1982193 1982234]
+- docs: networking: Add missing mlx5 documentation (Amir Tzin) [1982193]
+- net/mlx5: Bridge, add offload infrastructure (Amir Tzin) [1982193 1982234]
+- net/mlx5e: Refactor mlx5e_eswitch_{*}rep() helpers (Amir Tzin) [1982193 1982234]
+- net/mlx5: Create TC-miss priority and table (Amir Tzin) [1982193 1982234]
+- net/mlx5: DR, Support EMD tag in modify header for STEv1 (Amir Tzin) [1982193 1982234]
+- net/mlx5: DR, Added support for INSERT_HEADER reformat type (Amir Tzin) [1982193 1982234]
+- net/mlx5: Added new parameters to reformat context (Amir Tzin) [1982193 1982234]
+- net/mlx5: DR, Allow encap action for RX for supporting devices (Amir Tzin) [1982193 1982234]
+- net/mlx5: DR, Split reformat state to Encap and Decap (Amir Tzin) [1982193 1982234]
+- net/mlx5: mlx5_ifc support for header insert/remove (Amir Tzin) [1982193 1982234]
+- net/mlx5e: Remove unreachable code in mlx5e_xmit() (Amir Tzin) [1982193]
+- net/mlx5e: RX, Re-place page pool numa node change logic (Amir Tzin) [1982193]
+- net/mlx5e: Zero-init DIM structures (Amir Tzin) [1982193]
+- net/mlx5e: IPoIB, Add support for NDR speed (Amir Tzin) [1982193]
+- net/mlx5e: Remove the repeated declaration (Amir Tzin) [1982193]
+- net/mlx5: check for allocation failure in mlx5_ft_pool_init() (Amir Tzin) [1982193]
+- mlx5: count all link events (Amir Tzin) [1982193]
+- net/mlx5: Expose FW version over defined keyword (Amir Tzin) [1982193]
+- net/mlx5: Use boolean arithmetic to evaluate roce_lag (Amir Tzin) [1982193]
+- net/mlx5: Remove unnecessary spin lock protection (Amir Tzin) [1982193]
+- net/mlx5: Cap the maximum flow group size to 16M entries (Amir Tzin) [1982193]
+- net/mlx5: DR, Set max table size to 2G entries (Amir Tzin) [1982193]
+- net/mlx5: Move chains ft pool to be used by all firmware steering (Amir Tzin) [1982193]
+- net/mlx5: Move table size calculation to steering cmd layer (Amir Tzin) [1982193]
+- net/mlx5: Add case for FS_FT_NIC_TX FT in MLX5_CAP_FLOWTABLE_TYPE (Amir Tzin) [1982193]
+- net/mlx5: DR, Remove unused field of send_ring struct (Amir Tzin) [1982193]
+- net/mlx5e: RX, Remove unnecessary check in RX CQE compression handling (Amir Tzin) [1982193]
+- net/mlx5: CT: Avoid reusing modify header context for natted entries (Amir Tzin) [1982193]
+- net/mlx5e: CT, Remove newline from ct_dbg call (Amir Tzin) [1982193]
+- RDMA/mlx5: Take qp type from mlx5_ib_qp (Amir Tzin) [1982193]
+- RDMA/mlx5: Add SQD2RTS bit to the alloc ucontext response (Amir Tzin) [1982193]
+- RDMA/mlx5: Support SQD2RTS for modify QP (Amir Tzin) [1982193]
+- RDMA/mlx5: Remove redundant assignment to ret (Amir Tzin) [1982193]
+- firewire: fix support status (Tomas Henzl) [2055319]
+- dlci: fix support status (Tomas Henzl) [2055319]
+- dlink: fix support status (Tomas Henzl) [2055319]
+- rxe: fix support status (Tomas Henzl) [2055319]
+- qic: fix support status (Tomas Henzl) [2055319]
+- Revert "ceph: enable async dirops by default" (Jeffrey Layton) [2052542]
+- libceph: optionally use bounce buffer on recv path in crc mode (Jeffrey Layton) [2024725]
+- libceph: make recv path in secure mode work the same as send path (Jeffrey Layton) [2024725]
+- mm: use kmap_local_page in memzero_page (Jeffrey Layton) [2024725]
+- mm: call flush_dcache_page() in memcpy_to_page() and memzero_page() (Jeffrey Layton) [2024725]
+- iov_iter: lift memzero_page() to highmem.h (Jeffrey Layton) [2024725]
+- mm/highmem: Convert memcpy_[to|from]_page() to kmap_local_page() (Jeffrey Layton) [2024725]
+- mm/highmem: Lift memcpy_[to|from]_page to core (Jeffrey Layton) [2024725]
+- ceph: set pool_ns in new inode layout for async creates (Jeffrey Layton) [2046021]
+- ceph: properly put ceph_string reference after async create attempt (Jeffrey Layton) [2046021]
+- ceph: put the requests/sessions when it fails to alloc memory (Jeffrey Layton) [2046021]
+- ceph: remove redundant Lsx caps check (Jeffrey Layton) [2046021]
+- ceph: don't check for quotas on MDS stray dirs (Jeffrey Layton) [2046021]
+- ceph: drop send metrics debug message (Jeffrey Layton) [2046021]
+- ceph: Fix incorrect statfs report for small quota (Jeffrey Layton) [2011104]
+- scsi: qla2xxx: stop timer in shutdown path (Nilesh Javali) [2056055]
+- Revert "PCI: Add support for dev_groups to struct pci_driver" (Michel Dänzer) [2054595]
+- drm/amdgpu: Assign amdgpu_sysfs_groups to struct device_driver directly (Michel Dänzer) [2054595]
+- EDAC/i10nm: Retrieve and print retry_rd_err_log registers (Aristeu Rozanski) [1998359]
+- redhat: enable zstream release numbering for rhel 8.6 (Augusto Caringi)
+- redhat: generate distgit changelog in genspec.sh as well (Jan Stancek)
+- redhat: always upload kabi tarballs (Jan Stancek)
+- redhat: make genspec prefer metadata from git notes (Jan Stancek)
+- internal: update RHEL_MINOR for the start of RHEL-8.7 development (Jarod Wilson)
+
+* Wed Mar 16 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-372.2.1.el8]
+- ice: fix getting UDP tunnel entry (Jonathan Toppins) [2015409]
+- ice: convert to new udp_tunnel infrastructure (Jonathan Toppins) [2015409]
+- selftests: kvm: Check whether SIDA memop fails for normal guests (Thomas Huth) [2050807]
+- KVM: s390: Return error on SIDA memop on normal guest (Thomas Huth) [2050807] {CVE-2022-0516}
+- lib/iov_iter: initialize "flags" in new pipe_buffer (Jan Stancek) [2060875] {CVE-2022-0847}
+- fget: clarify and improve __fget_files() implementation (Patrick Talbert) [2032303]
+- fget: check that the fd still exists after getting a ref to it (Patrick Talbert) [2032303] {CVE-2021-4083}
+- drm/ast: Create threshold values for AST2600 (Jocelyn Falempe) [2053358]
+- cgroup-v1: Correct privileges check in release_agent writes (Waiman Long) [2052167]
+- cgroup-v1: Require capabilities to set release_agent (Waiman Long) [2052167] {CVE-2022-0492}
+- spec: Fix separate tools build (Yauheni Kaliuta) [2056301]
+- net/mlx5: DR, Add support for update FTE (Amir Tzin) [2047231]
+- net/mlx5: DR, Improve rule tracking memory consumption (Amir Tzin) [2047231]
+- net/mlx5: DR, Remove rehash ctrl struct from dr_htbl (Amir Tzin) [2047231]
+- net/mlx5: DR, Remove HW specific STE type from nic domain (Amir Tzin) [2047231]
+- net/mlx5: DR, Merge DR_STE_SIZE enums (Amir Tzin) [2047231]
+- net/mlx5: DR, Skip source port matching on FDB RX domain (Amir Tzin) [2047231]
+- net/mlx5: DR, Add ignore_flow_level support for multi-dest flow tables (Amir Tzin) [2047231]
+- net/mlx5: DR, replace uintN_t with kernel-style types (Amir Tzin) [2047231]
+- net/mlx5: DR, Support IPv6 matching on flow label for STEv0 (Amir Tzin) [2047231]
+- net/mlx5: DR, Reduce print level for FT chaining level check (Amir Tzin) [2047231]
+- net/mlx5: DR, Warn and ignore SW steering rule insertion on QP err (Amir Tzin) [2047231]
+- net/mlx5: DR, Improve error flow in actions_build_ste_arr (Amir Tzin) [2047231]
+- net/mlx5: DR, Enable QP retransmission (Amir Tzin) [2047231]
+- net/mlx5: DR, Enable VLAN pop on TX and VLAN push on RX (Amir Tzin) [2047231]
+- net/mlx5: DR, Split modify VLAN state to separate pop/push states (Amir Tzin) [2047231]
+- net/mlx5: DR, Added support for REMOVE_HEADER packet reformat (Amir Tzin) [2047231]
+- net/mlx4_en: Resolve bad operstate value (Amir Tzin) [1982190]
+- net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() (Amir Tzin) [1982190]
+- RDMA/mlx4: Do not fail the registration on port stats (Amir Tzin) [1982190]
+- RDMA/mlx4: Return missed an error if device doesn't support steering (Amir Tzin) [1982190]
+- net/mlx4_en: Don't allow aRFS for encapsulated packets (Amir Tzin) [1982190]
+- mlx4: Fix missing error code in mlx4_load_one() (Amir Tzin) [1982190]
+- net/mlx4: Fix fall-through warning for Clang (Amir Tzin) [1982190]
+- mlx4: Remove rcu_read_lock() around XDP program invocation (Amir Tzin) [1982190]
+- IB/mlx4: Avoid field-overflowing memcpy() (Amir Tzin) [1982190]
+- RDMA/mlx4: Do not map the core_clock page to user space unless enabled (Amir Tzin) [1982190]
+- net/mlx4: Treat VFs fair when handling comm_channel_events (Amir Tzin) [1982190]
+- RDMA/mlx4: Remove an unused variable (Amir Tzin) [1982190]
+
+* Mon Mar 14 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-372.1.1.el8]
+- megaraid_sas: Add new messaging - a fix (Tomas Henzl) [2055248]
+- HID: amd_sfh: Add interrupt handler to process interrupts (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Add functionality to clear interrupts (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Disable the interrupt for all command (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Correct the structure field name (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Handle amd_sfh work buffer in PM ops (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Add illuminance mask to limit ALS max value (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Increase sensor command timeout (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Update Copyright details (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: switch from 'pci_' to 'dev_' API (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: Use dma_set_mask_and_coherent() (Benjamin Tissoires) [2054929]
+- HID: amd_sfh: switch from 'pci_' to 'dma_' API (Benjamin Tissoires) [2054929]
+- dm stats: fix too short end duration_ns when using precise_timestamps (Benjamin Marzinski) [2057166]
+- dm: fix double accounting of flush with data (Benjamin Marzinski) [2057166]
+- dm: interlock pending dm_io and dm_wait_for_bios_completion (Benjamin Marzinski) [2057166]
+- x86/MCE/AMD, EDAC/mce_amd: Support non-uniform MCA bank type enumeration (Aristeu Rozanski) [2050410 2048786 2050412]
+- x86/MCE/AMD, EDAC/mce_amd: Add new SMCA bank types (Aristeu Rozanski) [2050410 2048786 2050412]
+- EDAC/amd64: Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh (Aristeu Rozanski) [2050410 2048786 2050412]
+- EDAC: Add RDDR5 and LRDDR5 memory types (Aristeu Rozanski) [2050410 2048786 2050412]
+- EDAC/amd64: Handle three rank interleaving mode (Aristeu Rozanski) [2050410 2048786 2050412]
+- EDAC/amd64: Set proper family type for Family 19h Models 20h-2Fh (Aristeu Rozanski) [2050410 2048786 2050412]
+- netfilter: nf_queue: handle socket prefetch (Florian Westphal) [2009786]
+- netfilter: nf_queue: fix possible use-after-free (Florian Westphal) [2009786]
+- selftests: netfilter: add nfqueue TCP_NEW_SYN_RECV socket race test (Florian Westphal) [2009786]
+- netfilter: nf_queue: don't assume sk is full socket (Florian Westphal) [2009786]
+- Enable HSA_AMD_SVM config (Donald Dutile) [2025123]
+- mm/memremap_pages: support multiple ranges per invocation (Donald Dutile) [2025123]
+- mm/memremap_pages: convert to 'struct range' (Donald Dutile) [2025123]
+- device-dax: add an allocation interface for device-dax instances (Donald Dutile) [2025123]
+- device-dax: make pgmap optional for instance creation (Donald Dutile) [2025123]
+- device-dax: move instance creation parameters to 'struct dev_dax_data' (Donald Dutile) [2025123]
+- device-dax: drop the dax_region.pfn_flags attribute (Donald Dutile) [2025123]
+- memremap: rename MEMORY_DEVICE_DEVDAX to MEMORY_DEVICE_GENERIC (Donald Dutile) [2025123]
+- PCI/P2PDMA: Introduce private pagemap structure (Donald Dutile) [2025123]
+- security: implement sctp_assoc_established hook in selinux (Ondrej Mosnacek) [2015525 2048251]
+- security: add sctp_assoc_established hook (Ondrej Mosnacek) [2015525 2048251]
+- security: call security_sctp_assoc_request in sctp_sf_do_5_1D_ce (Ondrej Mosnacek) [2015525 2048251]
+- security: pass asoc to sctp_assoc_request and sctp_sk_clone (Ondrej Mosnacek) [2015525 2048251]
+- net: sctp: Fix some typos (Ondrej Mosnacek) [2015525 2048251]
+- iwlwifi: mvm: read 6E enablement flags from DSM and pass to FW (Íñigo Huguet) [1923170 1936001]
+- net/mlx5: Lag, Make mlx5_lag_is_multipath() be static inline (Amir Tzin) [1982193]
+- net/mlx5e: nullify cq->dbg pointer in mlx5_debug_cq_remove() (Amir Tzin) [1982193]
+- net/mlx5: DR, Ignore modify TTL if device doesn't support it (Amir Tzin) [1982193 2028504]
+- net/mlx5: Warn for devlink reload when there are VFs alive (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix lower case macro prefix "mlx5_" to "MLX5_" (Amir Tzin) [1982193]
+- net/mlx5e: Fix wrong features assignment in case of error (Amir Tzin) [1982193]
+- net/mlx5e: Fix ICOSQ recovery flow for XSK (Amir Tzin) [1982193]
+- net/mlx5e: Fix interoperability between XSK and ICOSQ recovery flow (Amir Tzin) [1982193]
+- net/mlx5e: Wrap the tx reporter dump callback to extract the sq (Amir Tzin) [1982193]
+- net/mlx5: Fix tc max supported prio for nic mode (Amir Tzin) [1982193]
+- net/mlx5: Fix SF health recovery flow (Amir Tzin) [1982193]
+- net/mlx5: Fix error print in case of IRQ request failed (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix NULL vs IS_ERR checking in dr_domain_init_resources (Amir Tzin) [1982193]
+- mlx5: fix mlx5i_grp_sw_update_stats() stack usage (Amir Tzin) [1982193]
+- mlx5: fix psample_sample_packet link error (Amir Tzin) [1982193]
+- net/mlx5: Fix format-security build warnings (Amir Tzin) [1982193]
+- net/mlx5e: Fix missing IPsec statistics on uplink representor (Amir Tzin) [1982193]
+- net/mlx5e: IPsec: Fix Software parser inner l3 type setting in case of encapsulation (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, return error if encap isn't supported (Amir Tzin) [1982193]
+- net/mlx5: Lag, update tracker when state change event received (Amir Tzin) [1982193]
+- net/mlx5e: CT, Fix multiple allocations and memleak of mod acts (Amir Tzin) [1982193 2017675]
+- net/mlx5: Update error handler for UCTX and UMEM (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, Fix resetting of encap mode when entering switchdev (Amir Tzin) [1982193]
+- net/mlx5e: Wait for concurrent flow deletion during neigh/fib events (Amir Tzin) [1982193]
+- net/mlx5e: kTLS, Fix crash in RX resync flow (Amir Tzin) [1982193]
+- net/mlx5e: IPsec: Fix work queue entry ethernet segment checksum flags (Amir Tzin) [1982193]
+- net/mlx5e: IPsec: Fix a misuse of the software parser's fields (Amir Tzin) [1982193]
+- net/mlx5e: Fix vlan data lost during suspend flow (Amir Tzin) [1982193]
+- net/mlx5: Lag, change multipath and bonding to be mutually exclusive (Amir Tzin) [1982193]
+- net/mlx5: Lag, move lag destruction to a workqueue (Amir Tzin) [1982193]
+- RDMA/mlx5: Initialize the ODP xarray when creating an ODP MR (Amir Tzin) [1982193]
+- net/mlx5e: Mutually exclude RX-FCS and RX-port-timestamp (Amir Tzin) [1982193]
+- net/mlx5e: Switchdev representors are not vlan challenged (Amir Tzin) [1982193]
+- net/mlx5e: Fix memory leak in mlx5_core_destroy_cq() error path (Amir Tzin) [1982193]
+- net/mlx5: Fix cleanup of bridge delayed work (Amir Tzin) [1982193]
+- RDMA/mlx5: Set user priority for DCT (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix typo 'offeset' to 'offset' (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix vport number data type to u16 (Amir Tzin) [1982193]
+- net/mlx5e: Fix the presented RQ index in PTP stats (Amir Tzin) [1982193]
+- net/mlx5: Fix setting number of EQs of SFs (Amir Tzin) [1982193]
+- net/mlx5: Fix length of irq_index in chars (Amir Tzin) [1982193]
+- net/mlx5: Avoid generating event after PPS out in Real time mode (Amir Tzin) [1982193]
+- net/mlx5: Force round second at 1PPS out start time (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, Fix double allocation of acl flow counter (Amir Tzin) [1982193]
+- net/mlx5e: Keep the value for maximum number of channels in-sync (Amir Tzin) [1982193]
+- net/mlx5e: IPSEC RX, enable checksum complete (Amir Tzin) [1982193]
+- net/mlx5: DR, Fix code indentation in dr_ste_v1 (Amir Tzin) [1982193]
+- RDMA/mlx5: Fix xlt_chunk_align calculation (Amir Tzin) [1982193]
+- RDMA/mlx5: Fix number of allocated XLT entries (Amir Tzin) [1982193]
+- net/mlx5e: Fix mutual exclusion between CQE compression and HW TS (Amir Tzin) [1982193]
+- net/mlx5: Fix potential sleeping in atomic context (Amir Tzin) [1982193]
+- net/mlx5: FWTrace, cancel work on alloc pd error flow (Amir Tzin) [1982193]
+- net/mlx5: DR, fix a potential use-after-free bug (Amir Tzin) [1982193]
+- net/mlx5e: Use correct eswitch for stack devices with lag (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, Set vhca id valid flag when creating indir fwd group (Amir Tzin) [1982193]
+- net/mlx5: Remove all auxiliary devices at the unregister event (Amir Tzin) [1982193]
+- net/mlx5: Lag, fix multipath lag activation (Amir Tzin) [1982193]
+- net/mlx5: Fix variable type to match 64bit (Amir Tzin) [1982193]
+- net/mlx5: Fix typo in comments (Amir Tzin) [1982193]
+- net/mlx5e: Remove Duplicated hunk in function __parse_cls_flower() (Amir Tzin) [1982193]
+- net/mlx5: Fix unpublish devlink parameters (Amir Tzin) [1982193]
+- RDMA/mlx5: Delete not-available udata check (Amir Tzin) [1982193]
+- net/mlx5: Fix missing return value in mlx5_devlink_eswitch_inline_mode_set() (Amir Tzin) [1982193]
+- net/mlx5e: Block LRO if firmware asks for tunneled LRO (Amir Tzin) [1982193]
+- net/mlx5e: Prohibit inner indir TIRs in IPoIB (Amir Tzin) [1982193]
+- net: switchdev: zero-initialize struct switchdev_notifier_fdb_info emitted by drivers towards the bridge (Amir Tzin) [1982193]
+- net/mlx5: Fix return value from tracer initialization (Amir Tzin) [1982193]
+- net/mlx5: Synchronize correct IRQ when destroying CQ (Amir Tzin) [1982193 1982219]
+- net/mlx5e: TC, Fix error handling memory leak (Amir Tzin) [1982193]
+- net/mlx5: Destroy pool->mutex (Amir Tzin) [1982193]
+- net/mlx5: Set all field of mlx5_irq before inserting it to the xarray (Amir Tzin) [1982193]
+- net/mlx5: Fix order of functions in mlx5_irq_detach_nb() (Amir Tzin) [1982193]
+- net/mlx5: Block switchdev mode while devlink traps are active (Amir Tzin) [1982193]
+- net/mlx5e: Destroy page pool after XDP SQ to fix use-after-free (Amir Tzin) [1982193]
+- net/mlx5: Bridge, fix ageing time (Amir Tzin) [1982193]
+- net/mlx5e: Avoid creating tunnel headers for local route (Amir Tzin) [1982193]
+- net/mlx5: DR, Add fail on error check on decap (Amir Tzin) [1982193]
+- net/mlx5: Don't skip subfunction cleanup in case of error in module init (Amir Tzin) [1982193]
+- RDMA/mlx5: Delay emptying a cache entry when a new MR is added to it recently (Amir Tzin) [1982193]
+- net/mlx5: Fix mlx5_vport_tbl_attr chain from u16 to u32 (Amir Tzin) [1982193]
+- net/mlx5e: Fix nullptr in mlx5e_hairpin_get_mdev() (Amir Tzin) [1982193]
+- net/mlx5: Unload device upon firmware fatal error (Amir Tzin) [1982193]
+- net/mlx5e: Fix page allocation failure for ptp-RQ over SF (Amir Tzin) [1982193]
+- net/mlx5e: Fix page allocation failure for trap-RQ over SF (Amir Tzin) [1982193]
+- net/mlx5e: Consider PTP-RQ when setting RX VLAN stripping (Amir Tzin) [1982193]
+- net/mlx5e: Add NETIF_F_HW_TC to hw_features when HTB offload is available (Amir Tzin) [1982193]
+- net/mlx5e: RX, Avoid possible data corruption when relaxed ordering and LRO combined (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, handle devcom events only for ports on the same device (Amir Tzin) [1982193]
+- net/mlx5: E-Switch, Set destination vport vhca id only when merged eswitch is supported (Amir Tzin) [1982193]
+- net/mlx5e: Disable Rx ntuple offload for uplink representor (Amir Tzin) [1982193]
+- net/mlx5e: kTLS, Add stats for number of deleted kTLS TX offloaded connections (Amir Tzin) [1982193]
+- net/mlx5: SF, Improve performance in SF allocation (Amir Tzin) [1982193]
+- net/mlx5: Increase hairpin buffer size (Amir Tzin) [1982193]
+- net/mlx5: DR, Add support for flow sampler offload (Amir Tzin) [1982193]
+- net/mlx5: Compare sampler flow destination ID in fs_core (Amir Tzin) [1982193]
+- net/mlx5: remove "default n" from Kconfig (Amir Tzin) [1982193]
+- net/mlx5: Fix spelling mistake "enught" -> "enough" (Amir Tzin) [1982193]
+- net/mlx5: Use cpumask_available() in mlx5_eq_create_generic() (Amir Tzin) [1982193]
+- net/mlx5: Fix missing error code in mlx5_init_fs() (Amir Tzin) [1982193]
+- RDMA/mlx5: Support real-time timestamp directly from the device (Amir Tzin) [1982193]
+- RDMA/mlx5: Refactor get_ts_format functions to simplify code (Amir Tzin) [1982193]
+- RDMA/mlx5: Enable Relaxed Ordering by default for kernel ULPs (Amir Tzin) [1982193]
+- net/mlx5: Round-Robin EQs over IRQs (Amir Tzin) [1982193]
+- net/mlx5: Separate between public and private API of sf.h (Amir Tzin) [1982193]
+- net/mlx5: Enlarge interrupt field in CREATE_EQ (Amir Tzin) [1982193]
+- net/mlx5: Allocating a pool of MSI-X vectors for SFs (Amir Tzin) [1982193]
+- net/mlx5: Change IRQ storage logic from static to dynamic (Amir Tzin) [1982193]
+- net/mlx5: Moving rmap logic to EQs (Amir Tzin) [1982193]
+- net/mlx5: Extend mlx5_irq_request to request IRQ from the kernel (Amir Tzin) [1982193]
+- net/mlx5: Removing rmap per IRQ (Amir Tzin) [1982193]
+- net/mlx5: Clean license text in eq.[c|h] files (Amir Tzin) [1982193]
+- net/mlx5: Provide cpumask at EQ creation phase (Amir Tzin) [1982193]
+- net/mlx5: Introduce API for request and release IRQs (Amir Tzin) [1982193]
+- net/mlx5: Delay IRQ destruction till all users are gone (Amir Tzin) [1982193]
+- net/mlx5: Change ownership model for lag (Amir Tzin) [1982193]
+- net/mlx5: Lag, Don't rescan if the device is going down (Amir Tzin) [1982193]
+- net/mlx5: Lag, refactor disable flow (Amir Tzin) [1982193]
+- net/mlx5: Bridge, add tracepoints (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, filter tagged packets that didn't match tagged fg (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, support pvid and untagged vlan configurations (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, match FDB entry vlan tag (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, implement infrastructure for vlans (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, dynamic entry ageing (Amir Tzin) [1982193 1982234]
+- net/mlx5: Bridge, handle FDB events (Amir Tzin) [1982193 1982234]
+- docs: networking: Add missing mlx5 documentation (Amir Tzin) [1982193]
+- net/mlx5: Bridge, add offload infrastructure (Amir Tzin) [1982193 1982234]
+- net/mlx5e: Refactor mlx5e_eswitch_{*}rep() helpers (Amir Tzin) [1982193 1982234]
+- net/mlx5: Create TC-miss priority and table (Amir Tzin) [1982193 1982234]
+- net/mlx5: DR, Support EMD tag in modify header for STEv1 (Amir Tzin) [1982193 1982234]
+- net/mlx5: DR, Added support for INSERT_HEADER reformat type (Amir Tzin) [1982193 1982234]
+- net/mlx5: Added new parameters to reformat context (Amir Tzin) [1982193 1982234]
+- net/mlx5: DR, Allow encap action for RX for supporting devices (Amir Tzin) [1982193 1982234]
+- net/mlx5: DR, Split reformat state to Encap and Decap (Amir Tzin) [1982193 1982234]
+- net/mlx5: mlx5_ifc support for header insert/remove (Amir Tzin) [1982193 1982234]
+- net/mlx5e: Remove unreachable code in mlx5e_xmit() (Amir Tzin) [1982193]
+- net/mlx5e: RX, Re-place page pool numa node change logic (Amir Tzin) [1982193]
+- net/mlx5e: Zero-init DIM structures (Amir Tzin) [1982193]
+- net/mlx5e: IPoIB, Add support for NDR speed (Amir Tzin) [1982193]
+- net/mlx5e: Remove the repeated declaration (Amir Tzin) [1982193]
+- net/mlx5: check for allocation failure in mlx5_ft_pool_init() (Amir Tzin) [1982193]
+- mlx5: count all link events (Amir Tzin) [1982193]
+- net/mlx5: Expose FW version over defined keyword (Amir Tzin) [1982193]
+- net/mlx5: Use boolean arithmetic to evaluate roce_lag (Amir Tzin) [1982193]
+- net/mlx5: Remove unnecessary spin lock protection (Amir Tzin) [1982193]
+- net/mlx5: Cap the maximum flow group size to 16M entries (Amir Tzin) [1982193]
+- net/mlx5: DR, Set max table size to 2G entries (Amir Tzin) [1982193]
+- net/mlx5: Move chains ft pool to be used by all firmware steering (Amir Tzin) [1982193]
+- net/mlx5: Move table size calculation to steering cmd layer (Amir Tzin) [1982193]
+- net/mlx5: Add case for FS_FT_NIC_TX FT in MLX5_CAP_FLOWTABLE_TYPE (Amir Tzin) [1982193]
+- net/mlx5: DR, Remove unused field of send_ring struct (Amir Tzin) [1982193]
+- net/mlx5e: RX, Remove unnecessary check in RX CQE compression handling (Amir Tzin) [1982193]
+- net/mlx5: CT: Avoid reusing modify header context for natted entries (Amir Tzin) [1982193]
+- net/mlx5e: CT, Remove newline from ct_dbg call (Amir Tzin) [1982193]
+- RDMA/mlx5: Take qp type from mlx5_ib_qp (Amir Tzin) [1982193]
+- RDMA/mlx5: Add SQD2RTS bit to the alloc ucontext response (Amir Tzin) [1982193]
+- RDMA/mlx5: Support SQD2RTS for modify QP (Amir Tzin) [1982193]
+- RDMA/mlx5: Remove redundant assignment to ret (Amir Tzin) [1982193]
+- firewire: fix support status (Tomas Henzl) [2055319]
+- dlci: fix support status (Tomas Henzl) [2055319]
+- dlink: fix support status (Tomas Henzl) [2055319]
+- rxe: fix support status (Tomas Henzl) [2055319]
+- qic: fix support status (Tomas Henzl) [2055319]
+- Revert "ceph: enable async dirops by default" (Jeffrey Layton) [2052542]
+- libceph: optionally use bounce buffer on recv path in crc mode (Jeffrey Layton) [2024725]
+- libceph: make recv path in secure mode work the same as send path (Jeffrey Layton) [2024725]
+- mm: use kmap_local_page in memzero_page (Jeffrey Layton) [2024725]
+- mm: call flush_dcache_page() in memcpy_to_page() and memzero_page() (Jeffrey Layton) [2024725]
+- iov_iter: lift memzero_page() to highmem.h (Jeffrey Layton) [2024725]
+- mm/highmem: Convert memcpy_[to|from]_page() to kmap_local_page() (Jeffrey Layton) [2024725]
+- mm/highmem: Lift memcpy_[to|from]_page to core (Jeffrey Layton) [2024725]
+- ceph: set pool_ns in new inode layout for async creates (Jeffrey Layton) [2046021]
+- ceph: properly put ceph_string reference after async create attempt (Jeffrey Layton) [2046021]
+- ceph: put the requests/sessions when it fails to alloc memory (Jeffrey Layton) [2046021]
+- ceph: remove redundant Lsx caps check (Jeffrey Layton) [2046021]
+- ceph: don't check for quotas on MDS stray dirs (Jeffrey Layton) [2046021]
+- ceph: drop send metrics debug message (Jeffrey Layton) [2046021]
+- ceph: Fix incorrect statfs report for small quota (Jeffrey Layton) [2011104]
+- scsi: qla2xxx: stop timer in shutdown path (Nilesh Javali) [2056055]
+- Revert "PCI: Add support for dev_groups to struct pci_driver" (Michel Dänzer) [2054595]
+- drm/amdgpu: Assign amdgpu_sysfs_groups to struct device_driver directly (Michel Dänzer) [2054595]
+- EDAC/i10nm: Retrieve and print retry_rd_err_log registers (Aristeu Rozanski) [1998359]
+- redhat: enable zstream release numbering for rhel 8.6 (Augusto Caringi)
+- redhat: generate distgit changelog in genspec.sh as well (Jan Stancek)
+- redhat: always upload kabi tarballs (Jan Stancek)
+- redhat: make genspec prefer metadata from git notes (Jan Stancek)
+
+* Wed Mar 09 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-372.el8]
+- xfs: don't generate selinux audit messages for capability testing (Brian Foster) [2059835]
+
+* Sat Feb 26 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-371.el8]
+- ice: Implement support for SMA and U.FL on E810-T (Jonathan Toppins) [1975007]
+- ice: Add support for SMA control multiplexer (Jonathan Toppins) [1975007]
+- ice: Implement functions for reading and setting GPIO pins (Jonathan Toppins) [1975007]
+- ice: Refactor ice_aqc_link_topo_addr (Jonathan Toppins) [1975007]
+- xfs: restore speculative_cow_prealloc_lifetime sysctl (Bill O'Donnell) [2015621]
+- xfs: Fix the free logic of state in xfs_attr_node_hasname (Bill O'Donnell) [2015621 2037498]
+- xfs: punch out data fork delalloc blocks on COW writeback failure (Bill O'Donnell) [2015621 2012872]
+- xfs: use kmem_cache_free() for kmem_cache objects (Bill O'Donnell) [2015621]
+- xfs: logging the on disk inode LSN can make it go backwards (Bill O'Donnell) [2015621]
+- xfs: only reset incore inode health state flags when reclaiming an inode (Bill O'Donnell) [2015621]
+- xfs: remove obsolete AGF counter debugging (Bill O'Donnell) [2015621]
+- xfs: Initialize xfs_alloc_arg->total correctly when allocating minlen extents (Bill O'Donnell) [2015621]
+- xfs: Fix dax inode extent calculation when direct write is performed on an unwritten extent (Bill O'Donnell) [2015621]
+- xfs: mark a data structure sick if there are cross-referencing errors (Bill O'Donnell) [2015621]
+- xfs: fix maxlevels comparisons in the btree staging code (Bill O'Donnell) [2015621]
+- xfs: fix incorrect unit conversion in scrub tracepoint (Bill O'Donnell) [2015621]
+- xfs: fix log intent recovery ENOSPC shutdowns when inactivating inodes (Bill O'Donnell) [2015621]
+- xfs: fix radix tree tag signs (Bill O'Donnell) [2015621]
+- xfs: force log and push AIL to clear pinned inodes when aborting mount (Bill O'Donnell) [2015621]
+- xfs: use current->journal_info for detecting transaction recursion (Bill O'Donnell) [2015621]
+- xfs: don't nest transactions when scanning for eofblocks (Bill O'Donnell) [2015621]
+- xfs: fix boolreturn.cocci warnings (Bill O'Donnell) [2015621]
+- xfs: get rid of xfs_growfs_{data,log}_t (Bill O'Donnell) [2015621]
+- xfs: rename `new' to `delta' in xfs_growfs_data_private() (Bill O'Donnell) [2015621]
+- xfs: don't bounce the iolock between free_{eof,cow}blocks (Bill O'Donnell) [2015621]
+- xfs: expose the blockgc workqueue knobs publicly (Bill O'Donnell) [2015621]
+- xfs: parallelize block preallocation garbage collection (Bill O'Donnell) [2015621]
+- xfs: rename block gc start and stop functions (Bill O'Donnell) [2015621]
+- xfs: only walk the incore inode tree once per blockgc scan (Bill O'Donnell) [2015621]
+- xfs: consolidate the eofblocks and cowblocks workers (Bill O'Donnell) [2015621]
+- xfs: consolidate incore inode radix tree posteof/cowblocks tags (Bill O'Donnell) [2015621]
+- xfs: remove trivial eof/cowblocks functions (Bill O'Donnell) [2015621]
+- xfs: hide xfs_icache_free_cowblocks (Bill O'Donnell) [2015621]
+- xfs: hide xfs_icache_free_eofblocks (Bill O'Donnell) [2015621]
+- xfs: relocate the eofb/cowb workqueue functions (Bill O'Donnell) [2015621]
+- xfs: set WQ_SYSFS on all workqueues in debug mode (Bill O'Donnell) [2015621]
+- xfs: increase the default parallelism levels of pwork clients (Bill O'Donnell) [2015621]
+- xfs: flush speculative space allocations when we run out of space (Bill O'Donnell) [2015621]
+- xfs: refactor xfs_icache_free_{eof,cow}blocks call sites (Bill O'Donnell) [2015621]
+- xfs: add a tracepoint for blockgc scans (Bill O'Donnell) [2015621]
+- xfs: flush eof/cowblocks if we can't reserve quota for chown (Bill O'Donnell) [2015621]
+- xfs: flush eof/cowblocks if we can't reserve quota for inode creation (Bill O'Donnell) [2015621]
+- xfs: flush eof/cowblocks if we can't reserve quota for file blocks (Bill O'Donnell) [2015621]
+- xfs: try worst case space reservation upfront in xfs_reflink_remap_extent (Bill O'Donnell) [2015621]
+- xfs: pass flags and return gc errors from xfs_blockgc_free_quota (Bill O'Donnell) [2015621]
+- xfs: move and rename xfs_inode_free_quota_blocks to avoid conflicts (Bill O'Donnell) [2015621]
+- xfs: xfs_inode_free_quota_blocks should scan project quota (Bill O'Donnell) [2015621]
+- xfs: don't stall cowblocks scan if we can't take locks (Bill O'Donnell) [2015621]
+- xfs: trigger all block gc scans when low on quota space (Bill O'Donnell) [2015621]
+- xfs: shut down the filesystem if we screw up quota reservation (Bill O'Donnell) [2015621]
+- xfs: rename code to error in xfs_ioctl_setattr (Bill O'Donnell) [2015621]
+- xfs: remove xfs_qm_vop_chown_reserve (Bill O'Donnell) [2015621]
+- xfs: refactor inode ownership change transaction/inode/quota allocation idiom (Bill O'Donnell) [2015621]
+- xfs: refactor inode creation transaction/inode/quota allocation idiom (Bill O'Donnell) [2015621]
+- xfs: refactor reflink functions to use xfs_trans_alloc_inode (Bill O'Donnell) [2015621]
+- xfs: allow reservation of rtblocks with xfs_trans_alloc_inode (Bill O'Donnell) [2015621]
+- xfs: refactor common transaction/inode/quota allocation idiom (Bill O'Donnell) [2015621]
+- xfs: reserve data and rt quota at the same time (Bill O'Donnell) [2015621]
+- xfs: clean up icreate quota reservation calls (Bill O'Donnell) [2015621]
+- xfs: remove xfs_trans_unreserve_quota_nblks completely (Bill O'Donnell) [2015621]
+- xfs: create convenience wrappers for incore quota block reservations (Bill O'Donnell) [2015621]
+- xfs: clean up quota reservation callsites (Bill O'Donnell) [2015621]
+- xfs: reduce quota reservation when doing a dax unwritten extent conversion (Bill O'Donnell) [2015621]
+- xfs: reduce exclusive locking on unaligned dio (Bill O'Donnell) [2015621]
+- xfs: split the unaligned DIO write code out (Bill O'Donnell) [2015621]
+- xfs: improve the reflink_bounce_dio_write tracepoint (Bill O'Donnell) [2015621]
+- xfs: simplify the read/write tracepoints (Bill O'Donnell) [2015621]
+- xfs: remove the buffered I/O fallback assert (Bill O'Donnell) [2015621]
+- xfs: cleanup the read/write helper naming (Bill O'Donnell) [2015621]
+- xfs: make xfs_file_aio_write_checks IOCB_NOWAIT-aware (Bill O'Donnell) [2015621]
+- xfs: factor out a xfs_ilock_iocb helper (Bill O'Donnell) [2015621]
+- xfs: Fix 'set but not used' warning in xfs_bmap_compute_alignments() (Bill O'Donnell) [2015621]
+- xfs: fix unused log variable in xfs_log_cover() (Bill O'Donnell) [2015621]
+- iomap: add a IOMAP_DIO_OVERWRITE_ONLY flag (Bill O'Donnell) [2015621]
+- iomap: pass a flags argument to iomap_dio_rw (Bill O'Donnell) [2015621]
+- iomap: rename the flags variable in __iomap_dio_rw (Bill O'Donnell) [2015621]
+- iomap: Allow filesystem to call iomap_dio_complete without i_rwsem (Bill O'Donnell) [2015621]
+- xfs: reduce ilock acquisitions in xfs_file_fsync (Bill O'Donnell) [2015621]
+- xfs: refactor xfs_file_fsync (Bill O'Donnell) [2015621]
+- xfs: cover the log on freeze instead of cleaning it (Bill O'Donnell) [2015621]
+- xfs: remove xfs_quiesce_attr() (Bill O'Donnell) [2015621]
+- xfs: remove duplicate wq cancel and log force from attr quiesce (Bill O'Donnell) [2015621]
+- xfs: fold sbcount quiesce logging into log covering (Bill O'Donnell) [2015621]
+- xfs: don't reset log idle state on covering checkpoints (Bill O'Donnell) [2015621]
+- xfs: cover the log during log quiesce (Bill O'Donnell) [2015621]
+- xfs: separate log cleaning from log quiesce (Bill O'Donnell) [2015621]
+- xfs: lift writable fs check up into log worker task (Bill O'Donnell) [2015621]
+- xfs: set inode size after creating symlink (Bill O'Donnell) [2015621]
+- xfs: remove a stale comment from xfs_file_aio_write_checks() (Bill O'Donnell) [2015621]
+- xfs: Introduce error injection to allocate only minlen size extents for files (Bill O'Donnell) [2015621]
+- xfs: Process allocated extent in a separate function (Bill O'Donnell) [2015621]
+- xfs: Compute bmap extent alignments in a separate function (Bill O'Donnell) [2015621]
+- xfs: Remove duplicate assert statement in xfs_bmap_btalloc() (Bill O'Donnell) [2015621]
+- xfs: Introduce error injection to reduce maximum inode fork extent count (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when swapping extents (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when remapping an extent (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when moving extent from cow to data fork (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when writing to unwritten extent (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when adding/removing xattrs (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when renaming dir entries (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when removing dir entries (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when adding dir entries (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when punching a hole (Bill O'Donnell) [2015621]
+- xfs: Check for extent overflow when trivally adding a new extent (Bill O'Donnell) [2015621]
+- xfs: Add helper for checking per-inode extent count overflow (Bill O'Donnell) [2015621]
+- iwlwifi: pcie: add killer devices to the driver (Íñigo Huguet) [2043453]
+- iwlwifi: add support for BNJ HW (Íñigo Huguet) [2043453]
+- iwlwifi: Fix FW name for gl (Íñigo Huguet) [2043453]
+- iwlwifi: Read the correct addresses when getting the crf id (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: add jacket bit to device configuration parsing (Íñigo Huguet) [2043453]
+- iwlwifi: add new ax1650 killer device (Íñigo Huguet) [2043453]
+- iwlwifi: add new Qu-Hr device (Íñigo Huguet) [2043453]
+- iwlwifi: add missing entries for Gf4 with So and SoF (Íñigo Huguet) [2043453]
+- iwlwifi: remove unused iwlax210_2ax_cfg_so_hr_a0 structure (Íñigo Huguet) [2043453]
+- iwlwifi: add support for Bz-Z HW (Íñigo Huguet) [2043453]
+- iwlwifi: support 4-bits in MAC step value (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Increase the scan timeout guard to 30 seconds (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Use div_s64 instead of do_div in iwl_mvm_ftm_rtt_smoothing() (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix a possible race enabling/disabling runtime-pm (Íñigo Huguet) [2043453]
+- ath11k: Fix unexpected return buffer manager error for QCA6390 (Íñigo Huguet) [2043453]
+- ath11k: Fix napi related hang (Íñigo Huguet) [2043453]
+- iwlwifi: yoyo: fix issue with new DBGI_SRAM region read. (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: make sure prph_info is set when treating wakeup IRQ (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: fix AUX ROC removal (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: set protected flag only for NDP ranging (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: perform 6GHz passive scan after suspend (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Fix calculation of frame length (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: test roc running status bits before removing the sta (Íñigo Huguet) [2043453]
+- iwlwifi: don't pass actual WGDS revision number in table_revision (Íñigo Huguet) [2043453]
+- iwlwifi: fix leaks/bad data after failed firmware load (Íñigo Huguet) [2043453]
+- iwlwifi: fix debug TLV parsing (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: fix 32-bit build in FTM (Íñigo Huguet) [2043453]
+- iwlwifi: fix Bz NMI behaviour (Íñigo Huguet) [2043453]
+- rtlwifi: rtl8192cu: Fix WARNING when calling local_irq_restore() with interrupts enabled (Íñigo Huguet) [2043453]
+- rtw88: 8822c: update rx settings to prevent potential hw deadlock (Íñigo Huguet) [2043453]
+- rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE (Íñigo Huguet) [2043453]
+- ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream (Íñigo Huguet) [2043453]
+- ath9k_htc: fix NULL pointer dereference at ath9k_htc_tx_get_packet() (Íñigo Huguet) [2043453]
+- ath9k_htc: fix NULL pointer dereference at ath9k_htc_rxep() (Íñigo Huguet) [2043453]
+- mac80211: fix FEC flag in radio tap header (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix possible resume failure (Íñigo Huguet) [2043453]
+- mt76: mt7921: move mt76_connac_mcu_set_hif_suspend to bus-related files (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix network buffer leak by txs missing (Íñigo Huguet) [2043453]
+- mt76: mt7615: clear mcu error interrupt status on mt7663 (Íñigo Huguet) [2043453]
+- mt76: connac: fix last_chan configuration in mt76_connac_mcu_rate_txpower_band (Íñigo Huguet) [2043453]
+- mt76: mt7921: use correct iftype data on 6GHz cap init (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix boolreturn.cocci warning (Íñigo Huguet) [2043453]
+- mt76: mt7615: fix unused tx antenna mask in testmode (Íñigo Huguet) [2043453]
+- mt76: fix the wiphy's available antennas to the correct value (Íñigo Huguet) [2043453]
+- mt76: connac: fix a theoretical NULL pointer dereference in mt76_connac_get_phy_mode (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix possible NULL pointer dereference in mt7921_mac_write_txwi (Íñigo Huguet) [2043453]
+- mt76: fix possible OOB issue in mt76_calculate_default_rate (Íñigo Huguet) [2043453]
+- mt76: debugfs: fix queue reporting for mt76-usb (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix SMPS operation fail (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix return condition in mt7915_tm_reg_backup_restore() (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix MT7921E reset failure (Íñigo Huguet) [2043453]
+- mt76: mt7615: fix possible deadlock while mt7615_register_ext_phy() (Íñigo Huguet) [2043453]
+- mt76: mt7921: drop offload_flags overwritten (Íñigo Huguet) [2043453]
+- mt76: mt7915: get rid of mt7915_mcu_set_fixed_rate routine (Íñigo Huguet) [2043453]
+- bus: mhi: core: Use correctly sized arguments for bit field (Íñigo Huguet) [2043453]
+- bus: mhi: core: Fix race while handling SYS_ERR at power up (Íñigo Huguet) [2043453]
+- bus: mhi: core: Fix reading wake_capable channel configuration (Íñigo Huguet) [2043453]
+- bus: mhi: core: Minor style and comment fixes (Íñigo Huguet) [2043453]
+- bus: mhi: pci_generic: Graceful shutdown on freeze (Íñigo Huguet) [2043453]
+- ath11k: Fix a NULL pointer dereference in ath11k_mac_op_hw_scan() (Íñigo Huguet) [2043453]
+- mt76: remove variable set but not used (Íñigo Huguet) [2043453]
+- ath11k: Fix deleting uninitialized kernel timer during fragment cache flush (Íñigo Huguet) [2043453]
+- ath11k: add spectral/CFR buffer validation support (Íñigo Huguet) [2043453]
+- ath11k: Fix buffer overflow when scanning with extraie (Íñigo Huguet) [2043453]
+- mwifiex: Fix possible ABBA deadlock (Íñigo Huguet) [2043453]
+- ath10k: fix scan abort when duration is set for hw scan (Íñigo Huguet) [2043453]
+- ath10k: Fix tx hanging (Íñigo Huguet) [2043453]
+- iwlwifi: acpi: fix wgds rev 3 size (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: avoid clearing a just saved session protection id (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Fix wrong documentation for scan request command (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: synchronize with FW after multicast commands (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: fix delBA vs. NSSN queue sync race (Íñigo Huguet) [2043453]
+- ath11k: Fix QMI file type enum value (Íñigo Huguet) [2043453]
+- ath11k: add support for WCN6855 hw2.1 (Íñigo Huguet) [2043453]
+- ath10k: Fix the MTU size on QCA9377 SDIO (Íñigo Huguet) [2043453]
+- wireless: iwlwifi: Fix a double free in iwl_txq_dyn_alloc_dma (Íñigo Huguet) [2043453]
+- mwifiex: Ignore BTCOEX events from the 88W8897 firmware (Íñigo Huguet) [2043453]
+- mwifiex: Fix skb_over_panic in mwifiex_usb_recv() (Íñigo Huguet) [2043453]
+- ath11k: Use host CE parameters for CE interrupts configuration (Íñigo Huguet) [2043453]
+- ath11k: Fix mon status ring rx tlv processing (Íñigo Huguet) [2043453]
+- ath11k: skip sending vdev down for channel switch (Íñigo Huguet) [2043453]
+- ath11k: fix read fail for htt_stats and htt_peer_stats for single pdev (Íñigo Huguet) [2043453]
+- ath11k: Set IRQ affinity to CPU0 in case of one MSI vector (Íñigo Huguet) [2043453]
+- ath11k: do not restore ASPM in case of single MSI vector (Íñigo Huguet) [2043453]
+- ath11k: add support one MSI vector (Íñigo Huguet) [2043453]
+- ath11k: refactor multiple MSI vector implementation (Íñigo Huguet) [2043453]
+- ath11k: use ATH11K_PCI_IRQ_DP_OFFSET for DP IRQ (Íñigo Huguet) [2043453]
+- ath11k: add CE and ext IRQ flag to indicate irq_handler (Íñigo Huguet) [2043453]
+- ath11k: get msi_data again after request_irq is called (Íñigo Huguet) [2043453]
+- ath9k: fix intr_txqs setting (Íñigo Huguet) [2043453]
+- ath11k: add hw_param for wakeup_mhi (Íñigo Huguet) [2043453]
+- ath11k: reset RSN/WPA present state for open BSS (Íñigo Huguet) [2043453]
+- ath11k: clear the keys properly via DISABLE_KEY (Íñigo Huguet) [2043453]
+- ath11k: Fix crash caused by uninitialized TX ring (Íñigo Huguet) [2043453]
+- ath11k: use cache line aligned buffers for dbring (Íñigo Huguet) [2043453]
+- ath11k: Fix ETSI regd with weather radar overlap (Íñigo Huguet) [2043453]
+- ath11k: fix FCS_ERR flag in radio tap header (Íñigo Huguet) [2043453]
+- ath11k: fix the value of msecs_to_jiffies in ath11k_debugfs_fw_stats_request (Íñigo Huguet) [2043453]
+- ath11k: fix firmware crash during channel switch (Íñigo Huguet) [2043453]
+- ath11k: Fix 'unused-but-set-parameter' error (Íñigo Huguet) [2043453]
+- ath11k: fix DMA memory free in CE pipe cleanup (Íñigo Huguet) [2043453]
+- ath11k: fix error routine when fallback of add interface fails (Íñigo Huguet) [2043453]
+- ath11k: fix fw crash due to peer get authorized before key install (Íñigo Huguet) [2043453]
+- ath11k: Clear auth flag only for actual association in security mode (Íñigo Huguet) [2043453]
+- ath11k: Send PPDU_STATS_CFG with proper pdev mask to firmware (Íñigo Huguet) [2043453]
+- ath11k: set correct NL80211_FEATURE_DYNAMIC_SMPS for WCN6855 (Íñigo Huguet) [2043453]
+- mac80211: mesh: embedd mesh_paths and mpp_paths into ieee80211_if_mesh (Íñigo Huguet) [2043453]
+- mac80211: initialize variable have_higher_than_11mbit (Íñigo Huguet) [2043453]
+- mac80211: fix locking in ieee80211_start_ap error path (Íñigo Huguet) [2043453]
+- mac80211: do drv_reconfig_complete() before restarting all (Íñigo Huguet) [2043453]
+- mac80211: mark TX-during-stop for TX in in_reconfig (Íñigo Huguet) [2043453]
+- mac80211: update channel context before station state (Íñigo Huguet) [2043453]
+- mac80211: Fix the size used for building probe request (Íñigo Huguet) [2043453]
+- mac80211: fix lookup when adding AddBA extension element (Íñigo Huguet) [2043453]
+- mac80211: validate extended element ID is present (Íñigo Huguet) [2043453]
+- cfg80211: Acquire wiphy mutex on regulatory work (Íñigo Huguet) [2043453]
+- mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock (Íñigo Huguet) [2043453]
+- nl80211: remove reload flag from regulatory_request (Íñigo Huguet) [2043453]
+- mac80211: send ADDBA requests using the tid/queue of the aggregation session (Íñigo Huguet) [2043453]
+- bus: mhi: core: Add support for forced PM resume (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix build regression (Íñigo Huguet) [2043453]
+- brcmsmac: rework LED dependencies (Íñigo Huguet) [2043453]
+- iwlwifi: fix LED dependencies (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: don't crash on invalid rate w/o STA (Íñigo Huguet) [2043453]
+- bus: mhi: pci_generic: Fix device recovery failed issue (Íñigo Huguet) [2043453]
+- mt76: fix key pointer overwrite in mt7921s_write_txwi/mt7663_usb_sdio_write_txwi (Íñigo Huguet) [2043453]
+- rt2x00: do not mark device gone on EPROTO errors during start (Íñigo Huguet) [2043453]
+- nl80211: reset regdom when reloading regdb (Íñigo Huguet) [2043453]
+- mac80211: add docs for ssn in struct tid_ampdu_tx (Íñigo Huguet) [2043453]
+- mac80211: fix a memory leak where sta_info is not freed (Íñigo Huguet) [2043453]
+- mac80211: set up the fwd_skb->dev for mesh forwarding (Íñigo Huguet) [2043453]
+- mac80211: fix regression in SSN handling of addba tx (Íñigo Huguet) [2043453]
+- mac80211: fix rate control for retransmitted frames (Íñigo Huguet) [2043453]
+- mac80211: track only QoS data frames for admission control (Íñigo Huguet) [2043453]
+- mac80211: fix TCP performance on mesh interface (Íñigo Huguet) [2043453]
+- mt76: fix possible pktid leak (Íñigo Huguet) [2043453]
+- mt76: fix timestamp check in tx_status (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix NULL pointer dereference in mt7915_get_phy_mode (Íñigo Huguet) [2043453]
+- iwlwifi: Fix memory leaks in error handling path (Íñigo Huguet) [2043453]
+- iwlwifi: fix warnings produced by kernel debug options (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: retry init flow if failed (Íñigo Huguet) [2043453]
+- iwlwifi: Fix missing error code in iwl_pci_probe() (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: fix constant-conversion warning (Íñigo Huguet) [2043453]
+- mac80211: fix throughput LED trigger (Íñigo Huguet) [2043453]
+- mac80211: fix monitor_sdata RCU/locking assertions (Íñigo Huguet) [2043453]
+- mac80211: drop check for DONT_REORDER in __ieee80211_select_queue (Íñigo Huguet) [2043453]
+- mac80211: fix radiotap header generation (Íñigo Huguet) [2043453]
+- mac80211: do not access the IV when it was stripped (Íñigo Huguet) [2043453]
+- nl80211: fix radio statistics in survey dump (Íñigo Huguet) [2043453]
+- cfg80211: call cfg80211_stop_ap when switch from P2P_GO type (Íñigo Huguet) [2043453]
+- mwifiex: fix division by zero in fw download path (Íñigo Huguet) [2043453]
+- iwlwifi: bump FW API to 67 for AX devices (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: extend session protection on association (Íñigo Huguet) [2043453]
+- iwlwifi: rename CHANNEL_SWITCH_NOA_NOTIF to CHANNEL_SWITCH_START_NOTIF (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: remove session protection on disassoc (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: fix WGDS table print in iwl_mvm_chub_update_mcc() (Íñigo Huguet) [2043453]
+- iwlwifi: rename GEO_TX_POWER_LIMIT to PER_CHAIN_LIMIT_OFFSET_CMD (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: d3: use internal data representation (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: update RFI TLV (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: don't get address of mvm->fwrt just to dereference as a pointer (Íñigo Huguet) [2043453]
+- iwlwifi: yoyo: support for ROM usniffer (Íñigo Huguet) [2043453]
+- iwlwifi: fw: uefi: add missing include guards (Íñigo Huguet) [2043453]
+- iwlwifi: dump host monitor data when NIC doesn't init (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: simplify iwl_pci_find_dev_info() (Íñigo Huguet) [2043453]
+- iwlwifi: ACPI: support revision 3 WGDS tables (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: update sw error interrupt for BZ family (Íñigo Huguet) [2043453]
+- iwlwifi: add new pci SoF with JF (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Use all Rx chains for roaming scan (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: remove two duplicate PNJ device entries (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: refactor dev_info lookup (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: remove duplicate entry (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: fix killer name matching for AX200 (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: fix some kerneldoc issues (Íñigo Huguet) [2043453]
+- ath10k: fix division by zero in send path (Íñigo Huguet) [2043453]
+- ath10k: fix control-message timeout (Íñigo Huguet) [2043453]
+- ath10k: fix module load regression with iram-recovery feature (Íñigo Huguet) [2043453]
+- ath10k: fix invalid dma_addr_t token assignment (Íñigo Huguet) [2043453]
+- ath11k: change return buffer manager for QCA6390 (Íñigo Huguet) [2043453]
+- mt76: connac: fix unresolved symbols when CONFIG_PM is unset (Íñigo Huguet) [2043453]
+- mt76: Make use of the helper macro kthread_run() (Íñigo Huguet) [2043453]
+- mt76: Print error message when reading EEPROM from mtd failed (Íñigo Huguet) [2043453]
+- mt76: mt7921: disable 4addr capability (Íñigo Huguet) [2043453]
+- mt76: mt7915: add debugfs knobs for MCU utilization (Íñigo Huguet) [2043453]
+- mt76: mt7915: add WA firmware log support (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix endiannes warning mt7915_mcu_beacon_check_caps (Íñigo Huguet) [2043453]
+- mt76: mt7915: rework debugfs fixed-rate knob (Íñigo Huguet) [2043453]
+- mt76: mt7915: rework .set_bitrate_mask() to support more options (Íñigo Huguet) [2043453]
+- mt76: mt7915: remove mt7915_mcu_add_he() (Íñigo Huguet) [2043453]
+- mt76: mt7615: apply cached RF data for DBDC (Íñigo Huguet) [2043453]
+- mt76: mt7615: mt7622: fix ibss and meshpoint (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix Wformat build warning (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix mt7921s Kconfig (Íñigo Huguet) [2043453]
+- iwlwifi: pnvm: print out the version properly (Íñigo Huguet) [2043453]
+- iwlwifi: dbg: treat non active regions as unsupported regions (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Read acpi dsm to get channel activation bitmap (Íñigo Huguet) [2043453]
+- iwlwifi: add new device id 7F70 (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: improve log when processing CSA (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: set BT-coex high priority for 802.1X/4-way-HS (Íñigo Huguet) [2043453]
+- iwlwifi: dbg: treat dbgc allocation failure when tlv is missing (Íñigo Huguet) [2043453]
+- iwlwifi: add new killer devices to the driver (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: set inactivity timeouts also for PS-poll (Íñigo Huguet) [2043453]
+- iwlwifi: pcie: try to grab NIC access early (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: reduce WARN_ON() in TX status path (Íñigo Huguet) [2043453]
+- iwlwifi: allow rate-limited error messages (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: remove session protection after auth/assoc (Íñigo Huguet) [2043453]
+- iwlwifi: remove redundant iwl_finish_nic_init() argument (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Add RTS and CTS flags to iwl_tx_cmd_flags. (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: remove csi from iwl_mvm_pass_packet_to_mac80211() (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Support new rate_n_flags for REPLY_RX_MPDU_CMD and RX_NO_DATA_NOTIF (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Support new TX_RSP and COMPRESSED_BA_RES versions (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Support new version of BEACON_TEMPLATE_CMD. (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Add support for new rate_n_flags in tx_cmd. (Íñigo Huguet) [2043453]
+- iwlwifi: BZ Family SW reset support (Íñigo Huguet) [2043453]
+- iwlwifi: BZ Family BUS_MASTER_DISABLE_REQ code duplication (Íñigo Huguet) [2043453]
+- iwlwifi: yoyo: fw debug config from context info and preset (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Support new version of ranging response notification (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Support version 3 of tlc_update_notif. (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: convert old rate & flags to the new format. (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: add definitions for new rate & flags (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: update definitions due to new rate & flags (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: scrub key material in firmware dumps (Íñigo Huguet) [2043453]
+- iwlwifi: parse debug exclude data from firmware file (Íñigo Huguet) [2043453]
+- iwlwifi: fw dump: add infrastructure for dump scrubbing (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: correct sta-state logic for TDLS (Íñigo Huguet) [2043453]
+- iwlwifi: api: fix struct iwl_wowlan_status_v7 kernel-doc (Íñigo Huguet) [2043453]
+- iwlwifi: fix fw/img.c license statement (Íñigo Huguet) [2043453]
+- iwlwifi: remove contact information (Íñigo Huguet) [2043453]
+- iwlwifi: remove MODULE_AUTHOR() statements (Íñigo Huguet) [2043453]
+- iwlwifi: api: remove unused RX status bits (Íñigo Huguet) [2043453]
+- iwlwifi: add some missing kernel-doc in struct iwl_fw (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: Remove antenna c references (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: add support for 160Mhz in ranging measurements (Íñigo Huguet) [2043453]
+- iwlwifi: add vendor specific capabilities for some RFs (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: add lmac/umac PC info in case of error (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: disable RX-diversity in powersave (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: fix ieee80211_get_he_iftype_cap() iftype (Íñigo Huguet) [2043453]
+- iwlwifi: Start scratch debug register for Bz family (Íñigo Huguet) [2043453]
+- iwlwifi: Add support for more BZ HWs (Íñigo Huguet) [2043453]
+- iwlwifi: Add support for getting rf id with blank otp (Íñigo Huguet) [2043453]
+- cfg80211: fix kernel-doc for MBSSID EMA (Íñigo Huguet) [2043453]
+- mac80211: Prevent AP probing during suspend (Íñigo Huguet) [2043453]
+- nl80211: Add LC placeholder band definition to nl80211_band (Íñigo Huguet) [2043453]
+- mac80211: split beacon retrieval functions (Íñigo Huguet) [2043453]
+- cfg80211: separate get channel number from ies (Íñigo Huguet) [2043453]
+- mac80211: use ieee80211_bss_get_elem() in most places (Íñigo Huguet) [2043453]
+- cfg80211: scan: use element finding functions in easy cases (Íñigo Huguet) [2043453]
+- nl80211: use element finding functions (Íñigo Huguet) [2043453]
+- mac80211: fils: use cfg80211_find_ext_elem() (Íñigo Huguet) [2043453]
+- mac80211: fix memory leaks with element parsing (Íñigo Huguet) [2043453]
+- cfg80211: prepare for const netdev->dev_addr (Íñigo Huguet) [2043453]
+- mac80211: use eth_hw_addr_set() (Íñigo Huguet) [2043453]
+- wireless: mac80211_hwsim: use eth_hw_addr_set() (Íñigo Huguet) [2043453]
+- mac80211: debugfs: calculate free buffer size correctly (Íñigo Huguet) [2043453]
+- fq_codel: generalise ce_threshold marking for subset of traffic (Íñigo Huguet) [2043453]
+- wl3501_cs: use eth_hw_addr_set() (Íñigo Huguet) [2043453]
+- ray_cs: use eth_hw_addr_set() (Íñigo Huguet) [2043453]
+- brcmfmac: prepare for const netdev->dev_addr (Íñigo Huguet) [2043453]
+- wireless: use eth_hw_addr_set() instead of ether_addr_copy() (Íñigo Huguet) [2043453]
+- wireless: use eth_hw_addr_set() (Íñigo Huguet) [2043453]
+- iwlwifi: cfg: set low-latency-xtal for some integrated So devices (Íñigo Huguet) [2043453]
+- iwlwifi: pnvm: read EFI data only if long enough (Íñigo Huguet) [2043453]
+- iwlwifi: pnvm: don't kmemdup() more than we have (Íñigo Huguet) [2043453]
+- iwlwifi: change all JnP to NO-160 configuration (Íñigo Huguet) [2043453]
+- iwlwifi: mvm: reset PM state on unsuccessful resume (Íñigo Huguet) [2043453]
+- mwifiex: Deactive host sleep using HSCFG after it was activated manually (Íñigo Huguet) [2043453]
+- mwifiex: Send DELBA requests according to spec (Íñigo Huguet) [2043453]
+- mwifiex: Fix an incorrect comment (Íñigo Huguet) [2043453]
+- mwifiex: Log an error on command failure during key-material upload (Íñigo Huguet) [2043453]
+- mwifiex: Don't log error on suspend if wake-on-wlan is disabled (Íñigo Huguet) [2043453]
+- mt76: mt7915: change max rx len limit of hw modules (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix missing HE phy cap (Íñigo Huguet) [2043453]
+- mt76: mt7915: rework mt7915_mcu_sta_muru_tlv() (Íñigo Huguet) [2043453]
+- mt76: mt7915: enable HE UL MU-MIMO (Íñigo Huguet) [2043453]
+- mt76: mt7921: add per-vif counters in ethtool (Íñigo Huguet) [2043453]
+- mt76: mt7921: move tx amsdu stats in mib_stats (Íñigo Huguet) [2043453]
+- mt76: mt7921: add sta stats accounting in mt7921_mac_add_txs_skb (Íñigo Huguet) [2043453]
+- mt76: mt7921: introduce stats reporting through ethtool (Íñigo Huguet) [2043453]
+- mt76: mt7921: add some more MIB counters (Íñigo Huguet) [2043453]
+- mt76: do not reset MIB counters in get_stats callback (Íñigo Huguet) [2043453]
+- mt76: mt7915: move tx amsdu stats in mib_stats (Íñigo Huguet) [2043453]
+- mt76: mt7915: run mt7915_get_et_stats holding mt76 mutex (Íñigo Huguet) [2043453]
+- mt76: move mt76_ethtool_worker_info in mt76 module (Íñigo Huguet) [2043453]
+- mt76: move mt76_sta_stats in mt76.h (Íñigo Huguet) [2043453]
+- mt76: mt76x0: correct VHT MCS 8/9 tx power eeprom offset (Íñigo Huguet) [2043453]
+- mt76: mt7921s: add reset support (Íñigo Huguet) [2043453]
+- mt76: mt7921: introduce mt7921s support (Íñigo Huguet) [2043453]
+- mt76: mt7921: refactor mt7921_mcu_send_message (Íñigo Huguet) [2043453]
+- mt76: mt7921: rely on mcu_get_nic_capability (Íñigo Huguet) [2043453]
+- mt76: connac: extend mcu_get_nic_capability (Íñigo Huguet) [2043453]
+- mt76: sdio: extend sdio module to support CONNAC2 (Íñigo Huguet) [2043453]
+- mt76: sdio: introduce parse_irq callback (Íñigo Huguet) [2043453]
+- mt76: sdio: move common code in mt76_sdio module (Íñigo Huguet) [2043453]
+- mt76: mt7921: use physical addr to unify register access (Íñigo Huguet) [2043453]
+- mt76: mt7921: make all event parser reusable between mt7921s and mt7921e (Íñigo Huguet) [2043453]
+- mt76: mt7663s: rely on mcu reg access utility (Íñigo Huguet) [2043453]
+- mt76: connac: move mcu reg access utility routines in mt76_connac_lib module (Íñigo Huguet) [2043453]
+- mt76: mt7921: add MT7921_COMMON module (Íñigo Huguet) [2043453]
+- mt76: mt7921: refactor init.c to be bus independent (Íñigo Huguet) [2043453]
+- mt76: mt7921: refactor mcu.c to be bus independent (Íñigo Huguet) [2043453]
+- mt76: mt7921: refactor dma.c to be pcie specific (Íñigo Huguet) [2043453]
+- mt76: mt7921: refactor mac.c to be bus independent (Íñigo Huguet) [2043453]
+- mt76: mt7921: add MU EDCA cmd support (Íñigo Huguet) [2043453]
+- mt76: mt7915: remove dead code in debugfs code (Íñigo Huguet) [2043453]
+- mt76: sdio: export mt76s_alloc_rx_queue and mt76s_alloc_tx routines (Íñigo Huguet) [2043453]
+- mt76: mt7915: improve code readability for xmit-queue handler (Íñigo Huguet) [2043453]
+- mt76: mt7915: introduce mt76 debugfs sub-dir for ext-phy (Íñigo Huguet) [2043453]
+- mt76: rely on phy pointer in mt76_register_debugfs_fops routine signature (Íñigo Huguet) [2043453]
+- mt76: mt7915: set muru platform type (Íñigo Huguet) [2043453]
+- mt76: mt7915: set VTA bit in tx descriptor (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req() (Íñigo Huguet) [2043453]
+- mt76: mt7915: rework starec TLV tags (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix sta_rec_wtbl tag len (Íñigo Huguet) [2043453]
+- mt76: mt7915: improve starec readability of txbf (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix txbf starec TLV issues (Íñigo Huguet) [2043453]
+- mt76: mt7915: introduce mt7915_mcu_beacon_check_caps() (Íñigo Huguet) [2043453]
+- mt76: connac: fix possible NULL pointer dereference in mt76_connac_get_phy_mode_v2 (Íñigo Huguet) [2043453]
+- mt76: do not access 802.11 header in ccmp check for 802.3 rx skbs (Íñigo Huguet) [2043453]
+- mt76: use a separate CCMP PN receive counter for management frames (Íñigo Huguet) [2043453]
+- mt76: mt7921: add delay config for sched scan (Íñigo Huguet) [2043453]
+- mt76: mt7615: fix monitor mode tear down crash (Íñigo Huguet) [2043453]
+- mt76: debugfs: improve queue node readability (Íñigo Huguet) [2043453]
+- mt76: mt7915: add twt_stats knob in debugfs (Íñigo Huguet) [2043453]
+- mt76: mt7915: enable twt responder capability (Íñigo Huguet) [2043453]
+- mt76: mt7915: introduce mt7915_mac_add_twt_setup routine (Íñigo Huguet) [2043453]
+- mt76: mt7915: introduce mt7915_mcu_twt_agrt_update mcu command (Íñigo Huguet) [2043453]
+- mt76: mt7915: introduce __mt7915_get_tsf routine (Íñigo Huguet) [2043453]
+- mt76: drop MCU header size from buffer size in __mt76_mcu_send_firmware (Íñigo Huguet) [2043453]
+- mt76: introduce __mt76_mcu_send_firmware routine (Íñigo Huguet) [2043453]
+- mt76: support reading EEPROM data embedded in fdt (Íñigo Huguet) [2043453]
+- mt76: schedule status timeout at dma completion (Íñigo Huguet) [2043453]
+- mt76: substitute sk_buff_head status_list with spinlock_t status_lock (Íñigo Huguet) [2043453]
+- mt76: remove mt76_wcid pointer from mt76_tx_status_check signature (Íñigo Huguet) [2043453]
+- mt76: introduce packet_id idr (Íñigo Huguet) [2043453]
+- mt76: mt7921: add 6GHz support (Íñigo Huguet) [2043453]
+- mt76: add 6GHz support (Íñigo Huguet) [2043453]
+- mt76: connac: enable hw amsdu @ 6GHz (Íñigo Huguet) [2043453]
+- mt76: connac: add 6GHz support to mt76_connac_mcu_uni_add_bss (Íñigo Huguet) [2043453]
+- mt76: connac: add 6GHz support to mt76_connac_mcu_sta_tlv (Íñigo Huguet) [2043453]
+- mt76: connac: set 6G phymode in single-sku support (Íñigo Huguet) [2043453]
+- mt76: connac: add 6GHz support to mt76_connac_mcu_set_channel_domain (Íñigo Huguet) [2043453]
+- mt76: connac: enable 6GHz band for hw scan (Íñigo Huguet) [2043453]
+- mt76: connac: set 6G phymode in mt76_connac_get_phy_mode{,v2} (Íñigo Huguet) [2043453]
+- mt76: mt7915: add mib counters to ethtool stats (Íñigo Huguet) [2043453]
+- mt76: mt7915: add more MIB registers (Íñigo Huguet) [2043453]
+- mt76: mt7915: add tx mu/su counters to mib (Íñigo Huguet) [2043453]
+- mt76: mt7915: add some per-station tx stats to ethtool (Íñigo Huguet) [2043453]
+- mt76: mt7915: add tx stats gathered from tx-status callbacks (Íñigo Huguet) [2043453]
+- mt76: mt7915: add ethtool stats support (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix retrying release semaphore without end (Íñigo Huguet) [2043453]
+- mt76: mt7921: robustify hardware initialization flow (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix possible infinite loop release semaphore (Íñigo Huguet) [2043453]
+- mt76: mt7915: honor all possible error conditions in mt7915_mcu_init() (Íñigo Huguet) [2043453]
+- mt76: move spin_lock_bh to spin_lock in tasklet (Íñigo Huguet) [2043453]
+- mt76: mt7921: remove mt7921_sta_stats (Íñigo Huguet) [2043453]
+- mt76: mt7921: remove mcu rate reporting code (Íñigo Huguet) [2043453]
+- mt76: mt7921: report tx rate directly from tx status (Íñigo Huguet) [2043453]
+- mt76: mt7921: add support for tx status reporting (Íñigo Huguet) [2043453]
+- mt76: mt7921: start reworking tx rate reporting (Íñigo Huguet) [2043453]
+- mt76: mt7615: fix hwmon temp sensor mem use-after-free (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix hwmon temp sensor mem use-after-free (Íñigo Huguet) [2043453]
+- mt76: mt7915: enable configured beacon tx rate (Íñigo Huguet) [2043453]
+- mt76: disable BH around napi_schedule() calls (Íñigo Huguet) [2043453]
+- mt76: fill boottime_ns in Rx path (Íñigo Huguet) [2043453]
+- mt76: switch from 'pci_' to 'dma_' API (Íñigo Huguet) [2043453]
+- mt76: fix boolreturn.cocci warnings (Íñigo Huguet) [2043453]
+- mt76: mt7921: update mib counters dumping phy stats (Íñigo Huguet) [2043453]
+- mt76: mt7921: always wake device if necessary in debugfs (Íñigo Huguet) [2043453]
+- mt76: mt7915: rename debugfs tx-queues (Íñigo Huguet) [2043453]
+- mt76: mt7915: rework debugfs queue info (Íñigo Huguet) [2043453]
+- mt76: mt7921: move mt7921_queue_rx_skb to mac.c (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix WMM index on DBDC cards (Íñigo Huguet) [2043453]
+- mt76: mt7915: improve code readability in mt7915_mcu_sta_bfer_ht (Íñigo Huguet) [2043453]
+- mt76: mt7915: introduce bss coloring support (Íñigo Huguet) [2043453]
+- mt76: mt7915: add LED support (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix potential NPE in TXS processing (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix he_mcs capabilities for 160mhz (Íñigo Huguet) [2043453]
+- mt76: use IEEE80211_OFFLOAD_ENCAP_ENABLED instead of MT_DRV_AMSDU_OFFLOAD (Íñigo Huguet) [2043453]
+- mt76: mt7915: update mac timing settings (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix endianness warnings in mt7921_mac_decode_he_mu_radiotap (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix kernel warning from cfg80211_calculate_bitrate (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix firmware usage of RA info using legacy rates (Íñigo Huguet) [2043453]
+- mt76: mt7915: add HE-LTF into fixed rate command (Íñigo Huguet) [2043453]
+- mt76: mt7921: report HE MU radiotap (Íñigo Huguet) [2043453]
+- mt76: mt7615: move mt7615_mcu_set_p2p_oppps in mt76_connac module (Íñigo Huguet) [2043453]
+- mt76: overwrite default reg_ops if necessary (Íñigo Huguet) [2043453]
+- mt76: mt7921: introduce mt7921_mcu_set_beacon_filter utility routine (Íñigo Huguet) [2043453]
+- mt76: mt7921: get rid of mt7921_mac_set_beacon_filter (Íñigo Huguet) [2043453]
+- mt76: mt7921: get rid of monitor_vif (Íñigo Huguet) [2043453]
+- mt76: connac: add support for limiting to maximum regulatory Tx power (Íñigo Huguet) [2043453]
+- mt76: connac: fix GTK rekey offload failure on WPA mixed mode (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix dma hang in rmmod (Íñigo Huguet) [2043453]
+- mt76: add support for setting mcast rate (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix bit fields for HT rate idx (Íñigo Huguet) [2043453]
+- mt76: mt7915: switch proper tx arbiter mode in testmode (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix potential overflow of eeprom page index (Íñigo Huguet) [2043453]
+- mt76: mt7921: send EAPOL frames at lowest rate (Íñigo Huguet) [2043453]
+- mt76: mt7915: send EAPOL frames at lowest rate (Íñigo Huguet) [2043453]
+- mt76: mt7915: add control knobs for thermal throttling (Íñigo Huguet) [2043453]
+- mt76: mt7921: Add mt7922 support (Íñigo Huguet) [2043453]
+- mt76: mt7615: fix skb use-after-free on mac reset (Íñigo Huguet) [2043453]
+- mt76: mt7921: Fix out of order process by invalid event pkt (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix mgmt frame using unexpected bitrate (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix mgmt frame using unexpected bitrate (Íñigo Huguet) [2043453]
+- mt76: add mt76_default_basic_rate more devices can rely on (Íñigo Huguet) [2043453]
+- mt76: mt7921: introduce testmode support (Íñigo Huguet) [2043453]
+- mt76: mt7915: remove mt7915_sta_stats (Íñigo Huguet) [2043453]
+- mt76: mt7915: report tx rate directly from tx status (Íñigo Huguet) [2043453]
+- mt76: mt7915: cleanup -Wunused-but-set-variable (Íñigo Huguet) [2043453]
+- mt76: mt7915: take RCU read lock when calling ieee80211_bss_get_elem() (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix an off-by-one bound check (Íñigo Huguet) [2043453]
+- mt76: mt7921: add .set_sar_specs support (Íñigo Huguet) [2043453]
+- mt76: mt7915: adapt new firmware to update BA winsize for Rx session (Íñigo Huguet) [2043453]
+- mt76: mt7915: report HE MU radiotap (Íñigo Huguet) [2043453]
+- mt76: mt76x02: fix endianness warnings in mt76x02_mac.c (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix survey-dump reporting (Íñigo Huguet) [2043453]
+- mt76: fix build error implicit enumeration conversion (Íñigo Huguet) [2043453]
+- mt76: mt7921: enable aspm by default (Íñigo Huguet) [2043453]
+- mt76: connac: fix mt76_connac_gtk_rekey_tlv usage (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix calling mt76_wcid_alloc with incorrect parameter (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix info leak in mt7915_mcu_set_pre_cal() (Íñigo Huguet) [2043453]
+- mt76: mt7615: fix endianness warning in mt7615_mac_write_txwi (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix endianness warning in mt7921_update_txs (Íñigo Huguet) [2043453]
+- mt76: mt7915: fix endianness warning in mt7915_mac_add_txs_skb (Íñigo Huguet) [2043453]
+- mt76: mt7921: avoid unnecessary spin_lock/spin_unlock in mt7921_mcu_tx_done_event (Íñigo Huguet) [2043453]
+- mt76: mt7921: fix endianness in mt7921_mcu_tx_done_event (Íñigo Huguet) [2043453]
+- mwifiex: Try waking the firmware until we get an interrupt (Íñigo Huguet) [2043453]
+- mwifiex: Read a PCI register after writing the TX ring write pointer (Íñigo Huguet) [2043453]
+- fq_codel: implement L4S style ce_threshold_ect1 marking (Íñigo Huguet) [2043453]
+- net: add skb_get_dsfield() helper (Íñigo Huguet) [2043453]
+- wireless: Remove redundant 'flush_workqueue()' calls (Íñigo Huguet) [2043453]
+- mt7601u: Remove redundant initialization of variable ret (Íñigo Huguet) [2043453]
+- rtlwifi: rtl8192ee: Remove redundant initialization of variable version (Íñigo Huguet) [2043453]
+- ath10k: fix max antenna gain unit (Íñigo Huguet) [2043453]
+- ath9k: fix an IS_ERR() vs NULL check (Íñigo Huguet) [2043453]
+- ath11k: Identify DFS channel when sending scan channel list command (Íñigo Huguet) [2043453]
+- ath9k: support DT ieee80211-freq-limit property to limit channels (Íñigo Huguet) [2043453]
+- ath11k: Change number of TCL rings to one for QCA6390 (Íñigo Huguet) [2043453]
+- ath11k: Handle MSI enablement during rmmod and SSR (Íñigo Huguet) [2043453]
+- ath: dfs_pattern_detector: Fix possible null-pointer dereference in channel_detector_create() (Íñigo Huguet) [2043453]
+- ath11k: Use kcalloc() instead of kzalloc() (Íñigo Huguet) [2043453]
+- ath11k: Remove redundant assignment to variable fw_size (Íñigo Huguet) [2043453]
+- ath11k: fix m68k and xtensa build failure in ath11k_peer_assoc_h_smps() (Íñigo Huguet) [2043453]
+- ath11k: Fix spelling mistake "incompaitiblity" -> "incompatibility" (Íñigo Huguet) [2043453]
+- ath11k: Remove unused variable in ath11k_dp_rx_mon_merg_msdus() (Íñigo Huguet) [2043453]
+- ath9k: Fix potential interrupt storm on queue reset (Íñigo Huguet) [2043453]
+- ath9k: add option to reset the wifi chip via debugfs (Íñigo Huguet) [2043453]
+- ath10k: Don't always treat modem stop events as crashes (Íñigo Huguet) [2043453]
+- rtl8xxxu: Use lower tx rates for the ack packet (Íñigo Huguet) [2043453]
+- brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet (Íñigo Huguet) [2043453]
+- rtw88: refine fw_crash debugfs to show non-zero while triggering (Íñigo Huguet) [2043453]
+- rtw88: fix RX clock gate setting while fifo dump (Íñigo Huguet) [2043453]
+- net: qrtr: combine nameservice into main module (Íñigo Huguet) [2043453]
+- ath10k: sdio: Add missing BH locking around napi_schdule() (Íñigo Huguet) [2043453]
+- ath10k: Fix missing frame timestamp for beacon/probe-resp (Íñigo Huguet) [2043453]
+- ath10k: high latency fixes for beacon buffer (Íñigo Huguet) [2043453]
+- ath11k: Change DMA_FROM_DEVICE to DMA_TO_DEVICE when map reinjected packets (Íñigo Huguet) [2043453]
+- ath11k: support SMPS configuration for 6 GHz (Íñigo Huguet) [2043453]
+- ath11k: add 6 GHz params in peer assoc command (Íñigo Huguet) [2043453]
+- ieee80211: Add new A-MPDU factor macro for HE 6 GHz peer caps (Íñigo Huguet) [2043453]
+- ath11k: indicate to mac80211 scan complete with aborted flag for ATH11K_SCAN_STARTING state (Íñigo Huguet) [2043453]
+- ath11k: indicate scan complete for scan canceled when scan running (Íñigo Huguet) [2043453]
+- ath11k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED (Íñigo Huguet) [2043453]
+- ath11k: add HTT stats support for new stats (Íñigo Huguet) [2043453]
+- ath11k: Change masking and shifting in htt stats (Íñigo Huguet) [2043453]
+- ath11k: Remove htt stats fixed size array usage (Íñigo Huguet) [2043453]
+- ath11k: Replace HTT_DBG_OUT with scnprintf (Íñigo Huguet) [2043453]
+- ath11k: Rename macro ARRAY_TO_STRING to PRINT_ARRAY_TO_BUF (Íñigo Huguet) [2043453]
+- ath11k: Fix memory leak in ath11k_qmi_driver_event_work (Íñigo Huguet) [2043453]
+- ath11k: Fix inaccessible debug registers (Íñigo Huguet) [2043453]
+- ath11k: Drop MSDU with length error in DP rx path (Íñigo Huguet) [2043453]
+- ath11k: copy cap info of 6G band under WMI_HOST_WLAN_5G_CAP for WCN6855 (Íñigo Huguet) [2043453]
+- ath11k: enable 6G channels for WCN6855 (Íñigo Huguet) [2043453]
+- ath11k: re-enable ht_cap/vht_cap for 5G band for WCN6855 (Íñigo Huguet) [2043453]
+- ath11k: fix survey dump collection in 6 GHz (Íñigo Huguet) [2043453]
+- ath11k: fix packet drops due to incorrect 6 GHz freq value in rx status (Íñigo Huguet) [2043453]
+- ath11k: add channel 2 into 6 GHz channel list (Íñigo Huguet) [2043453]
+- mac80211: MBSSID support in interface handling (Íñigo Huguet) [2043453]
+- ath11k: Add wmi peer create conf event in wmi_tlv_event_id (Íñigo Huguet) [2043453]
+- ath11k: Avoid "No VIF found" warning message (Íñigo Huguet) [2043453]
+- ath11k: Fix crash during firmware recovery on reo cmd ring access (Íñigo Huguet) [2043453]
+- ath11k: Assign free_vdev_map value before ieee80211_register_hw (Íñigo Huguet) [2043453]
+- ath11k: Add vdev start flag to disable hardware encryption (Íñigo Huguet) [2043453]
+- ath11k: Avoid race during regd updates (Íñigo Huguet) [2043453]
+- ath11k: Avoid reg rules update during firmware recovery (Íñigo Huguet) [2043453]
+- ath11k: Update pdev tx and rx firmware stats (Íñigo Huguet) [2043453]
+- ath11k: Fix pktlog lite rx events (Íñigo Huguet) [2043453]
+- ath11k: Add support for RX decapsulation offload (Íñigo Huguet) [2043453]
+- ath11k: fix some sleeping in atomic bugs (Íñigo Huguet) [2043453]
+- ath11k: qmi: avoid error messages when dma allocation fails (Íñigo Huguet) [2043453]
+- ath11k: Replace one-element array with flexible-array member (Íñigo Huguet) [2043453]
+- ath11k: add caldata download support from EEPROM (Íñigo Huguet) [2043453]
+- ath11k: add caldata file for multiple radios (Íñigo Huguet) [2043453]
+- ath11k: clean up BDF download functions (Íñigo Huguet) [2043453]
+- ath11k: use hw_params to access board_size and cal_offset (Íñigo Huguet) [2043453]
+- ath11k: Wstringop-overread warning (Íñigo Huguet) [2043453]
+- ath11k: Add spectral scan support for QCN9074 (Íñigo Huguet) [2043453]
+- ath11k: Fix the spectral minimum FFT bin count (Íñigo Huguet) [2043453]
+- ath11k: Introduce spectral hw configurable param (Íñigo Huguet) [2043453]
+- ath11k: Refactor spectral FFT bin size (Íñigo Huguet) [2043453]
+- ath11k: add support for 80P80 and 160 MHz bandwidth (Íñigo Huguet) [2043453]
+- ath11k: add support for setting fixed HE rate/gi/ltf (Íñigo Huguet) [2043453]
+- nl80211: MBSSID and EMA support in AP mode (Íñigo Huguet) [2043453]
+- nl80211: don't kfree() ERR_PTR() value (Íñigo Huguet) [2043453]
+- cfg80211: always free wiphy specific regdomain (Íñigo Huguet) [2043453]
+- mac80211: save transmit power envelope element and power constraint (Íñigo Huguet) [2043453]
+- mac80211: add parse regulatory info in 6 GHz operation information (Íñigo Huguet) [2043453]
+- ieee80211: add power type definition for 6 GHz (Íñigo Huguet) [2043453]
+- mac80211: twt: don't use potentially unaligned pointer (Íñigo Huguet) [2043453]
+- cfg80211: AP mode driver offload for FILS association crypto (Íñigo Huguet) [2043453]
+- ath11k: monitor mode clean up to use separate APIs (Íñigo Huguet) [2043453]
+- ath11k: add separate APIs for monitor mode (Íñigo Huguet) [2043453]
+- ath11k: move static function ath11k_mac_vdev_setup_sync to top (Íñigo Huguet) [2043453]
+- rtw88: 8821c: correct 2.4G tx power for type 2/4 NIC (Íñigo Huguet) [2043453]
+- rtw88: 8821c: support RFE type4 wifi NIC (Íñigo Huguet) [2043453]
+- brcmfmac: Replace zero-length array with flexible array member (Íñigo Huguet) [2043453]
+- mac80211_hwsim: enable 6GHz channels (Íñigo Huguet) [2043453]
+- mac80211: use ieee802_11_parse_elems() in ieee80211_prep_channel() (Íñigo Huguet) [2043453]
+- nl80211: don't put struct cfg80211_ap_settings on stack (Íñigo Huguet) [2043453]
+- mac80211: always allocate struct ieee802_11_elems (Íñigo Huguet) [2043453]
+- mac80211: mlme: find auth challenge directly (Íñigo Huguet) [2043453]
+- mac80211: move CRC into struct ieee802_11_elems (Íñigo Huguet) [2043453]
+- mac80211: mesh: clean up rx_bcn_presp API (Íñigo Huguet) [2043453]
+- mac80211: reduce stack usage in debugfs (Íñigo Huguet) [2043453]
+- nl80211: prefer struct_size over open coded arithmetic (Íñigo Huguet) [2043453]
+- mac80211: check hostapd configuration parsing twt requests (Íñigo Huguet) [2043453]
+- cfg80211: honour V=1 in certificate code generation (Íñigo Huguet) [2043453]
+- rt2x00: remove duplicate USB device ID (Íñigo Huguet) [2043453]
+- mwifiex: Fix copy-paste mistake when creating virtual interface (Íñigo Huguet) [2043453]
+- mwifiex: Properly initialize private structure on interface type changes (Íñigo Huguet) [2043453]
+- mwifiex: Handle interface type changes from AP to STATION (Íñigo Huguet) [2043453]
+- mwifiex: Allow switching interface type from P2P_CLIENT to P2P_GO (Íñigo Huguet) [2043453]
+- mwifiex: Update virtual interface counters right after setting bss_type (Íñigo Huguet) [2043453]
+- mwifiex: Use helper function for counting interface types (Íñigo Huguet) [2043453]
+- mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type (Íñigo Huguet) [2043453]
+- mwifiex: Use function to check whether interface type change is allowed (Íñigo Huguet) [2043453]
+- mwifiex: Small cleanup for handling virtual interface type changes (Íñigo Huguet) [2043453]
+- rtw88: move adaptivity mechanism to firmware (Íñigo Huguet) [2043453]
+- rtw88: support adaptivity for ETSI/JP DFS region (Íñigo Huguet) [2043453]
+- rtw88: add regulatory strategy by chip type (Íñigo Huguet) [2043453]
+- rtw88: upgrade rtw_regulatory mechanism and mapping (Íñigo Huguet) [2043453]
+- brcmfmac: fix incorrect error prints (Íñigo Huguet) [2043453]
+- ath11k: Align bss_chan_info structure with firmware (Íñigo Huguet) [2043453]
+- ath11k: add support in survey dump with bss_chan_info (Íñigo Huguet) [2043453]
+- ath11k: Rename atf_config to flag1 in target_resource_config (Íñigo Huguet) [2043453]
+- ath11k: fix 4addr multicast packet tx (Íñigo Huguet) [2043453]
+- ath11k: fix 4-addr tx failure for AP and STA modes (Íñigo Huguet) [2043453]
+- ath9k: owl-loader: fetch pci init values through nvmem (Íñigo Huguet) [2043453]
+- ath9k: fetch calibration data via nvmem subsystem (Íñigo Huguet) [2043453]
+- ath9k: Use tasklet_disable_in_atomic() (Íñigo Huguet) [2043453]
+- mt76: fix wrong conflict resolution in previous backport (Íñigo Huguet) [2043453]
+- mac80211: Allow HE operation to be longer than expected. (Íñigo Huguet) [2043453]
+- revert ath11k: add support for WCN6855 hw2.1 (Íñigo Huguet) [2043453]
+- RDMA/mlx5: Delete right entry from MR signature database (Amir Tzin) [1982191]
+- net/mlx5e: Fix select queue to consider SKBTX_HW_TSTAMP (Amir Tzin) [1982191]
+- net/mlx5e: Don't update netdev RQs with PTP-RQ (Amir Tzin) [1982191]
+- net/mlx5e: Fix an error code in mlx5e_arfs_create_tables() (Amir Tzin) [1982191]
+- net/mlx5e: Fix conflict with HW TS and CQE compression (Amir Tzin) [1982191]
+- net/mlx5e: Fix HW TS with CQE compression according to profile (Amir Tzin) [1982191]
+- mlx5e: add add missing BH locking around napi_schdule() (Amir Tzin) [1982191]
+- net/mlx5: Don't overwrite HCA capabilities when setting MSI-X count (Amir Tzin) [1982191]
+- net/mlx5: Fix err prints and return when creating termination table (Amir Tzin) [1982191]
+- RDMA/mlx5: Verify that DM operation is reasonable (Amir Tzin) [1982191]
+- RDMA/mlx5: Expose private query port (Amir Tzin) [1982191]
+- RDMA/mlx5: Fix type assignment for ICM DM (Amir Tzin) [1982191]
+- net/mlx5: DR, Add support for isolate_vl_tc QP (Amir Tzin) [1982191]
+- net/mlx5: DR, Add support for force-loopback QP (Amir Tzin) [1982191]
+- net/mlx5: DR, Add support for matching tunnel GTP-U (Amir Tzin) [1982191]
+- net/mlx5: DR, Set flex parser for TNL_MPLS dynamically (Amir Tzin) [1982191]
+- net/mlx5: DR, Add support for matching on geneve TLV option (Amir Tzin) [1982191]
+- net/mlx5: DR, Set STEv0 ICMP flex parser dynamically (Amir Tzin) [1982191]
+- net/mlx5: DR, Add support for dynamic flex parser (Amir Tzin) [1982191]
+- net/mlx5: DR, Remove protocol-specific flex_parser_3 definitions (Amir Tzin) [1982191]
+- net/mlx5: mlx5_ifc updates for flex parser (Amir Tzin) [1982191]
+- net/mlx5: E-Switch, Improve error messages in term table creation (Amir Tzin) [1982191]
+- net/mlx5: DR, Rename an argument in dr_rdma_segments (Amir Tzin) [1982191]
+- net/mlx5e: RX, Add checks for calculated Striding RQ attributes (Amir Tzin) [1982191]
+- net/mlx5e: Fix possible non-initialized struct usage (Amir Tzin) [1982191]
+- mlx5: implement ethtool standard stats (Amir Tzin) [1982191]
+- net/mlx5: Enhance diagnostics info for TX/RX reporters (Amir Tzin) [1982191]
+- net/mlx5: Add helper to initialize 1PPS (Amir Tzin) [1982191]
+- net/mlx5e: Add ethtool extended link state (Amir Tzin) [1982191 1982232]
+- net/mlx5: Add register layout to support extended link state (Amir Tzin) [1982191 1982232]
+- net/mlx5: Allocate FC bulk structs with kvzalloc() instead of kzalloc() (Amir Tzin) [1982191]
+- net/mlx5e: Cleanup safe switch channels API by passing params (Amir Tzin) [1982191]
+- net/mlx5e: Refactor on-the-fly configuration changes (Amir Tzin) [1982191]
+- net/mlx5e: Use mlx5e_safe_switch_channels when channels are closed (Amir Tzin) [1982191]
+- net/mlx5e: Allow mlx5e_safe_switch_channels to work with channels closed (Amir Tzin) [1982191]
+- mlx5: implement ethtool::get_fec_stats (Amir Tzin) [1982191]
+- net/mlx5e: Fix RQ creation flow for queues which doesn't support XDP (Amir Tzin) [1982191]
+- net/mlx5: Remove return statement exist at the end of void function (Amir Tzin) [1982191]
+- net/mlx5: Add a blank line after declarations (Amir Tzin) [1982191]
+- net/mlx5: DR, Alloc cmd buffer with kvzalloc() instead of kzalloc() (Amir Tzin) [1982191]
+- net/mlx5: DR, Use variably sized data structures for different actions (Amir Tzin) [1982191]
+- RDMA/mlx5: Expose UAPI to query DM (Amir Tzin) [1982191 1926606 1926603]
+- RDMA/mlx5: Add support in MEMIC operations (Amir Tzin) [1982191 1926606 1926603]
+- RDMA/mlx5: Add support to MODIFY_MEMIC command (Amir Tzin) [1982191 1926606 1926603]
+- RDMA/mlx5: Re-organize the DM code (Amir Tzin) [1982191 1926606 1926603]
+- RDMA/mlx5: Move all DM logic to separate file (Amir Tzin) [1982191 1926606 1926603]
+- net/mlx5: Add MEMIC operations related bits (Amir Tzin) [1982191 1926606 1926603]
+- net/mlx5: Add support for DSFP module EEPROM dumps (Amir Tzin) [1982191 1982233]
+- net/mlx5: Implement get_module_eeprom_by_page() (Amir Tzin) [1982191 1982233]
+- net/mlx5: Refactor module EEPROM query (Amir Tzin) [1982191 1982233]
+- IB/mlx5: Reduce max order of memory allocated for xlt update (Amir Tzin) [1982191]
+- net/mlx5: Implement sriov_get_vf_total_msix/count() callbacks (Amir Tzin) [1982191 1982230]
+- net/mlx5: Dynamically assign MSI-X vectors count (Amir Tzin) [1982191 1982230]
+- net/mlx5: Add dynamic MSI-X capabilities bits (Amir Tzin) [1982191 1982230]
+- net/mlx5e: Dynamic alloc vlan table for netdev when needed (Amir Tzin) [1982191]
+- net/mlx5e: Dynamic alloc arfs table for netdev when needed (Amir Tzin) [1982191]
+- net/mlx5: Use ida_alloc_range() instead of ida_simple_alloc() (Amir Tzin) [1982191]
+- net/mlx5e: Update ethtool setting of CQE compression (Amir Tzin) [1982191]
+- net/mlx5e: Allow coexistence of CQE compression and HW TS PTP (Amir Tzin) [1982191]
+- net/mlx5e: Add PTP Flow Steering support (Amir Tzin) [1982191]
+- net/mlx5e: Introduce Flow Steering ANY API (Amir Tzin) [1982191]
+- net/mlx5e: Introduce Flow Steering UDP API (Amir Tzin) [1982191]
+- net/mlx5e: Cleanup Flow Steering level (Amir Tzin) [1982191]
+- net/mlx5e: Add PTP RQ to RX reporter (Amir Tzin) [1982191]
+- net/mlx5e: Refactor RX reporter diagnostics (Amir Tzin) [1982191]
+- net:mlx5e: Add PTP-TIR and PTP-RQT (Amir Tzin) [1982191]
+- net/mlx5e: Add PTP-RX statistics (Amir Tzin) [1982191]
+- net/mlx5e: Add RQ to PTP channel (Amir Tzin) [1982191]
+- net/mlx5e: Add states to PTP channel (Amir Tzin) [1982191]
+- RDMA/mlx5: Set ODP caps only if device profile support ODP (Amir Tzin) [1982191]
+- net/mlx5e: Cleanup PTP (Amir Tzin) [1982191]
+- net/mlx5e: Generalize PTP implementation (Amir Tzin) [1982191]
+- net/mlx5e: Generalize direct-TIRs and direct-RQTs API (Amir Tzin) [1982191]
+- net/mlx5e: Generalize close RQ (Amir Tzin) [1982191]
+- net/mlx5e: Generalize RQ activation (Amir Tzin) [1982191]
+- net/mlx5e: Generalize open RQ (Amir Tzin) [1982191]
+- net/mlx5: Add helper to set time-stamp translator on a queue (Amir Tzin) [1982191]
+- net/mlx5e: Allow creating mpwqe info without channel (Amir Tzin) [1982191]
+- net/mlx5e: alloc the correct size for indirection_rqt (Amir Tzin) [1982191]
+- net: ethernet: indir_table.h is included twice (Amir Tzin) [1982191 1982195]
+- RDMA/mlx5: Create ODP EQ only when ODP MR is created (Amir Tzin) [1982191]
+- RDMA/mlx5: Add missing returned error check of mlx5_ib_dereg_mr (Amir Tzin) [1982191]
+- net/mlx5: Move devlink port from mlx5e priv to mlx5e resources (Amir Tzin) [1982191]
+- net/mlx5e: Allow to match on ICMP parameters (Amir Tzin) [1982191]
+- net/mlx5: Display the command index in command mailbox dump (Amir Tzin) [1982191]
+- net/mlx5e: allocate 'indirection_rqt' buffer dynamically (Amir Tzin) [1982191]
+- net/mlx5e: Dump ICOSQ WQE descriptor on CQE with error events (Amir Tzin) [1982191]
+- net/mlx5e: Use net_prefetchw instead of prefetchw in MPWQE TX datapath (Amir Tzin) [1982191]
+- net/mlx5e: Remove redundant newline in NL_SET_ERR_MSG_MOD (Amir Tzin) [1982191]
+- net/mlx5: Read congestion counters from all ports when lag is active (Amir Tzin) [1982191]
+- net/mlx5: remove unneeded semicolon (Amir Tzin) [1982191]
+- net/mlx5: DR, Remove unneeded rx_decap_l3 function for STEv1 (Amir Tzin) [1982191]
+- net/mlx5: Use order-0 allocations for EQs (Amir Tzin) [1982191]
+- net/mlx5: Add IFC bits needed for single FDB mode (Amir Tzin) [1982191]
+- net/mlx5: E-Switch, Refactor send to vport to be more generic (Amir Tzin) [1982191 1982195]
+- RDMA/mlx5: Use representor E-Switch when getting netdev and metadata (Amir Tzin) [1982191]
+- net/mlx5: E-Switch, Add eswitch pointer to each representor (Amir Tzin) [1982191 1982195]
+- net/mlx5: E-Switch, Add match on vhca id to default send rules (Amir Tzin) [1982191 1982195]
+- net/mlx5: Remove unused mlx5_core_health member recover_work (Amir Tzin) [1982191]
+- net/mlx5: simplify the return expression of mlx5_esw_offloads_pair() (Amir Tzin) [1982191 1982195]
+- net/mlx5: Cleanup prototype warning (Amir Tzin) [1982191]
+- RDMA/mlx5: Allow larger pages in DevX umem (Amir Tzin) [1982191]
+- RDMA/mlx5: Rename mlx5_mr_cache_invalidate() to revoke_mr() (Amir Tzin) [1982191]
+- RDMA/mlx5: Consolidate MR destruction to mlx5_ib_dereg_mr() (Amir Tzin) [1982191]
+- RDMA/mlx5: Use a union inside mlx5_ib_mr (Amir Tzin) [1982191]
+- platform/mellanox: mlxbf-tmfifo: Fix a memory barrier issue (Amir Tzin) [2018145]
+- mmc: dw_mmc-bluefield: : Fix the license information (Amir Tzin) [2018145]
+- mmc: dw_mmc-bluefield: simplify the probe() function (Amir Tzin) [2018145]
+- benet: mark device 0xe220 (Lancer) as deprecated (Michal Schmidt) [2054409]
+- myri10ge: mark as deprecated (Michal Schmidt) [2054409]
+- liquidio: mark as deprecated, not unmaintained (Michal Schmidt) [2054409]
+- netxen_nic: remove unmaintained mark, keep deprecated (Michal Schmidt) [2054409]
+- bnx2: mark as deprecated, not unmaintained (Michal Schmidt) [2054409]
+- SUNRPC: Don't dereference xprt->snd_task if it's a cookie (Dave Wysochanski) [2046545]
+- SUNRPC: Add source address/port to rpc_socket* traces (Dave Wysochanski) [2046545]
+- netfilter: conntrack: re-init state for retransmitted syn-ack (Florian Westphal) [2043093]
+- netfilter: conntrack: move synack init code to helper (Florian Westphal) [2043093]
+
+* Wed Feb 23 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-370.el8]
+- ibmvnic: remove unused defines (Diego Domingos) [2047920]
+- ibmvnic: Update driver return codes (Diego Domingos) [2047920]
+- ARM: iop32x: disable N2100 PCI parity reporting (Josef Oskera) [2031880]
+- r8169: fix incorrect mac address assignment (Josef Oskera) [2031880]
+- r8169: Add device 10ec:8162 to driver r8169 (Josef Oskera) [2031880]
+- ethernet: r8169: use eth_hw_addr_set() (Josef Oskera) [2031880]
+- net: phy: realtek: add support for RTL8365MB-VC internal PHYs (Josef Oskera) [2031880]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Josef Oskera) [2031880]
+- r8169: enable ASPM L0s state (Josef Oskera) [2031880]
+- r8169: rename rtl_csi_access_enable to rtl_set_aspm_entry_latency (Josef Oskera) [2031880]
+- r8169: change the L0/L1 entrance latencies for RTL8106e (Josef Oskera) [2031880]
+- Revert "r8169: avoid link-up interrupt issue on RTL8106e if user enables ASPM" (Josef Oskera) [2031880]
+- r8169: Avoid duplicate sysfs entry creation error (Josef Oskera) [2031880]
+- r8169: Avoid memcpy() over-reading of ETH_SS_STATS (Josef Oskera) [2031880]
+- r8169: avoid link-up interrupt issue on RTL8106e if user enables ASPM (Josef Oskera) [2031880]
+- net: phy: realtek: net: Fix less than zero comparison of a u16 (Josef Oskera) [2031880]
+- net: phy: realtek: add delay to fix RXC generation issue (Josef Oskera) [2031880]
+- net: phy: realtek: add dt property to enable ALDPS mode (Josef Oskera) [2031880]
+- net: phy: realtek: add dt property to disable CLKOUT clock (Josef Oskera) [2031880]
+- r8169: Fix fall-through warning for Clang (Josef Oskera) [2031880]
+- r8169: use KBUILD_MODNAME instead of own module name definition (Josef Oskera) [2031880]
+- r8169: keep pause settings on interface down/up cycle (Josef Oskera) [2031880]
+- r8169: add support for pause ethtool ops (Josef Oskera) [2031880]
+- r8169: use mac-managed PHY PM (Josef Oskera) [2031880]
+- r8169: remove rtl_hw_start_8168c_3 (Josef Oskera) [2031880]
+- r8169: add support for ethtool get_ringparam (Josef Oskera) [2031880]
+- r8169: use lower_32_bits/upper_32_bits macros (Josef Oskera) [2031880]
+- net: phy: make PHY PM ops a no-op if MAC driver manages PHY PM (Josef Oskera) [2031880]
+- mm/gup: remove unused get_user_pages_locked() (Chris von Recklinghausen) [2048650]
+- mm: change lookup_node() to use get_user_pages_fast() (Chris von Recklinghausen) [2048650]
+- mm/gup: remove unused pin_user_pages_locked() (Chris von Recklinghausen) [2048650]
+- mm/gup: follow_pfn_pte(): -EEXIST cleanup (Chris von Recklinghausen) [2048650]
+- mm: fix invalid page pointer returned with FOLL_PIN gups (Chris von Recklinghausen) [2048650]
+- mm: fix typos in comments (Chris von Recklinghausen) [2048650]
+- vfio/iommu_type1: replace kfree with kvfree (Alex Williamson) [2046547]
+- vfio/pci: Fix error return code in vfio_ecap_init() (Alex Williamson) [2046547]
+- vfio/pci: Add missing range check in vfio_pci_mmap (Alex Williamson) [2046547]
+- vfio/mdev: Do not allow a mdev_type to have a NULL parent pointer (Alex Williamson) [2046547]
+- vfio/mdev: Make to_mdev_device() into a static inline (Alex Williamson) [2046547]
+- vfio/iommu_type1: Mantain a counter for non_pinned_groups (Alex Williamson) [2046547]
+- vfio/iommu_type1: Fix some sanity checks in detach group (Alex Williamson) [2046547]
+- vfio/iommu_type1: Populate full dirty when detach non-pinned group (Alex Williamson) [2046547]
+- vfio/pci: Move dummy_resources_list init in vfio_pci_probe() (Alex Williamson) [2046547]
+- vfio/virqfd: Drain events from eventfd in virqfd_wakeup() (Alex Williamson) [2046547]
+- ext4: fix direct I/O read error (Lukas Czerner) [1868258]
+- usb: xhci: Extend support for runtime power management for AMD's Yellow carp. (Renjith Pananchikkal) [2015775]
+- usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform (Renjith Pananchikkal) [2015775]
+- thunderbolt: Enable retry logic for intra-domain control packets (David Arcari) [2028287]
+- nvme-fabrics: fix state check in nvmf_ctlr_matches_baseopts() (Gopal Tiwari) [2043755]
+- smb3: do not error on fsync when readonly (Ronnie Sahlberg) [2037811]
+- cifs: serialize all mount attempts (Ronnie Sahlberg) [2008434]
+- ALSA: memalloc: Unify x86 SG-buffer handling (take#3) (Jaroslav Kysela) [2049437]
+- ALSA: usb-audio: add mapping for MSI MPG X570S Carbon Max Wifi. (Jaroslav Kysela) [2049437]
+- ALSA: usb-audio: Drop CONFIG_PM ifdefs (Jaroslav Kysela) [2049437]
+- ALSA: usb-audio: Fix dB level of Bose Revolve+ SoundLink (Jaroslav Kysela) [2049437]
+- ALSA: usb-audio: Add minimal-mute notion in dB mapping table (Jaroslav Kysela) [2049437]
+- ALSA: usb-audio: Use int for dB map values (Jaroslav Kysela) [2049437]
+- ALSA: hda/tegra: Fix Tegra194 HDA reset failure (Jaroslav Kysela) [2049437]
+- ALSA: hda/realtek: Use ALC285_FIXUP_HP_GPIO_LED on another HP laptop (Jaroslav Kysela) [2049437]
+- ALSA: hda: Add new AlderLake-P variant PCI ID (Jaroslav Kysela) [2049437]
+- ALSA: hda: Add AlderLake-N PCI ID (Jaroslav Kysela) [2049437]
+- ALSA: hda: use swap() to make code cleaner (Jaroslav Kysela) [2049437]
+- ALSA: Fix some typo (Jaroslav Kysela) [2049437]
+- ALSA: hda/hdmi: Consider ELD is invalid when no SAD is present (Jaroslav Kysela) [2049437]
+- ALSA: hda: Remove redundant runtime PM calls (Jaroslav Kysela) [2049437]
+- ALSA: hda: Do disconnect jacks at codec unbind (Jaroslav Kysela) [2049437]
+- ALSA: hda: intel: More comprehensive PM runtime setup for controller driver (Jaroslav Kysela) [2049437]
+- ASoC: SOF: Intel: fix build issue related to CODEC_PROBE_ENTRIES (Jaroslav Kysela) [2049437]
+- ASoC: cs42l42: Report initial jack state (Jaroslav Kysela) [2049437]
+- ALSA: hda/realtek: Re-order quirk entries for Lenovo (Jaroslav Kysela) [2049437]
+- ALSA: hda/realtek: Add quirk for Legion Y9000X 2020 (Jaroslav Kysela) [2049437]
+- ALSA: hda/realtek: Add speaker fixup for some Yoga 15ITL5 devices (Jaroslav Kysela) [2049437]
+- tools headers UAPI: Sync sound/asound.h with the kernel sources (Jaroslav Kysela) [2049437]
+- tools include UAPI: Sync sound/asound.h copy with the kernel sources (Jaroslav Kysela) [2049437]
+- tools include UAPI: Sync sound/asound.h copy (Jaroslav Kysela) [2049437]
+- tools include UAPI: Sync sound/asound.h copy with the kernel sources (Jaroslav Kysela) [2049437]
+- tools include UAPI: Sync sound/asound.h copy with the kernel sources (Jaroslav Kysela) [2049437]
+- ASoC: SOF: handle paused streams during system suspend (Jaroslav Kysela) [2049437]
+- ASoC: SOF: sof-audio: setup sched widgets during pipeline complete step (Jaroslav Kysela) [2049437]
+- ASoC: SOF: free widgets in sof_tear_down_pipelines() for static pipelines (Jaroslav Kysela) [2049437]
+- ALSA: hda/cs8409: Fix Jack detection after resume (Jaroslav Kysela) [2049437]
+- ALSA: hda/cs8409: Increase delay during jack detection (Jaroslav Kysela) [2049437]
+- ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Master after reboot from Windows (Jaroslav Kysela) [2049437]
+- ASoC: Intel: catpt: Test dmaengine_submit() result before moving on (Jaroslav Kysela) [2049437]
+- ASoC: amd: Fix dependency for SPI master (Jaroslav Kysela) [2049437]
+- ALSA: usb-audio: Drop superfluous '0' in Presonus Studio 1810c's ID (Jaroslav Kysela) [2049437]
+- ALSA: oss: fix compile error when OSS_DEBUG is enabled (Jaroslav Kysela) [2049437]
+- ALSA: hda: Make proper use of timecounter (Jaroslav Kysela) [2049437]
+- ALSA: led: Use restricted type for iface assignment (Jaroslav Kysela) [2049437]
+- ALSA: hda: Fix potential deadlock at codec unbinding (Jaroslav Kysela) [2049437]
+- ALSA: hda: Add missing rwsem around snd_ctl_remove() calls (Jaroslav Kysela) [2049437]
+- ALSA: PCM: Add missing rwsem around snd_ctl_remove() calls (Jaroslav Kysela) [2049437]
+- ALSA: jack: Add missing rwsem around snd_ctl_remove() calls (Jaroslav Kysela) [2049437]
+- ASoC: Intel: sof_sdw: fix jack detection on HP Spectre x360 convertible (Jaroslav Kysela) [2049437]
+- kernel: fork: properly initialize mm->mm_rh in dup_mm() and mm_alloc() (Rafael Aquini) [2047242]
+- vdpa/mlx5: Fix tracking of current number of VQs (Cindy Lu) [2052849]
+- vdpa/mlx5: Fix is_index_valid() to refer to features (Cindy Lu) [2052849]
+- vdpa: Protect vdpa reset with cf_mutex (Cindy Lu) [2052849]
+- vdpa: Avoid taking cf_mutex lock on get status (Cindy Lu) [2052849]
+- vdpa/vdpa_sim_net: Report max device capabilities (Cindy Lu) [2052849]
+- vdpa: Use BIT_ULL for bit operations (Cindy Lu) [2052849]
+- vdpa/vdpa_sim: Configure max supported virtqueues (Cindy Lu) [2052849]
+- vdpa/mlx5: Report max device capabilities (Cindy Lu) [2052849]
+- vdpa: Support reporting max device capabilities (Cindy Lu) [2052849]
+- vdpa/mlx5: Restore cur_num_vqs in case of failure in change_num_qps() (Cindy Lu) [2052849]
+- vdpa: Add support for returning device configuration information (Cindy Lu) [2052849]
+- vdpa/mlx5: Support configuring max data virtqueue (Cindy Lu) [2052849]
+- vdpa/mlx5: Fix config_attr_mask assignment (Cindy Lu) [2052849]
+- vdpa: Allow to configure max data virtqueues (Cindy Lu) [2052849]
+- vdpa: Read device configuration only if FEATURES_OK (Cindy Lu) [2052849]
+- vdpa: Sync calls set/get config/status with cf_mutex (Cindy Lu) [2052849]
+- vdpa/mlx5: Distribute RX virtqueues in RQT object (Cindy Lu) [2052849]
+- vdpa: Provide interface to read driver features (Cindy Lu) [2052849]
+- vdpa/mlx5: Fix wrong configuration of virtio_version_1_0 (Cindy Lu) [2052849]
+- vdpa: Mark vdpa_config_ops.get_vq_notification as optional (Cindy Lu) [2052849]
+- vdpa: Avoid duplicate call to vp_vdpa get_status (Cindy Lu) [2052849]
+- net/mlx5_vdpa: Offer VIRTIO_NET_F_MTU when setting MTU (Cindy Lu) [2052849]
+- vdpa: add driver_override support (Cindy Lu) [2052849]
+- docs: document sysfs ABI for vDPA bus (Cindy Lu) [2052849]
+- ifcvf/vDPA: fix misuse virtio-net device config size for blk dev (Cindy Lu) [2052849]
+- Revert "efi/libstub: arm64: Double check image alignment at entry" (Vitaly Kuznetsov) [2046303]
+- ethtool: ioctl: fix potential NULL deref in ethtool_set_coalesce() (William Zhao) [2046342]
+- cifs: Do not leak EDEADLK to dgetents64 for STATUS_USER_SESSION_DELETED (Ronnie Sahlberg) [1994393]
+- cifs: constify pathname arguments in a bunch of helpers (Ronnie Sahlberg) [1994393]
+- cgroup: Use open-time cgroup namespace for process migration perm checks (Chris von Recklinghausen) [2035766]
+- cgroup: Allocate cgroup_file_ctx for kernfs_open_file->priv (Chris von Recklinghausen) [2035766]
+- cgroup: Use open-time credentials for process migraton perm checks (Chris von Recklinghausen) [2035766]
+- cgroup: make per-cgroup pressure stall tracking configurable (Chris von Recklinghausen) [2035766]
+- powerpc/idle: Don't corrupt back chain when going idle (Laurent Vivier) [2052793]
+- powerpc64/idle: Fix SP offsets when saving GPRs (Laurent Vivier) [2052793]
+- sfc: ef10: implement ethtool::get_fec_stats (Íñigo Huguet) [2042798]
+- sfc: The RX page_ring is optional (Íñigo Huguet) [2042798]
+- sfc: Check null pointer of rx_queue->page_ring (Íñigo Huguet) [2042798]
+- sfc_ef100: potential dereference of null pointer (Íñigo Huguet) [2042798]
+- sfc: Don't use netif_info before net_device setup (Íñigo Huguet) [2042798]
+- sfc: Export fibre-specific supported link modes (Íñigo Huguet) [2042798]
+- sfc: Fix reading non-legacy supported link modes (Íñigo Huguet) [2042798]
+- ethernet: constify references to netdev->dev_addr in drivers (Íñigo Huguet) [2042798]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Íñigo Huguet) [2042798]
+- ethernet: use eth_hw_addr_set() (Íñigo Huguet) [2042798]
+- sfc: last resort fallback for lack of xdp tx queues (Íñigo Huguet) [2042798 1995444]
+- sfc: fallback for lack of xdp tx queues (Íñigo Huguet) [2042798 1995444]
+- ext4: fix potential uninitialized access to retval in kmmpd (Lukas Czerner) [2046355]
+- ext4: fix possible UAF when remounting r/o a mmp-protected file system (Lukas Czerner) [2046355]
+- ext4: fix memory leak in ext4_fill_super (Lukas Czerner) [2046355]
+- quota: check block number when reading the block in quota file (Lukas Czerner) [2046999]
+- quota: correct error number in free_dqentry() (Lukas Czerner) [2046999]
+- quota: Fix memory leak when handling corrupted quota file (Lukas Czerner) [2046999]
+- quota: Sanity-check quota file headers on load (Lukas Czerner) [2046999]
+- quota: clear padding in v2r1_mem2diskdqb() (Lukas Czerner) [2046999]
+- quota: Check that quota is not dirty before release (Lukas Czerner) [2046999]
+- quota: fix livelock in dquot_writeback_dquots (Lukas Czerner) [2046999]
+- ext4: fix e2fsprogs checksum failure for mounted filesystem (Lukas Czerner) [1937180]
+- ext4: prevent partial update of the extent blocks (Lukas Czerner) [2035877]
+- ext4: check for inconsistent extents between index and leaf block (Lukas Czerner) [2035877]
+- ext4: check for out-of-order index extents in ext4_valid_extent_entries() (Lukas Czerner) [2035877]
+- ext4: avoid trim error on fs with small groups (Lukas Czerner) [2046355]
+- ext4: fix null-ptr-deref in '__ext4_journal_ensure_credits' (Lukas Czerner) [2046355]
+- ext4: make sure to reset inode lockdep class when quota enabling fails (Lukas Czerner) [2046355]
+- ext4: make sure quota gets properly shutdown on error (Lukas Czerner) [2046355]
+- ext4: Fix BUG_ON in ext4_bread when write quota data (Lukas Czerner) [2046355]
+- ext4: refresh the ext4_ext_path struct after dropping i_data_sem. (Lukas Czerner) [2046355]
+- ext4: ensure enough credits in ext4_ext_shift_path_extents (Lukas Czerner) [2046355]
+- ext4: fix potential infinite loop in ext4_dx_readdir() (Lukas Czerner) [2046355]
+- ext4: fix loff_t overflow in ext4_max_bitmap_size() (Lukas Czerner) [2046355]
+- ext4: fix reserved space counter leakage (Lukas Czerner) [2046355]
+- ext4: fix race writing to an inline_data file while its xattrs are changing (Lukas Czerner) [2046355]
+- ext4: fix potential htree corruption when growing large_dir directories (Lukas Czerner) [2046355]
+- ext4: use ext4_grp_locked_error in mb_find_extent (Lukas Czerner) [2046355]
+- ext4: correct the cache_nr in tracepoint ext4_es_shrink_exit (Lukas Czerner) [2046355]
+- ext4: remove check for zero nr_to_scan in ext4_es_scan() (Lukas Czerner) [2046355]
+- ext4: return error code when ext4_fill_flex_info() fails (Lukas Czerner) [2046355]
+- ext4: cleanup in-core orphan list if ext4_truncate() failed to get a transaction handle (Lukas Czerner) [2046355]
+- ext4: fix kernel infoleak via ext4_extent_header (Lukas Czerner) [2046355]
+- ext4: fix memory leak in ext4_fill_super (Lukas Czerner) [2046355]
+- ext4: fix bug on in ext4_es_cache_extent as ext4_split_extent_at failed (Lukas Czerner) [2046355]
+- ext4: fix error code in ext4_commit_super (Lukas Czerner) [2046355]
+- crash_core, vmcoreinfo: append 'SECTION_SIZE_BITS' to vmcoreinfo (Pingfan Liu) [2046631]
+- arm64/crash_core: Export TCR_EL1.T1SZ in vmcoreinfo (Pingfan Liu) [2046631]
+- arm64: kernel: arch_crash_save_vmcoreinfo() should depend on CONFIG_CRASH_CORE (Mark Salter) [2046631]
+- Revert "[arm64] arm64, vmcoreinfo : Append 'MAX_PHYSMEM_BITS' to vmcoreinfo" (Pingfan Liu) [2046631]
+- crash_core, vmcoreinfo: Append 'MAX_PHYSMEM_BITS' to vmcoreinfo (Pingfan Liu) [2046631]
+- ibmvnic: don't release napi in __ibmvnic_open() (Gustavo Walbon) [2051793]
+
+* Mon Feb 21 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-369.el8]
+- EDAC/igen6: Add Intel Alder Lake SoC support (Aristeu Rozanski) [1971965 1783145]
+- EDAC/igen6: Add Intel Tiger Lake SoC support (Aristeu Rozanski) [1971965 1783145]
+- EDAC/igen6: Add Intel ICL-NNPI SoC support (Aristeu Rozanski) [1971965 1783145]
+- EDAC/i10nm: Add support for high bandwidth memory (Aristeu Rozanski) [1971965 1783145]
+- EDAC/i10nm: Add detection of memory levels for ICX/SPR servers (Aristeu Rozanski) [1971965 1783145]
+- EDAC/skx_common: Add new ADXL components for 2-level memory (Aristeu Rozanski) [1971965 1783145]
+- EDAC, skx: Retrieve and print retry_rd_err_log registers (Aristeu Rozanski) [1971965 1783145]
+- EDAC, skx_common: Refactor so that we initialize "dev" in result of adxl decode. (Aristeu Rozanski) [1971965 1783145]
+- selinux: parse contexts for mount options early (Scott Mayhew) [1984355]
+- selinux: try to use preparsed sid before calling parse_sid() (Scott Mayhew) [1984355]
+- selinux: Fix selinux_sb_mnt_opts_compat() (Scott Mayhew) [1984355]
+- selinux: access superblock_security_struct in LSM blob way (Scott Mayhew) [1984355]
+- selinux: minor tweaks to selinux_add_opt() (Scott Mayhew) [1984355]
+- selinux: fix potential memleak in selinux_add_opt() (Scott Mayhew) [1984355]
+- selinux: fix sleeping function called from invalid context (Scott Mayhew) [1984355]
+- LSM: Infrastructure management of the superblock (Scott Mayhew) [1984355]
+- selinux: drop super_block backpointer from superblock_security_struct (Scott Mayhew) [1984355]
+- selinux: remove redundant allocation and helper functions (Scott Mayhew) [1984355]
+- ath11k: add support for WCN6855 hw2.1 (Íñigo Huguet) [1970036 1988269]
+- ath11k: add string type to search board data in board-2.bin for WCN6855 (Íñigo Huguet) [1970036 1988269]
+- firmware: smccc: Fix check for ARCH_SOC_ID not implemented (Vitaly Kuznetsov) [2053450]
+- bpf, arm64: Use emit_addr_mov_i64() for BPF_PSEUDO_FUNC (Yauheni Kaliuta) [2051789]
+- bpf/selftests: disable a verifier test for powerpc (Viktor Malik) [2046032]
+- bpf/selftests: allow disabling verifier tests (Viktor Malik) [2046032]
+- vfs: check dentry is still valid in get_link() (Ian Kent) [2014846]
+- xfs: don't expose internal symlink metadata buffers to the vfs (Brian Foster) [2014846]
+- scsi: vmw_pvscsi: Set residual data length conditionally (Cathy Avery) [2052345]
+- scsi: mpt3sas: Fix incorrect system timestamp (Tomas Henzl) [2026212]
+- scsi: mpt3sas: Fix system going into read-only mode (Tomas Henzl) [2026212]
+- scsi: mpt3sas: Fix kernel panic during drive powercycle test (Tomas Henzl) [2026212]
+- scsi: mpt3sas: Clean up some inconsistent indenting (Tomas Henzl) [2026212]
+- scsi: scsi_transport_srp: Don't block target in SRP_PORT_LOST state (Ewan D. Milne) [2028290]
+- blktrace: switch trace spinlock to a raw spinlock (Wander Lairson Costa) [1905749]
+- blktrace: Fix uaf in blk_trace access after removing by sysfs (Wander Lairson Costa) [1905749]
+- blk-wbt: export internal state via debugfs (Ming Lei) [2047313]
+- platform/x86: ISST: Fix optimization with use of numa (Prarit Bhargava) [2023820]
+- platform/x86: ISST: Use numa node id for cpu pci dev mapping (Prarit Bhargava) [2023818]
+- platform/x86: ISST: Optimize CPU to PCI device mapping (Prarit Bhargava) [2023818]
+- efi/x86: drop task_lock() from efi_switch_mm() (Fernando Pacheco) [2035415]
+- configs: enable LOGITECH_FF (Benjamin Tissoires) [1945987]
+- Input: joydev - prevent use of not validated data in JSIOCSBTNMAP ioctl (Benjamin Tissoires) [1974089]
+- Input: joydev - prevent potential read overflow in ioctl (Benjamin Tissoires) [1974089]
+- xfs: Fix CIL throttle hang when CIL space used going backwards (Thiago Becker) [2040371]
+- netfilter: nf_conntrack_netbios_ns: fix helper module alias (Florian Westphal) [2038015]
+- selftests: nft_concat_range: add test for reload with no element add/del (Florian Westphal) [2046309]
+- netfilter: fix regression in looped (broad|multi)cast's MAC handling (Florian Westphal) [2046309]
+- selftests: netfilter: Add correctness test for mac,net set type (Florian Westphal) [2046309]
+- netfilter: flowtable: fix IPv6 tunnel addr match (Florian Westphal) [2046309]
+- netfilter: conntrack: don't increment invalid counter on NF_REPEAT (Florian Westphal) [2046309]
+- netfilter: nft_set_pipapo: allocate pcpu scratch maps on clone (Florian Westphal) [2046309]
+- netfilter: nft_payload: do not update layer 4 checksum when mangling fragments (Florian Westphal) [2046309]
+- netfilter: ipvs: Fix reuse connection if RS weight is 0 (Florian Westphal) [2046309]
+- netfilter: ctnetlink: do not erase error code with EINVAL (Florian Westphal) [2046309]
+- netfilter: ctnetlink: fix filtering with CTA_TUPLE_REPLY (Florian Westphal) [2046309]
+- netfilter: nfnetlink_queue: fix OOB when mac header was cleared (Florian Westphal) [2046309]
+- netfilter: nft_dynset: relax superfluous check on set updates (Florian Westphal) [2046309]
+- netfilter: use kvmalloc_array to allocate memory for hashtable (Phil Sutter) [2001762]
+- netfilter: nf_tables: skip netdev events generated on netns removal (Phil Sutter) [2053436]
+- xfrm: add state hashtable keyed by seq (Sabrina Dubroca) [1926538]
+
+* Wed Feb 16 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-368.el8]
+- cgroup/cpuset: Fix "suspicious RCU usage" lockdep warning (Waiman Long) [2050418]
+- cpuset: Fix the bug that subpart_cpus updated wrongly in update_cpumask() (Waiman Long) [2050418]
+- IB/rdmavt: Validate remote_addr during loopback atomic tests (Kamal Heib) [2033480]
+- in wb_init, use gfp instead of GFP_KERNEL when allocating bw_dwork (Chris von Recklinghausen) [2046179]
+- scsi: bnx2fc: Make bnx2fc_recv_frame() mp safe (John Meneghini) [2051691]
+- scsi: bnx2fc: Flush destroy_work queue before calling bnx2fc_interface_put() (John Meneghini) [1973208]
+- nvme: drop unused variable ctrl in nvme_setup_cmd (John Meneghini) [2033384]
+- nvme: increment request genctr on completion (John Meneghini) [2033384]
+- nvme-pci: Fix abort command id (John Meneghini) [2033384]
+- nvme: add command id quirk for apple controllers (John Meneghini) [2033384]
+- nvme: move nvme_multi_css into nvme.h (John Meneghini) [2033384]
+- nvme: code command_id with a genctr for use-after-free validation (John Meneghini) [2033384]
+- nvme-pci: limit maximum queue depth to 4095 (John Meneghini) [2033384]
+- params: lift param_set_uint_minmax to common code (John Meneghini) [2033384]
+- CI: Enable baseline realtime checks (Veronika Kabatova)
+- CI: Rename pipelines to include release names (Veronika Kabatova)
+- sched/pelt: Relax the sync of load_sum with load_avg (Phil Auld) [2037123]
+- sched/pelt: Relax the sync of runnable_sum with runnable_avg (Phil Auld) [2037123]
+- sched/pelt: Continue to relax the sync of util_sum with util_avg (Phil Auld) [2037123]
+- sched/pelt: Relax the sync of util_sum with util_avg (Phil Auld) [2037123]
+- cifs: fix memory leak of smb3_fs_context_dup::server_hostname (Ronnie Sahlberg) [2044670]
+- cifs: To match file servers, make sure the server hostname matches (Ronnie Sahlberg) [2044670]
+- perf/x86/intel/uncore: Fix Intel SPR M3UPI event constraints (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Fix Intel SPR M2PCIE event constraints (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Fix Intel SPR IIO event constraints (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Fix Intel SPR CHA event constraints (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Support IMC free-running counters on Sapphire Rapids server (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Support IIO free-running counters on Sapphire Rapids server (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Factor out snr_uncore_mmio_map() (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add alias PMU name (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server MDF support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server M3UPI support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server UPI support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server M2M support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server IMC support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server PCU support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server M2PCIe support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server IRP support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server IIO support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server CHA support (Michael Petlan) [1837402]
+- perf/x86/intel/uncore: Add Sapphire Rapids server framework (Michael Petlan) [1837402]
+- ovl: fix deadlock in splice write (Miklos Szeredi) [2028998]
+- selinux: fix NULL-pointer dereference when hashtab allocation fails (Ondrej Mosnacek) [2021467]
+- selinux: fix double free of cond_list on error paths (Ondrej Mosnacek) [2043605]
+- ibmvnic: remove unused ->wait_capability (Diego Domingos) [2049368]
+- ibmvnic: don't spin in tasklet (Diego Domingos) [2049368]
+- ibmvnic: init ->running_cap_crqs early (Diego Domingos) [2049368]
+- ibmvnic: Allow extra failures before disabling (Diego Domingos) [2049368]
+- hpsa: add new messaging (Tomas Henzl) [1801777]
+- aacraid: add new messaging (Tomas Henzl) [2044365]
+- Revert "[scsi] Revert "[scsi] aacraid: add removed id table"" (Tomas Henzl) [2044365]
+- mpt3sas: Add new messaging (Tomas Henzl) [2044366]
+- Revert "[scsi] mpt*: remove certain deprecated pci-ids" (Tomas Henzl) [2044366]
+- mptsas: add new messaging (Tomas Henzl) [2044366]
+- sctp: hold endpoint before calling cb in sctp_transport_lookup_process (Xin Long) [2043822]
+- sctp: use call_rcu to free endpoint (Xin Long) [2043822]
+- sctp: move hlist_node and hashent out of sctp_ep_common (Xin Long) [2043822]
+- net: Use nlmsg_unicast() instead of netlink_unicast() (Xin Long) [2043822]
+- video: hyperv_fb: Fix validation of screen resolution (Mohammed Gamal) [1952821]
+- powerpc/pseries: extract host bridge from pci_bus prior to bus removal (Diego Domingos) [2051509]
+- dm: properly fix redundant bio-based IO accounting (Mike Snitzer) [2051803]
+- dm: revert partial fix for redundant bio-based IO accounting (Mike Snitzer) [2051803]
+- block: add bio_start_io_acct_time() to control start_time (Mike Snitzer) [2051803]
+- block: document iostat changes for disk busy time accounting (Mike Snitzer) [2051803]
+
+* Thu Feb 10 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-367.el8]
+- tee: optee: Fix incorrect page free bug (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: handle lookup of shm with reference count 0 (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: smc_abi.c: add missing #include <linux/mm.h> (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: isolate smc abi (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: refactor driver with internal callbacks (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: simplify optee_release() (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: Fix missing devices unregister during optee_remove (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee/optee/shm_pool: fix application of sizeof to pointer (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: Correct inappropriate usage of TEE_SHM_DMA_BUF flag (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: add tee_shm_alloc_kernel_buf() (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: Clear stale cache entries during initialization (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: fix tee out of memory failure seen during kexec reboot (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: Refuse to load the driver under the kdump kernel (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: Fix memory leak when failing to register shm pages (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: use export_uuid() to copy client UUID (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: do not check memref size on return from Secure World (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: fix build error caused by recent optee tracepoints feature (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: add invoke_fn tracepoints (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: simplify i2c access (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: remove need_resched() before cond_resched() (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: sync OP-TEE headers (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: replace might_sleep with cond_resched (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- drivers: optee: fix i2c build issue (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: convert get_user_pages() --> pin_user_pages() (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- drivers: optee: allow op-tee to access devices on the i2c bus (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- driver: tee: Handle NULL pointer indication from client (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: enable support for multi-stage bus enumeration (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: use uuid for sysfs driver entry (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: Add support for session login client UUID generation (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: enable support to register kernel memory (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: remove unnecessary NULL check in tee_shm_alloc() (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: don't assign shm id for private shms (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: remove unused tee_shm_priv_alloc() (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: tee_shm_op_mmap(): use TEE_SHM_USER_MAPPED (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: remove redundant teedev in struct tee_shm (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: remove linked list of struct tee_shm (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: Fix multi page dynamic shm pool alloc (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: model OP-TEE as a platform device/driver (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: fix device enumeration error handling (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: Fix dynamic shm pool allocations (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee/shm: untag user pointers in tee_shm_register (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: add might_sleep for RPC requests (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- optee: allow to work without static shared memory (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: update optee_msg.h and optee_smc.h to dual license (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: add missing of_node_put after of_device_is_available (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: Fix unsigned comparison with less than zero (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: fix possible error pointer ctx dereferencing (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: Initialize some structs using memset instead of braces (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: add TEE bus device enumeration support (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: add supp_nowait flag in tee_context struct (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: log message if dynamic shm is enabled (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: add kernel internal client interface (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: take DT status property into account (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- tee: optee: making OPTEE_SHM_NUM_PRIV_PAGES configurable via Kconfig (Chris von Recklinghausen) [2030755] {CVE-2021-44733}
+- x86/mce: Add Xeon Sapphire Rapids to list of CPUs that support PPIN (David Arcari) [2035286]
+- regset: kill ->get() (Prarit Bhargava) [2032854]
+- arm64: switch to ->regset_get() (Prarit Bhargava) [2032854]
+- arm64: take fetching compat reg out of pt_regs into a new helper (Prarit Bhargava) [2032854]
+- powerpc: switch to ->regset_get() (Prarit Bhargava) [2032854]
+- s390: switch to ->regset_get() (Prarit Bhargava) [2032854]
+- introduction of regset ->get() wrappers, switching ELF coredumps to those (Prarit Bhargava) [2032854]
+- mm/page_alloc.c: do not warn allocation failure on zone DMA if no managed pages (Baoquan He) [2024011]
+- dma/pool: create dma atomic pool only if dma zone has managed pages (Baoquan He) [2024011]
+- mm_zone: add function to check if managed dma zone exists (Baoquan He) [2024011]
+- tipc: discard MSG_CRYPTO msgs when key_exchange_enabled is not set (Xin Long) [2043825]
+- tipc: delete the unlikely branch in tipc_aead_encrypt (Xin Long) [2043825]
+- tipc: check for null after calling kmemdup (Xin Long) [2043825]
+- tipc: only accept encrypted MSG_CRYPTO msgs (Xin Long) [2043825]
+- powerpc/pseries: use slab context cpumask allocation in CPU hotplug init (Waiman Long) [2048220]
+- powerpc/pseries: Fix build error when NUMA=n (Waiman Long) [2048220]
+- lpfc: Add new messaging (Ewan D. Milne) [1841323]
+- cpu/hotplug: Cure the cpusets trainwreck (Phil Auld) [1904593]
+- scsi: ses: Fix unsigned comparison with less than zero (Tomas Henzl) [1995086]
+- scsi: ses: Retry failed Send/Receive Diagnostic commands (Tomas Henzl) [1995086]
+- serial: exar: Fix GPIO configuration for Sealevel cards based on XR17V35X (John W. Linville) [2022906]
+- PCI: vmd: Add indirection layer to vmd irq lists (Scott Wood) [2048202]
+- redhat/configs: Enable CONFIG_PCI_HYPERV on Aarch64 (Vitaly Kuznetsov) [2024853]
+- PCI: hv: Add arm64 Hyper-V vPCI support (Vitaly Kuznetsov) [2024853]
+- PCI: hv: Make the code arch neutral by adding arch specific interfaces (Vitaly Kuznetsov) [2024853]
+- PCI: hv: Remove unnecessary use of hx (Vitaly Kuznetsov) [2024853]
+- nvme-rdma: fix possible use-after-free in transport error_recovery work (Chris Leech) [1988361]
+- nvme-tcp: fix possible use-after-free in transport error_recovery work (Chris Leech) [1988361]
+- nvme: fix a possible use-after-free in controller reset during load (Chris Leech) [1988361]
+- ipv6: check return value of ipv6_skip_exthdr (Sabrina Dubroca) [2046234]
+- selftests: Calculate udpgso segment count without header adjustment (Xin Long) [2044133]
+- udp: using datalen to cap ipv6 udp max gso segments (Xin Long) [2044133]
+- inet_diag: fix kernel-infoleak for UDP sockets (Xin Long) [2044133]
+- udp: using datalen to cap max gso segments (Xin Long) [2044133]
+- [s390] s390/cpumf: Support for CPU Measurement Facility CSVN 7 (Mete Durlu) [2048980]
+- [s390] s390/cpumf: Support for CPU Measurement Sampling Facility LS bit (Mete Durlu) [2048980]
+- tools/power/x86/intel-speed-select: v1.10 release (Prarit Bhargava) [2023909]
+- tools/power/x86/intel-speed-select: Fix uncore memory frequency display (Prarit Bhargava) [2023909]
+- platform/x86: ISST: Account for increased timeout in some cases (Prarit Bhargava) [2023909]
+- tools/power/x86/intel-speed-select: Add options to force online (Prarit Bhargava) [2023909]
+- tools/power/x86/intel-speed-select: Drop __DATE__ and __TIME__ macros (Prarit Bhargava) [2023909]
+- tools/power/x86/intel-speed-select: v1.9 release (Prarit Bhargava) [2023909]
+- tools/power/x86/intel-speed-select: Process mailbox read error for core-power (Prarit Bhargava) [2023909]
+- tools/power/x86/intel-speed-select: Increase string size (Prarit Bhargava) [2023909]
+- qla2xxx: Add new messaging (Ewan D. Milne) [1900072]
+
+* Wed Feb 09 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-366.el8]
+- platform/x86: amd-pmc: only use callbacks for suspend (David Arcari) [2016039]
+- platform/x86: amd-pmc: Add support for AMD Smart Trace Buffer (David Arcari) [2016039]
+- platform/x86: amd-pmc: Simplify error handling and store the pci_dev in amd_pmc_dev structure (David Arcari) [2016039]
+- platform/x86: amd-pmc: Fix s2idle failures on certain AMD laptops (David Arcari) [2016039]
+- platform/x86: amd-pmc: Make CONFIG_AMD_PMC depend on RTC_CLASS (David Arcari) [2016039]
+- platform/x86: amd-pmc: Drop check for valid alarm time (David Arcari) [2016039]
+- platform/x86: amd-pmc: Downgrade dev_info message to dev_dbg (David Arcari) [2016039]
+- platform/x86: amd-pmc: fix compilation without CONFIG_RTC_SYSTOHC_DEVICE (David Arcari) [2016039]
+- platform/x86: amd-pmc: Add special handling for timer based S0i3 wakeup (David Arcari) [2016039]
+- platform/x86: amd-pmc: adjust arguments for `amd_pmc_send_cmd` (David Arcari) [2016039]
+- platform/x86: amd-pmc: Add alternative acpi id for PMC controller (David Arcari) [2016039]
+- platform/x86: amd-pmc: Add a message to print resume time info (David Arcari) [2016039]
+- platform/x86: amd-pmc: Send command to dump data after clearing OS_HINT (David Arcari) [2016039]
+- platform/x86: amd-pmc: Fix compilation when CONFIG_DEBUGFS is disabled (David Arcari) [2016039]
+- platform/x86: amd-pmc: Export Idlemask values based on the APU (David Arcari) [2016039]
+- platform/x86: amd-pmc: Check s0i3 cycle status (David Arcari) [2016039]
+- scsi: lpfc: Fix non-recovery of remote ports following an unsolicited LOGO (Dick Kennedy) [2027558]
+- sch_api: Don't skip qdisc attach on ingress (Davide Caratti) [2044806]
+- sch_qfq: prevent shift-out-of-bounds in qfq_init_qdisc (Davide Caratti) [2044806]
+- flow_offload: return EOPNOTSUPP for the unsupported mpls action type (Davide Caratti) [2044806]
+- selftests: bpf: Less strict size check in sockopt_sk (Felix Maurer) [2025809]
+- net-zerocopy: Fast return if inq < PAGE_SIZE (Felix Maurer) [2025809]
+- tcp: Fix sign comparison bug in getsockopt(TCP_ZEROCOPY_RECEIVE) (Felix Maurer) [2025809]
+- tcp-zerocopy: Ensure excess getsockopt buffer is zeroed (Felix Maurer) [2025809]
+- tcp-zerocopy: Update returned getsockopt() optlen. (Felix Maurer) [2025809]
+- tcp-zerocopy: Fix getsockopt buffer size check (Felix Maurer) [2025809]
+- gre: Don't accidentally set RTO_ONLINK in gre_fill_metadata_dst() (Guillaume Nault) [2046339]
+- net: fix use-after-free in tw_timer_handler (Guillaume Nault) [2046339]
+- ALSA: core: Fix SSID quirk lookup for subvendor=0 (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: i2s: Restore hardware state on runtime PM resume (Jaroslav Kysela) [2003613]
+- ALSA: RHEL - update kernel configs for RHEL 8.6 (Jaroslav Kysela) [2003613]
+- ASoC: remove module namespaces (Jaroslav Kysela) [2003613]
+- ASoC: codecs: rt5682(s): use the older clock API calls, but keep some modern (Jaroslav Kysela) [2003613]
+- ASoC: arizona-jack: Cleanup logging (Jaroslav Kysela) [2003613]
+- ASoC: arizona-jack: Use snd_soc_jack to report jack events (Jaroslav Kysela) [2003613]
+- ASoC: arizona-jack: convert into a helper library for codec drivers (Jaroslav Kysela) [2003613]
+- ASoC: arizona-jack: Use arizona->dev for runtime-pm (Jaroslav Kysela) [2003613]
+- ASoC: arizona-jack: Move jack-detect variables to struct arizona_priv (Jaroslav Kysela) [2003613]
+- ASoC/extcon: arizona: Move arizona jack code to sound/soc/codecs/arizona-jack.c (Jaroslav Kysela) [2003613]
+- extcon: arizona: Always use pm_runtime_get_sync() when we need the device to be awake (Jaroslav Kysela) [2003613]
+- extcon: arizona: Fix flags parameter to the gpiod_get("wlf,micd-pol") call (Jaroslav Kysela) [2003613]
+- extcon: arizona: Fix various races on driver unbind (Jaroslav Kysela) [2003613]
+- extcon: arizona: Fix some issues when HPDET IRQ fires after the jack has been unplugged (Jaroslav Kysela) [2003613]
+- extcon: arizona: Fix runtime PM imbalance on error (Jaroslav Kysela) [2003613]
+- extcon: arizona: Factor out microphone and button detection (Jaroslav Kysela) [2003613]
+- extcon: arizona: Factor out microphone impedance into a function (Jaroslav Kysela) [2003613]
+- extcon: arizona: Invert logic of check in arizona_hpdet_do_id (Jaroslav Kysela) [2003613]
+- extcon: arizona: Remove excessive WARN_ON (Jaroslav Kysela) [2003613]
+- extcon: arizona: Remove unnecessary sets of ACCDET_MODE (Jaroslav Kysela) [2003613]
+- extcon: arizona: Tidy up transition from mic to headphone detect (Jaroslav Kysela) [2003613]
+- extcon: arizona: Clear jack status regardless of detection type (Jaroslav Kysela) [2003613]
+- extcon: arizona: Move pdata extraction to probe (Jaroslav Kysela) [2003613]
+- extcon: arizona: Make rev A register sequences atomic (Jaroslav Kysela) [2003613]
+- extcon: arizona: Correct clean up if arizona_identify_headphone fails (Jaroslav Kysela) [2003613]
+- extcon: arizona: Switch to use device_property_count_u32() (Jaroslav Kysela) [2003613]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 (Jaroslav Kysela) [2003613]
+- extcon: arizona: Correct error handling on regmap_update_bits_check (Jaroslav Kysela) [2003613]
+- extcon: arizona: Disable mic detect if running when driver is removed (Jaroslav Kysela) [2003613]
+- mfd: arizona: Fix rumtime PM imbalance on error (Jaroslav Kysela) [2003613]
+- mfd: arizona: Split of_match table into I2C and SPI versions (Jaroslav Kysela) [2003613]
+- mfd: arizona: Make some symbols static (Jaroslav Kysela) [2003613]
+- mfd: arizona: Add support for ACPI enumeration of WM5102 connected over SPI (Jaroslav Kysela) [2003613]
+- mfd: arizona: Add MODULE_SOFTDEP("pre: arizona_ldo1") (Jaroslav Kysela) [2003613]
+- mfd: arizona: Drop arizona-extcon cells (Jaroslav Kysela) [2003613]
+- mfd: arizona: Replace arizona_of_get_type() with device_get_match_data() (Jaroslav Kysela) [2003613]
+- mfd: arizona: Ensure 32k clock is put on driver unbind and error (Jaroslav Kysela) [2003613]
+- mfd: arizona: Remove BUG_ON usage (Jaroslav Kysela) [2003613]
+- mfd: arizona: Switch to using devm_gpiod_get() (Jaroslav Kysela) [2003613]
+- mfd: arizona: Fix undefined behavior (Jaroslav Kysela) [2003613]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Jaroslav Kysela) [2003613]
+- mfd: arizona: Correct calling of runtime_put_sync (Jaroslav Kysela) [2003613]
+- mfd: arizona: Don't use regmap_read_poll_timeout (Jaroslav Kysela) [2003613]
+- clkdev: Hold clocks_mutex while iterating clocks list (Jaroslav Kysela) [2003613]
+- clkdev: add managed clkdev lookup registration (Jaroslav Kysela) [2003613]
+- genirq: Add IRQF_NO_AUTOEN for request_irq/nmi() (Jaroslav Kysela) [2003613]
+- ALSA: es1688: Avoid devres management for es1688 object creation (Jaroslav Kysela) [2003613]
+- ALSA: gus: Fix repeated probes of snd_gus_create() (Jaroslav Kysela) [2003613]
+- ALSA: x86: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: x86: simplify with sync_stop PCM ops (Jaroslav Kysela) [2003613]
+- ALSA: x86: fix spelling mistakes (Jaroslav Kysela) [2003613]
+- ALSA: virtio: Replace zero-length array with flexible-array member (Jaroslav Kysela) [2003613]
+- ALSA: emux: fix spelling mistakes (Jaroslav Kysela) [2003613]
+- ALSA: synth: missing check for possible NULL after the call to kstrdup (Jaroslav Kysela) [2003613]
+- ALSA: synth: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: sparc: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Set driver name explicitly (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: i2s: Remove handing of disabled runtime PM (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: i2s: Use devm_clk_get() (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: i2s: Correct driver removal order (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: spdif: Remove handing of disabled runtime PM (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: i2s: Remove handing of disabled runtime PM (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: i2s: Use devm_clk_get() (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: i2s: Add system level suspend-resume callbacks (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: i2s: Add reset control (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: i2s: Correct driver removal order (Jaroslav Kysela) [2003613]
+- ASoC: tegra: tegra20_das: align function prototypes (Jaroslav Kysela) [2003613]
+- ASoC: tegra: tegra20_das: clarify expression (Jaroslav Kysela) [2003613]
+- ASoC: tegra: remove unneeded semicolon (Jaroslav Kysela) [2003613]
+- ASoC: tegra: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: ac97: Add reset control (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add support for SoundWire of TGL-H-RVP (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: add mutual exclusion between PCH DMIC and RT715 (Jaroslav Kysela) [2003613]
+- ASoC: codecs: wsa881x: fix return values from kcontrol put (Jaroslav Kysela) [2003613]
+- ASoc: wm8731: Drop empty spi_driver remove callback (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic32x4: channel -> channels rename (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic32x4: Fix TAS2505/TAS2521 channel count (Jaroslav Kysela) [2003613]
+- ASoC: wcd9335: Disable irq on slave ports in the remove function (Jaroslav Kysela) [2003613]
+- ASoC: wcd9335: Fix a double irq free in the remove function (Jaroslav Kysela) [2003613]
+- ASoC: wcd9335: Fix a memory leak in the error handling path of the probe function (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic32x4: make array clocks static, makes object smaller (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic32x4: Fix TAS2505/TAS2521 processing block selection (Jaroslav Kysela) [2003613]
+- ASoC: da7218: Drop CONFIG_OF ifdef (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic32x4: Fix TAS2505 volume controls (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic32x4: Make aic32x4_remove() return void (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic32x4: add support for TAS2505 (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic32x4: add type to device private data struct (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic31xx: fix reversed bclk/wclk master bits (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic31xx: Fix jack detection after suspend (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic31xx: Make regmap cache only on probe() (Jaroslav Kysela) [2003613]
+- ASoC: sigmadsp: Remove the repeated declaration (Jaroslav Kysela) [2003613]
+- ASoC: rt286: Remove redundant assignment to d_len_code (Jaroslav Kysela) [2003613]
+- ASoC: codecs: rt1019: clarify expression (Jaroslav Kysela) [2003613]
+- ASoC: rt1019: Add non_legacy_dai_naming config (Jaroslav Kysela) [2003613]
+- ASoC: rk3328: fix missing clk_disable_unprepare() on error in rk3328_platform_probe() (Jaroslav Kysela) [2003613]
+- ASoC: mediatek: mt6359: Fix unexpected error in bind/unbind flow (Jaroslav Kysela) [2003613]
+- ASoc: codecs: mt6359: remove useless initializations (Jaroslav Kysela) [2003613]
+- ASoC: mediatek: mt6359: convert to use module_platform_driver (Jaroslav Kysela) [2003613]
+- ASoC: ics43432: add CMM-4030D-261 support (Jaroslav Kysela) [2003613]
+- ASoC: hdmi-codec: Fix return value in hdmi_codec_set_jack() (Jaroslav Kysela) [2003613]
+- ASoC: hdmi-codec: Get ELD in before reporting plugged event (Jaroslav Kysela) [2003613]
+- ASoC: cs53l30: Minor error paths fixups (Jaroslav Kysela) [2003613]
+- ASoC: cs43130: Minor error paths fixups (Jaroslav Kysela) [2003613]
+- ASoC: cs42l52: Minor tidy up of error paths (Jaroslav Kysela) [2003613]
+- ASoC: cs42l73: Minor error paths fixups (Jaroslav Kysela) [2003613]
+- ASoC: cs4265: Minor tidy up of error paths (Jaroslav Kysela) [2003613]
+- ASoC: cs35l36: Remove unneeded variable initialisation (Jaroslav Kysela) [2003613]
+- ASoC: cs35l35: Minor error paths fixups (Jaroslav Kysela) [2003613]
+- ASoC: cs35l35: Correct errata handling (Jaroslav Kysela) [2003613]
+- ASoC: cs35l34: Minor error paths fixups (Jaroslav Kysela) [2003613]
+- ASoC: cs35l33: Minor error paths fixups (Jaroslav Kysela) [2003613]
+- ASoC: cirrus: Add helper function for reading the device ID (Jaroslav Kysela) [2003613]
+- ASoC: cs35l32: Add missing regmap use_single config (Jaroslav Kysela) [2003613]
+- ASoC: cs35l32: Minor error paths fixups (Jaroslav Kysela) [2003613]
+- ASoC: adav80x: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: codecs: Fix fall-through warnings for Clang (Jaroslav Kysela) [2003613]
+- ASoC: codecs: Use fallthrough pseudo-keyword (Jaroslav Kysela) [2003613]
+- ASoC: ab8500: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: codecs: fix spelling mistake in Kconfig "comunicate" -> "communicate" (Jaroslav Kysela) [2003613]
+- ASoC: 88pm860x: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: amd: renoir: Remove redundant assignment to pdm_ctrl and pdm_enable and pdm_dma_enable (Jaroslav Kysela) [2003613]
+- ASoC: amd: add missing break (Jaroslav Kysela) [2003613]
+- ALSA: sh: Fix compile warning wrt const (Jaroslav Kysela) [2003613]
+- ALSA: sh: Fix unused variable warnings (Jaroslav Kysela) [2003613]
+- ALSA: sh: Constify snd_device_ops definitions (Jaroslav Kysela) [2003613]
+- ALSA: sh: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [2003613]
+- ALSA: sh: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ALSA: aica: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ALSA: sh: Remove superfluous snd_dma_continuous_data() (Jaroslav Kysela) [2003613]
+- ALSA: ps3: fix spelling typo of values (Jaroslav Kysela) [2003613]
+- ALSA: ppc: drop if block with always false condition (Jaroslav Kysela) [2003613]
+- ALSA: ppc: remove redundant checks in PS3 driver probe (Jaroslav Kysela) [2003613]
+- ALSA: ppc: fix error return code in snd_pmac_probe() (Jaroslav Kysela) [2003613]
+- ALSA: ppc: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [2003613]
+- ALSA: ppc: Constify snd_device_ops definitions (Jaroslav Kysela) [2003613]
+- ALSA: ppc: keywest: remove outdated comment (Jaroslav Kysela) [2003613]
+- ALSA: poewrmac: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: pcmcia: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: pci: vx222: fix kernel-doc warning (Jaroslav Kysela) [2003613]
+- ALSA: Remove trailing semicolon in macros (Jaroslav Kysela) [2003613]
+- ALSA: hda: generic: Remove redundant assignment to dac (Jaroslav Kysela) [2003613]
+- ALSA: hda: Allow model option to specify PCI SSID alias (Jaroslav Kysela) [2003613]
+- ALSA: asihpi: fix comment syntax in file headers (Jaroslav Kysela) [2003613]
+- ALSA: harmony: Drop superfluous address setup (Jaroslav Kysela) [2003613]
+- ALSA: parisc: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: vx: fix kernel-doc warning (Jaroslav Kysela) [2003613]
+- ALSA: aloop: Constify ops structs (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Drop resindex_dma_base, dma_engine, dma_size from sof_dev_desc (Jaroslav Kysela) [2003613]
+- ALSA: wavefront: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: wavefront: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: sscape: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: sc6000: Use explicit cast for __iomem pointer (Jaroslav Kysela) [2003613]
+- ALSA: sc6000: Assign vport directly on card's private_data (Jaroslav Kysela) [2003613]
+- ALSA: sc6000: Fix incorrect sizeof operator (Jaroslav Kysela) [2003613]
+- ALSA: sc6000: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: sb: Fix fall-through warnings for Clang (Jaroslav Kysela) [2003613]
+- Revert "ALSA: sb: fix a missing check of snd_ctl_add" (Jaroslav Kysela) [2003613]
+- ALSA: sb: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: sb8: Add a comment note regarding an unused pointer (Jaroslav Kysela) [2003613]
+- ALSA: sb: Fix potential ABBA deadlock in CSP driver (Jaroslav Kysela) [2003613]
+- ALSA: sb: Fix potential double-free of CSP mixer elements (Jaroslav Kysela) [2003613]
+- ALSA: sb: Minor coding style fixes (Jaroslav Kysela) [2003613]
+- ALSA: sb: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: sb: Fix two use after free in snd_sb_qsound_build (Jaroslav Kysela) [2003613]
+- ALSA: emu8000: Fix a use after free in snd_emu8000_create_mixer (Jaroslav Kysela) [2003613]
+- ALSA: opti9xx: fix missing { } around an if block (Jaroslav Kysela) [2003613]
+- ALSA: opti9xx: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: opti9xx: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: opl3sa2: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: opl3sa2: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: msnd: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: msnd: Use proper mmap method (Jaroslav Kysela) [2003613]
+- ALSA: gus: Fix repeated probe for ISA interwave card (Jaroslav Kysela) [2003613]
+- Revert "ALSA: gus: add a check of the status of snd_ctl_add" (Jaroslav Kysela) [2003613]
+- ALSA: gus: fix null pointer dereference on pointer block (Jaroslav Kysela) [2003613]
+- ALSA: gus: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: gus: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: gus: Replace unsafe strcpy() with strscpy() (Jaroslav Kysela) [2003613]
+- ALSA: galaxy: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: Replace with fallthrough pseudo keyword in the remaining places (Jaroslav Kysela) [2003613]
+- ALSA: es18xx: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: es18xx: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: isa: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: es1688: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: wss: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: cs423x: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: cs423x: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- sound/oss/dmasound: Remove superfluous "break" (Jaroslav Kysela) [2003613]
+- sound/oss/dmasound: Remove superfluous "break" (Jaroslav Kysela) [2003613]
+- ALSA: cmi8330: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: isa: Fix error return code in snd_cmi8330_probe() (Jaroslav Kysela) [2003613]
+- ALSA: cmi8330: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: cmi8328: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: azt2320: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: azt2320: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: als100: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: als100: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: adlib: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ad1848: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ad1816a: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ad1816a: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: i2c: tea6330t: Remove redundant initialization of variable err (Jaroslav Kysela) [2003613]
+- ALSA: i2c: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: hda: intel-sdw-acpi: add missing include files (Jaroslav Kysela) [2003613]
+- ALSA: Use fallthrough pseudo-keyword (Jaroslav Kysela) [2003613]
+- ALSA: aoa: remove unnecessary oom message (Jaroslav Kysela) [2003613]
+- ALSA: arm: Remove unnecessary variables (Jaroslav Kysela) [2003613]
+- ALSA: ac97: fix PM reference leak in ac97_bus_remove() (Jaroslav Kysela) [2003613]
+- ALSA: ac97: Constify static struct attribute_group (Jaroslav Kysela) [2003613]
+- ALSA: virtio: fix kernel-doc (Jaroslav Kysela) [2003613]
+- ALSA: virtio: use module_virtio_driver() to simplify the code (Jaroslav Kysela) [2003613]
+- ALSA: virtio: introduce device suspend/resume support (Jaroslav Kysela) [2003613]
+- ALSA: virtio: introduce PCM channel map support (Jaroslav Kysela) [2003613]
+- ALSA: virtio: introduce jack support (Jaroslav Kysela) [2003613]
+- ALSA: virtio: PCM substream operators (Jaroslav Kysela) [2003613]
+- ALSA: virtio: handling control and I/O messages for the PCM device (Jaroslav Kysela) [2003613]
+- ALSA: virtio: build PCM devices and substream hardware descriptors (Jaroslav Kysela) [2003613]
+- ALSA: virtio: handling control messages (Jaroslav Kysela) [2003613]
+- ALSA: virtio: add virtio sound driver (Jaroslav Kysela) [2003613]
+- uapi: virtio_ids: add a sound device type ID from OASIS spec (Jaroslav Kysela) [2003613]
+- ALSA: firewire: Fix C++ style comments in uapi header (Jaroslav Kysela) [2003613]
+- ALSA: uapi: Fix a C++ style comment in asound.h (Jaroslav Kysela) [2003613]
+- ASoC: topology: Fix stub for snd_soc_tplg_component_remove() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: indicate dai_fmt if exist (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: indicate missing CPU/Codec numbers for debug (Jaroslav Kysela) [2003613]
+- ASoC: SOF: dai-intel: add SOF_DAI_INTEL_SSP_CLKCTRL_MCLK/BCLK_ES bits (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: tidyup dev_dbg() to use 1 line (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: tidyup debug info for clock (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: Increase maximum DAI links limit to 512 (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: add simple_props_to_xxx() macro (Jaroslav Kysela) [2003613]
+- ASoC: hdmi-codec: Use set_jack ops to set jack (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2-custom-sample.dtsi: add Codec2Codec sample (Multi) (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2-custom-sample.dtsi: add Codec2Codec sample (Single) (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2-custom-sample.dtsi: add DPCM sample (Multi) (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2-custom-sample.dtsi: add DPCM sample (Single) (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2-custom-sample.dtsi: add Sample DT for Normal (Nulti) (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2-custom-sample.dtsi: add Sample DT for Normal (Single) (Jaroslav Kysela) [2003613]
+- ASoC: add Audio Graph Card2 Custom Sample (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2: add Codec2Codec support (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2: add DPCM support (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph-card2: add Multi CPU/Codec support (Jaroslav Kysela) [2003613]
+- ASoC: add Audio Graph Card2 driver (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: add codec2codec support (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: add asoc_graph_is_ports0() (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: Fixup CPU endpoint hw_params in a BE<->BE link (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: respawn Platform Support (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: Avoid over-allocating DLCs (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: tidyup graph_parse_node() (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: tidyup graph_dai_link_of_dpcm() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: add simple_link_init() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: add simple_parse_node() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: Fix breakage on kontron-sl28-var3-ads2 (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: tidyup graph_dai_link_of_dpcm() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: add simple_link_init() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: add simple_parse_node() (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: add graph_link_init() (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: add graph_parse_node() (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: remove Platform support (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: remove unused "node" from graph_parse_mclk_fs() (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: remove "audio-graph-card, " preix support (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: check ports if exists (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: move audio_graph_remove() to simple-card-utils.c (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add driver remove() callback (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: move audio_graph_card_probe() to simple-card-utils.c (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: Allocate link info structure on heap (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: Increase maximum number of links to 128 (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: Propagate errors on too many links (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: use simple_props_to_xxx() macro (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: use asoc_link_to_xxx() macro (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: use simple_props_to_xxx() macro (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: use asoc_link_to_xxx() macro (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: remove unused variable from simple_parse_of() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: tidyup asoc_simple_parse_convert() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: multi support at asoc_simple_canonicalize_cpu/platform() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: care multi DAI at asoc_simple_clean_reference() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: remove asoc_simple_parse_xxx() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: use for_each_prop_xxx() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: remove li->dais/li->conf (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: setup dai_props cpu_dai/codec_dai at initial timing (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: share dummy DAI and reduce memory (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: enable flexible CPU/Codec/Platform (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: fix possible uninitialized single_cpu local variable (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: cleanup graph_for_each_link() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: count DAI / link numbers as in order (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: cleanup graph_for_each_link() (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: count DAI / link numbers as in order (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: alloc dai_link information for CPU/Codec/Platform (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils.c: remove old comment (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: Do not handle device clock (Jaroslav Kysela) [2003613]
+- ASoC: generic: simple-card-utils: remove useless assignment (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: Fix device module clock (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: Rename functions needed for export (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: Expose helpers from audio graph (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: Expose new members for asoc_simple_priv (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: Support empty Codec endpoint (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: Identify 'no_pcm' DAI links for DPCM (Jaroslav Kysela) [2003613]
+- ASoC: audio-graph: Use of_node and DAI for DPCM DAI link names (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Drop superfluous snd_dma_buffer_sync() declaration (Jaroslav Kysela) [2003613]
+- ASoC: SOF: dai: include new flags for DAI_CONFIG (Jaroslav Kysela) [2003613]
+- ASoC: SOF: dai: mirror group_id definition added in firmware (Jaroslav Kysela) [2003613]
+- ALSA: core: Use READ_ONCE() / WRITE_ONCE() for power state change (Jaroslav Kysela) [2003613]
+- ALSA: hda_audio_ext: fix kernel-doc (Jaroslav Kysela) [2003613]
+- ALSA: make snd_kcontrol_new name a normal string (Jaroslav Kysela) [2003613]
+- ASoC: constify of_phandle_args in snd_soc_get_dai_name() (Jaroslav Kysela) [2003613]
+- ASoC: tas2770: Fix setting of high sample rates (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: fix the wrong jack type detected (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Restore headphones jack name on Nyan Big (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add DAPM switches for headphones and mic jack (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: pci-tgl: add new ADL-P variant (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: pci-tgl: add ADL-N support (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: Retry codec probing if it fails (Jaroslav Kysela) [2003613]
+- ASoC: amd: fix uninitialized variable in snd_acp6x_probe() (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Fix crash due to out of scope stack vars (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Fix crash due to out of scope stack vars (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Use normal system sleep for ADX (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Use normal system sleep for AMX (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Use normal system sleep for Mixer (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Use normal system sleep for MVC (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Use normal system sleep for SFC (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Balance runtime PM count (Jaroslav Kysela) [2003613]
+- ASoC: SOF: hda: reset DAI widget before reconfiguring it (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Set the max SPI speed for the whole device (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add entry for ESSX8336 on CML (Jaroslav Kysela) [2003613]
+- ASoC: soc-acpi: Set mach->id field on comp_ids matches (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in Mixer (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in ADX (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in AMX (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in SFC (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in MVC (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in AHUB (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in DSPK (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in DMIC (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in I2S (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix kcontrol put callback in ADMAIF (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix wrong value type in MVC (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix wrong value type in SFC (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix wrong value type in DSPK (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix wrong value type in DMIC (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix wrong value type in I2S (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix wrong value type in ADMAIF (Jaroslav Kysela) [2003613]
+- ASoC: topology: Add missing rwsem around snd_ctl_remove() calls (Jaroslav Kysela) [2003613]
+- ASoC: SOF: build compression interface into snd_sof.ko (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Re-detect the combo jack after resuming (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Avoid the unexpected IRQ event during going to suspend (Jaroslav Kysela) [2003613]
+- ASoC: rt1011: revert 'I2S Reference' to SOC_ENUM_EXT (Jaroslav Kysela) [2003613]
+- ASoC: rt9120: Add the compatibility with rt9120s (Jaroslav Kysela) [2003613]
+- ASoC: rt9120: Fix clock auto sync issue when fs is the multiple of 48 (Jaroslav Kysela) [2003613]
+- ASoC: rt9120: Update internal ocp level to the correct value (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: Add support for SKU 0B12 product (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add SKU 0B29 SoundWire configuration (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: Add support for SKU 0B29 product (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add SKU 0B13 SoundWire configuration (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: Add support for SKU 0B13 product (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: Add support for SKU 0B11 product (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: Add support for SKU 0B00 and 0B01 products (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add SKU 0AF3 SoundWire configuration (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: Add support for SKU 0AF3 product (Jaroslav Kysela) [2003613]
+- ASoC: DAPM: Cover regression by kctl change notification fix (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: fix hotplug when only codec is suspended (Jaroslav Kysela) [2003613]
+- ASoC: SOF:control: Fix variable type in snd_sof_refresh_control() (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Change monitor widgets to siggens (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic3x: Make aic3x_remove() return void (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: use const for all uses of snd_soc_acpi_codecs (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi-cht: shrink tables using compatible IDs (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi-byt: shrink tables using compatible IDs (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_rt5682: use comp_ids to enumerate rt5682s (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_rt5682: detect codec variant in probe function (Jaroslav Kysela) [2003613]
+- ASoC: soc-acpi: add comp_ids field for machine driver matching (Jaroslav Kysela) [2003613]
+- ASoC: Stop dummy from overriding hwparams (Jaroslav Kysela) [2003613]
+- ASoC: topology: Change topology device to card device (Jaroslav Kysela) [2003613]
+- ASoC: topology: Use correct device for prints (Jaroslav Kysela) [2003613]
+- ASoC: topology: Check for dapm widget completeness (Jaroslav Kysela) [2003613]
+- ASoC: topology: Add header payload_size verification (Jaroslav Kysela) [2003613]
+- ASoC: core: Remove invalid snd_soc_component_set_jack call (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: select CONFIG_SND_SOC_ACPI (Jaroslav Kysela) [2003613]
+- ASoC: Intel: glk_rt5682_max98357a: support ALC5682I-VS codec (Jaroslav Kysela) [2003613]
+- ASoC: es8316: add support for ESSX8336 ACPI _HID (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Correct configuring of switch inversion from ts-inv (Jaroslav Kysela) [2003613]
+- ASoC: fix unmet dependencies on GPIOLIB for SND_SOC_DMIC (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: fix Kconfig dependencies (Jaroslav Kysela) [2003613]
+- ASoC: rt5682-i2c: Use devm_clk_get_optional for optional clock (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add entry for ESSX8336 on JSL (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Fix return value check in acp_machine_select() (Jaroslav Kysela) [2003613]
+- ASoC: max98520: add max98520 audio amplifier driver (Jaroslav Kysela) [2003613]
+- ASoC: nau8821: clarify out-of-bounds check (Jaroslav Kysela) [2003613]
+- ASoC: nau8821: fix kernel-doc (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: use 'static' qualifier (Jaroslav Kysela) [2003613]
+- ASoC: topology: handle endianness warning (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: SND_SOC_AMD_ACP_COMMON should depend on X86 && PCI (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: SND_SOC_AMD_{LEGACY_MACH,SOF_MACH} should depend on X86 && PCI && I2C (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Wrap AMD Audio ACP components in SND_SOC_AMD_ACP_COMMON (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: free_irq() before powering-down on probe() fail (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Reset and power-down on remove() and failed probe() (Jaroslav Kysela) [2003613]
+- ASoC: nau8825: add clock management for power saving (Jaroslav Kysela) [2003613]
+- ASoC: nau8825: add set_jack coponment support (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Prevent NULL pointer deref in interrupt handler (Jaroslav Kysela) [2003613]
+- ASoC: wm8962: Convert to devm_clk_get_optional() (Jaroslav Kysela) [2003613]
+- ASoC: fix unmet dependency on GPIOLIB for SND_SOC_MAX98357A (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Make cs35l41_remove() return void (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Set default card name for Trimslice (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Restore AC97 support (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Add acp_machine struct for renoir platform. (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Downsizing the DAC volume scale (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Remove unused runtime_suspend/runtime_resume callbacks (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Minor error paths fixups (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Add support for ACPI table match entry (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Use device_property API instead of of_property (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Move soc_intel_is_foo() helpers to a generic header (Jaroslav Kysela) [2003613]
+- ASoC: amd: enable Yellow Carp platform machine driver build (Jaroslav Kysela) [2003613]
+- ASoC: amd: add YC machine driver using dmic (Jaroslav Kysela) [2003613]
+- ASoC: amd: create platform device for acp6x machine driver (Jaroslav Kysela) [2003613]
+- ASoC: amd: enable Yellow carp acp6x drivers build (Jaroslav Kysela) [2003613]
+- ASoC: amd: add acp6x pdm driver pm ops (Jaroslav Kysela) [2003613]
+- ASoC: amd: add acp6x pci driver pm ops (Jaroslav Kysela) [2003613]
+- ASoC: amd: add acp6x pdm driver dma ops (Jaroslav Kysela) [2003613]
+- ASoC: amd: add acp6x irq handler (Jaroslav Kysela) [2003613]
+- ASoC: amd: add acp6x pdm platform driver (Jaroslav Kysela) [2003613]
+- ASoC: amd: add platform devices for acp6x pdm driver and dmic driver (Jaroslav Kysela) [2003613]
+- ASoC: amd: add acp6x init/de-init functions (Jaroslav Kysela) [2003613]
+- ASoC: amd: add Yellow Carp ACP PCI driver (Jaroslav Kysela) [2003613]
+- ASoC: amd: add Yellow Carp ACP6x IP register header (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Add support for RT5682-VS codec (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Add support for Maxim amplifier codec (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Add SOF audio support on Chrome board (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Add legacy sound card support for Chrome audio (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Add generic machine driver support for ACP cards (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Add callback for machine driver on ACP (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: Add I2S support on Renoir platform (Jaroslav Kysela) [2003613]
+- ASoC: amd: Add common framework to support I2S on ACP SOC (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: tidyup empty function (Jaroslav Kysela) [2003613]
+- ASoC: soc-component: add snd_soc_component_is_codec() (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: tidyup soc_pcm_hw_clean() - step2 (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: tidyup soc_pcm_hw_clean() - step1 (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Always enable TS_PLUG and TS_UNPLUG interrupts (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Fix WARN in remove() if running without an interrupt (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Mark OSC_SWITCH_STATUS register volatile (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Set correct SRC MCLK (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Allow time for HP/ADC to power-up after enable (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Use PLL for SCLK > 12.288MHz (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Don't claim to support 192k (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Don't set defaults for volatile registers (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Correct some register default values (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Always configure both ASP TX channels (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Don't reconfigure the PLL while it is running (Jaroslav Kysela) [2003613]
+- ASoC: soc-component: improve error reporting for register access (Jaroslav Kysela) [2003613]
+- ASoC: amd: enable vangogh platform machine driver build (Jaroslav Kysela) [2003613]
+- ASoC: amd: add vangogh machine driver (Jaroslav Kysela) [2003613]
+- ASoc: amd: create platform device for VG machine driver (Jaroslav Kysela) [2003613]
+- ASoC: test-component: add Test Component for Sound debug/test (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: fix a little pop while playback (Jaroslav Kysela) [2003613]
+- ASoC: rt1011: Fix 'I2S Reference' enum control (Jaroslav Kysela) [2003613]
+- ASoC: rt9120: Add rt9210 audio amplifier support (Jaroslav Kysela) [2003613]
+- ASoC: amd: vangogh: constify static struct snd_soc_dai_ops (Jaroslav Kysela) [2003613]
+- ASoC: rt9120: Drop rt9210 audio amplifier support (Jaroslav Kysela) [2003613]
+- ASoC: rt1011: Fix 'I2S Reference' enum control caused error (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Ensure 0dB full scale volume is used for headsets (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5651: Utilize dev_err_probe() to avoid log saturation (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5651: use devm_clk_get_optional() for mclk (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5651: Use temporary variable for struct device (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5651: switch to using devm_fwnode_gpiod_get() (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5651: Get platform data via dev_get_platdata() (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Utilize dev_err_probe() to avoid log saturation (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: use devm_clk_get_optional() for mclk (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Use temporary variable for struct device (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Get platform data via dev_get_platdata() (Jaroslav Kysela) [2003613]
+- ASoC: amd: Kconfig: Select fch clock support with machine driver (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: fix null-ptr-deref in snd_soc_del_component_unlocked() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: prepare code to allocate IPC messages in fw_ready (Jaroslav Kysela) [2003613]
+- ASoC: rt9120: Add rt9210 audio amplifier support (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: restore mixer functionality (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Fix hp pop produced immediately after resuming (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Introduce fragment elapsed notification API (Jaroslav Kysela) [2003613]
+- ASoC: SOF: imx: Use newly introduced generic IPC stream ops (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Make Intel IPC stream ops generic (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Introduce snd_sof_mailbox_read / snd_sof_mailbox_write callbacks (Jaroslav Kysela) [2003613]
+- ASoC: SOF: pipelines: Harmonize all functions to use struct snd_sof_dev (Jaroslav Kysela) [2003613]
+- ASoC: SOF: topology: do not power down primary core during topology removal (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: Dump registers and stack when SOF_DBG_DUMP_REGS is set (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda-loader: Drop SOF_DBG_DUMP_REGS flag from dbg_dump calls (Jaroslav Kysela) [2003613]
+- ASoC: SOF: loader: Drop SOF_DBG_DUMP_REGS flag when firmware start fails (Jaroslav Kysela) [2003613]
+- ASoC: SOF: core: Clean up snd_sof_get_status() prints (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: hda: Drop 'error' prefix from error dump functions (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Introduce macro to set the firmware state (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ops: Force DSP panic dumps to be printed (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ipc: Re-enable dumps after successful IPC tx (Jaroslav Kysela) [2003613]
+- ASoC: SOF: debug: Print out the fw_state along with the DSP dump (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Drop SOF_DBG_DUMP_FORCE_ERR_LEVEL and sof_dev_dbg_or_err (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: hda-loader: Use snd_sof_dsp_dbg_dump() for DSP dump (Jaroslav Kysela) [2003613]
+- ASoC: SOF: debug: Add SOF_DBG_DUMP_OPTIONAL flag for DSP dumping (Jaroslav Kysela) [2003613]
+- ASoC: SOF: debug/ops: Move the IPC and DSP dump functions out from the header (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: atom: No need to do a DSP dump in atom_run() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: loader: Print the DSP dump if boot fails (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Print the dbg_dump and ipc_dump once to reduce kernel log noise (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ipc and dsp dump: Add markers for better visibility (Jaroslav Kysela) [2003613]
+- ASoC: SOF: debug: Swap the dsp_dump and ipc_dump sequence for fw_exception (Jaroslav Kysela) [2003613]
+- ASoC: SOF: core: debug: force all processing on primary core (Jaroslav Kysela) [2003613]
+- ASoC: max98927: Handle reset gpio when probing i2c (Jaroslav Kysela) [2003613]
+- ASoC: DAPM: Fix missing kctl change notifications (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcht_es8316: Utilize dev_err_probe() to avoid log saturation (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcht_es8316: Switch to use gpiod_get_optional() (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcht_es8316: Use temporary variable for struct device (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcht_es8316: Get platform data via dev_get_platdata() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: OF: Add fw_path and tplg_path parameters (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp-rt5645: Constify static snd_soc_ops (Jaroslav Kysela) [2003613]
+- ASoC: SOF: topology: return error if sof_connect_dai_widget() fails (Jaroslav Kysela) [2003613]
+- ASoC: SOF: topology: allow for dynamic pipelines override for debug (Jaroslav Kysela) [2003613]
+- ASoC: SOF: topology: show clks_control value in dynamic debug (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda-dai: improve SSP DAI handling for dynamic pipelines (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: add new flags for DAI_CONFIG (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: add missing quirk for Dell SKU 0A45 (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add missing quirk for TGL SDCA single amp (Jaroslav Kysela) [2003613]
+- ASoC: Intel: add machine driver for SOF+ES8336 (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: apl/glk/tgl: add entry for devices based on ES8336 codec (Jaroslav Kysela) [2003613]
+- ASoC: Intel: cht_bsw_nau8824: Set card.components string (Jaroslav Kysela) [2003613]
+- ASoC: nau8824: Add a nau8824_components() helper (Jaroslav Kysela) [2003613]
+- ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect (Jaroslav Kysela) [2003613]
+- ASoC: nau8824: Fix NAU8824_JACK_LOGIC define (Jaroslav Kysela) [2003613]
+- ASoC: rt5651: Use IRQF_NO_AUTOEN when requesting the IRQ (Jaroslav Kysela) [2003613]
+- ASoC: es8316: Use IRQF_NO_AUTOEN when requesting the IRQ (Jaroslav Kysela) [2003613]
+- ASoC: nau8821: new driver (Jaroslav Kysela) [2003613]
+- ASoC: SOF: topology: Add kernel parameter for topology verification (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Add support for dynamic pipelines (Jaroslav Kysela) [2003613]
+- treewide: Use fallthrough pseudo-keyword (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: make sure DAI widget is set up before IPC (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Introduce widget use_count (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Don't set up widgets during topology parsing (Jaroslav Kysela) [2003613]
+- ASoC: SOF: restore kcontrols for widget during set up (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Add new fields to snd_sof_route (Jaroslav Kysela) [2003613]
+- AsoC: dapm: export a couple of functions (Jaroslav Kysela) [2003613]
+- ASoC: SOF: sof-audio: add helpers for widgets, kcontrols and dai config set up (Jaroslav Kysela) [2003613]
+- ASoC: SOF: topology: Add new token for dynamic pipeline (Jaroslav Kysela) [2003613]
+- ASoC: SOF: control: Add access field in struct snd_sof_control (Jaroslav Kysela) [2003613]
+- ASoC: topology: change the complete op in snd_soc_tplg_ops to return int (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Fix HP noise caused by SAR mode switch when the system resumes (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Enable ASRC auto-disable to fix pop during jack plug-in while playback (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_rt5682: Add support for max98360a speaker amp (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Constify static snd_soc_ops (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: move clk related code to rt5682_i2c_probe (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Use clk_hw based APIs for registration (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Drop usage of __clk_get_name() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Change SND_SOC_SOF_TOPLEVEL from config to menuconfig (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Revise the macro RT5682S_PLLB_SRC_MASK (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Use dev_dbg instead of pr_debug (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Remove the volatile SW reset register from reg_default (Jaroslav Kysela) [2003613]
+- ASoC: nau8824: Fix headphone vs headset, button-press detection no longer working (Jaroslav Kysela) [2003613]
+- ASoC: intel: sof_rt5682: update platform device name for Maxim amplifier (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ipc: Make the error prints consistent in tx_wait_done() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: prefix some terse and cryptic dev_dbg() with __func__ (Jaroslav Kysela) [2003613]
+- ASoC: SOF: add error handling to snd_sof_ipc_msg_data() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: imx: add header file for ops (Jaroslav Kysela) [2003613]
+- ASoC: SOF: pm: fix a stale comment (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda-stream: Print stream name on STREAM_SD_OFFSET timeout (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda-dai: fix potential locking issue (Jaroslav Kysela) [2003613]
+- ASoC: ak4458: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2003613]
+- ASoC: ak5558: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2003613]
+- ASoC: dwc-i2s: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: ak4671: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2003613]
+- ASoC: alc5623: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2003613]
+- ASoC: bcm: Convert to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: cpcap: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2003613]
+- ASoC: codecs: Fix spelling mistake "Unsupport" -> "Unsupported" (Jaroslav Kysela) [2003613]
+- ASoC: ad193x: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Constify static snd_soc_dai_ops structs (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Use two thresholds and increased wait time for manual type detection (Jaroslav Kysela) [2003613]
+- ASoC: adau1977: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: adau17x1: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: adau1701: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: adau1373: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: adau1372: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: ad1836: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: ep93xx: Convert to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: samsung: add missing "fallthrough;" (Jaroslav Kysela) [2003613]
+- ASoC: ak4642: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2003613]
+- ASoC: wcd9335: Use correct version to initialize Class H (Jaroslav Kysela) [2003613]
+- ASoC: alc5632: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2003613]
+- ASoC: ak4104: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: ak4118: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: zl38060: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: cs4341: Add SPI device ID table (Jaroslav Kysela) [2003613]
+- ASoC: pcm179x: Add missing entries SPI to device ID table (Jaroslav Kysela) [2003613]
+- ASoC: pl1022_rdk: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: pl1022_ds: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: mpc8610_hpcd: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: imx-sgtl5000: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: imx-es8328: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: imx-audmix: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: fsl_sai: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: fsl-mqs: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: fsl-esai: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: fsl-audmix: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: eureka-tlv320: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: cros_ec_codec: Use modern ASoC DAI format terminology (Jaroslav Kysela) [2003613]
+- ASoC: pcm512x: Mend accesses to the I2S_1 and I2S_2 registers (Jaroslav Kysela) [2003613]
+- ASoC: codecs: max98390: simplify getting the adapter of a client (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: Update to modern clocking terminology (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Remove struct sof_ops_table and sof_get_ops() macro (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: make rt5682s_aif2_dai_ops and rt5682s_soc_component_dev (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add Tegra210 based Mixer driver (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add Tegra210 based ADX driver (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add Tegra210 based AMX driver (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add Tegra210 based SFC driver (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add Tegra210 based MVC driver (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add routes for few AHUB modules (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: Don't reconnect an already active BE (Jaroslav Kysela) [2003613]
+- ASoC: compress/component: Use module_get_when_open/put_when_close for cstream (Jaroslav Kysela) [2003613]
+- ASoC: soc-component: Convert the mark_module to void* (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Rename sof_arch_ops to dsp_arch_ops (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ipc: Remove redundant error check from sof_ipc_tx_message_unlocked (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ipc: Print 0x prefix for errors in ipc_trace/stream_message() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ipc: Clarify the parameter name for ipc_trace_message() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: trace: Omit error print when waking up trace sleepers (Jaroslav Kysela) [2003613]
+- misc: cs35l41: Remove unused pdn variable (Jaroslav Kysela) [2003613]
+- ASoC: SOF: imx8m: add SAI1 info (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Minor fix all errors reported by checkpatch.pl script (Jaroslav Kysela) [2003613]
+- ASoC: SOF: core: Move probe work related code under a single if () branch (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Implement Manual Type detection as fallback (Jaroslav Kysela) [2003613]
+- ASoC: SOF: sof-probes: Correct the function names used for snd_soc_cdai_ops (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: Rename hda-compress.c to hda-probes.c (Jaroslav Kysela) [2003613]
+- ASoC: SOF: probe: Merge and clean up the probe and compress files (Jaroslav Kysela) [2003613]
+- ASoC: SOF: compress: move and export sof_probe_compr_ops (Jaroslav Kysela) [2003613]
+- ASoC: SOF: pcm: Remove non existent CONFIG_SND_SOC_SOF_COMPRESS reference (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ipc: Add probe message logging to ipc_log_header() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: loader: Re-phrase the missing firmware error to avoid duplication (Jaroslav Kysela) [2003613]
+- ASoC: SOF: loader: release_firmware() on load failure to avoid batching (Jaroslav Kysela) [2003613]
+- ASoC: SOF: debug: No need to export the snd_sof_debugfs_io_item() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: loader: Use the generic ops for region debugfs handling (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: Provide debugfs_add_region_item ops for core (Jaroslav Kysela) [2003613]
+- ASoC: SOF: imx: Provide debugfs_add_region_item ops for core (Jaroslav Kysela) [2003613]
+- ASoC: SOF: debug: Add generic API and ops for DSP regions (Jaroslav Kysela) [2003613]
+- ASoC: SOF: core: Do not use 'bar' as parameter for block_read/write (Jaroslav Kysela) [2003613]
+- ASoC: SOF: loader: No need to export snd_sof_fw_parse_ext_data() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: imx: Do not initialize the snd_sof_dsp_ops.read64 (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ipc: Remove snd_sof_dsp_mailbox_init() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: bdw: Set the mailbox offset directly in bdw_probe (Jaroslav Kysela) [2003613]
+- ASoC: SOF: imx: imx8m: Bar index is only valid for IRAM and SRAM types (Jaroslav Kysela) [2003613]
+- ASoC: SOF: imx: imx8: Bar index is only valid for IRAM and SRAM types (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Fix a bunch of trivial code formating/style issues (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Fixup the error messages (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Don't overwrite returned error code (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Combine adjacent register writes (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Use regmap_read_poll_timeout to wait for OTP boot (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: Fix use of an uninitialised variable (Jaroslav Kysela) [2003613]
+- ASoC: SOF: loader: load_firmware callback is mandatory, treat it like that (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: Relocate inline definitions from hda.h to hda.c for sdw (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: Remove boot_firmware skl and iccmax_icl declarations (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda-dsp: Declare locally used functions as static (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: Do no initialize resindex_dma_base (Jaroslav Kysela) [2003613]
+- ASoC: intel: sof_rt5682: support jsl_rt5682s_mx98360a board (Jaroslav Kysela) [2003613]
+- ASoC: intel: sof_rt5682: support jsl_rt5682s_rt1015 board (Jaroslav Kysela) [2003613]
+- ASoC: intel: sof_rt5682: support jsl_rt5682s_rt1015p board (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_rt5682: support ALC5682I-VS codec (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Fix DSP oops stack dump output contents (Jaroslav Kysela) [2003613]
+- ASoC: pcm5102a: increase rate from 192k to 384k (Jaroslav Kysela) [2003613]
+- ASoC: rt1011: add i2s reference control for rt1011 (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Handle control change notification from firmware (Jaroslav Kysela) [2003613]
+- ASoC: SOF: control: fix a typo in put operations for kcontrol (Jaroslav Kysela) [2003613]
+- ASoC: rt5682s: Add driver for ALC5682I-VS codec (Jaroslav Kysela) [2003613]
+- ASoC: SOF: core: allow module parameter to override dma trace Kconfig (Jaroslav Kysela) [2003613]
+- ASoC: soc-topology: Move template info print soc_tplg_dapm_widget_create() (Jaroslav Kysela) [2003613]
+- ASoC: amd: acp: declare and add prefix to 'bt_uart_enable' symbol (Jaroslav Kysela) [2003613]
+- ASoC: cs35l41: CS35L41 Boosted Smart Amplifier (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: tag SoundWire BEs as non-atomic (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: Fix CONFIG_SND_SOC_SDW_MOCKUP select (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: fix headset background noise when S3 state (Jaroslav Kysela) [2003613]
+- ASoC: Revert PCM trigger changes (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: test refcount before triggering (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: protect BE dailink state changes in trigger (Jaroslav Kysela) [2003613]
+- ASoC: dwc: Get IRQ optionally (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Fix the vol+ button detection issue (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Make rt5640_jack_gpio/rt5640_jack2_gpio static (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: remove duplicate include (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: move common ATOM stuff to module (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: byt: prepare split between Baytrail and Merrifield (Jaroslav Kysela) [2003613]
+- ASoC: rt1015: remove possible unused variable `bclk_ms' (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Mark hp_elitepad_1000g2_jack?_check functions static (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Select first entry for singular pipe config arrays (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Properly configure modules with generic extension (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Support modules with generic extension (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Support multiple format configs (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Simplify m_state for loadable modules (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Fix passing loadable flag for module (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Fix module configuration for KPB and MIXER (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Fix module resource and format selection (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Select proper format for NHLT blob (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: Leave data as is when invoking TLV IPCs (Jaroslav Kysela) [2003613]
+- ASoC: Intel: kbl_da7219_max98927: Fix format selection for max98373 (Jaroslav Kysela) [2003613]
+- ASoC: intel: atom: Revert PCM buffer address setup workaround again (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Add support for HP Elite Pad 1000G2 jack-detect (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytct_rt5640: Add a separate "Headset Mic 2" DAPM pin for the mic on the 2nd jack (Jaroslav Kysela) [2003613]
+- ASoC: rt5640: Add rt5640_set_ovcd_params() helper (Jaroslav Kysela) [2003613]
+- ASoC: rt5640: Add optional hp_det_gpio parameter to rt5640_detect_headset() (Jaroslav Kysela) [2003613]
+- ASoC: rt5640: Delay requesting IRQ until the machine-drv calls set_jack (Jaroslav Kysela) [2003613]
+- ASoC: rt5640: Move rt5640_disable_jack_detect() up in the rt5640.c file (Jaroslav Kysela) [2003613]
+- ASoC: intel: atom: Fix breakage for PCM buffer address setup (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Use cfg-lineout:2 in the components string (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: i2s: Fix incorrect usage of of_device_get_match_data (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: ahub: Fix incorrect usage of of_device_get_match_data (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: i2s: Use of_device_get_match_data (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: ahub: Use of_device_get_match_data (Jaroslav Kysela) [2003613]
+- ASoC: soc-ac97: cleanup cppcheck warning (Jaroslav Kysela) [2003613]
+- ASoC: soc-component: cleanup cppcheck warning at snd_soc_pcm_component_pm_runtime_get() (Jaroslav Kysela) [2003613]
+- ASoC: soc-jack: cleanup cppcheck warning for CONFIG_GPIOLIB (Jaroslav Kysela) [2003613]
+- ASoC: soc-jack: cleanup cppcheck warning at snd_soc_jack_report() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dai: cleanup cppcheck warning at snd_soc_pcm_dai_new() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dai: cleanup cppcheck warning at snd_soc_dai_link_set_capabilities() (Jaroslav Kysela) [2003613]
+- ASoC: soc-generic-dmaengine-pcm: cleanup cppcheck warning at dmaengine_copy_user() (Jaroslav Kysela) [2003613]
+- ASoC: soc-generic-dmaengine-pcm: cleanup cppcheck warning at dmaengine_pcm_new() (Jaroslav Kysela) [2003613]
+- ASoC: soc-generic-dmaengine-pcm: cleanup cppcheck warning at dmaengine_pcm_hw_params() (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw_rt711*: keep codec device reference until remove (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: pass card information to init/exit functions (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: get codec device with ACPI instead of bus search (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: handle errors with acpi_dev_get_first_match_dev() (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: harden codec property handling (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Remove unused variable in rt5682_i2c_remove() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: make DMI L1 selection more robust (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: simplify logic for DMI_L1 handling (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda-stream: remove always true condition (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: Kconfig: clarify DMI L1 option description (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Properly turn off regulators if wrong device ID (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Implement remove callback (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Disable irq on shutdown (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Adjust headset volume button threshold again (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Fix platform ID matching (Jaroslav Kysela) [2003613]
+- ASoC: rt1015p: add new acpi id and comapatible id (Jaroslav Kysela) [2003613]
+- ASoC: max98390: Add support change dsm param name (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Update module authors (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Assume 24-bit samples are in 32-bit slots (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Validate dai_set_sysclk() frequency (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Add PLL configuration for 44.1kHz/16-bit (Jaroslav Kysela) [2003613]
+- ASoC: rt5640: Silence warning message about missing interrupt (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Fix mono playback (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Constrain sample rate to prevent illegal SCLK (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Fix LRCLK frame start edge (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: PLL must be running when changing MCLK_SRC_SEL (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Add support for set_jack calls (Jaroslav Kysela) [2003613]
+- ASoC: mt6359-accdet.c: remove useless assignments (Jaroslav Kysela) [2003613]
+- ASoC: max98090: remove duplicate status reads and useless assignmment (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at soc_dapm_dai_stream_event() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at snd_soc_dapm_new_controls() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at snd_soc_dapm_weak_routes() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at snd_soc_dapm_add_routes() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at snd_soc_dapm_del_route() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at dapm_seq_run() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at dapm_seq_check_event() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at dapm_new_dai_link() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at dapm_new_pga() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at dapm_set_mixer_path_status() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at dapm_connect_mux() (Jaroslav Kysela) [2003613]
+- ASoC: soc-dapm: cleanup cppcheck warning at dapm_wcache_lookup() (Jaroslav Kysela) [2003613]
+- ASoC: amd: vangogh: Drop superfluous mmap callback (Jaroslav Kysela) [2003613]
+- ASoC: sprd: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ASoC: qcom: qdsp6: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ASoC: mpc5200: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ASoC: fsl_dma: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ASoC: fsl_asrc_dma: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ASoC: fsl: imx-pcm-fiq: Use managed buffer allocation (Jaroslav Kysela) [2003613]
+- ASoC: bcm: Use managed PCM buffer allocation (Jaroslav Kysela) [2003613]
+- ALSA: pxa2xx: Use managed PCM buffer allocation (Jaroslav Kysela) [2003613]
+- ASoC: rt5514: make array div static const, makes object smaller (Jaroslav Kysela) [2003613]
+- ASoC: codecs: ad193x: add support for 96kHz and 192kHz playback rates (Jaroslav Kysela) [2003613]
+- ASoC: soc-ops: cleanup cppcheck warning at snd_soc_put_xr_sx() (Jaroslav Kysela) [2003613]
+- ASoC: soc-ops: cleanup cppcheck warning at snd_soc_get_xr_sx() (Jaroslav Kysela) [2003613]
+- ASoC: soc-ops: cleanup cppcheck warning at snd_soc_limit_volume() (Jaroslav Kysela) [2003613]
+- ASoC: soc-ops: cleanup cppcheck warning at snd_soc_put_volsw_sx() (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw_max98373: remove useless inits (Jaroslav Kysela) [2003613]
+- ASoC: Intel: update sof_pcm512x quirks (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: Use DMI string to search for adl_mx98373_rt5682 variant (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: add quirk for Dell XPS 9710 (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Remove duplicate control for WNF filter frequency (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Fix inversion of ADC Notch Switch control (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda-ipc: fix reply size checking (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: Kconfig: fix SoundWire dependencies (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Fix HP ElitePad 1000 G2 quirk (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Add support for a second headset mic input (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Add support for a second headphones output (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Add a byt_rt5640_get_codec_dai() helper (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Add line-out support (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bytcr_rt5640: Move "Platform Clock" routes to the maps for the matching in-/output (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: add snd_sof_dsp_check_sdw_irq ops (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: move sof_intel_dsp_desc() forward (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: hda: remove HDA_DSP_REG_SNDW_WAKE_STS definition (Jaroslav Kysela) [2003613]
+- ASoC: SOF: intel: add sdw_shim/alh_base to sof_intel_dsp_desc (Jaroslav Kysela) [2003613]
+- ASoC: soc-topology: cleanup cppcheck warning at snd_soc_find_dai_link() (Jaroslav Kysela) [2003613]
+- ASoC: soc-topology: cleanup cppcheck warning at soc_tplg_kcontrol_elems_load() (Jaroslav Kysela) [2003613]
+- ASoC: soc-topology: cleanup cppcheck warning at soc_tplg_dapm_widget_elems_load() (Jaroslav Kysela) [2003613]
+- ASoC: soc-topology: cleanup cppcheck warning at soc_tplg_dai_elems_load() (Jaroslav Kysela) [2003613]
+- ASoC: soc-topology: cleanup cppcheck warning at soc_tplg_process_headers() (Jaroslav Kysela) [2003613]
+- ASoC: amd: Fix reference to PCM buffer address (Jaroslav Kysela) [2003613]
+- soundwire: add flag to ignore all command/control for mockup devices (Jaroslav Kysela) [2003613]
+- ASoC: nau8824: Fix open coded prefix handling (Jaroslav Kysela) [2003613]
+- ASoC: uniphier: Fix reference to PCM buffer address (Jaroslav Kysela) [2003613]
+- ASoC: xilinx: Fix reference to PCM buffer address (Jaroslav Kysela) [2003613]
+- ASoC: intel: atom: Fix reference to PCM buffer address (Jaroslav Kysela) [2003613]
+- ASoC: intel: skylake: Drop superfluous mmap callback (Jaroslav Kysela) [2003613]
+- ASoC: amd: Drop superfluous mmap callbacks (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Fix bclk calculation for mono (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Don't allow SND_SOC_DAIFMT_LEFT_J (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Correct definition of ADC Volume control (Jaroslav Kysela) [2003613]
+- ASoC: v253_init: eliminate pointer to string (Jaroslav Kysela) [2003613]
+- ASoC: samsung: Constify static snd_soc_ops (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: cleanup cppcheck warning at snd_soc_of_parse_audio_routing() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: cleanup cppcheck warning at snd_soc_of_parse_audio_simple_widgets() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: cleanup cppcheck warning at snd_soc_add_controls() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: cleanup cppcheck warning at snd_soc_unregister_component() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: cleanup cppcheck warning at snd_soc_daifmt_parse_format() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: cleanup cppcheck warning at snd_soc_get_dai_name() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: cleanup cppcheck warning at snd_soc_set_dmi_name() (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Fix spelling contraction "cant" -> "can't" (Jaroslav Kysela) [2003613]
+- ASoC: component: Remove misplaced prefix handling in pin control functions (Jaroslav Kysela) [2003613]
+- ASoC: amd: fix an IS_ERR() vs NULL bug in probe (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: enable SAR ADC power saving mode during suspend (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: cleanup cppcheck warning at dpcm_runtime_setup_be_chan() (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: cleanup cppcheck warning at dpcm_be_is_active() (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: cleanup cppcheck warning at soc_get_playback_capture() (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: cleanup cppcheck warning at soc_pcm_components_close() (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: cleanup cppcheck warning at soc_pcm_apply_msb() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: enforce exclusion between HDaudio and SoundWire (Jaroslav Kysela) [2003613]
+- ASoC: topology: Select SND_DYNAMIC_MINORS (Jaroslav Kysela) [2003613]
+- ASoC: rt1015: Remove unnecessary flush work on rt1015 driver (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_da7219_mx98360a: fail to initialize soundcard (Jaroslav Kysela) [2003613]
+- ASoC: amd: Use dev_probe_err helper (Jaroslav Kysela) [2003613]
+- ASoC: amd: Don't show messages about deferred probing by default (Jaroslav Kysela) [2003613]
+- ASoC: amd: enable stop_dma_first flag for cz_dai_7219_98357 dai link (Jaroslav Kysela) [2003613]
+- ASoC: amd: enable vangogh acp5x driver build (Jaroslav Kysela) [2003613]
+- ASoC: amd: add vangogh i2s dma driver pm ops (Jaroslav Kysela) [2003613]
+- ASoC: amd: add vangogh pci driver pm ops (Jaroslav Kysela) [2003613]
+- ASoC: amd: add vangogh i2s dai driver ops (Jaroslav Kysela) [2003613]
+- ASoC: amd: add vangogh i2s controller driver (Jaroslav Kysela) [2003613]
+- ASoC: amd: add ACP5x pcm dma driver ops (Jaroslav Kysela) [2003613]
+- ASoC: amd: irq handler changes for ACP5x PCM dma driver (Jaroslav Kysela) [2003613]
+- ASoC: amd: add ACP5x PCM platform driver (Jaroslav Kysela) [2003613]
+- ASoC: amd: create acp5x platform devices (Jaroslav Kysela) [2003613]
+- ASoc: amd: add acp5x init/de-init functions (Jaroslav Kysela) [2003613]
+- ASoC: amd: add Vangogh ACP PCI driver (Jaroslav Kysela) [2003613]
+- ASoC: amd: add Vangogh ACP5x IP register header (Jaroslav Kysela) [2003613]
+- ASoC: amd: renoir: Run hibernation callbacks (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Adjust headset volume button threshold (Jaroslav Kysela) [2003613]
+- ASOC: Intel: sof_sdw: add quirk for Intel 'Bishop County' NUC M15 (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Fix the issue of garbled recording after powerd_dbus_suspend (Jaroslav Kysela) [2003613]
+- ASoC: amd: reverse stop sequence for stoneyridge platform (Jaroslav Kysela) [2003613]
+- ASoC: soc-pcm: add a flag to reverse the stop sequence (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: sof_sdw: add SoundWire mockup codecs for tests (Jaroslav Kysela) [2003613]
+- ASoC: soc-acpi: tgl: add table for SoundWire mockup devices (Jaroslav Kysela) [2003613]
+- ASoC: soc-acpi: cnl: add table for SoundWire mockup devices (Jaroslav Kysela) [2003613]
+- ASoC: codecs: add SoundWire mockup device support (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: update quirk for jack detection in ADL RVP (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: include rt711.h for RT711 JD mode (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: extends SOF_RT711_JDSRC to 4 bits (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_rt5682: code refactor for max98360a (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_rt5682: code refactor for max98357a (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_rt5682: Enable Bluetooth offload on tgl and adl (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_cs42l42: add support for jsl_cs4242_mx98360a (Jaroslav Kysela) [2003613]
+- ASoC: Intel: maxim-common: support max98360a (Jaroslav Kysela) [2003613]
+- ASoC: Intel: maxim-common: support max98357a (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_cs42l42: support arbitrary DAI link sequence (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: Update ADL descriptor to use ACPI power states (Jaroslav Kysela) [2003613]
+- ASoC: rt5631: Fix regcache sync errors on resume (Jaroslav Kysela) [2003613]
+- ASoC: amd: fix spelling mistakes (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_cs42l42: use helper function to get bclk frequency (Jaroslav Kysela) [2003613]
+- ASoC: SOF: add a helper to get topology configured bclk (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Use ADMAIF component for DMA allocations (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: fix xrun issue on platform with max98373 (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: ahub: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: tegra: mark runtime-pm functions as __maybe_unused (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: ahub: Remove handing of disabled runtime PM (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: ahub: Correct suspend-resume callbacks (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: ahub: Reset global variable (Jaroslav Kysela) [2003613]
+- ASoC: tegra30: ahub: Switch to use reset-bulk API (Jaroslav Kysela) [2003613]
+- ASoC: tegra: ahub: Reset hardware properly (Jaroslav Kysela) [2003613]
+- ASoC: tegra: ahub: Use clk_bulk helpers (Jaroslav Kysela) [2003613]
+- ASoC: tegra: ahub: Add missing resets (Jaroslav Kysela) [2003613]
+- ASoC: tegra: tegra210_admaif: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: spdif: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: tegra20: i2s: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card: Fill in driver name (Jaroslav Kysela) [2003613]
+- ASoC: SOF: imx: Add missing of_node_put() in imx8_probe() (Jaroslav Kysela) [2003613]
+- ASoC: Intel: skl_hda_dsp_generic: Update Kconfig documentation (Jaroslav Kysela) [2003613]
+- ASoC: Intel: use MODULE_DEVICE_TABLE with platform_device_id tables (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add ull suffix for SoundWire _ADR values (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: fix signed/unsigned warning (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_da7219_max98373: shrink platform_id below 20 characters (Jaroslav Kysela) [2003613]
+- ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters (Jaroslav Kysela) [2003613]
+- ASoC: Intel: glk_rt5682_max98357a: shrink platform_id below 20 characters (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_rt5682: shrink platform_id names below 20 characters (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: remove hdac-hdmi support (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: use mach data for ADL RVP DMIC count (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Fix a NULL vs IS_ERR() check (Jaroslav Kysela) [2003613]
+- ASoC: rt711: add two jack detection modes (Jaroslav Kysela) [2003613]
+- ASoC: samsung: s3c24xx-i2s: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: samsung: s3c2412-i2s: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: samsung: pcm: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: samsung: i2s: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: remove snd_soc_of_parse_daifmt() (Jaroslav Kysela) [2003613]
+- ASoC: simple-card-utils: switch to use snd_soc_daifmt_parse_format/clock_provider() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: add snd_soc_daifmt_parse_format/clock_provider() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: add snd_soc_daifmt_clock_provider_fliped() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: add snd_soc_daifmt_clock_provider_from_bitmap() (Jaroslav Kysela) [2003613]
+- ASoC: rt711-sdca-sdw: fix race condition on system suspend (Jaroslav Kysela) [2003613]
+- ASoC: rt5682-sdw: fix race condition on system suspend (Jaroslav Kysela) [2003613]
+- ASoC: rt711-sdw: fix race condition on system suspend (Jaroslav Kysela) [2003613]
+- ASoC: rt700-sdw: fix race condition on system suspend (Jaroslav Kysela) [2003613]
+- ASoC: fsi: fix spelling mistake (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bdw-rt5677: remove unnecessary oom message (Jaroslav Kysela) [2003613]
+- ASoC: spear: spdif_out: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: sprd: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing() (Jaroslav Kysela) [2003613]
+- ASoC: sti: sti_uniperif: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: stm32: spdifrx: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: stm32: sai: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: stm32: i2s: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: hdmi-codec: make hdmi_codec_controls static (Jaroslav Kysela) [2003613]
+- ASoC: rockchip: spdif: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: rockchip: pdm: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: rockchip: i2s: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Correct definition of CS42L42_ADC_PDN_MASK (Jaroslav Kysela) [2003613]
+- ASoC: hisilicon: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: jz4740-i2s: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: img-spdif-out: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: img-spdif-in: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: img-parallel-out: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: img-i2s-out: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: img-i2s-in: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: dwc: dwc-i2s: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Squash utils into common machine driver (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Specify components string for each card (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Unify ASoC machine drivers (Jaroslav Kysela) [2003613]
+- ASoC: tegra: SND_SOC_TEGRA_AUDIO_GRAPH_CARD should depend on SND_SOC_TEGRA (Jaroslav Kysela) [2003613]
+- ASoC: tegra20-spdif: remove "default m" (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Add audio graph based card driver (Jaroslav Kysela) [2003613]
+- ASoC: tegra: Set driver_name=tegra for all machine drivers (Jaroslav Kysela) [2003613]
+- ASoC: rt5640: Make codec selectable (Jaroslav Kysela) [2003613]
+- ASoC: hdmi-codec: Add a prepare hook (Jaroslav Kysela) [2003613]
+- ASoC: hdmi-codec: Add iec958 controls (Jaroslav Kysela) [2003613]
+- ASoC: rt5645: Avoid upgrading static warnings to errors (Jaroslav Kysela) [2003613]
+- ASoC: hdmi-codec: Rework to support more controls (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: don't use discriminatory terms on snd_soc_runtime_get_dai_fmt() (Jaroslav Kysela) [2003613]
+- ASoC: rt711-sdca: handle mbq_regmap in rt711_sdca_io_init (Jaroslav Kysela) [2003613]
+- ASoC: rt711-sdca-sdw: add readable for SDW_SDCA_CTL() registers (Jaroslav Kysela) [2003613]
+- ASoC: rt5682-sdw: set regcache_cache_only false before reading RT5682_DEVICE_ID (Jaroslav Kysela) [2003613]
+- ASoC: rt5682: Fix a problem with error handling in the io init function of the soundwire (Jaroslav Kysela) [2003613]
+- ASoC: rt715-sdca: fix clock stop prepare timeout issue (Jaroslav Kysela) [2003613]
+- ASoC: rt715-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: rt715-sdca-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: rt711-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: rt711-sdca-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: rt700-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: rt5682-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: rt1316-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: rt1308-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: max98373-sdw: use first_hw_init flag on resume (Jaroslav Kysela) [2003613]
+- ASoC: max98373-sdw: add missing memory allocation check (Jaroslav Kysela) [2003613]
+- ASoC: hdmi-codec: add .auto_selectable_formats support (Jaroslav Kysela) [2003613]
+- ASoC: fsi: add .auto_selectable_formats support (Jaroslav Kysela) [2003613]
+- ASoC: pcm3168a: add .auto_selectable_formats support (Jaroslav Kysela) [2003613]
+- ASoC: ak4613: add .auto_selectable_formats support (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: add snd_soc_runtime_get_dai_fmt() (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: move snd_soc_runtime_set_dai_fmt() to upside (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Skylake: use DEVICE_ATTR_RO macro (Jaroslav Kysela) [2003613]
+- mfd: arizona: Allow building arizona MFD-core as module (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: pci-tgl: add ADL-M support (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: don't print ROM status if cl_dsp_init() fails (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: clean up hda_dsp_dump() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: Constify sof_probe_compressed_ops (Jaroslav Kysela) [2003613]
+- ASoC: wm5110: Constify static struct snd_compress_ops (Jaroslav Kysela) [2003613]
+- ASoC: wm5102: Constify static struct snd_compress_ops (Jaroslav Kysela) [2003613]
+- ASoC: cs47125: Constify static struct snd_compress_ops (Jaroslav Kysela) [2003613]
+- ASoC: cs42l52: use DEVICE_ATTR_WO macro (Jaroslav Kysela) [2003613]
+- ASoC: cs35l3x: Use neutral language in amp drivers (Jaroslav Kysela) [2003613]
+- ASoC: cs43130: Use DEVICE_ATTR_RO macro (Jaroslav Kysela) [2003613]
+- ASoC: wm8962: Use DEVICE_ATTR_WO macro (Jaroslav Kysela) [2003613]
+- ASoC: cs42l56: use DEVICE_ATTR_WO macro (Jaroslav Kysela) [2003613]
+- ASoC: tlv320aic26: use DEVICE_ATTR_RW macro (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Check jack status before reporting button events (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Add support for 2400000 Bit clock (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Add support for 2304000 Bit clock (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: Fix 1536000 Bit Clock instability (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: add quirk support for Brya and BT-offload (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: add SOF_RT715_DAI_ID_FIX for AlderLake (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: remove .nonatomic for BE dailinks (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_sdw: add support for Bluetooth offload (Jaroslav Kysela) [2003613]
+- ASoC: Intel: common: Add entries for sdw codecs in ADL match table (Jaroslav Kysela) [2003613]
+- ASoC: Intel: soc-acpi: add entries for i2s machines in ADL match table (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: Remove conditions against CONFIG_PCI (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ops: don't return void value (Jaroslav Kysela) [2003613]
+- ASoC: SOF: topology: fix assignment to use le32_to_cpu (Jaroslav Kysela) [2003613]
+- ASoC: SOF: loader: Use snd_sof_dsp_block_read() instead sof_block_read() (Jaroslav Kysela) [2003613]
+- ASoC: SOF: ops: print out the polling register (Jaroslav Kysela) [2003613]
+- ASoC: SOF: pci: No need to cast second time to save the desc (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Check desc->ops directly in acpi/pci/of probe functions (Jaroslav Kysela) [2003613]
+- ASoC: topology: Fix using uninitialized pointer (Jaroslav Kysela) [2003613]
+- ASoC: soc-dai: fix up hw params only if it is needed (Jaroslav Kysela) [2003613]
+- ASoC: soc-core: use DEVICE_ATTR_RO macro (Jaroslav Kysela) [2003613]
+- ASoC: topology: Add support for multiple kcontrol types to a widget (Jaroslav Kysela) [2003613]
+- ASoC: intel/boards: add missing MODULE_DEVICE_TABLE (Jaroslav Kysela) [2003613]
+- ASoC: cs43130: handle errors in cs43130_probe() properly (Jaroslav Kysela) [2003613]
+- Revert "ASoC: cs43130: fix a NULL pointer dereference" (Jaroslav Kysela) [2003613]
+- ASoC: cs42l42: make HSBIAS_SENSE_EN optional (Jaroslav Kysela) [2003613]
+- ASoC: wm2200: remove include of wmfw.h (Jaroslav Kysela) [2003613]
+- ASoC: wm_adsp: mark more data structures with the const qualifier (Jaroslav Kysela) [2003613]
+- ASoC: Intel: bxt_da7219_max98357a: shrink platform_id below 20 characters (Jaroslav Kysela) [2003613]
+- ASoC: Intel: sof_cs42l42: shrink platform id below 20 characters (Jaroslav Kysela) [2003613]
+- ASoC: Intel: add sof-cs42l42 machine driver (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: create sof-maxim-common module (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: handle hda-dsp-common as a module (Jaroslav Kysela) [2003613]
+- ASoC: Intel: boards: add support for adl boards in sof-rt5682 (Jaroslav Kysela) [2003613]
+- ASoC: Intel: Boards: tgl_max98373: Add BT offload support (Jaroslav Kysela) [2003613]
+- ASoC: SOF: Intel: hda: fix index used in inner loop (Jaroslav Kysela) [2003613]
+- ALSA: fireworks: add support for Loud Onyx 1200f quirk (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add support for MOTU Track 16 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add support for MOTU Traveler mk3 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: remove TODO for interaction with userspace about control message (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: fix functional regression for Mackie Onyx 1640i in v5.14 or later (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: export meter information to userspace as float value (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: refine parser for meter information in register DSP models (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: fix null pointer dereference when polling hwdep character device (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: notify event for parameter change in register DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: queue event for parameter change in register DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add ioctl command to read cached parameters in register DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: parse messages for input parameters in register DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: parse messages for line input parameters in register DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: parse messages for output parameters in register DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: parse messages for mixer output parameters in register DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: parse messages for mixer source parameters in register-DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add ioctl command to read cached hardware meter (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add message parser for meter information in command DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add message parser to gather meter information in register DSP model (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: fix truncated bytes in message tracepoints (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: fix transmission method for Loud models based on OXFW971 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add support for MOTU 896HD (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: fix functioal regression for silence in Apogee Duet FireWire (Jaroslav Kysela) [2003613]
+- ALSA: bebob: correct duplicated entries with TerraTec OUI (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: Fix 'amdtp_domain_start()' when no AMDTP_OUT_STREAM stream is found (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: fix register handling for 896 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: fix register handling for 828 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: use macro instead of magic number for clock source in v3 protocol (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: code refactoring for source detection of sampling clock in v3 protocol (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: code refactoring for packet format detection in v2 protocol (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: use macro instead of magic number for clock source in v2 protocol (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add support for AES/EBU clock source in v2 protocol (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: code refactoring for detection of clock source in v2 protocol (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: fix detection for S/PDIF source on optical interface in v2 protocol (Jaroslav Kysela) [2003613]
+- ALSA: bebob: add support for ToneWeal FW66 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: fix rx packet format at higher rate for MOTU 828 mk3 Hybrid (Jaroslav Kysela) [2003613]
+- ALSA: bebob: fix rx packet format for Yamaha GO44/GO46, Terratec Phase 24/x24 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: fix stream format for MOTU 8pre FireWire (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add support for MOTU 896 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add support for MOTU 828 (Jaroslav Kysela) [2003613]
+- ALSA: bebob: Fix bit flag quirk constants (Jaroslav Kysela) [2003613]
+- ALSA: firewire: fill Kconfig with entries for devices based on DICE ASICs (Jaroslav Kysela) [2003613]
+- ALSA: bebob: correct device entries for Phonic Helix Board and FireFly series (Jaroslav Kysela) [2003613]
+- ALSA: bebob: code refactoring for M-Audio models (Jaroslav Kysela) [2003613]
+- ALSA: bebob: correct device entry for Acoustic Reality eAR Master One, Eroica, Figaro, and Ciaccona (Jaroslav Kysela) [2003613]
+- ALSA: bebob: correct device entry for Mackie D.2 FireWire option card (Jaroslav Kysela) [2003613]
+- ALSA: fireworks: fulfil device entries (Jaroslav Kysela) [2003613]
+- ALSA: bebob: fulfil device entries (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: replace in_interrupt() with in_softirq() (Jaroslav Kysela) [2003613]
+- ALSA: bebob: code refactoring for model-dependent quirks (Jaroslav Kysela) [2003613]
+- ALSA: bebob: delete workaround for protocol version 3 (Jaroslav Kysela) [2003613]
+- ALSA: bebob: dismiss sleep after breaking connections (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: obsolete workqueue for period update (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: operate for period elapse event in process context (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: delete unused kernel API (Jaroslav Kysela) [2003613]
+- ALSA: fireface: cease from delayed card registration (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: cease from delayed card registration (Jaroslav Kysela) [2003613]
+- ALSA: firewire-tascam: cease from delayed card registration (Jaroslav Kysela) [2003613]
+- ALSA: firewire-digi00x: cease from delayed card registration (Jaroslav Kysela) [2003613]
+- ALSA: dice: cease from delayed card registration (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: cease from delayed card registration (Jaroslav Kysela) [2003613]
+- ALSA: fireworks: cease from delayed card registration (Jaroslav Kysela) [2003613]
+- ALSA: bebob: cease from delayed card registration (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: add support for hybrid model of MOTU Ultralite mk3 (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: remove useless operations for kernel preemption (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: fix error codes for allocation failure (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: fix error return code in snd_motu_stream_reserve_duplex() (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: sequence replay for source packet header (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: cache event ticks in source packet header per data block (Jaroslav Kysela) [2003613]
+- ALSA: firewire-motu: use macro for magic numbers relevant to IEC 61883-1 (Jaroslav Kysela) [2003613]
+- ALSA: bebob: perform sequence replay for media clock recovery (Jaroslav Kysela) [2003613]
+- ALSA: dice: perform sequence replay for media clock recovery (Jaroslav Kysela) [2003613]
+- ALSA: dice: wait just for NOTIFY_CLOCK_ACCEPTED after GLOBAL_CLOCK_SELECT operation (Jaroslav Kysela) [2003613]
+- ALSA: fireface: perform sequence replay for media clock recovery (Jaroslav Kysela) [2003613]
+- ALSA: firewire-tascam: perform sequence replay for media clock recovery (Jaroslav Kysela) [2003613]
+- ALSA: firewire-digi00x: perform sequence replay for media clock recovery (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: perform sequence replay for media clock recovery (Jaroslav Kysela) [2003613]
+- ALSA: fireworks: perform sequence replay for media clock recovery (Jaroslav Kysela) [2003613]
+- ALSA: fireworks: delete SYTMATCH clock source (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: support NO_PERIOD_WAKEUP in ALSA PCM runtime (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: transfer rx packets on-the-fly when replaying (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: replay sequence of incoming packets for outgoing packets (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: add replay target to cache sequence of packet (Jaroslav Kysela) [2003613]
+- ALSA: bebob: distinguish M-Audio ProFire Lightbridge quirk (Jaroslav Kysela) [2003613]
+- ALSA: bebob: cancel switching connection order (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: obsolete callbacked member (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: drop initial NODATA or empty packet (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for transfer delay (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for generation of data block sequence (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for generation of syt sequence (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for generation of packet descriptors (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: pool sequence of packet in IT context independently (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: add flag to unaware of syt in CIP header (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: Fix uninitialized variable err issue (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: change waking up timing to process packets (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: start processing content of packet at the same cycle in several IT contexts (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring to start several IT/IR contexts (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: skip initial packets instead of scheduling IR context (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: start processing content of packet at the same cycle in several IR contexts (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for selection of IT context header length (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for calculation of context payload (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for size of CIP header (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: insert descriptor for skipped cycle (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: check cycle continuity (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for check of CIP header about payload size (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for parser of IR context header (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for helper function to compute OHCI 1394 cycle (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for sequence descriptor' (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: handle the case that empty isochronous packet payload for CIP (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring to refer the same frame count per period in domain structure (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: add quirk flag for blocking transmission method (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: code refactoring for wrong_dbs quirk (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib: code refactoring for jumbo payload quirk (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: code refactoring for jumbo-payload quirk in OXFW970 (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: add comment for the type of ASICs (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: add explicit device entry for Loud Technologies Mackie Onyx Sattelite (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: add explicit device entry for Loud Technologies Tapco Link.FireWire 4x6 (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: code refactoring to detect mackie models (Jaroslav Kysela) [2003613]
+- ALSA: oxfw: code refactoring for existent device entry with specifier_id and version (Jaroslav Kysela) [2003613]
+- ALSA: firewire-lib/motu: use int type for the value of bitwise OR with enumerator-constant (Jaroslav Kysela) [2003613]
+- Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix quirk for Clevo NJ51CU (Jaroslav Kysela) [2003613]
+- ALSA: hda/hdmi: Disable silent stream on GLK (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add new alc285-hp-amp-init model (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek - Add headset Mic support for Lenovo ALC897 platform (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix quirk for TongFang PHxTxX1 (Jaroslav Kysela) [2003613]
+- ALSA: hda/hdmi: fix HDA codec entry table order for ADL-P (Jaroslav Kysela) [2003613]
+- ALSA: hda: Add Intel DG2 PCI ID and HDMI codec vid (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Set PMSG_ON earlier inside cs8409 driver (Jaroslav Kysela) [2003613]
+- ALSA: ctxfi: Fix out-of-range access (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix LED on HP ProBook 435 G7 (Jaroslav Kysela) [2003613]
+- ALSA: cmipci: Drop stale variable assignment (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add quirk for ASRock NUC Box 1100 (Jaroslav Kysela) [2003613]
+- ALSA: hda: fix general protection fault in azx_runtime_idle (Jaroslav Kysela) [2003613]
+- ALSA: hda: Free card instance properly at probe errors (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add quirk for ASUS UX550VE (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Headset fixup for Clevo NH77HJQ (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add quirk for Clevo PC70HS (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add a quirk for HP OMEN 15 mute LED (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix mic mute LED for the HP Spectre x360 14 (Jaroslav Kysela) [2003613]
+- ALSA: ISA: not for M68K (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fixes HP Spectre x360 15-eb1xxx speakers (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add quirk for Clevo PC50HS (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix the mic type detection issue for ASUS G551JW (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo 13s Gen2 (Jaroslav Kysela) [2003613]
+- ALSA: hda: intel: Allow repeatedly probing on codec configuration errors (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add quirk for TongFang PHxTxX1 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek - ALC236 headset MIC recording issue (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add quirk for Clevo X170KM-G (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Complete partial device name to avoid ambiguity (Jaroslav Kysela) [2003613]
+- ALSA: hda - Enable headphone mic on Dell Latitude laptops with ALC3254 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Enable 4-speaker output for Dell Precision 5560 laptop (Jaroslav Kysela) [2003613]
+- ALSA: hda: Use position buffer for SKL+ again (Jaroslav Kysela) [2003613]
+- ALSA: hda: Reduce udelay() at SKL+ position reporting (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Setup Dolphin Headset Mic as Phantom Jack (Jaroslav Kysela) [2003613]
+- ALSA: pcxhr: "fix" PCXHR_REG_TO_PORT definition (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Quirks to enable speaker output for Lenovo Legion 7i 15IMHG05, Yoga 7i 14ITL5/15ITL5, and 13s Gen2 laptops. (Jaroslav Kysela) [2003613]
+- Revert "ALSA: hda: Drop workaround for a hang at shutdown again" (Jaroslav Kysela) [2003613]
+- ALSA: vx222: fix null-ptr-deref (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Initialize Codec only in init fixup. (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Ensure Type Detection is only run on startup when necessary (Jaroslav Kysela) [2003613]
+- ALSA: hda: Disable runtime resume at shutdown (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Quirk for HP Spectre x360 14 amp setup (Jaroslav Kysela) [2003613]
+- ALSA: hda: Code refactoring snd_hda_pick_fixup() (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Workaround for conflicting SSID on ASUS ROG Strix G17 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Limit mic boost on HP ProBook 445 G8 (Jaroslav Kysela) [2003613]
+- ALSA: hda/analog - Sink ad198x_shutup() and shuffle CONFIG_PM guards (Jaroslav Kysela) [2003613]
+- ALSA: hda/sigmatel - Sink stac_shutup() into stac_suspend() (Jaroslav Kysela) [2003613]
+- ALSA: hda: Drop workaround for a hang at shutdown again (Jaroslav Kysela) [2003613]
+- ALSA: hda/via: Apply runtime PM workaround for ASUS B23E (Jaroslav Kysela) [2003613]
+- ALSA: hda: Fix hang during shutdown due to link reset (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9510 laptop (Jaroslav Kysela) [2003613]
+- ALSA: hda: Nuke unused reboot_notify callback (Jaroslav Kysela) [2003613]
+- ALSA: hda: Suspend codec at shutdown (Jaroslav Kysela) [2003613]
+- ALSA: hda: conexant: Turn off EAPD at suspend, too (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Prevent pops and clicks during suspend (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Unmute/Mute codec when stream starts/stops (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Follow correct CS42L42 power down sequence for suspend (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Remove unnecessary delays (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Use timeout rather than retries for I2C transaction waits (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Set fixed sample rate of 48kHz for CS42L42 (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Enable Full Scale Volume for Line Out Codec on Dolphin (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Add support for dolphin (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Add Support to disable jack type detection for CS42L42 (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Support multiple sub_codecs for Suspend/Resume/Unsol events (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Move codec properties to its own struct (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Separate CS8409, CS42L42 and project functions (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Support i2c bulk read/write functions (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Avoid re-setting the same page as the last access (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Avoid setting the same I2C address for every access (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Dont disable I2C clock between consecutive accesses (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Generalize volume controls (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Prevent I2C access during suspend time (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Simplify CS42L42 jack detect. (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Mask CS42L42 wake events (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Disable unsolicited response for the first boot (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Disable unsolicited responses during suspend (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Disable unnecessary Ring Sense for Cyborg/Warlock/Bullseye (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Reduce HS pops/clicks for Cyborg (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Mask all CS42L42 interrupts on initialization (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Use enums for register names and coefficients (Jaroslav Kysela) [2003613]
+- ALSA: hda/cs8409: Move arrays of configuration to a new file (Jaroslav Kysela) [2003613]
+- ALSA: hda/cirrus: Move CS8409 HDA bridge to separate module (Jaroslav Kysela) [2003613]
+- ALSA: hda - fix the 'Capture Switch' value change notifications (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 650 G8 Notebook PC (Jaroslav Kysela) [2003613]
+- ALSA: pci: cs46xx: Fix set up buffer type properly (Jaroslav Kysela) [2003613]
+- ALSA: hda: Add quirk for ASUS Flow x13 (Jaroslav Kysela) [2003613]
+- ALSA: pci/korg1212: completely remove 'set but not used' warnings (Jaroslav Kysela) [2003613]
+- ALSA: pcxhr: use __func__ to get funcion's name in an output message (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: add mic quirk for Acer SF314-42 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix headset mic for Acer SWIFT SF314-56 (ALC256) (Jaroslav Kysela) [2003613]
+- ALSA: korg1212: Fix wrongly shuffled firmware loader code (Jaroslav Kysela) [2003613]
+- ALSA: als300: Fix missing chip initialization (Jaroslav Kysela) [2003613]
+- ALSA: cs4281: Fix missing chip initialization (Jaroslav Kysela) [2003613]
+- ALSA: hda/hdmi: Add quirk to force pin connectivity on NUC10 (Jaroslav Kysela) [2003613]
+- ALSA: nm256: Fix error return code in snd_nm256_create() (Jaroslav Kysela) [2003613]
+- ALSA: ymfpci: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: vx222: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: trident: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: pci: rme: Fix unaligned buffer addresses (Jaroslav Kysela) [2003613]
+- ALSA: pci: rme: Set up buffer type properly (Jaroslav Kysela) [2003613]
+- ALSA: rme9652: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: rme9652: don't disable if not enabled (Jaroslav Kysela) [2003613]
+- ALSA: hdspm: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: hdspm: don't disable if not enabled (Jaroslav Kysela) [2003613]
+- ALSA: hdspm: Fix fall-through warnings for Clang (Jaroslav Kysela) [2003613]
+- ALSA: hdsp: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: riptide: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: riptide: Replace tasklet with threaded irq (Jaroslav Kysela) [2003613]
+- ALSA: riptide: convert tasklets to use new tasklet_setup() API (Jaroslav Kysela) [2003613]
+- ALSA: oxygen: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: nm256: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: lx6464es: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: lola: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: korg1212: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ice1724: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ali5451: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ice1724: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ice1712: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: emu10k1x: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: emu10k1: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: echoaudio: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: cs5535audio: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: cs46xx: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ca0106: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: aw2: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: au88x0: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ali5451: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: via82xx: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: sonicvibes: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: sis7019: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: rme96: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: rme32: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: maestro3: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: fm801: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: es1968: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: es1938: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ens137x: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: cs5530: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: cs4281: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: cmipci: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: bt87x: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: azt3328: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: als4000: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: als300: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: ad1889: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: hda: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: atiixp: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: intel8x0: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix pop noise and 2 Front Mic issues on a machine (Jaroslav Kysela) [2003613]
+- ALSA: hdmi: Expose all pins on MSI MS-7C94 board (Jaroslav Kysela) [2003613]
+- ALSA: intel8x0: Skip ac97 clock measurement on VM (Jaroslav Kysela) [2003613]
+- ALSA: hda/hdmi: Add option to enable all pins forcibly (Jaroslav Kysela) [2003613]
+- ALSA: ice1724: Remove superfluous loop over model table (Jaroslav Kysela) [2003613]
+- ALSA: hda/ca0132: remove redundant initialization of variable status (Jaroslav Kysela) [2003613]
+- ALSA: intel8x0: Fix breakage at ac97 clock measurement (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: fix mute led of the HP Pavilion 15-eh1xxx series (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 630 G8 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 445 G8 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 450 G8 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek - Add ALC285 HP init procedure (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek - Add type for ALC287 (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook 830 G8 Notebook PC (Jaroslav Kysela) [2003613]
+- ALSA: hda: Release codec display power during shutdown/reboot (Jaroslav Kysela) [2003613]
+- ALSA: hda: Release controller display power during shutdown/reboot (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Apply LED fixup for HP Dragonfly G1, too (Jaroslav Kysela) [2003613]
+- ALSA: hdsp: fix a test for copy_to_user() failure (Jaroslav Kysela) [2003613]
+- ALSA: hda: Add IRQ check for platform_get_irq() (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Fix bass speaker DAC mapping for Asus UM431D (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Improve fixup for HP Spectre x360 15-df0xxx (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Add another ALC236 variant support (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook x360 830 G8 (Jaroslav Kysela) [2003613]
+- ALSA: hda/tegra: Use devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [2003613]
+- ALSA: trident: Fix build error (Jaroslav Kysela) [2003613]
+- ALSA: trident: Drop shadow TLB pointer table (Jaroslav Kysela) [2003613]
+- ALSA: ymfpci: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: vx222: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: trident: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: rme9652: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: hdsp: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: riptide: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: pcxhr: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: nm256: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: mixart: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: korg1212: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: ice1712: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: emu10k1x: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: emu10k1: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: echoaudio: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: cs5535audio: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: cs46xx: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: ca0106: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: au88x0: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: ac97: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: via82xx: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: sonicvibes: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: rme96: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: rme32: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: maestro3: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: intel8x0: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: fm801: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: es1968: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: es1938: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: ens137x: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: cs4281: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: cmipci: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: bt87x: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: azt3328: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: atiixp: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: als4000: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: als300: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: ak4531: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: ad1889: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: hda/realtek: Change device names for quirks to barebone names (Jaroslav Kysela) [2003613]
+- ALSA: hda/ca0132: Make a const array static, makes object smaller (Jaroslav Kysela) [2003613]
+- ALSA: pci: lx6464es: remove useless self-comparison (Jaroslav Kysela) [2003613]
+- ALSA: drivers: opl3: Fix incorrect use of vp->state (Jaroslav Kysela) [2003613]
+- ALSA: pcsp: Make hrtimer forwarding more robust (Jaroslav Kysela) [2003613]
+- ALSA: pcsp: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: dummy: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: aloop: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: mpu401: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: serial-u16550: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: mtpav: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: virmidi: Allocate resources with device-managed APIs (Jaroslav Kysela) [2003613]
+- ALSA: vx: Manage vx_core object with devres (Jaroslav Kysela) [2003613]
+- ALSA: aloop: Fix spelling mistake "synchronization" -> "synchronization" (Jaroslav Kysela) [2003613]
+- ALSA: serial: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: opl3: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: vx: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: mpu401: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: drivers: opl3: fix useless self-comparison (Jaroslav Kysela) [2003613]
+- ALSA: hda: intel-sdw-acpi: go through HDAS ACPI at max depth of 2 (Jaroslav Kysela) [2003613]
+- ALSA: hda: intel-sdw-acpi: harden detection of controller (Jaroslav Kysela) [2003613]
+- ALSA: intel-dsp-config: add quirk for CML devices based on ES8336 codec (Jaroslav Kysela) [2003613]
+- ALSA: intel-dsp-config: add quirk for JSL devices based on ES8336 codec (Jaroslav Kysela) [2003613]
+- ALSA: hda: avoid write to STATESTS if controller is in reset (Jaroslav Kysela) [2003613]
+- ALSA: intel-dsp-config: add quirk for APL/GLK/TGL devices based on ES8336 codec (Jaroslav Kysela) [2003613]
+- ALSA: hda: hdac_ext_stream: fix potential locking issues (Jaroslav Kysela) [2003613]
+- ALSA: hda: hdac_stream: fix potential locking issue in snd_hdac_stream_assign() (Jaroslav Kysela) [2003613]
+- ALSA: hda: intel-dsp-cfg: add missing ElkhartLake PCI ID (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: usx2y - use GFP_NOIO flag (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Reorder snd_djm_devices[] entries (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Don't start stream for capture at prepare (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Switch back to non-latency mode at a later point (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add quirk for Audient iD14 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Line6 HX-Stomp XL USB_ID for 48k-fixed quirk (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add registration quirk for JBL Quantum 400 (Jaroslav Kysela) [2003613]
+- ALSA: ua101: fix division by zero at probe (Jaroslav Kysela) [2003613]
+- ALSA: line6: fix control and interrupt message timeouts (Jaroslav Kysela) [2003613]
+- ALSA: 6fire: fix control and bulk message timeouts (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: fix null pointer dereference on pointer cs_desc (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Fix microphone sound on Jieli webcam. (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Provide quirk for Sennheiser GSP670 Headset (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Initialize every feature unit once at probe time (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Drop superfluous error message after disconnection (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Downgrade error message in get_ctl_value_v2() (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: add Schiit Hel device to quirk table (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add quirk for VF0770 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Less restriction for low-latency playback mode (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add support for the Pioneer DJM 750MK2 Mixer/Soundcard (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Pass JOINT_DUPLEX info flag for implicit fb streams (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Enable rate validation for Scarlett devices (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Fix packet size calculation regression (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: disable implicit feedback sync for Behringer UFX1204 and UFX1604 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Avoid killing in-flight URBs during draining (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Improved lowlatency playback support (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add spinlock to stop_urbs() (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Check available frames for the next packet size (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Disable low-latency mode for implicit feedback sync (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Disable low-latency playback for free-wheel mode (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Rename early_playback_start flag with lowlatency_playback (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Fix possible race at sync of urb completions (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Restrict rates for the shared clocks (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Fix a missing error check in scarlett gen2 mixer (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: fix comment reference in __uac_clock_find_source (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Prefer struct_size over open coded arithmetic (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Unify mixer resume and reset_resume procedure (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add registration quirk for JBL Quantum 800 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add lowlatency module option (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Work around for XRUN with low latency playback (Jaroslav Kysela) [2003613]
+- ASoC: dmaengine: Introduce module option prealloc_buffer_size_kbytes (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move set-interface-first workaround into common quirk (Jaroslav Kysela) [2003613]
+- ALSA: doc: Fix indentation warning (Jaroslav Kysela) [2003613]
+- ALSA: hda: Update documentation for aliasing via the model option (Jaroslav Kysela) [2003613]
+- ALSA: doc: Add the description of quirk_flags option for snd-usb-audio (Jaroslav Kysela) [2003613]
+- ALSA: doc: Fix reference to mixart.rst (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Update the documentation for the new delayed_register option (Jaroslav Kysela) [2003613]
+- ALSA: hda - Update descriptions about new position_fix values (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Fix regression on Sony WALKMAN NW-A45 DAC (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Input source control - digidesign mbox (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: make array static const, makes object smaller (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add quirk_flags module option (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move generic DSD raw detection into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move ignore_ctl_error check into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move autosuspend quirk into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move rate validation quirk into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move interface setup delay into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move control message delay quirk into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move ITF-USB DSD quirk handling into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move clock setup quirk into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move playback_first flag into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move tx_length quirk handling to quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move txfr_quirk handling to quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Move media-controller API quirk into quirk_flags (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Introduce quirk_flags field (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Avoid unnecessary or invalid connector selection at resume (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add registration quirk for JBL Quantum 600 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Fix superfluous autosuspend recovery (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: fix incorrect clock source setting (Jaroslav Kysela) [2003613]
+- ALSA: scarlett2: Fix line out/speaker switching notifications (Jaroslav Kysela) [2003613]
+- ALSA: scarlett2: Correct channel mute status after mute button pressed (Jaroslav Kysela) [2003613]
+- ALSA: scarlett2: Fix Direct Monitor control name for 2i2 (Jaroslav Kysela) [2003613]
+- ALSA: scarlett2: Fix Mute/Dim/MSD Mode control names (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add registration quirk for JBL Quantum headsets (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add missing proc text entry for BESPOKEN type (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Reduce latency at playback start, take#2 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: fix spelling mistakes (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: fix spelling mistakes (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Fix for loop increment in scarlett2_usb_get_config (Jaroslav Kysela) [2003613]
+- ALSA: scarlett2: Fix scarlett2_*_ctl_put() return values again (Jaroslav Kysela) [2003613]
+- ALSA: scarlett2: Fix pad count for 18i8 Gen 3 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add support for the talkback feature (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Update get_config to do endian conversion (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add speaker switching support (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Update mux controls to allow updates (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add sw_hw_ctls and mux_ctls (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Split up sw_hw_enum_ctl_put() (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Label 18i8 Gen 3 line outputs correctly (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add direct monitor support (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add phantom power switch support (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add "air" switch support (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add support for Solo and 2i2 Gen 3 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Allow bit-level access to config (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Move get config above set config (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add Gen 3 MSD mode switch (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add support for "input-other" notify (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add Gen 3 mixer support (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Fix wrong resume call (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Fix Level Meter control (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Split struct scarlett2_ports (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Allow arbitrary ordering of mux entries (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add mute support (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add scarlett2_vol_ctl_write() helper (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Remove repeated device info comments (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Move info lookup out of init function (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Improve device info lookup (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Reformat scarlett2_config_items[] (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Merge common line in capture strings (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add "Sync Status" control (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Always enable interrupt polling (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Update initialisation sequence (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add usb_tx/rx functions (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Fix OOB access at proc output (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Remove hard-coded USB #defines (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Don't copy struct scarlett2_config (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Fix union usage in mixer control callbacks (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Fix data_mutex lock (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Add temp variable for consistency (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Rename struct scarlett2_mixer_data (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Rename buttons/interrupts/vol (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Remove redundant info->button_count (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Remove interrupt debug message (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Remove unused/useless code (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Coding style improvements (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Remove incorrect S/PDIF comment (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: fix rate on Ozone Z90 USB headset (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Add support for Denon DN-X1600 (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Read mux at init time (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: scarlett2: Read mixer volumes at init time (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Factor out DSD bitrev copy function (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Refactoring delay account code (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Pre-calculate buffer byte size (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Make snd_usb_pcm_delay() static (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Remove the repeated declaration (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Fix uninitialized variable at __uac_clock_find_source() (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Handle error for the current selector gracefully (Jaroslav Kysela) [2003613]
+- ALSA: usb-audio: Refactoring UAC2/3 clock setup code (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Nuke pcm_list (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Cleanup probe and disconnect callbacks (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Don't call free_pages_exact() with NULL address (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Fix shmem initialization (Jaroslav Kysela) [2003613]
+- ALSA: usxy2: Fix potential doubly allocations (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Fix potential memory leaks (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Avoid self-killing (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Fix potential leaks of uninitialized memory (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Coding style fixes (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Fix spaces (Jaroslav Kysela) [2003613]
+- ALSA: usx2y: Avoid camelCase (Jaroslav Kysela) [2003613]
+- module: remove never implemented MODULE_SUPPORTED_DEVICE (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Allow exact buffer preallocation (Jaroslav Kysela) [2003613]
+- ALSA: core: Add device-managed request_dma() (Jaroslav Kysela) [2003613]
+- ALSA: core: use DEVICE_ATTR_*() macro (Jaroslav Kysela) [2003613]
+- ALSA: core: Fix double calls of snd_card_free() via devres (Jaroslav Kysela) [2003613]
+- ALSA: core: Add managed card creation (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Fix mmap without buffer preallocation (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Call substream ack() method upon compat mmap commit (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Fix mmap breakage without explicit buffer setup (Jaroslav Kysela) [2003613]
+- ALSA: pcm - fix mmap capability check for the snd-dummy driver (Jaroslav Kysela) [2003613]
+- ALSA: pcm: fix divide error in snd_pcm_lib_ioctl (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Catch call with NULL snd_dma_buffer pointer (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Remove a stale comment (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Use proper SG helpers for noncontig allocations (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Fix a typo in snd_dma_buffer_sync() description (Jaroslav Kysela) [2003613]
+- ALSA: PCM: Fix NULL dereference at mmap checks (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Check mmap capability of runtime dma buffer at first (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Fix mmap capability check (Jaroslav Kysela) [2003613]
+- ALSA: pcm: use krealloc_array() (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Add SNDRV_PCM_INFO_EXPLICIT_SYNC flag (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Add more disconnection checks at file ops (Jaroslav Kysela) [2003613]
+- mm: don't include asm/pgtable.h if linux/mm.h is already included (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Fix mmap of SG-buffer with WC pages (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Support for non-coherent page allocation (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Support for non-contiguous page allocation (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Unify snd_pcm_delay() and snd_pcm_hwsync() (Jaroslav Kysela) [2003613]
+- ALSA: core: Fix build error due to missing PAGE_SIZE (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Workaround for a wrong offset in SYNC_PTR compat ioctl (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Count continuous pages in vmalloc buffer handler (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Store snd_dma_buffer.addr for continuous pages, too (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Fix pgprot for WC mmap on x86 (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Support WC allocation on all architectures (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Correctly name as WC (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Minor refactoring (Jaroslav Kysela) [2003613]
+- ALSA: memalloc: Fix regression with SNDRV_DMA_TYPE_CONTINUOUS (Jaroslav Kysela) [2003613]
+- ALSA: core: Add device-managed page allocator helper (Jaroslav Kysela) [2003613]
+- ALSA: core: Add continuous and vmalloc mmap ops (Jaroslav Kysela) [2003613]
+- ALSA: core: Move mmap handler into memalloc ops (Jaroslav Kysela) [2003613]
+- ALSA: core: Abstract memory alloc helpers (Jaroslav Kysela) [2003613]
+- ALSA: pcm: add snd_pcm_period_elapsed() variant without acquiring lock of PCM substream (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Block the release until the system resume finishes (Jaroslav Kysela) [2003613]
+- ALSA: Drop superfluous argument from snd_power_wait() (Jaroslav Kysela) [2003613]
+- ALSA: pcm: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: core: Drop snd_sgbuf_get_ptr() (Jaroslav Kysela) [2003613]
+- ALSA: jack: Check the return value of kstrdup() (Jaroslav Kysela) [2003613]
+- ALSA: seq: oss: Fix error check at system port creation (Jaroslav Kysela) [2003613]
+- ALSA: seq: Fix comments of wrong client number for MIDI Passthrough (Jaroslav Kysela) [2003613]
+- ALSA: pcm: oss: Handle missing errors in snd_pcm_oss_change_params*() (Jaroslav Kysela) [2003613]
+- ALSA: pcm: oss: Limit the period size to 16MB (Jaroslav Kysela) [2003613]
+- ALSA: pcm: oss: Fix negative period/buffer sizes (Jaroslav Kysela) [2003613]
+- ALSA: iec958: Split status creation and fill (Jaroslav Kysela) [2003613]
+- ALSA: rawmidi - fix the uninitalized user_pversion (Jaroslav Kysela) [2003613]
+- ALSA: rawmidi: introduce SNDRV_RAWMIDI_IOCTL_USER_PVERSION (Jaroslav Kysela) [2003613]
+- ALSA: rawmidi: fix incorrect array bounds check on clock_names (Jaroslav Kysela) [2003613]
+- ALSA: rawmidi: Add framing mode (Jaroslav Kysela) [2003613]
+- ALSA: seq: Fix racy deletion of subscriber (Jaroslav Kysela) [2003613]
+- ALSA: seq: Fix a potential UAF by wrong private_free call order (Jaroslav Kysela) [2003613]
+- ALSA: seq: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: timer: Unconditionally unlink slave instances, too (Jaroslav Kysela) [2003613]
+- ALSA: timer: Fix use-after-free problem (Jaroslav Kysela) [2003613]
+- ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume (Jaroslav Kysela) [2003613]
+- ALSA: mixer: oss: Fix racy access to slots (Jaroslav Kysela) [2003613]
+- ALSA: oss: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: core: Fix assignment in if condition (Jaroslav Kysela) [2003613]
+- ALSA: core: control_led: use strscpy instead of strlcpy (Jaroslav Kysela) [2003613]
+- ALSA: control_led - use DEVICE_ATTR_*() macro (Jaroslav Kysela) [2003613]
+- ALSA: ctl: Fix copy of updated id with element read/write (Jaroslav Kysela) [2003613]
+- ALSA: compress: Initialize mutex in snd_compress_new() (Jaroslav Kysela) [2003613]
+- ALSA: control: Minor optimization for SNDRV_CTL_IOCTL_POWER_STATE (Jaroslav Kysela) [2003613]
+- ALSA: control: Drop superfluous snd_power_wait() calls (Jaroslav Kysela) [2003613]
+- ALSA: control: Track in-flight control read/write/tlv accesses (Jaroslav Kysela) [2003613]
+- ALSA: compress: Drop unused functions (Jaroslav Kysela) [2003613]
+- regmap: sdw-mbq: use MODULE_LICENSE("GPL") (Jaroslav Kysela) [2003613]
+- regmap: sdw: use no_pm routines for SoundWire 1.2 MBQ (Jaroslav Kysela) [2003613]
+- regmap: sdw: use _no_pm functions in regmap_read/write (Jaroslav Kysela) [2003613]
+- soundwire: stream: Fix test for DP prepare complete (Jaroslav Kysela) [2003613]
+- soundwire/ASoC: add leading zeroes in peripheral device name (Jaroslav Kysela) [2003613]
+- soundwire: bandwidth allocation: improve error messages (Jaroslav Kysela) [2003613]
+- soundwire: dmi-quirks: remove duplicate initialization (Jaroslav Kysela) [2003613]
+- soundwire: cadence: remove the repeated declaration (Jaroslav Kysela) [2003613]
+- soundwire: bus: stop dereferencing invalid slave pointer (Jaroslav Kysela) [2003613]
+- soundwire: bus: add missing \n in dynamic debug (Jaroslav Kysela) [2003613]
+- soundwire: bus: handle -ENODATA errors in clock stop/start sequences (Jaroslav Kysela) [2003613]
+- soundwire: qcom: add debugfs entry for soundwire register dump (Jaroslav Kysela) [2003613]
+- soundwire: debugfs: use controller id and link_id for debugfs (Jaroslav Kysela) [2003613]
+- soundwire: cadence: do not extend reset delay (Jaroslav Kysela) [2003613]
+- soundwire: intel: conditionally exit clock stop mode on system suspend (Jaroslav Kysela) [2003613]
+- soundwire: intel: skip suspend/resume/wake when link was not started (Jaroslav Kysela) [2003613]
+- soundwire: intel: fix potential race condition during power down (Jaroslav Kysela) [2003613]
+- soundwire: intel: introduce shim and alh base (Jaroslav Kysela) [2003613]
+- soundwire: move intel sdw register definitions to sdw_intel.h (Jaroslav Kysela) [2003613]
+- soundwire: cadence: override PDI configurations to create loopback (Jaroslav Kysela) [2003613]
+- soundwire: cadence: add debugfs interface for PDI loopbacks (Jaroslav Kysela) [2003613]
+- soundwire: stream: don't program mockup device ports (Jaroslav Kysela) [2003613]
+- soundwire: bus: squelch error returned by mockup devices (Jaroslav Kysela) [2003613]
+- soundwire: stream: don't abort bank switch on Command_Ignored/-ENODATA (Jaroslav Kysela) [2003613]
+- soundwire: cadence: add paranoid check on self-clearing bits (Jaroslav Kysela) [2003613]
+- soundwire: dmi-quirks: add quirk for Intel 'Bishop County' NUC M15 (Jaroslav Kysela) [2003613]
+- soundwire: bus: update Slave status in sdw_clear_slave_status (Jaroslav Kysela) [2003613]
+- soundwire: cadence: Remove ret variable from sdw_cdns_irq() (Jaroslav Kysela) [2003613]
+- soundwire: bus: filter out more -EDATA errors on clock stop (Jaroslav Kysela) [2003613]
+- soundwire: dmi-quirks: add ull suffix for SoundWire _ADR values (Jaroslav Kysela) [2003613]
+- soundwire: export sdw_update() and sdw_update_no_pm() (Jaroslav Kysela) [2003613]
+- soundwire: bus: Make sdw_nwrite() data pointer argument const (Jaroslav Kysela) [2003613]
+- soundwire: intel: move to auxiliary bus (Jaroslav Kysela) [2003613]
+- soundwire: add missing kernel-doc description (Jaroslav Kysela) [2003613]
+- soundwire: cadence_master: always set CMD_ACCEPT (Jaroslav Kysela) [2003613]
+- soundwire: bus: only use CLOCK_STOP_MODE0 and fix confusions (Jaroslav Kysela) [2003613]
+- software node: Handle software node injection to an existing device properly (Mark Langsdorf) [2032600]
+- software node: Allow node addition to already existing device (Mark Langsdorf) [2032600]
+- driver core: clear deferred probe reason on probe retry (Mark Langsdorf) [2032600]
+- driver core: add deferring probe reason to devices_deferred property (Mark Langsdorf) [2032600]
+- driver core: Fix locking bug in deferred_probe_timeout_work_func() (Mark Langsdorf) [2032600]
+- PM: runtime: Fix race getting/putting suppliers at probe (Mark Langsdorf) [2032600]
+- PM: runtime: Fix ordering in pm_runtime_get_suppliers() (Mark Langsdorf) [2032600]
+- PM: runtime: Defer suspending suppliers (Mark Langsdorf) [2032600]
+- software node: Fix device_add_software_node() (Mark Langsdorf) [2032600]
+- software node: Fix node registration (Mark Langsdorf) [2032600]
+- drivers/base/memory: don't store phys_device in memory blocks (Mark Langsdorf) [2032600]
+- arch_numa: fix common code printing of phys_addr_t (Mark Langsdorf) [2032600]
+- driver core: platform: Drop of_device_node_put() wrapper (Mark Langsdorf) [2032600]
+- regmap: sdw-mbq: use MODULE_LICENSE("GPL") (Mark Langsdorf) [2032600]
+- regmap: sdw: use no_pm routines for SoundWire 1.2 MBQ (Mark Langsdorf) [2032600]
+- regmap: sdw: use _no_pm functions in regmap_read/write (Mark Langsdorf) [2032600]
+- PM: domains: Mark fwnodes when their powerdomain is added/removed (Mark Langsdorf) [2032600]
+- driver core: fw_devlink: Handle suppliers that don't use driver core (Mark Langsdorf) [2032600]
+- driver core: Add fw_devlink.strict kernel param (Mark Langsdorf) [2032600]
+- driver core: platform: Emit a warning if a remove callback returned non-zero (Mark Langsdorf) [2032600]
+- PM: domains: Simplify the calculation of variables (Mark Langsdorf) [2032600]
+- PM: sleep: Use dev_printk() when possible (Mark Langsdorf) [2032600]
+- media: software_node: Add support for fwnode_graph*() family of functions (Mark Langsdorf) [2032600]
+- media: software_node: unregister software_nodes in reverse order (Mark Langsdorf) [2032600]
+- media: software_node: Enforce parent before child ordering of nodes arrays (Mark Langsdorf) [2032600]
+- media: device property: Call fwnode_graph_get_endpoint_by_id() for fwnode->secondary (Mark Langsdorf) [2032600]
+- media: device property: Return true in fwnode_device_is_available for NULL ops (Mark Langsdorf) [2032600]
+- media: software_node: Fix refcounts in software_node_get_next_child() (Mark Langsdorf) [2032600]
+- PM: domains: Add "performance" column to debug summary (Mark Langsdorf) [2032600]
+- PM: domains: Make of_genpd_add_subdomain() return -EPROBE_DEFER (Mark Langsdorf) [2032600]
+- PM: domains: Make set_performance_state() callback optional (Mark Langsdorf) [2032600]
+- PM: domains: use device's next wakeup to determine domain idle state (Mark Langsdorf) [2032600]
+- PM: domains: inform PM domain of a device's next wakeup (Mark Langsdorf) [2032600]
+- PM: runtime: Fix resposible -> responsible in runtime.c (Mark Langsdorf) [2032600]
+- PM: domains: Restore comment indentation for generic_pm_domain.child_links (Mark Langsdorf) [2032600]
+- PM: domains: Fix up terminology with parent/child (Mark Langsdorf) [2032600]
+- regmap: Assign boolean values to a bool variable (Mark Langsdorf) [2032600]
+- software node: Introduce device_add_software_node() (Mark Langsdorf) [2032600]
+- numa: Move numa implementation to common code (Mark Langsdorf) [2032600]
+- arm64, numa: Change the numa init functions name to be generic (Mark Langsdorf) [2032600]
+- driver core: fw_devlink_relax_cycle() can be static (Mark Langsdorf) [2032600]
+- driver core: Handle cycles in device links created by fw_devlink (Mark Langsdorf) [2032600]
+- driver core: Have fw_devlink use DL_FLAG_INFERRED (Mark Langsdorf) [2032600]
+- driver core: Add device link support for INFERRED flag (Mark Langsdorf) [2032600]
+- drivers: base: Kconfig: fix spelling mistake "heterogenous" -> "heterogeneous" (Mark Langsdorf) [2032600]
+- driver core: Add debug logs for device link related probe deferrals (Mark Langsdorf) [2032600]
+- drivers: base: remove unused function find_bus() (Mark Langsdorf) [2032600]
+- PM: runtime: Drop runtime PM references to supplier on link removal (Mark Langsdorf) [2032600]
+- dmaengine: idxd: Add wq occupancy information to sysfs attribute (Julia Denham) [1971887]
+- vdpa/mlx5: Forward only packets with allowed MAC address (Cindy Lu) [2031595]
+- vdpa/mlx5: Support configuration of MAC (Cindy Lu) [2031595]
+- vdpa/mlx5: Fix clearing of VIRTIO_NET_F_MAC feature bit (Cindy Lu) [2031595]
+- vdpa_sim_net: Enable user to set mac address and mtu (Cindy Lu) [2031595]
+- vdpa: Enable user to set mac and mtu of vdpa device (Cindy Lu) [2031595]
+- vdpa: Use kernel coding style for structure comments (Cindy Lu) [2031595]
+- vdpa: Introduce query of device config layout (Cindy Lu) [2031595]
+- vdpa: Introduce and use vdpa device get, set config helpers (Cindy Lu) [2031595]
+- vdpa/mlx5: Propagate link status from device to vdpa driver (Cindy Lu) [2031595]
+- vdpa/mlx5: Rename control VQ workqueue to vdpa wq (Cindy Lu) [2031595]
+- vdpa/mlx5: Remove mtu field from vdpa net device (Cindy Lu) [2031595]
+- eni_vdpa: add vDPA driver for Alibaba ENI (Cindy Lu) [2031595]
+- vdpa: add new attribute VDPA_ATTR_DEV_MIN_VQ_SIZE (Cindy Lu) [2031595]
+- virtio_vdpa: setup correct vq size with callbacks get_vq_num_{max,min} (Cindy Lu) [2031595]
+- vdpa: min vq num of vdpa device cannot be greater than max vq num (Cindy Lu) [2031595]
+- vdpa: add new callback get_vq_num_min in vdpa_config_ops (Cindy Lu) [2031595]
+- vp_vdpa: add vq irq offloading support (Cindy Lu) [2031595]
+- vdpa: fix typo (Cindy Lu) [2031595]
+- vhost-vdpa: Fix the wrong input in config_cb (Cindy Lu) [2031595]
+- vhost_vdpa: unset vq irq before freeing irq (Cindy Lu) [2031595]
+- vdpa: potential uninitialized return in vhost_vdpa_va_map() (Cindy Lu) [2031595]
+- vdpa/mlx5: Avoid executing set_vq_ready() if device is reset (Cindy Lu) [2031595]
+- vdpa/mlx5: Clear ready indication for control VQ (Cindy Lu) [2031595]
+- vdpa: Support transferring virtual addressing during DMA mapping (Cindy Lu) [2031595]
+- vdpa: factor out vhost_vdpa_pa_map() and vhost_vdpa_pa_unmap() (Cindy Lu) [2031595]
+- vdpa: Add an opaque pointer for vdpa_config_ops.dma_map() (Cindy Lu) [2031595]
+- vhost-iotlb: Add an opaque pointer for vhost IOTLB (Cindy Lu) [2031595]
+- vhost-vdpa: Handle the failure of vdpa_reset() (Cindy Lu) [2031595]
+- vdpa: Add reset callback in vdpa_config_ops (Cindy Lu) [2031595]
+- vdpa: Fix some coding style issues (Cindy Lu) [2031595]
+- vdpa: Make use of PFN_PHYS/PFN_UP/PFN_DOWN helper macro (Cindy Lu) [2031595]
+- vdpa_sim: Use iova_shift() for the size passed to alloc_iova() (Cindy Lu) [2031595]
+- vdpa/mlx5: Add multiqueue support (Cindy Lu) [2031595]
+- vdpa/mlx5: Add support for control VQ and MAC setting (Cindy Lu) [2031595]
+- vdpa/mlx5: Ensure valid indices are provided (Cindy Lu) [2031595]
+- vdpa/mlx5: Decouple virtqueue callback from struct mlx5_vdpa_virtqueue (Cindy Lu) [2031595]
+- vdpa/mlx5: function prototype modifications in preparation to control VQ (Cindy Lu) [2031595]
+- vdpa/mlx5: Remove redundant header file inclusion (Cindy Lu) [2031595]
+- vDPA/ifcvf: enable multiqueue and control vq (Cindy Lu) [2031595]
+- vDPA/ifcvf: detect and use the onboard number of queues directly (Cindy Lu) [2031595]
+- vDPA/ifcvf: implement management netlink framework for ifcvf (Cindy Lu) [2031595]
+- vDPA/ifcvf: introduce get_dev_type() which returns virtio dev id (Cindy Lu) [2031595]
+- vdpa/mlx5: Fix queue type selection logic (Cindy Lu) [2031595]
+- vdpa/mlx5: Avoid destroying MR on empty iotlb (Cindy Lu) [2031595]
+- virtio_vdpa: reject invalid vq indices (Cindy Lu) [2031595]
+- vdpa: Add documentation for vdpa_alloc_device() macro (Cindy Lu) [2031595]
+- vDPA/ifcvf: Fix return value check for vdpa_alloc_device() (Cindy Lu) [2031595]
+- vp_vdpa: Fix return value check for vdpa_alloc_device() (Cindy Lu) [2031595]
+- vdpa_sim: Fix return value check for vdpa_alloc_device() (Cindy Lu) [2031595]
+- vhost: Fix the calculation in vhost_overflow() (Cindy Lu) [2031595]
+- vhost-vdpa: Fix integer overflow in vhost_vdpa_process_iotlb_update() (Cindy Lu) [2031595]
+- iommu/vt-d: Fix unmap_pages support (Jerry Snitselaar) [2027765]
+- dm sysfs: use default_groups in kobj_type (Benjamin Marzinski) [2047358]
+- dm space map common: add bounds check to sm_ll_lookup_bitmap() (Benjamin Marzinski) [2047358]
+- dm btree: add a defensive bounds check to insert_at() (Benjamin Marzinski) [2047358]
+- dm btree remove: change a bunch of BUG_ON() calls to proper errors (Benjamin Marzinski) [2047358]
+- dm btree spine: eliminate duplicate le32_to_cpu() in node_check() (Benjamin Marzinski) [2047358]
+- dm btree spine: remove extra node_check function declaration (Benjamin Marzinski) [2047358]
+- selftests/bpf: Adding delay in socketmap_listen to reduce flakyness (Felix Maurer) [2026433]
+- net: openvswitch: Fix ct_state nat flags for conns arriving from tc (Marcelo Ricardo Leitner) [2040334]
+- net: openvswitch: Fix matching zone id for invalid conns arriving from tc (Marcelo Ricardo Leitner) [2040452]
+- net/sched: flow_dissector: Fix matching on zone id for invalid conns (Marcelo Ricardo Leitner) [2040452]
+- net/sched: Extend qdisc control block with tc control block (Marcelo Ricardo Leitner) [2040452]
+- mm: Fix an use-after-free error in mm_struct (Waiman Long) [2046161]
+- rh_flags: Rename rh_features to rh_flags (Prarit Bhargava) [2021700]
+- redhat: add initial rpminspect configuration (Augusto Caringi)
+
+* Fri Feb 04 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-365.el8]
+- can: raw: raw_setsockopt(): fix raw_rcv panic for sock UAF (Balazs Nemeth) [2026692]
+- drm/vmwgfx: Fix stale file descriptors on failed usercopy (Dave Airlie) [2047602] {CVE-2022-22942}
+- drm/i915: Flush TLBs before releasing backing store (Dave Airlie) [2044329] {CVE-2022-0330}
+- [s390] s390/pci: move pseudo-MMIO to prevent MIO overlap (Mete Durlu) [2047757]
+- [s390] scsi: zfcp: Fix failed recovery on gone remote port with non-NPIV FCP devices (Mete Durlu) [2048919]
+- tun: fix bonding active backup with arp monitoring (Jonathan Toppins) [2024964]
+- x86/hyperv: Properly deal with empty cpumasks in hyperv_flush_tlb_multi() (Vitaly Kuznetsov) [2044237]
+- xfs: check sb_meta_uuid for dabuf buffer recovery (Bill O'Donnell) [2020764]
+- vfs: fs_context: fix up param length parsing in legacy_parse_param (Carlos Maiolino) [2040586] {CVE-2022-0185}
+- KVM: nVMX: Allow VMREAD when Enlightened VMCS is in use (Vitaly Kuznetsov) [2012105]
+- KVM: nVMX: Implement evmcs_field_offset() suitable for handle_vmread() (Vitaly Kuznetsov) [2012105]
+- KVM: nVMX: Rename vmcs_to_field_offset{,_table} (Vitaly Kuznetsov) [2012105]
+- KVM: nVMX: eVMCS: Filter out VM_EXIT_SAVE_VMX_PREEMPTION_TIMER (Vitaly Kuznetsov) [2012105]
+- KVM: nVMX: Also filter MSR_IA32_VMX_TRUE_PINBASED_CTLS when eVMCS (Vitaly Kuznetsov) [2012105]
+- KVM: nVMX: Use INVALID_GPA for pointers used in nVMX. (Vitaly Kuznetsov) [2012105]
+- x86/kvm: Always inline evmcs_write64() (Vitaly Kuznetsov) [2012105]
+- powerpc/powernv: Remove POWER9 PVR version check for entry and uaccess flushes (Diego Domingos) [2030954]
+- powerpc/pesries: Get STF barrier requirement from H_GET_CPU_CHARACTERISTICS (Diego Domingos) [2030954]
+- powerpc/security: Add a security feature for STF barrier (Diego Domingos) [2030954]
+- powerpc/pseries: Get entry and uaccess flush required bits from H_GET_CPU_CHARACTERISTICS (Diego Domingos) [2030954]
+- drm/nouveau/disp/dp: add support for eDP link rates (Ben Skeggs) [2043523]
+- drm/nouveau/disp/dp: add support for hbr3 (Ben Skeggs) [2043523]
+- drm/nouveau/disp/dp: add support for lttprs (Ben Skeggs) [2043523]
+- drm/nouveau/disp/dp: fixup cr/eq delays for 1.4 (Ben Skeggs) [2043523]
+- drm/nouveau/disp/dp: add support for tps4 (Ben Skeggs) [2043523]
+- drm/nouveau/disp/dp: generate supported link rates table at detect time (Ben Skeggs) [2043523]
+- drm/nouveau/disp/dp: explicitly control scrambling when setting pattern (Ben Skeggs) [2043523]
+- drm/nouveau/disp: remove some remnant of a rework (Ben Skeggs) [2043523]
+- drm/nouveau: recognise GA106 (Ben Skeggs) [2043523]
+- redhat/scripts: Update merge-subtrees.sh (Prarit Bhargava)
+
+* Tue Feb 01 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-364.el8]
+- pinctrl: amd: Fix wakeups when IRQ is shared with SCI (Renjith Pananchikkal) [2039124]
+- bonding: fix ad_actor_system option setting to default (Jonathan Toppins) [2042564 1931881]
+- bonding: make tx_rebalance_counter an atomic (Jonathan Toppins) [2042564]
+- bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed (Jonathan Toppins) [2042564]
+- bonding: 3ad: pass parameter bond_params by reference (Jonathan Toppins) [2042564]
+- bonding: complain about missing route only once for A/B ARP probes (Jonathan Toppins) [2042564]
+- bonding: improve nl error msg when device can't be enslaved because of IFF_MASTER (Jonathan Toppins) [2042564]
+- bonding: combine netlink and console error messages (Jonathan Toppins) [2042564]
+- bonding: add new option lacp_active (Jonathan Toppins) [2042564]
+- bonding: 3ad: fix the concurrency between __bond_release_one() and bond_3ad_state_machine_handler() (Jonathan Toppins) [2042564]
+- bonding: fix build issue (Jonathan Toppins) [2042564]
+- bonding: fix incorrect return value of bond_ipsec_offload_ok() (Jonathan Toppins) [2042564]
+- bonding: fix suspicious RCU usage in bond_ipsec_offload_ok() (Jonathan Toppins) [2042564]
+- bonding: Add struct bond_ipesc to manage SA (Jonathan Toppins) [2042564]
+- bonding: disallow setting nested bonding + ipsec offload (Jonathan Toppins) [2042564]
+- bonding: fix suspicious RCU usage in bond_ipsec_del_sa() (Jonathan Toppins) [2042564]
+- bonding: fix null dereference in bond_ipsec_add_sa() (Jonathan Toppins) [2042564]
+- bonding: fix suspicious RCU usage in bond_ipsec_add_sa() (Jonathan Toppins) [2042564]
+- net: bonding: Use per-cpu rr_tx_counter (Jonathan Toppins) [2042564]
+- bonding: remove redundant initialization of variable ret (Jonathan Toppins) [2042564]
+- net: bonding: Use strscpy_pad() instead of manually-truncated strncpy() (Jonathan Toppins) [2042564]
+- bonding: init notify_work earlier to avoid uninitialized use (Jonathan Toppins) [2042564]
+- bonding: 3ad: Fix the conflict between bond_update_slave_arr and the state machine (Jonathan Toppins) [2042564]
+- scsi: lpfc: Update lpfc version to 14.0.0.4 (Dick Kennedy) [2034276]
+- scsi: lpfc: Add additional debugfs support for CMF (Dick Kennedy) [2034276]
+- scsi: lpfc: Cap CMF read bytes to MBPI (Dick Kennedy) [2034276]
+- scsi: lpfc: Adjust CMF total bytes and rxmonitor (Dick Kennedy) [2034276]
+- scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup (Dick Kennedy) [2034276]
+- scsi: lpfc: Fix NPIV port deletion crash (Dick Kennedy) [2034276]
+- scsi: lpfc: Fix lpfc_force_rscn ndlp kref imbalance (Dick Kennedy) [2034276]
+- scsi: lpfc: Change return code on I/Os received during link bounce (Dick Kennedy) [2034276]
+- scsi: lpfc: Fix leaked lpfc_dmabuf mbox allocations with NPIV (Dick Kennedy) [2034276]
+- ppp: ensure minimum packet size in ppp_write() (Guillaume Nault) [2042937]
+- KVM: VMX: switch blocked_vcpu_on_cpu_lock to raw spinlock (Marcelo Tosatti) [2034126]
+- configs: Enable CONFIG_THINKPAD_LMI on x86_64 (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Abort probe on analyze failure (Mark Pearson) [2030772]
+- platform/x86: think-lmi: add debug_cmd (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Fix possible mem-leaks on tlmi_analyze() error-exit (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Split kobject_init() and kobject_add() calls (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Move pending_reboot_attr to the attributes sysfs dir (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Add pending_reboot support (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Move kfree(setting->possible_values) to tlmi_attr_setting_release() (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Split current_value to reflect only the value (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Fix issues with duplicate attributes (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Return EINVAL when kbdlang gets set to a 0 length string (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Add missing MODULE_DEVICE_TABLE (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Avoid potential read before start of the buffer (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Fix check for admin password being set (Mark Pearson) [2030772]
+- platform/x86: dell-wmi-sysman/think-lmi: Make fw_attr_class global static (Mark Pearson) [2030772]
+- platform/x86: thinkpad-lmi: Remove unused display_name member from struct tlmi_pwd_setting (Mark Pearson) [2030772]
+- platform/x86: think-lmi: Add WMI interface support on Lenovo platforms (Mark Pearson) [2030772]
+- platform/x86: dell-wmi-sysman: fw_attr_inuse can be static (Mark Pearson) [2030772]
+- platform/x86: dell-wmi-sysman: Use firmware_attributes_class helper (Mark Pearson) [2030772]
+- platform/x86: firmware_attributes_class: Create helper file for handling firmware-attributes class registration events (Mark Pearson) [2030772]
+- x86/apic: Handle missing global clockevent gracefully (Lenny Szubowicz) [2033197]
+- RDMA/core: Don't infoleak GRH fields (Kamal Heib) [2036597]
+- RDMA/uverbs: Check for null return of kmalloc_array (Kamal Heib) [2036597]
+- RDMA/sa_query: Use strscpy_pad instead of memcpy to copy a string (Kamal Heib) [2036597]
+- RDMA/rw: switch to dma_map_sgtable() (Kamal Heib) [2036597]
+- RDMA/cma: Ensure rdma_addr_cancel() happens before issuing more requests (Kamal Heib) [2036597]
+- RDMA/cma: Fix listener leak in rdma_cma_listen_on_all() failure (Kamal Heib) [2036597]
+- RDMA/iwcm: Release resources if iw_cm module initialization fails (Kamal Heib) [2036597]
+- net: Set true network header for ECN decapsulation (Antoine Tenart) [2045059]
+- powerpc/bpf: Update ldimm64 instructions during extra pass (Yauheni Kaliuta) [2035973]
+- selftests: bpf: Fix bind on used port (Felix Maurer) [2025795]
+- bpf/selftests: Fix namespace mount setup in tc_redirect (Jiri Olsa) [2036016]
+- selftests/bpf: Fix possible/online index mismatch in perf_buffer test (Yauheni Kaliuta) [2039602]
+- selftests/bpf: Fix perf_buffer test on system with offline cpus (Yauheni Kaliuta) [2039602]
+- tracing: Tag trace_percpu_buffer as a percpu pointer (Jerome Marchand) [2031604]
+- tracing: Fix check for trace_percpu_buffer validity in get_trace_buf() (Jerome Marchand) [2031604]
+- hwmon: (k10temp) Support up to 12 CCDs on AMD Family of processors (David Arcari) [2022539]
+- hwmon: (k10temp) Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh (David Arcari) [2022539]
+- hwmon: (k10temp) Remove unused definitions (David Arcari) [2022539]
+- x86/amd_nb: Add AMD Family 19h Models (10h-1Fh) and (A0h-AFh) PCI IDs (David Arcari) [2022539]
+- hwmon: (k10temp) Remove residues of current and voltage (David Arcari) [2022539]
+- hwmon: (k10temp) Update driver documentation (David Arcari) [2022539]
+- hwmon: (k10temp) Update documentation and add temp2_input info (David Arcari) [2022539]
+- docs: hwmon: k10temp: convert to ReST format (David Arcari) [2022539]
+- mptcp: fix deadlock in __mptcp_push_pending() (Davide Caratti) [2043598]
+- mptcp: clear 'kern' flag from fallback sockets (Davide Caratti) [2043598]
+- mptcp: remove tcp ulp setsockopt support (Davide Caratti) [2043598]
+- mptcp: never allow the PM to close a listener subflow (Davide Caratti) [2043598]
+
+* Fri Jan 28 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-363.el8]
+- redhat: set LC_ALL=C before sorting config content (Frantisek Hrbata)
+- net: mana: Add RX fencing (Mohammed Gamal) [2030132]
+- net: mana: Add XDP support (Mohammed Gamal) [2030132]
+- net: mana: Fix memory leak in mana_hwc_create_wq (Mohammed Gamal) [2030132]
+- net: mana: Fix spelling mistake "calledd" -> "called" (Mohammed Gamal) [2030132]
+- net: mana: Support hibernation and kexec (Mohammed Gamal) [2030132]
+- net: mana: Improve the HWC error handling (Mohammed Gamal) [2030132]
+- net: mana: Report OS info to the PF driver (Mohammed Gamal) [2030132]
+- net: mana: Fix the netdev_err()'s vPort argument in mana_init_port() (Mohammed Gamal) [2030132]
+- net: mana: Allow setting the number of queues while the NIC is down (Mohammed Gamal) [2030132]
+- net: stmmac: Add GFP_DMA32 for rx buffers if no 64 capability (Mark Salter) [1989540]
+- net: stmmac: Fix potential integer overflow (Mark Salter) [1989540]
+- net: stmmac: fix issue where clk is being unprepared twice (Mark Salter) [1989540]
+- net: stmmac: fix kernel panic due to NULL pointer dereference of mdio_bus_data (Mark Salter) [1989540]
+- net: stmmac: fix system hang if change mac address after interface ifdown (Mark Salter) [1989540]
+- net: stmmac: correct clocks enabled in stmmac_vlan_rx_kill_vid() (Mark Salter) [1989540]
+- net: remove the mutex_acquire from __lock_sock_fast (Xin Long) [2026612]
+- net: core: Correct the sock::sk_lock.owned lockdep annotations (Xin Long) [2026612]
+- inet: use bigger hash table for IP ID generation (Xin Long) [2039969] {CVE-2021-45486}
+- net: revert "net: get rid of an signed integer overflow in ip_idents_reserve()" (Xin Long) [2039969]
+- net/mlx5: DR, Use FW API when updating FW-owned flow table (Michal Schmidt) [2042651]
+- ipv6: Continue processing multipath route even if gateway attribute is invalid (Hangbin Liu) [2041375]
+- ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route (Hangbin Liu) [2041375]
+- ipv6: Do cleanup if attribute validation fails in multipath route (Hangbin Liu) [2041375]
+- ipv6: Check attribute length for RTA_GATEWAY in multipath route (Hangbin Liu) [2041375]
+- rtw89: fix maybe-uninitialized error (Íñigo Huguet) [2033291]
+- rtw89: enable driver and device RTL8852AE (Íñigo Huguet) [2033291]
+- rtw89: fix maybe-uninitialized error (RHEL only) (Íñigo Huguet) [2033291]
+- rtw89: 8852a: correct bit definition of dfs_en (Íñigo Huguet) [2033291]
+- rtw89: coex: Update COEX to 5.5.8 (Íñigo Huguet) [2033291]
+- rtw89: coex: Cancel PS leaving while C2H comes (Íñigo Huguet) [2033291]
+- rtw89: coex: Update BT counters while receiving report (Íñigo Huguet) [2033291]
+- rtw89: coex: Define LPS state for BTC using (Íñigo Huguet) [2033291]
+- rtw89: coex: Add MAC API to get BT polluted counter (Íñigo Huguet) [2033291]
+- rtw89: coex: Not to send H2C when WL not ready and count H2C (Íñigo Huguet) [2033291]
+- rtw89: coex: correct C2H header length (Íñigo Huguet) [2033291]
+- rtw89: don't kick off TX DMA if failed to write skb (Íñigo Huguet) [2033291]
+- rtw89: remove cch_by_bw which is not used (Íñigo Huguet) [2033291]
+- rtw89: fix sending wrong rtwsta->mac_id to firmware to fill address CAM (Íñigo Huguet) [2033291]
+- rtw89: fix incorrect channel info during scan (Íñigo Huguet) [2033291]
+- rtw89: update scan_mac_addr during scanning period (Íñigo Huguet) [2033291]
+- rtw89: use inline function instead macro to set H2C and CAM (Íñigo Huguet) [2033291]
+- rtw89: add const in the cast of le32_get_bits() (Íñigo Huguet) [2033291]
+- rtw89: add AXIDMA and TX FIFO dump in mac_mem_dump (Íñigo Huguet) [2033291]
+- rtw89: fix potentially access out of range of RF register array (Íñigo Huguet) [2033291]
+- rtw89: remove unneeded variable (Íñigo Huguet) [2033291]
+- rtw89: remove unnecessary conditional operators (Íñigo Huguet) [2033291]
+- rtw89: update rtw89_regulatory map to R58-R31 (Íñigo Huguet) [2033291]
+- rtw89: update tx power limit/limit_ru tables to R54 (Íñigo Huguet) [2033291]
+- rtw89: update rtw89 regulation definition to R58-R31 (Íñigo Huguet) [2033291]
+- rtw89: fill regd field of limit/limit_ru tables by enum (Íñigo Huguet) [2033291]
+- rtw89: update partition size of firmware header on skb->data (Íñigo Huguet) [2033291]
+- rtw89: Fix variable dereferenced before check 'sta' (Íñigo Huguet) [2033291]
+- rtw89: fix return value in hfc_pub_cfg_chk (Íñigo Huguet) [2033291]
+- rtw89: remove duplicate register definitions (Íñigo Huguet) [2033291]
+- rtw89: fix error function parameter (Íñigo Huguet) [2033291]
+- rtw89: remove unneeded semicolon (Íñigo Huguet) [2033291]
+- rtw89: fix return value check in rtw89_cam_send_sec_key_cmd() (Íñigo Huguet) [2033291]
+- rtw89: Remove redundant check of ret after call to rtw89_mac_enable_bb_rf (Íñigo Huguet) [2033291]
+- rtw89: Fix two spelling mistakes in debug messages (Íñigo Huguet) [2033291]
+- rtw89: add Realtek 802.11ax driver (Íñigo Huguet) [2033291]
+- powerpc/doc: Fix htmldocs errors (Diego Domingos) [2004798]
+- pseries/drmem: update LMBs after LPM (Diego Domingos) [2004798]
+- powerpc/pseries: Add support for FORM2 associativity (Diego Domingos) [2004798]
+- powerpc/pseries: Add a helper for form1 cpu distance (Diego Domingos) [2004798]
+- powerpc/pseries: Consolidate different NUMA distance update code paths (Diego Domingos) [2004798]
+- powerpc/pseries: Rename TYPE1_AFFINITY to FORM1_AFFINITY (Diego Domingos) [2004798]
+- powerpc/pseries: rename min_common_depth to primary_domain_index (Diego Domingos) [2004798]
+- powerpc/numa: Fix build when CONFIG_NUMA=n (Diego Domingos) [2004798]
+- pseries/hotplug-memory: hot-add: skip redundant LMB lookup (Diego Domingos) [2004798]
+- selftests: icmp_redirect: pass xfail=0 to log_test() (Hangbin Liu) [2041308]
+- selftests: net: Correct ping6 expected rc from 2 to 1 (Hangbin Liu) [2041308]
+- mt76: enable new device MT7921E (Íñigo Huguet) [2024056 1972045]
+- vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit (Antoine Tenart) [2044254]
+- SUNRPC: prevent port reuse on transports which don't request it. (Benjamin Coddington) [2016646]
+- SUNRPC: Fix races when closing the socket (Benjamin Coddington) [2016646]
+- SUNRPC: Prevent immediate close+reconnect (Benjamin Coddington) [2016646]
+- SUNRPC: Clean up scheduling of autoclose (Benjamin Coddington) [2016646]
+- SUNRPC: Fix potential memory corruption (Benjamin Coddington) [2016646]
+- sunrpc: remove unnecessary test in rpc_task_set_client() (Benjamin Coddington) [2016646]
+- SUNRPC: Replace use of socket sk_callback_lock with sock_lock (Benjamin Coddington) [2016646]
+- arm64: numa: simplify dummy_numa_init() (Vitaly Kuznetsov) [2029774]
+- ACPI: NUMA: Process hotpluggable memblocks when !CONFIG_MEMORY_HOTPLUG (Vitaly Kuznetsov) [2029774]
+- s390/sclp: fix Secure-IPL facility detection (Stefan Schulze Frielinghaus) [2039182]
+- powerpc/pseries/mobility: ignore ibm, platform-facilities updates (Diego Domingos) [2031827]
+- of: Fix property name in of_node_get_device_type (Diego Domingos) [2031827]
+- of: Add device_type access helper functions (Diego Domingos) [2031827]
+- powerpc/watchdog: help remote CPUs to flush NMI printk output (Diego Domingos) [2030259]
+- powerpc/watchdog: Fix wd_smp_last_reset_tb reporting (Diego Domingos) [2030259]
+- powerpc/watchdog: read TB close to where it is used (Diego Domingos) [2030259]
+- powerpc/watchdog: Avoid holding wd_smp_lock over printk and smp_send_nmi_ipi (Diego Domingos) [2030259]
+- powerpc/watchdog: tighten non-atomic read-modify-write access (Diego Domingos) [2030259]
+- powerpc/watchdog: Fix missed watchdog reset due to memory ordering race (Diego Domingos) [2030259]
+- selftests/sgx: Fix corrupted cpuid macro invocation (Vladis Dronov) [1920030]
+- x86/sgx: Fix minor documentation issues (Vladis Dronov) [1920030]
+- selftests/sgx: Add test for multiple TCS entry (Vladis Dronov) [1920030]
+- selftests/sgx: Enable multiple thread support (Vladis Dronov) [1920030]
+- selftests/sgx: Add page permission and exception test (Vladis Dronov) [1920030]
+- selftests/sgx: Rename test properties in preparation for more enclave tests (Vladis Dronov) [1920030]
+- selftests/sgx: Provide per-op parameter structs for the test enclave (Vladis Dronov) [1920030]
+- selftests/sgx: Add a new kselftest: Unclobbered_vdso_oversubscribed (Vladis Dronov) [1920030]
+- selftests/sgx: Move setup_test_encl() to each TEST_F() (Vladis Dronov) [1920030]
+- selftests/sgx: Encpsulate the test enclave creation (Vladis Dronov) [1920030]
+- selftests/sgx: Dump segments and /proc/self/maps only on failure (Vladis Dronov) [1920030]
+- selftests/sgx: Create a heap for the test enclave (Vladis Dronov) [1920030]
+- selftests/sgx: Make data measurement for an enclave segment optional (Vladis Dronov) [1920030]
+- selftests/sgx: Assign source for each segment (Vladis Dronov) [1920030]
+- selftests/sgx: Fix a benign linker warning (Vladis Dronov) [1920030]
+- x86/sgx: Fix free page accounting (Vladis Dronov) [1920030]
+- x86/sgx: Add check for SGX pages to ghes_do_memory_failure() (Vladis Dronov) [1920030]
+- x86/sgx: Add hook to error injection address validation (Vladis Dronov) [1920030]
+- x86/sgx: Hook arch_memory_failure() into mainline code (Vladis Dronov) [1920030]
+- x86/sgx: Add SGX infrastructure to recover from poison (Vladis Dronov) [1920030]
+- x86/sgx: Initial poison handling for dirty and free pages (Vladis Dronov) [1920030]
+- x86/sgx: Add infrastructure to identify SGX EPC pages (Vladis Dronov) [1920030]
+- x86/sgx: Add new sgx_epc_page flag bit to mark free pages (Vladis Dronov) [1920030]
+- selftests/sgx: Fix Q1 and Q2 calculation in sigstruct.c (Vladis Dronov) [1920030]
+- selftests/sgx: remove checks for file execute permissions (Vladis Dronov) [1920030]
+- selftests/sgx: Refine the test enclave to have storage (Vladis Dronov) [1920030]
+- selftests/sgx: Add EXPECT_EEXIT() macro (Vladis Dronov) [1920030]
+- selftests/sgx: Dump enclave memory map (Vladis Dronov) [1920030]
+- selftests/sgx: Migrate to kselftest harness (Vladis Dronov) [1920030]
+- selftests/sgx: Rename 'eenter' and 'sgx_call_vdso' (Vladis Dronov) [1920030]
+- x86/sgx: Add missing xa_destroy() when virtual EPC is destroyed (Vladis Dronov) [1920030]
+- x86/sgx: Correct kernel-doc's arg name in sgx_encl_release() (Vladis Dronov) [1920030]
+- x86: Fix leftover comment typos (Vladis Dronov) [1920030]
+- mm,hwpoison: return -EHWPOISON to denote that the page has already been poisoned (Vladis Dronov) [1920030]
+- mm/memory-failure: use a mutex to avoid memory_failure() races (Vladis Dronov) [1920030]
+- mm,hwpoison: take free pages off the buddy freelists (Vladis Dronov) [1920030]
+- sched/fair: Consider SMT in ASYM_PACKING load balance (Prarit Bhargava) [1971924]
+- sched/fair: Carve out logic to mark a group for asymmetric packing (Prarit Bhargava) [1971924]
+- sched/fair: Provide update_sg_lb_stats() with sched domain statistics (Prarit Bhargava) [1971924]
+- sched/fair: Optimize checking for group_asym_packing (Prarit Bhargava) [1971924]
+- sched/topology: Introduce sched_group::flags (Prarit Bhargava) [1971924]
+- x86/sched: Decrease further the priorities of SMT siblings (Prarit Bhargava) [1971924]
+
+* Wed Jan 26 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-362.el8]
+- nvme-fc: remove freeze/unfreeze around update_nr_hw_queues (Ewan D. Milne) [1996109]
+- nvme-fc: avoid race between time out and tear down (Ewan D. Milne) [1996109]
+- nvme-fc: update hardware queues before using them (Ewan D. Milne) [1996109]
+- igbvf: Refactor trace (Corinna Vinschen) [2039886]
+- igbvf: fix double free in `igbvf_probe` (Corinna Vinschen) [2039886]
+- mm/memory_hotplug: remove is_mem_section_removable() (David Hildenbrand) [2008072]
+- powerpc/pseries/hotplug-memory: stop checking is_mem_section_removable() (David Hildenbrand) [2008072]
+- drivers/base/memory.c: indicate all memory blocks as removable (David Hildenbrand) [2008072]
+- drivers/base/memory.c: fixup documentation of removable/phys_index/block_size_bytes (David Hildenbrand) [2008072]
+- Revert "mpi3mr: mark as tech preview" (Tomas Henzl) [1989634]
+- scsi: core: Avoid printing an error if target_alloc() returns -ENXIO (Tomas Henzl) [1977833]
+- scsi: mpi3mr: Use scnprintf() instead of snprintf() (Tomas Henzl) [1998599]
+- scsi: mpi3mr: Fix duplicate device entries when scanning through sysfs (Tomas Henzl) [1998599]
+- scsi: mpi3mr: Clean up mpi3mr_print_ioc_info() (Tomas Henzl) [1989634]
+- scsi: mpi3mr: Set up IRQs in resume path (Tomas Henzl) [1991577]
+- Revert "scsi: lpfc: ls_rjt erroneus FLOGIs" (Dick Kennedy) [2032488]
+- pseries/eeh: Fix the kdump kernel crash during eeh_pseries_init (Steve Best) [2028253]
+- arm64: smp: Add missing prototype for some smp.c functions (Mark Salter) [1996738]
+- irqchip/gic-v3-its: Remove unnecessary oom message (Mark Salter) [1996738]
+- irqchip/gic-v2m: Remove unnecessary oom message (Mark Salter) [1996738]
+- irqchip/gic: Split vGIC probing information from the GIC code (Mark Salter) [1996738]
+- irqchip/gic-v3: Workaround inconsistent PMR setting on NMI entry (Mark Salter) [1996738]
+- irqchip/gic-v3: Do not enable irqs when handling spurious interrups (Mark Salter) [1996738]
+- irqchip/gic-v4.1: Disable vSGI upon (GIC CPUIF < v4.1) detection (Mark Salter) [1996738]
+- irqchip/gic-v3: Fix OF_BAD_ADDR error handling (Mark Salter) [1996738]
+- arm64: Move ICH_ sysreg bits from arm-gic-v3.h to sysreg.h (Mark Salter) [1996738]
+- irqchip/gic-v3-its: Drop the setting of PTZ altogether (Mark Salter) [1996738]
+- irqchip/gic-v3-its: Add a cache invalidation right after vPE unmapping (Mark Salter) [1996738]
+- irqchip/gic-v3: Fix typos in PMR/RPR SCR_EL3.FIQ handling explanation (Mark Salter) [1996738]
+- genirq/msi: Initialize msi_alloc_info before calling msi_domain_prepare_irqs() (Mark Salter) [1996738]
+- irqchip/gic: Spelling s/REturn/Return/ (Mark Salter) [1996738]
+- irqchip/gic-v3-its: Unconditionally save/restore the ITS state on suspend (Mark Salter) [1996738]
+- irq-chip/gic-v3-its: Fix crash if ITS is in a proximity domain without processor or memory (Mark Salter) [1996738]
+- irqchip/gic: Cleanup Franken-GIC handling (Mark Salter) [1996738]
+- arm64: Implement panic_smp_self_stop() (Mark Salter) [1996738]
+- arm64: Improve parking of stopped CPUs (Mark Salter) [1996738]
+- genirq: Allow interrupts to be excluded from /proc/interrupts (Mark Salter) [1996738]
+- irqchip/gic-v3: Support pseudo-NMIs when SCR_EL3.FIQ == 0 (Mark Salter) [1996738]
+- irqchip/gic-v3: Spell out when pseudo-NMIs are enabled (Mark Salter) [1996738]
+- irqchip/gic-v2, v3: Prevent SW resends entirely (Mark Salter) [1996738]
+- irqchip/git-v3-its: Implement irq_retrigger callback for device-triggered LPIs (Mark Salter) [1996738]
+- irqchip/gic-v2, v3: Implement irq_chip->irq_retrigger() (Mark Salter) [1996738]
+- irqchip/gic-v4.1: Use GFP_ATOMIC flag in allocate_vpe_l1_table() (Mark Salter) [1996738]
+- irqchip/gic-v4.1: Ensure accessing the correct RD when writing INVALLR (Mark Salter) [1996738]
+- irqchip/gic-v3: Remove unused register definition (Mark Salter) [1996738]
+- drivers/irqchip: Use new macro ACPI_DECLARE_SUBTABLE_PROBE_ENTRY (Mark Salter) [1996738]
+- drivers/acpi: Add new macro ACPI_DECLARE_SUBTABLE_PROBE_ENTRY (Mark Salter) [1996738]
+- KVM: arm64: vgic-v4: Plug race between non-residency and v4.1 doorbell (Mark Salter) [1996738]
+- irqchip/gic: Atomically update affinity (Mark Salter) [1996738]
+- irqchip/gic-v4.1: Use readx_poll_timeout_atomic() to fix sleep in atomic (Mark Salter) [1996738]
+- irqchip/gic-v2, v3: Drop extra IRQ_NOAUTOEN setting for (E)PPIs (Mark Salter) [1996738]
+- irqchip/gic-v3-its: Balance initial LPI affinity across CPUs (Mark Salter) [1996738]
+- irqchip/gic-v3-its: Track LPI distribution on a per CPU basis (Mark Salter) [1996738]
+- irqchip/gic-v3: Fix missing "__init" for gic_smp_init() (Mark Salter) [1996738]
+- selftests/bpf: Enlarge select() timeout for test_maps (Jiri Benc) [1869444]
+- PCI: Do not enable AtomicOps on VFs (Selvin Xavier) [1987081 1984339]
+- RDMA/bnxt_re: Fix stats counters (Selvin Xavier) [1987081 1984339 2001893]
+- RDMA/bnxt_re: Prefer kcalloc over open coded arithmetic (Selvin Xavier) [1987081 1984339]
+- RDMA/bnxt_re: Remove unpaired rtnl unlock in bnxt_re_dev_init() (Selvin Xavier) [1987081 1984339]
+- RDMA/bnxt_re: Add missing spin lock initialization (Selvin Xavier) [1987081 1984339]
+- RDMA/bnxt_re: Fix uninitialized struct bit field rsvd1 (Selvin Xavier) [1987081 1984339]
+- RDMA/bnxt_re: Update ABI to pass wqe-mode to user space (Selvin Xavier) [1987081 1984339]
+- RDMA/bnxt_re: Enable global atomic ops if platform supports (Selvin Xavier) [1987081 1984339]
+- RDMA/bnxt_re: Drop unnecessary NULL checks after container_of (Selvin Xavier) [1987081 1984339]
+- dm btree remove: fix use after free in rebalance_children() (Benjamin Marzinski) [2034424]
+- dm table: log table creation error code (Benjamin Marzinski) [2034424]
+- dm: make workqueue names device-specific (Benjamin Marzinski) [2034424]
+- dm writecache: Make use of the helper macro kthread_run() (Benjamin Marzinski) [2034424]
+- dm crypt: Make use of the helper macro kthread_run() (Benjamin Marzinski) [2034424]
+- dm: fix mempool NULL pointer race when completing IO (Benjamin Marzinski) [2034424]
+- dm rq: don't queue request to blk-mq during DM suspend (Benjamin Marzinski) [1891486]
+- dm verity: skip redundant verity_handle_err() on I/O errors (Benjamin Marzinski) [2034424]
+- dm writecache: add event counters (Benjamin Marzinski) [2034424]
+- dm writecache: report invalid return from writecache_map helpers (Benjamin Marzinski) [2034424]
+- dm writecache: further writecache_map() cleanup (Benjamin Marzinski) [2034424]
+- dm writecache: factor out writecache_map_remap_origin() (Benjamin Marzinski) [2034424]
+- dm writecache: split up writecache_map() to improve code readability (Benjamin Marzinski) [2034424]
+- dm btree remove: assign new_root only when removal succeeds (Benjamin Marzinski) [2034424]
+- dm ps io affinity: remove redundant continue statement (Benjamin Marzinski) [2034424]
+- dm: rearrange core declarations for extended use from dm-zone.c (Benjamin Marzinski) [2034424]
+- dm space map disk: cache a small number of index entries (Benjamin Marzinski) [2034424]
+- dm space maps: improve performance with inc/dec on ranges of blocks (Benjamin Marzinski) [2034424]
+- dm space maps: don't reset space map allocation cursor when committing (Benjamin Marzinski) [2034424]
+- dm btree: improve btree residency (Benjamin Marzinski) [2034424]
+- dm integrity: fix sparse warnings (Benjamin Marzinski) [2034424]
+- dm: replace dm_vcalloc() (Benjamin Marzinski) [2034424]
+- dm integrity: add the "reset_recalculate" feature flag (Benjamin Marzinski) [2034424]
+- dm cache: remove needless request_queue NULL pointer checks (Benjamin Marzinski) [2034424]
+- dm thin: remove needless request_queue NULL pointer check (Benjamin Marzinski) [2034424]
+- dm ioctl: replace device hash with red-black tree (Benjamin Marzinski) [2034424]
+- recordmcount.pl: fix typo in s390 mcount regex (Jerome Marchand) [2025890]
+- recordmcount.pl: look for jgnop instruction as well as bcrl on s390 (Jerome Marchand) [2025890]
+- KVM: x86: Wait for IPIs to be delivered when handling Hyper-V TLB flush hypercall (Vitaly Kuznetsov) [1868572]
+- HID: magicmouse: prevent division by 0 on scroll (Benjamin Tissoires) [2022814]
+- HID: input: set usage type to key on keycode remap (Benjamin Tissoires) [2022814]
+- HID: input: Fix parsing of HID_CP_CONSUMER_CONTROL fields (Benjamin Tissoires) [2022814]
+- HID: u2fzero: properly handle timeouts in usb_submit_urb (Benjamin Tissoires) [2022814]
+- HID: u2fzero: clarify error check and length calculations (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Fix potential NULL pointer dereference (Benjamin Tissoires) [2022814]
+- HID: u2fzero: ignore incomplete packets without data (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Fix potential NULL pointer dereference (Benjamin Tissoires) [2022814]
+- HID: wacom: Add new Intuos BT (CTL-4100WL/CTL-6100WL) device IDs (Benjamin Tissoires) [2022814]
+- HID: apple: Fix logical maximum and usage maximum of Magic Keyboard JIS (Benjamin Tissoires) [2022814]
+- HID: betop: fix slab-out-of-bounds Write in betop_probe (Benjamin Tissoires) [2022814]
+- HID: usbhid: Simplify code in hid_submit_ctrl() (Benjamin Tissoires) [2022814]
+- HID: usbhid: Fix warning caused by 0-length input reports (Benjamin Tissoires) [2022814]
+- HID: usbhid: Fix flood of "control queue full" messages (Benjamin Tissoires) [2022814]
+- HID: sony: Fix more ShanWan clone gamepads to not rumble when plugged in. (Benjamin Tissoires) [2022814]
+- HID: sony: support for the ghlive ps4 dongles (Benjamin Tissoires) [2022814]
+- HID: thrustmaster: clean up Makefile and adapt quirks (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: Fix Elan touchpad regression (Benjamin Tissoires) [2022814]
+- HID: asus: Prevent Claymore sending suspend event (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Add dyndbg prints for debugging (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Add support for PM suspend and resume (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Move hid probe after sensor is enabled (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Add command response to check command status (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Fix period data field to enable sensor (Benjamin Tissoires) [2022814]
+- HID: logitech-hidpp: battery: provide CAPACITY property for newer devices (Benjamin Tissoires) [2022814]
+- HID: thrustmaster: Fix memory leak in thrustmaster_interrupts() (Benjamin Tissoires) [2022814]
+- HID: thrustmaster: Fix memory leak in remove (Benjamin Tissoires) [2022814]
+- HID: thrustmaster: Fix memory leaks in probe (Benjamin Tissoires) [2022814]
+- HID: elo: update the reference count of the usb device structure (Benjamin Tissoires) [2022814]
+- HID: logitech-hidpp: Use 'atomic_inc_return' instead of hand-writing it (Benjamin Tissoires) [2022814]
+- HID: ft260: fix device removal due to USB disconnect (Benjamin Tissoires) [2022814]
+- HID: apple: Add missing scan code event for keys handled by hid-apple (Benjamin Tissoires) [2022814]
+- HID: cmedia: add support for HS-100B mute button (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: goodix: Use the devm variant of regulator_register_notifier() (Benjamin Tissoires) [2022814]
+- HID: wacom: Refactor touch input mute checks into a common function (Benjamin Tissoires) [2022814]
+- HID: wacom: Avoid sending empty sync events (Benjamin Tissoires) [2022814]
+- HID: wacom: Short-circuit processing of touch when it is disabled (Benjamin Tissoires) [2022814]
+- HID: wacom: set initial hardware touch switch state to 'off' (Benjamin Tissoires) [2022814]
+- HID: wacom: Skip processing of touches with negative slot values (Benjamin Tissoires) [2022814]
+- HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT (Benjamin Tissoires) [2022814]
+- HID: Kconfig: Fix spelling mistake "Uninterruptable" -> "Uninterruptible" (Benjamin Tissoires) [2022814]
+- HID: apple: Add support for Keychron K1 wireless keyboard (Benjamin Tissoires) [2022814]
+- HID: usbhid: free raw_report buffers in usbhid_stop (Benjamin Tissoires) [2022814]
+- HID: fix typo in Kconfig (Benjamin Tissoires) [2022814]
+- HID: ft260: fix format type warning in ft260_word_show() (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: goodix: Tie the reset line to true state of the regulator (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Use correct MMIO register for DMA address (Benjamin Tissoires) [2022814]
+- HID: magicmouse: high-resolution scroll threshold (Benjamin Tissoires) [2022814]
+- HID: magicmouse: enable high-resolution scroll (Benjamin Tissoires) [2022814]
+- HID: asus: Remove check for same LED brightness on set (Benjamin Tissoires) [2022814]
+- HID: input: do not report stylus battery state as "full" (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: use async resume function (Benjamin Tissoires) [2022814]
+- HID: thrustmaster: Switch to kmemdup() when allocate change_request (Benjamin Tissoires) [2022814]
+- HID: multitouch: Disable event reporting on suspend when the device is not a wakeup-source (Benjamin Tissoires) [2022814]
+- HID: logitech-dj: Implement may_wakeup ll-driver callback (Benjamin Tissoires) [2022814]
+- HID: usbhid: Implement may_wakeup ll-driver callback (Benjamin Tissoires) [2022814]
+- HID: core: Add hid_hw_may_wakeup() function (Benjamin Tissoires) [2022814]
+- HID: input: Add support for Programmable Buttons (Benjamin Tissoires) [2022814]
+- HID: wacom: Correct base usage for capacitive ExpressKey status bits (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Add initial support for HPD sensor (Benjamin Tissoires) [2022814 1961759]
+- HID: amd_sfh: Extend ALS support for newer AMD platform (Benjamin Tissoires) [2022814 1961759]
+- HID: amd_sfh: Extend driver capabilities for multi-generation support (Benjamin Tissoires) [2022814 1961759]
+- HID: surface-hid: Fix get-report request (Benjamin Tissoires) [2022814]
+- HID: sony: fix freeze when inserting ghlive ps3/wii dongles (Benjamin Tissoires) [2022814]
+- HID: usbkbd: Avoid GFP_ATOMIC when GFP_KERNEL is possible (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: ipc: Specify that EHL no cache snooping (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: ishtp: Add dma_no_cache_snooping() callback (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Set ISH driver depends on x86 (Benjamin Tissoires) [2022814]
+- HID: hid-input: add Surface Go battery quirk (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Fix minor typos in comments (Benjamin Tissoires) [2022814]
+- HID: magicmouse: fix NULL-deref on disconnect (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: ipc: Add Alder Lake device IDs (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: fix format string mismatch (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Fix memory leak in amd_sfh_work (Benjamin Tissoires) [2022814]
+- HID: amd_sfh: Use devm_kzalloc() instead of kzalloc() (Benjamin Tissoires) [2022814]
+- HID: ft260: improve error handling of ft260_hid_feature_report_get() (Benjamin Tissoires) [2022814]
+- HID: asus: Cleanup Asus T101HA keyboard-dock handling (Benjamin Tissoires) [2022814]
+- HID: magicmouse: fix crash when disconnecting Magic Trackpad 2 (Benjamin Tissoires) [2022814]
+- HID: gt683r: add missing MODULE_DEVICE_TABLE (Benjamin Tissoires) [2022814]
+- HID: pidff: fix error return code in hid_pidff_init() (Benjamin Tissoires) [2022814]
+- HID: logitech-hidpp: initialize level variable (Benjamin Tissoires) [2022814]
+- HID: multitouch: Disable event reporting on suspend on the Asus T101HA touchpad (Benjamin Tissoires) [2022814]
+- HID: core: Remove extraneous empty line before EXPORT_SYMBOL_GPL(hid_check_keys_pressed) (Benjamin Tissoires) [2022814]
+- HID: usbmouse: Avoid GFP_ATOMIC when GFP_KERNEL is possible (Benjamin Tissoires) [2022814]
+- HID: hid-sensor-custom: Process failure of sensor_hub_set_feature() (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: Skip ELAN power-on command after reset (Benjamin Tissoires) [2022814]
+- HID: usbhid: fix info leak in hid_submit_ctrl (Benjamin Tissoires) [2022814]
+- HID: Add BUS_VIRTUAL to hid_connect logging (Benjamin Tissoires) [2022814]
+- HID: input: replace outdated HID numbers+comments with macros (Benjamin Tissoires) [2022814]
+- HID: multitouch: set Stylus suffix for Stylus-application devices, too (Benjamin Tissoires) [2022814]
+- HID: multitouch: require Finger field to mark Win8 reports as MT (Benjamin Tissoires) [2022814]
+- HID: remove the unnecessary redefinition of a macro (Benjamin Tissoires) [2022814]
+- HID: quirks: Add quirk for Lenovo optical mouse (Benjamin Tissoires) [2022814]
+- HID: asus: filter G713/G733 key event to prevent shutdown (Benjamin Tissoires) [2022814]
+- HID: lg-g15 + ite: Add MODULE_AUTHOR (Benjamin Tissoires) [2022814]
+- HID: lg-g15: Add support for the Logitech Z-10 speakers (Benjamin Tissoires) [2022814]
+- HID: lg-g15: Make the LED-name used by lg_g15_register_led() a parameter (Benjamin Tissoires) [2022814]
+- HID: lg-g15: Add a lg_g15_init_input_dev() helper function (Benjamin Tissoires) [2022814]
+- HID: lg-g15: Add a lg_g15_handle_lcd_menu_keys() helper function (Benjamin Tissoires) [2022814]
+- HID: lg-g15: Remove unused size argument from lg_*_event() functions (Benjamin Tissoires) [2022814]
+- HID: hid-sensor-hub: Return error for hid_set_field() failure (Benjamin Tissoires) [2022814]
+- HID: ft260: check data size in ft260_smbus_write() (Benjamin Tissoires) [2022814]
+- HID: surface-hid: Fix integer endian conversion (Benjamin Tissoires) [2022814]
+- HID: hid-debug: recognize KEY_ASSISTANT and KEY_KBD_LAYOUT_NEXT (Benjamin Tissoires) [2022814]
+- HID: hid-input: add mapping for emoji picker key (Benjamin Tissoires) [2022814]
+- HID: a4tech: use A4_2WHEEL_MOUSE_HACK_B8 for A4TECH NB-95 (Benjamin Tissoires) [2022814]
+- HID: logitech-dj/hidpp: Add info/warn/err messages about 27 MHz keyboard encryption (Benjamin Tissoires) [2022814]
+- HID: quirks: Add HID_QUIRK_NO_INIT_REPORTS quirk for Dell K15A keyboard-dock (Benjamin Tissoires) [2022814]
+- HID: thrustmaster: fix return value check in thrustmaster_probe() (Benjamin Tissoires) [2022814]
+- HID: quirks: Set INCREMENT_USAGE_ON_DUPLICATE for Saitek X65 (Benjamin Tissoires) [2022814]
+- HID: do not use down_interruptible() when unbinding devices (Benjamin Tissoires) [2022814]
+- HID: asus: Filter keyboard EC for old ROG keyboard (Benjamin Tissoires) [2022814]
+- HID: semitek: new driver for GK6X series keyboards (Benjamin Tissoires) [2022814]
+- HID: wacom: Setup pen input capabilities to the targeted tools (Benjamin Tissoires) [2022814]
+- HID: hid-sensor-hub: Move 'hsdev' description to correct struct definition (Benjamin Tissoires) [2022814]
+- HID: hid-sensor-hub: Remove unused struct member 'quirks' (Benjamin Tissoires) [2022814]
+- HID: wacom_sys: Demote kernel-doc abuse (Benjamin Tissoires) [2022814]
+- HID: hid-sensor-custom: Remove unused variable 'ret' (Benjamin Tissoires) [2022814]
+- HID: hid-uclogic-params: Ensure function names are present and correct in kernel-doc headers (Benjamin Tissoires) [2022814]
+- HID: hid-uclogic-rdesc: Kernel-doc is for functions and structs (Benjamin Tissoires) [2022814]
+- HID: hid-logitech-hidpp: Fix conformant kernel-doc header and demote abuses (Benjamin Tissoires) [2022814]
+- HID: hid-picolcd_core: Remove unused variable 'ret' (Benjamin Tissoires) [2022814]
+- HID: hid-kye: Fix incorrect function name for kye_tablet_enable() (Benjamin Tissoires) [2022814]
+- HID: hid-core: Fix incorrect function name in header (Benjamin Tissoires) [2022814]
+- HID: hid-alps: Correct struct misnaming (Benjamin Tissoires) [2022814]
+- HID: usbhid: hid-pidff: Demote a couple kernel-doc abuses (Benjamin Tissoires) [2022814]
+- HID: usbhid: Repair a formatting issue in a struct description (Benjamin Tissoires) [2022814]
+- HID: ishtp-hid-client: Fix 'suggest-attribute=format' compiler warning (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: ishtp-fw-loader: Fix a bunch of formatting issues (Benjamin Tissoires) [2022814]
+- HID: ishtp-hid-client: Fix incorrect function name report_bad_packet() (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: ipc: Correct fw_reset_work_fn() function name in header (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Fix potential copy/paste error (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Fix a little doc-rot (Benjamin Tissoires) [2022814]
+- HID: intel-ish: Fix a naming disparity and a formatting error (Benjamin Tissoires) [2022814]
+- HID: intel-ish: Supply some missing param descriptions (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: pci-ish: Remove unused variable 'ret' (Benjamin Tissoires) [2022814]
+- HID: ishtp-hid-client: Move variable to where it's actually used (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Remove unused variable 'err' (Benjamin Tissoires) [2022814]
+- HID: hid-thrustmaster: Demote a bunch of kernel-doc abuses (Benjamin Tissoires) [2022814]
+- HID: input: map battery capacity (00850065) (Benjamin Tissoires) [2022814]
+- HID: magicmouse: fix reconnection of Magic Mouse 2 (Benjamin Tissoires) [2022814]
+- HID: magicmouse: fix 3 button emulation of Mouse 2 (Benjamin Tissoires) [2022814]
+- HID: magicmouse: add Apple Magic Mouse 2 support (Benjamin Tissoires) [2022814]
+- HID: lenovo: Add support for Thinkpad X1 Tablet Thin keyboard (Benjamin Tissoires) [2022814]
+- HID: lenovo: Rework how the tp10ubkbd code decides which USB interface to use (Benjamin Tissoires) [2022814]
+- HID: lenovo: Set default_triggers for the mute and micmute LEDs (Benjamin Tissoires) [2022814]
+- HID: lenovo: Map mic-mute button to KEY_F20 instead of KEY_MICMUTE (Benjamin Tissoires) [2022814]
+- HID: lenovo: Set LEDs max_brightness value (Benjamin Tissoires) [2022814]
+- HID: lenovo: Remove lenovo_led_brightness_get() (Benjamin Tissoires) [2022814]
+- HID: lenovo: Check hid_get_drvdata() returns non NULL in lenovo_event() (Benjamin Tissoires) [2022814]
+- HID: lenovo: Fix lenovo_led_set_tp10ubkbd() error handling (Benjamin Tissoires) [2022814]
+- HID: lenovo: Use brightness_set_blocking callback for setting LEDs brightness (Benjamin Tissoires) [2022814]
+- HID: elan: Remove elan_mute_led_get_brigtness() (Benjamin Tissoires) [2022814]
+- HID: elan: Set default_trigger for the mute LED (Benjamin Tissoires) [2022814]
+- HID: elan: Silence mute LED errors being logged when the device is unplugged (Benjamin Tissoires) [2022814]
+- HID: fix memdup.cocci warnings (Benjamin Tissoires) [2022814]
+- HID: surface-hid: Add support for legacy keyboard interface (Benjamin Tissoires) [2022814]
+- HID: Add support for Surface Aggregator Module HID transport (Benjamin Tissoires) [2022814]
+- HID: thrustmaster: introduce proper USB dependency (Benjamin Tissoires) [2022814]
+- HID: intel_ish-hid: HBM: Use connected standby state bit during suspend/resume (Benjamin Tissoires) [2022814]
+- HID: ft260: fix an error message in ft260_i2c_write_read() (Benjamin Tissoires) [2022814]
+- HID: support for initialization of some Thrustmaster wheels (Benjamin Tissoires) [2022814]
+- HID: wacom: set EV_KEY and EV_ABS only for non-HID_GENERIC type of devices (Benjamin Tissoires) [2022814]
+- HID: ft260: add usb hid to i2c host bridge driver (Benjamin Tissoires) [2022814]
+- iio: Add relative sensitivity support (Benjamin Tissoires) [2022814]
+- iio: hid-sensors: Move get sensitivity attribute to hid-sensor-common (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Make remove callback return void (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Simplify logic in ishtp_cl_device_remove() (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Drop if block with an always false condition (Benjamin Tissoires) [2022814]
+- AMD_SFH: Add DMI quirk table for BIOS-es which don't set the activestatus bits (Benjamin Tissoires) [2022814]
+- AMD_SFH: Add sensor_mask module parameter (Benjamin Tissoires) [2022814]
+- AMD_SFH: Removed unused activecontrolstatus member from the amd_mp2_dev struct (Benjamin Tissoires) [2022814]
+- HID: wacom: Assign boolean values to a bool variable (Benjamin Tissoires) [2022814]
+- HID cp2112: fix support for multiple gpiochips (Benjamin Tissoires) [2022814]
+- HID: alps: fix error return code in alps_input_configured() (Benjamin Tissoires) [2022814]
+- HID: asus: Add support for 2021 ASUS N-Key keyboard (Benjamin Tissoires) [2022814]
+- HID: hiddev: Return specific error codes on connect failure (Benjamin Tissoires) [2022814]
+- HID: plantronics: Workaround for double volume key presses (Benjamin Tissoires) [2022814]
+- HID: logitech-dj: Handle newer quad/bt2.0 receivers in HID proxy mode (Benjamin Tissoires) [2022814]
+- HID: logitech-dj: Use hid-ids.h defines for USB device-ids for all supported devices (Benjamin Tissoires) [2022814]
+- HID: google: add don USB id (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: acpi: Drop redundant ACPI_PTR() (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: acpi: Move GUID out of function and described it (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: acpi: Switch to new style i2c-driver probe function (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: acpi: Get ACPI companion only once and reuse it (Benjamin Tissoires) [2022814]
+- HID: playstation: add DualSense player LED support. (Benjamin Tissoires) [2022814]
+- HID: playstation: add microphone mute support for DualSense. (Benjamin Tissoires) [2022814]
+- HID: playstation: add initial DualSense lightbar support. (Benjamin Tissoires) [2022814]
+- HID: wacom: Ignore attempts to overwrite the touch_max value from HID (Benjamin Tissoires) [2022814]
+- HID: playstation: fix array size comparison (off-by-one) (Benjamin Tissoires) [2022814]
+- HID: playstation: fix unused variable in ps_battery_get_property. (Benjamin Tissoires) [2022814]
+- HID: playstation: report DualSense hardware and firmware version. (Benjamin Tissoires) [2022814]
+- HID: playstation: add DualSense classic rumble support. (Benjamin Tissoires) [2022814]
+- HID: playstation: add DualSense Bluetooth support. (Benjamin Tissoires) [2022814]
+- HID: playstation: track devices in list. (Benjamin Tissoires) [2022814]
+- HID: playstation: add DualSense accelerometer and gyroscope support. (Benjamin Tissoires) [2022814]
+- HID: playstation: add DualSense touchpad support. (Benjamin Tissoires) [2022814]
+- HID: playstation: add DualSense battery support. (Benjamin Tissoires) [2022814]
+- HID: playstation: use DualSense MAC address as unique identifier. (Benjamin Tissoires) [2022814]
+- HID: playstation: initial DualSense USB support. (Benjamin Tissoires) [2022814]
+- HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch 10E (Benjamin Tissoires) [2022814]
+- HID: Ignore battery for Elan touchscreen on HP Spectre X360 15-df0xxx (Benjamin Tissoires) [2022814]
+- HID: logitech-dj: add support for the new lightspeed connection iteration (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: ipc: Add Tiger Lake H PCI device ID (Benjamin Tissoires) [2022814]
+- HID: logitech-dj: add support for keyboard events in eQUAD step 4 Gaming (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: Add I2C_HID_QUIRK_NO_IRQ_AFTER_RESET for ITE8568 EC on Voyo Winpad A15 (Benjamin Tissoires) [2022814]
+- HID: displays: convert sysfs sprintf/snprintf family to sysfs_emit (Benjamin Tissoires) [2022814]
+- HID: wacom: convert sysfs sprintf/snprintf family to sysfs_emit (Benjamin Tissoires) [2022814]
+- HID: lg-g15: make a const array static, makes object smaller (Benjamin Tissoires) [2022814]
+- HID: google: Get HID report on probe to confirm tablet switch state (Benjamin Tissoires) [2022814]
+- HID: hid-input: avoid splitting keyboard, system and consumer controls (Benjamin Tissoires) [2022814]
+- HID: correct kernel-doc notation in hid-quirks.c (Benjamin Tissoires) [2022814]
+- HID: correct kernel-doc notation in <linux/hid*.h> (Benjamin Tissoires) [2022814]
+- HID: wacom: Correct NULL dereference on AES pen proximity (Benjamin Tissoires) [2022814]
+- HID: multitouch: Set to high latency mode on suspend. (Benjamin Tissoires) [2022814]
+- HID: multitouch: Apply MT_QUIRK_CONFIDENCE quirk for multi-input devices (Benjamin Tissoires) [2022814]
+- HID: hid-sensor-custom: Add custom sensor iio support (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: Introduce goodix-i2c-hid using i2c-hid core (Benjamin Tissoires) [2022814]
+- redhat: HID: enable I2C_HID_ACPI (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: Reorganize so ACPI and OF are separate modules (Benjamin Tissoires) [2022814]
+- HID: logitech-hidpp: add support for Unified Battery (1004) feature (Benjamin Tissoires) [2022814]
+- HID: sony: Add support for tilt on guitar hero guitars (Benjamin Tissoires) [2022814]
+- HID: logitech-hidpp: Add product ID for MX Ergo in Bluetooth mode (Benjamin Tissoires) [2022814]
+- HID: chicony: Add Wireless Radio Control feature for Chicony devices (Benjamin Tissoires) [2022814]
+- HID: Ignore battery for Elan touchscreen on ASUS UX550 (Benjamin Tissoires) [2022814]
+- HID: logitech-dj: add the G602 receiver (Benjamin Tissoires) [2022814]
+- HID: core: detect and skip invalid inputs to snto32() (Benjamin Tissoires) [2022814]
+- HID: uclogic: Improve support for Trust Panora (Benjamin Tissoires) [2022814]
+- HID: wiimote: remove h from printk format specifier (Benjamin Tissoires) [2022814]
+- HID: uclogic: remove h from printk format specifier (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: ipc: Address EHL Sx resume issues (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: ipc: finish power flow for EHL OOB (Benjamin Tissoires) [2022814]
+- HID: sony: select CONFIG_CRC32 (Benjamin Tissoires) [2022814]
+- HID: sfh: fix address space confusion (Benjamin Tissoires) [2022814]
+- HID: multitouch: Enable multi-input for Synaptics pointstick/touchpad device (Benjamin Tissoires) [2022814]
+- HID: wacom: Fix memory leakage caused by kfifo_alloc (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: add Vero K147 to descriptor override (Benjamin Tissoires) [2022814]
+- HID: ite: Add support for Acer S1002 keyboard-dock (Benjamin Tissoires) [2022814]
+- HID: sony: support for ghlive ps3/wii u dongles (Benjamin Tissoires) [2022814]
+- HID: hidraw: Add additional hidraw input/output report ioctls. (Benjamin Tissoires) [2022814]
+- HID: Increase HID maximum report size to 16KB (Benjamin Tissoires) [2022814]
+- HID: elecom: drop stray comment (Benjamin Tissoires) [2022814]
+- HID: mf: add support for 0079:1846 Mayflash/Dragonrise USB Gamecube Adapter (Benjamin Tissoires) [2022814]
+- HID: elecom: add support for EX-G M-XGL20DLBK wireless mouse (Benjamin Tissoires) [2022814]
+- HID: elecom: rewrite report based on model specific parameters (Benjamin Tissoires) [2022814]
+- HID: wacom: Constify attribute_groups (Benjamin Tissoires) [2022814]
+- HID: input: Fix fall-through warnings for Clang (Benjamin Tissoires) [2022814]
+- HID: usbhid: Fix fall-through warnings for Clang (Benjamin Tissoires) [2022814]
+- HID: logitech-hidpp: Add hid_device_id for V470 bluetooth mouse (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: Remove unnecessary assignment to variable rv (Benjamin Tissoires) [2022814]
+- HID: sony: Workaround for DS4 dongle hotplug kernel crash. (Benjamin Tissoires) [2022814]
+- HID: sony: Don't use fw_version/hw_version for sysfs cleanup. (Benjamin Tissoires) [2022814]
+- HID: sony: Report more accurate DS4 power status. (Benjamin Tissoires) [2022814]
+- SFH: fix error return check for -ERESTARTSYS (Benjamin Tissoires) [2022814]
+- HID: Add Logitech Dinovo Edge battery quirk (Benjamin Tissoires) [2022814]
+- HID: logitech-hidpp: Add HIDPP_CONSUMER_VENDOR_KEYS quirk for the Dinovo Edge (Benjamin Tissoires) [2022814]
+- HID: add HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE for Gamevice devices (Benjamin Tissoires) [2022814]
+- HID: mcp2221: Fix GPIO output handling (Benjamin Tissoires) [2022814]
+- HID: hid-sensor-hub: Fix issue with devices with no report ID (Benjamin Tissoires) [2022814]
+- HID: hid-input: occasionally report stylus battery even if not changed (Benjamin Tissoires) [2022814]
+- timekeeping: Add missing _ns functions for coarse accessors (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: show the error when failing to fetch the HID descriptor (Benjamin Tissoires) [2022814]
+- AMD_SFH: Fix for incorrect Sensor index (Benjamin Tissoires) [2022814]
+- HID: asus: Add support for ASUS N-Key keyboard (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: Put ACPI enumerated devices in D3 on shutdown (Benjamin Tissoires) [2022814]
+- HID: add support for Sega Saturn (Benjamin Tissoires) [2022814]
+- HID: cypress: Support Varmilo Keyboards' media hotkeys (Benjamin Tissoires) [2022814]
+- HID: ite: Replace ABS_MISC 120/121 events with touchpad on/off keypresses (Benjamin Tissoires) [2022814]
+- SFH: Create HID report to Enable support of AMD sensor fusion Hub (SFH) (Benjamin Tissoires) [2022814]
+- SFH:Transport Driver to add support of AMD Sensor Fusion Hub (SFH) (Benjamin Tissoires) [2022814]
+- redhat: HID: enable AMD_SFH_HUB (Benjamin Tissoires) [1965674]
+- SFH: PCIe driver to add support of AMD sensor fusion hub (Benjamin Tissoires) [2022814]
+- HID: uclogic: Add ID for Trust Flex Design Tablet (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: Enable wakeup capability from Suspend-to-Idle (Benjamin Tissoires) [2022814]
+- HID: add vivaldi HID driver (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: fix kerneldoc warnings in i2c-hid-core.c (Benjamin Tissoires) [2022814]
+- HID: core: fix kerneldoc warnings in hid-core.c (Benjamin Tissoires) [2022814]
+- HID: multitouch: Lenovo X1 Tablet Gen2 trackpoint and buttons (Benjamin Tissoires) [2022814]
+- HID: alps: clean up indentation issue (Benjamin Tissoires) [2022814]
+- HID: intel-ish-hid: simplify the return expression of ishtp_bus_remove_device() (Benjamin Tissoires) [2022814]
+- HID: hid-debug: fix nonblocking read semantics wrt EIO/ERESTARTSYS (Benjamin Tissoires) [2022814]
+- HID: i2c-hid: Prefer asynchronous probe (Benjamin Tissoires) [2022814]
+- HID: wiimote: narrow spinlock range in wiimote_hid_event() (Benjamin Tissoires) [2022814]
+- HID: wiimote: make handlers[] const (Benjamin Tissoires) [2022814]
+- HID: logitech-dj: Fix spelling in comment (Benjamin Tissoires) [2022814]
+- HID: apple: Add support for Matias wireless keyboard (Benjamin Tissoires) [2022814]
+- Input: elan_i2c - reduce the resume time for controller in Whitebox (Benjamin Tissoires) [2022814]
+- Input: parkbd - switch to use module_parport_driver() (Benjamin Tissoires) [2022814]
+- Input: i8042 - fix typos in comments (Benjamin Tissoires) [2022814]
+- Input: elantech - Prepare a complete software node for the device (Benjamin Tissoires) [2022814]
+- Input: apbps2 - remove useless variable (Benjamin Tissoires) [2022814]
+- Input: elan_i2c - fix a typo in parameter name (Benjamin Tissoires) [2022814]
+- Input: i8042 - fix Pegatron C15B ID entry (Benjamin Tissoires) [2022814]
+- Input: elan_i2c - reduce the resume time for new devices (Benjamin Tissoires) [2022814]
+- Input: i8042 - add ASUS Zenbook Flip to noselftest list (Benjamin Tissoires) [2022814]
+- Input: add missing dependencies on CONFIG_HAS_IOMEM (Benjamin Tissoires) [2022814]
+- ARM: 9048/1: sa1111: make sa1111 bus's remove callback return void (Benjamin Tissoires) [2022814]
+- Input: synaptics - replace NOOP with suitable commentary (Benjamin Tissoires) [2022814]
+- Input: i8042 - unbreak Pegatron C15B (Benjamin Tissoires) [2022814]
+- Input: parkbd - convert comma to semicolon (Benjamin Tissoires) [2022814]
+- Input: elantech - fix protocol errors for some trackpoints in SMBus mode (Benjamin Tissoires) [2022814]
+- Input: elan_i2c - add new trackpoint report type 0x5F (Benjamin Tissoires) [2022814]
+- Input: i8042 - add Acer laptops to the i8042 reset list (Benjamin Tissoires) [2022814]
+- Input: i8042 - add ByteSpeed touchpad to noloop table (Benjamin Tissoires) [2022814]
+- Input: i8042 - fix error return code in i8042_setup_aux() (Benjamin Tissoires) [2022814]
+- Input: libps2 - fix fall-through warnings for Clang (Benjamin Tissoires) [2022814]
+- Input: synaptics - demote non-conformant kernel-doc header (Benjamin Tissoires) [2022814]
+- Input: elan_i2c_core - move header inclusion inside (Benjamin Tissoires) [2022814]
+- Input: elan_i2c - fix firmware update on newer ICs (Benjamin Tissoires) [2022814]
+- Input: elantech - demote obvious abuse of kernel-doc header (Benjamin Tissoires) [2022814]
+- Input: i8042 - allow insmod to succeed on devices without an i8042 controller (Benjamin Tissoires) [2022814]
+- Input: synaptics - enable InterTouch for ThinkPad T14 Gen 1 (Benjamin Tissoires) [2022814]
+- Input: synaptics - enable InterTouch for ThinkPad P1/X1E gen 2 (Benjamin Tissoires) [2022814]
+- Input: synaptics-rmi4 - rename f30_data to gpio_data (Benjamin Tissoires) [2022814]
+- Input: sun4i-ps2 - fix handling of platform_get_irq() error (Benjamin Tissoires) [2022814]
+- Input: allocate keycode for Fn + right shift (Benjamin Tissoires) [2022814]
+- Input: allocate keycodes for notification-center, pickup-phone and hangup-phone (Benjamin Tissoires) [2022814]
+- HID: cp2112: Use irqchip template (Benjamin Tissoires) [2022814]
+- HID: mcp2221: Replace HTTP links with HTTPS ones (Benjamin Tissoires) [2022814]
+- treewide: replace '---help---' in Kconfig files with 'help' (Benjamin Tissoires) [2022814]
+- HID: asus: Add depends on USB_HID to HID_ASUS Kconfig option (Benjamin Tissoires) [2022814]
+- HID: asus: Fix mute and touchpad-toggle keys on Medion Akoya E1239T (Benjamin Tissoires) [2022814]
+- HID: asus: Add support for multi-touch touchpad on Medion Akoya E1239T (Benjamin Tissoires) [2022814]
+- HID: asus: Add report_size to struct asus_touchpad_info (Benjamin Tissoires) [2022814]
+- HID: asus: Add hid_is_using_ll_driver(usb_hid_driver) check (Benjamin Tissoires) [2022814]
+- HID: asus: Simplify skipping of mappings for Asus T100CHI keyboard-dock (Benjamin Tissoires) [2022814]
+- HID: asus: Only set EV_REP if we are adding a mapping (Benjamin Tissoires) [2022814]
+- HID: mcp2221: add gpiolib dependency (Benjamin Tissoires) [2022814]
+- HID: mcp2221: add GPIO functionality support (Benjamin Tissoires) [2022814]
+- HID: mcp2221: add usb to i2c-smbus host bridge (Benjamin Tissoires) [2022814]
+- HID: asus: Ignore Asus vendor-page usage-code 0xff events (Benjamin Tissoires) [2022814]
+- HID: sb0540: add support for Creative SB0540 IR receivers (Benjamin Tissoires) [2022814]
+- gpio: pass lookup and descriptor flags to request_own (Benjamin Tissoires) [2022814]
+- HID: hid-asus: select CONFIG_POWER_SUPPLY (Benjamin Tissoires) [2022814]
+- HID: hid-asus: Add BT keyboard dock battery monitoring support (Benjamin Tissoires) [2022814]
+- HID: hid-asus: Add Transbook T90CHI support (Benjamin Tissoires) [2022814]
+- HID: asus: Add support for the ASUS T101HA keyboard dock (Benjamin Tissoires) [2022814]
+- HID: asus: Add support for the ASUS FX503VD laptop (Benjamin Tissoires) [2022814]
+- HID: asus: Add event handler to catch unmapped Asus Vendor UsagePage codes (Benjamin Tissoires) [2022814]
+- af_unix: fix garbage collect vs MSG_PEEK (Patrick Talbert) [2031975] {CVE-2021-0920}
+- net: add kerneldoc comment for sk_peer_lock (Guillaume Nault) [2037782]
+- af_unix: fix races in sk_peer_pid and sk_peer_cred accesses (Guillaume Nault) [2037782] {CVE-2021-4203}
+- netfilter: nat: force port remap to prevent shadowing well-known ports (Florian Westphal) [2006167] {CVE-2021-3773}
+- netfilter: conntrack: tag conntracks picked up in local out hook (Florian Westphal) [2006167]
+- selftests: nft_nat: switch port shadow test cases to socat (Florian Westphal) [2006167]
+- selftests: nft_nat: Simplify port shadow notrack test (Florian Westphal) [2006167]
+- selftests: nft_nat: Improve port shadow test stability (Florian Westphal) [2006167]
+- selftests: nft_nat: add udp hole punch test case (Florian Westphal) [2006167]
+- ipv6: use prandom_u32() for ID generation (Hangbin Liu) [2040158] {CVE-2021-45485}
+- igc: fix tunnel offloading (Corinna Vinschen) [1910885]
+- virtio/vsock: fix the transport to work with VMADDR_CID_ANY (Stefano Garzarella) [2026442]
+- vhost/vsock: cleanup removing `len` variable (Stefano Garzarella) [2026442]
+- vhost/vsock: fix incorrect used length reported to the guest (Stefano Garzarella) [2026442]
+- vsock: prevent unnecessary refcnt inc for nonblocking connect (Stefano Garzarella) [2026442]
+- vsock/virtio: avoid potential deadlock when vsock device remove (Stefano Garzarella) [2026442]
+- VSOCK: handle VIRTIO_VSOCK_OP_CREDIT_REQUEST (Stefano Garzarella) [2026442]
+- vsock: notify server to shutdown when client has pending signal (Stefano Garzarella) [2026442]
+- virtio/vsock: simplify credit update function API (Stefano Garzarella) [2026442]
+- virtio/vsock: set packet's type in virtio_transport_send_pkt_info() (Stefano Garzarella) [2026442]
+- net: vlan: fix underflow for the real_dev refcnt (Balazs Nemeth) [2026375]
+- net: vlan: fix a UAF in vlan_dev_real_dev() (Balazs Nemeth) [2026375]
+
+* Mon Jan 24 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-361.el8]
+- xfs: map unwritten blocks in XFS_IOC_{ALLOC,FREE}SP just like fallocate (Carlos Maiolino) [2034865] {CVE-2021-4155}
+- isdn: cpai: check ctr->cnr to avoid array index out of bound (Chris von Recklinghausen) [2016491] {CVE-2021-43389}
+- vt: keyboard: avoid signed integer overflow in k_ascii (Chris von Recklinghausen) [2017044] {CVE-2020-13974}
+- USB: serial: pl2303: fix GC type detection (Torez Smith) [1975985]
+- usb: dwc3: leave default DMA for PCI devices (Torez Smith) [1975985]
+- usb: xhci: tegra: Check padctrl interrupt presence in device tree (Torez Smith) [1975985]
+- usb: dwc3: core: Revise GHWPARAMS9 offset (Torez Smith) [1975985]
+- xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good delay (Torez Smith) [1975985]
+- usb: typec: tipd: Remove dependency on "connector" child fwnode (Torez Smith) [1975985]
+- usb: xhci: tegra: mark PM functions as __maybe_unused (Torez Smith) [1975985]
+- media: ttusb-dec: avoid release of non-acquired mutex (Torez Smith) [1975985]
+- ABI: sysfs-devices-removable: make a table valid as ReST markup (Torez Smith) [1975985]
+- usb: dwc3: core: balance phy init and exit (Torez Smith) [1975985]
+- USB: serial: pl2303: fix GL type detection (Torez Smith) [1975985]
+- usb: xhci-mtk: Do not use xhci's virt_dev in drop_endpoint (Torez Smith) [1975985]
+- usb: xhci-mtk: fix issue of out-of-bounds array access (Torez Smith) [1975985]
+- usb: dwc3: Decouple USB 2.0 L1 & L2 events (Torez Smith) [1975985]
+- media: em28xx-input: fix refcount bug in em28xx_usb_disconnect (Torez Smith) [1975985]
+- media: dvb-usb: Fix error handling in dvb_usb_i2c_init (Torez Smith) [1975985]
+- power: supply: Fix build error when CONFIG_POWER_SUPPLY is not enabled. (Torez Smith) [1975985]
+- thunderbolt: test: split up test cases in tb_test_credit_alloc_all (Torez Smith) [1975985]
+- thunderbolt: Handle ring interrupt by reading interrupt status register (Torez Smith) [1975985]
+- thunderbolt: Add vendor specific NHI quirk for auto-clearing interrupt status (Torez Smith) [1975985]
+- thunderbolt: Fix port linking by checking all adapters (Torez Smith) [1975985]
+- thunderbolt: Do not read control adapter config space (Torez Smith) [1975985]
+- thunderbolt: Add authorized value to the KOBJ_CHANGE uevent (Torez Smith) [1975985]
+- usb: typec: tcpm: Raise vdm_sm_running flag only when VDM SM is running (Torez Smith) [1975985]
+- usb: dwc3: gadget: Stop EP0 transfers during pullup disable (Torez Smith) [1975985]
+- usb: dwc3: gadget: Fix dwc3_calc_trbs_left() (Torez Smith) [1975985]
+- Revert "USB: serial: ch341: fix character loss at high transfer rates" (Torez Smith) [1975985]
+- USB: serial: option: add new VID/PID to support Fibocom FG150 (Torez Smith) [1975985]
+- usb: typec: tcpm: Fix VDMs sometimes not being forwarded to alt-mode drivers (Torez Smith) [1975985]
+- Revert "usb: dwc3: gadget: Use list_replace_init() before traversing lists" (Torez Smith) [1975985]
+- usb: typec: tcpm: Keep other events when receiving FRS and Sourcing_vbus events (Torez Smith) [1975985]
+- usb: dwc3: gadget: Avoid runtime resume if disabling pullup (Torez Smith) [1975985]
+- usb: dwc3: gadget: Use list_replace_init() before traversing lists (Torez Smith) [1975985]
+- USB: serial: ftdi_sio: add device ID for Auto-M3 OP-COM v2 (Torez Smith) [1975985]
+- USB: serial: pl2303: fix GT type detection (Torez Smith) [1975985]
+- USB: serial: option: add Telit FD980 composition 0x1056 (Torez Smith) [1975985]
+- USB: serial: pl2303: fix HX type detection (Torez Smith) [1975985]
+- media: rtl28xxu: fix zero-length control request (Torez Smith) [1975985]
+- media: Revert "media: rtl28xxu: fix zero-length control request" (Torez Smith) [1975985]
+- USB: serial: ch341: fix character loss at high transfer rates (Torez Smith) [1975985]
+- usb: otg-fsm: Fix hrtimer list corruption (Torez Smith) [1975985]
+- USB: usbtmc: Fix RCU stall warning (Torez Smith) [1975985]
+- USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick (Torez Smith) [1975985]
+- Revert "USB: quirks: ignore remote wake-up on Fibocom L850-GL LTE modem" (Torez Smith) [1975985]
+- usb: dwc2: gadget: Fix sending zero length packet in DDMA mode. (Torez Smith) [1975985]
+- usb: dwc2: Skip clock gating on Samsung SoCs (Torez Smith) [1975985]
+- usb: dwc2: gadget: Fix GOUTNAK flow for Slave mode. (Torez Smith) [1975985]
+- usb: xhci: avoid renesas_usb_fw.mem when it's unusable (Torez Smith) [1975985]
+- usb: dwc3: avoid NULL access of usb_gadget_driver (Torez Smith) [1975985]
+- usb: typec: stusb160x: Don't block probing of consumer of "connector" nodes (Torez Smith) [1975985]
+- usb: typec: stusb160x: register role switch before interrupt registration (Torez Smith) [1975985]
+- USB: usb-storage: Add LaCie Rugged USB3-FW to IGNORE_UAS (Torez Smith) [1975985]
+- usb: hub: Disable USB 3 device initiated lpm if exit latency is too high (Torez Smith) [1975985]
+- usb: hub: Fix link power management max exit latency (MEL) calculations (Torez Smith) [1975985]
+- usb: typec: tipd: Don't block probing of consumer of "connector" nodes (Torez Smith) [1975985]
+- xhci: Fix lost USB 2 remote wake (Torez Smith) [1975985]
+- USB: serial: cp210x: fix comments for GE CS1000 (Torez Smith) [1975985]
+- USB: core: Fix incorrect pipe calculation in do_proc_control() (Torez Smith) [1975985]
+- USB: serial: option: add support for u-blox LARA-R6 family (Torez Smith) [1975985]
+- thunderbolt: test: Reinstate a few casts of bitfields (Torez Smith) [1975985]
+- USB: cdc-acm: blacklist Heimann USB Appset device (Torez Smith) [1975985]
+- usb: xhci-mtk: allow multiple Start-Split in a microframe (Torez Smith) [1975985]
+- usb: ftdi-elan: remove redundant continue statement in a while-loop (Torez Smith) [1975985]
+- thunderbolt: test: Remove some casts which are no longer required (Torez Smith) [1975985]
+- xhci: remove redundant continue statement (Torez Smith) [1975985]
+- usb: dwc3: Fix debugfs creation flow (Torez Smith) [1975985]
+- docs: driver-api: usb: avoid using ReST :doc:`foo` markup (Torez Smith) [1975985]
+- xhci: solve a double free problem while doing s4 (Torez Smith) [1975985]
+- xhci: handle failed buffer copy to URB sg list and fix a W=1 copiler warning (Torez Smith) [1975985]
+- xhci: Add adaptive interrupt rate for isoch TRBs with XHCI_AVOID_BEI quirk (Torez Smith) [1975985]
+- xhci: Remove unused defines for ERST_SIZE and ERST_ENTRIES (Torez Smith) [1975985]
+- usb: typec: Add the missed altmode_id_remove() in typec_register_altmode() (Torez Smith) [1975985]
+- usb: typec: tcpm: Relax disconnect threshold during power negotiation (Torez Smith) [1975985]
+- usb: typec: tcpm: Ignore Vsafe0v in PR_SWAP_SNK_SRC_SOURCE_ON state (Torez Smith) [1975985]
+- usb: typec: tcpci: Fix up sink disconnect thresholds for PD (Torez Smith) [1975985]
+- usb: core: hub: Disable autosuspend for Cypress CY7C65632 (Torez Smith) [1975985]
+- usb: host: xhci-tegra: Use devm_platform_get_and_ioremap_resource() (Torez Smith) [1975985]
+- usb: host: xhci-tegra: Add missing of_node_put() in tegra_xusb_probe() (Torez Smith) [1975985]
+- usb: host: xhci-tegra: add missing put_device() in tegra_xusb_probe() (Torez Smith) [1975985]
+- media: usb: cpia2: Fixed Coding Style issues (Torez Smith) [1975985]
+- media: ttusb-dec: cleanup an error handling logic (Torez Smith) [1975985]
+- cypress_m8: switch data_bits to real character bits (Torez Smith) [1975985]
+- thunderbolt: Fix DROM handling for USB4 DROM (Torez Smith) [1975985]
+- usb: xhci: tegra: Enable ELPG for runtime/system PM (Torez Smith) [1975985]
+- usb: xhci: tegra: Unlink power domain devices (Torez Smith) [1975985]
+- thunderbolt: Bond lanes only when dual_link_port != NULL in alloc_dev_default() (Torez Smith) [1975985]
+- thunderbolt: No need to include <linux/acpi.h> in usb4_port.c (Torez Smith) [1975985]
+- thunderbolt: Poll 10ms for REG_FW_STS_NVM_AUTH_DONE to be set (Torez Smith) [1975985]
+- thunderbolt: Add device links only when software connection manager is used (Torez Smith) [1975985]
+- thunderbolt: Add support for Intel Alder Lake (Torez Smith) [1975985]
+- usb: typec: mux: Fix copy-paste mistake in typec_mux_match (Torez Smith) [1975985]
+- usb: typec: ucsi: Clear PPM capability data in ucsi_init() error path (Torez Smith) [1975985]
+- usb: typec: wcove: Use LE to CPU conversion when accessing msg->header (Torez Smith) [1975985]
+- usb: typec: ucsi: Fix a comment in ucsi_init() (Torez Smith) [1975985]
+- USB: dwc3: remove debugfs root dentry storage (Torez Smith) [1975985]
+- USB: serial: cp210x: fix CP2102N-A01 modem control (Torez Smith) [1975985]
+- USB: serial: cp210x: fix alternate function for CP2102N QFN20 (Torez Smith) [1975985]
+- usb: dwc2: Don't reset the core after setting turnaround time (Torez Smith) [1975985]
+- usb: dwc3: support 64 bit DMA in platform driver (Torez Smith) [1975985]
+- USB: core: Avoid WARNings for 0-length descriptor requests (Torez Smith) [1975985]
+- usb: dwc3: core: fix kernel panic when do reboot (Torez Smith) [1975985]
+- usb: dwc3: ep0: fix NULL pointer exception (Torez Smith) [1975985]
+- usb: typec: intel_pmc_mux: Put ACPI device using acpi_dev_put() (Torez Smith) [1975985]
+- usb: typec: intel_pmc_mux: Add missed error check for devm_ioremap_resource() (Torez Smith) [1975985]
+- usb: typec: intel_pmc_mux: Put fwnode in error case during ->probe() (Torez Smith) [1975985]
+- usb: typec: tcpm: Do not finish VDM AMS for retrying Responses (Torez Smith) [1975985]
+- media: cinergyt2: make properties const (Torez Smith) [1975985]
+- media: dvd_usb: memory leak in cinergyt2_fe_attach (Torez Smith) [1975985]
+- USB: serial: ftdi_sio: add NovaTech OrionMX product ID (Torez Smith) [1975985]
+- usb: typec: tcpm: cancel send discover hrtimer when unregister tcpm port (Torez Smith) [1975985]
+- usb: typec: tcpm: cancel frs hrtimer when unregister tcpm port (Torez Smith) [1975985]
+- usb: typec: tcpm: cancel vdm and state machine hrtimer when unregister tcpm port (Torez Smith) [1975985]
+- usb: typec: tcpm: Properly handle Alert and Status Messages (Torez Smith) [1975985]
+- usb: dwc3: meson-g12a: Disable the regulator in the error handling path of the probe (Torez Smith) [1975985]
+- usb: typec: tcpm: Fix misuses of AMS invocation (Torez Smith) [1975985]
+- usb: typec: tcpm: Introduce snk_vdo_v1 for SVDM version 1.0 (Torez Smith) [1975985]
+- dt-bindings: connector: Add PD rev 2.0 VDO definition (Torez Smith) [1975985]
+- usb: typec: tcpm: Correct the responses in SVDM Version 2.0 DFP (Torez Smith) [1975985]
+- Revert "usb: dwc3: core: Add shutdown callback for dwc3" (Torez Smith) [1975985]
+- dt-bindings: connector: Replace BIT macro with generic bit ops (Torez Smith) [1975985]
+- media: gspca: ov519: replace RIGHT SINGLE QUOTATION MARK (Torez Smith) [1975985]
+- usb: typec: intel_pmc_mux: Update IOM port status offset for AlderLake (Torez Smith) [1975985]
+- usb: pd: Set PD_T_SINK_WAIT_CAP to 310ms (Torez Smith) [1975985]
+- usb: dwc3: gadget: Bail from dwc3_gadget_exit() if dwc->gadget is NULL (Torez Smith) [1975985]
+- usb: dwc3: gadget: Disable gadget IRQ during pullup disable (Torez Smith) [1975985]
+- usb: dwc3: debugfs: Add and remove endpoint dirs dynamically (Torez Smith) [1975985]
+- Revert "usb: typec: mux: Remove requirement for the "orientation-switch" device property" (Torez Smith) [1975985]
+- media: rtl28xxu: fix zero-length control request (Torez Smith) [1975985]
+- media: gspca/sunplus: fix zero-length control requests (Torez Smith) [1975985]
+- media: gspca/gl860: fix zero-length control requests (Torez Smith) [1975985]
+- media: gspca/sq905: fix control-request direction (Torez Smith) [1975985]
+- media: dtv5100: fix control-request directions (Torez Smith) [1975985]
+- media: drivers/media/usb/gspca/cpia1.c : fix spelling typo (Torez Smith) [1975985]
+- media: drivers/media/usb/em28xx/em28xx-cards.c : fix typo issues (Torez Smith) [1975985]
+- media: zr364xx: fix memory leak in zr364xx_start_readpipe (Torez Smith) [1975985]
+- media: em28xx: Fix possible memory leak of em28xx struct (Torez Smith) [1975985]
+- thunderbolt: Check for NVM authentication status after the operation started (Torez Smith) [1975985]
+- thunderbolt: Add WRITE_ONLY and AUTHENTICATE_ONLY NVM operations for retimers (Torez Smith) [1975985]
+- thunderbolt: Allow router NVM authenticate separately (Torez Smith) [1975985]
+- thunderbolt: Move nvm_write_ops to tb.h (Torez Smith) [1975985]
+- thunderbolt: Log the link as TBT instead of TBT3 (Torez Smith) [1975985]
+- thunderbolt: Add support for retimer NVM upgrade when there is no link (Torez Smith) [1975985]
+- thunderbolt: Add additional USB4 port operations for retimer access (Torez Smith) [1975985]
+- thunderbolt: Add support for ACPI _DSM to power on/off retimers (Torez Smith) [1975985]
+- thunderbolt: Add USB4 port devices (Torez Smith) [1975985]
+- thunderbolt: Add KUnit tests for credit allocation (Torez Smith) [1975985]
+- thunderbolt: Allocate credits according to router preferences (Torez Smith) [1975985]
+- USB: core: Check buffer length matches wLength for control transfers (Torez Smith) [1975985]
+- usb: typec: ucsi: Fix copy/paste issue for 'ucsi_set_drvdata()' (Torez Smith) [1975985]
+- usb: dwc2: gadget: Repair 'dwc2_hsotg_core_init_disconnected()'s documentation (Torez Smith) [1975985]
+- usb: dwc2: pci: Fix possible copy/paste issue (Torez Smith) [1975985]
+- usb: dwc2: hcd_queue: Fix typeo in function name 'dwc2_hs_pmap_unschedule()' (Torez Smith) [1975985]
+- usb: dwc2: params: Fix naming of 'dwc2_get_hwparams()' in the docs (Torez Smith) [1975985]
+- usb: common: ulpi: Add leading underscores for function name '__ulpi_register_driver()' (Torez Smith) [1975985]
+- usb: dwc2: platform: Provide function name for 'dwc2_check_core_version()' (Torez Smith) [1975985]
+- driver core: Move the "removable" attribute from USB to core (Torez Smith) [1975985]
+- usb: dwc3: trace: Remove unused fields in dwc3_log_trb (Torez Smith) [1975985]
+- usb: typec: mux: Remove requirement for the "orientation-switch" device property (Torez Smith) [1975985]
+- usb: typec: mux: Use device type instead of device name for matching (Torez Smith) [1975985]
+- usb: common: usb-conn-gpio: use usb_role_string() to print role status (Torez Smith) [1975985]
+- usb: roles: add helper usb_role_string() (Torez Smith) [1975985]
+- USB: serial: omninet: update driver description (Torez Smith) [1975985]
+- USB: serial: omninet: add device id for Zyxel Omni 56K Plus (Torez Smith) [1975985]
+- USB: serial: quatech2: fix control-request directions (Torez Smith) [1975985]
+- usb: typec: tcpci: Make symbol 'tcpci_apply_rc' static (Torez Smith) [1975985]
+- USB: usbfs: remove double evaluation of usb_sndctrlpipe() (Torez Smith) [1975985]
+- usb: typec: tcpm: Respond Not_Supported if no snk_vdo (Torez Smith) [1975985]
+- usb: typec: tcpm: Properly interrupt VDM AMS (Torez Smith) [1975985]
+- media: lmedm04: delete lme2510_get_adapter_count() (Torez Smith) [1975985]
+- media: dvb-usb: fix wrong definition (Torez Smith) [1975985]
+- USB: core: WARN if pipe direction != setup packet direction (Torez Smith) [1975985]
+- USB: trancevibrator: fix control-request direction (Torez Smith) [1975985]
+- USB: dwc2: drop irq-flags initialisations (Torez Smith) [1975985]
+- usb: typec: tcpci: Implement callback for apply_rc (Torez Smith) [1975985]
+- usb: typec: tcpm: Move TCPC to APPLY_RC state during PR_SWAP (Torez Smith) [1975985]
+- usb: typec: tcpm: Refactor logic to enable/disable auto vbus dicharge (Torez Smith) [1975985]
+- usb: typec: tcpm: Fix up PR_SWAP when vsafe0v is signalled (Torez Smith) [1975985]
+- usb: atm: cxacru: Fix typo in comment (Torez Smith) [1975985]
+- usb: isp1760: remove platform data struct and code (Torez Smith) [1975985]
+- usb: fix spelling mistakes in header files (Torez Smith) [1975985]
+- USB: serial: digi_acceleport: add chars_in_buffer locking (Torez Smith) [1975985]
+- USB: serial: digi_acceleport: reduce chars_in_buffer over-reporting (Torez Smith) [1975985]
+- usb: Restore the usb_header label (Torez Smith) [1975985]
+- usb: typec: tcpm: Use LE to CPU conversion when accessing msg->header (Torez Smith) [1975985]
+- usb: typec: mux: Fix matching with typec_altmode_desc (Torez Smith) [1975985]
+- misc/uss720: fix memory leak in uss720_probe (Torez Smith) [1975985]
+- usb: dwc3: gadget: Properly track pending and queued SG (Torez Smith) [1975985]
+- USB: usbfs: Don't WARN about excessively large memory allocations (Torez Smith) [1975985]
+- usb: common: usb-conn-gpio: use dev_err_probe() to print log (Torez Smith) [1975985]
+- usb: common: usb-conn-gpio: fix NULL pointer dereference of charger (Torez Smith) [1975985]
+- Revert "USB: Add reset-resume quirk for WD19's Realtek Hub" (Torez Smith) [1975985]
+- USB: Verify the port status when timeout happens during port suspend (Torez Smith) [1975985]
+- usb: typec: wcove: Fx wrong kernel doc format (Torez Smith) [1975985]
+- media: pvrusb2: fix warning in pvr2_i2c_core_done (Torez Smith) [1975985]
+- media: rtl2832_sdr/vivid/airspy/hackrf/msi2500: drop memset of fmt.sdr.reserved (Torez Smith) [1975985]
+- media: cpia2: fix memory leak in cpia2_usb_probe (Torez Smith) [1975985]
+- media: s2255drv: remove redundant assignment to variable field (Torez Smith) [1975985]
+- media: gspca: properly check for errors in po1030_probe() (Torez Smith) [1975985]
+- Revert "media: gspca: Check the return value of write_bridge for timeout" (Torez Smith) [1975985]
+- media: gspca: mt9m111: Check write_bridge for timeout (Torez Smith) [1975985]
+- Revert "media: gspca: mt9m111: Check write_bridge for timeout" (Torez Smith) [1975985]
+- Revert "media: usb: gspca: add a missed check for goto_low_power" (Torez Smith) [1975985]
+- usb: core: hcd: use map_urb_for_dma for single step set feature urb (Torez Smith) [1975985]
+- usb: dwc3: pci: Fix DEFINE for Intel Elkhart Lake (Torez Smith) [1975985]
+- usb: core: hub: fix race condition about TRSMRCY of resume (Torez Smith) [1975985]
+- usb: typec: tcpm: Fix SINK_DISCOVERY current limit for Rp-default (Torez Smith) [1975985]
+- xhci: Add reset resume quirk for AMD xhci controller. (Torez Smith) [1975985]
+- usb: xhci: Increase timeout for HC halt (Torez Smith) [1975985]
+- xhci: Do not use GFP_KERNEL in (potentially) atomic context (Torez Smith) [1975985]
+- xhci: Fix giving back cancelled URBs even if halted endpoint can't reset (Torez Smith) [1975985]
+- xhci-pci: Allow host runtime PM as default for Intel Alder Lake xHCI (Torez Smith) [1975985]
+- usb: typec: tcpm: Don't block probing of consumers of "connector" nodes (Torez Smith) [1975985]
+- usb: xhci-mtk: use first-fit for LS/FS (Torez Smith) [1975985]
+- usb: xhci-mtk: remove unnecessary assignments in periodic TT scheduler (Torez Smith) [1975985]
+- usb: xhci-mtk: remove unnecessary setting of has_ippc (Torez Smith) [1975985]
+- usb: xhci-mtk: use bitfield instead of bool (Torez Smith) [1975985]
+- usb: typec: tcpm: Fix wrong handling for Not_Supported in VDM AMS (Torez Smith) [1975985]
+- usb: typec: tcpm: Send DISCOVER_IDENTITY from dedicated work (Torez Smith) [1975985]
+- usb: typec: ucsi: Retrieve all the PDOs instead of just the first 4 (Torez Smith) [1975985]
+- usb: dwc3: omap: improve extcon initialization (Torez Smith) [1975985]
+- usb: typec: ucsi: Put fwnode in any case during ->probe() (Torez Smith) [1975985]
+- usb: dwc2: Remove obsolete MODULE_ constants from platform.c (Torez Smith) [1975985]
+- usb: dwc3: imx8mp: fix error return code in dwc3_imx8mp_probe() (Torez Smith) [1975985]
+- usb: dwc3: imx8mp: detect dwc3 core node via compatible string (Torez Smith) [1975985]
+- usb: dwc3: gadget: Return success always for kick transfer in ep queue (Torez Smith) [1975985]
+- usb: dwc3: gadget: Free gadget structure only after freeing endpoints (Torez Smith) [1975985]
+- usb: dwc2: Fix gadget DMA unmap direction (Torez Smith) [1975985]
+- usb: dwc3: gadget: Rename EOPF event macros to Suspend (Torez Smith) [1975985]
+- usb: dwc3: gadget: Enable suspend events (Torez Smith) [1975985]
+- usb: Restore the reference to ch9.h (Torez Smith) [1975985]
+- usb: dwc3: core: Add missing GHWPARAMS9 doc (Torez Smith) [1975985]
+- usb: dwc3: pci: Enable usb2-gadget-lpm-disable for Intel Merrifield (Torez Smith) [1975985]
+- cdc-wdm: untangle a circular dependency between callback and softint (Torez Smith) [1975985]
+- usb: dwc3: remove repeated setting of current_dr_role (Torez Smith) [1975985]
+- USB: serial: pl2303: add device id for ADLINK ND-6530 GC (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: add startech.com device id (Torez Smith) [1975985]
+- USB: serial: option: add Telit LE910-S1 compositions 0x7010, 0x7011 (Torez Smith) [1975985]
+- USB: serial: ftdi_sio: add IDs for IDS GmbH Products (Torez Smith) [1975985]
+- usb: Fix up movement of USB core kerneldoc location (Torez Smith) [1975985]
+- usb: dwc3: gadget: Handle DEV_TXF_FLUSH_BYPASS capability (Torez Smith) [1975985]
+- usb: dwc3: Capture new capability register GHWPARAMS9 (Torez Smith) [1975985]
+- usb: dwc3: core: Do core softreset when switch mode (Torez Smith) [1975985]
+- usb: dwc2: Get rid of useless error checks in suspend interrupt (Torez Smith) [1975985]
+- usb: dwc2: Update dwc2_handle_usb_suspend_intr function. (Torez Smith) [1975985]
+- usb: dwc2: Add exit hibernation mode before removing drive (Torez Smith) [1975985]
+- usb: dwc2: Add hibernation exiting flow by system resume (Torez Smith) [1975985]
+- usb: dwc2: Add hibernation entering flow by system suspend (Torez Smith) [1975985]
+- usb: dwc2: Allow exit hibernation in urb enqueue (Torez Smith) [1975985]
+- usb: dwc2: Move exit hibernation to dwc2_port_resume() function (Torez Smith) [1975985]
+- usb: dwc2: Move enter hibernation to dwc2_port_suspend() function (Torez Smith) [1975985]
+- usb: dwc2: Clear GINTSTS_RESTOREDONE bit after restore is generated. (Torez Smith) [1975985]
+- usb: dwc2: Clear fifo_map when resetting core. (Torez Smith) [1975985]
+- usb: dwc2: Allow exiting hibernation from gpwrdn rst detect (Torez Smith) [1975985]
+- usb: dwc2: Fix hibernation between host and device modes. (Torez Smith) [1975985]
+- usb: dwc2: Fix host mode hibernation exit with remote wakeup flow. (Torez Smith) [1975985]
+- usb: dwc2: Reset DEVADDR after exiting gadget hibernation. (Torez Smith) [1975985]
+- usb: dwc2: Update exit hibernation when port reset is asserted (Torez Smith) [1975985]
+- usb: dwc3: gadget: Remove FS bInterval_m1 limitation (Torez Smith) [1975985]
+- usb: xhci-mtk: remove bus status check (Torez Smith) [1975985]
+- usb: dwc2: Enable RPi in ACPI mode (Torez Smith) [1975985]
+- USB: Add reset-resume quirk for WD19's Realtek Hub (Torez Smith) [1975985]
+- usb: storage: datafab: remove redundant assignment of variable result (Torez Smith) [1975985]
+- usb: misc: adutux: fix whitespace coding style issue (Torez Smith) [1975985]
+- usb: dwc3: gadget: Fix START_TRANSFER link state check (Torez Smith) [1975985]
+- usb: typec: tcpm: Fix error while calculating PPS out values (Torez Smith) [1975985]
+- usb: xhci-mtk: remove unused members (Torez Smith) [1975985]
+- usb: xhci-mtk: use clock bulk to get clocks (Torez Smith) [1975985]
+- usb: xhci-mtk: add support runtime PM (Torez Smith) [1975985]
+- usb: xhci-mtk: check return value in suspend/resume hooks (Torez Smith) [1975985]
+- usb: typec: tcpm: Allow slow charging loops to comply to pSnkStby (Torez Smith) [1975985]
+- usb: typec: tcpm: Honour pSnkStdby requirement during negotiation (Torez Smith) [1975985]
+- usb: dwc3: gadget: Check for disabled LPM quirk (Torez Smith) [1975985]
+- usb: dwc3: core: Add shutdown callback for dwc3 (Torez Smith) [1975985]
+- usb: dwc3: gadget: Ignore Packet Pending bit (Torez Smith) [1975985]
+- USB: Add LPM quirk for Lenovo ThinkPad USB-C Dock Gen2 Ethernet (Torez Smith) [1975985]
+- usb: typec: silence a static checker warning (Torez Smith) [1975985]
+- USB: cdc-acm: add more Maxlinear/Exar models to ignore list (Torez Smith) [1975985]
+- USB: serial: xr: add copyright notice (Torez Smith) [1975985]
+- USB: serial: xr: reset FIFOs on open (Torez Smith) [1975985]
+- USB: serial: xr: add support for XR22801, XR22802, XR22804 (Torez Smith) [1975985]
+- USB: serial: xr: add support for XR21B1411 (Torez Smith) [1975985]
+- USB: serial: xr: add support for XR21B1421, XR21B1422 and XR21B1424 (Torez Smith) [1975985]
+- USB: serial: xr: add type abstraction (Torez Smith) [1975985]
+- USB: serial: xr: drop type prefix from shared defines (Torez Smith) [1975985]
+- USB: serial: xr: move pin configuration to probe (Torez Smith) [1975985]
+- USB: serial: xr: rename GPIO-pin defines (Torez Smith) [1975985]
+- USB: serial: xr: rename GPIO-mode defines (Torez Smith) [1975985]
+- USB: serial: xr: add support for XR21V1412 and XR21V1414 (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: clean up termios CSIZE handling (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: use kernel types consistently (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: add port-command helpers (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: clean up vendor-request helpers (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: drop unnecessary packed attributes (Torez Smith) [1975985]
+- USB: serial: io_ti: drop unnecessary packed attributes (Torez Smith) [1975985]
+- USB: serial: io_ti: use kernel types consistently (Torez Smith) [1975985]
+- USB: serial: io_ti: add read-port-command helper (Torez Smith) [1975985]
+- USB: serial: io_ti: add send-port-command helper (Torez Smith) [1975985]
+- USB: serial: io_ti: clean up vendor-request helpers (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: drop drain delay for 3410 (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: reduce drain delay to one char (Torez Smith) [1975985]
+- USB: serial: io_ti: document reason for drain delay (Torez Smith) [1975985]
+- usb: dwc2: Add exit clock gating before removing driver (Torez Smith) [1975985]
+- usb: dwc2: Add clock gating exiting flow by system resume (Torez Smith) [1975985]
+- usb: dwc2: Add clock gating entering flow by system suspend (Torez Smith) [1975985]
+- usb: dwc2: Allow exit clock gating in urb enqueue (Torez Smith) [1975985]
+- usb: dwc2: Update exit clock gating when port is resumed (Torez Smith) [1975985]
+- usb: dwc2: Update enter clock gating when port is suspended (Torez Smith) [1975985]
+- usb: dwc2: Add exit clock gating when port reset is asserted (Torez Smith) [1975985]
+- usb: dwc2: Add exit clock gating from session request interrupt (Torez Smith) [1975985]
+- usb: dwc2: Add exit clock gating from wakeup interrupt (Torez Smith) [1975985]
+- usb: dwc2: Allow entering clock gating from USB_SUSPEND interrupt (Torez Smith) [1975985]
+- usb: dwc2: Add host clock gating support functions (Torez Smith) [1975985]
+- usb: dwc2: Add device clock gating support functions (Torez Smith) [1975985]
+- Revert "usb: Link the ports to the connectors they are attached to" (Torez Smith) [1975985]
+- USB: serial: cp210x: add gpio-configuration debug printk (Torez Smith) [1975985]
+- USB: serial: cp210x: provide gpio valid mask (Torez Smith) [1975985]
+- usb: dwc3: qcom: Detect DWC3 DT-nodes using compatible string (Torez Smith) [1975985]
+- usb: dwc3: qcom: Remove redundant dev_err call in dwc3_qcom_probe() (Torez Smith) [1975985]
+- usb: core: reduce power-on-good delay time of root hub (Torez Smith) [1975985]
+- USB:ehci:fix Kunpeng920 ehci hardware problem (Torez Smith) [1975985]
+- USB: serial: do not use tty class device for debugging (Torez Smith) [1975985]
+- USB: cdc-acm: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: cdc-acm: fix unprivileged TIOCCSERIAL (Torez Smith) [1975985]
+- Revert "USB: cdc-acm: fix rounding error in TIOCSSERIAL" (Torez Smith) [1975985]
+- usb: typec: tcpm: Add support for altmodes (Torez Smith) [1975985]
+- usb: typec: Add typec_port_register_altmodes() (Torez Smith) [1975985]
+- usb: roles: Call try_module_get() from usb_role_switch_find_by_fwnode() (Torez Smith) [1975985]
+- usb: dwc3: xilinx: Remove the extra freeing of clocks (Torez Smith) [1975985]
+- usb: dwc3: Resolve kernel-doc warning for Xilinx DWC3 driver (Torez Smith) [1975985]
+- usb: core: hub: Fix PM reference leak in usb_port_resume() (Torez Smith) [1975985]
+- usb: dwc3: pci: add support for the Intel Alder Lake-M (Torez Smith) [1975985]
+- usb: typec: Link all ports during connector registration (Torez Smith) [1975985]
+- usb: Iterator for ports (Torez Smith) [1975985]
+- usb: Link the ports to the connectors they are attached to (Torez Smith) [1975985]
+- usb: typec: Port mapping utility (Torez Smith) [1975985]
+- usb: typec: tcpm: update power supply once partner accepts (Torez Smith) [1975985]
+- usb: typec: tcpm: Address incorrect values of tcpm psy for pps supply (Torez Smith) [1975985]
+- usb: typec: tcpm: Address incorrect values of tcpm psy for fixed supply (Torez Smith) [1975985]
+- usb: dwc2: Add exit partial power down before removing driver (Torez Smith) [1975985]
+- usb: dwc2: Fix partial power down exiting by system resume (Torez Smith) [1975985]
+- usb: dwc2: Update partial power down entering by system suspend (Torez Smith) [1975985]
+- usb: dwc2: Fix session request interrupt handler (Torez Smith) [1975985]
+- usb: dwc2: Allow exit partial power down in urb enqueue (Torez Smith) [1975985]
+- usb: dwc2: Add part. power down exit from dwc2_conn_id_status_change(). (Torez Smith) [1975985]
+- usb: dwc2: Add exit partial power down when port reset is asserted (Torez Smith) [1975985]
+- usb: dwc2: Add exit partial power down when port is resumed (Torez Smith) [1975985]
+- usb: dwc2: Add enter partial power down when port is suspended (Torez Smith) [1975985]
+- usb: dwc2: Update port suspend/resume function definitions. (Torez Smith) [1975985]
+- usb: dwc2: Add partial power down exit flow in wakeup intr. (Torez Smith) [1975985]
+- usb: dwc2: Update enter and exit partial power down functions (Torez Smith) [1975985]
+- usb: dwc2: Add host partial power down functions (Torez Smith) [1975985]
+- usb: dwc2: Add device partial power down functions (Torez Smith) [1975985]
+- media: gscpa/stv06xx: fix memory leak (Torez Smith) [1975985]
+- media: gspca: Fix memory leak in probe (Torez Smith) [1975985]
+- media: dvb-usb: avoid -Wempty-body warnings (Torez Smith) [1975985]
+- media: flexcop: avoid -Wempty-body warning (Torez Smith) [1975985]
+- media: dvb-usb: fix memory leak in dvb_usb_adapter_init (Torez Smith) [1975985]
+- media: dvb-usb-remote: fix dvb_usb_nec_rc_key_to_event type mismatch (Torez Smith) [1975985]
+- thunderbolt: Add details to router uevent (Torez Smith) [1975985]
+- USB: serial: io_edgeport: drop unused definitions (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: switch to 30-second closing wait (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: drop closing_wait module parameter (Torez Smith) [1975985]
+- USB: serial: io_ti: switch to 30-second closing wait (Torez Smith) [1975985]
+- USB: serial: io_ti: drop closing_wait module parameter (Torez Smith) [1975985]
+- USB: serial: ftdi_sio: clean up TIOCSSERIAL (Torez Smith) [1975985]
+- USB: serial: ftdi_sio: simplify TIOCGSERIAL permission check (Torez Smith) [1975985]
+- USB: serial: ftdi_sio: ignore baud_base changes (Torez Smith) [1975985]
+- USB: serial: stop reporting legacy UART types (Torez Smith) [1975985]
+- USB: serial: add generic support for TIOCSSERIAL (Torez Smith) [1975985]
+- USB: serial: fix return value for unsupported ioctls (Torez Smith) [1975985]
+- USB: serial: whiteheat: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: usb_wwan: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: usb_wwan: fix unprivileged TIOCCSERIAL (Torez Smith) [1975985]
+- USB: serial: usb_wwan: fix TIOCSSERIAL jiffies conversions (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: fix TIOCSSERIAL permission check (Torez Smith) [1975985]
+- USB: serial: ti_usb_3410_5052: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: ssu100: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: quatech2: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: pl2303: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: opticon: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: mos7840: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: mos7720: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: io_ti: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: io_edgeport: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: ftdi_sio: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- USB: serial: ark3116: fix TIOCGSERIAL implementation (Torez Smith) [1975985]
+- media: em28xx/em28xx.h: Remove duplicate struct declaration (Torez Smith) [1975985]
+- media: cx231xx/cx231xx.h: Remove repeated struct declaration (Torez Smith) [1975985]
+- xhci: prevent double-fetch of transfer and transfer event TRBs (Torez Smith) [1975985]
+- xhci: fix potential array out of bounds with several interrupters (Torez Smith) [1975985]
+- xhci: check control context is valid before dereferencing it. (Torez Smith) [1975985]
+- xhci: check port array allocation was successful before dereferencing it (Torez Smith) [1975985]
+- media: em28xx: fix memory leak (Torez Smith) [1975985]
+- usb: typec: Declare the typec_class static (Torez Smith) [1975985]
+- usb: typec: Organize the private headers properly (Torez Smith) [1975985]
+- usb: xhci-mtk: support quirk to disable usb2 lpm (Torez Smith) [1975985]
+- usb: xhci-mtk: fix oops when unbind driver (Torez Smith) [1975985]
+- usb: xhci-mtk: fix wrong remainder of bandwidth budget (Torez Smith) [1975985]
+- usb: dwc2: delete duplicate word in the comment (Torez Smith) [1975985]
+- usb: dwc2: add parenthess and space around * (Torez Smith) [1975985]
+- usb: dwc3: add cancelled reasons for dwc3 requests (Torez Smith) [1975985]
+- usb: dwc3: fix incorrect kernel-doc comment syntax in files (Torez Smith) [1975985]
+- usb: dwc3: st: fix incorrect kernel-doc comment syntax in file (Torez Smith) [1975985]
+- usb: dwc3: imx8mp: fix incorrect kernel-doc comment syntax (Torez Smith) [1975985]
+- USB: serial: xr: claim both interfaces (Torez Smith) [1975985]
+- USB: serial: add support for multi-interface functions (Torez Smith) [1975985]
+- USB: serial: refactor endpoint classification (Torez Smith) [1975985]
+- USB: serial: drop unused suspending flag (Torez Smith) [1975985]
+- USB: serial: xr: fix CSIZE handling (Torez Smith) [1975985]
+- USB: serial: iuu_phoenix: remove redundant variable 'error' (Torez Smith) [1975985]
+- usb: dwc3: Create helper function getting MDWIDTH (Torez Smith) [1975985]
+- usb: xhci-mtk: remove MODULE_ALIAS (Torez Smith) [1975985]
+- usb: xhci-mtk: drop CONFIG_OF (Torez Smith) [1975985]
+- usb: misc: usbsevseg: update to use usb_control_msg_send() (Torez Smith) [1975985]
+- usb: misc: ezusb: update to use usb_control_msg_send() (Torez Smith) [1975985]
+- usb: dwc3: gadget: modify the scale in vbus_draw callback (Torez Smith) [1975985]
+- usb: xhci-mtk: add support ip-sleep wakeup for mT8192 (Torez Smith) [1975985]
+- usb: xhci-mtk: support ip-sleep wakeup for MT8183 (Torez Smith) [1975985]
+- usb: dwc3: trace: Print register read and write offset (Torez Smith) [1975985]
+- usb: typec: tcpci_maxim: Make symbol 'max_tcpci_tcpci_write_table' static (Torez Smith) [1975985]
+- usbip: tools: add usage of device mode in usbip_list.c (Torez Smith) [1975985]
+- usbip: tools: add options and examples in man page related to device mode (Torez Smith) [1975985]
+- tools: usbip: list.h: fix kernel-doc for list_del() (Torez Smith) [1975985]
+- xhci: Fix uninitialized errors (Torez Smith) [1975985]
+- usb: typec: Fix a typo (Torez Smith) [1975985]
+- usb: xhci: Remove unused function (Torez Smith) [1975985]
+- usb: xhci: Rewrite xhci_create_usb3_bos_desc() (Torez Smith) [1975985]
+- usb: xhci: Fix port minor revision (Torez Smith) [1975985]
+- usb: xhci: Init root hub SSP rate (Torez Smith) [1975985]
+- thunderbolt: Unlock on error path in tb_domain_add() (Torez Smith) [1975985]
+- usb: core: sysfs: Check for SSP rate in speed attr (Torez Smith) [1975985]
+- usb: core: hub: Print speed name based on ssp rate (Torez Smith) [1975985]
+- usb: core: hub: Remove port_speed_is_ssp() (Torez Smith) [1975985]
+- usb: core: Track SuperSpeed Plus GenXxY (Torez Smith) [1975985]
+- usb: dwc3: gadget: Avoid continuing preparing TRBs during teardown (Torez Smith) [1975985]
+- USB: xhci: drop workaround for forced irq threading (Torez Smith) [1975985]
+- usb: dwc3: Add driver for Xilinx platforms (Torez Smith) [1975985]
+- USB: core: rename usb_driver_claim_interface() data parameter (Torez Smith) [1975985]
+- USB: core: drop outdated interface-binding comment (Torez Smith) [1975985]
+- media: media/usb: fix kernel-doc header issues (Torez Smith) [1975985]
+- media: gspca/sq905.c: fix uninitialized variable (Torez Smith) [1975985]
+- media: media/usb/gspca/w996Xcf.c: /** -> /* (Torez Smith) [1975985]
+- media: flexcop-usb: delete unneeded return (Torez Smith) [1975985]
+- thunderbolt: Add KUnit tests for DMA tunnels (Torez Smith) [1975985]
+- thunderbolt: Add support for USB4 DROM (Torez Smith) [1975985]
+- thunderbolt: Check quirks in tb_switch_add() (Torez Smith) [1975985]
+- thunderbolt: Add KUnit tests for XDomain properties (Torez Smith) [1975985]
+- thunderbolt: Drop unused tb_port_set_initial_credits() (Torez Smith) [1975985]
+- thunderbolt: Use dedicated flow control for DMA tunnels (Torez Smith) [1975985]
+- thunderbolt: Allow multiple DMA tunnels over a single XDomain connection (Torez Smith) [1975985]
+- thunderbolt: Add support for maxhopid XDomain property (Torez Smith) [1975985]
+- thunderbolt: Add tb_property_copy_dir() (Torez Smith) [1975985]
+- thunderbolt: Align XDomain protocol timeouts with the spec (Torez Smith) [1975985]
+- thunderbolt: Use pseudo-random number as initial property block generation (Torez Smith) [1975985]
+- thunderbolt: Do not re-establish XDomain DMA paths automatically (Torez Smith) [1975985]
+- thunderbolt: Decrease control channel timeout for software connection manager (Torez Smith) [1975985]
+- thunderbolt: Disable retry logic for intra-domain control packets (Torez Smith) [1975985]
+- thunderbolt: Do not pass timeout for tb_cfg_reset() (Torez Smith) [1975985]
+- thunderbolt: Add more logging to XDomain connections (Torez Smith) [1975985]
+- usb: typec: tcpm: PD3.0 sinks can send Discover Identity even in device mode (Torez Smith) [1975985]
+- drivers: usb: Fix a typo in dwc3-qcom.c (Torez Smith) [1975985]
+- usb: webcam: Invalid size of Processing Unit Descriptor (Torez Smith) [1975985]
+- usb: typec: tcpci: Added few missing TCPCI register definitions (Torez Smith) [1975985]
+- USB: serial: pl2303: TA & TB alternate divider with non-standard baud rates (Torez Smith) [1975985]
+- USB: serial: pl2303: add device-type names (Torez Smith) [1975985]
+- USB: serial: pl2303: tighten type HXN (G) detection (Torez Smith) [1975985]
+- USB: serial: pl2303: rename legacy PL2303H type (Torez Smith) [1975985]
+- USB: serial: pl2303: amend and tighten type detection (Torez Smith) [1975985]
+- USB: serial: pl2303: clean up type detection (Torez Smith) [1975985]
+- USB: serial: io_edgeport: drop unneeded forward declarations (Torez Smith) [1975985]
+- USB: serial: keyspan: drop unneeded forward declarations (Torez Smith) [1975985]
+- usb: typec: tipd: Separate file for tracepoint creation (Torez Smith) [1975985]
+- usb: typec: tps6598x: Move the driver under its own subdirectory (Torez Smith) [1975985]
+- usb: typec: tps6598x: Fix tracepoint header file (Torez Smith) [1975985]
+- usb: typec: tcpci: Refactor tcpc_presenting_cc1_rd macro (Torez Smith) [1975985]
+- thunderbolt: debugfs: Show all accessible dwords (Torez Smith) [1975985]
+- media: fix incorrect kernel doc usages (Torez Smith) [1975985]
+- media: drivers/media/usb: fix memory leak in zr364xx_probe (Torez Smith) [1975985]
+- media: anysee: simplify the return expression of anysee_ci_* function (Torez Smith) [1975985]
+- media: media/usb:Remove superfluous "breaks" in the ttusb_dec.c (Torez Smith) [1975985]
+- media: media/usb:Remove superfluous "breaks" (Torez Smith) [1975985]
+- media: usbtv: constify static structs (Torez Smith) [1975985]
+- media: em28xx: Add pid for bulk revision of Hauppauge 461eV2 (Torez Smith) [1975985]
+- media: em28xx: Add pid for bulk revision of Hauppauge 461e (Torez Smith) [1975985]
+- media: dvb-usb: Fix use-after-free access (Torez Smith) [1975985]
+- media: dvb-usb: Fix memory leak at error in dvb_usb_device_init() (Torez Smith) [1975985]
+- media: dvb-usb: make dvb_usb_device_properties const (Torez Smith) [1975985]
+- usb: typec: tps6598x: Fix return value check in tps6598x_probe() (Torez Smith) [1975985]
+- usb: typec: stusb160x: fix return value check in stusb160x_probe() (Torez Smith) [1975985]
+- usb: typec: tcpm: turn tcpm_ams_finish into void function (Torez Smith) [1975985]
+- usb: typec: tcpci: Check ROLE_CONTROL while interpreting CC_STATUS (Torez Smith) [1975985]
+- usb: common: move function's kerneldoc next to its definition (Torez Smith) [1975985]
+- usb: xhci-mtk: print debug info of endpoint interval (Torez Smith) [1975985]
+- usb: common: add function to get interval expressed in us unit (Torez Smith) [1975985]
+- usb: xhci-mtk: support to build xhci-mtk-hcd.ko (Torez Smith) [1975985]
+- usb: xhci-mtk: remove declaration of xhci_mtk_setup() (Torez Smith) [1975985]
+- usb: xhci-mtk: add some schedule error number (Torez Smith) [1975985]
+- usb: xhci-mtk: rebuild the way to get bandwidth domain (Torez Smith) [1975985]
+- usb: xhci-mtk: use @tt_info to check the FS/LS device is under a HS hub (Torez Smith) [1975985]
+- usb: xhci-mtk: add a member @speed in mu3h_sch_ep_info struct (Torez Smith) [1975985]
+- usb: xhci-mtk: use clear type instead of void (Torez Smith) [1975985]
+- usb: xhci-mtk: remove unnecessary members of mu3h_sch_tt struct (Torez Smith) [1975985]
+- usb: xhci-mtk: add a function to get bandwidth boundary (Torez Smith) [1975985]
+- usb: xhci-mtk: add a function to (un)load bandwidth info (Torez Smith) [1975985]
+- usb: xhci-mtk: use @sch_tt to check whether need do TT schedule (Torez Smith) [1975985]
+- usb: xhci-mtk: add only one extra CS for FS/LS INTR (Torez Smith) [1975985]
+- usb: xhci-mtk: get the microframe boundary for ESIT (Torez Smith) [1975985]
+- usb: dwc3: Fix dereferencing of null dwc->usb_psy (Torez Smith) [1975985]
+- media: uvc: don't do DMA on stack (Torez Smith) [1975985]
+- usb: dwc3: document usb_psy in struct dwc3 (Torez Smith) [1975985]
+- media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K (Torez Smith) [1975985]
+- USB: typec: tcpm: create debugfs subdir for the driver (Torez Smith) [1975985]
+- usb: dwc2: Add STM32 related debugfs entries (Torez Smith) [1975985]
+- media: uvcvideo: Support devices that report an OT as an entity source (Torez Smith) [1975985]
+- media: uvcvideo: Fix XU id print in forward scan (Torez Smith) [1975985]
+- USB: typec: fusb302: create debugfs subdir for the driver (Torez Smith) [1975985]
+- media: uvcvideo: Use dma_alloc_noncontiguous API (Torez Smith) [1975985]
+- USB: host: uhci: remove dentry pointer for debugfs (Torez Smith) [1975985]
+- media: uvc: strncpy -> strscpy (Torez Smith) [1975985]
+- media: uvcvideo: Rename debug functions (Torez Smith) [1975985]
+- media: uvcvideo: use dev_printk() for uvc_trace() (Torez Smith) [1975985]
+- media: uvcvideo: New macro uvc_trace_cont (Torez Smith) [1975985]
+- USB: core: no need to save usb_devices_root (Torez Smith) [1975985]
+- media: uvcvideo: Use dev_ printk aliases (Torez Smith) [1975985]
+- usb: dwc3: add an alternate path in vbus_draw callback (Torez Smith) [1975985]
+- media: uvcvideo: Add Privacy control based on EXT_GPIO (Torez Smith) [1975985]
+- usb: dwc3: add a power supply for current control (Torez Smith) [1975985]
+- media: uvcvideo: Implement UVC_EXT_GPIO_UNIT (Torez Smith) [1975985]
+- usb: typec: tps6598x: Add trace event for data status (Torez Smith) [1975985]
+- media: uvcvideo: Allow entity-defined get_info and get_cur (Torez Smith) [1975985]
+- media: uvcvideo: Provide sync and async uvc_ctrl_status_event (Torez Smith) [1975985]
+- usb: typec: tps6598x: Add trace event for power status register (Torez Smith) [1975985]
+- media: uvcvideo: Allow entities with no pads (Torez Smith) [1975985]
+- usb: typec: tps6598x: Add trace event for status register (Torez Smith) [1975985]
+- media: uvcvideo: Allow extra entities (Torez Smith) [1975985]
+- usb: typec: tps6598x: Add trace event for IRQ events (Torez Smith) [1975985]
+- tty: make everyone's write_room return >= 0 (Torez Smith) [1975985]
+- media: uvcvideo: Move guid to entity (Torez Smith) [1975985]
+- USB: serial: xr: fix NULL-deref on disconnect (Torez Smith) [1975985]
+- media: uvcvideo: Accept invalid bFormatIndex and bFrameIndex values (Torez Smith) [1975985]
+- thunderbolt: Drop unused functions tb_switch_is_[ice|tiger]_lake() (Torez Smith) [1975985]
+- media: uvcvideo: Force UVC version to 1.0a for 1bcf:0b40 (Torez Smith) [1975985]
+- thunderbolt: debugfs: Handle fail reading block (Torez Smith) [1975985]
+- media: uvcvideo: Use DIV_ROUND_CLOSEST directly to make it readable (Torez Smith) [1975985]
+- media: usb: uvc: no need to check return value of debugfs_create functions (Torez Smith) [1975985]
+- media: uvcvideo: Convey full colorspace information to V4L2 (Torez Smith) [1975985]
+- driver core: fw_devlink: Detect supplier devices that will never be added (Torez Smith) [1975985]
+- media: uvcvideo: Ensure all probed info is returned to v4l2 (Torez Smith) [1975985]
+- media: uvcvideo: Silence shift-out-of-bounds warning (Torez Smith) [1975985]
+- media: uvcvideo: Fix dereference of out-of-bound list iterator (Torez Smith) [1975985]
+- media: zr364xx: fix memory leaks in probe() (Torez Smith) [1975985]
+- media: uvcvideo: Cleanup uvc_ctrl_add_info() error handling (Torez Smith) [1975985]
+- USB: serial: xr: fix B0 handling (Torez Smith) [1975985]
+- media: uvcvideo: Fix uvc_ctrl_fixup_xu_info() not having any effect (Torez Smith) [1975985]
+- USB: serial: xr: fix pin configuration (Torez Smith) [1975985]
+- media: uvcvideo: Replace HTTP links with HTTPS ones (Torez Smith) [1975985]
+- USB: serial: xr: fix gpio-mode handling (Torez Smith) [1975985]
+- media: uvcvideo: Set media controller entity functions (Torez Smith) [1975985]
+- USB: serial: xr: simplify line-speed logic (Torez Smith) [1975985]
+- media: uvcvideo: Add mapping for HEVC payloads (Torez Smith) [1975985]
+- USB: serial: xr: clean up line-settings handling (Torez Smith) [1975985]
+- media: uvcvideo: Fix annotation for uvc_video_clock_update() (Torez Smith) [1975985]
+- USB: serial: xr: document vendor-request recipient (Torez Smith) [1975985]
+- USB: serial: xr: use termios flag helpers (Torez Smith) [1975985]
+- USB: serial: xr: use subsystem usb_device at probe (Torez Smith) [1975985]
+- media: media/usb: rename VFL_TYPE_GRABBER to _VIDEO (Torez Smith) [1975985]
+- USB: serial: xr: fix interface leak at disconnect (Torez Smith) [1975985]
+- media: rename VFL_TYPE_GRABBER to _VIDEO (Torez Smith) [1975985]
+- USB: serial: xr: fix NULL-deref at probe (Torez Smith) [1975985]
+- USB: cdc-acm: ignore Exar XR21V141X when serial driver is built (Torez Smith) [1975985]
+- media: uvcvideo: drop error check of debugfs_create_dir() (Torez Smith) [1975985]
+- USB: serial: add MaxLinear/Exar USB to Serial driver (Torez Smith) [1975985]
+- media: uvcvideo: Fix a typo in UVC_METATADA_BUF_SIZE (Torez Smith) [1975985]
+- media: uvcvideo: Fix error path in control parsing failure (Torez Smith) [1975985]
+- media: drivers/media: don't set pix->priv = 0 (Torez Smith) [1975985]
+- media: Bulk remove BUG_ON(in_interrupt()) (Torez Smith) [1975985]
+- media: zr364xx: propagate errors from zr364xx_start_readpipe() (Torez Smith) [1975985]
+- media: uvcvideo: Add a D4M camera description (Torez Smith) [1975985]
+- media: em28xx: Enable Hauppauge 461e rev2 (Torez Smith) [1975985]
+- crypto: qat - fix definition of ring reset results (Vladis Dronov) [1960307]
+- crypto: qat - add support for compression for 4xxx (Vladis Dronov) [1960307]
+- crypto: qat - allow detection of dc capabilities for 4xxx (Vladis Dronov) [1960307]
+- crypto: qat - add PFVF support to enable the reset of ring pairs (Vladis Dronov) [1960307]
+- crypto: qat - add PFVF support to the GEN4 host driver (Vladis Dronov) [1960307]
+- crypto: qat - config VFs based on ring-to-svc mapping (Vladis Dronov) [1960307]
+- crypto: qat - exchange ring-to-service mappings over PFVF (Vladis Dronov) [1960307]
+- crypto: qat - support fast ACKs in the PFVF protocol (Vladis Dronov) [1960307]
+- crypto: qat - exchange device capabilities over PFVF (Vladis Dronov) [1960307]
+- crypto: qat - introduce support for PFVF block messages (Vladis Dronov) [1960307]
+- crypto: qat - store the ring-to-service mapping (Vladis Dronov) [1960307]
+- crypto: qat - store the PFVF protocol version of the endpoints (Vladis Dronov) [1960307]
+- crypto: qat - improve the ACK timings in PFVF send (Vladis Dronov) [1960307]
+- crypto: qat - leverage read_poll_timeout in PFVF send (Vladis Dronov) [1960307]
+- crypto: qat - leverage bitfield.h utils for PFVF messages (Vladis Dronov) [1960307]
+- crypto: qat - abstract PFVF messages with struct pfvf_message (Vladis Dronov) [1960307]
+- crypto: qat - set PFVF_MSGORIGIN just before sending (Vladis Dronov) [1960307]
+- crypto: qat - make PFVF send and receive direction agnostic (Vladis Dronov) [1960307]
+- crypto: qat - make PFVF message construction direction agnostic (Vladis Dronov) [1960307]
+- crypto: qat - add the adf_get_pmisc_base() helper function (Vladis Dronov) [1960307]
+- crypto: qat - support the reset of ring pairs on PF (Vladis Dronov) [1960307]
+- crypto: qat - extend crypto capability detection for 4xxx (Vladis Dronov) [1960307]
+- crypto: qat - set COMPRESSION capability for QAT GEN2 (Vladis Dronov) [1960307]
+- crypto: qat - set CIPHER capability for QAT GEN2 (Vladis Dronov) [1960307]
+- crypto: qat - get compression extended capabilities (Vladis Dronov) [1960307]
+- crypto: qat - improve logging of PFVF messages (Vladis Dronov) [1960307]
+- crypto: qat - fix VF IDs in PFVF log messages (Vladis Dronov) [1960307]
+- crypto: qat - do not rely on min version (Vladis Dronov) [1960307]
+- crypto: qat - refactor pfvf version request messages (Vladis Dronov) [1960307]
+- crypto: qat - pass the PF2VF responses back to the callers (Vladis Dronov) [1960307]
+- crypto: qat - use enums for PFVF protocol codes (Vladis Dronov) [1960307]
+- crypto: qat - reorganize PFVF protocol definitions (Vladis Dronov) [1960307]
+- crypto: qat - reorganize PFVF code (Vladis Dronov) [1960307]
+- crypto: qat - abstract PFVF receive logic (Vladis Dronov) [1960307]
+- crypto: qat - abstract PFVF send function (Vladis Dronov) [1960307]
+- crypto: qat - differentiate between pf2vf and vf2pf offset (Vladis Dronov) [1960307]
+- crypto: qat - add pfvf_ops (Vladis Dronov) [1960307]
+- crypto: qat - relocate PFVF disabled function (Vladis Dronov) [1960307]
+- crypto: qat - relocate PFVF VF related logic (Vladis Dronov) [1960307]
+- crypto: qat - relocate PFVF PF related logic (Vladis Dronov) [1960307]
+- crypto: qat - handle retries due to collisions in adf_iov_putmsg() (Vladis Dronov) [1960307]
+- crypto: qat - split PFVF message decoding from handling (Vladis Dronov) [1960307]
+- crypto: qat - re-enable interrupts for legacy PFVF messages (Vladis Dronov) [1960307]
+- crypto: qat - change PFVF ACK behaviour (Vladis Dronov) [1960307]
+- crypto: qat - move interrupt code out of the PFVF handler (Vladis Dronov) [1960307]
+- crypto: qat - move VF message handler to adf_vf2pf_msg.c (Vladis Dronov) [1960307]
+- crypto: qat - move vf2pf interrupt helpers (Vladis Dronov) [1960307]
+- crypto: qat - refactor PF top half for PFVF (Vladis Dronov) [1960307]
+- crypto: qat - fix undetected PFVF timeout in ACK loop (Vladis Dronov) [1960307]
+- crypto: qat - do not handle PFVF sources for qat_4xxx (Vladis Dronov) [1960307]
+- crypto: qat - simplify adf_enable_aer() (Vladis Dronov) [1960307]
+- crypto: qat - share adf_enable_pf2vf_comms() from adf_pf2vf_msg.c (Vladis Dronov) [1960307]
+- crypto: qat - extract send and wait from adf_vf2pf_request_version() (Vladis Dronov) [1960307]
+- crypto: qat - add VF and PF wrappers to common send function (Vladis Dronov) [1960307]
+- crypto: qat - rename pfvf collision constants (Vladis Dronov) [1960307]
+- crypto: qat - move pfvf collision detection values (Vladis Dronov) [1960307]
+- crypto: qat - make pfvf send message direction agnostic (Vladis Dronov) [1960307]
+- crypto: qat - use hweight for bit counting (Vladis Dronov) [1960307]
+- crypto: qat - remove duplicated logic across GEN2 drivers (Vladis Dronov) [1960307]
+- crypto: qat - fix handling of VF to PF interrupts (Vladis Dronov) [1960307]
+- crypto: qat - remove unnecessary collision prevention step in PFVF (Vladis Dronov) [1960307]
+- crypto: qat - disregard spurious PFVF interrupts (Vladis Dronov) [1960307]
+- crypto: qat - detect PFVF collision after ACK (Vladis Dronov) [1960307]
+- crypto: qat - power up 4xxx device (Vladis Dronov) [1960307]
+- crypto: qat - remove unneeded packed attribute (Vladis Dronov) [1960307]
+- crypto: qat - free irq in case of failure (Vladis Dronov) [1960307]
+- crypto: qat - free irqs only if allocated (Vladis Dronov) [1960307]
+- crypto: qat - remove unmatched CPU affinity to cluster IRQ (Vladis Dronov) [1960307]
+- crypto: qat - replace deprecated MSI API (Vladis Dronov) [1960307]
+- crypto: qat - store vf.compatible flag (Vladis Dronov) [1960307]
+- crypto: qat - do not export adf_iov_putmsg() (Vladis Dronov) [1960307]
+- crypto: qat - flush vf workqueue at driver removal (Vladis Dronov) [1960307]
+- crypto: qat - remove the unnecessary get_vintmsk_offset() (Vladis Dronov) [1960307]
+- crypto: qat - fix naming of PF/VF enable functions (Vladis Dronov) [1960307]
+- crypto: qat - complete all the init steps before service notification (Vladis Dronov) [1960307]
+- crypto: qat - move IO virtualization functions (Vladis Dronov) [1960307]
+- crypto: qat - fix naming for init/shutdown VF to PF notifications (Vladis Dronov) [1960307]
+- crypto: qat - protect interrupt mask CSRs with a spinlock (Vladis Dronov) [1960307]
+- crypto: qat - move pf2vf interrupt [en|dis]able to adf_vf_isr.c (Vladis Dronov) [1960307]
+- crypto: qat - fix reuse of completion variable (Vladis Dronov) [1960307]
+- crypto: qat - remove intermediate tasklet for vf2pf (Vladis Dronov) [1960307]
+- crypto: qat - rename compatibility version definition (Vladis Dronov) [1960307]
+- crypto: qat - prevent spurious MSI interrupt in PF (Vladis Dronov) [1960307]
+- crypto: qat - prevent spurious MSI interrupt in VF (Vladis Dronov) [1960307]
+- crypto: qat - handle both source of interrupt in VF ISR (Vladis Dronov) [1960307]
+- crypto: qat - do not ignore errors from enable_vf2pf_comms() (Vladis Dronov) [1960307]
+- crypto: qat - enable interrupts only after ISR allocation (Vladis Dronov) [1960307]
+- crypto: qat - remove empty sriov_configure() (Vladis Dronov) [1960307]
+- crypto: qat - use proper type for vf_mask (Vladis Dronov) [1960307]
+- crypto: qat - fix a typo in a comment (Vladis Dronov) [1960307]
+- crypto: qat - disable AER if an error occurs in probe functions (Vladis Dronov) [1960307]
+- crypto: qat - set DMA mask to 48 bits for Gen2 (Vladis Dronov) [1960307]
+- crypto: qat - simplify code and axe the use of a deprecated API (Vladis Dronov) [1960307]
+- crypto: qat - ratelimit invalid ioctl message and print the invalid cmd (Vladis Dronov) [1960307]
+- lib: crc8: pointer to data block should be const (Vladis Dronov) [1960307]
+- redhat/configs: disable CONFIG_HYPERV_BALLOON on Aarch64 (Vitaly Kuznetsov) [2035292]
+- net/mlx5e: Fix possible use-after-free deleting fdb rule (Amir Tzin) [2000003]
+- e1000e: Fix packet loss on Tiger Lake and later (Ken Cox) [1952803]
+- e1000e: Separate TGP board type from SPT (Ken Cox) [1952803]
+- e1000e: Add support for the next LOM generation (Ken Cox) [1952803]
+- e1000e: Add support for Lunar Lake (Ken Cox) [1952803]
+- ACPI: tables: FPDT: Do not print FW_BUG message if record types are reserved (Mark Langsdorf) [1999906]
+- powerpc/xmon: Dump XIVE information for online-only processors. (Steve Best) [2037639]
+- of: net: pass the dst buffer to of_get_mac_address() (Petr Oros) [2026468]
+- net: ethernet: improve eth_platform_get_mac_address (Petr Oros) [2026468]
+- net: ethernet: fix similar warning reported by kbuild test robot (Petr Oros) [2026468]
+- net: ethernet: support of_get_mac_address new ERR_PTR error (Petr Oros) [2026468]
+- [s390] s390: add HWCAP_S390_PCI_MIO to ELF hwcaps (Mete Durlu) [2030641]
+- [s390] s390: make PCI mio support a machine flag (Mete Durlu) [2030641]
+- Allocate bw_dwork as a pointer and introduce a backpointer in the work struct (Nico Pache) [1990580]
+- writeback: use READ_ONCE for unlocked reads of writeback stats (Nico Pache) [1990580]
+- writeback: rename domain_update_bandwidth() (Nico Pache) [1990580]
+- writeback: fix bandwidth estimate for spiky workload (Nico Pache) [1990580]
+- writeback: reliably update bandwidth estimation (Nico Pache) [1990580]
+- writeback: track number of inodes under writeback (Nico Pache) [1990580]
+- bdi: replace BDI_CAP_NO_{WRITEBACK,ACCT_DIRTY} with a single flag (Nico Pache) [1990580]
+- bdi: invert BDI_CAP_NO_ACCT_WB (Nico Pache) [1990580]
+- bdi: replace BDI_CAP_STABLE_WRITES with a queue and a sb flag (Nico Pache) [1990580]
+- mm: use SWP_SYNCHRONOUS_IO more intelligently (Nico Pache) [1990580]
+- bdi: remove BDI_CAP_SYNCHRONOUS_IO (Nico Pache) [1990580]
+- bcache: inherit the optimal I/O size (Nico Pache) [1990580]
+- fs: remove the unused SB_I_MULTIROOT flag (Nico Pache) [1990580]
+- Revert "bdi: replace BDI_CAP_NO_{WRITEBACK,ACCT_DIRTY} with a single flag" (Nico Pache) [1990580]
+- mm/page_io.c: annotate refault stalls from swap_readpage (Nico Pache) [1990580]
+- mmc: mmc_spi: Enable stable writes (Nico Pache) [1990580]
+- virtio-blk: modernize sysfs attribute creation (Nico Pache) [1990580]
+- aoe: register default groups with device_add_disk() (Nico Pache) [1990580]
+- block: make QUEUE_SYSFS_BIT_FNS more useful (Nico Pache) [1990580]
+- block: add helper macros for queue sysfs entries (Nico Pache) [1990580]
+- cifs: sanitize multiple delimiters in prepath (Thiago Becker) [2031200]
+- igc: Fix typo in i225 LTR functions (Corinna Vinschen) [1970667]
+- igc: AF_XDP zero-copy metadata adjust breaks SKBs on XDP_PASS (Corinna Vinschen) [1970667]
+- igc: Change Device Reset to Port Reset (Corinna Vinschen) [1970667]
+- igc: Add new device ID (Corinna Vinschen) [1970667]
+- igc: Remove media type checking on the PHY initialization (Corinna Vinschen) [1970667]
+- igc: Update I226_K device ID (Corinna Vinschen) [1970667]
+- net: intel: igc_ptp: fix build for UML (Corinna Vinschen) [1970667]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Corinna Vinschen) [1970667]
+- igc: Add support for CBS offloading (Corinna Vinschen) [1970667]
+- igc: Simplify TSN flags handling (Corinna Vinschen) [1970667]
+- igc: Use default cycle 'start' and 'end' values for queues (Corinna Vinschen) [1970667]
+- igc: Add support for PTP getcrosststamp() (Corinna Vinschen) [1970667]
+- igc: Enable PCIe PTM (Corinna Vinschen) [1970667]
+- igc: Use num_tx_queues when iterating over tx_ring queue (Corinna Vinschen) [1970667]
+- igc: fix page fault when thunderbolt is unplugged (Corinna Vinschen) [1970667]
+- igc: Increase timeout value for Speed 100/1000/2500 (Corinna Vinschen) [1970667]
+- igc: Set QBVCYCLET_S to 0 for TSN Basic Scheduling (Corinna Vinschen) [1970667]
+- igc: Remove phy->type checking (Corinna Vinschen) [1970667]
+- igc: Remove _I_PHY_ID checking (Corinna Vinschen) [1970667]
+- igc: Check if num of q_vectors is smaller than max before array access (Corinna Vinschen) [1970667]
+- Revert "igc: Export LEDs" (Corinna Vinschen) [1970667]
+- igc: Export LEDs (Corinna Vinschen) [1970667]
+- igc: Make flex filter more flexible (Corinna Vinschen) [1970667]
+- igc: Allow for Flex Filters to be installed (Corinna Vinschen) [1970667]
+- igc: Integrate flex filter into ethtool ops (Corinna Vinschen) [1970667]
+- igc: Add possibility to add flex filter (Corinna Vinschen) [1970667]
+- igc: Fix an error handling path in 'igc_probe()' (Corinna Vinschen) [1970667]
+- igc: change default return of igc_read_phy_reg() (Corinna Vinschen) [1970667]
+- igc: Fix use-after-free error during reset (Corinna Vinschen) [1970667]
+- intel: Remove rcu_read_lock() around XDP program invocation (Corinna Vinschen) [1970667]
+- igc: Enable HW VLAN Insertion and HW VLAN Stripping (Corinna Vinschen) [1970667]
+- igc: Indentation fixes (Corinna Vinschen) [1970667]
+- igc: Remove unused MDICNFG register (Corinna Vinschen) [1970667]
+- igc: Remove unused asymmetric pause bit from igc defines (Corinna Vinschen) [1970667]
+- igc: Update driver to use ethtool_sprintf (Corinna Vinschen) [1970667]
+- igc: add correct exception tracing for XDP (Corinna Vinschen) [1970667]
+- igb/igc: use strongly typed pointer (Corinna Vinschen) [1970667]
+- intel: remove checker warning (Corinna Vinschen) [1970667]
+- igc: Enable TX via AF_XDP zero-copy (Corinna Vinschen) [1970667]
+- igc: Enable RX via AF_XDP zero-copy (Corinna Vinschen) [1970667]
+- igc: Replace IGC_TX_FLAGS_XDP flag by an enum (Corinna Vinschen) [1970667]
+- igc: Introduce igc_unmap_tx_buffer() helper (Corinna Vinschen) [1970667]
+- igc: Introduce TX/RX stats helpers (Corinna Vinschen) [1970667]
+- igc: Refactor XDP rxq info registration (Corinna Vinschen) [1970667]
+- igc: Refactor igc_clean_rx_ring() (Corinna Vinschen) [1970667]
+- igc: Refactor __igc_xdp_run_prog() (Corinna Vinschen) [1970667]
+- igc: Move igc_xdp_is_enabled() (Corinna Vinschen) [1970667]
+- igc: use XDP helpers (Corinna Vinschen) [1970667]
+- igc: Expose LPI counters (Corinna Vinschen) [1970667]
+- igc: enable auxiliary PHC functions for the i225 (Corinna Vinschen) [1970667]
+- igc: Enable internal i225 PPS (Corinna Vinschen) [1970667]
+- igc: Add support for XDP_REDIRECT action (Corinna Vinschen) [1970667]
+- igc: Add support for XDP_TX action (Corinna Vinschen) [1970667]
+- igc: Add initial XDP support (Corinna Vinschen) [1970667]
+- drivers: net: mhi: fix error path in mhi_net_newlink (Íñigo Huguet) [2004141]
+- cfg80211: correct bridge/4addr mode check (Íñigo Huguet) [2004141]
+- cfg80211: fix management registrations locking (Íñigo Huguet) [2004141]
+- cfg80211: scan: fix RCU in cfg80211_add_nontrans_list() (Íñigo Huguet) [2004141]
+- mac80211: mesh: fix HE operation element length check (Íñigo Huguet) [2004141]
+- mwifiex: avoid null-pointer-subtraction warning (Íñigo Huguet) [2004141]
+- Revert "brcmfmac: use ISO3166 country code and 0 rev as fallback" (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: add configuration of a Wi-Fi adapter on Dell XPS 15 (Íñigo Huguet) [2004141]
+- mac80211: Fix Ptk0 rekey documentation (Íñigo Huguet) [2004141]
+- mac80211: check return value of rhashtable_init (Íñigo Huguet) [2004141]
+- mac80211: fix use-after-free in CCMP/GCMP RX (Íñigo Huguet) [2004141]
+- mac80211-hwsim: fix late beacon hrtimer handling (Íñigo Huguet) [2004141]
+- mac80211: mesh: fix potentially unaligned access (Íñigo Huguet) [2004141]
+- mac80211: limit injected vht mcs/nss in ieee80211_parse_tx_radiotap (Íñigo Huguet) [2004141]
+- mac80211: Drop frames from invalid MAC address in ad-hoc mode (Íñigo Huguet) [2004141]
+- mac80211: Fix ieee80211_amsdu_aggregate frag_tail bug (Íñigo Huguet) [2004141]
+- Revert "mac80211: do not use low data rates for data frames with no ack flag" (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: d3: missing unlock in iwl_mvm_wowlan_program_keys() (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: d3: Fix off by ones in iwl_mvm_wowlan_get_rsc_v5_data() (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Fix possible NULL dereference (Íñigo Huguet) [2004141]
+- iwlwifi: fix printk format warnings in uefi.c (Íñigo Huguet) [2004141]
+- iwlwifi: pnvm: Fix a memory leak in 'iwl_pnvm_get_from_fs()' (Íñigo Huguet) [2004141]
+- iwlwifi: bump FW API to 66 for AX devices (Íñigo Huguet) [2004141]
+- iwlwifi Add support for ax201 in Samsung Galaxy Book Flex2 Alpha (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: add rtnl_lock() in iwl_mvm_start_get_nvm() (Íñigo Huguet) [2004141]
+- net: qrtr: revert check in qrtr_endpoint_post() (Íñigo Huguet) [2004141]
+- net: qrtr: make checks in qrtr_endpoint_post() stricter (Íñigo Huguet) [2004141]
+- intel: switch from 'pci_' to 'dma_' API (Íñigo Huguet) [2004141]
+- mwifiex: pcie: add reset_d3cold quirk for Surface gen4+ devices (Íñigo Huguet) [2004141]
+- mwifiex: pcie: add DMI-based quirk implementation for Surface devices (Íñigo Huguet) [2004141]
+- brcmfmac: pcie: fix oops on failure to resume and reprobe (Íñigo Huguet) [2004141]
+- brcmfmac: Add WPA3 Personal with FT to supported cipher suites (Íñigo Huguet) [2004141]
+- rtlwifi: rtl8192de: Fix initialization of place in _rtl92c_phy_get_rightchnlplace() (Íñigo Huguet) [2004141]
+- rtw88: add quirk to disable pci caps on HP Pavilion 14-ce0xxx (Íñigo Huguet) [2004141]
+- ath9k: fix sleeping in atomic context (Íñigo Huguet) [2004141]
+- ath9k: fix OOB read ar9300_eeprom_restore_internal (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: don't use FW key ID in beacon protection (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Fix scan channel flags settings (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: support broadcast TWT alone (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: introduce iwl_stored_beacon_notif_v3 (Íñigo Huguet) [2004141]
+- iwlwifi: move get pnvm file name to a separate function (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: add support for responder config command version 9 (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: add support for range request command version 13 (Íñigo Huguet) [2004141]
+- iwlwifi: allow debug init in RF-kill (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: don't schedule the roc_done_wk if it is already running (Íñigo Huguet) [2004141]
+- iwlwifi: yoyo: support for new DBGI_SRAM region (Íñigo Huguet) [2004141]
+- iwlwifi: add 'Rx control frame to MBSSID' HE capability (Íñigo Huguet) [2004141]
+- iwlwifi: fw: fix debug dump data declarations (Íñigo Huguet) [2004141]
+- iwlwifi: api: remove datamember from struct (Íñigo Huguet) [2004141]
+- iwlwifi: fix __percpu annotation (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: avoid dma unmap/remap in crash dump (Íñigo Huguet) [2004141]
+- iwlwifi: acpi: fill in SAR tables with defaults (Íñigo Huguet) [2004141]
+- iwlwifi: acpi: fill in WGDS table with defaults (Íñigo Huguet) [2004141]
+- iwlwifi: bump FW API to 65 for AX devices (Íñigo Huguet) [2004141]
+- iwlwifi: acpi: support reading and storing WGDS revision 2 (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: load regdomain at INIT stage (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Read the PPAG and SAR tables at INIT stage (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: trigger WRT when no beacon heard (Íñigo Huguet) [2004141]
+- iwlwifi: fw: correctly limit to monitor dump (Íñigo Huguet) [2004141]
+- iwlwifi: skip first element in the WTAS ACPI table (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: support version 11 of wowlan statuses notification (Íñigo Huguet) [2004141]
+- iwlwifi: convert flat GEO profile table to a struct version (Íñigo Huguet) [2004141]
+- iwlwifi: remove unused ACPI_WGDS_TABLE_SIZE definition (Íñigo Huguet) [2004141]
+- iwlwifi: support reading and storing EWRD revisions 1 and 2 (Íñigo Huguet) [2004141]
+- iwlwifi: acpi: support reading and storing WRDS revision 1 and 2 (Íñigo Huguet) [2004141]
+- iwlwifi: pass number of chains and sub-bands to iwl_sar_set_profile() (Íñigo Huguet) [2004141]
+- iwlwifi: remove ACPI_SAR_NUM_TABLES definition (Íñigo Huguet) [2004141]
+- iwlwifi: convert flat SAR profile table to a struct version (Íñigo Huguet) [2004141]
+- iwlwifi: rename ACPI_SAR_NUM_CHAIN_LIMITS to ACPI_SAR_NUM_CHAINS (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: fix access to BSS elements (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Refactor setting of SSIDs for 6GHz scan (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: silently drop encrypted frames for unknown station (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: d3: implement RSC command version 5 (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: d3: make key reprogramming iteration optional (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: d3: add separate key iteration for GTK type (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: d3: refactor TSC/RSC configuration (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: d3: remove fixed cmd_flags argument (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: d3: separate TKIP data from key iteration (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: simplify __iwl_mvm_set_sta_key() (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: support new station key API (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Fix umac scan request probe parameters (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: implement Bz reset flow (Íñigo Huguet) [2004141]
+- iwlwifi: implement Bz NMI behaviour (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: implement Bz device startup (Íñigo Huguet) [2004141]
+- iwlwifi: read MAC address from correct place on Bz (Íñigo Huguet) [2004141]
+- iwlwifi: give Bz devices their own name (Íñigo Huguet) [2004141]
+- iwlwifi: split off Bz devices into their own family (Íñigo Huguet) [2004141]
+- iwlwifi: yoyo: cleanup internal buffer allocation in D3 (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: treat MMPDUs in iwl_mvm_mac_tx() as bcast (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: clean up number of HW queues (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: avoid static queue number aliasing (Íñigo Huguet) [2004141]
+- iwlwifi: use DEFINE_MUTEX() for mutex lock (Íñigo Huguet) [2004141]
+- iwlwifi: remove trailing semicolon in macro definition (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: fix a memory leak in iwl_mvm_mac_ctxt_beacon_changed (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: fix old-style static const declaration (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: remove check for vif in iwl_mvm_vif_from_mac80211() (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: remove spaces from queue names (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: restrict FW SMPS request (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: set replay counter on key install (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: remove trigger EAPOL time event (Íñigo Huguet) [2004141]
+- iwlwifi: iwl-dbg-tlv: add info about loading external dbg bin (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Add support for hidden network scan on 6GHz band (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Do not use full SSIDs in 6GHz scan (Íñigo Huguet) [2004141]
+- iwlwifi: print PNVM complete notification status in hexadecimal (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: dump error on FW reset handshake failures (Íñigo Huguet) [2004141]
+- iwlwifi: prepare for synchronous error dumps (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: free RBs during configure (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: optimise struct iwl_rx_mem_buffer layout (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: avoid FW restart while shutting down (Íñigo Huguet) [2004141]
+- iwlwifi: nvm: enable IEEE80211_HE_PHY_CAP10_HE_MU_M1RU_MAX_LTF (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: set BROADCAST_TWT_SUPPORTED in MAC policy (Íñigo Huguet) [2004141]
+- iwlwifi: iwl-nvm-parse: set STBC flags for HE phy capabilities (Íñigo Huguet) [2004141]
+- cfg80211: use wiphy DFS domain if it is self-managed (Íñigo Huguet) [2004141]
+- mac80211: parse transmit power envelope element (Íñigo Huguet) [2004141]
+- ieee80211: add definition for transmit power envelope element (Íñigo Huguet) [2004141]
+- ieee80211: add definition of regulatory info in 6 GHz operation information (Íñigo Huguet) [2004141]
+- mac80211: introduce individual TWT support in AP mode (Íñigo Huguet) [2004141]
+- ieee80211: add TWT element definitions (Íñigo Huguet) [2004141]
+- brcmsmac: make array addr static const, makes object smaller (Íñigo Huguet) [2004141]
+- rtw88: Remove unnecessary check code (Íñigo Huguet) [2004141]
+- rtw88: wow: fix size access error of probe request (Íñigo Huguet) [2004141]
+- rtw88: wow: report wow reason through mac80211 api (Íñigo Huguet) [2004141]
+- rtw88: wow: build wow function only if CONFIG_PM is on (Íñigo Huguet) [2004141]
+- rtw88: refine the setting of rsvd pages for different firmware (Íñigo Huguet) [2004141]
+- rtw88: use read_poll_timeout instead of fixed sleep (Íñigo Huguet) [2004141]
+- rtw88: 8822ce: set CLKREQ# signal to low during suspend (Íñigo Huguet) [2004141]
+- rtw88: change beacon filter default mode (Íñigo Huguet) [2004141]
+- rtw88: 8822c: add tx stbc support under HT mode (Íñigo Huguet) [2004141]
+- rtw88: adjust the log level for failure of tx report (Íñigo Huguet) [2004141]
+- rtl8xxxu: Fix the handling of TX A-MPDU aggregation (Íñigo Huguet) [2004141]
+- rtl8xxxu: disable interrupt_in transfer for 8188cu and 8192cu (Íñigo Huguet) [2004141]
+- mwifiex: make arrays static const, makes object smaller (Íñigo Huguet) [2004141]
+- mwifiex: usb: Replace one-element array with flexible-array member (Íñigo Huguet) [2004141]
+- mwifiex: drop redundant null-pointer check in mwifiex_dnld_cmd_to_fw() (Íñigo Huguet) [2004141]
+- rtlwifi: rtl8192de: make arrays static const, makes object smaller (Íñigo Huguet) [2004141]
+- rtlwifi: rtl8192de: Remove redundant variable initializations (Íñigo Huguet) [2004141]
+- ray_cs: Split memcpy() to avoid bounds check warning (Íñigo Huguet) [2004141]
+- ray_cs: use *ph to print small buffer (Íñigo Huguet) [2004141]
+- brcmfmac: add 43752 SDIO ids and initialization (Íñigo Huguet) [2004141]
+- brcmfmac: Set SDIO workqueue as WQ_HIGHPRI (Íñigo Huguet) [2004141]
+- brcmfmac: use separate firmware for 43430 revision 2 (Íñigo Huguet) [2004141]
+- brcmfmac: support chipsets with different core enumeration space (Íñigo Huguet) [2004141]
+- brcmfmac: add xtlv support to firmware interface layer (Íñigo Huguet) [2004141]
+- brcmfmac: increase core revision column aligning core list (Íñigo Huguet) [2004141]
+- brcmfmac: use different error value for invalid ram base address (Íñigo Huguet) [2004141]
+- brcmfmac: firmware: Fix firmware loading (Íñigo Huguet) [2004141]
+- net: qrtr: fix another OOB Read in qrtr_endpoint_post (Íñigo Huguet) [2004141]
+- cfg80211: fix BSS color notify trace enum confusion (Íñigo Huguet) [2004141]
+- mac80211: fix locking in ieee80211_restart_work() (Íñigo Huguet) [2004141]
+- mac80211: Fix insufficient headroom issue for AMSDU (Íñigo Huguet) [2004141]
+- mac80211: add support for BSS color change (Íñigo Huguet) [2004141]
+- nl80211: add support for BSS coloring (Íñigo Huguet) [2004141]
+- mac80211: Use flex-array for radiotap header bitmap (Íñigo Huguet) [2004141]
+- mac80211: radiotap: Use BIT() instead of shifts (Íñigo Huguet) [2004141]
+- mac80211: Remove unnecessary variable and label (Íñigo Huguet) [2004141]
+- mac80211: include <linux/rbtree.h> (Íñigo Huguet) [2004141]
+- mac80211: Fix monitor MTU limit so that A-MSDUs get through (Íñigo Huguet) [2004141]
+- mac80211: remove unnecessary NULL check in ieee80211_register_hw() (Íñigo Huguet) [2004141]
+- mac80211: Reject zero MAC address in sta_info_insert_check() (Íñigo Huguet) [2004141]
+- mt76: fix enum type mismatch (Íñigo Huguet) [2004141]
+- bus: mhi: core: Improve debug messages for power up (Íñigo Huguet) [2004141]
+- bus: mhi: core: Replace DMA allocation wrappers with original APIs (Íñigo Huguet) [2004141]
+- bus: mhi: core: Add range checks for BHI and BHIe (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Set register access length for MHI driver (Íñigo Huguet) [2004141]
+- ath11k: set register access length for MHI driver (Íñigo Huguet) [2004141]
+- bus: mhi: Add MMIO region length to controller structure (Íñigo Huguet) [2004141]
+- bus: mhi: core: Set BHI and BHIe pointers to NULL in clean-up (Íñigo Huguet) [2004141]
+- bus: mhi: core: Set BHI/BHIe offsets on power up preparation (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Add Cinterion MV31-W PCIe to MHI (Íñigo Huguet) [2004141]
+- Revert "mhi: Fix networking tree build." (Íñigo Huguet) [2004141]
+- mhi: Fix networking tree build. (Íñigo Huguet) [2004141]
+- brcmfmac: firmware: Allow per-board firmware binaries (Íñigo Huguet) [2004141]
+- iwlwifi: add new so-jf devices (Íñigo Huguet) [2004141]
+- iwlwifi: add new SoF with JF devices (Íñigo Huguet) [2004141]
+- iwlwifi: pnvm: accept multiple HW-type TLVs (Íñigo Huguet) [2004141]
+- cfg80211: Fix possible memory leak in function cfg80211_bss_update (Íñigo Huguet) [2004141]
+- nl80211: limit band information in non-split data (Íñigo Huguet) [2004141]
+- mac80211: fix enabling 4-address mode on a sta vif after assoc (Íñigo Huguet) [2004141]
+- mac80211: fix starting aggregation sessions on mesh interfaces (Íñigo Huguet) [2004141]
+- mac80211: Do not strip skb headroom on monitor frames (Íñigo Huguet) [2004141]
+- net: mhi: Remove MBIM protocol (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Fix inbound IPCR channel (Íñigo Huguet) [2004141]
+- bus: mhi: core: Validate channel ID when processing command completions (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Apply no-op for wake using sideband wake boolean (Íñigo Huguet) [2004141]
+- net: mhi: Improve MBIM packet counting (Íñigo Huguet) [2004141]
+- bus: mhi: pci-generic: configurable network interface MRU (Íñigo Huguet) [2004141]
+- mt76: mt7921: Fix fall-through warning for Clang (Íñigo Huguet) [2004141]
+- mt76: mt7921: continue to probe driver when fw already downloaded (Íñigo Huguet) [2004141]
+- ath11k: Remove some duplicate code (Íñigo Huguet) [2004141]
+- ath: switch from 'pci_' to 'dma_' API (Íñigo Huguet) [2004141]
+- iwlwifi: acpi: remove unused function iwl_acpi_eval_dsm_func() (Íñigo Huguet) [2004141]
+- rtw88: fix c2h memory leak (Íñigo Huguet) [2004141]
+- brcmfmac: support parse country code map from DT (Íñigo Huguet) [2004141]
+- bus: mhi: pci-generic: Add missing 'pci_disable_pcie_error_reporting()' calls (Íñigo Huguet) [2004141]
+- bus: mhi: Wait for M2 state during system resume (Íñigo Huguet) [2004141]
+- bus: mhi: core: Fix power down latency (Íñigo Huguet) [2004141]
+- brcmfmac: Silence error messages about unsupported firmware features (Íñigo Huguet) [2004141]
+- cfg80211: Add wiphy_info_once() (Íñigo Huguet) [2004141]
+- mac80211: Switch to a virtual time-based airtime scheduler (Íñigo Huguet) [2004141]
+- Revert "mac80211: HE STA disassoc due to QOS NULL not sent" (Íñigo Huguet) [2004141]
+- mac80211: remove iwlwifi specific workaround NDPs of null_response (Íñigo Huguet) [2004141]
+- mac80211: fix NULL ptr dereference during mesh peer connection for non HE devices (Íñigo Huguet) [2004141]
+- mac80211: Enable power save after receiving NULL packet ACK (Íñigo Huguet) [2004141]
+- mac80211: add HE 6 GHz capability only if supported (Íñigo Huguet) [2004141]
+- mac80211: notify driver on mgd TX completion (Íñigo Huguet) [2004141]
+- mac80211: always include HE 6GHz capability in probe request (Íñigo Huguet) [2004141]
+- mac80211: add vendor-specific capabilities to assoc request (Íñigo Huguet) [2004141]
+- cfg80211: allow advertising vendor-specific capabilities (Íñigo Huguet) [2004141]
+- cfg80211: set custom regdomain after wiphy registration (Íñigo Huguet) [2004141]
+- cfg80211: Support hidden AP discovery over 6GHz band (Íñigo Huguet) [2004141]
+- mac80211: conditionally advertise HE in probe requests (Íñigo Huguet) [2004141]
+- cfg80211: add cfg80211_any_usable_channels() (Íñigo Huguet) [2004141]
+- cfg80211: reg: improve bad regulatory warning (Íñigo Huguet) [2004141]
+- nl80211: Fix typo pmsr->pmsr (Íñigo Huguet) [2004141]
+- mac80211: fix some spelling mistakes (Íñigo Huguet) [2004141]
+- cfg80211: remove ieee80211_get_he_sta_cap() (Íñigo Huguet) [2004141]
+- mac80211: remove use of ieee80211_get_he_sta_cap() (Íñigo Huguet) [2004141]
+- cfg80211: trace more information in assoc trace event (Íñigo Huguet) [2004141]
+- mac80211: improve AP disconnect message (Íñigo Huguet) [2004141]
+- mac80211: rearrange struct txq_info for fewer holes (Íñigo Huguet) [2004141]
+- ieee80211: add defines for HE PHY cap byte 10 (Íñigo Huguet) [2004141]
+- mac80211: Properly WARN on HW scan before restart (Íñigo Huguet) [2004141]
+- nl80211/cfg80211: add BSS color to NDP ranging parameters (Íñigo Huguet) [2004141]
+- mac80211: add to bss_conf if broadcast TWT is supported (Íñigo Huguet) [2004141]
+- mac80211: move SMPS mode setting after ieee80211_prep_connection (Íñigo Huguet) [2004141]
+- mac80211: free skb in WEP error case (Íñigo Huguet) [2004141]
+- mac80211: handle rate control (RC) racing with chanctx definition (Íñigo Huguet) [2004141]
+- ieee80211: define timing measurement in extended capabilities IE (Íñigo Huguet) [2004141]
+- mac80211_hwsim: record stats in non-netlink path (Íñigo Huguet) [2004141]
+- ieee80211: add the value for Category '6' in "rtw_ieee80211_category" (Íñigo Huguet) [2004141]
+- mac80211: remove iwlwifi specific workaround that broke sta NDP tx (Íñigo Huguet) [2004141]
+- mac80211: allow SMPS requests only in client mode (Íñigo Huguet) [2004141]
+- mac80211: check per vif offload_flags in Tx path (Íñigo Huguet) [2004141]
+- mac80211: add rate control support for encap offload (Íñigo Huguet) [2004141]
+- mac80211: call ieee80211_tx_h_rate_ctrl() when dequeue (Íñigo Huguet) [2004141]
+- mac80211: move A-MPDU session check from minstrel_ht to mac80211 (Íñigo Huguet) [2004141]
+- cfg80211: expose the rfkill device to the low level driver (Íñigo Huguet) [2004141]
+- wireless: add check of field VHT Extended NSS BW Capable for 160/80+80 MHz setting (Íñigo Huguet) [2004141]
+- mac80211_hwsim: add concurrent channels scanning support over virtio (Íñigo Huguet) [2004141]
+- mac80211: don't open-code LED manipulations (Íñigo Huguet) [2004141]
+- mac80211: consider per-CPU statistics if present (Íñigo Huguet) [2004141]
+- cfg80211: fix default HE tx bitrate mask in 2G band (Íñigo Huguet) [2004141]
+- mac80211: remove the repeated declaration (Íñigo Huguet) [2004141]
+- mac80211: refactor rc_no_data_or_no_ack_use_min function (Íñigo Huguet) [2004141]
+- mac80211: do not use low data rates for data frames with no ack flag (Íñigo Huguet) [2004141]
+- mac80211: add ieee80211_is_tx_data helper function (Íñigo Huguet) [2004141]
+- mac80211: simplify ieee80211_add_station() (Íñigo Huguet) [2004141]
+- mac80211: use sdata->skb_queue for TDLS (Íñigo Huguet) [2004141]
+- mac80211: refactor SKB queue processing a bit (Íñigo Huguet) [2004141]
+- mac80211: unify queueing SKB to iface (Íñigo Huguet) [2004141]
+- mac80211: minstrel_ht: ignore frame that was sent with noAck flag (Íñigo Huguet) [2004141]
+- cfg80211: clean up variable use in cfg80211_parse_colocated_ap() (Íñigo Huguet) [2004141]
+- cfg80211: remove CFG80211_MAX_NUM_DIFFERENT_CHANNELS (Íñigo Huguet) [2004141]
+- mac80211: Remove redundant assignment to ret (Íñigo Huguet) [2004141]
+- net: wireless: wext_compat.c: Remove redundant assignment to ps (Íñigo Huguet) [2004141]
+- wireless: wext-spy: Fix out-of-bounds warning (Íñigo Huguet) [2004141]
+- ath11k: Avoid memcpy() over-reading of he_cap (Íñigo Huguet) [2004141]
+- mt7601u: add USB device ID for some versions of XiaoDu WiFi Dongle. (Íñigo Huguet) [2004141]
+- mwifiex: Avoid memset() over-write of WEP key_material (Íñigo Huguet) [2004141]
+- rtlwifi: rtl8192de: Fully initialize curvecount_val (Íñigo Huguet) [2004141]
+- rtw88: coex: remove unnecessary variable and label (Íñigo Huguet) [2004141]
+- rtw88: add quirks to disable pci capabilities (Íñigo Huguet) [2004141]
+- rtw88: refine unwanted h2c command (Íñigo Huguet) [2004141]
+- rtw88: dump FW crash via devcoredump (Íñigo Huguet) [2004141]
+- rtw88: notify fw when driver in scan-period to avoid potential problem (Íñigo Huguet) [2004141]
+- rtw88: add rtw_fw_feature_check api (Íñigo Huguet) [2004141]
+- rtw88: 8822c: update RF parameter tables to v62 (Íñigo Huguet) [2004141]
+- rtw88: Remove duplicate include of coex.h (Íñigo Huguet) [2004141]
+- rtw88: 8822c: fix lc calibration timing (Íñigo Huguet) [2004141]
+- rtw88: add path diversity (Íñigo Huguet) [2004141]
+- rtw88: add beacon filter support (Íñigo Huguet) [2004141]
+- iwlwifi: bump FW API to 64 for AX devices (Íñigo Huguet) [2004141]
+- iwlwifi: fw: dump TCM error table if present (Íñigo Huguet) [2004141]
+- iwlwifi: add 9560 killer device (Íñigo Huguet) [2004141]
+- iwlwifi: move error dump to fw utils (Íñigo Huguet) [2004141]
+- iwlwifi: support loading the reduced power table from UEFI (Íñigo Huguet) [2004141]
+- iwlwifi: move UEFI code to a separate file (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: introduce iwl_wowlan_get_status_cmd (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: introduce iwl_wowlan_kek_kck_material_cmd_v4 (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: update iwl_wowlan_patterns_cmd (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: introduce iwl_proto_offload_cmd_v4 (Íñigo Huguet) [2004141]
+- iwlwifi: fix NUM_IWL_UCODE_TLV_* definitions to avoid sparse errors (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: free some DMA memory earlier (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: fill phy_data.d1 for no-data RX (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: fix context info freeing (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: free IML DMA memory allocation (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: support LONG_GROUP for WOWLAN_GET_STATUSES version (Íñigo Huguet) [2004141]
+- iwlwifi: support ver 6 of WOWLAN_CONFIGURATION and ver 10 of WOWLAN_GET_STATUSES (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: don't request mac80211 to disable/enable sta's queues (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Explicitly stop session protection before unbinding (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: remove TR/CR tail allocations (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Read acpi dsm to get unii4 enable/disable bitmap. (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: fix some kernel-doc comments (Íñigo Huguet) [2004141]
+- iwlwifi: advertise broadcast TWT support (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: support LMR feedback (Íñigo Huguet) [2004141]
+- iwlwifi: correct HE capabilities (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: Call NMI instead of REPLY_ERROR (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: fix error print when session protection ends (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: honour firmware SMPS requests (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: apply RX diversity per PHY context (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: don't request SMPS in AP mode (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: identify the RF module (Íñigo Huguet) [2004141]
+- iwlwifi: yoyo: support region TLV version 2 (Íñigo Huguet) [2004141]
+- iwlwifi: remove duplicate iwl_ax201_cfg_qu_hr declaration (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: remove CSR_HW_RF_ID_TYPE_CHIP_ID (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: print interrupt number, not index (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: Add support for AX231 radio module with Ma devices (Íñigo Huguet) [2004141]
+- iwlwifi: increase PNVM load timeout (Íñigo Huguet) [2004141]
+- iwlwifi: pcie: handle pcim_iomap_table() failures better (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: don't change band on bound PHY contexts (Íñigo Huguet) [2004141]
+- iwlwifi: remove unused REMOTE_WAKE_CONFIG_CMD definitions (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: fix indentation in some scan functions (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: pass the clock type to iwl_mvm_get_sync_time() (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: support BIOS enable/disable for 11ax in Russia (Íñigo Huguet) [2004141]
+- ath11k: Enable QCN9074 device (Íñigo Huguet) [2004141]
+- ath10k: demote chan info without scan request warning (Íñigo Huguet) [2004141]
+- rtl8xxxu: avoid parsing short RX packet (Íñigo Huguet) [2004141]
+- rtl8xxxu: Fix device info for RTL8192EU devices (Íñigo Huguet) [2004141]
+- mt76: mt7921: allow chip reset during device restart (Íñigo Huguet) [2004141]
+- mt76: mt7615: set macwork timeout according to runtime-pm (Íñigo Huguet) [2004141]
+- mt76: mt7663s: enable runtime-pm (Íñigo Huguet) [2004141]
+- mt76: mt7663s: rely on mt76_connac_pm_ref/mt76_connac_pm_unref in tx path (Íñigo Huguet) [2004141]
+- mt76: mt7663s: rely on pm reference counting (Íñigo Huguet) [2004141]
+- mt76: sdio: do not run mt76_txq_schedule directly (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable HE BFee capability (Íñigo Huguet) [2004141]
+- mt76: disable TWT capabilities for the moment (Íñigo Huguet) [2004141]
+- mt76: fix iv and CCMP header insertion (Íñigo Huguet) [2004141]
+- mt76: mt7921: fix the coredump is being truncated (Íñigo Huguet) [2004141]
+- mt76: mt7921: fix kernel warning when reset on vif is not sta (Íñigo Huguet) [2004141]
+- mt76: mt7921: introduce dedicated control for deep_sleep (Íñigo Huguet) [2004141]
+- mt76: mt7921: limit txpower according to userlevel power (Íñigo Huguet) [2004141]
+- mt76: mt7921: improve code readability for mt7921_update_txs (Íñigo Huguet) [2004141]
+- mt76: mt7915: fix IEEE80211_HE_PHY_CAP7_MAX_NC for station mode (Íñigo Huguet) [2004141]
+- mt76: use SPDX header file comment style (Íñigo Huguet) [2004141]
+- mt76: add a space between comment char and SPDX tag (Íñigo Huguet) [2004141]
+- mt76: mt7915: improve MU stability (Íñigo Huguet) [2004141]
+- mt76: mt7921: add deep sleep control to runtime-pm knob (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable deep sleep at runtime (Íñigo Huguet) [2004141]
+- mt76: mt7915: introduce mt7915_mcu_set_txbf() (Íñigo Huguet) [2004141]
+- mt76: make mt76_update_survey() per phy (Íñigo Huguet) [2004141]
+- mt76: move mt76_get_next_pkt_id in mt76.h (Íñigo Huguet) [2004141]
+- mt76: reduce rx buffer size to 2048 (Íñigo Huguet) [2004141]
+- mt76: connac: fix the maximum interval schedule scan can support (Íñigo Huguet) [2004141]
+- mt76: mt7915: fix rx fcs error count in testmode (Íñigo Huguet) [2004141]
+- mt76: testmode: move chip-specific stats dump before common stats (Íñigo Huguet) [2004141]
+- mt76: connac: add mt76_connac_mcu_get_nic_capability utility routine (Íñigo Huguet) [2004141]
+- mt76: connac: check band caps in mt76_connac_mcu_set_rate_txpower (Íñigo Huguet) [2004141]
+- mt76: mt7915: drop the use of repeater entries for station interfaces (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable VHT BFee capability (Íñigo Huguet) [2004141]
+- mt76: mt7921: make mt7921_set_channel static (Íñigo Huguet) [2004141]
+- mt76: mt7921: wake the device before dumping power table (Íñigo Huguet) [2004141]
+- mt76: connac: add mt76_connac_power_save_sched in mt76_connac_pm_unref (Íñigo Huguet) [2004141]
+- mt76: connac: fix UC entry is being overwritten (Íñigo Huguet) [2004141]
+- mt76: mt7615: update radar parameters (Íñigo Huguet) [2004141]
+- mt76: mt7915: setup drr group for peers (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable random mac address during sched_scan (Íñigo Huguet) [2004141]
+- mt76: mt7921: remove mt7921_get_wtbl_info routine (Íñigo Huguet) [2004141]
+- mt76: mt7915: fix MT_EE_CAL_GROUP_SIZE (Íñigo Huguet) [2004141]
+- mt76: mt7915: improve error recovery reliability (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable hw offloading for wep keys (Íñigo Huguet) [2004141]
+- mt76: mt7915: read all eeprom fields from fw in efuse mode (Íñigo Huguet) [2004141]
+- mt76: mt7921: set MT76_RESET during mac reset (Íñigo Huguet) [2004141]
+- mt76: mt7921: introduce mac tx done handling (Íñigo Huguet) [2004141]
+- mt76: allow hw driver code to overwrite wiphy interface_modes (Íñigo Huguet) [2004141]
+- mt76: mt7921: update statistic in active mode only (Íñigo Huguet) [2004141]
+- mt76: mt7915: use mt7915_mcu_get_mib_info() to get survey data (Íñigo Huguet) [2004141]
+- mt76: mt7615: fix potential overflow on large shift (Íñigo Huguet) [2004141]
+- mt76: testmode: remove undefined behaviour in mt76_testmode_alloc_skb (Íñigo Huguet) [2004141]
+- mt76: testmode: remove unnecessary function calls in mt76_testmode_free_skb (Íñigo Huguet) [2004141]
+- mt76: testmode: fix memory leak in mt76_testmode_alloc_skb (Íñigo Huguet) [2004141]
+- mt76: mt7615: remove useless if condition in mt7615_add_interface() (Íñigo Huguet) [2004141]
+- mt76: mt7915: use mt7915_mcu_get_txpower_sku() to get per-rate txpower (Íñigo Huguet) [2004141]
+- mt76: mt7615: add .offset_tsf callback (Íñigo Huguet) [2004141]
+- mt76: mt7915: add .offset_tsf callback (Íñigo Huguet) [2004141]
+- mt76: mt7921: reset wfsys during hw probe (Íñigo Huguet) [2004141]
+- mt76: mt7921: do not schedule hw reset if the device is not running (Íñigo Huguet) [2004141]
+- mt76: mt7921: return proper error value in mt7921_mac_init (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable runtime pm by default (Íñigo Huguet) [2004141]
+- mt76: mt7921: fix OMAC idx usage (Íñigo Huguet) [2004141]
+- mt76: mt7921: fix invalid register access in wake_work (Íñigo Huguet) [2004141]
+- mt76: mt7921: avoid unnecessary consecutive WiFi resets (Íñigo Huguet) [2004141]
+- mt76: connac: update BA win size in Rx direction (Íñigo Huguet) [2004141]
+- mt76: connac: add bss color support for sta mode (Íñigo Huguet) [2004141]
+- mt76: mt7615: add thermal sensor device support (Íñigo Huguet) [2004141]
+- mt76: mt7915: add thermal cooling device support (Íñigo Huguet) [2004141]
+- mt76: mt7915: add thermal sensor device support (Íñigo Huguet) [2004141]
+- mt76: mt7921: fix reset under the deep sleep is enabled (Íñigo Huguet) [2004141]
+- mt76: mt7921: add back connection monitor support (Íñigo Huguet) [2004141]
+- mt76: mt7921: consider the invalid value for to_rssi (Íñigo Huguet) [2004141]
+- mt76: connac: fix WoW with disconnetion and bitmap pattern (Íñigo Huguet) [2004141]
+- mt76: connac: fw_own rely on all packet memory all being free (Íñigo Huguet) [2004141]
+- mt76: mt7921: Don't alter Rx path classifier (Íñigo Huguet) [2004141]
+- mt76: mt7921: fix mt7921_wfsys_reset sequence (Íñigo Huguet) [2004141]
+- mt76: mt7663: enable hw rx header translation (Íñigo Huguet) [2004141]
+- mt76: mt7615: free irq if mt7615_mmio_probe fails (Íñigo Huguet) [2004141]
+- mt76: mt76x0: use dev_debug instead of dev_err for hw_rf_ctrl (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable rx csum offload (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable rx header traslation offload (Íñigo Huguet) [2004141]
+- mt76: connac: add missing configuration in mt76_connac_mcu_wtbl_hdr_trans_tlv (Íñigo Huguet) [2004141]
+- mt76: mt7921: enable rx hw de-amsdu (Íñigo Huguet) [2004141]
+- mt76: mt7915: fix a signedness bug in mt7915_mcu_apply_tx_dpd() (Íñigo Huguet) [2004141]
+- mt76: mt7615: fix NULL pointer dereference in tx_prepare_skb() (Íñigo Huguet) [2004141]
+- mt76: fix possible NULL pointer dereference in mt76_tx (Íñigo Huguet) [2004141]
+- mt76: mt7915: add .set_bitrate_mask() callback (Íñigo Huguet) [2004141]
+- mt76: mt7915: cleanup mt7915_mcu_sta_rate_ctrl_tlv() (Íñigo Huguet) [2004141]
+- mt76: mt7915: fix tssi indication field of DBDC NICs (Íñigo Huguet) [2004141]
+- mt76: move mt76_rates in mt76 module (Íñigo Huguet) [2004141]
+- mac80211: reset profile_periodicity/ema_ap (Íñigo Huguet) [2004141]
+- mac80211: handle various extensible elements correctly (Íñigo Huguet) [2004141]
+- cfg80211: avoid double free of PMSR request (Íñigo Huguet) [2004141]
+- cfg80211: make certificate generation more robust (Íñigo Huguet) [2004141]
+- mac80211: minstrel_ht: fix sample time check (Íñigo Huguet) [2004141]
+- mt76: mt7915: add support for tx status reporting (Íñigo Huguet) [2004141]
+- mt76: mt7915: rework tx rate reporting (Íñigo Huguet) [2004141]
+- mt76: dma: use ieee80211_tx_status_ext to free packets when tx fails (Íñigo Huguet) [2004141]
+- mt76: improve tx status codepath (Íñigo Huguet) [2004141]
+- mt76: intialize tx queue entry wcid to 0xffff by default (Íñigo Huguet) [2004141]
+- mt76: mt7603: avoid use of ieee80211_tx_info_clear_status (Íñigo Huguet) [2004141]
+- mt76: mt7615: avoid use of ieee80211_tx_info_clear_status (Íñigo Huguet) [2004141]
+- mt76: mt7615: fix fixed-rate tx status reporting (Íñigo Huguet) [2004141]
+- mt76: mt7915: move mt7915_queue_rx_skb to mac.c (Íñigo Huguet) [2004141]
+- mt76: mt7915: disable ASPM (Íñigo Huguet) [2004141]
+- mt76: mt7915: add MSI support (Íñigo Huguet) [2004141]
+- ath11k: send beacon template after vdev_start/restart during csa (Íñigo Huguet) [2004141]
+- ath10k: Use devm_platform_get_and_ioremap_resource() (Íñigo Huguet) [2004141]
+- ath10k: remove the repeated declaration (Íñigo Huguet) [2004141]
+- ath10k: Fix an error code in ath10k_add_interface() (Íñigo Huguet) [2004141]
+- ath11k: Fix an error handling path in ath11k_core_fetch_board_data_api_n() (Íñigo Huguet) [2004141]
+- ath: Fix wrong function name in comments (Íñigo Huguet) [2004141]
+- rtlwifi: Fix spelling of 'download' (Íñigo Huguet) [2004141]
+- rtlwifi: Remove redundant assignments to ul_enc_algo (Íñigo Huguet) [2004141]
+- rtlwifi: rtl8723ae: remove redundant initialization of variable rtstatus (Íñigo Huguet) [2004141]
+- rtlwifi: btcoex: 21a 2ant: Delete several duplicate condition branch codes (Íñigo Huguet) [2004141]
+- rtlwifi: 8821a: btcoexist: add comments to explain why if-else branches are identical (Íñigo Huguet) [2004141]
+- rt2x00: do not set timestamp for injected frames (Íñigo Huguet) [2004141]
+- rndis_wlan: simplify is_associated() (Íñigo Huguet) [2004141]
+- rt2x00: remove leading spaces before tabs (Íñigo Huguet) [2004141]
+- rtlwifi: Fix wrong function name in comments (Íñigo Huguet) [2004141]
+- brcmsmac: Remove the repeated declaration (Íñigo Huguet) [2004141]
+- brcmsmac: mac80211_if: Fix a resource leak in an error handling path (Íñigo Huguet) [2004141]
+- brcmsmac: Drop unnecessary NULL check after container_of (Íñigo Huguet) [2004141]
+- brcmsmac: improve readability on addresses copy (Íñigo Huguet) [2004141]
+- brcmfmac: Add clm_blob firmware files to modinfo (Íñigo Huguet) [2004141]
+- brcmfmac: Delete second brcm folder hierarchy (Íñigo Huguet) [2004141]
+- brcmfmac: Fix a double-free in brcmf_sdio_bus_reset (Íñigo Huguet) [2004141]
+- brcmfmac: Demote non-compliant kernel-doc headers (Íñigo Huguet) [2004141]
+- brcmfmac: correctly report average RSSI in station info (Íñigo Huguet) [2004141]
+- brcmfmac: fix setting of station info chains bitmask (Íñigo Huguet) [2004141]
+- brcmfmac: use ISO3166 country code and 0 rev as fallback (Íñigo Huguet) [2004141]
+- ath10k: remove unused more_frags variable (Íñigo Huguet) [2004141]
+- ath10k: add missing error return code in ath10k_pci_probe() (Íñigo Huguet) [2004141]
+- ath10k: go to path err_unsupported when chip id is not supported (Íñigo Huguet) [2004141]
+- ath11k: don't call ath11k_pci_set_l1ss for WCN6855 (Íñigo Huguet) [2004141]
+- ath11k: add support for WCN6855 (Íñigo Huguet) [2004141]
+- ath11k: add support to get peer id for WCN6855 (Íñigo Huguet) [2004141]
+- ath11k: setup WBM_IDLE_LINK ring once again (Íñigo Huguet) [2004141]
+- ath11k: setup REO for WCN6855 (Íñigo Huguet) [2004141]
+- ath11k: add dp support for WCN6855 (Íñigo Huguet) [2004141]
+- ath11k: add hw reg support for WCN6855 (Íñigo Huguet) [2004141]
+- ath9k: Fix kernel NULL pointer dereference during ath_reset_internal() (Íñigo Huguet) [2004141]
+- mwifiex: bring down link before deleting interface (Íñigo Huguet) [2004141]
+- mt76: mt7615: Use devm_platform_get_and_ioremap_resource() (Íñigo Huguet) [2004141]
+- wwan: core: add WWAN common private data for netdev (Íñigo Huguet) [2004141]
+- wwan: core: support default netdev creation (Íñigo Huguet) [2004141]
+- wwan: core: no more hold netdev ops owning module (Íñigo Huguet) [2004141]
+- net: mhi_net: Update the transmit handler prototype (Íñigo Huguet) [2004141]
+- bus: mhi: pci-generic: Fix hibernation (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Fix possible use-after-free in mhi_pci_remove() (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: T99W175: update channel name from AT to DUN (Íñigo Huguet) [2004141]
+- mac80211: drop multicast fragments (Íñigo Huguet) [2004141]
+- mac80211: move interface shutdown out of wiphy lock (Íñigo Huguet) [2004141]
+- cfg80211: shut down interfaces on failed resume (Íñigo Huguet) [2004141]
+- cfg80211: fix phy80211 symlink creation (Íñigo Huguet) [2004141]
+- mac80211: fix 'reset' debugfs locking (Íñigo Huguet) [2004141]
+- mac80211: fix deadlock in AP/VLAN handling (Íñigo Huguet) [2004141]
+- mac80211: Fix NULL ptr deref for injected rate info (Íñigo Huguet) [2004141]
+- mac80211: fix skb length check in ieee80211_scan_rx() (Íñigo Huguet) [2004141]
+- mac80211: correct ieee80211_iterate_active_interfaces_mtx() locking comments (Íñigo Huguet) [2004141]
+- cfg80211: call cfg80211_leave_ocb when switching away from OCB (Íñigo Huguet) [2004141]
+- mac80211_hwsim: drop pending frames on stop (Íñigo Huguet) [2004141]
+- mac80211: remove warning in ieee80211_get_sband() (Íñigo Huguet) [2004141]
+- mt76: mt7921: remove leftover 80+80 HE capability (Íñigo Huguet) [2004141]
+- mt76: mt7615: do not set MT76_STATE_PM at bootstrap (Íñigo Huguet) [2004141]
+- ath9k: ar9003_mac: read STBC indicator from rx descriptor (Íñigo Huguet) [2004141]
+- ath10k/ath11k: fix spelling mistake "requed" -> "requeued" (Íñigo Huguet) [2004141]
+- mwifiex: re-fix for unaligned accesses (Íñigo Huguet) [2004141]
+- mt76: mt76x0e: fix device hang during suspend/resume (Íñigo Huguet) [2004141]
+- mt76: mt7921: fix max aggregation subframes setting (Íñigo Huguet) [2004141]
+- mt76: connac: fix HT A-MPDU setting field in STA_REC_PHY (Íñigo Huguet) [2004141]
+- mt76: connac: do not schedule mac_work if the device is not running (Íñigo Huguet) [2004141]
+- mt76: mt7921: fix possible AOOB issue in mt7921_mcu_tx_rate_report (Íñigo Huguet) [2004141]
+- brcmfmac: properly check for bus register errors (Íñigo Huguet) [2004141]
+- Revert "brcmfmac: add a check for the status of usb_register" (Íñigo Huguet) [2004141]
+- net: rtlwifi: properly check for alloc_workqueue() failure (Íñigo Huguet) [2004141]
+- Revert "rtlwifi: fix a potential NULL pointer dereference" (Íñigo Huguet) [2004141]
+- wl3501_cs: Fix out-of-bounds warnings in wl3501_mgmt_join (Íñigo Huguet) [2004141]
+- wl3501_cs: Fix out-of-bounds warnings in wl3501_send_pkt (Íñigo Huguet) [2004141]
+- iwlwifi: mvm: tt: Replace thermal_notify_framework (Íñigo Huguet) [2004141]
+- mt76: debugfs: introduce napi_threaded node (Íñigo Huguet) [2004141]
+- wl3501: fix typo of 'Networks' in comment (Íñigo Huguet) [2004141]
+- mt76: use threaded NAPI (Íñigo Huguet) [2004141]
+- net: mhi_net: make mhi_wwan_ops static (Íñigo Huguet) [2004141]
+- net: mhi_net: Register wwan_ops for link creation (Íñigo Huguet) [2004141]
+- net: mhi: remove pointless conditional before kfree_skb() (Íñigo Huguet) [2004141]
+- net: mhi: Allow decoupled MTU/MRU (Íñigo Huguet) [2004141]
+- net: mhi: Add support for non-linear MBIM skb processing (Íñigo Huguet) [2004141]
+- bus: mhi: fix typo in comments for struct mhi_channel_config (Íñigo Huguet) [2004141]
+- bus: mhi: core: Fix shadow declarations (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Constify mhi_controller_config struct definitions (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Introduce Foxconn T99W175 support (Íñigo Huguet) [2004141]
+- bus: mhi: core: Sanity check values from remote device before use (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Add FIREHOSE channels (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Implement PCI shutdown callback (Íñigo Huguet) [2004141]
+- bus: mhi: Improve documentation on channel transfer setup APIs (Íñigo Huguet) [2004141]
+- bus: mhi: core: Remove __ prefix for MHI channel unprepare function (Íñigo Huguet) [2004141]
+- bus: mhi: core: Check channel execution environment before issuing reset (Íñigo Huguet) [2004141]
+- bus: mhi: core: Clear configuration from channel context during reset (Íñigo Huguet) [2004141]
+- bus: mhi: core: Hold device wake for channel update commands (Íñigo Huguet) [2004141]
+- bus: mhi: core: Update debug messages to use client device (Íñigo Huguet) [2004141]
+- bus: mhi: core: Improvements to the channel handling state machine (Íñigo Huguet) [2004141]
+- bus: mhi: core: Clear context for stopped channels from remove() (Íñigo Huguet) [2004141]
+- bus: mhi: core: Allow sending the STOP channel command (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Add SDX65 based modem support (Íñigo Huguet) [2004141]
+- bus: mhi: core: Remove pre_init flag used for power purposes (Íñigo Huguet) [2004141]
+- bus: mhi: pm: reduce PM state change verbosity (Íñigo Huguet) [2004141]
+- bus: mhi: core: Fix MHI runtime_pm behavior (Íñigo Huguet) [2004141]
+- bus: mhi: core: Move to polling method to wait for MHI ready (Íñigo Huguet) [2004141]
+- bus: mhi: core: Introduce internal register poll helper function (Íñigo Huguet) [2004141]
+- bus: mhi: core: Improve state strings for debug messages (Íñigo Huguet) [2004141]
+- bus: mhi: core: Wait for MHI READY state in most scenarios (Íñigo Huguet) [2004141]
+- bus: mhi: core: Identify Flash Programmer as a mission mode use case (Íñigo Huguet) [2004141]
+- bus: mhi: core: Add support for Flash Programmer execution environment (Íñigo Huguet) [2004141]
+- bus: mhi: core: Handle EDL mode entry appropriately (Íñigo Huguet) [2004141]
+- bus: mhi: core: Wait for ready after an EDL firmware download (Íñigo Huguet) [2004141]
+- bus: mhi: core: Rely on accurate method to determine EDL mode (Íñigo Huguet) [2004141]
+- bus: mhi: core: Check state before processing power_down (Íñigo Huguet) [2004141]
+- bus: mhi: core: Return EAGAIN if MHI ring is full (Íñigo Huguet) [2004141]
+- net: export dev_set_threaded symbol (Íñigo Huguet) [2004141]
+- bus: mhi: core: remove redundant initialization of variables state and ee (Íñigo Huguet) [2004141]
+- bus: mhi: Make firmware image optional for controller (Íñigo Huguet) [2004141]
+- bus: mhi: core: Add missing checks for MMIO register entries (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Add support for runtime PM (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Use generic PCI power management (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: No-Op for device_wake operations (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Add SDX24 based modem support (Íñigo Huguet) [2004141]
+- bus: mhi: Early MHI resume failure in non M3 state (Íñigo Huguet) [2004141]
+- bus: mhi: core: Update debug prints to include local device state (Íñigo Huguet) [2004141]
+- bus: mhi: core: Process execution environment changes serially (Íñigo Huguet) [2004141]
+- bus: mhi: core: Download AMSS image from appropriate function (Íñigo Huguet) [2004141]
+- bus: mhi: core: Destroy SBL devices when moving to mission mode (Íñigo Huguet) [2004141]
+- bus: mhi: core: Rename debugfs directory name (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Introduce quectel EM1XXGR-L support (Íñigo Huguet) [2004141]
+- bus: mhi: pci_generic: Parametrable element count for events (Íñigo Huguet) [2004141]
+- ath10k: Detect conf_mutex held ath10k_drain_tx() calls (Íñigo Huguet) [2004141]
+- net: mhi: Add mbim proto (Íñigo Huguet) [2004141]
+- net: mhi: Add rx_length_errors stat (Íñigo Huguet) [2004141]
+- net: mhi: Create mhi.h (Íñigo Huguet) [2004141]
+- net: mhi: Add dedicated folder (Íñigo Huguet) [2004141]
+- net: mhi: Add protocol support (Íñigo Huguet) [2004141]
+- net: mhi-net: Add re-aggregation of fragmented packets (Íñigo Huguet) [2004141]
+- net: mhi: Get rid of local rx queue count (Íñigo Huguet) [2004141]
+- net: mhi: Get RX queue size from MHI core (Íñigo Huguet) [2004141]
+- net: mhi: Set wwan device type (Íñigo Huguet) [2004141]
+- net: mhi: Add raw IP mode support (Íñigo Huguet) [2004141]
+- net: mhi: Fix unexpected queue wake (Íñigo Huguet) [2004141]
+- net: Add mhi-net driver (Íñigo Huguet) [2004141]
+- ipv4: make exception cache less predictible (Antoine Tenart) [2015111] {CVE-2021-20322}
+- ipv4: use siphash instead of Jenkins in fnhe_hashfun() (Antoine Tenart) [2015111] {CVE-2021-20322}
+- iommu/dma: Account for min_align_mask w/swiotlb (Jerry Snitselaar) [2018601]
+- swiotlb: Support aligned swiotlb buffers (Jerry Snitselaar) [2018601]
+- iommu/dma: Check CONFIG_SWIOTLB more broadly (Jerry Snitselaar) [2018601]
+- iommu/dma: Fold _swiotlb helpers into callers (Jerry Snitselaar) [2018601]
+- iommu/dma: Skip extra sync during unmap w/swiotlb (Jerry Snitselaar) [2018601]
+- iommu/dma: Fix arch_sync_dma for map (Jerry Snitselaar) [2018601]
+- iommu/dma: Fix sync_sg with swiotlb (Jerry Snitselaar) [2018601]
+- redhat/configs: Add CONFIG_DMA_RESTRICTED_POOL (Jerry Snitselaar) [2018601]
+- swiotlb: use depends on for DMA_RESTRICTED_POOL (Jerry Snitselaar) [2018601]
+- powerpc/svm: Don't issue ultracalls if !mem_encrypt_active() (Jerry Snitselaar) [2018601]
+- s390/pv: fix the forcing of the swiotlb (Jerry Snitselaar) [2018601]
+- swiotlb: Free tbl memory in swiotlb_exit() (Jerry Snitselaar) [2018601]
+- swiotlb: Emit diagnostic in swiotlb_exit() (Jerry Snitselaar) [2018601]
+- swiotlb: Convert io_default_tlb_mem to static allocation (Jerry Snitselaar) [2018601]
+- swiotlb: fix implicit debugfs declarations (Jerry Snitselaar) [2018601]
+- swiotlb: Add restricted DMA pool initialization (Jerry Snitselaar) [2018601]
+- swiotlb: Add restricted DMA alloc/free support (Jerry Snitselaar) [2018601]
+- swiotlb: Refactor swiotlb_tbl_unmap_single (Jerry Snitselaar) [2018601]
+- swiotlb: Move alloc_size to swiotlb_find_slots (Jerry Snitselaar) [2018601]
+- swiotlb: Use is_swiotlb_force_bounce for swiotlb data bouncing (Jerry Snitselaar) [2018601]
+- swiotlb: Update is_swiotlb_active to add a struct device argument (Jerry Snitselaar) [2018601]
+- swiotlb: Update is_swiotlb_buffer to add a struct device argument (Jerry Snitselaar) [2018601]
+- swiotlb: Set dev->dma_io_tlb_mem to the swiotlb pool used (Jerry Snitselaar) [2018601]
+- swiotlb: Refactor swiotlb_create_debugfs (Jerry Snitselaar) [2018601]
+- swiotlb: Refactor swiotlb init functions (Jerry Snitselaar) [2018601]
+- of: Drop superfluous ULL suffix for ~0 (Jerry Snitselaar) [2018601]
+- dma-mapping: fix 32-bit overflow with CONFIG_ARM_LPAE=n (Jerry Snitselaar) [2018601]
+- of/device: Update dma_range_map only when dev has valid dma-ranges (Jerry Snitselaar) [2018601]
+- drivers core: Fix oops when driver probe fails (Jerry Snitselaar) [2018601]
+- drivers core: Free dma_range_map when driver probe failed (Jerry Snitselaar) [2018601]
+- driver core: Postpone DMA tear-down until after devres release for probe failure (Jerry Snitselaar) [2018601]
+- powerpc/pseries/iommu: Fix window size for direct mapping with pmem (Jerry Snitselaar) [2018601]
+- dma-mapping: add a dma_init_global_coherent helper (Jerry Snitselaar) [2018601]
+- dma-mapping: simplify dma_init_coherent_memory (Jerry Snitselaar) [2018601]
+- dma-debug: fix debugfs initialization order (Jerry Snitselaar) [2018601]
+- dma-debug: teach add_dma_entry() about DMA_ATTR_SKIP_CPU_SYNC (Jerry Snitselaar) [2018601]
+- dma-debug: fix sg checks in debug_dma_map_sg() (Jerry Snitselaar) [2018601]
+- swiotlb-xen: ensure to issue well-formed XENMEM_exchange requests (Jerry Snitselaar) [2018601]
+- dma-debug: prevent an error message from causing runtime problems (Jerry Snitselaar) [2018601]
+- swiotlb-xen: drop DEFAULT_NSLABS (Jerry Snitselaar) [2018601]
+- swiotlb-xen: arrange to have buffer info logged (Jerry Snitselaar) [2018601]
+- swiotlb-xen: drop leftover __ref (Jerry Snitselaar) [2018601]
+- swiotlb-xen: limit init retries (Jerry Snitselaar) [2018601]
+- swiotlb-xen: suppress certain init retries (Jerry Snitselaar) [2018601]
+- swiotlb-xen: maintain slab count properly (Jerry Snitselaar) [2018601]
+- swiotlb-xen: fix late init retry (Jerry Snitselaar) [2018601]
+- swiotlb-xen: avoid double free (Jerry Snitselaar) [2018601]
+- dma-mapping: handle vmalloc addresses in dma_common_{mmap,get_sgtable} (Jerry Snitselaar) [2018601]
+- dma-debug: report -EEXIST errors in add_dma_entry (Jerry Snitselaar) [2018601]
+- dma-mapping: remove a trailing space (Jerry Snitselaar) [2018601]
+- dma-mapping: add unlikely hint to error path in dma_mapping_error (Jerry Snitselaar) [2018601]
+- dma-mapping: remove a pointless empty line in dma_alloc_coherent (Jerry Snitselaar) [2018601]
+- swiotlb: Make SWIOTLB_NO_FORCE perform no allocation (Jerry Snitselaar) [2018601]
+- swiotlb: remove swiotlb_nr_tbl (Jerry Snitselaar) [2018601]
+- xen/swiotlb: check if the swiotlb has already been initialized (Jerry Snitselaar) [2018601]
+- swiotlb: add overflow checks to swiotlb_bounce (Jerry Snitselaar) [2002023]
+- swiotlb: don't override user specified size in swiotlb_adjust_size (Jerry Snitselaar) [2002023]
+- swiotlb: dynamically allocate io_tlb_default_mem (Jerry Snitselaar) [2002023]
+- swiotlb: move global variables into a new io_tlb_mem structure (Jerry Snitselaar) [2002023]
+- xen-swiotlb: remove the unused size argument from xen_swiotlb_fixup (Jerry Snitselaar) [2018601]
+- xen-swiotlb: split xen_swiotlb_init (Jerry Snitselaar) [2018601]
+- swiotlb: lift the double initialization protection from xen-swiotlb (Jerry Snitselaar) [2002023]
+- xen-swiotlb: remove xen_io_tlb_start and xen_io_tlb_nslabs (Jerry Snitselaar) [2018601]
+- xen-swiotlb: remove xen_set_nslabs (Jerry Snitselaar) [2018601]
+- xen-swiotlb: use io_tlb_end in xen_swiotlb_dma_supported (Jerry Snitselaar) [2018601]
+- xen-swiotlb: use is_swiotlb_buffer in is_xen_swiotlb_buffer (Jerry Snitselaar) [2018601]
+- swiotlb: split swiotlb_tbl_sync_single (Jerry Snitselaar) [2002023]
+- swiotlb: manipulate orig_addr when tlb_addr has offset (Jerry Snitselaar) [2002023]
+- swiotlb: move orig addr and size validation into swiotlb_bounce (Jerry Snitselaar) [2002023]
+- swiotlb: remove the alloc_size parameter to swiotlb_tbl_unmap_single (Jerry Snitselaar) [2002023]
+- swiotlb: Fix the type of index (Jerry Snitselaar) [2018601]
+- swiotlb: Validate bounce size in the sync/unmap path (Jerry Snitselaar) [2002023]
+- powerpc/svm: stop using io_tlb_start (Jerry Snitselaar) [2002023]
+- nvme-pci: set min_align_mask (Jerry Snitselaar) [2002023]
+- swiotlb: respect min_align_mask (Jerry Snitselaar) [2002023]
+- swiotlb: don't modify orig_addr in swiotlb_tbl_sync_single (Jerry Snitselaar) [2002023]
+- swiotlb: refactor swiotlb_tbl_map_single (Jerry Snitselaar) [2002023]
+- swiotlb: clean up swiotlb_tbl_unmap_single (Jerry Snitselaar) [2002023]
+- swiotlb: factor out a nr_slots helper (Jerry Snitselaar) [2002023]
+- swiotlb: factor out an io_tlb_offset helper (Jerry Snitselaar) [2002023]
+- swiotlb: add a IO_TLB_SIZE define (Jerry Snitselaar) [2002023]
+- driver core: add a min_align_mask field to struct device_dma_parameters (Jerry Snitselaar) [2002023]
+- sdhci: stop poking into swiotlb internals (Jerry Snitselaar) [2018601]
+- driver core: lift dma_default_coherent into common code (Jerry Snitselaar) [2018601]
+- dma-pool: no need to check return value of debugfs_create functions (Jerry Snitselaar) [2018601]
+- powerpc/dma: Fallback to dma_ops when persistent memory present (Jerry Snitselaar) [2018601]
+- dma-mapping: Allow mixing bypass and mapped DMA operation (Jerry Snitselaar) [2018601]
+- dma-mapping: remove the dma_direct_set_offset export (Jerry Snitselaar) [2018601]
+- dma-mapping: move more functions to dma-map-ops.h (Jerry Snitselaar) [2018601]
+- dma-mapping: merge <linux/dma-noncoherent.h> into <linux/dma-map-ops.h> (Jerry Snitselaar) [2018601]
+- dma-mapping: move large parts of <linux/dma-direct.h> to kernel/dma (Jerry Snitselaar) [2018601]
+- dma-mapping: add (back) arch_dma_mark_clean for ia64 (Jerry Snitselaar) [2018601]
+- dma-mapping: move dma-debug.h to kernel/dma/ (Jerry Snitselaar) [2018601]
+- dma-mapping: split <linux/dma-mapping.h> (Jerry Snitselaar) [2018601]
+- dma-mapping: introduce DMA range map, supplanting dma_pfn_offset (Jerry Snitselaar) [2018601]
+- of: Make of_dma_get_range() private (Jerry Snitselaar) [2018601]
+- swiotlb: fix comment on swiotlb_bounce() (Jerry Snitselaar) [2018601]
+- xen/arm: introduce phys/dma translations in xen_dma_sync_for_* (Jerry Snitselaar) [2018601]
+- swiotlb-xen: add struct device * parameter to xen_dma_sync_for_device (Jerry Snitselaar) [2018601]
+- swiotlb-xen: add struct device * parameter to xen_dma_sync_for_cpu (Jerry Snitselaar) [2018601]
+- swiotlb-xen: introduce phys_to_dma/dma_to_phys translations (Jerry Snitselaar) [2018601]
+- swiotlb-xen: remove XEN_PFN_PHYS (Jerry Snitselaar) [2018601]
+- swiotlb-xen: add struct device * parameter to is_xen_swiotlb_buffer (Jerry Snitselaar) [2018601]
+- swiotlb-xen: add struct device * parameter to xen_bus_to_phys (Jerry Snitselaar) [2018601]
+- swiotlb-xen: add struct device * parameter to xen_phys_to_bus (Jerry Snitselaar) [2018601]
+- swiotlb-xen: use vmalloc_to_page on vmalloc virt addresses (Jerry Snitselaar) [2018601]
+- swiotlb-xen: Convert to use macro (Jerry Snitselaar) [2018601]
+- swiotlb-xen: merge xen_unmap_single into xen_swiotlb_unmap_page (Jerry Snitselaar) [2018601]
+- swiotlb-xen: remove xen_swiotlb_dma_mmap and xen_swiotlb_dma_get_sgtable (Jerry Snitselaar) [2018601]
+- xen/swiotlb: remember having called xen_create_contiguous_region() (Jerry Snitselaar) [2018601]
+- xen/swiotlb: simplify range_straddles_page_boundary() (Jerry Snitselaar) [2018601]
+- xen/swiotlb: fix condition for calling xen_destroy_contiguous_region() (Jerry Snitselaar) [2018601]
+- xen/swiotlb: don't initialize swiotlb twice on arm64 (Jerry Snitselaar) [2018601]
+- xen-swiotlb: use actually allocated size on check physical continuous (Jerry Snitselaar) [2018601]
+- igb: fix deadlock caused by taking RTNL in RPM resume path (Corinna Vinschen) [2039882]
+- igb: Fix removal of unicast MAC filters of VFs (Corinna Vinschen) [2039882]
+- net: ena: Fix error handling when calculating max IO queues number (Petr Oros) [2038158]
+- net: ena: Fix wrong rx request id by resetting device (Petr Oros) [2038158]
+- net: ena: Fix undefined state when tx request id is out of bounds (Petr Oros) [2038158]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Petr Oros) [2038158]
+- ena: Remove rcu_read_lock() around XDP program invocation (Petr Oros) [2038158]
+- net: ena: make symbol 'ena_alloc_map_page' static (Petr Oros) [2038158]
+- net: ena: fix DMA mapping function issues in XDP (Petr Oros) [2038158]
+- net: ena: re-organize code to improve readability (Petr Oros) [2038158]
+- net: ena: Use dev_alloc() in RX buffer allocation (Petr Oros) [2038158]
+- net: ena: aggregate doorbell common operations into a function (Petr Oros) [2038158]
+- net: ena: fix RST format in ENA documentation file (Petr Oros) [2038158]
+- net: ena: Remove module param and change message severity (Petr Oros) [2038158]
+- net: ena: add jiffies of last napi call to stats (Petr Oros) [2038158]
+- net: ena: use build_skb() in RX path (Petr Oros) [2038158]
+- net: ena: Improve error logging in driver (Petr Oros) [2038158]
+- net: ena: Remove unused code (Petr Oros) [2038158]
+- net: ena: optimize data access in fast-path code (Petr Oros) [2038158]
+- kasan, slub: reset tag when printing address (Nico Pache) [1954335]
+- kasan: fix Kconfig check of CC_HAS_WORKING_NOSANITIZE_ADDRESS (Nico Pache) [1954335]
+- Documentation: kunit: add tips for using current->kunit_test (Nico Pache) [1954335]
+- kunit: fix -Wunused-function warning for __kunit_fail_current_test (Nico Pache) [1954335]
+- kunit: support failure from dynamic analysis tools (Nico Pache) [1954335]
+- Add KASAN KUNIT Tests to Redhat kernel-modules-internal (Nico Pache) [1954335]
+- kasan, mm: fix resetting page_alloc tags for HW_TAGS (Nico Pache) [1954335]
+- kasan, mm: fix conflicts with init_on_alloc/free (Nico Pache) [1954335]
+- powerpc/uaccess: get rid of small constant size cases in raw_copy_{to,from}_user() (Nico Pache) [1954335]
+- kasan: remove redundant config option (Nico Pache) [1954335]
+- kasan: fix hwasan build for gcc (Nico Pache) [1954335]
+- lib/test_kasan_module.c: suppress unused var warning (Nico Pache) [1954335]
+- kasan: fix conflict with page poisoning (Nico Pache) [1954335]
+- kasan: fix per-page tags for non-page_alloc pages (Nico Pache) [1954335]
+- kasan: fix KASAN_STACK dependency for HW_TAGS (Nico Pache) [1954335]
+- kasan: clarify that only first bug is reported in HW_TAGS (Nico Pache) [1954335]
+- kasan: inline HW_TAGS helper functions (Nico Pache) [1954335]
+- kasan: ensure poisoning size alignment (Nico Pache) [1954335]
+- kasan, mm: optimize krealloc poisoning (Nico Pache) [1954335]
+- kasan, mm: fail krealloc on freed objects (Nico Pache) [1954335]
+- kasan: rework krealloc tests (Nico Pache) [1954335]
+- kasan: unify large kfree checks (Nico Pache) [1954335]
+- kasan: clean up setting free info in kasan_slab_free (Nico Pache) [1954335]
+- kasan: optimize large kmalloc poisoning (Nico Pache) [1954335]
+- kasan, mm: optimize kmalloc poisoning (Nico Pache) [1954335]
+- kasan, mm: don't save alloc stacks twice (Nico Pache) [1954335]
+- kasan: don't run tests when KASAN is not enabled (Nico Pache) [1954335]
+- kasan: add a test for kmem_cache_alloc/free_bulk (Nico Pache) [1954335]
+- kasan: add proper page allocator tests (Nico Pache) [1954335]
+- kasan: fix bug detection via ksize for HW_TAGS mode (Nico Pache) [1954335]
+- kasan: move _RET_IP_ to inline wrappers (Nico Pache) [1954335]
+- kasan: fix memory corruption in kasan_bitops_tags test (Nico Pache) [1954335]
+- kasan: rename CONFIG_TEST_KASAN_MODULE (Nico Pache) [1954335]
+- kasan: add match-all tag tests (Nico Pache) [1954335]
+- kasan: add macros to simplify checking test constraints (Nico Pache) [1954335]
+- kasan: clean up comments in tests (Nico Pache) [1954335]
+- kasan: clarify HW_TAGS impact on TBI (Nico Pache) [1954335]
+- kasan: prefix global functions with kasan_ (Nico Pache) [1954335]
+- kasan: fix stack traces dependency for HW_TAGS (Nico Pache) [1954335]
+- kasan: make addr_has_metadata() return true for valid addresses (Nico Pache) [1954335]
+- kasan: add explicit preconditions to kasan_report() (Nico Pache) [1954335]
+- kasan: fix HW_TAGS boot parameters (Nico Pache) [1954335]
+- kasan: fix null pointer dereference in kasan_record_aux_stack (Nico Pache) [1954335]
+- kasan: update documentation (Nico Pache) [1954335]
+- kasan, mm: allow cache merging with no metadata (Nico Pache) [1954335]
+- kasan: sanitize objects when metadata doesn't fit (Nico Pache) [1954335]
+- kasan: clarify comment in __kasan_kfree_large (Nico Pache) [1954335]
+- kasan: simplify assign_tag and set_tag calls (Nico Pache) [1954335]
+- kasan: don't round_up too much (Nico Pache) [1954335]
+- kasan, mm: rename kasan_poison_kfree (Nico Pache) [1954335]
+- kasan, mm: check kasan_enabled in annotations (Nico Pache) [1954335]
+- kasan: add and integrate kasan boot parameters (Nico Pache) [1954335]
+- kasan: inline (un)poison_range and check_invalid_free (Nico Pache) [1954335]
+- kasan: open-code kasan_unpoison_slab (Nico Pache) [1954335]
+- kasan: inline random_tag for HW_TAGS (Nico Pache) [1954335]
+- kasan: inline kasan_reset_tag for tag-based modes (Nico Pache) [1954335]
+- kasan: remove __kasan_unpoison_stack (Nico Pache) [1954335]
+- kasan: allow VMAP_STACK for HW_TAGS mode (Nico Pache) [1954335]
+- kasan, arm64: unpoison stack only with CONFIG_KASAN_STACK (Nico Pache) [1954335]
+- kasan: introduce set_alloc_info (Nico Pache) [1954335]
+- kasan: rename get_alloc/free_info (Nico Pache) [1954335]
+- kasan: simplify quarantine_put call site (Nico Pache) [1954335]
+- kasan: add documentation for hardware tag-based mode (Nico Pache) [1954335]
+- kasan, mm: reset tags when accessing metadata (Nico Pache) [1954335]
+- kasan, arm64: print report from tag fault handler (Nico Pache) [1954335]
+- kasan, arm64: implement HW_TAGS runtime (Nico Pache) [1954335]
+- kasan, arm64: expand CONFIG_KASAN checks (Nico Pache) [1954335]
+- string.h: fix incompatibility between FORTIFY_SOURCE and KASAN (Nico Pache) [1954335]
+- kasan, x86, s390: update undef CONFIG_KASAN (Nico Pache) [1954335]
+- kasan: define KASAN_GRANULE_SIZE for HW_TAGS (Nico Pache) [1954335]
+- arm64: kasan: add arch layer for memory tagging helpers (Nico Pache) [1954335]
+- kasan, mm: untag page address in free_reserved_area (Nico Pache) [1954335]
+- mm: Allow non-direct-map arguments to free_reserved_area() (Nico Pache) [1954335]
+- kasan: introduce CONFIG_KASAN_HW_TAGS (Nico Pache) [1954335]
+- kasan: separate metadata_fetch_row for each mode (Nico Pache) [1954335]
+- kasan: rename SHADOW layout macros to META (Nico Pache) [1954335]
+- kasan: rename print_shadow_for_address to print_memory_metadata (Nico Pache) [1954335]
+- kasan: rename addr_has_shadow to addr_has_metadata (Nico Pache) [1954335]
+- kasan, arm64: rename kasan_init_tags and mark as __init (Nico Pache) [1954335]
+- kasan, arm64: move initialization message (Nico Pache) [1954335]
+- kasan, arm64: only use kasan_depth for software modes (Nico Pache) [1954335]
+- kasan, arm64: only init shadow for software modes (Nico Pache) [1954335]
+- kasan: decode stack frame only with KASAN_STACK_ENABLE (Nico Pache) [1954335]
+- kasan: hide invalid free check implementation (Nico Pache) [1954335]
+- kasan: don't duplicate config dependencies (Nico Pache) [1954335]
+- kasan: rename report and tags files (Nico Pache) [1954335]
+- kasan: define KASAN_MEMORY_PER_SHADOW_PAGE (Nico Pache) [1954335]
+- kasan: split out shadow.c from common.c (Nico Pache) [1954335]
+- kasan: only build init.c for software modes (Nico Pache) [1954335]
+- kasan: rename KASAN_SHADOW_* to KASAN_GRANULE_* (Nico Pache) [1954335]
+- kasan: rename (un)poison_shadow to (un)poison_range (Nico Pache) [1954335]
+- fork: support VMAP_STACK with KASAN_VMALLOC (Nico Pache) [1954335]
+- kasan: shadow declarations only for software modes (Nico Pache) [1954335]
+- kasan: group vmalloc code (Nico Pache) [1954335]
+- kasan: KASAN_VMALLOC depends on KASAN_GENERIC (Nico Pache) [1954335]
+- kasan: drop unnecessary GPL text from comment headers (Nico Pache) [1954335]
+- kasan: update documentation for generic kasan (Nico Pache) [1954335]
+- kasan: print workqueue stack (Nico Pache) [1954335]
+- kasan: fix object remaining in offline per-cpu quarantine (Nico Pache) [1954335]
+- kasan: adopt KUNIT tests to SW_TAGS mode (Nico Pache) [1954335]
+- docs: kasan.rst: add two missing blank lines (Nico Pache) [1954335]
+- mm: kasan: do not panic if both panic_on_warn and kasan_multishot set (Nico Pache) [1954335]
+- KASAN: Testing Documentation (Nico Pache) [1954335]
+- KASAN: port KASAN Tests to KUnit (Nico Pache) [1954335]
+- KUnit: KASAN Integration (Nico Pache) [1954335]
+- kasan/kunit: add KUnit Struct to Current Task (Nico Pache) [1954335]
+- kasan: remove mentions of unsupported Clang versions (Nico Pache) [1954335]
+- kbuild: move CFLAGS_{KASAN,UBSAN,KCSAN} exports to relevant Makefiles (Nico Pache) [1954335]
+- s390/kasan: make shadow memory noexec (Nico Pache) [1954335]
+- kasan: adjust kasan_stack_oob for tag-based mode (Nico Pache) [1954335]
+- kasan: allow enabling stack tagging for tag-based mode (Nico Pache) [1954335]
+- kasan: don't tag stacks allocated with pagealloc (Nico Pache) [1954335]
+- lib/test_kasan.c: fix KASAN unit tests for tag-based KASAN (Nico Pache) [1954335]
+- kasan: remove kasan_unpoison_stack_above_sp_to() (Nico Pache) [1954335]
+- kasan: add tests for call_rcu stack recording (Nico Pache) [1954335]
+- kprobes: Remove show_registers() function prototype (Nico Pache) [1954335]
+- kasan: stop tests being eliminated as dead code with FORTIFY_SOURCE (Nico Pache) [1954335]
+- kasan: move kasan_report() into report.c (Nico Pache) [1954335]
+- kasan: stackdepot: move filter_irq_stacks() to stackdepot.c (Nico Pache) [1954335]
+- lib/stackdepot.c: check depot_index before accessing the stack slab (Nico Pache) [1954335]
+- lib/stackdepot: Remove obsolete functions (Nico Pache) [1954335]
+- kasan: add test for invalid size in memmove (Nico Pache) [1954335]
+- mm/memory-failure.c: use page_shift() in add_to_kill() (Nico Pache) [1954335]
+- x86: get rid of small constant size cases in raw_copy_{to,from}_user() (Nico Pache) [1954335]
+- s390/kasan: add KASAN_VMALLOC support (Nico Pache) [1954335]
+- s390: move vmalloc option parsing to startup code (Nico Pache) [1954335]
+- kasan: add test for vmalloc (Nico Pache) [1954335]
+- ehea: replace with page_shift() in ehea_is_hugepage() (Nico Pache) [1954335]
+- mm: introduce page_shift() (Nico Pache) [1954335]
+- lib/test_kasan.c: add roundtrip tests (Nico Pache) [1954335]
+- lib/test_kasan: Add test for double-kzfree detection (Nico Pache) [1954335]
+- lib/test_kasan: add bitops tests (Nico Pache) [1954335]
+- asm-generic, x86: add bitops instrumentation for KASAN (Nico Pache) [1954335]
+- x86: use static_cpu_has in uaccess region to avoid instrumentation (Nico Pache) [1954335]
+- x86/asm: Use stricter assembly constraints in bitops (Nico Pache) [1954335]
+- x86/asm: Remove dead __GNUC__ conditionals (Nico Pache) [1954335]
+- s390/kasan: adapt disabled_wait usage to avoid build error (Nico Pache) [1954335]
+- s390: simplify disabled_wait (Nico Pache) [1954335]
+- lib/test_kasan.c: add tests for several string/memory API functions (Nico Pache) [1954335]
+- arm64: Fix typo in a comment in arch/arm64/mm/kasan_init.c (Nico Pache) [1954335]
+- kprobes: Remove jprobe stub API (Nico Pache) [1954335]
+- Documentation/kprobes: Add how to change the execution path (Nico Pache) [1954335]
+- kprobes/x86: Do not disable preempt on int3 path (Nico Pache) [1954335]
+- bpf/error-inject/kprobes: Clear current_kprobe and enable preempt in kprobe (Nico Pache) [1954335]
+- s390/kprobes: Don't call the ->break_handler() in s390 kprobes code (Nico Pache) [1954335]
+- powerpc/kprobes: Don't call the ->break_handler() in powerpc kprobes code (Nico Pache) [1954335]
+- arm64/kprobes: Don't call the ->break_handler() in arm64 kprobes code (Nico Pache) [1954335]
+- kprobes/x86: Don't call the ->break_handler() in x86 kprobes (Nico Pache) [1954335]
+- kprobes: Don't check the ->break_handler() in generic kprobes code (Nico Pache) [1954335]
+- kprobes/x86: Remove jprobe implementation (Nico Pache) [1954335]
+- s390/kprobes: Remove jprobe implementation (Nico Pache) [1954335]
+- powerpc/kprobes: Remove jprobe powerpc implementation (Nico Pache) [1954335]
+- arm64/kprobes: Remove jprobe implementation (Nico Pache) [1954335]
+- kprobes: Remove jprobe API implementation (Nico Pache) [1954335]
+- Documentation/kprobes: Remove jprobes related leftover (Nico Pache) [1954335]
+- redhat: config: explicitly set CONFIG_ARM64_VA_BITS_48 for ARM64 (Nico Pache) [1954335]
+- arm64: mm: use a 48-bit ID map when possible on 52-bit VA builds (Nico Pache) [1954335]
+- arm64: mm: limit linear region to 51 bits for KVM in nVHE mode (Nico Pache) [1954335]
+- Documentation/arm64: fix RST layout of memory.rst (Nico Pache) [1954335]
+- arm64: mm: Remove MAX_USER_VA_BITS definition (Nico Pache) [1954335]
+- arm64: Use simpler arithmetics for the linear map macros (Nico Pache) [1954335]
+- arm64: mm: use single quantity to represent the PA to VA translation (Nico Pache) [1954335]
+- kasan/arm64: fix CONFIG_KASAN_SW_TAGS && KASAN_INLINE (Nico Pache) [1954335]
+- arm64: Do not pass tagged addresses to __is_lm_address() (Nico Pache) [1954335]
+- arm64: Fix kernel address detection of __is_lm_address() (Nico Pache) [1954335]
+- arm64: mm: extend linear region for 52-bit VA configurations (Nico Pache) [1954335]
+- arm64: Fix kcore macros after 52-bit virtual addressing fallout (Nico Pache) [1954335]
+- arm64: fix fixmap copy for 16K pages and 48-bit VA (Nico Pache) [1954335]
+- arm64: memory: rename VA_START to PAGE_END (Nico Pache) [1954335]
+- arm64: memory: Simplify _VA_START and _PAGE_OFFSET definitions (Nico Pache) [1954335]
+- arm64: memory: fix flipped VA space fallout (Nico Pache) [1954335]
+- arm64: memory: Fix virt_addr_valid() using __is_lm_address() (Nico Pache) [1954335]
+- arm64: memory: Ensure address tag is masked in conversion macros (Nico Pache) [1954335]
+- arm64: mm: Simplify definition of virt_addr_valid() (Nico Pache) [1954335]
+- docs: arm64: Add layout and 52-bit info to memory document (Nico Pache) [1954335]
+- arm64: mm: Remove vabits_user (Nico Pache) [1954335]
+- arm64: mm: Introduce 52-bit Kernel VAs (Nico Pache) [1954335]
+- arm64: mm: Modify calculation of VMEMMAP_SIZE (Nico Pache) [1954335]
+- arm64: mm: Separate out vmemmap (Nico Pache) [1954335]
+- arm64: mm: Logic to make offset_ttbr1 conditional (Nico Pache) [1954335]
+- arm64: mm: Introduce vabits_actual (Nico Pache) [1954335]
+- arm64: Print physical address of page table base in show_pte() (Nico Pache) [1954335]
+- arm64: mm: Introduce VA_BITS_MIN (Nico Pache) [1954335]
+- arm64: dump: De-constify VA_START and KASAN_SHADOW_START (Nico Pache) [1954335]
+- arm64: kasan: Switch to using KASAN_SHADOW_OFFSET (Nico Pache) [1954335]
+- arm64: mm: Flip kernel VA space (Nico Pache) [1954335]
+- arm64: mm: Remove bit-masking optimisations for PAGE_OFFSET and VMEMMAP_START (Nico Pache) [1954335]
+- arm64: dump: Use consistent capitalisation for page-table dumps (Nico Pache) [1954335]
+- kernel/rwsem: Use proper directories for rwsem_init.c (Scott Wood) [2040087]
+- redhat: Cleanup use of mark_hardware_removed (Prarit Bhargava) [2019378]
+- redhat: Cleanup use of mark_hardware_unsupported (Prarit Bhargava) [2019378]
+- redhat: clean up mark_hardware_deprecated() (Prarit Bhargava) [2019378]
+- nvme: Mark NVMe over FC Target support unmaintained (Prarit Bhargava) [2019378]
+- hdlc_fr: Mark driver unmaintained (Prarit Bhargava) [2019378]
+- sfc: Mark siena driver deprecated (Prarit Bhargava) [2019378]
+- qla3xxx: Mark driver unmaintained (Prarit Bhargava) [2019378]
+- netxen: Mark nic driver unmaintained (Prarit Bhargava) [2019378]
+- ethoc: Mark driver unmaintained (Prarit Bhargava) [2019378]
+- dnet: Mark driver unmaintained (Prarit Bhargava) [2019378]
+- drivers/pci/pci-driver.c: Fix if/ifdef typo (Prarit Bhargava) [2019378]
+- kernel/rh_taint.c: Update to new messaging (Prarit Bhargava) [2019378]
+- drm/i915/dmc: Change max DMC FW size on ADL-P (Michel Dänzer) [1988103]
+- drm/i915: Add workaround numbers to GEN7_COMMON_SLICE_CHICKEN1 whitelisting (Michel Dänzer) [1988103]
+- drm/i915: Fix Memory BW formulae for ADL-P (Michel Dänzer) [1988103]
+- drm/i915: Restore memory mapping for DPT FBs across system suspend/resume (Michel Dänzer) [1988103]
+- drm/i915: Factor out i915_ggtt_suspend_vm/i915_ggtt_resume_vm() (Michel Dänzer) [1988103]
+- drm/i915/adlp/fb: Remove restriction on CCS AUX plane strides (Michel Dänzer) [1988103]
+- drm/i915/adlp/fb: Remove restriction on semiplanar UV plane offset (Michel Dänzer) [1988103]
+- drm/i915/fb: Rename i915_color_plane_view::stride to mapping_stride (Michel Dänzer) [1988103]
+- drm/i915/adlp/fb: Fix remapping of linear CCS AUX surfaces (Michel Dänzer) [1988103]
+- drm/i915/fb: Factor out functions to remap contiguous FB obj pages (Michel Dänzer) [1988103]
+- drm/i915/adlp/fb: Prevent the mapping of redundant trailing padding NULL pages (Michel Dänzer) [1988103]
+- drm/i915: Add functions to check for RC CCS CC and MC CCS modifiers (Michel Dänzer) [1988103]
+- drm/i915: Move is_ccs_modifier() to intel_fb.c (Michel Dänzer) [1988103]
+- drm/i915: Add a platform independent way to check for CCS AUX planes (Michel Dänzer) [1988103]
+- drm/i915: Handle CCS CC planes separately from CCS AUX planes (Michel Dänzer) [1988103]
+- drm/i915: Add a platform independent way to get the RC CCS CC plane (Michel Dänzer) [1988103]
+- drm/i915: Move intel_format_info_is_yuv_semiplanar() to intel_fb.c (Michel Dänzer) [1988103]
+- drm/i915: Unexport is_semiplanar_uv_plane() (Michel Dänzer) [1988103]
+- drm/i915: Simplify the modifier check for interlaced scanout support (Michel Dänzer) [1988103]
+- drm/i915: Add tiling attribute to the modifier descriptor (Michel Dänzer) [1988103]
+- drm/i915: Move intel_get_format_info() to intel_fb.c (Michel Dänzer) [1988103]
+- drm/i915: Add a table with a descriptor for all i915 modifiers (Michel Dänzer) [1988103]
+- drm/i915/adlp: Implement workaround 16013190616 (Michel Dänzer) [1988103]
+- drm/i915/adlp: Extend PSR2 support in transcoder B (Michel Dänzer) [1988103]
+- drm/i915/display: Wait PSR2 get out of deep sleep to update pipe (Michel Dänzer) [1988103]
+- drm/i915/display/adlp: Allow PSR2 to be enabled (Michel Dänzer) [1988103]
+- drm/i915/display/adlp: Optimize PSR2 power-savings in corner cases (Michel Dänzer) [1988103]
+- drm/i915/display: Fix glitches when moving cursor with PSR2 selective fetch enabled (Michel Dänzer) [1988103]
+- drm/i915/display: Handle frontbuffer rendering when PSR2 selective fetch is enabled (Michel Dänzer) [1988103]
+- drm/i915/display: Drop unnecessary frontbuffer flushes (Michel Dänzer) [1988103]
+- drm/i915/display/psr: Do full fetch when handling multi-planar formats (Michel Dänzer) [1988103]
+- drm/i915/display/psr: Handle plane and pipe restrictions at every page flip (Michel Dänzer) [1988103]
+- drm/i915/display: Only keep PSR enabled if there is active planes (Michel Dänzer) [1988103]
+- drm/i915/display: Match PSR2 selective fetch sequences with specification (Michel Dänzer) [1988103]
+- drm/i915/display/dmc: Set DC_STATE_DEBUG_MASK_CORES after firmware load (Michel Dänzer) [1988103]
+- drm/i915: Nuke intel_prepare_shared_dpll() (Michel Dänzer) [1988103]
+- drm/i915: Fold ibx_pch_dpll_prepare() into ibx_pch_dpll_enable() (Michel Dänzer) [1988103]
+- drm/i915: Fold i9xx_set_pll_dividers() into i9xx_enable_pll() (Michel Dänzer) [1988103]
+- drm/i915: Reuse ilk_needs_fb_cb_tune() for the reduced clock as well (Michel Dänzer) [1988103]
+- drm/i915: Call {vlv,chv}_prepare_pll() from {vlv,chv}_enable_pll() (Michel Dänzer) [1988103]
+- drm/i915: Program DPLL P1 dividers consistently (Michel Dänzer) [1988103]
+- drm/i915: Remove the 'reg' local variable (Michel Dänzer) [1988103]
+- drm/i915: Clean up variable names in old dpll functions (Michel Dänzer) [1988103]
+- drm/i915: Clean dpll calling convention (Michel Dänzer) [1988103]
+- drm/i915: Constify struct dpll all over (Michel Dänzer) [1988103]
+- drm/i915: Extract ilk_update_pll_dividers() (Michel Dänzer) [1988103]
+- drm/i915: Clean up gen2 DPLL readout (Michel Dänzer) [1988103]
+- drm/i915: Set output_types to EDP for vlv/chv DPLL forcing (Michel Dänzer) [1988103]
+- drm/i915: Silence __iomem sparse warn (Michel Dänzer) [1988103]
+- drm/i915: split fdi link training from display vtable. (Michel Dänzer) [1988103]
+- drm/i915: split irq hotplug function from display vtable (Michel Dänzer) [1988103]
+- drm/i915: split cdclk functions from display vtable. (Michel Dänzer) [1988103]
+- drm/i915: split audio functions from display vtable (Michel Dänzer) [1988103]
+- drm/i915: split color functions from display vtable (Michel Dänzer) [1988103]
+- drm/i915: split watermark vfuncs from display vtable. (Michel Dänzer) [1988103]
+- drm/i915: split clock gating init from display vtable (Michel Dänzer) [1988103]
+- drm/i915/display: add intel_fdi_link_train wrapper. (Michel Dänzer) [1988103]
+- drm/i915: add wrappers around cdclk vtable funcs. (Michel Dänzer) [1988103]
+- drm/i915/wm: provide wrappers around watermark vfuncs calls (v3) (Michel Dänzer) [1988103]
+- drm/i915: make update_wm take a dev_priv. (Michel Dänzer) [1988103]
+- drm/i915/pm: drop get_fifo_size vfunc. (Michel Dänzer) [1988103]
+- drm/i915: Clean up pre-skl wm calling convention (Michel Dänzer) [1988103]
+- drm/i915/dmc: Update to DMC v2.12 (Michel Dänzer) [1988103]
+- drm/i915: Implement PSF GV point support (Michel Dänzer) [1988103]
+- drm/i915: Extend QGV point restrict mask to 0x3 (Michel Dänzer) [1988103]
+- drm/i915/display: Disable audio, DRRS and PSR before planes (Michel Dänzer) [1988103]
+- drm/i915: Make display workaround upper bounds exclusive (Michel Dänzer) [1988103]
+- drm/i915: Program DFR enable/disable as a GT workaround (Michel Dänzer) [1988103]
+- drm/i915/step: s/<platform>_revid_tbl/<platform>_revids (Michel Dänzer) [1988103]
+- drm/i915/display: Settle on "adl-x" in WA comments (Michel Dänzer) [1988103]
+- drm/i915: Settle on "adl-x" in WA comments (Michel Dänzer) [1988103]
+- drm/i915/display/adlp: Disable underrun recovery (Michel Dänzer) [1988103]
+- drm/i915/tc: Fix system hang on ADL-P during TypeC PHY disconnect (Michel Dänzer) [1988103]
+- drm/i915/tc: Drop extra TC cold blocking from intel_tc_port_connected() (Michel Dänzer) [1988103]
+- drm/i915/tc: Fix TypeC PHY connect/disconnect logic on ADL-P (Michel Dänzer) [1988103]
+- drm/i915/icl/tc: Remove the ICL special casing during TC-cold blocking (Michel Dänzer) [1988103]
+- drm/i915/tc: Avoid using legacy AUX PW in TBT mode (Michel Dänzer) [1988103]
+- drm/i915/tc: Refactor TC-cold block/unblock helpers (Michel Dänzer) [1988103]
+- drm/i915/tc: Add a mode for the TypeC PHY's disconnected state (Michel Dänzer) [1988103]
+- drm/i915/tc: Don't keep legacy TypeC ports in connected state w/o a sink (Michel Dänzer) [1988103]
+- drm/i915/tc: Add/use helpers to retrieve TypeC port properties (Michel Dänzer) [1988103]
+- drm/i915/tc: Check for DP-alt, legacy sinks before taking PHY ownership (Michel Dänzer) [1988103]
+- drm/i915/tc: Remove waiting for PHY complete during releasing ownership (Michel Dänzer) [1988103]
+- drm/i915/adlp/tc: Fix PHY connected check for Thunderbolt mode (Michel Dänzer) [1988103]
+- drm/i915: Force a TypeC PHY disconnect during suspend/shutdown (Michel Dänzer) [1988103]
+- drm/i915/adlp: Add support for remapping CCS FBs (Michel Dänzer) [1988103]
+- drm/i915: Follow a new->old platform check order in intel_fb_stride_alignment (Michel Dänzer) [1988103]
+- drm/i915/adlp: Assert that VMAs in DPT start at 0 (Michel Dänzer) [1988103]
+- drm/i915/adlp: Require always a power-of-two sized CCS surface stride (Michel Dänzer) [1988103]
+- drm/i915: Use tile block based dimensions for CCS origin x, y check (Michel Dänzer) [1988103]
+- drm/i915/fb: move user framebuffer stuff to intel_fb.c (Michel Dänzer) [1988103]
+- drm/i915/display: split out dpt out of intel_display.c (Michel Dänzer) [1988103]
+- drm/i915/fb: move intel_surf_alignment() to intel_fb.c (Michel Dänzer) [1988103]
+- drm/i915: add HAS_ASYNC_FLIPS feature macro (Michel Dänzer) [1988103]
+- drm/i915/fb: move intel_fb_align_height() to intel_fb.c (Michel Dänzer) [1988103]
+- drm/i915/fb: move intel_tile_width_bytes() to intel_fb.c (Michel Dänzer) [1988103]
+- drm/i915/display/adlp: Add new PSR2 workarounds (Michel Dänzer) [1988103]
+- drm/i915: Program chicken bit during DP MST sequence on TGL+ (Michel Dänzer) [1988103]
+- drm/i915/display: Workaround cursor left overs with PSR2 selective fetch enabled (Michel Dänzer) [1988103]
+- drm/i915/display/adlp: Fix PSR2_MAN_TRK_CTL_SU_REGION_END_ADDR calculation (Michel Dänzer) [1988103]
+- drm/i915: Update memory bandwidth parameters (Michel Dänzer) [1988103]
+- drm/i915/dp: fix for ADL_P/S dp/edp max source rates (Michel Dänzer) [1988103]
+- drm/i915/dp: fix DG1 and RKL max source rates (Michel Dänzer) [1988103]
+- drm/i915/dp: fix EHL/JSL max source rates calculation (Michel Dänzer) [1988103]
+- drm/i915/dp: fix TGL and ICL max source rates (Michel Dänzer) [1988103]
+- drm/i915/dp: Fix eDP max rate for display 11+ (Michel Dänzer) [1988103]
+- drm/i915/dp: fix DG2 max source rate check (Michel Dänzer) [1988103]
+- drm/i915/dg2: add DG2 UHBR source rates (Michel Dänzer) [1988103]
+- drm/i915/display: remove explicit CNL handling from intel_dp.c (Michel Dänzer) [1988103]
+- drm/i915/dsi/xelpd: Enable mipi dsi support. (Michel Dänzer) [1988103]
+- drm/i915/dsi/xelpd: Add WA to program LP to HS wakeup guardband (Michel Dänzer) [1988103]
+- drm/i915/display: Update small joiner ram size (Michel Dänzer) [1988103]
+- drm/i915/adl_p: Also disable underrun recovery with MSO (Michel Dänzer) [1988103]
+- drm/i915/display/adl_p: Correctly program MBUS DBOX A credits (Michel Dänzer) [1988103]
+- drm/i915: Apply CMTG clock disabling WA while DPLL0 is enabled (Michel Dänzer) [1988103]
+- drm/i915/adl_p: Add ddi buf translation tables for combo PHY (Michel Dänzer) [1988103]
+- drm/i915/adl_s: Update ddi buf translation tables (Michel Dänzer) [1988103]
+- drm/i915: Add the missing adls vswing tables (Michel Dänzer) [1988103]
+- drm/i915/adlp: Add workaround to disable CMTG clock gating (Michel Dänzer) [1988103]
+- drm/i915/adl_p: Allow underrun recovery when possible (Michel Dänzer) [1988103]
+- drm/i915: Add dummy IS_DG2 definition (Michel Dänzer) [1988103]
+- drm/i915: Extend Wa_1406941453 to adl-p (Michel Dänzer) [1988103]
+- drm/i915/display/adl_p: Implement PSR changes (Michel Dänzer) [1988103]
+- drm/i915/debugfs: DISPLAY_VER 13 lpsp capability (Michel Dänzer) [1988103]
+- drm/i915/adlp: Add ADL-P GuC/HuC firmware files (Michel Dänzer) [1988103]
+- drm/i915/huc: Update TGL and friends to HuC 7.9.3 (Michel Dänzer) [1988103]
+- drm/i915/guc: Update firmware to v62.0.0 (Michel Dänzer) [1988103]
+- drm/i915/guc: Introduce unified HXG messages (Michel Dänzer) [1988103]
+- drm/i915/display/adl_p: Implement Wa_16011303918 (Michel Dänzer) [1988103]
+- drm/i915/xelpd: Handle PSR2 SDP indication in the prior scanline (Michel Dänzer) [1988103]
+- drm/i915/display/psr: Handle SU Y granularity (Michel Dänzer) [1988103]
+- drm/i915/display/adl_p: Implement Wa_16011168373 (Michel Dänzer) [1988103]
+- drm/i915/display/adl_p: Implement Wa_22012278275 (Michel Dänzer) [1988103]
+- drm/i915: Nuke buf_trans hdmi functions (Michel Dänzer) [1988103]
+- drm/i915: Clean up jsl/ehl buf trans functions (Michel Dänzer) [1988103]
+- drm/i915: Fix ehl edp hbr2 vswing table (Michel Dänzer) [1988103]
+- drm/i915: Deduplicate icl DP HBR2 vs. eDP HBR3 table (Michel Dänzer) [1988103]
+- drm/i915: Fix dg1 buf trans tables (Michel Dänzer) [1988103]
+- drm/i915: Introduce rkl_get_combo_buf_trans() (Michel Dänzer) [1988103]
+- drm/i915: Clean up hsw/bdw/skl/kbl buf trans funcs (Michel Dänzer) [1988103]
+- drm/i915: Introduce encoder->get_buf_trans() (Michel Dänzer) [1988103]
+- drm/i915: Store the HDMI default entry in the bug trans struct (Michel Dänzer) [1988103]
+- drm/i915; Return the whole buf_trans struct from get_buf_trans() (Michel Dänzer) [1988103]
+- drm/i915: Introduce intel_get_buf_trans() (Michel Dänzer) [1988103]
+- drm/i915: Wrap the buf trans tables into a struct (Michel Dänzer) [1988103]
+- drm/i915: Rename dkl phy buf trans tables (Michel Dänzer) [1988103]
+- drm/i915: Wrap the platform specific buf trans structs into a union (Michel Dänzer) [1988103]
+- drm/i915: Introduce hsw_get_buf_trans() (Michel Dänzer) [1988103]
+- drm/i915: s/intel/hsw/ for hsw/bdw/skl buf trans (Michel Dänzer) [1988103]
+- drm/i915/adl_p: Load DMC (Michel Dänzer) [1988103]
+- drm/i915/adl_p: Pipe B DMC Support (Michel Dänzer) [1988103]
+- drm/i915/xelpd: Pipe A DMC plugging (Michel Dänzer) [1988103]
+- drm/i915/dmc: Introduce DMC_FW_MAIN (Michel Dänzer) [1988103]
+- drm/i915/adl_p: Add initial ADL_P Workarounds (Michel Dänzer) [1988103]
+- drm/i915/xelpd: break feature inheritance (Michel Dänzer) [1988103]
+- backlight: backlight: Make of_find_backlight static (Jérôme Glisse) [1988103]
+- backlight: backlight: Drop backlight_put() (Jérôme Glisse) [1988103]
+- backlight: backlight: Introduce backlight_get_brightness() (Jérôme Glisse) [1988103]
+- backlight: backlight: Drop extern from prototypes (Jérôme Glisse) [1988103]
+- backlight: generic_bl: Remove this driver as it is unused (Michel Dänzer) [1988103]
+- backlight: backlight: Document enums in backlight.h (Jérôme Glisse) [1988103]
+- backlight: backlight: Document inline functions in backlight.h (Jérôme Glisse) [1988103]
+- backlight: backlight: Improve backlight_device documentation (Jérôme Glisse) [1988103]
+- backlight: backlight: Improve backlight_properties documentation (Jérôme Glisse) [1988103]
+- backlight: backlight: Improve backlight_ops documentation (Jérôme Glisse) [1988103]
+- backlight: backlight: Add backlight_is_blank() (Jérôme Glisse) [1988103]
+- backlight: Add backlight_device_get_by_name() (Jérôme Glisse) [1988103]
+- backlight: Expose brightness curve type through sysfs (Michel Dänzer) [1988103]
+- backlight: Remove obsolete comment for ->state (Jérôme Glisse) [1988103]
+- x86/gpu: add JasperLake to gen11 early quirks (Michel Dänzer) [1988103]
+- drm/i915/adl_p: ADL_P device info enabling (Michel Dänzer) [1988103]
+- redhat/configs: Disable CONFIG_DRM_VMWGFX on aarch64 (Michel Dänzer) [1988103]
+- drm/amd/display: Reduce stack size for dml31 UseMinimumDCFCLK (Michel Dänzer) [1988103]
+- drm/amd/display: Reduce stack size for dml31_ModeSupportAndSystemConfigurationFull (Michel Dänzer) [1988103]
+- drm/amdgpu: Initialize max/min_dpm_level (Michel Dänzer) [1988103]
+- redhat/configs: Disable CONFIG_HSA_AMD_SVM for now (Michel Dänzer) [1988103]
+- i915: Convert to older tasklet API (Michel Dänzer) [1988103]
+- drm/ttm: Include asm/pgtable.h (Michel Dänzer) [1988103]
+- Merge DRM changes from upstream v5.13..v5.14.21 (Michel Dänzer) [1988103]
+- PCI: Add support for dev_groups to struct pci_driver (Jérôme Glisse) [1988103]
+- drm: Initialize some local variables to avoid compiler warnings (Jérôme Glisse) [1988103]
+- drm: Use swiotlb_nr_tbl instead of is_swiotlb_active (Jérôme Glisse) [1988103]
+- i915: Use mdev_type_kobj_to_group_id instead of mtype_get_type_group_id (Jérôme Glisse) [1988103]
+- i915: Convert to older tasklet API (Jérôme Glisse) [1988103]
+- drm: Drop const from list_sort compare function prototypes (Jérôme Glisse) [1988103]
+- Merge DRM changes from upstream v5.12.14..v5.13 (Michel Dänzer) [1988103]
+- vfio/mdev: add helper to get index of mdev_type sysfs file (Jérôme Glisse) [1988103]
+- drm/syncobj: make lockdep complain on WAIT_FOR_SUBMIT v3 (Jérôme Glisse) [1988103]
+- Revert "drm/i915: Implement Wa_1508744258" (Michel Dänzer) [1988103]
+- Revert "drm/i915: Add the missing adls vswing tables" (Michel Dänzer) [1988103]
+- x86/gpu: Add Alderlake-S stolen memory support (Michel Dänzer) [1988103]
+- x86/gpu: add RKL stolen memory support (Michel Dänzer) [1988103]
+- x86/gpu: add TGL stolen memory support (Michel Dänzer) [1988103]
+- x86/gpu: add ElkhartLake to gen11 early quirks (Michel Dänzer) [1988103]
+- x86/gpu: reserve ICL's graphics stolen memory (Michel Dänzer) [1988103]
+- selftest/x86/signal: Include test cases for validating sigaltstack (Prarit Bhargava) [1837321]
+- x86/signal: Detect and prevent an alternate signal stack overflow (Prarit Bhargava) [1837321]
+- selftest/sigaltstack: Use the AT_MINSIGSTKSZ aux vector if available (Prarit Bhargava) [1837321]
+- x86/fpu: Additional cleanups (Prarit Bhargava) [1837321]
+- binfmt_elf: Respect error return from `regset->active' (Prarit Bhargava) [1837321]
+- x86/fpu: Optimize out sigframe xfeatures when in init state (Prarit Bhargava) [1837321]
+- Documentation/x86: Add documentation for using dynamic XSTATE features (Prarit Bhargava) [1837321]
+- selftests/x86/amx: Add context switch test (Prarit Bhargava) [1837321]
+- selftests/x86/amx: Add test cases for AMX state management (Prarit Bhargava) [1837321]
+- x86/fpu: Include vmalloc.h for vzalloc() (Prarit Bhargava) [1837321]
+- x86/fpu/amx: Enable the AMX feature in 64-bit mode (Prarit Bhargava) [1837321]
+- x86/fpu: Add XFD handling for dynamic states (Prarit Bhargava) [1837321]
+- x86/fpu: Calculate the default sizes independently (Prarit Bhargava) [1837321]
+- x86/fpu/amx: Define AMX state components and have it used for boot-time checks (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Prepare XSAVE feature table for gaps in state component numbers (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Add fpstate_realloc()/free() (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Add XFD #NM handler (Prarit Bhargava) [1837321]
+- x86/fpu: Update XFD state where required (Prarit Bhargava) [1837321]
+- x86/fpu: Add sanity checks for XFD (Prarit Bhargava) [1837321]
+- x86/fpu: Add XFD state to fpstate (Prarit Bhargava) [1837321]
+- x86/msr-index: Add MSRs for XFD (Prarit Bhargava) [1837321]
+- x86/cpufeatures: Add eXtended Feature Disabling (XFD) feature bit (Prarit Bhargava) [1837321]
+- x86/fpu: Reset permission and fpstate on exec() (Prarit Bhargava) [1837321]
+- x86/fpu: Prepare fpu_clone() for dynamically enabled features (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Prepare for variable sigframe length (Prarit Bhargava) [1837321]
+- x86/signal: Use fpu::__state_user_size for sigalt stack validation (Prarit Bhargava) [1837321]
+- x86/fpu: Add basic helpers for dynamically enabled features (Prarit Bhargava) [1837321]
+- x86/arch_prctl: Add controls for dynamic XSTATE components (Prarit Bhargava) [1837321]
+- x86/fpu: Add fpu_state_config::legacy_features (Prarit Bhargava) [1837321]
+- x86/fpu: Add members to struct fpu to cache permission information (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Provide xstate_calculate_size() (Prarit Bhargava) [1837321]
+- x86/signal: Implement sigaltstack size validation (Prarit Bhargava) [1837321]
+- signal: Add an optional check for altstack size (Prarit Bhargava) [1837321]
+- x86/fpu: Remove old KVM FPU interface (Prarit Bhargava) [1837321]
+- x86/kvm: Convert FPU handling to a single swap buffer (Prarit Bhargava) [1837321]
+- x86/fpu: Provide infrastructure for KVM FPU cleanup (Prarit Bhargava) [1837321]
+- x86/fpu: Prepare for sanitizing KVM FPU code (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Move remaining xfeature helpers to core (Prarit Bhargava) [1837321]
+- x86/fpu: Rework restore_regs_from_fpstate() (Prarit Bhargava) [1837321]
+- x86/fpu: Mop up xfeatures_mask_uabi() (Prarit Bhargava) [1837321]
+- x86/fpu: Move xstate feature masks to fpu_*_cfg (Prarit Bhargava) [1837321]
+- x86/fpu: Move xstate size to fpu_*_cfg (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Cleanup size calculations (Prarit Bhargava) [1837321]
+- x86/fpu: Cleanup fpu__init_system_xstate_size_legacy() (Prarit Bhargava) [1837321]
+- x86/fpu: Provide struct fpu_config (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Use fpstate for size and features (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Use fpstate for copy_uabi_to_xstate() (Prarit Bhargava) [1837321]
+- x86/fpu: Use fpstate in __copy_xstate_to_uabi_buf() (Prarit Bhargava) [1837321]
+- x86/fpu: Use fpstate in fpu_copy_kvm_uabi_to_fpstate() (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Use fpstate for xsave_to_user_sigframe() (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Use fpstate for os_xsave() (Prarit Bhargava) [1837321]
+- x86/fpu: Use fpstate::size (Prarit Bhargava) [1837321]
+- x86/fpu: Add size and mask information to fpstate (Prarit Bhargava) [1837321]
+- x86/process: Move arch_thread_struct_whitelist() out of line (Prarit Bhargava) [1837321]
+- x86/fpu: Do not leak fpstate pointer on fork (Prarit Bhargava) [1837321]
+- x86/fpu: Remove fpu::state (Prarit Bhargava) [1837321]
+- x86/math-emu: Convert to fpstate (Prarit Bhargava) [1837321]
+- x86/fpu/core: Convert to fpstate (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Convert to fpstate (Prarit Bhargava) [1837321]
+- x86/fpu/regset: Convert to fpstate (Prarit Bhargava) [1837321]
+- x86/fpu: Convert tracing to fpstate (Prarit Bhargava) [1837321]
+- x86/KVM: Convert to fpstate (Prarit Bhargava) [1837321]
+- x86/fpu: Replace KVMs xstate component clearing (Prarit Bhargava) [1837321]
+- x86/fpu: Convert restore_fpregs_from_fpstate() to struct fpstate (Prarit Bhargava) [1837321]
+- x86/fpu: Convert fpstate_init() to struct fpstate (Prarit Bhargava) [1837321]
+- fpu/types.h: KABI fix Part I (Prarit Bhargava) [1837321]
+- x86/fpu: Provide struct fpstate (Prarit Bhargava) [1837321]
+- x86/fpu: Replace KVMs home brewed FPU copy to user (Prarit Bhargava) [1837321]
+- x86/fpu: Provide a proper function for ex_handler_fprestore() (Prarit Bhargava) [1837321]
+- x86/fpu: Replace the includes of fpu/internal.h (Prarit Bhargava) [1837321]
+- x86/fpu: Mop up the internal.h leftovers (Prarit Bhargava) [1837321]
+- x86/sev: Include fpu/xcr.h (Prarit Bhargava) [1837321]
+- x86/fpu: Remove internal.h dependency from fpu/signal.h (Prarit Bhargava) [1837321]
+- x86/fpu: Move fpstate functions to api.h (Prarit Bhargava) [1837321]
+- x86/fpu: Move mxcsr related code to core (Prarit Bhargava) [1837321]
+- x86/fpu: Move fpregs_restore_userregs() to core (Prarit Bhargava) [1837321]
+- x86/fpu: Make WARN_ON_FPU() private (Prarit Bhargava) [1837321]
+- x86/fpu: Move legacy ASM wrappers to core (Prarit Bhargava) [1837321]
+- x86/fpu: Move os_xsave() and os_xrstor() to core (Prarit Bhargava) [1837321]
+- x86/fpu: Make os_xrstor_booting() private (Prarit Bhargava) [1837321]
+- x86/fpu: Clean up CPU feature tests (Prarit Bhargava) [1837321]
+- x86/fpu: Move context switch and exit to user inlines into sched.h (Prarit Bhargava) [1837321]
+- x86/fpu: Mark fpu__init_prepare_fx_sw_frame() as __init (Prarit Bhargava) [1837321]
+- x86/fpu: Rework copy_xstate_to_uabi_buf() (Prarit Bhargava) [1837321]
+- x86/fpu: Replace KVMs home brewed FPU copy from user (Prarit Bhargava) [1837321]
+- x86/fpu: Move KVMs FPU swapping to FPU core (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Mark all init only functions __init (Prarit Bhargava) [1837321]
+- x86/fpu/xstate: Provide and use for_each_xfeature() (Prarit Bhargava) [1837321]
+- x86/fpu: Cleanup xstate xcomp_bv initialization (Prarit Bhargava) [1837321]
+- x86/fpu: Do not inherit FPU context for kernel and IO worker threads (Prarit Bhargava) [1837321]
+- x86/process: Clone FPU in copy_thread() (Prarit Bhargava) [1837321]
+- x86/fpu: Remove pointless memset in fpu_clone() (Prarit Bhargava) [1837321]
+- x86/fpu: Cleanup the on_boot_cpu clutter (Prarit Bhargava) [1837321]
+- x86/fpu: Restrict xsaves()/xrstors() to independent states (Prarit Bhargava) [1837321]
+- x86/pkru: Remove useless include (Prarit Bhargava) [1837321]
+- x86/fpu: Update stale comments (Prarit Bhargava) [1837321]
+- x86/fpu: Remove pointless argument from switch_fpu_finish() (Prarit Bhargava) [1837321]
+- x86/fpu: Mask out the invalid MXCSR bits properly (Prarit Bhargava) [1837321]
+- x86/fpu: Restore the masking out of reserved MXCSR bits (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Fix missed conversion to correct boolean retval in save_xstate_epilog() (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Change return code of restore_fpregs_from_user() to boolean (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Change return code of check_xstate_in_sigframe() to boolean (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Change return type of __fpu_restore_sig() to boolean (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Change return type of fpu__restore_sig() to boolean (Prarit Bhargava) [1837321]
+- x86/signal: Change return type of restore_sigcontext() to boolean (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Change return type of copy_fpregs_to_sigframe() helpers to boolean (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Change return type of copy_fpstate_to_sigframe() to boolean (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Move xstate clearing out of copy_fpregs_to_sigframe() (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Move header zeroing out of xsave_to_user_sigframe() (Prarit Bhargava) [1837321]
+- x86/fpu/signal: Clarify exception handling in restore_fpregs_from_user() (Prarit Bhargava) [1837321]
+- x86/elf: Support a new ELF aux vector AT_MINSIGSTKSZ (Prarit Bhargava) [1837321]
+- uapi/auxvec: Define the aux vector AT_MINSIGSTKSZ (Prarit Bhargava) [1837321]
+- x86: get rid of get_user_ex() in restore_sigcontext() (Prarit Bhargava) [1837321]
+- x86: get rid of get_user_ex() in ia32_restore_sigcontext() (Prarit Bhargava) [1837321]
+- x86: Remove force_iret() (Prarit Bhargava) [1837321]
+- x86/uaccess, signal: Fix AC=1 bloat (Prarit Bhargava) [1837321]
+- x86/ia32: Fix ia32_restore_sigcontext() AC leak (Prarit Bhargava) [1837321]
+- x86/tsc: Add tsc_early_khz command line parameter (Prarit Bhargava) [1957375]
+- x86/debug: Support negative polarity DR6 bits (Prarit Bhargava) [2017958]
+
+* Sun Jan 16 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-360.el8]
+- KVM: SVM: Do not terminate SEV-ES guests on GHCB validation failure (Vitaly Kuznetsov) [2032931]
+- KVM: SEV: Fall back to vmalloc for SEV-ES scratch area if necessary (Vitaly Kuznetsov) [2032931]
+- KVM: SEV: Return appropriate error codes if SEV-ES scratch setup fails (Vitaly Kuznetsov) [2032931]
+- KVM: SEV: Refactor out sev_es_state struct (Vitaly Kuznetsov) [2032931]
+- s390: mm: Fix secure storage access exception handling (Thomas Huth) [1984910]
+- KVM: PPC: Book3S HV: Make idle_kvm_start_guest() return 0 if it went to guest (Jon Maloy) [2018960] {CVE-2021-43056}
+- KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() (Jon Maloy) [2018960] {CVE-2021-43056}
+- KVM: arm64: selftests: arch_timer: Support vCPU migration (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add arch_timer test (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add host support for vGIC (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add basic GICv3 support (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add light-weight spinlock support (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add guest support to get the vcpuid (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Maintain consistency for vcpuid type (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add support to disable and enable local IRQs (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add basic support to generate delays (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add basic support for arch_timers (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add support for cpu_relax (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Introduce ARM64_SYS_KVM_REG (Gavin Shan) [2024808]
+- tools: arm64: Import sysreg.h (Gavin Shan) [2024808]
+- KVM: arm64: selftests: Add MMIO readl/writel support (Gavin Shan) [2024808]
+- selftests: KVM: Introduce psci_cpu_on_test (Gavin Shan) [2024808]
+- KVM: arm64: selftests: get-reg-list: actually enable pmu regs in pmu sublist (Gavin Shan) [2024808]
+- KVM: arm64: Update MAINTAINERS to include selftests (Gavin Shan) [2024808]
+- KVM: arm64: selftests: get-reg-list: Split base and pmu registers (Gavin Shan) [2024808]
+- KVM: arm64: selftests: get-reg-list: Remove get-reg-list-sve (Gavin Shan) [2024808]
+- KVM: arm64: selftests: get-reg-list: Provide config selection option (Gavin Shan) [2024808]
+- KVM: arm64: selftests: get-reg-list: Prepare to run multiple configs at once (Gavin Shan) [2024808]
+- KVM: arm64: selftests: get-reg-list: Introduce vcpu configs (Gavin Shan) [2024808]
+- sctp: make the raise timer more simple and accurate (Xin Long) [2020474]
+- Enable flowtable ipv4/ipv6 support (Phil Sutter) [1850324]
+- ip6_vti: initialize __ip6_tnl_parm struct in vti6_siocdevprivate (William Zhao) [1941928]
+- svcrdma: Fix a crash in svcrdma_counter_handler (Benjamin Coddington) [2037213]
+- fbcon: Fix global-out-of-bounds read in fbcon_get_font() (Lyude Paul) [1904374]
+- bnxt_en: Clean up completion ring page arrays completely (Ken Cox) [1987074]
+- bnxt_en: Fix error recovery regression (Ken Cox) [1987074]
+- bnxt_en: Fix possible unintended driver initiated error recovery (Ken Cox) [1987074]
+- bnxt_en: Fix UDP tunnel logic (Ken Cox) [1987074]
+- bnxt_en: Fix asic.rev in devlink dev info command (Ken Cox) [1987074]
+- bnxt_en: fix read of stored FW_PSID version on P5 devices (Ken Cox) [1987074]
+- bnxt_en: fix stored FW_PSID version masks (Ken Cox) [1987074]
+- bnxt_en: fix kernel doc warnings in bnxt_hwrm.c (Ken Cox) [1987074]
+- bnxt_en: Fix 64-bit doorbell operation on 32-bit kernels (Ken Cox) [1987074]
+- bnxt_en: support multiple HWRM commands in flight (Ken Cox) [1987074]
+- bnxt_en: remove legacy HWRM interface (Ken Cox) [1987074]
+- bnxt_en: update all firmware calls to use the new APIs (Ken Cox) [1987074]
+- bnxt_en: use link_lock instead of hwrm_cmd_lock to protect link_info (Ken Cox) [1987074]
+- bnxt_en: add support for HWRM request slices (Ken Cox) [1987074]
+- bnxt_en: add HWRM request assignment API (Ken Cox) [1987074]
+- bnxt_en: discard out of sequence HWRM responses (Ken Cox) [1987074]
+- bnxt_en: introduce new firmware message API based on DMA pools (Ken Cox) [1987074]
+- bnxt_en: move HWRM API implementation into separate file (Ken Cox) [1987074]
+- bnxt_en: Refactor the HWRM_VER_GET firmware calls (Ken Cox) [1987074]
+- bnxt_en: remove DMA mapping for KONG response (Ken Cox) [1987074]
+- bnxt: count discards due to memory allocation errors (Ken Cox) [1987074]
+- bnxt: count packets discarded because of netpoll (Ken Cox) [1987074]
+- net: broadcom: switch from 'pci_' to 'dma_' API (Ken Cox) [1987074]
+- bnxt_en: Add missing DMA memory barriers (Ken Cox) [1987074]
+- bnxt_en: Disable aRFS if running on 212 firmware (Ken Cox) [1987074]
+- bnxt: count Tx drops (Ken Cox) [1987074]
+- bnxt: make sure xmit_more + errors does not miss doorbells (Ken Cox) [1987074]
+- bnxt: disable napi before canceling DIM (Ken Cox) [1987074]
+- bnxt: don't lock the tx queue from napi poll (Ken Cox) [1987074]
+- bnxt_en: Use register window 6 instead of 5 to read the PHC (Ken Cox) [1987074]
+- bnxt_en: Update firmware call to retrieve TX PTP timestamp (Ken Cox) [1987074]
+- bnxt_en: Update firmware interface to 1.10.2.52 (Ken Cox) [1987074]
+- bnxt_en: Increase maximum RX ring size if jumbo ring is not used (Ken Cox) [1987074]
+- bnxt_en: Don't use static arrays for completion ring pages (Ken Cox) [1987074]
+- bnxt_en: Add missing periodic PHC overflow check (Ken Cox) [1987074]
+- bnxt_en: Log if an invalid signal detected on TSIO pin (Ken Cox) [1987074]
+- bnxt_en: Event handler for PPS events (Ken Cox) [1987074 1990156]
+- bnxt_en: 1PPS functions to configure TSIO pins (Ken Cox) [1987074 1990156]
+- bnxt_en: 1PPS support for 5750X family chips (Ken Cox) [1987074 1990156]
+- bnxt_en: Do not read the PTP PHC during chip reset (Ken Cox) [1987074 1990156]
+- bnxt_en: Move bnxt_ptp_init() from bnxt_open() back to bnxt_init_one() (Ken Cox) [1987074 1990156]
+- bnxt_en: Fix PTP capability discovery (Ken Cox) [1987074]
+- bnxt_en: Move bnxt_ptp_init() to bnxt_open() (Ken Cox) [1987074]
+- bnxt: Remove rcu_read_lock() around XDP program invocation (Ken Cox) [1987074]
+- bnxt_en: Enable hardware PTP support (Ken Cox) [1987074]
+- bnxt_en: Transmit and retrieve packet timestamps (Ken Cox) [1987074]
+- bnxt_en: Get the RX packet timestamp (Ken Cox) [1987074]
+- bnxt_en: Get the full 48-bit hardware timestamp periodically (Ken Cox) [1987074]
+- bnxt_en: Add PTP clock APIs, ioctls, and ethtool methods (Ken Cox) [1987074]
+- bnxt_en: Get PTP hardware capability from firmware (Ken Cox) [1987074]
+- bnxt_en: Update firmware interface to 1.10.2.47 (Ken Cox) [1987074]
+- bnxt_en: Fix fall-through warnings for Clang (Ken Cox) [1987074]
+- bnxt_en: Fix and improve .ndo_features_check(). (Ken Cox) [1987074]
+- bnxt_en: Implement .ndo_features_check(). (Ken Cox) [1987074]
+- bnxt_en: Support IFF_SUPP_NOFCS feature to transmit without ethernet FCS. (Ken Cox) [1987074]
+- bnxt_en: Call bnxt_approve_mac() after the PF gives up control of the VF MAC. (Ken Cox) [1987074]
+- bnxt_en: Move bnxt_approve_mac(). (Ken Cox) [1987074]
+- bnxt_en: allow VF config ops when PF is closed (Ken Cox) [1987074]
+- bnxt_en: Add support for fw managed link down feature. (Ken Cox) [1987074]
+- bnxt_en: Add a new phy_flags field to the main driver structure. (Ken Cox) [1987074]
+- bnxt_en: report signal mode in link up messages (Ken Cox) [1987074]
+- bnxt: add more ethtool standard stats (Ken Cox) [1987074]
+- bnxt: implement ethtool standard stats (Ken Cox) [1987074]
+- bnxt: implement ethtool::get_fec_stats (Ken Cox) [1987074]
+- bnxt_en: Free and allocate VF-Reps during error recovery. (Ken Cox) [1987074]
+- bnxt_en: Refactor __bnxt_vf_reps_destroy(). (Ken Cox) [1987074]
+- bnxt_en: Refactor bnxt_vf_reps_create(). (Ken Cox) [1987074]
+- bnxt_en: Invalidate health register mapping at the end of probe. (Ken Cox) [1987074]
+- bnxt_en: Treat health register value 0 as valid in bnxt_try_reover_fw(). (Ken Cox) [1987074]
+- bnxt_en: Enhance retry of the first message to the firmware. (Ken Cox) [1987074]
+- bnxt_en: Set BNXT_STATE_FW_RESET_DET flag earlier for the RDMA driver. (Ken Cox) [1987074]
+- bnxt_en: check return value of bnxt_hwrm_func_resc_qcaps (Ken Cox) [1987074]
+- bnxt_en: don't fake firmware response success when PCI is disabled (Ken Cox) [1987074]
+- bnxt_en: Improve wait for firmware commands completion (Ken Cox) [1987074]
+- bnxt_en: Improve the status_reliable flag in bp->fw_health. (Ken Cox) [1987074]
+- Bluetooth: fix use-after-free error in lock_sock_nested() (Gopal Tiwari) [2005689]
+- rpmspec: add release string to kernel doc directory name (Jan Stancek) [1824836]
+- cpufreq: intel_pstate: Fix cpu->pstate.turbo_freq initialization (Mark Langsdorf) [2031830]
+- ACPI: CPPC: Add NULL pointer check to cppc_get_perf() (Mark Langsdorf) [2031830]
+- cpufreq: intel_pstate: hybrid: Rework HWP calibration (Mark Langsdorf) [2031830]
+- ACPI: CPPC: Introduce cppc_get_nominal_perf() (Mark Langsdorf) [2031830]
+- cpufreq: Replace deprecated CPU-hotplug functions (Mark Langsdorf) [2031830]
+- cpufreq: intel_pstate: hybrid: Fix build with CONFIG_ACPI unset (Mark Langsdorf) [2031830]
+- cpufreq: intel_pstate: hybrid: CPU-specific scaling factor (Mark Langsdorf) [2031830]
+- cpufreq: intel_pstate: hybrid: Avoid exposing two global attributes (Mark Langsdorf) [2031830]
+- ASoC: amd: renoir: Run hibernation callbacks (Renjith Pananchikkal) [1987617]
+- hugetlb: fix hugetlb cgroup refcounting during vma split (Waiman Long) [2032811]
+- hugetlb_cgroup: fix imbalanced css_get and css_put pair for shared mappings (Waiman Long) [2032811]
+- mm/hugetlb: change hugetlb_reserve_pages() to type bool (Waiman Long) [2032811]
+- hugetlb: fix an error code in hugetlb_reserve_pages() (Waiman Long) [2032811]
+- hugetlb_cgroup: fix offline of hugetlb cgroup with reservations (Waiman Long) [2032811]
+- hugetlb_cgroup: fix reservation accounting (Waiman Long) [2032811]
+- mm/hugetlb: narrow the hugetlb_lock protection area during preparing huge page (Waiman Long) [2032811]
+- mm/hugetlb: a page from buddy is not on any list (Waiman Long) [2032811]
+- mm/hugetlb: not necessary to coalesce regions recursively (Waiman Long) [2032811]
+- selftests/vm/write_to_hugetlbfs.c: fix unused variable warning (Waiman Long) [2032811]
+- hugetlb_cgroup: add hugetlb_cgroup reservation tests (Waiman Long) [2032811]
+- hugetlb: support file_region coalescing again (Waiman Long) [2032811]
+- hugetlb_cgroup: support noreserve mappings (Waiman Long) [2032811]
+- hugetlb_cgroup: add accounting for shared mappings (Waiman Long) [2032811]
+- hugetlb: disable region_add file_region coalescing (Waiman Long) [2032811]
+- hugetlb_cgroup: add reservation accounting for private mappings (Waiman Long) [2032811]
+- mm/hugetlb_cgroup: fix hugetlb_cgroup migration (Waiman Long) [2032811]
+- hugetlb_cgroup: add interface for charge/uncharge hugetlb reservations (Waiman Long) [2032811]
+- hugetlb_cgroup: add hugetlb_cgroup reservation counter (Waiman Long) [2032811]
+- mm/vma: move VM_NO_KHUGEPAGED into generic header (Waiman Long) [2032811]
+- mm/cma.c: switch to bitmap_zalloc() for cma bitmap allocation (Waiman Long) [2032811]
+- hugetlb: remove duplicated code (Waiman Long) [2032811]
+- hugetlb: region_chg provides only cache entry (Waiman Long) [2032811]
+- arm64/mm: Refactor __do_page_fault() (Waiman Long) [2032811]
+- arm64/mm: Drop task_struct argument from __do_page_fault() (Waiman Long) [2032811]
+- hugetlbfs: always use address space in inode for resv_map pointer (Waiman Long) [2032811]
+- mm: remove redundant 'default n' from Kconfig-s (Waiman Long) [2032811]
+- hugetlbfs: fix potential over/underflow setting node specific nr_hugepages (Waiman Long) [2032811]
+- hugetlb: allow to free gigantic pages regardless of the configuration (Waiman Long) [2032811]
+- mm/cma.c: fix crash on CMA allocation if bitmap allocation fails (Waiman Long) [2032811]
+- mm/cma.c: fix the bitmap status to show failed allocation reason (Waiman Long) [2032811]
+- mm/cma_debug.c: fix the break condition in cma_maxchunk_get() (Waiman Long) [2032811]
+- mm: no need to check return value of debugfs_create functions (Waiman Long) [2032811]
+- x86/mm: Break out user address space handling (Waiman Long) [2032811]
+- fs: add vfs_parse_fs_param_source() helper (Waiman Long) [2034609]
+- cgroup: verify that source is a string (Waiman Long) [2034609]
+- ice: Fix E810 PTP reset flow (Jonathan Toppins) [2013478]
+- ice: Use div64_u64 instead of div_u64 in adjfine (Jonathan Toppins) [2013478]
+- ice: Don't put stale timestamps in the skb (Jonathan Toppins) [2013478]
+- ice: Fix problems with DSCP QoS implementation (Jonathan Toppins) [2030400]
+- ice: fix software generating extra interrupts (Jonathan Toppins) [2030400]
+- ice: fix rate limit update after coalesce change (Jonathan Toppins) [2030400]
+- ice: update dim usage and moderation (Jonathan Toppins) [2030400]
+- ice: make use of ice_for_each_* macros (Jonathan Toppins) [2030400]
+- ice: Remove boolean vlan_promisc flag from function (Jonathan Toppins) [2030400]
+- ice: check whether PTP is initialized in ice_ptp_release() (Jonathan Toppins) [2030400]
+- ice: devlink: Make devlink_register to be void (Jonathan Toppins) [2030400]
+- ice: split ice_ring onto Tx/Rx separate structs (Jonathan Toppins) [2030400]
+- ice: Prefer kcalloc over open coded arithmetic (Jonathan Toppins) [2030400]
+- ice: Fix macro name for IPv4 fragment flag (Jonathan Toppins) [2030400]
+- ice: refactor devlink getter/fallback functions to void (Jonathan Toppins) [2030400]
+- ice: Fix link mode handling (Jonathan Toppins) [2030400]
+- ice: Add feature bitmap, helpers and a check for DSCP (Jonathan Toppins) [2030400]
+- ice: Add DSCP support (Jonathan Toppins) [2030400]
+
+* Mon Jan 10 2022 Augusto Caringi <acaringi@redhat.com> [4.18.0-359.el8]
+- fanotify: Make waits for fanotify events only killable (Miklos Szeredi) [1897416]
+- fanotify: Use interruptible wait when waiting for permission events (Miklos Szeredi) [1897416]
+- fanotify: Track permission event state (Miklos Szeredi) [1897416]
+- fanotify: Simplify cleaning of access_list (Miklos Szeredi) [1897416]
+- fsnotify: Create function to remove event from notification list (Miklos Szeredi) [1897416]
+- fanotify: Move locking inside get_one_event() (Miklos Szeredi) [1897416]
+- fanotify: Fold dequeue_event() into process_access_response() (Miklos Szeredi) [1897416]
+- fanotify: rename struct fanotify_{,perm_}event_info (Miklos Szeredi) [1897416]
+- RDMA/mlx5: Fix crash when unbind multiport slave (Amir Tzin) [1997386]
+- redhat: Fix mock.cfg cleanup in redhat/Makefile (Benjamin Coddington)
+- timekeeping: Use proper clock specifier names in functions (Josef Oskera) [2026471]
+- leds: ledtrig-activity: use ktime_get_boot_ns() (Josef Oskera) [2026471]
+- iio: use timespec64 based interfaces for iio_get_time_ns() (Josef Oskera) [2026471]
+- drivers: net: netdevsim: fix devlink_trap selftests failing (Petr Oros) [2021837]
+- netdevsim: remove max_vfs dentry (Petr Oros) [2021837]
+- netdevsim: Fix unsigned being compared to less than zero (Petr Oros) [2021837]
+- devlink: Protect rate list with lock while switching modes (Petr Oros) [2021837]
+- devlink: Remove eswitch mode check for mode set call (Petr Oros) [2021837]
+- devlink: Decrease refcnt of parent rate object on leaf destroy (Petr Oros) [2021837]
+- docs: networking: devlink: avoid using ReST :doc:`foo` markup (Petr Oros) [2021837]
+- testing: selftests: drivers: net: netdevsim: devlink: add test case for hard drop statistics (Petr Oros) [2021837]
+- drivers: net: netdevsim: add devlink trap_drop_counter_get implementation (Petr Oros) [2021837]
+- testing: selftests: net: forwarding: add devlink-required functionality to test (hard) dropped stats field (Petr Oros) [2021837]
+- net: core: devlink: add dropped stats traps field (Petr Oros) [2021837]
+- devlink: Fix error message in devlink_rate_set_ops_supported() (Petr Oros) [2021837]
+- Documentation: devlink rate objects (Petr Oros) [2021837]
+- selftest: netdevsim: Add devlink rate grouping test (Petr Oros) [2021837]
+- netdevsim: Allow setting parent node of rate objects (Petr Oros) [2021837]
+- devlink: Allow setting parent node of rate objects (Petr Oros) [2021837]
+- selftest: netdevsim: Add devlink rate nodes test (Petr Oros) [2021837]
+- netdevsim: Implement support for devlink rate nodes (Petr Oros) [2021837]
+- devlink: Introduce rate nodes (Petr Oros) [2021837]
+- selftest: netdevsim: Add devlink port shared/max tx rate test (Petr Oros) [2021837]
+- netdevsim: Implement devlink rate leafs tx rate support (Petr Oros) [2021837]
+- devlink: Allow setting tx rate for devlink rate leaf objects (Petr Oros) [2021837]
+- selftest: netdevsim: Add devlink rate test (Petr Oros) [2021837]
+- netdevsim: Register devlink rate leaf objects per VF (Petr Oros) [2021837]
+- devlink: Introduce rate object (Petr Oros) [2021837]
+- netdevsim: Implement legacy/switchdev mode for VFs (Petr Oros) [2021837]
+- netdevsim: Implement VFs (Petr Oros) [2021837]
+- netdevsim: Implement port types and indexing (Petr Oros) [2021837]
+- netdevsim: Disable VFs on nsim_dev_reload_destroy() call (Petr Oros) [2021837]
+- netdevsim: Add max_vfs to bus_dev (Petr Oros) [2021837]
+- devlink: append split port number to the port name (Petr Oros) [2021837]
+- devlink: Correct VIRTUAL port to not have phys_port attributes (Petr Oros) [2021837]
+- docs: net: add missing devlink health cmd - trigger (Petr Oros) [2021837]
+- docs: net: tweak devlink health documentation (Petr Oros) [2021837]
+- devlink: fix typo in documentation (Petr Oros) [2021837]
+- devlink: Extend devlink port documentation for subfunctions (Petr Oros) [2021837]
+- udp: Validate checksum in udp_read_sock() (Jiri Benc) [1947007]
+- bpf, sockmap: sk_skb data_end access incorrect when src_reg = dst_reg (Jiri Benc) [1947007]
+- bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding (Jiri Benc) [1947007]
+- selftests, bpf: Add one test for sockmap with strparser (Jiri Benc) [1947007]
+- selftests, bpf: Fix test_txmsg_ingress_parser error (Jiri Benc) [1947007]
+- skmsg: Lose offset info in sk_psock_skb_ingress (Jiri Benc) [1947007]
+- bpf, sockmap: Fix potential memory leak on unlikely error case (Jiri Benc) [1947007]
+- tcp_bpf: Fix one concurrency problem in the tcp_bpf_send_verdict function (Jiri Benc) [1947007]
+- bpf, sockmap, tcp: sk_prot needs inuse_idx set for proc stats (Jiri Benc) [1947007]
+- bpf, sockmap: Fix memleak on ingress msg enqueue (Jiri Benc) [1947007]
+- bpf, sockmap: On cleanup we additionally need to remove cached skb (Jiri Benc) [1947007]
+- skmsg: Increase sk->sk_drops when dropping packets (Jiri Benc) [1947007]
+- skmsg: Pass source psock to sk_psock_skb_redirect() (Jiri Benc) [1947007]
+- skmsg: Teach sk_psock_verdict_apply() to return errors (Jiri Benc) [1947007]
+- skmsg: Fix a memory leak in sk_psock_verdict_apply() (Jiri Benc) [1947007]
+- skmsg: Clear skb redirect pointer before dropping it (Jiri Benc) [1947007]
+- udp: Fix a memory leak in udp_read_sock() (Jiri Benc) [1947007]
+- selftests/bpf: Retry for EAGAIN in udp_redir_to_connected() (Jiri Benc) [1947007]
+- skmsg: Improve udp_bpf_recvmsg() accuracy (Jiri Benc) [1947007]
+- bpf: Limit static tcp-cc functions in the .BTF_ids list to x86 (Jiri Benc) [1947007]
+- flow_dissector: Fix out-of-bounds warning in __skb_flow_bpf_to_target() (Jiri Benc) [1947007]
+- sock_map: Fix a potential use-after-free in sock_map_close() (Jiri Benc) [1947007]
+- skmsg: Pass psock pointer to ->psock_update_sk_prot() (Jiri Benc) [1947007]
+- bpf, udp: Remove some pointless comments (Jiri Benc) [1947007]
+- selftests/bpf: Add a test case for loading BPF_SK_SKB_VERDICT (Jiri Benc) [1947007]
+- selftests/bpf: Add a test case for udp sockmap (Jiri Benc) [1947007]
+- sock_map: Update sock type checks for UDP (Jiri Benc) [1947007]
+- udp: Implement udp_bpf_recvmsg() for sockmap (Jiri Benc) [1947007]
+- skmsg: Extract __tcp_bpf_recvmsg() and tcp_bpf_wait_data() (Jiri Benc) [1947007]
+- udp: Implement ->read_sock() for sockmap (Jiri Benc) [1947007]
+- sock: Introduce sk->sk_prot->psock_update_sk_prot() (Jiri Benc) [1947007]
+- sock_map: Introduce BPF_SK_SKB_VERDICT (Jiri Benc) [1947007]
+- sock_map: Kill sock_map_link_no_progs() (Jiri Benc) [1947007]
+- sock_map: Simplify sock_map_link() a bit (Jiri Benc) [1947007]
+- skmsg: Use GFP_KERNEL in sk_psock_create_ingress_msg() (Jiri Benc) [1947007]
+- skmsg: Use rcu work for destroying psock (Jiri Benc) [1947007]
+- skmsg: Avoid lock_sock() in sk_psock_backlog() (Jiri Benc) [1947007]
+- net: Introduce skb_send_sock() for sock_map (Jiri Benc) [1947007]
+- skmsg: Introduce a spinlock to protect ingress_msg (Jiri Benc) [1947007]
+- skmsg: Lock ingress_skb when purging (Jiri Benc) [1947007]
+- bpf: tcp: Limit calling some tcp cc functions to CONFIG_DYNAMIC_FTRACE (Jiri Benc) [1947007]
+- bpf: tcp: Fix an error in the bpf_tcp_ca_kfunc_ids list (Jiri Benc) [1947007]
+- bpf: tcp: Remove comma which is causing build error (Jiri Benc) [1947007]
+- bpf: tcp: Put some tcp cong functions in allowlist for bpf-tcp-cc (Jiri Benc) [1947007]
+- tcp: Rename bictcp function prefix to cubictcp (Jiri Benc) [1947007]
+- bpf: Add getter and setter for SO_REUSEPORT through bpf_{g,s}etsockopt (Jiri Benc) [1947007]
+- bpf, devmap: Move drop error path to devmap for XDP_REDIRECT (Jiri Benc) [1947007]
+- xsk: Update rings for load-acquire/store-release barriers (Jiri Benc) [1947007]
+- skmsg: Add function doc for skb->_sk_redir (Jiri Benc) [1947007]
+- skmsg: Remove unused sk_psock_stop() declaration (Jiri Benc) [1947007]
+- skmsg: Get rid of sk_psock_bpf_run() (Jiri Benc) [1947007]
+- skmsg: Make __sk_psock_purge_ingress_msg() static (Jiri Benc) [1947007]
+- sock_map: Make sock_map_prog_update() static (Jiri Benc) [1947007]
+- sock_map: Rename skb_parser and skb_verdict (Jiri Benc) [1947007]
+- skmsg: Move sk_redir from TCP_SKB_CB to skb (Jiri Benc) [1947007]
+- bpf: Compute data_end dynamically with JIT code (Jiri Benc) [1947007]
+- skmsg: Get rid of struct sk_psock_parser (Jiri Benc) [1947007]
+- bpf: Clean up sockmap related Kconfigs (Jiri Benc) [1947007]
+- xsk: Build skb by page (aka generic zerocopy xmit) (Jiri Benc) [1947007]
+- xsk: Respect device's headroom and tailroom on generic xmit path (Jiri Benc) [1947007]
+- virtio-net: Support IFF_TX_SKB_NO_LINEAR flag (Jiri Benc) [1947007]
+- net: Add priv_flags for allow tx skb without linear (Jiri Benc) [1947007]
+- netdevice: Add missing IFF_PHONY_HEADROOM self-definition (Jiri Benc) [1947007]
+- skmsg: Make sk_psock_destroy() static (Jiri Benc) [1947007]
+- skmsg: Use fallthrough pseudo-keyword (Jiri Benc) [1947007]
+- net: dev_is_mac_header_xmit() true for ARPHRD_RAWIP (Jiri Benc) [1947007]
+- virtio_net: Account for tx bytes and packets on sending xdp_frames (Jiri Benc) [1947007]
+- inet: udp{4|6}_lib_lookup_skb() skb argument is const (Jiri Benc) [1947007]
+- inet: constify inet_sdif() argument (Jiri Benc) [1947007]
+- udp: move gro declarations to net/udp.h (Jiri Benc) [1947007]
+- net: move tcp gro declarations to net/tcp.h (Jiri Benc) [1947007]
+- tcp: add declarations to avoid warnings (Jiri Benc) [1947007]
+- tcp: remove indirect calls for icsk->icsk_af_ops->send_check (Jiri Benc) [1947007]
+- tcp: remove indirect calls for icsk->icsk_af_ops->queue_xmit (Jiri Benc) [1947007]
+- net: remove unused skb_send_sock() (Jiri Benc) [1947007]
+- net: Use skb_frag_off accessors (Jiri Benc) [1947007]
+- net: Use skb accessors in network core (Jiri Benc) [1947007]
+- skbuff: fix compilation warnings in skb_dump() (Jiri Benc) [1947007]
+- skbuff: increase verbosity when dumping skb data (Jiri Benc) [1947007]
+- net: dump more useful information in netdev_rx_csum_fault() (Jiri Benc) [1947007]
+- net: avoid indirect calls in L4 checksum calculation (Jiri Benc) [1947007]
+- net/core: Allow the compiler to verify declaration and definition consistency (Jiri Benc) [1947007]
+- efi/arm64: Drop erroneous '__pure' attribute from set_nokaslr() (Vitaly Kuznetsov) [2026995]
+- drm/nouveau: clean up all clients on device removal (Karol Herbst) [1901903] {CVE-2020-27820}
+- drm/nouveau: Add a dedicated mutex for the clients list (Karol Herbst) [1901903] {CVE-2020-27820}
+- drm/nouveau: use drm_dev_unplug() during device removal (Karol Herbst) [1901903] {CVE-2020-27820}
+- block: avoid to quiesce queue in elevator_init_mq (Ming Lei) [2025759]
+- blk-mq: cancel blk-mq dispatch work in both blk_cleanup_queue and disk_release() (Ming Lei) [2021399]
+- PCI/portdrv: Enable Bandwidth Notification only if port supports it (Myron Stowe) [1981738]
+- cifs: keep referral server sessions alive (Ronnie Sahlberg) [2030880]
+- cifs: check pointer before freeing (Ronnie Sahlberg) [2030880]
+- cifs: constify path argument of ->make_node() (Ronnie Sahlberg) [2030880]
+- cifs: constify get_normalized_path() properly (Ronnie Sahlberg) [2030880]
+- cifs: don't cargo-cult strndup() (Ronnie Sahlberg) [2030880]
+- cifs: cleanup misc.c (Ronnie Sahlberg) [2030880]
+- cifs: get rid of @noreq param in __dfs_cache_find() (Ronnie Sahlberg) [2030880]
+- cifs: do not send tree disconnect to ipc shares (Ronnie Sahlberg) [2030880]
+- cifs: fix doc warnings in cifs_dfs_ref.c (Ronnie Sahlberg) [2030880]
+- cifs: introduce helper for finding referral server to improve DFS target resolution (Ronnie Sahlberg) [2030880]
+- cifs: check all path components in resolved dfs target (Ronnie Sahlberg) [2030880]
+- cifs: fix DFS failover (Ronnie Sahlberg) [2030880]
+- Enable CONFIG_SCHED_CLUSTER (Phil Auld) [1920645]
+- sched,x86: Don't use cluster topology for x86 hybrid CPUs (Phil Auld) [1920645]
+- arch_topology: Fix missing clear cluster_cpumask in remove_cpu_topology() (Phil Auld) [1920645]
+- x86/smp: Factor out parts of native_smp_prepare_cpus() (Phil Auld) [1920645]
+- sched,x86: Fix L2 cache mask (Phil Auld) [1920645]
+- sched: Add cluster scheduler level for x86 (Phil Auld) [1920645]
+- sched: Add cluster scheduler level in core and related Kconfig for ARM64 (Phil Auld) [1920645]
+- topology: Represent clusters of CPUs within a die (Phil Auld) [1920645]
+- cpumask: Omit terminating null byte in cpumap_print_{list,bitmask}_to_buf (Phil Auld) [1920645]
+- drivers/base/node.c: use bin_attribute to break the size limitation of cpumap ABI (Phil Auld) [1920645]
+- topology: use bin_attribute to break the size limitation of cpumap ABI (Phil Auld) [1920645]
+- cpumask: introduce cpumap_print_list/bitmask_to_buf to support large bitmask and list (Phil Auld) [1920645]
+- x86/cpu: Add get_llc_id() helper function (Phil Auld) [1920645]
+- x86/smp: Add a per-cpu view of SMT state (Phil Auld) [1920645]
+- ARM: 8943/1: Fix topology setup in case of CPU hotplug for CONFIG_SCHED_MC (Phil Auld) [1920645]
+- arm: Use common cpu_topology structure and functions. (Phil Auld) [1920645]
+- cpu-topology: Move cpu topology code to common code. (Phil Auld) [1920645]
+- netfilter: ctnetlink: allow to filter dump by status bits (Florian Westphal) [1991526]
+- netfilter: ctnetlink: add and use a helper for mark parsing (Florian Westphal) [1991526]
+- netfilter: ctnetlink: suspicious RCU usage in ctnetlink_dump_helpinfo (Florian Westphal) [1991526]
+- netfilter: ctnetlink: add timeout and protoinfo to destroy events (Florian Westphal) [1991526]
+- netfilter: ctnetlink: fix mark based dump filtering regression (Florian Westphal) [1991526]
+- netfilter: ctnetlink: memleak in filter initialization error path (Florian Westphal) [1991526]
+- netfilter: ctnetlink: add kernel side filtering for dump (Florian Westphal) [1991526]
+- netfilter: ctnetlink: don't dump ct extensions of unconfirmed conntracks (Florian Westphal) [1991526]
+- netfilter: ctnetlink: be more strict when NF_CONNTRACK_MARK is not set (Florian Westphal) [1991526]
+- netfilter: ctnetlink: Fix regression in conntrack entry deletion (Florian Westphal) [1991526]
+- netfilter: ctnetlink: Resolve conntrack L3-protocol flush regression (Florian Westphal) [1991526]
+- netfilter: ctnetlink: always honor CTA_MARK_MASK (Florian Westphal) [1991526]
+- netfilter: ctnetlink: must check mark attributes vs NULL (Florian Westphal) [1991526]
+- netfilter: ctnetlink: Support L3 protocol-filter on flush (Florian Westphal) [1991526]
+- netfilter: nftables: fix incorrect increment of loop counter (Phil Sutter) [1983635]
+- netfilter: nf_tables: initialize set before expression setup (Phil Sutter) [1983635]
+- netfilter: nftables: add set expression flags (Phil Sutter) [1983635]
+- netfilter: nft_dynset: report EOPNOTSUPP on missing set feature (Phil Sutter) [1983635]
+- netfilter: nft_dynset: dump expressions when set definition contains no expressions (Phil Sutter) [1983635]
+- netfilter: nft_dynset: honor stateful expressions in set definition (Phil Sutter) [1983635]
+- netfilter: nf_tables: do not leave dangling pointer in nf_tables_set_alloc_name (Phil Sutter) [1983635]
+- netfilter: nftables: clone set element expression template (Phil Sutter) [1983635]
+- netfilter: nftables: relax check for stateful expressions in set definition (Phil Sutter) [1983635]
+- netfilter: nftables: netlink support for several set element expressions (Phil Sutter) [1983635]
+- netfilter: nf_tables: skip set types that do not support for expressions (Phil Sutter) [1983635]
+- netfilter: nft_dynset: allow dynamic updates of non-anonymous set (Phil Sutter) [1983635]
+- netfilter: nftables: generalize set extension to support for several expressions (Phil Sutter) [1983635]
+- netfilter: nf_tables: do not update stateful expressions if lookup is inverted (Phil Sutter) [1983635]
+- netfilter: nftables: move nft_expr before nft_set (Phil Sutter) [1983635]
+- netfilter: nf_tables: Align nft_expr private data to 64-bit (Phil Sutter) [1983635]
+- netfilter: nftables: generalize set expressions support (Phil Sutter) [1983635]
+- netfilter: nft_dynset: validate set expression definition (Phil Sutter) [1983635]
+- netfilter: nf_tables: add nft_set_elem_expr_destroy() and use it (Phil Sutter) [1983635]
+- netfilter: nf_tables: fix double-free on set expression from the error path (Phil Sutter) [1983635]
+- netfilter: nf_tables: allow to specify stateful expression in set definition (Phil Sutter) [1983635]
+- netfilter: nf_tables: bogus EBUSY when deleting set after flush (Phil Sutter) [1983635]
+- netfilter: nf_tables: pass context to nft_set_destroy() (Phil Sutter) [1983635]
+- netfilter: nf_tables: move nft_expr_clone() to nf_tables_api.c (Phil Sutter) [1983635]
+- netfilter: nf_tables: relocate header content to consumer (Phil Sutter) [1983635]
+- netfilter: nft_lookup: update element stateful expression (Phil Sutter) [1983635]
+- netfilter: nf_tables: add nft_set_elem_update_expr() helper function (Phil Sutter) [1983635]
+- netfilter: nf_tables: add elements with stateful expressions (Phil Sutter) [1983635]
+- netfilter: nf_tables: statify nft_expr_init() (Phil Sutter) [1983635]
+- netfilter: nf_tables: add nft_set_elem_expr_alloc() (Phil Sutter) [1983635]
+- netfilter: nf_tables: enable set expiration time for set elements (Phil Sutter) [1983635]
+- hugetlbfs: flush TLBs correctly after huge_pmd_unshare (Rafael Aquini) [2026376] {CVE-2021-4002}
+- tlb: mmu_gather: add tlb_flush_*_range APIs (Rafael Aquini) [2026376] {CVE-2021-4002}
+- ACPI: PM: Do not turn off power resources in unknown state (Mark Langsdorf) [1997696]
+- ACPI: PRM: Find PRMT table before parsing it (Mark Langsdorf) [1997696]
+- ACPI: NFIT: Fix support for virtual SPA ranges (Mark Langsdorf) [1997696]
+- ACPI: DPTF: Fix reading of attributes (Mark Langsdorf) [1997696]
+- ACPI: PM: Add support for upcoming AMD uPEP HID AMDI007 (Mark Langsdorf) [1997696]
+- ACPI: Kconfig: Fix table override from built-in initrd (Mark Langsdorf) [1997696]
+- ACPI: video: Add quirk for the Dell Vostro 3350 (Mark Langsdorf) [1997696]
+- ACPI: AMBA: Fix resource name in /proc/iomem (Mark Langsdorf) [1997696]
+- ACPI: PM: postpone bringing devices to D0 unless we need them (Mark Langsdorf) [1997696]
+- ACPI: tables: Add custom DSDT file as makefile prerequisite (Mark Langsdorf) [1997696]
+- ACPI: bgrt: Use sysfs_emit (Mark Langsdorf) [1997696]
+- ACPI: bgrt: Fix CFI violation (Mark Langsdorf) [1997696]
+- ACPI: EC: trust DSDT GPE for certain HP laptop (Mark Langsdorf) [1997696]
+- ACPI: scan: Simplify acpi_table_events_fn() (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Remove tailing return statement in void function (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Use __ATTR_RO() and __ATTR_RW() macros (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Sort headers alphabetically (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Refactor param_get_trace_state() to drop dead code (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Unify pattern of memory allocations (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Allow bitmap list to be supplied to acpi_mask_gpe (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Make sparse happy about address space in use (Mark Langsdorf) [1997696]
+- ACPI: scan: Fix race related to dropping dependencies (Mark Langsdorf) [1997696]
+- ACPI: scan: Reorganize acpi_device_add() (Mark Langsdorf) [1997696]
+- ACPI: scan: Fix device object rescan in acpi_scan_clear_dep() (Mark Langsdorf) [1997696]
+- ACPI: scan: Make acpi_walk_dep_device_list() (Mark Langsdorf) [1997696]
+- ACPI: scan: Rearrange acpi_dev_get_first_consumer_dev_cb() (Mark Langsdorf) [1997696]
+- ACPI: scan: Define acpi_bus_put_acpi_device() as static inline (Mark Langsdorf) [1997696]
+- ACPI: NVS: fix doc warnings in nvs.c (Mark Langsdorf) [1997696]
+- ACPI: sysfs: fix doc warnings in device_sysfs.c (Mark Langsdorf) [1997696]
+- ACPI: APEI: fix synchronous external aborts in user-mode (Mark Langsdorf) [1997696]
+- mfd: tps68470: Remove tps68470 MFD driver (Mark Langsdorf) [1997696]
+- ACPI: power: Use dev_dbg() to print some messages (Mark Langsdorf) [1997696]
+- ACPI: Add quirks for AMD Renoir/Lucienne CPUs to force the D3 hint (Mark Langsdorf) [1997696]
+- ACPI: processor_throttling: Fix several coding style issues (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Drop four redundant return statements (Mark Langsdorf) [1997696]
+- ACPI: video: Drop three redundant return statements (Mark Langsdorf) [1997696]
+- ACPI: sleep: Fix acpi_pm_pre_suspend() kernel-doc (Mark Langsdorf) [1997696]
+- ACPI: processor_throttling: Remove redundant initialization of 'obj' (Mark Langsdorf) [1997696]
+- ACPI: utils: Introduce acpi_get_local_address() (Mark Langsdorf) [1997696]
+- ACPI: scan: initialize local variable to avoid garbage being returned (Mark Langsdorf) [1997696]
+- ACPI: Remove redundant clearing of context->ret.pointer from acpi_run_osc() (Mark Langsdorf) [1997696]
+- redhat/configs: Add Enable CONFIG_ACPI_PRMT (Mark Langsdorf) [1997696]
+- ACPI: PRM: Deal with table not present or no module found (Mark Langsdorf) [1997696]
+- ACPI: Do not singal PRM support if not enabled (Mark Langsdorf) [1997696]
+- ACPI: Kconfig: Provide help text for the ACPI_PRMT option (Mark Langsdorf) [1997696]
+- ACPI: PRM: make symbol 'prm_module_list' static (Mark Langsdorf) [1997696]
+- ACPI: Correct \_SB._OSC bit definition for PRM (Mark Langsdorf) [1997696]
+- ACPI: Add \_SB._OSC bit for PRM (Mark Langsdorf) [1997696]
+- ACPI: PRM: implement OperationRegion handler for the PlatformRtMechanism subtype (Mark Langsdorf) [1997696]
+- ACPICA: Add PRMT module header to facilitate parsing (Mark Langsdorf) [1997696]
+- ACPI: scan: Add function to fetch dependent of ACPI device (Mark Langsdorf) [1997696]
+- ACPI: scan: Extend acpi_walk_dep_device_list() (Mark Langsdorf) [1997696]
+- i2c: core: Restore acpi_walk_dep_device_list() getting called after registering the ACPI i2c devs (Mark Langsdorf) [1997696]
+- ACPI: NUMA: fix typo in a comment (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Fix a buffer overrun problem with description_show() (Mark Langsdorf) [1997696]
+- ACPI: LPSS: Use kstrtol() instead of simple_strtol() (Mark Langsdorf) [1997696]
+- ACPI: tables: FPDT: Add missing acpi_put_table() in acpi_init_fpdt() (Mark Langsdorf) [1997696]
+- ACPI: tables: PPTT: Populate cache-id if provided by firmware (Mark Langsdorf) [1997696]
+- ACPI: OSL: Use DEFINE_RES_IO_NAMED() to simplify code (Mark Langsdorf) [1997696]
+- ACPI: bus: Call kobject_put() in acpi_init() error path (Mark Langsdorf) [1997696]
+- ACPI: bus: Remove unneeded assignment (Mark Langsdorf) [1997696]
+- ACPI: sleep: Unify the message printing (Mark Langsdorf) [1997696]
+- ACPI: sbs: Unify the message printing (Mark Langsdorf) [1997696]
+- ACPI: scan: Unify the log message printing (Mark Langsdorf) [1997696]
+- ACPI: sbshc: Unify the message printing (Mark Langsdorf) [1997696]
+- ACPI: sysfs: Cleanup message printing (Mark Langsdorf) [1997696]
+- ACPI: reboot: Unify the message printing (Mark Langsdorf) [1997696]
+- ACPI: processor_throttling: Cleanup the printing messages (Mark Langsdorf) [1997696]
+- ACPI: processor_perflib: Cleanup print messages (Mark Langsdorf) [1997696]
+- ACPI: processor_thermal: Remove unused PREFIX for printing (Mark Langsdorf) [1997696]
+- ACPI: pci_root: Unify the message printing (Mark Langsdorf) [1997696]
+- ACPI: osl: Remove the duplicated PREFIX for message printing (Mark Langsdorf) [1997696]
+- ACPI: nvs: Unify the message printing (Mark Langsdorf) [1997696]
+- ACPI: glue: Clean up the printing messages (Mark Langsdorf) [1997696]
+- ACPI: event: Use pr_*() macros to replace printk() (Mark Langsdorf) [1997696]
+- ACPI: bus: Use pr_*() macros to replace printk() (Mark Langsdorf) [1997696]
+- ACPI: blacklist: Unify the message printing (Mark Langsdorf) [1997696]
+- ACPI: cmos_rtc: Using pr_fmt() and remove PREFIX (Mark Langsdorf) [1997696]
+- ACPI: scan: Constify acpi_dma_supported() helper function (Mark Langsdorf) [1997696]
+- ACPICA: Update version to 20210604 (Mark Langsdorf) [1997696]
+- ACPICA: Add support for PlatformRtMechanism OperationRegion handler (Mark Langsdorf) [1997696]
+- ACPICA: iASL: add disassembler support for PRMT (Mark Langsdorf) [1997696]
+- ACPICA: Add the CFMWS structure definition to the CEDT table (Mark Langsdorf) [1997696]
+- ACPICA: Add defines for the CXL Host Bridge Structure (CHBS) (Mark Langsdorf) [1997696]
+- ACPICA: iASL: Add support for the BDAT ACPI table (Mark Langsdorf) [1997696]
+- ACPICA: Add _PLD panel positions (Mark Langsdorf) [1997696]
+- ACPICA: Use ACPI_FALLTHROUGH (Mark Langsdorf) [1997696]
+- ACPICA: iASL Table Compiler: Add full support for RGRT ACPI table (Mark Langsdorf) [1997696]
+- ACPICA: iASL: Add support for the SVKL table (Mark Langsdorf) [1997696]
+- ACPICA: iASL: Finish support for the IVRS ACPI table (Mark Langsdorf) [1997696]
+- ACPICA: Add SVKL table headers (Mark Langsdorf) [1997696]
+- ACPICA: ACPI 6.4: MADT: add Multiprocessor Wakeup Mailbox Structure (Mark Langsdorf) [1997696]
+- ACPI: power: Rework turning off unused power resources (Mark Langsdorf) [1997696]
+- ACPI: power: Save the last known state of each power resource (Mark Langsdorf) [1997696]
+- ACPI: power: Use u8 as the power resource state data type (Mark Langsdorf) [1997696]
+- ACPI: configfs: Replace ACPI_INFO() with pr_debug() (Mark Langsdorf) [1997696]
+- ACPI: ipmi: Remove address space handler in error path (Mark Langsdorf) [1997696]
+- ACPI: EC: Make more Asus laptops use ECDT _GPE (Mark Langsdorf) [1997696]
+- ACPI: event: Remove redundant initialization of local variable (Mark Langsdorf) [1997696]
+- ACPI: sbshc: Fix fall-through warning for Clang (Mark Langsdorf) [1997696]
+- ACPI: PM / fan: Put fan device IDs into separate header file (Mark Langsdorf) [1997696]
+- ACPI: APEI: Don't warn if ACPI is disabled (Mark Langsdorf) [1997696]
+- ACPI: processor idle: Fix up C-state latency if not ordered (Mark Langsdorf) [1997696]
+- ACPI: scan: Rearrange dep_unmet initialization (Mark Langsdorf) [1997696]
+- ACPI: DPTF: Add battery participant for Intel SoCs (Mark Langsdorf) [1997696]
+- md/raid5: avoid device_lock in read_one_chunk() (Nigel Croxon) [1985919]
+- md: add comments in md_integrity_register (Nigel Croxon) [1985919]
+- md: check level before create and exit io_acct_set (Nigel Croxon) [1985919]
+- md/raid10: enable io accounting (Nigel Croxon) [1985919]
+- md/raid1: enable io accounting (Nigel Croxon) [1985919]
+- md/raid5: avoid redundant bio clone in raid5_read_one_chunk (Nigel Croxon) [1985919]
+- md/raid5: move checking badblock before clone bio in raid5_read_one_chunk (Nigel Croxon) [1985919]
+- md: add io accounting for raid0 and raid5 (Nigel Croxon) [1985919]
+- md: revert io stats accounting (Nigel Croxon) [1985919]
+- md/raid5: remove an incorrect assert in in_chunk_boundary (Nigel Croxon) [1985919]
+- md: use rdev_read_only in restart_array (Nigel Croxon) [1985919]
+- md/raid6: refactor raid5_read_one_chunk (Nigel Croxon) [1985919]
+- md: remove md_bio_alloc_sync (Nigel Croxon) [1985919]
+- md: simplify sync_page_io (Nigel Croxon) [1985919]
+- md: remove bio_alloc_mddev (Nigel Croxon) [1985919]
+- md: use part_[begin|end]_io_acct instead of disk_[begin|end]_io_acct (Nigel Croxon) [1985919]
+- md: improve io stats accounting (Nigel Croxon) [1985919]
+
+* Tue Dec 28 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-358.el8]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Corinna Vinschen) [1970663]
+- igbvf: convert to strongly typed descriptors (Corinna Vinschen) [1970663]
+- intel: call csum functions with well formatted arguments (Corinna Vinschen) [1970663]
+- igb: handle vlan types with checker enabled (Corinna Vinschen) [1970663]
+- igb: fix netpoll exit with traffic (Corinna Vinschen) [1970662]
+- igb: unbreak I2C bit-banging on i350 (Corinna Vinschen) [1970662]
+- ethernet: use eth_hw_addr_set() for dev->addr_len cases (Corinna Vinschen) [1970662]
+- igb: Avoid memcpy() over-reading of ETH_SS_STATS (Corinna Vinschen) [1970662]
+- igb: Add counter to i21x doublecheck (Corinna Vinschen) [1970662]
+- igb: Fix position of assignment to *ring (Corinna Vinschen) [1970662]
+- igb: Check if num of q_vectors is smaller than max before array access (Corinna Vinschen) [1970662]
+- igb: Fix an error handling path in 'igb_probe()' (Corinna Vinschen) [1970662]
+- igb: Fix use-after-free error during reset (Corinna Vinschen) [1970662]
+- intel: Remove rcu_read_lock() around XDP program invocation (Corinna Vinschen) [1970662]
+- igb: add correct exception tracing for XDP (Corinna Vinschen) [1970662]
+- igb: Fix XDP with PTP enabled (Corinna Vinschen) [1970662]
+- igb: Fix -Wunused-const-variable warning (Corinna Vinschen) [1970662]
+- igb: override two checker warnings (Corinna Vinschen) [1970662]
+- igb: fix assignment on big endian machines (Corinna Vinschen) [1970662]
+- igb: handle vlan types with checker enabled (Corinna Vinschen) [1970662]
+- igb/igc: use strongly typed pointer (Corinna Vinschen) [1970662]
+- intel: remove checker warning (Corinna Vinschen) [1970662]
+- i40e: Fix NULL pointer dereference in i40e_dbg_dump_desc (Stefan Assmann) [1970651]
+- i40e: Fix pre-set max number of queues for VF (Stefan Assmann) [1970651]
+- i40e: Fix failed opcode appearing if handling messages from VF (Stefan Assmann) [1970651]
+- i40e: Fix display error code in dmesg (Stefan Assmann) [1970651]
+- i40e: Fix creation of first queue by omitting it if is not power of two (Stefan Assmann) [1970651]
+- i40e: Fix warning message and call stack during rmmod i40e driver (Stefan Assmann) [1970651]
+- i40e: Fix ping is lost after configuring ADq on VF (Stefan Assmann) [1970651]
+- i40e: Fix changing previously set num_queue_pairs for PFs (Stefan Assmann) [1970651]
+- i40e: Fix NULL ptr dereference on VSI filter sync (Stefan Assmann) [1970651]
+- i40e: Fix correct max_pkt_size on VF RX queue (Stefan Assmann) [1970651]
+- ethernet: constify references to netdev->dev_addr in drivers (Stefan Assmann) [1970651]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Stefan Assmann) [1970651]
+- i40e: Fix ATR queue selection (Stefan Assmann) [1970651]
+- i40e: Fix spelling mistake "dissable" -> "disable" (Stefan Assmann) [1970651]
+- iavf: do not override the adapter state in the watchdog task (again) (Stefan Assmann) [1970650]
+- iavf: missing unlocks in iavf_watchdog_task() (Stefan Assmann) [1970650]
+- iavf: Fix reporting when setting descriptor count (Stefan Assmann) [1970650]
+- iavf: restore MSI state on reset (Stefan Assmann) [1970650]
+- iavf: Fix displaying queue statistics shown by ethtool (Stefan Assmann) [1970650]
+- iavf: Refactor string format to avoid static analysis warnings (Stefan Assmann) [1970650]
+- iavf: Refactor text of informational message (Stefan Assmann) [1970650]
+- iavf: Fix static code analysis warning (Stefan Assmann) [1970650]
+- iavf: Refactor iavf_mac_filter struct memory usage (Stefan Assmann) [1970650]
+- iavf: Enable setting RSS hash key (Stefan Assmann) [1970650]
+- iavf: Add trace while removing device (Stefan Assmann) [1970650]
+- iavf: return errno code instead of status code (Stefan Assmann) [1970650]
+- iavf: Log info when VF is entering and leaving Allmulti mode (Stefan Assmann) [1970650]
+- iavf: Add change MTU message (Stefan Assmann) [1970650]
+- iavf: Fix VLAN feature flags after VFR (Stefan Assmann) [1970650]
+- iavf: Fix refreshing iavf adapter stats on ethtool request (Stefan Assmann) [1970650]
+- iavf: Fix deadlock occurrence during resetting VF interface (Stefan Assmann) [1970650]
+- iavf: Prevent changing static ITR values if adaptive moderation is on (Stefan Assmann) [1970650]
+- iavf: Restore VLAN filters after link down (Stefan Assmann) [1970650]
+- iavf: Fix for setting queues to 0 (Stefan Assmann) [1970650]
+- iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset (Stefan Assmann) [1970650]
+- iavf: validate pointers (Stefan Assmann) [1970650]
+- iavf: prevent accidental free of filter structure (Stefan Assmann) [1970650]
+- iavf: Fix failure to exit out from last all-multicast mode (Stefan Assmann) [1970650]
+- iavf: don't clear a lock we don't hold (Stefan Assmann) [1970650]
+- iavf: free q_vectors before queues in iavf_disable_vf (Stefan Assmann) [1970650]
+- iavf: check for null in iavf_fix_features (Stefan Assmann) [1970650]
+- iavf: Fix return of set the new channel count (Stefan Assmann) [1970650]
+- iavf: Fix kernel BUG in free_msi_irqs (Stefan Assmann) [1970650]
+- iavf: Add helper function to go from pci_dev to adapter (Stefan Assmann) [1970650]
+- iavf: Combine init and watchdog state machines (Stefan Assmann) [1970650]
+- iavf: Add __IAVF_INIT_FAILED state (Stefan Assmann) [1970650]
+- iavf: Refactor iavf state machine tracking (Stefan Assmann) [1970650]
+- iavf: fix double unlock of crit_lock (Stefan Assmann) [1970650]
+- ethernet: use eth_hw_addr_set() instead of ether_addr_copy() (Stefan Assmann) [1970650]
+- iavf: Fix ping is lost after untrusted VF had tried to change MAC (Stefan Assmann) [1970650]
+- iavf: use mutexes for locking of critical sections (Stefan Assmann) [1970650]
+- qed: rdma - don't wait for resources under hw error recovery flow (Manish Chopra) [1998195]
+- qed: Handle management FW error (Manish Chopra) [1998195]
+- qede: Fix memset corruption (Manish Chopra) [1998195]
+- qed: Enable automatic recovery on error condition. (Manish Chopra) [1998195]
+- qed: Fix the VF msix vectors flow (Manish Chopra) [1998195]
+- qed: Fix null-pointer dereference in qed_rdma_create_qp() (Manish Chopra) [1998195]
+- qed: qed ll2 race condition fixes (Manish Chopra) [1998195]
+- qed: Remove duplicated include of kernel.h (Manish Chopra) [1998195]
+- qed: Remove redundant prints from the iWARP SYN handling (Manish Chopra) [1998195]
+- qed: Skip DORQ attention handling during recovery (Manish Chopra) [1998195]
+- qed: Avoid db_recovery during recovery (Manish Chopra) [1998195]
+- qede: fix crash in rmmod qede while automatic debug collection (Manish Chopra) [1998195]
+- RDMA/qedr: Improve error logs for rdma_alloc_tid error return (Manish Chopra) [1998195]
+- RDMA/qed: Use accurate error num in qed_cxt_dynamic_ilt_alloc (Manish Chopra) [1998195]
+- net: qed: remove unneeded return variables (Manish Chopra) [1998195]
+- net: qede: Fix end of loop tests for list_for_each_entry (Manish Chopra) [1998195]
+- qede: Remove rcu_read_lock() around XDP program invocation (Manish Chopra) [1998195]
+- net: qed: Fix memcpy() overflow of qed_dcbx_params() (Manish Chopra) [1998195]
+- net: qede: Use list_for_each_entry() to simplify code (Manish Chopra) [1998195]
+- qed: Fix duplicate included linux/kernel.h (Manish Chopra) [1998195]
+- qed: Add IP services APIs support (Manish Chopra) [1998195]
+- qed: Add NVMeTCP Offload IO Level FW Initializations (Manish Chopra) [1998195]
+- qed: Add NVMeTCP Offload IO Level FW and HW HSI (Manish Chopra) [1998195]
+- qed: Add support of HW filter block (Manish Chopra) [1998195]
+- qed: Add NVMeTCP Offload Connection Level FW and HW HSI (Manish Chopra) [1998195]
+- qed: Add NVMeTCP Offload PF Level FW and HW HSI (Manish Chopra) [1998195]
+- qed: Add TCP_ULP FW resource layout (Manish Chopra) [1998195]
+- net: qed: remove redundant initialization of variable rc (Manish Chopra) [1998195]
+- net: qed: remove unused including <linux/version.h> (Manish Chopra) [1998195]
+- qede: remove unused including <linux/version.h> (Manish Chopra) [1998195]
+- linux/qed: Mundane spelling fixes throughout the file (Manish Chopra) [1998195]
+- qed: Fix fall-through warnings for Clang (Manish Chopra) [1998195]
+- RDMA/qedr: Use true and false for bool variable (Manish Chopra) [1998195]
+- qede: preserve per queue stats across up/down of interface (Manish Chopra) [1998195]
+- qede: add per queue coalesce support for qede driver (Manish Chopra) [1998195]
+- qede: add netpoll support for qede driver (Manish Chopra) [1998195]
+- RDMA/qedr: Remove in_irq() usage from debug output (Manish Chopra) [1998195]
+- linux/qed: fix spelling typo in qed_chain.h (Manish Chopra) [1998195]
+- qed: select CONFIG_CRC32 (Manish Chopra) [1998195]
+- IB/qedr: Fix fall-through warnings for Clang (Manish Chopra) [1998195]
+- RDMA/qedr: Endianness warnings cleanup (Manish Chopra) [1998195]
+- qed/qed_ll2: Replace one-element array with flexible-array member (Manish Chopra) [1998195]
+- net: qed: use true,false for bool variables (Manish Chopra) [1998195]
+- RDMA/qedr: Fix reported max_pkeys (Manish Chopra) [1998195]
+- qed: align adjacent indent (Manish Chopra) [1998195]
+- qed: fix kconfig help entries (Manish Chopra) [1998195]
+- sched/cputime: Fix getrusage(RUSAGE_THREAD) with nohz_full (Phil Auld) [1992387]
+- net: tg3: fix obsolete check of !err (Ken Cox) [1987082]
+- net: broadcom: switch from 'pci_' to 'dma_' API (Ken Cox) [1987082]
+- tg3: Remove unused PHY_BRCM flags (Ken Cox) [1987082]
+- net: check skb sec_path when re-initializing slow_gro in gro_list_prepare (Xin Long) [2030476]
+- e1000e: Fix the max snoop/no-snoop latency for 10M (Ken Cox) [1970665]
+- net/e1000e: Fix spelling mistake "The" -> "This" (Ken Cox) [1970665]
+- e1000e: Add space to the debug print (Ken Cox) [1970665]
+- e1000e: Additional PHY power saving in S0ix (Ken Cox) [1970665]
+- e1000e: Add polling mechanism to indicate CSME DPG exit (Ken Cox) [1970665]
+- e1000e: Add handshake with the CSME to support S0ix (Ken Cox) [1970665]
+- e1000e: Fix an error handling path in 'e1000_probe()' (Ken Cox) [1970665]
+- e1000e: Check the PCIm state (Ken Cox) [1970665]
+- net: e1000e: fix misspell word "retreived" (Ken Cox) [1970665]
+- net: e1000e: remove repeated word "slot" for netdev.c (Ken Cox) [1970665]
+- net: e1000e: remove repeated word "the" for ich8lan.c (Ken Cox) [1970665]
+- ppc64: Fix incorrect qrwlock use in debug kernel (Waiman Long) [2027200]
+- locking: Remove spin_lock_flags() etc (Waiman Long) [2027200]
+- Bluetooth: btusb: Add one more Bluetooth part for WCN6855 (Gopal Tiwari) [2007903]
+- Bluetooth: btusb: Add the new support IDs for WCN6855 (Gopal Tiwari) [2007903]
+- Bluetooth: btusb: re-definition for board_id in struct qca_version (Gopal Tiwari) [2007903]
+- Bluetooth: btusb: Add support using different nvm for variant WCN6855 controller (Gopal Tiwari) [2007903]
+- bpf/selftests: enable atomic_bounds test (Viktor Malik) [2030572]
+- Revert "bpf: Remove atomics tests from test_progs" (Viktor Malik) [2030572]
+- bpf/selftests: disable tests failing on RHEL 8.6 (Viktor Malik) [2025797 2025801 2025810 2025812 2025813]
+- bpf/selftests: allow disabling prog_tests (Viktor Malik) [2030572]
+- xfs: drop experimental warnings for bigtime and inobtcount (Bill O'Donnell) [2022903]
+- libxfs: expose inobtcount in xfs geometry (Bill O'Donnell) [2022903]
+- xfs: enable new inode btree counters feature (Bill O'Donnell) [2022903]
+- xfs: enable big timestamps (Bill O'Donnell) [2022903]
+- selftests: net: bridge: fix typo in vlan_filtering dependency test (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for vlan_filtering dependency (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast_router tests (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast query and query response interval tests (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast_querier_interval tests (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast_membership_interval test (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast_startup_query_count/interval tests (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast_last_member_count/interval tests (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast igmp/mld version tests (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast querier test (Ivan Vecera) [2019055]
+- selftests: net: bridge: add vlan mcast snooping control test (Ivan Vecera) [2019055]
+- selftests: net: bridge: update IGMP/MLD membership interval value (Ivan Vecera) [2019055]
+- net: bridge: mcast: use multicast_membership_interval for IGMPv3 (Ivan Vecera) [2019055]
+- net: bridge: fix under estimation in br_get_linkxstats_size() (Ivan Vecera) [2019055]
+- net: bridge: use nla_total_size_64bit() in br_get_linkxstats_size() (Ivan Vecera) [2019055]
+- net: bridge: mcast: Associate the seqcount with its protecting lock. (Ivan Vecera) [2019055]
+- net: bridge: mcast: fix vlan port router deadlock (Ivan Vecera) [2019055]
+- net: bridge: use mld2r_ngrec instead of icmpv6_dataun (Ivan Vecera) [2019055]
+- net: bridge: change return type of br_handle_ingress_vlan_tunnel (Ivan Vecera) [2019055]
+- net: bridge: vlan: convert mcast router global option to per-vlan entry (Ivan Vecera) [2019055]
+- net: bridge: mcast: br_multicast_set_port_router takes multicast context as argument (Ivan Vecera) [2019055]
+- net: bridge: mcast: toggle also host vlan state in br_multicast_toggle_vlan (Ivan Vecera) [2019055]
+- net: bridge: mcast: use the correct vlan group helper (Ivan Vecera) [2019055]
+- net: bridge: vlan: account for router port lists when notifying (Ivan Vecera) [2019055]
+- net: bridge: vlan: enable mcast snooping for existing master vlans (Ivan Vecera) [2019055]
+- net: bridge: mcast: account for ipv6 size when dumping querier state (Ivan Vecera) [2019055]
+- net: bridge: mcast: drop sizeof for nest attribute's zero size (Ivan Vecera) [2019055]
+- net: bridge: mcast: don't dump querier state if snooping is disabled (Ivan Vecera) [2019055]
+- net: bridge: vlan: dump mcast ctx querier state (Ivan Vecera) [2019055]
+- net: bridge: mcast: dump ipv6 querier state (Ivan Vecera) [2019055]
+- net: bridge: mcast: dump ipv4 querier state (Ivan Vecera) [2019055]
+- net: bridge: mcast: consolidate querier selection for ipv4 and ipv6 (Ivan Vecera) [2019055]
+- net: bridge: mcast: make sure querier port/address updates are consistent (Ivan Vecera) [2019055]
+- net: bridge: mcast: record querier port device ifindex instead of pointer (Ivan Vecera) [2019055]
+- net: bridge: vlan: use br_rports_fill_info() to export mcast router ports (Ivan Vecera) [2019055]
+- net: bridge: mcast: use the proper multicast context when dumping router ports (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast router global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast querier global option (Ivan Vecera) [2019055]
+- net: bridge: mcast: querier and query state affect only current context type (Ivan Vecera) [2019055]
+- net: bridge: mcast: move querier state to the multicast context (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast startup query interval global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast query response interval global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast query interval global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast querier interval global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast membership interval global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast last member interval global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast startup query count global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast last member count global option (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for mcast igmp/mld version global options (Ivan Vecera) [2019055]
+- net: switchdev: zero-initialize struct switchdev_notifier_fdb_info emitted by drivers towards the bridge (Ivan Vecera) [2019055]
+- net: bridge: fix flags interpretation for extern learn fdb entries (Ivan Vecera) [2019055]
+- net: bridge: vlan: fix global vlan option range dumping (Ivan Vecera) [2019055]
+- net: bridge: fix memleak in br_add_if() (Ivan Vecera) [2019055]
+- net: make switchdev_bridge_port_{,unoffload} loosely coupled with the bridge (Ivan Vecera) [2019055]
+- net: bridge: switchdev: fix incorrect use of FDB flags when picking the dst device (Ivan Vecera) [2019055]
+- net: bridge: validate the NUD_PERMANENT bit when adding an extern_learn FDB entry (Ivan Vecera) [2019055]
+- net: bridge: switchdev: treat local FDBs the same as entries towards the bridge (Ivan Vecera) [2019055]
+- net: bridge: switchdev: replay the entire FDB for each port (Ivan Vecera) [2019055]
+- net: bridge: add a helper for retrieving port VLANs from the data path (Ivan Vecera) [2019055]
+- net: bridge: update BROPT_VLAN_ENABLED before notifying switchdev in br_vlan_filter_toggle (Ivan Vecera) [2019055]
+- net: bridge: fix build when setting skb->offload_fwd_mark with CONFIG_NET_SWITCHDEV=n (Ivan Vecera) [2019055]
+- net: bridge: switchdev: allow the TX data plane forwarding to be offloaded (Ivan Vecera) [2019055]
+- net: switchdev: fix FDB entries towards foreign ports not getting propagated to us (Ivan Vecera) [2019055]
+- net: bridge: move the switchdev object replay helpers to "push" mode (Ivan Vecera) [2019055]
+- net: bridge: guard the switchdev replay helpers against a NULL notifier block (Ivan Vecera) [2019055]
+- net: bridge: switchdev: let drivers inform which bridge ports are offloaded (Ivan Vecera) [2019055]
+- net: bridge: switchdev: recycle unused hwdoms (Ivan Vecera) [2019055]
+- net: bridge: disambiguate offload_fwd_mark (Ivan Vecera) [2019055]
+- net: bridge: multicast: add context support for host-joined groups (Ivan Vecera) [2019055]
+- net: bridge: multicast: add mdb context support (Ivan Vecera) [2019055]
+- net: bridge: multicast: fix igmp/mld port context null pointer dereferences (Ivan Vecera) [2019055]
+- net: switchdev: recurse into __switchdev_handle_fdb_del_to_device (Ivan Vecera) [2019055]
+- net: switchdev: remove stray semicolon in switchdev_handle_fdb_del_to_device shim (Ivan Vecera) [2019055]
+- net: bridge: vlan: add mcast snooping control (Ivan Vecera) [2019055]
+- net: bridge: vlan: notify when global options change (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for dumping global vlan options (Ivan Vecera) [2019055]
+- net: bridge: vlan: add support for global options (Ivan Vecera) [2019055]
+- net: bridge: multicast: include router port vlan id in notifications (Ivan Vecera) [2019055]
+- net: bridge: multicast: add vlan querier and query support (Ivan Vecera) [2019055]
+- net: bridge: multicast: check if should use vlan mcast ctx (Ivan Vecera) [2019055]
+- net: bridge: multicast: use the port group to port context helper (Ivan Vecera) [2019055]
+- net: bridge: multicast: add helper to get port mcast context from port group (Ivan Vecera) [2019055]
+- net: bridge: add vlan mcast snooping knob (Ivan Vecera) [2019055]
+- net: bridge: multicast: add vlan state initialization and control (Ivan Vecera) [2019055]
+- net: bridge: vlan: add global and per-port multicast context (Ivan Vecera) [2019055]
+- net: bridge: multicast: use multicast contexts instead of bridge or port (Ivan Vecera) [2019055]
+- net: bridge: multicast: factor out bridge multicast context (Ivan Vecera) [2019055]
+- net: bridge: multicast: factor out port multicast context (Ivan Vecera) [2019055]
+- net: switchdev: introduce a fanout helper for SWITCHDEV_FDB_{ADD,DEL}_TO_DEVICE (Ivan Vecera) [2019055]
+- net: switchdev: introduce helper for checking dynamically learned FDB entries (Ivan Vecera) [2019055]
+- net: bridge: do not replay fdb entries pointing towards the bridge twice (Ivan Vecera) [2019055]
+- net: bridge: multicast: fix MRD advertisement router port marking race (Ivan Vecera) [2019055]
+- net: bridge: multicast: fix PIM hello router port marking race (Ivan Vecera) [2019055]
+- net: bridge: sync fdb to new unicast-filtering ports (Ivan Vecera) [2019055]
+- net: bridge: allow br_fdb_replay to be called for the bridge device (Ivan Vecera) [2019055]
+- net: bridge: switchdev: send FDB notifications for host addresses (Ivan Vecera) [2019055]
+- net: bridge: use READ_ONCE() and WRITE_ONCE() compiler barriers for fdb->dst (Ivan Vecera) [2019055]
+- net: bridge: allow the switchdev replay functions to be called for deletion (Ivan Vecera) [2019055]
+- net: bridge: constify variables in the replay helpers (Ivan Vecera) [2019055]
+- net: bridge: ignore switchdev events for LAG ports which didn't request replay (Ivan Vecera) [2019055]
+- net: switchdev: add a context void pointer to struct switchdev_notifier_info (Ivan Vecera) [2019055]
+- net: bridge: include the is_local bit in br_fdb_replay (Ivan Vecera) [2019055]
+- net: bridge: mrp: Update the Test frames for MRA (Ivan Vecera) [2019055]
+- bridge: cfm: remove redundant return (Ivan Vecera) [2019055]
+- net: bridge: remove redundant continue statement (Ivan Vecera) [2019055]
+- net: bridge: fix vlan tunnel dst refcnt when egressing (Ivan Vecera) [2019055]
+- net: bridge: fix vlan tunnel dst null pointer dereference (Ivan Vecera) [2019055]
+- net: bridge: mrp: Update ring transitions. (Ivan Vecera) [2019055]
+- net: bridge: remove redundant assignment (Ivan Vecera) [2019055]
+- net: bridge: fix br_multicast_is_router stub when igmp is disabled (Ivan Vecera) [2019055]
+- net: bridge: fix build when IPv6 is disabled (Ivan Vecera) [2019055]
+- net: bridge: mcast: export multicast router presence adjacent to a port (Ivan Vecera) [2019055]
+- net: bridge: mcast: add ip4+ip6 mcast router timers to mdb netlink (Ivan Vecera) [2019055]
+- net: bridge: mcast: split multicast router state for IPv4 and IPv6 (Ivan Vecera) [2019055]
+- net: bridge: mcast: split router port del+notify for mcast router split (Ivan Vecera) [2019055]
+- net: bridge: mcast: prepare add-router function for mcast router split (Ivan Vecera) [2019055]
+- net: bridge: mcast: prepare expiry functions for mcast router split (Ivan Vecera) [2019055]
+- net: bridge: mcast: prepare is-router function for mcast router split (Ivan Vecera) [2019055]
+- net: bridge: mcast: prepare query reception for mcast router split (Ivan Vecera) [2019055]
+- net: bridge: mcast: prepare mdb netlink for mcast router split (Ivan Vecera) [2019055]
+- net: bridge: mcast: add wrappers for router node retrieval (Ivan Vecera) [2019055]
+- net: bridge: mcast: rename multicast router lists and timers (Ivan Vecera) [2019055]
+- bridge: Fix possible races between assigning rx_handler_data and setting IFF_BRIDGE_PORT bit (Ivan Vecera) [2019055]
+- net: bridge: mcast: fix broken length + header check for MRDv6 Adv. (Ivan Vecera) [2019055]
+- net: bridge: fix error in br_multicast_add_port when CONFIG_NET_SWITCHDEV=n (Ivan Vecera) [2019055]
+- net: bridge: propagate error code and extack from br_mc_disabled_update (Ivan Vecera) [2019055]
+- net: bridge: Fix missing return assignment from br_vlan_replay_one call (Ivan Vecera) [2019055]
+- bridge: mrp: Disable roles before deleting the MRP instance (Ivan Vecera) [2019055]
+- net: bridge: add helper to replay VLANs installed on port (Ivan Vecera) [2019055]
+- net: bridge: add helper to replay port and local fdb entries (Ivan Vecera) [2019055]
+- net: bridge: add helper to replay port and host-joined mdb entries (Ivan Vecera) [2019055]
+- net: bridge: add helper to retrieve the current ageing time (Ivan Vecera) [2019055]
+- net: bridge: add helper for retrieving the current bridge port STP state (Ivan Vecera) [2019055]
+- net: bridge: when suppression is enabled exclude RARP packets (Ivan Vecera) [2019055]
+- net: bridge: declare br_vlan_tunnel_lookup argument tunnel_id as __be64 (Ivan Vecera) [2019055]
+- Documentation: networking: switchdev: add missing "and" word (Ivan Vecera) [2019055]
+- Documentation: networking: switchdev: separate bulleted items with new line (Ivan Vecera) [2019055]
+- Documentation: networking: switchdev: fix command for static FDB entries (Ivan Vecera) [2019055]
+- Documentation: networking: switchdev: clarify device driver behavior (Ivan Vecera) [2019055]
+- net: bridge: mcast: factor out common allow/block EHT handling (Ivan Vecera) [2019055]
+- net: bridge: mcast: remove unreachable EHT code (Ivan Vecera) [2019055]
+- net: bridge: Fix fall-through warnings for Clang (Ivan Vecera) [2019055]
+- bridge: mrp: Update br_mrp to use new return values of br_mrp_switchdev (Ivan Vecera) [2019055]
+- bridge: mrp: Extend br_mrp_switchdev to detect better the errors (Ivan Vecera) [2019055]
+- bridge: mrp: Add 'enum br_mrp_hw_support' (Ivan Vecera) [2019055]
+- switchdev: mrp: Extend ring_role_mrp and in_role_mrp (Ivan Vecera) [2019055]
+- switchdev: mrp: Remove CONFIG_BRIDGE_MRP (Ivan Vecera) [2019055]
+- net: bridge: fix br_vlan_filter_toggle stub when CONFIG_BRIDGE_VLAN_FILTERING=n (Ivan Vecera) [2019055]
+- net: bridge: fix switchdev_port_attr_set stub when CONFIG_SWITCHDEV=n (Ivan Vecera) [2019055]
+- net: bridge: propagate extack through switchdev_port_attr_set (Ivan Vecera) [2019055]
+- net: bridge: propagate extack through store_bridge_parm (Ivan Vecera) [2019055]
+- net: bridge: remove __br_vlan_filter_toggle (Ivan Vecera) [2019055]
+- net: switchdev: pass flags and mask to both {PRE_,}BRIDGE_FLAGS attributes (Ivan Vecera) [2019055]
+- net: bridge: don't print in br_switchdev_set_port_flag (Ivan Vecera) [2019055]
+- net: bridge: offload all port flags at once in br_setport (Ivan Vecera) [2019055]
+- net: switchdev: propagate extack to port attributes (Ivan Vecera) [2019055]
+- switchdev: mrp: Remove SWITCHDEV_ATTR_ID_MRP_PORT_STAT (Ivan Vecera) [2019055]
+- bridge: mrp: Fix the usage of br_mrp_port_switchdev_set_state (Ivan Vecera) [2019055]
+- net: bridge: mcast: Use ERR_CAST instead of ERR_PTR(PTR_ERR()) (Ivan Vecera) [2019055]
+- net: bridge: add warning comments to avoid extending sysfs (Ivan Vecera) [2019055]
+- net: bridge: mcast: drop hosts limit sysfs support (Ivan Vecera) [2019055]
+- net: bridge: multicast: make tracked EHT hosts limit configurable (Ivan Vecera) [2019055]
+- net: bridge: multicast: add per-port EHT hosts limit (Ivan Vecera) [2019055]
+- net: switchdev: use obj-$(CONFIG_NET_SWITCHDEV) form in net/Makefile (Ivan Vecera) [2019055]
+- net: switchdev: don't set port_obj_info->handled true when -EOPNOTSUPP (Ivan Vecera) [2019055]
+- net: bridge: multicast: fix br_multicast_eht_set_entry_lookup indentation (Ivan Vecera) [2019055]
+- bridge: Use PTR_ERR_OR_ZERO instead if(IS_ERR(...)) + PTR_ERR (Ivan Vecera) [2019055]
+- net: mrp: move struct definitions out of uapi (Ivan Vecera) [2019055]
+- net: mrp: fix definitions of MRP test packets (Ivan Vecera) [2019055]
+- net: bridge: multicast: mark IGMPv3/MLDv2 fast-leave deletes (Ivan Vecera) [2019055]
+- net: bridge: multicast: handle block pg delete for all cases (Ivan Vecera) [2019055]
+- net: bridge: multicast: add EHT host filter_mode handling (Ivan Vecera) [2019055]
+- net: bridge: multicast: optimize TO_INCLUDE EHT timeouts (Ivan Vecera) [2019055]
+- net: bridge: multicast: add EHT include and exclude handling (Ivan Vecera) [2019055]
+- net: bridge: multicast: add EHT allow/block handling (Ivan Vecera) [2019055]
+- net: bridge: multicast: add EHT host delete function (Ivan Vecera) [2019055]
+- net: bridge: multicast: add EHT source set handling functions (Ivan Vecera) [2019055]
+- net: bridge: multicast: add EHT host handling functions (Ivan Vecera) [2019055]
+- net: bridge: multicast: add EHT structures and definitions (Ivan Vecera) [2019055]
+- net: bridge: multicast: calculate idx position without changing ptr (Ivan Vecera) [2019055]
+- net: bridge: multicast: __grp_src_block_incl can modify pg (Ivan Vecera) [2019055]
+- net: bridge: multicast: pass host src address to IGMPv3/MLDv2 functions (Ivan Vecera) [2019055]
+- net: bridge: multicast: rename src_size to addr_size (Ivan Vecera) [2019055]
+- net: bridge: check vlan with eth_type_vlan() method (Ivan Vecera) [2019055]
+- net: switchdev: delete the transaction object (Ivan Vecera) [2019055]
+- mlxsw: spectrum_switchdev: remove transactional logic for VLAN objects (Ivan Vecera) [2019055]
+- net: switchdev: remove the transaction structure from port attributes (Ivan Vecera) [2019055]
+- net: switchdev: delete switchdev_port_obj_add_now (Ivan Vecera) [2019055]
+- net: switchdev: remove the transaction structure from port object notifiers (Ivan Vecera) [2019055]
+- net: switchdev: remove vid_begin -> vid_end range from VLAN objects (Ivan Vecera) [2019055]
+- net: bridge: fix misspellings using codespell tool (Ivan Vecera) [2019055]
+- net: bridge: notify switchdev of disappearance of old FDB entry upon migration (Ivan Vecera) [2019055]
+- bridge: Fix a deadlock when enabling multicast snooping (Ivan Vecera) [2019055]
+- bridge: mrp: Implement LC mode for MRP (Ivan Vecera) [2019055]
+- net: bridge: switch to net core statistics counters handling (Ivan Vecera) [2019055]
+- net: bridge: replace struct br_vlan_stats with pcpu_sw_netstats (Ivan Vecera) [2019055]
+- bridge: mrp: Use hlist_head instead of list_head for mrp (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 *,g auto-add (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 exclude timeout (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 exc -> block report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 inc -> block report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 exc -> to_exclude report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 exc -> is_exclude report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 exc -> is_include report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 exc -> allow report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 inc -> to_exclude report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 inc -> is_exclude report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 inc -> is_include report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for mldv2 inc -> allow report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add initial MLDv2 include test (Ivan Vecera) [2019055]
+- selftests: net: bridge: factor out and rename sg state functions (Ivan Vecera) [2019055]
+- selftests: net: lib: add support for IPv6 mcast packet test (Ivan Vecera) [2019055]
+- selftests: net: bridge: factor out mcast_packet_test (Ivan Vecera) [2019055]
+- net: bridge: mcast: fix stub definition of br_multicast_querier_exists (Ivan Vecera) [2019055]
+- net: bridge: explicitly convert between mdb entry state and port group flags (Ivan Vecera) [2019055]
+- net: bridge: mcast: add support for raw L2 multicast groups (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 *,g auto-add (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 exclude timeout (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 exc -> block report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 inc -> block report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 exc -> to_exclude report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 exc -> is_exclude report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 exc -> is_include report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 exc -> allow report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 inc -> to_exclude report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 inc -> is_exclude report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add test for igmpv3 inc -> is_include report (Ivan Vecera) [2019055]
+- selftests: net: bridge: add tests for igmpv3 is_include and inc -> allow reports (Ivan Vecera) [2019055]
+- selftests: net: bridge: igmp: add IGMPv3 entries' state helpers (Ivan Vecera) [2019055]
+- selftests: net: bridge: igmp: check for specific udp ip protocol (Ivan Vecera) [2019055]
+- selftests: net: bridge: igmp: add support for packet source address (Ivan Vecera) [2019055]
+- selftests: net: bridge: rename current igmp tests to igmpv2 (Ivan Vecera) [2019055]
+- net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled (Ivan Vecera) [2019055]
+- bridge: cfm: Netlink Notifications. (Ivan Vecera) [2019055]
+- bridge: cfm: Netlink GET status Interface. (Ivan Vecera) [2019055]
+- bridge: cfm: Netlink GET configuration Interface. (Ivan Vecera) [2019055]
+- bridge: cfm: Netlink SET configuration Interface. (Ivan Vecera) [2019055]
+- bridge: cfm: Kernel space implementation of CFM. CCM frame RX added. (Ivan Vecera) [2019055]
+- bridge: cfm: Kernel space implementation of CFM. CCM frame TX added. (Ivan Vecera) [2019055]
+- bridge: cfm: Kernel space implementation of CFM. MEP create/delete. (Ivan Vecera) [2019055]
+- bridge: uapi: cfm: Added EtherType used by the CFM protocol. (Ivan Vecera) [2019055]
+- bridge: cfm: Add BRIDGE_CFM to Kconfig. (Ivan Vecera) [2019055]
+- net: bridge: extend the process of special frames (Ivan Vecera) [2019055]
+- bridge: Netlink interface fix. (Ivan Vecera) [2019055]
+- net: bridge: mcast: remove only S,G port groups from sg_port hash (Ivan Vecera) [2019055]
+- net: switchdev: Fixed kerneldoc warning (Ivan Vecera) [2019055]
+- net: bridge: mcast: when forwarding handle filter mode and blocked flag (Ivan Vecera) [2019055]
+- net: bridge: mcast: handle host state (Ivan Vecera) [2019055]
+- net: bridge: mcast: add support for blocked port groups (Ivan Vecera) [2019055]
+- net: bridge: mcast: handle port group filter modes (Ivan Vecera) [2019055]
+- net: bridge: mcast: install S,G entries automatically based on reports (Ivan Vecera) [2019055]
+- net: bridge: mcast: add sg_port rhashtable (Ivan Vecera) [2019055]
+- net: bridge: mcast: add rt_protocol field to the port group struct (Ivan Vecera) [2019055]
+- net: bridge: mcast: when igmpv3/mldv2 are enabled lookup (S,G) first, then (*,G) (Ivan Vecera) [2019055]
+- net: bridge: mdb: add support for add/del/dump of entries with source (Ivan Vecera) [2019055]
+- net: bridge: mdb: add support to extend add/del commands (Ivan Vecera) [2019055]
+- net: bridge: mcast: rename br_ip's u member to dst (Ivan Vecera) [2019055]
+- net: bridge: mcast: use br_ip's src for src groups and querier address (Ivan Vecera) [2019055]
+- net: bridge: add src field to br_ip (Ivan Vecera) [2019055]
+- net: bridge: mdb: use extack in br_mdb_add() and br_mdb_add_group() (Ivan Vecera) [2019055]
+- net: bridge: mdb: move all port and bridge checks to br_mdb_add (Ivan Vecera) [2019055]
+- net: bridge: mdb: use extack in br_mdb_parse() (Ivan Vecera) [2019055]
+- net: bridge: delete duplicated words (Ivan Vecera) [2019055]
+- net: bridge: mcast: don't ignore return value of __grp_src_toex_excl (Ivan Vecera) [2019055]
+- __netif_receive_skb_core: don't untag vlan from skb on DSA master (Ivan Vecera) [2019055]
+- bridge: mcast: Fix incomplete MDB dump (Ivan Vecera) [2019055]
+- net: bridge: mcast: fix unused br var when lockdep isn't defined (Ivan Vecera) [2019055]
+- net: bridge: mcast: destroy all entries via gc (Ivan Vecera) [2019055]
+- net: bridge: mcast: improve IGMPv3/MLDv2 query processing (Ivan Vecera) [2019055]
+- net: bridge: mcast: support for IGMPV3/MLDv2 BLOCK_OLD_SOURCES report (Ivan Vecera) [2019055]
+- net: bridge: mcast: support for IGMPV3/MLDv2 CHANGE_TO_INCLUDE/EXCLUDE report (Ivan Vecera) [2019055]
+- net: bridge: mcast: support for IGMPV3/MLDv2 MODE_IS_INCLUDE/EXCLUDE report (Ivan Vecera) [2019055]
+- net: bridge: mcast: support for IGMPv3/MLDv2 ALLOW_NEW_SOURCES report (Ivan Vecera) [2019055]
+- net: bridge: mcast: delete expired port groups without srcs (Ivan Vecera) [2019055]
+- net: bridge: mdb: use mdb and port entries in notifications (Ivan Vecera) [2019055]
+- net: bridge: mdb: push notifications in __br_mdb_add/del (Ivan Vecera) [2019055]
+- net: bridge: mcast: add support for group query retransmit (Ivan Vecera) [2019055]
+- net: bridge: mcast: add support for group-and-source specific queries (Ivan Vecera) [2019055]
+- net: bridge: mcast: add support for src list and filter mode dumping (Ivan Vecera) [2019055]
+- net: bridge: mcast: add support for group source list (Ivan Vecera) [2019055]
+- net: bridge: mcast: factor out port group del (Ivan Vecera) [2019055]
+- net: bridge: mdb: arrange internal structs so fast-path fields are close (Ivan Vecera) [2019055]
+- netlink: consistently use NLA_POLICY_EXACT_LEN() (Ivan Vecera) [2019055]
+- net: bridge: Add port attribute IFLA_BRPORT_MRP_IN_OPEN (Ivan Vecera) [2019055]
+- bridge: mrp: Extend br_mrp_fill_info (Ivan Vecera) [2019055]
+- bridge: uapi: mrp: Extend MRP_INFO attributes for interconnect status (Ivan Vecera) [2019055]
+- bridge: mrp: Extend MRP netlink interface for configuring MRP interconnect (Ivan Vecera) [2019055]
+- bridge: mrp: Implement the MRP Interconnect API (Ivan Vecera) [2019055]
+- bridge: switchdev: mrp: Extend MRP API for switchdev for MRP Interconnect (Ivan Vecera) [2019055]
+- bridge: mrp: Add br_mrp_in_port_open function (Ivan Vecera) [2019055]
+- bridge: mrp: Rename br_mrp_port_open to br_mrp_ring_port_open (Ivan Vecera) [2019055]
+- bridge: mrp: Extend br_mrp for MRP interconnect (Ivan Vecera) [2019055]
+- bridge: mrp: Extend bridge interface (Ivan Vecera) [2019055]
+- bridge: uapi: mrp: Extend MRP attributes for MRP interconnect (Ivan Vecera) [2019055]
+- switchdev: mrp: Extend switchdev API for MRP Interconnect (Ivan Vecera) [2019055]
+- net: bridge: fix undefined br_vlan_can_enter_range in tunnel code (Ivan Vecera) [2019055]
+- net: switchdev: kerneldoc fixes (Ivan Vecera) [2019055]
+- net: bridge: notify on vlan tunnel changes done via the old api (Ivan Vecera) [2019055]
+- bridge: Extend br_fill_ifinfo to return MPR status (Ivan Vecera) [2019055]
+- bridge: mrp: Add br_mrp_fill_info (Ivan Vecera) [2019055]
+- bridge: uapi: mrp: Extend MRP attributes to get the status (Ivan Vecera) [2019055]
+- bridge: mrp: Fix endian conversion and some other warnings (Ivan Vecera) [2019055]
+- net: bridge: add a flag to avoid refreshing fdb when changing/adding (Ivan Vecera) [2019055]
+- net: bridge: add option to allow activity notifications for any fdb entries (Ivan Vecera) [2019055]
+- net: neighbor: add fdb extended attribute (Ivan Vecera) [2019055]
+- net: bridge: fdb_add_entry takes ndm as argument (Ivan Vecera) [2019055]
+- bridge: mrp: Validate when setting the port role (Ivan Vecera) [2019055]
+- bridge: uapi: mrp: Fix MRP_PORT_ROLE (Ivan Vecera) [2019055]
+- bridge: mrp: Add support for role MRA (Ivan Vecera) [2019055]
+- bridge: mrp: Set the priority of MRP instance (Ivan Vecera) [2019055]
+- bridge: mrp: Update MRP frame type (Ivan Vecera) [2019055]
+- bridge: multicast: work around clang bug (Ivan Vecera) [2019055]
+- bridge: mrp: Rework the MRP netlink interface (Ivan Vecera) [2019055]
+- bridge: mrp: Fix out-of-bounds read in br_mrp_parse (Ivan Vecera) [2019055]
+- bridge: mrp: Restore port state when deleting MRP instance (Ivan Vecera) [2019055]
+- switchdev: mrp: Remove the variable mrp_ring_state (Ivan Vecera) [2019055]
+- bridge: mrp: Add br_mrp_unique_ifindex function (Ivan Vecera) [2019055]
+- net: bridge: allow enslaving some DSA master network devices (Ivan Vecera) [2019055]
+- net: remove newlines in NL_SET_ERR_MSG_MOD (Ivan Vecera) [2019055]
+- net: bridge: return false in br_mrp_enabled() (Ivan Vecera) [2019055]
+- docs: networking: convert switchdev.txt to ReST (Ivan Vecera) [2019055]
+- net: bridge: Add checks for enabling the STP. (Ivan Vecera) [2019055]
+- bridge: mrp: Integrate MRP into the bridge (Ivan Vecera) [2019055]
+- bridge: mrp: Implement netlink interface to configure MRP (Ivan Vecera) [2019055]
+- bridge: mrp: Connect MRP API with the switchdev API (Ivan Vecera) [2019055]
+- bridge: switchdev: mrp: Implement MRP API for switchdev (Ivan Vecera) [2019055]
+- switchdev: mrp: Extend switchdev API to offload MRP (Ivan Vecera) [2019055]
+- bridge: mrp: Add MRP interface. (Ivan Vecera) [2019055]
+- net: bridge: Add port attribute IFLA_BRPORT_MRP_RING_OPEN (Ivan Vecera) [2019055]
+- bridge: mrp: Extend bridge interface (Ivan Vecera) [2019055]
+- bridge: mrp: Update Kconfig (Ivan Vecera) [2019055]
+- bridge: uapi: mrp: Add mrp attributes. (Ivan Vecera) [2019055]
+- net: bridge: vlan options: move the tunnel command to the nested attribute (Ivan Vecera) [2019055]
+- net: bridge: vlan options: nest the tunnel id into a tunnel info attribute (Ivan Vecera) [2019055]
+- net: bridge: vlan: include stats in dumps if requested (Ivan Vecera) [2019055]
+- net: bridge: vlan options: add support for tunnel mapping set/del (Ivan Vecera) [2019055]
+- net: bridge: vlan options: add support for tunnel id dumping (Ivan Vecera) [2019055]
+- net: bridge: vlan tunnel: constify bridge and port arguments (Ivan Vecera) [2019055]
+- net: bridge: vlan options: rename br_vlan_opts_eq to br_vlan_opts_eq_range (Ivan Vecera) [2019055]
+- net: switchdev: do not propagate bridge updates across bridges (Ivan Vecera) [2019055]
+- bridge: br_stp: Use built-in RCU list checking (Ivan Vecera) [2019055]
+- net: switchdev: Replace zero-length array with flexible-array member (Ivan Vecera) [2019055]
+- net: bridge: vlan: add per-vlan state (Ivan Vecera) [2019055]
+- net: bridge: vlan: add basic option setting support (Ivan Vecera) [2019055]
+- net: bridge: vlan: add basic option dumping support (Ivan Vecera) [2019055]
+- net: bridge: check port state before br_allowed_egress (Ivan Vecera) [2019055]
+- net: bridge: vlan: notify on vlan add/delete/change flags (Ivan Vecera) [2019055]
+- net: bridge: vlan: add rtnetlink group and notify support (Ivan Vecera) [2019055]
+- net: bridge: vlan: add rtm range support (Ivan Vecera) [2019055]
+- net: bridge: vlan: add del rtm message support (Ivan Vecera) [2019055]
+- net: bridge: vlan: add new rtm message support (Ivan Vecera) [2019055]
+- net: bridge: vlan: add rtm definitions and dump support (Ivan Vecera) [2019055]
+- net: bridge: netlink: add extack error messages when processing vlans (Ivan Vecera) [2019055]
+- net: bridge: vlan: add helpers to check for vlan id/range validity (Ivan Vecera) [2019055]
+- net: bridge: add STP xstats (Ivan Vecera) [2019055]
+- treewide: Use sizeof_field() macro (Ivan Vecera) [2019055]
+- bridge: implement get_link_ksettings ethtool method (Ivan Vecera) [2019055]
+- net: bridge: fdb: eliminate extra port state tests from fast-path (Ivan Vecera) [2019055]
+- net: bridge: fdb: restore unlikely() when taking over externally added entries (Ivan Vecera) [2019055]
+- net: bridge: fdb: avoid two atomic bitops in br_fdb_external_learn_add() (Ivan Vecera) [2019055]
+- net: bridge: fdb: br_fdb_update can take flags directly (Ivan Vecera) [2019055]
+- net: bridge: Populate the pvid flag in br_vlan_get_info (Ivan Vecera) [2019055]
+- net: fix __ip_mc_inc_group usage (Ivan Vecera) [2019055]
+- net: bridge: mdb: allow add/delete for host-joined groups (Ivan Vecera) [2019055]
+- net: bridge: mdb: dump host-joined entries as well (Ivan Vecera) [2019055]
+- net: bridge: mdb: factor out mdb filling (Ivan Vecera) [2019055]
+- net: bridge: mdb: move vlan comments (Ivan Vecera) [2019055]
+- net: bridge: mcast: add delete due to fast-leave mdb flag (Ivan Vecera) [2019055]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (Ivan Vecera) [2019055]
+- treewide: Add SPDX license identifier for missed files (Ivan Vecera) [2019055]
+- treewide: Add SPDX license identifier - Makefile/Kconfig (Ivan Vecera) [2019055]
+- bridge: Fix error path for kobject_init_and_add() (Ivan Vecera) [2019055]
+- bridge: only include nf_queue.h if needed (Ivan Vecera) [2019055]
+- bridge: broute: make broute a real ebtables table (Ivan Vecera) [2019055]
+- bridge: netfilter: unroll NF_HOOK helper in bridge input path (Ivan Vecera) [2019055]
+- bridge: reduce size of input cb to 16 bytes (Ivan Vecera) [2019055]
+- net: bridge: update multicast stats from maybe_deliver() (Ivan Vecera) [2019055]
+- net: bridge: mcast: remove unused br_ip_equal function (Ivan Vecera) [2019055]
+- net: bridge: optimize backup_port fdb convergence (Ivan Vecera) [2019055]
+- net: bridge: use netif_is_bridge_port() (Ivan Vecera) [2019055]
+- net: bridge: use eth_broadcast_addr() to assign broadcast address (Ivan Vecera) [2019055]
+- tools headers uapi: Update linux/in.h copy (Ivan Vecera) [2019055]
+- switchdev: Remove unused transaction item queue (Ivan Vecera) [2019055]
+- bridge: remove redundant check on err in br_multicast_ipv4_rcv (Ivan Vecera) [2019055]
+- net: Fix ip_mc_{dec,inc}_group allocation context (Ivan Vecera) [2019055]
+- bridge: remove duplicated include from br_multicast.c (Ivan Vecera) [2019055]
+- bridge: Snoop Multicast Router Advertisements (Ivan Vecera) [2019055]
+- bridge: join all-snoopers multicast address (Ivan Vecera) [2019055]
+- bridge: simplify ip_mc_check_igmp() and ipv6_mc_check_mld() internals (Ivan Vecera) [2019055]
+- tools include uapi: Sync linux/if_link.h copy with the kernel sources (Ivan Vecera) [2019055]
+- net: bridge: fix a bug on using a neighbour cache entry without checking its state (Ivan Vecera) [2019055]
+- net: bridge: remove unneeded variable 'err' (Ivan Vecera) [2019055]
+- net: bridge: remove redundant checks for null p->dev and p->br (Ivan Vecera) [2019055]
+- net: bridge: export supported boolopts (Ivan Vecera) [2019055]
+- net: bridge: add no_linklocal_learn bool option (Ivan Vecera) [2019055]
+- net: bridge: add support for user-controlled bool options (Ivan Vecera) [2019055]
+- bridge: use __vlan_hwaccel helpers (Ivan Vecera) [2019055]
+- netfilter: bridge: define INT_MIN & INT_MAX in userspace (Ivan Vecera) [2019055]
+- docs: fix some broken documentation references (Ivan Vecera) [2019055]
+- bridge: Switch to bitmap_zalloc() (Ivan Vecera) [2019055]
+- netfilter: bridge: Expose nf_tables bridge hook priorities through uapi (Ivan Vecera) [2019055]
+- net: bridge: add support for backup port (Ivan Vecera) [2019055]
+- net: bridge: add support for raw sysfs port options (Ivan Vecera) [2019055]
+- docs: networking: Convert bridge.txt to rst (Ivan Vecera) [2019055]
+- net: switchdev: consolidate RH_KABI macros usage (Ivan Vecera) [2019055]
+- kcov: Remove kcov include from sched.h and move it to its users. (Josef Oskera) [2026467]
+- tasklets: Provide tasklet_disable_in_atomic() (Ivan Vecera) [2026475]
+- tasklets: Use static inlines for stub implementations (Ivan Vecera) [2026475]
+- net: sock: introduce sk_error_report (Ivan Vecera) [2026469]
+- redhat: Add CONFIG_RHEL_DIFFERENCES (Prarit Bhargava) [2021571]
+
+* Wed Dec 22 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-357.el8]
+- serial: 8520_port: Fix function param documentation (Waiman Long) [1970241]
+- serial: 8250: Optimize irq enable after console write (Waiman Long) [1970241]
+- serial: 8250: Fix rs485 delay after console write (Waiman Long) [1970241]
+- serial: 8250: Support console on software emulated rs485 ports (Waiman Long) [1970241]
+- serial: 8250: Generalize rs485 software emulation (Waiman Long) [1970241]
+- serial: 8250: Deduplicate rs485 active_timer assignment (Waiman Long) [1970241]
+- serial: 8250: Sanitize rs485 config harder (Waiman Long) [1970241]
+- serial: 8250: Deduplicate ->rs485_config() callback (Waiman Long) [1970241]
+- serial: 8250: Support rs485 devicetree properties (Waiman Long) [1970241]
+- serial: 8250_port: Don't use power management for kernel console (Waiman Long) [1970241]
+- console: Introduce ->exit() callback (Waiman Long) [1970241]
+- console: Don't notify user space when unregister non-listed console (Waiman Long) [1970241]
+- tty: 8250_of: Use software emulated RS485 direction control (Waiman Long) [1970241]
+- serial: 8250: Add MSR/MCR TIOCM conversion wrapper functions (Waiman Long) [1970241]
+- serial: 8250_of: Use of_device_get_match_data() (Waiman Long) [1970241]
+- serial: 8250_of: Fix for lack of interrupt support (Waiman Long) [1970241]
+- serial: 8250: of: Defer probe on missing IRQ (Waiman Long) [1970241]
+- serial: 8250: of: Correct of_platform_serial_setup() error handling (Waiman Long) [1970241]
+- mm/vmstat: protect per cpu variables with preempt disable on RT (Scott Wood) [2011667]
+- mm, slub: convert kmem_cpu_slab protection to local_lock (Scott Wood) [2011667]
+- mm, slub: use migrate_disable() on PREEMPT_RT (Scott Wood) [2011667]
+- mm, slub: protect put_cpu_partial() with disabled irqs instead of cmpxchg (Scott Wood) [2011667]
+- mm, slub: make slab_lock() disable irqs with PREEMPT_RT (Scott Wood) [2011667]
+- mm: slub: make object_map_lock a raw_spinlock_t (Scott Wood) [2011667]
+- mm: slub: move flush_cpu_slab() invocations __free_slab() invocations out of IRQ context (Scott Wood) [2011667]
+- mm, slab: split out the cpu offline variant of flush_slab() (Scott Wood) [2011667]
+- mm, slub: don't disable irqs in slub_cpu_dead() (Scott Wood) [2011667]
+- mm, slub: only disable irq with spin_lock in __unfreeze_partials() (Scott Wood) [2011667]
+- mm, slub: separate detaching of partial list in unfreeze_partials() from unfreezing (Scott Wood) [2011667]
+- mm, slub: detach whole partial list at once in unfreeze_partials() (Scott Wood) [2011667]
+- mm, slub: discard slabs in unfreeze_partials() without irqs disabled (Scott Wood) [2011667]
+- mm, slub: move irq control into unfreeze_partials() (Scott Wood) [2011667]
+- mm, slub: call deactivate_slab() without disabling irqs (Scott Wood) [2011667]
+- mm, slub: make locking in deactivate_slab() irq-safe (Scott Wood) [2011667]
+- mm, slub: move reset of c->page and freelist out of deactivate_slab() (Scott Wood) [2011667]
+- mm, slub: stop disabling irqs around get_partial() (Scott Wood) [2011667]
+- mm, slub: check new pages with restored irqs (Scott Wood) [2011667]
+- mm, slub: validate slab from partial list or page allocator before making it cpu slab (Scott Wood) [2011667]
+- mm, slub: restore irqs around calling new_slab() (Scott Wood) [2011667]
+- mm, slub: move disabling irqs closer to get_partial() in ___slab_alloc() (Scott Wood) [2011667]
+- mm, slub: do initial checks in ___slab_alloc() with irqs enabled (Scott Wood) [2011667]
+- mm, slub: move disabling/enabling irqs to ___slab_alloc() (Scott Wood) [2011667]
+- mm, slub: simplify kmem_cache_cpu and tid setup (Scott Wood) [2011667]
+- mm, slub: restructure new page checks in ___slab_alloc() (Scott Wood) [2011667]
+- mm, slub: return slab page from get_partial() and set c->page afterwards (Scott Wood) [2011667]
+- mm, slub: dissolve new_slab_objects() into ___slab_alloc() (Scott Wood) [2011667]
+- mm, slub: extract get_partial() from new_slab_objects() (Scott Wood) [2011667]
+- mm, slub: remove redundant unfreeze_partials() from put_cpu_partial() (Scott Wood) [2011667]
+- mm, slub: don't disable irq for debug_check_no_locks_freed() (Scott Wood) [2011667]
+- mm, slub: allocate private object map for validate_slab_cache() (Scott Wood) [2011667]
+- mm, slub: allocate private object map for debugfs listings (Scott Wood) [2011667]
+- mm, slub: don't call flush_all() from slab_debug_trace_open() (Scott Wood) [2011667]
+- mm/slub.c: drop lockdep_assert_held() from put_map() (Scott Wood) [2011667]
+- mm/slub.c: replace cpu_slab->partial with wrapped APIs (Scott Wood) [2011667]
+- mm/slub.c: replace kmem_cache->cpu_partial with wrapped APIs (Scott Wood) [2011667]
+- sched/rt, mm: Use CONFIG_PREEMPTION (Scott Wood) [2011667]
+- tcp: fix page frag corruption on page fault (Paolo Abeni) [1996074]
+- net: fix sk_page_frag() recursion from memory reclaim (Paolo Abeni) [1996074]
+- net: udp6: replace __UDP_INC_STATS() with __UDP6_INC_STATS() (Xin Long) [2020407]
+- net: udp: annotate data race around udp_sk(sk)->corkflag (Xin Long) [2020407]
+- net/ipv4/udp_tunnel_core.c: remove superfluous header files from udp_tunnel_core.c (Xin Long) [2020407]
+- udp_tunnel: Fix udp_tunnel_nic work-queue type (Xin Long) [2020407]
+- net, gro: Set inner transport header offset in tcp/udp GRO hook (Xin Long) [2020407]
+- bareudp: Add extack support to bareudp_configure() (Guillaume Nault) [1946040]
+- bareudp: Move definition of struct bareudp_conf to bareudp.c (Guillaume Nault) [1946040]
+- bareudp: Remove bareudp_dev_create() (Guillaume Nault) [1946040]
+- net: bareudp: simplify error paths calling dellink (Guillaume Nault) [1946040]
+- mptcp: re-arm retransmit timer if data is pending (Paolo Abeni) [2019493]
+- mptcp: remove tx_pending_data (Paolo Abeni) [2019493]
+- mptcp: do not shrink snd_nxt when recovering (Paolo Abeni) [2019493]
+- mptcp: drop unused sk in mptcp_push_release (Paolo Abeni) [2019493]
+- selftests: mptcp: fix proto type in link_failure tests (Paolo Abeni) [2019493]
+- selftests: mptcp: add testcase for active-back (Paolo Abeni) [2019493]
+- mptcp: backup flag from incoming MPJ ack option (Paolo Abeni) [2019493]
+- mptcp: add mibs for stale subflows processing (Paolo Abeni) [2019493]
+- mptcp: faster active backup recovery (Paolo Abeni) [2019493]
+- mptcp: cleanup sysctl data and helpers (Paolo Abeni) [2019493]
+- mptcp: handle pending data on closed subflow (Paolo Abeni) [2019493]
+- mptcp: less aggressive retransmission strategy (Paolo Abeni) [2019493]
+- mptcp: more accurate timeout (Paolo Abeni) [2019493]
+- mptcp: stop relying on tcp_tx_skb_cache (Paolo Abeni) [2019493]
+- tcp: expose the tcp_mark_push() and tcp_skb_entail() helpers (Paolo Abeni) [2019493]
+- selftests: KVM: avoid failures due to reserved HyperTransport region (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Fix when shadow_root_level=5 && guest root_level<4 (Vitaly Kuznetsov) [2009340]
+- KVM: x86: inhibit APICv when KVM_GUESTDBG_BLOCKIRQ active (Vitaly Kuznetsov) [2009340]
+- KVM: x86/xen: Fix get_attr of KVM_XEN_ATTR_TYPE_SHARED_INFO (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Use rw_semaphore for APICv lock to allow vCPU parallelism (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: test KVM_GUESTDBG_BLOCKIRQ (Vitaly Kuznetsov) [2009340]
+- x86/sgx/virt: implement SGX_IOC_VEPC_REMOVE ioctl (Vitaly Kuznetsov) [2009340]
+- x86/sgx/virt: extract sgx_vepc_remove_page (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Complete prefetch for trailing SPTEs for direct, legacy MMU (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Do not mark all registers as avail/dirty during RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: x86: SVM: don't set VMLOAD/VMSAVE intercepts on vCPU reset (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Unregister posted interrupt wakeup handler on hardware unsetup (Vitaly Kuznetsov) [2009340]
+- Revert "x86/kvm: fix vcpu-id indexed array sizes" (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Cache CR3 in prev_roots when PCID is disabled (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Fix tlb flush for tdp in kvm_invalidate_pcid() (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Don't reset mmu context when toggling X86_CR4_PGE (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Don't reset mmu context when X86_CR4_PCIDE 1->0 (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: kvm_faultin_pfn has to return false if pfh is returned (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Take srcu lock in post_kvm_run_save() (Vitaly Kuznetsov) [2009340]
+- KVM: SEV-ES: fix another issue with string I/O VMGEXITs (Vitaly Kuznetsov) [2009340]
+- KVM: x86/xen: Fix kvm_xen_has_interrupt() sleeping in kvm_vcpu_block() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: switch pvclock_gtod_sync_lock to a raw spinlock (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Refactor help message for -s backing_src (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Change backing_src flag to -s in demand_paging_test (Vitaly Kuznetsov) [2009340]
+- tools headers UAPI: Sync x86's asm/kvm.h with the kernel sources (Vitaly Kuznetsov) [2009340]
+- KVM: SEV-ES: go over the sev_pio_data buffer in multiple passes if needed (Vitaly Kuznetsov) [2009340]
+- KVM: SEV-ES: keep INS functions together (Vitaly Kuznetsov) [2009340]
+- KVM: x86: remove unnecessary arguments from complete_emulator_pio_in (Vitaly Kuznetsov) [2009340]
+- KVM: x86: split the two parts of emulator_pio_in (Vitaly Kuznetsov) [2009340]
+- KVM: SEV-ES: clean up kvm_sev_es_ins/outs (Vitaly Kuznetsov) [2009340]
+- KVM: x86: leave vcpu->arch.pio.count alone in emulator_pio_in_out (Vitaly Kuznetsov) [2009340]
+- KVM: SEV-ES: rename guest_ins_data to sev_pio_data (Vitaly Kuznetsov) [2009340]
+- KVM: SEV: Flush cache on non-coherent systems before RECEIVE_UPDATE_DATA (Vitaly Kuznetsov) [2009340]
+- KVM: MMU: Reset mmu->pkru_mask to avoid stale data (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: promptly process interrupts delivered while in guest mode (Vitaly Kuznetsov) [2009340]
+- KVM: x86: check for interrupts before deciding whether to exit the fast path (Vitaly Kuznetsov) [2009340]
+- KVM: SEV-ES: reduce ghcb_sa_len to 32 bits (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Remove redundant handling of bus lock vmexit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: WARN if APIC HW/SW disable static keys are non-zero on unload (Vitaly Kuznetsov) [2009340]
+- KVM: SEV-ES: fix length of string I/O (Vitaly Kuznetsov) [2009340]
+- KVM: SEV-ES: Set guest_state_protected after VMSA update (Vitaly Kuznetsov) [2009340]
+- KVM: kvm_stat: do not show halt_wait_ns (Vitaly Kuznetsov) [2009340]
+- Revert "KVM: x86: Open code necessary bits of kvm_lapic_set_base() at vCPU RESET" (Vitaly Kuznetsov) [2009340]
+- KVM: s390: restore old debugfs names (Vitaly Kuznetsov) [2009340]
+- tools headers UAPI: Sync linux/kvm.h with the kernel sources (Vitaly Kuznetsov) [2009340]
+- tools headers UAPI: Synch KVM's svm.h header with the kernel (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: introduce P44V64 for z196 and EC12 (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: introduce P47V64 for s390x (Vitaly Kuznetsov) [2009340]
+- x86/sev: Use "SEV: " prefix for messages from sev.c (Vitaly Kuznetsov) [2009340]
+- KVM: stats: remove dead stores (Vitaly Kuznetsov) [2009340]
+- kvm: x86: Add AMD PMU MSRs to msrs_to_save_all[] (Vitaly Kuznetsov) [2009340]
+- kvm: fix objtool relocation warning (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Ensure all migrations are performed when test is affined (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Swap order of CPUID entry "index" vs. "significant flag" checks (Vitaly Kuznetsov) [2009340]
+- x86/kvmclock: Move this_cpu_pvti into kvmclock.h (Vitaly Kuznetsov) [2009340]
+- selftests: KVM: Don't clobber XMM register when read (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Fix a TSX_CTRL_CPUID_CLEAR field mask issue (Vitaly Kuznetsov) [2009340]
+- selftests: KVM: Explicitly use movq to read xmm registers (Vitaly Kuznetsov) [2009340]
+- selftests: KVM: Call ucall_init when setting up in rseq_test (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Synchronize the shadow pagetable before link it (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Fix missed remote tlb flush in rmap_write_protect() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: nSVM: don't copy virt_ext from vmcb12 (Vitaly Kuznetsov) [2009340]
+- KVM: x86: nSVM: test eax for 4K alignment for GP errata workaround (Vitaly Kuznetsov) [2009340]
+- KVM: x86: selftests: test simultaneous uses of V_IRQ from L1 and L0 (Vitaly Kuznetsov) [2009340]
+- KVM: x86: nSVM: restore int_vector in svm_clear_vintr (Vitaly Kuznetsov) [2009340]
+- KVM: x86: nVMX: re-evaluate emulation_required on nested VM exit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: nVMX: don't fail nested VM entry on invalid guest state if !from_vmentry (Vitaly Kuznetsov) [2009340]
+- KVM: x86: VMX: synthesize invalid VM exit when emulating invalid guest state (Vitaly Kuznetsov) [2009340]
+- KVM: x86: nSVM: refactor svm_leave_smm and smm_enter_smm (Vitaly Kuznetsov) [2009340]
+- KVM: x86: SVM: call KVM_REQ_GET_NESTED_STATE_PAGES on exit from SMM mode (Vitaly Kuznetsov) [2009340]
+- KVM: x86: reset pdptrs_from_userspace when exiting smm (Vitaly Kuznetsov) [2009340]
+- KVM: x86: nSVM: restore the L1 host state prior to resuming nested guest on SMM exit (Vitaly Kuznetsov) [2009340]
+- KVM: KVM: Use cpumask_available() to check for NULL cpumask when kicking vCPUs (Vitaly Kuznetsov) [2009340]
+- KVM: Clean up benign vcpu->cpu data races when kicking vCPUs (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Fix stack-out-of-bounds memory access from ioapic_write_indirect() (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Create a separate dirty bitmap per slot (Vitaly Kuznetsov) [2009340]
+- KVM: SEV: Allow some commands for mirror VM (Vitaly Kuznetsov) [2009340]
+- KVM: SEV: Update svm_vm_copy_asid_from for SEV-ES (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Fix nested bus lock VM exit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Identify vCPU0 by its vcpu_idx instead of its vCPUs array entry (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Query vcpu->vcpu_idx directly and drop its accessor (Vitaly Kuznetsov) [2009340]
+- kvm: fix wrong exception emulation in check_rdtsc (Vitaly Kuznetsov) [2009340]
+- KVM: SEV: Pin guest memory for write for RECEIVE_UPDATE_DATA (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: fix missing sev_decommission in sev_receive_start (Vitaly Kuznetsov) [2009340]
+- KVM: SEV: Acquire vcpu mutex when updating VMSA (Vitaly Kuznetsov) [2009340]
+- KVM: do not shrink halt_poll_ns below grow_start (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: fix comments of handle_vmon() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Handle SRCU initialization failure during page track init (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Remove defunct "nr_active_uret_msrs" field (Vitaly Kuznetsov) [2009340]
+- selftests: KVM: Align SMCCC call with the spec in steal_time (Vitaly Kuznetsov) [2009340]
+- selftests: KVM: Fix check for !POLLIN in demand_paging_test (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Clear KVM's cached guest CR3 at RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Mark all registers as avail/dirty at vCPU creation (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add a test for KVM_RUN+rseq to detect task migration bugs (Vitaly Kuznetsov) [2009340]
+- tools: Move x86 syscall number fallbacks to .../uapi/ (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: fix get_run_delay() ignoring fscanf() return warn (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: move get_run_delay() into lib/test_util (Vitaly Kuznetsov) [2009340]
+- selftests:kvm: fix get_trans_hugepagesz() ignoring fscanf() return warn (Vitaly Kuznetsov) [2009340]
+- selftests:kvm: fix get_warnings_count() ignoring fscanf() return warn (Vitaly Kuznetsov) [2009340]
+- tools: rename bitmap_alloc() to bitmap_zalloc() (Vitaly Kuznetsov) [2009340]
+- KVM: Drop unused kvm_dirty_gfn_invalid() (Vitaly Kuznetsov) [2009340]
+- KVM: MMU: mark role_regs and role accessors as maybe unused (Vitaly Kuznetsov) [2009340]
+- x86/kvm: Don't enable IRQ when IRQ enabled in kvm_wait (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Add VM stat for remote tlb flush requests (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Move lpage_disallowed_link further "down" in kvm_mmu_page (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Relocate kvm_mmu_page.tdp_mmu_page for better cache locality (Vitaly Kuznetsov) [2009340]
+- Revert "KVM: x86: mmu: Add guest physical address check in translate_gpa()" (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Remove unused field mmio_cached in struct kvm_mmu_page (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: avoid running vmx_handle_exit_irqoff in case of emulation (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Don't freak out if pml5_root is NULL on 4-level host (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Add 5-level page table support for SVM (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Support shadowing NPT when 5-level paging is enabled in host (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Allow CPU to force vendor-specific TDP level (Vitaly Kuznetsov) [2009340]
+- KVM: x86: clamp host mapping level to max_level in kvm_mmu_max_mapping_level (Vitaly Kuznetsov) [2009340]
+- KVM: x86: implement KVM_GUESTDBG_BLOCKIRQ (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: split svm_handle_invalid_exit (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Avoid collision with !PRESENT SPTEs in TDP MMU lpage stats (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Remove redundant spte present check in mmu_set_spte (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Add halt polling related histogram stats (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Add halt_wait_ns stats for all architectures (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add checks for histogram stats bucket_size field (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Update doc for histogram statistics (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Support linear and logarithmic histogram statistics (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: AVIC: drop unsupported AVIC base relocation code (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: call avic_vcpu_load/avic_vcpu_put when enabling/disabling AVIC (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: move check for kvm_vcpu_apicv_active outside of avic_vcpu_{put|load} (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: avoid refreshing avic if its state didn't change (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: remove svm_toggle_avic_for_irq_window (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Deactivate APICv only when AutoEOI feature is in use (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: add warning for mistmatch between AVIC vcpu state and AVIC inhibition (Vitaly Kuznetsov) [2009340]
+- KVM: x86: APICv: fix race in kvm_request_apicv_update on SVM (Vitaly Kuznetsov) [2009340]
+- KVM: x86: don't disable APICv memslot when inhibited (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: allow APICv memslot to be enabled but invisible (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: allow kvm_faultin_pfn to return page fault handling code (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: rename try_async_pf to kvm_faultin_pfn (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: add comment explaining arguments to kvm_zap_gfn_range (Vitaly Kuznetsov) [2009340]
+- KVM: Allow to have arch-specific per-vm debugfs files (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Unconditionally clear nested.pi_pending on nested VM-Enter (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Clean up redundant ROL16(val, n) macro definition (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Move declaration of kvm_spurious_fault() to x86.h (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Kill off __ex() and __kvm_handle_fault_on_reboot() (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Hide VMCS control calculators in vmx.c (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Drop caching of KVM's desired sec exec controls for vmcs01 (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Pull KVM L0's desired controls directly from vmcs01 (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Reset DR6 only when KVM_DEBUGREG_WONT_EXIT (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Set host DR6 only on VMX and for KVM_DEBUGREG_WONT_EXIT (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Remove unneeded KVM_DEBUGREG_RELOAD (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Use vmx_need_pf_intercept() when deciding if L0 wants a #PF (Vitaly Kuznetsov) [2009340]
+- kvm: vmx: Sync all matching EPTPs when injecting nested EPT fault (Vitaly Kuznetsov) [2009340]
+- KVM: x86: remove dead initialization (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Allow guest to set EFER.NX=1 on non-PAE 32-bit kernels (Vitaly Kuznetsov) [2009340]
+- x86: Fix typo s/ECLR/ELCR/ for the PIC register (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Use current VMCS to query WAITPKG support for MSR emulation (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Move vcpu_args_set into perf_test_util (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Support multiple slots in dirty_log_perf_test (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Leverage vcpu->last_used_slot for rmap_add and rmap_recycle (Vitaly Kuznetsov) [2009340]
+- KVM: Cache the last used slot index per vCPU (Vitaly Kuznetsov) [2009340]
+- KVM: Move last_used_slot logic out of search_memslots (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Fix per-cpu counter corruption on 32-bit builds (Vitaly Kuznetsov) [2009340]
+- KVM: xen: do not use struct gfn_to_hva_cache (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: fix hyperv_clock test (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: improve the code readability for ASID management (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Fix off-by-one indexing when nullifying last used SEV VMCB (Vitaly Kuznetsov) [2009340]
+- KVM: Do not leak memory for duplicate debugfs directories (Vitaly Kuznetsov) [2009340]
+- KVM: x86/pmu: Introduce pmc->is_paused to reduce the call time of perf interfaces (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Optimize zapping rmap (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Optimize pte_list_desc with per-array counter (Vitaly Kuznetsov) [2009340]
+- KVM: X86: MMU: Tune PTE_LIST_EXT to be bigger (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Test access to XMM fast hypercalls (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Check if guest is allowed to use XMM registers for hypercall input (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Introduce trace_kvm_hv_hypercall_done() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Check access to hypercall before reading XMM registers (Vitaly Kuznetsov) [2009340]
+- KVM: nSVM: remove useless kvm_clear_*_queue (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Preserve guest's CR0.CD/NW on INIT (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Drop redundant clearing of vcpu->arch.hflags at INIT/RESET (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Emulate #INIT in response to triple fault shutdown (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Move RESET-only VMWRITE sequences to init_vmcs() (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Remove redundant write to set vCPU as active at RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Smush x2APIC MSR bitmap adjustments into single function (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Remove unnecessary initialization of msr_bitmap_mode (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Don't redo x2APIC MSR bitmaps when userspace filter is changed (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Remove obsolete MSR bitmap refresh at nested transitions (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Remove obsolete MSR bitmap refresh at vCPU RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Move setting of sregs during vCPU RESET/INIT to common x86 (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Don't _explicitly_ reconfigure user return MSRs on vCPU INIT (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Refresh list of user return MSRs after setting guest CPUID (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Skip pointless MSR bitmap update when setting EFER (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Stuff save->dr6 at during VMSA sync, not at RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Drop redundant writes to vmcb->save.cr4 at RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Tweak order of cr0/cr4/efer writes at RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Don't evaluate "emulation required" on nested VM-Exit (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Skip emulation required checks during pmode/rmode transitions (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Process CR0.PG side effects after setting CR0 assets (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Skip the permission_fault() check on MMIO if CR0.PG=0 (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Pull GUEST_CR3 from the VMCS iff CR3 load exiting is disabled (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Do not clear CR3 load/store exiting bits if L1 wants 'em (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Fold ept_update_paging_mode_cr0() back into vmx_set_cr0() (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Remove direct write to vcpu->arch.cr0 during vCPU RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Invert handling of CR0.WP for EPT without unrestricted guest (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Don't bother writing vmcb->save.rip at vCPU RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Move EDX initialization at vCPU RESET to common code (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Consolidate APIC base RESET initialization code (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Open code necessary bits of kvm_lapic_set_base() at vCPU RESET (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Stuff vcpu->arch.apic_base directly at vCPU RESET (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Set BSP bit in reset BSP vCPU's APIC base by default (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Don't force set BSP bit when local APIC is managed by userspace (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Migrate the PIT only if vcpu0 is migrated, not any BSP (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Remove defunct BSP "update" in local APIC reset (Vitaly Kuznetsov) [2009340]
+- KVM: x86: WARN if the APIC map is dirty without an in-kernel local APIC (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Drop explicit MMU reset at RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Remove explicit MMU reset in enter_rmode() (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Fall back to KVM's hardcoded value for EDX at RESET/INIT (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Require exact CPUID.0x1 match when stuffing EDX at INIT (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Set EDX at INIT with CPUID.0x1, Family-Model-Stepping (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Zero out GDTR.base and IDTR.base on INIT (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Set LDTR to its architecturally defined value on nested VM-Exit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Flush the guest's TLB on INIT (Vitaly Kuznetsov) [2009340]
+- KVM: x86: APICv: drop immediate APICv disablement on current vCPU (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: fast_page_fault support for the TDP MMU (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Make walk_shadow_page_lockless_{begin,end} interoperate with the TDP MMU (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Fix use of enums in trace_fast_page_fault (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Rename cr2_or_gpa to gpa in fast_page_fault (Vitaly Kuznetsov) [2009340]
+- KVM: Introduce kvm_get_kvm_safe() (Vitaly Kuznetsov) [2009340]
+- x86/kvm: remove non-x86 stuff from arch/x86/kvm/ioapic.h (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Add per-vm stat for max rmap list size (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Return old SPTE from mmu_spte_clear_track_bits() (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Refactor shadow walk in __direct_map() to reduce indentation (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Hoist kvm_dirty_regs check out of sync_regs() (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Mark VM as bugged if page fault returns RET_PF_INVALID (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Use KVM_BUG/KVM_BUG_ON to handle bugs that are fatal to the VM (Vitaly Kuznetsov) [2009340]
+- KVM: Export kvm_make_all_cpus_request() for use in marking VMs as bugged (Vitaly Kuznetsov) [2009340]
+- KVM: Add infrastructure and macro to mark VM as bugged (Vitaly Kuznetsov) [2009340]
+- KVM: Get rid of kvm_get_pfn() (Vitaly Kuznetsov) [2009340]
+- KVM: arm64: Use get_page() instead of kvm_get_pfn() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: accept userspace interrupt only if no event is injected (Vitaly Kuznetsov) [2009340]
+- KVM: add missing compat KVM_CLEAR_DIRTY_LOG (Vitaly Kuznetsov) [2009340]
+- KVM: use cpu_relax when halt polling (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: use vmcb01 in svm_refresh_apicv_exec_ctrl (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: tweak warning about enabled AVIC on nested entry (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: svm_set_vintr don't warn if AVIC is active but is about to be deactivated (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: delay svm_vcpu_init_msrpm after svm->vmcb is initialized (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Introduce access_tracking_perf_test (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Fix missing break in dirty_log_perf_test arg parsing (Vitaly Kuznetsov) [2009340]
+- x86/kvm: fix vcpu-id indexed array sizes (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Check the right feature bit for MSR_KVM_ASYNC_PF_ACK access (Vitaly Kuznetsov) [2009340]
+- KVM: Documentation: Fix KVM_CAP_ENFORCE_PV_FEATURE_CPUID name (Vitaly Kuznetsov) [2009340]
+- KVM: nSVM: Swap the parameter order for svm_copy_vmrun_state()/svm_copy_vmloadsave_state() (Vitaly Kuznetsov) [2009340]
+- KVM: nSVM: Rename nested_svm_vmloadsave() to svm_copy_vmloadsave_state() (Vitaly Kuznetsov) [2009340]
+- docs: virt: kvm: api.rst: replace some characters (Vitaly Kuznetsov) [2009340]
+- docs: kvm: properly format code blocks and lists (Vitaly Kuznetsov) [2009340]
+- docs: kvm: fix build warnings (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Address extra memslot parameters in vm_vaddr_alloc (Vitaly Kuznetsov) [2009340]
+- kvm: debugfs: fix memory leak in kvm_create_vm_debugfs (Vitaly Kuznetsov) [2009340]
+- Revert "KVM: x86: WARN and reject loading KVM if NX is supported but not enabled" (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: x86: Address missing vm_install_exception_handler conversions (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: change pthread_yield to sched_yield (Vitaly Kuznetsov) [2009340]
+- KVM: x86: rename apic_access_page_done to apic_access_memslot_enabled (Vitaly Kuznetsov) [2009340]
+- kvm: x86: disable the narrow guest module parameter on unload (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: Allows userspace to handle emulation errors. (Vitaly Kuznetsov) [2009340]
+- kvm: x86: Allow userspace to handle emulation errors (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Let guest use GBPAGES if supported in hardware and TDP is on (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Get CR4.SMEP from MMU, not vCPU, in shadow page fault (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Get CR0.WP from MMU, not vCPU, in shadow page fault (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Drop redundant rsvd bits reset for nested NPT (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Optimize and clean up so called "last nonleaf level" logic (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Enhance comments for MMU roles and nested transition trickiness (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: WARN on any reserved SPTE value when making a valid SPTE (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Add helpers to do full reserved SPTE checks w/ generic MMU (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's role to determine PTTYPE (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Collapse 32-bit PAE and 64-bit statements for helpers (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Add a helper to calculate root from role_regs (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Add helper to update paging metadata (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Don't update nested guest's paging bitmasks if CR0.PG=0 (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Consolidate reset_rsvds_bits_mask() calls (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU role_regs to get LA57, and drop vCPU LA57 helper (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Get nested MMU's root level from the MMU's role (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Drop "nx" from MMU context now that there are no readers (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's role to get EFER.NX during MMU configuration (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's role/role_regs to compute context's metadata (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's role to detect EFER.NX in guest page walk (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's roles to compute last non-leaf level (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's role to compute PKRU bitmask (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's role to compute permission bitmask (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Drop vCPU param from reserved bits calculator (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's role to get CR4.PSE for computing rsvd bits (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Don't grab CR4.PSE for calculating shadow reserved bits (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Always set new mmu_role immediately after checking old role (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Set CR4.PKE/LA57 in MMU role iff long mode is active (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Do not set paging-related bits in MMU role if CR0.PG=0 (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Add accessors to query mmu_role bits (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Rename "nxe" role bit to "efer_nx" for macro shenanigans (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU's role_regs, not vCPU state, to compute mmu_role (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Ignore CR0 and CR4 bits in nested EPT MMU role (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Consolidate misc updates into shadow_mmu_init_context() (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Add struct and helpers to retrieve MMU role bits from regs (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Grab shadow root level from mmu_role for shadow MMUs (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Move nested NPT reserved bit calculation into MMU proper (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Read and pass all CR0/CR4 role bits to shadow MMU helper (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Drop smep_andnot_wp check from "uses NX" for shadow MMUs (Vitaly Kuznetsov) [2009340]
+- KVM: nSVM: Add a comment to document why nNPT uses vmcb01, not vCPU state (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Fix sizes used to pass around CR0, CR4, and EFER (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Rename unsync helper and update related comments (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Drop the intermediate "transient" __kvm_sync_page() (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: comment on kvm_mmu_get_page's syncing of pages (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: WARN and zap SP when sync'ing if MMU role mismatches (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Use MMU role to check for matching guest page sizes (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Unconditionally zap unsync SPs when creating >4k SP at GFN (Vitaly Kuznetsov) [2009340]
+- Revert "KVM: MMU: record maximum physical address width in kvm_mmu_extended_role" (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Alert userspace that KVM_SET_CPUID{,2} after KVM_RUN is broken (Vitaly Kuznetsov) [2009340]
+- KVM: debugfs: Reuse binary stats descriptors (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add selftest for KVM statistics data binary interface (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Add documentation for binary statistics interface (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Support binary stats retrieval for a VCPU (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Support binary stats retrieval for a VM (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Add fd-based API to read binary stats data (Vitaly Kuznetsov) [2009340]
+- KVM: stats: Separate generic stats from architecture specific ones (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Don't WARN on a NULL shadow page in TDP MMU check (Vitaly Kuznetsov) [2009340]
+- KVM: sefltests: Add x86-64 test to verify MMU reacts to CPUID updates (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add hugepage support for x86-64 (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Genericize upper level page table entry struct (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add PTE helper for x86-64 in preparation for hugepages (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Rename x86's page table "address" to "pfn" (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add wrapper to allocate page table page (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Unconditionally allocate EPT tables in memslot 0 (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Unconditionally use memslot '0' for page table allocations (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Unconditionally use memslot 0 for vaddr allocations (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Use "standard" min virtual address for CPUID test alloc (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Use alloc page helper for xAPIC IPI test (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Use alloc_page helper for x86-64's GDT/IDT/TSS allocations (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Lower the min virtual address for misc page allocations (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add helpers to allocate N pages of virtual memory (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Use "standard" min virtual address for Hyper-V pages (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Unconditionally use memslot 0 for x86's GDT/TSS setup (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Unconditionally use memslot 0 when loading elf binary (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Zero out the correct page in the Hyper-V features test (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Remove errant asm/barrier.h include to fix arm64 build (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Fix uninitialized boolean variable flush (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: fix triple fault if ept=0 in dirty_log_test (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Print CPU of last attempted VM-entry when dumping VMCS/VMCB (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Dynamically compute max VMCS index for vmcs12 (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Skip #PF(RSVD) intercepts when emulating smaller maxphyaddr (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Remove redundant root_hpa checks (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Refactor is_tdp_mmu_root into is_tdp_mmu (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Remove redundant is_tdp_mmu_enabled check (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Remove redundant is_tdp_mmu_root check (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Stub out is_tdp_mmu_root on 32-bit hosts (Vitaly Kuznetsov) [2009340]
+- KVM: x86: WARN and reject loading KVM if NX is supported but not enabled (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Refuse to load kvm_amd if NX support is not available (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Refuse to load kvm_intel if EPT and NX are disabled (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Fix TDP MMU page table level (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Fix pf_fixed count in tdp_mmu_map_handle_target_level() (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Fix return value in tdp_mmu_map_handle_target_level() (Vitaly Kuznetsov) [2009340]
+- KVM: LAPIC: Keep stored TMCCT register value 0 after KVM_SET_LAPIC (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Introduce KVM_HC_MAP_GPA_RANGE hypercall (Vitaly Kuznetsov) [2009340]
+- KVM: switch per-VM stats to u64 (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Grab nx_lpage_splits as an unsigned long before division (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Check for pending interrupts when APICv is getting disabled (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Drop redundant checks on vmcs12 in EPTP switching emulation (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: WARN if subtly-impossible VMFUNC conditions occur (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Drop pointless @reset_roots from kvm_init_mmu() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Defer MMU sync on PCID invalidation (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Use fast PGD switch when emulating VMFUNC[EPTP_SWITCH] (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Use KVM_REQ_TLB_FLUSH_GUEST to handle INVPCID(ALL) emulation (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Free only guest_mode (L2) roots on INVVPID w/o EPT (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Consolidate VM-Enter/VM-Exit TLB flush and MMU sync logic (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Drop skip MMU sync and TLB flush params from "new PGD" helpers (Vitaly Kuznetsov) [2009340]
+- KVM: nSVM: Move TLB flushing logic (or lack thereof) to dedicated helper (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Uncondtionally skip MMU sync/TLB flush in MOV CR3's PGD switch (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Invalidate all PGDs for the current PCID on MOV CR3 w/ flush (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Don't clobber nested MMU's A/D status on EPTP switch (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Ensure 64-bit shift when checking VMFUNC bitmap (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Sync all PGDs on nested transition with shadow paging (Vitaly Kuznetsov) [2009340]
+- KVM: x86: avoid loading PDPTRs after migration when possible (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Introduce KVM_GET_SREGS2 / KVM_SET_SREGS2 (Vitaly Kuznetsov) [2009340]
+- KVM: x86: introduce kvm_register_clear_available (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: delay loading of PDPTRs to KVM_REQ_GET_NESTED_STATE_PAGES (Vitaly Kuznetsov) [2009340]
+- KVM: nSVM: refactor the CR3 reload on migration (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Always load PDPTRs on CR3 load for SVM w/o NPT and a PAE guest (Vitaly Kuznetsov) [2009340]
+- KVM: nSVM: Drop pointless pdptrs_changed() check on nested transition (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Drop obsolete (and pointless) pdptrs_changed() check (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Introduce hyperv_features test (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Move evmcs.h to x86_64/ (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: move Hyper-V MSR definitions to hyperv.h (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_X64_CLUSTER_IPI_RECOMMENDED bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_X64_REMOTE_TLB_FLUSH_RECOMMENDED bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_DEBUGGING privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_SIGNAL_EVENTS privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_POST_MESSAGES privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Check access to HVCALL_NOTIFY_LONG_SPIN_WAIT hypercall (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Prepare to check access to Hyper-V hypercalls (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_STIMER_DIRECT_MODE_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Inverse the default in hv_check_msr_access() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_FEATURE_DEBUG_MSRS_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_ACCESS_REENLIGHTENMENT privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_ACCESS_FREQUENCY_MSRS privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_APIC_ACCESS_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_SYNTIMER_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_SYNIC_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_REFERENCE_TSC_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_RESET_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_VP_INDEX_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_TIME_REF_COUNT_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_VP_RUNTIME_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Honor HV_MSR_HYPERCALL_AVAILABLE privilege bit (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Prepare to check access to Hyper-V MSRs (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Cache guest CPUID leaves determining features availability (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Introduce KVM_CAP_HYPERV_ENFORCE_CPUID (Vitaly Kuznetsov) [2009340]
+- asm-generic/hyperv: add HV_STATUS_ACCESS_DENIED definition (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: hyper-v: Direct Virtual Flush support (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: hyper-v: Enlightened MSR-Bitmap support (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: hyper-v: Remote TLB flush for SVM (Vitaly Kuznetsov) [2009340]
+- KVM: SVM: Software reserved fields (Vitaly Kuznetsov) [2009340]
+- KVM: x86: hyper-v: Move the remote TLB flush logic out of vmx (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: nSVM: Add a new VCPU statistic to show if VCPU is in guest mode (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Drop "pre_" from enter/leave_smm() helpers (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Drop .post_leave_smm(), i.e. the manual post-RSM MMU reset (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Rename SMM tracepoint to make it reflect reality (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Move "entering SMM" tracepoint into kvm_smm_changed() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Move (most) SMM hflags modifications into kvm_smm_changed() (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Invoke kvm_smm_changed() immediately after clearing SMM flag (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Replace .set_hflags() with dedicated .exiting_smm() helper (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Emulate triple fault shutdown if RSM emulation fails (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Drop vendor specific functions for APICv/AVIC enablement (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Use common 'enable_apicv' variable for both APICv and AVIC (Vitaly Kuznetsov) [2009340]
+- kvm: x86: implement KVM PM-notifier (Vitaly Kuznetsov) [2009340]
+- kvm: add PM-notifier (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Introduce x2APIC register manipulation functions (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Hoist APIC functions out of individual tests (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Move APIC definitions into a separate file (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Disable vmcs02 posted interrupts if vmcs12 PID isn't mappable (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Fail on MMIO completion for nested posted interrupts (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Add a return code to kvm_apic_accept_events (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Add a return code to inject_pending_event (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Add a return code to vmx_complete_nested_posted_interrupt (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Remove guest mode check from kvm_check_nested_events (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: x86: Add vmx_nested_tsc_scaling_test (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Enable nested TSC scaling (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Add vendor callbacks for writing the TSC multiplier (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Move write_l1_tsc_offset() logic to common code and rename it (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Add functions that calculate the nested TSC fields (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Add functions for retrieving L2 TSC fields from common code (Vitaly Kuznetsov) [2009340]
+- KVM: nVMX: Add a TSC multiplier field in VMCS12 (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Add a ratio parameter to kvm_scale_tsc() (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Rename kvm_compute_tsc_offset() to kvm_compute_l1_tsc_offset() (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Store L1's TSC scaling ratio in 'struct kvm_vcpu_arch' (Vitaly Kuznetsov) [2009340]
+- math64.h: Add mul_s64_u64_shr() (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Add a field to control memslot rmap allocation (Vitaly Kuznetsov) [2009340]
+- KVM: mmu: Add slots_arch_lock for memslot arch fields (Vitaly Kuznetsov) [2009340]
+- KVM: mmu: Refactor memslot copy (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Factor out allocating memslot rmap (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Deduplicate rmap freeing (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Do not write protect huge page in initially-all-set mode (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Support write protecting only large pages (Vitaly Kuznetsov) [2009340]
+- KVM: hyper-v: Advertise support for fast XMM hypercalls (Vitaly Kuznetsov) [2009340]
+- KVM: x86: kvm_hv_flush_tlb use inputs from XMM registers (Vitaly Kuznetsov) [2009340]
+- KVM: hyper-v: Collect hypercall params into struct (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Move FPU register accessors into fpu.h (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Make is_nx_huge_page_enabled an inline function (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Fix kvm_check_cap() assertion (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add aarch64/debug-exceptions test (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Add exception handling support for aarch64 (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Move GUEST_ASSERT_EQ to utils header (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Introduce UCALL_UNHANDLED for unhandled vector reporting (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Complete x86_64/sync_regs_test ucall (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Rename vm_handle_exception (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Fix compiling errors when initializing the static structure (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: Add support for customized slot0 memory size (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: fix overlapping addresses in memslot_perf_test (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: do only 1 memslot_perf_test run by default (Vitaly Kuznetsov) [2009340]
+- KVM: X86: Use _BITUL() macro in UAPI headers (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: create alias mappings when using shared memory (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: add shmem backing source type (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: refactor vm_mem_backing_src_type flags (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: allow different backing source types (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: compute correct demand paging size (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: simplify setup_demand_paging error handling (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Print a message if /dev/kvm is missing (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: trivial comment/logging fixes (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Fix hang in hardware_disable_test (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Ignore CPUID.0DH.1H in get_cpuid_test (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Fix 32-bit truncation of vm_get_max_gfn() (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: add a memslot-related performance benchmark (Vitaly Kuznetsov) [2009340]
+- KVM: selftests: Keep track of memslots more efficiently (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: fix potential issue with ELF loading (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: make allocation of extra memory take effect (Vitaly Kuznetsov) [2009340]
+- docs: virt: api.rst: fix a pointer to SGX documentation (Vitaly Kuznetsov) [2009340]
+- docs: vcpu-requests.rst: fix reference for atomic ops (Vitaly Kuznetsov) [2009340]
+- x86/msr: Rename MSR_K8_SYSCFG to MSR_AMD64_SYSCFG (Vitaly Kuznetsov) [2009340]
+- x86/sev: Move GHCB MSR protocol and NAE definitions in a common header (Vitaly Kuznetsov) [2009340]
+- x86/sev-es: Rename sev-es.{ch} to sev.{ch} (Vitaly Kuznetsov) [2009340]
+- x86/sev-es: Replace open-coded hlt-loops with sev_es_terminate() (Vitaly Kuznetsov) [2009340]
+- tools/kvm_stat: Fix documentation typo (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Hide RDTSCP and RDPID if MSR_TSC_AUX probing failed (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Tie Intel and AMD behavior for MSR_TSC_AUX to guest CPU model (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Move uret MSR slot management to common x86 (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Export the number of uret MSRs to vendor modules (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Disable loading of TSX_CTRL MSR the more conventional way (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Use common x86's uret MSR list as the one true list (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Use flag to indicate "active" uret MSRs instead of sorting list (Vitaly Kuznetsov) [2009340]
+- KVM: VMX: Configure list of user return MSRs at module init (Vitaly Kuznetsov) [2009340]
+- KVM: x86: Add support for RDPID without RDTSCP (Vitaly Kuznetsov) [2009340]
+- selftests: kvm: remove reassignment of non-absolute variables (Vitaly Kuznetsov) [2009340]
+- doc/kvm: Fix wrong entry for KVM_CAP_X86_MSR_FILTER (Vitaly Kuznetsov) [2009340]
+- KVM: x86/mmu: Fix kdoc of __handle_changed_spte (Vitaly Kuznetsov) [2009340]
+- KVM: documentation: fix sphinx warnings (Vitaly Kuznetsov) [2009340]
+- KVM: x86: document behavior of measurement ioctls with len==0 (Vitaly Kuznetsov) [2009340]
+- documentation/kvm: additional explanations on KVM_SET_BOOT_CPU_ID (Vitaly Kuznetsov) [2009340]
+- docs: kvm: Fix a typo ("althought") (Vitaly Kuznetsov) [2009340]
+- KVM: move EXIT_FASTPATH_REENTER_GUEST to common code (Vitaly Kuznetsov) [2009340]
+- mm, kvm: account kvm_vcpu_mmap to kmemcg (Vitaly Kuznetsov) [2009340]
+- x86/kvm: Use msi_msg shadow structs (Vitaly Kuznetsov) [2009340]
+- ceph: fix up non-directory creation in SGID directories (Jeffrey Layton) [2017796]
+- ceph: initialize pathlen variable in reconnect_caps_cb (Jeffrey Layton) [2017796]
+- ceph: initialize i_size variable in ceph_sync_read (Jeffrey Layton) [2017796]
+- ceph: fix duplicate increment of opened_inodes metric (Jeffrey Layton) [2017796]
+- ceph: add a new metric to keep track of remote object copies (Jeffrey Layton) [2017796]
+- libceph, ceph: move ceph_osdc_copy_from() into cephfs code (Jeffrey Layton) [2017796]
+- ceph: clean-up metrics data structures to reduce code duplication (Jeffrey Layton) [2017796]
+- ceph: split 'metric' debugfs file into several files (Jeffrey Layton) [2017796]
+- ceph: return the real size read when it hits EOF (Jeffrey Layton) [2017796]
+- ceph: properly handle statfs on multifs setups (Jeffrey Layton) [2017796]
+- ceph: shut down mount on bad mdsmap or fsmap decode (Jeffrey Layton) [2017796]
+- ceph: fix mdsmap decode when there are MDS's beyond max_mds (Jeffrey Layton) [2017796]
+- ceph: ignore the truncate when size won't change with Fx caps issued (Jeffrey Layton) [2017796]
+- ceph: don't rely on error_string to validate blocklisted session. (Jeffrey Layton) [2017796]
+- ceph: just use ci->i_version for fscache aux info (Jeffrey Layton) [2017796]
+- ceph: shut down access to inode when async create fails (Jeffrey Layton) [2017796]
+- ceph: refactor remove_session_caps_cb (Jeffrey Layton) [2017796]
+- ceph: fix auth cap handling logic in remove_session_caps_cb (Jeffrey Layton) [2017796]
+- ceph: drop private list from remove_session_caps_cb (Jeffrey Layton) [2017796]
+- ceph: don't use -ESTALE as special return code in try_get_cap_refs (Jeffrey Layton) [2017796]
+- ceph: print inode numbers instead of pointer values (Jeffrey Layton) [2017796]
+- ceph: enable async dirops by default (Jeffrey Layton) [2017796]
+- libceph: drop ->monmap and err initialization (Jeffrey Layton) [2017796]
+- ceph: convert to noop_direct_IO (Jeffrey Layton) [2017796]
+- ceph: fix off by one bugs in unsafe_request_wait() (Jeffrey Layton) [2017796]
+- ceph: fix handling of "meta" errors (Jeffrey Layton) [2017796]
+- ceph: drop the mdsc_get_session/put_session dout messages (Jeffrey Layton) [2017796]
+- ceph: lockdep annotations for try_nonblocking_invalidate (Jeffrey Layton) [2017796]
+- ceph: don't WARN if we're forcibly removing the session caps (Jeffrey Layton) [2017796]
+- ceph: don't WARN if we're force umounting (Jeffrey Layton) [2017796]
+- ceph: remove the capsnaps when removing caps (Jeffrey Layton) [2017796]
+- ceph: request Fw caps before updating the mtime in ceph_write_iter (Jeffrey Layton) [2017796]
+- ceph: reconnect to the export targets on new mdsmaps (Jeffrey Layton) [2017796]
+- ceph: print more information when we can't find snaprealm (Jeffrey Layton) [2017796]
+- ceph: add ceph_change_snap_realm() helper (Jeffrey Layton) [2017796]
+- ceph: remove redundant initializations from mdsc and session (Jeffrey Layton) [2017796]
+- ceph: cancel delayed work instead of flushing on mdsc teardown (Jeffrey Layton) [2017796]
+- ceph: add a new vxattr to return auth mds for an inode (Jeffrey Layton) [2017796]
+- ceph: flush the mdlog before waiting on unsafe reqs (Jeffrey Layton) [2017796]
+- ceph: flush mdlog before umounting (Jeffrey Layton) [2017796]
+- ceph: make iterate_sessions a global symbol (Jeffrey Layton) [2017796]
+- ceph: make ceph_create_session_msg a global symbol (Jeffrey Layton) [2017796]
+- ceph: fix comment about short copies in ceph_write_end (Jeffrey Layton) [2017796]
+- ceph: fix memory leak on decode error in ceph_handle_caps (Jeffrey Layton) [2017796]
+- RDMA/irdma: Fix a potential memory allocation issue in 'irdma_prm_add_pble_mem()' (Kamal Heib) [1970672]
+- RDMA/irdma: Don't arm the CQ more than two times if no CE for this CQ (Kamal Heib) [1970672]
+- RDMA/irdma: Fix a user-after-free in add_pble_prm (Kamal Heib) [1970672]
+- RDMA/irdma: Report correct WC errors (Kamal Heib) [1970672]
+- RDMA/irdma: Do not hold qos mutex twice on QP resume (Kamal Heib) [1970672]
+- RDMA/irdma: Set VLAN in UD work completion correctly (Kamal Heib) [1970672]
+- RDMA/irdma: Process extended CQ entries correctly (Kamal Heib) [1970672]
+- RDMA/irdma: Report correct WC error when there are MW bind errors (Kamal Heib) [1970672]
+- RDMA/irdma: Report correct WC error when transport retry counter is exceeded (Kamal Heib) [1970672]
+- RDMA/irdma: Validate number of CQ entries on create CQ (Kamal Heib) [1970672]
+- RDMA/irdma: Skip CQP ring during a reset (Kamal Heib) [1970672]
+- RDMA/irdma: Remove the repeated declaration (Kamal Heib) [1970672]
+- RDMA/irdma: Use correct kconfig symbol for AUXILIARY_BUS (Kamal Heib) [1970672]
+- RDMA/irdma: Change returned type of irdma_setup_virt_qp to void (Kamal Heib) [1970672]
+- RDMA/irdma: Change the returned type of irdma_set_hw_rsrc to void (Kamal Heib) [1970672]
+- RDMA/irdma: change the returned type of irdma_sc_repost_aeq_entries to void (Kamal Heib) [1970672]
+- RDMA/irdma: Check vsi pointer before using it (Kamal Heib) [1970672]
+- RDMA/irdma: Change the returned type to void (Kamal Heib) [1970672]
+- RDMA/irdma: Make spdxcheck.py happy (Kamal Heib) [1970672]
+- RDMA/irdma: Fix unused variable total_size warning (Kamal Heib) [1970672]
+- RDMA/irdma: Fix potential overflow expression in irdma_prm_get_pbles (Kamal Heib) [1970672]
+- RDMA/irdma: Check contents of user-space irdma_mem_reg_req object (Kamal Heib) [1970672]
+- RDMA/irdma: Remove use of kmap() (Kamal Heib) [1970672]
+- RDMA/irdma: Use the queried port attributes (Kamal Heib) [1970672]
+- RDMA/irdma: Check return value from ib_umem_find_best_pgsz (Kamal Heib) [1970672]
+- RDMA: Split the alloc_hw_stats() ops to port and device variants (Kamal Heib) [1970672]
+- RDMA/irdma: Store PBL info address a pointer type (Kamal Heib) [1970672]
+- RDMA/irdma: Use list_last_entry/list_first_entry (Kamal Heib) [1970672]
+- RDMA/irdma: Use list_move instead of list_del/list_add (Kamal Heib) [1970672]
+- RDMA/irdma: Fix return error sign from irdma_modify_qp (Kamal Heib) [1970672]
+- RDMA/irdma: Fix spelling mistake "Allocal" -> "Allocate" (Kamal Heib) [1970672]
+- RDMA/irdma: remove redundant initialization of variable val (Kamal Heib) [1970672]
+- RDMA/irdma: remove extraneous indentation on a statement (Kamal Heib) [1970672]
+- RDMA/irdma: Fix issues with u8 left shift operation (Kamal Heib) [1970672]
+- RDMA/irdma: Add irdma Kconfig/Makefile and remove i40iw (Kamal Heib) [1970672]
+- RDMA/irdma: Add ABI definitions (Kamal Heib) [1970672]
+- RDMA/irdma: Add dynamic tracing for CM (Kamal Heib) [1970672]
+- RDMA/irdma: Add miscellaneous utility definitions (Kamal Heib) [1970672]
+- RDMA/irdma: Add user/kernel shared libraries (Kamal Heib) [1970672]
+- RDMA/irdma: Add RoCEv2 UD OP support (Kamal Heib) [1970672]
+- RDMA/irdma: Implement device supported verb APIs (Kamal Heib) [1970672]
+- RDMA/irdma: Add PBLE resource manager (Kamal Heib) [1970672]
+- RDMA/irdma: Add connection manager (Kamal Heib) [1970672]
+- RDMA/irdma: Add QoS definitions (Kamal Heib) [1970672]
+- RDMA/irdma: Add privileged UDA queue implementation (Kamal Heib) [1970672]
+- RDMA/irdma: Add HMC backing store setup functions (Kamal Heib) [1970672]
+- RDMA/irdma: Implement HW Admin Queue OPs (Kamal Heib) [1970672]
+- RDMA/irdma: Implement device initialization definitions (Kamal Heib) [1970672]
+- RDMA/irdma: Register auxiliary driver and implement private channel OPs (Kamal Heib) [1970672]
+- i40e: Register auxiliary devices to provide RDMA (Kamal Heib) [1970672]
+- i40e: Prep i40e header for aux bus conversion (Kamal Heib) [1970672]
+- i40e: Replace one-element array with flexible-array member (Kamal Heib) [1970672]
+- ibmvnic: drop bad optimization in reuse_tx_pools() (Gustavo Walbon) [2028722]
+- ibmvnic: drop bad optimization in reuse_rx_pools() (Gustavo Walbon) [2028722]
+- /proc/<pid>/cmdline: add back the setproctitle() special case (Ian Kent) [1979446]
+- /proc/<pid>/cmdline: remove all the special cases (Ian Kent) [1979446]
+- perf tests vmlinux-kallsyms: Ignore hidden symbols (Michael Petlan) [1903157]
+- net/sched: sch_ets: don't remove idle classes from the round-robin list (Davide Caratti) [2013073]
+- net/sched: sch_ets: don't peek at classes beyond 'nbands' (Davide Caratti) [2013073]
+- net/sched: sch_ets: properly init all active DRR list handles (Davide Caratti) [2013073]
+- serial: 8250: fix racy uartclk update (Puneet Sethi) [1784121]
+- serial: 8250: Skip uninitialized TTY port baud rate update (Puneet Sethi) [1784121]
+- serial: 8250: Discard RTS/DTS setting from clock update method (Puneet Sethi) [1784121]
+- serial: 8250: Add 8250 port clock update method (Puneet Sethi) [1784121]
+- serial: 8250_dw: drop bogus uartclk optimisation (Puneet Sethi) [1784121]
+- serial: 8250_lpss: Enable PSE UART Auto Flow Control (Puneet Sethi) [1784121]
+- serial: 8250_lpss: Extract dw8250_do_set_termios() for common use (Puneet Sethi) [1784121]
+- serial: 8250_dw: Fix the trivial typo in the comment (Puneet Sethi) [1784121]
+- serial: 8250_dw: Re-use temporary variable for of_node (Puneet Sethi) [1784121]
+- serial: 8250_dw: Drop wrong use of ACPI_PTR() (Puneet Sethi) [1784121]
+- serial: 8250_lpss: Enable DMA on Intel Elkhart Lake (Puneet Sethi) [1784121]
+- serial: 8250_dw: Add device HID for new AMD UART controller (Puneet Sethi) [1784121]
+- serial: 8250_dw: Fix clk-notifier/port suspend deadlock (Puneet Sethi) [1784121]
+- serial: 8250_dw: Fix common clocks usage race condition (Puneet Sethi) [1784121]
+- serial: 8250_dw: Pass the same rate to the clk round and set rate methods (Puneet Sethi) [1784121]
+- serial: 8250_dw: Simplify the ref clock rate setting procedure (Puneet Sethi) [1784121]
+- serial: 8250_dw: Use devm_clk_get_optional() to get the input clock (Puneet Sethi) [1784121]
+- serial: 8250_dw: Avoid double error messaging when IRQ absent (Puneet Sethi) [1784121]
+- serial: 8250_dw: switch to use 8250_dwlib library (Puneet Sethi) [1784121]
+- serial: 8250_dw: use pointer to uart local variable (Puneet Sethi) [1784121]
+- serial: 8250_dw: Use a unified new dev variable in remove (Puneet Sethi) [1784121]
+- serial: 8250_dw: always set baud rate in dw8250_set_termios (Puneet Sethi) [1784121]
+- serial: 8250_dw: add fractional divisor support (Puneet Sethi) [1784121]
+- serial: 8250_dw: Introduce IO accessors to extended registers (Puneet Sethi) [1784121]
+- dmaengine: dw: Program xBAR hardware for Elkhart Lake (Puneet Sethi) [1784121]
+- dmaengine: dw: Make it dependent to HAS_IOMEM (Puneet Sethi) [1784121]
+- dmaengine dw: Revert "dmaengine: dw: Enable runtime PM" (Puneet Sethi) [1784121]
+- dmaengine: dw: Enable runtime PM (Puneet Sethi) [1784121]
+- dmaengine: dw: Add DMA-channels mask cell support (Puneet Sethi) [1784121]
+- dmaengine: dw: Ignore burst setting for memory peripherals (Puneet Sethi) [1784121]
+- dmaengine: dw: Discard dlen from the dev-to-mem xfer width calculation (Puneet Sethi) [1784121]
+- dmaengine: dw: Activate FIFO-mode for memory peripherals only (Puneet Sethi) [1784121]
+- dmaengine: dw: Initialize max_sg_burst capability (Puneet Sethi) [1784121]
+- dmaengine: dw: Introduce max burst length hw config (Puneet Sethi) [1784121]
+- dmaengine: dw: Initialize min and max burst DMA device capability (Puneet Sethi) [1784121]
+- dmaengine: dw: Set DMA device max segment size parameter (Puneet Sethi) [1784121]
+- dmaengine: dw: Take HC_LLP flag into account for noLLP auto-config (Puneet Sethi) [1784121]
+- dmaengine: Introduce DMA-device device_caps callback (Puneet Sethi) [1784121]
+- dmaengine: Introduce max SG burst capability (Puneet Sethi) [1784121]
+- dmaengine: Introduce min burst length capability (Puneet Sethi) [1784121]
+- dmaengine: dw: Initialize channel before each transfer (Puneet Sethi) [1784121]
+- dmaengine: dw: Replace 'objs' by 'y' (Puneet Sethi) [1784121]
+- dmaengine: dw: Register ACPI DMA controller for PCI that has companion (Puneet Sethi) [1784121]
+- dmaengine: dw: platform: Mark 'hclk' clock optional (Puneet Sethi) [1784121]
+- dmaengine: dw: platform: Split OF helpers to separate module (Puneet Sethi) [1784121]
+- dmaengine: dw: platform: Split ACPI helpers to separate module (Puneet Sethi) [1784121]
+- dmaengine: dw: platform: Move handle check to dw_dma_acpi_controller_register() (Puneet Sethi) [1784121]
+- dmaengine: dw: platform: Switch to acpi_dma_controller_register() (Puneet Sethi) [1784121]
+- dmaengine: dw: platform: Use devm_platform_ioremap_resource() (Puneet Sethi) [1784121]
+- dmaengine: dw: platform: Enable iDMA 32-bit on Intel Elkhart Lake (Puneet Sethi) [1784121]
+- dmaengine: dw: platform: Use struct dw_dma_chip_pdata (Puneet Sethi) [1784121]
+- dmaengine: dw: Export struct dw_dma_chip_pdata for wider use (Puneet Sethi) [1784121]
+- dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym (Puneet Sethi) [1784121]
+- dmaengine: dw: Enable iDMA 32-bit on Intel Elkhart Lake (Puneet Sethi) [1784121]
+- dmaengine: dw: Distinguish ->remove() between DW and iDMA 32-bit (Puneet Sethi) [1784121]
+- dmaengine: dw: convert to SPDX identifiers (Puneet Sethi) [1784121]
+- dmaengine: dw: Don't pollute CTL_LO on iDMA 32-bit (Puneet Sethi) [1784121]
+- dmaengine: dw: Reset DRAIN bit when resume the channel (Puneet Sethi) [1784121]
+- dmaengine: dw: Split DW and iDMA 32-bit operations (Puneet Sethi) [1784121]
+- dmaengine: dw: Remove unused internal property (Puneet Sethi) [1784121]
+- dmaengine: dw: Add missed multi-block support for iDMA 32-bit (Puneet Sethi) [1784121]
+- dmaengine: dw: drop useless LIST_HEAD (Puneet Sethi) [1784121]
+- dmaengine: dw: Fix FIFO size for Intel Merrifield (Puneet Sethi) [1784121]
+- dmaengine: dw-dmac: implement dma protection control setting (Puneet Sethi) [1784121]
+- dmaengine: dw: remove dma_slave_config direction usage (Puneet Sethi) [1784121]
+- dmaengine: dw: Add alternative ACPI HIDs for Cherry Trail DMA controllers (Puneet Sethi) [1784121]
+- perf/arm-cmn: Fix invalid pointer when access dtc object sharing the same IRQ number (Mark Langsdorf) [1997732]
+- drivers/perf: Simplify EVENT ATTR macro in SMMU PMU driver (Mark Langsdorf) [1997732]
+- perf/smmuv3: Don't trample existing events with global filter (Mark Langsdorf) [1997732]
+- perf: qcom: Remove redundant dev_err call in qcom_l3_cache_pmu_probe() (Mark Langsdorf) [1997732]
+- perf: arm_spe: use DEVICE_ATTR_RO macro (Mark Langsdorf) [1997732]
+- perf: xgene_pmu: use DEVICE_ATTR_RO macro (Mark Langsdorf) [1997732]
+- perf: qcom: use DEVICE_ATTR_RO macro (Mark Langsdorf) [1997732]
+- perf: arm_pmu: use DEVICE_ATTR_RO macro (Mark Langsdorf) [1997732]
+- drivers/perf: arm-cci: Fix checkpatch spacing error (Mark Langsdorf) [1997732]
+- drivers/perf: arm-cmn: Add space after ',' (Mark Langsdorf) [1997732]
+- drivers/perf: arm_pmu: Fix some coding style issues (Mark Langsdorf) [1997732]
+- drivers/perf: arm_spe_pmu: Fix some coding style issues (Mark Langsdorf) [1997732]
+- drivers/perf: Remove redundant dev_err call in tx2_uncore_pmu_init_dev() (Mark Langsdorf) [1997732]
+- perf/arm-smmuv3: Use irq_set_affinity() (Mark Langsdorf) [1997732]
+- perf/arm-dsu: Use irq_set_affinity() (Mark Langsdorf) [1997732]
+- perf/arm-dmc620: Use irq_set_affinity() (Mark Langsdorf) [1997732]
+- perf/arm-cmn: Use irq_set_affinity() (Mark Langsdorf) [1997732]
+- perf/arm-ccn: Use irq_set_affinity() (Mark Langsdorf) [1997732]
+- perf/arm-ccn: Clean up CPU hotplug handling (Mark Langsdorf) [1997732]
+- perf/arm-cci: Remove broken race mitigation (Mark Langsdorf) [1997732]
+- genirq: Export affinity setter for modules (Mark Langsdorf) [1997732]
+- perf/arm_pmu_platform: Clean up with dev_printk (Mark Langsdorf) [1997732]
+- perf/arm_pmu_platform: Fix error handling (Mark Langsdorf) [1997732]
+- perf/arm_pmu_platform: Use dev_err_probe() for IRQ errors (Mark Langsdorf) [1997732]
+- drivers/perf: Simplify the SMMUv3 PMU event attributes (Mark Langsdorf) [1997732]
+- perf: Constify static struct attribute_group (Mark Langsdorf) [1997732]
+- perf: qcom: Constify static struct attribute_group (Mark Langsdorf) [1997732]
+- drivers/perf: Add support for ARMv8.3-SPE (Mark Langsdorf) [1997732]
+- driver/perf: Remove ARM_SMMU_V3_PMU dependency on ARM_SMMU_V3 (Mark Langsdorf) [1997732]
+- perf/smmuv3: Support sysfs identifier file (Mark Langsdorf) [1997732]
+- perf: remove duplicate check on fwnode (Mark Langsdorf) [1997732]
+- redhat/configs: enable ARM_DMC620_PMU memory controller perf counters (Mark Langsdorf) [1997732]
+- perf/arm_dmc620_pmu: Fix error return code in dmc620_pmu_device_probe() (Mark Langsdorf) [1997732]
+- drivers/perf: Prevent forced unbinding of ARM_DMC620_PMU drivers (Mark Langsdorf) [1997732]
+- driver/perf: Add PMU driver for the ARM DMC-620 memory controller (Mark Langsdorf) [1997732]
+- drivers/perf: thunderx2_pmu: Fix memory resource error handling (Mark Langsdorf) [1997732]
+- drivers/perf: xgene_pmu: Fix uninitialized resource struct (Mark Langsdorf) [1997732]
+- perf: arm_dsu: Support DSU ACPI devices (Mark Langsdorf) [1997732]
+- perf/smmuv3: To simplify code for ioremap page in pmcg (Mark Langsdorf) [1997732]
+- drivers/perf: Prevent forced unbinding of PMU drivers (Mark Langsdorf) [1997732]
+- drivers/perf: Fix kernel panic when rmmod PMU modules during perf sampling (Mark Langsdorf) [1997732]
+- pmu/smmuv3: Clear IRQ affinity hint on device removal (Mark Langsdorf) [1997732]
+- drivers/perf: arm_spe_pmu: Avoid duplicate printouts (Mark Langsdorf) [1997732]
+- drivers/perf: arm_dsu_pmu: Avoid duplicate printouts (Mark Langsdorf) [1997732]
+- drivers/perf: Open access for CAP_PERFMON privileged process (Mark Langsdorf) [1997732]
+- perf/smmuv3: Remove the leftover put_cpu() in error path (Mark Langsdorf) [1997732]
+- perf: arm-ccn: Enable stats for CCN-512 interconnect (Mark Langsdorf) [1997732]
+- perf/smmuv3: use devm_platform_ioremap_resource() to simplify code (Mark Langsdorf) [1997732]
+- perf/arm-cci: use devm_platform_ioremap_resource() to simplify code (Mark Langsdorf) [1997732]
+- perf/arm-ccn: use devm_platform_ioremap_resource() to simplify code (Mark Langsdorf) [1997732]
+- perf: xgene: use devm_platform_ioremap_resource() to simplify code (Mark Langsdorf) [1997732]
+- perf/smmuv3: Validate groups for global filtering (Mark Langsdorf) [1997732]
+- perf/smmuv3: Validate group size (Mark Langsdorf) [1997732]
+- perf/smmuv3: Enable HiSilicon Erratum 162001800 quirk (Mark Langsdorf) [1997732]
+- perf/smmuv3: Add MSI irq support (Mark Langsdorf) [1997732]
+- perf/smmuv3: Add arm64 smmuv3 pmu driver (Mark Langsdorf) [1997732]
+- perf: xgene: Remove set but not used variable 'config' (Mark Langsdorf) [1997732]
+- perf/drivers: Strengthen exclusion checks with PERF_PMU_CAP_NO_EXCLUDE (Mark Langsdorf) [1997732]
+- For drivers that do not support context exclusion let's advertise the PERF_PMU_CAP_NO_EXCLUDE capability. This ensures that perf will prevent us from handling events where any exclusion flags are set. Let's also remove the now unnecessary check for exclusion flags. (Mark Langsdorf) [1997732]
+- perf/core, arch/arm: Use PERF_PMU_CAP_NO_EXCLUDE conditionally (Mark Langsdorf) [1997732]
+- drivers/perf: arm-ccn: Use devm_ioremap_resource() to map memory (Mark Langsdorf) [1997732]
+- drivers/perf: Initialise return value in armpmu_request_irqs() (Mark Langsdorf) [1997732]
+- perf/arm-cci: Remove VLA usage (Mark Langsdorf) [1997732]
+- tools/power turbostat: version 2021.05.04 (Prarit Bhargava) [2030472]
+- tools/power turbostat: Support "turbostat --hide idle" (Prarit Bhargava) [2030472]
+- tools/power turbostat: elevate priority of interval mode (Prarit Bhargava) [2030472]
+- tools/power turbostat: formatting (Prarit Bhargava) [2030472]
+- tools/power turbostat: rename tcc variables (Prarit Bhargava) [2030472]
+- tools/power turbostat: save original CPU model (Prarit Bhargava) [2030472]
+- tools/power turbostat: add TCC Offset support (Prarit Bhargava) [2030472]
+- tools/power turbostat: Fix Core C6 residency on Atom CPUs (Prarit Bhargava) [2030472]
+- tools/power turbostat: Print the C-state Pre-wake settings (Prarit Bhargava) [2030472]
+- tools/power turbostat: unmark non-kernel-doc comment (Prarit Bhargava) [2030472]
+- tools/power/turbostat: Remove Package C6 Retention on Ice Lake Server (Prarit Bhargava) [2030472]
+- tools/power turbostat: Fix offset overflow issue in index converting (Prarit Bhargava) [2030472]
+- tools/power/turbostat: Fix turbostat for AMD Zen CPUs (Prarit Bhargava) [2030472]
+- Revert "tools/power turbostat: adjust for temperature offset" (Prarit Bhargava) [2030472]
+- tools/power turbostat: Fix DRAM Energy Unit on SKX (Prarit Bhargava) [2030472]
+- tools/power turbostat: print microcode patch level (Prarit Bhargava) [2030472]
+- tools/power turbostat: add built-in-counter for IPC -- Instructions per Cycle (Prarit Bhargava) [2030472]
+
+* Wed Dec 15 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-356.el8]
+- [s390] virtio: write back F_VERSION_1 before validate (Claudio Imbrenda) [2026234]
+- cpufreq: powernv: Fix init_chip_info initialization in numa=off (Steve Best) [2017665]
+- tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() (Guillaume Nault) [2016210]
+- tipc: fix size validations for the MSG_CRYPTO type (Xin Long) [2020507] {CVE-2021-43267}
+- tipc: increase timeout in tipc_sk_enqueue() (Xin Long) [2020401]
+- Revert "tipc: Return the correct errno code" (Xin Long) [2020401]
+- tipc: fix an use-after-free issue in tipc_recvmsg (Xin Long) [2020401]
+- tipc: keep the skb in rcv queue until the whole data is read (Xin Long) [2020401]
+- powerpc/perf: Fix cycles/instructions as PM_CYC/PM_INST_CMPL in power10 (Steve Best) [2025400]
+- PCI: Increase D3 delay for AMD Renoir/Cezanne XHCI (Myron Stowe) [2028298]
+- media: uvcvideo: Avoid cyclic entity chains due to malformed USB descriptors (Dean Nelson) [1921871] {CVE-2020-0404}
+- sctp: fix transport encap_port update in sctp_vtag_verify (Xin Long) [2020393]
+- sctp: account stream padding length for reconf chunk (Xin Long) [2020393]
+- sctp: break out if skb_header_pointer returns NULL in sctp_rcv_ootb (Xin Long) [2020393]
+- net: cipso: fix warnings in netlbl_cipsov4_add_std (Balazs Nemeth) [2026691]
+- net/sched: act_ct: fix err check for nf_conntrack_confirm (Davide Caratti) [2018109]
+- net/sched: act_ct: Fix byte count on fragmented packets (Davide Caratti) [2018109]
+- mqprio: Correct stats in mqprio_dump_class_stats(). (Davide Caratti) [2018109]
+- net_sched: fix NULL deref in fifo_set_limit() (Davide Caratti) [2018109]
+- net: sched: flower: protect fl_walk() with rcu (Davide Caratti) [2018109]
+- fq_codel: reject silly quantum parameters (Davide Caratti) [2018109]
+- net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed (Davide Caratti) [2018109]
+- sch_htb: Fix inconsistency when leaf qdisc creation fails (Davide Caratti) [2018109]
+- net: sched: fix lockdep_set_class() typo error for sch->seqlock (Davide Caratti) [2018109]
+- net: sched: cls_api: Fix the the wrong parameter (Davide Caratti) [2018109]
+- net/sched: act_vlan: Fix modify to allow 0 (Davide Caratti) [2018109]
+- net-sysfs: initialize uid and gid before calling net_ns_get_ownership (Xin Long) [1979820]
+- net: fix sysfs permssions when device changes network namespace (Xin Long) [1979820]
+- net-sysfs: add queue_change_owner() (Xin Long) [1979820]
+- net-sysfs: add netdev_change_owner() (Xin Long) [1979820]
+- drivers/base/power: add dpm_sysfs_change_owner() (Xin Long) [1979820]
+- device: add device_change_owner() (Xin Long) [1979820]
+- sysfs: Fix regression when adding a file to an existing group (Xin Long) [1979820]
+- bridge: make sure objects belong to container's owner (Xin Long) [1979820]
+- net: create reusable function for getting ownership info of sysfs inodes (Xin Long) [1979820]
+- net-sysfs: make sure objects belong to container's owner (Xin Long) [1979820]
+- net-sysfs: require net admin in the init ns for setting tx_maxrate (Xin Long) [1979820]
+- driver core: set up ownership of class devices in sysfs (Xin Long) [1979820]
+- kobject: kset_create_and_add() - fetch ownership info from parent (Xin Long) [1979820]
+- sysfs, kobject: allow creating kobject belonging to arbitrary users (Xin Long) [1979820]
+- NFSv42: Fix pagecache invalidation after COPY/CLONE (Benjamin Coddington) [2017166]
+- SUNRPC: fix sign error causing rpcsec_gss drops (Benjamin Coddington) [2017166]
+- nfsd4: Handle the NFSv4 READDIR 'dircount' hint being zero (Benjamin Coddington) [2017166]
+- nfsd: fix error handling of register_pernet_subsys() in init_nfsd() (Benjamin Coddington) [2017166]
+- SUNRPC: Simplify socket shutdown when not reusing TCP ports (Benjamin Coddington) [2017166]
+- nfsd4: Fix forced-expiry locking (Benjamin Coddington) [2017166]
+- SUNRPC/xprtrdma: Fix reconnection locking (Benjamin Coddington) [2017166]
+- NFSv4/pnfs: The layout barrier indicate a minimal value for the seqid (Benjamin Coddington) [2017166]
+- NFSv4/pNFS: Always allow update of a zero valued layout barrier (Benjamin Coddington) [2017166]
+- NFSv4/pNFS: Fix a layoutget livelock loop (Benjamin Coddington) [2017166]
+- xprtrdma: Put rpcrdma_reps before waking the tear-down completion (Benjamin Coddington) [2017166]
+- NFSD: Fix TP_printk() format specifier in nfsd_clid_class (Benjamin Coddington) [2017166]
+- NFSv42: Copy offload should update the file size when appropriate (Benjamin Coddington) [2017166]
+- SUNRPC: Fix XPT_BUSY flag leakage in svc_handle_xprt()... (Benjamin Coddington) [2017166]
+- NFSv4/pNFS: Return an error if _nfs4_pnfs_v3_ds_connect can't load NFSv3 (Benjamin Coddington) [2017166]
+- NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times (Benjamin Coddington) [2017166]
+- NFSv4/pnfs: Clean up layout get on open (Benjamin Coddington) [2017166]
+- NFSv4/pnfs: Fix layoutget behaviour after invalidation (Benjamin Coddington) [2017166]
+- NFSv4/pnfs: Fix the layout barrier update (Benjamin Coddington) [2017166]
+- NFSD: Prevent a possible oops in the nfs_dirent() tracepoint (Benjamin Coddington) [2017166]
+- nfsd: remove redundant assignment to pointer 'this' (Benjamin Coddington) [2017166]
+- nfs_common: fix doc warning (Benjamin Coddington) [2017166]
+- nfsd4: Expose the callback address and state of each NFS4 client (Benjamin Coddington) [2017166]
+- xprtrdma: Fix spelling mistakes (Benjamin Coddington) [2017166]
+- NFS: nfs_find_open_context() may only select open files (Benjamin Coddington) [2017166]
+- SUNRPC: Should wake up the privileged task firstly. (Benjamin Coddington) [2017166]
+- SUNRPC: Fix the batch tasks count wraparound. (Benjamin Coddington) [2017166]
+- nfs: update has_sec_mnt_opts after cloning lsm options from parent (Benjamin Coddington) [2017166]
+- nfs: fix acl memory leak of posix_acl_create() (Benjamin Coddington) [2017166]
+- rpc: remove redundant initialization of variable status (Benjamin Coddington) [2017166]
+- NFSv4: Initialise connection to the server in nfs4_alloc_client() (Benjamin Coddington) [2017166]
+- nfsd: Prevent truncation of an unlinked inode from blocking access to its directory (Benjamin Coddington) [2017166]
+- xprtrdma: Fix a maybe-uninitialized compiler warning (Benjamin Coddington) [2017166]
+- NFSv4: Fix second deadlock in nfs4_evict_inode() (Benjamin Coddington) [2017166]
+- NFSv4: Fix deadlock between nfs4_evict_inode() and nfs4_opendata_get_inode() (Benjamin Coddington) [2017166]
+- NFS: FMODE_READ and friends are C macros, not enum types (Benjamin Coddington) [2017166]
+- NFS: Fix a potential NULL dereference in nfs_get_client() (Benjamin Coddington) [2017166]
+- NFS: Fix use-after-free in nfs4_init_client() (Benjamin Coddington) [2017166]
+- NFSv4: nfs4_proc_set_acl needs to restore NFS_CAP_UIDGID_NOMAP on error. (Benjamin Coddington) [2017166]
+- nfs: Remove trailing semicolon in macros (Benjamin Coddington) [2017166]
+- NFSv4: Fix v4.0/v4.1 SEEK_DATA return -ENOTSUPP when set NFS_V4_2 config (Benjamin Coddington) [2017166]
+- NFS: Clean up reset of the mirror accounting variables (Benjamin Coddington) [2017166]
+- NFS: Don't corrupt the value of pg_bytes_written in nfs_do_recoalesce() (Benjamin Coddington) [2017166]
+- NFS: Fix an Oopsable condition in __nfs_pageio_add_request() (Benjamin Coddington) [2017166]
+- SUNRPC: More fixes for backlog congestion (Benjamin Coddington) [2017166]
+- SUNRPC: Fix Oops in xs_tcp_send_request() when transport is disconnected (Benjamin Coddington) [2017166]
+- NFSv4: Fix a NULL pointer dereference in pnfs_mark_matching_lsegs_return() (Benjamin Coddington) [2017166]
+- SUNRPC in case of backlog, hand free slots directly to waiting task (Benjamin Coddington) [2017166]
+- pNFS/NFSv4: Remove redundant initialization of 'rd_size' (Benjamin Coddington) [2017166]
+- NFS: fix an incorrect limit in filelayout_decode_layout() (Benjamin Coddington) [2017166]
+- fs/nfs: Use fatal_signal_pending instead of signal_pending (Benjamin Coddington) [2017166]
+- xprtrdma: Fix a NULL dereference in frwr_unmap_sync() (Benjamin Coddington) [2017166]
+- sunrpc: Fix misplaced barrier in call_decode (Benjamin Coddington) [2017166]
+- SUNRPC: set rq_page_end differently (Benjamin Coddington) [2017166]
+- xprtrdma: Move fr_mr field to struct rpcrdma_mr (Benjamin Coddington) [2017166]
+- xprtrdma: Move the Work Request union to struct rpcrdma_mr (Benjamin Coddington) [2017166]
+- xprtrdma: Move fr_linv_done field to struct rpcrdma_mr (Benjamin Coddington) [2017166]
+- xprtrdma: Move cqe to struct rpcrdma_mr (Benjamin Coddington) [2017166]
+- xprtrdma: Move fr_cid to struct rpcrdma_mr (Benjamin Coddington) [2017166]
+- xprtrdma: Remove the RPC/RDMA QP event handler (Benjamin Coddington) [2017166]
+- xprtrdma: Add tracepoints showing FastReg WRs and remote invalidation (Benjamin Coddington) [2017166]
+- xprtrdma: Avoid Send Queue wrapping (Benjamin Coddington) [2017166]
+- xprtrdma: Do not wake RPC consumer on a failed LocalInv (Benjamin Coddington) [2017166]
+- xprtrdma: Do not recycle MR after FastReg/LocalInv flushes (Benjamin Coddington) [2017166]
+- xprtrdma: Clarify use of barrier in frwr_wc_localinv_done() (Benjamin Coddington) [2017166]
+- xprtrdma: Rename frwr_release_mr() (Benjamin Coddington) [2017166]
+- xprtrdma: rpcrdma_mr_pop() already does list_del_init() (Benjamin Coddington) [2017166]
+- xprtrdma: Delete rpcrdma_recv_buffer_put() (Benjamin Coddington) [2017166]
+- xprtrdma: Fix cwnd update ordering (Benjamin Coddington) [2017166]
+- xprtrdma: Improve locking around rpcrdma_rep creation (Benjamin Coddington) [2017166]
+- xprtrdma: Improve commentary around rpcrdma_reps_unmap() (Benjamin Coddington) [2017166]
+- xprtrdma: Improve locking around rpcrdma_rep destruction (Benjamin Coddington) [2017166]
+- xprtrdma: Put flushed Receives on free list instead of destroying them (Benjamin Coddington) [2017166]
+- xprtrdma: Do not refresh Receive Queue while it is draining (Benjamin Coddington) [2017166]
+- xprtrdma: Avoid Receive Queue wrapping (Benjamin Coddington) [2017166]
+- SUNRPC: fix ternary sign expansion bug in tracing (Benjamin Coddington) [2017166]
+- nfsd: Fix fall-through warnings for Clang (Benjamin Coddington) [2017166]
+- nfsd: reshuffle some code (Benjamin Coddington) [2017166]
+- nfsd: track filehandle aliasing in nfs4_files (Benjamin Coddington) [2017166]
+- nfsd: hash nfs4_files by inode number (Benjamin Coddington) [2017166]
+- NFSv4.1: Simplify layout return in pnfs_layout_process() (Benjamin Coddington) [2017166]
+- NFSv4: Don't discard segments marked for return in _pnfs_return_layout() (Benjamin Coddington) [2017166]
+- nfsd: ensure new clients break delegations (Benjamin Coddington) [2017166]
+- NFS: Don't discard pNFS layout segments that are marked for return (Benjamin Coddington) [2017166]
+- NFSv4.x: Don't return NFS4ERR_NOMATCHING_LAYOUT if we're unmounting (Benjamin Coddington) [2017166]
+- nfsd: remove unused function (Benjamin Coddington) [2017166]
+- svcrdma: Pass a useful error code to the send_err tracepoint (Benjamin Coddington) [2017166]
+- svcrdma: Rename goto labels in svc_rdma_sendto() (Benjamin Coddington) [2017166]
+- svcrdma: Don't leak send_ctxt on Send errors (Benjamin Coddington) [2017166]
+- SUNRPC: Remove trace_xprt_transmit_queued (Benjamin Coddington) [2017166]
+- SUNRPC: Add tracepoint that fires when an RPC is retransmitted (Benjamin Coddington) [2017166]
+- SUNRPC: Move fault injection call sites (Benjamin Coddington) [2017166]
+- pNFS/flexfiles: fix incorrect size check in decode_nfs_fh() (Benjamin Coddington) [2017166]
+- NFSv4: Catch and trace server filehandle encoding errors (Benjamin Coddington) [2017166]
+- NFSv4: Convert nfs_xdr_status tracepoint to an event class (Benjamin Coddington) [2017166]
+- NFSv4: Add tracing for COMPOUND errors (Benjamin Coddington) [2017166]
+- NFSv4: Don't modify the change attribute cached in the inode (Benjamin Coddington) [2017166]
+- NFSv4: Fix value of decode_fsinfo_maxsz (Benjamin Coddington) [2017166]
+- NFS: Fix up revalidation of space used (Benjamin Coddington) [2017166]
+- NFS: NFS_INO_REVAL_PAGECACHE should mark the change attribute invalid (Benjamin Coddington) [2017166]
+- NFS: Mask out unsupported attributes in nfs_getattr() (Benjamin Coddington) [2017166]
+- NFS: Fix up inode cache tracing (Benjamin Coddington) [2017166]
+- NFS: Deal correctly with attribute generation counter overflow (Benjamin Coddington) [2017166]
+- NFSv4.2: Always flush out writes in nfs42_proc_fallocate() (Benjamin Coddington) [2017166]
+- NFS: Fix attribute bitmask in _nfs42_proc_fallocate() (Benjamin Coddington) [2017166]
+- NFS: nfs4_bitmask_adjust() must not change the server global bitmasks (Benjamin Coddington) [2017166]
+- NFSD: Use DEFINE_SPINLOCK() for spinlock (Benjamin Coddington) [2017166]
+- sunrpc: Remove unused function ip_map_lookup (Benjamin Coddington) [2017166]
+- NFS: Fix fscache invalidation in nfs_set_cache_invalid() (Benjamin Coddington) [2017166]
+- SUNRPC: Ensure the transport backchannel association (Benjamin Coddington) [2017166]
+- nfs: hornor timeo and retrans option when mounting NFSv3 (Benjamin Coddington) [2017166]
+- sunrpc: honor rpc_task's timeout value in rpcb_create() (Benjamin Coddington) [2017166]
+- nfs: Fix a typo in the file nfs42xattr.c (Benjamin Coddington) [2017166]
+- NFS: fs_context: validate UDP retrans to prevent shift out-of-bounds (Benjamin Coddington) [2017166]
+- NFS: Fix up incorrect documentation (Benjamin Coddington) [2017166]
+- NFSv4: Simplify nfs4_retry_setlk() (Benjamin Coddington) [2017166]
+- UAPI: nfsfh.h: Replace one-element array with flexible-array member (Benjamin Coddington) [2017166]
+- svcrdma: Clean up dto_q critical section in svc_rdma_recvfrom() (Benjamin Coddington) [2017166]
+- svcrdma: Remove svc_rdma_recv_ctxt::rc_pages and ::rc_arg (Benjamin Coddington) [2017166]
+- svcrdma: Remove sc_read_complete_q (Benjamin Coddington) [2017166]
+- svcrdma: Single-stage RDMA Read (Benjamin Coddington) [2017166]
+- SUNRPC: Move svc_xprt_received() call sites (Benjamin Coddington) [2017166]
+- SUNRPC: Export svc_xprt_received() (Benjamin Coddington) [2017166]
+- svcrdma: Retain the page backing rq_res.head[0].iov_base (Benjamin Coddington) [2017166]
+- svcrdma: Remove unused sc_pages field (Benjamin Coddington) [2017166]
+- svcrdma: Normalize Send page handling (Benjamin Coddington) [2017166]
+- svcrdma: Add a "deferred close" helper (Benjamin Coddington) [2017166]
+- svcrdma: Maintain a Receive water mark (Benjamin Coddington) [2017166]
+- svcrdma: Use svc_rdma_refresh_recvs() in wc_receive (Benjamin Coddington) [2017166]
+- svcrdma: Add a batch Receive posting mechanism (Benjamin Coddington) [2017166]
+- svcrdma: Remove stale comment for svc_rdma_wc_receive() (Benjamin Coddington) [2017166]
+- svcrdma: Provide an explanatory comment in CMA event handler (Benjamin Coddington) [2017166]
+- svcrdma: RPCDBG_FACILITY is no longer used (Benjamin Coddington) [2017166]
+- nfsd: don't ignore high bits of copy count (Benjamin Coddington) [2017166]
+- nfsd: COPY with length 0 should copy to end of file (Benjamin Coddington) [2017166]
+- nfsd: Fix typo "accesible" (Benjamin Coddington) [2017166]
+- nfsd: Ensure knfsd shuts down when the "nfsd" pseudofs is unmounted (Benjamin Coddington) [2017166]
+- nfsd: Log client tracking type log message as info instead of warning (Benjamin Coddington) [2017166]
+- nfsd: helper for laundromat expiry calculations (Benjamin Coddington) [2017166]
+- NFSD: Clean up NFSDDBG_FACILITY macro (Benjamin Coddington) [2017166]
+- NFSD: Add a tracepoint to record directory entry encoding (Benjamin Coddington) [2017166]
+- rpc: fix NULL dereference on kmalloc failure (Benjamin Coddington) [2017166]
+- sunrpc: fix refcount leak for rpc auth modules (Benjamin Coddington) [2017166]
+- NFSD: Repair misuse of sv_lock in 5.10.16-rt30. (Benjamin Coddington) [2017166]
+- svcrdma: disable timeouts on rdma backchannel (Benjamin Coddington) [2017166]
+- svcrdma: Hold private mutex while invoking rdma_accept() (Benjamin Coddington) [2017166]
+- NFS: Don't set NFS_INO_INVALID_XATTR if there is no xattr cache (Benjamin Coddington) [2017166]
+- NFS: Always clear an invalid mapping when attempting a buffered write (Benjamin Coddington) [2017166]
+- NFS: Optimise sparse writes past the end of file (Benjamin Coddington) [2017166]
+- NFS: Fix documenting comment for nfs_revalidate_file_size() (Benjamin Coddington) [2017166]
+- rpcrdma: Fix comments about reverse-direction operation (Benjamin Coddington) [2017166]
+- xprtrdma: Refactor invocations of offset_in_page() (Benjamin Coddington) [2017166]
+- xprtrdma: Simplify rpcrdma_convert_kvec() and frwr_map() (Benjamin Coddington) [2017166]
+- xprtrdma: Remove FMR support in rpcrdma_convert_iovs() (Benjamin Coddington) [2017166]
+- NFS: Fix fscache read from NFS after cache error (Benjamin Coddington) [2017166]
+- NFS: Ensure nfs_readpage returns promptly when internal error occurs (Benjamin Coddington) [2017166]
+- NFS: Remove unnecessary inode parameter from nfs_pageio_complete_read() (Benjamin Coddington) [2017166]
+- NFS: Add nfs_pageio_complete_read() and remove nfs_readpage_async() (Benjamin Coddington) [2017166]
+- NFS: Call readpage_async_filler() from nfs_readpage_async() (Benjamin Coddington) [2017166]
+- NFS: Refactor nfs_readpage() and nfs_readpage_async() to use nfs_readdesc (Benjamin Coddington) [2017166]
+- NFS: In nfs_readpage() only increment NFSIOS_READPAGES when read succeeds (Benjamin Coddington) [2017166]
+- NFS: Clean up nfs_readpage() and nfs_readpages() (Benjamin Coddington) [2017166]
+- nfs: Fix fall-through warnings for Clang (Benjamin Coddington) [2017166]
+- SUNRPC: Fix fall-through warnings for Clang (Benjamin Coddington) [2017166]
+- net: sunrpc: xprtsock.c: Corrected few spellings ,in comments (Benjamin Coddington) [2017166]
+- SUNRPC: correct error code comment in xs_tcp_setup_socket() (Benjamin Coddington) [2017166]
+- nfsd: cstate->session->se_client -> cstate->clp (Benjamin Coddington) [2017166]
+- nfsd: simplify nfsd4_check_open_reclaim (Benjamin Coddington) [2017166]
+- nfsd: remove unused set_client argument (Benjamin Coddington) [2017166]
+- nfs/blocklayout: remove cruft in bl_alloc_init_bio (Benjamin Coddington) [2017166]
+- nfsd: refactor set_client (Benjamin Coddington) [2017166]
+- nfsd: rename lookup_clientid->set_client (Benjamin Coddington) [2017166]
+- nfsd: simplify nfsd_renew (Benjamin Coddington) [2017166]
+- nfsd: simplify process_lock (Benjamin Coddington) [2017166]
+- nfsd4: simplify process_lookup1 (Benjamin Coddington) [2017166]
+- SUNRPC: Correct a comment (Benjamin Coddington) [2017166]
+- svcrdma: DMA-sync the receive buffer in svc_rdma_recvfrom() (Benjamin Coddington) [2017166]
+- svcrdma: Restore read and write stats (Benjamin Coddington) [2017166]
+- svcrdma: Convert rdma_stat_sq_starve to a per-CPU counter (Benjamin Coddington) [2017166]
+- svcrdma: Convert rdma_stat_recv to a per-CPU counter (Benjamin Coddington) [2017166]
+- svcrdma: Refactor svc_rdma_init() and svc_rdma_clean_up() (Benjamin Coddington) [2017166]
+- nfsd: remove fault injection code (Benjamin Coddington) [2017166]
+- SUNRPC: Fix a NULL pointer deref in trace_svc_stats_latency() (Benjamin Coddington) [2017166]
+- SUNRPC: Display RPC procedure names instead of proc numbers (Benjamin Coddington) [2017166]
+- SUNRPC: Make trace_svc_process() display the RPC procedure symbolically (Benjamin Coddington) [2017166]
+- EDAC/mce_amd: Do not load edac_mce_amd module on guests (Aristeu Rozanski) [2000776]
+- tracing: Map all PIDs to command lines (Jerome Marchand) [1913211]
+- mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and zs_unregister_migration() (Rafael Aquini) [2016441]
+- mm: mark the OOM reaper thread as freezable (Rafael Aquini) [2016441]
+- mm/page_isolation: guard against possible putback unisolated page (Rafael Aquini) [2016441]
+- mm/page_isolation: fix potential missing call to unset_migratetype_isolate() (Rafael Aquini) [2016441]
+- mm/page_alloc: use accumulated load when building node fallback list (Rafael Aquini) [2016441]
+- mm/vmalloc: do not adjust the search size for alignment overhead (Rafael Aquini) [2016441]
+- mm/vmalloc: make sure to dump unpurged areas in /proc/vmallocinfo (Rafael Aquini) [2016441]
+- Revert "mm, slub: consider rest of partial list if acquire_slab() fails" (Rafael Aquini) [2016441]
+- mm, slub: consider rest of partial list if acquire_slab() fails (Rafael Aquini) [2016441]
+- mm, slub: fix incorrect memcg slab count for bulk free (Rafael Aquini) [2016441]
+- mm, slub: fix mismatch between reconstructed freelist depth and cnt (Rafael Aquini) [2016441]
+- slub: add back check for free nonslab objects (Rafael Aquini) [2016441]
+- slub: fix kmalloc_pagealloc_invalid_free unit test (Rafael Aquini) [2016441]
+- slub: fix unreclaimable slab stat for bulk free (Rafael Aquini) [2016441]
+- mm/slub: add taint after the errors are printed (Rafael Aquini) [2016441]
+- mm/slab.c: remove useless lines in enable_cpucache() (Rafael Aquini) [2016441]
+- kasan: fix tag for large allocations when using CONFIG_SLAB (Rafael Aquini) [2016441]
+- mm/hmm: bypass devmap pte when all pfn requested flags are fulfilled (Rafael Aquini) [2016441]
+- mm: memcontrol: set the correct memcg swappiness restriction (Rafael Aquini) [2016441]
+- memcg: replace in_interrupt() by !in_task() in active_memcg() (Rafael Aquini) [2016441]
+- huge tmpfs: fix split_huge_page() after FALLOC_FL_KEEP_SIZE (Rafael Aquini) [2016441]
+- huge tmpfs: fix fallocate(vanilla) advance over huge pages (Rafael Aquini) [2016441]
+- huge tmpfs: revert shmem's use of transhuge_vma_enabled() (Rafael Aquini) [2016441]
+- mm/huge_memory.c: remove unnecessary tlb_remove_page_size() for huge zero pmd (Rafael Aquini) [2016441]
+- mm/huge_memory.c: add missing read-only THP checking in transparent_hugepage_enabled() (Rafael Aquini) [2016441]
+- mm/huge_memory.c: use page->deferred_list (Rafael Aquini) [2016441]
+- mm/huge_memory.c: remove dedicated macro HPAGE_CACHE_INDEX_MASK (Rafael Aquini) [2016441]
+- mm/thp: decrease nr_thps in file's mapping on THP split (Rafael Aquini) [2016441]
+- mm/thp: fix page_address_in_vma() on file THP tails (Rafael Aquini) [2016441]
+- mm/thp: try_to_unmap() use TTU_SYNC for safe splitting (Rafael Aquini) [2016441]
+- mm/thp: make is_huge_zero_pmd() safe and quicker (Rafael Aquini) [2016441]
+- mm/thp: fix __split_huge_pmd_locked() on shmem migration entry (Rafael Aquini) [2016441]
+- mm/truncate: fix truncation for pages of arbitrary size (Rafael Aquini) [2016441]
+- mm/rmap: fix potential pte_unmap on an not mapped pte (Rafael Aquini) [2016441]
+- mm/rmap: correct obsolete comment of page_get_anon_vma() (Rafael Aquini) [2016441]
+- mm/rmap: use page_not_mapped in try_to_unmap() (Rafael Aquini) [2016441]
+- mm/rmap: fix obsolete comment in __page_check_anon_rmap() (Rafael Aquini) [2016441]
+- mm/rmap: remove unneeded semicolon in page_not_mapped() (Rafael Aquini) [2016441]
+- mm/rmap: correct some obsolete comments of anon_vma (Rafael Aquini) [2016441]
+- mm/pgtable-generic.c: optimize the VM_BUG_ON condition in pmdp_huge_clear_flush() (Rafael Aquini) [2016441]
+- mm/pgtable-generic.c: simplify the VM_BUG_ON condition in pmdp_huge_clear_flush() (Rafael Aquini) [2016441]
+- mm: prevent a warning when casting void* -> enum (Rafael Aquini) [2016441]
+- mm/hugeltb: simplify the return code of __vma_reservation_common() (Rafael Aquini) [2016441]
+- mm,thp,shmem: make khugepaged obey tmpfs mount flags (Rafael Aquini) [2016441]
+- mm/vma: make is_vma_temporary_stack() available for general use (Rafael Aquini) [2016441]
+- mm/vma: make vma_is_foreign() available for general use (Rafael Aquini) [2016441]
+- hugetlb: fix copy_huge_page_from_user contig page struct assumption (Rafael Aquini) [2016441]
+- mm/sparsemem: pfn_to_page is not valid yet on SPARSEMEM (Rafael Aquini) [2016441]
+- mm/sparse.c: use __nr_to_section(section_nr) to get mem_section (Rafael Aquini) [2016441]
+- mm/huge_memory.c: thp: fix conflict of above-47bit hint address and PMD alignment (Rafael Aquini) [2016441]
+- mm/huge_memory.c: make __thp_get_unmapped_area static (Rafael Aquini) [2016441]
+- mm/mempolicy.c: fix checking unmapped holes for mbind (Rafael Aquini) [2016441]
+- s390/mm: fix VMA and page table handling code in storage key handling functions (Rafael Aquini) [2016441]
+- s390/mm: validate VMA in PGSTE manipulation functions (Rafael Aquini) [2016441]
+- s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() (Rafael Aquini) [2016441]
+- s390/gmap: validate VMA in __gmap_zap() (Rafael Aquini) [2016441]
+- s390: mm: Fix secure storage access exception handling (Rafael Aquini) [2016441]
+- powerpc/numa: Consider the max NUMA node for migratable LPAR (Rafael Aquini) [2016441]
+- powerpc/64s: Fix pte update for kernel memory on radix (Rafael Aquini) [2016441]
+- powerpc/mm: sanity_check_fault() should work for all, not only BOOK3S (Rafael Aquini) [2016441]
+- powerpc/book3s64/pkeys: Use PVR check instead of cpu feature (Rafael Aquini) [2016441]
+- powerpc/mm: Fix reporting of kernel execute faults on the 8xx (Rafael Aquini) [2016441]
+- powerpc/mm/hash: Handle user access of kernel address gracefully (Rafael Aquini) [2016441]
+- powerpc/mm: Add missing tracepoint for tlbie (Rafael Aquini) [2016441]
+- arm64: hugetlb: avoid potential NULL dereference (Rafael Aquini) [2016441]
+- arm64/numa: Report correct memblock range for the dummy node (Rafael Aquini) [2016441]
+- x86/pat: Pass valid address to sanitize_phys() (Rafael Aquini) [2016441]
+- x86/mm: Check for pfn instead of page in vmalloc_sync_one() (Rafael Aquini) [2016441]
+- x86/mm/tlb: Revert "x86/mm: Align TLB invalidation info" (Rafael Aquini) [2016441]
+- x86/mm: Report which part of kernel image is freed (Rafael Aquini) [2016441]
+- mm: make free_reserved_area() return "const char *" (Rafael Aquini) [2016441]
+- x86/mm/init: Remove freed kernel image areas from alias mapping (Rafael Aquini) [2016441]
+- x86/mm/init: Add helper for freeing kernel image pages (Rafael Aquini) [2016441]
+- x86/mm/init: Pass unconverted symbol addresses to free_init_pages() (Rafael Aquini) [2016441]
+- x86/mm: Add TLB purge to free pmd/pte page interfaces (Rafael Aquini) [2016441]
+- mm/mmu_notifier: Make drm-backport/linux/mmu_notifier.h use RH_MMU_NOTIFIER_V2 (Waiman Long) [1946746]
+- mm/migrate: fix migrate_pgmap_owner w/o CONFIG_MMU_NOTIFIER (Waiman Long) [1946746]
+- mm/notifier: add migration invalidation type (Waiman Long) [1946746]
+- mm/migrate: add a flags parameter to migrate_vma (Waiman Long) [1946746]
+- mm/mmu_notifiers: ensure range_end() is paired with range_start() (Waiman Long) [1946746]
+- mm: track mmu notifiers in fs_reclaim_acquire/release (Waiman Long) [1946746]
+- mm: mmu_notifier: fix and extend kerneldoc (Waiman Long) [1946746]
+- mm/mmu_notifier: silence PROVE_RCU_LIST warnings (Waiman Long) [1946746]
+- mm/mmu_notifiers: Use 'interval_sub' as the variable for mmu_interval_notifier (Waiman Long) [1946746]
+- mm/mmu_notifiers: Use 'subscription' as the variable name for mmu_notifier (Waiman Long) [1946746]
+- mm/mmu_notifier: Rename struct mmu_notifier_mm to mmu_notifier_subscriptions (Waiman Long) [1946746]
+- mm, notifier: Catch sleeping/blocking for !blockable (Waiman Long) [1946746]
+- mm/mmu_notifiers: use the right return code for WARN_ON (Waiman Long) [1946746]
+- mm/mmu_notifiers: check if mmu notifier callbacks are allowed to fail (Waiman Long) [1946746]
+- mm/mmu_notifier: mmu_notifier_range_update_to_read_only() helper (Waiman Long) [1946746]
+- mm/mmu_notifier: pass down vma and reasons why mmu notifier is happening (Waiman Long) [1946746]
+- mm/mmu_notifier: use structure for invalidate_range_start/end callback (Waiman Long) [1946746]
+- Revert "mm, mmu_notifier: annotate mmu notifiers with blockable invalidate callbacks" (Waiman Long) [1946746]
+- mm, mmu_notifier: be explicit about range invalition non-blocking mode (Waiman Long) [1946746]
+- mm/oom_kill.c: clean up oom_reap_task_mm() (Waiman Long) [1946746]
+- mm, oom: distinguish blockable mode for mmu notifiers (Waiman Long) [1946746]
+- mm/mmu_notifier: helper to test if a range invalidation is blockable (Waiman Long) [1946746]
+- mm/mmu_notifier: Relocate mmu_notifier_put() (Waiman Long) [1946746]
+- mm/mmu_notifier: Add mmu_notifier versioning mechanism (Waiman Long) [1946746]
+- af_unix: Return errno instead of NULL in unix_create1(). (Balazs Nemeth) [2026690]
+- netfilter: nf_tables: fix audit memory leak in nf_tables_commit (Phil Sutter) [2028926]
+- ethtool: Validate module EEPROM offset as part of policy (Ivan Vecera) [2019090]
+- ethtool: Validate module EEPROM length as part of policy (Ivan Vecera) [2019090]
+- ethtool: Use kernel data types for internal EEPROM struct (Ivan Vecera) [2019090]
+- ethtool: Document behavior when module EEPROM bank attribute is omitted (Ivan Vecera) [2019090]
+- ethtool: Decrease size of module EEPROM get policy array (Ivan Vecera) [2019090]
+- ethtool: Document correct attribute type (Ivan Vecera) [2019090]
+- ethtool: Use correct command name in title (Ivan Vecera) [2019090]
+- net: fix mistake path for netdev_features_strings (Ivan Vecera) [2019089 2019090 2019092]
+- ethtool: add a stricter length check (Ivan Vecera) [2019089 2019090 2019092]
+- ethtool: Fix a typo (Ivan Vecera) [2019089 2019090 2019092]
+- net: ethtool: clear heap allocations for ethtool function (Ivan Vecera) [2019090]
+- ethtool: Fix NULL pointer dereference during module EEPROM dump (Ivan Vecera) [2019090]
+- ethtool: stats: Fix a copy-paste error (Ivan Vecera) [2019092]
+- ethtool: add missing EEPROM to list of messages (Ivan Vecera) [2019090]
+- ethtool: stats: clarify the initialization to ETHTOOL_STAT_NOT_SET (Ivan Vecera) [2019092]
+- ethtool: ioctl: Fix out-of-bounds warning in store_link_ksettings_for_user() (Ivan Vecera) [2019092]
+- ethtool: add interface to read RMON stats (Ivan Vecera) [2019092]
+- ethtool: add interface to read standard MAC Ctrl stats (Ivan Vecera) [2019092]
+- ethtool: add interface to read standard MAC stats (Ivan Vecera) [2019092]
+- ethtool: add a new command for reading standard stats (Ivan Vecera) [2019092]
+- docs: ethtool: document standard statistics (Ivan Vecera) [2019092]
+- docs: networking: extend the statistics documentation (Ivan Vecera) [2019092]
+- ethtool: add FEC statistics (Ivan Vecera) [2019089]
+- docs: net: statistics.rst: remove a duplicated kernel-doc (Ivan Vecera) [2019089]
+- ethtool: fec_prepare_data() - jump to error handling (Ivan Vecera) [2019089]
+- ethtool: move ethtool_stats_init (Ivan Vecera) [2019089]
+- ethtool: wire in generic SFP module access (Ivan Vecera) [2019090]
+- phy: sfp: add netlink SFP support to generic SFP code (Ivan Vecera) [2019090]
+- ethtool: Add fallback to get_module_eeprom from netlink command (Ivan Vecera) [2019090]
+- net: ethtool: Export helpers for getting EEPROM info (Ivan Vecera) [2019090]
+- ethtool: Allow network drivers to dump arbitrary EEPROM data (Ivan Vecera) [2019090]
+- docs: ethtool: correct quotes (Ivan Vecera) [2019090]
+- selftests: ethtool: add a netdevsim FEC test (Ivan Vecera) [2019089]
+- netdevsim: add FEC settings support (Ivan Vecera) [2019089]
+- ethtool: support FEC settings over netlink (Ivan Vecera) [2019089]
+- ethtool: document the enum values not defines (Ivan Vecera) [2019089]
+- ethtool: fec: fix FEC_NONE check (Ivan Vecera) [2019089]
+- ethtool: fec: add note about reuse of reserved (Ivan Vecera) [2019089]
+- ethtool: clarify the ethtool FEC interface (Ivan Vecera) [2019089]
+- ethtool: fec: sanitize ethtool_fecparam->fec (Ivan Vecera) [2019089]
+- ethtool: fec: sanitize ethtool_fecparam->active_fec (Ivan Vecera) [2019089]
+- ethtool: fec: sanitize ethtool_fecparam->reserved (Ivan Vecera) [2019089]
+- ethtool: fec: remove long structure description (Ivan Vecera) [2019089]
+- ethtool: fec: fix typo in kdoc (Ivan Vecera) [2019089]
+- net: Remove redundant if statements (Petr Oros) [2026472]
+- netdevice: add the case if dev is NULL (Petr Oros) [2026472]
+- nvmet: use IOCB_NOWAIT only if the filesystem supports it (Chris Leech) [2015563]
+- nvmet-tcp: fix incomplete data digest send (Chris Leech) [2015563]
+- nvmet-tcp: fix memory leak when performing a controller reset (Chris Leech) [2015563]
+- nvmet-tcp: add an helper to free the cmd buffers (Chris Leech) [2015563]
+- nvmet-tcp: fix a race condition between release_queue and io_work (Chris Leech) [2015563]
+- nvmet-tcp: fix use-after-free when a port is removed (Chris Leech) [2015563]
+- nvmet-rdma: fix use-after-free when a port is removed (Chris Leech) [2015563]
+- nvmet: fix use-after-free when a port is removed (Chris Leech) [2015563]
+- nvmet-tcp: fix header digest verification (Chris Leech) [2015563]
+- nvmet-tcp: fix data digest pointer calculation (Chris Leech) [2015563]
+- nvmet-tcp: fix a memory leak when releasing a queue (Chris Leech) [2015563]
+- nvmet: fix a width vs precision bug in nvmet_subsys_attr_serial_show() (Chris Leech) [2015563]
+- nvmet: fixup buffer overrun in nvmet_subsys_attr_serial() (Chris Leech) [2015563]
+- nvmet: return bool from nvmet_passthru_ctrl and nvmet_is_passthru_req (Chris Leech) [2015563]
+- nvmet: looks at the passthrough controller when initializing CAP (Chris Leech) [2015563]
+- nvmet: check that host sqsize does not exceed ctrl MQES (Chris Leech) [2015563]
+- nvmet: avoid duplicate qid in connect cmd (Chris Leech) [2015563]
+- nvmet: pass back cntlid on successful completion (Chris Leech) [2015563]
+- nvmet: remove redundant assignments of variable status (Chris Leech) [2015563]
+- nvme-fabrics: ignore invalid fast_io_fail_tmo values (Chris Leech) [2015563]
+- nvme-tcp: fix memory leak when freeing a queue (Chris Leech) [2015563]
+- nvme-tcp: validate R2T PDU in nvme_tcp_handle_r2t() (Chris Leech) [2015563]
+- nvme-tcp: fix data digest pointer calculation (Chris Leech) [2015563]
+- nvme-tcp: fix possible req->offset corruption (Chris Leech) [2015563]
+- nvme-tcp: fix H2CData PDU send accounting (again) (Chris Leech) [2015563]
+- nvme: keep ctrl->namespaces ordered (Chris Leech) [2015563]
+- nvme-tcp: fix incorrect h2cdata pdu offset accounting (Chris Leech) [2015563]
+- nvme-tcp: fix io_work priority inversion (Chris Leech) [2015563]
+- nvme-multipath: fix ANA state updates when a namespace is not present (Chris Leech) [2015563]
+- nvme: avoid race in shutdown namespace removal (Chris Leech) [2015563]
+- nvme: update keep alive interval when kato is modified (Chris Leech) [2015563]
+- nvme: use return value from blk_execute_rq() (Chris Leech) [2015563]
+- nvme-tcp: Do not reset transport on data digest errors (Chris Leech) [2015563]
+- nvme-rdma: don't update queue count when failing to set io queues (Chris Leech) [2015563]
+- nvme-tcp: don't update queue count when failing to set io queues (Chris Leech) [2015563]
+- nvme-tcp: pair send_mutex init with destroy (Chris Leech) [2015563]
+- nvme-tcp: don't check blk_mq_tag_to_rq when receiving pdu data (Chris Leech) [2015563]
+- RDMA/rxe: Bump up default maximum values used via uverbs (Kamal Heib) [2029675]
+
+* Mon Dec 13 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-355.el8]
+- scsi: qedi: Fix error codes in qedi_alloc_global_queues() (Nilesh Javali) [1983905]
+- scsi: qedi: Add support for fastpath doorbell recovery (Nilesh Javali) [1983905]
+- scsi: qedi: Use DEVICE_ATTR_RO() macro (Nilesh Javali) [1983905]
+- scsi: qedi: Fix host removal with running sessions (Nilesh Javali) [1983905]
+- scsi: qedi: Wake up if cmd_cleanup_req is set (Nilesh Javali) [1983905]
+- scsi: qedi: Complete TMF works before disconnect (Nilesh Javali) [1983905]
+- scsi: qedi: Pass send_iscsi_tmf task to abort (Nilesh Javali) [1983905]
+- scsi: qedi: Fix cleanup session block/unblock use (Nilesh Javali) [1983905]
+- scsi: qedi: Fix TMF session block/unblock use (Nilesh Javali) [1983905]
+- scsi: qedi: Use GFP_NOIO for TMF allocation (Nilesh Javali) [1983905]
+- scsi: qedi: Fix TMF tid allocation (Nilesh Javali) [1983905]
+- scsi: qedi: Fix use after free during abort cleanup (Nilesh Javali) [1983905]
+- scsi: qedi: Fix race during abort timeouts (Nilesh Javali) [1983905]
+- scsi: qedi: Fix null ref during abort handling (Nilesh Javali) [1983905]
+- vrf: Fix fast path output packet handling with async Netfilter rules (Antoine Tenart) [2019333]
+- ipv6: do not drop vrf udp multicast packets (Antoine Tenart) [2019333]
+- ipv6: handling of multicast packets received in VRF (Antoine Tenart) [2019333]
+- vrf: Do not attempt to create IPv6 mcast rule if IPv6 is disabled (Antoine Tenart) [2019333]
+- ipv6: add vrf table handling code for ipv6 mcast (Antoine Tenart) [2019333]
+- ipv4: Allow sending multicast packets on specific i/f using VRF socket (Antoine Tenart) [2019333]
+- xfs: fix I_DONTCACHE (Carlos Maiolino) [2024969]
+- kernfs: don't create a negative dentry if inactive node exists (Ian Kent) [2001597]
+- kernfs: also call kernfs_set_rev() for positive dentry (Ian Kent) [2001597]
+- ixgbevf: use xso.real_dev instead of xso.dev in callback functions of struct xfrmdev_ops (Ken Cox) [1970656]
+- ixgbe: Fix NULL pointer dereference in ixgbe_xdp_setup (Ken Cox) [1970653]
+- ixgbe, xsk: clean up the resources in ixgbe_xsk_pool_enable error path (Ken Cox) [1970653]
+- powerpc/perf: Fix missing is_sier_aviable() during build (Gustavo Walbon) [2011687]
+- perf script: Fix PERF_SAMPLE_WEIGHT_STRUCT support (Michael Petlan) [2026390]
+- RDMA/core: Set sgtable nents when using ib_dma_virt_map_sg() (Kamal Heib) [2025496]
+- RDMA: Use the sg_table directly and remove the opencoded version from umem (Kamal Heib) [2025496]
+- ovs: clear skb->tstamp in forwarding path (Antoine Tenart) [2020160]
+- net: openvswitch: fix kernel-doc warnings in flow.c (Antoine Tenart) [2020160]
+- openvswitch: Optimize operation for key comparison (Antoine Tenart) [2020160]
+- net: openvswitch: Remove unnecessary skb_nfct() (Antoine Tenart) [2020160]
+- openvswitch: meter: fix race when getting now_ms. (Antoine Tenart) [2020160]
+- net: openvswitch: Use 'skb_push_rcsum()' instead of hand coding it (Antoine Tenart) [2020160]
+- openvswitch: Fix a typo (Antoine Tenart) [2020160]
+- openvswitch: Warn over-mtu packets only if iface is UP. (Antoine Tenart) [2020160]
+- openvswitch: meter: remove rate from the bucket size calculation (Antoine Tenart) [2020160]
+- net: openvswitch: use core API to update/provide stats (Antoine Tenart) [2020160]
+- net: openvswitch: use new function dev_fetch_sw_netstats (Antoine Tenart) [2020160]
+- net: openvswitch: use dev_sw_netstats_rx_add() (Antoine Tenart) [2020160]
+- net: openvswitch: Constify static struct genl_small_ops (Antoine Tenart) [2020160]
+- selftests: add a test case for mirred egress to ingress (Xin Long) [1983894]
+- net: sched: act_mirred: drop dst for the direction from egress to ingress (Xin Long) [1983894]
+- usb: hso: fix error handling code of hso_create_net_device (José Ignacio Tornos Martínez) [1986489] {CVE-2021-37159}
+- i40e: Fix freeing of uninitialized misc IRQ vector (Stefan Assmann) [1990683]
+- x86/topology: Make __max_die_per_package available unconditionally (Aristeu Rozanski) [1949284]
+- x86/cpu/amd: Set __max_die_per_package on AMD (Aristeu Rozanski) [1949284]
+- x86/topology: Set cpu_die_id only if DIE_TYPE found (Aristeu Rozanski) [1949284]
+- x86/mce: Drop AMD-specific "DEFERRED" case from Intel severity rule list (Aristeu Rozanski) [1949284]
+- EDAC/mce_amd: Add new error descriptions for existing types (Aristeu Rozanski) [1949284]
+- x86/mce/amd, edac: Remove report_gart_errors (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Make threshold bank setting hotplug robust (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Cleanup threshold device remove path (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Straighten CPU hotplug path (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Sanitize thresholding device creation hotplug path (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Protect a not-fully initialized bank from the thresholding interrupt (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Init thresholding machinery only on relevant vendors (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Do proper cleanup on error paths (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Fix kobject lifetime (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Publish the bank pointer only after setup has succeeded (Aristeu Rozanski) [1949284]
+- x86/mce/amd: Make disable_err_thresholding() static (Aristeu Rozanski) [1949284]
+- x86/MCE: Determine MCA banks' init state properly (Aristeu Rozanski) [1949284]
+- x86/MCE: Group AMD function prototypes in <asm/mce.h> (Aristeu Rozanski) [1949284]
+- x86/MCE: Switch to use the new generic UUID API (Aristeu Rozanski) [1949284]
+- ipv4: fix endianness issue in inet_rtm_getroute_build_skb() (Guillaume Nault) [2022057]
+- net: igmp: fix data-race in igmp_ifc_timer_expire() (Guillaume Nault) [2022057]
+- net/ipv4: swap flow ports when validating source (Guillaume Nault) [2022057]
+- tools headers UAPI: Sync linux/in.h copy with the kernel sources (Guillaume Nault) [2022057]
+- icmp: don't send out ICMP messages with a source address of 0.0.0.0 (Guillaume Nault) [2022057]
+- cipso: correct comments of cipso_v4_cache_invalidate() (Guillaume Nault) [2022057]
+- crypto: ccp - Make use of the helper macro kthread_run() (Vladis Dronov) [1997593]
+- crypto: ccp - Fix whitespace in sev_cmd_buffer_len() (Vladis Dronov) [1997593]
+- crypto: ccp - fix resource leaks in ccp_run_aes_gcm_cmd() (Vladis Dronov) [1997593]
+- crypto: jitter - consider 32 LSB for APT (Herbert Xu) [1994390]
+- rcu: Tighten rcu_advance_cbs_nowake() checks (Daniel Vacek) [2013408]
+- cxgb3: Remove seeprom_write and use VPD API (Myron Stowe) [2019086]
+- cxgb3: Use VPD API in t3_seeprom_wp() (Myron Stowe) [2019086]
+- cxgb3: Remove t3_seeprom_read and use VPD API (Myron Stowe) [2019086]
+- PCI/VPD: Use pci_read_vpd_any() in pci_vpd_size() (Myron Stowe) [2019086]
+- PCI/VPD: Add pci_read/write_vpd_any() (Myron Stowe) [2019086]
+- PCI/VPD: Defer VPD sizing until first access (Myron Stowe) [2019086]
+- PCI/VPD: Use unaligned access helpers (Myron Stowe) [2019086]
+- PCI/VPD: Clean up public VPD defines and inline functions (Myron Stowe) [2019086]
+- cxgb4: Use pci_vpd_find_id_string() to find VPD ID string (Myron Stowe) [2019086]
+- PCI/VPD: Add pci_vpd_find_id_string() (Myron Stowe) [2019086]
+- PCI/VPD: Include post-processing in pci_vpd_find_tag() (Myron Stowe) [2019086]
+- PCI/VPD: Stop exporting pci_vpd_find_info_keyword() (Myron Stowe) [2019086]
+- PCI/VPD: Stop exporting pci_vpd_find_tag() (Myron Stowe) [2019086]
+- scsi: cxlflash: Search VPD with pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- cxgb4: Search VPD with pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- cxgb4: Remove unused vpd_param member ec (Myron Stowe) [2019086]
+- cxgb4: Validate VPD checksum with pci_vpd_check_csum() (Myron Stowe) [2019086]
+- bnxt: Search VPD with pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- bnxt: Read VPD with pci_vpd_alloc() (Myron Stowe) [2019086]
+- bnx2x: Search VPD with pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- bnx2x: Read VPD with pci_vpd_alloc() (Myron Stowe) [2019086]
+- bnx2: Replace open-coded byte swapping with swab32s() (Myron Stowe) [2019086]
+- bnx2: Search VPD with pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- sfc: falcon: Search VPD with pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- sfc: falcon: Read VPD with pci_vpd_alloc() (Myron Stowe) [2019086]
+- tg3: Search VPD with pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- tg3: Validate VPD checksum with pci_vpd_check_csum() (Myron Stowe) [2019086]
+- tg3: Read VPD with pci_vpd_alloc() (Myron Stowe) [2019086]
+- sfc: Search VPD with pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- sfc: Read VPD with pci_vpd_alloc() (Myron Stowe) [2019086]
+- PCI/VPD: Add pci_vpd_check_csum() (Myron Stowe) [2019086]
+- PCI/VPD: Add pci_vpd_find_ro_info_keyword() (Myron Stowe) [2019086]
+- PCI/VPD: Add pci_vpd_alloc() (Myron Stowe) [2019086]
+- PCI/VPD: Treat invalid VPD like missing VPD capability (Myron Stowe) [2019086]
+- PCI/VPD: Determine VPD size in pci_vpd_init() (Myron Stowe) [2019086]
+- PCI/VPD: Embed struct pci_vpd in struct pci_dev (Myron Stowe) [2019086]
+- PCI/VPD: Remove struct pci_vpd.valid member (Myron Stowe) [2019086]
+- PCI/VPD: Remove struct pci_vpd_ops (Myron Stowe) [2019086]
+- PCI/VPD: Reorder pci_read_vpd(), pci_write_vpd() (Myron Stowe) [2019086]
+- PCI/VPD: Remove struct pci_vpd.flag (Myron Stowe) [2019086]
+- PCI/VPD: Make pci_vpd_wait() uninterruptible (Myron Stowe) [2019086]
+- PCI/VPD: Remove pci_vpd_size() old_size argument (Myron Stowe) [2019086]
+- PCI/VPD: Allow access to valid parts of VPD if some is invalid (Myron Stowe) [2019086]
+- PCI/VPD: Don't check Large Resource Item Names for validity (Myron Stowe) [2019086]
+- PCI/VPD: Reject resource tags with invalid size (Myron Stowe) [2019086]
+- PCI/VPD: Treat initial 0xff as missing EEPROM (Myron Stowe) [2019086]
+- PCI/VPD: Check Resource Item Names against those valid for type (Myron Stowe) [2019086]
+- PCI/VPD: Correct diagnostic for VPD read failure (Myron Stowe) [2019086]
+- net: create netdev->dev_addr assignment helpers (Josef Oskera) [2016478]
+- scsi: ibmvfc: Fix up duplicate response detection (Steve Best) [2015732]
+- scsi: core: Avoid leaving shost->last_reset with stale value if EH does not run (Ewan D. Milne) [2011330]
+- libbpf: Add support for new llvm bpf relocations (Yauheni Kaliuta) [1944799]
+- libbpf: Fix memory leak in strset (Yauheni Kaliuta) [1944799]
+- selftests: bpf: skip test_doc_build.sh (Yauheni Kaliuta) [1944799]
+- bpf: Stop caching subprog index in the bpf_pseudo_func insn (Yauheni Kaliuta) [1944799]
+- redhat/configs: enable CONFIG_BPF_UNPRIV_DEFAULT_OFF (Yauheni Kaliuta) [1944799]
+- kbuild: Quote OBJCOPY var to avoid a pahole call break the build (Yauheni Kaliuta) [1944799]
+- bpf: Fix BPF_JIT kconfig symbol dependency (Yauheni Kaliuta) [1944799]
+- bpf: Add kconfig knob for disabling unpriv bpf by default (Yauheni Kaliuta) [1944799]
+- bpf, kconfig: Add consolidated menu entry for bpf with core options (Yauheni Kaliuta) [1944799]
+- tools/resolve_btfids: Fix warnings (Yauheni Kaliuta) [1944799]
+- tools/runqslower: Allow substituting custom vmlinux.h for the build (Yauheni Kaliuta) [1944799]
+- lib/string.c: allow searching for NUL with strnchr (Yauheni Kaliuta) [1944799]
+- rpmspec: update manpages installation after 5.13 rebase (bpf-helpers, bpf-syscall) (Yauheni Kaliuta) [1944799]
+- libbpf: Fix segfault in static linker for objects without BTF (Yauheni Kaliuta) [1944799]
+- bpf: Avoid using ARRAY_SIZE on an uninitialized pointer (Yauheni Kaliuta) [1944799]
+- bpf: Remove superfluous aux sanitation on subprog rejection (Yauheni Kaliuta) [1944799]
+- bpf: Clarify a bpf_bprintf_prepare macro (Yauheni Kaliuta) [1944799]
+- bpf: Fix nested bpf_bprintf_prepare with more per-cpu buffers (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix the snprintf test (Yauheni Kaliuta) [1944799]
+- bpf: Implement formatted output helpers with bstr_printf (Yauheni Kaliuta) [1944799]
+- seq_file: Add a seq_bprintf function (Yauheni Kaliuta) [1944799]
+- bpf: Notify user if we ever hit a bpf_snprintf verifier bug (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add a series of tests for bpf_snprintf (Yauheni Kaliuta) [1944799]
+- bpf: Lock bpf_trace_printk's tmp buf before it is written to (Yauheni Kaliuta) [1944799]
+- bpf: Add a bpf_snprintf helper (Yauheni Kaliuta) [1944799]
+- bpf: Factorize bpf_trace_printk and bpf_seq_printf (Yauheni Kaliuta) [1944799]
+- Stop the ad-hoc games with -Wno-maybe-initialized (Yauheni Kaliuta) [1944799]
+- kbuild: compute false-positive -Wmaybe-uninitialized cases in Kconfig (Yauheni Kaliuta) [1944799]
+- bpf: Fix potentially incorrect results with bpf_get_local_storage() (Yauheni Kaliuta) [1944799]
+- bpf, samples: Fix xdpsock with '-M' parameter missing unload process (Yauheni Kaliuta) [1944799]
+- libbpf: Don't crash on object files with no symbol tables (Yauheni Kaliuta) [1944799]
+- libbpf: Fix ELF symbol visibility update logic (Yauheni Kaliuta) [1944799]
+- bpf, selftests: Adjust few selftest outcomes wrt unreachable code (Yauheni Kaliuta) [1944799]
+- bpf: Do not mark insn as seen under speculative path verification (Yauheni Kaliuta) [1944799]
+- bpf: Inherit expanded/patched seen count from old aux data (Yauheni Kaliuta) [1944799]
+- bpf, selftests: Adjust few selftest result_unpriv outcomes (Yauheni Kaliuta) [1944799]
+- bpf: Fix BPF_LSM kconfig symbol dependency (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add test for l3 use of bpf_redirect_peer (Yauheni Kaliuta) [1944799]
+- bpftool: Add sock_release help info for cgroup attach/prog load command (Yauheni Kaliuta) [1944799]
+- bpf, offload: Reorder offload callback 'prepare' in verifier (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Test ringbuf mmap read-only and read-write restrictions (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Convert static to global in tc_redirect progs (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Rewrite test_tc_redirect.sh as prog_tests/tc_redirect.c (Yauheni Kaliuta) [1944799]
+- libbpf: Provide GELF_ST_VISIBILITY() define for older libelf (Yauheni Kaliuta) [1944799]
+- bpf: Add deny list of btf ids check for tracing programs (Yauheni Kaliuta) [1944799]
+- bpf: Forbid trampoline attach for functions with variable arguments (Yauheni Kaliuta) [1944799]
+- samples/bpf: Consider frame size in tx_only of xdpsock sample (Yauheni Kaliuta) [1944799]
+- libbpf: Add NULL check to add_dummy_ksym_var (Yauheni Kaliuta) [1944799]
+- libbpf: Fix signed overflow in ringbuf_process_ring (Yauheni Kaliuta) [1944799]
+- bpf, selftests: Update array map tests for per-cpu batched ops (Yauheni Kaliuta) [1944799]
+- bpf: Add batched ops support for percpu array (Yauheni Kaliuta) [1944799]
+- bpf, docs: Fix literal block for example code (Yauheni Kaliuta) [1944799]
+- bpf, cpumap: Bulk skb using netif_receive_skb_list (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix field existence CO-RE reloc tests (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix BPF_CORE_READ_BITFIELD() macro (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Use ASSERT macros in lsm test (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Test that module can't be unloaded with attached trampoline (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add re-attach test to lsm test (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add re-attach test to fexit_test (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add re-attach test to fentry_test (Yauheni Kaliuta) [1944799]
+- bpf: Allow trampoline re-attach for tracing and lsm programs (Yauheni Kaliuta) [1944799]
+- bpf: Document the pahole release info related to libbpf in bpf_devel_QA.rst (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Document latest Clang fix expectations for linking tests (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add map linking selftest (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add global variables linking selftest (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add function linking selftest (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Omit skeleton generation for multi-linked BPF object files (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Use -O0 instead of -Og in selftests builds (Yauheni Kaliuta) [1944799]
+- libbpf: Support extern resolution for BTF-defined maps in .maps section (Yauheni Kaliuta) [1944799]
+- libbpf: Add linker extern resolution support for functions and global variables (Yauheni Kaliuta) [1944799]
+- libbpf: Tighten BTF type ID rewriting with error checking (Yauheni Kaliuta) [1944799]
+- libbpf: Extend sanity checking ELF symbols with externs validation (Yauheni Kaliuta) [1944799]
+- libbpf: Make few internal helpers available outside of libbpf.c (Yauheni Kaliuta) [1944799]
+- libbpf: Factor out symtab and relos sanity checks (Yauheni Kaliuta) [1944799]
+- libbpf: Refactor BTF map definition parsing (Yauheni Kaliuta) [1944799]
+- libbpf: Allow gaps in BPF program sections to support overriden weak functions (Yauheni Kaliuta) [1944799]
+- libbpf: Mark BPF subprogs with hidden visibility as static for BPF verifier (Yauheni Kaliuta) [1944799]
+- libbpf: Suppress compiler warning when using SEC() macro with externs (Yauheni Kaliuta) [1944799]
+- bpftool: Dump more info about DATASEC members (Yauheni Kaliuta) [1944799]
+- bpftool: Support dumping BTF VAR's "extern" linkage (Yauheni Kaliuta) [1944799]
+- bpf: Remove unnecessary map checks for ARG_PTR_TO_CONST_STR (Yauheni Kaliuta) [1944799]
+- xsk: Align XDP socket batch size with DPDK (Yauheni Kaliuta) [1944799]
+- bpf, doc: Fix some invalid links in bpf_devel_QA.rst (Yauheni Kaliuta) [1944799]
+- net, xdp: Update pkt_type if generic XDP changes unicast MAC (Yauheni Kaliuta) [1944799]
+- powerpc/ebpf32: Use standard function call for functions within 32M distance (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add docs target as all dependency (Yauheni Kaliuta) [1944799]
+- bpf/selftests: Add bpf_get_task_stack retval bounds test_prog (Yauheni Kaliuta) [1944799]
+- bpf/selftests: Add bpf_get_task_stack retval bounds verifier test (Yauheni Kaliuta) [1944799]
+- bpf: Refine retval for bpf_get_task_stack helper (Yauheni Kaliuta) [1944799]
+- samples/bpf: Fix broken tracex1 due to kprobe argument change (Yauheni Kaliuta) [1944799]
+- libbpf: Introduce a BPF_SNPRINTF helper macro (Yauheni Kaliuta) [1944799]
+- libbpf: Initialize the bpf_seq_printf parameters array field by field (Yauheni Kaliuta) [1944799]
+- bpf: Add a ARG_PTR_TO_CONST_STR argument type (Yauheni Kaliuta) [1944799]
+- bpftool: Fix a clang compilation warning (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Silence clang compilation warnings (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix test_cpp compilation failure with clang (Yauheni Kaliuta) [1944799]
+- selftests: Set CC to clang in lib.mk if LLVM is set (Yauheni Kaliuta) [1944799]
+- libbpf: Remove unused field. (Yauheni Kaliuta) [1944799]
+- tools/testing: Remove unused variable (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix the ASSERT_ERR_PTR macro (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add tests for target information in bpf_link info queries (Yauheni Kaliuta) [1944799]
+- bpf: Return target info when a tracing bpf_link is queried (Yauheni Kaliuta) [1944799]
+- libbpf: Clarify flags in ringbuf helpers (Yauheni Kaliuta) [1944799]
+- bpf: Sync bpf headers in tooling infrastucture (Yauheni Kaliuta) [1944799]
+- bpf: Document PROG_TEST_RUN limitations (Yauheni Kaliuta) [1944799]
+- bpf, inode: Remove second initialization of the bpf_preload_lock (Yauheni Kaliuta) [1944799]
+- libbpf: Fix KERNEL_VERSION macro (Yauheni Kaliuta) [1944799]
+- bpf: selftests: Specify CONFIG_DYNAMIC_FTRACE in the testing config (Yauheni Kaliuta) [1944799]
+- powerpc/bpf: Reallocate BPF registers to volatile registers when possible on PPC32 (Yauheni Kaliuta) [1944799]
+- powerpc/bpf: Change values of SEEN_ flags (Yauheni Kaliuta) [1944799]
+- powerpc/bpf: Move common functions into bpf_jit_comp.c (Yauheni Kaliuta) [1944799]
+- powerpc/bpf: Remove classical BPF support for PPC32 (Yauheni Kaliuta) [1944799]
+- powerpc/bpf: Move common helpers into bpf_jit.h (Yauheni Kaliuta) [1944799]
+- powerpc/bpf: Change register numbering for bpf_set/is_seen_register() (Yauheni Kaliuta) [1944799]
+- libbpf: Remove redundant semi-colon (Yauheni Kaliuta) [1944799]
+- bpf: Remove repeated struct btf_type declaration (Yauheni Kaliuta) [1944799]
+- bpf, cgroup: Delete repeated struct bpf_prog declaration (Yauheni Kaliuta) [1944799]
+- bpf: Remove unused parameter from ___bpf_prog_run (Yauheni Kaliuta) [1944799]
+- bpf, selftests: test_maps generating unrecognized data section (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add an option for a debug shell in vmtest.sh (Yauheni Kaliuta) [1944799]
+- bpf: Remove redundant assignment of variable id (Yauheni Kaliuta) [1944799]
+- bpf: Remove unused bpf_load_pointer (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove unused defines (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove mutex and condition variable (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove thread attribute (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Implement bpf_link test (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove sync_mutex_tx and atomic var (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Refactor teardown/bidi test cases and testapp_validate (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove Tx synchronization resources (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Split worker thread (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove thread for netns switch (Yauheni Kaliuta) [1944799]
+- samples: bpf: Do not unload prog within xdpsock (Yauheni Kaliuta) [1944799]
+- libbpf: xsk: Use bpf_link (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Simplify frame traversal in dumping thread (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove inline keyword from source file (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove unused function (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Remove struct ifaceconfigobj (Yauheni Kaliuta) [1944799]
+- selftests: xsk: Don't call worker_pkt_dump() for stats test (Yauheni Kaliuta) [1944799]
+- libbpf: Fix memory leak when emitting final btf_ext (Yauheni Kaliuta) [1944799]
+- bpf: selftests: Update clang requirement in README.rst for testing kfunc call (Yauheni Kaliuta) [1944799]
+- bpf: Update bpf_design_QA.rst to clarify the kfunc call is not ABI (Yauheni Kaliuta) [1944799]
+- bpf: selftests: Add kfunc_call test (Yauheni Kaliuta) [1944799]
+- bpf: selftests: Bpf_cubic and bpf_dctcp calling kernel functions (Yauheni Kaliuta) [1944799]
+- bpf: selftests: Rename bictcp to bpf_cubic (Yauheni Kaliuta) [1944799]
+- libbpf: Support extern kernel function (Yauheni Kaliuta) [1944799]
+- libbpf: Record extern sym relocation first (Yauheni Kaliuta) [1944799]
+- libbpf: Rename RELO_EXTERN to RELO_EXTERN_VAR (Yauheni Kaliuta) [1944799]
+- libbpf: Refactor codes for finding btf id of a kernel symbol (Yauheni Kaliuta) [1944799]
+- libbpf: Refactor bpf_object__resolve_ksyms_btf_id (Yauheni Kaliuta) [1944799]
+- bpf: Support bpf program calling kernel function (Yauheni Kaliuta) [1944799]
+- bpf: Refactor btf_check_func_arg_match (Yauheni Kaliuta) [1944799]
+- bpf: Simplify freeing logic in linfo and jited_linfo (Yauheni Kaliuta) [1944799]
+- libbpf: Preserve empty DATASEC BTFs during static linking (Yauheni Kaliuta) [1944799]
+- bpf: struct sock is declared twice in bpf_sk_storage header (Yauheni Kaliuta) [1944799]
+- bpf: Remove unused headers (Yauheni Kaliuta) [1944799]
+- libbpf: Add bpf object kern_version attribute setter (Yauheni Kaliuta) [1944799]
+- bpf: selftests: Add tests for batched ops in LPM trie maps (Yauheni Kaliuta) [1944799]
+- bpf: Add support for batched ops in LPM trie maps (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Better error messages for ima_setup.sh failures (Yauheni Kaliuta) [1944799]
+- bpf: Fix NULL pointer dereference in bpf_get_local_storage() helper (Yauheni Kaliuta) [1944799]
+- libbpf: Constify few bpf_program getters (Yauheni Kaliuta) [1944799]
+- bpf: Fix typo 'accesible' into 'accessible' (Yauheni Kaliuta) [1944799]
+- tracing: Fix various typos in comments (Yauheni Kaliuta) [1944799]
+- libbpf: Skip BTF fixup if object file has no BTF (Yauheni Kaliuta) [1944799]
+- bpf: Remove insn_buf[] declaration in inner block (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add multi-file statically linked BPF object file test (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Pass all BPF .o's through BPF static linker (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Re-generate vmlinux.h and BPF skeletons if bpftool changed (Yauheni Kaliuta) [1944799]
+- bpftool: Add `gen object` command to perform BPF static linking (Yauheni Kaliuta) [1944799]
+- bpftool: Add ability to specify custom skeleton object name (Yauheni Kaliuta) [1944799]
+- libbpf: Add BPF static linker BTF and BTF.ext support (Yauheni Kaliuta) [1944799]
+- libbpf: Add BPF static linker APIs (Yauheni Kaliuta) [1944799]
+- libbpf: Add generic BTF type shallow copy API (Yauheni Kaliuta) [1944799]
+- libbpf: Extract internal set-of-strings datastructure APIs (Yauheni Kaliuta) [1944799]
+- libbpf: Rename internal memory-management helpers (Yauheni Kaliuta) [1944799]
+- libbpf: Generalize BTF and BTF.ext type ID and strings iteration (Yauheni Kaliuta) [1944799]
+- libbpf: Expose btf_type_by_id() internally (Yauheni Kaliuta) [1944799]
+- x86: Fix various typos in comments (Yauheni Kaliuta) [1944799]
+- selftests/bpf: drop custom NULL #define in skb_pkt_end selftest (Yauheni Kaliuta) [1944799]
+- libbpf: provide NULL and KERNEL_VERSION macros in bpf_helpers.h (Yauheni Kaliuta) [1944799]
+- bpf: net: Emit anonymous enum with BPF_TCP_CLOSE value explicitly (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Use nanosleep() syscall instead of sleep() in get_cgroup_id (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix warning comparing pointer to 0 (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Build everything in debug mode (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix maybe-uninitialized warning in xdpxceiver test (Yauheni Kaliuta) [1944799]
+- bpftool: Fix maybe-uninitialized warnings (Yauheni Kaliuta) [1944799]
+- libbpf: Add explicit padding to bpf_xdp_set_link_opts (Yauheni Kaliuta) [1944799]
+- kernel/bpf/: Fix misspellings using codespell tool (Yauheni Kaliuta) [1944799]
+- s390/bpf: Implement new atomic ops (Yauheni Kaliuta) [1944799]
+- bpf: selftests: Remove unused 'nospace_err' in tests for batched ops in array maps (Yauheni Kaliuta) [1944799]
+- samples: bpf: Fix a spelling typo in do_hbm_test.sh (Yauheni Kaliuta) [1944799]
+- libbpf: Avoid inline hint definition from 'linux/stddef.h' (Yauheni Kaliuta) [1944799]
+- libbpf: xsk: Move barriers from libbpf_util.h to xsk.h (Yauheni Kaliuta) [1944799]
+- libbpf: xsk: Remove linux/compiler.h header (Yauheni Kaliuta) [1944799]
+- bpf: Fix warning comparing pointer to 0 (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix warning comparing pointer to 0 (Yauheni Kaliuta) [1944799]
+- bpf, xdp: Restructure redirect actions (Yauheni Kaliuta) [1944799]
+- bpf, xdp: Make bpf_redirect_map() a map operation (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix compiler warning in BPF_KPROBE definition in loop6.c (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Fix typo in Makefile (Yauheni Kaliuta) [1944799]
+- libbpf: Fix arm64 build (Yauheni Kaliuta) [1944799]
+- libbpf, xsk: Add libbpf_smp_store_release libbpf_smp_load_acquire (Yauheni Kaliuta) [1944799]
+- selftests, bpf: Extend test_tc_tunnel test with vxlan (Yauheni Kaliuta) [1944799]
+- bpf: Add bpf_skb_adjust_room flag BPF_F_ADJ_ROOM_ENCAP_L2_ETH (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Simplify the calculation of variables (Yauheni Kaliuta) [1944799]
+- bpf: Simplify the calculation of variables (Yauheni Kaliuta) [1944799]
+- selftests: bpf: Don't run sk_lookup in verifier tests (Yauheni Kaliuta) [1944799]
+- selftests: bpf: Check that PROG_TEST_RUN repeats as requested (Yauheni Kaliuta) [1944799]
+- selftests: bpf: Convert sk_lookup ctx access tests to PROG_TEST_RUN (Yauheni Kaliuta) [1944799]
+- bpf: Add PROG_TEST_RUN support for sk_lookup programs (Yauheni Kaliuta) [1944799]
+- bpf: Consolidate shared test timing code (Yauheni Kaliuta) [1944799]
+- docs/bpf: Add bpf() syscall command reference (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Test syscall command parsing (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Templatize man page generation (Yauheni Kaliuta) [1944799]
+- tools/bpf: Remove bpf-helpers from bpftool docs (Yauheni Kaliuta) [1944799]
+- scripts/bpf: Add syscall commands printer (Yauheni Kaliuta) [1944799]
+- tools: Sync uapi bpf.h header with latest changes (Yauheni Kaliuta) [1944799]
+- scripts/bpf: Abstract eBPF API target parameter (Yauheni Kaliuta) [1944799]
+- bpf: Document BPF_MAP_*_BATCH syscall commands (Yauheni Kaliuta) [1944799]
+- bpf: Document BPF_PROG_QUERY syscall command (Yauheni Kaliuta) [1944799]
+- bpf: Document BPF_PROG_TEST_RUN syscall command (Yauheni Kaliuta) [1944799]
+- bpf: Document BPF_PROG_ATTACH syscall command (Yauheni Kaliuta) [1944799]
+- bpf: Document BPF_PROG_PIN syscall command (Yauheni Kaliuta) [1944799]
+- bpf: Document BPF_F_LOCK in syscall commands (Yauheni Kaliuta) [1944799]
+- bpf: Add minimal bpf() command documentation (Yauheni Kaliuta) [1944799]
+- bpf: Import syscall arg documentation (Yauheni Kaliuta) [1944799]
+- libbpf: Fix whitespace in btf_add_composite() comment (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add a verifier scale test with unknown bounded loop (Yauheni Kaliuta) [1944799]
+- tools, bpf_asm: Exit non-zero on errors (Yauheni Kaliuta) [1944799]
+- tools, bpf_asm: Hard error on out of range jumps (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add arraymap test for bpf_for_each_map_elem() helper (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Add hashmap test for bpf_for_each_map_elem() helper (Yauheni Kaliuta) [1944799]
+- bpftool: Print subprog address properly (Yauheni Kaliuta) [1944799]
+- libbpf: Support subprog address relocation (Yauheni Kaliuta) [1944799]
+- libbpf: Move function is_ldimm64() earlier in libbpf.c (Yauheni Kaliuta) [1944799]
+- bpf: Add arraymap support for bpf_for_each_map_elem() helper (Yauheni Kaliuta) [1944799]
+- bpf: Add hashtab support for bpf_for_each_map_elem() helper (Yauheni Kaliuta) [1944799]
+- bpf: Add bpf_for_each_map_elem() helper (Yauheni Kaliuta) [1944799]
+- bpf: Change return value of verifier function add_subprog() (Yauheni Kaliuta) [1944799]
+- bpf: Refactor check_func_call() to allow callback function (Yauheni Kaliuta) [1944799]
+- bpf: Factor out verbose_invalid_scalar() (Yauheni Kaliuta) [1944799]
+- bpf: Factor out visit_func_call_insn() in check_cfg() (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Copy extras in out-of-srctree builds (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Propagate error code of the command to vmtest.sh (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Introduce xsk statistics tests (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Restructure xsk selftests (Yauheni Kaliuta) [1944799]
+- selftests/bpf: Expose and rename debug argument (Yauheni Kaliuta) [1944799]
+- selftest/bpf: Make xsk tests less verbose (Yauheni Kaliuta) [1944799]
+- bpf: Rename fixup_bpf_calls and add some comments (Yauheni Kaliuta) [1944799]
+- bpf: Use MAX_BPF_FUNC_REG_ARGS macro (Yauheni Kaliuta) [1944799]
+- bpf: runqslower: Prefer using local vmlimux to generate vmlinux.h (Yauheni Kaliuta) [1944799]
+- bpf: Add kernel/modules BTF presence checks to bpftool feature command (Yauheni Kaliuta) [1944799]
+
+* Mon Dec 06 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-354.el8]
+- netfilter: log: work around missing softdep backend module (Florian Westphal) [2017794]
+- netfilter: nft_ct: protect nft_ct_pcpu_template_refcnt with mutex (Florian Westphal) [2017794]
+- netfilter: Fix fall-through warnings for Clang (Florian Westphal) [2017794]
+- netfilter: nft_nat: allow to specify layer 4 protocol NAT only (Florian Westphal) [2017794]
+- netfilter: conntrack: adjust stop timestamp to real expiry value (Florian Westphal) [2017794]
+- netfilter: ipvs: make global sysctl readonly in non-init netns (Florian Westphal) [2017794]
+- ipvs: fix possible memory leak in ip_vs_control_net_init (Florian Westphal) [2017794]
+- ipvs: fix the connection sync failed in some cases (Florian Westphal) [2017794]
+- net: Fix offloading indirect devices dependency on qdisc order creation (Davide Caratti) [1997381]
+- net/core: Remove unused field from struct flow_indr_dev (Davide Caratti) [1997381]
+- Drivers: hv: balloon: Use VMBUS_RING_SIZE() wrapper for dm_ring_size (Vitaly Kuznetsov) [2019101]
+- hv_balloon: Remove redundant assignment to region_start (Vitaly Kuznetsov) [2019101]
+- hv_balloon: disable warning when floor reached (Vitaly Kuznetsov) [2019101]
+- net/tls: Fix flipped sign in async_wait.err assignment (Sabrina Dubroca) [2019176]
+- net/tls: Fix flipped sign in tls_err_abort() calls (Sabrina Dubroca) [2019176]
+- tls: prevent oversized sendfile() hangs by ignoring MSG_MORE (Sabrina Dubroca) [2019176]
+- tls splice: remove inappropriate flags checking for MSG_PEEK (Sabrina Dubroca) [2019176]
+- net/tls: Fix use-after-free after the TLS device goes down and up (Sabrina Dubroca) [2019176]
+- net/tls: Replace TLS_RX_SYNC_RUNNING with RCU (Sabrina Dubroca) [2019176]
+- tls splice: check SPLICE_F_NONBLOCK instead of MSG_DONTWAIT (Sabrina Dubroca) [2019176]
+- net/tls: Remove redundant initialization of record (Sabrina Dubroca) [2019176]
+- ibmvnic: don't stop queue in xmit (Diego Domingos) [2011995]
+- selftests: net: switch to socat in the GSO GRE test (Hangbin Liu) [2018059]
+- selftests: net: properly support IPv6 in GSO GRE test (Hangbin Liu) [2018059]
+- kselftests/net: add missed setup_loopback.sh/setup_veth.sh to Makefile (Hangbin Liu) [2018059]
+- selftests: add simple GSO GRE test (Hangbin Liu) [2018059]
+- selftests/net: allow GRO coalesce test on veth (Hangbin Liu) [2018059]
+- selftests/net: GRO coalesce test (Hangbin Liu) [2018059]
+- perf/x86: Reset destroy callback on event init failure (Michael Petlan) [2003982]
+- x86/msr: Define new bits in TSX_FORCE_ABORT MSR (Michael Petlan) [2003982]
+- perf script: Fix --list-dlfilters documentation (Michael Petlan) [2003982]
+- perf/x86/intel/uncore: Fix IIO cleanup mapping procedure for SNR/ICX (Michael Petlan) [2003982]
+- Revert "perf map: Fix dso->nsinfo refcounting" (Michael Petlan) [2003982]
+- perf pmu: Fix alias matching (Michael Petlan) [2003982]
+- perf cs-etm: Split --dump-raw-trace by AUX records (Michael Petlan) [2003982]
+- perf sched: Fix record failure when CONFIG_SCHEDSTATS is not set (Michael Petlan) [2003982]
+- perf probe: Fix add event failure when running 32-bit perf in a 64-bit kernel (Michael Petlan) [2003982]
+- perf data: Close all files in close_dir() (Michael Petlan) [2003982]
+- perf probe-file: Delete namelist in del_events() on the error path (Michael Petlan) [2003982]
+- perf test bpf: Free obj_buf (Michael Petlan) [2003982]
+- perf trace: Free strings in trace__parse_events_option() (Michael Petlan) [2003982]
+- perf trace: Free syscall tp fields in evsel->priv (Michael Petlan) [2003982]
+- perf trace: Free syscall->arg_fmt (Michael Petlan) [2003982]
+- perf trace: Free malloc'd trace fields on exit (Michael Petlan) [2003982]
+- perf lzma: Close lzma stream on exit (Michael Petlan) [2003982]
+- perf script: Fix memory 'threads' and 'cpus' leaks on exit (Michael Petlan) [2003982]
+- perf script: Release zstd data (Michael Petlan) [2003982]
+- perf session: Cleanup trace_event (Michael Petlan) [2003982]
+- perf inject: Close inject.output on exit (Michael Petlan) [2003982]
+- perf report: Free generated help strings for sort option (Michael Petlan) [2003982]
+- perf env: Fix memory leak of cpu_pmu_caps (Michael Petlan) [2003982]
+- perf test maps__merge_in: Fix memory leak of maps (Michael Petlan) [2003982]
+- perf dso: Fix memory leak in dso__new_map() (Michael Petlan) [2003982]
+- perf test event_update: Fix memory leak of unit (Michael Petlan) [2003982]
+- perf test event_update: Fix memory leak of evlist (Michael Petlan) [2003982]
+- perf test session_topology: Delete session->evlist (Michael Petlan) [2003982]
+- perf env: Fix sibling_dies memory leak (Michael Petlan) [2003982]
+- perf probe: Fix dso->nsinfo refcounting (Michael Petlan) [2003982]
+- perf map: Fix dso->nsinfo refcounting (Michael Petlan) [2003982]
+- perf inject: Fix dso->nsinfo refcounting (Michael Petlan) [2003982]
+- perf cs-etm: Split Coresight decode by aux records (Michael Petlan) [2003982]
+- perf sched: Cast PTHREAD_STACK_MIN to int as it may turn into sysconf(__SC_THREAD_STACK_MIN_VALUE) (Michael Petlan) [2003982]
+- libperf: Fix build error with LIBPFM4=1 (Michael Petlan) [2003982]
+- perf stat: Merge uncore events by default for hybrid platform (Michael Petlan) [2003982]
+- perf tests: Fix 'Convert perf time to TSC' on core-only system (Michael Petlan) [2003982]
+- perf tests: Fix 'Roundtrip evsel->name' on core-only system (Michael Petlan) [2003982]
+- perf tests: Fix 'Parse event definition strings' on core-only system (Michael Petlan) [2003982]
+- perf pmu: Skip invalid hybrid pmu (Michael Petlan) [2003982]
+- perf test: Add free() calls for scandir() returned dirent entries (Michael Petlan) [2003982]
+- libperf: Add tests for perf_evlist__set_leader() (Michael Petlan) [2003982]
+- libperf: Remove BUG_ON() from library code in get_group_fd() (Michael Petlan) [2003982]
+- libperf: Add group support to perf_evsel__open() (Michael Petlan) [2003982]
+- perf tools: Fix pattern matching for same substring in different PMU type (Michael Petlan) [2003982]
+- perf record: Add a dummy event on hybrid systems to collect metadata records (Michael Petlan) [2003982]
+- perf stat: Add Topdown metrics L2 events as default events (Michael Petlan) [2003982]
+- libperf: Adopt evlist__set_leader() from tools/perf as perf_evlist__set_leader() (Michael Petlan) [2003982]
+- libperf: Move 'nr_groups' from tools/perf to evlist::nr_groups (Michael Petlan) [2003982]
+- libperf: Move 'leader' from tools/perf to perf_evsel::leader (Michael Petlan) [2003982]
+- libperf: Move 'idx' from tools/perf to perf_evsel::idx (Michael Petlan) [2003982]
+- libperf: Change tests to single static and shared binaries (Michael Petlan) [2003982]
+- perf intel-pt: Add a config for max loops without consuming a packet (Michael Petlan) [2003982]
+- perf stat: Disable the NMI watchdog message on hybrid (Michael Petlan) [2003982]
+- perf trace: Fix the perf trace link location (Michael Petlan) [2003982]
+- perf top: Fix overflow in elf_sec__is_text() (Michael Petlan) [2003982]
+- perf annotate: Fix 's' on source line when disasm is empty (Michael Petlan) [2003982]
+- perf probe: Do not show @plt function by default (Michael Petlan) [2003982]
+- perf symbol-elf: Decode dynsym even if symtab exists (Michael Petlan) [2003982]
+- perf probe: Fix debuginfo__new() to enable build-id based debuginfo (Michael Petlan) [2003982]
+- perf stat: Enable BPF counter with --for-each-cgroup (Michael Petlan) [2003982]
+- perf report: Fix --task and --stat with pipe input (Michael Petlan) [2003982]
+- perf session: Add missing evlist__delete when deleting a session (Michael Petlan) [2003982]
+- perf annotate: Allow 's' on source code lines (Michael Petlan) [2003982]
+- perf dlfilter: Add object_code() to perf_dlfilter_fns (Michael Petlan) [2003982]
+- perf dlfilter: Add attr() to perf_dlfilter_fns (Michael Petlan) [2003982]
+- perf dlfilter: Add srcline() to perf_dlfilter_fns (Michael Petlan) [2003982]
+- perf dlfilter: Add insn() to perf_dlfilter_fns (Michael Petlan) [2003982]
+- perf dlfilter: Add resolve_address() to perf_dlfilter_fns (Michael Petlan) [2003982]
+- perf build: Install perf_dlfilter.h (Michael Petlan) [2003982]
+- perf script: Add option to pass arguments to dlfilters (Michael Petlan) [2003982]
+- perf script: Add option to list dlfilters (Michael Petlan) [2003982]
+- perf script: Add dlfilter__filter_event_early() (Michael Petlan) [2003982]
+- perf script: Add API for filtering via dynamically loaded shared object (Michael Petlan) [2003982]
+- perf llvm: Return -ENOMEM when asprintf() fails (Michael Petlan) [2003982]
+- perf cs-etm: Delay decode of non-timeless data until cs_etm__flush_events() (Michael Petlan) [2003982]
+- perf arm-spe: Don't wait for PERF_RECORD_EXIT event (Michael Petlan) [2003982]
+- perf arm-spe: Bail out if the trace is later than perf event (Michael Petlan) [2003982]
+- perf arm-spe: Assign kernel time to synthesized event (Michael Petlan) [2003982]
+- perf arm-spe: Convert event kernel time to counter value (Michael Petlan) [2003982]
+- perf arm-spe: Save clock parameters from TIME_CONV event (Michael Petlan) [2003982]
+- perf cs-etm: Remove callback cs_etm_find_snapshot() (Michael Petlan) [2003982]
+- perf bpf_counter: Move common functions to bpf_counter.h (Michael Petlan) [2003982]
+- perf tools: Add cgroup_is_v2() helper (Michael Petlan) [2003982]
+- perf tools: Add read_cgroup_id() function (Michael Petlan) [2003982]
+- tools lib: Adopt bitmap_intersects() operation from the kernel sources (Michael Petlan) [2003982]
+- perf top: Add cgroup support for perf top (-G) (Michael Petlan) [2003982]
+- perf script: Share addr_al between functions (Michael Petlan) [2003982]
+- perf script: Move filtering before scripting (Michael Petlan) [2003982]
+- perf script: Move filter_cpu() earlier (Michael Petlan) [2003982]
+- perf test: Pass the verbose option to shell tests (Michael Petlan) [2003982]
+- perf probe: Add --bootconfig to output definition in bootconfig format (Michael Petlan) [2003982]
+- perf probe: Cleanup synthesize_probe_trace_command() (Michael Petlan) [2003982]
+- perf probe: Support probes on init functions for offline kernel (Michael Petlan) [2003982]
+- perf test: Make stat bpf counters test more robust (Michael Petlan) [2003982]
+- perf test: Add verbose skip output for bpf counters (Michael Petlan) [2003982]
+- perf annotate: Add itrace options support (Michael Petlan) [2003982]
+- perf mem-events: Remove duplicate #undef (Michael Petlan) [2003982]
+- perf evsel: Adjust hybrid event and global event mixed group (Michael Petlan) [2003982]
+- perf probe: Provide clearer message permission error for tracefs access (Michael Petlan) [2003982]
+- perf auxtrace: Change to use SMP memory barriers (Michael Petlan) [2003982]
+- perf srccode: Use list_move() instead of equivalent list_del() + list_add() sequence (Michael Petlan) [2003982]
+- perf probe: Report possible permission error for map__load() failure (Michael Petlan) [2003982]
+- perf probe: Add permission and sysctl notice to man page (Michael Petlan) [2003982]
+- perf c2c: Support record for hybrid platform (Michael Petlan) [2003982]
+- perf mem: Disable 'mem-loads-aux' group before reporting (Michael Petlan) [2003982]
+- perf mem: Fix wrong verbose output for recording events (Michael Petlan) [2003982]
+- perf mem: Support record for hybrid platform (Michael Petlan) [2003982]
+- perf tools: Check if mem_events is supported for hybrid platform (Michael Petlan) [2003982]
+- perf tools: Support pmu prefix for mem-store event (Michael Petlan) [2003982]
+- perf tools: Support pmu prefix for mem-load event (Michael Petlan) [2003982]
+- perf tools: Check mem-loads auxiliary event (Michael Petlan) [2003982]
+- perf scripting python: intel-pt-events.py: Add --insn-trace and --src-trace (Michael Petlan) [2003982]
+- perf scripting python: exported-sql-viewer.py: Factor out libxed.py (Michael Petlan) [2003982]
+- perf scripting python: Update documentation for srcline etc (Michael Petlan) [2003982]
+- perf scripting python: Add perf_sample_srcline() and perf_sample_srccode() (Michael Petlan) [2003982]
+- perf scripting python: Add perf_set_itrace_options() (Michael Petlan) [2003982]
+- perf auxtrace: Factor out itrace_do_parse_synth_opts() (Michael Petlan) [2003982]
+- perf scripting python: Add perf_sample_insn() (Michael Petlan) [2003982]
+- perf script: Factor out script_fetch_insn() (Michael Petlan) [2003982]
+- perf scripting python: Assign perf_script_context (Michael Petlan) [2003982]
+- perf scripting: Add perf_session to scripting_context (Michael Petlan) [2003982]
+- perf scripting: Add scripting_context__update() (Michael Petlan) [2003982]
+- perf scripting python: Simplify perf-trace-context module functions (Michael Petlan) [2003982]
+- perf scripting python: Remove unnecessary 'static' (Michael Petlan) [2003982]
+- perf test: Test 2 libpfm4 error cases (Michael Petlan) [2003982]
+- perf test: Iterate over shell tests in alphabetical order (Michael Petlan) [2003982]
+- perf probe: Provide more detail with relocation warning (Michael Petlan) [2003982]
+- perf parse-events: Add bison --file-prefix-map option (Michael Petlan) [2003982]
+- perf inject: Do not inject BUILD_ID record if MMAP2 has it (Michael Petlan) [2003982]
+- perf inject: Call dso__put() even if dso->hit is set (Michael Petlan) [2003982]
+- perf scripts python: intel-pt-events.py: Add branches to script (Michael Petlan) [2003982]
+- perf scripting python: Add auxtrace error (Michael Petlan) [2003982]
+- perf scripting python: Add context switch (Michael Petlan) [2003982]
+- perf scripting python: Add cpumode (Michael Petlan) [2003982]
+- perf scripting python: Add IPC (Michael Petlan) [2003982]
+- perf scripting python: Add sample flags (Michael Petlan) [2003982]
+- perf script: Factor out perf_sample__sprintf_flags() (Michael Petlan) [2003982]
+- perf scripting python: Add 'addr_location' for 'addr' (Michael Petlan) [2003982]
+- perf scripting python: Factor out set_sym_in_dict() (Michael Petlan) [2003982]
+- perf scripting python: Fix tuple_set_u64() (Michael Petlan) [2003982]
+- perf auxtrace: Make perf_event__process_auxtrace*() callable (Michael Petlan) [2003982]
+- perf script: Find script file relative to exec path (Michael Petlan) [2003982]
+- perf arm-spe: Remove redundant checking for "full_auxtrace" (Michael Petlan) [2003982]
+- perf arm-spe: Enable timestamp for per-cpu mode (Michael Petlan) [2003982]
+- perf arm-spe: Correct sample flags for dummy event (Michael Petlan) [2003982]
+- perf arm-spe: Correct sample flags for SPE event (Michael Petlan) [2003982]
+- perf vendor events intel: Update event list for Icelake Client (Michael Petlan) [2003982]
+- perf vendor events intel: Add uncore event list for Icelake Server (Michael Petlan) [2003982]
+- perf vendor events intel: Add core event list for Icelake Server (Michael Petlan) [2003982]
+- perf tests: Drop __maybe_unused on x86 test declarations (Michael Petlan) [2003982]
+- perf tests: Consolidate test__arch_unwind_sample declaration (Michael Petlan) [2003982]
+- perf build: Improve error message for old/missing clang (Michael Petlan) [2003982]
+- perf tools: Test build with libbpf/LIBBPF_DYNAMIC=1 (Michael Petlan) [2003982]
+- perf tools: Test build with libopencsd/CORESIGHT=1 (Michael Petlan) [2003982]
+- perf cs-etm: Prevent and warn on underflows during timestamp calculation. (Michael Petlan) [2003982]
+- perf cs-etm: Start reading 'Z' --itrace option (Michael Petlan) [2003982]
+- perf cs-etm: Move synth_opts initialisation (Michael Petlan) [2003982]
+- perf header: Support HYBRID_CPU_PMU_CAPS feature (Michael Petlan) [2003982]
+- perf header: Support HYBRID_TOPOLOGY feature (Michael Petlan) [2003982]
+- perf cs-etm: Set time on synthesised samples to preserve ordering (Michael Petlan) [2003982]
+- perf cs-etm: Refactor timestamp variable names (Michael Petlan) [2003982]
+- perf x86 kvm-stat: Support to analyze kvm MSR (Michael Petlan) [2003982]
+- perf stat: Use aggregated counts directly (Michael Petlan) [2003982]
+- perf record: Set timestamp boundary for AUX area events (Michael Petlan) [2003982]
+- perf intel-pt: Parse VM Time Correlation options and set up decoding (Michael Petlan) [2003982]
+- perf intel-pt: Add VM Time Correlation to decoder (Michael Petlan) [2003982]
+- perf intel-pt: Better 7-byte timestamp wraparound logic (Michael Petlan) [2003982]
+- perf intel-pt: Pass the first timestamp to the decoder (Michael Petlan) [2003982]
+- perf intel-pt: Add a tree for VMCS information (Michael Petlan) [2003982]
+- perf intel-pt: Let overlap detection handle VM timestamps (Michael Petlan) [2003982]
+- perf auxtrace: Allow buffers to be mapped read / write (Michael Petlan) [2003982]
+- perf inject: Add --vm-time-correlation option (Michael Petlan) [2003982]
+- perf inject: Add facility to do in place update (Michael Petlan) [2003982]
+- perf intel-pt: Support Z itrace option for timeless decoding (Michael Petlan) [2003982]
+- perf intel-pt: Move synth_opts initialization earlier (Michael Petlan) [2003982]
+- perf auxtrace: Add Z itrace option for timeless decoding (Michael Petlan) [2003982]
+- perf/x86/amd/power: Assign pmu.module (Michael Petlan) [2003982]
+- perf/x86/amd/ibs: Extend PERF_PMU_CAP_NO_EXCLUDE to IBS Op (Michael Petlan) [2003982]
+- perf/x86/amd/ibs: Work around erratum #1197 (Michael Petlan) [2003982]
+- perf/x86/intel/uncore: Fix integer overflow on 23 bit left shift of a u32 (Michael Petlan) [2003982]
+- perf/x86/intel/pt: Fix mask of num_address_ranges (Michael Petlan) [2003982]
+- perf/x86: Fix out of bound MSR access (Michael Petlan) [2003982]
+- perf/x86/cstate: Add ICELAKE_X and ICELAKE_D support (Michael Petlan) [2003982]
+- perf: MAP_EXECUTABLE does not indicate VM_MAYEXEC (Michael Petlan) [2003982]
+- arm64: perf: Simplify EVENT ATTR macro in perf_event.c (Michael Petlan) [2003982]
+- arm64: perf: Simplify the ARMv8 PMUv3 event attributes (Michael Petlan) [2003982]
+- arm64: perf: Remove unused macro (Michael Petlan) [2003982]
+- drivers/perf: Simplify EVENT ATTR macro in qcom_l2_pmu.c (Michael Petlan) [2003982]
+- drivers/perf: Simplify EVENT ATTR macro in qcom_l3_pmu.c (Michael Petlan) [2003982]
+- drivers/perf: Simplify EVENT ATTR macro in xgene_pmu.c (Michael Petlan) [2003982]
+- drivers/perf: convert sysfs sprintf family to sysfs_emit (Michael Petlan) [2003982]
+- drivers/perf: convert sysfs scnprintf family to sysfs_emit_at() and sysfs_emit() (Michael Petlan) [2003982]
+- perf: arm-ccn: Use scnprintf() for robustness (Michael Petlan) [2003982]
+- drivers/perf: convert sysfs snprintf family to sysfs_emit (Michael Petlan) [2003982]
+- perf: Add EVENT_ATTR_ID to simplify event attributes (Michael Petlan) [2003982]
+- perf/x86/intel: Fix instructions:ppp support in Sapphire Rapids (Michael Petlan) [2003982]
+- perf/x86/intel: Add more events requires FRONTEND MSR on Sapphire Rapids (Michael Petlan) [2003982]
+- perf/x86: Reset the dirty counter to prevent the leak for an RDPMC task (Michael Petlan) [2003982]
+- uprobes: Update uprobe_write_opcode() kernel-doc comment (Michael Petlan) [2003982]
+- perf/hw_breakpoint: Fix DocBook warnings in perf hw_breakpoint (Michael Petlan) [2003982]
+- perf/core: Fix DocBook warnings (Michael Petlan) [2003982]
+- perf/core: Make local function perf_pmu_snapshot_aux() static (Michael Petlan) [2003982]
+- perf/x86/intel/uncore: Enable I/O stacks to IIO PMON mapping on ICX (Michael Petlan) [2003982]
+- perf/x86/intel/uncore: Enable I/O stacks to IIO PMON mapping on SNR (Michael Petlan) [2003982]
+- perf/x86/intel/uncore: Generalize I/O stacks to PMON mapping procedure (Michael Petlan) [2003982]
+- perf/x86/intel/uncore: Drop unnecessary NULL checks after container_of() (Michael Petlan) [2003982]
+- x86/events/intel: Do not deploy TSX force abort workaround when TSX is deprecated (Michael Petlan) [2003982]
+- netpoll: don't require irqs disabled in rt kernels (Wander Lairson Costa) [1905440]
+- net/netif_receive_skb_core: Use migrate_disable() (Luis Claudio R. Goncalves) [2024168]
+- RDMA/qedr: Fix NULL deref for query_qp on the GSI QP (Kamal Heib) [2006260 1984280]
+- RDMA/core: Always release restrack object (Kamal Heib) [2006260]
+- RDMA/core: Fix incorrect print format specifier (Kamal Heib) [2006260]
+- RDMA: Remove rdma_set_device_sysfs_group() (Kamal Heib) [2006260]
+- RDMA/core: Allow port_groups to be used with namespaces (Kamal Heib) [2006260]
+- RDMA: Change ops->init_port to ops->port_groups (Kamal Heib) [2006260]
+- RDMA/hfi1: Use attributes for the port sysfs (Kamal Heib) [2006260 1989164]
+- RDMA/cm: Use an attribute_group on the ib_port_attribute intead of kobj's (Kamal Heib) [2006260]
+- RDMA/core: Expose the ib port sysfs attribute machinery (Kamal Heib) [2006260]
+- RDMA/core: Remove the kobject_uevent() NOP (Kamal Heib) [2006260]
+- RDMA/core: Create the device hw_counters through the normal groups mechanism (Kamal Heib) [2006260]
+- RDMA/core: Simplify how the port sysfs is created (Kamal Heib) [2006260]
+- RDMA/core: Simplify how the gid_attrs sysfs is created (Kamal Heib) [2006260]
+- RDMA/core: Split gid_attrs related sysfs from add_port() (Kamal Heib) [2006260]
+- RDMA/core: Split port and device counter sysfs attributes (Kamal Heib) [2006260]
+- RDMA/core: Replace the ib_port_data hw_stats pointers with a ib_port pointer (Kamal Heib) [2006260]
+- RDMA: Split the alloc_hw_stats() ops to port and device variants (Kamal Heib) [2006260]
+- RDMA/rxe: Zero out index member of struct rxe_queue (Kamal Heib) [2006260]
+- RDMA/efa: Free IRQ vectors on error flow (Kamal Heib) [2006260]
+- RDMA/rxe: Fix memory allocation while in a spin lock (Kamal Heib) [2006260]
+- IB/hfi1: Fix possible null-pointer dereference in _extend_sdma_tx_descs() (Kamal Heib) [2006260 1989164]
+- RDMA/rxe: Restore setting tot_len in the IPv4 header (Kamal Heib) [2006260]
+- RDMA/rxe: Use the correct size of wqe when processing SRQ (Kamal Heib) [2006260]
+- RDMA/cma: Revert INIT-INIT patch (Kamal Heib) [2006260]
+- RDMA/rxe: Fix memory leak in error path code (Kamal Heib) [2006260]
+- RDMA/rxe: Missing unlock on error in get_srq_wqe() (Kamal Heib) [2006260]
+- RDMA/cma: Fix rdma_resolve_route() memory leak (Kamal Heib) [2006260]
+- RDMA/core/sa_query: Remove unused argument (Kamal Heib) [2006260]
+- RDMA/cma: Fix incorrect Packet Lifetime calculation (Kamal Heib) [2006260]
+- RDMA/cma: Protect RMW with qp_mutex (Kamal Heib) [2006260]
+- RDMA/cma: Remove unnecessary INIT->INIT transition (Kamal Heib) [2006260]
+- RDMA/rxe: Fix redundant skb_put_zero (Kamal Heib) [2006260]
+- RDMA/rxe: Fix extra copy in prepare_ack_packet (Kamal Heib) [2006260]
+- RDMA/rxe: Fix over copying in get_srq_wqe (Kamal Heib) [2006260]
+- RDMA/rxe: Fix extra copies in build_rdma_network_hdr (Kamal Heib) [2006260]
+- RDMA/rxe: Fix redundant call to ip_send_check (Kamal Heib) [2006260]
+- RDMA/rxe: Fix useless copy in send_atomic_ack (Kamal Heib) [2006260]
+- RDMA/core: Use flexible array for mad data (Kamal Heib) [2006260]
+- RDMA/rxe: Don't overwrite errno from ib_umem_get() (Kamal Heib) [2006260]
+- IB/core: Shuffle locks in ib_port_data to save memory (Kamal Heib) [2006260]
+- IB/core: Removed port validity check from ib_get_cached_subnet_prefix (Kamal Heib) [2006260]
+- RDMA: Fix kernel-doc warnings about wrong comment (Kamal Heib) [2006260]
+- RDMA/rxe: Disallow MR dereg and invalidate when bound (Kamal Heib) [2006260]
+- RDMA/rxe: Implement memory access through MWs (Kamal Heib) [2006260]
+- RDMA/rxe: Implement invalidate MW operations (Kamal Heib) [2006260]
+- RDMA/rxe: Add support for bind MW work requests (Kamal Heib) [2006260]
+- RDMA/rxe: Move local ops to subroutine (Kamal Heib) [2006260]
+- RDMA/rxe: Replace WR_REG_MASK by WR_LOCAL_OP_MASK (Kamal Heib) [2006260]
+- RDMA/rxe: Add ib_alloc_mw and ib_dealloc_mw verbs (Kamal Heib) [2006260]
+- RDMA/rxe: Enable MW object pool (Kamal Heib) [2006260]
+- RDMA/rxe: Return errors for add index and key (Kamal Heib) [2006260]
+- RDMA/rxe: Add bind MW fields to rxe_send_wr (Kamal Heib) [2006260]
+- RDMA/rxe: Fix qp reference counting for atomic ops (Kamal Heib) [2006260]
+- IB/cm: Remove dgid from the cm_id_priv av (Kamal Heib) [2006260]
+- RDMA/core: Use refcount_t instead of atomic_t on refcount of ib_uverbs_device (Kamal Heib) [2006260]
+- RDMA/ipoib: Use refcount_t instead of atomic_t for reference counting (Kamal Heib) [2006260]
+- RDMA/core: Use refcount_t instead of atomic_t on refcount of mcast_port (Kamal Heib) [2006260]
+- RDMA/core: Use refcount_t instead of atomic_t on refcount of mcast_member (Kamal Heib) [2006260]
+- RDMA/core: Remove refcount from struct ib_mad_snoop_private (Kamal Heib) [2006260]
+- RDMA/core: Use refcount_t instead of atomic_t on refcount of iwpm_admin_data (Kamal Heib) [2006260]
+- RDMA/core: Use refcount_t instead of atomic_t on refcount of iwcm_id_private (Kamal Heib) [2006260]
+- RDMA/rxe: Protext kernel index from user space (Kamal Heib) [2006260]
+- RDMA/rxe: Protect user space index loads/stores (Kamal Heib) [2006260]
+- RDMA/rxe: Add a type flag to rxe_queue structs (Kamal Heib) [2006260]
+- IB/cm: Protect cm_dev, cm_ports and mad_agent with kref and lock (Kamal Heib) [2006260]
+- IB/cm: Improve the calling of cm_init_av_for_lap and cm_init_av_by_path (Kamal Heib) [2006260]
+- IB/cm: Simplify ib_cancel_mad() and ib_modify_mad() calls (Kamal Heib) [2006260]
+- Revert "IB/cm: Mark stale CM id's whenever the mad agent was unregistered" (Kamal Heib) [2006260]
+- IB/cm: Tidy remaining cm_msg free paths (Kamal Heib) [2006260]
+- IB/cm: Call the correct message free functions in cm_send_handler() (Kamal Heib) [2006260]
+- IB/cm: Split cm_alloc_msg() (Kamal Heib) [2006260]
+- IB/cm: Pair cm_alloc_response_msg() with a cm_free_response_msg() (Kamal Heib) [2006260]
+- RDMA/core: Sanitize WQ state received from the userspace (Kamal Heib) [2006260]
+- RDMA/srp: Use DEVICE_ATTR_*() macros (Kamal Heib) [2006260]
+- RDMA/core: Use the DEVICE_ATTR_RO macro (Kamal Heib) [2006260]
+- IB/ipoib: Use DEVICE_ATTR_*() macros (Kamal Heib) [2006260]
+- IB/core: Only update PKEY and GID caches on respective events (Kamal Heib) [2006260]
+- RDMA/srp: Fix a recently introduced memory leak (Kamal Heib) [2006260]
+- RDMA/srp: Add more structure size checks (Kamal Heib) [2006260]
+- IB/hfi1: Move a function from a header file into a .c file (Kamal Heib) [2006260 1989164]
+- IB/hfi1: Remove the repeated declaration (Kamal Heib) [2006260 1989164]
+- IB/hfi1: Delete an unneeded bool conversion (Kamal Heib) [2006260 1989164]
+- RDMA: Remove unnecessary struct declaration (Kamal Heib) [2006260]
+- RDMA/core: Remove never used ib_modify_wq function call (Kamal Heib) [2006260]
+- IB/srpt: Remove redundant assignment to ret (Kamal Heib) [2006260]
+- RDMA/ucma: Cleanup to reduce duplicate code (Kamal Heib) [2006260]
+- RDMA/umem: batch page unpin in __ib_umem_release() (Kamal Heib) [2006259]
+- RDMA/rxe: Return CQE error if invalid lkey was supplied (Kamal Heib) [2006259]
+- RDMA/nldev: Add copy-on-fork attribute to get sys command (Kamal Heib) [2006259]
+- IB/hfi1: Remove redundant variable rcd (Kamal Heib) [2006259 1989164]
+- RDMA/nldev: Add QP numbers to SRQ information (Kamal Heib) [2006259]
+- RDMA/nldev: Return SRQ information (Kamal Heib) [2006259]
+- RDMA/restrack: Add support to get resource tracking for SRQ (Kamal Heib) [2006259]
+- RDMA/nldev: Return context information (Kamal Heib) [2006259]
+- RDMA/cma: Skip device which doesn't support CM (Kamal Heib) [2006259 1957239]
+- IB/ipoib: Remove unnecessary struct declaration (Kamal Heib) [2006259]
+- IB/ipoib: Improve latency in ipoib/cm connection formation (Kamal Heib) [2006259]
+- RDMA/ipoib: Print a message if only child interface is UP (Kamal Heib) [2006259]
+- RDMA/uverbs: Make UVERBS_OBJECT_METHODS to consider line number (Kamal Heib) [2006259]
+- IB/hfi1: Rework AIP and VNIC dummy netdev usage (Kamal Heib) [2006259 1989164]
+- IB/cma: Introduce rdma_set_min_rnr_timer() (Kamal Heib) [2006259]
+- RDMA/core: Correct format of block comments (Kamal Heib) [2006259]
+- RDMA/core: Correct format of braces (Kamal Heib) [2006259]
+- RDMA/core: Remove redundant spaces (Kamal Heib) [2006259]
+- RDMA/core: Add necessary spaces (Kamal Heib) [2006259]
+- RDMA/core: Remove the redundant return statements (Kamal Heib) [2006259]
+- RDMA/core: Print the function name by __func__ instead of an fixed string (Kamal Heib) [2006259]
+- RDMA/rxe: Fix missing acks from responder (Kamal Heib) [2006259]
+- RDMA/core: Make the wc status prompt message clearer (Kamal Heib) [2006259]
+- IB/hfi1: Remove indirect call to hfi1_ipoib_send_dma() (Kamal Heib) [2006259 1989164]
+- IB/hfi1: Use napi_schedule_irqoff() for tx napi (Kamal Heib) [2006259 1989164]
+- IB/hfi1: Correct oversized ring allocation (Kamal Heib) [2006259 1989164]
+- IB/{ipoib,hfi1}: Add a timeout handler for rdma_netdev (Kamal Heib) [2006259 1989164]
+- IB/hfi1: Add AIP tx traces (Kamal Heib) [2006259 1989164]
+- RDMA/uverbs: Fix -Wunused-function warning (Kamal Heib) [2006259]
+- RDMA/iser: struct iscsi_iser_task is declared twice (Kamal Heib) [2006259]
+- RDMA/rxe: Split MEM into MR and MW (Kamal Heib) [2006259]
+- RDMA/efa: Use strscpy instead of strlcpy (Kamal Heib) [2006259]
+- RDMA: Fix a typo (Kamal Heib) [2006259]
+- IB/hfi1: Fix a typo (Kamal Heib) [2006259 1989164]
+- RDMA/core: Correct misspellings of two words in comments (Kamal Heib) [2006259]
+- RDMA/uverbs: Refactor rdma_counter_set_auto_mode and __counter_set_mode (Kamal Heib) [2006259]
+- RDMA: Support more than 255 rdma ports (Kamal Heib) [2006259 1957239]
+- RDMA/include: Mundane typo fixes throughout the file (Kamal Heib) [2006259]
+- RDMA/cma: Remove unused leftovers in cma code (Kamal Heib) [2006259]
+- RDMA: Fix kernel-doc compilation warnings (Kamal Heib) [2006259]
+- RDMA/hw/i40iw/i40iw_virtchnl: Fix a bunch of kernel-doc issues (Kamal Heib) [2006259]
+- RDMA/hw/i40iw/i40iw_utils: Fix some misspellings and missing param descriptions (Kamal Heib) [2006259]
+- IB/core: Split uverbs_get_const/default to consider target type (Kamal Heib) [2006259]
+- IB/core: Drop WARN_ON() from ib_umem_find_best_pgsz() (Kamal Heib) [2006259]
+- RDMA/core: Remove unused req_ncomp_notif device operation (Kamal Heib) [2006259]
+- RDMA/iwcm: Allow AFONLY binding for IPv6 addresses (Kamal Heib) [2006259]
+- IB/hfi1: switch to core handling of rx/tx byte/packet counters (Kamal Heib) [2006259 1989164]
+- RDMA: Convert various random sprintf sysfs _show uses to sysfs_emit (Kamal Heib) [2006259]
+- RDMA: Manual changes for sysfs_emit and neatening (Kamal Heib) [2006259]
+- RDMA: Convert sysfs device * show functions to use sysfs_emit() (Kamal Heib) [2006259]
+- IB/hfi1: use new function dev_fetch_sw_netstats (Kamal Heib) [2006259 1989164]
+- RDMA/ipoib: Convert to use DEFINE_SEQ_ATTRIBUTE macro (Kamal Heib) [2006259]
+- include/linux/seq_file.h: introduce DEFINE_SEQ_ATTRIBUTE() helper macro (Kamal Heib) [2006259]
+- ibmvnic: delay complete() (Diego Domingos) [2019210]
+- ibmvnic: Process crqs after enabling interrupts (Diego Domingos) [2019210]
+- Documentation: sysrq: update description about sysrq crash (Chris von Recklinghausen) [2019943]
+- sysrq: Use panic() to force a crash (Chris von Recklinghausen) [2019943]
+- ethtool: extend coalesce setting uAPI with CQE mode (Ivan Vecera) [2006829]
+- ethtool: add two coalesce attributes for CQE mode (Ivan Vecera) [2006829]
+- ice: Add support for VF rate limiting (Jonathan Toppins) [1973187]
+- net: Prevent infinite while loop in skb_tx_hash() (Paolo Abeni) [2018437]
+- napi: fix race inside napi_enable (Paolo Abeni) [2018437]
+- net/af_unix: fix a data-race in unix_dgram_poll (Paolo Abeni) [2018437]
+- devlink: Clear whole devlink_flash_notify struct (Paolo Abeni) [2018437]
+- net: linkwatch: fix failure to restore device state across suspend/resume (Paolo Abeni) [2018437]
+- gro: fix napi_gro_frags() Fast GRO breakage due to IP alignment check (Paolo Abeni) [2018437]
+- gro: ensure frag0 meets IP header alignment (Paolo Abeni) [2018437]
+- net: core: allow fast GRO for skbs with Ethernet header in head (Paolo Abeni) [2018437]
+- udp: fix skb_copy_and_csum_datagram with odd segment sizes (Paolo Abeni) [2018437]
+- skbuff: back tiny skbs with kmalloc() in __netdev_alloc_skb() too (Paolo Abeni) [2018437]
+- selftests/net: remove min gso test in packet_snd (Paolo Abeni) [2018437]
+- net: be more gentle about silly gso requests coming from user (Paolo Abeni) [2018437]
+- virtio_net: Do not pull payload in skb->head (Paolo Abeni) [2018437]
+- net: check untrusted gso_size at kernel entry (Paolo Abeni) [2018437]
+- net: stricter validation of untrusted gso packets$ (Paolo Abeni) [2018437]
+- net: avoid 32 x truesize under-estimation for tiny skbs (Paolo Abeni) [2018437]
+- ionic: no devlink_unregister if not registered (Jonathan Toppins) [2016705]
+- ionic: tame the filter no space message (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: allow adminq requests to override default error message (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: handle vlan id overflow (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: generic filter delete (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: generic filter add (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: add generic filter search (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: remove mac overflow flags (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: move lif mac address functions (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: add filterlist to debugfs (Jonathan Toppins) [2016705 1959512 2002943]
+- ionic: don't remove netdev->dev_addr when syncing uc list (Jonathan Toppins) [2016705 2012030]
+- ionic: move filter sync_needed bit set (Jonathan Toppins) [2016705]
+- ionic: add lif param to ionic_qcq_disable (Jonathan Toppins) [2016705]
+- ionic: have ionic_qcq_disable decide on sending to hardware (Jonathan Toppins) [2016705]
+- ionic: add polling to adminq wait (Jonathan Toppins) [2016705]
+- ionic: widen queue_lock use around lif init and deinit (Jonathan Toppins) [2016705]
+- ionic: move lif mutex setup and delete (Jonathan Toppins) [2016705]
+- ionic: check for binary values in FW ver string (Jonathan Toppins) [2016705]
+- ionic: remove debug stats (Jonathan Toppins) [2016705]
+- ionic: fix gathering of debug stats (Jonathan Toppins) [2016705]
+- ionic: fix a sleeping in atomic bug (Jonathan Toppins) [2016705]
+- ionic: fix double use of queue-lock (Jonathan Toppins) [2016705]
+- ionic: recreate hwstamp queues on ifup (Jonathan Toppins) [2016705 1981590]
+- ionic: pull hwstamp queue_lock up a level (Jonathan Toppins) [2016705 1981590]
+- ionic: add queue lock around open and stop (Jonathan Toppins) [2016705 1981590]
+- ionic: fill mac addr earlier in add_addr (Jonathan Toppins) [2016705 1981590]
+- ionic: squelch unnecessary fw halted message (Jonathan Toppins) [2016705 1981590]
+- ionic: fire watchdog again after fw_down (Jonathan Toppins) [2016705 1981590]
+- ionic: handle mac filter overflow (Jonathan Toppins) [2016705 1981590]
+- ionic: refactor ionic_lif_addr to remove a layer (Jonathan Toppins) [2016705 1981590]
+- ionic: sync the filters in the work task (Jonathan Toppins) [2016705 1981590]
+- ionic: flatten calls to set-rx-mode (Jonathan Toppins) [2016705 1981590]
+- ionic: remove old work task types (Jonathan Toppins) [2016705 1981590]
+- ionic: add function tag to debug string (Jonathan Toppins) [2016705]
+- ionic: enable rxhash only with multiple queues (Jonathan Toppins) [2016705]
+- ionic: block some ethtool operations when fw in reset (Jonathan Toppins) [2016705]
+- ionic: remove unneeded comp union fields (Jonathan Toppins) [2016705]
+- ionic: increment num-vfs before configure (Jonathan Toppins) [2016705]
+- ionic: use fewer inits on the buf_info struct (Jonathan Toppins) [2016705]
+- ionic: init reconfig err to 0 (Jonathan Toppins) [2016705]
+- ionic: print firmware version on identify (Jonathan Toppins) [2016705]
+- ionic: monitor fw status generation (Jonathan Toppins) [2016705]
+- ionic: minimize resources when under kdump (Jonathan Toppins) [2016705]
+- ionic: cleanly release devlink instance (Jonathan Toppins) [2016705]
+- ionic: drop useless check of PCI driver data validity (Jonathan Toppins) [2016705]
+- ionic: Remove unused function pointer typedef ionic_reset_cb (Jonathan Toppins) [2016705]
+- ACPI: Use fwnode_init() to set up fwnode (Mark Langsdorf) [1982374]
+- device property: Add missed header in fwnode.h (Mark Langsdorf) [1982374]
+- regmap: set debugfs_name to NULL after it is freed (Mark Langsdorf) [1982374]
+- mfd: cpcap: Fix interrupt regression with regmap clear_ack (Mark Langsdorf) [1982374]
+- driver core: Fix device link device name collision (Mark Langsdorf) [1982374]
+- driver core: Extend device_is_dependent() (Mark Langsdorf) [1982374]
+- device property: add description of fwnode cases (Mark Langsdorf) [1982374]
+- Revert "device property: Keep secondary firmware node secondary by type" (Mark Langsdorf) [1982374]
+- regmap: debugfs: Fix a reversed if statement in regmap_debugfs_init() (Mark Langsdorf) [1982374]
+- regmap: debugfs: Fix a memory leak when calling regmap_attach_dev (Mark Langsdorf) [1982374]
+- driver core: platform: Add extra error check in devm_platform_get_irqs_affinity() (Mark Langsdorf) [1982374]
+- driver core: platform: don't oops in platform_shutdown() on unbound devices (Mark Langsdorf) [1982374]
+- PM: domains: create debugfs nodes when adding power domains (Mark Langsdorf) [1982374]
+- driver core: platform: Add devm_platform_get_irqs_affinity() (Mark Langsdorf) [1982374]
+- platform-msi: Track shared domain allocation (Mark Langsdorf) [1982374]
+- driver core: platform: Introduce platform_get_mem_or_io() (Mark Langsdorf) [1982374]
+- soc: fix comment for freeing soc_dev_attr (Mark Langsdorf) [1982374]
+- driver core: platform: use bus_type functions (Mark Langsdorf) [1982374]
+- driver core: platform: change logic implementing platform_driver_probe (Mark Langsdorf) [1982374]
+- driver core: platform: reorder functions (Mark Langsdorf) [1982374]
+- driver core: make driver_probe_device() static (Mark Langsdorf) [1982374]
+- driver core: Fix a couple of typos (Mark Langsdorf) [1982374]
+- driver core: Refactor fw_devlink feature (Mark Langsdorf) [1982374]
+- efi: Update implementation of add_links() to create fwnode links (Mark Langsdorf) [1982374]
+- of: property: Update implementation of add_links() to create fwnode links (Mark Langsdorf) [1982374]
+- driver core: Use device's fwnode to check if it is waiting for suppliers (Mark Langsdorf) [1982374]
+- driver core: Add fw_devlink_parse_fwtree() (Mark Langsdorf) [1982374]
+- driver core: Redefine the meaning of fwnode_operations.add_links() (Mark Langsdorf) [1982374]
+- device property: Add fwnode_is_ancestor_of() and fwnode_get_next_parent_dev() (Mark Langsdorf) [1982374]
+- driver core: Allow only unprobed consumers for SYNC_STATE_ONLY device links (Mark Langsdorf) [1982374]
+- driver core: Add fwnode link support (Mark Langsdorf) [1982374]
+- driver core: Add fwnode_init() (Mark Langsdorf) [1982374]
+- Revert "[base] driver core: fw_devlink: Add support for batching fwnode parsing" (Mark Langsdorf) [1982374]
+- Revert "[base] driver core: Remove check in driver_deferred_probe_force_trigger()" (Mark Langsdorf) [1982374]
+- Revert "[base] driver core: Don't do deferred probe in parallel with kernel_init thread" (Mark Langsdorf) [1982374]
+- Revert "[base] driver core: Rename dev_links_info.defer_sync to defer_hook" (Mark Langsdorf) [1982374]
+- Revert "[base] driver core: Avoid deferred probe due to fw_devlink_pause/resume()" (Mark Langsdorf) [1982374]
+- regmap: Remove duplicate `type` field from regmap `regcache_sync` trace event (Mark Langsdorf) [1982374]
+- PM: sleep: Add dev_wakeup_path() helper (Mark Langsdorf) [1982374]
+- regmap: Fix order of regmap write log (Mark Langsdorf) [1982374]
+- regmap: use less #ifdef for LOG_DEVICE (Mark Langsdorf) [1982374]
+- PM: domains: Enable dev_pm_genpd_suspend|resume() for suspend-to-idle (Mark Langsdorf) [1982374]
+- PM: domains: Rename pm_genpd_syscore_poweroff|poweron() (Mark Langsdorf) [1982374]
+- PM: sleep: Print driver flags for all devices during suspend/resume (Mark Langsdorf) [1982374]
+- driver core: Fix lockdep warning on wfs_lock (Mark Langsdorf) [1982374]
+- regmap: irq: Convert to use irq_domain_create_legacy() (Mark Langsdorf) [1982374]
+- irqdomain: Introduce irq_domain_create_legacy() API (Mark Langsdorf) [1982374]
+- irqdomain: Replace open coded of_node_to_fwnode() (Mark Langsdorf) [1982374]
+- irqdomain: Add forward declaration of fwnode_handle (Mark Langsdorf) [1982374]
+- irqdomain: Remove unused of_device_id forward declaration (Mark Langsdorf) [1982374]
+- regmap-irq: use fwnode instead of device node in add_irq_chip() (Mark Langsdorf) [1982374]
+- regmap: mmio: add config option to allow relaxed MMIO accesses (Mark Langsdorf) [1982374]
+- PM: sleep: remove unreachable break (Mark Langsdorf) [1982374]
+- PM: domains: enable domain idle state accounting (Mark Langsdorf) [1982374]
+- PM: domains: Add curly braces to delimit comment + statement block (Mark Langsdorf) [1982374]
+- PM: domains: Add support for PM domain on/off notifiers for genpd (Mark Langsdorf) [1982374]
+- PM / Domains: Simplify genpd_lookup_dev() (Mark Langsdorf) [1982374]
+- regmap: irq: Add support to clear ack registers (Mark Langsdorf) [1982374]
+- PM: domains: Allow to abort power off when no ->power_off() callback (Mark Langsdorf) [1982374]
+- PM: domains: Rename power state enums for genpd (Mark Langsdorf) [1982374]
+- regmap: debugfs: use semicolons rather than commas to separate statements (Mark Langsdorf) [1982374]
+- drivers core: node: Use a more typical macro definition style for ACCESS_ATTR (Mark Langsdorf) [1982374]
+- drivers core: Use sysfs_emit for shared_cpu_map_show and shared_cpu_list_show (Mark Langsdorf) [1982374]
+- efi: Rename arm-init to efi-init common for all arch (Mark Langsdorf) [1982374]
+- efi/arm: Defer probe of PCIe backed efifb on DT systems (Mark Langsdorf) [1982374]
+- net/smc: improved fix wait on already cleared link (Sumanth Korikkar) [1984991]
+- net/smc: fix 'workqueue leaked lock' in smc_conn_abort_work (Sumanth Korikkar) [1984991]
+- net/smc: add missing error check in smc_clc_prfx_set() (Sumanth Korikkar) [1984991]
+- net/smc: Correct smc link connection counter in case of smc client (Sumanth Korikkar) [1984991]
+- net/smc: fix wait on already cleared link (Sumanth Korikkar) [1984991]
+- KVM: s390: Fix handle_sske page fault handling (Thomas Huth) [2022731]
+- KVM: s390: Simplify SIGP Set Arch handling (Thomas Huth) [2022731]
+- KVM: s390: pv: avoid stalls when making pages secure (Thomas Huth) [2022731]
+- KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm (Thomas Huth) [2022731]
+- KVM: s390: pv: avoid double free of sida page (Thomas Huth) [2022731]
+- KVM: s390: pv: add macros for UVC CC values (Thomas Huth) [2022731]
+- s390/uv: fully validate the VMA before calling follow_page() (Thomas Huth) [2022731]
+- s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() (Thomas Huth) [2022731]
+- s390/gmap: validate VMA in __gmap_zap() (Thomas Huth) [2022731]
+- KVM: s390: preserve deliverable_mask in __airqs_kick_single_vcpu (Thomas Huth) [2022731]
+- KVM: s390: clear kicked_mask before sleeping again (Thomas Huth) [2022731]
+- KVM: s390: Function documentation fixes (Thomas Huth) [2022731]
+- s390/mm: fix kernel doc comments (Thomas Huth) [2022731]
+- KVM: s390: index kvm->arch.idle_mask by vcpu_idx (Thomas Huth) [2022731]
+- KVM: s390: generate kvm hypercall functions (Thomas Huth) [2022731]
+- KVM: Rename lru_slot to last_used_slot (Thomas Huth) [2022731]
+- s390: mm: Fix secure storage access exception handling (Thomas Huth) [2022731]
+- virtio/s390: get rid of open-coded kvm hypercall (Thomas Huth) [2022731]
+- KVM: s390: get rid of register asm usage (Thomas Huth) [2022731]
+- powerpc/vas: Fix potential NULL pointer dereference (Steve Best) [1907522]
+- powerpc/pseries/vas: Declare pseries_vas_fault_thread_fn() as static (Steve Best) [1907522]
+- crypto/nx: Register and unregister VAS interface on PowerVM (Steve Best) [1907522]
+- crypto/nx: Add sysfs interface to export NX capabilities (Steve Best) [1907522]
+- crypto/nx: Get NX capabilities for GZIP coprocessor type (Steve Best) [1907522]
+- crypto/nx: Rename nx-842-pseries file name to nx-common-pseries (Steve Best) [1907522]
+- powerpc/pseries/vas: Setup IRQ and fault handling (Steve Best) [1907522]
+- powerpc/pseries/vas: Integrate API with open/close windows (Steve Best) [1907522]
+- powerpc/pseries/vas: Implement getting capabilities from hypervisor (Steve Best) [1907522]
+- powerpc/pseries/vas: Add hcall wrappers for VAS handling (Steve Best) [1907522]
+- powerpc/vas: Define QoS credit flag to allocate window (Steve Best) [1907522]
+- powerpc/pseries/vas: Define VAS/NXGZIP hcalls and structs (Steve Best) [1907522]
+- powerpc/vas: Define and use common vas_window struct (Steve Best) [1907522]
+- powerpc/powernv: no need to check return value of debugfs_create functions (Steve Best) [1907522]
+- powerpc/vas: Move update_csb/dump_crb to common book3s platform (Steve Best) [1907522]
+- powerpc/vas: Create take/drop pid and mm reference functions (Steve Best) [1907522]
+- powerpc/vas: Add platform specific user window operations (Steve Best) [1907522]
+- powerpc/powernv/vas: Rename register/unregister functions (Steve Best) [1907522]
+- powerpc/vas: Move VAS API to book3s common platform (Steve Best) [1907522]
+- powerpc/powernv/vas: Release reference to tgid during window close (Steve Best) [1907522]
+- powerpc/pseries: Prevent free CPU ids being reused on another node (Desnes A. Nunes do Rosario) [2004808]
+- powerpc/numa: Consider the max NUMA node for migratable LPAR (Desnes A. Nunes do Rosario) [2004808]
+
+* Thu Nov 25 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-353.el8]
+- zram: replace fsync_bdev with sync_blockdev (Ming Lei) [2015755]
+- zram: avoid race between zram_remove and disksize_store (Ming Lei) [2015755]
+- zram: don't fail to remove zram during unloading module (Ming Lei) [2015755]
+- zram: fix race between zram_reset_device() and disksize_store() (Ming Lei) [2015755]
+- zram: register default groups with device_add_disk() (Ming Lei) [2015755]
+- hyperv/vmbus: include linux/bitops.h (Mohammed Gamal) [2008565]
+- hv: vmbus: Avoid -Werror=maybe-uninitialized error (Mohammed Gamal) [2008565]
+- Drivers: hv: vmbus: Fix kernel crash upon unbinding a device from uio_hv_generic driver (Mohammed Gamal) [2008565]
+- Drivers: hv: vmbus: Fix duplicate CPU assignments within a device (Mohammed Gamal) [2008565]
+- drivers: hv: Fix missing error code in vmbus_connect() (Mohammed Gamal) [2008565]
+- hv_utils: Fix passing zero to 'PTR_ERR' warning (Mohammed Gamal) [2008565]
+- ice: Fix VF true promiscuous mode (Jonathan Toppins) [1970643]
+- ice: Remove toggling of antispoof for VF trusted promiscuous mode (Jonathan Toppins) [1970643]
+- ice: Fix replacing VF hardware MAC to existing MAC filter (Jonathan Toppins) [1970643]
+- ice: Fix not stopping Tx queues for VFs (Jonathan Toppins) [1970643]
+- ice: Fix race conditions between virtchnl handling and VF ndo ops (Jonathan Toppins) [1970643]
+- ice: move ice_container_type onto ice_ring_container (Jonathan Toppins) [1970643]
+- ice: remove ring_active from ice_ring (Jonathan Toppins) [1970643]
+- ice: Print the api_patch as part of the fw.mgmt.api (Jonathan Toppins) [1970643]
+- ice: Avoid crash from unnecessary IDA free (Jonathan Toppins) [1970643]
+- ice: Fix failure to re-add LAN/RDMA Tx queues (Jonathan Toppins) [1970643]
+- ice: Add missing E810 device ids (Jonathan Toppins) [1970643]
+- ice: fix locking for Tx timestamp tracking flush (Jonathan Toppins) [1970643]
+- ice: Delete always true check of PF pointer (Jonathan Toppins) [1970643]
+- ice: Correctly deal with PFs that do not support RDMA (Jonathan Toppins) [1970643]
+- ice: add lock around Tx timestamp tracker flush (Jonathan Toppins) [1970643]
+- ice: remove dead code for allocating pin_config (Jonathan Toppins) [1970643]
+- ice: do not abort devlink info if board identifier can't be found (Jonathan Toppins) [1970643]
+- ice: Fix a memory leak in an error handling path in 'ice_pf_dcb_cfg()' (Jonathan Toppins) [1970643]
+- ice: remove unnecessary VSI assignment (Jonathan Toppins) [1970643]
+- ice: remove the VSI info from previous agg (Jonathan Toppins) [1970643]
+- ice: add tracepoints (Jonathan Toppins) [1970643]
+- ice: report hash type such as L2/L3/L4 (Jonathan Toppins) [1970643]
+- ice: remove redundant continue statement in a for-loop (Jonathan Toppins) [1970643]
+- net: ice: ptp: fix compilation warning if PTP_1588_CLOCK is disabled (Jonathan Toppins) [1970643]
+- ice: remove unnecessary NULL checks before ptp_read_system_* (Jonathan Toppins) [1970643]
+- ice: Remove the repeated declaration (Jonathan Toppins) [1970643]
+- ice: remove local variable (Jonathan Toppins) [1970643]
+- ice: reduce scope of variables (Jonathan Toppins) [1970643]
+- ice: mark PTYPE 2 as reserved (Jonathan Toppins) [1970643]
+- ice: fix incorrect payload indicator on PTYPE (Jonathan Toppins) [1970643]
+- ice: parameterize functions responsible for Tx ring management (Jonathan Toppins) [1970643]
+- ice: add ndo_bpf callback for safe mode netdev ops (Jonathan Toppins) [1970643]
+- ice: fix clang warning regarding deadcode.DeadStores (Jonathan Toppins) [1970643]
+- ice: downgrade error print to debug print (Jonathan Toppins) [1970643]
+- ice: Detect and report unsupported module power levels (Jonathan Toppins) [1970643]
+- ice: (re)initialize NVM fields when rebuilding (Jonathan Toppins) [1970643]
+- ice: wait for reset before reporting devlink info (Jonathan Toppins) [1970643]
+- ice: add error message when pldmfw_flash_image fails (Jonathan Toppins) [1970643]
+- ice: add extack when unable to read device caps (Jonathan Toppins) [1970643]
+- ice: use static inline for dummy functions (Jonathan Toppins) [1970643]
+- ice: Re-organizes reqstd/avail {R, T}XQ check/code for efficiency (Jonathan Toppins) [1970643]
+- ice: set the value of global config lock timeout longer (Jonathan Toppins) [1970643]
+- ice: Refactor VIRTCHNL_OP_CONFIG_VSI_QUEUES handling (Jonathan Toppins) [1970643]
+- ice: Refactor ice_setup_rx_ctx (Jonathan Toppins) [1970643]
+- ice: Save VF's MAC across reboot (Jonathan Toppins) [1970643]
+- ice: Manage VF's MAC address for both legacy and new cases (Jonathan Toppins) [1970643]
+- ice: Register auxiliary device to provide RDMA (Jonathan Toppins) [1970643]
+- ice: Implement iidc operations (Jonathan Toppins) [1970643]
+- virtchnl: Use pad byte in virtchnl_ether_addr to specify MAC type (Jonathan Toppins) [1970643]
+- iidc: Introduce iidc.h (Jonathan Toppins) [1970643]
+- ice: Initialize RDMA support (Jonathan Toppins) [1970643]
+- ice: Respond to a NETDEV_UNREGISTER event for LAG (Jonathan Toppins) [1970643]
+- Revert "Revert "ice: Add initial support framework for LAG"" (Jonathan Toppins) [1970643]
+- ice: reduce scope of variable (Jonathan Toppins) [1970643]
+- ice: remove return variable (Jonathan Toppins) [1970643]
+- ice: suppress false cppcheck issues (Jonathan Toppins) [1970643]
+- ice: Set vsi->vf_id as ICE_INVAL_VFID for non VF VSI types (Jonathan Toppins) [1970643]
+- ice: remove unused struct member (Jonathan Toppins) [1970643]
+- ice: use local for consistency (Jonathan Toppins) [1970643]
+- ice: print name in /proc/iomem (Jonathan Toppins) [1970643]
+- ice: Reimplement module reads used by ethtool (Jonathan Toppins) [1970643]
+- ice: refactor ITR data structures (Jonathan Toppins) [1970643]
+- ice: manage interrupts during poll exit (Jonathan Toppins) [1970643]
+- ice: replace custom AIM algorithm with kernel's DIM library (Jonathan Toppins) [1970643]
+- ice: refactor interrupt moderation writes (Jonathan Toppins) [1970643]
+- ice: Add new VSI states to track netdev alloc/registration (Jonathan Toppins) [1970643]
+- ice: Drop leading underscores in enum ice_pf_state (Jonathan Toppins) [1970643]
+- ice: use kernel definitions for IANA protocol ports and ether-types (Jonathan Toppins) [1970643]
+- ice: Remove unnecessary blank line (Jonathan Toppins) [1970643]
+- ice: Remove unnecessary checks in add/kill_vid ndo ops (Jonathan Toppins) [1970643]
+- ice: Remove rx_gro_dropped stat (Jonathan Toppins) [1970643]
+- ice: Use local variable instead of pointer derefs (Jonathan Toppins) [1970643]
+- ice: Remove unnecessary variable (Jonathan Toppins) [1970643]
+- ice: Limit forced overrides based on FW version (Jonathan Toppins) [1970643]
+- ice: Use default configuration mode for PHY configuration (Jonathan Toppins) [1970643]
+- ice: Replace some memsets and memcpys with assignment (Jonathan Toppins) [1970643]
+- ice: Fix error return codes in ice_set_link_ksettings (Jonathan Toppins) [1970643]
+- ice: Rename a couple of variables (Jonathan Toppins) [1970643]
+- ice: Remove unnecessary checker loop (Jonathan Toppins) [1970643]
+- ice: Ignore EMODE return for opcode 0x0605 (Jonathan Toppins) [1970643]
+- ice: Align macro names to the specification (Jonathan Toppins) [1970643]
+- ice: Modify recursive way of adding nodes (Jonathan Toppins) [1970643]
+- ice: Re-send some AQ commands, as result of EBUSY AQ error (Jonathan Toppins) [1970643]
+- ice: Correct comment block style (Jonathan Toppins) [1970643]
+- ice: cleanup style issues (Jonathan Toppins) [1970643]
+- ice: rename ptype bitmap (Jonathan Toppins) [1970643]
+- ice: correct memory allocation call (Jonathan Toppins) [1970643]
+- ice: Check for bail out condition early (Jonathan Toppins) [1970643]
+- ice: remove unnecessary duplicated AQ command flag setting (Jonathan Toppins) [1970643]
+- ice: change link misconfiguration message (Jonathan Toppins) [1970643]
+- ice: Update to use package info from ice segment (Jonathan Toppins) [1970643]
+- ice: Delay netdev registration (Jonathan Toppins) [1970643]
+- ice: Add Support for XPS (Jonathan Toppins) [1970643]
+- ice: Fix fall-through warnings for Clang (Jonathan Toppins) [1970643]
+- ice: Fix prototype warnings (Jonathan Toppins) [1970643]
+- ice: move headroom initialization to ice_setup_rx_ctx (Jonathan Toppins) [1970643]
+- ice: store the result of ice_rx_offset() onto ice_ring (Jonathan Toppins) [1970643]
+- sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() (Phil Auld) [2011436]
+- sched/fair: Prevent dead task groups from regaining cfs_rq's (Phil Auld) [2011436]
+- sched/fair: Removed useless update of p->recent_used_cpu (Phil Auld) [2011436]
+- sched: Always inline is_percpu_thread() (Phil Auld) [2011436]
+- sched/fair: Add ancestors of unthrottled undecayed cfs_rq (Phil Auld) [2011436]
+- sched: Remove unused inline function __rq_clock_broken() (Phil Auld) [2011436]
+- sched: Prevent balance_push() on remote runqueues (Phil Auld) [2011436]
+- cpumask/hotplug: Fix cpu_dying() state tracking (Phil Auld) [2011436]
+- sched: Use cpu_dying() to fix balance_push vs hotplug-rollback (Phil Auld) [2011436]
+- cpumask: Introduce DYING mask (Phil Auld) [2011436]
+- cpumask: Make cpu_{online,possible,present,active}() inline (Phil Auld) [2011436]
+- cpu/hotplug: Cache number of online CPUs (Phil Auld) [2011436]
+- sched: Switch wait_task_inactive to HRTIMER_MODE_REL_HARD (Phil Auld) [2011436]
+- psi: Fix race between psi_trigger_create/destroy (Phil Auld) [2011436]
+- sctp: add vtag check in sctp_sf_ootb (Xin Long) [2001767]
+- sctp: add vtag check in sctp_sf_do_8_5_1_E_sa (Xin Long) [2001767]
+- sctp: add vtag check in sctp_sf_violation (Xin Long) [2001767]
+- sctp: fix the processing for COOKIE_ECHO chunk (Xin Long) [2001767]
+- sctp: fix the processing for INIT_ACK chunk (Xin Long) [2001767]
+- sctp: fix the processing for INIT chunk (Xin Long) [2001767]
+- sctp: use init_tag from inithdr for ABORT chunk (Xin Long) [2001767]
+
+* Mon Nov 22 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-352.el8]
+- KVM: arm64: Extract ESR_ELx.EC only (Gavin Shan) [2008070]
+- KVM: arm64: vgic-v3: Align emulated cpuif LPI state machine with the pseudocode (Gavin Shan) [2008070]
+- KVM: arm64: vgic-v3: Don't advertise ICC_CTLR_EL1.SEIS (Gavin Shan) [2008070]
+- KVM: arm64: Fix reporting of endianess when the access originates at EL0 (Gavin Shan) [2008070]
+- KVM: arm64: Trim guest debug exception handling (Gavin Shan) [2008070]
+- KVM: arm64: Upgrade VMID accesses to {READ,WRITE}_ONCE (Gavin Shan) [2008070]
+- KVM: arm64: vgic: Drop WARN from vgic_get_irq (Gavin Shan) [2008070]
+- KVM: arm64: Enforce reserved bits for PSCI target affinities (Gavin Shan) [2008070]
+- KVM: arm64: Handle PSCI resets before userspace touches vCPU state (Gavin Shan) [2008070]
+- KVM: arm64: Fix read-side race on updates to vcpu reset state (Gavin Shan) [2008070]
+- KVM: arm64: Restore PMU configuration on first run (Gavin Shan) [2008070]
+- KVM: arm64: Don't zero the cycle count register when PMCR_EL0.P is set (Gavin Shan) [2008070]
+- KVM: arm64: Prevent mixed-width VM creation (Gavin Shan) [2008070]
+- KVM: arm64: Fix debug register indexing (Gavin Shan) [2008070]
+- KVM: arm64: Reject VM creation when the default IPA size is unsupported (Gavin Shan) [2008070]
+- KVM: arm64: Limit the debug architecture to ARMv8.0 (Gavin Shan) [2008070]
+- KVM: arm64: Handle SCXTNUM_ELx traps (Gavin Shan) [2008070]
+- arm64: kvm: mte: Hide the MTE CPUID information from the guests (Gavin Shan) [2008070]
+- arm64: mte: Fix typo in macro definition (Gavin Shan) [2008070]
+- arm64/cpufeature: Add remaining feature bits in ID_AA64PFR1 register (Gavin Shan) [2008070]
+- arm64: mte: system register definitions (Gavin Shan) [2008070]
+- arm64: sysreg: Clean up instructions for modifying PSTATE fields (Gavin Shan) [2008070]
+- KVM: arm64: Only reschedule if MMU_NOTIFIER_RANGE_BLOCKABLE is not set (Gavin Shan) [2008070]
+- arm64: kvm: Fix IDMAP overlap with HYP VA (Gavin Shan) [2008070]
+- packet: rework packet_pick_tx_queue() to use common code selection (Petr Oros) [2016477]
+- net: dev: rename queue selection helpers. (Petr Oros) [2016477]
+- Revert "cpuset: Make cpuset hotplug synchronous" (Waiman Long) [2023783]
+- tcp: fix TLP timer not set when CA_STATE changes from DISORDER to OPEN (Paolo Abeni) [2018546]
+- net: Only allow init netns to set default tcp cong to a restricted algo (Paolo Abeni) [2018546]
+- ipv6: tcp: drop silly ICMPv6 packet too big messages (Paolo Abeni) [2018546]
+- tcp: annotate data races around tp->mtu_info (Paolo Abeni) [2018546]
+- net: send SYNACK packet with accepted fwmark (Paolo Abeni) [2018546]
+- tcp: call sk_wmem_schedule before sk_mem_charge in zerocopy path (Paolo Abeni) [2018546]
+- net/tcp_fastopen: fix data races around tfo_active_disable_stamp (Paolo Abeni) [2018546]
+- net/tcp_fastopen: remove obsolete extern (Paolo Abeni) [2018546]
+- net, gro: Set inner transport header offset in tcp/udp GRO hook (Paolo Abeni) [2018546]
+- tcp_bbr: fix u32 wrap bug in round logic if bbr_init() called after 2B packets (Paolo Abeni) [2018546]
+- tcp: seq_file: Avoid skipping sk during tcp_seek_last_pos (Paolo Abeni) [2018546]
+- tcp: fix tp->undo_retrans accounting in tcp_sacktag_one() (Paolo Abeni) [2018546]
+- evm: mark evm_fixmode as __ro_after_init (Bruno Meneguele) [2017155]
+- IMA: remove -Wmissing-prototypes warning (Bruno Meneguele) [2017155]
+- ima: Set correct casting types (Bruno Meneguele) [2017155]
+- evm: Don't return an error in evm_write_xattrs() if audit is not enabled (Bruno Meneguele) [2017155]
+- evm: fix writing <securityfs>/evm overflow (Bruno Meneguele) [2017155]
+- ima: Fix function name error in comment. (Bruno Meneguele) [2017155]
+- ima: Fix the error code for restoring the PCR value (Bruno Meneguele) [2017155]
+- integrity: double check iint_cache was initialized (Bruno Meneguele) [2017155]
+- certs: Fix blacklist flag type confusion (Bruno Meneguele) [2017155]
+- integrity: Make function integrity_add_key() static (Bruno Meneguele) [2017155]
+- ima: Free IMA measurement buffer after kexec syscall (Bruno Meneguele) [2017155]
+- ima: Free IMA measurement buffer on error (Bruno Meneguele) [2017155]
+- evm: Fix memleak in init_desc (Bruno Meneguele) [2017155]
+- crypto: shash - remove shash_desc::flags (Bruno Meneguele) [2017155]
+- ima: Don't modify file descriptor mode on the fly (Bruno Meneguele) [2017155]
+- evm: Check size of security.evm before using it (Bruno Meneguele) [2017155]
+- ima: Remove semicolon at the end of ima_get_binary_runtime_size() (Bruno Meneguele) [2017155]
+- ima: Don't ignore errors from crypto_shash_update() (Bruno Meneguele) [2017155]
+- integrity: remove redundant initialization of variable ret (Bruno Meneguele) [2017155]
+- ima: Fail rule parsing when appraise_flag=blacklist is unsupportable (Bruno Meneguele) [2017155]
+- ima: Fail rule parsing when the KEXEC_CMDLINE hook is combined with an invalid cond (Bruno Meneguele) [2017155]
+- ima: Fail rule parsing when buffer hook functions have an invalid action (Bruno Meneguele) [2017155]
+- ima: Free the entire rule if it fails to parse (Bruno Meneguele) [2017155]
+- ima: Free the entire rule when deleting a list of rules (Bruno Meneguele) [2017155]
+- evm: Fix possible memory leak in evm_calc_hmac_or_hash() (Bruno Meneguele) [2017155]
+- ima: Fix ima digest hash table key calculation (Bruno Meneguele) [2017155]
+- ima: Fix return value of ima_write_policy() (Bruno Meneguele) [2017155]
+- evm: Fix a small race in init_desc() (Bruno Meneguele) [2017155]
+- crypto: drop mask=CRYPTO_ALG_ASYNC from 'shash' tfm allocations (Bruno Meneguele) [2017155]
+- evm: Don't deadlock if a crypto algorithm is unavailable (Bruno Meneguele) [2017155]
+- evm: Check also if *tfm is an error pointer in init_desc() (Bruno Meneguele) [2017155]
+- ima: avoid appraise error for hash calc interrupt (Bruno Meneguele) [2017155]
+- integrity: remove pointless subdir-$(CONFIG_...) (Bruno Meneguele) [2017155]
+- integrity: remove unneeded, broken attempt to add -fshort-wchar (Bruno Meneguele) [2017155]
+- x86/cpu: Fix migration safety with X86_BUG_NULL_SEL (Vitaly Kuznetsov) [2016961]
+- fs/xfs: convert comma to semicolon (Bill O'Donnell) [2009521]
+- xfs: remove xfs_buf_t typedef (Bill O'Donnell) [2009521]
+- xfs: open code updating i_mode in xfs_set_acl (Bill O'Donnell) [2009521]
+- xfs: remove xfs_vn_setattr_nonsize (Bill O'Donnell) [2009521]
+- xfs: remove unneeded return value check for *init_cursor() (Bill O'Donnell) [2009521]
+- xfs: introduce xfs_validate_stripe_geometry() (Bill O'Donnell) [2009521]
+- xfs: show the proper user quota options (Bill O'Donnell) [2009521]
+- xfs: remove the unused XFS_B_FSB_OFFSET macro (Bill O'Donnell) [2009521]
+- xfs: remove unnecessary null check in xfs_generic_create (Bill O'Donnell) [2009521]
+- xfs: directly return if the delta equal to zero (Bill O'Donnell) [2009521]
+- xfs: delete duplicated tp->t_dqinfo null check and allocation (Bill O'Donnell) [2009521]
+- xfs: rename xfs_fc_* back to xfs_fs_* (Bill O'Donnell) [2009521]
+- xfs: refactor file range validation (Bill O'Donnell) [2009521]
+- xfs: refactor realtime volume extent validation (Bill O'Donnell) [2009521]
+- xfs: refactor data device extent validation (Bill O'Donnell) [2009521]
+- xfs: scrub should mark a directory corrupt if any entries cannot be iget'd (Bill O'Donnell) [2009521]
+- xfs: detect overflows in bmbt records (Bill O'Donnell) [2009521]
+- xfs: trace log intent item recovery failures (Bill O'Donnell) [2009521]
+- xfs: validate feature support when recovering rmap/refcount intents (Bill O'Donnell) [2009521]
+- xfs: improve the code that checks recovered extent-free intent items (Bill O'Donnell) [2009521]
+- xfs: hoist recovered extent-free intent checks out of xfs_efi_item_recover (Bill O'Donnell) [2009521]
+- xfs: improve the code that checks recovered refcount intent items (Bill O'Donnell) [2009521]
+- xfs: hoist recovered refcount intent checks out of xfs_cui_item_recover (Bill O'Donnell) [2009521]
+- xfs: improve the code that checks recovered rmap intent items (Bill O'Donnell) [2009521]
+- xfs: hoist recovered rmap intent checks out of xfs_rui_item_recover (Bill O'Donnell) [2009521]
+- xfs: improve the code that checks recovered bmap intent items (Bill O'Donnell) [2009521]
+- xfs: hoist recovered bmap intent checks out of xfs_bui_item_recover (Bill O'Donnell) [2009521]
+- xfs: move kernel-specific superblock validation out of libxfs (Bill O'Donnell) [2009521]
+- platform/x86: amd-pmc: Increase the response register timeout (David Arcari) [2005064]
+- ARM: 9093/1: drivers: firmwapsci: Register with kernel restart handler (Mark Salter) [1996748]
+- arm64/kernel: Remove needless Call Frame Information annotations (Mark Salter) [1996748]
+- arm64: smccc: Add support for SMCCCv1.2 extended input/output registers (Mark Salter) [1996748]
+- psci: Remove unneeded semicolon (Mark Salter) [1996748]
+- firmware: smccc: Add SMCCC TRNG function call IDs (Mark Salter) [1996748]
+- arm64: Add support for SMCCC TRNG entropy source (Mark Salter) [1996748]
+- firmware: smccc: Introduce SMCCC TRNG framework (Mark Salter) [1996748]
+- arm64: random: Remove no longer needed prototypes (Mark Salter) [1996748]
+- arm64: kaslr: Use standard early random function (Mark Salter) [1996748]
+- random: random.h should include archrandom.h, not the other way around (Mark Salter) [1996748]
+- arm64: add credited/trusted RNG support (Mark Salter) [1996748]
+- arm64: Use v8.5-RNG entropy for KASLR seed (Mark Salter) [1996748]
+- arm64: kaslr: Check command line before looking for a seed (Mark Salter) [1996748]
+- arm64: kaslr: Announce KASLR status on boot (Mark Salter) [1996748]
+- psci: Add accessor for psci_0_1_function_ids (Mark Salter) [1996748]
+- psci: Replace psci_function_id array with a struct (Mark Salter) [1996748]
+- psci: Split functions to v0.1 and v0.2+ variants (Mark Salter) [1996748]
+- psci: Support psci_ops.get_version for v0.1 (Mark Salter) [1996748]
+- arm64: psci: Avoid printing in cpu_psci_cpu_die() (Mark Salter) [1996748]
+- firmware: psci: Extend psci_set_osi_mode() to allow reset to PC mode (Mark Salter) [1996748]
+- smccc: Use separate variables for args and results (Mark Salter) [1996748]
+- smccc: Define vendor hyp owned service call region (Mark Salter) [1996748]
+- firmware: smccc: Export both smccc functions (Mark Salter) [1996748]
+- sched,psci: Convert to sched_set_fifo*() (Mark Salter) [1996748]
+- firmware: smccc: Add ARCH_SOC_ID support (Mark Salter) [1996748]
+- base: soc: Add serial_number attribute to soc (Mark Salter) [1996748]
+- drivers/firmware/psci: Assign @err directly in hotplug_tests() (Mark Salter) [1996748]
+- drivers/firmware/psci: Fix memory leakage in alloc_init_cpu_groups() (Mark Salter) [1996748]
+- firmware: smccc: Fix missing prototype warning for arm_smccc_version_init (Mark Salter) [1996748]
+- firmware: smccc: Add function to fetch SMCCC version (Mark Salter) [1996748]
+- firmware: smccc: Refactor SMCCC specific bits into separate file (Mark Salter) [1996748]
+- firmware: smccc: Drop smccc_version enum and use ARM_SMCCC_VERSION_1_x instead (Mark Salter) [1996748]
+- firmware: smccc: Add HAVE_ARM_SMCCC_DISCOVERY to identify SMCCC v1.1 and above (Mark Salter) [1996748]
+- firmware: psci: Replace cpu_up/down() with add/remove_cpu() (Mark Salter) [1996748]
+- firmware: psci: Export functions to manage the OSI mode (Mark Salter) [1996748]
+- arm64: psci: Reduce the waiting time for cpu_psci_cpu_kill() (Mark Salter) [1996748]
+- firmware/psci: use common SMCCC_CONDUIT_* (Mark Salter) [1996748]
+- arm64: smp: disable hotplug on trusted OS resident CPU (Mark Salter) [1996748]
+- PSCI: cpuidle: Refactor CPU suspend power_state parameter handling (Mark Salter) [1996748]
+- ARM: psci: cpuidle: Enable PSCI CPUidle driver (Mark Salter) [1996748]
+- drivers: firmware: psci: Decouple checker from generic ARM CPUidle (Mark Salter) [1996748]
+- firmware/psci: psci_checker: Park kthreads before stopping them (Mark Salter) [1996748]
+- firmware/psci: add support for SYSTEM_RESET2 (Mark Salter) [1996748]
+- drivers: firmware: psci: Announce support for OS initiated suspend mode (Mark Salter) [1996748]
+- drivers: firmware: psci: Simplify error path of psci_dt_init() (Mark Salter) [1996748]
+- drivers: firmware: psci: Split psci_dt_cpu_init_idle() (Mark Salter) [1996748]
+- drivers: firmware: psci: Move psci to separate directory (Mark Salter) [1996748]
+- arm64: remove unused asm/compiler.h header file (Mark Salter) [1996748]
+- ppc64: Adding read_lock definition to nvme (Gopal Tiwari) [1990475]
+- nvme: fix per-namespace chardev deletion (Gopal Tiwari) [1990475]
+- nvme: set the PRACT bit when using Write Zeroes with T10 PI (Gopal Tiwari) [1990475]
+- nvme: fix nvme_setup_command metadata trace event (Gopal Tiwari) [1990475]
+- nvme-pci: don't WARN_ON in nvme_reset_work if ctrl.state is not RESETTING (Gopal Tiwari) [1990475]
+- nvme: fix refcounting imbalance when all paths are down (Gopal Tiwari) [1990475]
+- nvme-pci: do not call nvme_dev_remove_admin from nvme_remove (Gopal Tiwari) [1990475]
+- nvme-pci: fix multiple races in nvme_setup_io_queues (Gopal Tiwari) [1990475]
+- nvme-tcp: use __dev_get_by_name instead dev_get_by_name for OPT_HOST_IFACE (Gopal Tiwari) [1990475]
+- nvme-tcp: can't set sk_user_data without write_lock (Gopal Tiwari) [1990475]
+- nvme: use blk_execute_rq() for passthrough commands (Gopal Tiwari) [1990475]
+- nvmet: use NVMET_MAX_NAMESPACES to set nn value (Gopal Tiwari) [1990475]
+- nvme-pci: remove zeroout memset call for struct (Gopal Tiwari) [1990475]
+- nvme: remove zeroout memset call for struct (Gopal Tiwari) [1990475]
+- nvmet: add ZBD over ZNS backend support (Gopal Tiwari) [1990475]
+- nvmet: remove zeroout memset call for struct (Gopal Tiwari) [1990475]
+- nvmet: use req->cmd directly in file-ns fast path (Gopal Tiwari) [1990475]
+- nvmet: add Command Set Identifier support (Gopal Tiwari) [1990475]
+- nvmet: add nvmet_req_bio put helper for backends (Gopal Tiwari) [1990475]
+- nvmet: use nvme status value directly (Gopal Tiwari) [1990475]
+- nvmet: use u32 for nvmet_subsys max_nsid (Gopal Tiwari) [1990475]
+- nvmet: remove local variable (Gopal Tiwari) [1990475]
+- nvmet: add req cns error complete helper (Gopal Tiwari) [1990475]
+- nvmet: use req->cmd directly in bdev-ns fast path (Gopal Tiwari) [1990475]
+- nvmet: use u32 type for the local variable nsid (Gopal Tiwari) [1990475]
+- nvme-fabrics: remove memset in connect io q (Gopal Tiwari) [1990475]
+- nvme-fabrics: remove memset in nvmf_reg_write32() (Gopal Tiwari) [1990475]
+- nvme-fabrics: remove memset in connect admin q (Gopal Tiwari) [1990475]
+- nvmet: make ver stable once connection established (Gopal Tiwari) [1990475]
+- nvmet: make sn stable once connection was established (Gopal Tiwari) [1990475]
+- nvmet: change sn size and check validity (Gopal Tiwari) [1990475]
+- nvme-tcp: use ctrl sgl check helper (Gopal Tiwari) [1990475]
+- nvmet-fc: do not check for invalid target port in nvmet_fc_handle_fcp_rqst() (Gopal Tiwari) [1990475]
+- nvme-fabrics: remove memset in nvmf_reg_read64() (Gopal Tiwari) [1990475]
+- nvmet: allow mn change if subsys not discovered (Gopal Tiwari) [1990475]
+- nvme-fc: use ctrl sgl check helper (Gopal Tiwari) [1990475]
+- nvme-pci: fix var. type for increasing cq_head (Gopal Tiwari) [1990475]
+- nvme: add a helper to check ctrl sgl support (Gopal Tiwari) [1990475]
+- nvme: factor out a nvme_validate_passthru_nsid helper (Gopal Tiwari) [1990475]
+- nvme-tcp: fix error codes in nvme_tcp_setup_ctrl() (Gopal Tiwari) [1990475]
+- nvme: fix grammar in the CONFIG_NVME_MULTIPATH kconfig help text (Gopal Tiwari) [1990475]
+- nvme: verify MNAN value if ANA is enabled (Gopal Tiwari) [1990475]
+- ACPI: Check StorageD3Enable _DSD property in ACPI code (Gopal Tiwari) [1990475]
+- nvmet: move ka_work initialization to nvmet_alloc_ctrl (Gopal Tiwari) [1990475]
+- nvme: remove nvme_{get,put}_ns_from_disk (Gopal Tiwari) [1990475]
+- nvme: split nvme_report_zones (Gopal Tiwari) [1990475]
+- nvmet: remove a superfluous variable (Gopal Tiwari) [1990475]
+- nvme: open code nvme_put_ns_from_disk in nvme_ns_head_chr_ioctl (Gopal Tiwari) [1990475]
+- nvme: move the CSI sanity check into nvme_ns_report_zones (Gopal Tiwari) [1990475]
+- nvme-fabrics: remove extra braces (Gopal Tiwari) [1990475]
+- nvme: open code nvme_{get,put}_ns_from_disk in nvme_ns_head_ioctl (Gopal Tiwari) [1990475]
+- nvme: add a sparse annotation to nvme_ns_head_ctrl_ioctl (Gopal Tiwari) [1990475]
+- nvme-fabrics: remove an extra comment (Gopal Tiwari) [1990475]
+- nvme-fabrics: remove extra new lines in the switch (Gopal Tiwari) [1990475]
+- nvme: open code nvme_put_ns_from_disk in nvme_ns_head_ctrl_ioctl (Gopal Tiwari) [1990475]
+- nvme: extend and modify the APST configuration algorithm (Gopal Tiwari) [1990475]
+- nvme-tcp: allow selecting the network interface for connections (Gopal Tiwari) [1990475]
+- nvme-fabrics: fix the kerneldco comment for nvmf_log_connect_error() (Gopal Tiwari) [1990475]
+- nvme: remove redundant initialization of variable ret (Gopal Tiwari) [1990475]
+- nvmet: fix freeing unallocated p2pmem (Gopal Tiwari) [1990475]
+- nvme-loop: reset queue count to 1 in nvme_loop_destroy_io_queues() (Gopal Tiwari) [1990475]
+- nvme-loop: do not warn for deleted controllers during reset (Gopal Tiwari) [1990475]
+- nvme-loop: check for NVME_LOOP_Q_LIVE in nvme_loop_destroy_admin_queue() (Gopal Tiwari) [1990475]
+- nvme-loop: clear NVME_LOOP_Q_LIVE when nvme_loop_configure_admin_queue() fails (Gopal Tiwari) [1990475]
+- nvme-rdma: fix in-casule data send for chained sgls (Gopal Tiwari) [1990475]
+- nvmet: fix false keep-alive timeout when a controller is torn down (Gopal Tiwari) [1990475]
+- nvmet-tcp: fix inline data size comparison in nvmet_tcp_queue_response (Gopal Tiwari) [1990475]
+- nvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVME (Gopal Tiwari) [1990475]
+- nvme-fabrics: decode host pathing error for connect (Gopal Tiwari) [1990475]
+- nvme-fc: short-circuit reconnect retries (Gopal Tiwari) [1990475]
+- nvme: fix potential memory leaks in nvme_cdev_add (Gopal Tiwari) [1990475]
+- nvme-fc: clear q_live at beginning of association teardown (Gopal Tiwari) [1990475]
+- nvme-tcp: rerun io_work if req_list is not empty (Gopal Tiwari) [1990475]
+- nvme-tcp: fix possible use-after-completion (Gopal Tiwari) [1990475]
+- nvme-loop: fix memory leak in nvme_loop_create_ctrl() (Gopal Tiwari) [1990475]
+- nvmet: fix memory leak in nvmet_alloc_ctrl() (Gopal Tiwari) [1990475]
+- nvmet: seset ns->file when open fails (Gopal Tiwari) [1990475]
+- nvmet: demote fabrics cmd parse err msg to debug (Gopal Tiwari) [1990475]
+- nvmet: fix inline bio check for passthru (Gopal Tiwari) [1990475]
+- nvmet: fix inline bio check for bdev-ns (Gopal Tiwari) [1990475]
+- nvmet: use helper to remove the duplicate code (Gopal Tiwari) [1990475]
+- nvmet: demote discovery cmd parse err msg to debug (Gopal Tiwari) [1990475]
+- nvmet: remove unsupported command noise (Gopal Tiwari) [1990475]
+- nvme-pci: fix controller reset hang when racing with nvme_timeout (Gopal Tiwari) [1990475]
+- nvme: move the fabrics queue ready check routines to core (Gopal Tiwari) [1990475]
+- nvme: avoid memset for passthrough requests (Gopal Tiwari) [1990475]
+- nvme: add nvme_get_ns helper (Gopal Tiwari) [1990475]
+- nvme: fix controller ioctl through ns_head (Gopal Tiwari) [1990475]
+- nvme: introduce generic per-namespace chardev (Gopal Tiwari) [1990475]
+- nvme: cleanup nvme_configure_apst (Gopal Tiwari) [1990475]
+- nvme: do not try to reconfigure APST when the controller is not live (Gopal Tiwari) [1990475]
+- nvme: sanitize KATO setting (Gopal Tiwari) [1990475]
+- nvmet: avoid queuing keep-alive timer if it is disabled (Gopal Tiwari) [1990475]
+- nvme: fix NULL derefence in nvme_ctrl_fast_io_fail_tmo_show/store (Gopal Tiwari) [1990475]
+- nvme: let namespace probing continue for unsupported features (Gopal Tiwari) [1990475]
+- nvme: factor out nvme_ns_open and nvme_ns_release helpers (Gopal Tiwari) [1990475]
+- nvme: move nvme_ns_head_ops to multipath.c (Gopal Tiwari) [1990475]
+- nvme: factor out a nvme_tryget_ns_head helper (Gopal Tiwari) [1990475]
+- nvme: move the ioctl code to a separate file (Gopal Tiwari) [1990475]
+- nvme: don't bother to look up a namespace for controller ioctls (Gopal Tiwari) [1990475]
+- nvme: simplify block device ioctl handling for the !multipath case (Gopal Tiwari) [1990475]
+- nvme: simplify the compat ioctl handling (Gopal Tiwari) [1990475]
+- nvme-multipath: remove single trailing whitespace (Gopal Tiwari) [1990475]
+- nvme: pass a user pointer to nvme_nvm_ioctl (Gopal Tiwari) [1990475]
+- nvme: factor out a nvme_ns_ioctl helper (Gopal Tiwari) [1990475]
+- nvme: cleanup setting the disk name (Gopal Tiwari) [1990475]
+- nvme: remove single trailing whitespace (Gopal Tiwari) [1990475]
+- nvme-pci: remove single trailing whitespace (Gopal Tiwari) [1990475]
+- nvme: add a nvme_ns_head_multipath helper (Gopal Tiwari) [1990475]
+- nvmet: fix a spelling mistake "nubmer" -> "number" (Gopal Tiwari) [1990475]
+- nvmet-fc: simplify nvmet_fc_alloc_hostport (Gopal Tiwari) [1990475]
+- nvmet-tcp: fix a segmentation fault during io parsing error (Gopal Tiwari) [1990475]
+- lightnvm: use kobj_to_dev() (Gopal Tiwari) [1990475]
+- nvme: fix handling of large MDTS values (Gopal Tiwari) [1990475]
+- nvme: implement non-mdts command limits (Gopal Tiwari) [1990475]
+- nvme: disallow passthru cmd from targeting a nsid != nsid of the block dev (Gopal Tiwari) [1990475]
+- nvme: use sysfs_emit instead of sprintf (Gopal Tiwari) [1990475]
+- nvme-fc: check sgl supported by target (Gopal Tiwari) [1990475]
+- nvme: remove superfluous else in nvme_ctrl_loss_tmo_store (Gopal Tiwari) [1990475]
+- nvme: warn of unhandled effects only once (Gopal Tiwari) [1990475]
+- nvmet-tcp: enable optional queue idle period tracking (Gopal Tiwari) [1990475]
+- nvmet-tcp: fix incorrect locking in state_change sk callback (Gopal Tiwari) [1990475]
+- nvme-tcp: block BH in sk state_change sk callback (Gopal Tiwari) [1990475]
+- nvmet: return proper error code from discovery ctrl (Gopal Tiwari) [1990475]
+- nvme-tcp: check sgl supported by target (Gopal Tiwari) [1990475]
+- nvme: use driver pdu command for passthrough (Gopal Tiwari) [1990475]
+- nvmet: remove unnecessary ctrl parameter (Gopal Tiwari) [1990475]
+- nvmet-fc: update function documentation (Gopal Tiwari) [1990475]
+- nvme-pci: allocate nvme_command within driver pdu (Gopal Tiwari) [1990475]
+- nvmet: do not allow model_number exceed 40 bytes (Gopal Tiwari) [1990475]
+- nvme-fc: fix the function documentation comment (Gopal Tiwari) [1990475]
+- nvme: add new line after variable declatation (Gopal Tiwari) [1990475]
+- nvme: don't check nvme_req flags for new req (Gopal Tiwari) [1990475]
+- nvme: mark nvme_setup_passsthru() inline (Gopal Tiwari) [1990475]
+- nvme: split init identify into helper (Gopal Tiwari) [1990475]
+- nvme: rename nvme_init_identify() (Gopal Tiwari) [1990475]
+- nvme: reduce checks for zero command effects (Gopal Tiwari) [1990475]
+- nvmet: update error log page in nvmet_alloc_ctrl() (Gopal Tiwari) [1990475]
+- nvmet: remove an unnecessary function parameter to nvmet_check_ctrl_status (Gopal Tiwari) [1990475]
+- nvmet: remove a duplicate status assignment in nvmet_alloc_ctrl (Gopal Tiwari) [1990475]
+- nvmet: replace white spaces with tabs (Gopal Tiwari) [1990475]
+- nvme: use NVME_CTRL_CMIC_ANA macro (Gopal Tiwari) [1990475]
+- nvme-pci: cleanup nvme_irq() (Gopal Tiwari) [1990475]
+- nvme-pci: remove the barriers in nvme_irq() (Gopal Tiwari) [1990475]
+- nvmet-tcp: fix kmap leak when data digest in use (Gopal Tiwari) [1990475]
+- nvmet: don't check iosqes,iocqes for discovery controllers (Gopal Tiwari) [1990475]
+- nvme-tcp: fix a NULL deref when receiving a 0-length r2t PDU (Gopal Tiwari) [1990475]
+- nvme-rdma: fix possible hang when failing to set io queues (Gopal Tiwari) [1990475]
+- nvme-tcp: fix possible hang when failing to set io queues (Gopal Tiwari) [1990475]
+- nvme-fabrics: only reserve a single tag (Gopal Tiwari) [1990475]
+- nvme: allocate the keep alive request using BLK_MQ_REQ_NOWAIT (Gopal Tiwari) [1990475]
+- nvme: merge nvme_keep_alive into nvme_keep_alive_work (Gopal Tiwari) [1990475]
+- nvme-hwmon: Return error code when registration fails (Gopal Tiwari) [1990475]
+- nvme: update enumerations for status codes (Gopal Tiwari) [1990475]
+
+* Sat Nov 20 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-351.el8]
+- scsi: mpt3sas: Fix incorrectly assigned error return and check (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Introduce sas_ncq_prio_supported sysfs sttribute (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Update driver version to 39.100.00.00 (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Use firmware recommended queue depth (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Bump driver version to 38.100.00.00 (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Transition IOC to Ready state during shutdown (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Fix error return value in _scsih_expander_add() (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Fix Coverity reported issue (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Fix fall-through warnings for Clang (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Handle firmware faults during second half of IOC init (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Handle firmware faults during first half of IOC init (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Fix deadlock while cancelling the running firmware event (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Documentation cleanup (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Fix two kernel-doc headers (Tomas Henzl) [1990535]
+- scsi: mpt3sas: Fix out-of-bounds warnings in _ctl_addnl_diag_query (Tomas Henzl) [1990535]
+- scsi: megaraid_sas: Driver version update to 07.719.03.00-rc1 (Tomas Henzl) [1989643]
+- scsi: megaraid_sas: Add helper functions for irq_context (Tomas Henzl) [1989643]
+- scsi: megaraid: Clean up some inconsistent indenting (Tomas Henzl) [1989643]
+- scsi: megaraid: Fix Coccinelle warning (Tomas Henzl) [1989643]
+- IB/cma: Do not send IGMP leaves for sendonly Multicast groups (Kamal Heib) [2007269]
+- hv_netvsc: Add comment of netvsc_xdp_xmit() (Mohammed Gamal) [2008560]
+- hv_netvsc: use netif_is_bond_master() instead of open code (Mohammed Gamal) [2008560]
+- hv_netvsc: Avoid field-overflowing memcpy() (Mohammed Gamal) [2008560]
+- hv_netvsc: Set needed_headroom according to VF (Mohammed Gamal) [2008560]
+- netfilter: conntrack: fix error path in nf_conntrack_pernet_init() (Florian Westphal) [1922568]
+- netfilter: nf_conntrack: provide modparam to always register conntrack hooks (Florian Westphal) [1922568]
+- sctp: return true only for pathmtu update in sctp_transport_pl_toobig (Xin Long) [1890383]
+- sctp: subtract sctphdr len in sctp_transport_pl_hlen (Xin Long) [1890383]
+- sctp: reset probe_timer in sctp_transport_pl_update (Xin Long) [1890383]
+- sctp: allow IP fragmentation when PLPMTUD enters Error state (Xin Long) [1890383]
+- sctp: send pmtu probe only if packet loss in Search Complete state (Xin Long) [1890383]
+- sctp: improve the code for pmtu probe send and recv update (Xin Long) [1890383]
+- sctp: prevent info leak in sctp_make_heartbeat() (Xin Long) [1890383]
+- sctp: check pl.raise_count separately from its increment (Xin Long) [1890383]
+- sctp: send the next probe immediately once the last one is acked (Xin Long) [1890383]
+- sctp: do black hole detection in search complete state (Xin Long) [1890383]
+- sctp: process sctp over udp icmp err on sctp side (Xin Long) [1890383]
+- sctp: extract sctp_v4_err_handle function from sctp_v4_err (Xin Long) [1890383]
+- sctp: extract sctp_v6_err_handle function from sctp_v6_err (Xin Long) [1890383]
+- sctp: remove the unessessary hold for idev in sctp_v6_err (Xin Long) [1890383]
+- sctp: enable PLPMTUD when the transport is ready (Xin Long) [1890383]
+- sctp: do state transition when receiving an icmp TOOBIG packet (Xin Long) [1890383]
+- sctp: do state transition when a probe succeeds on HB ACK recv path (Xin Long) [1890383]
+- sctp: do state transition when PROBE_COUNT == MAX_PROBES on HB send path (Xin Long) [1890383]
+- sctp: do the basic send and recv for PLPMTUD probe (Xin Long) [1890383]
+- sctp: add the probe timer in transport for PLPMTUD (Xin Long) [1890383]
+- sctp: add the constants/variables and states and some APIs for transport (Xin Long) [1890383]
+- sctp: add SCTP_PLPMTUD_PROBE_INTERVAL sockopt for sock/asoc/transport (Xin Long) [1890383]
+- sctp: add probe_interval in sysctl and sock/asoc/transport (Xin Long) [1890383]
+- sctp: add pad chunk and its make function and event table (Xin Long) [1890383]
+- blk-mq: still set q->make_request_fn for blk-mq (Ming Lei) [1999728]
+- PCI: Add AMD RS690 quirk to enable 64-bit DMA (Myron Stowe) [1993279]
+- PCI: Add ACS quirk for Broadcom BCM57414 NIC (Myron Stowe) [1993279]
+- PCI: Mark some NVIDIA GPUs to avoid bus reset (Myron Stowe) [1993279]
+- PCI: of: Clear 64-bit flag for non-prefetchable memory below 4GB (Myron Stowe) [1993279]
+- x86/PCI: Remove unused alloc_pci_root_info() return value (Myron Stowe) [1993279]
+- PCI: Delay after FLR of Intel DC P4510 NVMe (Myron Stowe) [1993279]
+- PCI: Delay after FLR of Intel DC P3700 NVMe (Myron Stowe) [1993279]
+- PCI: Disable Samsung SM961/PM961 NVMe before FLR (Myron Stowe) [1993279]
+- PCI/sysfs: Use sysfs_emit() and sysfs_emit_at() in "show" functions (Myron Stowe) [1993279]
+- PCI/sysfs: Rearrange smbios_attr_group and acpi_attr_group (Myron Stowe) [1993279]
+- PCI/sysfs: Tidy SMBIOS & ACPI label attributes (Myron Stowe) [1993279]
+- PCI/sysfs: Convert "index", "acpi_index", "label" to static attributes (Myron Stowe) [1993279]
+- PCI/sysfs: Define SMBIOS label attributes with DEVICE_ATTR*() (Myron Stowe) [1993279]
+- PCI/sysfs: Define ACPI label attributes with DEVICE_ATTR*() (Myron Stowe) [1993279]
+- PCI/sysfs: Rename device_has_dsm() to device_has_acpi_name() (Myron Stowe) [1993279]
+- PCI/sysfs: Convert "vpd" to static attribute (Myron Stowe) [1993279]
+- PCI/sysfs: Rename "vpd" attribute accessors (Myron Stowe) [1993279]
+- PCI/sysfs: Convert "reset" to static attribute (Myron Stowe) [1993279]
+- PCI/sysfs: Convert "rom" to static attribute (Myron Stowe) [1993279]
+- PCI/sysfs: Convert "config" to static attribute (Myron Stowe) [1993279]
+- PCI: Allow VPD access for QLogic ISP2722 (Myron Stowe) [1993279]
+- PCI/VPD: Add helper pci_get_func0_dev() (Myron Stowe) [1993279]
+- PCI/VPD: Remove pci_vpd_find_tag() SRDT handling (Myron Stowe) [1993279]
+- PCI/VPD: Remove pci_vpd_find_tag() 'offset' argument (Myron Stowe) [1993279]
+- PCI/VPD: Change pci_vpd_init() return type to void (Myron Stowe) [1993279]
+- PCI/VPD: Make missing VPD message less alarming (Myron Stowe) [1993279]
+- PCI/VPD: Remove pci_set_vpd_size() (Myron Stowe) [1993279]
+- PCI/VPD: Remove sysfs accessor size checking dead code (Myron Stowe) [1993279]
+- PCI/VPD: Remove obsolete Broadcom NIC quirk (Myron Stowe) [1993279]
+- PCI/ACPI: Fix acpi_pci_set_power_state() debug message (Myron Stowe) [1993279]
+- PCI: acpiphp: Fix whitespace issue (Myron Stowe) [1993279]
+- PCI: shpchp: Remove unused shpc_writeb() (Myron Stowe) [1993279]
+- PCI: cpqphp: Use DEFINE_SPINLOCK() for int15_lock (Myron Stowe) [1993279]
+- ACPI / hotplug / PCI: Fix reference count leak in enable_slot() (Myron Stowe) [1993279]
+- PCI: Add pci_disable_parity() (Myron Stowe) [1993279]
+- PCI: Release OF node in pci_scan_device()'s error path (Myron Stowe) [1993279]
+- fs: dlm: fix check for multi-homed hosts (Alexander Aring) [1889887]
+- iommu: remove iommu_domain_{get,set}_attr (Jerry Snitselaar) [2004349]
+- iommu/fsl_pamu: enable the liodn when attaching a device (Jerry Snitselaar) [2004349]
+- iommu/fsl_pamu: replace DOMAIN_ATTR_FSL_PAMU_STASH with a direct call (Jerry Snitselaar) [2004349]
+- iommu/fsl_pamu: remove ->domain_window_enable (Jerry Snitselaar) [2004349]
+- iommu/fsl_pamu: remove support for multiple windows (Jerry Snitselaar) [2004349]
+- iommu/fsl_pamu: remove fsl_pamu_get_domain_attr (Jerry Snitselaar) [2004349]
+- iommu: remove the unused domain_window_disable method (Jerry Snitselaar) [2004349]
+- iommu: Remove .domain_{get,set}_windows (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Decrease the queue size of evtq and priq (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Use pasid_pte_is_present() helper function (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Update the virtual command related registers (Jerry Snitselaar) [2004349]
+- ACPI: IORT: Handle device properties with software node API (Jerry Snitselaar) [2004349]
+- iommu: Update "iommu.strict" documentation (Jerry Snitselaar) [2004349]
+- iommu/dma: Remove redundant "!dev" checks (Jerry Snitselaar) [2004349]
+- iommu/virtio: Drop IOVA cookie management (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Drop IOVA cookie management (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Drop IOVA cookie management (Jerry Snitselaar) [2004349]
+- iommu/amd: Drop IOVA cookie management (Jerry Snitselaar) [2004349]
+- iommu: Pull IOVA cookie management into the core (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Stop pre-zeroing batch commands (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Extract reusable function __arm_smmu_cmdq_skip_err() (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Add and use static helper function arm_smmu_get_cmdq() (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Remove some unneeded init in arm_smmu_cmdq_issue_cmdlist() (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Add and use static helper function arm_smmu_cmdq_issue_cmd_with_sync() (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Use command queue batching helpers to improve performance (Jerry Snitselaar) [2004349]
+- iommu/amd: Use only natural aligned flushes in a VM (Jerry Snitselaar) [2004349]
+- iommu/amd: Sync once for scatter-gather operations (Jerry Snitselaar) [2004349]
+- iommu/amd: Tailored gather logic for AMD (Jerry Snitselaar) [2004349]
+- iommu: Factor iommu_iotlb_gather_is_disjoint() out (Jerry Snitselaar) [2004349]
+- iommu: Improve iommu_iotlb_gather helpers (Jerry Snitselaar) [2004349]
+- iommu/amd: Do not use flush-queue when NpCache is on (Jerry Snitselaar) [2004349]
+- iommu/amd: Selective flush on unmap (Jerry Snitselaar) [2004349]
+- iommu/amd: Convert from atomic_t to refcount_t on pasid_state->count (Jerry Snitselaar) [2004349]
+- iommu: Streamline iommu_iova_to_phys() (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Allow devices to have more than 32 outstanding PRs (Jerry Snitselaar) [1920744]
+- iommu/vt-d: Drop "0x" prefix from PCI bus & device addresses (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Fix a deadlock in intel_svm_drain_prq() (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Fix PASID leak in intel_svm_unbind_mm() (Jerry Snitselaar) [2004349]
+- iommu/amd: Fix printing of IOMMU events when rate limiting kicks in (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Fix missing unlock on error in arm_smmu_device_group() (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Fix race condition during iommu_group creation (Jerry Snitselaar) [2004349]
+- iommu: Fix race condition during default domain allocation (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Implement the map_pages() IOMMU driver callback (Jerry Snitselaar) [1971977]
+- iommu/arm-smmu-v3: Implement the unmap_pages() IOMMU driver callback (Jerry Snitselaar) [1971977]
+- iommu/vt-d: Move clflush'es from iotlb_sync_map() to map_pages() (Jerry Snitselaar) [1971977]
+- iommu/vt-d: Implement map/unmap_pages() iommu_ops callback (Jerry Snitselaar) [1971977]
+- iommu/vt-d: Report real pgsize bitmap to iommu core (Jerry Snitselaar) [1971977]
+- iommu/arm-smmu: Implement the map_pages() IOMMU driver callback (Jerry Snitselaar) [1971977]
+- iommu/arm-smmu: Implement the unmap_pages() IOMMU driver callback (Jerry Snitselaar) [1971977]
+- iommu/io-pgtable-arm: Implement arm_lpae_map_pages() (Jerry Snitselaar) [1971977]
+- iommu/io-pgtable-arm: Implement arm_lpae_unmap_pages() (Jerry Snitselaar) [1971977]
+- iommu/io-pgtable-arm: Prepare PTE methods for handling multiple entries (Jerry Snitselaar) [1971977]
+- iommu: Add support for the map_pages() callback (Jerry Snitselaar) [1971977]
+- iommu: Hook up '->unmap_pages' driver callback (Jerry Snitselaar) [1971977]
+- iommu: Split 'addr_merge' argument to iommu_pgsize() into separate parts (Jerry Snitselaar) [1971977]
+- iommu: Use bitmap to calculate page size in iommu_pgsize() (Jerry Snitselaar) [1971977]
+- iommu: Add a map_pages() op for IOMMU drivers (Jerry Snitselaar) [1971977]
+- iommu/io-pgtable: Introduce map_pages() as a page table op (Jerry Snitselaar) [1971977]
+- iommu: Add an unmap_pages() op for IOMMU drivers (Jerry Snitselaar) [1971977]
+- iommu/io-pgtable: Introduce unmap_pages() as a page table op (Jerry Snitselaar) [1971977]
+- iommu/vt-d: Fix incomplete cache flush in intel_pasid_tear_down_entry() (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Fix PASID reference leak (Jerry Snitselaar) [2004349]
+- iommu: Check if group is NULL before remove device (Jerry Snitselaar) [2004349]
+- iommu/dma: Fix leak in non-contiguous API (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Fix fall-through warning for Clang (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Fix clearing real DMA device's scalable-mode context entries (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Global devTLB flush when present context entry changed (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Use Tegra implementation on Tegra186 (Jerry Snitselaar) [2004349]
+- iommu: Delete a duplicate check in iommu_change_dev_def_domain() (Jerry Snitselaar) [2004349]
+- iommu/dma: Fix compile warning in 32-bit builds (Jerry Snitselaar) [2004349]
+- iommu: Drop unnecessary of_iommu.h includes (Jerry Snitselaar) [2004349]
+- iommu: Remove unused of_get_dma_window() (Jerry Snitselaar) [2004349]
+- iommu/iova: Put free_iova_mem() outside of spinlock iova_rbtree_lock (Jerry Snitselaar) [2004349]
+- iommu/dma: Fix IOVA reserve dma ranges (Jerry Snitselaar) [2004349]
+- iommu/virtio: Enable x86 support (Jerry Snitselaar) [2004349]
+- iommu/dma: Pass address limit rather than size to iommu_setup_dma_ops() (Jerry Snitselaar) [2004349]
+- iommu/amd: Fix section mismatch warning for detect_ivrs() (Jerry Snitselaar) [2004349]
+- iommu/amd: Add amd_iommu=force_enable option (Jerry Snitselaar) [2004349]
+- iommu/amd: Fix extended features logging (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Fix dereference of pointer info before it is null checked (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Fix linker error on 32-bit (Jerry Snitselaar) [2004349]
+- iommu/vt-d: No need to typecast (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Define counter explicitly as unsigned int (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Remove unnecessary braces (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Removed unused iommu_count in dmar domain (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Use bitfields for DMAR capabilities (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Use DEVICE_ATTR_RO macro (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Fix out-bounds-warning in intel/svm.c (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Add PRQ handling latency sampling (Jerry Snitselaar) [1971935]
+- iommu/vt-d: Add cache invalidation latency sampling (Jerry Snitselaar) [1971935]
+- iommu/vt-d: Expose latency monitor data through debugfs (Jerry Snitselaar) [1971935]
+- iommu/vt-d: Add common code for dmar latency performance monitors (Jerry Snitselaar) [1971935]
+- iommu/vt-d: Add prq_report trace event (Jerry Snitselaar) [1971973]
+- iommu/vt-d: Report prq to io-pgfault framework (Jerry Snitselaar) [1971971]
+- iommu/vt-d: Allocate/register iopf queue for sva devices (Jerry Snitselaar) [1971971]
+- iommu/vt-d: Refactor prq_event_thread() (Jerry Snitselaar) [1971971]
+- iommu/vt-d: Use common helper to lookup svm devices (Jerry Snitselaar) [1971971]
+- iommu/vt-d: Use iommu_sva_alloc(free)_pasid() helpers (Jerry Snitselaar) [1971971]
+- iommu/vt-d: Add pasid private data helpers (Jerry Snitselaar) [1971971]
+- iommu/vt-d: Support asynchronous IOMMU nested capabilities (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Select PCI_ATS explicitly (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Tweak the description of a DMA fault (Jerry Snitselaar) [1971975]
+- iommu/vt-d: Fix kernel-doc syntax in file header (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Remove redundant assignment to variable agaw (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Check smmu->impl pointer before dereferencing (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Implement ->probe_finalize() (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Remove unnecessary oom message (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get fails (Jerry Snitselaar) [2004349]
+- PM: runtime: Add documentation for pm_runtime_resume_and_get() (Jerry Snitselaar) [2004349]
+- PM: runtime: Add pm_runtime_resume_and_get to deal with usage counter (Jerry Snitselaar) [2004349]
+- iommu/arm: Cleanup resources in case of probe error path (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Ratelimit event dump (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Add stall support for platform devices (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Change *array into *const array (Jerry Snitselaar) [2004349]
+- iommu/amd: Remove redundant assignment of err (Jerry Snitselaar) [2004349]
+- iommu/amd: Tidy up DMA ops init (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu: Add support for driver IOMMU fault handlers (Jerry Snitselaar) [2004349]
+- iommu/virtio: Add missing MODULE_DEVICE_TABLE (Jerry Snitselaar) [2004349]
+- iommu/amd: Fix wrong parentheses on page-specific invalidations (Jerry Snitselaar) [2004349]
+- iommu: Streamline registration interface (Jerry Snitselaar) [2004349]
+- iommu: Statically set module owner (Jerry Snitselaar) [2004349]
+- iommu: remove DOMAIN_ATTR_IO_PGTABLE_CFG (Jerry Snitselaar) [2004349]
+- iommu: remove DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE (Jerry Snitselaar) [2004349]
+- iommu: remove iommu_set_cmd_line_dma_api and iommu_cmd_line_dma_api (Jerry Snitselaar) [2004349]
+- iommu: remove DOMAIN_ATTR_NESTING (Jerry Snitselaar) [2004349]
+- iommu: remove DOMAIN_ATTR_GEOMETRY (Jerry Snitselaar) [2004349]
+- iommu: remove DOMAIN_ATTR_PAGING (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Maintain a SID->device structure (Jerry Snitselaar) [2004349]
+- iommu: Add a page fault handler (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Support IOMMU_DEV_FEAT_IOPF (Jerry Snitselaar) [2004349]
+- iommu: Separate IOMMU_DEV_FEAT_IOPF from IOMMU_DEV_FEAT_SVA (Jerry Snitselaar) [2004349]
+- iommu/arm-smmu-v3: Use device properties for pasid-num-bits (Jerry Snitselaar) [2004349]
+- of/device: Add input id to of_dma_configure() (Jerry Snitselaar) [2004349]
+- of/iommu: Make of_map_rid() PCI agnostic (Jerry Snitselaar) [2004349]
+- iommu: Fix comment for struct iommu_fwspec (Jerry Snitselaar) [2004349]
+- iommu/amd: Remove duplicate check of devid (Jerry Snitselaar) [2004349]
+- iommu/amd: Page-specific invalidations for more than one page (Jerry Snitselaar) [2004349]
+- iommu/amd: Move a few prototypes to include/linux/amd-iommu.h (Jerry Snitselaar) [2004349]
+- iommu/amd: Remove a few unused exports (Jerry Snitselaar) [2004349]
+- iommu/amd: Remove the unused amd_iommu_get_v2_domain function (Jerry Snitselaar) [2004349]
+- iommu/amd: Remove the unused device errata code (Jerry Snitselaar) [2004349]
+- iommu/amd: Remove duplicate check of pasids (Jerry Snitselaar) [2004349]
+- iommu/vt-d: Fix lockdep splat in intel_pasid_get_entry() (Jerry Snitselaar) [2004349]
+- iommu/amd: Remove iommu_init_ga() (Jerry Snitselaar) [1998265]
+- iommu/amd: Relocate GAMSup check to early_enable_iommus (Jerry Snitselaar) [1998265]
+- x86/Kconfig: Do not enable AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT automatically (Prarit Bhargava) [2021219]
+- hyper-v: Replace uuid.h with types.h (Mohammed Gamal) [2008563]
+- x86/hyperv: Avoid erroneously sending IPI to 'self' (Mohammed Gamal) [2008563]
+- asm-generic/hyperv: provide cpumask_to_vpset_noself (Mohammed Gamal) [2008563]
+- asm-generic/hyperv: Add missing function prototypes per -W1 warnings (Mohammed Gamal) [2008563]
+- hv: hyperv.h: Remove unused inline functions (Mohammed Gamal) [2008563]
+- hv: hyperv.h: a few mundane typo fixes (Mohammed Gamal) [2008563]
+- hv: hyperv.h: Replace one-element array with flexible-array in struct icmsg_negotiate (Mohammed Gamal) [2008563]
+- x86/hyperv: add comment describing TSC_INVARIANT_CONTROL MSR setting bit 0 (Mohammed Gamal) [2008563]
+- x86/hyperv: fix for unwanted manipulation of sched_clock when TSC marked unstable (Mohammed Gamal) [2008563]
+- hyperv: Detect Nested virtualization support for SVM (Mohammed Gamal) [2008563]
+- hyperv: SVM enlightened TLB flush support flag (Mohammed Gamal) [2008563]
+- x86/hyperv: remove on-stack cpumask from hv_send_ipi_mask_allbutself (Mohammed Gamal) [2008563]
+- drivers: hv: Create a consistent pattern for checking Hyper-V hypercall status (Mohammed Gamal) [2008563]
+- x86/hyperv: remove unused linux/version.h header (Mohammed Gamal) [2008563]
+- x86/hyperv: Fix unused variable 'hi' warning in hv_apic_read (Mohammed Gamal) [2008563]
+- x86/hyperv: Fix unused variable 'msr_val' warning in hv_qlock_wait (Mohammed Gamal) [2008563]
+- PCI: hv: Fix sleep while in non-sleep context when removing child devices from the bus (Mohammed Gamal) [2008562]
+- PCI: hv: Add check for hyperv_initialized in init_hv_pci_drv() (Mohammed Gamal) [2008562]
+- PCI: hv: Drop msi_controller structure (Mohammed Gamal) [2008562]
+- PCI/IOV: Add sysfs MSI-X vector assignment interface (Myron Stowe) [2019087]
+- x86: ACPI: cstate: Optimize C3 entry on AMD CPUs (David Arcari) [1998529]
+- Bluetooth: Move shutdown callback before flushing tx and rx queue (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: check conditions before enabling USB ALT 3 for WBS (Gopal Tiwari) [1990477]
+- Bluetooth: Fix VIRTIO_ID_BT assigned number (Gopal Tiwari) [1990477]
+- Bluetooth: mgmt: Fix wrong opcode in the response for add_adv cmd (Gopal Tiwari) [1990477]
+- Bluetooth: defer cleanup of resources in hci_unregister_dev() (Gopal Tiwari) [1990477]
+- Bluetooth: Increment management interface revision (Gopal Tiwari) [1990477]
+- Bluetooth: Fix handling of HCI_LE_Advertising_Set_Terminated event (Gopal Tiwari) [1990477]
+- Bluetooth: Fix Set Extended (Scan Response) Data (Gopal Tiwari) [1990477]
+- Bluetooth: use inclusive language when filtering devices (Gopal Tiwari) [1990477]
+- Bluetooth: smp: Use the correct print format (Gopal Tiwari) [1990477]
+- Bluetooth: use inclusive language in HCI role comments (Gopal Tiwari) [1990477]
+- Bluetooth: use inclusive language when tracking connections (Gopal Tiwari) [1990477]
+- Bluetooth: sco: Use the correct print format (Gopal Tiwari) [1990477]
+- Bluetooth: a2mp: Use the correct print format (Gopal Tiwari) [1990477]
+- Bluetooth: 6lowpan: Use the correct print format (Gopal Tiwari) [1990477]
+- Bluetooth: amp: Use the correct print format (Gopal Tiwari) [1990477]
+- Bluetooth: cmtp: Use the correct print format (Gopal Tiwari) [1990477]
+- Bluetooth: bnep: Use the correct print format (Gopal Tiwari) [1990477]
+- Bluetooth: hidp: Use the correct print format (Gopal Tiwari) [1990477]
+- Bluetooth: use inclusive language in comments (Gopal Tiwari) [1990477]
+- Bluetooth: use inclusive language in SMP (Gopal Tiwari) [1990477]
+- Bluetooth: use inclusive language in HCI LE features (Gopal Tiwari) [1990477]
+- Bluetooth: use inclusive language to describe CPB (Gopal Tiwari) [1990477]
+- Bluetooth: mgmt: Fix slab-out-of-bounds in tlv_data_is_valid (Gopal Tiwari) [1990477]
+- Bluetooth: disable filter dup when scan for adv monitor (Gopal Tiwari) [1990477]
+- Bluetooth: mgmt: Fix the command returns garbage parameter value (Gopal Tiwari) [1990477]
+- Bluetooth: RFCOMM: Use DEVICE_ATTR_RO macro (Gopal Tiwari) [1990477]
+- Bluetooth: Translate additional address type during le_conn_comp (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: Fix invalid access on ECRED Connection response (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: Fix invalid access if ECRED Reconfigure fails (Gopal Tiwari) [1990477]
+- Bluetooth: Remove spurious error message (Gopal Tiwari) [1990477]
+- Bluetooth: Shutdown controller after workqueues are flushed or cancelled (Gopal Tiwari) [1990477]
+- Bluetooth: Add ncmd=0 recovery handling (Gopal Tiwari) [1990477]
+- Bluetooth: 6lowpan: remove unused function (Gopal Tiwari) [1990477]
+- Bluetooth: Fix alt settings for incoming SCO with transparent coding format (Gopal Tiwari) [1990477]
+- Bluetooth: Fix the HCI to MGMT status conversion table (Gopal Tiwari) [1990477]
+- Bluetooth: cmtp: fix file refcount when cmtp_attach_device fails (Gopal Tiwari) [1990477]
+- Bluetooth: 6lowpan: delete unneeded variable initialization (Gopal Tiwari) [1990477]
+- Bluetooth: Return whether a connection is outbound (Gopal Tiwari) [1990477]
+- Bluetooth: SMP: Fix crash when receiving new connection when debug is enabled (Gopal Tiwari) [1990477]
+- Bluetooth: Fix spelling mistakes (Gopal Tiwari) [1990477]
+- Bluetooth: Set defaults for le_scan_{int,window}_adv_monitor (Gopal Tiwari) [1990477]
+- Bluetooth: Allow Microsoft extension to indicate curve validation (Gopal Tiwari) [1990477]
+- Bluetooth: Add support for reading AOSP vendor capabilities (Gopal Tiwari) [1990477]
+- Bluetooth: LL privacy allow RPA (Gopal Tiwari) [1990477]
+- Bluetooth: Handle own address type change with HCI_ENABLE_LL_PRIVACY (Gopal Tiwari) [1990477]
+- Bluetooth: Do not set cur_adv_instance in adv param MGMT request (Gopal Tiwari) [1990477]
+- Bluetooth: Use ext adv handle from requests in CCs (Gopal Tiwari) [1990477]
+- Bluetooth: use the correct print format for L2CAP debug statements (Gopal Tiwari) [1990477]
+- Bluetooth: SMP: Fix variable dereferenced before check 'conn' (Gopal Tiwari) [1990477]
+- Bluetooth: Check inquiry status before sending one (Gopal Tiwari) [1990477]
+- Bluetooth: Coding style fix (Gopal Tiwari) [1990477]
+- Bluetooth: Remove 'return' in void function (Gopal Tiwari) [1990477]
+- Bluetooth: Increment management interface revision (Gopal Tiwari) [1990477]
+- Bluetooth: Move the advertisement monitor events to correct list (Gopal Tiwari) [1990477]
+- Bluetooth: Add missing entries for PHY configuration commands (Gopal Tiwari) [1990477]
+- Bluetooth: Fix mgmt status for LL Privacy experimental feature (Gopal Tiwari) [1990477]
+- Bluetooth: Fix wrong opcode error for read advertising features (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: Rudimentary typo fixes (Gopal Tiwari) [1990477]
+- Bluetooth: Remove trailing semicolon in macros (Gopal Tiwari) [1990477]
+- Bluetooth: check for zapped sk before connecting (Gopal Tiwari) [1990477]
+- Bluetooth: fix set_ecdh_privkey() prototype (Gopal Tiwari) [1990477]
+- Bluetooth: initialize skb_queue_head at l2cap_chan_create() (Gopal Tiwari) [1990477]
+- Bluetooth: Set CONF_NOT_COMPLETE as l2cap_chan default (Gopal Tiwari) [1990477]
+- Bluetooth: Fix incorrect status handling in LE PHY UPDATE event (Gopal Tiwari) [1990477]
+- Bluetooth: avoid deadlock between hci_dev->lock and socket lock (Gopal Tiwari) [1990477]
+- Bluetooth: SMP: Convert BT_ERR/BT_DBG to bt_dev_err/bt_dev_dbg (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: Fix not checking for maximum number of DCID (Gopal Tiwari) [1990477]
+- Bluetooth: Cancel le_scan_restart work when stopping discovery (Gopal Tiwari) [1990477]
+- Bluetooth: SMP: Fail if remote and local public keys are identical (Gopal Tiwari) [1990477]
+- Bluetooth: Allow scannable adv with extended MGMT APIs (Gopal Tiwari) [1990477]
+- Bluetooth: Remove unneeded commands for suspend (Gopal Tiwari) [1990477]
+- Bluetooth: Notify suspend on le conn failed (Gopal Tiwari) [1990477]
+- Bluetooth: hci_uart: Remove redundant assignment to fw_ptr (Gopal Tiwari) [1990477]
+- Bluetooth: btmrvl: remove redundant continue statement (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: use default nvm if boardID is 0 for wcn6855. (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: fix bt fiwmare downloading failure issue for qca btsoc. (Gopal Tiwari) [1990477]
+- Bluetooth: btmtkuart: using pm_runtime_resume_and_get instead of pm_runtime_get_sync (Gopal Tiwari) [1990477]
+- Bluetooth: btrtl: rename USB fw for RTL8761 (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Add 0x0b05:0x190e Realtek 8761BU (ASUS BT500) device. (Gopal Tiwari) [1990477]
+- Bluetooth: hci_h5: Add RTL8822CS capabilities (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Add support USB ALT 3 for WBS (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Add a new QCA_ROME device (0cf3:e500) (Gopal Tiwari) [1990477]
+- Bluetooth: btqca: Don't modify firmware contents in-place (Gopal Tiwari) [1990477]
+- Bluetooth: btbcm: Add entry for BCM43430B0 UART Bluetooth (Gopal Tiwari) [1990477]
+- Bluetooth: hci_qca: fix potential GPF (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: fix memory leak (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Fixed too many in-token issue for Mediatek Chip. (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Add support for Lite-On Mediatek Chip (Gopal Tiwari) [1990477]
+- Bluetooth: virtio_bt: add missing null pointer check on alloc_skb call return (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Fix failing to init controllers with operation firmware (Gopal Tiwari) [1990477]
+- Bluetooth: Add a new USB ID for RTL8822CE (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Revert Fix the autosuspend enable and disable (Gopal Tiwari) [1990477]
+- Bluetooth: Add support for virtio transport driver (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Enable quirk boolean flag for Mediatek Chip. (Gopal Tiwari) [1990477]
+- Bluetooth: btintel: Skip reading firmware file version while in bootloader mode (Gopal Tiwari) [1990477]
+- Bluetooth: btintel: Collect tlv based active firmware build info in FW mode (Gopal Tiwari) [1990477]
+- Bluetooth: btintel: Reorganized bootloader mode tlv checks in intel_version_tlv parsing (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Consolidate code for waiting firmware to boot (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Consolidate code for waiting firmware download (Gopal Tiwari) [1990477]
+- Bluetooth: btintel: Consolidate intel_version parsing (Gopal Tiwari) [1990477]
+- Bluetooth: btintel: Consolidate intel_version_tlv parsing (Gopal Tiwari) [1990477]
+- Bluetooth: btintel: Move operational checks after version check (Gopal Tiwari) [1990477]
+- Bluetooth: btintel: Check firmware version before download (Gopal Tiwari) [1990477]
+- Bluetooth: hci_qca: Mundane typo fix (Gopal Tiwari) [1990477]
+- Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles (Gopal Tiwari) [1990477]
+- Bluetooth: hci_qca: Add device_may_wakeup support (Gopal Tiwari) [1990477]
+- Bluetooth: btintel: Fix offset calculation boot address parameter (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: print firmware file name on error loading firmware (Gopal Tiwari) [1990477]
+- Bluetooth: btbcm: Obtain and handle reset GPIO (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Fix incorrect type in assignment and uninitialized symbol (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: support 0cb5:c547 Realtek 8822CE device (Gopal Tiwari) [1990477]
+- Bluetooth: hci_qca: Fixed issue during suspend (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: fix excessive stack usage (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: remove set but not used variable in btusb_mtk_setup_firmware_79xx (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Fix typo and correct the log print (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Fix memory leak in btusb_mtk_wmt_recv (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Add protocol support for MediaTek MT7921U USB devices (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Fine-tune mt7663 mechanism. (Gopal Tiwari) [1990477]
+- Bluetooth: hci_qca: check for SSR triggered flag while suspend (Gopal Tiwari) [1990477]
+- Bluetooth: btrtl: Enable WBS for the specific Realtek devices (Gopal Tiwari) [1990477]
+- Bluetooth: hci_h5: Set HCI_QUIRK_SIMULTANEOUS_DISCOVERY for btrtl (Gopal Tiwari) [1990477]
+- Bluetooth: hci_qca: Wait for SSR completion during suspend (Gopal Tiwari) [1990477]
+- Bluetooth: hci_qca: Fix memleak in qca_controller_memdump (Gopal Tiwari) [1990477]
+- Bluetooth: hci_h5: Add support for binding RTL8723DS with device tree (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Add support for GarfieldPeak controller (Gopal Tiwari) [1990477]
+- Bluetooth: btrtl: Add null check in setup (Gopal Tiwari) [1990477]
+- Bluetooth: btrtl: Enable central-peripheral role (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Remove duplicate newlines from logging (Gopal Tiwari) [1990477]
+- Bluetooth: btmtksdio: Fixed switch and case should be at the same indent (Gopal Tiwari) [1990477]
+- Revert "Bluetooth: btintel: Fix endianness issue for TLV version information" (Gopal Tiwari) [1990477]
+- Bluetooth: hci_bcm: Add support for ISO packets (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: add shutdown function for wcn6855 (Gopal Tiwari) [1990477]
+- Bluetooth: hci_uart: Fix a race for write_work scheduling (Gopal Tiwari) [1990477]
+- Bluetooth: btqca: Add support to read FW build version for WCN3991 BTSoC (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: Always fallback to alt 1 for WBS (Gopal Tiwari) [1990477]
+- Bluetooth: btqcomsmd: Fix a resource leak in error handling paths in the probe function (Gopal Tiwari) [1990477]
+- Bluetooth: Fix null pointer dereference in amp_read_loc_assoc_final_data (Gopal Tiwari) [1990477]
+- Bluetooth: Skip eSCO 2M params when not supported (Gopal Tiwari) [1990477]
+- Bluetooth: fix indentation and alignment reported by checkpatch (Gopal Tiwari) [1990477]
+- Bluetooth: fix coccicheck warnings debugfs (Gopal Tiwari) [1990477]
+- Bluetooth: Add new HCI_QUIRK_NO_SUSPEND_NOTIFIER quirk (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: Try harder to accept device not knowing options (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: Fix handling fragmented length (Gopal Tiwari) [1990477]
+- Bluetooth: btusb: fix memory leak on suspend and resume (Gopal Tiwari) [1990477]
+- Bluetooth: Put HCI device if inquiry procedure interrupts (Gopal Tiwari) [1990477]
+- Bluetooth: drop HCI device reference before return (Gopal Tiwari) [1990477]
+- Bluetooth: avoid u128_xor() on potentially misaligned inputs (Gopal Tiwari) [1990477]
+- Bluetooth: Fix initializing response id after clearing struct (Gopal Tiwari) [1990477]
+- Bluetooth: Cancel Inquiry before Create Connection (Gopal Tiwari) [1990477]
+- Bluetooth: Pause service discovery for suspend (Gopal Tiwari) [1990477]
+- Bluetooth: Remove hci_req_le_suspend_config (Gopal Tiwari) [1990477]
+- Bluetooth: Increment management interface revision (Gopal Tiwari) [1990477]
+- Bluetooth: Set missing suspend task bits (Gopal Tiwari) [1990477]
+- Bluetooth: Change MGMT security info CMD to be more generic (Gopal Tiwari) [1990477]
+- Bluetooth: Query LE tx power on startup (Gopal Tiwari) [1990477]
+- Bluetooth: Use intervals and tx power from mgmt cmds (Gopal Tiwari) [1990477]
+- Bluetooth: Break add adv into two mgmt commands (Gopal Tiwari) [1990477]
+- Bluetooth: Add helper to set adv data (Gopal Tiwari) [1990477]
+- Bluetooth: Add toggle to switch off interleave scan (Gopal Tiwari) [1990477]
+- Bluetooth: Refactor read default sys config for various types (Gopal Tiwari) [1990477]
+- Bluetooth: Handle active scan case (Gopal Tiwari) [1990477]
+- Bluetooth: Handle system suspend resume case (Gopal Tiwari) [1990477]
+- Bluetooth: Interleave with allowlist scan (Gopal Tiwari) [1990477]
+- Bluetooth: Fix attempting to set RPA timeout when unsupported (Gopal Tiwari) [1990477]
+- Bluetooth: Rename get_adv_instance_scan_rsp (Gopal Tiwari) [1990477]
+- Bluetooth: Fix not sending Set Extended Scan Response (Gopal Tiwari) [1990477]
+- Bluetooth: Fix for Bluetooth SIG test L2CAP/COS/CFD/BV-14-C (Gopal Tiwari) [1990477]
+- Bluetooth: sco: Fix crash when using BT_SNDMTU/BT_RCVMTU option (Gopal Tiwari) [1990477]
+- Bluetooth: Replace BT_DBG with bt_dev_dbg in HCI request (Gopal Tiwari) [1990477]
+- Bluetooth: consolidate error paths in hci_phy_link_complete_evt() (Gopal Tiwari) [1990477]
+- Bluetooth: Enforce key size of 16 bytes on FIPS level (Gopal Tiwari) [1990477]
+- Bluetooth: hidp: use correct wait queue when removing ctrl_wait (Gopal Tiwari) [1990477]
+- Bluetooth: Move force_bredr_smp debugfs into hci_debugfs_create_bredr (Gopal Tiwari) [1990477]
+- Bluetooth: Fix: LL PRivacy BLE device fails to connect (Gopal Tiwari) [1990477]
+- Bluetooth: Resume advertising after LE connection (Gopal Tiwari) [1990477]
+- Bluetooth: Fix slab-out-of-bounds read in hci_le_direct_adv_report_evt() (Gopal Tiwari) [1990477]
+- Bluetooth: Replace zero-length array with flexible-array member (Gopal Tiwari) [1990477]
+- Bluetooth: MGMT: Fix not checking if BT_HS is enabled (Gopal Tiwari) [1990477]
+- Bluetooth: Disable High Speed by default (Gopal Tiwari) [1990477]
+- Bluetooth: Fix update of own_addr_type if ll_privacy supported (Gopal Tiwari) [1990477]
+- Bluetooth: Fix auto-creation of hci_conn at Conn Complete event (Gopal Tiwari) [1990477]
+- Bluetooth: Set scan parameters for ADV Monitor (Gopal Tiwari) [1990477]
+- Bluetooth: Update Adv monitor count upon removal (Gopal Tiwari) [1990477]
+- net: bluetooth: delete duplicated words (Gopal Tiwari) [1990477]
+- Bluetooth: pause/resume advertising around suspend (Gopal Tiwari) [1990477]
+- Bluetooth: Emit controller suspend and resume events (Gopal Tiwari) [1990477]
+- Bluetooth: Add suspend reason for device disconnect (Gopal Tiwari) [1990477]
+- Bluetooth: Add mgmt suspend and resume events (Gopal Tiwari) [1990477]
+- Bluetooth: Set ext scan response only when it exists (Gopal Tiwari) [1990477]
+- Bluetooth: Only mark socket zapped after unlocking (Gopal Tiwari) [1990477]
+- Bluetooth: Add MGMT capability flags for tx power and ext advertising (Gopal Tiwari) [1990477]
+- Bluetooth: Report num supported adv instances for hw offloading (Gopal Tiwari) [1990477]
+- Bluetooth: sco: new getsockopt options BT_SNDMTU/BT_RCVMTU (Gopal Tiwari) [1990477]
+- Bluetooth: Re-order clearing suspend tasks (Gopal Tiwari) [1990477]
+- Bluetooth: Fix memory leak in read_adv_mon_features() (Gopal Tiwari) [1990477]
+- Bluetooth: Clear suspend tasks on unregister (Gopal Tiwari) [1990477]
+- Bluetooth: Remove CRYPTO_ALG_INTERNAL flag (Gopal Tiwari) [1990477]
+- Bluetooth: Increment management interface revision (Gopal Tiwari) [1990477]
+- Bluetooth: use the proper scan params when conn is pending (Gopal Tiwari) [1990477]
+- Bluetooth: Enable controller RPA resolution using Experimental feature (Gopal Tiwari) [1990477]
+- Bluetooth: Let controller creates RPA during le create conn (Gopal Tiwari) [1990477]
+- Bluetooth: Translate additional address type during le_conn (Gopal Tiwari) [1990477]
+- Bluetooth: Enable RPA Timeout (Gopal Tiwari) [1990477]
+- Bluetooth: Enable/Disable address resolution during le create conn (Gopal Tiwari) [1990477]
+- Bluetooth: Configure controller address resolution if available (Gopal Tiwari) [1990477]
+- Bluetooth: Translate additional address type correctly (Gopal Tiwari) [1990477]
+- Bluetooth: Update resolving list when updating whitelist (Gopal Tiwari) [1990477]
+- Bluetooth: Fix suspend notifier race (Gopal Tiwari) [1990477]
+- Bluetooth: Return NOTIFY_DONE for hci_suspend_notifier (Gopal Tiwari) [1990477]
+- Bluetooth: Add per-instance adv disable/remove (Gopal Tiwari) [1990477]
+- Replace HTTP links with HTTPS ones: BLUETOOTH SUBSYSTEM (Gopal Tiwari) [1990477]
+- Bluetooth: RFCOMM: Use fallthrough pseudo-keyword (Gopal Tiwari) [1990477]
+- Bluetooth: core: Use fallthrough pseudo-keyword (Gopal Tiwari) [1990477]
+- Bluetooth: Use whitelist for scan policy when suspending (Gopal Tiwari) [1990477]
+- Bluetooth: le_simult_central_peripheral experimental feature (Gopal Tiwari) [1990477]
+- Bluetooth: Fix kernel oops triggered by hci_adv_monitors_clear() (Gopal Tiwari) [1990477]
+- Bluetooth: use configured default params for active scans (Gopal Tiwari) [1990477]
+- Bluetooth: Adding a configurable autoconnect timeout (Gopal Tiwari) [1990477]
+- Bluetooth: Don't restart scanning if paused (Gopal Tiwari) [1990477]
+- Bluetooth: add a mutex lock to avoid UAF in do_enale_set (Gopal Tiwari) [1990477]
+- Bluetooth: use configured params for ext adv (Gopal Tiwari) [1990477]
+- Bluetooth: Add hci_dev_lock to get/set device flags (Gopal Tiwari) [1990477]
+- Bluetooth: mgmt: Use command complete on success for set system config (Gopal Tiwari) [1990477]
+- Bluetooth: Terminate the link if pairing is cancelled (Gopal Tiwari) [1990477]
+- Bluetooth: Update background scan and report device based on advertisement monitors (Gopal Tiwari) [1990477]
+- Bluetooth: Notify adv monitor removed event (Gopal Tiwari) [1990477]
+- Bluetooth: Notify adv monitor added event (Gopal Tiwari) [1990477]
+- Bluetooth: Add handler of MGMT_OP_REMOVE_ADV_MONITOR (Gopal Tiwari) [1990477]
+- Bluetooth: Add handler of MGMT_OP_ADD_ADV_PATTERNS_MONITOR (Gopal Tiwari) [1990477]
+- Bluetooth: Add handler of MGMT_OP_READ_ADV_MONITOR_FEATURES (Gopal Tiwari) [1990477]
+- Bluetooth: Add definitions for advertisement monitor features (Gopal Tiwari) [1990477]
+- Bluetooth: Add get/set device flags mgmt op (Gopal Tiwari) [1990477]
+- Bluetooth: Replace wakeable in hci_conn_params (Gopal Tiwari) [1990477]
+- Bluetooth: Replace wakeable list with flag (Gopal Tiwari) [1990477]
+- Bluetooth: Add bdaddr_list_with_flags for classic whitelist (Gopal Tiwari) [1990477]
+- Bluetooth: mgmt: Add commands for runtime configuration (Gopal Tiwari) [1990477]
+- Bluetooth: implement read/set default system parameters mgmt (Gopal Tiwari) [1990477]
+- Bluetooth: mgmt: read/set system parameter definitions (Gopal Tiwari) [1990477]
+- Bluetooth: centralize default value initialization. (Gopal Tiwari) [1990477]
+- Bluetooth: Use only 8 bits for the HCI CMSG state flags (Gopal Tiwari) [1990477]
+- Bluetooth: Add support for BT_PKT_STATUS CMSG data for SCO connections (Gopal Tiwari) [1990477]
+- Bluetooth: Removing noisy dbg message (Gopal Tiwari) [1990477]
+- Bluetooth: Fix update of connection state in `hci_encrypt_cfm` (Gopal Tiwari) [1990477]
+- Bluetooth: Fix assuming EIR flags can result in SSP authentication (Gopal Tiwari) [1990477]
+- Bluetooth: Consolidate encryption handling in hci_encrypt_cfm (Gopal Tiwari) [1990477]
+- Bluetooth: Add SCO fallback for invalid LMP parameters error (Gopal Tiwari) [1990477]
+- Bluetooth: Fix for GAP/SEC/SEM/BI-10-C (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: add support for waiting disconnection resp (Gopal Tiwari) [1990477]
+- Bluetooth: Handle Inquiry Cancel error after Inquiry Complete (Gopal Tiwari) [1990477]
+- Bluetooth: Rename BT_SUSPEND_COMPLETE (Gopal Tiwari) [1990477]
+- Bluetooth: Introduce debug feature when dynamic debug is disabled (Gopal Tiwari) [1990477]
+- Bluetooth: Fix advertising handle is set to 0 (Gopal Tiwari) [1990477]
+- Bluetooth: Introduce HCI_MGMT_HDEV_OPTIONAL option (Gopal Tiwari) [1990477]
+- Bluetooth: Add support for experimental features configuration (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: Fix errors during L2CAP_CREDIT_BASED_CONNECTION_REQ (0x17) (Gopal Tiwari) [1990477]
+- Bluetooth: Add MGMT_EV_PHY_CONFIGURATION_CHANGED to supported list (Gopal Tiwari) [1990477]
+- Bluetooth: use crypto_shash_tfm_digest() (Gopal Tiwari) [1990477]
+- Bluetooth: allow scatternet connections if supported. (Gopal Tiwari) [1990477]
+- Bluetooth: Enhanced Connection Complete event belongs to LL Privacy (Gopal Tiwari) [1990477]
+- Bluetooth: Enable LE Enhanced Connection Complete event. (Gopal Tiwari) [1990477]
+- Bluetooth: Use extra variable to make code more readable (Gopal Tiwari) [1990477]
+- Bluetooth: log advertisement packet length if it gets corrected (Gopal Tiwari) [1990477]
+- Bluetooth: Always request for user confirmation for Just Works (LE SC) (Gopal Tiwari) [1990477]
+- Bluetooth: Simplify / fix return values from tk_request (Gopal Tiwari) [1990477]
+- Bluetooth: debugfs option to unset MITM flag (Gopal Tiwari) [1990477]
+- Bluetooth: Increment management interface revision (Gopal Tiwari) [1990477]
+- Bluetooth: replace zero-length array with flexible-array member (Gopal Tiwari) [1990477]
+- Bluetooth: Add support for reading security information (Gopal Tiwari) [1990477]
+- Bluetooth: Add support for Read Local Simple Pairing Options (Gopal Tiwari) [1990477]
+- Bluetooth: Add framework for Microsoft vendor extension (Gopal Tiwari) [1990477]
+- Bluetooth: Move debugfs configuration above the selftests (Gopal Tiwari) [1990477]
+- Bluetooth: fixing minor typo in comment (Gopal Tiwari) [1990477]
+- Bluetooth: Prioritize SCO traffic (Gopal Tiwari) [1990477]
+- Bluetooth: L2CAP: Fix handling LE modes by L2CAP_OPTIONS (Gopal Tiwari) [1990477]
+- Bluetooth: Always request for user confirmation for Just Works (Gopal Tiwari) [1990477]
+- Bluetooth: Add BT_MODE socket option (Gopal Tiwari) [1990477]
+- crypto: shash - remove shash_desc::flags (Gopal Tiwari) [1990477]
+- cifs: On cifs_reconnect, resolve the hostname again. (Ronnie Sahlberg) [2018046]
+- cifs: Handle witness client move notification (Ronnie Sahlberg) [2018046]
+- cifs: Send witness register messages to userspace daemon in echo task (Ronnie Sahlberg) [2018046]
+- cifs: Add witness information to debug data dump (Ronnie Sahlberg) [2018046]
+- cifs: Set witness notification handler for messages from userspace daemon (Ronnie Sahlberg) [2018046]
+- cifs: Send witness register and unregister commands to userspace daemon (Ronnie Sahlberg) [2018046]
+- cifs: Register generic netlink family (Ronnie Sahlberg) [2018046]
+- cifs: add witness mount option and data structs (Ronnie Sahlberg) [2018046]
+- cifs: Simplify reconnect code when dfs upcall is enabled (Ronnie Sahlberg) [2018046]
+- file: fix close_range() for unshare+cloexec (Pavel Reichl) [1950248]
+- scsi: lpfc: Update lpfc version to 14.0.0.3 (Dick Kennedy) [1989265]
+- scsi: lpfc: Allow fabric node recovery if recovery is in progress before devloss (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix link down processing to address NULL pointer dereference (Dick Kennedy) [1989265]
+- scsi: lpfc: Allow PLOGI retry if previous PLOGI was aborted (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix use-after-free in lpfc_unreg_rpi() routine (Dick Kennedy) [1989265]
+- scsi: lpfc: Correct sysfs reporting of loop support after SFP status change (Dick Kennedy) [1989265]
+- scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset (Dick Kennedy) [1989265]
+- scsi: lpfc: Revert LOG_TRACE_EVENT back to LOG_INIT prior to driver_resource_setup() (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix memory overwrite during FC-GS I/O abort handling (Dick Kennedy) [1989265]
+- scsi: lpfc: Add support for optional PLDV handling (Dick Kennedy) [1989265]
+- scsi: lpfc: Return NULL rather than a plain 0 integer (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix a function name in comments (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix mailbox command failure during driver initialization (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix gcc -Wstringop-overread warning, again (Dick Kennedy) [1989265]
+- scsi: lpfc: Use correct scnprintf() limit (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix sprintf() overflow in lpfc_display_fpin_wwpn() (Dick Kennedy) [1989265]
+- scsi: lpfc: Update lpfc version to 14.0.0.2 (Dick Kennedy) [1989265]
+- scsi: lpfc: Improve PBDE checks during SGL processing (Dick Kennedy) [1989265]
+- scsi: lpfc: Zero CGN stats only during initial driver load and stat reset (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix I/O block after enabling managed congestion mode (Dick Kennedy) [1989265]
+- scsi: lpfc: Adjust bytes received vales during cmf timer interval (Dick Kennedy) [1989265]
+- scsi: fc: Add EDC ELS definition (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix EEH support for NVMe I/O (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix FCP I/O flush functionality for TMF routines (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix NVMe I/O failover to non-optimized path (Dick Kennedy) [1989265]
+- scsi: lpfc: Don't remove ndlp on PRLI errors in P2P mode (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix rediscovery of tape device after LIP (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix hang on unload due to stuck fport node (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix premature rpi release for unsolicited TPLS and LS_RJT (Dick Kennedy) [1989265]
+- scsi: lpfc: Don't release final kref on Fport node while ABTS outstanding (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() (Dick Kennedy) [1989265]
+- scsi: lpfc: Remove unneeded variable (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix compilation errors on kernels with no CONFIG_DEBUG_FS (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix CPU to/from endian warnings introduced by ELS processing (Dick Kennedy) [1989265]
+- scsi: lpfc: Copyright updates for 14.0.0.1 patches (Dick Kennedy) [1989265]
+- scsi: lpfc: Update lpfc version to 14.0.0.1 (Dick Kennedy) [1989265]
+- scsi: lpfc: Add bsg support for retrieving adapter cmf data (Dick Kennedy) [1989265]
+- scsi: lpfc: Add cmf_info sysfs entry (Dick Kennedy) [1989265]
+- scsi: lpfc: Add debugfs support for cm framework buffers (Dick Kennedy) [1989265]
+- scsi: lpfc: Add support for maintaining the cm statistics buffer (Dick Kennedy) [1989265]
+- scsi: lpfc: Add rx monitoring statistics (Dick Kennedy) [1989265]
+- scsi: lpfc: Add support for the CM framework (Dick Kennedy) [1989265]
+- scsi: lpfc: Add cmfsync WQE support (Dick Kennedy) [1989265]
+- scsi: lpfc: Add support for cm enablement buffer (Dick Kennedy) [1989265]
+- scsi: lpfc: Add cm statistics buffer support (Dick Kennedy) [1989265]
+- scsi: lpfc: Add EDC ELS support (Dick Kennedy) [1989265]
+- scsi: lpfc: Expand FPIN and RDF receive logging (Dick Kennedy) [1989265]
+- scsi: lpfc: Add MIB feature enablement support (Dick Kennedy) [1989265]
+- scsi: lpfc: Add SET_HOST_DATA mbox cmd to pass date/time info to firmware (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix possible ABBA deadlock in nvmet_xri_aborted() (Dick Kennedy) [1989265]
+- scsi: lpfc: Remove redundant assignment to pointer pcmd (Dick Kennedy) [1989265]
+- scsi: lpfc: Copyright updates for 14.0.0.0 patches (Dick Kennedy) [1989265]
+- scsi: lpfc: Update lpfc version to 14.0.0.0 (Dick Kennedy) [1989265]
+- scsi: lpfc: Add 256 Gb link speed support (Dick Kennedy) [1989265]
+- scsi: lpfc: Revise Topology and RAS support checks for new adapters (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix cq_id truncation in rq create (Dick Kennedy) [1989265]
+- scsi: lpfc: Add PCI ID support for LPe37000/LPe38000 series adapters (Dick Kennedy) [1989265]
+- scsi: lpfc: Copyright updates for 12.8.0.11 patches (Dick Kennedy) [1989265]
+- scsi: lpfc: Update lpfc version to 12.8.0.11 (Dick Kennedy) [1989265]
+- scsi: lpfc: Skip issuing ADISC when node is in NPR state (Dick Kennedy) [1989265]
+- scsi: lpfc: Skip reg_vpi when link is down for SLI3 in ADISC cmpl path (Dick Kennedy) [1989265]
+- scsi: lpfc: Call discovery state machine when handling PLOGI/ADISC completions (Dick Kennedy) [1989265]
+- scsi: lpfc: Delay unregistering from transport until GIDFT or ADISC completes (Dick Kennedy) [1989265]
+- scsi: lpfc: Enable adisc discovery after RSCN by default (Dick Kennedy) [1989265]
+- scsi: lpfc: Use PBDE feature enabled bit to determine PBDE support (Dick Kennedy) [1989265]
+- scsi: lpfc: Clear outstanding active mailbox during PCI function reset (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix KASAN slab-out-of-bounds in lpfc_unreg_rpi() routine (Dick Kennedy) [1989265]
+- scsi: lpfc: Remove REG_LOGIN check requirement to issue an ELS RDF (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix NULL ptr dereference with NPIV ports for RDF handling (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix target reset handler from falsely returning FAILURE (Dick Kennedy) [1989265]
+- scsi: lpfc: Discovery state machine fixes for LOGO handling (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix function description comments for vmid routines (Dick Kennedy) [1989265]
+- scsi: lpfc: Improve firmware download logging (Dick Kennedy) [1989265]
+- scsi: lpfc: Remove use of kmalloc() in trace event logging (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix NVMe support reporting in log message (Dick Kennedy) [1989265]
+- scsi: lpfc: Fix build error in lpfc_scsi.c (Dick Kennedy) [1989265]
+- scsi: lpfc: Use list_move_tail() instead of list_del()/list_add_tail() (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Introduce VMID in I/O path (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Add QFPA and VMID timeout check in worker thread (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Timeout implementation for VMID (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Append the VMID to the wqe before sending (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Implement CT commands for appid (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Functions to manage VMIDs (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Implement ELS commands for appid (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Add support for VMID in mailbox command (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: VMID parameter initialization (Dick Kennedy) [1989265]
+- scsi: lpfc: vmid: Add datastructure for supporting VMID in lpfc (Dick Kennedy) [1989265]
+- redhat/config: Rename CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE to CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE (Waiman Long) [2018425]
+- kasan, kmemleak: reset tags when scanning block (Waiman Long) [2018425]
+- mm/kmemleak: rely on rcu for task stack scanning (Waiman Long) [2018425]
+- mm/kmemleak: silence KCSAN splats in checksum (Waiman Long) [2018425]
+- mm/kmemleak: turn kmemleak_lock and object->lock to raw_spinlock_t (Waiman Long) [2018425]
+- kmemleak: Do not corrupt the object_list during clean-up (Waiman Long) [2018425]
+- mm: kmemleak: use the memory pool for early allocations (Waiman Long) [2018425]
+- mm: kmemleak: simple memory allocation pool for kmemleak objects (Waiman Long) [2018425]
+- mm: kmemleak: make the tool tolerant to struct scan_area allocation failures (Waiman Long) [2018425]
+- kmemleak: increase DEBUG_KMEMLEAK_EARLY_LOG_SIZE default to 16K (Waiman Long) [2018425]
+- mm: kmemleak: disable early logging in case of error (Waiman Long) [2018425]
+- mm/kmemleak.c: fix unused-function warning (Waiman Long) [2018425]
+- kmemleak: powerpc: skip scanning holes in the .bss section (Waiman Long) [2018425]
+- mm: kmemleak: no need to check return value of debugfs_create functions (Waiman Long) [2018425]
+
+* Wed Nov 17 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-350.el8]
+- powerpc/smp: Use existing L2 cache_map cpumask to find L3 cache siblings (Desnes A. Nunes do Rosario) [2013537]
+- powerpc/cacheinfo: Remove the redundant get_shared_cpu_map() (Desnes A. Nunes do Rosario) [2013537]
+- powerpc/cacheinfo: Lookup cache by dt node and thread-group id (Desnes A. Nunes do Rosario) [2013537]
+- Revert "thunderbolt: Hide authorized attribute if router does not support PCIe tunnels" (Torez Smith) [1969444]
+- thunderbolt: Add quirk for Intel Goshen Ridge DP credits (Torez Smith) [1969444]
+- thunderbolt: Update port credits after bonding is enabled/disabled (Torez Smith) [1969444]
+- thunderbolt: Wait for the lanes to actually bond (Torez Smith) [1969444]
+- thunderbolt: Read router preferred credit allocation information (Torez Smith) [1969444]
+- thunderbolt: Make tb_port_type() take const parameter (Torez Smith) [1969444]
+- thunderbolt: Move nfc_credits field to struct tb_path_hop (Torez Smith) [1969444]
+- thunderbolt: Align USB4 router wakes configuration with the CM guide (Torez Smith) [1969444]
+- thunderbolt: Add wake from DisplayPort (Torez Smith) [1969444]
+- thunderbolt: Use generic tb_nvm_[read|write]_data() for Thunderbolt 2/3 devices (Torez Smith) [1969444]
+- thunderbolt: Split NVM read/write generic functions out from usb4.c (Torez Smith) [1969444]
+- thunderbolt: Add self-authenticate support for new dock (Torez Smith) [1969444]
+- thunderbolt: usb4: Fix NVM read buffer bounds and offset issue (Torez Smith) [1969444]
+- thunderbolt: dma_port: Fix NVM read buffer bounds and offset issue (Torez Smith) [1969444]
+- thunderbolt: Hide authorized attribute if router does not support PCIe tunnels (Torez Smith) [1969444]
+- x86/mce: Avoid infinite loop for copy from user recovery (Prarit Bhargava) [1999550]
+- x86/mce: Rename kill_it to kill_current_task (Prarit Bhargava) [1999550]
+- x86/mce: Recover from poison found while copying from user space (Prarit Bhargava) [1999550]
+- x86/mce: Delay clearing IA32_MCG_STATUS to the end of do_machine_check() (Prarit Bhargava) [1999550]
+- x86/mce: Send #MC singal from task work (Prarit Bhargava) [1999550]
+- redhat/config: Enable Nitro Enclaves on aarch64 (Vitaly Kuznetsov) [2001581]
+- nitro_enclaves: Add fixes for checkpatch match open parenthesis reports (Vitaly Kuznetsov) [2001581]
+- nitro_enclaves: Update copyright statement to include 2021 (Vitaly Kuznetsov) [2001581]
+- nitro_enclaves: Add fix for the kernel-doc report (Vitaly Kuznetsov) [2001581]
+- nitro_enclaves: Enable Arm64 support (Vitaly Kuznetsov) [2001581]
+- nitro_enclaves: Set Bus Master for the NE PCI device (Vitaly Kuznetsov) [2001581]
+- nitro_enclaves: Fixup type and simplify logic of the poll mask setup (Vitaly Kuznetsov) [2001581]
+- mptcp: Make mptcp_pm_nl_mp_prio_send_ack() static (Davide Caratti) [2020198]
+- mptcp: fix possible stall on recvmsg() (Davide Caratti) [2020198]
+- mptcp: don't clear MPTCP_DATA_READY in sk_wait_event() (Davide Caratti) [2020198]
+- net: introduce and use lock_sock_fast_nested() (Davide Caratti) [2020198]
+- net: add annotation for sock_{lock,unlock}_fast (Davide Caratti) [2020198]
+- mptcp: allow changing the 'backup' bit when no sockets are open (Davide Caratti) [2020198]
+- mptcp: don't return sockets in foreign netns (Davide Caratti) [2020198]
+- mptcp: ensure tx skbs always have the MPTCP ext (Davide Caratti) [2020198]
+- mptcp: full fully established support after ADD_ADDR (Davide Caratti) [2020198]
+- redhat/configs: Move Hyper-V configs to 'generic' (Vitaly Kuznetsov) [1949614]
+- redhat/configs: enable CONFIG_INPUT_KEYBOARD on Aarch64 (Vitaly Kuznetsov) [1949614]
+- efi/libstub/random: Align allocate size to EFI_ALLOC_ALIGN (Vitaly Kuznetsov) [1949614]
+- efi/libstub: arm64: Double check image alignment at entry (Vitaly Kuznetsov) [1949614]
+- efi/arm64: Update debug prints to reflect other entropy sources (Vitaly Kuznetsov) [1949614]
+- efi/arm64: libstub: Deal gracefully with EFI_RNG_PROTOCOL failure (Vitaly Kuznetsov) [1949614]
+- Drivers: hv: Enable Hyper-V code to be built on ARM64 (Vitaly Kuznetsov) [1949614]
+- x86/Kconfig: Add new X86_HV_CALLBACK_VECTOR config symbol (Vitaly Kuznetsov) [1949614]
+- arm64: efi: Export screen_info (Vitaly Kuznetsov) [1949614]
+- arm64: hyperv: Initialize hypervisor on boot (Vitaly Kuznetsov) [1949614]
+- arm64: hyperv: Add panic handler (Vitaly Kuznetsov) [1949614]
+- arm64: hyperv: Add Hyper-V hypercall and register access utilities (Vitaly Kuznetsov) [1949614]
+- arm64: add arch/arm64/Kbuild (Vitaly Kuznetsov) [1949614]
+- PCI: hv: Turn on the host bridge probing on ARM64 (Vitaly Kuznetsov) [1949614]
+- PCI: hv: Set up MSI domain at bridge probing time (Vitaly Kuznetsov) [1949614]
+- PCI: hv: Set ->domain_nr of pci_host_bridge at probing time (Vitaly Kuznetsov) [1949614]
+- PCI: hv: Generify PCI probing (Vitaly Kuznetsov) [1949614]
+- arm64: PCI: Support root bridge preparation for Hyper-V (Vitaly Kuznetsov) [1949614]
+- arm64: PCI: Restructure pcibios_root_bridge_prepare() (Vitaly Kuznetsov) [1949614]
+- PCI: Support populating MSI domains of root buses via bridges (Vitaly Kuznetsov) [1949614]
+- PCI: Introduce domain_nr in pci_host_bridge (Vitaly Kuznetsov) [1949614]
+- drivers: hv: Decouple Hyper-V clock/timer code from VMbus drivers (Vitaly Kuznetsov) [1949614]
+- Drivers: hv: Move Hyper-V misc functionality to arch-neutral code (Vitaly Kuznetsov) [1949614]
+- x86/hyperv: handling hypercall page setup for root (Vitaly Kuznetsov) [1949614]
+- Drivers: hv: Add arch independent default functions for some Hyper-V handlers (Vitaly Kuznetsov) [1949614]
+- Drivers: hv: Make portions of Hyper-V init code be arch neutral (Vitaly Kuznetsov) [1949614]
+- asm-generic/hyperv: Add missing #include of nmi.h (Vitaly Kuznetsov) [1949614]
+- PCI: hv: Support for create interrupt v3 (Vitaly Kuznetsov) [1949614]
+- Drivers: hv: Move Hyper-V extended capability check to arch neutral code (Vitaly Kuznetsov) [1949614]
+- clocksource/drivers/hyper-v: Re-enable VDSO_CLOCKMODE_HVCLOCK on X86 (Vitaly Kuznetsov) [1949614]
+- clocksource/drivers/hyper-v: Handle vDSO differences inline (Vitaly Kuznetsov) [1949614]
+- arm64: smccc: Add support for SMCCCv1.2 extended input/output registers (Vitaly Kuznetsov) [1949614]
+- smccc: Define vendor hyp owned service call region (Vitaly Kuznetsov) [1949614]
+- scsi: smartpqi: Update version to 2.1.12-055 (Don Brace) [2018317]
+- scsi: smartpqi: Add 3252-8i PCI id (Don Brace) [2018317]
+- scsi: smartpqi: Fix duplicate device nodes for tape changers (Don Brace) [2018317]
+- scsi: smartpqi: Fix boot failure during LUN rebuild (Don Brace) [2018317]
+- scsi: smartpqi: Add extended report physical LUNs (Don Brace) [2018317]
+- scsi: smartpqi: Avoid failing I/Os for offline devices (Don Brace) [2018317]
+- scsi: smartpqi: Add TEST UNIT READY check for SANITIZE operation (Don Brace) [2018317]
+- scsi: smartpqi: Update LUN reset handler (Don Brace) [2018317]
+- scsi: smartpqi: Capture controller reason codes (Don Brace) [2018317]
+- scsi: smartpqi: Add controller handshake during kdump (Don Brace) [2018317]
+- scsi: smartpqi: Update device removal management (Don Brace) [2018317]
+- KVM: PPC: Tick accounting should defer vtime accounting 'til after IRQ handling (Laurent Vivier) [2009312]
+- vhost_net: fix OoB on sendmsg() failure. (Paolo Abeni) [1922828]
+- scsi: qla2xxx: Update version to 10.02.06.200-k (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Fix returnvar.cocci warnings (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix NVMe session down detection (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix NVMe retry (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix hang on NVMe command timeouts (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix NVMe | FCP personality change (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Do secure PLOGI when auth app is present (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add N2N support for EDIF (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix hang during NVMe session tear down (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Fix EDIF enable flag (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Reject AUTH ELS on session down (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Fix stale session (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Update version to 10.02.06.100-k (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Sync queue idx with queue_pair_map idx (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Changes to support kdump kernel for NVMe BFS (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Changes to support kdump kernel (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix NPIV create erroneous error (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix unsafe removal from linked list (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix port type info (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Add debug print of 64G link speed (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Show OS name and version in FDMI-1 (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Changes to support FCP2 Target (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Adjust request/response queue size for 28xx (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Add host attribute to trigger MPI hang (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Remove redundant initialization of variable num_cnt (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix use after free in debug code (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix spelling mistakes "allloc" -> "alloc" (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Update version to 10.02.00.107-k (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Increment command and completion counts (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add encryption to I/O path (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add doorbell notification for app (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add detection of secure device (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add authentication pass + fail bsgs (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add key update (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add extraction of auth_els from the wire (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add send, receive, and accept for auth_els (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add getfcinfo and statistic bsgs (Nilesh Javali) [1983874]
+- scsi: qla2xxx: edif: Add start + stop bsgs (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Remove unused variable 'status' (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Remove redundant continue statement in a for-loop (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Add heartbeat check (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Use list_move_tail() instead of list_del()/list_add_tail() (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Remove duplicate declarations (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Log PCI address in qla_nvme_unregister_remote_port() (Nilesh Javali) [1983874]
+- scsi: target: qla2xxx: Wait for stop_phase1 at WWN removal (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Remove redundant assignment to rval (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Fix error return code in qla82xx_write_flash_dword() (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Prevent PRLI in target mode (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Reuse existing error handling path (Nilesh Javali) [1983874]
+- scsi: qla2xxx: Remove unneeded if-null-free check (Nilesh Javali) [1983874]
+- thermal/drivers/int340x: Do not set a wrong tcc offset on resume (David Arcari) [1997757]
+- thermal: core: Add new event for sending keep alive notifications (David Arcari) [1997757]
+- thermal/drivers/int340x/processor_thermal: Fix tcc setting (David Arcari) [1997757]
+- thermal/drivers/int340x/processor_thermal: Fix warning for return value (David Arcari) [1997757]
+- thermal/drivers/int340x/processor_thermal: Add PCI MMIO based thermal driver (David Arcari) [1997757]
+- thermal/drivers/int340x/processor_thermal: Split enumeration and processing part (David Arcari) [1997757]
+- thermal/drivers/int340x: processor_thermal: Export additional attributes (David Arcari) [1997757]
+- thermal/drivers/int340x: processor_thermal: Export mailbox interface (David Arcari) [1997757]
+- thermal/drivers/intel: Initialize RW trip to THERMAL_TEMP_INVALID (David Arcari) [1997757]
+- thermal: int340x: Fix unexpected shutdown at critical temperature (David Arcari) [1997757]
+- thermal: int340x: Support Alder Lake (David Arcari) [1997757]
+- thermal: int340x: processor_thermal: Correct workload type name (David Arcari) [1997757]
+- thermal: int340x: processor_thermal: Add mailbox driver (David Arcari) [1997757]
+- thermal: int340x: processor_thermal: Add RFIM driver (David Arcari) [1997757]
+- thermal: int340x: processor_thermal: Add AlderLake PCI device id (David Arcari) [1997757]
+- thermal: int340x: processor_thermal: Refactor MMIO interface (David Arcari) [1997757]
+- thermal: int340x: Add keep alive response method (David Arcari) [1997757]
+- thermal: int340x: Provide notification for OEM variable change (David Arcari) [1997757]
+- treewide: Add SPDX license identifier - Makefile/Kconfig (David Arcari) [1997757]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (David Arcari) [1997757]
+- intel_idle: Adjust the SKX C6 parameters if PC6 is disabled (David Arcari) [2003731]
+- intel_idle: update ICX C6 data (David Arcari) [2003731]
+- nbd: provide a way for userspace processes to identify device backends (Ming Lei) [1997338]
+- Revert "block, bfq: honor already-setup queue merges" (Ming Lei) [1997338]
+- blk-cgroup: fix UAF by grabbing blkcg lock before destroying blkg pd (Ming Lei) [1997338]
+- blkcg: fix memory leak in blk_iolatency_init (Ming Lei) [1997338]
+- blk-mq: avoid to iterate over stale request (Ming Lei) [1997338]
+- blk-mq: allow 4x BLK_MAX_REQUEST_COUNT at blk_plug for multiple_queues (Ming Lei) [1997338]
+- block, bfq: honor already-setup queue merges (Ming Lei) [1997338]
+- block/mq-deadline: Move dd_queued() to fix defined but not used warning (Ming Lei) [1997338]
+- cryptoloop: add a deprecation warning (Ming Lei) [1997338]
+- Revert "block/mq-deadline: Prioritize high-priority requests" (Ming Lei) [1997338]
+- mq-deadline: Fix request accounting (Ming Lei) [1997338]
+- nbd: Aovid double completion of a request (Ming Lei) [1997338]
+- blk-mq: clear active_queues before clearing BLK_MQ_F_TAG_QUEUE_SHARED (Ming Lei) [1997338]
+- Revert "block/mq-deadline: Add cgroup support" (Ming Lei) [1997338]
+- kyber: make trace_block_rq call consistent with documentation (Ming Lei) [1997338]
+- blk-iolatency: error out if blk_get_queue() failed in iolatency_set_limit() (Ming Lei) [1997338]
+- blk-mq-sched: Fix blk_mq_sched_alloc_tags() error handling (Ming Lei) [1997338]
+- loop: reintroduce global lock for safe loop_validate_file() traversal (Ming Lei) [1997338]
+- blk-cgroup: prevent rcu_sched detected stalls warnings while iterating blkgs (Ming Lei) [1997338]
+- block: fix the problem of io_ticks becoming smaller (Ming Lei) [1997338]
+- block: return errors from blk_execute_rq() (Ming Lei) [1997338]
+- block: support polling through blk_execute_rq (Ming Lei) [1997338]
+- loop: rewrite loop_exit using idr_for_each_entry (Ming Lei) [1997338]
+- loop: split loop_lookup (Ming Lei) [1997338]
+- loop: don't allow deleting an unspecified loop device (Ming Lei) [1997338]
+- loop: move loop_ctl_mutex locking into loop_add (Ming Lei) [1997338]
+- loop: split loop_control_ioctl (Ming Lei) [1997338]
+- loop: don't call loop_lookup before adding a loop device (Ming Lei) [1997338]
+- loop: remove the l argument to loop_add (Ming Lei) [1997338]
+- loop: reduce loop_ctl_mutex coverage in loop_exit (Ming Lei) [1997338]
+- loop: reorder loop_exit (Ming Lei) [1997338]
+- loop: Fix missing discard support when using LOOP_CONFIGURE (Ming Lei) [1997338]
+- block: export blk_next_bio() (Ming Lei) [1997338]
+- rsxx: Use struct_size() in vmalloc() (Ming Lei) [1997338]
+- block/mq-deadline: Remove a WARN_ON_ONCE() call (Ming Lei) [1997338]
+- blk: Fix lock inversion between ioc lock and bfqd lock (Ming Lei) [1997338]
+- bfq: Remove merged request already in bfq_requests_merged() (Ming Lei) [1997338]
+- block: fix trace completion for chained bio (Ming Lei) [1997338]
+- block/partitions/msdos: Fix typo inidicator -> indicator (Ming Lei) [1997338]
+- block, bfq: reset waker pointer with shared queues (Ming Lei) [1997338]
+- block, bfq: check waker only for queues with no in-flight I/O (Ming Lei) [1997338]
+- block, bfq: avoid delayed merge of async queues (Ming Lei) [1997338]
+- block, bfq: boost throughput by extending queue-merging times (Ming Lei) [1997338]
+- block, bfq: consider also creation time in delayed stable merge (Ming Lei) [1997338]
+- block, bfq: fix delayed stable merge check (Ming Lei) [1997338]
+- block, bfq: let also stably merged queues enjoy weight raising (Ming Lei) [1997338]
+- blk-wbt: make sure throttle is enabled properly (Ming Lei) [1997338]
+- blk-wbt: introduce a new disable state to prevent false positive by rwb_enabled() (Ming Lei) [1997338]
+- block/mq-deadline: Prioritize high-priority requests (Ming Lei) [1997338]
+- block/mq-deadline: Add cgroup support (Ming Lei) [1997338]
+- block/mq-deadline: Track I/O statistics (Ming Lei) [1997338]
+- block/mq-deadline: Add I/O priority support (Ming Lei) [1997338]
+- block/mq-deadline: Micro-optimize the batching algorithm (Ming Lei) [1997338]
+- block/mq-deadline: Reserve 25 of scheduler tags for synchronous requests (Ming Lei) [1997338]
+- block/mq-deadline: Improve the sysfs show and store macros (Ming Lei) [1997338]
+- block/mq-deadline: Improve compile-time argument checking (Ming Lei) [1997338]
+- block: mq-deadline: Fix queue restart handling (Ming Lei) [1997338]
+- block/mq-deadline: Rename dd_init_queue() and dd_exit_queue() (Ming Lei) [1997338]
+- block/mq-deadline: Remove two local variables (Ming Lei) [1997338]
+- block/mq-deadline: Add two lockdep_assert_held() statements (Ming Lei) [1997338]
+- block/mq-deadline: Add several comments (Ming Lei) [1997338]
+- block: Introduce the ioprio rq-qos policy (Ming Lei) [1997338]
+- block/blk-rq-qos: Move a function from a header file into a C file (Ming Lei) [1997338]
+- block/blk-cgroup: Swap the blk_throtl_init() and blk_iolatency_init() calls (Ming Lei) [1997338]
+- blkcg: fix memleak for iolatency (Ming Lei) [1997338]
+- blk-wbt: remove outdated comment (Ming Lei) [1997338]
+- block: Remove unnecessary elevator operation checks (Ming Lei) [1997338]
+- blk-mq: factor out a blk_mq_alloc_sq_tag_set helper (Ming Lei) [1997338]
+- block: Update blk_update_request() documentation (Ming Lei) [1997338]
+- blkcg: drop CLONE_IO check in blkcg_can_attach() (Ming Lei) [1997338]
+- aoe: remove unnecessary mutex_init() (Ming Lei) [1997338]
+- block: loop: fix deadlock between open and remove (Ming Lei) [1997338]
+- loop: scale loop device by introducing per device lock (Ming Lei) [1997338]
+- block/partitions/efi.c: Fix the efi_partition() kernel-doc header (Ming Lei) [1997338]
+- nbd: share nbd_put and return by goto put_nbd (Ming Lei) [1997338]
+- nbd: Fix NULL pointer in flush_workqueue (Ming Lei) [1997338]
+- blkdev.h: remove unused codes blk_account_rq (Ming Lei) [1997338]
+- block, bfq: avoid circular stable merges (Ming Lei) [1997338]
+- block: uapi: fix comment about block device ioctl (Ming Lei) [1997338]
+- block: reexpand iov_iter after read/write (Ming Lei) [1997338]
+- bfq/mq-deadline: remove redundant check for passthrough request (Ming Lei) [1997338]
+- blk-mq: bypass IO scheduler's limit_depth for passthrough request (Ming Lei) [1997338]
+- block: Fix sys_ioprio_set(.which=IOPRIO_WHO_PGRP) task iteration (Ming Lei) [1997338]
+- blk-mq: Always use blk_mq_is_sbitmap_shared (Ming Lei) [1997338]
+- block: add sysfs entry for virt boundary mask (Ming Lei) [1997338]
+- block, bfq: merge bursts of newly-created queues (Ming Lei) [1997338]
+- block, bfq: keep shared queues out of the waker mechanism (Ming Lei) [1997338]
+- block, bfq: fix weight-raising resume with !low_latency (Ming Lei) [1997338]
+- block, bfq: make shared queues inherit wakers (Ming Lei) [1997338]
+- block, bfq: put reqs of waker and woken in dispatch list (Ming Lei) [1997338]
+- block, bfq: always inject I/O of queues blocked by wakers (Ming Lei) [1997338]
+- blk-mq: Sentence reconstruct for better readability (Ming Lei) [1997338]
+- block: update a few comments in uapi/linux/blkpg.h (Ming Lei) [1997338]
+- block: don't ignore REQ_NOWAIT for direct IO (Ming Lei) [1997338]
+- block: clear GD_NEED_PART_SCAN later in bdev_disk_changed (Ming Lei) [1997338]
+- block: Discard page cache of zone reset target range (Ming Lei) [1997338]
+- block: Suppress uevent for hidden device when removed (Ming Lei) [1997338]
+- block: rsxx: fix error return code of rsxx_pci_probe() (Ming Lei) [1997338]
+- block: Fix REQ_OP_ZONE_RESET_ALL handling (Ming Lei) [1997338]
+- blk-cgroup: Fix the recursive blkg rwstat (Ming Lei) [1997338]
+- rsxx: Return -EFAULT if copy_to_user() fails (Ming Lei) [1997338]
+- block/bfq: update comments and default value in docs for fifo_expire (Ming Lei) [1997338]
+- block: Drop leftover references to RQF_SORTED (Ming Lei) [1997338]
+- blktrace: fix documentation for blk_fill_rw() (Ming Lei) [1997338]
+- blktrace: remove debugfs file dentries from struct blk_trace (Ming Lei) [1997338]
+- block: get rid of the trace rq insert wrapper (Ming Lei) [1997338]
+- blktrace: fix blk_rq_merge documentation (Ming Lei) [1997338]
+- blktrace: fix blk_rq_issue documentation (Ming Lei) [1997338]
+- blktrace: add blk_fill_rwbs documentation comment (Ming Lei) [1997338]
+- block: remove superfluous param in blk_fill_rwbs() (Ming Lei) [1997338]
+- block: Remove unused blk_pm_*() function definitions (Ming Lei) [1997338]
+- blk-mq: Use llist_head for blk_cpu_done (Ming Lei) [1997338]
+- blk-mq: Always complete remote completions requests in softirq (Ming Lei) [1997338]
+- block: use bi_max_vecs to find the bvec pool (Ming Lei) [1997338]
+- md/raid10: remove dead code in reshape_request (Ming Lei) [1997338]
+- block: remove the 1 and 4 vec bvec_slabs entries (Ming Lei) [1997338]
+- block: streamline bvec_alloc (Ming Lei) [1997338]
+- block: factor out a bvec_alloc_gfp helper (Ming Lei) [1997338]
+- block: move struct biovec_slab to bio.c (Ming Lei) [1997338]
+- block: reuse BIO_INLINE_VECS for integrity bvecs (Ming Lei) [1997338]
+- block: move three bvec helpers declaration into private helper (Ming Lei) [1997338]
+- blk-cgroup: Remove obsolete macro (Ming Lei) [1997338]
+- block: use an on-stack bio in blkdev_issue_flush (Ming Lei) [1997338]
+- blkcg: delete redundant get/put operations for queue (Ming Lei) [1997338]
+- block: unexport truncate_bdev_range (Ming Lei) [1997338]
+- blk: wbt: remove unused parameter from wbt_should_throttle (Ming Lei) [1997338]
+- bdev: Do not return EBUSY if bdev discard races with write (Ming Lei) [1997338]
+- bfq: don't duplicate code for different paths (Ming Lei) [1997338]
+- block: remove the request_queue to argument request based tracepoints (Ming Lei) [1997338]
+- virtio_net: disable cb aggressively (Stefan Hajnoczi) [1965914]
+- virtio: fix up virtio_disable_cb (Stefan Hajnoczi) [1965914]
+- virtio_net: move txq wakeups under tx q lock (Stefan Hajnoczi) [1965914]
+- virtio_net: move tx vq operation under tx queue lock (Stefan Hajnoczi) [1965914]
+- virtio_net: bulk free tx skbs (Stefan Hajnoczi) [1965914]
+- [s390] s390/qdio: propagate error when cancelling a ccw fails (Mete Durlu) [1984989]
+- [s390] s390/qdio: improve roll-back after error on ESTABLISH ccw (Mete Durlu) [1984989]
+- [s390] s390/qdio: cancel the ESTABLISH ccw after timeout (Mete Durlu) [1984989]
+- [s390] scsi: zfcp: Lift Request Queue tasklet & timer from qdio (Mete Durlu) [1984989]
+- [s390] scsi: zfcp: Move the position of put_device() (Mete Durlu) [1984989]
+- [s390] scsi: zfcp: Clean up sysfs code for SFP diagnostics (Mete Durlu) [1984989]
+- [s390] scsi: zfcp: Fix sysfs roll-back on error in zfcp_adapter_enqueue() (Mete Durlu) [1984989]
+- [s390] scsi: zfcp: Fix indentation coding style issue (Mete Durlu) [1984989]
+- [s390] scsi: zfcp: Remove unneeded INIT_LIST_HEAD() for FSF requests (Mete Durlu) [1984989]
+- x86/fpu/xstate: Clear xstate header in copy_xstate_to_uabi_buf() again (Prarit Bhargava) [1981448]
+- x86/fpu/signal: Let xrstor handle the features to init (Prarit Bhargava) [1981448]
+- x86/fpu/signal: Handle #PF in the direct restore path (Prarit Bhargava) [1981448]
+- x86/fpu: Return proper error codes from user access functions (Prarit Bhargava) [1981448]
+- x86/fpu/signal: Split out the direct restore code (Prarit Bhargava) [1981448]
+- x86/fpu/signal: Sanitize copy_user_to_fpregs_zeroing() (Prarit Bhargava) [1981448]
+- x86/fpu/signal: Sanitize the xstate check on sigframe (Prarit Bhargava) [1981448]
+- x86/fpu/signal: Remove the legacy alignment check (Prarit Bhargava) [1981448]
+- x86/fpu/signal: Move initial checks into fpu__restore_sig() (Prarit Bhargava) [1981448]
+- x86/fpu: Mark init_fpstate __ro_after_init (Prarit Bhargava) [1981448]
+- x86/pkru: Remove xstate fiddling from write_pkru() (Prarit Bhargava) [1981448]
+- x86/fpu: Don't store PKRU in xstate in fpu_reset_fpstate() (Prarit Bhargava) [1981448]
+- x86/fpu: Remove PKRU handling from switch_fpu_finish() (Prarit Bhargava) [1981448]
+- x86/fpu: Mask PKRU from kernel XRSTOR[S] operations (Prarit Bhargava) [1981448]
+- x86/fpu: Hook up PKRU into ptrace() (Prarit Bhargava) [1981448]
+- x86/fpu: Add PKRU storage outside of task XSAVE buffer (Prarit Bhargava) [1981448]
+- x86/fpu: Dont restore PKRU in fpregs_restore_userspace() (Prarit Bhargava) [1981448]
+- x86/fpu: Rename xfeatures_mask_user() to xfeatures_mask_uabi() (Prarit Bhargava) [1981448]
+- x86/fpu: Move FXSAVE_LEAK quirk info __copy_kernel_to_fpregs() (Prarit Bhargava) [1981448]
+- x86/fpu: Rename copy_kernel_to_fpregs() to restore_fpregs_from_fpstate() (Prarit Bhargava) [1981448]
+- x86/fpu: Rename __fpregs_load_activate() to fpregs_restore_userregs() (Prarit Bhargava) [1981448]
+- x86/fpu: Clean up the fpu__clear() variants (Prarit Bhargava) [1981448]
+- x86/fpu: Rename fpu__clear_all() to fpu_flush_thread() (Prarit Bhargava) [1981448]
+- x86/fpu: Use pkru_write_default() in copy_init_fpstate_to_fpregs() (Prarit Bhargava) [1981448]
+- x86/cpu: Write the default PKRU value when enabling PKE (Prarit Bhargava) [1981448]
+- x86/pkru: Provide pkru_write_default() (Prarit Bhargava) [1981448]
+- x86/pkru: Provide pkru_get_init_value() (Prarit Bhargava) [1981448]
+- x86/cpu: Sanitize X86_FEATURE_OSPKE (Prarit Bhargava) [1981448]
+- x86/pkeys: Move read_pkru() and write_pkru() (Prarit Bhargava) [1981448]
+- x86/fpu: Rename and sanitize fpu__save/copy() (Prarit Bhargava) [1981448]
+- x86/fpu/xstate: Sanitize handling of independent features (Prarit Bhargava) [1981448]
+- x86/fpu: Rename "dynamic" XSTATEs to "independent" (Prarit Bhargava) [1981448]
+- x86/fpu: Rename initstate copy functions (Prarit Bhargava) [1981448]
+- x86/fpu: Get rid of the FNSAVE optimization (Prarit Bhargava) [1981448]
+- x86/fpu: Rename copy_fpregs_to_fpstate() to save_fpregs_to_fpstate() (Prarit Bhargava) [1981448]
+- x86/fpu: Deduplicate copy_uabi_from_user/kernel_to_xstate() (Prarit Bhargava) [1981448]
+- x86/fpu: Rename xstate copy functions which are related to UABI (Prarit Bhargava) [1981448]
+- x86/fpu: Rename fregs-related copy functions (Prarit Bhargava) [1981448]
+- x86/math-emu: Rename frstor() (Prarit Bhargava) [1981448]
+- x86/fpu: Rename fxregs-related copy functions (Prarit Bhargava) [1981448]
+- x86/fpu: Get rid of CONFIG_AS_FXSAVEQ (Prarit Bhargava) [1981448]
+- x86/fpu: Rename copy_user_to_xregs() and copy_xregs_to_user() (Prarit Bhargava) [1981448]
+- x86/fpu: Rename copy_xregs_to_kernel() and copy_kernel_to_xregs() (Prarit Bhargava) [1981448]
+- x86/fpu: Get rid of copy_supervisor_to_kernel() (Prarit Bhargava) [1981448]
+- x86/fpu: Cleanup arch_set_user_pkey_access() (Prarit Bhargava) [1981448]
+- x86/kvm: Avoid looking up PKRU in XSAVE buffer (Prarit Bhargava) [1981448]
+- x86/fpu: Get rid of using_compacted_format() (Prarit Bhargava) [1981448]
+- x86/fpu: Move fpu__write_begin() to regset (Prarit Bhargava) [1981448]
+- x86/fpu/regset: Move fpu__read_begin() into regset (Prarit Bhargava) [1981448]
+- x86/fpu: Remove fpstate_sanitize_xstate() (Prarit Bhargava) [1981448]
+- x86/fpu: Use copy_xstate_to_uabi_buf() in fpregs_get() (Prarit Bhargava) [1981448]
+- x86/fpu: Use copy_xstate_to_uabi_buf() in xfpregs_get() (Prarit Bhargava) [1981448]
+- x86/fpu: Make copy_xstate_to_kernel() usable for [x]fpregs_get() (Prarit Bhargava) [1981448]
+- x86/fpu: Clean up fpregs_set() (Prarit Bhargava) [1981448]
+- x86/fpu: Fail ptrace() requests that try to set invalid MXCSR values (Prarit Bhargava) [1981448]
+- x86/fpu: Rewrite xfpregs_set() (Prarit Bhargava) [1981448]
+- x86/fpu: Simplify PTRACE_GETREGS code (Prarit Bhargava) [1981448]
+- x86/fpu: Reject invalid MXCSR values in copy_kernel_to_xstate() (Prarit Bhargava) [1981448]
+- x86/fpu: Sanitize xstateregs_set() (Prarit Bhargava) [1981448]
+- x86/fpu: Move inlines where they belong (Prarit Bhargava) [1981448]
+- x86/fpu: Get rid of fpu__get_supported_xfeatures_mask() (Prarit Bhargava) [1981448]
+- x86/fpu: Make xfeatures_mask_all __ro_after_init (Prarit Bhargava) [1981448]
+- x86/fpu: Mark various FPU state variables __ro_after_init (Prarit Bhargava) [1981448]
+- x86/pkeys: Revert a5eff7259790 ("x86/pkeys: Add PKRU value to init_fpstate") (Prarit Bhargava) [1981448]
+- x86/fpu: Fix copy_xstate_to_kernel() gap handling (Prarit Bhargava) [1981448]
+- x86/fpu: Limit xstate copy size in xstateregs_set() (Prarit Bhargava) [1981448]
+- x86/fpu: Make init_fpstate correct with optimized XSAVE (Prarit Bhargava) [1981448]
+- x86/fpu: Preserve supervisor states in sanitize_restored_user_xstate() (Prarit Bhargava) [1981448]
+- x86/fpu: Reset state for all signal restore failures (Prarit Bhargava) [1981448]
+- x86/signal: Introduce helpers to get the maximum signal frame size (Prarit Bhargava) [1981448]
+- x86/fpu: Fix various typos in comments (Prarit Bhargava) [1981448]
+- x86/fpu/xstate: Use sizeof() instead of a constant (Prarit Bhargava) [1981448]
+- x86/fpu: Handle FPU-related and clearcpuid command line arguments earlier (Prarit Bhargava) [1981448]
+- x86/fpu: Allow multiple bits in clearcpuid= parameter (Prarit Bhargava) [1981448]
+- x86: switch to ->regset_get() (Prarit Bhargava) [1981448]
+- regset: new method and helpers for it (Prarit Bhargava) [1981448]
+- copy_regset_to_user(): do all copyout at once. (Prarit Bhargava) [1981448]
+- introduction of regset ->get() wrappers, switching ELF coredumps to those (Prarit Bhargava) [1981448]
+- user_regset_copyout_zero(): use clear_user() (Prarit Bhargava) [1981448]
+- x86: kill dump_fpu() (Prarit Bhargava) [1981448]
+- x86: copy_fpstate_to_sigframe(): have fpregs_soft_get() use kernel buffer (Prarit Bhargava) [1981448]
+- x86/pkeys: Add check for pkey "overflow" (Prarit Bhargava) [1981448]
+- x86/fpu: Deactivate FPU state after failure during state load (Prarit Bhargava) [1981448]
+- x86/fpu: Use sizeof_field() macro (Prarit Bhargava) [1981448]
+- x86/fpu: Inline fpu__xstate_clear_all_cpu_caps() (Prarit Bhargava) [1981448]
+- x86/fpu: Make 'no387' and 'nofxsr' command line options useful (Prarit Bhargava) [1981448]
+- x86/fpu: Remove the fpu__save() export (Prarit Bhargava) [1981448]
+- x86/process: Add AVX-512 usage elapsed time to /proc/pid/arch_status (Prarit Bhargava) [1981448]
+- x86/fpu: Add SPDX license identifier - Makefile/Kconfig (Prarit Bhargava) [1981448]
+- x86/fpu: Add SPDX license identifier for missed files (Prarit Bhargava) [1981448]
+- x86/fpu: Fix __user annotations (Prarit Bhargava) [1981448]
+- x86/fpu: Move init_xstate_size() to __init section (Prarit Bhargava) [1981448]
+- x86/fpu: Update comment for __raw_xsave_addr() (Prarit Bhargava) [1981448]
+- scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file (Nilesh Javali) [1981433]
+- scsi: core: Put LLD module refcnt after SCSI device is released (Ming Lei) [1996509]
+- scsi: iscsi: Fix set_param() handling (Chris Leech) [2011470]
+- scsi: iscsi: Fix iscsi_task use after free (Chris Leech) [2011470]
+- scsi: iscsi: Adjust iface sysfs attr detection (Chris Leech) [2011470]
+- scsi: iscsi: Fix iface sysfs attr detection (Chris Leech) [2011470]
+- scsi: iscsi: Move pool freeing (Chris Leech) [2011470]
+- scsi: iscsi: Hold task ref during TMF timeout handling (Chris Leech) [2011470]
+- scsi: iscsi: Flush block work before unblock (Chris Leech) [2011470]
+- scsi: iscsi: Fix completion check during abort races (Chris Leech) [2011470]
+- scsi: iscsi: Fix shost->max_id use (Chris Leech) [2011470]
+- scsi: iscsi: Fix conn use after free during resets (Chris Leech) [2011470]
+- scsi: iscsi: Get ref to conn during reset handling (Chris Leech) [2011470]
+- scsi: iscsi: Have abort handler get ref to conn (Chris Leech) [2011470]
+- scsi: iscsi: Add iscsi_cls_conn refcount helpers (Chris Leech) [2011470]
+- scsi: iscsi: iscsi_tcp: Start socket shutdown during conn stop (Chris Leech) [2011470]
+- scsi: iscsi: iscsi_tcp: Set no linger (Chris Leech) [2011470]
+- scsi: iscsi: Fix in-kernel conn failure handling (Chris Leech) [2011470]
+- scsi: iscsi: Rel ref after iscsi_lookup_endpoint() (Chris Leech) [2011470]
+- scsi: iscsi: Use system_unbound_wq for destroy_work (Chris Leech) [2011470]
+- scsi: iscsi: Force immediate failure during shutdown (Chris Leech) [2011470]
+- scsi: iscsi: Drop suspend calls from ep_disconnect (Chris Leech) [2011470]
+- scsi: iscsi: Stop queueing during ep_disconnect (Chris Leech) [2011470]
+- scsi: iscsi: Add task completion helper (Chris Leech) [2011470]
+- scsi: iscsi: Fix iSCSI cls conn state (Chris Leech) [2011470]
+- scsi: iscsi: Fix race condition between login and sync thread (Chris Leech) [2011470]
+- scsi: iscsi: Drop session lock in iscsi_session_chkready() (Chris Leech) [2011470]
+- scsi: libiscsi: Reset max/exp cmdsn during recovery (Chris Leech) [2011470]
+- scsi: iscsi_tcp: Fix shost can_queue initialization (Chris Leech) [2011470]
+- scsi: libiscsi: Add helper to calculate max SCSI cmds per session (Chris Leech) [2011470]
+- scsi: libiscsi: Fix iSCSI host workq destruction (Chris Leech) [2011470]
+- scsi: libiscsi: Fix iscsi_task use after free() (Chris Leech) [2011470]
+- scsi: libiscsi: Drop taskqueuelock (Chris Leech) [2011470]
+- scsi: libiscsi: Fix iscsi_prep_scsi_cmd_pdu() error handling (Chris Leech) [2011470]
+- scsi: iscsi: Fix inappropriate use of put_device() (Chris Leech) [2011470]
+- scsi: iscsi: Fail session and connection on transport registration failure (Chris Leech) [2011470]
+- scsi: drivers: base: Propagate errors through the transport component (Chris Leech) [2011470]
+- scsi: drivers: base: Support atomic version of attribute_container_device_trigger (Chris Leech) [2011470]
+- scsi: libiscsi: Fix NOP race condition (Chris Leech) [2011470]
+- scsi: libiscsi: use sendpage_ok() in iscsi_tcp_segment_map() (Chris Leech) [2011470]
+- scsi: iscsi: iscsi_tcp: Avoid holding spinlock while calling getpeername() (Chris Leech) [2011470]
+- scsi: iscsi: Do not put host in iscsi_set_flashnode_param() (Chris Leech) [2011470]
+- scsi: iscsi: Register sysfs for workqueue iscsi_destroy (Chris Leech) [2011470]
+- scsi: iscsi: Remove sessdestroylist (Chris Leech) [2011470]
+- scsi: iscsi: Optimize work queue flush use (Chris Leech) [2011470]
+- scsi: iscsi: Delay freeing target_id (Chris Leech) [2011470]
+- scsi: iscsi: Change iSCSI workqueue max_active back to 1 (Chris Leech) [2011470]
+- scsi: iscsi: Fix reference count leak in iscsi_boot_create_kobj (Chris Leech) [2011470]
+
+* Fri Nov 12 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-349.el8]
+- scsi: qedf: Fix error codes in qedf_alloc_global_queues() (Nilesh Javali) [1983908]
+- scsi: qedf: Add check to synchronize abort and flush (Nilesh Javali) [1983908]
+- scsi: qedf: Use DEVICE_ATTR_RO() macro (Nilesh Javali) [1983908]
+- scsi: qedf: Use vzalloc() instead of vmalloc()/memset(0) (Nilesh Javali) [1983908]
+- scsi: qedf: Drop unnecessary NULL checks after container_of() (Nilesh Javali) [1983908]
+- scsi: qedf: Use devlink to report errors and recovery (Nilesh Javali) [1983908]
+- scsi: qedf: Enable devlink support (Nilesh Javali) [1983908]
+- scsi: qedf: Remove unused include of linux/version.h (Nilesh Javali) [1983908]
+- qed: implement devlink dump (Nilesh Javali) [1983908]
+- qed*: make use of devlink recovery infrastructure (Nilesh Javali) [1983908]
+- qed: use devlink logic to report errors (Nilesh Javali) [1983908]
+- qed: health reporter init deinit seq (Nilesh Javali) [1983908]
+- qed: implement devlink info request (Nilesh Javali) [1983908]
+- qed/qede: make devlink survive recovery (Nilesh Javali) [1983908]
+- qed: move out devlink logic into a new file (Nilesh Javali) [1983908]
+- i40e: fix endless loop under rtnl (Stefan Assmann) [1903921]
+- ovl: fix missing negative dentry check in ovl_rename() (Miklos Szeredi) [2010887] {CVE-2021-20321}
+- [RHEL8.6 BZ 1849234] cifs: report error instead of invalid when revalidating a dentry fails (Ronnie Sahlberg) [1849234]
+- mei: me: emmitsburg workstation DID (David Arcari) [2014195]
+- redhat/configs: Add CONFIG_INTEL_QEP (Prarit Bhargava) [1783559]
+- redhat/configs: Add CONFIG_COUNTER (Prarit Bhargava) [1783559]
+- counter: Rename counter_count_function to counter_function (Prarit Bhargava) [1783559]
+- counter: Rename counter_signal_value to counter_signal_level (Prarit Bhargava) [1783559]
+- counter: Standardize to ERANGE for limit exceeded errors (Prarit Bhargava) [1783559]
+- counter: intel-qep: Remove linux/bitops.h include (Prarit Bhargava) [1783559]
+- counter: intel-qep: Use to_pci_dev() helper (Prarit Bhargava) [1783559]
+- counter: intel-qep: Mark PM callbacks with __maybe_unused (Prarit Bhargava) [1783559]
+- counter: Add support for Intel Quadrature Encoder Peripheral (Prarit Bhargava) [1783559]
+- counter: Simplify the count_read and count_write callbacks (Prarit Bhargava) [1783559]
+- drivers/counter: Add SPDX license identifier - Makefile/Kconfig (Prarit Bhargava) [1783559]
+- counter: Introduce the Generic Counter interface (Prarit Bhargava) [1783559]
+- bpf: Fix integer overflow in prealloc_elems_and_freelist() (Yauheni Kaliuta) [2010492] {CVE-2021-41864}
+- audit: move put_tree() to avoid trim_trees refcount underflow and UAF (Richard Guy Briggs) [1978123]
+- tpm: ibmvtpm: Avoid error message when process gets signal while waiting (Štěpán Horáček) [1981473]
+- efi/tpm: Differentiate missing and invalid final event log table. (Štěpán Horáček) [1981473]
+- tpm: Replace WARN_ONCE() with dev_err_once() in tpm_tis_status() (Štěpán Horáček) [1981473]
+- tpm_tis: Use DEFINE_RES_MEM() to simplify code (Štěpán Horáček) [1981473]
+- tpm: fix some doc warnings in tpm1-cmd.c (Štěpán Horáček) [1981473]
+- tpm_tis_spi: add missing SPI device ID entries (Štěpán Horáček) [1981473]
+- tpm: add longer timeout for TPM2_CC_VERIFY_SIGNATURE (Štěpán Horáček) [1981473]
+- tpm_tis_spi: set default probe function if device id not match (Štěpán Horáček) [1981473]
+- tpm_crb: Use IOMEM_ERR_PTR when function returns iomem (Štěpán Horáček) [1981473]
+- tools/testing/scatterlist: Fix overflow of max segment size (Rafael Aquini) [2016426]
+- drm: Remove SCATTERLIST_MAX_SEGMENT (Rafael Aquini) [2016426]
+- lib/scatterlist: Fix wrong update of orig_nents (Rafael Aquini) [2016426]
+- lib/scatterlist: Provide a dedicated function to support table append (Rafael Aquini) [2016426]
+- tools/testing/scatterlist: Test dynamic __sg_alloc_table_from_pages (Rafael Aquini) [2016426]
+- tools/testing/scatterlist: Fix test to compile and run (Rafael Aquini) [2016426]
+- tools/testing/scatterlist: Show errors in human readable form (Rafael Aquini) [2016426]
+- tools/testing/scatterlist: Rejuvenate bit-rotten test (Rafael Aquini) [2016426]
+- Kconfig.debug: drop selecting non-existing HARDLOCKUP_DETECTOR_ARCH (Rafael Aquini) [2016426]
+- buildid: only consider GNU notes for build ID parsing (Rafael Aquini) [2016426]
+- lib/decompressors: remove set but not used variabled 'level' (Rafael Aquini) [2016426]
+- lib/math/rational.c: fix divide by zero (Rafael Aquini) [2016426]
+- lockdep/selftests: Fix selftests vs PROVE_RAW_LOCK_NESTING (Rafael Aquini) [2016426]
+- kunit: Fix result propagation for parameterised tests (Rafael Aquini) [2016426]
+- bug: Remove redundant condition check in report_bug (Rafael Aquini) [2016426]
+- zlib: move EXPORT_SYMBOL() and MODULE_LICENSE() out of dfltcc_syms.c (Rafael Aquini) [2016426]
+- zlib: export S390 symbols for zlib modules (Rafael Aquini) [2016426]
+- lib/crc32test: remove extra local_irq_disable/enable (Rafael Aquini) [2016426]
+- random32: add a selftest for the prandom32 code (Rafael Aquini) [2016426]
+- random32: add noise from network and scheduling activity (Rafael Aquini) [2016426]
+- random32: make prandom_u32() output unpredictable (Rafael Aquini) [2016426]
+- lib: Correct comment of prandom_seed (Rafael Aquini) [2016426]
+- lib/crc32.c: fix trivial typo in preprocessor condition (Rafael Aquini) [2016426]
+- lib/crc: Use consistent naming for CRC-32 polynomials (Rafael Aquini) [2016426]
+- lib/crc: Move polynomial definition to separate header (Rafael Aquini) [2016426]
+- kstrto*: do not describe simple_strto*() as obsolete/replaced (Rafael Aquini) [2016426]
+- kstrto*: correct documentation references to simple_strto*() (Rafael Aquini) [2016426]
+- kernel.h: update comment about simple_strto<foo>() functions (Rafael Aquini) [2016426]
+- lib/bitmap.c: fix bitmap_cut() for partial overlapping case (Rafael Aquini) [2016426]
+- devres: keep both device name and resource name in pretty name (Rafael Aquini) [2016426]
+- crc-t10dif: Fix potential crypto notify dead-lock (Rafael Aquini) [2016426]
+- vsprintf: don't obfuscate NULL and error pointers (Rafael Aquini) [2016426]
+- lib/stackdepot.c: fix global out-of-bounds in stack_slabs (Rafael Aquini) [2016426]
+- lib/scatterlist.c: adjust indentation in __sg_alloc_table (Rafael Aquini) [2016426]
+- lib/stackdepot: Fix outdated comments (Rafael Aquini) [2016426]
+- lib/test_kasan.c: fix memory leak in kmalloc_oob_krealloc_more() (Rafael Aquini) [2016426]
+- lib: Remove select of inexistant GENERIC_IO (Rafael Aquini) [2016426]
+- lib: test_user_copy: style cleanup (Rafael Aquini) [2016426]
+- usercopy: Add parentheses around assignment in test_copy_struct_from_user (Rafael Aquini) [2016426]
+- lib: textsearch: fix escapes in example code (Rafael Aquini) [2016426]
+- Partially revert "kfifo: fix kfifo_alloc() and kfifo_init()" (Rafael Aquini) [2016426]
+- lib: logic_pio: Fix RCU usage (Rafael Aquini) [2016426]
+- lib/test_overflow.c: avoid tainting the kernel and fix wrap size (Rafael Aquini) [2016426]
+- lib/test_string.c: avoid masking memset16/32/64 failures (Rafael Aquini) [2016426]
+- lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE (Rafael Aquini) [2016426]
+- lib/mpi: Fix karactx leak in mpi_powm (Rafael Aquini) [2016426]
+- sbitmap: fix improper use of smp_mb__before_atomic() (Rafael Aquini) [2016426]
+- kobject: Don't trigger kobject_uevent(KOBJ_REMOVE) twice. (Rafael Aquini) [2016426]
+- lib/div64.c: off by one in shift (Rafael Aquini) [2016426]
+- assoc_array: Fix shortcut creation (Rafael Aquini) [2016426]
+- lib/test_kmod.c: potential double free in error handling (Rafael Aquini) [2016426]
+- devres: always use dev_name() in devm_ioremap_resource() (Rafael Aquini) [2016426]
+- lib: fix build failure in CONFIG_DEBUG_VIRTUAL test (Rafael Aquini) [2016426]
+- test_firmware: fix error return getting clobbered (Rafael Aquini) [2016426]
+- lib: Fix ia64 bootloader linkage (Rafael Aquini) [2016426]
+- lib/test_hexdump.c: fix failure on big endian cpu (Rafael Aquini) [2016426]
+- hv_utils: Set the maximum packet size for VSS driver to the length of the receive buffer (Cathy Avery) [2012842]
+- scsi: storvsc: Log TEST_UNIT_READY errors as warnings (Cathy Avery) [2012842]
+- scsi: storvsc: Correctly handle multiple flags in srb_status (Cathy Avery) [2012842]
+- scsi: storvsc: Update error logging (Cathy Avery) [2012842]
+- scsi: storvsc: Miscellaneous code cleanups (Cathy Avery) [2012842]
+- scsi: storvsc: Use blk_mq_unique_tag() to generate requestIDs (Cathy Avery) [2012842]
+- Drivers: hv: vmbus: Copy packets sent by Hyper-V out of the ring buffer (Cathy Avery) [2012842]
+- scsi: core: Fix hang of freezing queue between blocking and running device (Ewan D. Milne) [2012323]
+- scsi: core: Fix capacity set to zero after offlinining device (Ewan D. Milne) [2012323]
+- scsi: sr: Return correct event when media event code is 3 (Ewan D. Milne) [2012323]
+- scsi: core: Avoid printing an error if target_alloc() returns -ENXIO (Ewan D. Milne) [2012323]
+- scsi: scsi_dh_rdac: Avoid crash during rdac_bus_attach() (Ewan D. Milne) [2012323]
+- scsi: core: Fix bad pointer dereference when ehandler kthread is invalid (Ewan D. Milne) [2012323]
+- scsi: core: Fix the documentation of the scsi_execute() time parameter (Ewan D. Milne) [2012323]
+- scsi: core: Retry I/O for Notify (Enable Spinup) Required error (Ewan D. Milne) [2012323]
+- scsi: sd: Call sd_revalidate_disk() for ioctl(BLKRRPART) (Ewan D. Milne) [2012323]
+- scsi: core: Inline scsi_mq_alloc_queue() (Ewan D. Milne) [2012323]
+- scsi: sr: Return appropriate error code when disk is ejected (Ewan D. Milne) [2012323]
+- scsi: core: Only put parent device if host state differs from SHOST_CREATED (Ewan D. Milne) [2012323]
+- scsi: core: Put .shost_dev in failure path if host state changes to RUNNING (Ewan D. Milne) [2012323]
+- scsi: core: Fix failure handling of scsi_add_host_with_dma() (Ewan D. Milne) [2012323]
+- scsi: core: Fix error handling of scsi_host_alloc() (Ewan D. Milne) [2012323]
+- scsi: st: Return error code in st_scsi_execute() (Ewan D. Milne) [2012323]
+- scsi: scsi_dh_alua: Retry RTPG on a different path after failure (Ewan D. Milne) [2012323]
+- scsi: scsi_transport_fc: Remove double FC_FPORT_DELETED in mask creation (Ewan D. Milne) [2012323]
+- scsi: core: Fix a comment in function scsi_host_dev_release() (Ewan D. Milne) [2012323]
+- scsi: scsi_debug: Drop if with an always false condition (Ewan D. Milne) [2012323]
+- scsi: scsi_debug: Fix cmd_per_lun, set to max_queue (Ewan D. Milne) [2012323]
+- scsi: sd: Introduce a new local variable in sd_check_events() (Ewan D. Milne) [2012323]
+- scsi: core: Modify the scsi_send_eh_cmnd() return value for the SDEV_BLOCK case (Ewan D. Milne) [2012323]
+- scsi: core: Rename scsi_softirq_done() into scsi_complete() (Ewan D. Milne) [2012323]
+- scsi: core: Remove an incorrect comment (Ewan D. Milne) [2012323]
+- scsi: core: Make the scsi_alloc_sgtables() documentation more accurate (Ewan D. Milne) [2012323]
+- scsi: scsi_dh_alua: Prevent duplicate pg info print in alua_rtpg() (Ewan D. Milne) [2012323]
+- scsi: core: scsi_host_cmd_pool is declared twice (Ewan D. Milne) [2012323]
+- scsi: core: Remove duplicate declarations (Ewan D. Milne) [2012323]
+- scsi: core: Fix comment typo (Ewan D. Milne) [2012323]
+- scsi: scsi_dh: Fix a typo (Ewan D. Milne) [2012323]
+- scsi: sd: Fix function name in header (Ewan D. Milne) [2012323]
+- scsi: sd_zbc: Place function name into header (Ewan D. Milne) [2012323]
+- scsi: sd_zbc: Update write pointer offset cache (Ewan D. Milne) [2012323]
+- scsi: st: Fix a use after free in st_open() (Ewan D. Milne) [2012323]
+- scsi: scsi_debug: Fix cmd duration calculation (Ewan D. Milne) [2012323]
+- scsi: core: Set shost as hctx driver_data (Ewan D. Milne) [2012323]
+- scsi: scsi_debug: Add new defer type for mq_poll (Ewan D. Milne) [2012323]
+- scsi: scsi_debug: mq_poll support (Ewan D. Milne) [2012323]
+- scsi: core: Add mq_poll support to SCSI layer (Ewan D. Milne) [2012323]
+- scsi: sd: Remove obsolete variable in sd_remove() (Ewan D. Milne) [2012323]
+- scsi: handle zone resources errors (Ewan D. Milne) [2012323]
+- scsi: scsi_debug: Fix scp is NULL errors (Ewan D. Milne) [2012323]
+- scsi: scsi_debug: Improve command duration calculation (Ewan D. Milne) [2012323]
+- x86/platform: Increase maximum GPIO number for X86_64 (David Arcari) [2016796]
+- pinctrl: pinconf-generic: Add function parameter description 'pctldev' (David Arcari) [2016796]
+- pinctrl: core: Remove duplicated word from devm_pinctrl_unregister() (David Arcari) [2016796]
+- pinctrl: tigerlake: Fix GPIO mapping for newer version of software (David Arcari) [2016796]
+- pinctrl: tigerlake: Add Alder Lake-M ACPI ID (David Arcari) [2016796]
+- docs: update pin-control.rst references (David Arcari) [2016796]
+- pinctrl: Keep enum pin_config_param ordered by name (part 2) (David Arcari) [2016796]
+- pinctrl: core: Show pin numbers for the controllers with base = 0 (David Arcari) [2016796]
+- pinctrl: Add PIN_CONFIG_MODE_PWM to enum pin_config_param (David Arcari) [2016796]
+- pinctrl: Introduce MODE group in enum pin_config_param (David Arcari) [2016796]
+- pinctrl: Keep enum pin_config_param ordered by name (David Arcari) [2016796]
+- pinctrl: core: Fix kernel doc string for pin_get_name() (David Arcari) [2016796]
+- pinctrl: intel: check REVID register value for device presence (David Arcari) [2016796]
+- pinctrl: intel: No need to disable IRQs in the handler (David Arcari) [2016796]
+- pinctrl: core: Set ret to 0 when group is skipped (David Arcari) [2016796]
+- pinctrl: core: Handling pinmux and pinconf separately (David Arcari) [2016796]
+- Documentation: rename pinctl to pin-control (David Arcari) [2016796]
+- pinctrl: pinmux: Add pinmux-select debugfs file (David Arcari) [2016796]
+- pinctrl: use to octal permissions for debugfs files (David Arcari) [2016796]
+- pinctrl: intel: Show the GPIO base calculation explicitly (David Arcari) [2016796]
+- pinctrl: pinmux: add function selector to pinmux-functions (David Arcari) [2016796]
+- pinctrl: intel: Convert capability list to features (David Arcari) [2016796]
+- pinctrl: intel: Drop unnecessary check for predefined features (David Arcari) [2016796]
+- pinctrl: intel: Split intel_pinctrl_add_padgroups() for better maintenance (David Arcari) [2016796]
+- pinctrl: remove empty lines in pinctrl subsystem (David Arcari) [2016796]
+- pinctrl: intel: Actually disable Tx and Rx buffers on GPIO request (David Arcari) [2016796]
+- pinctrl: Remove hole in pinctrl_gpio_range (David Arcari) [2016796]
+- pinctrl: core: Add missing #ifdef CONFIG_GPIOLIB (David Arcari) [2016796]
+- pinctrl: intel: Set default bias in case no particular value given (David Arcari) [2016796]
+- pinctrl: intel: Fix 2 kOhm bias which is 833 Ohm (David Arcari) [2016796]
+- pinctrl: core: print gpio in pins debugfs file (David Arcari) [2016796]
+- pinctrl: pinmux: Add some missing parameter descriptions (David Arcari) [2016796]
+- pinctrl: core: Fix a bunch of kerneldoc issues (David Arcari) [2016796]
+- pinctrl: Define of_pinctrl_get() dummy for !PINCTRL (David Arcari) [2016796]
+- pinctrl: core: Remove extra kref_get which blocks hogs being freed (David Arcari) [2016796]
+- pinctrl: Export some needed symbols at module load time (David Arcari) [2016796]
+- pinctrl: core: Add pinctrl_select_default_state() and export it (David Arcari) [2016796]
+- pinctrl: make pinconf.h self-contained (David Arcari) [2016796]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 194 (David Arcari) [2016796]
+- pinctrl: remove pinctrl/machine.h inclusion from pinctrl/pinconf.h (David Arcari) [2016796]
+- pinctrl: Document pin_config_group_get() return codes like pin_config_get() (David Arcari) [2016796]
+- pinctrl: intel: Convert to use SPDX identifier (David Arcari) [2016796]
+- mm/swapfile: fix an integer overflow in swap_show() (Rafael Aquini) [2008812]
+- mm: swapfile: fix /proc/swaps heading and Size/Used/Priority alignment (Rafael Aquini) [2008812]
+- Makefile: update early devel phase flag (Augusto Caringi) [2000679]
+- KVM: s390: Enable specification exception interpretation (Thomas Huth) [1984894]
+- KVM: x86: Update vCPU's hv_clock before back to guest when tsc_offset is adjusted (Marcelo Tosatti) [2007928]
+- ibmvnic: Remove the proper scrq flush (Desnes A. Nunes do Rosario) [2014097]
+- selftests/net/ipsec: Add test for xfrm_spdattr_type_t (Hangbin Liu) [2018056]
+- selftest/net/ipsec.c: Remove unneeded semicolon (Hangbin Liu) [2018056]
+- selftest/net/xfrm: Add test for ipsec tunnel (Hangbin Liu) [2018056]
+- ipv6: add ip6_sock_set_v6only (Josef Oskera) [2008908]
+- ipv6: When forwarding count rx stats on the orig netdev (Hangbin Liu) [2017704]
+- ipv6: make exception cache less predictible (Hangbin Liu) [2017704]
+- ipv6: use siphash in rt6_exception_hash() (Hangbin Liu) [2017704]
+- ipv6: use jhash2() in rt6_exception_hash() (Hangbin Liu) [2017704]
+- net/l2tp: Fix reference count leak in l2tp_udp_recv_core (Guillaume Nault) [2020380]
+- netfilter: nft_flow_offload: fix underflow in flowtable reference counter (Phil Sutter) [2008551]
+- net: xfrm: Fix end of loop tests for list_for_each_entry (Sabrina Dubroca) [2019168]
+- xfrm: Fix error reporting in xfrm_state_construct. (Sabrina Dubroca) [2019168]
+
+* Fri Nov 05 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-348.6.el8]
+- nvme-mpath: replace direct_make_request with generic_make_request (Gopal Tiwari) [2013505]
+- net-sysfs: try not to restart the syscall if it will fail eventually (Antoine Tenart) [2016005]
+- net: mana: Fix error handling in mana_create_rxq() (Mohammed Gamal) [2011886]
+- net: mana: Prefer struct_size over open coded arithmetic (Mohammed Gamal) [2011886]
+- net: mana: Add WARN_ON_ONCE in case of CQE read overflow (Mohammed Gamal) [2011886]
+- net: mana: Add support for EQ sharing (Mohammed Gamal) [2011886]
+- net: mana: Move NAPI from EQ to CQ (Mohammed Gamal) [2011886]
+- net: mana: Fix a memory leak in an error handling path in 'mana_create_txq()' (Mohammed Gamal) [2011886]
+- net: mana: Use struct_size() in kzalloc() (Mohammed Gamal) [2011886]
+- vmxnet3: switch from 'pci_' to 'dma_' API (Kamal Heib) [2013202]
+- vmxnet3: update to version 6 (Kamal Heib) [2013202]
+- vmxnet3: increase maximum configurable mtu to 9190 (Kamal Heib) [2013202]
+- vmxnet3: set correct hash type based on rss information (Kamal Heib) [2013202]
+- vmxnet3: add support for ESP IPv6 RSS (Kamal Heib) [2013202]
+- vmxnet3: remove power of 2 limitation on the queues (Kamal Heib) [2013202]
+- vmxnet3: add support for 32 Tx/Rx queues (Kamal Heib) [2013202]
+- vmxnet3: prepare for version 6 changes (Kamal Heib) [2013202]
+- vmxnet3: fix cksum offload issues for tunnels with non-default udp ports (Kamal Heib) [2013202]
+- treewide: Use fallthrough pseudo-keyword (Kamal Heib) [2013202]
+- net: Use skb_frag_off accessors (Kamal Heib) [2013202]
+- net: Use skb accessors in network drivers (Kamal Heib) [2013202]
+- vmxnet3: Remove call to memset after dma_alloc_coherent (Kamal Heib) [2013202]
+- cgroup/debug: Fix lockdep splat with "pK" format specifier (Waiman Long) [2007919]
+- configs: Enable FC_APPID (Ewan D. Milne) [1643346]
+- configs: Enable BLK_CGROUP_FC_APPID (Ewan D. Milne) [1643346]
+- scsi: nvme: Added a new sysfs attribute appid_store (Ewan D. Milne) [1643346]
+- scsi: blkcg: Add app identifier support for blkcg (Ewan D. Milne) [1643346]
+- scsi: cgroup: Add cgroup_get_from_id() (Ewan D. Milne) [1643346]
+- perf iostat: Fix Segmentation fault from NULL 'struct perf_counts_values *' (Michael Petlan) [2003981]
+- perf iostat: Use system-wide mode if the target cpu_list is unspecified (Michael Petlan) [2003981]
+- perf beauty: Update copy of linux/socket.h with the kernel sources (Michael Petlan) [2003981]
+- perf test: Fix non-bash issue with stat bpf counters (Michael Petlan) [2003981]
+- perf machine: Fix refcount usage when processing PERF_RECORD_KSYMBOL (Michael Petlan) [2003981]
+- perf metricgroup: Return error code from metricgroup__add_metric_sys_event_iter() (Michael Petlan) [2003981]
+- perf metricgroup: Fix find_evsel_group() event selector (Michael Petlan) [2003981]
+- perf session: Correct buffer copying when peeking events (Michael Petlan) [2003981]
+- perf env: Fix memory leak of bpf_prog_info_linear member (Michael Petlan) [2003981]
+- perf symbol-elf: Fix memory leak by freeing sdt_note.args (Michael Petlan) [2003981]
+- perf stat: Honor event config name on --no-merge (Michael Petlan) [2003981]
+- perf test: Test 17 fails with make LIBPFM4=1 on s390 z/VM (Michael Petlan) [2003981]
+- perf stat: Fix error return code in bperf__load() (Michael Petlan) [2003981]
+- perf record: Move probing cgroup sampling support (Michael Petlan) [2003981]
+- perf probe: Fix NULL pointer dereference in convert_variable_location() (Michael Petlan) [2003981]
+- perf tools: Copy uapi/asm/perf_regs.h from the kernel for MIPS (Michael Petlan) [2003981]
+- perf stat: Fix error check for bpf_program__attach (Michael Petlan) [2003981]
+- perf jevents: Fix getting maximum number of fds (Michael Petlan) [2003981]
+- perf stat: Skip evlist__[enable|disable] when all events uses BPF (Michael Petlan) [2003981]
+- perf script: Add missing PERF_IP_FLAG_CHARS for VM-Entry and VM-Exit (Michael Petlan) [2003981]
+- perf scripts python: exported-sql-viewer.py: Fix warning display (Michael Petlan) [2003981]
+- perf scripts python: exported-sql-viewer.py: Fix Array TypeError (Michael Petlan) [2003981]
+- perf scripts python: exported-sql-viewer.py: Fix copy to clipboard from Top Calls by elapsed Time report (Michael Petlan) [2003981]
+- perf parse-events: Check if the software events array slots are populated (Michael Petlan) [2003981]
+- perf tools: Add 'cgroup-switches' software event (Michael Petlan) [2003981]
+- perf intel-pt: Remove redundant setting of ptq->insn_len (Michael Petlan) [2003981]
+- perf intel-pt: Fix sample instruction bytes (Michael Petlan) [2003981]
+- perf intel-pt: Fix transaction abort handling (Michael Petlan) [2003981]
+- perf test: Fix libpfm4 support (63) test error for nested event groups (Michael Petlan) [2003981]
+- perf buildid-list: Initialize zstd_data (Michael Petlan) [2003981]
+- tools build: Fix quiet cmd indentation (Michael Petlan) [2003981]
+- perf tools: Fix a build error on arm64 with clang (Michael Petlan) [2003981]
+- perf tools: Fix dynamic libbpf link (Michael Petlan) [2003981]
+- perf session: Fix swapping of cpu_map and stat_config records (Michael Petlan) [2003981]
+- perf jevents: Silence warning for ArchStd files (Michael Petlan) [2003981]
+- perf build: Defer printing detected features to the end of all feature checks (Michael Petlan) [2003981]
+- tools build: Allow deferring printing the results of feature detection (Michael Petlan) [2003981]
+- perf build: Regenerate the FEATURE_DUMP file after extra feature checks (Michael Petlan) [2003981]
+- perf session: Dump PERF_RECORD_TIME_CONV event (Michael Petlan) [2003981]
+- perf session: Add swap operation for event TIME_CONV (Michael Petlan) [2003981]
+- perf jit: Let convert_timestamp() to be backwards-compatible (Michael Petlan) [2003981]
+- perf tools: Change fields type in perf_record_time_conv (Michael Petlan) [2003981]
+- perf tools: Enable libtraceevent dynamic linking (Michael Petlan) [2003981]
+- perf report: Print percentage of each event statistics (Michael Petlan) [2003981]
+- perf report: Make --skip-empty as default (Michael Petlan) [2003981]
+- perf report: Add --skip-empty option to suppress 0 event stat (Michael Petlan) [2003981]
+- perf report: Show event sample counts in --stat output (Michael Petlan) [2003981]
+- perf hists: Split hists_stats from events_stats (Michael Petlan) [2003981]
+- perf top: Use evlist->events_stat to count events (Michael Petlan) [2003981]
+- perf data: Add JSON export (Michael Petlan) [2003981]
+- perf stat: Introduce bpf_counter_ops->disable() (Michael Petlan) [2003981]
+- perf stat: Introduce ':b' modifier (Michael Petlan) [2003981]
+- perf stat: Introduce config stat.bpf-counter-events (Michael Petlan) [2003981]
+- perf bpf: check perf_attr_map is compatible with the perf binary (Michael Petlan) [2003981]
+- perf util: Move bpf_perf definitions to a libperf header (Michael Petlan) [2003981]
+- perf tools: Update topdown documentation to permit rdpmc calls (Michael Petlan) [2003981]
+- perf tools: Add a build-test variant to use in builds from a tarball (Michael Petlan) [2003981]
+- perf arm64: Fix off-by-one directory paths. (Michael Petlan) [2003981]
+- perf: Update .gitignore file (Michael Petlan) [2003981]
+- perf stat: Enable iostat mode for x86 platforms (Michael Petlan) [2003981]
+- perf stat: Helper functions for PCIe root ports list in iostat mode (Michael Petlan) [2003981]
+- perf stat: Basic support for iostat in perf (Michael Petlan) [2003981]
+- libperf xyarray: Add bounds checks to xyarray__entry() (Michael Petlan) [2003981]
+- libperf: Add support for user space counter access (Michael Petlan) [2003981]
+- libperf tests: Add support for verbose printing (Michael Petlan) [2003981]
+- libperf: Add evsel mmap support (Michael Petlan) [2003981]
+- tools include: Add an initial math64.h (Michael Petlan) [2003981]
+- perf beauty: Fix fsconfig generator (Michael Petlan) [2003981]
+- perf record: Improve 'Workload failed' message printing events + what was exec'ed (Michael Petlan) [2003981]
+- perf evlist: Add a method to return the list of evsels as a string (Michael Petlan) [2003981]
+- perf annotate: Fix sample events lost in stdio mode (Michael Petlan) [2003981]
+- perf vendor events amd: Add Zen3 events (Michael Petlan) [2003981]
+- perf vendor events amd: Use 0x02x format for event code and umask (Michael Petlan) [2003981]
+- perf vendor events amd: Use lowercases for all the eventcodes and umasks (Michael Petlan) [2003981]
+- perf vendor events amd: Fix broken L2 Cache Hits from L2 HWPF metric (Michael Petlan) [2003981]
+- perf vendor events arm64: Add Hisi hip08 L3 metrics (Michael Petlan) [2003981]
+- perf vendor events arm64: Add Hisi hip08 L2 metrics (Michael Petlan) [2003981]
+- perf vendor events arm64: Add Hisi hip08 L1 metrics (Michael Petlan) [2003981]
+- perf pmu: Add pmu_events_map__find() function to find the common PMU map for the system (Michael Petlan) [2003981]
+- perf test: Handle metric reuse in pmu-events parsing test (Michael Petlan) [2003981]
+- perf metricgroup: Make find_metric() public with name change (Michael Petlan) [2003981]
+- perf mem-events: Remove unnecessary 'struct mem_info' forward declaration (Michael Petlan) [2003981]
+- perf evsel: Remove duplicate 'struct target' forward declaration (Michael Petlan) [2003981]
+- perf annotate: Add --demangle and --demangle-kernel (Michael Petlan) [2003981]
+- perf tools: Preserve identifier id in OCaml demangler (Michael Petlan) [2003981]
+- perf daemon: Remove duplicate includes (Michael Petlan) [2003981]
+- perf tools: Remove duplicate struct forward declarations (Michael Petlan) [2003981]
+- perf test: Add CSV summary test (Michael Petlan) [2003981]
+- perf stat: Align CSV output for summary mode (Michael Petlan) [2003981]
+- perf test: Add a shell test for 'perf stat --bpf-counters' new option (Michael Petlan) [2003981]
+- perf stat: Measure 't0' and 'ref_time' after enable_counters() (Michael Petlan) [2003981]
+- perf stat: Introduce 'bperf' to share hardware PMCs with BPF (Michael Petlan) [2003981]
+- perf tools: Fix various typos in comments (Michael Petlan) [2003981]
+- perf test: Add 30s timeout for wait for daemon start. (Michael Petlan) [2003981]
+- perf test: Cleanup daemon if test is interrupted. (Michael Petlan) [2003981]
+- perf test: Remove unused argument (Michael Petlan) [2003981]
+- perf stat: Improve readability of shadow stats (Michael Petlan) [2003981]
+- perf stat: Elaborate use cases for the -n/--null command line option (Michael Petlan) [2003981]
+- perf evlist: Change the COMM when preparing the workload (Michael Petlan) [2003981]
+- perf machine: Assign boolean values to a bool variable (Michael Petlan) [2003981]
+- perf tools: use ARRAY_SIZE (Michael Petlan) [2003981]
+- perf stat: Fixup __perf_stat_evsel__is() prefix (Michael Petlan) [2003981]
+- perf script: Fixup 'struct evsel_script' method prefix (Michael Petlan) [2003981]
+- perf symbols: Fix dso__fprintf_symbols_by_name() to return the number of printed chars (Michael Petlan) [2003981]
+- tools include: Add __sum16 and __wsum definitions. (Michael Petlan) [2003981]
+- perf annotate: Show full source location with 'l' hotkey (Michael Petlan) [2003981]
+- perf bench: Fix misspellings using codespell (Michael Petlan) [2003981]
+- perf config: Add annotate.demangle{,_kernel} (Michael Petlan) [2003981]
+- perf bpf: Minor whitespace cleanup. (Michael Petlan) [2003981]
+- perf tools: Enable warnings when compiling BPF programs (Michael Petlan) [2003981]
+- perf skel: Remove some unused variables. (Michael Petlan) [2003981]
+- perf report: Create option to disable raw event ordering (Michael Petlan) [2003981]
+- perf metric: Remove unneeded semicolon (Michael Petlan) [2003981]
+- perf cs-etm: Detect pid in VMID for kernel running at EL2 (Michael Petlan) [2003981]
+- perf cs-etm: Add helper cs_etm__get_pid_fmt() (Michael Petlan) [2003981]
+- perf cs-etm: Support PID tracing in config (Michael Petlan) [2003981]
+- perf cs-etm: Fix bitmap for option (Michael Petlan) [2003981]
+- perf cs-etm: Update ETM metadata format (Michael Petlan) [2003981]
+- perf vendor events power9: Remove unsupported metrics (Michael Petlan) [2003981]
+- perf buildid-cache: Add test for PE executable (Michael Petlan) [2003981]
+- perf docs: Add man pages to see also (Michael Petlan) [2003981]
+- perf tools: Generate mips syscalls_n64.c syscall table (Michael Petlan) [2003981]
+- perf s390: Move syscall.tbl check into check-headers.sh (Michael Petlan) [2003981]
+- perf tools: Support MIPS unwinding and dwarf-regs (Michael Petlan) [2003981]
+- tools: do not include scripts/Kbuild.include (Michael Petlan) [2003981]
+- tools: Allow proper CC/CXX/... override with LLVM=1 in Makefile.include (Michael Petlan) [2003981]
+- perf intel-pt: Use aux_watermark (Michael Petlan) [2003981]
+- perf/x86/intel/uncore: Fix M2M event umask for Ice Lake server (Michael Petlan) [2003981]
+- perf/x86/intel/uncore: Fix a kernel WARNING triggered by maxcpus=1 (Michael Petlan) [2003981]
+- perf: Fix data race between pin_count increment/decrement (Michael Petlan) [2003981]
+- perf/x86: Avoid touching LBR_TOS MSR for Arch LBR (Michael Petlan) [2003981]
+- perf/x86: Allow for 8<num_fixed_counters<16 (Michael Petlan) [2003981]
+- perf/amd/uncore: Fix sysfs type mismatch (Michael Petlan) [2003981]
+- x86/events/amd/iommu: Fix sysfs type mismatch (Michael Petlan) [2003981]
+- perf core: Add PERF_COUNT_SW_CGROUP_SWITCHES event (Michael Petlan) [2003981]
+- perf core: Factor out __perf_sw_event_sched (Michael Petlan) [2003981]
+- perf/x86: Move cpuc->running into P4 specific code (Michael Petlan) [2003981]
+- perf: Add support for event removal on exec (Michael Petlan) [2003981]
+- perf: Support only inheriting events if cloned with CLONE_THREAD (Michael Petlan) [2003981]
+- perf: Apply PERF_EVENT_IOC_MODIFY_ATTRIBUTES to children (Michael Petlan) [2003981]
+- perf: Rework perf_event_exit_event() (Michael Petlan) [2003981]
+- perf: Cap allocation order at aux_watermark (Michael Petlan) [2003981]
+- perf/x86/intel/uncore: Enable IIO stacks to PMON mapping for multi-segment SKX (Michael Petlan) [2003981]
+- perf core: Allocate perf_event in the target node memory (Michael Petlan) [2003981]
+- perf core: Add a kmem_cache for struct perf_event (Michael Petlan) [2003981]
+- perf core: Allocate perf_buffer in the target node memory (Michael Petlan) [2003981]
+- x86: Remove unusual Unicode characters from comments (Michael Petlan) [2003981]
+- redhat/configs: Add CONFIG_TIMERLAT_TRACER (Jerome Marchand) [1979382]
+- redhat/configs: Add CONFIG_OSNOISE_TRACER (Jerome Marchand) [1979382]
+- tracing/osnoise: Fix missed cpus_read_unlock() in start_per_cpu_kthreads() (Jerome Marchand) [1979382]
+- tracing: Replace deprecated CPU-hotplug functions. (Jerome Marchand) [1979382]
+- trace/osnoise: Print a stop tracing message (Jerome Marchand) [1979382]
+- trace/timerlat: Add a header with PREEMPT_RT additional fields (Jerome Marchand) [1979382]
+- trace/osnoise: Add a header with PREEMPT_RT additional fields (Jerome Marchand) [1979382]
+- tracing: Quiet smp_processor_id() use in preemptable warning in hwlat (Jerome Marchand) [1979382]
+- trace/timerlat: Fix indentation on timerlat_main() (Jerome Marchand) [1979382]
+- trace/osnoise: Make 'noise' variable s64 in run_osnoise() (Jerome Marchand) [1979382]
+- tracing: Fix spelling in osnoise tracer "interferences" -> "interference" (Jerome Marchand) [1979382]
+- Documentation: Fix a typo on trace/osnoise-tracer (Jerome Marchand) [1979382]
+- trace/osnoise: Fix return value on osnoise_init_hotplug_support (Jerome Marchand) [1979382]
+- trace/osnoise: Make interval u64 on osnoise_main (Jerome Marchand) [1979382]
+- trace/osnoise: Fix 'no previous prototype' warnings (Jerome Marchand) [1979382]
+- tracing: Have osnoise_main() add a quiescent state for task rcu (Jerome Marchand) [1979382]
+- trace/osnoise: Support hotplug operations (Jerome Marchand) [1979382]
+- trace/hwlat: Support hotplug operations (Jerome Marchand) [1979382]
+- trace/hwlat: Protect kdata->kthread with get/put_online_cpus (Jerome Marchand) [1979382]
+- trace: Add timerlat tracer (Jerome Marchand) [1979382]
+- trace: Add osnoise tracer (Jerome Marchand) [1979382]
+- trace: Add __print_ns_to_secs() and __print_ns_without_secs() helpers (Jerome Marchand) [1979382]
+- trace/hwlat: Remove printk from sampling loop (Jerome Marchand) [1979382]
+- trace/hwlat: Use trace_min_max_param for width and window params (Jerome Marchand) [1979382]
+- trace: Add a generic function to read/write u64 values from tracefs (Jerome Marchand) [1979382]
+- trace/hwlat: Implement the per-cpu mode (Jerome Marchand) [1979382]
+- trace/hwlat: Switch disable_migrate to mode none (Jerome Marchand) [1979382]
+- trace/hwlat: Implement the mode config option (Jerome Marchand) [1979382]
+- uio_hv_generic: Fix another memory leak in error handling paths (Mohammed Gamal) [2008561]
+- uio_hv_generic: Fix a memory leak in error handling paths (Mohammed Gamal) [2008561]
+- mfd: intel-lpss: Add Intel Alder Lake-M PCI IDs (David Arcari) [1929498]
+- xfs: fix up non-directory creation in SGID directories (Brian Foster) [2004810]
+- xfs: kill ialloced in xfs_dialloc() (Brian Foster) [2004810]
+- xfs: spilt xfs_dialloc() into 2 functions (Brian Foster) [2004810]
+- xfs: move xfs_dialloc_roll() into xfs_dialloc() (Brian Foster) [2004810]
+- xfs: move on-disk inode allocation out of xfs_ialloc() (Brian Foster) [2004810]
+- xfs: introduce xfs_dialloc_roll() (Brian Foster) [2004810]
+- xfs: convert noroom, okalloc in xfs_dialloc() to bool (Brian Foster) [2004810]
+- xfs: check tp->t_dqinfo value instead of the XFS_TRANS_DQ_DIRTY flag (Brian Foster) [2004810]
+- scsi: vmw_pvscsi: Set correct residual data length (Cathy Avery) [2012237]
+- scsi: vmw_pvscsi: MAINTAINERS: Update maintainer (Cathy Avery) [2012237]
+- treewide: Use fallthrough pseudo-keyword (Cathy Avery) [2012237]
+- scsi: be2iscsi: Fix use-after-free during IP updates (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Fix some missing space in some messages (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Remove redundant initialization (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Demote incomplete/non-conformant kernel-doc header (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Ensure function follows directly after its header (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Fix beiscsi_phys_port()'s name in header (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Provide missing function name in header (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Fix incorrect naming of beiscsi_iface_config_vlan() (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Mark beiscsi_attrs with static keyword (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Revert "Fix a theoretical leak in beiscsi_create_eqs()" (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Fix a theoretical leak in beiscsi_create_eqs() (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Correct misdocumentation of function param 'ep' (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Add missing function parameter description (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Fix misdocumentation of 'pcontext' (Maurizio Lombardi) [1984347]
+- scsi: be2iscsi: Fix API/documentation slip (Maurizio Lombardi) [1984347]
+- powerpc/spinlock: Properly define pv_spinlocks_init() (Waiman Long) [2014363]
+- ACPI: Pass the same capabilities to the _OSC regardless of the query flag (Mark Langsdorf) [1982319]
+- Revert "[acpi] ACPI: sleep: Put the FACS table after using it" (Mark Langsdorf) [1982319]
+- ACPICA: Clean up context mutex during object deletion (Mark Langsdorf) [1982319]
+- ACPI: power: Refine turning off unused power resources (Mark Langsdorf) [1982319]
+- ACPI: NFIT: Fix support for variable 'SPA' structure size (Mark Langsdorf) [1982319]
+- ACPI: custom_method: fix a possible memory leak (Mark Langsdorf) [1982319]
+- ACPI: custom_method: fix potential use-after-free issue (Mark Langsdorf) [1982319]
+- ACPI: irq: Prevent unregistering of GIC SGIs (Mark Langsdorf) [1982319]
+- ACPI: GTDT: Don't corrupt interrupt mappings on watchdow probe failure (Mark Langsdorf) [1982319]
+- ACPI: video: use native backlight for GA401/GA502/GA503 (Mark Langsdorf) [1982319]
+- ACPI: APEI: remove redundant assignment to variable rc (Mark Langsdorf) [1982319]
+- ACPI: utils: Capitalize abbreviations in the comments (Mark Langsdorf) [1982319]
+- ACPI: utils: Document for_each_acpi_dev_match() macro (Mark Langsdorf) [1982319]
+- ACPI: bus: Introduce acpi_dev_get() and reuse it in ACPI code (Mark Langsdorf) [1982319]
+- ACPI: scan: Utilize match_string() API (Mark Langsdorf) [1982319]
+- ACPI: CPPC: Replace cppc_attr with kobj_attribute (Mark Langsdorf) [1982319]
+- ACPI: scan: Call acpi_get_object_info() from acpi_set_pnp_ids() (Mark Langsdorf) [1982319]
+- ACPI: scan: Drop sta argument from acpi_init_device_object() (Mark Langsdorf) [1982319]
+- ACPI: scan: Drop sta argument from acpi_add_single_object() (Mark Langsdorf) [1982319]
+- ACPI: scan: Rearrange checks in acpi_bus_check_add() (Mark Langsdorf) [1982319]
+- ACPI: scan: Fold acpi_bus_type_and_status() into its caller (Mark Langsdorf) [1982319]
+- ACPI: video: Check LCD flag on ACPI-reduced-hardware devices (Hans de Goede) [1982319]
+- ACPI: utils: Add acpi_reduced_hardware() helper (Mark Langsdorf) [1982319]
+- ACPI: dock: fix some coding style issues (Mark Langsdorf) [1982319]
+- ACPI: sysfs: fix some coding style issues (Mark Langsdorf) [1982319]
+- ACPI: PM: add a missed blank line after declarations (Mark Langsdorf) [1982319]
+- ACPI: custom_method: fix a coding style issue (Mark Langsdorf) [1982319]
+- ACPI: CPPC: fix some coding style issues (Mark Langsdorf) [1982319]
+- ACPI: button: fix some coding style issues (Mark Langsdorf) [1982319]
+- ACPI: battery: fix some coding style issues (Mark Langsdorf) [1982319]
+- ACPI: acpi_pad: add a missed blank line after declarations (Mark Langsdorf) [1982319]
+- ACPI: LPSS: add a missed blank line after declarations (Mark Langsdorf) [1982319]
+- ACPI: ipmi: remove useless return statement for void function (Mark Langsdorf) [1982319]
+- ACPI: processor: fix some coding style issues (Mark Langsdorf) [1982319]
+- ACPI: APD: fix a block comment align issue (Mark Langsdorf) [1982319]
+- ACPI: AC: fix some coding style issues (Mark Langsdorf) [1982319]
+- ACPICA: Update version to 20210331 (Mark Langsdorf) [1982319]
+- ACPICA: IORT: Updates for revision E.b (Mark Langsdorf) [1982319]
+- ACPICA: iASL: Decode subtable type field for VIOT (Mark Langsdorf) [1982319]
+- ACPICA: iASL: Add support for CEDT table (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: add support for PHAT table (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: add CSI2Bus resource template (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: PMTT: add new fields/structures (Mark Langsdorf) [1982319]
+- ACPICA: CXL 2.0: CEDT: Add new CEDT table (Mark Langsdorf) [1982319]
+- ACPICA: acpisrc: Add missing conversion for VIOT support (Mark Langsdorf) [1982319]
+- ACPICA: iASL: Add definitions for the VIOT table (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: add SDEV secure access components (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: Add new flags in SRAT (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: HMAT: add new fields/flags (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: NFIT: add Location Cookie field (Mark Langsdorf) [1982319]
+- ACPICA: Tree-wide: fix various typos and spelling mistakes (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: PPTT: add new version of subtable type 1 (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: PCCT: add support for subtable type 5 (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: MADT: add Multiprocessor Wakeup Structure (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: add CXL ACPI device ID and _CBR object (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: add USB4 capabilities UUID (Mark Langsdorf) [1982319]
+- ACPICA: ACPI 6.4: Add new predefined objects _BPC, _BPS, and _BPT (Mark Langsdorf) [1982319]
+- ACPICA: Add parsing for IVRS IVHD 40h and device entry F0h (Mark Langsdorf) [1982319]
+- ACPI: CPPC: Add emtpy stubs of functions for CONFIG_ACPI_CPPC_LIB unset (Mark Langsdorf) [1982319]
+- ACPI: scan: Turn off unused power resources during initialization (Mark Langsdorf) [1982319]
+- ACPI: power: Turn off unused power resources unconditionally (Mark Langsdorf) [1982319]
+- ACPI: fix various typos in comments (Mark Langsdorf) [1982319]
+- ACPI: utils: Introduce acpi_evaluation_failure_warn() (Mark Langsdorf) [1982319]
+- ACPI: processor: perflib: Eliminate redundant status check (Mark Langsdorf) [1982319]
+- ACPI: Drop unused ACPI_*_COMPONENT definitions and update documentation (Mark Langsdorf) [1982319]
+- ACPI: sysfs: Get rid of ACPICA message printing (Mark Langsdorf) [1982319]
+- ACPI: HED: Drop unused ACPI_MODULE_NAME() definition (Mark Langsdorf) [1982319]
+- ACPI: processor: Get rid of ACPICA message printing (Mark Langsdorf) [1982319]
+- ACPI: processor: idle: Drop extra prefix from pr_notice() (Mark Langsdorf) [1982319]
+- ACPI: processor: Remove initialization of static variable (Mark Langsdorf) [1982319]
+- ACPI: PCI: Replace direct printk() invocations in pci_link.c (Mark Langsdorf) [1982319]
+- ACPI: PCI: Drop ACPI_PCI_COMPONENT that is not used any more (Mark Langsdorf) [1982319]
+- ACPI: PCI: Replace ACPI_DEBUG_PRINT() and ACPI_EXCEPTION() (Mark Langsdorf) [1982319]
+- ACPI: PCI: IRQ: Consolidate printing diagnostic messages (Mark Langsdorf) [1982319]
+- arm64: compat: Poison the compat sigpage (C. Erastus Toe) [1983849] {CVE-2021-21781}
+- ARM: ensure the signal page contains defined contents (C. Erastus Toe) [1983849] {CVE-2021-21781}
+- powerpc/pseries: Fix update of LPAR security flavor after LPM (Steve Best) [1997294]
+- s390/qeth: Update MACs of LEARNING_SYNC device (Robin Dapp) [1919227]
+- s390/qeth: Switchdev event handler (Robin Dapp) [1919227]
+- s390/qeth: Register switchdev event handler (Robin Dapp) [1919227]
+- PCI: Add pcie_ptm_enabled() (Petr Oros) [2006834]
+- Revert "PCI: Make pci_enable_ptm() private" (Petr Oros) [2006834]
+- x86/cpufeatures: Force disable X86_FEATURE_ENQCMD and remove update_pasid() (Jerry Snitselaar) [2004577]
+- s390: report more CPU capabilities (Robin Dapp) [1984839]
+- s390/disassembler: add instructions (Robin Dapp) [1984839]
+- s390/opcodes: rename selhhhr to selfhr (Robin Dapp) [1984839]
+- s390/disassembler: update opcode table (Robin Dapp) [1984839]
+- s390/opcodes: add missing instructions to the disassembler (Robin Dapp) [1984839]
+- CI: Add template for baseline gcov build (Israel Santana Aleman)
+- futex: Remove unused variable 'vpid' in futex_proxy_trylock_atomic() (Waiman Long) [2000293]
+- futex: Prevent inconsistent state and exit race (Waiman Long) [2000293]
+- locking/ww_mutex: Initialize waiter.ww_ctx properly (Waiman Long) [2000293]
+- futex: Return error code instead of assigning it without effect (Waiman Long) [2000293]
+- Documentation: seqlock: s/LOCKTYPE/LOCKNAME/g (Waiman Long) [2000293]
+- lib/test_lockup.c: fix return value of test_lockup_init() (Waiman Long) [2000293]
+- locking/rwbase: Take care of ordering guarantee for fastpath reader (Waiman Long) [2000293]
+- locking/rwbase: Extract __rwbase_write_trylock() (Waiman Long) [2000293]
+- locking/rwbase: Properly match set_and_save_state() to restore_state() (Waiman Long) [2000293]
+- locking/rtmutex: Fix ww_mutex deadlock check (Waiman Long) [2000293]
+- locking/rwsem: Add missing __init_rwsem() for PREEMPT_RT (Waiman Long) [2000293]
+- locking/rtmutex: Return success on deadlock for ww_mutex waiters (Waiman Long) [2000293]
+- locking/rtmutex: Prevent spurious EDEADLK return caused by ww_mutexes (Waiman Long) [2000293]
+- locking/rtmutex: Dequeue waiter on ww_mutex deadlock (Waiman Long) [2000293]
+- locking/rtmutex: Dont dereference waiter lockless (Waiman Long) [2000293]
+- locking/local_lock: Add PREEMPT_RT support (Waiman Long) [2000293]
+- locking/spinlock/rt: Prepare for RT local_lock (Waiman Long) [2000293]
+- locking/rtmutex: Add adaptive spinwait mechanism (Waiman Long) [2000293]
+- locking/rtmutex: Implement equal priority lock stealing (Waiman Long) [2000293]
+- preempt: Adjust PREEMPT_LOCK_OFFSET for RT (Waiman Long) [2000293]
+- locking/rtmutex: Prevent lockdep false positive with PI futexes (Waiman Long) [2000293]
+- futex: Prevent requeue_pi() lock nesting issue on RT (Waiman Long) [2000293]
+- futex: Simplify handle_early_requeue_pi_wakeup() (Waiman Long) [2000293]
+- futex: Reorder sanity checks in futex_requeue() (Waiman Long) [2000293]
+- futex: Clarify comment in futex_requeue() (Waiman Long) [2000293]
+- futex: Restructure futex_requeue() (Waiman Long) [2000293]
+- futex: Correct the number of requeued waiters for PI (Waiman Long) [2000293]
+- futex: Remove bogus condition for requeue PI (Waiman Long) [2000293]
+- futex: Clarify futex_requeue() PI handling (Waiman Long) [2000293]
+- futex: Clean up stale comments (Waiman Long) [2000293]
+- futex: Validate waiter correctly in futex_proxy_trylock_atomic() (Waiman Long) [2000293]
+- lib/test_lockup: Adapt to changed variables (Waiman Long) [2000293]
+- locking/rtmutex: Add mutex variant for RT (Waiman Long) [2000293]
+- locking/ww_mutex: Implement rtmutex based ww_mutex API functions (Waiman Long) [2000293]
+- locking/rtmutex: Extend the rtmutex core to support ww_mutex (Waiman Long) [2000293]
+- locking/ww_mutex: Add rt_mutex based lock type and accessors (Waiman Long) [2000293]
+- locking/ww_mutex: Add RT priority to W/W order (Waiman Long) [2000293]
+- locking/ww_mutex: Implement rt_mutex accessors (Waiman Long) [2000293]
+- locking/ww_mutex: Abstract out internal lock accesses (Waiman Long) [2000293]
+- locking/ww_mutex: Abstract out mutex types (Waiman Long) [2000293]
+- locking/ww_mutex: Abstract out mutex accessors (Waiman Long) [2000293]
+- locking/ww_mutex: Abstract out waiter enqueueing (Waiman Long) [2000293]
+- locking/ww_mutex: Abstract out the waiter iteration (Waiman Long) [2000293]
+- locking/ww_mutex: Remove the __sched annotation from ww_mutex APIs (Waiman Long) [2000293]
+- locking/ww_mutex: Split out the W/W implementation logic into kernel/locking/ww_mutex.h (Waiman Long) [2000293]
+- locking/ww_mutex: Split up ww_mutex_unlock() (Waiman Long) [2000293]
+- locking/ww_mutex: Gather mutex_waiter initialization (Waiman Long) [2000293]
+- locking/ww_mutex: Simplify lockdep annotations (Waiman Long) [2000293]
+- locking/mutex: Make mutex::wait_lock raw (Waiman Long) [2000293]
+- locking/ww_mutex: Move the ww_mutex definitions from <linux/mutex.h> into <linux/ww_mutex.h> (Waiman Long) [2000293]
+- locking/mutex: Move the 'struct mutex_waiter' definition from <linux/mutex.h> to the internal header (Waiman Long) [2000293]
+- locking/mutex: Consolidate core headers, remove kernel/locking/mutex-debug.h (Waiman Long) [2000293]
+- locking/rtmutex: Squash !RT tasks to DEFAULT_PRIO (Waiman Long) [2000293]
+- locking/rwlock: Provide RT variant (Waiman Long) [2000293]
+- locking/spinlock: Provide RT variant (Waiman Long) [2000293]
+- locking/rtmutex: Provide the spin/rwlock core lock function (Waiman Long) [2000293]
+- locking/spinlock: Provide RT variant header: <linux/spinlock_rt.h> (Waiman Long) [2000293]
+- locking/spinlock: Provide RT specific spinlock_t (Waiman Long) [2000293]
+- locking/rtmutex: Reduce <linux/rtmutex.h> header dependencies, only include <linux/rbtree_types.h> (Waiman Long) [2000293]
+- rbtree: Split out the rbtree type definitions into <linux/rbtree_types.h> (Waiman Long) [2000293]
+- locking/lockdep: Reduce header dependencies in <linux/debug_locks.h> (Waiman Long) [2000293]
+- locking/rtmutex: Prevent future include recursion hell (Waiman Long) [2000293]
+- locking/spinlock: Split the lock types header, and move the raw types into <linux/spinlock_types_raw.h> (Waiman Long) [2000293]
+- locking/rtmutex: Guard regular sleeping locks specific functions (Waiman Long) [2000293]
+- locking/rtmutex: Prepare RT rt_mutex_wake_q for RT locks (Waiman Long) [2000293]
+- locking/rtmutex: Use rt_mutex_wake_q_head (Waiman Long) [2000293]
+- locking/rtmutex: Provide rt_wake_q_head and helpers (Waiman Long) [2000293]
+- locking/rtmutex: Add wake_state to rt_mutex_waiter (Waiman Long) [2000293]
+- locking/rwsem: Add rtmutex based R/W semaphore implementation (Waiman Long) [2000293]
+- locking/rt: Add base code for RT rw_semaphore and rwlock (Waiman Long) [2000293]
+- locking/rtmutex: Provide rt_mutex_base_is_locked() (Waiman Long) [2000293]
+- locking/rtmutex: Provide rt_mutex_slowlock_locked() (Waiman Long) [2000293]
+- locking/rtmutex: Split out the inner parts of 'struct rtmutex' (Waiman Long) [2000293]
+- locking/rtmutex: Split API from implementation (Waiman Long) [2000293]
+- locking/rtmutex: Convert macros to inlines (Waiman Long) [2000293]
+- locking/rtmutex: Remove rt_mutex_is_locked() (Waiman Long) [2000293]
+- sched/wake_q: Provide WAKE_Q_HEAD_INITIALIZER() (Waiman Long) [2000293]
+- sched/core: Provide a scheduling point for RT locks (Waiman Long) [2000293]
+- sched/core: Rework the __schedule() preempt argument (Waiman Long) [2000293]
+- sched/wakeup: Prepare for RT sleeping spin/rwlocks (Waiman Long) [2000293]
+- sched/wakeup: Reorganize the current::__state helpers (Waiman Long) [2000293]
+- sched/wakeup: Introduce the TASK_RTLOCK_WAIT state bit (Waiman Long) [2000293]
+- sched/wakeup: Split out the wakeup ->__state check (Waiman Long) [2000293]
+- locking/rtmutex: Set proper wait context for lockdep (Waiman Long) [2000293]
+- locking/local_lock: Add missing owner initialization (Waiman Long) [2000293]
+- locking/rtmutex: Use the correct rtmutex debugging config option (Waiman Long) [2000293]
+- tools/runqslower: Use __state instead of state (Waiman Long) [2000293]
+- locking/rwsem: Remove an unused parameter of rwsem_wake() (Waiman Long) [2000293]
+- locking/mutex: Add MUTEX_WARN_ON (Waiman Long) [2000293]
+- locking/mutex: Introduce __mutex_trylock_or_handoff() (Waiman Long) [2000293]
+- locking/mutex: Fix HANDOFF condition (Waiman Long) [2000293]
+- locking/mutex: Use try_cmpxchg() (Waiman Long) [2000293]
+- sched: Change task_struct::state (Waiman Long) [2000293]
+- isdn/hisax: Use get_current_state() (Waiman Long) [2000293]
+- sched,timer: Use __set_current_state() (Waiman Long) [2000293]
+- sched: Add get_current_state() (Waiman Long) [2000293]
+- sched,perf,kvm: Fix preemption condition (Waiman Long) [2000293]
+- sched: Introduce task_is_running() (Waiman Long) [2000293]
+- sched: Unbreak wakeups (Waiman Long) [2000293]
+- seqlock: Remove trailing semicolon in macros (Waiman Long) [2000293]
+- locking/mutex: clear MUTEX_FLAGS if wait_list is empty due to signal (Waiman Long) [2000293]
+- ptrace: make ptrace() fail if the tracee changed its pid unexpectedly (Waiman Long) [2000293]
+- sched: Rename sched_info_{queued,dequeued} (Waiman Long) [2000293]
+- locking/rwsem: Fix comment typo (Waiman Long) [2000293]
+- bpf: runqslower: Use task local storage (Waiman Long) [2000293]
+- lib/test_lockup.c: minimum fix to get it compiled on PREEMPT_RT (Waiman Long) [2000293]
+- seqlock: kernel-doc: Specify when preemption is automatically altered (Waiman Long) [2000293]
+- seqlock: Prefix internal seqcount_t-only macros with a "do_" (Waiman Long) [2000293]
+- rcu: Check and report missed fqs timer wakeup on RCU stall (Waiman Long) [2000293]
+- softirq: Move related code into one section (Waiman Long) [2000293]
+- seqlock: Rename __seqprop() users (Waiman Long) [2000293]
+- seqlock: avoid -Wshadow warnings (Waiman Long) [2000293]
+- locking/seqlocks: Fix kernel-doc warnings (Waiman Long) [2000293]
+- locking/seqlock: Tweak DEFINE_SEQLOCK() kernel doc (Waiman Long) [2000293]
+- seqlock: Unbreak lockdep (Waiman Long) [2000293]
+- seqlock: PREEMPT_RT: Do not starve seqlock_t writers (Waiman Long) [2000293]
+- seqlock: seqcount_LOCKNAME_t: Introduce PREEMPT_RT support (Waiman Long) [2000293]
+- seqlock: seqcount_t: Implement all read APIs as statement expressions (Waiman Long) [2000293]
+- seqlock: Use unique prefix for seqcount_t property accessors (Waiman Long) [2000293]
+- seqlock: seqcount_LOCKNAME_t: Standardize naming convention (Waiman Long) [2000293]
+- seqlock: seqcount latch APIs: Only allow seqcount_latch_t (Waiman Long) [2000293]
+- rbtree_latch: Use seqcount_latch_t (Waiman Long) [2000293]
+- x86/tsc: Use seqcount_latch_t (Waiman Long) [2000293]
+- timekeeping: Use seqcount_latch_t (Waiman Long) [2000293]
+- time/sched_clock: Mark sched_clock_read_begin/retry() as notrace (Waiman Long) [2000293]
+- time/sched_clock: Use raw_read_seqcount_latch() (Waiman Long) [2000293]
+- time/sched_clock: Use raw_read_seqcount_latch() during suspend (Waiman Long) [2000293]
+- time/sched_clock: Use seqcount_latch_t (Waiman Long) [2000293]
+- sched_clock: Expose struct clock_read_data (Waiman Long) [2000293]
+- timers/sched_clock: Include local timekeeping.h for missing declarations (Waiman Long) [2000293]
+- sched/clock: Move sched clock initialization and merge with generic clock (Waiman Long) [2000293]
+- userfaultfd: simplify fault handling (Waiman Long) [2000293]
+- rwsem: fix commas in initialisation (Waiman Long) [2000293]
+- lib/test_lockup.c: make test_inode static (Waiman Long) [2000293]
+- genirq: Provide irq_enter/exit_rcu() (Waiman Long) [2000293]
+- lib/test_lockup.c: add parameters for locking generic vfs locks (Waiman Long) [2000293]
+- lib/test_lockup.c: fix spelling mistake "iteraions" -> "iterations" (Waiman Long) [2000293]
+- lib/test_lockup: test module to generate lockups (Waiman Long) [2000293]
+- x86/tsc: Move inline keyword to the beginning of function declarations (Waiman Long) [2000293]
+- softirq: Don't skip softirq execution when softirq thread is parking (Waiman Long) [2000293]
+- sched/core: Convert task_struct.stack_refcount to refcount_t (Waiman Long) [2000293]
+- kernel/hung_task.c: break RCU locks based on jiffies (Waiman Long) [2000293]
+- x86/process: Avoid unnecessary NULL check in get_wchan() (Waiman Long) [2000293]
+- kernel/rwsem: Remove ifdef __init_rwsem code from rwsem.c (Waiman Long) [2000293]
+- misc: hpilo: map iLO shared memory by PCI revision id (Joseph Szczypek) [1985076]
+- misc: hpilo: MAINTAINERS: add entry for hpilo (Joseph Szczypek) [1985076]
+- misc: hpilo: avoid a useless memset (Joseph Szczypek) [1985076]
+- misc: hpilo: switch from 'pci_' to 'dma_' API (Joseph Szczypek) [1985076]
+- hpilo: Replace one-element array with flexible-array member (Joseph Szczypek) [1985076]
+- perf flamegraph: flamegraph.py script improvements (Michael Petlan) [2010269]
+
+* Wed Nov 03 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-348.5.el8]
+- ceph: skip existing superblocks that are blocklisted or shut down when mounting (Jeffrey Layton) [2011462]
+- cpufreq: intel_pstate: Combine ->stop_cpu() and ->offline() (David Arcari) [2003695]
+- cpufreq: intel_pstate: Add Cometlake support in no-HWP mode (David Arcari) [2003695]
+- cpufreq: intel_pstate: Add Icelake servers support in no-HWP mode (David Arcari) [2003695]
+- i2c: i801: Add support for Intel Alder Lake PCH-M (David Arcari) [1929497]
+- i2c: i801: Add Block Write-Block Read Process Call support (David Arcari) [1929497]
+- pinctrl: tigerlake: Add Alder Lake-M ACPI ID (David Arcari) [1929501]
+- x86/microcode: Check for offline CPUs before requesting new microcode (Puneet Sethi) [1971878]
+- x86/resctrl: Fix a maybe-uninitialized build warning treated as error (Terry Bowman) [1994090]
+- x86/resctrl: Fix default monitoring groups reporting (Terry Bowman) [1994090]
+- PCI: Remove WARN_ON(in_interrupt()) (Myron Stowe) [1993262]
+- PCI: Apply CONFIG_PCI_DEBUG to entire drivers/pci hierarchy (Myron Stowe) [1993262]
+- PCI: Add Silicom Denmark vendor ID (Myron Stowe) [1993262]
+- PCI: Align checking of syscall user config accessors (Myron Stowe) [1993262]
+- PCI: Decline to resize resources if boot config must be preserved (Myron Stowe) [1993262]
+- PCI/LINK: Remove bandwidth notification (Myron Stowe) [1993262]
+- PCI: acpiphp: Remove unused acpiphp_callback typedef (Myron Stowe) [1993262]
+- PCI: Fix pci_register_io_range() memory leak (Myron Stowe) [1993262]
+- EDAC/amd64: Add AMD family 17h model 60h PCI IDs (Aristeu Rozanski) [1930489]
+- EDAC/amd64: Add PCI device IDs for family 17h, model 70h (Aristeu Rozanski) [1930489]
+- scsi: bnx2fc: Remove meaningless bnx2fc_abts_cleanup() return value assignment (Nilesh Javali) [1983956]
+- scsi: bnx2fc: Return failure if io_req is already in ABTS processing (Nilesh Javali) [1983956]
+- scsi: target: ibmvscsi_tgt: Convert to new submission API (Maurizio Lombardi) [2004470]
+- scsi: target: Fix sense key for invalid EXTENDED COPY request (Maurizio Lombardi) [2004470]
+- scsi: target: Allows backend drivers to fail with specific sense codes (Maurizio Lombardi) [2004470]
+- scsi: target: pscsi: Fix possible null-pointer dereference in pscsi_complete_cmd() (Maurizio Lombardi) [2004470]
+- scsi: target: core: Drop unnecessary se_cmd ASC/ASCQ members (Maurizio Lombardi) [2004470]
+- scsi: target: sbp: Drop incorrect ASC/ASCQ usage (Maurizio Lombardi) [2004470]
+- scsi: target: core: Avoid using lun_tg_pt_gp after unlock (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Add new feature KEEP_BUF (Maurizio Lombardi) [2004470]
+- scsi: target: Remove redundant assignment to variable ret (Maurizio Lombardi) [2004470]
+- scsi: target: Fix NULL dereference on XCOPY completion (Maurizio Lombardi) [2004470]
+- scsi: target: iscsi: Remove redundant continue statement (Maurizio Lombardi) [2004470]
+- scsi: target: Use standard SAM status types (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Fix boolreturn.cocci warnings (Maurizio Lombardi) [2004470]
+- scsi: target: core: Add the VERSION DESCRIPTOR fields to the INQUIRY data (Maurizio Lombardi) [2004470]
+- scsi: target: core: Bump INQUIRY VERSION to SPC-4 (Maurizio Lombardi) [2004470]
+- scsi: target: core: Add configurable IEEE Company ID attribute (Maurizio Lombardi) [2004470]
+- scsi: target: core: Unify NAA identifier generation (Maurizio Lombardi) [2004470]
+- scsi: target: sbp_target: Remove redundant assignment to pg_size (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Rename TCM_DEV_BIT_PLUGGED to TCMU_DEV_BIT_PLUGGED (Maurizio Lombardi) [2004470]
+- scsi: target: iscsi: Drop unnecessary container_of() (Maurizio Lombardi) [2004470]
+- scsi: target: iscsi: Switch to kmemdup_nul() (Maurizio Lombardi) [2004470]
+- scsi: target: iblock: Fix smp_processor_id() BUG messages (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Fix xarray RCU warning (Maurizio Lombardi) [2004470]
+- scsi: target: core: Avoid smp_processor_id() in preemptible code (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Return from tcmu_handle_completions() if cmd_id not found (Maurizio Lombardi) [2004470]
+- scsi: target: tcm_fc: Fix a kernel-doc header (Maurizio Lombardi) [2004470]
+- scsi: target: Shorten ALUA error messages (Maurizio Lombardi) [2004470]
+- scsi: target: Fix two format specifiers (Maurizio Lombardi) [2004470]
+- scsi: target: Compare explicitly with SAM_STAT_GOOD (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Make data_pages_per_blk changeable via configfs (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Replace block size definitions with new udev members (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Remove function tcmu_get_block_page() (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Support DATA_BLOCK_SIZE = N * PAGE_SIZE (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Prepare for PAGE_SIZE != DATA_BLOCK_SIZE (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Adjust names of variables and definitions (Maurizio Lombardi) [2004470]
+- scsi: target: Make the virtual LUN 0 device (Maurizio Lombardi) [2004470]
+- scsi: target: Add the DUMMY flag to rd_mcp (Maurizio Lombardi) [2004470]
+- scsi: target: Fix htmldocs warning in target_submit_prep() (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Adjust parameter in call to tcmu_blocks_release() (Maurizio Lombardi) [2004470]
+- scsi: target: core: file: Don't duplicate memset(0xff) (Maurizio Lombardi) [2004470]
+- scsi: target: core: pr: Initialize arrays at declaration time (Maurizio Lombardi) [2004470]
+- scsi: target: configfs: Initialize arrays at declaration time (Maurizio Lombardi) [2004470]
+- scsi: target: iscsi: Initialize arrays at declaration time (Maurizio Lombardi) [2004470]
+- scsi: target: iscsi: Remove unused macro PRINT_BUF (Maurizio Lombardi) [2004470]
+- scsi: target: iscsi: Remove unused macro TEXT_LEN (Maurizio Lombardi) [2004470]
+- scsi: target: iscsi: Remove unused macro ISCSI_INST_LAST_FAILURE_TYPE (Maurizio Lombardi) [2004470]
+- scsi: target: core: Remove unused macros NONE and ISPRINT (Maurizio Lombardi) [2004470]
+- scsi: target: core: Get rid of warning in compare_and_write_do_cmp() (Maurizio Lombardi) [2004470]
+- scsi: target: pscsi: Remove unused macro ISPRINT (Maurizio Lombardi) [2004470]
+- scsi: target: pscsi: Fix warning in pscsi_complete_cmd() (Maurizio Lombardi) [2004470]
+- scsi: target: iblock: Fix type of logs_per_phys (Maurizio Lombardi) [2004470]
+- scsi: target: iblock: Trim line longer than 80 characters (Maurizio Lombardi) [2004470]
+- scsi: target: iblock: Remove an extra argument (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Use GFP_NOIO while handling cmds or holding cmdr_lock (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Replace radix_tree with XArray (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Replace IDR by XArray (Maurizio Lombardi) [2004470]
+- scsi: target: core: Make completion affinity configurable (Maurizio Lombardi) [2004470]
+- scsi: target: core: Flush submission work during TMR processing (Maurizio Lombardi) [2004470]
+- scsi: target: tcmu: Add backend plug/unplug callouts (Maurizio Lombardi) [2004470]
+- scsi: target: iblock: Add backend plug/unplug callouts (Maurizio Lombardi) [2004470]
+- scsi: target: core: Fix backend plugging (Maurizio Lombardi) [2004470]
+- scsi: target: tcm_loop: Use LIO wq cmd submission helper (Maurizio Lombardi) [2004470]
+- scsi: target: tcm_loop: Use block cmd allocator for se_cmds (Maurizio Lombardi) [2004470]
+- scsi: target: core: Add workqueue based cmd submission (Maurizio Lombardi) [2004470]
+- scsi: target: core: Add gfp_t arg to target_cmd_init_cdb() (Maurizio Lombardi) [2004470]
+- scsi: target: core: Remove target_submit_cmd_map_sgls() (Maurizio Lombardi) [2004470]
+- scsi: target: srpt: Convert to new submission API (Maurizio Lombardi) [2004470]
+- scsi: target: qla2xxx: Convert to new submission API (Maurizio Lombardi) [2004470]
+- scsi: target: tcm_qla2xxx: Remove BUG_ON(in_interrupt()) (Maurizio Lombardi) [2004470]
+- scsi: qla2xxx: Move sess cmd list/lock to driver (Maurizio Lombardi) [2004470]
+- scsi: qla2xxx: Drop TARGET_SCF_LOOKUP_LUN_FROM_TAG (Maurizio Lombardi) [2004470]
+- scsi: target: tcm_fc: Convert to new submission API (Maurizio Lombardi) [2004470]
+- scsi: target: sbp_target: Convert to new submission API (Maurizio Lombardi) [2004470]
+- scsi: target: tcm_loop: Convert to new submission API (Maurizio Lombardi) [2004470]
+- scsi: target: core: Break up target_submit_cmd_map_sgls() (Maurizio Lombardi) [2004470]
+- scsi: target: core: Rename transport_init_se_cmd() (Maurizio Lombardi) [2004470]
+- scsi: target: core: Drop kref_get_unless_zero() in target_get_sess_cmd() (Maurizio Lombardi) [2004470]
+- scsi: target: core: Move t_task_cdb initialization (Maurizio Lombardi) [2004470]
+- scsi: target: iscsi: Fix zero tag inside a trace event (Maurizio Lombardi) [2004470]
+- nfsd: move fsnotify on client creation outside spinlock (Steve Dickson) [1719330]
+- nfsd: report client confirmation status in "info" file (Steve Dickson) [1719330]
+- nfsd: fsnotify on rmdir under nfsd/clients/ (Steve Dickson) [1719330]
+
+* Mon Oct 25 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-348.4.el8]
+- mm: gup: fix potential pgmap refcnt leak in __gup_device_huge() (Waiman Long) [2009258]
+- mm/gup: check for isolation errors (Waiman Long) [2009258]
+- mm/gup: return an error on migration failure (Waiman Long) [2009258]
+- mm/gup: check every subpage of a compound page during isolation (Waiman Long) [2009258]
+- mm/gup: don't pin migrated cma pages in movable zone (Waiman Long) [2009258]
+- mm/gup: add a range variant of unpin_user_pages_dirty_lock() (Waiman Long) [2009258]
+- mm/gup: decrement head page once for group of subpages (Waiman Long) [2009258]
+- mm/gup: add compound page list iterator (Waiman Long) [2009258]
+- mm/gup: protect unpin_user_pages() against npages==-ERRNO (Waiman Long) [2009258]
+- mm, memcg: remove unused functions (Waiman Long) [2008341]
+- mm,vmscan: fix divide by zero in get_scan_count (Waiman Long) [2008341]
+- mm: memcontrol: fix occasional OOMs due to proportional memory.low reclaim (Waiman Long) [2008341]
+- mm/memcg: fix incorrect flushing of lruvec data in obj_stock (Waiman Long) [2008341]
+- mm/memcg: fix NULL pointer dereference in memcg_slab_free_hook() (Waiman Long) [2008341]
+- mm: memcontrol: fix blocking rstat function called from atomic cgroup1 thresholding code (Waiman Long) [2008341]
+- cgroup: rstat: fix A-A deadlock on 32bit around u64_stats_sync (Waiman Long) [2008341]
+- percpu: flush tlb in pcpu_reclaim_populated() (Waiman Long) [2008341]
+- mm/memcontrol.c: fix kerneldoc comment for mem_cgroup_calculate_protection (Waiman Long) [2008341]
+- memcontrol: use flexible-array member (Waiman Long) [2008341]
+- mm: vmscan: remove noinline_for_stack (Waiman Long) [2008341]
+- mm: memcontrol: move obj_cgroup_uncharge_pages() out of css_set_lock (Waiman Long) [2008341]
+- mm: memcontrol: simplify the logic of objcg pinning memcg (Waiman Long) [2008341]
+- mm: memcontrol: rename lruvec_holds_page_lru_lock to page_matches_lruvec (Waiman Long) [2008341]
+- mm: memcontrol: simplify lruvec_holds_page_lru_lock (Waiman Long) [2008341]
+- mm: memcontrol: remove the pgdata parameter of mem_cgroup_page_lruvec (Waiman Long) [2008341]
+- mm: memcontrol: bail out early when !mm in get_mem_cgroup_from_mm (Waiman Long) [2008341]
+- mm: memcontrol: fix page charging in page replacement (Waiman Long) [2008341]
+- percpu: optimize locking in pcpu_balance_workfn() (Waiman Long) [2008341]
+- percpu: initialize best_upa variable (Waiman Long) [2008341]
+- percpu: rework memcg accounting (Waiman Long) [2008341]
+- mm, memcg: introduce mem_cgroup_kmem_disabled() (Waiman Long) [2008341]
+- mm, memcg: mark cgroup_memory_nosocket, nokmem and noswap as __ro_after_init (Waiman Long) [2008341]
+- mm: vmscan: shrink deferred objects proportional to priority (Waiman Long) [2008341]
+- mm: memcontrol: reparent nr_deferred when memcg offline (Waiman Long) [2008341]
+- mm: vmscan: don't need allocate shrinker->nr_deferred for memcg aware shrinkers (Waiman Long) [2008341]
+- mm: vmscan: use per memcg nr_deferred of shrinker (Waiman Long) [2008341]
+- mm: vmscan: add per memcg shrinker nr_deferred (Waiman Long) [2008341]
+- mm: vmscan: use a new flag to indicate shrinker is registered (Waiman Long) [2008341]
+- mm: vmscan: add shrinker_info_protected() helper (Waiman Long) [2008341]
+- mm: memcontrol: rename shrinker_map to shrinker_info (Waiman Long) [2008341]
+- mm: vmscan: use kvfree_rcu instead of call_rcu (Waiman Long) [2008341]
+- mm: vmscan: remove memcg_shrinker_map_size (Waiman Long) [2008341]
+- mm: vmscan: use shrinker_rwsem to protect shrinker_maps allocation (Waiman Long) [2008341]
+- mm: vmscan: consolidate shrinker_maps handling code (Waiman Long) [2008341]
+- mm: vmscan: use nid from shrink_control for tracepoint (Waiman Long) [2008341]
+- linux/memcontrol.h: remove duplicate struct declaration (Waiman Long) [2008341]
+- memcg: charge before adding to swapcache on swapin (Waiman Long) [2008341]
+- kselftests: cgroup: update kmem test for new vmstat implementation (Waiman Long) [2008341]
+- mm: memcontrol: consolidate lruvec stat flushing (Waiman Long) [2008341]
+- mm: memcontrol: switch to rstat (Waiman Long) [2008341]
+- cgroup: rstat: punt root-level optimization to individual controllers (Waiman Long) [2008341]
+- cgroup: rstat: support cgroup1 (Waiman Long) [2008341]
+- mm: memcontrol: privatize memcg_page_state query functions (Waiman Long) [2008341]
+- mm: memcontrol: kill mem_cgroup_nodeinfo() (Waiman Long) [2008341]
+- memcg: enable memcg oom-kill for __GFP_NOFAIL (Waiman Long) [2008341]
+- memcg: cleanup root memcg checks (Waiman Long) [2008341]
+- mm: memcontrol: fix kernel stack account (Waiman Long) [2008341]
+- mm: page-writeback: simplify memcg handling in test_clear_page_writeback() (Waiman Long) [2008341]
+- percpu: implement partial chunk depopulation (Waiman Long) [2008341]
+- percpu: use pcpu_free_slot instead of pcpu_nr_slots - 1 (Waiman Long) [2008341]
+- percpu: factor out pcpu_check_block_hint() (Waiman Long) [2008341]
+- percpu: split __pcpu_balance_workfn() (Waiman Long) [2008341]
+- percpu: fix a comment about the chunks ordering (Waiman Long) [2008341]
+- mm/compaction: remove rcu_read_lock during page compaction (Waiman Long) [2008341]
+- mm/vmscan.c: make lruvec_lru_size() static (Waiman Long) [2008341]
+- include/linux/mm_inline.h: fold __update_lru_size() into its sole caller (Waiman Long) [2008341]
+- include/linux/mm_inline.h: fold page_lru_base_type() into its sole caller (Waiman Long) [2008341]
+- mm: VM_BUG_ON lru page flags (Waiman Long) [2008341]
+- mm: add __clear_page_lru_flags() to replace page_off_lru() (Waiman Long) [2008341]
+- mm/swap.c: don't pass "enum lru_list" to del_page_from_lru_list() (Waiman Long) [2008341]
+- mm/swap.c: don't pass "enum lru_list" to trace_mm_lru_insertion() (Waiman Long) [2008341]
+- mm: don't pass "enum lru_list" to lru list addition functions (Waiman Long) [2008341]
+- include/linux/mm_inline.h: shuffle lru list addition and deletion functions (Waiman Long) [2008341]
+- mm/vmscan.c: use add_page_to_lru_list() (Waiman Long) [2008341]
+- mm: fix VM_BUG_ON(PageTail) and BUG_ON(PageWriteback) (Waiman Long) [2008341]
+- mm: remove superfluous __ClearPageActive() (Waiman Long) [2008341]
+- mm, memcg: decouple e{low,min} state mutations from protection checks (Waiman Long) [2008341]
+- Revert "cgroup: Add memory barriers to plug cgroup_rstat_updated() race window" (Waiman Long) [2008341]
+- mm/memcontrol.c: allocate shrinker_map on appropriate NUMA node (Waiman Long) [2008341]
+- include/bitmap.h: add new functions to documentation (Waiman Long) [2008341]
+- include/bitmap.h: add missing parameter in docs (Waiman Long) [2008341]
+- bitmap: genericize percpu bitmap region iterators (Waiman Long) [2008341]
+- cgroup, rstat: Don't flush subtree root unless necessary (Waiman Long) [2008341]
+- mm/memcg: Move mem_cgroup kABI compatibility structure into rh_kabi_memcg.h (Waiman Long) [2008341]
+- mm/swap: consider max pages in iomap_swapfile_add_extent (Brian Foster) [1969326]
+- mm/slub: Fix backtrace of objects to handle redzone adjustment (Waiman Long) [2008340]
+- powerpc/powernv: Fix CPU idle to be called with IRQs disabled (Waiman Long) [2008340]
+- torture: Fix grace-period rate output (Waiman Long) [2008340]
+- rcu: Fix kfree_rcu() docbook errors (Waiman Long) [2008340]
+- rcu/nocb: Perform deferred wake up before last idle's need_resched() check (Waiman Long) [2008340]
+- rcu: Pull deferred rcuog wake up to rcu_eqs_enter() callers (Waiman Long) [2008340]
+- idle: Prevent late-arriving interrupts from disrupting offline (Waiman Long) [2008340]
+- torture: Maintain torture-specific set of CPUs-online books (Waiman Long) [2008340]
+- torture: Clean up after torture-test CPU hotplugging (Waiman Long) [2008340]
+- rcutorture: Make object_debug also double call_rcu() heap object (Waiman Long) [2008340]
+- torture: Throttle VERBOSE_TOROUT_*() output (Waiman Long) [2008340]
+- torture: Make refscale throttle high-rate printk()s (Waiman Long) [2008340]
+- rcutorture: Use hrtimers for reader and writer delays (Waiman Long) [2008340]
+- torture: Make stutter use torture_hrtimeout_*() functions (Waiman Long) [2008340]
+- rcutorture: Use torture_hrtimeout_jiffies() to avoid busy-waits (Waiman Long) [2008340]
+- torture: Add fuzzed hrtimer-based sleep functions (Waiman Long) [2008340]
+- rcutorture: Make rcu_torture_fakewriter() use blocking wait primitives (Waiman Long) [2008340]
+- rcutorture: Make synctype[] and nsynctype be static global (Waiman Long) [2008340]
+- rcutorture: Require entire stutter period be post-boot (Waiman Long) [2008340]
+- refscale: Allow summarization of verbose output (Waiman Long) [2008340]
+- torture: Allow standalone kvm-recheck.sh run detect --trust-make (Waiman Long) [2008340]
+- torture: Simplify exit-code plumbing for kvm-recheck.sh and kvm-find-errors.sh (Waiman Long) [2008340]
+- torture: s/STOP/STOP.1/ to avoid scenario collision (Waiman Long) [2008340]
+- torture: Add --dryrun batches to help schedule a distributed run (Waiman Long) [2008340]
+- torture: Stop hanging on panic (Waiman Long) [2008340]
+- torture: Add kvm.sh test summary to end of log file (Waiman Long) [2008340]
+- torture: Make kvm.sh include --kconfig arguments in CPU calculation (Waiman Long) [2008340]
+- torture: Make kvm.sh return failure upon build failure (Waiman Long) [2008340]
+- torture: Print run duration at end of kvm.sh execution (Waiman Long) [2008340]
+- torture: Make kvm.sh arguments accumulate (Waiman Long) [2008340]
+- torture: Make kvm.sh "Test Summary" date be end of test (Waiman Long) [2008340]
+- tools/rcutorture: Make identify_qemu_vcpus() independent of local language (Waiman Long) [2008340]
+- torture: Add config2csv.sh script to compare torture scenarios (Waiman Long) [2008340]
+- torture: Prepare for splitting qemu execution from kvm-test-1-run.sh (Waiman Long) [2008340]
+- torture: Allow kvm.sh --datestamp to specify subdirectories (Waiman Long) [2008340]
+- torture: Make kvm.sh "--dryrun sched" summarize number of builds (Waiman Long) [2008340]
+- torture: Make kvm.sh "--dryrun sched" summarize number of batches (Waiman Long) [2008340]
+- torture: Make --kcsan specify lockdep (Waiman Long) [2008340]
+- rcu: Do not NMI offline CPUs (Waiman Long) [2008340]
+- rcu: For RCU grace-period kthread starvation, dump last CPU it ran on (Waiman Long) [2008340]
+- rcu: Mark obtuse portion of stall warning as internal debug (Waiman Long) [2008340]
+- scftorture: Add debug output for wrong-CPU warning (Waiman Long) [2008340]
+- rcutorture: Add testing for RCU's global memory ordering (Waiman Long) [2008340]
+- rcutorture: Add reader-side tests of polling grace-period API (Waiman Long) [2008340]
+- rcutorture: Add writer-side tests of polling grace-period API (Waiman Long) [2008340]
+- rcutorture: Prepare for ->start_gp_poll and ->poll_gp_state (Waiman Long) [2008340]
+- srcu: Add comment explaining cookie overflow/wrap (Waiman Long) [2008340]
+- srcu: Document polling interfaces for Tree SRCU grace periods (Waiman Long) [2008340]
+- srcu: Provide polling interfaces for Tree SRCU grace periods (Waiman Long) [2008340]
+- srcu: Provide polling interfaces for Tiny SRCU grace periods (Waiman Long) [2008340]
+- srcu: Provide internal interface to start a Tree SRCU grace period (Waiman Long) [2008340]
+- srcu: Provide internal interface to start a Tiny SRCU grace period (Waiman Long) [2008340]
+- srcu: Make Tiny SRCU use multi-bit grace-period counter (Waiman Long) [2008340]
+- rcu: Enable rcu_normal_after_boot unconditionally for RT (Waiman Long) [2008340]
+- rcu: Unconditionally use rcuc threads on PREEMPT_RT (Waiman Long) [2008340]
+- rcu: Make RCU_BOOST default on CONFIG_PREEMPT_RT (Waiman Long) [2008340]
+- rcu: Eliminate the __kvfree_rcu() macro (Waiman Long) [2008340]
+- rcu: Introduce kfree_rcu() single-argument macro (Waiman Long) [2008340]
+- rcu: Record kvfree_call_rcu() call stack for KASAN (Waiman Long) [2008340]
+- rcu: Do any deferred nocb wakeups at CPU offline time (Waiman Long) [2008340]
+- rcu/nocb: Code-style nits in callback-offloading toggling (Waiman Long) [2008340]
+- rcu/nocb: Add nocb CB kthread list to show_rcu_nocb_state() output (Waiman Long) [2008340]
+- rcu/nocb: Add grace period and task state to show_rcu_nocb_state() output (Waiman Long) [2008340]
+- tools/rcutorture: Support nocb toggle in TREE01 (Waiman Long) [2008340]
+- rcutorture: Test runtime toggling of CPUs' callback offloading (Waiman Long) [2008340]
+- cpu/hotplug: Add lockdep_is_cpus_held() (Waiman Long) [2008340]
+- rcu/nocb: Locally accelerate callbacks as long as offloading isn't complete (Waiman Long) [2008340]
+- rcu/nocb: Process batch locally as long as offloading isn't complete (Waiman Long) [2008340]
+- rcu/nocb: Only cond_resched() from actual offloaded batch processing (Waiman Long) [2008340]
+- rcu/nocb: Set SEGCBLIST_SOFTIRQ_ONLY at the very last stage of de-offloading (Waiman Long) [2008340]
+- rcu/nocb: Flush bypass before setting SEGCBLIST_SOFTIRQ_ONLY (Waiman Long) [2008340]
+- rcu/nocb: Shutdown nocb timer on de-offloading (Waiman Long) [2008340]
+- rcu/nocb: Re-offload support (Waiman Long) [2008340]
+- rcu/nocb: De-offloading GP kthread (Waiman Long) [2008340]
+- rcu/nocb: Don't deoffload an offline CPU with pending work (Waiman Long) [2008340]
+- rcu/nocb: De-offloading CB kthread (Waiman Long) [2008340]
+- rcu/nocb: Always init segcblist on CPU up (Waiman Long) [2008340]
+- rcu/nocb: Provide basic callback offloading state machine bits (Waiman Long) [2008340]
+- rcu/nocb: Turn enabled/offload states into a common flag (Waiman Long) [2008340]
+- rcu/segcblist: Add debug checks for segment lengths (Waiman Long) [2008340]
+- rcu/trace: Add tracing for how segcb list changes (Waiman Long) [2008340]
+- rcu/tree: segcblist: Remove redundant smp_mb()s (Waiman Long) [2008340]
+- rcu/segcblist: Add counters to segcblist datastructure (Waiman Long) [2008340]
+- rcu/segcblist: Add additional comments to explain smp_mb() (Waiman Long) [2008340]
+- rcu/tree: Make rcu_do_batch count how many callbacks were executed (Waiman Long) [2008340]
+- rcu: Make call_rcu() print mem_dump_obj() info for double-freed callback (Waiman Long) [2008340]
+- mm: Make mem_obj_dump() vmalloc() dumps include start and length (Waiman Long) [2008340]
+- mm: Make mem_dump_obj() handle vmalloc() memory (Waiman Long) [2008340]
+- mm: Make mem_dump_obj() handle NULL and zero-sized pointers (Waiman Long) [2008340]
+- mm: Add mem_dump_obj() to print source of memory block (Waiman Long) [2008340]
+- rcu: Make TASKS_TRACE_RCU select IRQ_WORK (Waiman Long) [2008340]
+- rcu-tasks: Add RCU-tasks self tests (Waiman Long) [2008340]
+- rcu-tasks: Move RCU-tasks initialization to before early_initcall() (Waiman Long) [2008340]
+- rcu: Add lockdep_assert_irqs_disabled() to raw_spin_unlock_rcu_node() macros (Waiman Long) [2008340]
+- rcu: Add lockdep_assert_irqs_disabled() to rcu_sched_clock_irq() and callees (Waiman Long) [2008340]
+- rcutorture: Don't do need_resched() testing if ->sync is NULL (Waiman Long) [2008340]
+- scftorture: Add full-test stutter capability (Waiman Long) [2008340]
+- torture: Allow alternative forms of kvm.sh command-line arguments (Waiman Long) [2008340]
+- rcutorture: Small code cleanups (Waiman Long) [2008340]
+- torture: Accept time units on kvm.sh --duration argument (Waiman Long) [2008340]
+- rcutorture:  Make stutter_wait() caller restore priority (Waiman Long) [2008340]
+- torture: Force weak-hashed pointers on console log (Waiman Long) [2008340]
+- rcutorture: Prevent hangs for invalid arguments (Waiman Long) [2008340]
+- torture: Prevent jitter processes from delaying failed run (Waiman Long) [2008340]
+- rcutorture: Adjust scenarios SRCU-t and SRCU-u to make kconfig happy (Waiman Long) [2008340]
+- refscale: Prevent hangs for invalid arguments (Waiman Long) [2008340]
+- rcuscale: Prevent hangs for invalid arguments (Waiman Long) [2008340]
+- torture: Exclude "NOHZ tick-stop error" from fatal errors (Waiman Long) [2008340]
+- rcuscale: Avoid divide by zero (Waiman Long) [2008340]
+- rcuscale: Add RCU Tasks Trace (Waiman Long) [2008340]
+- scftorture: Add an alternative IPI vector (Waiman Long) [2008340]
+- torture: Make torture_stutter() use hrtimer (Waiman Long) [2008340]
+- torture: Periodically pause in stutter_wait() (Waiman Long) [2008340]
+- torture: Don't kill gdb sessions (Waiman Long) [2008340]
+- refscale: Bounds-check module parameters (Waiman Long) [2008340]
+- rcu-tasks: Make the units of ->init_fract be jiffies (Waiman Long) [2008340]
+- rcutorture: Make grace-period kthread report match RCU flavor being tested (Waiman Long) [2008340]
+- rcu-tasks: Convert rcu_tasks_wait_gp() for-loop to while-loop (Waiman Long) [2008340]
+- rcutorture: Make preemptible TRACE02 enable lockdep (Waiman Long) [2008340]
+- srcu: Use a more appropriate lockdep helper (Waiman Long) [2008340]
+- srcu: Take early exit on memory-allocation failure (Waiman Long) [2008340]
+- rcu: Fix a typo in rcu_blocking_is_gp() header comment (Waiman Long) [2008340]
+- rcu: Prevent lockdep-RCU splats on lock acquisition/release (Waiman Long) [2008340]
+- rcu/tree: nocb: Avoid raising softirq for offloaded ready-to-execute CBs (Waiman Long) [2008340]
+- rcu/tree: Make struct kernel_param_ops definitions const (Waiman Long) [2008340]
+- rcu/tree: Add a warning if CPU being onlined did not report QS already (Waiman Long) [2008340]
+- rcu: Clarify nocb kthreads naming in RCU_NOCB_CPU config (Waiman Long) [2008340]
+- rcu: Fix single-CPU check in rcu_blocking_is_gp() (Waiman Long) [2008340]
+- rcu: Implement rcu_segcblist_is_offloaded() config dependent (Waiman Long) [2008340]
+- list.h: Update comment to explicitly note circular lists (Waiman Long) [2008340]
+- rcu: Panic after fixed number of stalls (Waiman Long) [2008340]
+- x86/smpboot:  Move rcu_cpu_starting() earlier (Waiman Long) [2008340]
+- torture: Replace cpu_up/down() with add/remove_cpu() (Waiman Long) [2008340]
+- PCI/PTM: Remove error message at boot (Myron Stowe) [1993252]
+- PCI: Mark AMD Navi14 GPU ATS as broken (Myron Stowe) [1993252]
+- PCI: vmd: Update type of the __iomem pointers (Myron Stowe) [1993252]
+- PCI: Unify ECAM constants in native PCI Express drivers (Myron Stowe) [1993252]
+- PCI: Add function 1 DMA alias quirk for Marvell 9215 SATA controller (Myron Stowe) [1993252]
+- PCI: Mark AMD Raven iGPU ATS as broken in some platforms (Myron Stowe) [1993252]
+- PCI: Disable PTM during suspend to save power (Myron Stowe) [1993252]
+- PCI/PTM: Save/restore Precision Time Measurement Capability for suspend/resume (Myron Stowe) [1993252]
+- PCI: Add sysfs attribute for device power state (Myron Stowe) [1993252]
+- PCI/MSI: Set device flag indicating only 32-bit MSI support (Myron Stowe) [1993252]
+- PCI/MSI: Move MSI/MSI-X flags updaters to msi.c (Myron Stowe) [1993252]
+- PCI/MSI: Move MSI/MSI-X init to msi.c (Myron Stowe) [1993252]
+- PCI: Use predefined Pericom Vendor ID (Myron Stowe) [1993252]
+- PCI: Disable MSI for Pericom PCIe-USB adapter (Myron Stowe) [1993252]
+- PCI: Reduce pci_set_cacheline_size() message to debug level (Myron Stowe) [1993252]
+- PCI: Remove unused HAVE_PCI_SET_MWI (Myron Stowe) [1993252]
+- PCI: Fix overflow in command-line resource alignment requests (Myron Stowe) [1993252]
+- PCI: Bounds-check command-line resource alignment requests (Myron Stowe) [1993252]
+- PCI: Fix kernel-doc markup (Myron Stowe) [1993252]
+- PCI: ibmphp: Remove unneeded break (Myron Stowe) [1993252]
+- PCI/ACPI: Fix companion lookup for device 0 on the root bus (Myron Stowe) [1993252]
+- PCI: Keep both device and resource name for config space remaps (Myron Stowe) [1993252]
+- PCI: Return u16 from pci_find_ext_capability() and similar (Myron Stowe) [1993252]
+- PCI: Return u8 from pci_find_capability() and similar (Myron Stowe) [1993252]
+- PCI: Avoid duplicate IDs in driver dynamic IDs list (Myron Stowe) [1993252]
+- PCI: Move pci_match_device() ahead of new_id_store() (Myron Stowe) [1993252]
+- PCI: Decode PCIe 64 GT/s link speed (Myron Stowe) [1993252]
+- PCI: host-generic: Support building as modules (Myron Stowe) [1993252]
+- ata: sata_nv: Fix retrieving of active qcs (Tomas Henzl) [1921465]
+- ata: pata_ns87415.c: Document support on parisc with superio chip (Tomas Henzl) [1921465]
+- ata: fix some kernel-doc markups (Tomas Henzl) [1921465]
+- sata, highbank: simplify the return expression of ahci_highbank_suspend (Tomas Henzl) [1921465]
+- libata: implement ATA_HORKAGE_MAX_TRIM_128M and apply to Sandisks (Tomas Henzl) [1921465]
+- ata: ahci: use ata_link_info() instead of ata_link_printk() (Tomas Henzl) [1921465]
+- libata: Use per port sync for detach (Tomas Henzl) [1921465]
+- ata/libata: Fix usage of page address by page_address in ata_scsi_mode_select_xlat function (Tomas Henzl) [1921465]
+- sata_rcar: handle pm_runtime_get_sync failure cases (Tomas Henzl) [1921465]
+- ata: sata_inic162x fix a spelling issue (Tomas Henzl) [1921465]
+- ata: libata-core: fix a doc warning (Tomas Henzl) [1921465]
+- ata: ahci: Add sysfs attribute to show remapped NVMe device count (Tomas Henzl) [1921465]
+- ata: ahci-imx: remove redundant assignment to ret (Tomas Henzl) [1921465]
+- libata: Return correct status in sata_pmp_eh_recover_pm() when ATA_DFLAG_DETACH is set (Tomas Henzl) [1921465]
+- ata: move ata_eh_analyze_ncq_error() & co. to libata-sata.c (Tomas Henzl) [1921465]
+- ata: start separating SATA specific code from libata-eh.c (Tomas Henzl) [1921465]
+- ata: move ata_sas_*() to libata-sata.c (Tomas Henzl) [1921465]
+- ata: start separating SATA specific code from libata-scsi.c (Tomas Henzl) [1921465]
+- ata: move sata_deb_timing_*() to libata-sata.c (Tomas Henzl) [1921465]
+- ata: move ata_qc_complete_multiple() to libata-sata.c (Tomas Henzl) [1921465]
+- ata: move sata_link_hardreset() to libata-sata.c (Tomas Henzl) [1921465]
+- ata: move sata_link_{debounce,resume}() to libata-sata.c (Tomas Henzl) [1921465]
+- ata: move *sata_set_spd*() to libata-sata.c (Tomas Henzl) [1921465]
+- ata: move sata_scr_*() to libata-sata.c (Tomas Henzl) [1921465]
+- ata: start separating SATA specific code from libata-core.c (Tomas Henzl) [1921465]
+- ata: fix CodingStyle issues in PATA timings code (Tomas Henzl) [1921465]
+- ata: remove EXPORT_SYMBOL_GPL()s not used by modules (Tomas Henzl) [1921465]
+- ata: move EXPORT_SYMBOL_GPL()s close to exported code (Tomas Henzl) [1921465]
+- ata: optimize ata_scsi_rbuf[] size (Tomas Henzl) [1921465]
+- ata: optimize struct ata_force_param size (Tomas Henzl) [1921465]
+- ata: use COMMAND_LINE_SIZE for ata_force_param_buf[] size (Tomas Henzl) [1921465]
+- ata: simplify ata_scsiop_inq_89() (Tomas Henzl) [1921465]
+- sata_promise: use ata_cable_sata() (Tomas Henzl) [1921465]
+- ata: make SATA_PMP option selectable only if any SATA host driver is enabled (Tomas Henzl) [1921465]
+- ata: expose ncq_enable_prio sysfs attribute only on NCQ capable hosts (Tomas Henzl) [1921465]
+- ata: remove stale maintainership information from core code (Tomas Henzl) [1921465]
+- libata: Assign OF node to the SCSI device (Tomas Henzl) [1921465]
+- libata: Remove extra scsi_host_put() in ata_scsi_add_hosts() (Tomas Henzl) [1921465]
+- libata: transport: Use scnprintf() for avoiding potential buffer overflow (Tomas Henzl) [1921465]
+- ata/acard_ahci: remove unused variable n_elem (Tomas Henzl) [1921465]
+- ata: ahci_brcm: BCM7216 reset is self de-asserting (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Perform reset after obtaining resources (Tomas Henzl) [1921465]
+- ata: brcm: fix reset controller API usage (Tomas Henzl) [1921465]
+- ata: brcm: mark PM functions as __maybe_unused (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Support BCM7216 reset controller name (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Add a shutdown callback (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Manage reset line during suspend/resume (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Add missing clock management during recovery (Tomas Henzl) [1921465]
+- ata: ahci_brcm: BCM7425 AHCI requires AHCI_HFLAG_DELAY_ENGINE (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Fix AHCI resources management (Tomas Henzl) [1921465]
+- ata: libahci_platform: Export again ahci_platform_<en/dis>able_phys() (Tomas Henzl) [1921465]
+- libata: Fix retrieving of active qcs (Tomas Henzl) [1921465]
+- ata: pata_artop: make arrays static const, makes object smaller (Tomas Henzl) [1921465]
+- ata_piix: remove open-coded dmi_match(DMI_OEM_STRING) (Tomas Henzl) [1921465]
+- ata: sata_mv, avoid trigerrable BUG_ON (Tomas Henzl) [1921465]
+- ata: make qc_prep return ata_completion_errors (Tomas Henzl) [1921465]
+- ata: define AC_ERR_OK (Tomas Henzl) [1921465]
+- libata: Ensure ata_port probe has completed before detach (Tomas Henzl) [1921465]
+- ahci: tegra: use regulator_bulk_set_supply_names() (Tomas Henzl) [1921465]
+- ahci: Add support for Amazon's Annapurna Labs SATA controller (Tomas Henzl) [1921465]
+- ata: libahci_platform: Fix regulator_get_optional() misuse (Tomas Henzl) [1921465]
+- ata: ahci-imx: Covert to use GPIO descriptor (Tomas Henzl) [1921465]
+- libata/ahci: Fix PCS quirk application (Tomas Henzl) [1921465]
+- libata/ahci: Drop PCS quirk for Denverton and beyond (Tomas Henzl) [1921465]
+- libata: switch remaining drivers to use dma_set_mask_and_coherent (Tomas Henzl) [1921465]
+- sata_sil24: use dma_set_mask_and_coherent (Tomas Henzl) [1921465]
+- sata_qstor: use dma_set_mask_and_coherent (Tomas Henzl) [1921465]
+- sata_nv: use dma_set_mask_and_coherent (Tomas Henzl) [1921465]
+- sata_mv: use dma_set_mask_and_coherent (Tomas Henzl) [1921465]
+- pdc_adma: use dma_set_mask_and_coherent (Tomas Henzl) [1921465]
+- ahci: use dma_set_mask_and_coherent (Tomas Henzl) [1921465]
+- acard_ahci: use dma_set_mask_and_coherent (Tomas Henzl) [1921465]
+- libata: add SG safety checks in SFF pio transfers (Tomas Henzl) [1921465]
+- libata: have ata_scsi_rw_xlat() fail invalid passthrough requests (Tomas Henzl) [1921465]
+- ata: rb532_cf: Fix unused variable warning in rb532_pata_driver_probe (Tomas Henzl) [1921465]
+- ata: libahci: do not complain in case of deferred probe (Tomas Henzl) [1921465]
+- libata: zpodd: Fix small read overflow in zpodd_get_mech_type() (Tomas Henzl) [1921465]
+- ata: libahci_platform: remove redundant dev_err message (Tomas Henzl) [1921465]
+- drivers: ata: ahci_sunxi: Increased SATA/AHCI DMA TX/RX FIFOs (Tomas Henzl) [1921465]
+- libata: Drop firmware version check from the ST1000LM024 quirk (Tomas Henzl) [1921465]
+- ata: sata_sil24: Remove call to memset after dmam_alloc_coherent (Tomas Henzl) [1921465]
+- ata:sata_qstor: Remove call to memset after dmam_alloc_coherent (Tomas Henzl) [1921465]
+- ata: sata_nv: Remove call to memset after dmam_alloc_coherent (Tomas Henzl) [1921465]
+- ata: pdc_adma: Remove call to memset after dmam_alloc_coherent (Tomas Henzl) [1921465]
+- ata: libahci: Remove call to memset after dmam_alloc_coherent (Tomas Henzl) [1921465]
+- ata: acard-ahci: Remove call to memset after dmam_alloc_coherent (Tomas Henzl) [1921465]
+- libata: don't request sense data on !ZAC ATA devices (Tomas Henzl) [1921465]
+- libata: Extend quirks for the ST1000LM024 drives with NOLPM quirk (Tomas Henzl) [1921465]
+- sata_rcar: Remove ata_host_alloc() error printing (Tomas Henzl) [1921465]
+- libata: fix using DMA buffers on stack (Tomas Henzl) [1921465]
+- ata: libahci: Only warn for AHCI_HFLAG_MULTI_MSI set when genuine custom irq handler implemented (Tomas Henzl) [1921465]
+- libata: fix a typo in comment (Tomas Henzl) [1921465]
+- sata_rcar: fix deferred probing (Tomas Henzl) [1921465]
+- ata: sata_highbank: Convert to use GPIO descriptors (Tomas Henzl) [1921465]
+- sata_rcar: convert to SPDX identifiers (Tomas Henzl) [1921465]
+- ata: ep93xx: Use proper enums for directions (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Allow using driver or DSL SoCs (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Match BCM63138 compatible strings (Tomas Henzl) [1921465]
+- ata: ahci_brcm: Allow optional reset controller to be used (Tomas Henzl) [1921465]
+- libata: mask swap internal and hardware tag (Tomas Henzl) [1921465]
+- pata_atiixp: Remove unnecessary parentheses (Tomas Henzl) [1921465]
+- ata: ahci_sunxi: add support for r40 (Tomas Henzl) [1921465]
+- ata: ahci_platform: add support for PHY controller regulator (Tomas Henzl) [1921465]
+- ata: ahci_platform: add support for AHCI controller regulator (Tomas Henzl) [1921465]
+- libata: Use SMART LBAM/LBAH password defines (Tomas Henzl) [1921465]
+- ata: ahci: Convert to using pOFn instead of device_node.name (Tomas Henzl) [1921465]
+- ata: ftide010: Add a quirk for SQ201 (Tomas Henzl) [1921465]
+- ata: ahci_platform: enable to get and control reset (Tomas Henzl) [1921465]
+- ata: libahci_platform: add reset control support (Tomas Henzl) [1921465]
+- ata: add an extra argument to ahci_platform_get_resources() (Tomas Henzl) [1921465]
+- ata: sata_rcar: exclude setting of PHY registers in Gen3 (Tomas Henzl) [1921465]
+- ata: sata_rcar: really mask all interrupts on Gen2 and later (Tomas Henzl) [1921465]
+- ata: libahci: Allow reconfigure of DEVSLP register (Tomas Henzl) [1921465]
+- ata: libahci: Correct setting of DEVSLP register (Tomas Henzl) [1921465]
+- ata: ahci: Enable DEVSLP by default on x86 with SLP_S0 (Tomas Henzl) [1921465]
+- ata: ahci: Support state with min power but Partial low power state (Tomas Henzl) [1921465]
+- Revert "ata: ahci_platform: convert kcalloc to devm_kcalloc" (Tomas Henzl) [1921465]
+- ata: sata_rcar: Add rudimentary Runtime PM support (Tomas Henzl) [1921465]
+- ata: sata_rcar: Provide a short-hand for &pdev->dev (Tomas Henzl) [1921465]
+- ata: Only output sg element mapped number in verbose debug (Tomas Henzl) [1921465]
+- ata: Guard ata_scsi_dump_cdb() by ATA_VERBOSE_DEBUG (Tomas Henzl) [1921465]
+- ata: ahci_platform: convert kcalloc to devm_kcalloc (Tomas Henzl) [1921465]
+- ata: ahci_platform: convert kzallloc to kcalloc (Tomas Henzl) [1921465]
+- ata: ahci_platform: correct parameter documentation for ahci_platform_shutdown (Tomas Henzl) [1921465]
+- libata: remove ata_sff_data_xfer_noirq() (Tomas Henzl) [1921465]
+- scsi: target: Fix the pgr/alua_support_store functions (Maurizio Lombardi) [1995935]
+- sched/deadline: Fix missing clock update in migrate_task_rq_dl() (Phil Auld) [1992254]
+- sched/fair: Avoid a second scan of target in select_idle_cpu (Phil Auld) [1992254]
+- sched/fair: Use prev instead of new target as recent_used_cpu (Phil Auld) [1992254]
+- sched: Replace deprecated CPU-hotplug functions. (Phil Auld) [1992254]
+- sched/deadline: Fix reset_on_fork reporting of DL tasks (Phil Auld) [1992254]
+- sched/numa: Fix is_core_idle() (Phil Auld) [1992254]
+- sched/fair: Sync load_sum with load_avg after dequeue (Phil Auld) [1992254]
+- sched/fair: Fix CFS bandwidth hrtimer expiry type (Phil Auld) [1992254]
+- sched/fair: Ensure _sum and _avg values stay consistent (Phil Auld) [1992254]
+- sched/fair: Ensure that the CFS parent is added after unthrottling (Phil Auld) [1992254]
+- sched/rt: Fix Deadline utilization tracking during policy change (Phil Auld) [1992254]
+- sched/rt: Fix RT utilization tracking during policy change (Phil Auld) [1992254]
+- sched/fair: Age the average idle time (Phil Auld) [1992254]
+- wait: use LIST_HEAD_INIT() to initialize wait_queue_head (Phil Auld) [1992254]
+- sched: Optimize housekeeping_cpumask() in for_each_cpu_and() (Phil Auld) [1992254]
+- sched/fair: Fix util_est UTIL_AVG_UNCHANGED handling (Phil Auld) [1992254]
+- sched/pelt: Check that *_avg are null when *_sum are (Phil Auld) [1992254]
+- sched/fair: Correctly insert cfs_rq's to list on unthrottle (Phil Auld) [1992254]
+- sched/pelt: Ensure that *_sum is always synced with *_avg (Phil Auld) [1992254]
+- sched/fair: Return early from update_tg_cfs_load() if delta == 0 (Phil Auld) [1992254]
+- sched/fair: Make sure to update tg contrib for blocked load (Phil Auld) [1992254]
+- sched/fair: Keep load_avg and load_sum synced (Phil Auld) [1992254]
+- sched: Stop PF_NO_SETAFFINITY from being inherited by various init system threads (Phil Auld) [1992254]
+- sched: Fix a stale comment in pick_next_task() (Phil Auld) [1992254]
+- sched/fair: Fix ascii art by relpacing tabs (Phil Auld) [1992254]
+- tick/nohz: Call tick_nohz_task_switch() with interrupts disabled (Phil Auld) [1992254]
+- sched/fair: Fix clearing of has_idle_cores flag in select_idle_cpu() (Phil Auld) [1992254]
+- sched/core: Remove the pointless BUG_ON(!task) from wake_up_q() (Phil Auld) [1992254]
+- sched: Make the idle task quack like a per-CPU kthread (Phil Auld) [1992254]
+- sched/fair: Fix unfairness caused by missing load decay (Phil Auld) [1992254]
+- sched: Make nr_iowait_cpu() return 32-bit value (Phil Auld) [1992254]
+- sched: Make nr_iowait() return 32-bit value (Phil Auld) [1992254]
+- sched: Make nr_running() return 32-bit value (Phil Auld) [1992254]
+- sched/isolation: Reconcile rcu_nocbs= and nohz_full= (Phil Auld) [1992254]
+- sched/fair: Introduce a CPU capacity comparison helper (Phil Auld) [1992254]
+- sched/fair: Clean up active balance nr_balance_failed trickery (Phil Auld) [1992254]
+- sched/fair: Move update_nohz_stats() to the CONFIG_NO_HZ_COMMON block to simplify the code & fix an unused function warning (Phil Auld) [1992254]
+- sched/fair: Bring back select_idle_smt(), but differently (Phil Auld) [1992254]
+- sched,fair: Alternative sched_slice() (Phil Auld) [1992254]
+- sched/topology: Remove redundant cpumask_and() in init_overlap_sched_group() (Phil Auld) [1992254]
+- sched/numa: Allow runtime enabling/disabling of NUMA balance without SCHED_DEBUG (Phil Auld) [1992254]
+- sched/fair: Optimize test_idle_cores() for !SMT (Phil Auld) [1992254]
+- sched: Fix various typos (Phil Auld) [1992254]
+- sched: Remove unnecessary variable from schedule_tail() (Phil Auld) [1992254]
+- sched: Optimize __calc_delta() (Phil Auld) [1992254]
+- sched: Provide raw_spin_rq_*lock*() helpers (Phil Auld) [1992254]
+- sched/pelt: Fix task util_est update filtering (Phil Auld) [1992254]
+- sched/fair: use lsub_positive in cpu_util_next() (Phil Auld) [1992254]
+- sched/fair: Reduce the window for duplicated update (Phil Auld) [1992254]
+- sched/fair: Reorder newidle_balance pulled_task tests (Phil Auld) [1992254]
+- sched/fair: Remove unused parameter of update_nohz_stats (Phil Auld) [1992254]
+- sched/fair: Remove unused return of _nohz_idle_balance (Phil Auld) [1992254]
+- sched/fair: Remove update of blocked load from newidle_balance (Phil Auld) [1992254]
+- sched/topology: fix the issue groups don't span domain->span for NUMA diameter > 2 (Phil Auld) [1992254]
+- sched/fair: Merge select_idle_core/cpu() (Phil Auld) [1992254]
+- sched/fair: Remove select_idle_smt() (Phil Auld) [1992254]
+- sched/fair: Move avg_scan_cost calculations under SIS_PROP (Phil Auld) [1992254]
+- sched/fair: Remove SIS_AVG_CPU (Phil Auld) [1992254]
+- sched/eas: Don't update misfit status if the task is pinned (Phil Auld) [1992254]
+- sched/fair: Avoid stale CPU util_est value for schedutil in task dequeue (Phil Auld) [1992254]
+- sched/fair: Add a few assertions (Phil Auld) [1992254]
+- cpufreq: schedutil: Simplify sugov_update_next_freq() (Phil Auld) [1992254]
+- sched/topology: Warn when NUMA diameter > 2 (Phil Auld) [1992254]
+- sched: Use task_current() instead of 'rq->curr == p' (Phil Auld) [1992254]
+- sched/core: Allow try_invoke_on_locked_down_task() with irqs disabled (Phil Auld) [1992254]
+- sched/fair: Exclude the current CPU from find_new_ilb() (Phil Auld) [1992254]
+- rbtree, sched/deadline: Use rb_add_cached() (Phil Auld) [1992254]
+- rbtree, sched/fair: Use rb_add_cached() (Phil Auld) [1992254]
+- sched/isolation: Prefer housekeeping CPU in local node (Phil Auld) [1992254]
+- sched: Fix various typos in comments (Phil Auld) [1992254]
+- s390/qeth: fix deadlock during failing recovery (Sumanth Korikkar) [1984990]
+- s390/qeth: Fix deadlock in remove_discipline (Sumanth Korikkar) [1984990]
+- s390/qeth: fix NULL deref in qeth_clear_working_pool_list() (Sumanth Korikkar) [1984990]
+- s390/qdio: fix roll-back after timeout on ESTABLISH ccw (Sumanth Korikkar) [1984990]
+- s390/qdio: get rid of register asm (Sumanth Korikkar) [1984990]
+- s390/netiuvc: get rid of forward declarations (Sumanth Korikkar) [1984990]
+- s390/qeth: Consider dependency on SWITCHDEV module (Sumanth Korikkar) [1984990]
+- s390/qeth: shrink TX buffer struct (Sumanth Korikkar) [1984990]
+- s390/qeth: remove TX buffer's pointer to its queue (Sumanth Korikkar) [1984990]
+- s390/qeth: remove QAOB's pointer to its TX buffer (Sumanth Korikkar) [1984990]
+- s390/qeth: consolidate completion of pending TX buffers (Sumanth Korikkar) [1984990]
+- s390/qeth: use ethtool_sprintf() (Sumanth Korikkar) [1984990]
+- s390/qeth: unify the tracking of active cmds on ccw device (Sumanth Korikkar) [1984990]
+- s390/qeth: also use TX NAPI for non-IQD devices (Sumanth Korikkar) [1984990]
+- s390/qeth: count TX completion interrupts (Sumanth Korikkar) [1984990]
+- powerpc/stacktrace: Include linux/delay.h (Steve Best) [2010674]
+- powerpc/stacktrace: Fix spurious "stale" traces in raise_backtrace_ipi() (Steve Best) [2010674]
+- powerpc/xmon: Reset RCU and soft lockup watchdogs (Steve Best) [2010674]
+- bpf, sockmap: Fix sk->prot unhash op reset (Jiri Benc) [1947006]
+- xdp: fix xdp_return_frame() kernel BUG throw for page_pool memory model (Jiri Benc) [1947006]
+- selftests/bpf: Tests using bpf_check_mtu BPF-helper input mtu_len param (Jiri Benc) [1947006]
+- bpf: BPF-helper for MTU checking add length input (Jiri Benc) [1947006]
+- xsk: Remove dangling function declaration from header file (Jiri Benc) [1947006]
+- bpf: Remove blank line in bpf helper description comment (Jiri Benc) [1947006]
+- libbpf: Use AF_LOCAL instead of AF_INET in xsk.c (Jiri Benc) [1947006]
+- selftests/bpf: Tests using bpf_check_mtu BPF-helper (Jiri Benc) [1947006]
+- selftests/bpf: Use bpf_check_mtu in selftest test_cls_redirect (Jiri Benc) [1947006]
+- bpf: Drop MTU check when doing TC-BPF redirect to ingress (Jiri Benc) [1947006]
+- bpf: Add BPF-helper for MTU checking (Jiri Benc) [1947006]
+- bpf: bpf_fib_lookup return MTU value as output when looked up (Jiri Benc) [1947006]
+- bpf: Fix bpf_fib_lookup helper MTU check for SKB ctx (Jiri Benc) [1947006]
+- bpf: Remove MTU check in __bpf_skb_max_len (Jiri Benc) [1947006]
+- net, veth: Alloc skb in bulk for ndo_xdp_xmit (Jiri Benc) [1947006]
+- bpf: Enable bpf_{g,s}etsockopt in BPF_CGROUP_UDP{4,6}_RECVMSG (Jiri Benc) [1947006]
+- selftests/bpf: Rewrite recvmsg{4,6} asm progs to c in test_sock_addr (Jiri Benc) [1947006]
+- bpf: Enable bpf_{g,s}etsockopt in BPF_CGROUP_INET{4,6}_GET{PEER,SOCK}NAME (Jiri Benc) [1947006]
+- bpf: Enable bpf_{g,s}etsockopt in BPF_CGROUP_UDP{4,6}_SENDMSG (Jiri Benc) [1947006]
+- selftests/bpf: Verify that rebinding to port < 1024 from BPF works (Jiri Benc) [1947006]
+- bpf: Allow rewriting to ports under ip_unprivileged_port_start (Jiri Benc) [1947006]
+- net: port < inet_prot_sock(net) --> inet_port_requires_bind_service(net, port) (Jiri Benc) [1947006]
+- net: inet_is_local_reserved_port() should return bool not int (Jiri Benc) [1947006]
+- libbpf, xsk: Select AF_XDP BPF program based on kernel version (Jiri Benc) [1947006]
+- xsk: Fold xp_assign_dev and __xp_assign_dev (Jiri Benc) [1947006]
+- xsk: Remove explicit_free parameter from __xsk_rcv() (Jiri Benc) [1947006]
+- bpf: Split cgroup_bpf_enabled per attach type (Jiri Benc) [1947006]
+- bpf: Remove extra lock_sock for TCP_ZEROCOPY_RECEIVE (Jiri Benc) [1947006]
+- net, xdp: Introduce xdp_build_skb_from_frame utility routine (Jiri Benc) [1947006]
+- net, xdp: Introduce __xdp_build_skb_from_frame utility routine (Jiri Benc) [1947006]
+- bpf: Extend bind v4/v6 selftests for mark/prio/bindtoifindex (Jiri Benc) [1947006]
+- bpf: Allow to retrieve sol_socket opts from sock_addr progs (Jiri Benc) [1947006]
+- bpf: Replace fput with sockfd_put in sock map (Jiri Benc) [1947006]
+- tools: bpf: add SO_BINDTOIFINDEX to socket.h in tools (Jiri Benc) [1947006]
+- media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() (Lucas Zampieri) [1956472] {CVE-2021-3542}
+
+* Mon Oct 18 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-348.3.el8]
+- mm/hmm: make HMM_MIRROR an implicit option (Rafael Aquini) [1998534]
+- mm/hmm: allow HMM_MIRROR on all architectures with MMU (Rafael Aquini) [1998534]
+- mm: don't select MIGRATE_VMA_HELPER from HMM_MIRROR (Rafael Aquini) [1998534]
+- mm: sort out the DEVICE_PRIVATE Kconfig mess (Rafael Aquini) [1998534]
+- s390/ap/zcrypt: notify userspace with online, config and mode info (Stefan Schulze Frielinghaus) [1984895]
+- docs: livepatch: Fix a typo and remove the unnecessary gaps in a sentence (C. Erastus Toe) [1995447]
+- Documentation: livepatch: document reliable stacktrace (C. Erastus Toe) [1995447]
+- Documentation: livepatch: Convert to automatically generated contents (C. Erastus Toe) [1995447]
+- scsi: ibmvfc: Reinitialize sub-CRQs and perform channel enquiry after LPM (Desnes A. Nunes do Rosario) [1932217]
+- scsi: ibmvfc: Store return code of H_FREE_SUB_CRQ during cleanup (Desnes A. Nunes do Rosario) [1932217]
+- scsi: ibmvfc: Treat H_CLOSED as success during sub-CRQ registration (Desnes A. Nunes do Rosario) [1932217]
+- scsi: ibmvfc: Fix invalid sub-CRQ handles after hard reset (Desnes A. Nunes do Rosario) [1932217]
+- scsi: ibmvfc: Simplify handling of sub-CRQ initialization (Desnes A. Nunes do Rosario) [1932217]
+- exec: Transform exec_update_mutex into a rw_semaphore (Chris von Recklinghausen) [1993665]
+- perf: Break deadlock involving exec_update_mutex (Chris von Recklinghausen) [1993665]
+- pidfd: Add missing sock updates for pidfd_getfd() (Chris von Recklinghausen) [1993665]
+- exec: Move the call of prepare_binprm into search_binary_handler (Chris von Recklinghausen) [1993665]
+- exec: Allow load_misc_binary to call prepare_binprm unconditionally (Chris von Recklinghausen) [1993665]
+- exec: Convert security_bprm_set_creds into security_bprm_repopulate_creds (Chris von Recklinghausen) [1993665]
+- exec: Factor security_bprm_creds_for_exec out of security_bprm_set_creds (Chris von Recklinghausen) [1993665]
+- exec: Move would_dump into flush_old_exec (Chris von Recklinghausen) [1993665]
+- exec: Rename flush_old_exec begin_new_exec (Chris von Recklinghausen) [1993665]
+- exec: Move most of setup_new_exec into flush_old_exec (Chris von Recklinghausen) [1993665]
+- exec: In setup_new_exec cache current in the local variable me (Chris von Recklinghausen) [1993665]
+- exec: Merge install_exec_creds into setup_new_exec (Chris von Recklinghausen) [1993665]
+- exec: Rename the flag called_exec_mmap point_of_no_return (Chris von Recklinghausen) [1993665]
+- exec: Make unlocking exec_update_mutex explict (Chris von Recklinghausen) [1993665]
+- binfmt: Move install_exec_creds after setup_new_exec to match binfmt_elf (Chris von Recklinghausen) [1993665]
+- pidfd: Use new infrastructure to fix deadlocks in execve (Chris von Recklinghausen) [1993665]
+- perf: Use new infrastructure to fix deadlocks in execve (Chris von Recklinghausen) [1993665]
+- proc: io_accounting: Use new infrastructure to fix deadlocks in execve (Chris von Recklinghausen) [1993665]
+- proc: Use new infrastructure to fix deadlocks in execve (Chris von Recklinghausen) [1993665]
+- kernel/kcmp.c: Use new infrastructure to fix deadlocks in execve (Chris von Recklinghausen) [1993665]
+- kernel: doc: remove outdated comment cred.c (Chris von Recklinghausen) [1993665]
+- mm: docs: Fix a comment in process_vm_rw_core (Chris von Recklinghausen) [1993665]
+- selftests/ptrace: add test cases for dead-locks (Chris von Recklinghausen) [1993665]
+- exec: Fix a deadlock in strace (Chris von Recklinghausen) [1993665]
+- exec: Add exec_update_mutex to replace cred_guard_mutex (Chris von Recklinghausen) [1993665]
+- exec: Move exec_mmap right after de_thread in flush_old_exec (Chris von Recklinghausen) [1993665]
+- exec: Move cleanup of posix timers on exec out of de_thread (Chris von Recklinghausen) [1993665]
+- exec: Factor unshare_sighand out of de_thread and call it separately (Chris von Recklinghausen) [1993665]
+- exec: Only compute current once in flush_old_exec (Chris von Recklinghausen) [1993665]
+- pid: Implement pidfd_getfd syscall (Chris von Recklinghausen) [1993665]
+- pidfd: add P_PIDFD to waitid() (Chris von Recklinghausen) [1993665]
+- fork: return proper negative error code (Chris von Recklinghausen) [1993665]
+- copy_process(): don't use ksys_close() on cleanups (Chris von Recklinghausen) [1993665]
+- fork: don't check parent_tidptr with CLONE_PIDFD (Chris von Recklinghausen) [1993665]
+- fs/exec.c: move ->recursion_depth out of critical sections (Chris von Recklinghausen) [1993665]
+- clone: add CLONE_PIDFD (Chris von Recklinghausen) [1993665]
+- signal: support CLONE_PIDFD with pidfd_send_signal (Chris von Recklinghausen) [1993665]
+- arch: add pidfd and io_uring syscalls everywhere (Chris von Recklinghausen) [1993665]
+- signal: don't silently convert SI_USER signals to non-current pidfd (Chris von Recklinghausen) [1993665]
+- signal: add pidfd_send_signal() syscall (Chris von Recklinghausen) [1993665]
+- sched/core: Convert signal_struct.sigcnt to refcount_t (Chris von Recklinghausen) [1993665]
+- sched/core: Convert sighand_struct.count to refcount_t (Chris von Recklinghausen) [1993665]
+- exec: make prepare_bprm_creds static (Chris von Recklinghausen) [1993665]
+- fork: don't copy inconsistent signal handler state to child (Chris von Recklinghausen) [1993665]
+- Revert "perf: Break deadlock involving exec_update_mutex" (Chris von Recklinghausen) [1993665]
+- powerpc/mm/highmem: use __set_pte_at() for kmap_local() (Nico Pache) [2001854]
+- mm: extract might_alloc() debug check (Nico Pache) [2001854]
+- mm/mempolicy: use vma_lookup() in __access_remote_vm() (Nico Pache) [2001854]
+- mm/memory.c: use vma_lookup() in __access_remote_vm() (Nico Pache) [2001854]
+- mm/mremap: use vma_lookup() in vma_to_resize() (Nico Pache) [2001854]
+- mm/migrate: use vma_lookup() in do_pages_stat_array() (Nico Pache) [2001854]
+- mm/ksm: use vma_lookup() in find_mergeable_vma() (Nico Pache) [2001854]
+- kernel/events/uprobes: use vma_lookup() in find_active_uprobe() (Nico Pache) [2001854]
+- misc/sgi-gru/grufault: use vma_lookup() in gru_find_vma() (Nico Pache) [2001854]
+- media: videobuf2: use vma_lookup() in get_vaddr_frames() (Nico Pache) [2001854]
+- drm/amdgpu: use vma_lookup() in amdgpu_ttm_tt_get_user_pages() (Nico Pache) [2001854]
+- net/ipv5/tcp: use vma_lookup() in tcp_zerocopy_receive() (Nico Pache) [2001854]
+- vfio: use vma_lookup() instead of find_vma_intersection() (Nico Pache) [2001854]
+- virt/kvm: use vma_lookup() instead of find_vma_intersection() (Nico Pache) [2001854]
+- x86/sgx: use vma_lookup() in sgx_encl_find() (Nico Pache) [2001854]
+- arch/powerpc/kvm/book3s: use vma_lookup() in kvmppc_hv_setup_htab_rma() (Nico Pache) [2001854]
+- arch/powerpc/kvm/book3s_hv_uvmem: use vma_lookup() instead of find_vma_intersection() (Nico Pache) [2001854]
+- arch/arm64/kvm: use vma_lookup() instead of find_vma_intersection() (Nico Pache) [2001854]
+- drm/i915/selftests: use vma_lookup() in __igt_mmap() (Nico Pache) [2001854]
+- mm: add vma_lookup(), update find_vma_intersection() comments (Nico Pache) [2001854]
+- i915_vma: Rename vma_lookup to i915_vma_lookup (Nico Pache) [2001854]
+- media: videobuf2: Move frame_vector into media subsystem (Nico Pache) [2001854]
+- mm/frame-vector: Use FOLL_LONGTERM (Nico Pache) [2001854]
+- vhost: convert get_user_pages() --> pin_user_pages() (Nico Pache) [2001854]
+- docs: mm/gup: pin_user_pages.rst: add a "case 5" (Nico Pache) [2001854]
+- mm/gup: documentation fix for pin_user_pages*() APIs (Nico Pache) [2001854]
+- mm/gup: frame_vector: convert get_user_pages() --> pin_user_pages() (Nico Pache) [2001854]
+- mm/gup: update pin_user_pages.rst for "case 3" (mmu notifiers) (Nico Pache) [2001854]
+- mm: untag user pointers in get_vaddr_frames (Nico Pache) [2001854]
+- media: videobuf2-vmalloc: get_userptr: buffers are always writable (Nico Pache) [2001854]
+- net: expand textsearch ts_state to fit skb_seq_state (Nico Pache) [2001854]
+- esp: avoid unneeded kmap_atomic call (Nico Pache) [2001854]
+- net: compound page support in skb_seq_read (Nico Pache) [2001854]
+- net: support kmap_local forced debugging in skb_frag_foreach (Nico Pache) [2001854]
+- mm/highmem: fix CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP (Nico Pache) [2001854]
+- x86/crashdump/32: Simplify copy_oldmem_page() (Nico Pache) [2001854]
+- io-mapping: Provide iomap_local variant (Nico Pache) [2001854]
+- mm/highmem: Provide kmap_local* (Nico Pache) [2001854]
+- sched: highmem: Store local kmaps in task struct (Nico Pache) [2001854]
+- x86: Support kmap_local() forced debugging (Nico Pache) [2001854]
+- mm/highmem: Provide CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP (Nico Pache) [2001854]
+- mm/highmem: Provide and use CONFIG_DEBUG_KMAP_LOCAL (Nico Pache) [2001854]
+- mm/highmem: Take kmap_high_get() properly into account (Nico Pache) [2001854]
+- highmem: High implementation details and document API (Nico Pache) [2001854]
+- Documentation/io-mapping: Remove outdated blurb (Nico Pache) [2001854]
+- io-mapping: Cleanup atomic iomap (Nico Pache) [2001854]
+- mm/highmem: Remove the old kmap_atomic cruft (Nico Pache) [2001854]
+- highmem: Get rid of kmap_types.h (Nico Pache) [2001854]
+- powerpc/mm/highmem: Switch to generic kmap atomic (Nico Pache) [2001854]
+- x86/mm/highmem: Use generic kmap atomic implementation (Nico Pache) [2001854]
+- highmem: Make DEBUG_HIGHMEM functional (Nico Pache) [2001854]
+- highmem: Provide generic variant of kmap_atomic* (Nico Pache) [2001854]
+- asm-generic: Provide kmap_size.h (Nico Pache) [2001854]
+- fs: Remove asm/kmap_types.h includes (Nico Pache) [2001854]
+- highmem: Remove unused functions (Nico Pache) [2001854]
+- mm/highmem: Un-EXPORT __kmap_atomic_idx() (Nico Pache) [2001854]
+- kmap: consolidate kmap_prot definitions (Nico Pache) [2001854]
+- parisc/kmap: remove duplicate kmap code (Nico Pache) [2001854]
+- arch/kmap: define kmap_atomic_prot() for all arch's (Nico Pache) [2001854]
+- arch/kmap: ensure kmap_prot visibility (Nico Pache) [2001854]
+- arch/kunmap_atomic: consolidate duplicate code (Nico Pache) [2001854]
+- arch/kmap_atomic: consolidate duplicate code (Nico Pache) [2001854]
+- {x86,powerpc,microblaze}/kmap: move preempt disable (Nico Pache) [2001854]
+- arch/kunmap: remove duplicate kunmap implementations (Nico Pache) [2001854]
+- arch/kmap: remove redundant arch specific kmaps (Nico Pache) [2001854]
+- arch/kmap: remove BUG_ON() (Nico Pache) [2001854]
+- ipc: remove memcg accounting for sops objects in do_semtimedop() (Rafael Aquini) [1999705] {CVE-2021-3759}
+- memcg: enable accounting of ipc resources (Rafael Aquini) [1999705] {CVE-2021-3759}
+- ipc: use kmalloc for msg_queue and shmid_kernel (Rafael Aquini) [1999705] {CVE-2021-3759}
+- ipc sem: use kvmalloc for sem_undo allocation (Rafael Aquini) [1999705] {CVE-2021-3759}
+- ipc/sem.c: replace kvmalloc/memset with kvzalloc and use struct_size (Rafael Aquini) [1999705] {CVE-2021-3759}
+- x86: sev-es: Restore SEV-ES-specific version of copy_from_kernel_nofault() (Vitaly Kuznetsov) [2010082]
+- perf machine: Initialize srcline string member in add_location struct (Michael Petlan) [1981880]
+- ipmi: kcs_bmc_aspeed: Fix less than zero comparison of a unsigned int (Tony Camuso) [2003186]
+- ipmi: kcs_bmc_aspeed: Optionally apply status address (Tony Camuso) [2003186]
+- ipmi: kcs_bmc_aspeed: Fix IBFIE typo from datasheet (Tony Camuso) [2003186]
+- ipmi: kcs_bmc_aspeed: Implement KCS SerIRQ configuration (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Add serio adaptor (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Enable IBF on open (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Allow clients to control KCS IRQ state (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Decouple the IPMI chardev from the core (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Strip private client data from struct kcs_bmc (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Split headers into device and client (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Turn the driver data-structures inside-out (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Split out kcs_bmc_cdev_ipmi (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Rename {read,write}_{status,data}() functions (Tony Camuso) [2003186]
+- ipmi: kcs_bmc: Make status update atomic (Tony Camuso) [2003186]
+- ipmi: kcs_bmc_aspeed: Use of match data to extract KCS properties (Tony Camuso) [2003186]
+- ipmi/watchdog: Stop watchdog timer when the current action is 'none' (Tony Camuso) [2003186]
+- ipmi: kcs: aspeed: Adapt to new LPC DTS layout (Tony Camuso) [2003186]
+- ipmi_si: Join string literals back (Tony Camuso) [2003186]
+- ipmi_si: Drop redundant check before calling put_device() (Tony Camuso) [2003186]
+- ipmi_si: Use strstrip() to remove surrounding spaces (Tony Camuso) [2003186]
+- ipmi_si: Get rid of ->addr_source_cleanup() (Tony Camuso) [2003186]
+- ipmi_si: Reuse si_to_str[] array in ipmi_hardcode_init_one() (Tony Camuso) [2003186]
+- ipmi_si: Introduce ipmi_panic_event_str[] array (Tony Camuso) [2003186]
+- ipmi_si: Use proper ACPI macros to check error code for failures (Tony Camuso) [2003186]
+- ipmi_si: Utilize temporary variable to hold device pointer (Tony Camuso) [2003186]
+- ipmi_si: Remove bogus err_free label (Tony Camuso) [2003186]
+- ipmi: Handle device properties with software node API (Tony Camuso) [2003186]
+- ipmi:ssif: make ssif_i2c_send() void (Tony Camuso) [2003186]
+- ipmi: Refine retry conditions for getting device id (Tony Camuso) [2003186]
+- redhat/configs: enable CONFIG_IMA_WRITE_POLICY (Bruno Meneguele) [2010530]
+- Disable CONFIG_CRYPTO_SM4 on aarch64 (Vladis Dronov) [2008943]
+- powerpc/iommu: Report the correct most efficient DMA mask for PCI devices (Steve Best) [2007425]
+- powerpc/dma: Fix dma_map_ops::get_required_mask (Steve Best) [2007425]
+- ibmvnic: Reuse tx pools when possible (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Reuse rx pools when possible (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Reuse LTB when possible (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Use bitmap for LTB map_ids (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: init_tx_pools move loop-invariant code (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Use/rename local vars in init_tx_pools (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Use/rename local vars in init_rx_pools (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Fix up some comments and messages (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Consolidate code in replenish_rx_pool() (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: check failover_pending in login response (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: retry reset if there are no other resets (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: parenthesize a check (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: free tx_pool if tso_pool alloc fails (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: set ltb->buff to NULL after freeing (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: account for bufs already saved in indir_buf (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: clean pending indirect buffs during reset (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Use strscpy() instead of strncpy() (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: fix send_request_map incompatible argument (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: fix kernel build warnings in build_hdr_descs_arr (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: fix kernel build warning (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: fix kernel build warning in strncpy (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Allow device probe if the device is not ready at boot (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: Use list_for_each_entry() to simplify code in ibmvnic.c (Desnes A. Nunes do Rosario) [1998677]
+- ibmvnic: remove default label from to_string switch (Desnes A. Nunes do Rosario) [1998677]
+- intel_th: pci: Add Alder Lake-M support (Jiri Olsa) [1929502]
+- i2c: designware: Fix indentation in the header (David Arcari) [2004468]
+- i2c: designware: Use DIV_ROUND_CLOSEST() macro (David Arcari) [2004468]
+- math64: New DIV_S64_ROUND_CLOSEST helper (David Arcari) [2004468]
+- units: Add SI metric prefix definitions (David Arcari) [2004468]
+- i2c: busses: i2c-designware-master: Fix misnaming of 'i2c_dw_init_master()' (David Arcari) [2004468]
+- MAINTAINERS: adjust to removing i2c designware platform data (David Arcari) [2004468]
+- i2c: designware: Get rid of legacy platform data (David Arcari) [2004468]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 288 (David Arcari) [2004468]
+- i2c: designware: Switch over to i2c_freq_mode_string() (David Arcari) [2004468]
+- i2c: core: add api to provide frequency mode strings (David Arcari) [2004468]
+- i2c: designware: Fix return value check in navi_amd_register_client() (David Arcari) [2004468]
+- i2c: drivers: Use generic definitions for bus frequencies (part 2) (David Arcari) [2004468]
+- i2c: designware: Add driver support for AMD NAVI GPU (David Arcari) [2004468]
+- i2c: designware: Adjust bus_freq_hz when refuse high speed mode set (David Arcari) [2004468]
+- i2c: designware: Get right data length (David Arcari) [2004468]
+- i2c: designware: Make register offsets all of the same width (David Arcari) [2004468]
+- i2c: designware: Switch header to use BIT() and GENMASK() (David Arcari) [2004468]
+- i2c: designware: slave should do WRITE_REQUESTED before WRITE_RECEIVED (David Arcari) [2004468]
+- i2c: designware: call i2c_dw_read_clear_intrbits_slave() once (David Arcari) [2004468]
+- i2c: busses: Use fallthrough pseudo-keyword (David Arcari) [2004468]
+- i2c: designware: platdrv: Set class based on DMI (David Arcari) [2004468]
+- i2c: designware: Adjust bus speed independently of ACPI (David Arcari) [2004468]
+- i2c: designware: Add Baikal-T1 System I2C support (David Arcari) [2004468]
+- i2c: designware: Move reg-space remapping into a dedicated function (David Arcari) [2004468]
+- i2c: designware: Retrieve quirk flags as early as possible (David Arcari) [2004468]
+- i2c: designware: Convert driver to using regmap API (David Arcari) [2004468]
+- i2c: designware: Discard Cherry Trail model flag (David Arcari) [2004468]
+- i2c: designware: Drop hard coded FIFO depth assignment (David Arcari) [2004468]
+- i2c: designware: Read counters from ACPI for PCI driver (David Arcari) [2004468]
+- i2c: designware: Move ACPI parts into common module (David Arcari) [2004468]
+- i2c: designware: Drop unneeded condition in i2c_dw_validate_speed() (David Arcari) [2004468]
+- i2c: designware: Move i2c_dw_validate_speed() helper to a common code (David Arcari) [2004468]
+- i2c: designware: Include proper headers in i2c-desingware-core.h (David Arcari) [2004468]
+- i2c: designware: Get rid of PCI driver specifics in common code (David Arcari) [2004468]
+- i2c: designware: Allow slave mode for PCI enumerated devices (David Arcari) [2004468]
+- i2c: designware: Rename i2c_dw_probe() to i2c_dw_probe_master() (David Arcari) [2004468]
+- i2c: designware: Switch PCI driver to use i2c_dw_configure_master() (David Arcari) [2004468]
+- i2c: designware: Move configuration routines to respective modules (David Arcari) [2004468]
+- i2c: designware: Use devm_platform_ioremap_resource() to simplify code (David Arcari) [2004468]
+- i2c: designware: Calculate SCL timing parameter for High Speed Mode (David Arcari) [2004468]
+- i2c: designware: Calculate SCL timing parameter for Fast Mode Plus (David Arcari) [2004468]
+- i2c: designware: platdrv: Remove DPM_FLAG_SMART_SUSPEND flag on BYT and CHT (David Arcari) [2004468]
+- i2c: drivers: Use generic definitions for bus frequencies (David Arcari) [2004468]
+- i2c: core: Provide generic definitions for bus frequencies (David Arcari) [2004468]
+- i2c: designware: Fix spelling typos in the comments (David Arcari) [2004468]
+- i2c: designware: Discard i2c_dw_read_comp_param() function (David Arcari) [2004468]
+- i2c: designware: Detect the FIFO size in the common code (David Arcari) [2004468]
+- i2c: designware: Add ACPI HID for Hisilicon Hip08-Lite I2C controller (David Arcari) [2004468]
+- i2c: designware: Fix optional reset error handling (David Arcari) [2004468]
+- i2c: designware: assert reset when error happen at ->probe() (David Arcari) [2004468]
+- i2c: designware: Synchronize IRQs when unregistering slave client (David Arcari) [2004468]
+- i2c: designware: Fix unused variable warning (David Arcari) [2004468]
+- i2c: designware: make use of devm_gpiod_get_optional (David Arcari) [2004468]
+- i2c: busses: Use dev_get_drvdata where possible (David Arcari) [2004468]
+- i2c: designware: ratelimit 'transfer when suspended' errors (David Arcari) [2004468]
+- i2c: designware: Add support for an interface clock (David Arcari) [2004468]
+- i2c: i2c-designware-platdrv: Always use a dynamic adapter number (David Arcari) [2004468]
+- i2c: i2c-designware-platdrv: Cleanup setting of the adapter number (David Arcari) [2004468]
+- i2c: designware: Do not allow i2c_dw_xfer() calls while suspended (David Arcari) [2004468]
+- i2c: designware: Cleanup bus lock handling (David Arcari) [2004468]
+- i2c: designware: Set IRQF_NO_SUSPEND flag for all BYT and CHT controllers (David Arcari) [2004468]
+- i2c: designware: Call i2c_dw_clk_rate() only when calculating timings (David Arcari) [2004468]
+- i2c: designware: Remove Cherry Trail PMIC I2C bus pm_disabled workaround (David Arcari) [2004468]
+- i2c: designware: add MSCC Ocelot support (David Arcari) [2004468]
+- i2c: designware: allow IP specific sda_hold_time (David Arcari) [2004468]
+- i2c: designware: move #ifdef CONFIG_OF to the top (David Arcari) [2004468]
+- i2c: designware: use generic table matching (David Arcari) [2004468]
+- i2c: designware: Add SPDX license tag (David Arcari) [2004468]
+- i2c: designware: Convert to use struct i2c_timings (David Arcari) [2004468]
+- i2c: designware-pcidrv: Mark expected switch fall-through (David Arcari) [2004468]
+- i2c: designware-master: use core to detect 'no zero length' quirk (David Arcari) [2004468]
+- i2c: designware: Add debug print for bus speed (David Arcari) [2004468]
+- i2c: designware: Add debug print for SDA hold time value (David Arcari) [2004468]
+- i2c: designware: Separate timing parameter setting from HW initalization (David Arcari) [2004468]
+- i2c: designware: Move SDA hold time configuration to common code (David Arcari) [2004468]
+- i2c: designware: Call i2c_dw_clk_rate() only once in i2c_dw_init_master() (David Arcari) [2004468]
+- i2c: designware: Don't use internal ___constant_swab32 (David Arcari) [2004468]
+- i2c: designware: Move register access detection to common code (David Arcari) [2004468]
+- i2c: designware: Remove needless variable from i2c_dw_init_slave() (David Arcari) [2004468]
+
+* Wed Oct 13 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-348.2.el8]
+- x86/amd_nb: Add AMD family 17h model 60h PCI IDs (David Arcari) [1987067]
+- x86/amd_nb: Check vendor in AMD-only functions (David Arcari) [1987067]
+- hwmon: (k10temp) Add support for yellow carp (David Arcari) [1987067]
+- x86/amd_nb: Add AMD family 19h model 50h PCI ids (David Arcari) [1987067]
+- x86: Fix various typos in comments, take #2 (David Arcari) [1987067]
+- x86/amd_nb, char/amd64-agp: Use amd_nb_num() accessor (David Arcari) [1987067]
+- x86/amd_nb: Add PCI device IDs for family 17h, model 70h (David Arcari) [1987067]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 477 (David Arcari) [1987067]
+- x86/amd_nb: Make hygon_nb_misc_ids static (David Arcari) [1987067]
+- x86/pci, x86/amd_nb: Add Hygon Dhyana support to PCI and northbridge (David Arcari) [1987067]
+- x86/cpu: Create Hygon Dhyana architecture support file (David Arcari) [1987067]
+- hwmon: (k10temp) Rework the temperature offset calculation (David Arcari) [1987067]
+- hwmon: (k10temp) Don't show Tdie for all Zen/Zen2/Zen3 CPU/APU (David Arcari) [1987067]
+- hwmon: (k10temp) Add additional missing Zen2 and Zen3 APUs (David Arcari) [1987067]
+- hwmon: (k10temp) support Zen3 APUs (David Arcari) [1987067]
+- CI: Fix RT branch name (Veronika Kabatova)
+- platform/x86/intel: pmc/core: Add GBE Package C10 fix for Alder Lake PCH (David Arcari) [1962965]
+- platform/x86/intel: pmc/core: Add Alder Lake low power mode support for pmc core (David Arcari) [1962965]
+- platform/x86/intel: pmc/core: Add Latency Tolerance Reporting (LTR) support to Alder Lake (David Arcari) [1962965]
+- platform/x86/intel: pmc/core: Add Alderlake support to pmc core driver (David Arcari) [1962965]
+- redhat/configs: Add CONFIG_X86_PLATFORM_DRIVERS_INTEL (David Arcari) [1962965]
+- platform/x86: intel_pmc_core: Move to intel sub-directory (David Arcari) [1962965]
+- platform/x86: intel_skl_int3472: Move to intel/ subfolder (David Arcari) [1962965]
+- platform/x86: intel_pmc_core: Prevent possibile overflow (David Arcari) [1962965]
+- ipvs: check that ip_vs_conn_tab_bits is between 8 and 20 (Andrea Claudi) [1816769]
+- KVM: nVMX: Filter out all unsupported controls when eVMCS was activated (Vitaly Kuznetsov) [2001915]
+- pinctrl: amd: Handle wake-up interrupt (David Arcari) [2000228]
+- pinctrl: amd: Add irq field data (David Arcari) [2000228]
+- pinctrl: amd: Fix an issue with shutdown when system set to s0ix (David Arcari) [2000228]
+- pinctrl/amd: Add device HID for new AMD GPIO controller (David Arcari) [2000228]
+- pinctrl: amd: Implement irq_set_wake (David Arcari) [2000228]
+- genirq/PM: Introduce IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND flag (David Arcari) [2000228]
+- pinctrl: amd: remove debounce filter setting in IRQ type setting (David Arcari) [2000228]
+- pinctrl: amd: print debounce filter info in debugfs (David Arcari) [2000228]
+- pinctrl: amd: use higher precision for 512 RtcClk (David Arcari) [2000228]
+- pinctrl: amd: fix incorrect way to disable debounce filter (David Arcari) [2000228]
+- pinctrl: amd: Use irqchip template (David Arcari) [2000228]
+- pinctrl: pinctrl-amd: Do not define 'struct acpi_device_id' when !CONFIG_ACPI (David Arcari) [2000228]
+- pinctrl: amd: Honor IRQ trigger type requested by the caller (David Arcari) [2000228]
+- pinctrl: Use new GPIO_LINE_DIRECTION (David Arcari) [2000228]
+- remove ioremap_nocache and devm_ioremap_nocache (David Arcari) [2000228]
+- pinctrl: amd: fix __iomem annotation in amd_gpio_irq_handler() (David Arcari) [2000228]
+- pinctrl: amd: disable spurious-firing GPIO IRQs (David Arcari) [2000228]
+- pinctrl: Remove dev_err() usage after platform_get_irq() (David Arcari) [2000228]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 422 (David Arcari) [2000228]
+- pinctrl/amd: fix typo (David Arcari) [2000228]
+- pinctrl: pinctrl-amd: simplify getting .driver_data (David Arcari) [2000228]
+- pinctrl/amd: poll InterruptEnable bits in amd_gpio_irq_set_type (David Arcari) [2000228]
+- pinctrl: Include <linux/gpio/driver.h> nothing else (David Arcari) [2000228]
+- pinctrl/amd: only handle irq if it is pending and unmasked (David Arcari) [2000228]
+- pinctrl/amd: fix gpio irq level in debugfs (David Arcari) [2000228]
+- smartpqi: Update version to 2.1.10-025 (Don Brace) [1980106]
+- scsi: smartpqi: Replace one-element array with flexible-array member (Don Brace) [1980106]
+- scsi: smartpqi: Fix an error code in pqi_get_raid_map() (Don Brace) [1980106]
+- scsi: smartpqi: Update version to 2.1.10-020 (Don Brace) [1980106]
+- scsi: smartpqi: Fix ISR accessing uninitialized data (Don Brace) [1980106]
+- scsi: smartpqi: Add PCI IDs for new ZTE controllers (Don Brace) [1980106]
+- scsi: smartpqi: Add PCI ID for new ntcom controller (Don Brace) [1980106]
+- scsi: smartpqi: Add SCSI cmd info for resets (Don Brace) [1980106]
+- scsi: smartpqi: Change Kconfig menu entry to Microchip (Don Brace) [1980106]
+- scsi: smartpqi: Change driver module macros to Microchip (Don Brace) [1980106]
+- scsi: smartpqi: Update copyright notices (Don Brace) [1980106]
+- scsi: smartpqi: Add PCI IDs for H3C P4408 controllers (Don Brace) [1980106]
+
+* Wed Oct 06 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-348.1.el8]
+- lib/linear_ranges: fix repeated words & one typo (Nico Pache) [2006475]
+- lib: linear_ranges: Add missing MODULE_LICENSE() (Nico Pache) [2006475]
+- bpf: Fix regression on BPF_OBJ_GET with non-O_RDWR flags (Jiri Olsa) [1944798]
+- bpf, x86: Fix extable offset calculation (Jiri Olsa) [1944798]
+- bpftool: Add Makefile target bootstrap (Jiri Olsa) [1944798]
+- bpf: Avoid warning when re-casting __bpf_call_base into __bpf_call_base_args (Jiri Olsa) [1944798]
+- docs, bpf: Add minimal markup to address doc warning (Jiri Olsa) [1944798]
+- test_bpf: Remove EXPECTED_FAIL flag from bpf_fill_maxinsns11 (Jiri Olsa) [1944798]
+- trace: bpf: Allow bpf to attach to bare tracepoints (Jiri Olsa) [1944798]
+- docs: bpf: Clarify -mcpu=v3 requirement for atomic ops (Jiri Olsa) [1944798]
+- tools, headers: Sync struct bpf_perf_event_data (Jiri Olsa) [1944798]
+- selftests/bpf: Add missing cleanup in atomic_bounds test (Jiri Olsa) [1944798]
+- docs: bpf: Clarify BPF_CMPXCHG wording (Jiri Olsa) [1944798]
+- docs: bpf: Fixup atomics markup (Jiri Olsa) [1944798]
+- bpf: Document new atomic instructions (Jiri Olsa) [1944798]
+- kbuild: Do not clean resolve_btfids if the output does not exist (Jiri Olsa) [1944798]
+- kbuild: Add resolve_btfids clean to root clean target (Jiri Olsa) [1944798]
+- bpf: Introduce task_vma bpf_iter (Jiri Olsa) [1944798]
+- bpf: Allow bpf_d_path in bpf_iter program (Jiri Olsa) [1944798]
+- selftests/bpf: Add test for bpf_iter_task_vma (Jiri Olsa) [1944798]
+- bpf: Don't do bpf_cgroup_storage_set() for kuprobe/tp programs (Jiri Olsa) [1944798]
+- libbpf: Use SOCK_CLOEXEC when opening the netlink socket (Jiri Olsa) [1944798]
+- bpf: Update selftests to reflect new error states (Jiri Olsa) [1944798]
+- bpf, x86: Validate computation of branch displacements for x86-32 (Jiri Olsa) [1944798]
+- bpf, x86: Validate computation of branch displacements for x86-64 (Jiri Olsa) [1944798]
+- bpf: program: Refuse non-O_RDWR flags in BPF_OBJ_GET (Jiri Olsa) [1944798]
+- bpf: Take module reference for trampoline in module (Jiri Olsa) [1944798]
+- bpf/selftests: Test that kernel rejects a TCP CC with an invalid license (Jiri Olsa) [1944798]
+- bpf: Enforce that struct_ops programs be GPL-only (Jiri Olsa) [1944798]
+- libbpf: Fix bail out from 'ringbuf_process_ring()' on error (Jiri Olsa) [1944798]
+- selftests/bpf: Add selftest for pointer-to-array-of-struct BTF dump (Jiri Olsa) [1944798]
+- libbpf: Fix BTF dump of pointer-to-array-of-struct (Jiri Olsa) [1944798]
+- bpf, selftests: Fix up some test_verifier cases for unprivileged (Jiri Olsa) [1944798]
+- bpf, x86: Use kvmalloc_array instead kmalloc_array in bpf_jit_comp (Jiri Olsa) [1944798]
+- libbpf: Fix INSTALL flag order (Jiri Olsa) [1944798]
+- libbpf: Clear map_info before each bpf_obj_get_info_by_fd (Jiri Olsa) [1944798]
+- samples, bpf: Add missing munmap in xdpsock (Jiri Olsa) [1944798]
+- tools/resolve_btfids: Fix build error with older host toolchains (Jiri Olsa) [1944798]
+- selftests/bpf: Fix a compiler warning in global func test (Jiri Olsa) [1944798]
+- bpf: Drop imprecise log message (Jiri Olsa) [1944798]
+- bpf: Clear percpu pointers in bpf_prog_clone_free() (Jiri Olsa) [1944798]
+- bpf: Fix a warning message in mark_ptr_not_null_reg() (Jiri Olsa) [1944798]
+- selftests/bpf: Add unit tests for pointers in global functions (Jiri Olsa) [1944798]
+- bpf: Support pointers in global func args (Jiri Olsa) [1944798]
+- bpf: Extract nullable reg type conversion into a helper function (Jiri Olsa) [1944798]
+- bpf: Rename bpf_reg_state variables (Jiri Olsa) [1944798]
+- tools/resolve_btfids: Add /libbpf to .gitignore (Jiri Olsa) [1944798]
+- bpf: selftests: Add non function pointer test to struct_ops (Jiri Olsa) [1944798]
+- libbpf: Ignore non function pointer member in struct_ops (Jiri Olsa) [1944798]
+- bpf: Clear per_cpu pointers during bpf_prog_realloc (Jiri Olsa) [1944798]
+- selftests/bpf: Add a selftest for the tracing bpf_get_socket_cookie (Jiri Olsa) [1944798]
+- selftests/bpf: Use vmlinux.h in socket_cookie_prog.c (Jiri Olsa) [1944798]
+- selftests/bpf: Integrate the socket_cookie test to test_progs (Jiri Olsa) [1944798]
+- bpf: Expose bpf_get_socket_cookie to tracing programs (Jiri Olsa) [1944798]
+- selftests/bpf: Convert test_xdp_redirect.sh to bash (Jiri Olsa) [1944798]
+- selftests/bpf: Add a test for map-in-map and per-cpu maps in sleepable progs (Jiri Olsa) [1944798]
+- bpf: Allows per-cpu maps and map-in-map in sleepable programs (Jiri Olsa) [1944798]
+- selftests/bpf: Improve recursion selftest (Jiri Olsa) [1944798]
+- selftest/bpf: Add a recursion test (Jiri Olsa) [1944798]
+- bpf: Count the number of times recursion was prevented (Jiri Olsa) [1944798]
+- bpf: Add per-program recursion prevention mechanism (Jiri Olsa) [1944798]
+- bpf: Compute program stats for sleepable programs (Jiri Olsa) [1944798]
+- bpf: Run sleepable programs with migration disabled (Jiri Olsa) [1944798]
+- bpf: Optimize program stats (Jiri Olsa) [1944798]
+- selftests/bpf: Simplify the calculation of variables (Jiri Olsa) [1944798]
+- selftest/bpf: Add test for var-offset stack access (Jiri Olsa) [1944798]
+- tools/resolve_btfids: Set srctree variable unconditionally (Jiri Olsa) [1944798]
+- tools/resolve_btfids: Check objects before removing (Jiri Olsa) [1944798]
+- tools/resolve_btfids: Build libbpf and libsubcmd in separate directories (Jiri Olsa) [1944798]
+- bpf: Simplify bool comparison (Jiri Olsa) [1944798]
+- selftests/bpf: Remove unneeded semicolon (Jiri Olsa) [1944798]
+- bpf/benchs/bench_ringbufs: Remove unneeded semicolon (Jiri Olsa) [1944798]
+- bpf: Refactor BPF_PSEUDO_CALL checking as a helper function (Jiri Olsa) [1944798]
+- bpf/selftests: Update the IMA test to use BPF ring buffer (Jiri Olsa) [1944798]
+- bpf: Allow usage of BPF ringbuffer in sleepable programs (Jiri Olsa) [1944798]
+- bpf/selftests: Add a short note about vmtest.sh in README.rst (Jiri Olsa) [1944798]
+- bpf: Helper script for running BPF presubmit tests (Jiri Olsa) [1944798]
+- bpf: Emit explicit NULL pointer checks for PROBE_LDX instructions. (Jiri Olsa) [1944798]
+- libbpf: Stop using feature-detection Makefiles (Jiri Olsa) [1944798]
+- selftest/bpf: Testing for multiple logs on REJECT (Jiri Olsa) [1944798]
+- samples: bpf: Remove unneeded semicolon (Jiri Olsa) [1944798]
+- bpf: Propagate stack bounds to registers in atomics w/ BPF_FETCH (Jiri Olsa) [1944798]
+- samples/bpf: Add include dir for MIPS Loongson64 to fix build errors (Jiri Olsa) [1944798]
+- bpf: Simplify cases in bpf_base_func_proto (Jiri Olsa) [1944798]
+- samples/bpf: Set flag __SANE_USERSPACE_TYPES__ for MIPS to fix build warnings (Jiri Olsa) [1944798]
+- selftests/bpf: Avoid useless void *-casts (Jiri Olsa) [1944798]
+- selftests/bpf: Consistent malloc/calloc usage (Jiri Olsa) [1944798]
+- selftests/bpf: Avoid heap allocation (Jiri Olsa) [1944798]
+- selftests/bpf: Define local variables at the beginning of a block (Jiri Olsa) [1944798]
+- selftests/bpf: Change type from void * to struct generic_data * (Jiri Olsa) [1944798]
+- selftests/bpf: Change type from void * to struct ifaceconfigobj * (Jiri Olsa) [1944798]
+- selftests/bpf: Remove casting by introduce local variable (Jiri Olsa) [1944798]
+- selftests/bpf: Improve readability of xdpxceiver/worker_pkt_validate() (Jiri Olsa) [1944798]
+- selftests/bpf: Remove memory leak (Jiri Olsa) [1944798]
+- selftests/bpf: Fix style warnings (Jiri Olsa) [1944798]
+- selftests/bpf: Remove unused enums (Jiri Olsa) [1944798]
+- selftests/bpf: Remove a lot of ifobject casting (Jiri Olsa) [1944798]
+- samples/bpf: Add xdp program on egress for xdp_redirect_map (Jiri Olsa) [1944798]
+- bpf: Fix typo in scalar{,32}_min_max_rsh comments (Jiri Olsa) [1944798]
+- bpf, docs: Update build procedure for manually compiling LLVM and Clang (Jiri Olsa) [1944798]
+- selftest/bpf: Fix typo (Jiri Olsa) [1944798]
+- libbpf: Use string table index from index table if needed (Jiri Olsa) [1944798]
+- bpf: Try to avoid kzalloc in cgroup/{s,g}etsockopt (Jiri Olsa) [1944798]
+- bpf: Permit size-0 datasec (Jiri Olsa) [1944798]
+- selftests: bpf: Add a new test for bare tracepoints (Jiri Olsa) [1944798]
+- selftests/bpf: Add verifier tests for x64 jit jump padding (Jiri Olsa) [1944798]
+- bpf,x64: Pad NOPs to make images converge more easily (Jiri Olsa) [1944798]
+- tools/bpftool: Add -Wall when building BPF programs (Jiri Olsa) [1944798]
+- bpf: Declare __bpf_free_used_maps() unconditionally (Jiri Olsa) [1944798]
+- bpf: Add bpf_patch_call_args prototype to include/linux/bpf.h (Jiri Olsa) [1944798]
+- kernel.spec: Add support to use vmlinux.h (Jiri Olsa) [1989087]
+- spec: Add vmlinux.h to kernel-devel package (Jiri Olsa) [1989087]
+- lib/test_scanf: Handle n_bits == 0 in random tests (Chris von Recklinghausen) [1985062]
+- printk/console: Check consistent sequence number when handling race in console_unlock() (Chris von Recklinghausen) [1985062]
+- printk: fix cpu lock ordering (Chris von Recklinghausen) [1985062]
+- lib/dump_stack: move cpu lock to printk.c (Chris von Recklinghausen) [1985062]
+- random32: Fix implicit truncation warning in prandom_seed_state() (Chris von Recklinghausen) [1985062]
+- lib: test_scanf: Remove pointless use of type_min() with unsigned types (Chris von Recklinghausen) [1985062]
+- selftests: lib: Add wrapper script for test_scanf (Chris von Recklinghausen) [1985062]
+- lib: test_scanf: Add tests for sscanf number conversion (Chris von Recklinghausen) [1985062]
+- lib: vsprintf: Fix handling of number field widths in vsscanf (Chris von Recklinghausen) [1985062]
+- lib: vsprintf: scanf: Negative number must have field width > 1 (Chris von Recklinghausen) [1985062]
+- usb: host: xhci-tegra: Switch to use ptTs (Chris von Recklinghausen) [1985062]
+- nilfs2: Switch to use ptTs (Chris von Recklinghausen) [1985062]
+- kdb: Switch to use ptTs (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: Allow to override ISO 8601 date and time separator (Chris von Recklinghausen) [1985062]
+- printk: Remove trailing semicolon in macros (Chris von Recklinghausen) [1985062]
+- printk: Move EXPORT_SYMBOL() closer to vprintk definition (Chris von Recklinghausen) [1985062]
+- kernel/printk.c: Fixed mundane typos (Chris von Recklinghausen) [1985062]
+- printk: rename vprintk_func to vprintk (Chris von Recklinghausen) [1985062]
+- printk: console: remove unnecessary safe buffer usage (Chris von Recklinghausen) [1985062]
+- printk: kmsg_dump: remove _nolock() variants (Chris von Recklinghausen) [1985062]
+- printk: remove logbuf_lock (Chris von Recklinghausen) [1985062]
+- printk: introduce a kmsg_dump iterator (Chris von Recklinghausen) [1985062]
+- printk: kmsg_dumper: remove @active field (Chris von Recklinghausen) [1985062]
+- printk: add syslog_lock (Chris von Recklinghausen) [1985062]
+- printk: use atomic64_t for devkmsg_user.seq (Chris von Recklinghausen) [1985062]
+- printk: use seqcount_latch for clear_seq (Chris von Recklinghausen) [1985062]
+- printk: introduce CONSOLE_LOG_MAX (Chris von Recklinghausen) [1985062]
+- printk: consolidate kmsg_dump_get_buffer/syslog_print_all code (Chris von Recklinghausen) [1985062]
+- printk: refactor kmsg_dump_get_buffer() (Chris von Recklinghausen) [1985062]
+- printk: kmsg_dump: remove unused fields (Chris von Recklinghausen) [1985062]
+- printk: limit second loop of syslog_print_all (Chris von Recklinghausen) [1985062]
+- mtd: mtdoops: synchronize kmsg_dumper (Chris von Recklinghausen) [1985062]
+- vsprintf: dump full information of page flags in pGp (Chris von Recklinghausen) [1985062]
+- mm, slub: don't combine pr_err with INFO (Chris von Recklinghausen) [1985062]
+- mm, slub: use pGp to print page flags (Chris von Recklinghausen) [1985062]
+- lib/vsprintf.c: remove leftover 'f' and 'F' cases from bstr_printf() (Chris von Recklinghausen) [1985062]
+- printk: clarify the documentation for plain pointer printing (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: do not show no_hash_pointers message multiple times (Chris von Recklinghausen) [1985062]
+- kdb: Refactor env variables get/set code (Chris von Recklinghausen) [1985062]
+- kernel: debug: Ordinary typo fixes in the file gdbstub.c (Chris von Recklinghausen) [1985062]
+- kdb: Simplify kdb commands registration (Chris von Recklinghausen) [1985062]
+- seqlock,lockdep: Fix seqcount_latch_init() (Chris von Recklinghausen) [1985062]
+- printk: avoid prb_first_valid_seq() where possible (Chris von Recklinghausen) [1985062]
+- printk: rectify kernel-doc for prb_rec_init_wr() (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: no_hash_pointers prints all addresses as unhashed (Chris von Recklinghausen) [1985062]
+- kselftest: add support for skipped tests (Chris von Recklinghausen) [1985062]
+- lib: use KSTM_MODULE_GLOBALS macro in kselftest drivers (Chris von Recklinghausen) [1985062]
+- printk: fix deadlock when kernel panic (Chris von Recklinghausen) [1985062]
+- torture: Remove "Failed to add ttynull console" false positive (Chris von Recklinghausen) [1985062]
+- printk: fix string termination for record_print_text() (Chris von Recklinghausen) [1985062]
+- printk: fix buffer overflow potential for print_text() (Chris von Recklinghausen) [1985062]
+- printk: fix kmsg_dump_get_buffer length calulations (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: fix line counting (Chris von Recklinghausen) [1985062]
+- Revert "init/console: Use ttynull as a fallback when there is no console" (Chris von Recklinghausen) [1985062]
+- printk: remove obsolete dead assignment (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: Reference text_data_ring directly in callees. (Chris von Recklinghausen) [1985062]
+- printk/console: Allow to disable console output by using console="" or console=null (Chris von Recklinghausen) [1985062]
+- init/console: Use ttynull as a fallback when there is no console (Chris von Recklinghausen) [1985062]
+- printk: remove logbuf_lock writer-protection of ringbuffer (Chris von Recklinghausen) [1985062]
+- printk: inline log_output(),log_store() in vprintk_store() (Chris von Recklinghausen) [1985062]
+- printk: remove unneeded dead-store assignment (Chris von Recklinghausen) [1985062]
+- printk: finalize records with trailing newlines (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: Wrong data pointer when appending small string (Chris von Recklinghausen) [1985062]
+- printk: reduce setup_text_buf size to LOG_LINE_MAX (Chris von Recklinghausen) [1985062]
+- printk: avoid and/or handle record truncation (Chris von Recklinghausen) [1985062]
+- printk: remove dict ring (Chris von Recklinghausen) [1985062]
+- printk: move dictionary keys to dev_printk_info (Chris von Recklinghausen) [1985062]
+- printk: move printk_info into separate array (Chris von Recklinghausen) [1985062]
+- printk: reimplement log_cont using record extension (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: add finalization/extension support (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: change representation of states (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: clear initial reserved fields (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: add BLK_DATALESS() macro (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: relocate get_data() (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: avoid memcpy() on state_var (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: fix setting state in desc_read() (Chris von Recklinghausen) [1985062]
+- seqlock: Introduce seqcount_latch_t (Chris von Recklinghausen) [1985062]
+- scripts/gdb: update for lockless printk ringbuffer (Chris von Recklinghausen) [1985062]
+- scripts/gdb: add utils.read_ulong() (Chris von Recklinghausen) [1985062]
+- printk: reduce LOG_BUF_SHIFT range for H8300 (Chris von Recklinghausen) [1985062]
+- printk: ringbuffer: support dataless records (Chris von Recklinghausen) [1985062]
+- MAINTAIERS: Add John Ogness as printk reviewer (Chris von Recklinghausen) [1985062]
+- printk: use the lockless ringbuffer (Chris von Recklinghausen) [1985062]
+- Revert "printk: lock/unlock console only for new logbuf entries" (Chris von Recklinghausen) [1985062]
+- printk: add lockless ringbuffer (Chris von Recklinghausen) [1985062]
+- crash: add VMCOREINFO macro to define offset in a struct declared by typedef (Chris von Recklinghausen) [1985062]
+- printk: Use fallthrough pseudo-keyword (Chris von Recklinghausen) [1985062]
+- kernel.h: Move oops_in_progress to printk.h (Chris von Recklinghausen) [1985062]
+- serial: 8250: change lock order in serial8250_do_startup() (Chris von Recklinghausen) [1985062]
+- kernel: printk: delete repeated words in comments (Chris von Recklinghausen) [1985062]
+- random32: Restore __latent_entropy attribute on net_rand_state (Chris von Recklinghausen) [1985062]
+- random32: add a tracepoint for prandom_u32() (Chris von Recklinghausen) [1985062]
+- init: open code setting up stdin/stdout/stderr (Chris von Recklinghausen) [1985062]
+- hvc: unify console setup naming (Chris von Recklinghausen) [1985062]
+- console: Fix trivia typo 'change' -> 'chance' (Chris von Recklinghausen) [1985062]
+- console: Propagate error code from console ->setup() (Chris von Recklinghausen) [1985062]
+- tty: hvc: Return proper error code from console ->setup() hook (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: Force type of flags value for gfp_t (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: Replace custom spec to print decimals with generic one (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: Replace hidden BUILD_BUG_ON() with static_assert() (Chris von Recklinghausen) [1985062]
+- printk: Make linux/printk.h self-contained (Chris von Recklinghausen) [1985062]
+- doc:kmsg: explicitly state the return value in case of SEEK_CUR (Chris von Recklinghausen) [1985062]
+- Replace HTTP links with HTTPS ones: vsprintf (Chris von Recklinghausen) [1985062]
+- Revert "kernel/printk: add kmsg SEEK_CUR handling" (Chris von Recklinghausen) [1985062]
+- random32: move the pseudo-random 32-bit definitions to prandom.h (Chris von Recklinghausen) [1985062]
+- printk/kdb: Redirect printk messages into kdb in any context (Chris von Recklinghausen) [1985062]
+- usb: pulse8-cec: Switch to use ptT (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: Print time64_t in human readable format (Chris von Recklinghausen) [1985062]
+- printk: Remove pr_cont_once() (Chris von Recklinghausen) [1985062]
+- printk: handle blank console arguments passed in. (Chris von Recklinghausen) [1985062]
+- kernel/printk: add kmsg SEEK_CUR handling (Chris von Recklinghausen) [1985062]
+- printk: Fix a typo in comment "interator"->"iterator" (Chris von Recklinghausen) [1985062]
+- printk: Correctly set CON_CONSDEV even when preferred console was not registered (Chris von Recklinghausen) [1985062]
+- printk: Fix preferred console selection with multiple matches (Chris von Recklinghausen) [1985062]
+- printk: Move console matching logic into a separate function (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: update comment about simple_strto<foo>() functions (Chris von Recklinghausen) [1985062]
+- printk: Convert a use of sprintf to snprintf in console_unlock (Chris von Recklinghausen) [1985062]
+- lib/dynamic_debug.c: use address-of operator on section symbols (Chris von Recklinghausen) [1985062]
+- printk: fix exclusive_console replaying (Chris von Recklinghausen) [1985062]
+- Revert "fs: remove ksys_dup()" (Chris von Recklinghausen) [1985062]
+- early init: fix error handling when opening /dev/console (Chris von Recklinghausen) [1985062]
+- device.h: move dev_printk()-like functions to dev_printk.h (Chris von Recklinghausen) [1985062]
+- docs: printk-formats: add ptrdiff_t type to printk-formats (Chris von Recklinghausen) [1985062]
+- fs: remove ksys_dup() (Chris von Recklinghausen) [1985062]
+- MAINTAINERS: Add VSPRINTF (Chris von Recklinghausen) [1985062]
+- tools lib api: Renaming pr_warning to pr_warn (Chris von Recklinghausen) [1985062]
+- lib: cpu_rmap: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- trace: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- vgacon: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- scsi: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- platform/x86: intel_oaktrail: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- platform/x86: asus-laptop: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- platform/x86: eeepc-laptop: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- oprofile: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- of: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- macintosh: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- idsn: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- ide: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- crypto: n2: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- clocksource: samsung_pwm_timer: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- gdrom: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- drbd: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- x86: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- arm64: Use pr_warn instead of pr_warning (Chris von Recklinghausen) [1985062]
+- dump_stack: avoid the livelock of the dump_lock (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: Add pfw conversion specifier for printing fwnode names (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: Make use of fwnode API to obtain node names and separators (Chris von Recklinghausen) [1985062]
+- ABI: Update dev-kmsg documentation to match current kernel behaviour (Chris von Recklinghausen) [1985062]
+- printk: Replace strncmp() with str_has_prefix() (Chris von Recklinghausen) [1985062]
+- lib/test_printf: Remove obvious comments from pd and pD tests (Chris von Recklinghausen) [1985062]
+- lib/test_printf: Add test of null/invalid pointer dereference for dentry (Chris von Recklinghausen) [1985062]
+- vsprintf: Prevent crash when dereferencing invalid pointers for pD (Chris von Recklinghausen) [1985062]
+- printk: Do not lose last line in kmsg buffer dump (Chris von Recklinghausen) [1985062]
+- scripts/gdb: fix lx-dmesg when CONFIG_PRINTK_CALLER is set (Chris von Recklinghausen) [1985062]
+- lib/vsprintf: Remove support for pF and pf in favour of pS and ps (Chris von Recklinghausen) [1985062]
+- tracing: kdb: Allow ftdump to skip all but the last few entries (Chris von Recklinghausen) [1985062]
+- tracing: kdb: The skip_lines parameter should have been skip_entries (Chris von Recklinghausen) [1985062]
+- tracing: Add trace_total_entries() / trace_total_entries_cpu() (Chris von Recklinghausen) [1985062]
+- tty: Add NULL TTY driver (Chris von Recklinghausen) [1985062]
+- treewide: Switch printk users from pf and pF to ps and pS, respectively (Chris von Recklinghausen) [1985062]
+- iio: adc: fix warning in Qualcomm PM8xxx HK/XOADC driver (Chris von Recklinghausen) [1985062]
+- device.h: Add __cold to dev_<level> logging functions (Chris von Recklinghausen) [1985062]
+- dynamic_debug: move pr_err from module.c to ddebug_add_module (Chris von Recklinghausen) [1985062]
+- dynamic_debug: don't duplicate modname in ddebug_add_module (Chris von Recklinghausen) [1985062]
+- kdb: use bool for binary state indicators (Chris von Recklinghausen) [1985062]
+- panic: avoid deadlocks in re-entrant console drivers (Chris von Recklinghausen) [1985062]
+- x86/apic: Trivial coding style fixes (Chris von Recklinghausen) [1985062]
+- video/console/vgacon: Print big fat warning with nomodeset (Chris von Recklinghausen) [1985062]
+- device: Add #define dev_fmt similar to #define pr_fmt (Chris von Recklinghausen) [1985062]
+- bcache: replace 'pF' by 'pS' in seq_printf() (Chris von Recklinghausen) [1985062]
+- Revert "Merge: redhat: switch secureboot kernel image signing to release keys" (Augusto Caringi)
+- drm/nouveau/fifo/ga102: initialise chid on return from channel creation (Ben Skeggs) [1997878]
+- drm/nouveau/ga102-: support ttm buffer moves via copy engine (Ben Skeggs) [1997878]
+- drm/nouveau/kms/tu102-: delay enabling cursor until after assign_windows (Ben Skeggs) [1997878]
+- drm/nouveau/kms/nv50: workaround EFI GOP window channel format differences (Ben Skeggs) [1997878]
+- drm/nouveau/disp: power down unused DP links during init (Ben Skeggs) [1997878]
+- drm/nouveau: recognise GA107 (Ben Skeggs) [1997878]
+- PCI: Mark TI C667X to avoid bus reset (Alex Williamson) [1975768]
+- redhat: switch secureboot kernel image signing to release keys (Bruno Meneguele)
+- CI: handle RT branches in a single config (Veronika Kabatova)
+- CI: Fix RT check branch name (Veronika Kabatova)
+- CI: Drop private CI config (Veronika Kabatova)
+- CI: extend template use (Veronika Kabatova)
+- Revert "Merge: mt7921e: enable new Mediatek wireless hardware" (Bruno Meneguele) [2009501]
+- megaraid_sas: fix concurrent access to ISR between IRQ polling and real interrupt (Tomas Henzl) [2009022]
+- scsi: megaraid_sas: mq_poll support (Tomas Henzl) [2009022]
+- [PATCH v2] scsi: qla2xxx: Suppress unnecessary log messages during login (Nilesh Javali) [1982186]
+- scsi: qla2xxx: Fix excessive messages during device logout (Nilesh Javali) [1982186]
+- PCI: pciehp: Ignore Link Down/Up caused by DPC (Myron Stowe) [1981741]
+- arm64: kpti: Fix "kpti=off" when KASLR is enabled (Mark Salter) [1979731]
+- arm64: Fix CONFIG_ARCH_RANDOM=n build (Mark Salter) [1979731]
+- redhat/configs: aarch64: add CONFIG_ARCH_RANDOM (Mark Salter) [1979731]
+- arm64: Implement archrandom.h for ARMv8.5-RNG (Mark Salter) [1979731]
+- arm64: kconfig: Fix alignment of E0PD help text (Mark Salter) [1979731]
+- arm64: Use register field helper in kaslr_requires_kpti() (Mark Salter) [1979731]
+- arm64: Simplify early check for broken TX1 when KASLR is enabled (Mark Salter) [1979731]
+- arm64: Use a variable to store non-global mappings decision (Mark Salter) [1979731]
+- arm64: Don't use KPTI where we have E0PD (Mark Salter) [1979731]
+- arm64: Factor out checks for KASLR in KPTI code into separate function (Mark Salter) [1979731]
+- redhat/configs: Add CONFIG_ARM64_E0PD (Mark Salter) [1979731]
+- arm64: Add initial support for E0PD (Mark Salter) [1979731]
+- arm64: cpufeature: Export matrix and other features to userspace (Mark Salter) [1980098]
+- arm64: docs: cpu-feature-registers: Document ID_AA64PFR1_EL1 (Mark Salter) [1980098]
+- docs/arm64: cpu-feature-registers: Rewrite bitfields that don't follow [e, s] (Mark Salter) [1980098]
+- docs/arm64: cpu-feature-registers: Documents missing visible fields (Mark Salter) [1980098]
+- arm64: Introduce system_capabilities_finalized() marker (Mark Salter) [1980098]
+- arm64: entry.S: Do not preempt from IRQ before all cpufeatures are enabled (Mark Salter) [1980098]
+- docs/arm64: elf_hwcaps: Document HWCAP_SB (Mark Salter) [1980098]
+- docs/arm64: elf_hwcaps: sort the HWCAP{, 2} documentation by ascending value (Mark Salter) [1980098]
+- arm64: cpufeature: Treat ID_AA64ZFR0_EL1 as RAZ when SVE is not enabled (Mark Salter) [1980098]
+- arm64: cpufeature: Effectively expose FRINT capability to userspace (Mark Salter) [1980098]
+- arm64: cpufeature: Fix feature comparison for CTR_EL0.{CWG,ERG} (Mark Salter) [1980098]
+- arm64: Expose FRINT capabilities to userspace (Mark Salter) [1980098]
+- arm64: Expose ARMv8.5 CondM capability to userspace (Mark Salter) [1980098]
+- docs: arm64: convert perf.txt to ReST format (Mark Salter) [1980098]
+- docs: arm64: convert docs to ReST and rename to .rst (Mark Salter) [1980098]
+- Documentation/arm64: HugeTLB page implementation (Mark Salter) [1980098]
+- Documentation/arm64/sve: Couple of improvements and typos (Mark Salter) [1980098]
+- arm64: cpufeature: Fix missing ZFR0 in __read_sysreg_by_encoding() (Mark Salter) [1980098]
+- arm64: Expose SVE2 features for userspace (Mark Salter) [1980098]
+- arm64: Advertise ARM64_HAS_DCPODP cpu feature (Mark Salter) [1980098]
+- arm64: add CVADP support to the cache maintenance helper (Mark Salter) [1980098]
+- arm64: Fix minor issues with the dcache_by_line_op macro (Mark Salter) [1980098]
+- arm64: Expose DC CVADP to userspace (Mark Salter) [1980098]
+- arm64: Handle trapped DC CVADP (Mark Salter) [1980098]
+- arm64: HWCAP: encapsulate elf_hwcap (Mark Salter) [1980098]
+- arm64: HWCAP: add support for AT_HWCAP2 (Mark Salter) [1980098]
+- x86/MCE/AMD, EDAC/mce_amd: Add new SMCA bank types (Aristeu Rozanski) [1965331]
+- x86/MCE/AMD, EDAC/mce_amd: Remove struct smca_hwid.xec_bitmap (Aristeu Rozanski) [1965331]
+- EDAC, mce_amd: Print ExtErrorCode and description on a single line (Aristeu Rozanski) [1965331]
+
+* Mon Sep 27 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-345.1.el8]
+- scsi: ibmvfc: Fix command state accounting and stale response detection (Steve Best) [1988157]
+- tasklist_lock, ppc64: Convert tasklist_lock to use qrwlock for ppc64 (Waiman Long) [1978377]
+- tasklist_lock, ppc64: Provide infrastructure to support specific use of qrwlock (Waiman Long) [1978377]
+- redhat/configs: Disable CONFIG_PPC_QUEUED_SPINLOCKS (Waiman Long) [1978377]
+- qspinlock: use signed temporaries for cmpxchg (Waiman Long) [1978377]
+- powerpc/qspinlock: Optimised atomic_try_cmpxchg_lock() that adds the lock hint (Waiman Long) [1978377]
+- powerpc/pseries: Implement paravirt qspinlocks for SPLPAR (Waiman Long) [1978377]
+- powerpc/64s: Implement queued spinlocks and rwlocks (Waiman Long) [1978377]
+- powerpc: Move spinlock implementation to simple_spinlock (Waiman Long) [1978377]
+- locking/spinlocks: Remove an instruction from spin and write locks (Waiman Long) [1978377]
+- net: Fix skb->csum update in inet_proto_csum_replace16(). (Balazs Nemeth) [1975193]
+- [s390] s390/dasd: fix use after free in dasd path handling (Claudio Imbrenda) [1996764]
+- powerpc/bpf: Fix detecting BPF atomic instructions (Viktor Malik) [1931483]
+- selftests/bpf: ringbuf_multi: Test bpf_map__set_inner_map_fd (Viktor Malik) [1931483]
+- selftests/bpf: ringbuf_multi: Use runtime page size (Viktor Malik) [1931483]
+- libbpf: Add bpf_map__inner_map API (Viktor Malik) [1931483]
+- selftests/bpf: ringbuf: Use runtime page size (Viktor Malik) [1931483]
+- selftests/bpf: mmap: Use runtime page size (Viktor Malik) [1931483]
+- selftests/bpf: Pass page size from userspace in map_ptr (Viktor Malik) [1931483]
+- selftests/bpf: Pass page size from userspace in sockopt_sk (Viktor Malik) [1931483]
+- selftests/bpf: test_progs/sockopt_sk: Convert to use BPF skeleton (Viktor Malik) [1931483]
+- selftests/bpf: test_progs/sockopt_sk: Remove version (Viktor Malik) [1931483]
+- powerpc/64s: Fix crashes when toggling entry flush barrier (Diego Domingos) [1894804]
+- powerpc/64s: flush L1D after user accesses (Diego Domingos) [1894804]
+- powerpc/uaccess: Evaluate macro arguments once, before user access is allowed (Diego Domingos) [1894804]
+- powerpc: Fix __clear_user() with KUAP enabled (Diego Domingos) [1894804]
+- powerpc: Implement user_access_begin and friends (Diego Domingos) [1894804]
+- powerpc: Add a framework for user access tracking (Diego Domingos) [1894804]
+- powerpc/64s: flush L1D on kernel entry (Diego Domingos) [1894804]
+- redhat: enable CONFIG_SLAB_FREELIST_HARDENED (Rafael Aquini) [1862283]
+- include/uapi/linux/swab.h: fix userspace breakage, use __BITS_PER_LONG for swap (Rafael Aquini) [1862283]
+- uapi: rename ext2_swab() to swab() and share globally in swab.h (Rafael Aquini) [1862283]
+- lib/timerqueue: Rely on rbtree semantics for next timer (Phil Auld) [1984798]
+- e1000e: Do not take care about recovery NVM checksum (Ken Cox) [1984558]
+- qrtr: disable CONFIG_QRTR for non x86_64 archs (Íñigo Huguet) [1999642]
+- ceph: fix possible null-pointer dereference in ceph_mdsmap_decode() (Jeff Layton) [1989999]
+- ceph: fix dereference of null pointer cf (Jeff Layton) [1989999]
+- ceph: correctly handle releasing an embedded cap flush (Jeff Layton) [1989999]
+- ceph: take snap_empty_lock atomically with snaprealm refcount change (Jeff Layton) [1989999]
+- ceph: don't WARN if we're still opening a session to an MDS (Jeff Layton) [1989999]
+- rbd: don't hold lock_rwsem while running_list is being drained (Jeff Layton) [1989999]
+- rbd: always kick acquire on "acquired" and "released" notifications (Jeff Layton) [1989999]
+- ceph: take reference to req->r_parent at point of assignment (Jeff Layton) [1989999]
+- ceph: eliminate ceph_async_iput() (Jeff Layton) [1989999]
+- ceph: don't take s_mutex in ceph_flush_snaps (Jeff Layton) [1989999]
+- ceph: don't take s_mutex in try_flush_caps (Jeff Layton) [1989999]
+- ceph: don't take s_mutex or snap_rwsem in ceph_check_caps (Jeff Layton) [1989999]
+- ceph: eliminate session->s_gen_ttl_lock (Jeff Layton) [1989999]
+- ceph: allow ceph_put_mds_session to take NULL or ERR_PTR (Jeff Layton) [1989999]
+- ceph: clean up locking annotation for ceph_get_snap_realm and __lookup_snap_realm (Jeff Layton) [1989999]
+- ceph: add some lockdep assertions around snaprealm handling (Jeff Layton) [1989999]
+- ceph: decoding error in ceph_update_snap_realm should return -EIO (Jeff Layton) [1989999]
+- ceph: add IO size metrics support (Jeff Layton) [1989999]
+- ceph: update and rename __update_latency helper to __update_stdev (Jeff Layton) [1989999]
+- ceph: simplify the metrics struct (Jeff Layton) [1989999]
+- libceph: fix doc warnings in cls_lock_client.c (Jeff Layton) [1989999]
+- libceph: remove unnecessary ret variable in ceph_auth_init() (Jeff Layton) [1989999]
+- libceph: kill ceph_none_authorizer::reply_buf (Jeff Layton) [1989999]
+- ceph: make ceph_queue_cap_snap static (Jeff Layton) [1989999]
+- ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty (Jeff Layton) [1989999]
+- libceph: set global_id as soon as we get an auth ticket (Jeff Layton) [1989999]
+- libceph: don't pass result into ac->ops->handle_reply() (Jeff Layton) [1989999]
+- ceph: fix error handling in ceph_atomic_open and ceph_lookup (Jeff Layton) [1989999]
+- ceph: must hold snap_rwsem when filling inode for async create (Jeff Layton) [1989999]
+- libceph: Fix spelling mistakes (Jeff Layton) [1989999]
+- libceph: don't set global_id until we get an auth ticket (Jeff Layton) [1989999]
+- libceph: bump CephXAuthenticate encoding version (Jeff Layton) [1989999]
+- ceph: don't allow access to MDS-private inodes (Jeff Layton) [1989999]
+- ceph: fix up some bare fetches of i_size (Jeff Layton) [1989999]
+- ceph: support getting ceph.dir.rsnaps vxattr (Jeff Layton) [1989999]
+- ceph: drop pinned_page parameter from ceph_get_caps (Jeff Layton) [1989999]
+- ceph: fix inode leak on getattr error in __fh_to_dentry (Jeff Layton) [1989999]
+- ceph: only check pool permissions for regular files (Jeff Layton) [1989999]
+- ceph: send opened files/pinned caps/opened inodes metrics to MDS daemon (Jeff Layton) [1989999]
+- ceph: avoid counting the same request twice or more (Jeff Layton) [1989999]
+- ceph: rename the metric helpers (Jeff Layton) [1989999]
+- ceph: fix kerneldoc copypasta over ceph_start_io_direct (Jeff Layton) [1989999]
+- ceph: don't use d_add in ceph_handle_snapdir (Jeff Layton) [1989999]
+- ceph: don't clobber i_snap_caps on non-I_NEW inode (Jeff Layton) [1989999]
+- ceph: fix fall-through warnings for Clang (Jeff Layton) [1989999]
+- net: ceph: Fix a typo in osdmap.c (Jeff Layton) [1989999]
+- ceph: don't allow type or device number to change on non-I_NEW inodes (Jeff Layton) [1989999]
+- ceph: defer flushing the capsnap if the Fb is used (Jeff Layton) [1989999]
+- ceph: allow queueing cap/snap handling after putting cap references (Jeff Layton) [1989999]
+- ceph: clean up inode work queueing (Jeff Layton) [1989999]
+- ceph: fix flush_snap logic after putting caps (Jeff Layton) [1989999]
+- libceph: fix "Boolean result is used in bitwise operation" warning (Jeff Layton) [1989999]
+- new helper: inode_wrong_type() (Jeff Layton) [1989999]
+- kabi: Adding symbol single_release (fs/seq_file.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol single_open (fs/seq_file.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol seq_read (fs/seq_file.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol seq_printf (fs/seq_file.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol seq_lseek (fs/seq_file.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol unregister_chrdev_region (fs/char_dev.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol cdev_init (fs/char_dev.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol cdev_del (fs/char_dev.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol cdev_alloc (fs/char_dev.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol cdev_add (fs/char_dev.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol alloc_chrdev_region (fs/char_dev.c) (Čestmír Kalina) [1945486]
+- kabi: Adding symbol pcie_capability_read_word (drivers/pci/access.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pcie_capability_read_dword (drivers/pci/access.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pcie_capability_clear_and_set_word (drivers/pci/access.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_write_config_dword (drivers/pci/access.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_write_config_byte (drivers/pci/access.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_set_power_state (drivers/pci/pci.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_read_config_dword (drivers/pci/access.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_read_config_byte (drivers/pci/access.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_irq_vector (drivers/pci/msi.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_get_device (drivers/pci/search.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_free_irq_vectors (drivers/pci/msi.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol pci_alloc_irq_vectors_affinity (drivers/pci/msi.c) (Čestmír Kalina) [1945485]
+- kabi: Adding symbol kexec_crash_loaded (kernel/kexec_core.c) (Čestmír Kalina) [1945491]
+- perf/x86/intel: Fix PEBS-via-PT reload base value for Extended PEBS (Michael Petlan) [1998051]
+- perf/x86/intel/uncore: Fix Add BW copypasta (Michael Petlan) [1998051]
+- perf/x86/intel/uncore: Add BW counters for GT, IA and IO breakdown (Michael Petlan) [1998051]
+- Revert "ice: Add initial support framework for LAG" (Michal Schmidt) [1999016]
+- net: re-initialize slow_gro flag at gro_list_prepare time (Paolo Abeni) [2002367]
+- cxgb4: dont touch blocked freelist bitmap after free (Rahul Lakkireddy) [1998148]
+- cxgb4vf: configure ports accessible by the VF (Rahul Lakkireddy) [1961329]
+- scsi: lpfc: Fix memory leaks in error paths while issuing ELS RDF/SCR request (Dick Kennedy) [1976332]
+- scsi: lpfc: Keep NDLP reference until after freeing the IOCB after ELS handling (Dick Kennedy) [1976332]
+- scsi: lpfc: Move initialization of phba->poll_list earlier to avoid crash (Dick Kennedy) [1976332]
+
+* Thu Sep 23 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-343.1.el8]
+- md/raid10: properly indicate failure when ending a failed write request (Nigel Croxon) [1983859]
+- md: Constify attribute_group structs (Nigel Croxon) [1983859]
+- md: mark some personalities as deprecated (Nigel Croxon) [1983859]
+- md/raid1: rename print_msg with r1bio_existed (Nigel Croxon) [1983859]
+- async_xor: check src_offs is not NULL before updating it (Nigel Croxon) [1983859]
+- async_xor: increase src_offs when dropping destination page (Nigel Croxon) [1983859]
+- md/raid5: reallocate page array after setting new stripe_size (Nigel Croxon) [1983859]
+- md/raid5: resize stripe_head when reshape array (Nigel Croxon) [1983859]
+- md/raid5: let multiple devices of stripe_head share page (Nigel Croxon) [1983859]
+- md/raid6: let async recovery function support different page offset (Nigel Croxon) [1983859]
+- md/raid6: let syndrome computor support different page offset (Nigel Croxon) [1983859]
+- md/raid5: convert to new xor compution interface (Nigel Croxon) [1983859]
+- md/raid5: add new xor function to support different page offset (Nigel Croxon) [1983859]
+- md/raid5: make async_copy_data() to support different page offset (Nigel Croxon) [1983859]
+- md/raid5: add a new member of offset into r5dev (Nigel Croxon) [1983859]
+- x86/cpu: Update cached HLE state on write to TSX_CTRL_CPUID_CLEAR (Jay Shin) [1994421]
+- crypto: ccp - Add support for new CCP/PSP device ID (Vladis Dronov) [1987094]
+- crypto: ccp - shutdown SEV firmware on kexec (Vladis Dronov) [1987094]
+- crypto: ccp - Use list_move_tail instead of list_del/list_add_tail in ccp-dmaengine.c (Vladis Dronov) [1987094]
+- crypto: ccp: ccp-dev: Fix a little doc-rot (Vladis Dronov) [1987094]
+- crypto: ccp - Fix a resource leak in an error handling path (Vladis Dronov) [1987094]
+- crypto: ccp - Annotate SEV Firmware file names (Vladis Dronov) [1987094]
+- crypto: ccp - Make ccp_dev_suspend and ccp_dev_resume void functions (Vladis Dronov) [1987094]
+- crypto: ccp - Use DEFINE_SPINLOCK() for spinlock (Vladis Dronov) [1987094]
+- crypto: ccp - A value assigned to a variable is never used (Vladis Dronov) [1987094]
+- crypto: ccp - Don't initialize SEV support without the SEV feature (Vladis Dronov) [1987094]
+- crypto: ccp - fix error handling (Vladis Dronov) [1987094]
+- crypto: ccp - use generic power management (Vladis Dronov) [1987094]
+- crypto: drivers - set the flag CRYPTO_ALG_ALLOCATES_MEMORY (Vladis Dronov) [1987094]
+- crypto: ahash - remove useless setting of type flags (Vladis Dronov) [1987094]
+- crypto: ccp - Silence strncpy warning (Vladis Dronov) [1987094]
+- crypto: ccp - permit asynchronous skcipher as fallback (Vladis Dronov) [1987094]
+- crypto: ccp - Fix sparse warnings (Vladis Dronov) [1987094]
+- crypto: ccp - Update CCP driver maintainer information (Vladis Dronov) [1987094]
+- crypto: ccp - Fix use of merged scatterlists (Vladis Dronov) [1987094]
+- crypto: ccp - remove redundant assignment to variable ret (Vladis Dronov) [1987094]
+- crypto: ccp - use crypto_shash_tfm_digest() (Vladis Dronov) [1987094]
+- crypto: hash - introduce crypto_shash_tfm_digest() (Vladis Dronov) [1987094]
+- crypto: ccp -- don't "select" CONFIG_DMADEVICES (Vladis Dronov) [1987094]
+- crypto: ccp - Update MAINTAINERS for CCP driver (Vladis Dronov) [1987094]
+- crypto: ccp - switch from ablkcipher to skcipher (Vladis Dronov) [1987094]
+- ipc: replace costly bailout check in sysvipc_find_ipc() (Rafael Aquini) [1980619 1987128] {CVE-2021-3669}
+- ipc/util.c: sysvipc_find_ipc() incorrectly updates position index (Rafael Aquini) [1980619 1987128] {CVE-2021-3669}
+- ipc/util.c: sysvipc_find_ipc() should increase position index (Rafael Aquini) [1980619 1987128] {CVE-2021-3669}
+- psi: Fix psi state corruption when schedule() races with cgroup move (Waiman Long) [2002025]
+- psi: Optimize task switch inside shared cgroups (Waiman Long) [2002025]
+- kthread: Fix PF_KTHREAD vs to_kthread() race (Waiman Long) [2002025]
+- sched/fair: Ignore percpu threads for imbalance pulls (Waiman Long) [2002025]
+- sched: Fix get_push_task() vs migrate_disable() (Waiman Long) [2002025]
+- sched: Don't defer CPU pick to migration_cpu_stop() (Waiman Long) [2002025]
+- sched: Simplify migration_cpu_stop() (Waiman Long) [2002025]
+- sched: Simplify set_affinity_pending refcounts (Waiman Long) [2002025]
+- sched: Fix affine_move_task() self-concurrency (Waiman Long) [2002025]
+- sched: Optimize migration_cpu_stop() (Waiman Long) [2002025]
+- sched: Collate affine_move_task() stoppers (Waiman Long) [2002025]
+- sched: Simplify migration_cpu_stop() (Waiman Long) [2002025]
+- sched: Fix migration_cpu_stop() requeueing (Waiman Long) [2002025]
+- sched: Relax the set_cpus_allowed_ptr() semantics (Waiman Long) [2002025]
+- sched: Fix CPU hotplug / tighten is_per_cpu_kthread() (Waiman Long) [2002025]
+- sched: Prepare to use balance_push in ttwu() (Waiman Long) [2002025]
+- workqueue: Restrict affinity change to rescuer (Waiman Long) [2002025]
+- workqueue: Tag bound workers with KTHREAD_IS_PER_CPU (Waiman Long) [2002025]
+- kthread: Extract KTHREAD_IS_PER_CPU (Waiman Long) [2002025]
+- sched: Don't run cpu-online with balance_push() enabled (Waiman Long) [2002025]
+- workqueue: Use cpu_possible_mask instead of cpu_active_mask to break affinity (Waiman Long) [2002025]
+- sched/core: Print out straggler tasks in sched_cpu_dying() (Waiman Long) [2002025]
+- sched: Optimize finish_lock_switch() (Waiman Long) [2002025]
+- sched: Fix migration_cpu_stop() WARN (Waiman Long) [2002025]
+- sched/core: Add missing completion for affine_move_task() waiters (Waiman Long) [2002025]
+- stop_machine, rcu: Mark functions as notrace (Waiman Long) [2002025]
+- sched: Comment affine_move_task() (Waiman Long) [2002025]
+- sched: Deny self-issued __set_cpus_allowed_ptr() when migrate_disable() (Waiman Long) [2002025]
+- sched/proc: Print accurate cpumask vs migrate_disable() (Waiman Long) [2002025]
+- sched: Make migrate_disable/enable() independent of RT (Waiman Long) [2002025]
+- sched: Fix migrate_disable() vs rt/dl balancing (Waiman Long) [2002025]
+- sched, lockdep: Annotate ->pi_lock recursion (Waiman Long) [2002025]
+- sched,rt: Use the full cpumask for balancing (Waiman Long) [2002025]
+- sched,rt: Use cpumask_any*_distribute() (Waiman Long) [2002025]
+- sched/core: Make migrate disable and CPU hotplug cooperative (Waiman Long) [2002025]
+- sched: Fix migrate_disable() vs set_cpus_allowed_ptr() (Waiman Long) [2002025]
+- sched: Add migrate_disable() (Waiman Long) [2002025]
+- sched: Massage set_cpus_allowed() (Waiman Long) [2002025]
+- sched: Fix hotplug vs CPU bandwidth control (Waiman Long) [2002025]
+- sched/hotplug: Consolidate task migration on CPU unplug (Waiman Long) [2002025]
+- workqueue: Manually break affinity on hotplug (Waiman Long) [2002025]
+- sched/core: Wait for tasks being pushed away on hotplug (Waiman Long) [2002025]
+- sched/hotplug: Ensure only per-cpu kthreads run during hotplug (Waiman Long) [2002025]
+- sched: Fix balance_callback() (Waiman Long) [2002025]
+- maccess: rename probe_kernel_{read,write} to copy_{from,to}_kernel_nofault (Waiman Long) [2002025]
+- s390/ftrace: fix potential crashes when switching tracers (Waiman Long) [2002025]
+- psi: Move PF_MEMSTALL out of task->flags (Waiman Long) [2002025]
+- psi: Optimize switching tasks inside shared cgroups (Waiman Long) [2002025]
+- psi: Fix cpu.pressure for cpu.max and competing cgroups (Waiman Long) [2002025]
+- stop_machine: Make stop_cpus() static (Waiman Long) [2002025]
+- stop_machine: remove try_stop_cpus helper (Waiman Long) [2002025]
+- kernel.h: Add non_block_start/end() (Waiman Long) [2002025]
+- processor: get rid of cpu_relax_yield (Waiman Long) [2002025]
+- processor: remove spin_cpu_yield (Waiman Long) [2002025]
+- s390: improve wait logic of stop_machine (Waiman Long) [2002025]
+- sched/core: Fix typo in comment (Waiman Long) [2002025]
+- ia64/tlb: Eradicate tlb_migrate_finish() callback (Waiman Long) [2002025]
+- sched/core: Remove unnecessary unlikely() in push_*_task() (Waiman Long) [2002025]
+- sched/fair: Reduce long-tail newly idle balance cost (Phil Auld) [1971918]
+- hwmon: (acpi_power_meter) Fix lockdep splat (Waiman Long) [1997807]
+- redhat: open the RHEL-8.6 development (Augusto Caringi) [2000679]
+- rcu: Avoid unneeded function call in rcu_read_unlock() (Waiman Long) [1997500]
+- mt76: connac: do not schedule mac_work if the device is not running (Íñigo Huguet) [1956419 1972045]
+- mt7921e: enable module in config (Íñigo Huguet) [1956419 1972045]
+- Revert tools/power/cpupower: Read energy_perf_bias from sysfs (Steve Best) [1999926]
+- libnvdimm/namespace: Differentiate between probe mapping and runtime mapping (Jeff Moyer) [1795719]
+- libnvdimm/pfn_dev: Don't clear device memmap area during generic namespace probe (Jeff Moyer) [1795719]
+- perf/x86/intel/uncore: Clean up error handling path of iio mapping (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Fix for iio mapping on Skylake Server (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Generic support for the MMIO type of uncore blocks (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Generic support for the PCI type of uncore blocks (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Rename uncore_notifier to uncore_pci_sub_notifier (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Generic support for the MSR type of uncore blocks (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Parse uncore discovery tables (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Expose an Uncore unit to IIO PMON mapping (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Wrap the max dies calculation into an accessor (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Expose an Uncore unit to PMON mapping (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Validate MMIO address before accessing (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Record the size of mapped area (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Fix oops when counting IMC uncore events on some TGL (Michael Petlan) [1837330]
+- crypto: qat - remove unused macro in FW loader (Vladis Dronov) [1920086]
+- crypto: qat - check return code of qat_hal_rd_rel_reg() (Vladis Dronov) [1920086]
+- crypto: qat - report an error if MMP file size is too large (Vladis Dronov) [1920086]
+- crypto: qat - check MMP size before writing to the SRAM (Vladis Dronov) [1920086]
+- crypto: qat - return error when failing to map FW (Vladis Dronov) [1920086]
+- crypto: qat - enable detection of accelerators hang (Vladis Dronov) [1920086]
+- crypto: qat - Fix a double free in adf_create_ring (Vladis Dronov) [1920086]
+- crypto: qat - fix error path in adf_isr_resource_alloc() (Vladis Dronov) [1920086]
+- crypto: qat - ADF_STATUS_PF_RUNNING should be set after adf_dev_init (Vladis Dronov) [1920086]
+- crypto: qat - don't release uninitialized resources (Vladis Dronov) [1920086]
+- crypto: qat - fix use of 'dma_map_single' (Vladis Dronov) [1920086]
+- crypto: qat - fix unmap invalid dma address (Vladis Dronov) [1920086]
+- crypto: qat - fix spelling mistake: "messge" -> "message" (Vladis Dronov) [1920086]
+- crypto: qat - reduce size of mapped region (Vladis Dronov) [1920086]
+- crypto: qat - change format string and cast ring size (Vladis Dronov) [1920086]
+- crypto: qat - fix potential spectre issue (Vladis Dronov) [1920086]
+- crypto: qat - configure arbiter mapping based on engines enabled (Vladis Dronov) [1920086]
+- selftest: netfilter: add test case for unreplied tcp connections (Florian Westphal) [1991523]
+- netfilter: conntrack: do not renew entry stuck in tcp SYN_SENT state (Florian Westphal) [1991523]
+- net/sched: store the last executed chain also for clsact egress (Davide Caratti) [1980537]
+- ice: fix Tx queue iteration for Tx timestamp enablement (Ken Cox) [1999743]
+- perf evsel: Add missing cloning of evsel->use_config_name (Michael Petlan) [1838635]
+- perf Documentation: Document intel-hybrid support (Michael Petlan) [1838635]
+- perf tests: Skip 'perf stat metrics (shadow stat) test' for hybrid (Michael Petlan) [1838635]
+- perf tests: Support 'Convert perf time to TSC' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Support 'Session topology' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Support 'Parse and process metrics' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Support 'Track with sched_switch' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Skip 'Setup struct perf_event_attr' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Add hybrid cases for 'Roundtrip evsel->name' test (Michael Petlan) [1838635]
+- perf tests: Add hybrid cases for 'Parse event definition strings' test (Michael Petlan) [1838635]
+- perf record: Uniquify hybrid event name (Michael Petlan) [1838635]
+- perf stat: Warn group events from different hybrid PMU (Michael Petlan) [1838635]
+- perf stat: Filter out unmatched aggregation for hybrid event (Michael Petlan) [1838635]
+- perf stat: Add default hybrid events (Michael Petlan) [1838635]
+- perf record: Create two hybrid 'cycles' events by default (Michael Petlan) [1838635]
+- perf parse-events: Support event inside hybrid pmu (Michael Petlan) [1838635]
+- perf parse-events: Compare with hybrid pmu name (Michael Petlan) [1838635]
+- perf parse-events: Create two hybrid raw events (Michael Petlan) [1838635]
+- perf parse-events: Create two hybrid cache events (Michael Petlan) [1838635]
+- perf parse-events: Create two hybrid hardware events (Michael Petlan) [1838635]
+- perf stat: Uniquify hybrid event name (Michael Petlan) [1838635]
+- perf pmu: Add hybrid helper functions (Michael Petlan) [1838635]
+- perf pmu: Save detected hybrid pmus to a global pmu list (Michael Petlan) [1838635]
+- perf pmu: Save pmu name (Michael Petlan) [1838635]
+- perf pmu: Simplify arguments of __perf_pmu__new_alias (Michael Petlan) [1838635]
+- perf jevents: Support unit value "cpu_core" and "cpu_atom" (Michael Petlan) [1838635]
+- tools headers uapi: Update tools's copy of linux/perf_event.h (Michael Petlan) [1838635]
+
+* Thu Sep 16 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-343.el8]
+- rcu: Avoid unneeded function call in rcu_read_unlock() (Waiman Long) [1997500]
+- mt76: connac: do not schedule mac_work if the device is not running (Íñigo Huguet) [1956419 1972045]
+- mt7921e: enable module in config (Íñigo Huguet) [1956419 1972045]
+- Revert tools/power/cpupower: Read energy_perf_bias from sysfs (Steve Best) [1999926]
+- libnvdimm/namespace: Differentiate between probe mapping and runtime mapping (Jeff Moyer) [1795719]
+- libnvdimm/pfn_dev: Don't clear device memmap area during generic namespace probe (Jeff Moyer) [1795719]
+- perf/x86/intel/uncore: Clean up error handling path of iio mapping (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Fix for iio mapping on Skylake Server (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Generic support for the MMIO type of uncore blocks (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Generic support for the PCI type of uncore blocks (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Rename uncore_notifier to uncore_pci_sub_notifier (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Generic support for the MSR type of uncore blocks (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Parse uncore discovery tables (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Expose an Uncore unit to IIO PMON mapping (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Wrap the max dies calculation into an accessor (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Expose an Uncore unit to PMON mapping (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Validate MMIO address before accessing (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Record the size of mapped area (Michael Petlan) [1837330]
+- perf/x86/intel/uncore: Fix oops when counting IMC uncore events on some TGL (Michael Petlan) [1837330]
+- crypto: qat - remove unused macro in FW loader (Vladis Dronov) [1920086]
+- crypto: qat - check return code of qat_hal_rd_rel_reg() (Vladis Dronov) [1920086]
+- crypto: qat - report an error if MMP file size is too large (Vladis Dronov) [1920086]
+- crypto: qat - check MMP size before writing to the SRAM (Vladis Dronov) [1920086]
+- crypto: qat - return error when failing to map FW (Vladis Dronov) [1920086]
+- crypto: qat - enable detection of accelerators hang (Vladis Dronov) [1920086]
+- crypto: qat - Fix a double free in adf_create_ring (Vladis Dronov) [1920086]
+- crypto: qat - fix error path in adf_isr_resource_alloc() (Vladis Dronov) [1920086]
+- crypto: qat - ADF_STATUS_PF_RUNNING should be set after adf_dev_init (Vladis Dronov) [1920086]
+- crypto: qat - don't release uninitialized resources (Vladis Dronov) [1920086]
+- crypto: qat - fix use of 'dma_map_single' (Vladis Dronov) [1920086]
+- crypto: qat - fix unmap invalid dma address (Vladis Dronov) [1920086]
+- crypto: qat - fix spelling mistake: "messge" -> "message" (Vladis Dronov) [1920086]
+- crypto: qat - reduce size of mapped region (Vladis Dronov) [1920086]
+- crypto: qat - change format string and cast ring size (Vladis Dronov) [1920086]
+- crypto: qat - fix potential spectre issue (Vladis Dronov) [1920086]
+- crypto: qat - configure arbiter mapping based on engines enabled (Vladis Dronov) [1920086]
+
+* Tue Sep 14 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-342.el8]
+- selftest: netfilter: add test case for unreplied tcp connections (Florian Westphal) [1991523]
+- netfilter: conntrack: do not renew entry stuck in tcp SYN_SENT state (Florian Westphal) [1991523]
+- net/sched: store the last executed chain also for clsact egress (Davide Caratti) [1980537]
+- ice: fix Tx queue iteration for Tx timestamp enablement (Ken Cox) [1999743]
+- perf evsel: Add missing cloning of evsel->use_config_name (Michael Petlan) [1838635]
+- perf Documentation: Document intel-hybrid support (Michael Petlan) [1838635]
+- perf tests: Skip 'perf stat metrics (shadow stat) test' for hybrid (Michael Petlan) [1838635]
+- perf tests: Support 'Convert perf time to TSC' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Support 'Session topology' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Support 'Parse and process metrics' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Support 'Track with sched_switch' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Skip 'Setup struct perf_event_attr' test for hybrid (Michael Petlan) [1838635]
+- perf tests: Add hybrid cases for 'Roundtrip evsel->name' test (Michael Petlan) [1838635]
+- perf tests: Add hybrid cases for 'Parse event definition strings' test (Michael Petlan) [1838635]
+- perf record: Uniquify hybrid event name (Michael Petlan) [1838635]
+- perf stat: Warn group events from different hybrid PMU (Michael Petlan) [1838635]
+- perf stat: Filter out unmatched aggregation for hybrid event (Michael Petlan) [1838635]
+- perf stat: Add default hybrid events (Michael Petlan) [1838635]
+- perf record: Create two hybrid 'cycles' events by default (Michael Petlan) [1838635]
+- perf parse-events: Support event inside hybrid pmu (Michael Petlan) [1838635]
+- perf parse-events: Compare with hybrid pmu name (Michael Petlan) [1838635]
+- perf parse-events: Create two hybrid raw events (Michael Petlan) [1838635]
+- perf parse-events: Create two hybrid cache events (Michael Petlan) [1838635]
+- perf parse-events: Create two hybrid hardware events (Michael Petlan) [1838635]
+- perf stat: Uniquify hybrid event name (Michael Petlan) [1838635]
+- perf pmu: Add hybrid helper functions (Michael Petlan) [1838635]
+- perf pmu: Save detected hybrid pmus to a global pmu list (Michael Petlan) [1838635]
+- perf pmu: Save pmu name (Michael Petlan) [1838635]
+- perf pmu: Simplify arguments of __perf_pmu__new_alias (Michael Petlan) [1838635]
+- perf jevents: Support unit value "cpu_core" and "cpu_atom" (Michael Petlan) [1838635]
+- tools headers uapi: Update tools's copy of linux/perf_event.h (Michael Petlan) [1838635]
+
+* Fri Sep 10 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-341.el8]
+- mptcp: Only send extra TCP acks in eligible socket states (Paolo Abeni) [1997178]
+- mptcp: fix possible divide by zero (Paolo Abeni) [1997178]
+- mptcp: drop tx skb cache (Paolo Abeni) [1997178]
+- mptcp: fix memory leak on address flush (Paolo Abeni) [1997178]
+- ice: Only lock to update netdev dev_addr (Michal Schmidt) [1995868]
+- ice: restart periodic outputs around time changes (Ken Cox) [1992750]
+- ice: Fix perout start time rounding (Ken Cox) [1992750]
+- net/sched: ets: fix crash when flipping from 'strict' to 'quantum' (Davide Caratti) [1981184]
+- ovl: prevent private clone if bind mount is not allowed (Miklos Szeredi) [1993131] {CVE-2021-3732}
+- gfs2: Don't call dlm after protocol is unmounted (Bob Peterson) [1997193]
+- gfs2: don't stop reads while withdraw in progress (Bob Peterson) [1997193]
+- gfs2: Mark journal inodes as "don't cache" (Bob Peterson) [1997193]
+- bpf: bpftool: Add -fno-asynchronous-unwind-tables to BPF Clang invocation (Yauheni Kaliuta) [1997124]
+- perf/x86/intel: Apply mid ACK for small core (Michael Petlan) [1838573]
+- perf/x86/intel/lbr: Zero the xstate buffer on allocation (Michael Petlan) [1838573]
+- perf: Fix task context PMU for Hetero (Michael Petlan) [1838573]
+- perf/x86/intel: Fix fixed counter check warning for some Alder Lake (Michael Petlan) [1838573]
+- perf/x86/lbr: Remove cpuc->lbr_xsave allocation from atomic context (Michael Petlan) [1838573]
+- x86/fpu/xstate: Fix an xstate size check warning with architectural LBRs (Michael Petlan) [1838573]
+- perf/x86/rapl: Add support for Intel Alder Lake (Michael Petlan) [1838573]
+- perf/x86/cstate: Add Alder Lake CPU support (Michael Petlan) [1838573]
+- perf/x86/msr: Add Alder Lake CPU support (Michael Petlan) [1838573]
+- perf/x86/intel/uncore: Add Alder Lake support (Michael Petlan) [1838573]
+- perf: Extend PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE (Michael Petlan) [1838573]
+- perf/x86/intel: Add Alder Lake Hybrid support (Michael Petlan) [1838573]
+- perf/x86: Support filter_match callback (Michael Petlan) [1838573]
+- perf/x86/intel: Add attr_update for Hybrid PMUs (Michael Petlan) [1838573]
+- perf/x86: Add structures for the attributes of Hybrid PMUs (Michael Petlan) [1838573]
+- perf/x86: Register hybrid PMUs (Michael Petlan) [1838573]
+- perf/x86: Factor out x86_pmu_show_pmu_cap (Michael Petlan) [1838573]
+- perf/x86: Remove temporary pmu assignment in event_init (Michael Petlan) [1838573]
+- perf/x86/intel: Factor out intel_pmu_check_extra_regs (Michael Petlan) [1838573]
+- perf/x86/intel: Factor out intel_pmu_check_event_constraints (Michael Petlan) [1838573]
+- perf/x86/intel: Factor out intel_pmu_check_num_counters (Michael Petlan) [1838573]
+- perf/x86: Hybrid PMU support for extra_regs (Michael Petlan) [1838573]
+- perf/x86: Hybrid PMU support for event constraints (Michael Petlan) [1838573]
+- perf/x86: Hybrid PMU support for hardware cache event (Michael Petlan) [1838573]
+- perf/x86: Hybrid PMU support for unconstrained (Michael Petlan) [1838573]
+- perf/x86: Hybrid PMU support for counters (Michael Petlan) [1838573]
+- perf/x86: Hybrid PMU support for intel_ctrl (Michael Petlan) [1838573]
+- perf/x86/intel: Hybrid PMU support for perf capabilities (Michael Petlan) [1838573]
+- perf/x86: Track pmu in per-CPU cpu_hw_events (Michael Petlan) [1838573]
+- perf/x86/intel/lbr: Support XSAVES for arch LBR read (Michael Petlan) [1838573]
+- perf/x86/intel/lbr: Support XSAVES/XRSTORS for LBR context switch (Michael Petlan) [1838573]
+- x86/fpu/xstate: Add helpers for LBR dynamic supervisor feature (Michael Petlan) [1838573]
+- x86/fpu/xstate: Support dynamic supervisor feature for LBR (Michael Petlan) [1838573]
+- x86/fpu: Use proper mask to replace full instruction mask (Michael Petlan) [1838573]
+- x86/cpu: Add helper function to get the type of the current hybrid CPU (Michael Petlan) [1838573]
+- x86/cpufeatures: Enumerate Intel Hybrid Technology feature bit (Michael Petlan) [1838573]
+- HID: make arrays usage and value to be the same (Benjamin Tissoires) [1974942]
+- ACPI: PM: s2idle: Invert Microsoft UUID entry and exit (David Arcari) [1960440]
+- platform/x86: amd-pmc: Fix undefined reference to __udivdi3 (David Arcari) [1960440]
+- platform/x86: amd-pmc: Fix missing unlock on error in amd_pmc_send_cmd() (David Arcari) [1960440]
+- platform/x86: amd-pmc: Use return code on suspend (David Arcari) [1960440]
+- platform/x86: amd-pmc: Add new acpi id for future PMC controllers (David Arcari) [1960440]
+- platform/x86: amd-pmc: Add support for ACPI ID AMDI0006 (David Arcari) [1960440]
+- platform/x86: amd-pmc: Add support for logging s0ix counters (David Arcari) [1960440]
+- platform/x86: amd-pmc: Add support for logging SMU metrics (David Arcari) [1960440]
+- platform/x86: amd-pmc: call dump registers only once (David Arcari) [1960440]
+- platform/x86: amd-pmc: Fix SMU firmware reporting mechanism (David Arcari) [1960440]
+- platform/x86: amd-pmc: Fix command completion code (David Arcari) [1960440]
+- usb: pci-quirks: disable D3cold on xhci suspend for s2idle on AMD Renoir (David Arcari) [1960440]
+- ACPI: PM: Only mark EC GPE for wakeup on Intel systems (David Arcari) [1960440]
+- ACPI: PM: Adjust behavior for field problems on AMD systems (David Arcari) [1960440]
+- ACPI: PM: s2idle: Add support for new Microsoft UUID (David Arcari) [1960440]
+- ACPI: PM: s2idle: Add support for multiple func mask (David Arcari) [1960440]
+- ACPI: PM: s2idle: Refactor common code (David Arcari) [1960440]
+- ACPI: PM: s2idle: Use correct revision id (David Arcari) [1960440]
+- ACPI: PM: s2idle: Add missing LPS0 functions for AMD (David Arcari) [1960440]
+- lockd: Fix invalid lockowner cast after vfs_test_lock (Benjamin Coddington) [1986138]
+
+* Thu Sep 02 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-340.el8]
+- blk-mq: fix is_flush_rq (Ming Lei) [1992700]
+- blk-mq: fix kernel panic during iterating over flush request (Ming Lei) [1992700]
+
+* Fri Aug 27 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-339.el8]
+- smb2: fix use-after-free in smb2_ioctl_query_info() (Ronnie Sahlberg) [1952781]
+- dm crypt: Avoid percpu_counter spinlock contention in crypt_page_alloc() (Mike Snitzer) [1996854]
+- md/raid10: Remove rcu_dereference when it doesn't need rcu lock to protect (Nigel Croxon) [1978115]
+- scsi: csiostor: Mark known unused variable as __always_unused (Raju Rangoju) [1961333]
+- scsi: csiostor: Fix wrong return value in csio_hw_prep_fw() (Raju Rangoju) [1961333]
+- scsi: csiostor: Remove set but not used variable 'rln' (Raju Rangoju) [1961333]
+- scsi: csiostor: Return value not required for csio_dfs_destroy (Raju Rangoju) [1961333]
+- scsi: csiostor: Fix NULL check before debugfs_remove_recursive (Raju Rangoju) [1961333]
+- scsi: csiostor: Don't enable IRQs too early (Raju Rangoju) [1961333]
+- scsi: csiostor: Fix spelling typos (Raju Rangoju) [1961333]
+- scsi: csiostor: Prefer pcie_capability_read_word() (Raju Rangoju) [1961333]
+- scsi: target: cxgbit: Unmap DMA buffer before calling target_execute_cmd() (Raju Rangoju) [1961394]
+- net: Use skb_frag_off accessors (Raju Rangoju) [1961394]
+- net: Use skb accessors in network drivers (Raju Rangoju) [1961394]
+- cxgb4/chtls/cxgbit: Keeping the max ofld immediate data size same in cxgb4 and ulds (Raju Rangoju) [1961394]
+- scsi: libcxgbi: Fix a use after free in cxgbi_conn_xmit_pdu() (Raju Rangoju) [1961394]
+- scsi: libcxgbi: Use kvzalloc instead of opencoded kzalloc/vzalloc (Raju Rangoju) [1961394]
+- scsi: libcxgbi: Remove unnecessary NULL checks for 'tdata' pointer (Raju Rangoju) [1961394]
+- scsi: cxgb4i: Remove an unnecessary NULL check for 'cconn' pointer (Raju Rangoju) [1961394]
+- scsi: cxgb4i: Clean up a debug printk (Raju Rangoju) [1961394]
+- scsi: cxgb4i: Fix dereference of pointer tdata before it is null checked (Raju Rangoju) [1961394]
+- scsi: libcxgbi: fix NULL pointer dereference in cxgbi_device_destroy() (Raju Rangoju) [1961394]
+- scsi: libcxgbi: remove unused function to stop warning (Raju Rangoju) [1961394]
+- scsi: libcxgbi: add a check for NULL pointer in cxgbi_check_route() (Raju Rangoju) [1961394]
+- net/chelsio: Delete drive and module versions (Raju Rangoju) [1961394]
+- chelsio: Replace zero-length array with flexible-array member (Raju Rangoju) [1961394]
+- [netdrv] treewide: prefix header search paths with $(srctree)/ (Raju Rangoju) [1961394]
+- libcxgb: fix incorrect ppmax calculation (Raju Rangoju) [1961394]
+- scsi: cxgb4i: Fix TLS dependency (Raju Rangoju) [1961394]
+- [target] treewide: Use fallthrough pseudo-keyword (Raju Rangoju) [1961394]
+- scsi: cxgb4i: Add support for iSCSI segmentation offload (Raju Rangoju) [1961394]
+- [target] treewide: Use sizeof_field() macro (Raju Rangoju) [1961394]
+- [target] treewide: replace '---help---' in Kconfig files with 'help' (Raju Rangoju) [1961394]
+- scsi: cxgb4i: Remove superfluous null check (Raju Rangoju) [1961394]
+
+* Thu Aug 26 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-338.el8]
+- KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl (CVE-2021-3653) (Jon Maloy) [1985413] {CVE-2021-3653}
+- KVM: nSVM: always intercept VMLOAD/VMSAVE when nested (CVE-2021-3656) (Jon Maloy) [1985430] {CVE-2021-3656}
+- drm/i915/rkl: Remove require_force_probe protection (Lyude Paul) [1985159]
+- drm/i915/display: support ddr5 mem types (Lyude Paul) [1992233]
+- drm/i915/adl_s: Update ddi buf translation tables (Lyude Paul) [1992233]
+- drm/i915/adl_s: Wa_14011765242 is also needed on A1 display stepping (Lyude Paul) [1992233]
+- drm/i915/adl_s: Extend Wa_1406941453 (Lyude Paul) [1992233]
+- drm/i915: Implement Wa_1508744258 (Lyude Paul) [1992233]
+- drm/i915/adl_s: Fix dma_mask_size to 39 bit (Lyude Paul) [1992233]
+- drm/i915: Add the missing adls vswing tables (Lyude Paul) [1992233]
+- drm/i915: Add Wa_14011060649 (Lyude Paul) [1992233]
+- drm/i915/adl_s: Add Interrupt Support (Lyude Paul) [1992233]
+- drm/amdgpu: add another Renoir DID (Lyude Paul) [1980900]
+
+* Wed Aug 25 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-337.el8]
+- net/mlx5: Fix flow table chaining (Amir Tzin) [1987139]
+- openvswitch: fix sparse warning incorrect type (Mark Gray) [1992773]
+- openvswitch: fix alignment issues (Mark Gray) [1992773]
+- openvswitch: update kdoc OVS_DP_ATTR_PER_CPU_PIDS (Mark Gray) [1992773]
+- openvswitch: Introduce per-cpu upcall dispatch (Mark Gray) [1992773]
+- KVM: X86: Expose bus lock debug exception to guest (Paul Lai) [1842322]
+- KVM: X86: Add support for the emulation of DR6_BUS_LOCK bit (Paul Lai) [1842322]
+- scsi: libfc: Fix array index out of bound exception (Chris Leech) [1972643]
+- scsi: libfc: FDMI enhancements (Chris Leech) [1972643]
+- scsi: libfc: Add FDMI-2 attributes (Chris Leech) [1972643]
+- scsi: qedf: Add vendor identifier attribute (Chris Leech) [1972643]
+- scsi: libfc: Initialisation of RHBA and RPA attributes (Chris Leech) [1972643]
+- scsi: libfc: Correct the condition check and invalid argument passed (Chris Leech) [1972643]
+- scsi: libfc: Work around -Warray-bounds warning (Chris Leech) [1972643]
+- scsi: fc: FDMI enhancement (Chris Leech) [1972643]
+- scsi: libfc: Move scsi/fc_encode.h to libfc (Chris Leech) [1972643]
+- scsi: fc: Correct RHBA attributes length (Chris Leech) [1972643]
+- block: return ELEVATOR_DISCARD_MERGE if possible (Ming Lei) [1991976]
+- x86/fpu: Prevent state corruption in __fpu__restore_sig() (Terry Bowman) [1970086]
+- x86/fpu: Invalidate FPU state after a failed XRSTOR from a user buffer (Terry Bowman) [1970086]
+- x86/pkru: Write hardware init value to PKRU when xstate is init (Terry Bowman) [1970086]
+- x86/process: Check PF_KTHREAD and not current->mm for kernel threads (Terry Bowman) [1970086]
+- x86/fpu: Add address range checks to copy_user_to_xstate() (Terry Bowman) [1970086]
+- selftests/x86: Test signal frame XSTATE header corruption handling (Terry Bowman) [1970086]
+- Bump DRM backport version to 5.12.14 (Lyude Paul) [1944405]
+- drm/i915: Use the correct max source link rate for MST (Lyude Paul) [1944405 1966599]
+- drm/dp_mst: Use Extended Base Receiver Capability DPCD space (Lyude Paul) [1944405 1966599]
+- drm/i915/display: Defeature PSR2 for RKL and ADL-S (Lyude Paul) [1944405]
+- drm/i915/adl_s: ADL-S platform Update PCI ids for Mobile BGA (Lyude Paul) [1944405]
+- drm/amdgpu: wait for moving fence after pinning (Lyude Paul) [1944405]
+- drm/radeon: wait for moving fence after pinning (Lyude Paul) [1944405]
+- drm/nouveau: wait for moving fence after pinning v2 (Lyude Paul) [1944405]
+- radeon: use memcpy_to/fromio for UVD fw upload (Lyude Paul) [1944405]
+- drm/amd/amdgpu:save psp ring wptr to avoid attack (Lyude Paul) [1944405]
+- drm/amd/display: Fix potential memory leak in DMUB hw_init (Lyude Paul) [1944405]
+- drm/amdgpu: refine amdgpu_fru_get_product_info (Lyude Paul) [1944405]
+- drm/amd/display: Allow bandwidth validation for 0 streams. (Lyude Paul) [1944405]
+- drm: Lock pointer access in drm_master_release() (Lyude Paul) [1944405]
+- drm: Fix use-after-free read in drm_getunique() (Lyude Paul) [1944405]
+- drm/amdgpu: make sure we unpin the UVD BO (Lyude Paul) [1944405]
+- drm/amdgpu: Don't query CE and UE errors (Lyude Paul) [1944405]
+- drm/amdgpu/jpeg3: add cancel_delayed_work_sync before power gate (Lyude Paul) [1944405]
+- drm/amdgpu/jpeg2.5: add cancel_delayed_work_sync before power gate (Lyude Paul) [1944405]
+- drm/amdgpu/vcn3: add cancel_delayed_work_sync before power gate (Lyude Paul) [1944405]
+- amdgpu: fix GEM obj leak in amdgpu_display_user_framebuffer_create (Lyude Paul) [1944405]
+- drm/i915/selftests: Fix return value check in live_breadcrumbs_smoketest() (Lyude Paul) [1944405]
+- drm/amdgpu: stop touching sched.ready in the backend (Lyude Paul) [1944405]
+- drm/amd/amdgpu: fix a potential deadlock in gpu reset (Lyude Paul) [1944405]
+- drm/amdgpu: Fix a use-after-free (Lyude Paul) [1944405]
+- drm/amd/amdgpu: fix refcount leak (Lyude Paul) [1944405]
+- drm/amd/display: Disconnect non-DP with no EDID (Lyude Paul) [1944405]
+- drm/amdgpu/jpeg2.0: add cancel_delayed_work_sync before power gate (Lyude Paul) [1944405]
+- drm/amdgpu/vcn2.5: add cancel_delayed_work_sync before power gate (Lyude Paul) [1944405]
+- drm/amdgpu/vcn2.0: add cancel_delayed_work_sync before power gate (Lyude Paul) [1944405]
+- drm/amdkfd: correct sienna_cichlid SDMA RLC register offset error (Lyude Paul) [1944405]
+- drm/amdgpu/vcn1: add cancel_delayed_work_sync before power gate (Lyude Paul) [1944405]
+- drm/amd/pm: correct MGpuFanBoost setting (Lyude Paul) [1944405]
+- drm/i915: Reenable LTTPR non-transparent LT mode for DPCD_REV<1.4 (Lyude Paul) [1944405]
+- drm/i915/gt: Disable HiZ Raw Stall Optimization on broken gen7 (Lyude Paul) [1944405]
+- dma-buf: fix unintended pin/unpin warnings (Lyude Paul) [1944405]
+- drm/amdgpu: update sdma golden setting for Navi12 (Lyude Paul) [1944405]
+- drm/amdgpu: update gc golden setting for Navi12 (Lyude Paul) [1944405]
+- drm/amdgpu: disable 3DCGCG on picasso/raven1 to avoid compute hang (Lyude Paul) [1944405]
+- drm/amdgpu: Fix GPU TLB update error when PAGE_SIZE > AMDGPU_PAGE_SIZE (Lyude Paul) [1944405]
+- drm/radeon: use the dummy page for GART if needed (Lyude Paul) [1944405]
+- drm/amd/display: Use the correct max downscaling value for DCN3.x family (Lyude Paul) [1944405]
+- drm/i915/gem: Pin the L-shape quirked object as unshrinkable (Lyude Paul) [1944405]
+- drm/ttm: Do not add non-system domain BO into swap list (Lyude Paul) [1944405]
+- drm/amd/display: Fix two cursor duplication when using overlay (Lyude Paul) [1944405]
+- amdgpu/pm: Prevent force of DCEFCLK on NAVI10 and SIENNA_CICHLID (Lyude Paul) [1944405]
+- drm/i915/display: fix compiler warning about array overrun (Lyude Paul) [1944405]
+- drm/i915: Fix crash in auto_retire (Lyude Paul) [1944405]
+- drm/i915/overlay: Fix active retire callback alignment (Lyude Paul) [1944405]
+- drm/i915: Read C0DRB3/C1DRB3 as 16 bits again (Lyude Paul) [1944405]
+- drm/i915/gt: Fix a double free in gen8_preallocate_top_level_pdp (Lyude Paul) [1944405]
+- drm/i915/dp: Use slow and wide link training for everything (Lyude Paul) [1944405]
+- drm/i915: Avoid div-by-zero on gen2 (Lyude Paul) [1944405]
+- drm/amd/display: Initialize attribute for hdcp_srm sysfs file (Lyude Paul) [1944405]
+- drm/radeon/dpm: Disable sclk switching on Oland when two 4K 60Hz monitors are connected (Lyude Paul) [1944405]
+- drm/radeon: Avoid power table parsing memory leaks (Lyude Paul) [1944405]
+- drm/radeon: Fix off-by-one power_state index heap overwrite (Lyude Paul) [1944405]
+- drm/amdgpu: Add mem sync flag for IB allocated by SA (Lyude Paul) [1944405]
+- drm/amd/display: add handling for hdcp2 rx id list validation (Lyude Paul) [1944405]
+- drm/amd/display: fixed divide by zero kernel crash during dsc enablement (Lyude Paul) [1944405]
+- drm/amd/display: Force vsync flip when reconfiguring MPCC (Lyude Paul) [1944405]
+- arm64: enable tlbi range instructions (Jeremy Linton) [1861872]
+- arm64: tlb: Use the TLBI RANGE feature in arm64 (Jeremy Linton) [1861872]
+- arm64: tlb: Detect the ARMv8.4 TLBI RANGE feature (Jeremy Linton) [1861872]
+- arm64/cpufeature: Add remaining feature bits in ID_AA64ISAR0 register (Jeremy Linton) [1861872]
+- arm64: tlbflush: Ensure start/end of address range are aligned to stride (Jeremy Linton) [1861872]
+- arm64: Detect the ARMv8.4 TTL feature (Jeremy Linton) [1861872]
+- arm64: tlbi: Set MAX_TLBI_OPS to PTRS_PER_PTE (Jeremy Linton) [1861872]
+
+* Tue Aug 24 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-336.el8]
+- bpf: Fix integer overflow involving bucket_size (Jiri Olsa) [1992588]
+- bpf: Fix leakage due to insufficient speculative store bypass mitigation (Jiri Olsa) [1992588]
+- bpf: Introduce BPF nospec instruction for mitigating Spectre v4 (Jiri Olsa) [1992588]
+- bpf: Fix OOB read when printing XDP link fdinfo (Jiri Olsa) [1992588]
+- bpf, test: fix NULL pointer dereference on invalid expected_attach_type (Jiri Olsa) [1992588]
+- bpf: Fix tail_call_reachable rejection for interpreter when jit failed (Jiri Olsa) [1992588]
+- bpf: Track subprog poke descriptors correctly and fix use-after-free (Jiri Olsa) [1992588]
+- bpf: Fix null ptr deref with mixed tail calls and subprogs (Jiri Olsa) [1992588]
+- bpf: Fix leakage under speculation on mispredicted branches (Jiri Olsa) [1992588]
+- bpf: Set mac_len in bpf_skb_change_head (Jiri Olsa) [1992588]
+- bpf: Prevent writable memory-mapping of read-only ringbuf pages (Jiri Olsa) [1992588]
+- bpf: Fix alu32 const subreg bound tracking on bitwise operations (Jiri Olsa) [1992588]
+- xsk: Fix broken Tx ring validation (Jiri Olsa) [1992588]
+- xsk: Fix for xp_aligned_validate_desc() when len == chunk_size (Jiri Olsa) [1992588]
+- bpf: link: Refuse non-O_RDWR flags in BPF_OBJ_GET (Jiri Olsa) [1992588]
+- bpf: Refcount task stack in bpf_get_task_stack (Jiri Olsa) [1992588]
+- bpf: Use NOP_ATOMIC5 instead of emit_nops(&prog, 5) for BPF_TRAMP_F_CALL_ORIG (Jiri Olsa) [1992588]
+- selftest/bpf: Add a test to check trampoline freeing logic. (Jiri Olsa) [1992588]
+- bpf: Fix fexit trampoline. (Jiri Olsa) [1992588]
+- ftrace: Fix modify_ftrace_direct. (Jiri Olsa) [1992588]
+- ftrace: Add a helper function to modify_ftrace_direct() to allow arch optimization (Jiri Olsa) [1992588]
+- ftrace: Add helper find_direct_entry() to consolidate code (Jiri Olsa) [1992588]
+- bpf: Fix truncation handling for mod32 dst reg wrt zero (Jiri Olsa) [1992588]
+- bpf: Fix an unitialized value in bpf_iter (Jiri Olsa) [1992588]
+- bpf_lru_list: Read double-checked variable once without lock (Jiri Olsa) [1992588]
+- mt76: validate rx A-MSDU subframes (Íñigo Huguet) [1991459] {CVE-2020-24588 CVE-2020-26144}
+- ath11k: Drop multicast fragments (Íñigo Huguet) [1991459] {CVE-2020-26145}
+- ath11k: Clear the fragment cache during key install (Íñigo Huguet) [1991459] {CVE-2020-24587}
+- ath10k: Validate first subframe of A-MSDU before processing the list (Íñigo Huguet) [1991459] {CVE-2020-24588 CVE-2020-26144}
+- ath10k: Fix TKIP Michael MIC verification for PCIe (Íñigo Huguet) [1991459] {CVE-2020-26141}
+- ath10k: drop MPDU which has discard flag set by firmware for SDIO (Íñigo Huguet) [1991459] {CVE-2020-24588}
+- ath10k: drop fragments with multicast DA for SDIO (Íñigo Huguet) [1991459] {CVE-2020-26145}
+- ath10k: drop fragments with multicast DA for PCIe (Íñigo Huguet) [1991459] {CVE-2020-26145}
+- ath10k: add CCMP PN replay protection for fragmented frames for PCIe (Íñigo Huguet) [1991459]
+- mac80211: extend protection against mixed key and fragment cache attacks (Íñigo Huguet) [1991459] {CVE-2020-24586 CVE-2020-24587}
+- mac80211: do not accept/forward invalid EAPOL frames (Íñigo Huguet) [1991459] {CVE-2020-26139}
+- mac80211: prevent attacks on TKIP/WEP as well (Íñigo Huguet) [1991459] {CVE-2020-26141}
+- mac80211: check defrag PN against current frame (Íñigo Huguet) [1991459]
+- mac80211: add fragment cache to sta_info (Íñigo Huguet) [1991459] {CVE-2020-24586 CVE-2020-24587}
+- mac80211: drop A-MSDUs on old ciphers (Íñigo Huguet) [1991459] {CVE-2020-24588}
+- cfg80211: mitigate A-MSDU aggregation attacks (Íñigo Huguet) [1991459] {CVE-2020-24588 CVE-2020-26144}
+- mac80211: properly handle A-MSDUs that start with an RFC 1042 header (Íñigo Huguet) [1991459]
+- mac80211: prevent mixed key and fragment cache attacks (Íñigo Huguet) [1991459] {CVE-2020-24586 CVE-2020-24587}
+- mac80211: assure all fragments are encrypted (Íñigo Huguet) [1991459] {CVE-2020-26147}
+- tipc: call tipc_wait_for_connect only when dlen is not 0 (Xin Long) [1989361]
+- mptcp: remove tech preview warning (Florian Westphal) [1985120]
+- tcp: consistently disable header prediction for mptcp (Florian Westphal) [1985120]
+- selftests: mptcp: fix case multiple subflows limited by server (Florian Westphal) [1985120]
+- selftests: mptcp: turn rp_filter off on each NIC (Florian Westphal) [1985120]
+- selftests: mptcp: display proper reason to abort tests (Florian Westphal) [1985120]
+- mptcp: properly account bulk freed memory (Florian Westphal) [1985120]
+- mptcp: fix 'masking a bool' warning (Florian Westphal) [1985120]
+- mptcp: refine mptcp_cleanup_rbuf (Florian Westphal) [1985120]
+- mptcp: use fast lock for subflows when possible (Florian Westphal) [1985120]
+- mptcp: avoid processing packet if a subflow reset (Florian Westphal) [1985120]
+- mptcp: add sk parameter for mptcp_get_options (Florian Westphal) [1985120]
+- mptcp: fix syncookie process if mptcp can not_accept new subflow (Florian Westphal) [1985120]
+- mptcp: fix warning in __skb_flow_dissect() when do syn cookie for subflow join (Florian Westphal) [1985120]
+- mptcp: avoid race on msk state changes (Florian Westphal) [1985120]
+- mptcp: fix 32 bit DSN expansion (Florian Westphal) [1985120]
+- mptcp: fix bad handling of 32 bit ack wrap-around (Florian Westphal) [1985120]
+- tcp: parse mptcp options contained in reset packets (Florian Westphal) [1985120]
+- ionic: count csum_none when offload enabled (Jonathan Toppins) [1991646]
+- ionic: fix up dim accounting for tx and rx (Jonathan Toppins) [1991646]
+- ionic: remove intr coalesce update from napi (Jonathan Toppins) [1991646]
+- ionic: catch no ptp support earlier (Jonathan Toppins) [1991646]
+- ionic: make all rx_mode work threadsafe (Jonathan Toppins) [1991646]
+- dmaengine: idxd: Fix missing error code in idxd_cdev_open() (Jerry Snitselaar) [1990637]
+- dmaengine: idxd: add missing dsa driver unregister (Jerry Snitselaar) [1990637]
+- dmaengine: idxd: add engine 'struct device' missing bus type assignment (Jerry Snitselaar) [1990637]
+- dmaengine: idxd: remove MSIX masking for interrupt handlers (Jerry Snitselaar) [1990637]
+- dmaengine: idxd: Use cpu_feature_enabled() (Jerry Snitselaar) [1990637]
+- dmaengine: idxd: enable SVA feature for IOMMU (Jerry Snitselaar) [1990637]
+- dmagenine: idxd: Don't add portal offset in idxd_submit_desc (Jerry Snitselaar) [1990637]
+- ethtool: strset: fix message length calculation (Balazs Nemeth) [1989003]
+- net: add strict checks in netdev_name_node_alt_destroy() (Andrea Claudi) [1859038]
+- net: rtnetlink: fix bugs in rtnl_alt_ifname() (Andrea Claudi) [1859038]
+- net: rtnetlink: add linkprop commands to add and delete alternative ifnames (Andrea Claudi) [1859038]
+- net: check all name nodes in __dev_alloc_name (Andrea Claudi) [1859038]
+- net: fix a leak in register_netdevice() (Andrea Claudi) [1859038]
+- tun: fix memory leak in error path (Andrea Claudi) [1859038]
+- net: propagate errors correctly in register_netdevice() (Andrea Claudi) [1859038]
+- net: introduce name_node struct to be used in hashlist (Andrea Claudi) [1859038]
+- net: procfs: use index hashlist instead of name hashlist (Andrea Claudi) [1859038]
+- configs: Enable CONFIG_CHELSIO_INLINE_CRYPTO (Raju Rangoju) [1961368]
+- cxgb4/ch_ktls: Clear resources when pf4 device is removed (Raju Rangoju) [1961374]
+- ch_ktls: Remove redundant variable result (Raju Rangoju) [1961374]
+- ch_ktls: do not send snd_una update to TCB in middle (Raju Rangoju) [1961374]
+- ch_ktls: tcb close causes tls connection failure (Raju Rangoju) [1961374]
+- ch_ktls: fix device connection close (Raju Rangoju) [1961374]
+- ch_ktls: Fix kernel panic (Raju Rangoju) [1961374]
+- ch_ktls: fix enum-conversion warning (Raju Rangoju) [1961374]
+- net: ethernet: chelsio: inline_crypto: Mundane typos fixed throughout the file chcr_ktls.c (Raju Rangoju) [1961374]
+- ch_ipsec: Remove initialization of rxq related data (Raju Rangoju) [1961388]
+- ch_ktls: fix build warning for ipv4-only config (Raju Rangoju) [1961374]
+- ch_ktls: lock is not freed (Raju Rangoju) [1961374]
+- ch_ktls: stop the txq if reaches threshold (Raju Rangoju) [1961374]
+- ch_ktls: tcb update fails sometimes (Raju Rangoju) [1961374]
+- ch_ktls/cxgb4: handle partial tag alone SKBs (Raju Rangoju) [1961374]
+- ch_ktls: don't free skb before sending FIN (Raju Rangoju) [1961374]
+- ch_ktls: packet handling prior to start marker (Raju Rangoju) [1961374]
+- ch_ktls: Correction in middle record handling (Raju Rangoju) [1961374]
+- ch_ktls: missing handling of header alone (Raju Rangoju) [1961374]
+- ch_ktls: Correction in trimmed_len calculation (Raju Rangoju) [1961374]
+- cxgb4/ch_ktls: creating skbs causes panic (Raju Rangoju) [1961374]
+- ch_ktls: Update cheksum information (Raju Rangoju) [1961374]
+- ch_ktls: Correction in finding correct length (Raju Rangoju) [1961374]
+- cxgb4/ch_ktls: decrypted bit is not enough (Raju Rangoju) [1961374]
+- cxgb4/ch_ipsec: Replace the module name to ch_ipsec from chcr (Raju Rangoju) [1961388]
+- cxgb4/ch_ktls: ktls stats are added at port level (Raju Rangoju) [1961374]
+- ch_ktls: Issue if connection offload fails (Raju Rangoju) [1961374]
+- chelsio/chtls: Re-add dependencies on CHELSIO_T4 to fix modular CHELSIO_T4 (Raju Rangoju) [1961388]
+- chelsio/chtls: CHELSIO_INLINE_CRYPTO should depend on CHELSIO_T4 (Raju Rangoju) [1961388]
+- crypto: chelsio - fix minor indentation issue (Raju Rangoju) [1961368]
+- crypto/chcr: move nic TLS functionality to drivers/net (Raju Rangoju) [1961368]
+- cxgb4/ch_ipsec: Registering xfrmdev_ops with cxgb4 (Raju Rangoju) [1961388]
+- crypto/chcr: Moving chelsio's inline ipsec functionality to /drivers/net (Raju Rangoju) [1961368]
+- chelsio/chtls: separate chelsio tls driver from crypto driver (Raju Rangoju) [1961368]
+- crypto: chelsio - Fix some pr_xxx messages (Raju Rangoju) [1961368]
+- crypto: chelsio - Avoid some code duplication (Raju Rangoju) [1961368]
+- crypto: drivers - set the flag CRYPTO_ALG_ALLOCATES_MEMORY (Raju Rangoju) [1961368]
+- crypto: aead - remove useless setting of type flags (Raju Rangoju) [1961368]
+- crypto: Replace zero-length array with flexible-array (Raju Rangoju) [1961368]
+- [Crypto] treewide: replace '---help---' in Kconfig files with 'help' (Raju Rangoju) [1961368]
+- Crypto/chcr: Checking cra_refcnt before unregistering the algorithms (Raju Rangoju) [1961368]
+- Crypto/chcr: Calculate src and dst sg lengths separately for dma map (Raju Rangoju) [1961368]
+- Crypto/chcr: Fixes a coccinile check error (Raju Rangoju) [1961368]
+- Crypto/chcr: Fixes compilations warnings (Raju Rangoju) [1961368]
+- crypto/chcr: IPV6 code needs to be in CONFIG_IPV6 (Raju Rangoju) [1961368]
+- crypto: lib/sha1 - remove unnecessary includes of linux/cryptohash.h (Raju Rangoju) [1961368]
+- Crypto/chcr: fix for hmac(sha) test fails (Raju Rangoju) [1961368]
+- Crypto/chcr: fix for ccm(aes) failed test (Raju Rangoju) [1961368]
+- Crypto/chcr: fix ctr, cbc, xts and rfc3686-ctr failed tests (Raju Rangoju) [1961368]
+- crypto: chelsio - remove redundant assignment to variable error (Raju Rangoju) [1961368]
+- chcr: Fix CPU hard lockup (Raju Rangoju) [1961368]
+- crypto: remove CRYPTO_TFM_RES_BAD_KEY_LEN (Raju Rangoju) [1961368]
+- crypto: chelsio - switch to skcipher API (Raju Rangoju) [1961368]
+- crypto: chelsio - Remove VLA usage of skcipher (Raju Rangoju) [1961368]
+
+* Mon Aug 23 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-335.el8]
+- tracing: Fix bug in rb_per_cpu_empty() that might cause deadloop. (Chris von Recklinghausen) [1989485] {CVE-2021-3679}
+- vmlinux.lds.h: Keep .ctors.* with .ctors (Jan Stancek) [1993208]
+- spi: pxa2xx: Add support for Intel Alder Lake PCH-P (Steve Best) [1978463]
+- bnxt_en: allow promiscuous mode for trusted VFs (Jonathan Toppins) [1730616]
+- arm64: memory: Add missing brackets to untagged_addr() macro (Chris von Recklinghausen) [1955809]
+- arm64: tags: Preserve tags for addresses translated via TTBR1 (Chris von Recklinghausen) [1955809]
+- arm64: entry: Move ct_user_exit before any other exception (Chris von Recklinghausen) [1955809]
+- arm64: memory: Implement __tag_set() as common function (Chris von Recklinghausen) [1955809]
+- arm64: mm: Really fix sparse warning in untagged_addr() (Chris von Recklinghausen) [1955809]
+- arm64: untag user pointers in access_ok and __uaccess_mask_ptr (Chris von Recklinghausen) [1955809]
+- arm64/mm: fix variable 'tag' set but not used (Chris von Recklinghausen) [1955809]
+- arm64: entry: SP Alignment Fault doesn't write to FAR_EL1 (Chris von Recklinghausen) [1955809]
+- arm64: compat: Add separate CP15 trapping hook (Chris von Recklinghausen) [1955809]
+- arm64: don't restore GPRs when context tracking (Chris von Recklinghausen) [1955809]
+
+* Fri Aug 20 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-334.el8]
+- bareudp: Fix invalid read beyond skb's linear data (Guillaume Nault) [1990938]
+- perf/x86/amd: Don't touch the AMD64_EVENTSEL_HOSTONLY bit inside the guest (Michael Petlan) [1990695]
+- net: dcb: Accept RTM_GETDCB messages carrying set-like DCB commands (Balazs Nemeth) [1956825]
+- net: dcb: Validate netlink message in DCB handler (Balazs Nemeth) [1956825]
+- xfrm: Fix RCU vs hash_resize_mutex lock inversion (Sabrina Dubroca) [1988405]
+- Revert "xfrm: policy: Read seqcount outside of rcu-read side in xfrm_policy_lookup_bytype" (Sabrina Dubroca) [1988405]
+- xfrm: policy: Read seqcount outside of rcu-read side in xfrm_policy_lookup_bytype (Sabrina Dubroca) [1988405]
+- [s390] s390/AP: support new dynamic AP bus size limit (Claudio Imbrenda) [1974581]
+- net: sched: act_mirred: Reset ct info when mirror/redirect skb (Hangbin Liu) [1980532]
+- ucounts: Move max_time_namespace according to ucount_type (Alex Gladkov) [1982954]
+- perf vendor events power10: Adds 24x7 nest metric events for power10 platform (Diego Domingos) [1946650]
+- perf/core: fix backport of PERF_SAMPLE_WEIGHT_STRUCT (Diego Domingos) [1946650]
+- perf/core: Add support for PERF_SAMPLE_CODE_PAGE_SIZE (Diego Domingos) [1946650]
+- perf vendor events powerpc: Fix eventcode of power10 JSON events (Diego Domingos) [1946650]
+- perf vendor events: Initial JSON/events list for power10 platform (Diego Domingos) [1946650]
+- powerpc/perf: Fix sampled instruction type for larx/stcx (Diego Domingos) [1946650]
+- powerpc/perf: Fix the threshold event selection for memory events in power10 (Diego Domingos) [1946650]
+- perf sort: Display sort dimension p_stage_cyc only on supported archs (Diego Domingos) [1946650]
+- perf tools: Support pipeline stage cycles for powerpc (Diego Domingos) [1946650]
+- perf powerpc: Add support for PERF_SAMPLE_WEIGHT_STRUCT (Diego Domingos) [1946650]
+- perf sort: Add dynamic headers for perf report columns (Diego Domingos) [1946650]
+- powerpc/perf: Expose processor pipeline stage cycles using PERF_SAMPLE_WEIGHT_STRUCT (Diego Domingos) [1946650]
+- Documentation/admin-guide: kernel-parameters: fix "disable_ddw" wording (Diego Domingos) [1946650]
+- powerpc/perf: Support PERF_SAMPLE_DATA_PAGE_SIZE (Diego Domingos) [1946650]
+- perf/core: Add PERF_SAMPLE_DATA_PAGE_SIZE (Diego Domingos) [1946650]
+- powerpc/perf: Infrastructure to support checking of attr.config* (Diego Domingos) [1946650]
+- powerpc/perf: Add platform specific check_attr_config (Diego Domingos) [1946650]
+- ice: add support for auxiliary input/output pins (Jonathan Toppins) [1956913]
+- ice: enable transmit timestamps for E810 devices (Jonathan Toppins) [1944818]
+- ice: enable receive hardware timestamping (Jonathan Toppins) [1944818]
+- ice: report the PTP clock index in ethtool .get_ts_info (Jonathan Toppins) [1944818]
+- ice: register 1588 PTP clock device object for E810 devices (Jonathan Toppins) [1944818]
+- ice: add low level PTP clock access functions (Jonathan Toppins) [1944818]
+- ice: add support for set/get of driver-stored firmware parameters (Jonathan Toppins) [1944818]
+- ice: process 1588 PTP capabilities during initialization (Jonathan Toppins) [1944818]
+- ice: add support for sideband messages (Jonathan Toppins) [1944818]
+
+* Wed Aug 18 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-333.el8]
+- bnxt_en: Fix static checker warning in bnxt_fw_reset_task() (Jonathan Toppins) [1989274]
+- bnxt_en: Check abort error state in bnxt_half_open_nic() (Jonathan Toppins) [1989274]
+- bnxt_en: fix error path of FW reset (Jonathan Toppins) [1989274]
+- bnxt_en: Add missing check for BNXT_STATE_ABORT_ERR in bnxt_fw_rset_task() (Jonathan Toppins) [1989274]
+- bnxt_en: Refresh RoCE capabilities in bnxt_ulp_probe() (Jonathan Toppins) [1989274]
+- bnxt_en: reject ETS settings that will starve a TC (Jonathan Toppins) [1989274]
+- bnxt_en: don't disable an already disabled PCI device (Jonathan Toppins) [1989274]
+- bnxt_en: Remove the read of BNXT_FW_RESET_INPROG_REG after firmware reset. (Jonathan Toppins) [1989274]
+- i40e: Fix log TC creation failure when max num of queues is exceeded (Stefan Assmann) [1920274]
+- i40e: Fix queue-to-TC mapping on Tx (Stefan Assmann) [1920274]
+- i40e: Add additional info to PHY type error (Stefan Assmann) [1920274]
+- i40e: Fix firmware LLDP agent related warning (Stefan Assmann) [1920274]
+- i40e: Fix logic of disabling queues (Stefan Assmann) [1920274]
+- i40e: add support for PTP external synchronization clock (Stefan Assmann) [1920274]
+- i40e: improve locking of mac_filter_hash (Stefan Assmann) [1920274]
+- i40e: Fix missing rtnl locking when setting up pf switch (Stefan Assmann) [1920274]
+- i40e: fix PTP on 5Gb links (Stefan Assmann) [1920274]
+- i40e: Fix autoneg disabling for non-10GBaseT links (Stefan Assmann) [1920274]
+- i40e: Fix error handling in i40e_vsi_open (Stefan Assmann) [1920274]
+- intel: Remove rcu_read_lock() around XDP program invocation (Stefan Assmann) [1920274]
+- i40e: clean up packet type lookup table (Stefan Assmann) [1920274]
+- i40e: add correct exception tracing for XDP (Stefan Assmann) [1920274]
+- i40e: Remove LLDP frame filters (Stefan Assmann) [1920274]
+- i40e: Fix PHY type identifiers for 2.5G and 5G adapters (Stefan Assmann) [1920274]
+- i40e: Fix use-after-free in i40e_client_subtask() (Stefan Assmann) [1920274]
+- i40e: fix broken XDP support (Stefan Assmann) [1920274]
+- i40e: refactor repeated link state reporting code (Stefan Assmann) [1920274]
+- i40e: optimize for XDP_REDIRECT in xsk path (Stefan Assmann) [1920274]
+- i40e: fix the panic when running bpf in xdpdrv mode (Stefan Assmann) [1920274]
+- i40e: Fix sparse warning: missing error code 'err' (Stefan Assmann) [1920274]
+- i40e: Fix sparse error: 'vsi->netdev' could be null (Stefan Assmann) [1920274]
+- i40e: Fix sparse error: uninitialized symbol 'ring' (Stefan Assmann) [1920274]
+- i40e: Fix sparse errors in i40e_txrx.c (Stefan Assmann) [1920274]
+- i40e: Fix display statistics for veb_tc (Stefan Assmann) [1920274]
+- i40e: fix receiving of single packets in xsk zero-copy mode (Stefan Assmann) [1920274]
+- i40e: Fix inconsistent indenting (Stefan Assmann) [1920274]
+- i40e: Fix oops at i40e_rebuild() (Stefan Assmann) [1920274]
+- i40e: Fix kernel oops when i40e driver removes VF's (Stefan Assmann) [1920274]
+- i40e: Added Asym_Pause to supported link modes (Stefan Assmann) [1920274]
+- net: i40e: remove repeated words (Stefan Assmann) [1920274]
+- bpf, devmap: Move drop error path to devmap for XDP_REDIRECT (Stefan Assmann) [1920274]
+- intel: clean up mismatched header comments (Stefan Assmann) [1920274]
+- intel: Update drivers to use ethtool_sprintf (Stefan Assmann) [1920274]
+- i40e: move headroom initialization to i40e_configure_rx_ring (Stefan Assmann) [1920274]
+- i40e: Fix endianness conversions (Stefan Assmann) [1920274]
+- i40e: Fix add TC filter for IPv6 (Stefan Assmann) [1920274]
+- i40e: Fix addition of RX filters after enabling FW LLDP agent (Stefan Assmann) [1920274]
+- i40e: Fix overwriting flow control settings during driver loading (Stefan Assmann) [1920274]
+- i40e: Add zero-initialization of AQ command structures (Stefan Assmann) [1920274]
+- i40e: Fix memory leak in i40e_probe (Stefan Assmann) [1920274]
+- i40e: Fix flow for IPv6 next header (extension header) (Stefan Assmann) [1920274]
+- i40e: Fix incorrect argument in call to ipv6_addr_any() (Stefan Assmann) [1920274]
+- i40e: store the result of i40e_rx_offset() onto i40e_ring (Stefan Assmann) [1920274]
+- i40e: Simplify the do-while allocation loop (Stefan Assmann) [1920274]
+- i40e: adjust i40e_is_non_eop (Stefan Assmann) [1920274]
+- i40e: drop misleading function comments (Stefan Assmann) [1920274]
+- i40e: drop redundant check when setting xdp prog (Stefan Assmann) [1920274]
+- i40e: remove the useless value assignment in i40e_clean_adminq_subtask (Stefan Assmann) [1920274]
+- i40e: VLAN field for flow director (Stefan Assmann) [1920274]
+- i40e: Add flow director support for IPv6 (Stefan Assmann) [1920274]
+- i40e: Add EEE status getting & setting implementation (Stefan Assmann) [1920274]
+- i40e: Fix uninitialized variable mfs_max (Stefan Assmann) [1920274]
+- i40e: Add netlink callbacks support for software based DCB (Stefan Assmann) [1920274]
+- i40e: Add init and default config of software based DCB (Stefan Assmann) [1920274]
+- i40e: Add hardware configuration for software based DCB (Stefan Assmann) [1920274]
+- i40e: Log error for oversized MTU on device (Stefan Assmann) [1920274]
+- i40e: consolidate handling of XDP program actions (Stefan Assmann) [1920274]
+- i40e: remove the redundant buffer info updates (Stefan Assmann) [1920274]
+- i40e: remove unnecessary cleaned_count updates (Stefan Assmann) [1920274]
+- i40e: remove unnecessary memory writes of the next to clean pointer (Stefan Assmann) [1920274]
+- i40e: Use batched xsk Tx interfaces to increase performance (Stefan Assmann) [1920274]
+- i40e: convert to new udp_tunnel infrastructure (Stefan Assmann) [1920274]
+- netfilter: nf_tables: skip module reference count bump on object updates (Fernando Fernandez Mancera) [1944487]
+- netfilter: nf_tables: fix unexpected EOPNOTSUPP error (Fernando Fernandez Mancera) [1944487]
+- netfilter: nf_tables: Fix an Oops in nf_tables_updobj() error handling (Fernando Fernandez Mancera) [1944487]
+- netfilter: nf_tables: fix possible null-pointer dereference in object update (Fernando Fernandez Mancera) [1944487]
+- netfilter: nft_quota: add quota object update support (Fernando Fernandez Mancera) [1944487]
+- netfilter: nf_tables: Introduce stateful object update operation (Fernando Fernandez Mancera) [1944487]
+- cifs: retry lookup and readdir when EAGAIN is returned. (Ronnie Sahlberg) [1972411]
+- netfilter: nf_tables: Fix dereference of null pointer flow (Florian Westphal) [1985087]
+- netfilter: nf_tables: memleak in hw offload abort path (Florian Westphal) [1985087]
+- netfilter: nft_tproxy: restrict support to TCP and UDP transport protocols (Florian Westphal) [1985087]
+- netfilter: synproxy: Fix out of bounds when parsing TCP options (Florian Westphal) [1985087]
+- netfilter: nfnetlink_cthelper: hit EBUSY on updates if size mismatches (Florian Westphal) [1985087]
+- ipvs: ignore IP_VS_SVC_F_HASHED flag when adding service (Florian Westphal) [1985087]
+- netfilter: nftables: avoid overflows in nft_hash_buckets() (Florian Westphal) [1985087]
+- netfilter: nfnetlink_osf: Fix a missing skb_header_pointer() NULL check (Florian Westphal) [1985087]
+- netfilter: nf_tables_offload: check FLOW_DISSECTOR_KEY_BASIC in VLAN transfer logic (Florian Westphal) [1985087]
+- netfilter: nftables_offload: special ethertype handling for VLAN (Florian Westphal) [1985087]
+- netfilter: nftables_offload: VLAN id needs host byteorder in flow dissector (Florian Westphal) [1985087]
+- netfilter: nft_payload: fix C-VLAN offload support (Florian Westphal) [1985087]
+- ipvs: allow connection reuse for unconfirmed conntrack (Florian Westphal) [1985087]
+- net: fix GRO skb truesize update (Paolo Abeni) [1987391]
+- sk_buff: avoid potentially clearing 'slow_gro' field (Paolo Abeni) [1987391]
+- veth: use skb_prepare_for_gro() (Paolo Abeni) [1987391]
+- skbuff: allow 'slow_gro' for skb carring sock reference (Paolo Abeni) [1987391]
+- net: optimize GRO for the common case. (Paolo Abeni) [1987391]
+- sk_buff: track extension status in slow_gro (Paolo Abeni) [1987391]
+- sk_buff: track dst status in slow_gro (Paolo Abeni) [1987391]
+- sk_buff: introduce 'slow_gro' flags (Paolo Abeni) [1987391]
+- skbuff: Fix build with SKB extensions disabled (Paolo Abeni) [1987391]
+- skbuff: Release nfct refcount on napi stolen or re-used skbs (Paolo Abeni) [1987391]
+- selftests: net: veth: add tests for set_channel (Paolo Abeni) [1987391]
+- veth: create by default nr_possible_cpus queues (Paolo Abeni) [1987391]
+- veth: implement support for set_channel ethtool op (Paolo Abeni) [1987391]
+- veth: factor out initialization helper (Paolo Abeni) [1987391]
+- veth: always report zero combined channels (Paolo Abeni) [1987391]
+- veth: Implement ethtool's get_channelis() callback (Paolo Abeni) [1987391]
+- net: add GSO UDP L4 and GSO fraglists to the list of software-backed types (Paolo Abeni) [1987391]
+- ice: Support RSS configure removal for AVF (Jonathan Toppins) [1946726]
+- ice: Enable RSS configure for AVF (Jonathan Toppins) [1946726]
+- ice: Add helper function to get the VF's VSI (Jonathan Toppins) [1946726]
+- ice: remove redundant assignment to pointer vsi (Jonathan Toppins) [1946726]
+- ice: Advertise virtchnl UDP segmentation offload capability (Jonathan Toppins) [1946726]
+- ice: Allow ignoring opcodes on specific VF (Jonathan Toppins) [1946726]
+- ice: warn about potentially malicious VFs (Jonathan Toppins) [1946726]
+- ice: Consolidate VSI state and flags (Jonathan Toppins) [1946726]
+- ice: Refactor ice_set/get_rss into LUT and key specific functions (Jonathan Toppins) [1946726]
+- ice: Refactor get/set RSS LUT to use struct parameter (Jonathan Toppins) [1946726]
+- ice: Change ice_vsi_setup_q_map() to not depend on RSS (Jonathan Toppins) [1946726]
+- ice: Check FDIR program status for AVF (Jonathan Toppins) [1946726]
+- ice: Add more FDIR filter type for AVF (Jonathan Toppins) [1946726]
+- ice: Add GTPU FDIR filter for AVF (Jonathan Toppins) [1946726]
+- ice: Add non-IP Layer2 protocol FDIR filter for AVF (Jonathan Toppins) [1946726]
+- ice: Add new actions support for VF FDIR (Jonathan Toppins) [1946726]
+- ice: Add FDIR pattern action parser for VF (Jonathan Toppins) [1946726]
+- ice: Enable FDIR Configure for AVF (Jonathan Toppins) [1946726]
+- ice: Add support for per VF ctrl VSI enabling (Jonathan Toppins) [1946726]
+- ice: Enhanced IPv4 and IPv6 flow filter (Jonathan Toppins) [1946726]
+- ice: Support to separate GTP-U uplink and downlink (Jonathan Toppins) [1946726]
+- ice: Add more advanced protocol support in flow filter (Jonathan Toppins) [1946726]
+- ice: Support non word aligned input set field (Jonathan Toppins) [1946726]
+- ice: Add more basic protocol support for flow filter (Jonathan Toppins) [1946726]
+- sctp: move the active_key update after sh_keys is added (Xin Long) [1986966]
+- sctp: fix return value check in __sctp_rcv_asconf_lookup (Xin Long) [1986966]
+- sctp: delete addr based on sin6_scope_id (Xin Long) [1986966]
+- sctp: update active_key for asoc when old key is being replaced (Xin Long) [1986966]
+- sctp: move 198 addresses from unusable to private scope (Xin Long) [1986966]
+- sctp: add param size validation for SCTP_PARAM_SET_PRIMARY (Xin Long) [1986966]
+- sctp: validate chunk size in __rcv_asconf_lookup (Xin Long) [1986966]
+- sctp: add size validation when walking chunks (Xin Long) [1986966]
+- sctp: validate from_addr_param return (Xin Long) [1986966]
+- sctp: fix the proc_handler for sysctl encap_port (Xin Long) [1986966]
+- sctp: add the missing setting for asoc encap_port (Xin Long) [1986966]
+- sctp: fix a SCTP_MIB_CURRESTAB leak in sctp_sf_do_dupcook_b (Xin Long) [1986966]
+- sctp: Fix out-of-bounds warning in sctp_process_asconf_param() (Xin Long) [1986966]
+- sctp: Fix COMM_LOST/CANT_STR_ASSOC err reporting on big-endian platforms (Xin Long) [1986966]
+- bonding: allow nesting of bonding device (Antoine Tenart) [1989099]
+- bonding: avoid adding slave device with IFF_MASTER flag (Antoine Tenart) [1989099]
+- ice: don't remove netdev->dev_addr from uc sync list (Ken Cox) [1873969 1961018]
+- ice: Stop processing VF messages during teardown (Ken Cox) [1986451]
+- ice: Prevent probing virtual functions (Ken Cox) [1952810]
+- ima: extend boot_aggregate with kernel measurements (Bruno Meneguele) [1977422]
+- selftest/bpf: Verifier tests for var-off access (Jiri Olsa) [1960944] {CVE-2021-29155}
+- selftest/bpf: Adjust expected verifier errors (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: No need to simulate speculative domain for immediates (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Fix mask direction swap upon off reg sign change (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Wrap aux data inside bpf_sanitize_info container (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Fix pointer arithmetic mask tightening under state pruning (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Fix leakage of uninitialized bpf stack under speculation (Jiri Olsa) [1960944 1958070] {CVE-2021-29155 CVE-2021-31829}
+- bpf: Fix masking negation logic upon negative dst register (Jiri Olsa) [1960944 1958070] {CVE-2021-29155 CVE-2021-31829}
+- bpf: verifier: Allocate idmap scratch in verifier env (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Tighten speculative pointer arithmetic mask (Jiri Olsa) [1960944 1972496] {CVE-2021-29155 CVE-2021-33200}
+- bpf: Move sanitize_val_alu out of op switch (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Refactor and streamline bounds check into helper (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Allow variable-offset stack access (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Improve verifier error messages for users (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Rework ptr_limit into alu_limit and add common error path (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Ensure off_reg has no mixed signed bounds for all types (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Move off_reg into sanitize_ptr_alu (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Use correct permission flag for mixed signed bounds arithmetic (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Add sanity check for upper ptr_limit (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Simplify alu_limit masking for pointer arithmetic (Jiri Olsa) [1960944] {CVE-2021-29155}
+- bpf: Fix off-by-one for area size in creating mask to left (Jiri Olsa) [1960944] {CVE-2021-29155}
+- Documentation/x86: Add ratelimit in buslock.rst (Prarit Bhargava) [1948048]
+- Documentation/admin-guide: Add bus lock ratelimit (Prarit Bhargava) [1948048]
+- x86/bus_lock: Set rate limit for bus lock (Prarit Bhargava) [1948048]
+- Documentation/x86: Add buslock.rst (Prarit Bhargava) [1948048]
+- [s390] net/smc: Ensure correct state of the socket in send path (Claudio Imbrenda) [1731026]
+- [s390] net/smc: Fix ENODATA tests in smc_nl_get_fback_stats() (Claudio Imbrenda) [1731026]
+- [s390] net/smc: Make SMC statistics network namespace aware (Claudio Imbrenda) [1731026]
+- [s390] net/smc: Add netlink support for SMC fallback statistics (Claudio Imbrenda) [1731026]
+- [s390] net/smc: Add netlink support for SMC statistics (Claudio Imbrenda) [1731026]
+- [s390] net/smc: Add SMC statistics support (Claudio Imbrenda) [1731026]
+- [s390] s390/ap: Fix hanging ioctl caused by wrong msg counter (Claudio Imbrenda) [1984762]
+- KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow (Jon Maloy) [1988226] {CVE-2021-37576}
+- NFSv4: Fix an Oops in pnfs_mark_request_commit() when doing O_DIRECT (Benjamin Coddington) [1983793]
+- selftests/powerpc: EBB selftest for MMCR0 control for PMU SPRs in ISA v3.1 (Desnes A. Nunes do Rosario) [1991753]
+- selftests/powerpc: Fix "no_handler" EBB selftest (Desnes A. Nunes do Rosario) [1991753]
+- powerpc/perf: Fix crash in perf_instruction_pointer() when ppmu is not set (Desnes A. Nunes do Rosario) [1991753]
+- powerpc/pmu: Make the generic compat PMU use the architected events (Desnes A. Nunes do Rosario) [1991753]
+- perf script python: Fix buffer size to report iregs in perf script (Desnes A. Nunes do Rosario) [1991753]
+- ceph: reduce contention in ceph_check_delayed_caps() (Jeff Layton) [1953430]
+
+* Mon Aug 16 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-332.el8]
+- net: mac802154: Fix general protection fault (Chris von Recklinghausen) [1984571] {CVE-2021-3659}
+- Bluetooth: fix the erroneous flush_work() order (Chris von Recklinghausen) [1964559] {CVE-2021-3564}
+- Bluetooth: use correct lock to prevent UAF of hdev object (Chris von Recklinghausen) [1968214] {CVE-2021-3573}
+- usb: ehci: Prevent missed ehci interrupts with edge-triggered MSI (Torez Smith) [1972139]
+- usb: ehci: do not initialise static variables (Torez Smith) [1972139]
+- usb: host: move EH SINGLE_STEP_SET_FEATURE implementation to core (Torez Smith) [1972139]
+- USB: ehci: drop workaround for forced irq threading (Torez Smith) [1972139]
+- usb: ehci: add spurious flag to disable overcurrent checking (Torez Smith) [1972139]
+- perf test: Handle fd gaps in test__dso_data_reopen (Michael Petlan) [1871785]
+- tty: vt: always invoke vc->vc_sw->con_resize callback (Maxim Levitsky) [1957611]
+- iavf: fix locking of critical sections (Stefan Assmann) [1975245]
+- iavf: do not override the adapter state in the watchdog task (Stefan Assmann) [1975245]
+- ixgbe: Fix packet corruption due to missing DMA sync (Ken Cox) [1920269]
+- ixgbe: Fix an error handling path in 'ixgbe_probe()' (Ken Cox) [1920269]
+- intel: Remove rcu_read_lock() around XDP program invocation (Ken Cox) [1920269]
+- ixgbe: add correct exception tracing for XDP (Ken Cox) [1920269]
+- ixgbe: Fix out-bounds warning in ixgbe_host_interface_command() (Ken Cox) [1920269]
+- ixgbe: reduce checker warnings (Ken Cox) [1920269]
+- ixgbe: use checker safe conversions (Ken Cox) [1920269]
+- ixgbe: fix large MTU request from VF (Ken Cox) [1920269]
+- net: ethernet: intel: Fix a typo in the file ixgbe_dcb_nl.c (Ken Cox) [1920269]
+- net: intel: Remove unused function pointer typedef ixgbe_mc_addr_itr (Ken Cox) [1920269]
+- ixgbe: Support external GBE SerDes PHY BCM54616s (Ken Cox) [1920269]
+- ixgbe: fix unbalanced device enable/disable in suspend/resume (Ken Cox) [1920269]
+- ixgbe: Fix NULL pointer dereference in ethtool loopback test (Ken Cox) [1920269]
+- ixgbe: Fix fall-through warnings for Clang (Ken Cox) [1920269]
+- intel: clean up mismatched header comments (Ken Cox) [1920269]
+- bpf, devmap: Move drop error path to devmap for XDP_REDIRECT (Ken Cox) [1920269]
+- intel: Update drivers to use ethtool_sprintf (Ken Cox) [1920269]
+- ixgbe: optimize for XDP_REDIRECT in xsk path (Ken Cox) [1920269]
+- ixgbe: move headroom initialization to ixgbe_configure_rx_ring (Ken Cox) [1920269]
+- ixgbe: Fix memleak in ixgbe_configure_clsu32 (Ken Cox) [1920269]
+- ixgbe: fail to create xfrm offload of IPsec tunnel mode SA (Ken Cox) [1920269]
+- ixgbe: store the result of ixgbe_rx_offset() onto ixgbe_ring (Ken Cox) [1920269]
+- net: ixgbe: use skb_csum_is_sctp instead of protocol check (Ken Cox) [1920269]
+- ixgbe: avoid premature Rx buffer reuse (Ken Cox) [1920269]
+- net: remove unneeded break (Ken Cox) [1920269]
+- ixgbe: add pause frame stats (Ken Cox) [1920269]
+- iavf: Set RSS LUT and key in reset handle path (Ken Cox) [1910853]
+- [netdrv] chelsio: Replace zero-length array with flexible-array member (Raju Rangoju) [1955208]
+- cxgb4: avoid collecting SGE_QBASE regs during traffic (Raju Rangoju) [1955208]
+- cxgb4: collect serial config version from register (Raju Rangoju) [1955208]
+- cxgb4: remove unused vpd_cap_addr (Raju Rangoju) [1955208]
+- cxgb4: remove bogus CHELSIO_VPD_UNIQUE_ID constant (Raju Rangoju) [1955208]
+- cxgb4: Assign boolean values to a bool variable (Raju Rangoju) [1955208]
+- cxgb4: enable interrupt based Tx completions for T5 (Raju Rangoju) [1955208]
+- cxgb4: fix the panic caused by non smac rewrite (Raju Rangoju) [1955208]
+- cxgb4: Fix the -Wmisleading-indentation warning (Raju Rangoju) [1955208]
+- cxgb4: set up filter action after rewrites (Raju Rangoju) [1955208]
+- cxgb4: handle 4-tuple PEDIT to NAT mode translation (Raju Rangoju) [1955208]
+- [netdrv] net: rename flow_action_hw_stats_types* -> flow_action_hw_stats* (Raju Rangoju) [1955208]
+- net: cxbg4: Remove pointless in_interrupt() check (Raju Rangoju) [1955208]
+- cxgb4: Avoid log flood (Raju Rangoju) [1955208]
+- cxgb4: fix memory leak during module unload (Raju Rangoju) [1955208]
+- cxgb4: Fix offset when clearing filter byte counters (Raju Rangoju) [1955208]
+- cxgb4: add error handlers to LE intr_handler (Raju Rangoju) [1955208]
+- cxgb4: insert IPv6 filter rules in next free region (Raju Rangoju) [1955208]
+- cxgb4: Fix race between loopback and normal Tx path (Raju Rangoju) [1955208]
+- cxgb4: Fix work request size calculation for loopback test (Raju Rangoju) [1955208]
+- cxgb4: add TC-MATCHALL IPv6 support (Raju Rangoju) [1955208]
+- cxgb4: fix extracting IP addresses in TC-FLOWER rules (Raju Rangoju) [1955208]
+- cxgb4: fix check for running offline ethtool selftest (Raju Rangoju) [1955208]
+- cxgb4: add loopback ethtool self-test (Raju Rangoju) [1955208]
+- net: cxgb4: reject unsupported coalescing params (Raju Rangoju) [1955208]
+- cxgb4: use eth_zero_addr() to clear mac address (Raju Rangoju) [1955208]
+- cxgb4: add missing release on skb in uld_send() (Raju Rangoju) [1955208]
+- cxgb4: convert to new udp_tunnel_nic infra (Raju Rangoju) [1955208]
+- cxgb4: fix all-mask IP address comparison (Raju Rangoju) [1955208]
+- cxgb4: add main VI to mirror VI config replication (Raju Rangoju) [1955208]
+- cxgb4: add support for mirror Rxqs (Raju Rangoju) [1955208]
+- cxgb4: add mirror action to TC-MATCHALL offload (Raju Rangoju) [1955208]
+- net: cxgb4: fix return error value in t4_prep_fw (Raju Rangoju) [1955208]
+- cxgb4: move device dump arrays in header to C file (Raju Rangoju) [1955208]
+- cxgb4: always sync access when flashing PHY firmware (Raju Rangoju) [1955208]
+- cxgb4: update kernel-doc line comments (Raju Rangoju) [1955208]
+- cxgb4: fix set but unused variable when DCB is disabled (Raju Rangoju) [1955208]
+- cxgb4: move DCB version extern to header file (Raju Rangoju) [1955208]
+- cxgb4: remove cast when saving IPv4 partial checksum (Raju Rangoju) [1955208]
+- cxgb4: fix SGE queue dump destination buffer context (Raju Rangoju) [1955208]
+- cxgb4: use correct type for all-mask IP address comparison (Raju Rangoju) [1955208]
+- cxgb4: fix endian conversions for L4 ports in filters (Raju Rangoju) [1955208]
+- cxgb4: parse TC-U32 key values and masks natively (Raju Rangoju) [1955208]
+- cxgb4: use unaligned conversion for fetching timestamp (Raju Rangoju) [1955208]
+- cxgb4: move PTP lock and unlock to caller in Tx path (Raju Rangoju) [1955208]
+- cxgb4: move handling L2T ARP failures to caller (Raju Rangoju) [1955208]
+- cxgb4: Use struct_size() helper (Raju Rangoju) [1955208]
+- cxgb4: add action to steer flows to specific Rxq (Raju Rangoju) [1955208]
+- cxgb4: add support to fetch ethtool n-tuple filters (Raju Rangoju) [1955208]
+- cxgb4: add ethtool n-tuple filter deletion (Raju Rangoju) [1955208]
+- cxgb4: add ethtool n-tuple filter insertion (Raju Rangoju) [1955208]
+- [netdrv] flow_offload: check for basic action hw stats type (Raju Rangoju) [1955208]
+- cxgb4: add skeleton for ethtool n-tuple filters (Raju Rangoju) [1955208]
+- cxgb4: add support to read serial flash (Raju Rangoju) [1955208]
+- cxgb4: add support to flash boot cfg image (Raju Rangoju) [1955208]
+- cxgb4: add support to flash boot image (Raju Rangoju) [1955208]
+- cxgb4: add support to flash PHY image (Raju Rangoju) [1955208]
+- cxgb4: update set_flash to flash different images (Raju Rangoju) [1955208]
+- cxgb4: Use kfree() instead kvfree() where appropriate (Raju Rangoju) [1955208]
+- cxgb4: Use pM format specifier for MAC addresses (Raju Rangoju) [1955208]
+- net: sock: fix in-kernel mark setting (Alexander Aring) [1509204]
+- sock: Reset dst when changing sk_mark via setsockopt (Alexander Aring) [1509204]
+- fs: dlm: fix mark setting deadlock (Alexander Aring) [1509204]
+- fs: dlm: fix mark per nodeid setting (Alexander Aring) [1509204]
+- fs: dlm: remove lock dependency warning (Alexander Aring) [1509204]
+- fs: dlm: set skb mark per peer socket (Alexander Aring) [1509204]
+- fs: dlm: set skb mark for listen socket (Alexander Aring) [1509204]
+- net: sock: add sock_set_mark (Alexander Aring) [1509204]
+- Bluetooth: btusb: Add support for GarfieldPeak controller (Gopal Tiwari) [1959110]
+- can: gw: synchronize rcu operations before removing gw job entry (Balazs Nemeth) [1986334]
+- can: bcm: fix infoleak in struct bcm_msg_head (Balazs Nemeth) [1986334]
+- can: af_can: prevent potential access of uninitialized member in canfd_rcv() (Balazs Nemeth) [1956730]
+- can: af_can: prevent potential access of uninitialized member in can_rcv() (Balazs Nemeth) [1956730]
+- can: proc: can_remove_proc(): silence remove_proc_entry warning (Balazs Nemeth) [1956730]
+- cifs: add missing parsing of backupuid (Ronnie Sahlberg) [1987126]
+- cifs: use helpers when parsing uid/gid mount options and validate them (Ronnie Sahlberg) [1987126]
+- kernfs: dont call d_splice_alias() under kernfs node lock (Ian Kent) [1939133]
+- kernfs: use i_lock to protect concurrent inode updates (Ian Kent) [1939133]
+- kernfs: switch kernfs to use an rwsem (Ian Kent) [1939133]
+- kernfs: use VFS negative dentry caching (Ian Kent) [1939133]
+- kernfs: add a revision to identify directory node changes (Ian Kent) [1939133]
+- kernfs: move revalidate to be near lookup (Ian Kent) [1939133]
+
+* Thu Aug 12 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-331.el8]
+- mlxsw: spectrum_mr: Update egress RIF list before route's action (Ivan Vecera) [1941938]
+- selftests: mlxsw: Fix mausezahn invocation in ERSPAN scale test (Ivan Vecera) [1941938]
+- selftests: mlxsw: Increase the tolerance of backlog buildup (Ivan Vecera) [1941938]
+- selftests: mlxsw: Return correct error code in resource scale tests (Ivan Vecera) [1941938]
+- selftests: mlxsw: Remove a redundant if statement in tc_flower_scale test (Ivan Vecera) [1941938]
+- selftests: mlxsw: Remove a redundant if statement in port_scale test (Ivan Vecera) [1941938]
+- selftests: mlxsw: sch_red_ets: Test proper counter cleaning in ETS (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Index future FIFOs by band number (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Allocate child qdiscs dynamically (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Guard all qdisc accesses with a lock (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Track children per qdisc (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Promote backlog reduction to mlxsw_sp_qdisc_destroy() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Track tclass_num as int, not u8 (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Drop an always-true condition (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Simplify mlxsw_sp_qdisc_compare() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_qdisc: Drop one argument from check_params callback (Ivan Vecera) [1941938]
+- mlxsw: core: Remove critical trip points from thermal zones (Ivan Vecera) [1941938]
+- selftests: mlxsw: Test vetoing of double sampling (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Veto sampling if already enabled on port (Ivan Vecera) [1941938]
+- selftests: mlxsw: Test matchall failure with protocol match (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Perform priority checks earlier (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Convert if statements to a switch statement (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Perform protocol check earlier (Ivan Vecera) [1941938]
+- selftests: forwarding: vxlan_bridge_1d: Add more ECN decap test cases (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Fix ECN marking in tunnel decapsulation (Ivan Vecera) [1941938]
+- selftests: net: forwarding: Fix a typo (Ivan Vecera) [1941938]
+- selftests: mlxsw: spectrum-2: Remove q_in_vni_veto test (Ivan Vecera) [1941938]
+- selftests: forwarding: Add test for dual VxLAN bridge (Ivan Vecera) [1941938]
+- mlxsw: Allow 802.1d and .1ad VxLAN bridges to coexist on Spectrum>=2 (Ivan Vecera) [1941938]
+- mlxsw: Add struct mlxsw_sp_switchdev_ops per ASIC (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Add mlxsw_sp_port_egress_ethtype_set() (Ivan Vecera) [1941938]
+- mlxsw: reg: Add Switch Port Egress VLAN EtherType Register (Ivan Vecera) [1941938]
+- mlxsw: reg: Add egr_et_set field to SPVID (Ivan Vecera) [1941938]
+- selftests: mlxsw: Test egress sampling limitation on Spectrum-1 only (Ivan Vecera) [1941938]
+- selftests: mlxsw: Add tc sample tests for new triggers (Ivan Vecera) [1941938]
+- mlxsw: spectrum_acl: Offload FLOW_ACTION_SAMPLE (Ivan Vecera) [1941938]
+- mlxsw: core_acl_flex_actions: Add mirror sampler action (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Add support for egress sampling (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Start using sampling triggers hash table (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Track sampling triggers in a hash table (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Pass matchall entry to sampling operations (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Push sampling checks to per-ASIC operations (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Propagate extack further (Ivan Vecera) [1941938]
+- selftests: mlxsw: Add tc sample tests (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Report extra metadata to psample module (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Remove mlxsw_sp_sample_receive() (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Remove unnecessary RCU read-side critical section (Ivan Vecera) [1941938]
+- mlxsw: pci: Set extra metadata in skb control block (Ivan Vecera) [1941938]
+- mlxsw: Create dedicated field for Rx metadata in skb control block (Ivan Vecera) [1941938]
+- mlxsw: pci: Add more metadata fields to CQEv2 (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Implement sampling using mirroring (Ivan Vecera) [1941938]
+- mlxsw: spectrum_trap: Split sampling traps between ASICs (Ivan Vecera) [1941938]
+- mlxsw: spectrum_matchall: Split sampling support between ASICs (Ivan Vecera) [1941938]
+- mlxsw: spectrum_span: Add SPAN probability rate support (Ivan Vecera) [1941938]
+- mlxsw: reg: Extend mirroring registers with probability rate field (Ivan Vecera) [1941938]
+- mlxsw: spectrum_span: Add SPAN session identifier support (Ivan Vecera) [1941938]
+- mlxsw: Adjust some MFDE fields shift and size to fw implementation (Ivan Vecera) [1941938]
+- mlxsw: core: Expose MFDE.log_ip to devlink health (Ivan Vecera) [1941938]
+- mlxsw: reg: Extend MFDE register with new log_ip field (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Bump minimum FW version to xx.2008.2406 (Ivan Vecera) [1941938]
+- mlxsw: reg: Fix comment about slot_index field in PMAOS register (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Reword an error message for Q-in-Q veto (Ivan Vecera) [1941938]
+- mlxsw: spectrum_ethtool: Add an external speed to PTYS register (Ivan Vecera) [1941938]
+- mlxsw: spectrum_span: Do not overwrite policer configuration (Ivan Vecera) [1941938]
+- selftests: forwarding: Specify interface when invoking mausezahn (Ivan Vecera) [1941938]
+- selftests: mlxsw: Add a scale test for physical ports (Ivan Vecera) [1941938]
+- mlxsw: Register physical ports as a devlink resource (Ivan Vecera) [1941938]
+- mlxsw: pci: switch from 'pci_' to 'dma_' API (Ivan Vecera) [1941938]
+- mlxsw: core: Increase critical threshold for ASIC thermal zone (Ivan Vecera) [1941938]
+- mlxsw: core: Add validation of transceiver temperature thresholds (Ivan Vecera) [1941938]
+- selftests: mlxsw: Set headroom size of correct port (Ivan Vecera) [1941938]
+- net/mlxfw: Use kzalloc for allocating only one thing (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Use eXtended mezzanine to offload IPv4 router (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Set KVH XLT cache mode for Spectrum2/3 (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router_xm: Introduce basic XM cache flushing (Ivan Vecera) [1941938]
+- mlxsw: reg: Add Router LPM Cache Enable Register (Ivan Vecera) [1941938]
+- mlxsw: reg: Add Router LPM Cache ML Delete Register (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router_xm: Implement L-value tracking for M-index (Ivan Vecera) [1941938]
+- mlxsw: reg: Add XM Router M Table Register (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Introduce per-ASIC XM initialization (Ivan Vecera) [1941938]
+- mlxsw: reg: Add XM Lookup Table Query Register (Ivan Vecera) [1941938]
+- mlxsw: reg: Add Router XLT M select Register (Ivan Vecera) [1941938]
+- mlxsw: Ignore ports that are connected to eXtended mezanine (Ivan Vecera) [1941938]
+- mlxsw: pci: Obtain info about ports used by eXtended mezanine (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Introduce XM implementation of router low-level ops (Ivan Vecera) [1941938]
+- mlxsw: reg: Add Router XLT Enable Register (Ivan Vecera) [1941938]
+- mlxsw: reg: Add XM Direct Register (Ivan Vecera) [1941938]
+- selftests: mlxsw: Add Q-in-VNI veto tests (Ivan Vecera) [1941938]
+- selftests: forwarding: Add Q-in-VNI test (Ivan Vecera) [1941938]
+- mlxsw: spectrum_switchdev: Allow joining VxLAN to 802.1ad bridge (Ivan Vecera) [1941938]
+- mlxsw: Veto Q-in-VNI for Spectrum-1 ASIC (Ivan Vecera) [1941938]
+- mlxsw: spectrum_switchdev: Use ops->vxlan_join() when adding VLAN to VxLAN device (Ivan Vecera) [1941938]
+- mlxsw: spectrum_nve_vxlan: Add support for Q-in-VNI for Spectrum-2 ASIC (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Publish mlxsw_sp_ethtype_to_sver_type() (Ivan Vecera) [1941938]
+- mlxsw: Save EtherType as part of mlxsw_sp_nve_config (Ivan Vecera) [1941938]
+- mlxsw: Save EtherType as part of mlxsw_sp_nve_params (Ivan Vecera) [1941938]
+- mlxsw: spectrum_switchdev: Create common function for joining VxLAN to VLAN-aware bridge (Ivan Vecera) [1941938]
+- mlxsw: reg: Add support for tunnel port in SPVID register (Ivan Vecera) [1941938]
+- mlxsw: reg: Add Switch Port VLAN Stacking Register (Ivan Vecera) [1941938]
+- mlxsw: Use one enum for all registers that contain tunnel_port field (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Reduce mlxsw_sp_ipip_fib_entry_op_gre4() (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Bump minimum FW version to xx.2008.2018 (Ivan Vecera) [1941938]
+- mlxsw: core_acl: Use an array instead of a struct with a zero-length array (Ivan Vecera) [1941938]
+- mlxsw: spectrum_mr: Use flexible-array member instead of zero-length array (Ivan Vecera) [1941938]
+- mlxsw: core: Trace EMAD events (Ivan Vecera) [1941938]
+- selftests: mlxsw: Test RIF's reference count when joining a LAG (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Apply RIF configuration when joining a LAG (Ivan Vecera) [1941938]
+- selftests: forwarding: Add QinQ veto testing (Ivan Vecera) [1941938]
+- mlxsw: Add QinQ configuration vetoes (Ivan Vecera) [1941938]
+- mlxsw: spectrum_switchdev: Add support of QinQ traffic (Ivan Vecera) [1941938]
+- mlxsw: spectrum_switchdev: Create common functions for VLAN-aware bridge (Ivan Vecera) [1941938]
+- mlxsw: Make EtherType configurable when pushing VLAN at ingress (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Only treat 802.1q packets as tagged packets (Ivan Vecera) [1941938]
+- mlxsw: reg: Add et_vlan field to SPVID register (Ivan Vecera) [1941938]
+- mlxsw: reg: Add Switch Port VLAN Classification Register (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Update adjacency index more efficiently (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Track nexthop group virtual router membership (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Rollback virtual router adjacency pointer update (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Pass virtual router parameters directly instead of pointer (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Fix error handling issue (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Resolve RIF from nexthop struct instead of neighbour (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Use loopback RIF for unresolved nexthops (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Use different trap identifier for unresolved nexthops (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Create loopback RIF during initialization (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Allow returning errors from mlxsw_sp_nexthop_group_refresh() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Add an indication if a nexthop group can be destroyed (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Re-order mlxsw_sp_nexthop6_group_get() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Set FIB entry's type based on nexthop group (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Set FIB entry's type after creating nexthop group (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Pass ifindex to mlxsw_sp_ipip_entry_find_by_decap() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Set ifindex for IPv4 nexthops (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Fix wrong kfree() in error path (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Remove outdated comment (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Consolidate mlxsw_sp_nexthop{4, 6}_type_fini() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Consolidate mlxsw_sp_nexthop{4, 6}_type_init() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Remove unused argument from mlxsw_sp_nexthop6_type_init() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Pass nexthop netdev to mlxsw_sp_nexthop4_type_init() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Pass nexthop netdev to mlxsw_sp_nexthop6_type_init() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_ipip: Remove overlay protocol from can_offload() callback (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Split nexthop group configuration to a different struct (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Move IPv4 FIB info into a union in nexthop group struct (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Remove unused field 'prio' from IPv4 FIB entry struct (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Store FIB info in route (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Associate neighbour table with nexthop instead of group (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Use nexthop group type in hash table key (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Add nexthop group type field (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Compare key with correct object type (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Introduce FIB entry update op (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Track FIB entry committed state and skip uncommitted on delete (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Introduce fib_entry priv for low-level ops (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Have FIB entry op context allocated for the instance (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Prepare work context for possible bulking (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Push RALUE packing and writing into low-level router ops (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Use RALUE pack helper from abort function (Ivan Vecera) [1941938]
+- mlxsw: reg: Allow to pass NULL pointer to mlxsw_reg_ralue_pack4/6() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Pass destination IP as a pointer to mlxsw_reg_ralue_pack4() (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Export RALUE pack helper and use it from IPIP (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Push out RALUE pack into separate helper (Ivan Vecera) [1941938]
+- mlxsw: spectrum: Propagate context from work handler containing RALUE payload (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Introduce FIB event queue instead of separate works (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Use RALUE-independent op arg (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Pass non-register proto enum to __mlxsw_sp_router_set_abort_trap() (Ivan Vecera) [1941938]
+- mlxsw: spectrum_router: Introduce low-level ops and implement them for RALXX regs (Ivan Vecera) [1941938]
+- mlxsw: reg: Add XRALXX Registers (Ivan Vecera) [1941938]
+- hwmon: (mlxreg-fan) Add support for fan drawers capability and present registers (Ivan Vecera) [1941938]
+- i2c: mux: mlxcpld: Add callback to notify mux creation completion (Ivan Vecera) [1941938]
+- i2c: mux: mlxcpld: Extend supported mux number (Ivan Vecera) [1941938]
+- i2c: mux: mlxcpld: Extend driver to support word address space devices (Ivan Vecera) [1941938]
+- i2c: mux: mlxcpld: Get rid of adapter numbers enforcement (Ivan Vecera) [1941938]
+- i2c: mux: mlxcpld: Prepare mux selection infrastructure for two-byte support (Ivan Vecera) [1941938]
+- i2c: mux: mlxcpld: Convert driver to platform driver (Ivan Vecera) [1941938]
+- i2c: mux: mlxcpld: Move header file out of x86 realm (Ivan Vecera) [1941938]
+- platform/x86: mlxcpld: Update module license (Ivan Vecera) [1941938]
+- i2c: mux: mlxcpld: Update module license (Ivan Vecera) [1941938]
+- i2c: mlxcpld: Add support for I2C bus frequency setting (Ivan Vecera) [1941938]
+- i2c: mlxcpld: Decrease polling time for performance improvement (Ivan Vecera) [1941938]
+- i2c: mlxcpld: Update module license (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Fix item counter assignment for MSN2700/ComEx system (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Fix item counter assignment for MSN2700, MSN24xx systems (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: remove an unused variable (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Remove PSU EEPROM from MSN274x platform configuration (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Remove PSU EEPROM from default platform configuration (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Add capability field to platform FAN description (Ivan Vecera) [1941938]
+- platform_data/mlxreg: Extend core platform structure (Ivan Vecera) [1941938]
+- platform_data/mlxreg: Update module license (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Fix extended topology configuration for power supply units (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Remove PSU EEPROM configuration (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Extend FAN platform data description (Ivan Vecera) [1941938]
+- platform_data/mlxreg: Add presence register field for FAN devices (Ivan Vecera) [1941938]
+- Documentation/ABI: Add new attribute for mlxreg-io sysfs interfaces (Ivan Vecera) [1941938]
+- platform/mellanox: mlxreg-io: Add support for complex attributes (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: Add more definitions for system attributes (Ivan Vecera) [1941938]
+- platform_data/mlxreg: Add support for complex attributes (Ivan Vecera) [1941938]
+- platform/mellanox: mlxreg-hotplug: Add environmental data to uevent (Ivan Vecera) [1941938]
+- platform/mellanox: mlxreg-hotplug: Use capability register for attribute creation (Ivan Vecera) [1941938]
+- platform/mellanox: mlxreg-hotplug: Modify module license (Ivan Vecera) [1941938]
+- lib/string_helpers: Introduce string_upper() and string_lower() helpers (Ivan Vecera) [1941938]
+- i2c: mlxcpld: check correct size of maximum RECV_LEN packet (Ivan Vecera) [1941938]
+- docs: watchdog: mlx-wdt: Add description of new watchdog type 3 (Ivan Vecera) [1941938]
+- watchdog: mlx-wdt: support new watchdog type with longer timeout period (Ivan Vecera) [1941938]
+- platform/x86: mlx-platform: support new watchdog type with longer timeout (Ivan Vecera) [1941938]
+- platform_data/mlxreg: support new watchdog type with longer timeout period (Ivan Vecera) [1941938]
+- platform/mellanox: mlxreg-hotplug: convert to use i2c_new_client_device() (Ivan Vecera) [1941938]
+- selftests: icmp_redirect: IPv6 PMTU info should be cleared after redirect (Hangbin Liu) [1986227]
+- selftests: icmp_redirect: remove from checking for IPv6 route get (Hangbin Liu) [1986227]
+- selftests: icmp_redirect: support expected failures (Hangbin Liu) [1986227]
+- selftests: disable rp_filter for icmp_redirect.sh (Hangbin Liu) [1986227]
+- selftests: icmp_redirect: Add support for routing via nexthop objects (Hangbin Liu) [1986227]
+- selftest: Fixes for icmp_redirect test (Hangbin Liu) [1986227]
+- selftests: Add redirect tests (Hangbin Liu) [1986227]
+- redhat: enable vdpa_sim_net vdpa_sim_block vp_vdpa (Cindy Lu) [1975173]
+- virtio/vdpa: clear the virtqueue state during probe (Cindy Lu) [1975173]
+- vp_vdpa: allow set vq state to initial state after reset (Cindy Lu) [1975173]
+- virtio-pci library: introduce vp_modern_get_driver_features() (Cindy Lu) [1975173]
+- vdpa: support packed virtqueue for set/get_vq_state() (Cindy Lu) [1975173]
+- vdpa/mlx5: Clear vq ready indication upon device reset (Cindy Lu) [1975173]
+- vdpa/mlx5: Add support for doorbell bypassing (Cindy Lu) [1975173]
+- vdpa/mlx5: Add support for running with virtio_vdpa (Cindy Lu) [1975173]
+- vdp/mlx5: Fix setting the correct dma_device (Cindy Lu) [1975173]
+- vdpa/mlx5: Support creating resources with uid == 0 (Cindy Lu) [1975173]
+- vdpa/mlx5: Fix possible failure in umem size calculation (Cindy Lu) [1975173]
+- vdpa/mlx5: Fix umem sizes assignments on VQ create (Cindy Lu) [1975173]
+- vp_vdpa: correct the return value when fail to map notification (Cindy Lu) [1975173]
+- virtio_net: Fix error handling in virtnet_restore() (Cindy Lu) [1975173]
+- virtio-blk: Fix memory leak among suspend/resume procedure (Cindy Lu) [1975173]
+- vDPA/ifcvf: reuse pre-defined macros for device ids and vendor ids (Cindy Lu) [1975173]
+- virtio: update virtio id table, add transitional ids (Cindy Lu) [1975173]
+- vDPA/ifcvf: implement doorbell mapping for ifcvf (Cindy Lu) [1975173]
+- vDPA/ifcvf: record virtio notify base (Cindy Lu) [1975173]
+- vdpa_sim_blk: remove duplicate include of linux/blkdev.h (Cindy Lu) [1975173]
+- {net,vdpa}/mlx5: Configure interface MAC into mpfs L2 table (Cindy Lu) [1975173]
+- virtio_pci_modern: correct sparse tags for notify (Cindy Lu) [1975173]
+- virtio_pci_modern: __force cast the notify mapping (Cindy Lu) [1975173]
+- vDPA/ifcvf: get_config_size should return dev specific config size (Cindy Lu) [1975173]
+- vDPA/ifcvf: enable Intel C5000X-PL virtio-block for vDPA (Cindy Lu) [1975173]
+- vDPA/ifcvf: deduce VIRTIO device ID when probe (Cindy Lu) [1975173]
+- vdpa_sim_blk: add support for vdpa management tool (Cindy Lu) [1975173]
+- vdpa_sim_blk: handle VIRTIO_BLK_T_GET_ID (Cindy Lu) [1975173]
+- vdpa_sim_blk: implement ramdisk behaviour (Cindy Lu) [1975173]
+- vdpa: add vdpa simulator for block device (Cindy Lu) [1975173]
+- vhost/vdpa: Remove the restriction that only supports virtio-net devices (Cindy Lu) [1975173]
+- vhost/vdpa: use get_config_size callback in vhost_vdpa_config_validate() (Cindy Lu) [1975173]
+- vdpa: add get_config_size callback in vdpa_config_ops (Cindy Lu) [1975173]
+- vdpa_sim: cleanup kiovs in vdpasim_free() (Cindy Lu) [1975173]
+- vringh: add vringh_kiov_length() helper (Cindy Lu) [1975173]
+- vringh: implement vringh_kiov_advance() (Cindy Lu) [1975173]
+- vringh: explain more about cleaning riov and wiov (Cindy Lu) [1975173]
+- vringh: reset kiov 'consumed' field in __vringh_iov() (Cindy Lu) [1975173]
+- vringh: add 'iotlb_lock' to synchronize iotlb accesses (Cindy Lu) [1975173]
+- vdpa_sim: use iova module to allocate IOVA addresses (Cindy Lu) [1975173]
+- vDPA/ifcvf: deduce VIRTIO device ID from pdev ids (Cindy Lu) [1975173]
+- vDPA/ifcvf: verify mandatory feature bits for vDPA (Cindy Lu) [1975173]
+- vDPA/ifcvf: fetch device feature bits when probe (Cindy Lu) [1975173]
+- vDPA/ifcvf: remove the version number string (Cindy Lu) [1975173]
+- vDPA/ifcvf: rename original IFCVF dev ids to N3000 ids (Cindy Lu) [1975173]
+- vDPA/ifcvf: enable Intel C5000X-PL virtio-net for vDPA (Cindy Lu) [1975173]
+- vDPA/ifcvf: get_vendor_id returns a device specific vendor id (Cindy Lu) [1975173]
+- vhost-vdpa: fix vm_flags for virtqueue doorbell mapping (Cindy Lu) [1975173]
+- vp_vdpa: report doorbell address (Cindy Lu) [1975173]
+- virtio-pci library: report resource address (Cindy Lu) [1975173]
+- virito_pci libray: hide vp_modern_map_capability() (Cindy Lu) [1975173]
+- virtio_pci_modern: hide vp_modern_get_queue_notify_off() (Cindy Lu) [1975173]
+- vp_vdpa: switch to use vp_modern_map_vq_notify() (Cindy Lu) [1975173]
+- virtio-pci library: switch to use vp_modern_map_vq_notify() (Cindy Lu) [1975173]
+- virtio_pci_modern: introduce helper to map vq notify area (Cindy Lu) [1975173]
+- virtio-net: don't allocate control_buf if not supported (Cindy Lu) [1975173]
+- vdpa: Follow kdoc comment style (Cindy Lu) [1975173]
+- vdpa: Follow kdoc comment style (Cindy Lu) [1975173]
+- vdpa/mlx5: Enable user to add/delete vdpa device (Cindy Lu) [1975173]
+- vdpa: introduce virtio pci driver (Cindy Lu) [1975173]
+- vdpa/mlx5: Set err = -ENOMEM in case dma_map_sg_attrs fails (Cindy Lu) [1975173]
+- vhost-vdpa: protect concurrent access to vhost device iotlb (Cindy Lu) [1975173]
+- vdpa/mlx5: Fix suspend/resume index restoration (Cindy Lu) [1975173]
+- vdpa/mlx5: Fix wrong use of bit numbers (Cindy Lu) [1975173]
+- vdpa/mlx5: should exclude header length and fcs from mtu (Cindy Lu) [1975173]
+- vhost-vdpa: set v->config_ctx to NULL if eventfd_ctx_fdget() fails (Cindy Lu) [1975173]
+- vhost-vdpa: fix use-after-free of v->config_ctx (Cindy Lu) [1975173]
+- vhost_vdpa: fix the missing irq_bypass_unregister_producer() invocation (Cindy Lu) [1975173]
+- vdpa_sim: Skip typecasting from void* (Cindy Lu) [1975173]
+- vdpa: set the virtqueue num during register (Cindy Lu) [1975173]
+- vdpa/mlx5: fix param validation in mlx5_vdpa_get_config() (Cindy Lu) [1975173]
+- virtio_vdpa: don't warn when fail to disable vq (Cindy Lu) [1975173]
+- virtio-pci: introduce modern device module (Cindy Lu) [1975173]
+- virito-pci-modern: rename map_capability() to vp_modern_map_capability() (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce helper to get notification offset (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce helper for getting queue nums (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce helper for setting/geting queue size (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce helper to set/get queue_enable (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce vp_modern_queue_address() (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce vp_modern_set_queue_vector() (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce vp_modern_generation() (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce helpers for setting and getting features (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce helpers for setting and getting status (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce helper to set config vector (Cindy Lu) [1975173]
+- virtio-pci-modern: introduce vp_modern_remove() (Cindy Lu) [1975173]
+- virtio-pci-modern: factor out modern device initialization logic (Cindy Lu) [1975173]
+- virtio-pci: split out modern device (Cindy Lu) [1975173]
+- virtio-pci: do not access iomem via struct virtio_pci_device directly (Cindy Lu) [1975173]
+- vdpa_sim_net: Add support for user supported devices (Cindy Lu) [1975173]
+- vdpa: Enable user to query vdpa device info (Cindy Lu) [1975173]
+- vdpa: Enable a user to add and delete a vdpa device (Cindy Lu) [1975173]
+- vdpa: Define vdpa mgmt device, ops and a netlink interface (Cindy Lu) [1975173]
+- vdpa: Extend routine to accept vdpa device name (Cindy Lu) [1975173]
+- vdpa_sim_net: Make mac address array static (Cindy Lu) [1975173]
+- vdpa/mlx5: Restore the hardware used index after change map (Cindy Lu) [1975173]
+- vdpa/mlx5: Fix memory key MTT population (Cindy Lu) [1975173]
+- vdpa: Use simpler version of ida allocation (Cindy Lu) [1975173]
+- vdpa: Add missing comment for virtqueue count (Cindy Lu) [1975173]
+- vdpa: split vdpasim to core and net modules (Cindy Lu) [1975173]
+- vdpa_sim: split vdpasim_virtqueue's iov field in out_iov and in_iov (Cindy Lu) [1975173]
+- vdpa_sim: make vdpasim->buffer size configurable (Cindy Lu) [1975173]
+- vdpa_sim: use kvmalloc to allocate vdpasim->buffer (Cindy Lu) [1975173]
+- vdpa_sim: set vringh notify callback (Cindy Lu) [1975173]
+- vdpa_sim: add set_config callback in vdpasim_dev_attr (Cindy Lu) [1975173]
+- vdpa_sim: add get_config callback in vdpasim_dev_attr (Cindy Lu) [1975173]
+- vdpa_sim: make 'config' generic and usable for any device type (Cindy Lu) [1975173]
+- vdpa_sim: store parsed MAC address in a buffer (Cindy Lu) [1975173]
+- vdpa_sim: add work_fn in vdpasim_dev_attr (Cindy Lu) [1975173]
+- vdpa_sim: add supported_features field in vdpasim_dev_attr (Cindy Lu) [1975173]
+- vdpa_sim: add device id field in vdpasim_dev_attr (Cindy Lu) [1975173]
+- vdpa_sim: add struct vdpasim_dev_attr for device attributes (Cindy Lu) [1975173]
+- vdpa_sim: rename vdpasim_config_ops variables (Cindy Lu) [1975173]
+- vdpa_sim: make IOTLB entries limit configurable (Cindy Lu) [1975173]
+- vdpa_sim: remove hard-coded virtq count (Cindy Lu) [1975173]
+- vdpa_sim: remove unnecessary headers inclusion (Cindy Lu) [1975173]
+- vdpa: remove unnecessary 'default n' in Kconfig entries (Cindy Lu) [1975173]
+- vdpa: ifcvf: Use dma_set_mask_and_coherent to simplify code (Cindy Lu) [1975173]
+- vhost_vdpa: switch to vmemdup_user() (Cindy Lu) [1975173]
+- vhost: vringh: use krealloc_array() (Cindy Lu) [1975173]
+- vringh: fix vringh_iov_push_*() documentation (Cindy Lu) [1975173]
+- vringh: fix __vringh_iov() when riov and wiov are different (Cindy Lu) [1975173]
+- net: sched: fix memory leak in tcindex_partial_destroy_work (Davide Caratti) [1987042]
+- net/sched: act_ct: remove and free nf_table callbacks (Davide Caratti) [1987042]
+- net: sched: fix warning in tcindex_alloc_perfect_hash (Davide Caratti) [1987042]
+- pkt_sched: sch_qfq: fix qfq_change_class() error path (Davide Caratti) [1987042]
+- sch_htb: fix refcount leak in htb_parent_to_leaf_offload (Davide Caratti) [1987042]
+- sch_dsmark: fix a NULL deref in qdisc_reset() (Davide Caratti) [1987042]
+- sch_red: fix off-by-one checks in red_check_params() (Davide Caratti) [1987042]
+- ipv6: fix 'disable_policy' for fwd packets (Hangbin Liu) [1985837]
+- net: ipv6: fix return value of ip6_skb_dst_mtu (Hangbin Liu) [1985837]
+- ipv6: fix out-of-bound access in ip6_parse_tlv() (Hangbin Liu) [1985837]
+- ipv6: exthdrs: do not blindly use init_net (Hangbin Liu) [1985837]
+- ipv6: record frag_max_size in atomic fragments in input path (Hangbin Liu) [1985837]
+- selftests: net: devlink_port_split.py: skip the test if no devlink device (Hangbin Liu) [1985836]
+- selftests/net: bump timeout to 5 minutes (Hangbin Liu) [1985836]
+- selftests: net: forwarding: Fix a typo (Hangbin Liu) [1985836]
+- selftests/net: so_txtime: remove unneeded semicolon (Hangbin Liu) [1985836]
+- tools: selftests: add test for changing routes with PTMU exceptions (Hangbin Liu) [1985836]
+- selftests: fix the return value for UDP GRO test (Hangbin Liu) [1985836]
+- selftests: pmtu.sh: improve the test result processing (Hangbin Liu) [1985836]
+- selftests: pmtu.sh: use $ksft_skip for skipped return code (Hangbin Liu) [1985836]
+- selftests/net: timestamping: add ptp v2 support (Hangbin Liu) [1985836]
+- ixgbevf: add correct exception tracing for XDP (Ken Cox) [1920268]
+- intel: call csum functions with well formatted arguments (Ken Cox) [1920268]
+- net: intel: Remove unused function pointer typedef ixgbe_mc_addr_itr (Ken Cox) [1920268]
+- ixgbevf: Fix fall-through warnings for Clang (Ken Cox) [1920268]
+- intel: clean up mismatched header comments (Ken Cox) [1920268]
+- ixgbe: fail to create xfrm offload of IPsec tunnel mode SA (Ken Cox) [1920268]
+- net: ixgbevf: use skb_csum_is_sctp instead of protocol check (Ken Cox) [1920268]
+- treewide: Use sizeof_field() macro (Ken Cox) [1920268]
+- selftests: net: add ESP-in-UDP PMTU test (Xin Long) [1986599]
+- udp: check encap socket in __udp_lib_err (Xin Long) [1986599]
+- udp: fix possible user after free in error handler (Xin Long) [1986599]
+- udpv6: fix possible user after free in error handler (Xin Long) [1986599]
+- udp: Support for error handlers of tunnels with arbitrary destination port (Xin Long) [1986599]
+- bpf, sockmap, udp: sk_prot needs inuse_idx set for proc stats (Xin Long) [1986599]
+- udp: properly flush normal packet at GRO time (Xin Long) [1986599]
+- udp: annotate data races around unix_sk(sk)->gso_size (Xin Long) [1986599]
+- udp: fix race between close() and udp_abort() (Xin Long) [1986599]
+- netfilter: conntrack: remove offload_pickup sysctl again (Florian Westphal) [1987101]
+- bpf, samples: Add -fno-asynchronous-unwind-tables to BPF Clang invocation (Yauheni Kaliuta) [1977162]
+- net/af_unix: fix a data-race in unix_dgram_sendmsg / unix_release_sock (Balazs Nemeth) [1986845]
+- netfilter: nf_tables: fix flowtable list del corruption (Jay Shin) [1977137]
+- net: qrtr: fix memory leaks (Íñigo Huguet) [1981236]
+- net: qrtr: fix OOB Read in qrtr_endpoint_post (Íñigo Huguet) [1981236]
+- net: qrtr: ns: Fix error return code in qrtr_ns_init() (Íñigo Huguet) [1981236]
+- net: qrtr: Avoid potential use after free in MHI send (Íñigo Huguet) [1981236]
+- qrtr: Convert qrtr_ports from IDR to XArray (Íñigo Huguet) [1981236]
+- net: qrtr: Fix memory leak on qrtr_tx_wait failure (Íñigo Huguet) [1981236]
+- net: qrtr: fix a kernel-infoleak in qrtr_recvmsg() (Íñigo Huguet) [1981236]
+- net: qrtr: fix error return code of qrtr_sendmsg() (Íñigo Huguet) [1981236]
+- net/qrtr: fix __netdev_alloc_skb call (Íñigo Huguet) [1981236]
+- net: qrtr: Fix memory leak in qrtr_tun_open (Íñigo Huguet) [1981236]
+- net/qrtr: restrict user-controlled length in qrtr_tun_write_iter() (Íñigo Huguet) [1981236]
+- net: qrtr: fix null-ptr-deref in qrtr_ns_remove (Íñigo Huguet) [1981236]
+- net: qrtr: Unprepare MHI channels during remove (Íñigo Huguet) [1981236]
+- net: qrtr: Start MHI channels during init (Íñigo Huguet) [1981236]
+- net: qrtr: Release distant nodes along the bridge node (Íñigo Huguet) [1981236]
+- net: qrtr: Add GFP flags parameter to qrtr_alloc_ctrl_packet (Íñigo Huguet) [1981236]
+- net: qrtr: Allow non-immediate node routing (Íñigo Huguet) [1981236]
+- net: qrtr: Allow forwarded services (Íñigo Huguet) [1981236]
+- net: qrtr: Fix port ID for control messages (Íñigo Huguet) [1981236]
+- net: qrtr: ns: Fix the incorrect usage of rcu_read_lock() (Íñigo Huguet) [1981236]
+- net: qrtr: ns: Protect radix_tree_deref_slot() using rcu read locks (Íñigo Huguet) [1981236]
+- net: qrtr: check skb_put_padto() return value (Íñigo Huguet) [1981236]
+- net: qrtr: fix usage of idr in port assignment to socket (Íñigo Huguet) [1981236]
+- qrtr: orphan socket in qrtr_release() (Íñigo Huguet) [1981236]
+- net: qrtr: Fix an out of bounds read qrtr_endpoint_post() (Íñigo Huguet) [1981236]
+- net: qrtr: free flow in __qrtr_node_release (Íñigo Huguet) [1981236]
+- treewide: replace '---help---' in Kconfig files with 'help' (Íñigo Huguet) [1981236]
+- net: qrtr: Allocate workqueue before kernel_bind (Íñigo Huguet) [1981236]
+- net: qrtr: Fix passing invalid reference to qrtr_local_enqueue() (Íñigo Huguet) [1981236]
+- net: qrtr: Add MHI transport layer (Íñigo Huguet) [1981236]
+- net: qrtr: Add tracepoint support (Íñigo Huguet) [1981236]
+- net: qrtr: send msgs from local of same id as broadcast (Íñigo Huguet) [1981236]
+- net: qrtr: Fix FIXME related to qrtr_ns_init() (Íñigo Huguet) [1981236]
+- net: qrtr: Respond to HELLO message (Íñigo Huguet) [1981236]
+- net: qrtr: Fix error pointer vs NULL bugs (Íñigo Huguet) [1981236]
+- net: qrtr: fix spelling mistake "serivce" -> "service" (Íñigo Huguet) [1981236]
+- net: qrtr: Fix the local node ID as 1 (Íñigo Huguet) [1981236]
+- net: qrtr: Migrate nameservice to kernel from userspace (Íñigo Huguet) [1981236]
+- net: qrtr: Remove receive worker (Íñigo Huguet) [1981236]
+- net: qrtr: Make qrtr_port_lookup() use RCU (Íñigo Huguet) [1981236]
+- net: qrtr: Migrate node lookup tree to spinlock (Íñigo Huguet) [1981236]
+- net: qrtr: Implement outgoing flow control (Íñigo Huguet) [1981236]
+- net: qrtr: Move resume-tx transmission to recvmsg (Íñigo Huguet) [1981236]
+- net: qrtr: fix len of skb_put_padto in qrtr_node_enqueue (Íñigo Huguet) [1981236]
+- net: qrtr: Simplify 'qrtr_tun_release()' (Íñigo Huguet) [1981236]
+- net: qrtr: Stop rx_worker before freeing node (Íñigo Huguet) [1981236]
+- net: qrtr: fix memort leak in qrtr_tun_write_iter (Íñigo Huguet) [1981236]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 284 (Íñigo Huguet) [1981236]
+- treewide: Add SPDX license identifier - Makefile/Kconfig (Íñigo Huguet) [1981236]
+- net: qrtr: Fix message type of outgoing packets (Íñigo Huguet) [1981236]
+- net: qrtr: use protocol endiannes variable (Íñigo Huguet) [1981236]
+- net: fix hangup on napi_disable for threaded napi (Paolo Abeni) [1949546]
+- net: fix race between napi kthread mode and busy poll (Paolo Abeni) [1949546]
+- net: add sysfs attribute to control napi threaded mode (Paolo Abeni) [1949546]
+- net: implement threaded-able napi poll loop support (Paolo Abeni) [1949546]
+- net: extract napi poll functionality to __napi_poll() (Paolo Abeni) [1949546]
+- mfd: intel-lpss: Use devm_ioremap_uc for MMIO (Steve Best) [1986715]
+- lib: devres: add a helper function for ioremap_uc (Steve Best) [1986715]
+- sched/rt: Fix double enqueue caused by rt_effective_prio (Juri Lelli) [1990566]
+- x86/crash: Remove crash_reserve_low_1M() (Lianbo Jiang) [1904318]
+- x86/setup: Remove CONFIG_X86_RESERVE_LOW and reservelow= options (Lianbo Jiang) [1904318]
+- x86/setup: Always reserve the first 1M of RAM (Lianbo Jiang) [1904318]
+- powerpc/kexec: blacklist functions called in real mode for kprobe (Desnes A. Nunes do Rosario) [1987281]
+- [s390] scsi: zfcp: Report port fc_security as unknown early during remote cable pull (Claudio Imbrenda) [1989910]
+- x86/boot: Use common BUILD_BUG_ON (Prarit Bhargava) [1979940]
+- net: phy: icplus: call phy_restore_page() when phy_select_page() fails (Petr Oros) [1955165]
+- net: phy: ti: take into account all possible interrupt sources (Petr Oros) [1955165]
+- net: phy: smsc: add missed clk_disable_unprepare in smsc_phy_probe() (Petr Oros) [1955165]
+- net: phy: Expose phydev::dev_flags through sysfs (Petr Oros) [1955165]
+- net: phy: fix save wrong speed and duplex problem if autoneg is on (Petr Oros) [1955165]
+- net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8081 (Petr Oros) [1955165]
+- net: phy: icplus: add MDI/MDIX support for IP101A/G (Petr Oros) [1955165]
+- net: phy: icplus: add PHY counter for IP101G (Petr Oros) [1955165]
+- net: phy: icplus: fix paged register access (Petr Oros) [1955165]
+- net: phy: icplus: don't set APS_EN bit on IP101G (Petr Oros) [1955165]
+- net: phy: icplus: split IP101A/G driver (Petr Oros) [1955165]
+- net: phy: icplus: use the .soft_reset() of the phy-core (Petr Oros) [1955165]
+- net: phy: icplus: drop address operator for functions (Petr Oros) [1955165]
+- net: phy: icplus: use PHY_ID_MATCH_EXACT() for IP101A/G (Petr Oros) [1955165]
+- net: phy: icplus: use PHY_ID_MATCH_MODEL() macro (Petr Oros) [1955165]
+- net: phy: drop explicit genphy_read_status() op (Petr Oros) [1955165]
+- net: phy: broadcom: remove BCM5482 1000Base-BX support (Petr Oros) [1955165]
+- net: mdiobus: Prevent spike on MDIO bus reset signal (Petr Oros) [1955165]
+- net: phy: realtek: Add support for RTL9000AA/AN (Petr Oros) [1955165]
+- mdio, phy: fix -Wshadow warnings triggered by nested container_of() (Petr Oros) [1955165]
+- net: phy: national: remove definition of DEBUG (Petr Oros) [1955165]
+- net: phy: ar803x: disable extended next page bit (Petr Oros) [1955165]
+- net: phy: smsc: fix clk error handling (Petr Oros) [1955165]
+- net: phy: at803x: use phy_modify_mmd() (Petr Oros) [1955165]
+- net: phy: replace mutex_is_locked with lockdep_assert_held in phylib (Petr Oros) [1955165]
+- net: phy: micrel: Add KS8851 PHY support (Petr Oros) [1955165]
+- net: phy: marvell: replace phy_modify() (Petr Oros) [1955165]
+- net: phy: micrel: fix interrupt handling (Petr Oros) [1955165]
+- net: phy: remove the .did_interrupt() and .ack_interrupt() callback (Petr Oros) [1955165]
+- net: phy: qsemi: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: qsemi: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: ti: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: ti: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: national: remove the use of the .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: national: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: micrel: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: micrel: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: icplus: remove the use .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: icplus: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: intel-xway: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: intel-xway: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- mdio_bus: suppress err message for reset gpio EPROBE_DEFER (Petr Oros) [1955165]
+- net: phy: don't duplicate driver name in phy_attached_print (Petr Oros) [1955165]
+- net: phy: ste10Xp: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: ste10Xp: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: smsc: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: smsc: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: amd: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: amd: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: lxt: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: lxt: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: marvell: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: marvell: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: microchip: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: microchip: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: vitesse: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: vitesse: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: aquantia: do not return an error on clearing pending IRQs (Petr Oros) [1955165]
+- net: phy: microchip_t1: Don't set .config_aneg (Petr Oros) [1955165]
+- docs: networking: phy: s/2.5 times faster/2.5 times as fast/ (Petr Oros) [1955165]
+- net: phy: realtek: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: realtek: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: add genphy_handle_interrupt_no_ack() (Petr Oros) [1955165]
+- net: phy: davicom: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: davicom: implement generic .handle_interrupt() calback (Petr Oros) [1955165]
+- net: phy: cicada: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: cicada: implement the generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: broadcom: remove use of ack_interrupt() (Petr Oros) [1955165]
+- net: phy: broadcom: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: aquantia: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: aquantia: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: mscc: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: mscc: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: at803x: remove the use of .ack_interrupt() (Petr Oros) [1955165]
+- net: phy: at803x: implement generic .handle_interrupt() callback (Petr Oros) [1955165]
+- net: phy: make .ack_interrupt() optional (Petr Oros) [1955165]
+- net: phy: add a shutdown procedure (Petr Oros) [1955165]
+- net: phy: export phy_error and phy_trigger_machine (Petr Oros) [1955165]
+- drivers: net: phy: Fix spelling in comment defalut to default (Petr Oros) [1955165]
+- net: phy: marvell: add special handling of Finisar modules with 88E1111 (Petr Oros) [1955165]
+- net: phylink: disable BMCR_ISOLATE in phylink_mii_c22_pcs_config (Petr Oros) [1955165]
+- gpiolib: Extract gpiod_not_found() helper (Petr Oros) [1955165]
+- net: phy: marvell: Use phy_read_paged() instead of open coding it (Petr Oros) [1955165]
+- net: phy: dp83869: fix unsigned comparisons against less than zero values (Petr Oros) [1955165]
+- net: phy: dp83869: Add speed optimization feature (Petr Oros) [1955165]
+- net: phy: dp83869: support Wake on LAN (Petr Oros) [1955165]
+- net: phy: dp83822: Update the fiber advertisement for speed (Petr Oros) [1955165]
+- net: dp83869: Add ability to advertise Fiber connection (Petr Oros) [1955165]
+- net: phy: Do not warn in phy_stop() on PHY_DOWN (Petr Oros) [1955165]
+- net: phy: Avoid NPD upon phy_detach() when driver is unbound (Petr Oros) [1955165]
+- net: phy: bcm7xxx: request and manage GPHY clock (Petr Oros) [1955165]
+- net: phy: smsc: LAN8710/20: add phy refclk in support (Petr Oros) [1955165]
+- net: phy: smsc: simplify config_init callback (Petr Oros) [1955165]
+- net: phy: smsc: skip ENERGYON interrupt if disabled (Petr Oros) [1955165]
+- net: phy: dp83867: Fix various styling and space issues (Petr Oros) [1955165]
+- net: mdiobus: add clause 45 mdiobus write accessor (Petr Oros) [1955165]
+- net: phylink: consider QSGMII interface mode in phylink_mii_c22_pcs_get_state (Petr Oros) [1955165]
+- net: phylink: add helper function to decode USXGMII word (Petr Oros) [1955165]
+- net: phy: DP83822: Add ability to advertise Fiber connection (Petr Oros) [1955165]
+- net: dp83869: Fix RGMII internal delay configuration (Petr Oros) [1955165]
+- net: mdio-mux-gpio: use devm_gpiod_get_array() (Petr Oros) [1955165]
+- net: phy: add USXGMII link partner ability constants (Petr Oros) [1955165]
+- net: phy: mdio-octeon: Cleanup module loading dependencies (Petr Oros) [1955165]
+- net: phy: cavium: Improve __iomem mess (Petr Oros) [1955165]
+- net: phy: Add a helper to return the index for of the internal delay (Petr Oros) [1955165]
+- dt-bindings: net: Add RGMII internal delay for DP83869 (Petr Oros) [1955165]
+- net: dp83869: Add RGMII internal delay configuration (Petr Oros) [1955165]
+- net: phy: DP83822: Add setting the fixed internal delay (Petr Oros) [1955165]
+- net: dp83869: Fix OF_MDIO config check (Petr Oros) [1955165]
+- net: dp83867: Fix OF_MDIO config check (Petr Oros) [1955165]
+- net: marvell: Fix OF_MDIO config check (Petr Oros) [1955165]
+- net: phy: mscc: use mdiobus_get_phy() (Petr Oros) [1955165]
+- net: phy: improve phy_driver callback handle_interrupt (Petr Oros) [1955165]
+
+* Mon Aug 09 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-330.el8]
+- net/mlx5e: Add IPsec support to uplink representor (Alaa Hleihel) [1980171 1926098]
+- net/mlx5e: TC: Reserved bit 31 of REG_C1 for IPsec offload (Alaa Hleihel) [1980171 1926098]
+- net/mlx5e: TC: Use bit counts for register mapping (Alaa Hleihel) [1980171 1926098]
+- RDMA/mlx5: Don't access NULL-cleared mpi pointer (Alaa Hleihel) [1980171]
+- RDMA/mlx5: Split mlx5_ib_update_xlt() into ODP and non-ODP cases (Alaa Hleihel) [1980171]
+- ip6_tunnel: allow redirecting ip6gre and ipxip6 packets to eth devices (Guillaume Nault) [1921539]
+- gre: let mac_header point to outer header only when necessary (Guillaume Nault) [1921539]
+- sit: allow redirecting ip6ip, ipip and mplsip packets to eth devices (Guillaume Nault) [1921539]
+- ipip: allow redirecting ipip and mplsip packets to eth devices (Guillaume Nault) [1921539]
+- bareudp: allow redirecting bareudp packets to eth devices (Guillaume Nault) [1921539]
+- net: handle ARPHRD_IP6GRE in dev_is_mac_header_xmit() (Guillaume Nault) [1921539]
+- net: ipv4: fix memory leak in ip_mc_add1_src (Guillaume Nault) [1987605]
+- net: ipv4: fix memory leak in netlbl_cipsov4_add_std (Guillaume Nault) [1987605]
+- ixgbe: fix probing of multi-port devices with one MDIO (Ken Cox) [1968696]
+- [s390] s390/qdio: let driver manage the QAOB (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: remove RX VLAN filter stubs in L3 driver (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: enable napi_consume_skb() for pending TX buffers (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: allocate initial TX Buffer structs with GFP_KERNEL (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: fix notification for pending buffers during teardown (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: schedule TX NAPI on QAOB completion (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: improve completion of pending TX buffers (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: fix memory leak after failed TX Buffer allocation (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: don't fake a TX completion interrupt after TX error (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: make cast type selection for af_iucv skbs robust (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: pass proto to qeth_l3_get_cast_type() (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: remove qeth_get_ip_version() (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: clean up load/remove code for disciplines (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: fix L2 header access in qeth_l3_osa_features_check() (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: fix locking for discipline setup / removal (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: fix deadlock during recovery (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: make qeth_qdio_handle_aob() more robust (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: remove QETH_QDIO_BUF_HANDLED_DELAYED state (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: don't replace a fully completed async TX buffer (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: use dev->groups for common sysfs attributes (Claudio Imbrenda) [1919250]
+- [s390] s390/ccwgroup: use bus->dev_groups for bus-based sysfs attributes (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: don't call INIT_LIST_HEAD() on iob's list entry (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: fix tear down of async TX buffers (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: fix af_iucv notification race (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: improve selection of ethtool link modes (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: use QUERY OAT for initial link info (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: clean up default cases for ethtool link mode (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: set static link info during initialization (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: improve QUERY CARD INFO processing (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: tolerate error when querying card info (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: remove useless if/else (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: reduce rtnl locking for switchdev events (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: static checker cleanups (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: use netdev_name() (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: constify the disciplines (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: allow configuration of TX queues for OSA devices (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: de-magic the QIB parm area (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: keep track of wanted TX queues (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: remove forward declarations in L2 code (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: consolidate teardown code (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: consolidate online code (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: cancel cmds earlier during teardown (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: tighten ucast IP locking (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: replace deprecated simple_stroul() (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: clean up string ops in qeth_l3_parse_ipatoe() (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: relax locking for ipato config data (Claudio Imbrenda) [1919250]
+- [s390] s390/qeth: don't init refcount twice for mcast IPs (Claudio Imbrenda) [1919250]
+- mm, page_alloc: check for max order in hot path (Jay Shin) [1982466]
+- be2net: Fix an error handling path in 'be_probe()' (Petr Oros) [1980665]
+- net: emulex: benet: simplify the return expression of be_if_create() (Petr Oros) [1980665]
+- treewide: Use fallthrough pseudo-keyword (Petr Oros) [1980665]
+- be2net: convert to new udp_tunnel_nic infra (Petr Oros) [1980665]
+- benet: use generic power management (Petr Oros) [1980665]
+- treewide: replace '---help---' in Kconfig files with 'help' (Petr Oros) [1980665]
+- hwmon: (k10temp) Zen3 Ryzen Desktop CPUs support (David Arcari) [1980072]
+- hwmon: (k10temp) Remove support for displaying voltage and current on Zen CPUs (David Arcari) [1980072]
+- hwmon: (k10temp) Add support for Zen3 CPUs (David Arcari) [1980072]
+- hwmon: (k10temp) Take out debugfs code (David Arcari) [1980072]
+- hwmon: (k10temp) Define SVI telemetry and current factors for Zen2 CPUs (David Arcari) [1980072]
+- hwmon: (k10temp) Create common functions and macros for Zen CPU families (David Arcari) [1980072]
+- hwmon: (k10temp) Add AMD family 17h model 60h PCI match (David Arcari) [1980072]
+- hwmon: (k10temp) make some symbols static (David Arcari) [1980072]
+- hwmon: (k10temp) Reorganize and simplify temperature support detection (David Arcari) [1980072]
+- hwmon: (k10temp) Swap Tdie and Tctl on Family 17h CPUs (David Arcari) [1980072]
+- hwmon: (k10temp) Display up to eight sets of CCD temperatures (David Arcari) [1980072]
+- hwmon: (k10temp) Add debugfs support (David Arcari) [1980072]
+- hwmon: (k10temp) Don't show temperature limits on Ryzen (Zen) CPUs (David Arcari) [1980072]
+- hwmon: (k10temp) Show core and SoC current and voltages on Ryzen CPUs (David Arcari) [1980072]
+- hwmon: (k10temp) Report temperatures per CPU die (David Arcari) [1980072]
+- hmon: (k10temp) Convert to use devm_hwmon_device_register_with_info (David Arcari) [1980072]
+- hwmon: (k10temp) Use bitops (David Arcari) [1980072]
+- hwmon: (k10temp) Add support for AMD family 17h, model 70h CPUs (David Arcari) [1980072]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 56 (David Arcari) [1980072]
+- hwmon: (k10temp) Add Hygon Dhyana support (David Arcari) [1980072]
+- hwmon: (k10temp) Auto-convert to use SENSOR_DEVICE_ATTR_{RO, RW, WO} (David Arcari) [1980072]
+- hwmon: (k10temp) Support all Family 15h Model 6xh and Model 7xh processors (David Arcari) [1980072]
+- hwmon: k10temp: Support Threadripper 2920X, 2970WX; simplify offset table (David Arcari) [1980072]
+- hwmon: (k10temp) 27C Offset needed for Threadripper2 (David Arcari) [1980072]
+- x86/amd_nb: Add AMD family 17h model 60h PCI IDs (David Arcari) [1980072]
+- x86/amd_nb: Add PCI device IDs for family 17h, model 70h (David Arcari) [1980072]
+- x86/pci, x86/amd_nb: Add Hygon Dhyana support to PCI and northbridge (David Arcari) [1980072]
+- Revert "[hwmon] hwmon: (k10temp) Add support for Zen3 CPUs" (David Arcari) [1980072]
+- serial: 8250: Process sysrq at port unlock time (Prarit Bhargava) [1982016]
+- serial: core: Include console.h from serial_core.h (Prarit Bhargava) [1982016]
+- serial: core: Allow processing sysrq at port unlock time (Prarit Bhargava) [1982016]
+- [s390] s390/dasd: add missing discipline function (Claudio Imbrenda) [1981804]
+- bnxt_en: Validate vlan protocol ID on RX packets (Jonathan Toppins) [1960961]
+- KVM: do not allow mapping valid but non-reference-counted pages (Jon Maloy) [1975515]
+- gfs2: Fix error handling in init_statfs (Andreas Gruenbacher) [1872440]
+- gfs2: Fix underflow in gfs2_page_mkwrite (Andreas Gruenbacher) [1872440]
+- gfs2: Pass glock holder to gfs2_file_direct_{read,write} (Andreas Gruenbacher) [1872440]
+- gfs2: Prevent direct-I/O write fallback errors from getting lost (Andreas Gruenbacher) [1872440]
+- gfs2: Improve mmap write vs. truncate consistency (Andreas Gruenbacher) [1872440]
+- iomap: Permit pages without an iop to enter writeback (Andreas Gruenbacher) [1872440]
+- iomap: Don't create iomap_page objects for inline files (Andreas Gruenbacher) [1872440]
+- gfs2: Clean up gfs2_unstuff_dinode (Andreas Gruenbacher) [1872440]
+- gfs2: Unstuff before locking page in gfs2_page_mkwrite (Andreas Gruenbacher) [1872440]
+- gfs2: Clean up the error handling in gfs2_page_mkwrite (Andreas Gruenbacher) [1872440]
+- gfs2: Fix end-of-file handling in gfs2_page_mkwrite (Andreas Gruenbacher) [1872440]
+- gfs2: Use resource group glock sharing (Andreas Gruenbacher) [1442151]
+- gfs2: Allow node-wide exclusive glock sharing (Andreas Gruenbacher) [1442151]
+- gfs2: Add local resource group locking (Andreas Gruenbacher) [1442151]
+- gfs2: Add per-reservation reserved block accounting (Andreas Gruenbacher) [1442151]
+- gfs2: Rename rs_{free -> requested} and rd_{reserved -> requested} (Andreas Gruenbacher) [1442151]
+- gfs2: Check for active reservation in gfs2_release (Andreas Gruenbacher) [1442151]
+- gfs2: Don't search for unreserved space twice (Andreas Gruenbacher) [1442151]
+- gfs2: Only pass reservation down to gfs2_rbm_find (Andreas Gruenbacher) [1442151]
+- gfs2: Also reflect single-block allocations in rgd->rd_extfail_pt (Andreas Gruenbacher) [1442151]
+- gfs2: Set GBF_FULL flags when reading resource group (Andreas Gruenbacher) [1442151]
+- gfs2: Don't clear GBF_FULL flags in rs_deltree (Andreas Gruenbacher) [1442151]
+- Revert "gfs2: Don't reject a supposedly full bitmap if we have blocks reserved" (Andreas Gruenbacher) [1442151]
+- gfs2: Minor gfs2_inplace_reserve cleanup (Andreas Gruenbacher) [1442151]
+- gfs2: Get rid of unnecessary variable in gfs2_alloc_blocks (Andreas Gruenbacher) [1442151]
+- gfs2: Only use struct gfs2_rbm for bitmap manipulations (Andreas Gruenbacher) [1442151]
+- gfs2: Turn gfs2_rbm_incr into gfs2_rbm_add (Andreas Gruenbacher) [1872440]
+- gfs2: Replace gfs2_lblk_to_dblk with gfs2_get_extent (Andreas Gruenbacher) [1872440]
+- gfs2: Turn gfs2_extent_map into gfs2_{get,alloc}_extent (Andreas Gruenbacher) [1872440]
+- gfs2: Add new gfs2_iomap_get helper (Andreas Gruenbacher) [1872440]
+- gfs2: Make inode operations static (Andreas Gruenbacher) [1872440]
+- gfs2: use iomap for buffered I/O in ordered and writeback mode (Andreas Gruenbacher) [1872440]
+- gfs2: Never call gfs2_block_zero_range with an open transaction (Andreas Gruenbacher) [1872440]
+- gfs2: Upgrade shared glocks for atime updates (Andreas Gruenbacher) [1872440]
+- gfs2: Rework read and page fault locking (Andreas Gruenbacher) [1872440]
+- fs: Add IOCB_NOIO flag for generic_file_read_iter (Andreas Gruenbacher) [1872440]
+- gfs2: Remove duplicate call from gfs2_create_inode (Andreas Gruenbacher) [1872440]
+- gfs2: Multi-block allocations in gfs2_page_mkwrite (Andreas Gruenbacher) [1872440]
+- gfs2: implement gfs2_block_zero_range using iomap_zero_range (Andreas Gruenbacher) [1872440]
+- gfs2: Add support for IOMAP_ZERO (Andreas Gruenbacher) [1872440]
+- gfs2: gfs2_iomap_begin cleanup (Andreas Gruenbacher) [1872440]
+- gfs2: Remove unused gfs2_iomap_alloc argument (Andreas Gruenbacher) [1872440]
+- gfs2: don't use buffer_heads in gfs2_allocate_page_backing (Andreas Gruenbacher) [1872440]
+- gfs2: use iomap_bmap instead of generic_block_bmap (Andreas Gruenbacher) [1872440]
+- gfs2: mark stuffed_readpage static (Andreas Gruenbacher) [1872440]
+- gfs2: merge gfs2_writepage_common into gfs2_writepage (Andreas Gruenbacher) [1872440]
+- gfs2: merge gfs2_writeback_aops and gfs2_ordered_aops (Andreas Gruenbacher) [1872440]
+- gfs2: remove the unused gfs2_stuffed_write_end function (Andreas Gruenbacher) [1872440]
+- gfs2: use page_offset in gfs2_page_mkwrite (Andreas Gruenbacher) [1442151]
+- gfs2: Add new sysfs file for gfs2 status (Andreas Gruenbacher) [1442151]
+- gfs2: Per-revoke accounting in transactions (Andreas Gruenbacher) [1442151]
+- gfs2: Rework the log space allocation logic (Andreas Gruenbacher) [1442151]
+- gfs2: Minor calc_reserved cleanup (Andreas Gruenbacher) [1442151]
+- gfs2: Move function gfs2_ail_empty_tr (Andreas Gruenbacher) [1442151]
+- gfs2: Get rid of current_tail() (Andreas Gruenbacher) [1442151]
+- gfs2: Use a tighter bound in gfs2_trans_begin (Andreas Gruenbacher) [1442151]
+- gfs2: Clean up gfs2_log_reserve (Andreas Gruenbacher) [1442151]
+- gfs2: Don't wait for journal flush in clean_journal (Andreas Gruenbacher) [1442151]
+- gfs2: Move lock flush locking to gfs2_trans_{begin,end} (Andreas Gruenbacher) [1442151]
+- gfs2: Get rid of sd_reserving_log (Andreas Gruenbacher) [1442151]
+- gfs2: Clean up on-stack transactions (Andreas Gruenbacher) [1442151]
+- gfs2: Use sb_start_intwrite in gfs2_ail_empty_gl (Andreas Gruenbacher) [1442151]
+- gfs2: Clean up ail2_empty (Andreas Gruenbacher) [1442151]
+- gfs2: Rename gfs2_{write => flush}_revokes (Andreas Gruenbacher) [1442151]
+- gfs2: Minor debugging improvement (Andreas Gruenbacher) [1442151]
+- gfs2: Some documentation updates (Andreas Gruenbacher) [1442151]
+- gfs2: Minor gfs2_write_revokes cleanups (Andreas Gruenbacher) [1442151]
+- gfs2: Simplify the buf_limit and databuf_limit definitions (Andreas Gruenbacher) [1442151]
+- gfs2: Un-obfuscate function jdesc_find_i (Andreas Gruenbacher) [1442151]
+- gfs2: Fix fall-through warnings for Clang (Andreas Gruenbacher) [1442151]
+- gfs2: Make gfs2_setattr_simple static (Andreas Gruenbacher) [1442151]
+- gfs2: Turn gfs2_meta_indirect_buffer into gfs2_meta_buffer (Andreas Gruenbacher) [1442151]
+- gfs2: Remove unused variable sb_format (Andreas Gruenbacher) [1442151]
+- gfs2: Fix dir.c function parameter descriptions (Andreas Gruenbacher) [1442151]
+- gfs2: Eliminate gh parameter from go_xmote_bh func (Andreas Gruenbacher) [1442151]
+- gfs2: don't create empty buffers for NO_CREATE (Andreas Gruenbacher) [1442151]
+- gfs2: Flag a withdraw if init_threads() fails (Andreas Gruenbacher) [1442151]
+- gfs2: bypass log flush if the journal is not live (Andreas Gruenbacher) [1442151]
+- gfs2: bypass signal_our_withdraw if no journal (Andreas Gruenbacher) [1442151]
+- gfs2: fix use-after-free in trans_drain (Andreas Gruenbacher) [1442151]
+- gfs2: make function gfs2_make_fs_ro() to void type (Andreas Gruenbacher) [1442151]
+- whack-a-mole: don't open-code iminor/imajor (Andreas Gruenbacher) [1442151]
+- gfs2: amend SLAB_RECLAIM_ACCOUNT on gfs2 related slab cache (Andreas Gruenbacher) [1442151]
+- gfs2: Remove sb_start_write from gfs2_statfs_sync (Andreas Gruenbacher) [1442151]
+- gfs2: check for empty rgrp tree in gfs2_ri_update (Andreas Gruenbacher) [1442151]
+- gfs2: set lockdep subclass for iopen glocks (Andreas Gruenbacher) [1442151]
+- gfs2: Fix deadlock dumping resource group glocks (Andreas Gruenbacher) [1442151]
+- gfs2: Wake up when sd_glock_disposal becomes zero (Andreas Gruenbacher) [1442151]
+- gfs2: Split up gfs2_meta_sync into inode and rgrp versions (Andreas Gruenbacher) [1442151]
+- gfs2: Don't ignore inode write errors during inode_go_sync (Andreas Gruenbacher) [1442151]
+- gfs2: Ignore subsequent errors after withdraw in rgrp_go_sync (Andreas Gruenbacher) [1442151]
+- gfs2: Eliminate gl_vm (Andreas Gruenbacher) [1442151]
+- gfs2: Fix comments to glock_hash_walk (Andreas Gruenbacher) [1442151]
+- gfs2: eliminate GLF_QUEUED flag in favor of list_empty(gl_holders) (Andreas Gruenbacher) [1442151]
+- gfs2: Fix invalid block size message (Andreas Gruenbacher) [1442151]
+- gfs2: add validation checks for size of superblock (Andreas Gruenbacher) [1442151]
+- gfs2: use-after-free in sysfs deregistration (Andreas Gruenbacher) [1442151]
+- Revert "GFS2: Prevent delete work from occurring on glocks used for create" (Andreas Gruenbacher) [1442151]
+- gfs2: Don't skip dlm unlock if glock has an lvb (Andreas Gruenbacher) [1442151]
+- gfs2: Lock imbalance on error path in gfs2_recover_one (Andreas Gruenbacher) [1442151]
+- gfs2: keep bios separate for each journal (Bob Peterson) [1442151]
+- gfs2: change from write to read lock for sd_log_flush_lock in journal replay (Bob Peterson) [1442151]
+- gfs2: don't lock sd_log_flush_lock in try_rgrp_unlink (Bob Peterson) [1442151]
+- gfs2: fix glock confusion in function signal_our_withdraw (Bob Peterson) [1442151]
+- gfs2: Don't write log headers after file system withdraw (Andreas Gruenbacher) [1442151]
+- gfs2: make gfs2_log_write_page static (Andreas Gruenbacher) [1442151]
+- gfs2: fix possible reference leak in gfs2_check_blk_type (Andreas Gruenbacher) [1442151]
+- gfs2: Fix NULL pointer dereference in gfs2_rgrp_dump (Andreas Gruenbacher) [1442151]
+- gfs2: remove unused LBIT macros (Andreas Gruenbacher) [1925121]
+- gfs2: add missing log_blocks trace points in gfs2_write_revokes (Andreas Gruenbacher) [1925121]
+- gfs2: print details on transactions that aren't properly ended (Andreas Gruenbacher) [1925121]
+- gfs2: fix use-after-free on transaction ail lists (Andreas Gruenbacher) [1925121]
+- gfs2: new slab for transactions (Andreas Gruenbacher) [1925121]
+- gfs2: initialize transaction tr_ailX_lists earlier (Andreas Gruenbacher) [1925121]
+- gfs2: eliminate ssize parameter from gfs2_struct2blk (Andreas Gruenbacher) [1925121]
+- gfs2: Fix error path kobject memory leak (Andreas Gruenbacher) [1925121]
+- gfs2: Rename gfs2_trans_{add_unrevoke => remove_revoke} (Andreas Gruenbacher) [1925121]
+- gfs2: Remove unnecessary extern declarations (Andreas Gruenbacher) [1925121]
+- gfs2: Fix sign extension bug in gfs2_update_stats (Andreas Gruenbacher) [1925121]
+- gfs2: Fix an incorrect gfs2_assert() (Bob Peterson) [1925121]
+- gfs2: Remove vestigial bd_ops (Andreas Gruenbacher) [1925121]
+- gfs2: Fix the gfs2_invalidatepage description (Andreas Gruenbacher) [1925121]
+- gfs2: Clean up gfs2_is_{ordered,writeback} (Andreas Gruenbacher) [1925121]
+- gfs2: Pass resource group to rgblk_free (Andreas Gruenbacher) [1925121]
+- gfs2: Remove unnecessary gfs2_rlist_alloc parameter (Andreas Gruenbacher) [1925121]
+- gfs2: Fix some minor typos (Andreas Gruenbacher) [1925121]
+- gfs2: Remove unused RGRP_RSRV_MINBYTES definition (Andreas Gruenbacher) [1925121]
+- gfs2: Move rs_{sizehint, rgd_gh} fields into the inode (Andreas Gruenbacher) [1925121]
+- gfs2: Clean up out-of-bounds check in gfs2_rbm_from_block (Andreas Gruenbacher) [1925121]
+- gfs2: Always check the result of gfs2_rbm_from_block (Andreas Gruenbacher) [1925121]
+- gfs: no need to check return value of debugfs_create functions (Andreas Gruenbacher) [1925121]
+- serial_core: switch to ->[sg]et_serial() (Artem Savkov) [1952415]
+
+* Thu Aug 05 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-329.el8]
+- tipc: fix sleeping in tipc accept routine (Xin Long) [1986549]
+- tipc: fix implicit-connect for SYN+ (Xin Long) [1986549]
+- net: tipc: fix FB_MTU eat two pages (Xin Long) [1986549]
+- tipc: Return the correct errno code (Xin Long) [1986549]
+- net/mlx5: Fix checksum issue of VXLAN and IPsec crypto offload (Alaa Hleihel) [1979901]
+- net/mlx5: Optimize mlx5e_feature_checks for non IPsec packet (Alaa Hleihel) [1979901]
+- bpf, selftests: Fold test_current_pid_tgid_new_ns into test_progs. (Jiri Olsa) [1869447]
+- libbpf: Support BTF_KIND_FLOAT during type compatibility checks in CO-RE (Jiri Olsa) [1984486]
+- bpf: Generate BTF_KIND_FLOAT when linking vmlinux (Jiri Olsa) [1984486]
+- selftests/bpf: Add BTF_KIND_FLOAT to btf_dump_test_case_syntax (Jiri Olsa) [1984486]
+- selftests/bpf: Add BTF_KIND_FLOAT to test_core_reloc_size (Jiri Olsa) [1984486]
+- bpf: Document BTF_KIND_FLOAT in btf.rst (Jiri Olsa) [1984486]
+- selftests/bpf: Add BTF_KIND_FLOAT to the existing deduplication tests (Jiri Olsa) [1984486]
+- selftest/bpf: Add BTF_KIND_FLOAT tests (Jiri Olsa) [1984486]
+- bpf: Add BTF_KIND_FLOAT support (Jiri Olsa) [1984486]
+- selftests/bpf: Use the 25th bit in the "invalid BTF_INFO" test (Jiri Olsa) [1984486]
+- tools/bpftool: Add BTF_KIND_FLOAT support (Jiri Olsa) [1984486]
+- libbpf: Add BTF_KIND_FLOAT support (Jiri Olsa) [1984486]
+- bpf: Add BTF_KIND_FLOAT to uapi (Jiri Olsa) [1984486]
+- libbpf: Add explicit padding to btf_dump_emit_type_decl_opts (Jiri Olsa) [1984486]
+- selftests/bpf: Fix test_attach_probe for powerpc uprobes (Jiri Olsa) [1931531]
+- selftests/bpf: Mask bpf_csum_diff() return value to 16 bits in test_verifier (Jiri Olsa) [1942513]
+- openvswitch: add trace points (Aaron Conole) [1979680]
+- vxlan: add missing rcu_read_lock() in neigh_reduce() (Guillaume Nault) [1987310]
+- net: ip6_tunnel: Unregister catch-all devices (Guillaume Nault) [1987310]
+- net: sit: Unregister catch-all devices (Guillaume Nault) [1987310]
+- cpuidle: pseries: Do not cap the CEDE0 latency in fixup_cede0_latency() (Diego Domingos) [1952809]
+- cpuidle: pseries: Fixup CEDE0 latency only for POWER10 onwards (Diego Domingos) [1952809]
+- mm/swap: fix for "mm: workingset: age nonresident information alongside anonymous pages" (Rafael Aquini) [1984173]
+- mm/thp: remap_page() is only needed on anonymous THP (Rafael Aquini) [1984173]
+- mm/compaction: fix 'limit' in fast_isolate_freepages (Rafael Aquini) [1984173]
+- mm/huge_memory.c: don't discard hugepage if other processes are mapping it (Rafael Aquini) [1984173]
+- slub: restore slub_debug=- behavior (Rafael Aquini) [1984173]
+- mm/gup: fix try_grab_compound_head() race with split_huge_page() (Rafael Aquini) [1984173]
+- mm, futex: fix shared futex pgoff on shmem huge page (Rafael Aquini) [1984173]
+- x86/mm: Avoid truncating memblocks for SGX memory (Rafael Aquini) [1984173]
+- mm/thp: fix vma_address() if virtual address below file offset (Rafael Aquini) [1984173]
+- mm, thp: use head page in __migration_entry_wait() (Rafael Aquini) [1984173]
+- mm/slub.c: include swab.h (Rafael Aquini) [1984173]
+- mm/memory-failure: make sure wait for page writeback in memory_failure (Rafael Aquini) [1984173]
+- mm/slub: fix redzoning for small allocations (Rafael Aquini) [1984173]
+- mm, hugetlb: fix simple resv_huge_pages underflow on UFFDIO_COPY (Rafael Aquini) [1984173]
+- mm/page_alloc: fix counting of free pages after take off from buddy (Rafael Aquini) [1984173]
+- userfaultfd: release page in error path to avoid BUG_ON (Rafael Aquini) [1984173]
+- ksm: fix potential missing rmap_item for stable_node (Rafael Aquini) [1984173]
+- mm/migrate.c: fix potential indeterminate pte entry in migrate_vma_insert_page() (Rafael Aquini) [1984173]
+- mm/hugeltb: handle the error case in hugetlb_fix_reserve_counts() (Rafael Aquini) [1984173]
+- khugepaged: fix wrong result value for trace_mm_collapse_huge_page_isolate() (Rafael Aquini) [1984173]
+- mm/memory-failure: unnecessary amount of unmapping (Rafael Aquini) [1984173]
+- mm: page_alloc: ignore init_on_free=1 for debug_pagealloc=1 (Rafael Aquini) [1984173]
+- mm/sparse: add the missing sparse_buffer_fini() in error branch (Rafael Aquini) [1984173]
+- mm: memcontrol: fix cpuhotplug statistics flushing (Rafael Aquini) [1984173]
+- x86/mem_encrypt: Correct physical address calculation in __set_clr_pte_enc() (Rafael Aquini) [1984173]
+- zsmalloc: account the number of compacted pages correctly (Rafael Aquini) [1984173]
+- mm/compaction: fix misbehaviors of fast_find_migrateblock() (Rafael Aquini) [1984173]
+- hugetlb: fix update_and_free_page contig page struct assumption (Rafael Aquini) [1984173]
+- mm/hugetlb: fix potential double free in hugetlb_register_node() error path (Rafael Aquini) [1984173]
+- mm/memory.c: fix potential pte_unmap_unlock pte error (Rafael Aquini) [1984173]
+- mm/memory.c: fix potential pte_unmap_unlock pte error (Rafael Aquini) [1984173]
+- mm/hugetlb: fix potential missing huge page size info (Rafael Aquini) [1984173]
+- x86/mm: Fix leak of pmd ptlock (Rafael Aquini) [1984173]
+- mm/zswap: fix passing zero to 'PTR_ERR' warning (Rafael Aquini) [1984173]
+- mm/page_isolation: do not isolate the max order page (Rafael Aquini) [1984173]
+- mm,memory_failure: always pin the page in madvise_inject_error (Rafael Aquini) [1984173]
+- mm/page_alloc: speed up the iteration of max_order (Rafael Aquini) [1984173]
+- x86/mm/mem_encrypt: Fix definition of PMD_FLAGS_DEC_WP (Rafael Aquini) [1984173]
+- x86/mm/ident_map: Check for errors from ident_pud_init() (Rafael Aquini) [1984173]
+- mm, oom_adj: don't loop through tasks in __set_oom_adj when not necessary (Rafael Aquini) [1984173]
+- mm/page_alloc.c: fix freeing non-compound pages (Rafael Aquini) [1984173]
+- mm: khugepaged: recalculate min_free_kbytes after memory hotplug as expected by khugepaged (Rafael Aquini) [1984173]
+- percpu: fix first chunk size calculation for populated bitmap (Rafael Aquini) [1984173]
+- x86, fakenuma: Fix invalid starting node ID (Rafael Aquini) [1984173]
+- mm: include CMA pages in lowmem_reserve at boot (Rafael Aquini) [1984173]
+- mm/rodata_test.c: fix missing function declaration (Rafael Aquini) [1984173]
+- mm/page_counter: fix various data races at memsw (Rafael Aquini) [1984173]
+- khugepaged: retract_page_tables() remember to test exit (Rafael Aquini) [1984173]
+- mm/page_counter.c: fix protection usage propagation (Rafael Aquini) [1984173]
+- x86/mm/numa: Remove uninitialized_var() usage (Rafael Aquini) [1984173]
+- shmem: fix possible deadlocks on shmlock_user_lock (Rafael Aquini) [1984173]
+- mm: swap: use smp_mb__after_atomic() to order LRU bit set (Rafael Aquini) [1984173]
+- cgroup: memcg: net: do not associate sock with unrelated cgroup (Rafael Aquini) [1984173]
+- mm: fix gup_pud_range (Rafael Aquini) [1984173]
+- x86/mm: Fix NX bit clearing issue in kernel_map_pages_in_pgd (Rafael Aquini) [1984173]
+- mm/shmem.c: thp, shmem: fix conflict of above-47bit hint address and PMD alignment (Rafael Aquini) [1984173]
+- mm: Implement no-MMU variant of vmalloc_user_node_flags (Rafael Aquini) [1984173]
+- usercopy: Avoid HIGHMEM pfn warning (Rafael Aquini) [1984173]
+- x86/mm: Don't exceed the valid physical address space (Rafael Aquini) [1984173]
+- x86/mm/mem_encrypt: Fix erroneous sizeof() (Rafael Aquini) [1984173]
+- s390/mm: fix addressing exception after suspend/resume (Rafael Aquini) [1984173]
+- blk-mq: fix use-after-free in blk_mq_exit_sched (Ming Lei) [1969726]
+- nvmet: use new ana_log_size instead the old one (Maurizio Lombardi) [1949777]
+- nvme-multipath: fix double initialization of ANA state (Maurizio Lombardi) [1949777]
+- configs: enable CONFIG_LEDS_BRIGHTNESS_HW_CHANGED (Benjamin Tissoires) [1922973]
+
+* Tue Aug 03 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-328.el8]
+- Revert "xfs: enable new inode btree counters feature" (Bill O'Donnell) [1976969]
+- Revert "xfs: enable big timestamps" (Bill O'Donnell) [1976969]
+- Revert "xfs: remove kmem_realloc()" (Bill O'Donnell) [1976969]
+- xfs: prevent metadata files from being inactivated (Bill O'Donnell) [1976969]
+- quota: widen timestamps for the fs_disk_quota structure (Bill O'Donnell) [1976969]
+- cifs: fix fallocate when trying to allocate a hole. (Ronnie Sahlberg) [1866684]
+- cifs: only write 64kb at a time when fallocating a small region of a file (Ronnie Sahlberg) [1866684]
+- cifs: improve fallocate emulation (Ronnie Sahlberg) [1866684]
+- cifs: Do not use the original cruid when following DFS links for multiuser mounts (Ronnie Sahlberg) [1812436]
+- cifs: ignore relatime in smb3_fs_context_parse_monolithic() (Ronnie Sahlberg) [1812436]
+- cifs: fix regression when mounting shares with prefix paths (Ronnie Sahlberg) [1812436]
+- cifs: fix leak in cifs_smb3_do_mount() ctx (Ronnie Sahlberg) [1812436]
+- cifs: add fs_context param to parsing helpers (Ronnie Sahlberg) [1812436]
+- cifs: make fs_context error logging wrapper (Ronnie Sahlberg) [1812436]
+- cifs: warn and fail if trying to use rootfs without the config option (Ronnie Sahlberg) [1812436]
+- cifs: fix nodfs mount option (Ronnie Sahlberg) [1812436]
+- cifs: fix handling of escaped ',' in the password mount argument (Ronnie Sahlberg) [1812436]
+- cifs: Add new parameter "acregmax" for distinct file and directory metadata timeout (Ronnie Sahlberg) [1812436]
+- cifs: convert revalidate of directories to using directory metadata cache timeout (Ronnie Sahlberg) [1812436]
+- cifs: Add new mount parameter "acdirmax" to allow caching directory metadata (Ronnie Sahlberg) [1812436]
+- cifs: fix trivial typo (Ronnie Sahlberg) [1812436]
+- cifs: Set CIFS_MOUNT_USE_PREFIX_PATH flag on setting cifs_sb->prepath. (Ronnie Sahlberg) [1812436]
+- cifs: In the new mount api we get the full devname as source= (Ronnie Sahlberg) [1812436]
+- cifs: do not disable noperm if multiuser mount option is not provided (Ronnie Sahlberg) [1812436]
+- cifs: fix dfs-links (Ronnie Sahlberg) [1812436]
+- cifs: fix dfs domain referrals (Ronnie Sahlberg) [1812436]
+- cifs: returning mount parm processing errors correctly (Ronnie Sahlberg) [1812436]
+- cifs: fix mounts to subdirectories of target (Ronnie Sahlberg) [1812436]
+- cifs: ignore auto and noauto options if given (Ronnie Sahlberg) [1812436]
+- cifs: connect: style: Simplify bool comparison (Ronnie Sahlberg) [1812436]
+- fs: cifs: remove unneeded variable in smb3_fs_context_dup (Ronnie Sahlberg) [1812436]
+- cifs: Fix support for remount when not changing rsize/wsize (Ronnie Sahlberg) [1812436]
+- cifs: handle "guest" mount parameter (Ronnie Sahlberg) [1812436]
+- cifs: correct four aliased mount parms to allow use of previous names (Ronnie Sahlberg) [1812436]
+- cifs: fix use after free in cifs_smb3_do_mount() (Ronnie Sahlberg) [1812436]
+- cifs: fix rsize/wsize to be negotiated values (Ronnie Sahlberg) [1812436]
+- cifs: update super_operations to show_devname (Ronnie Sahlberg) [1812436]
+- cifs: fix uninitialized variable in smb3_fs_context_parse_param (Ronnie Sahlberg) [1812436]
+- cifs: update mnt_cifs_flags during reconfigure (Ronnie Sahlberg) [1812436]
+- cifs: move update of flags into a separate function (Ronnie Sahlberg) [1812436]
+- cifs: remove ctx argument from cifs_setup_cifs_sb (Ronnie Sahlberg) [1812436]
+- cifs: do not allow changing posix_paths during remount (Ronnie Sahlberg) [1812436]
+- cifs: uncomplicate printing the iocharset parameter (Ronnie Sahlberg) [1812436]
+- cifs: don't create a temp nls in cifs_setup_ipc (Ronnie Sahlberg) [1812436]
+- cifs: simplify handling of cifs_sb/ctx->local_nls (Ronnie Sahlberg) [1812436]
+- cifs: we do not allow changing username/password/unc/... during remount (Ronnie Sahlberg) [1812436]
+- cifs: add initial reconfigure support (Ronnie Sahlberg) [1812436]
+- cifs: move [brw]size from cifs_sb to cifs_sb->ctx (Ronnie Sahlberg) [1812436]
+- cifs: move cifs_cleanup_volume_info[_content] to fs_context.c (Ronnie Sahlberg) [1812436]
+- cifs: Add missing sentinel to smb3_fs_parameters (Ronnie Sahlberg) [1812436]
+- cifs: remove actimeo from cifs_sb (Ronnie Sahlberg) [1812436]
+- cifs: remove [gu]id/backup[gu]id/file_mode/dir_mode from cifs_sb (Ronnie Sahlberg) [1812436]
+- cifs: minor kernel style fixes for comments (Ronnie Sahlberg) [1812436]
+- linux/parser.h: add include guards (Ronnie Sahlberg) [1812436]
+- cifs: Make extract_sharename function public (Ronnie Sahlberg) [1812436]
+- cifs: Make extract_hostname function public (Ronnie Sahlberg) [1812436]
+- cifs: get rid of cifs_sb->mountdata (Ronnie Sahlberg) [1812436]
+- cifs: add an smb3_fs_context to cifs_sb (Ronnie Sahlberg) [1812436]
+- cifs: remove the devname argument to cifs_compose_mount_options (Ronnie Sahlberg) [1812436]
+- cifs: switch to new mount api (Ronnie Sahlberg) [1812436]
+- cifs: move cifs_parse_devname to fs_context.c (Ronnie Sahlberg) [1812436]
+- cifs: move the enum for cifs parameters into fs_context.h (Ronnie Sahlberg) [1812436]
+- cifs: rename dup_vol to smb3_fs_context_dup and move it into fs_context.c (Ronnie Sahlberg) [1812436]
+- cifs: rename smb_vol as smb3_fs_context and move it to fs_context.h (Ronnie Sahlberg) [1812436]
+- cifs: Fix fall-through warnings for Clang (Ronnie Sahlberg) [1812436]
+- cifs: refactor create_sd_buf() and and avoid corrupting the buffer (Ronnie Sahlberg) [1812436]
+- scsi: lpfc: Fix failure to transmit ABTS on FC link (Dick Kennedy) [1964670]
+- scsi: lpfc: Update lpfc version to 12.8.0.10 (Dick Kennedy) [1964670]
+- scsi: lpfc: Reregister FPIN types if ELS_RDF is received from fabric controller (Dick Kennedy) [1964670]
+- scsi: lpfc: Add a option to enable interlocked ABTS before job completion (Dick Kennedy) [1964670]
+- scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the SGLs (Dick Kennedy) [1964670]
+- scsi: lpfc: Ignore GID-FT response that may be received after a link flip (Dick Kennedy) [1964670]
+- scsi: lpfc: Fix node handling for Fabric Controller and Domain Controller (Dick Kennedy) [1964670]
+- scsi: lpfc: Fix Node recovery when driver is handling simultaneous PLOGIs (Dick Kennedy) [1964670]
+- scsi: lpfc: Add ndlp kref accounting for resume RPI path (Dick Kennedy) [1964670]
+- scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology (Dick Kennedy) [1964670]
+- scsi: lpfc: Fix non-optimized ERSP handling (Dick Kennedy) [1964670]
+- scsi: lpfc: Fix unreleased RPIs when NPIV ports are created (Dick Kennedy) [1964670]
+- scsi: lpfc: Remove redundant assignment to pointer temp_hdr (Dick Kennedy) [1964670]
+- Documentation: add more details in tipc.rst (Xin Long) [1872308]
+- net/tipc: add TIPC chapter to networking Documentation (Xin Long) [1872308]
+- scsi: qla2xxx: Reserve extra IRQ vectors (Nilesh Javali) [1964834]
+- tracing/hwlat: Honor the tracing_cpumask (Jerome Marchand) [1920595]
+- tracing/hwlat: Drop the duplicate assignment in start_kthread() (Jerome Marchand) [1920595]
+- sfc: add logs explaining XDP_TX/REDIRECT is not available (Íñigo Huguet) [1976756]
+- sfc: ensure correct number of XDP queues (Íñigo Huguet) [1976756]
+- sfc: fix lack of XDP TX queues - error XDP TX failed (-22) (Íñigo Huguet) [1976756]
+- sfc: Remove rcu_read_lock() around XDP program invocation (Íñigo Huguet) [1976756]
+- sfc: use DEVICE_ATTR_*() macro (Íñigo Huguet) [1976756]
+- sfc: farch: fix compile warning in efx_farch_dimension_resources() (Íñigo Huguet) [1976756]
+- sfc: don't use netif_info et al before net_device is registered (Íñigo Huguet) [1976756]
+- net: stmmac: Do not enable RX FIFO overflow interrupts (Mark Salter) [1905243]
+- net: stmmac: Clear receive all(RA) bit when promiscuous mode is off (Mark Salter) [1905243]
+- net: stmmac: cleared __FPE_REMOVING bit in stmmac_fpe_start_wq() (Mark Salter) [1905243]
+- stmmac: intel: Enable HW descriptor prefetch by default (Mark Salter) [1905243]
+- net: stmmac: Add HW descriptor prefetch setting for DWMAC Core 5.20 onwards (Mark Salter) [1905243]
+- net: stmmac: fix TSO and TBS feature enabling during driver open (Mark Salter) [1905243]
+- stmmac: intel: set TSO/TBS TX Queues default settings (Mark Salter) [1905243]
+- stmmac: intel: unlock on error path in intel_crosststamp() (Mark Salter) [1905243]
+- net: stmmac: use __napi_schedule() for PREEMPT_RT (Mark Salter) [1905243]
+- stmmac: intel: Enable SERDES PHY rx clk for PSE (Mark Salter) [1905243]
+- stmmac: intel: Drop duplicate ID in the list of PCI device IDs (Mark Salter) [1905243]
+- stmmac: intel: add cross time-stamping freq difference adjustment (Mark Salter) [1905243]
+- net: stmmac: Add support for external trigger timestamping (Mark Salter) [1905243]
+- net: stmmac: fix dma physical address of descriptor when display ring (Mark Salter) [1905243]
+- net: stmmac: fix wrongly set buffer2 valid when sph unsupport (Mark Salter) [1905243]
+- net: stmmac: arrange Tx tail pointer update to stmmac_flush_tx_descriptors (Mark Salter) [1905243]
+- net: stmmac: make SPH enable/disable to be configurable (Mark Salter) [1905243]
+- net: stmmac: set IRQ affinity hint for multi MSI vectors (Mark Salter) [1905243]
+- net: stmmac: remove unnecessary pci_enable_msi() call (Mark Salter) [1905243]
+- stmmac: intel: use managed PCI function on probe and resume (Mark Salter) [1905243]
+- net: stmmac: enable MTL ECC Error Address Status Over-ride by default (Mark Salter) [1905243]
+- net: ethernet: stmicro: Remove duplicate struct declaration (Mark Salter) [1905243]
+- net: stmmac: fix missing unlock on error in stmmac_suspend() (Mark Salter) [1905243]
+- net: stmmac: Fix kernel panic due to NULL pointer dereference of fpe_cfg (Mark Salter) [1905243]
+- net: stmmac: use interrupt mode INTM=1 for multi-MSI (Mark Salter) [1905243]
+- stmmac: intel: add support for multi-vector msi and msi-x (Mark Salter) [1905243]
+- net: stmmac: introduce MSI Interrupt routines for mac, safety, RX & TX (Mark Salter) [1905243]
+- net: stmmac: make stmmac_interrupt() function more friendly to MSI (Mark Salter) [1905243]
+- net: stmmac: introduce DMA interrupt status masking per traffic direction (Mark Salter) [1905243]
+- net: phy: marvell10g: Add PHY loopback support (Mark Salter) [1905243]
+- net: phy: add genphy_c45_loopback (Mark Salter) [1905243]
+- net: phylink: Fix phylink_err() function name error in phylink_major_config (Mark Salter) [1905243]
+- net: stmmac: support FPE link partner hand-shaking procedure (Mark Salter) [1905243]
+- net: stmmac: Add hardware supported cross-timestamp (Mark Salter) [1905243]
+- net: stmmac: platform: fix build error with !CONFIG_PM_SLEEP (Mark Salter) [1905243]
+- stmmac: intel: Add PSE and PCH PTP clock source selection (Mark Salter) [1905243]
+- net: stmmac: Add EST errors into ethtool statistic (Mark Salter) [1905243]
+- net: stmmac: EST interrupts handling and error reporting (Mark Salter) [1905243]
+- net: stmmac: add RX frame steering based on VLAN priority in tc flower (Mark Salter) [1905243]
+- net: stmmac: restructure tc implementation for RX VLAN Priority steering (Mark Salter) [1905243]
+- net: stmmac: add per-queue TX & RX coalesce ethtool support (Mark Salter) [1905243]
+- net: stmmac: Use hrtimer for TX coalescing (Mark Salter) [1905243]
+- net: stmmac: add timestamp correction to rid CDC sync error (Mark Salter) [1905243]
+- net: stmmac: add platform level clocks management (Mark Salter) [1905243]
+- net: stmmac: add clocks management for gmac driver (Mark Salter) [1905243]
+- stmmac: intel: add pcs-xpcs for Intel mGbE controller (Mark Salter) [1905243]
+- net: stmmac: ensure phydev is attached to phylink for C37 AN (Mark Salter) [1905243]
+- net: stmmac: make in-band AN mode parsing is supported for non-DT (Mark Salter) [1905243]
+- net: phylink: make phylink_parse_mode() support non-DT platform (Mark Salter) [1905243]
+- net: pcs: add C37 SGMII AN support for intel mGbE controller (Mark Salter) [1905243]
+- net: pcs: rearrange C73 functions to prepare for C37 support later (Mark Salter) [1905243]
+- net: phy: leds: Deduplicate link LED trigger registration (Mark Salter) [1905243]
+- net: stmmac: Fix VLAN filter delete timeout issue in Intel mGBE SGMII (Mark Salter) [1905243]
+- net: stmmac: fix incorrect DMA channel intr enable setting of EQoS v4.10 (Mark Salter) [1905243]
+- net: stmmac: fix CBS idleslope and sendslope calculation (Mark Salter) [1905243]
+- net: stmmac: set TxQ mode back to DCB after disabling CBS (Mark Salter) [1905243]
+- net: stmmac: allow stmmac to probe for C45 PHY devices (Mark Salter) [1905243]
+- net: stmmac: Enable EEE HW LPI timer with auto SW/HW switching (Mark Salter) [1905243]
+- net: pcs-xpcs: depend on MDIO_BUS instead of selecting it (Mark Salter) [1905243]
+- net: pcs: Move XPCS into new PCS subdirectory (Mark Salter) [1905243]
+- net: stmmac: Add XLGMII support (Mark Salter) [1905243]
+- net: phy: xpcs: Add XLGMII support (Mark Salter) [1905243]
+- net: phy: xpcs: Restart AutoNeg if outcome was invalid (Mark Salter) [1905243]
+- net: phy: xpcs: Set Link down if AutoNeg is enabled and did not finish (Mark Salter) [1905243]
+- net: phy: xpcs: Reset XPCS upon probe (Mark Salter) [1905243]
+- net: phy: xpcs: Return error when 10GKR link errors are found (Mark Salter) [1905243]
+- stmmac/intel: mark driver as tech preview (Mark Salter) [1905243]
+- redhat/configs: Add CONFIG_DWMAC_INTEL (Mark Salter) [1905243]
+- stmmac: intel: Fixes clock registration error seen for multiple interfaces (Mark Salter) [1905243]
+- stmmac: intel: Fix mdio bus registration issue for TGL-H/ADL-S (Mark Salter) [1905243]
+- net: stmmac: Add PCI bus info to ethtool driver query output (Mark Salter) [1905243]
+- stmmac: intel: Add ADL-S 1Gbps PCI IDs (Mark Salter) [1905243]
+- stmmac: intel: Configure EHL PSE0 GbE and PSE1 GbE to 32 bits DMA addressing (Mark Salter) [1905243]
+- stmmac: intel: Add PCI IDs for TGL-H platform (Mark Salter) [1905243]
+- stmmac: intel: change all EHL/TGL to auto detect phy addr (Mark Salter) [1905243]
+- net: stmmac: overwrite the dma_cap.addr64 according to HW design (Mark Salter) [1905243]
+- stmmac: intel: Fix kernel panic on pci probe (Mark Salter) [1905243]
+- stmmac: intel: Adding ref clock 1us tic for LPI cntr (Mark Salter) [1905243]
+- net: stmmac: Add option for VLAN filter fail queue enable (Mark Salter) [1905243]
+- net: stmmac: Fix clock handling on remove path (Mark Salter) [1905243]
+- stmmac: intel: Place object in the Makefile according to the order (Mark Salter) [1905243]
+- stmmac: intel: Fix indentation to put on one line affected code (Mark Salter) [1905243]
+- stmmac: intel: Eliminate useless conditions and variables (Mark Salter) [1905243]
+- stmmac: intel: Convert to use pci_alloc_irq_vectors() API (Mark Salter) [1905243]
+- stmmac: intel: Remove unnecessary loop for PCI BARs (Mark Salter) [1905243]
+- stmmac: intel: Fix clock handling on error and remove paths (Mark Salter) [1905243]
+- net: stmmac: Enable SERDES power up/down sequence (Mark Salter) [1905243]
+- net: stmmac: add EHL 2.5Gbps PCI info and PCI ID (Mark Salter) [1905243]
+- net: stmmac: add EHL PSE0 & PSE1 1Gbps PCI info and PCI ID (Mark Salter) [1905243]
+- net: stmmac: create dwmac-intel.c to contain all Intel platform (Mark Salter) [1905243]
+- net: stmmac: Get rid of custom STMMAC_DEVICE() macro (Mark Salter) [1905243]
+- net: stmmac: update pci platform data to use phy_interface (Mark Salter) [1905243]
+- net: stmmac: pci: Enable TBS on GMAC5 IPK PCI entry (Mark Salter) [1905243]
+- net: stmmac: pci: remove the duplicate code of set phy_mask (Mark Salter) [1905243]
+- PCI: Add PCI_STD_NUM_BARS for the number of standard BARs (Mark Salter) [1905243]
+- net: stmmac: pci: Add HAPS support using GMAC5 (Mark Salter) [1905243]
+- net: stmmac: setup higher frequency clk support for EHL & TGL (Mark Salter) [1905243]
+- net: stmmac: add EHL RGMII 1Gbps PCI info and PCI ID (Mark Salter) [1905243]
+- net: stmmac: add TGL SGMII 1Gbps PCI info and PCI ID (Mark Salter) [1905243]
+- net: stmmac: add EHL SGMII 1Gbps PCI info and PCI ID (Mark Salter) [1905243]
+- net: stmmac: Make MDIO bus reset optional (Mark Salter) [1905243]
+- stmmac: pci: Use pci_dev_id() helper (Mark Salter) [1905243]
+- stmmac: pci: Fix typo in IOT2000 comment (Mark Salter) [1905243]
+- stmmac: pci: Adjust IOT2000 matching (Mark Salter) [1905243]
+- net: stmmac: Fix PCI module removal leak (Mark Salter) [1905243]
+- net: stmmac: mark PM functions as __maybe_unused (Mark Salter) [1905243]
+- ibmveth: Set CHECKSUM_PARTIAL if NULL TCP CSUM. (Diego Domingos) [1939996]
+- IB/core: Add missing pin_user_pages*() usage (Waiman Long) [1972078]
+- mm/gup/writeback: Fix incorrect inaccessible pages handling (Waiman Long) [1972078]
+- netfilter: nf_tables: bogus EBUSY when deleting flowtable after flush (Phil Sutter) [1983245]
+- ipv4: Fix device used for dst_alloc with local routes (Antoine Tenart) [1976789]
+- vrf: fix a comment about loopback device (Antoine Tenart) [1976789]
+- net: vrf: Fix operation not supported when set vrf mac (Antoine Tenart) [1976789]
+- vrf: prevent adding upper devices (Antoine Tenart) [1976789]
+- vrf: fix maximum MTU (Antoine Tenart) [1976789]
+- net: vrf: Fix ping failed when vrf mtu is set to 0 (Antoine Tenart) [1976789]
+- net: vrf: remove MTU limits for vrf device (Antoine Tenart) [1976789]
+
+* Fri Jul 30 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-327.el8]
+- block: fix discard request merge (Ming Lei) [1970316]
+- blk-mq: update hctx->dispatch_busy in case of real scheduler (Ming Lei) [1976679]
+- block: Do not pull requests from the scheduler when we cannot dispatch them (Ming Lei) [1976679]
+- powerpc/pseries/mobility: handle premature return from H_JOIN (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: use struct for shared state (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: refactor node lookup during DT update (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtas: remove rtas_ibm_suspend_me_unsafe() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtas: dispatch partition migration requests to pseries (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: retry partition suspend after error (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: signal suspend cancellation to platform (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: use stop_machine for join/suspend (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: extract VASI session polling logic (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: use rtas_activate_firmware() on resume (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: error message improvements (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/hvcall: add token and codes for H_VASI_SIGNAL (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtas: add rtas_activate_firmware() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtas: add rtas_ibm_suspend_me() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtas: rtas_ibm_suspend_me -> rtas_ibm_suspend_me_unsafe (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtas: complete ibm,suspend-me status codes (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: Add pr_debug() for device tree changes (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries/mobility: Set pr_fmt() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries: remove obsolete memory hotplug DT notifier code (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries: remove dlpar_cpu_readd() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries: remove memory "re-add" implementation (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/pseries: remove prrn special case from DT update path (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove arch_update_cpu_topology (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove prrn_is_enabled() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtasd: simplify handle_rtas_event(), emit message on events (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove start/stop_topology_update() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove timed_topology_update() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: Handle extra hcall_vphn error cases (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: Suppress "VPHN is not supported" messages (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: stub out numa_update_cpu_topology() (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove vphn_enabled and prrn_enabled internal flags (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove unreachable topology workqueue code (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove unreachable topology timer code (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: make vphn_enabled, prrn_enabled flags const (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove unreachable topology update code (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/numa: remove ability to enable topology updates (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtas: don't online CPUs for partition suspend (Desnes A. Nunes do Rosario) [1979798]
+- powerpc/rtas: Unexport rtas_online_cpus_mask, rtas_offline_cpus_mask (Desnes A. Nunes do Rosario) [1979798]
+- mm/page_alloc: bail out on fatal signal during reclaim/compaction retry attempt (Aaron Tomlin) [1919765]
+- RHEL: Revert "powerpc/kvm: Fix PR KVM with KUAP/MEM_KEYS enabled" (Paolo Bonzini) [1956950]
+- KVM: selftests: smm_test: Test SMM enter from L2 (Paolo Bonzini) [1956950]
+- KVM: nSVM: Restore nested control upon leaving SMM (Paolo Bonzini) [1956950]
+- KVM: nSVM: Fix L1 state corruption upon return from SMM (Paolo Bonzini) [1956950]
+- KVM: nSVM: Introduce svm_copy_vmrun_state() (Paolo Bonzini) [1956950]
+- KVM: nSVM: Check that VM_HSAVE_PA MSR was set before VMRUN (Paolo Bonzini) [1956950]
+- KVM: nVMX: nSVM: 'nested_run' should count guest-entry attempts that make it to guest code (Paolo Bonzini) [1956950]
+- KVM: nSVM: Check the value written to MSR_VM_HSAVE_PA (Paolo Bonzini) [1956950]
+- KVM: SVM: Fix sev_pin_memory() error checks in SEV migration utilities (Paolo Bonzini) [1956950]
+- KVM: SVM: Return -EFAULT if copy_to_user() for SEV mig packet header fails (Paolo Bonzini) [1956950]
+- KVM: SVM: add module param to control the #SMI interception (Paolo Bonzini) [1956950]
+- KVM: SVM: remove INIT intercept handler (Paolo Bonzini) [1956950]
+- KVM: SVM: #SMI interception must not skip the instruction (Paolo Bonzini) [1956950]
+- KVM: VMX: Remove vmx_msr_index from vmx.h (Paolo Bonzini) [1956950]
+- KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() (Paolo Bonzini) [1956950]
+- KVM: x86/pmu: Clear anythread deprecated bit when 0xa leaf is unsupported on the SVM (Paolo Bonzini) [1956950]
+- KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio (Paolo Bonzini) [1956950]
+- KVM: SVM: Revert clearing of C-bit on GPA in #NPF handler (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: Do not apply HPA (memory encryption) mask to GPAs (Paolo Bonzini) [1956950]
+- KVM: x86: Use kernel's x86_phys_bits to handle reduced MAXPHYADDR (Paolo Bonzini) [1956950]
+- KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled (Paolo Bonzini) [1956950]
+- KVM: selftests: do not require 64GB in set_memory_region_test (Paolo Bonzini) [1956950]
+- KVM: selftests: Fix mapping length truncation in m{,un}map() (Paolo Bonzini) [1956950]
+- KVM: x86: Force all MMUs to reinitialize if guest CPUID is modified (Paolo Bonzini) [1956950]
+- Revert "KVM: x86/mmu: Drop kvm_mmu_extended_role.cr4_la57 hack" (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: Use MMU's role to detect CR4.SMEP value in nested NPT walk (Paolo Bonzini) [1956950]
+- KVM: x86: Properly reset MMU context at vCPU RESET/INIT (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: Treat NX as used (not reserved) for all !TDP shadow MMUs (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: Remove broken WARN that fires on 32-bit KVM w/ nested EPT (Paolo Bonzini) [1956950]
+- KVM: nVMX: Handle split-lock #AC exceptions that happen in L2 (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: Calculate and check "full" mmu_role for nested MMU (Paolo Bonzini) [1956950]
+- KVM: X86: Fix x86_emulator slab cache leak (Paolo Bonzini) [1956950]
+- KVM: SVM: Call SEV Guest Decommission if ASID binding fails (Paolo Bonzini) [1956950]
+- KVM: x86: Immediately reset the MMU context when the SMM flag is cleared (Paolo Bonzini) [1956950]
+- KVM: x86: Fix fall-through warnings for Clang (Paolo Bonzini) [1956950]
+- KVM: SVM: fix doc warnings (Paolo Bonzini) [1956950]
+- kvm: LAPIC: Restore guard to prevent illegal APIC register access (Paolo Bonzini) [1956950]
+- kvm: fix previous commit for 32-bit builds (Paolo Bonzini) [1956950]
+- kvm: avoid speculation-based attacks from out-of-range memslot accesses (Paolo Bonzini) [1956950]
+- KVM: x86: Ensure liveliness of nested VM-Enter fail tracepoint message (Paolo Bonzini) [1956950]
+- KVM: x86: Ensure PV TLB flush tracepoint reflects KVM behavior (Paolo Bonzini) [1956950]
+- KVM: X86: MMU: Use the correct inherited permissions to get shadow page (Paolo Bonzini) [1956950]
+- KVM: LAPIC: Write 0 to TMICT should also cancel vmx-preemption timer (Paolo Bonzini) [1956950]
+- KVM: SVM: Fix SEV SEND_START session length & SEND_UPDATE_DATA query length after commit 238eca821cee (Paolo Bonzini) [1956950]
+- KVM: X86: Kill off ctxt->ud (Paolo Bonzini) [1956950]
+- KVM: X86: Fix warning caused by stale emulation context (Paolo Bonzini) [1956950]
+- KVM: X86: Use kvm_get_linear_rip() in single-step and #DB/#BP interception (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: Fix comment mentioning skip_4k (Paolo Bonzini) [1956950]
+- KVM: VMX: update vcpu posted-interrupt descriptor when assigning device (Paolo Bonzini) [1956950]
+- KVM: rename KVM_REQ_PENDING_TIMER to KVM_REQ_UNBLOCK (Paolo Bonzini) [1956950]
+- KVM: x86: add start_assignment hook to kvm_x86_ops (Paolo Bonzini) [1956950]
+- KVM: LAPIC: Narrow the timer latency between wait_lapic_expire and world switch (Paolo Bonzini) [1956950]
+- KVM: X86: Fix vCPU preempted state from guest's point of view (Paolo Bonzini) [1956950]
+- KVM: X86: Bail out of direct yield in case of under-committed scenarios (Paolo Bonzini) [1956950]
+- KVM: SVM: make the avic parameter a bool (Paolo Bonzini) [1956950]
+- KVM: VMX: Drop unneeded CONFIG_X86_LOCAL_APIC check (Paolo Bonzini) [1956950]
+- KVM: SVM: Drop unneeded CONFIG_X86_LOCAL_APIC check (Paolo Bonzini) [1956950]
+- KVM: SVM: Move GHCB unmapping to fix RCU warning (Paolo Bonzini) [1956950]
+- KVM: SVM: Invert user pointer casting in SEV {en,de}crypt helpers (Paolo Bonzini) [1956950]
+- kvm: Cap halt polling at kvm->max_halt_poll_ns (Paolo Bonzini) [1956950]
+- KVM: x86: Prevent deadlock against tk_core.seq (Paolo Bonzini) [1956950]
+- KVM: x86: Cancel pvclock_gtod_work on module removal (Paolo Bonzini) [1956950]
+- KVM: x86: Prevent KVM SVM from loading on kernels with 5-level paging (Paolo Bonzini) [1956950]
+- KVM: SVM: Probe and load MSR_TSC_AUX regardless of RDTSCP support in host (Paolo Bonzini) [1956950]
+- KVM: VMX: Disable preemption when probing user return MSRs (Paolo Bonzini) [1956950]
+- KVM: x86: Move RDPID emulation intercept to its own enum (Paolo Bonzini) [1956950]
+- KVM: SVM: Inject #UD on RDTSCP when it should be disabled in the guest (Paolo Bonzini) [1956950]
+- KVM: x86: Emulate RDPID only if RDTSCP is supported (Paolo Bonzini) [1956950]
+- KVM: VMX: Do not advertise RDPID if ENABLE_RDTSCP control is unsupported (Paolo Bonzini) [1956950]
+- KVM: nSVM: always restore the L1's GIF on migration (Paolo Bonzini) [1956950]
+- KVM: x86: Hoist input checks in kvm_add_msr_filter() (Paolo Bonzini) [1956950]
+- KVM: nVMX: Properly pad 'struct kvm_vmx_nested_state_hdr' (Paolo Bonzini) [1956950]
+- KVM/VMX: Invoke NMI non-IST entry instead of IST entry (Paolo Bonzini) [1956950]
+- KVM: x86: Fix potential fput on a null source_kvm_file (Paolo Bonzini) [1956950]
+- KVM: nSVM: leave the guest mode prior to loading a nested state (Paolo Bonzini) [1956950]
+- KVM: nSVM: fix few bugs in the vmcb02 caching logic (Paolo Bonzini) [1956950]
+- KVM: nSVM: fix a typo in svm_leave_nested (Paolo Bonzini) [1956950]
+- KVM: PPC: exit halt polling on need_resched() (Paolo Bonzini) [1956950]
+- kvm: exit halt polling on need_resched() as well (Paolo Bonzini) [1956950]
+- KVM: LAPIC: Accurately guarantee busy wait for timer to expire when using hv_timer (Paolo Bonzini) [1956950]
+- kvm/x86: Fix 'lpages' kvm stat for TDM MMU (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: Avoid unnecessary page table allocation in kvm_tdp_mmu_map() (Paolo Bonzini) [1956950]
+- KVM: selftests: Speed up set_memory_region_test (Paolo Bonzini) [1956950]
+- selftests: kvm: Fix the check of return value (Paolo Bonzini) [1956950]
+- KVM: x86: Take advantage of kvm_arch_dy_has_pending_interrupt() (Paolo Bonzini) [1956950]
+- KVM: SVM: Skip SEV cache flush if no ASIDs have been used (Paolo Bonzini) [1956950]
+- KVM: SVM: Remove an unnecessary prototype declaration of sev_flush_asids() (Paolo Bonzini) [1956950]
+- KVM: SVM: Drop redundant svm_sev_enabled() helper (Paolo Bonzini) [1956950]
+- KVM: SVM: Move SEV VMCB tracking allocation to sev.c (Paolo Bonzini) [1956950]
+- KVM: SVM: Explicitly check max SEV ASID during sev_hardware_setup() (Paolo Bonzini) [1956950]
+- KVM: SVM: Unconditionally invoke sev_hardware_teardown() (Paolo Bonzini) [1956950]
+- KVM: SVM: Enable SEV/SEV-ES functionality by default (when supported) (Paolo Bonzini) [1956950]
+- KVM: SVM: Condition sev_enabled and sev_es_enabled on CONFIG_KVM_AMD_SEV=y (Paolo Bonzini) [1956950]
+- KVM: SVM: Append "_enabled" to module-scoped SEV/SEV-ES control variables (Paolo Bonzini) [1956950]
+- KVM: SEV: Mask CPUID[0x8000001F].eax according to supported features (Paolo Bonzini) [1956950]
+- KVM: SVM: Move SEV module params/variables to sev.c (Paolo Bonzini) [1956950]
+- svm/sev: Register SEV and SEV-ES ASIDs to the misc controller (Paolo Bonzini) [1956950]
+- KVM: SVM: Disable SEV/SEV-ES if NPT is disabled (Paolo Bonzini) [1956950]
+- KVM: SVM: Free sev_asid_bitmap during init if SEV setup fails (Paolo Bonzini) [1956950]
+- KVM: SVM: Zero out the VMCB array used to track SEV ASID association (Paolo Bonzini) [1956950]
+- KVM: x86: Move reverse CPUID helpers to separate header file (Paolo Bonzini) [1956950]
+- KVM: x86: Rename GPR accessors to make mode-aware variants the defaults (Paolo Bonzini) [1956950]
+- KVM: SVM: Use default rAX size for INVLPGA emulation (Paolo Bonzini) [1956950]
+- KVM: x86/xen: Drop RAX[63:32] when processing hypercall (Paolo Bonzini) [1956950]
+- KVM: nVMX: Truncate base/index GPR value on address calc in !64-bit (Paolo Bonzini) [1956950]
+- KVM: nVMX: Truncate bits 63:32 of VMCS field on nested check in !64-bit (Paolo Bonzini) [1956950]
+- KVM: VMX: Truncate GPR value for DR and CR reads in !64-bit mode (Paolo Bonzini) [1956950]
+- KVM: SVM: Truncate GPR value for DR and CR accesses in !64-bit mode (Paolo Bonzini) [1956950]
+- KVM: x86: Check CR3 GPA for validity regardless of vCPU mode (Paolo Bonzini) [1956950]
+- KVM: x86: Remove emulator's broken checks on CR0/CR3/CR4 loads (Paolo Bonzini) [1956950]
+- KVM: VMX: Intercept FS/GS_BASE MSR accesses for 32-bit KVM (Paolo Bonzini) [1956950]
+- KVM: SVM: Delay restoration of host MSR_TSC_AUX until return to userspace (Paolo Bonzini) [1956950]
+- KVM: SVM: Clear MSR_TSC_AUX[63:32] on write (Paolo Bonzini) [1956950]
+- KVM: SVM: Inject #GP on guest MSR_TSC_AUX accesses if RDTSCP unsupported (Paolo Bonzini) [1956950]
+- KVM: VMX: Invert the inlining of MSR interception helpers (Paolo Bonzini) [1956950]
+- KVM: X86: Fix failure to boost kernel lock holder candidate in SEV-ES guests (Paolo Bonzini) [1956950]
+- KVM: x86: Properly handle APF vs disabled LAPIC situation (Paolo Bonzini) [1956950]
+- KVM: VMX: use EPT_VIOLATION_GVA_TRANSLATED instead of 0x100 (Paolo Bonzini) [1956950]
+- KVM: x86: Support KVM VMs sharing SEV context (Paolo Bonzini) [1956950]
+- KVM: x86: Remove unused function declaration (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: Drop trace_kvm_age_page() tracepoint (Paolo Bonzini) [1956950]
+- KVM: Move prototypes for MMU notifier callbacks to generic code (Paolo Bonzini) [1956950]
+- KVM: Pass MMU notifier range flags to kvm_unmap_hva_range() (Paolo Bonzini) [1956950]
+- KVM: x86/mmu: preserve pending TLB flush across calls to kvm_tdp_mmu_zap_sp (Paolo Bonzini) [1956950]
+- KVM: x86: disable interrupts while pvclock_gtod_sync_lock is taken (Paolo Bonzini) [1956950]
+- KVM: x86: reduce pvclock_gtod_sync_lock critical sections (Paolo Bonzini) [1956950]
+- kvm: x86: annotate RCU pointers (Paolo Bonzini) [1956950]
+- KVM: x86: remove misplaced comment on active_mmu_pages (Paolo Bonzini) [1956950]
+- x86/sev: Drop redundant and potentially misleading 'sev_enabled' (Paolo Bonzini) [1956950]
+- x86/cpufeatures: Assign dedicated feature word for CPUID_0x8000001F[EAX] (Paolo Bonzini) [1956950]
+- cgroup: Add misc cgroup controller (Paolo Bonzini) [1956950]
+- x86: Remove duplicate TSC DEADLINE MSR definitions (Paolo Bonzini) [1956950]
+- KVM: s390: allow facility 192 (vector-packed-decimal-enhancement facility 2) (Thomas Huth) [1977289]
+- KVM: s390: gen_facilities: allow facilities 165, 193, 194 and 196 (Thomas Huth) [1977289]
+- mpi3mr: mark as tech preview (Tomas Henzl) [1858804]
+- add the mpi3mr config (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Fix W=1 compilation warnings (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Fix warnings reported by smatch (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Make some symbols static (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Fix error return code in mpi3mr_init_ioc() (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Fix missing unlock on error (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Fix error handling in mpi3mr_setup_isr() (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Delete unnecessary NULL check (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Fix a double free (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Fix fall-through warning for Clang (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add event handling debug prints (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add EEDP DIF DIX support (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for DSN secure firmware check (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for PM suspend and resume (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Wait for pending I/O completions upon detection of VD I/O timeout (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Print pending host I/Os for debugging (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Complete support for soft reset (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for threaded ISR (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Hardware workaround for UNMAP commands to NVMe drives (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Allow certain commands during pci-remove hook (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add change queue depth support (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Implement SCSI error handler hooks (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add bios_param SCSI host template hook (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Print IOC info for debugging (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for timestamp sync with firmware (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for recovering controller (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Additional event handling (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for PCIe device event handling (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for device add/remove event handling (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for internal watchdog thread (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add support for queue command processing (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Create operational request and reply queue pair (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Base driver code (Tomas Henzl) [1858804]
+- scsi: mpi3mr: Add mpi30 Rev-R headers and Kconfig (Tomas Henzl) [1858804]
+- e1000e: Fix prototype warning (Ken Cox) [1920290]
+- e1000e: Mark e1000e_pm_prepare() as __maybe_unused (Ken Cox) [1920290]
+- e1000e: Fix duplicate include guard (Ken Cox) [1920290]
+- e1000e: Remove the runtime suspend restriction on CNP+ (Ken Cox) [1920290]
+- e1000e: Leverage direct_complete to speed up s2ram (Ken Cox) [1920290]
+- e1000e: Fix error handling in e1000_set_d0_lplu_state_82571 (Ken Cox) [1920290]
+- e1000e: add rtnl_lock() to e1000_reset_task (Ken Cox) [1920290]
+- e1000e: remove the redundant value assignment in e1000_update_nvm_checksum_spt (Ken Cox) [1920290]
+- e1000e: Export S0ix flags to ethtool (Ken Cox) [1920290]
+- e1000e: bump up timeout to wait when ME un-configures ULP mode (Ken Cox) [1920290]
+- e1000e: Only run S0ix flows if shutdown succeeded (Ken Cox) [1920290]
+- scsi: ipr: System crashes when seeing type 20 error (Desnes A. Nunes do Rosario) [1977532]
+- scsi: ipr: Use scnprintf() for avoiding potential buffer overflow (Desnes A. Nunes do Rosario) [1977532]
+- tipc: do not write skb_shinfo frags when doing decrytion (Xin Long) [1974627]
+- bnxt_en: Call bnxt_ethtool_free() in bnxt_init_one() error path (Jonathan Toppins) [1921449]
+- bnxt_en: Fix TQM fastpath ring backing store computation (Jonathan Toppins) [1921449]
+- bnxt_en: Rediscover PHY capabilities after firmware reset (Jonathan Toppins) [1921449]
+- bnxt_en: Fix context memory setup for 64K page size. (Jonathan Toppins) [1921449]
+- bnxt_en: Include new P5 HV definition in VF check. (Jonathan Toppins) [1921449]
+- bnxt_en: Add PCI IDs for Hyper-V VF devices. (Jonathan Toppins) [1921449]
+- bnxt_en: Fix RX consumer index logic in the error path. (Jonathan Toppins) [1921449]
+- bnxt_en: fix ternary sign extension bug in bnxt_show_temp() (Jonathan Toppins) [1921449]
+- bnxt_en: reliably allocate IRQ table on reset to avoid crash (Jonathan Toppins) [1921449]
+- bnxt_en: Fix race between firmware reset and driver remove. (Jonathan Toppins) [1921449]
+- bnxt_en: Improve logging of error recovery settings information. (Jonathan Toppins) [1921449]
+- bnxt_en: Reply to firmware's echo request async message. (Jonathan Toppins) [1921449]
+- bnxt_en: Initialize "context kind" field for context memory blocks. (Jonathan Toppins) [1921449]
+- bnxt_en: Add context memory initialization infrastructure. (Jonathan Toppins) [1921449]
+- bnxt_en: Implement faster recovery for firmware fatal error. (Jonathan Toppins) [1921449]
+- bnxt_en: selectively allocate context memories (Jonathan Toppins) [1921449]
+- bnxt_en: Update firmware interface spec to 1.10.2.16. (Jonathan Toppins) [1921449]
+- bnxt_en: Fix devlink info's stored fw.psid version format. (Jonathan Toppins) [1921449]
+- bnxt_en: reverse order of TX disable and carrier off (Jonathan Toppins) [1921449]
+- bnxt_en: Convert to use netif_level() helpers. (Jonathan Toppins) [1921449]
+- bnxt_en: Do not process completion entries after fatal condition detected. (Jonathan Toppins) [1921449]
+- bnxt_en: Consolidate firmware reset event logging. (Jonathan Toppins) [1921449]
+- bnxt_en: Improve firmware fatal error shutdown sequence. (Jonathan Toppins) [1921449]
+- bnxt_en: Modify bnxt_disable_int_sync() to be called more than once. (Jonathan Toppins) [1921449]
+- bnxt_en: Add a new BNXT_STATE_NAPI_DISABLED flag to keep track of NAPI state. (Jonathan Toppins) [1921449]
+- bnxt_en: Add bnxt_fw_reset_timeout() helper. (Jonathan Toppins) [1921449]
+- bnxt_en: Retry open if firmware is in reset. (Jonathan Toppins) [1921449]
+- bnxt_en: attempt to reinitialize after aborted reset (Jonathan Toppins) [1921449]
+- bnxt_en: log firmware debug notifications (Jonathan Toppins) [1921449]
+- bnxt_en: Add an upper bound for all firmware command timeouts. (Jonathan Toppins) [1921449]
+- bnxt_en: Move reading VPD info after successful handshake with fw. (Jonathan Toppins) [1921449]
+- bnxt_en: Retry sending the first message to firmware if it is under reset. (Jonathan Toppins) [1921449]
+- bnxt_en: handle CRASH_NO_MASTER during bnxt_open() (Jonathan Toppins) [1921449]
+- bnxt_en: Define macros for the various health register states. (Jonathan Toppins) [1921449]
+- bnxt_en: Update firmware interface to 1.10.2.11. (Jonathan Toppins) [1921449]
+- bnxt_en: Clear DEFRAG flag in firmware message when retry flashing. (Jonathan Toppins) [1921449]
+- bnxt_en: Improve stats context resource accounting with RDMA driver loaded. (Jonathan Toppins) [1921449]
+- bnxt_en: Use kzalloc for allocating only one thing (Jonathan Toppins) [1921449]
+- bnxt_en: Check TQM rings for maximum supported value. (Jonathan Toppins) [1921449]
+- bnxt_en: Fix AER recovery. (Jonathan Toppins) [1921449]
+- bnxt_en: Enable batch mode when using HWRM_NVM_MODIFY to flash packages. (Jonathan Toppins) [1921449]
+- bnxt_en: Retry installing FW package under NO_SPACE error condition. (Jonathan Toppins) [1921449]
+- bnxt_en: Restructure bnxt_flash_package_from_fw_obj() to execute in a loop. (Jonathan Toppins) [1921449]
+- bnxt_en: Rearrange the logic in bnxt_flash_package_from_fw_obj(). (Jonathan Toppins) [1921449]
+- bnxt_en: Refactor bnxt_flash_nvram. (Jonathan Toppins) [1921449]
+- bnxt_en: Release PCI regions when DMA mask setup fails during probe. (Jonathan Toppins) [1921449]
+- bnxt_en: fix error return code in bnxt_init_board() (Jonathan Toppins) [1921449]
+- bnxt_en: fix error return code in bnxt_init_one() (Jonathan Toppins) [1921449]
+- bnxt_en: Avoid unnecessary NVM_GET_DEV_INFO cmd error log on VFs. (Jonathan Toppins) [1921449]
+- bnxt_en: Fix counter overflow logic. (Jonathan Toppins) [1921449]
+- bnxt_en: Free port stats during firmware reset. (Jonathan Toppins) [1921449]
+- bnxt_en: read EEPROM A2h address using page 0 (Jonathan Toppins) [1921449]
+- bnxt_en: Send HWRM_FUNC_RESET fw command unconditionally. (Jonathan Toppins) [1921449]
+- bnxt_en: Check abort error state in bnxt_open_nic(). (Jonathan Toppins) [1921449]
+- bnxt_en: Re-write PCI BARs after PCI fatal error. (Jonathan Toppins) [1921449]
+- bnxt_en: Invoke cancel_delayed_work_sync() for PFs also. (Jonathan Toppins) [1921449]
+- bnxt_en: Fix regression in workqueue cleanup logic in bnxt_remove_one(). (Jonathan Toppins) [1921449]
+- bnxt_en: Add stored FW version info to devlink info_get cb. (Jonathan Toppins) [1921449]
+- bnxt_en: Refactor bnxt_dl_info_get(). (Jonathan Toppins) [1921449]
+- bnxt_en: Add bnxt_hwrm_nvm_get_dev_info() to query NVM info. (Jonathan Toppins) [1921449]
+- bnxt_en: Log unknown link speed appropriately. (Jonathan Toppins) [1921449]
+- bnxt_en: Log event_data1 and event_data2 when handling RESET_NOTIFY event. (Jonathan Toppins) [1921449]
+- bnxt_en: Simplify bnxt_async_event_process(). (Jonathan Toppins) [1921449]
+- bnxt_en: Set driver default message level. (Jonathan Toppins) [1921449]
+- bnxt_en: Enable online self tests for multi-host/NPAR mode. (Jonathan Toppins) [1921449]
+- bnxt_en: Return -EROFS to user space, if NVM writes are not permitted. (Jonathan Toppins) [1921449]
+- bnxt_en: Eliminate unnecessary RX resets. (Jonathan Toppins) [1921449]
+- bnxt_en: Reduce unnecessary message log during RX errors. (Jonathan Toppins) [1921449]
+- bnxt_en: Add a software counter for RX ring reset. (Jonathan Toppins) [1921449]
+- bnxt_en: Implement RX ring reset in response to buffer errors. (Jonathan Toppins) [1921449]
+- bnxt_en: Refactor bnxt_init_one_rx_ring(). (Jonathan Toppins) [1921449]
+- bnxt_en: Refactor bnxt_free_rx_skbs(). (Jonathan Toppins) [1921449]
+- bnxt_en: Log FW health status info, if reset is aborted. (Jonathan Toppins) [1921449]
+- bnxt_en: perform no master recovery during startup (Jonathan Toppins) [1921449]
+- bnxt_en: log firmware status on firmware init failure (Jonathan Toppins) [1921449]
+- bnxt_en: refactor bnxt_alloc_fw_health() (Jonathan Toppins) [1921449]
+- bnxt_en: Update firmware interface spec to 1.10.1.68. (Jonathan Toppins) [1921449]
+- bnxt_en: Improve preset max value for ethtool -l. (Jonathan Toppins) [1921449]
+- bnxt_en: Implement ethtool set_fec_param() method. (Jonathan Toppins) [1921449]
+- bnxt_en: Report Active FEC encoding during link up. (Jonathan Toppins) [1921449]
+- bnxt_en: Report FEC settings to ethtool. (Jonathan Toppins) [1921449]
+- bnxt_en: avoid link reset if speed is not changed (Jonathan Toppins) [1921449]
+- bnxt_en: Handle ethernet link being disabled by firmware. (Jonathan Toppins) [1921449]
+- bnxt_en: ethtool: support PAM4 link speeds up to 200G (Jonathan Toppins) [1921449]
+- bnxt_en: add basic infrastructure to support PAM4 link speeds (Jonathan Toppins) [1921449]
+- bnxt_en: refactor bnxt_get_fw_speed() (Jonathan Toppins) [1921449]
+- bnxt_en: refactor code to limit speed advertising (Jonathan Toppins) [1921449]
+- bnxt_en: Update firmware interface spec to 1.10.1.65. (Jonathan Toppins) [1921449]
+- bnxt: add pause frame stats (Jonathan Toppins) [1921449]
+- xfrm: Fix xfrm offload fallback fail case (Andrea Claudi) [1976424]
+- sctp: trim optlen when it's a huge value in sctp_setsockopt (Xin Long) [1983864]
+- netfilter: flowtable: Set offload timeouts according to proto values (Phil Sutter) [1979184]
+- netfilter: conntrack: Introduce udp offload timeout configuration (Phil Sutter) [1979184]
+- netfilter: conntrack: Introduce tcp offload timeout configuration (Phil Sutter) [1979184]
+- veth: check for NAPI instead of xdp_prog before xmit of XDP frame (Paolo Abeni) [1952835]
+- self-tests: add veth tests (Paolo Abeni) [1952835]
+- veth: refine napi usage (Paolo Abeni) [1952835]
+- veth: allow enabling NAPI even without XDP (Paolo Abeni) [1952835]
+- veth: use skb_orphan_partial instead of skb_orphan (Paolo Abeni) [1952835]
+- net: really orphan skbs tied to closing sk (Paolo Abeni) [1952835]
+- net: let skb_orphan_partial wake-up waiters. (Paolo Abeni) [1952835]
+- veth: Store queue_mapping independently of XDP prog presence (Paolo Abeni) [1952835]
+- net/xfrm: Add inner_ipproto into sec_path (Petr Oros) [1981429]
+- net, xdp: Introduce xdp_prepare_buff utility routine (Jiri Benc) [1983730]
+- net, xdp: Introduce xdp_init_buff utility routine (Jiri Benc) [1983730]
+- bridge: switchdev: Notify about VLAN protocol changes (Ivan Vecera) [1981461]
+- net: bridge: br_vlan_get_pvid_rcu() should dereference the VLAN group under RCU (Ivan Vecera) [1981461]
+- bridge: add br_vlan_get_proto() (Ivan Vecera) [1981461]
+- bridge: add br_vlan_get_pvid_rcu() (Ivan Vecera) [1981461]
+- RDMA/bnxt_re: Fix a double free in bnxt_qplib_alloc_res (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Get rid of custom module reference counting (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Create direct symbol link between bnxt modules (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Depend on bnxt ethernet driver and not blindly select it (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Fix Kconfig indentation (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Fix error return code in bnxt_qplib_cq_process_terminal() (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Move device to error state upon device crash (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Allow bigger MR creation (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Code refactor while populating user MRs (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Fix max_qp_wrs reported (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Fix entry size during SRQ create (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Fix sizeof mismatch for allocation of pbl_tbl. (Selvin Xavier) [1921454 1923026]
+- RDMA/bnxt_re: Use rdma_umem_for_each_dma_block() (Selvin Xavier) [1921454 1923026]
+- [s390] tools/kvm_stat: Exempt time-based counters (Claudio Imbrenda) [1981802]
+- Documentation/admin-guide: intel_pstate: drop doubled word (David Arcari) [1973225]
+- Documentation: fix multiple typos found in the admin-guide subdirectory (David Arcari) [1973225]
+- cpufreq: intel_pstate: Fix active mode setting from command line (David Arcari) [1973225]
+- cpufreq: intel_pstate: Use passive mode by default without HWP (David Arcari) [1973225]
+- cpufreq: intel_pstate: Use HWP if enabled by platform firmware (David Arcari) [1973225]
+- cpufreq: intel_pstate: Simplify intel_pstate_update_perf_limits() (David Arcari) [1973225]
+- cpufreq: intel_pstate: Clean up frequency computations (David Arcari) [1973225]
+- cpufreq/intel_pstate: Fix wrong macro conversion (David Arcari) [1973225]
+- cpufreq: Convert to new X86 CPU match macros (David Arcari) [1973225]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441 (David Arcari) [1973225]
+- selftests/fpu: Fix debugfs_simple_attr.cocci warning (Vitaly Kuznetsov) [1919182]
+- selftest/fpu: avoid clang warning (Vitaly Kuznetsov) [1919182]
+- redhat/configs: Add Enable CONFIG_TEST_FPU (Vitaly Kuznetsov) [1919182]
+- selftests/fpu: Add an FPU selftest (Vitaly Kuznetsov) [1919182]
+- x86/fpu/64: Don't FNINIT in kernel_fpu_begin() (Vitaly Kuznetsov) [1919182]
+- x86/fpu: Make the EFI FPU calling convention explicit (Vitaly Kuznetsov) [1919182]
+- x86/mmx: Use KFPU_387 for MMX string operations (Vitaly Kuznetsov) [1919182]
+- x86/fpu: Add kernel_fpu_begin_mask() to selectively initialize state (Vitaly Kuznetsov) [1919182]
+- x86/fpu: Simplify kernel_fpu_begin() (Vitaly Kuznetsov) [1919182]
+- x86/fpu: Simplify kernel_fpu_end() (Vitaly Kuznetsov) [1919182]
+- x86/fpu: Don't use current->mm to check for a kthread (Vitaly Kuznetsov) [1919182]
+- x86/fpu: Don't export __kernel_fpu_{begin,end}() (Vitaly Kuznetsov) [1919182]
+- intel_th: pci: Add Alder Lake-P support (Tony Camuso) [1929493 1929494]
+
+* Tue Jul 27 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-326.el8]
+- can: bcm: delay release of struct bcm_op after synchronize_rcu() (Hangbin Liu) [1975059] {CVE-2021-3609}
+- seq_file: Disallow extremely large seq buffer allocations (Ian Kent) [1975182]
+- nvme-pci: look for StorageD3Enable on companion ACPI device instead (Gopal Tiwari) [1965660]
+- prctl: exe link permission error changed from -EINVAL to -EPERM (Adrian Reber) [1960708]
+- prctl: Allow local CAP_CHECKPOINT_RESTORE to change /proc/self/exe (Adrian Reber) [1960708]
+- prctl_set_mm: refactor checks from validate_prctl_map (Adrian Reber) [1960708]
+- proc: allow access in init userns for map_files with CAP_CHECKPOINT_RESTORE (Adrian Reber) [1960708]
+- pid_namespace: use checkpoint_restore_ns_capable() for ns_last_pid (Adrian Reber) [1960708]
+- capabilities: Introduce CAP_CHECKPOINT_RESTORE (Adrian Reber) [1960708]
+- scripts: skip empty CAP_* strings (Adrian Reber) [1960708]
+- VMCI: Release resource if the work is already queued (Cathy Avery) [1978518]
+- perf vendor events arm64: Add Fujitsu A64FX pmu event (Michael Petlan) [1908109]
+- perf vendor events arm64: Add more common and uarch events (Michael Petlan) [1908109]
+- sunrpc: Avoid a KASAN slab-out-of-bounds bug in xdr_set_page_base() (Benjamin Coddington) [1969751]
+- xfs: sync lazy sb accounting on quiesce of read-only mounts (Bill O'Donnell) [1917220]
+- drm/dp_mst: Avoid to mess up payload table by ports in stale topology (Lyude Paul) [1944404]
+- drm/dp_mst: Do not set proposed vcpi directly (Lyude Paul) [1944404]
+- drm/qxl: add lock asserts to qxl_bo_vmap_locked + qxl_bo_vunmap_locked (Lyude Paul) [1944404 1907341]
+- drm/qxl: rework cursor plane (Lyude Paul) [1944404 1907341]
+- drm/qxl: move shadow handling to new qxl_prepare_shadow() (Lyude Paul) [1944404 1907341]
+- drm/qxl: fix monitors object vmap (Lyude Paul) [1944404 1907341]
+- drm/qxl: fix prime vmap (Lyude Paul) [1944404 1907341]
+- drm/qxl: add qxl_bo_vmap/qxl_bo_vunmap (Lyude Paul) [1944404 1907341]
+- drm/qxl: rename qxl_bo_kmap -> qxl_bo_vmap_locked (Lyude Paul) [1944404 1907341]
+- drm/qxl: more fence wait rework (Lyude Paul) [1944404 1907341]
+- drm/qxl: properly handle device init failures (Lyude Paul) [1944404 1907341]
+- drm/qxl: allocate dumb buffers in ram (Lyude Paul) [1944404 1907341]
+- drm/qxl: simplify qxl_fence_wait (Lyude Paul) [1944404 1907341]
+- drm/qxl: properly free qxl releases (Lyude Paul) [1944404 1907341]
+- drm/qxl: handle shadow in primary destroy (Lyude Paul) [1944404 1907341]
+- drm/qxl: properly pin/unpin shadow (Lyude Paul) [1944404 1907341]
+- drm/qxl: use drmm_mode_config_init (Lyude Paul) [1944404 1907341]
+- drm/i915/icp+: Use icp_hpd_irq_setup() instead of spt_hpd_irq_setup() (Lyude Paul) [1944404]
+- drm/i915/gen9_bc: Add W/A for missing STRAP config on TGP PCH + CML combos (Lyude Paul) [1944404]
+- drm/i915/gen9_bc: Introduce HPD pin mappings for TGP PCH + CML combos (Lyude Paul) [1944404]
+- drm/i915/gen9_bc: Introduce TGP PCH DDC pin mappings (Lyude Paul) [1944404]
+- drm/i915/gen9_bc: Recognize TGP PCH + CML combos (Lyude Paul) [1944404]
+- drm/i915: rename i915_rev_steppings->intel_step_info (Lyude Paul) [1944404]
+- drm/i915: rename disp_stepping->display_step and gt_stepping->gt_step (Lyude Paul) [1944404]
+- drm/i915: rename DISP_STEPPING->DISPLAY_STEP and GT_STEPPING->GT_STEP (Lyude Paul) [1944404]
+- drm/i915: switch TGL and ADL to the new stepping scheme (Lyude Paul) [1944404]
+- drm/i915: switch KBL to the new stepping scheme (Lyude Paul) [1944404]
+- drm/i915: add new helpers for accessing stepping info (Lyude Paul) [1944404]
+- drm/i915: split out stepping info to a new file (Lyude Paul) [1944404]
+- drm/i915: Add DISPLAY_VER() and related macros (Lyude Paul) [1944404]
+- drm/i915/display: Do not allow DC3CO if PSR SF is enabled (Lyude Paul) [1944404]
+- drm/i915: s/dev_priv/i915/ for the remainder of DDI clock routing (Lyude Paul) [1944404]
+- drm/i915: Relocate icl_sanitize_encoder_pll_mapping() (Lyude Paul) [1944404]
+- drm/i915: Use .disable_clock() for pll sanitation (Lyude Paul) [1944404]
+- drm/i915: Split adl-s/rkl from icl_ddi_combo_{enable,disable}_clock() (Lyude Paul) [1944404]
+- drm/i915: Extract _cnl_ddi_{enable,disable}_clock() (Lyude Paul) [1944404]
+- drm/i915: Sprinkle WARN(!pll) into icl/dg1 .clock_enable() (Lyude Paul) [1944404]
+- drm/i915: Sprinkle a few missing locks around shared DDI clock registers (Lyude Paul) [1944404]
+- drm/i915: Use intel_de_rmw() for DDI clock routing (Lyude Paul) [1944404]
+- drm/i915: Extract icl+ .{enable,disable}_clock() vfuncs (Lyude Paul) [1944404]
+- drm/i915: Convert DG1 over to .{enable,disable}_clock() (Lyude Paul) [1944404]
+- drm/i195: Extract cnl_ddi_{enable,disable}_clock() (Lyude Paul) [1944404]
+- drm/i915: Extract skl_ddi_{enable,disable}_clock() (Lyude Paul) [1944404]
+- drm/i915: Extract hsw_ddi_{enable,disable}_clock() (Lyude Paul) [1944404]
+- drm/i915: Introduce .{enable,disable}_clock() encoder vfuncs (Lyude Paul) [1944404]
+- drm/i915: Use intel_ddi_clk_select() for FDI (Lyude Paul) [1944404]
+- drm/i915/adl_s: Add GT and CTX WAs for ADL-S (Lyude Paul) [1944404]
+- drm/i915/adl_s: Add display WAs for ADL-S (Lyude Paul) [1944404]
+- drm/i915/display: Add HAS_D12_PLANE_MINIMIZATION (Lyude Paul) [1944404]
+- drm/i915/adl_s: Re-use TGL GuC/HuC firmware (Lyude Paul) [1944404]
+- drm/i915/adl_s: Add power wells (Lyude Paul) [1944404]
+- drm/i915/adl_s: Update PHY_MISC programming (Lyude Paul) [1944404]
+- drm/i915/adl_s: Update combo PHY master/slave relationships (Lyude Paul) [1944404]
+- drm/i915/adl_s: Add vbt port and aux channel settings for adls (Lyude Paul) [1944404]
+- drm/i915/adl_s: Add adl-s ddc pin mapping (Lyude Paul) [1944404]
+- drm/i915/adl_s: Initialize display for ADL-S (Lyude Paul) [1944404]
+- drm/i915/adl_s: Configure Port clock registers for ADL-S (Lyude Paul) [1944404]
+- drm/i915/adl_s: Configure DPLL for ADL-S (Lyude Paul) [1944404]
+- drm/i915/adl_s: Add PHYs for Alderlake S (Lyude Paul) [1944404]
+- drm/i915/adl_s: Add PCH support (Lyude Paul) [1944404]
+- drm/i915/adl_s: Add ADL-S platform info and PCI ids (Lyude Paul) [1944404]
+- drm/i915/tgl: Use TGL stepping info for applying WAs (Lyude Paul) [1944404]
+- redhat/configs: Update CONFIG_HSA_AMD (Lyude Paul)
+- redhat/configs: Update CONFIG_DRM_AMDGPU_USERPTR (Lyude Paul)
+- DRM Backport v5.11 -> v5.12.4 (Lyude Paul) [1944404]
+- include/linux/kernel.h: add typeof_member() macro (Lyude Paul) [1944404]
+- drm: Use USB controller's DMA mask when importing dmabufs (Lyude Paul) [1944404]
+- PM: runtime: Add pm_runtime_get_if_active() (Lyude Paul) [1944404]
+- PCI: Add pci_rebar_bytes_to_size() (Lyude Paul) [1944404]
+- PCI: Export pci_rebar_get_possible_sizes() (Lyude Paul) [1944404]
+- DRM backport v5.10->v5.11 (Lyude Paul) [1944404]
+- dma-buf: Use struct dma_buf_map in dma_buf_vunmap() interfaces (Lyude Paul) [1944404]
+- dma-buf: Use struct dma_buf_map in dma_buf_vmap() interfaces (Lyude Paul) [1944404]
+- dma-buf: Add struct dma-buf-map for storing struct dma_buf.vaddr_ptr (Lyude Paul) [1944404]
+- PCI/PM: Do not generate wakeup event when runtime resuming device (Lyude Paul) [1944404]
+- PCI/PM: Rename pci_wakeup_bus() to pci_resume_bus() (Lyude Paul) [1944404]
+- blktrace: make relay callbacks const (Lyude Paul) [1944404]
+- drm/i915: make relay callbacks const (Lyude Paul) [1944404]
+- relay: allow the use of const callback structs (Lyude Paul) [1944404]
+- relay: make create_buf_file and remove_buf_file callbacks mandatory (Lyude Paul) [1944404]
+- relay: require non-NULL callbacks in relay_open() (Lyude Paul) [1944404]
+- relay: remove unused buf_mapped and buf_unmapped callbacks (Lyude Paul) [1944404]
+- drm/edid: fix objtool warning in drm_cvt_modes() (Lyude Paul) [1944404]
+- drm/edid: Fix uninitialized variable in drm_cvt_modes() (Lyude Paul) [1944404]
+- DRM backport v5.9.y -> v5.10 (Lyude Paul) [1944404]
+- time: Introduce jiffies64_to_msecs() (Lyude Paul) [1944404]
+- virtio: add dma-buf support for exported objects (Lyude Paul) [1944404]
+- objtool: Rename frame.h -> objtool.h (Lyude Paul) [1944404]
+- moduleparams: Add hexint type parameter (Lyude Paul) [1944404]
+- iommu/vt-d: Move intel_iommu_gfx_mapped to Intel IOMMU header (Lyude Paul) [1944404]
+
+* Mon Jul 26 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-325.el8]
+- [s390] s390/zcrypt/pkey: introduce zcrypt_wait_api_operational() function (Claudio Imbrenda) [1881833]
+- [s390] s390/ap: ap bus userspace notifications for some bus conditions (Claudio Imbrenda) [1881833]
+- [s390] s390/pkey: fix paes selftest failure with paes and pkey static build (Claudio Imbrenda) [1881833]
+- KVM: nSVM: Avoid tainiting kernel by default (Vitaly Kuznetsov) [1982248]
+- KVM: s390x: implement KVM_CAP_SET_GUEST_DEBUG2 (Thomas Huth) [1945752]
+- KVM: s390: fix guarded storage control register handling (Thomas Huth) [1945752]
+- s390/protvirt: fix error return code in uv_info_init() (Thomas Huth) [1945752]
+- s390/uv: fix prot virt host indication compilation (Thomas Huth) [1945752]
+- KVM: s390: VSIE: fix MVPG handling for prefixing and MSO (Thomas Huth) [1945752]
+- KVM: s390: split kvm_s390_real_to_abs (Thomas Huth) [1945752]
+- KVM: s390: VSIE: correctly handle MVPG when in VSIE (Thomas Huth) [1945752]
+- KVM: s390: extend kvm_s390_shadow_fault to return entry pointer (Thomas Huth) [1945752]
+- s390/uv: add prot virt guest/host indication files (Thomas Huth) [1945752]
+- KVM: s390: split kvm_s390_logical_to_effective (Thomas Huth) [1945752]
+- KVM: s390: Fix comment spelling in kvm_s390_vcpu_start() (Thomas Huth) [1945752]
+- s390: uv: Fix sysfs max number of VCPUs reporting (Thomas Huth) [1945752]
+- KVM: s390: track synchronous pfault events in kvm_stat (Thomas Huth) [1945752]
+- s390/gmap: make gmap memcg aware (Thomas Huth) [1945752]
+- KVM: s390: Add memcg accounting to KVM allocations (Thomas Huth) [1945752]
+- s390/uv: handle destroy page legacy interface (Thomas Huth) [1945752]
+- KVM: s390: pv: Mark mm as protected after the set secure parameters and improve cleanup (Thomas Huth) [1945752]
+- virtio/s390: implement virtio-ccw revision 2 correctly (Thomas Huth) [1945752]
+- sfc: deprecate SFC9020 family (Siena) (Íñigo Huguet) [1926379]
+- NFS: Fix open coded versions of nfs_set_cache_invalid() in NFSv4 (Benjamin Coddington) [1936478]
+- NFS: Fix open coded versions of nfs_set_cache_invalid() (Benjamin Coddington) [1936478]
+- NFS: Clean up function nfs_mark_dir_for_revalidate() (Benjamin Coddington) [1936478]
+- NFSD: Mark exports of NFS as tech-preview (Benjamin Coddington) [1972229]
+- perf vendor events intel: Add missing skylake & icelake model numbers (Michael Petlan) [1971959]
+- tc-testing: add test for ct DNAT tuple collision (Marcelo Ricardo Leitner) [1964578]
+- tc-testing: add support for sending various scapy packets (Marcelo Ricardo Leitner) [1964578]
+- tc-testing: fix list handling (Marcelo Ricardo Leitner) [1964578]
+- net/sched: act_ct: handle DNAT tuple collision (Marcelo Ricardo Leitner) [1964578]
+- net/packet: remove data races in fanout operations (Balazs Nemeth) [1957270]
+- net/packet: remove locking from packet_rcv_has_room() (Balazs Nemeth) [1957270]
+- net: packetmmap: fix only tx timestamp on request (Balazs Nemeth) [1970404]
+- x86/sgx: Add TAINT_TECH_PREVIEW for virtual EPC (Bandan Das) [1977474]
+- cxgb4: fix thermal zone device registration (Raju Rangoju) [1954012]
+- powerpc/64s: Fix crashes when toggling stf barrier (Desnes A. Nunes do Rosario) [1964484]
+- iavf: Fix an error handling path in 'iavf_probe()' (Stefan Assmann) [1920276]
+- iavf: clean up packet type lookup table (Stefan Assmann) [1920276]
+- iavf: redefine the magic number for FDIR GTP-U header fields (Stefan Assmann) [1920276]
+- iavf: enhance the duplicated FDIR list scan handling (Stefan Assmann) [1920276]
+- iavf: change the flex-byte support number to macro definition (Stefan Assmann) [1920276]
+- iavf: remove duplicate free resources calls (Stefan Assmann) [1920276]
+- iavf: Support for modifying SCTP RSS flow hashing (Stefan Assmann) [1920276]
+- iavf: Support for modifying UDP RSS flow hashing (Stefan Assmann) [1920276]
+- iavf: Support for modifying TCP RSS flow hashing (Stefan Assmann) [1920276]
+- iavf: Add framework to enable ethtool RSS config (Stefan Assmann) [1920276]
+- iavf: add support for UDP Segmentation Offload (Stefan Assmann) [1920276]
+- intel: clean up mismatched header comments (Stefan Assmann) [1920276]
+- iavf: Enable flex-bytes support (Stefan Assmann) [1920276]
+- iavf: Support Ethernet Type Flow Director filters (Stefan Assmann) [1920276]
+- iavf: Support IPv6 Flow Director filters (Stefan Assmann) [1920276]
+- iavf: Support IPv4 Flow Director filters (Stefan Assmann) [1920276]
+- iavf: Add framework to enable ethtool ntuple filters (Stefan Assmann) [1920276]
+- net: intel: iavf: fix error return code of iavf_init_get_resources() (Stefan Assmann) [1920276]
+- workqueue: Move the position of debug_work_activate() in __queue_work() (Waiman Long) [1977537]
+- workqueue: remove useless unlock() and lock() in series (Waiman Long) [1977537]
+- workqueue: Convert the pool::lock and wq_mayday_lock to raw_spinlock_t (Waiman Long) [1977537]
+- workqueue: Use rcuwait for wq_manager_wait (Waiman Long) [1977537]
+- workqueue: Remove unnecessary kfree() call in rcu_free_wq() (Waiman Long) [1977537]
+- workqueue: Fix an use after free in init_rescuer() (Waiman Long) [1977537]
+- workqueue: Use IS_ERR and PTR_ERR instead of PTR_ERR_OR_ZERO. (Waiman Long) [1977537]
+- workqueue: don't use wq_select_unbound_cpu() for bound works (Waiman Long) [1977537]
+- workqueue: Use pr_warn instead of pr_warning (Waiman Long) [1977537]
+- workqueue: more destroy_workqueue() fixes (Waiman Long) [1977537]
+- workqueue: Minor follow-ups to the rescuer destruction change (Waiman Long) [1977537]
+- kernel/workqueue: Document wq_worker_last_func() argument (Waiman Long) [1977537]
+- workqueue: Only unregister a registered lockdep key (Waiman Long) [1977537]
+- kernel: workqueue: clarify wq_worker_last_func() caller requirements (Waiman Long) [1977537]
+- workqueue: Fix spelling in source code comments (Waiman Long) [1977537]
+- workqueue: fix typo in comment (Waiman Long) [1977537]
+- ice: add correct exception tracing for XDP (Jonathan Toppins) [1920278]
+- ice: optimize for XDP_REDIRECT in xsk path (Jonathan Toppins) [1920278]
+- ice: Allow all LLDP packets from PF to Tx (Jonathan Toppins) [1920278]
+- ice: report supported and advertised autoneg using PHY capabilities (Jonathan Toppins) [1920278]
+- ice: handle the VF VSI rebuild failure (Jonathan Toppins) [1920278]
+- ice: Fix VFR issues for AVF drivers that expect ATQLEN cleared (Jonathan Toppins) [1920278]
+- ice: Fix allowing VF to request more/less queues via virtchnl (Jonathan Toppins) [1920278]
+- ice: track AF_XDP ZC enabled queues in bitmap (Jonathan Toppins) [1920278]
+- ice: handle increasing Tx or Rx ring sizes (Jonathan Toppins) [1920278]
+- ice: Fix potential infinite loop when using u8 loop counter (Jonathan Toppins) [1920278]
+- ice: fix memory leak of aRFS after resuming from suspend (Jonathan Toppins) [1920278]
+- ice: Cleanup fltr list in case of allocation issues (Jonathan Toppins) [1920278]
+- ice: Use port number instead of PF ID for WoL (Jonathan Toppins) [1920278]
+- ice: Fix for dereference of NULL pointer (Jonathan Toppins) [1920278]
+- ice: remove DCBNL_DEVRESET bit from PF state (Jonathan Toppins) [1920278]
+- ice: fix memory allocation call (Jonathan Toppins) [1920278]
+- ice: prevent ice_open and ice_stop during reset (Jonathan Toppins) [1920278]
+- ice: Recognize 860 as iSCSI port in CEE mode (Jonathan Toppins) [1920278]
+- ice: Increase control queue timeout (Jonathan Toppins) [1920278]
+- ice: Continue probe on link/PHY errors (Jonathan Toppins) [1920278]
+- ice: fix napi work done reporting in xsk path (Jonathan Toppins) [1920278]
+- ice: update the number of available RSS queues (Jonathan Toppins) [1920278]
+- ice: Fix state bits on LLDP mode switch (Jonathan Toppins) [1920278]
+- ice: Account for port VLAN in VF max packet size calculation (Jonathan Toppins) [1920278]
+- ice: Set trusted VF as default VSI when setting allmulti on (Jonathan Toppins) [1920278]
+- ice: report correct max number of TCs (Jonathan Toppins) [1920278]
+- ice: skip NULL check against XDP prog in ZC path (Jonathan Toppins) [1920278]
+- ice: remove redundant checks in ice_change_mtu (Jonathan Toppins) [1920278]
+- ice: move skb pointer from rx_buf to rx_ring (Jonathan Toppins) [1920278]
+- ice: simplify ice_run_xdp (Jonathan Toppins) [1920278]
+- ice: Improve MSI-X fallback logic (Jonathan Toppins) [1920278]
+- ice: Fix trivial error message (Jonathan Toppins) [1920278]
+- ice: remove unnecessary casts (Jonathan Toppins) [1920278]
+- ice: Refactor DCB related variables out of the ice_port_info struct (Jonathan Toppins) [1920278]
+- ice: fix writeback enable logic (Jonathan Toppins) [1920278]
+- ice: Use PSM clock frequency to calculate RL profiles (Jonathan Toppins) [1920278]
+- ice: create scheduler aggregator node config and move VSIs (Jonathan Toppins) [1920278 1940527 1940535 1940542] {CVE-2020-24504 CVE-2020-24503 CVE-2020-24502}
+- ice: Add initial support framework for LAG (Jonathan Toppins) [1920278]
+- ice: Remove xsk_buff_pool from VSI structure (Jonathan Toppins) [1920278]
+- ice: implement new LLDP filter command (Jonathan Toppins) [1920278]
+- ice: log message when trusted VF goes in/out of promisc mode (Jonathan Toppins) [1920278]
+- ice: remove dead code (Jonathan Toppins) [1920278]
+- ice: use flex_array_size where possible (Jonathan Toppins) [1920278]
+- ice: Replace one-element array with flexible-array member (Jonathan Toppins) [1920278]
+- ice: display stored UNDI firmware version via devlink info (Jonathan Toppins) [1920278]
+- ice: display stored netlist versions via devlink info (Jonathan Toppins) [1920278]
+- ice: display some stored NVM versions via devlink info (Jonathan Toppins) [1920278]
+- ice: introduce function for reading from flash modules (Jonathan Toppins) [1920278]
+- ice: cache NVM module bank information (Jonathan Toppins) [1920278]
+- ice: introduce context struct for info report (Jonathan Toppins) [1920278]
+- ice: create flash_info structure and separate NVM version (Jonathan Toppins) [1920278]
+- ice: report timeout length for erasing during devlink flash (Jonathan Toppins) [1920278]
+- ice: Implement flow for IPv6 next header (extension header) (Jonathan Toppins) [1920278]
+- ice: fix FDir IPv6 flexbyte (Jonathan Toppins) [1920278]
+- ice: drop dead code in ice_receive_skb() (Jonathan Toppins) [1920278]
+- ice, xsk: Move Rx allocation out of while-loop (Jonathan Toppins) [1920278]
+- ice: avoid premature Rx buffer reuse (Jonathan Toppins) [1920278]
+- ice: Add space to unknown speed (Jonathan Toppins) [1920278]
+- ice: join format strings to same line as ice_debug (Jonathan Toppins) [1920278]
+- ice: silence static analysis warning (Jonathan Toppins) [1920278]
+- ice: cleanup misleading comment (Jonathan Toppins) [1920278]
+- ice: Remove vlan_ena from vsi structure (Jonathan Toppins) [1920278]
+- ice: Remove gate to OROM init (Jonathan Toppins) [1920278]
+- ice: Enable Support for FW Override (E82X) (Jonathan Toppins) [1920278]
+- ice: don't always return an error for Get PHY Abilities AQ command (Jonathan Toppins) [1920278]
+- ice: cleanup stack hog (Jonathan Toppins) [1920278]
+- mm: migrate: fix missing update page_private to hugetlb_page_subpool (Chris von Recklinghausen) [1981661]
+- mm,hugetlb: drop clearing of flag from prep_new_huge_page (Chris von Recklinghausen) [1981661]
+- hugetlb: fix uninitialized subpool pointer (Chris von Recklinghausen) [1981661]
+- include/linux/hugetlb.h: add synchronization information for new hugetlb specific flags (Chris von Recklinghausen) [1981661]
+- hugetlb: convert PageHugeFreed to HPageFreed flag (Chris von Recklinghausen) [1981661]
+- hugetlb: convert PageHugeTemporary() to HPageTemporary flag (Chris von Recklinghausen) [1981661]
+- mm: hugetlb: fix a race between freeing and dissolving the page (Chris von Recklinghausen) [1981661]
+- mm: don't let userspace spam allocations warnings (Xin Long) [1976699]
+- dm writecache: make writeback pause configurable (Mike Snitzer) [1978369]
+- dm writecache: pause writeback if cache full and origin being written directly (Mike Snitzer) [1978369]
+- dm io tracker: factor out IO tracker (Mike Snitzer) [1978369]
+- dm writecache: add optional "metadata_only" parameter (Mike Snitzer) [1978369]
+- dm writecache: add "cleaner" and "max_age" to Documentation (Mike Snitzer) [1978369]
+- dm writecache: write at least 4k when committing (Mike Snitzer) [1978369]
+- dm writecache: have ssd writeback wait if the kcopyd workqueue is busy (Mike Snitzer) [1978369]
+- dm writecache: use list_move instead of list_del_list_add in writecache_writeback() (Mike Snitzer) [1978369]
+- dm writecache: commit just one block, not a full page (Mike Snitzer) [1978369]
+- dm writecache: remove unused gfp_t argument from wc_add_block() (Mike Snitzer) [1978369]
+- dm writecache: interrupt writeback if suspended (Mike Snitzer) [1978369]
+- dm writecache: don't split bios when overwriting contiguous cache content (Mike Snitzer) [1978369]
+- dm kcopyd: avoid spin_lock_irqsave from process context (Mike Snitzer) [1978369]
+- dm kcopyd: avoid useless atomic operations (Mike Snitzer) [1978369]
+- x86/asm: Optimize memcpy_flushcache() (Mike Snitzer) [1978369]
+- IB/isert: Align target max I/O size to initiator size (Kamal Heib) [1930955]
+- IB/isert: set rdma cm afonly flag (Kamal Heib) [1930955]
+
+* Wed Jul 21 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-324.el8]
+- xsk: Rollback reservation at NETDEV_TX_BUSY (Jiri Benc) [1882711]
+- xsk: Fix race in SKB mode transmit with shared cq (Jiri Benc) [1882711]
+- bpf: Only provide bpf_sock_from_file with CONFIG_NET (Jiri Benc) [1882711]
+- xsk: Validate socket state in xsk_recvmsg, prior touching socket members (Jiri Benc) [1882711]
+- samples/bpf: Fix spelling mistake "recieving" -> "receiving" (Jiri Benc) [1882711]
+- samples/bpf: Sample application for eBPF load and socket creation split (Jiri Benc) [1882711]
+- bpf: Adds support for setting window clamp (Jiri Benc) [1882711]
+- tcp: declare tcp_mmap() only when CONFIG_MMU is set (Jiri Benc) [1882711]
+- bpf: Remove trailing semicolon in macro definition (Jiri Benc) [1882711]
+- bpf: Allow bpf_{s,g}etsockopt from cgroup bind{4,6} hooks (Jiri Benc) [1882711]
+- bpf: Eliminate rlimit-based memory accounting infra for bpf maps (Jiri Benc) [1882711]
+- bpf: Eliminate rlimit-based memory accounting for xskmap maps (Jiri Benc) [1882711]
+- bpf: Eliminate rlimit-based memory accounting for sockmap and sockhash maps (Jiri Benc) [1882711]
+- bpf: Refine memcg-based memory accounting for xskmap maps (Jiri Benc) [1882711]
+- bpf: Refine memcg-based memory accounting for sockmap and sockhash maps (Jiri Benc) [1882711]
+- net, xdp, xsk: fix __sk_mark_napi_id_once napi_id error (Jiri Benc) [1882711]
+- samples/bpf: Add option to set the busy-poll budget (Jiri Benc) [1882711]
+- samples/bpf: Add busy-poll support to xdpsock (Jiri Benc) [1882711]
+- xsk: Propagate napi_id to XDP socket Rx path (Jiri Benc) [1882711]
+- xsk: Add busy-poll support for {recv,send}msg() (Jiri Benc) [1882711]
+- xsk: Check need wakeup flag in sendmsg() (Jiri Benc) [1882711]
+- xsk: Add support for recvmsg() (Jiri Benc) [1882711]
+- net: Add SO_BUSY_POLL_BUDGET socket option (Jiri Benc) [1882711]
+- net: Introduce preferred busy-polling (Jiri Benc) [1882711]
+- net: napi: use READ_ONCE()/WRITE_ONCE() (Jiri Benc) [1882711]
+- net: napi: add hard irqs deferral feature (Jiri Benc) [1882711]
+- fs/eventpoll.c: simply CONFIG_NET_RX_BUSY_POLL ifdefery (Jiri Benc) [1882711]
+- xdp: Remove the functions xsk_map_inc and xsk_map_put (Jiri Benc) [1882711]
+- xsk: Introduce batched Tx descriptor interfaces (Jiri Benc) [1882711]
+- xsk: Introduce padding between more ring pointers (Jiri Benc) [1882711]
+- net: page_pool: Add bulk support for ptr_ring (Jiri Benc) [1882711]
+- net: xdp: Introduce bulking for xdp tx return path (Jiri Benc) [1882711]
+- bpf: Rename some functions in bpf_sk_storage (Jiri Benc) [1882711]
+- bpf: Folding omem_charge() into sk_storage_charge() (Jiri Benc) [1882711]
+- net/smc: properly handle workqueue allocation failure (Andrea Claudi) [1955178]
+- Revert "net/smc: fix a NULL pointer dereference" (Andrea Claudi) [1955178]
+- KVM: selftests: evmcs_test: Test that KVM_STATE_NESTED_EVMCS is never lost (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Request to sync eVMCS from VMCS12 after migration (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Reset eVMCS clean fields data from prepare_vmcs02() (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Force enlightened VMCS sync from nested_vmx_failValid() (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Ignore 'hv_clean_fields' data when eVMCS data is copied in vmx_get_nested_state() (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Release enlightened VMCS on VMCLEAR (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Introduce 'EVMPTR_MAP_PENDING' post-migration state (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Make copy_vmcs12_to_enlightened()/copy_enlightened_to_vmcs12() return 'void' (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Release eVMCS when enlightened VMENTRY was disabled (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Don't set 'dirty_vmcs12' flag on enlightened VMPTRLD (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Use '-1' in 'hv_evmcs_vmptr' to indicate that eVMCS is not in use (Vitaly Kuznetsov) [1940837]
+- KVM: selftests: evmcs_test: Check that VMCS12 is alway properly synced to eVMCS after restore (Vitaly Kuznetsov) [1940837]
+- KVM: selftests: evmcs_test: Check that VMLAUNCH with bogus EVMPTR is causing #UD (Vitaly Kuznetsov) [1940837]
+- KVM: nVMX: Always make an attempt to map eVMCS after migration (Vitaly Kuznetsov) [1940837]
+- Bluetooth: btusb: Some Qualcomm Bluetooth adapters stop working (Gopal Tiwari) [1973909]
+- KVM: x86: Unload MMU on guest TLB flush if TDP disabled to force MMU sync (Vitaly Kuznetsov) [1906634]
+- scsi: sbitmap: Silence a debug kernel warning triggered by sbitmap_put() (Ewan D. Milne) [1761937]
+- scsi: core: Replace sdev->device_busy with sbitmap (Ewan D. Milne) [1761937]
+- scsi: core: Make sure sdev->queue_depth is <= max(shost->can_queue, 1024) (Ewan D. Milne) [1761937]
+- scsi: core: Add scsi_device_busy() wrapper (Ewan D. Milne) [1761937]
+- scsi: blk-mq: Return budget token from .get_budget callback (Ewan D. Milne) [1761937]
+- scsi: blk-mq: Add callbacks for storing & retrieving budget token (Ewan D. Milne) [1761937]
+- scsi: sbitmap: Add sbitmap_calculate_shift() helper (Ewan D. Milne) [1761937]
+- scsi: sbitmap: Export sbitmap_weight (Ewan D. Milne) [1761937]
+- scsi: sbitmap: Move allocation hint into sbitmap (Ewan D. Milne) [1761937]
+- scsi: sbitmap: Add helpers for updating allocation hint (Ewan D. Milne) [1761937]
+- scsi: sbitmap: Maintain allocation round_robin in sbitmap (Ewan D. Milne) [1761937]
+- scsi: sbitmap: Remove sbitmap_clear_bit_unlock (Ewan D. Milne) [1761937]
+- blk-mq: pass request queue into get/put budget callback (Ewan D. Milne) [1761937]
+- dma-iommu: implement ->alloc_noncontiguous (Jerry Snitselaar) [1955767]
+- dma-iommu: refactor iommu_dma_alloc_remap (Jerry Snitselaar) [1955767]
+- dma-mapping: add a dma_alloc_noncontiguous API (Jerry Snitselaar) [1955767]
+- dma-mapping: refactor dma_{alloc,free}_pages (Jerry Snitselaar) [1955767]
+- dma-mapping: add a dma_mmap_pages helper (Jerry Snitselaar) [1955767]
+- dma-mapping: remove the {alloc,free}_noncoherent methods (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Make unnecessarily global functions static (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Remove unused function declarations (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Remove SVM_FLAG_PRIVATE_PASID (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Remove svm_dev_ops (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Use Real PCI DMA device for IRTE (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Calculate and set flags for handle_mm_fault (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix build error of pasid_enable_wpe() with !X86 (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Avoid unnecessary cache flush in pasid entry teardown (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Enable write protect propagation from guest (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Enable write protect for supervisor SVM (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Report more information about invalidation errors (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Disable SVM when ATS/PRI/PASID are not enabled in the device (Jerry Snitselaar) [1955767]
+- iommu: Stop exporting free_iova_fast() (Jerry Snitselaar) [1955767]
+- iommu: Delete iommu_dma_free_cpu_cached_iovas() (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Remove IOVA domain rcache flushing for CPU offlining (Jerry Snitselaar) [1955767]
+- iova: Add CPU hotplug handler to flush rcaches (Jerry Snitselaar) [1955767]
+- iommu/iova: Improve restart logic (Jerry Snitselaar) [1955767]
+- iommu/iova: Add rbtree entry helper (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Remove the unused fields for PREFETCH_CONFIG command (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Use user privilege for RID2PASID translation (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix sysfs leak in alloc_iommu() (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Add a check to avoid invalid iotlb sync (Jerry Snitselaar) [1955767]
+- x86/events/amd/iommu: Fix invalid Perf result due to IOMMU PMC power-gating (Jerry Snitselaar) [1955767]
+- iommu: Fix a boundary issue to avoid performance drop (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Check for allocation failure in aux_detach_device() (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Remove unused dma map/unmap trace events (Jerry Snitselaar) [1955767]
+- iommu/amd: Clear DMA ops when switching domain (Jerry Snitselaar) [1955767]
+- iommu/amd: Remove performance counter pre-initialization test (Jerry Snitselaar) [1955767]
+- Revert "iommu/amd: Fix performance counter initialization" (Jerry Snitselaar) [1955767]
+- iommu/dma: Resurrect the "forcedac" option (Jerry Snitselaar) [1955767]
+- iommu: Check dev->iommu in iommu_dev_xxx functions (Jerry Snitselaar) [1955767]
+- iommu/amd: Put newline after closing bracket in warning (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Force to flush iotlb before creating superpage (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix an error handling path in 'intel_prepare_irq_remapping()' (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Invalidate PASID cache when root/context entry changed (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Remove WO permissions on second-level paging entries (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Report the right page fault address (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Report right snoop capability when using FL for IOVA (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Don't set then clear private data in prq_event_thread() (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Reject unsupported page request modes (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: add bit field SFM into GERROR_ERR_MASK (Jerry Snitselaar) [1955767]
+- iommu/amd: Keep track of amd_iommu_irq_remap state (Jerry Snitselaar) [1955767]
+- iommu/amd: Don't call early_amd_iommu_init() when AMD IOMMU is disabled (Jerry Snitselaar) [1955767]
+- iommu/amd: Move Stoney Ridge check to detect_ivrs() (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix status code for Allocate/Free PASID command (Jerry Snitselaar) [1955767]
+- iommu: Don't use lazy flush for untrusted device (Jerry Snitselaar) [1955767]
+- iommu/amd: Fix sleeping in atomic in increase_address_space() (Jerry Snitselaar) [1955767]
+- iommu: Delete iommu_dev_has_feature() (Jerry Snitselaar) [1955767]
+- iommu: Delete iommu_domain_window_disable() (Jerry Snitselaar) [1955767]
+- iommu: Stop exporting iommu_map_sg_atomic() (Jerry Snitselaar) [1955767]
+- iova: Stop exporting some more functions (Jerry Snitselaar) [1955767]
+- iova: Delete copy_reserved_iova() (Jerry Snitselaar) [1955767]
+- iova: Make has_iova_flush_queue() private (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Add iotlb_sync_map callback (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Move capability check code to cap_audit files (Jerry Snitselaar) [1921289]
+- iommu/vt-d: Audit IOMMU Capabilities and add helper functions (Jerry Snitselaar) [1921289]
+- iommu/vt-d: Fix 'physical' typos (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix compile error [-Werror=implicit-function-declaration] (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Use INVALID response code instead of FAILURE (Jerry Snitselaar) [1920726]
+- iommu/vt-d: Clear PRQ overflow only when PRQ is empty (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Preset Access/Dirty bits for IOVA over FL (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Add qi_submit trace event (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Consolidate duplicate cache invaliation code (Jerry Snitselaar) [1955767]
+- iommu/amd: Adopt IO page table framework for AMD IOMMU v1 page table (Jerry Snitselaar) [1955767]
+- iommu/amd: Introduce iommu_v1_map_page and iommu_v1_unmap_page (Jerry Snitselaar) [1955767]
+- iommu/amd: Introduce iommu_v1_iova_to_phys (Jerry Snitselaar) [1955767]
+- iommu/amd: Refactor fetch_pte to use struct amd_io_pgtable (Jerry Snitselaar) [1955767]
+- iommu/amd: Rename variables to be consistent with struct io_pgtable_ops (Jerry Snitselaar) [1955767]
+- iommu/amd: Remove amd_iommu_domain_get_pgtable (Jerry Snitselaar) [1955767]
+- iommu/amd: Restructure code for freeing page table (Jerry Snitselaar) [1955767]
+- iommu/amd: Move IO page table related functions (Jerry Snitselaar) [1955767]
+- iommu/amd: Declare functions as extern (Jerry Snitselaar) [1955767]
+- iommu/amd: Convert to using amd_io_pgtable (Jerry Snitselaar) [1955767]
+- iommu/amd: Move pt_root to struct amd_io_pgtable (Jerry Snitselaar) [1955767]
+- iommu/amd: Prepare for generic IO page table framework (Jerry Snitselaar) [1955767]
+- iommu/amd: Re-define amd_iommu_domain_encode_pgtable as inline (Jerry Snitselaar) [1955767]
+- iommu/amd: remove h from printk format specifier (Jerry Snitselaar) [1955767]
+- iommu/amd: Use DEFINE_SPINLOCK() for spinlock (Jerry Snitselaar) [1955767]
+- iommu/amd: Remove unnecessary assignment (Jerry Snitselaar) [1955767]
+- iommu: Properly pass gfp_t in _iommu_map() to avoid atomic sleeping (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable-arm-v7s: Add cfg as a param in some macros (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable-arm-v7s: Clarify LVL_SHIFT/BITS macro (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable-arm-v7s: Use ias to check the valid iova in unmap (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable: Remove TLBI_ON_MAP quirk (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable: Allow io_pgtable_tlb ops optional (Jerry Snitselaar) [1955767]
+- iommu: Switch gather->end to the inclusive end (Jerry Snitselaar) [1955767]
+- iommu: Add iova and size as parameters in iotlb_sync_map (Jerry Snitselaar) [1955767]
+- iommu: Move iotlb_sync_map out from __iommu_map (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Add support for VHE (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Make BTM optional for SVA (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Split arm_smmu_tlb_inv_range() (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Use DEFINE_RES_MEM() to simplify code (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Remove the page 1 fixup (Jerry Snitselaar) [1955767]
+- x86,swiotlb: Adjust SWIOTLB bounce buffer size for SEV guests (Jerry Snitselaar) [1955767]
+- iommu: Check dev->iommu in dev_iommu_priv_get() before dereferencing it (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Do not use flush-queue when caching-mode is on (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Correctly check addr alignment in qi_flush_dev_iotlb_pasid() (Jerry Snitselaar) [1955767]
+- iommu/amd: Use IVHD EFR for early initialization of IOMMU features (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix unaligned addresses for intel_flush_svm_range_dev() (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix ineffective devTLB invalidation for subdevices (Jerry Snitselaar) [1920750 1920749]
+- iommu/vt-d: Fix general protection fault in aux_detach_device() (Jerry Snitselaar) [1920748]
+- iommu/vt-d: Move intel_iommu info from struct intel_svm to struct intel_svm_dev (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix lockdep splat in sva bind()/unbind() (Jerry Snitselaar) [1955767]
+- Revert "iommu: Add quirk for Intel graphic devices in map_sg" (Jerry Snitselaar) [1955767]
+- iommu/intel: Fix memleak in intel_irq_remapping_alloc (Jerry Snitselaar) [1955767]
+- iommu/iova: fix 'domain' typos (Jerry Snitselaar) [1955767]
+- dma-iommu: remove __iommu_dma_mmap (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable: Remove tlb_flush_leaf (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Avoid GFP_ATOMIC where it is not needed (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Remove set but not used variable (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Cleanup after converting to dma-iommu ops (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Convert intel iommu driver to the iommu ops (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Don't clear GFP_DMA and GFP_DMA32 flags (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Update domain geometry in iommu_ops.at(de)tach_dev (Jerry Snitselaar) [1955767]
+- iommu: Add quirk for Intel graphic devices in map_sg (Jerry Snitselaar) [1955767]
+- swiotlb: remove the tbl_dma_addr argument to swiotlb_tbl_map_single (Jerry Snitselaar) [1955767]
+- swiotlb-xen: remove start_dma_addr (Jerry Snitselaar) [1955767]
+- iommu: Allow the dma-iommu api to use bounce buffers (Jerry Snitselaar) [1955767]
+- iommu: Add iommu_dma_free_cpu_cached_iovas() (Jerry Snitselaar) [1955767]
+- iommu: Handle freelists when using deferred flushing in iommu drivers (Jerry Snitselaar) [1955767]
+- iommu/sva: Add PASID helpers (Jerry Snitselaar) [1955767]
+- iommu/ioasid: Add ioasid references (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable-arm: Remove unused 'level' parameter from iopte_type() macro (Jerry Snitselaar) [1955767]
+- iommu: Defer the early return in arm_(v7s/lpae)_map (Jerry Snitselaar) [1955767]
+- iommu: Improve the performance for direct_mapping (Jerry Snitselaar) [1955767]
+- iommu: return error code when it can't get group (Jerry Snitselaar) [1955767]
+- iommu: Modify the description of iommu_sva_unbind_device (Jerry Snitselaar) [1955767]
+- iommu: Stop exporting free_iova_mem() (Jerry Snitselaar) [1955767]
+- iommu: Stop exporting alloc_iova_mem() (Jerry Snitselaar) [1955767]
+- iommu: Delete split_and_remove_iova() (Jerry Snitselaar) [1955767]
+- iommu: avoid taking iova_rbtree_lock twice (Jerry Snitselaar) [1955767]
+- iommu/iova: Free global iova rcache on iova alloc failure (Jerry Snitselaar) [1955767]
+- iommu/iova: Retry from last rb tree node if iova search fails (Jerry Snitselaar) [1955767]
+- iommu: Fix htmldocs warnings in sysfs-kernel-iommu_groups (Jerry Snitselaar) [1955767]
+- iommu: Document usage of "/sys/kernel/iommu_groups/<grp_id>/type" file (Jerry Snitselaar) [1838589]
+- iommu: Take lock before reading iommu group default domain type (Jerry Snitselaar) [1838589]
+- iommu: Add support to change default domain of an iommu group (Jerry Snitselaar) [1838589]
+- iommu: Move def_domain type check for untrusted device into core (Jerry Snitselaar) [1838589]
+- iommu/arm-smmu-v3: Hook up ATC invalidation to mm ops (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Implement iommu_sva_bind/unbind() (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Move non-strict mode to use io_pgtable_domain_attr (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Add support for pagetable config domain attribute (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Assign boolean values to a bool variable (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable-arm: Add support to use system cache (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable: Add a domain attribute for pagetable configuration (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable-arm: Support coherency for Mali LPAE (Jerry Snitselaar) [1955767]
+- dma-mapping: document dma_{alloc,free}_pages (Jerry Snitselaar) [1955767]
+- dma-direct: simplify the DMA_ATTR_NO_KERNEL_MAPPING handling (Jerry Snitselaar) [1955767]
+- dma-direct: factor out a dma_direct_alloc_from_pool helper (Jerry Snitselaar) [1955767]
+- dma-direct check for highmem pages in dma_direct_alloc_pages (Jerry Snitselaar) [1955767]
+- firewire-ohci: use dma_alloc_pages (Jerry Snitselaar) [1955767]
+- dma-iommu: implement ->alloc_noncoherent (Jerry Snitselaar) [1955767]
+- dma-mapping: add new {alloc,free}_noncoherent dma_map_ops methods (Jerry Snitselaar) [1955767]
+- dma-mapping: add a new dma_alloc_pages API (Jerry Snitselaar) [1955767]
+- dma-mapping: add a new dma_alloc_noncoherent API (Jerry Snitselaar) [1955767]
+- drm/nouveau/gk20a: stop setting DMA_ATTR_NON_CONSISTENT (Jerry Snitselaar) [1955767]
+- mm: turn alloc_pages into an inline function (Jerry Snitselaar) [1955767]
+- dma-mapping: better document dma_addr_t and DMA_MAPPING_ERROR (Jerry Snitselaar) [1955767]
+- dma-mapping: move valid_dma_direction to dma-direction.h (Jerry Snitselaar) [1955767]
+- dma-debug: convert comma to semicolon (Jerry Snitselaar) [1955767]
+- dma-direct: Fix potential NULL pointer dereference (Jerry Snitselaar) [1955767]
+- dma-mapping: move the dma_declare_coherent_memory documentation (Jerry Snitselaar) [1955767]
+- dma-mapping: move dma_common_{mmap,get_sgtable} out of mapping.c (Jerry Snitselaar) [1955767]
+- dma-mapping: make support for dma ops optional (Jerry Snitselaar) [1955767]
+- dma-direct: rename and cleanup __phys_to_dma (Jerry Snitselaar) [1955767]
+- dma-direct: remove __dma_to_phys (Jerry Snitselaar) [1955767]
+- dma-direct: use phys_to_dma_direct in dma_direct_alloc (Jerry Snitselaar) [1955767]
+- dma-direct: lift gfp_t manipulation out of__dma_direct_alloc_pages (Jerry Snitselaar) [1955767]
+- dma-direct: remove dma_direct_{alloc,free}_pages (Jerry Snitselaar) [1955767]
+- dma-debug: remove most exports (Jerry Snitselaar) [1955767]
+- dma-mapping: remove the dma_dummy_ops export (Jerry Snitselaar) [1955767]
+- dma-mapping: set default segment_boundary_mask to ULONG_MAX (Jerry Snitselaar) [1955767]
+- dma-mapping: introduce dma_get_seg_boundary_nr_pages() (Jerry Snitselaar) [1955767]
+- swiotlb: using SIZE_MAX needs limits.h included (Jerry Snitselaar) [1955767]
+- swiotlb: fix "x86: Don't panic if can not alloc buffer for swiotlb" (Jerry Snitselaar) [1955767]
+- swiotlb: Mark max_segment with static keyword (Jerry Snitselaar) [1955767]
+- swiotlb: Declare swiotlb_late_init_with_default_size() in header (Jerry Snitselaar) [1955767]
+- swiotlb: Use pa to print phys_addr_t variables (Jerry Snitselaar) [1955767]
+- dma-debug: remove debug_dma_assert_idle() function (Jerry Snitselaar) [1955767]
+- dma-mapping: move debug configuration options to kernel/dma (Jerry Snitselaar) [1955767]
+- dma-debug: fix debug_dma_assert_idle(), use rcu_read_lock() (Jerry Snitselaar) [1955767]
+- iommu: Check return of __iommu_attach_device() (Jerry Snitselaar) [1955767]
+- iommu/amd: Enforce 4k mapping for certain IOMMU data structures (Jerry Snitselaar) [1955767]
+- iommu: Fix a check in iommu_check_bind_data() (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Fix a bug for PDP check in prq_event_thread (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Check UAPI data processed by IOMMU core (Jerry Snitselaar) [1955767]
+- iommu/uapi: Handle data and argsz filled by users (Jerry Snitselaar) [1955767]
+- iommu/uapi: Rename uapi functions (Jerry Snitselaar) [1955767]
+- iommu/uapi: Use named union for user data (Jerry Snitselaar) [1955767]
+- iommu/uapi: Add argsz for user filled data (Jerry Snitselaar) [1955767]
+- docs: IOMMU user API (Jerry Snitselaar) [1955767]
+- iommu/dma: Handle init_iova_flush_queue() failure in dma-iommu path (Jerry Snitselaar) [1955767]
+- iommu/iova: Replace cmpxchg with xchg in queue_iova (Jerry Snitselaar) [1955767]
+- iommu/dma: Remove broken huge page handling (Jerry Snitselaar) [1955767]
+- iommu: Rename iommu_tlb_* functions to iommu_iotlb_* (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Use device numa domain if RHSA is missing (Jerry Snitselaar) [1955767]
+- iommu/vt-d: Drop kerneldoc marker from regular comment (Jerry Snitselaar) [1955767]
+- iommu/amd: Re-purpose Exclusion range registers to support SNP CWWB (Jerry Snitselaar) [1955767]
+- iommu/amd: Add support for RMP_PAGE_FAULT and RMP_HW_ERR (Jerry Snitselaar) [1955767]
+- iommu/amd: Use 4K page for completion wait write-back semaphore (Jerry Snitselaar) [1955767]
+- iommu/amd: Add missing function prototypes to fix -Wmissing-prototypes (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Add SVA device feature (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Check for SVA features (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Seize private ASID (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Share process page tables (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Move definitions to a header (Jerry Snitselaar) [1955767]
+- iommu/io-pgtable-arm: Move some definitions to a header (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Ensure queue is read after updating prod pointer (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Constify some helpers (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Prepare for the adreno-smmu implementation (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Add support for split pagetables (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Pass io-pgtable config to implementation specific function (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Fix endianness annotations (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: permit users to disable msi polling (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: replace module_param_named by module_param for disable_bypass (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: replace symbolic permissions by octal permissions for module parameter (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Fix l1 stream table size in the error message (Jerry Snitselaar) [1955767]
+- ACPI: Do not create new NUMA domains from ACPI static tables that are not SRAT (Jerry Snitselaar) [1955767]
+- iommu/amd: Prevent NULL pointer dereference (Jerry Snitselaar) [1955767]
+- treewide: Use fallthrough pseudo-keyword (Jerry Snitselaar) [1955767]
+- virtio-iommu: convert to LE accessors (Jerry Snitselaar) [1955767]
+- virtio_iommu: correct tags for config space fields (Jerry Snitselaar) [1955767]
+- mmap locking API: use coccinelle to convert mmap_sem rwsem call sites (Jerry Snitselaar) [1955767]
+- iommu/iova: Unify format of the printed messages (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Move Arm SMMU drivers into their own subdirectory (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: move TLB timeout and spin count macros (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Call configuration impl hook before consuming features (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Manage ASIDs with xarray (Jerry Snitselaar) [1955767]
+- redhat/configs: Add CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Break insecure users by disabling bypass by default (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Workaround for Marvell Armada-AP806 SoC erratum #582743 (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Allow client devices to select direct mapping (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Add global/context fault implementation hooks (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: add NVIDIA implementation for ARM MMU-500 usage (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Fix trivial typo (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu: Update impl quirks comment (Jerry Snitselaar) [1955767]
+- iommu: arm-smmu-impl: Convert to a generic reset implementation (Jerry Snitselaar) [1955767]
+- iommu: arm-smmu-impl: Add sdm845 implementation hook (Jerry Snitselaar) [1955767]
+- firmware/qcom_scm: Add scm call to handle smmu errata (Jerry Snitselaar) [1955767]
+- firmware: qcom_scm-64: Add atomic version of qcom_scm_call (Jerry Snitselaar) [1955767]
+- firmware: qcom: scm: Ensure 'a0' status code is treated as signed (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Batch context descriptor invalidation (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Write level-1 descriptors atomically (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Add support for PCI PASID (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Add second level of context descriptor table (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Prepare for handling arm_smmu_write_ctx_desc() failure (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Propagate ssid_bits (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Add support for Substream IDs (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Add context descriptor tables allocators (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Prepare arm_smmu_s1_cfg for SSID support (Jerry Snitselaar) [1955767]
+- dt-bindings: document PASID property for IOMMU masters (Jerry Snitselaar) [1955767]
+- iommu/arm-smmu-v3: Don't display an error when IRQ lines are missing (Jerry Snitselaar) [1955767]
+- selftests: net: add UDP GRO forwarding self-tests (Paolo Abeni) [1948493]
+- bareudp: allow UDP L4 GRO passthrou (Paolo Abeni) [1948493]
+- geneve: allow UDP L4 GRO passthrou (Paolo Abeni) [1948493]
+- vxlan: allow L4 GRO passthrough (Paolo Abeni) [1948493]
+- udp: never accept GSO_FRAGLIST packets (Paolo Abeni) [1948493]
+- udp: properly complete L4 GRO over UDP tunnel packet (Paolo Abeni) [1948493]
+- udp: skip L4 aggregation for UDP tunnel packets (Paolo Abeni) [1948493]
+- udp: fixup csum for GSO receive slow path (Paolo Abeni) [1948493]
+- udp: allow forwarding of plain (non-fraglisted) UDP GRO packets (Paolo Abeni) [1948493]
+- net: introduce a netdev feature for UDP GRO forwarding (Paolo Abeni) [1948493]
+- [s390] s390/pkey: support CCA and EP11 secure ECC private keys (Claudio Imbrenda) [1780669]
+- [s390] s390/zcrypt: Support for CCA APKA master keys (Claudio Imbrenda) [1780669]
+- [s390] s390/zcrypt: remove set_fs() invocation in zcrypt device driver (Claudio Imbrenda) [1780669]
+- [s390] s390/zcrypt: simplify cca_findcard2 loop code (Claudio Imbrenda) [1780669]
+- cxgb4: Add new T6 PCI device id 0x6092 (Rahul Lakkireddy) [1950186]
+- KVM: VMX: Don't use vcpu->run->internal.ndata as an array index (Jon Maloy) [1954219] {CVE-2021-3501}
+- Bluetooth: Prevent out-of-bounds read in hci_inquiry_result_with_rssi_evt() (Gopal Tiwari) [1978598]
+- Bluetooth: Prevent out-of-bounds read in hci_inquiry_result_evt() (Gopal Tiwari) [1978598]
+- Bluetooth: Fix slab-out-of-bounds read in hci_extended_inquiry_result_evt() (Gopal Tiwari) [1978598]
+- x86/cpu: Avoid cpuinfo-induced IPIing of idle CPUs (Waiman Long) [1970499]
+- x86/cpu: Avoid cpuinfo-induced IPI pileups (Waiman Long) [1970499]
+- x86/cpu: Disable frequency requests via aperfmperf IPI for nohz_full CPUs (Waiman Long) [1970499]
+- x86: Convert some slow-path static_cpu_has() callers to boot_cpu_has() (Waiman Long) [1970499]
+- x86/ldt: Enable LDT user-mapping for PAE (Waiman Long) [1970499]
+- fanotify: fix merging marks masks with FAN_ONDIR (Miklos Szeredi) [1832099]
+- sfc: avoid duplicated code in ef10_sriov (Íñigo Huguet) [1931779]
+- sfc: explain that "attached" VFs only refer to Xen (Íñigo Huguet) [1931779]
+- sfc: error code if SRIOV cannot be disabled (Íñigo Huguet) [1931779]
+- sfc: avoid double pci_remove of VFs (Íñigo Huguet) [1931779]
+- tpm: fix error return code in tpm2_get_cc_attrs_tbl() (Jerry Snitselaar) [1920812]
+- tpm, tpm_tis: Reserve locality in tpm_tis_resume() (Jerry Snitselaar) [1920812]
+- tpm, tpm_tis: Extend locality handling to TPM2 in tpm_tis_gen_interrupt() (Jerry Snitselaar) [1920812]
+- tpm: vtpm_proxy: Avoid reading host log when using a virtual device (Jerry Snitselaar) [1920812]
+- tpm: acpi: Check eventlog signature before using it (Jerry Snitselaar) [1920812]
+- tpm: efi: Use local variable for calculating final log size (Jerry Snitselaar) [1920812]
+- tpm: Remove unintentional dump_stack() call (Jerry Snitselaar) [1920812]
+- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with request_locality() (Jerry Snitselaar) [1920812]
+- tpm, tpm_tis: Decorate tpm_get_timeouts() with request_locality() (Jerry Snitselaar) [1920812]
+- KEYS: trusted: Reserve TPM for seal and unseal operations (Jerry Snitselaar) [1920812]
+- tpm/ppi: Constify static struct attribute_group (Jerry Snitselaar) [1920812]
+- tpm: add sysfs exports for all banks of PCR registers (Jerry Snitselaar) [1920812]
+- tpm: Remove tpm_dev_wq_lock (Jerry Snitselaar) [1920812]
+- tpm: Fix fall-through warnings for Clang (Jerry Snitselaar) [1920812]
+- tpm_tis: Clean up locality release (Jerry Snitselaar) [1920812]
+- tpm_tis: Disable interrupts on ThinkPad T490s (Jerry Snitselaar) [1920812]
+- tpm_tis: Fix check_locality for correct locality acquisition (Jerry Snitselaar) [1920812]
+- fuse: invalidate attrs when page writeback completes (Vivek Goyal) [1966424]
+- net/sched: act_ct: remove rh_mark_used_feature mark (Marcelo Ricardo Leitner) [1973381]
+- selftests: netfilter: Pass family parameter "-f" to conntrack tool (Hangbin Liu) [1979203]
+- selftests: netfilter: remove unused cnt and simplify command testing (Hangbin Liu) [1979203]
+- selftests: netfilter: fix nft_meta.sh error reporting (Hangbin Liu) [1979203]
+- selftests: netfilter: add cpu counter check (Hangbin Liu) [1979203]
+- selftests: netfilter: add meta iif/oif match test (Hangbin Liu) [1979203]
+- NFS: Only change the cookie verifier if the directory page cache is empty (Benjamin Coddington) [1982825]
+- NFS: Fix handling of cookie verifier in uncached_readdir() (Benjamin Coddington) [1982825]
+- nfs: Subsequent READDIR calls should carry non-zero cookieverifier (Benjamin Coddington) [1982825]
+- Revert "[netdrv] net/mlx5e: Rx, Update page pool numa node when changed" (Alaa Hleihel) [1915308]
+- mlx5: net: zero-initialize tc skb extension on allocation (Alaa Hleihel) [1915308 1965418]
+- RDMA/mlx5: Don't add slave port to unaffiliated list (Alaa Hleihel) [1915308]
+- net/mlx5: Reset mkey index on creation (Alaa Hleihel) [1915308]
+- net/mlx5e: Don't create devices during unload flow (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Fix STEv1 incorrect L3 decapsulation padding (Alaa Hleihel) [1915308]
+- net/mlx5: SF_DEV, remove SF device on invalid state (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Allow setting GUID for host PF vport (Alaa Hleihel) [1915308 1967488]
+- net/mlx5: E-Switch, Read PF mac address (Alaa Hleihel) [1915308 1967488]
+- net/mlx5: Check that driver was probed prior attaching the device (Alaa Hleihel) [1915308]
+- net/mlx5: Fix error path for set HCA defaults (Alaa Hleihel) [1915308]
+- net/mlx5e: Disable TLS device offload in kdump mode (Alaa Hleihel) [1915308 1946647]
+- net/mlx5e: Disable TX MPWQE in kdump mode (Alaa Hleihel) [1915308 1946647]
+- net/mlx5e: kTLS, Add resiliency to RX resync failures (Alaa Hleihel) [1915308]
+- net/mlx5e: TX, Inline function mlx5e_tls_handle_tx_wqe() (Alaa Hleihel) [1915308]
+- net/mlx5e: TX, Inline TLS skb check (Alaa Hleihel) [1915308]
+- net/mlx5e: Cleanup unused function parameter (Alaa Hleihel) [1915308]
+- net/mlx5e: Remove non-essential TLS SQ state bit (Alaa Hleihel) [1915308]
+- net/mlx5e: Restrict usage of mlx5e_priv in params logic functions (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix lost changes during code movements (Alaa Hleihel) [1915308]
+- net/mlx5e: Move params logic into its dedicated file (Alaa Hleihel) [1915308]
+- net/mlx5e: Pass q_counter indentifier as parameter to rq_param builders (Alaa Hleihel) [1915308]
+- net/mlx5e: Block offload of outer header csum for GRE tunnel (Alaa Hleihel) [1915308]
+- net/mlx5e: Block offload of outer header csum for UDP tunnels (Alaa Hleihel) [1915308]
+- Revert "net/mlx5: Arm only EQs with EQEs" (Alaa Hleihel) [1915308]
+- net/mlx5e: Verify dev is present in get devlink port ndo (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Don't use SW steering when RoCE is not supported (Alaa Hleihel) [1915308]
+- net/mlx5: Consider RoCE cap before init RDMA resources (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix page reclaim for dead peer hairpin (Alaa Hleihel) [1915308]
+- net/mlx5e: Remove dependency in IPsec initialization flows (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix use-after-free of encap entry in neigh update handler (Alaa Hleihel) [1915308]
+- IB/mlx5: Fix initializing CQ fragments buffer (Alaa Hleihel) [1915308 1974263]
+- RDMA/mlx5: Block FDB rules when not in switchdev mode (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Use different doorbell memory for different processes (Alaa Hleihel) [1915308]
+- net/mlx5: Fix duplicate included vhca_event.h (Alaa Hleihel) [1915308]
+- net/mlx5: Fix lag port remapping logic (Alaa Hleihel) [1915308]
+- net/mlx5e: IPsec/rep_tc: Fix rep_tc_update_skb drops IPsec packet (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Create multi-destination flow table with level less than 64 (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix adding encap rules to slow path (Alaa Hleihel) [1915308]
+- net/mlx5e: Check for needed capability for cvlan matching (Alaa Hleihel) [1915308]
+- net/mlx5: Check firmware sync reset requested is set before trying to abort it (Alaa Hleihel) [1915308]
+- net/mlx5e: Disable TLS offload for uplink representor (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix incompatible casting (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Fix query DCT via DEVX (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Recover from fatal event in dual port mode (Alaa Hleihel) [1915308]
+- net/mlx5: Set term table as an unmanaged flow table (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix error path of updating netdev queues (Alaa Hleihel) [1915308]
+- net/mlx5e: Reject mirroring on source port change encap rules (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix multipath lag activation (Alaa Hleihel) [1915308]
+- net/mlx5e: reset XPS on error flow if netdev isn't registered yet (Alaa Hleihel) [1915308]
+- net/mlx5e: Make sure fib dev exists in fib event (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix null deref accessing lag dev (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix nullptr in mlx5e_tc_add_fdb_flow() (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Fix show state inactive when its inactivated (Alaa Hleihel) [1915308]
+- net/mlx5: Set reformat action when needed for termination rules (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix nullptr in add_vlan_push_action() (Alaa Hleihel) [1915308]
+- {net, RDMA}/mlx5: Fix override of log_max_qp by other device (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Fix SQ/RQ in doorbell bitmask (Alaa Hleihel) [1915308]
+- net/mlx5: Fix bit-wise and with zero (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Fix drop packet rule in egress table (Alaa Hleihel) [1915308]
+- net/mlx5: Fix spelling mistakes in mlx5_core_info message (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Fixed typo in STE v0 (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Fix mlx5 rates to IB rates map (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Fix query RoCE port (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Zero out ODP related items in the mlx5_ib_mr (Alaa Hleihel) [1915308]
+- net/mlx5e: Alloc flow spec using kvzalloc instead of kzalloc (Alaa Hleihel) [1915308]
+- net/mlx5: Avoid unnecessary operation (Alaa Hleihel) [1915308]
+- net/mlx5e: rep: Improve reg_cX conditions (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Fix return type (Alaa Hleihel) [1915308]
+- net/mlx5e: mlx5_tc_ct_init does not fail (Alaa Hleihel) [1915308]
+- net/mlx5: Fix indir stable stubs (Alaa Hleihel) [1915308]
+- net/mlx5e: Add missing include (Alaa Hleihel) [1915308]
+- net/mlx5e: fix mlx5e_tc_tun_update_header_ipv6 dummy definition (Alaa Hleihel) [1915308]
+- net/mlx5e: CT, Avoid false lock dependency warning (Alaa Hleihel) [1915308]
+- net/mlx5: Check returned value from health recover sequence (Alaa Hleihel) [1915308]
+- net/mlx5: Don't rely on interface state bit (Alaa Hleihel) [1915308]
+- net/mlx5: Remove second FW tracer check (Alaa Hleihel) [1915308]
+- net/mlx5: Separate probe vs. reload flows (Alaa Hleihel) [1915308]
+- net/mlx5: Remove impossible checks of interface state (Alaa Hleihel) [1915308]
+- net/mlx5: Don't skip vport check (Alaa Hleihel) [1915308]
+- net/mlx5e: Register nic devlink port for SF ports (Alaa Hleihel) [1915308]
+- vdpa/mlx5: Retrieve BAR address suitable any function (Alaa Hleihel) [1915308]
+- vdpa/mlx5: Use the correct dma device when registering memory (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Extend SF table for additional SF id range (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Split mlx5_sf_hw_table into two parts (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Use helpers for allocation and free (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Consider own vhca events of SF devices (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Store and use start function id (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Rely on hw table for SF devlink port allocation (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Consider SF ports of host PF (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Use xarray for vport number to vport and rep mapping (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Prepare to return total vports from eswitch struct (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Return eswitch max ports when eswitch is supported (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Reuse stored hardware function id (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Use device pointer directly (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Initialize eswitch acls ns when eswitch is enabled (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Move legacy code to a individual file (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Convert a macro to a helper routine (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch Make cleanup sequence mirror of init (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Make vport number u16 (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Skip querying SF enabled bits (Alaa Hleihel) [1915308]
+- IB/mlx5: Set right RoCE l3 type and roce version while deleting GID (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, move QoS specific fields to existing qos struct (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, cut down mlx5_vport_info structure size by 8 bytes (Alaa Hleihel) [1915308]
+- net/mlx5: Pair mutex_destory with mutex_init for rate limit table (Alaa Hleihel) [1915308]
+- net/mlx5: Allocate rate limit table when rate is configured (Alaa Hleihel) [1915308]
+- net/mlx5: Use helper to increment, decrement rate entry refcount (Alaa Hleihel) [1915308]
+- net/mlx5: Use helpers to allocate and free rl table entries (Alaa Hleihel) [1915308]
+- net/mlx5: Do not hold mutex while reading table constants (Alaa Hleihel) [1915308]
+- net/mlx5: Pack mlx5_rl_entry structure (Alaa Hleihel) [1915308]
+- net/mlx5: Use unsigned int for free_count (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, move QoS specific fields to existing qos struct (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, cut down mlx5_vport_info structure size by 8 bytes (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, let user to enable disable metadata (Alaa Hleihel) [1915308]
+- net/mlx5e: TC, Add support to offload sample action (Alaa Hleihel) [1915308 1919649]
+- net/mlx5e: TC, Handle sampled packets (Alaa Hleihel) [1915308 1919649]
+- net/mlx5e: TC, Refactor tc update skb function (Alaa Hleihel) [1915308 1919649]
+- net/mlx5e: TC, Add sampler restore handle API (Alaa Hleihel) [1915308 1919649]
+- net/mlx5e: TC, Add sampler object API (Alaa Hleihel) [1915308 1919649]
+- net/mlx5e: TC, Add sampler termination table API (Alaa Hleihel) [1915308 1919649]
+- net/mlx5e: TC, Parse sample action (Alaa Hleihel) [1915308 1919649]
+- net/mlx5: Instantiate separate mapping objects for FDB and NIC tables (Alaa Hleihel) [1915308 1919649]
+- net/mlx5: Map register values to restore objects (Alaa Hleihel) [1915308 1919649]
+- net/mlx5: E-switch, Set per vport table default group number (Alaa Hleihel) [1915308 1919649]
+- net/mlx5: E-switch, Generalize per vport table API (Alaa Hleihel) [1915308 1919649]
+- net/mlx5: E-switch, Rename functions to follow naming convention. (Alaa Hleihel) [1915308 1919649]
+- net/mlx5: E-switch, Move vport table functions to a new file (Alaa Hleihel) [1915308 1919649]
+- net/mlx5: CT: Add support for mirroring (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, Protect changing mode while adding rules (Alaa Hleihel) [1915308 1790457]
+- net/mlx5: E-Switch, Change mode lock from mutex to rw semaphore (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Do not reload ethernet ports when changing eswitch mode (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Unregister eth-reps devices first (Alaa Hleihel) [1915308 1790457]
+- net/mlx5: Move mlx5e hw resources into a sub object (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Register nic devlink port with switch id (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Verify dev is present in some ndos (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Use nic mode netdev ndos and ethtool ops for uplink representor (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Add offload stats ndos to nic netdev ops (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Distinguish nic and esw offload in tc setup block cb (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Allow legacy vf ndos only if in legacy mode (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: Same max num channels for both nic and uplink profiles (Alaa Hleihel) [1915308 1790457]
+- net/mlx5e: fix ingress_ifindex check in mlx5e_flower_parse_meta (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix setting of RS FEC mode (Alaa Hleihel) [1915308]
+- net/mlx5: Fix setting of devlink traps in switchdev mode (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Add missing vhca_id consume from STEv1 (Alaa Hleihel) [1915308]
+- net/mlx5: fix kfree mismatch in indir_table.c (Alaa Hleihel) [1915308]
+- net/mlx5: Fix PBMC register mapping (Alaa Hleihel) [1915308]
+- net/mlx5: Fix PPLM register mapping (Alaa Hleihel) [1915308]
+- net/mlx5: Fix placement of log_max_flow_counter (Alaa Hleihel) [1915308]
+- net/mlx5: Fix HW spec violation configuring uplink (Alaa Hleihel) [1915308]
+- net/mlx5e: Guarantee room for XSK wakeup NOP on async ICOSQ (Alaa Hleihel) [1915308]
+- net/mlx5e: Consider geneve_opts for encap contexts (Alaa Hleihel) [1915308]
+- net/mlx5: Don't request more than supported EQs (Alaa Hleihel) [1915308]
+- net/mlx5e: kTLS, Fix RX counters atomicity (Alaa Hleihel) [1915308]
+- net/mlx5e: kTLS, Fix TX counters atomicity (Alaa Hleihel) [1915308]
+- net/mlx5: E-switch, Create vport miss group only if src rewrite is supported (Alaa Hleihel) [1915308 1915310]
+- net/mlx5e: Fix ethtool indication of connector type (Alaa Hleihel) [1915308]
+- net/mlx5: Delete auxiliary bus driver eth-rep first (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix mapping of ct_label zero (Alaa Hleihel) [1915308]
+- net/mlx5: SF, do not use ecpu bit for vhca state processing (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix division by 0 in mlx5e_select_queue (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix error path for ethtool set-priv-flag (Alaa Hleihel) [1915308]
+- net/mlx5e: Offload tuple rewrite for non-CT flows (Alaa Hleihel) [1915308]
+- net/mlx5e: Allow to match on MPLS parameters only for MPLS over UDP (Alaa Hleihel) [1915308]
+- net/mlx5: Add back multicast stats for uplink representor (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Fix typo in destroy_mkey inbox (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Fix potential shift wrapping of 32-bit value in STEv1 getter (Alaa Hleihel) [1915308]
+- net/mlx5: SF: Fix error flow of SFs allocation flow (Alaa Hleihel) [1915308]
+- net/mlx5: SF: Fix memory leak of work item (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Correct vhca context size (Alaa Hleihel) [1915308]
+- net/mlx5e: E-switch, Fix rate calculation division (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Fix timestamp default mode (Alaa Hleihel) [1915308]
+- net/mlx5: Set QP timestamp mode to default (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix error flow in change profile (Alaa Hleihel) [1915308]
+- net/mlx5: Disable VF tunnel TX offload if ignore_flow_level isn't supported (Alaa Hleihel) [1915308 1915310]
+- net/mlx5e: Check correct ip_version in decapsulation route resolution (Alaa Hleihel) [1915308]
+- net/mlx5: Fix turn-off PPS command (Alaa Hleihel) [1915308]
+- net/mlx5e: Don't match on Geneve options in case option masks are all zero (Alaa Hleihel) [1915308]
+- net/mlx5e: Revert parameters on errors when changing PTP state without reset (Alaa Hleihel) [1915308]
+- net/mlx5e: When changing XDP program without reset, take refs for XSK RQs (Alaa Hleihel) [1915308]
+- net/mlx5e: Set PTP channel pointer explicitly to NULL (Alaa Hleihel) [1915308]
+- net/mlx5e: Accumulate port PTP TX stats with other channels stats (Alaa Hleihel) [1915308]
+- net/mlx5e: RX, Mind the MPWQE gaps when calculating offsets (Alaa Hleihel) [1915308]
+- net/mlx5e: Enforce minimum value check for ICOSQ size (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Set correct kernel-doc identifier (Alaa Hleihel) [1915308]
+- IB/mlx5: Add missing error code (Alaa Hleihel) [1915308]
+- configs: Enable mlx5 subfunction device support (Alaa Hleihel) [1915308 1851717]
+- net/mlx5: Add cyc2time HW translation mode support (Alaa Hleihel) [1915308 1919657]
+- net/mlx5: Move some PPS logic into helper functions (Alaa Hleihel) [1915308 1919657]
+- net/mlx5: Move all internal timer metadata into a dedicated struct (Alaa Hleihel) [1915308 1919657]
+- net/mlx5: Refactor init clock function (Alaa Hleihel) [1915308 1919657]
+- net/mlx5: Add register layout to support real-time time-stamp (Alaa Hleihel) [1915308 1919657]
+- RDMA/mlx5: Fail QP creation if the device can not support the CQE TS (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Allow CQ creation without attached EQs (Alaa Hleihel) [1915308]
+- net/mlx5: Add new timestamp mode bits (Alaa Hleihel) [1915308 1919657]
+- net/mlx5: Remove TLS dependencies on XPS (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Fix error return code in mlx5_sf_dev_probe() (Alaa Hleihel) [1915308 1851717]
+- net/mlx5e: Fix error return code in mlx5e_tc_esw_init() (Alaa Hleihel) [1915308 1919647]
+- net/mlx5: Fix a NULL vs IS_ERR() check (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: Fix tc_tun.h to verify MLX5_ESWITCH config (Alaa Hleihel) [1915308 1919647]
+- net/mlx5: Assign boolean values to a bool variable (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix spelling mistake "Unknouwn" -> "Unknown" (Alaa Hleihel) [1915308]
+- net/mlx5e: Fix spelling mistake "channles" -> "channels" (Alaa Hleihel) [1915308]
+- net/mlx5: Delete device list leftover (Alaa Hleihel) [1915308]
+- net/mlx5_core: remove unused including <generated/utsrelease.h> (Alaa Hleihel) [1915308]
+- net/mlx5: fix spelling mistake in Kconfig "accelaration" -> "acceleration" (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Support 400Gbps IB rate in mlx5 driver (Alaa Hleihel) [1915308]
+- RDMA/mlx5: Cleanup the synchronize_srcu() from the ODP flow (Alaa Hleihel) [1915308]
+- net/mlx5e: Handle FIB events to update tunnel endpoint device (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: Rename some encap-specific API to generic names (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: TC preparation refactoring for routing update event (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: Refactor neigh update infrastructure (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: Create route entry infrastructure (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: Extract tc tunnel encap/decap code to dedicated file (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: Match recirculated packet miss in slow table using reg_c1 (Alaa Hleihel) [1915308 1915310 1919647]
+- net/mlx5e: Refactor reg_c1 usage (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: VF tunnel RX traffic offloading (Alaa Hleihel) [1915308 1915310 1919647]
+- net/mlx5e: Remove redundant match on tunnel destination mac (Alaa Hleihel) [1915308 1919647]
+- net/mlx5: E-Switch, Indirect table infrastructure (Alaa Hleihel) [1915308 1915310 1919647]
+- net/mlx5e: Refactor tun routing helpers (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: VF tunnel TX traffic offloading (Alaa Hleihel) [1915308 1915310 1919647]
+- net/mlx5: E-Switch, Refactor rule offload forward action processing (Alaa Hleihel) [1915308 1915310 1919647]
+- net/mlx5e: Always set attr mdev pointer (Alaa Hleihel) [1915308 1919647]
+- net/mlx5e: E-Switch, Maintain vhca_id to vport_num mapping (Alaa Hleihel) [1915308 1915310 1919647]
+- net/mlx5: E-Switch, Refactor setting source port (Alaa Hleihel) [1915308 1915310 1919647]
+- IB/mlx5: Use rdma_for_each_port for port iteration (Alaa Hleihel) [1915308]
+- RDMA/core: Introduce and use API to read port immutable data (Alaa Hleihel) [1915308]
+- IB/mlx5: Improve query port for representor port (Alaa Hleihel) [1915308]
+- IB/mlx5: Avoid calling query device for reading pkey table length (Alaa Hleihel) [1915308]
+- IB/mlx5: Move mlx5_port_caps from mlx5_core_dev to mlx5_ib_dev (Alaa Hleihel) [1915308]
+- IB/mlx5: Support default partition key for representor port (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Avoid unnecessary csum recalculation on supporting devices (Alaa Hleihel) [1915308]
+- net/mlx5e: CT: remove useless conversion to PTR_ERR then ERR_PTR (Alaa Hleihel) [1915308]
+- net/mlx5e: accel, remove redundant space (Alaa Hleihel) [1915308]
+- net/mlx5e: kTLS, Improve TLS RX workqueue scope (Alaa Hleihel) [1915308]
+- net/mlx5e: remove h from printk format specifier (Alaa Hleihel) [1915308]
+- net/mlx5e: Increase indirection RQ table size to 256 (Alaa Hleihel) [1915308]
+- net/mlx5e: Enable napi in channel's activation stage (Alaa Hleihel) [1915308]
+- net/mlx5e: Move representor neigh init into profile enable (Alaa Hleihel) [1915308]
+- net/mlx5e: Avoid false lock depenency warning on tc_ht (Alaa Hleihel) [1915308]
+- net/mlx5e: Move set vxlan nic info to profile init (Alaa Hleihel) [1915308]
+- net/mlx5e: Move netif_carrier_off() out of mlx5e_priv_init() (Alaa Hleihel) [1915308]
+- net/mlx5e: Refactor mlx5e_netdev_init/cleanup to mlx5e_priv_init/cleanup (Alaa Hleihel) [1915308]
+- net/mxl5e: Add change profile method (Alaa Hleihel) [1915308]
+- net/mlx5e: Separate between netdev objects and mlx5e profiles initialization (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Allow SW steering for sw_owner_v2 devices (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Copy all 64B whenever replacing STE in the head of miss-list (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Use HW specific logic API when writing STE (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Use the right size when writing partial STE into HW (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Add STEv1 modify header logic (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Add STEv1 action apply logic (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Add STEv1 setters and getters (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Allow native protocol support for HW STEv1 (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Add HW STEv1 match logic (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Add match STEv1 structs to ifc (Alaa Hleihel) [1915308 1851712]
+- net/mlx5: DR, Fix potential shift wrapping of 32-bit value (Alaa Hleihel) [1915308 1851712]
+- net/mlx5e: Enable traps according to link state (Alaa Hleihel) [1915308 1919652]
+- net/mlx5e: Add listener to DMAC filter trap event (Alaa Hleihel) [1915308 1919652]
+- net/mlx5e: Add listener to trap event (Alaa Hleihel) [1915308 1919652]
+- net/mlx5e: Add trap entity to ETH driver (Alaa Hleihel) [1915308 1919652]
+- net/mlx5e: Expose RX dma info helpers (Alaa Hleihel) [1915308 1919652]
+- net/mlx5e: Add flow steering DMAC trap rule (Alaa Hleihel) [1915308 1919652]
+- net/mlx5e: Add flow steering VLAN trap rule (Alaa Hleihel) [1915308 1919652]
+- net/mlx5e: Optimize promiscuous mode (Alaa Hleihel) [1915308 1919652]
+- net/mlx5: Notify on trap action by blocking event (Alaa Hleihel) [1915308 1919652]
+- net/mlx5: Rename events notifier header (Alaa Hleihel) [1915308 1919652]
+- net/mlx5: Register to devlink DMAC filter trap (Alaa Hleihel) [1915308 1919652]
+- net/mlx5: Register to devlink ingress VLAN filter trap (Alaa Hleihel) [1915308 1919652]
+- net/mlx5: Add support for devlink traps in mlx5 core driver (Alaa Hleihel) [1915308 1919652]
+- net/mlx5e: Support HTB offload (Alaa Hleihel) [1915308]
+- net/mlx5: SF, Port function state change support (Alaa Hleihel) [1915308 1851717]
+- net/mlx5: SF, Add port add delete functionality (Alaa Hleihel) [1915308 1851717]
+- net/mlx5: E-switch, Add eswitch helpers for SF vport (Alaa Hleihel) [1915308 1915310 1851717]
+- net/mlx5: E-switch, Prepare eswitch to handle SF vport (Alaa Hleihel) [1915308 1915310 1851717]
+- net/mlx5: SF, Add auxiliary device driver (Alaa Hleihel) [1915308 1851717]
+- net/mlx5: SF, Add auxiliary device support (Alaa Hleihel) [1915308 1851717]
+- net/mlx5: Introduce vhca state event notifier (Alaa Hleihel) [1915308 1851717]
+- RDMA/hw/mlx5/qp: Demote non-conformant kernel-doc header (Alaa Hleihel) [1915308]
+- RDMA/hw/mlx5/odp: Fix formatting and add missing descriptions in 'pagefault_data_segments()' (Alaa Hleihel) [1915308]
+- IB/mlx5: Make function static (Alaa Hleihel) [1915308]
+- net/mlx5e: IPsec, Remove unnecessary config flag usage (Alaa Hleihel) [1915308]
+- net/mlx5e: IPsec, Inline feature_check fast-path function (Alaa Hleihel) [1915308]
+- net/mlx5e: IPsec, Avoid unreachable return (Alaa Hleihel) [1915308]
+- net/mlx5e: IPsec, Enclose csum logic under ipsec config (Alaa Hleihel) [1915308]
+- net/mlx5e: CT: Remove redundant usage of zone mask (Alaa Hleihel) [1915308]
+- net/mlx5e: Remove redundant initialization to null (Alaa Hleihel) [1915308]
+- net/mlx5e: CT: Pass null instead of zero spec (Alaa Hleihel) [1915308]
+- net/mlx5e: E-Switch, Offload all chain 0 priorities when modify header and forward action is not supported (Alaa Hleihel) [1915308]
+- net/mlx5: E-Switch, use new cap as condition for mpls over udp (Alaa Hleihel) [1915308]
+- net/mlx5e: Simplify condition on esw_vport_enable_qos() (Alaa Hleihel) [1915308]
+- net/mlx5: Add HW definition of reg_c_preserve (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Move STEv0 modify header logic (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Add STE modify header actions per-device API (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Move STEv0 action apply logic (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Add STE tx/rx actions per-device API (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Move STEv0 setters and getters (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Add STE setters and getters per-device API (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Move action apply logic to dr_ste (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Refactor ICMP STE builder (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Move STEv0 look up types from mlx5_ifc_dr header (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Merge similar DR STE SET macros (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Fix STEv0 source_eswitch_owner_vhca_id support (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Remove unused macro definition from dr_ste (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Move HW STEv0 match logic to a separate file (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Use the new HW specific STE infrastructure (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Move macros from dr_ste.c to header (Alaa Hleihel) [1915308]
+- net/mlx5: DR, Add infrastructure for supporting several steering formats (Alaa Hleihel) [1915308]
+- ext4: handle read only external journal device (Lukas Czerner) [1860929]
+- vfio/pci: Handle concurrent vma faults (Alex Williamson) [1976551]
+- vfio-pci: Use io_remap_pfn_range() for PCI IO memory (Alex Williamson) [1976551]
+- net: flow_dissector: Parse PTP L2 packet header (Ivan Vecera) [1971687]
+- net: vlan: Add parse protocol header ops (Ivan Vecera) [1971687]
+- PCI: hv: Remove bus device removal unused refcount/functions (Mohammed Gamal) [1982482]
+- PCI: hv: Fix a race condition when removing the device (Mohammed Gamal) [1982482]
+- RDMA/cxgb4: check for ipv6 address properly while destroying listener (Raju Rangoju) [1961313]
+- RDMA/cxgb4: Fix adapter LE hash errors while destroying ipv6 listening server (Raju Rangoju) [1961313]
+- RDMA: Convert sysfs device * show functions to use sysfs_emit() (Raju Rangoju) [1961313]
+- RDMA/iw_cxgb4: Disable delayed ack by default (Raju Rangoju) [1961313]
+- [infiniband] treewide: Remove uninitialized_var() usage (Raju Rangoju) [1961313]
+- RDMA/iw_cxgb4: cleanup device debugfs entries on ULD remove (Raju Rangoju) [1961313]
+- vfs: allow unprivileged whiteout creation (Miklos Szeredi) [1983608]
+- Documentation: kdump: update kdump guide (Baoquan He) [1938067]
+- docs: admin-guide: add kdump documentation into it (Baoquan He) [1938067]
+- docs: kdump: convert docs to ReST and rename to *.rst (Baoquan He) [1938067]
+
+* Wed Jul 14 2021 Augusto Caringi <acaringi@redhat.com> [4.18.0-323.el8]
+- Revert "be2net: disable bh with spin_lock in be_process_mcc" (Petr Oros) [1973504]
+- nvmet-rdma: Fix NULL deref when SEND is completed with error (Gopal Tiwari) [1959856]
+- netfilter: nft_exthdr: Search chunks in SCTP packets only (Phil Sutter) [1868228]
+- netfilter: nft_exthdr: Fix for unsafe packet data read (Phil Sutter) [1868228]
+- netfilter: nft_exthdr: Support SCTP chunks (Phil Sutter) [1868228]
+- xfs: fix deadlock retry tracepoint arguments (Bill O'Donnell) [1937116]
+- xfs: fix xfs_reflink_unshare usage of filemap_write_and_wait_range (Bill O'Donnell) [1937116]
+- xfs: fix return of uninitialized value in variable error (Bill O'Donnell) [1937116]
+- xfs: fix scrub and remount-ro protection when running scrub (Bill O'Donnell) [1937116]
+- xfs: fix xfs_trans slab cache name (Bill O'Donnell) [1937116]
+- xfs: Fix a typo (Bill O'Donnell) [1937116]
+- xfs: Rudimentary spelling fix (Bill O'Donnell) [1937116]
+- xfs: Rudimentary typo fixes (Bill O'Donnell) [1937116]
+- xfs: fix dquot scrub loop cancellation (Bill O'Donnell) [1937116]
+- xfs: fix uninitialized variables in xrep_calc_ag_resblks (Bill O'Donnell) [1937116]
+- xfs: fix incorrect root dquot corruption error when switching group/project quota types (Bill O'Donnell) [1937116]
+- xfs: fix up build warnings when quotas are disabled (Bill O'Donnell) [1937116]
+- xfs: fix chown leaking delalloc quota blocks when fssetxattr fails (Bill O'Donnell) [1937116]
+- xfs: Fix assert failure in xfs_setattr_size() (Bill O'Donnell) [1937116]
+- xfs: fix an ABBA deadlock in xfs_rename (Bill O'Donnell) [1937116 1966609]
+- xfs: fix the forward progress assertion in xfs_iwalk_run_callbacks (Bill O'Donnell) [1937116]
+- xfs: fix parent pointer scrubber bailing out on unallocated inodes (Bill O'Donnell) [1937116]
+- xfs: revert "xfs: fix rmap key and record comparison functions" (Bill O'Donnell) [1937116]
+- xfs: don't allow NOWAIT DIO across extent boundaries (Bill O'Donnell) [1937116]
+- xfs: return corresponding errcode if xfs_initialize_perag() fail (Bill O'Donnell) [1937116]
+- xfs: ensure inobt record walks always make forward progress (Bill O'Donnell) [1937116]
+- xfs: fix forkoff miscalculation related to XFS_LITINO(mp) (Bill O'Donnell) [1937116]
+- xfs: directory scrub should check the null bestfree entries too (Bill O'Donnell) [1937116]
+- xfs: strengthen rmap record flags checking (Bill O'Donnell) [1937116]
+- xfs: fix the minrecs logic when dealing with inode root child blocks (Bill O'Donnell) [1937116]
+- xfs: fix a missing unlock on error in xfs_fs_map_blocks (Bill O'Donnell) [1937116]
+- xfs: fix brainos in the refcount scrubber's rmap fragment processor (Bill O'Donnell) [1937116]
+- xfs: fix rmap key and record comparison functions (Bill O'Donnell) [1937116]
+- xfs: set the unwritten bit in rmap lookup flags in xchk_bmap_get_rmapextents (Bill O'Donnell) [1937116]
+- xfs: fix flags argument to rmap lookup when converting shared file rmaps (Bill O'Donnell) [1937116]
+- xfs: only flush the unshared range in xfs_reflink_unshare (Bill O'Donnell) [1937116]
+- xfs: fix scrub flagging rtinherit even if there is no rt device (Bill O'Donnell) [1937116]
+- xfs: fix missing CoW blocks writeback conversion retry (Bill O'Donnell) [1937116]
+- xfs: set xefi_discard when creating a deferred agfl free log intent item (Bill O'Donnell) [1937116]
+- xfs: cancel intents immediately if process_intents fails (Bill O'Donnell) [1937116]
+- xfs: fix fallocate functions when rtextsize is larger than 1 (Bill O'Donnell) [1937116]
+- xfs: fix high key handling in the rt allocator's query_range function (Bill O'Donnell) [1937116]
+- xfs: annotate grabbing the realtime bitmap/summary locks in growfs (Bill O'Donnell) [1937116]
+- xfs: make xfs_growfs_rt update secondary superblocks (Bill O'Donnell) [1937116]
+- xfs: fix realtime bitmap/summary file truncation when growing rt volume (Bill O'Donnell) [1937116]
+- xfs: fix the indent in xfs_trans_mod_dquot (Bill O'Donnell) [1937116]
+- xfs: do the ASSERT for the arguments O_{u,g,p}dqpp (Bill O'Donnell) [1937116]
+- xfs: fix deadlock and streamline xfs_getfsmap performance (Bill O'Donnell) [1937116]
+- xfs: limit entries returned when counting fsmap records (Bill O'Donnell) [1937116]
+- xfs: only relog deferred intent items if free space in the log gets low (Bill O'Donnell) [1937116]
+- xfs: expose the log push threshold (Bill O'Donnell) [1937116]
+- xfs: periodically relog deferred intent items (Bill O'Donnell) [1937116]
+- xfs: change the order in which child and parent defer ops are finished (Bill O'Donnell) [1937116]
+- xfs: fix an incore inode UAF in xfs_bui_recover (Bill O'Donnell) [1937116]
+- xfs: clean up xfs_bui_item_recover iget/trans_alloc/ilock ordering (Bill O'Donnell) [1937116]
+- xfs: clean up bmap intent item recovery checking (Bill O'Donnell) [1937116]
+- xfs: xfs_defer_capture should absorb remaining transaction reservation (Bill O'Donnell) [1937116]
+- xfs: xfs_defer_capture should absorb remaining block reservations (Bill O'Donnell) [1937116]
+- xfs: proper replay of deferred ops queued during log recovery (Bill O'Donnell) [1937116]
+- xfs: remove XFS_LI_RECOVERED (Bill O'Donnell) [1937116]
+- xfs: remove xfs_defer_reset (Bill O'Donnell) [1937116]
+- xfs: fix finobt btree block recovery ordering (Bill O'Donnell) [1937116]
+- xfs: directly call xfs_generic_create() for ->create() and ->mkdir() (Bill O'Donnell) [1937116]
+- xfs: avoid shared rmap operations for attr fork extents (Bill O'Donnell) [1937116]
+- xfs: drop the obsolete comment on filestream locking (Bill O'Donnell) [1937116]
+- xfs: code cleanup in xfs_attr_leaf_entsize_{remote,local} (Bill O'Donnell) [1937116]
+- xfs: do the assert for all the log done items in xfs_trans_cancel (Bill O'Donnell) [1937116]
+- xfs: remove the unused parameter id from xfs_qm_dqattach_one (Bill O'Donnell) [1937116]
+- xfs: remove the redundant crc feature check in xfs_attr3_rmt_verify (Bill O'Donnell) [1937116]
+- xfs: fix some comments (Bill O'Donnell) [1937116]
+- xfs: remove the unnecessary xfs_dqid_t type cast (Bill O'Donnell) [1937116]
+- xfs: use the existing type definition for di_projid (Bill O'Donnell) [1937116]
+- xfs: remove the unused SYNCHRONIZE macro (Bill O'Donnell) [1937116]
+- xfs: clean up calculation of LR header blocks (Bill O'Donnell) [1937116]
+- xfs: avoid LR buffer overrun due to crafted h_len (Bill O'Donnell) [1937116]
+- xfs: don't release log intent items when recovery fails (Bill O'Donnell) [1937116]
+- xfs: attach inode to dquot in xfs_bui_item_recover (Bill O'Donnell) [1937116]
+- xfs: log new intent items created as part of finishing recovered intent items (Bill O'Donnell) [1937116]
+- xfs: check dabtree node hash values when loading child blocks (Bill O'Donnell) [1937116]
+- xfs: don't free rt blocks when we're doing a REMAP bunmapi call (Bill O'Donnell) [1937116]
+- xfs: Set xfs_buf's b_ops member when zeroing bitmap/summary files (Bill O'Donnell) [1937116]
+- xfs: Set xfs_buf type flag when growing summary/bitmap files (Bill O'Donnell) [1937116]
+- xfs: drop extra transaction roll from inode extent truncate (Bill O'Donnell) [1937116]
+- xfs: don't propagate RTINHERIT -> REALTIME when there is no rtdev (Bill O'Donnell) [1937116]
+- xfs: ensure that fpunch, fcollapse, and finsert operations are aligned to rt extent size (Bill O'Donnell) [1937116]
+- xfs: refactor inode flags propagation code (Bill O'Donnell) [1937116]
+- xfs: make sure the rt allocator doesn't run off the end (Bill O'Donnell) [1937116]
+- xfs: Remove unneeded semicolon (Bill O'Donnell) [1937116]
+- xfs: force the log after remapping a synchronous-writes file (Bill O'Donnell) [1937116]
+- xfs: Convert xfs_attr_sf macros to inline functions (Bill O'Donnell) [1937116]
+- xfs: Use variable-size array for nameval in xfs_attr_sf_entry (Bill O'Donnell) [1937116]
+- xfs: Remove typedef xfs_attr_shortform_t (Bill O'Donnell) [1937116]
+- xfs: remove typedef xfs_attr_sf_entry_t (Bill O'Donnell) [1937116]
+- xfs: Remove kmem_zalloc_large() (Bill O'Donnell) [1937116]
+- xfs: enable big timestamps (Bill O'Donnell) [1937116]
+- xfs: trace timestamp limits (Bill O'Donnell) [1937116]
+- xfs: widen ondisk quota expiration timestamps to handle y2038+ (Bill O'Donnell) [1937116]
+- xfs: widen ondisk inode timestamps to deal with y2038+ (Bill O'Donnell) [1937116]
+- xfs: redefine xfs_ictimestamp_t (Bill O'Donnell) [1937116]
+- xfs: redefine xfs_timestamp_t (Bill O'Donnell) [1937116]
+- xfs: move xfs_log_dinode_to_disk to the log recovery code (Bill O'Donnell) [1937116]
+- xfs: refactor quota timestamp coding (Bill O'Donnell) [1937116]
+- xfs: refactor default quota grace period setting code (Bill O'Donnell) [1937116]
+- xfs: refactor quota expiration timer modification (Bill O'Donnell) [1937116]
+- xfs: explicitly define inode timestamp range (Bill O'Donnell) [1937116]
+- xfs: enable new inode btree counters feature (Bill O'Donnell) [1937116]
+- xfs: support inode btree blockcounts in online repair (Bill O'Donnell) [1937116]
+- xfs: support inode btree blockcounts in online scrub (Bill O'Donnell) [1937116]
+- xfs: use the finobt block counts to speed up mount times (Bill O'Donnell) [1937116]
+- xfs: store inode btree block counts in AGI header (Bill O'Donnell) [1937116]
+- xfs: reuse _xfs_buf_read for re-reading the superblock (Bill O'Donnell) [1937116]
+- xfs: remove xfs_getsb (Bill O'Donnell) [1937116]
+- xfs: simplify xfs_trans_getsb (Bill O'Donnell) [1937116]
+- xfs: remove xlog_recover_iodone (Bill O'Donnell) [1937116]
+- xfs: clear the read/write flags later in xfs_buf_ioend (Bill O'Donnell) [1937116]
+- xfs: use xfs_buf_item_relse in xfs_buf_item_done (Bill O'Donnell) [1937116]
+- xfs: simplify the xfs_buf_ioend_disposition calling convention (Bill O'Donnell) [1937116]
+- xfs: lift the XBF_IOEND_FAIL handling into xfs_buf_ioend_disposition (Bill O'Donnell) [1937116]
+- xfs: remove xfs_buf_ioerror_retry (Bill O'Donnell) [1937116]
+- xfs: refactor xfs_buf_ioerror_fail_without_retry (Bill O'Donnell) [1937116]
+- xfs: fold xfs_buf_ioend_finish into xfs_ioend (Bill O'Donnell) [1937116]
+- xfs: move the buffer retry logic to xfs_buf.c (Bill O'Donnell) [1937116]
+- xfs: refactor xfs_buf_ioend (Bill O'Donnell) [1937116]
+- xfs: mark xfs_buf_ioend static (Bill O'Donnell) [1937116]
+- xfs: refactor the buf ioend disposition code (Bill O'Donnell) [1937116]
+- xfs: xfs_iflock is no longer a completion (Bill O'Donnell) [1937116]
+- xfs: remove kmem_realloc() (Bill O'Donnell) [1937116]
+- xfs: don't update mtime on COW faults (Bill O'Donnell) [1937116]
+- xfs: fix xfs_bmap_validate_extent_raw when checking attr fork of rt files (Bill O'Donnell) [1937116]
+- xfs: initialize the shortform attr header padding entry (Bill O'Donnell) [1937116]
+- xfs: fix off-by-one in inode alloc block reservation calculation (Bill O'Donnell) [1937116]
+- xfs: finish dfops on every insert range shift iteration (Bill O'Donnell) [1937116]
+- xfs: Fix UBSAN null-ptr-deref in xfs_sysfs_init (Bill O'Donnell) [1937116]
+- xfs: delete duplicated words + other fixes (Bill O'Donnell) [1937116]
+- xfs: Lift -ENOSPC handler from xfs_attr_leaf_addname (Bill O'Donnell) [1937116]
+- xfs: Simplify xfs_attr_node_addname (Bill O'Donnell) [1937116]
+- xfs: Simplify xfs_attr_leaf_addname (Bill O'Donnell) [1937116]
+- xfs: Add helper function xfs_attr_node_removename_rmt (Bill O'Donnell) [1937116]
+- xfs: Add helper function xfs_attr_node_removename_setup (Bill O'Donnell) [1937116]
+- xfs: Add remote block helper functions (Bill O'Donnell) [1937116]
+- xfs: Add helper function xfs_attr_leaf_mark_incomplete (Bill O'Donnell) [1937116]
+- xfs: Add helpers xfs_attr_is_shortform and xfs_attr_set_shortform (Bill O'Donnell) [1937116]
+- xfs: Remove xfs_trans_roll in xfs_attr_node_removename (Bill O'Donnell) [1937116]
+- xfs: Remove unneeded xfs_trans_roll_inode calls (Bill O'Donnell) [1937116]
+- xfs: Add helper function xfs_attr_node_shrink (Bill O'Donnell) [1937116]
+- xfs: Pull up xfs_attr_rmtval_invalidate (Bill O'Donnell) [1937116]
+- xfs: Refactor xfs_attr_rmtval_remove (Bill O'Donnell) [1937116]
+- xfs: Pull up trans roll in xfs_attr3_leaf_clearflag (Bill O'Donnell) [1937116]
+- xfs: Factor out xfs_attr_rmtval_invalidate (Bill O'Donnell) [1937116]
+- xfs: Pull up trans roll from xfs_attr3_leaf_setflag (Bill O'Donnell) [1937116]
+- xfs: Refactor xfs_attr_try_sf_addname (Bill O'Donnell) [1937116]
+- xfs: Split apart xfs_attr_leaf_addname (Bill O'Donnell) [1937116]
+- xfs: Pull up trans handling in xfs_attr3_leaf_flipflags (Bill O'Donnell) [1937116]
+- xfs: Factor out new helper functions xfs_attr_rmtval_set (Bill O'Donnell) [1937116]
+- xfs: Check for -ENOATTR or -EEXIST (Bill O'Donnell) [1937116]
+- xfs: Add xfs_has_attr and subroutines (Bill O'Donnell) [1937116]
+- xfs: Refactor xfs_da_state_alloc() helper (Bill O'Donnell) [1937116]
+- xfs: remove xfs_zone_{alloc,zalloc} helpers (Bill O'Donnell) [1937116]
+- xfs: Modify xlog_ticket_alloc() to use kernel's MM API (Bill O'Donnell) [1937116]
+- xfs: Remove kmem_zone_zalloc() usage (Bill O'Donnell) [1937116]
+- xfs: Remove kmem_zone_alloc() usage (Bill O'Donnell) [1937116]
+- xfs: xfs_btree_staging.h: delete duplicated words (Bill O'Donnell) [1937116]
+- xfs: rename the ondisk dquot d_flags to d_type (Bill O'Donnell) [1937116]
+- xfs: improve ondisk dquot flags checking (Bill O'Donnell) [1937116]
+- xfs: create xfs_dqtype_t to represent quota types (Bill O'Donnell) [1937116]
+- xfs: replace a few open-coded XFS_DQTYPE_REC_MASK uses (Bill O'Donnell) [1937116]
+- xfs: remove unnecessary quota type masking (Bill O'Donnell) [1937116]
+- xfs: always use xfs_dquot_type when extracting type from a dquot (Bill O'Donnell) [1937116]
+- xfs: refactor quota type testing (Bill O'Donnell) [1937116]
+- xfs: remove the XFS_QM_IS[UGP]DQ macros (Bill O'Donnell) [1937116]
+- xfs: refactor testing if a particular dquot is being enforced (Bill O'Donnell) [1937116]
+- xfs: rename XFS_DQ_{USER,GROUP,PROJ} to XFS_DQTYPE_* (Bill O'Donnell) [1937116]
+- xfs: drop the type parameter from xfs_dquot_verify (Bill O'Donnell) [1937116]
+- xfs: add more dquot tracepoints (Bill O'Donnell) [1937116]
+- xfs: actually bump warning counts when we send warnings (Bill O'Donnell) [1937116]
+- xfs: assume the default quota limits are always set in xfs_qm_adjust_dqlimits (Bill O'Donnell) [1937116]
+- xfs: refactor xfs_trans_apply_dquot_deltas (Bill O'Donnell) [1937116]
+- xfs: refactor xfs_trans_dqresv (Bill O'Donnell) [1937116]
+- xfs: refactor xfs_qm_scall_setqlim (Bill O'Donnell) [1937116]
+- xfs: refactor quota exceeded test (Bill O'Donnell) [1937116]
+- xfs: remove unnecessary arguments from quota adjust functions (Bill O'Donnell) [1937116]
+- xfs: refactor default quota limits by resource (Bill O'Donnell) [1937116]
+- xfs: remove qcore from incore dquots (Bill O'Donnell) [1937116]
+- xfs: stop using q_core timers in the quota code (Bill O'Donnell) [1937116]
+- xfs: stop using q_core warning counters in the quota code (Bill O'Donnell) [1937116]
+- xfs: stop using q_core counters in the quota code (Bill O'Donnell) [1937116]
+- xfs: stop using q_core limits in the quota code (Bill O'Donnell) [1937116]
+- xfs: use a per-resource struct for incore dquot data (Bill O'Donnell) [1937116]
+- xfs: stop using q_core.d_id in the quota code (Bill O'Donnell) [1937116]
+- xfs: stop using q_core.d_flags in the quota code (Bill O'Donnell) [1937116]
+- xfs: make XFS_DQUOT_CLUSTER_SIZE_FSB part of the ondisk format (Bill O'Donnell) [1937116]
+- xfs: rename dquot incore state flags (Bill O'Donnell) [1937116]
+- xfs: refactor quotacheck flags usage (Bill O'Donnell) [1937116]
+- xfs: move the flags argument of xfs_qm_scall_trunc_qfiles to XFS_QMOPT_* (Bill O'Donnell) [1937116]
+- xfs: validate ondisk/incore dquot flags (Bill O'Donnell) [1937116]
+- xfs: fix inode quota reservation checks (Bill O'Donnell) [1937116]
+- xfs: clear XFS_DQ_FREEING if we can't lock the dquot buffer to flush (Bill O'Donnell) [1937116]
+- xfs: drain the buf delwri queue before xfsaild idles (Bill O'Donnell) [1937116]
+- xfs: remove duplicated include from xfs_buf_item.c (Bill O'Donnell) [1937116]
+- xfs: remove SYNC_WAIT and SYNC_TRYLOCK (Bill O'Donnell) [1937116]
+- xfs: get rid of unnecessary xfs_perag_{get,put} pairs (Bill O'Donnell) [1937116]
+- xfs: rtbitmap scrubber should check inode size (Bill O'Donnell) [1937116]
+- xfs: rtbitmap scrubber should verify written extents (Bill O'Donnell) [1937116]
+- xfs: remove xfs_inobp_check() (Bill O'Donnell) [1937116]
+- xfs: factor xfs_iflush_done (Bill O'Donnell) [1937116]
+- xfs: rework xfs_iflush_cluster() dirty inode iteration (Bill O'Donnell) [1937116]
+- xfs: rename xfs_iflush_int() (Bill O'Donnell) [1937116]
+- xfs: xfs_iflush() is no longer necessary (Bill O'Donnell) [1937116]
+- xfs: attach inodes to the cluster buffer when dirtied (Bill O'Donnell) [1937116]
+- xfs: rework stale inodes in xfs_ifree_cluster (Bill O'Donnell) [1937116]
+- xfs: clean up inode reclaim comments (Bill O'Donnell) [1937116]
+- xfs: remove SYNC_WAIT from xfs_reclaim_inodes() (Bill O'Donnell) [1937116]
+- xfs: remove SYNC_TRYLOCK from inode reclaim (Bill O'Donnell) [1937116]
+- xfs: don't block inode reclaim on the ILOCK (Bill O'Donnell) [1937116]
+- xfs: allow multiple reclaimers per AG (Bill O'Donnell) [1937116]
+- xfs: remove IO submission from xfs_reclaim_inode() (Bill O'Donnell) [1937116]
+- xfs: make inode reclaim almost non-blocking (Bill O'Donnell) [1937116]
+- xfs: pin inode backing buffer to the inode log item (Bill O'Donnell) [1937116]
+- xfs: move xfs_clear_li_failed out of xfs_ail_delete_one() (Bill O'Donnell) [1937116]
+- xfs: unwind log item error flagging (Bill O'Donnell) [1937116]
+- xfs: handle buffer log item IO errors directly (Bill O'Donnell) [1937116]
+- xfs: get rid of log item callbacks (Bill O'Donnell) [1937116]
+- xfs: clean up the buffer iodone callback functions (Bill O'Donnell) [1937116]
+- xfs: use direct calls for dquot IO completion (Bill O'Donnell) [1937116]
+- xfs: make inode IO completion buffer centric (Bill O'Donnell) [1937116]
+- xfs: clean up whacky buffer log item list reinit (Bill O'Donnell) [1937116]
+- xfs: call xfs_buf_iodone directly (Bill O'Donnell) [1937116]
+- xfs: mark log recovery buffers for completion (Bill O'Donnell) [1937116]
+- xfs: mark dquot buffers in cache (Bill O'Donnell) [1937116]
+- xfs: mark inode buffers in cache (Bill O'Donnell) [1937116]
+- xfs: add an inode item lock (Bill O'Donnell) [1937116]
+- xfs: remove logged flag from inode log item (Bill O'Donnell) [1937116]
+- xfs: Don't allow logging of XFS_ISTALE inodes (Bill O'Donnell) [1937116]
+- xfs: remove useless definitions in xfs_linux.h (Bill O'Donnell) [1937116]
+- xfs: use MMAPLOCK around filemap_map_pages() (Bill O'Donnell) [1937116]
+- xfs: move helpers that lock and unlock two inodes against userspace IO (Bill O'Donnell) [1937116]
+- xfs: refactor locking and unlocking two inodes against userspace IO (Bill O'Donnell) [1937116]
+- xfs: fix xfs_reflink_remap_prep calling conventions (Bill O'Donnell) [1937116]
+- xfs: reflink can skip remap existing mappings (Bill O'Donnell) [1937116]
+- xfs: only reserve quota blocks if we're mapping into a hole (Bill O'Donnell) [1937116]
+- xfs: only reserve quota blocks for bmbt changes if we're changing the data fork (Bill O'Donnell) [1937116]
+- xfs: redesign the reflink remap loop to fix blkres depletion crash (Bill O'Donnell) [1937116]
+- xfs: rename xfs_bmap_is_real_extent to is_written_extent (Bill O'Donnell) [1937116]
+- xfs: Couple of typo fixes in comments (Bill O'Donnell) [1937116]
+- xfs: fix use-after-free on CIL context on shutdown (Bill O'Donnell) [1937116]
+- xfs: flag files as supporting buffered async reads (Bill O'Donnell) [1937116]
+- fs: add FMODE_BUF_RASYNC (Bill O'Donnell) [1937116]
+- xfs: more lockdep whackamole with kmem_alloc* (Bill O'Donnell) [1937116 1965923]
+- xfs: rearrange xfs_inode_walk_ag parameters (Bill O'Donnell) [1937116]
+- xfs: straighten out all the naming around incore inode tree walks (Bill O'Donnell) [1937116]
+- xfs: move xfs_inode_ag_iterator to be closer to the perag walking code (Bill O'Donnell) [1937116]
+- xfs: use bool for done in xfs_inode_ag_walk (Bill O'Donnell) [1937116]
+- xfs: fix inode ag walk predicate function return values (Bill O'Donnell) [1937116]
+- xfs: refactor eofb matching into a single helper (Bill O'Donnell) [1937116]
+- xfs: remove __xfs_icache_free_eofblocks (Bill O'Donnell) [1937116]
+- xfs: remove flags argument from xfs_inode_ag_walk (Bill O'Donnell) [1937116]
+- xfs: remove xfs_inode_ag_iterator_flags (Bill O'Donnell) [1937116]
+- xfs: remove unused xfs_inode_ag_iterator function (Bill O'Donnell) [1937116]
+- xfs: replace open-coded XFS_ICI_NO_TAG (Bill O'Donnell) [1937116]
+- xfs: move eofblocks conversion function to xfs_ioctl.c (Bill O'Donnell) [1937116]
+- xfs: remove the m_active_trans counter (Bill O'Donnell) [1937116]
+- xfs: separate read-only variables in struct xfs_mount (Bill O'Donnell) [1937116]
+- xfs: reduce free inode accounting overhead (Bill O'Donnell) [1937116]
+- xfs: gut error handling in xfs_trans_unreserve_and_mod_sb() (Bill O'Donnell) [1937116]
+- xfs: cleanup xfs_idestroy_fork (Bill O'Donnell) [1937116]
+- xfs: move the fork format fields into struct xfs_ifork (Bill O'Donnell) [1937116]
+- xfs: move the per-fork nextents fields into struct xfs_ifork (Bill O'Donnell) [1937116]
+- xfs: remove xfs_ifree_local_data (Bill O'Donnell) [1937116]
+- xfs: remove the XFS_DFORK_Q macro (Bill O'Donnell) [1937116]
+- xfs: clean up xchk_bmap_check_rmaps usage of XFS_IFORK_Q (Bill O'Donnell) [1937116]
+- xfs: remove the NULL fork handling in xfs_bmapi_read (Bill O'Donnell) [1937116]
+- xfs: remove the special COW fork handling in xfs_bmapi_read (Bill O'Donnell) [1937116]
+- xfs: improve local fork verification (Bill O'Donnell) [1937116]
+- xfs: refactor xfs_inode_verify_forks (Bill O'Donnell) [1937116]
+- xfs: remove xfs_ifork_ops (Bill O'Donnell) [1937116]
+- xfs: remove xfs_iread (Bill O'Donnell) [1937116]
+- xfs: don't reset i_delayed_blks in xfs_iread (Bill O'Donnell) [1937116]
+- xfs: call xfs_dinode_verify from xfs_inode_from_disk (Bill O'Donnell) [1937116]
+- xfs: handle unallocated inodes in xfs_inode_from_disk (Bill O'Donnell) [1937116]
+- xfs: split xfs_iformat_fork (Bill O'Donnell) [1937116]
+- xfs: call xfs_iformat_fork from xfs_inode_from_disk (Bill O'Donnell) [1937116]
+- xfs: xfs_bmapi_read doesn't take a fork id as the last argument (Bill O'Donnell) [1937116]
+- xfs: fix the warning message in xfs_validate_sb_common() (Bill O'Donnell) [1937116]
+- xfs: don't allow SWAPEXT if we'd screw up quota accounting (Bill O'Donnell) [1937116]
+- xfs: use ordered buffers to initialize dquot buffers during quotacheck (Bill O'Donnell) [1937116]
+- xfs: don't fail verifier on empty attr3 leaf block (Bill O'Donnell) [1937116]
+- xfs: Use the correct style for SPDX License Identifier (Bill O'Donnell) [1937116]
+- xfs: Replace zero-length array with flexible-array (Bill O'Donnell) [1937116]
+- xfs: ensure f_bfree returned by statfs() is non-negative (Bill O'Donnell) [1937116]
+- xfs: remove duplicate headers (Bill O'Donnell) [1937116]
+- xfs: fix unused variable warning in buffer completion on !DEBUG (Bill O'Donnell) [1937116]
+- xfs: remove unnecessary includes from xfs_log_recover.c (Bill O'Donnell) [1937116]
+- xfs: move log recovery buffer cancellation code to xfs_buf_item_recover.c (Bill O'Donnell) [1937116]
+- xfs: hoist setting of XFS_LI_RECOVERED to caller (Bill O'Donnell) [1937116]
+- xfs: refactor intent item iop_recover calls (Bill O'Donnell) [1937116]
+- xfs: refactor intent item RECOVERED flag into the log item (Bill O'Donnell) [1937116]
+- xfs: refactor adding recovered intent items to the log (Bill O'Donnell) [1937116]
+- xfs: refactor releasing finished intents during log recovery (Bill O'Donnell) [1937116]
+- xfs: refactor xlog_item_is_intent now that we're done converting (Bill O'Donnell) [1937116]
+- xfs: refactor recovered BUI log item playback (Bill O'Donnell) [1937116]
+- xfs: refactor recovered CUI log item playback (Bill O'Donnell) [1937116]
+- xfs: refactor recovered RUI log item playback (Bill O'Donnell) [1937116]
+- xfs: refactor recovered EFI log item playback (Bill O'Donnell) [1937116]
+- xfs: remove log recovery quotaoff item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery BUI item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery CUI item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery RUI item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery EFI item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery icreate item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery dquot item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery inode item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery buffer item dispatch for pass2 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery item dispatch for pass1 commit functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery item dispatch for pass2 readhead functions (Bill O'Donnell) [1937116]
+- xfs: refactor log recovery item sorting into a generic dispatch structure (Bill O'Donnell) [1937116]
+- xfs: convert xfs_log_recover_item_t to struct xfs_log_recover_item (Bill O'Donnell) [1937116]
+- xfs: remove unused iget_flags param from xfs_imap_to_bp() (Bill O'Donnell) [1937116]
+- xfs: remove unused shutdown types (Bill O'Donnell) [1937116]
+- xfs: random buffer write failure errortag (Bill O'Donnell) [1937116]
+- xfs: remove unused iflush stale parameter (Bill O'Donnell) [1937116]
+- xfs: combine xfs_trans_ail_[remove|delete]() (Bill O'Donnell) [1937116]
+- xfs: drop unused shutdown parameter from xfs_trans_ail_remove() (Bill O'Donnell) [1937116]
+- xfs: use delete helper for items expected to be in AIL (Bill O'Donnell) [1937116]
+- xfs: acquire ->ail_lock from xfs_trans_ail_delete() (Bill O'Donnell) [1937116]
+- xfs: abort consistently on dquot flush failure (Bill O'Donnell) [1937116]
+- xfs: ratelimit unmount time per-buffer I/O error alert (Bill O'Donnell) [1937116]
+- xfs: refactor ratelimited buffer error messages into helper (Bill O'Donnell) [1937116]
+- xfs: reset buffer write failure state on successful completion (Bill O'Donnell) [1937116]
+- xfs: remove unnecessary shutdown check from xfs_iflush() (Bill O'Donnell) [1937116]
+- xfs: simplify inode flush error handling (Bill O'Donnell) [1937116]
+- xfs: factor out buffer I/O failure code (Bill O'Donnell) [1937116]
+- xfs: refactor failed buffer resubmission into xfsaild (Bill O'Donnell) [1937116]
+- xfs: spell out the parameter name for ->cancel_item (Bill O'Donnell) [1937116]
+- xfs: use a xfs_btree_cur for the ->finish_cleanup state (Bill O'Donnell) [1937116]
+- xfs: turn dfp_done into a xfs_log_item (Bill O'Donnell) [1937116]
+- xfs: refactor xfs_defer_finish_noroll (Bill O'Donnell) [1937116]
+- xfs: turn dfp_intent into a xfs_log_item (Bill O'Donnell) [1937116]
+- xfs: merge the ->diff_items defer op into ->create_intent (Bill O'Donnell) [1937116]
+- xfs: merge the ->log_item defer op into ->create_intent (Bill O'Donnell) [1937116]
+- xfs: factor out a xfs_defer_create_intent helper (Bill O'Donnell) [1937116]
+- xfs: remove the xfs_inode_log_item_t typedef (Bill O'Donnell) [1937116]
+- xfs: remove the xfs_efd_log_item_t typedef (Bill O'Donnell) [1937116]
+- xfs: remove the xfs_efi_log_item_t typedef (Bill O'Donnell) [1937116]
+- xfs: refactor xlog_recover_buffer_pass1 (Bill O'Donnell) [1937116]
+- xfs: simplify xlog_recover_inode_ra_pass2 (Bill O'Donnell) [1937116]
+- xfs: factor out a xlog_buf_readahead helper (Bill O'Donnell) [1937116]
+- xfs: rename inode_list xlog_recover_reorder_trans (Bill O'Donnell) [1937116]
+- xfs: refactor the buffer cancellation table helpers (Bill O'Donnell) [1937116]
+- xfs: define printk_once variants for xfs messages (Bill O'Donnell) [1937116]
+- xfs: stop CONFIG_XFS_DEBUG from changing compiler flags (Bill O'Donnell) [1937116]
+- xfs: remove unnecessary check of the variable resblks in xfs_symlink (Bill O'Donnell) [1937116]
+- xfs: simplify the flags setting in xfs_qm_scall_quotaon (Bill O'Donnell) [1937116]
+- xfs: remove unnecessary assertion from xfs_qm_vop_create_dqattach (Bill O'Donnell) [1937116]
+- xfs: remove unnecessary variable udqp from xfs_ioctl_setattr (Bill O'Donnell) [1937116]
+- xfs: reserve quota inode transaction space only when needed (Bill O'Donnell) [1937116]
+- xfs: combine two if statements with same condition (Bill O'Donnell) [1937116]
+- xfs: trace quota allocations for all quota types (Bill O'Donnell) [1937116]
+- xfs: report unrecognized log item type codes during recovery (Bill O'Donnell) [1937116]
+- xfs: move inode flush to the sync workqueue (Bill O'Donnell) [1937116]
+- xfs: fix partially uninitialized structure in xfs_reflink_remap_extent (Bill O'Donnell) [1937116]
+- xfs: fix inode number overflow in ifree cluster helper (Bill O'Donnell) [1937116]
+- xfs: remove redundant variable assignment in xfs_symlink() (Bill O'Donnell) [1937116]
+- xfs: ratelimit inode flush on buffered write ENOSPC (Bill O'Donnell) [1937116]
+- xfs: return locked status of inode buffer on xfsaild push (Bill O'Donnell) [1937116]
+- xfs: trylock underlying buffer on dquot flush (Bill O'Donnell) [1937116]
+- xfs: remove unnecessary ternary from xfs_create (Bill O'Donnell) [1937116]
+- xfs: don't write a corrupt unmount record to force summary counter recalc (Bill O'Donnell) [1937116]
+- xfs: factor inode lookup from xfs_ifree_cluster (Bill O'Donnell) [1937116]
+- xfs: tail updates only need to occur when LSN changes (Bill O'Donnell) [1937116]
+- xfs: factor common AIL item deletion code (Bill O'Donnell) [1937116]
+- xfs: correctly acount for reclaimable slabs (Bill O'Donnell) [1937116]
+- xfs: Improve metadata buffer reclaim accountability (Bill O'Donnell) [1937116]
+- xfs: don't allow log IO to be throttled (Bill O'Donnell) [1937116]
+- xfs: Throttle commits on delayed background CIL push (Bill O'Donnell) [1937116]
+- xfs: Lower CIL flush limit for large logs (Bill O'Donnell) [1937116]
+- xfs: remove some stale comments from the log code (Bill O'Donnell) [1937116]
+- xfs: refactor unmount record writing (Bill O'Donnell) [1937116]
+- xfs: merge xlog_commit_record with xlog_write_done (Bill O'Donnell) [1937116]
+- xfs: split xlog_ticket_done (Bill O'Donnell) [1937116]
+- xfs: kill XLOG_TIC_INITED (Bill O'Donnell) [1937116]
+- xfs: refactor and split xfs_log_done() (Bill O'Donnell) [1937116]
+- xfs: re-order initial space accounting checks in xlog_write (Bill O'Donnell) [1937116]
+- xfs: don't try to write a start record into every iclog (Bill O'Donnell) [1937116]
+- xfs: validate the realtime geometry in xfs_validate_sb_common (Bill O'Donnell) [1937116]
+- xfs: shutdown on failure to add page to log bio (Bill O'Donnell) [1937116]
+- xfs: directory bestfree check should release buffers (Bill O'Donnell) [1937116]
+- xfs: drop all altpath buffers at the end of the sibling check (Bill O'Donnell) [1937116]
+- xfs: remove xlog_state_want_sync (Bill O'Donnell) [1937116]
+- xfs: move the ioerror check out of xlog_state_clean_iclog (Bill O'Donnell) [1937116]
+- xfs: refactor xlog_state_clean_iclog (Bill O'Donnell) [1937116]
+- xfs: remove the aborted parameter to xlog_state_done_syncing (Bill O'Donnell) [1937116]
+- xfs: simplify log shutdown checking in xfs_log_release_iclog (Bill O'Donnell) [1937116]
+- xfs: simplify the xfs_log_release_iclog calling convention (Bill O'Donnell) [1937116]
+- xfs: factor out a xlog_wait_on_iclog helper (Bill O'Donnell) [1937116]
+- xfs: merge xlog_cil_push into xlog_cil_push_work (Bill O'Donnell) [1937116]
+- xfs: remove the di_version field from struct icdinode (Bill O'Donnell) [1937116]
+- xfs: simplify a check in xfs_ioctl_setattr_check_cowextsize (Bill O'Donnell) [1937116]
+- xfs: simplify di_flags2 inheritance in xfs_ialloc (Bill O'Donnell) [1937116]
+- xfs: only check the superblock version for dinode size calculation (Bill O'Donnell) [1937116]
+- xfs: add a new xfs_sb_version_has_v3inode helper (Bill O'Donnell) [1937116]
+- xfs: add support for rmap btree staging cursors (Bill O'Donnell) [1937116]
+- xfs: add support for refcount btree staging cursors (Bill O'Donnell) [1937116]
+- xfs: add support for inode btree staging cursors (Bill O'Donnell) [1937116]
+- xfs: add support for free space btree staging cursors (Bill O'Donnell) [1937116]
+- xfs: support bulk loading of staged btrees (Bill O'Donnell) [1937116]
+- xfs: introduce fake roots for inode-rooted btrees (Bill O'Donnell) [1937116]
+- xfs: introduce fake roots for ag-rooted btrees (Bill O'Donnell) [1937116]
+- xfs: replace open-coded bitmap weight logic (Bill O'Donnell) [1937116]
+- xfs: rename xfs_bitmap to xbitmap (Bill O'Donnell) [1937116]
+- xfs: xrep_reap_extents should not destroy the bitmap (Bill O'Donnell) [1937116]
+- xfs: cleanup xfs_log_unmount_write (Bill O'Donnell) [1937116]
+- xfs: remove dead code from xfs_log_unmount_write (Bill O'Donnell) [1937116]
+- xfs: remove the unused return value from xfs_log_unmount_write (Bill O'Donnell) [1937116]
+- xfs: remove the unused XLOG_UNMOUNT_REC_TYPE define (Bill O'Donnell) [1937116]
+- xfs: mark XLOG_FORCED_SHUTDOWN as unlikely (Bill O'Donnell) [1937116]
+- xfs: make the btree ag cursor private union anonymous (Bill O'Donnell) [1937116]
+- xfs: make the btree cursor union members named structure (Bill O'Donnell) [1937116]
+- xfs: make btree cursor private union anonymous (Bill O'Donnell) [1937116]
+- xfs: rename btree cursor private btree member flags (Bill O'Donnell) [1937116]
+- xfs: convert btree cursor inode-private member names (Bill O'Donnell) [1937116]
+- xfs: convert btree cursor ag-private member name (Bill O'Donnell) [1937116]
+- xfs: introduce new private btree cursor names (Bill O'Donnell) [1937116]
+- xfs: Use scnprintf() for avoiding potential buffer overflow (Bill O'Donnell) [1937116]
+- xfs: mark extended attr corrupt when lookup-by-hash fails (Bill O'Donnell) [1937116]
+- xfs: mark dir corrupt when lookup-by-hash fails (Bill O'Donnell) [1937116]
+- xfs: check owner of dir3 blocks (Bill O'Donnell) [1937116]
+- xfs: check owner of dir3 data blocks (Bill O'Donnell) [1937116]
+- xfs: check owner of dir3 free blocks (Bill O'Donnell) [1937116]
+- xfs: fix buffer corruption reporting when xfs_dir3_free_header_check fails (Bill O'Donnell) [1937116]
+- xfs: xfs_buf_corruption_error should take __this_address (Bill O'Donnell) [1937116]
+- xfs: add a function to deal with corrupt buffers post-verifiers (Bill O'Donnell) [1937116]
+- xfs: remove XFS_BUF_TO_SBP (Bill O'Donnell) [1937116]
+- xfs: remove XFS_BUF_TO_AGF (Bill O'Donnell) [1937116]
+- xfs: remove XFS_BUF_TO_AGI (Bill O'Donnell) [1937116]
+- xfs: remove the xfs_agfl_t typedef (Bill O'Donnell) [1937116]
+- xfs: remove the agfl_bno member from struct xfs_agfl (Bill O'Donnell) [1937116]
+- xfs: switch xfs_attrmulti_attr_get to lazy attr buffer allocation (Bill O'Donnell) [1937116]
+- xfs: only allocate the buffer size actually needed in __xfs_set_acl (Bill O'Donnell) [1937116]
+- xfs: clean up bufsize alignment in xfs_ioc_attr_list (Bill O'Donnell) [1937116]
+- xfs: embedded the attrlist cursor into struct xfs_attr_list_context (Bill O'Donnell) [1937116]
+- xfs: remove XFS_DA_OP_INCOMPLETE (Bill O'Donnell) [1937116]
+- xfs: clean up the attr flag confusion (Bill O'Donnell) [1937116]
+- xfs: clean up the ATTR_REPLACE checks (Bill O'Donnell) [1937116]
+- xfs: improve xfs_forget_acl (Bill O'Donnell) [1937116]
+- xfs: lift cursor copy in/out into xfs_ioc_attr_list (Bill O'Donnell) [1937116]
+- xfs: lift buffer allocation into xfs_ioc_attr_list (Bill O'Donnell) [1937116]
+- xfs: lift common checks into xfs_ioc_attr_list (Bill O'Donnell) [1937116]
+- xfs: rename xfs_attr_list_int to xfs_attr_list (Bill O'Donnell) [1937116]
+- xfs: move the legacy xfs_attr_list to xfs_ioctl.c (Bill O'Donnell) [1937116]
+- xfs: open code ATTR_ENTSIZE (Bill O'Donnell) [1937116]
+- xfs: remove the unused ATTR_ENTRY macro (Bill O'Donnell) [1937116]
+- xfs: cleanup struct xfs_attr_list_context (Bill O'Donnell) [1937116]
+- xfs: factor out a xfs_attr_match helper (Bill O'Donnell) [1937116]
+- xfs: replace ATTR_KERNOTIME with XFS_DA_OP_NOTIME (Bill O'Donnell) [1937116]
+- xfs: remove ATTR_ALLOC and XFS_DA_OP_ALLOCVAL (Bill O'Donnell) [1937116]
+- xfs: remove ATTR_KERNOVAL (Bill O'Donnell) [1937116]
+- xfs: remove the xfs_inode argument to xfs_attr_get_ilocked (Bill O'Donnell) [1937116]
+- xfs: pass an initialized xfs_da_args to xfs_attr_get (Bill O'Donnell) [1937116]
+- xfs: pass an initialized xfs_da_args structure to xfs_attr_set (Bill O'Donnell) [1937116]
+- xfs: turn xfs_da_args.value into a void pointer (Bill O'Donnell) [1937116]
+- xfs: remove the MAXNAMELEN check from xfs_attr_args_init (Bill O'Donnell) [1937116]
+- xfs: remove the name == NULL check from xfs_attr_args_init (Bill O'Donnell) [1937116]
+- xfs: factor out a helper for a single XFS_IOC_ATTRMULTI_BY_HANDLE op (Bill O'Donnell) [1937116]
+- xfs: use strndup_user in XFS_IOC_ATTRMULTI_BY_HANDLE (Bill O'Donnell) [1937116]
+- xfs: merge xfs_attrmulti_attr_remove into xfs_attrmulti_attr_set (Bill O'Donnell) [1937116]
+- xfs: merge xfs_attr_remove into xfs_attr_set (Bill O'Donnell) [1937116]
+- xfs: remove the ATTR_INCOMPLETE flag (Bill O'Donnell) [1937116]
+- xfs: reject invalid flags combinations in XFS_IOC_ATTRLIST_BY_HANDLE (Bill O'Donnell) [1937116]
+- xfs: rework collapse range into an atomic operation (Bill O'Donnell) [1937116]
+- xfs: rework insert range into an atomic operation (Bill O'Donnell) [1937116]
+- xfs: open code insert range extent split helper (Bill O'Donnell) [1937116]
+- xfs: Add missing annotation to xfs_ail_check() (Bill O'Donnell) [1937116]
+- xfs: fix an undefined behaviour in _da3_path_shift (Bill O'Donnell) [1937116]
+- xfs: ratelimit xfs_discard_page messages (Bill O'Donnell) [1937116]
+- xfs: ratelimit xfs_buf_ioerror_alert messages (Bill O'Donnell) [1937116]
+- xfs: remove the kuid/kgid conversion wrappers (Bill O'Donnell) [1937116]
+- xfs: remove the icdinode di_uid/di_gid members (Bill O'Donnell) [1937116]
+- xfs: ensure that the inode uid/gid match values match the icdinode ones (Bill O'Donnell) [1937116]
+- xfs: improve error message when we can't allocate memory for xfs_buf (Bill O'Donnell) [1937116]
+- ceph: fix test for whether we can skip read when writing beyond EOF (Jeff Layton) [1971101]
+- redhat/configs: Add CONFIG_X86_SGX_KVM (Bandan Das) [1494649]
+- KVM: x86: Fix implicit enum conversion goof in scattered reverse CPUID code (Bandan Das) [1494649]
+- KVM: x86: Add capability to grant VM access to privileged SGX attribute (Bandan Das) [1494649]
+- KVM: VMX: Enable SGX virtualization for SGX1, SGX2 and LC (Bandan Das) [1494649]
+- KVM: VMX: Add ENCLS[EINIT] handler to support SGX Launch Control (LC) (Bandan Das) [1494649]
+- KVM: VMX: Add emulation of SGX Launch Control LE hash MSRs (Bandan Das) [1494649]
+- KVM: VMX: Add SGX ENCLS[ECREATE] handler to enforce CPUID restrictions (Bandan Das) [1494649]
+- KVM: VMX: Frame in ENCLS handler for SGX virtualization (Bandan Das) [1494649]
+- KVM: VMX: Add basic handling of VM-Exit from SGX enclave (Bandan Das) [1494649]
+- KVM: x86: Add reverse-CPUID lookup support for scattered SGX features (Bandan Das) [1494649]
+- KVM: x86: Add support for reverse CPUID lookup of scattered features (Bandan Das) [1494649]
+- KVM: x86: Define new #PF SGX error code bit (Bandan Das) [1494649]
+- KVM: x86: Export kvm_mmu_gva_to_gpa_{read,write}() for SGX (VMX) (Bandan Das) [1494649]
+- x86/sgx: Mark sgx_vepc_vm_ops static (Bandan Das) [1494649]
+- x86/sgx: Do not update sgx_nr_free_pages in sgx_setup_epc_section() (Bandan Das) [1494649]
+- x86/sgx: Move provisioning device creation out of SGX driver (Bandan Das) [1494649]
+- x86/sgx: Add helpers to expose ECREATE and EINIT to KVM (Bandan Das) [1494649]
+- x86/sgx: Add helper to update SGX_LEPUBKEYHASHn MSRs (Bandan Das) [1494649]
+- x86/sgx: Add encls_faulted() helper (Bandan Das) [1494649]
+- x86/sgx: Add SGX2 ENCLS leaf definitions (EAUG, EMODPR and EMODT) (Bandan Das) [1494649]
+- x86/sgx: Move ENCLS leaf definitions to sgx.h (Bandan Das) [1494649]
+- x86/sgx: Expose SGX architectural definitions to the kernel (Bandan Das) [1494649]
+- x86/sgx: Initialize virtual EPC driver even when SGX driver is disabled (Bandan Das) [1494649]
+- x86/cpu/intel: Allow SGX virtualization without Launch Control support (Bandan Das) [1494649]
+- x86/sgx: Introduce virtual EPC for use by KVM guests (Bandan Das) [1494649]
+- x86/sgx: Add SGX_CHILD_PRESENT hardware error code (Bandan Das) [1494649]
+- x86/sgx: Wipe out EREMOVE from sgx_free_epc_page() (Bandan Das) [1494649]
+- x86/cpufeatures: Add SGX1 and SGX2 sub-features (Bandan Das) [1494649]
+- x86/cpufeatures: Make SGX_LC feature bit depend on SGX bit (Bandan Das) [1494649]
+- x86/sgx: Remove unnecessary kmap() from sgx_ioc_enclave_init() (Bandan Das) [1494649]
+- selftests/sgx: Use getauxval() to simplify test code (Bandan Das) [1494649]
+- selftests/sgx: Improve error detection and messages (Bandan Das) [1494649]
+- x86/sgx: Add a basic NUMA allocation scheme to sgx_alloc_epc_page() (Bandan Das) [1494649]
+- x86/sgx: Replace section->init_laundry_list with sgx_dirty_page_list (Bandan Das) [1494649]
+- x86/sgx: Maintain encl->refcount for each encl->mm_list entry (Bandan Das) [1494649]
+- MAINTAINERS: Add Dave Hansen as reviewer for INTEL SGX (Bandan Das) [1494649]
+- x86/NUMA: Provide a range-to-target_node lookup facility (Bandan Das) [1494649]
+- x86/mm: Introduce CONFIG_NUMA_KEEP_MEMINFO (Bandan Das) [1494649]
+- configs: Enable CONFIG_MLXBF_GIGE on aarch64 (Alaa Hleihel) [1803489]
+- Add Mellanox BlueField Gigabit Ethernet driver (Alaa Hleihel) [1803489]
+- integrity: Use current_uid() in integrity_audit_message() (Richard Guy Briggs) [1957052]
+- ima: AppArmor satisfies the audit rule requirements (Richard Guy Briggs) [1957052]
+- IMA: Add audit log for failure conditions (Richard Guy Briggs) [1957052]
+- integrity: Add errno field in audit message (Richard Guy Briggs) [1957052]
+- audit: add blank line after variable declarations (Richard Guy Briggs) [1957052]
+- audit: drop /proc/PID/loginuid documentation Format field (Richard Guy Briggs) [1957052]
+- audit: avoid -Wempty-body warning (Richard Guy Briggs) [1957052]
+- audit: document /proc/PID/sessionid (Richard Guy Briggs) [1957052]
+- audit: document /proc/PID/loginuid (Richard Guy Briggs) [1957052]
+- MAINTAINERS: update audit files (Richard Guy Briggs) [1957052]
+- audit: further cleanup of AUDIT_FILTER_ENTRY deprecation (Richard Guy Briggs) [1957052]
+- netfilter: nftables: fix a warning message in nf_tables_commit_audit_collect() (Richard Guy Briggs) [1957052]
+- audit: log nftables configuration change events once per table (Richard Guy Briggs) [1957052]
+- audit_alloc_mark(): don't open-code ERR_CAST() (Richard Guy Briggs) [1957052]
+- make dump_common_audit_data() safe to be called from RCU pathwalk (Richard Guy Briggs) [1957052]
+- new helper: d_find_alias_rcu() (Richard Guy Briggs) [1957052]
+- audit: Make audit_filter_syscall() return void (Richard Guy Briggs) [1957052]
+- audit: Remove leftover reference to the audit_tasklet (Richard Guy Briggs) [1957052]
+- kernel/audit: convert comma to semicolon (Richard Guy Briggs) [1957052]
+- dump_common_audit_data(): fix racy accesses to ->d_name (Richard Guy Briggs) [1957052]
+- audit: replace atomic_add_return() (Richard Guy Briggs) [1957052]
+- x86/audit: Fix a -Wmissing-prototypes warning for ia32_classify_syscall() (Richard Guy Briggs) [1957052]
+- ethtool: fix kdoc attr name (Ivan Vecera) [1967261]
+- ethtool: Remove link_mode param and derive link params from driver (Ivan Vecera) [1967261]
+- ethtool: Add lanes parameter for ETHTOOL_LINK_MODE_10000baseR_FEC_BIT (Ivan Vecera) [1967261]
+- ethtool: fix kdoc in headers (Ivan Vecera) [1967261]
+- ethtool: document reserved fields in the uAPI (Ivan Vecera) [1967261]
+- ethtool: un-kdocify extended link state (Ivan Vecera) [1967261]
+- ethtool: document PHY tunable callbacks (Ivan Vecera) [1967261]
+- docs: ethtool: fix some copy-paste errors (Ivan Vecera) [1967261]
+- ethtool: fix incorrect datatype in set_eee ops (Ivan Vecera) [1967261]
+- net: selftests: Add lanes setting test (Ivan Vecera) [1967261]
+- mlxsw: ethtool: Pass link mode in use to ethtool (Ivan Vecera) [1967261]
+- mlxsw: ethtool: Add support for setting lanes when autoneg is off (Ivan Vecera) [1967261]
+- mlxsw: ethtool: Remove max lanes filtering (Ivan Vecera) [1967261]
+- ethtool: Expose the number of lanes in use (Ivan Vecera) [1967261]
+- ethtool: Get link mode in use instead of speed and duplex parameters (Ivan Vecera) [1967261]
+- ethtool: prepare __ethtool_get_link_ksettings for subsequent changes (Ivan Vecera) [1967261]
+- ethtool: Extend link modes settings uAPI with lanes (Ivan Vecera) [1967261]
+- ethtool: Validate master slave configuration before rtnl_lock() (Ivan Vecera) [1967261]
+- ethtool: fix string set id check (Ivan Vecera) [1967261]
+- ethtool: fix stack overflow in ethnl_parse_bitset() (Ivan Vecera) [1967261]
+- selftests: add ring and coalesce selftests (Ivan Vecera) [1967261]
+- selftests: refactor get_netdev_name function (Ivan Vecera) [1967261]
+- selftests: extract common functions in ethtool-common.sh (Ivan Vecera) [1967261]
+- netdevsim: support ethtool ring and coalesce settings (Ivan Vecera) [1967261]
+- netdevsim: move ethtool pause params in separate struct (Ivan Vecera) [1967261]
+- ethtool: add ETHTOOL_COALESCE_ALL_PARAMS define (Ivan Vecera) [1967261]
+- ethtool: netlink: add missing netdev_features_change() call (Ivan Vecera) [1967261]
+- ethtool: remove unneeded semicolon (Ivan Vecera) [1967261]
+- ethtool: allow netdev driver to define phy tunables (Ivan Vecera) [1967261]
+- ethtool: mark netlink family as __ro_after_init (Ivan Vecera) [1967261]
+- ethtool: Add 100base-FX link mode entries (Ivan Vecera) [1967261]
+- ethtool: fix error handling in ethtool_phys_id (Ivan Vecera) [1967261]
+- ethtool: allow flow-type ether without IP protocol field (Ivan Vecera) [1967261]
+- net: phy: Uninline PHY ethtool statistics operations (Ivan Vecera) [1967261]
+- net: phy: Define PHY statistics ethtool_phy_ops (Ivan Vecera) [1967261]
+- net: ethtool: Remove PHYLIB direct dependency (Ivan Vecera) [1967261]
+- net: phy: Register ethtool PHY operations (Ivan Vecera) [1967261]
+- genksyms: Ignore module scoped _Static_assert() (Ivan Vecera) [1967261]
+- net: ethtool: Introduce ethtool_phy_ops (Ivan Vecera) [1967261]
+- Documentation: networking: fix ethtool-netlink table formats (Ivan Vecera) [1967261]
+- ethtool: ioctl: Use array_size() in copy_to_user() (Ivan Vecera) [1967261]
+- net: ethtool: cabletest: Make ethnl_act_cable_test_tdr_cfg static (Ivan Vecera) [1967261]
+- SUNRPC: Handle major timeout in xprt_adjust_timeout() (Scott Mayhew) [1979070]
+- gro_cells: reduce number of synchronize_net() calls (Ivan Vecera) [1959015]
+- net: make sure napi_list is safe for RCU traversal (Ivan Vecera) [1959015]
+- net: manage napi add/del idempotence explicitly (Ivan Vecera) [1959015]
+- net: remove napi_hash_del() from driver-facing API (Ivan Vecera) [1959015]
+- net: disable netpoll on fresh napis (Ivan Vecera) [1959015]
+- usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled (Torez Smith) [1942772]
+- xhci: Fix 5.12 regression of missing xHC cache clearing command after a Stall (Torez Smith) [1942772]
+- xhci: fix giving back URB with incorrect status regression in 5.12 (Torez Smith) [1942772]
+- usb: typec: ucsi: Clear pending after acking connector change (Torez Smith) [1942772]
+- net: hso: check for allocation failure in hso_create_bulk_serial_device() (Torez Smith) [1942772]
+- usb: typec: tcpm: Fix wrong handling in GET_SINK_CAP (Torez Smith) [1942772]
+- net: hso: fix NULL-deref on disconnect regression (Torez Smith) [1942772]
+- USB: CDC-ACM: fix poison/unpoison imbalance (Torez Smith) [1942772]
+- usbip: vudc: fix missing unlock on error in usbip_sockfd_store() (Torez Smith) [1942772]
+- usb: xhci-mtk: improve bandwidth scheduling with TT (Torez Smith) [1942772]
+- usb: xhci-mtk: remove or operator for setting schedule parameters (Torez Smith) [1942772]
+- usb: typec: tcpm: Wait for vbus discharge to VSAFE0V before toggling (Torez Smith) [1942772]
+- software node: Provide replacement for device_add_properties() (Torez Smith) [1942772]
+- driver core: platform: Reimplement devm_platform_ioremap_resource (Torez Smith) [1942772]
+- USB: usblp: initialize newChannel (Torez Smith) [1942772]
+- net: hso: fix null-ptr-deref during tty device unregistration (Torez Smith) [1942772]
+- usbip: synchronize event handler with sysfs code paths (Torez Smith) [1942772]
+- usbip: vudc synchronize sysfs code paths (Torez Smith) [1942772]
+- usbip: stub-dev synchronize sysfs code paths (Torez Smith) [1942772]
+- usbip: add sysfs_lock to synchronize sysfs code paths (Torez Smith) [1942772]
+- drivers: net: fix memory leak in peak_usb_create_dev (Torez Smith) [1942772]
+- thunderbolt: Fix off by one in tb_port_find_retimer() (Torez Smith) [1942772]
+- thunderbolt: Fix a leak in tb_retimer_add() (Torez Smith) [1942772]
+- usb: dwc2: Prevent core suspend when port connection flag is 0 (Torez Smith) [1942772]
+- usb: dwc2: Fix HPRT0.PrtSusp bit setting for HiKey 960 board. (Torez Smith) [1942772]
+- usb: xhci-mtk: fix broken streams issue on 0.96 xHCI (Torez Smith) [1942772]
+- usbip: vhci_hcd fix shift out-of-bounds in vhci_hub_control() (Torez Smith) [1942772]
+- USB: quirks: ignore remote wake-up on Fibocom L850-GL LTE modem (Torez Smith) [1942772]
+- USB: cdc-acm: do not log successful probe on later errors (Torez Smith) [1942772]
+- USB: cdc-acm: always claim data interface (Torez Smith) [1942772]
+- USB: cdc-acm: use negation for NULL checks (Torez Smith) [1942772]
+- USB: cdc-acm: clean up probe error labels (Torez Smith) [1942772]
+- USB: cdc-acm: drop redundant driver-data reset (Torez Smith) [1942772]
+- USB: cdc-acm: drop redundant driver-data assignment (Torez Smith) [1942772]
+- USB: cdc-acm: fix use-after-free after probe failure (Torez Smith) [1942772]
+- USB: cdc-acm: fix double free on probe failure (Torez Smith) [1942772]
+- USB: cdc-acm: downgrade message to debug (Torez Smith) [1942772]
+- USB: cdc-acm: untangle a circular dependency between callback and softint (Torez Smith) [1942772]
+- cdc-acm: fix BREAK rx code path adding necessary calls (Torez Smith) [1942772]
+- usb: dwc3: pci: Enable dis_uX_susphy_quirk for Intel Merrifield (Torez Smith) [1942772]
+- usb: dwc3: qcom: skip interconnect init for ACPI probe (Torez Smith) [1942772]
+- can: peak_usb: Revert "can: peak_usb: add forgotten supported devices" (Torez Smith) [1942772]
+- r8152: limit the RX buffer size of RTL8153A for USB 2.0 (Torez Smith) [1942772]
+- net: cdc-phonet: fix data-interface release on probe failure (Torez Smith) [1942772]
+- usb: typec: tcpm: Skip sink_cap query only when VDM sm is busy (Torez Smith) [1942772]
+- usb: typec: tcpm: Invoke power_supply_changed for tcpm-source-psy- (Torez Smith) [1942772]
+- usb: typec: Remove vdo[3] part of tps6598x_rx_identity_reg struct (Torez Smith) [1942772]
+- usb-storage: Add quirk to defeat Kindle's automatic unload (Torez Smith) [1942772]
+- usbip: Fix incorrect double assignment to udc->ud.tcp_rx (Torez Smith) [1942772]
+- can: kvaser_usb: Add support for USBcan Pro 4xHS (Torez Smith) [1942772]
+- can: peak_usb: add forgotten supported devices (Torez Smith) [1942772]
+- xhci: Fix repeated xhci wake after suspend due to uncleared internal wake state (Torez Smith) [1942772]
+- usb: xhci: Fix ASMedia ASM1042A and ASM3242 DMA addressing (Torez Smith) [1942772]
+- xhci: Improve detection of device initiated wake signal. (Torez Smith) [1942772]
+- usb: xhci: do not perform Soft Retry for some xHCI hosts (Torez Smith) [1942772]
+- usbip: fix vudc usbip_sockfd_store races leading to gpf (Torez Smith) [1942772]
+- usbip: fix vhci_hcd attach_store() races leading to gpf (Torez Smith) [1942772]
+- usbip: fix stub_dev usbip_sockfd_store() races leading to gpf (Torez Smith) [1942772]
+- usbip: fix vudc to check for stream socket (Torez Smith) [1942772]
+- usbip: fix vhci_hcd to check for stream socket (Torez Smith) [1942772]
+- usbip: fix stub_dev to check for stream socket (Torez Smith) [1942772]
+- USB: usblp: fix a hang in poll() if disconnected (Torez Smith) [1942772]
+- usb: dwc3: qcom: Add missing DWC3 OF node refcount decrement (Torez Smith) [1942772]
+- usb: dwc3: qcom: Honor wakeup enabled/disabled state (Torez Smith) [1942772]
+- usb: dwc3: qcom: add ACPI device id for sc8180x (Torez Smith) [1942772]
+- Goodix Fingerprint device is not a modem (Torez Smith) [1942772]
+- USB: serial: io_edgeport: fix memory leak in edge_startup (Torez Smith) [1942772]
+- USB: serial: ch341: add new Product ID (Torez Smith) [1942772]
+- USB: serial: cp210x: add some more GE USB IDs (Torez Smith) [1942772]
+- USB: serial: cp210x: add ID for Acuity Brands nLight Air Adapter (Torez Smith) [1942772]
+- net: usb: log errors to dmesg/syslog (Torez Smith) [1942772]
+- net: usb: cdc_ncm: emit dev_err on error paths (Torez Smith) [1942772]
+- thunderbolt: Increase runtime PM reference count on DP tunnel discovery (Torez Smith) [1942772]
+- thunderbolt: Initialize HopID IDAs in tb_switch_alloc() (Torez Smith) [1942772]
+- net: usb: qmi_wwan: allow qmimux add/del with master up (Torez Smith) [1942772]
+- Revert "r8152: adjust the settings about MAC clock speed down for RTL8153" (Torez Smith) [1942772]
+- net: usb: qmi_wwan: support ZTE P685M modem (Torez Smith) [1942772]
+- r8152: spilt rtl_set_eee_plus and r8153b_green_en (Torez Smith) [1942772]
+- r8152: replace netif_err with dev_err (Torez Smith) [1942772]
+- r8152: check if the pointer of the function exists (Torez Smith) [1942772]
+- r8152: enable U1/U2 for USB_SPEED_SUPER (Torez Smith) [1942772]
+- usb: misc: usb3503: Fix logic in usb3503_init() (Torez Smith) [1942772]
+- usb: Replace lkml.org links with lore (Torez Smith) [1942772]
+- usb: quirks: add quirk to start video capture on ELMO L-12F document camera reliable (Torez Smith) [1942772]
+- USB: quirks: sort quirk entries (Torez Smith) [1942772]
+- USB: serial: drop bogus to_usb_serial_port() checks (Torez Smith) [1942772]
+- USB: serial: drop if with an always false condition (Torez Smith) [1942772]
+- usb: typec: tcpm: Get Sink VDO from fwnode (Torez Smith) [1942772]
+- dt-bindings: connector: Add SVDM VDO properties (Torez Smith) [1942772]
+- usb: typec: displayport: Fill the negotiated SVDM Version in the header (Torez Smith) [1942772]
+- usb: typec: ucsi: Determine common SVDM Version (Torez Smith) [1942772]
+- usb: typec: tcpm: Determine common SVDM Version (Torez Smith) [1942772]
+- usb: pd: Make SVDM Version configurable in VDM header (Torez Smith) [1942772]
+- usb: typec: Manage SVDM version (Torez Smith) [1942772]
+- usb: dwc3: gadget: Fix dep->interval for fullspeed interrupt (Torez Smith) [1942772]
+- usb: dwc3: gadget: Fix setting of DEPCFG.bInterval_m1 (Torez Smith) [1942772]
+- USB: serial: option: update interface mapping for ZTE P685M (Torez Smith) [1942772]
+- usb: dwc3: gadget: Track connected SSP rate and lane count (Torez Smith) [1942772]
+- usb: dwc3: gadget: Implement setting of SSP rate (Torez Smith) [1942772]
+- usb: dwc3: core: Check maximum_speed SSP genXxY (Torez Smith) [1942772]
+- usb: common: Parse for USB SSP genXxY (Torez Smith) [1942772]
+- usb: dwc2: Fix endpoint direction check in ep_from_windex (Torez Smith) [1942772]
+- usb: dwc3: fix clock issue during resume in OTG mode (Torez Smith) [1942772]
+- xhci: ext-caps: Use software node API with the properties (Torez Smith) [1942772]
+- usb: dwc3: host: Use software node API with the properties (Torez Smith) [1942772]
+- r8152: replace several functions about phy patch request (Torez Smith) [1942772]
+- usb: dwc3: qcom: Constify the software node (Torez Smith) [1942772]
+- usb: dwc3: haps: Constify the software node (Torez Smith) [1942772]
+- usb: dwc2: pci: Drop the empty quirk function (Torez Smith) [1942772]
+- thunderbolt: Add support for native USB4 _OSC (Torez Smith) [1942772]
+- thunderbolt: Allow disabling XDomain protocol (Torez Smith) [1942772]
+- thunderbolt: Add support for PCIe tunneling disabled (SL5) (Torez Smith) [1942772]
+- thunderbolt: dma_test: Drop unnecessary include (Torez Smith) [1942772]
+- thunderbolt: Add clarifying comments about USB4 terms router and adapter (Torez Smith) [1942772]
+- thunderbolt: switch: Fix kernel-doc descriptions of non-static functions (Torez Smith) [1942772]
+- thunderbolt: nhi: Fix kernel-doc descriptions of non-static functions (Torez Smith) [1942772]
+- thunderbolt: path: Fix kernel-doc descriptions of non-static functions (Torez Smith) [1942772]
+- thunderbolt: eeprom: Fix kernel-doc descriptions of non-static functions (Torez Smith) [1942772]
+- thunderbolt: ctl: Fix kernel-doc descriptions of non-static functions (Torez Smith) [1942772]
+- usb: pd: Reland VDO definitions of PD2.0 (Torez Smith) [1942772]
+- NET: usb: qmi_wwan: Adding support for Cinterion MV31 (Torez Smith) [1942772]
+- usb: pd: Update VDO definitions (Torez Smith) [1942772]
+- xhci: fix bounce buffer usage for non-sg list case (Torez Smith) [1942772]
+- usb: xhci-mtk: break loop when find the endpoint to drop (Torez Smith) [1942772]
+- usb: typec: Return void in typec_partner_set_pd_revision (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: Enable data path when partner is USB Comm capable (Torez Smith) [1942772]
+- usb: typec: tcpci: Add Callback to Usb Communication capable partner (Torez Smith) [1942772]
+- usb: typec: tcpm: Add Callback to Usb Communication capable partner (Torez Smith) [1942772]
+- usb: typec: tcpm: Set in_ams flag when Source caps have been received (Torez Smith) [1942772]
+- usb: typec: tcpm: Handle vbus shutoff when in source mode (Torez Smith) [1942772]
+- usb: typec: Add typec_partner_set_pd_revision (Torez Smith) [1942772]
+- usb: typec: Provide PD Specification Revision for cable and partner (Torez Smith) [1942772]
+- usb: typec: Standardize PD Revision format with Type-C Revision (Torez Smith) [1942772]
+- usb: xhci-mtk: skip dropping bandwidth of unchecked endpoints (Torez Smith) [1942772]
+- USB: serial: ftdi_sio: restore divisor-encoding comments (Torez Smith) [1942772]
+- USB: serial: ftdi_sio: fix FTX sub-integer prescaler (Torez Smith) [1942772]
+- USB: serial: cp210x: clean up auto-RTS handling (Torez Smith) [1942772]
+- USB: serial: cp210x: fix RTS handling (Torez Smith) [1942772]
+- USB: serial: cp210x: clean up printk zero padding (Torez Smith) [1942772]
+- USB: serial: cp210x: clean up flow-control debug message (Torez Smith) [1942772]
+- USB: serial: cp210x: drop shift macros (Torez Smith) [1942772]
+- USB: serial: cp210x: fix modem-control handling (Torez Smith) [1942772]
+- USB: serial: cp210x: suppress modem-control errors (Torez Smith) [1942772]
+- xhci: handle halting transfer event properly after endpoint stop and halt raced. (Torez Smith) [1942772]
+- xhci: Check for pending reset endpoint command before queueing a new one. (Torez Smith) [1942772]
+- xhci: remove obsolete dequeue pointer moving code (Torez Smith) [1942772]
+- xhci: introduce a new move_dequeue_past_td() function to replace old code. (Torez Smith) [1942772]
+- xhci: handle stop endpoint command completion with endpoint in running state. (Torez Smith) [1942772]
+- xhci: Fix halted endpoint at stop endpoint command completion (Torez Smith) [1942772]
+- xhci: split handling halted endpoints into two steps (Torez Smith) [1942772]
+- xhci: move and rename xhci_cleanup_halted_endpoint() (Torez Smith) [1942772]
+- xhci: turn cancelled td cleanup to its own function (Torez Smith) [1942772]
+- xhci: store TD status in the td struct instead of passing it along (Torez Smith) [1942772]
+- xhci: use xhci_td_cleanup() helper when giving back cancelled URBs (Torez Smith) [1942772]
+- xhci: move xhci_td_cleanup so it can be called by more functions (Torez Smith) [1942772]
+- xhci: Add xhci_reset_halted_ep() helper function (Torez Smith) [1942772]
+- xhci: flush endpoint start to reduce race risk with stop endpoint command. (Torez Smith) [1942772]
+- xhci: Check link TRBs when updating ring enqueue and dequeue pointers. (Torez Smith) [1942772]
+- xhci: avoid DMA double fetch when reading event trb type. (Torez Smith) [1942772]
+- xhci: remove extra loop in interrupt context (Torez Smith) [1942772]
+- xhci: check slot_id is valid before gathering slot info (Torez Smith) [1942772]
+- xhci: prevent a theoretical endless loop while preparing rings. (Torez Smith) [1942772]
+- xhci: remove xhci_stream_id_to_ring() helper (Torez Smith) [1942772]
+- xhci: add xhci_virt_ep_to_ring() helper (Torez Smith) [1942772]
+- xhci: check virt_dev is valid before dereferencing it (Torez Smith) [1942772]
+- xhci: add xhci_get_virt_ep() helper (Torez Smith) [1942772]
+- xhci: remove unused event parameter from completion handlers (Torez Smith) [1942772]
+- xhci: adjust parameters passed to cleanup_halted_endpoint() (Torez Smith) [1942772]
+- xhci: get isochronous ring directly from endpoint structure (Torez Smith) [1942772]
+- xhci: Avoid parsing transfer events several times (Torez Smith) [1942772]
+- net: qmi_wwan: Add pass through mode (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add qmap id sysfs file for qmimux interfaces (Torez Smith) [1942772]
+- net: usb: cdc_ether: added support for Thales Cinterion PLSx3 modem family. (Torez Smith) [1942772]
+- thunderbolt: Fix possible NULL pointer dereference in tb_acpi_add_link() (Torez Smith) [1942772]
+- thunderbolt: switch: Fix function name in the header (Torez Smith) [1942772]
+- thunderbolt: tunnel: Fix misspelling of 'receive_path' (Torez Smith) [1942772]
+- thunderbolt: icm: Fix a couple of formatting issues (Torez Smith) [1942772]
+- thunderbolt: switch: Demote a bunch of non-conformant kernel-doc headers (Torez Smith) [1942772]
+- thunderbolt: tb: Kernel-doc function headers should document their parameters (Torez Smith) [1942772]
+- thunderbolt: nhi: Demote some non-conformant kernel-doc headers (Torez Smith) [1942772]
+- thunderbolt: xdomain: Fix 'tb_unregister_service_driver()'s 'drv' param (Torez Smith) [1942772]
+- thunderbolt: eeprom: Demote non-conformant kernel-doc headers to standard comment blocks (Torez Smith) [1942772]
+- USB: serial: mos7720: fix error code in mos7720_write() (Torez Smith) [1942772]
+- thunderbolt: ctl: Demote non-conformant kernel-doc headers (Torez Smith) [1942772]
+- thunderbolt: cap: Fix kernel-doc formatting issue (Torez Smith) [1942772]
+- thunderbolt: dma_port: Check 'dma_port_flash_write_block()'s return value (Torez Smith) [1942772]
+- USB: serial: option: Adding support for Cinterion MV31 (Torez Smith) [1942772]
+- can: mcba_usb: remove h from printk format specifier (Torez Smith) [1942772]
+- usbnet: fix the indentation of one code snippet (Torez Smith) [1942772]
+- usb: usb251xb: Use of_device_get_match_data() (Torez Smith) [1942772]
+- usb: dwc2: Make "trimming xfer length" a debug message (Torez Smith) [1942772]
+- usb: dwc2: Abort transaction after errors with unknown reason (Torez Smith) [1942772]
+- usb: dwc2: Do not update data length if it is 0 on inbound transfers (Torez Smith) [1942772]
+- usb: xhci-mtk: fix unreleased bandwidth data (Torez Smith) [1942772]
+- USB: serial: mos7840: fix error code in mos7840_write() (Torez Smith) [1942772]
+- USB: usblp: don't call usb_set_interface if there's a single alt (Torez Smith) [1942772]
+- USB: serial: cp210x: add pid/vid for WSDA-200-USB (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: add terminating newlines to logging (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: remove redundant assignment (Torez Smith) [1942772]
+- usb: typec: tcpm: Create legacy PDOs for PD2 connection (Torez Smith) [1942772]
+- net: usb: qmi_wwan: added support for Thales Cinterion PLSx3 modem family (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: Drop GPIO includes (Torez Smith) [1942772]
+- usb: typec: tcpm: Respond Wait if VDM state machine is running (Torez Smith) [1942772]
+- usb: typec: tcpm: Protocol Error handling (Torez Smith) [1942772]
+- usb: typec: tcpm: AMS and Collision Avoidance (Torez Smith) [1942772]
+- net: usb: cdc_ncm: don't spew notifications (Torez Smith) [1942772]
+- usb: typec: ucsi: Add conditional dependency on USB role switch (Torez Smith) [1942772]
+- usb: ch9: Add USB 3.2 SSP attributes (Torez Smith) [1942772]
+- USB: serial: f81232: drop short control-transfer checks (Torez Smith) [1942772]
+- USB: serial: io_ti: fix a debug-message copy-paste error (Torez Smith) [1942772]
+- USB: serial: io_ti: drop short control-transfer check (Torez Smith) [1942772]
+- USB: serial: upd78f0730: drop short control-transfer check (Torez Smith) [1942772]
+- USB: serial: cp210x: add copyright notice (Torez Smith) [1942772]
+- USB: serial: cp210x: drop unused includes (Torez Smith) [1942772]
+- USB: serial: cp210x: drop short control-transfer checks (Torez Smith) [1942772]
+- USB: serial: cp210x: update control-characters on every change (Torez Smith) [1942772]
+- USB: serial: cp210x: set IXOFF thresholds (Torez Smith) [1942772]
+- USB: serial: cp210x: add support for software flow control (Torez Smith) [1942772]
+- USB: serial: pl2303: fix line-speed handling on newer chips (Torez Smith) [1942772]
+- xhci: tegra: Delay for disabling LFPS detector (Torez Smith) [1942772]
+- xhci: make sure TRB is fully written before giving it to the controller (Torez Smith) [1942772]
+- usb: dwc3: qcom: add URS Host support for sdm845 ACPI boot (Torez Smith) [1942772]
+- usb: dwc3: pci: add support for the Intel Alder Lake-P (Torez Smith) [1942772]
+- usb: dwc3: pci: ID for Tiger Lake CPU (Torez Smith) [1942772]
+- usb: dwc3: pci: Register a software node for the dwc3 platform device (Torez Smith) [1942772]
+- thunderbolt: Add support for de-authorizing devices (Torez Smith) [1942772]
+- nt: usb: USB_RTL8153_ECM should not default to y (Torez Smith) [1942772]
+- USB: dwc3: document gadget_max_speed (Torez Smith) [1942772]
+- usb: dwc3: gadget: Disable Vendor Test LMP Received event (Torez Smith) [1942772]
+- USB: serial: cp210x: add new VID/PID for supporting Teraoka AD2000 (Torez Smith) [1942772]
+- r8153_ecm: Add Lenovo Powered USB-C Hub as a fallback of r8152 (Torez Smith) [1942772]
+- r8152: Add Lenovo Powered USB-C Travel Hub (Torez Smith) [1942772]
+- USB: ehci: fix an interrupt calltrace error (Torez Smith) [1942772]
+- ehci: fix EHCI host controller initialization sequence (Torez Smith) [1942772]
+- usb: typec: ucsi: Add support for USB role switch (Torez Smith) [1942772]
+- usb: dwc2: disable Link Power Management on STM32MP15 HS OTG (Torez Smith) [1942772]
+- usb: dwc2: enable FS/LS PHY clock select on STM32MP15 FS OTG (Torez Smith) [1942772]
+- usb: dwc2: set ahbcfg parameter for STM32MP15 OTG HS and FS (Torez Smith) [1942772]
+- usb: dwc3: Simplify with dev_err_probe() (Torez Smith) [1942772]
+- usb: dwc3: keystone: Simplify with dev_err_probe() (Torez Smith) [1942772]
+- usb: dwc3: core: Replace devm_reset_control_array_get() (Torez Smith) [1942772]
+- USB: serial: mos7720: improve OOM-handling in read_mos_reg() (Torez Smith) [1942772]
+- rndis_host: set proper input size for OID_GEN_PHYSICAL_MEDIUM request (Torez Smith) [1942772]
+- thunderbolt: Start lane initialization after sleep (Torez Smith) [1942772]
+- thunderbolt: Constify static attribute_group structs (Torez Smith) [1942772]
+- qmi_wwan: Increase headroom for QMAP SKBs (Torez Smith) [1942772]
+- usb: usbip: Use DEFINE_SPINLOCK() for spinlock (Torez Smith) [1942772]
+- usb: dwc3: gadget: Clear wait flag on dequeue (Torez Smith) [1942772]
+- usb: typec: Send uevent for num_altmodes update (Torez Smith) [1942772]
+- usb: typec: Fix copy paste error for NVIDIA alt-mode description (Torez Smith) [1942772]
+- kcov, usb: hide in_serving_softirq checks in __usb_hcd_giveback_urb (Torez Smith) [1942772]
+- thunderbolt: Drop duplicated 0x prefix from format string (Torez Smith) [1942772]
+- net: cdc_ncm: correct overhead in delayed_ndp_size (Torez Smith) [1942772]
+- net: usb: Use DEFINE_SPINLOCK() for spinlock (Torez Smith) [1942772]
+- usb: uas: Add PNY USB Portable SSD to unusual_uas (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add Quectel EM160R-GL (Torez Smith) [1942772]
+- usb: usbip: vhci_hcd: protect shift size (Torez Smith) [1942772]
+- USB: usblp: fix DMA to stack (Torez Smith) [1942772]
+- usb: dwc3: gadget: Preserve UDC max speed setting (Torez Smith) [1942772]
+- usb: dwc3: gadget: Allow runtime suspend if UDC unbinded (Torez Smith) [1942772]
+- usb: dwc3: gadget: Introduce a DWC3 VBUS draw callback (Torez Smith) [1942772]
+- usb: dwc3: add imx8mp dwc3 glue layer driver (Torez Smith) [1942772]
+- USB: serial: iuu_phoenix: fix DMA from stack (Torez Smith) [1942772]
+- USB: serial: option: add LongSung M5710 module support (Torez Smith) [1942772]
+- USB: serial: option: add Quectel EM160R-GL (Torez Smith) [1942772]
+- CDC-NCM: remove "connected" log message (Torez Smith) [1942772]
+- usb: dwc3: ulpi: Fix USB2.0 HS/FS/LS PHY suspend regression (Torez Smith) [1942772]
+- usb: dwc3: ulpi: Replace CPU-based busyloop with Protocol-based one (Torez Smith) [1942772]
+- usb: dwc3: ulpi: Use VStsDone to detect PHY regs access completion (Torez Smith) [1942772]
+- usb: dwc3: drd: Improve dwc3_get_extcon() style (Torez Smith) [1942772]
+- usb: dwc3: drd: Avoid error when extcon is missing (Torez Smith) [1942772]
+- USB: usbtmc: Bump USBTMC_API_VERSION value (Torez Smith) [1942772]
+- USB: usbtmc: Add separate USBTMC_IOCTL_GET_SRQ_STB (Torez Smith) [1942772]
+- USB: usbtmc: Add USBTMC_IOCTL_GET_STB (Torez Smith) [1942772]
+- USB: usbtmc: Fix reading stale status byte (Torez Smith) [1942772]
+- kcov, usbip: collect coverage from vhci_rx_loop (Torez Smith) [1942772]
+- USB: yurex: fix control-URB timeout handling (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: disable clk on error handling path in probe (Torez Smith) [1942772]
+- USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST quirk set (Torez Smith) [1942772]
+- usb: typec: intel_pmc_mux: Configure HPD first for HPD+IRQ request (Torez Smith) [1942772]
+- USB: cdc-wdm: Fix use after free in service_outstanding_interrupt(). (Torez Smith) [1942772]
+- USB: cdc-acm: blacklist another IR Droid device (Torez Smith) [1942772]
+- thunderbolt: Use kmemdup instead of kzalloc and memcpy (Torez Smith) [1942772]
+- usb: ucsi: convert comma to semicolon (Torez Smith) [1942772]
+- usb: typec: tcpm: convert comma to semicolon (Torez Smith) [1942772]
+- usb: typec: tcpm: Update vbus_vsafe0v on init (Torez Smith) [1942772]
+- usb: typec: tcpci: Enable bleed discharge when auto discharge is enabled (Torez Smith) [1942772]
+- usb: typec: Add class for plug alt mode device (Torez Smith) [1942772]
+- USB: typec: tcpci: Add Bleed discharge to POWER_CONTROL definition (Torez Smith) [1942772]
+- USB: typec: tcpm: Add a 30ms room for tPSSourceOn in PR_SWAP (Torez Smith) [1942772]
+- USB: typec: tcpm: Fix PR_SWAP error handling (Torez Smith) [1942772]
+- USB: typec: tcpm: Hard Reset after not receiving a Request (Torez Smith) [1942772]
+- usb: typec: intel_pmc_mux: Configure cable generation value for USB4 (Torez Smith) [1942772]
+- net: usb: convert comma to semicolon (Torez Smith) [1942772]
+- USB: UAS: introduce a quirk to set no_write_same (Torez Smith) [1942772]
+- USB: serial: ftdi_sio: log the CBUS GPIO validity (Torez Smith) [1942772]
+- USB: serial: ftdi_sio: drop GPIO line checking dead code (Torez Smith) [1942772]
+- USB: serial: ftdi_sio: report the valid GPIO lines to gpiolib (Torez Smith) [1942772]
+- drivers: usb: atm: use atm_info() instead of atm_printk(KERN_INFO ... (Torez Smith) [1942772]
+- drivers: usb: atm: reduce noise (Torez Smith) [1942772]
+- USB: serial: option: add interface-number sanity check to flag handling (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: Enable VSAFE0V signalling (Torez Smith) [1942772]
+- usb: typec: tcpci: Add support to report vSafe0V (Torez Smith) [1942772]
+- usb: typec: tcpm: Introduce vsafe0v for vbus (Torez Smith) [1942772]
+- usb: typec: tcpm: Clear send_discover in tcpm_check_send_discover (Torez Smith) [1942772]
+- usb: typec: tcpm: Pass down negotiated rev to update retry count (Torez Smith) [1942772]
+- usb: typec: intel_pmc_mux: Use correct response message bits (Torez Smith) [1942772]
+- xhci: Give USB2 ports time to enter U3 in bus suspend (Torez Smith) [1942772]
+- xhci-pci: Allow host runtime PM as default for Intel Maple Ridge xHCI (Torez Smith) [1942772]
+- xhci-pci: Allow host runtime PM as default for Intel Alpine Ridge LP (Torez Smith) [1942772]
+- usb: xhci: Use temporary buffer to consolidate SG (Torez Smith) [1942772]
+- usb: xhci: Set quirk for XHCI_SG_TRB_CACHE_SIZE_QUIRK (Torez Smith) [1942772]
+- USB: legotower: fix logical error in recent commit (Torez Smith) [1942772]
+- USB: legousbtower: use usb_control_msg_recv() (Torez Smith) [1942772]
+- USB: add RESET_RESUME quirk for Snapscan 1212 (Torez Smith) [1942772]
+- usb: typec: tps6598x: Export some power supply properties (Torez Smith) [1942772]
+- usb: typec: tps6598x: Select USB_ROLE_SWITCH and REGMAP_I2C (Torez Smith) [1942772]
+- USB: core: drop pipe-type check from new control-message helpers (Torez Smith) [1942772]
+- USB: core: return -EREMOTEIO on short usb_control_msg_recv() (Torez Smith) [1942772]
+- USB: core: drop short-transfer check from usb_control_msg_send() (Torez Smith) [1942772]
+- USB: apple-mfi-fastcharge: Fix use after free in probe (Torez Smith) [1942772]
+- Revert "usb-storage: fix sdev->host->dma_dev" (Torez Smith) [1942772]
+- Revert "uas: fix sdev->host->dma_dev" (Torez Smith) [1942772]
+- Revert "uas: bump hw_max_sectors to 2048 blocks for SS or faster drives" (Torez Smith) [1942772]
+- USB: serial: cp210x: clean up dtr_rts() (Torez Smith) [1942772]
+- USB: serial: cp210x: refactor flow-control handling (Torez Smith) [1942772]
+- USB: serial: cp210x: drop flow-control debugging (Torez Smith) [1942772]
+- USB: serial: cp210x: set terminal settings on open (Torez Smith) [1942772]
+- USB: serial: cp210x: clean up line-control handling (Torez Smith) [1942772]
+- USB: serial: cp210x: return early on unchanged termios (Torez Smith) [1942772]
+- USB: serial: kl5kusb105: fix memleak on open (Torez Smith) [1942772]
+- USB: serial: ch341: sort device-id entries (Torez Smith) [1942772]
+- USB: serial: ch341: add new Product ID for CH341A (Torez Smith) [1942772]
+- USB: serial: option: fix Quectel BG96 matching (Torez Smith) [1942772]
+- can: pcan_usb_core: fix fall-through warnings for Clang (Torez Smith) [1942772]
+- usb: typec: stusb160x: fix power-opmode property with typec-power-opmode (Torez Smith) [1942772]
+- USB: serial: option: add support for Thales Cinterion EXS82 (Torez Smith) [1942772]
+- usb: typec: Add type sysfs attribute file for partners (Torez Smith) [1942772]
+- usb: common: ulpi: Constify static attribute_group struct (Torez Smith) [1942772]
+- usb: typec: Constify static attribute_group structs (Torez Smith) [1942772]
+- USB: core: Constify static attribute_group structs (Torez Smith) [1942772]
+- usb: typec: tcpm: Stay in SNK_TRY_WAIT_DEBOUNCE_CHECK_VBUS till Rp is seen (Torez Smith) [1942772]
+- usb: typec: tcpm: Disregard vbus off while in PR_SWAP_SNK_SRC_SOURCE_ON (Torez Smith) [1942772]
+- usb: typec: Expose Product Type VDOs via sysfs (Torez Smith) [1942772]
+- usb: pd: DFP product types (Torez Smith) [1942772]
+- usb: Fix fall-through warnings for Clang (Torez Smith) [1942772]
+- usbnet: ipheth: fix connectivity with iOS 14 (Torez Smith) [1942772]
+- USB: core: Change pK for __user pointers to px (Torez Smith) [1942772]
+- USB: core: Fix regression in Hercules audio card (Torez Smith) [1942772]
+- USB: quirks: Add USB_QUIRK_DISCONNECT_SUSPEND quirk for Lenovo A630Z TIO built-in usb-audio card (Torez Smith) [1942772]
+- can: kvaser_usb: Add new Kvaser hydra devices (Torez Smith) [1942772]
+- can: kvaser_usb: kvaser_usb_hydra: Add support for new device variant (Torez Smith) [1942772]
+- can: kvaser_usb: Add new Kvaser Leaf v2 devices (Torez Smith) [1942772]
+- can: kvaser_usb: Add USB_{LEAF,HYDRA}_PRODUCT_ID_END defines (Torez Smith) [1942772]
+- USB: serial: option: add Fibocom NL668 variants (Torez Smith) [1942772]
+- usb: typec: Fix num_altmodes kernel-doc error (Torez Smith) [1942772]
+- r8153_ecm: avoid to be prior to r8152 driver (Torez Smith) [1942772]
+- net: usb: qmi_wwan: Set DTR quirk for MR400 (Torez Smith) [1942772]
+- usb: typec: Add plug num_altmodes sysfs attr (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: Fix the compatible string (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: Fix uninitialized return variable (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: Enable auto discharge disconnect (Torez Smith) [1942772]
+- usb: typec: tcpci: Implement Auto discharge disconnect callbacks (Torez Smith) [1942772]
+- usb: typec: tcpm: Implement enabling Auto Discharge disconnect support (Torez Smith) [1942772]
+- usb: typec: tcpci_maxim: Fix vbus stuck on upon diconnecting sink (Torez Smith) [1942772]
+- usb: typec: tcpci: frs sourcing vbus callback (Torez Smith) [1942772]
+- usb: typec: tcpm: frs sourcing vbus callback (Torez Smith) [1942772]
+- usb: typec: tcpm: Refactor logic for new-source-frs-typec-current (Torez Smith) [1942772]
+- usb: typec: Add number of altmodes partner attr (Torez Smith) [1942772]
+- usb: pd: Add captive Type C cable type (Torez Smith) [1942772]
+- USB: apple-mfi-fastcharge: Fix kfree after failed kzalloc (Torez Smith) [1942772]
+- usb: typec: Remove one bit support for the Thunderbolt rounded/non-rounded cable (Torez Smith) [1942772]
+- usb: typec: intel_pmc_mux: Configure Thunderbolt cable generation bits (Torez Smith) [1942772]
+- usb: typec: Correct the bit values for the Thunderbolt rounded/non-rounded cable support (Torez Smith) [1942772]
+- can: kvaser_usb: kvaser_usb_hydra: Fix KCAN bittiming limits (Torez Smith) [1942772]
+- cx82310_eth: fix error return code in cx82310_bind() (Torez Smith) [1942772]
+- usb: typec: qcom-pmic-typec: fix builtin build errors (Torez Smith) [1942772]
+- can: peak_usb: fix potential integer overflow on shift of a int (Torez Smith) [1942772]
+- can: mcba_usb: mcba_usb_start_xmit(): first fill skb, then pass to can_put_echo_skb() (Torez Smith) [1942772]
+- usb: hcd.h: Remove RUN_CONTEXT (Torez Smith) [1942772]
+- USB: storage: avoid use of uninitialized values in error path (Torez Smith) [1942772]
+- usb: fix a few cases of -Wfallthrough (Torez Smith) [1942772]
+- usbnet: switch to core handling of rx/tx byte/packet counters (Torez Smith) [1942772]
+- qmi_wwan: switch to core handling of rx/tx byte/packet counters (Torez Smith) [1942772]
+- net: usb: fix spelling typo in cdc_ncm.c (Torez Smith) [1942772]
+- usb: typec: ucsi: Work around PPM losing change information (Torez Smith) [1942772]
+- usb: typec: ucsi: acpi: Always decode connector change information (Torez Smith) [1942772]
+- net/usb/r8153_ecm: support ECM mode for RTL8153 (Torez Smith) [1942772]
+- USB: serial: mos7720: fix parallel-port state restore (Torez Smith) [1942772]
+- USB: serial: remove write wait queue (Torez Smith) [1942772]
+- USB: serial: digi_acceleport: fix write-wakeup deadlocks (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: drop redundant usb-serial pointer (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: use BIT() macro (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: add write-fifo support (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: increase transmitter threshold (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: fix write implementation (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: refactor write-room handling (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: fix write unthrottling (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: fix tx-unthrottle use-after-free (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: fix write-wakeup use-after-free (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: fix stalled writes (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: fix write deadlock (Torez Smith) [1942772]
+- USB: serial: keyspan_pda: fix dropped unthrottle interrupts (Torez Smith) [1942772]
+- net: usb: r8152: Fix a couple of spelling errors in fw_phy_nc's docs (Torez Smith) [1942772]
+- net: usb: lan78xx: Remove lots of set but unused 'ret' variables (Torez Smith) [1942772]
+- net: usb: r8152: Provide missing documentation for some struct members (Torez Smith) [1942772]
+- can: peak_usb: peak_usb_get_ts_time(): fix timestamp wrapping (Torez Smith) [1942772]
+- can: peak_usb: add range checking in decode operations (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add Telit LE910Cx 0x1230 composition (Torez Smith) [1942772]
+- kcov, usb: only collect coverage from __usb_hcd_giveback_urb in softirq (Torez Smith) [1942772]
+- dt-bindings: connector: Add property to set initial current cap for FRS (Torez Smith) [1942772]
+- usb: xhci: Remove in_interrupt() checks (Torez Smith) [1942772]
+- usbip: Remove in_interrupt() check (Torez Smith) [1942772]
+- usb: core: Replace in_interrupt() in comments (Torez Smith) [1942772]
+- usb: atm: Replace in_interrupt() usage in comment (Torez Smith) [1942772]
+- USB: sisusbvga: Make console support depend on BROKEN (Torez Smith) [1942772]
+- usb: host: xhci-mem: remove unneeded break (Torez Smith) [1942772]
+- usb: storage: freecom: remove unneeded break (Torez Smith) [1942772]
+- usb: misc: iowarrior: remove unneeded break (Torez Smith) [1942772]
+- usb: host: ehci-sched: add comment about find_tt() not returning error (Torez Smith) [1942772]
+- usb: dwc3: ep0: Fix delay status handling (Torez Smith) [1942772]
+- USB: serial: iuu_phoenix: remove unneeded break (Torez Smith) [1942772]
+- USB: serial: digi_acceleport: remove in_interrupt() usage (Torez Smith) [1942772]
+- usb: dwc3: pci: add support for the Intel Alder Lake-S (Torez Smith) [1942772]
+- net: usb: rtl8150: don't incorrectly assign random MAC addresses (Torez Smith) [1942772]
+- net: usbnet: use new function dev_fetch_sw_netstats (Torez Smith) [1942772]
+- net: usb: qmi_wwan: use new function dev_fetch_sw_netstats (Torez Smith) [1942772]
+- cx82310_eth: use netdev_err instead of dev_err (Torez Smith) [1942772]
+- cx82310_eth: re-enable ethernet mode after router reboot (Torez Smith) [1942772]
+- net: usbnet: remove driver version (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add Cellient MPL200 card (Torez Smith) [1942772]
+- usbip: vhci_hcd: fix calling usb_hcd_giveback_urb() with irqs enabled (Torez Smith) [1942772]
+- net: usb: rtl8150: set random MAC address when set_ethernet_addr() fails (Torez Smith) [1942772]
+- usbnet: Use fallthrough pseudo-keyword (Torez Smith) [1942772]
+- net/smscx5xx: change to of_get_mac_address() eth_platform_get_mac_address() (Torez Smith) [1942772]
+- net: usb: pegasus: Proper error handing when setting pegasus' MAC address (Torez Smith) [1942772]
+- usb: dwc3: gadget: Support up to max stream id (Torez Smith) [1942772]
+- usb: dwc2: Fix INTR OUT transfers in DDMA mode. (Torez Smith) [1942772]
+- usb: dwc3: of-simple: Add compatible string for Intel Keem Bay platform (Torez Smith) [1942772]
+- net: rtl8150: Use the new usb control message API. (Torez Smith) [1942772]
+- net: pegasus: Use the new usb control message API. (Torez Smith) [1942772]
+- usb: dwc3: gadget: Return early if no TRB update (Torez Smith) [1942772]
+- usb: dwc3: gadget: Keep TRBs in request order (Torez Smith) [1942772]
+- usb: dwc3: gadget: Revise setting IOC when no TRB left (Torez Smith) [1942772]
+- usb: dwc3: gadget: Look ahead when setting IOC (Torez Smith) [1942772]
+- usb: dwc3: gadget: Allow restarting a transfer (Torez Smith) [1942772]
+- usb: dwc3: Stop active transfers before halting the controller (Torez Smith) [1942772]
+- usb: dwc3: gadget: Rename misleading function names (Torez Smith) [1942772]
+- usb: dwc3: Add splitdisable quirk for Hisilicon Kirin Soc (Torez Smith) [1942772]
+- usb: dwc3: gadget: Refactor preparing last TRBs (Torez Smith) [1942772]
+- usb: dwc3: gadget: Set IOC if not enough for extra TRBs (Torez Smith) [1942772]
+- usb: dwc3: gadget: Check for number of TRBs prepared (Torez Smith) [1942772]
+- usb: dwc3: gadget: Return the number of prepared TRBs (Torez Smith) [1942772]
+- usb: dwc3: ep0: Fix ZLP for OUT ep0 requests (Torez Smith) [1942772]
+- usb: dwc3: gadget: Improve TRB ZLP setup (Torez Smith) [1942772]
+- usb: dwc3: gadget: Refactor preparing extra TRB (Torez Smith) [1942772]
+- usb: dwc3: gadget: Reclaim extra TRBs after request completion (Torez Smith) [1942772]
+- usb: dwc3: gadget: Check MPS of the request length (Torez Smith) [1942772]
+- usb: dwc3: gadget: Refactor ep command completion (Torez Smith) [1942772]
+- usb: dwc3: allocate gadget structure dynamically (Torez Smith) [1942772]
+- usb: dwc3: core: add phy cleanup for probe error handling (Torez Smith) [1942772]
+- usb: dwc3: core: don't trigger runtime pm when remove driver (Torez Smith) [1942772]
+- usb: dwc3: debugfs: do not queue work if try to change mode on non-drd (Torez Smith) [1942772]
+- usb: dwc3: pci: Allow Elkhart Lake to utilize DSM method for PM functionality (Torez Smith) [1942772]
+- usb: dwc2: add support for APM82181 USB OTG (Torez Smith) [1942772]
+- usb: dwc-meson-g12a: Add support for USB on AXG SoCs (Torez Smith) [1942772]
+- usb: dwc3: gadget: fix checkpatch warnings (Torez Smith) [1942772]
+- usb: dwc3: core: do not queue work if dr_mode is not USB_DR_MODE_OTG (Torez Smith) [1942772]
+- usb: dwc3: debugfs: fix checkpatch warnings (Torez Smith) [1942772]
+- usb: dwc3: qcom: fix checkpatch warnings (Torez Smith) [1942772]
+- usb: dwc3: ep0: fix checkpatch warnings (Torez Smith) [1942772]
+- usb: dwc3: core: fix checkpatch warnings (Torez Smith) [1942772]
+- usb: dwc3: debug: fix checkpatch warning (Torez Smith) [1942772]
+- usb: dwc3: trace: fix checkpatch warnings (Torez Smith) [1942772]
+- usb: dwc3: ulpi: fix checkpatch warning (Torez Smith) [1942772]
+- usb: dwc3: meson: fix checkpatch errors and warnings (Torez Smith) [1942772]
+- usb: dwc3: debug: fix sparse warning (Torez Smith) [1942772]
+- usb: dwc3: meson: fix coccinelle WARNING (Torez Smith) [1942772]
+- usb: dwc3: qcom: Add interconnect support in dwc3 driver (Torez Smith) [1942772]
+- net: usb: net1080: Remove in_interrupt() comment (Torez Smith) [1942772]
+- net: usb: kaweth: Remove last user of kaweth_control() (Torez Smith) [1942772]
+- net: usb: kaweth: Replace kaweth_control() with usb_control_msg() (Torez Smith) [1942772]
+- net: usb: ax88179_178a: add MCT usb 3.0 adapter (Torez Smith) [1942772]
+- net: usb: ax88179_178a: fix missing stop entry in driver_info (Torez Smith) [1942772]
+- net: usb: ax88179_178a: add Toshiba usb 3.0 adapter (Torez Smith) [1942772]
+- Revert "usbip: Implement a match function to fix usbip" (Torez Smith) [1942772]
+- usb: dwc2: Fix parameter type in function pointer prototype (Torez Smith) [1942772]
+- usb: dwc3: core: Print warning on unsupported speed (Torez Smith) [1942772]
+- usb: dwc3: core: Properly default unspecified speed (Torez Smith) [1942772]
+- usb: dwc2: Add missing cleanups when usb_add_gadget_udc() fails (Torez Smith) [1942772]
+- usb: dwc3: gadget: END_TRANSFER before CLEAR_STALL command (Torez Smith) [1942772]
+- usb: dwc3: gadget: Resume pending requests after CLEAR_STALL (Torez Smith) [1942772]
+- can: peak_usb: convert to use le32_add_cpu() (Torez Smith) [1942772]
+- can: pcan_usb: add support of rxerr/txerr counters (Torez Smith) [1942772]
+- can: pcan_usb: Document the commands sent to the device (Torez Smith) [1942772]
+- can: mcba_usb: remove redundant initialization of variable err (Torez Smith) [1942772]
+- usb: dwc2: Always disable regulators on driver teardown (Torez Smith) [1942772]
+- usbip: simplify the return expression of usbip_core_init() (Torez Smith) [1942772]
+- rndis_host: increase sleep time in the query-response loop (Torez Smith) [1942772]
+- Revert "usb: dwc3: meson-g12a: fix shared reset control use" (Torez Smith) [1942772]
+- net: usb: dm9601: Add USB ID of Keenetic Plus DSL (Torez Smith) [1942772]
+- smsc95xx: add phylib support (Torez Smith) [1942772]
+- smsc95xx: use usbnet->driver_priv (Torez Smith) [1942772]
+- smsc95xx: remove redundant function arguments (Torez Smith) [1942772]
+- net: usb: Fix uninit-was-stored issue in asix_read_phy_addr() (Torez Smith) [1942772]
+- net: cdc_ncm: Fix build error (Torez Smith) [1942772]
+- tools: usb: move to tools buildsystem (Torez Smith) [1942772]
+- usbip: Implement a match function to fix usbip (Torez Smith) [1942772]
+- usb: dwc3: gadget: Handle ZLP for sg requests (Torez Smith) [1942772]
+- usb: dwc3: gadget: Fix handling ZLP (Torez Smith) [1942772]
+- usb: dwc3: gadget: Don't setup more than requested (Torez Smith) [1942772]
+- r8152: Use MAC address from correct device tree node (Torez Smith) [1942772]
+- usb: hso: remove bogus check for EINPROGRESS (Torez Smith) [1942772]
+- usb: hso: no complaint about kmalloc failure (Torez Smith) [1942772]
+- hso: fix bailout in error case of probe (Torez Smith) [1942772]
+- usb: dwc3: convert to devm_platform_ioremap_resource_byname (Torez Smith) [1942772]
+- net: lan78xx: replace bogus endpoint lookup (Torez Smith) [1942772]
+- net: lan78xx: fix transfer-buffer memory leak (Torez Smith) [1942772]
+- net: lan78xx: add missing endpoint sanity check (Torez Smith) [1942772]
+- usb: hso: check for return value in hso_serial_common_create() (Torez Smith) [1942772]
+- Revert "usb: dwc2: override PHY input signals with usb role switch support" (Torez Smith) [1942772]
+- Revert "usb: dwc2: don't use ID/Vbus detection if usb-role-switch on STM32MP15 SoCs" (Torez Smith) [1942772]
+- usb: dwc3: gadget: when the started list is empty stop the active xfer (Torez Smith) [1942772]
+- usb: dwc3: gadget: make starting isoc transfers more robust (Torez Smith) [1942772]
+- usb: dwc3: gadget: add frame number mask (Torez Smith) [1942772]
+- usb: dwc2: Fix error path in gadget registration (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: fix shared reset control use (Torez Smith) [1942772]
+- usb: dwc2: don't use ID/Vbus detection if usb-role-switch on STM32MP15 SoCs (Torez Smith) [1942772]
+- usb: dwc2: override PHY input signals with usb role switch support (Torez Smith) [1942772]
+- net: cdc_ncm: hook into set_rx_mode to admit multicast traffic (Torez Smith) [1942772]
+- net: cdc_ncm: add .ndo_set_rx_mode to cdc_ncm_netdev_ops (Torez Smith) [1942772]
+- net: usbnet: export usbnet_set_rx_mode() (Torez Smith) [1942772]
+- net: cdc_ether: export usbnet_cdc_update_filter (Torez Smith) [1942772]
+- net: cdc_ether: use dev->intf to get interface information (Torez Smith) [1942772]
+- ax88172a: fix ax88172a_unbind() failures (Torez Smith) [1942772]
+- usb: dwc2: gadget: Avoid pointless read of EP control register (Torez Smith) [1942772]
+- usb: dwc2: gadget: Make use of GINTMSK2 (Torez Smith) [1942772]
+- usb: dwc3: Replace HTTP links with HTTPS ones (Torez Smith) [1942772]
+- tools: usb: usbip: Replace HTTP links with HTTPS ones (Torez Smith) [1942772]
+- usb: hso: Fix debug compile warning on sparc32 (Torez Smith) [1942772]
+- usbip: Use fallthrough pseudo-keyword (Torez Smith) [1942772]
+- Documentation/driver-api: usb/URB: drop doubled word (Torez Smith) [1942772]
+- usb: dwc3: dwc3-qcom: Do not define 'struct acpi_device_id' when !CONFIG_ACPI (Torez Smith) [1942772]
+- usb: dwc3: pci: add support for the Intel Jasper Lake (Torez Smith) [1942772]
+- usb: dwc2: Fix shutdown callback in platform (Torez Smith) [1942772]
+- usb: dwc3: pci: add support for the Intel Tiger Lake PCH -H variant (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add support for Quectel EG95 LTE modem (Torez Smith) [1942772]
+- smsc95xx: avoid memory leak in smsc95xx_bind (Torez Smith) [1942772]
+- smsc95xx: check return value of smsc95xx_reset (Torez Smith) [1942772]
+- usb: dwc2: gadget: Remove assigned but never used 'maxsize' (Torez Smith) [1942772]
+- usb: dwc3: dwc3-of-simple: Function headers are not good candidates for kerneldoc (Torez Smith) [1942772]
+- usb: dwc3: dwc3-haps: Function headers are not suitable for kerneldoc (Torez Smith) [1942772]
+- usb: dwc3: dwc3-omap: Do not read DMA status (Torez Smith) [1942772]
+- usb: dwc3: ulpi: File headers are not doc headers (Torez Smith) [1942772]
+- usb: dwc3: drd: File headers are not doc headers (Torez Smith) [1942772]
+- usbnet: ipheth: fix ipheth_tx()'s return type (Torez Smith) [1942772]
+- usbip: tools: add in man page how to load the client's module (Torez Smith) [1942772]
+- usbip: tools: fix build error for multiple definition (Torez Smith) [1942772]
+- usbip: tools: fix module name in man page (Torez Smith) [1942772]
+- Revert "usb: dwc3: exynos: Add support for Exynos5422 suspend clk" (Torez Smith) [1942772]
+- usb: dwc3: pci: Fix reference count leak in dwc3_pci_resume_work (Torez Smith) [1942772]
+- media: USB: cdc-acm: blacklist IR Droid / IR Toy device (Torez Smith) [1942772]
+- usbnet: smsc95xx: Fix use-after-free after removal (Torez Smith) [1942772]
+- usb: dwc2: Postponed gadget registration to the udc class driver (Torez Smith) [1942772]
+- usb: dwc2: use well defined macros for power_down (Torez Smith) [1942772]
+- net: usb: ax88179_178a: fix packet alignment padding (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: fix USB2 PHY initialization on G12A and A1 SoCs (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: fix error path when fetching the reset line fails (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add Telit LE910C1-EUX composition (Torez Smith) [1942772]
+- usb: dwc3: keystone: Turn on USB3 PHY before controller (Torez Smith) [1942772]
+- usb: dwc2: Update Core Reset programming flow. (Torez Smith) [1942772]
+- usb: dwc3: gadget: Check for prepared TRBs (Torez Smith) [1942772]
+- usb: dwc3: Increase timeout for CmdAct cleared by device controller (Torez Smith) [1942772]
+- usb: dwc3: gadget: Use SET_EP_PRIME for NoStream (Torez Smith) [1942772]
+- usb: dwc3: gadget: Handle stream transfers (Torez Smith) [1942772]
+- usb: dwc3: gadget: Don't prepare beyond a transfer (Torez Smith) [1942772]
+- usb: dwc3: gadget: Wait for transfer completion (Torez Smith) [1942772]
+- usb: dwc3: gadget: Handle XferComplete for streams (Torez Smith) [1942772]
+- usb: dwc3: gadget: Enable XferComplete event (Torez Smith) [1942772]
+- usb: dwc3: gadget: Refactor TRB completion handler (Torez Smith) [1942772]
+- usb: dwc3: gadget: Check for in-progress END_TRANSFER (Torez Smith) [1942772]
+- usb: dwc3: Get MDWIDTH for DWC_usb32 (Torez Smith) [1942772]
+- usb: dwc3: Add support for DWC_usb32 IP (Torez Smith) [1942772]
+- usb: dwc3: use true,false for dwc->otg_restart_host (Torez Smith) [1942772]
+- usb: dwc2: gadget: move gadget resume after the core is in L0 state (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: add support for GXL and GXM SoCs (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: support the GXL/GXM DWC3 host phy disconnect (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: refactor usb init (Torez Smith) [1942772]
+- usb: dwc3: gadget: Continue to process pending requests (Torez Smith) [1942772]
+- r8152: support additional Microsoft Surface Ethernet Adapter variant (Torez Smith) [1942772]
+- r8152: Use MAC address from device tree if available (Torez Smith) [1942772]
+- net: usb: qmi_wwan: remove redundant assignment to variable status (Torez Smith) [1942772]
+- net: huawei_cdc_ncm: remove redundant assignment to variable ret (Torez Smith) [1942772]
+- net: usb: ax88179_178a: remove redundant assignment to variable ret (Torez Smith) [1942772]
+- usb: dwc3: select USB_ROLE_SWITCH (Torez Smith) [1942772]
+- usb: dwc3: pci: Enable extcon driver for Intel Merrifield (Torez Smith) [1942772]
+- dwc3: Remove check for HWO flag in dwc3_gadget_ep_reclaim_trb_sg() (Torez Smith) [1942772]
+- usb: hso: correct debug message (Torez Smith) [1942772]
+- net: sierra_net: Remove unused inline function (Torez Smith) [1942772]
+- usb: dwc3: gadget: WARN on no-resource status (Torez Smith) [1942772]
+- usb: dwc3: gadget: Issue END_TRANSFER to retry isoc transfer (Torez Smith) [1942772]
+- usb: dwc3: gadget: Store resource index of start cmd (Torez Smith) [1942772]
+- usb: dwc3: core: Use role-switch default dr_mode (Torez Smith) [1942772]
+- usb: dwc3: drd: Don't free non-existing irq (Torez Smith) [1942772]
+- usb: dwc3: gadget: Properly handle failed kick_transfer (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: refactor usb2 phy init (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: check return of dwc3_meson_g12a_usb_init (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: get the reset as shared (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: handle the phy and glue registers separately (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: specify phy names in soc data (Torez Smith) [1942772]
+- usb: dwc3: gadget: Refactor dwc3_gadget_ep_dequeue (Torez Smith) [1942772]
+- usb: dwc3: gadget: Remove unnecessary checks (Torez Smith) [1942772]
+- usb: dwc3: gadget: Give back staled requests (Torez Smith) [1942772]
+- usb: dwc3: gadget: Properly handle ClearFeature(halt) (Torez Smith) [1942772]
+- usb: dwc3: support continuous runtime PM with dual role (Torez Smith) [1942772]
+- USB: dwc3: Use the correct style for SPDX License Identifier (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add support for DW5816e (Torez Smith) [1942772]
+- net: usb: ax88179_178a: Implement ethtool_ops set_eeprom (Torez Smith) [1942772]
+- usb: dwc3: gadget: Fix request completion check (Torez Smith) [1942772]
+- USB: dwc2: Use the correct style for SPDX License Identifier (Torez Smith) [1942772]
+- usb: dwc3: gadget: Do link recovery for SS and SSP (Torez Smith) [1942772]
+- usb: dwc3: gadget: Properly set maxpacket limit (Torez Smith) [1942772]
+- usb: dwc3: Fix GTXFIFOSIZ.TXFDEP macro name (Torez Smith) [1942772]
+- Documentation: driver-api/usb/writing_usb_driver.rst Updates documentation links (Torez Smith) [1942772]
+- pegasus: Remove pegasus' own workqueue (Torez Smith) [1942772]
+- usb: dwc2: convert to devm_platform_get_and_ioremap_resource (Torez Smith) [1942772]
+- usb: host: hisilicon: convert to devm_platform_get_and_ioremap_resource (Torez Smith) [1942772]
+- usb: host: xhci-plat: convert to devm_platform_get_and_ioremap_resource (Torez Smith) [1942772]
+- net: qmi_wwan: add support for ASKEY WWHC050 (Torez Smith) [1942772]
+- usb: dwc3: fix up for role switch API change (Torez Smith) [1942772]
+- usb: dwc2: Silence warning about supplies during deferred probe (Torez Smith) [1942772]
+- usb: dwc2: Implement set_selfpowered() (Torez Smith) [1942772]
+- usb: dwc3: core: don't do suspend for device mode if already suspended (Torez Smith) [1942772]
+- usb: dwc3: Rework resets initialization to be more flexible (Torez Smith) [1942772]
+- usb: dwc3: Rework clock initialization to be more flexible (Torez Smith) [1942772]
+- usb: dwc3: Add support for role-switch-default-mode binding (Torez Smith) [1942772]
+- usb: dwc3: Registering a role switch in the DRD code. (Torez Smith) [1942772]
+- usb: dwc3: core: add support for disabling SS instances in park mode (Torez Smith) [1942772]
+- usb: dwc3: gadget: Wrap around when skip TRBs (Torez Smith) [1942772]
+- usb: dwc3: gadget: Don't clear flags before transfer ended (Torez Smith) [1942772]
+- usb: dwc3: Remove kernel doc annotation where it's not needed (Torez Smith) [1942772]
+- usb: dwc3: Add ACPI support for xHCI ports (Torez Smith) [1942772]
+- usb: dwc3: exynos: Add support for Exynos5422 suspend clk (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: Don't use ret uninitialized in dwc3_meson_g12a_otg_init (Torez Smith) [1942772]
+- usb: dwc3: trace: print enqueue/dequeue pointers too (Torez Smith) [1942772]
+- usb: dwc2: add support for STM32MP15 SoCs USB OTG HS and FS (Torez Smith) [1942772]
+- usb: dwc3: Add Amlogic A1 DWC3 glue (Torez Smith) [1942772]
+- cdc_ncm: Fix the build warning (Torez Smith) [1942772]
+- cdc_ncm: Implement the 32-bit version of NCM Transfer Block (Torez Smith) [1942772]
+- r8152: reject unsupported coalescing params (Torez Smith) [1942772]
+- usb: dwc3: gadget: Update chain bit correctly when using sg list (Torez Smith) [1942772]
+- r8152: Replace zero-length array with flexible-array member (Torez Smith) [1942772]
+- r8152: check disconnect status after long sleep (Torez Smith) [1942772]
+- net: usb: qmi_wwan: restore mtu min/max values after raw_ip switch (Torez Smith) [1942772]
+- USB: Replace zero-length array with flexible-array member (Torez Smith) [1942772]
+- r8152: use new helper tcp_v6_gso_csum_prep (Torez Smith) [1942772]
+- net: usb: cdc-phonet: Replace zero-length array with flexible-array member (Torez Smith) [1942772]
+- usb: dwc3: qcom: Replace <linux/clk-provider.h> by <linux/of_clk.h> (Torez Smith) [1942772]
+- usb: dwc3: gadget: Check for IOC/LST bit in TRB->ctrl fields (Torez Smith) [1942772]
+- usb: dwc2: Fix in ISOC request length checking (Torez Smith) [1942772]
+- usb: dwc2: Fix SET/CLEAR_FEATURE and GET_STATUS flows (Torez Smith) [1942772]
+- usb: dwc3: debug: fix string position formatting mixup with ret and len (Torez Smith) [1942772]
+- qmi_wwan: unconditionally reject 2 ep interfaces (Torez Smith) [1942772]
+- qmi_wwan: re-add DW5821e pre-production variant (Torez Smith) [1942772]
+- r8152: Add MAC passthrough support to new device (Torez Smith) [1942772]
+- r8152: disable DelayPhyPwrChg (Torez Smith) [1942772]
+- r8152: avoid the MCU to clear the lanwake (Torez Smith) [1942772]
+- r8152: don't enable U1U2 with USB_SPEED_HIGH for RTL8153B (Torez Smith) [1942772]
+- r8152: disable test IO for RTL8153B (Torez Smith) [1942772]
+- r8152: Disable PLA MCU clock speed down (Torez Smith) [1942772]
+- r8152: disable U2P3 for RTL8153B (Torez Smith) [1942772]
+- r8152: get default setting of WOL before initializing (Torez Smith) [1942772]
+- r8152: reset flow control patch when linking on for RTL8153B (Torez Smith) [1942772]
+- r8152: fix runtime resume for linking change (Torez Smith) [1942772]
+- usb: dwc3: pci: add ID for the Intel Comet Lake -V variant (Torez Smith) [1942772]
+- net: usb: lan78xx: Add .ndo_features_check (Torez Smith) [1942772]
+- usb: dwc2: Drop unlock/lock upon queueing a work item (Torez Smith) [1942772]
+- usb: dwc3: gadget: Remove END_TRANSFER delay (Torez Smith) [1942772]
+- usb: dwc3: gadget: Delay starting transfer (Torez Smith) [1942772]
+- usb: dwc3: gadget: Check END_TRANSFER completion (Torez Smith) [1942772]
+- usb: dwc3: turn off VBUS when leaving host mode (Torez Smith) [1942772]
+- usb: dwc2: fix debugfs FIFO count (Torez Smith) [1942772]
+- usb: dwc2: Fix IN FIFO allocation (Torez Smith) [1942772]
+- usb: dwc2: Fix Stalling a Non-Isochronous OUT EP (Torez Smith) [1942772]
+- usb: dwc3: gadget: Clear DCTL.ULSTCHNGREQ before set (Torez Smith) [1942772]
+- usb: dwc2: Fix NULL qh in dwc2_queue_transaction (Torez Smith) [1942772]
+- usb: dwc3: gadget: Set link state to RX_Detect on disconnect (Torez Smith) [1942772]
+- usb: dwc3: gadget: Don't send unintended link state change (Torez Smith) [1942772]
+- r8152: add missing endpoint sanity check (Torez Smith) [1942772]
+- net: usb: lan78xx: limit size of local TSO packets (Torez Smith) [1942772]
+- qmi_wwan: Add support for Quectel RM500Q (Torez Smith) [1942772]
+- usbip: Fix unsafe unaligned pointer usage (Torez Smith) [1942772]
+- usb: dwc3: use proper initializers for property entries (Torez Smith) [1942772]
+- net: r8152: use skb_list_walk_safe helper for gso segments (Torez Smith) [1942772]
+- net: usb: lan78xx: fix possible skb leak (Torez Smith) [1942772]
+- net: ch9200: remove unnecessary return (Torez Smith) [1942772]
+- net: ch9200: use __func__ in debug message (Torez Smith) [1942772]
+- tools: usb: usbip: Get rid of driver name printout in README (Torez Smith) [1942772]
+- can: gs_usb: gs_usb_probe(): use descriptors of current altsetting (Torez Smith) [1942772]
+- can: kvaser_usb: fix interface sanity check (Torez Smith) [1942772]
+- usb: dwc3: gadget: Fix request complete check (Torez Smith) [1942772]
+- thunderbolt: Update documentation with the USB4 information (Torez Smith) [1942772]
+- usbip: Fix error path of vhci_recv_ret_submit() (Torez Smith) [1942772]
+- usbip: Fix receive error in vhci-hcd when using scatter-gather (Torez Smith) [1942772]
+- net: usb: lan78xx: Fix error message format specifier (Torez Smith) [1942772]
+- net: usb: lan78xx: Fix suspend/resume PHY register access error (Torez Smith) [1942772]
+- usb: dwc3: pci: add ID for the Intel Comet Lake -H variant (Torez Smith) [1942772]
+- usb: dwc3: ep0: Clear started flag on completion (Torez Smith) [1942772]
+- usb: dwc3: gadget: Clear started flag for non-IOC (Torez Smith) [1942772]
+- usb: dwc3: gadget: Fix logical condition (Torez Smith) [1942772]
+- can: kvaser_usb: kvaser_usb_leaf: Fix some info-leaks to USB devices (Torez Smith) [1942772]
+- can: ucan: fix non-atomic allocation in completion handler (Torez Smith) [1942772]
+- net: usb: aqc111: Use the correct style for SPDX License Identifier (Torez Smith) [1942772]
+- net: usbnet: Fix -Wcast-function-type (Torez Smith) [1942772]
+- net: hso: Fix -Wcast-function-type (Torez Smith) [1942772]
+- ax88179_178a: add ethtool_op_get_ts_info() (Torez Smith) [1942772]
+- r8152: avoid to call napi_disable twice (Torez Smith) [1942772]
+- r8152: Re-order napi_disable in rtl8152_close (Torez Smith) [1942772]
+- ax88172a: fix information leak on short answers (Torez Smith) [1942772]
+- usb: dwc2: create debugfs directory under usb root (Torez Smith) [1942772]
+- usb: dwc3: create debugfs directory under usb root (Torez Smith) [1942772]
+- net: cdc_ncm: Signedness bug in cdc_ncm_set_dgram_size() (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add support for Foxconn T77W968 LTE modules (Torez Smith) [1942772]
+- usbip: Fix uninitialized symbol 'nents' in stub_recv_cmd_submit() (Torez Smith) [1942772]
+- USBIP: add config dependency for SGL_ALLOC (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add support for DW5821e with eSIM support (Torez Smith) [1942772]
+- CDC-NCM: handle incomplete transfer of MTU (Torez Smith) [1942772]
+- usbip: tools: fix fd leakage in the function of read_attr_usbip_status (Torez Smith) [1942772]
+- can: peak_usb: fix a potential out-of-sync while decoding packets (Torez Smith) [1942772]
+- can: usb_8dev: fix use-after-free on disconnect (Torez Smith) [1942772]
+- can: mcba_usb: fix use-after-free on disconnect (Torez Smith) [1942772]
+- can: peak_usb: report bus recovery as well (Torez Smith) [1942772]
+- can: gs_usb: gs_can_open(): prevent memory leak (Torez Smith) [1942772]
+- usb: Spelling s/enpoint/endpoint/ (Torez Smith) [1942772]
+- usb: dwc3: gadget: fix race when disabling ep with cancelled xfers (Torez Smith) [1942772]
+- usb: dwc3: of-simple: add a shutdown (Torez Smith) [1942772]
+- usbip: Fix free of unallocated memory in vhci tx (Torez Smith) [1942772]
+- usbip: tools: Fix read_usb_vudc_device() error path handling (Torez Smith) [1942772]
+- usb: dwc3: pci: prevent memory leak in dwc3_pci_probe (Torez Smith) [1942772]
+- usb: dwc3: remove the call trace of USBx_GFLADJ (Torez Smith) [1942772]
+- usb: dwc3: select CONFIG_REGMAP_MMIO (Torez Smith) [1942772]
+- r8152: check the pointer rtl_fw->fw before using it (Torez Smith) [1942772]
+- net: lan78xx: remove set but not used variable 'event' (Torez Smith) [1942772]
+- usb: dwc3: debug: Remove newline printout (Torez Smith) [1942772]
+- r8152: support firmware of PHY NC for RTL8153A (Torez Smith) [1942772]
+- r8152: move r8153_patch_request forward (Torez Smith) [1942772]
+- r8152: add checking fw_offset field of struct fw_mac (Torez Smith) [1942772]
+- r8152: rename fw_type_1 with fw_mac (Torez Smith) [1942772]
+- usb: dwc2: use a longer core rest timeout in dwc2_core_reset() (Torez Smith) [1942772]
+- usb: dwc3: Disable phy suspend after power-on reset (Torez Smith) [1942772]
+- r8152: add device id for Lenovo ThinkPad USB-C Dock Gen 2 (Torez Smith) [1942772]
+- net: usb: lan78xx: Connect PHY before registering MAC (Torez Smith) [1942772]
+- usb: hso: obey DMA rules in tiocmget (Torez Smith) [1942772]
+- r8152: support request_firmware for RTL8153 (Torez Smith) [1942772]
+- net: usb: sr9800: fix uninitialized local variable (Torez Smith) [1942772]
+- net: usb: ax88179_178a: write mac to hardware in get_mac_addr (Torez Smith) [1942772]
+- net: usb: qmi_wwan: add Telit 0x1050 composition (Torez Smith) [1942772]
+- usb: dwc3: Remove dev_err() on platform_get_irq() failure (Torez Smith) [1942772]
+- usb: dwc3: Switch to platform_get_irq_byname_optional() (Torez Smith) [1942772]
+- r8152: Set macpassthru in reset_resume callback (Torez Smith) [1942772]
+- qmi_wwan: add support for Cinterion CLS8 devices (Torez Smith) [1942772]
+- usbip: clean up an indentation issue (Torez Smith) [1942772]
+- usbip: vhci_hcd indicate failed message (Torez Smith) [1942772]
+- r8152: Add identifier names for function pointers (Torez Smith) [1942772]
+- r8152: Use guard clause and fix comment typos (Torez Smith) [1942772]
+- hso: fix NULL-deref on tty open (Torez Smith) [1942772]
+- net: usb: ax88179_178a: allow optionally getting mac address from device tree (Torez Smith) [1942772]
+- r8152: Factor out OOB link list waits (Torez Smith) [1942772]
+- usbnet: ignore endpoints with invalid wMaxPacketSize (Torez Smith) [1942772]
+- cdc_ncm: fix divide-by-zero caused by invalid wMaxPacketSize (Torez Smith) [1942772]
+- usbnet: sanity checking of packet sizes and device mtu (Torez Smith) [1942772]
+- r8152: adjust the settings of ups flags (Torez Smith) [1942772]
+- r8152: modify rtl8152_set_speed function (Torez Smith) [1942772]
+- usb: dwc3: remove generic PHY calibrate() calls (Torez Smith) [1942772]
+- usb: gadget: net2280: Move all "ll" registers in one structure (Torez Smith) [1942772]
+- usb: dwc3: gadget: Workaround Mirosoft's BESL check (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: fix suspend resume regulator unbalanced disables (Torez Smith) [1942772]
+- usb: gadget: composite: Set recommended BESL values (Torez Smith) [1942772]
+- usb: dwc3: gadget: Set BESL config parameter (Torez Smith) [1942772]
+- usb: dwc3: Separate field holding multiple properties (Torez Smith) [1942772]
+- usb: dwc3: don't set gadget->is_otg flag (Torez Smith) [1942772]
+- usb: dwc3: st: Add of_dev_put() in probe function (Torez Smith) [1942772]
+- usb: dwc3: st: Add of_node_put() before return in probe function (Torez Smith) [1942772]
+- r8152: add a helper function about setting EEE (Torez Smith) [1942772]
+- r8152: saving the settings of EEE (Torez Smith) [1942772]
+- net: usb: Delete unnecessary checks before the macro call “dev_kfree_skb” (Torez Smith) [1942772]
+- r8152: divide the tx and rx bottom functions (Torez Smith) [1942772]
+- r8152: fix accessing skb after napi_gro_receive (Torez Smith) [1942772]
+- r8152: change rx_copybreak and rx_pending through ethtool (Torez Smith) [1942772]
+- r8152: support skb_add_rx_frag (Torez Smith) [1942772]
+- r8152: use alloc_pages for rx buffer (Torez Smith) [1942772]
+- r8152: replace array with linking list for rx information (Torez Smith) [1942772]
+- r8152: separate the rx buffer size (Torez Smith) [1942772]
+- usb: dwc3: Use clk_bulk_prepare_enable() (Torez Smith) [1942772]
+- usb: dwc3: Use devres to get clocks (Torez Smith) [1942772]
+- usb: dwc3: remove generic PHYs forwarding for XHCI device (Torez Smith) [1942772]
+- USB: usbip: convert to use dev_groups (Torez Smith) [1942772]
+- usb: dwc3: Update soft-reset wait polling rate (Torez Smith) [1942772]
+- usb: dwc2: gadget: Fix kill_all_requests race (Torez Smith) [1942772]
+- usb: dwc3: omap: use devm_platform_ioremap_resource() to simplify code (Torez Smith) [1942772]
+- usb: dwc3: keystone: use devm_platform_ioremap_resource() to simplify code (Torez Smith) [1942772]
+- usb: dwc3: omap: squash include/linux/platform_data/dwc3-omap.h (Torez Smith) [1942772]
+- usb: dwc3: meson-g12a: use devm_platform_ioremap_resource() to simplify code (Torez Smith) [1942772]
+- usbip: tools: fix GCC8 warning for strncpy (Torez Smith) [1942772]
+- usb: dwc3: Switch to use device_property_count_u32() (Torez Smith) [1942772]
+- usb: dwc2: Switch to use device_property_count_u32() (Torez Smith) [1942772]
+- can: kvaser_usb: Use struct_size() in alloc_candev() (Torez Smith) [1942772]
+- net: usb: Merge cpu_to_le32s + memcpy to put_unaligned_le32 (Torez Smith) [1942772]
+- ax88179_178a: Merge memcpy + le32_to_cpus to get_unaligned_le32 (Torez Smith) [1942772]
+- usbnet: smsc75xx: Merge memcpy + le32_to_cpus to get_unaligned_le32 (Torez Smith) [1942772]
+- net: lan78xx: Merge memcpy + lexx_to_cpus to get_unaligned_lexx (Torez Smith) [1942772]
+- bluetooth: eliminate the potential race condition when removing the HCI controller (Gopal Tiwari) [1971488]
+
+* Wed Jul 07 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-322.el8]
+- bareudp: add NETIF_F_FRAGLIST flag for dev features (Paolo Abeni) [1977850]
+- vxlan: add NETIF_F_FRAGLIST flag for dev features (Paolo Abeni) [1977850]
+- geneve: add NETIF_F_FRAGLIST flag for dev features (Paolo Abeni) [1977850]
+- RDMA/siw: Release xarray entry (Kamal Heib) [1971483]
+- RDMA/siw: Properly check send and receive CQ pointers (Kamal Heib) [1971483]
+- RDMA/siw: Fix a use after free in siw_alloc_mr (Kamal Heib) [1971483]
+- RDMA/rxe: Clear all QP fields if creation failed (Kamal Heib) [1971483]
+- RDMA/rxe: Fix a bug in rxe_fill_ip_info() (Kamal Heib) [1971483]
+- RDMA/rxe: Remove rxe_dma_device declaration (Kamal Heib) [1971483]
+- IB/hfi1: Fix error return code in parse_platform_config() (Kamal Heib) [1971483]
+- IB/hfi1: Remove unused function (Kamal Heib) [1971483]
+- RDMA/srpt: Fix error return code in srpt_cm_req_recv() (Kamal Heib) [1971483]
+- IB/isert: Fix a use after free in isert_connect_request (Kamal Heib) [1971483]
+- RDMA: Verify port when creating flow rule (Kamal Heib) [1971483]
+- RDMA/uverbs: Fix a NULL vs IS_ERR() bug (Kamal Heib) [1971483]
+- RDMA/core: Don't access cm_id after its destruction (Kamal Heib) [1971483]
+- RDMA/core: Prevent divide-by-zero error triggered by the user (Kamal Heib) [1971483]
+- RDMA/core: Add CM to restrack after successful attachment to a device (Kamal Heib) [1971483]
+- RDMA/core: Unify RoCE check and re-factor code (Kamal Heib) [1971483]
+- RDMA/core: Fix corrupted SL on passive side (Kamal Heib) [1971483]
+- mm: vmalloc: add cond_resched() in __vunmap() (Rafael Aquini) [1978469]
+- /proc/PID/smaps: Add PMD migration entry parsing (Nico Pache) [1977066]
+- s390: add 3f program exception handler (Nico Pache) [1977066]
+- x86/ioremap: Fix CONFIG_EFI=n build (Nico Pache) [1977066]
+- mm, slub: move slub_debug static key enabling outside slab_mutex (Nico Pache) [1977066]
+- mm, slub: enable slub_debug static key when creating cache with explicit debug flags (Nico Pache) [1977066]
+- locking/mutex: Remove repeated declaration (Nico Pache) [1977066]
+- percpu: make pcpu_nr_empty_pop_pages per chunk type (Nico Pache) [1977066]
+- mm/swap: don't SetPageWorkingset unconditionally during swapin (Nico Pache) [1977066]
+- s390/tlb: make cleared_pXs flags consistent with generic code (Nico Pache) [1977066]
+- mm, compaction: make fast_isolate_freepages() stay within zone (Nico Pache) [1977066]
+- mm/vmscan: restore zone_reclaim_mode ABI (Nico Pache) [1977066]
+- mm, compaction: move high_pfn to the for loop scope (Nico Pache) [1977066]
+- memblock: do not start bottom-up allocations with kernel_end (Nico Pache) [1977066]
+- mm, page_alloc: disable pcplists during memory offline (Nico Pache) [1977066]
+- mm, page_alloc: move draining pcplists to page isolation users (Nico Pache) [1977066]
+- mm, page_alloc: cache pageset high and batch in struct zone (Nico Pache) [1977066]
+- mm, page_alloc: simplify pageset_update() (Nico Pache) [1977066]
+- mm, page_alloc: fix core hung in free_pcppages_bulk() (Nico Pache) [1977066]
+- mm, page_alloc: remove setup_pageset() (Nico Pache) [1977066]
+- mm, page_alloc: calculate pageset high and batch once per zone (Nico Pache) [1977066]
+- mm, pcp: share common code between memory hotplug and percpu sysctl handler (Nico Pache) [1977066]
+- mm, page_alloc: clean up pageset high and batch update (Nico Pache) [1977066]
+- s390/uv: handle destroy page legacy interface (Nico Pache) [1977066]
+- mm/filemap: fix filemap_map_pages for THP (Nico Pache) [1977066]
+- mm: filemap: add missing FGP_ flags in kerneldoc comment for pagecache_get_page (Nico Pache) [1977066]
+- mm/filemap.c: rewrite pagecache_get_page documentation (Nico Pache) [1977066]
+- mm: filemap: clear idle flag for writes (Nico Pache) [1977066]
+- mm: document semantics of ZONE_MOVABLE (Nico Pache) [1977066]
+- mm/page_isolation: cleanup set_migratetype_isolate() (Nico Pache) [1977066]
+- mm/page_isolation: drop WARN_ON_ONCE() in set_migratetype_isolate() (Nico Pache) [1977066]
+- mm/page_isolation: exit early when pageblock is isolated in set_migratetype_isolate() (Nico Pache) [1977066]
+- mm/page_alloc: tweak comments in has_unmovable_pages() (Nico Pache) [1977066]
+- mm: reuse only-pte-mapped KSM page in do_wp_page() (Nico Pache) [1977066]
+- mm/memory.c: skip spurious TLB flush for retried page fault (Nico Pache) [1977066]
+- /proc/PID/smaps: consistent whitespace output format (Nico Pache) [1977066]
+- mm/memcontrol.c: prevent missed memory.low load tears (Nico Pache) [1977066]
+- mm, memcg: prevent mem_cgroup_protected store tearing (Nico Pache) [1977066]
+- mm, memcg: prevent memory.min load/store tearing (Nico Pache) [1977066]
+- mm, mempolicy: fix up gup usage in lookup_node (Nico Pache) [1977066]
+- mm/page_ext.c: drop pfn_present() check when onlining (Nico Pache) [1977066]
+- drivers/base/memory.c: drop pages_correctly_probed() (Nico Pache) [1977066]
+- drivers/base/memory.c: drop section_count (Nico Pache) [1977066]
+- include/linux/mm.h: remove dead code totalram_pages_set() (Nico Pache) [1977066]
+- tools headers uapi: Sync asm-generic/mman-common.h with the kernel (Nico Pache) [1977066]
+- mm/memcg: Relocate tcpmem to below memory in struct mem_cgroup (Waiman Long) [1959772]
+- mm/memcg: optimize user context object stock access (Waiman Long) [1959772]
+- mm/memcg: improve refill_obj_stock() performance (Waiman Long) [1959772]
+- mm/memcg: cache vmstat data in percpu memcg_stock_pcp (Waiman Long) [1959772]
+- mm/memcg: move mod_objcg_state() to memcontrol.c (Waiman Long) [1959772]
+- mm: memcontrol: move PageMemcgKmem to the scope of CONFIG_MEMCG_KMEM (Waiman Long) [1959772]
+- mm: memcontrol: inline __memcg_kmem_{un}charge() into obj_cgroup_{un}charge_pages() (Waiman Long) [1959772]
+- mm: memcontrol: use obj_cgroup APIs to charge kmem pages (Waiman Long) [1959772]
+- mm: memcontrol: change ug->dummy_page only if memcg changed (Waiman Long) [1959772]
+- mm: memcontrol: directly access page->memcg_data in mm/page_alloc.c (Waiman Long) [1959772]
+- mm: memcontrol: introduce obj_cgroup_{un}charge_pages (Waiman Long) [1959772]
+- mm: memcontrol: slab: fix obtain a reference to a freeing memcg (Waiman Long) [1959772]
+- mm: memmap defer init doesn't work as expected (Baoquan He) [1906271]
+- mm: check nr_initialised with PAGES_PER_SECTION directly in defer_init() (Baoquan He) [1906271]
+- mm/memory_hotplug: mark pageblocks MIGRATE_ISOLATE while onlining memory (Baoquan He) [1906271]
+- mm, memory_hotplug: update pcp lists everytime onlining a memory block (Baoquan He) [1906271]
+- mm: pass migratetype into memmap_init_zone() and move_pfn_range_to_zone() (Baoquan He) [1906271]
+- nfs: account for selinux security context when deciding to share superblock (Scott Mayhew) [1927027]
+- nfs: remove unneeded null check in nfs_fill_super() (Scott Mayhew) [1927027]
+- lsm,selinux: add new hook to compare new mount to an existing mount (Scott Mayhew) [1927027]
+- libceph: allow addrvecs with a single NONE/blank address (Jeff Layton) [1972278]
+- scsi: megaraid_sas: Update driver version to 07.717.02.00-rc1 (Tomas Henzl) [1968170]
+- scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs (Tomas Henzl) [1968170]
+- scsi: megaraid_sas: Early detection of VD deletion through RaidMap update (Tomas Henzl) [1968170]
+- scsi: megaraid_sas: Fix resource leak in case of probe failure (Tomas Henzl) [1968170]
+- scsi: megaraid_sas: Send all non-RW I/Os for TYPE_ENCLOSURE device through firmware (Tomas Henzl) [1968170]
+- scsi: megaraid_sas: Use DEFINE_SPINLOCK() for spinlock (Tomas Henzl) [1968170]
+- scsi: scsi_devinfo: Add blacklist entry for HPE OPEN-V (Ewan D. Milne) [1927508]
+- drivers: do not build devm_platform_get_and_ioremap_resource() for s390x (Jaroslav Kysela) [1917388]
+- redhat: update ALSA configs and add regmap-sdw-mbq to redhat/filter-modules.sh (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: fix the return value in dpcm_apply_symmetry() (Jaroslav Kysela) [1917388]
+- alsa: control_led - fix initialization in the mode show callback (Jaroslav Kysela) [1917388]
+- ALSA: seq: Fix race of snd_seq_timer_open() (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP ZBook Power G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: headphone and mic don't work on an Acer laptop (Jaroslav Kysela) [1917388]
+- ALSA: firewire-lib: fix the context to call snd_pcm_stop_xrun() (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook 840 Aero G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP EliteBook x360 1040 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Elite Dragonfly G2 (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: Fix the fast discharge for headset unplugging in soundwire mode (Jaroslav Kysela) [1917388]
+- ASoC: tas2562: Fix TDM_CFG0_SAMPRATE values (Jaroslav Kysela) [1917388]
+- ASoC: AMD Renoir: Remove fix for DMI entry on Lenovo 2020 platforms (Jaroslav Kysela) [1917388]
+- ASoC: AMD Renoir - add DMI entry for Lenovo 2020 AMD platforms (Jaroslav Kysela) [1917388]
+- ASoC: SOF: reset enabled_cores state at suspend (Jaroslav Kysela) [1917388]
+- ASoC: fsl-asoc-card: Set .owner attribute when registering card. (Jaroslav Kysela) [1917388]
+- ASoC: topology: Fix spelling mistake "vesion" -> "version" (Jaroslav Kysela) [1917388]
+- ASoC: rt5659: Fix the lost powers for the HDA header (Jaroslav Kysela) [1917388]
+- ASoC: core: Fix Null-point-dereference in fmt_single_name() (Jaroslav Kysela) [1917388]
+- spi: pxa2xx: Drop useless comment in the pxa2xx_ssp.h (Jaroslav Kysela) [1917388]
+- spi: pxa2xx: Switch to use BIT() and GENMASK() in pxa2xx_ssp.h (Jaroslav Kysela) [1917388]
+- spi: pxa2xx: Update header block in pxa2xx_ssp.h (Jaroslav Kysela) [1917388]
+- spi: pxa2xx: Add SSC2 and SSPSP2 SSP registers (Jaroslav Kysela) [1917388]
+- ASoC: pxa: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: pxa: pxa-ssp: Remove redundant null check before clk_prepare_enable/clk_disable_unprepare (Jaroslav Kysela) [1917388]
+- ASoC: mmp-sspa: drop unneeded snd_soc_dai_set_drvdata (Jaroslav Kysela) [1917388]
+- ASoC: mmp-sspa: set phase two word length register (Jaroslav Kysela) [1917388]
+- ASoC: pxa: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: Fix 7/8 spaces indentation in Kconfig (Jaroslav Kysela) [1917388]
+- ASoC: jz4740-i2s: Remove manual DMA peripheral ID assignment (Jaroslav Kysela) [1917388]
+- ASoC: jz4740-i2s: add missed checks for clk_get() (Jaroslav Kysela) [1917388]
+- ASoC: Intel: fix error code cnl_set_dsp_D0() (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Skylake: Unassign ram_read and read_write ops (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove haswell solution (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove sst_dsp_get_thread_context (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove unused DSP interface fields (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: remove unneeded semicolon (Jaroslav Kysela) [1917388]
+- catpt: Switch to use list_entry_is_head() helper (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Optimize applying user settings (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Correct clock selection for dai trigger (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Skip position update for unprepared streams (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Relax clock selection conditions (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Fix compilation when CONFIG_MODULES is disabled (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Cleanup after power routines streamlining (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Replace open coded variant of resource_intersection() (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Streamline power routines across LPT and WPT (Jaroslav Kysela) [1917388]
+- ASoC: Intel: haswell: Add missing pm_ops (Jaroslav Kysela) [1917388]
+- ASoC: Intel: cht_bsw_nau8824: Change SSP2-Codec DAI id to 0 (Jaroslav Kysela) [1917388]
+- ASoC: Intel: cht_bsw_nau8824: Drop compress-cpu-dai bits (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5651: use semicolons rather than commas to separate statements (Jaroslav Kysela) [1917388]
+- ASoC: Intel: broadwell: add missing pm_ops (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bdw-rt5677: add missing pm_ops (Jaroslav Kysela) [1917388]
+- ASoC: Intel: broadwell: set card and driver name dynamically (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bdw-rt5650: Mark FE DAIs as nonatomic (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove rt5640 support for baytrail solution (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove max98090 support for baytrail solution (Jaroslav Kysela) [1917388]
+- ASoC: Intel: atom: use inclusive language for SSP bclk/fsync (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Atom: add dynamic selection of DSP driver (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: select WANT_DEV_COREDUMP (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: add dynamic selection of DSP driver (Jaroslav Kysela) [1917388]
+- ASoC: intel: SND_SOC_INTEL_KEEMBAY should depend on ARCH_KEEMBAY (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Add explicit DMADEVICES kconfig dependency (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove baytrail solution (Jaroslav Kysela) [1917388]
+- ASoC: Intel: atom: Remove duplicate kconfigs (Jaroslav Kysela) [1917388]
+- ASoC: remove zte zx drivers (Jaroslav Kysela) [1917388]
+- ASoC: codecs: wsa881x: add missing stream rates and format (Jaroslav Kysela) [1917388]
+- ASoC: wm_adsp: Remove unused control callback structure (Jaroslav Kysela) [1917388]
+- ASoC: wm8994: Fix PM disable depth imbalance on error (Jaroslav Kysela) [1917388]
+- ASoC: wm8903: remove useless assignments (Jaroslav Kysela) [1917388]
+- ASoC: wm8523: Fix a typo in a comment (Jaroslav Kysela) [1917388]
+- ASoC: wm8350: use semicolons rather than commas to separate statements (Jaroslav Kysela) [1917388]
+- ASoC: wm5102: Use get_unaligned_be16() for dac_comp_coeff (Jaroslav Kysela) [1917388]
+- ASoC: codecs: wcd934x: Set digital gain range correctly (Jaroslav Kysela) [1917388]
+- ASoC: wcd9335: Remove unnecessary conversion to bool (Jaroslav Kysela) [1917388]
+- ASoC: rt715: remove unused parameter (Jaroslav Kysela) [1917388]
+- ASoC: mediatek: mt6359: add the calibration functions (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: clock driver must use the clock provider API (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: enable BCLK detection after calibration (Jaroslav Kysela) [1917388]
+- ASoC: pcm512x: Add support for more data formats (Jaroslav Kysela) [1917388]
+- ASoC: pcm512x: Move format check into `set_fmt()` (Jaroslav Kysela) [1917388]
+- ASoC: pcm512x: Rearrange operations in `hw_params()` (Jaroslav Kysela) [1917388]
+- ASoC: pcm512x: Fix not setting word length if DAIFMT_CBS_CFS (Jaroslav Kysela) [1917388]
+- ASoC: mediatek: mt6359: Fix regulator_dev_lookup() fails for id "LDO_VAUD18" (Jaroslav Kysela) [1917388]
+- ASoC: Remove mt6359_platform_driver_remove (Jaroslav Kysela) [1917388]
+- ASoC: Fix vaud18 power leakage of mt6359 (Jaroslav Kysela) [1917388]
+- ASoC: es8316: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Fix Bitclock polarity inversion (Jaroslav Kysela) [1917388]
+- ASoC: cs35l33: fix an error code in probe() (Jaroslav Kysela) [1917388]
+- ASoC: cs35l34: Add missing regmap use_single config (Jaroslav Kysela) [1917388]
+- ASoC: wm8998: Fix PM disable depth imbalance on error (Jaroslav Kysela) [1917388]
+- ASoC: codecs: wcd9335: Set digital gain range correctly (Jaroslav Kysela) [1917388]
+- ASoC: TSCS454: remove unneeded semicolon (Jaroslav Kysela) [1917388]
+- ASoC: TSCS42xx: remove unneeded semicolon (Jaroslav Kysela) [1917388]
+- ASoC: ts3a227e: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: tlv320: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: tas571x: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: tas*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: tas2562: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: remove remnants of sirf prima/atlas audio codec (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: add error checking to rt5645_probe function (Jaroslav Kysela) [1917388]
+- Revert "ASoC: rt5645: fix a NULL pointer dereference" (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: modify calibration sequence for better performance (Jaroslav Kysela) [1917388]
+- ASoC: rk3328: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: pcm179x: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: pcm1789: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: nau8315: revise the power event of EN_PIN dapm widget for symmetry (Jaroslav Kysela) [1917388]
+- ASoC: nau8315: add codec driver (Jaroslav Kysela) [1917388]
+- ASoC: gtm601: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: es8328: Remove redundant null check before clk_disable_unprepare (Jaroslav Kysela) [1917388]
+- ASoC: es7241: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: es7134: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: da9055: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: da7219: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: codecs/jz4770: Add DAPM widget to set HP out to cap-less mode (Jaroslav Kysela) [1917388]
+- ASoC: codecs/jz4770: Don't change cap-couple setting in HP PMU/PMD (Jaroslav Kysela) [1917388]
+- ASoC: codecs/jz4770: Adjust timeouts for cap-coupled outputs (Jaroslav Kysela) [1917388]
+- ASoC: codecs/jz4770: Reset interrupt flags in bias PREPARE (Jaroslav Kysela) [1917388]
+- ASoC: codecs/jz47xx: Use regmap_{set,clear}_bits (Jaroslav Kysela) [1917388]
+- treewide: Use fallthrough pseudo-keyword (Jaroslav Kysela) [1917388]
+- ASoC: inno_rk3036: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: hdac_hdmi: remove cancel_work_sync in runtime suspend (Jaroslav Kysela) [1917388]
+- ASoC: hdmi-codec: Add RX support (Jaroslav Kysela) [1917388]
+- ALSA: cx46xx: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ASoC: topology: KUnit: Convert from cpu to data format (Jaroslav Kysela) [1917388]
+- ASoC: topology: KUnit: Add KUnit tests passing topology with PCM to snd_soc_tplg_component_load (Jaroslav Kysela) [1917388]
+- ASoC: topology: KUnit: Add KUnit tests passing empty topology with variants to snd_soc_tplg_component_load (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: use semicolons rather than commas to separate statements (Jaroslav Kysela) [1917388]
+- ASoC: tegra: Simplify with dma_set_mask_and_coherent() (Jaroslav Kysela) [1917388]
+- ASoC: tegra: Don't warn on probe deferral (Jaroslav Kysela) [1917388]
+- ASoC: tegra: tegra_rt5640: use devm_snd_soc_register_card() (Jaroslav Kysela) [1917388]
+- ASoC: tegra: tegra_wm8753: use devm_snd_soc_register_card() (Jaroslav Kysela) [1917388]
+- ASoC: tegra: trimslice.c: use devm_snd_soc_register_card() (Jaroslav Kysela) [1917388]
+- ASoC: ti: davinci-evm: Remove redundant null check before clk_disable_unprepare (Jaroslav Kysela) [1917388]
+- ASoC: ti: davinci: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: ti: j721e-evm: Fix compiler warning when CONFIG_OF=n (Jaroslav Kysela) [1917388]
+- ASoC: ti: omap-abe-twl6040: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: ti: omap-mcsp: remove duplicate test (Jaroslav Kysela) [1917388]
+- ASoC: uniphier: Simplify the return expression of uniphier_aio_startup (Jaroslav Kysela) [1917388]
+- ASoC: uniphier: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: ux500: mop500: rename shadowing variable (Jaroslav Kysela) [1917388]
+- ASoC: ux500: mop500: align function prototype (Jaroslav Kysela) [1917388]
+- ALSA: x86: Simplify with dma_set_mask_and_coherent() (Jaroslav Kysela) [1917388]
+- ASoC: cx2072x: Fix doubly definitions of Playback and Capture streams (Jaroslav Kysela) [1917388]
+- ASoC: cs42l56: fix up error handling in probe (Jaroslav Kysela) [1917388]
+- ASoC: cs42l52: Minor tidy up of error paths (Jaroslav Kysela) [1917388]
+- ASoC: cs42l51: manage mclk shutdown delay (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Wait for PLL to lock before switching to it (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Only start PLL if it is needed (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Wait at least 150us after writing SCLK_PRESENT (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Use bclk from hw_params if set_sysclk was not called (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Report jack and button detection (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Add Capture Support (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Fix channel width support (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Always wait at least 3ms after reset (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Don't enable/disable regulator at Bias Level (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Fix mixer volume control (Jaroslav Kysela) [1917388]
+- ASoC: cs*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: bd28623: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: alc5632: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: ak4458: Add MODULE_DEVICE_TABLE (Jaroslav Kysela) [1917388]
+- ASoC: ak4118: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: alc5623: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1917388]
+- ASoC: ak5558: Correct the dai name for ak5552 (Jaroslav Kysela) [1917388]
+- ASoC: ak5558: change function name to ak5558_reset (Jaroslav Kysela) [1917388]
+- ASoC: ak5558: Add support for ak5552 (Jaroslav Kysela) [1917388]
+- ASoC: ak5558: Add MODULE_DEVICE_TABLE (Jaroslav Kysela) [1917388]
+- ASoC: ak5558: mark OF related data as maybe unused (Jaroslav Kysela) [1917388]
+- ASoC: adau1977: remove platform data and move micbias bindings include (Jaroslav Kysela) [1917388]
+- ASoC: adau17x1: Remove redundant null check before clk_disable_unprepare (Jaroslav Kysela) [1917388]
+- ASoC: adau*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: Add ADAU1372 audio CODEC support (Jaroslav Kysela) [1917388]
+- ASoC: amd: fix for pcm_read() error (Jaroslav Kysela) [1917388]
+- ASoC: amd: drop S24_LE format support (Jaroslav Kysela) [1917388]
+- ASoC: amd: Add support for ALC1015P codec in acp3x machine driver (Jaroslav Kysela) [1917388]
+- ASoC: amd: renoir: acp3x-pdm-dma: constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: amd: raven: acp3x-i2s: Constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: amd: renoir: acp3x-pdm-dma: remove unnecessary assignments (Jaroslav Kysela) [1917388]
+- ASoC: amd: fix acpi dependency kernel warning (Jaroslav Kysela) [1917388]
+- ASoC: amd: update spdx license for acp machine driver (Jaroslav Kysela) [1917388]
+- ASoC: amd: Add support for RT5682 codec in machine driver (Jaroslav Kysela) [1917388]
+- ASoC: amd: Adding DAI LINK for rt1015 codec (Jaroslav Kysela) [1917388]
+- ASoC: amd: Adding support for ALC1015 codec in machine driver (Jaroslav Kysela) [1917388]
+- ASoC: amd: AMD RV RT5682 should depends on CROS_EC (Jaroslav Kysela) [1917388]
+- ASoC: amd: renoir: remove invalid kernel-doc comment (Jaroslav Kysela) [1917388]
+- ASoC: AMD Renoir - refine DMI entries for some Lenovo products (Jaroslav Kysela) [1917388]
+- ASoC: AMD Renoir - add DMI entry for Lenovo ThinkPad X395 (Jaroslav Kysela) [1917388]
+- ASoC: amd: Replacing MSI with Legacy IRQ model (Jaroslav Kysela) [1917388]
+- ASoC: AMD Renoir - add DMI entry for Lenovo ThinkPad E14 Gen 2 (Jaroslav Kysela) [1917388]
+- ASoC: AMD Renoir - add DMI table to avoid the ACP mic probe (broken BIOS) (Jaroslav Kysela) [1917388]
+- ASoC: AMD Raven/Renoir - fix the PCI probe (PCI revision) (Jaroslav Kysela) [1917388]
+- ASoC: amd: change clk_get() to devm_clk_get() and add missed checks (Jaroslav Kysela) [1917388]
+- ASoC: amd: Return -ENODEV for non-existing ACPI call (Jaroslav Kysela) [1917388]
+- ASoC: amd: support other audio modes for raven (Jaroslav Kysela) [1917388]
+- ASoC: topology: adhere to KUNIT formatting standard (Jaroslav Kysela) [1917388]
+- ASoC: topology: KUnit: Add KUnit tests passing various arguments to snd_soc_tplg_component_load (Jaroslav Kysela) [1917388]
+- ALSA: trident: Use DIV_ROUND_CLOSEST() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: sonicvibes: Use DIV_ROUND_CLOSEST() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: sis7019: Use DIV_ROUND_CLOSEST() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: remove unneeded break (Jaroslav Kysela) [1917388]
+- ALSA: hdsp: don't disable if not enabled (Jaroslav Kysela) [1917388]
+- ALSA: hdsp: hardware output loopback (Jaroslav Kysela) [1917388]
+- ALSA: pci: mixart: fix kernel-doc warning (Jaroslav Kysela) [1917388]
+- ALSA: maestro: Use DIV_ROUND_CLOSEST() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: lola: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: intel8x0: Fix missing check in snd_intel8x0m_create (Jaroslav Kysela) [1917388]
+- ALSA: intel8x0: Don't update period unless prepared (Jaroslav Kysela) [1917388]
+- ALSA: hda: Avoid spurious unsol event handling during S3/S4 (Jaroslav Kysela) [1917388]
+- ALSA: ens1370: Use DIV_ROUND_CLOSEST() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: emu10k1: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: emu10k1: Use dma_set_mask_and_coherent to simplify code (Jaroslav Kysela) [1917388]
+- ALSA: ctxfi: fix comment syntax in file headers (Jaroslav Kysela) [1917388]
+- ALSA: ctxfi: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits (Jaroslav Kysela) [1917388]
+- ALSA: bt87x: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: azt3328: Assign boolean values to a bool variable (Jaroslav Kysela) [1917388]
+- ALSA: asihpi: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: dice: fix stream format for TC Electronic Konnekt Live at high sampling transfer frequency (Jaroslav Kysela) [1917388]
+- ALSA: dice: disable double_pcm_frames mode for M-Audio Profire 610, 2626 and Avid M-Box 3 Pro (Jaroslav Kysela) [1917388]
+- ALSA: firewire-lib: fix amdtp_packet tracepoints event for packet_index field (Jaroslav Kysela) [1917388]
+- ALSA: firewire-lib: fix calculation for size of IR context payload (Jaroslav Kysela) [1917388]
+- ALSA: firewire-lib: fix check for the size of isochronous packet payload (Jaroslav Kysela) [1917388]
+- ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro (Jaroslav Kysela) [1917388]
+- ALSA: dice: fix stream format at middle sampling rate for Alesis iO 26 (Jaroslav Kysela) [1917388]
+- ALSA: bebob: enable to deliver MIDI messages for multiple ports (Jaroslav Kysela) [1917388]
+- ALSA: bebob: detect the number of available MIDI ports (Jaroslav Kysela) [1917388]
+- ALSA: bebob: code refactoring for stream format detection (Jaroslav Kysela) [1917388]
+- ALSA: dice: fix null pointer dereference when node is disconnected (Jaroslav Kysela) [1917388]
+- ALSA: fireface: fix to parse sync status register of latter protocol (Jaroslav Kysela) [1917388]
+- ALSA: bebob: remove an unnecessary condition in hwdep_read() (Jaroslav Kysela) [1917388]
+- ALSA: fireface: remove unnecessary condition in hwdep_read() (Jaroslav Kysela) [1917388]
+- ALSA: oxfw: remove an unnecessary condition in hwdep_read() (Jaroslav Kysela) [1917388]
+- ALSA: dice: add support for Lexicon I-ONIX FW810s (Jaroslav Kysela) [1917388]
+- ALSA: firewire-tascam: Fix integer overflow in midi_port_work() (Jaroslav Kysela) [1917388]
+- ALSA: fireface: Fix integer overflow in transmit_midi_msg() (Jaroslav Kysela) [1917388]
+- ALSA: firewire: Clean up a locking issue in copy_resp_to_buf() (Jaroslav Kysela) [1917388]
+- ALSA: firewire: fix comparison to bool warning (Jaroslav Kysela) [1917388]
+- ALSA: firewire: Replace tasklet with work (Jaroslav Kysela) [1917388]
+- ALSA: firewire: convert tasklets to use new tasklet_setup() API (Jaroslav Kysela) [1917388]
+- ALSA: vx: Use roundup() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: pcsp: Fix fall-through warnings for Clang (Jaroslav Kysela) [1917388]
+- ALSA: dummy: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: aloop: Fix initialization of controls (Jaroslav Kysela) [1917388]
+- ALSA: aloop: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: atmel: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1917388]
+- ASoC: SOF: ext_manifest: use explicit number for elem_type (Jaroslav Kysela) [1917388]
+- ASoC: soc-acpi: allow for partial match in parent name (Jaroslav Kysela) [1917388]
+- ASoC: soc-acpi: add helper to identify parent driver. (Jaroslav Kysela) [1917388]
+- ASoC: soc-acpi: add new fields for mach_params (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: Add a new property for the DMIC clock driving (Jaroslav Kysela) [1917388]
+- ALSA: hda: Change AZX_MAX_BUF_SIZE from 1GB to 4MB (Jaroslav Kysela) [1917388]
+- soundwire: sysfs: Constify static struct attribute_group (Jaroslav Kysela) [1917388]
+- ALSA: remove trailing semicolon in macro definition (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: don't send DAI_CONFIG IPC for older firmware (Jaroslav Kysela) [1917388]
+- ASoC: SOF: use current DAI config during resume (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: Update ADL P to use its own descriptor (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: add missing use_acpi_target_states for TGL platforms (Jaroslav Kysela) [1917388]
+- ASoC: SOF: topology: remove useless code (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Kconfig: fix typo of SND_SOC_SOF_PCI (Jaroslav Kysela) [1917388]
+- ASOC: SOF: simplify nocodec mode (Jaroslav Kysela) [1917388]
+- ASoC: SOF: pcm: export snd_pcm_dai_link_fixup (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: update set_mach_params() (Jaroslav Kysela) [1917388]
+- ASoC: SOF: change signature of set_mach_params() callback (Jaroslav Kysela) [1917388]
+- ASoC: SOF: add Kconfig option for probe workqueues (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Simplify sof_probe_complete handling for acpi/pci/of (Jaroslav Kysela) [1917388]
+- ASoC: SOF: core: Add missing error prints to device probe operation (Jaroslav Kysela) [1917388]
+- ASoC: SOF: match SSP config with pcm hw params (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: HDA: add hw params callback for SSP DAIs (Jaroslav Kysela) [1917388]
+- ASoC: SOF: parse multiple SSP DAI and hw configs (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: drop display power on/off in D0i3 flows (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: move ELH chip info (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: APL: set shutdown callback to hda_dsp_shutdown (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: CNL: set shutdown callback to hda_dsp_shutdown (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: ICL: set shutdown callback to hda_dsp_shutdown (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: TGL: set shutdown callback to hda_dsp_shutdown (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: TGL: fix EHL ops (Jaroslav Kysela) [1917388]
+- ASoC: SOF: core: harden shutdown helper (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: HDA: fix core status verification (Jaroslav Kysela) [1917388]
+- ASoC: SOF: add a helper to get topology configured mclk (Jaroslav Kysela) [1917388]
+- ASoC: SOF: only allocate debugfs cache buffers for IPC flood entries (Jaroslav Kysela) [1917388]
+- ASoC: SOF: fix debugfs initialisation error handling (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: enable async suspend (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: turn off display power in resume (Jaroslav Kysela) [1917388]
+- ASoC: SOF: intel: fix wrong poll bits in dsp power down (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: unregister DMIC device on probe error (Jaroslav Kysela) [1917388]
+- ALSA: hda: move Intel SoundWire ACPI scan to dedicated module (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: SoundWire: simplify Kconfig (Jaroslav Kysela) [1917388]
+- ASoC: SOF: pci: move DSP_CONFIG use to platform-specific drivers (Jaroslav Kysela) [1917388]
+- ASoC: SOF: pci: split PCI into different drivers (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: add sof_icl_ops for ICL platforms (Jaroslav Kysela) [1917388]
+- ASoC: SOF: ACPI: avoid reverse module dependency (Jaroslav Kysela) [1917388]
+- ASoC: SOF: relax ABI checks and avoid unnecessary warnings (Jaroslav Kysela) [1917388]
+- ASoC: SOF: fix runtime pm usage mismatch after probe errors (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: add dev_dbg() when DMIC number is overridden (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: HDA: don't keep a temporary variable (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: detect DMIC number in SoundWire mixed config (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: SoundWire: refine ACPI match (Jaroslav Kysela) [1917388]
+- ASoC: SOF: HDA: (cosmetic) simplify hda_dsp_d0i3_work() (Jaroslav Kysela) [1917388]
+- ASoC: SOF: remove unused functions (Jaroslav Kysela) [1917388]
+- ASoC: SOF: fix string format for errors (Jaroslav Kysela) [1917388]
+- ASoC: SOF: add missing pm debug (Jaroslav Kysela) [1917388]
+- ASoC: SOF: sof-pci-dev: add missing Up-Extreme quirk (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: release display power at link_power (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: use hdac_ext fine-grained link management (Jaroslav Kysela) [1917388]
+- ASoC: SOF: debug: Fix a potential issue on string buffer termination (Jaroslav Kysela) [1917388]
+- ASoC: SOF: add be_hw_params_fixup() for ALH (Jaroslav Kysela) [1917388]
+- ASoC: SOF: topology: Prevent NULL pointer dereference with no TLV (Jaroslav Kysela) [1917388]
+- ASoC: SOF: intel: hda-loader: use snd_sof_dsp_core_power_down/up APIs (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Filter out unneeded core power up/downs (Jaroslav Kysela) [1917388]
+- ASoC: SOF: update dsp core power status in common APIs (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda-loader: keep init cores alive (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: use snd_sof_dsp_core_power_up/down API (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: cancel D0i3 work during runtime suspend (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: Enable DMI L1 for trace (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: enable DMI L1 for D0i3-compatible streams (Jaroslav Kysela) [1917388]
+- ASoC: SOF: add a pointer to download repo in case FW request fails (Jaroslav Kysela) [1917388]
+- ASoC: SOF: SND_INTEL_DSP_CONFIG dependency (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: soundwire: fix select/depend unmet dependencies (Jaroslav Kysela) [1917388]
+- ASoC: SOF: intel: Simplify with dma_set_mask_and_coherent() (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: initial support to AlderLake-P (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: tgl: do thorough remove at .shutdown() callback (Jaroslav Kysela) [1917388]
+- ASoC: SOF: sof-pci-dev: add .shutdown() callback (Jaroslav Kysela) [1917388]
+- ASoC: SOF: add snd_sof_device_shutdown() helper for shutdown (Jaroslav Kysela) [1917388]
+- ASoC: SOF: add .shutdown() callback to snd_sof_dsp_ops (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: Avoid checking jack on system suspend (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: Modify existing helper to disable WAKEEN (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: hda: Resume codec to do jack detection (Jaroslav Kysela) [1917388]
+- ASoC: SOF: add mutex to protect the dsp_power_state access (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Fix spelling mistake in Kconfig "ond" -> "and" (Jaroslav Kysela) [1917388]
+- ASoC: SOF: imx: update kernel-doc description (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: add SoundWire support for ADL-S (Jaroslav Kysela) [1917388]
+- ASoC: SOF: control: fix cppcheck warning in snd_sof_volume_info() (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: allow for coexistence between SOF and catpt drivers (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: allow for coexistence between SOF and Atom/SST drivers (Jaroslav Kysela) [1917388]
+- ASoC: SOF: acpi: add dynamic selection of DSP driver (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: initial support for Alderlake-S (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: fix Kconfig dependency for SND_INTEL_DSP_CONFIG (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Intel: fix Kconfig punctuation and wording (Jaroslav Kysela) [1917388]
+- ASoC: SOF: Kconfig: fix Kconfig punctuation and wording (Jaroslav Kysela) [1917388]
+- ASoC: SOF: imx: fix Kconfig punctuation (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Lenovo Miix 3-830 tablet (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Glavey TM800A550L tablet (Jaroslav Kysela) [1917388]
+- ASoC: Intel: KMB: Fix random noise at the HDMI output (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_sdw: add quirk for new ADL-P Rvp (Jaroslav Kysela) [1917388]
+- ASoC: Intel: soc-acpi: add ADL jack-less SoundWire configurations (Jaroslav Kysela) [1917388]
+- ASoC: Intel: soc-acpi: add ADL SoundWire base configurations (Jaroslav Kysela) [1917388]
+- ASoC: Intel: kbl_da7219_max98927: Fix kabylake_ssp_fixup function (Jaroslav Kysela) [1917388]
+- ASoC: Intel: KMB: Constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoc: Intel: board: add BE DAI link for WoV (Jaroslav Kysela) [1917388]
+- ASoC: Intel: kbl: Add MST route change to kbl machine drivers (Jaroslav Kysela) [1917388]
+- ASoC: Intel: cht_bsw_rt5672: Set card.components string (Jaroslav Kysela) [1917388]
+- ASoC: Intel: cht_bsw_rt5672: Add support for Bay Trail CR / SSP0 (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Baytrail: Add quirk for the Dell Venue 10 Pro 5055 tablet (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Unify the thinkpad10 and aegex10 byt-match quirks (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Boards: cml_da7219_max98390: add capture stream for echo reference (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Fix a typo (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Fix a typo (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Fix a typo (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Chuwi Hi8 tablet (Jaroslav Kysela) [1917388]
+- ASoC: Intel: add max98390 echo reference support (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_wm5102: Add jack detect support (Jaroslav Kysela) [1917388]
+- ASoC: intel: atom: Remove 44100 sample-rate from the media and deep-buffer DAI descriptions (Jaroslav Kysela) [1917388]
+- ASoC: intel: atom: Stop advertising non working S24LE support (Jaroslav Kysela) [1917388]
+- ASoC: intel: sof_rt5682: use the topology mclk (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_rt5682: Add ALC1015Q-VB speaker amp support (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Skylake: skl-topology: fix -frame-larger-than (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add used AIF to the components string (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Enable jack-detect support on Asus T100TAF (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_wm5102: remove unused static variable (Jaroslav Kysela) [1917388]
+- ASoC: Intel: atom: fix kernel-doc (Jaroslav Kysela) [1917388]
+- ASoC: Intel: soc-acpi: remove TGL RVP mixed SoundWire/TDM config (Jaroslav Kysela) [1917388]
+- ASoC: Intel: soc-acpi: remove unused TGL table with rt5682 only (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Skylake: Compile when any configuration is selected (Jaroslav Kysela) [1917388]
+- ASoC: Intel: boards: sof-wm8804: add check for PLL setting (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Fix HP Pavilion x2 10-p0XX OVCD current threshold (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Acer One S1002 tablet (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5651: Add quirk for the Jumper EZpad 7 tablet (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Voyo Winpad A15 tablet (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Estar Beauty HD MID 7316R tablet (Jaroslav Kysela) [1917388]
+- ASoC: Intel: soc-acpi: add ACPI matching table for HP Spectre x360 (Jaroslav Kysela) [1917388]
+- ASoC: intel: sof_sdw: add trace for dai links (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_sdw: detect DMIC number based on mach params (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_sdw: add mic:dmic and cfg-mics component strings (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_sdw: add quirk for HP Spectre x360 convertible (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof-sdw: indent and add quirks consistently (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_sdw: reorganize quirks by generation (Jaroslav Kysela) [1917388]
+- ASoC: Intel: boards: max98373: get dapm from cpu_dai (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_wm5102: Add machine driver for BYT/WM5102 (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Add DMI quirk table to soc_intel_is_byt_cr() (Jaroslav Kysela) [1917388]
+- ASoC: Intel: KMB: Support IEC958 encoded PCM format (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_sdw: add missing TGL_HDMI quirk for Dell SKU 0A3E (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_sdw: add missing TGL_HDMI quirk for Dell SKU 0A32 (Jaroslav Kysela) [1917388]
+- ASoC: Intel: sof_sdw: add missing TGL_HDMI quirk for Dell SKU 0A5E (Jaroslav Kysela) [1917388]
+- ASoC: Intel: remove unneeded semicolon (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Wake up device before configuring SSP port (Jaroslav Kysela) [1917388]
+- ASoC: Intel: remove duplicate MODULE_LICENSE/DESCRIPTION tags (Jaroslav Kysela) [1917388]
+- ASoC: Intel: adl: remove sof_fw_filename setting in ADL snd_soc_acpi_mach (Jaroslav Kysela) [1917388]
+- ASoC: Intel: common: add ACPI matching tables for Alder Lake (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Skylake: Zero snd_ctl_elem_value (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Skylake: skl-topology: Fix OOPs ib skl_tplg_complete (Jaroslav Kysela) [1917388]
+- ASoC: intel: skl: Simplify with dma_set_mask_and_coherent() (Jaroslav Kysela) [1917388]
+- ASoC: Intel: cht_bsw_nau8824: Move snd_soc_dai_set_tdm_slot call to cht_codec_fixup (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add quirk for the Mele PCG03 Mini PC (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add new BYT_RT5640_NO_INTERNAL_MIC_MAP input-mapping (Jaroslav Kysela) [1917388]
+- ASoC: Intel: byt/cht: set pm ops dynamically (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove sst_pdata structure (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Make atom components independent of sst-dsp (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove SST-legacy specific constants (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove unused DSP operations (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove SST firmware components (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Remove SST ACPI component (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Select catpt and deprecate haswell (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bdw-5677: Remove haswell-solution specific code (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bdw-5650: Remove haswell-solution specific code (Jaroslav Kysela) [1917388]
+- ASoC: Intel: broadwell: Remove haswell-solution specific code (Jaroslav Kysela) [1917388]
+- ASoC: Intel: haswell: Remove haswell-solution specific code (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Simple sysfs attributes (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Event tracing (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Device driver lifecycle (Jaroslav Kysela) [1917388]
+- drivers: provide devm_platform_get_and_ioremap_resource() (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: PCM operations (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Firmware loading and context restore (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Define DSP operations (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Add IPC message handlers (Jaroslav Kysela) [1917388]
+- ASoC: Intel: catpt: Implement IPC protocol (Jaroslav Kysela) [1917388]
+- ASoC: Intel: Add catpt base members (Jaroslav Kysela) [1917388]
+- resource: Introduce resource_intersection() for overlapping resources (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add quirk for ARCHOS Cesium 140 (Jaroslav Kysela) [1917388]
+- ASoC: Intel: boards: byt/cht: set card and driver name at run time (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcr_rt5640: Add new BYT_RT5640_NO_SPEAKERS quirk-flag (Jaroslav Kysela) [1917388]
+- ASoC: Intel: KMB: Enable DMA transfer mode (Jaroslav Kysela) [1917388]
+- ASoC: Intel: keembay: use inclusive language for bclk and fsync (Jaroslav Kysela) [1917388]
+- ASoC: Intel: bytcht_es8316: Remove comment about SSP0 being untested (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: remove bclk_ratio (Jaroslav Kysela) [1917388]
+- ASoC: cs42l73: Add missing regmap use_single config (Jaroslav Kysela) [1917388]
+- ASoC: cs53l30: Add missing regmap use_single config (Jaroslav Kysela) [1917388]
+- ASoC: sti-sas: add missing MODULE_DEVICE_TABLE (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Regmap must use_single_read/write (Jaroslav Kysela) [1917388]
+- ASoC: rt711-sdca: fix the function number of SDCA control for feature unit 0x1E (Jaroslav Kysela) [1917388]
+- ASoC: da7219: do not request a new clock consummer reference (Jaroslav Kysela) [1917388]
+- ASoC: max98088: fix ni clock divider calculation (Jaroslav Kysela) [1917388]
+- ASoC: rt711-sdca: add the notification when volume changed (Jaroslav Kysela) [1917388]
+- ASoC: rt711-sdca: change capture switch controls (Jaroslav Kysela) [1917388]
+- ASoC: da7219: properly get clk from the provider (Jaroslav Kysela) [1917388]
+- ASoC: wcd934x: use the clock provider API (Jaroslav Kysela) [1917388]
+- ASoC: adau17x1: Avoid overwriting CHPF (Jaroslav Kysela) [1917388]
+- ASoC: ak4458: enable daisy chain (Jaroslav Kysela) [1917388]
+- ASoC: rt1015p: add support on format S32_LE (Jaroslav Kysela) [1917388]
+- ASoC: rt286: Generalize support for ALC3263 codec (Jaroslav Kysela) [1917388]
+- ASoC: rt298: Configure combo jack for headphones (Jaroslav Kysela) [1917388]
+- ASoC: rt286: Configure combo jack for headphones (Jaroslav Kysela) [1917388]
+- ASoC: sigmadsp: Disable cache mechanism for readbacks (Jaroslav Kysela) [1917388]
+- ASoC: rt286: Make RT286_SET_GPIO_* readable and writable (Jaroslav Kysela) [1917388]
+- ASoC: rt286: Fix upper byte in DMIC2 configuration (Jaroslav Kysela) [1917388]
+- ASoC: ak4458: check reset control status (Jaroslav Kysela) [1917388]
+- ASoC: codecs: rt5682: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt715: remove kcontrols which no longer be used (Jaroslav Kysela) [1917388]
+- ASoC: rt715: add main capture switch and main capture volume (Jaroslav Kysela) [1917388]
+- ASoC: rt715: modification for code simplicity (Jaroslav Kysela) [1917388]
+- ASoC: codecs: wcd934x: Fix missing IRQF_ONESHOT as only threaded handler (Jaroslav Kysela) [1917388]
+- ASoC: cs35l35: remove unused including <linux/version.h> (Jaroslav Kysela) [1917388]
+- ASoC: ak5558: correct reset polarity (Jaroslav Kysela) [1917388]
+- ASoC: cs35l36: Fix an error handling path in 'cs35l36_i2c_probe()' (Jaroslav Kysela) [1917388]
+- ASoC: cs35l35: Fix an error handling path in 'cs35l35_i2c_probe()' (Jaroslav Kysela) [1917388]
+- ASoC: wcd9335: constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: rt1019: remove registers to sync with rt1019 datasheet (Jaroslav Kysela) [1917388]
+- ASoC: rt711-sdca: Constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: wcd934x: constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: rt715-sdca: Constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: tas2770: Constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: cx2072x: constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: rt1019: constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: codecs: tlv320aic3x: add AIC3106 (Jaroslav Kysela) [1917388]
+- ASoC: codecs: wsa881x: constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: codecs: Fix runtime PM imbalance in tas2552_probe (Jaroslav Kysela) [1917388]
+- ASoC: rt1011: remove pack_id check in rt1011 (Jaroslav Kysela) [1917388]
+- ASoC: codecs: tlv320aic3x: add SPI support (Jaroslav Kysela) [1917388]
+- ASoC: codecs: tlv320aic3x: move I2C to separated file (Jaroslav Kysela) [1917388]
+- ASoC: codecs: tlv320aic3x: rename probe function (Jaroslav Kysela) [1917388]
+- ASoC: codecs: tlv320aic3x: move model definitions (Jaroslav Kysela) [1917388]
+- ASoC: max98390: Add support for tx slot configuration. (Jaroslav Kysela) [1917388]
+- ASoC: ak5558: Fix s/show/slow/ typo (Jaroslav Kysela) [1917388]
+- ASoC: tlv320aic32x4: Register clocks before registering component (Jaroslav Kysela) [1917388]
+- ASoC: tlv320aic32x4: Increase maximum register in regmap (Jaroslav Kysela) [1917388]
+- ASoC: rt5670: Add a rt5670_components() helper (Jaroslav Kysela) [1917388]
+- ASoC: rt5670: Add a quirk for the Dell Venue 10 Pro 5055 (Jaroslav Kysela) [1917388]
+- ASoC: da732x: simplify code (Jaroslav Kysela) [1917388]
+- ASoC: lm49453: fix useless assignment before return (Jaroslav Kysela) [1917388]
+- ASoC: mediatek: mt6359: Fix spelling mistake "reate" -> "create" (Jaroslav Kysela) [1917388]
+- ASoC: mediatek: mt6359: add MT6359 accdet jack driver (Jaroslav Kysela) [1917388]
+- ASoC: max98373: Added 30ms turn on/off time delay (Jaroslav Kysela) [1917388]
+- ASoC: max98373: Changed amp shutdown register as volatile (Jaroslav Kysela) [1917388]
+- ASoC: wm8960: Remove bitclk relax condition in wm8960_configure_sysclk (Jaroslav Kysela) [1917388]
+- ASoC: max98373: Added controls for autorestart config (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: Add bclk detection and dc detection (Jaroslav Kysela) [1917388]
+- ASoC: wm8960: Fix wrong bclk and lrclk with pll enabled for some chips (Jaroslav Kysela) [1917388]
+- ASoC: rt1019: make symbol 'rt1019_i2c_driver' static (Jaroslav Kysela) [1917388]
+- ASoC: rt1019: add rt1019 amplifier driver (Jaroslav Kysela) [1917388]
+- ASoC: tscs454: remove useless test on PLL disable (Jaroslav Kysela) [1917388]
+- ASoC: tlv320dac33: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: tas2770: remove useless initialization (Jaroslav Kysela) [1917388]
+- ASoC: tas2562: remove warning on return value (Jaroslav Kysela) [1917388]
+- ASoC: tas2562: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: sti-sas: remove unused struct members (Jaroslav Kysela) [1917388]
+- ASoC: sigmadsp: align function prototype (Jaroslav Kysela) [1917388]
+- ASoC: pcm1681: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: nau8825: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: mt6359: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: mt6358: remove useless initializations (Jaroslav Kysela) [1917388]
+- ASoC: max98090: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: hdmi-codec: remove unused spk_mask member (Jaroslav Kysela) [1917388]
+- ASoC: hdmi-codec: remove useless initialization (Jaroslav Kysela) [1917388]
+- ASoC: hdac_hdmi: align function arguments (Jaroslav Kysela) [1917388]
+- ASoC: hdac_hdmi: remove useless initializations (Jaroslav Kysela) [1917388]
+- ASoC: da7219-aad: remove useless initialization (Jaroslav Kysela) [1917388]
+- ASoC: cx2070x: remove duplicate else branch (Jaroslav Kysela) [1917388]
+- ASoC: cx2070x: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: adau1977: remove useless return (Jaroslav Kysela) [1917388]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 177 (Jaroslav Kysela) [1917388]
+- ASoC: ad1836: remove useless return (Jaroslav Kysela) [1917388]
+- ASoC: ab8500-codec: remove useless structure (Jaroslav Kysela) [1917388]
+- ASoC: rt711: add snd_soc_component remove callback (Jaroslav Kysela) [1917388]
+- ASoC: rt5659: Update MCLK rate in set_sysclk() (Jaroslav Kysela) [1917388]
+- ASoC: rt5640: Rename 'Mono DAC Playback Volume' to 'DAC2 Playback Volume' (Jaroslav Kysela) [1917388]
+- ASoC: rt1015p: add acpi device id for rt1015p (Jaroslav Kysela) [1917388]
+- ASoC: wm_hubs: align function prototype (Jaroslav Kysela) [1917388]
+- ASoC: wm_adsp: simplify return value (Jaroslav Kysela) [1917388]
+- ASoC: wm8996: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: wm8994: align function prototype (Jaroslav Kysela) [1917388]
+- ASoC: wm8978: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: wm8958-dsp2: rename local 'control' arrays (Jaroslav Kysela) [1917388]
+- ASoC: arizona: fix function argument (Jaroslav Kysela) [1917388]
+- ASoC: wm2200: remove unused structure (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: add delay time of workqueue to control next IRQ event (Jaroslav Kysela) [1917388]
+- ASoC: rt715-sdca: Remove unused including <linux/version.h> (Jaroslav Kysela) [1917388]
+- ASoC: rt715-sdca: Fix return value check in rt715_sdca_sdw_probe() (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Set clock source for both ways of stream (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Provide finer control on playback path (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Disable regulators if probe fails (Jaroslav Kysela) [1917388]
+- ASoC: cs42l42: Remove power if the driver is being removed (Jaroslav Kysela) [1917388]
+- ASoC: rt711-sdca: Add RT711 SDCA vendor-specific driver (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: The ALC3270 variant does not have a headset-mic pin (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: Move rt5645_platform_data to sound/soc/codecs/rt5645.c (Jaroslav Kysela) [1917388]
+- ASoC: codecs/jz4770: Remove superfluous error message (Jaroslav Kysela) [1917388]
+- ASoC: rt715-sdca: Add RT715 sdca vendor-specific driver (Jaroslav Kysela) [1917388]
+- ASoC: wm8962: Relax bit clock divider searching (Jaroslav Kysela) [1917388]
+- ASoC: rt1316: Fix return value check in rt1316_sdw_probe() (Jaroslav Kysela) [1917388]
+- ASoC: sgtl5000: Fix identation of .driver elements (Jaroslav Kysela) [1917388]
+- ASoC: codec: Omit superfluous error message in jz4760_codec_probe() (Jaroslav Kysela) [1917388]
+- ASoC: sigmadsp-regmap: fix kernel-doc warning (Jaroslav Kysela) [1917388]
+- ASoC: rt5631: fix kernel-doc warning (Jaroslav Kysela) [1917388]
+- ASoC: jz4760: fix set but not used warning (Jaroslav Kysela) [1917388]
+- ASoC: cs4270: fix kernel-doc (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: remove useless initialization (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: remove useless assignments (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5677: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: rt5677: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5670: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5668: remove useless assignments (Jaroslav Kysela) [1917388]
+- ASoC: rt5668: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5665: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5663: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5660: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5659: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5651: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: rt5651: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: use logical OR (Jaroslav Kysela) [1917388]
+- ASoC: rt5640: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt1308: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt1305: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt1016: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt1011: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: rt1011: remove redundant test (Jaroslav Kysela) [1917388]
+- ASoC: rt1011: use logical OR (Jaroslav Kysela) [1917388]
+- ASoC: wm8524: Do not print probe defer error (Jaroslav Kysela) [1917388]
+- ASoC: codecs: nau8825: fix kernel-doc (Jaroslav Kysela) [1917388]
+- ASoC: rt1316: Add RT1316 SDCA vendor-specific driver (Jaroslav Kysela) [1917388]
+- ASoc: rt5631: Constify static struct coeff_clk_div (Jaroslav Kysela) [1917388]
+- ASoC: rt*: Constify static struct acpi_device_id (Jaroslav Kysela) [1917388]
+- ASoC: rt*: Constify static struct snd_soc_dai_ops (Jaroslav Kysela) [1917388]
+- ASoC: rt*: Constify static struct sdw_slave_ops (Jaroslav Kysela) [1917388]
+- ASoC: wcd934x: remove useless return (Jaroslav Kysela) [1917388]
+- ASoC: wcd9335: clarify return value (Jaroslav Kysela) [1917388]
+- ASoC: wcd-clsh-v2: align function prototypes (Jaroslav Kysela) [1917388]
+- ASoC: codecs: wcd934x: add a sanity check in set channel map (Jaroslav Kysela) [1917388]
+- ASoC: es8316: Simplify adc_pga_gain_tlv table (Jaroslav Kysela) [1917388]
+- ASoC: sgtl5000: set DAP_AVC_CTRL register to correct default value on probe (Jaroslav Kysela) [1917388]
+- ASoC: rt5651: Fix dac- and adc- vol-tlv values being off by a factor of 10 (Jaroslav Kysela) [1917388]
+- ASoC: rt5640: Fix dac- and adc- vol-tlv values being off by a factor of 10 (Jaroslav Kysela) [1917388]
+- ASoC: rt5670: Add emulated 'DAC1 Playback Switch' control (Jaroslav Kysela) [1917388]
+- ASoC: rt5670: Remove ADC vol-ctrl mute bits poking from Sto1 ADC mixer settings (Jaroslav Kysela) [1917388]
+- ASoC: rt5670: Remove 'HP Playback Switch' control (Jaroslav Kysela) [1917388]
+- ASoC: rt5670: Remove 'OUT Channel Switch' control (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: fix i2c communication error (Jaroslav Kysela) [1917388]
+- ASoC: codec: Add driver for JZ4760 internal codec (Jaroslav Kysela) [1917388]
+- ASoC: codec/ingenic: Depend on MACH_INGENIC (Jaroslav Kysela) [1917388]
+- ASoC: codec: hdmi-codec: Support IEC958 encoded PCM format (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: Fix panic in rt5682_jack_detect_handler happening during system shutdown (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: do nothing in rt5682_suspend/resume in sdw mode (Jaroslav Kysela) [1917388]
+- ASoC: rt5682-sdw: cancel_work_sync() in .remove and .suspend (Jaroslav Kysela) [1917388]
+- ASoC: rt711-sdw: use cancel_work_sync() for .remove (Jaroslav Kysela) [1917388]
+- ASoC: rt700-sdw: use cancel_work_sync() in .remove as well as .suspend (Jaroslav Kysela) [1917388]
+- ASoC: mt6359: reduce log verbosity for optional DT properties (Jaroslav Kysela) [1917388]
+- ASoC: codecs: add missing max_register in regmap config (Jaroslav Kysela) [1917388]
+- ASoC: cpcap: fix microphone timeslot mask (Jaroslav Kysela) [1917388]
+- ASoC: rt5659: Add Kconfig prompt (Jaroslav Kysela) [1917388]
+- ASoC: max98373: Fixes a typo in max98373_feedback_get (Jaroslav Kysela) [1917388]
+- ASoC: ak4458: correct reset polarity (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: remove connection with LDO2 in DAPM graph (Jaroslav Kysela) [1917388]
+- ASoC: ml26124: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: lm49453: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: inno_rk3036: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: cx2072x: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: alc5632: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: ab8500: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: lochnagar-sc: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: mt6660: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: mc13783: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: sgtl5000: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: ssm2602: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: zl38060: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: jz4740: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: ak*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: tscs*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: max*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: es*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: da*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: nau*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: rt*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: tlv*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: wm*: sync parameter naming (rate/sample_bits) (Jaroslav Kysela) [1917388]
+- ASoC: remove sirf prima/atlas drivers (Jaroslav Kysela) [1917388]
+- ASoC: codecs: soundwire: increase resume timeout (Jaroslav Kysela) [1917388]
+- ASoC: es8316: Fix possible NULL pointer deref in es8316_disable_jack_detect() (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: enable fast discharge for headset unplugging (Jaroslav Kysela) [1917388]
+- ASoC: rt5682: fix getting the wrong device id when the suspend_stress_test (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: Enable internal microphone and JD on ECS EF20 (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: add inv_hp_det flag (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: Add ACPI-defined GPIO for ECS EF20 series (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: Introduce mapping for ACPI-defined GPIO (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: re-calibrate again when resuming (Jaroslav Kysela) [1917388]
+- ASoC: rt5645: Remove the redundant delay time (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: remove unneeded variables in rt1015_priv (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: refactor retry loop and rt1015_priv allocation (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: return error if any when setting bypass_boost (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: save boost_mode only if valid (Jaroslav Kysela) [1917388]
+- ASoC: rt1015: sort header inclusions (Jaroslav Kysela) [1917388]
+- ASoC: Intel: common: Fix some typos (Jaroslav Kysela) [1917388]
+- ASoC: soc.h: remove for_each_rtd_dais_rollback() (Jaroslav Kysela) [1917388]
+- ASoC: soc.h: return error if multi platform at snd_soc_fixup_dai_links_platform_name() (Jaroslav Kysela) [1917388]
+- ASoC: soc.h: fixup return timing for snd_soc_fixup_dai_links_platform_name() (Jaroslav Kysela) [1917388]
+- ASoC: soc.h: add asoc_link_to_cpu/codec/platform() macro (Jaroslav Kysela) [1917388]
+- ASoC: add soc-jack.h (Jaroslav Kysela) [1917388]
+- ASoC: soc-dai.h: Align the word of comment for SND_SOC_DAIFMT_CBC_CFC (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: fix always-false condition (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: fix signed/unsigned issue (Jaroslav Kysela) [1917388]
+- ASoC: soc-acpi: remove useless initialization (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: ignore dummy-DAI at soc_pcm_params_symmetry() (Jaroslav Kysela) [1917388]
+- ASoC: soc-utils: add snd_soc_component_is_dummy() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate DAI name if soc_pcm_params_symmetry() failed (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: don't use "name" on __soc_pcm_params_symmetry() macro (Jaroslav Kysela) [1917388]
+- ASoC: core: Don't set platform name when of_node is set (Jaroslav Kysela) [1917388]
+- ASoC: soc-compress: lock pcm_mutex to resolve lockdep error (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: use device_unregister() if rtd allocation failed (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: add comment for rtd freeing (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: Add snd_soc_pcm_component_ack (Jaroslav Kysela) [1917388]
+- ASoC: don't indicate error message for snd_soc_[pcm_]component_xxx() (Jaroslav Kysela) [1917388]
+- ASoC: don't indicate error message for snd_soc_[pcm_]dai_xxx() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: don't indicate error message for dpcm_be_dai_hw_free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: don't indicate error message for soc_pcm_hw_free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at dpcm_fe/be_dai_prepare() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at dpcm_fe/be_dai_hw_params() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at dpcm_fe/be_dai_startup() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at dpcm_run_update_startup/shutdown() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at dpcm_apply_symmetry() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at dpcm_be_dai_trigger() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at dpcm_path_get() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at soc_pcm_prepare() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at soc_pcm_hw_params() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: indicate error message at soc_pcm_open() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: share DPCM BE DAI stop operation (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: remove unneeded !rtd->dai_link check (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: fixup dpcm_be_dai_startup() user count (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_hw_sanity_check() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_pcm_update_symmetry() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: direct copy at snd_soc_set_runtime_hwparams() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_cpu/codec_dai_name() macro (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: check DAI activity under soc_pcm_apply_symmetry() (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: fix DMI handling (Jaroslav Kysela) [1917388]
+- ASoC: soc-dai: fix kernel-doc (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add error log (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: remove shadowing variable (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: remove redundant assignment (Jaroslav Kysela) [1917388]
+- ASoC: soc-ops: remove useless assignment (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: unpack dpcm_set_fe_runtime() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add dpcm_runtime_setup() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add dpcm_runtime_setup_fe() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: unpack dpcm_init_runtime_hw() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: remove strange format storing (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: Prevent warning if no DMI table is present (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: fix hw param limits calculation for multi-DAI (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: fix hwparams min/max init for dpcm (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_pcm_hw_update_format() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_pcm_hw_update_chan() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_pcm_hw_update_rate() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: change error message to debug message (Jaroslav Kysela) [1917388]
+- ASoC: dapm: use component prefix when checking widget names (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: fixup snd_pcm_limit_hw_rates() timing (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: use snd_pcm_hardware at dpcm_runtime_merge_xxx() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_create_pcm() and simplify soc_new_pcm() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_get_playback_capture() and simplify soc_new_pcm() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: tidyup pcm setting (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: fix undefined reference to __ffssi2 (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_read/write_field() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: cleanup soc_pcm_params_symmetry() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: cleanup soc_pcm_apply_symmetry() (Jaroslav Kysela) [1917388]
+- ASoC: soc-dai.h: remove symmetric_rates/samplebits (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_pcm_set_dai_params() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add dpcm_set_be_update_state() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: move dpcm_set_fe_update_state() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: Fix an uninitialized error code (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: return correct -ERRNO in failure path (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: disconnect BEs if the FE is not ready (Jaroslav Kysela) [1917388]
+- ASoC: dapm: remove widget from dirty list on free (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: care trigger rollback (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: remove dpcm_do_trigger() (Jaroslav Kysela) [1917388]
+- ASoC: pcm: send DAPM_STREAM_STOP event in dpcm_fe_dai_shutdown (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: tidyup jack.h (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: add soc_dapm_suspend_resume() (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: add soc_playback_digital_mute() (Jaroslav Kysela) [1917388]
+- ASoC: soc-compress: add soc_compr_clean() and call it from soc_compr_open/free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add mark for snd_soc_link_compr_startup/shutdown() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add mark for snd_soc_component_compr_open/free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-dai: add mark for snd_soc_dai_compr_startup/shutdown() (Jaroslav Kysela) [1917388]
+- ASoC: soc-compress: move soc_compr_free() next to soc_compr_open() (Jaroslav Kysela) [1917388]
+- ASoC: pcm: call snd_soc_dapm_stream_stop() in soc_pcm_hw_clean (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_get_metadata() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_set_metadata() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_copy() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_pointer() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_ack() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_get_codec_caps() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_get_caps() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_get_params() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_set_params() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_trigger() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add snd_soc_component_compr_open() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: Get all BEs along DAPM path (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: Fix component name_prefix parsing (Jaroslav Kysela) [1917388]
+- ASoC: soc-compress: assume SNDRV_PCM_STREAM_xxx and SND_COMPRESS_xxx are same (Jaroslav Kysela) [1917388]
+- ASoC: soc-compress: tidyup STREAM vs COMPRESS (Jaroslav Kysela) [1917388]
+- ASoC: soc-topology: clarify expression (Jaroslav Kysela) [1917388]
+- ASoC: sync parameter naming : rate / sample_bits (Jaroslav Kysela) [1917388]
+- ASoC: topology: Check if ops is set before dereference (Jaroslav Kysela) [1917388]
+- ASoC: topology: Ensure that needed parameters are set (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: add soc_pcm_hw_clean() and call it from soc_pcm_hw_params/free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-dai: add mark for snd_soc_dai_hw_params/free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-component: add mark for snd_soc_pcm_component_hw_params/free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-link: add mark for snd_soc_link_hw_params/free() (Jaroslav Kysela) [1917388]
+- ASoC: soc-pcm: move soc_pcm_hw_free() next to soc_pcm_hw_params() (Jaroslav Kysela) [1917388]
+- ASoC: dapm: use semicolons rather than commas to separate statements (Jaroslav Kysela) [1917388]
+- ASoC: dmaengine: Document support for TX only or RX only streams (Jaroslav Kysela) [1917388]
+- ASoC: soc-core: use devm_snd_soc_register_card() (Jaroslav Kysela) [1917388]
+- ALSA: usb: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix control 'access overflow' errors from chmap (Jaroslav Kysela) [1917388]
+- ALSA: line6: Fix racy initialization of LINE6 MIDI (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Disable sample read check if firmware doesn't give back (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: scarlett2: snd_scarlett_gen2_controls_create() can be static (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: scarlett2: Improve driver startup messages (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: scarlett2: Fix device hang with ehci-pci (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: fix control-request direction (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix potential out-of-bounce access in MIDI EP parser (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Validate MS endpoint descriptors (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add dB range mapping for Sennheiser Communications Headset PC 8 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Remove redundant assignment to len (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix implicit sync clearance at stopping stream (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Generic application of implicit fb to Roland/BOSS devices (Jaroslav Kysela) [1917388]
+- Revert "ALSA: usb-audio: Add support for many Roland devices..." (Jaroslav Kysela) [1917388]
+- ALSA: usb: midi: don't return -ENOMEM when usb_urb_ep_type_check fails (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Re-apply implicit feedback mode to Pioneer devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: DJM-750: ensure format is set (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add support for many Roland devices' implicit feedback quirks (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Apply implicit feedback mode for BOSS devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Explicitly set up the clock selector (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add MIDI quirk for Vox ToneLab EX (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Skip probe of UA-101 devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Drop implicit fb quirk entries dubbed for capture (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add implicit feeback support for the BOSS GT-1 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add error checks for usb_driver_claim_interface() calls (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Apply sample rate quirk to Logitech Connect (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Check connector value on resume (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Carve out connector value checking into a helper (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix unintentional sign extension issue (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Apply the control quirk to Plantronics headsets (Jaroslav Kysela) [1917388]
+- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix "cannot get freq eq" errors on Dell AE515 sound bar (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: fix Pioneer DJM-850 control label info (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Configure Pioneer DJM-850 samplerate (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Declare Pioneer DJM-850 mixer controls (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add Pioneer DJM-850 to quirks-table (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix Pioneer DJM devices URB_CONTROL request direction to set samplerate (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair Virtuoso SE (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: generate midi streaming substream names from jack names (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: use usb headers rather than define structs locally (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Allow modifying parameters with succeeding hw_params calls (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Drop bogus dB range in too low level (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Don't abort even if the clock rate differs (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add implicit fb quirk for BOSS GP-10 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add quirk for RC-505 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Don't avoid stopping the stream at disconnection (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: More strict state change in EP (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Handle invalid running state at releasing EP (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: add mixer quirks for Pioneer DJM-900NXS2 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add DJM750 to Pioneer mixer quirk (Jaroslav Kysela) [1917388]
+- ALSA: Convert strlcpy to strscpy when return value is unused (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix PCM buffer allocation in non-vmalloc mode (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Correct document for snd_usb_endpoint_free_all() (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add DJM-450 to the quirks table (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add DJM450 to Pioneer format quirk (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: workaround for iface reset issue (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix "RANGE setting not yet supported" errors (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Skip the clock selector inquiry for single connections (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix hw constraints dependencies (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add support for Pioneer DJM-750 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Avoid implicit feedback on Pioneer devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Set sample rate for all sharing EPs on UAC1 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix UAC1 rate setup for secondary endpoints (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Convert the last strlcpy() usage (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Convert remaining strlcpy() to strscpy() (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Always apply the hw constraints for implicit fb sync (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix implicit feedback sync setup for Pioneer devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Annotate the endpoint index in audioformat (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Avoid unnecessary interface re-setup (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Choose audioformat of a counter-part substream (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix the missing endpoints creations for quirks (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add quirk for BOSS AD-10 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix UBSAN warnings for MIDI jacks (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add alias entry for ASUS PRIME TRX40 PRO-S (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add VID to support native DSD reproduction on FiiO devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix potential out-of-bounds shift (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add implicit fb support for Steinberg UR22 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add support for Pioneer DJ DDJ-RR controller (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: US16x08: fix value count for level meters (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix MOTU M-Series quirks (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix quirks for other BOSS devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add implicit_fb module option (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add generic implicit fb parsing (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Factor out the implicit feedback quirk code (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Quirk for BOSS GT-001 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Show sync endpoint information in proc outputs (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Use unsigned char for iface and altsettings fields (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Replace slave/master terms (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Simplify rate_min/max and rates set up (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Unify the code for the next packet size calculation (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Drop unneeded snd_usb_substream fields (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Refactoring endpoint URB deactivation (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Use atomic_t for endpoint use_count (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Constify audioformat pointer references (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix possible stall of implicit fb packet ring-buffer (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Refactor endpoint management (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Fix EP matching for continuous rates (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Always set up the parameters after resume (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add quirk for Pioneer DJ DDJ-SR2 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Set callbacks via snd_usb_endpoint_set_callback() (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Stop both endpoints properly at error (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Simplify snd_usb_init_pitch() arguments (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Simplify snd_usb_init_sample_rate() arguments (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Don't set altsetting before initializing sample rate (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Pass snd_usb_audio object to quirk functions (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add snd_usb_get_host_interface() helper (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Drop keep_interface flag again (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Create endpoint objects at parsing phase (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Avoid doubly initialization for implicit fb (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Drop debug.h (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Simplify hw_params rules (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add hw constraint for implicit fb sync (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Move snd_usb_autoresume() call out of setup_hw_info() (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Track implicit fb sync endpoint in audioformat list (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Improve some debug prints (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Set and clear sync EP link properly (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add snd_usb_get_endpoint() helper (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Check implicit feedback EP generically for UAC2 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Check valid altsetting at parsing rates for UAC2/3 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Don't call usb_set_interface() at trigger callback (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Handle discrete rates properly in hw constraints (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add delay quirk for all Logitech USB devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Use ALC1220-VB-DT mapping for ASUS ROG Strix TRX40 mobo (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add implicit feedback quirk for Qu-16 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add implicit feedback quirk for MODX (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: add usb vendor id as DSD-capable for Khadas devices (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add implicit feedback quirk for Zoom UAC-2 (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Line6 Pod Go interface requires static clock rate quirk (Jaroslav Kysela) [1917388]
+- ALSA: usb-audio: Add mixer support for Pioneer DJ DJM-250MK2 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: reset eapd coeff to default value for alc287 (Jaroslav Kysela) [1917388]
+- ALSA: hda/hdmi: Cancel pending works before suspend (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132: Fix compile warning without PCI (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132: Move unsol callback setups to parser (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132: make some const arrays static, makes object smaller (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Add ZxR surround DAC setup. (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Add 8051 PLL write helper functions. (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Remove now unnecessary DSP setup functions. (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Ensure DSP is properly setup post-firmware download. (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Add 8051 exram helper functions. (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Add stream port remapping function. (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Reset codec upon initialization. (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Change Input Source enum strings. (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132 - Fix AE-5 rear headphone pincfg. (Jaroslav Kysela) [1917388]
+- ALSA: hda: Reinstate runtime_allow() for all hda controllers (Jaroslav Kysela) [1917388]
+- ACPI: Test for ACPI_SUCCESS rather than !ACPI_FAILURE (Jaroslav Kysela) [1917388]
+- ALSA: hda: Flush pending unsolicited events before suspend (Jaroslav Kysela) [1917388]
+- ALSA: hda: Re-add dropped snd_poewr_change_state() calls (Jaroslav Kysela) [1917388]
+- ALSA: hda: Add missing sanity checks in PM prepare/complete callbacks (Jaroslav Kysela) [1917388]
+- ALSA: hda: Separate runtime and system suspend (Jaroslav Kysela) [1917388]
+- ALSA: hda: update the power_state during the direct-complete (Jaroslav Kysela) [1917388]
+- ALSA: hda: Balance runtime/system PM if direct-complete is disabled (Jaroslav Kysela) [1917388]
+- ALSA: hda: Refactor codec PM to use direct-complete optimization (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Set Initial DMIC volume to -26 dB (Jaroslav Kysela) [1917388]
+- ALSA: hda: Fix a regression in Capture Switch mixer read (Jaroslav Kysela) [1917388]
+- ALSA: hda: Add AlderLake-M PCI ID (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook Fury 17 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook Fury 15 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP 855 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Chain in pop reduction fixup for ThinkStation P340 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: the bass speaker can't output sound on Yoga 9i (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Headphone volume is controlled by Front mixer (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Add some CLOVE SSIDs of ALC293 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Add fixup for HP Spectre x360 15-df0xxx (Jaroslav Kysela) [1917388]
+- ALSA: hda: fixup headset for ASUS GU502 laptop (Jaroslav Kysela) [1917388]
+- ALSA: hda: Fix for mute key LED for HP Pavilion 15-CK0xx (Jaroslav Kysela) [1917388]
+- ALSA: hda: generic: change the DAC ctl name for LO+SPK or LO+HP (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Add fixup for HP OMEN laptop (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Fix speaker amp on HP Envy AiO 32 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Fix silent headphone output on ASUS UX430UA (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: ALC285 Thinkpad jack pin quirk is unreachable (Jaroslav Kysela) [1917388]
+- ALSA: hda/conexant: Re-order CX5066 quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Remove redundant entry for ALC861 Haier/Uniwill devices (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC662 quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order remaining ALC269 quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC269 Lenovo quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC269 Sony quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC269 ASUS quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC269 Dell quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC269 Acer quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC269 HP quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC882 Clevo quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC882 Sony quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Re-order ALC882 Acer quirk table entries (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Add quirk for Intel Clevo PCx0Dx (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Use CS8409 filter to fix abnormal sounds on Bullseye (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Set Initial DMIC volume for Bullseye to -26 dB (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix static noise on ALC285 Lenovo laptops (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook 845 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek - Headset Mic issue on HP platform (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: GA503 use same quirks as GA401 (Jaroslav Kysela) [1917388]
+- ALSA: hda/hdmi: fix race in handling acomp ELD notification at resume (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 445 G7 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Add quirk for Lenovo Ideapad S740 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mic boost on Intel NUC 8 (Jaroslav Kysela) [1917388]
+- ALSA: HDA: Add access description in __snd_hda_add_vmaster (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Fix speaker amp setup on Acer Aspire E1 (Jaroslav Kysela) [1917388]
+- ALSA: hda/conexant: Apply quirk for another HP ZBook G5 model (Jaroslav Kysela) [1917388]
+- ALSA: HDA - remove the custom implementation for the audio LED trigger (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP 640 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/hdmi: fix max DP-MST dev_num for Intel TGL+ platforms (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: call alc_update_headset_mode() in hp_automute_hook (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix a determine_headset_type issue for a Dell AIO (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP 850 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP 440 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Make CS8409 driver more generic by using fixups. (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Fix CS42L42 Headset Mic volume control name (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Cleanup patch_cirrus.c code. (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Add error handling into CS8409 I2C functions (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: fix mute/micmute LEDs for HP 840 G8 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: apply pin quirk for XiaomiNotebook Pro (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Apply headset-mic quirks for Xiaomi Redmibook Air (Jaroslav Kysela) [1917388]
+- ALSA: hda: generic: Fix the micmute led init state (Jaroslav Kysela) [1917388]
+- ALSA: hda/ca0132: Add Sound BlasterX AE-5 Plus support (Jaroslav Kysela) [1917388]
+- ALSA: hda: Drop the BATCH workaround for AMD controllers (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Add Headphone and Headset MIC Volume Control (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Add jack detect interrupt support from CS42L42 companion codec. (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Add support for CS8409 HDA bridge and CS42L42 companion codec. (Jaroslav Kysela) [1917388]
+- ALSA: hda/cirrus: Increase AUTO_CFG_MAX_INS from 8 to 18 (Jaroslav Kysela) [1917388]
+- ALSA: hda/conexant: Add quirk for mute LED control on HP ZBook G5 (Jaroslav Kysela) [1917388]
+- ALSA: hda - bind headset buttons to the headphone jack (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Apply dual codec quirks for MSI Godlike X570 board (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Add quirk for Intel NUC 10 (Jaroslav Kysela) [1917388]
+- ALSA: hda/hdmi: let new platforms assign the pcm slot dynamically (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Add quirk for Clevo NH55RZQ (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256 (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Quirk for HP Spectre x360 14 amp setup (Jaroslav Kysela) [1917388]
+- ALSA: hda: Add another CometLake-H PCI ID (Jaroslav Kysela) [1917388]
+- ALSA: hda/hdmi: Drop bogus check at closing a stream (Jaroslav Kysela) [1917388]
+- ALSA: hda: Drop power save deny list entry for Clevo W65_67SB (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: modify EAPD in the ALC886 (Jaroslav Kysela) [1917388]
+- ALSA: hda/via: Apply the workaround generically for Clevo machines (Jaroslav Kysela) [1917388]
+- ALSA: hda/tegra: Remove unnecessary null-check from hda_tegra_runtime_resume() (Jaroslav Kysela) [1917388]
+- ALSA: hda/tegra: Reset hardware (Jaroslav Kysela) [1917388]
+- ALSA: hda/tegra: Use clk_bulk helpers (Jaroslav Kysela) [1917388]
+- ALSA: hda: Assign boolean values to a bool variable (Jaroslav Kysela) [1917388]
+- ALSA: hda: boolean values to a bool variable (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek: Enable headset of ASUS B1400CEPE with ALC256 (Jaroslav Kysela) [1917388]
+- ALSA: pci: Simplify with dma_set_mask_and_coherent() (Jaroslav Kysela) [1917388]
+- ALSA: hda/via: Add minimum mute flag (Jaroslav Kysela) [1917388]
+- ALSA: hda/realtek - Limit int mic boost on Acer Aspire E5-575T (Jaroslav Kysela) [1917388]
+- ALSA: hda: Add AlderLake-P PCI ID and HDMI codec vid (Jaroslav Kysela) [1917388]
+- ALSA: hda/hdmi - enable runtime pm for CI AMD display audio (Jaroslav Kysela) [1917388]
+- ALSA: hda/tegra: fix tegra-hda on tegra30 soc (Jaroslav Kysela) [1917388]
+- ALSA: hda: Revert "ALSA: hda: Allow setting preallocation again for x86" (Jaroslav Kysela) [1917388]
+- ALSA: hda: Fix spelling mistakes (Jaroslav Kysela) [1917388]
+- ALSA: hda: ignore invalid NHLT table (Jaroslav Kysela) [1917388]
+- ALSA: hda: intel-nhlt: verify config type (Jaroslav Kysela) [1917388]
+- ALSA: hda: fix kernel-doc warnings (Jaroslav Kysela) [1917388]
+- ALSA: hda: intel-dsp-config: add Alder Lake support (Jaroslav Kysela) [1917388]
+- ALSA: hda: intel-dsp-config: Add SND_INTEL_BYT_PREFER_SOF Kconfig option (Jaroslav Kysela) [1917388]
+- ALSA: hda: add link_power op to hdac_bus_ops (Jaroslav Kysela) [1917388]
+- ALSA: hda: Constify static attribute_group (Jaroslav Kysela) [1917388]
+- ALSA: hda: Use DIV_ROUND_UP()/roundup() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: hda: intel-dsp-config: ignore dsp_driver parameter for PCI legacy devices (Jaroslav Kysela) [1917388]
+- ALSA: hda: intel-dsp-config: add Broadwell ACPI DSP driver selection (Jaroslav Kysela) [1917388]
+- ALSA: hda: intel-dsp-config: add helper for ACPI DSP driver selection (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Fix missing check of the new non-cached buffer type (Jaroslav Kysela) [1917388]
+- ALSA: pcm: use dma_can_mmap() to check if a device supports dma_mmap_* (Jaroslav Kysela) [1917388]
+- ALSA: timer: Fix master timer notification (Jaroslav Kysela) [1917388]
+- ALSA: control led: fix memory leak in snd_ctl_led_register (Jaroslav Kysela) [1917388]
+- ALSA: control: Fix racy management of user ctl memory size account (Jaroslav Kysela) [1917388]
+- ALSA: control_led - fix the stack usage (control element ops) (Jaroslav Kysela) [1917388]
+- ALSA: control - double free in snd_ctl_led_init() (Jaroslav Kysela) [1917388]
+- ALSA: control: Add memory consumption limit to user controls (Jaroslav Kysela) [1917388]
+- ALSA: control - off by one in store_mode() (Jaroslav Kysela) [1917388]
+- ALSA: control led - improve the set_led_id() parser (Jaroslav Kysela) [1917388]
+- ALSA: control - add the missing prev_lops2 initialization (Jaroslav Kysela) [1917388]
+- ALSA: led control - add sysfs kcontrol LED marking layer (Jaroslav Kysela) [1917388]
+- ALSA: control - add sysfs support to the LED trigger module (Jaroslav Kysela) [1917388]
+- ALSA: control - add generic LED trigger module as the new control layer (Jaroslav Kysela) [1917388]
+- ALSA: control - add layer registration routines (Jaroslav Kysela) [1917388]
+- ALSA: control - introduce snd_ctl_notify_one() helper (Jaroslav Kysela) [1917388]
+- ALSA: core: remove redundant spin_lock pair in snd_card_disconnect (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Fix couple of typos (Jaroslav Kysela) [1917388]
+- ALSA: core: avoid -Wempty-body warnings (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Add debug print on memory allocation failure (Jaroslav Kysela) [1917388]
+- ALSA: core - add missing compress device type to /proc/asound/devices (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Use for_each_pcm_substream() macro (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Don't call sync_stop if it hasn't been stopped (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Assure sync with the pending stop operation at suspend (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Call sync_stop at disconnection (Jaroslav Kysela) [1917388]
+- ASoC: dmaengine_pcm: add peripheral configuration (Jaroslav Kysela) [1917388]
+- ALSA: core: Fix the debugfs removal at snd_card_free() (Jaroslav Kysela) [1917388]
+- ALSA: jack: implement software jack injection via debugfs (Jaroslav Kysela) [1917388]
+- ALSA: pcm: One more dependency for hw constraints (Jaroslav Kysela) [1917388]
+- ALSA: seq: oss: Fix missing error check in snd_seq_oss_synth_make_info() (Jaroslav Kysela) [1917388]
+- ALSA: oss: Use DIV_ROUND_CLOSEST() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: core: Use DIV_ROUND_UP() instead of open-coding it (Jaroslav Kysela) [1917388]
+- ALSA: core: Remove redundant comments (Jaroslav Kysela) [1917388]
+- ALSA: pcm: oss: Fix a few more UBSAN fixes (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Clear the full allocated memory at hw_params (Jaroslav Kysela) [1917388]
+- ALSA: memalloc: Align buffer allocations in page size (Jaroslav Kysela) [1917388]
+- ALSA: pcm: Remove snd_pcm_lib_preallocate_dma_free() (Jaroslav Kysela) [1917388]
+- ALSA: core: memalloc: add page alignment for iram (Jaroslav Kysela) [1917388]
+- ALSA: pcm: oss: Fix potential out-of-bounds shift (Jaroslav Kysela) [1917388]
+- ALSA: rawmidi: Access runtime->avail always in spinlock (Jaroslav Kysela) [1917388]
+- ALSA: seq: Use bool for snd_seq_queue internal flags (Jaroslav Kysela) [1917388]
+- ALSA: compress: allow pause and resume during draining (Jaroslav Kysela) [1917388]
+- ALSA: ctl: fix error path at adding user-defined element set (Jaroslav Kysela) [1917388]
+- ALSA: seq: remove useless function (Jaroslav Kysela) [1917388]
+- ALSA: fix kernel-doc markups (Jaroslav Kysela) [1917388]
+- soundwire: SDCA: add helper macro to access controls (Jaroslav Kysela) [1917388]
+- soundwire: add static port mapping support (Jaroslav Kysela) [1917388]
+- soundwire: add definition for DPn BlockPackingMode (Jaroslav Kysela) [1917388]
+- soundwire: add master quirks for bus clash and parity (Jaroslav Kysela) [1917388]
+- soundwire: intel: don't return error when clock stop failed (Jaroslav Kysela) [1917388]
+- soundwire: intel: Use kzalloc for allocating only one thing (Jaroslav Kysela) [1917388]
+- soundwire: cadence: add status in dev_dbg 'State change' log (Jaroslav Kysela) [1917388]
+- soundwire: cadence: adjust verbosity in response handling (Jaroslav Kysela) [1917388]
+- soundwire: cadence: fix ACK/NAK handling (Jaroslav Kysela) [1917388]
+- soundwire: cadence: reduce timeout on transactions (Jaroslav Kysela) [1917388]
+- soundwire: bus: use consistent tests for return values (Jaroslav Kysela) [1917388]
+- soundwire: qcom: fix handling of qcom,ports-block-pack-mode (Jaroslav Kysela) [1917388]
+- soundwire: intel_init: test link->cdns (Jaroslav Kysela) [1917388]
+- soundwire: qcom: handle return correctly in qcom_swrm_transport_params (Jaroslav Kysela) [1917388]
+- soundwire: qcom: cleanup internal port config indexing (Jaroslav Kysela) [1917388]
+- soundwire: qcom: wait for fifo space to be available before read/write (Jaroslav Kysela) [1917388]
+- soundwire: qcom: add static port map support (Jaroslav Kysela) [1917388]
+- soundwire: qcom: update port map allocation bit mask (Jaroslav Kysela) [1917388]
+- soundwire: stream: fix memory leak in stream config error path (Jaroslav Kysela) [1917388]
+- soundwire: qcom: use signed variable for error return (Jaroslav Kysela) [1917388]
+- soundwire: qcom: wait for enumeration to be complete in probe (Jaroslav Kysela) [1917388]
+- soundwire: qcom: add auto enumeration support (Jaroslav Kysela) [1917388]
+- soundwire: export sdw_compare_devid, sdw_extract_slave_id and sdw_slave_add (Jaroslav Kysela) [1917388]
+- soundwire: qcom: add support to new interrupts (Jaroslav Kysela) [1917388]
+- soundwire: qcom: update register read/write routine (Jaroslav Kysela) [1917388]
+- soundwire: qcom: start the clock during initialization (Jaroslav Kysela) [1917388]
+- soundwire: qcom: set continue execution flag for ignored commands (Jaroslav Kysela) [1917388]
+- soundwire: qcom: add support to missing transport params (Jaroslav Kysela) [1917388]
+- soundwire: cadence: only prepare attached devices on clock stop (Jaroslav Kysela) [1917388]
+- soundwire: generic_allocation: fix confusion between group and packing (Jaroslav Kysela) [1917388]
+- soundwire: bus: Fix device found flag correctly (Jaroslav Kysela) [1917388]
+- soundwire: cadence_master: fix kernel-doc (Jaroslav Kysela) [1917388]
+- soundwire: stream: remove useless bus initializations (Jaroslav Kysela) [1917388]
+- soundwire: stream: remove useless initialization (Jaroslav Kysela) [1917388]
+- soundwire: qcom: check of_property_read status (Jaroslav Kysela) [1917388]
+- soundwire: intel: remove useless readl (Jaroslav Kysela) [1917388]
+- soundwire: generic_bandwidth_allocation: remove useless init (Jaroslav Kysela) [1917388]
+- soundwire: bus: remove useless initialization (Jaroslav Kysela) [1917388]
+- soundwire: bus: uniquify dev_err() for SCP_INT access (Jaroslav Kysela) [1917388]
+- soundwire: bus: demote clock stop prepare log to dev_dbg() (Jaroslav Kysela) [1917388]
+- soundwire: bus: clarify dev_err/dbg device references (Jaroslav Kysela) [1917388]
+- soundwire: bus: fix confusion on device used by pm_runtime (Jaroslav Kysela) [1917388]
+- soundwire: export sdw_write/read_no_pm functions (Jaroslav Kysela) [1917388]
+- soundwire: bus: use no_pm IO routines for all interrupt handling (Jaroslav Kysela) [1917388]
+- soundwire: bus: use sdw_write_no_pm when setting the bus scale registers (Jaroslav Kysela) [1917388]
+- soundwire: bus: use sdw_update_no_pm when initializing a device (Jaroslav Kysela) [1917388]
+- soundwire: return earlier if no slave is attached (Jaroslav Kysela) [1917388]
+- soundwire: bus: add better dev_dbg to track complete() calls (Jaroslav Kysela) [1917388]
+- soundwire: bus: add more details to track failed transfers (Jaroslav Kysela) [1917388]
+- soundwire: use consistent format for Slave devID logs (Jaroslav Kysela) [1917388]
+- soundwire: bus: test read status (Jaroslav Kysela) [1917388]
+- soundwire: bus: use correct driver name in error messages (Jaroslav Kysela) [1917388]
+- soundwire: qcom: add missing \n in dev_err() (Jaroslav Kysela) [1917388]
+- soundwire: stream: add missing \n in dev_err() (Jaroslav Kysela) [1917388]
+- soundwire: cadence: add missing \n in dev_err() (Jaroslav Kysela) [1917388]
+- soundwire: bandwidth_allocation: add missing \n in dev_err() (Jaroslav Kysela) [1917388]
+- soundwire: intel: add missing \n in dev_err() (Jaroslav Kysela) [1917388]
+- soundwire: intel: add master quirks for bus clash and parity (Jaroslav Kysela) [1917388]
+- soundwire: bus: handle master quirks for bus clash and parity (Jaroslav Kysela) [1917388]
+- soundwire: Intel: add DMI quirk for Dell SKU 0A3E (Jaroslav Kysela) [1917388]
+- soundwire: Intel: introduce DMI quirks for HP Spectre x360 Convertible (Jaroslav Kysela) [1917388]
+- soundwire: add override addr ops (Jaroslav Kysela) [1917388]
+- regmap/SoundWire: sdw: add support for SoundWire 1.2 MBQ (Jaroslav Kysela) [1917388]
+- tracing: Fix __print_hex_dump scope (Jaroslav Kysela) [1917388]
+- tracing: Use seq_buf_hex_dump() to dump buffers (Jaroslav Kysela) [1917388]
+- seq_buf: Add printing formatted hex dumps (Jaroslav Kysela) [1917388]
+- powerpc/64: Don't trace code that runs with the soft irq mask unreconciled (Desnes A. Nunes do Rosario) [1921631]
+- powerpc/64: Disable irq restore warning for now (Desnes A. Nunes do Rosario) [1921631]
+- powerpc/64s: make PACA_IRQ_HARD_DIS track MSR[EE] closely (Desnes A. Nunes do Rosario) [1921631]
+
+* Mon Jul 05 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-321.el8]
+- watchdog/hpwdt: New PCI IDs (Joseph Szczypek) [1967765]
+- watchdog: hpwdt: Assign boolean values to a bool variable (Joseph Szczypek) [1967765]
+- scsi: libfc: Avoid invoking response handler twice if ep is already completed (Chris Leech) [1867301]
+- Bluetooth: SMP: Fail if remote and local public keys are identical (Gopal Tiwari) [1965083]
+- rq-qos: fix missed wake-ups in rq_qos_throttle try two (Ming Lei) [1972111]
+- mm: memcg/slab: disable cache merging for KMALLOC_NORMAL caches (Waiman Long) [1955561]
+- mm: memcg/slab: create a new set of kmalloc-cg-<n> caches (Waiman Long) [1955561]
+- mm: memcg/slab: properly set up gfp flags for objcg pointer array (Waiman Long) [1955561]
+- mm/vmalloc.c:__vmalloc_area_node(): avoid 32-bit overflow (Rafael Aquini) [1970194]
+- mm: remove the filename in the top of file comment in vmalloc.c (Rafael Aquini) [1970194]
+- mm: cleanup the gfp_mask handling in __vmalloc_area_node (Rafael Aquini) [1970194]
+- mm/vmalloc.c: remove unnecessary highmem_mask from parameter of gfpflags_allow_blocking() (Rafael Aquini) [1970194]
+- mm/swap: fix pte_same_as_swp() not removing uffd-wp bit when compare (Chris von Recklinghausen) [1945442]
+- userfaultfd: hugetlbfs: fix new flag usage in error path (Chris von Recklinghausen) [1945442]
+- mm/hugetlb: fix cow where page writtable in child (Chris von Recklinghausen) [1945442]
+- ovl: fix reference counting in ovl_mmap error path (Chris von Recklinghausen) [1945442]
+- hugetlb: do early cow when page pinned on src mm (Chris von Recklinghausen) [1945442]
+- mm: introduce page_needs_cow_for_dma() for deciding whether cow (Chris von Recklinghausen) [1945442]
+- hugetlb: convert page_huge_active() HPageMigratable flag (Chris von Recklinghausen) [1945442]
+- hugetlb: use page.private for hugetlb specific page flags (Chris von Recklinghausen) [1945442]
+- x86/mm: Remove duplicate definition of _PAGE_PAT_LARGE (Chris von Recklinghausen) [1945442]
+- mm: hugetlbfs: fix cannot migrate the fallocated HugeTLB page (Chris von Recklinghausen) [1945442]
+- mm: hugetlb: fix a race between isolating and freeing page (Chris von Recklinghausen) [1945442]
+- mm: hugetlb: remove VM_BUG_ON_PAGE from page_huge_active (Chris von Recklinghausen) [1945442]
+- mm: introduce vma_set_file function v5 (Chris von Recklinghausen) [1945442]
+- mm: mmap: fix fput in error path v2 (Chris von Recklinghausen) [1945442]
+- mm/gup: prevent gup_fast from racing with COW during fork (Chris von Recklinghausen) [1945442]
+- mm/gup: reorganize internal_get_user_pages_fast() (Chris von Recklinghausen) [1945442]
+- mm: remove src/dst mm parameter in copy_page_range() (Chris von Recklinghausen) [1945442]
+- mm: avoid early COW write protect games during fork() (Chris von Recklinghausen) [1945442]
+- mm/thp: Split huge pmds/puds if they're pinned when fork() (Chris von Recklinghausen) [1945442]
+- mm: Do early cow for pinned pages during fork() for ptes (Chris von Recklinghausen) [1945442]
+- mm/fork: Pass new vma pointer into copy_page_range() (Chris von Recklinghausen) [1945442]
+- mm: move the copy_one_pte() pte_present check into the caller (Chris von Recklinghausen) [1945442]
+- mm: split out the non-present case from copy_one_pte() (Chris von Recklinghausen) [1945442]
+- mm/gup: Remove enfornced COW mechanism (Chris von Recklinghausen) [1945442]
+- mm/hmm.c: delete duplicated word (Chris von Recklinghausen) [1945442]
+- mm/hmm: provide the page mapping order in hmm_range_fault() (Chris von Recklinghausen) [1945442]
+- mmap locking API: add mmap_assert_locked() and mmap_assert_write_locked() (Chris von Recklinghausen) [1945442]
+- mm/gup: introduce pin_user_pages_locked() (Chris von Recklinghausen) [1945442]
+- mm/gup: introduce pin_user_pages_unlocked (Chris von Recklinghausen) [1945442]
+- mm: remove the prot argument from vm_map_ram (Chris von Recklinghausen) [1945442]
+- mm: remove unmap_vmap_area (Chris von Recklinghausen) [1945442]
+- mm: don't return the number of pages from map_kernel_range{,_noflush} (Chris von Recklinghausen) [1945442]
+- x86: fix vmap arguments in map_irq_stack (Chris von Recklinghausen) [1945442]
+- mm/memory: remove unnecessary pte_devmap case in copy_one_pte() (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove the customizable pfn format from hmm_range_fault (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove HMM_PFN_SPECIAL (Chris von Recklinghausen) [1945442]
+- mm/hmm: make hmm_range_fault return 0 or -1 (Chris von Recklinghausen) [1945442]
+- mm/hugetlb: fix build failure with HUGETLB_PAGE but not HUGEBTLBFS (Chris von Recklinghausen) [1945442]
+- mm/hmm: return error for non-vma snapshots (Chris von Recklinghausen) [1945442]
+- mm/hmm: do not set pfns when returning an error code (Chris von Recklinghausen) [1945442]
+- mm/hmm: do not unconditionally set pfns when returning EBUSY (Chris von Recklinghausen) [1945442]
+- mm/hmm: use device_private_entry_to_pfn() (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove HMM_FAULT_SNAPSHOT (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove unused code and tidy comments (Chris von Recklinghausen) [1945442]
+- mm/hmm: return the fault type from hmm_pte_need_fault() (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove pgmap checking for devmap pages (Chris von Recklinghausen) [1945442]
+- mm/hmm: check the device private page owner in hmm_range_fault() (Chris von Recklinghausen) [1945442]
+- mm: simplify device private page handling in hmm_range_fault (Chris von Recklinghausen) [1945442]
+- mm: merge hmm_vma_do_fault into into hmm_vma_walk_hole_ (Chris von Recklinghausen) [1945442]
+- mm/hmm: don't handle the non-fault case in hmm_vma_walk_hole_() (Chris von Recklinghausen) [1945442]
+- mm/hmm: simplify hmm_vma_walk_hugetlb_entry() (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove the unused HMM_FAULT_ALLOW_RETRY flag (Chris von Recklinghausen) [1945442]
+- mm/hmm: don't provide a stub for hmm_range_fault() (Chris von Recklinghausen) [1945442]
+- mm/hmm: do not check pmd_protnone twice in hmm_vma_handle_pmd() (Chris von Recklinghausen) [1945442]
+- mm/hmm: return -EFAULT when setting HMM_PFN_ERROR on requested valid pages (Chris von Recklinghausen) [1945442]
+- mm/hmm: reorganize how !pte_present is handled in hmm_vma_handle_pte() (Chris von Recklinghausen) [1945442]
+- mm/hmm: add missing call to hmm_range_need_fault() before returning EFAULT (Chris von Recklinghausen) [1945442]
+- mm/hmm: add missing pfns set to hmm_vma_walk_pmd() (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove hmm_range_dma_map and hmm_range_dma_unmap (Chris von Recklinghausen) [1945442]
+- mm/hmm: make full use of walk_page_range() (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove hmm_mirror and related (Chris von Recklinghausen) [1945442]
+- mm/hmm: define the pre-processor related parts of hmm.h even if disabled (Chris von Recklinghausen) [1945442]
+- mm/hmm: allow hmm_range to be used with a mmu_interval_notifier or hmm_mirror (Chris von Recklinghausen) [1945442]
+- mm/hmm: hmm_range_fault() infinite loop (Chris von Recklinghausen) [1945442]
+- mm/hmm: hmm_range_fault() NULL pointer bug (Chris von Recklinghausen) [1945442]
+- hmm: use mmu_notifier_get/put for 'struct hmm' (Chris von Recklinghausen) [1945442]
+- mm/hmm: cleanup the hmm_vma_handle_pmd stub (Chris von Recklinghausen) [1945442]
+- mm/hmm: only define hmm_vma_walk_pud if needed (Chris von Recklinghausen) [1945442]
+- mm/hmm: cleanup the hmm_vma_walk_hugetlb_entry stub (Chris von Recklinghausen) [1945442]
+- mm/hmm: don't abuse pte_index() in hmm_vma_handle_pmd (Chris von Recklinghausen) [1945442]
+- mm/hmm: comment on VM_FAULT_RETRY semantics in handle_mm_fault (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove the legacy hmm_pfn_* APIs (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove the mask variable in hmm_vma_walk_hugetlb_entry (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove the page_shift member from struct hmm_range (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove superfluous arguments from hmm_range_register (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove the unused vma argument to hmm_range_dma_unmap (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove hmm_range vma (Chris von Recklinghausen) [1945442]
+- mm/hmm: remove hugetlbfs check in hmm_vma_walk_pmd (Chris von Recklinghausen) [1945442]
+- mm/hmm: merge hmm_range_snapshot into hmm_range_fault (Chris von Recklinghausen) [1945442]
+- mm/hmm: replace the block argument to hmm_range_fault with a flags value (Chris von Recklinghausen) [1945442]
+- mm/large system hash: use vmalloc for size > MAX_ORDER when !hashdist (Chris von Recklinghausen) [1945442]
+- mm/hmm: update HMM documentation (Chris von Recklinghausen) [1945442]
+- mm: remove the HMM config option (Chris von Recklinghausen) [1945442]
+- hugetlbfs: on restore reserve error path retain subpool reservation (Chris von Recklinghausen) [1945442]
+- mm/vmalloc.c: fix potential memory leak (Chris von Recklinghausen) [1945442]
+- mm/vmalloc: separate put pages and flush VM flags (Chris von Recklinghausen) [1945442]
+- zsmalloc: switch from alloc_vm_area to get_vm_area (Chris von Recklinghausen) [1945442]
+- mm: allow a NULL fn callback in apply_to_page_range (Chris von Recklinghausen) [1945442]
+- mm: add a vmap_pfn function (Chris von Recklinghausen) [1945442]
+- mm: add a VM_MAP_PUT_PAGES flag for vmap (Chris von Recklinghausen) [1945442]
+- mm: update the documentation for vfree (Chris von Recklinghausen) [1945442]
+- mm, slub: use kmem_cache_debug_flags() in deactivate_slab() (Chris von Recklinghausen) [1945442]
+- mm, slab, slub: clear the slab_cache field when freeing page (Chris von Recklinghausen) [1945442]
+- mm: slab: provide krealloc_array() (Chris von Recklinghausen) [1945442]
+- mm: slab: clarify krealloc()'s behavior with __GFP_ZERO (Chris von Recklinghausen) [1945442]
+- mm/slab_common.c: use list_for_each_entry in dump_unreclaimable_slab() (Chris von Recklinghausen) [1945442]
+- mm/slub: make add_full() condition more explicit (Chris von Recklinghausen) [1945442]
+- mm/slub: fix missing ALLOC_SLOWPATH stat when bulk alloc (Chris von Recklinghausen) [1945442]
+- mm/slub.c: branch optimization in free slowpath (Chris von Recklinghausen) [1945442]
+- include/linux/slab.h: fix a typo error in comment (Chris von Recklinghausen) [1945442]
+- mm/vmalloc.c: fix a warning while make xmldocs (Chris von Recklinghausen) [1945442]
+- mm/userfaultfd: fix memory corruption due to writeprotect (Chris von Recklinghausen) [1945442]
+- mm/migrate: fixup setting UFFD_WP flag (Chris von Recklinghausen) [1945442]
+- mm/rmap: fixup copying of soft dirty and uffd ptes (Chris von Recklinghausen) [1945442]
+- mm/userfaultfd: disable userfaultfd-wp on x86_32 (Chris von Recklinghausen) [1945442]
+- userfaultfd: selftests: fix SIGSEGV if huge mmap fails (Chris von Recklinghausen) [1945442]
+- mm: do not rely on mm == current->mm in __get_user_pages_locked (Chris von Recklinghausen) [1945442]
+- mm: Introduce mm_struct.has_pinned (Chris von Recklinghausen) [1945442]
+- mm/gup: might_lock_read(mmap_sem) in get_user_pages_fast() (Chris von Recklinghausen) [1945442]
+- mm: enforce that vmap can't map pages executable (Chris von Recklinghausen) [1945442]
+- mm: remove map_vm_range (Chris von Recklinghausen) [1945442]
+- mm: rename vmap_page_range to map_kernel_range (Chris von Recklinghausen) [1945442]
+- mm: remove vmap_page_range_noflush and vunmap_page_range (Chris von Recklinghausen) [1945442]
+- mm: only allow page table mappings for built-in zsmalloc (Chris von Recklinghausen) [1945442]
+- mm: unexport unmap_kernel_range_noflush (Chris von Recklinghausen) [1945442]
+- userfaultfd: selftests: add write-protect test (Chris von Recklinghausen) [1945442]
+- userfaultfd: selftests: refactor statistics (Chris von Recklinghausen) [1945442]
+- userfaultfd: selftest: fix compiler warning (Chris von Recklinghausen) [1945442]
+- hugetlbfs: call VM_BUG_ON_PAGE earlier in free_huge_page() (Chris von Recklinghausen) [1945442]
+- userfaultfd: selftest: recycle lock threads first (Chris von Recklinghausen) [1945442]
+- userfaultfd: selftest: generalize read and poll (Chris von Recklinghausen) [1945442]
+- userfaultfd: selftest: cleanup help messages (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: declare _UFFDIO_WRITEPROTECT conditionally (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: UFFDIO_REGISTER_MODE_WP documentation update (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: don't wake up when doing write protect (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: enabled write protection in userfaultfd API (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: add the writeprotect API to userfaultfd ioctl (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: support write protection for userfault vma range (Chris von Recklinghausen) [1945442]
+- khugepaged: skip collapse if uffd-wp detected (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: support swap and page migration (Chris von Recklinghausen) [1945442]
+- mm/mprotect.c: fix compilation warning because of unused 'mm' variable (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: add pmd_swp_*uffd_wp() helpers (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: drop _PAGE_UFFD_WP properly when fork (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: apply _PAGE_UFFD_WP bit (Chris von Recklinghausen) [1945442]
+- mm: merge parameters for change_protection() (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: add UFFDIO_COPY_MODE_WP (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: userfaultfd_pte/huge_pmd_wp() helpers (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: add WP pagetable tracking to x86 (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: hook userfault handler to write protection fault (Chris von Recklinghausen) [1945442]
+- userfaultfd: wp: add helper for writeprotect check (Chris von Recklinghausen) [1945442]
+- userfaultfd: untag user pointers (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Fix typo in the Kconfig help text (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Clean up <asm/memtype.h> externs (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Rename <asm/pat.h> => <asm/memtype.h> (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Standardize on memtype_*() prefix for APIs (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Move the memtype related files to arch/x86/mm/pat/ (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Clean up PAT initialization flags (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Harmonize 'struct memtype *' local variable and function parameter use (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Simplify the free_memtype() control flow (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Create fixed width output in /sys/kernel/debug/x86/pat_memtype_list, similar to the E820 debug printouts (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Disambiguate PAT-disabled boot messages (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Update the comments in pat.c and pat_interval.c and refresh the code a bit (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Fix off-by-one bugs in interval tree search (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Rename pat_rbtree.c to pat_interval.c (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Drop the rbt_ prefix from external memtype calls (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Do not pass 'rb_root' down the memtype tree helper functions (Chris von Recklinghausen) [1945442]
+- x86/mm/pat: Convert the PAT tree to a generic interval tree (Chris von Recklinghausen) [1945442]
+- x86/mm: Tabulate the page table encoding definitions (Chris von Recklinghausen) [1945442]
+- x86/mm: Remove the unused set_memory_wt() function (Chris von Recklinghausen) [1945442]
+- x86/mm: Remove set_pages_x() and set_pages_nx() (Chris von Recklinghausen) [1945442]
+- x86/mm: Remove the unused set_memory_array_*() functions (Chris von Recklinghausen) [1945442]
+- x86/mm: Unexport set_memory_x() and set_memory_nx() (Chris von Recklinghausen) [1945442]
+- x86/Kconfig: Fix spelling mistake "effectivness" -> "effectiveness" (Chris von Recklinghausen) [1945442]
+- x86/mm: Remove unused variable 'old_pte' (Chris von Recklinghausen) [1945442]
+- Revert "x86/mm/pat: Rename pat_rbtree.c to pat_interval.c" (Chris von Recklinghausen) [1945442]
+- Revert "x86/mm/pat: Move the memtype related files to arch/x86/mm/pat/" (Chris von Recklinghausen) [1945442]
+- ipv6: Allow the l3mdev to be a loopback (Antoine Tenart) [1973229]
+- vrf: do not push non-ND strict packets with a source LLA through packet taps again (Antoine Tenart) [1965600]
+- vrf: packets with lladdr src needs dst at input with orig_iif when needs strict (Antoine Tenart) [1965600]
+- ipv6: Fix handling of LLA with VRF and sockets bound to VRF (Antoine Tenart) [1965600]
+- ipv6: allow ping to link-local address in VRF (Antoine Tenart) [1965600]
+- vrf: mark skb for multicast or link-local as enslaved to VRF (Antoine Tenart) [1965600]
+- net: allow traceroute with a specified interface in a vrf (Antoine Tenart) [1965600]
+- virtchnl: Enable RSS configure for AVF (Ivan Vecera) [1966954]
+- virtchnl: Advertise virtchnl UDP segmentation offload capability (Ivan Vecera) [1966954]
+- virtchnl: Allow ignoring opcodes on specific VF (Ivan Vecera) [1966954]
+- virtchnl: Fix layout of RSS structures (Ivan Vecera) [1966954]
+- virtchnl: Enable FDIR Configure for AVF (Ivan Vecera) [1966954]
+- virtchnl: Add missing explicit padding to structures (Ivan Vecera) [1966954]
+- virtchnl: use u8 type for a field in the virtchnl_filter struct (Ivan Vecera) [1966954]
+- tools headers uapi: Sync tools/include/uapi/linux/perf_event.h (Michael Petlan) [1944685]
+- tools headers uapi: Update tools's copy of linux/perf_event.h (Michael Petlan) [1944685]
+- bpf: Add size arg to build_id_parse function (Michael Petlan) [1944685]
+- bpf: Move stack_map_get_build_id into lib (Michael Petlan) [1944685]
+- perf map: Fix error return code in maps__clone() (Michael Petlan) [1944685]
+- perf ftrace: Fix access to pid in array when setting a pid filter (Michael Petlan) [1944685]
+- perf auxtrace: Fix potential NULL pointer dereference (Michael Petlan) [1944685]
+- perf data: Fix error return code in perf_data__create_dir() (Michael Petlan) [1944685]
+- perf arm-spe: Avoid potential buffer overrun (Michael Petlan) [1944685]
+- perf report: Fix wrong LBR block sorting (Michael Petlan) [1944685]
+- perf inject: Fix repipe usage (Michael Petlan) [1944685]
+- perf test: Change to use bash for daemon test (Michael Petlan) [1944685]
+- perf record: Fix memory leak in vDSO found using ASAN (Michael Petlan) [1944685]
+- perf test: Remove now useless failing sub test "BPF relocation checker" (Michael Petlan) [1944685]
+- perf daemon: Return from kill functions (Michael Petlan) [1944685]
+- perf daemon: Force waipid for all session on SIGCHLD delivery (Michael Petlan) [1944685]
+- perf top: Fix BPF support related crash with perf_event_paranoid=3 + kptr_restrict (Michael Petlan) [1944685]
+- perf pmu: Validate raw event with sysfs exported format bits (Michael Petlan) [1944685]
+- perf synthetic events: Avoid write of uninitialized memory when generating PERF_RECORD_MMAP* records (Michael Petlan) [1944685]
+- perf synthetic-events: Fix uninitialized 'kernel_thread' variable (Michael Petlan) [1944685]
+- perf auxtrace: Fix auxtrace queue conflict (Michael Petlan) [1944685]
+- perf cs-etm: Fix bitmap for option (Michael Petlan) [1944685]
+- perf map: Tighten snprintf() string precision to pass gcc check on some 32-bit arches (Michael Petlan) [1944685]
+- perf report: Fix -F for branch & mem modes (Michael Petlan) [1944685]
+- perf tests x86: Move insn.h include to make sure it finds stddef.h (Michael Petlan) [1944685]
+- perf test: Support the ins_lat check in the X86 specific test (Michael Petlan) [1944685]
+- perf test: Fix sample-parsing failure on non-x86 platforms (Michael Petlan) [1944685]
+- perf archive: Fix filtering of empty build-ids (Michael Petlan) [1944685]
+- perf daemon: Fix compile error with Asan (Michael Petlan) [1944685]
+- perf stat: Fix use-after-free when -r option is used (Michael Petlan) [1944685]
+- libperf: Add perf_evlist__reset_id_hash() (Michael Petlan) [1944685]
+- perf stat: Fix wrong skipping for per-die aggregation (Michael Petlan) [1944685]
+- tools headers UAPI: Update tools' copy of linux/coresight-pmu.h (Michael Petlan) [1944685]
+- perf test: Fix cpu and thread map leaks in perf_time_to_tsc test (Michael Petlan) [1944685]
+- perf test: Fix cpu map leaks in cpu_map_print test (Michael Petlan) [1944685]
+- perf test: Fix a memory leak in thread_map_remove test (Michael Petlan) [1944685]
+- perf test: Fix a thread map leak in thread_map_synthesize test (Michael Petlan) [1944685]
+- perf test: Fix cpu and thread map leaks in switch_tracking test (Michael Petlan) [1944685]
+- perf test: Fix cpu and thread map leaks in keep_tracking test (Michael Petlan) [1944685]
+- perf test: Fix cpu and thread map leaks in code_reading test (Michael Petlan) [1944685]
+- perf test: Fix cpu and thread map leaks in sw_clock_freq test (Michael Petlan) [1944685]
+- perf test: Fix cpu and thread map leaks in task_exit test (Michael Petlan) [1944685]
+- perf test: Fix a memory leak in attr test (Michael Petlan) [1944685]
+- perf test: Fix cpu and thread map leaks in basic mmap test (Michael Petlan) [1944685]
+- perf tools: Fix event's PMU name parsing (Michael Petlan) [1944685]
+- perf daemon: Fix running test for non root user (Michael Petlan) [1944685]
+- perf daemon: Fix control fifo permissions (Michael Petlan) [1944685]
+- perf build: Fix ccache usage in $(CC) when generating arch errno table (Michael Petlan) [1944685]
+- perf tools: Fix documentation of verbose options (Michael Petlan) [1944685]
+- perf traceevent: Ensure read cmdlines are null terminated. (Michael Petlan) [1944685]
+- perf diff: Don't crash on freeing errno-session on the error path (Michael Petlan) [1944685]
+- perf tools: Clean 'generated' directory used for creating the syscall table on x86 (Michael Petlan) [1944685]
+- perf build: Move feature cleanup under tools/build (Michael Petlan) [1944685]
+- perf tools: Cast (struct timeval).tv_sec when printing (Michael Petlan) [1944685]
+- perf buildid-cache: Don't skip 16-byte build-ids (Michael Petlan) [1944685]
+- perf buildid-cache: Add test for 16-byte build-id (Michael Petlan) [1944685]
+- perf symbol: Remove redundant libbfd checks (Michael Petlan) [1944685]
+- perf test: Output the sub testing result in cs-etm (Michael Petlan) [1944685]
+- perf test: Suppress logs in cs-etm testing (Michael Petlan) [1944685]
+- perf tools: Fix arm64 build error with gcc-11 (Michael Petlan) [1944685]
+- perf intel-pt: Add documentation for tracing virtual machines (Michael Petlan) [1944685]
+- perf intel-pt: Split VM-Entry and VM-Exit branches (Michael Petlan) [1944685]
+- perf intel-pt: Adjust sample flags for VM-Exit (Michael Petlan) [1944685]
+- perf intel-pt: Allow for a guest kernel address filter (Michael Petlan) [1944685]
+- perf intel-pt: Support decoding of guest kernel (Michael Petlan) [1944685]
+- perf machine: Factor out machine__idle_thread() (Michael Petlan) [1944685]
+- perf machine: Factor out machines__find_guest() (Michael Petlan) [1944685]
+- perf intel-pt: Amend decoder to track the NR flag (Michael Petlan) [1944685]
+- perf intel-pt: Retain the last PIP packet payload as is (Michael Petlan) [1944685]
+- perf intel_pt: Add vmlaunch and vmresume as branches (Michael Petlan) [1944685]
+- perf script: Add branch types for VM-Entry and VM-Exit (Michael Petlan) [1944685]
+- perf auxtrace: Automatically group aux-output events (Michael Petlan) [1944685]
+- perf test: Fix unaligned access in sample parsing test (Michael Petlan) [1944685]
+- perf tools: Support arch specific PERF_SAMPLE_WEIGHT_STRUCT processing (Michael Petlan) [1944685]
+- perf intel-pt: Add PSB events (Michael Petlan) [1944685]
+- perf intel-pt: Fix IPC with CYC threshold (Michael Petlan) [1944685]
+- perf intel-pt: Fix premature IPC (Michael Petlan) [1944685]
+- perf intel-pt: Fix missing CYC processing in PSB (Michael Petlan) [1944685]
+- perf record: Fix continue profiling after draining the buffer (Michael Petlan) [1944685]
+- perf tools: Simplify the calculation of variables (Michael Petlan) [1944685]
+- perf vendor events arm64: Add JSON metrics for imx8mp DDR Perf (Michael Petlan) [1944685]
+- perf vendor events arm64: Add JSON metrics for imx8mq DDR Perf (Michael Petlan) [1944685]
+- perf vendor events arm64: Add JSON metrics for imx8mn DDR Perf (Michael Petlan) [1944685]
+- perf vendor events arm64: Fix indentation of brackets in imx8mm metrics (Michael Petlan) [1944685]
+- perf annotate: Do not jump after 'k' is pressed (Michael Petlan) [1944685]
+- perf metricgroup: Remove unneeded semicolon (Michael Petlan) [1944685]
+- perf tools: Add OCaml demangling (Michael Petlan) [1944685]
+- tools api fs: Cache cgroupfs mount point (Michael Petlan) [1944685]
+- tools api fs: Diet cgroupfs_find_mountpoint() (Michael Petlan) [1944685]
+- tools api fs: Prefer cgroup v1 path in cgroupfs_find_mountpoint() (Michael Petlan) [1944685]
+- perf symbols: Resolve symbols against debug file first (Michael Petlan) [1944685]
+- perf probe: Fix kretprobe issue caused by GCC bug (Michael Petlan) [1944685]
+- perf symbols: Fix return value when loading PE DSO (Michael Petlan) [1944685]
+- perf symbols: Make dso__load_bfd_symbols() load PE files from debug cache only (Michael Petlan) [1944685]
+- perf symbols: Use (long) for iterator for bfd symbols (Michael Petlan) [1944685]
+- perf annotate: Fix jump parsing for C++ code. (Michael Petlan) [1944685]
+- perf arm-spe: Set sample's data source field (Michael Petlan) [1944685]
+- perf arm-spe: Synthesize memory event (Michael Petlan) [1944685]
+- perf arm-spe: Fill address info for samples (Michael Petlan) [1944685]
+- perf arm-spe: Store operation type in packet (Michael Petlan) [1944685]
+- perf arm-spe: Store memory address in packet (Michael Petlan) [1944685]
+- perf arm-spe: Enable sample type PERF_SAMPLE_DATA_SRC (Michael Petlan) [1944685]
+- perf env: Remove unneeded internal/cpumap inclusions (Michael Petlan) [1944685]
+- perf tools: Remove unused xyarray.c as it was moved to tools/lib/perf (Michael Petlan) [1944685]
+- perf tools: Replace lkml.org links with lore (Michael Petlan) [1944685]
+- perf tests: Add daemon 'lock' test (Michael Petlan) [1944685]
+- perf tests: Add daemon 'ping' command test (Michael Petlan) [1944685]
+- perf tests: Add daemon 'signal' command test (Michael Petlan) [1944685]
+- perf tests: Add daemon 'stop' command test (Michael Petlan) [1944685]
+- perf tests: Add daemon reconfig test (Michael Petlan) [1944685]
+- perf tests: Add daemon 'list' command test (Michael Petlan) [1944685]
+- perf daemon: Add examples to man page (Michael Petlan) [1944685]
+- perf daemon: Add up time for daemon/session list (Michael Petlan) [1944685]
+- perf daemon: Use control to stop session (Michael Petlan) [1944685]
+- perf daemon: Add 'ping' command (Michael Petlan) [1944685]
+- perf daemon: Set control fifo for session (Michael Petlan) [1944685]
+- perf daemon: Allow only one daemon over base directory (Michael Petlan) [1944685]
+- perf daemon: Add 'stop' command (Michael Petlan) [1944685]
+- perf daemon: Add 'signal' command (Michael Petlan) [1944685]
+- perf daemon: Add 'list' command (Michael Petlan) [1944685]
+- perf daemon: Add signalfd support (Michael Petlan) [1944685]
+- perf daemon: Add background support (Michael Petlan) [1944685]
+- perf daemon: Add config file change check (Michael Petlan) [1944685]
+- perf daemon: Add config file support (Michael Petlan) [1944685]
+- perf daemon: Add client socket support (Michael Petlan) [1944685]
+- perf daemon: Add server socket support (Michael Petlan) [1944685]
+- perf daemon: Add base option (Michael Petlan) [1944685]
+- perf daemon: Add config option (Michael Petlan) [1944685]
+- perf daemon: Add daemon command (Michael Petlan) [1944685]
+- perf script: Simplify bool conversion (Michael Petlan) [1944685]
+- perf arm64/s390: Fix printf conversion specifier for IP addresses (Michael Petlan) [1944685]
+- perf script: Support filtering by hex address (Michael Petlan) [1944685]
+- perf intlist: Change 'struct intlist' int member to 'unsigned long' (Michael Petlan) [1944685]
+- perf tools: Update topdown documentation for Sapphire Rapids (Michael Petlan) [1944685]
+- perf stat: Support L2 Topdown events (Michael Petlan) [1944685]
+- perf test: Support PERF_SAMPLE_WEIGHT_STRUCT (Michael Petlan) [1944685]
+- perf report: Support instruction latency (Michael Petlan) [1944685]
+- perf tools: Support PERF_SAMPLE_WEIGHT_STRUCT (Michael Petlan) [1944685]
+- perf c2c: Support data block and addr block (Michael Petlan) [1944685]
+- perf tools: Support data block and addr block (Michael Petlan) [1944685]
+- perf tools: Support the auxiliary event (Michael Petlan) [1944685]
+- perf probe: Add protection to avoid endless loop (Michael Petlan) [1944685]
+- perf trace-event-info: Rename for_each_event. (Michael Petlan) [1944685]
+- perf inject jit: Add namespaces support (Michael Petlan) [1944685]
+- perf namespaces: Add 'in_pidns' to nsinfo struct (Michael Petlan) [1944685]
+- perf tools: Use scandir() to iterate threads when synthesizing PERF_RECORD_ events (Michael Petlan) [1944685]
+- perf tools: Skip PERF_RECORD_MMAP event synthesis for kernel threads (Michael Petlan) [1944685]
+- perf tools: Use /proc/<PID>/task/<TID>/status for PERF_RECORD_ event synthesis (Michael Petlan) [1944685]
+- perf vendor events arm64: Reference common and uarch events for A76 (Michael Petlan) [1944685]
+- perf vendor events arm64: Reference common and uarch events for Ampere eMag (Michael Petlan) [1944685]
+- perf vendor events arm64: Add common and uarch event JSON (Michael Petlan) [1944685]
+- perf vendor events arm64: Fix Ampere eMag event typo (Michael Petlan) [1944685]
+- perf script: Support DSO filter like in other perf tools (Michael Petlan) [1944685]
+- perf tools: Fix DSO filtering when not finding a map for a sampled address (Michael Petlan) [1944685]
+- perf stat: Add Topdown metrics events as default events (Michael Petlan) [1944685]
+- perf test: Add parse-metric memory bandwidth testcase (Michael Petlan) [1944685]
+- perf tools: Add 'ping' control command (Michael Petlan) [1944685]
+- perf tools: Add 'stop' control command (Michael Petlan) [1944685]
+- perf config: Make perf_config_global() global (Michael Petlan) [1944685]
+- perf config: Make perf_config_system() global (Michael Petlan) [1944685]
+- perf config: Add perf_home_perfconfig function (Michael Petlan) [1944685]
+- perf debug: Add debug_set_display_time function (Michael Petlan) [1944685]
+- perf config: Add config set interface (Michael Petlan) [1944685]
+- perf config: Make perf_config_from_file() static (Michael Petlan) [1944685]
+- perf test: Add test case for PERF_SAMPLE_CODE_PAGE_SIZE (Michael Petlan) [1944685]
+- perf report: Add support for PERF_SAMPLE_CODE_PAGE_SIZE (Michael Petlan) [1944685]
+- perf script: Add support for PERF_SAMPLE_CODE_PAGE_SIZE (Michael Petlan) [1944685]
+- perf record: Add support for PERF_SAMPLE_CODE_PAGE_SIZE (Michael Petlan) [1944685]
+- perf mem: Support data page size (Michael Petlan) [1944685]
+- perf mem: Clean up output format (Michael Petlan) [1944685]
+- perf cs-etm: Update ARM's CoreSight hardware tracing OpenCSD library to v1.0.0 (Michael Petlan) [1944685]
+- perf c2c: Add local variables for output metrics (Michael Petlan) [1944685]
+- perf c2c: Refactor node display (Michael Petlan) [1944685]
+- perf c2c: Fix argument type for percent() (Michael Petlan) [1944685]
+- perf c2c: Refactor display filter (Michael Petlan) [1944685]
+- perf c2c: Refactor hist entry validation (Michael Petlan) [1944685]
+- perf c2c: Rename for shared cache line stats (Michael Petlan) [1944685]
+- perf stat: Enable counting events for BPF programs (Michael Petlan) [1944685]
+- perf build: Support build BPF skeletons with perf (Michael Petlan) [1944685]
+- perf record: Tweak "Lowering..." warning in record_opts__config_freq (Michael Petlan) [1944685]
+- perf buildid-list: Add support for mmap2's buildid events (Michael Petlan) [1944685]
+- perf buildid-cache: Add --debuginfod option to specify a server to fetch debug files (Michael Petlan) [1944685]
+- perf tools: Add support to display build ids when available in PERF_RECORD_MMAP2 events (Michael Petlan) [1944685]
+- perf record: Add --buildid-mmap option to enable PERF_RECORD_MMAP2's build id (Michael Petlan) [1944685]
+- perf tools: Allow synthesizing the build id for kernel/modules/tasks in PERF_RECORD_MMAP2 (Michael Petlan) [1944685]
+- perf tools: Allow using PERF_RECORD_MMAP2 to synthesize the kernel modules maps (Michael Petlan) [1944685]
+- perf tools: Allow using PERF_RECORD_MMAP2 to synthesize the kernel map (Michael Petlan) [1944685]
+- perf tools: Store build id when available in PERF_RECORD_MMAP2 metadata events (Michael Petlan) [1944685]
+- perf tools: Do not swap mmap2 fields in case it contains build id (Michael Petlan) [1944685]
+- perf arm64: Add argument support for SDT (Michael Petlan) [1944685]
+- perf probe: Fixup Arm64 SDT arguments (Michael Petlan) [1944685]
+- perf/x86/kvm: Fix Broadwell Xeon stepping in isolation_ucodes[] (Michael Petlan) [1944685]
+- perf/x86/intel: Fix unchecked MSR access error caused by VLBR_EVENT (Michael Petlan) [1944685]
+- perf/x86/intel: Fix a crash caused by zero PEBS status (Michael Petlan) [1944685]
+- perf/x86/intel: Set PERF_ATTACH_SCHED_CB for large PEBS and LBR (Michael Petlan) [1944685]
+- perf/core: Flush PMU internal buffers for per-CPU events (Michael Petlan) [1944685]
+- perf/x86/rapl: Fix psys-energy event on Intel SPR platform (Michael Petlan) [1944685]
+- perf/x86/rapl: Only check lower 32bits for RAPL energy counters (Michael Petlan) [1944685]
+- perf/x86/rapl: Add msr mask support (Michael Petlan) [1944685]
+- perf/x86/kvm: Add Cascade Lake Xeon steppings to isolation_ucodes[] (Michael Petlan) [1944685]
+- perf/x86/intel: Support CPUID 10.ECX to disable fixed counters (Michael Petlan) [1944685]
+- perf/x86/intel: Add perf core PMU support for Sapphire Rapids (Michael Petlan) [1944685]
+- perf/x86/intel: Filter unsupported Topdown metrics event (Michael Petlan) [1944685]
+- perf/x86/intel: Factor out intel_update_topdown_event() (Michael Petlan) [1944685]
+- perf/core: Add PERF_SAMPLE_WEIGHT_STRUCT (Michael Petlan) [1944685]
+- perf/intel: Remove Perfmon-v4 counter_freezing support (Michael Petlan) [1944685]
+- perf: Add build id data in mmap2 event (Michael Petlan) [1944685]
+- bpf: Remove atomics tests from test_progs (Jiri Olsa) [1874007]
+- libbpf: Fixes incorrect rx_ring_setup_done (Jiri Olsa) [1874007]
+- error-injection: Consolidate override function definition (Jiri Olsa) [1874007]
+- selftests/bpf: Fix endianness issues in atomic tests (Jiri Olsa) [1874007]
+- bpf: Fix a spelling typo in bpf_atomic_alu_string disasm (Jiri Olsa) [1874007]
+- bpf, x86: Fix BPF_FETCH atomic and/or/xor with r0 as src (Jiri Olsa) [1874007]
+- bpf: Explicitly zero-extend R0 after 32-bit cmpxchg (Jiri Olsa) [1874007]
+- bpf: Account for BPF_FETCH in insn_has_def32() (Jiri Olsa) [1874007]
+- bpf: Fix subreg optimization for BPF_FETCH (Jiri Olsa) [1874007]
+- bpf: Fix the irq and nmi check in bpf_sk_storage for tracing usage (Jiri Olsa) [1874007]
+- selftests/bpf: Fix a compiler warning in local_storage test (Jiri Olsa) [1874007]
+- bpf: Change 'BPF_ADD' to 'BPF_AND' in print_bpf_insn() (Jiri Olsa) [1874007]
+- selftests/bpf: Don't exit on failed bpf_testmod unload (Jiri Olsa) [1874007]
+- bpf: Avoid old-style declaration warnings (Jiri Olsa) [1874007]
+- bpf: Dont allow vmlinux BTF to be used in map_create and prog_load. (Jiri Olsa) [1874007]
+- tools: Factor Clang, LLC and LLVM utils definitions (Jiri Olsa) [1874007]
+- tools/runqslower: Build bpftool using HOSTCC (Jiri Olsa) [1874007]
+- tools/runqslower: Enable out-of-tree build (Jiri Olsa) [1874007]
+- tools/runqslower: Use Makefile.include (Jiri Olsa) [1874007]
+- bpf: Expose bpf_sk_storage_* to iterator programs (Jiri Olsa) [1874007]
+- tools/resolve_btfids: Warn when having multiple IDs for single type (Jiri Olsa) [1874007]
+- tools/resolve_btfids: Fix some error messages (Jiri Olsa) [1874007]
+- samples/bpf: Add BPF_ATOMIC_OP macro for BPF samples (Jiri Olsa) [1874007]
+- samples/bpf: Fix possible hang in xdpsock with multiple threads (Jiri Olsa) [1874007]
+- bpf: samples: Do not touch RLIMIT_MEMLOCK (Jiri Olsa) [1874007]
+- samples/bpf: Use recvfrom() in xdpsock/l2fwd (Jiri Olsa) [1874007]
+- samples/bpf: Use recvfrom() in xdpsock/rxdrop (Jiri Olsa) [1874007]
+- samples: bpf: Remove bpf_load loader completely (Jiri Olsa) [1874007]
+- samples: bpf: Fix lwt_len_hist reusing previous BPF map (Jiri Olsa) [1874007]
+- samples: bpf: Refactor test_overhead program with libbpf (Jiri Olsa) [1874007]
+- samples: bpf: Refactor task_fd_query program with libbpf (Jiri Olsa) [1874007]
+- samples: bpf: Refactor test_cgrp2_sock2 program with libbpf (Jiri Olsa) [1874007]
+- samples: bpf: Refactor hbm program with libbpf (Jiri Olsa) [1874007]
+- samples/bpf: Increment Tx stats at sending (Jiri Olsa) [1874007]
+- samples/bpf: Remove unused test_ipip.sh (Jiri Olsa) [1874007]
+- samples/bpf: Remove duplicate include in hbm (Jiri Olsa) [1874007]
+- bpftool: Fix compilation failure for net.o with older glibc (Jiri Olsa) [1874007]
+- tools/bpftool: Auto-detect split BTFs in common cases (Jiri Olsa) [1874007]
+- tools/bpftool: Emit name <anon> for anonymous BTFs (Jiri Olsa) [1874007]
+- bpftool: Add {i,d}tlb_misses support for bpftool profile (Jiri Olsa) [1874007]
+- tools/bpf: Always run the *-clean recipes (Jiri Olsa) [1874007]
+- tools/bpf: Add bootstrap/ to .gitignore (Jiri Olsa) [1874007]
+- tools/bpftool: Fix cross-build (Jiri Olsa) [1874007]
+- tools/bpftool: Force clean of out-of-tree build (Jiri Olsa) [1874007]
+- tools/bpftool: Add support for in-kernel and named BTF in `btf show` (Jiri Olsa) [1874007]
+- bpftool: Add support for task local storage (Jiri Olsa) [1874007]
+- tools/bpftool: Add bpftool support for split BTF (Jiri Olsa) [1874007]
+- bpf: Unbreak BPF_PROG_TYPE_KPROBE when kprobe is called via do_int3 (Jiri Olsa) [1874007]
+- bpf: Fix bpf_put_raw_tracepoint()'s use of __module_address() (Jiri Olsa) [1874007]
+- bpf: Expose bpf_d_path helper to sleepable LSM hooks (Jiri Olsa) [1874007]
+- bpf: Allow using bpf_sk_storage in FENTRY/FEXIT/RAW_TP (Jiri Olsa) [1874007]
+- selftests/bpf: Add remaining ASSERT_xxx() variants (Jiri Olsa) [1874007]
+- libbpf: Fix potential NULL pointer dereference (Jiri Olsa) [1874007]
+- libbpf: Only create rx and tx XDP rings when necessary (Jiri Olsa) [1874007]
+- libbpf: Ensure umem pointer is non-NULL before dereferencing (Jiri Olsa) [1874007]
+- libbpf: Restore umem state after socket create failure (Jiri Olsa) [1874007]
+- selftests/bpf: Fix core_reloc test runner (Jiri Olsa) [1874007]
+- bpf: Fix umd memory leak in copy_process() (Jiri Olsa) [1874007]
+- libbpf: Fix error path in bpf_object__elf_init() (Jiri Olsa) [1874007]
+- bpf: Change inode_storage's lookup_elem return value from NULL to -EBADF (Jiri Olsa) [1874007]
+- bpf: Prohibit alu ops for pointer types not defining ptr_limit (Jiri Olsa) [1874007]
+- selftests/bpf: Use the last page in test_snprintf_btf on s390 (Jiri Olsa) [1874007]
+- bpf: Be less specific about socket cookies guarantees (Jiri Olsa) [1874007]
+- bpf: Fix 32 bit src register truncation on div/mod (Jiri Olsa) [1874007]
+- bpf: Fix verifier jmp32 pruning decision logic (Jiri Olsa) [1874007]
+- bpf: Fix verifier jsgt branch analysis on max bound (Jiri Olsa) [1874007]
+- bpf: Check for integer overflow when using roundup_pow_of_two() (Jiri Olsa) [1874007]
+- bpf, preload: Fix build when $(O) points to a relative path (Jiri Olsa) [1874007]
+- bpf: Drop disabled LSM hooks from the sleepable set (Jiri Olsa) [1874007]
+- bpf, cgroup: Fix problematic bounds check (Jiri Olsa) [1874007]
+- bpf, cgroup: Fix optlen WARN_ON_ONCE toctou (Jiri Olsa) [1874007]
+- bpf: Fix signed_{sub,add32}_overflows type handling (Jiri Olsa) [1874007]
+- bpf: Fix helper bpf_map_peek_elem_proto pointing to wrong callback (Jiri Olsa) [1874007]
+- selftests/bpf: Add verifier test for PTR_TO_MEM spill (Jiri Olsa) [1874007]
+- bpf: Support PTR_TO_MEM{,_OR_NULL} register spilling (Jiri Olsa) [1874007]
+- libbpf: Allow loading empty BTFs (Jiri Olsa) [1874007]
+- bpf: Allow empty module BTFs (Jiri Olsa) [1874007]
+- bpf: Don't leak memory in bpf getsockopt when optlen == 0 (Jiri Olsa) [1874007]
+- bpf: Update local storage test to check handling of null ptrs (Jiri Olsa) [1874007]
+- bpf: Fix typo in bpf_inode_storage.c (Jiri Olsa) [1874007]
+- bpf: Add size arg to build_id_parse function (Jiri Olsa) [1874007]
+- bpf: Move stack_map_get_build_id into lib (Jiri Olsa) [1874007]
+- bpf: Add tests for new BPF atomic operations (Jiri Olsa) [1874007]
+- bpf: Add bitwise atomic instructions (Jiri Olsa) [1874007]
+- bpf: Pull out a macro for interpreting atomic ALU operations (Jiri Olsa) [1874007]
+- bpf: Add instructions for atomic_[cmp]xchg (Jiri Olsa) [1874007]
+- bpf: Add BPF_FETCH field / create atomic_fetch_add instruction (Jiri Olsa) [1874007]
+- bpf: Move BPF_STX reserved field check into BPF_STX verifier code (Jiri Olsa) [1874007]
+- bpf: Rename BPF_XADD and prepare to encode other atomics in .imm (Jiri Olsa) [1874007]
+- bpf: x86: Factor out a lookup table for some ALU opcodes (Jiri Olsa) [1874007]
+- bpf: x86: Factor out emission of REX byte (Jiri Olsa) [1874007]
+- bpf: x86: Factor out emission of ModR/M for *(reg + off) (Jiri Olsa) [1874007]
+- bpf, libbpf: Avoid unused function warning on bpf_tail_call_static (Jiri Olsa) [1874007]
+- selftests/bpf: Install btf_dump test cases (Jiri Olsa) [1874007]
+- selftests/bpf: Fix installation of urandom_read (Jiri Olsa) [1874007]
+- selftests/bpf: Move generated test files to $(TEST_GEN_FILES) (Jiri Olsa) [1874007]
+- selftests/bpf: Fix out-of-tree build (Jiri Olsa) [1874007]
+- selftests/bpf: Enable cross-building (Jiri Olsa) [1874007]
+- selftests/bpf: Test kernel module ksym externs (Jiri Olsa) [1874007]
+- libbpf: Support kernel module ksym externs (Jiri Olsa) [1874007]
+- bpf: Support BPF ksym variables in kernel modules (Jiri Olsa) [1874007]
+- selftests/bpf: Sync RCU before unloading bpf_testmod (Jiri Olsa) [1874007]
+- bpf: Fix a verifier message for alloc size helper arg (Jiri Olsa) [1874007]
+- bpf: Clarify return value of probe str helpers (Jiri Olsa) [1874007]
+- libbpf: Clarify kernel type use with USER variants of CORE reading macros (Jiri Olsa) [1874007]
+- selftests/bpf: Remove duplicate include in test_lsm (Jiri Olsa) [1874007]
+- bpf: Remove unnecessary <argp.h> include from preload/iterators (Jiri Olsa) [1874007]
+- selftests/bpf: Add tests for user- and non-CO-RE BPF_CORE_READ() variants (Jiri Olsa) [1874007]
+- libbpf: Add non-CO-RE variants of BPF_CORE_READ() macro family (Jiri Olsa) [1874007]
+- selftests/bpf: Fix a compile error for BPF_F_BPRM_SECUREEXEC (Jiri Olsa) [1874007]
+- bpf: Use thread_group_leader() (Jiri Olsa) [1874007]
+- bpf: Save correct stopping point in file seq iteration (Jiri Olsa) [1874007]
+- selftests/bpf: Work-around EBUSY errors from hashmap update/delete (Jiri Olsa) [1874007]
+- bpf: Add schedule point in htab_init_buckets() (Jiri Olsa) [1874007]
+- bpf: Remove unused including <linux/version.h> (Jiri Olsa) [1874007]
+- selftests/bpf: Fix spelling mistake "tranmission" -> "transmission" (Jiri Olsa) [1874007]
+- selftests/bpf: Clarify build error if no vmlinux (Jiri Olsa) [1874007]
+- tweewide: Fix most Shebang lines (Jiri Olsa) [1874007]
+- bpf: In bpf_task_fd_query use fget_task (Jiri Olsa) [1874007]
+- selftests/bpf: Add a test for ptr_to_map_value on stack for helper access (Jiri Olsa) [1874007]
+- bpf: Permits pointers on stack for helper calls (Jiri Olsa) [1874007]
+- libbpf: Expose libbpf ring_buffer epoll_fd (Jiri Olsa) [1874007]
+- selftests/bpf: Add set_attach_target() API selftest for module target (Jiri Olsa) [1874007]
+- libbpf: Support modules in bpf_program__set_attach_target() API (Jiri Olsa) [1874007]
+- selftests/bpf: Silence ima_setup.sh when not running in verbose mode. (Jiri Olsa) [1874007]
+- selftests/bpf: Drop the need for LLVM's llc (Jiri Olsa) [1874007]
+- selftests/bpf: fix bpf_testmod.ko recompilation logic (Jiri Olsa) [1874007]
+- selftests/bpf: Make selftest compilation work on clang 11 (Jiri Olsa) [1874007]
+- selftests/bpf: Xsk selftests - adding xdpxceiver to .gitignore (Jiri Olsa) [1874007]
+- selftests/bpf: Drop tcp-{client,server}.py from Makefile (Jiri Olsa) [1874007]
+- selftests/bpf: Xsk selftests - Bi-directional Sockets - SKB, DRV (Jiri Olsa) [1874007]
+- selftests/bpf: Xsk selftests - Socket Teardown - SKB, DRV (Jiri Olsa) [1874007]
+- selftests/bpf: Xsk selftests - DRV POLL, NOPOLL (Jiri Olsa) [1874007]
+- selftests/bpf: Xsk selftests - SKB POLL, NOPOLL (Jiri Olsa) [1874007]
+- selftests/bpf: Xsk selftests framework (Jiri Olsa) [1874007]
+- bpf: Return -ENOTSUPP when attaching to non-kernel BTF (Jiri Olsa) [1874007]
+- bpf: Propagate __user annotations properly (Jiri Olsa) [1874007]
+- bpf: Avoid overflows involving hash elem_size (Jiri Olsa) [1874007]
+- selftests/bpf: Test bpf_sk_storage_get in tcp iterators (Jiri Olsa) [1874007]
+- selftests/bpf: Add an iterator selftest for bpf_sk_storage_get (Jiri Olsa) [1874007]
+- selftests/bpf: Add an iterator selftest for bpf_sk_storage_delete (Jiri Olsa) [1874007]
+- bpf: Add a bpf_sock_from_file helper (Jiri Olsa) [1874007]
+- selftests/bpf: Avoid errno clobbering (Jiri Olsa) [1874007]
+- selftests/bpf: Print reason when a tester could not run a program (Jiri Olsa) [1874007]
+- selftests/bpf: Fix invalid use of strncat in test_sockmap (Jiri Olsa) [1874007]
+- libbpf: Use memcpy instead of strncpy to please GCC (Jiri Olsa) [1874007]
+- selftests/bpf: Add fentry/fexit/fmod_ret selftest for kernel module (Jiri Olsa) [1874007]
+- selftests/bpf: Add tp_btf CO-RE reloc test for modules (Jiri Olsa) [1874007]
+- libbpf: Support attachment of BPF tracing programs to kernel modules (Jiri Olsa) [1874007]
+- libbpf: Factor out low-level BPF program loading helper (Jiri Olsa) [1874007]
+- bpf: Allow to specify kernel module BTFs when attaching BPF programs (Jiri Olsa) [1874007]
+- bpf: Remove hard-coded btf_vmlinux assumption from BPF verifier (Jiri Olsa) [1874007]
+- selftests/bpf: Add CO-RE relocs selftest relying on kernel module BTF (Jiri Olsa) [1874007]
+- selftests/bpf: Add support for marking sub-tests as skipped (Jiri Olsa) [1874007]
+- selftests/bpf: Add bpf_testmod kernel module for testing (Jiri Olsa) [1874007]
+- libbpf: Add kernel module BTF support for CO-RE relocations (Jiri Olsa) [1874007]
+- libbpf: Refactor CO-RE relocs to not assume a single BTF object (Jiri Olsa) [1874007]
+- libbpf: Add internal helper to load BTF data by FD (Jiri Olsa) [1874007]
+- selftests/bpf: Add Userspace tests for TCP_WINDOW_CLAMP (Jiri Olsa) [1874007]
+- bpf: Fix cold build of test_progs-no_alu32 (Jiri Olsa) [1874007]
+- libbpf: Cap retries in sys_bpf_prog_load (Jiri Olsa) [1874007]
+- libbpf: Sanitise map names before pinning (Jiri Olsa) [1874007]
+- libbpf: Fail early when loading programs with unspecified type (Jiri Olsa) [1874007]
+- selftests/bpf: Indent ima_setup.sh with tabs. (Jiri Olsa) [1874007]
+- selftests/bpf: Add config dependency on BLK_DEV_LOOP (Jiri Olsa) [1874007]
+- selftests/bpf: Ensure securityfs mount before writing ima policy (Jiri Olsa) [1874007]
+- selftests/bpf: Update ima_setup.sh for busybox (Jiri Olsa) [1874007]
+- libbpf: Separate XDP program load with xsk socket creation (Jiri Olsa) [1874007]
+- selftests/bpf: Copy file using read/write in local storage test (Jiri Olsa) [1874007]
+- libbpf: Add base BTF accessor (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for bpf progs (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for bpf local storage maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for stackmap maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for bpf ringbuffer (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for reuseport_array maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for queue_stack_maps maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for lpm_trie maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for hashtab maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for devmap maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for cgroup storage maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for cpumap maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for bpf_struct_ops maps (Jiri Olsa) [1874007]
+- bpf: Eliminate rlimit-based memory accounting for arraymap maps (Jiri Olsa) [1874007]
+- bpf: Memcg-based memory accounting for bpf local storage maps (Jiri Olsa) [1874007]
+- bpf: Memcg-based memory accounting for bpf ringbuffer (Jiri Olsa) [1874007]
+- bpf: Memcg-based memory accounting for lpm_trie maps (Jiri Olsa) [1874007]
+- bpf: Refine memcg-based memory accounting for hashtab maps (Jiri Olsa) [1874007]
+- bpf: Refine memcg-based memory accounting for devmap maps (Jiri Olsa) [1874007]
+- bpf: Memcg-based memory accounting for cgroup storage maps (Jiri Olsa) [1874007]
+- bpf: Refine memcg-based memory accounting for cpumap maps (Jiri Olsa) [1874007]
+- bpf: Refine memcg-based memory accounting for arraymap maps (Jiri Olsa) [1874007]
+- bpf: Memcg-based memory accounting for bpf maps (Jiri Olsa) [1874007]
+- bpf: Prepare for memcg-based memory accounting for bpf maps (Jiri Olsa) [1874007]
+- bpf: Memcg-based memory accounting for bpf progs (Jiri Olsa) [1874007]
+- selftests/bpf: Extend bind{4,6} programs with a call to bpf_setsockopt (Jiri Olsa) [1874007]
+- selftests/bpf: Rewrite test_sock_addr bind bpf into C (Jiri Olsa) [1874007]
+- selftests/bpf: Fix flavored variants of test_ima (Jiri Olsa) [1874007]
+- libbpf: Replace size_t with __u32 in xsk interfaces (Jiri Olsa) [1874007]
+- bpf: Add a selftest for bpf_ima_inode_hash (Jiri Olsa) [1874007]
+- bpf: Add a BPF helper for getting the IMA hash of an inode (Jiri Olsa) [1874007]
+- libbpf: Add support for canceling cached_cons advance (Jiri Olsa) [1874007]
+- bpf: Refactor check_cfg to use a structured loop. (Jiri Olsa) [1874007]
+- selftest/bpf: Fix rst formatting in readme (Jiri Olsa) [1874007]
+- selftest/bpf: Fix link in readme (Jiri Olsa) [1874007]
+- bpf: Simplify task_file_seq_get_next() (Jiri Olsa) [1874007]
+- selftests/bpf: Mark tests that require unaligned memory access (Jiri Olsa) [1874007]
+- selftests/bpf: Avoid running unprivileged tests with alignment requirements (Jiri Olsa) [1874007]
+- selftests/bpf: Fix broken riscv build (Jiri Olsa) [1874007]
+- bpf: Add bpf_ktime_get_coarse_ns helper (Jiri Olsa) [1874007]
+- bpf: Add tests for bpf_bprm_opts_set helper (Jiri Olsa) [1874007]
+- bpf: Add bpf_bprm_opts_set helper (Jiri Olsa) [1874007]
+- libbpf: bpf__find_by_name[_kind] should use btf__get_nr_types() (Jiri Olsa) [1874007]
+- selftest/bpf: Fix IPV6FR handling in flow dissector (Jiri Olsa) [1874007]
+- bpf: Augment the set of sleepable LSM hooks (Jiri Olsa) [1874007]
+- bpf: selftest: Use bpf_sk_storage in FENTRY/FEXIT/RAW_TP (Jiri Olsa) [1874007]
+- selftests/bpf: Add asm tests for pkt vs pkt_end comparison. (Jiri Olsa) [1874007]
+- selftests/bpf: Add skb_pkt_end test (Jiri Olsa) [1874007]
+- bpf: Support for pointers beyond pkt_end. (Jiri Olsa) [1874007]
+- bpf: Compile out btf_parse_module() if module BTF is not enabled (Jiri Olsa) [1874007]
+- selftest/bpf: Add missed ip6ip6 test back (Jiri Olsa) [1874007]
+- bpf: Keep module's btf_data_size intact after load (Jiri Olsa) [1874007]
+- bpf: Sanitize BTF data pointer after module is loaded (Jiri Olsa) [1874007]
+- bpf: Load and verify kernel module BTFs (Jiri Olsa) [1874007]
+- bpf: Assign ID to vmlinux BTF and return extra info for BTF in GET_OBJ_INFO (Jiri Olsa) [1874007]
+- bpf: Add in-kernel split BTF support (Jiri Olsa) [1874007]
+- bpf, btf: Remove the duplicate btf_ids.h include (Jiri Olsa) [1874007]
+- selftests/bpf: Fix selftest build with old libc (Jiri Olsa) [1874007]
+- bpf: Exercise syscall operations for inode and sk storage (Jiri Olsa) [1874007]
+- bpf: Add tests for task_local_storage (Jiri Olsa) [1874007]
+- bpf: Update selftests for local_storage to use vmlinux.h (Jiri Olsa) [1874007]
+- bpf: Implement get_current_task_btf and RET_PTR_TO_BTF_ID (Jiri Olsa) [1874007]
+- libbpf: Add support for task local storage (Jiri Olsa) [1874007]
+- bpf: Implement task local storage (Jiri Olsa) [1874007]
+- bpf: Allow LSM programs to use bpf spin locks (Jiri Olsa) [1874007]
+- bpf: Lift hashtab key_size limit (Jiri Olsa) [1874007]
+- selftests/bpf: Add split BTF dedup selftests (Jiri Olsa) [1874007]
+- libbpf: Accomodate DWARF/compiler bug with duplicated identical arrays (Jiri Olsa) [1874007]
+- libbpf: Support BTF dedup of split BTFs (Jiri Olsa) [1874007]
+- libbpf: Fix BTF data layout checks and allow empty BTF (Jiri Olsa) [1874007]
+- selftests/bpf: Add checking of raw type dump in BTF writer APIs selftests (Jiri Olsa) [1874007]
+- selftests/bpf: Add split BTF basic test (Jiri Olsa) [1874007]
+- libbpf: Implement basic split BTF support (Jiri Olsa) [1874007]
+- libbpf: Unify and speed up BTF string deduplication (Jiri Olsa) [1874007]
+- selftest/bpf: Relax btf_dedup test checks (Jiri Olsa) [1874007]
+- libbpf: Factor out common operations in BTF writing APIs (Jiri Olsa) [1874007]
+- selftest/bpf: Use global variables instead of maps for test_tcpbpf_kern (Jiri Olsa) [1874007]
+- selftests/bpf: Migrate tcpbpf_user.c to use BPF skeleton (Jiri Olsa) [1874007]
+- selftests/bpf: Replace EXPECT_EQ with ASSERT_EQ and refactor verify_results (Jiri Olsa) [1874007]
+- selftests/bpf: Drop python client/server in favor of threads (Jiri Olsa) [1874007]
+- selftests/bpf: Move test_tcppbf_user into test_progs (Jiri Olsa) [1874007]
+- bpf: Fix error path in htab_map_alloc() (Jiri Olsa) [1874007]
+- bpf: Avoid hashtab deadlock with map_locked (Jiri Olsa) [1874007]
+- bpf: Use separate lockdep class for each hashtab (Jiri Olsa) [1874007]
+- fault-injection: handle EI_ETYPE_TRUE (Jiri Olsa) [1874007]
+- vfs, fdtable: Add fget_task helper (Jiri Olsa) [1874007]
+- [s390] vfio-pci/zdev: Add zPCI capabilities to VFIO_DEVICE_GET_INFO (Claudio Imbrenda) [1858844]
+- [s390] vfio: Introduce capability definitions for VFIO_DEVICE_GET_INFO (Claudio Imbrenda) [1858844]
+- [s390] s390/pci: track whether util_str is valid in the zpci_dev (Claudio Imbrenda) [1858844]
+- [s390] s390/pci: stash version in the zpci_dev (Claudio Imbrenda) [1858844]
+
+* Thu Jul 01 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-320.el8]
+- Enable CRYPTO_SHA512 and _SSSE3 so these are available in FIPS mode (Vladis Dronov) [1973106]
+- crypto: drbg - self test for HMAC(SHA-512) (Vladis Dronov) [1973106]
+- xfrm: xfrm_state_mtu should return at least 1280 for ipv6 (Sabrina Dubroca) [1919786]
+- xfrm: remove get_mtu indirection from xfrm_type (Sabrina Dubroca) [1919786]
+- netfilter: move endif to correct location (Florian Westphal) [1971991]
+- netfilter: nft_compat: remove flush counter optimization (Florian Westphal) [1974323]
+- mptcp: fix soft lookup in subflow_error_report() (Florian Westphal) [1936368]
+- selftests: mptcp: enable syncookie only in absence of reorders (Florian Westphal) [1936368]
+- mptcp: do not warn on bad input from the network (Florian Westphal) [1936368]
+- mptcp: wake-up readers only for in sequence data (Florian Westphal) [1936368]
+- mptcp: try harder to borrow memory from subflow under pressure (Florian Westphal) [1936368]
+- mptcp: Fix out of bounds when parsing TCP options (Florian Westphal) [1936368]
+- selftests: mptcp_connect: add SO_TIMESTAMPNS cmsg support (Florian Westphal) [1936368]
+- mptcp: receive path cmsg support (Florian Westphal) [1936368]
+- tcp: export timestamp helpers for mptcp (Florian Westphal) [1936368]
+- mptcp: setsockopt: handle SOL_SOCKET in one place only (Florian Westphal) [1936368]
+- mptcp: sockopt: propagate timestamp request to subflows (Florian Westphal) [1936368]
+- sock: expose so_timestamping options for mptcp (Florian Westphal) [1936368]
+- mptcp: restrict values of 'enabled' sysctl (Florian Westphal) [1936368]
+- mptcp: support SYSCTL only if enabled (Florian Westphal) [1936368]
+- mptcp: make sure flag signal is set when add addr with port (Florian Westphal) [1936368]
+- mptcp: remove redundant initialization in pm_nl_init_net() (Florian Westphal) [1936368]
+- mptcp: generate subflow hmac after mptcp_finish_join() (Florian Westphal) [1936368]
+- mptcp: using TOKEN_MAX_RETRIES instead of magic number (Florian Westphal) [1936368]
+- mptcp: fix pr_debug in mptcp_token_new_connect (Florian Westphal) [1936368]
+- mptcp: update selftest for fallback due to OoO (Florian Westphal) [1936368]
+- mptcp: do not reset MP_CAPABLE subflow on mapping errors (Florian Westphal) [1936368]
+- mptcp: always parse mptcp options for MPC reqsk (Florian Westphal) [1936368]
+- mptcp: fix sk_forward_memory corruption on retransmission (Florian Westphal) [1936368]
+- mptcp: validate 'id' when stopping the ADD_ADDR retransmit timer (Florian Westphal) [1936368]
+- mptcp: avoid error message on infinite mapping (Florian Westphal) [1936368]
+- mptcp: drop unconditional pr_warn on bad opt (Florian Westphal) [1936368]
+- mptcp: avoid OOB access in setsockopt() (Florian Westphal) [1936368]
+- mptcp: fix data stream corruption (Florian Westphal) [1936368]
+- mptcp: fix splat when closing unaccepted socket (Florian Westphal) [1936368]
+- selftests: mptcp: add a test case for MSG_PEEK (Florian Westphal) [1936368]
+- mptcp: add MSG_PEEK support (Florian Westphal) [1936368]
+- mptcp: ignore unsupported msg flags (Florian Westphal) [1936368]
+- mptcp: implement MSG_TRUNC support (Florian Westphal) [1936368]
+- mptcp: implement dummy MSG_ERRQUEUE support (Florian Westphal) [1936368]
+- mptcp: Retransmit DATA_FIN (Florian Westphal) [1936368]
+- selftests: mptcp: add packet mark test case (Florian Westphal) [1936368]
+- selftests: mptcp: add the net device name testcase (Florian Westphal) [1936368]
+- selftests: mptcp: dump more info on mpjoin errors (Florian Westphal) [1936368]
+- selftests: mptcp: init nstat history (Florian Westphal) [1936368]
+- selftests: mptcp: launch mptcp_connect with timeout (Florian Westphal) [1936368]
+- selftests: mptcp: remove id 0 address testcases (Florian Westphal) [1936368]
+- selftests: mptcp: add addr argument for del_addr (Florian Westphal) [1936368]
+- selftests: mptcp: avoid calling pm_nl_ctl with bad IDs (Florian Westphal) [1936368]
+- selftests: mptcp: signal addresses testcases (Florian Westphal) [1936368]
+- selftests: mptcp: timeout testcases for multi addresses (Florian Westphal) [1936368]
+- selftests: mptcp: add cfg_do_w for cfg_remove (Florian Westphal) [1936368]
+- selftests: mptcp: Restore packet capture option in join tests (Florian Westphal) [1936368]
+- selftests: mptcp: add testcases for removing addrs (Florian Westphal) [1936368]
+- selftests: mptcp: set addr id for removing testcases (Florian Westphal) [1936368]
+- selftests: mptcp: add invert argument for chk_rm_nr (Florian Westphal) [1936368]
+- selftests: mptcp: fail if not enough SYN/3rd ACK (Florian Westphal) [1936368]
+- selftests: mptcp: display warnings on one line (Florian Westphal) [1936368]
+- selftests: mptcp: fix ACKRX debug message (Florian Westphal) [1936368]
+- selftests: mptcp: dump more info on errors (Florian Westphal) [1936368]
+- selftests: mptcp: add command line arguments for mptcp_join.sh (Florian Westphal) [1936368]
+- selftests: mptcp: add testcases for ADD_ADDR with port (Florian Westphal) [1936368]
+- selftests: mptcp: add port argument for pm_nl_ctl (Florian Westphal) [1936368]
+- selftests: mptcp: add testcases for newly added addresses (Florian Westphal) [1936368]
+- selftests: mptcp: use minus values for removing address numbers (Florian Westphal) [1936368]
+- selftests: increase timeout to 10 min (Florian Westphal) [1936368]
+- selftests: mptcp: add IPv4-mapped IPv6 testcases (Florian Westphal) [1936368]
+- mptcp: use mptcp_for_each_subflow in mptcp_close (Florian Westphal) [1936368]
+- mptcp: add tracepoint in subflow_check_data_avail (Florian Westphal) [1936368]
+- mptcp: add tracepoint in ack_update_msk (Florian Westphal) [1936368]
+- mptcp: add tracepoint in get_mapping_status (Florian Westphal) [1936368]
+- mptcp: add tracepoint in mptcp_subflow_get_send (Florian Westphal) [1936368]
+- mptcp: export mptcp_subflow_active (Florian Westphal) [1936368]
+- mptcp: fix format specifiers for unsigned int (Florian Westphal) [1936368]
+- mptcp: sockopt: add TCP_CONGESTION and TCP_INFO (Florian Westphal) [1936368]
+- mptcp: setsockopt: SO_DEBUG and no-op options (Florian Westphal) [1936368]
+- mptcp: setsockopt: add SO_INCOMING_CPU (Florian Westphal) [1936368]
+- mptcp: setsockopt: add SO_MARK support (Florian Westphal) [1936368]
+- mptcp: setsockopt: support SO_LINGER (Florian Westphal) [1936368]
+- mptcp: setsockopt: handle receive/send buffer and device bind (Florian Westphal) [1936368]
+- mptcp: setsockopt: handle SO_KEEPALIVE and SO_PRIORITY (Florian Westphal) [1936368]
+- mptcp: tag sequence_seq with socket state (Florian Westphal) [1936368]
+- mptcp: add skeleton to sync msk socket options to subflows (Florian Westphal) [1936368]
+- mptcp: only admit explicitly supported sockopt (Florian Westphal) [1936368]
+- mptcp: move sockopt function into a new file (Florian Westphal) [1936368]
+- mptcp: drop all sub-options except ADD_ADDR when the echo bit is set (Florian Westphal) [1936368]
+- mptcp: unify add_addr(6)_generate_hmac (Florian Westphal) [1936368]
+- mptcp: drop MPTCP_ADDR_IPVERSION_4/6 (Florian Westphal) [1936368]
+- mptcp: use mptcp_addr_info in mptcp_options_received (Florian Westphal) [1936368]
+- mptcp: drop OPTION_MPTCP_ADD_ADDR6 (Florian Westphal) [1936368]
+- mptcp: use mptcp_addr_info in mptcp_out_options (Florian Westphal) [1936368]
+- mptcp: move flags and ifindex out of mptcp_addr_info (Florian Westphal) [1936368]
+- mptcp: add mptcp reset option support (Florian Westphal) [1936368]
+- mptcp: remove unneeded check on first subflow (Florian Westphal) [1936368]
+- mptcp: add active MPC mibs (Florian Westphal) [1936368]
+- mptcp: add mib for token creation fallback (Florian Westphal) [1936368]
+- mptcp: remove id 0 address (Florian Westphal) [1936368]
+- mptcp: unify RM_ADDR and RM_SUBFLOW receiving (Florian Westphal) [1936368]
+- mptcp: remove all subflows involving id 0 address (Florian Westphal) [1936368]
+- mptcp: subflow.c: Fix a typo (Florian Westphal) [1936368]
+- mptcp: rename mptcp_pm_nl_add_addr_send_ack (Florian Westphal) [1936368]
+- mptcp: send ack for rm_addr (Florian Westphal) [1936368]
+- mptcp: drop useless addr_signal clear (Florian Westphal) [1936368]
+- mptcp: move to next addr when subflow creation fail (Florian Westphal) [1936368]
+- mptcp: export lookup_anno_list_by_saddr (Florian Westphal) [1936368]
+- mptcp: move to next addr when timeout (Florian Westphal) [1936368]
+- mptcp: drop unused subflow in mptcp_pm_subflow_established (Florian Westphal) [1936368]
+- mptcp: skip connecting the connected address (Florian Westphal) [1936368]
+- mptcp: drop argument port from mptcp_pm_announce_addr (Florian Westphal) [1936368]
+- mptcp: clean-up the rtx path (Florian Westphal) [1936368]
+- mptcp: fix ADD_ADDR HMAC in case port is specified (Florian Westphal) [1936368]
+- mptcp: remove a list of addrs when flushing (Florian Westphal) [1936368]
+- mptcp: remove multi addresses and subflows in PM (Florian Westphal) [1936368]
+- mptcp: remove multi subflows in PM (Florian Westphal) [1936368]
+- mptcp: remove multi addresses in PM (Florian Westphal) [1936368]
+- mptcp: add rm_list_rx in mptcp_pm_data (Florian Westphal) [1936368]
+- mptcp: add rm_list in mptcp_options_received (Florian Westphal) [1936368]
+- mptcp: add rm_list_tx in mptcp_pm_data (Florian Westphal) [1936368]
+- mptcp: add rm_list in mptcp_out_options (Florian Westphal) [1936368]
+- mptcp: fix bit MPTCP_PUSH_PENDING tests (Florian Westphal) [1936368]
+- mptcp: fix length of ADD_ADDR with port sub-option (Florian Westphal) [1936368]
+- mptcp: free resources when the port number is mismatched (Florian Westphal) [1936368]
+- mptcp: fix missing wakeup (Florian Westphal) [1936368]
+- mptcp: fix race in release_cb (Florian Westphal) [1936368]
+- mptcp: factor out __mptcp_retrans helper() (Florian Westphal) [1936368]
+- mptcp: reset 'first' and ack_hint on subflow close (Florian Westphal) [1936368]
+- mptcp: dispose initial struct socket when its subflow is closed (Florian Westphal) [1936368]
+- mptcp: fix memory accounting on allocation error (Florian Westphal) [1936368]
+- mptcp: put subflow sock on connect error (Florian Westphal) [1936368]
+- mptcp: reset last_snd on subflow close (Florian Westphal) [1936368]
+- mptcp: do not wakeup listener for MPJ subflows (Florian Westphal) [1936368]
+- mptcp: fix DATA_FIN generation on early shutdown (Florian Westphal) [1936368]
+- mptcp: fix DATA_FIN processing for orphaned sockets (Florian Westphal) [1936368]
+- mptcp: add local addr info in mptcp_info (Florian Westphal) [1936368]
+- mptcp: add netlink event support (Florian Westphal) [1936368]
+- mptcp: avoid lock_fast usage in accept path (Florian Westphal) [1936368]
+- netlink: don't call ->netlink_bind with table lock held (Florian Westphal) [1936368]
+- genetlink: restrict upcoming mptcp netlink events to CAP_NET_ADMIN (Florian Westphal) [1936368]
+- mptcp: pass subflow socket to a few helpers (Florian Westphal) [1936368]
+- mptcp: move subflow close loop after sk close check (Florian Westphal) [1936368]
+- mptcp: schedule worker when subflow is closed (Florian Westphal) [1936368]
+- mptcp: split __mptcp_close_ssk helper (Florian Westphal) [1936368]
+- mptcp: move pm netlink work into pm_netlink (Florian Westphal) [1936368]
+- mptcp: add a missing retransmission timer scheduling (Florian Westphal) [1936368]
+- mptcp: better msk receive window updates (Florian Westphal) [1936368]
+- mptcp: init mptcp request socket earlier (Florian Westphal) [1936368]
+- mptcp: fix spurious retransmissions (Florian Westphal) [1936368]
+- mptcp: fix poll after shutdown (Florian Westphal) [1936368]
+- mptcp: deliver ssk errors to msk (Florian Westphal) [1936368]
+- mptcp: pm: add lockdep assertions (Florian Westphal) [1936368]
+- mptcp: add the mibs for ADD_ADDR with port (Florian Westphal) [1936368]
+- mptcp: deal with MPTCP_PM_ADDR_ATTR_PORT in PM netlink (Florian Westphal) [1936368]
+- mptcp: enable use_port when invoke addresses_equal (Florian Westphal) [1936368]
+- mptcp: add port number check for MP_JOIN (Florian Westphal) [1936368]
+- mptcp: add a new helper subflow_req_create_thmac (Florian Westphal) [1936368]
+- mptcp: drop unused skb in subflow_token_join_request (Florian Westphal) [1936368]
+- mptcp: create the listening socket for new port (Florian Westphal) [1936368]
+- mptcp: create subflow or signal addr for newly added address (Florian Westphal) [1936368]
+- mptcp: drop *_max fields in mptcp_pm_data (Florian Westphal) [1936368]
+- mptcp: use WRITE_ONCE for the pernet *_max (Florian Westphal) [1936368]
+- mptcp: pm nl: reduce variable scope (Florian Westphal) [1936368]
+- mptcp: pm nl: support IPv4 mapped in v6 addresses (Florian Westphal) [1936368]
+- mptcp: support MPJoin with IPv4 mapped in v6 sk (Florian Westphal) [1936368]
+- mptcp: use sha256() instead of open coding (Florian Westphal) [1936368]
+- crypto: lib/sha256 - add sha256() function (Florian Westphal) [1936368]
+- mptcp: use SHA256_BLOCK_SIZE, not SHA_MESSAGE_BYTES (Florian Westphal) [1936368]
+- xprtrdma: Pad optimization, revisited (Steve Dickson) [1926957]
+- ibmvnic: remove set but not used variable 'netdev' (Diego Domingos) [1922193]
+- net/ibmvnic: Remove tests of member address (Diego Domingos) [1922193]
+- ibmvnic: remove duplicate napi_schedule call in do_reset function (Diego Domingos) [1922193]
+- ibmvnic: avoid calling napi_disable() twice (Diego Domingos) [1922193]
+- ibmvnic: queue reset work in system_long_wq (Diego Domingos) [1922193]
+- ibmvnic: correctly use dev_consume/free_skb_irq (Diego Domingos) [1922193]
+- ibmvnic: improve failover sysfs entry (Diego Domingos) [1922193]
+- ibmvnic: print adapter state as a string (Diego Domingos) [1922193]
+- ibmvnic: print reset reason as a string (Diego Domingos) [1922193]
+- ibmvnic: clean up the remaining debugfs data structures (Diego Domingos) [1922193]
+- ibmvnic: Use 'skb_frag_address()' instead of hand coding it (Diego Domingos) [1922193]
+- ibmvnic: remove excessive irqsave (Diego Domingos) [1922193]
+- ibmvnic: always store valid MAC address (Diego Domingos) [1922193]
+- ibmvnic: Fix possibly uninitialized old_num_tx_queues variable warning. (Diego Domingos) [1922193]
+- vio: make remove callback return void (Diego Domingos) [1922193]
+- tty: hvcs: Drop unnecessary if block (Diego Domingos) [1922193]
+- ibmvnic: serialize access to work queue on remove (Diego Domingos) [1922193]
+- ibmvnic: skip send_request_unmap for timeout reset (Diego Domingos) [1922193]
+- ibmvnic: add memory barrier to protect long term buffer (Diego Domingos) [1922193]
+- ibmvnic: substitute mb() with dma_wmb() for send_*crq* functions (Diego Domingos) [1922193]
+- ibmvnic: prefer strscpy over strlcpy (Diego Domingos) [1922193]
+- ibmvnic: remove unused spinlock_t stats_lock definition (Diego Domingos) [1922193]
+- ibmvnic: add comments for spinlock_t definitions (Diego Domingos) [1922193]
+- ibmvnic: fix miscellaneous checks (Diego Domingos) [1922193]
+- ibmvnic: avoid multiple line dereference (Diego Domingos) [1922193]
+- ibmvnic: fix braces (Diego Domingos) [1922193]
+- ibmvnic: fix block comments (Diego Domingos) [1922193]
+- ibmvnic: prefer 'unsigned long' over 'unsigned long int' (Diego Domingos) [1922193]
+- ibmvnic: remove unnecessary rmb() inside ibmvnic_poll (Diego Domingos) [1922193]
+- ibmvnic: rework to ensure SCRQ entry reads are properly ordered (Diego Domingos) [1922193]
+- ibmvnic: Ensure that CRQ entry read are correctly ordered (Diego Domingos) [1922193]
+- net: ethernet: ibm: ibmvnic: Fix some kernel-doc misdemeanours (Diego Domingos) [1922193]
+- powerpc/hmi: Fix kernel hang when TB is in error state. (Gustavo Walbon) [1924091]
+- powerpc/eeh: Fix EEH handling for hugepages in ioremap space. (Gustavo Walbon) [1924090]
+- powerpc/pseries: Only register vio drivers if vio bus exists (Gustavo Walbon) [1924090]
+- powerpc/pci: Remove unimplemented prototypes (Gustavo Walbon) [1924090]
+- powerpc/powernv/pci: Use kzalloc() for phb related allocations (Gustavo Walbon) [1924090]
+- powerpc/pasemi: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/embedded6xx/mve5100: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/embedded6xx/mpc7448: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/embedded6xx/linkstation: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/embedded6xx/holly: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/chrp: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/amigaone: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/83xx: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/82xx/*: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/52xx/mpc5200_simple: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/52xx/media5200: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/52xx/lite5200: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/52xx/efika: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/512x: Move PHB discovery (Gustavo Walbon) [1924090]
+- powerpc/pci: Move PHB discovery for PCI_DN using platforms (Gustavo Walbon) [1924090]
+- powerpc/maple: Fix declaration made after definition (Gustavo Walbon) [1924090]
+- powerpc/pci: Add ppc_md.discover_phbs() (Gustavo Walbon) [1924090]
+- powerpc/pci: Delete traverse_pci_dn() (Gustavo Walbon) [1924090]
+- powerpc/eeh: Rework pci_dev lookup in debugfs attributes (Gustavo Walbon) [1924090]
+- selftests/powerpc: Add VF recovery tests (Gustavo Walbon) [1924090]
+- powerpc/pseries/eeh: Make pseries_send_allow_unfreeze() static (Gustavo Walbon) [1924090]
+- powerpc/pseries/eeh: Make pseries_pcibios_bus_add_device() static (Gustavo Walbon) [1924090]
+- selftests/powerpc: Make the test check in eeh-basic.sh posix compliant (Gustavo Walbon) [1924090]
+- powernv/pci: Print an error when device enable is blocked (Gustavo Walbon) [1924090]
+- selftests/powerpc/eeh: disable kselftest timeout setting for eeh-basic (Gustavo Walbon) [1924090]
+- powerpc/eeh_cache: Fix a possible debugfs deadlock (Gustavo Walbon) [1924090]
+- powerpc/eeh: Fix eeh_dev_check_failure() for PE#0 (Gustavo Walbon) [1924090]
+- selftests/powerpc: Fix eeh-basic.sh exit codes (Gustavo Walbon) [1924090]
+- powerpc/pseries/eeh: Fix use of uninitialised variable (Gustavo Walbon) [1924090]
+- powerpc/eeh: Delete eeh_pe->config_addr (Gustavo Walbon) [1924090]
+- powerpc/eeh: Clean up PE addressing (Gustavo Walbon) [1924090]
+- powerpc/pseries/eeh: Allow zero to be a valid PE configuration address (Gustavo Walbon) [1924090]
+- powerpc/pseries/eeh: Rework device EEH PE determination (Gustavo Walbon) [1924090]
+- powerpc/pseries/eeh: Clean up pe_config_addr lookups (Gustavo Walbon) [1924090]
+- powerpc/eeh: Move EEH initialisation to an arch initcall (Gustavo Walbon) [1924090]
+- powerpc/eeh: Delete eeh_ops->init (Gustavo Walbon) [1924090]
+- powerpc/pseries: Stop using eeh_ops->init() (Gustavo Walbon) [1924090]
+- powerpc/powernv: Stop using eeh_ops->init() (Gustavo Walbon) [1924090]
+- powerpc/eeh: Rework EEH initialisation (Gustavo Walbon) [1924090]
+- powerpc/pseries/eeh: Fix dumb linebreaks (Gustavo Walbon) [1924090]
+- selftests/powerpc: Squash spurious errors due to device removal (Gustavo Walbon) [1924090]
+- powerpc/eeh: Move PE tree setup into the platform (Gustavo Walbon) [1924090]
+- powerpc/eeh: Drop pdn use in eeh_pe_tree_insert() (Gustavo Walbon) [1924090]
+- powerpc/eeh: Rename eeh_{add_to|remove_from}_parent_pe() (Gustavo Walbon) [1924090]
+- powerpc/eeh: Remove class code field from edev (Gustavo Walbon) [1924090]
+- powerpc/eeh: Remove spurious use of pci_dn in eeh_dump_dev_log (Gustavo Walbon) [1924090]
+- powerpc/eeh: Pass eeh_dev to eeh_ops->{read|write}_config() (Gustavo Walbon) [1924090]
+- powerpc/eeh: Pass eeh_dev to eeh_ops->resume_notify() (Gustavo Walbon) [1924090]
+- powerpc/eeh: Pass eeh_dev to eeh_ops->restore_config() (Gustavo Walbon) [1924090]
+- powerpc/eeh: Remove VF config space restoration (Gustavo Walbon) [1924090]
+- powerpc/eeh: Kill off eeh_ops->get_pe_addr() (Gustavo Walbon) [1924090]
+- powerpc/pseries: Stop using pdn->pe_number (Gustavo Walbon) [1924090]
+- powerpc/eeh: Move vf_index out of pci_dn and into eeh_dev (Gustavo Walbon) [1924090]
+- powerpc/eeh: Remove eeh_dev.c (Gustavo Walbon) [1924090]
+- powerpc/eeh: Remove eeh_dev_phb_init_dynamic() (Gustavo Walbon) [1924090]
+- powerpc/powernv: Make pnv_pci_sriov_enable() and friends static (Gustavo Walbon) [1924090]
+- powerpc/pseries: Make vio and ibmebus initcalls pseries specific (Gustavo Walbon) [1924090]
+- powerpc/eeh: Release EEH device state synchronously (Gustavo Walbon) [1924090]
+- powerpc/eeh: Rework eeh_ops->probe() (Gustavo Walbon) [1924090]
+- powerpc/eeh: Make early EEH init pseries specific (Gustavo Walbon) [1924090]
+- powerpc/eeh: Remove PHB check in probe (Gustavo Walbon) [1924090]
+- powerpc/eeh: Do early EEH init only when required (Gustavo Walbon) [1924090]
+- powerpc/eeh: Only dump stack once if an MMIO loop is detected (Gustavo Walbon) [1924090]
+- powernv/pci: Add a debugfs entry to dump PHB's IODA PE state (Gustavo Walbon) [1924090]
+- powernv/pci: Allow any write trigger the diag dump (Gustavo Walbon) [1924090]
+- powernv/pci: Use pnv_phb as the private data for debugfs entries (Gustavo Walbon) [1924090]
+- powerpc/powernv/npu: Fix debugfs_simple_attr.cocci warnings (Gustavo Walbon) [1924090]
+- powerpc/pcidn: Warn when sriov pci_dn management is used incorrectly (Gustavo Walbon) [1924090]
+- powerpc/pcidn: Make VF pci_dn management CONFIG_PCI_IOV specific (Gustavo Walbon) [1924090]
+- powerpc/sriov: Remove VF eeh_dev state when disabling SR-IOV (Gustavo Walbon) [1924090]
+- powerpc/eeh_sysfs: Make clearing EEH_DEV_SYSFS saner (Gustavo Walbon) [1924090]
+- powerpc/eeh_sysfs: Remove double pci_dn lookup. (Gustavo Walbon) [1924090]
+- powerpc/eeh_sysfs: ifdef pseries sr-iov sysfs properties (Gustavo Walbon) [1924090]
+- powerpc/eeh_cache: Don't use pci_dn when inserting new ranges (Gustavo Walbon) [1924090]
+- powerpc/eeh: differentiate duplicate detection message (Gustavo Walbon) [1924090]
+- powerpc/eeh: Handle hugepages in ioremap space (Gustavo Walbon) [1924090]
+- powerpc/powernv-eeh: Consisely desribe what this file does (Gustavo Walbon) [1924090]
+- powerpc/eeh_cache: fix a W=1 kernel-doc warning (Gustavo Walbon) [1924090]
+- powerpc/eeh_cache: Add a way to dump the EEH address cache (Gustavo Walbon) [1924090]
+- powerpc/powernv: Escalate reset when IODA reset fails (Gustavo Walbon) [1924090]
+- powerpc/powernv/eeh/npu: Fix uninitialized variables in opal_pci_eeh_freeze_status (Gustavo Walbon) [1924090]
+- powerpc: eeh_event: convert semaphore to completion (Gustavo Walbon) [1924090]
+- powerpc/eeh: Declare pci_ers_result_name() as static (Gustavo Walbon) [1924090]
+- Bluetooth: verify AMP hci_chan before amp_destroy (Gopal Tiwari) [1962546] {CVE-2021-33034}
+- NFSv4.2 fix handling of sr_eof in SEEK's reply (Steve Dickson) [1948015]
+- SUNRPC: Fix null pointer dereference in svc_rqst_free() (Benjamin Coddington) [1952008]
+- NFSv4: Use sequence counter with associated spinlock (Benjamin Coddington) [1952008]
+- NFSv4.2: fix return value of _nfs4_get_security_label() (Benjamin Coddington) [1952008]
+- NFSD: fix error handling in NFSv4.0 callbacks (Benjamin Coddington) [1952008]
+- NFS: Don't gratuitously clear the inode cache when lookup failed (Benjamin Coddington) [1952008]
+- NFS: Don't revalidate the directory permissions on a lookup failure (Benjamin Coddington) [1952008]
+- nfsd: register pernet ops last, unregister first (Benjamin Coddington) [1952008]
+- SUNRPC: Fix general protection fault in trace_rpc_xdr_overflow() (Benjamin Coddington) [1952008]
+- lockd: fix access beyond unterminated strings in prints (Benjamin Coddington) [1952008]
+- tty: Protect disc_data in n_tty_close and n_tty_flush_buffer (Rafael Aquini) [1879861]
+- hwmon: (amd_energy) Add AMD family 19h model 30h x86 match (Terry Bowman) [1949280]
+
+* Mon Jun 28 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-319.el8]
+- redhat/configs: Re-enable dptf_power module (Prarit Bhargava) [1962349]
+- net/sched: act_ct: Offload connections with commit action (Marcelo Ricardo Leitner) [1965817]
+- netfilter: flowtable: Remove redundant hw refresh bit (Marcelo Ricardo Leitner) [1965817]
+- inet_diag: add support for tw_mark (Xin Long) [1972967]
+- mm: thp: fix MADV_REMOVE deadlock on shmem THP (Waiman Long) [1974659] {CVE-2020-29368}
+- mm: thp: make the THP mapcount atomic against __split_huge_pmd_locked() (Waiman Long) [1974659] {CVE-2020-29368}
+- mmap locking API: add mmap_lock_is_contended() (Waiman Long) [1970177]
+- mm: madvise: fix vma user-after-free (Waiman Long) [1970177]
+- khugepaged: collapse_pte_mapped_thp() protect the pmd lock (Waiman Long) [1970177]
+- khugepaged: collapse_pte_mapped_thp() flush the right range (Waiman Long) [1970177]
+- mm/mmap.c: close race between munmap() and expand_upwards()/downwards() (Waiman Long) [1970177]
+- mm: document warning in move_normal_pmd() and make it warn only once (Waiman Long) [1970177]
+- mmap locking API: convert mmap_sem comments (Waiman Long) [1970177]
+- mmap locking API: convert mmap_sem API comments (Waiman Long) [1970177]
+- mmap locking API: rename mmap_sem to mmap_lock (Waiman Long) [1970177]
+- mmap locking API: add mmap_assert_locked() and mmap_assert_write_locked() (Waiman Long) [1970177]
+- mmap locking API: add MMAP_LOCK_INITIALIZER (Waiman Long) [1970177]
+- mmap locking API: convert nested write lock sites (Waiman Long) [1970177]
+- mmap locking API: convert mmap_sem call sites missed by coccinelle (Waiman Long) [1970177]
+- mmap locking API: use coccinelle to convert mmap_sem rwsem call sites (Waiman Long) [1970177]
+- MMU notifier: use the new mmap locking API (Waiman Long) [1970177]
+- mm/gup.c: further document vma_permits_fault() (Waiman Long) [1970177]
+- mm/gup.c: update the documentation (Waiman Long) [1970177]
+- mm/ksm: fix NULL pointer dereference when KSM zero page is enabled (Waiman Long) [1970177]
+- proc: inline vma_stop into m_stop (Waiman Long) [1970177]
+- mm: remove CONFIG_TRANSPARENT_HUGE_PAGECACHE (Waiman Long) [1970177]
+- fs/io_uring: set FOLL_PIN via pin_user_pages() (Waiman Long) [1970177]
+- shmem: pin the file in shmem_fault() if mmap_sem is dropped (Waiman Long) [1970177]
+- mm/gup.c: fix comments of __get_user_pages() and get_user_pages_remote() (Waiman Long) [1970177]
+- mm/init-mm.c: include <linux/mman.h> for vm_committed_as_batch (Waiman Long) [1970177]
+- lib/generic-radix-tree.c: add kmemleak annotations (Waiman Long) [1970177]
+- mm: Remove BUG_ON mmap_sem not held from xxx_trans_huge_lock() (Waiman Long) [1970177]
+- lib/generic-radix-tree.c: make 2 functions static inline (Waiman Long) [1970177]
+- x86/mm: Clean up the pmd_read_atomic() comments (Waiman Long) [1970177]
+- x86/mm: Fix function name typo in pmd_read_atomic() comment (Waiman Long) [1970177]
+- khugepaged: enable collapse pmd for pte-mapped THP (Waiman Long) [1970177]
+- mm: Handle MADV_WILLNEED through vfs_fadvise() (Waiman Long) [1970177]
+- pagewalk: use lockdep_assert_held for locking validation (Waiman Long) [1970177]
+- mm: use down_read_killable for locking mmap_sem in access_remote_vm (Waiman Long) [1970177]
+- proc: use down_read_killable mmap_sem for /proc/pid/map_files (Waiman Long) [1970177]
+- proc: use down_read_killable mmap_sem for /proc/pid/clear_refs (Waiman Long) [1970177]
+- proc: use down_read_killable mmap_sem for /proc/pid/pagemap (Waiman Long) [1970177]
+- proc: use down_read_killable mmap_sem for /proc/pid/smaps_rollup (Waiman Long) [1970177]
+- proc: use down_read_killable mmap_sem for /proc/pid/maps (Waiman Long) [1970177]
+- mm/filemap.c: correct the comment about VM_FAULT_RETRY (Waiman Long) [1970177]
+- mm: mmu_gather: remove __tlb_reset_range() for force flush (Waiman Long) [1970177]
+- arm64/mm: Drop mmap_sem before calling __do_kernel_fault() (Waiman Long) [1970177]
+- docs/vm: Minor editorial changes in the THP and hugetlbfs (Waiman Long) [1970177]
+- x86/mpx, mm/core: Fix recursive munmap() corruption (Waiman Long) [1970177]
+- doc: mm: migration doesn't use FOLL_SPLIT anymore (Waiman Long) [1970177]
+- filemap: add a comment about FAULT_FLAG_RETRY_NOWAIT behavior (Waiman Long) [1970177]
+- proc: commit to genradix (Waiman Long) [1970177]
+- generic radix trees (Waiman Long) [1970177]
+- mm: swap: add comment for swap_vma_readahead (Waiman Long) [1970177]
+- x86/mm: Make set_pmd_at() paravirt aware (Waiman Long) [1970177]
+- mm: select HAVE_MOVE_PMD on x86 for faster mremap (Waiman Long) [1970177]
+- mm: speed up mremap by 20x on large regions (Waiman Long) [1970177]
+- mm/mmap.c: remove verify_mm_writelocked() (Waiman Long) [1970177]
+- x86/fault: Check user_mode(regs) when avoiding an mmap_sem deadlock (Waiman Long) [1970177]
+- mm: brk: downgrade mmap_sem to read when shrinking (Waiman Long) [1970177]
+- mm: mremap: downgrade mmap_sem to read when shrinking (Waiman Long) [1970177]
+- mm: unmap VM_PFNMAP mappings with optimized path (Waiman Long) [1970177]
+- mm: unmap VM_HUGETLB mappings with optimized path (Waiman Long) [1970177]
+- mm: mmap: zap pages with read mmap_sem in munmap (Waiman Long) [1970177]
+- x86/mm: Fix exception table comments (Waiman Long) [1970177]
+- ACPI: x86: Call acpi_boot_table_init() after acpi_table_upgrade() (Mark Langsdorf) [1946282]
+- acpi/drivers/thermal: Remove TRIPS_NONE cooling device binding (Mark Langsdorf) [1946282]
+- thermal/drivers/acpi: Use hot and critical ops (Mark Langsdorf) [1946282]
+- thermal/core: Add critical and hot ops (Mark Langsdorf) [1946282]
+- thermal/core: Emit a warning if the thermal zone is updated without ops (Mark Langsdorf) [1946282]
+- ACPI: scan: Fix _STA getting called on devices with unmet dependencies (Mark Langsdorf) [1946282]
+- ACPI: tables: x86: Reserve memory occupied by ACPI tables (Mark Langsdorf) [1946282]
+- ACPICA: Always create namespace nodes using acpi_ns_create_node() (Mark Langsdorf) [1946282]
+- ACPI: platform: Add balanced-performance platform profile (Mark Langsdorf) [1946282]
+- ACPI: platform: Hide ACPI_PLATFORM_PROFILE option (Mark Langsdorf) [1946282]
+- ACPICA: Remove some code duplication from acpi_ev_address_space_dispatch (Mark Langsdorf) [1946282]
+- ACPICA: Fix race in generic_serial_bus (I2C) and GPIO op_region parameter handling (Mark Langsdorf) [1946282]
+- ACPI: property: Satisfy kernel doc validator (part 2) (Mark Langsdorf) [1946282]
+- ACPI: property: Satisfy kernel doc validator (part 1) (Mark Langsdorf) [1946282]
+- ACPI: property: Make acpi_node_prop_read() static (Mark Langsdorf) [1946282]
+- ACPI: property: Remove dead code (Mark Langsdorf) [1946282]
+- iommu/amd: Fix performance counter initialization (Mark Langsdorf) [1946282]
+- ACPI: property: Fix fwnode string properties matching (Mark Langsdorf) [1946282]
+- ACPI / NUMA: add a stub function for node_to_pxm() (Mark Langsdorf) [1946282]
+- ACPI: OSL: Rework acpi_check_resource_conflict() (Mark Langsdorf) [1946282]
+- ACPI: APEI: ERST: remove unneeded semicolon (Mark Langsdorf) [1946282]
+- iommu/vt-d: Add new enum value and structure for SATC (Mark Langsdorf) [1946282]
+- ACPI: Add support for native USB4 control _OSC (Mark Langsdorf) [1946282]
+- ACPI: Execute platform _OSC also with query bit clear (Mark Langsdorf) [1946282]
+- redhat/configs: Add CONFIG_ACPI_FPDT (Mark Langsdorf) [1946282]
+- ACPI: tables: introduce support for FPDT table (Mark Langsdorf) [1946282]
+- ACPI: APEI: Add is_generic_error() to identify GHES sources (Mark Langsdorf) [1946282]
+- ACPI: platform-profile: Fix possible deadlock in platform_profile_remove() (Mark Langsdorf) [1946282]
+- ACPI: platform-profile: Introduce object pointers to callbacks (Mark Langsdorf) [1946282]
+- PCI/ACPI: Clarify message about _OSC failure (Mark Langsdorf) [1946282]
+- PCI/ACPI: Remove unnecessary osc_lock (Mark Langsdorf) [1946282]
+- PCI/ACPI: Make acpi_pci_osc_control_set() static (Mark Langsdorf) [1946282]
+- media: ACPI / bus: Add acpi_dev_get_next_match_dev() and helper macro (Mark Langsdorf) [1946282]
+- ACPI: scan: Adjust white space in acpi_device_add() (Mark Langsdorf) [1946282]
+- ACPI: scan: Rearrange memory allocation in acpi_device_add() (Mark Langsdorf) [1946282]
+- ACPI: platform-profile: Drop const qualifier for cur_profile (Mark Langsdorf) [1946282]
+- ACPI: configfs: add missing check after configfs_register_default_group() (Mark Langsdorf) [1946282]
+- ACPI: CPPC: initialise vaddr pointers to NULL (Mark Langsdorf) [1946282]
+- ACPI: CPPC: add __iomem annotation to generic_comm_base pointer (Mark Langsdorf) [1946282]
+- ACPI: CPPC: remove __iomem annotation for cpc_reg's address (Mark Langsdorf) [1946282]
+- ACPI: Use DEVICE_ATTR_<RW|RO|WO> macros (Mark Langsdorf) [1946282]
+- ACPICA: Update version to 20210105 (Mark Langsdorf) [1946282]
+- ACPICA: Updated all copyrights to 2021 (Mark Langsdorf) [1946282]
+- ACPICA: Remove the VRTC table (Mark Langsdorf) [1946282]
+- ACPICA: Remove the MTMR (Mid-Timer) table (Mark Langsdorf) [1946282]
+- ACPICA: Update version to 20201217 (Mark Langsdorf) [1946282]
+- ACPICA: add type casts for string functions (Mark Langsdorf) [1946282]
+- ACPICA: fix -Wfallthrough (Mark Langsdorf) [1946282]
+- ACPICA: Clean up exception code class checks (Mark Langsdorf) [1946282]
+- ACPICA: Fix exception code class checks (Mark Langsdorf) [1946282]
+- redhat/configs: Add CONFIG_ACPI_PLATFORM_PROFILE (Mark Langsdorf) [1946282]
+- ACPI: platform: Add platform profile support (Mark Langsdorf) [1946282]
+- NTB/msi: Use irq_has_action() (Myron Stowe) [1933153]
+- NTB: Use struct_size() helper in devm_kzalloc() (Myron Stowe) [1933153]
+- ntb: intel: Fix memleak in intel_ntb_pci_probe (Myron Stowe) [1933153]
+- NTB: hw: amd: fix an issue about leak system resources (Myron Stowe) [1933153]
+- ntb: hw: remove the code that sets the DMA mask (Myron Stowe) [1933153]
+- [s390] s390/qdio: remove 'merge_pending' mechanism (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: improve handling of PENDING buffers for QEBSM devices (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: rework q->qdio_error indication (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: inline qdio_kick_handler() (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: track time of last data IRQ for each device (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: make thinint registration symmetric (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: adopt new tasklet API (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: remove qdio_inbound_q_moved() wrapper (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: remove Input tasklet code (Claudio Imbrenda) [1919251]
+- [s390] scsi: zfcp: Do not set COMMAND_COMPLETE (Claudio Imbrenda) [1919251]
+- [s390] scsi: zfcp: Handle event-lost notification for Version Change events (Claudio Imbrenda) [1919251]
+- [s390] scsi: zfcp: Process Version Change events (Claudio Imbrenda) [1919251]
+- [s390] scsi: zfcp: Clarify & assert the stat_lock locking in zfcp_qdio_send() (Claudio Imbrenda) [1919251]
+- [s390] scsi: zfcp: Remove orphaned function declarations (Claudio Imbrenda) [1919251]
+- [s390] scsi: zfcp: Lift Input Queue tasklet from qdio (Claudio Imbrenda) [1919251]
+- [s390] scsi: zfcp: Clarify access to erp_action in zfcp_fsf_req_complete() (Claudio Imbrenda) [1919251]
+- [s390] scsi: zfcp: Use list_first_entry_or_null() in zfcp_erp_thread() (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: always use dev_name() for device name in QIB (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: clean up QDR setup (Claudio Imbrenda) [1919251]
+- [s390] s390/qdio: make qdio_handle_aobs() more robust (Claudio Imbrenda) [1919251]
+- [s390] s390/cpumf: disable preemption when accessing per-cpu variable (Claudio Imbrenda) [1925527]
+- [s390] s390/cpumf: rename header file to hwctrset.h (Claudio Imbrenda) [1925527]
+- [s390] s390/cpumf: remove 60 seconds read limit (Claudio Imbrenda) [1925527]
+- [s390] s390/cpumf: Add support for complete counter set extraction (Claudio Imbrenda) [1925527]
+
+* Fri Jun 25 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-318.el8]
+- KVM: X86: hyper-v: Task srcu lock when accessing kvm_memslots() (Vitaly Kuznetsov) [1904570]
+- KVM: nSVM: remove a warning about vmcb01 VM exit reason (Vitaly Kuznetsov) [1904570]
+- KVM: x86: Consolidate guest enter/exit logic to common helpers (Vitaly Kuznetsov) [1904570]
+- KVM: x86: Defer vtime accounting 'til after IRQ handling (Vitaly Kuznetsov) [1904570]
+- context_tracking: Move guest exit vtime accounting to separate helpers (Vitaly Kuznetsov) [1904570]
+- context_tracking: Move guest exit context tracking to separate helpers (Vitaly Kuznetsov) [1904570]
+- context_tracking: Make guest_enter/exit() .noinstr ready (Vitaly Kuznetsov) [1904570]
+- sched/cputime: Rename vtime_account_system() to vtime_account_kernel() (Vitaly Kuznetsov) [1904570]
+- x86/kvm/svm: Move guest enter/exit into .noinstr.text (Vitaly Kuznetsov) [1904570]
+- x86/kvm/vmx: Move guest enter/exit into .noinstr.text (Vitaly Kuznetsov) [1904570]
+- x86/kvm/svm: Add hardirq tracing on guest enter/exit (Vitaly Kuznetsov) [1904570]
+- x86/kvm/vmx: Add hardirq tracing to guest enter/exit (Vitaly Kuznetsov) [1904570]
+- x86/kvm: Move context tracking where it belongs (Vitaly Kuznetsov) [1904570]
+- Move some more variables to kernel job templates (Michael Hofmann)
+- Use a different branch name for realtime pipelines (Michael Hofmann)
+- block: mark queue init done at the end of blk_register_queue (Ming Lei) [1963766]
+- block: fix race between adding/removing rq qos and normal IO (Ming Lei) [1963766]
+- netfilter: x_tables: Use correct memory barriers. (Phil Sutter) [1949090]
+- Revert "netfilter: x_tables: Switch synchronization to RCU" (Phil Sutter) [1949090]
+- vfio/pci/nvlink2: Do not attempt NPU2 setup on POWER8NVL NPU (Gustavo Walbon) [1891589]
+- powerpc/powernv/npu: Do not attempt NPU2 setup on POWER8NVL NPU (Gustavo Walbon) [1891589]
+- cpupower: Add cpuid cap flag for MSR_AMD_HWCR support (Steve Best) [1949161]
+- cpupower: Remove family arg to decode_pstates() (Steve Best) [1949161]
+- cpupower: Condense pstate enabled bit checks in decode_pstates() (Steve Best) [1949161]
+- cpupower: Update family checks when decoding HW pstates (Steve Best) [1949161]
+- cpupower: Remove unused pscur variable. (Steve Best) [1949161]
+- cpupower: Add CPUPOWER_CAP_AMD_HW_PSTATE cpuid caps flag (Steve Best) [1949161]
+- cpupower: Correct macro name for CPB caps flag (Steve Best) [1949161]
+- cpupower: Update msr_pstate union struct naming (Steve Best) [1949161]
+- cpupower: add Makefile dependencies for install targets (Steve Best) [1949161]
+- tools/power/cpupower: Read energy_perf_bias from sysfs (Steve Best) [1949161]
+- tools: Avoid comma separated statements (Steve Best) [1949161]
+- cpupower: speed up generating git version string (Steve Best) [1949161]
+- cpupowerutils: fix spelling mistake "dependant" -> "dependent" (Steve Best) [1949161]
+- ext4: fix ext4_error_err save negative errno into superblock (Lukas Czerner) [1964928]
+- ext4: do not set SB_ACTIVE in ext4_orphan_cleanup() (Lukas Czerner) [1964928]
+- ext4: fix check to prevent false positive report of incorrect used inodes (Lukas Czerner) [1964928]
+- ext4: fix potential error in ext4_do_update_inode (Lukas Czerner) [1964928]
+- ext4: do not try to set xattr into ea_inode if value is empty (Lukas Czerner) [1964928]
+- ext4: fix potential htree index checksum corruption (Lukas Czerner) [1964928]
+- ext4: don't leak old mountpoint samples (Lukas Czerner) [1964928]
+- ext4: don't remount read-only with errors=continue on reboot (Lukas Czerner) [1964928]
+- ext4: fix deadlock with fs freezing and EA inodes (Lukas Czerner) [1964928]
+- ext4: fix a memory leak of ext4_free_data (Lukas Czerner) [1964928]
+- ext4: find old entry again if failed to rename whiteout (Lukas Czerner) [1945503]
+- ext4: fix bug for rename with RENAME_WHITEOUT (Lukas Czerner) [1945503]
+- mount: fix mounting of detached mounts onto targets that reside on shared mounts (Carlos Maiolino) [1959172]
+- fs: fix lazytime expiration handling in __writeback_single_inode() (Carlos Maiolino) [1936260]
+- tty: Don't hold ldisc lock in tty_reopen() if ldisc present (Waiman Long) [1968271]
+- tty/ldsem: Add lockdep asserts for ldisc_sem (Waiman Long) [1968271]
+- tty: Simplify tty->count math in tty_reopen() (Waiman Long) [1968271]
+- tty: Don't block on IO when ldisc change is pending (Waiman Long) [1968271]
+- tty: Hold tty_ldisc_lock() during tty_reopen() (Waiman Long) [1968271]
+- tty: Drop tty->count on tty_reopen() failure (Waiman Long) [1968271]
+- net: udp: Add support for getsockopt(..., ..., UDP_GRO, ..., ...); (Xin Long) [1951679]
+- net: Fix gro aggregation for udp encaps with zero csum (Xin Long) [1951679]
+- udp: ipv4: manipulate network header of NATed UDP GRO fraglist (Xin Long) [1951679]
+- udp: not remove the CRC flag from dev features when need_csum is false (Xin Long) [1951679]
+- udp: mask TOS bits in udp_v4_early_demux() (Xin Long) [1951679]
+- net: fix use-after-free when UDP GRO with shared fraglist (Xin Long) [1951679]
+- x86, sched: Treat Intel SNC topology as default, COD as exception (David Arcari) [1920040]
+- dmaengine: idxd: iax bus removal (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: fix cdev setup and free device lifetime issues (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: fix group conf_dev lifetime (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: fix engine conf_dev lifetime (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: fix wq conf_dev 'struct device' lifetime (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: fix idxd conf_dev 'struct device' lifetime (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: use ida for device instance enumeration (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: removal of pcim managed mmio mapping (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: cleanup pci interrupt vector allocation management (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: fix dma device lifetime (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: Fix potential null dereference on pointer status (Jerry Snitselaar) [1927070]
+- dmaengine: idxd: fix wq cleanup of WQCFG registers (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: clear MSIX permission entry on shutdown (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: fix wq size store permission state (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: fix opcap sysfs attribute output (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: Fix clobbering of SWERR overflow bit on writeback (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: add module parameter to force disable of SVA (Jerry Snitselaar) [1920734]
+- dmaengine: idxd: set DMA channel to be private (Jerry Snitselaar) [1920759]
+- dma: idxd: use DEFINE_MUTEX() for mutex lock (Jerry Snitselaar) [1955744]
+- dmaengine: idxd: check device state before issue command (Jerry Snitselaar) [1927070]
+- dmaengine: move channel device_node deletion to driver (Jerry Snitselaar) [1920721]
+- dmaengine: idxd: fix misc interrupt completion (Jerry Snitselaar) [1920757]
+- dmaengine: idxd: Fix list corruption in description completion (Jerry Snitselaar) [1920746]
+- dmaengine: idxd: add IAX configuration support in the IDXD driver (Jerry Snitselaar) [1837233]
+- dmaengine: idxd: add ATS disable knob for work queues (Jerry Snitselaar) [1921291]
+- dmaengine: idxd: define table offset multiplier (Jerry Snitselaar) [1921290]
+- dmaengine: idxd: Update calculation of group offset to be more readable (Jerry Snitselaar) [1955744]
+
+* Wed Jun 23 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-317.el8]
+- redhat/config: Double MAX_LOCKDEP_ENTRIES (Waiman Long) [1945937]
+- dm writecache: flush origin device when writing and cache is full (Mike Snitzer) [1970513]
+- dm snapshot: properly fix a crash when an origin has no snapshots (Mike Snitzer) [1970513]
+- dm verity: fix require_signatures module_param permissions (Mike Snitzer) [1970513]
+- dm snapshot: fix crash with transient storage and zero chunk size (Mike Snitzer) [1970513]
+- dm rq: fix double free of blk_mq_tag_set in dev remove after table load fails (Mike Snitzer) [1970513]
+- dm integrity: increase RECALC_SECTORS to improve recalculate speed (Mike Snitzer) [1970513]
+- dm integrity: don't re-write metadata if discarding same blocks (Mike Snitzer) [1970513]
+- dm raid: fix inconclusive reshape layout on fast raid4/5/6 table reload sequences (Mike Snitzer) [1970513]
+- dm raid: fix fall-through warning in rs_check_takeover() for Clang (Mike Snitzer) [1970513]
+- dm integrity: fix missing goto in bitmap_flush_interval error handling (Mike Snitzer) [1970513]
+- dm space map common: fix division bug in sm_ll_find_free_block() (Mike Snitzer) [1970513]
+- dm persistent data: packed struct should have an aligned() attribute too (Mike Snitzer) [1970513]
+- dm btree spine: remove paranoid node_check call in node_prep_for_write() (Mike Snitzer) [1970513]
+- dm space map disk: remove redundant calls to sm_disk_get_nr_free() (Mike Snitzer) [1970513]
+- dm persistent data: remove unused return from exit_shadow_spine() (Mike Snitzer) [1970513]
+- dm verity: allow only one error handling mode (Mike Snitzer) [1970513]
+- dm: remove useless loop in __split_and_process_bio (Mike Snitzer) [1970513]
+- redhat/configs: Update CONFIG_PINCTRL_AMD (David Arcari) [1964588]
+- ionic: fix ptp support config breakage (Jonathan Toppins) [1951826]
+- ionic: return -EFAULT if copy_to_user() fails (Jonathan Toppins) [1951826]
+- ionic: git_ts_info bit shifters (Jonathan Toppins) [1951826]
+- ionic: extend ts_config set locking (Jonathan Toppins) [1951826]
+- ionic: add ts_config replay (Jonathan Toppins) [1951826]
+- ionic: ignore EBUSY on queue start (Jonathan Toppins) [1951826]
+- ionic: re-start ptp after queues up (Jonathan Toppins) [1951826]
+- ionic: add SKBTX_IN_PROGRESS (Jonathan Toppins) [1951826]
+- ionic: check for valid tx_mode on SKBTX_HW_TSTAMP xmit (Jonathan Toppins) [1951826]
+- ionic: remove unnecessary compat ifdef (Jonathan Toppins) [1951826]
+- ionic: fix up a couple of code style nits (Jonathan Toppins) [1951826]
+- ionic: advertise support for hardware timestamps (Jonathan Toppins) [1951826]
+- ionic: ethtool ptp stats (Jonathan Toppins) [1951826]
+- ionic: add ethtool support for PTP (Jonathan Toppins) [1951826]
+- ionic: add and enable tx and rx timestamp handling (Jonathan Toppins) [1951826]
+- ethtool: add timestamping related string sets (Jonathan Toppins) [1951826]
+- net: Introduce peer to peer one step PTP time stamping. (Jonathan Toppins) [1951826]
+- ionic: set up hw timestamp queues (Jonathan Toppins) [1951826]
+- ionic: add rx filtering for hw timestamp steering (Jonathan Toppins) [1951826]
+- ionic: link in the new hw timestamp code (Jonathan Toppins) [1951826]
+- ionic: add hw timestamp support files (Jonathan Toppins) [1951826]
+- ionic: split adminq post and wait calls (Jonathan Toppins) [1951826]
+- ionic: add hw timestamp structs to interface (Jonathan Toppins) [1951826]
+- ionic: add handling of larger descriptors (Jonathan Toppins) [1951826]
+- ionic: add new queue features to interface (Jonathan Toppins) [1951826]
+- ionic: pull per-q stats work out of queue loops (Jonathan Toppins) [1951826]
+- ionic: avoid races in ionic_heartbeat_check (Jonathan Toppins) [1951826]
+- ionic: fix sizeof usage (Jonathan Toppins) [1951826]
+- ionic: count dma errors (Jonathan Toppins) [1951826]
+- ionic: protect adminq from early destroy (Jonathan Toppins) [1951826]
+- ionic: stop watchdog when in broken state (Jonathan Toppins) [1951826]
+- ionic: block actions during fw reset (Jonathan Toppins) [1951826]
+- ionic: update ethtool support bits for BASET (Jonathan Toppins) [1951826]
+- ionic: fix unchecked reference (Jonathan Toppins) [1951826]
+- ionic: simplify the intr_index use in txq_init (Jonathan Toppins) [1951826]
+- ionic: code cleanup details (Jonathan Toppins) [1951826]
+- ionic: Update driver to use ethtool_sprintf (Jonathan Toppins) [1951826]
+- ionic: aggregate Tx byte counting calls (Jonathan Toppins) [1951826]
+- ionic: simplify tx clean (Jonathan Toppins) [1951826]
+- ionic: generic tx skb mapping (Jonathan Toppins) [1951826]
+- ionic: simplify TSO descriptor mapping (Jonathan Toppins) [1951826]
+- ionic: simplify use of completion types (Jonathan Toppins) [1951826]
+- ionic: rebuild debugfs on qcq swap (Jonathan Toppins) [1951826]
+- ionic: simplify rx skb alloc (Jonathan Toppins) [1951826]
+- ionic: optimize fastpath struct usage (Jonathan Toppins) [1951826]
+- ionic: implement Rx page reuse (Jonathan Toppins) [1951826]
+- ionic: move rx_page_alloc and free (Jonathan Toppins) [1951826]
+- drivers: net: ionic: simplify the return expression of ionic_set_rxfh() (Jonathan Toppins) [1951826]
+- ionic: change mtu after queues are stopped (Jonathan Toppins) [1951826]
+- ionic: remove some unnecessary oom messages (Jonathan Toppins) [1951826]
+- ionic: useful names for booleans (Jonathan Toppins) [1951826]
+- ionic: change set_rx_mode from_ndo to can_sleep (Jonathan Toppins) [1951826]
+- ionic: flatten calls to ionic_lif_rx_mode (Jonathan Toppins) [1951826]
+- ionic: batch rx buffer refilling (Jonathan Toppins) [1951826]
+- ionic: add lif quiesce (Jonathan Toppins) [1951826]
+- ionic: check for link after netdev registration (Jonathan Toppins) [1951826]
+- ionic: check port ptr before use (Jonathan Toppins) [1951826]
+- platform/x86: hp-wireless: add AMD's hardware id to the supported list (David Arcari) [1960472]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 1 (David Arcari) [1960472]
+- net/bond: revert deletion of driver and module versions (Jarod Wilson) [1955702]
+- net:sfc: fix non-freed irq in legacy irq mode (Íñigo Huguet) [1906728]
+- devlink: Extend SF port attributes to have external attribute (Petr Oros) [1959002]
+- netfilter: xt_SECMARK: add new revision to fix structure layout (Phil Sutter) [1961714]
+- xfrm: ipcomp: remove unnecessary get_cpu() (Sabrina Dubroca) [1946885]
+- platform/x86: intel_pmc_core: Add support for Alder Lake PCH-P (David Arcari) [1838624]
+- scsi: qedf: Update the max_id value in host structure (Nilesh Javali) [1954876]
+- scsi: qedf: Add pointer checks in qedf_update_link_speed() (Nilesh Javali) [1871687]
+- [s390] s390/nvme: support firmware-assisted dump to NVMe disks (Claudio Imbrenda) [1847447]
+- [s390] s390: nvme dump support (Claudio Imbrenda) [1847447]
+- [s390] s390/boot: add build-id to decompressor (Philipp Rudo) [1897093]
+- genirq: Reduce irqdebug cacheline bouncing (Gustavo Walbon) [1957729]
+
+* Mon Jun 21 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-316.el8]
+- CI: Merge MR, baseline and private configs (Michael Hofmann)
+- RDMA/rxe: Fix failure during driver load (Kamal Heib) [1930263]
+- xfrm: remove the fragment check for ipv6 beet mode (Xin Long) [1965185]
+- SUNRPC: Fix NFS READs that start at non-page-aligned offsets (Benjamin Coddington) [1950303]
+- pNFS/NFSv4: Improve rejection of out-of-order layouts (Benjamin Coddington) [1950303]
+- pNFS/NFSv4: Update the layout barrier when we schedule a layoutreturn (Benjamin Coddington) [1950303]
+- pNFS/NFSv4: Try to return invalid layout in pnfs_layout_process() (Benjamin Coddington) [1950303]
+- SUNRPC: Move the svc_xdr_recvfrom tracepoint again (Benjamin Coddington) [1950303]
+- nfsd4: readdirplus shouldn't return parent of export (Benjamin Coddington) [1950303]
+- NFS: nfs_igrab_and_active must first reference the superblock (Benjamin Coddington) [1950303]
+- NFS: nfs_delegation_find_inode_server must first reference the superblock (Benjamin Coddington) [1950303]
+- NFS/pNFS: Fix a leak of the layout 'plh_outstanding' counter (Benjamin Coddington) [1950303]
+- NFS/pNFS: Don't leak DS commits in pnfs_generic_retry_commit() (Benjamin Coddington) [1950303]
+- NFS/pNFS: Don't call pnfs_free_bucket_lseg() before removing the request (Benjamin Coddington) [1950303]
+- pNFS: Stricter ordering of layoutget and layoutreturn (Benjamin Coddington) [1950303]
+- pNFS: Clean up pnfs_layoutreturn_free_lsegs() (Benjamin Coddington) [1950303]
+- pNFS: We want return-on-close to complete when evicting the inode (Benjamin Coddington) [1950303]
+- pNFS: Mark layout for return if return-on-close was not sent (Benjamin Coddington) [1950303]
+- net: sunrpc: interpret the return value of kstrtou32 correctly (Benjamin Coddington) [1950303]
+- SUNRPC: Handle TCP socket sends with kernel_sendpage() again (Benjamin Coddington) [1950303]
+- NFS/pNFS: Fix a typo in ff_layout_resend_pnfs_read() (Benjamin Coddington) [1950303]
+- pNFS/flexfiles: Avoid spurious layout returns in ff_layout_choose_ds_for_read (Benjamin Coddington) [1950303]
+- NFSv4/pnfs: Add tracing for the deviceid cache (Benjamin Coddington) [1950303]
+- fs/lockd: convert comma to semicolon (Benjamin Coddington) [1950303]
+- SUNRPC: When expanding the buffer, we may need grow the sparse pages (Benjamin Coddington) [1950303]
+- SUNRPC: Cleanup - constify a number of xdr_buf helpers (Benjamin Coddington) [1950303]
+- SUNRPC: Clean up open coded setting of the xdr_stream 'nwords' field (Benjamin Coddington) [1950303]
+- SUNRPC: _copy_to/from_pages() now check for zero length (Benjamin Coddington) [1950303]
+- SUNRPC: Cleanup xdr_shrink_bufhead() (Benjamin Coddington) [1950303]
+- SUNRPC: Fix xdr_expand_hole() (Benjamin Coddington) [1950303]
+- SUNRPC: Fixes for xdr_align_data() (Benjamin Coddington) [1950303]
+- SUNRPC: _shift_data_left/right_pages should check the shift length (Benjamin Coddington) [1950303]
+- NFSv4.1: use BITS_PER_LONG macro in nfs4session.h (Benjamin Coddington) [1950303]
+- xprtrdma: Fix XDRBUF_SPARSE_PAGES support (Benjamin Coddington) [1950303]
+- sunrpc: fix xs_read_xdr_buf for partial pages receive (Benjamin Coddington) [1950303]
+- Revert "nfsd4: support change_attr_type attribute" (Benjamin Coddington) [1950303]
+- nfsd4: don't query change attribute in v2/v3 case (Benjamin Coddington) [1950303]
+- nfsd: minor nfsd4_change_attribute cleanup (Benjamin Coddington) [1950303]
+- nfsd: simplify nfsd4_change_info (Benjamin Coddington) [1950303]
+- nfsd: only call inode_query_iversion in the I_VERSION case (Benjamin Coddington) [1950303]
+- nfs_common: need lock during iterate through the list (Benjamin Coddington) [1950303]
+- nfsd: Fix message level for normal termination (Benjamin Coddington) [1950303]
+- NFS: switch nfsiod to be an UNBOUND workqueue. (Benjamin Coddington) [1950303]
+- lockd: don't use interval-based rebinding over TCP (Benjamin Coddington) [1950303]
+- net: sunrpc: Fix 'snprintf' return value check in 'do_xprt_debugfs' (Benjamin Coddington) [1950303]
+- NFSv4: Refactor to use user namespaces for nfs4idmap (Benjamin Coddington) [1950303]
+- NFS: NFSv2/NFSv3: Use cred from fs_context during mount (Benjamin Coddington) [1950303]
+- NFSv4: Fix a pNFS layout related use-after-free race when freeing the inode (Benjamin Coddington) [1950303]
+- SUNRPC: Fix up xdr_set_page() (Benjamin Coddington) [1950303]
+- SUNRPC: Fix open coded xdr_stream_remaining() (Benjamin Coddington) [1950303]
+- pNFS: Clean up open coded xdr string decoding (Benjamin Coddington) [1950303]
+- SUNRPC: Fix up open coded kmemdup_nul() (Benjamin Coddington) [1950303]
+- pNFS/flexfiles: Fix up layoutstats reporting for non-TCP transports (Benjamin Coddington) [1950303]
+- NFSv4/pNFS: Store the transport type in struct nfs4_pnfs_ds_addr (Benjamin Coddington) [1950303]
+- pNFS: Add helpers for allocation/free of struct nfs4_pnfs_ds_addr (Benjamin Coddington) [1950303]
+- NFSv4/pNFS: Use connections to a DS that are all of the same protocol family (Benjamin Coddington) [1950303]
+- SUNRPC: Remove unused function xprt_load_transport() (Benjamin Coddington) [1950303]
+- NFS: Switch mount code to use xprt_find_transport_ident() (Benjamin Coddington) [1950303]
+- SUNRPC: Add a helper to return the transport identifier given a netid (Benjamin Coddington) [1950303]
+- SUNRPC: Close a race with transport setup and module put (Benjamin Coddington) [1950303]
+- SUNRPC: xprt_load_transport() needs to support the netid "rdma6" (Benjamin Coddington) [1950303]
+- SUNRPC: rpc_wake_up() should wake up tasks in the correct order (Benjamin Coddington) [1950303]
+- NFSv4: Observe the NFS_MOUNT_SOFTREVAL flag in _nfs4_proc_lookupp (Benjamin Coddington) [1950303]
+- NFSv3: Add emulation of the lookupp() operation (Benjamin Coddington) [1950303]
+- NFSv3: Refactor nfs3_proc_lookup() to split out the dentry (Benjamin Coddington) [1950303]
+- SUNRPC: Remove XDRBUF_SPARSE_PAGES flag in gss_proxy upcall (Benjamin Coddington) [1950303]
+- NFSD: Add tracepoints in nfsd4_decode/encode_compound() (Benjamin Coddington) [1950303]
+- NFSD: Add tracepoints in nfsd_dispatch() (Benjamin Coddington) [1950303]
+- NFSD: Add common helpers to decode void args and encode void results (Benjamin Coddington) [1950303]
+- SUNRPC: Prepare for xdr_stream-style decoding on the server-side (Benjamin Coddington) [1950303]
+- SUNRPC: Add xdr_set_scratch_page() and xdr_reset_scratch_buffer() (Benjamin Coddington) [1950303]
+- NFSD: Add SPDX header for fs/nfsd/trace.c (Benjamin Coddington) [1950303]
+- SUNRPC: Move the svc_xdr_recvfrom() tracepoint (Benjamin Coddington) [1950303]
+- NFSD: Add SPDX header for fs/nfsd/trace.c (Benjamin Coddington) [1950303]
+- NFSD: A semicolon is not needed after a switch statement. (Benjamin Coddington) [1950303]
+- svcrdma: support multiple Read chunks per RPC (Benjamin Coddington) [1950303]
+- svcrdma: Use the new parsed chunk list when pulling Read chunks (Benjamin Coddington) [1950303]
+- svcrdma: Rename info::ri_chunklen (Benjamin Coddington) [1950303]
+- svcrdma: Clean up chunk tracepoints (Benjamin Coddington) [1950303]
+- svcrdma: Remove chunk list pointers (Benjamin Coddington) [1950303]
+- svcrdma: Support multiple Write chunks in svc_rdma_send_reply_chunk (Benjamin Coddington) [1950303]
+- svcrdma: Support multiple Write chunks in svc_rdma_map_reply_msg() (Benjamin Coddington) [1950303]
+- svcrdma: Support multiple write chunks when pulling up (Benjamin Coddington) [1950303]
+- svcrdma: Use parsed chunk lists to encode Reply transport headers (Benjamin Coddington) [1950303]
+- svcrdma: Use parsed chunk lists to construct RDMA Writes (Benjamin Coddington) [1950303]
+- svcrdma: Use parsed chunk lists to detect reverse direction replies (Benjamin Coddington) [1950303]
+- svcrdma: Use parsed chunk lists to derive the inv_rkey (Benjamin Coddington) [1950303]
+- svcrdma: Add a "parsed chunk list" data structure (Benjamin Coddington) [1950303]
+- svcrdma: Clean up svc_rdma_encode_reply_chunk() (Benjamin Coddington) [1950303]
+- svcrdma: Post RDMA Writes while XDR encoding replies (Benjamin Coddington) [1950303]
+- NFSD: Invoke svc_encode_result_payload() in "read" NFSD encoders (Benjamin Coddington) [1950303]
+- SUNRPC: Rename svc_encode_read_payload() (Benjamin Coddington) [1950303]
+- svcrdma: Refactor the RDMA Write path (Benjamin Coddington) [1950303]
+- svcrdma: Const-ify the xdr_buf arguments (Benjamin Coddington) [1950303]
+- SUNRPC: Adjust synopsis of xdr_buf_subsegment() (Benjamin Coddington) [1950303]
+- svcrdma: Catch another Reply chunk overflow case (Benjamin Coddington) [1950303]
+- xprtrdma: Micro-optimize MR DMA-unmapping (Benjamin Coddington) [1950303]
+- xprtrdma: Move rpcrdma_mr_put() (Benjamin Coddington) [1950303]
+- xprtrdma: Trace unmap_sync calls (Benjamin Coddington) [1950303]
+- xprtrdma: Display the task ID when reporting MR events (Benjamin Coddington) [1950303]
+- xprtrdma: Clean up trace_xprtrdma_nomrs() (Benjamin Coddington) [1950303]
+- xprtrdma: Clean up xprtrdma callback tracepoints (Benjamin Coddington) [1950303]
+- xprtrdma: Clean up tracepoints in the reply path (Benjamin Coddington) [1950303]
+- xprtrdma: Clean up reply parsing error tracepoints (Benjamin Coddington) [1950303]
+- xprtrdma: Clean up trace_xprtrdma_post_linv (Benjamin Coddington) [1950303]
+- xprtrdma: Introduce FRWR completion IDs (Benjamin Coddington) [1950303]
+- xprtrdma: Introduce Send completion IDs (Benjamin Coddington) [1950303]
+- xprtrdma: Introduce Receive completion IDs (Benjamin Coddington) [1950303]
+- xprtrdma: Replace dprintk call sites in ERR_CHUNK path (Benjamin Coddington) [1950303]
+- xprtrdma: Fix a BUG when tracing is enabled with NFSv4.1 on RDMA (Benjamin Coddington) [1950303]
+- drm: virtio: fix common struct sg_table related issues (Eric Auger) [1971821]
+- net/mlx5e: Release skb in case of failure in tc update skb (Alaa Hleihel) [1915307]
+- net/mlx5: Release devlink object if adev fails (Alaa Hleihel) [1915307]
+- net/mlx5: Fix compilation warning for 32-bit platform (Alaa Hleihel) [1915307]
+- net/mlx5: Use effective interrupt affinity (Alaa Hleihel) [1915307]
+- net/mlx5: Replace irq_to_desc() abuse (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Remove unneeded semicolon (Alaa Hleihel) [1915307]
+- net: mlx5: convert comma to semicolon (Alaa Hleihel) [1915307]
+- net/mlx5e: Fill mlx5e_create_cq_param in a function (Alaa Hleihel) [1915307]
+- net/mlx5e: Split between RX/TX tunnel FW support indication (Alaa Hleihel) [1915307]
+- net/mlx5: Arm only EQs with EQEs (Alaa Hleihel) [1915307]
+- net/mlx5e: Remove duplicated include (Alaa Hleihel) [1915307]
+- net/mlx5e: Add TX port timestamp support (Alaa Hleihel) [1915307 1919646]
+- net/mlx5e: Add TX PTP port object support (Alaa Hleihel) [1915307 1919646]
+- net/mlx5e: Move MLX5E_RX_ERR_CQE macro (Alaa Hleihel) [1915307 1919646]
+- net/mlx5e: Split SW group counters update function (Alaa Hleihel) [1915307 1919646]
+- net/mlx5e: Change skb fifo push/pop API to be used without SQ (Alaa Hleihel) [1915307 1919646]
+- net/mlx5e: Allow SQ outside of channel context (Alaa Hleihel) [1915307 1919646]
+- net/mlx5e: Allow RQ outside of channel context (Alaa Hleihel) [1915307 1919646]
+- net/mlx5e: Allow CQ outside of channel context (Alaa Hleihel) [1915307 1919646]
+- net/mlx5e: Free drop RQ in a dedicated function (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Remove IB representors dead code (Alaa Hleihel) [1915307]
+- net/mlx5: Simplify eswitch mode check (Alaa Hleihel) [1915307]
+- net/mlx5: Delete custom device management logic (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Convert mlx5_ib to use auxiliary bus (Alaa Hleihel) [1915307]
+- net/mlx5e: Connect ethernet part to auxiliary bus (Alaa Hleihel) [1915307]
+- vdpa/mlx5: Connect mlx5_vdpa to auxiliary bus (Alaa Hleihel) [1915307]
+- net/mlx5: Register mlx5 devices to auxiliary virtual bus (Alaa Hleihel) [1915307]
+- vdpa/mlx5: Make hardware definitions visible to all mlx5 devices (Alaa Hleihel) [1915307]
+- net/mlx5_core: Clean driver version and name (Alaa Hleihel) [1915307]
+- net/mlx5: Treat host PF vport as other (non eswitch manager) vport (Alaa Hleihel) [1915307]
+- net/mlx5: Export steering related functions (Alaa Hleihel) [1915307]
+- net/mlx5: Expose other function ifc bits (Alaa Hleihel) [1915307]
+- net/mlx5: Expose IP-in-IP TX and RX capability bits (Alaa Hleihel) [1915307]
+- net/mlx5: Update the hardware interface definition for vhca state (Alaa Hleihel) [1915307]
+- net/mlx5: Avoid exposing driver internal command helpers (Alaa Hleihel) [1915307]
+- net/mlx5: Add ts_cqe_to_dest_cqn related bits (Alaa Hleihel) [1915307]
+- net/mlx5: Add misc4 to mlx5_ifc_fte_match_param_bits (Alaa Hleihel) [1915307]
+- net/mlx5: Check dr mask size against mlx5_match_param size (Alaa Hleihel) [1915307]
+- net/mlx5: Add sampler destination type (Alaa Hleihel) [1915307]
+- net/mlx5: Add sample offload hardware bits and structures (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Use PCI device for dma mappings (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Silence the overflow warning while building offset mask (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Check for ERR_PTR from uverbs_zalloc() (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Enable querying AH for XRC QP types (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Lower setting the umem's PAS for SRQ (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Use ib_umem_find_best_pgsz() for devx (Alaa Hleihel) [1915307]
+- RDMA/mlx5: mlx5_umem_find_best_quantized_pgoff() for CQ (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Use mlx5_umem_find_best_quantized_pgoff() for QP (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Directly compute the PAS list for raw QP RQ's (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Use mlx5_umem_find_best_quantized_pgoff() for WQ (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Use ib_umem_find_best_pgoff() for SRQ (Alaa Hleihel) [1915307]
+- net: mlx5: Replace in_irq() usage (Alaa Hleihel) [1915307]
+- net/mlx5: Cleanup kernel-doc warnings (Alaa Hleihel) [1915307]
+- net/mlx5e: Validate stop_room size upon user input (Alaa Hleihel) [1915307]
+- net/mlx5: DR, Free unused buddy ICM memory (Alaa Hleihel) [1915307]
+- net/mlx5: DR, ICM memory pools sync optimization (Alaa Hleihel) [1915307]
+- net/mlx5: DR, Sync chunks only during free (Alaa Hleihel) [1915307]
+- net/mlx5: DR, Handle ICM memory via buddy allocation instead of buckets (Alaa Hleihel) [1915307]
+- net/mlx5: DR, Add buddy allocator utilities (Alaa Hleihel) [1915307]
+- net/mlx5: DR, Rename matcher functions to be more HW agnostic (Alaa Hleihel) [1915307]
+- net/mlx5: DR, Rename builders HW specific names (Alaa Hleihel) [1915307]
+- net/mlx5: DR, Remove unused member of action struct (Alaa Hleihel) [1915307]
+- IB/mlx5: Add support for NDR link speed (Alaa Hleihel) [1915307 1926596]
+- RDMA/mlx5: Use ib_umem_find_best_pgsz() for mkc's (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Split the WR setup out of mlx5_ib_update_xlt() (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Move xlt_emergency_page_mutex into mr.c (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Change mlx5_ib_populate_pas() to use rdma_for_each_block() (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Remove npages from mlx5_ib_cont_pages() (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Remove ncont from mlx5_ib_cont_pages() (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Remove order from mlx5_ib_cont_pages() (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Move mlx5_ib_cont_pages() to the creation of the mlx5_ib_mr (Alaa Hleihel) [1915307]
+- RDMA/mlx5: Remove mlx5_ib_mr->order (Alaa Hleihel) [1915307]
+- net/mlx5: fix error return code in mlx5e_tc_nic_init() (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5e: Fix IPsec packet drop by mlx5e_tc_update_skb (Alaa Hleihel) [1915306 1915307]
+- net/mlx5e: Use spin_lock_bh for async_icosq_lock (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Replace zero-length array with flexible-array member (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Fix uininitialized pointer read on pointer attr (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Add support for devlink reload limit no reset (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Add support for fw live patch event (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Add devlink param enable_remote_dev_reset support (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Add support for devlink reload action fw activate (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Handle sync reset abort event (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Handle sync reset now event (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Handle sync reset request event (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Set cap for pci sync for fw update event (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: Add functions to set/query MFRL register (Alaa Hleihel) [1915306 1915307]
+- net/mlx5e: Fix potential null pointer dereference (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5: Fix dereference on pointer attr after null check (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5: Use dma device access helper (Alaa Hleihel) [1915306 1915307]
+- mlx5: cross-tree: phase out dma_zalloc_coherent() (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: E-Switch, Support flow source for local vport (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: E-switch, Move devlink eswitch ports closer to eswitch (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: E-switch, Use helper function to load unload representor (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: E-switch, Add helper to check egress ACL need (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: E-switch, Use PF num in metadata reg c0 (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: DR, Add support for rule creation with flow source hint (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: DR, Call ste_builder directly with tag pointer (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: DR, Remove unneeded local variable (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: DR, Remove unneeded vlan check from L2 builder (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: DR, Remove unneeded check from source port builder (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: DR, Replace the check for valid STE entry (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Delete not needed GSI QP signal QP type (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Change GSI QP to have same creation flow like other QPs (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Reuse existing fields in parent QP storage object (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Embed GSI QP into general mlx5_ib QP (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: remove unreachable return (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5e: Use kfree() to free fd->g in accel_fs_tcp_create_groups() (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5e: Keep direct reference to mlx5_core_dev in tc ct (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5e: Support CT offload for tc nic flows (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5e: rework ct offload init messages (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5e: Add tc chains offload support for nic flows (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5: Refactor tc flow attributes structure (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5e: Split nic tc flow allocation and creation (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5e: Tc nic flows to use mlx5_chains flow tables (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5: Allow ft level ignore for nic rx tables (Alaa Hleihel) [1915306 1915307 1919642]
+- net/mlx5: Refactor multi chains and prios support (Alaa Hleihel) [1915306 1915307 1919642]
+- RDMA/mlx5: Don't call to restrack recursively (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Expose TIR and QP ICM address for sw_owner_v2 devices (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Allow DM allocation for sw_owner_v2 enabled devices (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Add sw_owner_v2 bit capability (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Delete duplicated mlx5_ptys_width enum (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: IPsec: make spdxcheck.py happy (Alaa Hleihel) [1915306 1915307]
+- mlx5: add pause frame stats (Alaa Hleihel) [1915306 1915307]
+- net/mlx5e: Add CQE compression support for multi-strides packets (Alaa Hleihel) [1915306 1915307]
+- net/mlx5e: Add support for tc trap (Alaa Hleihel) [1915306 1915307 1919643]
+- net/mlx5: E-Switch, Use vport metadata matching by default (Alaa Hleihel) [1915306 1915307]
+- net/mlx5: remove erroneous fallthrough (Alaa Hleihel) [1915306 1915307]
+- IB/mlx5: Add DCT RoCE LAG support (Alaa Hleihel) [1915306 1915307]
+- IB/mlx5: Add tx_affinity support for DCI QP (Alaa Hleihel) [1915306 1915307]
+- net/mlx5e: RX, Add a prefetch command for small L1_CACHE_BYTES (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Enable sniffer when device is in switchdev mode (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Add new IB rates support (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Replace open-coded offsetofend() macro (Alaa Hleihel) [1915306 1915307]
+- RDMA/mlx5: Simplify multiple else-if cases with switch keyword (Alaa Hleihel) [1915306 1915307]
+- net/mlx5e: Link non uplink representors to PCI device (Alaa Hleihel) [1915306 1915307 1959367]
+- perf stat: Use nftw() instead of ftw() (Michael Petlan) [1944684]
+- perf unwind: Set userdata for all __report_module() paths (Michael Petlan) [1944684]
+- perf debug: Move debug initialization earlier (Michael Petlan) [1944684]
+- perf script: Fix overrun issue for dynamically-allocated PMU type number (Michael Petlan) [1944684]
+- perf metricgroup: Fix system PMU metrics (Michael Petlan) [1944684]
+- perf metricgroup: Fix for metrics containing duration_time (Michael Petlan) [1944684]
+- perf evlist: Fix id index for heterogeneous systems (Michael Petlan) [1944684]
+- perf inject: Correct event attribute sizes (Michael Petlan) [1944684]
+- perf intel-pt: Fix 'CPU too large' error (Michael Petlan) [1944684]
+- perf stat: Take cgroups into account for shadow stats (Michael Petlan) [1944684]
+- perf stat: Introduce struct runtime_stat_data (Michael Petlan) [1944684]
+- libperf tests: Fail when failing to get a tracepoint id (Michael Petlan) [1944684]
+- libperf tests: If a test fails return non-zero (Michael Petlan) [1944684]
+- libperf tests: Avoid uninitialized variable warning (Michael Petlan) [1944684]
+- perf test: Fix shadow stat test for non-bash shells (Michael Petlan) [1944684]
+- perf bpf examples: Fix bpf.h header include directive in 5sec.c example (Michael Petlan) [1944684]
+- perf probe: Fix memory leak when synthesizing SDT probes (Michael Petlan) [1944684]
+- perf stat aggregation: Add separate thread member (Michael Petlan) [1944684]
+- perf stat aggregation: Add separate core member (Michael Petlan) [1944684]
+- perf stat aggregation: Add separate die member (Michael Petlan) [1944684]
+- perf stat aggregation: Add separate socket member (Michael Petlan) [1944684]
+- perf stat aggregation: Add separate node member (Michael Petlan) [1944684]
+- perf stat aggregation: Start using cpu_aggr_id in map (Michael Petlan) [1944684]
+- perf cpumap: Drop in cpu_aggr_map struct (Michael Petlan) [1944684]
+- perf cpumap: Add new map type for aggregation (Michael Petlan) [1944684]
+- perf stat: Replace aggregation ID with a struct (Michael Petlan) [1944684]
+- perf cpumap: Add new struct for cpu aggregation (Michael Petlan) [1944684]
+- perf cpumap: Use existing allocator to avoid using malloc (Michael Petlan) [1944684]
+- perf tests: Improve topology test to check all aggregation types (Michael Petlan) [1944684]
+- perf powerpc: Move syscall.tbl check to check-headers.sh (Michael Petlan) [1944684]
+- tools arch x86: Sync the msr-index.h copy with the kernel sources (Michael Petlan) [1944684]
+- perf mem: Factor out a function to generate sort order (Michael Petlan) [1944684]
+- perf sort: Add sort option for data page size (Michael Petlan) [1944684]
+- perf script: Support data page size (Michael Petlan) [1944684]
+- tools headers UAPI: Sync linux/stat.h with the kernel sources (Michael Petlan) [1944684]
+- tools: Factor HOSTCC, HOSTLD, HOSTAR definitions (Michael Petlan) [1944684]
+- perf config: Fix example command in manpage to conform to syntax specified in the SYNOPSIS section. (Michael Petlan) [1944684]
+- perf test: Make sample-parsing test aware of PERF_SAMPLE_{CODE,DATA}_PAGE_SIZE (Michael Petlan) [1944684]
+- perf tools: Add support to read build id from compressed elf (Michael Petlan) [1944684]
+- perf debug: Add debug_set_file function (Michael Petlan) [1944684]
+- perf evlist: Support pipe mode display (Michael Petlan) [1944684]
+- perf report: Support --header-only for pipe mode (Michael Petlan) [1944684]
+- perf vendor events: Add JSON metrics for imx8mm DDR Perf (Michael Petlan) [1944684]
+- perf metricgroup: Support adding metrics for system PMUs (Michael Petlan) [1944684]
+- perf metricgroup: Support printing metric groups for system PMUs (Michael Petlan) [1944684]
+- perf metricgroup: Split up metricgroup__print() (Michael Petlan) [1944684]
+- perf metricgroup: Fix metrics using aliases covering multiple PMUs (Michael Petlan) [1944684]
+- perf evlist: Change evlist__splice_list_tail() ordering (Michael Petlan) [1944684]
+- perf pmu: Add pmu_add_sys_aliases() (Michael Petlan) [1944684]
+- perf pmu: Add pmu_id() (Michael Petlan) [1944684]
+- perf jevents: Add support for system events tables (Michael Petlan) [1944684]
+- perf jevents: Add support for an extra directory level (Michael Petlan) [1944684]
+- perf evsel: Emit warning about kernel not supporting the data page size sample_type bit (Michael Petlan) [1944684]
+- perf record: Support new sample type for data page size (Michael Petlan) [1944684]
+- perf unwind: Fix separate debug info files when using elfutils' libdw's unwinder (Michael Petlan) [1944684]
+- perf record: Fix memory leak when using '--user-regs=?' to list registers (Michael Petlan) [1944684]
+- tools headers UAPI: Update tools's copy of linux/perf_event.h (Michael Petlan) [1944684]
+- tools build: Add missing libcap to test-all.bin target (Michael Petlan) [1944684]
+- perf test: Fix metric parsing test (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' record methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' diff methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' nr_threads method (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' deliver event method (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' header methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' raw samples methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' mmap pages parsing method (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' event attribute config methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for alternative 'struct evlist' constructors (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' event selection methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' event group methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' create maps methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' print methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' evsel list methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' pause/resume methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' id_pos methods (Michael Petlan) [1944684]
+- perf tools: Add aarch64 registers to --user-regs (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' tracking event methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' browser methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' sample id lookup methods (Michael Petlan) [1944684]
+- perf evlist: Ditch unused set/reset sample_bit methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' sample parsing methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' sideband thread methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' 'filter' methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' stats methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' 'workload' methods (Michael Petlan) [1944684]
+- perf evlist: Use the right prefix for 'struct evlist' methods: evlist__set_leader() (Michael Petlan) [1944684]
+- perf evsel: Convert last 'struct evsel' methods to the right evsel__ prefix (Michael Petlan) [1944684]
+- perf test: Add shadow stat test (Michael Petlan) [1944684]
+- perf build-id: Add build_id_cache__add function (Michael Petlan) [1944684]
+- perf build-id: Add __perf_session__cache_build_ids function (Michael Petlan) [1944684]
+- perf build-id: Use machine__for_each_dso in perf_session__cache_build_ids (Michael Petlan) [1944684]
+- perf data: Add is_perf_data function (Michael Petlan) [1944684]
+- perf symbols: Try to load vmlinux from buildid database (Michael Petlan) [1944684]
+- perf tools: Use struct extra_kernel_map in machine__process_kernel_mmap_event (Michael Petlan) [1944684]
+- perf build-id: Add check for existing link in buildid dir (Michael Petlan) [1944684]
+- perf tools: Add filename__decompress function (Michael Petlan) [1944684]
+- perf tools: Add build_id__is_defined function (Michael Petlan) [1944684]
+- tools lib: Adopt memchr_inv() from kernel (Michael Petlan) [1944684]
+- perf arm-spe: Add support for ARMv8.3-SPE (Michael Petlan) [1944684]
+- perf arm_spe: Decode memory tagging properties (Michael Petlan) [1944684]
+- perf arm-spe: Add more sub classes for operation packet (Michael Petlan) [1944684]
+- perf arm-spe: Refactor operation packet handling (Michael Petlan) [1944684]
+- perf arm-spe: Add new function arm_spe_pkt_desc_op_type() (Michael Petlan) [1944684]
+- perf arm-spe: Remove size condition checking for events (Michael Petlan) [1944684]
+- perf arm-spe: Refactor event type handling (Michael Petlan) [1944684]
+- perf arm-spe: Add new function arm_spe_pkt_desc_event() (Michael Petlan) [1944684]
+- perf arm-spe: Refactor counter packet handling (Michael Petlan) [1944684]
+- perf arm-spe: Add new function arm_spe_pkt_desc_counter() (Michael Petlan) [1944684]
+- perf arm-spe: Refactor context packet handling (Michael Petlan) [1944684]
+- perf arm_spe: Fixup top byte for data virtual address (Michael Petlan) [1944684]
+- perf arm-spe: Refactor address packet handling (Michael Petlan) [1944684]
+- perf arm-spe: Add new function arm_spe_pkt_desc_addr() (Michael Petlan) [1944684]
+- perf arm-spe: Refactor packet header parsing (Michael Petlan) [1944684]
+- perf arm-spe: Refactor printing string to buffer (Michael Petlan) [1944684]
+- perf expr: Force encapsulation on expr_id_data (Michael Petlan) [1944684]
+- perf vendor events: Update Skylake client events to v50 (Michael Petlan) [1944684]
+- perf data: Allow to use stdio functions for pipe mode (Michael Petlan) [1944684]
+- perf arm-spe: Fix packet length handling (Michael Petlan) [1944684]
+- perf arm-spe: Refactor arm_spe_get_events() (Michael Petlan) [1944684]
+- perf arm-spe: Refactor payload size calculation (Michael Petlan) [1944684]
+- perf arm-spe: Fix a typo in comment (Michael Petlan) [1944684]
+- perf arm-spe: Include bitops.h for BIT() macro (Michael Petlan) [1944684]
+- perf mem: Support ARM SPE events (Michael Petlan) [1944684]
+- perf c2c: Support AUX trace (Michael Petlan) [1944684]
+- perf mem: Support AUX trace (Michael Petlan) [1944684]
+- perf auxtrace: Add itrace option '-M' for memory events (Michael Petlan) [1944684]
+- perf mem: Only initialize memory event for recording (Michael Petlan) [1944684]
+- perf c2c: Support memory event PERF_MEM_EVENTS__LOAD_STORE (Michael Petlan) [1944684]
+- perf mem: Support new memory event PERF_MEM_EVENTS__LOAD_STORE (Michael Petlan) [1944684]
+- perf mem: Introduce weak function perf_mem_events__ptr() (Michael Petlan) [1944684]
+- perf mem: Search event name with more flexible path (Michael Petlan) [1944684]
+- perf jevents: Add test for arch std events (Michael Petlan) [1944684]
+- perf jevents: Tidy error handling (Michael Petlan) [1944684]
+- perf trace beauty: Allow header files in a different path (Michael Petlan) [1944684]
+- perf stat: Add --quiet option (Michael Petlan) [1944684]
+- perf stat: Support regex pattern in --for-each-cgroup (Michael Petlan) [1944684]
+- perf kvm: Add kvm-stat for arm64 (Michael Petlan) [1944684]
+- perf env: Conditionally compile BPF support code on having HAVE_LIBBPF_SUPPORT (Michael Petlan) [1944684]
+- perf annotate: Move bpf header inclusion to inside HAVE_LIBBPF_SUPPORT (Michael Petlan) [1944684]
+- perf tests: Skip the llvm and bpf tests if HAVE_LIBBPF_SUPPORT isn't defined (Michael Petlan) [1944684]
+- perf bpf: Enclose libbpf.h include within HAVE_LIBBPF_SUPPORT (Michael Petlan) [1944684]
+- perf test: Implement skip_reason callback for watchpoint tests (Michael Petlan) [1944684]
+- perf tests tsc: Add checking helper is_supported() (Michael Petlan) [1944684]
+- perf tests tsc: Make tsc testing as a common testing (Michael Petlan) [1944684]
+- perf mem2node: Improve warning if detected no memory nodes (Michael Petlan) [1944684]
+- perf version: Add a feature for libpfm4 (Michael Petlan) [1944684]
+- perf annotate mips: Add perf arch instructions annotate handlers (Michael Petlan) [1944684]
+- perf/x86/intel: Add Tremont Topdown support (Michael Petlan) [1944684]
+- perf/x86: Fix fall-through warnings for Clang (Michael Petlan) [1944684]
+- perf/x86/intel/lbr: Fix the return type of get_lbr_cycles() (Michael Petlan) [1944684]
+- perf/x86/intel: Fix rtm_abort_event encoding on Ice Lake (Michael Petlan) [1944684]
+- perf: Break deadlock involving exec_update_mutex (Michael Petlan) [1944684]
+- perf/x86/intel: Add event constraint for CYCLE_ACTIVITY.STALLS_MEM_ANY (Michael Petlan) [1944684]
+- perf/x86: Avoid TIF_IA32 when checking 64bit mode (Michael Petlan) [1944684]
+- bpf, ringbuf: Deny reserve of buffers larger than ringbuf (Wander Lairson Costa) [1968591]
+- bpf: Fix propagation of 32 bit unsigned bounds from 64 bit bounds (Wander Lairson Costa) [1965938]
+- tools/power turbostat: Support Alder Lake Mobile (Steve Best) [1962291]
+- ACPI: PM: Add ACPI ID of Alder Lake Fan (Steve Best) [1961617]
+- powercap/intel_rapl: add support for AlderLake Mobile (Steve Best) [1961816]
+- platform/x86: intel_pmc_core: Uninitialized data in pmc_core_lpm_latch_mode_write() (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: add ACPI dependency (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Fix "unsigned 'ret' is never less than zero" smatch warning (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Add LTR registers for Tiger Lake (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Add option to set/clear LPM mode (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Add requirements file to debugfs (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Get LPM requirements for Tiger Lake (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Show LPM residency in microseconds (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Handle sub-states generically (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Remove global struct pmc_dev (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Don't use global pmcdev in quirks (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: export platform global reset bits via etr3 sysfs file (David Arcari) [1783557]
+- MAINTAINERS: Update maintainers for pmc_core driver (David Arcari) [1783557]
+- MAINTAINERS: intel_pmc_core: Update MAINTAINERS (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Ignore GBE LTR on Tiger Lake platforms (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Assign boolean values to a bool variable (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: fix: Replace dev_dbg macro with dev_info() (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Clean up: Remove the duplicate comments and reorganize (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Fix the slp_s0 counter displayed value (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Fix TigerLake power gating status map (David Arcari) [1783557]
+- platform/x86: pmc_core: Use descriptive names for LPM registers (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Change Jasper Lake S0ix debug reg map back to ICL (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Add Atom based Jasper Lake (JSL) platform support (David Arcari) [1783557]
+- platform/x86: intel_pmc_core: Add Intel Elkhart Lake support (David Arcari) [1783557]
+- [s390] s390/ipl: support NVMe IPL kernel parameters (Claudio Imbrenda) [1963120]
+- [s390] net/smc: use memcpy instead of snprintf to avoid out of bounds read (Claudio Imbrenda) [1919249]
+- [s390] smc: fix out of bound access in smc_nl_get_sys_info() (Claudio Imbrenda) [1919249]
+- [s390] net/smc: fix access to parent of an ib device (Claudio Imbrenda) [1919249]
+- [s390] s390/vtime: fix increased steal time accounting (Claudio Imbrenda) [1963075]
+- [s390] tools/kvm_stat: Add restart delay (Claudio Imbrenda) [1963082]
+- [s390] s390/dasd: fix hanging IO request during DASD driver unbind (Claudio Imbrenda) [1963077]
+- [s390] s390/dasd: fix hanging DASD driver unbind (Claudio Imbrenda) [1963077]
+
+* Thu Jun 17 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-315.el8]
+- Add New KUNIT Tests to Redhat kernel-modules-internal (Nico Pache) [1939309]
+- kunit: lib: adhear to KUNIT formatting standard (Nico Pache) [1939309]
+- kunit: mptcp: adhere to KUNIT formatting standard (Nico Pache) [1939309]
+- ASoC: topology: adhere to KUNIT formatting standard (Nico Pache) [1939309]
+- kunit: software node: adhear to KUNIT formatting standard (Nico Pache) [1939309]
+- resource: provide meaningful MODULE_LICENSE() in test suite (Nico Pache) [1939309]
+- resource: Add test cases for new resource API (Nico Pache) [1939309]
+- resource: Introduce resource_intersection() for overlapping resources (Nico Pache) [1939309]
+- resource: Introduce resource_union() for overlapping resources (Nico Pache) [1939309]
+- mm/resource: Use resource_overlaps() to simplify region_intersects() (Nico Pache) [1939309]
+- kernel.h: split out min()/max() et al. helpers (Nico Pache) [1939309]
+- lib/math/rational.c: fix possible incorrect result from rational fractions helper (Nico Pache) [1939309]
+- lib: Move mathematic helpers to separate folder (Nico Pache) [1939309]
+- lib/cmdline: remove an unneeded local variable in next_arg() (Nico Pache) [1939309]
+- lib/cmdline: Allow get_options() to take 0 to validate the input (Nico Pache) [1939309]
+- lib/cmdline: Update documentation to reflect behaviour (Nico Pache) [1939309]
+- lib/cmdline_kunit: add a new test case for get_options() (Nico Pache) [1939309]
+- ext4: add .kunitconfig fragment to enable ext4-specific tests (Nico Pache) [1939309]
+- ext: EXT4_KUNIT_TESTS should depend on EXT4_FS instead of selecting it (Nico Pache) [1939309]
+- kunit: tool: fix unintentional statefulness in run_kernel() (Nico Pache) [1939309]
+- kunit: tool: add support for filtering suites by glob (Nico Pache) [1939309]
+- kunit: add kunit.filter_glob cmdline option to filter suites (Nico Pache) [1939309]
+- kunit: don't show `1 == 1` in failed assertion messages (Nico Pache) [1939309]
+- kunit: make kunit_tool accept optional path to .kunitconfig fragment (Nico Pache) [1939309]
+- Documentation: kunit: add tips.rst for small examples (Nico Pache) [1939309]
+- KUnit: Docs: make start.rst example Kconfig follow style.rst (Nico Pache) [1939309]
+- kunit: tool: simplify kconfig is_subset_of() logic (Nico Pache) [1939309]
+- minor: kunit: tool: fix unit test so it can run from non-root dir (Nico Pache) [1939309]
+- kunit: tool: use `with open()` in unit test (Nico Pache) [1939309]
+- kunit: tool: stop using bare asserts in unit test (Nico Pache) [1939309]
+- kunit: tool: fix unit test cleanup handling (Nico Pache) [1939309]
+- ASoC: topology: KUnit: Convert from cpu to data format (Nico Pache) [1939309]
+- drivers/base: build kunit tests without structleak plugin (Nico Pache) [1939309]
+- ASoC: topology: KUnit: Add KUnit tests passing topology with PCM to snd_soc_tplg_component_load (Nico Pache) [1939309]
+- ASoC: topology: KUnit: Add KUnit tests passing empty topology with variants to snd_soc_tplg_component_load (Nico Pache) [1939309]
+- ASoC: topology: KUnit: Add KUnit tests passing various arguments to snd_soc_tplg_component_load (Nico Pache) [1939309]
+- ASoC: topology: Check if ops is set before dereference (Nico Pache) [1939309]
+- ASoC: topology: Ensure that needed parameters are set (Nico Pache) [1939309]
+- kunit: tool: move kunitconfig parsing into __init__, make it optional (Nico Pache) [1939309]
+- kunit: tool: fix minor typing issue with None status (Nico Pache) [1939309]
+- kunit: tool: surface and address more typing issues (Nico Pache) [1939309]
+- Documentation: kunit: include example of a parameterized test (Nico Pache) [1939309]
+- kunit: tool: Fix spelling of "diagnostic" in kunit_parser (Nico Pache) [1939309]
+- kunit: tool: Force the use of the 'tty' console for UML (Nico Pache) [1939309]
+- lib/cmdline_kunit: add a new test suite for cmdline API (Nico Pache) [1939309]
+- lib/cmdline: allow NULL to be an output for get_option() (Nico Pache) [1939309]
+- lib/cmdline: fix get_option() for strings starting with hyphen (Nico Pache) [1939309]
+- lib/cmdline.c: mark expected switch fall-throughs (Nico Pache) [1939309]
+- lib/test_bits.c: add tests of GENMASK (Nico Pache) [1939309]
+- linux/bits.h: add compile time sanity check of GENMASK inputs (Nico Pache) [1939309]
+- linux/build_bug.h: change type to int (Nico Pache) [1939309]
+- fs: ext4: Modify inode-test.c to use KUnit parameterized testing feature (Nico Pache) [1939309]
+- kunit: Support for Parameterized Testing (Nico Pache) [1939309]
+- kunit: kunit_tool: Correctly parse diagnostic messages (Nico Pache) [1939309]
+- Documentation: kunit: provide guidance for testing many inputs (Nico Pache) [1939309]
+- kunit: Introduce get_file_path() helper (Nico Pache) [1939309]
+- kunit: fix display of failed expectations for strings (Nico Pache) [1939309]
+- kunit: tool: fix extra trailing \n in raw + parsed test output (Nico Pache) [1939309]
+- kunit: tool: print out stderr from make (like build warnings) (Nico Pache) [1939309]
+- KUnit: Docs: usage: wording fixes (Nico Pache) [1939309]
+- KUnit: Docs: style: fix some Kconfig example issues (Nico Pache) [1939309]
+- KUnit: Docs: fix a wording typo (Nico Pache) [1939309]
+- kunit: Do not pollute source directory with generated files (test.log) (Nico Pache) [1939309]
+- kunit: Do not pollute source directory with generated files (.kunitconfig) (Nico Pache) [1939309]
+- kunit: tool: fix pre-existing python type annotation errors (Nico Pache) [1939309]
+- kunit: Fix kunit.py parse subcommand (use null build_dir) (Nico Pache) [1939309]
+- kunit: test: fix remaining kernel-doc warnings (Nico Pache) [1939309]
+- lib: kunit: Fix compilation test when using TEST_BIT_FIELD_COMPILE (Nico Pache) [1939309]
+- kunit: test.h: fix a bad kernel-doc markup (Nico Pache) [1939309]
+- kunit: test.h: solve kernel-doc warnings (Nico Pache) [1939309]
+- lib: kunit: add bitfield test conversion to KUnit (Nico Pache) [1939309]
+- Documentation: kunit: add a brief blurb about kunit_test_suite (Nico Pache) [1939309]
+- kunit: test: add test plan to KUnit TAP format (Nico Pache) [1939309]
+- init: main: add KUnit to kernel init (Nico Pache) [1939309]
+- init: unify opening /dev/console as stdin/stdout/stderr (Nico Pache) [1939309]
+- kunit: test: create a single centralized executor for all tests (Nico Pache) [1939309]
+- Documentation: test.h - fix warnings (Nico Pache) [1939309]
+- vmlinux.lds.h: add linker section for KUnit test suites (Nico Pache) [1939309]
+- Documentation: kunit: Add naming guidelines (Nico Pache) [1939309]
+- kunit: tool: fix display of make errors (Nico Pache) [1939309]
+- kunit: tool: handle when .kunit exists but .kunitconfig does not (Nico Pache) [1939309]
+- kunit: tool: fix --alltests flag (Nico Pache) [1939309]
+- kunit: tool: allow generating test results in JSON (Nico Pache) [1939309]
+- kunit: tool: fix running kunit_tool from outside kernel tree (Nico Pache) [1939309]
+- lib: add linear ranges helpers (Nico Pache) [1939309]
+- PCI/RCEC: Fix RCiEP device to RCEC association (Myron Stowe) [1895942]
+- PCI/portdrv: Report reset for frozen channel (Myron Stowe) [1895942]
+- PCI/AER: Specify the type of Port that was reset (Myron Stowe) [1895942]
+- PCI/ERR: Retain status from error notification (Myron Stowe) [1895942]
+- PCI/AER: Clear AER status from Root Port when resetting Downstream Port (Myron Stowe) [1895942]
+- PCI/ERR: Clear status of the reporting device (Myron Stowe) [1895942]
+- PCI/AER: Add RCEC AER error injection support (Myron Stowe) [1895942]
+- PCI/PME: Add pcie_walk_rcec() to RCEC PME handling (Myron Stowe) [1895942]
+- PCI/AER: Add pcie_walk_rcec() to RCEC AER handling (Myron Stowe) [1895942]
+- PCI/ERR: Recover from RCiEP AER errors (Myron Stowe) [1895942]
+- PCI/ERR: Add pcie_link_rcec() to associate RCiEPs (Myron Stowe) [1895942]
+- PCI/ERR: Recover from RCEC AER errors (Myron Stowe) [1895942]
+- PCI/ERR: Clear AER status only when we control AER (Myron Stowe) [1895942]
+- PCI/ERR: Add pci_walk_bridge() to pcie_do_recovery() (Myron Stowe) [1895942]
+- PCI/ERR: Avoid negated conditional for clarity (Myron Stowe) [1895942]
+- PCI/ERR: Use "bridge" for clarity in pcie_do_recovery() (Myron Stowe) [1895942]
+- PCI/ERR: Simplify by computing pci_pcie_type() once (Myron Stowe) [1895942]
+- PCI/ERR: Simplify by using pci_upstream_bridge() (Myron Stowe) [1895942]
+- PCI/ERR: Rename reset_link() to reset_subordinates() (Myron Stowe) [1895942]
+- PCI/ERR: Cache RCEC EA Capability offset in pci_init_capabilities() (Myron Stowe) [1895942]
+- PCI/ERR: Bind RCEC devices to the Root Port driver (Myron Stowe) [1895942]
+- PCI/AER: Write AER Capability only when we control it (Myron Stowe) [1895942]
+- PCI: Export pcie_has_flr() (Myron Stowe) [1895942]
+- xfs: don't reuse busy extents on extent trim (Brian Foster) [1960380]
+- nvme: add 'kato' sysfs attribute (Gopal Tiwari) [1970260]
+- scsi: qla2xxx: Update version to 10.02.00.106-k (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Add marginal path handling support (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Do logout even if fabric scan retries got exhausted (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Update default AER debug mask (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix mailbox recovery during PCIe error (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix crash in PCIe error handling (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix RISC RESET completion polling (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix crash in qla2xxx_mqueuecommand() (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix use after free in bsg (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Consolidate zio threshold setting for both FCP & NVMe (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix stuck session (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Add H:C:T info in the log message for fc ports (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix IOPS drop seen in some adapters (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Check kzalloc() return value (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Always check the return value of qla24xx_get_isp_stats() (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Simplify qla8044_minidump_process_control() (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Suppress Coverity complaints about dseg_r* (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix endianness annotations (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Constify struct qla_tgt_func_tmpl (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Use dma_pool_zalloc() (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix a couple of misdocumented functions (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix incorrectly named function qla8044_check_temp() (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix a couple of misnamed functions (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix some incorrect formatting/spelling issues (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Replace __qla2x00_marker()'s missing underscores (Nilesh Javali) [1925465]
+- scsi: Revert "qla2xxx: Make sure that aborted commands are freed" (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix broken #endif placement (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Simplify if statement (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Simplify the calculation of variables (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix some memory corruption (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Remove redundant NULL check (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Remove unnecessary NULL check (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Assign boolean values to a bool variable (Nilesh Javali) [1925465]
+- scsi: qla2xxx: fc_remote_port_chkready() returns a SCSI result value (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Fix description for parameter ql2xenforce_iocb_limit (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Update version to 10.02.00.105-k (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Enable NVMe CONF (BIT_7) when enabling SLER (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Wait for ABTS response on I/O timeouts for NVMe (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Move some messages from debug to normal log level (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Add error counters to debugfs node (Nilesh Javali) [1925465]
+- scsi: qla2xxx: Implementation to get and manage host, target stats and initiator port (Nilesh Javali) [1925465]
+- scsi: ibmvfc: Reinit target retries (Steve Best) [1965010]
+- scsi: ibmvfc: Avoid move login if fast fail is enabled (Steve Best) [1965010]
+- scsi: ibmvfc: Handle move login failure (Steve Best) [1965010]
+- scsi: ibmvfc: Fix invalid state machine BUG_ON() (Steve Best) [1965010]
+- scsi: qedf: Do not put host in qedf_vport_create() unconditionally (Nilesh Javali) [1899384]
+- scsi: storvsc: Enable scatterlist entry lengths > 4Kbytes (Cathy Avery) [1941664]
+- scsi: storvsc: Parameterize number hardware queues (Cathy Avery) [1941664]
+- scsi: storvsc: Return DID_ERROR for invalid commands (Cathy Avery) [1941664]
+- scsi: storvsc: Validate length of incoming packet in storvsc_on_channel_callback() (Cathy Avery) [1941664]
+- scsi: storvsc: Resolve data race in storvsc_probe() (Cathy Avery) [1941664]
+- scsi: storvsc: Fix max_outstanding_req_per_channel for Win8 and newer (Cathy Avery) [1941664]
+- scsi: storvsc: Use vmbus_requestor to generate transaction IDs for VMBus hardening (Cathy Avery) [1941664]
+- RDMA/ipoib: Fix warning caused by destroying non-initial netns (Kamal Heib) [1961815]
+- can: dev: Move device back to init netns on owning netns delete (Kamal Heib) [1961815]
+- net: ena: remove extra words from comments (Petr Oros) [1955155]
+- net: ena: fix inaccurate print type (Petr Oros) [1955155]
+- ena: Update driver to use ethtool_sprintf (Petr Oros) [1955155]
+- docs: net: ena: Fix ena_start_xmit() function name typo (Petr Oros) [1955155]
+- ethernet: amazon: ena: A typo fix in the file ena_com.h (Petr Oros) [1955155]
+- net: ena: Update XDP verdict upon failure (Petr Oros) [1955155]
+- net: ena: introduce ndo_xdp_xmit() function for XDP_REDIRECT (Petr Oros) [1955155]
+- net: ena: use xdp_return_frame() to free xdp frames (Petr Oros) [1955155]
+- net: ena: introduce XDP redirect implementation (Petr Oros) [1955155]
+- net: ena: use xdp_frame in XDP TX flow (Petr Oros) [1955155]
+- net: ena: aggregate stats increase into a function (Petr Oros) [1955155]
+- net: ena: fix coding style nits (Petr Oros) [1955155]
+- net: ena: store values in their appropriate variables types (Petr Oros) [1955155]
+- net: ena: add device distinct log prefix to files (Petr Oros) [1955155]
+- net: ena: use constant value for net_device allocation (Petr Oros) [1955155]
+- net: ena: set initial DMA width to avoid intel iommu issue (Petr Oros) [1955155]
+- net: ena: update ena documentation (Petr Oros) [1955155]
+- net: ena: Fix all static chekers' warnings (Petr Oros) [1955155]
+- net: ena: Change RSS related macros and variables names (Petr Oros) [1955155]
+- net: ena: Remove redundant print of placement policy (Petr Oros) [1955155]
+- net: ena: Capitalize all log strings and improve code readability (Petr Oros) [1955155]
+- net: ena: Change log message to netif/dev function (Petr Oros) [1955155]
+- net: ena: Change license into format to SPDX in all files (Petr Oros) [1955155]
+- net: ena: xdp: add queue counters for xdp actions (Petr Oros) [1955155]
+- net: ena: ethtool: add stats printing to XDP queues (Petr Oros) [1955155]
+- net: ena: ethtool: Add new device statistics (Petr Oros) [1955155]
+- net: ena: ethtool: convert stat_offset to 64 bit resolution (Petr Oros) [1955155]
+- net: ena: Make missed_tx stat incremental (Petr Oros) [1955155]
+- net: ena: Prevent reset after device destruction (Petr Oros) [1955155]
+- treewide: replace '---help---' in Kconfig files with 'help' (Petr Oros) [1955155]
+- treewide: Add SPDX license identifier - Makefile/Kconfig (Petr Oros) [1955155]
+- cross-tree: phase out dma_zalloc_coherent() (Petr Oros) [1955155]
+- net: ena: fix compilation error in xtensa architecture (Petr Oros) [1955155]
+- docs: networking: reorganize driver documentation again (Petr Oros) [1955155]
+- docs: networking: device drivers: convert amazon/ena.txt to ReST (Petr Oros) [1955155]
+- net: ena: documentation: update ena.txt (Petr Oros) [1955155]
+- net: documentation: build a directory structure for drivers (Petr Oros) [1955155]
+- xfrm: interface: fix ipv4 pmtu check to honor ip header df (Sabrina Dubroca) [1931942]
+- vti: fix ipv4 pmtu check to honor ip header df (Sabrina Dubroca) [1931942]
+- vti6: fix ipv4 pmtu check to honor ip header df (Sabrina Dubroca) [1931942]
+- net/sched: act_ct: Fix ct template allocation for zone 0 (Marcelo Ricardo Leitner) [1881824]
+- uio: Fix use-after-free in uio_unregister_device() (Myron Stowe) [1897285]
+- uio: free uio id after uio file node is freed (Myron Stowe) [1897285]
+- drivers: uio: remove redundant assignment to variable retval (Myron Stowe) [1897285]
+- driver: uio: fix possible use-after-free in __uio_register_device (Myron Stowe) [1897285]
+- driver: uio: fix possible memory leak in __uio_register_device (Myron Stowe) [1897285]
+- uio: remove redundant check (Myron Stowe) [1897285]
+- uio: fix potential memory leak in error case (Myron Stowe) [1897285]
+- uio: dismiss waiters on device unregistration (Myron Stowe) [1897285]
+- uio: Fix an Oops on load (Myron Stowe) [1897285]
+- uio: make symbol 'uio_class_registered' static (Myron Stowe) [1897285]
+- uio: convert to vm_fault_t (Myron Stowe) [1897285]
+- uio: ensure class is registered before devices (Myron Stowe) [1897285]
+- uio: potential double frees if __uio_register_device() fails (Myron Stowe) [1897285]
+- uio: fix possible circular locking dependency (Myron Stowe) [1897285]
+- uio: fix wrong return value from uio_mmap() (Myron Stowe) [1897285]
+- uio: add SPDX license tag (Myron Stowe) [1897285]
+- net: zero-initialize tc skb extension on allocation (Ivan Vecera) [1946986]
+- net: sched: fix tx action reschedule issue with stopped queue (Ivan Vecera) [1946986]
+- net: sched: fix tx action rescheduling issue during deactivation (Ivan Vecera) [1946986]
+- net: sched: fix packet stuck problem for lockless qdisc (Ivan Vecera) [1946986]
+- net/sched: act_ct: Remove redundant ct get and check (Ivan Vecera) [1946986]
+- net: sched: tapr: prevent cycle_time == 0 in parse_taprio_schedule (Ivan Vecera) [1946986]
+- tc-testing: add simple action test to verify batch change cleanup (Ivan Vecera) [1946986]
+- tc-testing: add simple action test to verify batch add cleanup (Ivan Vecera) [1946986]
+- tc-testing: add simple action change test (Ivan Vecera) [1946986]
+- selftests: forwarding: Add tc-police tests for packets per second (Ivan Vecera) [1946986]
+- selftests: tc-testing: add action police selftest for packets per second (Ivan Vecera) [1946986]
+- net: sched: Mundane typo fixes (Ivan Vecera) [1946986]
+- net/sched: cls_flower: use nla_get_be32 for TCA_FLOWER_KEY_FLAGS (Ivan Vecera) [1946986]
+- net/sched: cls_flower: use ntohs for struct flow_dissector_key_ports (Ivan Vecera) [1946986]
+- taprio: Handle short intervals and large packets (Ivan Vecera) [1946986]
+- net/sched: cls_flower: fix only mask bit check in the validate_ct_state (Ivan Vecera) [1946986]
+- treewide: Remove uninitialized_var() usage (Ivan Vecera) [1946986]
+- lockdep: Provide dummy forward declaration of *_is_held() helpers (Ivan Vecera) [1946986]
+- net: sched: Remove broken definitions and un-hide for !LOCKDEP (Ivan Vecera) [1946986]
+- net: sched: sch_teql: fix null-pointer dereference (Ivan Vecera) [1946986]
+- net: sched: fix err handler in tcf_action_init() (Ivan Vecera) [1946986]
+- net: sched: fix action overwrite reference counting (Ivan Vecera) [1946986]
+- Revert "net: sched: bump refcount for new action in ACT replace mode" (Ivan Vecera) [1946986]
+- net: cls_api: Fix uninitialised struct field bo->unlocked_driver_cb (Ivan Vecera) [1946986]
+- net: sched: bump refcount for new action in ACT replace mode (Ivan Vecera) [1946986]
+- net/sched: act_api: fix miss set post_ct for ovs after do conntrack in act_ct (Ivan Vecera) [1946986]
+- net/sched: act_police: add support for packet-per-second policing (Ivan Vecera) [1946986]
+- flow_offload: reject configuration of packet-per-second policing in offload drivers (Ivan Vecera) [1946986]
+- flow_offload: add support for packet-per-second policing (Ivan Vecera) [1946986]
+- net: sched: validate stab values (Ivan Vecera) [1946986]
+- net: add a helper to avoid issues with HW TX timestamping and SO_TXTIME (Ivan Vecera) [1946986]
+- sched: act_sample: Implement stats_update callback (Ivan Vecera) [1946986]
+- net: sched: avoid duplicates in classes dump (Ivan Vecera) [1946986]
+- net/sched: cls_flower: validate ct_state for invalid and reply flags (Ivan Vecera) [1946986]
+- net: sched: fix police ext initialization (Ivan Vecera) [1946986]
+- selftests: tc: Add generic mpls matching support for tc-flower (Ivan Vecera) [1946986]
+- selftests: tc: Add basic mpls_* matching support for tc-flower (Ivan Vecera) [1946986]
+- selftests: tc-testing: u32: Add tests covering sample option (Ivan Vecera) [1946986]
+- net: sched: Return the correct errno code (Ivan Vecera) [1946986]
+- net: sched: replaced invalid qdisc tree flush helper in qdisc_replace (Ivan Vecera) [1946986]
+- selftests: forwarding: Fix spelling mistake "succeded" -> "succeeded" (Ivan Vecera) [1946986]
+- taprio: boolean values to a bool variable (Ivan Vecera) [1946986]
+- net_sched: fix RTNL deadlock again caused by request_module() (Ivan Vecera) [1946986]
+- cls_flower: call nla_ok() before nla_next() (Ivan Vecera) [1946986]
+- net/sched: sch_taprio: ensure to reset/destroy all child qdiscs (Ivan Vecera) [1946986]
+- net/sched: sch_taprio: reset child qdiscs before freeing them (Ivan Vecera) [1946986]
+- net: sched: incorrect Kconfig dependencies on Netfilter modules (Ivan Vecera) [1946986]
+- treewide: replace '---help---' in Kconfig files with 'help' (Ivan Vecera) [1946986]
+- net/sched: cls_u32: simplify the return expression of u32_reoffload_knode() (Ivan Vecera) [1946986]
+- net: sched: fix spelling mistake in Kconfig "trys" -> "tries" (Ivan Vecera) [1946986]
+- net/sched: fq_pie: initialize timer earlier in fq_pie_init() (Ivan Vecera) [1946986]
+- net: sched: remove redundant 'rtnl_held' argument (Ivan Vecera) [1946986]
+- selftests: tc-testing: enable CONFIG_NET_SCH_RED as a module (Ivan Vecera) [1946986]
+- net: sched: alias action flags with TCA_ACT_ prefix (Ivan Vecera) [1946986]
+- treewide: rename nla_strlcpy to nla_strscpy. (Ivan Vecera) [1946986]
+- Modify return value of nla_strlcpy to match that of strscpy. (Ivan Vecera) [1946986]
+- Fix unefficient call to memset before memcpu in nla_strlcpy. (Ivan Vecera) [1946986]
+- net: sched: fix misspellings using misspell-fixer tool (Ivan Vecera) [1946986]
+- selftest: fix flower terse dump tests (Ivan Vecera) [1946986]
+- net: sched: implement action-specific terse dump (Ivan Vecera) [1946986]
+- net: cls_api: remove unneeded local variable in tc_dump_chain() (Ivan Vecera) [1946986]
+- openvswitch: fix send of uninitialized stack memory in ct limit reply (Antoine Tenart) [1950022]
+- net/sched: act_api: fix miss set post_ct for ovs after do conntrack in act_ct (Antoine Tenart) [1950022]
+- xsk: Clear pool even for inactive queues (Jiri Benc) [1882710]
+- xsk: Fix memory leak for failed bind (Jiri Benc) [1882710]
+- xsk: Return error code if force_zc is set (Jiri Benc) [1882710]
+- xsk: Change the tx writeable condition (Jiri Benc) [1882710]
+- xsk: Replace datagram_poll by sock_poll_wait (Jiri Benc) [1882710]
+- xdp: Handle MEM_TYPE_XSK_BUFF_POOL correctly in xdp_return_buff() (Jiri Benc) [1882710]
+- xsk: Fix incorrect netdev reference count (Jiri Benc) [1882710]
+- xsk: Fix umem cleanup bug at socket destruct (Jiri Benc) [1882710]
+- netdevsim: set .owner to THIS_MODULE (Jiri Benc) [1882710]
+- bpf: selftest: Use static globals in tcp_hdr_options and btf_skc_cls_ingress (Jiri Benc) [1882710]
+- xsk: Fix possible memory leak at socket close (Jiri Benc) [1882710]
+- samples/bpf: Set rlimit for memlock to infinity in all samples (Jiri Benc) [1882710]
+- bpf, selftests: Extend test_tc_redirect to use modified bpf_redirect_neigh() (Jiri Benc) [1882710]
+- bpf: Fix bpf_redirect_neigh helper api to support supplying nexthop (Jiri Benc) [1882710]
+- bpf, selftest: Fix flaky tcp_hdr_options test when adding addr to lo (Jiri Benc) [1882710]
+- bpf, selftests: Add redirect_peer selftest (Jiri Benc) [1882710]
+- bpf, selftests: Make redirect_neigh test more extensible (Jiri Benc) [1882710]
+- bpf: Add redirect_peer helper (Jiri Benc) [1882710]
+- bpf: Improve bpf_redirect_neigh helper description (Jiri Benc) [1882710]
+- bpf: Always return target ifindex in bpf_fib_lookup (Jiri Benc) [1882710]
+- xsk: Introduce padding between ring pointers (Jiri Benc) [1882710]
+- xsk: Remove internal DMA headers (Jiri Benc) [1882710]
+- bpf: selftest: Ensure the child sk inherited all bpf_sock_ops_cb_flags (Jiri Benc) [1882710]
+- bpf: tcp: Do not limit cb_flags when creating child sk from listen sk (Jiri Benc) [1882710]
+- bpf, selftests: Add redirect_neigh selftest (Jiri Benc) [1882710]
+- bpf: Add redirect_neigh helper as redirect drop-in (Jiri Benc) [1882710]
+- tools, bpf: Synchronise BPF UAPI header with tools (Jiri Benc) [1882710]
+- bpf: Fix formatting in documentation for BPF helpers (Jiri Benc) [1882710]
+- xsk: Fix a documentation mistake in xsk_queue.h (Jiri Benc) [1882710]
+- xsk: Fix possible crash in socket_release when out-of-memory (Jiri Benc) [1882710]
+- xsk: Fix refcount warning in xp_dma_map (Jiri Benc) [1882710]
+- tcp: Only init congestion control if not initialized already (Jiri Benc) [1882710]
+- xsk: Fix null check on error return path (Jiri Benc) [1882710]
+- xsk: Fix possible segfault at xskmap entry insertion (Jiri Benc) [1882710]
+- xsk: Fix possible segfault in xsk umem diagnostics (Jiri Benc) [1882710]
+- xsk: Fix use-after-free in failed shared_umem bind (Jiri Benc) [1882710]
+- xsk: Documentation for XDP_SHARED_UMEM between queues and netdevs (Jiri Benc) [1882710]
+- xsk: Add shared umem support between devices (Jiri Benc) [1882710]
+- xsk: Add shared umem support between queue ids (Jiri Benc) [1882710]
+- xsk: i40e: ice: ixgbe: mlx5: Test for dma_need_sync earlier for better performance (Jiri Benc) [1882710]
+- xsk: Rearrange internal structs for better performance (Jiri Benc) [1882710]
+- xsk: Enable sharing of dma mappings (Jiri Benc) [1882710]
+- xsk: Move addrs from buffer pool to umem (Jiri Benc) [1882710]
+- xsk: Move xsk_tx_list and its lock to buffer pool (Jiri Benc) [1882710]
+- xsk: Move queue_id, dev and need_wakeup to buffer pool (Jiri Benc) [1882710]
+- xsk: Move fill and completion rings to buffer pool (Jiri Benc) [1882710]
+- xsk: Create and free buffer pool independently from umem (Jiri Benc) [1882710]
+- xsk: i40e: ice: ixgbe: mlx5: Rename xsk zero-copy driver interfaces (Jiri Benc) [1882710]
+- xsk: i40e: ice: ixgbe: mlx5: Pass buffer pool to driver instead of umem (Jiri Benc) [1882710]
+- tcp: bpf: Optionally store mac header in TCP_SAVE_SYN (Jiri Benc) [1882710]
+- bpf: selftests: Tcp header options (Jiri Benc) [1882710]
+- bpf: selftests: Add fastopen_connect to network_helpers (Jiri Benc) [1882710]
+- bpf: tcp: Allow bpf prog to write and parse TCP header option (Jiri Benc) [1882710]
+- bpf: sock_ops: Change some members of sock_ops_kern from u32 to u8 (Jiri Benc) [1882710]
+- bpf: tcp: Add bpf_skops_hdr_opt_len() and bpf_skops_write_hdr_opt() (Jiri Benc) [1882710]
+- bpf: tcp: Add bpf_skops_parse_hdr() (Jiri Benc) [1882710]
+- bpf: tcp: Add bpf_skops_established() (Jiri Benc) [1882710]
+- tcp: Add saw_unknown to struct tcp_options_received (Jiri Benc) [1882710]
+- tcp: bpf: Add TCP_BPF_RTO_MIN for bpf_setsockopt (Jiri Benc) [1882710]
+- tcp: bpf: Add TCP_BPF_DELACK_MAX setsockopt (Jiri Benc) [1882710]
+- tcp: Use a struct to represent a saved_syn (Jiri Benc) [1882710]
+- tcp: tcp_init_buffer_space can be static (Jiri Benc) [1882710]
+- tcp: refactor setting the initial congestion window (Jiri Benc) [1882710]
+- tcp: fix code style in tcp_recvmsg() (Jiri Benc) [1882710]
+- tcp: duplicate clear of icsk_backoff (Jiri Benc) [1882710]
+- tcp: move rx_opt & syn_data_acked init to tcp_disconnect() (Jiri Benc) [1882710]
+- tcp: move tp->rack init to tcp_disconnect() (Jiri Benc) [1882710]
+- tcp: move app_limited init to tcp_disconnect() (Jiri Benc) [1882710]
+- tcp: move retrans_out, sacked_out, tlp_high_seq, last_oow_ack_time init to tcp_disconnect() (Jiri Benc) [1882710]
+- tcp: do not clear urg_data in tcp_create_openreq_child (Jiri Benc) [1882710]
+- tcp: move snd_cwnd & snd_cwnd_cnt init to tcp_disconnect() (Jiri Benc) [1882710]
+- tcp: move mdev_us init to tcp_disconnect() (Jiri Benc) [1882710]
+- tcp: do not clear srtt_us in tcp_create_openreq_child (Jiri Benc) [1882710]
+- tcp: do not clear packets_out in tcp_create_openreq_child() (Jiri Benc) [1882710]
+- tcp: move icsk_rto init to tcp_disconnect() (Jiri Benc) [1882710]
+- tcp: do not set snd_ssthresh in tcp_create_openreq_child() (Jiri Benc) [1882710]
+- net-veth: Add type safety to veth_xdp_to_ptr() and veth_ptr_to_xdp() (Jiri Benc) [1882710]
+- net-tun: Eliminate two tun/xdp related function calls from vhost-net (Jiri Benc) [1882710]
+- net-tun: Add type safety to tun_xdp_to_ptr() and tun_ptr_to_xdp() (Jiri Benc) [1882710]
+- ipv4: Add helpers for neigh lookup for nexthop (Jiri Benc) [1882710]
+- net: bpf: remove XDP_QUERY_XSK_UMEM enumerator (Jiri Benc) [1882710]
+- tipc: better validate user input in tipc_nl_retrieve_key() (Xin Long) [1950093]
+- tipc: simplify the finalize work queue (Xin Long) [1958456]
+- tipc: wait and exit until all work queues are done (Xin Long) [1958456]
+- [s390] KVM: s390: diag9c (directed yield) forwarding (Claudio Imbrenda) [1874105]
+- kvm/svm: Reenable nesting (Dr. David Alan Gilbert) [1790949]
+- powerpc/papr_scm: Reduce error severity if nvdimm stats inaccessible (Steve Best) [1965193]
+- Revert "[redhat] redhat/configs: Update CONFIG_ARM64_CNP" (Mark Salter) [1949533]
+- arm64: kernel: disable CNP on Carmel (Mark Salter) [1949533]
+
+* Mon Jun 14 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-314.el8]
+- redhat/configs: Enable CONFIG_MICROSOFT_MANA=m (Vitaly Kuznetsov) [1957820]
+- net: mana: Use int to check the return value of mana_gd_poll_cq() (Vitaly Kuznetsov) [1957820]
+- net: mana: fix PCI_HYPERV dependency (Vitaly Kuznetsov) [1957820]
+- net: mana: remove redundant initialization of variable err (Vitaly Kuznetsov) [1957820]
+- net: mana: Add a driver for Microsoft Azure Network Adapter (MANA) (Vitaly Kuznetsov) [1957820]
+- hv_netvsc: Make netvsc/VF binding check both MAC and serial number (Vitaly Kuznetsov) [1957820]
+- net: evaluate net.ipvX.conf.all.ignore_routes_with_linkdown (Balazs Nemeth) [1957223]
+- net: evaluate net.ipv4.conf.all.proxy_arp_pvlan (Balazs Nemeth) [1957223]
+- netfilter: nf_log_syslog: Unset bridge logger in pernet exit (Phil Sutter) [1938214]
+- netfilter: nft_log: perform module load from nf_tables (Phil Sutter) [1938214]
+- netfilter: nft_dynset: fix timeouts later than 23 days (Phil Sutter) [1938214]
+- netfilter: nft_compat: make sure xtables destructors have run (Phil Sutter) [1938214]
+- netfilter: nftables: Add __printf() attribute (Phil Sutter) [1938214]
+- netfilter: nf_log: add module softdeps (Phil Sutter) [1938214]
+- netfilter: nf_log_common: merge with nf_log_syslog (Phil Sutter) [1938214]
+- netfilter: nf_log_bridge: merge with nf_log_syslog (Phil Sutter) [1938214]
+- netfilter: nf_log_netdev: merge with nf_log_syslog (Phil Sutter) [1938214]
+- netfilter: nf_log_ipv6: merge with nf_log_syslog (Phil Sutter) [1938214]
+- netfilter: move inline nf_ip6_ext_hdr() function to a more appropriate header. (Phil Sutter) [1938214]
+- ipv6: Use ipv6_authlen for len (Phil Sutter) [1938214]
+- netfilter: nf_log_arp: merge with nf_log_syslog (Phil Sutter) [1938214]
+- netfilter: nf_log_ipv4: rename to nf_log_syslog (Phil Sutter) [1938214]
+- net/sched: cls_api: increase max_reclassify_loop (Davide Caratti) [1955136]
+- vsock/vmci: Remove redundant assignment to err (Stefano Garzarella) [1956861]
+- vsock/virtio: free queued packets when closing socket (Stefano Garzarella) [1956861]
+- net: vsock: Fix a typo (Stefano Garzarella) [1956861]
+- selinux: vsock: Set SID for socket returned by accept() (Stefano Garzarella) [1956861]
+- af_vsock: Assign the vsock transport considering the vsock address flags (Stefano Garzarella) [1956861]
+- af_vsock: Set VMADDR_FLAG_TO_HOST flag on the receive path (Stefano Garzarella) [1956861]
+- vsock_addr: Check for supported flag values (Stefano Garzarella) [1956861]
+- vm_sockets: Add VMADDR_FLAG_TO_HOST vsock flag (Stefano Garzarella) [1956861]
+- vm_sockets: Add flags field in the vsock address data structure (Stefano Garzarella) [1956861]
+- hv_sock: Remove the accept port restriction (Stefano Garzarella) [1956861]
+- hv_sock: use HV_HYP_PAGE_SIZE for Hyper-V communication (Stefano Garzarella) [1956861]
+- net: add a helper to avoid issues with HW TX timestamping and SO_TXTIME (Corinna Vinschen) [1958988]
+- net: ensure mac header is set in virtio_net_hdr_to_skb() (Balazs Nemeth) [1955441]
+- devlink: Fix dmac_filter trap name, align to its documentation (Petr Oros) [1935701]
+- devlink: Add DMAC filter generic packet trap (Petr Oros) [1935701]
+- devlink: Add blackhole_nexthop trap (Petr Oros) [1935701]
+- stm class: Fix module init return on allocation failure (Jiri Olsa) [1907791]
+- stm class: ftrace: Use different channel accroding to CPU (Jiri Olsa) [1907791]
+- stm class: ftrace: Enable supported trace export flag (Jiri Olsa) [1907791]
+- stm class: ftrace: Change dependency to TRACING (Jiri Olsa) [1907791]
+- stm class: Replace zero-length array with flexible-array (Jiri Olsa) [1907791]
+- stm class: sys-t: Fix the use of time_after() (Jiri Olsa) [1907791]
+- stm class: Lose the protocol driver when dropping its reference (Jiri Olsa) [1907791]
+- stm class: Fix a double free of stm_source_device (Jiri Olsa) [1907791]
+- stm class: Fix channel bitmap on 32-bit systems (Jiri Olsa) [1907791]
+- stm class: Fix channel free in stm output free path (Jiri Olsa) [1907791]
+- stm class: Prevent division by zero (Jiri Olsa) [1907791]
+- stm class: Fix an endless loop in channel allocation (Jiri Olsa) [1907791]
+- stm class: Fix a module refcount leak in policy creation error path (Jiri Olsa) [1907791]
+- stm class: Use memcat_p() (Jiri Olsa) [1907791]
+- stm class: heartbeat: Fix whitespace (Jiri Olsa) [1907791]
+- stm class: p_sys-t: Add support for CLOCKSYNC packets (Jiri Olsa) [1907791]
+- stm class: Add MIPI SyS-T protocol support (Jiri Olsa) [1907791]
+- stm class: Switch over to the protocol driver (Jiri Olsa) [1907791]
+- stm class: Factor out default framing protocol (Jiri Olsa) [1907791]
+- stm class: Add a helper for writing data packets (Jiri Olsa) [1907791]
+- stm class: Introduce framing protocol drivers (Jiri Olsa) [1907791]
+- stm class: Clean up stp_configfs_init (Jiri Olsa) [1907791]
+- stm class: Clarify configfs root type/operations names (Jiri Olsa) [1907791]
+- stm class: Rework policy node fallback (Jiri Olsa) [1907791]
+- lib: Add memcat_p(): paste 2 pointer arrays together (Jiri Olsa) [1907791]
+- tracing: Add trace_export support for trace_marker (Jiri Olsa) [1907791]
+- tracing: Add trace_export support for event trace (Jiri Olsa) [1907791]
+- tracing: Add flag to control different traces (Jiri Olsa) [1907791]
+- tracing: Make function ‘ftrace_exports’ static (Jiri Olsa) [1907791]
+- tipc: increment the tmp aead refcnt before attaching it (Xin Long) [1931312]
+- tipc: skb_linearize the head skb when reassembling msgs (Xin Long) [1912376]
+- scsi: target: core: Fix warning on realtime kernels (Maurizio Lombardi) [1956416]
+- scsi: bnx2fc: Fix a typo (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Fix misnaming of bnx2fc_free_session_resc() (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Fix typo in bnx2fc_indicate_kcqe() (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Fix Kconfig warning & CNIC build errors (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Fix comparison to bool warning (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Remove unneeded semicolon (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Make a bunch of symbols static in bnx2fc_fcoe.c (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Fix spelling mistake "couldnt" -> "couldn't" (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Demote obvious misuse of kerneldoc to standard comment blocks (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Fix a couple of bitrotted function documentation headers (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Repair a range of kerneldoc issues (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Removal of unused variables (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Remove unneeded semicolon in bnx2fc_fcoe.c (Nilesh Javali) [1921617]
+- scsi: bnx2fc: Add missing annotation for bnx2fc_abts_cleanup() (Nilesh Javali) [1921617]
+- tools/power turbostat: Enable tsc_tweak for Elkhart Lake and Jasper Lake (Puneet Sethi) [1920704]
+- selinux: Allow context mounts for unpriviliged overlayfs (Miklos Szeredi) [1956486]
+- md-cluster: fix use-after-free issue when removing rdev (Nigel Croxon) [1956355]
+- md/bitmap: wait for external bitmap writes to complete during tear down (Nigel Croxon) [1956355]
+- md: do not return existing mddevs from mddev_find_or_alloc (Nigel Croxon) [1956355]
+- md: refactor mddev_find_or_alloc (Nigel Croxon) [1956355]
+- md: factor out a mddev_alloc_unit helper from mddev_find (Nigel Croxon) [1956355]
+- md: split mddev_find (Nigel Croxon) [1956355]
+- md: factor out a mddev_find_locked helper from mddev_find (Nigel Croxon) [1956355]
+- md: md_open returns -EBUSY when entering racing area (Nigel Croxon) [1956355]
+- md: Fix missing unused status line of /proc/mdstat (Nigel Croxon) [1956355]
+- md/raid10: improve discard request for far layout (Xiao Ni) [1956355]
+- md/raid10: improve raid10 discard request (Nigel Croxon) [1956355]
+- md/raid10: pull the code that wait for blocked dev into one function (Xiao Ni) [1956355]
+- md/raid10: extend r10bio devs to raid disks (Xiao Ni) [1956355]
+- md: add md_submit_discard_bio() for submitting discard bio (Nigel Croxon) [1956355]
+- leds: trigger: fix potential deadlock with libata (Waiman Long) [1963373]
+- x86/kvm: Unify kvm_pv_guest_cpu_reboot() with kvm_guest_cpu_offline() (Lenny Szubowicz) [1934273]
+- x86/kvm: Disable all PV features on crash (Lenny Szubowicz) [1934273]
+- x86/kvm: Disable kvmclock on all CPUs on shutdown (Lenny Szubowicz) [1934273]
+- x86/kvm: Teardown PV features on boot CPU as well (Lenny Szubowicz) [1934273]
+- x86/kvm: Fix pr_info() for async PF setup/teardown (Lenny Szubowicz) [1934273]
+- RDMA/qedr: Fix error return code in qedr_iw_connect() (Manish Chopra) [1914922]
+- qede: Use 'skb_add_rx_frag()' instead of hand coding it (Manish Chopra) [1914922]
+- qede: Remove a erroneous ++ in 'qede_rx_build_jumbo()' (Manish Chopra) [1914922]
+- qede: fix offload for IPIP tunnel packets (Manish Chopra) [1914922]
+- RDMA/qedr: iWARP invalid(zero) doorbell address fix (Manish Chopra) [1914922]
+- qed: fix ILT configuration of SRC block (Manish Chopra) [1914922]
+- qed: fix error return code in qed_iwarp_ll2_start() (Manish Chopra) [1914922]
+- RDMA/qedr: Fix resource leak in qedr_create_qp (Manish Chopra) [1914922]
+- qede: make driver reliable on unload after failures (Manish Chopra) [1914922]
+- net: qed: Remove unnecessary cast (Manish Chopra) [1914922]
+- nvme: fix NULL derefence in nvme_ctrl_fast_io_fail_tmo_show/store (Gopal Tiwari) [1935135]
+- nvme: export fast_io_fail_tmo to sysfs (Gopal Tiwari) [1935135]
+- EDAC: enable CONFIG_EDAC_IGEN6 (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC/igen6: ecclog_llist can be static (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC/i10nm: Add Intel Sapphire Rapids server support (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC: Add DDR5 new memory type (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC/i10nm: Use readl() to access MMIO registers (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC/igen6: Add debugfs interface for Intel client SoC EDAC driver (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC/igen6: Add EDAC driver for Intel client SoCs using IBECC (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC: Add three new memory types (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC, {skx,i10nm}: Use CPU stepping macro to pass configurations (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC/skx: Use the mcmtr register to retrieve close_pg/bank_xor_enable (Aristeu Rozanski) [1837389 1783539 1861479]
+- x86/cpu: Add a X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS() macro (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC: Add missing MEM_LRDDR4 entry in edac_mem_types[] (Aristeu Rozanski) [1837389 1783539 1861479]
+- x86: export x86_match_cpu_v2 (Aristeu Rozanski) [1837389 1783539 1861479]
+- EDAC/amd64: Fix PCI component registration (Aristeu Rozanski) [1918583]
+- EDAC/mce_amd: Use struct cpuinfo_x86.cpu_die_id for AMD NodeId (Aristeu Rozanski) [1918583]
+- x86/CPU/AMD: Remove amd_get_nb_id() (Aristeu Rozanski) [1918583]
+- EDAC/mce_amd: Make fam_ops static global (Aristeu Rozanski) [1918583]
+- x86/MCE/AMD: Allow Reserved types to be overwritten in smca_banks[] (Aristeu Rozanski) [1918583]
+- x86/MCE/AMD: Do not use rdmsr_safe_on_cpu() in smca_configure() (Aristeu Rozanski) [1918583]
+- EDAC/amd64: Get rid of the ECC disabled long message (Aristeu Rozanski) [1918583]
+- EDAC/amd64: Check for memory before fully initializing an instance (Aristeu Rozanski) [1918583]
+- EDAC/amd64: Use cached data when checking for ECC (Aristeu Rozanski) [1918583]
+- x86/MCE: Make the number of MCA banks a per-CPU variable (Aristeu Rozanski) [1918583]
+- x86/MCE/AMD: Don't cache block addresses on SMCA systems (Aristeu Rozanski) [1918583]
+- x86/MCE: Make mce_banks a per-CPU array (Aristeu Rozanski) [1918583]
+- x86/MCE: Make struct mce_banks[] static (Aristeu Rozanski) [1918583]
+- x86/MCE/AMD: Don't report L1 BTB MCA errors on some family 17h models (Aristeu Rozanski) [1918583]
+- EDAC/mce_amd: Decode MCA_STATUS in bit definition order (Aristeu Rozanski) [1918583]
+- EDAC/mce_amd: Decode MCA_STATUS[Scrub] bit (Aristeu Rozanski) [1918583]
+- EDAC, mce_amd: Match error descriptions to latest documentation (Aristeu Rozanski) [1918583]
+- x86/MCE/AMD: Carve out the MC4_MISC thresholding quirk (Aristeu Rozanski) [1918583]
+- x86/MCE/AMD: Turn off MC4_MISC thresholding on all family 0x15 models (Aristeu Rozanski) [1918583]
+- powerpc/64s: Fix unrelocated interrupt trampoline address test (Waiman Long) [1966462]
+- intel_th: pci: Add Alder Lake CPU support (Jiri Olsa) [1840246]
+- intel_th: pci: Add Alder Lake-S support (Jiri Olsa) [1840246]
+- mfd: intel_pmt: Add support for DG1 (David Arcari) [1783144]
+- mfd: intel_pmt: Fix nuisance messages and handling of disabled capabilities (David Arcari) [1783144]
+- redhat/configs: Add CONFIG_INTEL_PMT_CRASHLOG (David Arcari) [1783144]
+- redhat/configs: Add CONFIG_INTEL_PMT_TELEMETRY (David Arcari) [1783144]
+- redhat/configs: Add CONFIG_MFD_INTEL_PMT (David Arcari) [1783144]
+- platform/x86: intel_pmt_crashlog: Add dependency on MFD_INTEL_PMT (David Arcari) [1783144]
+- platform/x86: intel_pmt_telemetry: Add dependency on MFD_INTEL_PMT (David Arcari) [1783144]
+- platform/x86: intel_pmt: Make INTEL_PMT_CLASS non-user-selectable (David Arcari) [1783144]
+- platform/x86: intel_pmt_crashlog: Fix incorrect macros (David Arcari) [1783144]
+- platform/x86: intel_pmt_class: Initial resource to 0 (David Arcari) [1783144]
+- mfd: Standardise MFD_CELL_* helper names (David Arcari) [1783144]
+- platform/x86: pmt: Fix a potential Oops on error in probe (David Arcari) [1783144]
+- platform/x86: Intel PMT Crashlog capability driver (David Arcari) [1783144]
+- platform/x86: Intel PMT Telemetry capability driver (David Arcari) [1783144]
+- platform/x86: Intel PMT class driver (David Arcari) [1783144]
+- mfd: Intel Platform Monitoring Technology support (David Arcari) [1783144]
+- mfd: mfd-core: Ensure disabled devices are ignored without error (David Arcari) [1783144]
+- mfd: core: Fix double-free in mfd_remove_devices_fn() (David Arcari) [1783144]
+- mfd: mfd-core: Add mechanism for removal of a subset of children (David Arcari) [1783144]
+- mfd: core: Add OF_MFD_CELL_REG() helper (David Arcari) [1783144]
+- mfd: core: Fix formatting of MFD helpers (David Arcari) [1783144]
+- mfd: core: Make a best effort attempt to match devices with the correct of_nodes (David Arcari) [1783144]
+- mfd: mfd-core: Complete kerneldoc header for devm_mfd_add_devices() (David Arcari) [1783144]
+- mfd: Constify properties in mfd_cell (David Arcari) [1783144]
+- mfd: mfd-core: Honour Device Tree's request to disable a child-device (David Arcari) [1783144]
+- mfd: mfd-core: Move pdev->mfd_cell creation back into mfd_add_device() (David Arcari) [1783144]
+- mfd: mfd-core: Remove usage counting for .{en,dis}able() call-backs (David Arcari) [1783144]
+- mfd: mfd-core: Protect against NULL call-back function pointer (David Arcari) [1783144]
+- mfd: mfd-core: Remove mfd_clone_cell() (David Arcari) [1783144]
+- mfd: Provide MACRO to declare commonly defined MFD cell attributes (David Arcari) [1783144]
+- mfd: core: Set fwnode for created devices (David Arcari) [1783144]
+- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (David Arcari) [1783144]
+- mfd: mfd-core: Document mfd_add_devices() (David Arcari) [1783144]
+- PCI: Add defines for Designated Vendor-Specific Extended Capability (David Arcari) [1783144]
+- tick/nohz: Update idle_exittime on actual idle exit (Phil Auld) [1962632]
+- tick/nohz: Remove superflous check for CONFIG_VIRT_CPU_ACCOUNTING_NATIVE (Phil Auld) [1962632]
+- tick/nohz: Conditionally restart tick on idle exit (Phil Auld) [1962632]
+- x86, sched: Fix the AMD CPPC maximum performance value on certain AMD Ryzen generations (Phil Auld) [1960687]
+- pinctrl: devicetree: Avoid taking direct reference to device name string (Aristeu Rozanski) [1922904] {CVE-2020-0427}
+- redhat: ppc64: enable CONFIG_PPC_RTAS_FILTER (Aristeu Rozanski) [1906444] {CVE-2020-27777}
+- powerpc/rtas: Fix typo of ibm,open-errinjct in RTAS filter (Aristeu Rozanski) [1906444] {CVE-2020-27777}
+- powerpc/rtas: Restrict RTAS requests from userspace (Aristeu Rozanski) [1906444] {CVE-2020-27777}
+
+* Thu Jun 10 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-313.el8]
+- docs: vxlan: add info about device features (Petr Oros) [1941739]
+- selftests: net: add a test for static UDP tunnel ports (Petr Oros) [1941739]
+- netdevsim: support the static IANA VXLAN port flag (Petr Oros) [1941739]
+- selftests: net: add a test for shared UDP tunnel info tables (Petr Oros) [1941739]
+- netdevsim: shared UDP tunnel port table support (Petr Oros) [1941739]
+- netdevsim: add warnings on unexpected UDP tunnel port errors (Petr Oros) [1941739]
+- udp_tunnel: add the ability to share port tables (Petr Oros) [1941739]
+- docs: networking: convert vxlan.txt to ReST (Petr Oros) [1941739]
+- net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT (Ivan Vecera) [1960528]
+- ethtool: fix incorrect datatype in set_eee ops (Balazs Nemeth) [1956698]
+- ethtool: fix missing NLM_F_MULTI flag when dumping (Antoine Tenart) [1953847]
+- y2038: remove CONFIG_64BIT_TIME (Waiman Long) [1965360]
+- net/mlx4: Fix EEPROM dump support (Alaa Hleihel) [1915305]
+- net/mlx4_en: update moderation when config reset (Alaa Hleihel) [1915305]
+- net/mlx4_core: Add missed mlx4_free_cmd_mailbox() (Alaa Hleihel) [1915305]
+- IB/mlx4: Use port iterator and validation APIs (Alaa Hleihel) [1915305]
+- net/mlx4: Use effective interrupt affinity (Alaa Hleihel) [1915302 1915305]
+- net/mlx4: Replace irq_to_desc() abuse (Alaa Hleihel) [1915302 1915305]
+- net/mlx4: simplify the return expression of mlx4_init_srq_table() (Alaa Hleihel) [1915302 1915305]
+- RDMA/mlx4: Remove bogus dev_base_lock usage (Alaa Hleihel) [1915302 1915305]
+- net/mlx4: simplify the return expression of mlx4_init_cq_table() (Alaa Hleihel) [1915302 1915305]
+- net/mlx4: Remove unused #define MAX_MSIX_P_PORT (Alaa Hleihel) [1915302 1915305]
+- RDMA/mlx4: Enable querying AH for XRC QP types (Alaa Hleihel) [1915302 1915305]
+- IB/mlx4: Fix fall-through warnings for Clang (Alaa Hleihel) [1915302 1915305]
+- net/mlx4_en: Remove unused performance counters (Alaa Hleihel) [1915302 1915305]
+- net/mlx4: Assign boolean values to a bool variable (Alaa Hleihel) [1915302 1915305]
+- net/mlx4: Cleanup kernel-doc warnings (Alaa Hleihel) [1915302 1915305]
+- net/mlx4_core : remove unneeded semicolon (Alaa Hleihel) [1915302 1915305]
+- net/mlx4_core: Fix init_hca fields offset (Alaa Hleihel) [1915301 1915305]
+- mlx4: handle non-napi callers to napi_poll (Alaa Hleihel) [1915301 1915305]
+- mlx4: drivers/net/ethernet: clean up unused assignments (Alaa Hleihel) [1915301 1915305]
+- mlx4: add pause frame stats (Alaa Hleihel) [1915301 1915305]
+- mlx4: make sure to always set the port type (Alaa Hleihel) [1915301 1915305]
+- net/mlx4_en: RX, Add a prefetch command for small L1_CACHE_BYTES (Alaa Hleihel) [1915301 1915305]
+- cnic: remove redundant assignment to variable ret (Nilesh Javali) [1921619]
+- net: cnic: fix spelling mistake "reserverd" -> "reserved" (Nilesh Javali) [1921619]
+- cnic: Explicitly initialize all reference counts to 0. (Nilesh Javali) [1921619]
+- cfg80211: fix locking in netlink owner interface destruction (Jarod Wilson) [1937053]
+- brcmfmac: Avoid GFP_ATOMIC when GFP_KERNEL is enough (Jarod Wilson) [1937053]
+- ath11k: fix warning in ath11k_mhi_config (Jarod Wilson) [1937053]
+- ath11k: qmi: Fix spelling mistake "requeqst" -> "request" (Jarod Wilson) [1937053]
+- ath10k: Fix ath10k_wmi_tlv_op_pull_peer_stats_info() unlock without lock (Jarod Wilson) [1937053]
+- ath10k: Fix a use after free in ath10k_htc_send_bundle (Jarod Wilson) [1937053]
+- ath9k: Fix error check in ath9k_hw_read_revisions() for PCI devices (Jarod Wilson) [1937053]
+- mt76: mt7921: reinit wpdma during drv_own if necessary (Jarod Wilson) [1937053]
+- mt76: move mt76_token_init in mt76_alloc_device (Jarod Wilson) [1937053]
+- mt76: mt7921: fix a precision vs width bug in printk (Jarod Wilson) [1937053]
+- mt76: mt7915: fix a precision vs width bug in printk (Jarod Wilson) [1937053]
+- mt76: mt7615: fix a precision vs width bug in printk (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce mt7921_mcu_sta_add routine (Jarod Wilson) [1937053]
+- mt76: mt7921: mt7921_stop should put device in fw_own state (Jarod Wilson) [1937053]
+- mt76: connac: unschedule mac_work before going to sleep (Jarod Wilson) [1937053]
+- mt76: mt7663: add awake and doze time accounting (Jarod Wilson) [1937053]
+- mt76: mt7921: improve doze opportunity (Jarod Wilson) [1937053]
+- mt76: mt7921: get rid of mcu_reset function pointer (Jarod Wilson) [1937053]
+- mt76: mt7915: do not read rf value from efuse in flash mode (Jarod Wilson) [1937053]
+- mt76: move token utilities in mt76 common module (Jarod Wilson) [1937053]
+- mt76: move token_lock, token and token_count in mt76_dev (Jarod Wilson) [1937053]
+- mt76: mt7921: fix possible invalid register access (Jarod Wilson) [1937053]
+- mt76: mt7921: enable deep sleep when the device suspends (Jarod Wilson) [1937053]
+- mt76: connac: introduce mt76_connac_mcu_set_deep_sleep utility (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce mt7921_wpdma_reinit_cond utility routine (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce mt7921_dma_{enable,disable} utilities (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce mt7921_wpdma_reset utility routine (Jarod Wilson) [1937053]
+- mt76: mt7921: move mt7921_dma_reset in dma.c (Jarod Wilson) [1937053]
+- mt76: mt7615: Fix a dereference of pointer sta before it is null checked (Jarod Wilson) [1937053]
+- mt76: mt7921: enable sw interrupts (Jarod Wilson) [1937053]
+- mt76: mt7921: add awake and doze time accounting (Jarod Wilson) [1937053]
+- mt76: remove MT76_STATE_PM in tx path (Jarod Wilson) [1937053]
+- mt76: connac: use waitqueue for runtime-pm (Jarod Wilson) [1937053]
+- mt76: connac: do not run mt76_txq_schedule_all directly (Jarod Wilson) [1937053]
+- mt76: mt7615: rely on pm refcounting in mt7615_led_set_config (Jarod Wilson) [1937053]
+- mt76: connac: alaways wake the device before scanning (Jarod Wilson) [1937053]
+- mt76: mt7921: get rid of useless MT76_STATE_PM in mt7921_mac_work (Jarod Wilson) [1937053]
+- mt76: connac: remove MT76_STATE_PM in mac_tx_free (Jarod Wilson) [1937053]
+- mt76: connac: check wake refcount in mcu_fw_pmctrl (Jarod Wilson) [1937053]
+- mt76: connac: unschedule ps_work in mt76_connac_pm_wake (Jarod Wilson) [1937053]
+- mt76: mt7663: rely on mt76_connac_pm_ref/mt76_connac_pm_unref in tx/rx napi (Jarod Wilson) [1937053]
+- mt76: mt7921: rely on mt76_connac_pm_ref/mt76_connac_pm_unref in tx/rx napi (Jarod Wilson) [1937053]
+- mt76: dma: add the capability to define a custom rx napi poll routine (Jarod Wilson) [1937053]
+- mt76: mt7663: rely on mt76_connac_pm_ref/mt76_connac_pm_unref in tx path (Jarod Wilson) [1937053]
+- mt76: mt7921: rely on mt76_connac_pm_ref/mt76_connac_pm_unref in tx path (Jarod Wilson) [1937053]
+- mt76: connac: introduce wake counter for fw_pmctrl synchronization (Jarod Wilson) [1937053]
+- mt76: mt7663: fix a race between mt7615_mcu_drv_pmctrl and mt7615_mcu_fw_pmctrl (Jarod Wilson) [1937053]
+- mt76: mt7921: fix a race between mt7921_mcu_drv_pmctrl and mt7921_mcu_fw_pmctrl (Jarod Wilson) [1937053]
+- mt76: mt7921: remove leftover function declaration (Jarod Wilson) [1937053]
+- mt76: connac: move mcu_update_arp_filter in mt76_connac module (Jarod Wilson) [1937053]
+- mt76: mt7921: do not use 0 as NULL pointer (Jarod Wilson) [1937053]
+- mt76: mt7915: directly read per-rate tx power from registers (Jarod Wilson) [1937053]
+- mt76: mt7915: rework the flow of txpower setting (Jarod Wilson) [1937053]
+- mt76: mt7915: add support for DT rate power limits (Jarod Wilson) [1937053]
+- mt76: mt7921: abort uncompleted scan by wifi reset (Jarod Wilson) [1937053]
+- mt76: mt7921: add wifisys reset support in debugfs (Jarod Wilson) [1937053]
+- mt76: mt7921: run mt7921_mcu_fw_log_2_host holding mt76 mutex (Jarod Wilson) [1937053]
+- mt76: improve mcu error logging (Jarod Wilson) [1937053]
+- mt76: mt7921: move hw configuration in mt7921_register_device (Jarod Wilson) [1937053]
+- mt76: mt7915: add support for applying pre-calibration data (Jarod Wilson) [1937053]
+- mt76: mt7615: load ROM patch before checking patch semaphore status (Jarod Wilson) [1937053]
+- mt76: mt7615: fix entering driver-own state on mt7663 (Jarod Wilson) [1937053]
+- mt76: mt7615: fix hardware error recovery for mt7663 (Jarod Wilson) [1937053]
+- mt76: mt7921: add dumping Tx power table (Jarod Wilson) [1937053]
+- mt76: introduce single-sku support for mt7663/mt7921 (Jarod Wilson) [1937053]
+- mt76: mt7615: do not use mt7615 single-sku values for mt7663 (Jarod Wilson) [1937053]
+- mt76: mt7615: implement support for using DT rate power limits (Jarod Wilson) [1937053]
+- mt76: extend DT rate power limits to support 11ax devices (Jarod Wilson) [1937053]
+- mt76: add functions for parsing rate power limits from DT (Jarod Wilson) [1937053]
+- mt76: flush tx status queue on DMA reset (Jarod Wilson) [1937053]
+- mt76: mt7921: add mt7921_dma_cleanup in mt7921_unregister_device (Jarod Wilson) [1937053]
+- mt76: mt7615: use ieee80211_free_txskb() in mt7615_tx_token_put() (Jarod Wilson) [1937053]
+- mt76: mt7615: only free skbs after mt7615_dma_reset() when reset happens (Jarod Wilson) [1937053]
+- mt76: mt7915: only free skbs after mt7915_dma_reset() when reset happens (Jarod Wilson) [1937053]
+- mt76: mt7915: fix memleak when mt7915_unregister_device() (Jarod Wilson) [1937053]
+- mt76: mt7615: fix memleak when mt7615_unregister_device() (Jarod Wilson) [1937053]
+- mt76: mt7915: fix rate setting of tx descriptor in testmode (Jarod Wilson) [1937053]
+- mt76: mt7915: rework mt7915_tm_set_tx_len() (Jarod Wilson) [1937053]
+- mt76: testmode: add support to send larger packet (Jarod Wilson) [1937053]
+- rtlwifi: implement set_tim by update beacon content (Jarod Wilson) [1937053]
+- rtw88: refine napi deinit flow (Jarod Wilson) [1937053]
+- rtw88: Fix potential unrecoverable tx queue stop (Jarod Wilson) [1937053]
+- rtw88: 8821c: Don't set RX_FLAG_DECRYPTED if packet has no encryption (Jarod Wilson) [1937053]
+- rtw88: 8822c: debug: allow debugfs to enable/disable TXGAPK (Jarod Wilson) [1937053]
+- rtw88: 8822c: Add gap-k calibration to improve long range performance (Jarod Wilson) [1937053]
+- rtw88: 8822c: reorder macro position according to the register number (Jarod Wilson) [1937053]
+- iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_gen2_enqueue_hcmd() (Jarod Wilson) [1937053]
+- cfg80211: scan: drop entry from hidden_list on overflow (Jarod Wilson) [1937053]
+- wireless: fix spelling of A-MSDU in HE capabilities (Jarod Wilson) [1937053]
+- wireless: align HE capabilities A-MPDU Length Exponent Extension (Jarod Wilson) [1937053]
+- wireless: align some HE capabilities with the spec (Jarod Wilson) [1937053]
+- mac80211: drop the connection if firmware crashed while in CSA (Jarod Wilson) [1937053]
+- nl80211: Add new RSNXE related nl80211 extended features (Jarod Wilson) [1937053]
+- mac80211: properly drop the connection in case of invalid CSA IE (Jarod Wilson) [1937053]
+- mac80211: make ieee80211_vif_to_wdev work when the vif isn't in the driver (Jarod Wilson) [1937053]
+- nl80211/cfg80211: add a flag to negotiate for LMR feedback in NDP ranging (Jarod Wilson) [1937053]
+- ieee80211: add the values of ranging parameters max LTF total field (Jarod Wilson) [1937053]
+- mac80211: aes_cmac: check crypto_shash_setkey() return value (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: remove extraneous indentation on if statement (Jarod Wilson) [1937053]
+- mac80211: properly process TXQ management frames (Jarod Wilson) [1937053]
+- cfg80211: constify ieee80211_get_response_rate return (Jarod Wilson) [1937053]
+- cfg80211: fix a few kernel-doc warnings (Jarod Wilson) [1937053]
+- cfg80211: fix an htmldoc warning (Jarod Wilson) [1937053]
+- rtw88: 8822c: add CFO tracking (Jarod Wilson) [1937053]
+- iwlwifi: pcie: don't enable BHs with IRQs disabled (Jarod Wilson) [1937053]
+- rtw88: Fix array overrun in rtw_get_tx_power_params() (Jarod Wilson) [1937053]
+- brcmfmac: Remove duplicate struct declaration (Jarod Wilson) [1937053]
+- rtw88: update statistics to fw for fine-tuning performance (Jarod Wilson) [1937053]
+- brcmfmac: A typo fix (Jarod Wilson) [1937053]
+- rtl8xxxu: Simplify locking of a skb list accesses (Jarod Wilson) [1937053]
+- mwifiex: Remove unneeded variable: "ret" (Jarod Wilson) [1937053]
+- rtl8xxxu: Fix fall-through warnings for Clang (Jarod Wilson) [1937053]
+- mwifiex: don't print SSID to logs (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192de: Use DEFINE_SPINLOCK() for spinlock (Jarod Wilson) [1937053]
+- rtlwifi: Simplify locking of a skb list accesses (Jarod Wilson) [1937053]
+- rtlwifi: remove rtl_get_tid_h (Jarod Wilson) [1937053]
+- rtlwifi: rtl8188ee: remove redundant assignment of variable rtlpriv->btcoexist.reg_bt_sco (Jarod Wilson) [1937053]
+- rtlwifi: remove redundant assignment to variable err (Jarod Wilson) [1937053]
+- rtlwifi: Few mundane typo fixes (Jarod Wilson) [1937053]
+- rtlwifi: 8821ae: upgrade PHY and RF parameters (Jarod Wilson) [1937053]
+- iwlwifi: dbg: disable ini debug in 9000 family and below (Jarod Wilson) [1937053]
+- iwlwifi: pcie: Change ma product string name (Jarod Wilson) [1937053]
+- iwlwifi: fw: print out trigger delay when collecting data (Jarod Wilson) [1937053]
+- iwlwifi: trans/pcie: defer transport initialisation (Jarod Wilson) [1937053]
+- iwlwifi: bump FW API to 63 for AX devices (Jarod Wilson) [1937053]
+- iwlwifi: mvm: don't WARN if we can't remove a time event (Jarod Wilson) [1937053]
+- iwlwifi: mvm: don't disconnect immediately if we don't hear beacons after CSA (Jarod Wilson) [1937053]
+- iwlwifi: rs-fw: don't support stbc for HE 160 (Jarod Wilson) [1937053]
+- iwlwifi: warn on SKB free w/o op-mode (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add support for version 3 of LARI_CONFIG_CHANGE command. (Jarod Wilson) [1937053]
+- iwlwifi: pcie: add ISR debug info for msix debug (Jarod Wilson) [1937053]
+- iwlwifi: pcie: merge napi_poll_msix functions (Jarod Wilson) [1937053]
+- iwlwifi: mvm: don't lock mutex in RCU critical section (Jarod Wilson) [1937053]
+- iwlwifi: mvm: remove PS from lower rates. (Jarod Wilson) [1937053]
+- iwlwifi: mvm: umac error table mismatch (Jarod Wilson) [1937053]
+- iwlwifi: queue: avoid memory leak in reset flow (Jarod Wilson) [1937053]
+- iwlwifi: don't warn if we can't wait for empty tx queues (Jarod Wilson) [1937053]
+- iwlwifi: remove remaining software checksum code (Jarod Wilson) [1937053]
+- iwlwifi: remove TCM events (Jarod Wilson) [1937053]
+- iwlwifi: mvm: Use IWL_INFO in fw_reset_handshake() (Jarod Wilson) [1937053]
+- iwlwifi: mvm: refactor ACPI DSM evaluation function (Jarod Wilson) [1937053]
+- iwlwifi: mvm: support BIOS enable/disable for 11ax in Ukraine (Jarod Wilson) [1937053]
+- iwlwifi: move iwl_configure_rxq to be used by other op_modes (Jarod Wilson) [1937053]
+- iwlwifi: add new so-gf device (Jarod Wilson) [1937053]
+- iwlwifi: mvm: enable PPAG in China (Jarod Wilson) [1937053]
+- iwlwifi: mvm: Add support for 6GHz passive scan (Jarod Wilson) [1937053]
+- iwlwifi: add ax201 killer device (Jarod Wilson) [1937053]
+- iwlwifi: mvm: when associated with PMF, use protected NDP ranging negotiation (Jarod Wilson) [1937053]
+- iwlwifi: mvm: clean up queue sync implementation (Jarod Wilson) [1937053]
+- iwlwifi: mvm: write queue_sync_state only for sync (Jarod Wilson) [1937053]
+- iwlwifi: mvm: responder: support responder config command version 8 (Jarod Wilson) [1937053]
+- iwlwifi: mvm: support range request command version 12 (Jarod Wilson) [1937053]
+- iwlwifi: pcie: make cfg vs. trans_cfg more robust (Jarod Wilson) [1937053]
+- iwlwifi: pcie: clear only FH bits handle in the interrupt (Jarod Wilson) [1937053]
+- iwlwifi: add 160Mhz to killer 1550 name (Jarod Wilson) [1937053]
+- iwlwifi: change name to AX 211 and 411 family (Jarod Wilson) [1937053]
+- iwlwifi: change step in so-gf struct (Jarod Wilson) [1937053]
+- iwlwifi: pcie: Add support for Bz Family (Jarod Wilson) [1937053]
+- iwlwifi: mvm: don't allow CSA if we haven't been fully associated (Jarod Wilson) [1937053]
+- iwlwifi: pcie: normally grab NIC access for inflight-hcmd (Jarod Wilson) [1937053]
+- iwlwifi: pcie: avoid unnecessarily taking spinlock (Jarod Wilson) [1937053]
+- iwlwifi: mvm: enable TX on new CSA channel before disconnecting (Jarod Wilson) [1937053]
+- mt76: mt7921: add rcu section in mt7921_mcu_tx_rate_report (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce MCU_EVENT_LP_INFO event parsing (Jarod Wilson) [1937053]
+- mt76: mt7615: always add rx header translation tlv when adding stations (Jarod Wilson) [1937053]
+- mt76: mt7615: add missing SPDX tag in mmio.c (Jarod Wilson) [1937053]
+- mt76: mt7915: add mmio.c (Jarod Wilson) [1937053]
+- mt76: report Rx timestamp (Jarod Wilson) [1937053]
+- mt76: mt7921: remove 80+80 MHz support capabilities (Jarod Wilson) [1937053]
+- mt76: fix potential DMA mapping leak (Jarod Wilson) [1937053]
+- mt76: mt7921: reduce the data latency during hw scan (Jarod Wilson) [1937053]
+- mt76: mt7921: fix the insmod hangs (Jarod Wilson) [1937053]
+- mt76: mt7921: fix kernel crash when the firmware fails to download (Jarod Wilson) [1937053]
+- mt76: mt7921: fix the dwell time control (Jarod Wilson) [1937053]
+- mt76: mt7921: fix inappropriate WoW setup with the missing ARP informaiton (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce MT_WFDMA_DUMMY_CR definition (Jarod Wilson) [1937053]
+- mt76: mt7915: add wifi subsystem reset (Jarod Wilson) [1937053]
+- mt76: mt7915: fix mt7915_mcu_add_beacon (Jarod Wilson) [1937053]
+- mt76: mt7615: fix .add_beacon_offload() (Jarod Wilson) [1937053]
+- mt76: mt7921: rework mt7921_mcu_debug_msg_event routine (Jarod Wilson) [1937053]
+- mt76: mt7921: always wake the device in mt7921_remove_interface (Jarod Wilson) [1937053]
+- mt76: mt7921: fix key set/delete issue (Jarod Wilson) [1937053]
+- mt76: mt7915: fix txpower init for TSSI off chips (Jarod Wilson) [1937053]
+- mt76: mt7915: limit firmware log message printk to buffer length (Jarod Wilson) [1937053]
+- mt76: mt7615: limit firmware log message printk to buffer length (Jarod Wilson) [1937053]
+- mt76: mt7615: fix chip reset on MT7622 and MT7663e (Jarod Wilson) [1937053]
+- mt76: mt7915: cleanup mcu tx queue in mt7915_dma_reset() (Jarod Wilson) [1937053]
+- mt76: mt7915: keep mcu_add_bss_info enabled till interface removal (Jarod Wilson) [1937053]
+- mt76: mt7615: keep mcu_add_bss_info enabled till interface removal (Jarod Wilson) [1937053]
+- mt76: mt7622: trigger hif interrupt for system reset (Jarod Wilson) [1937053]
+- mt76: mt7615: cleanup mcu tx queue in mt7615_dma_reset() (Jarod Wilson) [1937053]
+- mt76: mt7615: only enable DFS test knobs for mt7615 (Jarod Wilson) [1937053]
+- mt76: mt7921: properly configure rcpi adding a sta to the fw (Jarod Wilson) [1937053]
+- mt76: connac: introduce mt76_sta_cmd_info data structure (Jarod Wilson) [1937053]
+- mt76: mt7921: get rid of mt7921_mac_wtbl_lmac_addr (Jarod Wilson) [1937053]
+- mt76: mt7915: refresh repeater entry MAC address when setting BSSID (Jarod Wilson) [1937053]
+- mt76: mt7915: fix key set/delete issue (Jarod Wilson) [1937053]
+- mt76: mt7921: remove duplicated macros in mcu.h (Jarod Wilson) [1937053]
+- mt76: mt7921: remove redundant check on type (Jarod Wilson) [1937053]
+- mt76: mt7921: remove leftovers from dbdc configuration (Jarod Wilson) [1937053]
+- mt76: mt7921: add wifi reset support (Jarod Wilson) [1937053]
+- mt76: dma: export mt76_dma_rx_cleanup routine (Jarod Wilson) [1937053]
+- mt76: dma: introduce mt76_dma_queue_reset routine (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce __mt7921_start utility routine (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce mt7921_run_firmware utility routine. (Jarod Wilson) [1937053]
+- mt76: introduce mcu_reset function pointer in mt76_mcu_ops structure (Jarod Wilson) [1937053]
+- mt76: mt7921: reduce mcu timeouts for suspend, offload and hif_ctrl msg (Jarod Wilson) [1937053]
+- mt76: mt7915: fix possible deadlock while mt7915_register_ext_phy() (Jarod Wilson) [1937053]
+- mt76: mt7615: add missing capabilities for DBDC (Jarod Wilson) [1937053]
+- mt76: mt7663s: fix the possible device hang in high traffic (Jarod Wilson) [1937053]
+- mt76: mt7663s: make all of packets 4-bytes aligned in sdio tx aggregation (Jarod Wilson) [1937053]
+- mt76: mt7663: fix when beacon filter is being applied (Jarod Wilson) [1937053]
+- mt76: mt7615: check mcu returned values in mt7615_ops (Jarod Wilson) [1937053]
+- mt76: mt7915: check mcu returned values in mt7915_ops (Jarod Wilson) [1937053]
+- mt76: mt7915: fix txrate reporting (Jarod Wilson) [1937053]
+- mt76: mt7915: fix rxrate reporting (Jarod Wilson) [1937053]
+- mt76: mt76x0u: Add support for TP-Link T2UHP(UN) v1 (Jarod Wilson) [1937053]
+- mt76: mt7915: fix PHY mode for DBDC (Jarod Wilson) [1937053]
+- mt76: mt7915: stop ext_phy queue when mac reset happens (Jarod Wilson) [1937053]
+- mt76: mt7915: fix CSA notification for DBDC (Jarod Wilson) [1937053]
+- mt76: mt7615: stop ext_phy queue when mac reset happens (Jarod Wilson) [1937053]
+- mt76: mt7615: fix CSA notification for DBDC (Jarod Wilson) [1937053]
+- mt76: mt7915: add missing capabilities for DBDC (Jarod Wilson) [1937053]
+- mt76: mt7921: check mcu returned values in mt7921_start (Jarod Wilson) [1937053]
+- mt76: mt7921: fix the base of the dynamic remap (Jarod Wilson) [1937053]
+- mt76: mt7921: fix the base of PCIe interrupt (Jarod Wilson) [1937053]
+- mt76: mt7921: get rid of mt7921_sta_rc_update routine (Jarod Wilson) [1937053]
+- mt76: check return value of mt76_txq_send_burst in mt76_txq_schedule_list (Jarod Wilson) [1937053]
+- mt76: connac: fix kernel warning adding monitor interface (Jarod Wilson) [1937053]
+- mt76: mt7915: fix mib stats counter reporting to mac80211 (Jarod Wilson) [1937053]
+- mt76: mt7615: fix mib stats counter reporting to mac80211 (Jarod Wilson) [1937053]
+- mt76: mt7615: remove hdr->fw_ver check (Jarod Wilson) [1937053]
+- mt76: mt7615: fix TSF configuration (Jarod Wilson) [1937053]
+- mt76: mt7921: fix stats register definitions (Jarod Wilson) [1937053]
+- mt76: mt7921: remove unneeded semicolon (Jarod Wilson) [1937053]
+- mt76: mt7915: fix aggr len debugfs node (Jarod Wilson) [1937053]
+- mt76: mt7921: fix aggr length histogram (Jarod Wilson) [1937053]
+- mt76: mt7615: fix memory leak in mt7615_coredump_work (Jarod Wilson) [1937053]
+- mt76: mt7615: add support for rx decapsulation offload (Jarod Wilson) [1937053]
+- mt76: mt7615: add rx checksum offload support (Jarod Wilson) [1937053]
+- mt76: mt7615: enable hw rx-amsdu de-aggregation (Jarod Wilson) [1937053]
+- mt76: connac: update sched_scan cmd usage (Jarod Wilson) [1937053]
+- mt76: mt7921: add flush operation (Jarod Wilson) [1937053]
+- mt76: mt7921: fixup rx bitrate statistics (Jarod Wilson) [1937053]
+- mt76: connac: fix up the setting for ht40 mode in mt76_connac_mcu_uni_add_bss (Jarod Wilson) [1937053]
+- mt76: mt7921: switch to new api for hardware beacon filter (Jarod Wilson) [1937053]
+- mt76: mt7921: fix memory leak in mt7921_coredump_work (Jarod Wilson) [1937053]
+- mt76: mt7921: fix suspend/resume sequence (Jarod Wilson) [1937053]
+- mt76: use PCI_VENDOR_ID_MEDIATEK to avoid open coded (Jarod Wilson) [1937053]
+- mt76: mt7915: always check return value from mt7915_mcu_alloc_wtbl_req (Jarod Wilson) [1937053]
+- mt76: connac: always check return value from mt76_connac_mcu_alloc_wtbl_req (Jarod Wilson) [1937053]
+- mt76: mt76x0: disable GTK offloading (Jarod Wilson) [1937053]
+- mt76: always use WTBL_MAX_SIZE for tlv allocation (Jarod Wilson) [1937053]
+- mt76: mt7921: removed unused definitions in mcu.h (Jarod Wilson) [1937053]
+- mt76: mt7921: remove unnecessary variable (Jarod Wilson) [1937053]
+- mt76: mt7921: enable random mac addr during scanning (Jarod Wilson) [1937053]
+- mt76: mt7615: support loading EEPROM for MT7613BE (Jarod Wilson) [1937053]
+- mt76: mt7915: fix tx skb dma unmap (Jarod Wilson) [1937053]
+- mt76: mt7615: fix tx skb dma unmap (Jarod Wilson) [1937053]
+- mt76: mt7615: fix key set/delete issues (Jarod Wilson) [1937053]
+- mt76: mt7915: add support for rx decapsulation offload (Jarod Wilson) [1937053]
+- mt76: mt7915: add rx checksum offload support (Jarod Wilson) [1937053]
+- mt76: mt7915: enable hw rx-amsdu de-aggregation (Jarod Wilson) [1937053]
+- mt76: add support for 802.3 rx frames (Jarod Wilson) [1937053]
+- cfg80211: Remove wrong RNR IE validation check (Jarod Wilson) [1937053]
+- mac80211: bail out if cipher schemes are invalid (Jarod Wilson) [1937053]
+- mac80211: clear the beacon's CRC after channel switch (Jarod Wilson) [1937053]
+- mac80211: Set priority and queue mapping for injected frames (Jarod Wilson) [1937053]
+- mac80211: Allow concurrent monitor iface and ethernet rx decap (Jarod Wilson) [1937053]
+- nl80211: Add interface to indicate TDLS peer's HE capability (Jarod Wilson) [1937053]
+- cfg80211: allow specifying a reason for hw_rfkill (Jarod Wilson) [1937053]
+- nl80211: better document CMD_ROAM behavior (Jarod Wilson) [1937053]
+- mac80211: set sk_pacing_shift for 802.3 txpath (Jarod Wilson) [1937053]
+- mac80211: don't apply flow control on management frames (Jarod Wilson) [1937053]
+- nl80211: Add missing line in nl80211_fils_discovery_policy (Jarod Wilson) [1937053]
+- mac80211: remove redundant assignment of variable result (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: remove unused variable 'mg' in minstrel_ht_next_jump_rate() (Jarod Wilson) [1937053]
+- cfg80211: regulatory: use DEFINE_SPINLOCK() for spinlock (Jarod Wilson) [1937053]
+- mac80211_hwsim: use DEFINE_SPINLOCK() for spinlock (Jarod Wilson) [1937053]
+- rfkill: use DEFINE_SPINLOCK() for spinlock (Jarod Wilson) [1937053]
+- mt7601u: enable TDLS support (Jarod Wilson) [1937053]
+- mt7601u: fix always true expression (Jarod Wilson) [1937053]
+- rtw88: Fix an error code in rtw_debugfs_set_rsvd_page() (Jarod Wilson) [1937053]
+- rtw88: coex: fix A2DP stutters while WL busy + WL scan (Jarod Wilson) [1937053]
+- rtw88: 8822c: add LC calibration for RTL8822C (Jarod Wilson) [1937053]
+- rtw88: 8822c: update tx power limit table to RF v40.1 (Jarod Wilson) [1937053]
+- rtw88: fix DIG min setting (Jarod Wilson) [1937053]
+- rtw88: add flush hci support (Jarod Wilson) [1937053]
+- rtw88: 8822c: support FW crash dump when FW crash (Jarod Wilson) [1937053]
+- rtw88: remove unnecessary variable (Jarod Wilson) [1937053]
+- rtw88: coex: add power off setting (Jarod Wilson) [1937053]
+- ath11k: Add support for STA to handle beacon miss (Jarod Wilson) [1937053]
+- ath11k: Update signal filled flag during sta_statistics drv op (Jarod Wilson) [1937053]
+- ath10k: skip the wait for completion to recovery in shutdown path (Jarod Wilson) [1937053]
+- ath11k: fix thermal temperature read (Jarod Wilson) [1937053]
+- ath11k: fix potential wmi_mgmt_tx_queue race condition (Jarod Wilson) [1937053]
+- ath11k: qmi: cosmetic changes to error messages (Jarod Wilson) [1937053]
+- ath11k: qmi: add more debug messages (Jarod Wilson) [1937053]
+- Revert "ath9k: fix ath_tx_process_buffer() potential null ptr dereference" (Jarod Wilson) [1937053]
+- ath11k: print hardware name and version during initialisation (Jarod Wilson) [1937053]
+- ath11k: Enable radar detection for 160MHz secondary segment (Jarod Wilson) [1937053]
+- ath11k: Fix sounding dimension config in HE cap (Jarod Wilson) [1937053]
+- ath11k: add qcn9074 pci device support (Jarod Wilson) [1937053]
+- ath11k: add extended interrupt support for QCN9074 (Jarod Wilson) [1937053]
+- ath11k: add CE interrupt support for QCN9074 (Jarod Wilson) [1937053]
+- ath11k: add data path support for QCN9074 (Jarod Wilson) [1937053]
+- ath11k: add hal support for QCN9074 (Jarod Wilson) [1937053]
+- ath11k: add static window support for register access (Jarod Wilson) [1937053]
+- ath11k: Add qcn9074 mhi controller config (Jarod Wilson) [1937053]
+- ath11k: Update memory segment count for qcn9074 (Jarod Wilson) [1937053]
+- ath11k: qmi: increase the number of fw segments (Jarod Wilson) [1937053]
+- ath11k: Move qmi service_ins_id to hw_params (Jarod Wilson) [1937053]
+- ath11k: Refactor ath11k_msi_config (Jarod Wilson) [1937053]
+- ath11k: debugfs: Fix spelling mistake "Opportunies" -> "Opportunities" (Jarod Wilson) [1937053]
+- ath9k: fix ath_tx_process_buffer() potential null ptr dereference (Jarod Wilson) [1937053]
+- nl80211: fix beacon head validation (Jarod Wilson) [1937053]
+- nl80211: fix potential leak of ACL params (Jarod Wilson) [1937053]
+- cfg80211: check S1G beacon compat element length (Jarod Wilson) [1937053]
+- cfg80211: remove WARN_ON() in cfg80211_sme_connect (Jarod Wilson) [1937053]
+- mac80211: fix time-is-after bug in mlme (Jarod Wilson) [1937053]
+- mac80211: fix TXQ AC confusion (Jarod Wilson) [1937053]
+- rfkill: revert back to old userspace API by default (Jarod Wilson) [1937053]
+- mac80211: clear sta->fast_rx when STA removed from 4-addr VLAN (Jarod Wilson) [1937053]
+- iwlwifi: mvm: fix beacon protection checks (Jarod Wilson) [1937053]
+- iwlwifi: mvm: rfi: don't lock mvm->mutex when sending config command (Jarod Wilson) [1937053]
+- iwlwifi: pcie: add support for So-F devices (Jarod Wilson) [1937053]
+- iwlwifi: fw: fix notification wait locking (Jarod Wilson) [1937053]
+- iwlwifi: add support for Qu with AX201 device (Jarod Wilson) [1937053]
+- iwlwifi: pcie: properly set LTR workarounds on 22000 devices (Jarod Wilson) [1937053]
+- iwlwifi: fix 11ax disabled bit in the regulatory capability flags (Jarod Wilson) [1937053]
+- brcmfmac: p2p: Fix recently introduced deadlock issue (Jarod Wilson) [1937053]
+- mt76: mt7921: fix airtime reporting (Jarod Wilson) [1937053]
+- iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_enqueue_hcmd() (Jarod Wilson) [1937053]
+- mt76: mt7615: remove redundant dev_err call in mt7622_wmac_probe() (Jarod Wilson) [1937053]
+- mt76: Convert to DEFINE_SHOW_ATTRIBUTE (Jarod Wilson) [1937053]
+- reg.c: Fix a spello (Jarod Wilson) [1937053]
+- mac80211: cfg.c: A typo fix (Jarod Wilson) [1937053]
+- wireless: remove never implemented MODULE_SUPPORTED_DEVICE (Jarod Wilson) [1937053]
+- wireless/nl80211: fix wdev_id may be used uninitialized (Jarod Wilson) [1937053]
+- nl80211: fix locking for wireless device netns change (Jarod Wilson) [1937053]
+- iwlwifi: don't call netif_napi_add() with rxq->lock held (was Re: Lockdep warning in iwl_pcie_rx_handle()) (Jarod Wilson) [1937053]
+- iwlwifi: fix ARCH=i386 compilation warnings (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add terminate entry for dmi_system_id tables (Jarod Wilson) [1937053]
+- mt76: mt7915: fix unused 'mode' variable (Jarod Wilson) [1937053]
+- mt76: dma: do not report truncated frames to mac80211 (Jarod Wilson) [1937053]
+- mt76: mt7921: remove incorrect error handling (Jarod Wilson) [1937053]
+- iwlwifi: pcie: fix iwl_so_trans_cfg link error when CONFIG_IWLMVM is disabled (Jarod Wilson) [1937053]
+- ath11k: fix AP mode for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: qmi: use pad to format dma_addr_t (Jarod Wilson) [1937053]
+- iwlwifi: avoid crash on unsupported debug collection (Jarod Wilson) [1937053]
+- mt76: mt7915: only modify tx buffer list after allocating tx token id (Jarod Wilson) [1937053]
+- mt76: fix tx skb error handling in mt76_dma_tx_queue_skb (Jarod Wilson) [1937053]
+- ath9k: fix transmitting to stations in dynamic SMPS mode (Jarod Wilson) [1937053]
+- redhat: Enable ath11k PCI device support (Jarod Wilson) [1937053]
+- soc: qcom: Do not depend on ARCH_QCOM for QMI helpers (Jarod Wilson) [1937053]
+- net: qrtr: Do not depend on ARCH_QCOM (Jarod Wilson) [1937053]
+- b43: N-PHY: Fix the update of coef for the PHY revision >= 3case (Jarod Wilson) [1937053]
+- nl80211: add documentation for HT/VHT/HE disable attributes (Jarod Wilson) [1937053]
+- cfg80211/mac80211: Support disabling HE mode (Jarod Wilson) [1937053]
+- mac80211: add STBC encoding to ieee80211_parse_tx_radiotap (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: remove sample rate switching code for constrained devices (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: show sampling rates in debugfs (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: significantly redesign the rate probing strategy (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: reduce the need to sample slower rates (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: update total packets counter in tx status path (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: use bitfields to encode rate indexes (Jarod Wilson) [1937053]
+- cfg80211: initialize reg_rule in __freq_reg_info() (Jarod Wilson) [1937053]
+- mac80211: fix potential overflow when multiplying to u32 integers (Jarod Wilson) [1937053]
+- mac80211: enable QoS support for nl80211 ctrl port (Jarod Wilson) [1937053]
+- cfg80211: remove unused callback (Jarod Wilson) [1937053]
+- rtw88: 8822c: update RF_B (2/2) parameter tables to v60 (Jarod Wilson) [1937053]
+- rtw88: 8822c: update RF_B (1/2) parameter tables to v60 (Jarod Wilson) [1937053]
+- rtw88: 8822c: update RF_A parameter tables to v60 (Jarod Wilson) [1937053]
+- rtw88: 8822c: update MAC/BB parameter tables to v60 (Jarod Wilson) [1937053]
+- rtw88: replace tx tasklet with work queue (Jarod Wilson) [1937053]
+- rtw88: add napi support (Jarod Wilson) [1937053]
+- rtw88: add rts condition (Jarod Wilson) [1937053]
+- rtw88: add dynamic rrsr configuration (Jarod Wilson) [1937053]
+- iwlwifi: remove incorrect comment in pnvm (Jarod Wilson) [1937053]
+- ath11k: qmi: add debug message for allocated memory segment addresses and sizes (Jarod Wilson) [1937053]
+- ath11k: pci: remove experimental warning (Jarod Wilson) [1937053]
+- ath10k: hold RCU lock when calling ieee80211_find_sta_by_ifaddr() (Jarod Wilson) [1937053]
+- ath10k: change ath10k_offchan_tx_work() peer present msg to a warn (Jarod Wilson) [1937053]
+- ath9k: fix data bus crash when setting nf_override via debugfs (Jarod Wilson) [1937053]
+- ath11k: add support to configure spatial reuse parameter set (Jarod Wilson) [1937053]
+- ath10k: restore tx sk_buff of htt header for SDIO (Jarod Wilson) [1937053]
+- brcmsmac: Fix the spelling configation to configuration in the file d11.h (Jarod Wilson) [1937053]
+- iwlwifi: bump FW API to 62 for AX devices (Jarod Wilson) [1937053]
+- iwlwifi: pnvm: implement reading PNVM from UEFI (Jarod Wilson) [1937053]
+- iwlwifi: pnvm: move file loading code to a separate function (Jarod Wilson) [1937053]
+- iwlwifi: pnvm: increment the pointer before checking the TLV (Jarod Wilson) [1937053]
+- iwlwifi: pcie: define FW_RESET_TIMEOUT for clarity (Jarod Wilson) [1937053]
+- iwlwifi: pnvm: set the PNVM again if it was already loaded (Jarod Wilson) [1937053]
+- iwlwifi: mvm: global PM mode does not reset after FW crash (Jarod Wilson) [1937053]
+- iwlwifi: mvm: reduce the print severity of failing getting NIC temp (Jarod Wilson) [1937053]
+- iwlwifi: mvm: get NVM later in the mvm_start flow (Jarod Wilson) [1937053]
+- iwlmvm: set properly NIC_NOT_ACK_ENABLED flag (Jarod Wilson) [1937053]
+- iwlwifi: remove max_ht_ampdu_exponent config parameter (Jarod Wilson) [1937053]
+- iwlwifi: remove max_vht_ampdu_exponent config parameter (Jarod Wilson) [1937053]
+- iwlwifi: mvm: Check ret code for iwl_mvm_load_nvm_to_nic (Jarod Wilson) [1937053]
+- iwlwifi: mvm: don't check if CSA event is running before removing (Jarod Wilson) [1937053]
+- iwlwifi: mvm: Support SCAN_CFG_CMD version 5 (Jarod Wilson) [1937053]
+- iwlwifi: mvm: isolate the get nvm flow (Jarod Wilson) [1937053]
+- iwlwifi: mvm: simplify iwl_mvm_dbgfs_register (Jarod Wilson) [1937053]
+- iwlwifi: mvm: register to mac80211 last (Jarod Wilson) [1937053]
+- iwlwifi: acpi: add support for DSM RFI (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add RFI-M support (Jarod Wilson) [1937053]
+- iwlwifi:mvm: Add support for version 2 of the LARI_CONFIG_CHANGE command. (Jarod Wilson) [1937053]
+- iwlwifi: pcie: don't crash when rx queues aren't allocated in interrupt (Jarod Wilson) [1937053]
+- iwlwifi: correction of group-id once sending REPLY_ERROR (Jarod Wilson) [1937053]
+- iwlwifi: pcie: add AX201 and AX211 radio modules for Ma devices (Jarod Wilson) [1937053]
+- iwlwifi: pcie: add CDB bit to the device configuration parsing (Jarod Wilson) [1937053]
+- iwlwifi: acpi: don't return valid pointer as an ERR_PTR (Jarod Wilson) [1937053]
+- iwlwifi: queue: add fake tx time point (Jarod Wilson) [1937053]
+- iwlwifi: remove flags argument for nic_access (Jarod Wilson) [1937053]
+- iwlwifi: declare support for triggered SU/MU beamforming feedback (Jarod Wilson) [1937053]
+- iwlwifi: dbg: add op_mode callback for collecting debug data. (Jarod Wilson) [1937053]
+- iwlwifi: api: clean up some documentation/bits (Jarod Wilson) [1937053]
+- iwlwifi: dbg: remove unsupported regions (Jarod Wilson) [1937053]
+- iwlwifi: pcie: Change Ma device ID (Jarod Wilson) [1937053]
+- iwlwifi: when HW has rate offload don't look at control field (Jarod Wilson) [1937053]
+- iwlwifi: pcie: NULLify pointers after free (Jarod Wilson) [1937053]
+- iwlwifi: mvm: assign SAR table revision to the command later (Jarod Wilson) [1937053]
+- iwlwifi: mvm: remove useless iwl_mvm_resume_d3() function (Jarod Wilson) [1937053]
+- iwlwifi: mvm: enhance a print in CSA flows (Jarod Wilson) [1937053]
+- iwlwifi: mvm: send stored PPAG command instead of local (Jarod Wilson) [1937053]
+- iwlwifi: mvm: store PPAG enabled/disabled flag properly (Jarod Wilson) [1937053]
+- iwlwifi: mvm: fix the type we use in the PPAG table validity checks (Jarod Wilson) [1937053]
+- iwlwifi: acpi: fix PPAG table sizes (Jarod Wilson) [1937053]
+- iwlwifi: pcie: don't disable interrupts for reg_lock (Jarod Wilson) [1937053]
+- iwlwifi: pcie: add a few missing entries for So with Hr (Jarod Wilson) [1937053]
+- iwlwifi: dbg: Mark ucode tlv data as const (Jarod Wilson) [1937053]
+- iwlwifi: add new cards for So and Qu family (Jarod Wilson) [1937053]
+- ath11k: fix a locking bug in ath11k_mac_op_start() (Jarod Wilson) [1937053]
+- rtlwifi: rtl8821ae: phy: Simplify bool comparison (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192se: Simplify bool comparison (Jarod Wilson) [1937053]
+- brcmfmac: add support for CQM RSSI notifications (Jarod Wilson) [1937053]
+- ath10k: Add new debug level for sta related logs (Jarod Wilson) [1937053]
+- ath11k: Update tx descriptor search index properly (Jarod Wilson) [1937053]
+- ath10k: Fix lockdep assertion warning in ath10k_sta_statistics (Jarod Wilson) [1937053]
+- ath10k: Fix suspicious RCU usage warning in ath10k_wmi_tlv_parse_peer_stats_info() (Jarod Wilson) [1937053]
+- wl3501: fix alignment constraints (Jarod Wilson) [1937053]
+- rt2800usb: add Sweex LW163V2 id's (Jarod Wilson) [1937053]
+- rt2x00: remove duplicate word and fix typo in comment (Jarod Wilson) [1937053]
+- mwifiex: Report connected BSS with cfg80211_connect_bss() (Jarod Wilson) [1937053]
+- rtl8xxxu: remove unused assignment value (Jarod Wilson) [1937053]
+- atmel: at76c50x: use DEFINE_MUTEX() for mutex lock (Jarod Wilson) [1937053]
+- brcmsmac: fix alignment constraints (Jarod Wilson) [1937053]
+- brcmfmac: Add DMI nvram filename quirk for Voyo winpad A15 tablet (Jarod Wilson) [1937053]
+- brcmfmac: Add DMI nvram filename quirk for Predia Basic tablet (Jarod Wilson) [1937053]
+- rtw88: 8821c: support RFE type2 wifi NIC (Jarod Wilson) [1937053]
+- rtw88: 8821c: Correct CCK RSSI (Jarod Wilson) [1937053]
+- rtw88: coex: 8821c: correct antenna switch function (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192se: remove redundant initialization of variable rtstatus (Jarod Wilson) [1937053]
+- iwlwifi: pcie: Disable softirqs during Rx queue init (Jarod Wilson) [1937053]
+- iwlwifi: bump FW API to 61 for AX devices (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add Asus to the PPAG approved list (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add Microsoft to the PPAG approved list (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add Samsung to the PPAG approved list (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add HP to the PPAG approved list (Jarod Wilson) [1937053]
+- iwlwifi: mvm: implement approved list for the PPAG feature (Jarod Wilson) [1937053]
+- iwlwifi: mvm: set enabled in the PPAG command properly (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add debugfs entry to trigger a dump as any time-point (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add tx fail time point (Jarod Wilson) [1937053]
+- iwlwifi: fwrt: add suspend/resume time point (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add triggers for MLME events (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add IML/ROM information for other HW families (Jarod Wilson) [1937053]
+- iwlwifi: mvm: fix CSA AP side (Jarod Wilson) [1937053]
+- iwlwifi: mvm: make iwl_mvm_tt_temp_changed() static (Jarod Wilson) [1937053]
+- iwlwifi: mvm: cancel the scan delayed work when scan is aborted (Jarod Wilson) [1937053]
+- iwlwifi: pcie: add support for SnJ with Hr1 (Jarod Wilson) [1937053]
+- iwlwifi: mvm: move early time-point before nvm_init in non-unified (Jarod Wilson) [1937053]
+- iwlwifi: add support for SnJ with Jf devices (Jarod Wilson) [1937053]
+- iwlwifi: move SnJ and So rules to the new tables (Jarod Wilson) [1937053]
+- iwlwifi: mvm: slightly clean up rs_fw_set_supp_rates() (Jarod Wilson) [1937053]
+- iwlwifi: fw api: make hdr a zero-size array again (Jarod Wilson) [1937053]
+- iwlwifi: bump FW API to 60 for AX devices (Jarod Wilson) [1937053]
+- iwlwifi: mvm: advertise BIGTK client support if available (Jarod Wilson) [1937053]
+- iwlwifi: always allow maximum A-MSDU on newer devices (Jarod Wilson) [1937053]
+- iwlwifi: mvm: debugfs: check length precisely in inject_packet (Jarod Wilson) [1937053]
+- iwlwifi: mvm: simplify TX power setting (Jarod Wilson) [1937053]
+- iwlwifi: tx: move handing sync/async host command to trans (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add explicit check for non-data frames in get Tx rate (Jarod Wilson) [1937053]
+- iwlwifi: mvm: debugfs for phy-integration-ver (Jarod Wilson) [1937053]
+- iwlwifi: parse phy integration string from FW TLV (Jarod Wilson) [1937053]
+- iwlwifi: mvm: csa: do not abort CSA before disconnect (Jarod Wilson) [1937053]
+- iwlwifi: mvm: don't send commands during suspend\resume transition (Jarod Wilson) [1937053]
+- iwlwifi: mvm: don't check system_pm_mode without mutex held (Jarod Wilson) [1937053]
+- iwlwifi: remove TRANS_PM_OPS (Jarod Wilson) [1937053]
+- iwlwifi: dbg: dump paged memory from index 1 (Jarod Wilson) [1937053]
+- iwl-trans: iwlwifi: move sync NMI logic to trans (Jarod Wilson) [1937053]
+- iwlwifi: pcie: properly implement NAPI (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add support for new flush queue response (Jarod Wilson) [1937053]
+- iwlwifi: mvm: handle CCA-EXT delay firmware notification (Jarod Wilson) [1937053]
+- iwlwifi: mvm: scan: fix scheduled scan restart handling (Jarod Wilson) [1937053]
+- iwlwifi: mvm: remove debugfs injection limitations (Jarod Wilson) [1937053]
+- iwlwifi: mvm: check more notification sizes (Jarod Wilson) [1937053]
+- iwlwifi: mvm: add notification size checks (Jarod Wilson) [1937053]
+- ath11k: remove h from printk format specifier (Jarod Wilson) [1937053]
+- ath10k: remove h from printk format specifier (Jarod Wilson) [1937053]
+- cfg80211: fix netdev registration deadlock (Jarod Wilson) [1937053]
+- mac80211: fix station rate table updates on assoc (Jarod Wilson) [1937053]
+- mt76: mt7663: introduce coredump support (Jarod Wilson) [1937053]
+- mt76: mt7921: add coredump support (Jarod Wilson) [1937053]
+- mt76: mt7921: enable MSI interrupts (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce regdomain notifier support (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce Runtime PM support (Jarod Wilson) [1937053]
+- mt76: mt7921: rely on mt76_connac_mcu module for suspend and WoW support (Jarod Wilson) [1937053]
+- mt76: mt7921: rely on mt76_connac_mcu module for sched_scan and hw_scan (Jarod Wilson) [1937053]
+- mt76: mt7921: rely on mt76_connac_mcu common library (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce PM support (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce beacon_loss mcu event (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce support for hardware beacon filter (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce 802.11 PS support in sta mode (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce schedule scan support (Jarod Wilson) [1937053]
+- mt76: mt7921: add debugfs support (Jarod Wilson) [1937053]
+- mt76: mt7921: introduce mt7921e support (Jarod Wilson) [1937053]
+- mt76: mt7921: add ieee80211_ops (Jarod Wilson) [1937053]
+- mt76: mt7921: add EEPROM support (Jarod Wilson) [1937053]
+- mt76: mt7921: add DMA support (Jarod Wilson) [1937053]
+- mt76: mt7921: add MCU support (Jarod Wilson) [1937053]
+- mt76: mt7921: add MAC support (Jarod Wilson) [1937053]
+- wireless: Fix "ordering" comment typos (Jarod Wilson) [1937053]
+- mt76: mt76_connac: move pm utility routines in mt76_connac_lib module (Jarod Wilson) [1937053]
+- mt76: mt76_connac: move pm data struct in mt76_connac.h (Jarod Wilson) [1937053]
+- mt76: mt76_connac: move WoW and suspend code in mt76_connac_mcu module (Jarod Wilson) [1937053]
+- mt76: mt76_connac: move hw_scan and sched_scan routine in mt76_connac_mcu module (Jarod Wilson) [1937053]
+- mt76: mt76_connac: create mcu library (Jarod Wilson) [1937053]
+- mt76: introduce mt76_vif data structure (Jarod Wilson) [1937053]
+- cfg80211: call cfg80211_destroy_ifaces() with wiphy lock held (Jarod Wilson) [1937053]
+- wext: call cfg80211_set_encryption() with wiphy lock held (Jarod Wilson) [1937053]
+- wext: call cfg80211_change_iface() with wiphy lock held (Jarod Wilson) [1937053]
+- nl80211: call cfg80211_dev_rename() under RTNL (Jarod Wilson) [1937053]
+- mt76: dma: fix a possible memory leak in mt76_add_fragment() (Jarod Wilson) [1937053]
+- ath9k: fix build error with LEDS_CLASS=m (Jarod Wilson) [1937053]
+- ath10k: fix wmi mgmt tx queue full due to race condition (Jarod Wilson) [1937053]
+- ath10k: pass the ssid info to get the correct bss entity (Jarod Wilson) [1937053]
+- ath10k: allow dynamic SAR power limits via common API (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: fix regression in the max_prob_rate fix (Jarod Wilson) [1937053]
+- mt76: mt7615: reduce VHT maximum MPDU length (Jarod Wilson) [1937053]
+- mt76: reduce q->lock hold time (Jarod Wilson) [1937053]
+- mt76: usb: process URBs with status EPROTO properly (Jarod Wilson) [1937053]
+- mt76: move vif_mask back from mt76_phy to mt76_dev (Jarod Wilson) [1937053]
+- mt76: mt7915: make vif index per adapter instead of per band (Jarod Wilson) [1937053]
+- mt76: mt7915: add support for using a secondary PCIe link for gen1 (Jarod Wilson) [1937053]
+- mt76: fix crash on tearing down ext phy (Jarod Wilson) [1937053]
+- mt76: mt7915: bring up the WA event rx queue for band1 (Jarod Wilson) [1937053]
+- mt76: mt7615: unify init work (Jarod Wilson) [1937053]
+- mt76: mt7915: support TxBF for DBDC (Jarod Wilson) [1937053]
+- mt76: mt7915: Remove unneeded semicolon (Jarod Wilson) [1937053]
+- mt76: mt7615: set mcu country code in mt7615_mcu_set_channel_domain() (Jarod Wilson) [1937053]
+- mt76: mt7915: fix eeprom DBDC band selection (Jarod Wilson) [1937053]
+- mt76: mt7915: fix eeprom parsing for DBDC (Jarod Wilson) [1937053]
+- iwlwifi: provide gso_type to GSO packets (Jarod Wilson) [1937053]
+- mt76: mt7915: disable RED support in the WA firmware (Jarod Wilson) [1937053]
+- mt76: mt7915: rework mcu API (Jarod Wilson) [1937053]
+- mt76: mt7915: do not set DRR group for stations (Jarod Wilson) [1937053]
+- mt76: mt7915: ensure that init work completes before starting the device (Jarod Wilson) [1937053]
+- mt76: mt7603: fix ED/CCA monitoring with single-stream devices (Jarod Wilson) [1937053]
+- mt76: mt7915: add implicit Tx beamforming support (Jarod Wilson) [1937053]
+- mt76: mt7915: simplify peer's TxBF capability check (Jarod Wilson) [1937053]
+- mt76: mt7615: mt7915: disable txpower sku when testmode enabled (Jarod Wilson) [1937053]
+- mt76: mt7915: add support for continuous tx in testmode (Jarod Wilson) [1937053]
+- mt76: mt7915: rework set state part in testmode (Jarod Wilson) [1937053]
+- mt76: testmode: add a new state for continuous tx (Jarod Wilson) [1937053]
+- mt76: mt7915: clean hw queue before starting new testmode tx (Jarod Wilson) [1937053]
+- mt76: mt7915: calculate new packet length when tx_time is set in testmode (Jarod Wilson) [1937053]
+- mt76: mt7915: add support for ipg in testmode (Jarod Wilson) [1937053]
+- mt76: mt7915: split edca update function (Jarod Wilson) [1937053]
+- mt76: testmode: make tx queued limit adjustable (Jarod Wilson) [1937053]
+- mt76: testmode: add attributes for ipg related parameters (Jarod Wilson) [1937053]
+- mt76: testmode: add support to set user-defined spe index (Jarod Wilson) [1937053]
+- mt76: mt7915: force ldpc for bw larger than 20MHz in testmode (Jarod Wilson) [1937053]
+- mt76: move chainmask in mt76_phy (Jarod Wilson) [1937053]
+- mt76: move mac_work in mt76_core module (Jarod Wilson) [1937053]
+- mt76: mt7615: move testmode data from dev to phy (Jarod Wilson) [1937053]
+- mt76: mt7915: move testmode data from dev to phy (Jarod Wilson) [1937053]
+- mt76: testmode: move mtd part to mt76_dev (Jarod Wilson) [1937053]
+- mt76: testmode: introduce dbdc support (Jarod Wilson) [1937053]
+- mt76: mt7915: add partial add_bss_info command on testmode init (Jarod Wilson) [1937053]
+- mt76: mt7915: drop zero-length packet to avoid Tx hang (Jarod Wilson) [1937053]
+- mt76: mt7915: simplify mt7915_mcu_send_message routine (Jarod Wilson) [1937053]
+- mt76: mt7915: fix endianness warning in mt7915_mcu_set_radar_th (Jarod Wilson) [1937053]
+- mt76: mt7915: add support for flash mode (Jarod Wilson) [1937053]
+- mt76: mt7915: run mt7915_configure_filter holding mt76 mutex (Jarod Wilson) [1937053]
+- mt76: mt7915: convert comma to semicolon (Jarod Wilson) [1937053]
+- mt76: mt7615: convert comma to semicolon (Jarod Wilson) [1937053]
+- mt76: mt7615: reset token when mac_reset happens (Jarod Wilson) [1937053]
+- mt76: mt7915: reset token when mac_reset happens (Jarod Wilson) [1937053]
+- mt76: mt7915: fix MT_CIPHER_BIP_CMAC_128 setkey (Jarod Wilson) [1937053]
+- mt76: mt7615: add vif check in mt7615_update_vif_beacon() (Jarod Wilson) [1937053]
+- mt76: mt7915: add vif check in mt7915_update_vif_beacon() (Jarod Wilson) [1937053]
+- ath11k: add ieee80211_unregister_hw to avoid kernel crash caused by NULL pointer (Jarod Wilson) [1937053]
+- mac80211: pause TX while changing interface type (Jarod Wilson) [1937053]
+- wext: fix NULL-ptr-dereference with cfg80211's lack of commit() (Jarod Wilson) [1937053]
+- cfg80211: avoid holding the RTNL when calling the driver (Jarod Wilson) [1937053]
+- iwl4965: do not process non-QOS frames on txq->sched_retry path (Jarod Wilson) [1937053]
+- mt7601u: process tx URBs with status EPROTO properly (Jarod Wilson) [1937053]
+- mt7601u: use ieee80211_rx_list to pass frames to the network stack as a batch (Jarod Wilson) [1937053]
+- rtw88: 8723de: adjust the LTR setting (Jarod Wilson) [1937053]
+- rtlwifi: rtl8821ae: fix bool comparison in expressions (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192se: fix bool comparison in expressions (Jarod Wilson) [1937053]
+- rtlwifi: rtl8188ee: fix bool comparison in expressions (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192c-common: fix bool comparison in expressions (Jarod Wilson) [1937053]
+- rtlwifi: rtl_pci: fix bool comparison in expressions (Jarod Wilson) [1937053]
+- mt7601u: fix kernel crash unplugging the device (Jarod Wilson) [1937053]
+- iwlwifi: queue: bail out on invalid freeing (Jarod Wilson) [1937053]
+- iwlwifi: mvm: guard against device removal in reprobe (Jarod Wilson) [1937053]
+- iwlwifi: Fix IWL_SUBDEVICE_NO_160 macro to use the correct bit. (Jarod Wilson) [1937053]
+- iwlwifi: mvm: clear IN_D3 after wowlan status cmd (Jarod Wilson) [1937053]
+- iwlwifi: pcie: add rules to match Qu with Hr2 (Jarod Wilson) [1937053]
+- iwlwifi: mvm: invalidate IDs of internal stations at mvm start (Jarod Wilson) [1937053]
+- iwlwifi: mvm: fix the return type for DSM functions 1 and 2 (Jarod Wilson) [1937053]
+- iwlwifi: pcie: reschedule in long-running memory reads (Jarod Wilson) [1937053]
+- iwlwifi: pcie: use jiffies for memory read spin time limit (Jarod Wilson) [1937053]
+- iwlwifi: pcie: fix context info memory leak (Jarod Wilson) [1937053]
+- iwlwifi: pcie: add a NULL check in iwl_pcie_txq_unmap (Jarod Wilson) [1937053]
+- iwlwifi: pcie: set LTR on more devices (Jarod Wilson) [1937053]
+- iwlwifi: queue: don't crash if txq->entries is NULL (Jarod Wilson) [1937053]
+- iwlwifi: fix the NMI flow for old devices (Jarod Wilson) [1937053]
+- iwlwifi: pnvm: don't try to load after failures (Jarod Wilson) [1937053]
+- iwlwifi: pnvm: don't skip everything when not reloading (Jarod Wilson) [1937053]
+- iwlwifi: pcie: avoid potential PNVM leaks (Jarod Wilson) [1937053]
+- iwlwifi: mvm: take mutex for calling iwl_mvm_get_sync_time() (Jarod Wilson) [1937053]
+- iwlwifi: mvm: skip power command when unbinding vif during CSA (Jarod Wilson) [1937053]
+- cfg80211: change netdev registration/unregistration semantics (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: fix rounding error in throughput calculation (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: increase stats update interval (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: fix max probability rate selection (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: improve sample rate selection (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: improve ampdu length estimation (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: remove old ewma based rate average code (Jarod Wilson) [1937053]
+- mac80211: remove legacy minstrel rate control (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: add support for OFDM rates on non-HT clients (Jarod Wilson) [1937053]
+- mac80211: minstrel_ht: clean up CCK code (Jarod Wilson) [1937053]
+- mac80211: introduce aql_enable node in debugfs (Jarod Wilson) [1937053]
+- cfg80211: Add phyrate conversion support for extended MCS in 60GHz band (Jarod Wilson) [1937053]
+- cfg80211: add VHT rate entries for MCS-10 and MCS-11 (Jarod Wilson) [1937053]
+- mac80211: reduce peer HE MCS/NSS to own capabilities (Jarod Wilson) [1937053]
+- mac80211: remove NSS number of 160MHz if not support 160MHz for HE (Jarod Wilson) [1937053]
+- mac80211: 160MHz with extended NSS BW in CSA (Jarod Wilson) [1937053]
+- mac80211: add LDPC encoding to ieee80211_parse_tx_radiotap (Jarod Wilson) [1937053]
+- mac80211: add rx decapsulation offload support (Jarod Wilson) [1937053]
+- ath10k: remove unused struct ath10k::dev_type (Jarod Wilson) [1937053]
+- ath11k: remove duplicate function declaration (Jarod Wilson) [1937053]
+- ath10k: increase rx buffer size to 2048 (Jarod Wilson) [1937053]
+- ath10k: sanitity check for ep connectivity (Jarod Wilson) [1937053]
+- mt76: mt7663s: fix rx buffer refcounting (Jarod Wilson) [1937053]
+- mt7601u: fix rx buffer refcounting (Jarod Wilson) [1937053]
+- mac80211: check if atf has been disabled in __ieee80211_schedule_txq (Jarod Wilson) [1937053]
+- mac80211: do not drop tx nulldata packets on encrypted links (Jarod Wilson) [1937053]
+- mac80211: fix encryption key selection for 802.3 xmit (Jarod Wilson) [1937053]
+- mac80211: fix fast-rx encryption check (Jarod Wilson) [1937053]
+- mac80211: fix incorrect strlen of .write in debugfs (Jarod Wilson) [1937053]
+- cfg80211: fix a kerneldoc markup (Jarod Wilson) [1937053]
+- brcmfmac: clear EAP/association status bits on linkdown events (Jarod Wilson) [1937053]
+- brcmfmac: Delete useless kfree code (Jarod Wilson) [1937053]
+- mt7601u: check the status of device in calibration (Jarod Wilson) [1937053]
+- mt7601u: process URBs in status EPROTO properly (Jarod Wilson) [1937053]
+- brcmfmac: support BCM4365E with 43666 ChipCommon chip ID (Jarod Wilson) [1937053]
+- mwifiex: pcie: Drop bogus __refdata annotation (Jarod Wilson) [1937053]
+- rtw88: Simplify bool comparison (Jarod Wilson) [1937053]
+- rtw88: coex: set 4 slot TDMA for BT link and WL busy (Jarod Wilson) [1937053]
+- rtw88: 8821c: apply CCK PD level which calculates from dynamic mechanism (Jarod Wilson) [1937053]
+- rtw88: reduce the log level for failure of tx report (Jarod Wilson) [1937053]
+- rtw88: Delete useless kfree code (Jarod Wilson) [1937053]
+- iwlwifi: dbg: Don't touch the tlv data (Jarod Wilson) [1937053]
+- mt76: Fix queue ID variable types after mcu queue split (Jarod Wilson) [1937053]
+- cfg80211: Save the regulatory domain with a lock (Jarod Wilson) [1937053]
+- cfg80211/mac80211: fix kernel-doc for SAR APIs (Jarod Wilson) [1937053]
+- mt76: mt7915: fix MESH ifdef block (Jarod Wilson) [1937053]
+- mt76: mt76s: fix NULL pointer dereference in mt76s_process_tx_queue (Jarod Wilson) [1937053]
+- mt76: sdio: remove wake logic in mt76s_process_tx_queue (Jarod Wilson) [1937053]
+- mt76: usb: remove wake logic in mt76u_status_worker (Jarod Wilson) [1937053]
+- ath11k: dp: clean up a variable name (Jarod Wilson) [1937053]
+- ath11k: pci: remove unnecessary mask in ath11k_pci_enable_ltssm() (Jarod Wilson) [1937053]
+- ath11k: pci: disable ASPM L0sLs before downloading firmware (Jarod Wilson) [1937053]
+- ath11k: qmi: try to allocate a big block of DMA memory first (Jarod Wilson) [1937053]
+- rtlwifi: rise completion at the last step of firmware callback (Jarod Wilson) [1937053]
+- mt76: mt76u: fix NULL pointer dereference in mt76u_status_worker (Jarod Wilson) [1937053]
+- ath10k: prevent deinitializing NAPI twice (Jarod Wilson) [1937053]
+- ath9k: Postpone key cache entry deletion for TXQ frames reference it (Jarod Wilson) [1937053]
+- ath: Modify ath_key_delete() to not need full key entry (Jarod Wilson) [1937053]
+- ath: Export ath_hw_keysetmac() (Jarod Wilson) [1937053]
+- ath9k: Clear key cache explicitly on disabling hardware (Jarod Wilson) [1937053]
+- ath: Use safer key clearing with key cache entries (Jarod Wilson) [1937053]
+- ath10k: Remove voltage regulator votes during wifi disable (Jarod Wilson) [1937053]
+- ath10k: Fix error handling in case of CE pipe init failure (Jarod Wilson) [1937053]
+- ath11k: Fix ath11k_pci_fix_l1ss() (Jarod Wilson) [1937053]
+- ath11k: Fix error code in ath11k_core_suspend() (Jarod Wilson) [1937053]
+- ath11k: start vdev if a bss peer is already created (Jarod Wilson) [1937053]
+- ath11k: fix crash caused by NULL rx_channel (Jarod Wilson) [1937053]
+- ath11k: add missing null check on allocated skb (Jarod Wilson) [1937053]
+- ath9k: make relay callbacks const (Jarod Wilson) [1937053]
+- ath11k: make relay callbacks const (Jarod Wilson) [1937053]
+- ath10k: make relay callbacks const (Jarod Wilson) [1937053]
+- ath11k: implement suspend for QCA6390 PCI devices (Jarod Wilson) [1937053]
+- ath11k: hif: add ce irq enable and disable functions (Jarod Wilson) [1937053]
+- ath11k: implement WoW enable and wakeup commands (Jarod Wilson) [1937053]
+- ath11k: set credit_update flag for flow controlled ep only (Jarod Wilson) [1937053]
+- ath11k: dp: stop rx pktlog before suspend (Jarod Wilson) [1937053]
+- ath11k: htc: implement suspend handling (Jarod Wilson) [1937053]
+- ath11k: htc: remove unused struct ath11k_htc_ops (Jarod Wilson) [1937053]
+- ath11k: pci: read select_window register to ensure write is finished (Jarod Wilson) [1937053]
+- ath11k: hif: implement suspend and resume functions (Jarod Wilson) [1937053]
+- ath11k: mhi: hook suspend and resume (Jarod Wilson) [1937053]
+- ath11k: Fix incorrect tlvs in scan start command (Jarod Wilson) [1937053]
+- ath11k: pci: disable VDD4BLOW (Jarod Wilson) [1937053]
+- ath11k: pci: fix L1ss clock unstable problem (Jarod Wilson) [1937053]
+- ath11k: pci: fix hot reset stability issues (Jarod Wilson) [1937053]
+- ath11k: put hw to DBS using WMI_PDEV_SET_HW_MODE_CMDID (Jarod Wilson) [1937053]
+- ath11k: mhi: print a warning if firmware crashed (Jarod Wilson) [1937053]
+- ath11k: use MHI provided APIs to allocate and free MHI controller (Jarod Wilson) [1937053]
+- ath10k: add atomic protection for device recovery (Jarod Wilson) [1937053]
+- ath10k: add option for chip-id based BDF selection (Jarod Wilson) [1937053]
+- mt76: remove unused variable q (Jarod Wilson) [1937053]
+- mac80211: add ieee80211_set_sar_specs (Jarod Wilson) [1937053]
+- nl80211: add common API to configure SAR power limitations (Jarod Wilson) [1937053]
+- mac80211: fix a mistake check for rx_stats update (Jarod Wilson) [1937053]
+- mac80211: mlme: save ssid info to ieee80211_bss_conf while assoc (Jarod Wilson) [1937053]
+- mac80211: Update rate control on channel change (Jarod Wilson) [1937053]
+- mac80211: don't filter out beacons once we start CSA (Jarod Wilson) [1937053]
+- mac80211: Fix calculation of minimal channel width (Jarod Wilson) [1937053]
+- mac80211: ignore country element TX power on 6 GHz (Jarod Wilson) [1937053]
+- mac80211: use bitfield helpers for BA session action frames (Jarod Wilson) [1937053]
+- mac80211: support Rx timestamp calculation for all preamble types (Jarod Wilson) [1937053]
+- mac80211: don't set set TDLS STA bandwidth wider than possible (Jarod Wilson) [1937053]
+- mac80211: support driver-based disconnect with reconnect hint (Jarod Wilson) [1937053]
+- cfg80211: support immediate reconnect request hint (Jarod Wilson) [1937053]
+- mac80211: use struct assignment for he_obss_pd (Jarod Wilson) [1937053]
+- cfg80211: remove struct ieee80211_he_bss_color (Jarod Wilson) [1937053]
+- nl80211: validate key indexes for cfg80211_registered_device (Jarod Wilson) [1937053]
+- cfg80211: include block-tx flag in channel switch started event (Jarod Wilson) [1937053]
+- mac80211: disallow band-switch during CSA (Jarod Wilson) [1937053]
+- ieee80211: update reduced neighbor report TBTT info length (Jarod Wilson) [1937053]
+- cfg80211: Save the regulatory domain when setting custom regulatory (Jarod Wilson) [1937053]
+- nl80211: always accept scan request with the duration set (Jarod Wilson) [1937053]
+- cfg80211: Update TSF and TSF BSSID for multi BSS (Jarod Wilson) [1937053]
+- cfg80211: scan PSC channels in case of scan with wildcard SSID (Jarod Wilson) [1937053]
+- mac80211: Skip entries with SAE H2E only membership selector (Jarod Wilson) [1937053]
+- cfg80211: Parse SAE H2E only membership selector (Jarod Wilson) [1937053]
+- mac80211: support MIC error/replay detected counters driver update (Jarod Wilson) [1937053]
+- mac80211: he: remove non-bss-conf fields from bss_conf (Jarod Wilson) [1937053]
+- mac80211: remove trailing semicolon in macro definitions (Jarod Wilson) [1937053]
+- nl80211: Fix fall-through warnings for Clang (Jarod Wilson) [1937053]
+- mac80211: Fix fall-through warnings for Clang (Jarod Wilson) [1937053]
+- cfg80211: Fix fall-through warnings for Clang (Jarod Wilson) [1937053]
+- cfg80211: fix callback type mismatches in wext-compat (Jarod Wilson) [1937053]
+- net: wireless: make a const array static, makes object smaller (Jarod Wilson) [1937053]
+- net: mac80211: use core API for updating TX/RX stats (Jarod Wilson) [1937053]
+- rfkill: add a reason to the HW rfkill state (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192de: fix ofdm power compensation (Jarod Wilson) [1937053]
+- ath9k_htc: adhere to the DONT_REORDER transmit flag (Jarod Wilson) [1937053]
+- ath11k: mesh: add support for 256 bitmap in blockack frames in 11ax (Jarod Wilson) [1937053]
+- ath11k: support TXOP duration based RTS threshold (Jarod Wilson) [1937053]
+- ath11k: fix incorrect wmi param for configuring HE operation (Jarod Wilson) [1937053]
+- ath11k: unlock on error path in ath11k_mac_op_add_interface() (Jarod Wilson) [1937053]
+- ath11k: fix rmmod failure if qmi sequence fails (Jarod Wilson) [1937053]
+- rtw88: Fix fall-through warnings for Clang (Jarod Wilson) [1937053]
+- rt2x00: Fix fall-through warnings for Clang (Jarod Wilson) [1937053]
+- ath11k: pci: add MODULE_FIRMWARE macros (Jarod Wilson) [1937053]
+- rtw88: reduce polling time of IQ calibration (Jarod Wilson) [1937053]
+- rtw88: fix multiple definition of rtw_pm_ops (Jarod Wilson) [1937053]
+- brcmfmac: remove redundant assignment to pointer 'entry' (Jarod Wilson) [1937053]
+- rtw88: declare hw supports ch 144 (Jarod Wilson) [1937053]
+- rtw88: coex: fix missing unitialization of variable 'interval' (Jarod Wilson) [1937053]
+- mwifiex: change license text of Makefile and README from MARVELL to NXP (Jarod Wilson) [1937053]
+- rtw88: pci: Add prototypes for .probe, .remove and .shutdown (Jarod Wilson) [1937053]
+- ath9k: remove trailing semicolon in macro definition (Jarod Wilson) [1937053]
+- ath11k: Ignore resetting peer auth flag in peer assoc cmd (Jarod Wilson) [1937053]
+- ath11k: add 64bit check before reading msi high addr (Jarod Wilson) [1937053]
+- ath10k: fix a check patch warning returnNonBoolInBooleanFunction of sdio.c (Jarod Wilson) [1937053]
+- mac80211: mesh: fix mesh_pathtbl_init() error path (Jarod Wilson) [1937053]
+- mt76: mt7615: Fix fall-through warnings for Clang (Jarod Wilson) [1937053]
+- mt76: mt7915: fix ht mcs in mt7915_mcu_get_rx_rate() (Jarod Wilson) [1937053]
+- mt76: attempt to free up more room when filling the tx queue (Jarod Wilson) [1937053]
+- mt76: mt7915: stop queues when running out of tx tokens (Jarod Wilson) [1937053]
+- mt76: improve tx queue stop/wake (Jarod Wilson) [1937053]
+- mt76: mt7915: fix memory leak in mt7915_mcu_get_rx_rate() (Jarod Wilson) [1937053]
+- mt76: mt7615: fix rdd mcu cmd endianness (Jarod Wilson) [1937053]
+- mt76: mt7915: fix endian issues (Jarod Wilson) [1937053]
+- mt76: mt7915: get rid of dbdc debugfs knob (Jarod Wilson) [1937053]
+- mt76: mt7915: introduce dbdc support (Jarod Wilson) [1937053]
+- mt76: move hw mac_addr in mt76_phy (Jarod Wilson) [1937053]
+- mt76: move band allocation in mt76_register_phy (Jarod Wilson) [1937053]
+- mt76: rely on mt76_phy in mt76_init_sband_2g and mt76_init_sband_5g (Jarod Wilson) [1937053]
+- mt76: move band capabilities in mt76_phy (Jarod Wilson) [1937053]
+- mt76: move tx hw data queues in mt76_phy (Jarod Wilson) [1937053]
+- mt76: move mcu queues to mt76_dev q_mcu array (Jarod Wilson) [1937053]
+- mt76: rely on mt76_queue in tx_queue_skb_raw signature (Jarod Wilson) [1937053]
+- mt76: introduce mt76_init_mcu_queue utility routine (Jarod Wilson) [1937053]
+- mt76: rely on mt76_queue in tx_queue_skb signature (Jarod Wilson) [1937053]
+- mt76: dma: rely on mt76_queue in mt76_dma_tx_cleanup signature (Jarod Wilson) [1937053]
+- mt76: mt7663s: rely on mt76_queue in mt7663s_tx_run_queue signature (Jarod Wilson) [1937053]
+- mt76: sdio: rely on mt76_queue in mt76s_process_tx_queue signature (Jarod Wilson) [1937053]
+- mt76: sdio: introduce mt76s_alloc_tx_queue (Jarod Wilson) [1937053]
+- mt76: move mt76_init_tx_queue in common code (Jarod Wilson) [1937053]
+- mt76: mt7915: rely on eeprom definitions (Jarod Wilson) [1937053]
+- mt76: mt7615: refactor usb/sdio rate code (Jarod Wilson) [1937053]
+- mt76: mt7615: support 16 interfaces (Jarod Wilson) [1937053]
+- mt76: mt7915: remove unused mt7915_mcu_bss_sync_tlv() (Jarod Wilson) [1937053]
+- mt76: mt7915: use BIT_ULL for omac_idx (Jarod Wilson) [1937053]
+- mt76: mt7915: make mt7915_eeprom_read static (Jarod Wilson) [1937053]
+- mt76: mt7915: add support to set tx frequency offset in testmode (Jarod Wilson) [1937053]
+- mt76: mt7915: add support to set txpower in testmode (Jarod Wilson) [1937053]
+- mt76: mt7915: implement testmode rx support (Jarod Wilson) [1937053]
+- mt76: mt7915: implement testmode tx support (Jarod Wilson) [1937053]
+- mt76: testmode: add support for HE rate modes (Jarod Wilson) [1937053]
+- mt76: mt7915: fix tx rate related fields in tx descriptor (Jarod Wilson) [1937053]
+- mt76: testmode: add support for LTF and GI combinations for HE mode (Jarod Wilson) [1937053]
+- mt76: testmode: add tx_rate_stbc parameter (Jarod Wilson) [1937053]
+- mt76: testmode: add snr attribute in rx statistics (Jarod Wilson) [1937053]
+- mt76: testmode: switch ib and wb rssi to array type for per-antenna report (Jarod Wilson) [1937053]
+- mt76: mt76u: use dedicated thread for status work (Jarod Wilson) [1937053]
+- mt76: mt76u: rely on woker APIs for rx work (Jarod Wilson) [1937053]
+- mt76: mt7615: run key configuration in mt7615_set_key for usb/sdio devices (Jarod Wilson) [1937053]
+- mt76: fix tkip configuration for mt7615/7663 devices (Jarod Wilson) [1937053]
+- mt76: switch to wep sw crypto for mt7615/mt7915 (Jarod Wilson) [1937053]
+- mt76: mt7663s: introduce WoW support via GPIO (Jarod Wilson) [1937053]
+- mt76: move mt76_mcu_send_firmware in common module (Jarod Wilson) [1937053]
+- mt76: mt7603: add additional EEPROM chip ID (Jarod Wilson) [1937053]
+- mt76: fix memory leak if device probing fails (Jarod Wilson) [1937053]
+- mt76: mt7915: fix sparse warning cast from restricted __le16 (Jarod Wilson) [1937053]
+- mt76: dma: fix possible deadlock running mt76_dma_cleanup (Jarod Wilson) [1937053]
+- mt76: set fops_tx_stats.owner to THIS_MODULE (Jarod Wilson) [1937053]
+- mt76: mt7915: rename mt7915_mcu_get_rate_info to mt7915_mcu_get_tx_rate (Jarod Wilson) [1937053]
+- mt76: mt7915: update ppe threshold (Jarod Wilson) [1937053]
+- mt76: mt7915: set fops_sta_stats.owner to THIS_MODULE (Jarod Wilson) [1937053]
+- mt76: sdio: get rid of sched.lock (Jarod Wilson) [1937053]
+- mt76: mt7663s: fix a possible ple quota underflow (Jarod Wilson) [1937053]
+- mt76: mt7663s: get rid of mt7663s_sta_add (Jarod Wilson) [1937053]
+- mt76: mt7615: introduce quota debugfs node for mt7663s (Jarod Wilson) [1937053]
+- mt76: mt7615: enable beacon filtering by default for offload fw (Jarod Wilson) [1937053]
+- mt76: add back the SUPPORTS_REORDERING_BUFFER flag (Jarod Wilson) [1937053]
+- mt76: mt7915: query station rx rate from firmware (Jarod Wilson) [1937053]
+- mt76: mt7915: move eeprom parsing out of mt7915_mcu_parse_response (Jarod Wilson) [1937053]
+- mt76: implement functions to get the response skb for MCU calls (Jarod Wilson) [1937053]
+- mt76: mt7603: switch to .mcu_skb_send_msg (Jarod Wilson) [1937053]
+- mt76: make mcu_ops->mcu_send_msg optional (Jarod Wilson) [1937053]
+- mt76: move waiting and locking out of mcu_ops->mcu_skb_send_msg (Jarod Wilson) [1937053]
+- mt76: move mcu timeout handling to .mcu_parse_response (Jarod Wilson) [1937053]
+- mt76: implement .mcu_parse_response in struct mt76_mcu_ops (Jarod Wilson) [1937053]
+- mt76: rename __mt76_mcu_skb_send_msg to mt76_mcu_skb_send_msg (Jarod Wilson) [1937053]
+- mt76: rename __mt76_mcu_send_msg to mt76_mcu_send_msg (Jarod Wilson) [1937053]
+- mt76: mt7915: disable OFDMA/MU-MIMO UL (Jarod Wilson) [1937053]
+- mt76: mt7915: fix DRR sta bss group index (Jarod Wilson) [1937053]
+- mt76: mt7915: use napi_consume_skb to bulk-free tx skbs (Jarod Wilson) [1937053]
+- mt76: mt7915: fix processing txfree events (Jarod Wilson) [1937053]
+- mt76: mt7915: support 32 station interfaces (Jarod Wilson) [1937053]
+- mt76: do not set NEEDS_UNIQUE_STA_ADDR for 7615 and 7915 (Jarod Wilson) [1937053]
+- mt76: mt7615: add debugfs knob for setting extended local mac addresses (Jarod Wilson) [1937053]
+- mt76: use ieee80211_rx_list to pass frames to the network stack as a batch (Jarod Wilson) [1937053]
+- mt76: mt7915: add encap offload for 4-address mode stations (Jarod Wilson) [1937053]
+- mt76: mt7915: add 802.11 encap offload support (Jarod Wilson) [1937053]
+- mt76: sdio: convert {status/net}_work to mt76_worker (Jarod Wilson) [1937053]
+- mt76: mt7663s: disable interrupt during txrx_worker processing (Jarod Wilson) [1937053]
+- mt76: mt7663s: convert txrx_work to mt76_worker (Jarod Wilson) [1937053]
+- mt76: mt7663s: move tx/rx processing in the same txrx workqueue (Jarod Wilson) [1937053]
+- mt76: mt7615: retry if mt7615_mcu_init returns -EAGAIN (Jarod Wilson) [1937053]
+- mt76: mt7915: fix VHT LDPC capability (Jarod Wilson) [1937053]
+- mt76: mt7915: measure channel noise and report it via survey (Jarod Wilson) [1937053]
+- mac80211: set SDATA_STATE_RUNNING for monitor interfaces (Jarod Wilson) [1937053]
+- cfg80211: initialize rekey_data (Jarod Wilson) [1937053]
+- mac80211: fix return value of ieee80211_chandef_he_6ghz_oper (Jarod Wilson) [1937053]
+- rtw88: debug: Fix uninitialized memory in debugfs code (Jarod Wilson) [1937053]
+- brcmfmac: expose firmware config files through modinfo (Jarod Wilson) [1937053]
+- rtw88: coex: add feature to enhance HID coexistence performance (Jarod Wilson) [1937053]
+- rtw88: coex: upgrade coexistence A2DP mechanism (Jarod Wilson) [1937053]
+- rtw88: coex: add action for coexistence in hardware initial (Jarod Wilson) [1937053]
+- rtw88: coex: add function to avoid cck lock (Jarod Wilson) [1937053]
+- rtw88: coex: change the coexistence mechanism for WLAN connected (Jarod Wilson) [1937053]
+- rtw88: coex: change the coexistence mechanism for HID (Jarod Wilson) [1937053]
+- rtw88: coex: update AFH information while in free-run mode (Jarod Wilson) [1937053]
+- rtw88: coex: update the mechanism for A2DP + PAN (Jarod Wilson) [1937053]
+- rtw88: coex: add debug message (Jarod Wilson) [1937053]
+- rtw88: coex: run coexistence when WLAN entering/leaving LPS (Jarod Wilson) [1937053]
+- Revert "rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices" (Jarod Wilson) [1937053]
+- mt76: usb: fix crash on device removal (Jarod Wilson) [1937053]
+- ath11k: dp_rx: fix monitor status dma unmap direction (Jarod Wilson) [1937053]
+- ath10k: Constify static qmi structs (Jarod Wilson) [1937053]
+- ath10k: Release some resources in an error handling path (Jarod Wilson) [1937053]
+- ath10k: Fix an error handling path (Jarod Wilson) [1937053]
+- ath10k: Fix the parsing error in service available event (Jarod Wilson) [1937053]
+- ath11k: Fix an error handling path (Jarod Wilson) [1937053]
+- ath11k: Build check size of ath11k_skb_cb (Jarod Wilson) [1937053]
+- ath11k: Reset ath11k_skb_cb before setting new flags (Jarod Wilson) [1937053]
+- ath11k: Don't cast ath11k_skb_cb to ieee80211_tx_info.control (Jarod Wilson) [1937053]
+- ath11k: remove "ath11k_mac_get_ar_vdev_stop_status" references (Jarod Wilson) [1937053]
+- ath11k: peer delete synchronization with firmware (Jarod Wilson) [1937053]
+- ath11k: vdev delete synchronization with firmware (Jarod Wilson) [1937053]
+- mwifiex: Remove duplicated REG_PORT definition (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723ae: avoid accessing the data mapped to streaming DMA (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192de: avoid accessing the data mapped to streaming DMA (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192ce: avoid accessing the data mapped to streaming DMA (Jarod Wilson) [1937053]
+- rtlwifi: rtl8188ee: avoid accessing the data mapped to streaming DMA (Jarod Wilson) [1937053]
+- mwifiex: Fix fall-through warnings for Clang (Jarod Wilson) [1937053]
+- brcmsmac: ampdu: Check BA window size before checking block ack (Jarod Wilson) [1937053]
+- brcmfmac: Fix incorrect type in assignment (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192de: remove the useless value assignment (Jarod Wilson) [1937053]
+- brcmfmac: fix error return code in brcmf_cfg80211_connect() (Jarod Wilson) [1937053]
+- rtw88: wow: print key type when failing (Jarod Wilson) [1937053]
+- rtw88: coex: change the decode method from firmware (Jarod Wilson) [1937053]
+- rtw88: coex: remove unnecessary WLAN slot extend (Jarod Wilson) [1937053]
+- rtw88: coex: remove write scan bit to scoreboard in scan and connect notify (Jarod Wilson) [1937053]
+- rtw88: coex: fix BT performance drop during initial/power-on step (Jarod Wilson) [1937053]
+- rtw88: coex: Change antenna setting to enhance free-run performance (Jarod Wilson) [1937053]
+- rtw88: coex: update the TDMA parameter when leave LPS (Jarod Wilson) [1937053]
+- rtw88: coex: add the mechanism for RF4CE (Jarod Wilson) [1937053]
+- rtw88: coex: Add force flag for coexistence table function (Jarod Wilson) [1937053]
+- rtw88: coex: add write scoreboard action when WLAN in critical procedure (Jarod Wilson) [1937053]
+- rtw88: coex: remove unnecessary feature/function (Jarod Wilson) [1937053]
+- rtw88: coex: update TDMA settings for different beacon interval (Jarod Wilson) [1937053]
+- rtw88: add CCK_PD debug log (Jarod Wilson) [1937053]
+- rtw88: 8723d: add cck pd seetings (Jarod Wilson) [1937053]
+- ath11k: Fix the rx_filter flag setting for peer rssi stats (Jarod Wilson) [1937053]
+- ath10k: add target IRAM recovery feature support (Jarod Wilson) [1937053]
+- ath11k: Fix beamformee STS in HE cap (Jarod Wilson) [1937053]
+- ath11k: add processor_id based ring_selector logic (Jarod Wilson) [1937053]
+- mac80211: free sta in sta_info_insert_finish() on errors (Jarod Wilson) [1937053]
+- mac80211: minstrel: fix tx status processing corner case (Jarod Wilson) [1937053]
+- mac80211: minstrel: remove deferred sampling code (Jarod Wilson) [1937053]
+- mac80211: fix memory leak on filtered powersave frames (Jarod Wilson) [1937053]
+- rfkill: Fix use-after-free in rfkill_resume() (Jarod Wilson) [1937053]
+- nl80211: fix kernel-doc warning in the new SAE attribute (Jarod Wilson) [1937053]
+- cfg80211: remove WDS code (Jarod Wilson) [1937053]
+- mac80211: remove WDS-related code (Jarod Wilson) [1937053]
+- rt2x00: remove WDS code (Jarod Wilson) [1937053]
+- b43: remove WDS code (Jarod Wilson) [1937053]
+- ath9k: remove WDS code (Jarod Wilson) [1937053]
+- rtw88: coex: simplify the setting and condition about WLAN TX limitation (Jarod Wilson) [1937053]
+- rtw88: coex: add debug message (Jarod Wilson) [1937053]
+- rtw88: coex: update WLAN 5G AFH parameter for 8822b (Jarod Wilson) [1937053]
+- rtw88: coex: change the parameter for A2DP when WLAN connecting (Jarod Wilson) [1937053]
+- rtw88: coex: modified for BT info notify (Jarod Wilson) [1937053]
+- rtw88: coex: add separate flag for manual control (Jarod Wilson) [1937053]
+- rtw88: coex: Modify the timing of set_ant_path/set_rf_para (Jarod Wilson) [1937053]
+- rtw88: coex: coding style adjustment (Jarod Wilson) [1937053]
+- rtw88: coex: reduce magic number (Jarod Wilson) [1937053]
+- rtw88: coex: update coex parameter to improve A2DP quality (Jarod Wilson) [1937053]
+- rtw88: coex: fixed some wrong register definition and setting (Jarod Wilson) [1937053]
+- rtlwifi: fix spelling typo of workaround (Jarod Wilson) [1937053]
+- mwifiex: pcie: skip cancel_work_sync() on reset failure path (Jarod Wilson) [1937053]
+- mwifiex: update comment for shutdown_sw()/reinit_sw() to reflect current state (Jarod Wilson) [1937053]
+- mwifiex: fix mwifiex_shutdown_sw() causing sw reset failure (Jarod Wilson) [1937053]
+- ath11k: Handle errors if peer creation fails (Jarod Wilson) [1937053]
+- ath9k: work around false-positive gcc warning (Jarod Wilson) [1937053]
+- wireless: remove CONFIG_WIRELESS_WDS (Jarod Wilson) [1937053]
+- brcmfmac: Fix memory leak for unpaired brcmf_{alloc/free} (Jarod Wilson) [1937053]
+- rtlwifi: rtl8821ae: Place braces around empty if() body (Jarod Wilson) [1937053]
+- rtlwifi: rtl8821ae: phy: Remove a couple of unused variables (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723be: Remove set but unused variable 'cck_highpwr' (Jarod Wilson) [1937053]
+- rtlwifi: halbtc8821a2ant: Remove a bunch of unused variables (Jarod Wilson) [1937053]
+- rtlwifi: rtl8188ee: Remove set but unused variable 'reg_ea4' (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723be: Remove set but unused variable 'lc_cal' (Jarod Wilson) [1937053]
+- rtlwifi: halbtc8821a1ant: Remove set but unused variable 'wifi_rssi_state' (Jarod Wilson) [1937053]
+- rtlwifi: phy: Remove set but unused variable 'bbvalue' (Jarod Wilson) [1937053]
+- rtlwifi: halbtc8723b2ant: Remove a bunch of set but unused variables (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192cu: trx: Demote clear abuse of kernel-doc format (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192cu: mac: Fix some missing/ill-documented function parameters (Jarod Wilson) [1937053]
+- rtw88: rtw8822c: Remove unused variable 'corr_val' (Jarod Wilson) [1937053]
+- mwifiex: pcie: Remove a couple of unchecked 'ret's (Jarod Wilson) [1937053]
+- wl1251: cmd: Rename 'len' to 'buf_len' in the documentation (Jarod Wilson) [1937053]
+- brcmfmac: fweh: Add missing description for 'gfp' (Jarod Wilson) [1937053]
+- brcmfmac: pcie: Provide description for missing function parameter 'devinfo' (Jarod Wilson) [1937053]
+- brcmfmac: bcmsdh: Fix description for function parameter 'pktlist' (Jarod Wilson) [1937053]
+- rt2x00: save survey for every channel visited (Jarod Wilson) [1937053]
+- rtlwifi: Remove in_interrupt() usage in halbtc_send_bt_mp_operation() (Jarod Wilson) [1937053]
+- rtlwifi: Remove in_interrupt() usage in is_any_client_connect_to_ap(). (Jarod Wilson) [1937053]
+- rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices (Jarod Wilson) [1937053]
+- rtw88: decide lps deep mode from firmware feature. (Jarod Wilson) [1937053]
+- rtw88: add C2H response for checking firmware leave lps (Jarod Wilson) [1937053]
+- rtw88: store firmware feature in firmware header (Jarod Wilson) [1937053]
+- rtw88: sync the power state between driver and firmware (Jarod Wilson) [1937053]
+- rtw88: coex: separate BLE HID profile from BLE profile (Jarod Wilson) [1937053]
+- rtlwifi: Fix non-canonical address access issues (Jarod Wilson) [1937053]
+- brcmfmac: fix SDIO access for big-endian host (Jarod Wilson) [1937053]
+- rtw88: remove extraneous 'const' qualifier (Jarod Wilson) [1937053]
+- rtlwifi: fix -Wpointer-sign warning (Jarod Wilson) [1937053]
+- ath11k: fix ZERO address in probe request (Jarod Wilson) [1937053]
+- ath9k: dynack: Demote non-compliant function header (Jarod Wilson) [1937053]
+- ath9k: ar5008_phy: Demote half completed function headers (Jarod Wilson) [1937053]
+- ath9k: ar9003_2p2_initvals: Remove unused const variables (Jarod Wilson) [1937053]
+- ath9k: ar9485_initvals: Remove unused const variable 'ar9485_fast_clock_1_1_baseband_postamble' (Jarod Wilson) [1937053]
+- ath9k: ar9340_initvals: Remove unused const variable 'ar9340Modes_ub124_tx_gain_table_1p0' (Jarod Wilson) [1937053]
+- ath9k: ar9330_1p1_initvals: Remove unused const variable 'ar9331_common_tx_gain_offset1_1' (Jarod Wilson) [1937053]
+- ath: dfs_pri_detector: Demote zero/half completed kernel-doc headers (Jarod Wilson) [1937053]
+- ath: dfs_pattern_detector: Fix some function kernel-doc headers (Jarod Wilson) [1937053]
+- ath: regd: Provide description for ath_reg_apply_ir_flags's 'reg' param (Jarod Wilson) [1937053]
+- ath11k: Add new dfs region name for JP (Jarod Wilson) [1937053]
+- ath11k: fix wmi init configuration (Jarod Wilson) [1937053]
+- ath11k: Fix the hal descriptor mask (Jarod Wilson) [1937053]
+- ath11k: Fix single phy hw mode (Jarod Wilson) [1937053]
+- ath11k: Fix number of rules in filtered ETSI regdomain (Jarod Wilson) [1937053]
+- ath11k: Remove unused param from wmi_mgmt_params (Jarod Wilson) [1937053]
+- ath11k: Initialize complete alpha2 for regulatory change (Jarod Wilson) [1937053]
+- ath11k: cold boot calibration support (Jarod Wilson) [1937053]
+- ath11k: search DT for qcom,ath11k-calibration-variant (Jarod Wilson) [1937053]
+- ath11k: Remove unnecessary data sync to cpu on monitor buffer (Jarod Wilson) [1937053]
+- ath10k: cancel rx worker in hif_stop for SDIO (Jarod Wilson) [1937053]
+- ath10k: Don't iterate over not-sdata-in-driver interfaces. (Jarod Wilson) [1937053]
+- ath10k: fix compilation warning (Jarod Wilson) [1937053]
+- mac80211: assure that certain drivers adhere to DONT_REORDER flag (Jarod Wilson) [1937053]
+- mac80211: don't overwrite QoS TID of injected frames (Jarod Wilson) [1937053]
+- mac80211: adhere to Tx control flag that prevents frame reordering (Jarod Wilson) [1937053]
+- mac80211: add radiotap flag to assure frames are not reordered (Jarod Wilson) [1937053]
+- mac80211: save HE oper info in BSS config for mesh (Jarod Wilson) [1937053]
+- cfg80211: add support to configure HE MCS for beacon rate (Jarod Wilson) [1937053]
+- nl80211: fix beacon tx rate mask validation (Jarod Wilson) [1937053]
+- cfg80211: Add support to calculate and report 4096-QAM HE rates (Jarod Wilson) [1937053]
+- cfg80211: Add support to configure SAE PWE value to drivers (Jarod Wilson) [1937053]
+- ieee80211: Add definition for WFA DPP (Jarod Wilson) [1937053]
+- mac80211: use semicolons rather than commas to separate statements (Jarod Wilson) [1937053]
+- ath11k: FILS discovery and unsolicited broadcast probe response support (Jarod Wilson) [1937053]
+- ath10k: sdio: remove redundant check in for loop (Jarod Wilson) [1937053]
+- mac80211: add KCOV remote annotations to incoming frame processing (Jarod Wilson) [1937053]
+- rtw88: fix fw_fifo_addr check (Jarod Wilson) [1937053]
+- mac80211: don't require VHT elements for HE on 2.4 GHz (Jarod Wilson) [1937053]
+- cfg80211: regulatory: Fix inconsistent format argument (Jarod Wilson) [1937053]
+- mac80211: fix kernel-doc markups (Jarod Wilson) [1937053]
+- mac80211: always wind down STA state (Jarod Wilson) [1937053]
+- cfg80211: initialize wdev data earlier (Jarod Wilson) [1937053]
+- mac80211: fix use of skb payload instead of header (Jarod Wilson) [1937053]
+- mac80211: fix regression where EAPOL frames were sent in plaintext (Jarod Wilson) [1937053]
+- ath11k: remove repeated words in comments and warnings (Jarod Wilson) [1937053]
+- ath10k: ath10k_pci_init_irq(): workaround for checkpatch fallthrough warning (Jarod Wilson) [1937053]
+- ath10k: remove repeated words in comments (Jarod Wilson) [1937053]
+- nl80211: docs: add a description for s1g_cap parameter (Jarod Wilson) [1937053]
+- mac80211: use new function dev_fetch_sw_netstats (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192se: remove duplicated legacy_httxpowerdiff (Jarod Wilson) [1937053]
+- ath11k: Fix memory leak on error path (Jarod Wilson) [1937053]
+- mac80211: copy configured beacon tx rate to driver (Jarod Wilson) [1937053]
+- cfg80211: only allow S1G channels on S1G band (Jarod Wilson) [1937053]
+- mac80211: initialize last_rate for S1G STAs (Jarod Wilson) [1937053]
+- mac80211: handle lack of sband->bitrates in rates (Jarod Wilson) [1937053]
+- mac80211: avoid processing non-S1G elements on S1G band (Jarod Wilson) [1937053]
+- nl80211: fix non-split wiphy information (Jarod Wilson) [1937053]
+- nl80211: reduce non-split wiphy dump size (Jarod Wilson) [1937053]
+- ath11k: remove unnecessary casts to u32 (Jarod Wilson) [1937053]
+- ath11k: enable idle power save mode (Jarod Wilson) [1937053]
+- ath11k: start a timer to update HP for CE pipe 4 (Jarod Wilson) [1937053]
+- ath11k: start a timer to update REO cmd ring (Jarod Wilson) [1937053]
+- ath11k: start a timer to update TCL HP (Jarod Wilson) [1937053]
+- ath11k: set WMI pipe credit to 1 for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: enable shadow register configuration and access (Jarod Wilson) [1937053]
+- ath11k: read and write registers below unwindowed address (Jarod Wilson) [1937053]
+- ath11k: debugfs: fix crash during rmmod (Jarod Wilson) [1937053]
+- ath11k: fix warning caused by lockdep_assert_held (Jarod Wilson) [1937053]
+- ath11k: mac: remove unused conf_mutex to solve a deadlock (Jarod Wilson) [1937053]
+- ath11k: pci: fix rmmod crash (Jarod Wilson) [1937053]
+- ath11k: add packet log support for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: Use GFP_ATOMIC instead of GFP_KERNEL in idr_alloc (Jarod Wilson) [1937053]
+- ath11k: Use GFP_ATOMIC instead of GFP_KERNEL in ath11k_dp_htt_get_ppdu_desc (Jarod Wilson) [1937053]
+- ath11k: change to disable softirqs for ath11k_regd_update to solve deadlock (Jarod Wilson) [1937053]
+- ath11k: disable monitor mode on QCA6390 (Jarod Wilson) [1937053]
+- ath11k: pci: check TCSR_SOC_HW_VERSION (Jarod Wilson) [1937053]
+- ath11k: add interface_modes to hw_params (Jarod Wilson) [1937053]
+- ath11k: fix AP mode for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: support loading ELF board files (Jarod Wilson) [1937053]
+- ath11k: Correctly check errors for calls to debugfs_create_dir() (Jarod Wilson) [1937053]
+- ath11k: mac: fix parenthesis alignment (Jarod Wilson) [1937053]
+- rtw88: pci: Power cycle device during shutdown (Jarod Wilson) [1937053]
+- brcmfmac: Fix warning message after dongle setup failed (Jarod Wilson) [1937053]
+- brcmfmac: Fix warning when hitting FW crash with flow control feature (Jarod Wilson) [1937053]
+- net: rtlwifi: Replace in_interrupt() for context detection (Jarod Wilson) [1937053]
+- net: rtlwifi: Remove in_interrupt() from debug macro (Jarod Wilson) [1937053]
+- net: rtlwifi: Remove void* casts related to delayed work (Jarod Wilson) [1937053]
+- net: mwifiex: Use netif_rx_any_context(). (Jarod Wilson) [1937053]
+- net: iwlwifi: Remove in_interrupt() from tracing macro. (Jarod Wilson) [1937053]
+- net: ipw2x00,iwlegacy,iwlwifi: Remove in_interrupt() from debug macros (Jarod Wilson) [1937053]
+- net: brcmfmac: Convey allocation mode as argument (Jarod Wilson) [1937053]
+- net: brcmfmac: Convey execution context via argument to brcmf_netif_rx() (Jarod Wilson) [1937053]
+- net: brcmfmac: Replace in_interrupt() (Jarod Wilson) [1937053]
+- ath11k: Move non-fatal warn logs to dbg level (Jarod Wilson) [1937053]
+- ath9k: Remove set but not used variable (Jarod Wilson) [1937053]
+- rtw88: show current regulatory in tx power table (Jarod Wilson) [1937053]
+- rtw88: add dump fw crash log (Jarod Wilson) [1937053]
+- rtw88: add dump firmware fifo support (Jarod Wilson) [1937053]
+- rtw88: handle and recover when firmware crash (Jarod Wilson) [1937053]
+- rtw88: increse the size of rx buffer size (Jarod Wilson) [1937053]
+- nl80211: extend support to config spatial reuse parameter set (Jarod Wilson) [1937053]
+- mac80211: Support not iterating over not-sdata-in-driver ifaces (Jarod Wilson) [1937053]
+- mac80211: fix some more kernel-doc in mesh (Jarod Wilson) [1937053]
+- cfg80211: regulatory: remove a bogus initialization (Jarod Wilson) [1937053]
+- mac80211: fix regression in sta connection monitor (Jarod Wilson) [1937053]
+- nl80211: include frequency offset in survey info (Jarod Wilson) [1937053]
+- mac80211: support S1G association (Jarod Wilson) [1937053]
+- mac80211: receive and process S1G beacons (Jarod Wilson) [1937053]
+- mac80211: avoid rate init for S1G band (Jarod Wilson) [1937053]
+- mac80211: handle S1G low rates (Jarod Wilson) [1937053]
+- mac80211: don't calculate duration for S1G (Jarod Wilson) [1937053]
+- mac80211: encode listen interval for S1G (Jarod Wilson) [1937053]
+- cfg80211: handle Association Response from S1G STA (Jarod Wilson) [1937053]
+- mac80211: convert S1G beacon to scan results (Jarod Wilson) [1937053]
+- cfg80211: parse S1G Operation element for BSS channel (Jarod Wilson) [1937053]
+- cfg80211: convert S1G beacon to scan results (Jarod Wilson) [1937053]
+- mac80211: support S1G STA capabilities (Jarod Wilson) [1937053]
+- nl80211: support S1G capability overrides in assoc (Jarod Wilson) [1937053]
+- mac80211: s1g: choose scanning width based on frequency (Jarod Wilson) [1937053]
+- mac80211: get correct default channel width for S1G (Jarod Wilson) [1937053]
+- wireless: radiotap: fix some kernel-doc (Jarod Wilson) [1937053]
+- mac80211: fix some missing kernel-doc (Jarod Wilson) [1937053]
+- mac80211: Inform AP when returning operating channel (Jarod Wilson) [1937053]
+- ath11k: fix undefined reference to 'ath11k_debugfs_htt_ext_stats_handler' (Jarod Wilson) [1937053]
+- mt76: mt7663s: remove max_tx_fragments limitation (Jarod Wilson) [1937053]
+- mt76: Convert to DEFINE_SHOW_ATTRIBUTE (Jarod Wilson) [1937053]
+- mt76: mt7915: add offchannel condition in switch channel command (Jarod Wilson) [1937053]
+- mt76: mt7915: convert to use le16_add_cpu() (Jarod Wilson) [1937053]
+- mt76: Fix unsigned expressions compared with zero (Jarod Wilson) [1937053]
+- mt76: mt7915: fix possible memory leak in mt7915_mcu_add_beacon (Jarod Wilson) [1937053]
+- mt76: mt76x0: Move tables used only by init.c to their own header file (Jarod Wilson) [1937053]
+- mt76: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- mt76: mt7615: unlock dfs bands (Jarod Wilson) [1937053]
+- mt76: mt7663: check isr read return value in mt7663s_rx_work (Jarod Wilson) [1937053]
+- mt76: mt7663s: introduce sdio tx aggregation (Jarod Wilson) [1937053]
+- mt76: mt7663s: fix possible quota leak in mt7663s_refill_sched_quota (Jarod Wilson) [1937053]
+- mt76: move pad estimation out of mt76_skb_adjust_pad (Jarod Wilson) [1937053]
+- mt76: mt7663s: introduce __mt7663s_xmit_queue routine (Jarod Wilson) [1937053]
+- mt76: mt7663s: split mt7663s_tx_update_sched in mt7663s_tx_{pick,update}_quota (Jarod Wilson) [1937053]
+- mt76: mt7663s: do not use altx for ctl/mgmt traffic (Jarod Wilson) [1937053]
+- mt76: mt7622: fix fw hang on mt7622 (Jarod Wilson) [1937053]
+- mt76: mt7615: fix VHT LDPC capability (Jarod Wilson) [1937053]
+- mt76: mt7615: Remove set but unused variable 'index' (Jarod Wilson) [1937053]
+- mt76: remove retry_q from struct mt76_txq and related code (Jarod Wilson) [1937053]
+- mt76: move txwi handling code to dma.c, since it is mmio specific (Jarod Wilson) [1937053]
+- mt76: mt7915: fix queue/tid mapping for airtime reporting (Jarod Wilson) [1937053]
+- mt76: mt7915: simplify mt7915_lmac_mapping (Jarod Wilson) [1937053]
+- mt76: dma: cache dma map address/len in struct mt76_queue_entry (Jarod Wilson) [1937053]
+- mt76: mt7915: fix HE BSS info (Jarod Wilson) [1937053]
+- mt76: convert from tx tasklet to tx worker thread (Jarod Wilson) [1937053]
+- mt76: add utility functions for deferring work to a kernel thread (Jarod Wilson) [1937053]
+- mt76: testmode: add a limit for queued tx_frames packets (Jarod Wilson) [1937053]
+- mt76: mt7615: fix antenna selection for testmode tx_frames (Jarod Wilson) [1937053]
+- mt76: mt7615: fix MT_ANT_SWITCH_CON register definition (Jarod Wilson) [1937053]
+- mt76: mt7915: fix unexpected firmware mode (Jarod Wilson) [1937053]
+- mt76: mt76x02: tune tx ring size (Jarod Wilson) [1937053]
+- mt76: mt7603: tune tx ring size (Jarod Wilson) [1937053]
+- mt76: remove struct mt76_sw_queue (Jarod Wilson) [1937053]
+- mt76: rely on AQL for burst size limits on tx queueing (Jarod Wilson) [1937053]
+- mt76: remove swq from struct mt76_sw_queue (Jarod Wilson) [1937053]
+- mt76: remove qid argument to drv->tx_complete_skb (Jarod Wilson) [1937053]
+- mt76: unify queue tx cleanup code (Jarod Wilson) [1937053]
+- mt76: sdio: fix use of q->head and q->tail (Jarod Wilson) [1937053]
+- mt76: usb: fix use of q->head and q->tail (Jarod Wilson) [1937053]
+- mt76: mt7603: check for single-stream EEPROM configuration (Jarod Wilson) [1937053]
+- mt76: add memory barrier to DMA queue kick (Jarod Wilson) [1937053]
+- mt76: mt7915: add support for accessing mapped registers via bus ops (Jarod Wilson) [1937053]
+- mt76: mt7615: significantly reduce interrupt load (Jarod Wilson) [1937053]
+- mt76: mt7915: significantly reduce interrupt load (Jarod Wilson) [1937053]
+- mt76: mt7915: schedule tx tasklet in mt7915_mac_tx_free (Jarod Wilson) [1937053]
+- mt76: dma: update q->queued immediately on cleanup (Jarod Wilson) [1937053]
+- mt76: mt7915: optimize mt7915_mac_sta_poll (Jarod Wilson) [1937053]
+- mt76: mt7615: fix reading airtime statistics (Jarod Wilson) [1937053]
+- mt76: mt7663u: fix dma header initialization (Jarod Wilson) [1937053]
+- mt76: fix a possible NULL pointer dereference in mt76_testmode_dump (Jarod Wilson) [1937053]
+- mt76: mt7615: fix a possible NULL pointer dereference in mt7615_pm_wake_work (Jarod Wilson) [1937053]
+- mt76: mt7615: fix possible memory leak in mt7615_tm_set_tx_power (Jarod Wilson) [1937053]
+- mt76: mt7663s: fix unable to handle kernel paging request (Jarod Wilson) [1937053]
+- mt76: mt7663s: fix resume failure (Jarod Wilson) [1937053]
+- mt76: mt7663s: use NULL instead of 0 in sdio code (Jarod Wilson) [1937053]
+- mt76: mt7615: release mutex in mt7615_reset_test_set (Jarod Wilson) [1937053]
+- mt76: mt7915: add Tx A-MSDU offloading support (Jarod Wilson) [1937053]
+- mt76: mt7915: add missing flags in WMM parameter settings (Jarod Wilson) [1937053]
+- mt76: mt7915: simplify aggregation session check (Jarod Wilson) [1937053]
+- mt76: mt7615: remove mtxq->agg_ssn assignment (Jarod Wilson) [1937053]
+- mt76: move mt76_check_agg_ssn to driver tx_prepare calls (Jarod Wilson) [1937053]
+- mt76: mt7915: enable offloading of sequence number assignment (Jarod Wilson) [1937053]
+- mt76: mt7915: increase tx retry count (Jarod Wilson) [1937053]
+- mt76: mt7915: clean up station stats polling and rate control update (Jarod Wilson) [1937053]
+- mt76: mt7915: do not do any work in napi poll after calling napi_complete_done() (Jarod Wilson) [1937053]
+- mt76: mt7615: do not do any work in napi poll after calling napi_complete_done() (Jarod Wilson) [1937053]
+- mt76: mt76x02: clean up and fix interrupt masking in the irq handler (Jarod Wilson) [1937053]
+- mt76: mt7615: only clear unmasked interrupts in irq tasklet (Jarod Wilson) [1937053]
+- mt76: mt7915: clean up and fix interrupt masking in the irq handler (Jarod Wilson) [1937053]
+- mt76: set interrupt mask register to 0 before requesting irq (Jarod Wilson) [1937053]
+- mt76: fix double DMA unmap of the first buffer on 7615/7915 (Jarod Wilson) [1937053]
+- mt76: mt7915: fix crash on tx rate report for invalid stations (Jarod Wilson) [1937053]
+- mt76: mt7915: enable U-APSD on AP side (Jarod Wilson) [1937053]
+- mt76: mt76s: get rid of unused variable (Jarod Wilson) [1937053]
+- mt76: mt76s: move tx/rx processing in 2 separate works (Jarod Wilson) [1937053]
+- mt76: mt76s: move status processing in txrx wq (Jarod Wilson) [1937053]
+- mt76: mt7663s: move rx processing in txrx wq (Jarod Wilson) [1937053]
+- mt76: mt76s: move tx processing in a dedicated wq (Jarod Wilson) [1937053]
+- mt76: mt76s: fix oom in mt76s_tx_queue_skb_raw (Jarod Wilson) [1937053]
+- mt76: mt7615: reschedule runtime-pm receiving a tx interrupt (Jarod Wilson) [1937053]
+- mt76: do not inject packets if MT76_STATE_PM is set (Jarod Wilson) [1937053]
+- mt76: mt7615: hold mt76 lock queueing wd in mt7615_queue_key_update (Jarod Wilson) [1937053]
+- mt76: mt7663s: move drv_own/fw_own in mt7615_mcu_ops (Jarod Wilson) [1937053]
+- mt76: mt7615: move drv_own/fw_own in mt7615_mcu_ops (Jarod Wilson) [1937053]
+- mt76: mt7615: register ext_phy if DBDC is detected (Jarod Wilson) [1937053]
+- brcmfmac: check return value of driver_for_each_device() (Jarod Wilson) [1937053]
+- ath11k: Remove unused function ath11k_htc_restore_tx_skb() (Jarod Wilson) [1937053]
+- ath11k: remove redundant num_keep_alive_pattern assignment (Jarod Wilson) [1937053]
+- ath11k: wmi: remove redundant configuration values from init (Jarod Wilson) [1937053]
+- ath11k: Add support spectral scan for IPQ6018 (Jarod Wilson) [1937053]
+- ath11k: debugfs: move some function declarations to correct header files (Jarod Wilson) [1937053]
+- ath11k: rename debug_htt_stats.[c|h] to debugfs_htt_stats.[c|h] (Jarod Wilson) [1937053]
+- ath11k: debugfs: use ath11k_debugfs_ prefix (Jarod Wilson) [1937053]
+- ath11k: refactor debugfs code into debugfs.c (Jarod Wilson) [1937053]
+- ath10k: Use bdf calibration variant for snoc targets (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723be: use true,false for bool variable large_cfo_hit (Jarod Wilson) [1937053]
+- rtlwifi: rtl8821ae: use true,false for bool variable large_cfo_hit (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192ee: use true,false for bool variable large_cfo_hit (Jarod Wilson) [1937053]
+- rtlwifi: Use ffs in <foo>_phy_calculate_bit_shift (Jarod Wilson) [1937053]
+- mt7601u: Convert to DEFINE_SHOW_ATTRIBUTE (Jarod Wilson) [1937053]
+- ath11k: Remove rproc references from common core layer (Jarod Wilson) [1937053]
+- ath9k: hif_usb: fix race condition between usb_get_urb() and usb_kill_anchored_urbs() (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723be: fix comparison to bool warning in hw.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192de: fix comparison to bool warning in hw.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192ce: fix comparison to bool warning in hw.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192cu: fix comparison to bool warning in hw.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8821ae: fix comparison to bool warning in phy.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8821ae: fix comparison to bool warning in hw.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192cu: fix comparison to bool warning in mac.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192c: fix comparison to bool warning in phy_common.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192ee: fix comparison to bool warning in hw.c (Jarod Wilson) [1937053]
+- mac80211: fix some encapsulation offload kernel-doc (Jarod Wilson) [1937053]
+- cfg80211: add missing kernel-doc for S1G band capabilities (Jarod Wilson) [1937053]
+- mac80211: Unsolicited broadcast probe response support (Jarod Wilson) [1937053]
+- nl80211: Unsolicited broadcast probe response support (Jarod Wilson) [1937053]
+- mac80211: Add FILS discovery support (Jarod Wilson) [1937053]
+- nl80211: Add FILS discovery support (Jarod Wilson) [1937053]
+- mac80211: allow bigger A-MSDU sizes in VHT, even if HT is limited (Jarod Wilson) [1937053]
+- nl80211: support setting S1G channels (Jarod Wilson) [1937053]
+- nl80211: correctly validate S1G beacon head (Jarod Wilson) [1937053]
+- cfg80211: regulatory: handle S1G channels (Jarod Wilson) [1937053]
+- nl80211: advertise supported channel width in S1G (Jarod Wilson) [1937053]
+- ieee80211: redefine S1G bits with GENMASK (Jarod Wilson) [1937053]
+- mac80211: reorganize code to remove a forward declaration (Jarod Wilson) [1937053]
+- mac80211: extend ieee80211_tx_status_ext to support bulk free (Jarod Wilson) [1937053]
+- mac80211: support using ieee80211_tx_status_ext to free skbs without status info (Jarod Wilson) [1937053]
+- mac80211: unify 802.3 (offload) and 802.11 tx status codepath (Jarod Wilson) [1937053]
+- mac80211: optimize station connection monitor (Jarod Wilson) [1937053]
+- mac80211: notify the driver when a sta uses 4-address mode (Jarod Wilson) [1937053]
+- mac80211: swap NEED_TXPROCESSING and HW_80211_ENCAP tx flags (Jarod Wilson) [1937053]
+- mac80211: remove tx status call to ieee80211_sta_register_airtime (Jarod Wilson) [1937053]
+- mac80211: reduce duplication in tx status functions (Jarod Wilson) [1937053]
+- mac80211: rework tx encapsulation offload API (Jarod Wilson) [1937053]
+- mac80211: set info->control.hw_key for encap offload packets (Jarod Wilson) [1937053]
+- mac80211: skip encap offload for tx multicast/control packets (Jarod Wilson) [1937053]
+- mac80211: check and refresh aggregation session in encap offload tx (Jarod Wilson) [1937053]
+- mac80211: add missing queue/hash initialization to 802.3 xmit (Jarod Wilson) [1937053]
+- cfg80211: add more comments for ap_isolate in bss_parameters (Jarod Wilson) [1937053]
+- lib80211: Remove unused macro DRV_NAME (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723ae: fix comparison pointer to bool warning in phy.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723ae: fix comparison pointer to bool warning in trx.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723ae: fix comparison pointer to bool warning in rf.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8188ee: fix comparison pointer to bool warning in hw.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8188ee: fix comparison pointer to bool warning in trx.c (Jarod Wilson) [1937053]
+- rtlwifi: rtl8188ee: fix comparison pointer to bool warning in phy.c (Jarod Wilson) [1937053]
+- rtw88: rtw8822c: eliminate code duplication, use native swap() function (Jarod Wilson) [1937053]
+- brcmsmac: main: Eliminate empty brcms_c_down_del_timer() (Jarod Wilson) [1937053]
+- brcmsmac: phy_lcn: Remove unused variable 'lcnphy_rx_iqcomp_table_rev0' (Jarod Wilson) [1937053]
+- brcmsmac: phytbl_lcn: Remove unused array 'dot11lcn_gain_tbl_rev1' (Jarod Wilson) [1937053]
+- brcmfmac: support SAE authentication offload in AP mode (Jarod Wilson) [1937053]
+- brcmfmac: support 4-way handshake offloading for WPA/WPA2-PSK in AP mode (Jarod Wilson) [1937053]
+- ath10k: Remove unused macro ATH10K_ROC_TIMEOUT_HZ (Jarod Wilson) [1937053]
+- ath11k: Remove unused inline function htt_htt_stats_debug_dump() (Jarod Wilson) [1937053]
+- ath11k: fix link error when CONFIG_REMOTEPROC is disabled (Jarod Wilson) [1937053]
+- ath11k: remove calling ath11k_init_hw_params() second time (Jarod Wilson) [1937053]
+- ath11k: add raw mode and software crypto support (Jarod Wilson) [1937053]
+- ath11k: add ipq6018 support (Jarod Wilson) [1937053]
+- ath11k: move target ce configs to hw_params (Jarod Wilson) [1937053]
+- net: wireless: drop bogus CRYPTO_xxx Kconfig selects (Jarod Wilson) [1937053]
+- rtlwifi: switch from 'pci_' to 'dma_' API (Jarod Wilson) [1937053]
+- brcmsmac: fix memory leak in wlc_phy_attach_lcnphy (Jarod Wilson) [1937053]
+- rtl8xxxu: prevent potential memory leak (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723ae: Delete a stray tab (Jarod Wilson) [1937053]
+- ath11k: Add peer max mpdu parameter in peer assoc command (Jarod Wilson) [1937053]
+- ath10k: Add support for chain1 regulator supply voting (Jarod Wilson) [1937053]
+- brcmfmac: set F2 SDIO block size to 128 bytes for BCM4329 (Jarod Wilson) [1937053]
+- brcmfmac: drop chip id from debug messages (Jarod Wilson) [1937053]
+- brcmfmac: increase F2 watermark for BCM4329 (Jarod Wilson) [1937053]
+- mwifiex: sdio: Fix -Wunused-const-variable warnings (Jarod Wilson) [1937053]
+- mwifiex: wmm: Fix -Wunused-const-variable warnings (Jarod Wilson) [1937053]
+- mt7601u: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- rtlwifi: Remove temporary definition of RT_TRACE (Jarod Wilson) [1937053]
+- rtlwifi: rtl8821ae: Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- brcmsmac: phytbl_n: Remove a few unused arrays (Jarod Wilson) [1937053]
+- brcmsmac: phytbl_lcn: Remove unused array 'dot11lcnphytbl_rx_gain_info_rev1' (Jarod Wilson) [1937053]
+- brcmsmac: phy_n: Remove a bunch of unused variables (Jarod Wilson) [1937053]
+- brcmsmac: phy_lcn: Remove a bunch of unused variables (Jarod Wilson) [1937053]
+- prism54: isl_ioctl: Remove unused variable 'j' (Jarod Wilson) [1937053]
+- rtw88: debug: Remove unused variables 'val' (Jarod Wilson) [1937053]
+- brcmfmac: fwsignal: Finish documenting 'brcmf_fws_mac_descriptor' (Jarod Wilson) [1937053]
+- brcmsmac: phy_cmn: Remove a unused variables 'vbat' and 'temp' (Jarod Wilson) [1937053]
+- brcmfmac: p2p: Fix a couple of function headers (Jarod Wilson) [1937053]
+- brcmsmac: ampdu: Remove a couple set but unused variables (Jarod Wilson) [1937053]
+- mwifiex: pcie: Move tables to the only place they're used (Jarod Wilson) [1937053]
+- ath10k: Get rid of "per_ce_irq" hw param (Jarod Wilson) [1937053]
+- ath10k: Keep track of which interrupts fired, don't poll them (Jarod Wilson) [1937053]
+- ath10k: Add interrupt summary based CE processing (Jarod Wilson) [1937053]
+- rtlwifi: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- rtl818x_pci: switch from 'pci_' to 'dma_' API (Jarod Wilson) [1937053]
+- p54: avoid accessing the data mapped to streaming DMA (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192c: phy_common: Remove unused variable 'bbvalue' (Jarod Wilson) [1937053]
+- brcmfmac: fwsignal: Remove unused variable 'brcmf_fws_prio2fifo' (Jarod Wilson) [1937053]
+- b43: phy_ht: Remove 9 year old TODO (Jarod Wilson) [1937053]
+- brcmfmac: btcoex: Update 'brcmf_btcoex_state' and demote others (Jarod Wilson) [1937053]
+- brcmfmac: firmware: Demote seemingly unintentional kernel-doc header (Jarod Wilson) [1937053]
+- brcmsmac: main: Remove a bunch of unused variables (Jarod Wilson) [1937053]
+- brcmfmac: p2p: Fix a bunch of function docs (Jarod Wilson) [1937053]
+- brcmsmac: ampdu: Remove a bunch of unused variables (Jarod Wilson) [1937053]
+- brcmfmac: p2p: Deal with set but unused variables (Jarod Wilson) [1937053]
+- mt7601u: phy: Fix misnaming when documented function parameter 'dac' (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723-common: Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723be Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8723ae Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192se Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192ee: Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192de: Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192cu: Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192ce: Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8192-common: Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: rtl8188ee: Rename RT_TRACE to rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: btcoexist: Replace RT_TRACE with rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: Replace RT_TRACE with rtl_dbg (Jarod Wilson) [1937053]
+- rtlwifi: Start changing RT_TRACE into rtl_dbg (Jarod Wilson) [1937053]
+- ath10k: wmi: Use struct_size() helper in ath10k_wmi_alloc_skb() (Jarod Wilson) [1937053]
+- ath11k: fix missing error check on call to ath11k_pci_get_user_msi_assignment (Jarod Wilson) [1937053]
+- ath11k: fix spelling mistake "moniter" -> "monitor" (Jarod Wilson) [1937053]
+- nl80211: support SAE authentication offload in AP mode (Jarod Wilson) [1937053]
+- atmel: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- b43: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- brcmfmac: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- rt2x00: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- b43: phy_n: Add empty braces around empty statements (Jarod Wilson) [1937053]
+- b43: phy_common: Demote non-conformant kerneldoc header (Jarod Wilson) [1937053]
+- brcmsmac: mac80211_if: Demote a few non-conformant kerneldoc headers (Jarod Wilson) [1937053]
+- brcmfmac: fweh: Fix docrot related function documentation issues (Jarod Wilson) [1937053]
+- brcmfmac: fweh: Remove set but unused variable 'err' (Jarod Wilson) [1937053]
+- b43: main: Add braces around empty statements (Jarod Wilson) [1937053]
+- atmel: Demote non-kerneldoc header to standard comment block (Jarod Wilson) [1937053]
+- nl80211: rename csa counter attributes countdown counters (Jarod Wilson) [1937053]
+- nl80211: add support for setting fixed HE rate/gi/ltf (Jarod Wilson) [1937053]
+- ath11k: return -ENOMEM on allocation failure (Jarod Wilson) [1937053]
+- ath11k: return error if firmware request fails (Jarod Wilson) [1937053]
+- ath9k: Do not select MAC80211_LEDS by default (Jarod Wilson) [1937053]
+- ath9k: ar5008_initvals: Move ar5416Bank{0,1,2,3,7} to where they are used (Jarod Wilson) [1937053]
+- ath9k: ar5008_initvals: Remove unused table entirely (Jarod Wilson) [1937053]
+- ath9k: ar9001_initvals: Remove unused array 'ar5416Bank6_9100' (Jarod Wilson) [1937053]
+- ath9k: ar9002_initvals: Remove unused array 'ar9280PciePhy_clkreq_off_L1_9280' (Jarod Wilson) [1937053]
+- ath9k_htc: Do not select MAC80211_LEDS by default (Jarod Wilson) [1937053]
+- rtw88: 8822c: update tx power limit tables to RF v20.1 (Jarod Wilson) [1937053]
+- rtw88: use read_poll_timeout_atomic() for poll loop (Jarod Wilson) [1937053]
+- rtw88: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- rtw88: switch from 'pci_' to 'dma_' API (Jarod Wilson) [1937053]
+- mwifiex: don't call del_timer_sync() on uninitialized timer (Jarod Wilson) [1937053]
+- mwifiex: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- mwifiex: Clean up some err and dbg messages (Jarod Wilson) [1937053]
+- mwifiex: switch from 'pci_' to 'dma_' API (Jarod Wilson) [1937053]
+- nl80211: fix PORT_AUTHORIZED wording to reflect behavior (Jarod Wilson) [1937053]
+- cfg80211: add helper fn for adjacent rule channels (Jarod Wilson) [1937053]
+- cfg80211: add helper fn for single rule channels (Jarod Wilson) [1937053]
+- nl80211: use NLA_POLICY_RANGE(NLA_BINARY, ...) for a few attributes (Jarod Wilson) [1937053]
+- nl80211: clean up code/policy a bit (Jarod Wilson) [1937053]
+- net: wireless: wext_compat.c: delete duplicated word (Jarod Wilson) [1937053]
+- net: wireless: sme.c: delete duplicated word (Jarod Wilson) [1937053]
+- net: wireless: scan.c: delete or fix duplicated words (Jarod Wilson) [1937053]
+- net: wireless: reg.c: delete duplicated words + fix punctuation (Jarod Wilson) [1937053]
+- net: wireless: delete duplicated word + fix grammar (Jarod Wilson) [1937053]
+- net: mac80211: mesh.h: delete duplicated word (Jarod Wilson) [1937053]
+- net: mac80211: agg-rx.c: fix duplicated words (Jarod Wilson) [1937053]
+- net: ath11k: constify ath11k_thermal_ops (Jarod Wilson) [1937053]
+- ath10k: Add new api to support reset TID config (Jarod Wilson) [1937053]
+- ath10k: Add new api to support TID specific configuration (Jarod Wilson) [1937053]
+- ath10k: Move rate mask validation function up in the file (Jarod Wilson) [1937053]
+- ath10k: Add wmi command support for station specific TID config (Jarod Wilson) [1937053]
+- ath10k: sdio: add firmware coredump support (Jarod Wilson) [1937053]
+- ath10k: add bus type for each layout of coredump (Jarod Wilson) [1937053]
+- netlink/wireless: consistently use NLA_POLICY_MIN_LEN() (Jarod Wilson) [1937053]
+- netlink/wireless: consistently use NLA_POLICY_EXACT_LEN() (Jarod Wilson) [1937053]
+- rndis_wlan: tighten check of rndis_query_oid return (Jarod Wilson) [1937053]
+- rtw88: fix spelling mistake: "unsupport" -> "unsupported" (Jarod Wilson) [1937053]
+- brcmfmac: use *ph to print small buffer (Jarod Wilson) [1937053]
+- brcm80211: fix possible memleak in brcmf_proto_msgbuf_attach (Jarod Wilson) [1937053]
+- ath11k: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- ath10k: fix VHT NSS calculation when STBC is enabled (Jarod Wilson) [1937053]
+- ath10k: Register shutdown handler (Jarod Wilson) [1937053]
+- ath11k: reset MHI during power down and power up (Jarod Wilson) [1937053]
+- ath11k: use TCL_DATA_RING_0 for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: process both lmac rings for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: assign correct search flag and type for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: delay vdev_start for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: refine the phy_id check in ath11k_reg_chan_list_event (Jarod Wilson) [1937053]
+- ath11k: setup QCA6390 rings for both rxdmas (Jarod Wilson) [1937053]
+- ath11k: don't initialize rxdma1 related ring (Jarod Wilson) [1937053]
+- ath11k: enable DP interrupt setup for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: dp: redefine peer_map and peer_unmap (Jarod Wilson) [1937053]
+- ath11k: wmi: put hardware to DBS mode (Jarod Wilson) [1937053]
+- ath11k: initialize wmi config based on hw_params (Jarod Wilson) [1937053]
+- ath11k: force single pdev only for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: disable CE interrupt before hif start (Jarod Wilson) [1937053]
+- ath11k: ce: get msi_addr and msi_data before srng setup (Jarod Wilson) [1937053]
+- ath11k: hal: assign msi_addr and msi_data to srng (Jarod Wilson) [1937053]
+- ath11k: ce: remove CE_COUNT() macro (Jarod Wilson) [1937053]
+- ath11k: ce: remove host_ce_config_wlan macro (Jarod Wilson) [1937053]
+- ath11k: ce: support different CE configurations (Jarod Wilson) [1937053]
+- ath11k: hal: cleanup dynamic register macros (Jarod Wilson) [1937053]
+- ath11k: hal: create register values dynamically (Jarod Wilson) [1937053]
+- ath10k: move enable_pll_clk call to ath10k_core_start() (Jarod Wilson) [1937053]
+- ath10k: Fix the size used in a 'dma_free_coherent()' call in an error handling path (Jarod Wilson) [1937053]
+- ath10k: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- ath9k: add NL80211_EXT_FEATURE_CAN_REPLACE_PTK0 support (Jarod Wilson) [1937053]
+- ath11k: hal: create hw_srng_config dynamically (Jarod Wilson) [1937053]
+- ath11k: enable internal sleep clock (Jarod Wilson) [1937053]
+- ath11k: fix KASAN warning of ath11k_qmi_wlanfw_wlan_cfg_send (Jarod Wilson) [1937053]
+- ath11k: fix memory OOB access in qmi_decode (Jarod Wilson) [1937053]
+- ath11k: allocate smaller chunks of memory for firmware (Jarod Wilson) [1937053]
+- ath11k: setup ce tasklet for control path (Jarod Wilson) [1937053]
+- ath11k: configure copy engine msi address in CE srng (Jarod Wilson) [1937053]
+- ath11k: pci: add read32() and write32() hif operations (Jarod Wilson) [1937053]
+- ath11k: fill appropriate QMI service instance id for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: add board file support for PCI devices (Jarod Wilson) [1937053]
+- ath11k: add support for m3 firmware (Jarod Wilson) [1937053]
+- ath11k: use remoteproc only with AHB devices (Jarod Wilson) [1937053]
+- ath11k: pci: add HAL, CE and core initialisation (Jarod Wilson) [1937053]
+- ath11k: register MHI controller device for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: implement ath11k_core_pre_init() (Jarod Wilson) [1937053]
+- ath11k: pci: add MSI config initialisation (Jarod Wilson) [1937053]
+- ath11k: pci: setup resources (Jarod Wilson) [1937053]
+- ath11k: add simple PCI client driver for QCA6390 chipset (Jarod Wilson) [1937053]
+- ath11k: move ring mask definitions to hw_params (Jarod Wilson) [1937053]
+- ath11k: add hw_params entry for QCA6390 (Jarod Wilson) [1937053]
+- ath11k: do not depend on ARCH_QCOM for ath11k (Jarod Wilson) [1937053]
+- ath10k: correct the array index from mcs index for HT mode for QCA6174 (Jarod Wilson) [1937053]
+- ath10k: enable supports_peer_stats_info for QCA6174 PCI devices (Jarod Wilson) [1937053]
+- ath10k: remove return for NL80211_STA_INFO_TX_BITRATE (Jarod Wilson) [1937053]
+- ath10k: add wmi service peer stat info for wmi tlv (Jarod Wilson) [1937053]
+- ath10k: start recovery process when payload length exceeds max htc length for sdio (Jarod Wilson) [1937053]
+- ath: drop unnecessary list_empty (Jarod Wilson) [1937053]
+- ath9k: Use fallthrough pseudo-keyword (Jarod Wilson) [1937053]
+- ath9k: Fix typo in function name (Jarod Wilson) [1937053]
+- ath9k: Replace HTTP links with HTTPS ones (Jarod Wilson) [1937053]
+- ath10k: check idx validity in __ath10k_htt_rx_ring_fill_n() (Jarod Wilson) [1937053]
+- ath9k: Check the return value of pcie_capability_read_*() (Jarod Wilson) [1937053]
+- ath11k: remove define ATH11K_QMI_DEFAULT_CAL_FILE_NAME (Jarod Wilson) [1937053]
+- ath11k: don't use defines in hw_params (Jarod Wilson) [1937053]
+- ath11k: qmi: cleanup info messages (Jarod Wilson) [1937053]
+- ath11k: remove useless info messages (Jarod Wilson) [1937053]
+- ath11k: change ath11k_core_fetch_board_data_api_n() to use ath11k_core_create_firmware_path() (Jarod Wilson) [1937053]
+- ath11k: don't use defines for hw specific firmware directories (Jarod Wilson) [1937053]
+- ath11k: create a common function to request all firmware files (Jarod Wilson) [1937053]
+- ath11k: Add bdf-addr in hw_params (Jarod Wilson) [1937053]
+- ath11k: add hw_ops for pdev id to hw_mac mapping (Jarod Wilson) [1937053]
+- ath11k: define max_radios in hw_params (Jarod Wilson) [1937053]
+- ath11k: convert ath11k_hw_params to an array (Jarod Wilson) [1937053]
+- ath11k: ahb: call ath11k_core_init() before irq configuration (Jarod Wilson) [1937053]
+- ath10k: pci: fix memcpy size of bmi response (Jarod Wilson) [1937053]
+- ath11k: rename default board file (Jarod Wilson) [1937053]
+- ath11k: update firmware files read path (Jarod Wilson) [1937053]
+- ath10k: provide survey info as accumulated data (Jarod Wilson) [1937053]
+- ath10k: fix retry packets update in station dump (Jarod Wilson) [1937053]
+- ath10k: Wait until copy complete is actually done before completing (Jarod Wilson) [1937053]
+- mac80211_hwsim: add 6GHz channels (Jarod Wilson) [1937053]
+- mac80211_hwsim: indicate support for S1G (Jarod Wilson) [1937053]
+- mac80211_hwsim: write TSF timestamp correctly to S1G beacon (Jarod Wilson) [1937053]
+- mac80211_hwsim: fix typo in kernel-doc (Jarod Wilson) [1937053]
+- mac80211: rename csa counters to countdown counters (Jarod Wilson) [1937053]
+- mac80211_hwsim: report the WIPHY_FLAG_SUPPORTS_5_10_MHZ capability (Jarod Wilson) [1937053]
+- mac80211_hwsim: Claim support for setting Beacon frame TX legacy rate (Jarod Wilson) [1937053]
+- mac80211_hwsim: Advertise support for multicast RX registration (Jarod Wilson) [1937053]
+- mac80211_hwsim: indicate in IBSS that we have transmitted beacons (Jarod Wilson) [1937053]
+- mac80211_hwsim: notify wmediumd of used MAC addresses (Jarod Wilson) [1937053]
+- mac80211_hwsim: use GFP_ATOMIC under spin lock (Jarod Wilson) [1937053]
+- mac80211_hwsim: Use kstrndup() in place of kasprintf() (Jarod Wilson) [1937053]
+- mac80211_hwsim: add frame transmission support over virtio (Jarod Wilson) [1937053]
+- mac80211_hwsim: enable Beacon protection (Jarod Wilson) [1937053]
+- mac80211_hwsim: add power save support (Jarod Wilson) [1937053]
+- mac80211_hwsim: remove maximum TX power (Jarod Wilson) [1937053]
+- mac80211_hwsim: use DEFINE_DEBUGFS_ATTRIBUTE to define debugfs fops (Jarod Wilson) [1937053]
+- mac80211_hwsim: add support for OCB (Jarod Wilson) [1937053]
+- mac80211_hwsim: add more 5GHz channels, 5/10 MHz support (Jarod Wilson) [1937053]
+- mac80211_hwsim: fix incorrect dev_alloc_name failure goto (Jarod Wilson) [1937053]
+- mac80211_hwsim: Register support for HE meshpoint (Jarod Wilson) [1937053]
+- mac80211_hwsim: fill boottime_ns in netlink RX path (Jarod Wilson) [1937053]
+- mac80211_hwsim: Fix possible null-pointer dereferences in hwsim_dump_radio_nl() (Jarod Wilson) [1937053]
+- mac80211_hwsim: Extended Key ID API update (Jarod Wilson) [1937053]
+- mac80211_hwsim: Fix a typo in the name of function 'mac80211_hswim_he_capab()' (Jarod Wilson) [1937053]
+- mac80211_hwsim: Extended Key ID support (Jarod Wilson) [1937053]
+- mac80211_hwsim: set p2p device interface support indication (Jarod Wilson) [1937053]
+- mac80211_hwsim: calculate if_combination.max_interfaces (Jarod Wilson) [1937053]
+- mac80211_hwsim: propagate genlmsg_reply return code (Jarod Wilson) [1937053]
+- mac80211_hwsim: Declare support for Multi-BSSID (Jarod Wilson) [1937053]
+- mac80211_hwsim: Support boottime in scan results (Jarod Wilson) [1937053]
+- mac80211_hwsim: check that n_limits makes sense (Jarod Wilson) [1937053]
+- mac80211_hwsim: fix overwriting of if_combination (Jarod Wilson) [1937053]
+- mac80211_hwsim: fixes kernel crash during mac80211_hwsim init (Jarod Wilson) [1937053]
+- mac80211_hwsim: allow configurable cipher types (Jarod Wilson) [1937053]
+- mac80211_hwsim: allow setting iftype support (Jarod Wilson) [1937053]
+- mac80211_hwsim: move HWSIM_ATTR_RADIO_NAME parsing last (Jarod Wilson) [1937053]
+- mac80211_hwsim: fix module init error paths for netlink (Jarod Wilson) [1937053]
+- mac80211_hwsim: drop now unused work-queue from hwsim (Jarod Wilson) [1937053]
+- mac80211_hwsim: do not omit multicast announce of first added radio (Jarod Wilson) [1937053]
+- mac80211_hwsim: fix race in radio destruction from netlink notifier (Jarod Wilson) [1937053]
+- mac80211_hwsim: fix locking when iterating radios during ns exit (Jarod Wilson) [1937053]
+- wireless: align to draft 11ax D3.0 (Jarod Wilson) [1937053]
+- mac80211_hwsim: correct use of IEEE80211_VHT_CAP_RXSTBC_X (Jarod Wilson) [1937053]
+- mac80211_hwsim: require at least one channel (Jarod Wilson) [1937053]
+- mac80211_hwsim: Add support for HE (Jarod Wilson) [1937053]
+- net/fq_impl: do not maintain a backlog-sorted list of flows (Jarod Wilson) [1937053]
+- net/fq_impl: drop get_default_func, move default flow to fq_tin (Jarod Wilson) [1937053]
+- net/fq_impl: bulk-free packets from a flow on overmemory (Jarod Wilson) [1937053]
+- net/fq_impl: use skb_get_hash instead of skb_get_hash_perturb (Jarod Wilson) [1937053]
+- net/fq_impl: Switch to kvmalloc() for memory allocation (Jarod Wilson) [1937053]
+- mac80211: set NETIF_F_LLTX when using intermediate tx queues (Jarod Wilson) [1937053]
+- mac80211: calculate hash for fq without holding fq->lock in itxq enqueue (Jarod Wilson) [1937053]
+- nvme-tcp: fix misuse of __smp_processor_id with preemption enabled (Gopal Tiwari) [1964227]
+- powerpc/smp: Cache CPU to chip lookup (Daniel Henrique Barboza) [1934421]
+- Revert "powerpc/topology: Update topology_core_cpumask" (Daniel Henrique Barboza) [1934421]
+- powerpc/smp: Reintroduce cpu_core_mask (Daniel Henrique Barboza) [1934421]
+- scsi: smartpqi: Remove unused functions (Don Brace) [1952154]
+- scsi: smartpqi: Fix device pointer variable reference static checker issue (Don Brace) [1952154]
+- scsi: smartpqi: Fix blocks_per_row static checker issue (Don Brace) [1952154]
+- scsi: smartpqi: Update version to 2.1.8-045 (Don Brace) [1952154]
+- scsi: smartpqi: Add new PCI IDs (Don Brace) [1952154]
+- scsi: smartpqi: Correct system hangs when resuming from hibernation (Don Brace) [1952154]
+- scsi: smartpqi: Update enclosure identifier in sysfs (Don Brace) [1952154]
+- scsi: smartpqi: Add additional logging for LUN resets (Don Brace) [1952154]
+- scsi: smartpqi: Update SAS initiator_port_protocols and target_port_protocols (Don Brace) [1952154]
+- scsi: smartpqi: Add phy ID support for the physical drives (Don Brace) [1952154]
+- scsi: smartpqi: Convert snprintf() to scnprintf() (Don Brace) [1952154]
+- scsi: smartpqi: Fix driver synchronization issues (Don Brace) [1952154]
+- scsi: smartpqi: Update device scan operations (Don Brace) [1952154]
+- scsi: smartpqi: Update OFA management (Don Brace) [1952154]
+- scsi: smartpqi: Update RAID bypass handling (Don Brace) [1952154]
+- scsi: smartpqi: Update suspend/resume and shutdown (Don Brace) [1952154]
+- scsi: smartpqi: Synchronize device resets with mutex (Don Brace) [1952154]
+- scsi: smartpqi: Update soft reset management for OFA (Don Brace) [1952154]
+- scsi: smartpqi: Update event handler (Don Brace) [1952154]
+- scsi: smartpqi: Add support for wwid (Don Brace) [1952154]
+- scsi: smartpqi: Remove timeouts from internal cmds (Don Brace) [1952154]
+- scsi: smartpqi: Disable WRITE SAME for HBA NVMe disks (Don Brace) [1952154]
+- scsi: smartpqi: Add host level stream detection enable (Don Brace) [1952154]
+- scsi: smartpqi: Add stream detection (Don Brace) [1952154]
+- scsi: smartpqi: Align code with oob driver (Don Brace) [1952154]
+- scsi: smartpqi: Add support for long firmware version (Don Brace) [1952154]
+- scsi: smartpqi: Add support for BMIC sense feature cmd and feature bits (Don Brace) [1952154]
+- scsi: smartpqi: Add support for RAID1 writes (Don Brace) [1952154]
+- scsi: smartpqi: Add support for RAID5 and RAID6 writes (Don Brace) [1952154]
+- scsi: smartpqi: Refactor scatterlist code (Don Brace) [1952154]
+- scsi: smartpqi: Refactor aio submission code (Don Brace) [1952154]
+- scsi: smartpqi: Add support for new product ids (Don Brace) [1952154]
+- scsi: smartpqi: Correct request leakage during reset operations (Don Brace) [1952154]
+- scsi: smartpqi: Use host-wide tag space (Don Brace) [1952154]
+- smartpqi: Use fallthrough pseudo-keyword (Don Brace) [1952154]
+- scsi: smartpqi: Support device deletion via sysfs (Don Brace) [1952154]
+- scsi: smartpqi: Use scnprintf() for avoiding potential buffer overflow (Don Brace) [1952154]
+- smartpqi: remove ioremap_nocache and devm_ioremap_nocache (Don Brace) [1952154]
+- smartpqi: Use sizeof_field() macro (Don Brace) [1952154]
+- smartpqi: phase out dma_zalloc_coherent() (Don Brace) [1952154]
+- scsi: smartpqi: add support for huawei controllers (Don Brace) [1952154]
+- block: only update parent bi_status when bio fail (Ming Lei) [1945457]
+- kbuild: trace functions in subdirectories of lib/ (Joe Lawrence) [1942601]
+- kbuild: introduce ccflags-remove-y and asflags-remove-y (Joe Lawrence) [1942601]
+- redhat/configs: Add CONFIG_AMD_PMC (David Arcari) [1961755]
+- platform/x86: amd-pmc: put device on error paths (David Arcari) [1961755]
+- platform/x86: amd-pmc: Fix CONFIG_DEBUG_FS check (David Arcari) [1961755]
+- platform/x86: amd-pmc: Add AMD platform support for S2Idle (David Arcari) [1961755]
+- crypto: DRBG - switch to HMAC SHA512 DRBG as default DRBG (Vladis Dronov) [1956808]
+- x86/asm: Annotate movdir64b()'s dst argument with __iomem (Jerry Snitselaar) [1920747]
+- x86/asm: Add a missing __iomem annotation in enqcmds() (Jerry Snitselaar) [1920747]
+
+* Wed Jun 02 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-312.el8]
+- fm10k: amend removal of MODULE_VERSION (Vladis Dronov) [1955730]
+- hv_netvsc: Make netvsc/VF binding check both MAC and serial number (Mohammed Gamal) [1940927]
+- hv_netvsc: Add error handling while switching data path (Mohammed Gamal) [1940927]
+- netvsc: Update driver to use ethtool_sprintf (Mohammed Gamal) [1940927]
+- hv_netvsc: Add a comment clarifying batching logic (Mohammed Gamal) [1940927]
+- hv_netvsc: Fix validation in netvsc_linkstatus_callback() (Mohammed Gamal) [1940927]
+- hv_netvsc: Restrict configurations on isolated guests (Mohammed Gamal) [1940927]
+- hv_netvsc: Load and store the proper (NBL_HASH_INFO) per-packet info (Mohammed Gamal) [1940927]
+- hv_netvsc: Allocate the recv_buf buffers after NVSP_MSG1_TYPE_SEND_RECV_BUF (Mohammed Gamal) [1940927]
+- hv_netvsc: Reset the RSC count if NVSP_STAT_FAIL in netvsc_receive() (Mohammed Gamal) [1940927]
+- hv_netvsc: Copy packets sent by Hyper-V out of the receive buffer (Mohammed Gamal) [1940927]
+- net/hyperv: use skb_vlan_tag_*() helpers (Mohammed Gamal) [1940927]
+- net/vlan: introduce skb_vlan_tag_get_cfi() helper (Mohammed Gamal) [1940927]
+- hv_netvsc: Add (more) validation for untrusted Hyper-V values (Mohammed Gamal) [1940927]
+- hv_netvsc: Process NETDEV_GOING_DOWN on VF hot remove (Mohammed Gamal) [1940927]
+- hv_netvsc: Wait for completion on request SWITCH_DATA_PATH (Mohammed Gamal) [1940927]
+- hv_netvsc: Check VF datapath when sending traffic to VF (Mohammed Gamal) [1940927]
+- hv_netvsc: Validate number of allocated sub-channels (Mohammed Gamal) [1940927]
+- hv_netvsc: Use vmbus_requestor to generate transaction IDs for VMBus hardening (Mohammed Gamal) [1940927]
+- hv_netvsc: Use HV_HYP_PAGE_SIZE for Hyper-V communication (Mohammed Gamal) [1940927]
+- scsi: fnic: Use scsi_host_busy_iter() to traverse commands (Ewan D. Milne) [1949250]
+- scsi: fnic: Kill 'exclude_id' argument to fnic_cleanup_io() (Ewan D. Milne) [1949250]
+- net: vlan: Avoid using BUG() in vlan_proto_idx() (Davide Caratti) [1964456]
+- sch_htb: fix null pointer dereference on a null new_q (Ivan Vecera) [1935703]
+- sch_htb: Fix offload cleanup in htb_destroy on htb_init failure (Ivan Vecera) [1935703]
+- sch_htb: Fix select_queue for non-offload mode (Ivan Vecera) [1935703]
+- sch_htb: Stats for offloaded HTB (Ivan Vecera) [1935703]
+- sch_htb: Hierarchical QoS hardware offload (Ivan Vecera) [1935703]
+- net: sched: Add extack to Qdisc_class_ops.delete (Ivan Vecera) [1935703]
+- net: sched: Add multi-queue support to sch_tree_lock (Ivan Vecera) [1935703]
+- capabilities: require CAP_SETFCAP to map uid 0 (Alexey Gladkov) [1961202]
+- locking/qrwlock: Cleanup queued_write_lock_slowpath() (Waiman Long) [1954361]
+- locking/rtmutex: Clean up signal handling in __rt_mutex_slowlock() (Waiman Long) [1954361]
+- locking/rtmutex: Restrict the trylock WARN_ON() to debug (Waiman Long) [1954361]
+- locking/rtmutex: Fix misleading comment in rt_mutex_postunlock() (Waiman Long) [1954361]
+- locking/rtmutex: Consolidate the fast/slowpath invocation (Waiman Long) [1954361]
+- locking/rtmutex: Make text section and inlining consistent (Waiman Long) [1954361]
+- locking/rtmutex: Move debug functions as inlines into common header (Waiman Long) [1954361]
+- locking/rtmutex: Decrapify __rt_mutex_init() (Waiman Long) [1954361]
+- locking/rtmutex: Remove pointless CONFIG_RT_MUTEXES=n stubs (Waiman Long) [1954361]
+- locking/rtmutex: Inline chainwalk depth check (Waiman Long) [1954361]
+- locking/rtmutex: Move rt_mutex_debug_task_free() to rtmutex.c (Waiman Long) [1954361]
+- locking/rtmutex: Remove empty and unused debug stubs (Waiman Long) [1954361]
+- locking/rtmutex: Consolidate rt_mutex_init() (Waiman Long) [1954361]
+- locking/rtmutex: Remove output from deadlock detector (Waiman Long) [1954361]
+- locking/rtmutex: Remove rtmutex deadlock tester leftovers (Waiman Long) [1954361]
+- locking/rtmutex: Remove rt_mutex_timed_lock() (Waiman Long) [1954361]
+- kernel: delete repeated words in comments (Waiman Long) [1954361]
+- rbtree, rtmutex: Use rb_add_cached() (Waiman Long) [1954361]
+- rbtree: Add generic add and find helpers (Waiman Long) [1954361]
+- locking/rtmutex: Remove unused rt_mutex_cmpxchg_relaxed() (Waiman Long) [1954361]
+- lib/rbtree: avoid generating code twice for the cached versions (Waiman Long) [1954361]
+- locking/rtmutex: Fix the preprocessor logic with normal #ifdef #else #endif (Waiman Long) [1954361]
+- kernel/futex: Explicitly document pi_lock for pi_state owner fixup (Waiman Long) [1954361]
+- kernel/futex: Move hb unlock out of unqueue_me_pi() (Waiman Long) [1954361]
+- kernel/futex: Make futex_wait_requeue_pi() only call fixup_owner() (Waiman Long) [1954361]
+- kernel/futex: Kill rt_mutex_next_owner() (Waiman Long) [1954361]
+- futex: Remove unused empty compat_exit_robust_list() (Waiman Long) [1954361]
+- futex: Handle transient "ownerless" rtmutex state correctly (Waiman Long) [1954361]
+- futex: Convert to use the preferred 'fallthrough' macro (Waiman Long) [1954361]
+- futex: get rid of a kernel-docs build warning (Waiman Long) [1954361]
+- futex: arch_futex_atomic_op_inuser() calling conventions change (Waiman Long) [1954361]
+- s390: Use arch_local_irq_{save,restore}() in early boot code (Waiman Long) [1954361]
+- lockdep: Add a missing initialization hint to the "INFO: Trying to register non-static key" message (Waiman Long) [1954361]
+- locking: Fix typos in comments (Waiman Long) [1954361]
+- locking/lockdep: Update the comment for __lock_release() (Waiman Long) [1954361]
+- lockdep: Allow tuning tracing capacity constants. (Waiman Long) [1954361]
+- lockdep: Address clang -Wformat warning printing for hd (Waiman Long) [1954361]
+- lockdep: Add lockdep lock state defines (Waiman Long) [1954361]
+- lockdep: Add lockdep_assert_not_held() (Waiman Long) [1954361]
+- lockdep: Noinstr annotate warn_bogus_irq_restore() (Waiman Long) [1954361]
+- locking/lockdep: Avoid unmatched unlock (Waiman Long) [1954361]
+- locking/rwsem: Remove empty rwsem.h (Waiman Long) [1954361]
+- lockdep: report broken irq restoration (Waiman Long) [1954361]
+- locking/lockdep: Avoid noinstr warning for DEBUG_LOCKDEP (Waiman Long) [1954361]
+- locking/lockdep: Exclude local_lock_t from IRQ inversions (Waiman Long) [1954361]
+- locking/lockdep: Clean up check_redundant() a bit (Waiman Long) [1954361]
+- locking/lockdep: Add a skip() function to __bfs() (Waiman Long) [1954361]
+- locking/lockdep: Mark local_lock_t (Waiman Long) [1954361]
+- lockdep: Put graph lock/unlock under lock_recursion protection (Waiman Long) [1954361]
+- locking/rtmutex: Add missing kernel-doc markup (Waiman Long) [1954361]
+- lockdep: Avoid to modify chain keys in validate_chain() (Waiman Long) [1954361]
+- lockdep: Fix nr_unused_locks accounting (Waiman Long) [1954361]
+- lockdep: Optimize the memory usage of circular queue (Waiman Long) [1954361]
+- lockdep: Take read/write status in consideration when generate chainkey (Waiman Long) [1954361]
+- lockdep/selftest: Add a R-L/L-W test case specific to chain cache behavior (Waiman Long) [1954361]
+- lockdep: Add recursive read locks into dependency graph (Waiman Long) [1954361]
+- lockdep: Fix recursive read lock related safe->unsafe detection (Waiman Long) [1954361]
+- lockdep: Adjust check_redundant() for recursive read change (Waiman Long) [1954361]
+- lockdep: Support deadlock detection for recursive read locks in check_noncircular() (Waiman Long) [1954361]
+- lockdep: Make __bfs(.match) return bool (Waiman Long) [1954361]
+- lockdep: Extend __bfs() to work with multiple types of dependencies (Waiman Long) [1954361]
+- lockdep: Introduce lock_list::dep (Waiman Long) [1954361]
+- lockdep: Reduce the size of lock_list::distance (Waiman Long) [1954361]
+- lockdep: Make __bfs() visit every dependency until a match (Waiman Long) [1954361]
+- lockdep: Demagic the return value of BFS (Waiman Long) [1954361]
+- lockdep/Documention: Recursive read lock detection reasoning (Waiman Long) [1954361]
+- locking: More accurate annotations for read_lock() (Waiman Long) [1954361]
+- Documentation/locking/locktypes: Fix local_locks documentation (Waiman Long) [1954361]
+- treewide: Remove uninitialized_var() usage (Waiman Long) [1954361]
+- lockdep: Use this_cpu_ptr instead of get_cpu_var stats (Waiman Long) [1954361]
+- KVM: arm/arm64: Fix KVM_VGIC_V3_ADDR_TYPE_REDIST read (Gavin Shan) [1939323]
+- KVM: arm64: Don't advertise FEAT_SPE to guests (Gavin Shan) [1939323]
+- KVM: arm64: Don't print warning when trapping SPE registers (Gavin Shan) [1939323]
+- KVM: arm64: Fully zero the vcpu state on reset (Gavin Shan) [1939323]
+- KVM: arm64: Clarify vcpu reset behaviour (Gavin Shan) [1939323]
+- Documentation: KVM: Document KVM_GUESTDBG_USE_HW control flag for arm64 (Gavin Shan) [1939323]
+- KVM: arm64: Initialize VCPU mdcr_el2 before loading it (Gavin Shan) [1939323]
+- KVM: arm64: Handle access to TRFCR_EL1 (Gavin Shan) [1939323]
+- arm64: Add TRFCR_ELx definitions (Gavin Shan) [1939323]
+- KVM: arm64: Unify trap handlers injecting an UNDEF (Gavin Shan) [1939323]
+- KVM: arm64: Use find_vma_intersection() (Gavin Shan) [1939323]
+- KVM: arm64: Hide kvm_mmu_wp_memory_region() (Gavin Shan) [1939323]
+- KVM: selftests: vgic_init kvm selftests fixup (Gavin Shan) [1939323]
+- KVM: selftests: aarch64/vgic-v3 init sequence tests (Gavin Shan) [1939323]
+- KVM: arm64: vgic-v3: Expose GICR_TYPER.Last for userspace (Gavin Shan) [1939323]
+- kvm: arm64: vgic-v3: Introduce vgic_v3_free_redist_region() (Gavin Shan) [1939323]
+- KVM: arm64: Simplify argument passing to vgic_uaccess_[read|write] (Gavin Shan) [1939323]
+- docs: kvm: devices/arm-vgic-v3: enhance KVM_DEV_ARM_VGIC_CTRL_INIT doc (Gavin Shan) [1939323]
+- KVM: arm/arm64: vgic: Reset base address on kvm_vgic_dist_destroy() (Gavin Shan) [1939323]
+- KVM: arm64: vgic-v3: Fix error handling in vgic_v3_set_redist_base() (Gavin Shan) [1939323]
+- KVM: arm64: Fix KVM_VGIC_V3_ADDR_TYPE_REDIST_REGION read (Gavin Shan) [1939323]
+- KVM: arm64: vgic-v3: Fix some error codes when setting RDIST base (Gavin Shan) [1939323]
+- KVM: arm64: Disable guest access to trace filter controls (Gavin Shan) [1939323]
+- KVM: arm64: Fix CPU interface MMIO compatibility detection (Gavin Shan) [1939323]
+- KVM: arm64: Hide system instruction access to Trace registers (Gavin Shan) [1939323]
+- KVM: arm64: Fix exclusive limit for IPA size (Gavin Shan) [1939323]
+- KVM: arm64: Ensure I-cache isolation between vcpus of a same VM (Gavin Shan) [1939323]
+- KVM: arm64: nvhe: Save the SPE context early (Gavin Shan) [1939323]
+- KVM: arm64: Correct spelling of DBGDIDR register (Gavin Shan) [1939323]
+- KVM: arm64: Fix AArch32 PMUv3 capping (Gavin Shan) [1939323]
+- KVM: arm64: Fix missing RES1 in emulation of DBGBIDR (Gavin Shan) [1939323]
+- KVM: arm64: Remove spurious semicolon in reg_to_encoding() (Gavin Shan) [1939323]
+- KVM: arm64: Fix hyp_cpu_pm_{init,exit} __init annotation (Gavin Shan) [1939323]
+- KVM: arm64: Workaround firmware wrongly advertising GICv2-on-v3 compatibility (Gavin Shan) [1939323]
+- KVM: arm64: Rename __vgic_v3_get_ich_vtr_el2() to __vgic_v3_get_gic_config() (Gavin Shan) [1939323]
+- KVM: arm64: Some fixes of PV-time interface document (Gavin Shan) [1939323]
+- KVM: arm64: CSSELR_EL1 max is 13 (Gavin Shan) [1939323]
+- idr test suite: Improve reporting from idr_find_test_1 (Chris von Recklinghausen) [1946304]
+- idr test suite: Create anchor before launching throbber (Chris von Recklinghausen) [1946304]
+- idr test suite: Take RCU read lock in idr_find_test_1 (Chris von Recklinghausen) [1946304]
+- radix tree test suite: Register the main thread with the RCU library (Chris von Recklinghausen) [1946304]
+- radix tree test suite: Fix compilation (Chris von Recklinghausen) [1946304]
+- XArray: Add xa_limit_16b (Chris von Recklinghausen) [1946304]
+- XArray: Fix splitting to non-zero orders (Chris von Recklinghausen) [1946304]
+- XArray: Fix split documentation (Chris von Recklinghausen) [1946304]
+- PCI/P2PDMA: Drop double zeroing for sg_init_table() (Myron Stowe) [1955693]
+- PCI: Simplify bool comparisons (Myron Stowe) [1955693]
+- PCI: endpoint: Use "NULL" instead of "0" as a NULL pointer (Myron Stowe) [1955693]
+- PCI: Simplify pci_dev_reset_slot_function() (Myron Stowe) [1955693]
+- PCI: Update mmap-related #ifdef comments (Myron Stowe) [1955693]
+- PCI/LINK: Print IRQ number used by port (Myron Stowe) [1955693]
+- PCI/IOV: Simplify pci-pf-stub with module_pci_driver() (Myron Stowe) [1955693]
+- PCI: Use scnprintf(), not snprintf(), in sysfs "show" functions (Myron Stowe) [1955693]
+- x86/PCI: Fix intel_mid_pci.c build error when ACPI is not enabled (Myron Stowe) [1955693]
+- PCI: Remove unnecessary header includes (Myron Stowe) [1955693]
+- PCI/PM: Revert "PCI/PM: Apply D2 delay as milliseconds, not microseconds" (Myron Stowe) [1955693]
+- PCI/PM: Remove unused PCI_PM_BUS_WAIT (Myron Stowe) [1955693]
+- PCI: shpchp: Remove unused 'rc' assignment (Myron Stowe) [1955693]
+- PCI: pciehp: Reduce noisiness on hot removal (Myron Stowe) [1955693 1812902]
+- PCI: rpadlpar: Use for_each_child_of_node() and for_each_node_by_name() (Myron Stowe) [1955693]
+- PCI: Add Kconfig options for MPS/MRRS strategy (Myron Stowe) [1955693]
+- PCI: Add schedule point in pci_read_config() (Myron Stowe) [1955693]
+- PCI/ASPM: Remove struct pcie_link_state.l1ss (Myron Stowe) [1955693]
+- PCI/ASPM: Remove struct aspm_register_info.l1ss_cap (Myron Stowe) [1955693]
+- PCI/ASPM: Pass L1SS Capabilities value, not struct aspm_register_info (Myron Stowe) [1955693]
+- PCI/ASPM: Remove struct aspm_register_info.l1ss_ctl1 (Myron Stowe) [1955693]
+- PCI/ASPM: Remove struct aspm_register_info.l1ss_ctl2 (unused) (Myron Stowe) [1955693]
+- PCI/ASPM: Remove struct aspm_register_info.l1ss_cap_ptr (Myron Stowe) [1955693]
+- PCI/ASPM: Remove struct aspm_register_info.latency_encoding (Myron Stowe) [1955693]
+- PCI/ASPM: Remove struct aspm_register_info.enabled (Myron Stowe) [1955693]
+- PCI/ASPM: Remove struct aspm_register_info.support (Myron Stowe) [1955693]
+- PCI/ASPM: Use 'parent' and 'child' for readability (Myron Stowe) [1955693]
+- PCI/ASPM: Move LTR path check to where it's used (Myron Stowe) [1955693]
+- PCI/ASPM: Move pci_clear_and_set_dword() earlier (Myron Stowe) [1955693]
+- PCI/ACS: Enable Translation Blocking for external devices (Myron Stowe) [1955693]
+- scsi: qedi: Remove redundant assignment to variable err (Nilesh Javali) [1920855]
+- scsi: qedi: Fix error return code of qedi_alloc_global_queues() (Nilesh Javali) [1920855]
+- scsi: qedi: Fix missing destroy_workqueue() on error in __qedi_probe (Nilesh Javali) [1920855]
+- scsi: qedf: Simplify bool comparison (Nilesh Javali) [1921608]
+- bpf, sockmap: Fix incorrect fwd_alloc accounting (Yauheni Kaliuta) [1874006]
+- bpf: Local storage helpers should check nullness of owner ptr passed (Yauheni Kaliuta) [1874006]
+- bpf, inode_storage: Put file handler if no storage was found (Yauheni Kaliuta) [1874006]
+- kbuild: explicitly specify the build id style (Yauheni Kaliuta) [1874006]
+- bpf: Reject too big ctx_size_in for raw_tp test run (Yauheni Kaliuta) [1874006]
+- bpf: Fix enum names for bpf_this_cpu_ptr() and bpf_per_cpu_ptr() helpers (Yauheni Kaliuta) [1874006]
+- bpf: Don't rely on GCC __attribute__((optimize)) to disable GCSE (Jiri Benc) [1874006]
+- bpf: Fix tests for local_storage (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix "dubious pointer arithmetic" test (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix array access with signed variable test (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add test for signed 32-bit bound check bug (Yauheni Kaliuta) [1874006]
+- bpf: Fix propagation of 32-bit signed bounds from 64-bit bounds. (Yauheni Kaliuta) [1874006]
+- lwt_bpf: Replace preempt_disable() with migrate_disable() (Yauheni Kaliuta) [1874006]
+- lwt: Disable BH too in run_lwt_bpf() (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Drain ringbuf samples at the end of test (Yauheni Kaliuta) [1874006]
+- libbpf: Fix ring_buffer__poll() to return number of consumed samples (Yauheni Kaliuta) [1874006]
+- bpf: Add MAINTAINERS entry for BPF LSM (Yauheni Kaliuta) [1874006]
+- bpftool: Fix error return value in build_btf_type_table (Yauheni Kaliuta) [1874006]
+- fail_function: Remove a redundant mutex unlock (Yauheni Kaliuta) [1874006]
+- selftest/bpf: Test bpf_probe_read_user_str() strips trailing bytes after NUL (Yauheni Kaliuta) [1874006]
+- lib/strncpy_from_user.c: Mask out bytes after NUL terminator. (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Avoid failures from skb_to_sgvec when skb has frag_list (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Handle memory acct if skb_verdict prog redirects to self (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Avoid returning unneeded EAGAIN when redirecting to self (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Use truesize with sk_rmem_schedule() (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Ensure SO_RCVBUF memory is observed on ingress redirect (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Fix partial copy_page_to_iter so progress can still be made (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix error return code in run_getsockopt_test() (Yauheni Kaliuta) [1874006]
+- bpf: Relax return code check for subprograms (Yauheni Kaliuta) [1874006]
+- tools, bpftool: Add missing close before bpftool net attach exit (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix unused attribute usage in subprogs_unused test (Yauheni Kaliuta) [1874006]
+- bpf: Fix unsigned 'datasec_id' compared with zero in check_pseudo_btf_id (Yauheni Kaliuta) [1874006]
+- bpf: Fix passing zero to PTR_ERR() in bpf_btf_printf_prepare (Yauheni Kaliuta) [1874006]
+- libbpf: Don't attempt to load unused subprog as an entry-point BPF program (Yauheni Kaliuta) [1874006]
+- bpf: Update verification logic for LSM programs (Yauheni Kaliuta) [1874006]
+- bpf: Zero-fill re-used per-cpu map element (Yauheni Kaliuta) [1874006]
+- bpf: BPF_PRELOAD depends on BPF_SYSCALL (Yauheni Kaliuta) [1874006]
+- libbpf: Fix possible use after free in xsk_socket__delete (Yauheni Kaliuta) [1874006]
+- libbpf: Fix null dereference in xsk_socket__delete (Yauheni Kaliuta) [1874006]
+- libbpf, hashmap: Fix undefined behavior in hash_bits (Yauheni Kaliuta) [1874006]
+- tools, bpftool: Remove two unused variables. (Yauheni Kaliuta) [1874006]
+- tools, bpftool: Avoid array index warnings. (Yauheni Kaliuta) [1874006]
+- bpf: Add struct bpf_redir_neigh forward declaration to BPF helper defs (Yauheni Kaliuta) [1874006]
+- bpf: Fix -Wshadow warnings (Yauheni Kaliuta) [1874006]
+- bpf, libbpf: Guard bpf inline asm from bpf_tail_call_static (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Ensure the return value of the bpf_per_cpu_ptr() must be checked (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Ensure the return value of bpf_skc_to helpers must be checked (Yauheni Kaliuta) [1874006]
+- bpf: Remove unneeded break (Yauheni Kaliuta) [1874006]
+- net, sockmap: Don't call bpf_prog_put() on NULL pointer (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Add locking annotations to iterator (Yauheni Kaliuta) [1874006]
+- bpf: Fix register equivalence tracking. (Yauheni Kaliuta) [1874006]
+- bpf, selftests: Add three new sockmap tests for verdict only programs (Yauheni Kaliuta) [1874006]
+- bpf, selftests: Add option to test_sockmap to omit adding parser program (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Allow skipping sk_skb parser program (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Check skb_verdict and skb_parser programs explicitly (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Add memory accounting so skbs on ingress lists are visible (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Remove skb_orphan and let normal skb_kfree do cleanup (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Remove dropped data on errors in redirect case (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Remove skb_set_owner_w wmem will be taken later from sendpage (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: On receive programs try to fast track SK_PASS ingress (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Skb verdict SK_PASS to self already checked rmem limits (Yauheni Kaliuta) [1874006]
+- bpf: Migrate from patchwork.ozlabs.org to patchwork.kernel.org. (Yauheni Kaliuta) [1874006]
+- samples: bpf: Refactor XDP kern program maps with BTF-defined map (Yauheni Kaliuta) [1874006]
+- samples: bpf: Replace attach_tracepoint() to attach() in xdp_redirect_cpu (Yauheni Kaliuta) [1874006]
+- samples: bpf: Refactor xdp_monitor with libbpf (Yauheni Kaliuta) [1874006]
+- bpf, selftests: Add test for different array inner map size (Yauheni Kaliuta) [1874006]
+- bpf: Allow for map-in-map with dynamic inner array map entries (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Asm tests for the verifier regalloc tracking. (Yauheni Kaliuta) [1874006]
+- bpf: Fix selftest compilation on clang 11 (Yauheni Kaliuta) [1874006]
+- selftest/bpf: Fix profiler test using CO-RE relocation for enums (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add profiler test (Yauheni Kaliuta) [1874006]
+- bpf: Track spill/fill of bounded scalars. (Yauheni Kaliuta) [1874006]
+- bpf: Propagate scalar ranges through register assignments. (Yauheni Kaliuta) [1874006]
+- bpf: Add tcp_notsent_lowat bpf setsockopt (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Validate libbpf's auto-sizing of LD/ST/STX instructions (Yauheni Kaliuta) [1874006]
+- libbpf: Allow specifying both ELF and raw BTF for CO-RE BTF override (Yauheni Kaliuta) [1874006]
+- libbpf: Support safe subset of load/store instruction resizing with CO-RE (Yauheni Kaliuta) [1874006]
+- libbpf: Skip CO-RE relocations for not loaded BPF programs (Yauheni Kaliuta) [1874006]
+- libbpf: Fix compatibility problem in xsk_socket__create (Yauheni Kaliuta) [1874006]
+- bpf: Fix typo in uapi/linux/bpf.h (Yauheni Kaliuta) [1874006]
+- bpf: Fix build failure for kernel/trace/bpf_trace.c with CONFIG_NET=n (Yauheni Kaliuta) [1874006]
+- kernel/bpf/verifier: Fix build when NET is not enabled (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix test_verifier after introducing resolve_pseudo_ldimm64 (Yauheni Kaliuta) [1874006]
+- samples: bpf: Driver interrupt statistics in xdpsock (Yauheni Kaliuta) [1874006]
+- samples: bpf: Count syscalls in xdpsock (Yauheni Kaliuta) [1874006]
+- samples: bpf: Split xdpsock stats into new struct (Yauheni Kaliuta) [1874006]
+- samples/bpf: Fix a compilation error with fallthrough marking (Yauheni Kaliuta) [1874006]
+- samples/bpf: Change Makefile to cope with latest llvm (Yauheni Kaliuta) [1874006]
+- bpf, libbpf: Use valid btf in bpf_program__set_attach_target (Yauheni Kaliuta) [1874006]
+- selftest/bpf: Test pinning map with reused map fd (Yauheni Kaliuta) [1874006]
+- libbpf: Check if pin_path was set even map fd exist (Yauheni Kaliuta) [1874006]
+- libbpf: Close map fd if init map slots failed (Yauheni Kaliuta) [1874006]
+- bpf: Use raw_spin_trylock() for pcpu_freelist_push/pop in NMI (Yauheni Kaliuta) [1874006]
+- bpf, verifier: Use fallthrough pseudo-keyword (Yauheni Kaliuta) [1874006]
+- bpf: Deref map in BPF_PROG_BIND_MAP when it's already used (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Update selftests to use skb_adjust_room (Yauheni Kaliuta) [1874006]
+- bpf, sockmap: Add skb_adjust_room to pop bytes off ingress payload (Yauheni Kaliuta) [1874006]
+- bpf/selftests: Test for bpf_per_cpu_ptr() and bpf_this_cpu_ptr() (Yauheni Kaliuta) [1874006]
+- bpf: Introducte bpf_this_cpu_ptr() (Yauheni Kaliuta) [1874006]
+- bpf: Introduce bpf_per_cpu_ptr() (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Ksyms_btf to test typed ksyms (Yauheni Kaliuta) [1874006]
+- bpf/libbpf: BTF support for typed ksyms (Yauheni Kaliuta) [1874006]
+- bpf: Introduce pseudo_btf_id (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Properly initialize linfo in sockmap_basic (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Initialize duration in xdp_noinline.c (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add tests for BPF_F_PRESERVE_ELEMS (Yauheni Kaliuta) [1874006]
+- bpf: Introduce BPF_F_PRESERVE_ELEMS for perf event array (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix alignment of .BTF_ids (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Test "incremental" btf_dump in C format (Yauheni Kaliuta) [1874006]
+- libbpf: Make btf_dump work with modifiable BTF (Yauheni Kaliuta) [1874006]
+- bpf, selftests: Use bpf_tail_call_static where appropriate (Yauheni Kaliuta) [1874006]
+- bpf, libbpf: Add bpf_tail_call_static helper for bpf programs (Yauheni Kaliuta) [1874006]
+- bpf, net: Rework cookie generator as per-cpu one (Yauheni Kaliuta) [1874006]
+- bpf: Add classid helper only based on skb->sk (Yauheni Kaliuta) [1874006]
+- bpf: fix raw_tp test run in preempt kernel (Yauheni Kaliuta) [1874006]
+- libbpf: Compile in PIC mode only for shared library case (Yauheni Kaliuta) [1874006]
+- libbpf: Compile libbpf under -O2 level by default and catch extra warnings (Yauheni Kaliuta) [1874006]
+- bpf: x64: Do not emit sub/add 0, rsp when !stack_depth (Yauheni Kaliuta) [1874006]
+- bpf, x64: Drop "pop rcx" instruction on BPF JIT epilogue (Yauheni Kaliuta) [1874006]
+- bpf, selftests: Fix warning in snprintf_btf where system() call unchecked (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Test BTF's handling of endianness (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Move and extend ASSERT_xxx() testing macros (Yauheni Kaliuta) [1874006]
+- selftests: Make sure all 'skel' variables are declared static (Yauheni Kaliuta) [1874006]
+- selftests/bpf_iter: Don't fail test due to missing __builtin_btf_type_id (Yauheni Kaliuta) [1874006]
+- bpf/preload: Make sure Makefile cleans up after itself, and add .gitignore (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Ensure snprintf_btf/bpf_iter tests compatibility with old vmlinux.h (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix unused-result warning in snprintf_btf.c (Yauheni Kaliuta) [1874006]
+- bpf, selftests: Fix cast to smaller integer type 'int' warning in raw_tp (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add test for bpf_seq_printf_btf helper (Yauheni Kaliuta) [1874006]
+- bpf: Add bpf_seq_printf_btf helper (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix overflow tests to reflect iter size increase (Yauheni Kaliuta) [1874006]
+- bpf: Bump iter seq size to support BTF representation of large data structures (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add bpf_snprintf_btf helper tests (Yauheni Kaliuta) [1874006]
+- bpf: Add bpf_snprintf_btf helper (Yauheni Kaliuta) [1874006]
+- bpf: Move to generic BTF show support, apply it to seq files/strings (Yauheni Kaliuta) [1874006]
+- bpf: Provide function to get vmlinux BTF information (Yauheni Kaliuta) [1874006]
+- selftest: bpf: Test copying a sockmap and sockhash (Yauheni Kaliuta) [1874006]
+- selftests: bpf: Remove shared header from sockmap iter test (Yauheni Kaliuta) [1874006]
+- selftests: bpf: Add helper to compare socket cookies (Yauheni Kaliuta) [1874006]
+- bpf: sockmap: Enable map_update_elem from bpf_iter (Yauheni Kaliuta) [1874006]
+- bpf, cpumap: Remove rcpu pointer from cpu_map_build_skb signature (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add raw_tp_test_run (Yauheni Kaliuta) [1874006]
+- libbpf: Support test run of raw tracepoint programs (Yauheni Kaliuta) [1874006]
+- bpf: Enable BPF_PROG_TEST_RUN for raw_tracepoint (Yauheni Kaliuta) [1874006]
+- bpf: Add comment to document BTF type PTR_TO_BTF_ID_OR_NULL (Yauheni Kaliuta) [1874006]
+- bpf: Add AND verifier test case where 32bit and 64bit bounds differ (Yauheni Kaliuta) [1874006]
+- bpf, verifier: Remove redundant var_off.value ops in scalar known reg cases (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Add test_btf_skc_cls_ingress (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Remove enum tcp_ca_state from bpf_tcp_helpers.h (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Use bpf_skc_to_tcp_sock() in the sock_fields test (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Use network_helpers in the sock_fields test (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Adapt sock_fields test to use skel and global variables (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Move sock_fields test into test_progs (Yauheni Kaliuta) [1874006]
+- bpf: selftest: Add ref_tracking verifier test for bpf_skc casting (Yauheni Kaliuta) [1874006]
+- bpf: Change bpf_sk_assign to accept ARG_PTR_TO_BTF_ID_SOCK_COMMON (Yauheni Kaliuta) [1874006]
+- bpf: Change bpf_tcp_*_syncookie to accept ARG_PTR_TO_BTF_ID_SOCK_COMMON (Yauheni Kaliuta) [1874006]
+- bpf: Change bpf_sk_storage_*() to accept ARG_PTR_TO_BTF_ID_SOCK_COMMON (Yauheni Kaliuta) [1874006]
+- bpf: Change bpf_sk_release and bpf_sk_*cgroup_id to accept ARG_PTR_TO_BTF_ID_SOCK_COMMON (Yauheni Kaliuta) [1874006]
+- bpf: Enable bpf_skc_to_* sock casting helper to networking prog type (Yauheni Kaliuta) [1874006]
+- bpf: Move the PTR_TO_BTF_ID check to check_reg_type() (Yauheni Kaliuta) [1874006]
+- Revert "bpf: Fix potential call bpf_link_free() in atomic context" (Yauheni Kaliuta) [1874006]
+- tools resolve_btfids: Always force HOSTARCH (Yauheni Kaliuta) [1874006]
+- bpf: Check CONFIG_BPF option for resolve_btfids (Yauheni Kaliuta) [1874006]
+- bpf: Explicitly size compatible_reg_types (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix stat probe in d_path test (Yauheni Kaliuta) [1874006]
+- bpf: Using rcu_read_lock for bpf_sk_storage_map iterator (Yauheni Kaliuta) [1874006]
+- bpf: Use a table to drive helper arg type checks (Yauheni Kaliuta) [1874006]
+- bpf: Hoist type checking for nullable arg types (Yauheni Kaliuta) [1874006]
+- bpf: Check ARG_PTR_TO_SPINLOCK register type in check_func_arg (Yauheni Kaliuta) [1874006]
+- bpf: Set meta->raw_mode for pointers close to use (Yauheni Kaliuta) [1874006]
+- bpf: Make context access check generic (Yauheni Kaliuta) [1874006]
+- bpf: Make reference tracking generic (Yauheni Kaliuta) [1874006]
+- bpf: Make BTF pointer type checking generic (Yauheni Kaliuta) [1874006]
+- bpf: Allow specifying a BTF ID per argument in function protos (Yauheni Kaliuta) [1874006]
+- btf: Add BTF_ID_LIST_SINGLE macro (Yauheni Kaliuta) [1874006]
+- bpf: Check scalar or invalid register in check_helper_mem_access (Yauheni Kaliuta) [1874006]
+- btf: Make btf_set_contains take a const pointer (Yauheni Kaliuta) [1874006]
+- bpf: Fix potential call bpf_link_free() in atomic context (Yauheni Kaliuta) [1874006]
+- bpf: Use hlist_add_head_rcu when linking to local_storage (Yauheni Kaliuta) [1874006]
+- samples/bpf: Fix test_map_in_map on s390 (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix endianness issue in test_sockopt_sk (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix endianness issue in sk_assign (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add tailcall_bpf2bpf tests (Yauheni Kaliuta) [1874006]
+- bpf: Add abnormal return checks. (Yauheni Kaliuta) [1874006]
+- bpf: allow for tailcalls in BPF subprograms for x64 JIT (Yauheni Kaliuta) [1874006]
+- bpf, x64: rework pro/epilogue and tailcall handling in JIT (Yauheni Kaliuta) [1874006]
+- bpf: Limit caller's stack depth 256 for subprogs with tailcalls (Yauheni Kaliuta) [1874006]
+- bpf: rename poke descriptor's 'ip' member to 'tailcall_target' (Yauheni Kaliuta) [1874006]
+- bpf: propagate poke descriptors to subprograms (Yauheni Kaliuta) [1874006]
+- bpf, x64: use rcx instead of rax for tail call retpolines (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Merge most of test_btf into test_progs (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Test load and dump metadata with btftool and skel (Yauheni Kaliuta) [1874006]
+- bpftool: Support dumping metadata (Yauheni Kaliuta) [1874006]
+- libbpf: Add BPF_PROG_BIND_MAP syscall and use it on .rodata section (Yauheni Kaliuta) [1874006]
+- bpf: Add BPF_PROG_BIND_MAP syscall (Yauheni Kaliuta) [1874006]
+- bpf: Mutex protect used_maps array and count (Yauheni Kaliuta) [1874006]
+- libbpf: Fix a compilation error with xsk.c for ubuntu 16.04 (Yauheni Kaliuta) [1874006]
+- samples/bpf: Add quiet option to xdpsock (Yauheni Kaliuta) [1874006]
+- samples: bpf: Add an option for printing extra statistics in xdpsock (Yauheni Kaliuta) [1874006]
+- samples/bpf: Fix possible deadlock in xdpsock (Yauheni Kaliuta) [1874006]
+- samples/bpf: Fix one packet sending in xdpsock (Yauheni Kaliuta) [1874006]
+- s390/bpf: Fix multiple tail calls (Yauheni Kaliuta) [1874006]
+- tcp: Simplify tcp_set_congestion_control() load=false case (Yauheni Kaliuta) [1874006]
+- tcp: simplify _bpf_setsockopt(): Remove flags argument (Yauheni Kaliuta) [1874006]
+- tcp: simplify tcp_set_congestion_control(): Always reinitialize (Yauheni Kaliuta) [1874006]
+- tcp: Simplify EBPF TCP_CONGESTION to always init CC (Yauheni Kaliuta) [1874006]
+- bpftool: Fix build failure (Yauheni Kaliuta) [1874006]
+- tools: bpftool: Automate generation for "SEE ALSO" sections in man pages (Yauheni Kaliuta) [1874006]
+- bpf: Fix comment for helper bpf_current_task_under_cgroup() (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Define string const as global for test_sysctl_prog.c (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix test_ksyms on non-SMP kernels (Yauheni Kaliuta) [1874006]
+- tools: bpftool: Add "inner_map" to "bpftool map create" outer maps (Yauheni Kaliuta) [1874006]
+- tools: bpftool: Keep errors for map-of-map dumps if distinct from ENOENT (Yauheni Kaliuta) [1874006]
+- tools: bpftool: Clean up function to dump map entry (Yauheni Kaliuta) [1874006]
+- selftests: bpf: Test iterating a sockmap (Yauheni Kaliuta) [1874006]
+- net: Allow iterating sockmap and sockhash (Yauheni Kaliuta) [1874006]
+- net: sockmap: Remove unnecessary sk_fullsock checks (Yauheni Kaliuta) [1874006]
+- tools: bpftool: Include common options from separate file (Yauheni Kaliuta) [1874006]
+- tools: bpftool: Print optional built-in features along with version (Yauheni Kaliuta) [1874006]
+- selftests, bpftool: Add bpftool (and eBPF helpers) documentation build (Yauheni Kaliuta) [1874006]
+- tools: bpftool: Log info-level messages when building bpftool man pages (Yauheni Kaliuta) [1874006]
+- bpf: Remove duplicate headers (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix test_sysctl_loop{1, 2} failure due to clang change (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add test for map_ptr arithmetic (Yauheni Kaliuta) [1874006]
+- bpf: Permit map_ptr arithmetic with opcode add and offset 0 (Yauheni Kaliuta) [1874006]
+- tools, bpf: Synchronise BPF UAPI header with tools (Yauheni Kaliuta) [1874006]
+- bpf: Fix formatting in documentation for BPF helpers (Yauheni Kaliuta) [1874006]
+- tools: bpftool: Fix formatting in bpftool-link documentation (Yauheni Kaliuta) [1874006]
+- samples, bpf: Add xsk_fwd test file to .gitignore (Yauheni Kaliuta) [1874006]
+- samples, bpf: Replace bpf_program__title() with bpf_program__section_name() (Yauheni Kaliuta) [1874006]
+- libbpf: Fix potential multiplication overflow (Yauheni Kaliuta) [1874006]
+- libbpf: Fix another __u64 cast in printf (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix check in global_data_init. (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add __noinline variant of cls_redirect selftest (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Modernize xdp_noinline test w/ skeleton and __noinline (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add subprogs to pyperf, strobemeta, and l4lb_noinline tests (Yauheni Kaliuta) [1874006]
+- tools/bpftool: Replace bpf_program__title() with bpf_program__section_name() (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Don't use deprecated libbpf APIs (Yauheni Kaliuta) [1874006]
+- libbpf: Deprecate notion of BPF program "title" in favor of "section name" (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add selftest for multi-prog sections and bpf-to-bpf calls (Yauheni Kaliuta) [1874006]
+- libbpf: Add multi-prog section support for struct_ops (Yauheni Kaliuta) [1874006]
+- libbpf: Implement generalized .BTF.ext func/line info adjustment (Yauheni Kaliuta) [1874006]
+- libbpf: Make RELO_CALL work for multi-prog sections and sub-program calls (Yauheni Kaliuta) [1874006]
+- libbpf: Support CO-RE relocations for multi-prog sections (Yauheni Kaliuta) [1874006]
+- libbpf: Parse multi-function sections into multiple BPF programs (Yauheni Kaliuta) [1874006]
+- libbpf: Ensure ELF symbols table is found before further ELF processing (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Test task_file iterator without visiting pthreads (Yauheni Kaliuta) [1874006]
+- bpf: Avoid iterating duplicated files for task_file iterator (Yauheni Kaliuta) [1874006]
+- bpf: {cpu,dev}map: Change various functions return type from int to void (Yauheni Kaliuta) [1874006]
+- module: Fix up module_notifier return values (Yauheni Kaliuta) [1874006]
+- bpf: Remove bpf_lsm_file_mprotect from sleepable list. (Yauheni Kaliuta) [1874006]
+- samples/bpf: Fix to xdpsock to avoid recycling frames (Yauheni Kaliuta) [1874006]
+- samples/bpf: Optimize l2fwd performance in xdpsock (Yauheni Kaliuta) [1874006]
+- samples/bpf: Add new sample xsk_fwd.c (Yauheni Kaliuta) [1874006]
+- libbpf: Support shared umems between queues and devices (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add sleepable tests (Yauheni Kaliuta) [1874006]
+- libbpf: Support sleepable progs (Yauheni Kaliuta) [1874006]
+- bpf: Add bpf_copy_from_user() helper. (Yauheni Kaliuta) [1874006]
+- bpf: Fix build without BPF_LSM. (Yauheni Kaliuta) [1874006]
+- bpf: Introduce sleepable BPF programs (Yauheni Kaliuta) [1874006]
+- mm/error_inject: Fix allow_error_inject function signatures. (Yauheni Kaliuta) [1874006]
+- mm/filemap.c: enable error injection at add_to_page_cache() (Yauheni Kaliuta) [1874006]
+- mm/page_alloc.c: allow error injection (Yauheni Kaliuta) [1874006]
+- bpf: selftests: Add test for different inner map size (Yauheni Kaliuta) [1874006]
+- bpf: Relax max_entries check for most of the inner map types (Yauheni Kaliuta) [1874006]
+- bpf: Add map_meta_equal map ops (Yauheni Kaliuta) [1874006]
+- bpf: Make bpf_link_info.iter similar to bpf_iter_link_info (Yauheni Kaliuta) [1874006]
+- tools, bpf/build: Cleanup feature files on make clean (Yauheni Kaliuta) [1874006]
+- libbpf: Fix compilation warnings for 64-bit printf args (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add verifier tests for xor operation (Yauheni Kaliuta) [1874006]
+- libbpf: Fix unintentional success return code in bpf_object__load (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix spelling mistake "scoket" -> "socket" (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix open call in trigger_fstat_events (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add set test to resolve_btfids (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add test for d_path helper (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add verifier test for d_path helper (Yauheni Kaliuta) [1874006]
+- bpf: Update .BTF_ids section in btf.rst with sets info (Yauheni Kaliuta) [1874006]
+- bpf: Add d_path helper (Yauheni Kaliuta) [1874006]
+- bpf: Add BTF_SET_START/END macros (Yauheni Kaliuta) [1874006]
+- bpf: Add btf_struct_ids_match function (Yauheni Kaliuta) [1874006]
+- bpf: Factor btf_struct_access function (Yauheni Kaliuta) [1874006]
+- bpf: Remove recursion call in btf_struct_access (Yauheni Kaliuta) [1874006]
+- bpf: Add type_id pointer as argument to __btf_resolve_size (Yauheni Kaliuta) [1874006]
+- bpf: Add elem_id pointer as argument to __btf_resolve_size (Yauheni Kaliuta) [1874006]
+- bpf: Move btf_resolve_size into __btf_resolve_size (Yauheni Kaliuta) [1874006]
+- tools resolve_btfids: Add support for set symbols (Yauheni Kaliuta) [1874006]
+- tools resolve_btfids: Add size check to get_id function (Yauheni Kaliuta) [1874006]
+- bpf: Disallow BPF_PRELOAD in allmodconfig builds (Yauheni Kaliuta) [1874006]
+- bpf: Add selftests for local_storage (Yauheni Kaliuta) [1874006]
+- bpf: Allow local storage to be used from LSM programs (Yauheni Kaliuta) [1874006]
+- bpf: Implement bpf_local_storage for inodes (Yauheni Kaliuta) [1874006]
+- bpf: Split bpf_local_storage to bpf_sk_storage (Yauheni Kaliuta) [1874006]
+- bpf: Generalize bpf_sk_storage (Yauheni Kaliuta) [1874006]
+- bpf: Generalize caching for sk_storage. (Yauheni Kaliuta) [1874006]
+- bpf: Renames in preparation for bpf_local_storage (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Enable tc verbose mode for test_sk_assign (Yauheni Kaliuta) [1874006]
+- samples: bpf: Refactor tracepoint tracing programs with libbpf (Yauheni Kaliuta) [1874006]
+- samples: bpf: Refactor kprobe tracing programs with libbpf (Yauheni Kaliuta) [1874006]
+- selftests: bpf: Fix sockmap update nits (Yauheni Kaliuta) [1874006]
+- libbpf: Fix type compatibility check copy-paste error (Yauheni Kaliuta) [1874006]
+- libbpf: Avoid false unuinitialized variable warning in bpf_core_apply_relo (Yauheni Kaliuta) [1874006]
+- bpf: sk_lookup: Add user documentation (Yauheni Kaliuta) [1874006]
+- docs: Correct subject prefix and update LLVM info (Yauheni Kaliuta) [1874006]
+- libbpf: Normalize and improve logging across few functions (Yauheni Kaliuta) [1874006]
+- libbpf: Skip well-known ELF sections when iterating ELF (Yauheni Kaliuta) [1874006]
+- libbpf: Add __noinline macro to bpf_helpers.h (Yauheni Kaliuta) [1874006]
+- libbpf: Factor out common ELF operations and improve logging (Yauheni Kaliuta) [1874006]
+- libbpf: Add perf_buffer APIs for better integration with outside epoll loop (Yauheni Kaliuta) [1874006]
+- bpftool: Implement link_query for bpf iterators (Yauheni Kaliuta) [1874006]
+- bpf: Implement link_query callbacks in map element iterators (Yauheni Kaliuta) [1874006]
+- bpf: Implement link_query for bpf iterators (Yauheni Kaliuta) [1874006]
+- selftests/bpf: List newest Clang built-ins needed for some CO-RE selftests (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Fix two minor compilation warnings reported by GCC 4.9 (Yauheni Kaliuta) [1874006]
+- libbpf: Fix libbpf build on compilers missing __builtin_mul_overflow (Yauheni Kaliuta) [1874006]
+- libbpf: Fix detection of BPF helper call instruction (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add bpffs preload test. (Yauheni Kaliuta) [1874006]
+- bpf: Add kernel module with user mode driver that populates bpffs. (Yauheni Kaliuta) [1874006]
+- bpf: Add BPF program and map iterators as built-in BPF programs. (Yauheni Kaliuta) [1874006]
+- bpf: Factor out bpf_link_by_id() helper. (Yauheni Kaliuta) [1874006]
+- libbpf: Simplify the return expression of build_map_pin_path() (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add tests for ENUMVAL_EXISTS/ENUMVAL_VALUE relocations (Yauheni Kaliuta) [1874006]
+- libbpf: Implement enum value-based CO-RE relocations (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add CO-RE relo test for TYPE_ID_LOCAL/TYPE_ID_TARGET (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Test TYPE_EXISTS and TYPE_SIZE CO-RE relocations (Yauheni Kaliuta) [1874006]
+- libbpf: Implement type-based CO-RE relocations support (Yauheni Kaliuta) [1874006]
+- libbpf: Centralize poisoning and poison reallocarray() (Yauheni Kaliuta) [1874006]
+- tools/bpftool: Remove libbpf_internal.h usage in bpftool (Yauheni Kaliuta) [1874006]
+- selftests/bpf: Add test validating failure on ambiguous relocation value (Yauheni Kaliuta) [1874006]
+- libbpf: Improve relocation ambiguity detection (Yauheni Kaliuta) [1874006]
+- libbpf: Detect minimal BTF support and skip BTF loading, if missing (Yauheni Kaliuta) [1874006]
+- libbpf: Sanitize BPF program code for bpf_probe_read_{kernel, user}[_str] (Yauheni Kaliuta) [1874006]
+- libbpf: Factor out common logic of testing and closing FD (Yauheni Kaliuta) [1874006]
+- libbpf: Make kernel feature probing lazy (Yauheni Kaliuta) [1874006]
+- libbpf: Disable -Wswitch-enum compiler warning (Yauheni Kaliuta) [1874006]
+- libbpf: Convert comma to semicolon (Yauheni Kaliuta) [1874006]
+- samples: bpf: Fix broken bpf programs due to removed symbol (Yauheni Kaliuta) [1874006]
+- bpf: Replace GPLv2 boilerplate/reference with SPDX - rule 206 (Jiri Benc) [1874006]
+- LSM: Make some functions static (Yauheni Kaliuta) [1874006]
+- LSM: Make lsm_early_cred() and lsm_early_task() local functions. (Yauheni Kaliuta) [1874006]
+- LSM: Infrastructure management of the ipc security blob (Yauheni Kaliuta) [1874006]
+- LSM: Infrastructure management of the task security (Yauheni Kaliuta) [1874006]
+- LSM: Infrastructure management of the inode security (Yauheni Kaliuta) [1874006]
+- LSM: Infrastructure management of the file security (Yauheni Kaliuta) [1874006]
+- Infrastructure management of the cred security blob (Yauheni Kaliuta) [1874006]
+- kernel: move CONFIG_TASKS_TRACE_RCU fields to task_struct_rh (Jiri Benc) [1874006]
+- kernel: store pointer to task_struct in task_struct_rh (Jiri Benc) [1874006]
+
+* Wed Jun 02 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-311.el8]
+- igb: Add double-check MTA_REGISTER for i210 and i211 (Corinna Vinschen) [1920286]
+- igb: Redistribute memory for transmit packet buffers when in Qav mode (Corinna Vinschen) [1920286]
+- igb: Fix fall-through warnings for Clang (Corinna Vinschen) [1920286]
+- intel: clean up mismatched header comments (Corinna Vinschen) [1920286]
+- igb: check timestamp validity (Corinna Vinschen) [1920286]
+- igb: Fix duplicate include guard (Corinna Vinschen) [1920286]
+- intel: Update drivers to use ethtool_sprintf (Corinna Vinschen) [1920286]
+- net: ethernet: intel: igb: Typo fix in the file igb_main.c (Corinna Vinschen) [1920286]
+- igb: avoid premature Rx buffer reuse (Corinna Vinschen) [1920286]
+- igb: remove h from printk format specifier (Corinna Vinschen) [1920286]
+- igb: Enable RSS for Intel I211 Ethernet Controller (Corinna Vinschen) [1920286]
+- igb: fix TDBAL register show incorrect value (Corinna Vinschen) [1920286]
+- net: igb: use skb_csum_is_sctp instead of protocol check (Corinna Vinschen) [1920286]
+- igb: avoid transmit queue timeout in xdp path (Corinna Vinschen) [1920286]
+- igb: use xdp_do_flush (Corinna Vinschen) [1920286]
+- igb: skb add metasize for xdp (Corinna Vinschen) [1920286]
+- igb: XDP extack message on error (Corinna Vinschen) [1920286]
+- igb: take VLAN double header into account (Corinna Vinschen) [1920286]
+- igb: XDP xmit back fix error code (Corinna Vinschen) [1920286]
+- igb: add XDP support (Corinna Vinschen) [1920286]
+- r8169: don't advertise pause in jumbo mode (Josef Oskera) [1935346]
+- r8169: fix DMA being used after buffer free if WoL is enabled (Josef Oskera) [1935346]
+- r8169: fix r8168fp_adjust_ocp_cmd function (Josef Oskera) [1935346]
+- r8169: use macro pm_ptr (Josef Oskera) [1935346]
+- r8169: fix resuming from suspend on RTL8105e if machine runs on battery (Josef Oskera) [1935346]
+- r8169: handle tx before rx in napi poll (Josef Oskera) [1935346]
+- r8169: disable detection of bogus xid's 308/388 (Josef Oskera) [1935346]
+- r8169: re-configure WOL settings on resume from hibernation (Josef Oskera) [1935346]
+- r8169: don't try to disable interrupts if NAPI is scheduled already (Josef Oskera) [1935346]
+- r8169: Add support for another RTL8168FP (Josef Oskera) [1935346]
+- r8169: fix WoL on shutdown if CONFIG_DEBUG_SHIRQ is set (Josef Oskera) [1935346]
+- r8169: work around RTL8125 UDP hw bug (Josef Oskera) [1935346]
+- r8169: remove not needed call to rtl_wol_enable_rx from rtl_shutdown (Josef Oskera) [1935346]
+- r8169: improve DASH support (Josef Oskera) [1935346]
+- r8169: improve rtl8169_rx_csum (Josef Oskera) [1935346]
+- r8169: align rtl_wol_suspend_quirk with vendor driver and rename it (Josef Oskera) [1935346]
+- r8169: clean up rtl_pll_power_down/up functions (Josef Oskera) [1935346]
+- r8169: improve handling D3 PLL power-down (Josef Oskera) [1935346]
+- r8169: enable PLL power-down for chip versions 34, 35, 36, 42 (Josef Oskera) [1935346]
+- r8169: make use of the unaligned access helpers (Josef Oskera) [1935346]
+- r8169: tweak max read request size for newer chips also in jumbo mtu mode (Josef Oskera) [1935346]
+- r8169: align RTL8168e jumbo pcie read request size with vendor driver (Josef Oskera) [1935346]
+- r8169: don't wakeup-enable device on shutdown if WOL is disabled (Josef Oskera) [1935346]
+- r8169: improve rtl_ocp_reg_failure (Josef Oskera) [1935346]
+- r8169: replace BUG_ON with WARN in _rtl_eri_write (Josef Oskera) [1935346]
+- r8169: improve RTL8168g PHY suspend quirk (Josef Oskera) [1935346]
+- r8169: move ERI access functions to avoid forward declaration (Josef Oskera) [1935346]
+- r8169: work around power-saving bug on some chip versions (Josef Oskera) [1935346]
+- r8169: make NUM_RX_DESC a signed int (Josef Oskera) [1935346]
+- r8169: improve rtl_rx (Josef Oskera) [1935346]
+- r8169: set tc_offset only if tally counter reset isn't supported (Josef Oskera) [1935346]
+- net: phy: realtek: read actual speed on rtl8211f to detect downshift (Josef Oskera) [1935346]
+- r8169: use dev_err_probe in rtl_get_ether_clk (Josef Oskera) [1935346]
+- r8169: reduce number of workaround doorbell rings (Josef Oskera) [1935346]
+- r8169: remove not needed check in rtl8169_start_xmit (Josef Oskera) [1935346]
+- r8169: remove nr_frags argument from rtl_tx_slots_avail (Josef Oskera) [1935346]
+- r8169: improve rtl8169_start_xmit (Josef Oskera) [1935346]
+- r8169: improve rtl_tx (Josef Oskera) [1935346]
+- r8169: use READ_ONCE in rtl_tx_slots_avail (Josef Oskera) [1935346]
+- net: phy: realtek: support paged operations on RTL8201CP (Josef Oskera) [1935346]
+- r8169: disable hw csum for short packets on all chip versions (Josef Oskera) [1935346]
+- r8169: fix potential skb double free in an error path (Josef Oskera) [1935346]
+- r8169: work around short packet hw bug on RTL8125 (Josef Oskera) [1935346]
+- net: phy: realtek: Add support for RTL8221B-CG series (Josef Oskera) [1935346]
+- r8169: set IRQF_NO_THREAD if MSI(X) is enabled (Josef Oskera) [1935346]
+- r8169: align number of tx descriptors with vendor driver (Josef Oskera) [1935346]
+- r8169: use pm_runtime_put_sync in rtl_open error path (Josef Oskera) [1935346]
+- r8169: remove unneeded memory barrier in rtl_tx (Josef Oskera) [1935346]
+- r8169: remove no longer needed private rx/tx packet/byte counters (Josef Oskera) [1935346]
+- r8169: use struct pcpu_sw_netstats for rx/tx packet/byte counters (Josef Oskera) [1935346]
+- treewide: Use fallthrough pseudo-keyword (Josef Oskera) [1935346]
+- r8169: fix jumbo packet handling on RTL8168e (Josef Oskera) [1915314]
+- sctp: delay auto_asconf init until binding the first addr (Xin Long) [1952020]
+- netfilter: x_tables: fix compat match/target pad out-of-bound write (Florian Westphal) [1950014]
+- netfilter: arp_tables: add pre_exit hook for table unregister (Florian Westphal) [1950014]
+- netfilter: bridge: add pre_exit hooks for ebtable unregistration (Florian Westphal) [1950014]
+- netfilter: nft_limit: avoid possible divide error in nft_limit_init (Florian Westphal) [1950014]
+- netfilter: conntrack: do not print icmpv6 as unknown via /proc (Florian Westphal) [1950014]
+- netfilter: flowtable: fix NAT IPv6 offload mangling (Florian Westphal) [1950014]
+- netfilter: flowtable: Make sure GC works periodically in idle system (Florian Westphal) [1950014]
+- netfilter: nftables: report EOPNOTSUPP on unsupported flowtable flags (Florian Westphal) [1950014]
+- netfilter: ctnetlink: fix dump of the expect mask attribute (Florian Westphal) [1950014]
+- netfilter: x_tables: gpf inside xt_find_revision() (Florian Westphal) [1950014]
+- netfilter: conntrack: skip identical origin tuple in same zone only (Florian Westphal) [1950014]
+- flow_dissector: fix byteorder of dissected ICMP ID (Paolo Abeni) [1950288]
+- flow_dissector: fix TTL and TOS dissection on IPv4 fragments (Paolo Abeni) [1950288]
+- net: Disable NETIF_F_HW_TLS_RX when RXCSUM is disabled (Paolo Abeni) [1950288]
+- net: core: devlink: use right genl user_ptr when handling port param get/set (Paolo Abeni) [1950288]
+- net_sched: gen_estimator: support large ewma log (Paolo Abeni) [1950288]
+- net: Allow NETIF_F_HW_TLS_TX if IP_CSUM && IPV6_CSUM (Paolo Abeni) [1950288]
+- net: Disable NETIF_F_HW_TLS_TX when HW_CSUM is disabled (Paolo Abeni) [1950288]
+- devlink: Add devlink port documentation (Petr Oros) [1935708]
+- devlink: Support get and set state of port function (Petr Oros) [1935708]
+- devlink: Support add and delete devlink port (Petr Oros) [1935708]
+- devlink: Introduce PCI SF port flavour and port attribute (Petr Oros) [1935708]
+- devlink: Prepare code to fill multiple port function attributes (Petr Oros) [1935708]
+- net: core: devlink: simplify the return expression of devlink_nl_cmd_trap_set_doit() (Petr Oros) [1935708]
+- video: hyperv_fb: Add ratelimit on error message (Mohammed Gamal) [1957804]
+- ovl: allow upperdir inside lowerdir (Miklos Szeredi) [1903647]
+- i2c: i801: Add support for Intel Alder Lake PCH-P (Steve Best) [1929488]
+- pinctrl: tigerlake: Add Alder Lake-P ACPI ID (Steve Best) [1929492]
+- xfs: set aside allocation btree blocks from block reservation (Brian Foster) [1911738]
+- xfs: introduce in-core global counter of allocbt blocks (Brian Foster) [1911738]
+- xfs: unconditionally read all AGFs on mounts with perag reservation (Brian Foster) [1911738]
+- xfs: drop unnecessary setfilesize helper (Brian Foster) [1942348]
+- xfs: drop unused ioend private merge and setfilesize code (Brian Foster) [1942348]
+- xfs: open code ioend needs workqueue helper (Brian Foster) [1942348]
+- xfs: drop submit side trans alloc for append ioends (Brian Foster) [1942348]
+- blk-mq: Use request queue-wide tags for tagset-wide sbitmap (Ming Lei) [1932145]
+- blk-mq: Some tag allocation code refactoring (Ming Lei) [1932145]
+- blk-mq: Swap two calls in blk_mq_exit_queue() (Ming Lei) [1932145]
+- blk-mq: plug request for shared sbitmap (Ming Lei) [1932145]
+- blk-mq: set default elevator as deadline in case of hctx shared tagset (Ming Lei) [1932145]
+- powerpc/perf: Fix PMU constraint check for EBB events (Diego Domingos) [1926573]
+- s390/idle: fix suspicious RCU usage (Waiman Long) [1963142]
+- x86/cpu: Add another Alder Lake CPU to the Intel family (Steve Best) [1962033]
+- x86/split_lock: Don't write MSR_TEST_CTRL on CPUs that aren't whitelisted (Prarit Bhargava) [1837350]
+- Documentation/admin-guide: Change doc for split_lock_detect parameter (Prarit Bhargava) [1837350]
+- x86/traps: Handle #DB for bus lock (Prarit Bhargava) [1837350]
+- x86/cpufeatures: Enumerate #DB for bus lock detection (Prarit Bhargava) [1837350]
+- x86/split_lock: Enable the split lock feature on another Alder Lake CPU (Prarit Bhargava) [1925373]
+- x86/cpu: Add another Alder Lake CPU to the Intel family (Prarit Bhargava) [1925373]
+- x86/split_lock: Enable the split lock feature on Sapphire Rapids and Alder Lake CPUs (Prarit Bhargava) [1925373]
+
+* Thu May 27 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-310.el8]
+- libbpf: Add user-space variants of BPF_CORE_READ() family of macros (Jiri Olsa) [1896362]
+- libbpf: Switch tracing and CO-RE helper macros to bpf_probe_read_kernel() (Jiri Olsa) [1896362]
+- selftests/bpf: Fix test_vmlinux test to use bpf_probe_read_user() (Jiri Olsa) [1896362]
+- samples/bpf, selftests/bpf: Use bpf_probe_read_kernel (Jiri Olsa) [1896362]
+- bpf: Restrict bpf_probe_read{, str}() only to archs where they work (Jiri Olsa) [1896362]
+- perf/x86/intel/uncore: Add Rocket Lake support (Michael Petlan) [1837502]
+- perf/x86/cstate: Add Rocket Lake CPU support (Michael Petlan) [1837497]
+- perf/x86/intel: Add Rocket Lake CPU support (Michael Petlan) [1837497]
+- perf/x86/msr: Add Rocket Lake CPU support (Michael Petlan) [1837497]
+- tick/nohz: Kick only _queued_ task whose tick dependency is updated (Waiman Long) [1922901]
+- tick/nohz: Change signal tick dependency to wake up CPUs of member tasks (Waiman Long) [1922901]
+- tick/nohz: Only wake up a single target cpu when kicking a task (Waiman Long) [1922901]
+- tick/nohz: Narrow down noise while setting current task's tick dependency (Waiman Long) [1922901]
+- sched/fair: Fix shift-out-of-bounds in load_balance() (Phil Auld) [1958730]
+- redhat/configs: Update torture test configs (Waiman Long) [1941211]
+- rcu: Do not report strict GPs for outgoing CPUs (Waiman Long) [1941211]
+- rcu,ftrace: Fix ftrace recursion (Waiman Long) [1941211]
+- arm64: smp: Tell RCU about CPUs that fail to come online (Waiman Long) [1941211]
+- rcu: Don't invoke try_invoke_on_locked_down_task() with irqs disabled (Waiman Long) [1941211]
+- rcu-tasks: Enclose task-list scan in rcu_read_lock() (Waiman Long) [1941211]
+- rcu-tasks: Fix low-probability task_struct leak (Waiman Long) [1941211]
+- rcu-tasks: Fix grace-period/unlock race in RCU Tasks Trace (Waiman Long) [1941211]
+- rcu-tasks: Shorten per-grace-period sleep for RCU Tasks Trace (Waiman Long) [1941211]
+- rcu-tasks: Selectively enable more RCU Tasks Trace IPIs (Waiman Long) [1941211]
+- rcu-tasks: Use more aggressive polling for RCU Tasks Trace (Waiman Long) [1941211]
+- rcu-tasks: Mark variables static (Waiman Long) [1941211]
+- rcu-tasks: Prevent complaints of unused show_rcu_tasks_classic_gp_kthread() (Waiman Long) [1941211]
+- rcu: Remove unused "cpu" parameter from rcu_report_qs_rdp() (Waiman Long) [1941211]
+- torture: Add gdb support (Waiman Long) [1941211]
+- rcuperf: Change rcuperf to rcuscale (Waiman Long) [1941211]
+- sched,rcuperf: Convert to sched_set_fifo_low() (Waiman Long) [1941211]
+- rcu/rcuperf: Convert to SPDX license identifier (Waiman Long) [1941211]
+- rcutorture: Allow pointer leaks to test diagnostic code (Waiman Long) [1941211]
+- rcu: Report QS for outermost PREEMPT=n rcu_read_unlock() for strict GPs (Waiman Long) [1941211]
+- rcu: locking and unlocking need to always be at least barriers (Waiman Long) [1941211]
+- rcu: Execute RCU reader shortly after rcu_core for strict GPs (Waiman Long) [1941211]
+- rcu: Provide optional RCU-reader exit delay for strict GPs (Waiman Long) [1941211]
+- rcu: Make FQS more aggressive in complaining about offline CPUs (Waiman Long) [1941211]
+- rcu: Clarify comments about FQS loop reporting quiescent states (Waiman Long) [1941211]
+- rcu: IPI all CPUs at GP end for strict GPs (Waiman Long) [1941211]
+- rcu: IPI all CPUs at GP start for strict GPs (Waiman Long) [1941211]
+- rcu: Attempt QS when CPU discovers GP for strict GPs (Waiman Long) [1941211]
+- rcu: Do full report for .need_qs for strict GPs (Waiman Long) [1941211]
+- rcu: Always set .need_qs from __rcu_read_lock() for strict GPs (Waiman Long) [1941211]
+- rcu: Force DEFAULT_RCU_BLIMIT to 1000 for strict RCU GPs (Waiman Long) [1941211]
+- rcu: Restrict default jiffies_till_first_fqs for strict RCU GPs (Waiman Long) [1941211]
+- rcu: Reduce leaf fanout for strict RCU grace periods (Waiman Long) [1941211]
+- rcu: Add Kconfig option for strict RCU grace periods (Waiman Long) [1941211]
+- rcu/nocb: Add a warning for non-GP kthread running GP code (Waiman Long) [1941211]
+- rcu: Move rcu_cpu_started per-CPU variable to rcu_data (Waiman Long) [1941211]
+- scftorture: Add cond_resched() to test loop (Waiman Long) [1941211]
+- rcutorture: Hoist OOM registry up one level (Waiman Long) [1941211]
+- rcutorture: Properly synchronize with OOM notifier (Waiman Long) [1941211]
+- rcutorture: Properly set rcu_fwds for OOM handling (Waiman Long) [1941211]
+- torture: Add kvm.sh --help and update help message (Waiman Long) [1941211]
+- refperf: Avoid null pointer dereference when buf fails to allocate (Waiman Long) [1941211]
+- rcutorture: Add CONFIG_PROVE_RCU_LIST to TREE05 (Waiman Long) [1941211]
+- torture: Update initrd documentation (Waiman Long) [1941211]
+- rcutorture: Replace HTTP links with HTTPS ones (Waiman Long) [1941211]
+- rcu: Fix kerneldoc comments in rcupdate.h (Waiman Long) [1941211]
+- scftorture: Adapt memory-ordering test to UP operation (Waiman Long) [1941211]
+- torture: document --allcpus argument added to the kvm.sh script (Waiman Long) [1941211]
+- scftorture: Block scftorture_invoker() kthreads for offline CPUs (Waiman Long) [1941211]
+- scftorture: Check unexpected "switch" statement value (Waiman Long) [1941211]
+- scftorture: Make symbol 'scf_torture_rand' static (Waiman Long) [1941211]
+- scftorture: Prevent compiler from reducing race probabilities (Waiman Long) [1941211]
+- scftorture: Flag errors in torture-compatible manner (Waiman Long) [1941211]
+- scftorture: Consolidate scftorture_invoke_one() scf_check initialization (Waiman Long) [1941211]
+- scftorture: Consolidate scftorture_invoke_one() check and kfree() (Waiman Long) [1941211]
+- scftorture: Add smp_call_function() memory-ordering checks (Waiman Long) [1941211]
+- scftorture: Add smp_call_function_many() memory-ordering checks (Waiman Long) [1941211]
+- scftorture: Add smp_call_function_single() memory-ordering checks (Waiman Long) [1941211]
+- scftorture: Summarize per-thread statistics (Waiman Long) [1941211]
+- torture: Declare parse-console.sh independence from rcutorture (Waiman Long) [1941211]
+- tick-sched: Clarify "NOHZ: local_softirq_pending" warning (Waiman Long) [1941211]
+- scftorture: Implement weighted primitive selection (Waiman Long) [1941211]
+- torture: Add scftorture to the rcutorture scripting (Waiman Long) [1941211]
+- scftorture: Add smp_call_function() torture test (Waiman Long) [1941211]
+- rcu: Add READ_ONCE() to rcu_do_batch() access to rcu_cpu_stall_ftrace_dump (Waiman Long) [1941211]
+- rcu: Add READ_ONCE() to rcu_do_batch() access to rcu_kick_kthreads (Waiman Long) [1941211]
+- rcu: Add READ_ONCE() to rcu_do_batch() access to rcu_resched_ns (Waiman Long) [1941211]
+- rcu: Add READ_ONCE() to rcu_do_batch() access to rcu_divisor (Waiman Long) [1941211]
+- nocb: Remove show_rcu_nocb_state() false positive printout (Waiman Long) [1941211]
+- rcu/tree: Remove CONFIG_PREMPT_RCU check in force_qs_rnp() (Waiman Long) [1941211]
+- nocb: Clarify RCU nocb CPU error message (Waiman Long) [1941211]
+- rcu/tree: Force quiescent state on callback overload (Waiman Long) [1941211]
+- rcu/trace: Use gp_seq_req in acceleration's rcu_grace_period tracepoint (Waiman Long) [1941211]
+- rcu/trace: Print negative GP numbers correctly (Waiman Long) [1941211]
+- rcutorture: Output number of elapsed grace periods (Waiman Long) [1941211]
+- rcu: Initialize at declaration time in rcu_exp_handler() (Waiman Long) [1941211]
+- rcu: Remove KCSAN stubs from update.c (Waiman Long) [1941211]
+- rcu: Remove KCSAN stubs (Waiman Long) [1941211]
+- srcu: Remove KCSAN stubs (Waiman Long) [1941211]
+- rcutorture: Remove KCSAN stubs (Waiman Long) [1941211]
+- refscale: Change --torture type from refperf to refscale (Waiman Long) [1941211]
+- refperf: Rename refperf.c to refscale.c and change internal names (Waiman Long) [1941211]
+- refperf: Rename RCU_REF_PERF_TEST to RCU_REF_SCALE_TEST (Waiman Long) [1941211]
+- torture: Remove obsolete "cd $KVM" (Waiman Long) [1941211]
+- torture: Avoid duplicate specification of qemu command (Waiman Long) [1941211]
+- torture: Dump ftrace at shutdown only if requested (Waiman Long) [1941211]
+- torture: Add kvm-tranform.sh script for qemu-cmd files (Waiman Long) [1941211]
+- torture: Add more tracing crib notes to kvm.sh (Waiman Long) [1941211]
+- torture: Improve diagnostic for KCSAN-incapable compilers (Waiman Long) [1941211]
+- torture: Correctly summarize build-only runs (Waiman Long) [1941211]
+- torture: Pass --kmake-arg to all make invocations (Waiman Long) [1941211]
+- kernel/rcu/tree.c: Fix kernel-doc warnings (Waiman Long) [1941211]
+- rcu-tasks: Fix synchronize_rcu_tasks_trace() header comment (Waiman Long) [1941211]
+- rcu: grpnum just records group number (Waiman Long) [1941211]
+- rcu: grplo/grphi just records CPU number (Waiman Long) [1941211]
+- rcu: gp_max is protected by root rcu_node's lock (Waiman Long) [1941211]
+- rcutorture: Check for unwatched readers (Waiman Long) [1941211]
+- torture: Abstract out console-log error detection (Waiman Long) [1941211]
+- torture: Add a stop-run capability (Waiman Long) [1941211]
+- rcu-tasks: Fix code-style issues (Waiman Long) [1941211]
+- torture: Create qemu-cmd in --buildonly runs (Waiman Long) [1941211]
+- rcu: Stop shrinker loop (Waiman Long) [1941211]
+- refperf: Add test for RCU Tasks readers (Waiman Long) [1941211]
+- refperf: Add test for RCU Tasks Trace readers. (Waiman Long) [1941211]
+- rcu: Replace 1 with true (Waiman Long) [1941211]
+- rcu/rcutorture: Replace 0 with false (Waiman Long) [1941211]
+- refperf: Change readdelay module parameter to nanoseconds (Waiman Long) [1941211]
+- refperf: Work around 64-bit division (Waiman Long) [1941211]
+- doc: Document rcuperf's module parameters (Waiman Long) [1941211]
+- refperf: Adjust refperf.loop default value (Waiman Long) [1941211]
+- rcu-tasks: Conditionally compile show_rcu_tasks_gp_kthreads() (Waiman Long) [1941211]
+- rcu-tasks: Add #include of rcupdate_trace.h to update.c (Waiman Long) [1941211]
+- rcu-tasks: Make rcu_tasks_postscan() be static (Waiman Long) [1941211]
+- refperf: Add read-side delay module parameter (Waiman Long) [1941211]
+- lockdep: Complain only once about RCU in extended quiescent state (Waiman Long) [1941211]
+- refperf: Simplify initialization-time wakeup protocol (Waiman Long) [1941211]
+- rcu: Allow for smp_call_function() running callbacks from idle (Waiman Long) [1941211]
+- refperf: Output per-experiment data points (Waiman Long) [1941211]
+- refperf: Label experiment-number column "Runs" (Waiman Long) [1941211]
+- refperf: Add warmup and cooldown processing phases (Waiman Long) [1941211]
+- refperf: More closely synchronize reader start times (Waiman Long) [1941211]
+- refperf: Convert reader_task structure's "start" field to int (Waiman Long) [1941211]
+- refperf: Tune reader measurement interval (Waiman Long) [1941211]
+- refperf: Make functions static (Waiman Long) [1941211]
+- srcu: Avoid local_irq_save() before acquiring spinlock_t (Waiman Long) [1941211]
+- refperf: Dynamically allocate thread-summary output buffer (Waiman Long) [1941211]
+- refperf: Dynamically allocate experiment-summary output buffer (Waiman Long) [1941211]
+- refperf: Provide module parameter to specify number of experiments (Waiman Long) [1941211]
+- refperf: Convert nreaders to a module parameter (Waiman Long) [1941211]
+- refperf: Allow decimal nanoseconds (Waiman Long) [1941211]
+- refperf: Hoist function-pointer calls out of the loop (Waiman Long) [1941211]
+- rcu: Introduce single argument kvfree_rcu() interface (Waiman Long) [1941211]
+- refperf: Add holdoff parameter to allow CPUs to come online (Waiman Long) [1941211]
+- torture: Add refperf to the rcutorture scripting (Waiman Long) [1941211]
+- rcuperf: Add comments explaining the high reader overhead (Waiman Long) [1941211]
+- refperf: Add a test to measure performance of read-side synchronization (Waiman Long) [1941211]
+- rcuperf: Remove useless while loops around wait_event (Waiman Long) [1941211]
+- rcu: Provide rcu_irq_exit_check_preempt() (Waiman Long) [1941211]
+- sched,rcu,tracing: Avoid tracing before in_nmi() is correct (Waiman Long) [1941211]
+- hardirq/nmi: Allow nested nmi_enter() (Waiman Long) [1941211]
+- powerpc/64s: Include <asm/nmi.h> header file to fix a warning (Waiman Long) [1941211]
+- powerpc/64s: system reset interrupt preserve HSRRs (Waiman Long) [1941211]
+- powerpc/64s: Fix HV NMI vs HV interrupt recoverability test (Waiman Long) [1941211]
+- powerpc/traps: fix recoverability of machine check handling on book3s/32 (Waiman Long) [1941211]
+- powerpc/traps: restore recoverability of machine_check interrupts (Waiman Long) [1941211]
+- rcu: Mark rcu_nmi_enter() call to rcu_cleanup_after_idle() noinstr (Waiman Long) [1941211]
+- rcu: Remove initialized but unused rnp from check_slow_task() (Waiman Long) [1941211]
+- rcu: Update comment from rsp->rcu_gp_seq to rsp->gp_seq (Waiman Long) [1941211]
+- rcu: Provide __rcu_is_watching() (Waiman Long) [1941211]
+- doc: Tasks RCU must protect instructions before trampoline (Waiman Long) [1941211]
+- fs/btrfs: Add cond_resched() for try_release_extent_mapping() stalls (Waiman Long) [1941211]
+- rcu-tasks: Convert sleeps to idle priority (Waiman Long) [1941211]
+- rcu: Expedited grace-period sleeps to idle priority (Waiman Long) [1941211]
+- rcu: No-CBs-related sleeps to idle priority (Waiman Long) [1941211]
+- rcu: Priority-boost-related sleeps to idle priority (Waiman Long) [1941211]
+- rcu: Grace-period-kthread related sleeps to idle priority (Waiman Long) [1941211]
+- torture: Add --allcpus argument to the kvm.sh script (Waiman Long) [1941211]
+- torture: Remove whitespace from identify_qemu_vcpus output (Waiman Long) [1941211]
+- torture: Add script to smoke-test commits in a branch (Waiman Long) [1941211]
+- trace: events: rcu: Change description of rcu_dyntick trace event (Waiman Long) [1941211]
+- rcu: Add comment documenting rcu_callback_map's purpose (Waiman Long) [1941211]
+- rcu: Provide rcu_irq_exit_preempt() (Waiman Long) [1941211]
+- rcu: Add callbacks-invoked counters (Waiman Long) [1941211]
+- doc: Timer problems can cause RCU CPU stall warnings (Waiman Long) [1941211]
+- torture:  Remove qemu dependency on EFI firmware (Waiman Long) [1941211]
+- rcutorture: NULL rcu_torture_current earlier in cleanup code (Waiman Long) [1941211]
+- rcutorture: Handle non-statistic bang-string error messages (Waiman Long) [1941211]
+- torture: Set configfile variable to current scenario (Waiman Long) [1941211]
+- rcutorture: Add races with task-exit processing (Waiman Long) [1941211]
+- docs: RCU: Don't duplicate chapter names in rculist_nulls.rst (Waiman Long) [1941211]
+- docs: RCU: Convert stallwarn.txt to ReST (Waiman Long) [1941211]
+- docs: RCU: Convert rcuref.txt to ReST (Waiman Long) [1941211]
+- docs: RCU: Convert torture.txt to ReST (Waiman Long) [1941211]
+- docs: RCU: Convert rculist_nulls.txt to ReST (Waiman Long) [1941211]
+- docs: RCU: Convert lockdep.txt to ReST (Waiman Long) [1941211]
+- docs: RCU: Convert lockdep-splat.txt to ReST (Waiman Long) [1941211]
+- docs: RCU: Convert checklist.txt to ReST (Waiman Long) [1941211]
+- doc: Add rcutorture scripting to torture.txt (Waiman Long) [1941211]
+- doc: Fix typo "deference" to "dereference" (Waiman Long) [1941211]
+- docs: locking: convert docs to ReST and rename to *.rst (Waiman Long) [1941211]
+- doc/rcuref: Document real world examples in kernel (Waiman Long) [1941211]
+- Documentation/locking/lockdep: Drop last two chars of sample states (Waiman Long) [1941211]
+- doc: rcu: Suspicious RCU usage is a warning (Waiman Long) [1941211]
+- RCU/torture.txt: Remove section MODULE PARAMETERS (Waiman Long) [1941211]
+- Documentation/lockstat: Fix trivial typo (Waiman Long) [1941211]
+- rcu: Simplify the calculation of rcu_state.ncpus (Waiman Long) [1941211]
+- srcu: Fix a typo in comment "amoritized"->"amortized" (Waiman Long) [1941211]
+- rcuperf: Fix printk format warning (Waiman Long) [1941211]
+- mm/mmap.c: Add cond_resched() for exit_mmap() CPU stalls (Waiman Long) [1941211]
+- rcu: Initialize and destroy rcu_synchronize only when necessary (Waiman Long) [1941211]
+- rcu: Add KCSAN stubs to update.c (Waiman Long) [1941211]
+- rcu: Add KCSAN stubs (Waiman Long) [1941211]
+- srcu: Add KCSAN stubs (Waiman Long) [1941211]
+- rcutorture: Add KCSAN stubs (Waiman Long) [1941211]
+- rcu/rcutorture: Convert to SPDX license identifier (Waiman Long) [1941211]
+- rcu: Convert rcu_nohz_full_cpu() ULONG_CMP_LT() to time_before() (Waiman Long) [1941211]
+- rcu: Convert rcu_initiate_boost() ULONG_CMP_GE() to time_after() (Waiman Long) [1941211]
+- rcutorture: Convert ULONG_CMP_LT() to time_before() (Waiman Long) [1941211]
+- rcu: Convert ULONG_CMP_GE() to time_after() for jiffy comparison (Waiman Long) [1941211]
+- rcu: Add rcu_gp_might_be_stalled() (Waiman Long) [1941211]
+- torture: Add a --kasan argument (Waiman Long) [1941211]
+- torture: Save a few lines by using config_override_param initially (Waiman Long) [1941211]
+- torture: Allow scenario-specific Kconfig options to override CFcommon (Waiman Long) [1941211]
+- torture: Allow --kconfig options to override --kcsan defaults (Waiman Long) [1941211]
+- torture: Abstract application of additional Kconfig options (Waiman Long) [1941211]
+- torture: Eliminate duplicate #CHECK# from ConfigFragment (Waiman Long) [1941211]
+- torture: Make --kcsan argument also create a summary (Waiman Long) [1941211]
+- rcutorture: Make rcu_fwds and rcu_fwd_emergency_stop static (Waiman Long) [1941211]
+- torture: Add --kcsan argument to top-level kvm.sh script (Waiman Long) [1941211]
+- rcu-tasks: Allow standalone use of TASKS_{TRACE_,}RCU (Waiman Long) [1941211]
+- rcu: Remove self-stack-trace when all quiescent states seen (Waiman Long) [1941211]
+- ftrace: Use synchronize_rcu_tasks_rude() instead of ftrace_sync() (Waiman Long) [1941211]
+- ftrace: Protect ftrace_graph_hash with ftrace_sync (Waiman Long) [1941211]
+- ftrace: Add comment to why rcu_dereference_sched() is open coded (Waiman Long) [1941211]
+- tracing: Annotate ftrace_graph_notrace_hash pointer with __rcu (Waiman Long) [1941211]
+- tracing: Annotate ftrace_graph_hash pointer with __rcu (Waiman Long) [1941211]
+- tracing/fgraph: Fix set_graph_function from showing interrupts (Waiman Long) [1941211]
+- rcu: Allow rcutorture to starve grace-period kthread (Waiman Long) [1941211]
+- rcu: When GP kthread is starved, tag idle threads as false positives (Waiman Long) [1941211]
+- rcutorture: Right-size TREE10 CPU consumption (Waiman Long) [1941211]
+- rcu: Replace 1 by true (Waiman Long) [1941211]
+- rcutorture: Add test of holding scheduler locks across rcu_read_unlock() (Waiman Long) [1941211]
+- rcu: Replace assigned pointer ret value by corresponding boolean value (Waiman Long) [1941211]
+- rcu-tasks: Add IPI failure count to statistics (Waiman Long) [1941211]
+- rcutorture: Add TRACE02 scenario enabling RCU Tasks Trace IPIs (Waiman Long) [1941211]
+- rcu-tasks: Add count for idle tasks on offline CPUs (Waiman Long) [1941211]
+- rcu-tasks: Add rcu_dynticks_zero_in_eqs() effectiveness statistics (Waiman Long) [1941211]
+- rcu-tasks: Make RCU tasks trace also wait for idle tasks (Waiman Long) [1941211]
+- rcu-tasks: Handle the running-offline idle-task special case (Waiman Long) [1941211]
+- rcu-tasks: Disable CPU hotplug across RCU tasks trace scans (Waiman Long) [1941211]
+- rcu: Mark rcu_state.gp_seq to detect more concurrent writes (Waiman Long) [1941211]
+- rcu-tasks: Allow rcu_read_unlock_trace() under scheduler locks (Waiman Long) [1941211]
+- rcu-tasks: Avoid IPIing userspace/idle tasks if kernel is so built (Waiman Long) [1941211]
+- rcu-tasks: Add Kconfig option to mediate smp_mb() vs. IPI (Waiman Long) [1941211]
+- rcu-tasks: Add grace-period and IPI counts to statistics (Waiman Long) [1941211]
+- rcu-tasks: Split ->trc_reader_need_end (Waiman Long) [1941211]
+- rcu-tasks: Provide boot parameter to delay IPIs until late in grace period (Waiman Long) [1941211]
+- rcu-tasks: Add a grace-period start time for throttling and debug (Waiman Long) [1941211]
+- rcu: Get rid of some doc warnings in update.c (Waiman Long) [1941211]
+- rcu-tasks: Make RCU Tasks Trace make use of RCU scheduler hooks (Waiman Long) [1941211]
+- rcu-tasks: Use context-switch hook for PREEMPT=y kernels (Waiman Long) [1941211]
+- rcu-tasks: Make rcutorture writer stall output include GP state (Waiman Long) [1941211]
+- rcu-tasks: Add RCU tasks to rcutorture writer stall output (Waiman Long) [1941211]
+- rcuperf: Add ability to increase object allocation size (Waiman Long) [1941211]
+- rcu-tasks: Move #ifdef into tasks.h (Waiman Long) [1941211]
+- rcutorture: Add flag to produce non-busy-wait task stalls (Waiman Long) [1941211]
+- rcu: Add per-task state to RCU CPU stall warnings (Waiman Long) [1941211]
+- sched/core: Add function to sample state of locked-down task (Waiman Long) [1941211]
+- rcu-tasks: Add stall warnings for RCU Tasks Trace (Waiman Long) [1941211]
+- rcutorture: Add torture tests for RCU Tasks Trace (Waiman Long) [1941211]
+- rcu-tasks: Add an RCU Tasks Trace to simplify protection of tracing hooks (Waiman Long) [1941211]
+- rcutorture: Add a test for synchronize_rcu_mult() (Waiman Long) [1941211]
+- rcu: Reinstate synchronize_rcu_mult() (Waiman Long) [1941211]
+- rcu-tasks: Code movement to allow more Tasks RCU variants (Waiman Long) [1941211]
+- rcu: Fix the (t=0 jiffies) false positive (Waiman Long) [1941211]
+- rcu-tasks: Further refactor RCU-tasks to allow adding more variants (Waiman Long) [1941211]
+- rcu-tasks: Use unique names for RCU-Tasks kthreads and messages (Waiman Long) [1941211]
+- rcutorture: Add torture tests for RCU Tasks Rude (Waiman Long) [1941211]
+- rcu-tasks: Add an RCU-tasks rude variant (Waiman Long) [1941211]
+- rcu-tasks: Refactor RCU-tasks to allow variants to be added (Waiman Long) [1941211]
+- rcu-tasks: Create struct to hold state information (Waiman Long) [1941211]
+- rcu-tasks: Move Tasks RCU to its own file (Waiman Long) [1941211]
+- locktorture.c: Fix if-statement empty body warnings (Waiman Long) [1941211]
+- rcu: Expedite first two FQS scans under callback-overload conditions (Waiman Long) [1941211]
+- rcu: Mark rcu_state.gp_seq to detect concurrent writes (Waiman Long) [1941211]
+- rcutorture: Mark data-race potential for rcu_barrier() test statistics (Waiman Long) [1941211]
+- rcu: Don't use negative nesting depth in __rcu_read_unlock() (Waiman Long) [1941211]
+- rcu: Remove unused ->rcu_read_unlock_special.b.deferred_qs field (Waiman Long) [1941211]
+- rcu: Don't set nesting depth negative in rcu_preempt_deferred_qs() (Waiman Long) [1941211]
+- rcu: Make rcu_read_unlock_special() safe for rq/pi locks (Waiman Long) [1941211]
+- rcutorture: Make kvm-recheck-rcu.sh handle truncated lines (Waiman Long) [1941211]
+- rcu: Make RCU IRQ enter/exit functions rely on in_nmi() (Waiman Long) [1941211]
+- rcu/tree: Mark the idle relevant functions noinstr (Waiman Long) [1941211]
+- rcu: Add comments marking transitions between RCU watching and not (Waiman Long) [1941211]
+- rcu: Update __call_rcu() comments (Waiman Long) [1941211]
+- rcu: Mark rcu_state.ncpus to detect concurrent writes (Waiman Long) [1941211]
+- rcu: Use data_race() for RCU CPU stall-warning prints (Waiman Long) [1941211]
+- rcutorture: Manually clean up after rcu_barrier() failure (Waiman Long) [1941211]
+- rcutorture: Make rcu_torture_barrier_cbs() post from corresponding CPU (Waiman Long) [1941211]
+- rcu: Make nocb_gp_wait() double-check unexpected-callback warning (Waiman Long) [1941211]
+- rcu: Tighten rcu_lockdep_assert_cblist_protected() check (Waiman Long) [1941211]
+- rcu: Optimize and protect atomic_cmpxchg() loop (Waiman Long) [1941211]
+- rcu/nocb: Add missing annotation for rcu_nocb_bypass_unlock() (Waiman Long) [1941211]
+- rcu: Don't flag non-starting GPs before GP kthread is running (Waiman Long) [1941211]
+- rcu: Fix rcu_barrier_callback() race condition (Waiman Long) [1941211]
+- rcu: Add WRITE_ONCE() to rcu_state ->gp_start (Waiman Long) [1941211]
+- rcu: Add missing annotation for rcu_nocb_bypass_lock() (Waiman Long) [1941211]
+- rcu: Add missing annotation for exit_tasks_rcu_finish() (Waiman Long) [1941211]
+- rcu: Add missing annotation for exit_tasks_rcu_start() (Waiman Long) [1941211]
+- rculist: Add brackets around cond argument in __list_check_rcu macro (Waiman Long) [1941211]
+- rcu: Remove dead code from rcu_segcblist_insert_pend_cbs() (Waiman Long) [1941211]
+- rcutorture: Annotation lockless accesses to rcu_torture_current (Waiman Long) [1941211]
+- rcu: Add READ_ONCE() to rcu_data ->gpwrap (Waiman Long) [1941211]
+- rcu-tasks: *_ONCE() for rcu_tasks_cbs_head (Waiman Long) [1941211]
+- rcu: Add *_ONCE() for grace-period progress indicators (Waiman Long) [1941211]
+- rcu: Add WRITE_ONCE() to rcu_node ->boost_tasks (Waiman Long) [1941211]
+- srcu: Add data_race() to ->srcu_lock_count and ->srcu_unlock_count arrays (Waiman Long) [1941211]
+- rcutorture: Add READ_ONCE() to rcu_torture_count and rcu_torture_batch (Waiman Long) [1941211]
+- rcu: Add READ_ONCE() to rcu_segcblist ->tails[] (Waiman Long) [1941211]
+- rcu: Add WRITE_ONCE() to rcu_node ->qsmaskinitnext (Waiman Long) [1941211]
+- rcu: Add READ_ONCE and data_race() to rcu_node ->boost_tasks (Waiman Long) [1941211]
+- rcu: Add WRITE_ONCE() to rcu_state ->gp_req_activity (Waiman Long) [1941211]
+- rcu: Add READ_ONCE() to rcu_node ->gp_seq (Waiman Long) [1941211]
+- rcu: Add *_ONCE() and data_race() to rcu_node ->exp_tasks plus locking (Waiman Long) [1941211]
+- rcu: Add *_ONCE() to rcu_node ->boost_kthread_status (Waiman Long) [1941211]
+- rcu: Add WRITE_ONCE to rcu_node ->exp_seq_rq store (Waiman Long) [1941211]
+- srcu: Hold srcu_struct ->lock when updating ->srcu_gp_seq (Waiman Long) [1941211]
+- rcu: Add WRITE_ONCE() to rcu_node ->qsmask update (Waiman Long) [1941211]
+- rcu: Provide debug symbols and line numbers in KCSAN runs (Waiman Long) [1941211]
+- rcu: Fix exp_funnel_lock()/rcu_exp_wait_wake() datarace (Waiman Long) [1941211]
+- srcu: Fix process_srcu()/srcu_batches_completed() datarace (Waiman Long) [1941211]
+- srcu: Fix __call_srcu()/srcu_get_delay() datarace (Waiman Long) [1941211]
+- srcu: Fix __call_srcu()/process_srcu() datarace (Waiman Long) [1941211]
+- rcutorture: Fix stray access to rcu_fwd_cb_nodelay (Waiman Long) [1941211]
+- rcutorture: Fix rcu_torture_one_read()/rcu_torture_writer() data race (Waiman Long) [1941211]
+- rcutorture: Make kvm-find-errors.sh abort on bad directory (Waiman Long) [1941211]
+- rcutorture: Summarize summary of build and run results (Waiman Long) [1941211]
+- rcutorture: Add 100-CPU configuration (Waiman Long) [1941211]
+- rcu: Warn on for_each_leaf_node_cpu_mask() from non-leaf (Waiman Long) [1941211]
+- rcu: Fix spelling mistake "leval" -> "level" (Waiman Long) [1941211]
+- torture: Allow disabling of boottime CPU-hotplug torture operations (Waiman Long) [1941211]
+- rcutorture: Suppress boottime bad-sequence warnings (Waiman Long) [1941211]
+- rcutorture: Allow boottime stall warnings to be suppressed (Waiman Long) [1941211]
+- torture: Forgive -EBUSY from boottime CPU-hotplug operations (Waiman Long) [1941211]
+- rcutorture: Refrain from callback flooding during boot (Waiman Long) [1941211]
+- torture: Make results-directory date format completion-friendly (Waiman Long) [1941211]
+- rcutorture: Suppress forward-progress complaints during early boot (Waiman Long) [1941211]
+- timer: Use hlist_unhashed_lockless() in timer_pending() (Waiman Long) [1941211]
+- rcu: React to callback overload by boosting RCU readers (Waiman Long) [1941211]
+- rcu: React to callback overload by aggressively seeking quiescent states (Waiman Long) [1941211]
+- rcu: Add and update docbook header comments in list.h (Waiman Long) [1941211]
+- list: Add hlist_unhashed_lockless() (Waiman Long) [1941211]
+- list: Don't use WRITE_ONCE() in hlist_add_behind() (Waiman Long) [1941211]
+- kcsan: Introduce ASSERT_EXCLUSIVE_BITS(var, mask) (Waiman Long) [1941211]
+- kcsan: Add kcsan_set_access_mask() support (Waiman Long) [1941211]
+- kcsan: Introduce kcsan_value_change type (Waiman Long) [1941211]
+- kcsan: Move interfaces that affects checks to kcsan-checks.h (Waiman Long) [1941211]
+- kcsan: Fix misreporting if concurrent races on same address (Waiman Long) [1941211]
+- kcsan: Expose core configuration parameters as module params (Waiman Long) [1941211]
+- kcsan: Add test to generate conflicts via debugfs (Waiman Long) [1941211]
+- kcsan: Introduce ASSERT_EXCLUSIVE_*() macros (Waiman Long) [1941211]
+- kcsan: Introduce KCSAN_ACCESS_ASSERT access type (Waiman Long) [1941211]
+- kcsan: Fix 0-sized checks (Waiman Long) [1941211]
+- kcsan: Clean up the main KCSAN Kconfig option (Waiman Long) [1941211]
+- kcsan: Clarify Kconfig option KCSAN_IGNORE_ATOMICS (Waiman Long) [1941211]
+- kcsan: Add option to assume plain aligned writes up to word size are atomic (Waiman Long) [1941211]
+- kcsan: Add docbook header for data_race() (Waiman Long) [1941211]
+- kcsan: Address missing case with KCSAN_REPORT_VALUE_CHANGE_ONLY (Waiman Long) [1941211]
+- include/linux: Add instrumented.h infrastructure (Waiman Long) [1941211]
+- kcsan: Make KCSAN compatible with lockdep (Waiman Long) [1941211]
+- kcsan: Rate-limit reporting per data races (Waiman Long) [1941211]
+- kcsan: Show full access type in report (Waiman Long) [1941211]
+- kcsan: Prefer __always_inline for fast-path (Waiman Long) [1941211]
+- kcsan: Improve various small stylistic details (Waiman Long) [1941211]
+- x86, kcsan: Enable KCSAN for x86 (Waiman Long) [1941211]
+- build, kcsan: Add KCSAN build exceptions (Waiman Long) [1941211]
+- x86/uaccess, kcov: Disable stack protector (Waiman Long) [1941211]
+- doc: Convert to rcubarrier.txt to ReST (Waiman Long) [1941211]
+- doc: Convert to rcu_dereference.txt to rcu_dereference.rst (Waiman Long) [1941211]
+- doc: Convert whatisRCU.txt to .rst (Waiman Long) [1941211]
+- doc: Converted NMI-RCU.txt to NMI-RCU.rst. (Waiman Long) [1941211]
+- doc: Convert arrayRCU.txt to arrayRCU.rst (Waiman Long) [1941211]
+- doc: Update list_for_each_entry_rcu() documentation (Waiman Long) [1941211]
+- Restore docs "rcu: Restore barrier() to rcu_read_lock() and rcu_read_unlock()" (Waiman Long) [1941211]
+- Restore docs "treewide: Rename rcu_dereference_raw_notrace() to _check()" (Waiman Long) [1941211]
+- docs: rcu: Increase toctree to 3 (Waiman Long) [1941211]
+- docs: rcu: Correct links referring to titles (Waiman Long) [1941211]
+- docs: rcu: convert some articles from html to ReST (Waiman Long) [1941211]
+- Revert docs from "rcu: Restore barrier() to rcu_read_lock() and rcu_read_unlock()" (Waiman Long) [1941211]
+- Documentation: RCU: Add TOC tree hooks (Waiman Long) [1941211]
+- doc: Describe choice of rcu_dereference() APIs and __rcu usage (Waiman Long) [1941211]
+- doc: Remove obsolete RCU update functions from RCU documentation (Waiman Long) [1941211]
+- scsi: ibmvfc: Free channel_setup_buf during device tear down (Steve Best) [1938102]
+- blk-mq: clearing flush request reference in tags->rqs[] (Ming Lei) [1811030]
+- blk-mq: clear stale request in tags->rq[] before freeing one request pool (Ming Lei) [1811030]
+- blk-mq: grab rq->refcount before calling ->fn in blk_mq_tagset_busy_iter (Ming Lei) [1811030]
+- vsock/vmci: log once the failed queue pair allocation (Stefano Garzarella) [1958248]
+- VMCI: Stop log spew when qp allocation isn't possible (Stefano Garzarella) [1958248]
+- vsock/virtio: update credit only if socket is not closed (Stefano Garzarella) [1921694]
+- powerpc/security: Fix debugfs data leak on 32-bit (Steve Best) [1935661]
+- powerpc/security: Show powerpc_security_features in debugfs (Steve Best) [1935661]
+- redhat/configs: Add CONFIG_SYSTEM_REVOCATION_KEYS and CONFIG_SYSTEM_REVOCATION_LIST (Vladis Dronov) [1893793] {CVE-2020-26541}
+- certs: add 'x509_revocation_list' to gitignore (Vladis Dronov) [1893793] {CVE-2020-26541}
+- integrity: Load mokx variables into the blacklist keyring (Vladis Dronov) [1893793] {CVE-2020-26541}
+- certs: Add ability to preload revocation certs (Vladis Dronov) [1893793] {CVE-2020-26541}
+- certs: Move load_system_certificate_list to a common function (Vladis Dronov) [1893793] {CVE-2020-26541}
+- certs: Add EFI_CERT_X509_GUID support for dbx entries (Vladis Dronov) [1893793] {CVE-2020-26541}
+- pNFS/flexfiles: Fix array overflow when flexfiles mirroring is enabled (Benjamin Coddington) [1949575]
+- net/sunrpc: fix useless comparison in proc_do_xprt() (Benjamin Coddington) [1949575]
+- net/sunrpc: return 0 on attempt to write to "transports" (Benjamin Coddington) [1949575]
+- NFSD: MKNOD should return NFSERR_BADTYPE instead of NFSERR_INVAL (Benjamin Coddington) [1949575]
+- NFSD: NFSv3 PATHCONF Reply is improperly formed (Benjamin Coddington) [1949575]
+- nfsroot: Default mount option should ask for built-in NFS version (Benjamin Coddington) [1949575]
+- nfsd: remove unneeded break (Benjamin Coddington) [1949575]
+- net/sunrpc: Fix return value for sysctl sunrpc.transports (Benjamin Coddington) [1949575]
+- NFSv4.2: support EXCHGID4_FLAG_SUPP_FENCE_OPS 4.2 EXCHANGE_ID flag (Benjamin Coddington) [1949575]
+- NFSv4: Fix up RCU annotations for struct nfs_netns_client (Benjamin Coddington) [1949575]
+- NFS: Only reference user namespace from nfs4idmap struct instead of cred (Benjamin Coddington) [1949575]
+- NFSD: Hoist status code encoding into XDR encoder functions (Benjamin Coddington) [1949575]
+- NFSv4: Use the net namespace uniquifier if it is set (Benjamin Coddington) [1949575]
+- NFSv4: Clean up initialisation of uniquified client id strings (Benjamin Coddington) [1949575]
+- SUNRPC: Add an xdr_align_data() function (Benjamin Coddington) [1949575]
+- SUNRPC: Add the ability to expand holes in data pages (Benjamin Coddington) [1949575]
+- SUNRPC: Split out _shift_data_right_tail() (Benjamin Coddington) [1949575]
+- SUNRPC: Split out xdr_realign_pages() from xdr_align_pages() (Benjamin Coddington) [1949575]
+- NFS: Use xdr_page_pos() in NFSv4 decode_getacl() (Benjamin Coddington) [1949575]
+- SUNRPC: Implement a xdr_page_pos() function (Benjamin Coddington) [1949575]
+- NFS: fix nfs_path in case of a rename retry (Benjamin Coddington) [1949575]
+- NFSD: Map nfserr_wrongsec outside of nfsd_dispatch (Benjamin Coddington) [1949575]
+- NFSD: Remove the RETURN_STATUS() macro (Benjamin Coddington) [1949575]
+- NFSD: Call NFSv2 encoders on error returns (Benjamin Coddington) [1949575]
+- NFSD: Fix .pc_release method for NFSv2 (Benjamin Coddington) [1949575]
+- NFSD: Remove vestigial typedefs (Benjamin Coddington) [1949575]
+- NFSD: Refactor nfsd_dispatch() error paths (Benjamin Coddington) [1949575]
+- NFSD: Clean up nfsd_dispatch() variables (Benjamin Coddington) [1949575]
+- NFSD: Clean up stale comments in nfsd_dispatch() (Benjamin Coddington) [1949575]
+- NFSD: Clean up switch statement in nfsd_dispatch() (Benjamin Coddington) [1949575]
+- NFSD: Encoder and decoder functions are always present (Benjamin Coddington) [1949575]
+- NFSACL: Replace PROC() macro with open code (Benjamin Coddington) [1949575]
+- lockd: Replace PROC() macro with open code (Benjamin Coddington) [1949575]
+- NFSD: Add missing NFSv2 .pc_func methods (Benjamin Coddington) [1949575]
+- fs: nfs: return per memcg count for xattr shrinkers (Benjamin Coddington) [1949575]
+- nfs: remove incorrect fallthrough label (Benjamin Coddington) [1949575]
+- nfsd: rq_lease_breaker cleanup (Benjamin Coddington) [1949575]
+- sunrpc: simplify do_cache_clean (Benjamin Coddington) [1949575]
+- sunrpc: cache : Replace seq_printf with seq_puts (Benjamin Coddington) [1949575]
+- silence nfscache allocation warnings with kvzalloc (Benjamin Coddington) [1949575]
+- nfsd: fix comparison to bool warning (Benjamin Coddington) [1949575]
+- NFSD: Correct type annotations in user xattr XDR functions (Benjamin Coddington) [1949575]
+- NFSD: Correct type annotations in user xattr helpers (Benjamin Coddington) [1949575]
+- SUNRPC/NFSD: Implement xdr_reserve_space_vec() (Benjamin Coddington) [1949575]
+- nfsd: rename delegation related tracepoints to make them less confusing (Benjamin Coddington) [1949575]
+- nfsd: Remove unnecessary assignment in nfs4xdr.c (Benjamin Coddington) [1949575]
+- net: sunrpc: delete repeated words (Benjamin Coddington) [1949575]
+- nfsd: Fix typo in comment (Benjamin Coddington) [1949575]
+- nfsd: give up callbacks on revoked delegations (Benjamin Coddington) [1949575]
+- nfs: fix spellint typo in pnfs.c (Benjamin Coddington) [1949575]
+- fs,nfs: lift compat nfs4 mount data handling into the nfs code (Benjamin Coddington) [1949575]
+- nfs: simplify nfs4_parse_monolithic (Benjamin Coddington) [1949575]
+- xprtrdma: drop double zeroing (Benjamin Coddington) [1949575]
+- NFSv4.2: xattr cache: remove unused cache struct field (Benjamin Coddington) [1949575]
+- nfs: Convert to use the preferred fallthrough macro (Benjamin Coddington) [1949575]
+- NFS4: Fix oops when copy_file_range is attempted with NFS4.0 source (Benjamin Coddington) [1949575]
+- Replace HTTP links with HTTPS ones: NFS, SUNRPC, and LOCKD clients (Benjamin Coddington) [1949575]
+- sunrpc: fix duplicated word in <linux/sunrpc/cache.h> (Benjamin Coddington) [1949575]
+- SUNRPC: Remove remaining dprintks from sched.c (Benjamin Coddington) [1949575]
+- SUNRPC: Remove dprintk call sites in RPC queuing functions (Benjamin Coddington) [1949575]
+- SUNRPC: Clean up RPC scheduler tracepoints (Benjamin Coddington) [1949575]
+- SUNRPC: Replace rpcbind dprintk call sites with tracepoints (Benjamin Coddington) [1949575]
+- SUNRPC: Remove more dprintks in rpcb_clnt.c (Benjamin Coddington) [1949575]
+- SUNRPC: Remove dprintk call sites in rpcbind XDR functions (Benjamin Coddington) [1949575]
+- SUNRPC: Hoist trace_xprtrdma_op_setport into generic code (Benjamin Coddington) [1949575]
+- SUNRPC: Remove rpcb_getport_async dprintk call sites (Benjamin Coddington) [1949575]
+- SUNRPC: Clean up call_bind_status() observability (Benjamin Coddington) [1949575]
+- SUNRPC: Remove dprintk call site in call_decode (Benjamin Coddington) [1949575]
+- SUNRPC: Trace call_refresh events (Benjamin Coddington) [1949575]
+- SUNRPC: Add trace_rpc_timeout_status() (Benjamin Coddington) [1949575]
+- SUNRPC: Mitigate cond_resched() in xprt_transmit() (Benjamin Coddington) [1949575]
+- SUNRPC: Replace connect dprintk call sites with a tracepoint (Benjamin Coddington) [1949575]
+- SUNRPC: Remove dprintk call site in call_start() (Benjamin Coddington) [1949575]
+- SUNRPC: Remove the dprint_status() macro (Benjamin Coddington) [1949575]
+- SUNRPC: Replace dprintk() call site in xs_nospace() (Benjamin Coddington) [1949575]
+- SUNRPC: Replace dprintk() call site in xprt_prepare_transmit (Benjamin Coddington) [1949575]
+- SUNRPC: Update debugging instrumentation in xprt_do_reserve() (Benjamin Coddington) [1949575]
+- SUNRPC: Remove debugging instrumentation from xprt_release (Benjamin Coddington) [1949575]
+- SUNRPC: Hoist trace_xprtrdma_op_allocate into generic code (Benjamin Coddington) [1949575]
+- SUNRPC: Remove trace_xprt_complete_rqst() (Benjamin Coddington) [1949575]
+- SUNRPC dont update timeout value on connection reset (Benjamin Coddington) [1949575]
+- nfs4: strengthen error check to avoid unexpected result (Benjamin Coddington) [1949575]
+- NFS: remove redundant pointer clnt (Benjamin Coddington) [1949575]
+- sunrpc: Avoid comma separated statements (Benjamin Coddington) [1949575]
+
+* Tue May 25 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-309.el8]
+- Revert "sctp: Fix SHUTDOWN CTSN Ack in the peer restart case" (Xin Long) [1953839]
+- sctp: do asoc update earlier in sctp_sf_do_dupcook_b (Xin Long) [1953839]
+- sctp: do asoc update earlier in sctp_sf_do_dupcook_a (Xin Long) [1953839]
+- NFSv4: Fixes for nfs4_bitmask_adjust() (Steve Dickson) [1926961]
+- powerpc/paravirt: Use is_kvm_guest() in vcpu_is_preempted() (Desnes A. Nunes do Rosario) [1918720]
+- powerpc: Reintroduce is_kvm_guest() as a fast-path check (Desnes A. Nunes do Rosario) [1918720]
+- powerpc: Rename is_kvm_guest() to check_kvm_guest() (Desnes A. Nunes do Rosario) [1918720]
+- powerpc: Refactor is_kvm_guest() declaration to new header (Desnes A. Nunes do Rosario) [1918720]
+- powerpc/pseries: Move some PAPR paravirt functions to their own file (Desnes A. Nunes do Rosario) [1918720]
+- powerpc/shared: Use static key to detect shared processor (Desnes A. Nunes do Rosario) [1918720]
+- powerpc/spinlocks: Fix oops in __spin_yield() on bare metal (Desnes A. Nunes do Rosario) [1918720]
+- powerpc/spinlocks: Rename SPLPAR-only spinlocks (Desnes A. Nunes do Rosario) [1918720]
+- powerpc/spinlocks: Refactor SHARED_PROCESSOR (Desnes A. Nunes do Rosario) [1918720]
+- Revert "ACPICA: Interpreter: fix memory leak by using existing buffer" (Mark Langsdorf) [1935928]
+- x86/efi: Remove EFI PGD build time checks (Mark Langsdorf) [1935928]
+- ACPI: scan: Fix battery devices sometimes never binding (Mark Langsdorf) [1935928]
+- ACPI/IORT: Do not blindly trust DMA masks from firmware (Mark Langsdorf) [1935928]
+- ACPI: thermal: Do not call acpi_thermal_check() directly (Mark Langsdorf) [1935928]
+- ACPI: sysfs: Prefer "compatible" modalias (Mark Langsdorf) [1935928]
+- ACPI: scan: Make acpi_bus_get_device() clear return pointer on error (Mark Langsdorf) [1935928]
+- ACPI: scan: Harden acpi_device_add() against device ID overflows (Mark Langsdorf) [1935928]
+- ACPI: Update Kconfig help text for items that are no longer modular (Mark Langsdorf) [1935928]
+- ACPI: PM: s2idle: Drop unused local variables and related code (Mark Langsdorf) [1935928]
+- ACPI: PM: s2idle: Move x86-specific code to the x86 directory (Mark Langsdorf) [1935928]
+- ACPI: scan: Add Intel Baytrail Mailbox Device to acpi_ignore_dep_ids (Mark Langsdorf) [1935928]
+- ACPI: scan: Avoid unnecessary second pass in acpi_bus_scan() (Mark Langsdorf) [1935928]
+- ACPI: scan: Defer enumeration of devices with _DEP lists (Mark Langsdorf) [1935928]
+- ACPI: scan: Evaluate _DEP before adding the device (Mark Langsdorf) [1935928]
+- ACPI: PM: s2idle: Add AMD support to handle _DSM (Mark Langsdorf) [1935928]
+- ACPI: processor: fix NONE coordination for domain mapping failure (Mark Langsdorf) [1935928]
+- cpufreq: Fix cpufreq_online() return value on errors (Mark Langsdorf) [1935928]
+- opp: of: Allow empty opp-table with opp-shared (Mark Langsdorf) [1935928]
+- dt-bindings: opp: Allow empty OPP tables (Mark Langsdorf) [1935928]
+- ACPI: Drop acpi_dev_irqresource_disabled() (Mark Langsdorf) [1935928]
+- resource: Add irqresource_disabled() (Mark Langsdorf) [1935928]
+- genirq/affinity: Add irq_update_affinity_desc() (Mark Langsdorf) [1935928]
+- driver core: Add fwnode_init() (Mark Langsdorf) [1935928]
+- ACPI: scan: Fix up _DEP-related terminology with supplier/consumer (Mark Langsdorf) [1935928]
+- ACPI: scan: Drop INT3396 from acpi_ignore_dep_ids[] (Mark Langsdorf) [1935928]
+- Revert "ACPI / resources: Use AE_CTRL_TERMINATE to terminate resources walks" (Mark Langsdorf) [1935928]
+- ACPI: scan: Add PNP0D80 to the _DEP exceptions list (Mark Langsdorf) [1935928]
+- PM: ACPI: Refresh wakeup device power configuration every time (Mark Langsdorf) [1935928]
+- PM: ACPI: PCI: Drop acpi_pm_set_bridge_wakeup() (Mark Langsdorf) [1935928]
+- ACPI: scan: Call acpi_get_object_info() from acpi_add_single_object() (Mark Langsdorf) [1935928]
+- ACPI: scan: Add acpi_info_matches_hids() helper (Mark Langsdorf) [1935928]
+- ACPICA: Update version to 20201113 (Mark Langsdorf) [1935928]
+- ACPICA: Interpreter: fix memory leak by using existing buffer (Mark Langsdorf) [1935928]
+- ACPICA: Add function trace macros to improve debugging (Mark Langsdorf) [1935928]
+- ACPICA: Also handle "orphan" _REG methods for GPIO OpRegions (Mark Langsdorf) [1935928]
+- ACPICA: Remove extreaneous "the" in comments (Mark Langsdorf) [1935928]
+- ACPICA: Add 5 new UUIDs to the known UUID table (Mark Langsdorf) [1935928]
+- ACPI: processor: Drop duplicate setting of shared_cpu_map (Mark Langsdorf) [1935928]
+- ACPI: EC: Clean up status flags checks in advance_transaction() (Mark Langsdorf) [1935928]
+- ACPI: EC: Untangle error handling in advance_transaction() (Mark Langsdorf) [1935928]
+- ACPI: EC: Simplify error handling in advance_transaction() (Mark Langsdorf) [1935928]
+- ACPI: EC: Rename acpi_ec_is_gpe_raised() (Mark Langsdorf) [1935928]
+- ACPI: EC: Fold acpi_ec_clear_gpe() into its caller (Mark Langsdorf) [1935928]
+- ACPI: EC: Eliminate in_interrupt() usage (Mark Langsdorf) [1935928]
+- ACPI: acpi_drivers.h: Update the kernel doc (Mark Langsdorf) [1935928]
+- ACPI: acpi_drivers.h: Remove the leftover dead code (Mark Langsdorf) [1935928]
+- ACPI: tiny-power-button: Simplify the code using module_acpi_driver() (Mark Langsdorf) [1935928]
+- ACPI: SBS: Simplify the code using module_acpi_driver() (Mark Langsdorf) [1935928]
+- ACPI: SBS: Simplify the driver init code (Mark Langsdorf) [1935928]
+- ACPI: debug: Remove the not used function (Mark Langsdorf) [1935928]
+- ACPI: processor: Remove the duplicated ACPI_PROCESSOR_CLASS macro (Mark Langsdorf) [1935928]
+- ACPI: watchdog: Replace open coded variant of resource_union() (Mark Langsdorf) [1935928]
+- PCI/ACPI: Replace open coded variant of resource_union() (Mark Langsdorf) [1935928]
+- resource: Introduce resource_union() for overlapping resources (Mark Langsdorf) [1935928]
+- resource: Group resource_overlaps() with other inline helpers (Mark Langsdorf) [1935928]
+- resource: Simplify region_intersects() by reducing conditionals (Mark Langsdorf) [1935928]
+- ACPI, APEI: make apei_resources_all static (Mark Langsdorf) [1935928]
+- mm/mmu_notifier: allocate mmu_notifier_rh in __mmu_notifier_register() (Jeremy Cline) [1909072]
+
+* Mon May 24 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-308.el8]
+- Amends commit ea6244cc248b to include a version string in module info. (Ken Cox) [1955726]
+- i40e: use minimal admin queue for kdump (Stefan Assmann) [1834962]
+- i40e: use minimal Rx and Tx ring buffers for kdump (Stefan Assmann) [1834962]
+- i40e: use minimal Tx and Rx pairs for kdump (Stefan Assmann) [1834962]
+- net/sched: sch_frag: fix stack OOB read while fragmenting IPv4 packets (Davide Caratti) [1924608]
+- openvswitch: fix stack OOB read while fragmenting IPv4 packets (Davide Caratti) [1924608]
+- net/sched: act_ct: fix wild memory access when clearing fragments (Davide Caratti) [1924608]
+- selinux: fall back to SECURITY_FS_USE_GENFS if no xattr support (Ondrej Mosnacek) [1934093 1915825]
+- selinux: mark some global variables __ro_after_init (Ondrej Mosnacek) [1934093]
+- selinux: make selinuxfs_mount static (Ondrej Mosnacek) [1934093]
+- selinux: drop the unnecessary aurule_callback variable (Ondrej Mosnacek) [1934093]
+- selinux: remove unused global variables (Ondrej Mosnacek) [1934093]
+- selinux: fix inconsistency between inode_getxattr and inode_listsecurity (Ondrej Mosnacek) [1934093]
+- selinux: Fix fall-through warnings for Clang (Ondrej Mosnacek) [1934093]
+- selinux: fix inode_doinit_with_dentry() LABEL_INVALID error handling (Ondrej Mosnacek) [1934093]
+- selinux: allow dontauditx and auditallowx rules to take effect without allowx (Ondrej Mosnacek) [1934093]
+- selinux: fix error initialization in inode_doinit_with_dentry() (Ondrej Mosnacek) [1934093]
+- selinux: Fix error return code in sel_ib_pkey_sid_slow() (Ondrej Mosnacek) [1934093]
+- selinux: access policycaps with READ_ONCE/WRITE_ONCE (Ondrej Mosnacek) [1934093]
+- selinux: delete repeated words in comments (Ondrej Mosnacek) [1934093]
+- selinux: add basic filtering for audit trace events (Ondrej Mosnacek) [1934093 1954024]
+- selinux: add tracepoint on audited events (Ondrej Mosnacek) [1934093 1954024]
+- selinux: permit removing security.selinux xattr before policy load (Ondrej Mosnacek) [1934093]
+- exec: Always set cap_ambient in cap_bprm_set_creds (Ondrej Mosnacek) [1934093]
+- security: remove duplicated include from security.h (Ondrej Mosnacek) [1934093]
+- security/commoncap: Use xattr security prefix len (Ondrej Mosnacek) [1934093]
+- LSM: switch to blocking policy update notifiers (Ondrej Mosnacek) [1934093]
+- security: Make capability_hooks static (Ondrej Mosnacek) [1934093]
+- securityfs: fix use-after-free on symlink traversal (Ondrej Mosnacek) [1934093]
+- LSM: Check for NULL cred-security on free (Ondrej Mosnacek) [1934093]
+- security: check for kstrdup() failure in lsm_append() (Ondrej Mosnacek) [1934093]
+- scsi: mpt3sas: Block PCI config access from userspace during reset (Tomas Henzl) [1954555]
+- scsi: mpt3sas: Fix endianness for ActiveCablePowerRequirement (Tomas Henzl) [1954555]
+- scsi: mpt3sas: Fix error return code of mpt3sas_base_attach() (Tomas Henzl) [1954555]
+- scsi: mpt3sas: Do not use GFP_KERNEL in atomic context (Tomas Henzl) [1954555]
+- scsi: mpt3sas: Only one vSES is present even when IOC has multi vSES (Tomas Henzl) [1953421]
+- scsi: bnx2i: Make bnx2i_process_iscsi_error() simpler and more robust (Nilesh Javali) [1921612]
+- scsi: bnx2i: Fix bnx2i_set_ccell_info()'s name in description (Nilesh Javali) [1921612]
+- scsi: bnx2i: Requires MMU (Nilesh Javali) [1921612]
+- scsi: bnx2i: Remove unnecessary mutex_init() (Nilesh Javali) [1921612]
+- scsi: bnx2i: Add parameter description and rename another (Nilesh Javali) [1921612]
+- scsi: bnx2i: Add, remove and edit some function parameter descriptions (Nilesh Javali) [1921612]
+- scsi: bnx2i: Fix a whole host of kerneldoc issues (Nilesh Javali) [1921612]
+- scsi: bnx2i: Add missing descriptions for 'attr' parameter (Nilesh Javali) [1921612]
+- scsi: bnx2i: Fix parameter misnaming in function header (Nilesh Javali) [1921612]
+- mfd: intel-lpss: Add Intel Alder Lake PCH-P PCI IDs (Steve Best) [1929489]
+- lib: list_sort.c: add a blank line to avoid kernel-doc warnings (Rafael Aquini) [1900774]
+- lib/list_sort: fix kerneldoc build error (Rafael Aquini) [1900774]
+- lib/list_sort: optimize number of calls to comparison function (Rafael Aquini) [1900774]
+- lib/list_sort: simplify and remove MAX_LIST_LENGTH_BITS (Rafael Aquini) [1900774]
+- perf bench numa: Fix the condition checks for max number of NUMA nodes (Steve Best) [1936333]
+- powerpc/perf: Record counter overflow always if SAMPLE_IP is unset (Gustavo Walbon) [1921684]
+- perf powerpc: Support exposing Performance Monitor Counter SPRs as part of extended regs (Gustavo Walbon) [1921684]
+- powerpc/perf: Expose Performance Monitor Counter SPR's as part of extended regs (Gustavo Walbon) [1921684]
+- powerpc/perf: Include PMCs as part of per-cpu cpuhw_events struct (Gustavo Walbon) [1921684]
+- powerpc/perf: Adds support for programming of Thresholding in P10 (Gustavo Walbon) [1921684]
+- x86/entry/64: Deduplicate multiple IBRS macros in paranoid_entry (Waiman Long) [1924364]
+- x86/speculation: Fix prctl() when spectre_v2_user={seccomp,prctl},ibpb (Waiman Long) [1924364]
+- x86/speculation: Allow IBPB to be conditionally enabled on CPUs with always-on STIBP (Waiman Long) [1924364]
+- x86/bugs/multihit: Fix mitigation reporting when VMX is not in use (Waiman Long) [1924364]
+- x86/speculation: Merge one test in spectre_v2_user_select_mitigation() (Waiman Long) [1924364]
+- x86/bugs: Move enum taa_mitigations to bugs.c (Waiman Long) [1924364]
+- mm/memcg: set memcg when splitting page (Waiman Long) [1937825]
+- mm/memcg: rename mem_cgroup_split_huge_fixup to split_page_memcg and add nr_pages argument (Waiman Long) [1937825]
+- mm, tracing: Fix kmem_cache_free trace event to not print stale pointers (Waiman Long) [1937825]
+- mm: memcontrol: fix get_active_memcg return value (Waiman Long) [1937825]
+- fs: buffer: use raw page_memcg() on locked page (Waiman Long) [1937825]
+- mm/list_lru.c: remove kvfree_rcu_local() (Waiman Long) [1937825]
+- mm: memcontrol: replace the loop with a list_for_each_entry() (Waiman Long) [1937825]
+- mm/memcontrol: remove redundant NULL check (Waiman Long) [1937825]
+- mm: page_counter: re-layout structure to reduce false sharing (Waiman Long) [1937825]
+- mm: kmem: make __memcg_kmem_(un)charge static (Waiman Long) [1937825]
+- mm: memcg: add swapcache stat for memcg v2 (Waiman Long) [1937825]
+- mm/memcg: remove rcu locking for lock_page_lruvec function series (Waiman Long) [1937825]
+- mm/memcg: revise the using condition of lock_page_lruvec function series (Waiman Long) [1937825]
+- mm: memcontrol: make the slab calculation consistent (Waiman Long) [1937825]
+- mm: memcontrol: convert NR_FILE_PMDMAPPED account to pages (Waiman Long) [1937825]
+- mm: memcontrol: convert NR_SHMEM_PMDMAPPED account to pages (Waiman Long) [1937825]
+- mm: memcontrol: convert NR_SHMEM_THPS account to pages (Waiman Long) [1937825]
+- mm: memcontrol: convert NR_FILE_THPS account to pages (Waiman Long) [1937825]
+- mm: memcontrol: convert NR_ANON_THPS account to pages (Waiman Long) [1937825]
+- mm: memcontrol: optimize per-lruvec stats counter memory usage (Waiman Long) [1937825]
+- mm: memcg/slab: pre-allocate obj_cgroups for slab caches with SLAB_ACCOUNT (Waiman Long) [1937825]
+- mm/slub: minor coding style tweaks (Waiman Long) [1937825]
+- mm, slub: remove slub_memcg_sysfs boot param and CONFIG_SLUB_MEMCG_SYSFS_ON (Waiman Long) [1937825]
+- mm, slub: splice cpu and page freelists in deactivate_slab() (Waiman Long) [1937825]
+- mm, slab, slub: stop taking cpu hotplug lock (Waiman Long) [1937825]
+- mm, slab, slub: stop taking memory hotplug lock (Waiman Long) [1937825]
+- mm, slub: stop freeing kmem_cache_node structures on node offline (Waiman Long) [1937825]
+- mm/slub: disable user tracing for kmemleak caches by default (Waiman Long) [1937825]
+- mm/slab: minor coding style tweaks (Waiman Long) [1937825]
+- mm/sl?b.c: remove ctor argument from kmem_cache_flags (Waiman Long) [1937825]
+- mm, tracing: record slab name for kmem_cache_free() (Waiman Long) [1937825]
+- mm: fix numa stats for thp migration (Waiman Long) [1937825]
+- mm: memcg: fix memcg file_dirty numa stat (Waiman Long) [1937825]
+- mm/memcontrol: fix warning in mem_cgroup_page_lruvec() (Waiman Long) [1937825]
+- mm: slub: call account_slab_page() after slab page initialization (Waiman Long) [1937825]
+- mm/hugetlb: fix deadlock in hugetlb_cow error path (Waiman Long) [1937825]
+- mm/memcontrol:rewrite mem_cgroup_page_lruvec() (Waiman Long) [1937825]
+- mm/memcg: remove unused definitions (Waiman Long) [1937825]
+- mm/memcg: warning on !memcg after readahead page charged (Waiman Long) [1937825]
+- mm/memcg: bail early from swap accounting if memcg disabled (Waiman Long) [1937825]
+- mm/lru: revise the comments of lru_lock (Waiman Long) [1937825]
+- mm/lru: introduce relock_page_lruvec() (Waiman Long) [1937825]
+- mm/lru: replace pgdat lru_lock with lruvec lock (Waiman Long) [1937825]
+- mm/lru: move lock into lru_note_cost (Waiman Long) [1937825]
+- mm/swap.c: serialize memcg changes in pagevec_lru_move_fn (Waiman Long) [1937825]
+- mm/compaction: do page isolation first in compaction (Waiman Long) [1937825]
+- mm/lru: introduce TestClearPageLRU() (Waiman Long) [1937825]
+- mm/mlock: remove __munlock_isolate_lru_page() (Waiman Long) [1937825]
+- mm/mlock: remove lru_lock on TestClearPageMlocked (Waiman Long) [1937825]
+- mm/vmscan: remove lruvec reget in move_pages_to_lru (Waiman Long) [1937825]
+- mm/swap.c: fold vm event PGROTATED into pagevec_move_tail_fn (Waiman Long) [1937825]
+- mm/memcg: add debug checking in lock_page_memcg (Waiman Long) [1937825]
+- mm: page_idle_get_page() does not need lru_lock (Waiman Long) [1937825]
+- mm/rmap: stop store reordering issue on page->mapping (Waiman Long) [1937825]
+- mm/vmscan: remove unnecessary lruvec adding (Waiman Long) [1937825]
+- mm/thp: narrow lru locking (Waiman Long) [1937825]
+- mm/thp: simplify lru_add_page_tail() (Waiman Long) [1937825]
+- mm/thp: use head for head page in lru_add_page_tail() (Waiman Long) [1937825]
+- mm/thp: move lru_add_page_tail() to huge_memory.c (Waiman Long) [1937825]
+- mm: slub: convert sysfs sprintf family to sysfs_emit/sysfs_emit_at (Waiman Long) [1937825]
+- mm: truncate_complete_page() does not exist any more (Waiman Long) [1937825]
+- mm/vmscan: drop unneeded assignment in kswapd() (Waiman Long) [1937825]
+- mm: memcontrol: account pagetables per node (Waiman Long) [1937825]
+- mm: move lruvec stats update functions to vmstat.h (Waiman Long) [1937825]
+- mm/memcg: remove incorrect comment (Waiman Long) [1937825]
+- mm: memcontrol: sssign boolean values to a bool variable (Waiman Long) [1937825]
+- mm: memcg/slab: rename *_lruvec_slab_state to *_lruvec_kmem_state (Waiman Long) [1937825]
+- mm: memcg: remove obsolete memcg_has_children() (Waiman Long) [1937825]
+- mm/page_counter: use page_counter_read in page_counter_set_max (Waiman Long) [1937825]
+- cgroup: remove obsoleted broken_hierarchy and warned_broken_hierarchy (Waiman Long) [1937825]
+- docs: cgroup-v1: reflect the deprecation of the non-hierarchical mode (Waiman Long) [1937825]
+- mm: memcg: deprecate the non-hierarchical mode (Waiman Long) [1937825]
+- mm: memcg: fix obsolete code comments (Waiman Long) [1937825]
+- mm/memcg: update page struct member in comments (Waiman Long) [1937825]
+- mm/rmap: always do TTU_IGNORE_ACCESS (Waiman Long) [1937825]
+- mm: memcontrol: eliminate redundant check in __mem_cgroup_insert_exceeded() (Waiman Long) [1937825]
+- mm: memcontrol: remove unused mod_memcg_obj_state() (Waiman Long) [1937825]
+- mm: memcontrol: add file_thp, shmem_thp to memory.stat (Waiman Long) [1937825]
+- mm/gup: combine put_compound_head() and unpin_user_page() (Waiman Long) [1937825]
+- mm: Convert page kmemcg type to a page memcg flag (Waiman Long) [1937825]
+- mm: Introduce page memcg flags (Waiman Long) [1937825]
+- mm: memcontrol/slab: Use helpers to access slab page's memcg_data (Waiman Long) [1937825]
+- mm: memcontrol: Use helpers to read page's memcg data (Waiman Long) [1937825]
+- hugetlbfs: fix anon huge page migration race (Waiman Long) [1937825]
+- mm: memcontrol: fix missing wakeup polling thread (Waiman Long) [1937825]
+- mm/gup: use unpin_user_pages() in __gup_longterm_locked() (Waiman Long) [1937825]
+- mm/vmscan: fix NR_ISOLATED_FILE corruption on 64-bit (Waiman Long) [1937825]
+- mm/compaction: stop isolation if too many pages are isolated and we have pages to migrate (Waiman Long) [1937825]
+- mm/compaction: count pages and stop correctly during page isolation (Waiman Long) [1937825]
+- mm: kmem: enable kernel memcg accounting from interrupt contexts (Waiman Long) [1937825]
+- mm: kmem: prepare remote memcg charging infra for interrupt contexts (Waiman Long) [1937825]
+- mm: kmem: remove redundant checks from get_obj_cgroup_from_current() (Waiman Long) [1937825]
+- mm, memcg: rework remote charging API to support nesting (Waiman Long) [1937825]
+- mm: use self-explanatory macros rather than "2" (Waiman Long) [1937825]
+- mm/vmscan: allow arbitrary sized pages to be paged out (Waiman Long) [1937825]
+- mm/rmap: fix assumptions of THP size (Waiman Long) [1937825]
+- mm/huge_memory: fix can_split_huge_page assumption of THP size (Waiman Long) [1937825]
+- mm/huge_memory: fix page_trans_huge_mapcount assumption of THP size (Waiman Long) [1937825]
+- mm/huge_memory: fix split assumption of page size (Waiman Long) [1937825]
+- mm/huge_memory: fix total_mapcount assumption of page size (Waiman Long) [1937825]
+- mm/page_owner: change split_page_owner to take a count (Waiman Long) [1937825]
+- mm/memory: remove page fault assumption of compound page size (Waiman Long) [1937825]
+- mm/filemap: fix page cache removal for arbitrary sized THPs (Waiman Long) [1937825]
+- mm/vmscan: fix comments for isolate_lru_page() (Waiman Long) [1937825]
+- mm/vmscan: fix infinite loop in drop_slab_node (Waiman Long) [1937825]
+- mm: move call to compound_head() in release_pages() (Waiman Long) [1937825]
+- mm: account PMD tables like PTE tables (Waiman Long) [1937825]
+- mm/memcg: fix device private memcg accounting (Waiman Long) [1937825]
+- mm: memcontrol: add the missing numa_stat interface for cgroup v2 (Waiman Long) [1937825]
+- mm: remove activate_page() from unuse_pte() (Waiman Long) [1937825]
+- bdi: replace BDI_CAP_NO_{WRITEBACK,ACCT_DIRTY} with a single flag (Waiman Long) [1937825]
+- mm/thp: fix __split_huge_pmd_locked() for migration PMD (Waiman Long) [1937825]
+- mm: fix check_move_unevictable_pages() on THP (Waiman Long) [1937825]
+- mm: migration of hugetlbfs page skip memcg (Waiman Long) [1937825]
+- mm: and drivers core: Convert hugetlb_report_node_meminfo to sysfs_emit (Waiman Long) [1937825]
+- drivers core: Miscellaneous changes for sysfs_emit (Waiman Long) [1937825]
+- drivers core: Reindent a couple uses around sysfs_emit (Waiman Long) [1937825]
+- drivers core: Remove strcat uses around sysfs_emit and neaten (Waiman Long) [1937825]
+- drivers core: Use sysfs_emit and sysfs_emit_at for show(device *...) functions (Waiman Long) [1937825]
+- sysfs: Add sysfs_emit and sysfs_emit_at to format sysfs output (Waiman Long) [1937825]
+- mm: fix pin vs. gup mismatch with gate pages (Waiman Long) [1937825]
+- mm/gup: use a standard migration target allocation callback (Waiman Long) [1937825]
+- mm/hugetlb: make hugetlb migration callback CMA aware (Waiman Long) [1937825]
+- mm/gup: restrict CMA region by using allocation scope API (Waiman Long) [1937825]
+- mm/page_alloc: remove a wrapper for alloc_migration_target() (Waiman Long) [1937825]
+- mm/mempolicy: use a standard migration target allocation callback (Waiman Long) [1937825]
+- mm/migrate: introduce a standard migration target allocation function (Waiman Long) [1937825]
+- mm/migrate: clear __GFP_RECLAIM to make the migration callback consistent with regular THP allocations (Waiman Long) [1937825]
+- mm/hugetlb: unify migration callbacks (Waiman Long) [1937825]
+- mm/migrate: move migration helper from .h to .c (Waiman Long) [1937825]
+- mm/page_isolation: prefer the node of the source page (Waiman Long) [1937825]
+- hugetlbfs: remove call to huge_pte_alloc without i_mmap_rwsem (Waiman Long) [1937825]
+- mm, oom: show process exiting information in __oom_kill_process() (Waiman Long) [1937825]
+- doc, mm: clarify /proc/<pid>/oom_score value range (Waiman Long) [1937825]
+- doc, mm: sync up oom_score_adj documentation (Waiman Long) [1937825]
+- mm, oom: make the calculation of oom badness more accurate (Waiman Long) [1937825]
+- mm: vmscan: consistent update to pgrefill (Waiman Long) [1937825]
+- mm/vmscan.c: fix typo (Waiman Long) [1937825]
+- mm: memcontrol: account kernel stack per node (Waiman Long) [1937825]
+- mm/hugetlb.c: fix pages per hugetlb calculation (Waiman Long) [1937825]
+- doc: THP CoW fault no longer allocate THP (Waiman Long) [1937825]
+- driver core: platform: expose numa_node to users in sysfs (Waiman Long) [1937825]
+- nilfs2: fix null pointer dereference at nilfs_segctor_do_construct() (Waiman Long) [1937825]
+- mm, memcg: fix some typos in memcontrol.c (Waiman Long) [1937825]
+- mm/vmsan: fix some typos in comment (Waiman Long) [1937825]
+- mm: thp: don't need to drain lru cache when splitting and mlocking THP (Waiman Long) [1937825]
+- mm/vmscan: update the comment of should_continue_reclaim() (Waiman Long) [1937825]
+- mm/vmscan.c: change prototype for shrink_page_list (Waiman Long) [1937825]
+- mm/vmscan: count layzfree pages and fix nr_isolated_* mismatch (Waiman Long) [1937825]
+- mm/vmscan.c: use update_lru_size() in update_lru_sizes() (Waiman Long) [1937825]
+- mm: simplify calling a compound page destructor (Waiman Long) [1937825]
+- mm/page_alloc: integrate classzone_idx and high_zoneidx (Waiman Long) [1937825]
+- mm/page_alloc: use ac->high_zoneidx for classzone_idx (Waiman Long) [1937825]
+- mm/page_alloc.c: extract check_[new|free]_page_bad() common part to page_bad_reason() (Waiman Long) [1937825]
+- mm/page_alloc.c: rename free_pages_check() to check_free_page() (Waiman Long) [1937825]
+- mm/page_alloc.c: rename free_pages_check_bad() to check_free_page_bad() (Waiman Long) [1937825]
+- mm/page_alloc.c: bad_flags is not necessary for bad_page() (Waiman Long) [1937825]
+- mm/page_alloc.c: bad_[reason|flags] is not necessary when PageHWPoison (Waiman Long) [1937825]
+- scs: Report SCS usage in bytes rather than number of entries (Waiman Long) [1937825]
+- scs: Move accounting into alloc/free functions (Waiman Long) [1937825]
+- mm/vmscan: remove unnecessary argument description of isolate_lru_pages() (Waiman Long) [1937825]
+- scs: Add support for stack usage debugging (Waiman Long) [1937825]
+- scs: Add page accounting for shadow call stack allocations (Waiman Long) [1937825]
+- scs: Add support for Clang's Shadow Call Stack (SCS) (Waiman Long) [1937825]
+- mm/migrate.c: unify "not queued for migration" handling in do_pages_move() (Waiman Long) [1937825]
+- mm/migrate.c: check pagelist in move_pages_and_store_status() (Waiman Long) [1937825]
+- mm/migrate.c: wrap do_move_pages_to_node() and store_status() (Waiman Long) [1937825]
+- mm/migrate.c: no need to check for i > start in do_pages_move() (Waiman Long) [1937825]
+- mm/hugetlb: remove unnecessary memory fetch in PageHeadHuge() (Waiman Long) [1937825]
+- hugetlbfs: Use i_mmap_rwsem to address page fault/truncate race (Waiman Long) [1937825]
+- hugetlbfs: use i_mmap_rwsem for more pmd sharing synchronization (Waiman Long) [1937825]
+- mm,thp,compaction,cma: allow THP migration for CMA allocations (Waiman Long) [1937825]
+- mm,compaction,cma: add alloc_contig flag to compact_control (Waiman Long) [1937825]
+- mm/vmscan.c: do_try_to_free_pages(): clean code by removing unnecessary assignment (Waiman Long) [1937825]
+- mm/vmscan.c: make may_enter_fs bool in shrink_page_list() (Waiman Long) [1937825]
+- mm/vmscan.c: fix data races using kswapd_classzone_idx (Waiman Long) [1937825]
+- mm/vmscan.c: remove cpu online notification for now (Waiman Long) [1937825]
+- mm: vmscan: replace open codings to NUMA_NO_NODE (Waiman Long) [1937825]
+- mm: swap: make page_evictable() inline (Waiman Long) [1937825]
+- mm/swap.c: not necessary to export __pagevec_lru_add() (Waiman Long) [1937825]
+- mm/gup: fix omission of check on FOLL_LONGTERM in gup fast path (Waiman Long) [1937825]
+- mm: dump_page(): additional diagnostics for huge pinned pages (Waiman Long) [1937825]
+- mm: improve dump_page() for compound pages (Waiman Long) [1937825]
+- selftests/vm: run_vmtests: invoke gup_benchmark with basic FOLL_PIN coverage (Waiman Long) [1937825]
+- mm/gup_benchmark: support pin_user_pages() and related calls (Waiman Long) [1937825]
+- mm/gup: /proc/vmstat: pin_user_pages (FOLL_PIN) reporting (Waiman Long) [1937825]
+- mm/gup: page->hpage_pinned_refcount: exact pin counts for huge pages (Waiman Long) [1937825]
+- mm/gup: track FOLL_PIN pages (Waiman Long) [1937825]
+- mm/gup: pass gup flags to two more routines (Waiman Long) [1937825]
+- mm: introduce page_ref_sub_return() (Waiman Long) [1937825]
+- mm/gup: pass a flags arg to __gup_device_* functions (Waiman Long) [1937825]
+- mm/gup: split get_user_pages_remote() into two routines (Waiman Long) [1937825]
+- sysfs: fix static inline declaration of sysfs_groups_change_owner() (Waiman Long) [1937825]
+- drivers/base/cpu: Simplify s*nprintf() usages (Waiman Long) [1937825]
+- drivers/base/cpu: Use scnprintf() for avoiding potential buffer overflow (Waiman Long) [1937825]
+- sysfs: add sysfs_change_owner() (Waiman Long) [1937825]
+- sysfs: add sysfs_group{s}_change_owner() (Waiman Long) [1937825]
+- sysfs: add sysfs_link_change_owner() (Waiman Long) [1937825]
+- sysfs: add sysfs_file_change_owner() (Waiman Long) [1937825]
+- mm/huge_memory.c: reduce critical section protected by split_queue_lock (Waiman Long) [1937825]
+- mm/huge_memory.c: use head to emphasize the purpose of page (Waiman Long) [1937825]
+- mm/huge_memory.c: use head to check huge zero page (Waiman Long) [1937825]
+- mm/gup: move try_get_compound_head() to top, fix minor issues (Waiman Long) [1937825]
+- userfaultfd: wrap the common dst_vma check into an inlined function (Waiman Long) [1937825]
+- userfaultfd: remove unnecessary WARN_ON() in __mcopy_atomic_hugetlb() (Waiman Long) [1937825]
+- userfaultfd: use vma_pagesize for all huge page size calculation (Waiman Long) [1937825]
+- mm/hugetlb: avoid looping to the same hugepage if !pages and !vmas (Waiman Long) [1937825]
+- hugetlb: remove unused hstate in hugetlb_fault_mutex_hash() (Waiman Long) [1937825]
+- hugetlbfs: convert macros to static inline, fix sparse warning (Waiman Long) [1937825]
+- hugetlbfs: hugetlb_fault_mutex_hash() cleanup (Waiman Long) [1937825]
+- mm/gup.c: allow CMA migration to propagate errors back to caller (Waiman Long) [1937825]
+- mm/gup_benchmark: fix MAP_HUGETLB case (Waiman Long) [1937825]
+- mm/gup_benchmark: add a missing "w" to getopt string (Waiman Long) [1937825]
+- mm, page_owner: rename flag indicating that page is allocated (Waiman Long) [1937825]
+- mm, page_owner: decouple freeing stack trace from debug_pagealloc (Waiman Long) [1937825]
+- mm, page_owner: fix off-by-one error in __set_page_owner_handle() (Waiman Long) [1937825]
+- mm/filemap.c: don't initiate writeback if mapping has no dirty pages (Waiman Long) [1937825]
+- mm, page_owner, debug_pagealloc: save and dump freeing stack trace (Waiman Long) [1937825]
+- mm, page_owner: keep owner info when freeing the page (Waiman Long) [1937825]
+- mm, page_owner: record page owner for each subpage (Waiman Long) [1937825]
+- mm: introduce page_size() (Waiman Long) [1937825]
+- mm, tracing: Print symbol name for call_site in trace events (Waiman Long) [1937825]
+- mm/gup.c: mark undo_dev_pagemap as __maybe_unused (Waiman Long) [1937825]
+- mm, memcg: introduce memory.events.local (Waiman Long) [1937825]
+- memcg, fsnotify: no oom-kill for remote memcg charging (Waiman Long) [1937825]
+- mm/swap_state.c: simplify total_swapcache_pages() with get_swap_device() (Waiman Long) [1937825]
+- mm: make !CONFIG_HUGE_PAGE wrappers into static inlines (Waiman Long) [1937825]
+- include/linux/hugetlb.h: convert to use vm_fault_t (Waiman Long) [1937825]
+- mm/page_ext.c: fix an imbalance with kmemleak (Waiman Long) [1937825]
+- mm/hugetlb: add prot_modify_start/commit sequence for hugetlb update (Waiman Long) [1937825]
+- iov_iter: optimize page_copy_sane() (Waiman Long) [1937825]
+- mm: remove __hugepage_set_anon_rmap() (Waiman Long) [1937825]
+- mm: remove pte_lock_deinit() (Waiman Long) [1937825]
+- mm/debug.c: make "migrate_reason_names[]" const char * (Waiman Long) [1937825]
+- vmscan: return NODE_RECLAIM_NOSCAN in node_reclaim() when CONFIG_NUMA is n (Waiman Long) [1937825]
+- tools/testing/selftests/vm/gup_benchmark.c: add MAP_HUGETLB option (Waiman Long) [1937825]
+- tools/testing/selftests/vm/gup_benchmark.c: add MAP_SHARED option (Waiman Long) [1937825]
+- tools/testing/selftests/vm/gup_benchmark.c: allow user specified file (Waiman Long) [1937825]
+- tools/testing/selftests/vm/gup_benchmark.c: fix 'write' flag usage (Waiman Long) [1937825]
+- mm/page_ext.c: constify lookup_page_ext() argument (Waiman Long) [1937825]
+- mm, page_alloc: actually ignore mempolicies for high priority allocations (Waiman Long) [1937825]
+- thp: use mm_file_counter to determine update which rss counter (Waiman Long) [1937825]
+
+* Fri May 21 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-307.el8]
+- RDMA/cxgb4: Fix the reported max_recv_sge value (Kamal Heib) [1931850 1918264]
+- RDMA/qedr: Fix kernel panic when trying to access recv_cq (Kamal Heib) [1931850]
+- RDMA/addr: Be strict with gid size (Kamal Heib) [1931850]
+- IB/hfi1: Fix probe time panic when AIP is enabled with a buggy BIOS (Kamal Heib) [1931850 1921704 1953593]
+- RDMA/rxe: Fix errant WARN_ONCE in rxe_completer() (Kamal Heib) [1931850]
+- RDMA/rxe: Fix extra deref in rxe_rcv_mcast_pkt() (Kamal Heib) [1931850]
+- RDMA/rxe: Fix FIXME in rxe_udp_encap_recv() (Kamal Heib) [1931850]
+- RDMA/rxe: Fix missed IB reference counting in loopback (Kamal Heib) [1931850]
+- RDMA/uverbs: Fix kernel-doc warning of _uverbs_alloc (Kamal Heib) [1931850]
+- RDMA/rxe: Fix missing kconfig dependency on CRYPTO (Kamal Heib) [1931850]
+- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (Kamal Heib) [1931850]
+- RDMA/rxe: Remove unused pkt->offset (Kamal Heib) [1931850]
+- RDMA/ucma: Fix use-after-free bug in ucma_create_uevent (Kamal Heib) [1931850]
+- RDMA/core: Fix kernel doc warnings for ib_port_immutable_read() (Kamal Heib) [1931850]
+- RDMA/ipoib: Remove racy Subnet Manager sendonly join checks (Kamal Heib) [1931850]
+- RDMA/rxe: Cleanup init_send_wqe (Kamal Heib) [1931850]
+- RDMA/rxe: Fix minor coding style issues (Kamal Heib) [1931850]
+- RDMA/rxe: Correct skb on loopback path (Kamal Heib) [1931850]
+- RDMA/rxe: Fix coding error in rxe_rcv_mcast_pkt (Kamal Heib) [1931850]
+- RDMA/rxe: Remove useless code in rxe_recv.c (Kamal Heib) [1931850]
+- RDMA/rxe: Fix coding error in rxe_recv.c (Kamal Heib) [1931850]
+- RDMA/core: Introduce and use API to read port immutable data (Kamal Heib) [1931850]
+- RDMA/pvrdma: Replace spin_lock_irqsave with spin_lock in hard IRQ (Kamal Heib) [1931850]
+- IB/core: Use valid port number to check link layer (Kamal Heib) [1931850]
+- IB/cm: Avoid a loop when device has 255 ports (Kamal Heib) [1931850]
+- RDMA/efa: Remove unused syndrome enum values (Kamal Heib) [1931850]
+- RDMA/efa: Remove unused 'select' field from get/set feature command descriptor (Kamal Heib) [1931850]
+- RDMA/efa: Remove unnecessary indentation in defs comments (Kamal Heib) [1931850]
+- RDMA/efa: Remove duplication of upper/lower_32_bits (Kamal Heib) [1931850]
+- RDMA/efa: Remove redundant NULL pointer check of CQE (Kamal Heib) [1931850]
+- RDMA/hw/hfi1/rc: Demote incorrectly populated kernel-doc header (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/verbs: Demote non-conforming doc header and fix a misspelling (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/user_exp_rcv: Demote half-documented and kernel-doc abuses (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/ud: Fix a little more doc-rot (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/uc: Fix a little doc-rot (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/tid_rdma: Fix a plethora of kernel-doc issues (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/sdma: Fix misnaming of 'sdma_send_txlist()'s 'count_out' param (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/ruc: Fix a small formatting and description issues (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/qp: Fix some formatting issues and demote kernel-doc abuse (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/rc: Fix a few function documentation issues (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/pio_copy: Provide entry for 'pio_copy()'s 'dd' param (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/pcie: Demote kernel-doc abuses (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/netdev_rx: Fix misdocumentation of the 'start_id' param (Kamal Heib) [1931850 1921704]
+- RDMA/sw/rdmavt/qp: Fix kernel-doc formatting problem (Kamal Heib) [1931850 1921704]
+- RDMA/sw/rdmavt/mad: Fix misspelling of 'rvt_process_mad()'s 'in_mad_size' param (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/msix: Add description for 'name' and remove superfluous param 'idx' (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/mad: Demote half-completed kernel-doc header fix another (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/iowait: Demote half-completed kernel-doc and fix formatting issue in another (Kamal Heib) [1931850 1921704]
+- RDMA/sw/rdmavt/srq: Fix a couple of kernel-doc issues (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/intr: Fix some kernel-doc formatting issues (Kamal Heib) [1931850 1921704]
+- RDMA/rxe: Replace missing rxe_pool_get_index_locked (Kamal Heib) [1931850]
+- RDMA/rxe: Remove unneeded pool->state (Kamal Heib) [1931850]
+- RDMA/rxe: Remove references to ib_device and pool (Kamal Heib) [1931850]
+- RDMA/rxe: Remove RXE_POOL_ATOMIC (Kamal Heib) [1931850]
+- RDMA/rxe: Fix misleading comments and names (Kamal Heib) [1931850]
+- RDMA/rxe: Fix bug in rxe_alloc() (Kamal Heib) [1931850]
+- IB/umad: Return EPOLLERR in case of when device disassociated (Kamal Heib) [1931850]
+- IB/umad: Return EIO in case of when device disassociated (Kamal Heib) [1931850]
+- RDMA/sw/rdmavt/qp: Fix a bunch of kernel-doc misdemeanours (Kamal Heib) [1931850 1921704]
+- RDMA/sw/rdmavt/mr: Fix some issues related to formatting and missing descriptions (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/file_ops: Fix' manage_rcvq()'s 'arg' param (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/exp_rcv: Fix some kernel-doc formatting issues (Kamal Heib) [1931850 1921704]
+- RDMA/sw/rdmavt/mcast: Demote incomplete kernel-doc header (Kamal Heib) [1931850 1921704]
+- RDMA/sw/rdmavt/mad: Fix 'rvt_process_mad()'s documentation header (Kamal Heib) [1931850 1921704]
+- RDMA/hw/hfi1/chip: Fix a bunch of kernel-doc formatting and spelling issues (Kamal Heib) [1931850 1921704]
+- RDMA/sw/rdmavt/cq: Demote hardly complete kernel-doc header (Kamal Heib) [1931850 1921704]
+- RDMA/sw/rdmavt/vt: Fix formatting issue and update description for 'context' (Kamal Heib) [1931850 1921704]
+- RDMA/hw/efa/efa_com: Stop using param description notation for non-params (Kamal Heib) [1931850]
+- RDMA/uverbs: Don't set rcq for a QP if qp_type is IB_QPT_XRC_INI (Kamal Heib) [1931850]
+- RDMA/core/iwpm_msg: Add proper descriptions for 'skb' param (Kamal Heib) [1931850]
+- RDMA/core/iwpm_util: Fix some param description misspellings (Kamal Heib) [1931850]
+- RDMA/core/counters: Demote non-conformant kernel-doc headers (Kamal Heib) [1931850]
+- RDMA/core/restrack: Fix kernel-doc formatting issue (Kamal Heib) [1931850]
+- RDMA/core/sa_query: Demote non-conformant kernel-doc header (Kamal Heib) [1931850]
+- RDMA/core/multicast: Provide description for 'ib_init_ah_from_mcmember()'s 'rec' param (Kamal Heib) [1931850]
+- RDMA/core/roce_gid_mgmt: Fix misnaming of 'rdma_roce_rescan_device()'s param 'ib_dev' (Kamal Heib) [1931850]
+- RDMA/core/cache: Fix some misspellings, missing and superfluous param descriptions (Kamal Heib) [1931850]
+- RDMA/core: device: Fix formatting in worthy kernel-doc header and demote another (Kamal Heib) [1931850]
+- IB/iser: Simplify prot_caps setting (Kamal Heib) [1931850]
+- IB/iser: Enforce iser_max_sectors to be greater than 0 (Kamal Heib) [1931850]
+- IB/iser: Protect iscsi_max_lun module param using callback (Kamal Heib) [1931850]
+- IB/iser: Remove unneeded semicolons (Kamal Heib) [1931850]
+- IB/isert: Simplify signature cap check (Kamal Heib) [1931850]
+- IB/isert: Remove unneeded semicolon (Kamal Heib) [1931850]
+- IB/isert: Remove unneeded new lines (Kamal Heib) [1931850]
+- RDMA/nldev: Return an error message on failure to turn auto mode (Kamal Heib) [1931850]
+- RDMA/rxe: Fix race in rxe_mcast.c (Kamal Heib) [1931850]
+- RDMA/rxe: Add unlocked versions of pool APIs (Kamal Heib) [1931850]
+- RDMA/rxe: Make add/drop key/index APIs type safe (Kamal Heib) [1931850]
+- RDMA/rxe: Make pool lookup and alloc APIs type safe (Kamal Heib) [1931850]
+- RDMA/rxe: Add elem_offset field to rxe_type_info (Kamal Heib) [1931850]
+- RDMA/rxe: Let pools support both keys and indices (Kamal Heib) [1931850]
+- RDMA/rxe: Remove unneeded RXE_POOL_ATOMIC flag (Kamal Heib) [1931850]
+- RDMA/rxe: Add check for supported QP types (Kamal Heib) [1931850]
+- RDMA: Use kzalloc for allocating only one thing (Kamal Heib) [1931850]
+- RDMA/cma: Delete useless kfree code (Kamal Heib) [1931850]
+- RDMA/hfi1: remove h from printk format specifier (Kamal Heib) [1931850 1921704]
+- RDMA: Convert comma to semicolon (Kamal Heib) [1931850]
+- net: devlink: Add unused port flavour (Petr Oros) [1943273]
+- devlink: add .trap_group_action_set() callback (Petr Oros) [1943273]
+- devlink: add parser error drop packet traps (Petr Oros) [1943273]
+- drop_monitor: Perform cleanup upon probe registration failure (Petr Oros) [1943273]
+- selftests: net: Add drop monitor test (Petr Oros) [1943273]
+- drop_monitor: Filter control packets in drop monitor (Petr Oros) [1943273]
+- drop_monitor: Remove duplicate struct (Petr Oros) [1943273]
+- drop_monitor: Remove no longer used functions (Petr Oros) [1943273]
+- drop_monitor: Convert to using devlink tracepoint (Petr Oros) [1943273]
+- drop_monitor: Prepare probe functions for devlink tracepoint (Petr Oros) [1943273]
+- devlink: Add a tracepoint for trap reports (Petr Oros) [1943273]
+- net: devlink: fix reporter dump dumpit (Petr Oros) [1943273]
+- devlink: have genetlink code to parse the attrs during dumpit (Petr Oros) [1943273]
+- netfilter: nf_tables: add direct calls for all builtin expressions (Florian Westphal) [1953320]
+- netfilter: nf_tables: handle meta/lookup with direct call (Florian Westphal) [1953320]
+- ionic: linearize tso skb with too many frags (Jonathan Toppins) [1940696]
+- i40e: fix the restart auto-negotiation after FEC modified (Stefan Assmann) [1725560]
+- ovl: skip getxattr of security labels (Miklos Szeredi) [1956340]
+- ovl: fix dentry leak in ovl_get_redirect (Miklos Szeredi) [1956340]
+- ovl: avoid deadlock on directory ioctl (Miklos Szeredi) [1956340]
+- cap: fix conversions on getxattr (Miklos Szeredi) [1956340]
+- ovl: perform vfs_getxattr() with mounter creds (Miklos Szeredi) [1956340]
+- ovl: add warning on user_ns mismatch (Miklos Szeredi) [1956340]
+- ovl: unprivieged mounts (Miklos Szeredi) [1956340]
+- ovl: do not get metacopy for userxattr (Miklos Szeredi) [1956340]
+- ovl: do not fail because of O_NOATIME (Miklos Szeredi) [1956340]
+- ovl: do not fail when setting origin xattr (Miklos Szeredi) [1956340]
+- ovl: user xattr (Miklos Szeredi) [1956340]
+- ovl: simplify file splice (Miklos Szeredi) [1956340]
+- ovl: make ioctl() safe (Miklos Szeredi) [1956340]
+- ovl: check privs before decoding file handle (Miklos Szeredi) [1956340]
+- vfs: verify source area in vfs_dedupe_file_range_one() (Miklos Szeredi) [1956340]
+- vfs: move cap_convert_nscap() call into vfs_setxattr() (Miklos Szeredi) [1956340]
+- ovl: fix incorrect extent info in metacopy case (Miklos Szeredi) [1956340]
+- ovl: expand warning in ovl_d_real() (Miklos Szeredi) [1956340]
+- ovl: document lower modification caveats (Miklos Szeredi) [1956340]
+- ovl: warn about orphan metacopy (Miklos Szeredi) [1956340]
+- ovl: doc clarification (Miklos Szeredi) [1956340]
+- ovl: introduce new "uuid=off" option for inodes index feature (Miklos Szeredi) [1956340]
+- ovl: propagate ovl_fs to ovl_decode_real_fh and ovl_encode_real_fh (Miklos Szeredi) [1956340]
+- ovl: use generic vfs_ioc_setflags_prepare() helper (Miklos Szeredi) [1956340]
+- ovl: support [S|G]ETFLAGS and FS[S|G]ETXATTR ioctls for directories (Miklos Szeredi) [1956340]
+- ovl: rearrange ovl_can_list() (Miklos Szeredi) [1956340]
+- ovl: enumerate private xattrs (Miklos Szeredi) [1956340]
+- ovl: pass ovl_fs down to functions accessing private xattrs (Miklos Szeredi) [1956340]
+- ovl: drop flags argument from ovl_do_setxattr() (Miklos Szeredi) [1956340]
+- ovl: adhere to the vfs_ vs. ovl_do_ conventions for xattrs (Miklos Szeredi) [1956340]
+- ovl: use ovl_do_getxattr() for private xattr (Miklos Szeredi) [1956340]
+- ovl: fold ovl_getxattr() into ovl_get_redirect_xattr() (Miklos Szeredi) [1956340]
+- ovl: clean up ovl_getxattr() in copy_up.c (Miklos Szeredi) [1956340]
+- duplicate ovl_getxattr() (Miklos Szeredi) [1956340]
+- ovl: provide a mount option "volatile" (Miklos Szeredi) [1956340 1928211]
+- ovl: check for incompatible features in work dir (Miklos Szeredi) [1956340 1928211]
+- ovl: fix lookup of indexed hardlinks with metacopy (Miklos Szeredi) [1956340]
+- ovl: fix unneeded call to ovl_change_flags() (Miklos Szeredi) [1956340]
+- ovl: fix mount option checks for nfs_export with no upperdir (Miklos Szeredi) [1956340]
+- ovl: force read-only sb on failure to create index dir (Miklos Szeredi) [1956340]
+- ovl: fix regression with re-formatted lower squashfs (Miklos Szeredi) [1956340]
+- ovl: fix oops in ovl_indexdir_cleanup() with nfs_export=on (Miklos Szeredi) [1956340]
+- ovl: relax WARN_ON() when decoding lower directory file handle (Miklos Szeredi) [1956340]
+- ovl: remove not used argument in ovl_check_origin (Miklos Szeredi) [1956340]
+- ovl: change ovl_copy_up_flags static (Miklos Szeredi) [1956340]
+- ovl: inode reference leak in ovl_is_inuse true case. (Miklos Szeredi) [1956340]
+- ovl: remove unnecessary lock check (Miklos Szeredi) [1956340]
+- ovl: make oip->index bool (Miklos Szeredi) [1956340]
+- ovl: only pass ->ki_flags to ovl_iocb_to_rwf() (Miklos Szeredi) [1956340]
+- ovl: make private mounts longterm (Miklos Szeredi) [1956340]
+- ovl: get rid of redundant members in struct ovl_fs (Miklos Szeredi) [1956340]
+- ovl: add accessor for ofs->upper_mnt (Miklos Szeredi) [1956340]
+- ovl: drop negative dentry in upper layer (Miklos Szeredi) [1956340]
+- ovl: check permission to open real file (Miklos Szeredi) [1956340]
+- ovl: call secutiry hook in ovl_real_ioctl() (Miklos Szeredi) [1956340]
+- ovl: verify permissions in ovl_path_open() (Miklos Szeredi) [1956340]
+- ovl: switch to mounter creds in readdir (Miklos Szeredi) [1956340]
+- ovl: pass correct flags for opening real directory (Miklos Szeredi) [1956340]
+- ovl: whiteout inode sharing (Miklos Szeredi) [1956340]
+- ovl: inherit SB_NOSEC flag from upperdir (Miklos Szeredi) [1956340]
+- ovl: skip overlayfs superblocks at global sync (Miklos Szeredi) [1956340]
+- ovl: index dir act as work dir (Miklos Szeredi) [1956340]
+- ovl: prepare to copy up without workdir (Miklos Szeredi) [1956340]
+- ovl: cleanup non-empty directories in ovl_indexdir_cleanup() (Miklos Szeredi) [1956340]
+- ocxl: Add new kernel traces (Steve Best) [1907530]
+- ocxl: Add mmu notifier (Steve Best) [1907530]
+- ocxl: Update the Process Element Entry (Steve Best) [1907530]
+- ocxl: Initiate a TLB invalidate command (Steve Best) [1907530]
+- ocxl: Assign a register set to a Logical Partition (Steve Best) [1907530]
+- powerpc/mce: Remove per cpu variables from MCE handlers (Gustavo Walbon) [1921683]
+- powerpc/mce: Reduce the size of event arrays (Gustavo Walbon) [1921683]
+- tools/power turbostat: Support Ice Lake D (Prarit Bhargava) [1943439]
+- PM: hibernate: x86: Use crc32 instead of md5 for hibernation e820 integrity check (Chris von Recklinghausen) [1944636]
+- vhost/vsock: add IOTLB API support (Stefano Garzarella) [1894101]
+- vhost: Fix vhost_vq_reset() (Laurent Vivier) [1919126]
+- perf trace: Fix race in signal handling (Michael Petlan) [1928380]
+- scsi: sd: sd_zbc: Don't pass GFP_NOIO to kvcalloc (Ewan D. Milne) [1953699]
+- sd_zbc: clear zone resources for non-zoned case (Ewan D. Milne) [1953699]
+- scsi: scsi_debug: Fix a memory leak (Ewan D. Milne) [1953699]
+- scsi: sd: Warn if unsupported ZBC device is probed (Ewan D. Milne) [1953699]
+- scsi: core: Add 'set_status_byte()' accessor (Ewan D. Milne) [1953699]
+- scsi: scsi_debug: Do not set COMMAND_COMPLETE (Ewan D. Milne) [1953699]
+- scsi: scsi_transport_srp: Don't block target in failfast state (Ewan D. Milne) [1953699]
+- scsi: scsi_debug: Fix memleak in scsi_debug_init() (Ewan D. Milne) [1953699]
+- scsi: core: Fix -Wformat for scsi_host (Ewan D. Milne) [1953699]
+- scsi: doc: Fix some kernel-doc markups (Ewan D. Milne) [1953699]
+- scsi: sr: Initialize ->cmd_len (Ewan D. Milne) [1953699]
+- scsi: core: Set sc_data_direction to DMA_NONE for no-transfer commands (Ewan D. Milne) [1953699]
+- scsi: core: Remove scsi_setup_cmnd() and scsi_setup_fs_cmnd() (Ewan D. Milne) [1953699]
+- scsi: core: Clean up allocation and freeing of sgtables (Ewan D. Milne) [1953699]
+- scsi: core: Rename scsi_mq_prep_fn() to scsi_prepare_cmd() (Ewan D. Milne) [1953699]
+- scsi: core: Rename scsi_prep_state_check() to scsi_device_state_check() (Ewan D. Milne) [1953699]
+- scsi: core: Use rq_dma_dir in scsi_setup_cmnd() (Ewan D. Milne) [1953699]
+- scsi: core: Remove scsi_init_cmd_errh (Ewan D. Milne) [1953699]
+- scsi: sd: Allow user to configure command retries (Ewan D. Milne) [1953699]
+- scsi: sd: sd_zbc: Fix handling of host-aware ZBC disks (Ewan D. Milne) [1953699]
+- scsi: sd_zbc: Improve zone revalidation (Ewan D. Milne) [1953699]
+- scsi: sd_zbc: Don't limit max_zone_append sectors to max_hw_sectors (Ewan D. Milne) [1953699]
+- scsi: sd_zbc: Remove unused inline functions (Ewan D. Milne) [1953699]
+- nvme: fix the nsid value to print in nvme_validate_or_alloc_ns (Gopal Tiwari) [1921591]
+- nvme-pci: add the DISABLE_WRITE_ZEROES quirk for a Samsung PM1725a (Gopal Tiwari) [1921591]
+- nvme-rdma: Fix a use after free in nvmet_rdma_write_data_done (Gopal Tiwari) [1921591]
+- nvme-core: check ctrl css before setting up zns (Gopal Tiwari) [1921591]
+- nvme-fc: fix racing controller reset and create association (Gopal Tiwari) [1921591]
+- nvme-fc: return NVME_SC_HOST_ABORTED_CMD when a command has been aborted (Gopal Tiwari) [1921591]
+- nvme-fc: set NVME_REQ_CANCELLED in nvme_fc_terminate_exchange() (Gopal Tiwari) [1921591]
+- nvme: add NVME_REQ_CANCELLED flag in nvme_cancel_request() (Gopal Tiwari) [1921591]
+- nvme: simplify error logic in nvme_validate_ns() (Gopal Tiwari) [1921591]
+- nvme: set max_zone_append_sectors nvme_revalidate_zones (Gopal Tiwari) [1921591]
+- nvmet: model_number must be immutable once set (Gopal Tiwari) [1921591]
+- nvme-fabrics: fix kato initialization (Gopal Tiwari) [1921591]
+- nvme-hwmon: Return error code when registration fails (Gopal Tiwari) [1921591]
+- nvme-pci: add quirks for Lexar 256GB SSD (Gopal Tiwari) [1921591]
+- nvme-pci: mark Kingston SKC2000 as not supporting the deepest power state (Gopal Tiwari) [1921591]
+- nvme-pci: mark Seagate Nytro XM1440 as QUIRK_NO_NS_DESC_LIST. (Gopal Tiwari) [1921591]
+- nvme-tcp: fix crash triggered with a dataless request submission (Gopal Tiwari) [1921591]
+- nvme-hwmon: rework to avoid devm allocation (Gopal Tiwari) [1921591]
+- nvme: add 48-bit DMA address quirk for Amazon NVMe controllers (Gopal Tiwari) [1921591]
+- nvmet: remove else at the end of the function (Gopal Tiwari) [1921591]
+- nvmet: add helper to report invalid opcode (Gopal Tiwari) [1921591]
+- nvmet: add nvmet_req_subsys() helper (Gopal Tiwari) [1921591]
+- nvmet: use invalid cmd opcode helper (Gopal Tiwari) [1921591]
+- nvmet: use invalid cmd opcode helper (Gopal Tiwari) [1921591]
+- nvmet-fc: add a missing __rcu annotation to nvmet_fc_tgt_assoc.queues (Gopal Tiwari) [1921591]
+- nvme-multipath: set nr_zones for zoned namespaces (Gopal Tiwari) [1921591]
+- nvmet: make nvmet_find_namespace() req based (Gopal Tiwari) [1921591]
+- nvmet: set status to 0 in case for invalid nsid (Gopal Tiwari) [1921591]
+- nvmet: return uniform error for invalid ns (Gopal Tiwari) [1921591]
+- nvmet: remove extra variable in id-ns handler (Gopal Tiwari) [1921591]
+- nvmet-tcp: fix receive data digest calculation for multiple h2cdata PDUs (Gopal Tiwari) [1921591]
+- nvme-fabrics: avoid double completions in nvmf_fail_nonready_command (Gopal Tiwari) [1921591]
+- nvme: introduce a nvme_host_path_error helper (Gopal Tiwari) [1921591]
+- blk-mq: introduce blk_mq_set_request_complete (Gopal Tiwari) [1921591]
+- nvme-rdma: handle nvme_rdma_post_send failures better (Gopal Tiwari) [1921591]
+- nvmet-tcp: fix potential race of tcp socket closing accept_work (Gopal Tiwari) [1921591]
+- nvme: cleanup zone information initialization (Gopal Tiwari) [1921591]
+- nvmet-tcp: fix out-of-bounds access when receiving multiple h2cdata PDUs (Gopal Tiwari) [1921591]
+- nvme-pci: ignore the subsysem NQN on Phison E16 (Gopal Tiwari) [1921591]
+- nvme-pci: avoid the deepest sleep state on Kingston A2000 SSDs (Gopal Tiwari) [1921591]
+- nvme-tcp: use cancel tagset helper for tear down (Gopal Tiwari) [1921591]
+- nvme-rdma: use cancel tagset helper for tear down (Gopal Tiwari) [1921591]
+- nvme-rdma: add clean action for failed reconnection (Gopal Tiwari) [1921591]
+- nvme-core: get rid of the extra space (Gopal Tiwari) [1921591]
+- nvme-tcp: add clean action for failed reconnection (Gopal Tiwari) [1921591]
+- nvme: add tracing of zns commands (Gopal Tiwari) [1921591]
+- nvme: parse format nvm command details when tracing (Gopal Tiwari) [1921591]
+- nvme-core: add cancel tagset helpers (Gopal Tiwari) [1921591]
+- nvme: refactor ns->ctrl by request (Gopal Tiwari) [1921591]
+- nvme-tcp: fix wrong setting of request iov_iter (Gopal Tiwari) [1921591]
+- nvmet: remove extra variable in smart log nsid (Gopal Tiwari) [1921591]
+- nvme-tcp: get rid of unused helper function (Gopal Tiwari) [1921591]
+- nvmet: remove extra variable in identify ns (Gopal Tiwari) [1921591]
+- nvmet: remove extra variable in id-desclist (Gopal Tiwari) [1921591]
+- nvmet: add lba to sect conversion helpers (Gopal Tiwari) [1921591]
+- nvme: support command retry delay for admin command (Gopal Tiwari) [1921591]
+- nvmet: Use nvmet_is_port_enabled helper for pi_enable (Gopal Tiwari) [1921591]
+- nvme: constify static attribute_group structs (Gopal Tiwari) [1921591]
+- nvmet-fc: use RCU proctection for assoc_list (Gopal Tiwari) [1921591]
+- nvmet: Fix nvmet_is_port_enabled indentation (Gopal Tiwari) [1921591]
+- nvme-pci: add the DISABLE_WRITE_ZEROES quirk for a SPCC device (Gopal Tiwari) [1921591]
+- nvme-core: use list_add_tail_rcu instead of list_add_tail for nvme_init_ns_head (Gopal Tiwari) [1921591]
+- nvme: allow revalidate to set a namespace read-only (Gopal Tiwari) [1921591]
+- nvmet: set right status on error in id-ns handler (Gopal Tiwari) [1921591]
+- nvme-tcp: avoid request double completion for concurrent nvme_tcp_timeout (Gopal Tiwari) [1921591]
+- nvme-rdma: avoid request double completion for concurrent nvme_rdma_timeout (Gopal Tiwari) [1921591]
+- nvme-pci: allow use of cmb on v1.4 controllers (Gopal Tiwari) [1921591]
+- nvme: check the PRINFO bit before deciding the host buffer length (Gopal Tiwari) [1921591]
+- nvme-tcp: fix possible data corruption with bio merges (Gopal Tiwari) [1921591]
+- nvme-tcp: Fix warning with CONFIG_DEBUG_PREEMPT (Gopal Tiwari) [1921591]
+- nvme: don't intialize hwmon for discovery controllers (Gopal Tiwari) [1921591]
+- nvmet-rdma: Fix NULL deref when setting pi_enable and traddr INADDR_ANY (Gopal Tiwari) [1921591]
+- nvmet-rdma: Fix list_del corruption on queue establishment failure (Gopal Tiwari) [1921591]
+- nvme: unexport functions with no external caller (Gopal Tiwari) [1921591]
+- nvme: avoid possible double fetch in handling CQE (Gopal Tiwari) [1921591]
+- nvme: remove the unused status argument from nvme_trace_bio_complete (Gopal Tiwari) [1921591]
+- nvme-tcp: Fix possible race of io_work and direct send (Gopal Tiwari) [1921591]
+- nvme-fcloop: Fix sscanf type and list_first_entry_or_null warnings (Gopal Tiwari) [1921591]
+- nvme-fc: avoid calling _nvme_fc_abort_outstanding_ios from interrupt context (Gopal Tiwari) [1921591]
+- nvme-loop: use blk_mq_hctx_set_fq_lock_class to set loop's lock class (Gopal Tiwari) [1921591]
+- nvme: rename controller base dev_t char device (Gopal Tiwari) [1921591]
+- nvme: remove unnecessary return values (Gopal Tiwari) [1921591]
+- nvme: rename bdev operations (Gopal Tiwari) [1921591]
+- nvme: export zoned namespaces without Zone Append support read-only (Gopal Tiwari) [1921591]
+- nvme: print a warning for when listing active namespaces fails (Gopal Tiwari) [1921591]
+- nvme: improve an error message on Identify failure (Gopal Tiwari) [1921591]
+- nvmet: fix a spelling mistake "incuding" -> "including" in Kconfig (Gopal Tiwari) [1921591]
+- nvme-fabrics: reject I/O to offline device (Gopal Tiwari) [1921591]
+- nvmet: make sure discovery change log event is protected (Gopal Tiwari) [1921591]
+- nvme-pci: don't allocate unused I/O queues (Gopal Tiwari) [1921591]
+- nvme-pci: drop min() from nr_io_queues assignment (Gopal Tiwari) [1921591]
+- nvmet: use inline bio for passthru fast path (Gopal Tiwari) [1921591]
+- nvmet: use blk_rq_bio_prep instead of blk_rq_append_bio (Gopal Tiwari) [1921591]
+- nvmet: remove unused ctrl->cqs (Gopal Tiwari) [1921591]
+- nvmet: remove op_flags for passthru commands (Gopal Tiwari) [1921591]
+- nvme: use consistent macro name for timeout (Gopal Tiwari) [1921591]
+- nvmet: add passthru io timeout value attr (Gopal Tiwari) [1921591]
+- nvmet: add passthru admin timeout value attr (Gopal Tiwari) [1921591]
+- nvme: split nvme_alloc_request() (Gopal Tiwari) [1921591]
+- nvme: centralize setting the timeout in nvme_alloc_request (Gopal Tiwari) [1921591]
+- nvme: simplify nvme_req_qid() (Gopal Tiwari) [1921591]
+- nvme-fcloop: add sysfs attribute to inject command drop (Gopal Tiwari) [1921591]
+- nvme: let set_capacity_revalidate_and_notify update the bdev size (Gopal Tiwari) [1921591]
+- nvme: directly cache command effects log (Gopal Tiwari) [1921591]
+- nvme: fix memory leak freeing command effects (Gopal Tiwari) [1921591]
+- nvme: free sq/cq dbbuf pointers when dbbuf set fails (Gopal Tiwari) [1921591]
+- nvme-rdma: Use ibdev_to_node instead of dereferencing ->dma_device (Gopal Tiwari) [1921591]
+- RDMA: Lift ibdev_to_node from rds to common code (Gopal Tiwari) [1921591]
+- nvme: fix incorrect behavior when BLKROSET is called by the user (Gopal Tiwari) [1921591]
+- Revert "nvme-pci: remove last_sq_tail" (Gopal Tiwari) [1921591]
+- nvmet: fix a NULL pointer dereference when tracing the flush command (Gopal Tiwari) [1921591]
+- nvme-fc: remove nvme_fc_terminate_io() (Gopal Tiwari) [1921591]
+- nvme-fc: eliminate terminate_io use by nvme_fc_error_recovery (Gopal Tiwari) [1921591]
+- nvme-fc: remove err_work work item (Gopal Tiwari) [1921591]
+- nvme-fc: track error_recovery while connecting (Gopal Tiwari) [1921591]
+- nvme-rdma: handle unexpected nvme completion data length (Gopal Tiwari) [1921591]
+- nvme: ignore zone validate errors on subsequent scans (Gopal Tiwari) [1921591]
+- nvme-fc: shorten reconnect delay if possible for FC (Gopal Tiwari) [1921591]
+- nvme-fc: wait for queues to freeze before calling update_hr_hw_queues (Gopal Tiwari) [1921591]
+- nvme-fc: fix error loop in create_hw_io_queues (Gopal Tiwari) [1921591]
+- nvme-fc: fix io timeout to abort I/O (Gopal Tiwari) [1921591]
+- nvmet: cleanup nvmet_passthru_map_sg() (Gopal Tiwari) [1921591]
+- nvmet: don't use BLK_MQ_REQ_NOWAIT for passthru (Gopal Tiwari) [1921591]
+- nvmet: limit passthru MTDS by BIO_MAX_PAGES (Gopal Tiwari) [1921591]
+- nvme-rdma: fix crash due to incorrect cqe (Gopal Tiwari) [1921591]
+- nvmet: fix uninitialized work for zero kato (Gopal Tiwari) [1921591]
+- nvme: use queuedata for nvme_req_qid (Gopal Tiwari) [1921591]
+- nvme-pci: disable Write Zeroes on Sandisk Skyhawk (Gopal Tiwari) [1921591]
+- nvme-rdma: fix crash when connect rejected (Gopal Tiwari) [1921591]
+- nvme: translate zone resource errors (Gopal Tiwari) [1921591]
+- block: add zone specific block statuses (Gopal Tiwari) [1921591]
+- nvme-core: remove extra condition for vwc (Gopal Tiwari) [1921591]
+- nvme-core: remove extra variable (Gopal Tiwari) [1921591]
+- nvme: remove nvme_identify_ns_list (Gopal Tiwari) [1921591]
+- nvme: refactor nvme_validate_ns (Gopal Tiwari) [1921591]
+- nvme: move nvme_validate_ns (Gopal Tiwari) [1921591]
+- nvme: remove nvme_update_formats (Gopal Tiwari) [1921591]
+- nvme: update the known admin effects (Gopal Tiwari) [1921591]
+- nvme: query namespace identifiers before adding the namespace (Gopal Tiwari) [1921591]
+- nvme: revalidate zone bitmaps in nvme_update_ns_info (Gopal Tiwari) [1921591]
+- nvme: call nvme_identify_ns as the first thing in nvme_alloc_ns_block (Gopal Tiwari) [1921591]
+- nvme: set the queue limits in nvme_update_ns_info (Gopal Tiwari) [1921591]
+- nvme: remove the 0 lba_shift check in nvme_update_ns_info (Gopal Tiwari) [1921591]
+- nvme: freeze the queue over ->lba_shift updates (Gopal Tiwari) [1921591]
+- nvme: factor out a nvme_configure_metadata helper (Gopal Tiwari) [1921591]
+- nvme: lift the check for an unallocated namespace into nvme_identify_ns (Gopal Tiwari) [1921591]
+- nvme: clean up the check for too large logic block sizes (Gopal Tiwari) [1921591]
+- nvme: remove the disk argument to nvme_update_zone_info (Gopal Tiwari) [1921591]
+- nvme: rename __nvme_revalidate_disk (Gopal Tiwari) [1921591]
+- nvme: rename _nvme_revalidate_disk (Gopal Tiwari) [1921591]
+- nvme: rename nvme_validate_ns to nvme_validate_or_alloc_ns (Gopal Tiwari) [1921591]
+- nvme: fix initialization of the zone bitmaps (Gopal Tiwari) [1921591]
+- nvme-loop: don't put ctrl on nvme_init_ctrl error (Gopal Tiwari) [1921591]
+- nvme-core: put ctrl ref when module ref get fail (Gopal Tiwari) [1921591]
+- nvme-tcp: check page by sendpage_ok() before calling kernel_sendpage() (Gopal Tiwari) [1921591]
+- nvmet-fc: fix missing check for no hostport struct (Gopal Tiwari) [1921591]
+- nvme: fix error handling in nvme_ns_report_zones (Gopal Tiwari) [1921591]
+- nvmet: add passthru ZNS support (Gopal Tiwari) [1921591]
+- nvmet: handle keep-alive timer when kato is modified by a set features cmd (Gopal Tiwari) [1921591]
+- nvme-pci: allocate separate interrupt for the reserved non-polled I/O queue (Gopal Tiwari) [1921591]
+- nvmet-tcp: have queue io_work context run on sock incoming cpu (Gopal Tiwari) [1921591]
+- nvme: lift the file open code from nvme_ctrl_get_by_path (Gopal Tiwari) [1921591]
+- nvme: use an xarray to lookup the Commands Supported and Effects log (Gopal Tiwari) [1921591]
+- nvme-pci: Move enumeration by class to be last in the table (Gopal Tiwari) [1921591]
+- nvme-core: don't use NVME_NSID_ALL for command effects and supported log (Gopal Tiwari) [1921591]
+- nvme-fc: fail new connections to a deleted host or remote port (Gopal Tiwari) [1921591]
+- nvme: return errors for hwmon init (Gopal Tiwari) [1921591]
+- nvme-pci: fix NULL req in completion handler (Gopal Tiwari) [1921591]
+- nvmet: get transport reference for passthru ctrl (Gopal Tiwari) [1921591]
+- nvme-core: get/put ctrl and transport module in nvme_dev_open/release() (Gopal Tiwari) [1921591]
+- nvme-tcp: fix kconfig dependency warning when !CRYPTO (Gopal Tiwari) [1921591]
+- nvme: use blk_mq_complete_request_remote to avoid an indirect function call (Gopal Tiwari) [1921591]
+- nvme-core: replace ctrl page size with a macro (Gopal Tiwari) [1921591]
+- nvme-pci: remove the inline scatterlist optimization (Gopal Tiwari) [1921591]
+- block: optimize blk_queue_zoned_model for !CONFIG_BLK_DEV_ZONED (Gopal Tiwari) [1921591]
+- nvme: support for zoned namespaces (Gopal Tiwari) [1921591]
+- null_blk: introduce zone capacity for zoned device (Gopal Tiwari) [1921591]
+- block: add capacity field to zone descriptors (Gopal Tiwari) [1921591]
+
+* Wed May 19 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-306.el8]
+- vmxnet3: Set the default of vxlan overlay offload to disabled (Cathy Avery) [1941714]
+- vmxnet3: Update driver to use ethtool_sprintf (Cathy Avery) [1923796]
+- vmxnet3: Remove buf_info from device accessible structures (Cathy Avery) [1923796]
+- igc: Fix overwrites return value (Corinna Vinschen) [1920285]
+- igc: Add set/clear large buffer helpers (Corinna Vinschen) [1920285]
+- igc: Refactor Rx timestamp handling (Corinna Vinschen) [1920285]
+- igc: Introduce igc_get_rx_frame_truesize() helper (Corinna Vinschen) [1920285]
+- igc: Introduce igc_rx_buffer_flip() helper (Corinna Vinschen) [1920285]
+- igc: Remove unused argument from igc_tx_cmd_type() (Corinna Vinschen) [1920285]
+- igc: Fix prototype warning (Corinna Vinschen) [1920285]
+- igc: Assign boolean values to a bool variable (Corinna Vinschen) [1920285]
+- igc: Remove unused MII_CR_LOOPBACK (Corinna Vinschen) [1920285]
+- igc: Remove unused MII_CR_SPEED (Corinna Vinschen) [1920285]
+- igc: Remove unused MII_CR_RESET (Corinna Vinschen) [1920285]
+- igc: Fix igc_ptp_rx_pktstamp() (Corinna Vinschen) [1920285]
+- igc: Fix Supported Pause Frame Link Setting (Corinna Vinschen) [1920285]
+- igc: Fix Pause Frame Advertising (Corinna Vinschen) [1920285]
+- igc: reinit_locked() should be called with rtnl_lock (Corinna Vinschen) [1920285]
+- igc: Fix TDBAL register show incorrect value (Corinna Vinschen) [1920285]
+- igc: Remove unused FUNC_1 mask (Corinna Vinschen) [1920285]
+- igc: Remove unused local receiver mask (Corinna Vinschen) [1920285]
+- igc: Prefer strscpy over strlcpy (Corinna Vinschen) [1920285]
+- igc: Expose the gPHY firmware version (Corinna Vinschen) [1920285]
+- igc: Expose the NVM version (Corinna Vinschen) [1920285]
+- igc: Add Host Good Packets Transmitted Count (Corinna Vinschen) [1920285]
+- igc: Remove MULR mask define (Corinna Vinschen) [1920285]
+- igc: Remove igc_set_fw_version comment (Corinna Vinschen) [1920285]
+- igc: Clean up nvm_operations structure (Corinna Vinschen) [1920285]
+- igc: check return value of ret_val in igc_config_fc_after_link_up (Corinna Vinschen) [1920285]
+- igc: set the default return value to -IGC_ERR_NVM in igc_write_nvm_srwr (Corinna Vinschen) [1920285]
+- igc: Report speed and duplex as unknown when device is runtime suspended (Corinna Vinschen) [1920285]
+- net: igc: use skb_csum_is_sctp instead of protocol check (Corinna Vinschen) [1920285]
+- igc: Add new device ID (Corinna Vinschen) [1920285]
+- net: igbvf: use skb_csum_is_sctp instead of protocol check (Corinna Vinschen) [1920287]
+- igbvf: Refactor traces (Corinna Vinschen) [1920287]
+- igbvf: amend removal of MODULE_VERSION (Corinna Vinschen) [1955752]
+- netlink: add tracepoint at NL_SET_ERR_MSG (Marcelo Ricardo Leitner) [1956983]
+- xfrm: Provide private skb extensions for segmented and hw offloaded ESP packets (Sabrina Dubroca) [1935575]
+- xfrm: BEET mode doesn't support fragments for inner packets (Xin Long) [1870900]
+- xfrm: Fix NULL pointer dereference on policy lookup (Sabrina Dubroca) [1951965]
+- xfrm: use secpath_exist where applicable (Sabrina Dubroca) [1951965]
+- net: xfrm: Use sequence counter with associated spinlock (Sabrina Dubroca) [1951965]
+- net: xfrm: Localize sequence counter per network namespace (Sabrina Dubroca) [1951965]
+- xfrm: Return the correct errno code (Sabrina Dubroca) [1951965]
+- xfrm: Fix wraparound in xfrm_policy_addr_delta() (Sabrina Dubroca) [1951965]
+- xfrm: fix disable_xfrm sysctl when used on xfrm interfaces (Sabrina Dubroca) [1951965]
+- xfrm: Fix oops in xfrm_replay_advance_bmp (Sabrina Dubroca) [1951965]
+- ah6: fix error return code in ah6_input() (Sabrina Dubroca) [1951965]
+- net: xfrm: fix a race condition during allocing spi (Sabrina Dubroca) [1951965]
+- xfrm: policy: Use sequence counters with associated lock (Sabrina Dubroca) [1951965]
+- selftests: net: mirror_gre_vlan_bridge_1q: Make an FDB entry static (Ivan Vecera) [1952586]
+- net: bridge: switchdev: include local flag in FDB notifications (Ivan Vecera) [1952586]
+- net: bridge: switchdev: refactor br_switchdev_fdb_notify (Ivan Vecera) [1952586]
+- net: bridge: don't notify switchdev for local FDB addresses (Ivan Vecera) [1952586]
+- net: bridge: use switchdev for port flags set through sysfs too (Ivan Vecera) [1952586]
+- net: bridge: vlan: fix error return code in __vlan_add() (Ivan Vecera) [1952586]
+- net: bridge: add missing counters to ndo_get_stats64 callback (Ivan Vecera) [1952586]
+- net: bridge: use new function dev_fetch_sw_netstats (Ivan Vecera) [1952586]
+- net: bridge: fdb: don't flush ext_learn entries (Ivan Vecera) [1952586]
+- net: bridge: clear bridge's private skb space on xmit (Ivan Vecera) [1952586]
+- bridge: mcast: Fix MLD2 Report IPv6 payload length check (Ivan Vecera) [1952586]
+- net: bridge: enfore alignment for ethernet address (Ivan Vecera) [1952586]
+- netfilter: nft_reject_bridge: enable reject with bridge vlan (Ivan Vecera) [1952586]
+- net: bridge: vlan: Add a schedule point during VLAN processing (Ivan Vecera) [1952586]
+- netfilter: ebtables: compat: reject all padding in matches/watchers (Ivan Vecera) [1952586]
+- net: bridge: deny dev_set_mac_address() when unregistering (Ivan Vecera) [1952586]
+- net: bridge: fdb: set flags directly in fdb_create (Ivan Vecera) [1952586]
+- net: bridge: fdb: convert offloaded to use bitops (Ivan Vecera) [1952586]
+- net: bridge: fdb: convert added_by_external_learn to use bitops (Ivan Vecera) [1952586]
+- net: bridge: fdb: convert added_by_user to bitops (Ivan Vecera) [1952586]
+- net: bridge: fdb: convert is_sticky to bitops (Ivan Vecera) [1952586]
+- net: bridge: fdb: convert is_static to bitops (Ivan Vecera) [1952586]
+- net: bridge: fdb: convert is_local to bitops (Ivan Vecera) [1952586]
+- net: bridge: move default pvid init/deinit to NETDEV_REGISTER/UNREGISTER (Ivan Vecera) [1952586]
+- bridge: Fix possible use-after-free when deleting bridge port (Ivan Vecera) [1952586]
+- bridge: update vlan dev link state for bridge netdev changes (Ivan Vecera) [1952586]
+- bridge: update vlan dev state when port added to or deleted from vlan (Ivan Vecera) [1952586]
+- bridge: support binding vlan dev link state to vlan member bridge ports (Ivan Vecera) [1952586]
+- vlan: do not transfer link state in vlan bridge binding mode (Ivan Vecera) [1952586]
+- vlan: support binding link state to vlan member bridge ports (Ivan Vecera) [1952586]
+- ipv6: weaken the v4mapped source check (Paolo Abeni) [1950298]
+- tcp: relookup sock for RST+ACK packets handled by obsolete req sock (Paolo Abeni) [1950298]
+- inet_connection_sock: remove unused parameter of reqsk_queue_unlink func (Paolo Abeni) [1950298]
+- tcp: add sanity tests to TCP_QUEUE_SEQ (Paolo Abeni) [1950298]
+- tcp: fix SO_RCVLOWAT related hangs under mem pressure (Paolo Abeni) [1950298]
+- tcp: do not mess with cloned skbs in tcp_add_backlog() (Paolo Abeni) [1950298]
+- tcp: fix cwnd-limited bug for TSO deferral where we send nothing (Paolo Abeni) [1950298]
+- vfio-ccw: Wire in the request callback (Thomas Huth) [1940451]
+- vfio-mdev: Wire in a request handler for mdev parent (Thomas Huth) [1940451]
+- intel_idle: add Iclelake-D support (David Arcari) [1960287]
+- scsi: ibmvfc: Fix potential race in ibmvfc_wait_for_ops() (Steve Best) [1941180]
+- powerpc/sstep: Fix VSX instruction emulation (Steve Best) [1934187]
+- powerpc/pseries/hibernation: remove pseries_suspend_cpu() (Steve Best) [1932970]
+- powerpc/pseries: remove cede offline state for CPUs (Steve Best) [1932970]
+- powerpc/pseries: export LPAR security flavor in lparcfg (Steve Best) [1935660]
+- Makefile: update early devel phase flag (Bruno Meneguele) [1930504]
+
+* Mon May 17 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-305.8.el8]
+- configs: Enable CONFIG_BPF_KPROBE_OVERRIDE (Jiri Olsa) [1920439]
+- powerpc/kvm: Fix build error when PPC_MEM_KEYS/PPC_PSERIES=n (Greg Kurz) [1945745]
+- powerpc/kvm: Fix PR KVM with KUAP/MEM_KEYS enabled (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Ensure MSR[HV] is always clear in guest MSR (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Ensure MSR[ME] is always set in guest MSR (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Fix CONFIG_SPAPR_TCE_IOMMU=n default hcalls (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: remove unused kvmppc_h_protect argument (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Remove redundant mtspr PSPB (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Prevent radix guests setting LPCR[TC] (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Disallow LPCR[AIL] to be set to 1 or 2 (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Add a function to filter guest LPCR bits (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Nested move LPCR sanitising to sanitise_hv_regs (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV P9: Restore host CTRL SPR after guest exit (Greg Kurz) [1945745]
+- KVM: PPC: Don't always report hash MMU capability for P9 < DD2.2 (Greg Kurz) [1945745]
+- powerpc/xive: Assign boolean values to a bool variable (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Fix host radix SLB optimisation with hash guests (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Ensure radix guest has no SLB entries (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Save and restore FSCR in the P9 path (Greg Kurz) [1945745]
+- KVM: PPC: remove unneeded semicolon (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Use POWER9 SLBIA IH=6 variant to clear SLB (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: No need to clear radix host SLB before loading HPT guest (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Fix radix guest SLB side channel (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Remove support for running HPT guest on RPT host without mixed mode support (Greg Kurz) [1945745]
+- powerpc/mm: Update tlbiel loop on POWER10 (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Allow nested guest creation when L0 hv_guest_state > L1 (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Context tracking exit guest context before enabling irqs (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Include prototypes (Greg Kurz) [1945745]
+- KVM: PPC: Make the VMX instruction emulation routines static (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Fix mask size for emulated msgsndp (Greg Kurz) [1945745]
+- KVM: PPC: fix comparison to bool warning (Greg Kurz) [1945745]
+- KVM: PPC: Book3S: Assign boolean values to a bool variable (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: XIVE: Add a comment regarding VP numbering (Greg Kurz) [1945745]
+- powerpc/xive: Remove P9 DD1 flag XIVE_IRQ_FLAG_EOI_FW (Greg Kurz) [1945745]
+- powerpc/xive: Remove P9 DD1 flag XIVE_IRQ_FLAG_MASK_FW (Greg Kurz) [1945745]
+- powerpc/xive: Remove P9 DD1 flag XIVE_IRQ_FLAG_SHIFT_BUG (Greg Kurz) [1945745]
+- powerpc/xive: Add a debug_show handler to the XIVE irq_domain (Greg Kurz) [1945745]
+- powerpc/xive: Rename XIVE_IRQ_NO_EOI to show its a flag (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: XIVE: Show detailed configuration in debug output (Greg Kurz) [1945745]
+- powerpc/64s: Remove MSR[ISF] bit (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Ratelimit machine check messages coming from guests (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: Don't attempt to recover machine checks for FWNMI enabled guests (Greg Kurz) [1945745]
+- KVM: PPC: Book3S HV: XIVE: Fix possible oops when accessing ESB page (Greg Kurz) [1945745]
+- clocksource/drivers/hyper-v: Move handling of STIMER0 interrupts (Mohammed Gamal) [1940901]
+- clocksource/drivers/hyper-v: Set clocksource rating based on Hyper-V feature (Mohammed Gamal) [1940901]
+- clocksource/drivers/hyper-v: Handle sched_clock differences inline (Mohammed Gamal) [1940901]
+- clocksource/hyperv: use MSR-based access if running as root (Mohammed Gamal) [1940901]
+- cifs: fix interrupted close commands (Ronnie Sahlberg) [1952263]
+- cifs: add NULL check for ses->tcon_ipc (Ronnie Sahlberg) [1952263]
+- smb3: set COMPOUND_FID to FileID field of subsequent compound request (Ronnie Sahlberg) [1952263]
+- cifs: fix potential use-after-free in cifs_echo_request() (Ronnie Sahlberg) [1952263]
+- cifs: allow syscalls to be restarted in __smb_send_rqst() (Ronnie Sahlberg) [1952263]
+- smb3: Handle error case during offload read path (Ronnie Sahlberg) [1952263]
+- smb3: Avoid Mid pending list corruption (Ronnie Sahlberg) [1952263]
+- smb3: Call cifs reconnect from demultiplex thread (Ronnie Sahlberg) [1952263]
+- cifs: fix a memleak with modefromsid (Ronnie Sahlberg) [1952263]
+- cifs: update internal module version number (Ronnie Sahlberg) [1952263]
+- smb3: add some missing definitions from MS-FSCC (Ronnie Sahlberg) [1952263]
+- smb3: remove two unused variables (Ronnie Sahlberg) [1952263]
+- smb3: add support for stat of WSL reparse points for special file types (Ronnie Sahlberg) [1952263]
+- SMB3: add support for recognizing WSL reparse tags (Ronnie Sahlberg) [1952263]
+- cifs: remove bogus debug code (Ronnie Sahlberg) [1952263]
+- smb3.1.1: fix typo in compression flag (Ronnie Sahlberg) [1952263]
+- cifs: move smb version mount options into fs_context.c (Ronnie Sahlberg) [1952263]
+- cifs: move cache mount options to fs_context.ch (Ronnie Sahlberg) [1952263]
+- cifs: move security mount options into fs_context.ch (Ronnie Sahlberg) [1952263]
+- cifs: add files to host new mount api (Ronnie Sahlberg) [1952263]
+- smb3: do not try to cache root directory if dir leases not supported (Ronnie Sahlberg) [1952263]
+- smb3: fix stat when special device file and mounted with modefromsid (Ronnie Sahlberg) [1952263]
+- cifs: Print the address and port we are connecting to in generic_ip_connect() (Ronnie Sahlberg) [1952263]
+- SMB3: Resolve data corruption of TCP server info fields (Ronnie Sahlberg) [1952263]
+- cifs: make const array static, makes object smaller (Ronnie Sahlberg) [1952263]
+- SMB3.1.1: Fix ids returned in POSIX query dir (Ronnie Sahlberg) [1952263]
+- smb3: add dynamic trace point to trace when credits obtained (Ronnie Sahlberg) [1952263]
+- smb3.1.1: do not fail if no encryption required but server doesn't support it (Ronnie Sahlberg) [1952263]
+- cifs: Return the error from crypt_message when enc/dec key not found. (Ronnie Sahlberg) [1952263]
+- smb3.1.1: set gcm256 when requested (Ronnie Sahlberg) [1952263]
+- smb3.1.1: rename nonces used for GCM and CCM encryption (Ronnie Sahlberg) [1952263]
+- smb3.1.1: print warning if server does not support requested encryption type (Ronnie Sahlberg) [1952263]
+- smb3.1.1: add new module load parm enable_gcm_256 (Ronnie Sahlberg) [1952263]
+- smb3.1.1: add new module load parm require_gcm_256 (Ronnie Sahlberg) [1952263]
+- cifs: map STATUS_ACCOUNT_LOCKED_OUT to -EACCES (Ronnie Sahlberg) [1952263]
+- SMB3.1.1: add defines for new signing negotiate context (Ronnie Sahlberg) [1952263]
+- Handle STATUS_IO_TIMEOUT gracefully (Ronnie Sahlberg) [1952263]
+- cifs: compute full_path already in cifs_readdir() (Ronnie Sahlberg) [1952263]
+- cifs: return cached_fid from open_shroot (Ronnie Sahlberg) [1952263]
+- update structure definitions from updated protocol documentation (Ronnie Sahlberg) [1952263]
+- smb3: add defines for new crypto algorithms (Ronnie Sahlberg) [1952263]
+- cifs: fix check of tcon dfs in smb1 (Ronnie Sahlberg) [1952263]
+- SMB3: Fix mkdir when idsfromsid configured on mount (Ronnie Sahlberg) [1952263]
+- cifs: Convert to use the fallthrough macro (Ronnie Sahlberg) [1952263]
+- cifs: Fix an error pointer dereference in cifs_mount() (Ronnie Sahlberg) [1952263]
+- cifs: document and cleanup dfs mount (Ronnie Sahlberg) [1952263]
+- cifs: only update prefix path of DFS links in cifs_tree_connect() (Ronnie Sahlberg) [1952263]
+- cifs: fix double free error on share and prefix (Ronnie Sahlberg) [1952263]
+- cifs: handle RESP_GET_DFS_REFERRAL.PathConsumed in reconnect (Ronnie Sahlberg) [1952263]
+- cifs: handle empty list of targets in cifs_reconnect() (Ronnie Sahlberg) [1952263]
+- cifs: rename reconn_inval_dfs_target() (Ronnie Sahlberg) [1952263]
+- cifs: reduce number of referral requests in DFS link lookups (Ronnie Sahlberg) [1952263]
+- cifs: merge __{cifs,smb2}_reconnect[_tcon]() into cifs_tree_connect() (Ronnie Sahlberg) [1952263]
+- cifs: convert to use be32_add_cpu() (Ronnie Sahlberg) [1952263]
+- cifs: delete duplicated words in header files (Ronnie Sahlberg) [1952263]
+- cifs: Remove the superfluous break (Ronnie Sahlberg) [1952263]
+- cifs: remove unused variable 'server' (Ronnie Sahlberg) [1952263]
+- smb3: warn on confusing error scenario with sec=krb5 (Ronnie Sahlberg) [1952263]
+- fuse: 32-bit user space ioctl compat for fuse device (Miklos Szeredi) [1949873]
+- virtiofs: Fail dax mount if device does not support it (Miklos Szeredi) [1949873]
+- fuse: fix live lock in fuse_iget() (Miklos Szeredi) [1949873]
+- mm/filemap: remove unused parameter and change to void type for replace_page_cache_page() (Miklos Szeredi) [1949873]
+- fuse: support SB_NOSEC flag to improve write performance (Miklos Szeredi) [1949873]
+- fuse: add a flag FUSE_OPEN_KILL_SUIDGID for open() request (Miklos Szeredi) [1949873]
+- fuse: don't send ATTR_MODE to kill suid/sgid for handle_killpriv_v2 (Miklos Szeredi) [1949873]
+- fuse: setattr should set FATTR_KILL_SUIDGID (Miklos Szeredi) [1949873]
+- fuse: set FUSE_WRITE_KILL_SUIDGID in cached write path (Miklos Szeredi) [1949873]
+- fuse: rename FUSE_WRITE_KILL_PRIV to FUSE_WRITE_KILL_SUIDGID (Miklos Szeredi) [1949873]
+- fuse: introduce the notion of FUSE_HANDLE_KILLPRIV_V2 (Miklos Szeredi) [1949873]
+- fuse: always revalidate if exclusive create (Miklos Szeredi) [1949873]
+- virtiofs: clean up error handling in virtio_fs_get_tree() (Miklos Szeredi) [1949873]
+- fuse: add fuse_sb_destroy() helper (Miklos Szeredi) [1949873]
+- fuse: simplify get_fuse_conn*() (Miklos Szeredi) [1949873]
+- fuse: get rid of fuse_mount refcount (Miklos Szeredi) [1949873]
+- virtiofs: simplify sb setup (Miklos Szeredi) [1949873]
+- virtiofs fix leak in setup (Miklos Szeredi) [1949873]
+- fuse: launder page should wait for page writeback (Miklos Szeredi) [1949873]
+- fuse: connection remove fix (Miklos Szeredi) [1949873]
+- fuse: implement crossmounts (Miklos Szeredi) [1949873]
+- fuse: Allow fuse_fill_super_common() for submounts (Miklos Szeredi) [1949873]
+- fuse: split fuse_mount off of fuse_conn (Miklos Szeredi) [1949873]
+- fuse: drop fuse_conn parameter where possible (Miklos Szeredi) [1949873]
+- fuse: store fuse_conn in fuse_req (Miklos Szeredi) [1949873]
+- fuse: add submount support to <uapi/linux/fuse.h> (Miklos Szeredi) [1949873]
+- fuse: fix page dereference after free (Miklos Szeredi) [1949873]
+- fuse: update project homepage (Miklos Szeredi) [1949873]
+- fuse: Fix parameter for FS_IOC_{GET,SET}FLAGS (Miklos Szeredi) [1949873]
+- fuse: don't ignore errors from fuse_writepages_fill() (Miklos Szeredi) [1949873]
+- fuse: clean up condition for writepage sending (Miklos Szeredi) [1949873]
+- fuse: fix warning in tree_insert() and clean up writepage insertion (Miklos Szeredi) [1949873]
+- fuse: move rb_erase() before tree_insert() (Miklos Szeredi) [1949873]
+- fuse: optimize writepages search (Miklos Szeredi) [1949873]
+- fuse: Update stale comment in queue_interrupt() (Miklos Szeredi) [1949873]
+- fuse: use true,false for bool variable (Miklos Szeredi) [1949873]
+- fuse: Add changelog entries for protocols 7.1 - 7.8 (Miklos Szeredi) [1949873]
+- fuse: reserve byteswapped init opcodes (Miklos Szeredi) [1949873]
+- convenience helper: get_tree_single() (finish backport) (Miklos Szeredi) [1949873]
+- fuse: Convert fusectl to use the new mount API (Miklos Szeredi) [1949873]
+- fuse: fix changelog entry for protocol 7.9 (Miklos Szeredi) [1949873]
+- fuse: fix changelog entry for protocol 7.12 (Miklos Szeredi) [1949873]
+- sfc: adjust efx->xdp_tx_queue_count with the real number of initialized queues (Íñigo Huguet) [1934254]
+- sfc: Remove duplicate argument (Íñigo Huguet) [1934254]
+- sfc: Use 'skb_add_rx_frag()' instead of hand coding it (Íñigo Huguet) [1934254]
+- sfc-falcon: Fix a typo (Íñigo Huguet) [1934254]
+- sfc: ef10: fix TX queue lookup in TX event handling (Íñigo Huguet) [1934254]
+- sfc: farch: fix TX queue lookup in TX event handling (Íñigo Huguet) [1934254]
+- sfc: farch: fix TX queue lookup in TX flush done handling (Íñigo Huguet) [1934254]
+- sfc: reduce the number of requested xdp ev queues (Íñigo Huguet) [1934254]
+- sfc: support GRE TSO on EF100 (Íñigo Huguet) [1934254]
+- sfc: correctly support non-partial GSO_UDP_TUNNEL_CSUM on EF100 (Íñigo Huguet) [1934254]
+- sfc: extend bitfield macros to 19 fields (Íñigo Huguet) [1934254]
+- sfc: advertise our vlan features (Íñigo Huguet) [1934254]
+- sfc: only use fixed-id if the skb asks for it (Íñigo Huguet) [1934254]
+- sfc: implement encap TSO on EF100 (Íñigo Huguet) [1934254]
+- sfc: extend bitfield macros to 17 fields (Íñigo Huguet) [1934254]
+- sfc: move initialisation of efx->filter_sem to efx_init_struct() (Íñigo Huguet) [1934254]
+- net: sfc: Use GFP_KERNEL in efx_ef10_try_update_nic_stats() (Íñigo Huguet) [1934254]
+- net: sfc: Replace in_interrupt() usage (Íñigo Huguet) [1934254]
+- sfc: clean up mis-targeted comments (Íñigo Huguet) [1934254]
+- sfc: fix kdoc warning (Íñigo Huguet) [1934254]
+- sfc: clean up unused assignments (Íñigo Huguet) [1934254]
+- sfc: advertise encapsulated offloads on EF10 (Íñigo Huguet) [1934254]
+- sfc: implement encapsulated TSO on EF10 (Íñigo Huguet) [1934254]
+- sfc: de-indirect TSO handling (Íñigo Huguet) [1934254]
+- sfc: select inner-csum-offload TX queues for skbs that need it (Íñigo Huguet) [1934254]
+- sfc: create inner-csum queues on EF10 if supported (Íñigo Huguet) [1934254]
+- sfc: define inner/outer csum offload TXQ types (Íñigo Huguet) [1934254]
+- sfc: decouple TXQ type from label (Íñigo Huguet) [1934254]
+- sfc: cleanups around efx_alloc_channel (Íñigo Huguet) [1934254]
+- sfc: remove spurious unreachable return statement (Íñigo Huguet) [1934254]
+- sfc: remove duplicate call to efx_init_channels from EF100 probe (Íñigo Huguet) [1934254]
+- sfc: coding style cleanups in mcdi_port_common.c (Íñigo Huguet) [1934254]
+- sfc: simplify DMA mask setting (Íñigo Huguet) [1934254]
+- sfc: remove EFX_DRIVER_VERSION (Íñigo Huguet) [1934254]
+- sfc: handle limited FEC support (Íñigo Huguet) [1934254]
+- sfc: add ethtool ops and miscellaneous ndos to EF100 (Íñigo Huguet) [1934254]
+- sfc: remove phy_op indirection (Íñigo Huguet) [1934254]
+- sfc: remove efx_tx_queue_partner (Íñigo Huguet) [1934254]
+- sfc: rewrite efx_tx_may_pio (Íñigo Huguet) [1934254]
+- sfc: use efx_channel_tx_[old_]fill_level() in Siena/EF10 TX datapath (Íñigo Huguet) [1934254]
+- sfc: use tx_queue->old_read_count in EF100 TX path (Íñigo Huguet) [1934254]
+- sfc: make ef100 xmit_more handling look more like ef10's (Íñigo Huguet) [1934254]
+- sfc: add and use efx_tx_send_pending in tx.c (Íñigo Huguet) [1934254]
+- sfc: return errors from efx_mcdi_set_id_led, and de-indirect (Íñigo Huguet) [1934254]
+- sfc: fix kernel-doc on struct efx_loopback_state (Íñigo Huguet) [1934254]
+- sfc: fix unused-but-set-variable warning in efx_farch_filter_remove_safe (Íñigo Huguet) [1934254]
+- sfc: fix W=1 warnings in efx_farch_handle_rx_not_ok (Íñigo Huguet) [1934254]
+- sfc: convert to new udp_tunnel infrastructure (Íñigo Huguet) [1934254]
+- net: don't warn in inet diag when IPV6 is disabled (Hangbin Liu) [1938639]
+- tcp: do not mess with cloned skbs in tcp_add_backlog() (Hangbin Liu) [1880432]
+- redhat: enable MHI bus driver support (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix invalid error returning in mhi_queue (Jarod Wilson) [1938030]
+- bus: mhi: pci_generic: Remove WQ_MEM_RECLAIM flag from state workqueue (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix check for syserr at power_up (Jarod Wilson) [1938030]
+- mhi: Fix double dma free (Jarod Wilson) [1938030]
+- bus: mhi: pci_generic: Increase num of elements in hw event ring (Jarod Wilson) [1938030]
+- mhi: pci_generic: Print warning in case of firmware crash (Jarod Wilson) [1938030]
+- bus: mhi: core: Add helper API to return number of free TREs (Jarod Wilson) [1938030]
+- mhi: core: Factorize mhi queuing (Jarod Wilson) [1938030]
+- mhi: use irq_flags if controller driver configures it (Jarod Wilson) [1938030]
+- mhi: pci_generic: Fix shared MSI vector support (Jarod Wilson) [1938030]
+- mhi: unconstify mhi_event_config (Jarod Wilson) [1938030]
+- bus: mhi: Ensure correct ring update ordering with memory barrier (Jarod Wilson) [1938030]
+- mhi: pci_generic: Set irq moderation value to 1ms for hw channels (Jarod Wilson) [1938030]
+- mhi: pci_generic: Add diag channels (Jarod Wilson) [1938030]
+- mhi: pci_generic: Increase controller timeout value (Jarod Wilson) [1938030]
+- mhi: pci_generic: Add health-check (Jarod Wilson) [1938030]
+- mhi: pci_generic: Add PCI error handlers (Jarod Wilson) [1938030]
+- mhi: pci_generic: Add suspend/resume/recovery procedure (Jarod Wilson) [1938030]
+- mhi: pci_generic: Add support for reset (Jarod Wilson) [1938030]
+- mhi: pci_generic: Enable burst mode for hardware channels (Jarod Wilson) [1938030]
+- mhi: pci-generic: Increase number of hardware events (Jarod Wilson) [1938030]
+- bus: mhi: core: Add device hardware reset support (Jarod Wilson) [1938030]
+- mhi: pci_generic: Fix implicit conversion warning (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix error handling in mhi_register_controller() (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix device hierarchy (Jarod Wilson) [1938030]
+- bus: mhi: core: Indexed MHI controller name (Jarod Wilson) [1938030]
+- bus: mhi: core: Remove MHI event ring IRQ handlers when powering down (Jarod Wilson) [1938030]
+- bus: mhi: core: Mark and maintain device states early on after power down (Jarod Wilson) [1938030]
+- bus: mhi: core: Separate system error and power down handling (Jarod Wilson) [1938030]
+- bus: mhi: core: Check for IRQ availability during registration (Jarod Wilson) [1938030]
+- bus: mhi: core: Move to an error state on mission mode failure (Jarod Wilson) [1938030]
+- bus: mhi: core: Use appropriate label in firmware load handler API (Jarod Wilson) [1938030]
+- bus: mhi: core: Move to an error state on any firmware load failure (Jarod Wilson) [1938030]
+- bus: mhi: core: Prevent sending multiple RDDM entry callbacks (Jarod Wilson) [1938030]
+- bus: mhi: core: Move to SYS_ERROR regardless of RDDM capability (Jarod Wilson) [1938030]
+- bus: mhi: core: Skip device wake in error or shutdown states (Jarod Wilson) [1938030]
+- bus: mhi: core: Move to using high priority workqueue (Jarod Wilson) [1938030]
+- bus: mhi: core: Use appropriate names for firmware load functions (Jarod Wilson) [1938030]
+- bus: mhi: core: Skip RDDM download for unknown execution environment (Jarod Wilson) [1938030]
+- bus: mhi: core: Rename RDDM download function to use proper words (Jarod Wilson) [1938030]
+- bus: mhi: core: Remove unused mhi_fw_load_worker() declaration (Jarod Wilson) [1938030]
+- bus: mhi: core: Expose mhi_get_exec_env() API for controllers (Jarod Wilson) [1938030]
+- bus: mhi: core: Add missing EXPORT_SYMBOL for mhi_get_mhi_state() (Jarod Wilson) [1938030]
+- bus: mhi: core: Remove unnecessary counter from mhi_firmware_copy() (Jarod Wilson) [1938030]
+- bus: mhi: Fix channel close issue on driver remove (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix null pointer access when parsing MHI configuration (Jarod Wilson) [1938030]
+- bus: mhi: Add MHI PCI support for WWAN modems (Jarod Wilson) [1938030]
+- bus: mhi: core: fix potential operator-precedence with BHI macros (Jarod Wilson) [1938030]
+- bus: mhi: core: Remove double locking from mhi_driver_remove() (Jarod Wilson) [1938030]
+- bus: mhi: Remove auto-start option (Jarod Wilson) [1938030]
+- bus: mhi: Add mhi_queue_is_full function (Jarod Wilson) [1938030]
+- bus: mhi: debugfs: Print channel context read-pointer (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix the building of MHI module (Jarod Wilson) [1938030]
+- bus: mhi: Remove unused nr_irqs_req variable (Jarod Wilson) [1938030]
+- bus: mhi: core: Allow shared IRQ for event rings (Jarod Wilson) [1938030]
+- bus: mhi: core: Introduce sysfs entries for MHI (Jarod Wilson) [1938030]
+- bus: mhi: core: Introduce debugfs entries for MHI (Jarod Wilson) [1938030]
+- bus: mhi: Fix entries based on Kconfig coding style (Jarod Wilson) [1938030]
+- bus: mhi: Remove include of rwlock_types.h (Jarod Wilson) [1938030]
+- bus: mhi: core: Add const qualifier to MHI config information (Jarod Wilson) [1938030]
+- bus: mhi: core: Introduce APIs to allocate and free the MHI controller (Jarod Wilson) [1938030]
+- bus: mhi: core: Read and save device hardware information from BHI (Jarod Wilson) [1938030]
+- bus: mhi: core: Introduce counters to track MHI device state transitions (Jarod Wilson) [1938030]
+- bus: mhi: core: Introduce helper function to check device state (Jarod Wilson) [1938030]
+- bus: mhi: core: Use generic name field for an MHI device (Jarod Wilson) [1938030]
+- bus: mhi: core: Trigger host resume if suspended during mhi_device_get() (Jarod Wilson) [1938030]
+- bus: mhi: core: Use helper API to trigger a non-blocking host resume (Jarod Wilson) [1938030]
+- bus: mhi: core: Abort suspends due to outgoing pending packets (Jarod Wilson) [1938030]
+- bus: mhi: core: Remove double occurrence for mhi_ctrl_ev_task() declaration (Jarod Wilson) [1938030]
+- bus: mhi: fix doubled words and struct image_info kernel-doc (Jarod Wilson) [1938030]
+- bus: mhi: core: Handle syserr during power_up (Jarod Wilson) [1938030]
+- bus: mhi: core: Handle write lock properly in mhi_pm_m0_transition (Jarod Wilson) [1938030]
+- bus: mhi: core: Do not process SYS_ERROR if RDDM is supported (Jarod Wilson) [1938030]
+- bus: mhi: core: Skip handling BHI irq if MHI reg access is not allowed (Jarod Wilson) [1938030]
+- bus: mhi: core: Handle disable transitions in state worker (Jarod Wilson) [1938030]
+- bus: mhi: core: Remove the system error worker thread (Jarod Wilson) [1938030]
+- bus: mhi: core: Ensure non-zero session or sequence ID values are used (Jarod Wilson) [1938030]
+- bus: mhi: core: Improve debug logs for loading firmware (Jarod Wilson) [1938030]
+- bus: mhi: core: Return appropriate error codes for AMSS load failure (Jarod Wilson) [1938030]
+- bus: mhi: core: Handle firmware load using state worker (Jarod Wilson) [1938030]
+- bus: mhi: core: Read transfer length from an event properly (Jarod Wilson) [1938030]
+- bus: mhi: core: Add range check for channel id received in event ring (Jarod Wilson) [1938030]
+- bus: mhi: core: Cache intmod from mhi event to mhi channel (Jarod Wilson) [1938030]
+- bus: mhi: core: Refactor mhi queue APIs (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix some error return code (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix channel device name conflict (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix typo in comment (Jarod Wilson) [1938030]
+- bus: mhi: core: Offload register accesses to the controller (Jarod Wilson) [1938030]
+- bus: mhi: core: Remove link_status() callback (Jarod Wilson) [1938030]
+- bus: mhi: core: Make sure to powerdown if mhi_sync_power_up fails (Jarod Wilson) [1938030]
+- bus: mhi: Fix parsing of mhi_flags (Jarod Wilson) [1938030]
+- bus: mhi: core: Fix a NULL vs IS_ERR check in mhi_create_devices() (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for MHI suspend and resume (Jarod Wilson) [1938030]
+- bus: mhi: core: Drop the references to mhi_dev in mhi_destroy_device() (Jarod Wilson) [1938030]
+- bus: mhi: core: Initialize bhie field in mhi_cntrl for RDDM capture (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for reading MHI info from device (Jarod Wilson) [1938030]
+- bus: mhi: core: Pass module owner during client driver registration (Jarod Wilson) [1938030]
+- bus/mhi: fix printk format for size_t (Jarod Wilson) [1938030]
+- bus: mhi: core: Add uevent support for module autoloading (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for data transfer (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for processing events from client device (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for downloading RDDM image during panic (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for downloading firmware over BHIe (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for basic PM operations (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for PM state transitions (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for ringing channel/event ring doorbells (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for creating and destroying MHI devices (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for registering MHI client drivers (Jarod Wilson) [1938030]
+- bus: mhi: core: Add support for registering MHI controllers (Jarod Wilson) [1938030]
+
+* Fri May 14 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-305.7.el8]
+- ipmi: remove open coded version of SMBus block write (Tony Camuso) [1947126]
+- char: ipmi: convert comma to semicolon (Tony Camuso) [1947126]
+- ipmi: msghandler: Suppress suspicious RCU usage warning (Tony Camuso) [1947126]
+- ipmi/watchdog: replace atomic_add() and atomic_sub() (Tony Camuso) [1947126]
+- char: ipmi: remove unneeded break (Tony Camuso) [1947126]
+- ipmi_si: Fix wrong return value in try_smi_init() (Tony Camuso) [1947126]
+- ipmi: msghandler: Fix a signedness bug (Tony Camuso) [1947126]
+- ipmi: add retry in try_get_dev_id() (Tony Camuso) [1947126]
+- ipmi: Clean up some printks (Tony Camuso) [1947126]
+- ipmi:msghandler: retry to get device id on an error (Tony Camuso) [1947126]
+- ipmi:sm: Print current state when the state is invalid (Tony Camuso) [1947126]
+- ipmi: Reset response handler when failing to send the command (Tony Camuso) [1947126]
+- ipmi: add a newline when printing parameter 'panic_op' by sysfs (Tony Camuso) [1947126]
+- cpuidle: Select polling interval based on a c-state with a longer target residency (Mark Langsdorf) [1922024]
+- cpuidle: big.LITTLE: enable driver only on Peach-Pit/Pi Chromebooks (Mark Langsdorf) [1922024]
+- cpuidle: record state entry rejection statistics (Mark Langsdorf) [1922024]
+- nitro_enclaves: Fix stale file descriptors on failed usercopy (Vitaly Kuznetsov) [1953717]
+- iavf: amend removal of MODULE_VERSION (Stefan Assmann) [1955738]
+- ixgbevf: Amend commit acf03026ec5a to include a version in module info. (Ken Cox) [1955764]
+- devlink: move flash end and begin to core devlink (Petr Oros) [1935671]
+- devlink: move request_firmware out of driver (Petr Oros) [1935671]
+- ice: add additional debug logging for firmware update (Petr Oros) [1935671]
+- ice: add support for flash update overwrite mask (Petr Oros) [1935671]
+- driver core: auxiliary bus: Fix calling stage for auxiliary bus init (Ivan Vecera) [1933820]
+- driver core: auxiliary bus: Fix auxiliary bus shutdown null auxdrv ptr (Ivan Vecera) [1933820]
+- driver core: auxiliary bus: minor coding style tweaks (Ivan Vecera) [1933820]
+- driver core: auxiliary bus: make remove function return void (Ivan Vecera) [1933820]
+- driver core: auxiliary bus: move slab.h from include file (Ivan Vecera) [1933820]
+- Add auxiliary bus support (Ivan Vecera) [1933820]
+- modpost: file2alias: go back to simple devtable lookup (Ivan Vecera) [1933820]
+- scsi: lpfc: Fix bad memory access during VPD DUMP mailbox command (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix DMA virtual address ptr assignment in bsg (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix illegal memory access on Abort IOCBs (Dick Kennedy) [1923762]
+- scsi: lpfc: Copyright updates for 12.8.0.9 patches (Dick Kennedy) [1923762]
+- scsi: lpfc: Update lpfc version to 12.8.0.9 (Dick Kennedy) [1923762]
+- scsi: lpfc: Eliminate use of LPFC_DRIVER_NAME in lpfc_attr.c (Dick Kennedy) [1923762]
+- scsi: lpfc: Standardize discovery object logging format (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix various trivial errors in comments and log messages (Dick Kennedy) [1923762]
+- scsi: lpfc: Remove unsupported mbox PORT_CAPABILITIES logic (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix lpfc_hdw_queue attribute being ignored (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix missing FDMI registrations after Mgmt Svc login (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix silent memory allocation failure in lpfc_sli4_bsg_link_diag_test() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix use-after-free on unused nodes after port swap (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix error handling for mailboxes completed in MBX_POLL mode (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix lack of device removal on port swaps with PRLIs (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix NMI crash during rmmod due to circular hbalock dependency (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix reference counting errors in lpfc_cmpl_els_rsp() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix crash when a REG_RPI mailbox fails triggering a LOGO response (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix rmmod crash due to bad ring pointers to abort_iotag (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix gcc -Wstringop-overread warning (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix a typo (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix a typo (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix kernel-doc formatting issue (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix a few incorrectly named functions (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix incorrectly documented function lpfc_debugfs_commonxripools_data() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix a bunch of misnamed functions (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix a bunch of kernel-doc misdemeanours (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix incorrect naming of __lpfc_update_fcf_record() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix formatting and misspelling issues (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix a bunch of kernel-doc issues (Dick Kennedy) [1923762]
+- scsi: lpfc: Update copyrights for 12.8.0.7 and 12.8.0.8 changes (Dick Kennedy) [1923762]
+- scsi: lpfc: Update lpfc version to 12.8.0.8 (Dick Kennedy) [1923762]
+- scsi: lpfc: Correct function header comments related to ndlp reference counting (Dick Kennedy) [1923762]
+- scsi: lpfc: Reduce LOG_TRACE_EVENT logging for vports (Dick Kennedy) [1923762]
+- scsi: lpfc: Change wording of invalid pci reset log message (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix crash caused by switch reboot (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix pt2pt state transition causing rmmod hang (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix nodeinfo debugfs output (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix ADISC handling that never frees nodes (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix PLOGI ACC to be transmit after REG_LOGIN (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix dropped FLOGI during pt2pt discovery recovery (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix status returned in lpfc_els_retry() error exit path (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix use after free in lpfc_els_free_iocb (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix null pointer dereference in lpfc_prep_els_iocb() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix unnecessary null check in lpfc_release_scsi_buf (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix pt2pt connection does not recover after LOGO (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix lpfc_els_retry() possible null pointer dereference (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix FLOGI failure due to accessing a freed node (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix stale node accesses on stale RRQ request (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix reftag generation sizing errors (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix vport indices in lpfc_find_vport_by_vpid() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix incorrect dbde assignment when building target abts wqe (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix 'physical' typos (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix ancient double free (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix kerneldoc inconsistency in lpfc_sli4_dump_page_a0() (Dick Kennedy) [1923762]
+- scsi: lpfc: Add support for eh_should_retry_cmd() (Dick Kennedy) [1923762]
+- scsi: lpfc: Simplify bool comparison (Dick Kennedy) [1923762]
+- scsi: lpfc: Update lpfc version to 12.8.0.7 (Dick Kennedy) [1923762]
+- scsi: lpfc: Enhancements to LOG_TRACE_EVENT for better readability (Dick Kennedy) [1923762]
+- scsi: lpfc: Implement health checking when aborting I/O (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix crash when nvmet transport calls host_release (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix vport create logging (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix NVMe recovery after mailbox timeout (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix target reset failing (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix error log messages being logged following SCSI task mgnt (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix FW reset action if I/Os are outstanding (Dick Kennedy) [1923762]
+- scsi: lpfc: Use the nvme-fc transport supplied timeout for LS requests (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix crash when a fabric node is released prematurely (Dick Kennedy) [1923762]
+- scsi: lpfc: Refresh ndlp when a new PRLI is received in the PRLI issue state (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix auto sli_mode and its effect on CONFIG_PORT for SLI3 (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix PLOGI S_ID of 0 on pt2pt config (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix fall-through warnings for Clang (Dick Kennedy) [1923762]
+- scsi: lpfc: Correct null ndlp reference on routine exit (Dick Kennedy) [1923762]
+- scsi: lpfc: Use generic power management (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix variable 'vport' set but not used in lpfc_sli4_abts_err_handler() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix missing prototype for lpfc_nvmet_prep_abort_wqe() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix set but unused variables in lpfc_dev_loss_tmo_handler() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix set but not used warnings from Rework remote port lock handling (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix missing prototype warning for lpfc_fdmi_vendor_attr_mi() (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix memory leak on lcb_context (Dick Kennedy) [1923762]
+- scsi: lpfc: Remove dead code on second !ndlp check (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix pointer defereference before it is null checked issue (Dick Kennedy) [1923762]
+- scsi: lpfc: Update changed file copyrights for 2020 (Dick Kennedy) [1923762]
+- scsi: lpfc: Update lpfc version to 12.8.0.6 (Dick Kennedy) [1923762]
+- scsi: lpfc: Convert abort handling to SLI-3 and SLI-4 handlers (Dick Kennedy) [1923762]
+- scsi: lpfc: Convert SCSI I/O completions to SLI-3 and SLI-4 handlers (Dick Kennedy) [1923762]
+- scsi: lpfc: Convert SCSI path to use common I/O submission path (Dick Kennedy) [1923762]
+- scsi: lpfc: Enable common send_io interface for SCSI and NVMe (Dick Kennedy) [1923762]
+- scsi: lpfc: Enable common wqe_template support for both SCSI and NVMe (Dick Kennedy) [1923762]
+- scsi: lpfc: Refactor WQE structure definitions for common use (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix NPIV Fabric Node reference counting (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix NPIV discovery and Fabric Node detection (Dick Kennedy) [1923762]
+- scsi: lpfc: Unsolicited ELS leaves node in incorrect state while dropping it (Dick Kennedy) [1923762]
+- scsi: lpfc: Remove ndlp when a PLOGI/ADISC/PRLI/REG_RPI ultimately fails (Dick Kennedy) [1923762]
+- scsi: lpfc: Rework remote port lock handling (Dick Kennedy) [1923762]
+- scsi: lpfc: Honor module parameter lpfc_use_adisc (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix refcounting around SCSI and NVMe transport APIs (Dick Kennedy) [1923762]
+- scsi: lpfc: Fix removal of SCSI transport device get and put on dev structure (Dick Kennedy) [1923762]
+- scsi: lpfc: Rework locations of ndlp reference taking (Dick Kennedy) [1923762]
+- scsi: lpfc: Rework remote port ref counting and node freeing (Dick Kennedy) [1923762]
+- scsi: lpfc: remove ScsiResult macro (Dick Kennedy) [1923762]
+- scsi: lpfc: lpfc_nvmet: Fix-up some formatting and doc-rot issues (Dick Kennedy) [1923762]
+- scsi: lpfc: lpfc_nvme: Fix some kernel-doc related issues (Dick Kennedy) [1923762]
+- scsi: lpfc: lpfc_nvme: Remove unused variable 'phba' (Dick Kennedy) [1923762]
+- scsi: lpfc: lpfc_bsg: Provide correct documentation for a bunch of functions (Dick Kennedy) [1923762]
+- scsi: lpfc: lpfc_debugfs: Fix a couple of function documentation issues (Dick Kennedy) [1923762]
+- scsi: lpfc: lpfc_attr: Fix-up a bunch of kernel-doc misdemeanours (Dick Kennedy) [1923762]
+- scsi: lpfc: lpfc_attr: Demote kernel-doc format for redefined functions (Dick Kennedy) [1923762]
+- scsi: lpfc: lpfc_scsi: Fix a whole host of kernel-doc issues (Dick Kennedy) [1923762]
+- block: return -EBUSY when there are open partitions in blkdev_reread_part (Ming Lei) [1936800]
+- block: Try to handle busy underlying device on discard (Ming Lei) [1936800]
+- md: check for NULL ->meta_bdev before calling bdev_read_only (Ming Lei) [1936800]
+- blk-settings: align max_sectors on "logical_block_size" boundary (Ming Lei) [1936800]
+- nbd: handle device refs for DESTROY_ON_DISCONNECT properly (Ming Lei) [1936800]
+- kyber: introduce kyber_depth_updated() (Ming Lei) [1936800]
+- loop: fix I/O error on fsync() in detached loop devices (Ming Lei) [1936800]
+- block: fix potential IO hang when turning off io_poll (Ming Lei) [1936800]
+- bfq: Use only idle IO periods for think time calculations (Ming Lei) [1936800]
+- bfq: Use 'ttime' local variable (Ming Lei) [1936800]
+- bfq: Avoid false bfq queue merging (Ming Lei) [1936800]
+- bfq: bfq_check_waker() should be static (Ming Lei) [1936800]
+- block, bfq: make waker-queue detection more robust (Ming Lei) [1936800]
+- block, bfq: save also injection state on queue merging (Ming Lei) [1936800]
+- block, bfq: save also weight-raised service on queue merging (Ming Lei) [1936800]
+- block, bfq: fix switch back from soft-rt weitgh-raising (Ming Lei) [1936800]
+- block, bfq: re-evaluate convenience of I/O plugging on rq arrivals (Ming Lei) [1936800]
+- block, bfq: replace mechanism for evaluating I/O intensity (Ming Lei) [1936800]
+- block: set .bi_max_vecs as actual allocated vector number (Ming Lei) [1936800]
+- block: don't allocate inline bvecs if this bioset needn't bvecs (Ming Lei) [1936800]
+- block: don't pass BIOSET_NEED_BVECS for q->bio_split (Ming Lei) [1936800]
+- block: manage bio slab cache by xarray (Ming Lei) [1936800]
+- block, bfq: do not expire a queue when it is the only busy one (Ming Lei) [1936800]
+- block, bfq: avoid spurious switches to soft_rt of interactive queues (Ming Lei) [1936800]
+- block, bfq: do not raise non-default weights (Ming Lei) [1936800]
+- block, bfq: increase time window for waker detection (Ming Lei) [1936800]
+- block, bfq: use half slice_idle as a threshold to check short ttime (Ming Lei) [1936800]
+- brd: remove the end of device check in brd_do_bvec (Ming Lei) [1936800]
+- block: propagate BLKROSET on the whole device to all partitions (Ming Lei) [1936800]
+- block: add a hard-readonly flag to struct gendisk (Ming Lei) [1936800]
+- block: remove the NULL bdev check in bdev_read_only (Ming Lei) [1936800]
+- dm: use bdev_read_only to check if a device is read-only (Ming Lei) [1936800]
+- block: reopen the device in blkdev_reread_part (Ming Lei) [1936800]
+- block, bfq: set next_rq to waker_bfqq->next_rq in waker injection (Ming Lei) [1936800]
+- Revert "block: simplify set_init_blocksize" to regain lost performance (Ming Lei) [1936800]
+- bfq-iosched: Revert "bfq: Fix computation of shallow depth" (Ming Lei) [1936800]
+- blk-mq-debugfs: Add decode for BLK_MQ_F_TAG_HCTX_SHARED (Ming Lei) [1936800]
+- bfq: Fix computation of shallow depth (Ming Lei) [1936800]
+- block: rsxx: select CONFIG_CRC32 (Ming Lei) [1936800]
+- block: add debugfs stanza for QUEUE_FLAG_NOWAIT (Ming Lei) [1936800]
+- blk-mq: Don't complete on a remote CPU in force threaded mode (Ming Lei) [1936800]
+- blk-mq: Remove 'running from the wrong CPU' warning (Ming Lei) [1936800]
+- block: disable iopoll for split bio (Ming Lei) [1936800]
+- block: Improve blk_revalidate_disk_zones() checks (Ming Lei) [1936800]
+- sbitmap: replace CAS with atomic and (Ming Lei) [1936800]
+- sbitmap: remove swap_lock (Ming Lei) [1936800]
+- sbitmap: optimise sbitmap_deferred_clear() (Ming Lei) [1936800]
+- blk-mq: skip hybrid polling if iopoll doesn't spin (Ming Lei) [1936800]
+- blktrace: fix up a kerneldoc comment (Ming Lei) [1936800]
+- block: remove the unused block_sleeprq tracepoint (Ming Lei) [1936800]
+- blk-throttle: don't check whether or not lower limit is valid if CONFIG_BLK_DEV_THROTTLING_LOW is off (Ming Lei) [1936800]
+- block: fix inflight statistics of part0 (Ming Lei) [1936800]
+- block: optimise for_each_bvec() advance (Ming Lei) [1936800]
+- block: opencode devcgroup_inode_permission (Ming Lei) [1936800]
+- block: move bdput() to the callers of __blkdev_get (Ming Lei) [1936800]
+- block: refactor blkdev_get (Ming Lei) [1936800]
+- block: refactor __blkdev_put (Ming Lei) [1936800]
+- block: switch bdgrab to use igrab (Ming Lei) [1936800]
+- block: change the hash used for looking up block devices (Ming Lei) [1936800]
+- block: use put_device in put_disk (Ming Lei) [1936800]
+- block: use disk_part_iter_exit in disk_part_iter_next (Ming Lei) [1936800]
+- block: add a bdev_kobj helper (Ming Lei) [1936800]
+- block: remove a superflous check in blkpg_do_ioctl (Ming Lei) [1936800]
+- block: remove a duplicate __disk_get_part prototype (Ming Lei) [1936800]
+- loop: do not call set_blocksize (Ming Lei) [1936800]
+- zram: do not call set_blocksize (Ming Lei) [1936800]
+- block: wbt: Remove unnecessary invoking of wbt_update_limits in wbt_init (Ming Lei) [1936800]
+- virtio-blk: remove a spurious call to revalidate_disk_size (Ming Lei) [1936800]
+- md: remove a spurious call to revalidate_disk_size in update_size (Ming Lei) [1936800]
+- aoe: don't call set_capacity from irq context (Ming Lei) [1936800]
+- nbd: validate the block size in nbd_set_size (Ming Lei) [1936800]
+- nbd: refactor size updates (Ming Lei) [1936800]
+- nbd: move the task_recv check into nbd_size_update (Ming Lei) [1936800]
+- nbd: remove the call to set_blocksize (Ming Lei) [1936800]
+- loop: let set_capacity_revalidate_and_notify update the bdev size (Ming Lei) [1936800]
+- block: remove the call to __invalidate_device in check_disk_size_change (Ming Lei) [1936800]
+- block: fix the kerneldoc comment for __register_blkdev (Ming Lei) [1936800]
+- block: switch gendisk lookup to a simple xarray (Ming Lei) [1936800]
+- ide: switch to __register_blkdev for command set probing (Ming Lei) [1936800]
+- md: use __register_blkdev to allocate devices on demand (Ming Lei) [1936800]
+- loop: use __register_blkdev to allocate devices on demand (Ming Lei) [1936800]
+- brd: use __register_blkdev to allocate devices on demand (Ming Lei) [1936800]
+- sd: use __register_blkdev to avoid a modprobe for an unregistered dev_t (Ming Lei) [1936800]
+- swim: don't call blk_register_region (Ming Lei) [1936800]
+- ide: remove ide_{,un}register_region (Ming Lei) [1936800]
+- block: add an optional probe callback to major_names (Ming Lei) [1936800]
+- block: rework requesting modules for unclaimed devices (Ming Lei) [1936800]
+- block: split block_class_lock (Ming Lei) [1936800]
+- block: open code kobj_map into in block/genhd.c (Ming Lei) [1936800]
+- block: cleanup del_gendisk a bit (Ming Lei) [1936800]
+- loop: use set_disk_ro (Ming Lei) [1936800]
+- dasd: implement ->set_read_only to hook into BLKROSET processing (Ming Lei) [1936800]
+- md: implement ->set_read_only to hook into BLKROSET processing (Ming Lei) [1936800]
+- rbd: implement ->set_read_only to hook into BLKROSET processing (Ming Lei) [1936800]
+- block: add a new set_read_only method (Ming Lei) [1936800]
+- blk-cgroup: fix a hd_struct leak in blkcg_fill_root_iostats (Ming Lei) [1936800]
+- blk-cgroup: Pre-allocate tree node on blkg_conf_prep (Ming Lei) [1936800]
+- blk-cgroup: Fix memleak on error path (Ming Lei) [1936800]
+- blk-mq: remove the calling of local_memory_node() (Ming Lei) [1936800]
+- zram: Fix __zram_bvec_{read,write}() locking order (Ming Lei) [1936800]
+- skd_main: remove unused including <linux/version.h> (Ming Lei) [1936800]
+- sgl_alloc_order: fix memory leak (Ming Lei) [1936800]
+- block: fix uapi blkzoned.h comments (Ming Lei) [1936800]
+- blk-mq: move cancel of hctx->run_work to the front of blk_exit_queue (Ming Lei) [1936800]
+- blk-mq: get rid of the dead flush handle code path (Ming Lei) [1936800]
+- block: get rid of unnecessary local variable (Ming Lei) [1936800]
+- block: fix comment and add lockdep assert (Ming Lei) [1936800]
+- blk-mq: use helper function to test hw stopped (Ming Lei) [1936800]
+- block: use helper function to test queue register (Ming Lei) [1936800]
+- block: remove redundant mq check (Ming Lei) [1936800]
+- block: invoke blk_mq_exit_sched no matter whether have .exit_sched (Ming Lei) [1936800]
+- block: ratelimit handle_bad_sector() message (Ming Lei) [1936800]
+- blk-throttle: Re-use the throtl_set_slice_end() (Ming Lei) [1936800]
+- blk-throttle: Open code __throtl_de/enqueue_tg() (Ming Lei) [1936800]
+- blk-throttle: Move service tree validation out of the throtl_rb_first() (Ming Lei) [1936800]
+- blk-throttle: Move the list operation after list validation (Ming Lei) [1936800]
+- blk-throttle: Fix IO hang for a corner case (Ming Lei) [1936800]
+- blk-throttle: Avoid tracking latency if low limit is invalid (Ming Lei) [1936800]
+- blk-throttle: Avoid getting the current time if tg->last_finish_time is 0 (Ming Lei) [1936800]
+- blk-throttle: Remove a meaningless parameter for throtl_downgrade_state() (Ming Lei) [1936800]
+- block: Remove redundant 'return' statement (Ming Lei) [1936800]
+- block: Consider only dispatched requests for inflight statistic (Ming Lei) [1936800]
+- block: remove the unused blk_integrity_merge_bio export (Ming Lei) [1936800]
+- block: remove the unused blk_integrity_merge_rq export (Ming Lei) [1936800]
+- blk-mq: add cond_resched() in __blk_mq_alloc_rq_maps() (Ming Lei) [1936800]
+- vsprintf: use bd_partno in bdev_name (Ming Lei) [1936800]
+- block: use bd_partno in bdevname (Ming Lei) [1936800]
+- target/iblock: fix holder printing in iblock_show_configfs_dev_params (Ming Lei) [1936800]
+- drbd: don't set ->bd_contains (Ming Lei) [1936800]
+- drbd: don't detour through bd_contains for the gendisk (Ming Lei) [1936800]
+- block: add a bdev_is_partition helper (Ming Lei) [1936800]
+- bdi: remove BDI_CAP_CGROUP_WRITEBACK (Ming Lei) [1936800]
+- block: lift setting the readahead size into the block layer (Ming Lei) [1936800]
+- bdi: initialize ->ra_pages and ->io_pages in bdi_init (Ming Lei) [1936800]
+- block: ensure bdi->io_pages is always initialized (Ming Lei) [1936800]
+- aoe: set an optimal I/O size (Ming Lei) [1936800]
+- drbd: remove dead code in device_to_statistics (Ming Lei) [1936800]
+- raw: don't keep unopened block device around (Ming Lei) [1936800]
+- zram: cleanup backing_dev_store (Ming Lei) [1936800]
+- zram: fix double free backing device (Ming Lei) [1936800]
+- pktcdvd: use blkdev_get_by_dev instead of open coding it (Ming Lei) [1936800]
+- pktcdvd: remove the if 0'ed pkt_start_recovery function (Ming Lei) [1936800]
+- block: cleanup blkdev_bszset (Ming Lei) [1936800]
+- block: move the NEED_PART_SCAN flag to struct gendisk (Ming Lei) [1936800]
+- block: drop double zeroing (Ming Lei) [1936800]
+- blk-throttle: Avoid checking bps/iops limitation if bps or iops is unlimited (Ming Lei) [1936800]
+- blk-throttle: Avoid calculating bps/iops limitation repeatedly (Ming Lei) [1936800]
+- blk-throttle: Define readable macros instead of static variables (Ming Lei) [1936800]
+- blk-throttle: Use readable READ/WRITE macros (Ming Lei) [1936800]
+- blk-throttle: Fix some comments' typos (Ming Lei) [1936800]
+- block: introduce part_[begin|end]_io_acct (Ming Lei) [1936800]
+- blkcg: add plugging support for punt bio (Ming Lei) [1936800]
+- block: remove check_disk_change (Ming Lei) [1936800]
+- sr: simplify sr_block_revalidate_disk (Ming Lei) [1936800]
+- sr: use bdev_check_media_change (Ming Lei) [1936800]
+- sd: use bdev_check_media_change (Ming Lei) [1936800]
+- md: use bdev_check_media_change (Ming Lei) [1936800]
+- gdrom: use bdev_check_media_change (Ming Lei) [1936800]
+- paride/pcd: use bdev_check_media_change (Ming Lei) [1936800]
+- xsysace: simplify media change handling (Ming Lei) [1936800]
+- xsysace: use bdev_check_media_change (Ming Lei) [1936800]
+- swim3: use bdev_check_media_changed (Ming Lei) [1936800]
+- swim: simplify media change handling (Ming Lei) [1936800]
+- swim: use bdev_check_media_change (Ming Lei) [1936800]
+- ataflop: use bdev_check_media_change (Ming Lei) [1936800]
+- amiflop: use bdev_check_media_change (Ming Lei) [1936800]
+- block: add a bdev_check_media_change helper (Ming Lei) [1936800]
+- block: Remove unused blk_mq_sched_free_hctx_data() (Ming Lei) [1936800]
+- block: Do not discard buffers under a mounted filesystem (Ming Lei) [1936800]
+- fs: Don't invalidate page buffers in block_write_full_page() (Ming Lei) [1936800]
+- block: remove revalidate_disk() (Ming Lei) [1936800]
+- nvdimm: simplify revalidate_disk handling (Ming Lei) [1936800]
+- sd: open code revalidate_disk (Ming Lei) [1936800]
+- nvme: opencode revalidate_disk in nvme_validate_ns (Ming Lei) [1936800]
+- block: use revalidate_disk_size in set_capacity_revalidate_and_notify (Ming Lei) [1936800]
+- block: add a new revalidate_disk_size helper (Ming Lei) [1936800]
+- block: rename bd_invalidated (Ming Lei) [1936800]
+- block: don't clear bd_invalidated in check_disk_size_change (Ming Lei) [1936800]
+- block: better deal with the delayed not supported case in blk_cloned_rq_check_limits (Ming Lei) [1936800]
+- block: Return blk_status_t instead of errno codes (Ming Lei) [1936800]
+- block: grant IOPRIO_CLASS_RT to CAP_SYS_NICE (Ming Lei) [1936800]
+- block: remove the unused q argument to part_in_flight and part_in_flight_rw (Ming Lei) [1936800]
+- block: remove the disk argument to delete_partition (Ming Lei) [1936800]
+- block: move the devcgroup_inode_permission call to blkdev_get (Ming Lei) [1936800]
+- blk-mq: use BLK_MQ_NO_TAG for no tag (Ming Lei) [1936800]
+- block: Move blk_mq_bio_list_merge() into blk-merge.c (Ming Lei) [1936800]
+- block: Move bio merge related functions into blk-merge.c (Ming Lei) [1936800]
+- blk-wbt: Remove obsolete multiqueue I/O scheduling comment (Ming Lei) [1936800]
+- raw: deprecate the raw driver (Ming Lei) [1936800]
+- nvme: don't call revalidate_disk from nvme_set_queue_dying (Ming Lei) [1936800]
+- block: fix locking for struct block_device size updates (Ming Lei) [1936800]
+- block: replace bd_set_size with bd_set_nr_sectors (Ming Lei) [1936800]
+- block: Make request_queue.rpm_status an enum (Ming Lei) [1936800]
+- mmc: remove the call to check_disk_change (Ming Lei) [1936800]
+- block: integrate bd_start_claiming into __blkdev_get (Ming Lei) [1936800]
+- block: use bd_prepare_to_claim directly in the loop driver (Ming Lei) [1936800]
+- block: refactor bd_start_claiming (Ming Lei) [1936800]
+- block: simplify the restart case in __blkdev_get (Ming Lei) [1936800]
+- block: simplify set_init_blocksize (Ming Lei) [1936800]
+- block: remove flush_disk (Ming Lei) [1936800]
+- block: move block-related definitions out of fs.h (Ming Lei) [1936800]
+- xen-blkfront.c: Convert to use set_capacity_revalidate_and_notify (Ming Lei) [1936800]
+
+* Thu May 13 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-305.6.el8]
+- redhat/configs: Add CONFIG_PINCTRL_EMMITSBURG (David Arcari) [1959506]
+- redhat/configs: Remove CONFIG_EMMITSBURG (David Arcari) [1959506]
+- fuse: fix write deadlock (Miklos Szeredi) [1904597]
+- sched/debug: Fix cgroup_path[] serialization (Waiman Long) [1954363]
+- KVM: x86/xen: Take srcu lock when accessing kvm_memslots() (Paolo Bonzini) [1945742]
+- KVM: SVM: Allocate SEV command structures on local stack (Paolo Bonzini) [1945742]
+- crypto: ccp: Use the stack and common buffer for INIT command (Paolo Bonzini) [1945742]
+- crypto: ccp: Use the stack and common buffer for status commands (Paolo Bonzini) [1945742]
+- crypto: ccp: Use the stack for small SEV command buffers (Paolo Bonzini) [1945742]
+- crypto: ccp: Play nice with vmalloc'd memory for SEV command structs (Paolo Bonzini) [1945742]
+- crypto: ccp: Reject SEV commands with mismatching command buffer (Paolo Bonzini) [1945742]
+- crypto: ccp: Detect and reject "invalid" addresses destined for PSP (Paolo Bonzini) [1945742]
+- crypto: ccp: Free SEV device if SEV init fails (Paolo Bonzini) [1945742]
+- crypto: ccp - Fix sparse warnings in sev-dev (Paolo Bonzini) [1945742]
+- drivers/crypto/ccp/sev-dev.c: get rid of pointless access_ok() (Paolo Bonzini) [1945742]
+- crypto: ccp - Add support for SEV-ES to the PSP driver (Paolo Bonzini) [1945742]
+- KVM: SVM: Add KVM_SEV_RECEIVE_FINISH command (Paolo Bonzini) [1945742]
+- KVM: SVM: Add KVM_SEV_RECEIVE_UPDATE_DATA command (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for KVM_SEV_RECEIVE_START command (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for KVM_SEV_SEND_CANCEL command (Paolo Bonzini) [1945742]
+- KVM: SVM: Add KVM_SEV_SEND_FINISH command (Paolo Bonzini) [1945742]
+- KVM: SVM: Add KVM_SEND_UPDATE_DATA command (Paolo Bonzini) [1945742]
+- KVM: SVM: Add KVM_SEV SEND_START command (Paolo Bonzini) [1945742]
+- KVM: Boost vCPU candidate in user mode which is delivering interrupt (Paolo Bonzini) [1945742]
+- nSVM: Check addresses of MSR and IO permission maps (Paolo Bonzini) [1945742]
+- KVM: SVM: Define actual size of IOPM and MSRPM tables (Paolo Bonzini) [1945742]
+- KVM: vmx: add mismatched size assertions in vmcs_check32() (Paolo Bonzini) [1945742]
+- KVM: Add proper lockdep assertion in I/O bus unregister (Paolo Bonzini) [1945742]
+- KVM: Stop looking for coalesced MMIO zones if the bus is destroyed (Paolo Bonzini) [1945742]
+- KVM: Destroy I/O bus devices on unregister failure _after_ sync'ing SRCU (Paolo Bonzini) [1945742]
+- KVM: SVM: Enhance and clean up the vmcb tracking comment in pre_svm_run() (Paolo Bonzini) [1945742]
+- KVM: SVM: Add a comment to clarify what vcpu_svm.vmcb points at (Paolo Bonzini) [1945742]
+- KVM: SVM: Drop vcpu_svm.vmcb_pa (Paolo Bonzini) [1945742]
+- KVM: SVM: Don't set current_vmcb->cpu when switching vmcb (Paolo Bonzini) [1945742]
+- KVM: SVM: Make sure GHCB is mapped before updating (Paolo Bonzini) [1945742]
+- KVM: X86: Do not yield to self (Paolo Bonzini) [1945742]
+- KVM: X86: Count attempted/successful directed yield (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Protect the tdp_mmu_roots list with RCU (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: handle cmpxchg failure in kvm_tdp_mmu_get_root (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Make TDP MMU root refcount atomic (Paolo Bonzini) [1945742]
+- KVM: x86: implement KVM_CAP_SET_GUEST_DEBUG2 (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Refactor yield safe root iterator (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Merge TDP MMU put and free root (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: use tdp_mmu_free_sp to free roots (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Move kvm_mmu_(get|put)_root to TDP MMU (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Re-add const qualifier in kvm_tdp_mmu_zap_collapsible_sptes (Paolo Bonzini) [1945742]
+- KVM: constify kvm_arch_flush_remote_tlbs_memslot (Paolo Bonzini) [1945742]
+- KVM: Explicitly use GFP_KERNEL_ACCOUNT for 'struct kvm_vcpu' allocations (Paolo Bonzini) [1945742]
+- KVM: MMU: protect TDP MMU pages only down to required level (Paolo Bonzini) [1945742]
+- KVM: introduce KVM_CAP_SET_GUEST_DEBUG2 (Paolo Bonzini) [1945742]
+- KVM: x86: pending exceptions must not be blocked by an injected event (Paolo Bonzini) [1945742]
+- KVM: nSVM: call nested_svm_load_cr3 on nested state load (Paolo Bonzini) [1945742]
+- KVM: x86: dump_vmcs should include the autoload/autostore MSR lists (Paolo Bonzini) [1945742]
+- KVM: x86: dump_vmcs should show the effective EFER (Paolo Bonzini) [1945742]
+- KVM: x86: dump_vmcs should consider only the load controls of EFER/PAT (Paolo Bonzini) [1945742]
+- KVM: x86: dump_vmcs should not conflate EFER and PAT presence in VMCS (Paolo Bonzini) [1945742]
+- KVM: x86: dump_vmcs should not assume GUEST_IA32_EFER is valid (Paolo Bonzini) [1945742]
+- KVM: nSVM: improve SYSENTER emulation on AMD (Paolo Bonzini) [1945742]
+- KVM: x86: add guest_cpuid_is_intel (Paolo Bonzini) [1945742]
+- KVM: x86: Account a variety of miscellaneous allocations (Paolo Bonzini) [1945742]
+- KVM: SVM: Do not allow SEV/SEV-ES initialization after vCPUs are created (Paolo Bonzini) [1945742]
+- KVM: SVM: Do not set sev->es_active until KVM_SEV_ES_INIT completes (Paolo Bonzini) [1945742]
+- KVM: SVM: Use online_vcpus, not created_vcpus, to iterate over vCPUs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Simplify code for aging SPTEs in TDP MMU (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Remove spurious clearing of dirty bit from TDP MMU SPTE (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use leaf-only loop for walking TDP SPTEs when changing SPTE (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Pass address space ID to TDP MMU root walkers (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Pass address space ID to __kvm_tdp_mmu_zap_gfn_range() (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Coalesce TLB flushes across address spaces for gfn range zap (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Coalesce TLB flushes when zapping collapsible SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Move flushing for "slot" handlers to caller for legacy MMU (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Coalesce TDP MMU TLB flushes when zapping collapsible SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/vPMU: Forbid reading from MSR_F15H_PERF MSRs when guest doesn't have X86_FEATURE_PERFCTR_CORE (Paolo Bonzini) [1945742]
+- KVM: nSVM: If VMRUN is single-stepped, queue the #DB intercept in nested_svm_vmexit() (Paolo Bonzini) [1945742]
+- KVM: MMU: load PDPTRs outside mmu_lock (Paolo Bonzini) [1945742]
+- KVM: SVM: ensure that EFER.SVME is set when running nested guest or on nested vmexit (Paolo Bonzini) [1945742]
+- KVM: SVM: load control fields from VMCB12 before checking them (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Don't allow TDP MMU to yield when recovering NX pages (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Ensure TLBs are flushed for TDP MMU during NX zapping (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Ensure TLBs are flushed when yielding during GFN range zap (Paolo Bonzini) [1945742]
+- KVM: make: Fix out-of-source module builds (Paolo Bonzini) [1945742]
+- KVM: x86/vPMU: Forbid writing to MSR_F15H_PERF MSRs when guest doesn't have X86_FEATURE_PERFCTR_CORE (Paolo Bonzini) [1945742]
+- KVM: x86: remove unused declaration of kvm_write_tsc() (Paolo Bonzini) [1945742]
+- KVM: clean up the unused argument (Paolo Bonzini) [1945742]
+- x86/kvm: Fix broken irq restoration in kvm_wait (Paolo Bonzini) [1945742]
+- KVM: X86: Fix missing local pCPU when executing wbinvd on all dirty pCPUs (Paolo Bonzini) [1945742]
+- KVM: x86: Protect userspace MSR filter with SRCU, and set atomically-ish (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Store the address space ID in the TDP iterator (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Factor out tdp_iter_return_to_root (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Fix RCU usage when atomically zapping SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Fix RCU usage in handle_removed_tdp_mmu_page (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Mark the PAE roots as decrypted for shadow paging (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use '0' as the one and only value for an invalid PAE root (Paolo Bonzini) [1945742]
+- KVM: VMX: Track root HPA instead of EPTP for paravirt Hyper-V TLB flush (Paolo Bonzini) [1945742]
+- KVM: VMX: Skip additional Hyper-V TLB EPTP flushes if one fails (Paolo Bonzini) [1945742]
+- KVM: VMX: Define Hyper-V paravirt TLB flush fields iff Hyper-V is enabled (Paolo Bonzini) [1945742]
+- KVM: VMX: Explicitly check for hv_remote_flush_tlb when loading pgd (Paolo Bonzini) [1945742]
+- KVM: VMX: Don't invalidate hv_tlb_eptp if the new EPTP matches (Paolo Bonzini) [1945742]
+- KVM: VMX: Invalidate hv_tlb_eptp to denote an EPTP mismatch (Paolo Bonzini) [1945742]
+- KVM: VMX: Do Hyper-V TLB flush iff vCPU's EPTP hasn't been flushed (Paolo Bonzini) [1945742]
+- KVM: VMX: Fold Hyper-V EPTP checking into it's only caller (Paolo Bonzini) [1945742]
+- KVM: VMX: Stash kvm_vmx in a local variable for Hyper-V paravirt TLB flush (Paolo Bonzini) [1945742]
+- KVM: VMX: Track common EPTP for Hyper-V's paravirt TLB flush (Paolo Bonzini) [1945742]
+- KVM: x86: Get active PCID only when writing a CR3 value (Paolo Bonzini) [1945742]
+- KVM/SVM: Move vmenter.S exception fixups out of line (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Dump reserved bits if they're detected on non-MMIO SPTE (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use low available bits for removed SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use is_removed_spte() instead of open coded equivalents (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Tweak auditing WARN for A/D bits to !PRESENT (was MMIO) (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use a dedicated bit to track shadow/MMU-present SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use high bits for host/mmu writable masks for EPT SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Make Host-writable and MMU-writable bit locations dynamic (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Move logic for setting SPTE masks for EPT into the MMU proper (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Co-locate code for setting various SPTE masks (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Move initial kvm_mmu_set_mask_ptes() call into MMU proper (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Document dependency bewteen TDP A/D type and saved bits (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use MMIO SPTE bits 53 and 52 for the MMIO generation (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Rename and document A/D scheme for TDP SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Add module param to disable MMIO caching (for testing) (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Stop using software available bits to denote MMIO SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Rename 'mask' to 'spte' in MMIO SPTE helpers (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Drop redundant trace_kvm_mmu_set_spte() in the TDP MMU (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Handle MMIO SPTEs directly in mmu_set_spte() (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Don't install bogus MMIO SPTEs if MMIO caching is disabled (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Retry page faults that hit an invalid memslot (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Disable MMIO caching if MMIO value collides with L1TF (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Bail from fast_page_fault() if SPTE is not shadow-present (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Check for shadow-present SPTE before querying A/D status (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Add convenience wrapper for acting on single hva in TDP MMU (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Add typedefs for rmap/iter handlers (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use 'end' param in TDP MMU's test_age_gfn() (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: WARN if TDP MMU's set_tdp_spte() sees multiple GFNs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Remove spurious TLB flush from TDP MMU's change_pte() hook (Paolo Bonzini) [1945742]
+- KVM: x86: mmu: initialize fault.async_page_fault in walk_addr_generic (Paolo Bonzini) [1945742]
+- KVM: x86: determine if an exception has an error code only when injecting it. (Paolo Bonzini) [1945742]
+- KVM: nSVM: Optimize vmcb12 to vmcb02 save area copies (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for Virtual SPEC_CTRL (Paolo Bonzini) [1945742]
+- x86/cpufeatures: Add the Virtual SPEC_CTRL feature (Paolo Bonzini) [1945742]
+- KVM: nSVM: always use vmcb01 to for vmsave/vmload of guest state (Paolo Bonzini) [1945742]
+- KVM: SVM: move VMLOAD/VMSAVE to C code (Paolo Bonzini) [1945742]
+- KVM: SVM: Skip intercepted PAUSE instructions after emulation (Paolo Bonzini) [1945742]
+- KVM: SVM: Don't manually emulate RDPMC if nrips=0 (Paolo Bonzini) [1945742]
+- KVM: x86: Move RDPMC emulation to common code (Paolo Bonzini) [1945742]
+- KVM: x86: Move trivial instruction-based exit handlers to common code (Paolo Bonzini) [1945742]
+- KVM: x86: Move XSETBV emulation to common code (Paolo Bonzini) [1945742]
+- KVM: nSVM: Add VMLOAD/VMSAVE helper to deduplicate code (Paolo Bonzini) [1945742]
+- KVM: nSVM: Add helper to synthesize nested VM-Exit without collateral (Paolo Bonzini) [1945742]
+- KVM: x86: Handle triple fault in L2 without killing L1 (Paolo Bonzini) [1945742]
+- KVM: SVM: Pass struct kvm_vcpu to exit handlers (and many, many other places) (Paolo Bonzini) [1945742]
+- KVM: SVM: merge update_cr0_intercept into svm_set_cr0 (Paolo Bonzini) [1945742]
+- KVM: nSVM: Trace VM-Enter consistency check failures (Paolo Bonzini) [1945742]
+- KVM: x86: Move nVMX's consistency check macro to common code (Paolo Bonzini) [1945742]
+- KVM: nSVM: Add missing checks for reserved bits to svm_set_nested_state() (Paolo Bonzini) [1945742]
+- KVM: nSVM: only copy L1 non-VMLOAD/VMSAVE data in svm_set_nested_state() (Paolo Bonzini) [1945742]
+- KVM: nSVM: do not mark all VMCB02 fields dirty on nested vmexit (Paolo Bonzini) [1945742]
+- KVM: nSVM: do not mark all VMCB01 fields dirty on nested vmexit (Paolo Bonzini) [1945742]
+- KVM: nSVM: do not copy vmcb01->control blindly to vmcb02->control (Paolo Bonzini) [1945742]
+- KVM: nSVM: rename functions and variables according to vmcbXY nomenclature (Paolo Bonzini) [1945742]
+- KVM: nSVM: Track the ASID generation of the vmcb vmrun through the vmcb (Paolo Bonzini) [1945742]
+- KVM: nSVM: Track the physical cpu of the vmcb vmrun through the vmcb (Paolo Bonzini) [1945742]
+- KVM: SVM: Use a separate vmcb for the nested L2 guest (Paolo Bonzini) [1945742]
+- KVM: nSVM: Set the shadow root level to the TDP level for nested NPT (Paolo Bonzini) [1945742]
+- KVM: SVM: Don't strip the C-bit from CR2 on #PF interception (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: WARN on NULL pae_root or lm_root, or bad shadow root level (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Sync roots after MMU load iff load as successful (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Unexport MMU load/unload functions (Paolo Bonzini) [1945742]
+- KVM: x86: Defer the MMU unload to the normal path on an global INVPCID (Paolo Bonzini) [1945742]
+- KVM: nVMX: Defer the MMU reload to the normal path on an EPTP switch (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Set the C-bit in the PDPTRs and LM pseudo-PDPTRs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Fix and unconditionally enable WARNs to detect PAE leaks (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Check PDPTRs before allocating PAE roots (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Ensure MMU pages are available when allocating roots (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Allocate pae_root and lm_root pages in dedicated helper (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Allocate the lm_root before allocating PAE roots (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Capture 'mmu' in a local variable when allocating roots (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Alloc page for PDPTEs when shadowing 32-bit NPT with 64-bit (Paolo Bonzini) [1945742]
+- KVM: x86: to track if L1 is running L2 VM (Paolo Bonzini) [1945742]
+- KVM: LAPIC: Advancing the timer expiration on guest initiated write (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Skip !MMU-present SPTEs when removing SP in exclusive mode (Paolo Bonzini) [1945742]
+- KVM: kvmclock: Fix vCPUs > 64 can't be online/hotpluged (Paolo Bonzini) [1945742]
+- kvm: x86: use NULL instead of using plain integer as pointer (Paolo Bonzini) [1945742]
+- KVM: SVM: Connect 'npt' module param to KVM's internal 'npt_enabled' (Paolo Bonzini) [1945742]
+- KVM: x86: Ensure deadline timer has truly expired before posting its IRQ (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Fix return code when clearing vcpu_info and vcpu_time_info (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Set SPTE_AD_WRPROT_ONLY_MASK if and only if PML is enabled (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Fix Hyper-V context null-ptr-deref (Paolo Bonzini) [1945742]
+- KVM: SVM: Fix nested VM-Exit on #GP interception handling (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Fix dummy check if lbr_desc->event is created (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Consider the hva in mmu_notifier retry (Paolo Bonzini) [1945742]
+- kernel.h: split out min()/max() et al. helpers (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Skip mmu_notifier check when handling MMIO page fault (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Remove a variety of unnecessary exports (Paolo Bonzini) [1945742]
+- KVM: x86: Fold "write-protect large" use case into generic write-protect (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Don't set dirty bits when disabling dirty logging w/ PML (Paolo Bonzini) [1945742]
+- KVM: VMX: Dynamically enable/disable PML based on memslot dirty logging (Paolo Bonzini) [1945742]
+- KVM: x86: Further clarify the logic and comments for toggling log dirty (Paolo Bonzini) [1945742]
+- KVM: x86: Move MMU's PML logic to common code (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Make dirty log size hook (PML) a value, not a function (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Expand on the comment in kvm_vcpu_ad_need_write_protect() (Paolo Bonzini) [1945742]
+- KVM: nVMX: Disable PML in hardware when running L2 (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Consult max mapping level when zapping collapsible SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Pass the memslot to the rmap callbacks (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Split out max mapping level calculation to helper (Paolo Bonzini) [1945742]
+- KVM: nVMX: no need to undo inject_page_fault change on nested vmexit (Paolo Bonzini) [1945742]
+- KVM: nSVM: move nested vmrun tracepoint to enter_svm_guest_mode (Paolo Bonzini) [1945742]
+- KVM: VMX: read idt_vectoring_info a bit earlier (Paolo Bonzini) [1945742]
+- KVM: VMX: Allow INVPCID in guest without PCID (Paolo Bonzini) [1945742]
+- KVM: x86: Advertise INVPCID by default (Paolo Bonzini) [1945742]
+- KVM: SVM: Intercept INVPCID when it's disabled to inject #UD (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Make HVA handler retpoline-friendly (Paolo Bonzini) [1945742]
+- KVM: x86: move kvm_inject_gp up from kvm_set_dr to callers (Paolo Bonzini) [1945742]
+- KVM: x86: reading DR cannot fail (Paolo Bonzini) [1945742]
+- KVM: SVM: Remove an unnecessary forward declaration (Paolo Bonzini) [1945742]
+- KVM: SVM: Move AVIC vCPU kicking snippet to helper function (Paolo Bonzini) [1945742]
+- KVM: x86: Restore all 64 bits of DR6 and DR7 during RSM on x86-64 (Paolo Bonzini) [1945742]
+- KVM: x86: Remove misleading DR6/DR7 adjustments from RSM emulation (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Use hva_t for holding hypercall page address (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Remove extra unlock in kvm_xen_hvm_set_attr() (Paolo Bonzini) [1945742]
+- KVM: Use kvm_pfn_t for local PFN variable in hva_to_pfn_remapped() (Paolo Bonzini) [1945742]
+- KVM: x86: Add helper to consolidate "raw" reserved GPA mask calculations (Paolo Bonzini) [1945742]
+- KVM: selftests: Always run vCPU thread with blocked SIG_IPI (Paolo Bonzini) [1945742]
+- KVM: selftests: Sync data verify of dirty logging with guest sync (Paolo Bonzini) [1945742]
+- KVM: selftests: Add a test for kvm page table code (Paolo Bonzini) [1945742]
+- KVM: selftests: Adapt vm_userspace_mem_region_add to new helpers (Paolo Bonzini) [1945742]
+- KVM: selftests: List all hugetlb src types specified with page sizes (Paolo Bonzini) [1945742]
+- tools/headers: sync headers of asm-generic/hugetlb_encode.h (Paolo Bonzini) [1945742]
+- tools include uapi: Update linux/mmap.h copy (Paolo Bonzini) [1945742]
+- tools UAPI: Update copy of linux/mman.h from the kernel sources (Paolo Bonzini) [1945742]
+- mm/hugetlb: add mmap() encodings for 32MB and 512MB page sizes (Paolo Bonzini) [1945742]
+- RHEL: Add #defines for 16k hugepages (Paolo Bonzini) [1945742]
+- KVM: selftests: Add a helper to get system default hugetlb page size (Paolo Bonzini) [1945742]
+- KVM: selftests: Add a helper to get system configured THP page size (Paolo Bonzini) [1945742]
+- KVM: selftests: Make a generic helper to get vm guest mode strings (Paolo Bonzini) [1945742]
+- KVM: selftests: Print the errno besides error-string in TEST_ASSERT (Paolo Bonzini) [1945742]
+- KVM: selftests: remove redundant semi-colon (Paolo Bonzini) [1945742]
+- selftests: kvm: Check that TSC page value is small after KVM_SET_CLOCK(0) (Paolo Bonzini) [1945742]
+- KVM: x86: Prevent 'hv_clock->system_time' from going negative in kvm_guest_time_update() (Paolo Bonzini) [1945742]
+- selftests: kvm: make hardware_disable_test less verbose (Paolo Bonzini) [1945742]
+- selftests: kvm: add set_boot_cpu_id test (Paolo Bonzini) [1945742]
+- selftests: kvm: add _vm_ioctl (Paolo Bonzini) [1945742]
+- selftests: kvm: add get_msr_index_features (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Add support for vCPU runstate information (Paolo Bonzini) [1945742]
+- RHEL: configs: do not enable CONFIG_KVM_XEN (Paolo Bonzini) [1945742]
+- KVM: x86: allow compiling out the Xen hypercall interface (Paolo Bonzini) [1945742]
+- KVM: x86: compile out TDP MMU on 32-bit systems (Paolo Bonzini) [1945742]
+- KVM: xen: flush deferred static key before checking it (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Explicitly pad struct compat_vcpu_info to 64 bytes (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Allow reset of Xen attributes (Paolo Bonzini) [1945742]
+- KVM: Documentation: rectify rst markup in kvm_run->flags (Paolo Bonzini) [1945742]
+- Documentation: kvm: fix messy conversion from .txt to .rst (Paolo Bonzini) [1945742]
+- KVM: Documentation: rectify rst markup in KVM_GET_SUPPORTED_HV_CPUID (Paolo Bonzini) [1945742]
+- Documentation: kvm: fix warning (Paolo Bonzini) [1945742]
+- KVM: Add documentation for Xen hypercall and shared_info updates (Paolo Bonzini) [1945742]
+- KVM: X86: Add the Document for KVM_CAP_X86_BUS_LOCK_EXIT (Paolo Bonzini) [1945742]
+- KVM: Documentation: Fix documentation for nested. (Paolo Bonzini) [1945742]
+- KVM: Documentation: Add arm64 KVM_RUN error codes (Paolo Bonzini) [1945742]
+- KVM: Documentation: Update entry for KVM_CAP_ENFORCE_PV_CPUID (Paolo Bonzini) [1945742]
+- KVM: Documentation: Update entry for KVM_X86_SET_MSR_FILTER (Paolo Bonzini) [1945742]
+- docs: kvm: add documentation for KVM_CAP_S390_DIAG318 (Paolo Bonzini) [1945742]
+- selftests: kvm: Mmap the entire vcpu mmap area (Paolo Bonzini) [1945742]
+- selftests: kvm: avoid uninitialized variable warning (Paolo Bonzini) [1945742]
+- selftests: kvm: add hardware_disable test (Paolo Bonzini) [1945742]
+- KVM: selftests: Don't bother mapping GVA for Xen shinfo test (Paolo Bonzini) [1945742]
+- KVM: selftests: Fix hex vs. decimal snafu in Xen test (Paolo Bonzini) [1945742]
+- KVM: selftests: Fix size of memslots created by Xen tests (Paolo Bonzini) [1945742]
+- KVM: selftests: Ignore recently added Xen tests' build output (Paolo Bonzini) [1945742]
+- KVM: x86: declare Xen HVM shared info capability and add test case (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Drop hv_vcpu_to_vcpu() helper (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Allocate Hyper-V context lazily (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Make Hyper-V emulation enablement conditional (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Allocate 'struct kvm_vcpu_hv' dynamically (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Prepare to meet unallocated Hyper-V context (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Always use to_hv_vcpu() accessor to get to 'struct kvm_vcpu_hv' (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Stop shadowing global 'current_vcpu' variable (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Introduce to_kvm_hv() helper (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Rename vcpu_to_hv_syndbg() to to_hv_syndbg() (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Rename vcpu_to_stimer()/stimer_to_vcpu() (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Rename vcpu_to_synic()/synic_to_vcpu() (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Rename vcpu_to_hv_vcpu() to to_hv_vcpu() (Paolo Bonzini) [1945742]
+- KVM: x86: hyper-v: Drop unused kvm_hv_vapic_assist_page_enabled() (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Add event channel interrupt vector upcall (Paolo Bonzini) [1945742]
+- KVM: x86/xen: register vcpu time info region (Paolo Bonzini) [1945742]
+- KVM: x86/xen: setup pvclock updates (Paolo Bonzini) [1945742]
+- KVM: x86/xen: register vcpu info (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Add KVM_XEN_VCPU_SET_ATTR/KVM_XEN_VCPU_GET_ATTR (Paolo Bonzini) [1945742]
+- KVM: x86/xen: update wallclock region (Paolo Bonzini) [1945742]
+- xen: add wc_sec_hi to struct shared_info (Paolo Bonzini) [1945742]
+- KVM: x86/xen: register shared_info page (Paolo Bonzini) [1945742]
+- KVM: x86/xen: add definitions of compat_shared_info, compat_vcpu_info (Paolo Bonzini) [1945742]
+- KVM: x86/xen: latch long_mode when hypercall page is set up (Paolo Bonzini) [1945742]
+- KVM: x86/xen: add KVM_XEN_HVM_SET_ATTR/KVM_XEN_HVM_GET_ATTR (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Add kvm_xen_enabled static key (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Move KVM_XEN_HVM_CONFIG handling to xen.c (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Fix coexistence of Xen and Hyper-V hypercalls (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Add helper to generate mask of reserved HPA bits (Paolo Bonzini) [1945742]
+- KVM: x86: Use reserved_gpa_bits to calculate reserved PxE bits (Paolo Bonzini) [1945742]
+- KVM: x86: SEV: Treat C-bit as legal GPA bit regardless of vCPU mode (Paolo Bonzini) [1945742]
+- KVM: nSVM: Use common GPA helper to check for illegal CR3 (Paolo Bonzini) [1945742]
+- KVM: VMX: Use GPA legality helpers to replace open coded equivalents (Paolo Bonzini) [1945742]
+- KVM: x86: Add a helper to handle legal GPA with an alignment requirement (Paolo Bonzini) [1945742]
+- KVM: x86: Add a helper to check for a legal GPA (Paolo Bonzini) [1945742]
+- KVM: nSVM: Don't strip host's C-bit from guest's CR3 when reading PDPTRs (Paolo Bonzini) [1945742]
+- KVM: x86: Set so called 'reserved CR3 bits in LM mask' at vCPU reset (Paolo Bonzini) [1945742]
+- KVM: x86/xen: intercept xen hypercalls if enabled (Paolo Bonzini) [1945742]
+- KVM: selftests: Add missing header file needed by xAPIC IPI tests (Paolo Bonzini) [1945742]
+- KVM: selftests: Add operand to vmsave/vmload/vmrun in svm.c (Paolo Bonzini) [1945742]
+- selftests: kvm: Properly set Hyper-V CPUIDs in evmcs_test (Paolo Bonzini) [1945742]
+- selftests: kvm: Move kvm_get_supported_hv_cpuid() to common code (Paolo Bonzini) [1945742]
+- selftest: kvm: x86: test KVM_GET_CPUID2 and guest visible CPUIDs against KVM_GET_SUPPORTED_CPUID (Paolo Bonzini) [1945742]
+- selftests: kvm/x86: add test for pmu msr MSR_IA32_PERF_CAPABILITIES (Paolo Bonzini) [1945742]
+- KVM: selftests: Disable dirty logging with vCPUs running (Paolo Bonzini) [1945742]
+- KVM: selftests: Add backing src parameter to dirty_log_perf_test (Paolo Bonzini) [1945742]
+- KVM: selftests: Add memslot modification stress test (Paolo Bonzini) [1945742]
+- KVM: selftests: Add option to overlap vCPU memory access (Paolo Bonzini) [1945742]
+- KVM: selftests: Fix population stage in dirty_log_perf_test (Paolo Bonzini) [1945742]
+- KVM: selftests: Convert iterations to int in dirty_log_perf_test (Paolo Bonzini) [1945742]
+- KVM: selftests: Avoid flooding debug log while populating memory (Paolo Bonzini) [1945742]
+- KVM: selftests: Rename timespec_diff_now to timespec_elapsed (Paolo Bonzini) [1945742]
+- KVM: selftests: Test IPI to halted vCPU in xAPIC while backing page moves (Paolo Bonzini) [1945742]
+- KVM: selftests: Implement perf_test_util more conventionally (Paolo Bonzini) [1945742]
+- KVM: selftests: Use vm_create_with_vcpus in create_vm (Paolo Bonzini) [1945742]
+- KVM: selftests: Factor out guest mode code (Paolo Bonzini) [1945742]
+- selftests: kvm: Merge user_msr_test into userspace_msr_exit_test (Paolo Bonzini) [1945742]
+- selftests: kvm: Test MSR exiting to userspace (Paolo Bonzini) [1945742]
+- KVM: selftests: sync_regs test for diag318 (Paolo Bonzini) [1945742]
+- KVM: selftests: x86: Set supported CPUIDs on default VM (Paolo Bonzini) [1945742]
+- KVM: selftests: Make test skipping consistent (Paolo Bonzini) [1945742]
+- KVM: selftests: Introduce vm_create_[default_]_with_vcpus (Paolo Bonzini) [1945742]
+- KVM: selftests: Make vm_create_default common (Paolo Bonzini) [1945742]
+- KVM: selftests: always use manual clear in dirty_log_perf_test (Paolo Bonzini) [1945742]
+- selftests: kvm: keep .gitignore add to date (Paolo Bonzini) [1945742]
+- KVM: selftests: Add "-c" parameter to dirty log test (Paolo Bonzini) [1945742]
+- KVM: selftests: Run dirty ring test asynchronously (Paolo Bonzini) [1945742]
+- KVM: selftests: Add dirty ring buffer test (Paolo Bonzini) [1945742]
+- KVM: selftests: Introduce after_vcpu_run hook for dirty log test (Paolo Bonzini) [1945742]
+- KVM: selftests: Verify supported CR4 bits can be set before KVM_SET_CPUID2 (Paolo Bonzini) [1945742]
+- KVM: selftests: allow two iterations of dirty_log_perf_test (Paolo Bonzini) [1945742]
+- KVM: selftests: Introduce the dirty log perf test (Paolo Bonzini) [1945742]
+- KVM: selftests: Make the number of vcpus global (Paolo Bonzini) [1945742]
+- KVM: selftests: Make the per vcpu memory size global (Paolo Bonzini) [1945742]
+- KVM: selftests: Drop pointless vm_create wrapper (Paolo Bonzini) [1945742]
+- KVM: selftests: Add wrfract to common guest code (Paolo Bonzini) [1945742]
+- KVM: selftests: Simplify demand_paging_test with timespec_diff_now (Paolo Bonzini) [1945742]
+- KVM: selftests: Remove address rounding in guest code (Paolo Bonzini) [1945742]
+- KVM: selftests: Factor code out of demand_paging_test (Paolo Bonzini) [1945742]
+- KVM: selftests: Use a single binary for dirty/clear log test (Paolo Bonzini) [1945742]
+- KVM: selftests: Always clear dirty bitmap after iteration (Paolo Bonzini) [1945742]
+- selftests: kvm: test enforcement of paravirtual cpuid features (Paolo Bonzini) [1945742]
+- selftests: kvm: Add exception handling to selftests (Paolo Bonzini) [1945742]
+- selftests: kvm: Clear uc so UCALL_NONE is being properly reported (Paolo Bonzini) [1945742]
+- selftests: kvm: Fix the segment descriptor layout to match the actual layout (Paolo Bonzini) [1945742]
+- KVM: x86/xen: Fix __user pointer handling for hypercall page installation (Paolo Bonzini) [1945742]
+- KVM: x86/xen: fix Xen hypercall page msr handling (Paolo Bonzini) [1945742]
+- KVM: x86: move kvm_inject_gp up from kvm_set_xcr to callers (Paolo Bonzini) [1945742]
+- KVM: cleanup DR6/DR7 reserved bits checks (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Add '__func__' in rmap_printk() (Paolo Bonzini) [1945742]
+- KVM: SVM: Replace hard-coded value with #define (Paolo Bonzini) [1945742]
+- KVM: SVM: use .prepare_guest_switch() to handle CPU register save/setup (Paolo Bonzini) [1945742]
+- KVM: SVM: remove uneeded fields from host_save_users_msrs (Paolo Bonzini) [1945742]
+- KVM: SVM: use vmsave/vmload for saving/restoring additional host state (Paolo Bonzini) [1945742]
+- KVM: SVM: Use asm goto to handle unexpected #UD on SVM instructions (Paolo Bonzini) [1945742]
+- KVM: VMX: Use the kernel's version of VMXOFF (Paolo Bonzini) [1945742]
+- KVM: VMX: Move Intel PT shenanigans out of VMXON/VMXOFF flows (Paolo Bonzini) [1945742]
+- KVM/nVMX: Use __vmx_vcpu_run in nested_vmx_check_vmentry_hw (Paolo Bonzini) [1945742]
+- x86/virt: Mark flags and memory as clobbered by VMXOFF (Paolo Bonzini) [1945742]
+- x86/reboot: Force all cpus to exit VMX root if VMX is supported (Paolo Bonzini) [1945742]
+- x86/virt: Eat faults on VMXOFF in reboot flows (Paolo Bonzini) [1945742]
+- KVM: x86: use static calls to reduce kvm_x86_ops overhead (Paolo Bonzini) [1945742]
+- KVM: x86: introduce definitions to support static calls for kvm_x86_ops (Paolo Bonzini) [1945742]
+- KVM: RHEL: include linux/static_call.h (Paolo Bonzini) [1945742]
+- KVM: X86: prepend vmx/svm prefix to additional kvm_x86_ops functions (Paolo Bonzini) [1945742]
+- KVM: Stop using deprecated jump label APIs (Paolo Bonzini) [1945742]
+- locking/static_key: Add support for deferred static branches (Paolo Bonzini) [1945742]
+- KVM: X86: Rename DR6_INIT to DR6_ACTIVE_LOW (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Expose LBR_FMT in the MSR_IA32_PERF_CAPABILITIES (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Release guest LBR event via lazy release mechanism (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Emulate legacy freezing LBRs on virtual PMI (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Reduce the overhead of LBR pass-through or cancellation (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Pass-through LBR msrs when the guest LBR event is ACTIVE (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Create a guest LBR event when vcpu sets DEBUGCTLMSR_LBR (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Add PMU_CAP_LBR_FMT check when guest LBR is enabled (Paolo Bonzini) [1945742]
+- KVM: vmx/pmu: Add PMU_CAP_LBR_FMT check when guest LBR is enabled (Paolo Bonzini) [1945742]
+- KVM: x86/pmu: preserve IA32_PERF_CAPABILITIES across CPUID refresh (Paolo Bonzini) [1945742]
+- KVM: x86/vmx: Make vmx_set_intercept_for_msr() non-static (Paolo Bonzini) [1945742]
+- KVM: VMX: read/write MSR_IA32_DEBUGCTLMSR from GUEST_IA32_DEBUGCTL (Paolo Bonzini) [1945742]
+- KVM: VMX: Use x2apic_mode to avoid RDMSR when querying PI state (Paolo Bonzini) [1945742]
+- x86/apic: Export x2apic_mode for use by KVM in "warm" path (Paolo Bonzini) [1945742]
+- KVM: VMX: Enable bus lock VM exit (Paolo Bonzini) [1945742]
+- KVM: X86: Reset the vcpu->run->flags at the beginning of vcpu_run (Paolo Bonzini) [1945742]
+- KVM: VMX: Convert vcpu_vmx.exit_reason to a union (Paolo Bonzini) [1945742]
+- KVM/SVM: add support for SEV attestation command (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Remove the defunct update_pte() paging hook (Paolo Bonzini) [1945742]
+- KVM: Expose AVX_VNNI instruction to guset (Paolo Bonzini) [1945742]
+- Enumerate AVX Vector Neural Network instructions (Paolo Bonzini) [1945742]
+- x86: kvm: style: Simplify bool comparison (Paolo Bonzini) [1945742]
+- KVM: x86: Zap the oldest MMU pages, not the newest (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Use boolean returns for (S)PTE accessors (Paolo Bonzini) [1945742]
+- KVM: X86: use vzalloc() instead of vmalloc/memset (Paolo Bonzini) [1945742]
+- KVM: x86: Take KVM's SRCU lock only if steal time update is needed (Paolo Bonzini) [1945742]
+- KVM: x86: Remove obsolete disabling of page faults in kvm_arch_vcpu_put() (Paolo Bonzini) [1945742]
+- KVM: do not assume PTE is writable after follow_pfn (Paolo Bonzini) [1945742]
+- KVM: x86/mmu: Fix TDP MMU zap collapsible SPTEs (Paolo Bonzini) [1945742]
+- KVM: x86: cleanup CR3 reserved bits checks (Paolo Bonzini) [1945742]
+- KVM: SVM: Treat SVM as unsupported when running as an SEV guest (Paolo Bonzini) [1945742]
+- KVM: x86: Update emulator context mode if SYSENTER xfers to 64-bit mode (Paolo Bonzini) [1945742]
+- KVM: x86: Supplement __cr4_reserved_bits() with X86_FEATURE_PCID check (Paolo Bonzini) [1945742]
+- KVM/x86: assign hva with the right value to vm_munmap the pages (Paolo Bonzini) [1945742]
+- Fix unsynchronized access to sev members through svm_register_enc_region (Paolo Bonzini) [1945742]
+- KVM: x86: Revert "KVM: x86: Mark GPRs dirty when written" (Paolo Bonzini) [1945742]
+- KVM: SVM: Unconditionally sync GPRs to GHCB on VMRUN of SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: x86: __kvm_vcpu_halt can be static (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for booting APs in an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM/SVM: Remove leftover __svm_vcpu_run prototype from svm.c (Paolo Bonzini) [1945742]
+- KVM: SVM: Add register operand to vmsave call in sev_es_vcpu_load (Paolo Bonzini) [1945742]
+- KVM: SVM: fix 32-bit compilation (Paolo Bonzini) [1945742]
+- KVM: SVM: Add AP_JUMP_TABLE support in prep for AP booting (Paolo Bonzini) [1945742]
+- KVM: SVM: Provide support to launch and run an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Provide an updated VMRUN invocation for SEV-ES guests (Paolo Bonzini) [1945742]
+- x86/kvm/svm: Use uninstrumented wrmsrl() to restore GS (Paolo Bonzini) [1945742]
+- KVM: SVM: Provide support for SEV-ES vCPU loading (Paolo Bonzini) [1945742]
+- KVM: SVM: Provide support for SEV-ES vCPU creation/loading (Paolo Bonzini) [1945742]
+- KVM: SVM: Update ASID allocation to support SEV-ES guests (Paolo Bonzini) [1945742]
+- KVM: SVM: Set the encryption mask for the SVM host save area (Paolo Bonzini) [1945742]
+- KVM: SVM: Add NMI support for an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Guest FPU state save/restore not needed for SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Do not report support for SMM for an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: x86: Update __get_sregs() / __set_sregs() to support SEV-ES (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for CR8 write traps for an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for CR4 write traps for an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for CR0 write traps for an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for EFER write traps for an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Support string IO operations for an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Support MMIO for an SEV-ES guest (Paolo Bonzini) [1945742]
+- KVM: SVM: Create trace events for VMGEXIT MSR protocol processing (Paolo Bonzini) [1945742]
+- KVM: SVM: Create trace events for VMGEXIT processing (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for SEV-ES GHCB MSR protocol function 0x100 (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for SEV-ES GHCB MSR protocol function 0x004 (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for SEV-ES GHCB MSR protocol function 0x002 (Paolo Bonzini) [1945742]
+- KVM: SVM: Add initial support for a VMGEXIT VMEXIT (Paolo Bonzini) [1945742]
+- KVM: SVM: Add GHCB accessor functions for retrieving fields (Paolo Bonzini) [1945742]
+- KVM: SVM: Prepare for SEV-ES exit handling in the sev.c file (Paolo Bonzini) [1945742]
+- KVM: SVM: Cannot re-initialize the VMCB after shutdown with SEV-ES (Paolo Bonzini) [1945742]
+- KVM: SVM: Do not allow instruction emulation under SEV-ES (Paolo Bonzini) [1945742]
+- KVM: SVM: Prevent debugging under SEV-ES (Paolo Bonzini) [1945742]
+- KVM: SVM: Add required changes to support intercepts under SEV-ES (Paolo Bonzini) [1945742]
+- KVM: x86: introduce complete_emulated_msr callback (Paolo Bonzini) [1945742]
+- KVM: x86: Mark GPRs dirty when written (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for the SEV-ES VMSA (Paolo Bonzini) [1945742]
+- x86/cpu: Add VM page flush MSR availablility as a CPUID feature (Paolo Bonzini) [1945742]
+- KVM: SVM: Add support for SEV-ES capability in KVM (Paolo Bonzini) [1945742]
+- KVM/VMX/SVM: Move kvm_machine_check function to x86.h (Paolo Bonzini) [1945742]
+- KVM: Don't allocate dirty bitmap if dirty ring is enabled (Paolo Bonzini) [1945742]
+- KVM: Make dirty ring exclusive to dirty bitmap log (Paolo Bonzini) [1945742]
+- KVM: X86: Implement ring-based dirty memory tracking (Paolo Bonzini) [1945742]
+- KVM: Pass in kvm pointer into mark_page_dirty_in_slot() (Paolo Bonzini) [1945742]
+- kvm/eventfd: Drain events from eventfd in irqfd_wakeup() (Paolo Bonzini) [1945742]
+- eventfd: Export eventfd_ctx_do_read() (Paolo Bonzini) [1945742]
+- kvm/eventfd: Use priority waitqueue to catch events before userspace (Paolo Bonzini) [1945742]
+- sched/wait: Add add_wait_queue_priority() (Paolo Bonzini) [1945742]
+- cpuidle-haltpoll: fix error comments in arch_haltpoll_disable (Paolo Bonzini) [1945742]
+- kvm/eventfd: Use sequence counter with associated spinlock (Paolo Bonzini) [1945742]
+- x86/kvm/vmx: Use native read/write_cr2() (Paolo Bonzini) [1945742]
+- KVM: SVM: convert get_user_pages() --> pin_user_pages() (Paolo Bonzini) [1945742]
+- x86/asm: Change all ENTRY+ENDPROC to SYM_FUNC_* (Paolo Bonzini) [1945742]
+- x86/entry/64: Fix unwind hints in __switch_to_asm() (Paolo Bonzini) [1945742]
+- x86/asm/64: Change all ENTRY+END to SYM_CODE_* (Paolo Bonzini) [1945742]
+- x86/head/64: Annotate start_cpu0() as non-callable (Paolo Bonzini) [1945742]
+- x86/asm: Do not annotate functions with GLOBAL (Paolo Bonzini) [1945742]
+- kprobes/x86/xen: blacklist non-attachable xen interrupt functions (Paolo Bonzini) [1945742]
+- x86/asm/64: Add ENDs to some functions and relabel with SYM_CODE_* (Paolo Bonzini) [1945742]
+- x86/asm: Use SYM_INNER_LABEL instead of GLOBAL (Paolo Bonzini) [1945742]
+- x86/asm: Annotate aliases (Paolo Bonzini) [1945742]
+- x86/asm/crypto: Annotate local functions (Paolo Bonzini) [1945742]
+- static_call: Add static_call_cond() (Paolo Bonzini) [1945742]
+- static_call: Add basic static call infrastructure (Paolo Bonzini) [1945742]
+- devlink: use _BITUL() macro instead of BIT() in the UAPI header (Petr Oros) [1935646]
+- devlink: Fix reload stats structure (Petr Oros) [1935646]
+- devlink: Avoid overwriting port attributes of registered port (Petr Oros) [1935646]
+- devlink: Add Documentation/networking/devlink/devlink-reload.rst (Petr Oros) [1935646]
+- devlink: Add enable_remote_dev_reset generic parameter (Petr Oros) [1935646]
+- devlink: Add remote reload stats (Petr Oros) [1935646]
+- devlink: Add reload stats (Petr Oros) [1935646]
+- devlink: Add devlink reload limit option (Petr Oros) [1935646]
+- devlink: Add reload action option to devlink reload command (Petr Oros) [1935646]
+- devlink: Change devlink_reload_supported() param type (Petr Oros) [1935646]
+
+* Wed May 12 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-305.5.el8]
+- CI: Rename KABI option (Veronika Kabatova)
+- CI: Disable result checking for realtime checks (Veronika Kabatova)
+- Revert "GFS2: Re-add a call to log_flush_wait when flushing the journal" (Bob Peterson) [1917930]
+- md/raid1: properly indicate failure when ending a failed write request (Nigel Croxon) [1954588]
+- Revert "uio: use request_threaded_irq instead" (Vitaly Kuznetsov) [1946644]
+- drm/ast: Set format registers in primary plane's update (Lyude Paul) [1923857]
+- drivers: hv: Create a consistent pattern for checking Hyper-V hypercall status (Mohammed Gamal) [1940926]
+- x86/hyperv: Move hv_do_rep_hypercall to asm-generic (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Increase wait time for VMbus unload (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Initialize unload_event statically (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Check for pending channel interrupts before taking a CPU offline (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Drivers: hv: vmbus: Introduce CHANNELMSG_MODIFYCHANNEL_RESPONSE (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Introduce and negotiate VMBus protocol version 5.3 (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Use after free in __vmbus_open() (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: remove unused function (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Remove unused linux/version.h header (Mohammed Gamal) [1940926]
+- x86/Hyper-V: Support for free page reporting (Mohammed Gamal) [1940926]
+- x86/hyper-v: Move hv_message_type to architecture neutral module (Mohammed Gamal) [1940926]
+- asm-generic/hyperv: import data structures for mapping device interrupts (Mohammed Gamal) [1940926]
+- asm-generic/hyperv: introduce hv_device_id and auxiliary structures (Mohammed Gamal) [1940926]
+- asm-generic/hyperv: update hv_interrupt_entry (Mohammed Gamal) [1940926]
+- asm-generic/hyperv: update hv_msi_entry (Mohammed Gamal) [1940926]
+- x86/hyperv: provide a bunch of helper functions (Mohammed Gamal) [1940926]
+- x86/hyperv: extract partition ID from Microsoft Hypervisor if necessary (Mohammed Gamal) [1940926]
+- asm-generic/hyperv: Add definitions for Get/SetVpRegister hypercalls (Mohammed Gamal) [1940926]
+- drivers: hv: Fix EXPORT_SYMBOL and tab spaces issue (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Drop error message when 'No request id available' (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Move handling of VMbus interrupts (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Handle auto EOI quirk inline (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Move hyperv_report_panic_msg to arch neutral code (Mohammed Gamal) [1940926]
+- Drivers: hv: Redo Hyper-V synthetic MSR get/set functions (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Move Hyper-V page allocator to arch neutral code (Mohammed Gamal) [1940926]
+- x86/hyperv: allocate output arg pages if required (Mohammed Gamal) [1940926]
+- drivers: hv: Fix whitespace errors (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: skip VMBus initialization if Linux is root (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Enforce 'VMBus version >= 5.2' on isolated guests (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Restrict vmbus_devices on isolated guests (Mohammed Gamal) [1940926]
+- hv_utils: Fix spelling mistake "Hearbeat" -> "Heartbeat" (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Add /sys/bus/vmbus/hibernation (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Resolve race condition in vmbus_onoffer_rescind() (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Avoid use-after-free in vmbus_onoffer_rescind() (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Copy the hv_message in vmbus_on_msg_dpc() (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Reduce number of references to message in vmbus_on_msg_dpc() (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Initialize memory to be sent to the host (Mohammed Gamal) [1940926]
+- hv_utils: Add validation for untrusted Hyper-V values (Mohammed Gamal) [1940926]
+- drivers/hv: remove obsolete TODO and fix misleading typo in comment (Mohammed Gamal) [1940926]
+- drivers: hv: vmbus: Fix checkpatch SPLIT_STRING (Mohammed Gamal) [1940926]
+- drivers: hv: vmbus: Fix call msleep using < 20ms (Mohammed Gamal) [1940926]
+- drivers: hv: vmbus: Fix checkpatch LINE_SPACING (Mohammed Gamal) [1940926]
+- drivers: hv: vmbus: Replace symbolic permissions by octal permissions (Mohammed Gamal) [1940926]
+- drivers: hv: Fix hyperv_record_panic_msg path on comment (Mohammed Gamal) [1940926]
+- Drivers: hv: vmbus: Add vmbus_requestor data structure for VMBus hardening (Mohammed Gamal) [1940926]
+- ena: revert removal of MODULE_VERSION from ena (Petr Oros) [1955712]
+- Revert "[netdrv] net/intel: remove driver versions from Intel drivers" (Jonathan Toppins) [1955745]
+- Revert "[netdrv] net/broadcom: Clean broadcom code from driver versions" (Jonathan Toppins) [1955721]
+- net: core: add dev_get_tstats64 as a ndo_get_stats64 implementation (Josef Oskera) [1939453]
+
+* Mon May 10 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-305.4.el8]
+- igb: amend removal of MODULE_VERSION (Corinna Vinschen) [1955748]
+- igc: amend removal of MODULE_VERSION (Corinna Vinschen) [1955755]
+- i40e: amend removal of MODULE_VERSION (Stefan Assmann) [1955736]
+- ixgbe: Amend commit acf03026ec5a to include a version string in module info. (Ken Cox) [1955759]
+- i40e: Fix parameters in aq_get_phy_register() (Stefan Assmann) [1907852]
+- initramfs: panic with memory information (Coiby Xu) [1936031]
+- powercap/intel_rapl: add support for AlderLake (David Arcari) [1838605]
+- xfs: restore shutdown check in mapped write fault path (Brian Foster) [1926089]
+- xfs: consider shutdown in bmapbt cursor delete assert (Brian Foster) [1926077]
+- iomap: Fix negative assignment to unsigned sis->pages in iomap_swapfile_activate (Carlos Maiolino) [1938210]
+- scsi: scsi_dh_alua: Remove check for ASC 24h in alua_rtpg() (Ewan D. Milne) [1929878]
+- perf/arm-cmn: Move IRQs when migrating context (Jeremy Linton) [1816850]
+- perf/arm-cmn: Fix PMU instance naming (Jeremy Linton) [1816850]
+- perf: arm-cmn: Fix conversion specifiers for node type (Jeremy Linton) [1816850]
+- perf: arm-cmn: Fix unsigned comparison to less than zero (Jeremy Linton) [1816850]
+- perf: Add Arm CMN-600 PMU driver (Jeremy Linton) [1816850]
+- redhat/configs: Use CONFIG_VIRTIO_CONSOLE=m on s390x, too (Thomas Huth) [1954119]
+- s390/config: do not select VIRTIO_CONSOLE via Kconfig (Thomas Huth) [1954119]
+- x86/platform/uv: Fix an error code in uv_hubs_init() (Frank Ramsay) [1936605]
+- x86/platform/uv: Add more to secondary CPU kdump info (Frank Ramsay) [1936605]
+- x86/platform/uv: Use x2apic enabled bit as set by BIOS to indicate APIC mode (Frank Ramsay) [1936605]
+- redhat/configs: Add CONFIG_UV_SYSFS (Frank Ramsay) [1936605]
+- x86/platform/uv: Fix indentation warning in Documentation/ABI/testing/sysfs-firmware-sgi_uv (Frank Ramsay) [1936605]
+- x86/platform/uv: Set section block size for hubless architectures (Frank Ramsay) [1936605]
+- x86/platform/uv: Update sysfs documentation (Frank Ramsay) [1936605]
+- x86/platform/uv: Add deprecated messages to /proc info leaves (Frank Ramsay) [1936605]
+- x86/platform/uv: Add sysfs hubless leaves (Frank Ramsay) [1936605]
+- x86/platform/uv: Add sysfs leaves to replace those in procfs (Frank Ramsay) [1936605]
+- x86/platform/uv: Add kernel interfaces for obtaining system info (Frank Ramsay) [1936605]
+- x86/platform/uv: Update MAINTAINERS for uv_sysfs driver (Frank Ramsay) [1936605]
+- x86/platform/uv: Update ABI documentation of /sys/firmware/sgi_uv/ (Frank Ramsay) [1936605]
+- x86/platform/uv: Add new uv_sysfs platform driver (Frank Ramsay) [1936605]
+- x86/platform/uv: Add and export uv_bios_* functions (Frank Ramsay) [1936605]
+- x86/platform/uv: Remove existing /sys/firmware/sgi_uv/interface (Frank Ramsay) [1936605]
+- x86/platform/uv: Unexport symbols only used by x2apic_uv_x.c (Frank Ramsay) [1936605]
+- x86/platform/uv: Unexport sn_coherency_id (Frank Ramsay) [1936605]
+- x86/platform/uv: Mark uv_bios_call() and uv_bios_call_irqsave() static (Frank Ramsay) [1936605]
+- UV: Add SPDX license identifier - Makefile/Kconfig (Frank Ramsay) [1936605]
+- netdevsim: Only use sampling truncation length when valid (Ivan Vecera) [1955163]
+- selftests: netdevsim: Test psample functionality (Ivan Vecera) [1955163]
+- netdevsim: Add dummy psample implementation (Ivan Vecera) [1955163]
+- psample: Add additional metadata attributes (Ivan Vecera) [1955163]
+- psample: Encapsulate packet metadata in a struct (Ivan Vecera) [1955163]
+- net: psample: fix build error when CONFIG_INET is not enabled (Ivan Vecera) [1955163]
+- devlink: include <linux/const.h> for _BITUL (Petr Oros) [1935630]
+- netdevsim: add support for flash_update overwrite mask (Petr Oros) [1935630]
+- devlink: introduce flash update overwrite mask (Petr Oros) [1935630]
+- devlink: convert flash_update to use params structure (Petr Oros) [1935630]
+- devlink: check flash_update parameter support in net core (Petr Oros) [1935630]
+- devlink: Enhance policy to validate port type input value (Petr Oros) [1935630]
+- devlink: Enhance policy to validate eswitch mode value (Petr Oros) [1935630]
+- net: devlink: region: Pass the region ops to the snapshot function (Petr Oros) [1935630]
+- net: devlink: regions: Add a priv member to the regions ops struct (Petr Oros) [1935630]
+
+* Thu May 06 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-305.3.el8]
+- Enumerate AVX Vector Neural Network instructions (Steve Best) [1838616]
+- net: fix skb use after free in netpoll (Ivan Vecera) [1913481]
+- cipso,calipso: resolve a number of problems with the DOI refcounts (Guillaume Nault) [1950996]
+- netfilter: rpfilter: mask ecn bits before fib lookup (Guillaume Nault) [1950996]
+- netfilter: Fix rpfilter dropping vrf packets by mistake (Guillaume Nault) [1950996]
+- redhat: enable CONFIG_DM_MULTIPATH_HST and CONFIG_DM_MULTIPATH_IOA (Mike Snitzer) [1949682]
+- dm ioctl: fix out of bounds array access when no devices (Mike Snitzer) [1949682]
+- dm table: Fix zoned model check and zone sectors check (Mike Snitzer) [1949682]
+- dm: simplify target code conditional on CONFIG_BLK_DEV_ZONED (Mike Snitzer) [1949682]
+- dm verity: fix DM_VERITY_OPTS_MAX value (Mike Snitzer) [1949682]
+- dm verity fec: fix misaligned RS roots IO (Mike Snitzer) [1949682]
+- dm verity: fix FEC for RS roots unaligned to block size (Mike Snitzer) [1949682]
+- dm bufio: subtract the number of initial sectors in dm_bufio_get_device_size (Mike Snitzer) [1949682]
+- dm: fix deadlock when swapping to encrypted device (Mike Snitzer) [1949682]
+- dm era: only resize metadata in preresume (Mike Snitzer) [1949682]
+- dm era: Use correct value size in equality function of writeset tree (Mike Snitzer) [1949682]
+- dm era: Fix bitset memory leaks (Mike Snitzer) [1949682]
+- dm era: Verify the data block size hasn't changed (Mike Snitzer) [1949682]
+- dm era: Reinitialize bitset cache before digesting a new writeset (Mike Snitzer) [1949682]
+- dm era: Update in-core bitset after committing the metadata (Mike Snitzer) [1949682]
+- dm era: Recover committed writeset after crash (Mike Snitzer) [1949682]
+- dm writecache: fix writing beyond end of underlying device when shrinking (Mike Snitzer) [1949682]
+- dm table: remove needless request_queue NULL pointer checks (Mike Snitzer) [1949682]
+- dm table: fix zoned iterate_devices based device capability checks (Mike Snitzer) [1949682]
+- dm writecache: return the exact table values that were set (Mike Snitzer) [1949682]
+- dm writecache: fix unnecessary NULL check warnings (Mike Snitzer) [1949682]
+- dm writecache: fix performance degradation in ssd mode (Mike Snitzer) [1949682]
+- dm integrity: introduce the "fix_hmac" argument (Mike Snitzer) [1949682]
+- dm persistent data: fix return type of shadow_root() (Mike Snitzer) [1949682]
+- dm: cleanup of front padding calculation (Mike Snitzer) [1949682]
+- dm integrity: fix spelling mistake "flusing" -> "flushing" (Mike Snitzer) [1949682]
+- dm crypt: Spelling s_cihper_cipher_ (Mike Snitzer) [1949682]
+- dm: avoid filesystem lookup in dm_get_dev_t() (Mike Snitzer) [1949682]
+- dm integrity: conditionally disable "recalculate" feature (Mike Snitzer) [1949682]
+- dm integrity: fix a crash if "recalculate" used without "internal_hash" (Mike Snitzer) [1949682]
+- dm integrity: fix the maximum number of arguments (Mike Snitzer) [1949682]
+- dm integrity: fix flush with external metadata device (Mike Snitzer) [1949682]
+- dm snapshot: flush merged data before committing metadata (Mike Snitzer) [1949682]
+- dm zoned: select CONFIG_CRC32 (Mike Snitzer) [1949682]
+- dm integrity: select CRYPTO_SKCIPHER (Mike Snitzer) [1949682]
+- dm cache: simplify the return expression of load_mapping() (Mike Snitzer) [1949682]
+- dm verity: skip verity work if I_O error when system is shutting down (Mike Snitzer) [1949682]
+- dm ioctl: fix error return code in target_message (Mike Snitzer) [1949682]
+- dm crypt: Constify static crypt_iv_operations (Mike Snitzer) [1949682]
+- dm: add support for REQ_NOWAIT to various targets (Mike Snitzer) [1949682]
+- dm: rename multipath path selector source files to have "dm-ps" prefix (Mike Snitzer) [1949682]
+- dm mpath: add IO affinity path selector (Mike Snitzer) [1949682]
+- dm verity: Add support for signature verification with 2nd keyring (Mike Snitzer) [1949682]
+- dm: remove unnecessary current->bio_list check when submitting split bio (Mike Snitzer) [1949682]
+- dm: remove invalid sparse __acquires and __releases annotations (Mike Snitzer) [1949682]
+- dm: fix double RCU unlock in dm_dax_zero_page_range() error path (Mike Snitzer) [1949682]
+- dm writecache: remove BUG() and fail gracefully instead (Mike Snitzer) [1949682]
+- dm table: Remove BUG_ON(in_interrupt()) (Mike Snitzer) [1949682]
+- dm: fix bug with RCU locking in dm_blk_report_zones (Mike Snitzer) [1949682]
+- Revert "dm cache: fix arm link errors with inline" (Mike Snitzer) [1949682]
+- vfs: remove lockdep bogosity in __sb_start_write (Brian Foster) [1926097]
+- nbd: freeze the queue while we're adding connections (Ming Lei) [1927246]
+- selftests/livepatch: Do not check order when using "comm" for dmesg checking (Joel Savitz) [1942056]
+- RDMA/siw,rxe: Make emulated devices virtual in the device tree (Kamal Heib) [1931849]
+- RDMA/core: remove use of dma_virt_ops (Kamal Heib) [1931849]
+- RDMA/umem: Use ib_dma_max_seg_size instead of dma_get_max_seg_size (Kamal Heib) [1931849]
+- RDMA/core: Fix ib_dma_max_seg_size() (Kamal Heib) [1931849]
+- RDMA/umem: Move to allocate SG table from pages (Kamal Heib) [1931849]
+- lib/scatterlist: Do not limit max_segment to PAGE_ALIGNED values (Kamal Heib) [1931849]
+- lib/scatterlist: Add support in dynamic allocation of SG table from pages (Kamal Heib) [1931846]
+- RDMA/srp: Increase max_segment_size (Kamal Heib) [1931849]
+- RDMA/uverbs: Allow drivers to create a new HW object during rereg_mr (Kamal Heib) [1931849]
+- RDMA/mlx5: Use ib_umem_find_best_pgoff() for SRQ (Kamal Heib) [1931849]
+- RDMA/vmw_pvrdma: Fix network_hdr_type reported in WC (Kamal Heib) [1931849]
+- RDMA/cma: Fix error flow in default_roce_mode_store (Kamal Heib) [1931849]
+- RDMA/umem: Avoid undefined behavior of rounddown_pow_of_two() (Kamal Heib) [1931849]
+- RDMA/restrack: Don't treat as an error allocation ID wrapping (Kamal Heib) [1931849]
+- RDMA/ucma: Do not miss ctx destruction steps in some cases (Kamal Heib) [1931849]
+- RDMA/cma: Don't overwrite sgid_attr after device is released (Kamal Heib) [1931849]
+- RDMA/rxe: Use acquire/release for memory ordering (Kamal Heib) [1931849]
+- RDMA/uverbs: Fix incorrect variable type (Kamal Heib) [1931849]
+- RDMA/core: Update kernel documentation for ib_create_named_qp() (Kamal Heib) [1931849]
+- RDMA/iser: Remove in_interrupt() usage (Kamal Heib) [1931849]
+- IB: Fix kernel-doc markups (Kamal Heib) [1931849]
+- RDMA/uverbs: Check ODP in ib_check_mr_access() as well (Kamal Heib) [1931849]
+- RDMA/uverbs: Tidy input validation of ib_uverbs_rereg_mr() (Kamal Heib) [1931849]
+- RDMA/efa: Use dma_set_mask_and_coherent() to simplify code (Kamal Heib) [1931849]
+- RDMA/restrack: Support all QP types (Kamal Heib) [1931849]
+- RDMA/core: Allow drivers to disable restrack DB (Kamal Heib) [1931849]
+- RDMA/core: Track device memory MRs (Kamal Heib) [1931849]
+- RDMA/cma: Fix deadlock on &lock in rdma_cma_listen_on_all() error unwind (Kamal Heib) [1931849]
+- IB/hfi1: Fix fall-through warnings for Clang (Kamal Heib) [1931849]
+- RDMA/ipoib: Distribute cq completion vector better (Kamal Heib) [1931849]
+- RDMA/efa: Remove .create_ah callback assignment (Kamal Heib) [1931849]
+- RDMA/cma: Add missing error handling of listen_id (Kamal Heib) [1931849]
+- RDMA/restrack: Store all special QPs in restrack DB (Kamal Heib) [1931849]
+- RDMA/counter: Combine allocation and bind logic (Kamal Heib) [1931849]
+- RDMA/core: Remove ib_dma_{alloc,free}_coherent (Kamal Heib) [1931849]
+- RDMA/core: Make FD destroy callback void (Kamal Heib) [1931849]
+- RDMA/core: Postpone uobject cleanup on failure till FD close (Kamal Heib) [1931849]
+- IB/isert: Do not excplicitly check == false for bool (Kamal Heib) [1931849]
+- IB/core: Add support for NDR link speed (Kamal Heib) [1931849]
+- RDMA/ipoib: Add 50Gb and 100Gb link speeds to ethtool (Kamal Heib) [1931849]
+- RDMA/rxe,siw: Restore uverbs_cmd_mask IB_USER_VERBS_CMD_POST_SEND (Kamal Heib) [1931849]
+- RDMA/siw: Fix typo of EAGAIN not -EAGAIN in siw_cm_work_handler() (Kamal Heib) [1931849]
+- RDMA/rxe: Compute PSN windows correctly (Kamal Heib) [1931849]
+- RDMA/core: Fix error return in _ib_modify_qp() (Kamal Heib) [1931849]
+- IB/verbs: avoid nested container_of() (Kamal Heib) [1931849]
+- RDMA/rxe: Remove unused RXE_MR_TYPE_FMR (Kamal Heib) [1931849]
+- RDMA: Remove AH from uverbs_cmd_mask (Kamal Heib) [1931849]
+- RDMA: Remove uverbs cmds from drivers that don't use them (Kamal Heib) [1931849]
+- RDMA/core Remove uverbs_ex_cmd_mask (Kamal Heib) [1931849]
+- RDMA: Check create_flags during create_qp (Kamal Heib) [1931849]
+- RDMA: Check flags during create_cq (Kamal Heib) [1931849]
+- RDMA: Check attr_mask during modify_qp (Kamal Heib) [1931849]
+- RDMA: Check srq_type during create_srq (Kamal Heib) [1931849]
+- RDMA: Move more uverbs_cmd_mask settings to the core (Kamal Heib) [1931849]
+- RDMA: Remove elements in uverbs_cmd_mask that all drivers set (Kamal Heib) [1931849]
+- RDMA: Remove uverbs_ex_cmd_mask values that are linked to functions (Kamal Heib) [1931849]
+- RDMA/cm: Fix an attempt to use non-valid pointer when cleaning timewait (Kamal Heib) [1931846]
+- RDMA/core: Fix empty gid table for non IB/RoCE devices (Kamal Heib) [1931846]
+- RDMA/efa: Use the correct current and new states in modify QP (Kamal Heib) [1931846]
+- RMDA/sw: Don't allow drivers using dma_virt_ops on highmem configs (Kamal Heib) [1931846]
+- RDMA/srpt: Fix typo in srpt_unregister_mad_agent docstring (Kamal Heib) [1931846]
+- RDMA/vmw_pvrdma: Fix the active_speed and phys_state value (Kamal Heib) [1931846]
+- RDMA: Fix software RDMA drivers for dma mapping error (Kamal Heib) [1931846]
+- IB/srpt: docs: add a description for cq_size member (Kamal Heib) [1931846]
+- RDMA: Add rdma_connect_locked() (Kamal Heib) [1931846]
+- RDMA/uverbs: Fix false error in query gid IOCTL (Kamal Heib) [1931846]
+- RDMA/rxe: Fix small problem in network_type patch (Kamal Heib) [1931846]
+- RDMA/ucma: Fix use after free in destroy id flow (Kamal Heib) [1931846]
+- RDMA/rxe: Move the definitions for rxe_av.network_type to uAPI (Kamal Heib) [1931846]
+- RDMA: Explicitly pass in the dma_device to ib_register_device (Kamal Heib) [1931846]
+- RDMA/usnic: Remove the query_pkey callback (Kamal Heib) [1931846]
+- RDMA/usnic: Fix spelling mistake "transistion" -> "transition" (Kamal Heib) [1931846]
+- RDMA/usnic: switch from 'pci_' to 'dma_' API (Kamal Heib) [1931846]
+- RDMA/usnic: Avoid overly large buffers on stack (Kamal Heib) [1931846]
+- IB/usnic: Use dev_get_drvdata (Kamal Heib) [1931846]
+- IB/usnic: Fix deadlock (Kamal Heib) [1931846]
+- Revert "[infiniband] usnic_verbs: fix deadlock" (Kamal Heib) [1931846]
+- RDMA/rxe: Remove duplicate entries in struct rxe_mr (Kamal Heib) [1931846]
+- RDMA/uverbs: Expose the new GID query API to user space (Kamal Heib) [1931846]
+- RDMA/core: Introduce new GID table query API (Kamal Heib) [1931846]
+- RDMA/core: Modify enum ib_gid_type and enum rdma_network_type (Kamal Heib) [1931846]
+- RDMA/core: Change rdma_get_gid_attr returned error code (Kamal Heib) [1931846]
+- RDMA/core: Constify struct attribute_group (Kamal Heib) [1931846]
+- RDMA/core: Remove ucontext->closing (Kamal Heib) [1931846]
+- RDMA/drivers: Remove udata check from special QP (Kamal Heib) [1931846]
+- RDMA/qedr: Add support for user mode XRC-SRQ's (Kamal Heib) [1931846]
+- RDMA/mlx4: Prepare QP allocation to remove from the driver (Kamal Heib) [1931846]
+- RDMA/mlx4: Embed GSI QP into general mlx4_ib QP (Kamal Heib) [1931846]
+- RDMA/core: Align write and ioctl checks of QP types (Kamal Heib) [1931846]
+- RDMA/efa: Drop double zeroing for sg_init_table() (Kamal Heib) [1931846]
+- RDMA/efa: Add messages and RDMA read work requests HW stats (Kamal Heib) [1931846]
+- RDMA/efa: Group keep alive received counter with other SW stats (Kamal Heib) [1931846]
+- RDMA/restrack: Improve readability in task name management (Kamal Heib) [1931846]
+- RDMA/restrack: Simplify restrack tracking in kernel flows (Kamal Heib) [1931846]
+- RDMA/restrack: Count references to the verbs objects (Kamal Heib) [1931846]
+- RDMA/cma: Delete from restrack DB after successful destroy (Kamal Heib) [1931846]
+- RDMA/ucma: Rework ucma_migrate_id() to avoid races with destroy (Kamal Heib) [1931846]
+- RDMA: Fix link active_speed size (Kamal Heib) [1931846]
+- net/mlx5: Refactor query port speed functions (Kamal Heib) [1931846]
+- RDMA: Convert RWQ table logic to ib_core allocation scheme (Kamal Heib) [1931846]
+- RDMA: Clean MW allocation and free flows (Kamal Heib) [1931846]
+- RDMA/cma: Fix use after free race in roce multicast join (Kamal Heib) [1931846]
+- RDMA/cma: Consolidate the destruction of a cma_multicast in one place (Kamal Heib) [1931846]
+- RDMA/cma: Remove dead code for kernel rdmacm multicast (Kamal Heib) [1931846]
+- RDMA/cma: Combine cma_ndev_work with cma_work (Kamal Heib) [1931846]
+- RDMA/cma: Remove cma_comp() (Kamal Heib) [1931846]
+- RDMA/cma: Fix locking for the RDMA_CM_LISTEN state (Kamal Heib) [1931846]
+- RDMA/cma: Make the locking for automatic state transition more clear (Kamal Heib) [1931846]
+- RDMA/cma: Fix locking for the RDMA_CM_CONNECT state (Kamal Heib) [1931846]
+- RDMA/core: Added missing WR and WC opcodes (Kamal Heib) [1931846]
+- RDMA/qedr: Remove fbo and zbva from the MR (Kamal Heib) [1931846]
+- RDMA/mlx4: Use ib_umem_num_dma_blocks() (Kamal Heib) [1931846]
+- RDMA/pvrdma: Use ib_umem_num_dma_blocks() instead of ib_umem_page_count() (Kamal Heib) [1931846]
+- RDMA/bnxt: Do not use ib_umem_page_count() or ib_umem_num_pages() (Kamal Heib) [1931846]
+- RDMA/qedr: Use ib_umem_num_dma_blocks() instead of ib_umem_page_count() (Kamal Heib) [1931846]
+- RDMA/qedr: Use rdma_umem_for_each_dma_block() instead of open-coding (Kamal Heib) [1931846]
+- RDMA/i40iw: Use ib_umem_num_dma_pages() (Kamal Heib) [1931846]
+- RDMA/efa: Use ib_umem_num_dma_pages() (Kamal Heib) [1931846]
+- RDMA/umem: Split ib_umem_num_pages() into ib_umem_num_dma_blocks() (Kamal Heib) [1931846]
+- RDMA/umem: Replace for_each_sg_dma_page with rdma_umem_for_each_dma_block (Kamal Heib) [1931846]
+- RDMA/umem: Add rdma_umem_for_each_dma_block() (Kamal Heib) [1931846]
+- RDMA/umem: Use simpler logic for ib_umem_find_best_pgsz() (Kamal Heib) [1931846]
+- RDMA/umem: Fix ib_umem_find_best_pgsz() for mappings that cross a page boundary (Kamal Heib) [1931846]
+- RDMA: Make counters destroy symmetrical (Kamal Heib) [1931846]
+- RDMA: Restore ability to return error for destroy WQ (Kamal Heib) [1931846]
+- RDMA: Change XRCD destroy return value (Kamal Heib) [1931846]
+- RDMA: Allow fail of destroy CQ (Kamal Heib) [1931846]
+- RDMA/core: Delete function indirection for alloc/free kernel CQ (Kamal Heib) [1931846]
+- RDMA: Restore ability to fail on SRQ destroy (Kamal Heib) [1931846]
+- RDMA/mlx5: Issue FW command to destroy SRQ on reentry (Kamal Heib) [1931846]
+- RDMA: Restore ability to fail on AH destroy (Kamal Heib) [1931846]
+- RDMA: Restore ability to fail on PD deallocate (Kamal Heib) [1931846]
+- RDMA/core: Change how failing destroy is handled during uobj abort (Kamal Heib) [1931846]
+- RDMA/ucma: Fix resource leak on error path (Kamal Heib) [1931846]
+- RDMA/rxe: Address an issue with hardened user copy (Kamal Heib) [1931846]
+- RDMA/rxe: Add SPDX hdrs to rxe source files (Kamal Heib) [1931846]
+- RDMA/core: Trigger a WARN_ON if the driver causes uobjects to become leaked (Kamal Heib) [1931846]
+- RDMA/rxe: Fix style warnings (Kamal Heib) [1931846]
+- RDMA/ucma: Remove closing and the close_wq (Kamal Heib) [1931846]
+- RDMA/ucma: Rework how new connections are passed through event delivery (Kamal Heib) [1931846]
+- RDMA/ucma: Narrow file->mut in ucma_event_handler() (Kamal Heib) [1931846]
+- RDMA/ucma: Change backlog into an atomic (Kamal Heib) [1931846]
+- RDMA/ucma: Add missing locking around rdma_leave_multicast() (Kamal Heib) [1931846]
+- RDMA/ucma: Fix locking for ctx->events_reported (Kamal Heib) [1931846]
+- RDMA/ucma: Fix the locking of ctx->file (Kamal Heib) [1931846]
+- RDMA/ucma: Do not use file->mut to lock destroying (Kamal Heib) [1931846]
+- RDMA/cma: Add missing locking to rdma_accept() (Kamal Heib) [1931846]
+- RDMA/ucma: Remove mc_list and rely on xarray (Kamal Heib) [1931846]
+- RDMA/ucma: Fix error cases around ucma_alloc_ctx() (Kamal Heib) [1931846]
+- RDMA/ucma: Consolidate the two destroy flows (Kamal Heib) [1931846]
+- RDMA/ucma: Remove unnecessary locking of file->ctx_list in close (Kamal Heib) [1931846]
+- RDMA/ucma: Fix refcount 0 incr in ucma_get_ctx() (Kamal Heib) [1931846]
+- RDMA/cm: Add tracepoints to track MAD send operations (Kamal Heib) [1931846]
+- RDMA/cm: Replace pr_debug() call sites with tracepoints (Kamal Heib) [1931846]
+- RDMA/core: Move the rdma_show_ib_cm_event() macro (Kamal Heib) [1931846]
+- RDMA/efa: Remove redundant udata check from alloc ucontext response (Kamal Heib) [1931846]
+- RDMA/vmw_pvrdma: Fix kernel-doc documentation (Kamal Heib) [1931846]
+- RDMA/rxe: prevent rxe creation on top of vlan interface (Kamal Heib) [1931846]
+- RDMA/cm: Remove unused cm_class (Kamal Heib) [1931846]
+- IB/isert: remove duplicated error prints (Kamal Heib) [1931846]
+- RDMA/efa: Introduce SRD RNR retry (Kamal Heib) [1931846]
+- RDMA/efa: Introduce SRD QP state machine (Kamal Heib) [1931846]
+- RDMA/efa: Be consistent with modify QP bitmask (Kamal Heib) [1931846]
+- RDMA/efa: Add a generic capability check helper (Kamal Heib) [1931846]
+- RDMA: Remove constant domain argument from flow creation call (Kamal Heib) [1931846]
+- RDMA/i40iw: Avoid typecast from void to pci_dev (Kamal Heib) [1931846]
+- sched/uclamp: Add CPU's clamp buckets refcounting (Kamal Heib) [1931846]
+- overflow: Include header file with SIZE_MAX declaration (Kamal Heib) [1931846]
+- treewide: Use fallthrough pseudo-keyword (Kamal Heib) [1931846]
+- IB/hfi1: Use fallthrough pseudo-keyword (Kamal Heib) [1931846]
+- treewide: replace '---help---' in Kconfig files with 'help' (Kamal Heib) [1931846]
+- remove ioremap_nocache and devm_ioremap_nocache (Kamal Heib) [1931846]
+
+* Wed May 05 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-305.2.el8]
+- ethtool: pause: make sure we init driver stats (Ivan Vecera) [1935611]
+- ethtool: correct policy for ETHTOOL_MSG_CHANNELS_SET (Ivan Vecera) [1935611]
+- ethtool: strset: allow ETHTOOL_A_STRSET_COUNTS_ONLY attr (Ivan Vecera) [1935611]
+- ethtool: specify which header flags are supported per command (Ivan Vecera) [1935611]
+- ethtool: link up ethnl_header_policy as a nested policy (Ivan Vecera) [1935611]
+- ethtool: trim policy tables (Ivan Vecera) [1935611]
+- ethtool: wire up set policies to ops (Ivan Vecera) [1935611]
+- ethtool: wire up get policies to ops (Ivan Vecera) [1935611]
+- netdevsim: fix duplicated debugfs directory (Ivan Vecera) [1935611]
+- selftests: add a test for ethtool pause stats (Ivan Vecera) [1935611]
+- netdevsim: add pause frame stats (Ivan Vecera) [1935611]
+- docs: net: include the new ethtool pause stats in the stats doc (Ivan Vecera) [1935611]
+- ethtool: add standard pause stats (Ivan Vecera) [1935611]
+- net: tighten the definition of interface statistics (Ivan Vecera) [1935611]
+
+* Fri Apr 30 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-305.1.el8]
+- PCI: hv: Fix typo (Mohammed Gamal) [1940924]
+- asm-generic/hyperv: change HV_CPU_POWER_MANAGEMENT to HV_CPU_MANAGEMENT (Mohammed Gamal) [1940925]
+- x86/hyperv: detect if Linux is the root partition (Mohammed Gamal) [1940925]
+- hyperv: hyperv.h: drop a duplicated word (Mohammed Gamal) [1940925]
+- hyper-v: Remove internal types from UAPI header (Mohammed Gamal) [1940925]
+- x86/hyperv: Load/save the Isolation Configuration leaf (Mohammed Gamal) [1940925]
+- x86/hyperv: Initialize clockevents after LAPIC is initialized (Mohammed Gamal) [1940925]
+- x86/hyperv: check cpu mask after interrupt has been disabled (Mohammed Gamal) [1940925]
+- x86/hyperv: Fix kexec panic/hang issues (Mohammed Gamal) [1940925]
+- video: hyperv_fb: Fix a double free in hvfb_probe (Mohammed Gamal) [1940922]
+- uio: uio_hv_generic: use devm_kzalloc() for private data alloc (Mohammed Gamal) [1940922]
+- Avoid macro redefinition in compiler-{clang,gcc}.h (Jerome Marchand) [1907271]
+- x86/split_lock: Add Icelake microserver and Tigerlake CPU models (Prarit Bhargava) [1847576]
+- tools/power/x86/intel-speed-select: Update version to 1.8 (Prarit Bhargava) [1921801]
+- tools/power/x86/intel-speed-select: Add new command to get/set TRL (Prarit Bhargava) [1921801]
+- tools/power/x86/intel-speed-select: Add new command turbo-mode (Prarit Bhargava) [1921801]
+- tools/power/x86/intel-speed-select: Set higher of cpuinfo_max_freq or base_frequency (Prarit Bhargava) [1921801]
+- tools/power/x86/intel-speed-select: Set scaling_max_freq to base_frequency (Prarit Bhargava) [1921801]
+- platform/x86: ISST: Mark mmio_range_devid_0 and mmio_range_devid_1 with static keyword (Prarit Bhargava) [1921801]
+- tools/power/x86/intel-speed-select: Update version for v5.11 (Prarit Bhargava) [1921801]
+- tools/power/x86/intel-speed-select: Account for missing sysfs for die_id (Prarit Bhargava) [1921801]
+- tools/power/x86/intel-speed-select: Read TRL from mailbox (Prarit Bhargava) [1921801]
+- platform/x86: ISST: Change PCI device macros (Prarit Bhargava) [1921801]
+- platform/x86: ISST: Allow configurable offset range (Prarit Bhargava) [1921801]
+- platform/x86: ISST: Check for unaligned mmio address (Prarit Bhargava) [1921801]
+- tools/power/turbostat: Fallback to an MSR read for EPB (Prarit Bhargava) [1926913]
+- tools/power/turbostat: Read energy_perf_bias from sysfs (Prarit Bhargava) [1926913]
+- Bluetooth: btusb: Add workaround for remote-wakeup issues with Barrot 8041a02 fake CSR controllers (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Fix detection of some fake CSR controllers with a bcdDevice val of 0x0134 (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: support download nvm with different board id for wcn6855 (Gopal Tiwari) [1946951]
+- Bluetooth: btmtksdio: Add the missed release_firmware() in mtk_setup_firmware() (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Add the missed release_firmware() in btusb_mtk_setup_firmware() (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Support 0bda:c123 Realtek 8822CE device (Gopal Tiwari) [1946951]
+- Bluetooth: hci_h5: Add OBDA0623 ACPI HID (Gopal Tiwari) [1946951]
+- Bluetooth: revert: hci_h5: close serdev device and free hu in h5_close (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Wait for timeout during suspend (Gopal Tiwari) [1946951]
+- Bluetooth: btrtl: fix incorrect skb allocation failure check (Gopal Tiwari) [1946951]
+- Bluetooth: hci_ll: add a small delay for wl1271 enable bt_en (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Add support for 1358:c123 Realtek 8822CE device (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: resolve various warnings (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Enhance retry logic in qca_setup (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: btrtl: Add support for RTL8852A (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Add support for 13d3:3560 MediaTek MT7615E device (Gopal Tiwari) [1946951]
+- Bluetooth: hci_h5: fix memory leak in h5_close (Gopal Tiwari) [1946951]
+- Bluetooth: btrtl: Ask 8821C to drop old firmware (Gopal Tiwari) [1946951]
+- Bluetooth: btrtl: Refine the ic_id_table for clearer and more regular (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Add the more support IDs for Realtek RTL8822CE (Gopal Tiwari) [1946951]
+- Bluetooth: hci_h5: close serdev device and free hu in h5_close (Gopal Tiwari) [1946951]
+- Bluetooth: btintel: Replace zero-length array with flexible-array member (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Add Qualcomm Bluetooth SoC WCN6855 support (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Enable wide band speech support for BTUSB_QCA_ROME (Gopal Tiwari) [1946951]
+- Bluetooth: hci_serdev: Close UART port if NON_PERSISTENT_SETUP is set (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Remove duplicate power off in proto close (Gopal Tiwari) [1946951]
+- Bluetooth: hci_intel: enable on new platform (Gopal Tiwari) [1946951]
+- Bluetooth: btmtksdio: use NULL instead of zero (Gopal Tiwari) [1946951]
+- Bluetooth: hci_intel: switch to list_for_each_entry() (Gopal Tiwari) [1946951]
+- Bluetooth: hci_intel: drop strange le16_to_cpu() against u8 values (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: remove redundant null check (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Fix memleak in btusb_mtk_submit_wmt_recv_urb (Gopal Tiwari) [1946951]
+- Bluetooth: hci_uart: Cancel init work before unregistering (Gopal Tiwari) [1946951]
+- Bluetooth: hci_h5: Remove ignored flag HCI_UART_RESET_ON_INIT (Gopal Tiwari) [1946951]
+- Bluetooth: btmrvl: eliminate duplicates introducing btmrvl_reg_89xx (Gopal Tiwari) [1946951]
+- Revert "Bluetooth: btusb: Disable runtime suspend on Realtek devices" (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Stop collecting memdump again for command timeout during SSR (Gopal Tiwari) [1946951]
+- Bluetooth: hci_serdev: Only unregister device if it was registered (Gopal Tiwari) [1946951]
+- Bluetooth: hci_h5: Set HCI_UART_RESET_ON_INIT to correct flags (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Fix and detect most of the Chinese Bluetooth controllers (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Bug fixes for SSR (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: add Realtek 8822CE to usb_device_id table (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: USB alternate setting 1 for WBS (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Comment on unbalanced pm reference (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: BTUSB_WAKEUP_DISABLE prevents wake (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Reset port on cmd timeout (Gopal Tiwari) [1946951]
+- Bluetooth: btmtksdio: fix up firmware download sequence (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: fix up firmware download sequence (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Disable SoC debug logging for WCN3991 (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Increase SoC idle timeout to 200ms (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Request Tx clock vote off only when Tx is pending (Gopal Tiwari) [1946951]
+- Bluetooth: btmrvl_sdio: Refactor irq wakeup (Gopal Tiwari) [1946951]
+- Bluetooth: btmrvl_sdio: Implement prevent_wake (Gopal Tiwari) [1946951]
+- Bluetooth: btmrvl_sdio: Set parent dev to hdev (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Bug fix during SSR timeout (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Refactor error handling in qca_suspend() (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Skip serdev wait when no transfer is pending (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Only remove TX clock vote after TX is completed (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Simplify determination of serial clock on/off state from votes (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Fix an error pointer dereference (Gopal Tiwari) [1946951]
+- btmrvl: Fix firmware filename for sd8977 chipset (Gopal Tiwari) [1946951]
+- btmrvl: Fix firmware filename for sd8997 chipset (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Fix QCA6390 memdump failure (Gopal Tiwari) [1946951]
+- Bluetooth: btmtkuart: Use serdev_device_write_buf() instead of serdev_device_write() (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Improve controller ID info log level (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Fix qca6390 enable failure after warm reboot (Gopal Tiwari) [1946951]
+- Bluetooth: btmtkuart: Improve exception handling in btmtuart_probe() (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Fix suspend/resume functionality failure (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Added 003.006.007, changed 001.003.015 (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: Fix uninitialized access to hdev (Gopal Tiwari) [1946951]
+- Bluetooth: serdev: Constify serdev_device_ops (Gopal Tiwari) [1946951]
+- Bluetooth: Add hook for driver to prevent wake from suspend (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Implement hdev->prevent_wake (Gopal Tiwari) [1946951]
+- Bluetooth: hci_h5: Add support for binding RTL8723BS with device tree (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: allow max-speed to be set for QCA9377 devices (Gopal Tiwari) [1946951]
+- Bluetooth: hci_qca: add compatible for QCA9377 (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: Adding support for LE scatternet to Jfp and ThP (Gopal Tiwari) [1946951]
+- Bluetooth: Adding driver and quirk defs for multi-role LE (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Add 2 missing models to subver tables (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Move setting of USE_BDADDR_PROPERTY quirk to hci_bcm.c (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Try multiple Patch filenames when loading the Patch firmware (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Bail sooner from btbcm_initialize() when not loading fw (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Drop upper nibble version check from btbcm_initialize() (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Make btbcm_setup_patchram use btbcm_finalize (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Make btbcm_initialize() print local-name on re-init too (Gopal Tiwari) [1946951]
+- Bluetooth: btbcm: Fold Patch loading + applying into btbcm_initialize() (Gopal Tiwari) [1946951]
+- Bluetooth: btrtl: Add support for RTL8761B (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: check for NULL in btusb_find_altsetting() (Gopal Tiwari) [1946951]
+- Bluetooth: btusb: handle mSBC audio over USB Endpoints (Gopal Tiwari) [1946951]
+- Bluetooth: add support to notify using SCO air mode (Gopal Tiwari) [1946951]
+- Bluetooth: hci_bcm: respect IRQ polarity from DT (Gopal Tiwari) [1946951]
+- Bluetooth: hci_bcm: fix freeing not-requested IRQ (Gopal Tiwari) [1946951]
+- intel_idle: remove definition of DEBUG (David Arcari) [1926917]
+- intel_idle: Build fix (David Arcari) [1926917]
+- cpufreq: ACPI: Set cpuinfo.max_freq directly if max boost is known (Phil Auld) [1937103]
+- cpufreq: ACPI: Update arch scale-invariance max perf ratio if CPPC is not there (Phil Auld) [1937103]
+- cpufreq: ACPI: Extend frequency tables to cover boost frequencies (Phil Auld) [1937103]
+- sched/uclamp: Add CPU's clamp buckets refcounting (Phil Auld) [1937103]
+- x86: PM: Register syscore_ops for scale invariance (Phil Auld) [1937103]
+- sched/fair: Reduce cases for active balance (Phil Auld) [1937103]
+- sched/fair: Don't set LBF_ALL_PINNED unnecessarily (Phil Auld) [1937103]
+- sched/fair: Skip idle cfs_rq (Phil Auld) [1937103]
+- tick/sched: Make jiffies update quick check more robust (Phil Auld) [1937103]
+- sched/fair: Trivial correction of the newidle_balance() comment (Phil Auld) [1937103]
+- sched/fair: Clear SMT siblings after determining the core is not idle (Phil Auld) [1937103]
+- sched: Fix kernel-doc markup (Phil Auld) [1937103]
+- x86: Print ratio freq_max/freq_base used in frequency invariance calculations (Phil Auld) [1937103]
+- x86, sched: Use midpoint of max_boost and max_P for frequency invariance on AMD EPYC (Phil Auld) [1937103]
+- x86, sched: Calculate frequency invariance for AMD systems (Phil Auld) [1937103]
+- sched: Limit the amount of NUMA imbalance that can exist at fork time (Phil Auld) [1937103]
+- sched/numa: Allow a floating imbalance between NUMA nodes (Phil Auld) [1937103]
+- sched: Avoid unnecessary calculation of load imbalance at clone time (Phil Auld) [1937103]
+- sched/numa: Rename nr_running and break out the magic number (Phil Auld) [1937103]
+- sched/topology: Condition EAS enablement on FIE support (Phil Auld) [1937103]
+- sched/topology: Don't enable EAS on SMT systems (Phil Auld) [1937103]
+- sched/topology,schedutil: Wrap sched domains rebuild (Phil Auld) [1937103]
+- sched/core: Fix typos in comments (Phil Auld) [1937103]
+- sched: Fix rq->nr_iowait ordering (Phil Auld) [1937103]
+- sched: Fix data-race in wakeup (Phil Auld) [1937103]
+- sched/fair: Fix overutilized update in enqueue_task_fair() (Phil Auld) [1937103]
+- sched/fair: Dissociate wakeup decisions from SD flag value (Phil Auld) [1937103]
+- sched: Remove select_task_rq()'s sd_flag parameter (Phil Auld) [1937103]
+- sched: Add WF_TTWU, WF_EXEC wakeup flags (Phil Auld) [1937103]
+- sched/fair: Remove superfluous lock section in do_sched_cfs_slack_timer() (Phil Auld) [1937103]
+- sched/fair: Ensure tasks spreading in LLC during LB (Phil Auld) [1937103]
+- sched/fair: Reorder throttle_cfs_rq() path (Phil Auld) [1937103]
+- sched/fair: Check for idle core in wake_affine (Phil Auld) [1937103]
+- sched: Reenable interrupts in do_sched_yield() (Phil Auld) [1937103]
+- sched/fair: Improve the accuracy of sched_stat_wait statistics (Phil Auld) [1937103]
+- sched/fair: Tweak pick_next_entity() (Phil Auld) [1937103]
+- sched/debug: Add new tracepoint to track cpu_capacity (Phil Auld) [1937103]
+- sched/fair: Remove the force parameter of update_tg_load_avg() (Phil Auld) [1937103]
+- sched/rt: Disable RT_RUNTIME_SHARE by default (Phil Auld) [1937103]
+- sched: Cache task_struct::flags in sched_submit_work() (Phil Auld) [1937103]
+- sched/fair: Simplify the work when reweighting entity (Phil Auld) [1937103]
+- sched/fair: Fix wrong negative conversion in find_energy_efficient_cpu() (Phil Auld) [1937103]
+- sched/fair: Ignore cache hotness for SMT migration (Phil Auld) [1937103]
+- sched: Use __always_inline on is_idle_task() (Phil Auld) [1937103]
+- treewide: Use fallthrough pseudo-keyword (Phil Auld) [1937103]
+- sched/debug: Fix the alignment of the show-state debug output (Phil Auld) [1937103]
+- x86, sched: Bail out of frequency invariance if turbo_freq/base_freq gives 0 (Phil Auld) [1937103]
+- x86, sched: Bail out of frequency invariance if turbo frequency is unknown (Phil Auld) [1937103]
+- x86, sched: check for counters overflow in frequency invariant accounting (Phil Auld) [1937103]
+- exit: Move preemption fixup up, move blocking operations down (Phil Auld) [1937103]
+- net: bonding: remove repeated word (Jarod Wilson) [1936982]
+- net: bonding: Correct function name bond_change_active_slave() in comment (Jarod Wilson) [1936982]
+- bonding: Added -ENODEV interpret for slaves option (Jarod Wilson) [1936982]
+- bonding: 3ad: Print an error for unknown speeds (Jarod Wilson) [1936982]
+- bonding: 3ad: add support for 400G speed (Jarod Wilson) [1936982]
+- bonding: 3ad: add support for 200G speed (Jarod Wilson) [1936982]
+- net/bonding: Declare TLS RX device offload support (Jarod Wilson) [1936982]
+- net/bonding: Implement TLS TX device offload (Jarod Wilson) [1936982]
+- net/bonding: Take update_features call out of XFRM funciton (Jarod Wilson) [1936982]
+- net/bonding: Implement ndo_sk_get_lower_dev (Jarod Wilson) [1936982]
+- net/bonding: Take IP hash logic into a helper (Jarod Wilson) [1936982]
+- net: bonding: Notify ports about their initial state (Jarod Wilson) [1936982]
+- bonding: wait for sysfs kobject destruction before freeing struct slave (Jarod Wilson) [1936982]
+- bonding: advertise NETIF_F_GSO_SOFTWARE (Jarod Wilson) [1936982]
+- net/tls: Except bond interface from some TLS checks (Jarod Wilson) [1936982]
+- net/tls: Device offload to use lowest netdevice in chain (Jarod Wilson) [1936982]
+- ethtool: Add common function for filling out strings (Ivan Vecera) [1950987]
+- selftests: forwarding: vxlan_bridge_1d: Fix vxlan ecn decapsulate value (Hangbin Liu) [1949349]
+- selftests: forwarding: Fix race condition in mirror installation (Hangbin Liu) [1949349]
+- selftests: txtimestamp: fix compilation issue (Hangbin Liu) [1949349]
+- selftests: net: fib_tests: remove duplicate log test (Hangbin Liu) [1949349]
+- selftests: xfrm: fix test return value override issue in xfrm_policy.sh (Hangbin Liu) [1949349]
+- selftests: rtnetlink: load fou module for kci_test_encap_fou() test (Hangbin Liu) [1949349]
+- vxlan: move debug check after netdev unregister (Guillaume Nault) [1949167]
+- net: ip: always refragment ip defragmented packets (Guillaume Nault) [1949167]
+- net: fix pmtu check in nopmtudisc mode (Guillaume Nault) [1949167]
+- net: udp: make udp_tunnel_nic_info structure extensible (Ivan Vecera) [1948450]
+- macvlan: macvlan_count_rx() needs to be aware of preemption (Antoine Tenart) [1950012]
+- macvlan: remove redundant null check on data (Antoine Tenart) [1950012]
+- net: fix dev_ifsioc_locked() race condition (Antoine Tenart) [1950234]
+- ipv6: weaken the v4mapped source check (Hangbin Liu) [1949499]
+- ipv6: set multicast flag on the multicast route (Hangbin Liu) [1949499]
+- ipv6: create multicast route with RTPROT_KERNEL (Hangbin Liu) [1949499]
+- net: ipv6: Validate GSO SKB before finish IPv6 processing (Hangbin Liu) [1949499]
+- net: sit: unregister_netdevice on newlink's error path (Hangbin Liu) [1949499]
+- net: ip6_gre: fix moving ip6gre between namespaces (Hangbin Liu) [1949499]
+- gso: validate gso_type on ipip style tunnels (Hangbin Liu) [1949499]
+- net: page_pool: simplify page recycling condition tests (Ivan Vecera) [1935698]
+- net: use the new dev_page_is_reusable() instead of private versions (Ivan Vecera) [1935698]
+- net: introduce common dev_page_is_reusable() (Ivan Vecera) [1935698]
+- skbuff: constify skb_propagate_pfmemalloc() "page" argument (Ivan Vecera) [1935698]
+- mm: constify page_is_pfmemalloc() argument (Ivan Vecera) [1935698]
+- genetlink: allow dumping command-specific policy (Ivan Vecera) [1938919]
+- genetlink: properly support per-op policy dumping (Ivan Vecera) [1938919]
+- genetlink: factor skb preparation out of ctrl_dumppolicy() (Ivan Vecera) [1938919]
+- netlink: rework policy dump to support multiple policies (Ivan Vecera) [1938919]
+- netlink: compare policy more accurately (Ivan Vecera) [1938919]
+- genetlink: switch control commands to per-op policies (Ivan Vecera) [1938919]
+- genetlink: use parsed attrs in dumppolicy (Ivan Vecera) [1938919]
+- taskstats: move specifying netlink policy back to ops (Ivan Vecera) [1938919]
+- genetlink: bring back per op policy (Ivan Vecera) [1938919]
+- genetlink: use .start callback for dumppolicy (Ivan Vecera) [1938919]
+- genetlink: add a structure for dump state (Ivan Vecera) [1938919]
+- genetlink: move to smaller ops wherever possible (Ivan Vecera) [1938919]
+- genetlink: add small version of ops (Ivan Vecera) [1938919]
+- netlink: fix policy dump leak (Ivan Vecera) [1938919]
+- genetlink: get rid of family->attrbuf (Ivan Vecera) [1938919]
+- genetlink: clean up family attributes allocations (Ivan Vecera) [1938919]
+- genetlink: fix memory leaks in genl_family_rcv_msg_dumpit() (Ivan Vecera) [1938919]
+- net: genetlink: return the error code when attribute parsing fails. (Ivan Vecera) [1938919]
+- genetlink: do not parse attributes for families with zero maxattr (Ivan Vecera) [1938919]
+- net: tipc: prepare attrs in __tipc_nl_compat_dumpit() (Ivan Vecera) [1938919]
+- net: genetlink: always allocate separate attrs for dumpit ops (Ivan Vecera) [1938919]
+- net: genetlink: remove unused genl_family_attrbuf() (Ivan Vecera) [1938919]
+- net: tipc: allocate attrs locally instead of using genl_family_attrbuf in compat_dumpit() (Ivan Vecera) [1938919]
+- net: tipc: have genetlink code to parse the attrs during dumpit (Ivan Vecera) [1938919]
+- net: nfc: have genetlink code to parse the attrs during dumpit (Ivan Vecera) [1938919]
+- net: ieee802154: have genetlink code to parse the attrs during dumpit (Ivan Vecera) [1938919]
+- net: genetlink: parse attrs and store in contect info struct during dumpit (Ivan Vecera) [1938919]
+- net: genetlink: push attrbuf allocation and parsing to a separate function (Ivan Vecera) [1938919]
+- net: genetlink: introduce dump info struct to be available during dumpit op (Ivan Vecera) [1938919]
+- net: genetlink: push doit/dumpit code from genl_family_rcv_msg (Ivan Vecera) [1938919]
+- devlink: Use controller while building phys_port_name (Petr Oros) [1935615]
+- devlink: Introduce controller number (Petr Oros) [1935615]
+- devlink: Introduce external controller flag (Petr Oros) [1935615]
+- devlink: Move structure comments outside of structure (Petr Oros) [1935615]
+- devlink: Add comment block for missing port attributes (Petr Oros) [1935615]
+- net/mlx5: E-switch, Read controller number from device (Petr Oros) [1935615]
+- devlink: don't crash if netdev is NULL (Petr Oros) [1935615]
+- vdpa/mlx5: Use write memory barrier after updating CQ index (Jason Wang) [1877270]
+- vhost_vdpa: return -EFAULT if copy_to_user() fails (Jason Wang) [1877270]
+- vdpa: mlx5: fix vdpa/vhost dependencies (Jason Wang) [1877270]
+- vhost-vdpa: fix page pinning leakage in error path (rework) (Jason Wang) [1877270]
+- vdpasim: fix "mac_pton" undefined error (Jason Wang) [1877270]
+- vdpasim: allow to assign a MAC address (Jason Wang) [1877270]
+- vdpasim: fix MAC address configuration (Jason Wang) [1877270]
+- vdpa: handle irq bypass register failure case (Jason Wang) [1877270]
+- vdpa_sim: Fix DMA mask (Jason Wang) [1877270]
+- Revert "vhost-vdpa: fix page pinning leakage in error path" (Jason Wang) [1877270]
+- vdpa/mlx5: Fix error return in map_direct_mr() (Jason Wang) [1877270]
+- vhost_vdpa: Return -EFAULT if copy_from_user() fails (Jason Wang) [1877270]
+- vdpa_sim: implement get_iova_range() (Jason Wang) [1877270]
+- vhost: vdpa: report iova range (Jason Wang) [1877270]
+- vdpa: introduce config op to get valid iova range (Jason Wang) [1877270]
+- vhost_vdpa: remove unnecessary spin_lock in vhost_vring_call (Jason Wang) [1877270]
+- vdpa/mlx5: Setup driver only if VIRTIO_CONFIG_S_DRIVER_OK (Jason Wang) [1877270]
+- vhost_vdpa: Fix duplicate included kernel.h (Jason Wang) [1877270]
+- vdpa/mlx5: Fix failure to bring link up (Jason Wang) [1877270]
+- vdpa/mlx5: Make use of a specific 16 bit endianness API (Jason Wang) [1877270]
+- vdpa/mlx5: Fix dependency on MLX5_CORE (Jason Wang) [1877270]
+- vdpa/mlx5: should keep avail_index despite device status (Jason Wang) [1877270]
+- vhost-vdpa: fix page pinning leakage in error path (Jason Wang) [1877270]
+- vhost-vdpa: fix vhost_vdpa_map() on error condition (Jason Wang) [1877270]
+- vhost vdpa: fix vhost_vdpa_open error handling (Jason Wang) [1877270]
+- vhost-vdpa: fix backend feature ioctls (Jason Wang) [1877270]
+- vdpa/mlx5: Avoid warnings about shifts on 32-bit platforms (Jason Wang) [1877270]
+- vdpa: ifcvf: free config irq in ifcvf_free_irq() (Jason Wang) [1877270]
+- vdpa: ifcvf: return err when fail to request config irq (Jason Wang) [1877270]
+- vdpa/mlx5: fix up endian-ness for mtu (Jason Wang) [1877270]
+- vdpa: Fix pointer math bug in vdpasim_get_config() (Jason Wang) [1877270]
+- vdpa/mlx5: Fix pointer math in mlx5_vdpa_get_config() (Jason Wang) [1877270]
+- mlx5: vdpa: fix possible uninitialized var (Jason Wang) [1877270]
+- vdpa/mlx5: fix memory allocation failure checks (Jason Wang) [1877270]
+- vdpa/mlx5: Fix uninitialised variable in core/mr.c (Jason Wang) [1877270]
+- vdpa_sim: init iommu lock (Jason Wang) [1877270]
+- redhat: enable mlx5e vDPA driver (Jason Wang) [1877270]
+- vdpa/mlx5: Add VDPA driver for supported mlx5 devices (Jason Wang) [1877270]
+- vdpa/mlx5: Add shared memory registration code (Jason Wang) [1877270]
+- vdpa/mlx5: Add support library for mlx5 VDPA implementation (Jason Wang) [1877270]
+- vdpa/mlx5: Add hardware descriptive header file (Jason Wang) [1877270]
+- vdpa: Modify get_vq_state() to return error code (Jason Wang) [1877270]
+- net/vdpa: Use struct for set/get vq state (Jason Wang) [1877270]
+- vdpa: remove hard coded virtq num (Jason Wang) [1877270]
+- vdpasim: support batch updating (Jason Wang) [1877270]
+- vhost-vdpa: support IOTLB batching hints (Jason Wang) [1877270]
+- vhost-vdpa: support get/set backend features (Jason Wang) [1877270]
+- vhost: generialize backend features setting/getting (Jason Wang) [1877270]
+- vhost-vdpa: refine ioctl pre-processing (Jason Wang) [1877270]
+- vDPA: dont change vq irq after DRIVER_OK (Jason Wang) [1877270]
+- ifcvf: implement vdpa_config_ops.get_vq_irq() (Jason Wang) [1877270]
+- vhost_vdpa: implement IRQ offloading in vhost_vdpa (Jason Wang) [1877270]
+- vDPA: add get_vq_irq() in vdpa_config_ops (Jason Wang) [1877270]
+- vhost: introduce vhost_vring_call (Jason Wang) [1877270]
+- vdpasim: protect concurrent access to iommu iotlb (Jason Wang) [1877270]
+- vhost: vdpa: remove per device feature whitelist (Jason Wang) [1877270]
+- vdpa_sim: fix endian-ness of config space (Jason Wang) [1877270]
+- virtio_vdpa: legacy features handling (Jason Wang) [1877270]
+- vhost/vdpa: switch to new helpers (Jason Wang) [1877270]
+- vdpa: make sure set_features is invoked for legacy (Jason Wang) [1877270]
+- vhost_vdpa: Fix potential underflow in vhost_vdpa_mmap() (Jason Wang) [1877270]
+- vdpa: fix typos in the comments for __vdpa_alloc_device() (Jason Wang) [1877270]
+- ifcvf: implement config interrupt in IFCVF (Jason Wang) [1877270]
+- vhost: replace -1 with VHOST_FILE_UNBIND in ioctls (Jason Wang) [1877270]
+- vhost_vdpa: Support config interrupt in vdpa (Jason Wang) [1877270]
+- ifcvf: ignore continuous setting same status value (Jason Wang) [1877270]
+- vdpasim: Fix some coccinelle warnings (Jason Wang) [1877270]
+- ifcvf: move IRQ request/free to status change handlers (Jason Wang) [1877270]
+- vhost_vdpa: disable doorbell mapping for !MMU (Jason Wang) [1877270]
+- vhost_vdpa: support doorbell mapping via mmap (Jason Wang) [1877270]
+- vdpa: introduce get_vq_notification method (Jason Wang) [1877270]
+- vhost: use mmgrab() instead of mmget() for non worker device (Jason Wang) [1877270]
+- vhost: allow device that does not depend on vhost worker (Jason Wang) [1877270]
+- vhost: revert "vhost: disable for OABI" (Jason Wang) [1877270]
+- vdpasim: remove unused variable 'ret' (Jason Wang) [1877270]
+- vhost: remove set but not used variable 'status' (Jason Wang) [1877270]
+- vhost: vdpa: remove unnecessary null check (Jason Wang) [1877270]
+- virtio/test: fix up after IOTLB changes (Jason Wang) [1877270]
+- vhost/test: fix build for vhost test (Jason Wang) [1877270]
+- tools/virtio: option to build an out of tree module (Jason Wang) [1877270]
+- vhost/test: fix build for vhost test (Jason Wang) [1877270]
+- vhost: fix VHOST_GET_BACKEND_FEATURES ioctl request definition (Jason Wang) [1877270]
+- perf/x86/intel/uncore: Remove uncore extra PCI dev HSWEP_PCI_PCU_3 (Michael Petlan) [1950388]
+
+* Mon Apr 26 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-304.7.el8]
+- redhat/configs/editconfig: Add support for a bugzilla entry (David Arcari)
+- tools/power turbostat: Revert "[tools] tools/power turbostat: Enable accumulate RAPL display" (Prarit Bhargava) [1944699]
+- mwifiex: Fix possible buffer overflows in mwifiex_cmd_802_11_ad_hoc_start (Jarod Wilson) [1914996] {CVE-2020-36158}
+- net/mlx5e: Allow to match on MPLS parameters only for MPLS over UDP (Alaa Hleihel) [1932839 1936742]
+- net/mlx5e: Reject tc rules which redirect from a VF to itself (Alaa Hleihel) [1932839]
+- net/mlx5: CT: Add support for matching on ct_state inv and rel flags (Alaa Hleihel) [1932839 1942681]
+- net: openvswitch: add log message for error case (Eelco Chaudron) [1937697]
+- net: openvswitch: conntrack: simplify the return expression of ovs_ct_limit_get_default_limit() (Eelco Chaudron) [1937697]
+- net: openvswitch: Be liberal in tcp conntrack. (Eelco Chaudron) [1937697]
+- netfilter: conntrack: tcp: only close if RST matches exact sequence (Eelco Chaudron) [1937697]
+- openvswitch: Use IS_ERR instead of IS_ERR_OR_NULL (Eelco Chaudron) [1937697]
+- net: openvswitch: Fix kerneldoc warnings (Eelco Chaudron) [1937697]
+- net: openvswitch: remove unnecessary ASSERT_OVSL in ovs_vport_del() (Eelco Chaudron) [1937697]
+- cifs: revalidate mapping when we open files for SMB1 POSIX (Ronnie Sahlberg) [1933527]
+- Revert "vfs: Allow userns root to call mknod on owned filesystems." (Alexey Gladkov) [1902543]
+- mfd: intel-lpss: Add Intel Alder Lake PCH-S PCI IDs (David Arcari) [1840244]
+- nvme: retrigger ANA log update if group descriptor isn't found (Gopal Tiwari) [1910493]
+- locking/qrwlock: Fix ordering in queued_write_lock_slowpath() (Waiman Long) [1950110]
+- PCI: switchtec: Add missing __iomem tag to fix sparse warnings (Myron Stowe) [1946645]
+- PCI: switchtec: Add missing __iomem and __user tags to fix sparse warnings (Myron Stowe) [1946645]
+- PCI: Release IVRS table in AMD ACS quirk (Myron Stowe) [1946645]
+- PCI/MSI: Forward MSI-X error code in pci_alloc_irq_vectors_affinity() (Myron Stowe) [1946645]
+- PCI: Remove unused pci_lost_interrupt() (Myron Stowe) [1946645]
+- PCI: Move PCI_VENDOR_ID_REDHAT definition to pci_ids.h (Myron Stowe) [1946645]
+- PCI: Fix error in panic message (Myron Stowe) [1946645]
+- PCI: Replace lkml.org, spinics, gmane with lore.kernel.org (Myron Stowe) [1946645]
+- PCI: Replace http:// links with https:// (Myron Stowe) [1946645]
+- PCI: exynos: Rename Exynos to lowercase (Myron Stowe) [1946645]
+- PCI: Align PCIe capability and PCI accessor return values (Myron Stowe) [1946645]
+- PCI: Convert PCIe capability PCIBIOS errors to errno (Myron Stowe) [1946645]
+- PCI: rpadlpar: Make functions static (Myron Stowe) [1946645]
+- PCI: Fix pci_slot_release() NULL pointer dereference (Myron Stowe) [1946645]
+- PCI: Fix pci_create_slot() reference count leak (Myron Stowe) [1946645]
+- PCI: Announce device after early fixups (Myron Stowe) [1946645]
+- PCI: Always enable ACS even if no ACS Capability (Myron Stowe) [1946645]
+- PCI: Cache ACS capability offset in device (Myron Stowe) [1946645]
+- PCI: Reorder pci_enable_acs() and dependencies (Myron Stowe) [1946645]
+- PCI: Add device even if driver attach failed (Myron Stowe) [1946645]
+- PCI: Fix pci_cfg_wait queue locking problem (Myron Stowe) [1946645]
+- PCI/ASPM: Add missing newline in sysfs 'policy' (Myron Stowe) [1946645]
+
+* Thu Apr 22 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-304.6.el8]
+- gfs2: report "already frozen/thawed" errors (Bob Peterson) [1932236]
+- gfs2: move freeze glock outside the make_fs_rw and _ro functions (Bob Peterson) [1932236]
+- gfs2: Add common helper for holding and releasing the freeze glock (Bob Peterson) [1932236]
+- gfs2: in signal_our_withdraw wait for unfreeze of _this_ fs only (Bob Peterson) [1932236]
+- gfs2: Don't freeze the file system during unmount (Bob Peterson) [1932236]
+- gfs2: Fix regression in freeze_go_sync (Bob Peterson) [1932236]
+- gfs2: The freeze glock should never be frozen (Bob Peterson) [1932236]
+- gfs2: When freezing gfs2, use GL_EXACT and not GL_NOCACHE (Bob Peterson) [1932236]
+- gfs2: Abort gfs2_freeze if io error is seen (Bob Peterson) [1932236]
+- gfs2: read-only mounts should grab the sd_freeze_gl glock (Bob Peterson) [1932236]
+- gfs2: freeze should work on read-only mounts (Bob Peterson) [1932236]
+- bpf: Mark LSM link with rh_mark_used_feature call (Jiri Olsa) [1901039]
+- Revert "[tools] bpf: selftests: remove test_progs LSM test" (Ondrej Mosnacek) [1901039]
+- configs: enable BPF LSM (Ondrej Mosnacek) [1901039]
+- security: Fix hook iteration and default value for inode_copy_up_xattr (Ondrej Mosnacek) [1901039]
+- security: Fix hook iteration for secid_to_secctx (Ondrej Mosnacek) [1901039]
+- security: Fix the default value of secid_to_secctx hook (Ondrej Mosnacek) [1901039]
+- security: Fix the default value of fs_context_parse_param hook (Ondrej Mosnacek) [1901039]
+- bpf: lsm: Initialize the BPF LSM hooks (Ondrej Mosnacek) [1901039]
+- security: Refactor declaration of LSM hooks (Ondrej Mosnacek) [1901039]
+- LSM: fix documentation for the shm_* hooks (Ondrej Mosnacek) [1901039]
+- LSM: fix documentation for the sem_* hooks (Ondrej Mosnacek) [1901039]
+- LSM: fix documentation for the msg_queue_* hooks (Ondrej Mosnacek) [1901039]
+- LSM: Revive CONFIG_DEFAULT_SECURITY_* for "make oldconfig" (Ondrej Mosnacek) [1901039]
+- LSM: Ignore "security=" when "lsm=" is specified (Ondrej Mosnacek) [1901039]
+- LSM: Update function documentation for cap_capable (Ondrej Mosnacek) [1901039]
+- procfs: add smack subdir to attrs (Ondrej Mosnacek) [1901039]
+- capability: Initialize as LSM_ORDER_FIRST (Ondrej Mosnacek) [1901039]
+- LSM: Introduce enum lsm_order (Ondrej Mosnacek) [1901039]
+- Yama: Initialize as ordered LSM (Ondrej Mosnacek) [1901039]
+- LoadPin: Initialize as ordered LSM (Ondrej Mosnacek) [1901039]
+- LSM: Split LSM preparation from initialization (Ondrej Mosnacek) [1901039]
+- LSM: Add all exclusive LSMs to ordered initialization (Ondrej Mosnacek) [1901039]
+- LSM: Separate idea of "major" LSM from "exclusive" LSM (Ondrej Mosnacek) [1901039]
+- LSM: Refactor "security=" in terms of enable/disable (Ondrej Mosnacek) [1901039]
+- LSM: Prepare for reorganizing "security=" logic (Ondrej Mosnacek) [1901039]
+- LSM: Tie enabling logic to presence in ordered list (Ondrej Mosnacek) [1901039]
+- LSM: Introduce "lsm=" for boottime LSM selection (Ondrej Mosnacek) [1901039]
+- LSM: Introduce CONFIG_LSM (Ondrej Mosnacek) [1901039]
+- LSM: Build ordered list of LSMs to initialize (Ondrej Mosnacek) [1901039]
+- LSM: Lift LSM selection out of individual LSMs (Ondrej Mosnacek) [1901039]
+- LSM: Plumb visibility into optional "enabled" state (Ondrej Mosnacek) [1901039]
+- LSM: Provide separate ordered initialization (Ondrej Mosnacek) [1901039]
+- LSM: Introduce LSM_FLAG_LEGACY_MAJOR (Ondrej Mosnacek) [1901039]
+- LSM: Don't ignore initialization failures (Ondrej Mosnacek) [1901039]
+- LSM: Provide init debugging infrastructure (Ondrej Mosnacek) [1901039]
+- LSM: Record LSM name in struct lsm_info (Ondrej Mosnacek) [1901039]
+- LSM: Convert security_initcall() into DEFINE_LSM() (Ondrej Mosnacek) [1901039]
+- vmlinux.lds.h: Move LSM_TABLE into INIT_DATA (Ondrej Mosnacek) [1901039]
+- LSM: Convert from initcall to struct lsm_info (Ondrej Mosnacek) [1901039]
+- LSM: Remove initcall tracing (Ondrej Mosnacek) [1901039]
+- LSM: Rename .security_initcall section to .lsm_info (Ondrej Mosnacek) [1901039]
+- vmlinux.lds.h: Avoid copy/paste of security_init section (Ondrej Mosnacek) [1901039]
+- LSM: Correctly announce start of LSM initialization (Ondrej Mosnacek) [1901039]
+- proc: save 2 atomic ops on write to "/proc/*/attr/*" (Ondrej Mosnacek) [1901039]
+- ALSA: usb-audio: fix NULL ptr dereference in usb_audio_probe (Jaroslav Kysela) [1870724]
+- ALSA: usb-audio: fix use after free in usb_audio_disconnect (Jaroslav Kysela) [1870724]
+- ALSA: usb-audio: Disable USB autosuspend properly in setup_disable_autosuspend() (Jaroslav Kysela) [1870724]
+- Bluetooth: btusb: Fix the autosuspend enable and disable (Gopal Tiwari) [1927375]
+- flow_dissector: fix TTL and TOS dissection on IPv4 fragments (Davide Caratti) [1882607]
+- net: avoid infinite loop in mpls_gso_segment when mpls_hlen == 0 (Balazs Nemeth) [1922898]
+- net: check if protocol extracted by virtio_net_hdr_set_proto is correct (Balazs Nemeth) [1922898]
+- redhat/configs: Add CONFIG_PINCTRL_ALDERLAKE (David Arcari) [1840250]
+- pinctrl: intel: Add Intel Alder Lake-S pin controller support (David Arcari) [1840250]
+- cpufreq: intel_pstate: Remove repeated word (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Get per-CPU max freq via MSR_HWP_CAPABILITIES if available (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Rename two functions (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Change intel_pstate_get_hwp_max() argument (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Always read hwp_cap_cached with READ_ONCE() (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: remove obsolete functions (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Use HWP capabilities in intel_cpufreq_adjust_perf() (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Fix fast-switch fallback path (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Use most recent guaranteed performance values (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Implement the ->adjust_perf() callback (Puneet Sethi) [1926919]
+- cpufreq: Add special-purpose fast-switching callback for drivers (Puneet Sethi) [1926919]
+- cpufreq: schedutil: Add util to struct sg_cpu (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Simplify intel_cpufreq_update_pstate() (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Take CPUFREQ_GOV_STRICT_TARGET into account (Puneet Sethi) [1926919]
+- cpufreq: Add strict_target to struct cpufreq_policy (Puneet Sethi) [1926919]
+- cpufreq: Introduce CPUFREQ_GOV_STRICT_TARGET (Puneet Sethi) [1926919]
+- cpufreq: Introduce governor flags (Puneet Sethi) [1926919]
+- cpufreq: schedutil: Don't skip freq update if need_freq_update is set (Puneet Sethi) [1926919]
+- cpufreq: schedutil: Always call driver if CPUFREQ_NEED_UPDATE_LIMITS is set (Puneet Sethi) [1926919]
+- cpufreq: Introduce cpufreq_driver_test_flags() (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Avoid missing HWP max updates in passive mode (Puneet Sethi) [1926919]
+- cpufreq: schedutil: restore cached freq when next_f is not changed (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Delete intel_pstate sysfs if failed to register the driver (Puneet Sethi) [1926919]
+- cpufreq: intel_pstate: Fix missing return statement (Puneet Sethi) [1926919]
+- cpufreq: Introduce CPUFREQ_NEED_UPDATE_LIMITS driver flag (Puneet Sethi) [1926919]
+- ACPI: processor: Fix build when CONFIG_ACPI_PROCESSOR=m (Vitaly Kuznetsov) [1929266]
+- ACPI: processor: Fix CPU0 wakeup in acpi_idle_play_dead() (Vitaly Kuznetsov) [1929266]
+- x86/ioapic: Ignore IRQ2 again (Vitaly Kuznetsov) [1929266]
+
+* Mon Apr 19 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-304.5.el8]
+- selinux: fix deadlock in security_set_bools() (Ondrej Mosnacek) [1924230]
+- sctp: move sk_route_caps check and set into sctp_outq_flush_transports (Xin Long) [1946733]
+- sctp: bring inet(6)_skb_parm back to sctp_input_cb (Xin Long) [1946733]
+- sctp: enable udp tunneling socks (Xin Long) [1946733]
+- sctp: handle the init chunk matching an existing asoc (Xin Long) [1946733]
+- sctp: add the error cause for new encapsulation port restart (Xin Long) [1946733]
+- sctp: support for sending packet over udp6 sock (Xin Long) [1946733]
+- sctp: support for sending packet over udp4 sock (Xin Long) [1946733]
+- sctp: call sk_setup_caps in sctp_packet_transmit instead (Xin Long) [1946733]
+- sctp: add udphdr to overhead when udp_port is set (Xin Long) [1946733]
+- sctp: allow changing transport encap_port by peer packets (Xin Long) [1946733]
+- sctp: add SCTP_REMOTE_UDP_ENCAPS_PORT sockopt (Xin Long) [1946733]
+- sctp: add encap_port for netns sock asoc and transport (Xin Long) [1946733]
+- sctp: add encap_err_lookup for udp encap socks (Xin Long) [1946733]
+- sctp: create udp6 sock and set its encap_rcv (Xin Long) [1946733]
+- sctp: create udp4 sock and add its encap_rcv (Xin Long) [1946733]
+- udp: support sctp over udp in skb_udp_tunnel_segment (Xin Long) [1946733]
+- udp6: move the mss check after udp gso tunnel processing (Xin Long) [1946733]
+- udp: check udp sock encap_type in __udp_lib_err (Xin Long) [1946733]
+- sctp: copy the optval from user space in sctp_setsockopt (Xin Long) [1946733]
+- net: Convert protocol error handlers from void to int (Xin Long) [1946733]
+- Enable CONFIG_ENERGY_MODEL (Phil Auld) [1938339]
+- proc/sysctl: add shared variables for range check (Phil Auld) [1938339]
+- Enable CONFIG_CPU_FREQ_GOV_SCHEDUTIL for all architectures (Phil Auld) [1938339]
+- PM / hibernate: cast PAGE_SIZE to int when comparing with error code (Chris von Recklinghausen) [1934033]
+- mm: revert fix false-positive OVERCOMMIT_GUESS failures (Rafael Aquini) [1913045 1908668]
+- redhat/config: Enable CONFIG_PAGE_POISONING (Waiman Long) [1942149]
+- mm, page_poison: remove CONFIG_PAGE_POISONING_ZERO (Waiman Long) [1942149]
+- mm, page_poison: remove CONFIG_PAGE_POISONING_NO_SANITY (Waiman Long) [1942149]
+- kernel/power: allow hibernation with page_poison sanity checking (Waiman Long) [1942149]
+- mm, page_poison: use static key more efficiently (Waiman Long) [1942149]
+- mm, page_alloc: do not rely on the order of page_poison and init_on_alloc/free parameters (Waiman Long) [1942149]
+- mm/page_alloc: clear all pages in post_alloc_hook() with init_on_alloc=1 (Waiman Long) [1942149]
+- arch, mm: make kernel_page_present() always available (Waiman Long) [1942149]
+- arch, mm: restore dependency of __kernel_map_pages() on DEBUG_PAGEALLOC (Waiman Long) [1942149]
+- PM: hibernate: make direct map manipulations more explicit (Waiman Long) [1942149]
+- mm: introduce debug_pagealloc_{map,unmap}_pages() helpers (Waiman Long) [1942149]
+- mm: rename page_order() to buddy_order() (Waiman Long) [1942149]
+- mm/page_alloc: place pages to tail in __free_pages_core() (Waiman Long) [1942149]
+- mm/page_alloc: move pages to tail in move_to_free_list() (Waiman Long) [1942149]
+- mm/page_alloc: place pages to tail in __putback_isolated_page() (Waiman Long) [1942149]
+- mm/page_alloc: convert "report" flag of __free_one_page() to a proper flag (Waiman Long) [1942149]
+- mm/page_alloc: drop stale pageblock comment in memmap_init_zone*() (Waiman Long) [1942149]
+- mm/memory_hotplug: simplify page onlining (Waiman Long) [1942149]
+- mm/page_isolation: simplify return value of start_isolate_page_range() (Waiman Long) [1942149]
+- mm/memory_hotplug: drop nr_isolate_pageblock in offline_pages() (Waiman Long) [1942149]
+- mm/page_alloc: simplify __offline_isolated_pages() (Waiman Long) [1942149]
+- mm/memory_hotplug: simplify page offlining (Waiman Long) [1942149]
+- mm/memory_hotplug: enforce section granularity when onlining/offlining (Waiman Long) [1942149]
+- mm/memory_hotplug: inline __offline_pages() into offline_pages() (Waiman Long) [1942149]
+- mm/page_poison.c: replace bool variable with static key (Waiman Long) [1942149]
+- mm/page_alloc.c: fix early params garbage value accesses (Waiman Long) [1942149]
+- mm/memory_hotplug: document why shuffle_zone() is relevant (Waiman Long) [1942149]
+- mm: replace '---help---' in Kconfig files with 'help' (Waiman Long) [1942149]
+- mm/memory_hotplug: fix a typo in comment "recoreded"->"recorded" (Waiman Long) [1942149]
+- mm: Allow to offline unmovable PageOffline() pages via MEM_GOING_OFFLINE (Waiman Long) [1942149]
+- x86/mm/cpa: Flush direct map alias during cpa (Waiman Long) [1942149]
+- mm/page_alloc: simplify page_is_buddy() for better code readability (Waiman Long) [1942149]
+- mm/memory.c: add apply_to_existing_page_range() helper (Waiman Long) [1942149]
+- x86/mm/pat: Move the memtype related files to arch/x86/mm/pat/ (Waiman Long) [1942149]
+- x86/mm/pat: Rename pat_rbtree.c to pat_interval.c (Waiman Long) [1942149]
+- mm/memory_hotplug: online_pages cannot be 0 in online_pages() (Waiman Long) [1942149]
+- mm/memory_hotplug: make sure the pfn is aligned to the order when onlining (Waiman Long) [1942149]
+- mm/memory_hotplug: simplify online_pages_range() (Waiman Long) [1942149]
+- mm/memory_hotplug: drop PageReserved() check in online_pages_range() (Waiman Long) [1942149]
+- mm/memory_hotplug.c: use PFN_UP / PFN_DOWN in walk_system_ram_range() (Waiman Long) [1942149]
+- mm/page_poison.c: fix a typo in a comment (Waiman Long) [1942149]
+- mm/slab: Remove store_stackinfo() (Waiman Long) [1942149]
+- mm/resource: Let walk_system_ram_range() search child resources (Waiman Long) [1942149]
+- mm/page_alloc.c: use a single function to free page (Waiman Long) [1942149]
+- mm/page_alloc.c: free order-0 pages through PCP in page_frag_free() (Waiman Long) [1942149]
+- x86/mm/cpa: Fix set_mce_nospec() (Waiman Long) [1942149]
+- x86/mm/cpa: Rename @addrinarray to @numpages (Waiman Long) [1942149]
+- x86/mm/cpa: Better use CLFLUSHOPT (Waiman Long) [1942149]
+- x86/mm/cpa: Fold cpa_flush_range() and cpa_flush_array() into a single cpa_flush() function (Waiman Long) [1942149]
+- x86/mm/cpa: Make cpa_data::numpages invariant (Waiman Long) [1942149]
+- x86/mm/cpa: Optimize cpa_flush_array() TLB invalidation (Waiman Long) [1942149]
+- x86/mm/cpa: Simplify the code after making cpa->vaddr invariant (Waiman Long) [1942149]
+- x86/mm/cpa: Make cpa_data::vaddr invariant (Waiman Long) [1942149]
+- x86/mm/cpa: Add __cpa_addr() helper (Waiman Long) [1942149]
+- x86/mm/cpa: Add ARRAY and PAGES_ARRAY selftests (Waiman Long) [1942149]
+- resource/docs: Complete kernel-doc style function documentation (Waiman Long) [1942149]
+- resource/docs: Fix new kernel-doc warnings (Waiman Long) [1942149]
+- resource: Clean it up a bit (Waiman Long) [1942149]
+- mm: clarify CONFIG_PAGE_POISONING and usage (Waiman Long) [1942149]
+- selftests: kvm: Raise the default timeout to 120 seconds (Emanuele Giuseppe Esposito) [1894828]
+- KVM: Raise the maximum number of user memslots (Emanuele Giuseppe Esposito) [1894828]
+- block: recalculate segment count for multi-segment discards correctly (Ming Lei) [1922370]
+- i40e: Fix VFs not created (Stefan Assmann) [1875338]
+- vfs: fix page locking deadlocks when deduping files (Gao Xiang) [1916242]
+
+* Thu Apr 15 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-304.4.el8]
+- tg3: improve PCI VPD access (Jonathan Toppins) [1921456]
+- scsi: target: pscsi: Clean up after failure in pscsi_map_sg() (Maurizio Lombardi) [1939458]
+- scsi: target: pscsi: Avoid OOM in pscsi_map_sg() (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Fix memory leak caused by wrong uio usage (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Move some functions without code change (Maurizio Lombardi) [1939458]
+- scsi: target: core: Prevent underflow for service actions (Maurizio Lombardi) [1939458]
+- scsi: target: core: Add cmd length set before cmd complete (Maurizio Lombardi) [1939458]
+- scsi: target: sbp: Remove unneeded semicolon (Maurizio Lombardi) [1939458]
+- scsi: target: core: Change ASCQ for residual write (Maurizio Lombardi) [1939458]
+- scsi: target: core: Signal WRITE residuals (Maurizio Lombardi) [1939458]
+- scsi: target: core: Set residuals for 4Kn devices (Maurizio Lombardi) [1939458]
+- scsi: target: core: Remove in_interrupt() check in transport_handle_cdb_direct() (Maurizio Lombardi) [1939458]
+- scsi: target: core: Replace in_interrupt() usage in target_submit_cmd_map_sgls() (Maurizio Lombardi) [1939458]
+- scsi: target: alua: Remove in_interrupt() usage in core_alua_check_nonop_delay() (Maurizio Lombardi) [1939458]
+- scsi: target: iscsi: Redo iscsit_check_session_usage_count() return code (Maurizio Lombardi) [1939458]
+- scsi: target: iscsi: Avoid in_interrupt() usage in iscsit_check_session_usage_count() (Maurizio Lombardi) [1939458]
+- scsi: target: iscsi: Avoid in_interrupt() usage in iscsit_close_session() (Maurizio Lombardi) [1939458]
+- scsi: target: iscsi: Fix typo in comment (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Fix use-after-free of se_cmd->priv (Maurizio Lombardi) [1939458]
+- scsi: target: core: Fix fall-through warnings for Clang (Maurizio Lombardi) [1939458]
+- scsi: tcm_loop: Allow queues, can_queue and cmd_per_lun to be settable (Maurizio Lombardi) [1939458]
+- scsi: target: Make state_list per CPU (Maurizio Lombardi) [1939458]
+- scsi: target: Drop sess_cmd_lock from I/O path (Maurizio Lombardi) [1939458]
+- scsi: target: Remove TARGET_SCF_LOOKUP_LUN_FROM_TAG (Maurizio Lombardi) [1939458]
+- scsi: target: Fix cmd_count ref leak (Maurizio Lombardi) [1939458]
+- scsi: target: Fix LUN ref count handling (Maurizio Lombardi) [1939458]
+- scsi: target: Return COMPARE AND WRITE miscompare offsets (Maurizio Lombardi) [1939458]
+- scsi: target: Split out COMPARE AND WRITE memcmp into helper (Maurizio Lombardi) [1939458]
+- scsi: target: Rename cmd.bad_sector to cmd.sense_info (Maurizio Lombardi) [1939458]
+- scsi: target: Rename struct sense_info to sense_detail (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: scatter_/gather_data_area() rework (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Replace zero-length array with flexible-array member (Maurizio Lombardi) [1939458]
+- scsi: target: rd: Drop double zeroing (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Fix warning: 'page' may be used uninitialized (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Optimize scatter_data_area() (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Optimize queue_cmd_ring() (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Join tcmu_cmd_get_data_length() and tcmu_cmd_get_block_cnt() (Maurizio Lombardi) [1939458]
+- scsi: target: tcmu: Add missing newline when printing parameters (Maurizio Lombardi) [1939458]
+- scsi: target: Remove redundant assignment to variable 'ret' (Maurizio Lombardi) [1939458]
+- x86/resctrl: Fix AMD L3 QOS CDP enable/disable (Wei Huang) [1868984]
+- i2c: i801: Add support for Intel Alder Lake PCH-S (David Arcari) [1840242]
+- esp: delete NETIF_F_SCTP_CRC bit from features for esp offload (Xin Long) [1815560]
+- net/sched: act_ct: clear post_ct if doing ct_clear (Marcelo Ricardo Leitner) [1941889]
+- net: Change dev parameter to const in netif_device_present() (Josef Oskera) [1941728]
+- [x86] x86/mce: Increase maximum number of banks to 64 (Terry Bowman) [1931679]
+
+* Mon Apr 12 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-304.3.el8]
+- scsi: megaraid_sas: Fix a bunch of misnamed functions in their headers (Tomas Henzl) [1924687]
+- scsi: megaraid_sas: Replace sdev_busy with local counter (Tomas Henzl) [1924687]
+- scsi: megaraid: Fix ifnullfree.cocci warnings (Tomas Henzl) [1924687]
+- scsi: megaraid_sas: Fix MEGASAS_IOC_FIRMWARE regression (Tomas Henzl) [1924687]
+- Revert "Revert "scsi: megaraid_sas: Added support for shared host tagset for cpuhotplug"" (Tomas Henzl) [1924687]
+- Revert "scsi: megaraid_sas: Added support for shared host tagset for cpuhotplug" (Tomas Henzl) [1924687]
+- scsi: megaraid_sas: Update function description (Tomas Henzl) [1924687]
+- scsi: megaraid_sas: Use generic power management (Tomas Henzl) [1924687]
+- megaraid_sas(treewide): Use fallthrough pseudo-keyword (Tomas Henzl) [1924687]
+- scsi: megaraid_sas: Drop PCI wakeup calls from .resume (Tomas Henzl) [1924687]
+- scsi: megaraid_sas: Check user-provided offsets (Tomas Henzl) [1924687]
+- scsi: mpt3sas: Update driver version to 37.101.00.00 (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Force reply post array allocations to be within same 4 GB region (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Force reply post buffer allocations to be within same 4 GB region (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Force reply buffer allocations to be within same 4 GB region (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Force sense buffer allocations to be within same 4 GB region (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Force chain buffer allocations to be within same 4 GB region (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Force PCIe scatterlist allocations to be within same 4 GB region (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Replace unnecessary dynamic allocation with a static one (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Fix some kernel-doc misnaming issues (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Fix a couple of misdocumented functions/params (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Fix a bunch of potential naming doc-rot (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Move a little data from the stack onto the heap (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Fix misspelling of _base_put_smid_default_atomic() (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Update driver version to 37.100.00.00 (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Additional diagnostic buffer query interface (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Add support for shared host tagset for CPU hotplug (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Fix ReplyPostFree pool allocation (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Simplify bool comparison (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Signedness bug in _base_get_diag_triggers() (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Update driver version to 36.100.00.00 (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Handle trigger page after firmware update (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Add persistent MPI trigger page (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Add persistent SCSI sense trigger page (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Add persistent Event trigger page (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Add persistent Master trigger page (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Add persistent trigger pages support (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Sync time periodically between driver and firmware (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Increase IOCInit request timeout to 30s (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Fix ioctl timeout (Tomas Henzl) [1922058]
+- scsi: mpt3sas: Remove in_interrupt() (Tomas Henzl) [1922058]
+- scsi: mpt3sas_scsih: Use generic power management (Tomas Henzl) [1922058]
+- scsi: mpt3sas_scsih: Drop PCI Wakeup calls from .resume (Tomas Henzl) [1922058]
+- scsi: mpt3sas: mpt3sas_scsih: Fix function documentation formatting (Tomas Henzl) [1922058]
+- mpt3sas: Use fallthrough pseudo-keyword (Tomas Henzl) [1922058]
+- net: add inline function skb_csum_is_sctp (Josef Oskera) [1939341]
+- psample: Fix user API breakage (Ivan Vecera) [1939499]
+- net: psample: Fix netlink skb length with tunnel info (Ivan Vecera) [1939499]
+- net: psample: Add tunnel support (Ivan Vecera) [1939499]
+- net: core: introduce struct netdev_nested_priv for nested interface infrastructure (Ivan Vecera) [1939402]
+- net: add function dev_fetch_sw_netstats for fetching pcpu_sw_netstats (Josef Oskera) [1935717]
+- net: core: add devm_netdev_alloc_pcpu_stats (Josef Oskera) [1935717]
+- net: core: add dev_sw_netstats_tx_add (Josef Oskera) [1935717]
+- net: netdevice.h: sw_netstats_rx_add helper (Josef Oskera) [1935717]
+- net: netdevice: Add operation ndo_sk_get_lower_dev (Josef Oskera) [1935709]
+- genirq: Provide irq_get_effective_affinity() (Josef Oskera) [1935670]
+
+* Thu Apr 08 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-304.2.el8]
+- locking/locktorture: Fix incorrect use of ww_acquire_ctx in ww_mutex test (Waiman Long) [1871851]
+- locking/locktorture: Pass thread id to lock/unlock functions (Waiman Long) [1871851]
+- locking/ww_mutex: Remove DEFINE_WW_MUTEX() macro (Waiman Long) [1871851]
+- locking/locktorture: Fix false positive circular locking splat in ww_mutex test (Waiman Long) [1871851]
+- locking/ww_mutex: Fix acquire/release imbalance in ww_acquire_init()/ww_acquire_fini() (Waiman Long) [1871851]
+- locking/ww_mutex: Simplify use_ww_ctx & ww_ctx handling (Waiman Long) [1871851]
+- locking: Remove duplicate include of percpu-rwsem.h (Waiman Long) [1871851]
+- locktorture: Invoke percpu_free_rwsem() to do percpu-rwsem cleanup (Waiman Long) [1871851]
+- locktorture: Prevent hangs for invalid arguments (Waiman Long) [1871851]
+- locktorture: Ignore nreaders_stress if no readlock support (Waiman Long) [1871851]
+- locktorture: Track time of last ->writeunlock() (Waiman Long) [1871851]
+- locktorture: Make function torture_percpu_rwsem_init() static (Waiman Long) [1871851]
+- sched,locktorture: Convert to sched_set_fifo() (Waiman Long) [1871851]
+- locktorture: Use true and false to assign to bool variables (Waiman Long) [1871851]
+- locktorture: Print ratio of acquisitions, not failures (Waiman Long) [1871851]
+- locktorture: NULL cxt.lwsa and cxt.lrsa to allow bad-arg detection (Waiman Long) [1871851]
+- locking/locktorture: Convert to SPDX license identifier (Waiman Long) [1871851]
+- tty: Fix ->session locking (Chris von Recklinghausen) [1908059] {CVE-2020-29660}
+- net: skbext: fix secpath use-after-free with ip fragmentation (Sabrina Dubroca) [1901454]
+
+* Wed Apr 07 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-304.1.el8]
+- nfs: we don't support removing system.nfs4_acl (Scott Mayhew) [1944659]
+- redhat/configs: Disable CONFIG_INFINIBAND_HNS* (Kamal Heib) [1941259]
+- mm: Revert "remove the account_page_dirtied export" (Waiman Long) [1941257]
+- Revert "[netdrv] net/broadcom: Clean broadcom code from driver versions" (Jonathan Toppins) [1940842]
+
+* Thu Apr 01 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-303.1.el8]
+- geneve: do not modify the shared tunnel info when PMTU triggers an ICMP reply (Antoine Tenart) [1941753]
+- vxlan: do not modify the shared tunnel info when PMTU triggers an ICMP reply (Antoine Tenart) [1941753]
+- net: Add netif_rx_any_context() (Josef Oskera) [1939466]
+- bitfield.h: add FIELD_MAX() and field_max() (Ivan Vecera) [1939478]
+- md/raid5: cast chunk_sectors to sector_t value (Nigel Croxon) [1921468]
+- md: Set prev_flush_start and flush_bio in an atomic way (Nigel Croxon) [1921468]
+- md/cluster: fix deadlock when node is doing resync job (Nigel Croxon) [1921468]
+- md/cluster: block reshape with remote resync job (Nigel Croxon) [1921468]
+- md: use current request time as base for ktime comparisons (Nigel Croxon) [1921468]
+- md: add comments in md_flush_request() (Nigel Croxon) [1921468]
+- md: improve variable names in md_flush_request() (Nigel Croxon) [1921468]
+- md/raid10: initialize r10_bio->read_slot before use. (Nigel Croxon) [1921468]
+- md: fix a warning caused by a race between concurrent md_ioctl()s (Nigel Croxon) [1921468]
+- Revert "md: improve variable names in md_flush_request()" (Nigel Croxon) [1921468]
+- Revert "md: Set prev_flush_start and flush_bio in an atomic way" (Nigel Croxon) [1921468]
+- KVM: nSVM: fix running nested guests when npt=0 (Emanuele Giuseppe Esposito) [1799073]
+- fork: fix copy_process(CLONE_PARENT) race with the exiting ->real_parent (Julia Denham) [1908311] {CVE-2020-35508}
+- Revert "redhat: switch secureboot kernel image signing to release keys" (Bruno Meneguele)
+- redhat: switch secureboot kernel image signing to release keys (Jan Stancek)
+- Revert "[md] md/raid5: add a new member of offset into r5dev" (Nigel Croxon) [1936903]
+- Revert "[md] md/raid5: make async_copy_data() to support different page offset" (Nigel Croxon) [1936903]
+- Revert "[crypto] md/raid5: add new xor function to support different page offset" (Nigel Croxon) [1936903]
+- Revert "[md] md/raid5: convert to new xor compution interface" (Nigel Croxon) [1936903]
+- Revert "[crypto] md/raid6: let syndrome computor support different page offset" (Nigel Croxon) [1936903]
+- Revert "[crypto] md/raid6: let async recovery function support different page offset" (Nigel Croxon) [1936903]
+- Revert "[md] md/raid5: let multiple devices of stripe_head share page" (Nigel Croxon) [1936903]
+- Revert "[md] md/raid5: resize stripe_head when reshape array" (Nigel Croxon) [1936903]
+- Revert "[md] md/raid5: reallocate page array after setting new stripe_size" (Nigel Croxon) [1936903]
+- ACPI: PNP: compare the string length in the matching_id() (Mark Langsdorf) [1933702]
+- ceph: add missing break when parsing "nowsync" mount option (Jeff Layton) [1932753]
+- get_maintainer.conf: Update with new location of RHMAINTAINERS (Prarit Bhargava)
+- redhat: make pathspec exclusion compatible with old git versions (Herton R. Krzesinski)
+- redhat/scripts: Update merge-subtrees.sh with new subtree location (Prarit Bhargava)
+- tree: Add RHMAINTAINERS soft link in 8.4 (Prarit Bhargava)
+- tree: remove existing redhat/rhdocs subtree in 8.4 (Prarit Bhargava)
+
+* Tue Mar 30 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-302.1.el8]
+- ntp: Use freezable workqueue for RTC synchronization (Phil Auld) [1793880]
+- ntp: Fix RTC synchronization on 32-bit platforms (Phil Auld) [1793880]
+- ntp: Make the RTC synchronization more reliable (Phil Auld) [1793880]
+- PCI: rpadlpar: Fix potential drc_name corruption in store functions (Gustavo Luiz Duarte) [1938116]
+- selftests: kvm: Add basic Hyper-V clocksources tests (Vitaly Kuznetsov) [1931782]
+- KVM: x86: hyper-v: Don't touch TSC page values when guest opted for re-enlightenment (Vitaly Kuznetsov) [1931782]
+- KVM: x86: hyper-v: Track Hyper-V TSC page status (Vitaly Kuznetsov) [1931782]
+- KVM: x86: hyper-v: Prevent using not-yet-updated TSC page by secondary CPUs (Vitaly Kuznetsov) [1931782]
+- KVM: x86: hyper-v: Limit guest to writing zero to HV_X64_MSR_TSC_EMULATION_STATUS (Vitaly Kuznetsov) [1931782]
+- drm/i915/guc: Update to use firmware v49.0.1 (Dave Airlie) [1935281] {CVE-2020-12362}
+- time: Enable __kernel_timespec for 32-bit vdso build (Waiman Long) [1936282]
+- lib/idr.c: document calling context for IDA APIs mustn't use locks (Chris von Recklinghausen) [1917764]
+- ida: Free allocated bitmap in error path (Chris von Recklinghausen) [1917764]
+- radix tree test suite: Fix compilation (Chris von Recklinghausen) [1917764]
+- vmalloc: convert to XArray (Chris von Recklinghausen) [1917764]
+- mm: pass addr as unsigned long to vb_free (Chris von Recklinghausen) [1917764]
+- radix tree: Remove multiorder support (Chris von Recklinghausen) [1917764]
+- radix tree test: Convert multiorder tests to XArray (Chris von Recklinghausen) [1917764]
+- radix tree tests: Convert item_delete_rcu to XArray (Chris von Recklinghausen) [1917764]
+- radix tree tests: Convert item_kill_tree to XArray (Chris von Recklinghausen) [1917764]
+- radix tree tests: Move item_insert_order (Chris von Recklinghausen) [1917764]
+- radix tree test suite: Remove multiorder benchmarking (Chris von Recklinghausen) [1917764]
+- radix tree test suite: Remove __item_insert (Chris von Recklinghausen) [1917764]
+- radix tree: Remove radix_tree_clear_tags (Chris von Recklinghausen) [1917764]
+- radix tree: Remove split/join code (Chris von Recklinghausen) [1917764]
+- radix tree: Remove radix_tree_update_node_t (Chris von Recklinghausen) [1917764]
+- mm: Convert truncate to XArray (Chris von Recklinghausen) [1917764]
+- copy rh_kabi.h to tools/testing/radix-tree/linux (Chris von Recklinghausen) [1917764]
+
+* Mon Mar 29 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-301.1.el8]
+- tick: Get rid of tick_period (Phil Auld) [1936504]
+- tick/sched: Release seqcount before invoking calc_load_global() (Phil Auld) [1936504]
+- tick/sched: Optimize tick_do_update_jiffies64() further (Phil Auld) [1936504]
+- tick/sched: Reduce seqcount held scope in tick_do_update_jiffies64() (Phil Auld) [1936504]
+- tick/sched: Use tick_next_period for lockless quick check (Phil Auld) [1936504]
+- tick: Document protections for tick related data (Phil Auld) [1936504]
+- tick/broadcast: Serialize access to tick_next_period (Phil Auld) [1936504]
+- timekeeping: Split jiffies seqlock (Phil Auld) [1936504]
+- tick/sched: Annotate lockless access to last_jiffies_update (Phil Auld) [1936504]
+- net, sctp, filter: remap copy_from_user failure error (Hangbin Liu) [1929476] {CVE-2021-20239}
+- tty: serial_core: Set port active bit in uart_port_activate (Artem Savkov) [1915177]
+- cgroup: fix psi monitor for root cgroup (Waiman Long) [1936868]
+- cgroup-v1: add disabled controller check in cgroup1_parse_param() (Waiman Long) [1936868]
+- cgroup: cgroup.{procs,threads} factor out common parts (Waiman Long) [1936868]
+- cpuset: fix typos in comments (Waiman Long) [1936868]
+- kernel: cgroup: Mundane spelling fixes throughout the file (Waiman Long) [1936868]
+- cgroup/cgroup.c: replace 'of->kn->priv' with of_cft() (Waiman Long) [1936868]
+- cgroup: Zero sized write should be no-op (Waiman Long) [1936868]
+- cgroup: remove redundant kernfs_activate in cgroup_setup_root() (Waiman Long) [1936868]
+- cgroup: Use generic ns_common::count (Waiman Long) [1936868]
+- ns: Add a common refcount into ns_common (Waiman Long) [1936868]
+- cgroup: add cpu.stat file to root cgroup (Waiman Long) [1936868]
+- cgroup: Remove stale comments (Waiman Long) [1936868]
+- cgroup: Restructure release_agent_path handling (Waiman Long) [1936868]
+- cgroup: add cgroup_may_write() helper (Waiman Long) [1936868]
+- cgroup: refactor fork helpers (Waiman Long) [1936868]
+- cgroup: add cgroup_get_from_file() helper (Waiman Long) [1936868]
+- cgroup: unify attach permission checking (Waiman Long) [1936868]
+- cpuset: Make cpuset hotplug synchronous (Waiman Long) [1936868]
+- cgroup: Clean up css_set task traversal (Waiman Long) [1936868]
+- cgroup.c: Use built-in RCU list checking (Waiman Long) [1936868]
+- fork: record start_time late (Waiman Long) [1936868]
+- sched/deadline: Reduce rq lock contention in dl_add_task_root_domain() (Phil Auld) [1936501]
+- sched/deadline: Fix sched_dl_global_validate() (Phil Auld) [1936501]
+- sched/deadline: Optimize sched_dl_global_validate() (Phil Auld) [1936501]
+- sched/deadline: Fix a typo in a comment (Phil Auld) [1936501]
+- sched/deadline: Implement fallback mechanism for !fit case (Phil Auld) [1936501]
+- sched/deadline: Make DL capacity-aware (Phil Auld) [1936501]
+- sched/deadline: Improve admission control for asymmetric CPU capacities (Phil Auld) [1936501]
+- sched/deadline: Add dl_bw_capacity() (Phil Auld) [1936501]
+- sched/deadline: Optimize dl_bw_cpus() (Phil Auld) [1936501]
+- sched/deadline: Impose global limits on sched_attr::sched_period (Phil Auld) [1936501]
+- ibmvnic: fix a race between open and reset (Diego Domingos) [1940042]
+- ibmvnic: Set to CLOSED state even on error (Diego Domingos) [1940042]
+- ibmvnic: device remove has higher precedence over reset (Diego Domingos) [1940042]
+- ibmvnic: merge do_change_param_reset into do_reset (Diego Domingos) [1940042]
+- ibmvfc: disable MQ channelization by default (Gustavo Luiz Duarte) [1939359]
+- pNFS/NFSv4: Fix a layout segment leak in pnfs_layout_process() (Steve Dickson) [1926945]
+- scsi: iscsi: Verify lengths on passthrough PDUs (Chris Leech) [1930833] {CVE-2021-27365}
+- scsi: iscsi: Ensure sysfs attributes are limited to PAGE_SIZE (Chris Leech) [1930856] {CVE-2021-27363}
+- scsi: iscsi: Restrict sessions and handles to admin capabilities (Chris Leech) [1930809] {CVE-2021-27364}
+- futex: Handle faults correctly for PI futexes (Waiman Long) [1924635]
+- futex: Simplify fixup_pi_state_owner() (Waiman Long) [1924635]
+- futex: Use pi_state_update_owner() in put_pi_state() (Waiman Long) [1924635]
+- rtmutex: Remove unused argument from rt_mutex_proxy_unlock() (Waiman Long) [1924635]
+- futex: Provide and use pi_state_update_owner() (Waiman Long) [1924635]
+- futex: Replace pointless printk in fixup_owner() (Waiman Long) [1924635]
+- futex: Ensure the correct return value from futex_lock_pi() (Waiman Long) [1924635]
+- futex: Don't enable IRQs unconditionally in put_pi_state() (Waiman Long) [1924635]
+- futex: Fix incorrect should_fail_futex() handling (Waiman Long) [1924635]
+- futex: Consistently use fshared as boolean (Waiman Long) [1924635]
+- futex: Remove needless goto's (Waiman Long) [1924635]
+- futex: Remove put_futex_key() (Waiman Long) [1924635]
+- NFS: Correct size calculation for create reply length (Benjamin Coddington) [1934903]
+- SUNRPC: Set memalloc_nofs_save() for sync tasks (Benjamin Coddington) [1934098]
+- net/mlx5: CT: Add support for matching on ct_state reply flag (Alaa Hleihel) [1919651]
+- net/mlx5e: CT: manage the lifetime of the ct entry object (Alaa Hleihel) [1919651]
+- net/mlx5e: CT: Use per flow counter when CT flow accounting is enabled (Alaa Hleihel) [1919651]
+- net/mlx5e: Fix a use after free on error in mlx5_tc_ct_shared_counter_get() (Alaa Hleihel) [1919651]
+- net/mlx5e: CT: Use the same counter for both directions (Alaa Hleihel) [1919651]
+- ethtool: fix the check logic of at least one channel for RX/TX (Ivan Vecera) [1907406]
+
+* Wed Mar 24 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-300.1.el8]
+- [scsi] scsi: qedi: Correct max length of CHAP secret (Nilesh Javali) [1909180]
+- redhat: use tags from git notes for zstream to generate changelog (Frantisek Hrbata)
+- redhat: add CI file for kernel-private (Bruno Meneguele)
+- CI: Drop unused variable (Bruno Meneguele)
+- CI: Enable RT verification (Bruno Meneguele)
+- KVM: SVM: Clear the CR4 register on reset (Vitaly Kuznetsov) [1920788]
+- net: flow_offload: Add original direction flag to ct_metadata (Marcelo Ricardo Leitner) [1921946]
+- net/sched: cls_flower: Add match on the ct_state reply flag (Marcelo Ricardo Leitner) [1921946]
+- net/sched: cls_flower add CT_FLAGS_INVALID flag support (Marcelo Ricardo Leitner) [1921946]
+- net/sched: cls_flower: Reject invalid ct_state flags rules (Marcelo Ricardo Leitner) [1921946]
+- netlink: add mask validation (Marcelo Ricardo Leitner) [1921946]
+- netlink: create helpers for checking type is an int (Marcelo Ricardo Leitner) [1921946]
+- netlink: policy: correct validation type check (Marcelo Ricardo Leitner) [1921946]
+- netlink: make NLA_BINARY validation more flexible (Marcelo Ricardo Leitner) [1921946]
+
+* Mon Mar 22 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-299.1.el8]
+- md: Set prev_flush_start and flush_bio in an atomic way (Xiao Ni) [1901598]
+- md: improve variable names in md_flush_request() (Xiao Ni) [1901598]
+- hpsa: fix regression issue for old controllers (Joseph Szczypek) [1925711]
+- scsi: hpsa: Correct dev cmds outstanding for retried cmds (Joseph Szczypek) [1925711]
+- vt: Disable KD_FONT_OP_COPY (Dave Airlie) [1903937] {CVE-2020-28974}
+- drm/i915/rkl: Remove require_force_probe protection (Lyude Paul) [1937558]
+- drm/i915/tgl/psr: Disable PSR on Tigerlake for now (Lyude Paul) [1924702]
+- dm raid: fix discard limits for raid0 and raid10 (Mike Snitzer) [1934274]
+- dm: fix __send_changing_extent_only to avoid duplicate dm_target_offset() (Mike Snitzer) [1934274]
+- mm/hugetlb.c: fix unnecessary address expansion of pmd sharing (Waiman Long) [1934212]
+- mm: memcontrol: fix slub memory accounting (Waiman Long) [1934212]
+- mm: memcontrol: fix swap undercounting in cgroup2 (Waiman Long) [1934212]
+- mm: memcontrol: fix NR_ANON_THPS accounting in charge moving (Waiman Long) [1934212]
+- mm, slub: better heuristic for number of cpus when calculating slab order (Waiman Long) [1934212]
+- Revert "mm: memcontrol: avoid workload stalls when lowering memory.high" (Waiman Long) [1934212]
+- selftests/bpf: Set gopt opt_class to 0 if get tunnel opt failed (Hangbin Liu) [1931732]
+- selftests/bpf: No need to drop the packet when there is no geneve opt (Hangbin Liu) [1931732]
+
+* Tue Mar 16 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-298.1.el8]
+- drm/i915/gen11+: Only load DRAM information from pcode (Lyude Paul) [1934537]
+- drm/i915/dg1: Wait for pcode/uncore handshake at startup (Lyude Paul) [1934537]
+- powercap/intel_rapl: add support for TigerLake Desktop (David Arcari) [1932457]
+- powerpc/perf: Fix handling of privilege level checks in perf interrupt context (Gustavo Luiz Duarte) [1918411]
+- NFSv4.2: fix error return on memory allocation failure (Scott Mayhew) [1917689]
+- NFSv4.2: improve page handling for GETXATTR (Scott Mayhew) [1917689]
+- NFSv4.2: Fix up the get/listxattr calls to rpc_prepare_reply_pages() (Scott Mayhew) [1917689]
+- NFS: Fix rpcrdma_inline_fixup() crash with new LISTXATTRS operation (Scott Mayhew) [1917689]
+- SUNRPC: Fix up xdr_set_page() (Benjamin Coddington) [1917689]
+- NFSv4: Fix open coded xdr_stream_remaining() (Benjamin Coddington) [1917689]
+- SUNRPC: Clean up the handling of page padding in rpc_prepare_reply_pages() (Benjamin Coddington) [1917689]
+- SUNRPC: Fix up xdr_read_pages() to take arbitrary object lengths (Benjamin Coddington) [1917689]
+- SUNRPC: Clean up helpers xdr_set_iov() and xdr_set_page_base() (Benjamin Coddington) [1917689]
+- SUNRPC: Split out a function for setting current page (Benjamin Coddington) [1917689]
+- SUNRPC: Fix up typo in xdr_init_decode() (Benjamin Coddington) [1917689]
+- NFSv4: Fix the alignment of page data in the getdeviceinfo reply (Benjamin Coddington) [1917689]
+- net: fix pos incrementment in ipv6_route_seq_next (Lorenzo Bianconi) [1926608]
+- ipv6_route_seq_next should increase position index (Lorenzo Bianconi) [1926608]
+- bpf: Clear subreg_def for global function return values (Yauheni Kaliuta) [1934062]
+- igc: Fix returning wrong statistics (Corinna Vinschen) [1910873]
+
+* Fri Mar 12 2021 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-297.1.el8]
+- KVM: nSVM: prepare guest save area while is_guest_mode is true (Vitaly Kuznetsov) [1860223]
+- redhat: add CI file for kernel-private (Bruno Meneguele)
+- CI: Drop unused variable (Veronika Kabatova)
+- CI: Enable RT verification (Veronika Kabatova)
+- redhat: use tags from git notes for zstream to generate changelog (Frantisek Hrbata)
+- redhat: open the RHEL-8.5 development (Bruno Meneguele) [1930504]
+
+* Thu Mar 11 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-297.el8]
+- KVM: SVM: Make symbol 'svm_gp_erratum_intercept' static (Paolo Bonzini) [1769283]
+- KVM: SVM: Fix #GP handling for doubly-nested virtualization (Paolo Bonzini) [1769283]
+- KVM: SVM: Add support for SVM instruction address check change (Paolo Bonzini) [1769283]
+- KVM: SVM: Add emulation support for #GP triggered by SVM instructions (Paolo Bonzini) [1769283]
+- KVM: x86: Factor out x86 instruction emulation with decoding (Paolo Bonzini) [1769283]
+- gfs2: In gfs2_ail1_start_one unplug the IO when needed (Bob Peterson) [1648446]
+- gfs2: Free rd_bits later in gfs2_clear-rgrpd to fix use-after-free (Bob Peterson) [1648446]
+- gfs2: Only access gl_delete for iopen glocks (Bob Peterson) [1648446]
+- gfs2: Fix case in which ail writes are done to jdata holes (Bob Peterson) [1648446]
+- gfs2: simplify gfs2_block_map (Bob Peterson) [1648446]
+- gfs2: Only set PageChecked if we have a transaction (Bob Peterson) [1648446]
+- gfs2: don't lock sd_ail_lock in gfs2_releasepage (Bob Peterson) [1648446]
+- gfs2: make gfs2_ail1_empty_one return the count of active items (Bob Peterson) [1648446]
+- gfs2: Wipe jdata and ail1 in gfs2_journal_wipe, formerly gfs2_meta_wipe (Bob Peterson) [1648446]
+- gfs2: enhance log_blocks trace point to show log blocks free (Bob Peterson) [1648446]
+- gfs2: rename gfs2_write_full_page to gfs2_write_jdata_page, remove parm (Bob Peterson) [1648446]
+- PM: hibernate: flush swap writer after marking (Lenny Szubowicz) [1898677]
+- cpufreq: Avoid cpufreq_suspend() deadlock on system shutdown (Lenny Szubowicz) [1898677]
+- PM / hibernate: memory_bm_find_bit(): Tighten node optimisation (Lenny Szubowicz) [1898677]
+- bpf, devmap: Use GFP_KERNEL for xdp bulk queue allocation (Jiri Benc) [1882215]
+- ice, xsk: clear the status bits for the next_to_use descriptor (Jiri Benc) [1906820]
+- net/mlx4_en: Handle TX error CQE (Alaa Hleihel) [1925690]
+- net/mlx4_en: Avoid scheduling restart task if it is already running (Alaa Hleihel) [1925690]
+- blk-mq: test QUEUE_FLAG_HCTX_ACTIVE for sbitmap_shared in hctx_may_queue (Ming Lei) [1922013]
+- blk-mq: Improve performance of non-mq IO schedulers with multiple HW queues (Ming Lei) [1922013]
+- Revert "blk-mq, elevator: Count requests per hctx to improve performance" (Ming Lei) [1922013]
+- bpftool: Disable CAP_BPF check for feature command (Jiri Olsa) [1921542]
+- RDMA/siw: Fix calculation of tx_valid_cpus size (Kamal Heib) [1919502]
+- net/mlx5e: Disable performance optimization for IPv4/IPv6 ethertype (Alaa Hleihel) [1928671 1919807]
+- IB/mlx5: Return appropriate error code instead of ENOMEM (Alaa Hleihel) [1928671]
+- net/mlx5: Disable devlink reload for lag devices (Alaa Hleihel) [1928671 1929166]
+- net/mlx5: Disable devlink reload for multi port slave device (Alaa Hleihel) [1928671 1929166]
+- net/mlx5: Disallow RoCE on lag device (Alaa Hleihel) [1928671 1929166]
+- net/mlx5: Disallow RoCE on multi port slave device (Alaa Hleihel) [1928671 1929166]
+- net/mlx5: Fix health error state handling (Alaa Hleihel) [1928671]
+- net/mlx5e: Change interrupt moderation channel params also when channels are closed (Alaa Hleihel) [1928671]
+- net/mlx5e: Don't change interrupt moderation params when DIM is enabled (Alaa Hleihel) [1928671]
+- net/mlx5e: E-switch, Fix rate calculation for overflow (Alaa Hleihel) [1928671]
+- net/mlx5e: Release skb in case of failure in tc update skb (Alaa Hleihel) [1928671 1929119]
+- net/mlx5e: Check tunnel offload is required before setting SWP (Alaa Hleihel) [1928671 1925439]
+- net/mlx5e: kTLS, Use refcounts to free kTLS RX priv context (Alaa Hleihel) [1928671 1928706]
+- net/mlx5e: Fix CQ params of ICOSQ and async ICOSQ (Alaa Hleihel) [1928671 1928706]
+- net/mlx5e: Replace synchronize_rcu with synchronize_net (Alaa Hleihel) [1928671 1913616]
+- net/mlx5e: Enable XDP for Connect-X IPsec capable devices (Alaa Hleihel) [1928671 1856795]
+- net/mlx5e: Enable striding RQ for Connect-X IPsec capable devices (Alaa Hleihel) [1928671 1926120]
+- fix regression in "epoll: Keep a reference on files added to the check list" (Carlos Maiolino) [1920776] {CVE-2020-0466}
+- do_epoll_ctl(): clean the failure exits up a bit (Carlos Maiolino) [1920776] {CVE-2020-0466}
+- epoll: Keep a reference on files added to the check list (Carlos Maiolino) [1920776] {CVE-2020-0466}
+
+* Tue Mar 09 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-296.el8]
+- perf/x86/intel/uncore: With > 8 nodes, get pci bus die id from NUMA info (Prarit Bhargava) [1766743]
+- perf/x86/intel/uncore: Store the logical die id instead of the physical die id. (Prarit Bhargava) [1766743]
+- mm: fix page reference leak in soft_offline_page() (Aristeu Rozanski) [1768372]
+- mm,hwpoison: try to narrow window race for free pages (Aristeu Rozanski) [1768372]
+- mm,hwpoison: double-check page count in __get_any_page() (Aristeu Rozanski) [1768372]
+- mm,hwpoison: introduce MF_MSG_UNSPLIT_THP (Aristeu Rozanski) [1768372]
+- mm,hwpoison: return 0 if the page is already poisoned in soft-offline (Aristeu Rozanski) [1768372]
+- mm,hwpoison: refactor soft_offline_huge_page and __soft_offline_page (Aristeu Rozanski) [1768372]
+- mm,hwpoison: rework soft offline for in-use pages (Aristeu Rozanski) [1768372]
+- mm,hwpoison: rework soft offline for free pages (Aristeu Rozanski) [1768372]
+- mm,hwpoison: unify THP handling for hard and soft offline (Aristeu Rozanski) [1768372]
+- mm,hwpoison: kill put_hwpoison_page (Aristeu Rozanski) [1768372]
+- mm,hwpoison: refactor madvise_inject_error (Aristeu Rozanski) [1768372]
+- mm,hwpoison: unexport get_hwpoison_page and make it static (Aristeu Rozanski) [1768372]
+- mm,hwpoison-inject: don't pin for hwpoison_filter (Aristeu Rozanski) [1768372]
+- mm, hwpoison: remove recalculating hpage (Aristeu Rozanski) [1768372]
+- mm,hwpoison: cleanup unused PageHuge() check (Aristeu Rozanski) [1768372]
+- mm/madvise.c: replace with page_size() in madvise_inject_error() (Aristeu Rozanski) [1768372]
+- mm, soft-offline: convert parameter to pfn (Aristeu Rozanski) [1768372]
+- tick/nohz: Revert "Narrow down noise while setting current task's tick dependency" (Waiman Long) [1931004]
+- kvm: Add kvm_stat.service file and kvm_stat logrotate config to the tools (Thomas Huth) [1919930]
+- igc: fix link speed advertising (Corinna Vinschen) [1769701]
+- [crypto] crypto: qat - add capability detection logic in qat_4xxx (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add AES-XTS support for QAT GEN4 devices (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add AES-CTR support for QAT GEN4 devices (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - fix excluded_middle.cocci warnings (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add qat_4xxx driver (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add hook to initialize vector routing table (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - target fw images to specific AEs (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add gen4 firmware loader (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add support for broadcasting mode (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add support for shared ustore (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - allow to target specific AEs (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add FCU CSRs to chip info (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add CSS3K support (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - use ae_mask (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add check for null pointer (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add misc control CSR to chip info (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add wake up event to chip info (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add clock enable CSR to chip info (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add reset CSR and mask to chip info (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add local memory size to chip info (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add support for lm2 and lm3 (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add next neighbor to chip_info (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - replace check based on DID (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - introduce chip info structure (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - refactor long expressions (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - refactor qat_uclo_set_ae_mode() (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - move defines to header files (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove global CSRs helpers (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - refactor AE start (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - change micro word data mask (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - change type for ctx_mask (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add support for relative FW ucode loading (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - rename qat_uclo_del_uof_obj() (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - introduce additional parenthesis (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove unnecessary parenthesis (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - fix error message (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - fix CSR access (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - fix status check in qat_hal_put_rel_rd_xfer() (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - support for mof format in fw loader (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - replace pci with PCI in comments (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove cast for mailbox CSR (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove unneeded semicolon (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - extend ae_mask (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - allow for instances in different banks (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - refactor qat_crypto_dev_config() (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - refactor qat_crypto_create_instances() (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - change return value in adf_cfg_key_val_get() (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - change return value in adf_cfg_add_key_value_param() (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove unnecessary void* casts (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - call functions in adf_sriov if available (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove hardcoded bank irq clear flag mask (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - abstract writes to arbiter enable (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - use BIT_ULL() - 1 pattern for masks (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - replace constant masks with GENMASK (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - abstract build ring base (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - enable ring after pair is programmed (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - register crypto instances based on capability (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add support for capability detection (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - abstract arbiter access (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove unused macros in arbiter module (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove writes into WQCFG (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - update constants table (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - use admin mask to send fw constants (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - change admin sequence (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - rename ME in AE (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - add packed to init admin structures (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - abstract admin interface (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - relocate GEN2 CSR access code (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - split transport CSR access logic (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - fix configuration of iov threads (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - num_rings_per_bank is device dependent (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - mask device capabilities with soft straps (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - update IV in software (Vladis Dronov) [1833004]
+- [crypto] crypto: qat - remove unused function (Vladis Dronov) [1833004]
+
+* Fri Mar 05 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-295.el8]
+- mptcp: send ack for every add_addr (Davide Caratti) [1929280]
+- Revert "[net] tcp: change pingpong threshold to 3" (Davide Caratti) [1929280]
+- powerpc/pseries: Don't enforce MSI affinity with kdump (Greg Kurz) [1919427]
+- rtc: disallow update interrupts when time is invalid (Waiman Long) [1918288]
+- rtc: disable uie before setting time and enable after (Waiman Long) [1918288]
+- rtc: don't reference bogus function pointer in kdoc (Waiman Long) [1918288]
+- KVM: x86/mmu: Expand collapsible SPTE zap for TDP MMU to ZONE_DEVICE and HugeTLB pages (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Allow parallel page faults for the TDP MMU (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Mark SPTEs in disconnected pages as removed (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Flush TLBs after zap in TDP MMU PF handler (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Use atomic ops to set SPTEs in TDP MMU map (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Factor out functions to add/remove TDP MMU pages (Paolo Bonzini) [1897366]
+- i915: kvmgt: the KVM mmu_lock is now an rwlock (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Use an rwlock for the x86 MMU (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Protect TDP MMU page table memory with RCU (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Clear dirtied pages mask bit before early break (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Skip no-op changes in TDP MMU functions (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Yield in TDU MMU iter even if no SPTES changed (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Ensure forward progress when yielding in TDP MMU iter (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Rename goal_gfn to next_last_level_gfn (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Merge flush and non-flush tdp_mmu_iter_cond_resched (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Fix braces in kvm_recover_nx_lpages (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Factor out handling of removed page tables (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Don't redundantly clear TDP MMU pt memory (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Add lockdep when setting a TDP MMU SPTE (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: Add comment on __tdp_mmu_set_spte (Paolo Bonzini) [1897366]
+- KVM: x86/mmu: change TDP MMU yield function returns to match cond_resched (Paolo Bonzini) [1897366]
+- locking/arch: Move qrwlock.h include after qspinlock.h (Paolo Bonzini) [1897366]
+- sched: Add cond_resched_rwlock (Paolo Bonzini) [1897366]
+- sched: Add needbreak for rwlocks (Paolo Bonzini) [1897366]
+- locking/rwlocks: Add contention detection for rwlocks (Paolo Bonzini) [1897366]
+- RDMA/srp: Fix support for unpopulated and unbalanced NUMA nodes (Kamal Heib) [1919395]
+- net/vmw_vsock: fix NULL pointer dereference (Jon Maloy) [1925600] {CVE-2021-26708}
+- net/vmw_vsock: improve locking in vsock_connect_timeout() (Jon Maloy) [1925600] {CVE-2021-26708}
+- vsock: fix locking in vsock_shutdown() (Jon Maloy) [1925600] {CVE-2021-26708}
+- vsock: fix the race conditions in multi-transport support (Jon Maloy) [1925600] {CVE-2021-26708}
+- ahci: Add missing Intel Emmitsburg PCH RAID PCI IDs (David Arcari) [1928789]
+- KVM: x86: Allow guests to see MSR_IA32_TSX_CTRL even if tsx=off (Paolo Bonzini) [1912448]
+- [sound] ALSA: hda/via: Fix runtime PM for Clevo W35xSS (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machines (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Enable mute and micmute LED on HP EliteBook 850 G7 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Add two "Intel Reference board" SSID in the ALC256 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Add mute LED quirk for more HP laptops (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Modify Dell platform name (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Fix speaker volume control on Lenovo C940 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: ALSA/hda: apply jack fixup for the Acer Veriton N4640G/N6640G/N2510G (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Apply jack fixup for Quanta NL3 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Add quirk for MSI-GP73 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Supported Dell fixed type headset (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Remove dummy lineout on Acer TravelMate P648/P658 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Add supported for more Lenovo ALC285 Headset Button (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Enable headset mic of ASUS Q524UQK with ALC255 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Enable headset mic of ASUS X430UN with ALC256 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: make bass spk volume adjustable on a yoga laptop (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/hdmi: Fix incorrect mutex unlock in silent_stream_disable() (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/hdmi: packet buffer index must be set before reading value (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/hdmi: always print pin NIDs as hexadecimal (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/hdmi: fix silent stream for first playback to DP (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/conexant: add a new hda codec CX11970 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda: Fix regressions on clear and reconfig sysfs (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/proc - print DP-MST connections (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda - Fix the return value if cb func is already registered (Jaroslav Kysela) [1916102]
+- [sound] ALSA: mixart: Fix mutex deadlock (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Add mute LED quirk to yet another HP x360 model (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Fix bass speaker DAC assignment on Asus Zephyrus G14 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Add new codec supported for ALC897 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Enable headset of ASUS UX482EG & B9400CEA with ALC294 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Fixed Dell AIO wrong sound tone (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - HP Headset Mic can't detect after boot (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Add supported mute Led for HP (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek: Add some Clove SSID in the ALC293(ALC1220) (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Add supported for Lenovo ThinkPad Headset Button (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Enable headphone for ASUS TM420 (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/realtek - Fixed HP headset Mic can't be detected (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda: Add Alderlake-S PCI ID and HDMI codec vid (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda/generic: Add option to enforce preferred_dacs pairs (Jaroslav Kysela) [1916102]
+- [sound] ALSA: hda: prevent undefined shift in snd_hdac_ext_bus_get_link() (Jaroslav Kysela) [1916102]
+- [sound] ALSA: seq: oss: Avoid mutex lock for a long-time ioctl (Jaroslav Kysela) [1916102]
+- [fs] gfs2: Recursive gfs2_quota_hold in gfs2_iomap_end (Andreas Grunbacher) [1926852]
+- [net] netfilter: nf_tables: coalesce multiple notifications into one skbuff (Phil Sutter) [1855207]
+- [drm] drm/i915/rkl: new rkl ddc map for different PCH (Lyude Paul) [1910761]
+- [drm] drm/nouveau: fix dma syncing warning with debugging on (Lyude Paul) [1915548]
+- [drm] drm/i915: Update TGL and RKL HuC firmware versions (Lyude Paul) [1924209]
+- [drm] drm/i915/tgl, rkl: Make Wa_1606700617/22010271021 permanent (Lyude Paul) [1924209]
+- [drm] drm/i915: Update gen12 forcewake table (Lyude Paul) [1924209]
+- [drm] drm/i915: Rename FORCEWAKE_BLITTER to FORCEWAKE_GT (Lyude Paul) [1924209]
+- [drm] drm/i915/display/fbc: Implement WA 22010751166 (Lyude Paul) [1924209]
+- [drm] drm/i915: Tweaked Wa_14010685332 for PCHs used on gen11 platforms (Lyude Paul) [1924209]
+- [drm] drm/i915: Reorder hpd init vs. display resume (Lyude Paul) [1921868]
+- [drm] drm/i915/dp: Don't use DPCD backlights that need PWM enable/disable (Lyude Paul) [1885406]
+- [drm] drm/dp: Revert "drm/dp: Introduce EDID-based quirks" (Lyude Paul) [1885406]
+- [drm] drm/i915/dp: Allow forcing specific interfaces through enable_dpcd_backlight (Lyude Paul) [1885406]
+- [drm] drm/i915/dp: Enable Intel's HDR backlight interface (only SDR for now) (Lyude Paul) [1885406]
+- [drm] drm/i915: Keep track of pwm-related backlight hooks separately (Lyude Paul) [1885406]
+- [drm] drm/i915: Pass port to intel_panel_bl_funcs.get() (Lyude Paul) [1885406]
+- [drm] drm/i915/dp: Add register definitions for Intel HDR backlight interface (Lyude Paul) [1885406]
+- [drm] drm/i915/dp: Rename eDP VESA backlight interface functions (Lyude Paul) [1885406]
+- [drm] drm/i915: Pass down brightness values to enable/disable backlight callbacks (Lyude Paul) [1885406]
+- [drm] drm/i915: Rename pwm_* backlight callbacks to ext_pwm_* (Lyude Paul) [1885406]
+- [drm] drm/i915/dp: Program source OUI on eDP panels (Lyude Paul) [1885406]
+- [drm] drm/i915: refactor panel backlight control functions. (v2) (Lyude Paul) [1885406]
+- [drm] drm/i915/backlight: fix CPU mode backlight takeover on LPT (Lyude Paul) [1885406]
+- [drm] drm/i915/dpcd_bl: uncheck PWM_PIN_CAP when detect eDP backlight capabilities (Lyude Paul) [1885406]
+- [drm] drm/i915: panel: Add get_vbt_pwm_freq() helper (Lyude Paul) [1885406]
+- [drm] drm/i915/dp: Tweak initial dpcd backlight.enabled value (Lyude Paul) [1885406]
+- [drm] kms: handle mDP connectors (Lyude Paul) [1876992]
+- [drm] drm/i915/tgl: Fix Combo PHY DPLL fractional divider for 38.4MHz ref clock (Lyude Paul) [1876992]
+- [drm] drm/i915/rkl: Add new cdclk table (Lyude Paul) [1876992]
+- [drm] drm/i915/rkl: Handle HTI (Lyude Paul) [1876992]
+- [drm] drm/i915/rkl: Add DPLL4 support (Lyude Paul) [1876992]
+- [drm] drm/i915/rkl: Add initial workarounds (Lyude Paul) [1876992]
+- [drm] drm/i915/rkl: Handle new DPCLKA_CFGCR0 layout (Lyude Paul) [1876992]
+- [drm] drm/i915: Update TGL and RKL DMC firmware versions (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Program mocs:63 for cache eviction on gen9 (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Limit frequency drop to RPe on parking (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Retain default context state across shrinking (Lyude Paul) [1876992]
+- [drm] drm/amdgpu/vcn3.0: remove old DPG workaround (Lyude Paul) [1876992]
+- [drm] drm/amdgpu/vcn3.0: stall DPG when WPTR/RPTR reset (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Fixup tgl mocs for PTE tracking (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: add rlc iram and dram firmware support (Lyude Paul) [1876992]
+- [drm] drm/nouveau: fix relocations applying logic and a double-free (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Avoid HDCP initialization in devices without output (Lyude Paul) [1876992]
+- [drm] drm/amd/amdgpu: fix null pointer in runtime pm (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: update golden setting for sienna_cichlid (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: fix a page fault (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: fix SI UVD firmware validate resume fail (Lyude Paul) [1876992]
+- [drm] drm/i915/tgl: Fix Media power gate sequence (Lyude Paul) [1876992]
+- [drm] drm/i915: Handle max_bpc==16 (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Add missing pflip irq for dcn2.0 (Lyude Paul) [1876992]
+- [drm] drm/gma500: Fix out-of-bounds access to struct drm_device.vblank (Lyude Paul) [1876992]
+- [drm] drm/i915: Correctly set SFC capability for video engines (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Add missing pflip irq (Lyude Paul) [1876992]
+- [drm] drm/amd/pm: do not use ixFEATURE_STATUS for checking smc running (Lyude Paul) [1876992]
+- [drm] drm/amd/pm: perform SMC reset on suspend/hibernation (Lyude Paul) [1876992]
+- [drm] drm/amd/pm: correct the baco reset sequence for CI ASICs (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: perform srbm soft reset always on SDMA resume (Lyude Paul) [1876992]
+- [drm] drm/i915/gem: Flush coherency domains on first set-domain-ioctl (Lyude Paul) [1876992]
+- [drm] drm/i915: Hold onto an explicit ref to i915_vma_work.pinned (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Use the local HWSP offset during submission (Lyude Paul) [1876992]
+- [drm] drm/i915: Fix encoder lookup during PSR atomic check (Lyude Paul) [1876992]
+- [drm] drm/nouveau/gem: fix "refcount_t: underflow; use-after-free" (Lyude Paul) [1876992]
+- [drm] drm/nouveau/nouveau: fix the start/end range for migration (Lyude Paul) [1876992]
+- [drm] drm/amd/display: adding ddc_gpio_vga_reg_list to ddc reg def'ns (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Fixed panic during seamless boot (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: add DID for navi10 blockchain SKU (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: disable DCN and VCN for navi10 blockchain SKU(v3) (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: resolved ASD loading issue on sienna (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: update golden setting for sienna_cichlid (Lyude Paul) [1876992]
+- [drm] drm/nouveau/device: fix changing endianess code to work on older GPUs (Lyude Paul) [1876992]
+- [drm] drm/nouveau/kms/nv50-: Program notifier offset before requesting disp caps (Lyude Paul) [1876992]
+- [drm] drm/i915: Restore ILK-M RPS support (Lyude Paul) [1876992]
+- [drm] drm/i915: Reject 90/270 degree rotated initial fbs (Lyude Paul) [1876992]
+- [drm] drm/i915: Use the active reference on the vma while capturing (Lyude Paul) [1876992]
+- [drm] drm/i915: Mark ininitial fb obj as WT on eLLC machines to avoid rcu lockup during fbdev init (Lyude Paul) [1876992]
+- [drm] drm/i915: Exclude low pages (128KiB) of stolen from use (Lyude Paul) [1876992]
+- [drm] drm/i915: Drop runtime-pm assert from vgpu io accessors (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Delay execlist processing for tgl (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Undo forced context restores after trivial preemptions (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Initialize reserved and unspecified MOCS indices (Lyude Paul) [1876992]
+- [drm] drm/i915: Fix TGL DKL PHY DP vswing handling (Lyude Paul) [1876992]
+- [drm] drm/i915: Avoid mixing integer types during batch copies (Lyude Paul) [1876992]
+- [drm] drm/i915: Cancel outstanding work after disabling heartbeats on an engine (Lyude Paul) [1876992]
+- [drm] drm/i915: Break up error capture compression loops with cond_resched() (Lyude Paul) [1876992]
+- [drm] drm/i915/gt: Always send a pulse down the engine after disabling heartbeat (Lyude Paul) [1876992]
+- [drm] drm/i915/gem: Always test execution status on closing the context (Lyude Paul) [1876992]
+- [drm] drm/i915/gem: Prevent using pgprot_writecombine() if PAT is not supported (Lyude Paul) [1876992]
+- [drm] drm/i915/gem: Avoid implicit vmap for highmem on x86-32 (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: correct the cu and rb info for sienna cichlid (Lyude Paul) [1876992]
+- [drm] drm/amd/psp: Fix sysfs: cannot create duplicate filename (Lyude Paul) [1876992]
+- [drm] drm/amd/swsmu: add missing feature map for sienna_cichlid (Lyude Paul) [1876992]
+- [drm] drm/amd/pm: fix pp_dpm_fclk (Lyude Paul) [1876992]
+- [drm] drm/amd/pm: increase mclk switch threshold to 200 us (Lyude Paul) [1876992]
+- [drm] drm/amdgpu/swsmu: drop smu i2c bus on navi1x (Lyude Paul) [1876992]
+- [drm] drm/ttm: fix eviction valuable range check (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Fix kernel panic by dal_gpio_open() error (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Don't invoke kgdb_breakpoint() unconditionally (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: increase the reserved VM size to 2MB (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: add function to program pbb mode for sienna cichlid (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Avoid MST manager resource leak (Lyude Paul) [1876992]
+- [drm] drm/amdkfd: Use same SQ prefetch setting as amdgpu (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: correct the gpu reset handling for job != NULL case (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: update golden setting for sienna_cichlid (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: vcn and jpeg ring synchronization (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Increase timeout for DP Disable (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Fix incorrect backlight register offset for DCN (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: don't map BO in reserved region (Lyude Paul) [1876992]
+- [drm] drm/shme-helpers: Fix dma_buf_mmap forwarding bug (Lyude Paul) [1876992]
+- [drm] drm/i915: Force VT'd workarounds when running as a guest OS (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Avoid set zero in the requested clk (Lyude Paul) [1876992]
+- [drm] drm/amd/display: HDMI remote sink need mode validation for Linux (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: No sysfs, not an error condition (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Check clock table return (Lyude Paul) [1876992]
+- [drm] drm/bridge/synopsys: dsi: add support for non-continuous HS clock (Lyude Paul) [1876992]
+- [drm] drm/vkms: avoid warning in vkms_get_vblank_timestamp (Lyude Paul) [1876992]
+- [drm] drm/bridge_connector: Set default status connected for eDP connectors (Lyude Paul) [1876992]
+- [drm] drm/scheduler: Scheduler priority fixes (v2) (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: restore ras flags when user resets eeprom(v2) (Lyude Paul) [1876992]
+- [drm] drm/i915/gem: Serialise debugfs i915_gem_objects with ctx->mutex (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Disconnect pipe separetely when disable pipe split (Lyude Paul) [1876992]
+- [drm] drm/hisilicon: Code refactoring for hibmc_drv_de (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Screen corruption on dual displays (DP+USB-C) (Lyude Paul) [1876992]
+- [drm] drm: fix double free for gbo in drm_gem_vram_init and drm_gem_vram_create (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: Fix invalid number of character '{' in amdgpu_acpi_init (Lyude Paul) [1876992]
+- [drm] drm/amdgpu: fix max_entries calculation v4 (Lyude Paul) [1876992]
+- [drm] drm/crc-debugfs: Fix memleak in crc_control_write (Lyude Paul) [1876992]
+- [drm] drm/gma500: fix error check (Lyude Paul) [1876992]
+- [drm] drm/amd/display: fix potential integer overflow when shifting 32 bit variable bl_pwm (Lyude Paul) [1876992]
+- [drm] drm/vkms: add missing platform_device_unregister() in vkms_init() (Lyude Paul) [1876992]
+- [drm] drm/vgem: add missing platform_device_unregister() in vgem_init() (Lyude Paul) [1876992]
+- [drm] drm/amd/display: Fix wrong return value in dm_update_plane_state() (Lyude Paul) [1876992]
+- [drm] drm/vkms: fix xrgb on compute crc (Lyude Paul) [1876992]
+- [iommu] iommu/amd: Set iommu->int_enabled consistently when interrupts are set up (Vitaly Kuznetsov) [1915038]
+- [iommu] iommu/amd: Fix IOMMU interrupt generation in X2APIC mode (Vitaly Kuznetsov) [1915038]
+- [iommu] iommu/amd: Fix union of bitfields in intcapxt support (Vitaly Kuznetsov) [1915038]
+- [iommu] iommu/amd: Fix kerneldoc comments (Vitaly Kuznetsov) [1915038]
+- [x86] x86/irq: Prepare consolidation of irq_alloc_info (Vitaly Kuznetsov) [1915038]
+- [iommu] iommu/amd: Use msi_msg shadow structs (Vitaly Kuznetsov) [1915038]
+- [iommu] x86_irq_Rename_X86_IRQ_ALLOC_TYPE_MSI_to_reflect_PCI_dependency (Vitaly Kuznetsov) [1915038]
+- [netdrv] Revert "e1000e: disable s0ix entry and exit flows for ME systems" (Ken Cox) [1872412]
+- [netdrv] e1000e: fix S0ix flow to allow S0i3.2 subset entry (Ken Cox) [1872412]
+
+* Wed Mar 03 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-294.el8]
+- dm table: fix DAX iterate_devices based device capability checks (Mike Snitzer) [1905679]
+- dm table: fix various whitespace issues with recent DAX code (Mike Snitzer) [1905679]
+- dm table: fix dax_dev NULL dereference in device_synchronous() (Mike Snitzer) [1905679]
+- dm: enable synchronous dax (Mike Snitzer) [1905679]
+- dm table: fix iterate_devices based device capability checks (Mike Snitzer) [1905679]
+- dm: remove special-casing of bio-based immutable singleton target on NVMe (Mike Snitzer) [1905679]
+- [s390] s390/dasd: Fix inconsistent kobject removal (Philipp Rudo) [1928106]
+- [powerpc] powerpc/perf/hv-24x7: Dont create sysfs event files for dummy events (Steve Best) [1927730]
+- [powerpc] powerpc/pseries/dlpar: handle ibm, configure-connector delay status (Steve Best) [1927371]
+- [x86] x86/kvm: Increase KVM_MAX_VCPUS to 2048 (Eduardo Habkost) [1840923]
+
+* Mon Mar 01 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-293.el8]
+- Unbreak mount_capable() (Scott Mayhew) [1903983]
+
+* Thu Feb 25 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-292.el8]
+- [powerpc] powerpc: fix wrong backport on Kernel lockdown for power (Diego Domingos) [1928778]
+- [powerpc] powerpc/kexec_file: fix FDT size estimation for kdump kernel (Steve Best) [1928105]
+- [kernel] sched/features: Distinguish between NORMAL and DEADLINE hrtick (Juri Lelli) [1912118]
+- [kernel] sched/features: Fix hrtick reprogramming (Juri Lelli) [1912118]
+- [scsi] scsi: lpfc: Fix EEH encountering oops with NVMe traffic (Dick Kennedy) [1854776]
+- [scsi] scsi: lpfc: Prevent duplicate requests to unregister with cpuhp framework (Dick Kennedy) [1894960]
+- [target] scsi: target: iscsi: Fix cmd abort fabric stop race (Maurizio Lombardi) [1908215]
+
+* Sun Feb 21 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-291.el8]
+- [net] netfilter: nft_dynset: add timeout extension to template (Florian Westphal) [1906915]
+- [net] netfilter: nftables: fix possible UAF over chains from packet path in netns (Florian Westphal) [1906915]
+- [net] netfilter: flowtable: fix tcp and udp header checksum update (Florian Westphal) [1906915]
+- [net] netfilter: xt_recent: Fix attempt to update deleted entry (Florian Westphal) [1906915]
+- [net] netfilter: conntrack: connection timeout after re-register (Florian Westphal) [1906915]
+- [netdrv] ice: Fix MSI-X vector fallback logic (Jonathan Toppins) [1896639 1877645]
+- [netdrv] ice: Don't allow more channels than LAN MSI-X available (Jonathan Toppins) [1896639 1877645]
+- [net] netfilter: nf_nat: Fix memleak in nf_nat_init (Florian Westphal) [1906915]
+- [net] netfilter: xt_RATEEST: reject non-null terminated string from userspace (Florian Westphal) [1906915]
+- [include] net: flow_dissector: Wrap unionized VLAN fields in a struct (Florian Westphal) [1906915]
+- [net] netfilter: x_tables: Switch synchronization to RCU (Florian Westphal) [1906915]
+- [net] netfilter: nftables_offload: build mask based from the matching bytes (Florian Westphal) [1906915]
+- [net] netfilter: nft_payload: add C-VLAN offload support (Florian Westphal) [1906915]
+- [net] netfilter: nft_payload: add VLAN offload support (Florian Westphal) [1906915]
+- [net] netfilter: nf_tables_offload: allow ethernet interface type only (Florian Westphal) [1906915]
+- [net] netfilter: nftables_offload: set address type in control dissector (Florian Westphal) [1906915]
+- [net] netfilter: nf_tables: avoid false-postive lockdep splat (Florian Westphal) [1906915]
+- [net] netfilter: nf_tables: missing validation from the abort path (Florian Westphal) [1906915]
+- [net] netfilter: nftables: fix netlink report logic in flowtable and genid (Florian Westphal) [1906915]
+- [include] netfilter: nf_tables: constify nft_reg_load{8, 16, 64}() (Florian Westphal) [1906915]
+- [net] netfilter: nf_tables: Introduce new 64-bit helper register functions (Florian Westphal) [1906915]
+- [include] netfilter: nf_tables: drop include of module.h from nf_tables.h (Florian Westphal) [1906915]
+- [net] netfilter: nf_fwd_netdev: clear timestamp in forwarding path (Florian Westphal) [1906915]
+- [net] netfilter: ipset: prevent uninit-value in hash_ip6_add (Florian Westphal) [1906915]
+- [net] netfilter: use actual socket sk rather than skb sk when routing harder (Florian Westphal) [1906915]
+- [net] netfilter: ipv4: remove useless export_symbol (Florian Westphal) [1906915]
+- [net] netfilter: conntrack: don't set related state for different outer address (Florian Westphal) [1906915]
+- [fs] xfs: don't catch dax+reflink inodes as corruption in verifier (Bill O'Donnell) [1915510]
+
+* Sat Feb 20 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-290.el8]
+- [powerpc] powerpc: Don't enable FSCR_SCV in init_FSCR_power9() (Gustavo Duarte) [1928399]
+- [netdrv] ibmvnic: Clear failover_pending if unable to schedule (Steve Best) [1926365]
+- [netdrv] ibmvnic: change IBMVNIC_MAX_IND_DESCS to 16 (Steve Best) [1928243]
+- [tools] perf powerpc: Fix printf conversion specifier for IP addresses (Steve Best) [1928209]
+- [tools] perf powerpc: Fix gap between kernel end and module start (Steve Best) [1928209]
+- [netdrv] i40e: Revert "i40e: don't report link up for a VF who hasn't enabled queues" (Stefan Assmann) [1838733]
+- [netdrv] i40e: acquire VSI pointer only after VF is initialized (Stefan Assmann) [1838733]
+- [netdrv] i40e: fix potential NULL pointer dereferencing (Stefan Assmann) [1838733]
+- [netdrv] i40e: Fix Error I40E_AQ_RC_EINVAL when removing VFs (Stefan Assmann) [1838733]
+- [netdrv] i40e, xsk: clear the status bits for the next_to_use descriptor (Stefan Assmann) [1838733]
+- [netdrv] i40e: avoid premature Rx buffer reuse (Stefan Assmann) [1838733]
+- [netdrv] i40e: Remove unnecessary sw_ring access from xsk Tx (Stefan Assmann) [1838733]
+- [netdrv] i40e: Fix removing driver while bare-metal VFs pass traffic (Stefan Assmann) [1838733]
+- [netdrv] i40e: report correct VF link speed when link state is set to enable (Stefan Assmann) [1838733]
+- [netdrv] i40e: remove redundant assignment (Stefan Assmann) [1838733]
+- [netdrv] i40e: Fix MAC address setting for a VF via Host/VM (Stefan Assmann) [1838733]
+- [netdrv] i40e: Allow changing FEC settings on X722 if supported by FW (Stefan Assmann) [1838733]
+- [netdrv] net: intel: Remove in_interrupt() warnings (Stefan Assmann) [1838733]
+- [netdrv] intel-ethernet: clean up W=1 warnings in kdoc (Stefan Assmann) [1838733]
+- [netdrv] i40e, xsk: uninitialized variable in i40e_clean_rx_irq_zc() (Stefan Assmann) [1838733]
+- [netdrv] i40e, xsk: move buffer allocation out of the Rx processing loop (Stefan Assmann) [1838733]
+- [netdrv] i40e: use 16B HW descriptors instead of 32B (Stefan Assmann) [1838733]
+- [netdrv] i40e, xsk: remove HW descriptor prefetch in AF_XDP path (Stefan Assmann) [1838733]
+- [netdrv] i40e: optimise prefetch page refcount (Stefan Assmann) [1838733]
+- [netdrv] i40e: not compute affinity_mask for IRQ (Stefan Assmann) [1838733]
+- [netdrv] i40e: Fix crash during removing i40e driver (Stefan Assmann) [1838733]
+- [netdrv] i40e: Set RX_ONLY mode for unicast promiscuous on VLAN (Stefan Assmann) [1838733]
+- [netdrv] PCI: Use 'pci_channel_state_t' instead of 'enum pci_channel_state' (Stefan Assmann) [1838733]
+- [netdrv] i40e: introduce new dump desc XDP command (Stefan Assmann) [1838733]
+- [netdrv] i40e: add XDP ring statistics to dump VSI debug output (Stefan Assmann) [1838733]
+- [netdrv] i40e: add XDP ring statistics to VSI stats (Stefan Assmann) [1838733]
+- [netdrv] i40e: move check of full Tx ring to outside of send loop (Stefan Assmann) [1838733]
+- [netdrv] i40e: eliminate division in napi_poll data path (Stefan Assmann) [1838733]
+- [netdrv] i40e: optimize AF_XDP Tx completion path (Stefan Assmann) [1838733]
+- [netdrv] i40e: Add support for a new feature Total Port Shutdown (Stefan Assmann) [1838733]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Stefan Assmann) [1838733]
+- [netdrv] i40e: Add support for 5Gbps cards (Stefan Assmann) [1838733]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Stefan Assmann) [1838733]
+- [netdrv] i40e: Add a check to see if MFS is set (Stefan Assmann) [1838733]
+- [netdrv] i40e: detect and log info about pre-recovery mode (Stefan Assmann) [1838733]
+- [netdrv] i40e: make PF wait reset loop reliable (Stefan Assmann) [1838733]
+- [netdrv] i40e: remove unused defines (Stefan Assmann) [1838733]
+- [netdrv] i40e: Move client header location (Stefan Assmann) [1838733]
+- [netdrv] i40e: protect ring accesses with READ- and WRITE_ONCE (Stefan Assmann) [1838733]
+- [netdrv] i40e: Make i40e_shutdown_adminq() return void (Stefan Assmann) [1838733]
+- [netdrv] i40e: trivial fixup of comments in i40e_xsk.c (Stefan Assmann) [1838733]
+- [netdrv] i40e: Use scnprintf() for avoiding potential buffer overflow (Stefan Assmann) [1838733]
+- [netdrv] team: protect features update by RCU to avoid deadlock (Josef Oskera) [1909593]
+- [tools] bpf: selftests: remove test_progs LSM test (Yauheni Kaliuta) [1925911]
+- [net] bpf: Fix a verifier failure with xor (Yauheni Kaliuta) [1925911]
+- [tools] selftests: Remove fmod_ret from test_overhead (Jiri Olsa) [1925911]
+- [s390] s390/kdump: fix out-of-memory with PCI (Philipp Rudo) [1927744]
+- [x86] x86/intel_split_lock: Really Disable split lock detector by default in RHEL8 (Prarit Bhargava) [1924578]
+- [scsi] megaraid_sas: re-add certain pci-ids as unsupported (Tomas Henzl) [1761485]
+- [scsi] megaraid_sas: mark unsupported devices (Tomas Henzl) [1761485]
+- [pci] rh_taint: add support function (Tomas Henzl) [1761485]
+- [powerpc] powerpc/xmon: Restrict when kernel is locked down (Diego Domingos) [1853307]
+- [powerpc] powerpc/xmon: add read-only mode (Diego Domingos) [1853307]
+- [powerpc] powerpc: lock down kernel in secure boot mode (Diego Domingos) [1853307]
+- [net] fix iteration for sctp transport seq_files (Xin Long) [1916824]
+- [tools] x86: xen: insn: Decode Xen and KVM emulate-prefix signature (Michael Petlan) [1867733]
+- [tools] objtool: Ignore intentional differences for the x86 insn decoder (Michael Petlan) [1867733]
+- [x86] x86/insn: Add Control-flow Enforcement (CET) instructions to the opcode map (Michael Petlan) [1867733]
+- [x86] x86/decoder: Add TEST opcode to Group3-2 (Michael Petlan) [1867733]
+- [x86] x86/insn: Add some more Intel instructions to the opcode map (Michael Petlan) [1867733]
+- [x86] x86/insn: Add some Intel instructions to the opcode map (Michael Petlan) [1867733]
+- [net] udp: call udp_encap_enable for v6 sockets when enabling encap (Xin Long) [1907754]
+- [fs] close_range: unshare all fds for CLOSE_RANGE_UNSHARE | CLOSE_RANGE_CLOEXEC (Pavel Reichl) [1900674]
+- [fs] fs, close_range: add flag CLOSE_RANGE_CLOEXEC (Pavel Reichl) [1900674]
+- [tools] tests: close_range - Replace clone3 with clone (Pavel Reichl) [1900674]
+- [tools] selftests: core: use SKIP instead of XFAIL in close_range_test.c (Pavel Reichl) [1900674]
+- [tools] tools headers API: Update close_range affected files (Pavel Reichl) [1900674]
+- [tools] tests: add CLOSE_RANGE_UNSHARE tests (Pavel Reichl) [1900674]
+- [fs] close_range: add CLOSE_RANGE_UNSHARE (Pavel Reichl) [1900674]
+- [tools] tests: add close_range() tests (Pavel Reichl) [1900674]
+- [powerpc] arch: wire-up close_range() (Pavel Reichl) [1900674]
+- [fs] open: add close_range() (Pavel Reichl) [1900674]
+- [x86] x86/sgx: mark tech preview (Vladis Dronov) [1660337]
+- [tools] tools headers cpufeatures: Sync with the kernel sources (Vladis Dronov) [1660337]
+- [tools] tools arch x86: Sync the msr-index.h copy with the kernel sources (Vladis Dronov) [1660337]
+- [tools] tools arch x86: Sync the msr-index.h copy with the kernel sources (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Drop racy follow_pfn() check (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Fix the return type of sgx_init() (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Return -EINVAL on a zero length buffer in sgx_ioc_enclave_add_pages() (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Fix a typo in kernel-doc markup (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Fix sgx_ioc_enclave_provision() kernel-doc comment (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Return -ERESTARTSYS in sgx_ioc_enclave_add_pages() (Vladis Dronov) [1660337]
+- [tools] selftests/sgx: Use a statically generated 3072-bit RSA key (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Clarify 'laundry_list' locking (Vladis Dronov) [1660337]
+- [documentation] Documentation/x86: Document SGX kernel architecture (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add ptrace() support for the SGX driver (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add a page reclaimer (Vladis Dronov) [1660337]
+- [tools] selftests/x86: Add a selftest for SGX (Vladis Dronov) [1660337]
+- [x86] x86/vdso: Implement a vDSO for Intel SGX enclave call (Vladis Dronov) [1660337]
+- [mm] x86/traps: Attempt to fixup exceptions in vDSO before signaling (Vladis Dronov) [1660337]
+- [mm] x86/fault: Add a helper function to sanitize error code (Vladis Dronov) [1660337]
+- [x86] x86/vdso: Add support for exception fixup in vDSO functions (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add SGX_IOC_ENCLAVE_PROVISION (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add SGX_IOC_ENCLAVE_INIT (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add SGX_IOC_ENCLAVE_ADD_PAGES (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add SGX_IOC_ENCLAVE_CREATE (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add an SGX misc driver interface (Vladis Dronov) [1660337]
+- [mm] mm: Add 'mprotect' hook to struct vm_operations_struct (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add SGX page allocator functions (Vladis Dronov) [1660337]
+- [x86] x86/cpu/intel: Add a nosgx kernel parameter (Vladis Dronov) [1660337]
+- [x86] x86/cpu/intel: Detect SGX support (Vladis Dronov) [1660337]
+- [mm] x86/mm: Signal SIGSEGV with PF_SGX (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Initialize metadata for Enclave Page Cache (EPC) sections (Vladis Dronov) [1660337]
+- [x86] x86/{cpufeatures, msr}: Add Intel SGX Launch Control hardware bits (Vladis Dronov) [1660337]
+- [x86] x86/cpufeatures: Add Intel SGX hardware bits (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add wrappers for ENCLS functions (Vladis Dronov) [1660337]
+- [x86] x86/sgx: Add SGX architectural data structures (Vladis Dronov) [1660337]
+- [mm] x86/fault: Make error_code sanitization more robust (Vladis Dronov) [1660337]
+- [video] vgacon: remove software scrollback support (Chris von Recklinghausen) [1883596]
+- [tools] libbpf: fix backport of "libbpf: Remove any use of reallocarray() in libbpf" (Jiri Benc) [1924711]
+- [net] bpf: Prevent double bpf_prog_put call from bpf_tracing_prog_attach (Jiri Benc) [1924711]
+- [tools] selftests/bpf: Adding test for arg dereference in extension trace (Jiri Benc) [1924711]
+- [tools] selftests: Add selftest for disallowing modify_return attachment to freplace (Jiri Benc) [1924711]
+- [tools] selftests: Add test for multiple attachments of freplace program (Jiri Benc) [1924711]
+- [tools] selftests/bpf: Turn fexit_bpf2bpf into test with subtests (Jiri Benc) [1924711]
+- [tools] libbpf: Add support for freplace attachment in bpf_link_create (Jiri Benc) [1924711]
+- [net] bpf: Fix context type resolving for extension programs (Jiri Benc) [1924711]
+- [net] bpf: Support attaching freplace programs to multiple attach points (Jiri Benc) [1924711]
+- [net] bpf: Move prog->aux->linked_prog and trampoline into bpf_link on attach (Jiri Benc) [1924711]
+- [net] bpf: verifier: refactor check_attach_btf_id() (Jiri Benc) [1924711]
+- [net] bpf: change logging calls from verbose() to bpf_log() and use log pointer (Jiri Benc) [1924711]
+- [net] bpf: disallow attaching modify_return tracing functions to other BPF programs (Jiri Benc) [1924711]
+- [mm] kasan: fix incorrect arguments passing in kasan_add_zero_shadow (Waiman Long) [1921394]
+- [mm] kasan: fix unaligned address is unhandled in kasan_remove_zero_shadow (Waiman Long) [1921394]
+- [mm] mm: memcg/slab: optimize objcg stock draining (Waiman Long) [1921394]
+- [mm] mm: don't wake kswapd prematurely when watermark boosting is disabled (Waiman Long) [1921394]
+- [mm] mm/vmalloc.c: fix kasan shadow poisoning size (Waiman Long) [1921394]
+- [mm] mm/vmalloc: Fix unlock order in s_stop() (Waiman Long) [1921394]
+- [mm] mm/swapfile: do not sleep with a spin lock held (Waiman Long) [1921394]
+- [mm] mm: list_lru: set shrinker map bit when child nr_items is not zero (Waiman Long) [1921394]
+- [mm] mm: mempolicy: fix potential pte_unmap_unlock pte error (Waiman Long) [1921394]
+- [mm] mm/mmu_notifier: fix mmget() assert in __mmu_interval_notifier_insert (Waiman Long) [1921394]
+- [mm] mm/swapfile.c: fix potential memory leak in sys_swapon (Waiman Long) [1921394]
+- [mm] mm: validate pmd after splitting (Waiman Long) [1921394]
+- [mm] hugetlb_cgroup: convert comma to semicolon (Waiman Long) [1921394]
+- [mm] mm/memory_hotplug: fix unpaired mem_hotplug_begin/done (Waiman Long) [1921394]
+- [mm] khugepaged: adjust VM_BUG_ON_MM() in __khugepaged_enter() (Waiman Long) [1921394]
+- [mm] khugepaged: khugepaged_test_exit() check mmget_still_valid() (Waiman Long) [1921394]
+- [mm] mm/hugetlb: fix calculation of adjust_range_if_pmd_sharing_possible (Waiman Long) [1921394]
+- [mm] mm/hugetlb.c: clean code by removing unnecessary initialization (Waiman Long) [1921394]
+- [mm] mm/sparse: never partially remove memmap for early section (Waiman Long) [1921394]
+- [mm] mm/sparse: fix kernel crash with pfn_section_valid check (Waiman Long) [1921394]
+- [mm] mm/shuffle: don't move pages between zones and don't read garbage memmaps (Waiman Long) [1921394]
+- [mm] mm/sparse: rename pfn_present() to pfn_in_present_section() (Waiman Long) [1921394]
+- [powerpc] powerpc/pseries: Advance pfn if section is not present in lmb_is_removable() (Waiman Long) [1921394]
+- [powerpc] powerpc/pseries/hotplug-memory: Change rc variable to bool (Waiman Long) [1921394]
+- [mm] mm/gup: fix fixup_user_fault() on multiple retries (Waiman Long) [1921394]
+- [mm] mm/gup: Let __get_user_pages_locked() return -EINTR for fatal signal (Waiman Long) [1921394]
+- [mm] mm/mempolicy: Allow lookup_node() to handle fatal signal (Waiman Long) [1921394]
+- [include] include/linux/memremap.h: remove stale comments (Waiman Long) [1921394]
+- [mm] mm/sparsemem: get address to page struct instead of address to pfn (Waiman Long) [1921394]
+- [fs] hibernate: Allow uswsusp to write to swap (Waiman Long) [1921394]
+- [mm] mm/hotplug: fix hot remove failure in SPARSEMEM|!VMEMMAP case (Waiman Long) [1921394]
+- [mm] mm/hmm: add missing call to hmm_pte_need_fault in HMM_PFN_SPECIAL handling (Waiman Long) [1921394]
+- [mm] mm/hmm: add missing unmaps of the ptep during hmm_vma_handle_pte() (Waiman Long) [1921394]
+- [mm] mm/hmm: allow snapshot of the special zero page (Waiman Long) [1921394]
+- [mm] mm/hmm: a few more C style and comment clean ups (Waiman Long) [1921394]
+- [mm] mm/sparse.c: do not waste pre allocated memmap space (Waiman Long) [1921394]
+- [mm] mm/sparse: consistently do not zero memmap (Waiman Long) [1921394]
+- [mm] mm/gup: fix a misnamed "write" argument, and a related bug (Waiman Long) [1921394]
+- [powerpc] treewide: add checks for the return value of memblock_alloc*() (Waiman Long) [1921394]
+- [kvm] KVM: x86: Expose AVX512_FP16 for supported CPUID (Paul Lai) [1838734]
+- [x86] x86: Enumerate AVX512 FP16 CPUID feature flag (Paul Lai) [1838734]
+- [kvm] x86/kvm: Expose TSX Suspend Load Tracking feature (Paul Lai) [1838734]
+- [net] sched: act_ct: enable stats for HW offloaded entries (Marcelo Leitner) [1909257]
+- [scsi] scsi: fnic: Validate io_req before others (Govindarajulu Varadarajan) [1845720]
+- [scsi] scsi: fnic: Set scsi_set_resid() only for underflow (Govindarajulu Varadarajan) [1845720]
+- [scsi] scsi: fnic: Change shost_printk() to FNIC_MAIN_DBG() (Govindarajulu Varadarajan) [1845720]
+- [scsi] scsi: fnic: Avoid looping in TRANS ETH on unload (Govindarajulu Varadarajan) [1845720]
+- [scsi] scsi: fnic: Change shost_printk() to FNIC_FCS_DBG() (Govindarajulu Varadarajan) [1845720]
+- [scsi] scsi: fnic: Simplify the return expression of vnic_wq_copy_alloc() (Govindarajulu Varadarajan) [1845720]
+- [scsi] scsi: fnic: Fix inconsistent format argument type in fnic_debugfs.c (Govindarajulu Varadarajan) [1845720]
+- [x86] perf/x86/intel/uncore: Fix the scale of the IMC free-running events (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Reduce the number of CBOX counters (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Update Ice Lake uncore units (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Split the Ice Lake and Tiger Lake MSR uncore support (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Support PCIe3 unit on Snow Ridge (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Generic support for the PCI sub driver (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Factor out uncore_pci_pmu_unregister() (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Factor out uncore_pci_pmu_register() (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Factor out uncore_pci_find_dev_pmu() (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/uncore: Factor out uncore_pci_get_dev_die_info() (Michael Petlan) [1884818 1908305]
+
+* Wed Feb 17 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-289.el8]
+- [mmc] mmc: sdhci-acpi: For amd device set driver type as MMC_SET_DRIVER_TYPE_A (David Arcari) [1906067]
+- [pinctrl] pinctrl: Added IRQF_SHARED flag for amd-pinctrl driver (David Arcari) [1906067]
+- [block] block: export blk_mq_make_request (Ming Lei) [1917913]
+- [platform] platform/x86: dell-wmi-sysman: fix a NULL pointer dereference (Perry Yuan) [1922587]
+- [platform] platform/x86: dell-wmi-sysman: work around for BIOS bug (Juan Martinez) [1504859]
+- [platform] platform/x86: dell-wmi-sysman: fix init_bios_attributes() error handling (Juan Martinez) [1504859]
+- [platform] platform/x86/dell-wmi-sysman: Make some symbols static (Juan Martinez) [1504859]
+- [platform] platform/x86/dell-wmi-sysman: Make wmi_sysman_kobj_sysfs_ops static (Juan Martinez) [1504859]
+- [documentation] docs: ABI: sysfs-class-firmware-attributes: solve some warnings (Juan Martinez) [1504859]
+- [platform] platform/x86: Use appropriate module alias macro for this kernel (Juan Martinez) [1504859]
+- [platform] platform/x86: Introduce support for Systems Management Driver over WMI for Dell Systems (Juan Martinez) [1504859]
+- [md] dm: eliminate potential source of excessive kernel log noise (Mike Snitzer) [1876840]
+- [scsi] scsi: sd: Suppress spurious errors when WRITE SAME is being disabled (Ewan Milne) [1871060]
+- [net] libceph, ceph: disambiguate ceph_connection_operations handlers (Jeff Layton) [1893177]
+- [net] libceph: zero out session key and connection secret (Jeff Layton) [1893177]
+- [include] libceph: add __maybe_unused to DEFINE_MSGR2_FEATURE (Jeff Layton) [1893177]
+- [net] libceph: align session_key and con_secret to 16 bytes (Jeff Layton) [1893177]
+- [net] libceph: fix auth_signature buffer allocation in secure mode (Jeff Layton) [1893177]
+- [fs] ceph: reencode gid_list when reconnecting (Jeff Layton) [1893177]
+- [net] libceph: drop ceph_auth_{create, update}_authorizer() (Jeff Layton) [1893177]
+- [fs] libceph, ceph: make use of __ceph_auth_get_authorizer() in msgr1 (Jeff Layton) [1893177]
+- [net] libceph, ceph: implement msgr2.1 protocol (crc and secure modes) (Jeff Layton) [1893177]
+- [net] libceph: introduce connection modes and ms_mode option (Jeff Layton) [1893177]
+- [block] libceph, rbd: ignore addr->type while comparing in some cases (Jeff Layton) [1893177]
+- [net] libceph, ceph: get and handle cluster maps with addrvecs (Jeff Layton) [1893177]
+- [net] libceph: factor out finish_auth() (Jeff Layton) [1893177]
+- [net] libceph: drop ac->ops->name field (Jeff Layton) [1893177]
+- [net] libceph: amend cephx init_protocol() and build_request() (Jeff Layton) [1893177]
+- [net] libceph, ceph: incorporate nautilus cephx changes (Jeff Layton) [1893177]
+- [net] libceph: safer en/decoding of cephx requests and replies (Jeff Layton) [1893177]
+- [net] libceph: more insight into ticket expiry and invalidation (Jeff Layton) [1893177]
+- [net] libceph: move msgr1 protocol specific fields to its own struct (Jeff Layton) [1893177]
+- [net] libceph: move msgr1 protocol implementation to its own file (Jeff Layton) [1893177]
+- [net] libceph: use sendpage_ok() in ceph_tcp_sendpage() (Jeff Layton) [1893177]
+- [net] net: introduce helper sendpage_ok() in include/linux/net.h (Jeff Layton) [1893177]
+- [net] libceph: separate msgr1 protocol implementation (Jeff Layton) [1893177]
+- [net] libceph: export remaining protocol independent infrastructure (Jeff Layton) [1893177]
+- [net] libceph: export zero_page (Jeff Layton) [1893177]
+- [net] libceph: rename and export con->flags bits (Jeff Layton) [1893177]
+- [net] libceph: rename and export con->state states (Jeff Layton) [1893177]
+- [net] libceph: make con->state an int (Jeff Layton) [1893177]
+- [net] libceph: don't export ceph_messenger_{init_fini}() to modules (Jeff Layton) [1893177]
+- [net] libceph: make sure our addr->port is zero and addr->nonce is non-zero (Jeff Layton) [1893177]
+- [net] libceph: factor out ceph_con_get_out_msg() (Jeff Layton) [1893177]
+- [net] libceph: change ceph_con_in_msg_alloc() to take hdr (Jeff Layton) [1893177]
+- [net] libceph: change ceph_msg_data_cursor_init() to take cursor (Jeff Layton) [1893177]
+- [net] libceph: handle discarding acked and requeued messages separately (Jeff Layton) [1893177]
+- [net] libceph: drop msg->ack_stamp field (Jeff Layton) [1893177]
+- [net] libceph: remove redundant session reset log message (Jeff Layton) [1893177]
+- [net] libceph: clear con->peer_global_seq on RESETSESSION (Jeff Layton) [1893177]
+- [net] libceph: rename reset_connection() to ceph_con_reset_session() (Jeff Layton) [1893177]
+- [net] libceph: split protocol reset bits out of reset_connection() (Jeff Layton) [1893177]
+- [net] libceph: don't call reset_connection() on version/feature mismatches (Jeff Layton) [1893177]
+- [net] libceph: lower exponential backoff delay (Jeff Layton) [1893177]
+- [net] libceph: include middle_len in process_message() dout (Jeff Layton) [1893177]
+- [fs] ceph: implement updated ceph_mds_request_head structure (Jeff Layton) [1893177]
+- [fs] ceph: clean up argument lists to __prepare_send_request and __send_request (Jeff Layton) [1893177]
+- [fs] ceph: take a cred reference instead of tracking individual uid/gid (Jeff Layton) [1893177]
+- [fs] ceph: don't reach into request header for readdir info (Jeff Layton) [1893177]
+- [fs] ceph: set osdmap epoch for setxattr (Jeff Layton) [1893177]
+- [fs] ceph: remove redundant assignment to variable i (Jeff Layton) [1893177]
+- [fs] ceph: add ceph.caps vxattr (Jeff Layton) [1893177]
+- [fs] ceph: when filling trace, call ceph_get_inode outside of mutexes (Jeff Layton) [1893177]
+- [fs] Revert "ceph: allow rename operation under different quota realms" (Jeff Layton) [1893177]
+- [fs] ceph: fix inode refcount leak when ceph_fill_inode on non-I_NEW inode fails (Jeff Layton) [1893177]
+- [fs] ceph: downgrade warning from mdsmap decode to debug (Jeff Layton) [1893177]
+- [fs] ceph: fix race in concurrent __ceph_remove_cap invocations (Jeff Layton) [1893177]
+- [fs] ceph: pass down the flags to grab_cache_page_write_begin (Jeff Layton) [1893177]
+- [fs] ceph: add ceph.{cluster_fsid/client_id} vxattrs (Jeff Layton) [1893177]
+- [fs] ceph: add status debugfs file (Jeff Layton) [1893177]
+- [include] libceph: remove unused port macros (Jeff Layton) [1893177]
+- [fs] ceph: ensure we have Fs caps when fetching dir link count (Jeff Layton) [1893177]
+- [fs] ceph: send dentry lease metrics to MDS daemon (Jeff Layton) [1893177]
+- [fs] ceph: acquire Fs caps when getting dir stats (Jeff Layton) [1893177]
+- [fs] ceph: fix up some warnings on W=1 builds (Jeff Layton) [1893177]
+- [fs] ceph: queue MDS requests to REJECTED sessions when CLEANRECOVER is set (Jeff Layton) [1893177]
+- [fs] ceph: remove timeout on allowing reconnect after blocklisting (Jeff Layton) [1893177]
+- [fs] ceph: add new RECOVER mount_state when recovering session (Jeff Layton) [1893177]
+- [fs] ceph: make fsc->mount_state an int (Jeff Layton) [1893177]
+- [fs] ceph: don't WARN when removing caps due to blocklisting (Jeff Layton) [1893177]
+- [fs] ceph: check session state after bumping session->s_seq (Jeff Layton) [1893177]
+- [net] libceph: clear con->out_msg on Policy::stateful_server faults (Jeff Layton) [1893177]
+- [net] libceph: format ceph_entity_addr nonces as unsigned (Jeff Layton) [1893177]
+- [include] libceph: fix ENTITY_NAME format suggestion (Jeff Layton) [1893177]
+- [net] libceph: move a dout in queue_con_delay() (Jeff Layton) [1893177]
+- [fs] ceph: comment cleanups and clarifications (Jeff Layton) [1893177]
+- [fs] ceph: break up send_cap_msg (Jeff Layton) [1893177]
+- [fs] ceph: drop separate mdsc argument from __send_cap (Jeff Layton) [1893177]
+- [fs] ceph: promote to unsigned long long before shifting (Jeff Layton) [1893177]
+- [fs] ceph: don't SetPageError on readpage errors (Jeff Layton) [1893177]
+- [fs] ceph: mark ceph_fmt_xattr() as printf-like for better type checking (Jeff Layton) [1893177]
+- [fs] ceph: fold ceph_update_writeable_page into ceph_write_begin (Jeff Layton) [1893177]
+- [fs] ceph: fold ceph_sync_writepages into writepage_nounlock (Jeff Layton) [1893177]
+- [fs] ceph: fold ceph_sync_readpages into ceph_readpage (Jeff Layton) [1893177]
+- [fs] ceph: don't call ceph_update_writeable_page from page_mkwrite (Jeff Layton) [1893177]
+- [fs] ceph: break out writeback of incompatible snap context to separate function (Jeff Layton) [1893177]
+- [fs] ceph: add a note explaining session reject error string (Jeff Layton) [1893177]
+- [net] libceph: switch to the new "osd blocklist add" command (Jeff Layton) [1893177]
+- [fs] libceph, rbd, ceph: "blacklist" -> "blocklist" (Jeff Layton) [1893177]
+- [fs] ceph: have ceph_writepages_start call pagevec_lookup_range_tag (Jeff Layton) [1893177]
+- [fs] ceph: use kill_anon_super helper (Jeff Layton) [1893177]
+- [fs] ceph: metrics for opened files, pinned caps and opened inodes (Jeff Layton) [1893177]
+- [fs] ceph: add ceph_sb_to_mdsc helper support to parse the mdsc (Jeff Layton) [1893177]
+- [fs] ceph: drop special-casing for ITER_PIPE in ceph_sync_read (Jeff Layton) [1893177]
+- [fs] ceph: add column 'mds' to show caps in more user friendly (Jeff Layton) [1893177]
+- [include] libceph: multiple workspaces for CRUSH computations (Jeff Layton) [1893177]
+- [fs] ceph: remove unnecessary return in switch statement (Jeff Layton) [1893177]
+- [fs] ceph: encode inodes' parent/d_name in cap reconnect message (Jeff Layton) [1893177]
+- [include] libceph: add __maybe_unused to DEFINE_CEPH_FEATURE (Jeff Layton) [1893177]
+- [fs] ceph: use frag's MDS in either mode (Jeff Layton) [1893177]
+- [fs] ceph: move sb->wb_pagevec_pool to be a global mempool (Jeff Layton) [1893177]
+- [fs] ceph: remove redundant initialization of variable mds (Jeff Layton) [1893177]
+- [fs] ceph: fix use-after-free for fsc->mdsc (Jeff Layton) [1893177]
+- [fs] ceph: remove unused variables in ceph_mdsmap_decode() (Jeff Layton) [1893177]
+- [fs] ceph: delete repeated words in fs/ceph/ (Jeff Layton) [1893177]
+- [fs] ceph: send client provided metric flags in client metadata (Jeff Layton) [1893177]
+- [fs] ceph: periodically send perf metrics to MDSes (Jeff Layton) [1893177]
+- [fs] ceph: check the sesion state and return false in case it is closed (Jeff Layton) [1893177]
+- [net] libceph: replace HTTP links with HTTPS ones (Jeff Layton) [1893177]
+- [fs] ceph: remove unnecessary cast in kfree() (Jeff Layton) [1893177]
+- [net] libceph: just have osd_req_op_init() return a pointer (Jeff Layton) [1893177]
+- [fs] ceph: do not access the kiocb after aio requests (Jeff Layton) [1893177]
+- [fs] ceph: clean up and optimize ceph_check_delayed_caps() (Jeff Layton) [1893177]
+- [fs] ceph: fix potential mdsc use-after-free crash (Jeff Layton) [1893177]
+- [fs] ceph: switch to WARN_ON_ONCE in encode_supported_features() (Jeff Layton) [1893177]
+- [fs] ceph: add global total_caps to count the mdsc's total caps number (Jeff Layton) [1893177]
+- [fs] ceph: add check_session_state() helper and make it global (Jeff Layton) [1893177]
+- [net] libceph: dump class and method names on method calls (Jeff Layton) [1893177]
+- [net] libceph: use target_copy() in send_linger() (Jeff Layton) [1893177]
+- [fs] ceph: add metadata perf metric support (Jeff Layton) [1893177]
+- [fs] ceph: add read/write latency metric support (Jeff Layton) [1893177]
+- [fs] ceph: add caps perf metric for each superblock (Jeff Layton) [1893177]
+- [fs] ceph: add dentry lease metric support (Jeff Layton) [1893177]
+- [include] math64: New DIV64_U64_ROUND_CLOSEST helper (Jeff Layton) [1893177]
+- [tty] tty: Fix ->pgrp locking in tiocspgrp() (Waiman Long) [1908197] {CVE-2020-29661}
+
+* Mon Feb 15 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-288.el8]
+- [mm] Revert "powerpc: Ensure that swiotlb buffer is allocated from low memory" (Diego Domingos) [1907131]
+- [fs] xfs: use ENOTBLK for direct I/O to buffered I/O fallback (Carlos Maiolino) [1922953]
+- [nvme] nvme-multipath: Early exit if no path is available (Gopal Tiwari) [1880508]
+- [scsi] scsi: lpfc: Add support for eh_should_retry_cmd() (Ewan Milne) [1801585]
+- [scsi] scsi: scsi_transport_fc: Add store capability to rport port_state in sysfs (Ewan Milne) [1801585]
+- [scsi] scsi: scsi_transport_fc: Add a new rport state FC_PORTSTATE_MARGINAL (Ewan Milne) [1801585]
+- [scsi] scsi: core: No retries on abort success (Ewan Milne) [1801585]
+- [scsi] scsi: core: Add a new error code DID_TRANSPORT_MARGINAL in scsi.h (Ewan Milne) [1801585]
+- [scsi] scsi: core: Add limitless cmd retry support (Ewan Milne) [1801585]
+- [fs] gfs2: Fix deadlock between gfs2_{create_inode, inode_lookup} and delete_work_func (Andreas Grunbacher) [1903190]
+- [fs] gfs2: Don't call cancel_delayed_work_sync from within delete work function (Andreas Grunbacher) [1903190]
+- [cpufreq] acpi-cpufreq: Honor _PSD table setting on new AMD CPUs (Terry Bowman) [1886943]
+- [x86] x86/cpufeatures: Enumerate TSX suspend load address tracking instructions (Josh Poimboeuf) [1836980]
+- [powerpc] powerpc/pseries/svm: Allocate SWIOTLB buffer anywhere in memory (Diego Domingos) [1869184]
+- [mm] powerpc: Ensure that swiotlb buffer is allocated from low memory (Diego Domingos) [1869184]
+- [fs] debugfs: Fix module state check condition (Vladis Dronov) [1866285]
+- [fs] debugfs: Check module state before warning in {full/open}_proxy_open() (Vladis Dronov) [1866285]
+
+* Thu Feb 11 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-287.el8]
+- [firmware] efi: Don't attempt to map RCI2 config table if it doesn't exist (Lenny Szubowicz) [1779590]
+- [firmware] efi: Make CONFIG_EFI_RCI2_TABLE selectable on x86 only (Lenny Szubowicz) [1779590]
+- [firmware] efi: Make unexported efi_rci2_sysfs_init() static (Lenny Szubowicz) [1779590]
+- [iommu] iommu: use the __iommu_attach_device() directly for deferred attach (Lianbo Jiang) [1904658]
+- [iommu] dma-iommu: use static-key to minimize the impact in the fast-path (Lianbo Jiang) [1904658]
+- [x86] x86/PCI: sta2x11: use default DMA address translation (Jerry Snitselaar) [1887546]
+- [powerpc] powerpc: use the generic dma_ops_bypass mode (Jerry Snitselaar) [1887546]
+- [dma] dmaengine: fix error codes in channel_register() (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: off by one in cleanup code (Jerry Snitselaar) [1837187]
+- [documentation] dmaengine: idxd: Add ABI documentation for shared wq (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: Clean up descriptors with fault error (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: Add shared workqueue support (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: fix mapping of portal size (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: fix wq config registers offset programming (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: Allocate correct size for descriptor chunk (Jerry Snitselaar) [1837187]
+- [uapi] dmaengine: idxd: add missing invalid flags field to completion (Jerry Snitselaar) [1837187]
+- [uapi] dmaengine: idxd: fix hw descriptor fields for delta record (Jerry Snitselaar) [1837187]
+- [uapi] dmaengine: idxd: Merge definition of dsa_batch_desc into dsa_hw_desc (Jerry Snitselaar) [1838386 1837187]
+- [dma] dmaengine: dmatest: Return boolean result directly in filter() (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Check list for emptiness before access its last entry (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: Make two symbols static (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Print error codes as signed value (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: add command status to idxd sysfs attribute (Jerry Snitselaar) [1893465 1837187]
+- [dma] dmaengine: idxd: add support for configurable max wq batch size (Jerry Snitselaar) [1893468 1837187]
+- [dma] dmaengine: idxd: add support for configurable max wq xfer size (Jerry Snitselaar) [1893468 1837187]
+- [documentation] dmaengine: idxd: add leading / for sysfspath in ABI documentation (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: clear misc interrupt cause after read (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Prevent to run on misconfigured channel (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: acpi: Put the CSRT table after using it (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: reset states after device disable or reset (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: move idxd interrupt handling to mask instead of ignore (Jerry Snitselaar) [1872374 1837187]
+- [dma] dmaengine: idxd: add work queue drain support (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: move submission to sbitmap_queue (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: cookie bypass for out of order completion (Jerry Snitselaar) [1838893 1837187]
+- [dma] dmaengine: ioat setting ioat timeout as module parameter (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: stop completed threads when running without set channel (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: fix misc interrupt handler thread unmasking (Jerry Snitselaar) [1877126 1837187]
+- [dma] dmaengine: idxd: cleanup workqueue config after disabling (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: fix cdev locking for open and release (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Replace zero-length array with flexible-array (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Fix doc strings to satisfy validation script (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Include dmaengine.h into dmaengine.c (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Describe members of struct dmatest_info (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Describe members of struct dmatest_params (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Allow negative timeout value to specify infinite wait (Jerry Snitselaar) [1837187]
+- [dma] Revert "dmaengine: dmatest: timeout value of -1 should specify infinite wait" (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: adding missed issue_pending to timeout handler (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: remove unnesesery double complition timer modification (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: removing duplicate code from timeout handler (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: Decreasing allocation chunk size 2M->512K (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: fixing chunk sizing macros dependency (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: export hw version through sysfs (Jerry Snitselaar) [1838888 1837187]
+- [dma] dmaengine: dmatest: Restore default for channel (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: fix interrupt completion after unmasking (Jerry Snitselaar) [1838895 1837187]
+- [dma] dmaengine: dmatest: Fix process hang when reading 'wait' parameter (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Fix iteration non-stop logic (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: fix channel index enumeration (Jerry Snitselaar) [1838390 1837187]
+- [include] include/linux/dmaengine: Typos fixes in API documentation (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: remove global token limit check (Jerry Snitselaar) [1838385 1837187]
+- [dma] dmaengine: idxd: reflect shadow copy of traffic class programming (Jerry Snitselaar) [1838381 1837187]
+- [dma] dmaengine: Create debug directories for DMA devices (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Add basic debugfs support (Jerry Snitselaar) [1837187]
+- [include] dmaengine: consistently return string literal from switch-case (Jerry Snitselaar) [1837187]
+- [include] dmaengine: Drop redundant 'else' keyword (Jerry Snitselaar) [1837187]
+- [include] dmaengine: Use negative condition for better readability (Jerry Snitselaar) [1837187]
+- [include] dmaengine: Refactor dmaengine_check_align() to be bit operations only (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: expose general capabilities register in sysfs (Jerry Snitselaar) [1837187 1836532]
+- [dma] dmaengine: idxd: check return result from check_vma() in cdev (Jerry Snitselaar) [1837187 1836530]
+- [dma] dmanegine: ioat/dca: Replace zero-length array with flexible-array member (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: remove set but not used variable 'idxd_cdev' (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: remove set but not used variable 'group' (Jerry Snitselaar) [1837187]
+- [documentation] dmaengine: idxd: add sysfs ABI for idxd driver (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: fix off by one on cdev dwq refcount (Jerry Snitselaar) [1838366 1837187]
+- [dma] dmaengine: idxd: wq size configuration needs to check global max size (Jerry Snitselaar) [1837187 1836579]
+- [dma] dmaengine: idxd: sysfs input of wq incorrect wq type should return error (Jerry Snitselaar) [1837187 1836585]
+- [dma] dmaengine: idxd: correct reserved token calculation (Jerry Snitselaar) [1837187 1836647]
+- [dma] dmaengine: idxd: Fix error handling in idxd_wq_cdev_dev_setup() (Jerry Snitselaar) [1838354 1837187]
+- [dma] dmaengine: idxd: fix runaway module ref count on device driver bind (Jerry Snitselaar) [1837187 1836649]
+- [dma] dmaengine: idxd: fix boolconv.cocci warnings (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: add char driver to expose submission portal to userland (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: connect idxd to dmaengine subsystem (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: add descriptor manipulation routines (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: add configuration component of driver (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idxd: Init and probe for Intel data accelerators (Jerry Snitselaar) [1837187]
+- [include] io-64-nonatomic: add io{read|write}64{_lo_hi|_hi_lo} macros (Jerry Snitselaar) [1837187]
+- [powerpc] iomap: introduce io{read|write}64_{lo_hi|hi_lo} (Jerry Snitselaar) [1837187]
+- [lib] iomap: Use non-raw io functions for io{read|write}XXbe (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: virt-dma: use vchan_vdesc_fini() to free descriptors (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: virt-dma: Add missing locking around list operations (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: virt-dma: Do not call desc_free() under a spin_lock (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: virt-dma: remove debug message (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: virt-dma: Add missing locking (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: Support in-use unbind (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: move .device_release missing log warning to debug level (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Cleanups for the slave <-> channel symlink support (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: fix null ptr check for __dma_async_device_channel_register() (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Fix return value for dma_request_chan() in case of failure (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Create symlinks between DMA channels and slaves (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: add support to dynamic register/unregister of channels (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: break out channel registration (Jerry Snitselaar) [1837187]
+- [x86] x86/asm: Carve out a generic movdir64b() helper for general usage (Jerry Snitselaar) [1837187]
+- [x86] x86/asm: add iosubmit_cmds512() based on MOVDIR64B CPU instruction (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Move dma_get_{, any_}slave_channel() to private dmaengine.h (Jerry Snitselaar) [1837187]
+- [include] dmaengine: Remove dma_request_slave_channel_compat() wrapper (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Remove dma_device_satisfies_mask() wrapper (Jerry Snitselaar) [1837187]
+- [include] dmaengine: Add helper function to convert direction value to text (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Add support for reporting DMA cached data amount (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Add metadata_ops for dma_async_tx_descriptor (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: print more meaningful error message (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: move module_/dma_device_put() after route free (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Add reference counting to dma_device struct (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Move dma_channel_rebalance() infrastructure up in code (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Call module_put() after device_free_chan_resources() (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Store module owner in dma_device struct (Jerry Snitselaar) [1837187]
+- [include] dmaengine: Remove spaces before TABs (Jerry Snitselaar) [1837187]
+- [dma] ioat: ioat_alloc_ring() failure handling (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: virt-dma: Fix access after free in vchan_complete() (Jerry Snitselaar) [1837187]
+- [include] dmaengine: Fix access to uninitialized dma_slave_caps (Jerry Snitselaar) [1837187]
+- [dma] dmanegine: ioat/dca: Use struct_size() helper (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: acpi: Add kernel doc parameter descriptions (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: acpi: Set up DMA mask based on CSRT (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Add support for completion polling (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: virt-dma: store result on dma descriptor (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: timeout value of -1 should specify infinite wait (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: Grammar s/the its/its/, s/need/needs/ (Jerry Snitselaar) [1837187]
+- [dma] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 284 (Jerry Snitselaar) [1837187]
+- [dma] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 291 (Jerry Snitselaar) [1837187]
+- [dma] treewide: Add SPDX license identifier - Makefile/Kconfig (Jerry Snitselaar) [1837187]
+- [dma] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Jerry Snitselaar) [1837187]
+- [dma] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 7 (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: move test data alloc & free into functions (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: add short-hand `buf_size` var in dmatest_func() (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: wrap src & dst data into a struct (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Abort test in case of mapping error (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Add transfer_size parameter (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Add alignment parameter (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Use fixed point div to calculate iops (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: Add support for multi channel testing (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: fix a small memory leak in dmatest_func() (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: move size checks earlier in function (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: use dmaengine_terminate_sync() instead (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: dmatest: unmap data on a single code-path when xfer done (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idma64: replace spin_lock_irqsave with spin_lock (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idma: remove dma_slave_config direction usage (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioat: fix prototype of ioat_enumerate_channels (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: ioatdma: set the completion address register after channel reset (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: idma64: Support dmaengine_terminate_sync() (Jerry Snitselaar) [1837187]
+- [dma] dmaengine: add a new helper dmaenginem_async_device_register (Jerry Snitselaar) [1837187]
+- [documentation] Documentation/x86: Add documentation for SVA (Shared Virtual Addressing) (Jerry Snitselaar) [1836777]
+- [iommu] iommu/vt-d: Change flags type to unsigned int in binding mm (Jerry Snitselaar) [1836777]
+- [drm] drm, iommu: Change type of pasid to u32 (Jerry Snitselaar) [1836777]
+- [x86] x86/asm: Add an enqcmds() wrapper for the ENQCMDS instruction (Jerry Snitselaar) [1837187]
+- [x86] x86/mmu: Allocate/free a PASID (Jerry Snitselaar) [1836777]
+- [x86] x86/cpufeatures: Mark ENQCMD as disabled when configured out (Jerry Snitselaar) [1836777]
+- [mm] mm: Add a pasid member to struct mm_struct (Jerry Snitselaar) [1836777]
+- [x86] x86/msr-index: Define an IA32_PASID MSR (Jerry Snitselaar) [1836777]
+- [x86] x86/fpu/xstate: Add supervisor PASID state for ENQCMD (Jerry Snitselaar) [1836777]
+- [x86] x86/cpufeatures: Enumerate ENQCMD and ENQCMDS instructions (Jerry Snitselaar) [1836777]
+- [x86] x86/fpu/xstate: Restore supervisor states for signal return (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Preserve supervisor states for the slow path in __fpu__restore_sig() (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu: Introduce copy_supervisor_to_kernel() (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Update copy_kernel_to_xregs_err() for supervisor states (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Update sanitize_restored_xstate() for supervisor xstates (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Define new functions for clearing fpregs and xstates (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Introduce XSAVES supervisor states (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Separate user and supervisor xfeatures mask (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Define new macros for supervisor and user xstates (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Rename validate_xstate_header() to validate_user_xstate_header() (Jerry Snitselaar) [1837178]
+- [x86] copy_xstate_to_kernel: Fix typo which caused GDB regression (Jerry Snitselaar) [1837178]
+- [x86] copy_xstate_to_kernel(): don't leave parts of destination uninitialized (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Warn when checking alignment of disabled xfeatures (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Fix XSAVES offsets in setup_xstate_comp() (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Fix last_good_offset in setup_xstate_features() (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu: Shrink space allocated for xstate_comp_offsets (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Make xfeature_is_supervisor()/xfeature_is_user() return bool (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu/xstate: Fix small issues (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu: Use XFEATURE_FP/SSE enum values instead of hardcoded numbers (Jerry Snitselaar) [1837178]
+- [x86] x86/fpu: Use unsigned long long shift in xfeature_uncompacted_offset() (Jerry Snitselaar) [1837178]
+- [iommu] iommu/vt-d: Fix sid not set issue in intel_svm_bind_gpasid() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix kernel NULL pointer dereference in find_domain() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: include conditionally on CONFIG_INTEL_IOMMU_SVM (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix misuse of ALIGN in qi_flush_piotlb() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Don't read VCCAP register unless it exists (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Add SMMUv3.2 range invalidation support (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Batch ATC invalidation commands (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Add command queue batching helpers (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Add sanity check for interrupt remapping table length macros (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix lockdep splat in iommu_flush_dev_iotlb() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Restore IRTE.RemapEn bit for amd_iommu_activate_guest_mode (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Fix potential @entry null deref (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Handle 36bit addressing for x86-32 (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Do not use IOMMUv2 functionality when SME is active (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Do not force direct mapping when SME is active (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Use cmpxchg_double() when updating 128-bit IRTE (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Restore IRTE.RemapEn bit after programming IRTE (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix NULL pointer dereference in dev_iommu_priv_set() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Serialize IOMMU GCMD register modifications (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: Fix an uninitialized variable bug in atomic_pool_expand() (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: Only allocate from CMA when in same memory zone (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: fix coherent pool allocations for IOMMU mappings (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Move Kconfig and Makefile bits down into amd directory (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Move Kconfig and Makefile bits down into intel directory (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Add gfp parameter to io_pgtable_ops->map() (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Mark __iommu_map_sg() as static (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Tidy up Kconfig for SoC IOMMUs (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Make some functions static (Jerry Snitselaar) [1887546]
+- [include] iommu: Move sg_table wrapper out of CONFIG_IOMMU_SUPPORT (Jerry Snitselaar) [1887546]
+- [powerpc] powerpc/dma: Remove dev->archdata.iommu_domain (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Remove double zero check (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Rename intel-pasid.h to pasid.h (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add page response ops support (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Report page request faults for guest SVA (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add a helper to get svm and sdev for pasid (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Refactor device_to_iommu() helper (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Disable multiple GPASID-dev bind (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Warn on out-of-range invalidation address (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix devTLB flush for vSVA (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Handle non-page aligned address (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix PASID devTLB invalidation (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Remove global page support in devTLB flush (Jerry Snitselaar) [1887546]
+- [include] iommu/vt-d: Enforce PASID devTLB field mask (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Remove unused IOMMU_SYS_CACHE_ONLY flag (Jerry Snitselaar) [1887546]
+- [iommu] PCI/ATS: Add pci_pri_supported() to check device or associated PF (Jerry Snitselaar) [1887546]
+- [pci] PCI: Treat "external-facing" devices themselves as internal (Jerry Snitselaar) [1887546]
+- [documentation] docs: fix references for DMA*.txt files (Jerry Snitselaar) [1887546]
+- [dma] dma-contiguous: cleanup dma_alloc_contiguous (Jerry Snitselaar) [1887546]
+- [dma] dma-debug: use named initializers for dir2name (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: add a dma_ops_bypass flag to struct device (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: inline the fast path dma-direct calls (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: move the remaining DMA API calls out of line (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: don't BUG when calling dma_map_resource on RAM (Jerry Snitselaar) [1887546]
+- [of] of: Allow the iommu-map property to omit untranslated devices (Jerry Snitselaar) [1887546]
+- [iommu] treewide: Remove uninitialized_var() usage (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: do not allocate pool memory from CMA (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: make sure atomic pool suits device (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: introduce dma_guess_pool() (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: get rid of dma_in_atomic_pool() (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: provide function to check physical memory area validity (Jerry Snitselaar) [1887546]
+- [documentation] docs: move DMA kAPI to Documentation/core-api (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: remove dma_mark_declared_memory_occupied (Jerry Snitselaar) [1887546]
+- [documentation] docs: DMA-API-HOWTO.txt: fix an unmarked code block (Jerry Snitselaar) [1887546]
+- [documentation] Documentation: DMA-API: fix a function name of max_mapping_size (Jerry Snitselaar) [1887546]
+- [documentation] docs: DMA-API-HOWTO: add a missing "=" (Jerry Snitselaar) [1887546]
+- [documentation] Documentation/DMA-API-HOWTO: update dma_mask sections (Jerry Snitselaar) [1887546]
+- [documentation] Documentation/DMA-ISA-LPC: fix an incorrect reference (Jerry Snitselaar) [1887546]
+- [documentation] Documentation: DMA-API: fix two typos (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: warn when coherent pool is depleted (Jerry Snitselaar) [1887546]
+- [dma] dma-remap: align the size in dma_common_*_remap() (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: DMA_COHERENT_POOL should select GENERIC_ALLOCATOR (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: add missing set_memory_decrypted() for coherent mapping (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: check return value when encrypting or decrypting memory (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: re-encrypt memory if dma_direct_alloc_pages() fails (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: always align allocation size in dma_direct_alloc_pages() (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: mark __dma_direct_alloc_pages static (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: re-enable mmap for !CONFIG_MMU (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: decouple DMA_REMAP from DMA_COHERENT_POOL (Jerry Snitselaar) [1887546]
+- [message] scsi: mptfusion: Don't use GFP_ATOMIC for larger DMA allocations (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: fix too large DMA pools on medium memory size systems (Jerry Snitselaar) [1887546]
+- [iommu] treewide: replace '---help---' in Kconfig files with 'help' (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Make remove callback message more informative (Jerry Snitselaar) [1887546]
+- [include] iommu: add generic helper for mapping sgtable objects (Jerry Snitselaar) [1887546]
+- [dma] dma-contiguous: fix comment for dma_release_from_contiguous (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: scale the default DMA coherent pool size with memory capacity (Jerry Snitselaar) [1887546]
+- [x86] x86/mm: unencrypted non-blocking DMA allocations use coherent pools (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: add pool sizes to debugfs (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: atomic allocations must come from atomic coherent pools (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: dynamically expanding atomic pools (Jerry Snitselaar) [1887546]
+- [dma] dma-pool: add additional coherent pools to map to gfp mask (Jerry Snitselaar) [1887546]
+- [dma] dma-remap: separate DMA atomic pools from direct remap code (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: use vmap insted of reimplementing it (Jerry Snitselaar) [1887546]
+- [dma] dma-debug: make __dma_entry_alloc_check_leak() static (Jerry Snitselaar) [1887546]
+- [dma] dma: debug: no need to check return value of debugfs_create functions (Jerry Snitselaar) [1887546]
+- [dma] dma-debug: Batch dma_debug_entry allocation (Jerry Snitselaar) [1887546]
+- [dma] dma/debug: Remove dma_debug_resize_entries() (Jerry Snitselaar) [1887546]
+- [dma] dma-debug: Make leak-like behaviour apparent (Jerry Snitselaar) [1887546]
+- [dma] dma-debug: Dynamically expand the dma_debug_entry pool (Jerry Snitselaar) [1887546]
+- [dma] dma-debug: Use pr_fmt() (Jerry Snitselaar) [1887546]
+- [dma] dma-debug: Expose nr_total_entries in debugfs (Jerry Snitselaar) [1887546]
+- [dma] dma-debug: fix displaying of dma allocation type (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: fix data truncation in dma_direct_get_required_mask() (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: provide a arch_dma_clear_uncached hook (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: make uncached_kernel_address more general (Jerry Snitselaar) [1887546]
+- [include] dma-direct: remove the cached_kernel_address hook (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: consolidate the error handling in dma_direct_alloc_pages (Jerry Snitselaar) [1887546]
+- [dma] dma-coherent: fix integer overflow in the reserved-memory dma allocation (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix misuse of iommu_domain_identity_map() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Update scalable mode paging structure coherency (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Enable PCI ACS for platform opt in hint (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Set U/S bit in first level page table by default (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Make Intel SVM code 64-bit only (Jerry Snitselaar) [1887546]
+- [arm64] arm64: Remove dev->archdata.iommu pointer (Jerry Snitselaar) [1887546]
+- [x86] x86: Remove dev->archdata.iommu pointer (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Use dev_iommu_priv_get/set() (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Allow page responses without PASID (Jerry Snitselaar) [1887546]
+- [iommu] iommu/iova: Don't BUG on invalid PFNs (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Add helper functions to update domain->pt_root (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Print extended features in one line to fix divergent log levels (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Make amd_iommu_apply_ivrs_quirks() static inline (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Move Intel IOMMU driver into subdirectory (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Move AMD IOMMU driver into subdirectory (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Remove redundant devid checks (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Store dev_data as device iommu private data (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Merge private header files (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Remove PD_DMA_OPS_MASK (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Consolidate domain allocation/freeing (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Free page-table in protection_domain_free() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Allocate page-table in protection_domain_init() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Let free_pagetable() not rely on domain->pt_root (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Unexport get_dev_data() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Unify format of the printed messages (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Remove iommu_sva_ops::mm_exit() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Use pci_ats_supported() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Use pci_ats_supported() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/amd: Use pci_ats_supported() (Jerry Snitselaar) [1887546]
+- [pci] PCI/ATS: Only enable ATS for trusted devices (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Implement iommu_ops->def_domain_type call-back (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Don't reserve implementation defined register space (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: remove set but not used variable 'smmu' (Jerry Snitselaar) [1887546]
+- [uapi] iommu/virtio: Fix sparse warning (Jerry Snitselaar) [1887546]
+- [pci] PCI/ATS: Export symbols of PASID functions (Jerry Snitselaar) [1887546]
+- [iommu] iommu/mediatek: Fix MTK_IOMMU dependencies (Jerry Snitselaar) [1887546]
+- [iommu] iommu: spapr_tce: Disable compile testing to fix build on book3s_32 config (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Enable compile testing for some of drivers (Jerry Snitselaar) [1887546]
+- [x86] x86: Hide the archdata.iommu field behind generic IOMMU_API (Jerry Snitselaar) [1887546]
+- [iommu] iommu/hyper-v: Constify hyperv_ir_domain_ops (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix compile warning (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: fix a GCC warning (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Fix pointer cast warnings on 32 bit (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Remove IOVA handling code from the non-dma_ops path (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Remove duplicated check in intel_svm_bind_mm() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Remove redundant IOTLB flush (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add page request draining support (Jerry Snitselaar) [1887546 1847060]
+- [iommu] iommu/vt-d: Disable non-recoverable fault processing before unbind (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: debugfs: Add support to show inv queue internals (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Multiple descriptors per qi_submit_sync() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Replace intel SVM APIs with generic SVA APIs (Jerry Snitselaar) [1887546 1836578]
+- [include] iommu/vt-d: Fix compile warning from intel-svm.h (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Report SVA feature with generic flag (Jerry Snitselaar) [1887546 1836578]
+- [iommu] iommu/vt-d: Add custom allocator for IOASID (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Enlightened PASID allocation (Jerry Snitselaar) [1887546 1837167]
+- [iommu] iommu/vt-d: Add svm/sva invalidate function (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Support flushing more translation cache types (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add bind guest PASID support (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add nested translation helper function (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Use a helper function to skip agaw for SL (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Move domain helper to header (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Remove functions that support private domain (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Unify format of the printed messages (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Introduce guest PASID bind function (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Introduce cache_invalidate API (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: debugfs: Add support to show page table internals (Jerry Snitselaar) [1887546 1835059]
+- [iommu] iommu/vt-d: Use iova over first level (Jerry Snitselaar) [1887546 1837160]
+- [iommu] iommu/vt-d: Update first level super page capability (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Make first level IOVA canonical (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Flush PASID-based iotlb for iova over first level (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Setup pasid entries for iova over first level (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add PASID_FLAG_FL5LP for first-level pasid setup (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add set domain DOMAIN_ATTR_NESTING attr (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Identify domains using first level page table (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Misc macro clean up for SVM (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add build dependency on IOASID (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Replace Intel specific PASID allocator with IOASID (Jerry Snitselaar) [1887546]
+- [iommu] iommu/ioasid: Add custom allocators (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Add I/O ASID allocator (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Use right Kconfig option name (Jerry Snitselaar) [1887546]
+- [iommu] iommu/vt-d: Add Kconfig option to enable/disable scalable mode (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Convert to probe/release_device() call-backs (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Reverse arguments to list_add (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Use accessor functions for iommu private data (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Reject IOMMU page granule larger than PAGE_SIZE (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Fix freeing of incomplete domains (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Build virtio-iommu as module (Jerry Snitselaar) [1887546]
+- [iommu] iommu: virtio: Use generic_iommu_put_resv_regions() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Remove unused variable (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Update to most recent specification (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Add event queue (Jerry Snitselaar) [1887546]
+- [iommu] iommu/virtio: Add probe request (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Add virtio-iommu driver (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Remove duplicate error message (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Fix uninitilized variable warning (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Rename IOMMU_QCOM_SYS_CACHE and improve doc (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Restore naming of driver parameter prefix (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Use WRITE_ONCE() when changing validity of an STE (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Improve SMR mask test (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Fix IOVA validation for 32-bit (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Prepare for TTBR1 usage (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Rationalise VTCR handling (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Rename public #defines under ARM_SMMU_ namespace (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Rationalise TCR handling (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Ensure ARM_64_LPAE_S2_TCR_RES1 is unsigned (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Improve attribute handling (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Support non-coherent stage-2 page tables (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Fix -Wunused-const-variable warning (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Remove useless of_match_ptr() (Jerry Snitselaar) [1887546]
+- [iommu] drivers/iommu: Initialise module 'owner' field in iommu_device_set_ops() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Update my email address in MODULE_AUTHOR() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Allow building as a module (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Unregister IOMMU and bus ops on device removal (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Allow building as a module (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Support SMMU module probing from the IORT (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu-v3: Unregister IOMMU and bus ops on device removal (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Prevent forced unbinding of Arm SMMU drivers (Jerry Snitselaar) [1887546]
+- [iommu] Revert "iommu/arm-smmu: Make arm-smmu explicitly non-modular" (Jerry Snitselaar) [1887546]
+- [iommu] Revert "iommu/arm-smmu: Make arm-smmu-v3 explicitly non-modular" (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Rationalise TTBRn handling (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Rationalise MAIR handling (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Simplify level indexing (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Simplify PGD size handling (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Simplify start level lookup (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Simplify bounds checks (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm: Rationalise size check (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable: Make selftest gubbins consistently __init (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Avoid pathological RPM behaviour for unmaps (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable: Move some initialization data to .init.rodata (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Report USF more clearly (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Remove arm_smmu_flush_ops (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Move .tlb_sync method to implementation (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Remove "leaf" indirection (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Remove .tlb_inv_range indirection (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm-v7s: Use ias/oas to check the valid iova/pa (Jerry Snitselaar) [1887546]
+- [iommu] iommu/io-pgtable-arm-v7s: Add paddr_to_iopte and iopte_to_paddr helpers (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Ensure 64-bit I/O accessors are available on 32-bit CPU (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Make private implementation details static (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Add context init implementation hook (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Add reset implementation hook (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Add configuration implementation hook (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Move Secure access quirk to implementation (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: ioremap smmu mmio region before implementation init (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Add implementation infrastructure (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Rename arm-smmu-regs.h (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Abstract GR0 accesses (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Abstract context bank accesses (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Abstract GR1 accesses (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Get rid of weird "atomic" write (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Split arm_smmu_tlb_inv_range_nosync() (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Rework cb_base handling (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Convert context bank registers to bitfields (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Convert GR1 registers to bitfields (Jerry Snitselaar) [1887546]
+- [iommu] iommu/arm-smmu: Convert GR0 registers to bitfields (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Remove IOMMU_OF_DECLARE (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Stop deferring probe at end of initcalls (Jerry Snitselaar) [1887546]
+- [iommu] iommu: Fix use-after-free in iommu_release_device (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: Fix dma_pgprot() for unencrypted coherent pages (Jerry Snitselaar) [1887546]
+- [x86] x86: Don't let pgprot_modify() change the page encryption bit (Jerry Snitselaar) [1887546]
+- [x86] x86/PCI: Remove X86_DEV_DMA_OPS (Jerry Snitselaar) [1887546]
+- [pci] PCI: vmd: Remove dma_map_ops overrides (Jerry Snitselaar) [1887546]
+- [pci] x86/pci: Clean up usage of X86_DEV_DMA_OPS (Jerry Snitselaar) [1887546]
+- [x86] x86/Kconfig: Remove the unused X86_DMA_REMAP KConfig symbol (Jerry Snitselaar) [1887546]
+- [dma] dma-direct: avoid a forward declaration for phys_to_dma (Jerry Snitselaar) [1887546]
+- [dma] dma-mapping: Add vmap checks to dma_map_single() (Jerry Snitselaar) [1887546]
+- [x86] x86/platform/uv: Fix UV4 hub revision adjustment (Frank Ramsay) [1908507]
+- [ata] ahci: Add Intel Rocket Lake PCH-H RAID PCI IDs (Steve Best) [1868308]
+
+* Wed Feb 10 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-286.el8]
+- [mfd] mfd: intel-lpss: Fix Intel Elkhart Lake LPSS I2C input clock (Steve Best) [1783586]
+- [mfd] mfd: intel-lpss: Add Intel Elkhart Lake PCH PCI IDs (Steve Best) [1783586]
+- [i2c] i2c: i801: Add support for Intel Elkhart Lake (Steve Best) [1783586]
+- [fs] fuse: fix bad inode (Miklos Szeredi) [1906908]
+- [fs] virtiofs: calculate number of scatter-gather elements accurately (Vivek Goyal) [1783467]
+- [fs] virtiofs: add logic to free up a memory range (Vivek Goyal) [1783467]
+- [fs] virtiofs: maintain a list of busy elements (Vivek Goyal) [1783467]
+- [fs] virtiofs: serialize truncate/punch_hole and dax fault path (Vivek Goyal) [1783467]
+- [fs] virtiofs: define dax address space operations (Vivek Goyal) [1783467]
+- [fs] virtiofs: add DAX mmap support (Vivek Goyal) [1783467]
+- [fs] virtiofs: implement dax read/write operations (Vivek Goyal) [1783467]
+- [uapi] virtiofs: introduce setupmapping/removemapping commands (Vivek Goyal) [1783467]
+- [fs] virtiofs: implement FUSE_INIT map_alignment field (Vivek Goyal) [1783467]
+- [fs] virtiofs: keep a list of free dax memory ranges (Vivek Goyal) [1783467]
+- [fs] virtiofs: add a mount option to enable dax (Vivek Goyal) [1783467]
+- [fs] virtiofs: set up virtio_fs dax_device (Vivek Goyal) [1783467]
+- [fs] virtiofs: get rid of no_mount_options (Vivek Goyal) [1783467]
+- [fs] virtiofs: provide a helper function for virtqueue initialization (Vivek Goyal) [1783467]
+- [fs] dax: Create a range version of dax_layout_busy_page() (Vivek Goyal) [1783467]
+- [dax] dax: Modify bdev_dax_pgoff() to handle NULL bdev (Vivek Goyal) [1783467]
+- [virtio] virtio: Implement get_shm_region for MMIO transport (Vivek Goyal) [1783467]
+- [virtio] virtio: Implement get_shm_region for PCI transport (Vivek Goyal) [1783467]
+- [include] virtio: Add get_shm_region method (Vivek Goyal) [1783467]
+- [fs] virtiofs: do not use fuse_fill_super_common() for device installation (Vivek Goyal) [1783467]
+- [uapi] fuse: reserve values for mapping protocol (Vivek Goyal) [1783467]
+- [fs] virtiofs: Convert virtiofs to use new mount API (Vivek Goyal) [1783467]
+- [fs] fuse: reject options on reconfigure via fsconfig(2) (Vivek Goyal) [1783467]
+- [fs] fuse: ignore 'data' argument of mount(..., MS_REMOUNT) (Vivek Goyal) [1783467]
+- [fs] fuse: use ->reconfigure() instead of ->remount_fs() (Vivek Goyal) [1783467]
+- [fs] fuse: switch to use errorfc() et.al (Vivek Goyal) [1783467]
+- [fs] fs_parse: fold fs_parameter_desc/fs_parameter_spec (Vivek Goyal) [1783467]
+- [fs] fs_parser: remove fs_parameter_description name field (Vivek Goyal) [1783467]
+- [fs] vfs: subtype handling moved to fuse (Vivek Goyal) [1783467]
+- [fs] fuse: convert to use the new mount API (Vivek Goyal) [1783467]
+- [lib] lib/zlib: fix inflating zlib streams on s390 (Philipp Rudo) [1908011]
+- [scsi] scsi: ibmvfc: Set default timeout to avoid crash during migration (Diego Domingos) [1890710]
+- [net] Bluetooth: Fix null pointer dereference in hci_event_packet() (Gopal Tiwari) [1921475]
+- [tools] selftests: fix poll error in udpgro.sh (Hangbin Liu) [1922213]
+- [net] mptcp: fix length of MP_PRIO suboption (Davide Caratti) [1923156]
+- [powerpc] powerpc/sstep: Fix array out of bound warning (Desnes Augusto Nunes do Rosario) [1908739]
+- [powerpc] powerpc/watchpoint: Workaround P10 DD1 issue with VSX-32 byte instructions (Desnes Augusto Nunes do Rosario) [1908739]
+- [powerpc] powerpc/sstep: Add testcases for VSX vector paired load/store instructions (Desnes Augusto Nunes do Rosario) [1908739]
+- [powerpc] powerpc/ppc-opcode: Add encoding macros for VSX vector paired instructions (Desnes Augusto Nunes do Rosario) [1908739]
+- [powerpc] powerpc/sstep: Support VSX vector paired storage access instructions (Desnes Augusto Nunes do Rosario) [1908739]
+- [powerpc] powerpc/sstep: Cover new VSX instructions under CONFIG_VSX (Desnes Augusto Nunes do Rosario) [1908739]
+- [powerpc] powerpc/sstep: Emulate prefixed instructions only when CPU_FTR_ARCH_31 is set (Desnes Augusto Nunes do Rosario) [1908739]
+- [net] fix setsockopt(SO_REUSEADDR) for MPTCP sockets (Paolo Abeni) [1922500]
+- [net] net_sched: avoid shift-out-of-bounds in tcindex_set_parms() (Davide Caratti) [1917366]
+- [net] net_sched: reject silly cell_log in qdisc_get_rtab() (Davide Caratti) [1917366]
+- [net] sched: prevent invalid Scell_log shift count (Davide Caratti) [1917366]
+- [net] netem: fix zero division in tabledist (Davide Caratti) [1917366]
+- [net] protect tcf_block_unbind with block lock (Davide Caratti) [1917366]
+- [pinctrl] pinctrl: intel: Add Intel Elkhart Lake pin controller support (Steve Best) [1783600]
+- [fs] dlm: fix invalid cluster name warning (Alexander Aring) [1655771]
+- [mm] arm64: acpi: Make apei_claim_sea() synchronise with APEI's irq work (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Fix doc warnings in iort.c (Al Stone) [1865698 1851555]
+- [acpi] ACPI, APEI, Fix error return value in apei_map_generic_address() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: fan: Initialize performance state sysfs attribute (Al Stone) [1865698 1851555]
+- [acpi] ACPI: DPTF: Support Alder Lake (Al Stone) [1865698 1851555]
+- [acpi] ACPI: button: Add DMI quirk for Medion Akoya E2228T (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Fix whitespace inconsistencies (Al Stone) [1865698 1851555]
+- [acpi] ACPI: button: Drop no longer necessary Acer SW5-012 lid_init_state quirk (Al Stone) [1865698 1851555]
+- [acpi] ACPI: dock: fix enum-conversion warning (Al Stone) [1865698 1851555]
+- [acpi] ACPI: utils: remove unreachable breaks (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Add missing type casts in GPE register access code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: DPTF: Add ACPI_DPTF Kconfig menu (Al Stone) [1865698 1851555]
+- [acpi] ACPI: DPTF: Fix participant driver names (Al Stone) [1865698 1851555]
+- [acpi] ACPI: processor: remove comment regarding string _UID support (Al Stone) [1865698 1851555]
+- [acpi] ACPI: reboot: Avoid racing after writing to ACPI RESET_REG (Al Stone) [1865698 1851555]
+- [acpi] ACPI: debug: don't allow debugging when ACPI is disabled (Al Stone) [1865698 1851555]
+- [dax] ACPI: HMAT: refactor hmat_register_target_device to hmem_register_device (Al Stone) [1865698 1851555]
+- [acpi] x86/numa: add 'nohmat' option (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Update version to 20200925 Version 20200925 (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Remove unnecessary semicolon (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Debugger: Add a new command: "ALL <NameSeg>" (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: iASL: Return exceptions for string-to-integer conversions (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: acpi_help: Update UUID list (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Add predefined names found in the SMBus sepcification (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Tree-wide: fix various typos and spelling mistakes (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Drop the repeated word "an" in a comment (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Add support for 64 bit risc-v compilation (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: PM: Drop ec_no_wakeup check from acpi_ec_dispatch_gpe() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: PM: Flush EC work unconditionally after wakeup (Al Stone) [1865698 1851555]
+- [acpi] ACPI: button: fix handling lid state changes when input device closed (Al Stone) [1865698 1851555]
+- [acpi] ACPI: scan: Replace ACPI_DEBUG_PRINT() with pr_debug() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: memhotplug: Remove 'state' from struct acpi_memory_device (Al Stone) [1865698 1851555]
+- [acpi] ACPI / extlog: Check for RDMSR failure (Al Stone) [1865698 1851555]
+- [acpi] node: Add access1 class to represent CPU to memory characteristics (Al Stone) [1865698 1851555]
+- [acpi] ACPI: HMAT: Fix handling of changes from ACPI 6.2 to ACPI 6.3 (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Let ACPI know we support Generic Initiator Affinity Structures (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Support Generic Initiator only domains (Al Stone) [1865698 1851555]
+- [acpi] ACPI / NUMA: Add stub function for pxm_to_node() (Al Stone) [1865698 1851555]
+- [acpi] virtio-mem: Allow to specify an ACPI PXM as nid (Al Stone) [1865698 1851555]
+- [acpi] ACPI: battery: include linux/power_supply.h (Al Stone) [1865698 1851555]
+- [acpi] ACPI: wakeup: Remove dead ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: video: Remove leftover ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: tiny-power-button: Remove dead ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: processor: Remove dead ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: proc: Remove dead ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: PCI: Remove unused ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: event: Remove leftover ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: dock: Remove dead ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: debugfs: Remove dead ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: custom_method: Remove dead ACPICA debug code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: container: Remove leftover ACPICA debug functionality (Al Stone) [1865698 1851555]
+- [acpi] ACPI: platform: Remove ACPI_MODULE_NAME() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: memhotplug: Remove leftover ACPICA debug functionality (Al Stone) [1865698 1851555]
+- [acpi] ACPI: LPSS: Remove ACPI_MODULE_NAME() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: cmos_rtc: Remove leftover ACPI_MODULE_NAME() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: PCI: update kernel-doc line comments (Al Stone) [1865698 1851555]
+- [acpi] PNP: ACPI: Fix missing-prototypes in acpi_pnp.c (Al Stone) [1865698 1851555]
+- [acpi] ACPI: configfs: Add missing config_item_put() to fix refcount leak (Al Stone) [1865698 1851555]
+- [acpi] ACPI: video: use ACPI backlight for HP 635 Notebook (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APD: Clean up header file include statements (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APD: Remove unnecessary APD_ADDR() macro stub (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APD: Remove ACPI_MODULE_NAME() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APD: Remove flags from struct apd_device_desc (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APD: Add kerneldoc for properties in struct apd_device_desc (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Remove side effect of partly creating a node in acpi_get_node() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Rename acpi_map_pxm_to_online_node() to pxm_to_online_node() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Do not create new NUMA domains from ACPI static tables that are not SRAT (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Add out of bounds and numa_off protections to pxm_to_node() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: processor: Print more information when acpi_processor_evaluate_cst() fails (Al Stone) [1865698 1851555]
+- [acpi] ACPI: DPTF: Add PCH FIVR participant driver (Al Stone) [1865698 1851555]
+- [acpi] PCI/ACPI: Add Ampere Altra SOC MCFG quirk (Al Stone) [1865698 1851555]
+- [acpi] ACPI / APEI: Add a notifier chain for unknown (vendor) CPER records (Al Stone) [1865698 1851555]
+- [acpi] ACPI / PMIC: Move TPS68470 OpRegion driver to drivers/acpi/pmic/ (Al Stone) [1865698 1851555]
+- [acpi] ACPI / PMIC: Split out Kconfig and Makefile specific for ACPI PMIC (Al Stone) [1865698 1851555]
+- [acpi] PCI/ACPI: Tone down missing MCFG message (Al Stone) [1865698 1851555]
+- [acpi] ACPI: OSL: Make ACPICA use logical addresses of GPE blocks (Al Stone) [1865698 1851555]
+- [acpi] ACPI: OSL: Change the type of acpi_os_map_generic_address() return value (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Add support for using logical addresses of GPE blocks (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Remove the unused inline functions (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Drop the unused @ops of iort_add_device_replay() (Al Stone) [1865698 1851555]
+- [acpi] ACPI / LPSS: Save Cherry Trail PWM ctx registers only once (at activation) (Al Stone) [1865698 1851555]
+- [acpi] ACPI / LPSS: Resume Cherry Trail PWM controller in no-irq phase (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Introduce special struct type for GPE register addresses (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Introduce acpi_hw_gpe_read() and acpi_hw_gpe_write() (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Validate GPE blocks at init time (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Export acpi_get_first_physical_node() to modules (Al Stone) [1865698 1851555]
+- [kernel] rcu/tree: Export rcu_idle_{enter, exit} to modules (Al Stone) [1865698 1851555]
+- [acpi] ACPI: GED: fix -Wformat (Al Stone) [1865698 1851555]
+- [acpi] ACPI: processor: Fix build for ARCH_APICTIMER_STOPS_ON_C3 unset (Al Stone) [1865698 1851555]
+- [acpi] ACPI: processor: Take over RCU-idle for C3-BM idle (Al Stone) [1865698 1851555]
+- [acpi] ACPI: processor: Use CPUIDLE_FLAG_TLB_FLUSHED (Al Stone) [1865698 1851555]
+- [acpi] ACPI: processor: Use CPUIDLE_FLAG_TIMER_STOP (Al Stone) [1865698 1851555]
+- [acpi] ACPI: OSL: Prevent acpi_release_memory() from returning too early (Al Stone) [1865698 1851555]
+- [acpi] ACPI: ioremap: avoid redundant rounding to OS page size (Al Stone) [1865698 1851555]
+- [acpi] ACPI: SoC: APD: Check return value of acpi_dev_get_property() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APD: Add a fmw property is_raven (Al Stone) [1865698 1851555]
+- [include] ACPI: APD: Change name from ST to FCH (Al Stone) [1865698 1851555]
+- [acpi] i2c: designware: Add device HID for Hygon I2C controller (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Add an input ID to acpi_dma_configure() (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Remove useless PCI bus walk (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Make iort_msi_map_rid() PCI agnostic (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Make iort_get_device_domain IRQ domain agnostic (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Make iort_match_node_callback walk the ACPI namespace for NC (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APEI: remove redundant assignment to variable rc (Al Stone) [1865698 1851555]
+- [acpi] ACPI: NUMA: Remove the useless 'node >= MAX_NUMNODES' check (Al Stone) [1865698 1851555]
+- [acpi] ACPI: NUMA: Remove the useless sub table pointer check (Al Stone) [1865698 1851555]
+- [acpi] ACPI: tables: Remove the duplicated checks for acpi_parse_entries_array() (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Update version to 20200717 (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Do not increment operation_region reference counts for field units (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Replace one-element array with flexible-array (Al Stone) [1865698 1851555]
+- [acpi] ACPI: acpi_pad: initialize preferred_cpu (Al Stone) [1865698 1851555]
+- [acpi] ACPI: OSL: Clean up the removal of unused memory mappings (Al Stone) [1865698 1851555]
+- [acpi] ACPI: OSL: Use deferred unmapping in acpi_os_unmap_iomem() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: OSL: Use deferred unmapping in acpi_os_unmap_generic_address() (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Preserve memory opregion mappings (Al Stone) [1865698 1851555]
+- [acpi] ACPI: OSL: Implement deferred unmapping of ACPI memory (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Use fallthrough pseudo-keyword (Al Stone) [1865698 1851555]
+- [acpi] acpi: thermal: Don't call thermal_zone_device_is_enabled() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: fan: Fix Tiger Lake ACPI device ID (Al Stone) [1865698 1851555]
+- [acpi] ACPI: DPTF: Add battery participant for TigerLake (Al Stone) [1865698 1851555]
+- [acpi] ACPI: tables: avoid relocations for table signature array (Al Stone) [1865698 1851555]
+- [acpi] ACPI: PAD: Eliminate usage of uninitialized_var() macro (Al Stone) [1865698 1851555]
+- [acpi] ACPI: sysfs: add newlines when printing module parameters (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: add newline when printing 'ec_event_clearing' module parameter (Al Stone) [1865698 1851555]
+- [acpi] ACPI: sysfs: Fix pm_profile_attr type (Al Stone) [1865698 1851555]
+- [acpi] ACPI: property: use cached name in acpi_fwnode_get_named_child_node() (Al Stone) [1865698 1851555]
+- [acpi] sched,acpi_pad: Convert to sched_set_fifo*() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: PM: Avoid using power resources if there are none for D0 (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Update version to 20200528 (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: iASL: add new OperationRegion subtype keyword PlatformRtMechanism (Al Stone) [1865698 1851555]
+- [acpi] ACPI: CPPC: Fix reference count leak in acpi_cppc_processor_probe() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: sysfs: Fix reference count leak in acpi_sysfs_add_hotplug_profile() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: GED: use correct trigger type field in _Exx / _Lxx handling (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Remove the unused __get_pci_rid() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: PM: s2idle: Extend GPE dispatching debug message (Al Stone) [1865698 1851555]
+- [acpi] ACPI: PM: s2idle: Print type of wakeup debug messages (Al Stone) [1865698 1851555]
+- [acpi] ACPI: DPTF: Add battery participant driver (Al Stone) [1865698 1851555]
+- [acpi] ACPI: DPTF: Additional sysfs attributes for power participant driver (Al Stone) [1865698 1851555]
+- [acpi] ACPI: video: Use native backlight on Acer TravelMate 5735Z (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: Fix PMCG node single ID mapping handling (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APEI: Kick the memory_failure() queue for synchronous errors (Al Stone) [1865698 1851555]
+- [mm] mm/memory-failure: Add memory_failure_queue_kick() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: IORT: Add comments for not calling acpi_put_table() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: GTDT: Put GTDT table after parsing (Al Stone) [1865698 1851555]
+- [acpi] ACPI / PMIC: Add i2c address for thermal control (Al Stone) [1865698 1851555]
+- [acpi] ACPI: GED: add support for _Exx / _Lxx handler methods (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Delete unused proc filename macros (Al Stone) [1865698 1851555]
+- [acpi] ACPI: IORT: Add extra message "applying workaround" for off-by-1 issue (Al Stone) [1865698 1851555]
+- [acpi] ACPI: utils: Add acpi_evaluate_reg() helper (Al Stone) [1865698 1851555]
+- [acpi] ACPI: debug: Make two functions static (Al Stone) [1865698 1851555]
+- [acpi] ACPI: sleep: Put the FACS table after using it (Al Stone) [1865698 1851555]
+- [acpi] ACPI: scan: Put SPCR and STAO table after using it (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Put the ACPI table after using it (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APEI: Put the HEST table for error path (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APEI: Put the error record serialization table for error path (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APEI: Put the error injection table for error path and module exit (Al Stone) [1865698 1851555]
+- [acpi] ACPI: APEI: Put the boot error record table after parsing (Al Stone) [1865698 1851555]
+- [acpi] ACPI: watchdog: Put the watchdog action table after parsing (Al Stone) [1865698 1851555]
+- [acpi] ACPI: LPIT: Put the low power idle table after using it (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Update version to 20200430 (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Fix required parameters for _NIG and _NIH (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Dispatcher: add status checks (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Disassembler: ignore AE_ALREADY_EXISTS status when parsing create operators (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Move acpi_gbl_next_cmd_num definition to acglobal.h (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Make acpi_protocol_lengths static (Al Stone) [1865698 1851555]
+- [acpi] ACPI/IORT: work around num_ids ambiguity (Al Stone) [1865698 1851555]
+- [acpi] Revert "ACPI/IORT: Fix 'Number of IDs' handling in iort_id_map()" (Al Stone) [1865698 1851555]
+- [pci] PCI: Constify struct pci_ecam_ops (Al Stone) [1865698 1851555]
+- [acpi] PM: ACPI: Output correct message on target power state (Al Stone) [1865698 1851555]
+- [acpi] ACPI: CPPC: Make some symbols static (Al Stone) [1865698 1851555]
+- [acpi] ACPI: processor: idle: Allow probing on platforms with one ACPI C-state (Al Stone) [1865698 1851555]
+- [documentation] PM: sleep: core: Rename DPM_FLAG_LEAVE_SUSPENDED (Al Stone) [1865698 1851555]
+- [acpi] PM: sleep: core: Rename dev_pm_smart_suspend_and_suspended() (Al Stone) [1865698 1851555]
+- [acpi] PM: sleep: core: Rename dev_pm_may_skip_resume() (Al Stone) [1865698 1851555]
+- [acpi] PM: sleep: core: Rework the power.may_skip_resume handling (Al Stone) [1865698 1851555]
+- [acpi] PM: sleep: core: Do not skip callbacks in the resume phase (Al Stone) [1865698 1851555]
+- [base] PM: sleep: core: Switch back to async_schedule_dev() (Al Stone) [1865698 1851555]
+- [base] PM: sleep: core: Fold functions into their callers (Al Stone) [1865698 1851555]
+- [base] PM: sleep: core: Simplify the SMART_SUSPEND flag handling (Al Stone) [1865698 1851555]
+- [base] PM: sleep: core: Use built-in RCU list checking (Al Stone) [1865698 1851555]
+- [base] PM: core: Fix handling of devices deleted during system-wide resume (Al Stone) [1865698 1851555]
+- [base] PM: sleep: Drop dpm_noirq_begin() and dpm_noirq_end() (Al Stone) [1865698 1851555]
+- [kernel] PM: sleep: Integrate suspend-to-idle with generig suspend flow (Al Stone) [1865698 1851555]
+- [base] PM: sleep: Drop dev_pm_skip_next_resume_phases() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: button: Drop no longer necessary Asus T200TA lid_init_state quirk (Al Stone) [1865698 1851555]
+- [acpi] ACPI/PCI: pci_link: use extended_irq union member when setting ext-irq shareable (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Fix up fast path check in acpi_ec_add() (Al Stone) [1865698 1851555]
+- [x86] ACPI, x86/boot: make acpi_nobgrt static (Al Stone) [1865698 1851555]
+- [x86] acpi/x86: add a kernel parameter to disable ACPI BGRT (Al Stone) [1865698 1851555]
+- [acpi] x86: ACPI: fix CPU hotplug deadlock (Al Stone) [1865698 1851555]
+- [x86] acpi/x86: ignore unspecified bit positions in the ACPI global lock field (Al Stone) [1865698 1851555]
+- [x86] x86/acpi: make "asmlinkage" part first thing in the function definition (Al Stone) [1865698 1851555]
+- [x86] x86/ACPI/sleep: Move acpi_get_wakeup_address() into sleep.c, remove <asm/realmode.h> from <asm/acpi.h> (Al Stone) [1865698 1851555]
+- [x86] x86/ACPI/sleep: Remove an unnecessary include of asm/realmode.h (Al Stone) [1865698 1851555]
+- [x86] x86/efi: Explicitly include realmode.h to handle RM trampoline quirk (Al Stone) [1865698 1851555]
+- [acpi] ACPI: video: Use native backlight on Acer Aspire 5783z (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Update version 20200326 (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Fixes for acpiExec namespace init file (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: WSMT: Fix typo, no functional change (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: utilities: fix sprintf() (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: acpiexec: remove redeclaration of acpi_gbl_db_opt_no_region_support (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Change PlatformCommChannel ASL keyword to PCC (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Fix IVRS IVHD type 10h reserved field name (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Implement IVRS IVHD type 11h parsing (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Fix a typo in a comment field (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Update version to 20200214 (Al Stone) [1865698 1851555]
+- [acpi] ACPI: CPPC: clean up acpi_get_psd_map() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: PCI: Use scnprintf() for avoiding potential buffer overflow (Al Stone) [1865698 1851555]
+- [acpi] ACPI: fan: Use scnprintf() for avoiding potential buffer overflow (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Eliminate EC_FLAGS_QUERY_HANDSHAKE (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Do not clear boot_ec_is_ecdt in acpi_ec_add() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Simplify acpi_ec_ecdt_start() and acpi_ec_init() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Consolidate event handler installation code (Al Stone) [1865698 1851555]
+- [acpi] ACPI: list_for_each_safe() -> list_for_each_entry_safe() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: video: remove redundant assignments to variable result (Al Stone) [1865698 1851555]
+- [acpi] ACPI: OSL: Add missing __acquires/__releases annotations (Al Stone) [1865698 1851555]
+- [acpi] ACPI / battery: Cleanup Lenovo Ideapad Miix 320 DMI table entry (Al Stone) [1865698 1851555]
+- [acpi] ACPI / AC: Cleanup DMI quirk table (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Use fast path in acpi_ec_add() for DSDT boot EC (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Simplify acpi_ec_add() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Drop AE_NOT_FOUND special case from ec_install_handlers() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: EC: Avoid passing redundant argument to functions (Al Stone) [1865698 1851555]
+- [include] ACPI: NUMA: Up-level "map to online node" functionality (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Fix a couple of typos (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: use acpi_size instead of u32 for prefix_path_length (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: cast length arguement to acpi_ns_build_normalized_path() as u32 (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: cast the result of the pointer difference to u32 (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Table Manager: Update comments in a function header (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Enable sleep button on ACPI legacy wake (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: Fix a comment "enable" fixed events -> "disable" all fixed events (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: ASL-ASL+ converter: make root file a parameter for cv_init_file_tree (Al Stone) [1865698 1851555]
+- [acpi] ACPICA: ASL-ASL+ converter: remove function parameters from cv_init_file_tree() (Al Stone) [1865698 1851555]
+- [acpi] ACPI: Add new tiny-power-button driver to directly signal init (Al Stone) [1865698 1851555]
+- [acpi] ACPI: button: move HIDs to acpi/button.h (Al Stone) [1865698 1851555]
+- [acpi] ACPI: treewide: remove redundant IS_ERR() before error code check (Al Stone) [1865698 1851555]
+- [dma] dmaengine: idma64: Use actual device for DMA transfers (Steve Best) [1784118]
+- [platform] platform/x86: dell-smbios-wmi: Correct a memory leak (David Arcari) [1898516]
+- [x86] x86/{mce,mm}: Unmap the entire page if the whole page is affected and poisoned (Aristeu Rozanski) [1850800]
+
+* Tue Feb 09 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-285.el8]
+- [x86] kvm: x86: fix CPUID entries returned by KVM_GET_CPUID2 ioctl (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: use kvm_complete_insn_gp in emulating RDMSR/WRMSR (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: remove bogus #GP injection (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: svm: de-allocate svm_cpu_data for all cpus in svm_cpu_uninit() (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: Fix split-irqchip vs interrupt injection window request (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: handle !lapic_in_kernel case in kvm_cpu_*_extint (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: svm: fix error return code in svm_create_vcpu() (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: svm: Fix offset computation bug in __sev_dbg_decrypt() (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Use cpuid to determine max gfn (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: mmu: Fix SPTE encoding of MMIO generation upper half (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: nvmx: Sync unsync'd vmcs02 state to vmcs12 on migration (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: tracing: Fix unmatched kvm_entry and kvm_exit events (Paolo Bonzini) [1904054 1906893 1904128]
+- [documentation] kvm: documentation: Update description of KVM_{GET, CLEAR}_DIRTY_LOG (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: get smi pending status correctly (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/pmu: Fix HW_REF_CPU_CYCLES event pseudo-encoding in intel_arch_events[] (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/pmu: Fix UBSAN shift-out-of-bounds warning in intel_pmu_refresh() (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: Add more protection against undefined behavior in rsvd_bits() (Paolo Bonzini) [1904054 1906893 1904128]
+- [documentation] kvm: documentation: Fix spec for KVM_CAP_ENABLE_CAP_VM (Paolo Bonzini) [1904054 1906893 1904128]
+- [documentation] kvm: Forbid the use of tagged userspace addresses for memslots (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: allow KVM_REQ_GET_NESTED_STATE_PAGES outside guest mode for VMX (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: nsvm: cancel KVM_REQ_GET_NESTED_STATE_PAGES on nested vmexit (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: nsvm: mark vmcb as dirty when forcingly leaving the guest mode (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: nsvm: correctly restore nested_run_pending on migration (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Clarify TDP MMU page list invariants (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Ensure TDP MMU roots are freed after yield (Paolo Bonzini) [1904054 1906893 1904128]
+- [security] apparmor: remove duplicate macro list_entry_is_head() (Paolo Bonzini) [1904054 1906893 1904128]
+- [kernel] linux/list.h: add a macro to test if entry is pointing to the head (Paolo Bonzini) [1904054 1906893 1904128]
+- [virt] kvm: check tlbs_dirty directly (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: change in pv_eoi_get_pending() to make code more readable (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: fix shift out of bounds reported by UBSAN (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Optimize not-present/MMIO SPTE check in get_mmio_spte() (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Use raw level to index into MMIO walks' sptes array (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Get root level from walkers when retrieving MMIO SPTE (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Use -1 to flag an undefined spte in get_mmio_spte() (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: svm: Remove the call to sev_platform_status() during setup (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: svm: Don't flush cache if hardware enforces cache coherency across encryption domains (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] cpu: Add hardware-enforced cache coherency as a CPUID feature (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] Remove X86_FEATURE_MFENCE_RDTSC (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: reinstate vendor-agnostic check on SPEC_CTRL cpuid bits (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm/vmx: Use TEST REG, REG instead of CMP $0, REG in vmenter.S (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: ignore SIPIs that are received while not in wait-for-sipi state (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: nsvm: set fixed bits by hand (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Add TDP MMU SPTE changed trace point (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86/mmu: Add existing trace points to TDP MMU (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: svm: check CR4 changes against vcpu->arch (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: adjust SEV for commit 7e8e6eed75e (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: svm: Move asid to vcpu_svm (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: remove unused macro HV_CLOCK_SIZE (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: Sink cpuid update into vendor-specific set_cr4 functions (Paolo Bonzini) [1904054 1906893 1904128]
+- [virt] kvm: remove kvm_clear_guest_page (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: Don't track dirty for KVM_SET_[TSS_ADDR|IDENTITY_MAP_ADDR] (Paolo Bonzini) [1904054 1906893 1904128]
+- [tools] kvm: selftests: test KVM_GET_SUPPORTED_HV_CPUID as a system ioctl (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: hyper-v: allow KVM_GET_SUPPORTED_HV_CPUID as a system ioctl (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: emulate wait-for-SIPI and SIPI-VMExit (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: fix apic_accept_events vs check_nested_events (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: Return bool instead of int for CR4 and SREGS validity checks (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: x86: Move vendor CR4 validity check to dedicated kvm_x86_ops hook (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: svm: Drop VMXE check from svm_set_cr4() (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: vmx: Drop explicit 'nested' check from vmx_set_cr4() (Paolo Bonzini) [1904054 1906893 1904128]
+- [x86] kvm: vmx: Drop guest CPUID check for VMXE in vmx_set_cr4() (Paolo Bonzini) [1904054 1906893 1904128]
+- [netdrv] net/mlx5e: Update max_opened_tc also when channels are closed (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5: Fix leak upon failure of rule creation (Alaa Hleihel) [1918379 1914766]
+- [netdrv] net/mlx5: Fix function calculation for page trees (Alaa Hleihel) [1918379]
+- [infiniband] RDMA/mlx5: Allow creating all QPs even when non RDMA profile is used (Alaa Hleihel) [1918379]
+- [netdrv] mlx5: Mark BlueField-3 as unsupported device (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5: Update the list of the PCI supported devices (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5: Enable host PF HCA after eswitch is initialized (Alaa Hleihel) [1923760 1918379]
+- [netdrv] net/mlx5: Rename peer_pf to host_pf (Alaa Hleihel) [1923760 1918379]
+- [netdrv] net/mlx5: Make API mlx5_core_is_ecpf accept const pointer (Alaa Hleihel) [1923760 1918379]
+- [netdrv] net/mlx5: simplify the return expression of mlx5_ec_init() (Alaa Hleihel) [1918379]
+- [infiniband] IB/mlx5: Add mutex destroy call to cap_mask_mutex mutex (Alaa Hleihel) [1918379]
+- [infiniband] RDMA/mlx5: Use strict get/set operations for obj_id (Alaa Hleihel) [1918379]
+- [infiniband] RDMA/mlx5: Use the correct obj_id upon DEVX TIR creation (Alaa Hleihel) [1918379]
+- [include] net/mlx5: Expose ifc bits for query modify header (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5: CT: Fix incorrect removal of tuple_nat_node from nat rhashtable (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: Revert parameters on errors when changing MTU and LRO state without reset (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: Revert parameters on errors when changing trust state without reset (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: Correctly handle changing the number of queues when the interface is down (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: Fix CT rule + encap slow path offload and deletion (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: Disable hw-tc-offload when MLX5_CLS_ACT config is disabled (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5: Maintain separate page trees for ECPF and PF functions (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: Fix IPSEC stats (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: Reduce tc unsupported key print level (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: free page before return (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: E-switch, Fix rate calculation for overflow (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5: Fix memory leak on flow table creation error flow (Alaa Hleihel) [1918379]
+- [infiniband] Revert "RDMA/mlx5: Fix devlink deadlock on net namespace deletion" (Alaa Hleihel) [1918379]
+- [infiniband] RDMA/mlx5: Fix wrong free of blue flame register on error (Alaa Hleihel) [1918379]
+- [infiniband] IB/mlx5: Fix error unwinding when set_has_smi_cap fails (Alaa Hleihel) [1918379]
+- [netdrv] net/mlx5e: Add missing capability check for uplink follow (Alaa Hleihel) [1918379]
+- [netdrv] iavf: Use kzalloc for allocating only one thing (Stefan Assmann) [1838735]
+- [netdrv] iavf: fix double-release of rtnl_lock (Stefan Assmann) [1838735]
+- [netdrv] intel-ethernet: clean up W=1 warnings in kdoc (Stefan Assmann) [1838735]
+- [netdrv] iavf: Fix updating statistics (Stefan Assmann) [1838735]
+- [netdrv] iavf: fix error return code in iavf_init_get_resources() (Stefan Assmann) [1838735]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Stefan Assmann) [1838735]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Stefan Assmann) [1838735]
+- [net] Bluetooth: Fix null pointer dereference in amp_read_loc_assoc_final_data (Gopal Tiwari) [1916057]
+- [fs] fs/fs-writeback.c: fix kernel-doc warning (Waiman Long) [1918047]
+- [include] memcg: only record foreign writebacks with dirty pages when memcg is not disabled (Waiman Long) [1918047]
+- [trace] writeback: don't access page->mapping directly in track_foreign_dirty TP (Waiman Long) [1918047]
+- [fs] writeback: add tracepoints for cgroup foreign writebacks (Waiman Long) [1918047]
+- [mm] writeback, memcg: Implement foreign dirty flushing (Waiman Long) [1918047]
+- [mm] mm: remove the account_page_dirtied export (Waiman Long) [1918047]
+- [fs] writeback, memcg: Implement cgroup_writeback_by_id() (Waiman Long) [1918047]
+- [mm] writeback: Separate out wb_get_lookup() from wb_get_create() (Waiman Long) [1918047]
+- [include] bdi: Add bdi->id (Waiman Long) [1918047]
+- [mm] mm/page-writeback: introduce tracepoint for wait_on_page_writeback() (Waiman Long) [1918047]
+- [fs] kernfs: fix barrier usage in __kernfs_new_node() (Waiman Long) [1918047]
+- [fs] kernfs: Allocating memory for kernfs_iattrs with kmem_cache (Waiman Long) [1918047]
+- [fs] fs: Convert writeback to XArray (Waiman Long) [1918047]
+- [mm] mm: Convert page-writeback to XArray (Waiman Long) [1918047]
+- [mm] mm/filemap: add missing mem_cgroup_uncharge() to __add_to_page_cache_locked() (Waiman Long) [1917681]
+- [mm] mm/slub: fix panic in slab_alloc_node() (Oleksandr Natalenko) [1921056]
+- [net] xfrm: interface: fix the priorities for ipip and ipv6 tunnels (Sabrina Dubroca) [1923269]
+- [net] netfilter: ipset: fix shift-out-of-bounds in htable_bits() (Antoine Tenart) [1918684]
+- [net] tcp: refine tcp_pacing_delay() for very low pacing rates (Antoine Tenart) [1905897]
+- [net] ensure correct skb->tstamp in various fragmenters (Antoine Tenart) [1905897]
+- [net] tcp: repaired skbs must init their tso_segs (Antoine Tenart) [1905897]
+- [net] tcp: address problems caused by EDT misshaps (Antoine Tenart) [1905897]
+- [net] net_sched: sch_fq: ensure maxrate fq parameter applies to EDT flows (Antoine Tenart) [1905897]
+- [net] tcp: refine tcp_tso_should_defer() after EDT adoption (Antoine Tenart) [1905897]
+- [net] tcp_bbr: update comments to reflect pacing_margin_percent (Antoine Tenart) [1905897]
+- [net] tcp: add tcp_reset_xmit_timer() helper (Antoine Tenart) [1905897]
+- [net] tcp: fix TCP_REPAIR xmit queue setup (Antoine Tenart) [1905897]
+- [net] tcp_bbr: adjust TCP BBR for departure time pacing (Antoine Tenart) [1905897]
+- [net] tcp_bbr: fix typo in bbr_pacing_margin_percent (Antoine Tenart) [1905897]
+- [net] tcp: optimize tcp internal pacing (Antoine Tenart) [1905897]
+- [net] net_sched: sch_fq: no longer use skb_is_tcp_pure_ack() (Antoine Tenart) [1905897]
+- [net] tcp: mitigate scheduling jitter in EDT pacing model (Antoine Tenart) [1905897]
+- [net] tcp: do not change tcp_wstamp_ns in tcp_mstamp_refresh (Antoine Tenart) [1905897]
+- [net] tcp/fq: move back to CLOCK_MONOTONIC (Antoine Tenart) [1905897]
+- [net] tcp: switch tcp_internal_pacing() to tcp_wstamp_ns (Antoine Tenart) [1905897]
+- [net] tcp: switch tcp and sch_fq to new earliest departure time model (Antoine Tenart) [1905897]
+- [net] tcp: switch internal pacing timer to CLOCK_TAI (Antoine Tenart) [1905897]
+- [net] tcp: provide earliest departure time in skb->tstamp (Antoine Tenart) [1905897]
+- [net] tcp: add tcp_wstamp_ns socket field (Antoine Tenart) [1905897]
+- [net] net_sched: sch_fq: switch to CLOCK_TAI (Antoine Tenart) [1905897]
+- [net] tcp: introduce tcp_skb_timestamp_us() helper (Antoine Tenart) [1905897]
+- [net] tcp: switch tcp_clock_ns() to CLOCK_TAI base (Antoine Tenart) [1905897]
+- [drm] drm/nouveau/disp/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/dmaobj/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/i2c/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/gpio/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/bar/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/mmu/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/timer/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/fb/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/imem/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/privring/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/mc/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/devinit/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/bios/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/pci/ga10: initial support (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/core: recognise GA10 (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/kms/nv50-: fix case where notifier buffer is at offset 0 (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/mmu: fix vram heap sizing (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/i2c/gm200: increase width of aux semaphore owner fields (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/i2c/gk110-: disable hw-initiated dpcd reads (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/i2c/gk110: split out from i2c/gk104 (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/privring: ack interrupts the same way as RM (Ben Skeggs) [1916583]
+- [drm] drm/nouveau/bios: fix issue shadowing expansion ROMs (Ben Skeggs) [1916583]
+- [netdrv] net/mlx5e: Fix memleak in mlx5e_create_l2_table_groups (Alaa Hleihel) [1899457]
+- [netdrv] net/mlx5e: Fix two double free cases (Alaa Hleihel) [1899457]
+- [netdrv] net/mlx5e: ethtool, Fix restriction of autoneg with 56G (Alaa Hleihel) [1899457]
+- [netdrv] net/mlx5e: In skb build skip setting mark in switchdev mode (Alaa Hleihel) [1899457]
+- [netdrv] net/mlx5: E-Switch, fix changing vf VLANID (Alaa Hleihel) [1899457]
+- [netdrv] net/mlx5e: Fix SWP offsets when vlan inserted by driver (Alaa Hleihel) [1899457 1819580]
+- [netdrv] net/mlx5: Use port_num 1 instead of 0 when delete a RoCE address (Alaa Hleihel) [1899457]
+- [netdrv] net/mlx5: Check if lag is supported before creating one (Alaa Hleihel) [1899457]
+- [infiniband] RDMA/mlx5: Fix MR cache memory leak (Alaa Hleihel) [1899457]
+- [netdrv] net/mlx5: Fix passing zero to 'PTR_ERR' (Alaa Hleihel) [1899457]
+- [netdrv] net/mlx5e: remove unnecessary memset (Alaa Hleihel) [1899457]
+- [infiniband] RDMA/mlx5: Assign dev to DM MR (Alaa Hleihel) [1899457]
+- [infiniband] RDMA/mlx5: Remove mlx5_ib_mr->npages (Alaa Hleihel) [1899457]
+- [documentation] scsi: fc: Update documentation of sysfs nodes for FPIN stats (Ewan Milne) [1859967]
+- [scsi] scsi: fc: Add mechanism to update FPIN signal statistics (Ewan Milne) [1859967]
+- [scsi] scsi: fc: Parse FPIN packets and update statistics (Ewan Milne) [1859967]
+- [scsi] scsi: fc: Add FPIN statistics to fc_host and fc_rport objects (Ewan Milne) [1859967]
+- [uapi] scsi: fc: Update formal FPIN descriptor definitions (Ewan Milne) [1859967]
+- [scsi] scsi: smartpqi: Update version to 1.2.16-012 (Don Brace) [1890727 1889844]
+- [scsi] scsi: smartpqi: Correct pqi_sas_smp_handler busy condition (Don Brace) [1890727 1889844]
+- [scsi] scsi: smartpqi: Correct driver removal with HBA disks (Don Brace) [1890727 1889844]
+- [target] scsi: target: Fix XCOPY NAA identifier lookup (Maurizio Lombardi) [1900463] {CVE-2020-28374}
+- [x86] perf/x86/intel/uncore: Add Comet Lake support (Michael Petlan) [1873271]
+
+* Mon Feb 08 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-284.el8]
+- [net] bridge: Fix a warning when del bridge sysfs (Davide Caratti) [1917518]
+- [net] bridge: Avoid infinite loop when suppressing NS messages with invalid options (Davide Caratti) [1917518]
+- [net] bridge: fix stale eth hdr pointer in br_dev_xmit (Davide Caratti) [1917518]
+- [net] SUNRPC: Handle 0 length opaque XDR object data properly (Dave Wysochanski) [1906400]
+- [net] SUNRPC: Move simple_get_bytes and simple_get_netobj into private header (Dave Wysochanski) [1906400]
+- [block] nbd: make the config put is called before the notifying the waiter (Ming Lei) [1743857]
+- [block] nbd: restore default timeout when setting it to zero (Ming Lei) [1743857]
+- [kernel] rcu/tree: Defer kvfree_rcu() allocation to a clean context (Waiman Long) [1922453]
+- [kernel] cgroup: Fix memory leak when parsing multiple source parameters (Waiman Long) [1922453]
+- [kernel] cpuset: fix race between hotplug work and later CPU offline (Waiman Long) [1922453]
+- [kernel] cgroup: freezer: call cgroup_enter_frozen() with preemption disabled in ptrace_stop() (Waiman Long) [1922453]
+- [kernel] cgroup: freezer: fix frozen state inheritance (Waiman Long) [1922453]
+- [kernel] locking/lockdep: Cure noinstr fail (Waiman Long) [1922453]
+- [kernel] tick/nohz: Narrow down noise while setting current task's tick dependency (Waiman Long) [1922453]
+- [fs] fs: Kill DCACHE_DONTCACHE dentry even if DCACHE_REFERENCED is set (Eric Sandeen) [1921903]
+- [fs] fs: Handle I_DONTCACHE in iput_final() instead of generic_drop_inode() (Eric Sandeen) [1921903]
+- [netdrv] ice: update dev_addr in ice_set_mac_address even if HW filter exists (Jonathan Toppins) [1879318]
+- [tools] libbpf: Fix uninitialized variable in btf_parse_type_sec (Jiri Olsa) [1922197]
+- [tools] libbpf: Support BTF loading and raw data output in both endianness (Jiri Olsa) [1922197]
+- [tools] selftests/bpf: Test BTF writing APIs (Jiri Olsa) [1922197]
+- [tools] libbpf: Add btf__str_by_offset() as a more generic variant of name_by_offset (Jiri Olsa) [1922197]
+- [tools] libbpf: Add BTF writing APIs (Jiri Olsa) [1922197]
+- [tools] libbpf: Add btf__new_empty() to create an empty BTF object (Jiri Olsa) [1922197]
+- [tools] libbpf: Allow modification of BTF and add btf__add_str API (Jiri Olsa) [1922197]
+- [tools] libbpf: Extract generic string hashing function for reuse (Jiri Olsa) [1922197]
+- [tools] libbpf: Generalize common logic for managing dynamically-sized arrays (Jiri Olsa) [1922197]
+- [tools] libbpf: Remove assumption of single contiguous memory for BTF data (Jiri Olsa) [1922197]
+- [tools] libbpf: Refactor internals of BTF type index (Jiri Olsa) [1922197]
+- [tools] libbpf: Remove any use of reallocarray() in libbpf (Jiri Olsa) [1922197]
+- [tools] libbpf: Clean up and improve CO-RE reloc logging (Jiri Olsa) [1922197]
+- [tools] libbpf: Improve error logging for mismatched BTF kind cases (Jiri Olsa) [1922197]
+- [scsi] scsi: qla2xxx: Fix mailbox Ch erroneous error (Nilesh Javali) [1894578]
+- [sound] ALSA: ASoC: Intel: tgl: remove sof_fw_filename set for tgl_3_in_1_default (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: allow soundwire use desc->default_fw_filename (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: Intel: sof_sdw: set proper flags for Dell TGL-H SKU 0A5E (Jaroslav Kysela) [1783462]
+- [sound] ALSA: hda: intel-dsp-config: add PCI id for TGL-H (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Properly unregister DAI on removal (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Fix memory corruption in soc_tplg_denum_create_values() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Add missing size check (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Fix wrong size check (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Simplify remove_widget function (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Remove empty functions (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Change allocations to resource managed (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Unify all device references (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Remove unused functions from topology API (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98926: drop driver pm=NULL assignment (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98925: drop driver pm=NULL assignment (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98926: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98925: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max9867: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: codecs: max98373-sdw: align regmap use with other codecs (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98371: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98390: Fix error codes in max98390_dsm_init() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98371: drop driver pm=NULL assignment (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98095: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98373: don't access volatile registers in bias level off (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: max98090: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: pcm: DRAIN support reactivation (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt711: mutex between calibration and power state changes (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt711: remove warnings (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt5660: skip of_device_id table when !CONFIG_OF (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: codecs: rt*.c: remove useless pointer cast (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt1015p: delay 300ms after SDB pulling high for calibration (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt1015p: move SDB control from trigger to DAPM (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt1015: check the return value of regmap_read during i2c probe (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt1015: modification for calibration to get better performance (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt1015: support TDM slot configuration (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: qcom: Fix build failure when slimbus is module (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: Fix DEBUG_LOCKS_WARN_ON for uninitialized attribute (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: master: use pm_runtime_set_active() on add (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: intel: fix another unused-function warning (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: bus: only clear valid DPN interrupts (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: bus: only clear valid DP0 interrupts (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: registers: add definitions for clearable interrupt fields (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: bus: reset slave_notify status at each loop (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: bus: add comments to explain interrupt loop filter (Jaroslav Kysela) [1783462]
+- [sound] ALSA: soundwire: SDCA: detect sdca_cascade interrupt (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: Intel: kbl_rt5663_max98927: Fix kabylake_ssp_fixup function (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: Intel: Boards: tgl_max98373: update TDM slot_width (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: intel: sof_rt5682: Add support for tgl_rt1011_rt5682 (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: Intel: Boards: tgl_max98373: add dpcm_capture flag for speaker_smart_amp (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: intel: sof_rt5682: Add quirk for Dooly (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: intel: sof_rt5682: Add support for cml_rt1015_rt5682 (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: Intel: sof_sdw: add quirk for new TigerLake-SDCA device (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Intel: add hw specific PCM constraints (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: loader: do not warn about unknown firmware headers (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: Remove multistep topology loading (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: sof-audio: remove goto used for force-nocodec support (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: ops: modify the signature of stall op (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: topology: remove const in sizeof() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: use inclusive language for bclk and fsync (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: topology: use inclusive language for bclk and fsync (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: ops: add parse_platform_ext_manifest() op (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: relax PCM period and buffer size constraints (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: nocodec: modify DAI link definitions (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: trace: Add runtime trace filtering mechanism (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Add `memory_info` file to debugfs (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Change section comment for SOF_IPC_TEST_ (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Improve code alignment in header.h (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: IPC: fix implicit type overflow (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: ext_manifest: Parse firmware config dictionary (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix the condition passed to sof_dev_dbg_or_err (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: modify the SOF_DBG flags (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Intel: hda: remove duplicated status dump (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: ext_manifest: parse cavs extra config data elem (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Intel: hda: define parse_platform_ext_manifest op (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: control: override volume info callback (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: control: remove const in sizeof() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Add .prepare/.complete callbacks (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: SOF: Activate runtime PM with SOF OF device (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-pcm: add missing ret=0 at soc_pcm_open() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-pcm: ignore un-needed mutex_unlock() case on soc_pcm_open() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-pcm: remove unneeded dev_err() for snd_soc_component_module/open() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-pcm: remove unneeded dev_err() for snd_soc_dai_startup() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-pcm: add soc_pcm_clean() and call it from soc_pcm_open/close() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-link: add mark for snd_soc_link_startup/shutdown() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-dai: add mark for snd_soc_dai_startup/shutdown() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-component: add mark for snd_soc_pcm_component_pm_runtime_get/put() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: soc-component: add mark for soc_pcm_components_open/close() (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: Intel: KMB: Fix S24_LE configuration (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASOC: Intel: kbl_rt5663_rt5514_max98927: Do not try to disable disabled clock (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Fix HP Pavilion x2 Detachable quirks (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt5682: change SAR voltage threshold (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt1015: increase the time to detect BCLK (Jaroslav Kysela) [1783462]
+- [sound] ALSA: ASoC: rt1015: add delay to fix pop noise from speaker (Jaroslav Kysela) [1783462]
+- [powerpc] powerpc/tm: Avoid machine crash on rt_sigreturn() (Gustavo Duarte) [1860550]
+- [net] udp: Prevent reuseport_select_sock from reading uninitialized socks (Guillaume Nault) [1917953]
+- [net] flow_offload: Fix memory leak for indirect flow block (Guillaume Nault) [1917953]
+- [net] sock: set sk_err to ee_errno on dequeue from errq (Guillaume Nault) [1917953]
+- [net] devlink: Make sure devlink instance and port are in same net namespace (Guillaume Nault) [1917953]
+- [net] devlink: Hold rtnl lock while reading netdev attributes (Guillaume Nault) [1917953]
+- [net] devlink: Add missing genlmsg_cancel() in devlink_nl_sb_port_pool_fill() (Guillaume Nault) [1917953]
+- [net] tipc: fix NULL deref in tipc_link_xmit() (Xin Long) [1918657]
+- [net] tipc: prevent possible null deref of link (Xin Long) [1918657]
+- [net] tipc: fix incompatible mtu of transmission (Xin Long) [1918657]
+- [net] tipc: fix memory leak in tipc_topsrv_start() (Xin Long) [1918657]
+- [net] tipc: add stricter control of reserved service types (Xin Long) [1918657]
+- [tools] selftests/bpf/test_offload.py: Filter bpftool internal map when counting maps (Jiri Benc) [1882709]
+- [tools] selftests/bpf/test_offload.py: Reset ethtool features after failed setting (Jiri Benc) [1882709]
+- [tools] selftests/bpf/test_offload.py: Fix expected case of extack messages (Jiri Benc) [1882709]
+- [tools] selftests/bpf/test_offload.py: Only check verifier log on verification fails (Jiri Benc) [1882709]
+- [netdrv] netdevsim: Add debugfs toggle to reject BPF programs in verifier (Jiri Benc) [1882709]
+- [tools] selftests/bpf/test_offload.py: Remove check for program load flags match (Jiri Benc) [1882709]
+- [net] xdp: Remove the xdp_attachment_flags_ok() callback (Jiri Benc) [1882709]
+- [net] net, xsk: Avoid taking multiple skbuff references (Jiri Benc) [1882709]
+- [net] increment xmit_recursion level in dev_direct_xmit() (Jiri Benc) [1882709]
+- [kernel] usermodehelper: reset umask to default before executing user process (Jiri Benc) [1882709]
+- [net] xsk: Do not discard packet when NETDEV_TX_BUSY (Jiri Benc) [1882709]
+- [net] xsk: Fix number of pinned pages/umem size discrepancy (Jiri Benc) [1882709]
+- [include] netdevice.h: fix xdp_state kernel-doc warning (Jiri Benc) [1882709]
+- [net] bpf: xdp: Fix XDP mode when no mode flags specified (Jiri Benc) [1882709]
+- [net] bpf: Fix XDP FD-based attach/detach logic around XDP_FLAGS_UPDATE_IF_NOEXIST (Jiri Benc) [1882709]
+- [kernel] add a kernel_wait helper (Jiri Benc) [1882709]
+- [tools] selftests/bpf: Add link detach tests for cgroup, netns, and xdp bpf_links (Jiri Benc) [1882709]
+- [net] bpf: Add support for forced LINK_DETACH command (Jiri Benc) [1882709]
+- [kernel] bpf: Fix build without CONFIG_NET when using BPF XDP link (Jiri Benc) [1882709]
+- [net] xdp: Prevent kernel-infoleak in xsk_getsockopt() (Jiri Benc) [1882709]
+- [net] udp, bpf: Ignore connections in reuseport group after BPF sk lookup (Jiri Benc) [1882709]
+- [net] Revert "net: optimize the sockptr_t for unified kernel/user address spaces" (Jiri Benc) [1882709]
+- [net] improve the user pointer check in init_user_sockptr (Jiri Benc) [1882709]
+- [include] net: remove sockptr_advance (Jiri Benc) [1882709]
+- [include] net: make sockptr_is_null strict aliasing safe (Jiri Benc) [1882709]
+- [net] optimize the sockptr_t for unified kernel/user address spaces (Jiri Benc) [1882709]
+- [net] bpfilter: switch bpfilter_ip_set_sockopt to sockptr_t (Jiri Benc) [1882709]
+- [net] switch copy_bpf_fprog_from_user to sockptr_t (Jiri Benc) [1882709]
+- [include] net: add a new sockptr_t type (Jiri Benc) [1882709]
+- [net] bpfilter: reject kernel addresses (Jiri Benc) [1882709]
+- [net] bpfilter: split __bpfilter_process_sockopt (Jiri Benc) [1882709]
+- [net] bpfilter: fix up a sparse annotation (Jiri Benc) [1882709]
+- [net] udp: Don't discard reuseport selection when group has connections (Jiri Benc) [1882709]
+- [net] bpf, xdp: Remove XDP_QUERY_PROG and XDP_QUERY_PROG_HW XDP commands (Jiri Benc) [1882709]
+- [tools] selftests/bpf: Add BPF XDP link selftests (Jiri Benc) [1882709]
+- [net] bpf: Implement BPF XDP link-specific introspection APIs (Jiri Benc) [1882709]
+- [net] bpf, xdp: Implement LINK_UPDATE for BPF XDP link (Jiri Benc) [1882709]
+- [net] bpf, xdp: Add bpf_link-based XDP attachment API (Jiri Benc) [1882709]
+- [net] bpf, xdp: Extract common XDP program attachment logic (Jiri Benc) [1882709]
+- [net] bpf, xdp: Maintain info on attached XDP BPF programs in net_device (Jiri Benc) [1882709]
+- [kernel] bpf, netns: Fix build without CONFIG_INET (Jiri Benc) [1882709]
+- [net] udp6: Run SK_LOOKUP BPF program on socket lookup (Jiri Benc) [1882709]
+- [net] udp6: Extract helper for selecting socket from reuseport group (Jiri Benc) [1882709]
+- [net] udp: Run SK_LOOKUP BPF program on socket lookup (Jiri Benc) [1882709]
+- [net] udp: Extract helper for selecting socket from reuseport group (Jiri Benc) [1882709]
+- [net] ipv6: remove unused arg exact_dif in compute_score (Jiri Benc) [1882709]
+- [net] ipv4: remove unused arg exact_dif in compute_score (Jiri Benc) [1882709]
+- [net] udp: Remove unused variable/function (exact_dif) (Jiri Benc) [1882709]
+- [net] udp: Remove unused parameter (exact_dif) (Jiri Benc) [1882709]
+- [net] udp: only choose unbound UDP socket for multicast when not in a VRF (Jiri Benc) [1882709]
+- [net] ensure unbound datagram socket to be chosen when not in a VRF (Jiri Benc) [1882709]
+- [net] ensure unbound stream socket to be chosen when not in a VRF (Jiri Benc) [1882709]
+- [net] allow binding socket in a VRF when there's an unbound socket (Jiri Benc) [1882709]
+- [net] udp6: drop unneeded likely() call around IS_ERR() (Jiri Benc) [1882709]
+- [net] udp: drop unneeded likely() call around IS_ERR() (Jiri Benc) [1882709]
+- [net] inet6: Run SK_LOOKUP BPF program on socket lookup (Jiri Benc) [1882709]
+- [net] inet6: Extract helper for selecting socket from reuseport group (Jiri Benc) [1882709]
+- [net] inet: Run SK_LOOKUP BPF program on socket lookup (Jiri Benc) [1882709]
+- [net] inet: Extract helper for selecting socket from reuseport group (Jiri Benc) [1882709]
+- [net] simplify cBPF setsockopt compat handling (Jiri Benc) [1882709]
+- [net] explicitly include <linux/compat.h> in net/core/sock.c (Jiri Benc) [1882709]
+- [include] compat: provide compat_ptr() on all architectures (Jiri Benc) [1882709]
+- [net] socket: move compat timeout handling into sock.c (Jiri Benc) [1882709]
+- [include] xdp: introduce xdp_get_shared_info_from_{buff, frame} utility routines (Jiri Benc) [1882709]
+- [net] xsk: Add xdp statistics to xsk_diag (Jiri Benc) [1882709]
+- [net] xsk: Add new statistics (Jiri Benc) [1882709]
+- [net] bpfilter: Initialize pos variable (Jiri Benc) [1882709]
+- [kernel] umd: Stop using split_argv (Jiri Benc) [1882709]
+- [kernel] umd: Remove exit_umh (Jiri Benc) [1882709]
+- [net] bpfilter: Take advantage of the facilities of struct pid (Jiri Benc) [1882709]
+- [kernel] exit: Factor thread_group_exited out of pidfd_poll (Jiri Benc) [1882709]
+- [kernel] umd: Track user space drivers with struct pid (Jiri Benc) [1882709]
+- [net] bpfilter: Move bpfilter_umh back into init data (Jiri Benc) [1882709]
+- [fs] exec: Remove do_execve_file (Jiri Benc) [1882709]
+- [kernel] umh: Stop calling do_execve_file (Jiri Benc) [1882709]
+- [kernel] umd: Transform fork_usermode_blob into fork_usermode_driver (Jiri Benc) [1882709]
+- [kernel] umd: Rename umd_info.cmdline umd_info.driver_name (Jiri Benc) [1882709]
+- [kernel] umd: For clarity rename umh_info umd_info (Jiri Benc) [1882709]
+- [kernel] umh: Separate the user mode driver and the user mode helper support (Jiri Benc) [1882709]
+- [kernel] umh: Move setting PF_UMH into umh_pipe_setup (Jiri Benc) [1882709]
+- [kernel] umh: Remove call_usermodehelper_setup_file. (Jiri Benc) [1882709]
+- [kernel] umh: Rename the user mode driver helpers for clarity (Jiri Benc) [1882709]
+- [kernel] umh: Capture the pid in umh_pipe_setup (Jiri Benc) [1882709]
+- [net] bpf: Add SO_KEEPALIVE and related options to bpf_setsockopt (Jiri Benc) [1882709]
+- [net] tcp: Expose tcp_sock_set_keepidle_locked (Jiri Benc) [1882709]
+- [net] tcp: add tcp_sock_set_keepidle (Jiri Benc) [1882709]
+- [net] sock: Move sock_valbool_flag to header (Jiri Benc) [1882709]
+- [net] spread "enum sock_flags" (Jiri Benc) [1882709]
+- [tools] bpf: Use local copy of headers including uapi/linux/filter.h (Jiri Benc) [1882709]
+- [net] bpfilter: fix iptables failure if bpfilter_umh is disabled (Jiri Benc) [1882709]
+- [s390] s390/crypto: add arch_get_random_long() support (Vladis Dronov) [1904274]
+- [net] net/smc: Add support for obtaining SMCR device list (Philipp Rudo) [1868684]
+- [net] net/smc: Add support for obtaining SMCD device list (Philipp Rudo) [1868684]
+- [net] net/smc: Add SMC-D Linkgroup diagnostic support (Philipp Rudo) [1868684]
+- [net] net/smc: Introduce SMCR get link command (Philipp Rudo) [1868684]
+- [net] net/smc: Introduce SMCR get linkgroup command (Philipp Rudo) [1868684]
+- [net] net/smc: Add support for obtaining system information (Philipp Rudo) [1868684]
+- [net] net/smc: Introduce generic netlink interface for diagnostic purposes (Philipp Rudo) [1868684]
+- [net] net/smc: Refactor smc ism v2 capability handling (Philipp Rudo) [1868684]
+- [net] net/smc: Add diagnostic information to link structure (Philipp Rudo) [1868684]
+- [net] net/smc: Add diagnostic information to smc ib-device (Philipp Rudo) [1868684]
+- [net] net/smc: Add link counters for IB device ports (Philipp Rudo) [1868684]
+- [net] net/smc: Add connection counters for links (Philipp Rudo) [1868684]
+- [net] net/smc: Use active link of the connection (Philipp Rudo) [1868684]
+- [net] net/smc: use helper smc_conn_abort() in listen processing (Philipp Rudo) [1868684]
+- [net] sched: sch_frag: add generic packet fragment support. (Marcelo Leitner) [1909262]
+- [net] sched: act_mirred: refactor the handle of xmit (Marcelo Leitner) [1909262]
+- [net] sched: fix miss init the mru in qdisc_skb_cb (Marcelo Leitner) [1909262]
+- [net] openvswitch: using ip6_fragment in ipv6_stub (Marcelo Leitner) [1909262]
+- [net] ipv6: add ipv6_fragment hook in ipv6_stub (Marcelo Leitner) [1909262]
+- [x86] x86/resctrl: Fix spelling in user-visible warning messages (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Enable user to view thread or core throttling mode (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Enumerate per-thread MBA controls (Puneet Sethi) [1717078]
+- [x86] cacheinfo: Move resctrl's get_cache_id() to the cacheinfo header file (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Add struct rdt_cache::arch_has_{sparse, empty}_bitmaps (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Merge AMD/Intel parse_bw() calls (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Add struct rdt_membw::arch_needs_linear to explain AMD/Intel MBA difference (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Use is_closid_match() in more places (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Use container_of() in delayed_work handlers (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Fix stale comment (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Remove struct rdt_membw::max_delay (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Remove unused struct mbm_state::chunks_bw (Puneet Sethi) [1717078]
+- [x86] x86/resctrl: Fix memory bandwidth counter width for AMD (Puneet Sethi) [1845633 1717078]
+- [documentation] Documentation: x86: fix some typos (Puneet Sethi) [1717078]
+- [documentation] Documentation: x86: Clarify MBA takes MB as referring to mba_sc (Puneet Sethi) [1717078]
+- [documentation] Documentation: x86: Remove cdpl2 unspported statement and fix capitalisation (Puneet Sethi) [1717078]
+- [documentation] Documentation: x86: Contiguous cbm isn't all X86 (Puneet Sethi) [1717078]
+- [documentation] Documentation: x86: convert resctrl_ui.txt to reST (Puneet Sethi) [1717078]
+- [kernel] livepatch: Make klp_apply_object_relocs static (Yannick Cote) [1866433]
+- [kernel] livepatch: Prevent module-specific KLP rela sections from referencing vmlinux symbols (Yannick Cote) [1866433]
+- [x86] livepatch: Remove .klp.arch (Yannick Cote) [1866433]
+- [kernel] livepatch: Apply vmlinux-specific KLP relocations early (Yannick Cote) [1866433]
+- [kernel] livepatch: Disallow vmlinux.ko (Yannick Cote) [1866433]
+
+* Thu Feb 04 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-283.el8]
+- [sound] ALSA: hda: Add Cometlake-R PCI ID (Jaroslav Kysela) [1915650]
+- [fs] xfs: don't drain buffer lru on freeze and read-only remount (Brian Foster) [1903387]
+- [fs] xfs: rename xfs_wait_buftarg() to xfs_buftarg_drain() (Brian Foster) [1903387]
+- [net] mptcp: implement delegated actions (Paolo Abeni) [1892375]
+- [net] mptcp: schedule work for better snd subflow selection (Paolo Abeni) [1892375]
+- [net] mptcp: do not queue excessive data on subflows (Paolo Abeni) [1892375]
+- [net] mptcp: re-enable sndbuf autotune (Paolo Abeni) [1892375]
+- [net] mptcp: always graft subflow socket to parent (Paolo Abeni) [1892375]
+- [include] lockdep: Introduce in_softirq lockdep assert (Paolo Abeni) [1892375]
+- [net] selinux: handle MPTCP consistently with TCP (Paolo Abeni) [1892375]
+- [net] mptcp: fix locking in mptcp_disconnect() (Paolo Abeni) [1892375]
+- [net] mptcp: better msk-level shutdown. (Paolo Abeni) [1892375]
+- [net] mptcp: more strict state checking for acks (Paolo Abeni) [1892375]
+- [tools] selftests: mptcp: add the MP_PRIO testcases (Paolo Abeni) [1892375]
+- [net] mptcp: add the mibs for MP_PRIO (Paolo Abeni) [1892375]
+- [tools] selftests: mptcp: add set_flags command in pm_nl_ctl (Paolo Abeni) [1892375]
+- [net] mptcp: add set_flags command in PM netlink (Paolo Abeni) [1892375]
+- [net] mptcp: add the incoming MP_PRIO support (Paolo Abeni) [1892375]
+- [net] mptcp: add the outgoing MP_PRIO support (Paolo Abeni) [1892375]
+- [tools] selftests: mptcp: add testcases for setting the address ID (Paolo Abeni) [1892375]
+- [net] mptcp: add the address ID assignment bitmap (Paolo Abeni) [1892375]
+- [net] mptcp: cap forward allocation to 1M (Paolo Abeni) [1892375]
+- [net] mptcp: fix pending data accounting (Paolo Abeni) [1892375]
+- [net] mptcp: push pending frames when subflow has free space (Paolo Abeni) [1892375]
+- [net] mptcp: properly annotate nested lock (Paolo Abeni) [1892375]
+- [net] mptcp: fix security context on server socket (Paolo Abeni) [1892375]
+- [net] mptcp: clear use_ack and use_map when dropping other suboptions (Paolo Abeni) [1892375]
+- [net] mptcp: let MPTCP create max size skbs (Paolo Abeni) [1892375]
+- [net] mptcp: pm: simplify select_local_address() (Paolo Abeni) [1892375]
+- [net] mptcp: parse and act on incoming FASTCLOSE option (Paolo Abeni) [1892375]
+- [net] mptcp: hold mptcp socket before calling tcp_done (Paolo Abeni) [1892375]
+- [net] mptcp: use MPTCPOPT_HMAC_LEN macro (Paolo Abeni) [1892375]
+- [tools] selftests: mptcp: add the flush addrs testcase (Paolo Abeni) [1892375]
+- [net] mptcp: remove address when netlink flushes addrs (Paolo Abeni) [1892375]
+- [net] mptcp: attach subflow socket to parent cgroup (Paolo Abeni) [1892375]
+- [net] mptcp: be careful on subflows shutdown (Paolo Abeni) [1892375]
+- [net] mptcp: plug subflow context memory leak (Paolo Abeni) [1892375]
+- [net] mptcp: link MPC subflow into msk only after accept (Paolo Abeni) [1892375]
+- [net] mptcp: use the variable sk instead of open-coding (Paolo Abeni) [1892375]
+- [net] mptcp: rename add_addr_signal and mptcp_add_addr_status (Paolo Abeni) [1892375]
+- [net] mptcp: drop rm_addr_signal flag (Paolo Abeni) [1892375]
+- [net] mptcp: print out port and ahmac when receiving ADD_ADDR (Paolo Abeni) [1892375]
+- [net] mptcp: add port parameter for mptcp_pm_announce_addr (Paolo Abeni) [1892375]
+- [net] mptcp: send out dedicated packet for ADD_ADDR using port (Paolo Abeni) [1892375]
+- [net] mptcp: add the outgoing ADD_ADDR port support (Paolo Abeni) [1892375]
+- [net] mptcp: use adding up size to get ADD_ADDR length (Paolo Abeni) [1892375]
+- [net] mptcp: add port support for ADD_ADDR suboption writing (Paolo Abeni) [1892375]
+- [net] mptcp: unify ADD_ADDR and ADD_ADDR6 suboptions writing (Paolo Abeni) [1892375]
+- [net] mptcp: unify ADD_ADDR and echo suboptions writing (Paolo Abeni) [1892375]
+- [net] mptcp: print new line in mptcp_seq_show() if mptcp isn't in use (Paolo Abeni) [1892375]
+- [net] mptcp: emit tcp reset when a join request fails (Paolo Abeni) [1892375]
+- [net] tcp: merge 'init_req' and 'route_req' functions (Paolo Abeni) [1892375]
+- [net] security: add const qualifier to struct sock in various places (Paolo Abeni) [1892375]
+- [net] mptcp: avoid potential infinite loop in mptcp_recvmsg() (Paolo Abeni) [1892375]
+- [net] mptcp: use mptcp release_cb for delayed tasks (Paolo Abeni) [1892375]
+- [net] mptcp: avoid a few atomic ops in the rx path (Paolo Abeni) [1892375]
+- [net] mptcp: allocate TX skbs in msk context (Paolo Abeni) [1892375]
+- [net] mptcp: protect the rx path with the msk socket spinlock (Paolo Abeni) [1892375]
+- [net] mptcp: implement wmem reservation (Paolo Abeni) [1892375]
+- [net] mptcp: open code mptcp variant for lock_sock (Paolo Abeni) [1892375]
+- [net] mptcp: fix NULL ptr dereference on bad MPJ (Paolo Abeni) [1892375]
+- [net] mptcp: be careful on MPTCP-level ack. (Paolo Abeni) [1892375]
+- [net] mptcp: put reference in mptcp timeout timer (Paolo Abeni) [1892375]
+- [net] mptcp: refine MPTCP-level ack scheduling (Paolo Abeni) [1892375]
+- [net] mptcp: track window announced to peer (Paolo Abeni) [1892375]
+- [tools] selftests: mptcp: add ADD_ADDR IPv6 test cases (Paolo Abeni) [1892375]
+- [net] mptcp: send out dedicated ADD_ADDR packet (Paolo Abeni) [1892375]
+- [net] mptcp: change add_addr_signal type (Paolo Abeni) [1892375]
+- [net] mptcp: keep unaccepted MPC subflow into join list (Paolo Abeni) [1892375]
+- [tools] selftests: mptcp: add link failure test case (Paolo Abeni) [1892375]
+- [net] mptcp: skip to next candidate if subflow has unacked data (Paolo Abeni) [1892375]
+- [net] mptcp: fix state tracking for fallback socket (Paolo Abeni) [1892375]
+- [net] mptcp: drop WORKER_RUNNING status bit (Paolo Abeni) [1892375]
+- [net] mptcp: update rtx timeout only if required. (Paolo Abeni) [1892375]
+- [net] mptcp: send explicit ack on delayed ack_seq incr (Paolo Abeni) [1892375]
+- [net] mptcp: keep track of advertised windows right edge (Paolo Abeni) [1892375]
+- [net] mptcp: rework poll+nospace handling (Paolo Abeni) [1892375]
+- [net] mptcp: try to push pending data on snd una updates (Paolo Abeni) [1892375]
+- [net] mptcp: move page frag allocation in mptcp_sendmsg() (Paolo Abeni) [1892375]
+- [net] mptcp: refactor shutdown and close (Paolo Abeni) [1892375]
+- [net] mptcp: introduce MPTCP snd_nxt (Paolo Abeni) [1892375]
+- [net] mptcp: add accounting for pending data (Paolo Abeni) [1892375]
+- [net] mptcp: reduce the arguments of mptcp_sendmsg_frag (Paolo Abeni) [1892375]
+- [net] mptcp: introduce mptcp_schedule_work (Paolo Abeni) [1892375]
+- [net] tcp: factor out __tcp_close() helper (Paolo Abeni) [1892375]
+- [net] mptcp: use tcp_build_frag() (Paolo Abeni) [1892375]
+- [net] tcp: factor out tcp_build_frag() (Paolo Abeni) [1892375]
+- [net] tcp: schedule EPOLLOUT after a partial sendmsg (Paolo Abeni) [1892375]
+- [net] tcp: annotate tp->write_seq lockless reads (Paolo Abeni) [1892375]
+- [net] mptcp: fix static checker warnings in mptcp_pm_add_timer (Paolo Abeni) [1892375]
+- [tools] selftests: mptcp: add ADD_ADDR timeout test case (Paolo Abeni) [1892375]
+- [documentation] networking: mptcp: Add MPTCP sysctl entries (Paolo Abeni) [1892375]
+- [net] mptcp: add a new sysctl add_addr_timeout (Paolo Abeni) [1892375]
+- [net] mptcp: split mptcp_clean_una function (Paolo Abeni) [1892375]
+- [net] tcp: propagate MPTCP skb extensions on xmit splits (Paolo Abeni) [1892375]
+- [net] mptcp: use _fast lock version in __mptcp_move_skbs (Paolo Abeni) [1892375]
+- [net] mptcp: adjust mptcp receive buffer limit if subflow has larger one (Paolo Abeni) [1892375]
+- [net] tcp: fix compile error if !CONFIG_SYSCTL (Paolo Abeni) [1892375]
+- [net] tcp: add tcp_tx_skb_cache sysctl (Paolo Abeni) [1892375]
+- [net] tcp: do not recycle cloned skbs (Paolo Abeni) [1892375]
+- [net] tcp: properly reset skb->truesize for tx recycling (Paolo Abeni) [1892375]
+- [net] tcp: cleanup sk_tx_skb_cache before reuse (Paolo Abeni) [1892375]
+- [net] tcp: fix zerocopy and notsent_lowat issues (Paolo Abeni) [1892375]
+- [net] tcp: add one skb cache for tx (Paolo Abeni) [1892375]
+- [include] include: fpga: adi-axi-common.h: fixup whitespace tab -> space (Luis Goncalves) [1494702]
+- [include] include: fpga: adi-axi-common.h: add version helper macros (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: afu: convert get_user_pages() --> pin_user_pages() (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: fix bug in port reset handshake (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: pci: reduce the scope of variable 'ret' (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: pci: add device id for Intel FPGA PAC N3000 (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: afu: add AFU interrupt support (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: fme: add interrupt support for global error reporting (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: afu: add interrupt support for port error reporting (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: introduce interrupt trigger setting API (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: pci: add irq info for feature devices enumeration (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: parse interrupt info for feature devices on enumeration (Luis Goncalves) [1494702]
+- [fpga] fpga manager: xilinx-spi: check INIT_B pin during write_init (Luis Goncalves) [1494702]
+- [fpga] fpga: Fix dead store in fpga-bridge.c (Luis Goncalves) [1494702]
+- [fpga] fpga: Fix dead store fpga-mgr.c (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: Use struct_size() in kzalloc() (Luis Goncalves) [1494702]
+- [fpga] fpga manager: xilinx-spi: remove unneeded, mistyped variables (Luis Goncalves) [1494702]
+- [fpga] fpga manager: xilinx-spi: valid for the 7 Series too (Luis Goncalves) [1494702]
+- [fpga] fpga: zynqmp: fix modular build (Luis Goncalves) [1494702]
+- [fpga] drivers/fpga/dfl-afu-dma-region.c: get rid of pointless access_ok() (Luis Goncalves) [1494702]
+- [fpga] drivers/fpga/dfl-fme-pr.c: get rid of pointless access_ok() (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: afu: Corrected error handling levels (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: afu: support debug access to memory-mapped afu regions (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl.h: Replace zero-length array with flexible-array member (Luis Goncalves) [1494702]
+- [fpga] fpga: stratix10-soc: add compatible property value for intel agilex (Luis Goncalves) [1494702]
+- [fpga] fpga: machxo2-spi: Use new structure for SPI transfer delays (Luis Goncalves) [1494702]
+- [fpga] fpga: ice40-spi: Use new structure for SPI transfer delays (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: support multiple opens on feature device node (Luis Goncalves) [1494702]
+- [fpga] fpga: dfl: fme: add performance reporting support (Luis Goncalves) [1494702]
+- [firmware] firmware: fpga: replace the error codes with the standard ones (Luis Goncalves) [1494702]
+- [net] sched: act_mpls: ensure LSE is pullable before reading it (Guillaume Nault) [1917918]
+- [net] openvswitch: ensure LSE is pullable before reading it (Guillaume Nault) [1917918]
+- [net] skbuff: ensure LSE is pullable before decrementing the MPLS ttl (Guillaume Nault) [1917918]
+- [net] sched: act_mpls: Add softdep on mpls_gso.ko (Guillaume Nault) [1917918]
+- [net] mpls: load mpls_gso after mpls_iptunnel (Guillaume Nault) [1917918]
+- [net] netfilter: nf_tables: handle nft_object lookups via rhltable (Phil Sutter) [1848816]
+- [arm64] kvm: arm64: Remove PMU RAZ/WI handling (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Inject UNDEF on PMU access when no PMU configured (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Set ID_AA64DFR0_EL1.PMUVer to 0 when no PMU support (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Add kvm_vcpu_has_pmu() helper (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Refactor PMU attribute error handling (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Introduce handling of AArch32 TTBCR2 traps (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: pmu: Make overflow handler NMI safe (Auger Eric) [1890373 1907826]
+- [tools] kvm: selftests: Also build dirty_log_perf_test on AArch64 (Auger Eric) [1890373 1907826]
+- [tools] selftests: kvm/set_memory_region_test: Fix race in move region test (Auger Eric) [1890373 1907826]
+- [tools] kvm: arm64: selftests: Filter out DEMUX registers (Auger Eric) [1890373 1907826]
+- [tools] kvm: selftests: Add blessed SVE registers to get-reg-list (Auger Eric) [1890373 1907826]
+- [tools] kvm: selftests: Add aarch64 get-reg-list test (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Don't access PMCR_EL0 when no PMU is available (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: vgic-v3: Drop the reporting of GICR_TYPER.Last for userspace (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Don't hide ID registers from userspace (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Force PTE mapping on fault resulting in a device mapping (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Fix AArch32 handling of DBGD{CCINT, SCRext} and DBGVCR (Auger Eric) [1890373 1907826]
+- [kernel] kvm: arm64: ARM_SMCCC_ARCH_WORKAROUND_1 doesn't return SMCCC_RET_NOT_REQUIRED (Auger Eric) [1890373 1907826]
+- [kernel] smccc: Make constants available to assembly (Auger Eric) [1890373 1907826]
+- [kernel] firmware: smccc: Add the definition for SMCCCv1.2 version/error codes (Auger Eric) [1890373 1907826]
+- [arm64] kvm: arm64: Ensure user_mem_abort() return value is initialised (Auger Eric) [1890373 1907826]
+- [] ASoC: SOF: Intel: fix page fault at probe if i915 init fails (Jaroslav Kysela) [1906665]
+- [include] powerpc: fix the backport macros of hv_24x7 and hv_gpci (Diego Domingos) [1915159]
+- [net] tcp: Prevent low rmem stalls with SO_RCVLOWAT. (Davide Caratti) [1917976]
+- [net] tcp: fix to update snd_wl1 in bulk receiver fast path (Davide Caratti) [1917976]
+- [net] tcp: md5: refine tcp_md5_do_add()/tcp_md5_hash_key() barriers (Davide Caratti) [1917976]
+- [net] tcp: md5: add missing memory barriers in tcp_md5_do_add()/tcp_md5_hash_key() (Davide Caratti) [1917976]
+- [net] sunrpc: clean-up cache downcall (J. Bruce Fields) [1887178]
+- [net] sunrpc: raise kernel RPC channel buffer size (J. Bruce Fields) [1887178]
+- [netdrv] mlx5: Remove the unsupported mark from ConnectX-6 Lx and BlueField-2 (Alaa Hleihel) [1802118 1790541]
+- [s390] s390/qeth: make af_iucv TX notification call more robust (Philipp Rudo) [1915919]
+- [s390] s390/dasd: fix list corruption of lcu list (Philipp Rudo) [1915918]
+- [s390] s390/dasd: fix list corruption of pavgroup group list (Philipp Rudo) [1915918]
+- [s390] s390/dasd: prevent inconsistent LCU device data (Philipp Rudo) [1915918]
+- [s390] s390/dasd: fix hanging device offline processing (Philipp Rudo) [1915918]
+- [block] Revert "block: Fix a lockdep complaint triggered by request queue flushing" (Ming Lei) [1897404]
+- [nvme] nvme-loop: use blk_mq_hctx_set_fq_lock_class to set loop's lock class (Ming Lei) [1897404]
+- [block] blk-mq: add new API of blk_mq_hctx_set_fq_lock_class (Ming Lei) [1897404]
+- [scsi] scsi: core: Fix race between handling STS_RESOURCE and completion (Ming Lei) [1897404]
+
+* Tue Feb 02 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-282.el8]
+- [fs] inotify: Increase default inotify.max_user_watches limit to 1048576 (Waiman Long) [1888617]
+- [kernel] cgroup: fix psi_show() crash on 32bit ino archs (Waiman Long) [1920288]
+- [kernel] cgroup: fix incorrect WARN_ON_ONCE() in cgroup_setup_root() (Waiman Long) [1920288]
+- [netdrv] net: bareudp: add missing error handling for bareudp_link_config() (Guillaume Nault) [1920194]
+- [netdrv] bareudp: Fix use of incorrect min_headroom size (Guillaume Nault) [1920194]
+- [netdrv] bareudp: set NETIF_F_LLTX flag (Guillaume Nault) [1920194]
+- [netdrv] vxlan: fix error return code in __vxlan_dev_create() (Guillaume Nault) [1920194]
+- [netdrv] ip_tunnels: Set tunnel option flag when tunnel metadata is present (Guillaume Nault) [1920194]
+- [net] vsock/virtio: discard packets only when socket is really closed (Stefano Garzarella) [1920004]
+- [net] vsock: fix the error return when an invalid ioctl command is used (Stefano Garzarella) [1920004]
+- [net] vsock: remove ratelimit unknown ioctl message (Stefano Garzarella) [1920004]
+- [net] vsock: use ns_capable_noaudit() on socket create (Stefano Garzarella) [1920004]
+- [net] vsock: fix potential null pointer dereference in vsock_poll() (Stefano Garzarella) [1920004]
+- [net] vsock/vmci: make vmci_vsock_transport_cb() static (Stefano Garzarella) [1920004]
+- [block] block: add blk_queue_make_request declaration back (Ming Lei) [1919764]
+- [net] erspan: fix version 1 check in gre_parse_header() (Guillaume Nault) [1919388]
+- [net] ipv4: Ignore ECN bits for fib lookups in fib_compute_spec_dst() (Guillaume Nault) [1919388]
+- [net] ipv4: Fix tos mask in inet_rtm_getroute() (Guillaume Nault) [1919388]
+- [net] inet_diag: Fix error path to cancel the meseage in inet_req_diag_fill() (Guillaume Nault) [1919388]
+- [mm] usercopy: mark dma-kmalloc caches as usercopy caches (Waiman Long) [1660290]
+- [mm] mm, slab_common: use enum kmalloc_cache_type to iterate over kmalloc caches (Waiman Long) [1660290]
+- [mm] mm, slab: remove unused kmalloc_size() (Waiman Long) [1660290]
+- [mm] mm, slab: make kmalloc_infocontain all types of names (Waiman Long) [1660290]
+- [netdrv] net: stmmac: fix taprio configuration when base_time is in the past (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac-sunxi: Provide TX and RX fifo sizes (Mark Salter) [1870102]
+- [netdrv] net: stmmac: delete the eee_ctrl_timer after napi disabled (Mark Salter) [1870102]
+- [netdrv] net: stmmac: free tx skb buffer in stmmac_resume() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: start phylink instance before stmmac_hw_setup() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: increase the timeout for dma reset (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix incorrect merge of patch upstream (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Use rtnl_lock/unlock on netif_set_real_num_rx_queues() call (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac_lib: enlarge dma reset timeout (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix channel lock initialization (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add option for VLAN filter fail queue enable (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add support to Ethtool get/set ring parameters (Mark Salter) [1870102]
+- [netdrv] net: stmmac: use netif_tx_start|stop_all_queues() function (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix incorrect location to set real_num_rx|tx_queues (Mark Salter) [1870102]
+- [netdrv] net: stmmac: add ethtool support for get/set channels (Mark Salter) [1870102]
+- [netdrv] net: stmmac: set get_rx_header_len() as void for it didn't have any error code to return (Mark Salter) [1870102]
+- [netdrv] net: stmmac: remove redundant null check before clk_disable_unprepare() (Mark Salter) [1870102]
+- [netdrv] net: phylink: avoid oops during initialisation (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Modify configuration method of EEE timers (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac1000: provide multicast filter fallback (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix failed to suspend if phy based WOL is enabled (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Speed down the PHY if WoL to save energy (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Support WOL with phy (Mark Salter) [1870102]
+- [netdrv] net: stmmac: only call pmt() during suspend/resume if HW enables PMT (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Move device_can_wakeup() check earlier in set_wol (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Remove WAKE_MAGIC if HW shows no pmt_magic_frame (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Remove unused inline function stmmac_rx_threshold_count (Mark Salter) [1870102]
+- [include] net: pylink.h: add kernel-doc descriptions for new fields at phylink_config (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add support for VLAN promiscuous mode (Mark Salter) [1870102]
+- [netdrv] net: stmmac: removed enabling eee in EEE set callback (Mark Salter) [1870102]
+- [documentation] net: phy: add PHY_INTERFACE_MODE_10GBASER (Mark Salter) [1870102]
+- [include] net: mii: convert mii_lpa_to_ethtool_lpa_x() to linkmode variant (Mark Salter) [1870102]
+- [base] driver core: platform: Add platform_get_irq_byname_optional() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: enable timestamp snapshot for required PTP packets in dwmac v5.10a (Mark Salter) [1870102]
+- [netdrv] net: stmmac: don't attach interface until resume finishes (Mark Salter) [1870102]
+- [netdrv] net: stmmac: gmac5+: fix potential integer overflow on 32 bit multiply (Mark Salter) [1870102]
+- [netdrv] stmmac: fix pointer check after utilization in stmmac_interrupt (Mark Salter) [1870102]
+- [netdrv] stmmac: intel: Fix kernel crash due to wrong error path (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Enable SERDES power up/down sequence (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix sub-second increment (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac1000: fix out-of-bounds mac address reg setting (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Fix VLAN register handling (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix VLAN filtering when HW does not support it (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add support for VLAN Rx filtering (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac_lib: remove unnecessary checks in dwmac_dma_reset() (Mark Salter) [1870102]
+- [netdrv] net: rename flow_action_hw_stats_types* -> flow_action_hw_stats* (Mark Salter) [1870102]
+- [netdrv] net: stmmac: use readl_poll_timeout() function in dwmac4_dma_reset() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: use readl_poll_timeout() function in init_systime() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: platform: convert to devm_platform_ioremap_resource (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Integrate it with DesignWare XPCS (Mark Salter) [1870102]
+- [netdrv] net: phy: Add Synopsys DesignWare XPCS MDIO module (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Use resolved link config in mac_link_up() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fallback to dev_fwnode() if needed (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Switch to linkmode_and()/linkmode_andnot() (Mark Salter) [1870102]
+- [netdrv] flow_offload: check for basic action hw stats type (Mark Salter) [1870102]
+- [netdrv] stmmac: let core reject the unsupported coalescing parameters (Mark Salter) [1870102]
+- [netdrv] net: phylink: propagate resolved link config via mac_link_up() (Mark Salter) [1870102]
+- [netdrv] net: ethernet: stmmac: demote warnings about missing optional clocks (Mark Salter) [1870102]
+- [netdrv] net: stmmac: platform: Fix misleading interrupt error msg (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac1000: Disable ACS if enhanced descs are not used (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix notifier registration (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: fix missing IFF_MULTICAST checki in dwxgmac2_set_filter (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix missing IFF_MULTICAST check in dwmac4_set_filter (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: fix incorrect XGMAC_VLAN_TAG register writting (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix incorrect GMAC_VLAN_TAG register writting in GMAC4+ (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Delete txtimer in suspend() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: modified pcs mode support for RGMII (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add missing information in DebugFS capabilities file (Mark Salter) [1870102]
+- [netdrv] net: stmmac: gmac4+: Add TBS support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Add TBS support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: tc: Add support for ETF Scheduler using TBS (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Initial support for TBS (Mark Salter) [1870102]
+- [netdrv] net: stmmac: gmac5+: Fix missing return (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Fix missing return (Mark Salter) [1870102]
+- [netdrv] net: stmmac: tc: Fix TAPRIO division operation (Mark Salter) [1870102]
+- [netdrv] net: stmmac: mmc: Add Frame Preemption counters on GMAC5+ cores (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac3+: Add support for Frame Preemption (Mark Salter) [1870102]
+- [netdrv] net: stmmac: gmac5+: Add support for Frame Preemption (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add Frame Preemption support using TAPRIO API (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Integrate EST with TAPRIO scheduler API (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add basic EST support for XGMAC (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add basic EST support for GMAC5+ (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Always use TX coalesce timer value when rescheduling (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Let TX and RX interrupts be independently enabled/disabled (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Print more information in DebugFS DMA Capabilities file (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwc-qos: avoid clk and reset for acpi device (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwc-qos: use generic device api (Mark Salter) [1870102]
+- [netdrv] net: stmmac: platform: fix probe for ACPI devices (Mark Salter) [1870102]
+- [netdrv] net: stmmac: tc: Do not setup flower filtering if RSS is enabled (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fixed link does not need MDIO Bus (Mark Salter) [1870102]
+- [netdrv] stmmac: debugfs entry name is not be changed when udev rename device name (Mark Salter) [1870102]
+- [netdrv] net: stmmac: platform: Fix MDIO init for platforms without PHY (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Always arm TX Timer at end of transmission start (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Enable 16KB buffer size (Mark Salter) [1870102]
+- [netdrv] net: stmmac: 16KB buffer must be 16 byte aligned (Mark Salter) [1870102]
+- [netdrv] net: stmmac: RX buffer size must be 16 byte aligned (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Clear previous RX buffer size (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Only the last buffer has the FCS field (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not accept invalid MTU values (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Determine earlier the size of RX buffer (Mark Salter) [1870102]
+- [netdrv] treewide: Use sizeof_field() macro (Mark Salter) [1870102]
+- [netdrv] net: stmmac: reset Tx desc base address before restarting Tx (Mark Salter) [1870102]
+- [netdrv] net: phylink: rename mac_link_state() op to mac_pcs_get_state() (Mark Salter) [1870102]
+- [netdrv] page_pool: do not release pool until inflight == 0 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Do not enable TBU interrupt (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Rework TX Coalesce logic (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Tune-up default coalesce settings (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Remove uneeded computation for RFA/RFD (Mark Salter) [1870102]
+- [netdrv] net: stmmac: gmac4+: Remove uneeded computation for RFA/RFD (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Setup a default RX Coalesce value instead of the minimum (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not set RX IC bit if RX Coalesce is zero (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Implement UDP Segmentation Offload (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Rework stmmac_rx() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: tc: Remove the speed dependency (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Add C45 PHY support in the MDIO callbacks (Mark Salter) [1870102]
+- [netdrv] net: stmmac: gmac4+: Add Split Header support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix sparse warning (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Remove break after a return (Mark Salter) [1870102]
+- [netdrv] net: stmmac: add flexible PPS to dwmac 4.10a (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Implement L3/L4 Filters in GMAC4+ (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fallback to VLAN Perfect filtering if HASH is not available (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Support enhanced addressing mode for DWMAC 4.10 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Only enable enhanced addressing mode when needed (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix the TX IOC in xmit path (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix TSO descriptor with Enhanced Addressing (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix the packet count in stmmac_rx() (Mark Salter) [1870102]
+- ethernet: Delete unnecessary checks before the macro call “dev_kfree_skb” (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Disable MMC interrupts by default (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Disable Flow Control when 1 or more queues are in AV (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Fix AV Feature detection (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Fix TSA selection (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Only get SPH header len if available (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: bitrev32 returns u32 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: gmac4: bitrev32 returns u32 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix the problem of tso_xmit (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix argument to stmmac_pcs_ctrl_ane() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: disable/enable ptp_ref_clk in suspend/resume flow (Mark Salter) [1870102]
+- [netdrv] net: stmmac: make tc_flow_parsers static (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix disabling flexible PPS output (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix length of PTP clock's name string (Mark Salter) [1870102]
+- [netdrv] net: stmmac: gmac4+: Not all Unicast addresses may be available (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Avoid deadlock on suspend/resume (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Fix RSS writing wrong keys (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Fix RSS not writing all Keys to HW (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Disable the Timestamp interrupt by default (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not stop PHY if WoL is enabled (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Correctly take timestamp for PTPv2 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4: Always update the MAC Hash Filter (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Detect Hash Table size dinamically (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Not all Unicast addresses may be available (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix page pool size (Mark Salter) [1870102]
+- [netdrv] net: stmmac: selftest: avoid large stack usage (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Hold rtnl lock in suspend/resume callbacks (Mark Salter) [1870102]
+- [netdrv] net: stmmac: implement support for passive mode converters via dt (Mark Salter) [1870102]
+- [netdrv] net: stmmac: ARP Offload for GMAC4+ Cores (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add support for VLAN Insertion Offload in GMAC4+ (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add support for SA Insertion/Replacement in GMAC4+ (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Reinitialize correctly a variable (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add VLAN HASH filtering support in GMAC4+ (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Prevent divide-by-zero (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Limit max speeds of XGMAC if asked to (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4: Enable RX Jumbo frame support (Mark Salter) [1870102]
+- [netdrv] stmmac: platform: adjust messages and move to dev level (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Enable RX Jumbo frame support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Correctly assing MAX MTU in XGMAC cores case (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Correct RAVSEL field interpretation (Mark Salter) [1870102]
+- [netdrv] net: stmmac: ethtool: Let user configure TX coalesce without RIWT (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Only consider RX error when HW Timestamping is not enabled (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Implement ARP Offload (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Implement L3/L4 Filters using TC Flower (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not return error code in TC Initialization (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Add RBU handling in DMA interrupt (Mark Salter) [1870102]
+- [netdrv] net: stmmac: depend on COMMON_CLK (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwc-qos: use devm_platform_ioremap_resource() to simplify code (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add support for VLAN Insertion Offload (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Add EEE support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add support for SA Insertion/Replacement in XGMAC cores (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add ethtool register dump for XGMAC cores (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac: Add Flexible PPS support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add a counter for Split Header packets (Mark Salter) [1870102]
+- [netdrv] net: page_pool: API cleanup and comments (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add Split Header support and enable it in XGMAC cores (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Correctly return that RX descriptor is not last one (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Prepare to add Split Header support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Get correct timestamp values from XGMAC (Mark Salter) [1870102]
+- [netdrv] stmmac: no need to check return value of debugfs_create functions (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add Flexible RX Parser support in XGMAC (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Implement Safety Features in XGMAC core (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Implement VLAN Hash Filtering in XGMAC (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Implement RSS and enable it in XGMAC core (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Implement tx_queue_prio() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Implement set_mtl_tx_queue_weight() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Implement MMC counters (Mark Salter) [1870102]
+- [netdrv] net: Remove dev_err() usage after platform_get_irq() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not request stmmaceth clock (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Make MDIO bus reset optional (Mark Salter) [1870102]
+- [netdrv] net: stmmac: tc: Do not return a fragment entry (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix issues when number of Queues >= 4 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: xgmac: Fix XGMAC selftests (Mark Salter) [1870102]
+- [netdrv] net: stmmac: manage errors returned by of_get_mac_address() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Use netif_tx_napi_add() for TX polling function (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Sync RX Buffer upon allocation (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not cut down 1G modes (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Use kcalloc() instead of kmalloc_array() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: RX Descriptors need to be clean before setting buffers (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix misuses of GENMASK macro (Mark Salter) [1870102]
+- [netdrv] net: stmmac: add support for hash table size 128/256 in dwmac4 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4: mac address array boudary violation issue (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Introducing support for Page Pool (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix descriptors address being in > 32 bits address space (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Implement RX Coalesce Frames setting (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Re-work the queue selection for TSO packets (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Enable dwmac4 jumbo frame more than 8KiB (Mark Salter) [1870102]
+- [netdrv] net: stmmac: make "snps, reset-delays-us" optional again (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Re-word Kconfig entry (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Update Kconfig entry (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Only disable interrupts if NAPI is scheduled (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Update RX Tail Pointer to last free entry (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Enable support for > 32 Bits addressing in XGMAC (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not disable interrupts when cleaning TX (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add the missing speeds that XGMAC supports (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac: Fix the undefined burst setting (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Decrease default RX Watchdog value (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not try to enable PHY EEE if MAC does not support it (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac: Enable EDMA by default (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix case when PHY handle is not present (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix crash observed if PHY does not support EEE (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix possible deadlock when disabling EEE support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: initialize the reset delay array (Mark Salter) [1870102]
+- [netdrv] net: stmmac: add sanity check to device_property_read_u32_array call (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix unused-variable warning (Mark Salter) [1870102]
+- [netdrv] net: stmmac: drop the phy_reset hook from struct stmmac_mdio_bus_data (Mark Salter) [1870102]
+- [netdrv] net: stmmac: drop the reset delays from struct stmmac_mdio_bus_data (Mark Salter) [1870102]
+- [netdrv] net: stmmac: drop the reset GPIO from struct stmmac_mdio_bus_data (Mark Salter) [1870102]
+- [netdrv] net: stmmac: use device_property_read_u32_array to read the reset delays (Mark Salter) [1870102]
+- [netdrv] net: stmmac: drop redundant check in stmmac_mdio_reset (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix wrapper drivers not detecting PHY (Mark Salter) [1870102]
+- [netdrv] net: stmmac: use GPIO descriptors in stmmac_mdio_reset (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Convert to phylink and remove phylib logic (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Start adding phylink support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Prepare to convert to phylink (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4: fix flow control issue (Mark Salter) [1870102]
+- [netdrv] net: stmmac: modify default value of tx-frames (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Switch to devm_alloc_etherdev_mqs (Mark Salter) [1870102]
+- [netdrv] net: stmmac: use dev_info() before netdev is registered (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Prevent missing interrupts when running NAPI (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4/5: Clear unused address entries (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac2: Do not disable whole RX in dma_stop_rx() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4/5: Do not disable whole RX in dma_stop_rx() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4/5: Fix Hash Filter (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac1000: Clear unused address entries (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac1000: Fix Hash Filter (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac2: Also pass control frames while in promisc mode (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4/5: Also pass control frames while in promisc mode (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac1000: Also pass control frames while in promisc mode (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Switch MMC functions to HWIF callbacks (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac2: Add MAC loopback support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4/5: Add MAC loopback support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac1000: Add MAC loopback support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac100: Add MAC loopback support (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add MAC loopback callback to HWIF (Mark Salter) [1870102]
+- [netdrv] net: stmmac: set IC bit when transmitting frames with HW timestamp (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fixed new system time seconds value calculation (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Do not output error on deferred probe (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix csr_clk can't be zero issue (Mark Salter) [1870102]
+- [netdrv] net: stmmac: update rx tail pointer register to fix rx dma hang issue (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix reset gpio free missing (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dma channel control register need to be init first (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix ethtool flow control not able to get/set (Mark Salter) [1870102]
+- [netdrv] dwmac4_prog_mtl_tx_algorithms() missing write operation (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Set Flow Control to automatic mode in the driver (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac: Finish the Flow Control implementation (Mark Salter) [1870102]
+- [netdrv] net: stmmac: move stmmac_check_ether_addr() to driver probe (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Use bfsize1 in ndesc_init_rx_desc (Mark Salter) [1870102]
+- [netdrv] net: stmmac: don't log oversized frames (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix dropping of multi-descriptor RX frames (Mark Salter) [1870102]
+- [netdrv] net: stmmac: don't overwrite discard_frame status (Mark Salter) [1870102]
+- [netdrv] net: stmmac: don't stop NAPI processing when dropping a packet (Mark Salter) [1870102]
+- [netdrv] net: stmmac: ratelimit RX error logs (Mark Salter) [1870102]
+- [netdrv] net: stmmac: use correct DMA buffer size in the RX descriptor (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix memory corruption with large MTUs (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix jumbo frame sending with non-linear skbs (Mark Salter) [1870102]
+- [netdrv] net: stmmac: don't set own bit too early for jumbo frames (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Avoid one more sometimes uninitialized Clang warning (Mark Salter) [1870102]
+- [netdrv] net: ethernet: stmmac: add management of clk_csr property (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Avoid sometimes uninitialized Clang warnings (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac2: Also use TBU interrupt to clean TX path (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwmac4: Also use TBU interrupt to clean TX path (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix NAPI poll in TX path when in multi-queue (Mark Salter) [1870102]
+- [netdrv] net: stmmac: use correct define to get rx timestamp on GMAC4 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: fix ptp timestamping on Rx on gmac4 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: implement the SIOCGHWTSTAMP ioctl (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix a race in EEE enable callback (Mark Salter) [1870102]
+- [netdrv] net: stmmac: handle endianness in dwmac4_get_timestamp (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Disable EEE mode earlier in XMIT callback (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Send TSO packets always from Queue 0 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fallback to Platform Data clock in Watchdog conversion (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Prevent RX starvation in stmmac_napi_poll() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix the logic of checking if RX Watchdog must be enabled (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Check if CBS is supported before configuring (Mark Salter) [1870102]
+- [netdrv] net: stmmac: dwxgmac2: Only clear interrupts that are active (Mark Salter) [1870102]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: convert to DEFINE_SHOW_ATTRIBUTE (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix an error code in probe() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Move debugfs init/exit to ->probe()/->remove() (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix RX packet size > 8191 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fix stmmac_mdio_reset() when building stmmac as modules (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Set OWN bit for jumbo frames (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Enable TC Ops for GMAC >= 4 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add CBS support in XGMAC2 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Fixup the tail addr setting in xmit path (Mark Salter) [1870102]
+- [netdrv] stmmac: fix valid numbers of unicast filter entries (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Rework coalesce timer and fix multi-queue races (Mark Salter) [1870102]
+- [netdrv] Revert "net: stmmac: Do not keep rearming the coalesce timer in stmmac_xmit" (Mark Salter) [1870102]
+- [netdrv] Revert "net: stmmac: fix build failure due to missing COMMON_CLK dependency" (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Integrate XGMAC into main driver flow (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add PTP support for XGMAC2 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add MDIO related functions for XGMAC2 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add descriptor related callbacks for XGMAC2 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add DMA related callbacks for XGMAC2 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add MAC related callbacks for XGMAC2 (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add XGMAC 2.10 HWIF entry (Mark Salter) [1870102]
+- [netdrv] stmmac: fix signed 64-bit division (Mark Salter) [1870102]
+- [netdrv] net: stmmac_tc: use 64-bit arithmetic instead of 32-bit (Mark Salter) [1870102]
+- [netdrv] net: stmmac: Add support for CBS QDISC (Mark Salter) [1870102]
+- [tty] serial: 8250_tegra: Create Tegra specific 8250 driver (Mark Salter) [1870103]
+- [pci] PCI: Disable MSI for Tegra root ports (Mark Salter) [1870101]
+- [pci] PCI: Add MCFG quirks for Tegra194 host controllers (Mark Salter) [1870101]
+- [netdrv] tun: fix return value when the number of iovs exceeds MAX_SKB_FRAGS (Antoine Tenart) [1919364 1917563] {CVE-2021-0342}
+- [netdrv] tun: correct header offsets in napi frags mode (Antoine Tenart) [1919364 1917563] {CVE-2021-0342}
+- [netdrv] tun: Don't put_page() for all negative return values from XDP program (Antoine Tenart) [1919364]
+- [netdrv] tun: add mutex_unlock() call and napi.skb clearing in tun_get_user() (Antoine Tenart) [1919364]
+- [netdrv] tun: fix data-race in gro_normal_list() (Antoine Tenart) [1919364]
+- [netdrv] tun: fix use-after-free when register netdev failed (Antoine Tenart) [1919364]
+- [netdrv] tun: mark small packets as owned by the tap sock (Antoine Tenart) [1919364]
+- [netdrv] tun: use netdev_alloc_frag() in tun_napi_alloc_frags() (Antoine Tenart) [1919364]
+- [scsi] scsi: ibmvfc: Fix error return in ibmvfc_probe() (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Provide modules parameters for MQ settings (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Enable MQ and set reasonable defaults (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Purge SCSI channels after transport loss/reset (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Send Cancel MAD down each hw SCSI channel (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add cancel mad initialization helper (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Register Sub-CRQ handles with VIOS during channel setup (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Send commands down HW Sub-CRQ when channelized (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Set and track hw queue in ibmvfc_event struct (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Advertise client support for using hardware channels (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Implement channel enquiry and setup commands (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Map/request irq and register Sub-CRQ interrupt handler (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Define Sub-CRQ interrupt handler routine (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add handlers to drain and complete Sub-CRQ responses (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add Sub-CRQ IRQ enable/disable routine (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add alloc/dealloc routines for SCSI Sub-CRQ Channels (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add Subordinate CRQ definitions (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Define hcall wrapper for registering a Sub-CRQ (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add size parameter to ibmvfc_init_event_pool() (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Init/free event pool during queue allocation/free (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Move event pool init/free routines (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add vhost fields and defaults for MQ enablement (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Fix missing cast of ibmvfc_event pointer to u64 handle (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Relax locking around ibmvfc_queuecommand() (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Complete commands outside the host/queue lock (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Define per-queue state/list locks (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Make command event pool queue specific (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Define generic queue structure for CRQs (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Advertise client support for targetWWPN using v2 commands (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add support for target_wwpn field in v2 MADs and vfcFrame (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add FC payload retrieval routines for versioned vfcFrames (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add helper for testing capability flags (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Add new fields for version 2 of several MADs (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Deduplicate common ibmvfc_cmd init code (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Use correlation token to tag commands (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Remove trailing semicolon (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Byte swap login_buf.resp values in attribute show functions (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Interface updates for future FPIN and MQ support (Desnes Augusto Nunes do Rosario) [1868055]
+- [scsi] scsi: ibmvfc: Protect vhost->task_set increment by the host lock (Desnes Augusto Nunes do Rosario) [1868055]
+- [net] tcp: Fix potential use-after-free due to double kfree() (Florian Westphal) [1915164]
+- [nvdimm] libnvdimm/region: Enable MAP_SYNC for volatile regions (Steve Best) [1916650]
+- [net] bpf: Permit cond_resched for some iterators (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Fix PID fetching with a lot of results (Yauheni Kaliuta) [1874005]
+- [net] bpf: verifier: Use target program's type for access verifications (Yauheni Kaliuta) [1874005]
+- [tools] selftests: bpf: Test sockmap update from BPF (Yauheni Kaliuta) [1874005]
+- [net] bpf: sockmap: Allow update from BPF (Yauheni Kaliuta) [1874005]
+- [net] bpf: Override the meaning of ARG_PTR_TO_MAP_VALUE for sockmap and sockhash (Yauheni Kaliuta) [1874005]
+- [net] bpf: sockmap: Call sock_map_update_elem directly (Yauheni Kaliuta) [1874005]
+- [net] bpf: sockmap: Merge sockmap and sockhash update functions (Yauheni Kaliuta) [1874005]
+- [net] net: sk_msg: Simplify sk_psock initialization (Yauheni Kaliuta) [1874005]
+- [net] bpf: Enforce id generation for all may-be-null register type (Yauheni Kaliuta) [1874005]
+- [samples] samples: bpf: Cleanup bpf_load.o from Makefile (Yauheni Kaliuta) [1874005]
+- [include] bpf: Plug hole in struct bpf_sk_lookup_kern (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix endianness issues in sk_lookup/ctx_narrow_access (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Fix build slowdown (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix scalar32_min_max_or bounds tracking (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix "unresolved symbol" build error with resolve_btfids (Yauheni Kaliuta) [1874005]
+- [powerpc] bpf, powerpc: Fix misuse of fallthrough in bpf_jit_comp() (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix XDP program load regression for old kernels (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix native endian assumption when parsing BTF (Yauheni Kaliuta) [1874005]
+- [include] bpf: Prevent .BTF section elimination (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix sysfs export of empty BTF section (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Support passing BPFTOOL_VERSION to make (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix a rcu warning for bpffs map pretty-print (Yauheni Kaliuta) [1874005]
+- [net] bpf: Bpf_skc_to_* casting helpers require a NULL check on sk (Yauheni Kaliuta) [1874005]
+- [documentation] docs/bpf: Remove source code links (Yauheni Kaliuta) [1874005]
+- [documentation] docs/bpf: Fix ringbuf documentation (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix VERSIONED_SYM_COUNT number parsing (Yauheni Kaliuta) [1874005]
+- [tools] tools/libbpf: Avoid counting local symbols in ABI check (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix clobbering of r2 in bpf_gen_ld_abs (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add bpf_{update, delete}_map_elem in hashmap iter program (Yauheni Kaliuta) [1874005]
+- [net] bpf: Do not use bucket_lock for hashmap iterator (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Remove arch-specific include path in Makefile (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpf: build: Make sure resolve_btfids cleans up after itself (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix build failure from uninitialized variable warning (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix massive output from test_maps (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix test_progs-flavor run getting number of tests (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix a buffer out-of-bound access when filling raw_tp link_info (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Fix two typos in uapi/linux/bpf.h (Yauheni Kaliuta) [1874005]
+- [tools] tools/resolve_btfids: Fix sections with wrong alignment (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix map index used in error message (Yauheni Kaliuta) [1874005]
+- [tools] bpftool: Handle EAGAIN error code properly in pids collection (Yauheni Kaliuta) [1874005]
+- [net] bpf: Avoid visit same object multiple times (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix a rcu_sched stall issue with bpf task/task_file iterator (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix build on ppc64le architecture (Yauheni Kaliuta) [1874005]
+- [net] bpf: Use get_file_rcu() instead of get_file() for task_file iterator (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Make test_varlen work with 32-bit user-space arch (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Generate data section struct with conservative alignment (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Correct various core_reloc 64-bit assumptions (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Enforce 64-bitness of BTF for BPF object files (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix btf_dump test cases on 32-bit arches (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Handle BTF pointer sizes more carefully (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix BTF-defined map-in-map initialization on 32-bit host arches (Yauheni Kaliuta) [1874005]
+- [tools] selftest/bpf: Fix compilation warnings in 32-bit mode (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Fix compilation warnings in 32-bit mode (Yauheni Kaliuta) [1874005]
+- [documentation] doc: Add link to bpf helpers man page (Yauheni Kaliuta) [1874005]
+- [tools] bpf, selftests: Add tests to sock_ops for loading sk (Yauheni Kaliuta) [1874005]
+- [tools] bpf, selftests: Add tests for sock_ops load with r9, r8.r7 registers (Yauheni Kaliuta) [1874005]
+- [tools] bpf, selftests: Add tests for ctx access in sock_ops with single register (Yauheni Kaliuta) [1874005]
+- [net] bpf: sock_ops sk access may stomp registers when dst_reg = src_reg (Yauheni Kaliuta) [1874005]
+- [net] bpf: sock_ops ctx access may stomp registers in corner case (Yauheni Kaliuta) [1874005]
+- [net] net/core/filter.c: Use sizeof_field() macro (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Prevent overriding errno when logging errors (Yauheni Kaliuta) [1874005]
+- [net] bpf: Iterate through all PT_NOTE sections when looking for build id (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Handle GCC built-in types for Arm NEON (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Make skeleton code C++17-friendly by dropping typeof() (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix v4_to_v6 in sk_lookup (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Do not use __builtin_offsetof for offsetof (Yauheni Kaliuta) [1874005]
+- [net] bpf: Delete repeated words in comments (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix silent Makefile output (Yauheni Kaliuta) [1874005]
+- [documentation] bpf, doc: Remove references to warning message when using bpf_trace_printk() (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Fix compilation warning of selftests (Yauheni Kaliuta) [1874005]
+- [kernel] bpf: Remove inline from bpf_do_trace_printk (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Add missing return to resolve_btfids (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpf: Support new uapi for map element bpf iterator (Yauheni Kaliuta) [1874005]
+- [net] bpf: Change uapi for bpf iterator map elements (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Prevent runqslower from racing on building bpftool (Yauheni Kaliuta) [1874005]
+- [net] bpf: Allow to specify ifindex for skb in bpf_prog_test_run_skb (Yauheni Kaliuta) [1874005]
+- [net] bpf: Setup socket family and addresses in bpf_prog_test_run_skb (Yauheni Kaliuta) [1874005]
+- [tools] tools/resolve_btfids: Use libbpf's btf__parse() API (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Use libbpf's btf__parse() API for parsing BTF from file (Yauheni Kaliuta) [1874005]
+- [tools] libbf: Fix uninitialized pointer at btf__parse_raw() (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add btf__parse_raw() and generic btf__parse() APIs (Yauheni Kaliuta) [1874005]
+- [tools] tools, bpftool: Fix wrong return value in do_dump() (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix spurious test failures in core_retro selftest (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Add documentation and bash-completion for `link detach` (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Add `link detach` subcommand (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add bpf_link detach APIs (Yauheni Kaliuta) [1874005]
+- [tools] bpf, selftests: Use single cgroup helpers for both test_sockmap/progs (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix register in PT_REGS MIPS macros (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Make destructors more robust by handling ERR_PTR(err) cases (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Omit nodad flag when adding addresses to loopback (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Don't destroy failed link (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add xdpdrv mode for test_xdp_redirect (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Verify socket storage in cgroup/sock_{create, release} (Yauheni Kaliuta) [1874005]
+- [net] bpf: Expose socket storage to BPF_PROG_TYPE_CGROUP_SOCK (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test bpf_iter buffer access with negative offset (Yauheni Kaliuta) [1874005]
+- [net] bpf: Add missing newline characters in verifier error messages (Yauheni Kaliuta) [1874005]
+- [arm64] bpf, arm64: Add BPF exception tables (Yauheni Kaliuta) [1874005]
+- [tools] bpf, selftests: use :: 1 for localhost in tcp_server.py (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix swapped arguments in calls to check_buffer_access (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add new bpf_iter context structs to fix build on old kernels (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Fix bpf_ringbuf_output() signature to return long (Yauheni Kaliuta) [1874005]
+- [tools] tools, bpftool: Add LSM type to array of prog names (Yauheni Kaliuta) [1874005]
+- [tools] tools, bpftool: Skip type probe if name is not found (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add support for BPF XDP link (Yauheni Kaliuta) [1874005]
+- [include] bpf: Make bpf_link API available indepently of CONFIG_BPF_SYSCALL (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix build on architectures with special bpf_user_pt_regs_t (Yauheni Kaliuta) [1874005]
+- [net] bpf/local_storage: Fix build without CONFIG_CGROUP (Yauheni Kaliuta) [1874005]
+- [documentation] Documentation/bpf: Document CGROUP_STORAGE map type (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test CGROUP_STORAGE behavior on shared egress + ingress (Yauheni Kaliuta) [1874005]
+- [net] bpf: Make cgroup storages shared between programs on the same cgroup (Yauheni Kaliuta) [1874005]
+- [net] cgroup: use cgrp->kn->id as the cgroup ID (Yauheni Kaliuta) [1874005]
+- [net] netprio: use css ID instead of cgroup ID (Yauheni Kaliuta) [1874005]
+- [fs] kernfs: convert kernfs_node->id from union kernfs_node_id to u64 (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add get_stackid_cannot_attach (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test CGROUP_STORAGE map can't be used by multiple progs (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add callchain_stackid (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add test for CGROUP_STORAGE map on multiple attaches (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Print hint when PERF_EVENT_IOC_SET_BPF returns -EPROTO (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fail PERF_EVENT_IOC_SET_BPF when bpf_get_cannot work (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add a test for out of bound rdonly buf access (Yauheni Kaliuta) [1874005]
+- [net] bpf: Separate bpf_get_for perf events BPF (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add a test for bpf sk_storage_map iterator (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add test for bpf array map iterators (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add test for bpf hash map iterators (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Add bpftool support for bpf map element iterator (Yauheni Kaliuta) [1874005]
+- [tools] tools/libbpf: Add support for bpf map element iterator (Yauheni Kaliuta) [1874005]
+- [net] bpf: Implement bpf iterator for sock local storage map (Yauheni Kaliuta) [1874005]
+- [net] bpf: Implement bpf iterator for array maps (Yauheni Kaliuta) [1874005]
+- [net] bpf: Implement bpf iterator for hash maps (Yauheni Kaliuta) [1874005]
+- [net] bpf: Implement bpf iterator for map elements (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix pos computation for bpf_iter seq_ops->start() (Yauheni Kaliuta) [1874005]
+- [net] bpf: Support readonly/readwrite buffers in verifier (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test BPF socket lookup and reuseport with connections (Yauheni Kaliuta) [1874005]
+- [net] bpf: Refactor to provide aux info to bpf_iter_init_seq_priv_t (Yauheni Kaliuta) [1874005]
+- [net] bpf: Refactor bpf_iter_reg to have separate seq_info member (Yauheni Kaliuta) [1874005]
+- [net] bpf: Add bpf_prog iterator (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Strip BPF .o files before skeleton generation (Yauheni Kaliuta) [1874005]
+- [documentation] docs: bpf/bpf_devel_QA.rst: fix reference to nonexistent document (Yauheni Kaliuta) [1874005]
+- [documentation] docs: bpf/index.rst: Add ringbuf.rst (Yauheni Kaliuta) [1874005]
+- [tools] bpftool: Use only nftw for file tree parsing (Yauheni Kaliuta) [1874005]
+- [net] bpf: net: Use precomputed btf_id for bpf iterators (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix test_lwt_seg6local.sh hangs (Yauheni Kaliuta) [1874005]
+- [net] bpf: Make btf_sock_ids global (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Add BTF_ID_LIST_GLOBAL in btf_ids.h (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpf: Sync btf_ids.h to tools (Yauheni Kaliuta) [1874005]
+- [net] bpf: Compute bpf_skc_to_*() helper socket btf ids at build time (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Fix error handing in do_skeleton() (Yauheni Kaliuta) [1874005]
+- [tools] libbpf bpf_helpers: Use __builtin_offsetof for offsetof (Yauheni Kaliuta) [1874005]
+- [s390] s390/bpf: Use bpf_skip() in bpf_jit_prologue() (Yauheni Kaliuta) [1874005]
+- [net] bpf: cpumap: Fix possible rcpu kthread hung (Yauheni Kaliuta) [1874005]
+- [s390] s390/bpf: implement BPF_PROBE_MEM (Yauheni Kaliuta) [1874005 1868273]
+- [s390] s390/kernel: expand exception table logic to allow new handling options (Yauheni Kaliuta) [1874005 1868273]
+- [s390] s390: fix __EMIT_BUG() macro (Yauheni Kaliuta) [1874005 1868273]
+- [s390] s390/bug: add entry size to the __bug_table section (Yauheni Kaliuta) [1874005 1868273]
+- [s390] s390/kernel: unify EX_TABLE* implementations (Yauheni Kaliuta) [1874005 1868273]
+- [tools] selftests/bpf: Tests for BPF_SK_LOOKUP attach point (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add verifier tests for bpf_sk_lookup context access (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Add name mappings for SK_LOOKUP prog and attach type (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add support for SK_LOOKUP program type (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Sync linux/bpf.h to tools/ (Yauheni Kaliuta) [1874005]
+- [include] bpf: Introduce SK_LOOKUP program type with a dedicated attach point (Yauheni Kaliuta) [1874005]
+- [net] bpf, netns: Handle multiple link attachments (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Drop duplicated words in uapi helper comments (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix possible hang in sockopt_inherit (Yauheni Kaliuta) [1874005]
+- [tools] selftest: Add tests for XDP programs in CPUMAP entries (Yauheni Kaliuta) [1874005]
+- [samples] samples/bpf: xdp_redirect_cpu: Load a eBPF program on cpumap (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add SEC name for xdp programs attached to CPUMAP (Yauheni Kaliuta) [1874005]
+- [net] bpf: cpumap: Implement XDP_REDIRECT for eBPF programs attached to map entries (Yauheni Kaliuta) [1874005]
+- [net] bpf: cpumap: Add the possibility to attach an eBPF program to cpumap (Yauheni Kaliuta) [1874005]
+- [net] net: Refactor xdp_convert_buff_to_frame (Yauheni Kaliuta) [1874005]
+- [net] cpumap: Formalize map value as a named struct (Yauheni Kaliuta) [1874005]
+- [samples] samples/bpf: xdp_redirect_cpu_user: Do not update bpf maps in option loop (Yauheni Kaliuta) [1874005]
+- [net] cpumap: Use non-locked version __ptr_ring_consume_batched (Yauheni Kaliuta) [1874005]
+- [powerpc] powerpc/ppc-opcode: Consolidate powerpc instructions from bpf_jit.h (Yauheni Kaliuta) [1874005]
+- [powerpc] powerpc/bpf_jit: Reuse instruction macros from ppc-opcode.h (Yauheni Kaliuta) [1874005]
+- [powerpc] powerpc/ppc-opcode: Move ppc instruction encoding from test_emulate_step (Yauheni Kaliuta) [1874005]
+- [powerpc] powerpc/lib: Fix emulate_step() std test (Yauheni Kaliuta) [1874005]
+- [powerpc] powerpc/ppc-opcode: Introduce PPC_RAW_* macros for base instruction encoding (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Fix cross build for CONFIG_DEBUG_INFO_BTF option (Yauheni Kaliuta) [1874005]
+- [include] bpf: Fix build for disabled CONFIG_DEBUG_INFO_BTF option (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Strip away modifiers from global variables (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Support stripping modifiers for btf_dump (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add selftests verifying bpf_trace_printk() behaviour (Yauheni Kaliuta) [1874005]
+- [kernel] bpf: Use dedicated bpf_trace_printk event instead of trace_printk() (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Remove warning about PID iterator support (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add test for resolve_btfids (Yauheni Kaliuta) [1874005]
+- [tools] tools headers: Adopt verbatim copy of btf_ids.h from kernel sources (Yauheni Kaliuta) [1874005]
+- [documentation] bpf: Add info about .BTF_ids section to btf.rst (Yauheni Kaliuta) [1874005]
+- [net] bpf: Use BTF_ID to resolve bpf_ctx_convert struct (Yauheni Kaliuta) [1874005]
+- [net] bpf: Remove btf_id helpers resolving (Yauheni Kaliuta) [1874005]
+- [net] bpf: Resolve BTF IDs in vmlinux image (Yauheni Kaliuta) [1874005]
+- [include] bpf: Add BTF_ID_LIST/BTF_ID/BTF_ID_UNUSED macros (Yauheni Kaliuta) [1874005]
+- [net] bpf: Support llvm-objcopy for vmlinux BTF (Yauheni Kaliuta) [1874005]
+- [powerpc] powerpc: Include .BTF section (Yauheni Kaliuta) [1874005]
+- [scripts] kbuild: Remove debug info from kallsyms linking (Yauheni Kaliuta) [1874005]
+- [scripts] kbuild: Parameterize kallsyms generation and correct reporting (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Compile resolve_btfids tool at kernel compilation start (Yauheni Kaliuta) [1874005]
+- [kernel] tracing: Make struct ring_buffer less ambiguous (Yauheni Kaliuta) [1874005]
+- [kernel] tracing: Rename trace_buffer to array_buffer (Yauheni Kaliuta) [1874005]
+- [tools] tools headers: Synchronize linux/bits.h with the kernel sources (Yauheni Kaliuta) [1874005]
+- [tools] tools headers: Update linux/vdso.h and grab a copy of vdso/const.h (Yauheni Kaliuta) [1874005]
+- [tools] tools headers: Adopt verbatim copy of compiletime_assert() from kernel sources (Yauheni Kaliuta) [1874005]
+- [tools] objtool: Query pkg-config for libelf location (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Add resolve_btfids tool to resolve BTF IDs in ELF object (Yauheni Kaliuta) [1874005]
+- [samples] bpf: Fix fds_example SIGSEGV error (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix memory leak and optimize BTF sanitization (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Switch perf_buffer test to tracepoint and skeleton (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Handle missing BPF_OBJ_GET_INFO_BY_FD gracefully in perf_buffer (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add test relying only on CO-RE and no recent kernel features (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Improve BTF sanitization handling (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add btf__set_fd() for more control over loaded BTF FD (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Make BTF finalization strict (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: test_progs avoid minus shell exit codes (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: test_progs use another shell exit on non-actions (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Fix another bpftool segfault without skeleton code enabled (Yauheni Kaliuta) [1874005]
+- [tools] selftests: bpf: Remove unused bpf_map_def_legacy struct (Yauheni Kaliuta) [1874005]
+- [samples] samples: bpf: Refactor BPF map performance test with libbpf (Yauheni Kaliuta) [1874005]
+- [samples] samples: bpf: Refactor BPF map in map test with libbpf (Yauheni Kaliuta) [1874005]
+- [samples] samples: bpf: Fix bpf programs with kprobe/sys_connect event (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test BPF_CGROUP_INET_SOCK_RELEASE (Yauheni Kaliuta) [1874005]
+- [tools] bpftool: Add support for BPF_CGROUP_INET_SOCK_RELEASE (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add support for BPF_CGROUP_INET_SOCK_RELEASE (Yauheni Kaliuta) [1874005]
+- [net] bpf: Add BPF_CGROUP_INET_SOCK_RELEASE hook (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Fix compilation error of bpf_iter_task_stack.c (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Fix bpftool without skeleton code enabled (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix build without CONFIG_STACKTRACE (Yauheni Kaliuta) [1874005]
+- [tools] bpf: selftests: Restore netns after each test (Yauheni Kaliuta) [1874005]
+- [tools] bpf: selftests: A few improvements to network_helpers.c (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test_progs option for listing test names (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test_progs option for getting number of tests (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test_progs indicate to shell on non-actions (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Turn off -Wnested-externs warning (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Switch test_vmlinux to use hrtimer_range_start_ns (Yauheni Kaliuta) [1874005]
+- [net] bpf: Fix net/core/filter build errors when INET is not enabled (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add bpf_iter test with bpf_get_task_stack() (Yauheni Kaliuta) [1874005]
+- [kernel] bpf: Allow pB in bpf_seq_printf() and bpf_trace_printk() (Yauheni Kaliuta) [1874005]
+- [net] bpf: Introduce helper bpf_get_task_stack() (Yauheni Kaliuta) [1874005]
+- [net] bpf: Remove redundant synchronize_rcu (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add byte swapping selftest (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Make bpf_endian co-exist with vmlinux.h (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Allow substituting custom vmlinux.h for selftests build (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Allow substituting custom vmlinux.h for the build (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test auto-load disabling logic for BPF programs (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Support disabling auto-loading BPF programs (Yauheni Kaliuta) [1874005]
+- [tools] tools, bpftool: Define attach_type_name array only once (Yauheni Kaliuta) [1874005]
+- [tools] tools, bpftool: Define prog_type_name array only once (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add tcp/udp iterator programs to selftests (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Implement sample udp/udp6 bpf_iter programs (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Implement sample tcp/tcp6 bpf_iter programs (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add more common macros to bpf_tracing_net.h (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Refactor some net macros to bpf_tracing_net.h (Yauheni Kaliuta) [1874005]
+- [kernel] bpf: Add bpf_skc_to_udp6_sock() helper (Yauheni Kaliuta) [1874005]
+- [net] net: bpf: Implement bpf iterator for udp (Yauheni Kaliuta) [1874005]
+- [net] net: bpf: Add bpf_seq_afinfo in udp_iter_state (Yauheni Kaliuta) [1874005]
+- [kernel] bpf: Add bpf_skc_to_{tcp, tcp_timewait, tcp_request}_sock() helpers (Yauheni Kaliuta) [1874005]
+- [net] bpf: Add bpf_skc_to_tcp6_sock() helper (Yauheni Kaliuta) [1874005]
+- [kernel] bpf: Allow tracing programs to use bpf_jiffies64() helper (Yauheni Kaliuta) [1874005]
+- [kernel] bpf: Support 'X' in bpf_seq_printf() helper (Yauheni Kaliuta) [1874005]
+- [net] net: bpf: Implement bpf iterator for tcp (Yauheni Kaliuta) [1874005]
+- [net] net: bpf: Add bpf_seq_afinfo in tcp_iter_state (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Workaround for get_stack_rawtp test (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Prevent loading vmlinux BTF twice (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Fix spelling mistake "kallasyms" -> "kallsyms" (Yauheni Kaliuta) [1874005]
+- [tools] tools, bpftool: Fix variable shadowing in emit_obj_refs_json() (Yauheni Kaliuta) [1874005]
+- [tools] tools, bpftool: Correctly evaluate $(BUILD_BPF_SKELS) in Makefile (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add variable-length data concat pattern less than test (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add variable-length data concatenation pattern test (Yauheni Kaliuta) [1874005]
+- [tools] bpf: Switch most helper return values from 32-bit int to 64-bit long (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Add documentation and sample output for process info (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Show info for processes holding BPF map/prog/link/btf FDs (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Wrap source argument of BPF_CORE_READ macro in parentheses (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Generalize BPF skeleton support and generate vmlinux.h (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Minimize bootstrap bpftool (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Move map/prog parsing logic into common (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Add __ksym extern selftest (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add support for extracting kernel symbol addresses (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Generalize libbpf externs support (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Add a bunch of attribute getters/setters for map definitions (Yauheni Kaliuta) [1874005]
+- [tools] selftests/bpf: Test access to bpf map pointer (Yauheni Kaliuta) [1874005]
+- [net] bpf: Set map_btf_{name, id} for all map types (Yauheni Kaliuta) [1874005]
+- [net] bpf: Support access to bpf map fields (Yauheni Kaliuta) [1874005]
+- [net] bpf: Rename bpf_htab to bpf_shtab in sock_map (Yauheni Kaliuta) [1874005]
+- [net] bpf: Switch btf_parse_vmlinux to btf_find_by_name_kind (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpftool: Relicense bpftool's BPF profiler prog as dual-license GPL/BSD (Yauheni Kaliuta) [1874005]
+- [tools] tools/bpf: Add verifier tests for 32bit pointer/scalar arithmetic (Yauheni Kaliuta) [1874005]
+- [net] bpf: Avoid verifier failure for 32bit pointer arithmetic (Yauheni Kaliuta) [1874005]
+- [net] bpf: sk_storage: Prefer to get a free cache_idx (Yauheni Kaliuta) [1874005]
+- [tools] libbpf: Bump version to 0.1.0 (Yauheni Kaliuta) [1874005]
+- [s390] s390/pci: fix hot-plug of PCI function missing bus (Philipp Rudo) [1915916]
+- [net] tcp: fix race condition when creating child sockets from syncookies (Florian Westphal) [1915164]
+- [netdrv] bonding: set xfrm feature flags more sanely (Jarod Wilson) [1893979]
+- [netdrv] bonding: fix feature flag setting at init time (Jarod Wilson) [1893979]
+
+* Mon Feb 01 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-281.el8]
+- [fs] cifs: handle -EINTR in cifs_setattr (Leif Sahlberg) [1848178]
+- [tty] serial: 8250: drop the printk from serial8250_interrupt() (Vitaly Kuznetsov) [1919745]
+- [fs] cifs: do not fail __smb_send_rqst if non-fatal signals are pending (Leif Sahlberg) [1848178]
+- [netdrv] ibmvnic: continue fatal error reset after passive init (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: fix: NULL pointer dereference (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: fix login buffer memory leak (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: fix rx buffer tracking and index management in replenish_rx_pool partial success (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: add some debugs (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Fix TX completion error handling (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Ensure that SCRQ entry reads are correctly ordered (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: reduce wait for completion time (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: no reset timeout for 5 seconds after reset (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: send_login should check for crq errors (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: track pending login (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: delay next reset if hard reset fails (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: restore adapter state on failed reset (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: avoid memset null scrq msgs (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: stop free_all_rwi on failed reset (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: handle inconsistent login with reset (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: enhance resetting status check during module exit (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: fix NULL pointer dereference in ibmvic_reset_crq (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: fix NULL pointer dereference in reset_sub_crq_queues (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: skip tx timeout reset while in resetting (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: notify peers when failover and migration happen (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: fix call_netdevice_notifiers in do_reset (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Do not replenish RX buffers after every polling loop (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Use netdev_alloc_skb instead of alloc_skb to replenish RX buffers (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Correctly re-enable interrupts in NAPI polling routine (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Ensure that device queue memory is cache-line aligned (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Remove send_subcrq function (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Clean up TX code and TX buffer data structure (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Introduce xmit_more support using batched subCRQ hcalls (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Introduce batched RX buffer descriptor transmission (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Introduce indirect subordinate Command Response Queue buffer (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: fix ibmvnic_set_mac (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: save changed mac address to adapter->mac_addr (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: create send_control_ip_offload (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: create send_query_ip_offload (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: rename send_map_query to send_query_map (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: rename ibmvnic_send_req_caps to send_request_cap (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: rename send_cap_queries to send_query_cap (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: set up 200GBPS speed (Diego Domingos) [1901513]
+- [netdrv] Revert "ibmvnic: remove never executed if statement" (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Harden device Command Response Queue handshake (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: Fix use-after-free of VNIC login response buffer (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: merge ibmvnic_reset_init and ibmvnic_init (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: remove never executed if statement (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: improve ibmvnic_init and ibmvnic_reset_init (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: compare adapter->init_done_rc with more readable ibmvnic_rc_codes (Diego Domingos) [1901513]
+- [netdrv] ibmvnic: store RX and TX subCRQ handle array in ibmvnic_adapter struct (Diego Domingos) [1901513]
+- [netdrv] net: ibm: fix return type of ndo_start_xmit function (Diego Domingos) [1901513]
+- [tools] tools arch x86: Sync asm/cpufeatures.h with the kernel sources (David Arcari) [1916478]
+- [x86] x86/cpu/amd: Call init_amd_zn() om Family 19h processors too (David Arcari) [1916478]
+- [ata] ahci: Add Intel Emmitsburg PCH RAID PCI IDs (David Arcari) [1894284]
+- [vfio] vfio iommu: Add dma available capability (Philipp Rudo) [1903970]
+- [x86] x86/entry/64: Do not include inst.h in calling.h (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Fix GS == 1, 2, and 3 tests (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Test PTRACE_PEEKUSER for GSBASE with invalid LDT GS (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Reap a forgotten child (Scott Wood) [1490498]
+- [x86] x86/fsgsbase: Replace static_cpu_has() with boot_cpu_has() (Scott Wood) [1490498]
+- [x86] x86/entry/64: Correct the comment over SAVE_AND_SET_GSBASE (Scott Wood) [1490498]
+- [x86] x86/entry/64: Do not use RDPID in paranoid entry to accomodate KVM (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Fix NULL deref in 86_fsgsbase_read_task (Scott Wood) [1490498]
+- [x86] x86/fsgsbase: Fix Xen PV support (Scott Wood) [1490498]
+- [x86] x86/ptrace: Fix 32-bit PTRACE_SETREGS vs fsbase and gsbase (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Add a missing memory constraint (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Fix a comment in the ptrace_write_gsbase test (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Test GS selector on ptracer-induced GS base write (Scott Wood) [1490498]
+- [documentation] Documentation/x86/64: Add documentation for GS/FS addressing mode (Scott Wood) [1490498]
+- [x86] x86/elf: Enumerate kernel FSGSBASE capability in AT_HWCAP2 (Scott Wood) [1490498]
+- [x86] x86/cpu: Enable FSGSBASE on 64bit by default and add a chicken bit (Scott Wood) [1490498]
+- [x86] x86/entry/64: Handle FSGSBASE enabled paranoid entry/exit (Scott Wood) [1490498]
+- [x86] x86/entry/64: Remove TRACE_IRQS_*_DEBUG (Scott Wood) [1490498]
+- [x86] x86/entry/64: Introduce the FIND_PERCPU_BASE macro (Scott Wood) [1490498]
+- [x86] x86/entry/64: Switch CR3 before SWAPGS in paranoid entry (Scott Wood) [1490498]
+- [x86] x86/speculation/swapgs: Check FSGSBASE in enabling SWAPGS mitigation (Scott Wood) [1490498]
+- [x86] x86/process/64: Use FSGSBASE instructions on thread copy and ptrace (Scott Wood) [1490498]
+- [x86] x86/process: Unify copy_thread_tls() (Scott Wood) [1490498]
+- [x86] x86/process/64: Use FSBSBASE in switch_to() if available (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Enable FSGSBASE instructions in helper functions (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Add intrinsics for FSGSBASE instructions (Scott Wood) [1490498]
+- [x86] x86/cpu: Add 'unsafe_fsgsbase' to enable CR4.FSGSBASE (Scott Wood) [1490498]
+- [x86] x86/ptrace: Prevent ptrace from clearing the FS/GS selector (Scott Wood) [1490498]
+- [x86] x86/ptrace: Document FSBASE and GSBASE ABI oddities (Scott Wood) [1490498]
+- [x86] Revert "x86/ptrace: Prevent ptrace from clearing the FS/GS selector" and fix the test (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Fix some test case bugs (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Test ptracer-induced GSBASE write with FSGSBASE (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Test RD/WRGSBASE (Scott Wood) [1490498]
+- [documentation] kbuild: Raise the minimum required binutils version to 2.21 (Scott Wood) [1490498]
+- [tools] selftests/x86/fsgsbase: Test ptracer-induced GSBASE write (Scott Wood) [1490498]
+- [x86] x86/ptrace: Prevent ptrace from clearing the FS/GS selector (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Fix the base write helper functions (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Clean up various details (Scott Wood) [1490498]
+- [x86] x86/segments: Introduce the 'CPUNODE' naming to better document the segment limit CPU/node NR trick (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Factor out FS/GS segment loading from __switch_to() (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Convert the ELF core dump code to the new FSGSBASE helpers (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Make ptrace use the new FS/GS base helpers (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Introduce FS/GS base helper functions (Scott Wood) [1490498]
+- [x86] x86/fsgsbase/64: Fix ptrace() to read the FS/GS base accurately (Scott Wood) [1490498]
+- [net] esp: select CRYPTO_SEQIV (Vladis Dronov) [1905088]
+- [crypto] treewide: Use fallthrough pseudo-keyword (Vladis Dronov) [1905088]
+- [crypto] crypto: drbg - always try to free Jitter RNG instance (Vladis Dronov) [1905088]
+- [crypto] crypto: drbg - should select CTR (Vladis Dronov) [1905088]
+- [crypto] crypto: ctr - no longer needs CRYPTO_SEQIV (Vladis Dronov) [1905088]
+- [crypto] crypto: drbg - always seeded with SP800-90B compliant noise source (Vladis Dronov) [1905088]
+- [crypto] crypto: jitter - SP800-90B compliance (Vladis Dronov) [1905088]
+- [crypto] crypto: jitter - add header to fix buildwarnings (Vladis Dronov) [1905088]
+- [crypto] crypto: jitter - fix comments (Vladis Dronov) [1905088]
+- [crypto] crypto: jitter - update implementation to 2.1.2 (Vladis Dronov) [1905088]
+- [crypto] crypto: drbg - in-place cipher operation for CTR (Vladis Dronov) [1905088]
+- [crypto] crypto: drbg - eliminate constant reinitialization of SGL (Vladis Dronov) [1905088]
+- [vfio] vfio/pci: Implement ioeventfd thread handler for contended memory lock (Alex Williamson) [1861560]
+- [vfio] vfio iommu type1: Fix memory leak in vfio_iommu_type1_pin_pages (Alex Williamson) [1896568]
+- [vfio] vfio/pci: Clear token on bypass registration failure (Alex Williamson) [1896568]
+- [vfio] vfio/type1: fix dirty bitmap calculation in vfio_dma_rw (Alex Williamson) [1497898]
+- [vfio] vfio: fix a missed vfio group put in vfio_pin_pages (Alex Williamson) [1497898]
+- [vfio] vfio: add a singleton check for vfio_group_pin_pages (Alex Williamson) [1497898]
+- [vfio] vfio/pci: Don't regenerate vconfig for all BARs if !bardirty (Alex Williamson) [1896568]
+- [vfio] vfio/pci: Remove redundant declaration of vfio_pci_driver (Alex Williamson) [1896568]
+- [uapi] vfio: Fix typo of the device_state (Alex Williamson) [1497898]
+- [vfio] vfio/type1: Add proper error unwind for vfio_iommu_replay() (Alex Williamson) [1866141]
+- [vfio] vfio-pci: Avoid recursive read-lock usage (Alex Williamson) [1861560]
+- [vfio] vfio/type1: Refactor vfio_iommu_type1_ioctl() (Alex Williamson) [1896568]
+- [vfio] vfio/pci: Add QAT devices to denylist (Alex Williamson) [1896565]
+- [vfio] vfio/pci: Add device denylist (Alex Williamson) [1896565]
+- [vfio] vfio/pci: Hold igate across releasing eventfd contexts (Alex Williamson) [1896568]
+- [vfio] vfio/type1: Add conditional rescheduling after iommu map failed (Alex Williamson) [1896568]
+- [vfio] vfio/pci: Add Intel X550 to hidden INTx devices (Alex Williamson) [1896567]
+- [vfio] vfio: Cleanup allowed driver naming (Alex Williamson) [1896568]
+- [uapi] vfio/type1: Fix migration info capability ID (Alex Williamson) [1497898]
+- [vfio] vfio iommu: typecast corrections (Alex Williamson) [1497898]
+- [vfio] vfio iommu: Use shift operation for 64-bit integer division (Alex Williamson) [1497898]
+- [vfio] vfio/mdev: Fix reference count leak in add_mdev_supported_type (Alex Williamson) [1896568]
+- [vfio] vfio: Selective dirty page tracking if IOMMU backed device pins pages (Alex Williamson) [1497898]
+- [vfio] vfio iommu: Add migration capability to report supported features (Alex Williamson) [1497898]
+- [vfio] vfio iommu: Update UNMAP_DMA ioctl to get dirty bitmap before unmap (Alex Williamson) [1497898]
+- [vfio] vfio iommu: Implementation of ioctl for dirty pages tracking (Alex Williamson) [1497898]
+- [uapi] vfio iommu: Add ioctl definition for dirty pages tracking (Alex Williamson) [1497898]
+- [vfio] vfio iommu: Cache pgsize_bitmap in struct vfio_iommu (Alex Williamson) [1497898]
+- [vfio] vfio iommu: Remove atomicity of ref_count of pinned pages (Alex Williamson) [1497898]
+- [uapi] vfio: UAPI for migration interface for device state (Alex Williamson) [1497898]
+- [vfio] vfio/pci: Remove dev_fmt definition (Alex Williamson) [1896568]
+- [vfio] vfio: Use dev_printk() when possible (Alex Williamson) [1896568]
+- [drm] drm: allow limiting the scatter list size (Lyude Paul) [1876018 1851790]
+- [drm] drm/nouveau/kms/nv50-: Fix clock checking algorithm in nv50_dp_mode_valid() (Lyude Paul) [1876018]
+- [drm] drm/nouveau/kms/nv50-: Get rid of bogus nouveau_conn_mode_valid() (Lyude Paul) [1876018]
+- [drm] DRM Backport 5.8 -> 5.9 (Lyude Paul) [1876018]
+- [drm] drm/edid: Fix uninitialized variable in drm_cvt_modes() (Lyude Paul) [1876018]
+- [of] of_graph: add of_graph_is_present() (Lyude Paul) [1876018]
+- [drm] virtio: virtio_has_iommu_quirk -> virtio_has_dma_quirk (Lyude Paul) [1876018]
+- [vhost] virtio: VIRTIO_F_IOMMU_PLATFORM -> VIRTIO_F_ACCESS_PLATFORM (Lyude Paul) [1876018]
+- [include] virtio_config: LE config space accessors (Lyude Paul) [1876018]
+- [kernel] sched: Remove sched_set_*() return value (Lyude Paul) [1876018]
+- [include] scatterlist: protect parameters of the sg_table related macros (Lyude Paul) [1876018]
+- [include] scatterlist: add generic wrappers for iterating over sgtable objects (Lyude Paul) [1876018]
+- [dma] dma-mapping: add generic helpers for mapping sgtable objects (Lyude Paul) [1876018]
+- [drm] DRM Backport 5.7 -> 5.8 (Lyude Paul) [1876018]
+- [drm] drm/fb-helper: Fix vt restore (Lyude Paul) [1876018]
+- [tty] tty/sysrq: constify the the sysrq_key_op(s) (Lyude Paul) [1876018]
+- [tools] augmented rbtree: rework the RB_DECLARE_CALLBACKS macro definition (Lyude Paul) [1876018]
+- [mm] augmented rbtree: add new RB_DECLARE_CALLBACKS_MAX macro (Lyude Paul) [1876018]
+- [tools] augmented rbtree: add comments for RB_DECLARE_CALLBACKS macro (Lyude Paul) [1876018]
+- [tools] rbtree: avoid generating code twice for the cached versions (tools copy) (Lyude Paul) [1876018]
+- [tty] tty/sysrq: constify the sysrq API (Lyude Paul) [1876018]
+- [tty] tty/sysrq: alpha: export and use __sysrq_get_key_op() (Lyude Paul) [1876018]
+- [include] uaccess: Add user_read_access_begin/end and user_write_access_begin/end (Lyude Paul) [1876018]
+- [PATCH] [drm] DRM Backport 5.6 -> 5.7 (Lyude Paul) [1876018]
+- [vfio] vfio: avoid inefficient operations on VFIO group in vfio_pin/unpin_pages (Lyude Paul) [1876018]
+- [vfio] vfio: allow external user to get vfio group from device (Lyude Paul) [1876018]
+- [drm] drm/fbdev-helper: don't force restores (Lyude Paul) [1876018]
+- [include] vgaswitcheroo: call fbcon_remap_all directly (Lyude Paul) [1876018]
+- [video] fbcon: Do not takeover the console from atomic context (Lyude Paul) [1878805 1876018]
+- [video] fbcon: Only defer console takeover if the current console driver is the dummycon (Lyude Paul) [1878805 1876018]
+- [video] fbcon: Only allow FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER if fbdev is builtin (Lyude Paul) [1878805 1876018]
+- [video] console/fbcon: Add support for deferred console takeover (Lyude Paul) [1878805 1876018]
+- [video] fbcon: Call WARN_CONSOLE_UNLOCKED() where applicable (Lyude Paul) [1878805 1876018]
+- [mm] mm: Split huge pages on write-notify or COW (Chris von Recklinghausen) [1913692]
+- [mm] mm: Introduce vma_is_special_huge (Chris von Recklinghausen) [1913692]
+
+* Fri Jan 29 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-280.el8]
+- [tools] kselftests: set rx/txtimestamp.sh to correct permission (Hangbin Liu) [1908269]
+- [tools] kselftests: set udpgro.sh, udpgro_bench.sh, reuseport_addr_any.sh to correct permission (Hangbin Liu) [1908269]
+- [net] DCB: Validate DCB_ATTR_DCB_BUFFER argument (Balazs Nemeth) [1891595]
+- [net] netlabel: remove unused param from audit_log_format() (Balazs Nemeth) [1891595]
+- [net] netlabel: fix problems with mapping removal (Balazs Nemeth) [1891595]
+- [net] af_key: pfkey_dump needs parameter validation (Balazs Nemeth) [1891595]
+- [tools] perf tools: Add 'evlist' control command (Jiri Olsa) [1844111]
+- [tools] perf tools: Allow to enable/disable events via control file (Jiri Olsa) [1844111]
+- [tools] perf tools: Add evlist__disable_evsel/evlist__enable_evsel (Jiri Olsa) [1844111]
+- [tools] perf tools: Reformat record's control fd man text (Jiri Olsa) [1844111]
+- [tools] perf evlist: Use the right prefix for 'struct evlist' 'find' methods (Jiri Olsa) [1844111]
+- [tools] perf evlist: Use the right prefix for 'struct evlist' enable event methods (Jiri Olsa) [1844111]
+- [tools] perf evlist: Use the right prefix for 'struct evlist' 'toggle' methods (Jiri Olsa) [1844111]
+- [x86] perf/amd/uncore: Inform the user how many counters each uncore PMU has (Michael Petlan) [1884816]
+- [powercap] powercap: RAPL: Add AMD Fam19h RAPL support (Michael Petlan) [1884816]
+- [powercap] powercap: Add AMD Fam17h RAPL support (Michael Petlan) [1884816]
+- [powercap] powercap/intel_rapl_msr: Convert rapl_msr_priv into pointer (Michael Petlan) [1884816]
+- [x86] x86/msr-index: sort AMD RAPL MSRs by address (Michael Petlan) [1884816]
+- [thunderbolt] thunderbolt: Add support for Intel Maple Ridge (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Add USB4 router operation proxy for firmware connection manager (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Move constants for USB4 router operations to tb_regs.h (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Add connection manager specific hooks for USB4 router operations (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Pass TX and RX data directly to usb4_switch_op() (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Pass metadata directly to usb4_switch_op() (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Perform USB4 router NVM upgrade in two phases (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Return -ENOTCONN when ERR_CONN is received (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Keep the parent runtime resumed for a while on device disconnect (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Log adapter numbers in decimal in path activation/deactivation (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Log which connection manager implementation is used (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Move max_boot_acl field to correct place in struct icm (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Fix use-after-free in remove_unplugged_switch() (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Add DMA traffic test driver (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Add support for end-to-end flow control (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Make it possible to allocate one directional DMA tunnel (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Create debugfs directory automatically for services (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Add functions for enabling and disabling lane bonding on XDomain (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Add link_speed and link_width to XDomain (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Create XDomain devices for loops back to the host (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Find XDomain by route instead of UUID (Torez Smith) [1782721]
+- [thunderbolt] thunderbolt: Do not clear USB4 router protocol adapter IFC and ISE bits (Torez Smith) [1782721]
+- [net] ipv6: fib: flush exceptions when purging route (Hangbin Liu) [1916084]
+- [net] ipv6: addrlabel: fix possible memory leak in ip6addrlbl_net_init (Hangbin Liu) [1916084]
+- [net] ipv6: remove unused function ipv6_skb_idev() (Hangbin Liu) [1916084]
+- [net] ipv6: Fix error path to cancel the meseage (Hangbin Liu) [1916084]
+- [tools] selftests/net/fib_tests: update addr_metric_test for peer route testing (Hangbin Liu) [1916084]
+- [net] net/ipv6: remove the old peer route if change it to a new one (Hangbin Liu) [1916084]
+- [tools] selftests/net: remove not backported tests (Hangbin Liu) [1908340]
+- [netdrv] bonding: add a vlan+srcmac tx hashing option (Jarod Wilson) [1724795]
+- [security] selinux: mark selinux_xfrm_refcount as __read_mostly (Ondrej Mosnacek) [1904940]
+- [net] udp: fix integer overflow while computing available space in sk_rcvbuf (Xin Long) [1916997]
+- [fs] NFSv4: make cache consistency bitmask dynamic (Steve Dickson) [1881647]
+- [include] NFSv4: Save a few bytes in the nfs_pgio_args/res (Steve Dickson) [1881647]
+- [tools] tools headers UAPI: Update tools's copy of linux/perf_event.h (Michael Petlan) [1884818 1908305]
+- [tools] perf test: Use generic event for expand_libpfm_events() (Michael Petlan) [1884818 1908305]
+- [tools] perf probe: Change function definition check due to broken DWARF (Michael Petlan) [1884818 1908305]
+- [tools] perf probe: Fix to die_entrypc() returns error correctly (Michael Petlan) [1884818 1908305]
+- [tools] perf stat: Use proper cpu for shadow stats (Michael Petlan) [1884818 1908305]
+- [tools] perf record: Synthesize cgroup events only if needed (Michael Petlan) [1884818 1908305]
+- [tools] perf diff: Fix error return value in __cmd_diff() (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Update copy of libbpf's hashmap.c (Michael Petlan) [1884818 1908305]
+- [tools] perf test: Avoid an msan warning in a copied stack (Michael Petlan) [1884818 1908305]
+- [tools] perf inject: Fix file corruption due to event deletion (Michael Petlan) [1884818 1908305]
+- [tools] perf test: Update branch sample pattern for cs-etm (Michael Petlan) [1884818 1908305]
+- [tools] perf test: Fix a typo in cs-etm testing (Michael Petlan) [1884818 1908305]
+- [tools] perf lock: Don't free "lock_seq_stat" if read_count isn't zero (Michael Petlan) [1884818 1908305]
+- [tools] perf lock: Correct field name "flags" (Michael Petlan) [1884818 1908305]
+- [tools] tools feature: Fixup fast path feature detection (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Add missing swap for cgroup events (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Add missing swap for ino_generation (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Initialize output buffer in build_id__sprintf (Michael Petlan) [1884818 1908305]
+- [tools] perf hists browser: Increase size of 'buf' in perf_evsel__hists_browse() (Michael Petlan) [1884818 1908305]
+- [tools] tools headers UAPI: Update tools's copy of linux/perf_event.h (Michael Petlan) [1884818 1908305]
+- [tools] perf scripting python: Avoid declaring function pointers with a visibility attribute (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Remove broken __no_tail_call attribute (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events: Fix DRAM_BW_Use 0 issue for CLX/SKX (Michael Petlan) [1884818 1908305]
+- [tools] perf trace: Fix segfault when trying to trace events by cgroup (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Fix crash with non-jited bpf progs (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Update copy of libbpf's hashmap.c (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Remove LTO compiler options when building perl support (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Update documentation for metrics reorganization (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Add metrics "RMT Load Hit" (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Correct LLC load hit metrics (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Change header for LLC local hit (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Use more explicit headers for HITM (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Change header from "LLC Load Hitm" to "Load Hitm" (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Organize metrics based on memory hierarchy (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Display "Total Stores" as a standalone metrics (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Display the total numbers continuously (Michael Petlan) [1884818 1908305]
+- [tools] perf bench: Use condition variables in numa (Michael Petlan) [1884818 1908305]
+- [tools] perf jevents: Fix event code for events referencing std arch events (Michael Petlan) [1884818 1908305]
+- [tools] perf diff: Support hot streams comparison (Michael Petlan) [1884818 1908305]
+- [tools] perf streams: Report hot streams (Michael Petlan) [1884818 1908305]
+- [tools] perf streams: Calculate the sum of total streams hits (Michael Petlan) [1884818 1908305]
+- [tools] perf streams: Link stream pair (Michael Petlan) [1884818 1908305]
+- [tools] perf streams: Compare two streams (Michael Petlan) [1884818 1908305]
+- [tools] perf streams: Get the evsel_streams by evsel_idx (Michael Petlan) [1884818 1908305]
+- [tools] perf streams: Introduce branch history "streams" (Michael Petlan) [1884818 1908305]
+- [tools] perf intel-pt: Improve PT documentation slightly (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Add support for exclusive groups/events (Michael Petlan) [1884818 1908305]
+- [tools] perf test: Add build id shell test (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Align buildid list output for short build ids (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Add size to 'struct perf_record_header_build_id' (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Pass build_id object to dso__build_id_equal() (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Pass build_id object to dso__set_build_id() (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Pass build_id object to build_id__sprintf() (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Pass build id object to sysfs__read_build_id() (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Pass build_id object to filename__read_build_id() (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Use build_id object in dso (Michael Petlan) [1884818 1908305]
+- [tools] perf config: Export the perf_config_from_file() function (Michael Petlan) [1884818 1908305]
+- [tools] perf python: Autodetect python3 binary (Michael Petlan) [1884818 1908305]
+- [tools] perf tests: Show python test script in verbose mode (Michael Petlan) [1884818 1908305]
+- [tools] perf c2c: Update usage for showing memory events (Michael Petlan) [1884818 1908305]
+- [tools] perf stat: Fix out of bounds CPU map access when handling armv8_pmu events (Michael Petlan) [1884818 1908305]
+- [tools] perf python scripting: Fix printable strings in python3 scripts (Michael Petlan) [1884818 1908305]
+- [tools] perf metricgroup: Fix uncore metric expressions (Michael Petlan) [1884818 1908305]
+- [tools] perf parse-event: Release cpu_map refcount if evsel alloc failed (Michael Petlan) [1884818 1908305]
+- [tools] perf parse-event: Fix cpu map refcounting (Michael Petlan) [1884818 1908305]
+- [tools] tools lib traceevent: Hide non API functions (Michael Petlan) [1884818 1908305]
+- [tools] perf sched: Show start of latency as well (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events: Fix typos in power8 PMU events (Michael Petlan) [1884818 1908305]
+- [tools] perf bench: Run inject-build-id with --buildid-all option too (Michael Petlan) [1884818 1908305]
+- [tools] perf inject: Add --buildid-all option (Michael Petlan) [1884818 1908305]
+- [tools] perf inject: Do not load map/dso when injecting build-id (Michael Petlan) [1884818 1908305]
+- [tools] perf inject: Enter namespace when reading build-id (Michael Petlan) [1884818 1908305]
+- [tools] perf inject: Add missing callbacks in perf_tool (Michael Petlan) [1884818 1908305]
+- [tools] perf bench: Add build-id injection benchmark (Michael Petlan) [1884818 1908305]
+- [tools] perf trace: Use the autogenerated mmap 'prot' string/id table (Michael Petlan) [1884818 1908305]
+- [tools] tools beauty: Add script to generate table of mmap's 'prot' argument (Michael Petlan) [1884818 1908305]
+- [tools] perf beauty mmap_flags: Conditionaly define the mmap flags (Michael Petlan) [1884818 1908305]
+- [tools] perf trace beauty: Add script to autogenerate mremap's flags args string/id table (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Separate the checking of headers only used to build beautification tables (Michael Petlan) [1884818 1908305]
+- [tools] perf parse-events: Reduce casts around bp_addr (Michael Petlan) [1884818 1908305]
+- [tools] perf test: Add expand cgroup event test (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Allow creation of cgroup without open (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Copy metric events properly when expand cgroups (Michael Petlan) [1884818 1908305]
+- [tools] perf stat: Add --for-each-cgroup option (Michael Petlan) [1884818 1908305]
+- [tools] perf evsel: Add evsel__clone() function (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events: Update SkylakeX events to v1.21 (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events intel: Update CascadelakeX events to v1.08 (Michael Petlan) [1884818 1908305]
+- [tools] perf script: Add min, max to futex-contention output, in addition to avg (Michael Petlan) [1884818 1908305]
+- [tools] perf script: Autopep8 futex-contention (Michael Petlan) [1884818 1908305]
+- [tools] perf stat: Skip duration_time in setup_system_wide (Michael Petlan) [1884818 1908305]
+- [tools] perf tsc: Support cap_user_time_short for event TIME_CONV (Michael Petlan) [1884818 1908305]
+- [tools] perf tsc: Calculate timestamp with cap_user_time_short (Michael Petlan) [1884818 1908305]
+- [tools] perf tsc: Add rdtsc() for Arm64 (Michael Petlan) [1884818 1908305]
+- [tools] perf tsc: Move out common functions from x86 (Michael Petlan) [1884818 1908305]
+- [tools] perf probe: Fall back to debuginfod query if debuginfo and source not found locally (Michael Petlan) [1884818 1908305]
+- [tools] perf probe: Fix to adjust symbol address with correct reloc_sym address (Michael Petlan) [1884818 1908305]
+- [tools] perf intel-pt: Fix "context_switch event has no tid" error (Michael Petlan) [1884818 1908305]
+- [tools] perf script: Display negative tid in non-sample events (Michael Petlan) [1884818 1908305]
+- [tools] perf docs: Improve help information in perf.txt (Michael Petlan) [1884818 1908305]
+- [tools] perf metric: Remove duplicate include (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Add documentation for topdown metrics (Michael Petlan) [1884818 1908305]
+- [tools] perf stat: Support new per thread TopDown metrics (Michael Petlan) [1884818 1908305]
+- [tools] perf record: Support sample-read topdown metric group (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Rename group to topdown (Michael Petlan) [1884818 1908305]
+- [tools] perf machine: Add machine__for_each_dso() function (Michael Petlan) [1884818 1908305]
+- [tools] perf tests: Call test_attr__open() directly (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events power9: Add hv_24x7 core level metric events (Michael Petlan) [1884818 1908305]
+- [tools] perf metricgroup: Pass pmu_event structure as a parameter for arch_get_runtimeparam() (Michael Petlan) [1884818 1908305]
+- [tools] perf jevents: Add support for parsing perchip/percore events (Michael Petlan) [1884818 1908305]
+- [tools] perf jevents: Add new structure to pass json fields (Michael Petlan) [1884818 1908305]
+- [tools] perf jevents: Make json_events() static and ditch jevents.h file (Michael Petlan) [1884818 1908305]
+- [tools] perf test: Introduce script for Arm CoreSight testing (Michael Petlan) [1884818 1908305]
+- [tools] perf metricgroup: Fix typo in comment (Michael Petlan) [1884818 1908305]
+- [tools] perf stat: Remove dead code: no need to set os.evsel twice (Michael Petlan) [1884818 1908305]
+- [tools] perf list: Do not print 'Metric Groups:' unnecessarily (Michael Petlan) [1884818 1908305]
+- [tools] perf list: Remove dead code in argument check (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Add build test with GTK+ (Michael Petlan) [1884818 1908305]
+- [tools] tools feature: Add missing -lzstd to the fast path feature detection (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Make GTK2 support opt-in (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events amd: Enable Family 19h users by matching Zen2 events (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events amd: Add recommended events (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events amd: Add ITLB Instruction Fetch Hits event for zen1 (Michael Petlan) [1884818 1908305]
+- [tools] perf vendor events amd: Add L2 Prefetch events for zen1 (Michael Petlan) [1884818 1908305]
+- [tools] perf: ftrace: Add filter support for option -F/--funcs (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Consolidate close_control_option()'s into one function (Michael Petlan) [1884818 1908305]
+- [tools] perf intel-pt: Document snapshot control command (Michael Petlan) [1884818 1908305]
+- [tools] perf annotate: Add 'ret' (intel disasm style) as an alias for 'retq' (Michael Petlan) [1884818 1908305]
+- [tools] perf annotate: Allow configuring the 'disassembler_style' knob via 'perf config' (Michael Petlan) [1884818 1908305]
+- [tools] perf record: Add 'snapshot' control command (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Add FIFO file names as alternative options to --control (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Use AsciiDoc formatting for --control option documentation (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Handle read errors from ctl_fd (Michael Petlan) [1884818 1908305]
+- [tools] perf tools: Consolidate --control option parsing into one function (Michael Petlan) [1884818 1908305]
+- [tools] perf tests: Add test for PE binary format support (Michael Petlan) [1884818 1908305]
+- [tools] perf symbols: Try reading the symbol table with libbfd (Michael Petlan) [1884818 1908305]
+- [tools] perf dso: Use libbfd to read build_id and .gnu_debuglink section (Michael Petlan) [1884818 1908305]
+- [tools] tools features: Add feature test to check if libbfd has buildid support (Michael Petlan) [1884818 1908305]
+- [tools] tools: Remove feature-libelf-mmap feature detection (Michael Petlan) [1884818 1908305]
+- [tools] perf build: Allow nested externs to enable BUILD_BUG() usage (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Check PEBS status correctly (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Fix a warning on x86_pmu_stop() with large PEBS (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86: fix sysfs type mismatches (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Make anythread filter support conditional (Michael Petlan) [1884818 1908305]
+- [kernel] perf: Tweak perf_event_attr::exclusive semantics (Michael Petlan) [1884818 1908305]
+- [kernel] perf: Fix event multiplexing for exclusive groups (Michael Petlan) [1884818 1908305]
+- [kernel] perf: Simplify group_sched_in() (Michael Petlan) [1884818 1908305]
+- [kernel] perf: Simplify group_sched_out() (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86: Make dummy_iregs static (Michael Petlan) [1884818 1908305]
+- [include] perf/arch: Remove perf_sample_data::regs_user_copy (Michael Petlan) [1884818 1908305]
+- [kernel] perf: Optimize get_recursion_context() (Michael Petlan) [1884818 1908305]
+- [kernel] perf: Fix get_recursion_context() (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86: Reduce stack usage for x86_pmu::drain_pebs() (Michael Petlan) [1884818 1908305]
+- [kernel] perf: Reduce stack usage of perf_output_begin() (Michael Petlan) [1884818 1908305]
+- [kernel] perf/core: Fix a memory leak in perf_event_parse_addr_filter() (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86: Fix n_metric for cancelled txn (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86: Fix n_pair for cancelled txn (Michael Petlan) [1884818 1908305]
+- [x86] x86/events/amd/iommu: Fix sizeof mismatch (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Check perf metrics feature for each CPU (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Fix Ice Lake event constraint table (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/msr: Add Jasper Lake support (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Add Jasper Lake support (Michael Petlan) [1884818 1908305]
+- [x86] perf/amd/uncore: Allow F19h user coreid, threadmask, and sliceid specification (Michael Petlan) [1884818 1908305]
+- [x86] perf/amd/uncore: Allow F17h user threadmask and slicemask specification (Michael Petlan) [1884818 1908305]
+- [x86] perf/amd/uncore: Prepare to scale for more attributes that vary per family (Michael Petlan) [1884818 1908305]
+- [x86] arch/x86/amd/ibs: Fix re-arming IBS Fetch (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/rapl: Add AMD Fam19h RAPL support (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/amd/ibs: Support 27-bit extended Op/cycle counter (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/amd/ibs: Fix raw sample data accumulation (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/amd/ibs: Don't include randomized bits in get_ibs_op_count() (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/amd: Fix sampling Large Increment per Cycle events (Michael Petlan) [1884818 1908305]
+- [x86] perf/amd/uncore: Set all slices and threads to restore perf stat -a behaviour (Michael Petlan) [1884818 1908305]
+- [kernel] perf/core: Pull pmu::sched_task() into perf_event_context_sched_out() (Michael Petlan) [1884818 1908305]
+- [kernel] perf/core: Pull pmu::sched_task() into perf_event_context_sched_in() (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel/ds: Fix x86_pmu_stop warning for large PEBS (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Support per-thread RDPMC TopDown metrics (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Support TopDown metrics on Ice Lake (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86: Add a macro for RDPMC offset of fixed counters (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Generic support for hardware TopDown metrics (Michael Petlan) [1884818 1908305]
+- [kernel] perf/core: Add a new PERF_EV_CAP_SIBLING event capability (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Use switch in intel_pmu_disable/enable_event (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Fix the name of perf METRICS (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Move BTS index to 47 (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Introduce the fourth fixed counter (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86/intel: Name the global status bit in NMI handler (Michael Petlan) [1884818 1908305]
+- [x86] perf/x86: Use event_base_rdpmc for the RDPMC userspace support (Michael Petlan) [1884818 1908305]
+- [powerpc] powerpc/cacheinfo: Print correct cache-sibling map/list for L2 cache (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Add support detecting thread-groups sharing L2 cache (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Rename init_thread_group_l1_cache_map() to make it generic (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Rename cpu_l1_cache_map as thread_group_l1_cache_map (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Parse ibm, thread-groups with multiple properties (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Use GFP_ATOMIC while allocating tmp mask (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Remove unnecessary variable (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Optimize update_coregroup_mask (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Move coregroup mask updation to a new function (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Optimize update_mask_by_l2 (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Check for duplicate topologies and consolidate (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Depend on cpu_l1_cache_map when adding CPUs (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Stop passing mask to update_mask_by_l2 (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Limit CPUs traversed to within a node (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Optimize remove_cpu_from_masks (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Remove get_physical_package_id (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Stop updating cpu_core_mask (Diego Domingos) [1906504]
+- [powerpc] powerpc/topology: Update topology_core_cpumask (Diego Domingos) [1906504]
+- [powerpc] powerpc/topology: Override cpu_smt_mask (Diego Domingos) [1906504]
+- [include] sched/topology: Allow archs to override cpu_smt_mask (Diego Domingos) [1906504]
+- [powerpc] powerpc/cacheinfo: Add per cpu per index shared_cpu_list (Diego Domingos) [1906504]
+- [powerpc] powerpc/cacheinfo: Make cpumap_show code reusable (Diego Domingos) [1906504]
+- [powerpc] powerpc/cacheinfo: Use cpumap_print to print cpumap (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Use IS_ENABLED() to avoid #ifdef (Diego Domingos) [1906504]
+- [powerpc] powerpc/smp: Drop superfluous NULL check (Diego Domingos) [1906504]
+- [vfio] pci: Cleanup .probe() exit paths (Clark Williams) [1860192]
+- [vfio] pci: Add sriov_configure support (Clark Williams) [1860192]
+- [vfio] Introduce VFIO_DEVICE_FEATURE ioctl and first user (Clark Williams) [1860192]
+- [vfio] pci: Introduce VF token (Clark Williams) [1860192]
+- [vfio] pci: Implement match ops (Clark Williams) [1860192]
+- [vfio] Include optional device match in vfio_device_ops callbacks (Clark Williams) [1860192]
+- [infiniband] IB/hfi1: Ensure correct mm is used at all times (Kamal Heib) [1879586] {CVE-2020-27835}
+- [block] rbd: require global CAP_SYS_ADMIN for mapping and unmapping (Ming Lei) [1887327] {CVE-2020-25284}
+
+* Tue Jan 26 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-279.el8]
+- [tools] kunit: tool: unmark test_data as binary blobs (Nico Pache) [1900119]
+- [tools] kunit: tools: fix kunit_tool tests for parsing test plans (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: Update Kconfig parts for KUNIT's module support (Nico Pache) [1900119]
+- [tools] kunit: Don't fail test suites if one of them is empty (Nico Pache) [1900119]
+- [tools] kunit: Fix kunit.py --raw_output option (Nico Pache) [1900119]
+- [tools] kunit: tool: fix improper treatment of file location (Nico Pache) [1900119]
+- [tools] kunit: tool: fix broken default args in unit tests (Nico Pache) [1900119]
+- [tools] kunit: capture stderr on all make subprocess calls (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: Remove references to --defconfig (Nico Pache) [1900119]
+- [kernel] kcsan: Add test suite (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: Add some troubleshooting tips to the FAQ (Nico Pache) [1900119]
+- [tools] kunit: kunit_tool: Fix invalid result when build fails (Nico Pache) [1900119]
+- [tools] kunit: show error if kunit results are not present (Nico Pache) [1900119]
+- [tools] kunit: kunit_config: Fix parsing of CONFIG options with space (Nico Pache) [1900119]
+- [lib] kunit: add support for named resources (Nico Pache) [1900119]
+- [lib] kunit: generalize kunit_resource API beyond allocated resources (Nico Pache) [1900119]
+- [security] security: apparmor: default KUNIT_* fragments to KUNIT_ALL_TESTS (Nico Pache) [1900119]
+- [fs] fs: ext4: default KUNIT_* fragments to KUNIT_ALL_TESTS (Nico Pache) [1900119]
+- [base] drivers: base: default KUNIT_* fragments to KUNIT_ALL_TESTS (Nico Pache) [1900119]
+- [lib] lib: Kconfig.debug: default KUNIT_* fragments to KUNIT_ALL_TESTS (Nico Pache) [1900119]
+- [lib] kunit: default KUNIT_* fragments to KUNIT_ALL_TESTS (Nico Pache) [1900119]
+- [lib] kunit: Kconfig: enable a KUNIT_ALL_TESTS fragment (Nico Pache) [1900119]
+- [tools] kunit: Fix TabError, remove defconfig code and handle when there is no kunitconfig (Nico Pache) [1900119]
+- [tools] kunit: use KUnit defconfig by default (Nico Pache) [1900119]
+- [tools] kunit: use --build_dir=.kunit as default (Nico Pache) [1900119]
+- [tools] kunit: kunit_tool: Separate out config/build/exec/parse (Nico Pache) [1900119]
+- [lib] lib/test_linear_ranges: add a test for the 'linear_ranges' (Nico Pache) [1900119]
+- [lib] kunit: Add missing newline in summary message (Nico Pache) [1900119]
+- [tools] kunit: tool: add missing test data file content (Nico Pache) [1900119]
+- [documentation] kunit: update documentation to describe debugfs representation (Nico Pache) [1900119]
+- [lib] kunit: subtests should be indented 4 spaces according to TAP (Nico Pache) [1900119]
+- [lib] kunit: add log test (Nico Pache) [1900119]
+- [lib] kunit: add debugfs /sys/kernel/debug/kunit/<suite>/results display (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: Make the KUnit documentation less UML-specific (Nico Pache) [1900119]
+- [lib] Fix linked-list KUnit test when run multiple times (Nico Pache) [1900119]
+- [tools] kunit: kunit_tool: Allow .kunitconfig to disable config items (Nico Pache) [1900119]
+- [lib] kunit: Always print actual pointer values in asserts (Nico Pache) [1900119]
+- [tools] kunit: add --make_options (Nico Pache) [1900119]
+- [tools] kunit: Run all KUnit tests through allyesconfig (Nico Pache) [1900119]
+- [tools] kunit: kunit_parser: make parser more robust (Nico Pache) [1900119]
+- [of] of: unittest: annotate warnings triggered by unittest (Nico Pache) [1900119]
+- [of] of: unittest: Disable interrupt node tests for old world MAC systems (Nico Pache) [1900119]
+- [of] of: unittest: add overlay gpio test to catch gpio hog problem (Nico Pache) [1900119]
+- [tools] kunit: run kunit_tool from any directory (Nico Pache) [1900119]
+- [tools] kunit: test: Improve error messages for kunit_tool when kunitconfig is invalid (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: fixed sphinx error in code block (Nico Pache) [1900119]
+- [base] software node: introduce CONFIG_KUNIT_DRIVER_PE_TEST (Nico Pache) [1900119]
+- [base] kunit: building kunit as a module breaks allmodconfig (Nico Pache) [1900119]
+- [documentation] kunit: update documentation to describe module-based build (Nico Pache) [1900119]
+- [lib] kunit: allow kunit to be loaded as a module (Nico Pache) [1900119]
+- [lib] kunit: remove timeout dependence on sysctl_hung_task_timeout_seconds (Nico Pache) [1900119]
+- [lib] kunit: allow kunit tests to be loaded as a module (Nico Pache) [1900119]
+- [lib] kunit: hide unexported try-catch interface in try-catch-impl.h (Nico Pache) [1900119]
+- [lib] kunit: move string-stream.h to lib/kunit (Nico Pache) [1900119]
+- [security] apparmor: add AppArmor KUnit tests for policy unpack (Nico Pache) [1900119]
+- [tools] kunit/kunit_tool_test: Test '--build_dir' option run (Nico Pache) [1900119]
+- [tools] kunit: Rename 'kunitconfig' to '.kunitconfig' (Nico Pache) [1900119]
+- [tools] kunit: Place 'test.log' under the 'build_dir' (Nico Pache) [1900119]
+- [tools] kunit: Create default config in '--build_dir' (Nico Pache) [1900119]
+- [tools] kunit: Remove duplicated defconfig creation (Nico Pache) [1900119]
+- [documentation] docs/kunit/start: Use in-tree 'kunit_defconfig' (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: add documentation for kunit_tool (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: fix typos and gramatical errors (Nico Pache) [1900119]
+- [tools] kunit: testing kunit: Bug fix in test_run_timeout function (Nico Pache) [1900119]
+- [base] PM / QoS: Initial kunit test (Nico Pache) [1900119]
+- [lib] lib/list-test: add a test for the 'list' doubly linked list (Nico Pache) [1900119]
+- [fs] ext4: add kunit test for decoding extended timestamps (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: Fix verification command (Nico Pache) [1900119]
+- [tools] kunit: Fix '--build_dir' option (Nico Pache) [1900119]
+- [lib] kunit: fix failure to build without printk (Nico Pache) [1900119]
+- [kernel] kernel/sysctl-test: Add null pointer test for sysctl.c:proc_dointvec() (Nico Pache) [1900119]
+- [documentation] Documentation: kunit: add documentation for KUnit (Nico Pache) [1900119]
+- [tools] kunit: defconfig: add defconfigs for building KUnit tests (Nico Pache) [1900119]
+- [tools] kunit: tool: add Python wrappers for running KUnit tests (Nico Pache) [1900119]
+- [lib] kunit: test: add tests for KUnit managed resources (Nico Pache) [1900119]
+- [lib] kunit: test: add the concept of assertions (Nico Pache) [1900119]
+- [lib] kunit: test: add tests for kunit test abort (Nico Pache) [1900119]
+- [lib] kunit: test: add support for test abort (Nico Pache) [1900119]
+- [tools] objtool: add kunit_try_catch_throw to the noreturn list (Nico Pache) [1900119]
+- [tools] objtool: Add rewind_stack_do_exit() to the noreturn list (Nico Pache) [1900119]
+- [lib] kunit: test: add initial tests (Nico Pache) [1900119]
+- [lib] lib: enable building KUnit in lib/ (Nico Pache) [1900119]
+- [lib] kunit: test: add the concept of expectations (Nico Pache) [1900119]
+- [lib] kunit: test: add assertion printing library (Nico Pache) [1900119]
+- [lib] kunit: test: add string_stream a std::stream like string builder (Nico Pache) [1900119]
+- [lib] kunit: test: add test resource management API (Nico Pache) [1900119]
+- [lib] kunit: test: add KUnit test runner core (Nico Pache) [1900119]
+- [watchdog] watchdog/hpwdt: Reflect changes (Joseph Szczypek) [1905293]
+- [watchdog] watchdog/hpwdt: Disable NMI in Crash Kernel (Joseph Szczypek) [1905293]
+- [idle] intel_idle: add SnowRidge C-state table (Steve Best) [1838554]
+- [mm] mm: memcg/slab: fix use after free in obj_cgroup_charge (Waiman Long) [1916962]
+- [mm] mm: memcg/slab: fix return of child memcg objcg for root memcg (Waiman Long) [1916962]
+- [mm] mm: memcg/slab: fix obj_cgroup_charge() return value handling (Waiman Long) [1916962]
+- [mm] mm: kmem: move memcg_kmem_bypass() calls to get_mem/obj_cgroup_from_current() (Waiman Long) [1916962]
+- [s390] s390/kexec_file: fix diag308 subcode when loading crash kernel (Philipp Rudo) [1897184]
+- [net] ethtool: fix error paths in ethnl_set_channels() (Ivan Vecera) [1906682]
+- [powerpc] powerpc/pci: Remove LSI mappings on device teardown (Diego Domingos) [1909722]
+- [powerpc] Revert "powerpc/pci: unmap legacy INTx interrupts of passthrough IO adapters" (Diego Domingos) [1909722]
+- [block] block: add blk_alloc_queue declaration back (Ming Lei) [1911343]
+- [net] tcp: only postpone PROBE_RTT if RTT is < current min_rtt estimate (Antoine Tenart) [1901863]
+- [net] tcp_bbr: improve arithmetic division in bbr_update_bw() (Antoine Tenart) [1901863]
+- [net] tcp_bbr: clarify that bbr_bdp() rounds up in comments (Antoine Tenart) [1901863]
+- [net] tcp_bbr: adapt cwnd based on ack aggregation estimation (Antoine Tenart) [1901863]
+- [net] tcp_bbr: fix bbr pacing rate for internal pacing (Antoine Tenart) [1901863]
+
+* Sat Jan 23 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-278.el8]
+- [wireless] iwlwifi: fw: acpi: Demote non-conformant function headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: fw: dbg: Fix misspelling of 'reg_data' in function header (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: iwl-phy-db: Add missing struct member description for 'trans' (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: iwl-eeprom-parse: Fix 'struct iwl_eeprom_enhanced_txpwr's header (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: iwl-eeprom-read: Demote one nonconformant function header (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: rs: Demote non-conformant function documentation headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: iwl-drv: Fix fall-through warnings for Clang (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: Fix fall-through warnings for Clang (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: Fix fall-through warnings for Clang (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: validate notification size when waiting (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: purge the BSS table upon firmware load (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: check that statistics TLV version match struct version (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add size checks for range response notification (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: hook up missing RX handlers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: tighten RX MPDU bounds checks (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: Add a new card for MA family (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: disconnect if channel switch delay is too long (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: support firmware reset handshake (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: add an extra firmware state in the transport (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: fix a race in CSA that caused assert 0x3420 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: validate firmware sync response size (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: clean up some rx code (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: use SPDX tags (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dbg-tlv: fix old length in is_trig_data_contained() (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: trans: consider firmware dead after errors (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: remove unnecessary setting of inta_mask (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: fw: file: fix documentation for SAR flag (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: remove MSIX_HW_INT_CAUSES_REG_IML handling (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: clean up scan state on failure (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: do more useful queue sync accounting (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: fix 22000 series driver NMI (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: change 12k A-MSDU config to use 16k buffers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: move iwl_mvm_stop_device() out of line (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: clear up iwl_mvm_notify_rx_queue() argument type (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: remove sw_csum_tx (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: validate RX descriptor length (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: validate MPDU length against notification length (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: iterate active stations when updating statistics (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: sort out the NVM offsets (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: fix typo in comment (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: follow the new inclusive terminology (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: remove the read_nvm from iwl_run_unified_mvm_ucode (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: avoid endless HW errors at assert time (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: enable sending/setting debug host event (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add support for 6GHz (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: copy iwl_he_capa for modifications (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: remove obsolete pre-release support code (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: remove the read_nvm from iwl_run_init_mvm_ucode (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: Init error table memory to zero (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: d3: do not send the WOWLAN_CONFIGURATION command for netdetect (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: move reclaim flows to the queue file (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: fix sar profile printing issue (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: yoyo: align the write pointer to DWs (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: yoyo: add the ability to dump phy periphery (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: remove all queue resources before free (Jarod Wilson) [1857772]
+- [wireless] wireless: remove unneeded break (Jarod Wilson) [1857772]
+- [net] nl80211/cfg80211: fix potential infinite loop (Jarod Wilson) [1857772]
+- [net] cfg80211: select CONFIG_CRC32 (Jarod Wilson) [1857772]
+- [net] nl80211/cfg80211: support 6 GHz scanning (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: add some missing entries for AX210 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: invert values of NO_160 device config entries (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: add one missing entry for AX210 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: fix kernel panic in case of assert during CSA (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: set LTR to avoid completion timeout (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: write queue_sync_state only for sync (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: properly cancel a session protection for P2P (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: use the HOT_SPOT_CMD to cancel an AUX ROC (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: sta: set max HE max A-MPDU according to HE capa (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: limit memory read spin time (Jarod Wilson) [1857772]
+- [wireless] Revert "iwlwifi: remove wide_cmd_header field" (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: bump FW API to 59 for AX devices (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: read and parse PNVM file (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: implement set_pnvm op (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: add trans op to set PNVM (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: move PNVM implementation to common code (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: rs: align to new TLC config command API (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: fix sar geo table initialization (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: stats: add new api fields for statistics cmd/ntfy (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: fix suspicious rcu usage warnings (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: remove memset of kek_kck command (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: don't send a CSA command the firmware doesn't know (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: fix the xtal latency value for a few qu devices (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: fix xtal latency for 9560 devices (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: fix 0x271B and 0x271C trans cfg struct (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: avoid possible NULL pointer dereference (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: support ADD_STA_CMD_API_S ver 12 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add a get lmac id function (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: prepare roc_done_wk to work sync (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: re-enable TX after channel switch (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: don't send RFH_QUEUE_CONFIG_CMD with no queues (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: support an additional Qu subsystem id (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: stop claiming NL80211_EXT_FEATURE_SET_SCAN_DWELL (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: ring the doorbell and wait for PNVM load completion (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: update prph scratch structure to include PNVM data (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: read and parse SKU ID if available (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: get number of stations from TLV (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: iwl-drv: Provide descriptions debugfs dentries (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: devices: Fix function documentation formatting issues (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: tx: Demote misuse of kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: rxon: Demote non-conformant kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: scan: Demote a few nonconformant kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: utils: Fix some doc-rot (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: Demote a couple of nonconformant kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: ops: Remove unused static struct 'iwl_mvm_debug_names' (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: sta: Demote a bunch of nonconformant kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: calib: Demote seemingly unintentional kerneldoc header (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: lib: Demote non-compliant kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: tx: Demote non-compliant kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: rs: Demote non-compliant kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dvm: Demote non-compliant kernel-doc headers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: bump FW API to 57 for AX devices (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: yoyo: add support for internal buffer allocation in D3 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: api: fix u32 -> __le32 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: use correct group for alive notification (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: support version 5 of the alive notification (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: ignore the scan duration parameter (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dbg: add debug host notification (DHN) time point (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: pcie: make iwl_pcie_txq_update_byte_cnt_tbl bus independent (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: clear all scan UIDs (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: d3: parse wowlan status version 11 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: align RX status flags with firmware (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: remove redundant log in iwl_mvm_tvqm_enable_txq() (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: phy-ctxt: add new API VER 3 for phy context cmd (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: thermal: support new temperature measurement API (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add d3 prints (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: d3: support GCMP ciphers (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: support more GTK rekeying algorithms (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: move all bus-independent TX functions to common code (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: initiator: add option for adding a PASN responder (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: responder: allow to set only the HLTK for an associated station (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: location: set the HLTK when PASN station is added (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: Add FTM initiator RTT smoothing logic (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add support for responder dynamic config command version 3 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add support for range request command ver 11 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: remove wide_cmd_header field (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: fw: add default value for iwl_fw_lookup_cmd_ver (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: acpi: in non acpi compilations remove iwl_sar_geo_init (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: rs: set RTS protection for all non legacy rates (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: support new KEK KCK api (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: support version 3 of GEO_TX_POWER_LIMIT (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: acpi: rename geo structs to contain versioning (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: support REDUCE_TX_POWER_CMD version 6 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: acpi: prepare SAR profile selection code for multiple sizes (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: add a common struct for all iwl_tx_power_cmd versions (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: add new card for MA family (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: acpi: remove dummy definition of iwl_sar_set_profile() (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: remove iwl_validate_sar_geo_profile() export (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: use CHECKSUM_COMPLETE (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: remove redundant support_umac_log field (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add support for new WOWLAN_TSC_RSC_PARAM version (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: don't export acpi functions unnecessarily (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: process ba-notifications also when sta rcu is invalid (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add support for new version of WOWLAN_TKIP_SETTING_API_S (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: Don't install CMAC/GMAC key in AP mode (Jarod Wilson) [1857772]
+- [wireless] iwl-trans: move dev_cmd_offs, page_offs to a common trans header (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: regulatory: regulatory capabilities api change (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dbg: add dumping special device memory (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: dbg: remove IWL_FW_INI_TIME_POINT_WDG_TIMEOUT (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: acpi: support ppag table command v2 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: add new cards for MA family (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: move bc_table_dword to a common trans header (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: iwl-trans: move tfd to trans layer (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: move bc_pool to a common trans header (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: iwl-trans: move all txcmd init to trans alloc (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: enable twt by default (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add an option to add PASN station (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: add new cards for AX201 family (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: fw: move assert descriptor parser to common code (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: wowlan: adapt to wowlan status API version 10 (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: acpi: evaluate dsm to disable 5.8GHz channels (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: msix: limit max RX queues for 9000 family (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: sta: defer ADDBA transmit in case reclaimed SN != next SN (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: set PROTECTED_TWT feature if supported by firmware (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: set PROTECTED_TWT in MAC data policy (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: add PROTECTED_TWT firmware API (Jarod Wilson) [1857772]
+- [wireless] iwlwifi: mvm: rs-fw: handle VHT extended NSS capability (Jarod Wilson) [1857772]
+- [x86] sev-es: Use new for_each_insn_prefix() macro to loop over prefixes bytes (Vitaly Kuznetsov) [1915453]
+- [x86] insn-eval: Use new for_each_insn_prefix() macro to loop over prefixes bytes (Vitaly Kuznetsov) [1915453]
+- [tools] x86/uprobes: Do not use prefixes.nbytes when looping over prefixes.bytes (Vitaly Kuznetsov) [1915453]
+- [powercap] powercap/intel_rapl: add support for ElkhartLake (Steve Best) [1847054]
+- [char] tpm: efi: Don't create binary_bios_measurements file for an empty log (Jerry Snitselaar) [1887536 1855183]
+- [char] tpm_tis: Add a check for invalid status (Jerry Snitselaar) [1887536 1855183]
+- [char] tpm: use *ph to print small buffer (Jerry Snitselaar) [1887536 1855183]
+- [char] tpm: Add support for event log pointer found in TPM2 ACPI table (Jerry Snitselaar) [1887536 1855183]
+- [acpi] acpi: Extend TPM2 ACPI table with missing log fields (Jerry Snitselaar) [1887536]
+- [char] tpm: Unify the mismatching TPM space buffer sizes (Jerry Snitselaar) [1887536 1855183]
+- [include] tpm: Require that all digests are present in TCG_PCR_EVENT2 structures (Jerry Snitselaar) [1887536 1855183]
+- [char] tpm_tis_spi: Prefer async probe (Jerry Snitselaar) [1887536 1855183]
+- [char] tpm/st33zp24: fix spelling mistake "drescription" -> "description" (Jerry Snitselaar) [1887536]
+- [char] tpm_tis: extra chip->ops check on error path in tpm_tis_core_init (Jerry Snitselaar) [1887536 1855183]
+- [char] tpm_tis_spi: Don't send anything during flow control (Jerry Snitselaar) [1887536 1855183]
+- [include] efi/tpm: Verify event log header before parsing (Jerry Snitselaar) [1887536 1855183]
+- [char] tpm: eventlog: Replace zero-length array with flexible-array member (Jerry Snitselaar) [1887536 1855183]
+- [char] tpm: fix wrong return value in tpm_pcr_extend (Jerry Snitselaar) [1887536 1855183]
+- [include] tpm_eventlog.h: Replace zero-length array with flexible-array member (Jerry Snitselaar) [1887536 1855183]
+- [include] phylink: <linux/phylink.h>: fix function prototype kernel-doc warning (Petr Oros) [1878147]
+- [netdrv] net: phy: call phy_disable_interrupts() in phy_attach_direct() instead (Petr Oros) [1878147]
+- [net] net: ethtool: Handle missing cable test TDR parameters (Petr Oros) [1878147]
+- [documentation] docs: networking: fix extra spaces in ethtool-netlink (Petr Oros) [1878147]
+- [documentation] dt-bindings: net: mvusb: Fix example errors (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell10g: fix null pointer dereference (Petr Oros) [1878147]
+- [netdrv] net: phy: fix memory leak in device-create error path (Petr Oros) [1878147]
+- [netdrv] net: mdio device: use flexible sleeping in reset function (Petr Oros) [1878147]
+- [netdrv] net: mdiobus: add reset-post-delay-us handling (Petr Oros) [1878147]
+- [netdrv] net: mdiobus: use flexible sleeping for reset-delay-us (Petr Oros) [1878147]
+- [netdrv] net: phylink: add interface to configure clause 22 PCS PHY (Petr Oros) [1878147]
+- [netdrv] net: phylink: add struct phylink_pcs (Petr Oros) [1878147]
+- [netdrv] net: phylink: re-implement interface configuration with PCS (Petr Oros) [1878147]
+- [netdrv] net: phylink: in-band pause mode advertisement update for PCS (Petr Oros) [1878147]
+- [netdrv] net: phylink: simplify fixed-link case for ksettings_set method (Petr Oros) [1878147]
+- [netdrv] net: phylink: use config.an_enabled in ksettings_set method (Petr Oros) [1878147]
+- [netdrv] net: phylink: simplify phy case for ksettings_set method (Petr Oros) [1878147]
+- [netdrv] net: phylink: simplify ksettings_set() implementation (Petr Oros) [1878147]
+- [netdrv] net: phylink: avoid mac_config calls (Petr Oros) [1878147]
+- [netdrv] net: phylink: update PCS when changing interface during resolution (Petr Oros) [1878147]
+- [netdrv] net: phylink: ensure link is down when changing interface (Petr Oros) [1878147]
+- [netdrv] net: phylink: rearrange resolve mac_config() call (Petr Oros) [1878147]
+- [netdrv] net: phylink: rejig link state tracking (Petr Oros) [1878147]
+- [netdrv] net: phylink: update ethtool reporting for fixed-link modes (Petr Oros) [1878147]
+- [netdrv] net: phy: fix check in get_phy_c45_ids (Petr Oros) [1878147]
+- [netdrv] net: phy: at803x: add mdix configuration support for AR9331 and AR8035 (Petr Oros) [1878147]
+- [netdrv] net: dp83640: fix SIOCSHWTSTAMP to update the struct with actual configuration (Petr Oros) [1878147]
+- [netdrv] net: phy: continue searching for C45 MMDs even if first returned ffff:ffff (Petr Oros) [1878147]
+- [netdrv] net: phy: dp83640: Fixup cast to restricted __be16 warning (Petr Oros) [1878147]
+- [netdrv] net: phy: Make phy_10gbit_fec_features_array static (Petr Oros) [1878147]
+- [netdrv] net: phy: Properly define genphy_c45_driver (Petr Oros) [1878147]
+- [netdrv] net: phy: Fixup parameters in kerneldoc (Petr Oros) [1878147]
+- [netdrv] net: phy: at803x: Avoid comparison is always false warning (Petr Oros) [1878147]
+- [netdrv] net: phy: mdio: reset MDIO devices even if probe() is not implemented (Petr Oros) [1878147]
+- [netdrv] net: phy: reset the PHY even if probe() is not implemented (Petr Oros) [1878147]
+- [include] net: mdio: add a forward declaration for reset_control to mdio.h (Petr Oros) [1878147]
+- [netdrv] net: phy: arrange headers in phy_device.c alphabetically (Petr Oros) [1878147]
+- [netdrv] net: phy: arrange headers in mdio_device.c alphabetically (Petr Oros) [1878147]
+- [netdrv] net: phy: arrange headers in mdio_bus.c alphabetically (Petr Oros) [1878147]
+- [netdrv] net: phylink: only restart AN if the link mode is using in-band AN (Petr Oros) [1878147]
+- [netdrv] net: phylink: add phylink_speed_(up|down) interface (Petr Oros) [1878147]
+- [netdrv] net: phy: call phy_disable_interrupts() in phy_init_hw() (Petr Oros) [1878147]
+- [netdrv] net: phy: make phy_disable_interrupts() non-static (Petr Oros) [1878147]
+- [netdrv] net: phylink: ensure manual pause mode configuration takes effect (Petr Oros) [1878147]
+- [netdrv] net: phylink: fix ethtool -A with attached PHYs (Petr Oros) [1878147]
+- [include] net: phy: add support for a common probe between shared PHYs (Petr Oros) [1878147]
+- [netdrv] net: phy: Allow mdio buses to auto-probe c45 devices (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell: Add Marvell 88E1548P support (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell: Add Marvell 88E1340S support (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell: use a single style for referencing functions (Petr Oros) [1878147]
+- [netdrv] net: phy: smsc: fix printing too many logs (Petr Oros) [1878147]
+- [netdrv] net: phy: Check harder for errors in get_phy_id() (Petr Oros) [1878147]
+- [of] of: of_mdio: Correct loop scanning logic (Petr Oros) [1878147]
+- [of] of: mdio: preserve phy dev_flags in of_phy_connect() (Petr Oros) [1878147]
+- [netdrv] net: phy: read MMD ID from all present MMDs (Petr Oros) [1878147]
+- [netdrv] net: phy: split devices_in_package (Petr Oros) [1878147]
+- [netdrv] net: phy: set devices_in_package only after validation (Petr Oros) [1878147]
+- [netdrv] net: phy: add support for probing MMDs >= 8 for devices-in-package (Petr Oros) [1878147]
+- [netdrv] net: phy: reword get_phy_device() kerneldoc (Petr Oros) [1878147]
+- [netdrv] net: phy: clean up get_phy_c22_id() invalid ID handling (Petr Oros) [1878147]
+- [netdrv] net: phy: clean up get_phy_c45_ids() failure handling (Petr Oros) [1878147]
+- [netdrv] net: phy: clean up PHY ID reading (Petr Oros) [1878147]
+- [netdrv] net: phy: clean up cortina workaround (Petr Oros) [1878147]
+- [netdrv] net: dp83869: Reset return variable if PHY strap is read (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: don't export RDB/legacy access methods (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell: unlock after phy_select_page() failure (Petr Oros) [1878147]
+- [netdrv] net: phy: at803x: add cable diagnostics support for ATH9331 and ATH8032 (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell: Configure TDR pulse based on measurement length (Petr Oros) [1878147]
+- [netdrv] net : phy: marvell: Speedup TDR data retrieval by only changing page once (Petr Oros) [1878147]
+- [netdrv] net: ethtool: Allow PHY cable test TDR data to configured (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell: Add support for amplitude graph (Petr Oros) [1878147]
+- [net] net: ethtool: Add helpers for cable test TDR data (Petr Oros) [1878147]
+- [net] net: ethtool: Add generic parts of cable test TDR (Petr Oros) [1878147]
+- [uapi] net: ethtool: Add attributes for cable test TDR data (Petr Oros) [1878147]
+- [netdrv] net: phy: mscc-miim: read poll when high resolution timers are disabled (Petr Oros) [1878147]
+- [netdrv] net: phy: mscc-miim: improve waiting logic (Petr Oros) [1878147]
+- [netdrv] net: phy: mscc-miim: remove redundant timeout check (Petr Oros) [1878147]
+- [netdrv] net: phy: mscc-miim: use more reasonable delays (Petr Oros) [1878147]
+- [netdrv] net: mdiobus: add clause 45 mdiobus accessors (Petr Oros) [1878147]
+- [netdrv] net: phy: at803x: fix PHY ID masks (Petr Oros) [1878147]
+- [netdrv] net: phy: dp83869: Set opmode from straps (Petr Oros) [1878147]
+- [netdrv] net: phy: dp83869: Update port-mirroring to read straps (Petr Oros) [1878147]
+- [netdrv] net: phy: tja11xx: add SQI support (Petr Oros) [1878147]
+- [netdrv] net: phy: simplify phy_link_change arguments (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: fix checkpatch complains about tabs (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: add support for BCM54811 PHY (Petr Oros) [1878147]
+- [netdrv] net: phy: tja11xx: execute cable test on link up (Petr Oros) [1878147]
+- [netdrv] net: phy: mdio-moxart: remove unneeded include (Petr Oros) [1878147]
+- [netdrv] net: phy: at803x: add cable diagnostics support (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: add cable diagnostics support (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: add cable test support (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: add bcm_phy_modify_exp() (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: add exp register access methods without buslock (Petr Oros) [1878147]
+- [netdrv] net: phy: tja11xx: add cable-test support (Petr Oros) [1878147]
+- [netdrv] net: phy: fix aneg restart in phy_ethtool_set_eee (Petr Oros) [1878147]
+- [net] net: phy: Send notifier when starting the cable test (Petr Oros) [1878147]
+- [netdrv] net: phy: Put interface into oper testing during cable test (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell: Add cable test support (Petr Oros) [1878147]
+- [include] net: ethtool: Add helpers for reporting test results (Petr Oros) [1878147]
+- [include] net: ethtool: Add infrastructure for reporting cable test results (Petr Oros) [1878147]
+- [uapi] net: ethtool: Add attributes for cable test reports (Petr Oros) [1878147]
+- [net] net: ethtool: netlink: Add support for triggering a cable test (Petr Oros) [1878147]
+- [netdrv] net: phy: Add support for polling cable test (Petr Oros) [1878147]
+- [netdrv] net: phy: Add cable test support to state machine (Petr Oros) [1878147]
+- [net] net: ethtool: self_test: Mark interface in testing operative status (Petr Oros) [1878147]
+- [net] net: Add testing sysfs attribute (Petr Oros) [1878147]
+- [net] net: Add IF_OPER_TESTING (Petr Oros) [1878147]
+- [netdrv] net: phy: fix less than zero comparison with unsigned variable val (Petr Oros) [1878147]
+- [netdrv] net: phy: Make iproc_mdio_resume static (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: use phy_package_shared (Petr Oros) [1878147]
+- [netdrv] net: phy: add concept of shared storage for PHYs (Petr Oros) [1878147]
+- [netdrv] net: phy: tja11xx: add support for master-slave configuration (Petr Oros) [1878147]
+- [uapi] ethtool: provide UAPI for PHY master/slave configuration (Petr Oros) [1878147]
+- [netdrv] dp83640: reverse arguments to list_add_tail (Petr Oros) [1878147]
+- [documentation] dt-bindings: add Qualcomm IPQ4019 MDIO bindings (Petr Oros) [1878147]
+- [netdrv] net: phy: mdio: add IPQ4019 MDIO driver (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: add second PHY ID (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: apply the workaround on b0 chips (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: fix phy_id_mask (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: use genphy_soft_reset() (Petr Oros) [1878147]
+- [netdrv] net: phy: at803x: add downshift support (Petr Oros) [1878147]
+- [netdrv] net: phy: DP83TC811: Fix WoL in config init to be disabled (Petr Oros) [1878147]
+- [netdrv] net: phy: DP83822: Fix WoL in config init to be disabled (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: Make a bunch of functions static (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell10g: fix temperature sensor on 2110 (Petr Oros) [1878147]
+- [gpio] gpiolib: Rename "chip" variables to "gc" in core header file (Petr Oros) [1878147]
+- [netdrv] net: phy: dp83867: Remove unneeded semicolon (Petr Oros) [1878147]
+- [netdrv] net: phy: clear phydev->suspended after soft reset (Petr Oros) [1878147]
+- [netdrv] net: phy: remove genphy_no_soft_reset (Petr Oros) [1878147]
+- [netdrv] net: phy: make phy_suspend a no-op if PHY is suspended already (Petr Oros) [1878147]
+- [netdrv] net: phylink, dsa: eliminate phylink_fixed_state_cb() (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: fix less than zero comparison on an unsigned (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm84881: clear settings on link down (Petr Oros) [1878147]
+- [netdrv] net: phy: tja11xx: add delayed registration of TJA1102 PHY1 (Petr Oros) [1878147]
+- [of] net: mdio: of: export part of of_mdiobus_register_phy() (Petr Oros) [1878147]
+- [netdrv] net: phy: tja11xx: add initial TJA1102 support (Petr Oros) [1878147]
+- [documentation] dt-bindings: net: phy: Add support for NXP TJA11xx (Petr Oros) [1878147]
+- [netdrv] net: phy: Use IS_ERR() to check and simplify code (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell10g: limit soft reset to 88x3310 (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm54140: add hwmon support (Petr Oros) [1878147]
+- [netdrv] net: phy: add Broadcom BCM54140 support (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: add helper to write/read RDB registers (Petr Oros) [1878147]
+- [netdrv] net: phy: microchip_t1: add lan87xx_phy_init to initialize the lan87xx phy (Petr Oros) [1878147]
+- [netdrv] net: phy: Propagate error from bus->reset (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: Add support for BCM53125 internal PHYs (Petr Oros) [1878147]
+- [netdrv] net: phy: mdio-bcm-iproc: Do not show kernel pointer (Petr Oros) [1878147]
+- [netdrv] net: phy: at803x: add support for AR8032 PHY (Petr Oros) [1878147]
+- [netdrv] net: marvell10g: soft-reset the PHY when coming out of low power (Petr Oros) [1878147]
+- [netdrv] net: marvell10g: report firmware version (Petr Oros) [1878147]
+- [netdrv] net: phy: micrel: use genphy_read_status for KSZ9131 (Petr Oros) [1878147]
+- [netdrv] net: phy: micrel: kszphy_resume(): add delay after genphy_resume() before accessing PHY registers (Petr Oros) [1878147]
+- [netdrv] net: phylink: add separate pcs operations structure (Petr Oros) [1878147]
+- [netdrv] net: phylink: rename 'ops' to 'mac_ops' (Petr Oros) [1878147]
+- [netdrv] net: phylink: change phylink_mii_c22_pcs_set_advertisement() prototype (Petr Oros) [1878147]
+- [ptp] ptp: Avoid deadlocks in the programmable pin code (Petr Oros) [1878147]
+- [netdrv] net: phy: probe PHY drivers synchronously (Petr Oros) [1878147]
+- [netdrv] net: phy: don't touch suspended flag if there's no suspend/resume callback (Petr Oros) [1878147]
+- [netdrv] net: phy: micrel.c: add rgmii interface delay possibility to ksz9131 (Petr Oros) [1878147]
+- [netdrv] net: phy: mdio-mux-bcm-iproc: use readl_poll_timeout() to simplify code (Petr Oros) [1878147]
+- [netdrv] net: phy: tja11xx: use phy_read_poll_timeout() to simplify the code (Petr Oros) [1878147]
+- [netdrv] net: phy: smsc: use phy_read_poll_timeout() to simplify the code (Petr Oros) [1878147]
+- [netdrv] net: phy: use phy_read_poll_timeout() to simplify the code (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell10g: use phy_read_mmd_poll_timeout() to simplify the code (Petr Oros) [1878147]
+- [netdrv] net: phy: aquantia: use phy_read_mmd_poll_timeout() to simplify the code (Petr Oros) [1878147]
+- [netdrv] net: phy: bcm84881: use phy_read_mmd_poll_timeout() to simplify the code (Petr Oros) [1878147]
+- [netdrv] net: phy: add marvell usb to mdio controller (Petr Oros) [1878147]
+- [documentation] dt-bindings: net: add marvell usb to mdio bindings (Petr Oros) [1878147]
+- [netdrv] net: phy: aquantia: remove downshift warning now that phylib takes care (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell: remove downshift warning now that phylib takes care (Petr Oros) [1878147]
+- [netdrv] net: phy: add and use phy_check_downshift (Petr Oros) [1878147]
+- [netdrv] net: phylink: pcs: add 802.3 clause 45 helpers (Petr Oros) [1878147]
+- [netdrv] net: phylink: pcs: add 802.3 clause 22 helpers (Petr Oros) [1878147]
+- [netdrv] net: mdiobus: add APIs for modifying a MDIO device register (Petr Oros) [1878147]
+- [netdrv] net: mdiobus: avoid BUG_ON() in mdiobus accessors (Petr Oros) [1878147]
+- [netdrv] net: phy: improve phy_driver callback handle_interrupt (Petr Oros) [1878147]
+- [netdrv] net: phylink: Add XLGMII support (Petr Oros) [1878147]
+- [include] net: phy: Add XLGMII interface define (Petr Oros) [1878147]
+- [netdrv] net: phylink: Test if MAC/PCS support Autoneg (Petr Oros) [1878147]
+- [netdrv] net: phylink: Add missing Backplane speeds (Petr Oros) [1878147]
+- [netdrv] net: mdio: add ipq8064 mdio driver (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell10g: place in powersave mode at probe (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell10g: add energy detect power down tunable (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell10g: add mdix control (Petr Oros) [1878147]
+- [netdrv] net: phy: mscc: add constants for used interrupt mask bits (Petr Oros) [1878147]
+- [netdrv] net: phy: marvell10g: read copper results from CSSR1 (Petr Oros) [1878147]
+- [netdrv] net: phy: mscc: add missing shift for media operation mode selection (Petr Oros) [1878147]
+- [netdrv] net: phylink: propagate resolved link config via mac_link_up() (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: Wire suspend/resume for BCM54810 (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: Have bcm54xx_adjust_rxrefclk() check for flags (Petr Oros) [1878147]
+- [netdrv] net: phy: broadcom: Allow BCM54810 to use bcm54xx_adjust_rxrefclk() (Petr Oros) [1878147]
+- [netdrv] net: phy: dp83867: Add speed optimization feature (Petr Oros) [1878147]
+- [netdrv] net: phy: allow bcm84881 to be a module (Petr Oros) [1878147]
+- [include] net: phylink: clarify flow control settings in documentation (Petr Oros) [1878147]
+- [netdrv] net: phylink: improve initial mac configuration (Petr Oros) [1878147]
+- [netdrv] net: phylink: allow ethtool -A to change flow control advertisement (Petr Oros) [1878147]
+- [netdrv] net: phylink: resolve fixed link flow control (Petr Oros) [1878147]
+- [netdrv] net: phylink: use phylib resolved flow control modes (Petr Oros) [1878147]
+- [netdrv] net: phylink: ensure manual flow control is selected appropriately (Petr Oros) [1878147]
+- [netdrv] net: phylink: remove pause mode ethtool setting for fixed links (Petr Oros) [1878147]
+- [netdrv] net: add linkmode helper for setting flow control advertisement (Petr Oros) [1878147]
+- [netdrv] net: add helpers to resolve negotiated flow control (Petr Oros) [1878147]
+- [include] net: linkmode: make linkmode_test_bit() take const pointer (Petr Oros) [1878147]
+- [include] net: phylink: further documentation clarifications (Petr Oros) [1878147]
+- [include] net: phylink: further mac_config documentation improvements (Petr Oros) [1878147]
+- [netdrv] net: phylink: rename mac_link_state() op to mac_pcs_get_state() (Petr Oros) [1878147]
+- [md] md/raid5: fix oops during stripe resizing (Nigel Croxon) [1898617]
+- [md] md/bitmap: fix memory leak of temporary bitmap (Nigel Croxon) [1898617]
+- [md] md: fix the checking of wrong work queue (Nigel Croxon) [1898617]
+- [md] md/bitmap: md_bitmap_get_counter returns wrong blocks (Nigel Croxon) [1898617]
+- [md] md/bitmap: md_bitmap_read_sb uses wrong bitmap blocks (Nigel Croxon) [1898617]
+- [md] md/raid0: remove unused function is_io_in_chunk_boundary() (Nigel Croxon) [1898617]
+- [md] md: don't detour through bd_contains for the gendisk (Nigel Croxon) [1898617]
+- [md] md: compare bd_disk instead of bd_contains (Nigel Croxon) [1898617]
+- [md] md: Simplify code with existing definition RESYNC_SECTORS in raid10.c (Nigel Croxon) [1898617]
+- [md] md/raid5: reallocate page array after setting new stripe_size (Nigel Croxon) [1898617]
+- [md] md/raid5: resize stripe_head when reshape array (Nigel Croxon) [1898617]
+- [md] md/raid5: let multiple devices of stripe_head share page (Nigel Croxon) [1898617]
+- [crypto] md/raid6: let async recovery function support different page offset (Nigel Croxon) [1898617]
+- [crypto] md/raid6: let syndrome computor support different page offset (Nigel Croxon) [1898617]
+- [md] md/raid5: convert to new xor compution interface (Nigel Croxon) [1898617]
+- [crypto] md/raid5: add new xor function to support different page offset (Nigel Croxon) [1898617]
+- [md] md/raid5: make async_copy_data() to support different page offset (Nigel Croxon) [1898617]
+- [md] md/raid5: add a new member of offset into r5dev (Nigel Croxon) [1898617]
+- [md] md: only calculate blocksize once and use i_blocksize() (Nigel Croxon) [1898617]
+- [md] md: update the optimal I/O size on reshape (Nigel Croxon) [1898617]
+- [md] md/raid5: make sure stripe_size as power of two (Nigel Croxon) [1898617]
+- [md] md-cluster: Fix potential error pointer dereference in resize_bitmaps() (Nigel Croxon) [1898617]
+- [md] md: get sysfs entry after redundancy attr group create (Nigel Croxon) [1898617]
+- [kernel] lockdep: Fix preemption WARN for spurious IRQ-enable (Waiman Long) [1908640]
+- [powerpc] powerpc/smp: Call rcu_cpu_starting() earlier (Waiman Long) [1908640]
+- [include] seqlock: Fix multiple kernel-doc warnings (Waiman Long) [1908640]
+- [kernel] lockdep: Fix usage_traceoverflow (Waiman Long) [1908640]
+- [kernel] locking/lockdep: Remove more raw_cpu_read() usage (Waiman Long) [1908640]
+- [include] lockdep: Revert "lockdep: Use raw_cpu_*() for per-cpu variables" (Waiman Long) [1908640]
+- [kernel] lockdep: Fix lockdep recursion (Waiman Long) [1908640]
+- [kernel] lockdep,trace: Expose tracepoints (Waiman Long) [1908640]
+- [x86] locking/lockdep: Fix TRACE_IRQFLAGS vs. NMIs (Waiman Long) [1908640]
+- [s390] s390: don't trace preemption in percpu macros (Waiman Long) [1908640]
+- [fs] blkdev: avoid migration stalls for blkdev pages (Chris von Recklinghausen) [1876502]
+- [netdrv] ionic: account for vlan tag len in rx buffer len (Jonathan Toppins) [1908642]
+- [netdrv] net/mlx5e: Fix refcount leak on kTLS RX resync (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: kTLS, Avoid kzalloc(GFP_KERNEL) under spinlock (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: kTLS, Fix leak on resync error flow (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: kTLS, Add missing dma_unmap in RX resync (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: kTLS, Fix napi sync and possible use-after-free (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: kTLS, Improve rx handler function call (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: kTLS, Cleanup redundant capability check (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: Increase Async ICO SQ size (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: kTLS, Add kTLS RX stats (Alaa Hleihel) [1866808]
+- [netdrv] net/mlx5e: kTLS, Add kTLS RX resync support (Alaa Hleihel) [1866808]
+- [infiniband] RDMA/siw: Fix handling of zero-sized Read and Receive Queues (Kamal Heib) [1900985 1875703]
+- [fs] ext4: fix bogus warning in ext4_update_dx_flag() (Lukas Czerner) [1908714]
+- [fs] ext4: handle dax mount option collision (Lukas Czerner) [1908714]
+- [fs] jbd2: fix up sparse warnings in checkpoint code (Lukas Czerner) [1908714]
+- [fs] ext4: unlock xattr_sem properly in ext4_inline_data_truncate() (Lukas Czerner) [1908714]
+- [fs] ext4: do not use extent after put_bh (Lukas Czerner) [1908714]
+- [fs] ext4: fix invalid inode checksum (Lukas Czerner) [1908714]
+- [fs] ext4: clear buffer verified flag if read meta block from disk (Lukas Czerner) [1908714]
+- [fs] ext4: treat buffers contining write errors as valid in ext4_sb_bread() (Lukas Czerner) [1908714]
+- [fs] ext4: treat buffers with write errors as containing valid data (Lukas Czerner) [1908714]
+- [fs] ext4: limit entries returned when counting fsmap records (Lukas Czerner) [1908714]
+- [fs] ext4: fix error handling code in add_new_gdb (Lukas Czerner) [1908714]
+- [fs] ext4: fix leaking sysfs kobject after failed mount (Lukas Czerner) [1908714]
+- [fs] ext4: fix checking of directory entry validity for inline directories (Lukas Czerner) [1908714]
+- [fs] ext4: correctly restore system zone info when remount fails (Lukas Czerner) [1908714]
+- [fs] ext4: handle add_system_zone() failure in ext4_setup_system_zone() (Lukas Czerner) [1908714]
+- [fs] ext4: fold ext4_data_block_valid_rcu() into the caller (Lukas Czerner) [1908714]
+- [fs] ext4: check journal inode extents more carefully (Lukas Czerner) [1908714]
+- [fs] ext4: don't allow overlapping system zones (Lukas Czerner) [1908714]
+- [fs] ext4: handle error of ext4_setup_system_zone() on remount (Lukas Czerner) [1908714]
+- [fs] jbd2: add the missing unlock_buffer() in the error path of jbd2_write_superblock() (Lukas Czerner) [1908714]
+- [fs] ext4: fix mount failure with quota configured as module (Lukas Czerner) [1908714]
+- [fs] ext4: improve explanation of a mount failure caused by a misconfigured kernel (Lukas Czerner) [1908714]
+- [include] jbd2: fix kernel-doc notation warning (Lukas Czerner) [1908714]
+- [base] mm: don't panic when links can't be created in sysfs (Baoquan He) [1890171]
+- [base] mm: don't rely on system state to detect hot-plug operations (Baoquan He) [1890171]
+- [mm] mm: replace memmap_context by meminit_context (Baoquan He) [1890171]
+- [net] Update window_clamp if SOCK_RCVBUF is set (Balazs Nemeth) [1905985]
+- [cpufreq] cpufreq: acpi-cpufreq: Mark sometimes used ID structs as __maybe_unused (David Arcari) [1857102]
+- [cpufreq] cpufreq: acpi-cpufreq: Mark 'dummy' variable as __always_unused (David Arcari) [1857102]
+- [cpufreq] cpufreq: Replace HTTP links with HTTPS ones (David Arcari) [1857102]
+- [cpufreq] cpufreq: change '.set_boost' to act on one policy (David Arcari) [1857102]
+- [cpufreq] cpufreq: Fix up cpufreq_boost_set_sw() (David Arcari) [1857102]
+- [cpufreq] cpufreq: Convert to new X86 CPU match macros (David Arcari) [1857102]
+- [cpufreq] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156 (David Arcari) [1857102]
+
+* Wed Jan 20 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-277.el8]
+- [platform] platform/x86: ISST: Add new PCI device ids (Prarit Bhargava) [1836722]
+- [net] net-sysfs: take the rtnl lock when accessing xps_rxqs_map and num_tc (Antoine Tenart) [1912253]
+- [net] net-sysfs: take the rtnl lock when storing xps_rxqs (Antoine Tenart) [1912253]
+- [net] net-sysfs: take the rtnl lock when accessing xps_cpus_map and num_tc (Antoine Tenart) [1912253]
+- [net] net-sysfs: take the rtnl lock when storing xps_cpus (Antoine Tenart) [1912253]
+- [fs] gfs2: Improve mmap write vs. punch_hole consistency (Andreas Grunbacher) [1872043]
+- [netdrv] bnx2x: fix spelling mistake "occurd" -> "occurred" (Manish Chopra) [1853224]
+- [netdrv] bnx2x: Perform Idlechk dump during the debug collection (Manish Chopra) [1853224]
+- [netdrv] bnx2x: Add support for idlechk tests (Manish Chopra) [1853224]
+- [netdrv] bnx2x: Add Idlechk related register definitions (Manish Chopra) [1853224]
+- [netdrv] bnx2x: use generic power management (Manish Chopra) [1853224]
+- [netdrv] bnx2x: allow bnx2x_bsc_read() to schedule (Manish Chopra) [1853224]
+- [netdrv] bnx2x: Remove unused inline function bnx2x_vf_vlan_credit (Manish Chopra) [1853224]
+- [netdrv] bnx2x: Remove Comparison to bool in bnx2x_dcb.c (Manish Chopra) [1853224]
+- [netdrv] bnx2x: correct a comment mistake in grammar (Manish Chopra) [1853224]
+- [netdrv] net: bnx2x: reject unsupported coalescing params (Manish Chopra) [1853224]
+- [net] tls: Implement getsockopt SOL_TLS TLS_RX (Sabrina Dubroca) [1889664]
+- [net] tls: Protect from calling tls_dev_del for TLS RX twice (Sabrina Dubroca) [1889664]
+- [net] tls: missing received data after fast remote close (Sabrina Dubroca) [1889664]
+- [net] tls: Fix wrong record sn in async mode of device resync (Sabrina Dubroca) [1889664]
+- [net] tls: fix corrupted data in recvmsg (Sabrina Dubroca) [1889664]
+- [net] tls: sendfile fails with ktls offload (Sabrina Dubroca) [1889664]
+- [net] tls: race causes kernel panic (Sabrina Dubroca) [1889664]
+- [net] tls: Fix kmap usage (Sabrina Dubroca) [1889664]
+- [net] tls: allow MSG_CMSG_COMPAT in sendmsg (Sabrina Dubroca) [1889664]
+- [net] tls: fix sign extension issue when left shifting u16 value (Sabrina Dubroca) [1889664]
+- [net] tls: Add asynchronous resync (Sabrina Dubroca) [1889664]
+- [net] revert "net/tls: Add force_resync for driver resync" (Sabrina Dubroca) [1889664]
+- [net] net/tls: Add force_resync for driver resync (Sabrina Dubroca) [1889664]
+- [net] tls: Avoid assigning 'const' pointer to non-const pointer (Sabrina Dubroca) [1889664]
+- [net] tls: move mark_tech_preview to tls_init (Sabrina Dubroca) [1907477]
+- [mm] mm/hmm: do not call hmm_vma_walk_hole() while holding a spinlock (Chris von Recklinghausen) [1890943]
+- [mm] mm: pagewalk: add 'depth' parameter to pte_hole (Chris von Recklinghausen) [1890943]
+- [mm] mm: pagewalk: don't lock PTEs for walk_page_range_novma() (Chris von Recklinghausen) [1890943]
+- [mm] mm: pagewalk: allow walking without vma (Chris von Recklinghausen) [1890943]
+- [mm] mm: pagewalk: add p4d_entry() and pgd_entry() (Chris von Recklinghausen) [1890943]
+- [x86] x86: mm: add p?d_leaf() definitions (Chris von Recklinghausen) [1890943]
+- [s390] s390: mm: add p?d_leaf() definitions (Chris von Recklinghausen) [1890943]
+- [powerpc] powerpc: mm: add p?d_leaf() definitions (Chris von Recklinghausen) [1890943]
+- [arm64] arm64: mm: add p?d_leaf() definitions (Chris von Recklinghausen) [1890943]
+- [mm] mm: add generic p?d_leaf() macros (Chris von Recklinghausen) [1890943]
+- [mm] mm: move_pages: report the number of non-attempted pages (Chris von Recklinghausen) [1890943]
+- [mm] autonuma: fix watermark checking in migrate_balanced_pgdat() (Chris von Recklinghausen) [1890943]
+- [mm] mm/migrate.c: handle freed page at the first place (Chris von Recklinghausen) [1890943]
+- [mm] mm: pagewalk: Take the pagetable lock in walk_pte_range() (Chris von Recklinghausen) [1890943]
+- [mm] mm: untag user pointers passed to memory syscalls (Chris von Recklinghausen) [1890943]
+- [mm] mm: page cache: store only head pages in i_pages (Chris von Recklinghausen) [1890943]
+- [mm] mm: migrate: fix reference check race between __find_get_block() and migration (Chris von Recklinghausen) [1890943]
+- [fs] mm: migrate: remove unused mode argument (Chris von Recklinghausen) [1890943]
+- [mm] powerpc/book3s: Use config independent helpers for page table walk (Chris von Recklinghausen) [1890943]
+- [mm] mm/mmu_notifier: use correct mmu_notifier events for each invalidation (Chris von Recklinghausen) [1890943]
+- [mm] mm/mmu_notifier: contextual information for event triggering invalidation (Chris von Recklinghausen) [1890943]
+- [mm] powerpc/mm: move __find_linux_pte() out of hugetlbpage.c (Chris von Recklinghausen) [1890943]
+- [mm] mm/filemap.c: remove redundant test from find_get_pages_contig (Chris von Recklinghausen) [1890943]
+- [mm] mm/hugetlb: distinguish between migratability and movability (Chris von Recklinghausen) [1890943]
+- [mm] numa: change get_mempolicy() to use nr_node_ids instead of MAX_NUMNODES (Chris von Recklinghausen) [1890943]
+- [mm] mm: migrate: make buffer_migrate_page_norefs() actually succeed (Chris von Recklinghausen) [1890943]
+- [mm] mm: treewide: remove unused address argument from pte_alloc functions (Chris von Recklinghausen) [1890943]
+- [fs] mm: migrate: drop unused argument of migrate_page_move_mapping() (Chris von Recklinghausen) [1890943]
+- [mm] mm: migrate: provide buffer_migrate_page_norefs() (Chris von Recklinghausen) [1890943]
+- [mm] mm: migrate: move migrate_page_lock_buffers() (Chris von Recklinghausen) [1890943]
+- [mm] mm: migrate: lock buffers before migrate_page_move_mapping() (Chris von Recklinghausen) [1890943]
+- [mm] mm: Convert huge_memory to XArray (Chris von Recklinghausen) [1890943]
+- [mm] mm: Convert page migration to XArray (Chris von Recklinghausen) [1890943]
+- [mm] powerpc/mm/book3s: Check for pmd_large instead of pmd_trans_huge (Chris von Recklinghausen) [1890943]
+- [x86] x86/pgtable: Move two more functions from pgtable_64.h to pgtable.h (Chris von Recklinghausen) [1890943]
+- [x86] x86/pgtable: Move pti_set_user_pgtbl() to pgtable.h (Chris von Recklinghausen) [1890943]
+- [x86] x86/pgtable: Move pgdp kernel/user conversion functions to pgtable.h (Chris von Recklinghausen) [1890943]
+- [mm] x86/pgtable: Rename pti_set_user_pgd() to pti_set_user_pgtbl() (Chris von Recklinghausen) [1890943]
+- [mm] mm: memcg/slab: fix root memcg vmstats (Waiman Long) [1877019]
+- [mm] mm/slub: let number of online CPUs determine the slub page order (Waiman Long) [1877019]
+- [mm] mm, debug_pagealloc: don't rely on static keys too early (Waiman Long) [1877019]
+- [mm] mm: memcg: link page counters to root if use_hierarchy is false (Waiman Long) [1877019]
+- [mm] mm/memcg: unify swap and memsw page counters (Waiman Long) [1877019]
+- [mm] mm: memcontrol: correct the NR_ANON_THPS counter of hierarchical memcg (Waiman Long) [1877019]
+- [mm] mlock: fix unevictable_pgs event counts on THP (Waiman Long) [1877019]
+- [mm] mm/filemap: fix storing to a THP shadow entry (Waiman Long) [1877019]
+- [lib] XArray: add xas_split (Waiman Long) [1877019]
+- [lib] XArray: add xa_get_order (Waiman Long) [1877019]
+- [lib] XArray: Add private interface for workingset node deletion (Waiman Long) [1877019]
+- [include] XArray: Fix xas_reload for multi-index entries (Waiman Long) [1877019]
+- [include] xarray.h: correct return code documentation for xa_store_{bh, irq}() (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: uncharge during kmem_cache_free_bulk() (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: fix racy access to page->mem_cgroup in mem_cgroup_from_obj() (Waiman Long) [1877019]
+- [mm] mm: memcontrol: fix missing suffix of workingset_restore (Waiman Long) [1877019]
+- [mm] mm: memcontrol: fix warning when allocating the root cgroup (Waiman Long) [1877019]
+- [mm] mm: replace hpage_nr_pages with thp_nr_pages (Waiman Long) [1877019]
+- [mm] mm: add thp_size (Waiman Long) [1877019]
+- [include] mm: add thp_order (Waiman Long) [1877019]
+- [include] include/linux/huge_mm.h: check PageTail in hpage_nr_pages even when !THP (Waiman Long) [1877019]
+- [mm] mm/page_vma_mapped.c: explicitly compare pfn for normal, hugetlbfs and THP page (Waiman Long) [1877019]
+- [mm] mm/vmscan: restore active/inactive ratio for anonymous LRU (Waiman Long) [1877019]
+- [mm] mm/swap: implement workingset detection for anonymous LRU (Waiman Long) [1877019]
+- [mm] mm/swapcache: support to handle the shadow entries (Waiman Long) [1877019]
+- [mm] mm: fix swap cache node allocation mask (Waiman Long) [1877019]
+- [include] include/linux/swap.h: delete meaningless __add_to_swap_cache() declaration (Waiman Long) [1877019]
+- [mm] mm/swap_state.c: use the same way to count page in_swap_cache (Waiman Long) [1877019]
+- [mm] mm: shmem: use proper gfp flags for shmem_writepage() (Waiman Long) [1877019]
+- [mm] mm/workingset: prepare the workingset detection infrastructure for anon LRU (Waiman Long) [1877019]
+- [mm] mm/vmscan: protect the workingset on anonymous LRU (Waiman Long) [1877019]
+- [mm] mm/vmscan: make active/inactive ratio as 1:1 for anon lru (Waiman Long) [1877019]
+- [tools] kselftests: cgroup: add perpcu memory accounting test (Waiman Long) [1877019]
+- [mm] mm: memcg: charge memcg percpu memory to the parent cgroup (Waiman Long) [1877019]
+- [mm] mm: memcg/percpu: per-memcg percpu memory statistics (Waiman Long) [1877019]
+- [mm] mm: memcg/percpu: account percpu memory to memory cgroups (Waiman Long) [1877019]
+- [mm] percpu: return number of released bytes from pcpu_free_area() (Waiman Long) [1877019]
+- [mm] percpu: make pcpu_alloc() aware of current gfp context (Waiman Long) [1877019]
+- [mm] mm/khugepaged: fix filemap page_to_pgoff(page) != offset (Waiman Long) [1877019]
+- [mm] mm, slub: restore initial kmem_cache flags (Waiman Long) [1877019]
+- [include] mm: memcg/slab: fix slab statistics in !SMP configuration (Waiman Long) [1877019]
+- [mm] mm: slab: fix potential double free in ___cache_free (Waiman Long) [1877019]
+- [mm] ksm: reinstate memcg charge on copied pages (Waiman Long) [1877019]
+- [mm] mm: slub: fix conversion of freelist_corrupted() (Waiman Long) [1877019]
+- [mm] memcg: fix use-after-free in uncharge_batch (Waiman Long) [1877019]
+- [mm] mm/memory: fix IO cost for anonymous page (Waiman Long) [1877019]
+- [mm] mm: workingset: age nonresident information alongside anonymous pages (Waiman Long) [1877019]
+- [mm] slub: cure list_slab_objects() from double fix (Waiman Long) [1877019]
+- [mm] mm: do_swap_page(): fix up the error code (Waiman Long) [1877019]
+- [misc] lkdtm/heap: Avoid edge and middle of slabs (Waiman Long) [1877019]
+- [mm] mm: slub: really fix slab walking for init_on_free (Waiman Long) [1877019]
+- [mm] mm/slab.c: fix kernel-doc warning for __ksize() (Waiman Long) [1877019]
+- [mm] mm: memcontrol: restore proper dirty throttling when memory.high changes (Waiman Long) [1877019]
+- [mm] memcg, oom: check memcg margin for parallel oom (Waiman Long) [1877019]
+- [mm] mm, memcg: avoid stale protection values when cgroup is above protection (Waiman Long) [1877019]
+- [mm] mm, memcg: unify reclaim retry limits with page allocator (Waiman Long) [1877019]
+- [mm] mm, memcg: reclaim more aggressively before high allocator throttling (Waiman Long) [1877019]
+- [mm] mm: memcontrol: avoid workload stalls when lowering memory.high (Waiman Long) [1877019]
+- [include] mm: kmem: switch to static_branch_likely() in memcg_kmem_enabled() (Waiman Long) [1877019]
+- [mm] mm: slab: rename (un)charge_slab_page() to (un)account_slab_page() (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: remove unused argument by charge_slab_page() (Waiman Long) [1877019]
+- [tools] tools/cgroup: add memcg_slabinfo.py tool (Waiman Long) [1877019]
+- [tools] kselftests: cgroup: add kernel memory accounting tests (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: use a single set of kmem_caches for all allocations (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: remove redundant check in memcg_accumulate_slabinfo() (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: deprecate slab_root_caches (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: remove memcg_kmem_get_cache() (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: simplify memcg cache creation (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: use a single set of kmem_caches for all accounted allocations (Waiman Long) [1877019]
+- [mm] mm, slab_common: fix a typo in comment "eariler"->"earlier" (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: fix memory leak at non-root kmem_cache destroy (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: fix panic in __free_slab() caused by premature memcg pointer release (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: move memcg_kmem_bypass() to memcontrol.h (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: deprecate memory.kmem.slabinfo (Waiman Long) [1877019]
+- [mm] mm, memcg: fix build error around the usage of kmem_caches (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: charge individual slab objects instead of pages (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: save obj_cgroup for non-root slab objects (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: allocate obj_cgroups for non-root slab pages (Waiman Long) [1877019]
+- [mm] mm: memcg/slab: obj_cgroup API (Waiman Long) [1877019]
+- [mm] mm: memcontrol: decouple reference counting from page accounting (Waiman Long) [1877019]
+- [mm] mm: slub: implement SLUB version of obj_to_index() (Waiman Long) [1877019]
+- [mm] mm: memcg: convert vmstat slab counters to bytes (Waiman Long) [1877019]
+- [mm] mm: memcg: prepare for byte-sized vmstat items (Waiman Long) [1877019]
+- [mm] mm: memcg: factor out memcg- and lruvec-level changes out of __mod_lruvec_state() (Waiman Long) [1877019]
+- [mm] mm: kmem: make memcg_kmem_enabled() irreversible (Waiman Long) [1877019]
+- [mm] mm, slab/slub: improve error reporting and overhead of cache_from_obj() (Waiman Long) [1877019]
+- [mm] mm, slab/slub: move and improve cache_from_obj() (Waiman Long) [1877019]
+- [mm] mm, slub: extend checks guarded by slub_debug static key (Waiman Long) [1877019]
+- [mm] mm, slub: introduce kmem_cache_debug_flags() (Waiman Long) [1877019]
+- [mm] mm, slub: introduce static key for slub_debug() (Waiman Long) [1877019]
+- [mm] mm, slub: make reclaim_account attribute read-only (Waiman Long) [1877019]
+- [mm] mm, slub: make remaining slub_debug related attributes read-only (Waiman Long) [1877019]
+- [mm] mm, slub: remove runtime allocation order changes (Waiman Long) [1877019]
+- [mm] mm, slub: make some slub_debug related attributes read-only (Waiman Long) [1877019]
+- [documentation] mm, slub: extend slub_debug syntax for multiple blocks (Waiman Long) [1877019]
+- [mm] mm/slab.c: update outdated kmem_list3 in a comment (Waiman Long) [1877019]
+- [mm] mm, slab: check GFP_SLAB_BUG_MASK before alloc_pages in kmalloc_order (Waiman Long) [1877019]
+- [mm] mm/slab: add naive detection of double free (Waiman Long) [1877019]
+- [init] mm/slab: expand CONFIG_SLAB_FREELIST_HARDENED to include SLAB (Waiman Long) [1877019]
+- [mm] mm: ksize() should silently accept a NULL pointer (Waiman Long) [1877019]
+- [include] include/linux/vmstat.h: remove unused page state adjustment macro (Waiman Long) [1877019]
+- [include] mm, memcg: fix inconsistent oom event behavior (Waiman Long) [1877019]
+- [mm] mm/memcg: fix refcount error while moving and swapping (Waiman Long) [1877019]
+- [mm] mm/memcontrol: fix OOPS inside mem_cgroup_get_nr_swap_pages() (Waiman Long) [1877019]
+- [mm] mm/memcontrol.c: add missed css_put() (Waiman Long) [1877019]
+- [mm] mm: memcontrol: handle div0 crash race condition in memory.low (Waiman Long) [1877019]
+- [kernel] mm: memcontrol: recursive memory.low protection (Waiman Long) [1877019]
+- [include] mm, memcg: consider subtrees in memory.events (Waiman Long) [1877019]
+- [net] mm, treewide: rename kzfree() to kfree_sensitive() (Waiman Long) [1877019]
+- [mm] mm/slab: use memzero_explicit() in kzfree() (Waiman Long) [1877019]
+- [mm] mm: swap: memcg: fix memcg stats for huge pages (Waiman Long) [1877019]
+- [mm] mm: swap: fix vmstats for huge pages (Waiman Long) [1877019]
+- [mm] mm: vmscan: limit the range of LRU type balancing (Waiman Long) [1877019]
+- [mm] mm: vmscan: reclaim writepage is IO cost (Waiman Long) [1877019]
+- [mm] mm: vmscan: determine anon/file pressure balance at the reclaim root (Waiman Long) [1877019]
+- [mm] mm: balance LRU lists based on relative thrashing (Waiman Long) [1877019]
+- [mm] mm: only count actual rotations as LRU reclaim cost (Waiman Long) [1877019]
+- [mm] mm: deactivations shouldn't bias the LRU balance (Waiman Long) [1877019]
+- [mm] mm: base LRU balancing on an explicit cost model (Waiman Long) [1877019]
+- [mm] mm: vmscan: drop unnecessary div0 avoidance rounding in get_scan_count() (Waiman Long) [1877019]
+- [mm] mm: remove use-once cache bias from LRU balancing (Waiman Long) [1877019]
+- [mm] mm: workingset: let cache workingset challenge anon (Waiman Long) [1877019]
+- [mm] mm: fold and remove lru_cache_add_anon() and lru_cache_add_file() (Waiman Long) [1877019]
+- [kernel] mm: allow swappiness that prefers reclaiming anon over the file workingset (Waiman Long) [1877019]
+- [mm] mm: keep separate anon and file statistics on page reclaim activity (Waiman Long) [1877019]
+- [mm] mm: fix LRU balancing effect of new transparent huge pages (Waiman Long) [1877019]
+- [mm] mm: replace list_move_tail() with add_page_to_lru_list_tail() (Waiman Long) [1877019]
+- [mm] mm: memcontrol: update page->mem_cgroup stability rules (Waiman Long) [1877019]
+- [mm] mm: memcontrol: delete unused lrucare handling (Waiman Long) [1877019]
+- [documentation] mm: memcontrol: document the new swap control behavior (Waiman Long) [1877019]
+- [mm] mm: memcontrol: charge swapin pages on instantiation (Waiman Long) [1877019]
+- [mm] mm: memcontrol: make swap tracking an integral part of memory control (Waiman Long) [1877019]
+- [mm] mm: memcontrol: prepare swap controller setup for integration (Waiman Long) [1877019]
+- [mm] mm: memcontrol: drop unused try/commit/cancel charge API (Waiman Long) [1877019]
+- [mm] mm: memcontrol: convert anon and file-thp to new mem_cgroup_charge() API (Waiman Long) [1877019]
+- [mm] mm: memcontrol: switch to native NR_ANON_THPS counter (Waiman Long) [1877019]
+- [mm] mm: memcontrol: switch to native NR_ANON_MAPPED counter (Waiman Long) [1877019]
+- [mm] mm: memcontrol: switch to native NR_FILE_PAGES and NR_SHMEM counters (Waiman Long) [1877019]
+- [mm] mm: memcontrol: prepare cgroup vmstat infrastructure for native anon counters (Waiman Long) [1877019]
+- [mm] mm: memcontrol: prepare move_account for removal of private page type counters (Waiman Long) [1877019]
+- [mm] mm: memcontrol: prepare uncharging for removal of private page type counters (Waiman Long) [1877019]
+- [mm] mm: memcontrol: convert page cache to a new mem_cgroup_charge() API (Waiman Long) [1877019]
+- [mm] mm: memcontrol: move out cgroup swaprate throttling (Waiman Long) [1877019]
+- [mm] mm: shmem: remove rare optimization when swapin races with hole punching (Waiman Long) [1877019]
+- [mm] mm: memcontrol: drop @compound parameter from memcg charging API (Waiman Long) [1877019]
+- [mm] mm: memcontrol: fix stat-corrupting race in charge moving (Waiman Long) [1877019]
+- [mm] mm: fix NUMA node file count error in replace_page_cache() (Waiman Long) [1877019]
+- [mm] mm/slub: fix stack overruns with SLUB_STATS (Waiman Long) [1877019]
+- [mm] slub: remove kmalloc under list_lock from list_slab_objects() V2 (Waiman Long) [1877019]
+- [mm] slub: Remove userspace notifier for cache add/remove (Waiman Long) [1877019]
+- [mm] mm/slub.c: fix corrupted freechain in deactivate_slab() (Waiman Long) [1877019]
+- [mm] mm/slub: fix incorrect interpretation of s->offset (Waiman Long) [1877019]
+- [mm] slub: avoid redzone when choosing freepointer location (Waiman Long) [1877019]
+- [mm] slub: relocate freelist pointer to middle of object (Waiman Long) [1877019]
+- [mm] slub: improve bit diffusion for freelist ptr obfuscation (Waiman Long) [1877019]
+- [mm] mm, slb: improve memory accounting (Waiman Long) [1877019]
+- [mm] thp: change CoW semantics for anon-THP (Waiman Long) [1877019]
+- [mm] khugepaged: allow to collapse PTE-mapped compound pages (Waiman Long) [1877019]
+- [mm] khugepaged: allow to collapse a page shared across fork (Waiman Long) [1877019]
+- [mm] khugepaged: drain LRU add pagevec after swapin (Waiman Long) [1877019]
+- [mm] khugepaged: drain all LRU caches before scanning pages (Waiman Long) [1877019]
+- [mm] khugepaged: do not stop collapse if less than half PTEs are referenced (Waiman Long) [1877019]
+- [tools] khugepaged: add self test (Waiman Long) [1877019]
+- [mm] mm: code cleanup for MADV_FREE (Waiman Long) [1877019]
+- [mm] mm, thp: track fallbacks due to failed memcg charges separately (Waiman Long) [1877019]
+- [mm] mm, shmem: add vmstat for hugepage fallback (Waiman Long) [1877019]
+- [mm] autonuma: reduce cache footprint when scanning page tables (Waiman Long) [1877019]
+- [trace] mm/vmscan: simplify trace_reclaim_flags and trace_shrink_flags (Waiman Long) [1877019]
+- [mm] mm/memcg: optimize memory.numa_stat like memory.stat (Waiman Long) [1877019]
+- [mm] memcg: fix memcg_kmem_bypass() for remote memcg charging (Waiman Long) [1877019]
+- [mm] mm/memcg: automatically penalize tasks with high swap use (Waiman Long) [1877019]
+- [include] mm/memcg: move cgroup high memory limit setting into struct page_counter (Waiman Long) [1877019]
+- [mm] mm/memcg: move penalty delay clamping out of calculate_high_delay() (Waiman Long) [1877019]
+- [mm] mm/memcg: prepare for swap over-high accounting and penalty calculation (Waiman Long) [1877019]
+- [mm] memcg: expose root cgroup's memory.stat (Waiman Long) [1877019]
+- [mm] mm, memcg: add workingset_restore in memory.stat (Waiman Long) [1877019]
+- [documentation] doc: cgroup: improve formatting of mem stats (Waiman Long) [1877019]
+- [documentation] docs: cgroup: mm: Fix spelling of "list" (Waiman Long) [1877019]
+- [mm] mm, memcg: fix error return value of mem_cgroup_css_alloc() (Waiman Long) [1877019]
+- [include] memcontrol.h: Replace zero-length array with flexible-array member (Waiman Long) [1877019]
+- [mm] mm, memcg: bypass high reclaim iteration for cgroup hierarchy root (Waiman Long) [1877019]
+- [mm] mm: memcg: make memory.oom.group tolerable to task migration (Waiman Long) [1877019]
+- [mm] mm, memcg: prevent memory.swap.max load tearing (Waiman Long) [1877019]
+- [mm] mm, memcg: prevent memory.low load/store tearing (Waiman Long) [1877019]
+- [mm] mm, memcg: prevent memory.max load tearing (Waiman Long) [1877019]
+- [mm] mm, memcg: prevent memory.high load/store tearing (Waiman Long) [1877019]
+- [mm] mm/memcontrol.c: make mem_cgroup_id_get_many() __maybe_unused (Waiman Long) [1877019]
+- [mm] memcg: css_tryget_online cleanups (Waiman Long) [1877019]
+- [mm] mm/memcontrol.c: cleanup some useless code (Waiman Long) [1877019]
+- [mm] mm/memcontrol.c: fix a -Wunused-function warning (Waiman Long) [1877019]
+- [mm] mm: memcontrol: switch to rcu protection in drain_all_stock() (Waiman Long) [1877019]
+- [mm] mm/khugepaged.c: fix khugepaged's request size in collapse_file (Waiman Long) [1877019]
+- [mm] khugepaged: fix null-pointer dereference due to race (Waiman Long) [1877019]
+- [mm] mm, thp: stop leaking unreleased file pages (Waiman Long) [1877019]
+- [trace] mm: khugepaged: add trace status description for SCAN_PAGE_HAS_PRIVATE (Waiman Long) [1877019]
+- [mm] mm, thp: recheck each page before collapsing file THP (Waiman Long) [1877019]
+- [mm] mm/thp: allow dropping THP from page cache (Waiman Long) [1877019]
+- [mm] mm/vmscan.c: support removing arbitrary sized pages from mapping (Waiman Long) [1877019]
+- [mm] mm/thp: fix node page state in split_huge_page_to_list() (Waiman Long) [1877019]
+- [fs] proc/meminfo: fix output alignment (Waiman Long) [1877019]
+- [mm] mm: shmem: disable interrupt when acquiring info->lock in userfaultfd_copy path (Waiman Long) [1877019]
+- [fs] mm, thp: avoid writes to file with THP in pagecache (Waiman Long) [1877019]
+- [mm] mm, thp: add read-only THP support for (non-shmem) FS (Waiman Long) [1877019]
+- [mm] khugepaged: rename collapse_shmem() and khugepaged_scan_shmem() (Waiman Long) [1877019]
+- [fs] mm,thp: stats for file backed THP (Waiman Long) [1877019]
+- [mm] filemap: update offset check in filemap_fault() (Waiman Long) [1877019]
+- [mm] filemap: check compound_head(page)->mapping in pagecache_get_page() (Waiman Long) [1877019]
+- [mm] filemap: check compound_head(page)->mapping in filemap_fault() (Waiman Long) [1877019]
+- [mm] mm: mempolicy: fix the wrong return value and potential pages leak of mbind (Waiman Long) [1877019]
+- [mm] mm: thp: fix false negative of shmem vma's THP eligibility (Waiman Long) [1877019]
+- [mm] mm: thp: make transhuge_vma_suitable available for anonymous THP (Waiman Long) [1877019]
+- [mm] mm, thp, proc: report THP eligibility for each vma (Waiman Long) [1877019]
+- [documentation] mm, proc: be more verbose about unstable VMA flags in /proc/<pid>/smaps (Waiman Long) [1877019]
+- [mm] mm: thp: pass correct vm_flags to hugepage_vma_check() (Waiman Long) [1877019]
+- [fs] mm: /proc/pid/smaps_rollup: convert to single value seq_file (Waiman Long) [1877019]
+- [fs] mm: /proc/pid/smaps: factor out common stats printing (Waiman Long) [1877019]
+- [fs] mm: /proc/pid/smaps: factor out mem stats gathering (Waiman Long) [1877019]
+- [fs] mm: /proc/pid/*maps remove is_pid and related wrappers (Waiman Long) [1877019]
+- [mm] mm: workingset: fix vmstat counters for shadow nodes (Waiman Long) [1877019]
+- [mm] mm: workingset: add vmstat counter for shadow nodes (Waiman Long) [1877019]
+- [include] mm/memcg: Document access rule regarding mem_cgroup structure (Waiman Long) [1877019]
+- [mm] mm/page_alloc: silence a KASAN false positive (Waiman Long) [1877019]
+- [s390] s390/setup: init jump labels before command line parsing (Waiman Long) [1877019]
+- [mm] s390/maccess: add no DAT mode to kernel_write (Waiman Long) [1877019]
+- [mm] s390: Change s390_kernel_write() return type to match memcpy() (Waiman Long) [1877019]
+- [kernel] PM: hibernate: fix crashes with init_on_free=1 (Waiman Long) [1877019]
+- [mm] mm/slub.c: init_on_free=1 should wipe freelist ptr for bulk allocations (Waiman Long) [1877019]
+- [mm] mm/page_alloc.c: fix a crash in free_pages_prepare() (Waiman Long) [1877019]
+- [mm] mm: slub: Fix slab walking for init_on_free (Waiman Long) [1877019]
+- [mm] mm, slab: move memcg_cache_params structure to mm/slab.h (Waiman Long) [1877019]
+- [mm] mm, slab: extend slab/shrink to shrink all memcg caches (Waiman Long) [1877019]
+- [mm] mm: mempolicy: handle vma with unmovable pages mapped correctly in mbind (Waiman Long) [1877019]
+- [mm] mm: mempolicy: make the behavior consistent when MPOL_MF_MOVE* and MPOL_MF_STRICT were specified (Waiman Long) [1877019]
+- [init] init/Kconfig: fix neighboring typos (Waiman Long) [1877019]
+- [mm] mm: security: introduce init_on_alloc=1 and init_on_free=1 boot options (Waiman Long) [1877019]
+- [mm] memcg, oom: no oom-kill for __GFP_RETRY_MAYFAIL (Waiman Long) [1877019]
+- [mm] mm/kasan: add object validation in ksize() (Waiman Long) [1877019]
+- [mm] mm/slab: refactor common ksize KASAN logic into slab_common.c (Waiman Long) [1877019]
+- [mm] mm/slub.c: avoid double string traverse in kmem_cache_flags() (Waiman Long) [1877019]
+- [mm] mm/slab: sanity-check page type when looking up cache (Waiman Long) [1877019]
+- [mm] mm/slab: validate cache membership under freelist hardening (Waiman Long) [1877019]
+- [mm] mm/migrate: add stable check in migrate_vma_insert_page() (Waiman Long) [1877019]
+- [mm] mm/migrate: clean up some minor coding style (Waiman Long) [1877019]
+- [mm] mm/migrate: remove useless mask of start address (Waiman Long) [1877019]
+- [kernel] uprobe: use original page when all uprobes are removed (Waiman Long) [1877019]
+- [mm] mm: move memcmp_pages() and pages_identical() (Waiman Long) [1877019]
+- [mm] mm, thp: do not queue fully unmapped pages for deferred split (Waiman Long) [1877019]
+- [mm] mm/khugepaged: fix the xas_create_range() error path (Waiman Long) [1877019]
+- [mm] mm/khugepaged: collapse_shmem() do not crash on Compound (Waiman Long) [1877019]
+- [mm] mm/khugepaged: collapse_shmem() without freezing new_page (Waiman Long) [1877019]
+- [mm] mm/khugepaged: minor reorderings in collapse_shmem() (Waiman Long) [1877019]
+- [mm] mm/khugepaged: collapse_shmem() remember to clear holes (Waiman Long) [1877019]
+- [mm] mm/khugepaged: collapse_shmem() stop if punched or truncated (Waiman Long) [1877019]
+- [mm] mm: Convert khugepaged_scan_shmem to XArray (Waiman Long) [1877019]
+- [mm] mm: Convert collapse_shmem to XArray (Waiman Long) [1877019]
+- [mm] mm: thp: inc counter for collapsed shmem THP (Waiman Long) [1877019]
+- [mm] mm: thp: register mm for khugepaged when merging vma for shmem (Waiman Long) [1877019]
+- [mm] mm: swapoff: shmem_unuse() stop eviction without igrab() (Waiman Long) [1877019]
+- [mm] mm: swapoff: take notice of completion sooner (Waiman Long) [1877019]
+- [mm] mm: swapoff: remove too limiting SWAP_UNUSE_MAX_TRIES (Waiman Long) [1877019]
+- [mm] mm: swapoff: shmem_find_swap_entries() filter out other types (Waiman Long) [1877019]
+- [mm] mm: rid swapoff of quadratic complexity (Waiman Long) [1877019]
+- [mm] shmem: Comment fixups (Waiman Long) [1877019]
+- [mm] memfd: Convert memfd_tag_pins to XArray (Waiman Long) [1877019]
+- [mm] memfd: Convert memfd_wait_for_pins to XArray (Waiman Long) [1877019]
+- [mm] shmem: Convert shmem_partial_swap_usage to XArray (Waiman Long) [1877019]
+- [mm] shmem: Convert shmem_free_swap to XArray (Waiman Long) [1877019]
+- [lib] shmem: Convert shmem_alloc_hugepage to XArray (Waiman Long) [1877019]
+- [tools] shmem: Convert find_swap_entry to XArray (Waiman Long) [1877019]
+- [mm] shmem: Convert shmem_confirm_swap to XArray (Waiman Long) [1877019]
+
+* Tue Jan 19 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-276.el8]
+- [infiniband] RDMA/core: Do not indicate device ready when device enablement fails (Kamal Heib) [1902144]
+- [infiniband] RDMA/core: Clean up cq pool mechanism (Kamal Heib) [1902144]
+- [pci] PCI/ASPM: Disable ASPM on ASMedia ASM1083/1085 PCIe-to-PCI bridge (Myron Stowe) [1897927]
+- [pci] PCI: Make pcie_find_root_port() work for Root Ports (Myron Stowe) [1897927]
+- [pci] PCI: Add ACS quirk for Intel Root Complex Integrated Endpoints (Myron Stowe) [1897927]
+- [pci] PCI: Avoid FLR for AMD Starship USB 3.0 (Myron Stowe) [1897927]
+- [pci] PCI: Avoid FLR for AMD Matisse HD Audio & USB 3.0 (Myron Stowe) [1897927]
+- [pci] PCI/switchtec: Correct bool variable type assignment (Myron Stowe) [1897927]
+- [pci] PCI: Allow pci_resize_resource() for devices on root bus (Myron Stowe) [1897927]
+- [pci] PCI/PM: Adjust pcie_wait_for_link_delay() for caller delay (Myron Stowe) [1897927]
+- [pci] PCI: Avoid Pericom USB controller OHCI/EHCI PME# defect (Myron Stowe) [1897927]
+- [tty] serial: 8250_pci: Move Pericom IDs to pci_ids.h (Myron Stowe) [1897927]
+- [pci] PCI/PM: Call .bridge_d3() hook only if non-NULL (Myron Stowe) [1897927]
+- [pci] PCI: Rename _DSM constants to align with spec (Myron Stowe) [1897927]
+- [pci] PCI/PME: Fix kernel-doc of pcie_pme_resume() and pcie_pme_remove() (Myron Stowe) [1897927]
+- [pci] PCI: Unify pcie_find_root_port() and pci_find_pcie_root_port() (Myron Stowe) [1897927]
+- [pci] PCI: Replace zero-length array with flexible-array (Myron Stowe) [1897927]
+- [pci] PCI: shpchp: Make shpchp_unconfigure_device() void (Myron Stowe) [1897927]
+- [pci] PCI: Use of_node_name_eq() for node name comparisons (Myron Stowe) [1897927]
+- [pci] PCI: pciehp: Remove unused EMI() and HP_SUPR_RM() macros (Myron Stowe) [1897927]
+- [pcmcia] pcmcia: Use CardBus window names (PCI_CB_BRIDGE_IO_0_WINDOW etc) when freeing (Myron Stowe) [1897927]
+- [pci] PCI: Use bridge window names (PCI_BRIDGE_IO_WINDOW etc) (Myron Stowe) [1897927]
+- [pci] PCI/PTM: Inherit Switch Downstream Port PTM settings from Upstream Port (Myron Stowe) [1897927]
+- [pci] PCI: Program MPS for RCiEP devices (Myron Stowe) [1897927]
+- [pci] PCI: Fix pci_host_bridge struct device release/free handling (Myron Stowe) [1897927]
+- [pci] PCI: Fix pci_register_host_bridge() device_register() error handling (Myron Stowe) [1897927]
+- [pci] PCI/ASPM: Allow ASPM on links to PCIe-to-PCI/PCI-X Bridges (Myron Stowe) [1897927]
+- [x86] x86/tboot: Don't disable swiotlb when iommu is forced on (Tony Camuso) [1883395]
+- [iommu] iommu/vt-d: Avoid panic if iommu init fails in tboot system (Tony Camuso) [1883395]
+- [pci] PCI/ERR: Clear PCIe Device Status errors only if OS owns AER (Myron Stowe) [1838358]
+- [pci] PCI/ERR: Rename pci_aer_clear_device_status() to pcie_clear_device_status() (Myron Stowe) [1838358]
+- [pci] PCI/AER: Log correctable errors as warning, not error (Myron Stowe) [1838358]
+- [pci] PCI/AER: Simplify __aer_print_error() (Myron Stowe) [1838358]
+- [misc] mei: hdcp: fix mei_hdcp_verify_mprime() input parameter (Tony Camuso) [1874577]
+- [misc] mei: add device kind to sysfs (Tony Camuso) [1874577]
+- [misc] mei: hw: don't use one element arrays (Tony Camuso) [1874577]
+- [misc] mei: hw: use sizeof of variable instead of struct type (Tony Camuso) [1874577]
+- [misc] mei: client: use sizeof of variable instead of struct type (Tony Camuso) [1874577]
+- [misc] mei: bus: use sizeof of variable instead of struct type (Tony Camuso) [1874577]
+- [misc] mei: ioctl: use sizeof of variable instead of struct type (Tony Camuso) [1874577]
+- [misc] mei: hbm: use sizeof of variable instead of struct type (Tony Camuso) [1874577]
+- [misc] Revert "mei: Avoid the use of one-element arrays" (Tony Camuso) [1874577]
+- [misc] mei: Avoid the use of one-element arrays (Tony Camuso) [1874577]
+- [misc] mei: Replace HTTP links with HTTPS ones (Tony Camuso) [1874577]
+- [misc] mei: hdcp: Replace one-element array with flexible-array member (Tony Camuso) [1874577]
+- [misc] mei: bus: don't clean driver pointer (Tony Camuso) [1874577]
+- [misc] mei: me: add MEI device for KBP with ITPS capability (Tony Camuso) [1874577]
+- [misc] mei: me: add MEI device for SPT with ITPS capability (Tony Camuso) [1874577]
+- [misc] mei: me: add kdoc for mei_me_fw_type_nm() (Tony Camuso) [1874577]
+- [misc] mei: me: make mei_me_fw_sku_sps_4() less cryptic (Tony Camuso) [1874577]
+- [misc] mei: me: constify the device parameter to the probe quirk (Tony Camuso) [1874577]
+- [misc] mei: hdcp: Constify struct mei_cl_device_id (Tony Camuso) [1874577]
+- [misc] mei: me: add tiger lake point device ids for H platforms (Tony Camuso) [1874577]
+- [misc] mei: me: disable mei interface on Mehlow server platforms (Tony Camuso) [1874577]
+- [misc] mei: release me_cl object reference (Tony Camuso) [1874577]
+- [misc] mei: me: disable mei interface on LBG servers (Tony Camuso) [1874577]
+- [fs] NFS4: Fix use-after-free in trace_event_raw_event_nfs4_set_lock (Dave Wysochanski) [1906306]
+- [fs] NFS: Adjust fs_context error logging (Scott Mayhew) [1907711]
+- [mm] powerpc/book3s64/pkeys: Fix pkey_access_permitted() for execute disable pkey (Steve Best) [1912294]
+- [infiniband] IB/isert: add module param to set sg_tablesize for IO cmd (Kamal Heib) [1887359]
+- [infiniband] IB/isert: allocate RW ctxs according to max IO size (Kamal Heib) [1887359]
+- [net] sched: flower: Mark MPLS multilabel match as Tech Preview (Guillaume Nault) [1814836]
+- [net] sched: Fix dump of MPLS_OPT_LSE_LABEL attribute in cls_flower (Guillaume Nault) [1814836]
+- [net] cls_flower: remove mpls_opts_policy (Guillaume Nault) [1814836]
+- [net] flow_dissector: work around stack frame size warning (Guillaume Nault) [1814836]
+- [net] cls_flower: Support filtering on multiple MPLS Label Stack Entries (Guillaume Nault) [1814836]
+- [net] flow_dissector: Parse multiple MPLS Label Stack Entries (Guillaume Nault) [1814836]
+- [netdrv] net/mlx5e: Use generic API to build MPLS label (Alaa Hleihel) [1790220]
+- [netdrv] net/mlx5e: Support pedit on mpls over UDP decap (Alaa Hleihel) [1790220]
+- [netdrv] net/mlx5e: Add support for hw decapsulation of MPLS over UDP (Alaa Hleihel) [1790220]
+- [netdrv] net/mlx5e: Allow to match on mpls parameters (Alaa Hleihel) [1790220]
+- [netdrv] net/mlx5e: Add support for hw encapsulation of MPLS over UDP (Alaa Hleihel) [1790220]
+
+* Fri Jan 15 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-275.el8]
+- [netdrv] net: intel: Remove in_interrupt() warnings (Ken Cox) [1838731]
+- [netdrv] intel-ethernet: clean up W=1 warnings in kdoc (Ken Cox) [1838731]
+- [netdrv] ixgbe: use eth_zero_addr() to clear mac address (Ken Cox) [1838731]
+- [netdrv] ixgbe: Remove unnecessary usages of memset (Ken Cox) [1838731]
+- [netdrv] ixgbe: use generic power management (Ken Cox) [1838731]
+- [netdrv] ixgbe: convert to new udp_tunnel_nic infra (Ken Cox) [1838731]
+- [netdrv] ixgbe: don't clear UDP tunnel ports when RXCSUM is disabled (Ken Cox) [1838731]
+- [netdrv] ixgbe: Cleanup unneeded delay in ethtool test (Ken Cox) [1838731]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Ken Cox) [1838731]
+- [netdrv] net: ethernet: ixgbe: don't call devm_mdiobus_free() (Ken Cox) [1838731]
+- [netdrv] net: ethernet: ixgbe: check the return value of ixgbe_mii_bus_init() (Ken Cox) [1838731]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Ken Cox) [1838731]
+- [netdrv] ixgbe: protect ring accesses with READ- and WRITE_ONCE (Ken Cox) [1838731]
+- [netdrv] ixgbe: Remove unused inline function ixgbe_irq_disable_queues (Ken Cox) [1838731]
+- [netdrv] ixgbe: Use true, false for bool variable in __ixgbe_enable_sriov() (Ken Cox) [1838731]
+- [netdrv] ixgbe: Remove conversion to bool in ixgbe_device_supports_autoneg_fc() (Ken Cox) [1838731]
+- [netdrv] ixgbe: fix signed-integer-overflow warning (Ken Cox) [1838731]
+- [netdrv] ixgbe: Fix XDP redirect on archs with PAGE_SIZE above 4K (Ken Cox) [1838731]
+- [netdrv] ionic: use mc sync for multicast filters (Jonathan Toppins) [1909329]
+- [fs] xfs: always return -ENOSPC on project quota reservation failure (Carlos Maiolino) [1908612]
+- [fs] xfs: group quota should return EDQUOT when prj quota enabled (Carlos Maiolino) [1908612]
+- [pwm] pwm: Add DesignWare PWM Controller Driver (Steve Best) [1783562]
+- [pwm] pwm: Ensure pwm_apply_state() doesn't modify the state argument (Steve Best) [1783562]
+- [net] sched: Mark VLAN_ACT_{POP,PUSH}_ETH as Tech Preview (Guillaume Nault) [1909345]
+- [vfio] vfio/pci: Decouple PCI_COMMAND_MEMORY bit checks from is_virtfn (Claudio Imbrenda) [1903972]
+- [s390] s390/pci: Mark all VFs as not implementing PCI_COMMAND_MEMORY (Claudio Imbrenda) [1903972]
+- [pci] PCI/IOV: Mark VFs as not implementing PCI_COMMAND_MEMORY (Claudio Imbrenda) [1903972]
+- [iommu] s390/pci: adaptation of iommu to multifunction (Claudio Imbrenda) [1903972]
+- [s390] s390/pci: fix leak of DMA tables on hard unplug (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: fix PF/VF linking on hot plug (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: re-introduce zpci_remove_device() (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: fix zpci_bus_link_virtfn() (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: ignore stale configuration request event (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: fix enabling a reserved PCI function (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: create links between PFs and VFs (Claudio Imbrenda) [1853312]
+- [pci] PCI/IOV: Introduce pci_iov_sysfs_link() function (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: removes wrong PCI multifunction assignment (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: Handling multifunctions (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: Adding bus resource (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: adapt events for zbus (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: create zPCI bus (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: define RID and RID available (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: define kernel parameters for PCI multifunction (Claudio Imbrenda) [1853312]
+- [pci] s390/pci: embedding hotplug_slot in zdev (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: Expose new port attribute for PCIe functions (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: Improve handling of unset UID (Claudio Imbrenda) [1853312]
+- [s390] s390/pci: Fix zpci_alloc_domain() over allocation (Claudio Imbrenda) [1853312]
+- [arm64] arm64: insn: Fix two bugs in encoding 32-bit logical immediates (Yauheni Kaliuta) [1900977]
+- [iommu] iommu/amd: Set DTEto represent 512 IRTEs (Jerry Snitselaar) [1897492 1894769]
+- [iommu] iommu/amd: Increase interrupt remapping table limit to 512 entries (Jerry Snitselaar) [1897492 1894769]
+- [tools] selftests: forwarding: Add MPLS L2VPN test (Guillaume Nault) [1861261]
+- [net] sched: act_mpls: Add action to push MPLS LSE before Ethernet header (Guillaume Nault) [1861261]
+- [net] sched: act_vlan: Add {POP,PUSH}_ETH actions (Guillaume Nault) [1861261]
+- [fs] cifs: Fix incomplete memory allocation on setxattr path (Leif Sahlberg) [1903883]
+- [fs] cifs: Fix leak when handling lease break for cached root fid (Leif Sahlberg) [1903883]
+- [fs] Revert "cifs: Fix the target file was deleted when rename failed." (Leif Sahlberg) [1903883]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1903883]
+- [fs] cifs: fix reference leak for tlink (Leif Sahlberg) [1903883]
+- [fs] smb3: fix unneeded error message on change notify (Leif Sahlberg) [1903883]
+- [fs] cifs: remove the retry in cifs_poxis_lock_set (Leif Sahlberg) [1903883]
+- [fs] smb3: fix access denied on change notify request to some servers (Leif Sahlberg) [1903883]
+- [fs] Replace HTTP links with HTTPS ones: CIFS (Leif Sahlberg) [1903883]
+- [fs] cifs: prevent truncation from long to int in wait_for_free_credits (Leif Sahlberg) [1903883]
+- [fs] cifs: Fix the target file was deleted when rename failed (Leif Sahlberg) [1903883]
+- [fs] SMB3: Honor 'posix' flag for multiuser mounts (Leif Sahlberg) [1903883]
+- [fs] SMB3: Honor 'handletimeout' flag for multiuser mounts (Leif Sahlberg) [1903883]
+- [fs] SMB3: Honor lease disabling for multiuser mounts (Leif Sahlberg) [1903883]
+- [fs] SMB3: Honor persistent/resilient handle flags for multiuser mounts (Leif Sahlberg) [1903883]
+- [fs] SMB3: Honor 'seal' flag for multiuser mounts (Leif Sahlberg) [1903883]
+- [fs] cifs: Display local UID details for SMB sessions in DebugData (Leif Sahlberg) [1903883]
+- [fs] cifs: misc: Use array_size() in if-statement controlling expression (Leif Sahlberg) [1903883]
+- [fs] cifs: update ctime and mtime during truncate (Leif Sahlberg) [1903883]
+- [fs] cifs/smb3: Fix data inconsistent when punch hole (Leif Sahlberg) [1903883]
+- [fs] cifs/smb3: Fix data inconsistent when zero file range (Leif Sahlberg) [1903883]
+- [fs] cifs: Fix double add page to memcg when cifs_readpages (Leif Sahlberg) [1903883]
+- [fs] cifs: Fix cached_fid refcnt leak in open_shroot (Leif Sahlberg) [1903883]
+- [fs] smb3: Add debug message for new file creation with idsfromsid mount option (Leif Sahlberg) [1903883]
+- [fs] cifs: fix chown and chgrp when idsfromsid mount option enabled (Leif Sahlberg) [1903883]
+- [fs] smb3: allow uid and gid owners to be set on create with idsfromsid mount option (Leif Sahlberg) [1903883]
+- [fs] smb311: Add tracepoints for new compound posix query info (Leif Sahlberg) [1903883]
+- [fs] smb311: add support for using info level for posix extensions query (Leif Sahlberg) [1903883]
+- [fs] smb311: Add support for lookup with posix extensions query info (Leif Sahlberg) [1903883]
+- [fs] smb311: Add support for SMB311 query info (non-compounded) (Leif Sahlberg) [1903883]
+- [fs] SMB311: Add support for query info using posix extensions (level 100) (Leif Sahlberg) [1903883]
+- [fs] smb3: add indatalen that can be a non-zero value to calculation of credit charge in smb2 ioctl (Leif Sahlberg) [1903883]
+- [fs] smb3: fix typo in mount options displayed in /proc/mounts (Leif Sahlberg) [1903883]
+- [fs] cifs: Add get_security_type_str function to return sec type (Leif Sahlberg) [1903883]
+- [fs] smb3: extend fscache mount volume coherency check (Leif Sahlberg) [1903883]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1903883]
+- [fs] smb3: fix incorrect number of credits when ioctl MaxOutputResponse > 64K (Leif Sahlberg) [1903883]
+- [fs] smb3: remove static checker warning (Leif Sahlberg) [1903883]
+- [fs] cifs: fix minor typos in comments and log messages (Leif Sahlberg) [1903883]
+- [fs] smb3: minor update to compression header definitions (Leif Sahlberg) [1903883]
+- [fs] cifs: minor fix to two debug messages (Leif Sahlberg) [1903883]
+- [fs] cifs: Standardize logging output (Leif Sahlberg) [1903883]
+- [fs] smb3: Add new parm "nodelete" (Leif Sahlberg) [1903883]
+- [fs] cifs: get rid of unused parameter in reconn_setup_dfs_targets() (Leif Sahlberg) [1903883]
+- [fs] cifs: handle hostnames that resolve to same ip in failover (Leif Sahlberg) [1903883]
+- [fs] cifs: set up next DFS target before generic_ip_connect() (Leif Sahlberg) [1903883]
+- [fs] cifs: remove redundant initialization of variable rc (Leif Sahlberg) [1903883]
+- [fs] cifs: handle "nolease" option for vers=1.0 (Leif Sahlberg) [1903883]
+- [fs] cifs: fix leaked reference on requeued write (Leif Sahlberg) [1903883]
+- [fs] cifs: Fix null pointer check in cifs_read (Leif Sahlberg) [1903883]
+- [fs] CIFS: Spelling s/EACCESS/EACCES/ (Leif Sahlberg) [1903883]
+- [fs] cifs: fix uninitialised lease_key in open_shroot() (Leif Sahlberg) [1903883]
+- [fs] cifs: ensure correct super block for DFS reconnect (Leif Sahlberg) [1903883]
+- [fs] cifs: do not share tcons with DFS (Leif Sahlberg) [1903883]
+- [fs] cifs: minor update to comments around the cifs_tcp_ses_lock mutex (Leif Sahlberg) [1903883]
+- [fs] cifs: protect updating server->dstaddr with a spinlock (Leif Sahlberg) [1903883]
+- [fs] smb3: remove overly noisy debug line in signing errors (Leif Sahlberg) [1903883]
+- [fs] cifs: improve read performance for page size 64KB & cache=strict & vers=2.1+ (Leif Sahlberg) [1903883]
+- [fs] cifs: dump the session id and keys also for SMB2 sessions (Leif Sahlberg) [1903883]
+- [fs] smb3: enable swap on SMB3 mounts (Leif Sahlberg) [1903883]
+- [fs] smb3: change noisy error message to FYI (Leif Sahlberg) [1903883]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1903883]
+- [fs] smb3: use SMB2_SIGNATURE_SIZE define (Leif Sahlberg) [1903883]
+- [fs] CIFS: Fix bug which the return value by asynchronous read is error (Leif Sahlberg) [1903883]
+- [fs] CIFS: check new file size when extending file by fallocate (Leif Sahlberg) [1903883]
+- [fs] SMB3: Minor cleanup of protocol definitions (Leif Sahlberg) [1903883]
+- [fs] SMB3: Additional compression structures (Leif Sahlberg) [1903883]
+- [fs] SMB3: Add new compression flags (Leif Sahlberg) [1903883]
+- [fs] cifs: smb2pdu.h: Replace zero-length array with flexible-array member (Leif Sahlberg) [1903883]
+- [fs] cifs: clear PF_MEMALLOC before exiting demultiplex thread (Leif Sahlberg) [1903883]
+- [fs] cifs: cifspdu.h: Replace zero-length array with flexible-array member (Leif Sahlberg) [1903883]
+- [fs] CIFS: Warn less noisily on default mount (Leif Sahlberg) [1903883]
+- [fs] fs/cifs: fix gcc warning in sid_to_id (Leif Sahlberg) [1903883]
+- [fs] cifs: allow unlock flock and OFD lock across fork (Leif Sahlberg) [1903883]
+- [fs] cifs: do d_move in rename (Leif Sahlberg) [1903883]
+- [fs] cifs: add SMB2_open() arg to return POSIX data (Leif Sahlberg) [1903883]
+- [fs] cifs: plumb smb2 POSIX dir enumeration (Leif Sahlberg) [1903883]
+- [fs] cifs: add smb2 POSIX info level (Leif Sahlberg) [1903883]
+- [fs] cifs: rename posix create rsp (Leif Sahlberg) [1903883]
+- [fs] cifs: print warning mounting with vers=1.0 (Leif Sahlberg) [1903883]
+- [fs] smb3: fix performance regression with setting mtime (Leif Sahlberg) [1903883]
+- [fs] cifs: make use of cap_unix(ses) in cifs_reconnect_tcon() (Leif Sahlberg) [1903883]
+- [fs] cifs: use mod_delayed_work() for &server->reconnect if already queued (Leif Sahlberg) [1903883]
+- [fs] cifs: call wake_up(&server->response_q) inside of cifs_reconnect() (Leif Sahlberg) [1903883]
+- [fs] cifs: do not ignore the SYNC flags in getattr (Leif Sahlberg) [1903883]
+- [tools] tools/power/x86/intel-speed-select: Update version for v5.10 (Prarit Bhargava) [1896211]
+- [tools] tools/power/x86/intel-speed-select: Fix missing base-freq core IDs (Prarit Bhargava) [1896211]
+- [tools] tools/power/x86/intel-speed-select: Update version for v5.9 (Prarit Bhargava) [1896211]
+- [tools] tools/power/x86/intel-speed-select: Add retries for mail box commands (Prarit Bhargava) [1896211]
+- [tools] tools/power/x86/intel-speed-select: Add option to delay mbox commands (Prarit Bhargava) [1896211]
+- [tools] tools/power/x86/intel-speed-select: Ignore -o option processing on error (Prarit Bhargava) [1896211]
+- [tools] tools/power/x86/intel-speed-select: Change path for caching topology info (Prarit Bhargava) [1896211]
+- [kernel] perf/core: Fix race in the perf_mmap_close() function (Michael Petlan) [1869925] {CVE-2020-14351}
+- [kernel] perf: Make struct ring_buffer less ambiguous (Michael Petlan) [1869925] {CVE-2020-14351}
+- [arm64] arm64: bpf: Fix branch offset in JIT (Yauheni Kaliuta) [1875342]
+
+* Thu Jan 14 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-274.el8]
+- [hwmon] hwmon: (amd_energy) fix allocation of hwmon_channel_info config (David Arcari) [1911220]
+- [hwmon] hwmon: (amd_energy) Add AMD family 19h model 01h x86 match (David Arcari) [1911220]
+- [hwmon] hwmon: (amd_energy) modify the visibility of the counters (David Arcari) [1911220]
+- [hwmon] hwmon: (amd_energy) Improve the accumulation logic (David Arcari) [1911220]
+- [hwmon] hwmon: (amd_energy) optimize accumulation interval (David Arcari) [1911220]
+- [hwmon] hwmon: (amd_energy) Move label out of accumulation structure (David Arcari) [1911220]
+- [powerpc] powerpc/64s: Remove TM from Power10 features (Gustavo Duarte) [1892471]
+- [netdrv] ionic: start queues before announcing link up (Jonathan Toppins) [1906250]
+- [fs] NFSD: fix missing refcount in nfsd4_copy by nfsd4_do_async_copy (Benjamin Coddington) [1873897]
+- [bluetooth] Bluetooth: btusb: Map Typhoon peak controller to BTUSB_INTEL_NEWGEN (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Add support for Intel Bluetooth Device Typhoon Peak (8087:0032) (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Helper function to download firmware to Intel adapters (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Define a function to construct firmware filename (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Add *setup* function for new generation Intel controllers (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btintel: Fix endianness issue for TLV version information (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btintel: Functions to send firmware header / payload (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btintel: Add infrastructure to read controller information (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btintel: Refactor firmware download function (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Update boot parameter specific to SKU (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Refactor of firmware download flow for Intel conrollers (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Enable Intel events even if already in operational mode (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Configure Intel debug feature based on available support (Gopal Tiwari) [1900356]
+- [bluetooth] Bluetooth: btusb: Add support to read Intel debug feature (Gopal Tiwari) [1900356]
+- [kernel] rcuwait: avoid lockdep splats from rcuwait_active() (Auger Eric) [1903095]
+- [net] udp: fix the proto value passed to ip_protocol_deliver_rcu for the segments (Xin Long) [1879403]
+- [net] udp: fix IP header access and skb lookup on Fast/frag0 UDP GRO (Xin Long) [1879403]
+- [net] udp: fix UDP header access on Fast/frag0 UDP GRO (Xin Long) [1879403]
+- [net] ethtool: add missing NETIF_F_GSO_FRAGLIST feature string (Xin Long) [1879403]
+- [net] fix fraglist segmentation reference count leak (Xin Long) [1879403]
+- [net] udp: initialize is_flist with 0 in udp_gro_receive (Xin Long) [1879403]
+- [include] udp: segment looped gso packets correctly (Xin Long) [1879403]
+- [net] udp: Support UDP fraglist GRO/GSO. (Xin Long) [1879403]
+- [net] Support GRO/GSO fraglist chaining. (Xin Long) [1879403]
+- [net] Add a netdev software feature set that defaults to off. (Xin Long) [1879403]
+- [net] Add fraglist GRO/GSO feature flags (Xin Long) [1879403]
+- [include] udp: Avoid post-GRO UDP checksum recalculation (Xin Long) [1879403]
+- [net] udp: fix GRO packet of death (Xin Long) [1879403]
+- [net] udp: fix GRO reception in case of length mismatch (Xin Long) [1879403]
+- [net] udp: cope with UDP GRO packet misdirection (Xin Long) [1879403]
+- [net] ipv6: factor out protocol delivery helper (Xin Long) [1879403]
+- [net] ip: factor out protocol delivery helper (Xin Long) [1879403]
+- [net] udp: add support for UDP_GRO cmsg (Xin Long) [1879403]
+- [net] udp: implement GRO for plain UDP sockets. (Xin Long) [1879403]
+
+* Wed Jan 13 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-273.el8]
+- [powerpc] powerpc/perf: Fix Threshold Event Counter Multiplier width for P10 (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: Exclude kernel samples while counting events in user space (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: Invoke per-CPU variable access with disabled interrupts (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: MMCR0 control for PMU registers under PMCC=00 (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/64s: Convert some cpu_setup() and cpu_restore() functions to C (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/64: Set up a kernel stack for secondaries before cpu_restore() (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc: Wire up memtest (Desnes Augusto Nunes do Rosario) [1906084]
+- [mm] powerpc/mm: Don't report hugepage tables as memory leaks when using kmemleak (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: Fix to update cache events with l2l3 events in power10 (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: Fix to update generic event codes for power10 (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: Add generic and cache event list for power10 DD1 (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: Fix the PMU group constraints for threshold events in power10 (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: Update the PMU group constraints for l2l3 events in power10 (Desnes Augusto Nunes do Rosario) [1906084]
+- [powerpc] powerpc/perf: Fix to update radix_scope_qual in power10 (Desnes Augusto Nunes do Rosario) [1906084]
+- [nvme] nvme-pci: mark Samsung PM1725a as IGNORE_DEV_SUBNQN (Gopal Tiwari) [1903513]
+- [base] driver: core: Fix list corruption after device_del() (Torez Smith) [1900751]
+- [base] device property: Don't clear secondary pointer for shared primary firmware node (Torez Smith) [1900751]
+- [base] device property: Keep secondary firmware node secondary by type (Torez Smith) [1900751]
+- [of] of: property: Fix create device links for all child-supplier dependencies (Torez Smith) [1900751]
+- [base] drivers/base/test: fix global-out-of-bounds error (Torez Smith) [1900751]
+- [base] driver core: Fix use-after-free and double free on glue directory (Torez Smith) [1900751]
+- [thunderbolt] thunderbolt: Add uaccess dependency to debugfs interface (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Use "if USB4" instead of "depends on" in Kconfig (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Allow KUnit tests to be built also when CONFIG_USB4=m (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: debugfs: Fix uninitialized return in counters_write() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add debugfs interface (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: cdc-acm: Add DISABLE_ECHO for Renesas USB Download mode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Report power supply changes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: hisilicon: fix refercence leak in xhci_histb_probe (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add support for Intel Tiger Lake-H (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: apple-mfi-fastcharge: fix reference leak in apple_mfi_fc_set_property (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Only configure USB4 wake for lane 0 adapters (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Fix memory leak if ida_simple_get() fails in enumerate_services() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add Telit FN980 composition 0x1055 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add LE910Cx compositions 0x1203, 0x1230, 0x1231 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cyberjack: fix write-URB completion race (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Add NO_LPM quirk for Kingston flash drive (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Don't create stream debugfs files with spinlock held (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: Workaround for S3 issue on AMD SNPS 3.0 xHC (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix sizeof() mismatch (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: stusb160x: fix signedness comparison issue with enum variables (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: add missing MODULE_DEVICE_TABLE() to stusb160x (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usbcore: Check both id_table and match() when both available (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: stusb160x: fix an IS_ERR() vs NULL check in probe (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: reset hard_reset_count for any disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: cdc-acm: fix cooldown mechanism (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: fix kernel-doc markups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: stusb160x: fix some signedness bugs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add Quectel EC200T module support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add the missed ida_simple_remove() in ring_request_msix() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [documentation] usb: docs: document altmode register/unregister functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Add QCOM PMIC typec detection driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add Cellient MPL200 card (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci_maxim: Add support for Sink FRS (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci: Implement callbacks for FRS (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: tcpm: Add support for Sink Fast Role SWAP(FRS) (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci_maxim: Chip level TCPC driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci: Add set_vbus tcpci callback (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci: Add a getter method to retrieve tcpm_port reference (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: cdc-acm: add quirk to blacklist ETAS ES58X devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: use cur_altsetting for consistency (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: Add Telit FT980-KS composition (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: remove polling for /sys/kernel/debug/usb/devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: add support for STUSB160x Type-C controller family (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: add typec_find_pwr_opmode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: hd3ss3220: Use OF graph API to get the connector fwnode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-wdm: Make wdm_flush() interruptible and add wdm_fsync() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: displayport: Reduce noise from the driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: hub: Add Kconfig option to reduce number of port initialization retries (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: hub: Clean up use of port initialization schemes and retries (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: qcserial: fix altsetting probing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: clean up jtag quirks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: pl2303: add device-id for HP GC device (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: add support for FreeCalypso JTAG+UART adapters (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-acm: clean up no-union-descriptor handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-acm: use common data-class define (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-acm: handle broken union descriptors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] Revert "cdc-acm: hardening against malicious devices" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usbcore/driver: Accommodate usbip (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] PM: core: introduce pm_ptr() macro (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [kernel] sched: Provide sched_set_fifo() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usbcore/driver: Fix incorrect downcast (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usbcore/driver: Fix specific driver selection (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [sound] USB: correct API of usb_control_msg_send/recv in sound driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: correct API of usb_control_msg_send/recv (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] Revert "USB: legousbtower: use usb_control_msg_recv()" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] Revert "USB: core: hub.c: use usb_control_msg_send() in a few places" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: pci-quirks: convert to readl_poll_timeout_atomic() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: early: ehci-dbgp: convert to readl_poll_timeout_atomic() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: early: convert to readl_poll_timeout_atomic() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: appledisplay: use module_usb_driver to simplify the code (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: add debugfs support for ep with stream (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: don't create endpoint debugfs entry before ring buffer is set (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Tune interrupt blocking for isochronous transfers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: omit duplicate actions when suspending a runtime suspended host (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: improve the comments for xhci_plat_suspend (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: add wakeup entry at sysfs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: add priv quirk for skip PHY initialization (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: delete the unnecessary code (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: add .suspend_quirk for struct xhci_plat_priv (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: add platform data support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-acm: cleanup of data structures (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: adutux: fix debugging (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usblp: fix race between disconnect() and read() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: don't inherity DMA properties for USB devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] ehci-hcd: Move include to keep CRC stable (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Only stop control channel when entering freeze (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Capitalize comment on top of QUIRK_FORCE_POWER_LINK_CONTROLLER (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Correct tb_check_quirks() kernel-doc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Log correct zeroX entries in decode_error() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Handle ERR_LOCK notification (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Handle SCU IPC error conditions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: quirks: Add USB_QUIRK_IGNORE_REMOTE_WAKEUP quirk for BYD zhaoxin notebook (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci: update ROLE_CONTROL for DRP (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci: Add support when hidden tx registers are inaccessible (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci: Add register definitions to tcpci (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: UAS: use macro for reporting results (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Pass correct USB Type-C port number to SoC (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Add dependency on ACPI (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: microtek: use set_host_byte() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: UAS: fix disconnect by unplugging a hub (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Prevent mode overrun (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: acpi: Increase command completion timeout value (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: use usb_control_msg_recv() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: hub.c: use usb_control_msg_send() in a few places (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: message.c: use usb_control_msg_send() in a few places (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb typec: mt6360: Add support for mt6360 Type-C driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: ehci-sched: Remove ununsed function tt_start_uframe() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: ohci: Make distrust_firmware param default to false (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: ohci: Default to per-port over-current protection (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Retry DROM read once if parsing fails (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Support for device role (UFP) (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Check the port status before connect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Do not configure SBU and HSL Orientation in Alternate modes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Do not configure Altmode HPD High (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] device connection: Remove struct device_connection (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] uas: bump hw_max_sectors to 2048 blocks for SS or faster drives (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] uas: fix sdev->host->dma_dev (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-storage: fix sdev->host->dma_dev (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb/host: ehci-npcm7xx: Use pm_ptr() macro (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb/misc: usb3503: Use pm_ptr() macro (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb/misc: usb4604: Use pm_ptr() macro (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: driver: fix stray tabs in error messages (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: acpi: Check the _DEP dependencies (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: fix slab-out-of-bounds Read in read_descriptors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: Fix out of sync data toggle if a configured device is reconfigured (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Un-register the USB role switch (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Introduce tb_switch_is_ice_lake() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Introduce tb_switch_is_tiger_lake() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Check for Intel vendor ID when identifying controller (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Introduce tb_port_is_nhi() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Create device links from ACPI description (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: No need to warn in TB_CFG_ERROR_INVALID_CONFIG_SPACE (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Introduce tb_switch_next_cap() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Introduce tb_port_next_cap() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Move struct tb_cap_any to tb_regs.h (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add runtime PM for Software CM (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [pci] PCI / thunderbolt: Switch to use device links instead of PCI quirk (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Enable wakes from system suspend (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Tear down DP tunnels when suspending (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Disable lane 1 for XDomain connection (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Configure port for XDomain (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Set port configured for both ends of the link (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Configure link after lane bonding is enabled (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Do not change default USB4 router notification timeout (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Initialize TMU again on resume (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Send reset only to first generation routers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Do not program NFC buffers for USB4 router protocol adapters (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Optimize NHI LC mailbox command processing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Optimize Force Power logic (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Software CM only should set force power in Tiger Lake (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Use bit 31 to check if Firmware CM is running in Tiger Lake (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: No need to log an error if tb_switch_lane_bonding_enable() fails (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Use kobj_to_dev() instead of container_of() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: support dynamic Quectel USB compositions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add support for SIM7070/SIM7080/SIM7090 modules (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Migrate workqueue to RT priority for processing events (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: pd: Fix formatting in pd.h header (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: During PR_SWAP, source caps should be sent only after tSwapSourceStart (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usblcd: Remove the superfluous break (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: storage: Add unusual_uas entry for Sony PSZ drives (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Ignore UAS for JMicron JMS567 ATA/ATAPI Bridge (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: quirks: Ignore duplicate endpoint on Sound Devices MixPre-D (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: atm: don't use snprintf() for sysfs attrs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Fix Fix source hard reset response for TDA 2.3.1.1 and TDA 2.3.1.2 failures (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Use maximum USB3 link rate when reclaiming if link is not up (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add USB3 bandwidth management (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Disable ports that are not implemented (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: add IDs for Xsens Mti USB converter (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Always restore EP_SOFT_CLEAR_TOGGLE even if ep reset failed (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Do warm-reset when both CAS and XDEV_RESUME are set (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci: fix ep context print mismatch in debugfs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: uas: Add quirk for PNY Pro Elite (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Better name for __check_usb_generic() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Fix device driver race (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Also match device drivers using the ->match vfunc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: fix tegra_xusb_get_phy() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: otg usb2/usb3 port init (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: pci-quirks: Bypass xHCI quirks for Raspberry Pi 4 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [firmware] Revert "USB: pci-quirks: Add Raspberry Pi 4 quirk" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci-pci: Add support for reset controllers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: Solve race condition in anchor cleanup functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: usb-conn-gpio: Print error on failure to get VBUS (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: usb-conn-gpio: Make VBUS supply optional (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: yurex: remove needless check before usb_free_coherent() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: remove a duplicated entry (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: storage: isd200: fix spelling mistake "removeable" -> "removable" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci-mtk: Fix typo (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: hcd: Fix use after free in usb_hcd_pci_remove() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Hold con->lock for the entire duration of ucsi_register_port() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Rework ppm_lock handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Fix 2 unlocked ucsi_run_command calls (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Fix AB BA lock inversion (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: lvtest: return proper error code in probe (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-acm: rework notification_buffer resizing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: quirks: Add no-lpm quirk for another Raydium touchscreen (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: yurex: Fix bad gfp argument (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: merge fix for kunix_resource changes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: usb-conn-gpio: Register charger (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: Fix ASMedia ASM1142 DMA addressing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: define IDs for various ASMedia host controllers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Simplify USB ID table match (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Add WARN_ON ensure we are not trying to send 2 VDM packets at the same time (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Fix AB BA lock inversion between tcpm code and the alt-mode drivers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Refactor tcpm_handle_vdm_request (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Refactor tcpm_handle_vdm_request payload handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Add tcpm_queue_vdm_unlocked() helper (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Move mod_delayed_work(&port->vdm_state_machine) call into tcpm_queue_vdm() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Make function xhci_dbc_ring_alloc() static (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbgtty: Make some functions static (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Add device link support for pinctrl-0 through pinctrl-8 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Add device link support for multiple DT bindings (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: iowarrior: fix up report size handling for some devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: remove tty specific port structure from struct xhci_dbc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbgcap: remove dbc dependency on dbctty specific flag (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Add a operations structure to access driver functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbctty: split dbc tty driver registration and unregistration functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: remove endpoint pointers from dbc_port structure (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: simplify dbc requests allocation and queueing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Pass dbc pointer to dbc start and stop functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Pass dbc pointer to dbc memory init and cleanup functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: don't use generic xhci ring allocation functions for dbc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Don't use generic xhci context allocation for dbc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Use dbc structure in the request completion instead of xhci_hcd (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Pass dbc pointer to get_in/out_ep() helper functions to get endpoints (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbgtty: Pass dbc pointer when registering a dbctty device (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Pass dbc pointer to dbc_handle_xfer_event() instead of xhci_hcd pointer (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Change to pass dbc pointer to xhci_do_dbc_stop() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Pass dbc pointer to endpoint init and exit functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Get the device pointer from dbc structure in dbc_ep_do_queue() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Don't pass the xhci pointer as a parameter to xhci_dbc_init_context() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Don't use xhci_write_64() as it takes xhci as a parameter (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Use dev_info() and similar instead of xhci_info() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Add device pointer to dbc structure (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Remove dbc_dma_free_coherent() wrapper (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Remove dbc_dma_alloc_coherent() wrapper (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Don't use generic xhci erst allocation and free functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Don't pass struct xhci_hcd pointer to xhci_link_seg() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: dbc: Don't use generic xhci inc_deq() function for dbc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Make debug message consistent with bus and port number (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: tegra: Fix allocation for the FPCI context (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usbfs: stop using compat_alloc_user_space (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: Fix ASM2142/ASM3142 DMA addressing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci-mtk: fix the failure of bandwidth allocation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: appledisplay: remove needless check before usb_free_coherent() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usbtest: reduce stack usage in test_queue (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Stay in BIST mode till hardreset or unattached (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci: Support BIST test data mode for compliance (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Support bist test data mode for compliance (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Error handling for tcpm_register_partner_altmodes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Comment correction for typec_partner_register_altmode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Avoid connect request on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: fix quirks_param_set() writing to a const pointer (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: hcd: Try MSI interrupts on PCI devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: qcserial: add EM7305 QDL product ID (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: iuu_phoenix: fix led-activity helpers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: iuu_phoenix: fix memory corruption (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: sisusbvga: Move static const tables out to different include file (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: sisusbvga: sisusb_init: Remove genunine unused static const arrays (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: class: cdc-wdm: Provide description for usb_cdc_wdm_register()'s manage_power arg (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: linux/usb/serial.h: drop duplicated word in comment (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: linux/usb/pd_vdo.h: drop duplicated word in comment (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: linux/usb.h: drop duplicated word in comment (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Remove pci-dma-compat wrapper APIs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: sisusbvga: Fix a potential UB casued by left shifting a negative value (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ohci: Replace HTTP links with HTTPS ones (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Replace HTTP links with HTTPS ones (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: Replace HTTP links with HTTPS ones (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: sierra: clean up special-interface handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cp210x: use in-kernel types in port data (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cp210x: drop unnecessary packed attributes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cp210x: add support for TIOCGICOUNT (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cp210x: add support for line-status events (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cp210x: disable interface on errors in open (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: OHCI: Use fallthrough pseudo-keyword (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: Use fallthrough pseudo-keyword (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: Use fallthrough pseudo-keyword (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: storage: replace HTTP links with HTTPS ones (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: Do not define 'struct acpi_device_id' when !CONFIG_ACPI (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: early: xhci-dbc: File headers are not good candidates for kerneldoc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: early: xhci-dbc: Supply missing 'xhci-dbgp.h' headerfile (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: early: ehci-dbgp: Remove set but never checked variable 'ret' (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: ucsi: Staticify and stop export of ucsi_init() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: legousbtower: Demote function header which is clearly not kerneldoc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: legousbtower: Demote obvious misuse of kerneldoc to standard comment blocks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: ldusb: Demote obvious misuse of kerneldoc to standard comment blocks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: iowarrior: Demote obvious misuse of kerneldoc to standard comment blocks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: iowarrior: Fix odd corruption issue in the file header (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: fusb302: Use 'gnu_printf' format notation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: altmodes: displayport: Supply missing displayport.h include file (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: altmodes: displayport: File headers are not good candidates for kerneldoc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: storage: alauda: Remove set but unchecked variable (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-debugfs: Use 'gnu_printf' format notation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-dbgtty: File headers are not good candidates for kerneldoc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-dbgcap: File headers are not good candidates for kerneldoc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-mem: Demote obvious misuse of kerneldoc to standard comment block (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci: Demote obvious misuse of kerneldoc to standard comment block (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: adutux: Demote obvious misuse of kerneldoc to standard comment blocks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: atm: ueagle-atm: Demote obvious misuse of kerneldoc to standard comment blocks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: ledtrig-usbport: Demote obvious misuse of kerneldoc to standard comment blocks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: drop redundant transfer-buffer casts (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] USB: serial: drop extern keyword from function declarations (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] USB: serial: drop unnecessary sysrq include (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: add sysrq break-handler dummy (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: inline sysrq dummy function (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: only process sysrq when enabled (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: only set sysrq timestamp for consoles (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: fix break and sysrq handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: clean up receive processing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: make process-packet buffer unsigned (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: use fallthrough pseudo-keyword (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add Quectel EG95 LTE modem (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: fix missing simulated-break margin (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cp210x: re-enable auto-RTS on open (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cp210x: enable usb generic throttle/unthrottle (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: simulate break condition if not supported (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: class: usbtmc: File headers are not good candidates for kerneldoc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: ohci: Mark cc_to_error as __maybe_unused (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: ulpi: Fix a few kerneldoc related issues (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: usb-conn-gpio: Demote comment block which is clearly not kerneldoc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: debug: Demote comment blocks which are obviously not kerneldoc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: pci-quirks: Demote function header from kerneldoc to comment block (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] USB: Fix up terminology in include files (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Fix old style declaration warning (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: console: add support for flow control (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: quatech2: drop two stub functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: kobil_sct: log failure to update line settings (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: keyspan_pda: drop unused firmware reset status (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: iuu_phoenix: drop unused URB submission results (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: garmin_gps: don't compile unused packet definitions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Add support for USB4 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Definitions for response status bits (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: Add data structure for Enter_USB message (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: Combine the definitions for Accessory and USB modes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Fix up terminology (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: fix kernel-doc warnings and formatting in <linux/usb.h> (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add support for authenticate on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add support for separating the flush to SPI and authenticate (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Ensure left shift of 512 does not overflow a 32 bit int (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: add min and max line-speed macros (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: name prescaler, divisor registers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Poll for U0 after disabling USB2 LPM (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Return if xHCI doesn't support LPM (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-mtk: avoid runtime suspend when removing hcd (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix enumeration issue when setting max packet size for FS devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix incorrect EP_STATE_MASK (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: add new Product ID for CH340 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add GosunCn GM500 series (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cypress_m8: enable Simply Automated UPB PIM (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add support for on-board retimers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Implement USB4 port sideband operations for retimer access (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Split common NVM functionality into a separate file (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Retry USB4 block read operation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Generalize usb4_switch_do__data() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add Intel USB-IF ID to the NVM upgrade supported list (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Increase DP DPRX wait timeout (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Make tb_port_get_link_speed() available to other files (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Handle incomplete PCIe/USB3 paths correctly in discovery (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Increase path length in discovery (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add KUnit tests for tunneling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add KUnit tests for path walking (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add DP IN resources for all routers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Report consumed bandwidth in both directions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Make usb4_switch_map_pcie_down() also return enabled ports (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Make usb4_switch_map_usb3_down() also return enabled ports (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Do not tunnel USB3 if link is not USB4 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Implement USB3 bandwidth negotiation routines (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Check that both ports are reachable when allocating path (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Make tb_path_alloc() work with tree topologies (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Make tb_next_port_on_path() work with tree topologies (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Fix path indices used in USB3 tunnel discovery (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [netdrv] thunderbolt: Get rid of E2E workaround (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: NHI can use HopIDs 1-7 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: No need to warn if NHI hop_count != 12 or hop_count != 32 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Build initial XDomain property block upon first connect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: OTG: rename product list of devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: storage: scsi: fix up comment to be more specific (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: storage: fix wording in error message (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: sierra: unify quirk handling logic (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: qcserial: fix up wording in a comment (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: OHCI: remove obsolete FIXME comment (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: rename USB OTG hub configuration option (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: rename USB quirk to USB_QUIRK_ENDPOINT_IGNORE (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [uapi] USB: replace hardcode maximum usb string length by definition (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci_rt1711h: avoid screaming irq causing boot hangs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usbtest: fix missing kfree(dev->buf) in usbtest_disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ehci: reopen solution for Synopsys HC bug (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] cdc-acm: Add DISABLE_ECHO quirk for Microchip/SMSC chip (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: add USB_QUIRK_DELAY_INIT for Logitech C922 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: intel_pmc_mux: Fix DP alternate mode entry (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: sisusbvga: change char to u8 for sisusb_copy_memory (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: sisusb_con: Use array_size() helper in memcpy() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: tegra: Remove PLL power supplies (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] drivers: usb: Fix trivial spelling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: additional Device Classes to debug/usb/devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Improve USB4 config symbol help text (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: kcov: collect coverage from usb complete callback (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: get rid of pointless access_ok() calls (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: fix lockup of devices with limited prescaler (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: add basis for quirk detection (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] CDC-ACM: heed quirk also in error handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add Telit LE910C1-EUX compositions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: qcserial: add DW5816e QDL support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add trivial .shutdown (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Ensure USB_ROLE_SWITCH is set as a dependency for tps6598x (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: make symbols static (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: usb_wwan: do not resubmit rx urb on fatal errors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb/xhci-plat: Set PM runtime as active on resume (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: Add support for Renesas controller with memory (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: renesas-xhci: Add the renesas xhci driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: hci: add hc_driver as argument for usb_hcd_pci_probe (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: hub: limit HUB_QUIRK_DISABLE_AUTOSUSPEND to USB5534B (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usbfs: fix mmap dma mismatch (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: keep runtime active when removing host (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: Fix NULL pointer dereference when enqueuing trbs from urb sg list (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Update Kconfig to allow building on other architectures (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: intel: Fix DP_HPD_LVL bit field (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: ehci: Add new EHCI driver for Broadcom STB SoC's (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: xhci-plat: Add support for Broadcom STB SoC's (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tps6598x: Add USB role switching logic (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tps6598x: Add OF probe binding (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: Switch on role-switch uevent reporting (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: intel_pmc_mux: Support for static SBU/HSL orientation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Add typec_find_orientation() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usblp: poison URBs upon disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] sierra-ms: do not call scsi_get_host_dev() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [firmware] USB: pci-quirks: Add Raspberry Pi 4 quirk (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] thunderbolt: Replace zero-length array with flexible-array (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usbfs: correct kernel->user page attribute mismatch (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: intel_pmc_mux: Fix the property names (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: intel: Handle alt mode HPD_HIGH (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: Fix misleading driver bug report (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: qcserial: Add DW5816e support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: uas: add quirk for LaCie 2Big Quadra (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Do not link to disabled devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Check return value of tb_sw_read() in usb4_switch_op() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: hub: use true, false for bool variable (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Fix the stub for ucsi_register_port_psy() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: Convert the Intel PMC Mux driver to use new SCU IPC API (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: register with power_supply class (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: save power data objects in PD mode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Correct bit-mask for CCI (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: replace magic numbers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Workaround for missed op_mode change (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: set USB data role when partner type is power cable/ufp (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Storage: Use the correct style for SPDX License Identifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: Replace an empty statement with a debug message (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb/early: remove unused including <linux/version.h> (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: pci-quirks: use true, false for bool variables (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: typec: Use the correct style for SPDX License Identifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: sisusbvga: Change port variable from signed to unsigned (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-storage: Add unusual_devs entry for JMicron JMS566 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: hub: Revert commit bd0e6c9614b9 ("usb: hub: try old enumeration scheme first for high speed devices") (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: hub: Fix handling of connect changes during sleep (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add support for Intel Tiger Lake (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: altmode: Fix typec_altmode_get_partner sometimes returning an invalid pointer (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: Use the correct style for SPDX License Identifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: garmin_gps: add sanity checking for data length (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Don't clear hub TT buffer on ep0 protocol stall (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: prevent bus suspend if a roothub port detected a over-current condition (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix handling halted endpoint even if endpoint ring appears empty (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [gpio] usb: fusb302: Convert to use GPIO descriptors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Add USB_QUIRK_DELAY_CTRL_MSG and USB_QUIRK_DELAY_INIT for Corsair K70 RGB RAPIDFIRE (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Ignore CC and vbus changes in PORT_RESET change (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] cdc-acm: introduce a cool down (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] cdc-acm: close race betrween suspend() and acm_softint (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] UAS: fix deadlock in error handling and PM flushing work (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] UAS: no use logging any details in case of ENODEV (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: pi3usb30532: Set switch_ / mux_desc name field to NULL (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: early: Handle AMD's spec-compliant identifiers, too (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: Fix free-while-in-use bug in the USB S-Glibrary (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: misc: Use the correct style for SPDX License Identifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: host: Use the correct style for SPDX License Identifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: early: Use the correct style for SPDX License Identifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: Use the correct style for SPDX License Identifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] Revert "thunderbolt: Prevent crash if non-active NVMem file is read" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Add device link support for extcon (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-acm: restore capability check order (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Correct the documentation for typec_cable_put() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: io_edgeport: fix slab-out-of-bounds read in edge_interrupt_callback (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add Wistron Neweb D19Q1 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add BroadMobi BM806U (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add support for ASKEY WWHC050 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: Add ACPI support for USB interface devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci-tegra: Add OTG support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: f81232: add control driver for F81534A (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-acm: fix rounding error in TIOCSSERIAL (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cdc-acm: fix close_delay and closing_wait units in TIOCSSERIAL (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: quirks: add NO_LPM quirk for RTL8153 based ethernet adapters (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: atm: Use the correct style for SPDX License Identifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci-pci: Allow host runtime PM as default for Intel Tiger Lake xHCI (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Finetune host initiated USB3 rootport link suspend and resume (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Wait until link state trainsits to U0 after setting USB_SS_PORT_LS_U0 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Ensure link state is U3 after setting USB_SS_PORT_LS_U3 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Tegra186/Tegra194 LPM (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: Enable LPM for VIA LABS VL805 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Show host status when watchdog triggers and host is assumed dead (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Add a separate debug message for split transaction errors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: bail out early if driver can't accress host in resume (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: pl2303: add device-id for HP LD381 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add ME910G1 ECM composition 0x110b (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: mon: Use scnprintf() for avoiding potential buffer overflow (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi_ccg: workaround for NVIDIA test device (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: add a shutdown (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: displayport: Fix a potential race during registration (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: displayport: Fix NULL pointer dereference (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Disable LPM on WD19's Realtek Hub (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Use scnprintf() for avoiding potential buffer overflow (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: fix tty cleanup-op kernel-doc (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: clean up carrier-detect helper (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: apply XHCI_SUSPEND_DELAY to AMD XHCI controller 1022:145c (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Delete of_devlink kernel commandline option (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: driver for Intel PMC mux control (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: Add definitions for Thunderbolt 3 Alternate Mode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: Allow the role switches to be named (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: Provide the switch drivers handle to the switch in the API (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: Leave the private driver data pointer to the drivers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: Allow the mux handles to be requested with fwnode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: Add helpers for setting the mux state (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: Allow the muxes to be named (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: port: do error out if usb_autopm_get_interface() fails (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: hub: do error out if usb_autopm_get_interface() fails (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: hub: fix unhandled return by employing a void function (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: storage: Add quirk for Samsung Fit flash (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: quirks: add NO_LPM quirk for Logitech Screen Share (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usb251xb: fix regulator probe and error handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Add sysfs node to show cc orientation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: move to SNK_UNATTACHED if sink removed for DRP (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Add device link support for power-domains and hwlocks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: f81232: set F81534A serial port with RS232 mode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: f81232: add F81534A support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: f81232: use devm_kzalloc for port data (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: f81232: add tx_empty function (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: f81232: extract LSR handler (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-pci: remove useless cast for driver.name (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: uhci-pci: remove useless cast for driver.name (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: ohci-pci: remove useless cast for driver.name (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: ehci-pci: remove useless cast for driver.name (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: Use ACPI_SUCCESS() at appropriate places (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: Make use of acpi_evaluate_object() status (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-storage: Use const to reduce object data size (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: ucsi: ccg: disable runtime pm during fw flashing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: register DP only for NVIDIA DP VDO (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: misc: iowarrior: add support for the 100 device (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Add missing annotation for xhci_enter_test_mode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Add missing annotation for xhci_set_port_power() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Do not open code __print_symbolic() in xhci trace events (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: use kobj_to_dev() API (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: Add missing kernel-doc parameter descriptions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: set correct data role for non-DRD (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: icm: Replace zero-length array with flexible-array member (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [thunderbolt] thunderbolt: eeprom: Replace zero-length array with flexible-array member (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: apple-mfi-fastcharge: don't probe unhandled devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: apple-mfi-fastcharge: fix endianess issue in probe (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Add driver to control USB fast charge for iOS devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Fallback to generic driver when specific driver fails (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Select better matching USB drivers when available (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Implement usb_device_match_id() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Make it possible to "subclass" usb_device_driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Export generic USB device driver functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: atm: Replace zero-length array with flexible-array member (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: Drop support for device name matching (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: altmode: Remove the notification chain (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: Fix the description of struct typec_capability (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Allow power role swapping even without USB PD (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Hide the port_type attribute when it's not supported (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Make the attributes read-only when writing is not possible (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: misc: iowarrior: add support for the 28 and 28L devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: misc: iowarrior: add support for 2 OEMed devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Fix novation SourceControl XL after suspend (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix memory leak when caching protocol extended capability PSI tables - take 2 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] Revert "xhci: Fix memory leak when caching protocol extended capability PSI tables" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: remove redundant assignment to variable num (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: host: ehci-platform: add a quirk to avoid stuck (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: clean up endpoint-descriptor parsing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: quirks: blacklist duplicate ep on Sound Devices USBPre2 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: add endpoint-blacklist quirk (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [uapi] usb: charger: assign specific number for enum value (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: hub: Don't record a connect-change event during reset-resume (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: uas: fix a plug & unplug racing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: hub: Fix the broken detection of USB3 device in SMSC hub (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: apply XHCI_PME_STUCK_QUIRK to Intel Comet Lake platforms (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: fix runtime pm enabling for quirky Intel hosts (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix memory leak when caching protocol extended capability PSI tables (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Force Maximum Packet size for Full-speed bulk devices to valid range (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: digi_acceleport: remove redundant assignment to pointer priv (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: relax unthrottle memory barrier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: fix receiver regression (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ir-usb: Silence harmless uninitialized variable warning (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: cyberjack: fix spelling mistake "To" -> "Too" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ir-usb: simplify endpoint check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ir-usb: make set_termios synchronous (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ir-usb: fix IrLAP framing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ir-usb: fix link-speed handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ir-usb: add missing endpoint sanity check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fusb302: fix "op-sink-microwatt" default that was in mW (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: wcove: fix "op-sink-microwatt" default that was in mW (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpci: mask event interrupts when remove driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: set MODULE_FIRMWARE for tegra186 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usbfs: Always unlink URBs in reverse order (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: quatech2: handle unbound ports (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: keyspan: handle unbound ports (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: io_edgeport: add missing active-port sanity check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: io_edgeport: handle unbound ports on URB completion (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: handle unbound port at reset_resume (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: garmin_gps: Use flexible-array member (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: opticon: stop all I/O on close() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: opticon: add chars_in_buffer() implementation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: suppress driver bind attributes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add support for Quectel RM500Q in QDL mode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: hub: Improved device recognition on remote wakeup (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: phy-generic: Delete unused platform data (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: opticon: fix control-message timeouts (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: Add support for Quectel RM500Q (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: simple: Add Motorola Solutions TETRA MTP3xxx and MTP85xx (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: ulpi: Add resource-managed variant of otg_ulpi_create() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: Provide definitions for the USB modes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Give the mux drivers all the details regarding the port state (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: Add definitions for the latest specification releases (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: Add the Product Type VDOs to struct usb_pd_identity (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: pd: Add definition for DFP and UFP1 VDOs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: pd: Add definitions for the Enter_USB message (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: More API for cable handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Add parameter for the VDO to typec_altmode_enter() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Block mode entry if the port has the mode disabled (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: fix spelling mistake "connetor" -> "connector" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: missing parentheses in USE_NEW_SCHEME (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Fix the notification bit offsets (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Actually enable all the interface notifications (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fix non-kernel-doc comments (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Fix: Don't skip endpoint descriptors with maxpacket=0 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB-PD tcpm: bad warning+size, PPS adapters (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usb3503: Convert to use GPIO descriptors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: add support for separate DP altmode devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Store the notification mask (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: mtk-xhci: Do not explicitly set the DMA mask (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: fix check for duplicate endpoints (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add ZLP support for 0x1bc7/0x9010 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: Fix build warning seen with CONFIG_PM=n (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fusb302: Fix an undefined reference to 'extcon_get_state' (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: EHCI: Do not return -EPIPE when hub is disconnected (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add Telit ME910G1 0x110a composition (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: make sure interrupts are restored to correct state (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: handle some XHCI_TRUST_TX_LENGTH quirks cases as default behaviour (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Increase STS_HALT timeout in xhci_suspend() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: only set D3hot for pci device (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: fix USB3 device initiated resume race with roothub autosuspend (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix memory leak in xhci_add_in_port() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Fix incorrect DMA allocations for local memory pool drivers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: idmouse: fix interface sanity checks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: adutux: fix interface sanity check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: atm: ueagle-atm: add missing endpoint check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: io_edgeport: fix epic endpoint lookup (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: mon: Fix a deadlock in usbmon between mmap and read (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: usb-conn-gpio: Don't log an error on probe deferral (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: urb: fix URB structure initialization function (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fix use after free in typec_register_port() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: fix a potential use after free (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Implement basic ELPG support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Add XUSB controller context (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Add support for XUSB context save/restore (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Enable runtime PM as late as possible (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Reuse stored register base address (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Extract firmware enable helper (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Use CNR as firmware ready indicator (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Avoid a fixed duration sleep (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Separate firmware request and load (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Fix "tega" -> "tegra" typo (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: drop comment about 2 uhci drivers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb, kcov: collect coverage from hub_event (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Add device link support for interrupt-parent, dmas and -gpio(s) (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: serial: Fix Kconfig indentation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: misc: Fix Kconfig indentation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Add device link support for "iommu-map" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Fix the semantics of of_is_ancestor_of() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-storage: Disable UAS on JMicron SATA enclosure (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: uas: heed CAPACITY_HEURISTICS (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: uas: honor flag to avoid CAPACITY16 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Correct phy enable sequence (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-serial: cp201x: support Mark-10 digital force gauge (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Remove tcpc_config configuration mechanism (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci-pci: Allow host runtime PM as default also for Intel Ice Lake xHCI (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci: Support running urb giveback in tasklet context (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Add tracing for xhci doorbell register writes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci: update event ring dequeue pointer on purpose (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Fix documentation for out values (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add support for Foxconn T77W968 LTE modules (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] driver core: Clarify documentation for fwnode_operations.add_links() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: drop port open flag (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: drop read-urb check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: drop port driver data accessors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: drop serial struct accessor (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: drop paranoid serial checks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: drop paranoid port checks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: drop redundant urb context check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: rip out broken interrupt handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: fix probe error handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: document MCS7810 detection hack (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: clean up device-type handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: fix remote wakeup (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7720: fix remote wakeup (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: chaoskey: fix error case of a timeout (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add support for DW5821e with eSIM support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] appledisplay: fix error handling in the scheduled work (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop superfluous newlines (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop superfluous brackets (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: clean up runaway white space (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop redundant endianness comments (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop unnecessary packed attributes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: clean up pointer declarations in driver data (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: remove tower_abort_transfers() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: stop interrupt-out URB unconditionally (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop redundant interrupt-in running flag (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop noisy disconnect messages (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop redundant open_count check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: zero driver data at allocation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop redundant NULL check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: drop redundant MODULE_LICENSE ifdef (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: idmouse: clean up runaway white space (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: idmouse: drop redundant open-count check from release (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: idmouse: simplify disconnect handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: Allow USB device to be warm reset in suspended state (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Add device link support for iommus, mboxes and io-channels (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Make it easy to add device links from DT properties (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: mos7840: add USB ID to support Moxa UPort 2210 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Optimise ucsi_unregister() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: New error codes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Remove all bit-fields (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Remove struct ucsi_control (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Remove the old API (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: ccg: Move to the new API (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: acpi: Move to the new API (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Simplified registration and I/O API (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: hd3ss3220: Give the connector fwnode to the port device (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: typec: Remove unused members from struct typec_capability (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Remove the callback members from struct typec_capability (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: hd3ss3220: Start using struct typec_operations (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: Start using struct typec_operations (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tps6598x: Start using struct typec_operations (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Start using struct typec_operations (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Separate the operations vector (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Introduce typec_get_drvdata() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Copy everything from struct typec_capability during registration (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usb251xb: Add support for USB2422 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usb251xb: Drop some unused defines (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: Add usb_role_switch_find_by_fwnode() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ch341: reimplement line-speed handling (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: Remove redundant vmap checks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: whiteheat: fix line-speed endianness (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: whiteheat: fix potential slab corruption (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] UAS: Revert commit 3ae62a42090f ("UAS: fix alignment of scatter/gather segments") (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-storage: Revert commit 747668dbc061 ("usb-storage: Set virt_boundary_mask to avoid SG overflows") (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: fix __le32/__le64 accessors in debugfs code (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: fix Immediate Data Transfer endianness (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix use-after-free regression in xhci clear hub TT implementation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ldusb: fix control-message timeout (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ldusb: use unsigned size format specifiers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ldusb: fix ring-buffer locking (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Skip endpoints with 0 maxpacket length (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: pl2303: add support for PL2303HXN (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ldusb: fix read info leaks (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] driver: core: Improve documentation for fwnode_operations.add_links() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Minor code formatting/style clean ups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ti_usb_3410_5052: clean up serial data access (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ti_usb_3410_5052: fix port-close races (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usbfs: Suppress problematic bind and unbind uevents (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usblp: fix use-after-free on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: fix a signedness bug in tower_probe() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: fix memleak on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ldusb: fix memleak on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fix an IS_ERR() vs NULL bug in hd3ss3220_probe() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] device property: Fix the description of struct fwnode_operations (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: yurex: fix NULL-derefs on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: iowarrior: use pr_err() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: iowarrior: drop redundant iowarrior mutex (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: iowarrior: drop redundant disconnect mutex (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: iowarrior: fix use-after-free after driver unbind (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: iowarrior: fix use-after-free on release (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: iowarrior: fix use-after-free on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: chaoskey: fix use-after-free on release (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: adutux: fix use-after-free on release (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: fix use-after-free on release (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ldusb: fix NULL-derefs on driver unbind (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usb-skeleton: drop redundant in-urb check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usb-skeleton: fix use-after-free after driver unbind (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usb-skeleton: fix NULL-deref on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: remove duplicated include from hd3ss3220.c (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: drop OOM message (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: devio.c: Fix assignment of 0/1 to bool variables (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: hd3ss3220: hd3ss3220_probe() warn: passing zero to 'PTR_ERR' (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: hub: Check device descriptor before resusciation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: add dependency for TYPEC_HD3SS3220 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: Add Tegra194 XHCI support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: tegra: Parameterize mailbox register addresses (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: image: microtek.c: Remove unused variable (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: hd3ss3220_irq() can be static (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] kcov: remote coverage support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Create device links for all child-supplier depencencies (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Add functional dependency link from DT bindings (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: fix runtime PM after driver unbind (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usblp: fix runtime PM after driver unbind (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usb-skeleton: fix runtime PM after driver unbind (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci-ext-caps.c: Add missing platform_device_put() on error in xhci_create_intel_xhci_sw_pdev() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix NULL pointer dereference in xhci_clear_tt_buffer_complete() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Increase STS_SAVE timeout in xhci_suspend() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Prevent deadlock when xhci adapter breaks during init (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: wait for CNR controller not ready bit in xhci resume (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix USB 3.1 capability detection on early xHCI 1.1 spec based hosts (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Check all endpoints for LPM timeout (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Prevent device initiated U1/U2 link pm if exit latency is too long (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: Fix false warning message about wrong bounce buffer write length (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usb251xb: add pm_ops (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usb251xb: simplify reset helper (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usb251xb: add vdd supply support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: driver for TI HD3SS3220 USB Type-C DRP port controller (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: use regulator_bulk_set_supply_names() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: ftdi-elan: move a couple of statements to next line (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: Fix Kconfig indentation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-tegra: use devm_platform_ioremap_resource() to simplify code (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: fix open after failed reset request (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: fix potential NULL-deref on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: fix deadlock on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: legousbtower: fix slab info leak at probe (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: displayport: Fix for the mode entering routine (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: ucsi: ccg: Remove run_isr flag (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usblcd: use pr_err() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usblcd: drop redundant lcd mutex (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usblcd: drop redundant disconnect mutex (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usblcd: fix I/O after disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: usb: typec: tcpm: Fix a signedness bug in tcpm_fw_get_caps() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: adutux: fix NULL-derefs on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: adutux: fix use-after-free on disconnect (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: yurex: Don't retry on unexpected errors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: microtek: fix info-leak at probe (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: keyspan: fix NULL-derefs on open() and write() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add support for Cinterion CLS8 devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-storage: SCSI glue: use dev_err instead of printk (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: option: add Telit FN980 compositions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: add device IDs for Sienna and Echelon PL-20 (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usbcore: Fix slab-out-of-bounds bug during device reset (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: rio500: Fix lockdep violation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: rio500: simplify locking (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: add USB GPIO based connection detection driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: create Kconfig file (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: get usb-role-switch from parent (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: Add fwnode_usb_role_switch_get() function (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: roles: Introduce stubs for the exiting functions in role.h (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usbip: Implement SG support to vhci-hcd and stub driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: intel: Enable static DRD mode for role switch (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci-ext-caps.c: Add property to disable Intel SW switch (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: core: phy: add support for PHY calibration (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-rcar: Add a helper macro to set xhci_plat_priv (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: add quirks member into struct xhci_plat_priv (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: fix possible memleak on setup address fails (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] xhci: add TSP bitflag to TRB tracing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: dbc: Use GFP_KERNEL instead of GFP_ATOMIC in 'xhci_dbc_alloc_requests()' (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci: dbc: Simplify error handling in 'xhci_dbc_alloc_requests()' (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tps6598x: Fix build error without CONFIG_REGMAP_I2C (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: remove commented out dma wrappers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: remove a stale comment in hcd_alloc_coherent (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-storage: use hcd_uses_dma to check for DMA capabilities (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: Simplify usb_decode_get_set_descriptor function (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: Patch simplify usb_decode_set_clear_feature function (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: common: Separated decoding functions from dwc3 driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: xhci-mtk: add an optional xhci_ck clock (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ftdi_sio: add support for FT232H CBUS gpios (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] device property: Remove duplicate test for NULL (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: roles: intel_xhci: Supplying software node for the role mux (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [phy] phy: core: document phy_calibrate() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usb-skeleton: make comment block in line with coding style (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: usbfs: only account once for mmap()'ed usb memory usage (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fusb302: Call fusb302_debugfs_init earlier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fusb302: Use usb_debug_root as root for our debugfs entry (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Use usb_debug_root as root for our debugfs entry (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: ohci-nxp: enable compile-testing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: storage: isd200: remove redundant assignment to variable sendToTransport (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fusb302: Always provide fwnode for the port (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: fusb302: Remove unused properties (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usbfs: Add a capability flag for runtime suspend (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-storage: remove single-use define for debugging (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: Add definitions for the USB2.0 hub TT requests (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: remove ehci-w90x900 driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usbfs: Add ioctls for runtime power management (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usbsevseg: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: trancevibrator: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: atm: cxacru: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: lvstest: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cytherm: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: cypress_cy7c63: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usbtmc: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usblp: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: ueagle-atm: convert to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: typec: ucsi_ccg: convert i2c driver to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: add support for dev_groups to struct usb_device_driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: add support for dev_groups to struct usb_driver (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: usbip: convert platform driver to use dev_groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: Disable USB2 LPM at shutdown (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-plat: Prevent an abnormally restrictive PHY init skipping (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: Remove dev_err() usage after platform_get_irq() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: xhci-hub: fix extra endianness conversion (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: host: Remove call to memset after dma_alloc_coherent (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: mux: Switch to use fwnode_property_count_uXX() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: tcpm: Switch to use fwnode_property_count_uXX() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] usb: host: oxu210hp-hcd: remove include/linux/oxu210hp.h (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: core: hcd-pci: Use dev_get_drvdata where possible (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: nvidia-gpu: resume ccgx i2c client (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: nvidia-gpu: add runtime pm support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: nvidia-gpu: refactor master_xfer (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb: typec: Registering real device entries for the muxes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: f81232: implement break control (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: f81232: add high baud rate support (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: serial: ark3116: drop redundant init_termios (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: nvidia-gpu: Supply CCGx driver the fw build info (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [phy] phy: core: Invoke pm_runtime_get_*/pm_runtime_put_* before invoking reset callback (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: property: Document that of_graph_get_endpoint_by_regs needs of_node_put (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [phy] phy: make phy-core explicitly non-modular (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] OF: properties: add missing of_node_put (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] USB: xhci: fix 'broken_suspend' placement in struct xchi_hcd (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: nvidia-gpu: mark resume function as __maybe_unused (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [of] of: Use of_node_name_eq for node name comparisons (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: nvidia-gpu: limit reads also for combined messages (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: nvidia-gpu: adhere to I2C fault codes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: nvidia-gpu: make pm_ops static (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [i2c] i2c: add i2c bus driver for NVIDIA GPU (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [tty] complete ->et_serial() switchover (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb_wwan: switch to ->et_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] whiteheat: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] ti_usb_3410_5052: switch to ->et_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] ssu100: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] quatech2: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] pl2303: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] opticon: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] mos7840: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] mos7720: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] io_ti: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] io_edgeport: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] fdti_sio: switch to ->et_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] f81232: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] ark3116: switch to ->get_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] cdc-acm: switch to ->et_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [usb] usb-serial: begin switching to ->et_serial() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [tty] tty_ioctl(): start taking TIOCSERIAL into separate methods (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device connection: Remove device_connection_add() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device connection: Remove device_connection_find() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Fix device_pm_lock() locking for device links (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver code: print symbolic error code (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Fix the secondary firmware node handling in set_primary_fwnode() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: add device probe log helper (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Change delimiter in devlink device's name to "--" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Avoid NULL pointer dereference in device_get_next_child_node() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Fix sleeping in invalid context during device link deletion (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add waiting_for_supplier sysfs file for devices (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add state_synced sysfs file for devices that support it (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [documentation] driver core: Expose device link details in sysfs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Avoid deferred probe due to fw_devlink_pause/resume() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Rename dev_links_info.defer_sync to defer_hook (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Don't do deferred probe in parallel with kernel_init thread (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Use software_node_unregister() when unregistering group of nodes (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add device_is_dependent() to linux/device.h (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Update device link status correctly for SYNC_STATE_ONLY links (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: implement software_node_unregister() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [lib] lib/test_printf: Add tests for pfw printk modifier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Remove unnecessary is_fwnode_dev variable in device_add() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers property: When no children in primary, try secondary (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Fix handling of SYNC_STATE_ONLY + STATELESS device links (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Fix SYNC_STATE_ONLY device link implementation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Remove check in driver_deferred_probe_force_trigger() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: fw_devlink: Add support for batching fwnode parsing (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Look for waiting consumers only for a fwnode's primary device (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Move code to the right part of the file (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add device links from fwnode only for the primary device (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] Revert "Revert "driver core: Set fw_devlink to "permissive" behavior by default"" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Fix handling of fw_devlink=permissive (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: fw_devlink_flags can be static (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add fw_devlink kernel commandline option (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Reevaluate dev->links.need_for_probe as suppliers are added (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Skip unnecessary work when device doesn't have sync_state() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] driver core: Add dev_has_sync_state() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Call sync_state() even if supplier has no consumers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Allow device link operations inside sync_state() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add sync_state driver/bus callback (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add device link support for SYNC_STATE_ONLY flag (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Fix creation of device links with PM-runtime flags (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Remove device link creation limitation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] driver core: Add missing description of new struct device_link field (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add device link flag DL_FLAG_AUTOPROBE_CONSUMER (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Make driver core own stateful device links (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Fix adding device links to probing suppliers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers: core: Remove glue dirs from sysfs earlier (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Remove the link if there is no driver with AUTO flag (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: silence device link messages unless debugging (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] base: core: Remove WARN_ON from link dependencies check (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: export set_secondary_fwnode() to modules (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Allow register and unregister software node groups (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Export fwnode_get_name() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] Revert "software node: Simplify software_node_release() function" (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: add basic tests for property entries (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: remove separate handling of references (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: implement reference properties (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: allow embedding of small arrays into property_entry (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: replace is_array with is_inline (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] software node: unify PROPERTY_ENTRY_XXX macros (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: simplify property_entry_read_string_array() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: remove property_entry_read_uNN_array functions (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: get rid of property_set_pointer() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [firmware] efi/apple-properties: use PROPERTY_ENTRY_U8_ARRAY_LEN (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] software node: mark internal macros with double underscores (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] software node: introduce PROPERTY_ENTRY_XXX_ARRAY_LEN() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] software node: remove DEV_PROP_MAX (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: clean up property_copy_string_array() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Allow fwnode_operations.add_links to differentiate errors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Allow a device to wait on optional suppliers (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Add a function to obtain a node's prefix (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Add fwnode_get_name for returning the name of a node (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Add functions for accessing node's parents (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Move fwnode_get_parent() up (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Make argument to to_software_node const (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Get reference to parent swnode in get_parent op (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [include] driver core: Add support for linking devices during device addition (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: Add fwnode_to_dev() to look up device from fwnode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Initialize the return value in software_node_find_by_name() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Initialize the return value in software_node_to_swnode() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device connection: Add fwnode_connection_find_match() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Add software_node_find_by_name() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers: Introduce device lookup variants by device type (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers: Introduce device lookup variants by fwnode (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device connection: Find connections also by checking the references (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Introduce fwnode_find_reference() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Add software_node_get_reference_args() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Use kobject name when finding child nodes by name (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Add support for static node descriptors (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Simplify software_node_release() function (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Allow node creation without properties (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Add fwnode_graph_get_endpoint_by_id() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers: base: swnode: Make two functions static (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] software node: Implement get_named_child_node fwnode callback (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device connection: Find device connections also from device graphs (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device connection: Prepare support for firmware described connections (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: drop use of BUS_ATTR() (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] driver core: bus: convert to use BUS_ATTR_WO and RW (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers: base: swnode: check if swnode is NULL before dereferencing it (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers: base: swnode: check if pointer p is NULL before dereferencing it (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] sysfs: Disable lockdep for driver bind/unbind files (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: fix fwnode_graph_get_next_endpoint() documentation (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers: base: swnode: remove need for a temporary string for the node name (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] kobject: return error code if writing /sys/.../uevent fails (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Remove struct property_set (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] device property: Move device_add_properties() to swnode.c (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [base] drivers: base: Introducing software nodes to the firmware node framework (Torez Smith) [1900751 1856683 1838295 1837563 1783493]
+- [mm] powerpc/64s/radix: Fix mm_cpumask trimming race vs kthread_use_mm (Chris von Recklinghausen) [1862347]
+- [powerpc] powerpc: select ARCH_WANT_IRQS_OFF_ACTIVATE_MM (Chris von Recklinghausen) [1862347]
+- [fs] mm: fix exec activate_mm vs TLB shootdown and lazy tlb switching race (Chris von Recklinghausen) [1862347]
+- [arm64] arm64: pgtable: Ensure dirty bit is preserved across pte_wrprotect() (Andrew Jones) [1908439]
+- [arm64] arm64: pgtable: Fix pte_accessible() (Andrew Jones) [1908439]
+- [kernel] kernel: fork: properly initialize task_struct->task_struct_rh (Rafael Aquini) [1895892]
+- [s390] s390/dasd: Process FCES path event notification (Philipp Rudo) [1723823]
+- [s390] s390/dasd: Prepare for additional path event handling (Philipp Rudo) [1723823]
+- [s390] s390/dasd: Display FC Endpoint Security information via sysfs (Philipp Rudo) [1723823]
+- [s390] s390/dasd: Fix operational path inconsistency (Philipp Rudo) [1723823]
+- [s390] s390/dasd: Store path configuration data during path handling (Philipp Rudo) [1723823]
+- [s390] s390/dasd: Move duplicate code to separate function (Philipp Rudo) [1723823]
+- [s390] s390/dasd: Remove unused parameter from dasd_generic_probe() (Philipp Rudo) [1723823]
+- [s390] s390/cio: Add support for FCES status notification (Philipp Rudo) [1723823]
+- [s390] s390/cio: Provide Endpoint-Security Mode per CU (Philipp Rudo) [1723823]
+- [s390] s390/cio: Export information about Endpoint-Security Capability (Philipp Rudo) [1723823]
+- [net] net/af_iucv: fix null pointer dereference on shutdown (Philipp Rudo) [1903966]
+- [s390] s390/dasd: fix null pointer dereference for ERP requests (Philipp Rudo) [1903965]
+- [tools] selftests: netfilter: add command usage (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: simplify command testing (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: remove unused variable in make_file() (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: exit on invalid parameters (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: fix header example (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: kill running process only (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: add MTU arguments to flowtables (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: add checktool function (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: add test case for conntrack helper assignment (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: extend nfqueue test case (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: add nfqueue test case (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: add ipvs tunnel test case (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: add ipvs nat test case (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: add ipvs test script (Hangbin Liu) [1899374]
+- [tools] selftests: netfilter: check icmp pkttoobig errors are set as related (Hangbin Liu) [1899374]
+- [hwtracing] intel_th: pci: Add Emmitsburg PCH support (Jiri Olsa) [1838703]
+- [hwtracing] intel_th: pci: Add Tiger Lake PCH-H support (Jiri Olsa) [1783492 1782729]
+- [hwtracing] intel_th: pci: Add Jasper Lake CPU support (Jiri Olsa) [1783097]
+- [hwtracing] intel_th: pci: Add Elkhart Lake CPU support (Jiri Olsa) [1783596]
+- [hwtracing] intel_th: pci: Add Elkhart Lake SOC support (Jiri Olsa) [1783596]
+- [hwtracing] intel_th: pci: Add Ice Lake CPU support (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+- [hwtracing] intel_th: Fix a NULL dereference when hub driver is not loaded (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+- [hwtracing] intel_th: msu: Make stopping the trace optional (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+- [hwtracing] intel_th: Fix user-visible error codes (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+- [hwtracing] intel_th: msu: Fix the unexpected state warning (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+- [hwtracing] intel_th: Disallow multi mode on devices where it's broken (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+- [hwtracing] intel_th: msu: Fix window switching without windows (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+- [hwtracing] intel_th: Fix freeing IRQs (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+- [hwtracing] intel_th: Fix a double put_device() in error path (Jiri Olsa) [1838703 1783596 1783492 1783097 1782729]
+
+* Sat Jan 09 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-272.el8]
+- [idle] intel_idle: Fix intel_idle() vs tracing (David Arcari) [1903307]
+- [idle] intel_idle: Fix max_cstate for processor models without C-state tables (David Arcari) [1903307]
+- [idle] intel_idle: Ignore _CST if control cannot be taken from the platform (David Arcari) [1903307]
+- [idle] intel_idle: mention assumption that WBINVD is not needed (David Arcari) [1903307]
+- [idle] intel_idle: Remove uninitialized_var() usage (David Arcari) [1903307]
+- [idle] intel_idle: cleanup code to address out of order commits (David Arcari) [1903307]
+- [s390] Revert "s390/qeth: phase out OSN support" (Philipp Rudo) [1903962]
+- [net] net/smc: fix matching of existing link groups (Philipp Rudo) [1903961]
+- [netdrv] mlxsw: core: Use variable timeout for EMAD retries (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Fix firmware flashing (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Fix use-after-free in mlxsw_emad_trans_finish() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Fix memory leak on module removal (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Only advertise link modes supported by both driver and device (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Add a PFC test (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Add headroom handling test (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: qos_lib: Add a wrapper for running mlnx_qos (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: devlink_lib: Support port-less topologies (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: devlink_lib: Add devlink_cell_size_get() (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: devlink_lib: Split devlink_..._set() into save & set (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_ethtool: Expose transceiver_overheat counter (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Update module's settings when module is plugged in (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Initialize netdev's module overheat counter (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Enable temperature event for all supported port module sensors (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Update transceiver_overheat counter according to MTWE (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Add an infrastructure to track transceiver overheat counter (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core_hwmon: Query MTMP before writing to set only relevant fields (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add Ports Module Administrative and Operational Status Register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add Port Module Plug/Unplug Event Register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add Management Temperature Warning Event Register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_acl: Fix mlxsw_sp_acl_tcam_group_add()'s error path (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_router: simplify the return expression of __mlxsw_sp_router_init() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_qdisc: Disable port buffer autoresize with qdiscs (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_dcb: Implement dcbnl_setbuffer / getbuffer (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_buffers: Support two headroom modes (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_buffers: Manage internal buffer in the hdroom code (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_buffers: Introduce shared buffer ops (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_buffers: Convert mlxsw_sp_port_headroom_init() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_buffers: Inline mlxsw_sp_sb_max_headroom_cells() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_buffers: Move here the new headroom code (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Move here the three-step headroom configuration from DCB (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_dcb: Convert mlxsw_sp_port_pg_prio_map() to hdroom code (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_dcb: Convert ETS handler fully to mlxsw_sp_hdroom_configure() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Split headroom autoresize out of buffer configuration (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Track buffer sizes in struct mlxsw_sp_hdroom (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Track lossiness in struct mlxsw_sp_hdroom (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Track priorities in struct mlxsw_sp_hdroom (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Track MTU in struct mlxsw_sp_hdroom (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Unify delay handling between PFC and pause (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_buffers: Add struct mlxsw_sp_hdroom (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Introduce fw_fatal health reporter (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add Monitoring FW General Debug Register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add Monitoring FW Debug Register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Move fw_load_policy devlink param into core.c (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Push code doing params register/unregister into separate helpers (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Move fw flashing code into core.c (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Bump firmware version to XX.2008.1310 (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Derive SBIB from maximum port speed & MTU (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Keep maximum speed around (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Keep maximum MTU around (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_ethtool: Introduce ptys_max_speed callback (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_ethtool: Extract a helper to get Ethernet attributes (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core_hwmon: Extend hwmon interface with critical and emergency alarms (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core_hwmon: Calculate MLXSW_HWMON_ATTR_COUNT more accurately (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core_hwmon: Split temperature querying from show functions (Ivan Vecera) [1857594]
+- [netdrv] treewide: Use fallthrough pseudo-keyword (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_ethtool: Remove internal speeds from PTYS register (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Reduce runtime of tc-police scale test (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: Fix mausezahn delay parameter in mirror_test() (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Increase burst size for burst test (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Increase burst size for rate test (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Decrease required rate accuracy (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Adjust default policer burst size for Spectrum-{2, 3} (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_ptp: Use generic helper function (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: RED: Test offload of trapping on RED qevents (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_qdisc: Offload action trap for qevents (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Add early_drop trap (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Allow for per-ASIC traps initialization (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Allow for per-ASIC trap groups initialization (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: On policer_id_base_ref_count, use dec_and_test (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Use 'size_t' for array sizes (Ivan Vecera) [1857594]
+- [netdrv] devlink: Pass extack when setting trap's action and group's parameters (Ivan Vecera) [1857594]
+- [net] devlink: Add early_drop trap (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_cnt: Use flex_array_size() helper in memcpy() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_router: Fix use-after-free in router init / de-init (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Free EMAD transactions using kfree_rcu() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Increase scope of RCU read-side critical section (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use different trap group for externally routed packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_router: Allow programming link-local host routes (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Add support for temperature thresholds reading for QSFP-DD transceivers (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Add ethtool support for QSFP-DD transceivers (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: destroy workqueue when trap_register in mlxsw_emad_init (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Fix wrong SFP EEPROM reading for upper pages 1-3 (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Test policers' occupancy (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Add scale test for tc-police (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: tc_restrictions: Test tc-police restrictions (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: Add tc-police tests (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_acl: Offload FLOW_ACTION_POLICE (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core_acl_flex_actions: Add police action (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core_acl_flex_actions: Work around hardware limitation (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_policer: Add devlink resource support (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_policer: Add policer core (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: resources: Add resource identifier for global policers (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add policer bandwidth limits (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Use mirror reason during Rx listener lookup (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: pci: Retrieve mirror reason from CQE during receive (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: pci: Add mirror reason field to CQEv2 (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: trap: Add trap identifiers for mirrored packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Increase trap identifier to 10 bits (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Allow setting policer on a SPAN agent (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Allow passing parameters to SPAN agents (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Add support for mirroring towards CPU port (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Do not dereference destination netdev (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Add driver private info to parms_set() callback (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Add per-ASIC SPAN agent operations (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: add mirroring_pid_base to MOGCR register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add session_id and pid to MPAT register (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: RED: Test offload of mirror on RED early_drop qevent (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_qdisc: Offload mirroring on RED qevent early_drop (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_flow: Promote binder-type dispatch to spectrum.c (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Publish matchall data structures (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_flow: Drop an unused field (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_flow: Convert a goto to a return (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Add APIs to enable / disable global mirroring triggers (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Add support for global mirroring triggers (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Prepare for global mirroring triggers (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Move SPAN operations out of global file (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add Monitoring Port Analyzer Global Register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Add Monitoring Mirror Trigger Enable Register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: pci: Fix use-after-free in case of failed devlink reload (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_router: Remove inappropriate usage of WARN_ON() (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: Add tests for ethtool extended state (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: forwarding.config.sample: Add port with no cable connected (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: ethtool: Move different_speeds_get() to ethtool_lib (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_ethtool: Add link extended state (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Port Diagnostics Database Register (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_ethtool: Move mlxsw_sp_port_type_speed_ops structs (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Move ethtool_ops to spectrum_ethtool.c (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_dcb: Rename mlxsw_sp_port_headroom_set() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Enforce firmware version for Spectrum-3 (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: Bump firmware version to XX.2007.1168 (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_dcb: Fix a spelling typo in spectrum_dcb.c (Ivan Vecera) [1857594]
+- [tools] selftests: forwarding: Add a test for pedit munge tcp, udp sport, dport (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_acl: Support FLOW_ACTION_MANGLE for TCP, UDP ports (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core_acl_flex_actions: Add L4_PORT_ACTION (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Split handling of pedit mangle by chip type (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Do not rely on machine endianness (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Adjust headroom buffers for 8x ports (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: core: Use different get_trend() callbacks for different thermal zones (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Add test for control packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Register ACL control traps (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Register layer 3 control traps (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Register layer 2 control traps (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Factor out common Rx listener function (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Move layer 3 exceptions to exceptions trap group (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_router: remove redundant initialization of pointer br_dev (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_router: Allow programming link-local prefix routes (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Add packet traps for BFD packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Treat IPv6 link-local SIP as an exception (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Share one group for all locally delivered packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Move all trap groups under the same enum (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Do not hard code "thin" policer identifier (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: switchx2: Move SwitchX-2 trap groups out of main enum (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Reduce priority of locally delivered packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use same trap group for local routes and link-local destination (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use separate trap group for FID miss (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use same trap group for various IPv6 packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Rename IPv6 ND trap group (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use same switch case for identical groups (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use dedicated trap group for ACL trap (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Fix spelling mistake in trap's name (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use dedicated trap group for sampled packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use same trap group for IPv6 ND and ARP packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Rename ARP trap group (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Remove unnecessary field (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Align TC and trap priority (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_buffers: Assign non-zero quotas to TC 0 of the CPU port (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Change default rate and priority of DHCP packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Trap IPv4 DHCP packets in router (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Use same trap group for MLD and IGMP packets (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Rename IGMP trap group (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: Do not hard code trap group name (Ivan Vecera) [1857594]
+- [tools] selftests: devlink_lib: Remove double blank line (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Store all trap data in one array (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Store all trap group data in one array (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Store all trap policer data in one array (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_trap: Move struct definition out of header file (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: tc_restrictions: add couple of test for the correct matchall-flower ordering (Ivan Vecera) [1857594]
+- [tools] selftests: mlxsw: tc_restrictions: add test to check sample action restrictions (Ivan Vecera) [1857594]
+- [] selftests: mlxsw: rename tc_flower_restrictions.sh to tc_restrictions.sh (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_flower: Forbid to insert flower rules in collision with matchall rules (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Forbid to insert matchall rules in collision with flower rules (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Expose a function to get min and max rule priority (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Put matchall list into substruct of flow struct (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_flower: Expose a function to get min and max rule priority (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Restrict sample action to be allowed only on ingress (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Remove old SPAN API (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Use new analyzed ports list during speed / MTU change (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_acl: Convert flower-based mirroring to new SPAN API (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Convert matchall-based mirroring to new SPAN API (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Add APIs to bind / unbind a SPAN agent (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Wrap buffer change in a function (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Rename function (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Add APIs to get / put an analyzed port (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Add APIs to get / put a SPAN agent (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Move flow offload binding into spectrum_flow.c (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Process matchall events from the same cb as flower (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Avoid copying sample values and use RCU pointer direcly instead (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Push per-port rule add/del into separate functions (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Move ingress indication into mall_entry (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Pass mall_entry as arg to mlxsw_sp_mall_port_sample_add() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_matchall: Pass mall_entry as arg to mlxsw_sp_mall_port_mirror_add() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_acl: Use block variable in mlxsw_sp_acl_rule_del() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Push matchall bits into a separate file (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Push flow_block related functions into a separate file (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum: Rename acl_block to flow_block (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_acl: Move block helpers into inline header functions (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Replace zero-length array with flexible-array member (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Use 'refcount_t' for reference counting (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Remove unnecessary debug prints (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Rename parms() to parms_set() (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_span: Reduce nesting in mlxsw_sp_span_entry_configure() (Ivan Vecera) [1857594]
+- [netdrv] net/mlxfw: Remove unneeded semicolon (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: reg: Increase register field length to 13 bits (Ivan Vecera) [1857594]
+- [netdrv] mlxsw: spectrum_router: Re-increase scale of IPv6 nexthop groups (Ivan Vecera) [1857594]
+- [net] ipv6: Fix use of anycast address with loopback (Ivan Vecera) [1899591]
+- [net] ipv6: addrconf_f6i_alloc - fix non-null pointer check to !IS_ERR() (Ivan Vecera) [1899591]
+- [net] ipv6: fix excessive RTF_ADDRCONF flag on ::1/128 local route (and others) (Ivan Vecera) [1899591]
+- [net] ipv6: Change addrconf_f6i_alloc to use ip6_route_info_create (Ivan Vecera) [1899591]
+- [net] ipv6: Move setting default metric for routes (Ivan Vecera) [1899591]
+- [net] Add extack argument to ip_fib_metrics_init (Ivan Vecera) [1899591]
+- [net] ipv6: do not leave garbage in rt->fib6_metrics (Ivan Vecera) [1899591]
+- [net] Move free of dst_metrics to helper (Ivan Vecera) [1899591]
+- [net] common metrics init helper for dst_entry (Ivan Vecera) [1899591]
+- [net] Move free of fib_metrics to helper (Ivan Vecera) [1899591]
+- [net] common metrics init helper for FIB entries (Ivan Vecera) [1899591]
+- [net] rtmsg_to_fib6_config() - use new style struct initializer instead of memset (Ivan Vecera) [1899591]
+- [powercap] powercap/intel_rapl: enumerate Psys RAPL domain together with package RAPL domain (Puneet Sethi) [1893463]
+- [powercap] powercap/intel_rapl: Fix domain detection (Puneet Sethi) [1893463]
+
+* Fri Jan 08 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-271.el8]
+- [net] openvswitch: fix TTL decrement exception action execution (Eelco Chaudron) [1902610]
+- [net] openvswitch: fix error return code in validate_and_copy_dec_ttl() (Eelco Chaudron) [1902610]
+- [net] openvswitch: fix TTL decrement action netlink message format (Eelco Chaudron) [1902610]
+- [x86] hyperv: Enable 15-bit APIC ID if the hypervisor supports it (Vitaly Kuznetsov) [1903823]
+- [x86] kvm: Enable 15-bit extension when KVM_FEATURE_MSI_EXT_DEST_ID detected (Vitaly Kuznetsov) [1903823]
+- [documentation] x86/kvm: Reserve KVM_FEATURE_MSI_EXT_DEST_ID (Vitaly Kuznetsov) [1903823]
+- [iommu] hyper-v: Disable IRQ pseudo-remapping if 15 bit APIC IDs are available (Vitaly Kuznetsov) [1903823]
+- [x86] apic: Support 15 bits of APIC ID in MSI where available (Vitaly Kuznetsov) [1903823]
+- [x86] msi: Provide msi message shadow structs (Vitaly Kuznetsov) [1903823]
+- [kernel] genirq/msi: allow shadow declarations of msi_msg:: $member (Vitaly Kuznetsov) [1903823]
+- [x86] ioapic: Handle Extended Destination ID field in RTE (Vitaly Kuznetsov) [1903823]
+- [x86] apic: Always provide irq_compose_msi_msg() method for vector domain (Vitaly Kuznetsov) [1903823]
+- [x86] apic: Cleanup delivery mode defines (Vitaly Kuznetsov) [1903823]
+- [x86] apic/uv: Fix inconsistent destination mode (Vitaly Kuznetsov) [1903823]
+- [x86] msi: Only use high bits of MSI address for DMAR unit (Vitaly Kuznetsov) [1903823]
+- [x86] msi: Move compose message callback where it belongs (Vitaly Kuznetsov) [1903823]
+- [kernel] genirq/chip: Use the first chip in irq_chip_compose_msi_msg() (Vitaly Kuznetsov) [1903823]
+- [x86] apic: Fix x2apic enablement without interrupt remapping (Vitaly Kuznetsov) [1903823]
+- [tools] perf test: Fix msan uninitialized use (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Fix the ratio comments of miss-events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Free formats for perf pmu parse test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Do not free metric when failed to resolve (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Free metric when it failed to resolve (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Release expr_parse_ctx after testing (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Fix memory leaks in parse-metric test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-event: Fix memory leak in evsel->unit (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evlist: Fix cpu/thread map leak (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Fix some memory leaks - part 2 (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Fix some memory leaks (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Free aliases for PMU event map aliases test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf vendor events amd: Remove trailing commas (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Leader sampling shouldn't clear sample period (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf record: Prevent override of attr->sample_period for libpfm4 events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf record: Set PERF_RECORD_PERIOD if attr->freq is set (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench: Fix 2 memory sanitizer warnings (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Fix the "signal" test inline assembly (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf record/stat: Explicitly call out event modifiers in the documentation (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libtraceevent: Fix build warning on 32-bit arches (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf jevents: Fix suspicious code in fixregex() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Use uintptr_t when casting numbers to pointers (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf report: Disable ordered_events for raw dump (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Correct SNOOPX field offset (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Fix corrupt data after perf inject from (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf cs-etm: Fix corrupt data after perf inject from (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Avoid an uninitialized read when using fake PMUs (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Fix out of bounds array access in the print_counters() evlist method (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Set NULL sentinel in pmu_events table in "Parse and process metrics" test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Set exclude_guest=1 for user-space counting (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf record: Correct the help info of option "--no-bpf-event" (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Use zd for size_t printf formats on 32-bit (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf: arm-spe: Fix check error when synthesizing events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf symbols: Add mwait_idle_with_hints.constprop.0 to the list of idle symbols (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf sched timehist: Fix use of CPU list with summary option (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Fix basic bpf filtering test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Make option description initials all capital letters (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf build-ids: Fall back to debuginfod query if debuginfo not found (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench numa: Remove dead code in parse_nodes_opt() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Update POWER9 metrics to utilize other metrics (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add change log (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf: ftrace: Add set_tracing_options() to set all trace options (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add option --tid to filter by thread id (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add option -D/--delay to delay tracing (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf: ftrace: Allow set graph depth by '--graph-opts' (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add support for trace option tracing_thresh (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add option 'verbose' to show more info for graph tracer (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add support for tracing option 'irq-info' (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add support for trace option funcgraph-irqs (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add support for trace option sleep-time (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add support for tracing option 'func_stack_trace' (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Add general function to parse sublevel options (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add option '--inherit' to trace children processes (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Show trace column header (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add option '-m/--buffer-size' to set per-cpu buffer size (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Factor out function write_tracing_file_int() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Add option '-F/--funcs' to list available functions (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf ftrace: Select function/function_graph tracer automatically (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench numa: Use numa_node_to_cpus() to bind tasks to nodes (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench numa: Fix cpumask memory leak in node_has_cpus() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools build feature: Quote CC and CXX for their arguments (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Fix module symbol processing (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Rename 'enum dso_kernel_type' to 'enum dso_space_type' (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libperf: Fix man page typos (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Allow multiple probes in record+script_probe_vfs_getname.sh (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench mem: Always memset source before memcpy (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf sched: Prefer sched_waking event when it exists (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench: Fix a couple of spelling mistakes in options text (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench numa: Fix benchmark names (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench numa: Fix number of processes in "2x3-convergence" test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf trace beauty: Use the autogenerated protocol family table (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf trace beauty: Add script to autogenerate socket families table (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf script: Add 'tod' field to display time of day (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf script: Change the 'enum perf_output_field' enumerators to be 64 bits (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf data: Add support to store time of day in CTF data conversion (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Move clockid_res_ns under clock struct (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf header: Store clock references for -k/--clockid option (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Add clockid_name function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf clockid: Move parse_clockid() to new clockid object (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Handle possible strdup() error in tep_add_plugin_path() API (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libtraceevent: Fixed description of tep_add_plugin_path() API (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libtraceevent: Fixed type in PRINT_FMT_STING (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libtraceevent: Fixed broken indentation in parse_ip4_print_args() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libtraceevent: Improve error handling of tep_plugin_add_option() API (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libtraceevent: Fix typo in tep_plugin_add_option() description (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libtraceevent: Handle strdup() error in parse_option_name() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libtraceevent: Document tep_load_plugins_hook() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evsel: Extend message to mention CAP_SYS_PTRACE and perf security doc link (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Add support for decoding PSB+ only (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Add support for decoding FUP/TIP only (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf auxtrace: Add itrace 'q' option for quicker, less detailed decoding (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Time filter logged perf events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Use itrace debug log flags to suppress some messages (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf auxtrace: Add optional log flags to the itrace 'd' option (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Use itrace error flags to suppress some errors (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf auxtrace: Add optional error flags to the itrace 'e' option (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf auxtrace: Add missing itrace options to help text (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Improve aux_output not supported error (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Fix duplicate branch after CBR (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Fix FUP packet state (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf record: Introduce --control fd:ctl-fdoptions (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf record: Implement control commands handling (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf record: Extend -D, --delay option with -1 value (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Introduce --control fd:ctl-fdoptions (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench: Add benchmark of find_next_bit (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools build feature: Use CC and CXX from parent (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Rename group_list to metric_list (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Rename struct egroup to metric (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add metric group test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Make compute_single function more precise (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add recursion check when processing nested metrics (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add DCache_L2 to metric parse test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add cache_miss_cycles to metric parse test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add events for the current list (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Compute referenced metrics (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add referenced metrics to hash data (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Collect referenced metrics in struct metric_expr (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Collect referenced metrics in struct metric_ref_node (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Rename __metricgroup__add_metric to __add_metric (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add add_metric function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add macros for iterating map events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add expr__del_id function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Change expr__get_id to return struct expr_id_data (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add expr__add_id function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Fix memory leak in expr__add_id function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf test: Ensure sample_period is set libpfm4 events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Fix term parsing for raw syntax (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Allow r0x<HEX> event syntax (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: No need to cache the PMUs in ARM SPE auxtrace init routine (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf bench: Add basic syscall benchmark (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Implement control commands handling (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: extend -D, --delay option with -1 value (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Factor out event handling loop into dispatch_events() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Factor out body of event handling loop for fork case (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Move target check to loop control statement (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf stat: Factor out body of event handling loop for system wide (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evlist: Implement control command handling functions (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evlist: Introduce control file descriptors (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libperf: Avoid counting of nonfilterable fdarray fds (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libperf: Add flags to fdarray fds objects (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] libperf: Avoid internal moving of fdarray fds (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Add 'struct expr_id_data' to keep expr value (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf metric: Rename expr__add_id() to expr__add_val() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf probe: Warn if the target function is a GNU indirect function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf probe: Fix memory leakage when the probe point is not found (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf probe: Fix wrong variable warning when the probe point is not found (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf probe: Avoid setting probes on the same address for the same event (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf kmem: Pass additional arguments to 'perf record' (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Report BPF errors (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf script: Show text poke address symbol (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf script: Add option --show-text-poke-events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf intel-pt: Add support for text poke events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Add support for PERF_RECORD_TEXT_POKE (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf annotate: Fix non-null terminated buffer returned by readlink() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf inject jit: Remove //anon mmap events (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf symbols: Add s390 idle functions 'psw_idle' and 'psw_idle_exit' to list of idle symbols (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Fix reporting of unknown SVM exit reasons (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Change to SPDX License format (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Add builtin handler for trace_marker_raw (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Move kernel_stack event handler to "function" plugin (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Add plugin for decoding syscalls/sys_enter_futex (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Add offset option for function plugin (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Add more SVM exit reasons (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Add plugin for tlb_flush (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Optimize pretty_print() function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Add support for more printk format specifiers (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Introduced new traceevent API, for adding new plugins directories (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Add interface for options to plugins (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools lib traceevent: Add tep_load_plugins_hook() API (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Disable a subset of bison warnings (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Disable a subset of flex warnings (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Declare bison header file output (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf expr: Add missing headers noticed when building with NO_LIBBPF=1 (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Declare flex header file output (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf pmu: Add flex debug build flag (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf pmu: Add bison debug build flag (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Use automatic variable for yacc input (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse-events: Use automatic variable for flex input (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evlist: Fix the class prefix for 'struct evlist' branch_type methods (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evlist: Fix the class prefix for 'struct evlist' sample_id_all methods (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evlist: Fix the class prefix for 'struct evlist' sample_type methods (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evlist: Fix the class prefix for 'struct evlist' strerror methods (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf evlist: Fix the class prefix for 'struct evlist' 'add' evsel methods (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf pmu: Improve CPU core PMU HW event list ordering (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf pmu: List kernel supplied event aliases for arm64 (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf cs-etm: Allow no CoreSight sink to be specified on command line (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf expr: Add < and > operators (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf expr: Add d_ratio operation (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf script: Fixup some evsel/evlist method names (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tests: Add parse metric test for frontend metric (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tests: Add parse metric test for ipc metric (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Add test_generic_metric function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Release metric_events rblist (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Factor out prepare_metric function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Add metricgroup__parse_groups_test function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Add map to parse_groups() function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Add fake_pmu to parse_group() function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse: Factor out parse_groups() function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tests: Add another metric parsing test (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf pmu: Add a perf_pmu__fake object to use with __parse_events() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf parse: Provide a way to pass a fake_pmu to parse_events() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tests: Factor check_parse_id function (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf tools: Add fake pmu support (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] perf annotate: Remove unneeded conversion to bool (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools/: replace HTTP links with HTTPS ones (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [tools] tools, build: Propagate build failures from tools/build/Makefile.build (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] x86/cpufeatures: Add Architectural LBRs feature bit (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/rapl: Add support for Intel SPR platform (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/rapl: Support multiple RAPL unit quirks (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/rapl: Fix missing psys sysfs attributes (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [kernel] perf/core: Take over CAP_SYS_PTRACE creds to CAP_PERFMON capability (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [kernel] perf: Expose get/put_callchain_entry() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [include] perf: <linux/perf_event.h>: drop a duplicated word (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86: Remove task_ctx_size (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Create kmem_cache for the LBR context data (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [kernel] perf/core: Use kmem_cache to allocate the PMU specific data (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [kernel] perf/core: Factor out functions to allocate/free the task_ctx_data (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Support Architectural LBR (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Factor out intel_pmu_store_lbr (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Factor out rdlbr_all() and wrlbr_all() (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Mark the {rd, wr}lbr_{to, from} wrappers __always_inline (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Unify the stored format of LBR information (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Support LBR_CTL (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] x86/msr-index: Add bunch of MSRs for Arch LBR (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86: Expose CPUID enumeration bits for arch LBR (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Use dynamic data structure for task_ctx (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Factor out a new struct for generic optimization (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Add the function pointers for LBR save and restore (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Add a function pointer for LBR read (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/intel/lbr: Add a function pointer for LBR reset (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86: Keep LBR records unchanged in host context for guest usage (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86: Add constraint to create guest LBR event without hw counter (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/lbr: Add interface to get LBR information (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86: Provide stubs of KVM helpers for non-Intel CPUs (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86/core: Refactor hw->idx checks and cleanup (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] perf/x86: Fix variable types for LBR registers (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [kernel] perf: Add perf text poke event (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [uapi] perf: Add perf_event_mmap_page::cap_user_time_short ABI (Michael Petlan) [1811839 1731571 1838555 1838896 1873271]
+- [x86] sev-es: Do not support MMIO to/from encrypted memory (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Check SEV encryption before switching to kernel page-table (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Sanity-check CPUID results in the early #VC handler (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Check SEV encryption in 64-bit boot-path (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Introduce sev_status (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Use GHCB accessor for setting the MMIO scratch buffer (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Disable stack protection for head$(BITS).o (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Check required CPU features for SEV-ES (Vitaly Kuznetsov) [1868080]
+- [x86] efi: Add GHCB mappings when SEV-ES is active (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle NMI State (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Support CPU offline/online (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Don't call verify_cpu() on starting APs (Vitaly Kuznetsov) [1868080]
+- [x86] smpboot: Load TSS and getcpu GDT entry before loading IDT (Vitaly Kuznetsov) [1868080]
+- [x86] realmode: Setup AP jump table (Vitaly Kuznetsov) [1868080]
+- [x86] realmode: Add SEV-ES specific trampoline entry point (Vitaly Kuznetsov) [1868080]
+- [x86] vmware: Add VMware-specific handling for VMMCALL under SEV-ES (Vitaly Kuznetsov) [1868080]
+- [x86] kvm: Add KVM-specific VMMCALL handling under SEV-ES (Vitaly Kuznetsov) [1868080]
+- [x86] paravirt: Allow hypervisor-specific VMMCALL handling under SEV-ES (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle #DB Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle #AC Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle VMMCALL Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle MWAIT/MWAITX Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle MONITOR/MONITORX Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle INVD Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle RDPMC Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle RDTSC(P) Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle WBINVD Events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle DR7 read/write events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle MSR events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle MMIO String Instructions (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle MMIO events (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Handle instruction fetches from user-space (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Wire up existing #VC exit-code handlers (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Add a Runtime #VC Exception Handler (Vitaly Kuznetsov) [1868080]
+- [x86] entry/64: Add entry code for #VC handler (Vitaly Kuznetsov) [1868080]
+- [x86] dumpstack/64: Add noinstr version of get_stack_info() (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Adjust #VC IST Stack on entering NMI handler (Vitaly Kuznetsov) [1868080]
+- [x86] boot/64: Explicitly map boot_params and command line (Vitaly Kuznetsov) [1868080]
+- [x86] boot/64: Initialize 5-level paging variables earlier (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Allocate and map an IST stack for #VC handler (Vitaly Kuznetsov) [1868080]
+- [x86] debug: Allow a single level of #DB recursion (Vitaly Kuznetsov) [1868080]
+- [x86] entry: Remove DBn stacks (Vitaly Kuznetsov) [1868080]
+- [x86] entry, nmi: Disable #DB (Vitaly Kuznetsov) [1868080]
+- [x86] nmi: Protect NMI entry against instrumentation (Vitaly Kuznetsov) [1868080]
+- [x86] entry: Introduce local_db_{save, restore}() (Vitaly Kuznetsov) [1868080]
+- [x86] db: Split out dr6/7 handling (Vitaly Kuznetsov) [1868080]
+- [x86] Replace ist_enter() with nmi_enter() (Vitaly Kuznetsov) [1868080]
+- [x86] traps: Stop using ist_enter/exit() in do_int3() (Vitaly Kuznetsov) [1868080]
+- [x86] entry: Get rid of ist_begin/end_non_atomic() (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Setup per-CPU GHCBs for the runtime handler (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Setup GHCB-based boot #VC handler (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Setup an early #VC handler (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Compile early handler code into kernel image (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Print SEV-ES info into the kernel log (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Add SEV-ES Feature Detection (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Move early exception dispatch to C code (Vitaly Kuznetsov) [1868080]
+- [x86] idt: Make IDT init functions static inlines (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Install a CPU bringup IDT (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Switch to initial stack earlier (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Load segment registers earlier (Vitaly Kuznetsov) [1868080]
+- [x86] irq/64: Update stale comment (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Load GDT after switch to virtual addresses (Vitaly Kuznetsov) [1868080]
+- [x86] head/64: Install startup GDT (Vitaly Kuznetsov) [1868080]
+- [x86] idt: Split idt_data setup out of set_intr_gate() (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Add CPUID handling to #VC handler (Vitaly Kuznetsov) [1868080]
+- [x86] fpu: Move xgetbv()/xsetbv() into a separate header (Vitaly Kuznetsov) [1868080]
+- [x86] cpu: Use XGETBV and XSETBV mnemonics in fpu/internal.h (Vitaly Kuznetsov) [1868080]
+- [x86] fpu: Reset MXCSR to default in kernel_fpu_begin() (Vitaly Kuznetsov) [1868080]
+- [x86] sev-es: Add support for handling IOIO exceptions (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Unmap GHCB page before booting the kernel (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Setup a GHCB-based VC Exception handler (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Add set_page_en/decrypted() helpers (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Check return value of kernel_ident_mapping_init() (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Call set_sev_encryption_mask() earlier (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Add stage1 #VC handler (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Change add_identity_map() to take start and end (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Don't pre-map memory in KASLR code (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Always switch to own page table (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Add page-fault handler (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Rename kaslr_64.c to ident_map_64.c (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Add IDT Infrastructure (Vitaly Kuznetsov) [1868080]
+- [x86] traps: Split trap numbers out in a separate header (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Disable red-zone usage (Vitaly Kuznetsov) [1868080]
+- [x86] insn: Add insn_has_rep_prefix() helper (Vitaly Kuznetsov) [1868080]
+- [x86] insn: Add insn_get_modrm_reg_off() (Vitaly Kuznetsov) [1868080]
+- [x86] umip: Factor out instruction decoding (Vitaly Kuznetsov) [1868080]
+- [x86] umip: Factor out instruction fetch (Vitaly Kuznetsov) [1868080]
+- [tools] x86/insn: Make inat-tables.c suitable for pre-decompression code (Vitaly Kuznetsov) [1868080]
+- [x86] traps: Move pf error codes to <asm/trap_pf.h> (Vitaly Kuznetsov) [1868080]
+- [x86] cpufeatures: Add SEV-ES CPU feature (Vitaly Kuznetsov) [1868080]
+- [x86] kvm: svm: Use __packed shorthand (Vitaly Kuznetsov) [1868080]
+- [x86] kvm: svm: Add GHCB Accessor functions (Vitaly Kuznetsov) [1868080]
+- [x86] cpu: Unify cpu_init() (Vitaly Kuznetsov) [1868080]
+- [x86] insn-eval: Add support for 64-bit kernel mode (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed: Get rid of GOT fixup code (Vitaly Kuznetsov) [1868080]
+- [kernel] x86/boot/compressed: Force hidden visibility for all symbol references (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed: Move .got.plt entries out of the .got section (Vitaly Kuznetsov) [1868080]
+- [x86] boot: Correct relocation destination on old linkers (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed/64: Switch to __KERNEL_CS after GDT is loaded (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed: Fix reloading of GDTR post-relocation (Vitaly Kuznetsov) [1868080]
+- [x86] boot: Reload GDTR after copying to the end of the buffer (Vitaly Kuznetsov) [1868080]
+- [x86] boot/compressed: Don't declare __force_order in kaslr_64.c (Vitaly Kuznetsov) [1868080]
+- [mm] mm/userfaultfd: do not access vma->vm_mm after calling handle_userfault() (Philipp Rudo) [1903968]
+- [s390] s390/ap: fix ap devices reference counting (Philipp Rudo) [1903967]
+- [infiniband] RDMA/cxgb4: Validate the number of CQEs (Kamal Heib) [1894720]
+- [net] treewide: Use fallthrough pseudo-keyword (Petr Oros) [1892748]
+- [net] devlink: Remove overzealous WARN_ON with snapshots (Petr Oros) [1892748]
+- [net] devlink: ignore -EOPNOTSUPP errors on dumpit (Petr Oros) [1892748]
+- [net] devlink: Always use user_ptr[0] for devlink and simplify post_doit (Petr Oros) [1892748]
+- [net] devlink: Constify devlink instance pointer (Petr Oros) [1892748]
+- [net] devlink: Add comment for devlink instance lock (Petr Oros) [1892748]
+- [net] devlink: Do not hold devlink mutex when initializing devlink fields (Petr Oros) [1892748]
+- [docs] ice: add documentation for device-caps region (Petr Oros) [1892748]
+- [net] devlink: remove new uninitialized_var() usage (Petr Oros) [1892748]
+- [docs] networking: convert sja1105's devlink info to RTS (Petr Oros) [1892748]
+- [net] devlink: refactor end checks in devlink_nl_cmd_region_read_dumpit (Petr Oros) [1892748]
+- [docs] ice: cleanup language in ice.rst for fw.app (Petr Oros) [1892748]
+- [docs] devlink: don't wrap commands in rST shell blocks (Petr Oros) [1892748]
+- [net] devlink: Protect devlink port list traversal (Petr Oros) [1895042]
+- [net] devlink: Fix per port reporter fields initialization (Petr Oros) [1895042]
+- [net] devlink: Fix use-after-free when destroying health reporters (Petr Oros) [1895042]
+- [net] devlink: introduce the health reporter test command (Petr Oros) [1895042]
+- [net] devlink: Add devlink health port reporters API (Petr Oros) [1895042]
+- [net] devlink: Implement devlink health reporters on per-port basis (Petr Oros) [1895042]
+- [net] devlink: Create generic devlink health reporter search function (Petr Oros) [1895042]
+- [net] devlink: Rework devlink health reporter destructor (Petr Oros) [1895042]
+- [net] devlink: Refactor devlink health reporter constructor (Petr Oros) [1895042]
+
+* Wed Jan 06 2021 Jan Stancek <jstancek@redhat.com> [4.18.0-270.el8]
+- [md] dm writecache: fix the maximum number of arguments (Mike Snitzer) [1895117]
+- [md] dm writecache: advance the number of arguments when reporting max_age (Mike Snitzer) [1895117]
+- [x86] x86/cpu/amd: Make erratum #1054 a legacy erratum (Michael Petlan) [1791459]
+- [x86] x86/cpu/amd: Enable the fixed Instructions Retired counter IRPERF (Michael Petlan) [1791459]
+- [s390] s390/early: improve machine detection (Claudio Imbrenda) [1896307]
+- [infiniband] IB/mlx5: Fix fall-through warnings for Clang (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Fix corruption of reg_pages in mlx5_ib_rereg_user_mr() (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Properly convey driver version to firmware (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: DR, Proper handling of unsupported Connect-X6DX SW steering (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: kTLS, Enforce HW TX csum offload with kTLS (Alaa Hleihel) [1858561]
+- [netdrv] net: mlx5e: fix fs_tcp.c build when IPV6 is not enabled (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Fix wrong address reclaim when command interface is down (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-Switch, Fail mlx5_esw_modify_vport_rate if qos disabled (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Disable QoS when min_rates on all VFs are zero (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Clear bw_share upon VF disable (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Add handling of port type in rule deletion (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix check if netdev is bond slave (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Set IPsec WAs only in IP's non checksum partial case (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix incorrect access of RCU-protected xdp_prog (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix VXLAN synchronization after function reload (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-switch, Avoid extack error log for disabled vport (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Fix deletion of duplicate rules (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Protect encap route dev from concurrent release (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix modify header actions memory leak (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Fix devlink deadlock on net namespace deletion (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Fix type warning of sizeof in __mlx5_ib_alloc_counters() (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Clarify what the UMR is for when creating MRs (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Disable IB_DEVICE_MEM_MGT_EXTENSIONS if IB_WR_REG_MR can't work (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Make mkeys always owned by the kernel's PD when not enabled (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Use set_mkc_access_pd_addr_fields() in reg_create() (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Remove dead check for EAGAIN after alloc_mr_from_cache() (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Fix potential race between destroy and CQE poll (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: IPsec: Use kvfree() for memory allocated with kvzalloc() (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: TC: Remove unused parameter from mlx5_tc_ct_add_no_trk_match() (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-Switch, Setup all vports' metadata to support peer miss rule (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-Switch, Dedicated metadata for uplink vport (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-Switch, Check and enable metadata support flag before using (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Don't call timecounter cyc2time directly from 1PPS flow (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Release clock lock before scheduling a PPS work (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Rename ptp clock info (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Always use container_of to find mdev pointer from clock struct (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Fix uninitialized variable warning (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: IPsec: Add Connect-X IPsec Tx data path offload (Alaa Hleihel) [1858561 1790222]
+- [netdrv] net/mlx5e: IPsec: Add TX steering rule per IPsec state (Alaa Hleihel) [1858561 1790222]
+- [netdrv] net/mlx5: Add NIC TX domain namespace (Alaa Hleihel) [1858561 1790222]
+- [netdrv] net/mlx5e: Enhanced TX MPWQE for SKBs (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Move TX code into functions to be used by MPWQE (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Rename xmit-related structs to generalize them (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Generalize TX MPWQE checks for full session (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Support multiple SKBs in a TX WQE (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Move the TLS resync check out of the function (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Unify constants for WQE_EMPTY_DS_COUNT (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Small improvements for XDP TX MPWQE logic (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Refactor xmit functions (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Move mlx5e_tx_wqe_inline_mode to en_tx.c (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Use struct assignment to initialize mlx5e_tx_wqe_info (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Refactor inline header size calculation in the TX path (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Add IPv6 traffic class (DSCP) header rewrite support (Alaa Hleihel) [1889981 1858561]
+- [netdrv] net/mlx5e: Add LAG warning if bond slave is not lag master (Alaa Hleihel) [1858561 1851709]
+- [netdrv] net/mlx5e: Add LAG warning for unsupported tx type (Alaa Hleihel) [1858561 1851709]
+- [netdrv] net/mlx5e: Return a valid errno if can't get lag device index (Alaa Hleihel) [1858561 1851709]
+- [netdrv] net/mlx5e: Fix race condition on nhe->n pointer in neigh update (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix VLAN create flow (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix VLAN cleanup flow (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix return status when setting unsupported FEC mode (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix driver's declaration to support GRE offload (Alaa Hleihel) [1858561 1819619]
+- [netdrv] net/mlx5e: CT, Fix coverity issue (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Add resiliency in Striding RQ mode for packets larger than MTU (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix error path for RQ alloc (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Fix request_irqs error flow (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: cmdif, Avoid skipping reclaim pages if FW is not accessible (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Add retry mechanism to the command entry index allocation (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: poll cmd EQ in case of command timeout (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Avoid possible free of command entry while timeout comp handler (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Fix a race when moving command interface to polling mode (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: mlx5e_fec_in_caps() returns a boolean (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: TLS, Do not expose FPGA TLS counter if not supported (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix using wrong stats_grps in mlx5e_update_ndo_stats() (Alaa Hleihel) [1870593 1858561]
+- [netdrv] net/mlx5e: Fix multicast counter not up-to-date in "ip -s" (Alaa Hleihel) [1858561 1693130]
+- [netdrv] net/mlx5e: Fix endianness when calculating pedit mask first bit (Alaa Hleihel) [1889981 1858561]
+- [netdrv] net/mlx5e: Enable adding peer miss rules only if merged eswitch is supported (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: CT: Fix freeing ct_label mapping (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix memory leak of tunnel info when rule under multipath not ready (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Use synchronize_rcu to sync with NAPI (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Use RCU to protect rq->xdp_prog (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Fix FTE cleanup (Alaa Hleihel) [1858561]
+- [infiniband] mlx5: Use fallthrough pseudo-keyword (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Fix flow destination setting for RDMA TX flow table (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Delete extra dump stack that gives nothing (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: convert to new udp_tunnel infrastructure (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: DR, Change push vlan action sequence (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Enable users to change VF/PF representors carrier state (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Delete unreachable code (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: drop unnecessary list_empty (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Use fallthrough pseudo-keyword (Alaa Hleihel) [1858583 1858561]
+- [netdrv] net/mlx5: DR, Reduce print level for matcher print (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Add support for PCI relaxed ordering (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Use indirect call wrappers for RX post WQEs functions (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Move exposure of datapath function to txrx header (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: RX, Re-work initializaiton of RX function pointers (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-switch, Use eswitch total_vports (Alaa Hleihel) [1858583 1858561]
+- [netdrv] net/mlx5: E-switch, Reuse total_vports and avoid duplicate nvports (Alaa Hleihel) [1858583 1858561]
+- [netdrv] net/mlx5: E-switch, Consider maximum vf vports for steering init (Alaa Hleihel) [1858583 1858561]
+- [netdrv] net/mlx5: Add function ID to reclaim pages debug log (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Hold pages RB tree per VF (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Set mkey relaxed ordering by UMR with ConnectX-7 (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Use MLX5_SET macro instead of local structure (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Add missing srcu_read_lock in ODP implicit flow (Alaa Hleihel) [1858561]
+- [include] RDMA/mlx5: ConnectX-7 new capabilities to set relaxed ordering by UMR (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Allow SQ modification (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Do not request completion on every single UMR WQE (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: RX, Avoid indirect call in representor CQE handling (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: XDP, Avoid indirect call in TX flow (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: IPsec: Add Connect-X IPsec ESN update offload support (Alaa Hleihel) [1858561 1790222]
+- [netdrv] net/mlx5e: IPsec: Add Connect-X IPsec Rx data path offload (Alaa Hleihel) [1858561 1790222]
+- [netdrv] net/mlx5e: IPsec: Add IPsec steering in local NIC RX (Alaa Hleihel) [1858561 1790222]
+- [include] net/mlx5: Add IPsec related Flow steering entry's fields (Alaa Hleihel) [1858561 1790222]
+- [netdrv] net/mlx5: IPsec: Add HW crypto offload support (Alaa Hleihel) [1858561 1790222]
+- [netdrv] net/mlx5: Accel, Add core IPsec support for the Connect-X family (Alaa Hleihel) [1858561 1790222]
+- [netdrv] net/mlx5: E-switch, Reduce dependency on num_vfs during mode set (Alaa Hleihel) [1858583 1858561]
+- [netdrv] net/mlx5: E-switch, Avoid function change handler for non ECPF (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Make MLX5_EN_TLS non-prompt (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Enable count action for rules with allow action (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Add interface changes required for VDPA (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Add VDPA interface type to supported enumerations (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Support setting access rights of dma addresses (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Move devlink port register and unregister calls (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Remove unused to_mibmr function (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-switch, When eswitch is unsupported, return -EOPNOTSUPP (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Added support for 100Gbps per lane link modes (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Delete one-time used functions (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Cleanup DEVX initialization flow (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Separate flow steering logic from main.c (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Separate counters from main.c (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Separate restrack callbacks initialization from main.c (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Limit the scope of mlx5_ib_enable_driver function (Alaa Hleihel) [1858561]
+- [infiniband] RDMA: Move XRCD to be under ib_core responsibility (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Introduce UAPI to query PD attributes (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Implement the query ucontext functionality (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Refactor mlx5_ib_alloc_ucontext() response (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/core: Optimize XRC target lookup (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Get XRCD number directly for the internal use (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Enable QP number request when creating IPoIB underlay QP (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Introduce ODP prefetch counter (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Enhance TX timeout recovery (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Enhance ICOSQ data on RX reporter's diagnose (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Add EQ info to TX/RX reporter's diagnose (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Enhance CQ data on diagnose output (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Rename reporter's helpers (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Add helper to get the RQ WQE counter (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Add helper to get RQ WQE's head (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Move RQ helpers to txrx.h (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Align RX/TX reporters diagnose output format (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Remove redundant RQ state query (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Add a flush timeout define (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Change reporters create functions to return void (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: fix memory leak of tls (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Fix build break when CONFIG_XPS is not set (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: kTLS, Add kTLS RX HW offload support (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: kTLS, Use kernel API to extract private offload context (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: kTLS, Improve TLS feature modularity (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Accel, Expose flow steering API for rules add/del (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Receive flow steering framework for accelerated TCP flows (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: API to manipulate TTC rules destinations (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Refactor build channel params (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Turn XSK ICOSQ into a general asynchronous one (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: kTLS, Improve TLS params layout structures (Alaa Hleihel) [1858561]
+- [include] net/mlx5: Avoid RDMA file inclusion in core driver (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: vxlan: Return bool instead of opaque ptr in port_lookup() (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5e: Move TC-specific function definitions into MLX5_CLS_ACT (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Use kfree(ft->g) in arfs_create_groups() (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: FWTrace: Add missing space (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Add support to get MR resource in RAW format (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Add support to get CQ resource in RAW format (Alaa Hleihel) [1858561]
+- [infiniband] RDMA/mlx5: Add support to get QP resource in RAW format (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Add support in query QP, CQ and MKEY segments (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Export resource dump interface (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-switch, Supporting setting devlink port function mac address (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Split mac address setting function for using state_lock (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-switch, Support querying port function mac address (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: Move helper to eswitch layer (Alaa Hleihel) [1858561]
+- [netdrv] net/mlx5: E-switch, Introduce and use eswitch support check helper (Alaa Hleihel) [1858583 1858561]
+- [netdrv] net/mlx5: Constify mac address pointer (Alaa Hleihel) [1858561]
+- [tty] serial: 8250: export serial8250_do_set_divisor() (Steve Best) [1784119]
+- [tty] serial: 8250: introduce get_divisor() and set_divisor() hook (Steve Best) [1784119]
+- [tty] serial: 8250: let serial8250_get_divisor() get uart_port * as param (Steve Best) [1784119]
+- [tty] serial: 8250_lpss: Add ->setup() for Elkhart Lake ports (Steve Best) [1784119]
+- [tty] serial: 8250_lpss: Switch over to MSI interrupts (Steve Best) [1784119]
+- [tty] serial: 8250_lpss: Enable HS UART on Elkhart Lake (Steve Best) [1784119]
+- [tty] serial: 8250_lpss: Get rid of custom LPSS_DEVICE() macro (Steve Best) [1784119]
+- [tty] serial: 8250_lpss: register DMA IRQ and pool with instance ID (Steve Best) [1784119]
+- [tty] serial: 8250_lpss: add fractional divisor support (Steve Best) [1784119]
+- [tty] serial: 8250_lpss: switch to use 8250_dwlib library (Steve Best) [1784119]
+- [tty] tty: serial: Use the correct style for SPDX License Identifier (Steve Best) [1784119]
+- [tty] serial: 8250_dw: split Synopsys DesignWare 8250 common functions (Steve Best) [1784119]
+- [tty] 8250_lpss: check null return when calling pci_ioremap_bar (Steve Best) [1784119]
+- [dma] dmaengine: dw: Remove misleading is_private property (Steve Best) [1784119]
+- [tty] serial: 8250: fix null-ptr-deref in serial8250_start_tx() (John Linville) [1903272] {CVE-2020-15437}
+- [i2c] i2c: designware-pci: Fix BUG_ON during device removal (Steve Best) [1784122]
+- [i2c] i2c: designware-pci: Add support for Elkhart Lake PSE I2C (Steve Best) [1784122]
+- [i2c] i2c: designware-pci: Switch over to MSI interrupts (Steve Best) [1784122]
+- [mmc] mmc: sdhci: Add LTR support for some Intel BYT based controllers (Steve Best) [1906791]
+- [mmc] mmc: sdhci-pci: Add max-frequency device property for Intel controllers (Steve Best) [1906791]
+- [powerpc] powerpc/64s: Trim offlined CPUs from mm_cpumasks (Steve Best) [1905892]
+- [kernel] kernel/cpu: add arch override for clear_tasks_mm_cpumask() mm handling (Steve Best) [1905892]
+- [mm] powerpc/64s/pseries: Fix hash tlbiel_all_isa300 for guest kernels (Steve Best) [1905892]
+- [mm] powerpc/64s: Fix hash ISA v3.0 TLBIEL instruction generation (Steve Best) [1905892]
+- [mm] powerpc/64s: Add cp_abort after tlbiel to invalidate copy-buffer address (Steve Best) [1905892]
+- [powerpc] powerpc: untangle cputable mce include (Steve Best) [1905892]
+- [mmc] mmc: sdhci-pci: Add support for Intel EHL (Steve Best) [1783588]
+- [scsi] qla2xxx: Update version to 10.02.00.104-k (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Fix device loss on 4G and older HBAs (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: If fcport is undergoing deletion complete I/O with retry (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Fix the call trace for flush workqueue (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Fix flash update in 28XX adapters on big endian machines (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Handle aborts correctly for port undergoing deletion (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Fix N2N and NVMe connect retry failure (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Fix FW initialization error on big endian machines (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Fix crash during driver load on big endian machines (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Fix compilation issue in PPC systems (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Don't check for fw_started while posting NVMe command (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Tear down session if FW say it is down (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Limit interrupt vectors to number of CPUs (Nilesh Javali) [1905493]
+- [scsi] scsi: qla2xxx: Change post del message from debug level to log level (Nilesh Javali) [1905493]
+- [s390] s390/qeth: Remove pnso workaround (Philipp Rudo) [1903964]
+- [s390] s390/purgatory: do not build purgatory with kcov, kasan and friends (Philipp Rudo) [1900550]
+- [fs] iomap: Fix misplaced page flushing (Carlos Maiolino) [1868429]
+- [fs] iomap: Use round_down/round_up macros in __iomap_write_begin (Carlos Maiolino) [1868429]
+- [fs] iomap: Mark read blocks uptodate in write_begin (Carlos Maiolino) [1868429]
+- [fs] iomap: Clear page error before beginning a write (Carlos Maiolino) [1868429]
+- [fs] iomap: fix WARN_ON_ONCE() from unprivileged users (Carlos Maiolino) [1868429]
+- [fs] iomap: fall back to buffered writes for invalidation failures (Carlos Maiolino) [1868429]
+- [fs] iomap: Only invalidate page cache pages on direct IO writes (Carlos Maiolino) [1868429]
+- [fs] iomap: Make sure iomap_end is called after iomap_begin (Carlos Maiolino) [1868429]
+- [fs] iomap: Fix unsharing of an extent >2GB on a 32-bit machine (Carlos Maiolino) [1868429]
+- [fs] iomap: fix the iomap_fiemap prototype (Carlos Maiolino) [1868429]
+- [fs] iomap: remove lockdep_assert_held() (Carlos Maiolino) [1868429]
+- [mm] powerpc/numa: Fix a regression on memoryless node 0 (Steve Best) [1903613]
+- [mm] powerpc/numa: Offline memoryless cpuless node 0 (Steve Best) [1903613]
+- [mm] powerpc/numa: Prefer node id queried from vphn (Steve Best) [1903613]
+- [mm] powerpc/numa: Set numa_node for all possible cpus (Steve Best) [1903613]
+- [powerpc] powerpc/numa: Remove late request for home node associativity (Steve Best) [1903613]
+- [mm] powerpc/numa: Early request for home node associativity (Steve Best) [1903613]
+- [mm] powerpc/numa: Use cpu node map of first sibling thread (Steve Best) [1903613]
+- [x86] xen: don't unbind uninitialized lock_kicker_irq (Brian Masney) [1896786]
+- [net] Bluetooth: Acquire sk_lock.slock without disabling interrupts (Ivan Vecera) [1889859]
+- [wireless] mwifiex: fix double free (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: dbg: run init_cfg function once per driver load (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: dbg: remove no filter condition (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: split a print to avoid a WARNING in ROC (Jarod Wilson) [1860496]
+- [wireless] qtnfmac: fix resource leaks on unsupported iftype error return path (Jarod Wilson) [1860496]
+- [net] nl80211: fix OBSS PD min and max offset validation (Jarod Wilson) [1860496]
+- [wireless] rtw88: Fix potential probe error handling race with wow firmware loading (Jarod Wilson) [1860496]
+- [wireless] rtw88: Fix probe error handling race with firmware loading (Jarod Wilson) [1860496]
+- [wireless] ath6kl: wmi: prevent a shift wrapping bug in ath6kl_wmi_delete_pstream_cmd() (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add checked value for ath11k_ahb_remove (Jarod Wilson) [1860496]
+- [wireless] mwifiex: remove function pointer check (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix uninitialized return in ath11k_spectral_process_data() (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix a double free and a memory leak (Jarod Wilson) [1860496]
+- [wireless] rtw88: fix compile warning: (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Remove unnecessary braces from HostCmd_SET_SEQ_NO_BSS_INFO (Jarod Wilson) [1860496]
+- [wireless] rtw88: don't treat NULL pointer as an array (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Do not use GFP_KERNEL in atomic context (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: check ndev pointer (Jarod Wilson) [1860496]
+- [wireless] ath11k: Fix possible memleak in ath11k_qmi_init_service (Jarod Wilson) [1860496]
+- [wireless] ath10k: Fix the size used in a 'dma_free_coherent()' call in an error handling path (Jarod Wilson) [1860496]
+- [wireless] ath9k: Fix potential out of bounds in ath9k_htc_txcompletion_cb() (Jarod Wilson) [1860496]
+- [wireless] ath9k_htc: Use appropriate rs_datalen type (Jarod Wilson) [1860496]
+- [wireless] ath6kl: prevent potential array overflow in ath6kl_add_new_sta() (Jarod Wilson) [1860496]
+- [net] net: wireless: nl80211: fix out-of-bounds access in nl80211_del_key() (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: reduce maximum VHT MPDU length to 7991 (Jarod Wilson) [1860496]
+- [net] mac80211: fix 80 MHz association to 160/80+80 AP on 6 GHz (Jarod Wilson) [1860496]
+- [net] mac80211: do not allow bigger VHT MPDUs than the hardware supports (Jarod Wilson) [1860496]
+- [net] cfg80211: fix 6 GHz channel conversion (Jarod Wilson) [1860496]
+- [net] mac80211: do not disable HE if HT is missing on 2.4 GHz (Jarod Wilson) [1860496]
+- [net] mac80211: Fix radiotap header channel flag for 6GHz band (Jarod Wilson) [1860496]
+- [net] lib80211: fix unmet direct dependendices config warning when !CRYPTO (Jarod Wilson) [1860496]
+- [net] mac80211: add AQL support for VHT160 tx rates (Jarod Wilson) [1860496]
+- [net] mac80211: extend AQL aggregation estimation to HE and fix unit mismatch (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Increase AES key storage size to 256 bits (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: use ieee80211_free_txskb to free tx skbs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: use v1 MCU API on MT7615 to fix issues with adding/removing stations (Jarod Wilson) [1860496]
+- [net] cfg80211: Adjust 6 GHz frequency to channel conversion (Jarod Wilson) [1860496]
+- [net] mac80211: reduce packet loss event false positives (Jarod Wilson) [1860496]
+- [net] cfg80211: regulatory: reject invalid hints (Jarod Wilson) [1860496]
+- [net] wireless: fix wrong 160/80+80 MHz setting (Jarod Wilson) [1860496]
+- [net] mac80211: improve AQL aggregation estimation for low data rates (Jarod Wilson) [1860496]
+- [net] mac80211: factor out code to look up the average packet length duration for a rate (Jarod Wilson) [1860496]
+- [net] mac80211: use rate provided via status->rate on ieee80211_tx_status_ext for AQL (Jarod Wilson) [1860496]
+- [net] nl80211: fix NL80211_ATTR_HE_6GHZ_CAPABILITY usage (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: reserve tx credit only when txctl is ready to send (Jarod Wilson) [1860496]
+- [net] wireless: Use fallthrough pseudo-keyword (Jarod Wilson) [1860496]
+- [wireless] rtl818x: constify ioreadX() iomem argument (as in generic implementation) (Jarod Wilson) [1860496]
+- [net] mac80211: Do not report beacon loss if beacon filtering enabled (Jarod Wilson) [1860496]
+- [net] mac80211: fix misplaced while instead of if (Jarod Wilson) [1860496]
+- [net] nl80211: use eth_zero_addr() to clear mac address (Jarod Wilson) [1860496]
+- [net] mac80211: use eth_zero_addr() to clear mac address (Jarod Wilson) [1860496]
+- [net] mac8211: fix struct initialisation (Jarod Wilson) [1860496]
+- [net] mac80211: Handle special status codes in SAE commit (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Set timeout value when configuring power save (Jarod Wilson) [1860496]
+- [wireless] hostap: use generic power management (Jarod Wilson) [1860496]
+- [wireless] rt2x00: pci: use generic power management (Jarod Wilson) [1860496]
+- [wireless] mt7601u: add missing release on skb in mt7601u_mcu_msg_send (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: don't print failure if debug firmware is missing (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: coex: add functions and parameters (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: make symbol 'rtw8821c_rtw_pwr_track_tbl' static (Jarod Wilson) [1860496]
+- [wireless] rtw88: add h2c command in debugfs (Jarod Wilson) [1860496]
+- [wireless] rtw88: allows driver to enable/disable beacon (Jarod Wilson) [1860496]
+- [wireless] rtw88: add ieee80211_ops::change_interface (Jarod Wilson) [1860496]
+- [wireless] rtw88: coex: only skip coex triggered by BT info (Jarod Wilson) [1860496]
+- [wireless] rtw88: update tx descriptor of mgmt and reserved page packets (Jarod Wilson) [1860496]
+- [wireless] rtw88: fix short GI capability based on current bandwidth (Jarod Wilson) [1860496]
+- [wireless] rtw88: fix LDPC field for RA info (Jarod Wilson) [1860496]
+- [wireless] prism54: switch from 'pci_' to 'dma_' API (Jarod Wilson) [1860496]
+- [wireless] prism54: islpci_hotplug: use generic power management (Jarod Wilson) [1860496]
+- [wireless] prism54: Replace HTTP links with HTTPS ones (Jarod Wilson) [1860496]
+- [wireless] p54: switch from 'pci_' to 'dma_' API (Jarod Wilson) [1860496]
+- [wireless] mwifiex: 11n_rxreorder: Remove unnecessary cast in kfree() (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: btcoex: use *ph to print small buffer (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: btcoex: remove redundant initialization of variables ant_num and single_ant_path (Jarod Wilson) [1860496]
+- [net] mac80211: warn only once in check_sdata_in_driver() at each caller (Jarod Wilson) [1860496]
+- [net] nl80211: support 4-way handshake offloading for WPA/WPA2-PSK in AP mode (Jarod Wilson) [1860496]
+- [net] cfg80211: invert HE BSS color 'disabled' to 'enabled' (Jarod Wilson) [1860496]
+- [net] mac80211: add a function for running rx without passing skbs to the stack (Jarod Wilson) [1860496]
+- [net] mac80211: parse radiotap header when selecting Tx queue (Jarod Wilson) [1860496]
+- [net] mac80211: remove unused flags argument in transmit functions (Jarod Wilson) [1860496]
+- [net] mac80211: use same flag everywhere to avoid sequence number overwrite (Jarod Wilson) [1860496]
+- [net] mac80211: do not overwrite the sequence number if requested (Jarod Wilson) [1860496]
+- [net] mac80211: add radiotap flag to prevent sequence number overwrite (Jarod Wilson) [1860496]
+- [net] mac80211: never drop injected frames even if normally not allowed (Jarod Wilson) [1860496]
+- [uapi] cfg80211: Add support to advertize OCV support (Jarod Wilson) [1860496]
+- [net] cfg80211/mac80211: avoid bss color setting in non-HE modes (Jarod Wilson) [1860496]
+- [net] mac80211: calculate skb hash early when using itxq (Jarod Wilson) [1860496]
+- [net] mac80211: improve AQL tx airtime estimation (Jarod Wilson) [1860496]
+- [net] cfg80211/mac80211: add connected to auth server to station info (Jarod Wilson) [1860496]
+- [net] cfg80211/mac80211: add connected to auth server to meshconf (Jarod Wilson) [1860496]
+- [net] cfg80211/mac80211: add mesh_param "mesh_nolearn" to skip path discovery (Jarod Wilson) [1860496]
+- [net] cfg80211: allow the low level driver to flush the BSS table (Jarod Wilson) [1860496]
+- [net] mac80211: Use fallthrough pseudo-keyword (Jarod Wilson) [1860496]
+- [net] nl80211: Simplify error handling path in 'nl80211_trigger_scan()' (Jarod Wilson) [1860496]
+- [net] nl80211: Remove a misleading label in 'nl80211_trigger_scan()' (Jarod Wilson) [1860496]
+- [uapi] net/wireless: wireless.h: drop duplicate word in comments (Jarod Wilson) [1860496]
+- [uapi] net/wireless: nl80211.h: drop duplicate words in comments (Jarod Wilson) [1860496]
+- [net] cfg80211: allow vendor dumpit to terminate by returning 0 (Jarod Wilson) [1860496]
+- [net] mac80211: remove the need for variable rates_idx (Jarod Wilson) [1860496]
+- [net] nl80211: S1G band and channel definitions (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add missing release on skb in __mt76x02u_mcu_send_msg (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix possible memory leak in mt7615_mcu_wtbl_sta_add (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: fix potential memory leak in mcu message handler (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76s: move queue accounting in mt76s_tx_queue_skb (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7663s support (Jarod Wilson) [1860496]
+- [wireless] mt76: introduce mt76_sdio module (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7663-usb-sdio-common module (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: sdio code must access rate/key regs in preocess context (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add mt76_skb_adjust_pad utility routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: take into account sdio bus configuring txwi (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add missing CONFIG_MAC80211_DEBUGFS (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: potential array overflow in mt7915_mcu_tx_rate_report() (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix potential memory leak in mcu message handler (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663u: fix potential memory leak in mcu message handler (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663u: fix memory leak in set key (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: reschedule ps work according to last activity (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: avoid scheduling runtime-pm during hw scan (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663u: sync probe sampling with rate configuration (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: improve mt7615_driver_own reliability (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add idle-timeout knob in mt7615 debugfs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: enable beacon hw filter for runtime-pm (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add runtime-pm knob in mt7615 debugfs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: do not request {driver, fw}_own if already granted (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: check MT76_STATE_PM flag before accessing the device (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: run mt7615_pm_wake in mt7615_mac_sta_{add, remove} (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: wake device before pushing frames in mt7615_tx (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: wake device before pulling packets from mac80211 queues (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: run mt7615_mcu_set_roc holding mt76 mutex (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: run mt7615_mcu_set_wmm holding mt76 mutex (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add missing lock in mt7615_regd_notifier (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: wake device before performing freq scan (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: acquire driver_own before configuring device for suspend (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: wake device in mt7615_update_channel before access regmap (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce pm_power_save delayed work (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: wake device before configuring hw keys (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: wake device before accessing regmap in debugfs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_mutex_{acquire, release} utilities (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add mt7615_pm_wake utility routine (Jarod Wilson) [1860496]
+- [wireless] mt76: move mt76 workqueue in common code (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: avoid polling in fw_own for mt7663 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: avoid memcpy in rxv operation (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x2u: enable HC-M7662BU1 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x2: fix pci suspend/resume on mt7612e (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: update HE capabilities (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: implement testmode support (Jarod Wilson) [1860496]
+- [wireless] mt76: add API for testmode support (Jarod Wilson) [1860496]
+- [wireless] mt76: vif_mask to struct mt76_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: use full on-chip memory address for WF_PHY registers (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add support for accessing RF registers via MCU (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add support for accessing mapped registers via bus ops (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: schedule tx tasklet and sta poll on mac tx free (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x2e: rename routines in pci.c (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: overwrite qid for non-bufferable mgmt frames (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: use ieee80211_tx_queue_params to avoid open coded (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add MU-MIMO support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add a fixed AC queue mapping (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add .set_tsf callback (Jarod Wilson) [1860496]
+- [wireless] mt76: add U-APSD support on AP side (Jarod Wilson) [1860496]
+- [wireless] mt76: rely on register macros (Jarod Wilson) [1860496]
+- [wireless] mt76: fix include in pci.h (Jarod Wilson) [1860496]
+- [wireless] mt76: allow more channels, allowed in ETSI domain (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix up typo in Kconfig for MT7663U (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: introduce ARP filter offload (Jarod Wilson) [1860496]
+- [wireless] mt76: usb: rely on mt76_for_each_q_rx (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: re-enable offloading of sequence number assignment (Jarod Wilson) [1860496]
+- [wireless] wireless: Fix trivial spelling (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: 8821ae: remove unused path B parameters from swing table (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: Use const in 8188ee/8723be/8821ae swing_table declarations (Jarod Wilson) [1860496]
+- [wireless] rtl818x_pci: use generic power management (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8192cu: Free ieee80211_hw if probing fails (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8192cu: Prevent leaking urb (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8192cu: Fix deadlock (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8192cu: Remove uninitialized_var() usage (Jarod Wilson) [1860496]
+- [wireless] orinoco_usb: fix spelling mistake (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8188ee: Fix endian issue (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: Fix endian issue in ps.c (Jarod Wilson) [1860496]
+- [wireless] broadcom: fix wiki website url (Jarod Wilson) [1860496]
+- [wireless] wireless: fix wiki website url in main Kconfig (Jarod Wilson) [1860496]
+- [wireless] rtw88: coex: Fix ACL Tx pause during BT inquiry/page (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Prevent memory corruption handling keys (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Fix reporting 'operation not supported' error code (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Use macro MWIFIEX_MAX_BSS_NUM for specifying limit of interfaces (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822c: add new RFE type 6 (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822ce: add support for device ID 0xc82f (Jarod Wilson) [1860496]
+- [wireless] rtw88: pci: disable aspm for platform inter-op with module parameter (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: Add 8821CE to Kconfig and Makefile (Jarod Wilson) [1860496]
+- [wireless] rtw88: single rf path chips don't support TX STBC (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add beamformee support (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add power tracking (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add cck pd settings (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add phy calibration (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add false alarm statistics (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add query rx desc support (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add set channel support (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add dig related settings (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add set tx power index (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8821c: add basic functions (Jarod Wilson) [1860496]
+- [wireless] brcm80211: brcmsmac: Move LEDs to GPIO descriptors (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Transform compatible string for FW loading (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: set pacing shift before transmitting skb to bus (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: set state of hanger slot to FREE when flushing PSQ (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: reset SDIO bus on a firmware crash (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: do not disconnect for disassoc frame from unconnected AP (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Fix for wrong disconnection event source information (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Fix for unable to return to visible SSID (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: initialize the requested dwell time (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: fix throughput zero stalls on PM 1 mode due to credit map (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: update tx status flags to sync with firmware (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: reserve 2 credits for host tx control path (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: increase message buffer size for control packets (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: allow credit borrowing for all access categories (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: To fix Bss Info flag definition Bug (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: reduce maximum station interface from 2 to 1 in RSDB mode (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: keep SDIO watchdog running when console_interval is non-zero (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: fix invalid permanent MAC address in wiphy (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: To fix kernel crash on out of boundary access (Jarod Wilson) [1860496]
+- [net] net: wireless: kerneldoc fixes (Jarod Wilson) [1860496]
+- [net] net: mac80211: kerneldoc fixes (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix wmi peer flags in peer assoc command (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add support for ring backpressure stats (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add dp tx err stats (Jarod Wilson) [1860496]
+- [wireless] ath11k: removing redundant reo unlock followed by immediate lock (Jarod Wilson) [1860496]
+- [wireless] ath11k: add support for spectral scan (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add direct buffer ring support (Jarod Wilson) [1860496]
+- [wireless] ath11k: build HE 6 GHz capability (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add support for 6g scan hint (Jarod Wilson) [1860496]
+- [wireless] ath11k: Send multiple scan_chan_list messages if required (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add 6G scan dwell time parameter in scan request command (Jarod Wilson) [1860496]
+- [wireless] ath11k: set psc channel flag when sending channel list to firmware (Jarod Wilson) [1860496]
+- [wireless] ath11k: extend peer_assoc_cmd for 6GHz band (Jarod Wilson) [1860496]
+- [wireless] ath11k: Use freq instead of channel number in rx path (Jarod Wilson) [1860496]
+- [wireless] ath11k: add support for 6GHz radio in driver (Jarod Wilson) [1860496]
+- [wireless] ath11k: add 6G frequency list supported by driver (Jarod Wilson) [1860496]
+- [wireless] net: wireless: intel: fix wiki website url (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: Replace zero-length array with flexible-array (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: Remove unused inline function iwl_mvm_tid_to_ac_queue (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: fix gcc-10 zero-length-bounds warning (Jarod Wilson) [1860496]
+- [wireless] ath: fix wiki website url (Jarod Wilson) [1860496]
+- [wireless] ath10k: Acquire tx_lock in tx error paths (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: remove redundant assignment to variable ret (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: fix config variable name in comment (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: Fix avg-power report (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: Don't IWL_WARN on FW reconfiguration (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: Extended Key ID support for mvm and dvm (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Fix firmware filename for sd8997 chipset (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Fix firmware filename for sd8977 chipset (Jarod Wilson) [1860496]
+- [net] mac80211: remove STA txq pending airtime underflow warning (Jarod Wilson) [1860496]
+- [net] mac80211: Fix bug in Tx ack status reporting in 802.3 xmit path (Jarod Wilson) [1860496]
+- [net] cfg80211: check vendor command doit pointer before use (Jarod Wilson) [1860496]
+- [net] mac80211: mesh: Free pending skb when destroying a mpath (Jarod Wilson) [1860496]
+- [net] mac80211: mesh: Free ie data when leaving mesh (Jarod Wilson) [1860496]
+- [net] mac80211: fix warning in 6 GHz IE addition in mesh mode (Jarod Wilson) [1860496]
+- [wireless] ath10k: Fix NULL pointer dereference in AHB device probe (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: Make some Killer Wireless-AC 1550 cards work again (Jarod Wilson) [1860496]
+- [wireless] ath9k: Fix regression with Atheros 9271 (Jarod Wilson) [1860496]
+- [net] nl80211: fix memory leak when parsing NL80211_ATTR_HE_BSS_COLOR (Jarod Wilson) [1860496]
+- [net] nl80211: don't return err unconditionally in nl80211_start_ap() (Jarod Wilson) [1860496]
+- [net] mac80211: allow rx of mesh eapol frames with default rx key (Jarod Wilson) [1860496]
+- [net] mac80211: skip mpath lookup also for control port tx (Jarod Wilson) [1860496]
+- [net] mac80211: Fix dropping broadcast packets in 802.11 encap (Jarod Wilson) [1860496]
+- [net] mac80211: simplify mesh code (Jarod Wilson) [1860496]
+- [net] mac80211: fix control port tx status check (Jarod Wilson) [1860496]
+- [include] ieee80211: Add missing and new AKM suite selector definitions (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix EEPROM buffer size (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663u: fix memory leaks in mt7663u_probe (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: do not access uninitialized NAPI structs (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: fix crash in iwl_dbg_tlv_alloc_trigger (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: don't call iwl_mvm_free_inactive_queue() under RCU (Jarod Wilson) [1860496]
+- [wireless] wireless: replace '---help---' in Kconfig files with 'help' (Jarod Wilson) [1860496]
+- [net] net: fix wiki website url mac80211 and wireless files (Jarod Wilson) [1860496]
+- [uapi] include: fix wiki website url in netlink interface header (Jarod Wilson) [1860496]
+- [wireless] mt76: overwrite qid for non-bufferable mgmt frames (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix hw queue mapping (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix lmac queue debugsfs entry (Jarod Wilson) [1860496]
+- [wireless] mt76: add missing lock configuring coverage class (Jarod Wilson) [1860496]
+- [net] mac80211: initialize return flags in HE 6 GHz operation parsing (Jarod Wilson) [1860496]
+- [net] cfg80211: fix management registrations deadlock (Jarod Wilson) [1860496]
+- [net] cfg80211: support bigger kek/kck key length (Jarod Wilson) [1860496]
+- [net] mac80211: set short_slot for 6 GHz band (Jarod Wilson) [1860496]
+- [net] mac80211: Consider 6 GHz band when handling power constraint (Jarod Wilson) [1860496]
+- [net] mac80211: accept aggregation sessions on 6 GHz (Jarod Wilson) [1860496]
+- [net] cfg80211: require HE capabilities for 6 GHz band (Jarod Wilson) [1860496]
+- [net] cfg80211: reject HT/VHT capabilities on 6 GHz band (Jarod Wilson) [1860496]
+- [net] cfg80211: treat 6 GHz channels as valid regardless of capability (Jarod Wilson) [1860496]
+- [net] mac80211: Add HE 6GHz capabilities element to probe request (Jarod Wilson) [1860496]
+- [net] mac80211: use HE 6 GHz band capability and pass it to the driver (Jarod Wilson) [1860496]
+- [net] mac80211: check the correct bit for EMA AP (Jarod Wilson) [1860496]
+- [net] mac80211: determine chandef from HE 6 GHz operation (Jarod Wilson) [1860496]
+- [net] mac80211: avoid using ext NSS high BW if not supported (Jarod Wilson) [1860496]
+- [net] mac80211: do not allow HT/VHT IEs in 6 GHz mesh mode (Jarod Wilson) [1860496]
+- [net] mac80211: build HE operation with 6 GHz oper information (Jarod Wilson) [1860496]
+- [net] mac80211: add HE 6 GHz Band Capability element (Jarod Wilson) [1860496]
+- [net] cfg80211: add and expose HE 6 GHz band capabilities (Jarod Wilson) [1860496]
+- [net] mac80211: add HE 6 GHz Band Capabilities into parse extension (Jarod Wilson) [1860496]
+- [net] cfg80211: handle 6 GHz capability of new station (Jarod Wilson) [1860496]
+- [include] ieee80211: add HE ext EIDs and 6 GHz capability defines (Jarod Wilson) [1860496]
+- [include] ieee80211: add code to obtain and parse 6 GHz operation field (Jarod Wilson) [1860496]
+- [include] ieee80211: definitions for reduced neighbor reports (Jarod Wilson) [1860496]
+- [net] cfg80211: add a helper to identify 6 GHz PSCs (Jarod Wilson) [1860496]
+- [net] nl80211: really allow client-only BIGTK support (Jarod Wilson) [1860496]
+- [net] cfg80211: adapt to new channelization of the 6GHz band (Jarod Wilson) [1860496]
+- [net] cfg80211: fix 6 GHz frequencies to kHz (Jarod Wilson) [1860496]
+- [wireless] ath11k: clear DCM max constellation tx value (Jarod Wilson) [1860496]
+- [wireless] ath11k: reset trigger frame MAC padding duration (Jarod Wilson) [1860496]
+- [wireless] ath10k: Remove ath10k_qmi_register_service_notifier() declaration (Jarod Wilson) [1860496]
+- [wireless] ath9k_htc: Set RX filter based to allow broadcast Action frame RX (Jarod Wilson) [1860496]
+- [wireless] ath9k: Set RX filter based to allow broadcast Action frame RX (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Add support for NL80211_ATTR_MAX_AP_ASSOC_STA (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Parse all API_VER_ID properties (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: 43012 Update MES Watermark (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: fix 43455 CRC error under SDIO 3.0 SDR104 mode (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: set F2 blocksize and watermark for 4354/4356 SDIO (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: fix 4339 CRC error under SDIO 3.0 SDR104 mode (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: set F2 blocksize for 4373 (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822c: remove CCK TX setting when switch channel (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822c: fix missing brace warning for old compilers (Jarod Wilson) [1860496]
+- [wireless] rtw88: fix EAPOL 4-way failure by finish IQK earlier (Jarod Wilson) [1860496]
+- [wireless] rtw88: coex: 8723d: handle BT inquiry cases (Jarod Wilson) [1860496]
+- [wireless] rtw88: coex: 8723d: set antanna control owner (Jarod Wilson) [1860496]
+- [wireless] Revert "rtw88: no need to set registers for SDIO" (Jarod Wilson) [1860496]
+- [wireless] rt2800: enable MFP support unconditionally (Jarod Wilson) [1860496]
+- [wireless] mmc: sdio: Fix Cypress SDIO IDs macros in common include file (Jarod Wilson) [1860496]
+- [wireless] mmc: sdio: Move SDIO IDs from b43-sdio driver to common include file (Jarod Wilson) [1860496]
+- [wireless] mmc: sdio: Move SDIO IDs from ath10k driver to common include file (Jarod Wilson) [1860496]
+- [wireless] mmc: sdio: Move SDIO IDs from mwifiex driver to common include file (Jarod Wilson) [1860496]
+- [wireless] mmc: sdio: Change macro names for Marvell 8688 modules (Jarod Wilson) [1860496]
+- [mmc] mmc: sdio: Fix macro name for Marvell device with ID 0x9134 (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: bump FW API to 56 for AX devices (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: add support for range request version 10 (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: fix aux station leak (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move txq-specific from trans_pcie to common trans (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move iwl_txq and substructures to a common trans header (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: gen3: indicate 8k/12k RB size to device (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: acpi: evaluate dsm to enable 5.2 bands in Indonesia (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: acpi: support device specific method (DSM) (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: keep trans instead of trans_pcie in iwl_txq (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: don't count on the FW to set persistence mode (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: set NO_HE if the regulatory domain forbids it (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: remove set but not used variable 'msta' (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: Use kmemdup in mt7615_queue_key_update() (Jarod Wilson) [1860496]
+- [wireless] mt76: only iterate over initialized rx queues (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add support for MT7611N (Jarod Wilson) [1860496]
+- [wireless] mt76: fix wcid allocation issues (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: fix possible NULL pointer dereference in mt7915_register_ext_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix hw_scan with ssid_type for specified SSID only (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: fix a handful of spelling mistakes (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: switch to per-vif power_save support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: fix some sparse warnings (Jarod Wilson) [1860496]
+- [wireless] mt76: fix per-driver wcid range checks after wcid array size bump (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: fix decoded radiotap HE flags (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix NULL pointer deref in mt7615_register_ext_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: fix sparse warnings: incorrect type initializer (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: fix some sparse warnings (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add spatial reuse support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: remove check in mt76x02_mcu_msg_send (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce remain_on_channel support (Jarod Wilson) [1860496]
+- [net] mac80211: support control port TX status reporting (Jarod Wilson) [1860496]
+- [net] mac80211: fix HT-Control field reception for management frames (Jarod Wilson) [1860496]
+- [net] cfg80211: fix CFG82011_CRDA_SUPPORT still mentioning internal regdb (Jarod Wilson) [1860496]
+- [net] nl80211: Add support to configure TID specific Tx rate configuration (Jarod Wilson) [1860496]
+- [net] mac80211: allow SA-QUERY processing in userspace (Jarod Wilson) [1860496]
+- [net] nl80211: add ability to report TX status for control port TX (Jarod Wilson) [1860496]
+- [net] mac80211: Replace zero-length array with flexible-array (Jarod Wilson) [1860496]
+- [net] cfg80211: Replace zero-length array with flexible-array (Jarod Wilson) [1860496]
+- [include] mac80211: Add new AMPDU factor macro for HE peer caps (Jarod Wilson) [1860496]
+- [include] ieee80211: S1G defines (Jarod Wilson) [1860496]
+- [net] nl80211: support scan frequencies in KHz (Jarod Wilson) [1860496]
+- [net] nl80211: add KHz frequency offset for most wifi commands (Jarod Wilson) [1860496]
+- [net] cfg80211: add KHz variants of frame RX API (Jarod Wilson) [1860496]
+- [net] nl80211: simplify peer specific TID configuration (Jarod Wilson) [1860496]
+- [net] cfg80211: add support for TID specific AMSDU configuration (Jarod Wilson) [1860496]
+- [net] mac80211: fix variable names in TID config methods (Jarod Wilson) [1860496]
+- [net] cfg80211: fix mask type in cfg80211_tid_cfg structure (Jarod Wilson) [1860496]
+- [net] cfg80211: fix debugfs rename crash (Jarod Wilson) [1860496]
+- [include] ieee80211: Fix incorrect mask for default PE duration (Jarod Wilson) [1860496]
+- [net] mac80211: mesh: fix discovery timer re-arming issue / crash (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: Fix build error (Jarod Wilson) [1860496]
+- [wireless] ath11k: Fix some resource leaks in error path in 'ath11k_thermal_register()' (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8192ee: remove redundant for-loop (Jarod Wilson) [1860496]
+- [wireless] mwifiex: Fix memory corruption in dump_station (Jarod Wilson) [1860496]
+- [wireless] rtw88: no need to set registers for SDIO (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: fix incorrect setting of ldo_pwr (Jarod Wilson) [1860496]
+- [wireless] rtw88: rename rtw88.ko/rtwpci.ko to rtw88_core.ko/rtw88_pci.ko (Jarod Wilson) [1860496]
+- [wireless] rtw88: extract: remove the unused after extracting (Jarod Wilson) [1860496]
+- [wireless] rtw88: extract: make 8723d an individual kernel module (Jarod Wilson) [1860496]
+- [wireless] rtw88: extract: make 8822b an individual kernel module (Jarod Wilson) [1860496]
+- [wireless] rtw88: extract: make 8822c an individual kernel module (Jarod Wilson) [1860496]
+- [wireless] rtw88: extract: export symbols about pci interface (Jarod Wilson) [1860496]
+- [wireless] rtw88: extract: export symbols used in chip functionalities (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: Fix a double free in _rtl_usb_tx_urb_setup() (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix typo defining ps work (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: configure bss info adding the interface (Jarod Wilson) [1860496]
+- [wireless] mt76: enable p2p support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: reduce hw scan timeout (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: do not report scan_complete twice to mac80211 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: fix the usage WoW with net detect support (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix htt stats module not handle multiple skbs (Jarod Wilson) [1860496]
+- [wireless] rtl8187: Remove unused variable rtl8225z2_tx_power_ofdm (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: fix sparse warnings for power tracking (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add 8723DE to Kconfig and Makefile (Jarod Wilson) [1860496]
+- [wireless] rtw88: fill zeros to words 0x06 and 0x07 of security cam entry (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add coex support (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: set ltecoex register address in chip_info (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: implement flush queue (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add shutdown callback to disable BT USB suspend (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add power tracking (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: add IQ calibration (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add LC calibration (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: fix WPA/WPA2-PSK 4-way handshake offload and SAE offload failures (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: fix possible deadlock in mt7915_stop (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: allocate proper size for tlv tags (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add debugfs to track TxBF status (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add TxBF capabilities (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add Tx beamformee support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add Tx beamformer support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: introduce mt7915_get_he_phy_cap (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: usb: cancel ps work stopping the vif (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663u: add missing register definitions (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663u: copy key pointer in mt7663u_mac_write_txwi (Jarod Wilson) [1860496]
+- [wireless] mt76: set runtime stream caps by mt76_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: enable firmware module debug support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add tsf related callbacks (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: set peer Tx fixed rate through debugfs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add .sta_statistics support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add .sta_add_debugfs support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add Rx radiotap header support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add HE capabilities support for peers (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: add HE bss_conf support for interfaces (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: register per-phy HE capabilities for each interface (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: implement HE per-rate tx power support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7915: enable Rx HE rate reporting (Jarod Wilson) [1860496]
+- [wireless] mt76: add mac80211 driver for MT7915 PCIe-based chipsets (Jarod Wilson) [1860496]
+- [wireless] mt76: add HE phy modes and hardware queue (Jarod Wilson) [1860496]
+- [wireless] mt76: adjust wcid size to support new 802.11ax generation (Jarod Wilson) [1860496]
+- [wireless] mt76: add Rx stats support for radiotap (Jarod Wilson) [1860496]
+- [wireless] mt76: add support for HE RX rate reporting (Jarod Wilson) [1860496]
+- [wireless] mt76: avoid rx reorder buffer overflow (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: scan all channels if not specified (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: add support to sched scan with randomise addr (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: introduce WoW with net detect support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix delta tx power for mt7663 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: fix target power parsing (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix ibss mode for mt7663 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: check return value of mt7615_eeprom_get_power_index (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: read tx streams from eeprom (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce beacon_loss mcu event (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add gtk rekey offload support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce PM support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663u: introduce suspend/resume to mt7663u (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add WoW support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_mcu_set_hif_suspend mcu command (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce support for hardware beacon filter (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: free pci_vector if mt7615_pci_probe fails (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add passive mode for hw scan (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: do not mark sched_scan disabled in mt7615_scan_work (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_check_offload_capability routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix ssid configuration in mt7615_mcu_hw_scan (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: remove duplicate error message (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix getting maximum tx power from eeprom (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: set spatial extension index (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: remove check in mt7663_load_n9 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: add the possibility to load firmware v2 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x0: enable MCS 8 and MCS9 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix event report in mt7615_mcu_bss_event (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add sta pointer to mt7615_mcu_add_bss_info signature (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: fix up BMC entry indicated to unicmd firmware (Jarod Wilson) [1860496]
+- [wireless] mt76: enable TDLS support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: move mcu bss upload before creating the sta (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: fix tx status rate index calculation (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix tx status rate index calculation (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: do not adjust MAC timings if the device is not running (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: adjust timing in mt7615_mac_set_timing to match fw/hw values (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: never use an 802.11b CF-End rate on 5GHz (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: never use an 802.11b CF-End rate on 5GHz (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: use larger rx buffers if VHT is supported (Jarod Wilson) [1860496]
+- [wireless] mt76: fix A-MPDU density handling (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix sta ampdu factor for VHT (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663u: enable AirTimeFairness (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rework mt7615_mac_sta_poll for usb code (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix aid configuration in mt7615_mcu_wtbl_generic_tlv (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix mt7615_driver_own routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix max wtbl size for 7663 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix mt7615_firmware_own for mt7663e (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: parse mcu return code for unified commands (Jarod Wilson) [1860496]
+- [wireless] mt76: add rx queues info to mt76 debugfs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: make Kconfig entry obvious for MT7663E (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: introduce 802.11 PS support in sta mode (Jarod Wilson) [1860496]
+- [wireless] mt76: remove PS_NULLFUNC_STACK capability (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: provide aid info to the mcu (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: disable aspm by default (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: enable scs for mt7663 driver (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7663u support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: move core shared code in mt7615-common module (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix possible deadlock in mt7615_stop (Jarod Wilson) [1860496]
+- [wireless] mt76: remove unnecessary annotations (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: enable MSI by default (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rework IRQ handling to prepare for MSI support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: fix DMA unmap length (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7622: fix DMA unmap length (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: set hw scan limits only for firmware with offload support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: disable hw/sched scan ops for non-offload firmware (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: fix aggr range entry in debugfs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix possible division by 0 in mt7615_mac_update_mib_stats (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x2: disable merge of OTP ROM data by default (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: disable merge of OTP ROM data by default (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add support for applying tx DPD calibration from EEPROM (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add support for applying DC offset calibration from EEPROM (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: disable merge of OTP ROM data by default (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: Delete an error message in mt7622_wmac_probe() (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: do not always reset the dfs state setting the channel (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: correct the name of the rom patch (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add address parameter to mt7615_eeprom_init (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_wtbl_desc data structure (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rework wtbl key configuration (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: rely on mt7622 queue scheme for mt7663u (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: move mt7615_mac_wtbl_addr in mac.h (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce __mt7663_load_firmware routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_mac_update_rate_desc routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7663u support to mt7615_write_txwi (Jarod Wilson) [1860496]
+- [wireless] mt76: add headroom and tailroom to mt76_mcu_ops data structure (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: remove unnecessary register operations (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce rlm tlv in bss_info mcu command (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce BSS absence event (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce scheduled scan support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce hw scan support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: keep Rx filters as the default (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_mcu_set_channel_domain mcu command (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add ethool support to mt7663 driver (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: disable RDD commands (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: make scs configurable per phy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: enable nf estimation (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7663: fix mt7615_mac_cca_stats_reset routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add more useful Tx mib counters (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: cleanup mib related defines and structs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: enable aggr_stats for both phy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: modify mt7615_ampdu_stat_read for each phy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x0: pci: add mt7610 PCI ID (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x2u: introduce Mercury UD13 support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02u: Add support for newer versions of the XBox One wifi adapter (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: fix handling MCU timeouts during hw restart (Jarod Wilson) [1860496]
+- [wireless] rndis_wlan: Replace zero-length array with flexible-array (Jarod Wilson) [1860496]
+- [wireless] mwl8k: Replace zero-length array with flexible-array (Jarod Wilson) [1860496]
+- [wireless] rndis_wlan: Remove logically dead code (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: remove Comparison to bool in brcmf_p2p_send_action_frame() (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: make non-global functions static (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Use seq/seq_len and set iv_initialize when plumbing of rxiv in (GTK) keys (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: use actframe_abort to cancel ongoing action frame (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: set security after reiniting interface (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: fix 802.1d priority to ac mapping for pcie dongles (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: map 802.1d priority to precedence level based on AP WMM params (Jarod Wilson) [1860496]
+- [wireless] ath11k: convert to devm_platform_get_and_ioremap_resource (Jarod Wilson) [1860496]
+- [wireless] ath11k: remove redundant initialization of pointer info (Jarod Wilson) [1860496]
+- [wireless] ath10k: fix ath10k_pci struct layout (Jarod Wilson) [1860496]
+- [wireless] ath10k: fix gcc-10 zero-length-bounds warnings (Jarod Wilson) [1860496]
+- [wireless] ath10k: remove experimental tag from SDIO and SNOC busses in Kconfig (Jarod Wilson) [1860496]
+- [wireless] ath10k: Replace zero-length array with flexible-array (Jarod Wilson) [1860496]
+- [wireless] ath11k: Remove bus layer includes from upper layer (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add drv private for bus opaque struct (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add support for multibus support (Jarod Wilson) [1860496]
+- [wireless] ath10k: fix __le32 warning in ath10k_wmi_tlv_op_gen_request_peer_stats_info() (Jarod Wilson) [1860496]
+- [wireless] ath10k: Remove msdu from idr when management pkt send fails (Jarod Wilson) [1860496]
+- [wireless] ath10k: Skip handling del_server during driver exit (Jarod Wilson) [1860496]
+- [wireless] ath11k: remove stale monitor status descriptor (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: dbg_ini: differentiate ax210 hw with same hw type (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: skip fragmented receive buffers (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove outdated copyright print/module statement (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: don't transmit on unallocated queue (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: tx: enable A-MSDU in low latency mode (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: use longer queues for 256-BA (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: gen2: use DMA pool for byte-count tables (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: remove some dead code (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: dbg: mark a variable __maybe_unused (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: attempt to allocate smaller queues (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: allocate much smaller byte-count table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: dump api version in yaml format (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: convert all AX101 devices to the device tables (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: remove occurrences of 22000 in the FW name defines (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: convert QnJ with Hr to the device table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: remove mangling for iwl_ax101_cfg_qu_hr (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: remove outdated comment about PCI RTPM reference (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: add IML/ROM information to the assertion dumps (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move iwl_set_soc_latency to iwl-drv to be used by other op_modes (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: remove magic number (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: initialize iwl_dev_tx_power_cmd to zero (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: dbg: set debug descriptor to NULL outside of iwl_fw_free_dump_desc (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: bump FW API to 55 for AX devices (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: add D3 resume timepoint (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: set properly station flags in STA_HE_CTXT_CMD (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: avoid debug max amsdu config overwriting itself (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: remove iwlmvm's tfd_q_hang_detect module parameter (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: stop supporting swcrypto and bt_coex_active module parameters (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: add support for range request command version 9 (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: don't access TLV before verifying len (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove antenna_coupling module parameter (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: use hweight_long instead of bit manipulating (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: add support for parsing SHARED_MEM_ALLOC version 4 (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: fw api: fix PHY data 2/3 position (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8188ee: remove Comparison to bool in rf.c (Jarod Wilson) [1860496]
+- [wireless] mwifiex: avoid -Wstringop-overflow warning (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: remove comparison of 0/1 to bool variable (Jarod Wilson) [1860496]
+- [wireless] brcmsmac: remove Comparison to bool in brcms_b_txstatus() (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Add P2P Action Frame retry delay to fix GAS Comeback Response failure issue (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Fix P2P Group Formation failure via Go-neg method (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: support the second p2p connection (Jarod Wilson) [1860496]
+- [wireless] rtw88: fix an issue about leak system resources (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: add interface configurations table (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Set IG register for CCK rate (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add chip_ops::false_alarm_statistics (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: some chips don't support LDPC (Jarod Wilson) [1860496]
+- [wireless] rtw88: handle C2H_CCX_TX_RPT to know if packet TX'ed successfully (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add set_channel (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add query_rx_desc (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add DIG parameter (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: use true, false for bool variable in rtl_init_rfkill() (Jarod Wilson) [1860496]
+- [wireless] rtw88: Use udelay instead of usleep in atomic context (Jarod Wilson) [1860496]
+- [wireless] ath11k: Replace zero-length array with flexible-array (Jarod Wilson) [1860496]
+- [wireless] ath9k_htc: Silence undersized packet warnings (Jarod Wilson) [1860496]
+- [wireless] ath6kl: Replace zero-length array with flexible-array (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix kernel panic by freeing the msdu received with invalid length (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add support to reset htt peer stats (Jarod Wilson) [1860496]
+- [wireless] ath11k: add tx hw 802.11 encapsulation offloading support (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix resource unavailability for htt stats after peer stats display (Jarod Wilson) [1860496]
+- [wireless] ath11k: use true,false for bool variables (Jarod Wilson) [1860496]
+- [wireless] ath10k: Add support for targets without trustzone (Jarod Wilson) [1860496]
+- [wireless] ath10k: Setup the msa resources before qmi init (Jarod Wilson) [1860496]
+- [wireless] ath10k: remove the max_sched_scan_reqs value (Jarod Wilson) [1860496]
+- [wireless] ath10k: Avoid override CE5 configuration for QCA99X0 chipsets (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: no need to check return value of debugfs_create functions (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: remove comparison to bool in brcmf_fws_attach() (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: add vendor ie for association responses (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: only generate random p2p address when needed (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: p2p cert 6.1.9-support GOUT handling p2p presence request (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: remove arp_hostip_clear from brcmf_netdev_stop (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: keep apsta enabled when AP starts with MCHAN feature (Jarod Wilson) [1860496]
+- [wireless] rtw88: fix spelling mistake "fimrware" -> "firmware" (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822c: update phy parameter tables to v50 (Jarod Wilson) [1860496]
+- [wireless] ath11k: add DBG_MAC prints to track vdev events (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix mgmt_tx_wmi cmd sent to FW for deleted vdev (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix error return code in ath11k_dp_alloc() (Jarod Wilson) [1860496]
+- [wireless] ath10k: fix possible memory leak in ath10k_bmi_lz_data_large() (Jarod Wilson) [1860496]
+- [wireless] mac80211: fix memory overlap due to variable length param (Jarod Wilson) [1860496]
+- [net] mac80211: TX legacy rate control for Beacon frames (Jarod Wilson) [1860496]
+- [wireless] ath11k: use GFP_ATOMIC under spin lock (Jarod Wilson) [1860496]
+- [wireless] ath10k: correct tx bitrate of iw for SDIO (Jarod Wilson) [1860496]
+- [wireless] ath10k: add bitrate parse for peer stats info (Jarod Wilson) [1860496]
+- [wireless] ath10k: add rx bitrate report for SDIO (Jarod Wilson) [1860496]
+- [wireless] ath10k: enable firmware peer stats info for wmi tlv (Jarod Wilson) [1860496]
+- [wireless] ath5k: remove conversion to bool in ath5k_ani_calibration() (Jarod Wilson) [1860496]
+- [wireless] ath9k: add calibration timeout for AR9002 (Jarod Wilson) [1860496]
+- [wireless] ath9k: invalidate all calibrations at once (Jarod Wilson) [1860496]
+- [wireless] ath9k: interleaved NF calibration on AR9002 (Jarod Wilson) [1860496]
+- [wireless] ath9k: do not miss longcal on AR9002 (Jarod Wilson) [1860496]
+- [wireless] ath9k: remove needless NFCAL_PENDING flag setting (Jarod Wilson) [1860496]
+- [wireless] ath9k: fix AR9002 ADC and NF calibrations (Jarod Wilson) [1860496]
+- [wireless] rtw88: fix sparse warnings for download firmware routine (Jarod Wilson) [1860496]
+- [wireless] ath10k: add statistics of tx retries and tx failed when tx complete disable (Jarod Wilson) [1860496]
+- [wireless] ath10k: enable rx duration report default for wmi tlv (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix reo flush send (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: debug: set NPK buffer in context info (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: add new structs for So devices with long latency (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: add new structure for Qu devices with medium latency (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: tell firmware about required LTR delay (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: update few product names in AX family (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: add cfgs for SoCs with device ID 0x4FD0 (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: add new cards for AX family (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: acpi: read TAS table from ACPI and send it to the FW (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove fw_monitor module parameter (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove deprecated and unused iwl_mvm_keyinfo struct (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: add framework for specific phy configuration (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: move iwl_pcie_ctxt_info_alloc_dma() to user (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: support IWL_FW_INI_TIME_POINT_HOST_ALIVE_TIMEOUT time point (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: add DCM flag to rate pretty-print (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: gen2: minor code cleanups in byte table update (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: add n_window/ampdu to tx_queue debugfs (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: use seq_file for tx_queue debugfs file (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: support version 9 of WOWLAN_GET_STATUS notification (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: dbg: support multiple dumps in legacy dump flow (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move API version lookup to common code (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: nvm: use iwl_nl80211_band_from_channel_idx (Jarod Wilson) [1860496]
+- [net] mac80211: fix two missing documentation entries (Jarod Wilson) [1860496]
+- [net] cfg80211: reject channels/chandefs with KHz offset >= 1000 (Jarod Wilson) [1860496]
+- [net] mac80211: add freq_offset to RX status (Jarod Wilson) [1860496]
+- [net] mac80211: handle channel frequency offset (Jarod Wilson) [1860496]
+- [net] cfg80211: express channels with a KHz component (Jarod Wilson) [1860496]
+- [net] ieee80211: share 802.11 unit conversion helpers (Jarod Wilson) [1860496]
+- [net] mac80211: minstrel_ht_assign_best_tp_rates: remove redundant test (Jarod Wilson) [1860496]
+- [net] mac80211: Fail association when AP has no legacy rates (Jarod Wilson) [1860496]
+- [net] mac80211: agg-tx: add an option to defer ADDBA transmit (Jarod Wilson) [1860496]
+- [net] mac80211: agg-tx: refactor sending addba (Jarod Wilson) [1860496]
+- [net] mac80211: Skip entries with HE membership selector (Jarod Wilson) [1860496]
+- [net] cfg80211: Parse HE membership selector (Jarod Wilson) [1860496]
+- [net] mac80211: Don't destroy auth data in case of anti-clogging (Jarod Wilson) [1860496]
+- [net] mac80211: add twt_protected flag to the bss_conf structure (Jarod Wilson) [1860496]
+- [net] mac80211: implement Operating Mode Notification extended NSS support (Jarod Wilson) [1860496]
+- [net] mac80211: Process multicast RX registration for Action frames (Jarod Wilson) [1860496]
+- [net] nl80211: allow client-only BIGTK support (Jarod Wilson) [1860496]
+- [net] cfg80211: support multicast RX registration (Jarod Wilson) [1860496]
+- [net] cfg80211: change internal management frame registration API (Jarod Wilson) [1860496]
+- [net] mac80211: Report beacon protection failures to user space (Jarod Wilson) [1860496]
+- [net] cfg80211: Unprotected Beacon frame RX indication (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: scan: remove support for fw scan api v13 (Jarod Wilson) [1860496]
+- [net] mac80211: fix drv_config_iface_filter() behaviour (Jarod Wilson) [1860496]
+- [net] mac80211: mlme: remove duplicate AID bookkeeping (Jarod Wilson) [1860496]
+- [wireless] ath10k: drop the TX packet which size exceed credit size for sdio (Jarod Wilson) [1860496]
+- [wireless] ath10k: Fix the invalid tx/rx chainmask configuration (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: initialize mac/bb/rf basic functions (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Organize chip TX/RX FIFO (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: implement set_tx_power_index ops (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: 11N chips don't support H2C queue (Jarod Wilson) [1860496]
+- [wireless] rtw88: decompose while(1) loop of power sequence polling command (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add mac power-on/-off function (Jarod Wilson) [1860496]
+- [wireless] rtw88: no need to send additional information to legacy firmware (Jarod Wilson) [1860496]
+- [wireless] rtw88: add legacy firmware download for 8723D devices (Jarod Wilson) [1860496]
+- [wireless] ath10k: add flush tx packets for SDIO chip (Jarod Wilson) [1860496]
+- [wireless] ath10k: enable alt data of TX path for sdio (Jarod Wilson) [1860496]
+- [wireless] ath10k: add htt TX bundle for sdio (Jarod Wilson) [1860496]
+- [wireless] ath11k: remove conversion to bool in ath11k_debug_fw_stats_process() (Jarod Wilson) [1860496]
+- [wireless] ath11k: remove conversion to bool in ath11k_dp_rxdesc_mpdu_valid() (Jarod Wilson) [1860496]
+- [wireless] rtw88: set power trim according to efuse PG values (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add read_efuse to recognize efuse info from map (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add new chip op efuse_grant() to control efuse access (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add cfg_ldo25 to control LDO25 (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add mac/bb/rf/agc/power_limit tables (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add RF read/write ops (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add power sequence (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: add beamform wrapper functions (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8723d: Add basic chip capabilities (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8723ae: fix warning comparison to bool (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8821ae: use true, false for bool variables (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8723be: use true, false for bool variables (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8192ee: use true, false for bool variables (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8723ae: use true, false for bool variables (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8188ee: use true, false for bool variables (Jarod Wilson) [1860496]
+- [wireless] ath10k: hif: make send_complete_check op optional (Jarod Wilson) [1860496]
+- [wireless] ath10k: sdio: remove _hif_ prefix from functions not part of hif interface (Jarod Wilson) [1860496]
+- [wireless] ath10k: improve power save performance for sdio (Jarod Wilson) [1860496]
+- [wireless] ath10k: rename ath10k_hif_swap_mailbox() to ath10k_hif_start_post() (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: remove leading space (Jarod Wilson) [1860496]
+- [wireless] brcmsmac: make brcms_c_stf_ss_update() void (Jarod Wilson) [1860496]
+- [wireless] brcmsmac: Add missing annotation for brcms_down() (Jarod Wilson) [1860496]
+- [wireless] brcmsmac: Add missing annotation for brcms_rfkill_set_hw_state() (Jarod Wilson) [1860496]
+- [wireless] hostap: Add missing annotations for prism2_bss_list_proc_start() and prism2_bss_list_proc_stop (Jarod Wilson) [1860496]
+- [wireless] rtw88: add support for set/get antennas (Jarod Wilson) [1860496]
+- [wireless] rtw88: make rtw_chip_ops::set_antenna return int (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add dynamic tcl ring selection logic with retry mechanism (Jarod Wilson) [1860496]
+- [wireless] ath11k: cleanup reo command error code overwritten (Jarod Wilson) [1860496]
+- [wireless] ath10k: Fix typo in warning messages (Jarod Wilson) [1860496]
+- [wireless] ath11k: Fix rx_filter flags setting for per peer rx_stats (Jarod Wilson) [1860496]
+- [wireless] ath11k: Fix fw assert by setting proper vht cap (Jarod Wilson) [1860496]
+- [wireless] ath11k: Cleanup in pdev destroy and mac register during crash on recovery (Jarod Wilson) [1860496]
+- [wireless] brcmsmac: make brcms_c_set_mac() void (Jarod Wilson) [1860496]
+- [wireless] rtw88: Add delay on polling h2c command status bit (Jarod Wilson) [1860496]
+- [wireless] brcm80211: remove redundant pointer 'address' (Jarod Wilson) [1860496]
+- [wireless] rtlwifi: rtl8723ae: fix spelling mistake "chang" -> "change" (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: fix wrong location to get firmware feature (Jarod Wilson) [1860496]
+- [wireless] rtw88: Make two functions static (Jarod Wilson) [1860496]
+- [net] cfg80211: fix kernel-doc notation (Jarod Wilson) [1860496]
+- [wireless] ath11k: rx path optimizations (Jarod Wilson) [1860496]
+- [wireless] ath11k: set IRQ_DISABLE_UNLAZY flag for DP interrupts (Jarod Wilson) [1860496]
+- [wireless] ath11k: Fix TWT radio count (Jarod Wilson) [1860496]
+- [wireless] ath11k: Modify the interrupt timer threshold (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix duplication peer create on same radio (Jarod Wilson) [1860496]
+- [wireless] ath10k: change ATH10K_SDIO_BUS_REQUEST_MAX_NUM from 64 to 1024 (Jarod Wilson) [1860496]
+- [wireless] ath10k: disable TX complete indication of htt for sdio (Jarod Wilson) [1860496]
+- [wireless] ath9k: Fix general protection fault in ath9k_hif_usb_rx_cb (Jarod Wilson) [1860496]
+- [wireless] ath9x: Fix stack-out-of-bounds Write in ath9k_hif_usb_rx_cb (Jarod Wilson) [1860496]
+- [wireless] ath9k: Fix use-after-free Write in ath9k_htc_rx_msg (Jarod Wilson) [1860496]
+- [wireless] ath9k: Fix use-after-free Read in ath9k_wmi_ctrl_rx (Jarod Wilson) [1860496]
+- [wireless] ath9k: Fix use-after-free Read in htc_connect_service (Jarod Wilson) [1860496]
+- [wireless] ath10k: fix kernel null pointer dereference (Jarod Wilson) [1860496]
+- [wireless] ath10k: enable radar detection in secondary segment (Jarod Wilson) [1860496]
+- [wireless] ath10k: enable VHT160 and VHT80+80 modes (Jarod Wilson) [1860496]
+- [wireless] ath11k: Avoid mgmt tx count underflow (Jarod Wilson) [1860496]
+- [wireless] ath11k: Increase the tx completion ring size (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix error message to correctly report the command that failed (Jarod Wilson) [1860496]
+- [wireless] ath11k: add pktlog checksum in trace events to support pktlog (Jarod Wilson) [1860496]
+- [wireless] ath10k: Fix the race condition in firmware dump work queue (Jarod Wilson) [1860496]
+- [wireless] ath11k: Add sta debugfs support to configure ADDBA and DELBA (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix compiler warnings without CONFIG_THERMAL (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: remove newline from rs_pretty_print_rate() (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: make iwl_pcie_cmdq_reclaim static (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: bump FW API to 53 for 22000 series (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove IWL_FW_DBG_DOMAIN macro (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: enable yoyo by default (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: scan: support FW APIs with variable number of profiles (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: don't block dumping internal memory when not in SRAM mode (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove support for QnJ HR FPGA (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove support for QnJ Hr STEP A (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: add trans_cfg for devices with long latency (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: add support for version 2 of SOC_CONFIGURATION_CMD (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: add support for non EDCA based measurements (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove unnecessary cfg mangling for Qu C and QuZ with Jf (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: convert QnJ with Jf devices to new config table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: convert all Qu with Jf devices to the new config table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: add HW step to new cfg device table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove some unused extern declarations from iwl-config.h (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move integrated, extra_phy and soc_latency to trans_cfg (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: enable SF also when we have HE (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove redundant iwl9560_2ac_cfg struct (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: rs-fw: fix some indentation (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: scan: support scan req cmd ver 14 (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pass trans and NVM data to HE capability parsing (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: pcie: implement read_config32 (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: yoyo: add PCI config space region type (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: mvm: add soc latency support (Jarod Wilson) [1860496]
+- [wireless] hostap: convert to struct proc_ops (Jarod Wilson) [1860496]
+- [wireless] rtw88: fix non-increase management packet sequence number (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: add USB autosuspend feature support (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: increase max hanger slots from 1K to 3K in fws layer (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: fix the incorrect return value in brcmf_inform_single_bss() (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Fix double freeing in the fmac usb data path (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Fix driver crash on USB control transfer timeout (Jarod Wilson) [1860496]
+- [wireless] rtl8xxxu: Feed current txrate information for mac80211 (Jarod Wilson) [1860496]
+- [wireless] rtl8xxxu: add enumeration for channel bandwidth (Jarod Wilson) [1860496]
+- [wireless] rtw88: add a debugfs entry to enable/disable coex mechanism (Jarod Wilson) [1860496]
+- [wireless] rtw88: add a debugfs entry to dump coex's info (Jarod Wilson) [1860496]
+- [wireless] rtl8xxxu: Fix sparse warning: cast from restricted __le16 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add missing declaration in mt7615.h (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix endianness in unified command (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix mt7663e firmware struct endianness (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822c: config RF table path B before path A (Jarod Wilson) [1860496]
+- [wireless] rtw88: kick off TX packets once for higher efficiency (Jarod Wilson) [1860496]
+- [wireless] rtw88: pci: define a mask for TX/RX BD indexes (Jarod Wilson) [1860496]
+- [wireless] rtw88: associate reserved pages with each vif (Jarod Wilson) [1860496]
+- [wireless] rtw88: extract alloc rsvd_page and h2c skb routines (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: Replace zero-length array with flexible-array member (Jarod Wilson) [1860496]
+- [wireless] wireless: marvell: Replace zero-length array with flexible-array member (Jarod Wilson) [1860496]
+- [wireless] hostap: Replace zero-length array with flexible-array member (Jarod Wilson) [1860496]
+- [wireless] wireless: ti: Replace zero-length array with flexible-array member (Jarod Wilson) [1860496]
+- [wireless] wireless: realtek: Replace zero-length array with flexible-array member (Jarod Wilson) [1860496]
+- [wireless] ath10k: Fill GCMP MIC length for PMF (Jarod Wilson) [1860496]
+- [net] mac80211: driver can remain on channel if not using chan_ctx (Jarod Wilson) [1860496]
+- [net] nl80211: clarify code in nl80211_del_station() (Jarod Wilson) [1860496]
+- [net] cfg80211: Configure PMK lifetime and reauth threshold for PMKSA entries (Jarod Wilson) [1860496]
+- [net] mac80211: Read rx_stats with perCPU pointers (Jarod Wilson) [1860496]
+- [net] mac80211: Allow deleting stations in ibss mode to reset their state (Jarod Wilson) [1860496]
+- [net] cfg80211: Add support for userspace to reset stations in IBSS mode (Jarod Wilson) [1860496]
+- [net] mac80211: consider WLAN_EID_EXT_HE_OPERATION for parsing CRC (Jarod Wilson) [1860496]
+- [uapi] nl80211: add PROTECTED_TWT nl80211 extended feature (Jarod Wilson) [1860496]
+- [net] mac80211: HE: set missing bss_conf fields in AP mode (Jarod Wilson) [1860496]
+- [net] nl80211: pass HE operation element to the driver (Jarod Wilson) [1860496]
+- [net] nl80211/cfg80211: add support for non EDCA based ranging measurement (Jarod Wilson) [1860496]
+- [net] mac80211: don't leave skb->next/prev pointing to stack (Jarod Wilson) [1860496]
+- [net] mac80211: update documentation about tx power (Jarod Wilson) [1860496]
+- [net] mac80211: handle no-preauth flag for control port (Jarod Wilson) [1860496]
+- [net] nl80211: add no pre-auth attribute and ext. feature flag for ctrl. port (Jarod Wilson) [1860496]
+- [net] cfg80211: fix documentation format (Jarod Wilson) [1860496]
+- [wireless] ath11k: Perform per-msdu rx processing (Jarod Wilson) [1860496]
+- [wireless] ath11k: Configure hash based reo destination ring selection (Jarod Wilson) [1860496]
+- [wireless] ath11k: Adding proper validation before accessing tx_stats (Jarod Wilson) [1860496]
+- [wireless] ath11k: dump SRNG stats during FW assert (Jarod Wilson) [1860496]
+- [wireless] ath11k: fill channel info from rx channel (Jarod Wilson) [1860496]
+- [wireless] ath11k: Supporting RX ring backpressure HTT event and stats handling (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move AX200 devices to the new table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove trans entries from COMMON 9260 macro (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move shared clock entries to new table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move pu devices to new table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: remove 9260 devices with 0x1010 and 0x1210 subsytem IDs (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: convert the 9260-1x1 device to use the new parameters (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move TH1 devices to the new table (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: map 9461 and 9462 using RF type and RF ID (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: add Pu/PnJ/Th device values to differentiate them (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: add GNSS differentiation to the device tables (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: add mac/rf types and 160MHz to the device tables (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: combine 9260 cfgs that only change names (Jarod Wilson) [1860496]
+- [wireless] iwlwifi: move the remaining 0x2526 configs to the new table (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7663e support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: get rid of sta_rec_wtbl data structure (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce set_ba uni command (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add more uni mcu commands (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce set_bmc and st_sta for uni commands (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce uni cmd command types (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_init_mac_chain routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_eeprom_parse_hw_band_cap routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add mt7663e support to mt7615_mcu_set_eeprom (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add mt7663e support to mt7615_{driver, firmware}_own (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add mt7663e support to mt7615_reg_map (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_register_map (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce MCU_FW_PREFIX for fw mcu commands (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: move more mcu commands in mt7615_mcu_ops data structure (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rework mt7615_mcu_set_bss_info using skb APIs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rely on skb API for mt7615_mcu_set_eeprom (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: move mt7615_mcu_set_sta in mt7615_mcu_ops (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: move mt7615_mcu_set_bmc to mt7615_mcu_ops (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add mt7615_mcu_ops data structure (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_mcu_send_message routine (Jarod Wilson) [1860496]
+- [wireless] mt76: always init to 0 mcu messages (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_init_device routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: cleanup fw queue just for mmio devices (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_mcu_wait_response (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce mt7615_mcu_fill_msg (Jarod Wilson) [1860496]
+- [wireless] mt76: remove variable 'val' set but not used (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: remove a stray if statement (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: reset MCU timeout counter earlier in watchdog reset (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix monitor injection of beacon frames (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: make dynamic sensitivity adjustment configurable via debugfs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: add upper limit for dynamic sensitivity minimum receive power (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix antenna mask initialization in DBDC mode (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: rely only on data buffer for usb control messagges (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: fix a possible memory leak in mt76u_init (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: loop over all possible rx queues in mt76u_rx_tasklet (Jarod Wilson) [1860496]
+- [wireless] ath11k: add handling for BSS color (Jarod Wilson) [1860496]
+- [wireless] ath11k: add WMI calls required for handling BSS color (Jarod Wilson) [1860496]
+- [wireless] ath11k: set queue_len to 4096 (Jarod Wilson) [1860496]
+- [wireless] ath11k: enable PN offload (Jarod Wilson) [1860496]
+- [wireless] ath11k: handle RX fragments (Jarod Wilson) [1860496]
+- [wireless] rtw88: remove unused member of struct rtw_hal (Jarod Wilson) [1860496]
+- [wireless] ath5k: Use scnprintf() for avoiding potential buffer overflow (Jarod Wilson) [1860496]
+- [wireless] ath11k: Use scnprintf() for avoiding potential buffer overflow (Jarod Wilson) [1860496]
+- [wireless] ath10k: allow qca988x family to support ack rssi of tx data packets (Jarod Wilson) [1860496]
+- [wireless] ath5k: Add proper dependency for ATH5K_AHB (Jarod Wilson) [1860496]
+- [wireless] ath11k: add thermal sensor device support (Jarod Wilson) [1860496]
+- [wireless] ath11k: add thermal cooling device support (Jarod Wilson) [1860496]
+- [wireless] ath10k: fix not registering airtime of 11a station with WMM disable (Jarod Wilson) [1860496]
+- [wireless] ath11k: config reorder queue for all tids during peer setup (Jarod Wilson) [1860496]
+- [wireless] ath10k: fix unsupported chip reset debugs file write (Jarod Wilson) [1860496]
+- [wireless] ath10k: use kzalloc to read for ath10k_sdio_hif_diag_read (Jarod Wilson) [1860496]
+- [wireless] ath10k: start recovery process when read int status fail for sdio (Jarod Wilson) [1860496]
+- [wireless] ath10k: add QCA9377 sdio hw_param item (Jarod Wilson) [1860496]
+- [wireless] ath10k: avoid consecutive OTP download to reduce boot time (Jarod Wilson) [1860496]
+- [net] mac80211: Add api to support configuring TID specific configuration (Jarod Wilson) [1860496]
+- [net] nl80211: Add support to configure TID specific RTSCTS configuration (Jarod Wilson) [1860496]
+- [net] nl80211: Add support to configure TID specific AMPDU configuration (Jarod Wilson) [1860496]
+- [net] nl80211: Add support to configure TID specific retry configuration (Jarod Wilson) [1860496]
+- [net] nl80211: modify TID-config API (Jarod Wilson) [1860496]
+- [net] nl80211: Add NL command to support TID speicific configurations (Jarod Wilson) [1860496]
+- [net] mac80211: Beacon protection using the new BIGTK (STA) (Jarod Wilson) [1860496]
+- [net] mac80211: Beacon protection using the new BIGTK (AP) (Jarod Wilson) [1860496]
+- [net] mac80211: Update BIP to support Beacon frames (Jarod Wilson) [1860496]
+- [net] mac80211: Support BIGTK configuration for Beacon protection (Jarod Wilson) [1860496]
+- [net] cfg80211: Support key configuration for Beacon protection (BIGTK) (Jarod Wilson) [1860496]
+- [net] cfg80211: More error messages for key addition failures (Jarod Wilson) [1860496]
+- [net] cfg80211: fix indentation errors (Jarod Wilson) [1860496]
+- [net] cfg80211: merge documentations of field "dev" (Jarod Wilson) [1860496]
+- [net] cfg80211: merge documentations of field "debugfsdir" (Jarod Wilson) [1860496]
+- [net] cfg80211: drop duplicated documentation of field "reg_notifier" (Jarod Wilson) [1860496]
+- [net] cfg80211: drop duplicated documentation of field "perm_addr" (Jarod Wilson) [1860496]
+- [net] cfg80211: drop duplicated documentation of field "_net" (Jarod Wilson) [1860496]
+- [net] cfg80211: drop duplicated documentation of field "registered" (Jarod Wilson) [1860496]
+- [net] cfg80211: drop duplicated documentation of field "privid" (Jarod Wilson) [1860496]
+- [net] cfg80211: drop duplicated documentation of field "probe_resp_offload" (Jarod Wilson) [1860496]
+- [net] Revert "nl80211: add src and dst addr attributes for control port tx/rx" (Jarod Wilson) [1860496]
+- [net] Revert "mac80211: support NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_MAC_ADDRS" (Jarod Wilson) [1860496]
+- [net] cfg80211: remove support for adjacent channel compensation (Jarod Wilson) [1860496]
+- [net] mac80211: check vif pointer before airtime calculation (Jarod Wilson) [1860496]
+- [net] cfg80211: Pass lockdep expression to RCU lists (Jarod Wilson) [1860496]
+- [wireless] mwifiex: change license text from MARVELL to NXP (Jarod Wilson) [1860496]
+- [wireless] mt76: Introduce mt76_mcu data structure (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: remove rx_mask in mt7615_eeprom_parse_hw_cap (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: rename stat_wq in wq (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: extend RX scatter gather number (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rely on mt76_queues_read for mt7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: do not set HOST_BROADCAST_PS_BUFFERING for mt7615 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rework rx phy index handling (Jarod Wilson) [1860496]
+- [wireless] mt76: fix rounding issues on converting per-chain and combined txpower (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x2: avoid starting the MAC too early (Jarod Wilson) [1860496]
+- [wireless] mt76: avoid extra RCU synchronization on station removal (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix monitor mode on second PHY (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix adding active monitor interfaces (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: switch mt7615_mcu_set_rx_ba to v2 format (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: switch mt7615_mcu_set_tx_ba to v2 format (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: use new tag sta_rec_wtbl (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add starec operating flow for firmware v2 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add a helper to encapsulate sta_rec operation (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: simplify mcu_set_sta flow (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: simplify mcu_set_bmc flow (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add support for testing hardware reset (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: implement hardware reset support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: report firmware log event messages (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix and rework tx power handling (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add Kconfig entry for MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: disable DBDC on MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: decrease rx ring size for MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: implement DMA support for MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: implement probing and firmware loading on MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: disable 5 GHz on MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add calibration free support for MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add eeprom support for MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add dma and tx queue initialization for MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix MT_INT_TX_DONE_ALL definition for MT7622 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: store N9 firmware version instead of CR4 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: split up firmware loading functions (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: move mmio related code from pci.c to mmio.c (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add __aligned(4) to txp structs (Jarod Wilson) [1860496]
+- [wireless] mt76: enable Airtime Queue Limit support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: increase dma mcu rx ring size (Jarod Wilson) [1860496]
+- [wireless] mt76: dma: do not write cpu_idx on rx queue reset until after refill (Jarod Wilson) [1860496]
+- [wireless] mt76: fix handling full tx queues in mt76_dma_tx_queue_skb_raw (Jarod Wilson) [1860496]
+- [wireless] mt76: set dma-done flag for flushed descriptors (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: introduce MT_DRV_RX_DMA_HDR flag (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add endpoint to mt76u_bulk_msg signature (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: introduce mt76u_skb_dma_info routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: take into account different queue mapping for 7663 (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add {read/write}_extended utility routines (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: introduce mt76u_alloc_mcu_queue utility routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: resume all rx queue in mt76u_resume_rx (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add queue parameter to mt76u_rx_urb_alloc (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add mt76u_alloc_rx_queue utility routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: stop/free all possible rx queues (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: introduce mt76u_free_rx_queue utility routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: move mcu buffer allocation in mt76x02u drivers (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add queue id parameter to mt76u_submit_rx_buffers (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: use mt76_queue as mt76u_complete_rx context (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add mt76_queue to mt76u_refill_rx signature (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add mt76_queue to mt76u_get_next_rx_entry signature (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: add mt76u_process_rx_queue utility routine (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76u: check tx_status_data pointer in mt76u_tx_tasklet (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02u: avoid overwrite max_tx_fragments (Jarod Wilson) [1860496]
+- [wireless] mt76: rely on mac80211 utility routines to compute airtime (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: remove leftover routine declaration (Jarod Wilson) [1860496]
+- [wireless] mt76: move WIPHY_FLAG_HAS_CHANNEL_SWITCH in mt76_phy_init (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix endianness in mt7615_mcu_set_eeprom (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: initialize radar specs from host driver (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x2: get rid of leftover target (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add tracing support (Jarod Wilson) [1860496]
+- [wireless] mt76: move mac_txdone tracepoint in mt76 module (Jarod Wilson) [1860496]
+- [wireless] mt76: move dev_irq tracepoint in mt76 module (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add a get_stats() callback (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add per-phy mib statistics (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: report TSF information (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add set_antenna callback (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rework set_channel function (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add missing settings for simultaneous dual-band support (Jarod Wilson) [1860496]
+- [wireless] mt76: fix compilation warning in mt76_eeprom_override() (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: simplify led reg definitions (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: simplify led reg definitions (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: introduce LED support (Jarod Wilson) [1860496]
+- [wireless] mt76: clear skb pointers from rx aggregation reorder buffer during cleanup (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: fix input validation issues for powersave-filtered frames (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: increase MCU command timeout (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: measure channel noise and report it via survey (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: fix MT7615_CFEND_RATE_DEFAULT value (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: minor mt76x02_mac_set_beacon optimization (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02u: do not set NULL beacons (Jarod Wilson) [1860496]
+- [wireless] mt76: usb: use max packet length for m76u_copy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: add channel switch support for usb interfaces (Jarod Wilson) [1860496]
+- [wireless] mt76: speed up usb bulk copy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: remove a copy call for usb speedup (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: add check for invalid vif idx (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: split beaconing (Jarod Wilson) [1860496]
+- [wireless] mt76: mt76x02: omit beacon slot clearing (Jarod Wilson) [1860496]
+- [wireless] mt76: use AC specific reorder timeout (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add set_coverage class support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: set 0 as min coverage_class value (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: report firmware version using ethtool (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: Fix build with older compilers (Jarod Wilson) [1860496]
+- [wireless] mt76: eeprom: add support for big endian eeprom partition (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7603: reset STA_CCA counter setting the channel (Jarod Wilson) [1860496]
+- [wireless] mt76: fix possible undetected invalid MAC address (Jarod Wilson) [1860496]
+- [wireless] mt76: disable bh in mt76_dma_rx_poll (Jarod Wilson) [1860496]
+- [wireless] mt76: fix rx dma ring descriptor state on reset (Jarod Wilson) [1860496]
+- [wireless] mt7615: replace sta_state callback with sta_add/sta_remove (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: defer mcu initialization via workqueue (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: update beacon contents on BSS_CHANGED_BEACON (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add support for registering a second wiphy via debugfs (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: select the correct tx queue for frames sent to the second phy (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: move radio/mac initialization to .start/stop callbacks (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: initialize dbdc settings on interface add (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add multiple wiphy support to the rx path (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: rework chainmask handling (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add multiple wiphy support to the dfs support code (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: remove useless MT_HW_RDD0/1 enum (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add missing register init for dual-wiphy support (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add multiple wiphy support for smart carrier sense (Jarod Wilson) [1860496]
+- [wireless] mt76: mt7615: add dual-phy support for mac80211 ops (Jarod Wilson) [1860496]
+- [wireless] mt76: do not overwrite max_tx_fragments if it has been set (Jarod Wilson) [1860496]
+- [wireless] mt76: move ampdu_ref from mt76_dev to driver struct (Jarod Wilson) [1860496]
+- [wireless] mt76: add ext_phy field to struct mt76_wcid (Jarod Wilson) [1860496]
+- [wireless] mt76: add function for allocating an extra wiphy (Jarod Wilson) [1860496]
+- [wireless] mt76: add priv pointer to struct mt76_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: add multiple wiphy support to mt76_get_min_avg_rssi (Jarod Wilson) [1860496]
+- [wireless] mt76: move txpower and antenna mask to struct mt76_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: move txpower_conf back to driver specific structs (Jarod Wilson) [1860496]
+- [wireless] mt76: move chainmask back to driver specific structs (Jarod Wilson) [1860496]
+- [wireless] mt76: move state from struct mt76_dev to mt76_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: keep a set of software tx queues per phy (Jarod Wilson) [1860496]
+- [wireless] mt76: move channel state to struct mt76_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: add support for an extra wiphy in mt76_sta_state() (Jarod Wilson) [1860496]
+- [wireless] mt76: add support for an extra wiphy in the tx status path (Jarod Wilson) [1860496]
+- [net] mac80211: allow setting queue_len for drivers not using wake_tx_queue (Jarod Wilson) [1860496]
+- [include] ieee80211: add WPA3 OWE AKM suite selector (Jarod Wilson) [1860496]
+- [wireless] mac80211: Fix setting txpower to zero (Jarod Wilson) [1860496]
+- [wireless] mt76: add support for an extra wiphy in the main tx path (Jarod Wilson) [1860496]
+- [wireless] mt76: add support for an extra wiphy in the rx path (Jarod Wilson) [1860496]
+- [wireless] mt76: introduce struct mt76_phy (Jarod Wilson) [1860496]
+- [wireless] mt76: move initialization of some struct members to mt76_alloc_device (Jarod Wilson) [1860496]
+- [wireless] rtw88: Fix incorrect beamformee role setting (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822: Make tables const, reduce data object size (Jarod Wilson) [1860496]
+- [wireless] rtw88: disable TX-AMSDU on 2.4G band (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822c: modify rf protection setting (Jarod Wilson) [1860496]
+- [wireless] rtw88: Use secondary channel offset enumeration (Jarod Wilson) [1860496]
+- [wireless] rtw88: 8822c: update power sequence to v16 (Jarod Wilson) [1860496]
+- [wireless] rtw88: add ciphers to suppress error message (Jarod Wilson) [1860496]
+- [wireless] rtw88: avoid holding mutex for cancel_delayed_work_sync() (Jarod Wilson) [1860496]
+- [wireless] rtw88: move rtw_enter_ips() to the last when config (Jarod Wilson) [1860496]
+- [wireless] rtw88: pci: 8822c should set clock delay to zero (Jarod Wilson) [1860496]
+- [wireless] rtw88: add rtw_read8_mask and rtw_read16_mask (Jarod Wilson) [1860496]
+- [wireless] rtw88: remove unused parameter vif in rtw_lps_pg_info_get() (Jarod Wilson) [1860496]
+- [wireless] brcmfmac: add the BRCM 4364 found in MacBook Pro 15, 2 (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix incorrect peer stats counters update (Jarod Wilson) [1860496]
+- [wireless] ath11k: Fixing dangling pointer issue upon peer delete failure (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix parsing PPDU_CTRL type in pktlog (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix warn-on in disassociation (Jarod Wilson) [1860496]
+- [wireless] ath11k: fix rcu lock protect in peer assoc confirmation (Jarod Wilson) [1860496]
+- [wireless] ath11k: add HE rate accounting to driver (Jarod Wilson) [1860496]
+- [wireless] ath11k: drop tx_info from ath11k_sta (Jarod Wilson) [1860496]
+- [wireless] ath10k: Add support to read btcoex related data from DT (Jarod Wilson) [1860496]
+- [wireless] ath10k: fix few checkpatch warnings (Jarod Wilson) [1860496]
+- [net] mac80211: support NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_MAC_ADDRS (Jarod Wilson) [1860496]
+- [net] nl80211: add src and dst addr attributes for control port tx/rx (Jarod Wilson) [1860496]
+- [net] mac80211: parse also the RSNXE IE (Jarod Wilson) [1860496]
+- [net] cfg80211/mac80211: Allow user space to register for station Rx authentication (Jarod Wilson) [1860496]
+- [include] ieee80211: fix 'the' doubling in comments (Jarod Wilson) [1860496]
+- [net] mac80211: Remove support for changing AP SMPS mode (Jarod Wilson) [1860496]
+- [net] mac80211: Handle SMPS mode changes only in AP mode (Jarod Wilson) [1860496]
+- [net] mac80211: Accept broadcast probe responses on 6GHz band (Jarod Wilson) [1860496]
+- [net] mac80211: HE: set RX NSS (Jarod Wilson) [1860496]
+- [net] mac80211: set station bandwidth from HE capability (Jarod Wilson) [1860496]
+- [net] mac80211: remove supported channels element in 6 GHz if ECSA support (Jarod Wilson) [1860496]
+- [net] mac80211: update condition for HE disablement (Jarod Wilson) [1860496]
+- [net] mac80211: make ieee80211_wep_init() return void (Jarod Wilson) [1860496]
+- [net] mac80211: allow changing TX-related netdev features (Jarod Wilson) [1860496]
+- [net] mac80211: check whether HE connection is allowed by the reg domain (Jarod Wilson) [1860496]
+- [net] mac80211: refactor extended element parsing (Jarod Wilson) [1860496]
+- [net] mac80211: simplify and improve HT/VHT/HE disable code (Jarod Wilson) [1860496]
+- [net] cfg80211: Enhance the AKM advertizement to support per interface (Jarod Wilson) [1860496]
+- [net] cfg80211: add no HE indication to the channel flag (Jarod Wilson) [1860496]
+- [net] mac80211: fix 11w when using encapsulation offloading (Jarod Wilson) [1860496]
+- [net] mac80211: fix tx status for no ack cases (Jarod Wilson) [1860496]
+- [net] mac80211: add handling for BSS color (Jarod Wilson) [1860496]
+- [net] nl80211: add handling for BSS color (Jarod Wilson) [1860496]
+- [net] mac80211: debugfs: improve airtime_flags handler readability (Jarod Wilson) [1860496]
+- [net] mac80211: Remove redundant assertion (Jarod Wilson) [1860496]
+- [net] mac80211: add 802.11 encapsulation offloading support (Jarod Wilson) [1860496]
+- [net] mac80211: Always show airtime debugfs file when TXQs are enabled (Jarod Wilson) [1860496]
+- [include] trivial: mac80211: fix indentation (Jarod Wilson) [1860496]
+
+* Thu Dec 31 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-269.el8]
+- [fs] xfs: force writes to delalloc regions to unwritten (Carlos Maiolino) [1696580]
+- [fs] xfs: refactor xfs_iomap_prealloc_size (Carlos Maiolino) [1696580]
+- [fs] xfs: measure all contiguous previous extents for prealloc size (Carlos Maiolino) [1696580]
+- [fs] xfs: don't fail unwritten extent conversion on writeback due to edquot (Carlos Maiolino) [1696580]
+- [trace] SUNRPC: Fix general protection fault in trace_rpc_xdr_overflow() (Dave Wysochanski) [1906309]
+- [trace] Revert "SUNRPC: Fix general protection fault in trace_rpc_xdr_overflow()" (Dave Wysochanski) [1906309]
+- [uapi] uapi: fix statx attribute value overlap for DAX & MOUNT_ROOT (Eric Sandeen) [1905205]
+- [trace] SUNRPC: Fix oops in the rpc_xdr_buf event class (Scott Mayhew) [1900157]
+- [fs] NFS: Fix listxattr receive buffer size (Scott Mayhew) [1900157]
+- [trace] SUNRPC: Fix general protection fault in trace_rpc_xdr_overflow() (Scott Mayhew) [1900157]
+- [net] SUNRPC: fix copying of multiple pages in gss_read_proxy_verf() (Scott Mayhew) [1900157]
+- [net] svcrdma: fix bounce buffers for unaligned offsets and multiple pages (Scott Mayhew) [1900157]
+- [pci] hv: Document missing hv_pci_protocol_negotiation() parameter (Mohammed Gamal) [1886102]
+- [pci] hv: Make some functions static (Mohammed Gamal) [1886102]
+- [pci] hv: Use struct_size() helper (Mohammed Gamal) [1886102]
+- [pci] hv: Prepare hv_compose_msi_msg() for the VMBus-channel-interrupt-to-vCPU reassignment functionality (Mohammed Gamal) [1886102]
+- [fs] xfs: allow individual quota grace period extension (Bill O'Donnell) [1827913]
+- [fs] xfs: per-type quota timers and warn limits (Bill O'Donnell) [1827913]
+- [fs] xfs: switch xfs_get_defquota to take explicit type (Bill O'Donnell) [1827913]
+- [fs] xfs: pass xfs_dquot to xfs_qm_adjust_dqtimers (Bill O'Donnell) [1827913]
+- [fs] xfs: fix up some whitespace in quota code (Bill O'Donnell) [1827913]
+- [fs] xfs: preserve default grace interval during quotacheck (Bill O'Donnell) [1827913]
+- [fs] quota: honor quota type in Q_XGETQSTATcalls (Bill O'Donnell) [1827913]
+
+* Mon Dec 28 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-268.el8]
+- [fs] NFS: Do uncached readdir when we're seeking a cookie in an empty page cache (Dave Wysochanski) [1893882]
+- [fs] NFS: Reduce number of RPC calls when doing uncached readdir (Dave Wysochanski) [1893882]
+- [fs] NFS: Optimisations for monotonically increasing readdir cookies (Dave Wysochanski) [1893882]
+- [fs] NFS: Improve handling of directory verifiers (Dave Wysochanski) [1893882]
+- [fs] NFS: Handle NFS4ERR_NOT_SAME and NFSERR_BADCOOKIE from readdir calls (Dave Wysochanski) [1893882]
+- [fs] NFS: Allow the NFS generic code to pass in a verifier to readdir (Dave Wysochanski) [1893882]
+- [fs] NFS: Cleanup to remove nfs_readdir_descriptor_t typedef (Dave Wysochanski) [1893882]
+- [fs] NFS: Reduce readdir stack usage (Dave Wysochanski) [1893882]
+- [fs] NFS: nfs_do_filldir() does not return a value (Dave Wysochanski) [1893882]
+- [fs] NFS: More readdir cleanups (Dave Wysochanski) [1893882]
+- [fs] NFS: Support larger readdir buffers (Dave Wysochanski) [1893882]
+- [fs] NFS: Simplify struct nfs_cache_array_entry (Dave Wysochanski) [1893882]
+- [fs] NFS: Replace kmap() with kmap_atomic() in nfs_readdir_search_array() (Dave Wysochanski) [1893882]
+- [fs] NFS: Remove unnecessary kmap in nfs_readdir_xdr_to_array() (Dave Wysochanski) [1893882]
+- [fs] NFS: Don't discard readdir results (Dave Wysochanski) [1893882]
+- [fs] NFS: Clean up directory array handling (Dave Wysochanski) [1893882]
+- [fs] NFS: Clean up nfs_readdir_page_filler() (Dave Wysochanski) [1893882]
+- [fs] NFS: Clean up readdir struct nfs_cache_array (Dave Wysochanski) [1893882]
+- [fs] NFS: Ensure contents of struct nfs_open_dir_context are consistent (Dave Wysochanski) [1893882]
+- [fs] NFSv4.2: condition READDIR's mask for security label based on LSM state (Dave Wysochanski) [1893882]
+- [fs] NFS: Remove unnecessary inode lock in nfs_fsync_dir() (Dave Wysochanski) [1893882]
+- [fs] NFS: Remove unnecessary inode locking in nfs_llseek_dir() (Dave Wysochanski) [1893882]
+- [netdrv] net: intel: Remove in_interrupt() warnings (Ken Cox) [1838732]
+- [netdrv] intel-ethernet: clean up W=1 warnings in kdoc (Ken Cox) [1838732]
+- [netdrv] ixgbevf: use generic power management (Ken Cox) [1838732]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Ken Cox) [1838732]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Ken Cox) [1838732]
+- [iommu] vt-d: Don't dereference iommu_device if IOMMU_API is not built (Vitaly Kuznetsov) [1887216]
+- [iommu] vt-d: Gracefully handle DMAR units with no supported address widths (Vitaly Kuznetsov) [1887216]
+- [iommu] vt-d: Skip TE disabling on quirky gfx dedicated iommu (Vitaly Kuznetsov) [1887216]
+- [netdrv] Revert "mark the intel igc driver as tech preview" (Corinna Vinschen) [1838742]
+- [netdrv] net: intel: Remove in_interrupt() warnings (Corinna Vinschen) [1838742]
+- [netdrv] igc: Clean up nvm_info structure (Corinna Vinschen) [1838742]
+- [netdrv] igc: Reject schedules with a base_time in the future (Corinna Vinschen) [1838742]
+- [netdrv] igc: Export a way to read the PTP timer (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove reset disable flag (Corinna Vinschen) [1838742]
+- [netdrv] igc: Save PTP time before a reset (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove references to SYSTIMR register (Corinna Vinschen) [1838742]
+- [netdrv] igc: Expose LPI counters (Corinna Vinschen) [1838742]
+- [netdrv] igc: Clean RX descriptor error flags (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove timeout check from ptp_tx work (Corinna Vinschen) [1838742]
+- [netdrv] igc: Don't reschedule ptp_tx work (Corinna Vinschen) [1838742]
+- [netdrv] igc: Rename IGC_TSYNCTXCTL_VALID macro (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add new device ID's (Corinna Vinschen) [1838742]
+- [netdrv] intel-ethernet: clean up W=1 warnings in kdoc (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix not considering the TX delay for timestamps (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix wrong timestamp latency numbers (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix PTP initialization (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix static checker warning (Corinna Vinschen) [1838742]
+- [netdrv] igc: Clean up the hw_stats structure (Corinna Vinschen) [1838742]
+- [netdrv] igc: Clean up the mac_info structure (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove ledctl_ fields from the mac_info structure (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix registers definition (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unneeded ICTXQMTC register (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add Receive Descriptor Minimum Threshold Count to clear HW counters (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unneeded variable (Corinna Vinschen) [1838742]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove checking media type during MAC initialization (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unneeded check for copper media type (Corinna Vinschen) [1838742]
+- [netdrv] igc: Refactor the igc_power_down_link() (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove TCP segmentation TX fail counter (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add LPI counters (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix Rx timestamp disabling (Corinna Vinschen) [1838742]
+- [netdrv] igc: Refactor igc_ptp_set_timestamp_mode() (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove UDP filter setup in PTP code (Corinna Vinschen) [1838742]
+- [netdrv] igc: Check __IGC_PTP_TX_IN_PROGRESS instead of ptp_tx_skb (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove duplicate code in Tx timestamp handling (Corinna Vinschen) [1838742]
+- [netdrv] igc: Clean up Rx timestamping logic (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add initial LTR support (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add initial EEE support (Corinna Vinschen) [1838742]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix wrong register name (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove Sequence Error Counter (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add Receive Error Counter (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove symbol error counter (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix IGC_MAX_RXNFC_RULES (Corinna Vinschen) [1838742]
+- [netdrv] igc: Reject NFC rules with multiple matches (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unused flags (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unused descriptor's flags (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove igc_nfc_rule_exit() (Corinna Vinschen) [1838742]
+- [netdrv] igc: Change adapter->nfc_rule_lock to mutex (Corinna Vinschen) [1838742]
+- [netdrv] igc: Change return type from igc_disable_nfc_rule() (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix NFC rule validation (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix NFC rules leak when driver is unloaded (Corinna Vinschen) [1838742]
+- [netdrv] igc: Refactor igc_ethtool_update_nfc_rule() (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix NFC rules restoration (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix NFC rules with multicast addresses (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix NFC rule overwrite cases (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix locking issue when retrieving NFC rules (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix 'sw_idx' type in struct igc_nfc_rule (Corinna Vinschen) [1838742]
+- [netdrv] igc: Refactor igc_ethtool_add_nfc_rule() (Corinna Vinschen) [1838742]
+- [netdrv] igc: Change byte order in struct igc_nfc_filter (Corinna Vinschen) [1838742]
+- [netdrv] igc: Align terms used in NFC support code (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add 'igc_ethtool_' prefix to functions in igc_ethtool.c (Corinna Vinschen) [1838742]
+- [netdrv] igc: Early return in igc_get_ethtool_nfc_entry() (Corinna Vinschen) [1838742]
+- [netdrv] igc: Cleanup _get|set_rxnfc ethtool ops (Corinna Vinschen) [1838742]
+- [netdrv] igc: Get rid of igc_max_channels() (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unused field from igc_nfc_filter (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove per queue good transmited counter register (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove header redirection register (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove obsolete circuit breaker registers (Corinna Vinschen) [1838742]
+- [netdrv] igc: Enable NFC rules based source MAC address (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add support for source address filters in core (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove mac_table from igc_adapter (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove IGC_MAC_STATE_SRC_ADDR flag (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unused registers (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unused IGC_ICS_DRSTA define (Corinna Vinschen) [1838742]
+- [netdrv] igc: Dump ETQF registers (Corinna Vinschen) [1838742]
+- [netdrv] igc: Refactor ethertype filtering code (Corinna Vinschen) [1838742]
+- [netdrv] igc: Fix MAX_ETYPE_FILTER value (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove ethertype filter in PTP code (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove duplicated IGC_RXPBS macro (Corinna Vinschen) [1838742]
+- [netdrv] igc: Refactor VLAN priority filtering code (Corinna Vinschen) [1838742]
+- [netdrv] igc: Return -EOPNOTSUPP when VLAN mask doesn't match (Corinna Vinschen) [1838742]
+- [netdrv] igc: Dump VLANPQF register (Corinna Vinschen) [1838742]
+- [netdrv] igc: Rename IGC_VLAPQF macro (Corinna Vinschen) [1838742]
+- [netdrv] igc: Clean up obsolete NVM defines (Corinna Vinschen) [1838742]
+- [netdrv] igc: remove IGC_REMOVED function (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove PCIe Control register (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unneeded register (Corinna Vinschen) [1838742]
+- [netdrv] igc: Remove unneeded definition (Corinna Vinschen) [1838742]
+- [netdrv] igc: Use netdev log helpers in igc_base.c (Corinna Vinschen) [1838742]
+- [netdrv] igc: Use netdev log helpers in igc_dump.c (Corinna Vinschen) [1838742]
+- [netdrv] igc: Use netdev log helpers in igc_ptp.c (Corinna Vinschen) [1838742]
+- [netdrv] igc: Use netdev log helpers in igc_ethtool.c (Corinna Vinschen) [1838742]
+- [netdrv] igc: add support to eeprom, registers and link self-tests (Corinna Vinschen) [1838742]
+- [netdrv] igc: Use netdev log helpers in igc_main.c (Corinna Vinschen) [1838742]
+- [netdrv] igc: Add ECN support for TSO (Corinna Vinschen) [1838742]
+- [netdrv] ionic: fix mem leak in rx_empty (Jonathan Toppins) [1892492 1887516]
+- [netdrv] ionic: no rx flush in deinit (Jonathan Toppins) [1892492 1887516]
+- [netdrv] ionic: clean up sparse complaints (Jonathan Toppins) [1892492 1887516]
+- [netdrv] ionic: add new bad firmware error code (Jonathan Toppins) [1887516]
+- [netdrv] ionic: use lif ident for filter count (Jonathan Toppins) [1887516]
+- [netdrv] ionic: refill lif identity after fw_up (Jonathan Toppins) [1887516]
+- [netdrv] ionic: disable all queue napi contexts on timeout (Jonathan Toppins) [1887516]
+- [netdrv] ionic: check qcq ptr in ionic_qcq_disable (Jonathan Toppins) [1887516]
+- [netdrv] ionic: clear linkcheck bit on alloc fail (Jonathan Toppins) [1887516]
+- [netdrv] ionic: drain the work queue (Jonathan Toppins) [1887516]
+- [netdrv] ionic: contiguous memory for notifyq (Jonathan Toppins) [1887516]
+- [netdrv] ionic: prevent early watchdog check (Jonathan Toppins) [1887516]
+- [netdrv] ionic: stop watchdog timer earlier on remove (Jonathan Toppins) [1887516 1887263]
+- [netdrv] net: ionic: Remove WARN_ON(in_interrupt()) (Jonathan Toppins) [1887516]
+- [netdrv] net: ionic: Replace in_interrupt() usage (Jonathan Toppins) [1887516]
+- [netdrv] ionic: add DIMLIB to Kconfig (Jonathan Toppins) [1861520]
+- [netdrv] ionic: add devlink firmware update (Jonathan Toppins) [1861520]
+- [netdrv] ionic: update the fw update api (Jonathan Toppins) [1861520]
+- [netdrv] ionic: dynamic interrupt moderation (Jonathan Toppins) [1861520]
+- [netdrv] ionic: fix up debugfs after queue swap (Jonathan Toppins) [1861520]
+- [netdrv] ionic: clarify boolean precedence (Jonathan Toppins) [1861520]
+- [netdrv] ionic: remove unused variable (Jonathan Toppins) [1861520]
+- [netdrv] ionic: clean adminq service routine (Jonathan Toppins) [1861520]
+- [netdrv] ionic: clean up desc_info and cq_info structs (Jonathan Toppins) [1861520]
+- [netdrv] ionic: struct reorder for faster access (Jonathan Toppins) [1861520]
+- [netdrv] ionic: clean up page handling code (Jonathan Toppins) [1861520]
+- [netdrv] ionic: fix txrx work accounting (Jonathan Toppins) [1861520]
+- [netdrv] ionic: pull reset_queues into tx_timeout handler (Jonathan Toppins) [1861520]
+- [netdrv] ionic: change queue count with no reset (Jonathan Toppins) [1861520]
+- [netdrv] ionic: change the descriptor ring length without full reset (Jonathan Toppins) [1861520]
+- [netdrv] ionic: change mtu without full queue rebuild (Jonathan Toppins) [1861520]
+- [netdrv] ionic: use index not pointer for queue tracking (Jonathan Toppins) [1861520]
+- [netdrv] ionic: reduce contiguous memory allocation requirement (Jonathan Toppins) [1861520]
+- [netdrv] ionic: clean up unnecessary non-static functions (Jonathan Toppins) [1861520]
+- [netdrv] ionic: rework and simplify handling of the queue stats block (Jonathan Toppins) [1861520]
+- [netdrv] ionic: remove lif list concept (Jonathan Toppins) [1861520]
+- [netdrv] ionic: use kcalloc for new arrays (Jonathan Toppins) [1861520]
+- [netdrv] ionic: fix up a couple of debug strings (Jonathan Toppins) [1861520]
+- [netdrv] ionic: set MTU floor at ETH_MIN_MTU (Jonathan Toppins) [1861520]
+- [netdrv] ionic_lif: Use devm_kcalloc() in ionic_qcq_alloc() (Jonathan Toppins) [1861520]
+- [netdrv] ionic: separate interrupt for Tx and Rx (Jonathan Toppins) [1861520]
+- [netdrv] ionic: tx separate servicing (Jonathan Toppins) [1861520]
+- [netdrv] ionic: use fewer firmware doorbells on rx fill (Jonathan Toppins) [1861520]
+- [netdrv] ionic: fix memory leak of object 'lid' (Jonathan Toppins) [1861520]
+- [netdrv] ionic: interface file updates (Jonathan Toppins) [1861520]
+- [netdrv] ionic: rearrange reset and bus-master control (Jonathan Toppins) [1861520]
+- [netdrv] ionic: update eid test for overflow (Jonathan Toppins) [1861520]
+- [netdrv] ionic: remove unused ionic_coal_hw_to_usec (Jonathan Toppins) [1861520]
+- [netdrv] ionic: set netdev default name (Jonathan Toppins) [1861520]
+- [netdrv] ionic: get MTU from lif identity (Jonathan Toppins) [1861520]
+- [netdrv] ionic: keep rss hash after fw update (Jonathan Toppins) [1861520]
+- [netdrv] ionic: update filter id after replay (Jonathan Toppins) [1861520]
+- [netdrv] ionic: fix up filter locks and debug msgs (Jonathan Toppins) [1861520]
+- [netdrv] ionic: use offset for ethtool regs data (Jonathan Toppins) [1861520]
+- [md] md/raid5: Allow degraded raid6 to do rmw (Nigel Croxon) [1856838]
+- [md] md/raid5: Fix Force reconstruct-write io stuck in degraded raid5 (Nigel Croxon) [1856838]
+- [md] raid5: don't duplicate code for different paths in handle_stripe (Nigel Croxon) [1856838]
+- [md] raid5-cache: hold spinlock instead of mutex in r5c_journal_mode_show (Nigel Croxon) [1856838]
+- [md] md: print errno in super_written (Nigel Croxon) [1856838]
+- [md] md/raid5: remove the redundant setting of STRIPE_HANDLE (Nigel Croxon) [1856838]
+- [md] md: register new md sysfs file 'uuid' read-only (Nigel Croxon) [1856838]
+- [md] md: fix max sectors calculation for super 1.0 (Nigel Croxon) [1856838]
+- [md] md/raid5: use do_div() for 64 bit divisions in raid5_sync_request (Nigel Croxon) [1856838]
+- [md] md/raid10: avoid deadlock on recovery (Nigel Croxon) [1856838]
+- [md] md-cluster: fix rmmod issue when md_cluster convert bitmap to none (Nigel Croxon) [1856838]
+- [md] md-cluster: fix safemode_delay value when converting to clustered bitmap (Nigel Croxon) [1856838]
+- [md] md/raid5: support config stripe_size by sysfs entry (Nigel Croxon) [1856838]
+- [md] md/raid5: set default stripe_size as 4096 (Nigel Croxon) [1856838]
+- [md] md/raid456: convert macro STRIPE_* to RAID5_STRIPE_* (Nigel Croxon) [1856838]
+- [md] raid5: remove the meaningless check in raid5_make_request (Nigel Croxon) [1856838]
+- [md] raid5: put the comment of clear_batch_ready to the right place (Nigel Croxon) [1856838]
+- [md] raid5: call clear_batch_ready before set STRIPE_ACTIVE (Nigel Croxon) [1856838]
+- [md] md: raid10: Fix compilation warning (Nigel Croxon) [1856838]
+- [md] md: raid5: Fix compilation warning (Nigel Croxon) [1856838]
+- [md] md: raid5-cache: Remove set but unused variable (Nigel Croxon) [1856838]
+- [md] md: Fix compilation warning (Nigel Croxon) [1856838]
+- [md] md-cluster: fix wild pointer of unlock_all_bitmaps() (Nigel Croxon) [1856838]
+- [md] md/raid5-cache: clear MD_SB_CHANGE_PENDING before flushing stripes (Nigel Croxon) [1856838]
+- [md] md: fix deadlock causing by sysfs_notify (Nigel Croxon) [1856838]
+- [md] md: raid0/linear: fix dereference before null check on pointer mddev (Nigel Croxon) [1856838]
+- [md] md/raid1: Replace zero-length array with flexible-array (Nigel Croxon) [1856838]
+- [md] md: add a newline when printing parameter 'start_ro' by sysfs (Nigel Croxon) [1856838]
+- [md] md: stop using ->queuedata (Nigel Croxon) [1856838]
+- [md] md/raid1: release pending accounting for an I/O only after write-behind is also finished (Nigel Croxon) [1856838]
+- [md] md: remove redundant memalloc scope API usage (Nigel Croxon) [1856838]
+- [md] raid5: update code comment of scribble_alloc() (Nigel Croxon) [1856838]
+- [md] raid5: remove gfp flags from scribble_alloc() (Nigel Croxon) [1856838]
+- [md] md: use memalloc scope APIs in mddev_suspend()/mddev_resume() (Nigel Croxon) [1856838]
+- [md] md: remove the extra line for ->hot_add_disk (Nigel Croxon) [1856838]
+- [md] md: flush md_rdev_misc_wq for HOT_ADD_DISK case (Nigel Croxon) [1856838]
+- [md] md: don't flush workqueue unconditionally in md_open (Nigel Croxon) [1856838]
+- [md] md: add new workqueue for delete rdev (Nigel Croxon) [1856838]
+- [md] md: add checkings before flush md_misc_wq (Nigel Croxon) [1856838]
+- [md] md: check arrays is suspended in mddev_detach before call quiesce operations (Nigel Croxon) [1856838]
+
+* Wed Dec 23 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-267.el8]
+- [scsi] storvsc: Fix error return in storvsc_probe() (Cathy Avery) [1895026]
+- [scsi] storvsc: Support PAGE_SIZE larger than 4K (Cathy Avery) [1895026]
+- [kernel] hv: hyperv.h: Introduce some hvpfn helper functions (Cathy Avery) [1895026]
+- [scsi] storvsc: Add validation for untrusted Hyper-V values (Cathy Avery) [1895026]
+- [scsi] storvsc: Fix spelling mistake (Cathy Avery) [1895026]
+- [scsi] storvsc: Remove memset before memory freeing in storvsc_suspend() (Cathy Avery) [1895026]
+- [net] tipc: fix incorrect setting window for bcast link (Xin Long) [1893085]
+- [net] tipc: re-configure queue limit for broadcast link (Xin Long) [1893085]
+- [net] tipc: fix NULL pointer dereference in tipc_named_rcv (Xin Long) [1893085]
+- [net] tipc: Supply missing udp_media.h include file (Xin Long) [1893085]
+- [net] tipc: add automatic rekeying for encryption key (Xin Long) [1893085]
+- [net] tipc: add automatic session key exchange (Xin Long) [1893085]
+- [net] tipc: introduce encryption master key (Xin Long) [1893085]
+- [net] tipc: optimize key switching time and logic (Xin Long) [1893085]
+- [net] tipc: Fix memory leak in tipc_group_create_member() (Xin Long) [1893085]
+- [net] tipc: fix shutdown() of connection oriented socket (Xin Long) [1893085]
+- [net] tipc: fix a deadlock when flushing scheduled work (Xin Long) [1893085]
+- [net] tipc: fix shutdown() of connectionless socket (Xin Long) [1893085]
+- [net] tipc: fix using smp_processor_id() in preemptible (Xin Long) [1893085]
+- [net] tipc: fix use-after-free in tipc_bcast_get_mode (Xin Long) [1893085]
+- [net] tipc: call rcu_read_lock() in tipc_aead_encrypt_done() (Xin Long) [1893085]
+- [net] tipc: fix uninit skb->data in tipc_nl_compat_dumpit() (Xin Long) [1893085]
+- [net] tipc: update a binding service via broadcast (Xin Long) [1893085]
+- [hv] hv_balloon: do adjust_managed_page_count() when ballooning/un-ballooning (Vitaly Kuznetsov) [1894717]
+- [hv] hv_balloon: simplify math in alloc_balloon_pages() (Vitaly Kuznetsov) [1894717]
+- [md] dm integrity: don't use drivers that have CRYPTO_ALG_ALLOCATES_MEMORY (Vladis Dronov) [1903849]
+- [md] dm crypt: don't use drivers that have CRYPTO_ALG_ALLOCATES_MEMORY (Vladis Dronov) [1903849]
+- [crypto] crypto: drivers - set the flag CRYPTO_ALG_ALLOCATES_MEMORY (Vladis Dronov) [1903849]
+- [include] crypto: algapi - introduce the flag CRYPTO_ALG_ALLOCATES_MEMORY (Vladis Dronov) [1903849]
+- [fs] iomap: Set all uptodate bits for an Uptodate page (Brian Foster) [1654127]
+- [scsi] scsi: ibmvfc: Avoid link down on FS9100 canister reboot (Desnes Augusto Nunes do Rosario) [1882613]
+- [scsi] scsi: ibmvfc: Use compiler attribute defines instead of __attribute__() (Desnes Augusto Nunes do Rosario) [1882613]
+- [arm64] arm64: Enable PCI write-combine resources under sysfs (Petr Oros) [1872943]
+- [scsi] scsi: mpt3sas: Bump driver version to 35.101.00.00 (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Add module parameter multipath_on_hba (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Handle vSES vphy object during HBA reset (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Add bypass_dirty_port_flag parameter (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Handling HBA vSES device (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Set valid PhysicalPort in SMPPassThrough (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Update hba_port objects after host reset (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Get sas_device objects using device's rphy (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Rename transport_del_phy_from_an_existing_port() (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Get device objects using sas_address & portID (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Update hba_port's sas_address & phy_mask (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Rearrange _scsih_mark_responding_sas_device() (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Allocate memory for hba_port objects (Tomas Henzl) [1888543]
+- [scsi] scsi: mpt3sas: Define hba_port structure (Tomas Henzl) [1888543]
+
+* Tue Dec 22 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-266.el8]
+- [netdrv] net: phy: realtek: Modify 2.5G PHY name to RTL8226 (Josef Oskera) [1889854]
+- [netdrv] net: phy: realtek: enable ALDPS to save power for RTL8211F (Josef Oskera) [1889854]
+- [netdrv] net: phy: realtek: fix rtl8211e rx/tx delay config (Josef Oskera) [1889854]
+- [netdrv] net: phy: realtek: add support for RTL8125B-internal PHY (Josef Oskera) [1889854]
+- [netdrv] net: phy: realtek: add delay to resume path of certain internal PHY's (Josef Oskera) [1889854]
+- [netdrv] net: phy: realtek: read actual speed to detect downshift (Josef Oskera) [1889854]
+- [netdrv] r8169: fix issue with forced threading in combination with shared interrupts (Josef Oskera) [1889854]
+- [netdrv] r8169: fix operation under forced interrupt threading (Josef Oskera) [1889854]
+- [netdrv] r8169: factor out handling rtl8169_stats (Josef Oskera) [1889854]
+- [netdrv] r8169: consider that PHY reset may still be in progress after applying firmware (Josef Oskera) [1889854]
+- [netdrv] r8169: fix data corruption issue on RTL8402 (Josef Oskera) [1889854]
+- [netdrv] r8169: fix handling ether_clk (Josef Oskera) [1889854]
+- [netdrv] r8169: fix RTL8168f/RTL8411 EPHY config (Josef Oskera) [1889854]
+- [netdrv] r8169: remove member irq_enabled from struct rtl8169_private (Josef Oskera) [1889854]
+- [netdrv] r8169: use napi_complete_done return value (Josef Oskera) [1889854]
+- [netdrv] r8169: allow to enable ASPM on RTL8125A (Josef Oskera) [1889854]
+- [netdrv] r8169: add support for RTL8125B (Josef Oskera) [1889854]
+- [netdrv] r8169: sync support for RTL8401 with vendor driver (Josef Oskera) [1889854]
+- [netdrv] r8169: merge handling of RTL8101e and RTL8100e (Josef Oskera) [1889854]
+- [netdrv] r8169: rename RTL8125 to RTL8125A (Josef Oskera) [1889854]
+- [netdrv] r8169: improve rtl8169_runtime_resume (Josef Oskera) [1889854]
+- [netdrv] r8169: remove driver-specific mutex (Josef Oskera) [1889854]
+- [netdrv] r8169: use RTNL to protect critical sections (Josef Oskera) [1889854]
+- [netdrv] r8169: add rtl8169_up (Josef Oskera) [1889854]
+- [netdrv] r8169: remove no longer needed checks for device being runtime-active (Josef Oskera) [1889854]
+- [netdrv] r8169: mark device as not present when in PCI D3 (Josef Oskera) [1889854]
+- [netdrv] r8169: allow setting irq coalescing if link is down (Josef Oskera) [1889854]
+- [netdrv] r8169: move switching optional clock on/off to pll power functions (Josef Oskera) [1889854]
+- [netdrv] r8169: move updating counters to rtl8169_down (Josef Oskera) [1889854]
+- [netdrv] r8169: move napi_disable call and rename rtl8169_hw_reset (Josef Oskera) [1889854]
+- [netdrv] r8169: replace synchronize_rcu with synchronize_net (Josef Oskera) [1889854]
+- [netdrv] r8169: improve setting WoL on runtime-resume (Josef Oskera) [1889854]
+- [netdrv] r8169: remove unused constant RsvdMask (Josef Oskera) [1889854]
+- [netdrv] r8169: add info for DASH being enabled (Josef Oskera) [1889854]
+- [netdrv] r8169: fix failing WoL (Josef Oskera) [1889854]
+- [netdrv] r8169: improve handling power management ops (Josef Oskera) [1889854]
+- [netdrv] r8169: make rtl8169_down central chip quiesce function (Josef Oskera) [1889854]
+- [netdrv] r8169: move some calls to rtl8169_hw_reset (Josef Oskera) [1889854]
+- [netdrv] r8169: don't reset tx ring indexes in rtl8169_tx_clear (Josef Oskera) [1889854]
+- [netdrv] r8169: enable WAKE_PHY as only WoL source when runtime-suspending (Josef Oskera) [1889854]
+- [netdrv] r8169: change driver data type (Josef Oskera) [1889854]
+- [netdrv] r8169: improve rtl_remove_one (Josef Oskera) [1889854]
+- [netdrv] r8169: sync RTL8168f/RTL8411 hw config with vendor driver (Josef Oskera) [1889854]
+- [netdrv] r8169: sync RTL8168evl hw config with vendor driver (Josef Oskera) [1889854]
+- [netdrv] r8169: sync RTL8168h hw config with vendor driver (Josef Oskera) [1889854]
+- [netdrv] r8169: sync RTL8168g hw config with vendor driver (Josef Oskera) [1889854]
+- [netdrv] r8169: remove mask argument from r8168ep_ocp_read (Josef Oskera) [1889854]
+- [netdrv] r8169: remove mask argument from r8168dp_ocp_read (Josef Oskera) [1889854]
+- [netdrv] r8169: remove mask argument from rtl_w0w1_eri (Josef Oskera) [1889854]
+- [netdrv] r8169: work around an irq coalescing related tx timeout (Josef Oskera) [1889854]
+- [netdrv] r8169: improve rtl8169_mark_to_asic (Josef Oskera) [1889854]
+- [netdrv] r8169: make rtl_rx better readable (Josef Oskera) [1889854]
+- [netdrv] r8169: remove remaining call to mdiobus_unregister (Josef Oskera) [1889854]
+- [netdrv] r8169: don't include linux/moduleparam.h (Josef Oskera) [1889854]
+- [netdrv] r8169: remove not needed checks in rtl8169_set_eee (Josef Oskera) [1889854]
+- [netdrv] r8169: improve reset handling for chips from RTL8168g (Josef Oskera) [1889854]
+- [netdrv] r8169: add helper rtl_wait_txrx_fifo_empty (Josef Oskera) [1889854]
+- [netdrv] r8169: add helper rtl_enable_rxdvgate (Josef Oskera) [1889854]
+- [netdrv] r8169: add helper r8168g_wait_ll_share_fifo_ready (Josef Oskera) [1889854]
+- [netdrv] r8169: use fsleep in polling functions (Josef Oskera) [1889854]
+- [netdrv] r8169: use new helper eth_hw_addr_crc (Josef Oskera) [1889854]
+- [netdrv] r8169: switch from netif_xxx message functions to netdev_xxx (Josef Oskera) [1889854]
+- [netdrv] r8169: remove "out of memory" error message from rtl_request_firmware (Josef Oskera) [1889854]
+- [netdrv] r8169: simplify counter handling (Josef Oskera) [1889854]
+- [netdrv] r8169: remove redundant driver message when entering promiscuous mode (Josef Oskera) [1889854]
+- [netdrv] r8169: remove not needed parameter in rtl8169_set_magic_reg (Josef Oskera) [1889854]
+- [netdrv] r8169: configure PME_SIGNAL for RTL8125 too (Josef Oskera) [1889854]
+- [netdrv] r8169: improve max jumbo packet size definition (Josef Oskera) [1889854]
+- [netdrv] r8169: add check for invalid parameter combination in rtl_set_coalesce (Josef Oskera) [1889854]
+- [netdrv] r8169: improve rtl_set_coalesce (Josef Oskera) [1889854]
+- [netdrv] r8169: improve interrupt coalescing parameter handling (Josef Oskera) [1889854]
+- [netdrv] r8169: improve rtl_coalesce_choose_scale (Josef Oskera) [1889854]
+- [netdrv] r8169: improve rtl_get_coalesce (Josef Oskera) [1889854]
+- [netdrv] r8169: merge scale for tx and rx irq coalescing (Josef Oskera) [1889854]
+- [netdrv] r8169: don't pass net_device to irq coalescing sub-functions (Josef Oskera) [1889854]
+- [netdrv] r8169: improve error message if no dedicated PHY driver is found (Josef Oskera) [1889854]
+- [netdrv] r8169: improve configuring RxConfig register (Josef Oskera) [1889854]
+- [netdrv] r8169: improve handling CPCMD_MASK (Josef Oskera) [1889854]
+- [netdrv] r8169: use devm_mdiobus_register (Josef Oskera) [1889854]
+- [netdrv] r8169: change wmb to smb_wmb in rtl8169_start_xmit (Josef Oskera) [1889854]
+- [netdrv] r8169: inline rtl8169_make_unusable_by_asic (Josef Oskera) [1889854]
+- [netdrv] r8169: inline rtl8169_mark_as_last_descriptor (Josef Oskera) [1889854]
+- [netdrv] r8169: remove PHY resume delay that is handled in the PHY driver now (Josef Oskera) [1889854]
+- [netdrv] r8169: add workaround for RTL8168evl TSO hw issues (Josef Oskera) [1889854]
+- [netdrv] r8169: improve rtl8169_tso_csum_v2 (Josef Oskera) [1889854]
+- [netdrv] r8169: use rtl8169_set_features in rtl8169_init_one (Josef Oskera) [1889854]
+- [netdrv] r8169: preserve VLAN setting on RTL8125 in rtl_init_rxcfg (Josef Oskera) [1889854]
+- [netdrv] r8169: remove NETIF_F_HIGHDMA from vlan_features (Josef Oskera) [1889854]
+- [netdrv] r8169: move setting OCP base to generic init code (Josef Oskera) [1889854]
+- [s390] sclp: provide extended sccb support (Thomas Huth) [1798484]
+- [s390] sclp: avoid copy of sclp_info_sccb (Thomas Huth) [1798484]
+- [s390] sclp: use memblock for early read cpu info (Thomas Huth) [1798484]
+- [include] ptp: add stub function for ptp_get_msgtype() (Ivan Vecera) [1899217]
+- [include] ptp: Add generic ptp message type function (Ivan Vecera) [1899217]
+- [net] ptp: Add generic ptp v2 header parsing function (Ivan Vecera) [1899217]
+- [video] hyperv_fb: Fix the cache type when mapping the VRAM (Mohammed Gamal) [1886106]
+- [video] hyperv_fb: include vmalloc.h (Mohammed Gamal) [1886106]
+- [video] hyperv: hyperv_fb: Use physical memory for fb on HyperV Gen 1 VMs (Mohammed Gamal) [1886106]
+- [video] hyperv_fb: Fix hibernation for the deferred IO feature (Mohammed Gamal) [1886106]
+- [video] hyperv: hyperv_fb: Support deferred IO for Hyper-V frame buffer driver (Mohammed Gamal) [1886106]
+- [uio] uio_hv_generic: add missed sysfs_remove_bin_file (Mohammed Gamal) [1886106]
+- [input] hyperv-keyboard: Use VMBUS_RING_SIZE() for ringbuffer sizes (Mohammed Gamal) [1886106]
+- [hid] hyperv: Use VMBUS_RING_SIZE() for ringbuffer sizes (Mohammed Gamal) [1886106]
+- [netdrv] hv_netvsc: Add validation for untrusted Hyper-V values (Mohammed Gamal) [1886097]
+- [netdrv] hv_netvsc: Fix the queue_mapping in netvsc_vf_xmit() (Mohammed Gamal) [1886097]
+- [netdrv] hv_netvsc: Remove "unlikely" from netvsc_select_queue (Mohammed Gamal) [1886097]
+- [netdrv] hv_netvsc: do not use VF device if link is down (Mohammed Gamal) [1886097]
+- [netdrv] hyperv: dump TX indirection table to ethtool regs (Mohammed Gamal) [1886097]
+- [netdrv] hv_netvsc: add support for vlans in AF_PACKET mode (Mohammed Gamal) [1886097]
+- [netdrv] hv_netvsc: Fix netvsc_start_xmit's return type (Mohammed Gamal) [1886097]
+- [netdrv] hv_netvsc: Remove unnecessary round_up for recv_completion_cnt (Mohammed Gamal) [1886097]
+- [netdrv] hv_netvsc: use new helper tcp_v6_gso_csum_prep (Mohammed Gamal) [1886097]
+- [tools] kvm_stat: add sample systemd unit file (Thomas Huth) [1851123]
+- [tools] kvm_stat: Add command line switch '-L' to log to file (Thomas Huth) [1851123]
+- [tools] kvm_stat: add command line switch '-z' to skip zero records (Thomas Huth) [1851123]
+- [mm] mm/gup: Mark lock taken only after a successful retake (Chris von Recklinghausen) [1885412]
+- [mm] mm/filemap.c: fix a data race in filemap_fault() (Chris von Recklinghausen) [1885412]
+- [mm] mm: fix kthread_use_mm() vs TLB invalidate (Chris von Recklinghausen) [1885412]
+- [fs] kernel: set USER_DS in kthread_use_mm (Chris von Recklinghausen) [1885412]
+- [drm] kernel: better document the use_mm/unuse_mm API contract (Chris von Recklinghausen) [1885412]
+- [kernel] kernel: move use_mm/unuse_mm to kthread.c (Chris von Recklinghausen) [1885412]
+- [drm] drm/i915: convert get_user_pages() --> pin_user_pages() (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: introduce pin_user_pages_fast_only() (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: refactor and de-duplicate gup_fast() code (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: move __get_user_pages_fast() down a few lines in gup.c (Chris von Recklinghausen) [1885412]
+- [mm] gup: document and work around "COW can break either way" issue (Chris von Recklinghausen) [1885412]
+- [vfio] vfio: checking of validity of user vaddr in vfio_dma_rw (Chris von Recklinghausen) [1885412]
+- [fs] mm/userfaultfd: honor FAULT_FLAG_KILLABLE in fault path (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: allow to react to fatal signals (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: allow VM_FAULT_RETRY for multiple times (Chris von Recklinghausen) [1885412]
+- [mm] mm: allow VM_FAULT_RETRY for multiple times (Chris von Recklinghausen) [1885412]
+- [fs] mm: introduce FAULT_FLAG_INTERRUPTIBLE (Chris von Recklinghausen) [1885412]
+- [mm] mm: introduce FAULT_FLAG_DEFAULT (Chris von Recklinghausen) [1885412]
+- [fs] userfaultfd: don't retake mmap_sem to emulate NOPAGE (Chris von Recklinghausen) [1885412]
+- [include] mm: return faster for non-fatal signals in user mode faults (Chris von Recklinghausen) [1885412]
+- [mm] powerpc/mm: use helper fault_signal_pending() (Chris von Recklinghausen) [1885412]
+- [mm] arm64/mm: use helper fault_signal_pending() (Chris von Recklinghausen) [1885412]
+- [mm] x86/mm: use helper fault_signal_pending() (Chris von Recklinghausen) [1885412]
+- [mm] mm: introduce fault_signal_pending() (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: fix __get_user_pages() on fault retry of hugetlb (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: rename "nonblocking" to "locked" where proper (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: rename nr as nr_pinned in get_user_pages_fast() (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: require FOLL_GET for get_user_pages_fast() (Chris von Recklinghausen) [1885412]
+- [mm] mm/filemap.c: don't bother dropping mmap_sem for zero size readahead (Chris von Recklinghausen) [1885412]
+- [mm] mm/slb: export __kmalloc_track(_node)_caller (Chris von Recklinghausen) [1885412]
+- [mm] mm: Add vmf_insert_pfn_xxx_prot() for huge page-table entries (Chris von Recklinghausen) [1885412]
+- [vfio] vfio: introduce vfio_dma_rw to read/write a range of IOVAs (Chris von Recklinghausen) [1885412]
+- [infiniband] mm, tree-wide: rename put_user_page*() to unpin_user_page*() (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup_benchmark: use proper FOLL_WRITE flags instead of hard-coding "1" (Chris von Recklinghausen) [1885412]
+- [mm] powerpc: book3s64: convert to pin_user_pages() and put_user_page() (Chris von Recklinghausen) [1885412]
+- [vfio] vfio, mm: pin_user_pages (FOLL_PIN) and put_user_page() conversion (Chris von Recklinghausen) [1885412]
+- [media] media/v4l2-core: pin_user_pages (FOLL_PIN) and put_user_page() conversion (Chris von Recklinghausen) [1885412]
+- [net] net/xdp: set FOLL_PIN via pin_user_pages() (Chris von Recklinghausen) [1885412]
+- [drm] drm/via: set FOLL_PIN via pin_user_pages_fast() (Chris von Recklinghausen) [1885412]
+- [mm] mm/process_vm_access: set FOLL_PIN via pin_user_pages_remote() (Chris von Recklinghausen) [1885412]
+- [infiniband] IB/{core, hw, umem}: set FOLL_PIN via pin_user_pages*(), fix up ODP (Chris von Recklinghausen) [1885412]
+- [documentation] mm/gup: introduce pin_user_pages*() and FOLL_PIN (Chris von Recklinghausen) [1885412]
+- [media] media/v4l2-core: set pages dirty upon releasing DMA buffers (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: allow FOLL_FORCE for get_user_pages_fast() (Chris von Recklinghausen) [1885412]
+- [vfio] vfio: fix FOLL_LONGTERM use, simplify get_user_pages_remote() call (Chris von Recklinghausen) [1885412]
+- [mm] mm: fix get_user_pages_remote()'s handling of FOLL_LONGTERM (Chris von Recklinghausen) [1885412]
+- [mm] mm/gup: factor out duplicate code from four routines (Chris von Recklinghausen) [1885412]
+- [mm] mm: drop mmap_sem before calling balance_dirty_pages() in write fault (Chris von Recklinghausen) [1885412]
+- [vfio] vfio/type1: untag user pointers in vaddr_get_pfn (Chris von Recklinghausen) [1885412]
+- [mm] mm: untag user pointers in mm/gup.c (Chris von Recklinghausen) [1885412]
+- [drm] drivers/gpu/drm/via: convert put_page() to put_user_page*() (Chris von Recklinghausen) [1885412]
+- [fs] fs/io_uring.c: convert put_page() to put_user_page*() (Chris von Recklinghausen) [1885412]
+- [mm] mm: mark the page referenced in gup_hugepte (Chris von Recklinghausen) [1885412]
+- [mm] mm: switch gup_hugepte to use try_get_compound_head (Chris von Recklinghausen) [1885412]
+- [mm] mm: move the powerpc hugepd code to mm/gup.c (Chris von Recklinghausen) [1885412]
+- [mm] mm: validate get_user_pages_fast flags (Chris von Recklinghausen) [1885412]
+- [mm] mm: consolidate the get_user_pages* implementations (Chris von Recklinghausen) [1885412]
+- [mm] mm: reorder code blocks in gup.c (Chris von Recklinghausen) [1885412]
+- [mm] mm: rename CONFIG_HAVE_GENERIC_GUP to CONFIG_HAVE_FAST_GUP (Chris von Recklinghausen) [1885412]
+- [x86] mm: lift the x86_32 PAE version of gup_get_pte to common code (Chris von Recklinghausen) [1885412]
+- [s390] mm: simplify gup_fast_permitted (Chris von Recklinghausen) [1885412]
+- [mm] mm: use untagged_addr() for get_user_pages_fast addresses (Chris von Recklinghausen) [1885412]
+- [mm] powerpc/mm: make gup_hugepte() static (Chris von Recklinghausen) [1885412]
+- [mm] filemap: drop the mmap_sem for all blocking operations (Chris von Recklinghausen) [1885412]
+- [mm] filemap: kill page_cache_read usage in filemap_fault (Chris von Recklinghausen) [1885412]
+- [mm] filemap: pass vm_fault to the mmap ra helpers (Chris von Recklinghausen) [1885412]
+- [mm] docs/core-api/mm: fix return value descriptions in mm/ (Chris von Recklinghausen) [1885412]
+- [mm] docs/mm: vmalloc: re-indent kernel-doc comemnts (Chris von Recklinghausen) [1885412]
+- [drm] drm/via: mark expected switch fall-throughs (Chris von Recklinghausen) [1885412]
+- [mm] x86/mm: Break out kernel address space handling (Chris von Recklinghausen) [1885412]
+- [kernel] locking/rwsem: Remove reader optimistic spinning (Waiman Long) [1895046]
+- [kernel] locking/rwsem: Enable reader optimistic lock stealing (Waiman Long) [1895046]
+- [kernel] locking/rwsem: Prevent potential lock starvation (Waiman Long) [1895046]
+- [kernel] locking/rwsem: Pass the current atomic count to rwsem_down_read_slowpath() (Waiman Long) [1895046]
+- [kernel] locking/rwsem: Fold __down_{read,write}*() (Waiman Long) [1895046]
+- [kernel] locking/rwsem: Introduce rwsem_write_trylock() (Waiman Long) [1895046]
+- [kernel] locking/rwsem: Better collate rwsem_read_trylock() (Waiman Long) [1895046]
+- [kernel] rwsem: Implement down_read_interruptible (Waiman Long) [1895046]
+- [kernel] rwsem: Implement down_read_killable_nested (Waiman Long) [1895046]
+- [powerpc] powerpc/perf: Fix crash with is_sier_available when pmu is not set (Steve Best) [1904225]
+- [powerpc] kvm: ppc: book3s hv: xive: Fix vCPU id sanity check (Greg Kurz) [1902709]
+- [net] ip6_gre: set dev->hard_header_len when using header_ops (Antoine Tenart) [1895789]
+- [fs] xfs: flush new eof page on truncate to avoid post-eof corruption (Brian Foster) [1878495]
+- [netdrv] bonding: set dev->needed_headroom in bond_setup_by_slave() (Antoine Tenart) [1903073]
+- [net] netfilter: bridge: reset skb->pkt_type after NF_INET_POST_ROUTING traversal (Antoine Tenart) [1901026]
+- [infiniband] RDMA/umem: Prevent small pages from being returned by ib_umem_find_best_pgsz() (Kamal Heib) [1857605]
+- [infiniband] IB/hfi1: Fix error return code in hfi1_init_dd() (Kamal Heib) [1857605]
+- [infiniband] RDMA/pvrdma: Fix missing kfree() in pvrdma_register_device() (Kamal Heib) [1857605]
+- [infiniband] RDMA/cm: Make the local_id_table xarray non-irq (Kamal Heib) [1857605]
+- [infiniband] IB/srpt: Fix memory leak in srpt_add_one (Kamal Heib) [1857605]
+- [infiniband] RDMA/bnxt_re: Set queue pair state when being queried (Kamal Heib) [1894681 1857605]
+- [infiniband] RDMA/rxe: Handle skb_clone() failure in rxe_recv.c (Kamal Heib) [1857605]
+- [infiniband] RDMA/rxe: Fix bug rejecting all multicast packets (Kamal Heib) [1857605]
+- [infiniband] RDMA/rxe: Fix skb lifetime in rxe_rcv_mcast_pkt() (Kamal Heib) [1857605]
+- [infiniband] IB/rdmavt: Fix sizeof mismatch (Kamal Heib) [1857605]
+- [infiniband] RDMA/ipoib: Set rtnl_link_ops for ipoib interfaces (Kamal Heib) [1883480 1883478 1857605]
+- [infiniband] RDMA/addr: Fix race with netevent_callback()/rdma_addr_cancel() (Kamal Heib) [1857605]
+- [rdma] RDMA/umem: Fix signature of stub ib_umem_find_best_pgsz() (Kamal Heib) [1857605]
+- [x86] kretprobe: Prevent triggering kretprobe from within kprobe_flush_task (Jerome Marchand) [1821265]
+- [netdrv] net: intel: Remove in_interrupt() warnings (Jonathan Toppins) [1891101]
+- [netdrv] ice: fix adding IP4 IP6 Flow Director rules (Jonathan Toppins) [1891101]
+- [netdrv] ice: Fix pointer cast warnings (Jonathan Toppins) [1891101]
+- [netdrv] ice: refactor devlink_port to be per-VSI (Jonathan Toppins) [1891101]
+- [netdrv] ice: add the DDP Track ID to devlink info (Jonathan Toppins) [1891101]
+- [netdrv] ice: Change ice_info_get_dsn to be void (Jonathan Toppins) [1891101]
+- [netdrv] ice: remove repeated words (Jonathan Toppins) [1891101]
+- [netdrv] ice: devlink: use *phD to print small buffer (Jonathan Toppins) [1891101]
+- [netdrv] ice: preserve NVM capabilities in safe mode (Jonathan Toppins) [1891101]
+- [netdrv] ice: increase maximum wait time for flash write commands (Jonathan Toppins) [1891101]
+- [netdrv] ice: remove unused args from ice_get_open_tunnel_port() (Jonathan Toppins) [1891101]
+- [netdrv] ice: fix memory leak in ice_vsi_setup (Jonathan Toppins) [1891101]
+- [netdrv] ice: fix memory leak if register_netdev_fails (Jonathan Toppins) [1891101]
+- [netdrv] ice: Fix call trace on suspend (Jonathan Toppins) [1891101]
+- [netdrv] ice: simplify the return expression of ice_finalize_update() (Jonathan Toppins) [1891101]
+- [netdrv] ice: Misc minor fixes (Jonathan Toppins) [1838737]
+- [netdrv] ice: adjust profile ID map locks (Jonathan Toppins) [1838737]
+- [netdrv] ice: update PTYPE lookup table (Jonathan Toppins) [1838737]
+- [netdrv] ice: Graceful error handling in HW table calloc failure (Jonathan Toppins) [1838737]
+- [netdrv] ice: port fix for chk_linearlize (Jonathan Toppins) [1838737]
+- [netdrv] ice: Allow 2 queue pairs per VF on SR-IOV initialization (Jonathan Toppins) [1838737]
+- [netdrv] ice: Clear and free XLT entries on reset (Jonathan Toppins) [1838737]
+- [netdrv] ice: add useful statistics (Jonathan Toppins) [1838737]
+- [netdrv] ice: remove page_reuse statistic (Jonathan Toppins) [1838737]
+- [netdrv] ice: Fix RSS profile locks (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix the vsi_id mask to be 10 bit for set_rss_lut (Jonathan Toppins) [1838737]
+- [netdrv] ice: rename misleading grst_delay variable (Jonathan Toppins) [1838737]
+- [netdrv] ice: mark PM functions as __maybe_unused (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix unused parameter warning (Jonathan Toppins) [1838737]
+- [netdrv] ice: disable no longer needed workaround for FW logging (Jonathan Toppins) [1838737]
+- [netdrv] ice: reduce scope of variable (Jonathan Toppins) [1838737]
+- [netdrv] ice: cleanup VSI on probe fail (Jonathan Toppins) [1838737]
+- [netdrv] ice: Allow all VLANs in safe mode (Jonathan Toppins) [1838737]
+- [netdrv] ice: need_wakeup flag might not be set for Tx (Jonathan Toppins) [1838737]
+- [netdrv] ice: distribute Tx queues evenly (Jonathan Toppins) [1838737]
+- [netdrv] ice: Adjust scheduler default BW weight (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add RL profile bit mask check (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix overwriting TX/RX descriptor values when rebuilding VSI (Jonathan Toppins) [1838737]
+- [netdrv] ice: return correct error code from ice_aq_sw_rules (Jonathan Toppins) [1838737]
+- [netdrv] ice: restore VF MSI-X state during PCI reset (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix link event handling timing (Jonathan Toppins) [1838737]
+- [netdrv] ice: Fix link broken after GLOBR reset (Jonathan Toppins) [1838737]
+- [netdrv] ice: Implement LFC workaround (Jonathan Toppins) [1838737]
+- [netdrv] ice: implement device flash update via devlink (Jonathan Toppins) [1838737]
+- [netdrv] ice: add flags indicating pending update of firmware module (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add AdminQ commands for FW update (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add support for unified NVM update flow capability (Jonathan Toppins) [1838737]
+- [netdrv] ice: add 1G SGMII PHY type (Jonathan Toppins) [1838737]
+- [netdrv] ice: Report AOC PHY Types as Fiber (Jonathan Toppins) [1838737]
+- [netdrv] ice: add AQC get link topology handle support (Jonathan Toppins) [1838737]
+- [netdrv] ice: Rename low_power_ctrl (Jonathan Toppins) [1838737]
+- [netdrv] ice: update reporting of autoneg capabilities (Jonathan Toppins) [1838737]
+- [netdrv] ice: add ice_aq_get_phy_caps() debug logs (Jonathan Toppins) [1838737]
+- [netdrv] ice: support Total Port Shutdown on devices that support it (Jonathan Toppins) [1838737]
+- [netdrv] ice: add link lenient and default override support (Jonathan Toppins) [1838737]
+- [netdrv] ice: restore PHY settings on media insertion (Jonathan Toppins) [1838737]
+- [netdrv] ice: move auto FEC checks into ice_cfg_phy_fec() (Jonathan Toppins) [1838737]
+- [netdrv] ice: refactor FC functions (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add advanced power mgmt for WoL (Jonathan Toppins) [1838737]
+- [netdrv] ice: split ice_discover_caps into two functions (Jonathan Toppins) [1838737]
+- [netdrv] ice: split ice_parse_caps into separate functions (Jonathan Toppins) [1838737]
+- [netdrv] ice: refactor ice_discover_caps to avoid need to retry (Jonathan Toppins) [1838737]
+- [netdrv] ice: replace single-element array used for C struct hack (Jonathan Toppins) [1838737]
+- [netdrv] ice: avoid unnecessary single-member variable-length structs (Jonathan Toppins) [1838737]
+- [netdrv] ice: implement snapshot for device capabilities (Jonathan Toppins) [1838737]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Jonathan Toppins) [1838737]
+- [netdrv] ice: protect ring accesses with WRITE_ONCE (Jonathan Toppins) [1838737]
+- [netdrv] ice: Ignore EMODE when setting PHY config (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix aRFS after flow director delete (Jonathan Toppins) [1838737]
+- [netdrv] ice: Use coalesce values from q_vector 0 when increasing q_vectors (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix PCI device serial number to be lowercase values (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix function signature style format (Jonathan Toppins) [1838737]
+- [netdrv] ice: Allow VF to request reset as soon as it's initialized (Jonathan Toppins) [1838737]
+- [netdrv] ice: Fix inability to set channels when down (Jonathan Toppins) [1838737]
+- [netdrv] ice: Always clear QRXFLXP_CNTXT before writing new value (Jonathan Toppins) [1838737]
+- [netdrv] ice: Reset VF for all port VLAN changes from host (Jonathan Toppins) [1838737]
+- [netdrv] ice: Update ICE_PHY_TYPE_HIGH_MAX_INDEX value (Jonathan Toppins) [1838737]
+- [netdrv] ice: Increase timeout after PFR (Jonathan Toppins) [1838737]
+- [netdrv] ice: Fix transmit for all software offloaded VLANs (Jonathan Toppins) [1838737]
+- [netdrv] ice: support adding 16 unicast/multicast filter on untrusted VF (Jonathan Toppins) [1838737]
+- [netdrv] ice: allow host to clear administratively set VF MAC (Jonathan Toppins) [1838737]
+- [netdrv] ice: Refactor VF VSI release and setup functions (Jonathan Toppins) [1838737]
+- [netdrv] ice: Refactor VF reset (Jonathan Toppins) [1838737]
+- [netdrv] ice: remove VM/VF disable command on CORER/GLOBR reset (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add functions to rebuild host VLAN/MAC config for a VF (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add function to set trust mode bit on reset (Jonathan Toppins) [1838737]
+- [netdrv] ice: Renaming and simplification in VF init path (Jonathan Toppins) [1838737]
+- [netdrv] ice: Separate VF VSI initialization/creation from reset flow (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add helper function for clearing VPGEN_VFRTRIG (Jonathan Toppins) [1838737]
+- [netdrv] ice: Simplify ice_sriov_configure (Jonathan Toppins) [1838737]
+- [netdrv] ice: Refactor ice_ena_vf_mappings to split MSIX and queue mappings (Jonathan Toppins) [1838737]
+- [netdrv] ice: Declare functions static (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix kernel BUG if register_netdev fails (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix potential double free in probe unrolling (Jonathan Toppins) [1838737]
+- [netdrv] ice: cleanup VSI context initialization (Jonathan Toppins) [1838737]
+- [netdrv] ice: Poll for reset completion when DDP load fails (Jonathan Toppins) [1838737]
+- [netdrv] ice: Check UMEM FQ size when allocating bufs (Jonathan Toppins) [1838737]
+- [netdrv] ice: Refactor Rx checksum checks (Jonathan Toppins) [1838737]
+- [netdrv] ice: avoid undefined behavior (Jonathan Toppins) [1838737]
+- [netdrv] ice: Change number of XDP Tx queues to match number of Rx queues (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add XDP Tx to VSI ring stats (Jonathan Toppins) [1838737]
+- [netdrv] ice: Change number of XDP TxQ to 0 when destroying rings (Jonathan Toppins) [1838737]
+- [netdrv] ice: Handle critical FW error during admin queue initialization (Jonathan Toppins) [1838737]
+- [netdrv] ice: Don't allow VLAN stripping change when pvid set (Jonathan Toppins) [1838737]
+- [netdrv] ice: Add more Rx errors to netdev's rx_error counter (Jonathan Toppins) [1838737]
+- [netdrv] ice: Fix for memory leaks and modify ICE_FREE_CQ_BUFS (Jonathan Toppins) [1838737]
+- [netdrv] ice: Fix memory leak (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix MAC write command (Jonathan Toppins) [1838737]
+- [netdrv] ice: set VF default LAN address (Jonathan Toppins) [1838737]
+- [netdrv] ice: remove unused macro (Jonathan Toppins) [1838737]
+- [netdrv] ice: fix signed vs unsigned comparisons (Jonathan Toppins) [1838737]
+- [netdrv] ice: Fix error return code in ice_add_prof() (Jonathan Toppins) [1838737]
+- [netdrv] ice: replace "fallthrough" comments with fallthrough reserved word (Jonathan Toppins) [1838737]
+
+* Fri Dec 18 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-265.el8]
+- [kernel] kernel/crash: reserve more memory for fadump (Pingfan Liu) [1891043]
+- [powerpc] pseries: Pass MSI affinity to irq_create_mapping() (Laurent Vivier) [1702939]
+- [kernel] genirq/irqdomain: Add an irq_create_mapping_affinity() function (Laurent Vivier) [1702939]
+- [powerpc] powerpc/perf: Use regs->nip when SIAR is zero (Steve Best) [1903731]
+- [powerpc] powerpc/perf: Use the address from SIAR register to set cpumode flags (Steve Best) [1903731]
+- [powerpc] powerpc/perf: Drop the check for SIAR_VALID (Steve Best) [1903731]
+- [powerpc] powerpc/perf: Add new power PMU flag "PPMU_P10_DD1" for power10 DD1 (Steve Best) [1903731]
+- [netdrv] net/mlx5e: fix bpf_prog reference count leaks in mlx5e_alloc_rq (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Initialize QP mutex for the debug kernels (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Allow providing extra scatter CQE QP flag (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Query PPS pin operational status before registering it (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Fix slab-out-of-bounds in mlx5e_rep_is_lag_netdev (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Verify Hardware supports requested ptp function on a given pin (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Fix a bug of using ptp channel index as pin index (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Fix missing cleanup of ethtool steering during rep rx cleanup (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Fix error path of device attach (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Fix forward to next namespace (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: E-switch, Destroy TSAR after reload interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: E-switch, Destroy TSAR when fail to enable the mode (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Fix prefetch memory leak if get_prefetchable_mr fails (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Prevent prefetch from racing with implicit destruction (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Use xa_lock_irq when access to SRQ table (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Fix usage of rcu-protected pointer (Alaa Hleihel) [1858560]
+- [netdrv] net/mxl5e: Verify that rpriv is not NULL (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: E-Switch, Fix vlan or qos setting in legacy mode (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Set PD pointers for the error flow unwind (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Fix legacy IPoIB QP initialization (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Protect from kernel crash if XRC_TGT doesn't have udata (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Fix integrity enabled QP creation (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Remove ECE limitation from the RAW_PACKET QPs (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Fix remote gid value in query QP (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Don't access ib_qp fields in internal destroy QP path (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Add missed RST2INIT and INIT2INIT steps during ECE handshake (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Fix -Wformat warning in check_ucmd_data() (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Remove duplicated assignment to resp.response_length (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: E-Switch, Fix some error pointer dereferences (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Return ECE DC support (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Don't rely on FW to set zeros in ECE response (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Return an error if copy_to_user fails (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Make mlx5e_dcbnl_ops static (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: reduce stack usage in qp_read_field (Alaa Hleihel) [1858560]
+- [netdrv] mlx5: fix xdp data_meta setup in mlx5e_fill_xdp_buff (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Support TX port affinity for VF drivers in LAG mode (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Optimize performance for IPv4/IPv6 ethertype (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Helper function to set ethertype (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Use change upper event to setup representors' bond_metadata (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Slave representors sharing unique metadata for match (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: E-Switch, Alloc and free unique metadata for match (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Add bond_metadata and its slave entries (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Offload flow rules to active lower representor (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Support tc block sharing for representors (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Use netdev events to set/del egress acl forward-to-vport rule (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: E-Switch, Introduce APIs to enable egress acl forward-to-vport rule (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: E-Switch, Refactor eswitch ingress acl codes (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: E-Switch, Refactor eswitch egress acl codes (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Return ECE data after modify QP (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Set ECE options during modify QP (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Convert modify QP to use MLX5_SET macros (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Remove manually crafted QP context the query call (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Use direct modify QP implementation (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Set ECE options during QP create (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Get ECE options from FW during create QP (Alaa Hleihel) [1858560]
+- [include] net/mlx5: Add ability to read and write ECE options (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Use IS_ERR() to check and simplify code (Alaa Hleihel) [1858560]
+- [infiniband] net/mlx5: Add support for RDMA TX FT headers modifying (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Move iseg access helper routines close to mlx5_core driver (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Cleanup mlx5_ifc_fte_match_set_misc2_bits (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Update mlx5_ib driver name (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Calculate SQ stop room in a robust way (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Move internal timer read function to clock library (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Fix a bug of releasing wrong chunks on > 4K page size systems (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Dedicate fw page to the requesting function (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Fix query_srq_cmd() function (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Add support for drop action in DV steering (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Add support in steering default miss (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Refactor DV create flow (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Add support in forward to namespace (Alaa Hleihel) [1858560]
+- [infiniband] {IB/net}/mlx5: Simplify don't trap code (Alaa Hleihel) [1858560]
+- [include] net/mlx5: Replace zero-length array with flexible-array (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Enhance ICOSQ WQE info fields (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Accel, Remove unnecessary header include (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Use struct assignment for WQE info updates (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Take TX WQE info structures out of general EN header (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: kTLS, Do not fill edge for the DUMP WQEs in TX flow (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: kTLS, Fill work queue edge separately in TX flow (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Split TX acceleration offloads into two phases (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Update UDP fields of the SKB for GSO first (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Make TLS offload independent of wqe and pi (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Pass only eseg to IPSEC offload (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Return void from mlx5e_sq_xmit and mlx5i_sq_xmit (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Unify checks of TLS offloads (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Return bool from TLS and IPSEC offloads (Alaa Hleihel) [1858560]
+- [netdrv] net: remove newlines in NL_SET_ERR_MSG_MOD (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Remove duplicated assignment to variable rcqe_sz (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Allow only raw Ethernet QPs when RoCE isn't enabled (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Assign profile before calling stages (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Move all WR logic from qp.c to separate file (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Refactor mlx5_post_send() to improve readability (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Update mlx5_ib to use new cmd interface (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Set UDP source port based on the grh.flow_label (Alaa Hleihel) [1858560 1851704]
+- [infiniband] RDMA/mlx5: Define RoCEv2 udp source port when set path (Alaa Hleihel) [1858560 1851704]
+- [infiniband] RDMA/mlx5: Set lag tx affinity according to slave (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Refactor affinity related code (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Add support to get lag physical port (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Change lag mutex lock to spin lock (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Consolidate into special function all create QP calls (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Remove redundant destroy QP call (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Copy response to the user in one place (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Handle udate outlen checks in one place (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Promote RSS RAW QP flags check to higher level (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Group all create QP parameters to simplify in-kernel interfaces (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Reduce amount of duplication in QP destroy (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Separate to user/kernel create QP flows (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Separate XRC_TGT QP creation from common flow (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Globally parse DEVX UID (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Delete impossible inlen check (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Rely on existence of udata to separate kernel/user flows (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Remove second user copy in create_user_qp (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Combine copy of create QP command in RSS RAW QP (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Promote RSS RAW QP attribute check in higher level (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Store QP type in the vendor QP structure (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Delete unsupported QP types (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Unify reserving space for WQEs (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Rename ICOSQ WQE info struct and field (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Fetch WQE: reuse code and enforce typing (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: XDP, Print the offending TX descriptor on error completion (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: TX, Generalise code and usage of error CQE dump (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Use proper name field for the UMR key (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Add support for release all pages event (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Rate limit page not found error messages (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Add helper function to release fw page (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Remove unused field in EQ (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Remove unneeded semicolon (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: IPsec, Fix coverity issue (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Process all vendor flags in one place (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Return all configured create flags through query QP (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Change scatter CQE flag to be set like other vendor flags (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Use flags_en mechanism to mark QP created with WQE signature (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Process create QP flags in one place (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Delete create QP flags obfuscation (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Initial separation of RAW_PACKET QP from common flow (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Remove second copy from user for non RSS RAW QPs (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Move DRIVER QP flags check into separate function (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Update all DRIVER QP places to use QP subtype (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Split scatter CQE configuration for DCT QP (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Separate create QP flows to be based on type (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Set QP subtype immediately when it is known (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Avoid setting redundant NULL for XRC QPs (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Prepare QP allocation for future removal (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Perform check if QP creation flow is valid (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Delete impossible GSI port check (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Organize QP types checks in one place (Alaa Hleihel) [1858560]
+- [include] net/mlx5: TX WQE Add trailer insertion field (Alaa Hleihel) [1858560]
+- [include] net/mlx5: Add release all pages capability bit (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Introduce TLS RX offload hardware bits (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Add structure and defines for pci sync for fw update event (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Add structure layout and defines for MFRL register (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Use aligned variable while allocating ICM memory (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Introduce IPsec Connect-X offload hardware bits and structures (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update transobj.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update SW steering new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update port.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update rl.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update uar.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update pd.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update pagealloc.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update mr.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update mcg.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update main.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update vxlan.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update mpfs.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update gid.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update lag.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update fw.c new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update fs_core new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update FPGA to new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update eswitch to new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] ethernet: remove redundant memset (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update statistics to new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update eq.c to new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update ecpf.c to new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update debugfs.c to new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Update cq.c to new cmd interface (Alaa Hleihel) [1858560]
+- [infiniband] net/mlx5: Update vport.c to new cmd interface (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: improve some comments (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Read embedded cpu bit only once (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: Handle errors from netif_set_real_num_{tx, rx}_queues (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: IPsec, Refactor SA handle creation and destruction (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5e: IPSec, Expose IPsec HW stat only for supporting HW (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Refactor mlx5_accel_esp_create_hw_context parameter list (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Use the correct IPsec capability function for FPGA ops (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Enable SW-defined RoCEv2 UDP source port (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Refactor HCA capability set flow (Alaa Hleihel) [1858560]
+- [infiniband] net/mlx5: Move QP logic to mlx5_ib (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Alphabetically sort build artifacts (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Delete not-used cmd header (Alaa Hleihel) [1858560]
+- [infiniband] RDMA/mlx5: Delete Q counter allocations command (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Remove Q counter low level helper APIs (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Replace hand written QP context struct with automatic getters (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Remove extra indirection while storing QPN (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Open-code modify QP in the IPoIB module (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Open-code modify QP in the FPGA module (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Open-code modify QP in steering module (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Remove empty QP and CQ events handlers (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Open-code create and destroy QP calls (Alaa Hleihel) [1858560]
+- [netdrv] net/mlx5: Provide simplified command interfaces (Alaa Hleihel) [1858560]
+- [x86] kvm: x86/mmu: Fix get_mmio_spte() on CPUs supporting 5-level PT (Vitaly Kuznetsov) [1902184]
+- [net] netdevsim: devlink flash timeout message (Petr Oros) [1882019]
+- [net] devlink: collect flash notify params into a struct (Petr Oros) [1882019]
+- [net] devlink: add timeout information to status_notify (Petr Oros) [1882019]
+- [firmware] efi/esrt: Only call efi_mem_reserve() for boot services memory (Kairui Song) [1878024]
+- [firmware] efi: Drop type and attribute checks in efi_mem_desc_lookup() (Kairui Song) [1878024]
+- [fs] iomap: Fix direct I/O write consistency check (Andreas Grunbacher) [1875556]
+- [fs] gfs2: fix O_SYNC write handling (Andreas Grunbacher) [1871923]
+- [fs] gfs2: move setting current->backing_dev_info (Andreas Grunbacher) [1871923]
+- [fs] gfs2: Don't return NULL from gfs2_inode_lookup (Andreas Grunbacher) [1872061]
+- [fs] gfs2: If go_sync returns error, withdraw but skip invalidate (Robert S Peterson) [1875035]
+- [fs] gfs2: Close timing window with GLF_INVALIDATE_IN_PROGRESS (Robert S Peterson) [1875035]
+- [fs] gfs2: Fix refcount leak in gfs2_glock_poke (Robert S Peterson) [1875035]
+- [fs] gfs2: Add missing truncate_inode_pages_final for sd_aspace (Robert S Peterson) [1875035]
+- [fs] gfs2: call truncate_inode_pages_final for address space glocks (Robert S Peterson) [1875035]
+- [fs] gfs2: simplify the logic in gfs2_evict_inode (Robert S Peterson) [1875035]
+- [fs] gfs2: factor evict_linked_inode out of gfs2_evict_inode (Robert S Peterson) [1875035]
+- [fs] gfs2: further simplify gfs2_evict_inode with new func evict_should_delete (Robert S Peterson) [1875035]
+- [fs] gfs2: factor evict_unlinked_inode out of gfs2_evict_inode (Robert S Peterson) [1875035]
+- [fs] gfs2: rename variable error to ret in gfs2_evict_inode (Robert S Peterson) [1875035]
+- [net] ethtool: Add link extended state (Ivan Vecera) [1894545]
+- [documentation] networking: ethtool-netlink: Add link extended state (Ivan Vecera) [1894545]
+- [net] ethtool: fix error handling in linkstate_prepare_data() (Ivan Vecera) [1894545]
+- [net] ethtool: provide UAPI for PHY Signal Quality Index (SQI) (Ivan Vecera) [1894545]
+
+* Thu Dec 17 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-264.el8]
+- [mm] mm/hugetlb: fix a race between hugetlb sysctl handlers (Julia Denham) [1886241] {CVE-2020-25285}
+- [kernel] audit: do not set FS_EVENT_ON_CHILD in audit marks mask (Richard Guy Briggs) [1896480]
+- [net] missing barriers in some of unix_sock ->addr and ->path accesses (Richard Guy Briggs) [1896480]
+- [kernel] audit: fix macros warnings (Richard Guy Briggs) [1896480]
+- [kernel] audit: trigger accompanying records when no rules present (Richard Guy Briggs) [1896480]
+- [kernel] audit: fix a kernel-doc markup (Richard Guy Briggs) [1896480]
+- [kernel] audit: Remove redundant null check (Richard Guy Briggs) [1896480]
+- [kernel] audit: uninitialize variable audit_sig_sid (Richard Guy Briggs) [1896480]
+- [kernel] audit: change unnecessary globals into statics (Richard Guy Briggs) [1896480]
+- [kernel] audit: report audit wait metric in audit status reply (Richard Guy Briggs) [1896480]
+- [security] audit: purge audit_log_string from the intra-kernel audit API (Richard Guy Briggs) [1896480]
+- [security] apparmor: Check buffer bounds when mapping permissions mask (Richard Guy Briggs) [1896480]
+- [kernel] audit: issue CWD record to accompany LSM_AUDIT_DATA_* records (Richard Guy Briggs) [1896480]
+- [net] audit: use the proper gfp flags in the audit_log_nfcfg() calls (Richard Guy Briggs) [1896480]
+- [include] audit: remove unused !CONFIG_AUDITSYSCALL __audit_inode* stubs (Richard Guy Briggs) [1896480]
+- [net] audit: add gfp parameter to audit_log_nfcfg (Richard Guy Briggs) [1896480]
+- [kernel] audit: log nftables configuration change events (Richard Guy Briggs) [1896480]
+- [kernel] audit: Use struct_size() helper in alloc_chunk (Richard Guy Briggs) [1896480]
+- [kernel] revert: 1320a4052ea1 ("audit: trigger accompanying records when no rules present") (Richard Guy Briggs) [1896480]
+- [include] audit: Replace zero-length array with flexible-array (Richard Guy Briggs) [1896480]
+- [netdrv] net: usb: lan78xx: Disable interrupts before calling generic_handle_irq() (Waiman Long) [1904213]
+- [mm] x86/mm/cpa: Prevent large page split when ftrace flips RW on kernel text (Waiman Long) [1904213]
+- [mm] x86/mm/cpa: Fix cpa_flush_array() TLB invalidation (Waiman Long) [1904213]
+- [net] netlabel: fix an uninitialized warning in netlbl_unlabel_staticlist() (Ondrej Mosnacek) [1901171]
+- [net] netlabel: fix our progress tracking in netlbl_unlabel_staticlist() (Ondrej Mosnacek) [1901171]
+- [netdrv] net: ena: fix packet's addresses for rx_offset feature (Petr Oros) [1861967]
+- [netdrv] net: ena: handle bad request id in ena_netdev (Petr Oros) [1861967]
+- [netdrv] net: ena: Change WARN_ON expression in ena_del_napi_in_range() (Petr Oros) [1861967]
+- [netdrv] net: ena: support new LLQ acceleration mode (Petr Oros) [1861967]
+- [netdrv] net: ena: move llq configuration from ena_probe to ena_device_init() (Petr Oros) [1861967]
+- [netdrv] net: ena: enable support of rss hash key and function changes (Petr Oros) [1861967]
+- [netdrv] net: ena: add support for traffic mirroring (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: change ena_com_stats_admin stats to u64 (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: satisfy gcc warning (Petr Oros) [1861967]
+- [netdrv] net: ena: add reserved PCI device ID (Petr Oros) [1861967]
+- [netdrv] net: ena: avoid unnecessary rearming of interrupt vector when busy-polling (Petr Oros) [1861967]
+- [netdrv] net: ena: Fix using plain integer as NULL pointer in ena_init_napi_in_range (Petr Oros) [1861967]
+- [netdrv] ena_netdev: use generic power management (Petr Oros) [1861967]
+- [netdrv] net: ena: xdp: update napi budget for DROP and ABORTED (Petr Oros) [1861967]
+- [netdrv] net: ena: xdp: XDP_TX: fix memory leak (Petr Oros) [1861967]
+- [netdrv] xdp: Rename convert_to_xdp_frame in xdp_convert_buff_to_frame (Petr Oros) [1861967]
+- [netdrv] net: ena: reduce driver load time (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: minor code changes (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: fix spacing issues (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: code reorderings (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: remove unnecessary code (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: fix line break issues (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: fix spelling and grammar mistakes in comments (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: set queue sizes to u32 for consistency (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: rename ena_update_tx/rx_rings_intr_moderation() (Petr Oros) [1861967]
+- [netdrv] net: ena: simplify ena_com_update_intr_delay_resolution() (Petr Oros) [1861967]
+- [netdrv] net: ena: fix ena_com_comp_status_to_errno() return value (Petr Oros) [1861967]
+- [netdrv] net: ena: use explicit variable size for clarity (Petr Oros) [1861967]
+- [netdrv] net: ena: rename ena_com_free_desc to make API more uniform (Petr Oros) [1861967]
+- [netdrv] net: ena: add support for the rx offset feature (Petr Oros) [1861967]
+- [netdrv] ena: Add XDP frame size to amazon NIC driver (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: extract code to ena_indirection_table_set() (Petr Oros) [1861967]
+- [netdrv] net: ena: cosmetic: remove unnecessary spaces and tabs in ena_com.h macros (Petr Oros) [1861967]
+- [netdrv] net: ena: use SHUTDOWN as reset reason when closing interface (Petr Oros) [1861967]
+- [netdrv] net: ena: drop superfluous prototype (Petr Oros) [1861967]
+- [netdrv] net: ena: add support for reporting of packet drops (Petr Oros) [1861967]
+- [netdrv] net: ena: add unmask interrupts statistics to ethtool (Petr Oros) [1861967]
+- [netdrv] net: ena: remove code that does nothing (Petr Oros) [1861967]
+- [netdrv] net: ena: changes to RSS hash key allocation (Petr Oros) [1861967]
+- [netdrv] net: ena: change default RSS hash function to Toeplitz (Petr Oros) [1861967]
+- [netdrv] net: ena: allow setting the hash function without changing the key (Petr Oros) [1861967]
+- [netdrv] net: ena: fix error returning in ena_com_get_hash_function() (Petr Oros) [1861967]
+- [netdrv] net: ena: avoid unnecessary admin command when RSS function set fails (Petr Oros) [1861967]
+- [netdrv] net/ena: Fix build warning in ena_xdp_set() (Petr Oros) [1861967]
+- [netdrv] net: ena: Make some functions static (Petr Oros) [1861967]
+- [netdrv] net: ena: fix continuous keep-alive resets (Petr Oros) [1861967]
+- [netdrv] net: ena: avoid memory access violation by validating req_id properly (Petr Oros) [1861967]
+- [netdrv] net: ena: fix request of incorrect number of IRQ vectors (Petr Oros) [1861967]
+- [netdrv] net: ena: fix incorrect setting of the number of msix vectors (Petr Oros) [1861967]
+- [netdrv] net: ena: ethtool: clean up minor indentation issue (Petr Oros) [1861967]
+- [netdrv] net: ena: reject unsupported coalescing params (Petr Oros) [1861967]
+- [netdrv] net: ena: fix broken interface between ENA driver and FW (Petr Oros) [1861967]
+- [netdrv] net/amazon: Ensure that driver version is aligned to the linux kernel (Petr Oros) [1861967]
+- [netdrv] net: ena: ethtool: remove redundant non-zero check on rc (Petr Oros) [1861967]
+- [netdrv] net: ena: remove set but not used variable 'hash_key' (Petr Oros) [1861967]
+- [netdrv] net: ena: ena-com.c: prevent NULL pointer dereference (Petr Oros) [1861967]
+- [netdrv] net: ena: ethtool: use correct value for crc32 hash (Petr Oros) [1861967]
+- [netdrv] net: ena: make ena rxfh support ETH_RSS_HASH_NO_CHANGE (Petr Oros) [1861967]
+- [netdrv] net: ena: fix corruption of dev_idx_to_host_tbl (Petr Oros) [1861967]
+- [netdrv] net: ena: fix incorrectly saving queue numbers when setting RSS indirection table (Petr Oros) [1861967]
+- [netdrv] net: ena: rss: store hash function as values and not bits (Petr Oros) [1861967]
+- [netdrv] net: ena: rss: fix failure to get indirection table (Petr Oros) [1861967]
+- [netdrv] net: ena: rss: do not allocate key when not supported (Petr Oros) [1861967]
+- [netdrv] net: ena: fix incorrect default RSS key (Petr Oros) [1861967]
+- [netdrv] net: ena: add missing ethtool TX timestamping indication (Petr Oros) [1861967]
+- [netdrv] net: ena: fix uses of round_jiffies() (Petr Oros) [1861967]
+- [netdrv] net: ena: fix potential crash when rxfh key is NULL (Petr Oros) [1861967]
+- [netdrv] net: ena: remove set but not used variable 'rx_ring' (Petr Oros) [1861967]
+- [netdrv] net: ena: fix issues in setting interrupt moderation params in ethtool (Petr Oros) [1861967]
+- [netdrv] net: ena: fix default tx interrupt moderation interval (Petr Oros) [1861967]
+- [netdrv] net: ena: Add first_interrupt field to napi struct (Petr Oros) [1861967]
+- [netdrv] net: ena: Implement XDP_TX action (Petr Oros) [1861967]
+- [netdrv] net: ena: implement XDP drop support (Petr Oros) [1861967]
+- [netdrv] net: ena: fix napi handler misbehavior when the napi budget is zero (Petr Oros) [1861967]
+- [netdrv] net: ena: ethtool: support set_channels callback (Petr Oros) [1861967]
+- [netdrv] net: ena: remove redundant print of number of queues (Petr Oros) [1861967]
+- [netdrv] net: ena: make ethtool -l show correct max number of queues (Petr Oros) [1861967]
+- [netdrv] net: ena: ethtool: get_channels: use combined only (Petr Oros) [1861967]
+- [netdrv] net: ena: multiple queue creation related cleanups (Petr Oros) [1861967]
+- [netdrv] net: ena: change num_queues to num_io_queues for clarity and consistency (Petr Oros) [1861967]
+- [kernel] rcu/tree: docs: document bkvcache new members at struct kfree_rcu_cpu (Nico Pache) [1894223]
+- [mm] kasan: don't assume percpu shadow allocations will succeed (Nico Pache) [1894223]
+- [lib] kasan: update required compiler versions in documentation (Nico Pache) [1894223]
+- [lib] kasan: improve and simplify Kconfig.kasan (Nico Pache) [1894223]
+- [lib] kasan: Fix required compiler version (Nico Pache) [1894223]
+- [lib] kasan: Bump required compiler version (Nico Pache) [1894223]
+- [documentation] kasan: update documentation for generic kasan (Nico Pache) [1894223]
+- [mm] kasan: record and print the free track (Nico Pache) [1894223]
+- [mm] rcu: kasan: record and print call_rcu() call stack (Nico Pache) [1894223]
+- [kernel] rcu: Support reclaim for head-less object (Nico Pache) [1894223]
+- [kernel] rcu: Introduce 2 arg kvfree_rcu() interface (Nico Pache) [1894223]
+- [mm] mm/list_lru.c: Rename kvfree_rcu() to local variant (Nico Pache) [1894223]
+- [kernel] rcu: Rename *_kfree_callback/*_kfree_rcu_offset/kfree_call_* (Nico Pache) [1894223]
+- [kernel] rcu/tiny: support vmalloc in tiny-RCU (Nico Pache) [1894223]
+- [kernel] rcu/tree: Maintain separate array for vmalloc ptrs (Nico Pache) [1894223]
+- [kernel] rcu/tree: cache specified number of objects (Nico Pache) [1894223]
+- [kernel] rcu/tree: Use static initializer for krc.lock (Nico Pache) [1894223]
+- [kernel] rcu/tree: Move kfree_rcu_cpu locking/unlocking to separate functions (Nico Pache) [1894223]
+- [kernel] rcu/tree: Simplify KFREE_BULK_MAX_ENTR macro (Nico Pache) [1894223]
+- [kernel] rcu/tree: Make debug_objects logic independent of rcu_head (Nico Pache) [1894223]
+- [kernel] rcu/tree: Repeat the monitor if any free channel is busy (Nico Pache) [1894223]
+- [kernel] rcu/tree: Skip entry into the page allocator for PREEMPT_RT (Nico Pache) [1894223]
+- [kernel] rcu/tree: Keep kfree_rcu() awake during lock contention (Nico Pache) [1894223]
+- [kernel] rcu: Fix a kernel-doc warnings for "count" (Nico Pache) [1894223]
+- [kernel] rcu/tree: Count number of batched kfree_rcu() locklessly (Nico Pache) [1894223]
+- [kernel] rcu/tree: Add a shrinker to prevent OOM due to kfree_rcu() batching (Nico Pache) [1894223]
+- [kernel] rcuperf: Measure memory footprint during kfree_rcu() test (Nico Pache) [1894223]
+- [kernel] rcu: Add a trace event for kfree_rcu() use of kfree_bulk() (Nico Pache) [1894223]
+- [kernel] rcu: Support kfree_bulk() interface in kfree_rcu() (Nico Pache) [1894223]
+- [mm] kasan: fix clang compilation warning due to stack protector (Nico Pache) [1894223]
+- [mm] kasan: disable branch tracing for core runtime (Nico Pache) [1894223]
+- [mm] kasan: add missing functions declarations to kasan.h (Nico Pache) [1894223]
+- [mm] kasan: consistently disable debugging features (Nico Pache) [1894223]
+- [mm] kasan: unset panic_on_warn before calling panic() (Nico Pache) [1894223]
+- [mm] kasan: detect negative size in memory operation function (Nico Pache) [1894223]
+- [mm] kasan: No KASAN's memmove check if archs don't have it (Nico Pache) [1894223]
+- [mm] kasan: use apply_to_existing_page_range() for releasing vmalloc shadow (Nico Pache) [1894223]
+- [mm] kasan: fix crashes on access to memory mapped by vm_map_ram() (Nico Pache) [1894223]
+- [mm] mm/kasan/common.c: fix compile error (Nico Pache) [1894223]
+- [mm] kasan: support backing vmalloc space with real shadow memory (Nico Pache) [1894223]
+- [mm] mm/vmalloc: rework vmap_area_lock (Nico Pache) [1894223]
+- [mm] mm/vmalloc: remove preempt_disable/enable when doing preloading (Nico Pache) [1894223]
+- [mm] mm/vmalloc.c: switch to WARN_ON() and move it under unlink_va() (Nico Pache) [1894223]
+- [mm] mm/vmalloc.c: get rid of one single unlink_va() when merge (Nico Pache) [1894223]
+- [mm] mm/vmalloc.c: preload a CPU with one object for split purpose (Nico Pache) [1894223]
+- [mm] mm/vmalloc.c: remove "node" argument (Nico Pache) [1894223]
+- [mm] mm/vmalloc: modify struct vmap_area to reduce its size (Nico Pache) [1894223]
+- [mm] mm/vmalloc: do not keep unpurged areas in the busy tree (Nico Pache) [1894223]
+- [mm] mm/vmalloc.c: fix percpu free VM area search criteria (Nico Pache) [1894223]
+- [mm] mm/vmalloc.c: avoid bogus -Wmaybe-uninitialized warning (Nico Pache) [1894223]
+- [mm] mm/vmap: add DEBUG_AUGMENT_LOWEST_MATCH_CHECK macro (Nico Pache) [1894223]
+- [mm] mm/vmap: add DEBUG_AUGMENT_PROPAGATE_CHECK macro (Nico Pache) [1894223]
+- [mm] mm/vmalloc.c: keep track of free blocks for vmap allocation (Nico Pache) [1894223]
+- [mm] mm/vmalloc.c: convert vmap_lazy_nr to atomic_long_t (Nico Pache) [1894223]
+- [mm] mm/kasan: change kasan_check_{read, write} to return boolean (Nico Pache) [1894223]
+- [mm] mm/kasan: introduce __kasan_check_{read, write} (Nico Pache) [1894223]
+- [mm] kasan: fix coccinelle warnings in kasan_p*_table (Nico Pache) [1894223]
+- [mm] kasan: fix kasan_check_read/write definitions (Nico Pache) [1894223]
+- [lib] kasan: remove use after scope bugs detection (Nico Pache) [1894223]
+- [lib] kasan: remove clang version check for KASAN_STACK (Nico Pache) [1894223]
+- [lib] kasan: turn off asan-stack for clang-8 and earlier (Nico Pache) [1894223]
+- [block] nbd: fix a block_device refcount leak in nbd_release (Ming Lei) [1901400]
+- [tools] selftests: Set default protocol for raw sockets in nettest (Hangbin Liu) [1898813]
+- [tools] selftests/net: improve descriptions for XFAIL cases in psock_snd.sh (Hangbin Liu) [1898813]
+- [tools] selftests: rtnetlink: make kci_test_encap() return sub-test result (Hangbin Liu) [1898813]
+- [tools] selftests: net: ip_defrag: modprobe missing nf_defrag_ipv6 support (Hangbin Liu) [1898813]
+- [tools] selftests: use LDLIBS for libraries instead of LDFLAGS (Hangbin Liu) [1898813]
+- [tools] selftests: tls: run all tests for TLS 1.2 and TLS 1.3 (Hangbin Liu) [1898813]
+- [tools] selftests/net: add definition for SOL_DCCP to fix compilation errors for old libc (Hangbin Liu) [1898813]
+- [tools] selftests: net: reuseport_addr_any: silence clang warning (Hangbin Liu) [1898813]
+- [tools] selftests: net: refactor reuseport_addr_any test (Hangbin Liu) [1898813]
+- [tools] selftests: net: reuseport_addr_any: add DCCP (Hangbin Liu) [1898813]
+- [tools] selftests: net: test that listening sockets match on address properly (Hangbin Liu) [1898813]
+- [tools] selftests/net: make udpgso_bench skip unsupported testcases (Hangbin Liu) [1898813]
+- [tools] net/udpgso_bench.sh test fails on error (Hangbin Liu) [1898813]
+- [tools] net/udpgso_bench.sh add UDP GSO audit tests (Hangbin Liu) [1898813]
+- [tools] selftests: extend zerocopy tests to udp (Hangbin Liu) [1898813]
+- [tools] net/udpgso_bench_tx: options to exercise TX CMSG (Hangbin Liu) [1898813]
+- [tools] selftests: fixes for UDP GRO (Hangbin Liu) [1898813]
+- [tools] selftests/net: replace obsolete NFT_CHAIN configuration (Hangbin Liu) [1898813]
+- [tools] selftests: explicitly require kernel features needed by udpgro tests (Hangbin Liu) [1898813]
+- [tools] selftests: add explicit test for multiple concurrent GRO sockets (Hangbin Liu) [1898813]
+- [tools] selftests: add functionals test for UDP GRO (Hangbin Liu) [1898813]
+- [tools] selftests: add some benchmark for UDP GRO (Hangbin Liu) [1898813]
+- [tools] selftests: add GRO support to udp bench rx program (Hangbin Liu) [1898813]
+- [net] sctp: change to hold/put transport for proto_unreach_timer (Xin Long) [1897084]
+- [scsi] scsi: qedi: Add schedule_hw_err_handler callback for fan failure (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Add support for handling PCIe errors (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Add firmware error recovery invocation support (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Mark all connections for recovery on link down event (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Use snprintf instead of sprintf (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Protect active command list to avoid list corruption (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Fix list_del corruption while removing active I/O (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Skip firmware connection termination for PCI shutdown handler (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Use qed count from set_fp_int in msix allocation (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Remove redundant NULL check (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Staticify non-external function 'qedi_get_iscsi_error' (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Demote seemingly unintentional kerneldoc header (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Remove set but unused variable 'tmp' (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Remove 2 set but unused variables (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Remove unused variable udev & uctrl (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Remove comparison of 0/1 to bool variable (Nilesh Javali) [1854121]
+- [scsi] scsi: qedi: Check for buffer overflow in qedi_set_path() (Nilesh Javali) [1854121]
+- [scsi] scsi: qedf: Remove redundant assignment to variable 'rc' (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Retry qed->probe during recovery (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Add schedule_hw_err_handler callback for fan failure (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Return SUCCESS if stale rport is encountered (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: FDMI attributes correction (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Use pci_get_dsn() (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Fix for the session's E_D_TOV value (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Correct the comment in qedf_initiate_els (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Change the debug parameter permission to read & write (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Fix null ptr reference in qedf_stag_change_work (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Fix race between ELS completion and flushing ELS request (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Don't process ELS completion if event is flushed or cleaned up (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Initiate cleanup for ELS commands as well (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Send cleanup even for RRQ on timeout (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Do not kill timeout work for original I/O on RRQ completion (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Check the validity of rjt frame before processing (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Check for port type and role before processing an event (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Demote obvious misuse of kerneldoc to standard comment blocks (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Remove a whole host of unused variables (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Remove set but not checked variable 'tmp' (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Demote obvious misuse of kerneldoc to standard comment blocks (Nilesh Javali) [1854122]
+- [scsi] scsi: qedf: Remove redundant initialization of variable rc (Nilesh Javali) [1854122]
+- [infiniband] RDMA/qedr: Fix memory leak in iWARP CM (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Fix function prototype parameters alignment (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Fix inline size returned for iWARP (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Fix iWARP active mtu display (Manish Chopra) [1857857]
+- [netdrv] qede: Notify qedr when mtu has changed (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Fix return code if accept is called on a destroyed qp (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Fix use of uninitialized field (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Fix doorbell setting (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Fix qp structure memory leak (Manish Chopra) [1857857]
+- [netdrv] net: qed: RDMA personality shouldn't fail VF load (Manish Chopra) [1857857]
+- [netdrv] net: qede: Disable aRFS for NPAR and 100G (Manish Chopra) [1857857]
+- [netdrv] net: qed: Disable aRFS for NPAR and 100G (Manish Chopra) [1857857]
+- [netdrv] net: qed: use eth_zero_addr() to clear mac address (Manish Chopra) [1857857]
+- [netdrv] net: qede: use eth_zero_addr() to clear mac address (Manish Chopra) [1857857]
+- [netdrv] qede: Use pM format specifier for MAC addresses (Manish Chopra) [1857857]
+- [netdrv] qed: Use pM format specifier for MAC addresses (Manish Chopra) [1857857]
+- [infiniband] qed: fix assignment of n_rq_elems to incorrect params field (Manish Chopra) [1857857]
+- [netdrv] qed: fix the allocation of the chains with an external PBL (Manish Chopra) [1857857]
+- [netdrv] qede: add .ndo_xdp_xmit() and XDP_REDIRECT support (Manish Chopra) [1857857]
+- [netdrv] qede: refactor XDP Tx processing (Manish Chopra) [1857857]
+- [netdrv] qede: reformat net_device_ops declarations (Manish Chopra) [1857857]
+- [netdrv] qede: reformat several structures in "qede.h" (Manish Chopra) [1857857]
+- [include] qed: introduce qed_chain_get_elem_used{, u32}() (Manish Chopra) [1857857]
+- [include] qed: optimize common chain accessors (Manish Chopra) [1857857]
+- [infiniband] qed: add support for different page sizes for chains (Manish Chopra) [1857857]
+- [netdrv] qed: simplify chain allocation with init params struct (Manish Chopra) [1857857]
+- [netdrv] qed: simplify initialization of the chains with an external PBL (Manish Chopra) [1857857]
+- [netdrv] qed: move chain initialization inlines next to allocation functions (Manish Chopra) [1857857]
+- [netdrv] qed: sanitize PBL chains allocation (Manish Chopra) [1857857]
+- [netdrv] qed: prevent possible double-frees of the chains (Manish Chopra) [1857857]
+- [netdrv] qed: move chain methods to a separate file (Manish Chopra) [1857857]
+- [netdrv] qed: reformat Makefile (Manish Chopra) [1857857]
+- [include] qed: reformat "qed_chain.h" a bit (Manish Chopra) [1857857]
+- [netdrv] net: qed_hsi.h: Avoid the use of one-element array (Manish Chopra) [1857857]
+- [netdrv] net: qed: Remove unneeded cast from memory allocation (Manish Chopra) [1857857]
+- [netdrv] qed: suppress false-positives interrupt error messages on HW init (Manish Chopra) [1857857]
+- [netdrv] qed: suppress "don't support RoCE & iWARP" flooding on HW init (Manish Chopra) [1857857]
+- [netdrv] qed: Fix ILT and XRCD bitmap memory leaks (Manish Chopra) [1857857]
+- [netdrv] qed: add support for the extended speed and FEC modes (Manish Chopra) [1857857]
+- [netdrv] qed: populate supported link modes maps on module init (Manish Chopra) [1857857]
+- [netdrv] qed: add missing loopback modes (Manish Chopra) [1857857]
+- [netdrv] qed: add support for new port modes (Manish Chopra) [1857857]
+- [netdrv] qed: remove unused qed_hw_info::port_mode and QED_PORT_MODE (Manish Chopra) [1857857]
+- [netdrv] qed: reformat several structures a bit (Manish Chopra) [1857857]
+- [netdrv] qede: introduce support for FEC control (Manish Chopra) [1857857]
+- [netdrv] qede: format qede{,_vf}_ethtool_ops (Manish Chopra) [1857857]
+- [netdrv] qed: add support for Forward Error Correction (Manish Chopra) [1857857]
+- [netdrv] qed: reformat several structures a bit (Manish Chopra) [1857857]
+- [netdrv] qed: use transceiver data to fill link partner's advertising speeds (Manish Chopra) [1857857]
+- [netdrv] qed: add support for multi-rate transceivers (Manish Chopra) [1857857]
+- [netdrv] qed: reformat public_port::transceiver_data a bit (Manish Chopra) [1857857]
+- [netdrv] qede: populate supported link modes maps on module init (Manish Chopra) [1857857]
+- [netdrv] qed, qede, qedf: convert link mode from u32 to ETHTOOL_LINK_MODE (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Add EDPM max size to alloc ucontext response (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Add EDPM mode type for user-fw compatibility (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: SRQ's bug fixes (Manish Chopra) [1857857]
+- [include] net: qed: drop duplicate words in comments (Manish Chopra) [1857857]
+- [netdrv] qede: convert to new udp_tunnel_nic infra (Manish Chopra) [1857857]
+- [netdrv] qed: Disable "MFW indication via attention" SPAM every 5 minutes (Manish Chopra) [1857857]
+- [netdrv] qed: Populate nvm-file attributes while reading nvm config partition (Manish Chopra) [1857857]
+- [netdrv] net: qede: fix BE vs CPU comparison (Manish Chopra) [1857857]
+- [netdrv] net: qede: fix kernel-doc for qede_ptp_adjfreq() (Manish Chopra) [1857857]
+- [netdrv] net: qed: sanitize BE/LE data processing (Manish Chopra) [1857857]
+- [netdrv] net: qed: use ptr shortcuts to dedup field accessing in some parts (Manish Chopra) [1857857]
+- [netdrv] net: qed: improve indentation of some parts of code (Manish Chopra) [1857857]
+- [netdrv] net: qed: address kernel-doc warnings (Manish Chopra) [1857857]
+- [netdrv] net: qed: correct qed_hw_err_notify() prototype (Manish Chopra) [1857857]
+- [netdrv] net: qed: cleanup global structs declarations (Manish Chopra) [1857857]
+- [netdrv] net: qed: move static iro_arrout of header file (Manish Chopra) [1857857]
+- [netdrv] qed: Make symbol 'qed_hw_err_type_descr' static (Manish Chopra) [1857857]
+- [netdrv] net: qede: update copyright years (Manish Chopra) [1857857]
+- [netdrv] net: qede: convert to SPDX License Identifiers (Manish Chopra) [1857857]
+- [netdrv] net: qede: correct existing SPDX tags (Manish Chopra) [1857857]
+- [netdrv] net: qed: update copyright years (Manish Chopra) [1857857]
+- [netdrv] net: qed: convert to SPDX License Identifiers (Manish Chopra) [1857857]
+- [netdrv] net: qed: correct existing SPDX tags (Manish Chopra) [1857857]
+- [netdrv] qed: add missing error test for DBG_STATUS_NO_MATCHING_FRAMING_MODE (Manish Chopra) [1857857]
+- [netdrv] net: qed: fix "maybe uninitialized" warning (Manish Chopra) [1857857]
+- [netdrv] net: qed: reset ILT block sizes before recomputing to fix crashes (Manish Chopra) [1857857]
+- [netdrv] net: qede: fix use-after-free on recovery and AER handling (Manish Chopra) [1857857]
+- [netdrv] net: qede: fix PTP initialization on recovery (Manish Chopra) [1857857]
+- [netdrv] net: qed: fix excessive QM ILT lines consumption (Manish Chopra) [1857857]
+- [netdrv] net: qed: fix NVMe login fails over VFs (Manish Chopra) [1857857]
+- [netdrv] net: qede: stop adding events on an already destroyed workqueue (Manish Chopra) [1857857]
+- [netdrv] net: qed: fix async event callbacks unregistering (Manish Chopra) [1857857]
+- [include] net: qed: fix left elements count calculation (Manish Chopra) [1857857]
+- [infiniband] RDMA/qedr: Fix KASAN: use-after-free in ucma_event_handler+0x532 (Manish Chopra) [1857857]
+- [netdrv] qed: Add EDPM mode type for user-fw compatibility (Manish Chopra) [1857857]
+- [netdrv] qed: Add XRC to RoCE (Manish Chopra) [1857857]
+- [netdrv] qed: changes to ILT to support XRC (Manish Chopra) [1857857]
+- [include] net: qed: fix bad formatting (Manish Chopra) [1857857]
+- [netdrv] net: qed: introduce critical hardware error handler (Manish Chopra) [1857857]
+- [netdrv] net: qed: introduce critical fan failure handler (Manish Chopra) [1857857]
+- [netdrv] net: qede: Implement ndo_tx_timeout (Manish Chopra) [1857857]
+- [netdrv] net: qede: optional hw recovery procedure (Manish Chopra) [1857857]
+- [netdrv] net: qed: attention clearing properties (Manish Chopra) [1857857]
+- [netdrv] net: qed: cleanup debug related declarations (Manish Chopra) [1857857]
+- [netdrv] net: qed: critical err reporting to management firmware (Manish Chopra) [1857857]
+- [netdrv] net: qed: invoke err notify on critical areas (Manish Chopra) [1857857]
+- [netdrv] net: qede: add hw err scheduled handler (Manish Chopra) [1857857]
+- [netdrv] net: qed: adding hw_err states and handling (Manish Chopra) [1857857]
+- [netdrv] net: qede: Use true for bool variable in qede_init_fp() (Manish Chopra) [1857857]
+- [netdrv] qed: Make ll2_cbs static (Manish Chopra) [1857857]
+- [netdrv] qede: Add support for handling the pcie errors (Manish Chopra) [1857857]
+- [netdrv] qed: Enable device error reporting capability (Manish Chopra) [1857857]
+- [netdrv] qed: use true,false for bool variables (Manish Chopra) [1857857]
+- [netdrv] net: qed: Remove unneeded cast from memory allocation (Manish Chopra) [1857857]
+- [netdrv] net: qede: reject unsupported coalescing params (Manish Chopra) [1857857]
+- [scsi] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 440 (Manish Chopra) [1857857]
+- [scsi] treewide: Add SPDX license identifier - Makefile/Kconfig (Manish Chopra) [1857857]
+- [netdrv] sfc: don't double-down() filters in ef100_reset() (Jarod Wilson) [1856681]
+- [netdrv] sfc: Fix error code in probe (Jarod Wilson) [1856681]
+- [netdrv] sfc: fix boolreturn.cocci warning and rename function (Jarod Wilson) [1856681]
+- [netdrv] sfc: Use 'pci_channel_state_t' instead of 'enum pci_channel_state' (Jarod Wilson) [1856681]
+- [netdrv] sfc: Use fallthrough pseudo-keyword (Jarod Wilson) [1856681]
+- [netdrv] sfc: fix build warnings on 32-bit (Jarod Wilson) [1856681]
+- [netdrv] sfc: don't free_irq()s if they were never requested (Jarod Wilson) [1856681]
+- [netdrv] sfc: null out channel->rps_flow_id after freeing it (Jarod Wilson) [1856681]
+- [netdrv] sfc: take correct lock in ef100_reset() (Jarod Wilson) [1856681]
+- [netdrv] sfc: really check hash is valid before using it (Jarod Wilson) [1856681]
+- [netdrv] sfc: check hash is valid before using it (Jarod Wilson) [1856681]
+- [netdrv] sfc: fix ef100 design-param checking (Jarod Wilson) [1856681]
+- [netdrv] sfc: Fix build with CONFIG_RFS_ACCEL disabled (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: add nic-type for VFs, and bind to them (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: read pf_index at probe time (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: functions for selftests (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: statistics gathering (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: plumb in fini_dmaq (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: RX path for EF100 (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: RX filter table management and related gubbins (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: TX path for EF100 NICs (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: read Design Parameters at probe time (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: fail the probe if NIC uses unsol_ev credits (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: check firmware version at start-of-day (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: remove duplicated include from ef100_netdev.c (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: implement ndo_get_phys_port_{id, name} (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: read device MAC address at probe time (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: probe the PHY and configure the MAC (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: actually perform resets (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: extend ef100_check_caps to cover datapath_caps3 (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: read datapath caps, implement check_caps (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: process events for MCDI completions (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: implement ndo_open/close and EVQ probing (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: implement MCDI transport (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: don't call efx_reset_down()/up() on EF100 (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: PHY probe stub (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: reset-handling stub (Jarod Wilson) [1856681]
+- [netdrv] sfc: skeleton EF100 PF driver (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: register accesses on EF100 (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: add EF100 register definitions (Jarod Wilson) [1856681]
+- [netdrv] sfc: remove efx_ethtool_nway_reset() (Jarod Wilson) [1856681]
+- [netdrv] sfc: drop unnecessary list_empty (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: helper function to set default RSS table of given size (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: NVRAM selftest support code (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: populate BUFFER_SIZE_BYTES in INIT_RXQ (Jarod Wilson) [1856681]
+- [netdrv] sfc_ef100: add EF100 to NIC-revision enumeration (Jarod Wilson) [1856681]
+- [netdrv] sfc: get drvinfo driver name from outside the common code (Jarod Wilson) [1856681]
+- [netdrv] sfc: initialise RSS context ID to 'no RSS context' in efx_init_struct() (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise efx_fini_dmaq (Jarod Wilson) [1856681]
+- [netdrv] sfc: factor out efx_mcdi_filter_table_down() from _remove() (Jarod Wilson) [1856681]
+- [netdrv] sfc: don't call tx_limit_len if NIC type doesn't have one (Jarod Wilson) [1856681]
+- [netdrv] sfc: assign TXQs without gaps (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise netif_set_real_numx_queues calls (Jarod Wilson) [1856681]
+- [netdrv] sfc: make tx_queues_per_channel variable at runtime (Jarod Wilson) [1856681]
+- [netdrv] sfc: move modparam 'rss_cpus' out of common channel code (Jarod Wilson) [1856681]
+- [netdrv] sfc: move modparam 'interrupt_mode' out of common channel code (Jarod Wilson) [1856681]
+- [netdrv] sfc: remove max_interrupt_mode (Jarod Wilson) [1856681]
+- [netdrv] sfc: support setting MTU even if not privileged to configure MAC fully (Jarod Wilson) [1856681]
+- [netdrv] sfc: don't call tx_remove if there isn't one (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise initialisation of efx->vport_id (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise efx->xq_entries initialisation (Jarod Wilson) [1856681]
+- [netdrv] sfc: initialise max_channels in efx_init_channels() (Jarod Wilson) [1856681]
+- [netdrv] sfc: move definition of EFX_MC_STATS_GENERATION_INVALID (Jarod Wilson) [1856681]
+- [netdrv] sfc: factor out efx_tx_tso_header_length() and understand encapsulation (Jarod Wilson) [1856681]
+- [netdrv] sfc: remove duplicate declaration of efx_enqueue_skb_tso() (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise TSO fallback code (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise efx_sync_rx_buffer() (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise some MAC configuration code (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise miscellaneous efx functions (Jarod Wilson) [1856681]
+- [netdrv] sfc: add missing licence info to mcdi_filters.c (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise MCDI MAC stats handling (Jarod Wilson) [1856681]
+- [netdrv] sfc: move NIC-specific mcdi_port declarations out of common header (Jarod Wilson) [1856681]
+- [netdrv] sfc: extend common GRO interface to support CHECKSUM_COMPLETE (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise ARFS handling (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise drain event handling (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise PCI error handlers (Jarod Wilson) [1856681]
+- [netdrv] sfc: track which BAR is mapped (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise FC advertising (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise other ethtool bits (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise ethtool NFC and RXFH/RSS functions (Jarod Wilson) [1856681]
+- [netdrv] sfc: commonise ethtool link handling functions (Jarod Wilson) [1856681]
+- [netdrv] sfc: split up nic.h (Jarod Wilson) [1856681]
+- [netdrv] sfc: refactor EF10 stats handling (Jarod Wilson) [1856681]
+- [netdrv] sfc: don't try to create more channels than we can have VIs (Jarod Wilson) [1856681]
+- [netdrv] sfc: extend bitfield macros up to POPULATE_DWORD_13 (Jarod Wilson) [1856681]
+- [netdrv] sfc: determine flag word automatically in efx_has_cap() (Jarod Wilson) [1856681]
+- [netdrv] sfc: update MCDI protocol headers (Jarod Wilson) [1856681]
+- [netdrv] sfc: replace '---help---' in Kconfig files with 'help' (Jarod Wilson) [1856681]
+- [netdrv] sfc: add missing annotation for efx_ef10_try_update_nic_stats_vf() (Jarod Wilson) [1856681]
+- [netdrv] sfc: avoid an unused-variable warning (Jarod Wilson) [1856681]
+- [netdrv] sfc: fix dereference of table before it is null checked (Jarod Wilson) [1856681]
+- [netdrv] sfc: siena_check_caps() can be static (Jarod Wilson) [1856681]
+- [netdrv] sfc: actually wire up siena_check_caps() (Jarod Wilson) [1856681]
+- [netdrv] sfc: make firmware-variant printing a nic_type function (Jarod Wilson) [1856681]
+- [netdrv] sfc: make filter table probe caller responsible for adding VLANs (Jarod Wilson) [1856681]
+- [netdrv] sfc: move rx_rss_context_exclusive into struct efx_mcdi_filter_table (Jarod Wilson) [1856681]
+- [netdrv] sfc: rework handling of (firmware) multicast chaining state (Jarod Wilson) [1856681]
+- [netdrv] sfc: move 'must restore' flags out of ef10-specific nic_data (Jarod Wilson) [1856681]
+- [netdrv] sfc: use efx_has_cap for capability checks outside of NIC-specific code (Jarod Wilson) [1856681]
+- [netdrv] sfc: make capability checking a nic_type function (Jarod Wilson) [1856681]
+- [netdrv] sfc: move vport_id to struct efx_nic (Jarod Wilson) [1856681]
+- [ntb] NTB: Revert "Add Hygon Device ID" (Myron Stowe) [1880468]
+- [tools] NTB: ntb_test: Fix bug when counting remote files (Myron Stowe) [1908031]
+- [ntb] NTB: perf: Fix race condition when run with ntb_test (Myron Stowe) [1908031]
+- [ntb] NTB: perf: Fix support for hardware that doesn't have port numbers (Myron Stowe) [1908031]
+- [ntb] NTB: perf: Don't require one more memory window than number of peers (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_pingpong: Choose doorbells based on port number (Myron Stowe) [1908031]
+- [ntb] NTB: Fix the default port and peer numbers for legacy drivers (Myron Stowe) [1908031]
+- [ntb] NTB: Revert the change to use the NTB device dev for DMA allocations (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_tool: reading the link file should not end in a NULL byte (Myron Stowe) [1908031]
+- [ntb] ntb_perf: avoid false dma unmap of destination address (Myron Stowe) [1908031]
+- [ntb] ntb_perf: increase sleep time from one milli sec to one sec (Myron Stowe) [1908031]
+- [ntb] ntb_tool: pass correct struct device to dma_alloc_coherent (Myron Stowe) [1908031]
+- [ntb] ntb_perf: pass correct struct device to dma_alloc_coherent (Myron Stowe) [1908031]
+- [include] NTB: correct ntb_peer_spad_addr and ntb_peer_spad_read comment typos (Myron Stowe) [1908031]
+- [ntb] ntb: intel: fix static declaration (Myron Stowe) [1908031]
+- [ntb] ntb: intel: add hw workaround for NTB BAR alignment (Myron Stowe) [1908031]
+- [ntb] ntb: intel: Add Icelake (gen4) support for Intel NTB (Myron Stowe) [1908031]
+- [ntb] NTB: Fix static check warning in perf_clear_test (Myron Stowe) [1908031]
+- [include] include/ntb: Fix typo in ntb_unregister_device description (Myron Stowe) [1908031]
+- [ntb] NTB: add pci shutdown handler for AMD NTB (Myron Stowe) [1908031]
+- [ntb] NTB: send DB event when driver is loaded or un-loaded (Myron Stowe) [1908031]
+- [ntb] NTB: remove redundant setting of DB valid mask (Myron Stowe) [1908031]
+- [ntb] NTB: return link up status correctly for PRI and SEC (Myron Stowe) [1908031]
+- [ntb] NTB: add helper functions to set and clear sideinfo (Myron Stowe) [1908031]
+- [ntb] NTB: move ntb_ctrl handling to init and deinit (Myron Stowe) [1908031]
+- [ntb] NTB: handle link up, D0 and D3 events correctly (Myron Stowe) [1908031]
+- [ntb] NTB: handle link down event correctly (Myron Stowe) [1908031]
+- [ntb] NTB: remove handling of peer_sta from amd_link_is_up (Myron Stowe) [1908031]
+- [ntb] NTB: set peer_sta within event handler itself (Myron Stowe) [1908031]
+- [ntb] NTB: return the side info status from amd_poll_link (Myron Stowe) [1908031]
+- [ntb] NTB: define a new function to get link status (Myron Stowe) [1908031]
+- [ntb] NTB: Enable link up and down event notification (Myron Stowe) [1908031]
+- [ntb] NTB: clear interrupt status register (Myron Stowe) [1908031]
+- [ntb] NTB: Fix access to link status and control register (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_transport: Use scnprintf() for avoiding potential buffer overflow (Myron Stowe) [1908031]
+- [ntb] ntb_hw_switchtec: Fix ntb_mw_clear_trans error if size == 0 (Myron Stowe) [1908031]
+- [ntb] ntb_tool: Fix printk format (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_perf: Fix address err in perf_copy_chunk (Myron Stowe) [1908031]
+- [ntb] NTB: Fix an error in get link status (Myron Stowe) [1908031]
+- [ntb] NTB: Add Hygon Device ID (Myron Stowe) [1908031]
+- [ntb] NTB: fix IDT Kconfig typos/spellos (Myron Stowe) [1908031]
+- [ntb] ntb_hw_amd: Add memory window support for new AMD hardware (Myron Stowe) [1908031]
+- [ntb] ntb_hw_amd: Add a new NTB PCI device ID (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_transport: remove redundant assignment to rc (Myron Stowe) [1908031]
+- [ntb] ntb_hw_switchtec: make ntb_mw_set_trans() work when addr == 0 (Myron Stowe) [1908031]
+- [ntb] ntb: point to right memory window index (Myron Stowe) [1908031]
+- [ntb] NTB/msi: remove incorrect MODULE defines (Myron Stowe) [1908031]
+- [documentation] NTB: Describe the ntb_msi_test client in the documentation (Myron Stowe) [1908031]
+- [ntb] NTB: Add MSI interrupt support to ntb_transport (Myron Stowe) [1908031]
+- [tools] NTB: Add ntb_msi_test support to ntb_test (Myron Stowe) [1908031]
+- [ntb] NTB: Introduce NTB MSI Test Client (Myron Stowe) [1908031]
+- [ntb] NTB: Introduce MSI library (Myron Stowe) [1908031]
+- [ntb] NTB: Rename ntb.c to support multiple source files in the module (Myron Stowe) [1908031]
+- [include] NTB: Introduce functions to calculate multi-port resource index (Myron Stowe) [1908031]
+- [include] NTB: Introduce helper functions to calculate logical port number (Myron Stowe) [1908031]
+- [pci] PCI/switchtec: Add module parameter to request more interrupts (Myron Stowe) [1908031]
+- [ntb] ntb_hw_switchtec: Fix setup MW with failure bug (Myron Stowe) [1908031]
+- [ntb] ntb_hw_switchtec: Skip unnecessary re-setup of shared memory window for crosslink case (Myron Stowe) [1908031]
+- [ntb] ntb_hw_switchtec: Remove redundant steps of switchtec_ntb_reinit_peer() function (Myron Stowe) [1908031]
+- [include] NTB: correct ntb_dev_ops and ntb_dev comment typos (Myron Stowe) [1908031]
+- [ntb] NTB: amd: Silence shift wrapping warning in amd_ntb_db_vector_mask() (Myron Stowe) [1908031]
+- [ntb] ntb_hw_switchtec: potential shift wrapping bug in switchtec_ntb_init_sndev() (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_transport: Ensure qp->tx_mw_dma_addr is initaliazed (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_hw_amd: set peer limit register (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_perf: Clear stale values in doorbell and command SPAD register (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_perf: Disable NTB link after clearing peer XLAT registers (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_perf: Increased the number of message retries to 1000 (Myron Stowe) [1908031]
+- [ntb] ntb: intel: Make intel_ntb3_peer_db_addr static (Myron Stowe) [1908031]
+- [ntb] NTB: add new parameter to peer_db_addr() db_bit and db_data (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_transport: Ensure the destination buffer is mapped for TX DMA (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_transport: Free MWs in ntb_transport_link_cleanup() (Myron Stowe) [1908031]
+- [ntb] ntb_hw_switchtec: Added support of >=4G memory windows (Myron Stowe) [1908031]
+- [include] ntb_hw_switchtec: NT req id mapping table register entry number should be 512 (Myron Stowe) [1908031]
+- [ntb] ntb_hw_switchtec: debug print 64bit aligned crosslink BAR Numbers (Myron Stowe) [1908031]
+- [ntb] ntb: idt: Alter the driver info comments (Myron Stowe) [1908031]
+- [ntb] ntb: idt: Discard temperature sensor IRQ handler (Myron Stowe) [1908031]
+- [ntb] ntb: idt: Add basic hwmon sysfs interface (Myron Stowe) [1908031]
+- [ntb] ntb: idt: Alter temperature read method (Myron Stowe) [1908031]
+- [netdrv] ntb_netdev: Simplify remove with client device drvdata (Myron Stowe) [1908031]
+- [ntb] NTB: transport: Try harder to alloc an aligned MW buffer (Myron Stowe) [1908031]
+- [ntb] ntb: ntb_transport: Mark expected switch fall-throughs (Myron Stowe) [1908031]
+- [ntb] ntb: idt: Set PCIe bus address to BARLIMITx (Myron Stowe) [1908031]
+- [ntb] NTB: ntb_hw_idt: replace IS_ERR_OR_NULL with regular NULL checks (Myron Stowe) [1908031]
+- [ntb] ntb: intel: fix return value for ndev_vec_mask() (Myron Stowe) [1908031]
+- [netdrv] ntb_netdev: fix sleep time mismatch (Myron Stowe) [1908031]
+
+* Wed Dec 16 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-263.el8]
+- [block] block: fix incorrect branching in blk_max_size_offset() (Mike Snitzer) [1903722]
+- [md] dm: fix IO splitting (Mike Snitzer) [1903722]
+- [block] block: fix get_max_io_size() (Mike Snitzer) [1903722]
+- [block] block: Improve physical block alignment of split bios (Mike Snitzer) [1903722]
+- [block] block: use gcd() to fix chunk_sectors limit stacking (Mike Snitzer) [1903722]
+- [kernel] sched/deadline: Fix priority inheritance with multiple scheduling classes (Phil Auld) [1780490]
+- [fs] Convert trailing spaces and periods in path components (Leif Sahlberg) [1882457]
+- [block] loop: Fix occasional uevent drop (Ming Lei) [1897401]
+- [block] block: add a return value to set_capacity_revalidate_and_notify (Ming Lei) [1897401]
+- [fs] fat: truncate inode timestamp updates in setattr (Pavel Reichl) [1533270]
+- [fs] fat: change timestamp updates to use fat_truncate_time (Pavel Reichl) [1533270]
+- [fs] fat: add functions to update and truncate timestamps appropriately (Pavel Reichl) [1533270]
+- [fs] fat: create a function to calculate the timezone offest (Pavel Reichl) [1533270]
+- [net] icmp: randomize the global rate limiter (Guillaume Nault) [1899137]
+- [net] ipv4: Restore flowi4_oif update before call to xfrm_lookup_route (Guillaume Nault) [1899137]
+- [net] ipv4: Update exception handling for multipath routes via same device (Guillaume Nault) [1899137]
+- [net] ip: fix tos reflection in ack and reset packets (Guillaume Nault) [1899137]
+- [net] initialize fastreuse on inet_inherit_port (Guillaume Nault) [1899137]
+- [net] refactor bind_bucket fastreuse into helper (Guillaume Nault) [1899137]
+- [infiniband] RDMA/bnxt_re: Remove set but not used variable 'qplib_ctx' (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Remove the qp from list only if the qp destroy succeeds (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Fix driver crash on unaligned PSN entry address (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Restrict the max_gids to 256 (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Static NQ depth allocation (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Fix the qp table indexing (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Do not report transparent vlan from QP1 (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Change wr posting logic to accommodate variable wqes (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Add helper data structures (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Pull psn buffer dynamically based on prod (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: introduce a function to allocate swq (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: introduce wqe mode to select execution path (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt: Delete 'nq_ptr' variable which is not used (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Remove dead code from rcfw (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Simplify obtaining queue entry from hw ring (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Update missing hsi data structures (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Reduce device page size detection code (Selvin Xavier) [1861886]
+- [infiniband] RDMA/bnxt_re: Remove unsupported modify_device callback (Selvin Xavier) [1861886]
+- [include] net: Add netif_is_bareudp() API to identify bareudp devices (Guillaume Nault) [1839788]
+- [net] Removed the device type check to add mpls support for devices (Guillaume Nault) [1839788]
+- [tools] selftests: set conf.all.rp_filter=0 in bareudp.sh (Guillaume Nault) [1839788]
+- [tools] selftests: disable rp_filter when testing bareudp (Guillaume Nault) [1839788]
+- [tools] selftests: add test script for bareudp tunnels (Guillaume Nault) [1839788]
+- [documentation] bareudp: Corrected description of bareudp module. (Guillaume Nault) [1839788]
+- [netdrv] bareudp: forbid mixing IP and MPLS in multiproto mode (Guillaume Nault) [1839788]
+- [netdrv] bareudp: Reverted support to enable & disable rx metadata collection (Guillaume Nault) [1839788]
+- [documentation] bareudp: update iproute2 sample commands (Guillaume Nault) [1839788]
+- [netdrv] bareudp: Added attribute to enable & disable rx metadata collection (Guillaume Nault) [1839788]
+- [netdrv] bareudp: Fixed multiproto mode configuration (Guillaume Nault) [1839788]
+- [netdrv] bareudp: Fixed configuration to avoid having garbage values (Guillaume Nault) [1839788]
+- [netdrv] net: bareudp: avoid uninitialized variable warning (Guillaume Nault) [1839788]
+- [netdrv] bareudp: Fixed bareudp receive handling (Guillaume Nault) [1839788]
+- [netdrv] bareudp: remove unnecessary udp_encap_enable() in bareudp_socket_create() (Guillaume Nault) [1839788]
+- [netdrv] bareudp: print error message when command fails (Guillaume Nault) [1839788]
+- [netdrv] bareudp: add module alias (Guillaume Nault) [1839788]
+- [netdrv] bareudp: Fix uninitialized variable warnings. (Guillaume Nault) [1839788]
+- [netdrv] Special handling for IP & MPLS. (Guillaume Nault) [1839788]
+- [net] UDP tunnel encapsulation module for tunnelling different protocols like MPLS, IP, NSH etc. (Guillaume Nault) [1839788]
+- [arm64] arm64: remove arm64ksyms.c (Mark Salter) [1883365]
+- [arm64] arm64: frace: use asm EXPORT_SYMBOL() (Mark Salter) [1883365]
+- [arm64] arm64: string: use asm EXPORT_SYMBOL() (Mark Salter) [1883365]
+- [arm64] arm64: uaccess: use asm EXPORT_SYMBOL() (Mark Salter) [1883365]
+- [arm64] arm64: page: use asm EXPORT_SYMBOL() (Mark Salter) [1883365]
+- [arm64] arm64: smccc: use asm EXPORT_SYMBOL() (Mark Salter) [1883365]
+- [arm64] arm64: tishift: use asm EXPORT_SYMBOL() (Mark Salter) [1883365]
+- [arm64] arm64: add EXPORT_SYMBOL_NOKASAN() (Mark Salter) [1883365]
+- [mm] arm64: move memstart_addr export inline (Mark Salter) [1883365]
+- [arm64] arm64: remove bitop exports (Mark Salter) [1883365]
+- [arm64] arm64: lib: use C string functions with KASAN enabled (Mark Salter) [1883365]
+- [arm64] arm64: add <asm/asm-prototypes.h> (Mark Salter) [1883365]
+- [arm64] locking/atomics/arm64, arm64/bitops: Include <asm-generic/bitops/ext2-atomic-setbit.h> (Mark Salter) [1883365]
+- [arm64] locking/atomics/arm64: Replace our atomic/lock bitop implementations with asm-generic (Mark Salter) [1883365]
+- [include] locking/atomics, asm-generic/bitops/lock.h: Rewrite using atomic_fetch_*() (Mark Salter) [1883365]
+- [include] locking/atomics, asm-generic/bitops/atomic.h: Rewrite using atomic_*() APIs (Mark Salter) [1883365]
+- [thermal] thermal: rcar_thermal: Add missing braces to conditional statement (Ivan Vecera) [1894564]
+- [thermal] thermal: Rename set_mode() to change_mode() (Ivan Vecera) [1894564]
+- [thermal] thermal: Simplify or eliminate unnecessary set_mode() methods (Ivan Vecera) [1894564]
+- [thermal] thermal: core: Stop polling DISABLED thermal devices (Ivan Vecera) [1894564]
+- [thermal] thermal: Explicitly enable non-changing thermal zone devices (Ivan Vecera) [1894564]
+- [thermal] thermal: Use mode helpers in drivers (Ivan Vecera) [1894564]
+- [thermal] thermal: Add mode helpers (Ivan Vecera) [1894564]
+- [thermal] thermal: remove get_mode() operation of drivers (Ivan Vecera) [1894564]
+- [thermal] thermal: Store device mode in struct thermal_zone_device (Ivan Vecera) [1894564]
+- [include] thermal: Add current mode to thermal zone device (Ivan Vecera) [1894564]
+- [acpi] thermal: Store thermal mode in a dedicated enum (Ivan Vecera) [1894564]
+- [acpi] acpi: thermal: Fix error handling in the register function (Ivan Vecera) [1894564]
+- [thermal] thermal: core: skip update disabled thermal zones after suspend (Ivan Vecera) [1894564]
+- [thermal] Thermal: do not clear passive state during system sleep (Ivan Vecera) [1894564]
+- [thermal] thermal: of-thermal: disable passive polling when thermal zone is disabled (Ivan Vecera) [1894564]
+- [crypto] crypto: qat - drop input parameter from adf_enable_aer() (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - fix function parameters descriptions (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - remove unnecessary mutex_init() (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - use PCI_VDEVICE (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - replace device ids defines (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - include domain in top level debugfs path (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - check cipher length for aead AES-CBC-HMAC-SHA (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - Use fallthrough pseudo-keyword (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - add delay before polling mailbox (Vladis Dronov) [1855190]
+- [include] PCI: Add Intel QuickAssist device IDs (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - fix double free in qat_uclo_create_batch_init_list (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - fallback for xts with 192 bit keys (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - remove unused field in skcipher ctx (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - validate xts key (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - allow xts requests not multiple of block (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - update timeout logic in put admin msg (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - send admin messages to set of AEs (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - update fw init admin msg (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - remove packed attribute in etr structs (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - replace user types with kernel ABI __u types (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - replace user types with kernel u types (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - convert to SPDX License Identifiers (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - simplify the qat_crypto function (Vladis Dronov) [1855190]
+- [crypto] crypto: qat - spelling s/Decrytp/Decrypt/ (Vladis Dronov) [1855190]
+- [crypto] crypto: qat/adf_aer - Replace GFP_ATOMIC with GFP_KERNEL in adf_dev_aer_schedule_reset() (Vladis Dronov) [1855190]
+- [thermal] thermal: int340x: processor_thermal: fix: update Jasper Lake PCI id (David Arcari) [1889331]
+- [thermal] thermal: int3403_thermal: Downgrade error message (David Arcari) [1889331]
+- [thermal] thermal/int340x_thermal: Prevent page fault on .set_mode() op (David Arcari) [1889331]
+- [thermal] thermal/int340x_thermal: Don't require IDSP to exist (David Arcari) [1889331]
+- [thermal] thermal/int340x_thermal: Export OEM vendor variables (David Arcari) [1889331]
+- [thermal] thermal/int340x_thermal: Export GDDV (David Arcari) [1889331]
+- [thermal] thermal: int3400_thermal: Statically initialize .get_mode()/.set_mode() ops (David Arcari) [1889331]
+- [thermal] thermal: int340x_thermal: fix: Update Tiger Lake ACPI device IDs (David Arcari) [1889331]
+- [thermal] thermal: int340x_thermal: Use scnprintf() for avoiding potential buffer overflow (David Arcari) [1889331]
+- [thermal] thermal: int340x: processor_thermal: Add Tiger Lake support (David Arcari) [1889331]
+- [platform] acpi: Remove header dependency (David Arcari) [1889331]
+- [thermal] thermal: int340x: switch to use <linux/units.h> helpers (David Arcari) [1889331]
+- [thermal] thermal: int340x: processor_thermal: Add Jasper Lake support (David Arcari) [1889331]
+- [thermal] thermal: int340x_thermal: Add Tiger Lake ACPI device IDs (David Arcari) [1889331]
+- [thermal] thermal: intel: int3403: replace printk(KERN_WARN...) with pr_warn(...) (David Arcari) [1889331]
+- [thermal] thermal: intel: int340x_thermal: Remove unnecessary acpi_has_method() uses (David Arcari) [1889331]
+- [thermal] thermal: int340x: processor_thermal: Add Ice Lake support (David Arcari) [1889331]
+- [thermal] drivers: thermal: processor_thermal_device: Export sysfs interface for TCC offset (David Arcari) [1889331]
+- [netdrv] net/mlx5e: Fix arch depending casting issue in FEC (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Kconfig: convert imply usage to weak dependency (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Fix condition for termination table cleanup (Alaa Hleihel) [1858559 1851700]
+- [netdrv] net/mlx5: Use a separate work queue for fib event handling (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Add support for RDMA TX flow table (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Add support for RDMA TX steering (Alaa Hleihel) [1858559]
+- [infiniband] IB/mlx5: Move to fully dynamic UAR mode once user space supports it (Alaa Hleihel) [1858559]
+- [infiniband] IB/mlx5: Limit the scope of struct mlx5_bfreg_info to mlx5_ib (Alaa Hleihel) [1858559]
+- [infiniband] IB/mlx5: Extend QP creation to get uar page index from user space (Alaa Hleihel) [1858559]
+- [infiniband] IB/mlx5: Extend CQ creation to get uar page index from user space (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Avoid group version scan when not necessary (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Avoid incrementing FTE version (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Simplify matching group searches (Alaa Hleihel) [1858559]
+- [infiniband] IB/mlx5: Generally use the WC auto detection test result (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Avoid forwarding to other eswitch uplink (Alaa Hleihel) [1858559 1851700]
+- [netdrv] net/mlx5: Eswitch, enable forwarding back to uplink port (Alaa Hleihel) [1858559 1851700]
+- [netdrv] net/mlx5e: Add support for offloading traffic from uplink to uplink (Alaa Hleihel) [1858559 1851700]
+- [netdrv] net/mlx5: Don't use termination tables in slow path (Alaa Hleihel) [1858559 1851700]
+- [netdrv] net/mlx5: Avoid configuring eswitch QoS if not supported (Alaa Hleihel) [1858559 1851700]
+- [netdrv] net/mlx5: DR, Add support for flow table id destination action (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: E-Switch, Refactor unload all reps per rep type (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: E-Switch, Update VF vports config when num of VFs changed (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: E-Switch, Introduce per vport configuration for eswitch modes (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: E-switch, Make vport setup/cleanup sequence symmetric (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: E-Switch, Prepare for vport enable/disable refactor (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: E-Switch, Remove redundant warning when QoS enable failed (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: E-Switch, Remove redundant check of eswitch manager cap (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Allow MRs to be created in the cache synchronously (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Revise how the hysteresis scheme works for cache filling (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Fix locking in MR cache work queue (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Lock access to ent->available_mrs/limit when doing queue_work (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Fix MR cache size and limit debugfs (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Always remove MRs from the cache before destroying them (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Simplify how the MR cache bucket is located (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Rename the tracking variables for the MR cache (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Replace spinlock protected write with atomic var (Alaa Hleihel) [1858559]
+- [infiniband] {IB, net}/mlx5: Move asynchronous mkey creation to mlx5_ib (Alaa Hleihel) [1858559]
+- [infiniband] {IB, net}/mlx5: Assign mkey variant in mlx5_ib only (Alaa Hleihel) [1858559]
+- [infiniband] {IB, net}/mlx5: Setup mkey variant before mr create command invocation (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Use offsetofend() instead of duplicated variant (Alaa Hleihel) [1858559]
+- [infiniband] RDMA/mlx5: Remove duplicate definitions of SW_ICM macros (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: E-switch, make query inline mode a static function (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Allocate smaller size tables for ft offload (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Introduce TLS and IPSec objects enums (Alaa Hleihel) [1858559]
+- [include] net/mlx5: Introduce egress acl forward-to-vport capability (Alaa Hleihel) [1858559]
+- [infiniband] IB/mlx5: Add np_min_time_between_cnps and rp_max_rate debug params (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Fix header guard in rsc_dump.h (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5e: Replace zero-length array with flexible-array member (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Remove a useless 'drain_workqueue()' call in 'mlx5e_ipsec_cleanup()' (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5e: Add support for FEC modes based on 50G per lane links (Alaa Hleihel) [1858559]
+- [netdrv] net/mlxe5: Separate between FEC and current speed (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5e: Advertise globaly supported FEC modes (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5e: Enforce setting of a single FEC mode (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5e: Set FEC to auto when configured mode is not supported (Alaa Hleihel) [1858559]
+- [netdrv] mlx5: Use proper logging and tracing line terminations (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5e: Support dump callback in RX reporter (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5e: Support dump callback in TX reporter (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5e: Gather reporters APIs together (Alaa Hleihel) [1858559]
+- [netdrv] net/mlx5: Add support for resource dump (Alaa Hleihel) [1858559]
+- [netdrv] bnxt_en: Fix wrong flag value passed to HWRM_PORT_QSTATS_EXT fw call (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix HWRM_FUNC_QSTATS_EXT firmware call (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Return -EOPNOTSUPP for ETHTOOL_GREGS on VFs (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Protect bnxt_set_eee() and bnxt_set_pauseparam() with mutex (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: return proper error codes in bnxt_show_temp (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Use memcpy to copy VPD field info (Jonathan Toppins) [1861885]
+- [netdrv] net: ethernet: broadcom: have drivers select DIMLIB as needed (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix NULL ptr dereference crash in bnxt_fw_reset_task() (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Avoid sending firmware messages when AER error is detected (Jonathan Toppins) [1861885]
+- [netdrv] bnxt: don't enable NAPI until rings are ready (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Setup default RSS map in all scenarios (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: init RSS table for Minimal-Static VF reservation (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: fix HWRM error when querying VF temperature (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix possible crash in bnxt_fw_reset_task() (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix PCI AER error recovery flow (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix ethtool -S statitics with XDP or TCs enabled (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Check for zero dir entries in NVRAM (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Don't query FW when netif_running() is false (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Remove superfluous memset() (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Add support for 'ethtool -d' (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Switch over to use the 64-bit software accumulated counters (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Accumulate all counters (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Retrieve hardware masks for port counters (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Retrieve hardware counter masks from firmware if available (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Allocate additional memory for all statistics blocks (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Refactor statistics code and structures (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Use macros to define port statistics size and offset (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Update firmware interface to 1.10.1.54 (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Remove PCIe non-counters from ethtool statistics (Jonathan Toppins) [1861885]
+- [netdrv] net: bnxt: don't complain if TC flower can't be supported (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix completion ring sizing with TPA enabled (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Init ethtool link settings after reading updated PHY configuration (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix race when modifying pause settings (Jonathan Toppins) [1861885]
+- [netdrv] bnxt: convert to new udp_tunnel_nic infra (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: allow firmware to disable VLAN offloads (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: clean up VLAN feature bit handling (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Implement ethtool -X to set indirection table (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Return correct RSS indirection table entries to ethtool -x (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fill HW RSS table from the RSS logical indirection table (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Add helper function to return the number of RSS contexts (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Add logical RSS indirection table structure (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix up bnxt_get_rxfh_indir_size() (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Set up the chip specific RSS table size (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Read VPD info only for PFs (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix statistics counters issue during ifdown with older firmware (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Do not enable legacy TX push on older firmware (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Store the running firmware version code (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Add board.serial_number field to info_get cb (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Return from timer if interface is not in open state (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix AER reset logic on 57500 chips (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Re-enable SRIOV during resume (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Simplify bnxt_resume() (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: fix firmware message length endianness (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix return code to "flash_device" (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Fix accumulation of bp->net_stats_prev (Jonathan Toppins) [1861885]
+- [netdrv] net: bnxt: Remove Comparison to bool in bnxt_ethtool.c (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: show only relevant ethtool stats for a TX or RX ring (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Split HW ring statistics strings into RX and TX parts (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Refactor the software ring counters (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Add doorbell information to bnxt_en_dev struct (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Add support for L2 doorbell size (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Set the db_offset on 57500 chips for the RDMA MSIX entries (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Define the doorbell offsets on 57500 chips (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Improve kernel log messages related to ethtool reset (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: fix ethtool_reset_flags ABI violations (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: refactor ethtool firmware reset types (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: prepare to refactor ethtool reset types (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Do not include ETH_FCS_LEN in the max packet length sent to fw (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Improve TQM ring context memory sizing formulas (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Allocate TQM ring context memory according to fw specification (Jonathan Toppins) [1861885]
+- [netdrv] bnxt_en: Update firmware spec. to 1.10.1.33 (Jonathan Toppins) [1861885]
+- [fs] fs/namespace.c: fix mountpoint reference counter race (Pavel Reichl) [1852651] {CVE-2020-12114}
+
+* Sun Dec 13 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-262.el8]
+- [powerpc] powerpc/64: Fix kernel stack 16-byte alignment (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/aout: Fix struct user definition to use user_pt_regs (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/uapi: Fix sigcontext definition to use user_pt_regs (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] bpf: powerpc: fix broken uapi for BPF_PROG_TYPE_PERF_EVENT (Desnes Augusto Nunes do Rosario) [1854528]
+- [tools] selftests/powerpc: Tests for kernel accessing user memory (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint/ptrace: Introduce PPC_DEBUG_FEATURE_DATA_BP_ARCH_31 (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Fix exception handling for CONFIG_HAVE_HW_BREAKPOINT=N (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Fix length calculation for unaligned target (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Move DAWR detection logic outside of hw_breakpoint.c (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint/ptrace: Fix SETHWDEBUG when CONFIG_HAVE_HW_BREAKPOINT=N (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Fix handling of vector instructions (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Fix quadword instruction handling on p10 predecessors (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/hw_breakpoint.h: delete duplicated word (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Remove 512 byte boundary (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Return available watchpoints dynamically (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Guest support for 2nd DAWR hcall (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Set CPU_FTR_DAWR1 based on pa-features bit (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/dt_cpu_ftrs: Add feature for 2nd DAWR (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Enable watchpoint functionality on power10 guest (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Fix DAWR exception for CACHEOP (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Fix DAWR exception constraint (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Fix 512 byte boundary limit (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] hw-breakpoints: Fix build warnings with clang (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint/xmon: Support 2nd DAWR (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint/xmon: Don't allow breakpoint overwriting (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Don't allow concurrent perf and ptrace events (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Prepare handler to handle more than one watchpoint (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Use builtin ALIGN*() macros (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Introduce is_ptrace_bp() function (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Use loop for thread_struct->ptrace_bps (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Convert thread_struct->hw_brk to an array (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Disable all available watchpoints when !dawr_force_enable (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Get watchpoint count dynamically while disabling them (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Provide DAWR number to __set_breakpoint (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Provide DAWR number to set_dawr (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint/ptrace: Return actual num of available watchpoints (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Introduce function to get nr watchpoints dynamically (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Add SPRN macros for second DAWR (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: move ptrace_triggered() into hw_breakpoint.c (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: create ppc_gethwdinfo() (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: create ptrace_get_debugreg() (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: split out ADV_DEBUG_REGS related functions (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: move register viewing functions out of ptrace.c (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: split out TRANSACTIONAL_MEM related functions (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: split out SPE related functions (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: split out ALTIVEC related functions (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: split out VSX related functions (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: drop PARAMETER_SAVE_AREA_OFFSET (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: drop unnecessary #ifdefs CONFIG_PPC64 (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: remove unused header includes (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc: Move ptrace into a subdirectory (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/watchpoint: Don't call dar_within_range() for Book3S (Desnes Augusto Nunes do Rosario) [1854528]
+- [tools] selftests/powerpc: Enable range tests on 8xx in ptrace-hwbreak.c selftest (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/hw_breakpoints: Rewrite 8xx breakpoints to allow any address range size (Desnes Augusto Nunes do Rosario) [1854528]
+- [tools] powerpc/watchpoint: Support for 8xx in ptrace-hwbreak.c selftest (Desnes Augusto Nunes do Rosario) [1854528]
+- [tools] powerpc/watchpoint: Add DAR outside test in perf-hwbreak.c selftest (Desnes Augusto Nunes do Rosario) [1854528]
+- [tools] selftests/powerpc: Rewrite ptrace-hwbreak.c selftest (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc: permanently include 8xx registers in reg.h (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: Simplify vr_get/set() to avoid GCC warning (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/64: Interrupts save PPR on stack rather than thread_struct (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc: Use SWITCH_FRAME_SIZE for prom and rtas entry (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc/ptrace: Don't use sizeof(struct pt_regs) in ptrace code (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc: Split user/kernel definitions of struct pt_regs (Desnes Augusto Nunes do Rosario) [1854528]
+- [powerpc] powerpc: declare set_breakpoint() static (Desnes Augusto Nunes do Rosario) [1854528]
+- [tools] perf vendor events power9: Added nest imc metric events (Michael Petlan) [1780258]
+- [powerpc] powerpc/perf: Fix crashes with generic_compat_pmu & BHRB (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Exclude pmc5/6 from the irrelevant PMU group constraints (Michael Petlan) [1854525]
+- [powerpc] powerpc/powernv/idle: add a basic stop 0-3 driver for POWER10 (Michael Petlan) [1854525]
+- [powerpc] powerpc/kernel: Cleanup machine check function declarations (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Fix soft lockups due to missed interrupt accounting (Michael Petlan) [1854525]
+- [powerpc] powerpc: Add POWER10 raw mode cputable entry (Michael Petlan) [1854525]
+- [powerpc] powerpc/powernv: Machine check handler for POWER10 (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Add extended regs support for power10 platform (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Add support for outputting extended regs in perf intr_regs (Michael Petlan) [1854525]
+- [tools] perf tools powerpc: Add support for extended regs in power10 (Michael Petlan) [1854525]
+- [tools] perf tools powerpc: Add support for extended register capability (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Fix MMCRA_BHRB_DISABLE define for binutils < 2.28 (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Initialize power10 PMU registers in cpu setup routine (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: BHRB control to disable BHRB logic when not used (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Add Power10 BHRB filter support for PERF_SAMPLE_BRANCH_IND_CALL/COND (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Ignore the BHRB kernel address filtering for P10 (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: power10 Performance Monitoring support (Michael Petlan) [1854525]
+- [powerpc] powerpc/perf: Add Power10 PMU feature to DT CPU features (Michael Petlan) [1854525]
+- [powerpc] powerpc/xmon: Add PowerISA v3.1 PMU SPRs (Michael Petlan) [1854525]
+- [powerpc] powerpc64: Break asm/percpu.h vs spinlock_types.h dependency (Greg Kurz) [1882796]
+- [powerpc] watchpoint: Rename current DAWR macros (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Make struct kernel_param_ops definition const (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: simplify kvm_cma_reserve() (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s: Fix symbol undeclared warnings (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s: Remove redundant initialization of variable ret (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: xive: Convert to DEFINE_SHOW_ATTRIBUTE (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Set LPCR[HDICE] before writing HDEC (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Do not allocate HPT for a nested guest (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: Don't return -ENOTSUPP to userspace in ioctls (Greg Kurz) [1882796]
+- [powerpc] 64s: handle ISA v3.1 local copy-paste context switches (Greg Kurz) [1882796]
+- [powerpc] 64s: Move HMI IRQ stat from percpu variable to paca (Greg Kurz) [1882796]
+- [powerpc] kvm/cma: Improve kernel log during boot (Greg Kurz) [1882796]
+- [powerpc] kvm: Use correct CONFIG symbol in comment (Greg Kurz) [1882796]
+- [powerpc] watchpoint: Rename current H_SET_MODE DAWR macro (Greg Kurz) [1882796]
+- [tools] kvm: ppc: Fix typo on H_DISABLE_AND_GET hcall (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: Clean up redundant kvm_run parameters in assembly (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Save/restore new PMU registers (Greg Kurz) [1882796]
+- [powerpc] perf: Add support for ISA3.1 PMU SPRs (Greg Kurz) [1882796]
+- [powerpc] perf: Update Power PMU cache_events to u64 type (Greg Kurz) [1882796]
+- [powerpc] perf: Update cpu_hw_event to use `struct` for storing MMCR registers (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Cleanup updates for kvm vcpu MMCR (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: Protect kvm_vcpu_read_guest with srcu locks (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Increase KVMPPC_NR_LPIDS on POWER8 and POWER9 (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3shv: Enable support for ISA v3.1 guests (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s pr: Remove uninitialized_var() usage (Greg Kurz) [1882796]
+- [powerpc] kvm/book3s64: Fix kernel crash with nested kvm & DEBUG_VIRTUAL (Greg Kurz) [1882796]
+- [powerpc] book3s64/kvm: Fix secondary page table walk warning during migration (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s: Fix some RCU-list locks (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Ignore kmemleak false positives (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: Clean up redundant 'kvm_run' parameters (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: Remove redundant kvm_run from vcpu_arch (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Remove redundant NULL check (Greg Kurz) [1882796]
+- [powerpc] Fix compile issue with force DAWR (Greg Kurz) [1882796]
+- [powerpc] silence a -Wcast-function-type warning in dawr_write_file_bool (Greg Kurz) [1882796]
+- [powerpc] kvm: ppc: book3s hv: Fix r3 corruption in h_set_dabr() (Greg Kurz) [1882796]
+- [powerpc] Add force enable of DAWR on P9 option (Greg Kurz) [1882796]
+- [documentation] powerpc: Document issues with the DAWR on POWER9 (Greg Kurz) [1882796]
+- [powerpc] Replace _ALIGN_UP() by ALIGN() (Greg Kurz) [1882796]
+- [powerpc] Replace _ALIGN_DOWN() by ALIGN_DOWN() (Greg Kurz) [1882796]
+- [netdrv] tg3: Fix soft lockup when tg3_reset_task() fails (Jonathan Toppins) [1899595]
+- [tools] tools/power turbostat: update version number (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: harden against cpu hotplug (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: adjust for temperature offset (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Build with _FILE_OFFSET_BITS=64 (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Support AMD Family 19h (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Remove empty columns for Jacobsville (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Add a new GFXAMHz column that exposes gt_act_freq_mhz (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Skip pc8, pc9, pc10 columns, if they are disabled (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Fix output formatting for ACPI CST enumeration (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Replace HTTP links with HTTPS ones: TURBOSTAT UTILITY (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Enable accumulate RAPL display (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Introduce functions to accumulate RAPL consumption (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Make the energy variable to be 64 bit (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Always print idle in the system configuration header (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Print /dev/cpu_dma_latency (Prarit Bhargava) [1857136]
+- [tools] turbostat/.gitignore: add SPDX License Identifier (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: update version (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Print cpuidle information (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Fix 32-bit capabilities warning (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Fix missing SYS_LPI counter on some Chromebooks (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Fix gcc build warnings (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Support Elkhart Lake (Prarit Bhargava) [1857136]
+- [tools] tools/power turbostat: Support Jasper Lake (Prarit Bhargava) [1857136]
+- [scsi] scsi: core: Return BLK_STS_AGAIN for ALUA transitioning (Ewan Milne) [1867264]
+- [scsi] scsi: scsi_dh_alua: Set 'transitioning' state on Unit Attention (Ewan Milne) [1867264]
+- [scsi] scsi: scsi_dh_alua: Return BLK_STS_AGAIN for ALUA transitioning state (Ewan Milne) [1867264]
+- [block] scsi: block: Return status code in blk_mq_end_request() (Ewan Milne) [1867264]
+- [scsi] scsi: scsi_dh_alua: Avoid crash during alua_bus_detach() (Ewan Milne) [1877156]
+- [fs] gfs2: check for live vs. read-only file system in gfs2_fitrim (Abhijith Das) [1335139]
+- [fs] gfs2: don't initialize statfs_change inodes in spectator mode (Abhijith Das) [1335139]
+- [fs] gfs2: init_journal's undo directive should also undo the statfs inodes (Abhijith Das) [1335139]
+- [fs] gfs2: Recover statfs info in journal head (Abhijith Das) [1335139]
+- [fs] gfs2: lookup local statfs inodes prior to journal recovery (Abhijith Das) [1335139]
+- [fs] gfs2: Add fields for statfs info in struct gfs2_log_header_host (Abhijith Das) [1335139]
+- [block] nbd: don't update block size after device is started (Ming Lei) [1891363]
+- [platform] platform/x86: thinkpad_acpi: lap or desk mode interface (David Arcari) [1889642]
+- [infiniband] IB/mlx4: Convert rej_tmout radix-tree to XArray (Alaa Hleihel) [1858564]
+- [infiniband] IB/mlx4: Adjust delayed work when a dup is observed (Alaa Hleihel) [1858564]
+- [infiniband] IB/mlx4: Add support for REJ due to timeout (Alaa Hleihel) [1858564]
+- [infiniband] IB/mlx4: Fix starvation in paravirt mux/demux (Alaa Hleihel) [1858564]
+- [infiniband] IB/mlx4: Separate tunnel and wire bufs parameters (Alaa Hleihel) [1858564]
+- [infiniband] IB/mlx4: Add support for MRA (Alaa Hleihel) [1858564]
+- [infiniband] IB/mlx4: Add and improve logging (Alaa Hleihel) [1858564]
+- [netdrv] net: ethernet: mlx4: Avoid assigning a value to ring_cons but not used it anymore in mlx4_en_xmit() (Alaa Hleihel) [1858564]
+- [netdrv] net: ethernet: mlx4: Fix memory allocation in mlx4_buddy_init() (Alaa Hleihel) [1858564]
+- [infiniband] treewide: Use fallthrough pseudo-keyword (Alaa Hleihel) [1858564]
+- [netdrv] net/mlx4: Use fallthrough pseudo-keyword (Alaa Hleihel) [1858564]
+- [netdrv] mlx4: convert to new udp_tunnel_nic infra (Alaa Hleihel) [1858564]
+- [netdrv] mlx4: Mark PM functions as __maybe_unused (Alaa Hleihel) [1858564]
+- [netdrv] mlx4: use generic power management (Alaa Hleihel) [1858564]
+- [netdrv] mlx4: disable device on shutdown (Alaa Hleihel) [1858564 1858563]
+- [include] IB/mlx4: Replace zero-length array with flexible-array (Alaa Hleihel) [1858564 1858563]
+- [netdrv] net: mlx4: remove unneeded variable "err" in mlx4_en_ethtool_add_mac_rule() (Alaa Hleihel) [1858564 1858563]
+- [netdrv] net: mlx4: remove unneeded variable "err" in mlx4_en_get_rxfh() (Alaa Hleihel) [1858564 1858563]
+- [netdrv] net/mlx4_en: use napi_complete_done() in TX completion (Alaa Hleihel) [1858564 1858563]
+- [netdrv] net/mlx4_en: avoid indirect call in TX completion (Alaa Hleihel) [1858564 1858562]
+- [infiniband] RDMA/mlx4: Delete duplicated offsetofend implementation (Alaa Hleihel) [1858564 1858562]
+- [netdrv] net: mlx4: reject unsupported coalescing params (Alaa Hleihel) [1858564 1858562]
+- [hwmon] hwmon: (amd_energy) match for supported models (David Arcari) [1860387]
+- [hwmon] hwmon: (amd_energy) Missing platform_driver_unregister() on error in amd_energy_init() (David Arcari) [1860387]
+- [hwmon] hwmon: Add amd_energy driver to report energy counters (David Arcari) [1860387]
+- [include] include/asm-generic/topology.h: guard cpumask_of_node() macro argument (David Arcari) [1860387]
+
+* Fri Dec 11 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-261.el8]
+- [x86] x86/dumpstack: Fix misleading instruction pointer error message (Kenneth Yin) [1903506]
+- [powerpc] powerpc/powernv/opal-dump : Use IRQ_HANDLED instead of numbers in interrupt handler (Diego Domingos) [1891822]
+- [powerpc] powerpc/powernv/dump: Handle multiple writes to ack attribute (Diego Domingos) [1891822]
+- [powerpc] powerpc/powernv/dump: Fix race while processing OPAL dump (Diego Domingos) [1891822]
+- [powerpc] powerpc/opal_elog: Handle multiple writes to ack attribute (Diego Domingos) [1891822]
+- [powerpc] powerpc/powernv/elog: Fix race while processing OPAL error log event (Diego Domingos) [1891822]
+- [hid] HID: logitech-dj: Fix an error in mse_bluetooth_descriptor (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-dj: Fix Dinovo Mini when paired with a MX5x00 receiver (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-dj: Handle quad/bluetooth keyboards with a builtin trackpad (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-hidpp: Add PID for MX Anywhere 2 (Benjamin Tissoires) [1885560]
+- [hid] HID: wacom: Avoid entering wacom_wac_pen_report for pad / battery (Benjamin Tissoires) [1885560]
+- [hid] HID: ite: Add USB id match for Acer One S1003 keyboard dock (Benjamin Tissoires) [1885560]
+- [hid] HID: multitouch: Lenovo X1 Tablet Gen3 trackpoint and buttons (Benjamin Tissoires) [1885560]
+- [hid] HID: hid-input: fix stylus battery reporting (Benjamin Tissoires) [1885560]
+- [hid] HID: roccat: add bounds checking in kone_sysfs_write_settings() (Benjamin Tissoires) [1885560]
+- [hid] HID: core: Sanitize event code and type when mapping input (Benjamin Tissoires) [1885560]
+- [hid] HID: core: Correctly handle ReportSize being zero (Benjamin Tissoires) [1885560]
+- [hid] HID: elan: Fix memleak in elan_input_configured (Benjamin Tissoires) [1885560]
+- [hid] HID: microsoft: Add rumble support for the 8bitdo SN30 Pro+ controller (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: Set INCREMENT_USAGE_ON_DUPLICATE for all Saitek X52 devices (Benjamin Tissoires) [1885560]
+- [hid] Revert "HID: usbhid: do not sleep when opening device" (Benjamin Tissoires) [1885560]
+- [hid] HID: hiddev: Fix slab-out-of-bounds write in hiddev_ioctl_usage() (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: Always poll three more Lenovo PixArt mice (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: Always sleep 60ms after I2C_HID_PWR_ON commands (Benjamin Tissoires) [1885560]
+- [hid] HID: macally: Constify macally_id_table (Benjamin Tissoires) [1885560]
+- [hid] HID: cougar: Constify cougar_id_table (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: add NOGET quirk for Logitech GROUP (Benjamin Tissoires) [1885560]
+- [hid] HID: Replace HTTP links with HTTPS ones (Benjamin Tissoires) [1885560]
+- [hid] HID: udraw-ps3: Replace HTTP links with HTTPS ones (Benjamin Tissoires) [1885560]
+- [hid] HID: input: Fix devices that return multiple bytes in battery report (Benjamin Tissoires) [1885560]
+- [hid] HID: lenovo: Fix spurious F23 key press report during resume from suspend (Benjamin Tissoires) [1885560]
+- [hid] HID: lenovo: Add ThinkPad 10 Ultrabook Keyboard fn_lock support (Benjamin Tissoires) [1885560]
+- [hid] HID: lenovo: Add ThinkPad 10 Ultrabook Keyboard support (Benjamin Tissoires) [1885560]
+- [hid] HID: lenovo: Rename fn_lock sysfs attr handlers to make them generic (Benjamin Tissoires) [1885560]
+- [hid] HID: lenovo: Factor out generic parts of the LED code (Benjamin Tissoires) [1885560]
+- [hid] HID: lenovo: Merge tpkbd and cptkbd data structures (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-hidpp: avoid repeated "multiplier = " log messages (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech: Use HIDPP_RECEIVER_INDEX instead of 0xff (Benjamin Tissoires) [1885560]
+- [hid] HID: intel-ish-hid: Replace PCI_DEV_FLAGS_NO_D3 with pci_save_state (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: Ignore Simply Automated UPB PIM (Benjamin Tissoires) [1885560]
+- [hid] HID: apple: Disable Fn-key key-re-mapping on clone keyboards (Benjamin Tissoires) [1885560]
+- [hid] HID: Wiimote: Treat the d-pad as an analogue stick (Benjamin Tissoires) [1885560]
+- [hid] HID: steam: fixes race in handling device list (Benjamin Tissoires) [1885560]
+- [hid] HID: magicmouse: do not set up autorepeat (Benjamin Tissoires) [1885560]
+- [hid] HID: alps: support devices with report id 2 (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: Always poll Obins Anne Pro 2 keyboard (Benjamin Tissoires) [1885560]
+- [hid] HID: input: do not run GET_REPORT unless there's a Resolution Multiplier (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: add Mediacom FlexBook edge13 to descriptor override (Benjamin Tissoires) [1885560]
+- [hid] HID: usbhid: remove redundant assignment to variable retval (Benjamin Tissoires) [1885560]
+- [hid] HID: usbhid: do not sleep when opening device (Benjamin Tissoires) [1885560]
+- [hid] HID: multitouch: Remove MT_CLS_WIN_8_DUAL (Benjamin Tissoires) [1885560]
+- [hid] HID: sony: Fix for broken buttons on DS3 USB dongles (Benjamin Tissoires) [1885560]
+- [hid] HID: Add quirks for Trust Panora Graphic Tablet (Benjamin Tissoires) [1885560]
+- [hid] HID: apple: Swap the Fn and Left Control keys on Apple keyboards (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: add Schneider SCL142ALM to descriptor override (Benjamin Tissoires) [1885560]
+- [hid] HID: intel-ish-hid: avoid bogus uninitialized-variable warning (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: Add HID_QUIRK_NO_INIT_REPORTS quirk for Dell K12A keyboard-dock (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: reset Synaptics SYNA2393 on resume (Benjamin Tissoires) [1885560]
+- [hid] HID: usbhid: Fix race between usbhid_close() and usbhid_stop() (Benjamin Tissoires) [1885560]
+- [hid] HID: alps: ALPS_1657 is too specific; use U1_UNICORN_LEGACY instead (Benjamin Tissoires) [1885560]
+- [hid] HID: alps: Add AUI1657 device ID (Benjamin Tissoires) [1885560]
+- [hid] HID: fix typo in Kconfig (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech: Add support for Logitech G11 extra keys (Benjamin Tissoires) [1885560]
+- [hid] HID: multitouch: add eGalaxTouch P80H84 support (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech: drop outdated references to unifying receivers (Benjamin Tissoires) [1885560]
+- [hid] HID: rmi: Simplify an error handling path in 'rmi_hid_read_block()' (Benjamin Tissoires) [1885560]
+- [hid] HID: intel-ish-hid: hbm.h: Replace zero-length array with flexible-array member (Benjamin Tissoires) [1885560]
+- [hid] HID: intel-ish-hid: ishtp-dev.h: Replace zero-length array with flexible-array member (Benjamin Tissoires) [1885560]
+- [hid] HID: Add driver fixing Glorious PC Gaming Race mouse report descriptor (Benjamin Tissoires) [1885560]
+- [hid] HID: lg-g15: Do not fail the probe when we fail to disable F# emulation (Benjamin Tissoires) [1885560]
+- [hid] HID: fix Kconfig word ordering (Benjamin Tissoires) [1885560]
+- [hid] HID: add ALWAYS_POLL quirk to lenovo pixart mouse (Benjamin Tissoires) [1885560]
+- [hid] HID: google: add moonball USB id (Benjamin Tissoires) [1885560]
+- [hid] HID: appleir: Use devm_kzalloc() instead of kzalloc() (Benjamin Tissoires) [1885560]
+- [hid] HID: appleir: Remove unnecessary goto label (Benjamin Tissoires) [1885560]
+- [hid] HID: hid-sensor-custom: Use scnprintf() for avoiding potential buffer overflow (Benjamin Tissoires) [1885560]
+- [hid] HID: hid-picolcd_fb: Use scnprintf() for avoiding potential buffer overflow (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-dj: add support for the static device in the Powerplay mat/receiver (Benjamin Tissoires) [1885560]
+- [hid] HID: hid-bigbenff: fix race condition for scheduled work during removal (Benjamin Tissoires) [1885560]
+- [hid] HID: hid-bigbenff: call hid_hw_stop() in case of error (Benjamin Tissoires) [1885560]
+- [hid] HID: hid-bigbenff: fix general protection fault caused by double kfree (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: add Trekstor Surfbook E11B to descriptor override (Benjamin Tissoires) [1885560]
+- [hid] HID: alps: Fix an error handling path in 'alps_input_configured()' (Benjamin Tissoires) [1885560]
+- [hid] HID: hiddev: Fix race in in hiddev_disconnect() (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-dj: add debug msg when exporting a HID++ report descriptors (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: Remove ITE 8595 entry from hid_have_special_driver (Benjamin Tissoires) [1885560]
+- [include] HID: core: increase HID report buffer size to 8KiB (Benjamin Tissoires) [1885560]
+- [hid] HID: core: fix off-by-one memset in hid_report_raw_event() (Benjamin Tissoires) [1885560]
+- [hid] HID: apple: Add support for recent firmware on Magic Keyboards (Benjamin Tissoires) [1885560]
+- [hid] HID: ite: Only bind to keyboard USB interface on Acer SW5-012 keyboard dock (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-hidpp: BatteryVoltage: only read chargeStatus if extPower is active (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-hidpp: avoid duplicate error handling code in 'hidpp_probe()' (Benjamin Tissoires) [1885560]
+- [hid] HID: hidraw, uhid: Always report EPOLLOUT (Benjamin Tissoires) [1885560]
+- [hid] HID: steam: Fix input device disappearing (Benjamin Tissoires) [1885560]
+- [hid] hid-logitech-hidpp: read battery voltage from newer devices (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech: Add MX Master 3 Mouse (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-hidpp: Support WirelessDeviceStatus connect events (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-hidpp: Support translations from short to long reports (Benjamin Tissoires) [1885560]
+- [hid] HID: hiddev: fix mess in hiddev_open() (Benjamin Tissoires) [1885560]
+- [hid] HID: hid-input: clear unmapped usages (Benjamin Tissoires) [1885560]
+- [hid] HID: Add quirk for incorrect input length on Lenovo Y720 (Benjamin Tissoires) [1885560]
+- [hid] HID: ite: Add USB id match for Acer SW5-012 keyboard dock (Benjamin Tissoires) [1885560]
+- [hid] HID: Add quirk for Xin-Mo Dual Controller (Benjamin Tissoires) [1885560]
+- [hid] HID: hidraw: add support uniq ioctl (Benjamin Tissoires) [1885560]
+- [hid] HID: Fix slab-out-of-bounds read in hid_field_extract (Benjamin Tissoires) [1885560]
+- [hid] HID: picoLCD: constify fb ops (Benjamin Tissoires) [1885560]
+- [hid] HID: uhid: Fix returning EPOLLOUT from uhid_char_poll (Benjamin Tissoires) [1885560]
+- [hid] HID: hidraw: Fix returning EPOLLOUT from hidraw_poll (Benjamin Tissoires) [1885560]
+- [hid] HID: rmi: Check that the RMI_STARTED bit is set before unregistering the RMI transport device (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: remove hid-led devices from hid_have_special_driver (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: Reset ALPS touchpads on resume (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: fix no irq after reset on raydium 3118 (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-hidpp: Silence intermittent get_battery_capacity errors (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: remove orphaned member sleep_delay (Benjamin Tissoires) [1885560]
+- [hid] HID: quirks: Add quirk for HP MSU1465 PIXART OEM mouse (Benjamin Tissoires) [1885560]
+- [hid] HID: core: check whether Usage Page item is after Usage ID items (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: Send power-on command after reset (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: Remove runtime power management (Benjamin Tissoires) [1885560]
+- [hid] HID: google: Detect base folded usage instead of hard-coding whiskers (Benjamin Tissoires) [1885560]
+- [hid] HID: google: add magnemite/masterball USB ids (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech: Add depends on LEDS_CLASS to Logitech Kconfig entry (Benjamin Tissoires) [1885560]
+- [hid] HID: lg-g15: Add support for the G510's M1-M3 and MR LEDs (Benjamin Tissoires) [1885560]
+- [hid] HID: lg-g15: Add support for controlling the G510's RGB backlight (Benjamin Tissoires) [1885560]
+- [hid] HID: lg-g15: Add support for the G510 keyboards' gaming keys (Benjamin Tissoires) [1885560]
+- [hid] HID: lg-g15: Add support for the M1-M3 and MR LEDs (Benjamin Tissoires) [1885560]
+- [hid] HID: lg-g15: Add keyboard and LCD backlight control (Benjamin Tissoires) [1885560]
+- [hid] HID: Add driver for Logitech gaming keyboards (G15, G15 v2) (Benjamin Tissoires) [1885560]
+- [hid] HID: hidraw: replace printk() with corresponding pr_xx() variant (Benjamin Tissoires) [1885560]
+- [hid] HID: prodikeys: make array keys static const, makes object smaller (Benjamin Tissoires) [1885560]
+- [hid] HID: google: whiskers: signal tablet mode on connect (Benjamin Tissoires) [1885560]
+- [hid] HID: google: whiskers: signal tablet mode switch on disconnect (Benjamin Tissoires) [1885560]
+- [hid] HID: google: whiskers: more robust tablet mode detection (Benjamin Tissoires) [1885560]
+- [hid] HID: core: fix dmesg flooding if report field larger than 32bit (Benjamin Tissoires) [1885560]
+- [include] HID: core: Add printk_once variants to hid_warn() etc (Benjamin Tissoires) [1885560]
+- [include] HID: core: reformat and reduce hid_printk macros (Benjamin Tissoires) [1885560]
+- [hid] HID: i2c-hid: modify quirks for weida's devices (Benjamin Tissoires) [1885560]
+- [hid] hid-logitech-dj: add the new Lightspeed receiver (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-dj: add support of the G700(s) receiver (Benjamin Tissoires) [1885560]
+- [hid] HID: do not call hid_set_drvdata(hdev, NULL) in drivers (Benjamin Tissoires) [1885560]
+- [hid] HID: logitech-dj: extend consumer usages range (Benjamin Tissoires) [1885560]
+- [hid] hiddev: Return EPOLLOUT from hiddev_poll (Benjamin Tissoires) [1885560]
+- [hid] hidraw: Return EPOLLOUT from hidraw_poll (Benjamin Tissoires) [1885560]
+- [input] Input: i8042 - add nopnp quirk for Acer Aspire 5 A515 (Benjamin Tissoires) [1885560]
+- [input] Input: i8042 - add Entroware Proteus EL07R4 to nomux and reset lists (Benjamin Tissoires) [1885560]
+- [input] input: i8042 - Remove special Cayman handling (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - only increment wakeup count on touch (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - add ic type 0x15 (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - add support for high resolution reports (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - do not constantly re-query pattern ID (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - add firmware update info for ICs 0x11, 0x13, 0x14 (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - handle firmware updated on newer ICs (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - add support for different firmware page sizes (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - fix detecting IAP version on older controllers (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - handle devices with patterns above 1 (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - make fetching IC type of older controllers more robust (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - handle firmware not implementing "get pattern" command (Benjamin Tissoires) [1885560]
+- [input] Input: i8042 - add Lenovo XiaoXin Air 12 to i8042 nomux list (Benjamin Tissoires) [1885560]
+- [input] Input: elantech - remove redundant assignments to variable error (Benjamin Tissoires) [1885560]
+- [input] Input: synaptics - enable InterTouch for ThinkPad X1E 1st gen (Benjamin Tissoires) [1885560]
+- [uapi] Input: add `SW_MACHINE_COVER` (Benjamin Tissoires) [1885560]
+- [input] input: i8042 - Remove special PowerPC handling (Benjamin Tissoires) [1885560]
+- [input] Input: synaptics - add a second working PNP_ID for Lenovo T470s (Benjamin Tissoires) [1885560]
+- [input] Input: introduce input_mt_report_slot_inactive() (Benjamin Tissoires) [1885560]
+- [input] Input: i8042 - add ThinkPad S230u to i8042 reset list (Benjamin Tissoires) [1885560]
+- [input] Revert "Input: i8042 - add ThinkPad S230u to i8042 nomux list" (Benjamin Tissoires) [1885560]
+- [input] Input: i8042 - attach fwnode to serio i8042 kbd device (Benjamin Tissoires) [1885560]
+- [input] Input: i8042 - add ThinkPad S230u to i8042 nomux list (Benjamin Tissoires) [1885560]
+- [uapi] Input: update SPDX tag for input-event-codes.h (Benjamin Tissoires) [1885560]
+- [input] Input: i8042 - add Acer Aspire 5738z to nomux list (Benjamin Tissoires) [1885560]
+- [uapi] Input: move the new KEY_SELECTIVE_SCREENSHOT keycode (Benjamin Tissoires) [1885560]
+- [input] Input: synaptics - enable RMI on HP Envy 13-ad105ng (Benjamin Tissoires) [1885560]
+- [uapi] Input: allocate keycode for "Selective Screenshot" key (Benjamin Tissoires) [1885560]
+- [input] Input: synaptics - remove the LEN0049 dmi id from topbuttonpad list (Benjamin Tissoires) [1885560]
+- [input] Input: synaptics - enable SMBus on ThinkPad L470 (Benjamin Tissoires) [1885560]
+- [input] Input: synaptics - switch T470s to RMI4 by default (Benjamin Tissoires) [1885560]
+- [input] Input: input_event - fix struct padding on sparc64 (Benjamin Tissoires) [1885560]
+- [uapi] Input: add privacy screen toggle keycode (Benjamin Tissoires) [1885560]
+- [input] Input: synaptics - switch another X1 Carbon 6 to RMI/SMbus (Benjamin Tissoires) [1885560]
+- [uapi] Input: Add event-codes for macro keys found on various keyboards (Benjamin Tissoires) [1885560]
+- [input] Input: i8042 - enable wakeup on a stable struct device (Benjamin Tissoires) [1885560]
+- [input] Input: psmouse - drop all unneeded functions from mouse headers (Benjamin Tissoires) [1885560]
+- [input] Input: remove dev_err() usage after platform_get_irq() (Benjamin Tissoires) [1885560]
+- [input] Input: synaptics - fix a typo (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - switch to using devm_add_action_or_reset() (Benjamin Tissoires) [1885560]
+- [input] Input: elan_i2c - switch to using devm_device_add_groups() (Benjamin Tissoires) [1885560]
+- [power] power: supply: core: Add Standard, Adaptive, and Custom charge types (Benjamin Tissoires) [1885560]
+- [scsi] scsi: mpt3sas: Fix timeouts observed while reenabling IRQ (Tomas Henzl) [1880114]
+- [fs] ext4: handle option set by mount flags correctly (Pavel Reichl) [1848084]
+- [fs] xfs: preserve inode versioning across remounts (Pavel Reichl) [1848084]
+- [kernel] kheaders: explain why include/config/autoconf.h is excluded from md5sum (Jiri Olsa) [1899585]
+- [kernel] kheaders: remove the last bashism to allow sh to run it (Jiri Olsa) [1899585]
+- [kernel] kheaders: optimize header copy for in-tree builds (Jiri Olsa) [1899585]
+- [kernel] kheaders: optimize md5sum calculation for in-tree builds (Jiri Olsa) [1899585]
+- [kernel] kheaders: remove unneeded 'cat' command piped to 'head' / 'tail' (Jiri Olsa) [1899585]
+- [kernel] kheaders: substituting --sort in archive creation (Jiri Olsa) [1899585]
+- [kernel] kheaders: make headers archive reproducible (Jiri Olsa) [1899585]
+- [kernel] kheaders: include only headers into kheaders_data.tar.xz (Jiri Olsa) [1899585]
+- [kernel] kheaders: remove meaningless -R option of 'ls' (Jiri Olsa) [1899585]
+- [kernel] kheaders: Do not regenerate archive if config is not changed (Jiri Olsa) [1899585]
+- [kernel] kheaders: Move from proc to sysfs (Jiri Olsa) [1899585]
+- [kernel] kernel/Makefile: don't assume that kernel/gen_ikh_data.sh is executable (Jiri Olsa) [1899585]
+- [init] init/config: Do not select BUILD_BIN2C for IKCONFIG (Jiri Olsa) [1899585]
+- [kernel] Provide in-kernel headers to make extending kernel easier (Jiri Olsa) [1899585]
+- [tty] pty: do tty_flip_buffer_push without port->lock in pty_write (Artem Savkov) [1787975]
+- [virtio] virtio_balloon: fix sparse warning (Nico Pache) [1839055]
+- [virtio] virtio_balloon: fix up endian-ness for free cmd id (Nico Pache) [1839055]
+- [virtio] virtio-balloon: Document byte ordering of poison_val (Nico Pache) [1839055]
+- [virtio] virtio-mmio: Reject invalid IRQ 0 command line argument (Nico Pache) [1839055]
+- [virtio] virtio-balloon: Disable free page reporting if page poison reporting is not enabled (Nico Pache) [1839055]
+- [virtio] virtio-mmio: Delete an error message in vm_find_vqs() (Nico Pache) [1839055]
+- [virtio] virtio: add VIRTIO_RING_NO_LEGACY (Nico Pache) [1839055]
+- [virtio] virtio-balloon: Avoid using the word 'report' when referring to free page hinting (Nico Pache) [1839055]
+- [virtio] virtio-balloon: make virtballoon_free_page_report() static (Nico Pache) [1839055]
+- [virtio] virtio-balloon: switch back to OOM handler for VIRTIO_BALLOON_F_DEFLATE_ON_OOM (Nico Pache) [1839055]
+- [documentation] mm/page_reporting: add free page reporting documentation (Nico Pache) [1839055]
+- [mm] mm/page_reporting: add budget limit on how many pages can be reported per pass (Nico Pache) [1839055]
+- [mm] mm/page_reporting: rotate reported pages to the tail of the list (Nico Pache) [1839055]
+- [virtio] virtio-balloon: add support for providing free page reports to host (Nico Pache) [1839055]
+- [virtio] virtio-balloon: pull page poisoning config out of free page hinting (Nico Pache) [1839055]
+- [mm] mm: introduce Reported pages (Nico Pache) [1839055]
+- [mm] mm: add function __putback_isolated_page (Nico Pache) [1839055]
+- [mm] mm: use zone and order instead of free area in free_list manipulators (Nico Pache) [1839055]
+- [mm] mm: adjust shuffle code to allow for future coalescing (Nico Pache) [1839055]
+- [virtio] virtio_balloon: Adjust label in virtballoon_probe (Nico Pache) [1839055]
+- [virtio] virtio_ring: Fix mem leak with vring_new_virtqueue() (Nico Pache) [1839055]
+- [virtio] virtio_balloon: Fix memory leaks on errors in virtballoon_probe() (Nico Pache) [1839055]
+- [virtio] virtio-balloon: Fix memory leak when unloading while hinting is in progress (Nico Pache) [1839055]
+- [virtio] virtio_balloon: prevent pfn array overflow (Nico Pache) [1839055]
+- [virtio] virtio-pci: check name when counting MSI-X vectors (Nico Pache) [1839055]
+- [virtio] virtio-balloon: initialize all vq callbacks (Nico Pache) [1839055]
+- [virtio] virtio-mmio: convert to devm_platform_ioremap_resource (Nico Pache) [1839055]
+- [virtio] virtio_balloon: divide/multiply instead of shifts (Nico Pache) [1839055]
+- [virtio] virtio_balloon: name cleanups (Nico Pache) [1839055]
+- [virtio] virtio_balloon: fix shrinker count (Nico Pache) [1839055]
+- [virtio] virtio_balloon: fix shrinker scan number of pages (Nico Pache) [1839055]
+- [virtio] virtio-mmio: add error check for platform_get_irq (Nico Pache) [1839055]
+- [virtio] virtio: Fix indentation of VIRTIO_MMIO (Nico Pache) [1839055]
+- [virtio] virtio/virtio_ring: do some comment fixes (Nico Pache) [1839055]
+- [virtio] virtio_pci: fix a NULL pointer reference in vp_del_vqs (Nico Pache) [1839055]
+- [virtio] virtio: hint if callbacks surprisingly might sleep (Nico Pache) [1839055]
+- [virtio] virtio_balloon: remove the unnecessary 0-initialization (Nico Pache) [1839055]
+- [virtio] virtio-balloon: improve update_balloon_size_func (Nico Pache) [1839055]
+- [virtio] virtio-balloon: tweak config_changed implementation (Nico Pache) [1839055]
+- [misc] virtio: don't allocate vqs when names= NULL (Nico Pache) [1839055]
+- [virtio] virtio_pci: use queue idx instead of array idx to set up the vq (Nico Pache) [1839055]
+- [virtio] virtio: remove deprecated VIRTIO_PCI_CONFIG() (Nico Pache) [1839055]
+- [mm] mm/page_poison: expose page_poisoning_enabled to kernel modules (Nico Pache) [1839055]
+- [virtio] virtio-balloon: VIRTIO_BALLOON_F_PAGE_POISON (Nico Pache) [1839055]
+- [virtio] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_HINT (Nico Pache) [1839055]
+- [virtio] virtio: pci-legacy: Validate queue pfn (Nico Pache) [1839055]
+- [virtio] virtio: mmio-v1: Validate queue PFN (Nico Pache) [1839055]
+- [virtio] virtio_balloon: replace oom notifier with shrinker (Nico Pache) [1839055]
+- [virtio] virtio-balloon: kzalloc the vb struct (Nico Pache) [1839055]
+- [virtio] virtio-balloon: remove BUG() in init_vqs (Nico Pache) [1839055]
+- [mm] mm, debug_pagealloc: use a page type instead of page_ext flag (Nico Pache) [1839055]
+- [mm] mm, page_alloc: more extensive free page checking with debug_pagealloc (Nico Pache) [1839055]
+- [mm] mm, debug_pagelloc: use static keys to enable debugging (Nico Pache) [1839055]
+- [include] include/linux/page_ext.h: drop definition of unused PAGE_EXT_DEBUG_POISON (Nico Pache) [1839055]
+- [tty] vt: vt_ioctl: fix use-after-free in vt_in_use() (Vladis Dronov) [1875585]
+- [tty] vt: vt_ioctl: fix VT_DISALLOCATE freeing in-use virtual console (Vladis Dronov) [1875585]
+- [tty] vt: ioctl, switch VT_IS_IN_USE and VT_BUSY to inlines (Vladis Dronov) [1875585]
+- [tty] vt: selection, introduce vc_is_sel (Vladis Dronov) [1875585]
+- [fs] gfs2: Don't sleep during glock hash walk (Andreas Grunbacher) [1871173]
+
+* Wed Dec 09 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-260.el8]
+- [powerpc] powerpc/64s/hash: Fix hash_preload running with interrupts enabled (Diego Domingos) [1884152]
+- [powerpc] powerpc/pseries: Avoid using addr_to_pfn in real mode (Diego Domingos) [1822675]
+- [powerpc] powerpc/pseries: Handle UE event for memcpy_mcsafe (Diego Domingos) [1822675]
+- [powerpc] powerpc/pseries: Fix MCE handling on pseries (Diego Domingos) [1822675]
+- [powerpc] powerpc/64s/pseries: machine check convert to use common event code (Diego Domingos) [1822675]
+- [powerpc] powerpc/powernv/mce: Print additional information about MCE error (Diego Domingos) [1822675]
+- [powerpc] powerpc/powernv/mce: Print correct severity for MCE error (Diego Domingos) [1822675]
+- [powerpc] powerpc/64s: Report SLB multi-hit rather than parity error (Diego Domingos) [1822675]
+- [powerpc] powerpc/powernv/mce: Reduce MCE console logs to lesser lines (Diego Domingos) [1822675]
+- [powerpc] powerpc/pseries/mce: Improve array initialization (Diego Domingos) [1822675]
+- [powerpc] powerpc/pseries/mce: Fix misleading print for TLB mutlihit (Diego Domingos) [1822675]
+- [netdrv] i40e: fix crash when Rx descriptor count is changed (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Fix out of bounds access of sq (Jiri Benc) [1882708]
+- [tools] tools/bpftool: Fix attaching flow dissector (Jiri Benc) [1882708]
+- [docs] bpf: Use valid and new links in index.rst (Jiri Benc) [1882708]
+- [netdrv] netdevsim: fix unbalaced locking in nsim_create() (Jiri Benc) [1882708]
+- [net] bpfilter: Allow to build bpfilter_umh as a module without static library (Jiri Benc) [1882708]
+- [net] bpf, netns: Fix use-after-free in pernet pre_exit callback (Jiri Benc) [1882708]
+- [net] xsk: Use dma_need_sync instead of reimplenting it (Jiri Benc) [1882708]
+- [net] xsk: Remove a double pool->dev assignment in xp_dma_map (Jiri Benc) [1882708]
+- [net] xsk: Replace the cheap_dma flag with a dma_need_sync flag (Jiri Benc) [1882708]
+- [net] dma-mapping: Add a new dma_need_sync API (Jiri Benc) [1882708]
+- [tools] selftests: bpf: Pass program to bpf_prog_detach in flow_dissector (Jiri Benc) [1882708]
+- [tools] selftests: bpf: Pass program and target_fd in flow_dissector_reattach (Jiri Benc) [1882708]
+- [net] bpf: flow_dissector: Check value of unused flags to BPF_PROG_DETACH (Jiri Benc) [1882708]
+- [net] bpf: flow_dissector: Check value of unused flags to BPF_PROG_ATTACH (Jiri Benc) [1882708]
+- [tools] libbpf: Adjust SEC short cut for expected attach type BPF_XDP_DEVMAP (Jiri Benc) [1882708]
+- [tools] selftests/bpf: Test updating flow_dissector link with same program (Jiri Benc) [1882708]
+- [net] bpf, netns: Keep a list of attached bpf_link's (Jiri Benc) [1882708]
+- [net] bpf, netns: Keep attached programs in bpf_prog_array (Jiri Benc) [1882708]
+- [net] flow_dissector: Pull BPF program assignment up to bpf-netns (Jiri Benc) [1882708]
+- [tools] libbpf: Fix CO-RE relocs against .text section (Jiri Benc) [1882708]
+- [tools] selftests/bpf: Move newer bpf_iter_* type redefining to a new header file (Jiri Benc) [1882708]
+- [net] xdp: Handle frame_sz in xdp_convert_zc_to_xdp_frame() (Jiri Benc) [1882708]
+- [net] xdp: Fix xsk_generic_xmit errno (Jiri Benc) [1882708]
+- [tools] bpf: Selftests and tools use struct bpf_devmap_val from uapi (Jiri Benc) [1882708]
+- [net] xdp: use shift instead of 64 bit division (Jiri Benc) [1882708]
+- [net] bpf: Fix unused-var without NETDEVICES (Jiri Benc) [1882708]
+- [net] seg6: fix seg6_validate_srh() to avoid slab-out-of-bounds (Jiri Benc) [1882708]
+- [net] seg6: fix SRH processing to comply with RFC8754 (Jiri Benc) [1882708]
+- [tools] selftests/bpf: Extend test_flow_dissector to cover link creation (Jiri Benc) [1882708]
+- [tools] selftests/bpf: Convert test_flow_dissector to use BPF skeleton (Jiri Benc) [1882708]
+- [tools] selftests/bpf, flow_dissector: Close TAP device FD after the test (Jiri Benc) [1882708]
+- [tools] selftests/bpf: Add tests for attaching bpf_link to netns (Jiri Benc) [1882708]
+- [tools] bpftool: Support link show for netns-attached links (Jiri Benc) [1882708]
+- [tools] bpftool: Extract helpers for showing link attach type (Jiri Benc) [1882708]
+- [tools] libbpf: Add support for bpf_link-based netns attachment (Jiri Benc) [1882708]
+- [net] bpf: Add link-based BPF program attachment to network namespace (Jiri Benc) [1882708]
+- [net] flow_dissector: Move out netns_bpf prog callbacks (Jiri Benc) [1882708]
+- [net] Introduce netns_bpf for BPF programs attached to netns (Jiri Benc) [1882708]
+- [net] flow_dissector: Pull locking up from prog attach callback (Jiri Benc) [1882708]
+- [net] bpf: Allow SO_BINDTODEVICE opt in bpf_setsockopt (Jiri Benc) [1882708]
+- [net] Make locking in sock_bindtoindex optional (Jiri Benc) [1882708]
+- [net] add sock_bindtoindex (Jiri Benc) [1882708]
+- [tools] selftest: Add tests for XDP programs in devmap entries (Jiri Benc) [1882708]
+- [net] xdp: Add xdp_txq_info to xdp_buff (Jiri Benc) [1882708]
+- [net] xdp: Introduce xdp_convert_frame_to_buff utility routine (Jiri Benc) [1882708]
+- [net] maintainers: Adjust entry in XDP SOCKETS to actual file name (Jiri Benc) [1882708]
+- [net] maintainers, xsk: Update AF_XDP section after moves/adds (Jiri Benc) [1882708]
+- [net] xsk: Explicitly inline functions and move definitions (Jiri Benc) [1882708]
+- [net] xdp: Simplify xdp_return_{frame, frame_rx_napi, buff} (Jiri Benc) [1882708]
+- [net] xsk: Remove MEM_TYPE_ZERO_COPY and corresponding code (Jiri Benc) [1882708]
+- [netdrv] mlx5, xsk: Migrate to new MEM_TYPE_XSK_BUFF_POOL (Jiri Benc) [1882708]
+- [netdrv] ixgbe, xsk: Migrate to new MEM_TYPE_XSK_BUFF_POOL (Jiri Benc) [1882708]
+- [netdrv] ice, xsk: Migrate to new MEM_TYPE_XSK_BUFF_POOL (Jiri Benc) [1882708]
+- [netdrv] i40e, xsk: Migrate to new MEM_TYPE_XSK_BUFF_POOL (Jiri Benc) [1882708]
+- [netdrv] i40e: Separate kernel allocated rx_bi rings from AF_XDP rings (Jiri Benc) [1882708]
+- [netdrv] i40e: Refactor rx_bi accesses (Jiri Benc) [1882708]
+- [net] xsk: Introduce AF_XDP buffer allocation API (Jiri Benc) [1867206 1882708]
+- [net] xsk: Move defines only used by AF_XDP internals to xsk.h (Jiri Benc) [1882708]
+- [net] xsk: Move driver interface to xdp_sock_drv.h (Jiri Benc) [1882708]
+- [net] xsk: Move xskmap.c to net/xdp/ (Jiri Benc) [1882708]
+- [net] xsk: Fix xsk_umem_xdp_frame_sz() (Jiri Benc) [1882708]
+- [tools] selftests/bpf: Convert bpf_iter_test_kern{3, 4}.c to define own bpf_iter_meta (Jiri Benc) [1882708]
+- [tools] selftest/bpf: Make bpf_iter selftest compilable against old vmlinux.h (Jiri Benc) [1882708]
+- [net] bpf: Fix too large copy from user in bpf_test_init (Jiri Benc) [1882708]
+- [tools] selftests/bpf: Xdp_adjust_tail add grow tail tests (Jiri Benc) [1882708]
+- [tools] selftests/bpf: Adjust BPF selftest for xdp_adjust_tail (Jiri Benc) [1882708]
+- [net] bpf: Add xdp.frame_sz in bpf_prog_test_run_xdp(). (Jiri Benc) [1882708]
+- [net] xdp: Clear grow memory in bpf_xdp_adjust_tail() (Jiri Benc) [1882708]
+- [net] xdp: Allow bpf_xdp_adjust_tail() to grow packet size (Jiri Benc) [1882708]
+- [netdrv] mlx5: Rx queue setup time determine frame_sz for XDP (Jiri Benc) [1882708]
+- [netdrv] xdp: For Intel AF_XDP drivers add XDP frame_sz (Jiri Benc) [1882708]
+- [netdrv] ice: Add XDP frame size to driver (Jiri Benc) [1882708]
+- [netdrv] i40e: Add XDP frame size to driver (Jiri Benc) [1882708]
+- [netdrv] ixgbevf: Add XDP frame size to VF driver (Jiri Benc) [1882708]
+- [netdrv] ixgbe: Add XDP frame size to driver (Jiri Benc) [1882708]
+- [netdrv] ixgbe: Fix XDP redirect on archs with PAGE_SIZE above 4K (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Add XDP frame size in two code paths (Jiri Benc) [1882708]
+- [netdrv] vhost_net: Also populate XDP frame size (Jiri Benc) [1882708]
+- [netdrv] tun: Add XDP frame size (Jiri Benc) [1882708]
+- [netdrv] nfp: Add XDP frame size to netronome driver (Jiri Benc) [1882708]
+- [netdrv] net: thunderx: Add XDP frame size (Jiri Benc) [1882708]
+- [netdrv] mlx4: Add XDP frame size and adjust max XDP MTU (Jiri Benc) [1882708]
+- [netdrv] qlogic/qede: Add XDP frame size to driver (Jiri Benc) [1882708]
+- [netdrv] hv_netvsc: Add XDP frame size to driver (Jiri Benc) [1882708]
+- [netdrv] veth: Xdp using frame_sz in veth driver (Jiri Benc) [1882708]
+- [netdrv] veth: Adjust hard_start offset on redirect XDP frames (Jiri Benc) [1882708]
+- [net] xdp: Cpumap redirect use frame_sz and increase skb_tailroom (Jiri Benc) [1882708]
+- [net] xdp: Xdp_frame add member frame_sz and handle in convert_to_xdp_frame (Jiri Benc) [1882708]
+- [net] XDP-generic determining XDP frame size (Jiri Benc) [1882708]
+- [netdrv] sfc: Add XDP frame size (Jiri Benc) [1882708]
+- [netdrv] bnxt: Add XDP frame size to driver (Jiri Benc) [1882708]
+- [net] xdp: Add frame size to xdp_buff (Jiri Benc) [1867209 1882708]
+- [net] bpfilter: switch to kernel_write (Jiri Benc) [1882708]
+- [tools] bpf: selftests: Add bpf_iter selftests (Jiri Benc) [1882708]
+- [tools] bpf: selftests: Add iterator programs for ipv6_route and netlink (Jiri Benc) [1882708]
+- [net] bpf: Enable bpf_iter targets registering ctx argument types (Jiri Benc) [1882708]
+- [net] bpf: Change func bpf_iter_unreg_target() signature (Jiri Benc) [1882708]
+- [net] bpf: Refactor bpf_iter target registration (Jiri Benc) [1882708]
+- [net] bpf: Add netlink and ipv6_route bpf_iter targets (Jiri Benc) [1882708]
+- [net] bpfilter: check if $(CC) can link static libc in Kconfig (Jiri Benc) [1882708]
+- [net] bpfilter: document build requirements for bpfilter_umh (Jiri Benc) [1882708]
+- [net] xsk: Remove unnecessary member in xdp_umem (Jiri Benc) [1882708]
+- [net] xsk: Change two variable names for increased clarity (Jiri Benc) [1882708]
+- [net] bpfilter: match bit size of bpfilter_umh to that of the kernel (Jiri Benc) [1882708]
+- [docs] networking: convert filter.txt to ReST (Jiri Benc) [1882708]
+- [net] xsk: Fix typo in xsk_umem_consume_tx and xsk_generic_xmit comments (Jiri Benc) [1882708]
+- [net] introduce SO_BINDTOIFINDEX sockopt (Jiri Benc) [1882708]
+- [net] netlink: Use sizeof_field() macro (Jiri Benc) [1882708]
+- [net] xdp: Add SPDX license identifier - Makefile/Kconfig (Jiri Benc) [1882708]
+- [net] bpfilter: prefix header search paths with $(srctree)/ (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Add XDP meta data support (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Keep vnet header zeroed if XDP is loaded for small buffer (Jiri Benc) [1882708]
+- [netdrv] virtio-net: keep vnet header zeroed after processing XDP (Jiri Benc) [1882708]
+- [netdrv] virtio-net: get rid of unnecessary container of rq stats (Jiri Benc) [1882708]
+- [netdrv] virtio-net: correctly update XDP_TX counters (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Add kick stats (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Add XDP related stats (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Factor out the logic to determine xdp sq (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Make drop counter per-queue (Jiri Benc) [1882708]
+- [netdrv] virtio_net: Use temporary storage for accounting rx stats (Jiri Benc) [1882708]
+- [netdrv] bnx2: mark driver deprecated (Jonathan Toppins) [1878183]
+- [net] openvswitch: silence suspicious RCU usage warning (Eelco Chaudron) [1895862]
+- [net] openswitch: reuse the helper variable to improve the code readablity (Eelco Chaudron) [1895862]
+- [net] openvswitch: remove unused keep_flows (Eelco Chaudron) [1895862]
+- [net] openvswitch: refactor flow free function (Eelco Chaudron) [1895862]
+- [net] openvswitch: improve the coding style (Eelco Chaudron) [1895862]
+- [net] openvswitch: use skb_list_walk_safe helper for gso segments (Eelco Chaudron) [1895862]
+- [net] openvswitch: do not update max_headroom if new headroom is equal to old headroom (Eelco Chaudron) [1895862]
+- [net] openvswitch: drop unneeded likely() call around IS_ERR() (Eelco Chaudron) [1895862]
+- [net] openvswitch: convert to kvmalloc (Eelco Chaudron) [1895862]
+- [infiniband] RDMA/rxe: Mark Soft-RoCE driver as unsupported (Kamal Heib) [1878207]
+- [net] netfilter: nf_log: missing vlan offload tag and proto (Florian Westphal) [1889990]
+- [net] ipvs: clear skb->tstamp in forwarding path (Florian Westphal) [1889990]
+- [net] netfilter: nft_meta: use socket user_ns to retrieve skuid and skgid (Florian Westphal) [1889990]
+- [net] netfilter: ctnetlink: add a range check for l3/l4 protonum (Florian Westphal) [1889990] {CVE-2020-25211}
+- [net] netfilter: nfnetlink: nfnetlink_unicast() reports EAGAIN instead of ENOBUFS (Florian Westphal) [1889990]
+- [net] netfilter: nf_tables: fix destination register zeroing (Florian Westphal) [1889990]
+- [net] netfilter: nf_tables: add NFTA_SET_USERDATA if not null (Florian Westphal) [1889990]
+- [net] netfilter: flowtable: Set offload timeout when adding flow (Florian Westphal) [1889990]
+- [net] netfilter: conntrack: Move nf_ct_offload_timeout to header file (Florian Westphal) [1889990]
+- [net] netfilter: nft_set_rbtree: Handle outcomes of tree rotations in overlap detection (Florian Westphal) [1889990]
+- [net] netfilter: nf_tables: nft_exthdr: the presence return value should be little-endian (Florian Westphal) [1889990]
+- [net] netfilter: nft_set_pipapo: Drop useless assignment of scratch map index on insert (Florian Westphal) [1889990]
+- [net] netfilter: arp_tables: init netns pointer in xt_tgdtor_param struct (Florian Westphal) [1889990]
+- [net] netfilter: arp_tables: init netns pointer in xt_tgchk_param struct (Florian Westphal) [1889990]
+- [net] ipvs: do not schedule icmp errors from tunnels (Florian Westphal) [1889990]
+- [powercap] powercap: intel_rapl: add support for Sapphire Rapids (Steve Best) [1837373]
+- [powercap] powercap/intel_rapl: add support for RocketLake (Steve Best) [1782715]
+- [char] ipmi: Use fallthrough pseudo-keyword (Tony Camuso) [1877848]
+- [char] ipmi/watchdog: add missing newlines when printing parameters by sysfs (Tony Camuso) [1877848]
+- [char] ipmi: remve duplicate code in __ipmi_bmc_register() (Tony Camuso) [1877848]
+- [documentation] docs: ipmi: Replace HTTP links with HTTPS ones (Tony Camuso) [1877848]
+- [char] ipmi: ssif: Remove finished TODO comment about SMBus alert (Tony Camuso) [1877848]
+- [documentation] Doc: driver-api: ipmi: Add description of alerts_broken module param (Tony Camuso) [1877848]
+- [char] ipmi:ssif: Remove dynamic platform device handing (Tony Camuso) [1877848]
+- [char] Try to load acpi_ipmi when an SSIF ACPI IPMI interface is added (Tony Camuso) [1877848]
+- [char] ipmi_si: Load acpi_ipmi when ACPI IPMI interface added (Tony Camuso) [1877848]
+- [char] ipmi:bt-bmc: Fix error handling and status check (Tony Camuso) [1877848]
+- [char] ipmi: Replace guid_copy() with import_guid() where it makes sense (Tony Camuso) [1877848]
+- [char] ipmi: use vzalloc instead of kmalloc for user creation (Tony Camuso) [1877848]
+- [char] ipmi:bt-bmc: Fix some format issue of the code (Tony Camuso) [1877848]
+- [char] ipmi:bt-bmc: Avoid unnecessary check (Tony Camuso) [1877848]
+- [char] docs: fix references for ipmi.rst file (Tony Camuso) [1877848]
+- [documentation] docs: move IPMI.txt to the driver API book (Tony Camuso) [1877848]
+
+* Sat Dec 05 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-259.el8]
+- [powerpc] pseries: Fix 64 bit logical memory block panic (Steve Best) [1894922]
+- [mm] powerpc/book3s64/radix: Make radix_mem_block_size 64bit (Steve Best) [1894922]
+- [powerpc] powerpc/64s/radix: Fix build failure with RADIX_MMU=n (Steve Best) [1894922]
+- [x86] kvm: mmu: fix is_tdp_mmu_check when the TDP MMU is not in use (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: svm: Update cr3_lm_rsvd_bits for AMD SEV guests (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86: Introduce cr3_lm_rsvd_bits in kvm_vcpu_arch (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86: clflushopt should be treated as a no-op by emulation (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86: handle MSR_IA32_DEBUGCTLMSR with report_ignored_msrs (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86: request masterclock update any time guest uses different msr (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86: ensure pv_cpuid.features is initialized when enabling cap (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86: reads of restricted pv msrs should also result in #GP (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86: use positive error values for msr emulation that causes #GP (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86/mmu: fix counting of rmap entries in pte_list_add (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: x86: bump KVM_MAX_CPUID_ENTRIES (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] vmxfeatures: rename features for consistency with KVM and manual (Vitaly Kuznetsov) [1898914 1878097]
+- [x86] kvm: vmx: Add VMX_FEATURE_USR_WAIT_PAUSE (Vitaly Kuznetsov) [1878097 1898914]
+- [x86] Expose SERIALIZE for supported cpuid (Vitaly Kuznetsov) [1878097 1898914]
+- [x86] kvm: x86: Expose fast short REP MOV for supported cpuid (Vitaly Kuznetsov) [1878097 1898914]
+- [x86] kvm: x86: Expose AVX512 VP2INTERSECT in cpuid for TGL (Vitaly Kuznetsov) [1878097 1898914]
+- [x86] kvm: Convert to new CPU match macros (Vitaly Kuznetsov) [1878097 1898914]
+- [documentation] docs: kvm: fix referenced ioctl symbol (Vitaly Kuznetsov) [1878097 1898914]
+- [documentation] docs: kvm: api.rst: add missing spaces (Vitaly Kuznetsov) [1878097 1898914]
+- [virt] kvm: use struct_size() and flex_array_size() helpers in kvm_io_bus_unregister_dev() (Vitaly Kuznetsov) [1878097 1898914]
+- [documentation] documentation: kvm: fix a typo (Vitaly Kuznetsov) [1878097 1898914]
+- [documentation] documentation: kvm: fix some typos in cpuid.rst (Vitaly Kuznetsov) [1878097 1898914]
+- [documentation] documentation: kvm: fix a typo (Vitaly Kuznetsov) [1878097 1898914]
+- [x86] x86/cpu: Fix typos and improve the comments in sync_core() (David Arcari) [1837457]
+- [x86] x86/cpu: Use SERIALIZE in sync_core() when available (David Arcari) [1837457]
+- [tools] tools arch x86: Sync asm/cpufeatures.h with the kernel sources (David Arcari) [1837457]
+- [x86] x86/cpufeatures: Add enumeration for SERIALIZE instruction (David Arcari) [1837457]
+- [x86] x86/cpu: Refactor sync_core() for readability (David Arcari) [1837457]
+- [x86] x86/cpu: Relocate sync_core() to sync_core.h (David Arcari) [1837457]
+- [arm64] kvm: arm64: Set HCR_EL2.PTW to prevent AT taking synchronous exception (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Survive synchronous exceptions caused by AT instructions (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Add kvm_extable for vaxorcism code (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Print warning when cpu erratum can cause guests to deadlock (Auger Eric) [1882794]
+- [arm64] kvm: arm64: clean up redundant 'kvm_run' parameters (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Use common KVM implementation of MMU memory caches (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Use common code's approach for __GFP_ZERO with memory caches (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Drop @max param from mmu_topup_memory_cache() (Auger Eric) [1882794]
+- [arm64] s/AMEVTYPE/AMEVTYPER (Auger Eric) [1882794]
+- [arm64] kvm: arm64: bti: Reset BTYPE when skipping emulated instructions (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Remove S1PTW check from kvm_vcpu_dabt_iswrite() (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Assume write fault on S1PTW permission fault on instruction fetch (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Update page shift if stage 2 block mapping not supported (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Fix address truncation in traces (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Do not try to map PUDs when they are folded into PMD (Auger Eric) [1882794]
+- [documentation] arm64/x86: kvm: Introduce steal-time cap (Auger Eric) [1882794]
+- [arm64] kvm: arm64: pvtime: Fix stolen time accounting across migration (Auger Eric) [1882794]
+- [kernel] kvm: arm64: Drop type input from kvm_put_guest (Auger Eric) [1882794]
+- [arm64] kvm: arm64: pvtime: Fix potential loss of stolen time (Auger Eric) [1882794]
+- [arm64] kvm: arm64: pvtime: steal-time is only supported when configured (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Move S1PTW S2 fault logic out of io_mem_abort() (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Don't skip cache maintenance for read-only memslots (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Handle data and instruction external aborts the same way (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Rename kvm_vcpu_dabt_isextabt() (Auger Eric) [1882794]
+- [trace] kvm: arm: Add trace name for ARM_NISV (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Ensure that all nVHE hyp code is in .hyp.text (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Don't use has_vhe() for CHOOSE_HYP_SYM() (Auger Eric) [1882794]
+- [arm64] kvm: arm64: timers: Move timer registers to the sys_regs file (Auger Eric) [1882794]
+- [arm64] kvm: arm64: timers: Rename kvm_timer_sync_hwstate to kvm_timer_sync_user (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Move SPSR_EL1 to the system register array (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Disintegrate SPSR array (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Move SP_EL1 to the system register array (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Move ELR_EL1 to the system register array (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Make struct kvm_regs userspace-only (Auger Eric) [1882794]
+- [arm64] kvm: arm64: debug: Drop useless vpcu parameter (Auger Eric) [1882794]
+- [arm64] kvm: arm64: pauth: Use ctxt_sys_reg() instead of raw sys_regs access (Auger Eric) [1882794]
+- [arm64] kvm: arm64: sve: Use __vcpu_sys_reg() instead of raw sys_regs access (Auger Eric) [1882794]
+- [arm64] kvm: arm64: hyp: Use ctxt_sys_reg/__vcpu_sys_reg instead of raw sys_regs access (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Introduce accessor for ctxt->sys_reg (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Rename HSR to ESR (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Drop long gone function parameter documentation (Auger Eric) [1882794]
+- [arm64] kvm: arm64: vgic-its: Change default outer cacheability for {PEND, PROP}BASER (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Lift instrumentation restrictions on VHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Remove __hyp_text macro, use build rules instead (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Compile remaining hyp/ files for both VHE/nVHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Duplicate hyp/timer-sr.c for VHE/nVHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Split hyp/sysreg-sr.c to VHE/nVHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Split hyp/debug-sr.c to VHE/nVHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Split hyp/switch.c to VHE/nVHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Duplicate hyp/tlb.c for VHE/nVHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Move hyp-init.S to nVHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Build hyp-entry.S separately for VHE/nVHE (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Handle calls to prefixed hyp functions (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Use build-time defines in has_vhe() (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Add build rules for separate VHE/nVHE object files (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Move __smccc_workaround_1_smc to .rodata (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Fix symbol dependency in __hyp_call_panic_nvhe (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Remove the target table (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Remove target_table from exit handlers (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Move ACTLR_EL1 emulation to the sys_reg_descs array (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Tolerate an empty target_table list (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Drop the target_table[] indirection (Auger Eric) [1882794]
+- [arm64] kvm: Remove kern_hyp_va from get_vcpu_ptr (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Allow in-atomic injection of SPIs (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Add emulation for 32bit guests accessing ACTLR2 (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Use cpus_have_final_cap for has_vhe() (Auger Eric) [1882794]
+- [arm64] efi: Move variable assignments after SECTIONS (Auger Eric) [1882794]
+- [arm64] efi: Mark __efistub_stext_offset as an absolute symbol explicitly (Auger Eric) [1882794]
+- [arm64] drop linker script hack to hide __efistub_ symbols (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Synchronize sysreg state on injecting an AArch32 exception (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Make vcpu_cp1x() work on Big Endian hosts (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Stop sparse from moaning at __hyp_this_cpu_ptr (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Check advertised Stage-2 page size capability (Auger Eric) [1882794]
+- [arm64] cpufeature: Don't treat granule sizes as strict (Auger Eric) [1882794]
+- [arm64] cpufeature: Validate hypervisor capabilities during CPU hotplug (Auger Eric) [1882794]
+- [arm64] kvm: hyp: use cpus_have_final_cap() (Auger Eric) [1882794]
+- [arm64] cpufeature: add cpus_have_final_cap() (Auger Eric) [1882794]
+- [arm64] mark (__)cpus_have_const_cap as __always_inline (Auger Eric) [1882794]
+- [arm64] Mark call_smc_arch_workaround_1 as __maybe_unused (Auger Eric) [1882794]
+- [arm64] Make use of ARCH_WORKAROUND_1 even when KVM is not enabled (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Delete duplicated label in invalid_vector (Auger Eric) [1882794]
+- [arm64] use mov_q instead of literal ldr (Auger Eric) [1882794]
+- [arm64] kvm: Modernize __smccc_workaround_1_smc_start annotations (Auger Eric) [1882794]
+- [arm64] kvm: Modernize annotation for __bp_harden_hyp_vecs (Auger Eric) [1882794]
+- [arm64] kvm: Annotate assembly using modern annoations (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Prevent vcpu_has_ptrauth from generating OOL functions (Auger Eric) [1882794]
+- [arm64] kvm: disable access to AMU registers from kvm guests (Auger Eric) [1882794]
+- [arm64] kvm: arm64: pvtime: Ensure task delay accounting is enabled (Auger Eric) [1882794]
+- [arm64] kvm: arm64: Stop writing aarch32's CSSELR into ACTLR (Auger Eric) [1882794]
+- [arm64] kvm: Annotate guest entry/exit as a single function (Auger Eric) [1882794]
+- [kernel] linkage: Introduce new macros for assembler symbols (Auger Eric) [1882794]
+- [s390] kvm: s390: remove diag318 reset code (Thomas Huth) [1899497]
+- [powerpc] powerpc/hv-gpci: Add sysfs files inside hv-gpci device to show cpumask (Michael Petlan) [1844416]
+- [powerpc] powerpc/perf/hv-gpci: Add cpu hotplug support (Michael Petlan) [1844416]
+- [documentation] Documentation/ABI: Add ABI documentation for hv-gpci format (Michael Petlan) [1844416]
+- [documentation] Documentation/ABI: Add ABI documentation for hv-24x7 format (Michael Petlan) [1844416]
+- [powerpc] powerpc/perf/hv-gpci: Fix starting index value (Michael Petlan) [1844416]
+- [powerpc] powerpc/perf/hv-24x7: Move cpumask file to top folder of hv-24x7 driver (Michael Petlan) [1844416]
+- [powerpc] powerpc/hv-24x7: Add sysfs files inside hv-24x7 device to show cpumask (Michael Petlan) [1844416]
+- [powerpc] powerpc/perf/hv-24x7: Add cpu hotplug support (Michael Petlan) [1844416]
+- [powerpc] powerpc/perf: Fix reading of MSRbits in trace-imc (Michael Petlan) [1854536]
+- [powerpc] powerpc/perf: Add kernel support for new MSRbits in trace-imc (Michael Petlan) [1854536]
+- [documentation] kdump: update kdump documentation due to change of crash URL (Lianbo Jiang) [1896236]
+- [pinctrl] pinctrl: intel: Add Intel Emmitsburg pin controller support (David Arcari) [1837409]
+- [x86] x86/platform/uv: Fix copied UV5 output archtype (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Drop last traces of uv_flush_tlb_others (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Recognize UV5 hubless system identifier (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove spaces from OEM IDs (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Fix missing OEM_TABLE_ID (Frank Ramsay) [1861439]
+- [misc] x86/platform/uv: Update Copyrights to conform to HPE standards (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Update for UV5 NMI MMR changes (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Update UV5 TSC checking (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Update node present counting (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Update UV5 MMR references in UV GRU (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Adjust GAM MMR references affected by UV5 updates (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Update MMIOH references based on new UV5 MMRs (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Add and decode Arch Type in UVsystab (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Add UV5 direct references (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Update UV MMRs for UV5 (Frank Ramsay) [1861439]
+- [misc] drivers/misc/sgi-xp: Adjust references in UV kernel modules (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove SCIR MMR references for UV systems (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove UV BAU TLB Shootdown Handler (Frank Ramsay) [1861439]
+- [x86] x86/kernel: Fix more -Wmissing-prototypes warnings (Frank Ramsay) [1861439]
+- [x86] x86/apic/uv: Avoid unused variable warning (Frank Ramsay) [1861439]
+- [misc] misc: sgi-xp: xp_main: Staticify local functions xp_init() and xp_exit() (Frank Ramsay) [1861439]
+- [misc] misc/sgi-xp: remove SGI SN2 support (Frank Ramsay) [1861439]
+- [x86] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156 (Frank Ramsay) [1861439]
+- [x86] efi/x86: Remove unreachable code in kexec_enter_virtual_mode() (Frank Ramsay) [1861439]
+- [x86] x86/efi: Remove unused EFI_UV1_MEMMAP code (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove uv bios and efi code related to EFI_UV1_MEMMAP (Frank Ramsay) [1861439]
+- [x86] x86/efi: Remove references to no-longer-used efi_have_uv1_memmap() (Frank Ramsay) [1861439]
+- [x86] x86/efi: Delete SGI UV1 detection (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove efi=old_map command line option (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove vestigial mention of UV1 platform from bios header (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove support for UV1 platform from uv (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove support for uv1 platform from uv_hub (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove support for UV1 platform from uv_bau (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove support for UV1 platform from uv_mmrs (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove support for UV1 platform from x2apic_uv_x (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove support for UV1 platform from uv_tlb (Frank Ramsay) [1861439]
+- [x86] x86/platform/uv: Remove support for UV1 platform from uv_time (Frank Ramsay) [1861439]
+- [x86] x86/apic/uv: Make x2apic_extra_bits static (Frank Ramsay) [1861439]
+- [s390] uv: add destroy page call (Thomas Huth) [1882800]
+- [s390] gmap: improve THP splitting (Thomas Huth) [1882800]
+- [s390] kvm: s390: clean up redundant 'kvm_run' parameters (Thomas Huth) [1882800]
+- [documentation] documentation: virt: kvm/s390-pv: drop doubled words (Thomas Huth) [1882800]
+- [s390] kvm: s390: reduce number of IO pins to 1 (Thomas Huth) [1882800]
+- [s390] protvirt: use scnprintf() instead of snprintf() (Thomas Huth) [1882800]
+- [s390] kvm: s390: remove unneeded semicolon in gisa_vcpu_kicker() (Thomas Huth) [1882800]
+- [s390] kvm: s390: vsie: gmap_table_walk() simplifications (Thomas Huth) [1882800]
+- [s390] kvm: s390: vsie: Move conditional reschedule (Thomas Huth) [1882800]
+- [s390] kvm: s390: vsie: Fix possible race when shadowing region 3 tables (Thomas Huth) [1882800]
+- [s390] kvm: s390: vsie: Fix region 1 ASCE sanity shadow address checks (Thomas Huth) [1882800]
+- [s390] kvm: s390: Use fallthrough; (Thomas Huth) [1882800]
+- [s390] mm: use refcount_t for refcount (Thomas Huth) [1882800]
+- [s390] mm: make gmap_test_and_clear_dirty_pmd static (Thomas Huth) [1882800]
+- [s390] mm: optimize locking without huge pages in gmap_pmd_op_walk() (Thomas Huth) [1882800]
+- [net] openvswitch: introduce common code for flushing flows (Eelco Chaudron) [1888576]
+- [net] openvswitch: silence suspicious RCU usage warning (Eelco Chaudron) [1888576]
+- [net] openvswitch: make masks cache size configurable (Eelco Chaudron) [1888576]
+- [net] openvswitch: add masks cache hit counter (Eelco Chaudron) [1888576]
+- [net] openvswitch: Prevent kernel-infoleak in ovs_ct_put_key() (Eelco Chaudron) [1888576]
+- [net] openvswitch: kerneldoc fixes (Eelco Chaudron) [1888576]
+- [net] openvswitch: use div_u64() for 64-by-32 divisions (Eelco Chaudron) [1888576]
+- [net] openvswitch: suitable access to the dp_meters (Eelco Chaudron) [1888576]
+- [net] openvswitch: use u64 for meter bucket (Eelco Chaudron) [1888576]
+- [net] openvswitch: make EINVAL return value more obvious (Eelco Chaudron) [1888576]
+- [net] openvswitch: remove the unnecessary check (Eelco Chaudron) [1888576]
+- [net] openvswitch: set max limitation to meters (Eelco Chaudron) [1888576]
+- [net] openvswitch: expand the meters supported number (Eelco Chaudron) [1888576]
+- [net] openvswitch: use hlist_for_each_entry_rcu instead of hlist_for_each_entry (Eelco Chaudron) [1888576]
+- [net] ovs: datapath: hide clang frame-overflow warnings (Eelco Chaudron) [1888576]
+- [net] openvswitch: use netif_ovs_is_port() instead of opencode (Eelco Chaudron) [1888576]
+- [platform] platform/x86: intel_pmc_core: avoid unused-function warnings (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: fix bound check in pmc_core_mphy_pg_show() (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: update TGL's LPM0 reg bit map name (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Make pmc_core_substate_res_show() generic (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Make pmc_core_lpm_display() generic for platforms that support sub-states (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Add slp_s0_offset attribute back to tgl_reg_map (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Remove duplicate 'if' to create debugfs entry (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Relocate pmc_core_*_display() to outside of CONFIG_DEBUG_FS (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Add debugfs support to access live status registers (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Dump low power status registers on an S0ix.y failure (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Add an additional parameter to pmc_core_lpm_display() (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Remove slp_s0 attributes from tgl_reg_map (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Refactor the driver by removing redundant code (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Add debugfs entry for low power mode status registers (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Add debugfs entry to access sub-state residencies (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Fix spelling of MHz unit (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Fix indentation in function definitions (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Put more stuff under #ifdef DEBUG_FS (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Respect error code of kstrtou32_from_user() (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Make debugfs entry for pch_ip_power_gating_status conditional (David Arcari) [1783140]
+- [platform] platform/x86: intel_pmc_core: Remove unnecessary assignments (David Arcari) [1783140]
+
+* Wed Dec 02 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-258.el8]
+- [net] mptcp: provide rmem[0] limit (Davide Caratti) [1874368]
+- [net] mptcp: add missing memory scheduling in the rx path (Davide Caratti) [1874368]
+- [net] mptcp: depends on IPV6 but not as a module (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: depends on built-in IPv6 (Davide Caratti) [1874368]
+- [net] mptcp: MPTCP_IPV6 should depend on IPV6 instead of selecting it (Davide Caratti) [1874368]
+- [net] mptcp: subflows garbage collection (Davide Caratti) [1874368]
+- [net] mptcp: fix fallback for MP_JOIN subflows (Davide Caratti) [1874368]
+- [net] mptcp: make DACK4/DACK8 usage consistent among all subflows (Davide Caratti) [1874368]
+- [net] mptcp: fix infinite loop on recvmsg()/worker() race. (Davide Caratti) [1874368]
+- [net] mptcp: don't skip needed ack (Davide Caratti) [1874368]
+- [net] mptcp: more DATA FIN fixes (Davide Caratti) [1874368]
+- [net] mptcp: Constify mptcp_pm_ops (Davide Caratti) [1874368]
+- [net] mptcp: ADD_ADDRs with echo bit are smaller (Davide Caratti) [1874368]
+- [net] mptcp: Handle incoming 32-bit DATA_FIN values (Davide Caratti) [1874368]
+- [net] mptcp: Consistently use READ_ONCE/WRITE_ONCE with msk->ack_seq (Davide Caratti) [1874368]
+- [net] tcp: drop unused function argument from mptcp_incoming_options (Davide Caratti) [1874368]
+- [net] mptcp: retransmit ADD_ADDR when timeout (Davide Caratti) [1874368]
+- [net] mptcp: add sk_stop_timer_sync helper (Davide Caratti) [1874368]
+- [net] mptcp: add struct mptcp_pm_add_entry (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: add remove addr and subflow test cases (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: add remove cfg in mptcp_connect (Davide Caratti) [1874368]
+- [net] mptcp: add mptcp_destroy_common helper (Davide Caratti) [1874368]
+- [net] mptcp: add RM_ADDR related mibs (Davide Caratti) [1874368]
+- [net] mptcp: implement mptcp_pm_remove_subflow (Davide Caratti) [1874368]
+- [net] mptcp: remove addr and subflow in PM netlink (Davide Caratti) [1874368]
+- [net] mptcp: add accept_subflow re-check (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: add ADD_ADDR mibs check function (Davide Caratti) [1874368]
+- [net] tcp: change pingpong threshold to 3 (Davide Caratti) [1874368]
+- [net] tcp: Refactor pingpong code (Davide Caratti) [1874368]
+- [net] mptcp: add ADD_ADDR related mibs (Davide Caratti) [1874368]
+- [net] mptcp: send out ADD_ADDR with echo flag (Davide Caratti) [1874368]
+- [net] mptcp: add the incoming RM_ADDR support (Davide Caratti) [1874368]
+- [net] mptcp: add the outgoing RM_ADDR support (Davide Caratti) [1874368]
+- [net] mptcp: rename addr_signal and the related functions (Davide Caratti) [1874368]
+- [net] mptcp: Wake up MPTCP worker when DATA_FIN found on a TCP FIN packet (Davide Caratti) [1874368]
+- [net] mptcp: fix integer overflow in mptcp_subflow_discard_data() (Davide Caratti) [1874368]
+- [net] mptcp: Fix unsigned 'max_seq' compared with zero in mptcp_data_queue_ofo (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: interpret \n as a new line (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: interpret \n as a new line (Davide Caratti) [1874368]
+- [tools] mptcp: simult flow self-tests (Davide Caratti) [1874368]
+- [net] mptcp: call tcp_cleanup_rbuf on subflows (Davide Caratti) [1874368]
+- [net] mptcp: allow picking different xmit subflows (Davide Caratti) [1874368]
+- [net] mptcp: allow creating non-backup subflows (Davide Caratti) [1874368]
+- [net] mptcp: move address attribute into mptcp_addr_info (Davide Caratti) [1874368]
+- [net] mptcp: add OoO related mibs (Davide Caratti) [1874368]
+- [net] mptcp: cleanup mptcp_subflow_discard_data() (Davide Caratti) [1874368]
+- [net] mptcp: move ooo skbs into msk out of order queue. (Davide Caratti) [1874368]
+- [net] mptcp: introduce and use mptcp_try_coalesce() (Davide Caratti) [1874368]
+- [net] mptcp: basic sndbuf autotuning (Davide Caratti) [1874368]
+- [net] mptcp: trigger msk processing even for OoO data (Davide Caratti) [1874368]
+- [net] mptcp: set data_ready status bit in subflow_check_data_avail() (Davide Caratti) [1874368]
+- [net] mptcp: rethink 'is writable' conditional (Davide Caratti) [1874368]
+- [net] tcp: reduce POLLOUT events caused by TCP_NOTSENT_LOWAT (Davide Caratti) [1874368]
+- [net] mptcp: fix kmalloc flag in mptcp_pm_nl_get_local_id (Davide Caratti) [1874368]
+- [net] mptcp: fix subflow's remote_id issues (Davide Caratti) [1874368]
+- [net] mptcp: fix subflow's local_id issues (Davide Caratti) [1874368]
+- [net] mptcp: Remove unused macro MPTCP_SAME_STATE (Davide Caratti) [1874368]
+- [net] treewide: Use fallthrough pseudo-keyword (Davide Caratti) [1874368]
+- [net] netlink: consistently use NLA_POLICY_EXACT_LEN() (Davide Caratti) [1874368]
+- [net] mptcp: free acked data before waiting for more memory (Davide Caratti) [1874368]
+- [net] mptcp: sendmsg: reset iter on error redux (Davide Caratti) [1874368]
+- [net] mptcp: sendmsg: reset iter on error (Davide Caratti) [1874368]
+- [net] mptcp: fix warn at shutdown time for unaccepted msk sockets (Davide Caratti) [1874368]
+- [net] mptcp: use mptcp_for_each_subflow in mptcp_stream_accept (Davide Caratti) [1874368]
+- [net] mptcp: fix syncookie build error on UP (Davide Caratti) [1874368]
+- [net] tcp: fix syn cookied MPTCP request socket leak (Davide Caratti) [1874368]
+- [net] tcp: fix build fong CONFIG_MPTCP=n (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: add test cases for mptcp join tests with syn cookies (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: make 2nd net namespace use tcp syn cookies unconditionally (Davide Caratti) [1874368]
+- [net] mptcp: enable JOIN requests even if cookies are in use (Davide Caratti) [1874368]
+- [net] tcp: free request sock directly upon TFO or syncookies error (Davide Caratti) [1874368]
+- [include] net: keep refcount warning in reqsk_free() (Davide Caratti) [1874368]
+- [net] tcp: syncookies: create mptcp request socket for ACK cookies with MPTCP option (Davide Caratti) [1874368]
+- [net] mptcp: subflow: add mptcp_subflow_init_cookie_req helper (Davide Caratti) [1874368]
+- [net] mptcp: rename and export mptcp_subflow_request_sock_ops (Davide Caratti) [1874368]
+- [net] mptcp: subflow: split subflow_init_req (Davide Caratti) [1874368]
+- [net] mptcp: token: move retry to caller (Davide Caratti) [1874368]
+- [net] tcp: rename request_sock cookie_ts bit to syncookie (Davide Caratti) [1874368]
+- [net] mptcp: Safely store sequence number when sending data (Davide Caratti) [1874368]
+- [net] mptcp: Safely read sequence number when lock isn't held (Davide Caratti) [1874368]
+- [net] mptcp: Skip unnecessary skb extension allocation for bare acks (Davide Caratti) [1874368]
+- [net] mptcp: Only use subflow EOF signaling on fallback connections (Davide Caratti) [1874368]
+- [net] mptcp: Use full MPTCP-level disconnect state machine (Davide Caratti) [1874368]
+- [net] mptcp: Add helper to process acks of DATA_FIN (Davide Caratti) [1874368]
+- [net] mptcp: Add mptcp_close_state() helper (Davide Caratti) [1874368]
+- [net] mptcp: Track received DATA_FIN sequence number and add related helpers (Davide Caratti) [1874368]
+- [net] mptcp: Use MPTCP-level flag for sending DATA_FIN (Davide Caratti) [1874368]
+- [net] mptcp: Remove outdated and incorrect comment (Davide Caratti) [1874368]
+- [net] mptcp: Return EPIPE if sending is shut down during a sendmsg (Davide Caratti) [1874368]
+- [net] mptcp: Allow DATA_FIN in headers without TCP FIN (Davide Caratti) [1874368]
+- [net] subflow: introduce and use mptcp_can_accept_new_subflow() (Davide Caratti) [1874368]
+- [net] subflow: use rsk_ops->send_reset() (Davide Caratti) [1874368]
+- [net] mptcp: cleanup subflow_finish_connect() (Davide Caratti) [1874368]
+- [net] mptcp: explicitly track the fully established status (Davide Caratti) [1874368]
+- [net] mptcp: mark as fallback even early ones (Davide Caratti) [1874368]
+- [net] mptcp: avoid data corruption on reinsert (Davide Caratti) [1874368]
+- [net] subflow: always init 'rel_write_seq' (Davide Caratti) [1874368]
+- [net] mptcp: zero token hash at creation time. (Davide Caratti) [1874368]
+- [net] mptcp: move helper to where its used (Davide Caratti) [1874368]
+- [tools] selftests/mptcp: Better delay & reordering configuration (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: fix typo in mptcp_connect usage (Davide Caratti) [1874368]
+- [tools] mptcp: more stable diag self-tests (Davide Caratti) [1874368]
+- [tools] selftests: mptcp: fix dependecies (Davide Caratti) [1874368]
+- [net] inet_diag: validate INET_DIAG_REQ_PROTOCOL attribute (Davide Caratti) [1874368]
+- [tools] selftests/mptcp: add diag interface tests (Davide Caratti) [1874368]
+- [net] mptcp: add MPTCP socket diag interface (Davide Caratti) [1874368]
+- [net] mptcp: add msk interations helper (Davide Caratti) [1874368]
+- [net] inet_diag: support for wider protocol numbers (Davide Caratti) [1874368]
+- [net] mptcp: use mptcp worker for path management (Davide Caratti) [1874368]
+- [include] mptcp: Remove unused inline function mptcp_rcv_synsent() (Davide Caratti) [1874368]
+- [net] mptcp: support IPV6_V6ONLY setsockopt (Davide Caratti) [1874368]
+- [net] mptcp: add REUSEADDR/REUSEPORT support (Davide Caratti) [1874368]
+- [net] use mptcp setsockopt function for SOL_SOCKET on mptcp sockets (Davide Caratti) [1874368]
+- [net] mptcp: do nonce initialization at subflow creation time (Davide Caratti) [1874368]
+- [net] mptcp: close poll() races (Davide Caratti) [1874368]
+- [net] mptcp: __mptcp_tcp_fallback() returns a struct sock (Davide Caratti) [1874368]
+- [net] mptcp: create first subflow at msk creation time (Davide Caratti) [1874368]
+- [net] mptcp: check for plain TCP sock at accept time (Davide Caratti) [1874368]
+- [net] mptcp: move mptcp_options_received's port initialization (Davide Caratti) [1874368]
+- [net] mptcp: initialize mptcp_options_received's ahmac (Davide Caratti) [1874368]
+- [net] mptcp: MPTCP_KUNIT_TESTS should depend on MPTCP instead of selecting it (Davide Caratti) [1874368]
+- [net] mptcp: introduce token KUNIT self-tests (Davide Caratti) [1874368]
+- [net] mptcp: move crypto test to KUNIT (Davide Caratti) [1874368]
+- [net] mptcp: refactor token container (Davide Caratti) [1874368]
+- [net] mptcp: add __init annotation on setup functions (Davide Caratti) [1874368]
+- [net] tcp: move ipv4_specific to tcp include file (Davide Caratti) [1874368]
+- [net] tcp: move ipv6_specific declaration to remove a warning (Davide Caratti) [1874368]
+- [net] mptcp: use list_first_entry_or_null (Davide Caratti) [1874368]
+- [net] mptcp: attempt coalescing when moving skbs to mptcp rx queue (Davide Caratti) [1874368]
+- [net] allow __skb_ext_alloc to sleep (Davide Caratti) [1874368]
+- [net] mptcp: remove inner wait loop from mptcp_sendmsg_frag (Davide Caratti) [1874368]
+- [net] mptcp: fill skb page frag cache outside of mptcp_sendmsg_frag (Davide Caratti) [1874368]
+- [net] mptcp: fill skb extension cache outside of mptcp_sendmsg_frag (Davide Caratti) [1874368]
+- [net] mptcp: move common nospace-pattern to a helper (Davide Caratti) [1874368]
+- [net] mptcp: Use 32-bit DATA_ACK when possible (Davide Caratti) [1874368]
+- [s390] s390/qeth: implement ndo_bridge_setlink for learning_sync (Philipp Rudo) [1651745]
+- [s390] s390/qeth: implement ndo_bridge_getlink for learning_sync (Philipp Rudo) [1651745]
+- [s390] s390/qeth: Reset address notification in case of buffer overflow (Philipp Rudo) [1651745]
+- [net] bridge: Add SWITCHDEV_FDB_FLUSH_TO_BRIDGE notifier (Philipp Rudo) [1651745]
+- [s390] s390/qeth: Translate address events into switchdev notifiers (Philipp Rudo) [1651745]
+- [s390] s390/qeth: Detect PNSO OC3 capability (Philipp Rudo) [1651745]
+- [s390] s390/cio: Helper functions to read CSSID, IID, and CHID (Philipp Rudo) [1651745]
+- [s390] s390/cio: Add new Operation Code OC3 to PNSO (Philipp Rudo) [1651745]
+- [cpuidle] cpuidle: Drop misleading comments about RCU usage (David Arcari) [1888014]
+- [cpuidle] cpuidle: Allow cpuidle drivers to take over RCU-idle (David Arcari) [1888014]
+- [include] cpuidle: Make CPUIDLE_FLAG_TLB_FLUSHED generic (David Arcari) [1888014]
+- [cpuidle] sched, idle, rcu: Push rcu_idle deeper into the idle path (David Arcari) [1888014]
+- [cpuidle] cpuidle: Fixup IRQ state (David Arcari) [1888014]
+- [kernel] cpuidle: Add RH_KABI warnings (David Arcari) [1878232]
+- [acpi] cpuidle: ACPI: fix 'return' with no value build warning (David Arcari) [1878232]
+- [acpi] cpuidle: change enter_s2idle() prototype (David Arcari) [1878232]
+- [cpuidle] cpuidle/pseries: Make symbol 'pseries_idle_driver' static (David Arcari) [1878232]
+- [cpuidle] cpuidle/powernv : Remove dead code block (David Arcari) [1878232]
+- [cpuidle] cpuidle: Rearrange s2idle-specific idle state entry code (David Arcari) [1878232]
+- [cpuidle] PM: s2idle: Clear _TIF_POLLING_NRFLAG before suspend to idle (David Arcari) [1878232]
+- [cpuidle] cpuidle: Fix three reference count leaks (David Arcari) [1878232]
+- [cpuidle] cpuidle: sysfs: Remove sysfs_switch and switch attributes (David Arcari) [1878232]
+- [cpuidle] cpuidle: Make cpuidle governor switchable to be the default behaviour (David Arcari) [1878232]
+- [cpuidle] cpuidle: sysfs: Accept governor name with 15 characters (David Arcari) [1878232]
+- [cpuidle] cpuidle: sysfs: Fix the overlap for showing available governors (David Arcari) [1878232]
+- [cpuidle] cpuidle: sysfs: Minor coding style corrections (David Arcari) [1878232]
+- [cpuidle] cpuidle: sysfs: Remove the unused define_one_r(o/w) macros (David Arcari) [1878232]
+- [cpuidle] cpuidle-haltpoll: Fix small typo (David Arcari) [1878232]
+- [idle] intel_idle: Customize IceLake server support (David Arcari) [1881620 1857129]
+- [idle] intel_idle: Eliminate redundant static variable (David Arcari) [1857129]
+- [idle] intel_idle: Update copyright notice, known limitations and version (David Arcari) [1857129]
+- [idle] intel_idle: Define CPUIDLE_FLAG_TLB_FLUSHED as BIT(16) (David Arcari) [1857129]
+- [idle] intel_idle: Clean up kerneldoc comments for multiple functions (David Arcari) [1857129]
+- [idle] intel_idle: Reorder declarations of static variables (David Arcari) [1857129]
+- [idle] intel_idle: Annotate init time data structures (David Arcari) [1857129]
+- [idle] intel_idle: Add __initdata annotations to init time variables (David Arcari) [1857129]
+- [idle] intel_idle: Relocate definitions of cpuidle callbacks (David Arcari) [1857129]
+- [idle] intel_idle: Clean up definitions of cpuidle callbacks (David Arcari) [1857129]
+- [idle] intel_idle: Simplify LAPIC timer reliability checks (David Arcari) [1857129]
+- [idle] intel_idle: Introduce 'states_off' module parameter (David Arcari) [1857129]
+- [idle] intel_idle: Clean up irtl_2_usec() (David Arcari) [1857129]
+- [idle] intel_idle: Move 3 functions closer to their callers (David Arcari) [1857129]
+- [idle] intel_idle: Annotate initialization code and data structures (David Arcari) [1857129]
+- [idle] intel_idle: Move and clean up intel_idle_cpuidle_devices_uninit() (David Arcari) [1857129]
+- [idle] intel_idle: Rearrange intel_idle_cpuidle_driver_init() (David Arcari) [1857129]
+- [idle] intel_idle: Clean up NULL pointer check in intel_idle_init() (David Arcari) [1857129]
+- [idle] intel_idle: Fold intel_idle_probe() into intel_idle_init() (David Arcari) [1857129]
+- [idle] intel_idle: Eliminate __setup_broadcast_timer() (David Arcari) [1857129]
+- [idle] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 335 (David Arcari) [1857129]
+
+* Wed Dec 02 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-257.el8]
+- [hv] hv: vmbus: Allow cleanup of VMBUS_CONNECT_CPU if disconnected (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Add parsing of VMbus interrupt in ACPI DSDT (Mohammed Gamal) [1886096]
+- [hv] driver: hv: util: Use VMBUS_RING_SIZE() for ringbuffer sizes (Mohammed Gamal) [1886096]
+- [kernel] hv: vmbus: Move virt_to_hvpfn() to hyperv header (Mohammed Gamal) [1886096]
+- [hv] hv: Use HV_HYP_PAGE in hv_synic_enable_regs() (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Introduce types of GPADL (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Move __vmbus_open() (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Always use HV_HYP_PAGE_SIZE for gpadl (Mohammed Gamal) [1886096]
+- [hv] hv: remove cast from hyperv_die_event (Mohammed Gamal) [1886096]
+- [hv] hv: Change flag to write log level in panic msg to false (Mohammed Gamal) [1886096]
+- [kernel] hv: vmbus: Remove the lock field from the vmbus_channel struct (Mohammed Gamal) [1886096]
+- [scsi] storvsc: Introduce the per-storvsc_device spinlock (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Remove unnecessary channel->lock critical sections (sc_list updaters) (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Use channel_mutex in channel_vp_mapping_show() (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Remove unnecessary channel->lock critical sections (sc_list readers) (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Replace cpumask_test_cpu(, cpu_online_mask) with cpu_online() (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Remove the numa_node field from the vmbus_channel struct (Mohammed Gamal) [1886096]
+- [kernel] hv: vmbus: Remove the target_vp field from the vmbus_channel struct (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Resolve more races involving init_vp_index() (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Resolve race between init_vp_index() and CPU hotplug (Mohammed Gamal) [1886096]
+- [hv] driver: hv: vmbus: drop a no long applicable comment (Mohammed Gamal) [1886096]
+- [hv] hyper-v: Replace open-coded variant of *phN specifier (Mohammed Gamal) [1886096]
+- [hv] hyper-v: Supply GUID pointer to printf() like functions (Mohammed Gamal) [1886096]
+- [hv] hyper-v: Use UUID API for exporting the GUID (part 2) (Mohammed Gamal) [1886096]
+- [hv] hv: remove redundant assignment to pointer primary_channel (Mohammed Gamal) [1886096]
+- [scsi] storvsc: Re-init stor_chns when a channel interrupt is re-assigned (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Introduce the CHANNELMSG_MODIFYCHANNEL message type (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Synchronize init_vp_index() vs. CPU hotplug (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Remove the unused HV_LOCALIZED channel affinity logic (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Use a spin lock for synchronizing channel scheduling vs. channel removal (Mohammed Gamal) [1886096]
+- [hv] hv_utils: Always execute the fcopy and vss callbacks in a tasklet (Mohammed Gamal) [1886096]
+- [netdrv] hv_netvsc: Disable NAPI before closing the VMBus channel (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Replace the per-CPU channel lists with a global array of channels (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Don't bind the offer&rescind works to a specific CPU (Mohammed Gamal) [1886096]
+- [hv] hv: vmbus: Always handle the VMBus messages on CPU0 (Mohammed Gamal) [1886096]
+- [hv] hv: check VMBus messages lengths (Mohammed Gamal) [1886096]
+- [hv] hv: make sure that 'struct vmbus_channel_message_header' compiles correctly (Mohammed Gamal) [1886096]
+- [hv] hv: avoid passing opaque pointer to vmbus_onmessage() (Mohammed Gamal) [1886096]
+- [hv] hv: allocate the exact needed memory for messages (Mohammed Gamal) [1886096]
+- [hv] hv: copy from message page only what's needed (Mohammed Gamal) [1886096]
+- [x86] hyperv: Clarify comment on x2apic mode (Mohammed Gamal) [1886099]
+- [x86] hyperv: report value of misc_features (Mohammed Gamal) [1886099]
+- [x86] hyperv: Make hv_setup_sched_clock inline (Mohammed Gamal) [1886099]
+- [net] ipv6: reply ICMP error if the first fragment don't include all headers (Hangbin Liu) [1874734]
+- [net] icmpv6: Add ICMPv6 Parameter Problem, code 3 definition (Hangbin Liu) [1874734]
+- [powerpc] powerpc/process: Add missing include of stacktrace.h (Desnes Augusto Nunes do Rosario) [1883975]
+- [powerpc] powerpc/test_emulate_sstep: Fix build error (Desnes Augusto Nunes do Rosario) [1883975]
+- [nvdimm] powerpc/pmem: Initialize pmem device on newer hardware (Desnes Augusto Nunes do Rosario) [1878632]
+- [powerpc] powerpc/pmem: Avoid the barrier in flush routines (Desnes Augusto Nunes do Rosario) [1878632]
+- [powerpc] powerpc/pmem: Update ppc64 to use the new barrier instruction (Desnes Augusto Nunes do Rosario) [1878632]
+- [md] libnvdimm/nvdimm/flush: Allow architecture to override the flush barrier (Desnes Augusto Nunes do Rosario) [1878632]
+- [powerpc] powerpc/pmem: Add flush routines using new pmem store and sync instruction (Desnes Augusto Nunes do Rosario) [1878632]
+- [powerpc] powerpc/pmem: Add new instructions for persistent storage and sync (Desnes Augusto Nunes do Rosario) [1878632]
+- [powerpc] powerpc/pmem: Restrict papr_scm to P8 and above (Desnes Augusto Nunes do Rosario) [1878632]
+- [i2c] i2c: ismt: Add support for Intel Emmitsburg PCH (David Arcari) [1886162]
+- [include] timer: add fsleep for flexible sleeping (Josef Oskera) [1892674]
+- [scsi] qla2xxx: Update driver version to 10.02.00.103-k (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Return EBUSY on fcport deletion (Nilesh Javali) [1887427]
+- [trace] scsi: qla2xxx: Suppress two recently introduced compiler warnings (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix return of uninitialized value in rval (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Convert to DEFINE_SHOW_ATTRIBUTE (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Initialize variable in qla8044_poll_reg() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Do not consume srb greedily (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Use constant when it is known (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix inconsistent format argument type in qla_dbg.c (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix inconsistent format argument type in qla_os.c (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix inconsistent format argument type in tcm_qla2xxx.c (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix point-to-point (N2N) device discovery issue (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix crash on session cleanup with unload (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix reset of MPI firmware (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix MPI reset needed message (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix buffer-buffer credit extraction error (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Correct the check for sscanf() return value (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add SLER and PI control support (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add IOCB resource tracking (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add rport fields in debugfs (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Make tgt_port_database available in initiator mode (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix I/O errors during LIP reset tests (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Performance tweak (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix memory size truncation (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Reduce duplicate code in reporting speed (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Honor status qualifier in FCP_RSP per spec (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Allow dev_loss_tmo setting for FC-NVMe devices (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Setup debugfs entries for remote ports (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix I/O failures during remote port toggle testing (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove unneeded variable 'rval' (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Handle incorrect entry_type entries (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Log calling function name in qla2x00_get_sp_from_handle() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Simplify return value logic in qla2x00_get_sp_from_handle() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Warn if done() or free() are called on an already freed srb (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix the return value (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix wrong return value in qla_nvme_register_hba() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix wrong return value in qlt_chk_unresolv_exchg() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove redundant variable initialization (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix the size used in a 'dma_free_coherent()' call (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove pci-dma-compat wrapper API (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove superfluous memset() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix regression on sparc64 (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Use MBX_TOV_SECONDS for mailbox command timeout values (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Address a set of sparse warnings (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: SAN congestion management implementation (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Change in PUREX to handle FPIN ELS requests (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Introduce a function for computing the debug message prefix (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Make qla2x00_restart_isp() easier to read (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix a Coverity complaint in qla2100_fw_dump() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Make __qla2x00_alloc_iocbs() initialize 32 bits of request_t.handle (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove a superfluous cast (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Initialize 'n' before using it (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Make qla82xx_flash_wait_write_finish() easier to read (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove the __packed annotation from struct fcp_hdr and fcp_hdr_le (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Check the size of struct fcp_hdr at compile time (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix a condition in qla2x00_find_all_fabric_devs() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Set NVMe status code for failed NVMe FCP request (Nilesh Javali) [1887427]
+- [scsi] scsi: Fix trivial spelling (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove return value from qla_nvme_ls() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove an unused function (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix endianness annotations in source files (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix endianness annotations in header files (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Use make_handle() instead of open-coding it (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Cast explicitly to uint16_t / uint32_t (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Change {RD, WRT}_REG_*() function names from upper case into lower case (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix the code that reads from mailbox registers (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Use register names instead of register offsets (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Change two hardcoded constants into offsetof() / sizeof() expressions (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Increase the size of struct qla_fcp_prio_cfg to FCP_PRIO_CFG_SIZE (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Make a gap in struct qla2xxx_offld_chain explicit (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add more BUILD_BUG_ON() statements (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Sort BUILD_BUG_ON() statements alphabetically (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Simplify the functions for dumping firmware (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix spelling of a variable name (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Do not log message when reading port speed via sysfs (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Make qlafx00_process_aen() return void (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Use true, false for ha->fw_dumped (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Use true, false for need_mpi_reset (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Make qla_set_ini_mode() return void (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix issue with adapter's stopping state (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix failure message in qlt_disable_vha() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix warning after FC target reset (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: check UNLOADING before posting async work (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: set UNLOADING before waiting for session deletion (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Use ARRAY_SIZE() instead of open-coding it (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Split qla2x00_configure_local_loop() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix regression warnings (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Remove non functional code (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: add ring buffer for tracing debug logs (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix RDP respond data format (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: fix FW resource count values (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Improved secure flash support messages (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Use FC generic update firmware options routine for ISP27xx (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Avoid setting firmware options twice in 24xx_update_fw_options (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Convert MAKE_HANDLE() from a define into an inline function (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix sparse warnings triggered by the PCI state checking code (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Suppress endianness complaints in qla2x00_configure_local_loop() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Simplify the code for aborting SCSI commands (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix sparse warning reported by kbuild bot (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Print portname for logging in qla24xx_logio_entry() (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix qla2x00_echo_test() based on ISP type (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Correction to selection of loopback/echo test (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix RDP response size (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Handle cases for limiting RDP response payload length (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add deferred queue for processing ABTS and RDP (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Cleanup ELS/PUREX iocb fields (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Show correct port speed capabilities for RDP command (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Display message for FCE enabled (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add vendor extended FDMI commands (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add ql2xrdpenable module parameter for RDP (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add vendor extended RDP additions and amendments (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Add changes in preparation for vendor extended FDMI/RDP (Nilesh Javali) [1887427]
+- [scsi] scsi: qla2xxx: Fix gnl.l memory leak on adapter init failure (Nilesh Javali) [1887427]
+
+* Mon Nov 30 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-256.el8]
+- [kernel] PM: hibernate: Batch hibernate and resume IO requests (Lenny Szubowicz) [1868096]
+- [net] tunnels: Fix off-by-one in lower MTU bounds for ICMP/ICMPv6 replies (Antoine Tenart) [1895765]
+- [block] block: mark flush request as IDLE when it is really finished (Ming Lei) [1895913]
+- [net] vsock: forward all packets to the host when no H2G is registered (Vitaly Kuznetsov) [1893826]
+- [maintainers] maintainers: Add entry for the Nitro Enclaves driver (Vitaly Kuznetsov) [1893826]
+- [documentation] nitro_enclaves: Add overview documentation (Vitaly Kuznetsov) [1893826]
+- [samples] nitro_enclaves: Add sample for ioctl interface usage (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Add Makefile for the Nitro Enclaves driver (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Add Kconfig for the Nitro Enclaves driver (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Add logic for terminating an enclave (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Add logic for starting an enclave (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Add logic for setting an enclave memory region (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Add logic for getting the enclave image load info (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Add logic for setting an enclave vCPU (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Add logic for creating an enclave VM (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Init misc device providing the ioctl interface (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Handle out-of-band PCI device events (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Handle PCI device command requests (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Init PCI device driver (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Define enclave info for internal bookkeeping (Vitaly Kuznetsov) [1893826]
+- [virt] nitro_enclaves: Define the PCI device interface (Vitaly Kuznetsov) [1893826]
+- [uapi] nitro_enclaves: Add ioctl interface definition (Vitaly Kuznetsov) [1893826]
+- [kernel] cpu/hotplug: Add new {add, remove}_cpu() functions (Vitaly Kuznetsov) [1893826]
+- [x86] x86/delay: Introduce TPAUSE delay (Prarit Bhargava) [1838636]
+- [x86] x86/delay: Refactor delay_mwaitx() for TPAUSE support (Prarit Bhargava) [1838636]
+- [x86] x86/delay: Preparatory code cleanup (Prarit Bhargava) [1838636]
+- [net] netfilter: ipset: Update byte and packet counters regardless of whether they match (Phil Sutter) [1806882]
+- [net] ethtool: add and use message type for tunnel info reply (Ivan Vecera) [1867211]
+- [infiniband] RDMA/hns: Mark hns_roce driver as unsupported (Kamal Heib) [1878211]
+- [net] tipc: fix memory leak caused by tipc_buf_append() (Xin Long) [1865774]
+- [net] tipc: fix the skb_unshare() in tipc_buf_append() (Xin Long) [1865774]
+- [net] tipc: use skb_unshare() instead in tipc_buf_append() (Xin Long) [1865774]
+- [netdrv] net: team: fix memory leak in __team_options_register (Hangbin Liu) [1892142]
+- [netdrv] team: set dev->needed_headroom in team_setup_by_port() (Hangbin Liu) [1892142]
+- [netdrv] team: use netif_is_team_port() (Hangbin Liu) [1892142]
+- [char] random: decouple random and urandom extrng fops (Vladis Dronov) [1890711]
+- [platform] platform/x86: intel_pmc_core: Add Intel RocketLake (RKL) support (Steve Best) [1782713]
+- [netdrv] fm10k: convert to new udp_tunnel_nic infra (Vladis Dronov) [1884254]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Vladis Dronov) [1884254]
+- [netdrv] docs: networking: reorganize driver documentation again (Vladis Dronov) [1884254]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Vladis Dronov) [1884254]
+- [infiniband] RDMA/core: Fix ordering of CQ pool destruction (Kamal Heib) [1878969 1857603]
+- [infiniband] IB/isert: Fix unaligned immediate-data handling (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Fix reported speed and width (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Fix unsafe linked list traversal after failing to allocate CQ (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Fix panic when calling kmem_cache_create() (Kamal Heib) [1867296 1857603]
+- [infiniband] RDMA/rxe: Fix memleak in rxe_mem_init_user (Kamal Heib) [1857603]
+- [net] xprtrdma: Release in-flight MRs on disconnect (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Fix the parent sysfs read when the interface has 15 chars (Kamal Heib) [1870430 1857603]
+- [infiniband] RDMA/hfi1: Correct an interlock issue for TID RDMA WRITE request (Kamal Heib) [1870281 1857603]
+- [infiniband] RDMA/core: Fix spelling mistake "Could't" -> "Couldn't" (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Remove pkey table (Kamal Heib) [1857603]
+- [infiniband] RDMA/umem: Add a schedule point in ib_umem_get() (Kamal Heib) [1857603]
+- [infiniband] RDMA/netlink: Remove CAP_NET_RAW check when dump a raw QP (Kamal Heib) [1857603]
+- [rdma] RDMA/include: Replace license text with SPDX tags (Kamal Heib) [1857603]
+- [infiniband] RDMA/cma: Execute rdma_cm destruction from a handler properly (Kamal Heib) [1857603]
+- [infiniband] RDMA/cma: Remove unneeded locking for req paths (Kamal Heib) [1857603]
+- [infiniband] RDMA/cma: Using the standard locking pattern when delivering the removal event (Kamal Heib) [1857603]
+- [infiniband] RDMA/cma: Simplify DEVICE_REMOVAL for internal_id (Kamal Heib) [1857603]
+- [infiniband] RDMA/efa: Add EFA 0xefa1 PCI ID (Kamal Heib) [1857603]
+- [infiniband] RDMA/efa: User/kernel compatibility handshake mechanism (Kamal Heib) [1857603]
+- [infiniband] RDMA/efa: Expose minimum SQ size (Kamal Heib) [1857603]
+- [infiniband] RDMA/efa: Expose maximum TX doorbell batch (Kamal Heib) [1857603]
+- [infiniband] IB/srpt: use new shared CQ mechanism (Kamal Heib) [1857603]
+- [infiniband] IB/isert: use new shared CQ mechanism (Kamal Heib) [1857603]
+- [infiniband] IB/iser: use new shared CQ mechanism (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Fix return error value in _ib_modify_qp() to negative (Kamal Heib) [1857603]
+- [infiniband] RDMA/uverbs: Silence shiftTooManyBitsSigned warning (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Update write interface to use automatic object lifetime (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Align abort/commit object scheme for write() and ioctl() paths (Kamal Heib) [1857603]
+- [uapi] RDMA: rdma_user_ioctl.h: fix a duplicated word + clarify (Kamal Heib) [1857603]
+- [infiniband] RDMA/qedr: Remove the query_pkey callback (Kamal Heib) [1857603]
+- [infiniband] RDMA/i40iw: Remove the query_pkey callback (Kamal Heib) [1857603]
+- [infiniband] RDMA/cxgb4: Remove the query_pkey callback (Kamal Heib) [1857603]
+- [infiniband] RDMA/siw: Remove the query_pkey callback (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Remove query_pkey from the mandatory ops (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Allocate the pkey cache only if the pkey_tbl_len is set (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Expose pkeys sysfs files only if pkey_tbl_len is set (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Prevent access to wr->next ptr afrer wr is posted to send queue (Kamal Heib) [1857603]
+- [infiniband] IB/hfi1: Remove unnecessary fall-through markings (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Remove rxe_link_layer() (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Return void from rxe_mem_init_dma() (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Return void from rxe_init_port_param() (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Drop pointless checks in rxe_init_ports (Kamal Heib) [1857603]
+- [infiniband] RDMA/counter: Allow manually bind QPs with different pids to same counter (Kamal Heib) [1857603]
+- [infiniband] RDMA/counter: Only bind user QPs in auto mode (Kamal Heib) [1857603]
+- [infiniband] RDMA/counter: Add PID category support in auto mode (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Skip dgid check in loopback mode (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Create and destroy counters in the ib_core (Kamal Heib) [1857603]
+- [infiniband] IB/uverbs: Expose UAPI to query MR (Kamal Heib) [1857603]
+- [infiniband] IB/uverbs: Expose UAPI to query ucontext (Kamal Heib) [1857603]
+- [infiniband] IB/uverbs: Set IOVA on IB MR in uverbs layer (Kamal Heib) [1857603]
+- [infiniband] IB/uverbs: Enable CQ ioctl commands by default (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Clean ib_alloc_xrcd() and reuse it to allocate XRC domain (Kamal Heib) [1857603]
+- [infiniband] RDMA: Remove the udata parameter from alloc_mr callback (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Remove ib_alloc_mr_user function (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Check for error instead of success in alloc MR function (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Clean up tracepoint headers (Kamal Heib) [1857603]
+- [infiniband] RDMA/ipoib: Handle user-supplied address when creating child (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Fix bogus WARN_ON during ib_unregister_device_queued() (Kamal Heib) [1857603]
+- [infiniband] IB/hfi1: Convert PCIBIOS_* errors to generic -E* errors (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Delete not-used create RWQ table function (Kamal Heib) [1857603]
+- [infiniband] IB/mad: Delete RMPP_STATE_CANCELING state (Kamal Heib) [1857603]
+- [infiniband] IB/mad: Change atomics to refcount API (Kamal Heib) [1857603]
+- [infiniband] IB/mad: Issue complete whenever decrements agent refcount (Kamal Heib) [1857603]
+- [infiniband] RDMA: Add support to dump resource tracker in RAW format (Kamal Heib) [1857603]
+- [infiniband] RDMA: Add dedicated CM_ID resource tracker function (Kamal Heib) [1857603]
+- [infiniband] RDMA: Add dedicated QP resource tracker function (Kamal Heib) [1857603]
+- [infiniband] RDMA: Add a dedicated CQ resource tracker function (Kamal Heib) [1857603]
+- [infiniband] RDMA: Add dedicated MR resource tracker function (Kamal Heib) [1857603]
+- [infiniband] RDMA/core: Don't call fill_res_entry for PD (Kamal Heib) [1857603]
+- [infiniband] RDMA/rxe: Remove unused rxe_mem_map_pages (Kamal Heib) [1857603]
+- [infiniband] RDMA/hfi1: Remove hfi1_create_qp declaration (Kamal Heib) [1857603]
+- [infiniband] RDMA/ipoib: Return void from ipoib_mcast_stop_thread() (Kamal Heib) [1857603]
+- [infiniband] RDMA: Correct trivial kernel-doc inconsistencies (Kamal Heib) [1857603]
+- [infiniband] IB/srpt: Remove WARN_ON from srpt_cm_req_recv (Kamal Heib) [1857603]
+- [tools] tools/power turbostat: Support additional CPU model numbers (Steve Best) [1782718]
+- [net] udp_tunnel: add the ability to hard-code IANA VXLAN (Ivan Vecera) [1879204]
+- [tools] selftests: net: add a test for UDP tunnel info infra (Ivan Vecera) [1867211]
+- [netdrv] netdevsim: add UDP tunnel port offload support (Ivan Vecera) [1867211]
+- [net] ethtool: add tunnel info interface (Ivan Vecera) [1867211]
+- [net] ethtool: Make helpers public (Ivan Vecera) [1867211]
+- [net] udp_tunnel: add central NIC RX port offload infrastructure (Ivan Vecera) [1867211]
+- [net] udp_tunnel: re-number the offload tunnel types (Ivan Vecera) [1867211]
+- [fs] debugfs: make sure we can remove u32_array files cleanly (Ivan Vecera) [1867211]
+- [fs] debugfs: make debugfs_create_u32_array() return void (Ivan Vecera) [1867211]
+- [fs] debugfs: update documented return values of debugfs helpers (Ivan Vecera) [1867211]
+
+* Fri Nov 27 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-255.el8]
+- [net] openvswitch: fix to make sure flow_lookup() is not preempted (Eelco Chaudron) [1888237]
+- [netdrv] powerpc/vnic: Extend "failover pending" window (Steve Best) [1897280]
+- [net] ipv6: Set SIT tunnel hard_header_len to zero (Davide Caratti) [1897244]
+- [net] ip_tunnel: fix over-mtu packet send fail without TUNNEL_DONT_FRAGMENT flags (Davide Caratti) [1897244]
+- [net] gre6: Fix reception with IP6_TNL_F_RCV_DSCP_COPY (Davide Caratti) [1897244]
+- [netdrv] vxlan: fix memleak of fdb (Davide Caratti) [1897244]
+- [net] vxlan: Ensure FDB dump is performed under RCU (Davide Caratti) [1897244]
+- [net] gre: refetch erspan header from skb->data after pskb_may_pull() (Davide Caratti) [1897244]
+- [net] erspan: fix the tun_info options_len check for erspan (Davide Caratti) [1897244]
+- [net] ip_gre: fix possible use-after-free in erspan_rcv (Davide Caratti) [1897244]
+- [net] erspan: fix error handling for erspan tunnel (Davide Caratti) [1897244]
+- [net] erspan: return PACKET_REJECT when the appropriate tunnel is not found (Davide Caratti) [1897244]
+- [netdrv] net: atlantic: fix build when object tree is separate (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: Use readx_poll_timeout() for large timeout (Igor Russkikh) [1857861]
+- [netdrv] net: ethernet: aquantia: Fix wrong return value (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: fix PTP on AQC10X (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add hwmon getter for MAC temperature (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A0 ntuple filters (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: use intermediate variable to improve readability a bit (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: use U32_MAX in aq_hw_utils.c (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add support for 64-bit reads/writes (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: enable ipv6 support for TCP LSO and UDP GSO (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: PTP statistics (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: additional per-queue stats (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: use u64_stats_update_* to protect access to 64-bit stats (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: split rx and tx per-queue stats (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: make _get_sw_stats return count as return value (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: use simple assignment in _get_stats and _get_sw_stats (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: move FRAC_PER_NS to aq_hw.h (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add support for FW 4.x (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: align return value of ver_match function with function name (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: disable PTP on AQC111, AQC112 (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: fix ip dst and ipv6 address filters (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix aq_ndev_start_xmit()'s return type (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: put ptp code under IS_REACHABLE check (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add alignment checks in hw_atl2_utils_fw.c (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: missing space in a comment in aq_nic.h (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: fix typo in aq_ring_tx_clean (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: make aq_pci_func_init static (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: Replace ENOTSUPP usage to EOPNOTSUPP (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: fix variable type in aq_ethtool_get_pauseparam (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A2: phy loopback support (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A2: report link partner capabilities (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A2: flow control support (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A2: EEE support (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: remove baseX usage (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A2: half duplex support (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: proper rss_ctrl1 (54c0) initialization (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: QoS implementation: min_rate (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: change the order of arguments for TC weight/credit setters (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: always use random TC-queue mapping for TX on A2 (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: automatically downgrade the number of queues if necessary (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: QoS implementation: max_rate (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: make TCVEC2RING accept nic_cfg (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: per-TC queue statistics (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: QoS implementation: multi-TC support (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: changes for multi-TC support (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: move PTP TC initialization to a separate function (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: changes for multi-TC support (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: unify MAC generation (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: remove check for boot code survivability before reset request (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: remove hw_atl_b0_hw_rss_set call from A2 code (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: remove TPO2 check from A0 code (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: rename AQ_NIC_RATE_2GS to AQ_NIC_RATE_2G5 (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: use __packed instead of the full expansion (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A2 ingress / egress hw configuration (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: basic A2 init/deinit hw_ops (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: common functions needed for basic A2 init/deinit hw_ops (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: HW bindings for basic A2 init/deinit hw_ops (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add A2 RPF hw_ops (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: HW bindings for A2 RFP (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A2 hw_ops skeleton (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: minimal A2 fw_ops (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: minimal A2 HW bindings required for fw_ops (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: A2 driver-firmware interface (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: move IS_CHIP_FEATURE to aq_hw.h (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: make hw_get_regs optional (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: simplify hw_get_fw_version() usage (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add hw_soft_reset, hw_prepare to hw_ops (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add defines for 10M and EEE 100M link mode (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add A2 device IDs (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: update company name in the driver description (Igor Russkikh) [1857861]
+- [netdrv] aquantia: Fix the media type of AQC100 ethernet controller in the driver (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: MACSec offload statistics implementation (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: reject all unsupported coalescing params (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: Replace zero-length array with flexible-array member (Igor Russkikh) [1857861]
+- [netdrv] net/aquantia: Delete module version (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: fix out of range usage of active_vlans array (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: possible fault in transition to hibernation (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: fix potential error handling (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: fix use after free kasan warn (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: better loopback mode handling (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: ptp gpio adjustments (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: check rpc result and wait for rpc address (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: checksum compat issue (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: remove duplicate entries (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: loopback configuration in improper place (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: broken link status on old fw (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: Signedness bug in aq_vec_isr_legacy() (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: make function 'aq_ethtool_get_priv_flags', 'aq_ethtool_set_priv_flags' static (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: make symbol 'aq_pm_ops' static (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: change email domains to Marvell (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: implement UDP GSO offload (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: update flow control logic (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: stylistic renames (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: code style cleanup (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: loopback tests via private flags (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add fw configuration memory area (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: adding ethtool physical identification (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: add msglevel configuration (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: refactoring pm logic (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: implement wake_phy feature (Igor Russkikh) [1857861]
+- [netdrv] net: atlantic: update firmware interface (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix return value check in aq_ptp_init() (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix error handling in aq_ptp_poll (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: remove unused including <linux/version.h> (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: make two symbols be static (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix unintention integer overflow on left shift (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix spelling mistake: tx_queus -> tx_queues (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: disable ptp object build if no config (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix warnings on endianness (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix var initialization warning (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: add support for PIN funcs (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: add support for Phy access (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: implement get_ts_info ethtool (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: add support for ptp ioctls (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: rx filters for ptp (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: implement data PTP datapath (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: styling fixes on ptp related functions (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: add PTP rings infrastructure (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: add basic ptp_clock callbacks (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: unify styling of bit enums (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: PTP skeleton declarations and callbacks (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: add an error handling in aq_nic_set_multicast_list (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: correctly handle macvlan and multicast coexistence (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: do not pass lro session with invalid tcp checksum (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: when cleaning hw cache it should be toggled (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: temperature retrieval fix (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: Fix aq_vec_isr_legacy() return value (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix out of memory condition on rx side (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: linkstate irq should be oneshot (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix limit of vlan filters (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: fix removal of vlan 0 (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: implement vlan offload configuration (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: vlan offloads logic in datapath (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: adding fields and device features for vlan offload (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: added vlan offload related macros and functions (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: make all files GPL-2.0-only (Igor Russkikh) [1857861]
+- [netdrv] net: aquantia: replace internal driver version code with uts (Igor Russkikh) [1857861]
+- [netdrv] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 422 (Igor Russkikh) [1857861]
+- [netdrv] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 308 (Igor Russkikh) [1857861]
+- [include] net: phy: introduce phy_read_mmd_poll_timeout macro (Josef Oskera) [1892739]
+- [include] net: phy: introduce phy_read_poll_timeout macro (Josef Oskera) [1892739]
+- [netdrv] phy: add device-managed devm_mdiobus_register (Josef Oskera) [1892740]
+- [include] net: add helper eth_hw_addr_crc (Josef Oskera) [1892738]
+- [netdrv] LiquidIO: mark liquidio and liquidio_vf as deprecated in RHEL8 (Stefan Assmann) [1878178]
+- [net] tcp: remove SOCK_QUEUE_SHRUNK (Paolo Abeni) [1890058]
+- [net] tcp: fix receive window update in tcp_add_backlog() (Paolo Abeni) [1890058]
+- [net] tcp: md5: allow changing MD5 keys in all socket states (Paolo Abeni) [1890058]
+- [net] tcp: fix SO_RCVLOWAT possible hangs under high mem pressure (Paolo Abeni) [1890058]
+- [net] tcp: md5: do not send silly options in SYNCOOKIES (Paolo Abeni) [1890058]
+- [net] tcp: grow window for OOO packets only for SACK flows (Paolo Abeni) [1890058]
+- [net] tcp: fix error recovery in tcp_zerocopy_receive() (Paolo Abeni) [1890058]
+- [net] tcp: fix SO_RCVLOWAT hangs with fat skbs (Paolo Abeni) [1890058]
+- [net] tcp: fix rx timestamp behavior for tcp_recvmsg (Paolo Abeni) [1890058]
+- [fs] smb3: smbdirect support can be configured by default (Leif Sahlberg) [1887940]
+- [fs] cifs: smbd: Do not schedule work to send immediate packet on every receive (Leif Sahlberg) [1887940]
+- [fs] cifs: smbd: Properly process errors on ib_post_send (Leif Sahlberg) [1887940]
+- [fs] cifs: Allocate crypto structures on the fly for calculating signatures of incoming packets (Leif Sahlberg) [1887940]
+- [fs] cifs: smbd: Update receive credits before sending and deal with credits roll back on failure before sending (Leif Sahlberg) [1887940]
+- [fs] cifs: smbd: Check send queue size before posting a send (Leif Sahlberg) [1887940]
+- [fs] cifs: smbd: Merge code to track pending packets (Leif Sahlberg) [1887940]
+- [fs] cifs: Allocate encryption header through kmalloc (Leif Sahlberg) [1887940]
+- [fs] cifs: smbd: Check and extend sender credits in interrupt context (Leif Sahlberg) [1887940]
+- [fs] cifs: smbd: Calculate the correct maximum packet size for segmented SMBDirect send/receive (Leif Sahlberg) [1887940]
+- [net] core: device_rename: Use rwsem instead of a seqcount (Patrick Talbert) [1883310]
+
+* Thu Nov 26 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-254.el8]
+- [tools] perf tools: Add bpf image check to __map__is_kmodule (Michael Petlan) [1873270]
+- [tools] perf tools: Add support for PERF_RECORD_KSYMBOL_TYPE_OOL (Michael Petlan) [1873270]
+- [tools] perf record: Don't clear event's period if set by a term (Michael Petlan) [1873270]
+- [tools] perf bench: The do_run_multi_threaded() function must use IS_ERR(perf_session__new()) (Michael Petlan) [1873270]
+- [tools] perf top: Skip side-band event setup if HAVE_LIBBPF_SUPPORT is not set (Michael Petlan) [1873270]
+- [tools] perf record: Skip side-band event setup if HAVE_LIBBPF_SUPPORT is not set (Michael Petlan) [1873270]
+- [tools] perf evsel: Don't set sample_regs_intr/sample_regs_user for dummy event (Michael Petlan) [1873270]
+- [tools] perf stat: Turn off summary for interval mode by default (Michael Petlan) [1873270]
+- [tools] perf trace: Fix off by ones in memset() after realloc() in arches using libaudit (Michael Petlan) [1873270]
+- [tools] perf top/report: Fix infinite loop in the TUI for grouped events (Michael Petlan) [1873270]
+- [tools] redhat: use local hashmap library in perf (Michael Petlan) [1873270]
+- [tools] libtraceevent: Fix build with binutils 2.35 (Michael Petlan) [1873270]
+- [tools] perf tools: Fix record failure when mixed with ARM SPE event (Michael Petlan) [1873270]
+- [tools] perf tests: Fix test 68 zstd compression for s390 (Michael Petlan) [1873270]
+- [tools] tools lib traceevent: Fix memory leak in process_dynamic_array_len (Michael Petlan) [1873270]
+- [tools] perf tools: Sync hashmap.h with libbpf's (Michael Petlan) [1873270]
+- [tools] libsubcmd: Fix OPT_CALLBACK_SET() (Michael Petlan) [1873270]
+- [tools] perf report TUI: Remove needless 'dummy' event from menu (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Fix PEBS sample for XMM registers (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Fix displaying PEBS-via-PT with registers (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Fix recording PEBS-via-PT with registers (Michael Petlan) [1873270]
+- [tools] tools lib traceevent: Add proper KBUFFER_TYPE_TIME_STAMP handling (Michael Petlan) [1873270]
+- [tools] tools lib traceevent: Add API to read time information from kbuffer (Michael Petlan) [1873270]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix time chart call tree (Michael Petlan) [1873270]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix zero id in call tree 'Find' result (Michael Petlan) [1873270]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix zero id in call graph 'Find' result (Michael Petlan) [1873270]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix unexpanded 'Find' result (Michael Petlan) [1873270]
+- [tools] perf record: Fix duplicated sideband events with Intel PT system wide tracing (Michael Petlan) [1873270]
+- [tools] perf scripts python: export-to-postgresql.py: Fix struct.pack() int argument (Michael Petlan) [1873270]
+- [tools] perf build: Fix error message when asking for -fsanitize=address without required libraries (Michael Petlan) [1873270]
+- [tools] tools lib traceevent: Add handler for __builtin_expect() (Michael Petlan) [1873270]
+- [tools] tools lib traceevent: Handle __attribute__((user)) in field names (Michael Petlan) [1873270]
+- [tools] tools lib traceevent: Add append() function helper for appending strings (Michael Petlan) [1873270]
+- [tools] perf script: Initialize zstd_data (Michael Petlan) [1873270]
+- [tools] perf pmu: Remove unused declaration (Michael Petlan) [1873270]
+- [tools] perf parse-events: Fix an old style declaration (Michael Petlan) [1873270]
+- [tools] perf parse-events: Fix an incompatible pointer (Michael Petlan) [1873270]
+- [tools] perf bpf: Fix bpf prologue generation (Michael Petlan) [1873270]
+- [tools] perf probe: Fix user attribute access in kprobes (Michael Petlan) [1873270]
+- [tools] perf stat: Fix NULL pointer dereference (Michael Petlan) [1873270]
+- [tools] perf report: Fix NULL pointer dereference in hists__fprintf_nr_sample_events() (Michael Petlan) [1873270]
+- [tools] perf tools: Remove some duplicated includes (Michael Petlan) [1873270]
+- [tools] perf symbols: Fix kernel maps for kcore and eBPF (Michael Petlan) [1873270]
+- [tools] perf stat: Ensure group is defined on top of the same cpu mask (Michael Petlan) [1873270]
+- [tools] perf libdw: Fix off-by 1 relative directory includes (Michael Petlan) [1873270]
+- [tools] perf arm-spe: Support synthetic events (Michael Petlan) [1873270]
+- [tools] perf auxtrace: Add four itrace options (Michael Petlan) [1873270]
+- [tools] perf tools: Move arm-spe-pkt-decoder.h/c to the new dir (Michael Petlan) [1873270]
+- [tools] perf test: Initialize memory in dwarf-unwind (Michael Petlan) [1873270]
+- [tools] perf tests: Don't tail call optimize in unwind test (Michael Petlan) [1873270]
+- [tools] tools compiler.h: Add attribute to disable tail calls (Michael Petlan) [1873270]
+- [tools] perf build: Add a LIBPFM4=1 build test entry (Michael Petlan) [1873270]
+- [tools] perf tools: Add optional support for libpfm4 (Michael Petlan) [1873270]
+- [tools] perf tools: Correct license on jsmn JSON parser (Michael Petlan) [1873270]
+- [tools] perf jit: Fix inaccurate DWARF line table (Michael Petlan) [1873270]
+- [tools] perf jvmti: Remove redundant jitdump line table entries (Michael Petlan) [1873270]
+- [tools] perf build: Add NO_SDT=1 to the default set of build tests (Michael Petlan) [1873270]
+- [tools] perf build: Add NO_LIBCRYPTO=1 to the default set of build tests (Michael Petlan) [1873270]
+- [tools] perf build: Add NO_SYSCALL_TABLE=1 to the build tests (Michael Petlan) [1873270]
+- [tools] perf build: Remove libaudit from the default feature checks (Michael Petlan) [1873270]
+- [tools] perf trace: Grow the syscall table as needed when using libaudit (Michael Petlan) [1873270]
+- [tools] perf trace: Use zalloc() to make sure all fields are zeroed in the syscalltbl constructor (Michael Petlan) [1873270]
+- [tools] perf trace: Remove union from syscalltbl, all the fields are needed (Michael Petlan) [1873270]
+- [tools] perf build: Allow explicitely disabling the NO_SYSCALL_TABLE variable (Michael Petlan) [1873270]
+- [tools] perf build: Group the NO_SYSCALL_TABLE logic (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Refine kernel decoding only warning message (Michael Petlan) [1873270]
+- [tools] perf record: Respect --no-switch-events (Michael Petlan) [1873270]
+- [tools] perf script: Fix --call-trace for Intel PT (Michael Petlan) [1873270]
+- [tools] perf evlist: Disable 'immediate' events last (Michael Petlan) [1873270]
+- [tools] perf kcore_copy: Fix module map when there are no modules loaded (Michael Petlan) [1873270]
+- [tools] perf jvmti: Fix demangling Java symbols (Michael Petlan) [1873270]
+- [tools] perf tests: Add test for the java demangler (Michael Petlan) [1873270]
+- [tools] perf jvmti: Do not report error when missing debug information (Michael Petlan) [1873270]
+- [tools] perf jvmti: Fix jitdump for methods without debug info (Michael Petlan) [1873270]
+- [tools] perf symbols: Fix debuginfo search for Ubuntu (Michael Petlan) [1873270]
+- [tools] perf parse: Add 'struct parse_events_state' pointer to scanner (Michael Petlan) [1873270]
+- [tools] perf stat: Do not pass avg to generic_metric (Michael Petlan) [1873270]
+- [tools] perf tests: Consider subtests when searching for user specified tests (Michael Petlan) [1873270]
+- [tools] perf list: Add metrics to command line usage (Michael Petlan) [1873270]
+- [tools] perf script: Don't force less for non tty output with --xed (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Remove unnecessary ', ' from events (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Add options to not group or merge (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Remove duped metric group events (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Order event groups by size (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Delay events string creation (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Use early return in add_metric (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Always place duration_time last (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Free metric_events on error (Michael Petlan) [1873270]
+- [tools] perf util: Fix potential SEGFAULT in put_tracepoints_path error path (Michael Petlan) [1873270]
+- [tools] perf util: Fix memory leak of prefix_if_not_in (Michael Petlan) [1873270]
+- [tools] perf ftrace: Detect workload failure (Michael Petlan) [1873270]
+- [tools] perf ftrace: Trace system wide if no target is given (Michael Petlan) [1873270]
+- [tools] perf branch: Replace zero-length array with flexible-array (Michael Petlan) [1873270]
+- [tools] perf config: Add stat.big-num support (Michael Petlan) [1873270]
+- [tools] perf bpf-loader: Add missing '*' for key_scan_pos (Michael Petlan) [1873270]
+- [tools] perf stat: Report summary for interval mode (Michael Petlan) [1873270]
+- [tools] perf stat: Save aggr value to first member of prev_raw_counts (Michael Petlan) [1873270]
+- [tools] perf stat: Copy counts from prev_raw_counts to evsel->counts (Michael Petlan) [1873270]
+- [tools] perf counts: Reset prev_raw_counts counts (Michael Petlan) [1873270]
+- [tools] perf stat: Fix wrong per-thread runtime stat for interval mode (Michael Petlan) [1873270]
+- [tools] perf expr: Allow numbers to be followed by a dot (Michael Petlan) [1873270]
+- [tools] perf metricgroup: Make 'evlist_used' variable a bitmap instead of array of bools (Michael Petlan) [1873270]
+- [tools] perf stat: Fail on extra comma while parsing events (Michael Petlan) [1873270]
+- [tools] perf script: Better align register values in dump (Michael Petlan) [1873270]
+- [tools] perf stat: POWER9 metrics: expand "ICT" acronym (Michael Petlan) [1873270]
+- [tools] perf tools: Replace zero-length array with flexible-array (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Use allocated branch stack for PEBS sample (Michael Petlan) [1873270]
+- [tools] perf docs: Introduce security.txt file to document related issues (Michael Petlan) [1873270]
+- [tools] perf tool: Make perf tool aware of SELinux access control (Michael Petlan) [1873270]
+- [tools] perf docs: Extend CAP_SYS_ADMIN with CAP_PERFMON where needed (Michael Petlan) [1873270]
+- [tools] perf expr: Migrate expr ids table to a hashmap (Michael Petlan) [1873270]
+- [tools] perf tools: Grab a copy of libbpf's hashmap (Michael Petlan) [1873270]
+- [tools] perf stat: Fix duration_time value for higher intervals (Michael Petlan) [1873270]
+- [tools] perf trace: Fix compilation error for make NO_LIBBPF=1 DEBUG=1 (Michael Petlan) [1873270]
+- [tools] perf beauty: Allow the CC used in the arch errno names script to acccept CFLAGS (Michael Petlan) [1873270]
+- [tools] perf trace: Fix the selection for architectures to generate the errno name tables (Michael Petlan) [1873270]
+- [tools] perf test: Improve pmu event metric testing (Michael Petlan) [1873270]
+- [tools] perf test: Provide a subtest callback to ask for the reason for skipping a subtest (Michael Petlan) [1873270]
+- [tools] perf parse-events: Make add PMU verbose output clearer (Michael Petlan) [1873270]
+- [tools] perf expr: Fix memory leaks in metric bison (Michael Petlan) [1873270]
+- [tools] perf expr: Test parsing of floating point numbers (Michael Petlan) [1873270]
+- [tools] perf record: Use an eventfd to wakeup when done (Michael Petlan) [1873270]
+- [tools] tools feature: Rename HAVE_EVENTFD to HAVE_EVENTFD_SUPPORT (Michael Petlan) [1873270]
+- [tools] perf evsel: Initialize evsel->per_pkg_mask to NULL in evsel__init() (Michael Petlan) [1873270]
+- [tools] perf evsel: Fix 2 memory leaks (Michael Petlan) [1873270]
+- [tools] perf parse-events: Fix incorrect conversion of 'if () free()' to 'zfree()' (Michael Petlan) [1873270]
+- [tools] perf tools: Fix is_bpf_image function logic (Michael Petlan) [1873270]
+- [tools] perf c2c: Fix 'perf c2c record -e list' to show the default events used (Michael Petlan) [1873270]
+- [tools] perf record: Add dummy event during system wide synthesis (Michael Petlan) [1873270]
+- [tools] perf evsel: Dummy events never triggers, no need to ask for PERF_SAMPLE_BRANCH_STACK (Michael Petlan) [1873270]
+- [tools] perf parse-events: Use strcmp() to compare the PMU name (Michael Petlan) [1873270]
+- [tools] perf expr: Print a debug message for division by zero (Michael Petlan) [1873270]
+- [tools] perf expr: Debug lex if debugging yacc (Michael Petlan) [1873270]
+- [tools] perf expr: Parse numbers as doubles (Michael Petlan) [1873270]
+- [tools] perf expr: Increase max other (Michael Petlan) [1873270]
+- [tools] perf expr: Allow ',' to be an other token (Michael Petlan) [1873270]
+- [tools] perf metrics: Fix parse errors in skylake metrics (Michael Petlan) [1873270]
+- [tools] perf metrics: Fix parse errors in cascade lake metrics (Michael Petlan) [1873270]
+- [tools] perf expr: Allow for unlimited escaped characters in a symbol (Michael Petlan) [1873270]
+- [tools] perf script: Enable IP fields for callchains (Michael Petlan) [1873270]
+- [tools] perf callchain: Setup callchain properly in pipe mode (Michael Petlan) [1873270]
+- [tools] perf session: Try to read pipe data from file (Michael Petlan) [1873270]
+- [tools] perf tools: Do not seek in pipe fd during tracing data processing (Michael Petlan) [1873270]
+- [tools] perf tools: Do not display extra info when there is nothing to build (Michael Petlan) [1873270]
+- [tools] perf probe: Do not show the skipped events (Michael Petlan) [1873270]
+- [tools] perf probe: Check address correctness by map instead of _etext (Michael Petlan) [1873270]
+- [tools] perf probe: Fix to check blacklist address correctly (Michael Petlan) [1873270]
+- [tools] perf probe: Accept the instance number of kretprobe event (Michael Petlan) [1873270]
+- [tools] perf counts: Rename perf_evsel__*counts() to evsel__*counts() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__w_cache* to evsel__w_cache* (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__new*() to evsel__new*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename *perf_evsel__get_config_term() & friends to evsel__env() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__fprintf() to evsel__fprintf() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__resort*() to evsel__resort*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__object_config() to evsel__object_config() (Michael Petlan) [1873270]
+- [tools] perf cs-etm: Move definition of 'traceid_list' global variable from header file (Michael Petlan) [1873270]
+- [tools] libsymbols kallsyms: Move hex2u64 out of header (Michael Petlan) [1873270]
+- [tools] libsymbols kallsyms: Parse using io api (Michael Petlan) [1873270]
+- [tools] perf bench: Add kallsyms parsing (Michael Petlan) [1873270]
+- [tools] perf: cs-etm: Update to build with latest opencsd version (Michael Petlan) [1873270]
+- [tools] perf symbol: Fix kernel symbol address display (Michael Petlan) [1873270]
+- [tools] perf inject: Rename perf_evsel__*() operating on 'struct evsel *' to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf annotate: Rename perf_evsel__*() operating on 'struct evsel *' to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf trace: Rename perf_evsel__*() operating on 'struct evsel *' to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf script: Rename perf_evsel__*() operating on 'struct evsel *' to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf sched: Rename perf_evsel__*() operating on 'struct evsel *' to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf lock: Rename perf_evsel__*() operating on 'struct evsel *' to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf kmem: Rename perf_evsel__*() operating on 'struct evsel *' to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf stat: Rename perf_evsel__*() operating on 'struct evsel *' to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__store_ids() to evsel__store_id() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__env() to evsel__env() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__group_idx() to evsel__group_idx() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__fallback() to evsel__fallback() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__has*() to evsel__has*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__{prev, next}() to evsel__{prev, next}() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__parse_sample*() to evsel__parse_sample*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename *perf_evsel__read*() to *evsel__read() (Michael Petlan) [1873270]
+- [tools] perf evsel: Ditch perf_evsel__cmp(), not used for quite a while (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__is_*() to evsel__is*() (Michael Petlan) [1873270]
+- [tools] perf pmu: Add perf_pmu__find_by_type helper (Michael Petlan) [1873270]
+- [tools] tools feature: Add support for detecting libpfm4 (Michael Petlan) [1873270]
+- [tools] perf doc: Pass ASCIIDOC_EXTRA as an argument (Michael Petlan) [1873270]
+- [tools] perf mem2node: Avoid double free related to realloc (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__{str, int}val() and other tracepoint field metehods to to evsel__*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__open_per_*() to evsel__open_per_*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__*filter*() to evsel__*filter*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename *perf_evsel__*set_sample_*() to *evsel__*set_sample_*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__group_desc() to evsel__group_desc() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename *perf_evsel__*name() to *evsel__*name() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename __perf_evsel__sample_size() to __evsel__sample_size() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__calc_id_pos() to evsel__calc_id_pos() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__config*() to evsel__config*() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__exit() to evsel__exit() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__is_aux_event() to evsel__is_aux_event() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__find_pmu() to evsel__find_pmu() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__compute_deltas() to evsel__compute_deltas() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename perf_evsel__nr_cpus() to evsel__nr_cpus() (Michael Petlan) [1873270]
+- [tools] perf evsel: Rename 'struct perf_evsel__sb_cb_t' to 'struct evsel__sb_cb_t' (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Update documentation about using /proc/kcore (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Update documentation about itrace G and L options (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Add support for synthesizing branch stacks for regular events (Michael Petlan) [1873270]
+- [tools] perf thread-stack: Add thread_stack__br_sample_late() (Michael Petlan) [1873270]
+- [tools] perf evsel: Add support for synthesized branch stack sample type (Michael Petlan) [1873270]
+- [tools] perf auxtrace: Add option to synthesize branch stack for regular events (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Change branch stack support to use thread-stacks (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Consolidate thread-stack use condition (Michael Petlan) [1873270]
+- [tools] perf thread-stack: Add branch stack support (Michael Petlan) [1873270]
+- [tools] perf tools: Simplify checking if SMT is active (Michael Petlan) [1873270]
+- [tools] perf tools: Fix reading new topology attribute "core_cpus" (Michael Petlan) [1873270]
+- [tools] libperf evlist: Fix a refcount leak (Michael Petlan) [1873270]
+- [tools] perf parse-events: Fix another memory leaks found on parse_events() (Michael Petlan) [1873270]
+- [tools] perf parse-events: Fix memory leaks found on parse_events (Michael Petlan) [1873270]
+- [tools] perf parse-events: Fix memory leaks found on parse_events (Michael Petlan) [1873270]
+- [tools] libperf: Add NULL pointer check for cpu_map iteration and NULL assignment for all_cpus (Michael Petlan) [1873270]
+- [tools] perf record: Move side band evlist setup to separate routine (Michael Petlan) [1873270]
+- [tools] perf record: Introduce --switch-output-event (Michael Petlan) [1873270]
+- [tools] libsubcmd: Introduce OPT_CALLBACK_SET() (Michael Petlan) [1873270]
+- [tools] perf evlist: Allow reusing the side band thread for more purposes (Michael Petlan) [1873270]
+- [tools] perf evlist: Move the sideband thread routines to separate object (Michael Petlan) [1873270]
+- [tools] perf parse-events: Add parse_events_option() variant that creates evlist (Michael Petlan) [1873270]
+- [tools] perf bpf: Decouple creating the evlist from adding the SB event (Michael Petlan) [1873270]
+- [tools] perf top: Move sb_evlist to 'struct perf_top' (Michael Petlan) [1873270]
+- [tools] perf record: Move sb_evlist to 'struct record' (Michael Petlan) [1873270]
+- [tools] perf tools: Move routines that probe for perf API features to separate file (Michael Petlan) [1873270]
+- [tools] perf vendor events power9: Add hv_24x7 socket/chip level metric events (Michael Petlan) [1873270]
+- [tools] perf tools: Enable Hz/hz prinitg for --metric-only option (Michael Petlan) [1873270]
+- [tools] perf tests expr: Added test for runtime param in metric expression (Michael Petlan) [1873270]
+- [tools] perf metricgroups: Enhance JSON/metric infrastructure to handle "?" (Michael Petlan) [1873270]
+- [tools] perf pmu: Fix function name in comment, its get_cpuid_str(), not get_cpustr() (Michael Petlan) [1873270]
+- [tools] perf report: Fix warning assignment of 0/1 to bool variable (Michael Petlan) [1873270]
+- [tools] perf tools: Remove unneeded semicolons (Michael Petlan) [1873270]
+- [tools] perf c2c: Remove unneeded semicolon (Michael Petlan) [1873270]
+- [tools] libtraceevent: Remove unneeded semicolon (Michael Petlan) [1873270]
+- [tools] perf script: Remove extraneous newline in perf_sample__fprintf_regs() (Michael Petlan) [1873270]
+- [tools] perf synthetic events: Remove use of sscanf from /proc reading (Michael Petlan) [1873270]
+- [tools] tools api: Add a lightweight buffered reading api (Michael Petlan) [1873270]
+- [tools] perf bench: Add a multi-threaded synthesize benchmark (Michael Petlan) [1873270]
+- [tools] perf record: Add num-synthesize-threads option (Michael Petlan) [1873270]
+- [tools] perf test session topology: Fix data path (Michael Petlan) [1873270]
+- [tools] perf stat: Improve runtime stat for interval mode (Michael Petlan) [1873270]
+- [tools] perf stat: Zero all the 'ena' and 'run' array slot stats for interval mode (Michael Petlan) [1873270]
+- [tools] perf evlist: Remove duplicate headers (Michael Petlan) [1873270]
+- [tools] perf bench: Fix div-by-zero if runtime is zero (Michael Petlan) [1873270]
+- [tools] perf cgroup: Avoid needless closing of unopened fd (Michael Petlan) [1873270]
+- [tools] perf hist: Add fast path for duplicate entries check (Michael Petlan) [1873270]
+- [tools] perf c2c: Add option to enable the LBR stitching approach (Michael Petlan) [1873270]
+- [tools] perf top: Add option to enable the LBR stitching approach (Michael Petlan) [1873270]
+- [tools] perf script: Add option to enable the LBR stitching approach (Michael Petlan) [1873270]
+- [tools] perf report: Add option to enable the LBR stitching approach (Michael Petlan) [1873270]
+- [tools] perf callchain: Stitch LBR call stack (Michael Petlan) [1873270]
+- [tools] perf callchain: Save previous cursor nodes for LBR stitching approach (Michael Petlan) [1873270]
+- [tools] perf thread: Save previous sample for LBR stitching approach (Michael Petlan) [1873270]
+- [tools] perf thread: Add a knob for LBR stitch approach (Michael Petlan) [1873270]
+- [tools] perf machine: Factor out lbr_callchain_add_lbr_ip() (Michael Petlan) [1873270]
+- [tools] perf machine: Factor out lbr_callchain_add_kernel_ip() (Michael Petlan) [1873270]
+- [tools] perf machine: Refine the function for LBR call stack reconstruction (Michael Petlan) [1873270]
+- [tools] perf machine: Remove the indent in resolve_lbr_callchain_sample (Michael Petlan) [1873270]
+- [tools] perf header: Support CPU PMU capabilities (Michael Petlan) [1873270]
+- [tools] perf parser: Add support to specify rXXX event with pmu (Michael Petlan) [1873270]
+- [tools] perf doc: allow ASCIIDOC_EXTRA to be an argument (Michael Petlan) [1873270]
+- [tools] perf pmu: Add support for PMU capabilities (Michael Petlan) [1873270]
+- [tools] tools lib traceevent: Take care of return value of asprintf (Michael Petlan) [1873270]
+- [tools] perf stat: Force error in fallback on :k events (Michael Petlan) [1873270]
+- [tools] perf tools: Add support for leader-sampling with AUX area events (Michael Petlan) [1873270]
+- [tools] perf evlist: Allow multiple read formats (Michael Petlan) [1873270]
+- [tools] perf evsel: Rearrange perf_evsel__config_leader_sampling() (Michael Petlan) [1873270]
+- [tools] perf evlist: Move leader-sampling configuration (Michael Petlan) [1873270]
+- [tools] perf evsel: Move and globalize perf_evsel__find_pmu() and perf_evsel__is_aux_event() (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Add support for synthesizing callchains for regular events (Michael Petlan) [1873270]
+- [tools] perf evsel: Add support for synthesized sample type (Michael Petlan) [1873270]
+- [tools] perf evsel: Be consistent when looking which evsel PERF_SAMPLE_ bits are set (Michael Petlan) [1873270]
+- [tools] perf thread-stack: Add thread_stack__sample_late() (Michael Petlan) [1873270]
+- [tools] perf auxtrace: Add an option to synthesize callchains for regular events (Michael Petlan) [1873270]
+- [tools] perf auxtrace: For reporting purposes, un-group AUX area event (Michael Petlan) [1873270]
+- [tools] perf s390-cpumsf: Implement ->evsel_is_auxtrace() callback (Michael Petlan) [1873270]
+- [tools] perf cs-etm: Implement ->evsel_is_auxtrace() callback (Michael Petlan) [1873270]
+- [tools] perf arm-spe: Implement ->evsel_is_auxtrace() callback (Michael Petlan) [1873270]
+- [tools] perf intel-bts: Implement ->evsel_is_auxtrace() callback (Michael Petlan) [1873270]
+- [tools] perf intel-pt: Implement ->evsel_is_auxtrace() callback (Michael Petlan) [1873270]
+- [tools] perf auxtrace: Add ->evsel_is_auxtrace() callback (Michael Petlan) [1873270]
+- [tools] perf metrictroup: Split the metricgroup__add_metric function (Michael Petlan) [1873270]
+- [tools] perf expr: Add expr_scanner_ctx object (Michael Petlan) [1873270]
+- [tools] perf expr: Add expr_ prefix for parse_ctx and parse_id (Michael Petlan) [1873270]
+- [tools] perf synthetic-events: save 4kb from 2 stack frames (Michael Petlan) [1873270]
+- [tools] tools api fs: Make xxx__mountpoint() more scalable (Michael Petlan) [1873270]
+- [tools] perf bench: Add event synthesis benchmark (Michael Petlan) [1873270]
+- [tools] perf script: Simplify auxiliary event printing functions (Michael Petlan) [1873270]
+- [tools] perf tools: Support CAP_PERFMON capability (Michael Petlan) [1873270]
+- [tools] perf annotate: Add basic support for bpf_image (Michael Petlan) [1873270]
+- [tools] perf machine: Set ksymbol dso as loaded on arrival (Michael Petlan) [1873270]
+- [tools] perf tools: Synthesize bpf_trampoline/dispatcher ksymbol event (Michael Petlan) [1873270]
+- [tools] perf stat: Honour --timeout for forked workloads (Michael Petlan) [1873270]
+- [powerpc] powerpc/watchpoint: Add hw_len wherever missing (Michael Petlan) [1873270]
+- [kernel] perf: Fix task_function_call() error handling (Michael Petlan) [1873270]
+- [x86] perf/x86/rapl: Fix RAPL config variable bug (Michael Petlan) [1873270]
+- [x86] perf/x86/rapl: Add AMD Fam17h RAPL support (Michael Petlan) [1873270]
+- [x86] perf/x86/rapl: Make perf_probe_msr() more robust and flexible (Michael Petlan) [1873270]
+- [x86] perf/x86/rapl: Flip logic on default events visibility (Michael Petlan) [1873270]
+- [x86] perf/x86/rapl: Refactor to share the RAPL code between Intel and AMD CPUs (Michael Petlan) [1873270]
+- [x86] perf/x86/rapl: Move RAPL support to common x86 code (Michael Petlan) [1873270]
+- [kernel] perf/core: Replace zero-length array with flexible-array (Michael Petlan) [1873270]
+- [x86] perf/x86: Replace zero-length array with flexible-array (Michael Petlan) [1873270]
+- [x86] perf/x86/intel: Add more available bits for OFFCORE_RESPONSE of Intel Tremont (Michael Petlan) [1873270]
+- [x86] perf/x86/intel/pt: Drop pointless NULL assignment (Michael Petlan) [1873270]
+- [kernel] perf: Add cond_resched() to task_function_call() (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf: open access for CAP_PERFMON privileged process (Michael Petlan) [1873270]
+- [kernel] perf/core: open access to probes for CAP_PERFMON privileged process (Michael Petlan) [1873270]
+- [kernel] perf/core: Open access to the core for CAP_PERFMON privileged process (Michael Petlan) [1873270]
+- [include] perf/core: Fix !CONFIG_PERF_EVENTS build warnings and failures (Michael Petlan) [1873270]
+- [security] perf_event: Add support for LSM and SELinux checks (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf/hv-24x7: Fix inconsistent output values incase multiple hv-24x7 events run (Michael Petlan) [1873270]
+- [powerpc] powerpc/hv-24x7: Add rtas call in hv-24x7 driver to get processor details (Michael Petlan) [1873270]
+- [powerpc] powerpc/hv-24x7: Add sysfs files inside hv-24x7 device to show processor details (Michael Petlan) [1873270]
+- [documentation] Documentation/ABI: Add ABI documentation for chips and sockets (Michael Petlan) [1873270]
+- [powerpc] powerpc/pseries: Update hv-24x7 information after migration (Michael Petlan) [1873270]
+- [powerpc] powerpc/watchpoint: Fix ptrace code that muck around with address/len (Michael Petlan) [1873270]
+- [powerpc] powerpc/watchpoint: Fix length calculation for unaligned target (Michael Petlan) [1873270]
+- [powerpc] powerpc/watchpoint: Introduce macros for watchpoint length (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf: fix imc allocation failure handling (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf/24x7: use rb_entry (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf: Fix MMCRA corruption by bhrb_filter (Michael Petlan) [1873270]
+- [powerpc] perf/core, arch/powerpc: use PERF_PMU_CAP_NO_EXCLUDE for exclusion incapable PMUs (Michael Petlan) [1873270]
+- [powerpc] Powerpc/perf: Wire up PMI throttling (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf: Remove l2 bus events from HW cache event array (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf: Add constraints for power9 l2/l3 bus events (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf: Fix unit_sel/cache_sel checks (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf: Cleanup cache_sel bits comment (Michael Petlan) [1873270]
+- [powerpc] powerpc/perf: Fix thresholding counter data for unknown type (Michael Petlan) [1873270]
+- [fs] writeback: Drop I_DIRTY_TIME_EXPIRE (Waiman Long) [1860031]
+- [fs] writeback: Fix sync livelock due to b_dirty_time processing (Waiman Long) [1860031]
+- [fs] writeback: Avoid skipping inode writeback (Waiman Long) [1860031]
+- [fs] writeback: Protect inode->i_io_list with inode->i_lock (Waiman Long) [1860031]
+- [fs] dcache: sort the freeing-without-RCU-delay mess for good (Waiman Long) [1860031]
+- [net] udp: Improve load balancing for SO_REUSEPORT. (Davide Caratti) [1894075]
+- [net] udp: Fix wrong clean up for IS_UDPLITE macro (Davide Caratti) [1894075]
+- [fs] ext4: disallow modifying DAX inode flag if inline_data has been set (Eric Sandeen) [1838344]
+- [include] dax: Fix compilation for CONFIG_DAX && !CONFIG_FS_DAX (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dax: Fix stack overflow when mounting fsdax pmem device (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dm: Call proper helper to determine dax support (Eric Sandeen) [1838876 1854346 1838344]
+- [md] dm/dax: Fix table reference counts (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dax: fix detection of dax support for non-persistent memory block devices (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dax: do not print error message for non-persistent memory block device (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] dax: Fix incorrect argument passed to xas_set_err() (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/xfs: Support that ioctl(SETXFLAGS/GETXFLAGS) can set/get inode DAX on XFS (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] drivers/dax: Expand lock scope to cover the use of addresses (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/dax: Remove unused size parameter (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dax: print error message by pr_info() in __generic_fsdax_supported() (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] ext4: avoid race conditions when remounting with options that change dax (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/xfs: Update xfs_ioctl_setattr_dax_invalidate() (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/xfs: Combine xfs_diflags_to_linux() and xfs_diflags_to_iflags() (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/xfs: Create function xfs_inode_should_enable_dax() (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/xfs: Make DAX mount option a tri-state (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/xfs: Change XFS_MOUNT_DAX to XFS_MOUNT_DAX_ALWAYS (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/xfs: Remove unnecessary initialization of i_rwsem (Eric Sandeen) [1838876 1854346 1838344]
+- [documentation] Documentation/dax: Update DAX enablement for ext4 (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/ext4: Introduce DAX inode flag (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/ext4: Remove jflag variable (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/ext4: Make DAX mount option a tri-state (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/ext4: Only change S_DAX on inode load (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/ext4: Update ext4_should_use_dax() (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/ext4: Change EXT4_MOUNT_DAX to EXT4_MOUNT_DAX_ALWAYS (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/ext4: Narrow scope of DAX check in setflags (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs: Introduce DCACHE_DONTCACHE (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs: Lift XFS_IDONTCACHE to the VFS layer (Eric Sandeen) [1838876 1854346 1838344]
+- [documentation] Documentation/dax: Update Usage section (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs/stat: Define DAX statx attribute (Eric Sandeen) [1838876 1854346 1838344]
+- [block] fs: Remove unneeded IS_DAX() check in io_is_direct() (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dax: Move mandatory ->zero_page_range() check in alloc_dax() (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] dax, iomap: Add helper dax_iomap_zero() to zero a range (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] dax: Use new dax zero page method for zeroing a page (Eric Sandeen) [1838876 1854346 1838344]
+- [md] dm,dax: Add dax zero_page_range operation (Eric Sandeen) [1838876 1854346 1838344]
+- [s390] s390, dcssblk, dax: Add dax zero_page_range operation to dcssblk driver (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dax, pmem: Add a dax operation zero_page_range (Eric Sandeen) [1838876 1854346 1838344]
+- [nvdimm] pmem: Add functions for reading/writing page to/from pmem (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] fs: Constify vma argument to vma_is_dax (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] dax: pass NOWAIT flag to iomap_apply (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dax: Get rid of fs_dax_get_by_host() helper (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] dax: Pass dax_dev instead of bdev to dax_writeback_mapping_range() (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] dax: Fix alloc_dax_region() compile warning (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] xfs: disable map_sync for async flush (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] ext4: disable map_sync for async flush (Eric Sandeen) [1838876 1854346 1838344]
+- [include] dax: check synchronous mapping is supported (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] libnvdimm: add dax_dev sync flag (Eric Sandeen) [1838876 1854346 1838344]
+- [nvdimm] libnvdimm: nd_region flush callback support (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] vfs: only allow FSSETXATTR to set DAX flag on files and dirs (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] vfs: teach vfs_ioc_fssetxattr_check to check extent size hints (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] vfs: teach vfs_ioc_fssetxattr_check to check project id info (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] vfs: create a generic checking function for FS_IOC_FSSETXATTR (Eric Sandeen) [1838876 1854346 1838344]
+- [fs] vfs: create a generic checking and prep function for FS_IOC_SETFLAGS (Eric Sandeen) [1838876 1854346 1838344]
+- [dax] drivers/dax: Allow to include DEV_DAX_PMEM as builtin (Eric Sandeen) [1838876 1854346 1838344]
+- [netdrv] net: intel: Remove in_interrupt() warnings (Corinna Vinschen) [1838746]
+- [netdrv] igb: read PBA number from flash (Corinna Vinschen) [1838746]
+- [netdrv] intel-ethernet: clean up W=1 warnings in kdoc (Corinna Vinschen) [1838746]
+- [netdrv] treewide: Use fallthrough pseudo-keyword (Corinna Vinschen) [1838746]
+- [netdrv] igb: use eth_zero_addr() to clear mac address (Corinna Vinschen) [1838746]
+- [netdrv] igb: Remove unnecessary usages of memset (Corinna Vinschen) [1838746]
+- [netdrv] igb: reinit_locked() should be called with rtnl_lock (Corinna Vinschen) [1838746]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Corinna Vinschen) [1838746]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Corinna Vinschen) [1838746]
+- [netdrv] igb: make igb_set_fc_watermarks() return void (Corinna Vinschen) [1838746]
+- [netdrv] igb: Report speed and duplex as unknown when device is runtime suspended (Corinna Vinschen) [1838746]
+- [netdrv] igb: convert to use i2c_new_client_device() (Corinna Vinschen) [1838746]
+- [net] Bluetooth: Allow suspend even when preparation has failed (Gopal Tiwari) [1881485]
+- [net] Bluetooth: Check scan state before disabling during suspend (Gopal Tiwari) [1881485]
+- [fs] fuse: fix the ->direct_IO() treatment of iov_iter (Miklos Szeredi) [1875608]
+- [net] openvswitch: handle DNAT tuple collision (Dumitru Ceara) [1877128]
+- [net] xdp: Rename convert_to_xdp_frame in xdp_convert_buff_to_frame (Petr Oros) [1867194]
+
+* Wed Nov 25 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-253.el8]
+- [fs] NFSv4.2: fix failure to unregister shrinker (Scott Mayhew) [1897988]
+- [tools] cpupower: Provide online and offline CPU information (Diego Domingos) [1893779]
+- [net] net/smc: improve return codes for SMC-Dv2 (Claudio Imbrenda) [1731027]
+- [s390] s390/ism: fix incorrect system EID (Claudio Imbrenda) [1731027]
+- [net] net/smc: fix suppressed return code (Claudio Imbrenda) [1731027]
+- [net] net/smc: fix null pointer dereference in smc_listen_decline() (Claudio Imbrenda) [1731027]
+- [net] net/smc: fix invalid return code in smcd_new_buf_create() (Claudio Imbrenda) [1731027]
+- [net] net/smc: fix valid DMBE buffer sizes (Claudio Imbrenda) [1731027]
+- [net] net/smc: fix use-after-free of delayed events (Claudio Imbrenda) [1731027]
+- [net] net/smc: restore smcd_version when all ISM V2 devices failed to init (Claudio Imbrenda) [1731027]
+- [net] net/smc: cleanup buffer usage in smc_listen_work() (Claudio Imbrenda) [1731027]
+- [net] net/smc: consolidate unlocking in same function (Claudio Imbrenda) [1731027]
+- [net] net/smc: use an array to check fields in system EID (Claudio Imbrenda) [1731027]
+- [net] net/smc: send ISM devices with unique chid in CLC proposal (Claudio Imbrenda) [1731027]
+- [net] net/smc: CLC decline - V2 enhancements (Claudio Imbrenda) [1731027]
+- [net] net/smc: introduce CLC first contact extension (Claudio Imbrenda) [1731027]
+- [net] net/smc: CLC accept / confirm V2 (Claudio Imbrenda) [1731027]
+- [net] net/smc: determine accepted ISM devices (Claudio Imbrenda) [1731027]
+- [net] net/smc: build and send V2 CLC proposal (Claudio Imbrenda) [1731027]
+- [net] net/smc: determine proposed ISM devices (Claudio Imbrenda) [1731027]
+- [net] net/smc: introduce list of pnetids for Ethernet devices (Claudio Imbrenda) [1731027]
+- [net] net/smc: introduce CHID callback for ISM devices (Claudio Imbrenda) [1731027]
+- [net] net/smc: introduce System Enterprise ID (SEID) (Claudio Imbrenda) [1731027]
+- [net] net/smc: prepare for more proposed ISM devices (Claudio Imbrenda) [1731027]
+- [net] net/smc: split CLC confirm/accept data to be sent (Claudio Imbrenda) [1731027]
+- [net] net/smc: separate find device functions (Claudio Imbrenda) [1731027]
+- [net] net/smc: CLC header fields renaming (Claudio Imbrenda) [1731027]
+- [net] net/smc: remove constant and introduce helper to check for a pnet id (Claudio Imbrenda) [1731027]
+- [netdrv] vmxnet3: fix cksum offload issues for non-udp tunnels (Cathy Avery) [1868451]
+- [netdrv] vmxnet3: use correct tcp hdr length when packet is encapsulated (Cathy Avery) [1868451]
+- [scsi] scsi: vmw_pvscsi: Use true, false for adapter->use_msg (Cathy Avery) [1895014]
+- [scsi] scsi: vmw_pvscsi: Silence dma mapping errors (Cathy Avery) [1895014]
+- [scsi] scsi: vmw_pvscsi: Fix swiotlb operation (Cathy Avery) [1895014]
+- [scsi] scsi: vmw_pscsi: use sg helper to iterate over scatterlist (Cathy Avery) [1895014]
+- [scsi] Revert "vmw_pvscsi: Fixed to work with SG_CHAIN" (Cathy Avery) [1895014]
+- [scsi] scsi: vmw_pscsi: switch to generic DMA API (Cathy Avery) [1895014]
+- [netdrv] mdiobus: Disable preemption upon u64_stats update (Petr Oros) [1889849]
+- [net] u64_stats: Document writer non-preemptibility requirement (Petr Oros) [1889849]
+- [netdrv] phy: fixed_phy: Remove unused seqcount (Petr Oros) [1889849]
+- [net] net/smc: fix double kfree in smc_listen_work() (Claudio Imbrenda) [1847444]
+- [net] net/smc: check variable before dereferencing in smc_close.c (Claudio Imbrenda) [1847444]
+- [net] net/smc: use separate work queues for different worker types (Claudio Imbrenda) [1847444]
+- [net] net/smc: use the retry mechanism for netlink messages (Claudio Imbrenda) [1847444]
+- [net] net/smc: immediate freeing in smc_lgr_cleanup_early() (Claudio Imbrenda) [1847444]
+- [net] net/smc: reduce smc_listen_decline() calls (Claudio Imbrenda) [1847444]
+- [net] net/smc: improve server ISM device determination (Claudio Imbrenda) [1847444]
+- [net] net/smc: common routine for CLC accept and confirm (Claudio Imbrenda) [1847444]
+- [net] net/smc: dynamic allocation of CLC proposal buffer (Claudio Imbrenda) [1847444]
+- [net] net/smc: introduce better field names (Claudio Imbrenda) [1847444]
+- [net] net/smc: reduce active tcp_listen workers (Claudio Imbrenda) [1847444]
+- [net] net/smc: fix sock refcounting in case of termination (Claudio Imbrenda) [1847444]
+- [net] net/smc: reset sndbuf_desc if freed (Claudio Imbrenda) [1847444]
+- [net] net/smc: fix toleration of fake add_link messages (Claudio Imbrenda) [1847444]
+- [net] net/smc: Prevent kernel-infoleak in __smc_diag_dump() (Claudio Imbrenda) [1847444]
+- [s390] s390/ism: fix error return code in ism_probe() (Claudio Imbrenda) [1847444]
+- [s390] s390/zcrypt: Introduce Failure Injection feature (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: move ap_msg param one level up the call chain (Philipp Rudo) [1851124]
+- [s390] s390/ap/zcrypt: revisit ap and zcrypt error handling (Philipp Rudo) [1851124]
+- [s390] s390/ap: Support AP card SCLP config and deconfig operations (Philipp Rudo) [1851124]
+- [s390] s390/sclp: Add support for SCLP AP adapter config/deconfig (Philipp Rudo) [1851124]
+- [s390] s390/ap: add card/queue deconfig state (Philipp Rudo) [1851124]
+- [s390] s390/ap: add error response code field for ap queue devices (Philipp Rudo) [1851124]
+- [s390] s390/ap: split ap queue state machine state from device state (Philipp Rudo) [1851124]
+- [crypto] s390/zcrypt: New config switch CONFIG_ZCRYPT_DEBUG (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: introduce msg tracking in zcrypt functions (Philipp Rudo) [1851124]
+- [s390] s390/ap: rework crypto config info and default domain code (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: provide cex4 cca sysfs attributes for cex3 (Philipp Rudo) [1851124]
+- [s390] s390/ap: rename and clarify ap state machine related stuff (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: split ioctl function into smaller code units (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: code beautification and struct field renames (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: fix smatch warnings (Philipp Rudo) [1851124]
+- [s390] s390/ap: introduce new ap function ap_get_qdev() (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: replace snprintf/sprintf with scnprintf (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: Use scnprintf() for avoiding potential buffer overflow (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: Support for CCA protected key block version 2 (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: fix card and queue total counter wrap (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: move ap device reset from bus to driver code (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: Fix CCA cipher key gen with clear key value function (Philipp Rudo) [1851124]
+- [s390] s390/zcrypt: handle new reply code FILTERED_BY_HYPERVISOR (Philipp Rudo) [1851124]
+- [fs] NFSv4: Wait for stateid updates after CLOSE/OPEN_DOWNGRADE (Benjamin Coddington) [1888612]
+- [fs] NFSv4.x recover from pre-mature loss of openstateid (Benjamin Coddington) [1888612]
+- [fs] NFSv4: Handle NFS4ERR_OLD_STATEID in CLOSE/OPEN_DOWNGRADE (Benjamin Coddington) [1888612]
+- [hv] hv: vmbus: Add timeout to vmbus_wait_for_unload (Mohammed Gamal) [1888980]
+- [net] sched: act_gate: Unlock ->tcfa_lock in tc_setup_flow_action() (Ivan Vecera) [1874071]
+- [net] sched: act_ct: Fix adding udp port mangle operation (Ivan Vecera) [1874071]
+- [net] sched: Fix suspicious RCU usage while accessing tcf_tunnel_info (Ivan Vecera) [1874071]
+- [net] sched: get rid of qdisc->padded (Ivan Vecera) [1874071]
+- [net] sched: check error pointer in tcf_dump_walker() (Ivan Vecera) [1874071]
+- [net] sched: remove a redundant goto chain check (Ivan Vecera) [1874071]
+- [net] sched: cls_u32: Replace one-element array with flexible-array member (Ivan Vecera) [1874071]
+- [net] sched: commit action insertions together (Ivan Vecera) [1874071]
+- [net] sched: defer tcf_idr_insert() in tcf_action_init_1() (Ivan Vecera) [1874071]
+- [net] sched: Remove unused function qdisc_queue_drop_head() (Ivan Vecera) [1874071]
+- [net] sched: taprio: Fix allowing too small intervals (Ivan Vecera) [1874071]
+- [net] sched: sch_generic: aviod concurrent reset and enqueue op for lockless qdisc (Ivan Vecera) [1874071]
+- [net] sched: skip an unnecessay check (Ivan Vecera) [1874071]
+- [net] sched: act_ife: load meta modules before tcf_idr_check_alloc() (Ivan Vecera) [1874071]
+- [net] sched: fix error path in red_init() (Ivan Vecera) [1874071]
+- [net] sched: taprio: Fix using wrong queues in gate mask (Ivan Vecera) [1874071]
+- [net] sched: Use fallthrough pseudo-keyword (Ivan Vecera) [1874071]
+- [net] netlink: consistently use NLA_POLICY_EXACT_LEN() (Ivan Vecera) [1874071]
+- [net] sched: act_ct: fix miss set mru for ovs after defrag in act_ct (Ivan Vecera) [1874071]
+- [net] sched: cls_u32: Use struct_size() helper (Ivan Vecera) [1874071]
+- [net] sched: act_pedit: Use flex_array_size() helper in memcpy() (Ivan Vecera) [1874071]
+- [net] sched: initialize timer earlier in red_init() (Ivan Vecera) [1874071]
+- [net] sched: cls_flower: Add hash info to flow classification (Ivan Vecera) [1874071]
+- [net] flow_dissector: add packet hash dissection (Ivan Vecera) [1874071]
+- [net] sched: sch_api: add missing rcu read lock to silence the warning (Ivan Vecera) [1874071]
+- [tools] tc-testing: Add tdc to kselftests (Ivan Vecera) [1874071]
+- [net] sched: Do not drop root lock in tcf_qevent_handle() (Ivan Vecera) [1874071]
+- [net] sched: kerneldoc fixes (Ivan Vecera) [1874071]
+- [net] sched: Pass qdisc reference in struct flow_block_offload (Ivan Vecera) [1874071]
+- [net] sched: Use fallthrough pseudo-keyword (Ivan Vecera) [1874071]
+- [net] sched: Allow changing default qdisc to FQ-PIE (Ivan Vecera) [1874071]
+- [net] qos: police action offloading parameter 'burst' change to the original value (Ivan Vecera) [1874071]
+- [tools] selftests: forwarding: Add a RED test for SW datapath (Ivan Vecera) [1874071]
+- [net] sched: sch_red: Add qevents "early_drop" and "mark" (Ivan Vecera) [1874071]
+- [net] sched: sch_red: Split init and change callbacks (Ivan Vecera) [1874071]
+- [net] sched: Introduce helpers for qevent blocks (Ivan Vecera) [1874071]
+- [net] sched: sch_cake: add RFC 8622 LE PHB support to CAKE diffserv handling (Ivan Vecera) [1874071]
+- [net] qos: police action add index for tc flower offloading (Ivan Vecera) [1874071]
+- [net] qos: add tc police offloading action with max frame size limit (Ivan Vecera) [1874071]
+- [net] sched: tcindex_change: Remove redundant null check (Ivan Vecera) [1874071]
+- [net] sched: Remove redundant skb null check (Ivan Vecera) [1874071]
+- [net] sched: Remove redundant condition in qdisc_graft (Ivan Vecera) [1874071]
+- [net] sched: cls_u32: Use struct_size() in kzalloc() (Ivan Vecera) [1874071]
+- [net] sched: taprio: Use struct_size() in kzalloc() (Ivan Vecera) [1874071]
+- [net] vlan: consolidate VLAN parsing code and limit max parsing depth (Ivan Vecera) [1874071]
+- [net] flow_offload: Move rhashtable inclusion to the source file (Ivan Vecera) [1874071]
+- [net] sched: act_ct: fix restore the qdisc_skb_cb after defrag (Ivan Vecera) [1874071]
+- [net] sched: fix a memory leak in atm_tc_init() (Ivan Vecera) [1874071]
+- [net] sched: act_ct: add miss tcf_lastuse_update. (Ivan Vecera) [1874071]
+- [net] sched: consistently handle layer3 header accesses in the presence of VLANs (Ivan Vecera) [1874071]
+- [net] tunnel: Propagate ECT(1) when decapsulating as recommended by RFC6040 (Ivan Vecera) [1874071]
+- [net] sched: sch_cake: fix a few style nits (Ivan Vecera) [1874071]
+- [net] sched: sch_cake: don't call diffserv parsing code when it is not needed (Ivan Vecera) [1874071]
+- [net] sched: sch_cake: don't try to reallocate or unshare skb unconditionally (Ivan Vecera) [1874071]
+- [tools] tc-testing: avoid action cookies with odd length. (Ivan Vecera) [1874071]
+- [net] sched: Add MODULE_DESCRIPTION entries to network modules (Ivan Vecera) [1874071]
+- [tools] tc-testing: update geneve options match in tunnel_key unit tests (Ivan Vecera) [1874071]
+- [net] flow_offload: fix flow_indr_dev_unregister path (Ivan Vecera) [1874071]
+- [net] flow_offload: use flow_indr_block_cb_alloc/remove function (Ivan Vecera) [1874071]
+- [net] flow_offload: add flow_indr_block_cb_alloc/remove function (Ivan Vecera) [1874071]
+- [net] sched: act_gate: fix configuration of the periodic timer (Ivan Vecera) [1874071]
+- [net] sched: act_gate: fix NULL dereference in tcf_gate_init() (Ivan Vecera) [1874071]
+- [net] flow_offload: remove indirect flow_block declarations leftover (Ivan Vecera) [1874071]
+- [net] sched: export __netdev_watchdog_up() (Ivan Vecera) [1874071]
+- [net] sched: act_ct: add nat mangle action only for NAT-conntrack (Ivan Vecera) [1874071]
+- [net] sched: sch_cake: Take advantage of skb->hash where appropriate (Ivan Vecera) [1874071]
+- [net] sched: fix a couple of splats in the error path of tfc_gate_init() (Ivan Vecera) [1874071]
+- [net] sched: get rid of unnecessary dev_qdisc_reset() (Ivan Vecera) [1874071]
+- [net] sched: avoid resetting active qdisc for multiple times (Ivan Vecera) [1874071]
+- [net] sched: add a tracepoint for qdisc creation (Ivan Vecera) [1874071]
+- [net] sched: add tracepoints for qdisc_reset() and qdisc_destroy() (Ivan Vecera) [1874071]
+- [net] sched: use qdisc_reset() in qdisc_destroy() (Ivan Vecera) [1874071]
+- [net] sched: fix infinite loop in sch_fq_pie (Ivan Vecera) [1874071]
+- [net] sched: fix reporting the first-time use timestamp (Ivan Vecera) [1874071]
+- [net] tracing: Fix header include guards in trace event headers (Ivan Vecera) [1874071]
+- [netdrv] ipvlan: fix device features (Davide Caratti) [1892621]
+- [netdrv] ipvlan: consolidate TSO flags using NETIF_F_ALL_TSO (Davide Caratti) [1892621]
+- [netdrv] ipvlan: set hw_enc_features like macvlan (Davide Caratti) [1892621]
+- [tools] ACPI: Use valid link to the ACPI specification (David Arcari) [1857138]
+- [tools] cpupower: Replace HTTP links with HTTPS ones (David Arcari) [1857138]
+- [tools] cpupower: Fix NULL but dereferenced coccicheck errors (David Arcari) [1857138]
+- [tools] cpupower: Fix comparing pointer to 0 coccicheck warns (David Arcari) [1857138]
+- [tools] cpupower: Remove unneeded semicolon (David Arcari) [1857138]
+- [tools] cpupower: .gitignore: add SPDX License Identifier (David Arcari) [1857138]
+- [tools] cpupower: avoid multiple definition with gcc -fno-common (David Arcari) [1857138]
+- [tools] cpupower: Revert library ABI changes from commit ae2917093fb60bdc1ed3e (David Arcari) [1857138]
+- [tools] cpupower: ToDo: Update ToDo with ideas for per_cpu_schedule handling (David Arcari) [1857138]
+- [tools] tools/power/cpupower: Fix initializer override in hsw_ext_cstates (David Arcari) [1857138]
+- [tools] cpupower: update German translation (David Arcari) [1857138]
+- [tools] tools/power/cpupower: fix 64bit detection when cross-compiling (David Arcari) [1857138]
+- [tools] cpupower: Add missing newline at end of file (David Arcari) [1857138]
+- [tools] cpupower: Replace GPLv2 boilerplate/reference with SPDX - rule 285 (David Arcari) [1857138]
+- [tools] cpupower: correct spelling of interval (David Arcari) [1857138]
+- [tools] cpupower: Replace GPLv2 boilerplate/reference with SPDX - rule 167 (David Arcari) [1857138]
+- [tools] cpupower: Replace GPLv2 boilerplate/reference with SPDX - rule 166 (David Arcari) [1857138]
+- [tools] cpupower: Replace GPLv2 boilerplate/reference with SPDX - rule 156 (David Arcari) [1857138]
+- [tools] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 155 (David Arcari) [1857138]
+- [tools] cpupower: Add SPDX license identifier for more missed files (David Arcari) [1857138]
+- [tools] tools/power/cpupower: Display boost frequency separately (David Arcari) [1857138]
+- [tools] cpupower : Auto-completion for cpupower tool (David Arcari) [1857138]
+- [tools] tools/power/cpupower: fix compilation with STATIC=true (David Arcari) [1857138]
+- [tools] cpupower: remove stringop-truncation waring (David Arcari) [1857138]
+- [tools] cpupower: convert ISO_8859-1 text comments to utf-8 (David Arcari) [1857138]
+- [x86] x86/resctrl: Support wider MBM counters (Puneet Sethi) [1834658]
+- [x86] x86/resctrl: Support CPUID enumeration of MBM counter width (Puneet Sethi) [1834658]
+- [x86] x86/resctrl: Maintain MBM counter width per resource (Puneet Sethi) [1834658]
+- [x86] x86/resctrl: Query LLC monitoring properties once during boot (Puneet Sethi) [1834658]
+- [x86] x86/resctrl: Remove unnecessary RMID checks (Puneet Sethi) [1834658]
+- [x86] x86/cpu: Move resctrl CPUID code to resctrl/ (Puneet Sethi) [1834658]
+- [x86] x86/resctrl: Rename asm/resctrl_sched.h to asm/resctrl.h (Puneet Sethi) [1834658]
+- [x86] x86/resctrl: Preserve CDP enable over CPU hotplug (Puneet Sethi) [1834658]
+- [net] af_packet: TPACKET_V3: fix fill status rwlock imbalance (Ivan Vecera) [1889829]
+- [net] packet: tpacket_rcv: do not increment ring index on drop (Ivan Vecera) [1889829]
+- [net] af_packet: TPACKET_V3: replace busy-wait loop (Ivan Vecera) [1889829]
+- [net] SUNRPC: Fix svc_flush_dcache() (Scott Mayhew) [1888214]
+- [fs] pNFS/flexfiles: Be consistent about mirror index types (Scott Mayhew) [1888214]
+- [fs] pNFS/flexfiles: Ensure we initialise the mirror bsizes correctly on read (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: fix client's attribute cache management for copy_file_range (Scott Mayhew) [1888214]
+- [fs] nfs: Fix security label length not being reset (Scott Mayhew) [1888214]
+- [net] SUNRPC: stop printk reading past end of string (Scott Mayhew) [1888214]
+- [fs] NFS: Zero-stateid SETATTR should first return delegation (Scott Mayhew) [1888214]
+- [fs] NFSv4.1 handle ERR_DELAY error reclaiming locking state on delegation recall (Scott Mayhew) [1888214]
+- [net] SUNRPC: remove duplicate include (Scott Mayhew) [1888214]
+- [fs] nfsd: fix oops on mixed NFSv4/NFSv3 client access (Scott Mayhew) [1888214]
+- [fs] NFS: Fix flexfiles read failover (Scott Mayhew) [1888214]
+- [fs] fs: nfs: delete repeated words in comments (Scott Mayhew) [1888214]
+- [fs] rpc_pipefs: convert comma to semicolon (Scott Mayhew) [1888214]
+- [fs] NFS: Don't return layout segments that are in use (Scott Mayhew) [1888214]
+- [fs] NFS: Don't move layouts to plh_return_segs list while in use (Scott Mayhew) [1888214]
+- [fs] NFS: Add layout segment info to pnfs read/write/commit tracepoints (Scott Mayhew) [1888214]
+- [fs] NFS: Add tracepoints for layouterror and layoutstats (Scott Mayhew) [1888214]
+- [fs] NFS: Report the stateid + status in trace_nfs4_layoutreturn_on_close() (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: xattr cache: get rid of cache discard work queue (Scott Mayhew) [1888214]
+- [fs] NFS: remove redundant initialization of variable result (Scott Mayhew) [1888214]
+- [net] svcrdma: CM event handler clean up (Scott Mayhew) [1888214]
+- [net] svcrdma: Remove transport reference counting (Scott Mayhew) [1888214]
+- [net] svcrdma: Fix another Receive buffer leak (Scott Mayhew) [1888214]
+- [trace] SUNRPC: Refresh the show_rqstp_flags() macro (Scott Mayhew) [1888214]
+- [fs] nfsd: netns.h: delete a duplicated word (Scott Mayhew) [1888214]
+- [net] sunrpc: destroy rpc_inode_cachep after unregister_filesystem (Scott Mayhew) [1888214]
+- [fs] freezer: Add unsafe version of freezable_schedule_timeout_interruptible() for NFS (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: add client side xattr caching (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: hook in the user extended attribute handlers (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: add the extended attribute proc functions (Scott Mayhew) [1888214]
+- [fs] nfs: make the buf_to_pages_noslab function available to the nfs code (Scott Mayhew) [1888214]
+- [fs] nfs: define and use the NFS_INO_INVALID_XATTR flag (Scott Mayhew) [1888214]
+- [fs] NFS: Update symbolic flags displayed by trace events (Scott Mayhew) [1888214]
+- [fs] nfs: modify update_changeattr to deal with regular files (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: query the extended attribute access bits (Scott Mayhew) [1888214]
+- [fs] nfs: define nfs_access_get_cached function (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: add client side XDR handling for extended attributes (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: query the server for extended attribute support (Scott Mayhew) [1888214]
+- [fs] NFSv4.2: define limits and sizes for user xattr handling (Scott Mayhew) [1888214]
+- [include] nfs: add client side only definitions for user xattrs (Scott Mayhew) [1888214]
+- [fs] nfsd: Use seq_putc() in two functions (Scott Mayhew) [1888214]
+- [net] svcrdma: Display chunk completion ID when posting a rw_ctxt (Scott Mayhew) [1888214]
+- [net] svcrdma: Record send_ctxt completion ID in trace_svcrdma_post_send() (Scott Mayhew) [1888214]
+- [net] svcrdma: Introduce Send completion IDs (Scott Mayhew) [1888214]
+- [net] svcrdma: Record Receive completion ID in svc_rdma_decode_rqst (Scott Mayhew) [1888214]
+- [net] svcrdma: Introduce Receive completion IDs (Scott Mayhew) [1888214]
+- [trace] svcrdma: Introduce infrastructure to support completion IDs (Scott Mayhew) [1888214]
+- [net] svcrdma: Add common XDR encoders for RDMA and Read segments (Scott Mayhew) [1888214]
+- [net] svcrdma: Add common XDR decoders for RDMA and Read segments (Scott Mayhew) [1888214]
+- [net] SUNRPC: Add helpers for decoding list discriminators symbolically (Scott Mayhew) [1888214]
+- [include] svcrdma: Remove declarations for functions long removed (Scott Mayhew) [1888214]
+- [net] svcrdma: Clean up trace_svcrdma_send_failed() tracepoint (Scott Mayhew) [1888214]
+- [net] svcrdma: Consolidate send_error helper functions (Scott Mayhew) [1888214]
+- [net] svcrdma: Make svc_rdma_send_error_msg() a global function (Scott Mayhew) [1888214]
+- [net] svcrdma: Eliminate return value for svc_rdma_send_error_msg() (Scott Mayhew) [1888214]
+- [net] svcrdma: Add a @status parameter to svc_rdma_send_error_msg() (Scott Mayhew) [1888214]
+- [net] svcrdma: Add @rctxt parameter to svc_rdma_send_error() functions (Scott Mayhew) [1888214]
+- [net] svcrdma: Remove save_io_pages() call from send_error_msg() (Scott Mayhew) [1888214]
+- [net] svcrdma: Fix page leak in svc_rdma_recv_read_chunk() (Scott Mayhew) [1888214]
+- [net] SUNRPC: Augment server-side rpcgss tracepoints (Scott Mayhew) [1888214]
+- [fs] nfsd: add fattr support for user extended attributes (Scott Mayhew) [1888214]
+- [fs] nfsd: implement the xattr functions and en/decode logic (Scott Mayhew) [1888214]
+- [fs] nfsd: add structure definitions for xattr requests / responses (Scott Mayhew) [1888214]
+- [fs] nfsd: take xattr bits into account for permission checks (Scott Mayhew) [1888214]
+- [fs] nfsd: define xattr functions to call into their vfs counterparts (Scott Mayhew) [1888214]
+- [fs] nfsd: add defines for NFSv4.2 extended attribute support (Scott Mayhew) [1888214]
+- [fs] nfsd: split off the write decode code into a separate function (Scott Mayhew) [1888214]
+- [fs] xattr: add a function to check if a namespace is supported (Scott Mayhew) [1888214]
+- [fs] xattr: break delegations in {set, remove}xattr (Scott Mayhew) [1888214]
+- [uapi] nfs, nfsd: NFSv4.2 extended attribute protocol definitions (Scott Mayhew) [1888214]
+- [fs] pNFS/flexfiles: The mirror count could depend on the layout segment range (Scott Mayhew) [1888214]
+- [fs] pNFS/flexfiles: Clean up redundant calls to pnfs_put_lseg() (Scott Mayhew) [1888214]
+- [fs] NFS: Allow applications to speed up readdir+statx() using AT_STATX_DONT_SYNC (Scott Mayhew) [1888214]
+- [include] NFS: Replace zero-length array with flexible-array (Scott Mayhew) [1888214]
+- [include] nfs4: Remove unneeded semicolon (Scott Mayhew) [1888214]
+- [tools] selftests/livepatch: adopt to newer sysctl error format (Yannick Cote) [1869880]
+- [tools] selftests/livepatch: Use "comm" instead of "diff" for dmesg (Yannick Cote) [1869880]
+- [tools] selftests/livepatch: add test delimiter to dmesg (Yannick Cote) [1869880]
+- [tools] selftests/livepatch: refine dmesg 'taints' in dmesg comparison (Yannick Cote) [1869880]
+- [tools] selftests/livepatch: Don't clear dmesg when running tests (Yannick Cote) [1869880]
+- [lib] selftests/livepatch: fix mem leaks in test-klp-shadow-vars (Yannick Cote) [1869880]
+- [lib] selftests/livepatch: more verification in test-klp-shadow-vars (Yannick Cote) [1869880]
+- [lib] selftests/livepatch: rework test-klp-shadow-vars (Yannick Cote) [1869880]
+- [lib] selftests/livepatch: simplify test-klp-callbacks busy target tests (Yannick Cote) [1869880]
+- [tools] selftests: Install settings files to fix TIMEOUT failures (Yannick Cote) [1869880]
+- [cpufreq] cpufreq: intel_pstate: Fix intel_pstate_get_hwp_max() for turbo disabled (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Free memory only when turning off (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Add ->offline and ->online callbacks (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Tweak the EPP sysfs interface (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Update cached EPP in the active mode (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Refuse to turn off with HWP enabled (Puneet Sethi) [1881199]
+- [documentation] Documentation: fix pm/intel_pstate build warning and wording (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Implement passive mode with HWP enabled (Puneet Sethi) [1881199]
+- [tools] tools arch x86: Sync the msr-index.h copy with the kernel sources (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Fix cpuinfo_max_freq when MSR_TURBO_RATIO_LIMIT is 0 (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Fix EPP setting via sysfs in active mode (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Rearrange the storing of new EPP values (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Avoid enabling HWP if EPP is not supported (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Clean up aperf_mperf_shift description (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Supply struct attribute description for get_aperf_mperf_shift() (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Fix static checker warning for epp variable (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Allow raw energy performance preference value (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Allow enable/disable energy efficiency (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Add one more OOB control bit (Puneet Sethi) [1881199]
+- [cpufreq] cpufreq: intel_pstate: Only mention the BIOS disabling turbo mode once (Puneet Sethi) [1881199]
+- [documentation] Documentation: intel_pstate: update links for references (Puneet Sethi) [1881199]
+- [documentation] Documentation: PM: Unify copyright notices (Puneet Sethi) [1881199]
+- [documentation] Documentation: PM: Add SPDX license tags to multiple files (Puneet Sethi) [1881199]
+- [documentation] cpufreq: intel_pstate: Documentation: Add references sections (Puneet Sethi) [1881199]
+- [documentation] Documentation: intel_pstate: Clarify coordination of P-State limits (Puneet Sethi) [1881199]
+- [documentation] Documentation: intel_pstate: Add base_frequency information (Puneet Sethi) [1881199]
+- [i2c] i2c: ismt: Remove call to memset after dmam_alloc_coherent (Tony Camuso) [1875395]
+- [i2c] i2c: ismt: Add support for Intel Cedar Fork (Tony Camuso) [1875395]
+- [documentation] docs: net: fm10k: add documentation for fm10k driver (Vladis Dronov) [1838728]
+- [netdrv] net: fm10k: reject unsupported coalescing params (Vladis Dronov) [1838728]
+- [netdrv] intel: Replace zero-length array with flexible-array member (Vladis Dronov) [1838728]
+- [netdrv] net: Use skb accessors in network drivers (Vladis Dronov) [1838728]
+- [netdrv] hdlc_ppp: add range checks in ppp_cp_parse_cr() (Guillaume Nault) [1882082] {CVE-2020-25643}
+
+* Sat Nov 21 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-252.el8]
+- [pinctrl] pinctrl: sunrisepoint: Modify COMMUNITY macros to be consistent (David Arcari) [1783488]
+- [pinctrl] pinctrl: cannonlake: Modify COMMUNITY macros to be consistent (David Arcari) [1783488]
+- [pinctrl] pinctrl: tigerlake: Fix register offsets for TGL-H variant (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Update header block to reflect direct dependencies (David Arcari) [1783488]
+- [pinctrl] pinctrl: baytrail: Switch to use intel_pinctrl_get_soc_data() (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Extract intel_pinctrl_get_soc_data() helper for wider use (David Arcari) [1783488]
+- [pinctrl] pinctrl: baytrail: Use fallthrough pseudo-keyword (David Arcari) [1783488]
+- [pinctrl] pinctrl: baytrail: Fix pin being driven low for a while on gpiod_get(..., GPIOD_OUT_HIGH) (David Arcari) [1783488]
+- [pinctrl] pinctrl: baytrail: Drop no-op ACPI_PTR() call (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Make use of for_each_requested_gpio_in_range() (David Arcari) [1783488]
+- [include] gpiolib: Introduce for_each_requested_gpio_in_range() macro (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Protect IO in few call backs by lock (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Split intel_config_get() to three functions (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Drop the only label in the code for consistency (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Get rid of redundant 'else' in intel_config_set_debounce() (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Make use of IRQ_RETVAL() (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Reduce scope of the lock (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Disable input and output buffer when switching to GPIO (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Allow drivers to define ACPI address space ID (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Allow drivers to define total amount of IRQs per community (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Move npins closer to pin_base in struct intel_community (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Update description in struct intel_community (David Arcari) [1783488]
+- [pinctrl] pinctrl: baytrail: Use platform_get_irq_optional() explicitly (David Arcari) [1783488]
+- [pinctrl] pinctrl: intel: Introduce new flag to force GPIO base to be 0 (David Arcari) [1783488]
+- [pinctrl] pinctrl: tigerlake: Use generic flag for special GPIO base treatment (David Arcari) [1783488]
+- [pinctrl] pinctrl: icelake: Use generic flag for special GPIO base treatment (David Arcari) [1783488]
+- [pinctrl] pinctrl: cannonlake: Use generic flag for special GPIO base treatment (David Arcari) [1783488]
+- [pinctrl] pinctrl: baytrail: Enable pin configuration setting for GPIO chip (David Arcari) [1783488]
+- [pinctrl] pinctrl: sunrisepoint: Fix PAD lock register offset for SPT-H (David Arcari) [1783488]
+- [pinctrl] pinctrl: baytrail: Mark expected switch fall-throughs (David Arcari) [1783488]
+- [kernel] mm: disable proactive compaction by default (Rafael Aquini) [1848427]
+- [mm] mm: use unsigned types for fragmentation score (Rafael Aquini) [1848427]
+- [mm] mm: fix compile error due to COMPACTION_HPAGE_ORDER (Rafael Aquini) [1848427]
+- [mm] mm: proactive compaction (Rafael Aquini) [1848427]
+- [i2c] i2c: mlxbf: I2C_MLXBF should depend on MELLANOX_PLATFORM (Alaa Hleihel) [1655741 1655709]
+- [i2c] i2c: mlxbf: Update author and maintainer email info (Alaa Hleihel) [1655741 1655709]
+- [i2c] i2c: mlxbf: Update reference clock frequency (Alaa Hleihel) [1655741 1655709]
+- [i2c] i2c: mlxbf: Remove unecessary wrapper functions (Alaa Hleihel) [1655741 1655709]
+- [i2c] i2c: mlxbf: Fix resrticted cast warning of sparse (Alaa Hleihel) [1655741 1655709]
+- [i2c] i2c: mlxbf: Add CONFIG_ACPI to guard ACPI function call (Alaa Hleihel) [1655741 1655709]
+- [documentation] dt-bindings: i2c: I2C binding for Mellanox BlueField SoC (Alaa Hleihel) [1655741 1655709]
+- [i2c] i2c: mlxbf: I2C SMBus driver for Mellanox BlueField SoC (Alaa Hleihel) [1655741 1655709]
+- [misc] misc: eeprom: ee1004: convert to i2c_new_dummy_device (Alaa Hleihel) [1655741]
+- [misc] eeprom: ee1004: Deal with nack on page selection (Alaa Hleihel) [1655741]
+- [misc] eeprom: ee1004: Move selected page detection to a separate function (Alaa Hleihel) [1655741]
+- [misc] eeprom: New ee1004 driver for DDR4 memory (Alaa Hleihel) [1655741]
+- [net] xfrm: Use correct address family in xfrm_state_find (Xin Long) [1892641]
+- [net] xfrm: clone whole liftime_cur structure in xfrm_do_migrate (Xin Long) [1892641]
+- [net] xfrm: clone XFRMA_SEC_CTX in xfrm_do_migrate (Xin Long) [1892641]
+- [net] xfrm: clone XFRMA_REPLAY_ESN_VAL in xfrm_do_migrate (Xin Long) [1892641]
+- [net] xfrm: clone XFRMA_SET_MARK in xfrm_do_migrate (Xin Long) [1892641]
+- [net] ip_vti: Fix unused variable warning (Xin Long) [1892641]
+- [net] xfrm: Make the policy hold queue work with VTI. (Xin Long) [1892641]
+- [s390] s390/qeth: delay draining the TX buffers (Philipp Rudo) [1847443]
+- [s390] s390/qeth: strictly order bridge address events (Philipp Rudo) [1847443]
+- [s390] s390/qeth: unify structs for bridge port state (Philipp Rudo) [1847443]
+- [s390] s390/qeth: copy less data from bridge state events (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't let HW override the configured port role (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't disable address events during initialization (Philipp Rudo) [1847443]
+- [s390] s390/qeth: make queue lock a proper spinlock (Philipp Rudo) [1847443]
+- [s390] s390/qeth: use to_delayed_work() (Philipp Rudo) [1847443]
+- [s390] s390/qeth: clean up qeth_l3_send_setdelmc()'s declaration (Philipp Rudo) [1847443]
+- [s390] s390/qeth: use all configured RX buffers (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't process empty bridge port events (Philipp Rudo) [1847443]
+- [s390] s390/qeth: integrate RX refill worker with NAPI (Philipp Rudo) [1847443]
+- [s390] s390/qeth: tolerate pre-filled RX buffer (Philipp Rudo) [1847443]
+- [s390] s390/qdio: remove internal polling in non-thinint path (Philipp Rudo) [1847443]
+- [s390] s390/qdio: allow to scan all 128 Input SBALs (Philipp Rudo) [1847443]
+- [s390] s390/qdio: fix statistics for 128 SBALs (Philipp Rudo) [1847443]
+- [s390] s390/qeth: constify the MPC initialization data (Philipp Rudo) [1847443]
+- [s390] s390/qeth: unify RX-mode hashtables (Philipp Rudo) [1847443]
+- [s390] s390/qeth: cleanup OAT code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: clean up a magic number in the OAT callback (Philipp Rudo) [1847443]
+- [s390] s390/qeth: use u64_to_user_ptr() in the OAT code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: clean up error handling for isolation mode cmds (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't clear the configured isolation mode (Philipp Rudo) [1847443]
+- [s390] s390/qeth: only init the isolation mode when necessary (Philipp Rudo) [1847443]
+- [s390] s390/qeth: fine-tune errno when cmds are cancelled (Philipp Rudo) [1847443]
+- [s390] s390/qeth: reject unsupported link type earlier (Philipp Rudo) [1847443]
+- [s390] s390/qeth: let isolation mode override HW offload restrictions (Philipp Rudo) [1847443]
+- [s390] s390/qeth: fix error handling for isolation mode cmds (Philipp Rudo) [1847443]
+- [s390] s390/qdio: warn about unexpected SLSB states (Philipp Rudo) [1847443]
+- [s390] s390/qdio: clean up usage of qdio_data (Philipp Rudo) [1847443]
+- [s390] s390/qdio: reduce SLSB writes during Input Queue processing (Philipp Rudo) [1847443]
+- [s390] s390/qdio: fine-tune SLSB update (Philipp Rudo) [1847443]
+- [s390] s390/cio, s390/qeth: cleanup PNSO CHSC (Philipp Rudo) [1847443]
+- [s390] s390/qdio: remove q->first_to_kick (Philipp Rudo) [1847443]
+- [s390] s390/qdio: fix up qdio_start_irq() kerneldoc (Philipp Rudo) [1847443]
+- [s390] s390/qdio: add IRQ reduction for error SBALs (Philipp Rudo) [1847443]
+- [s390] s390/qdio: refactor ACK processing for primed SBALs (Philipp Rudo) [1847443]
+- [s390] s390/qdio: simplify overlap calculation on Input refill (Philipp Rudo) [1847443]
+- [s390] s390/qeth: clean up Kconfig help text (Philipp Rudo) [1847443]
+- [s390] s390/qeth: return error when starting a reset fails (Philipp Rudo) [1847443]
+- [s390] s390/qeth: set TX IRQ marker on last buffer in a group (Philipp Rudo) [1847443]
+- [s390] s390/qeth: indicate contiguous TX buffer elements (Philipp Rudo) [1847443]
+- [s390] s390/qeth: merge TX skb mapping code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't use restricted offloads for local traffic (Philipp Rudo) [1847443]
+- [s390] s390/qeth: extract helpers for next-hop lookup (Philipp Rudo) [1847443]
+- [s390] s390/qeth: add debugfs file for local IP addresses (Philipp Rudo) [1847443]
+- [s390] s390/qeth: process local address events (Philipp Rudo) [1847443]
+- [s390] s390/qeth: keep track of LP2LP capability for csum offload (Philipp Rudo) [1847443]
+- [s390] s390/qeth: fix cancelling of TX timer on dev_close() (Philipp Rudo) [1847443]
+- [s390] s390/qdio: remove always-true condition (Philipp Rudo) [1847443]
+- [s390] s390/qdio: de-duplicate tiqdio_inbound_processing() (Philipp Rudo) [1847443]
+- [s390] s390/qdio: keep track of allocated queue count (Philipp Rudo) [1847443]
+- [s390] s390/qdio: roll-back after queue allocation error (Philipp Rudo) [1847443]
+- [s390] s390/qdio: do more fine-grained allocation roll-back (Philipp Rudo) [1847443]
+- [s390] s390/qdio: consolidate thinint init/exit (Philipp Rudo) [1847443]
+- [s390] s390/qdio: put thinint indicator after early error (Philipp Rudo) [1847443]
+- [s390] s390/qdio: tear down thinint indicator after early error (Philipp Rudo) [1847443]
+- [s390] s390/qdio: consistently restore the IRQ handler (Philipp Rudo) [1847443]
+- [s390] s390/qdio: clear DSCI early for polling drivers (Philipp Rudo) [1847443]
+- [s390] s390/qdio: inline shared_ind() (Philipp Rudo) [1847443]
+- [s390] s390/qdio: remove cdev from init_data (Philipp Rudo) [1847443]
+- [s390] s390/qdio: allow for non-contiguous SBAL array in init_data (Philipp Rudo) [1847443]
+- [s390] zfcp: inline zfcp_qdio_setup_init_data() (Philipp Rudo) [1847443]
+- [s390] s390/qdio: cleanly split alloc and establish (Philipp Rudo) [1847443]
+- [s390] s390/qeth: phase out OSN support (Philipp Rudo) [1847443]
+- [s390] s390/qeth: make OSN / OSX support configurable (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove fake_broadcast attribute (Philipp Rudo) [1847443]
+- [s390] s390/qdio: set qdio_irq->cdev at allocation time (Philipp Rudo) [1847443]
+- [s390] s390/qdio: remove unused function declarations (Philipp Rudo) [1847443]
+- [s390] s390/qeth: modernize two list helpers (Philipp Rudo) [1847443]
+- [s390] s390/qeth: keep track of fixed prio-queue configuration (Philipp Rudo) [1847443]
+- [s390] s390/qeth: fine-tune MAC Address-related errnos (Philipp Rudo) [1847443]
+- [s390] s390/qeth: add TX IRQ coalescing support for IQD devices (Philipp Rudo) [1847443]
+- [s390] s390/qeth: collect more TX statistics (Philipp Rudo) [1847443]
+- [s390] s390/qeth: clean up the mac_bits (Philipp Rudo) [1847443]
+- [s390] s390/qeth: simplify L3 dev_id logic (Philipp Rudo) [1847443]
+- [s390] s390/qdio: extend polling support to multiple queues (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove redundant if-clause in RX poll code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: split out RX poll code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: simplify RX buffer tracking (Philipp Rudo) [1847443]
+- [s390] s390/qdio: pass ISC as parameter to chsc_sadc() (Philipp Rudo) [1847443]
+- [s390] s390/qeth: use dev->reg_state (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove gratuitous NULL checks (Philipp Rudo) [1847443]
+- [s390] s390/qeth: add phys_to_virt() translation for AOB (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't report hard-coded driver version (Philipp Rudo) [1847443]
+- [s390] s390/qeth: add SW timestamping support for IQD devices (Philipp Rudo) [1847443]
+- [s390] s390/qeth: balance the TX queue selection for IQD devices (Philipp Rudo) [1847443]
+- [s390] s390/qeth: allow configuration of TX queues for IQD devices (Philipp Rudo) [1847443]
+- [s390] s390/qeth: allow configuration of TX queues for z/VM NICs (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove prio-queueing support for z/VM NICs (Philipp Rudo) [1847443]
+- [s390] s390/qeth: use memory reserves in TX slow path (Philipp Rudo) [1847443]
+- [s390] s390/qeth: use memory reserves to back RX buffers (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove VNICC callback parameter struct (Philipp Rudo) [1847443]
+- [s390] s390/qdio: add tighter controls for IRQ polling (Philipp Rudo) [1847443]
+- [s390] s390/qdio: export SSQD via debugfs (Philipp Rudo) [1847443]
+- [s390] s390/qeth: support configurable RX copybreak (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't check for IFF_UP when scheduling napi (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't re-start read cmd when IDX has terminated (Philipp Rudo) [1847443]
+- [s390] s390/qeth: reset seqnos on connection startup (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove unused cmd definitions (Philipp Rudo) [1847443]
+- [s390] s390/qeth: validate device-provided MAC address (Philipp Rudo) [1847443]
+- [s390] s390/qeth: clean up CREATE_ADDR cmd code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove dead code in qeth_l3_iqd_read_initial_mac() (Philipp Rudo) [1847443]
+- [s390] s390/qdio: simplify debugfs code (Philipp Rudo) [1847443]
+- [s390] s390/qdio: use QDIO_IRQ_STATE_INACTIVE instead of 0 (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't warn for napi with 0 budget (Philipp Rudo) [1847443]
+- [s390] s390/qdio: reduce access to cdev->private->qdio_data (Philipp Rudo) [1847443]
+- [s390] s390/qdio: clean up cdev access in qdio_setup_irq() (Philipp Rudo) [1847443]
+- [s390] s390/qdio: fill SL with absolute addresses (Philipp Rudo) [1847443]
+- [s390] s390/qdio: don't allocate *aob array with GFP_ATOMIC (Philipp Rudo) [1847443]
+- [s390] s390/qdio: simplify ACK tracking (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove HARDSETUP state (Philipp Rudo) [1847443]
+- [s390] s390/qeth: make cmd/reply matching more flexible (Philipp Rudo) [1847443]
+- [s390] s390/qeth: consolidate online/offline code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: shift some bridgeport code around (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove QETH_RX_PULL_LEN (Philipp Rudo) [1847443]
+- [s390] s390/qeth: use napi_gro_frags() for SG skbs (Philipp Rudo) [1847443]
+- [s390] s390/qeth: consolidate RX code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: make use of napi_schedule_irqoff() (Philipp Rudo) [1847443]
+- [s390] s390/qeth: consolidate helpers for capability checking (Philipp Rudo) [1847443]
+- [s390] s390/qeth: stop yielding the ip_lock during IPv4 registration (Philipp Rudo) [1847443]
+- [s390] s390/qeth: don't raise NETDEV_REBOOT event from L3 offline path (Philipp Rudo) [1847443]
+- [s390] s390/qeth: remove open-coded inet_make_mask() (Philipp Rudo) [1847443]
+- [s390] s390/qeth: clean up L3 sysfs code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: overhaul L3 IP address dump code (Philipp Rudo) [1847443]
+- [s390] s390/qeth: wake up all waiters from qeth_irq() (Philipp Rudo) [1847443]
+- [s390] s390/qeth: only handle IRQs while device is online (Philipp Rudo) [1847443]
+- [s390] s390: clean up qdio.h (Philipp Rudo) [1847443]
+- [s390] s390/cio: fix kdoc for tiqdio_thinint_handler (Philipp Rudo) [1847443]
+- [s390] s390/drivers: fix proc/debugfs file permissions (Philipp Rudo) [1847443]
+- [s390] s390: convert to DEFINE_SHOW_ATTRIBUTE (Philipp Rudo) [1847443]
+- [s390] scsi: zfcp: Avoid benign overflow of the Request Queue's free-level (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: Replace open-coded list move (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: Clean up zfcp_erp_action_ready() (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: Fix an outdated comment for zfcp_qdio_send() (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: Use prandom_u32_max() for backoff (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: fix wrong data and display format of SFP+ temperature (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: trace channel log even for FCP command responses (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: proper indentation to reduce confusion in zfcp_erp_required_act (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: move maximum age of diagnostic buffers into a per-adapter variable (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: implicitly refresh config-data diagnostics when reading sysfs (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: introduce sysfs interface to read the local B2B-Credit (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: implicitly refresh port-data diagnostics when reading sysfs (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: introduce sysfs interface for diagnostics of local SFP transceiver (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: support retrieval of SFP Data via Exchange Port Data (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: fix GCC compiler warning emitted with -Wmaybe-uninitialized (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: fix request object use-after-free in send path causing seqno errors (Philipp Rudo) [1874100]
+- [s390] scsi: s390: zfcp_fc: use sg helper to iterate over scatterlist (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: reduce flood of fcrscn1 trace records on multi-element RSCN (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: improve kdoc for return of zfcp_status_read_refill() (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: drop old default switch case which might paper over missing case (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: drop default switch case which might paper over missing case (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: silence -Wimplicit-fallthrough in zfcp_erp_lun_strategy() (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: silence remaining kdoc warnings in header files (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: silence all W=1 build warnings for existing kdoc (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: properly format LUN (and WWPN) for LUN sharing violation kmsg (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: use enum zfcp_erp_act_result for argument/return of affected functions (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: use enum zfcp_erp_steps for struct zfcp_erp_action.step (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: the action field of zfcp_erp_action is actually the type (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: clarify function argument name for trace tag string (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: ERP thread setup kdoc update (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: update kernel message for invalid FCP_CMND length, it's not the CDB (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: drop duplicate seq_no from zfcp_fsf_req which is also in QTCB header (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: drop duplicate fsf_command from zfcp_fsf_req which is also in QTCB header (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: drop unnecessary forward prototype for struct zfcp_fsf_req (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: group sort internal structure definitions for proximity (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: namespace prefix for internal latency data structures (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: update width in comment for ZFCP_COMMON_FLAGS mask (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: move scsi_eh & non-ERP timeout defines owned by and local to zfcp_fsf.c (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: drop unnecessary forward prototype for struct zfcp_reqlist (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: move SG table helper from aux to fc and make them static (Philipp Rudo) [1874100]
+- [s390] scsi: zfcp: remove unnecessary null pointer check before mempool_destroy (Philipp Rudo) [1874100]
+- [s390] s390/dasd, zfcp: fix gcc 8 stringop-truncation warnings (Philipp Rudo) [1874100]
+- [s390] s390/stp: unify stp_work_mutex and clock_sync_mutex (Philipp Rudo) [1856342]
+- [s390] s390/stp: add sysfs file to show scheduled leap seconds (Philipp Rudo) [1856342]
+- [s390] s390/stp: add support for leap seconds (Philipp Rudo) [1856342]
+- [s390] s390/stp: use u32 instead of unsigned int (Philipp Rudo) [1856342]
+- [s390] s390/stp: use __packed (Philipp Rudo) [1856342]
+- [s390] s390/stp: add locking to sysfs functions (Philipp Rudo) [1856342]
+- [s390] s390/stp: allow group and users to read stp sysfs files (Philipp Rudo) [1856342]
+- [s390] s390/ipl: add support to control memory clearing for nvme re-IPL (Philipp Rudo) [1851122]
+- [kernel] tick: broadcast-hrtimer: Fix a race in bc_set_next (Vladis Dronov) [1876567]
+- [fs] gfs2: Make sure we don't miss any delayed withdraws (Robert S Peterson) [1873565]
+- [fs] gfs2: add some much needed cleanup for log flushes that fail (Robert S Peterson) [1873565]
+- [fs] gfs2: fix trans slab error when withdraw occurs inside log_flush (Robert S Peterson) [1873565]
+- [block] blk-mq: mark flush request as IDLE in flush_end_io() (Gopal Tiwari) [1894347]
+- [nvme] nvme-tcp: avoid repeated request completion (Gopal Tiwari) [1894347]
+- [nvme] nvme-rdma: avoid repeated request completion (Gopal Tiwari) [1894347]
+- [nvme] nvme-tcp: avoid race between time out and tear down (Gopal Tiwari) [1894347]
+- [nvme] nvme-rdma: avoid race between time out and tear down (Gopal Tiwari) [1894347]
+- [nvme] nvme: introduce nvme_sync_io_queues (Gopal Tiwari) [1894347]
+- [documentation] kvm: x86: hyper-v: Mention SynDBG CPUID leaves in api.rst (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: remove unused variable (Vitaly Kuznetsov) [1882793]
+- [tools] kvm: selftests: Don't require THP to run tests (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: evmcs: make evmcs_sanitize_exec_ctrls() work again (Vitaly Kuznetsov) [1882793]
+- [tools] kvm: selftests: test behavior of unmapped L2 APIC-access address (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Fix NULL dereference at kvm_msr_ignored_check() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: replace static const variables with macros (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: ioapic: break infinite recursion on lazy EOI (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: rename pi_init to avoid conflict with paride (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Avoid modulo operator on 64-bit value to fix i386 build (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: NX largepage recovery for TDP MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Don't clear write flooding count for direct roots (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Support MMIO in the TDP MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Support write protection for nesting in tdp MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Support disabling dirty logging for the tdp MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Support dirty logging for the TDP MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Support changed pte notifier in tdp MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Add access tracking for tdp_mmu (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Support invalidate range MMU notifier for TDP MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Allocate struct kvm_mmu_pages for all pages in TDP MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Add TDP MMU PF handler (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Remove disallowed_hugepage_adjust shadow_walk_iterator arg (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Support zapping SPTEs in the TDP MMU (Vitaly Kuznetsov) [1882793]
+- [virt] kvm: Cache as_id in kvm_memory_slot (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Add functions to handle changed TDP SPTEs (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Allocate and free TDP MMU roots (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Init / Uninit the TDP MMU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Introduce tdp_iter (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: mmu: extract spte.h and spte.c (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: mmu: Separate updating a PTE from kvm_set_pte_rmapp (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Separate making SPTEs from set_spte (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: mmu: Separate making non-leaf sptes from link_shadow_page (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Let the guest own CR4.FSGSBASE (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Intercept guest reserved CR4 bits to inject #GP fault (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Move call to update_exception_bitmap() into VMX code (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Invoke vendor's vcpu_after_set_cpuid() after all common updates (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Intercept LA57 to inject #GP fault when it's reserved (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Initialize prev_ga_tag before use (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: implement on demand allocation of the nested state (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: allow kvm_x86_ops.set_efer to return an error value (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: report negative values from wrmsr emulation to userspace (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: xen_hvm_config: cleanup return values (Vitaly Kuznetsov) [1882793]
+- [x86] kvm x86/mmu: Make struct kernel_param_ops definitions const (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: allocate vcpu->arch.cpuid_entries dynamically (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: disconnect kvm_check_cpuid() from vcpu->arch.cpuid_entries (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: only provide PV features if enabled in guest's CPUID (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: set wall_clock in kvm_write_wall_clock() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: encapsulate wrmsr(MSR_KVM_SYSTEM_TIME) emulation in helper fn (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: hide KVM options from menuconfig when KVM is not compiled (Vitaly Kuznetsov) [1882793]
+- [documentation] kvm: vmx: Forbid userspace MSR filters for x2APIC (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Ignore userspace MSR filters for x2APIC (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Fix x2APIC MSR intercept handling on !APICV platforms (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: vmx_uret_msrs_list[] can be static (Vitaly Kuznetsov) [1882793]
+- [tools] kvm: x86: do not attempt TSC synchronization on guest writes (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: delay MSR permission processing to first nested VM run (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: rename KVM_REQ_GET_VMCS12_PAGES (Vitaly Kuznetsov) [1882793]
+- [tools] kvm: selftests: Add test for user space MSR handling (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Introduce MSR filtering (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: vmx: Prevent MSR passthrough when MSR access is denied (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: svm: Prevent MSR passthrough when MSR access is denied (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Prepare MSR bitmaps for userspace tracked MSRs (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Add infrastructure for MSR filtering (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Allow deflecting unknown MSR accesses to user space (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Return -ENOENT on unimplemented MSRs (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename vmx_uret_msr's "index" to "slot" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename "vmx_msr_index" to "vmx_uret_msrs_list" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename "vmx_set_guest_msr" to "vmx_set_guest_uret_msr" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename "find_msr_entry" to "vmx_find_uret_msr" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Add vmx_setup_uret_msr() to handle lookup and swap (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Move uret MSR lookup into update_transition_efer() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Check guest support for RDTSCP before processing MSR_TSC_AUX (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename "__find_msr_index" to "__vmx_find_uret_msr" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename vcpu_vmx's "guest_msrs_ready" to "guest_uret_msrs_loaded" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename vcpu_vmx's "save_nmsrs" to "nr_active_uret_msrs" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename vcpu_vmx's "nmsrs" to "nr_uret_msrs" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename the "shared_msr_entry" struct to "vmx_uret_msr" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename "vmx_find_msr_index" to "vmx_find_loadstore_msr_slot" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Prepend "MAX_" to MSR array size defines (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Rename "shared_msrs" to "user_return_msrs" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Move individual kvm_mmu initialization into common helper (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Read EXIT_QUAL and INTR_INFO only when needed for nested exit (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Use common definition for kvm_nested_vmexit tracepoint (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Add macro wrapper for defining kvm_exit tracepoint (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Add intr/vectoring info and error code to kvm_exit tracepoint (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Add a helper to test for a valid error code given an intr info (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Read guest RIP from within the kvm_nested_vmexit tracepoint (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Add RIP to the kvm_entry, i.e. VM-Enter, tracepoint (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: WARN on attempt to switch the currently loaded VMCS (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Drop redundant VMCS switch and free_nested() call (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Ensure vmcs01 is the loaded VMCS when freeing nested state (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Move free_nested() below vmx_switch_vmcs() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Explicitly check for valid guest state for !unrestricted guest (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Reload vmcs01 if getting vmcs12's pages fails (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Reset the segment cache when stuffing guest segs (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Track write/user faults using bools (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Hoist ITLB multi-hit workaround check up a level (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Rename 'hlevel' to 'level' in FNAME(fetch) (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Account NX huge page disallowed iff huge page was requested (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Capture requested page level before NX huge page workaround (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Move "huge page disallowed" calculation into mapping helpers (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Refactor the zap loop for recovering NX lpages (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Commit zap of remaining invalid pages when recovering lpages (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename ops.h to vmx_ops.h (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Extract posted interrupt support to separate files (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Bail early from final #PF handling on spurious faults (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Return unique RET_PF_* values if the fault was fixed (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Invert RET_PF_* check when falling through to emulation (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Return -EIO if page fault returns RET_PF_INVALID (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Recursively zap nested TDP SPs when zapping last/only parent (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Move flush logic from mmu_page_zap_pte() to FNAME(invlpg) (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: hyper-v: disallow configuring SynIC timers with no SynIC (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Stash 'kvm' in a local variable in kvm_mmu_free_roots() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Add a helper and macros to reduce boilerplate for sec exec ctls (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename RDTSCP secondary exec control name to insert "ENABLE" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Use VMX_FEATURE_* flags to define VMCS control bits (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Unconditionally clear CPUID.INVPCID if !CPUID.PCID (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Rename vmx_*_supported() helpers to cpu_has_vmx_*() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Use "illegal GPA" helper for PT/RTIT output base check (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Move illegal GPA helper out of the MMU code (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Replace MSR_IA32_RTIT_OUTPUT_BASE_MASK with helper function (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Unexport cpuid_query_maxphyaddr() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Use precomputed MAXPHYADDR for RTIT base MSR check (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Do not perform emulation for INVD intercept (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: sev: shorten comments around sev_clflush_pages (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Mark SEV launch secret pages as dirty (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Add VM-Enter failed tracepoints for super early checks (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: CR3 MBZ bits are only 63:52 (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: emulating RDPID failure shall return #UD rather than #GP (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Morph notification vector IRQ on nested VM-Enter to pending PI (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Add tracepoint for cr_interception (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Analyze is_guest_mode() in svm_vcpu_run() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Invoke NMI handler via indirect call instead of INTn (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Move IRQ invocation to assembly subroutine (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Add kvm_x86_ops hook to short circuit emulation (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: use __GFP_ZERO instead of clear_page() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: KVM needs to unset "unrestricted guest" VM-execution control in vmcs02 if vmcs12 doesn't set it (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Enable INVPCID feature on AMD (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Move handling of INVPCID types to x86 (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Rename and move the function vmx_handle_memory_failure to x86.c (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Remove set_cr_intercept, clr_cr_intercept and is_cr_intercept (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Add new intercept word in vmcb_control_area (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Modify 64 bit intercept field to two 32 bit vectors (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Modify intercept_exceptions to generic intercepts (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Change intercept_dr to generic intercepts (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Change intercept_cr to generic intercepts (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Introduce vmcb_(set_intercept/clr_intercept/_is_intercept) (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: Remove unused field (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: refactor exit labels in svm_create_vcpu (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: use __GFP_ZERO instead of clear_page (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: refactor msr permission bitmap allocation (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: rename nested vmcb to vmcb12 (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: rename a variable in the svm_create_vcpu (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: lapic: Reduce world switch latency caused by timer_advance_ns (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: lapic: Narrow down the kick target vCPU (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: lapic: Guarantee the timer is in tsc-deadline mode when setting (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: lapic: Return 0 when getting the tscdeadline timer if the lapic is hw disabled (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: lapic: Fix updating DFR missing apic map recalculation (Vitaly Kuznetsov) [1882793]
+- [virt] kvm/eventfd: move wildcard calculation outside loop (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Simplify the initialization of nested_vmx_msrs (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Fix VMX controls MSRs setup when nested VMX enabled (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: Avoid freeing uninitialized pointers in svm_set_nested_state() (Vitaly Kuznetsov) [1882793]
+- [x86] hyperv: Remove aliases with X64 in their name (Vitaly Kuznetsov) [1882793]
+- [x86] hyperv: Split hyperv-tlfs.h into arch dependent and independent files (Vitaly Kuznetsov) [1882793]
+- [x86] hyperv: Remove HV_PROCESSOR_POWER_STATE #defines (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Add GHCB definitions (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: nested: Don't allocate VMCB structures on stack (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: mmu: page_track: Fix RCU list API usage (Vitaly Kuznetsov) [1882793]
+- [kernel] rculist: Introduce list/hlist_for_each_entry_srcu() macros (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: update PFEC_MASK/PFEC_MATCH together with PF intercept (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Add a dedicated INVD intercept routine (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Reset MMU context if guest toggles CR4.SMAP or CR4.PKE (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: fix MSR_IA32_TSC read for nested migration (Vitaly Kuznetsov) [1882793]
+- [tools] selftests: kvm: Fix assert failure in single-step test (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: vmx: Make smaller physical guest address space support user-configurable (Vitaly Kuznetsov) [1882793]
+- [x86] revert "kvm: Check the allocation of pv cpu mask" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: emulator: more strict rsm checks (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: more strict SMM checks when returning to nested guest (Vitaly Kuznetsov) [1882793]
+- [x86] svm: nsvm: setup nested msr permission bitmap on nested state load (Vitaly Kuznetsov) [1882793]
+- [x86] svm: nsvm: correctly restore GIF on vmexit from nesting after migration (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Don't freeze guest when event delivery causes an APIC-access exit (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: avoid emulation with stale next_rip (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: always allow writing '0' to MSR_KVM_ASYNC_PF_EN (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Periodically schedule when unregistering regions on destroy (Vitaly Kuznetsov) [1882793]
+- [x86] kvm x86/mmu: use KVM_REQ_MMU_SYNC to sync when needed (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Fix the update value of nested load IA32_PERF_GLOBAL_CTRL control (Vitaly Kuznetsov) [1882793]
+- [virt] kvm: fix memory leak in kvm_io_bus_unregister_dev() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: Check the allocation of pv cpu mask (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Update VMCS02 when L2 PAE PDPTE updates detected (Vitaly Kuznetsov) [1882793]
+- [documentation] kvm: documentation: Minor fixups (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Toggling CR4.PKE does not load PDPTEs in PAE mode (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Toggling CR4.SMAP does not load PDPTEs in PAE mode (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: fix access code passed to gva_to_gpa (Vitaly Kuznetsov) [1882793]
+- [tools] selftests: kvm: Use a shorter encoding to clear RAX (Vitaly Kuznetsov) [1882793]
+- [x86] kvm/hyper-v: Synic default SCONTROL MSR needs to be enabled (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Don't attempt to load PDPTRs when 64-bit mode is enabled (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: detect assigned device via irqbypass manager (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Fix sev_pin_memory() error handling (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: lapic: Set the TDCR settable bits (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Fix disable pause loop exit/pause filtering capability on SVM (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: lapic: Prevent setting the tscdeadline timer if the lapic is hw disabled (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Specify max TDP level via kvm_configure_mmu() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Rename max_page_level to max_huge_page_level (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Dynamically calculate TDP level from max level and MAXPHYADDR (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vxm: Remove temporary WARN on expected vs. actual EPTP level mismatch (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Pull the PGD's level from the MMU instead of recalculating it (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Make vmx_load_mmu_pgd() static (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Add separate helper for shadow NPT root page role calc (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Drop a duplicate declaration of construct_eptp() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: Using macros instead of magic values (Vitaly Kuznetsov) [1882793]
+- [tools] kvm: nvmx: check for invalid hdr.vmx.flags (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: check for required but missing VMCS12 in KVM_SET_NESTED_STATE (Vitaly Kuznetsov) [1882793]
+- [tools] selftests: kvm: do not set guest mode flag (Vitaly Kuznetsov) [1882793]
+- [documentation] documentation: virt/kvm/api: eliminate duplicated word (Vitaly Kuznetsov) [1882793]
+- [documentation] docs: kvm: Replace HTTP links with HTTPS ones (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: remove nonsensical EXITINFO1 adjustment on nested NPF (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Add a capability for GUEST_MAXPHYADDR < HOST_MAXPHYADDR support (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: optimize #PF injection when MAXPHYADDR does not match (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Add guest physical address check in EPT violation and misconfig (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: introduce vmx_need_pf_intercept (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: update exception bitmap on CPUID changes (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: rename update_bp_intercept to update_exception_bitmap (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: mmu: Add guest physical address check in translate_gpa() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: mmu: Move translate_gpa() to mmu.c (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Add helper functions for illegal GPA checking and page fault injection (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: move MSR_IA32_PERF_CAPABILITIES emulation to common x86 code (Vitaly Kuznetsov) [1882793]
+- [virt] kvm: Move x86's MMU memory cache helpers to common KVM code (Vitaly Kuznetsov) [1882793]
+- [kernel] kvm: Move x86's version of struct kvm_mmu_memory_cache to common code (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Prepend "kvm_" to memory cache helpers that will be global (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Skip filling the gfn cache for guaranteed direct MMU topups (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Zero allocate shadow pages (outside of mmu_lock) (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Make __GFP_ZERO a property of the memory cache (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Separate the memory caches for shadow pages and gfn arrays (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Clean up the gorilla math in mmu_topup_memory_caches() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Topup memory caches after walking GVA->GPA (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Move fast_page_fault() call above mmu_topup_memory_caches() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Try to avoid crashing KVM if a MMU memory cache is empty (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Remove superfluous gotos from mmu_topup_memory_caches() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Use consistent "mc" name for kvm_mmu_memory_cache locals (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Consolidate "page" variant of memory cache helpers (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Track the associated kmem_cache in the MMU caches (Vitaly Kuznetsov) [1882793]
+- [x86] kvm/x86: pmu: Fix #GP condition check for RDPMC emulation (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Move kvm_x86_ops.vcpu_after_set_cpuid() into kvm_vcpu_after_set_cpuid() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Rename cpuid_update() callback to vcpu_after_set_cpuid() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Rename kvm_update_cpuid() to kvm_vcpu_after_set_cpuid() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Extract kvm_update_cpuid_runtime() from kvm_update_cpuid() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Introduce kvm_check_cpuid() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Move kvm_apic_set_version() to kvm_update_cpuid() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: lapic: Use guest_cpuid_has() in kvm_apic_set_version() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Go on updating other CPUID leaves when leaf 1 is absent (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Reset vcpu->arch.cpuid_nent to 0 if SET_CPUID* fails (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: limit the maximum number of vPMU fixed counters to 3 (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: Check that MBZ bits in CR3 and CR4 are not set on vmrun of nested guests (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Make CR4.VMXE reserved for the guest (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Create mask for guest CR4 reserved bits in kvm_update_cpuid() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Read PDPTEs on CR0.CD and CR0.NW changes (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: Add "nopvspin" parameter to disable PV spinlocks (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: Change print code to use pr_*() format (Vitaly Kuznetsov) [1882793]
+- [x86] revert "kvm: x86: Fix setup the virt_spin_lock_key before static key get initialized" (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Rename page_header() to to_shadow_page() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Add sptep_to_sp() helper to wrap shadow page lookup (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Make kvm_mmu_page definition and accessor internal-only (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Add MMU-internal header (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Move kvm_mmu_available_pages() into mmu.c (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Move mmu_audit.c and mmutrace.h into the mmu/ sub-directory (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Exit to userspace on make_mmu_pages_available() error (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Batch zap MMU pages when shrinking the slab (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Batch zap MMU pages when recycling oldest pages (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Don't put invalid SPs back on the list of active pages (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Optimize MMU page cache lookup for fully direct MMUs (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Avoid multiple hash lookups in kvm_get_mmu_page() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Use VMCALL and VMMCALL mnemonics in kvm_para.h (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Rename svm_nested_virtualize_tpr() to nested_svm_virtualize_tpr() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Add svm_ prefix to set/clr/is_intercept() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Add vmcb_ prefix to mark_*() functions (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Rename struct nested_state to svm_nested_state (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Wrap VM-Fail valid path in generic VM-Fail helper (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Set last_vmentry_cpu in vcpu_enter_guest (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Move last_cpu into kvm_vcpu_arch as last_vmentry_cpu (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Add "last CPU" to some KVM_EXIT information (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Add last_cpu to struct vcpu_vmx (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Always set svm->last_cpu on VMRUN (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: Prefer vcpu->cpu to raw_smp_processor_id() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: report sev_pin_memory errors with PTR_ERR (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: svm: fix svn_pin_memory()'s use of get_user_pages_fast() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nsvm: Check that DR6[63:32] and DR7[64:32] are not set on vmrun of nested guests (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Move the check for upper 32 reserved bits of DR6 to separate function (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Do the same ignore_msrs check for feature msrs (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Move ignore_msrs handling upper the stack (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Make .write_log_dirty a nested operation (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: WARN if PML emulation helper is invoked outside of nested guest (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Drop kvm_arch_write_log_dirty() wrapper (Vitaly Kuznetsov) [1882793]
+- [s390] kvm: async_pf: change kvm_setup_async_pf()/kvm_arch_setup_async_pf() return type to bool (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: drop KVM_PV_REASON_PAGE_READY case from kvm_handle_page_fault() (Vitaly Kuznetsov) [1882793]
+- [documentation] documentation: virt: kvm/api: drop doubled words (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Use KVM_POSSIBLE_CR*_GUEST_BITS to initialize guest/host masks (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Mark CR4.TSD as being possibly owned by the guest (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Inject #GP if guest attempts to toggle CR4.LA57 in 64-bit mode (Vitaly Kuznetsov) [1882793]
+- [virt] kvm: use more precise cast and do not drop __user (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: bit 8 of non-leaf PDPEs is not reserved (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Fix async pf caused null-ptr-deref (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Remove vcpu_vmx's defunct copy of host_pkru (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: allow TSC to differ by NTP correction bounds without TSC scaling (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Fix MSR range of APIC registers in X2APIC mode (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Stop context switching MSR_IA32_UMWAIT_CONTROL (Vitaly Kuznetsov) [1882793]
+- [x86] cpu: Move prototype for get_umwait_control_msr() to a global location (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: nvmx: Plumb L2 GPA through to PML emulation (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/mmu: Avoid mixing gpa_t with gfn_t in walk_addr_generic() (Vitaly Kuznetsov) [1882793]
+- [x86] process/64: Make save_fsgs_for_kvm() ready for FSGSBASE (Vitaly Kuznetsov) [1882793]
+- [kernel] kvm: Replace zero-length array with flexible-array (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Add helpers to identify interrupt type from intr_info (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Switch KVM guest to using interrupts for page ready APF delivery (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: Remove defunct KVM_DEBUG_FS Kconfig (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Always treat MSR_IA32_PERF_CAPABILITIES as a valid PMU MSR (Vitaly Kuznetsov) [1882793]
+- [x86] kvm_hv_set_msr(): use __put_user() instead of 32bit __clear_user() (Vitaly Kuznetsov) [1882793]
+- [tools] kvm: selftests: update hyperv_cpuid with SynDBG tests (Vitaly Kuznetsov) [1882793]
+- [x86] kvm/hyper-v: Add support for synthetic debugger via hypercalls (Vitaly Kuznetsov) [1882793]
+- [x86] kvm/hyper-v: enable hypercalls regardless of hypercall page (Vitaly Kuznetsov) [1882793]
+- [x86] kvm/hyper-v: Add support for synthetic debugger interface (Vitaly Kuznetsov) [1882793]
+- [x86] hyper-v: Add synthetic debugger definitions (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86/pmu: Support full width counting (Vitaly Kuznetsov) [1882793]
+- [documentation] kvm: x86: announce KVM_FEATURE_ASYNC_PF_INT (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: acknowledgment mechanism for async pf page ready notifications (Vitaly Kuznetsov) [1882793]
+- [documentation] kvm: x86: interrupt based APF 'page ready' event delivery (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: extend struct kvm_vcpu_pv_apf_data with token info (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: hyperv: Remove duplicate definitions of Reference TSC Page (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: Restrict ASYNC_PF to user space (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: Sanitize kvm_async_pf_task_wait() (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: Handle async page faults directly through do_page_fault() (Vitaly Kuznetsov) [1882793]
+- [virt] kvm: add halt-polling cpu usage stats (Vitaly Kuznetsov) [1882793]
+- [powerpc] kvm: Replace vcpu->swait with rcuwait (Vitaly Kuznetsov) [1882793]
+- [kernel] rcuwait: Introduce rcuwait_active() (Vitaly Kuznetsov) [1882793]
+- [kernel] rcuwait: Introduce prepare_to and finish_rcuwait (Vitaly Kuznetsov) [1882793]
+- [kernel] rcuwait: Add @state argument to rcuwait_wait_event() (Vitaly Kuznetsov) [1882793]
+- [kernel] rcuwait: Let rcuwait_wake_up() return whether or not a task was awoken (Vitaly Kuznetsov) [1882793]
+- [kernel] rcuwait: Fix stale wake call name in comment (Vitaly Kuznetsov) [1882793]
+- [s390] kvm: s390: Use kvm_vcpu_wake_up in kvm_s390_vcpu_wakeup (Vitaly Kuznetsov) [1882793]
+- [documentation] docs/virt/kvm: Document configuring and running nested guests (Vitaly Kuznetsov) [1882793]
+- [tools] docs: fix broken references for ReST files that moved around (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: vmx: Extend VMXs #AC interceptor to handle split lock #AC in guest (Vitaly Kuznetsov) [1882793]
+- [x86] kvm: x86: Emulate split-lock access as a write in emulator (Vitaly Kuznetsov) [1882793]
+- [net] core: check length before updating Ethertype in skb_mpls_{push,pop} (Guillaume Nault) [1893886]
+- [net] pktgen: fix error message with wrong function name (Guillaume Nault) [1893886]
+- [net] handle the return value of pskb_carve_frag_list() correctly (Guillaume Nault) [1893886]
+- [net] Fix potential wrong skb->protocol in skb_vlan_untag() (Guillaume Nault) [1893886]
+- [net] make symbol 'flush_works' static (Guillaume Nault) [1893886]
+- [net] compat: Add missing sock updates for SCM_RIGHTS (Guillaume Nault) [1893886]
+- [net] mpls: drop skb's dst in mpls_forward() (Guillaume Nault) [1893886]
+- [include] net: Added pointer check for dst->ops->neigh_lookup in dst_neigh_lookup_skb (Guillaume Nault) [1893886]
+- [net] fix skb_panic to output real address (Guillaume Nault) [1893886]
+- [net] fix a potential recursive NETDEV_FEAT_CHANGE (Guillaume Nault) [1893886]
+- [net] neigh: send protocol value in neighbor create notification (Guillaume Nault) [1893886]
+- [net] revert default NAPI poll timeout to 2 jiffies (Guillaume Nault) [1893886]
+- [net] compat_ioctl: handle SIOCOUTQNSD (Guillaume Nault) [1893886]
+- [net] neigh: use long type to store jiffies delta (Guillaume Nault) [1893886]
+- [documentation] dev-tools: kselftest.rst: Update examples and paths (Hangbin Liu) [1876011]
+- [tools] selftests/run_kselftest.sh: Make each test individually selectable (Hangbin Liu) [1876011]
+- [tools] selftests: Extract run_kselftest.sh and generate stand-alone test list (Hangbin Liu) [1876011]
+- [tools] selftests/harness: Flush stdout before forking (Hangbin Liu) [1876011]
+- [tools] selftests: forwarding: Add missing 'rp_filter' configuration (Hangbin Liu) [1892298]
+- [tools] selftests/net: relax cpu affinity requirement in msg_zerocopy test (Hangbin Liu) [1892298]
+- [tools] selftests: ethtool: Fix test when only two speeds are supported (Hangbin Liu) [1892298]
+- [tools] selftests/net: tcp_mmap: fix clang warning for target arch PowerPC (Hangbin Liu) [1892298]
+- [tools] selftests/net: psock_fanout: fix clang issues for target arch PowerPC (Hangbin Liu) [1892298]
+- [netdrv] netxen: mark netxen_nic as deprecated in RHEL8 (Ivan Vecera) [1878188]
+- [net] linkmode: introduce linkmode_intersects() (Ivan Vecera) [1893193]
+- [net] ipv6: avoid lockdep issue in fib6_del() (Hangbin Liu) [1892196]
+- [net] ipv6: fix memory leaks on IPV6_ADDRFORM path (Hangbin Liu) [1892196]
+- [net] ila: remove unused inline function ila_addr_is_ila (Hangbin Liu) [1892196]
+- [net] ila: Fix uninitialised return value in ila_xlat_nl_cmd_flush (Hangbin Liu) [1892196]
+- [netdrv] i40e: always propagate error value in i40e_set_vsi_promisc() (Stefan Assmann) [1835705]
+- [netdrv] i40e: fix return of uninitialized aq_ret in i40e_set_vsi_promisc (Stefan Assmann) [1835705]
+- [netdrv] i40e: Remove scheduling while atomic possibility (Stefan Assmann) [1835705]
+- [pci] hv: Fix hibernation in case interrupts are not re-created (Mohammed Gamal) [1846838]
+- [powerpc] kvm: ppc: book3s hv: xics: Replace the 'destroy' method by a 'release' method (Greg Kurz) [1857527]
+- [security] selinux: complete the inlining of hashtab functions (Ondrej Mosnacek) [1878149]
+- [security] selinux: prepare for inlining of hashtab functions (Ondrej Mosnacek) [1878149]
+- [security] selinux: specialize symtab insert and search functions (Ondrej Mosnacek) [1878149]
+- [security] selinux: fixed a checkpatch warning with the sizeof macro (Ondrej Mosnacek) [1878149]
+- [security] selinux: log error messages on required process class / permissions (Ondrej Mosnacek) [1878149]
+- [security] selinux: fix undefined return of cond_evaluate_expr (Ondrej Mosnacek) [1878149]
+- [security] selinux: fix a double free in cond_read_node()/cond_read_list() (Ondrej Mosnacek) [1878149]
+- [security] selinux: fix double free (Ondrej Mosnacek) [1878149]
+- [security] selinux: netlabel: Remove unused inline function (Ondrej Mosnacek) [1878149]
+- [security] selinux: do not allocate hashtabs dynamically (Ondrej Mosnacek) [1878149]
+- [security] selinux: fix return value on error in policydb_read() (Ondrej Mosnacek) [1878149]
+- [security] selinux: simplify range_write() (Ondrej Mosnacek) [1878149]
+- [security] selinux: fix error return code in policydb_read() (Ondrej Mosnacek) [1878149]
+- [security] selinux: don't produce incorrect filename_trans_count (Ondrej Mosnacek) [1878149]
+- [security] selinux: implement new format of filename transitions (Ondrej Mosnacek) [1878149]
+- [security] selinux: move context hashing under sidtab (Ondrej Mosnacek) [1878149]
+- [security] selinux: hash context structure directly (Ondrej Mosnacek) [1878149]
+- [security] selinux: store role transitions in a hash table (Ondrej Mosnacek) [1878149]
+- [security] selinux: drop unnecessary smp_load_acquire() call (Ondrej Mosnacek) [1878149]
+- [security] selinux: fix warning Comparison to bool (Ondrej Mosnacek) [1878149]
+- [security] selinux: fix error return code in cond_read_list() (Ondrej Mosnacek) [1878149]
+- [security] selinux: free str on error in str_read() (Ondrej Mosnacek) [1878149]
+- [security] selinux: clean up indentation issue with assignment statement (Ondrej Mosnacek) [1878149]
+- [security] selinux: avtab_init() and cond_policydb_init() return void (Ondrej Mosnacek) [1878149]
+- [security] selinux: clean up error path in policydb_init() (Ondrej Mosnacek) [1878149]
+- [security] selinux: remove unused initial SIDs and improve handling (Ondrej Mosnacek) [1878149]
+- [security] selinux: reduce the use of hard-coded hash sizes (Ondrej Mosnacek) [1878149]
+- [security] selinux: Add xfs quota command types (Ondrej Mosnacek) [1878149]
+- [security] selinux: optimize storage of filename transitions (Ondrej Mosnacek) [1878149]
+- [security] selinux: factor out loop body from filename_trans_read() (Ondrej Mosnacek) [1878149]
+- [security] selinux: generalize evaluate_cond_node() (Ondrej Mosnacek) [1878149]
+- [security] selinux: convert cond_expr to array (Ondrej Mosnacek) [1878149]
+- [security] selinux: convert cond_av_list to array (Ondrej Mosnacek) [1878149]
+- [security] selinux: convert cond_list to array (Ondrej Mosnacek) [1878149]
+- [security] selinux: sel_avc_get_stat_idx should increase position index (Ondrej Mosnacek) [1878149]
+- [security] selinux: simplify evaluate_cond_node() (Ondrej Mosnacek) [1878149]
+- [security] selinux: move status variables out of selinux_ss (Ondrej Mosnacek) [1878149]
+- [scripts] selinux: use kernel linux/socket.h for genheaders and mdp (Ondrej Mosnacek) [1878149]
+- [scripts] genheaders: -<width>s had been there since v6; -*s - since v7 (Ondrej Mosnacek) [1878149]
+- [scsi] scsi: megaraid_sas: Added support for shared host tagset for cpuhotplug (Ming Lei) [1876863]
+- [scsi] scsi: scsi_debug: Support host tagset (Ming Lei) [1876863]
+- [scsi] scsi: core: Show nr_hw_queues in sysfs (Ming Lei) [1876863]
+- [scsi] scsi: Add host and host template flag 'host_tagset' (Ming Lei) [1876863]
+- [block] null_blk: Support shared tag bitmap (Ming Lei) [1876863]
+- [block] blk-mq, elevator: Count requests per hctx to improve performance (Ming Lei) [1876863]
+- [block] blk-mq: Record active_queues_shared_sbitmap per tag_set for when using shared sbitmap (Ming Lei) [1876863]
+- [block] blk-mq: Record nr_active_requests per queue for when using shared sbitmap (Ming Lei) [1876863]
+- [block] blk-mq: Relocate hctx_may_queue() (Ming Lei) [1876863]
+- [block] blk-mq: Facilitate a shared sbitmap per tagset (Ming Lei) [1876863]
+- [block] blk-mq: Use pointers for blk_mq_tags bitmap tags (Ming Lei) [1876863]
+- [block] blk-mq: Pass flags for tag init/free (Ming Lei) [1876863]
+- [block] blk-mq: Free tags in blk_mq_init_tags() upon error (Ming Lei) [1876863]
+- [block] blk-mq: Rename blk_mq_update_tag_set_depth() (Ming Lei) [1876863]
+- [block] blk-mq: Rename BLK_MQ_F_TAG_SHARED as BLK_MQ_F_TAG_QUEUE_SHARED (Ming Lei) [1876863]
+- [block] block: fix double account of flush request's driver tag (Ming Lei) [1876863]
+- [block] blk-mq: centralise related handling into blk_mq_get_driver_tag (Ming Lei) [1876863]
+- [block] blk-mq: streamline handling of q->mq_ops->queue_rq result (Ming Lei) [1876863]
+- [block] blk-mq: remove pointless call of list_entry_rq() in hctx_show_busy_rq() (Ming Lei) [1876863]
+- [block] blk-mq: move blk_mq_get_driver_tag into blk-mq.c (Ming Lei) [1876863]
+- [block] blk-mq: support batching dispatch in case of io (Ming Lei) [1876863]
+- [block] blk-mq: pass obtained budget count to blk_mq_dispatch_rq_list (Ming Lei) [1876863]
+- [block] blk-mq: remove dead check from blk_mq_dispatch_rq_list (Ming Lei) [1876863]
+- [block] blk-mq: move getting driver tag and budget into one helper (Ming Lei) [1876863]
+- [block] blk-mq: pass hctx to blk_mq_dispatch_rq_list (Ming Lei) [1876863]
+- [block] blk-mq: remove the BLK_MQ_REQ_INTERNAL flag (Ming Lei) [1876863]
+- [net] netns: Constify exported functions (Guillaume Nault) [1806134]
+- [net] netns: protect netns ID lookups with RCU (Guillaume Nault) [1806134]
+- [net] netns: Remove __peernet2id_alloc() (Guillaume Nault) [1806134]
+- [net] netns: read NETNSA_NSID as s32 attribute in rtnl_net_getid() (Guillaume Nault) [1806134]
+- [tools] selftests: txtimestamp: add flag for timestamp validation tolerance. (Hangbin Liu) [1861175]
+- [tools] selftests/net: so_txtime: fix clang issues for target arch PowerPC (Hangbin Liu) [1861175]
+- [tools] selftests/net: rxtimestamp: fix clang issues for target arch PowerPC (Hangbin Liu) [1861175]
+- [tools] selftest: txtimestamp: fix net ns entry logic (Hangbin Liu) [1861175]
+- [tools] selftests/net: update initializer syntax to use c99 designators (Hangbin Liu) [1861175]
+- [tools] selftests/net: add ipv6 test coverage in rxtimestamp test (Hangbin Liu) [1861175]
+- [tools] selftests/net: plug rxtimestamp test into kselftest framework (Hangbin Liu) [1861175]
+- [tools] selftests/net: in rxtimestamp getopt_long needs terminating null entry (Hangbin Liu) [1861175]
+- [tools] selftests/net: in timestamping, strncpy needs to preserve null byte (Hangbin Liu) [1861175]
+- [tools] selftests: move timestamping selftests to net folder (Hangbin Liu) [1861175]
+- [tools] selftests: txtimestamp: print statistics for timestamp events. (Hangbin Liu) [1861175]
+- [tools] selftests: txtimestamp: add support for epoll(). (Hangbin Liu) [1861175]
+- [tools] selftests: txtimestamp: add new command-line flags. (Hangbin Liu) [1861175]
+- [tools] selftests: txtimestamp: allow printing latencies in nsec. (Hangbin Liu) [1861175]
+- [tools] selftests: txtimestamp: allow individual txtimestamp tests. (Hangbin Liu) [1861175]
+- [tools] selftests: timestamping: Fix SIOCGSTAMP undeclared build failure (Hangbin Liu) [1861175]
+- [tools] selftests: fix timestamping Makefile (Hangbin Liu) [1861175]
+- [tools] selftests: add missing include unistd (Hangbin Liu) [1861175]
+- [tools] selftests/txtimestamp: Fix an equals vs assign bug (Hangbin Liu) [1861175]
+- [tools] selftests: add txtimestamp kselftest (Hangbin Liu) [1861175]
+- [tools] selftests: expand txtimestamp with ipv6 dgram + raw and pf_packet (Hangbin Liu) [1861175]
+- [tools] selftests: expand txtimestamp with cmsg support (Hangbin Liu) [1861175]
+- [hwmon] hwmon: (k10temp) Add support for Zen3 CPUs (Wei Huang) [1846851]
+- [powerpc] vfs: add faccessat2 syscall (Miklos Szeredi) [1333764]
+- [fs] vfs: split out access_override_creds() (Miklos Szeredi) [1333764]
+- [md] Revert "dm writecache: set "Tech Preview" taint using mark_tech_preview()" (Mike Snitzer) [1859413]
+- [s390] mm: fix huge pte soft dirty copying (Cornelia Huck) [1700709]
+- [fs] proc/mounts: add cursor (Miklos Szeredi) [1759472]
+
+* Wed Nov 18 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-251.el8]
+- [char] random: Add a poll handler to extrng_fops (Vladis Dronov) [1884857]
+- [platform] platform/mellanox: mlxbf-pmc: Add Mellanox BlueField PMC driver (Alaa Hleihel) [1655729]
+- [mm] mm/page_idle.c: skip offline pages (Chris von Recklinghausen) [1867490]
+- [powerpc] powerpc/pseries: Detect secure and trusted boot state of the system (Diego Domingos) [1853411]
+- [net] bpf: Check correct cred for CAP_SYSLOG in bpf_dump_raw_ok() (Yauheni Kaliuta) [1874003]
+- [kernel] kallsyms: Refactor kallsyms_show_value() to take cred (Yauheni Kaliuta) [1874003]
+- [kernel] kprobes: Show blacklist addresses as same as kallsyms does (Yauheni Kaliuta) [1874003]
+- [arm64] arm64: insn: Report PAC and BTI instructions as skippable (Yauheni Kaliuta) [1874003]
+- [arm64] arm64: insn: Don't assume unrecognized HINTs are skippable (Yauheni Kaliuta) [1874003]
+- [lib] usercopy: Avoid soft lockups in test_check_nonzero_user() (Yauheni Kaliuta) [1874003]
+- [security] selinux: map CAP_PERFMON and CAP_BPF to CAP_SYS_ADMIN (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: fix netdevsim trap_flow_action_cookie read (Yauheni Kaliuta) [1874003]
+- [net] net/bpfilter: Initialize pos in __bpfilter_process_sockopt (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Extend map-in-map selftest to detect memory leaks (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix map leak in HASH_OF_MAPS map (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix NULL pointer dereference in __btf_resolve_helper_id() (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Fix cgroup sockopt verifier test (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Fix libbpf hashmap on (I)LP32 architectures (Yauheni Kaliuta) [1874003]
+- [tools] selftests: bpf: Fix detach from sockmap tests (Yauheni Kaliuta) [1874003]
+- [net] bpf: net: Avoid incorrect bpf_sk_reuseport_detach call (Yauheni Kaliuta) [1874003]
+- [net] bpf: net: Avoid copying sk_user_data of reuseport_array during sk_clone (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Add tests for PTR_TO_BTF_ID vs. null comparison (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix an incorrect branch elimination by verifier (Yauheni Kaliuta) [1874003]
+- [include] bpf: sockmap: Require attach_bpf_fd when detaching a program (Yauheni Kaliuta) [1874003]
+- [net] bpf: sockmap: Check value of unused args to BPF_PROG_ATTACH (Yauheni Kaliuta) [1874003]
+- [net] bpf: Enforce BPF ringbuf size to be the power of 2 (Yauheni Kaliuta) [1874003]
+- [tools] bpf, sockmap: Add ingres skb tests that utilize merge skbs (Yauheni Kaliuta) [1874003]
+- [net] bpf, sockmap: RCU dereferenced psock may be used outside RCU block (Yauheni Kaliuta) [1874003]
+- [net] bpf, sockmap: RCU splat with redirect and strparser error or TLS (Yauheni Kaliuta) [1874003]
+- [tools] bpf: tcp: bpf_cubic: fix spurious HYSTART_DELAY exit upon drop in min RTT (Yauheni Kaliuta) [1874003]
+- [net] bpf: Do not allow btf_ctx_access with __int128 types (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Fix formatting in documentation for BPF helpers (Yauheni Kaliuta) [1874003]
+- [net] bpf: Restore behaviour of CAP_SYS_ADMIN allowing the loading of networking bpf programs (Yauheni Kaliuta) [1874003]
+- [net] bpf: Set the number of exception entries properly for subprograms (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Fix CO-RE relocs against .text section (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Forward-declare bpf_stats_type for systems with outdated UAPI headers (Yauheni Kaliuta) [1874003]
+- [documentation] bpf: Document optval > PAGE_SIZE behavior for sockopt hooks (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Make sure optvals > PAGE_SIZE are bypassed (Yauheni Kaliuta) [1874003]
+- [net] bpf: Don't return EINVAL from {get, set}sockopt when optlen > PAGE_SIZE (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpftool: Add ringbuf map type to map command docs (Yauheni Kaliuta) [1874003]
+- [samples] bpf, xdp, samples: Fix null pointer dereference in *_user code (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpftool: Add ringbuf map to a list of known map types (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Fix definition of bpf_ringbuf_output() helper in UAPI comments (Yauheni Kaliuta) [1874003]
+- [net] bpf: Undo internal BPF_PROBE_MEM in BPF insns dump (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Support pre-initializing .bss global variables (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpftool: Fix skeleton codegen (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix memlock accounting for sock_hash (Yauheni Kaliuta) [1874003]
+- [net] bpf: tcp: Recv() should return 0 when the peer socket is closed (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpftool: Exit on error in function codegen (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpftool: Fix memory leak in codegen error cases (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add cgroup_skb/egress test for load_bytes_relative (Yauheni Kaliuta) [1874003]
+- [net] net/filter: Permit reading NET in load_bytes_relative when MAC not set (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpf: Do not force gcc as CC (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Define __WORDSIZE if not available (Yauheni Kaliuta) [1874003]
+- [net] bpf: Devmap adjust uapi for attach bpf program (Yauheni Kaliuta) [1874003]
+- [net] bpf: Reset data_meta before running programs attached to devmap entry (Yauheni Kaliuta) [1874003]
+- [scripts] scripts: Require pahole v1.16 when generating BTF (Yauheni Kaliuta) [1874003]
+- [net] bpf, sockhash: Synchronize delete from bucket list on map free (Yauheni Kaliuta) [1874003]
+- [net] bpf, sockhash: Fix memory leak when unlinking sockets in sock_hash_free (Yauheni Kaliuta) [1874003]
+- [net] bpf/sockmap: Fix kernel panic at __tcp_bpf_recvmsg (Yauheni Kaliuta) [1874003]
+- [kernel] bpf: rework the compat kernel probe handling (Yauheni Kaliuta) [1874003]
+- [kernel] bpf: handle the compat string in bpf_trace_copy_string better (Yauheni Kaliuta) [1874003]
+- [kernel] bpf: factor out a bpf_trace_copy_string helper (Yauheni Kaliuta) [1874003]
+- [net] mmap locking API: add mmap_read_trylock_non_owner() (Yauheni Kaliuta) [1874003]
+- [net] bpf: sockmap: use mmap locking API (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Fix ringbuf selftest sample counting undeterminism (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix an error code in check_btf_func() (Yauheni Kaliuta) [1874003]
+- [net] bpf: make bpf_check_uarg_tail_zero() use check_zeroed_user() (Yauheni Kaliuta) [1874003]
+- [lib] lib: introduce copy_struct_from_user() helper (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add a default $(CXX) value (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpf: Don't use $(COMPILE.c) (Yauheni Kaliuta) [1874003]
+- [s390] s390/bpf: Use bcr 0, 0 as tail call nop filler (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Fix verifier test (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Fix sample_cnt shared between two threads (Yauheni Kaliuta) [1874003]
+- [tools] bpf, selftests: Adapt cls_redirect to call csum_level helper (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add csum_level helper for fixing up csum levels (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix up bpf_skb_adjust_room helper's skb csum setting (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Add _GNU_SOURCE for reallocarray to ringbuf.c (Yauheni Kaliuta) [1874003]
+- [net] bpf: Use tracing helpers for lsm programs (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add test for SO_BINDTODEVICE opt of bpf_setsockopt (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpf: sync bpf.h (Yauheni Kaliuta) [1874003]
+- [tools] bpf, selftests: Add test for ktls with skb bpf ingress policy (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix running sk_skb program types with ktls (Yauheni Kaliuta) [1874003]
+- [net] bpf: Refactor sockmap redirect code so its easy to reuse (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Add SEC name for xdp programs attached to device map (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add support to attach bpf program to a devmap entry (Yauheni Kaliuta) [1874003]
+- [kernel] bpf: Use strncpy_from_unsafe_strict() in bpf_seq_printf() helper (Yauheni Kaliuta) [1874003]
+- [net] devmap: Formalize map value as a named struct (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add rx_queue_mapping to bpf_sock (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add tests for write-only stacks/queues (Yauheni Kaliuta) [1874003]
+- [documentation] docs/bpf: Add BPF ring buffer design notes (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Add BPF ringbuf and perf buffer benchmarks (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add BPF ringbuf selftests (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Add BPF ring buffer support (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Implement BPF ring buffer and verifier support for it (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix map permissions check (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Cleanup comments in test_maps (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Cleanup some file descriptors in test_maps (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Fix a typo in test_maps (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Fix perf_buffer__free() API for sparse allocs (Yauheni Kaliuta) [1874003]
+- [tools] bpf, selftests: Test probe_* helpers from SCHED_CLS (Yauheni Kaliuta) [1874003]
+- [tools] bpf, selftests: Add sk_msg helpers load and attach test (Yauheni Kaliuta) [1874003]
+- [net] bpf, sk_msg: Add get socket storage helpers (Yauheni Kaliuta) [1874003]
+- [net] bpf: Extend bpf_base_func_proto helpers with probe_* and *current_task* (Yauheni Kaliuta) [1874003]
+- [net] bpf, sk_msg: Add some generic helpers that may be useful from sk_msg (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix spelling in comment explaining ARG1 in ___bpf_prog_run (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Install headers as part of make install (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Add API to consume the perf ring buffer content (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpftool: Print correct error message when failing to load BTF (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpftool: Make capability check account for new BPF caps (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpftool: Clean subcommand help messages (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: CONFIG_LIRC required for test_lirc_mode2.sh (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: CONFIG_IPV6_SEG6_BPF required for test_seg6_loop.o (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add general instructions for test execution (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, add printk to test_sk_lookup_kern to encode null ptr check (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, verifier case for non null pointer map value branch (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, verifier case for non null pointer check branch taken (Yauheni Kaliuta) [1874003]
+- [net] bpf: Verifier track null pointer branch_taken with JNE and JEQ (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpf: sync bpf.h (Yauheni Kaliuta) [1874003]
+- [tools] bpf, testing: Add get{peer, sock}name selftests to test_progs (Yauheni Kaliuta) [1874003]
+- [tools] bpf, bpftool: Enable get{peer, sock}name attach types (Yauheni Kaliuta) [1874003]
+- [tools] bpf, libbpf: Enable get{peer, sock}name attach types (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add get{peer, sock}name attach types for sock_addr (Yauheni Kaliuta) [1874003]
+- [samples] samples, bpf: Refactor kprobe, tail call kern progs map definition (Yauheni Kaliuta) [1874003]
+- [samples] samples, bpf: Add tracex7 test file to .gitignore (Yauheni Kaliuta) [1874003]
+- [samples] samples, bpf: Refactor tail call user progs with libbpf (Yauheni Kaliuta) [1874003]
+- [samples] samples, bpf: Refactor kprobe tracing user progs with libbpf (Yauheni Kaliuta) [1874003]
+- [samples] samples, bpf: Refactor pointer error check with libbpf (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, add ktls tests to test_sockmap (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, add blacklist to test_sockmap (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, add whitelist option to test_sockmap (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, provide verbose option for selftests execution (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, break down test_sockmap into subtests (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, improve test_sockmap total bytes counter (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, print error in test_sockmap error cases (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, sockmap test prog run without setting cgroup (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, remove prints from sockmap tests (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Selftests, move sockmap bpf prog header into progs (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Remove test_align leftovers (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Move test_align under test_progs (Yauheni Kaliuta) [1874003]
+- [tools] libbpf, hashmap: Fix signedness warnings (Yauheni Kaliuta) [1874003]
+- [tools] libbpf, hashmap: Remove unused #include (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix check_return_code to only allowin trace_iter progs (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Use CAP_BPF and CAP_PERFMON in tests (Yauheni Kaliuta) [1874003]
+- [net] bpf: Implement CAP_BPF (Yauheni Kaliuta) [1874003]
+- [security] bpf, capability: Introduce CAP_BPF (Yauheni Kaliuta) [1874003]
+- [security] capabilities: Introduce CAP_PERFMON to kernel and user space (Yauheni Kaliuta) [1874003]
+- [tools] bpf, bpftool: Allow probing for CONFIG_HZ from kernel config (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Test for sk helpers in cgroup skb (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add connect_fd_to_fd, connect_wait net helpers (Yauheni Kaliuta) [1874003]
+- [net] bpf: Introduce bpf_sk_{, ancestor_}cgroup_id helpers (Yauheni Kaliuta) [1874003]
+- [net] bpf: Allow skb_ancestor_cgroup_id helper in cgroup skb (Yauheni Kaliuta) [1874003]
+- [net] bpf: Allow sk lookup helpers in cgroup skb (Yauheni Kaliuta) [1874003]
+- [tools] selftest/bpf: Fix spelling mistake "SIGALARM" -> "SIGALRM" (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix bpf_iter's task iterator logic (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Test narrow loads for bpf_sock_addr.user_port (Yauheni Kaliuta) [1874003]
+- [net] bpf: Support narrow loads from bpf_sock_addr.user_port (Yauheni Kaliuta) [1874003]
+- [samples] samples/bpf: xdp_redirect_cpu: Set MAX_CPUS according to NR_CPUS (Yauheni Kaliuta) [1874003]
+- [samples] samples/bpf: Remove compiler warnings (Yauheni Kaliuta) [1874003]
+- [net] bpf: Enable bpf_iter targets registering ctx argument types (Yauheni Kaliuta) [1874003]
+- [net] bpf: Change func bpf_iter_unreg_target() signature (Yauheni Kaliuta) [1874003]
+- [net] bpf: net: Refactor bpf_iter target registration (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add comments to interpret bpf_prog return values (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Change btf_iter func proto prefix to "bpf_iter_" (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpf: selftests : Explain bpf_iter test failures with llvm 10.0.0 (Yauheni Kaliuta) [1874003]
+- [tools] selftest/bpf: Add BPF triggering benchmark (Yauheni Kaliuta) [1874003]
+- [tools] selftest/bpf: Fmod_ret prog and implement test_overhead as part of bench (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add benchmark runner infrastructure (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Extract parse_num_list into generic testing_helpers.c (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpf: Synchronise BPF UAPI header with tools (Yauheni Kaliuta) [1874003]
+- [scripts] bpf: Minor fixes to BPF helpers documentation (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpftool: Minor fixes for documentation (Yauheni Kaliuta) [1874003]
+- [tools] tools, bpftool: Poison and replace kernel integer typedefs (Yauheni Kaliuta) [1874003]
+- [tools] bpf, libbpf: Replace zero-length array with flexible-array (Yauheni Kaliuta) [1874003]
+- [arm64] bpf, arm64: Optimize ADD, SUB, JMP BPF_K using arm64 add/sub immediates (Yauheni Kaliuta) [1874003]
+- [arm64] bpf, arm64: Optimize AND, OR, XOR, JSET BPF_K using arm64 logical immediates (Yauheni Kaliuta) [1874003]
+- [tools] bpf, runqslower: include proper uapi/bpf.h (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpf: selftests: Add iter progs for bpf_map/task/task_file (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpftool: Add bpf_iter support for bptool (Yauheni Kaliuta) [1874003]
+- [tools] tools/libpf: Add offsetof/container_of macro in bpf_helpers.h (Yauheni Kaliuta) [1874003]
+- [tools] tools/libbpf: Add bpf_iter support (Yauheni Kaliuta) [1874003]
+- [net] bpf: Support variable length array in tracing programs (Yauheni Kaliuta) [1874003]
+- [net] bpf: Handle spilled PTR_TO_BTF_ID properly when checking stack_boundary (Yauheni Kaliuta) [1874003]
+- [kernel] bpf: Add bpf_seq_printf and bpf_seq_write helpers (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add PTR_TO_BTF_ID_OR_NULL support (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add task and task/file iterator targets (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add bpf_map iterator (Yauheni Kaliuta) [1874003]
+- [net] bpf: Implement common macros/helpers for target iterators (Yauheni Kaliuta) [1874003]
+- [net] bpf: Create file bpf iterator (Yauheni Kaliuta) [1874003]
+- [net] bpf: Create anonymous bpf iterator (Yauheni Kaliuta) [1874003]
+- [net] bpf: Implement bpf_seq_read() for bpf iterator (Yauheni Kaliuta) [1874003]
+- [net] bpf: Support bpf tracing/iter programs for BPF_LINK_UPDATE (Yauheni Kaliuta) [1874003]
+- [net] bpf: Support bpf tracing/iter programs for BPF_LINK_CREATE (Yauheni Kaliuta) [1874003]
+- [net] bpf: Allow loading of a bpf_iter program (Yauheni Kaliuta) [1874003]
+- [net] bpf: Implement an interface to register bpf_iter targets (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Allow any port in bpf_bind helper (Yauheni Kaliuta) [1874003]
+- [net] net: Refactor arguments of inet{,6}_bind (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Move existing common networking parts into network_helpers (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Generalize helpers to control background listener (Yauheni Kaliuta) [1874003]
+- [net] crypto: lib/sha1 - rename "sha" to "sha1" (Yauheni Kaliuta) [1874003]
+- [arm64] arm64: bpf: Annotate JITed code for BTI (Yauheni Kaliuta) [1874003]
+- [arm64] arm64: insn: Add constants for new HINT instruction decode (Yauheni Kaliuta) [1874003]
+- [kernel] sysctl: Fix unused function warning (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Use reno instead of dctcp (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix use-after-free of bpf_link when priming half-fails (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Bpf_{g, s}etsockopt for struct bpf_sock_addr (Yauheni Kaliuta) [1874003]
+- [tools] bpf: Add selftest for BPF_ENABLE_STATS (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Add support for command BPF_ENABLE_STATS (Yauheni Kaliuta) [1874003]
+- [net] bpf: Sharing bpf runtime stats with BPF_ENABLE_STATS (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Test allowed maps for bpf_sk_select_reuseport (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Fix false uninitialized variable warning (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix unused variable warning (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Use SOCKMAP for server sockets in bpf_sk_assign test (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Test that lookup on SOCKMAP/SOCKHASH is allowed (Yauheni Kaliuta) [1874003]
+- [net] bpf: Allow bpf_map_lookup_elem for SOCKMAP and SOCKHASH (Yauheni Kaliuta) [1874003]
+- [tools] tools: bpftool: Make libcap dependency optional (Yauheni Kaliuta) [1874003]
+- [tools] tools: bpftool: Allow unprivileged users to probe features (Yauheni Kaliuta) [1874003]
+- [tools] tools: bpftool: For "feature probe" define "full_mode" bool as global (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Disable ASAN instrumentation for mmap()'ed memory read (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Fix invalid memory reads in core_relo selftest (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Fix memory leak in extract_build_id() (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Fix memory leak and possible double-free in hashmap__clear (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Convert test_hashmap into test_progs test (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add SAN_CFLAGS param to selftests build to allow sanitizers (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Ensure test flavors use correct skeletons (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Add BTF-defined map-in-map support (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Refactor map creation logic and fix cleanup leak (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Refactor BTF-defined map definition parsing logic (Yauheni Kaliuta) [1874003]
+- [tools] bpftool: Add link bash completions (Yauheni Kaliuta) [1874003]
+- [tools] bpftool: Add bpftool-link manpage (Yauheni Kaliuta) [1874003]
+- [tools] bpftool: Add bpf_link show and pin support (Yauheni Kaliuta) [1874003]
+- [tools] bpftool: Expose attach_type-to-string array to non-cgroup code (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Test bpf_link's get_next_id, get_fd_by_id, and get_obj_info (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Add low-level APIs for new bpf_link commands (Yauheni Kaliuta) [1874003]
+- [net] bpf: Add support for BPF_OBJ_GET_INFO_BY_FD for bpf_link (Yauheni Kaliuta) [1874003]
+- [net] bpf: Support GET_FD_BY_ID and GET_NEXT_ID for bpf_link (Yauheni Kaliuta) [1874003]
+- [net] bpf: Allocate ID for bpf_link (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Remove unneeded semicolon in btf_dump_emit_type (Yauheni Kaliuta) [1874003]
+- [net] bpf, cgroup: Remove unused exports (Yauheni Kaliuta) [1874003]
+- [tools] libbpf: Return err if bpf_object__load failed (Yauheni Kaliuta) [1874003]
+- [tools] selftests/bpf: Add cls_redirect classifier (Yauheni Kaliuta) [1874003]
+- [net] bpf: Make verifier log more relevant by default (Yauheni Kaliuta) [1874003]
+- [net] bpf: add bpf_ktime_get_boot_ns() (Yauheni Kaliuta) [1874003]
+- [net] net: bpf: Make bpf_ktime_get_ns() available to non GPL programs (Yauheni Kaliuta) [1874003]
+- [net] net: bpf: Allow TC programs to call BPF_FUNC_skb_change_head (Yauheni Kaliuta) [1874003]
+- [net] bpf: Fix missing bpf_base_func_proto in cgroup_base_func_proto for CGROUP_NET=n (Yauheni Kaliuta) [1874003]
+- [tools] bpf_helpers.h: Add note for building with vmlinux.h or linux/types.h (Yauheni Kaliuta) [1874003]
+- [net] bpf: Enable more helpers for BPF_PROG_TYPE_CGROUP_{DEVICE, SYSCTL, SOCKOPT} (Yauheni Kaliuta) [1874003]
+- [tools] tools/bpf/bpftool: Remove duplicate headers (Yauheni Kaliuta) [1874003]
+- [net] bpf: Remove set but not used variable 'dst_known' (Yauheni Kaliuta) [1874003]
+- [net] xdp: export the DEV_MAP_BULK_SIZE macro (Yauheni Kaliuta) [1874003]
+- [kernel] trace/bpf_trace: Open access for CAP_PERFMON privileged process (Yauheni Kaliuta) [1874003]
+- [scsi] scsi: lpfc: Fix initial FLOGI failure due to BBSCN not supported (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Update lpfc version to 12.8.0.5 (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Reject CT request for MIB commands (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Add FDMI Vendor MIB support (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix duplicate wq_create_version check (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Removed unused macros in lpfc_attr.c (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Re-fix use after free in lpfc_rq_buf_free() (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix scheduling call while in softirq context in lpfc_unreg_rpi (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix invalid sleeping context in lpfc_sli4_nvmet_alloc() (Dick Kennedy) [1887549]
+- [scsi] scsi: Remove unneeded break statements (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Add dependency on CPU_FREQ (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Remove unneeded variable 'status' in lpfc_fcp_cpu_map_store() (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Drop nodelist reference on error in lpfc_gen_req() (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Remove set but not used 'qp' (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Update lpfc version to 12.8.0.4 (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Extend the RDF FPIN Registration descriptor for additional events (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix FLOGI/PLOGI receive race condition in pt2pt discovery (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix setting IRQ affinity with an empty CPU mask (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix spelling mistake "Cant" -> "Can't" (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Update lpfc version to 12.8.0.3 (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix validation of bsg reply lengths (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix retry of PRLI when status indicates its unsupported (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix oops when unloading driver while running mds diags (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix RSCN timeout due to incorrect gidft counter (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix no message shown for lpfc_hdw_queue out of range value (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix FCoE speed reporting (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Add missing misc_deregister() for lpfc_init() (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: nvmet: Avoid hang / use-after-free again when destroying targetport (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix typo in comment for ULP (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Add description for lpfc_release_rpi()'s 'ndlpl param (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix a bunch of kerneldoc misdemeanors (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Add and rename a whole bunch of function parameter descriptions (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Use __printf() format notation (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix kerneldoc parameter formatting/misnaming/missing issues (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix some function parameter descriptions (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Ensure variable has the same stipulations as code using it (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix-up formatting/docrot where appropriate (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Provide description for lpfc_mem_alloc()'s 'align' param (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix-up around 120 documentation issues (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Remove unused variable 'pg_addr' (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Correct some pretty obvious misdocumentation (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix less-than-zero comparison of unsigned value (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix interrupt assignments when multiple vectors are supported on same CPU (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix inconsistent indenting (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Update lpfc version to 12.8.0.2 (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Add an internal trace log buffer (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Add blk_io_poll support for latency improvment (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Add support to display if adapter dumps are available (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Allow applications to issue Common Set Features mailbox command (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix language in 0373 message to reflect non-error message (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix shost refcount mismatch when deleting vport (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix stack trace seen while setting rrq active (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix oops due to overrun when reading SLI3 data (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix missing MDS functionality (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Fix unused assignment in lpfc_sli4_bsg_link_diag_test (Dick Kennedy) [1887549]
+- [scsi] scsi: lpfc: Avoid another null dereference in lpfc_sli4_hba_unset() (Dick Kennedy) [1887549]
+- [scsi] lpfc_debugfs: get rid of pointless access_ok() (Dick Kennedy) [1887549]
+- [scsi] lpfc: add nvmet discovery_event op support (Dick Kennedy) [1887549]
+- [scsi] scsi: core: Don't start concurrent async scan on same host (Ming Lei) [1874501]
+- [crypto] crypto: bcm - Verify GCM/CCM key length in setkey (Vladis Dronov) [1887389]
+- [x86] x86/cpufeatures: Add support for fast short REP; MOVSB (Steve Best) [1838265]
+- [scsi] scsi: mpt3sas: A small correction in _base_process_reply_queue (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Fix sync irqs (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Detect tampered Aero and Sea adapters (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Don't call disable_irq from IRQ poll handler (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Remove pci-dma-compat wrapper API (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Remove superfluous memset() (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Update driver version to 35.100.00.00 (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Postprocessing of target and LUN reset (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Add functions to check if any cmd is outstanding on Target and LUN (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Rename and export interrupt mask/unmask functions (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Cancel the running work during host reset (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Dump system registers for debugging (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Memset config_cmds.reply buffer with zeros (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Fix kdoc comments format (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Fix set but unused variable (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Fix error returns in BRM_status_show (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Fix unlock imbalance (Tomas Henzl) [1851440]
+- [scsi] scsi: mpt3sas: Fix spelling mistake (Tomas Henzl) [1851440]
+- [s390] s390/zcrypt: Fix ZCRYPT_PERDEV_REQCNT ioctl (Claudio Imbrenda) [1885962]
+- [scsi] scsi: megaraid: Make smp_affinity_enable static (Tomas Henzl) [1860910]
+- [scsi] remove ioremap_nocache and devm_ioremap_nocache (Tomas Henzl) [1860910]
+- [scsi] scsi: megaraid: Remove set but unused variable (Tomas Henzl) [1860910]
+- [scsi] scsi: megaraid: Fix compilation warnings (Tomas Henzl) [1860910]
+- [scsi] scsi: megaraid: Fix kdoc comments format (Tomas Henzl) [1860910]
+- [scsi] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 13 (Tomas Henzl) [1860910]
+- [net] ethtool: Add support for 100Gbps per lane link modes (Ivan Vecera) [1879202]
+
+* Mon Nov 16 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-250.el8]
+- [netdrv] ibmveth: Fix use of ibmveth in a bridge (Steve Best) [1893294]
+- [x86] ima: add a new CONFIG for loading arch-specific policies (Bruno Meneguele) [1869758]
+- [netdrv] e1000e: Add support for Meteor Lake (Ken Cox) [1838750]
+- [netdrv] intel-ethernet: clean up W=1 warnings in kdoc (Ken Cox) [1838750]
+- [netdrv] treewide: Use fallthrough pseudo-keyword (Ken Cox) [1838750]
+- [netdrv] e1000e: Remove unnecessary usages of memset (Ken Cox) [1838750]
+- [netdrv] e1000e: continue to init PHY even when failed to disable ULP (Ken Cox) [1838750]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Ken Cox) [1838750]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Ken Cox) [1838750]
+- [netdrv] e1000e: fix unused-function warning (Ken Cox) [1838750]
+- [netdrv] e1000e: Do not wake up the system via WOL if device wakeup is disabled (Ken Cox) [1838750]
+- [netdrv] e1000e: Relax condition to trigger reset for ME workaround (Ken Cox) [1838750]
+- [netdrv] e1000e: disable s0ix entry and exit flows for ME systems (Ken Cox) [1838750]
+- [netdrv] e1000e: Disable TSO for buffer overrun workaround (Ken Cox) [1838750]
+- [netdrv] e1000e: Warn if disabling ULP failed (Ken Cox) [1838750]
+- [scsi] scsi: fnic: Do not call 'scsi_done()' for unhandled commands (Govindarajulu Varadarajan) [1870397]
+- [netdrv] intel-ethernet: clean up W=1 warnings in kdoc (Corinna Vinschen) [1838749]
+- [netdrv] igbvf: use generic power management (Corinna Vinschen) [1838749]
+- [netdrv] ethernet/intel: Convert fallthrough code comments (Corinna Vinschen) [1838749]
+- [netdrv] net/intel: remove driver versions from Intel drivers (Corinna Vinschen) [1838749]
+- [net] SUNRPC: Properly set the @subbuf parameter of xdr_buf_subsegment() (Steve Dickson) [1884361]
+- [net] SUNRPC: Fix ("SUNRPC: Add "@len" parameter to gss_unwrap()") (Steve Dickson) [1884361]
+- [net] netfilter: nf_queue: do not release refcouts until nf_reinject is done (Florian Westphal) [1886557]
+- [net] netfilter: nf_queue: place bridge physports into queue_entry struct (Florian Westphal) [1886557]
+- [net] netfilter: nf_queue: make nf_queue_entry_release_refs static (Florian Westphal) [1886557]
+- [firewire] firewire: Deprecate Firewire support in RHEL8 (Prarit Bhargava) [1871863]
+- [lib] Add pldmfw library for PLDM firmware update (Patrick Talbert) [1878278]
+- [lib] bitops: introduce the for_each_set_clump8 macro (Patrick Talbert) [1878278]
+- [mm] x86/ioremap: Map EFI runtime services data as encrypted for SEV (Lenny Szubowicz) [1883134]
+- [powerpc] Revert "powerpc/powernv/idle: Replace CPU feature check with PVR check" (Steve Best) [1882365]
+- [powerpc] powerpc/xive: Do not expose a debugfs file when XIVE is disabled (Steve Best) [1854526]
+- [kvm] powerpc/xive: Enforce load-after-store ordering when StoreEOI is active (Steve Best) [1854526]
+- [powerpc] powerpc/xive: Add a debugfs file to dump internal XIVE state (Steve Best) [1854526]
+- [net] openvswitch: add TTL decrement action (Eelco Chaudron) [1762450]
+
+* Thu Nov 12 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-249.el8]
+- [kernel] futex: Adjust absolute futex timeouts with per time namespace offset (Waiman Long) [1548297]
+- [kernel] futex: Remove unused or redundant includes (Waiman Long) [1548297]
+- [include] vdso: Fix clocksource.h macro detection (Waiman Long) [1548297]
+- [x86] um: Fix header inclusion (Waiman Long) [1548297]
+- [arm64] arm64: vdso32: make vdso32 install conditional (Waiman Long) [1548297]
+- [arm64] ARM64: vdso32: Install vdso32 from vdso_install (Waiman Long) [1548297]
+- [arm64] vdso/treewide: Add vdso_data pointer argument to __arch_get_hw_counter() (Waiman Long) [1548297]
+- [kernel] timekeeping/vsyscall: Provide vdso_update_begin/end() (Waiman Long) [1548297]
+- [include] lib/vdso: Allow to add architecture-specific vdso data (Waiman Long) [1548297]
+- [arm64] arm64: enable time namespace support (Waiman Long) [1548297]
+- [arm64] arm64/vdso: Restrict splitting VVAR VMA (Waiman Long) [1548297]
+- [arm64] arm64/vdso: Handle faults on timens page (Waiman Long) [1548297]
+- [arm64] arm64/vdso: Add time namespace page (Waiman Long) [1548297]
+- [arm64] arm64/vdso: Zap vvar pages when switching to a time namespace (Waiman Long) [1548297]
+- [arm64] arm64/vdso: use the fault callback to map vvar pages (Waiman Long) [1548297]
+- [arm64] arm64: compat: Allow 32-bit vdso and sigpage to co-exist (Waiman Long) [1548297]
+- [x86] x86/vdso: Unbreak paravirt VDSO clocks (Waiman Long) [1548297]
+- [lib] lib/vdso: Provide sanity check for cycles (again) (Waiman Long) [1548297]
+- [kernel] clocksource: Remove obsolete ifdef (Waiman Long) [1548297]
+- [tools] selftests/timens: handle a case when alarm clocks are not supported (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Add --eh-frame-hdr to ldflags (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Add -fasynchronous-unwind-tables to cflags (Waiman Long) [1548297]
+- [arm64] arm64: vdso: use consistent 'map' nomenclature (Waiman Long) [1548297]
+- [arm64] arm64: vdso: use consistent 'abi' nomenclature (Waiman Long) [1548297]
+- [arm64] arm64: vdso: simplify arch_vdso_type ifdeffery (Waiman Long) [1548297]
+- [arm64] arm64: vdso: remove aarch32_vdso_pages (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Add '-Bsymbolic' to ldflags (Waiman Long) [1548297]
+- [x86] x86/vdso/vdso2c: Convert iterators to unsigned (Waiman Long) [1548297]
+- [x86] x86/vdso/vdso2c: Correct error messages on file open (Waiman Long) [1548297]
+- [include] vdso/datapage: Use correct clock mode name in comment (Waiman Long) [1548297]
+- [arm64] arm64: vdso: don't free unallocated pages (Waiman Long) [1548297]
+- [fs] proc, time/namespace: Show clock symbolic names in /proc/pid/timens_offsets (Waiman Long) [1548297]
+- [kernel] time/namespace: Add max_time_namespaces ucount (Waiman Long) [1548297]
+- [kernel] time/namespace: Fix time_for_children symlink (Waiman Long) [1548297]
+- [arm64] arm64: compat: Fix syscall number of compat_clock_getres (Waiman Long) [1548297]
+- [tools] selftests/timens: Remove duplicated include <time.h> (Waiman Long) [1548297]
+- [kernel] sys/sysinfo: Respect boottime inside time namespace (Waiman Long) [1548297]
+- [clocksource] clocksource/drivers/arm_arch_timer: Fix vDSO clockmode when vDSO disabled (Waiman Long) [1548297]
+- [lib] lib/vdso: Enable common headers (Waiman Long) [1548297]
+- [x86] x86/vdso: Enable x86 to use common headers (Waiman Long) [1548297]
+- [arm64] arm64: vdso32: Include common headers in the vdso library (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Include common headers in the vdso library (Waiman Long) [1548297]
+- [arm64] arm64: Introduce asm/vdso/processor.h (Waiman Long) [1548297]
+- [arm64] arm64: vdso32: Code clean up (Waiman Long) [1548297]
+- [include] linux/elfnote.h: Replace elf.h with UAPI equivalent (Waiman Long) [1548297]
+- [include] common: Introduce processor.h (Waiman Long) [1548297]
+- [include] linux/ktime.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/jiffies.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/time64.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/time32.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/time.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/math64.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/clocksource.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [arm64] arm64: Introduce asm/vdso/clocksource.h (Waiman Long) [1548297]
+- [x86] x86: Introduce asm/vdso/clocksource.h (Waiman Long) [1548297]
+- [include] linux/limits.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/bits.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/const.h: Extract common header for vDSO (Waiman Long) [1548297]
+- [include] linux/bits.h: make BIT(), GENMASK(), and friends available in assembly (Waiman Long) [1548297]
+- [lib] lib/vdso: Allow architectures to provide the vdso data pointer (Waiman Long) [1548297]
+- [lib] lib/vdso: Allow architectures to override the ns shift operation (Waiman Long) [1548297]
+- [lib] lib/vdso: Allow fixed clock mode (Waiman Long) [1548297]
+- [include] lib/vdso: Move VCLOCK_TIMENS to vdso_clock_modes (Waiman Long) [1548297]
+- [kernel] lib/vdso: Avoid highres update if clocksource is not VDSO capable (Waiman Long) [1548297]
+- [lib] lib/vdso: Cleanup clock mode storage leftovers (Waiman Long) [1548297]
+- [arm64] ARM/arm64: vdso: Use common vdso clock mode storage (Waiman Long) [1548297]
+- [x86] x86/vdso: Use generic VDSO clock mode storage (Waiman Long) [1548297]
+- [kernel] clocksource: Add common vdso clock mode storage (Waiman Long) [1548297]
+- [x86] x86/vdso: Move VDSO clocksource state tracking to callback (Waiman Long) [1548297]
+- [include] clocksource: Cleanup struct clocksource and documentation (Waiman Long) [1548297]
+- [lib] lib/vdso: Allow the high resolution parts to be compiled out (Waiman Long) [1548297]
+- [lib] lib/vdso: Only read hrtimer_res when needed in __cvdso_clock_getres() (Waiman Long) [1548297]
+- [x86] x86/vdso: Mark the TSC clocksource path likely (Waiman Long) [1548297]
+- [kernel] lib/vdso: Update coarse timekeeper unconditionally (Waiman Long) [1548297]
+- [kernel] lib/vdso: Make __arch_update_vdso_data() logic understandable (Waiman Long) [1548297]
+- [kernel] alarmtimer: Unregister wakeup source when module get fails (Waiman Long) [1548297]
+- [tools] selftests/timens: Check for right timens offsets after fork and exec (Waiman Long) [1548297]
+- [tools] selftests/timens: Add a simple perf test for clock_gettime() (Waiman Long) [1548297]
+- [tools] selftests/timens: Add timer offsets test (Waiman Long) [1548297]
+- [tools] selftests/timens: Add procfs selftest (Waiman Long) [1548297]
+- [tools] selftests/timens: Add a test for clock_nanosleep() (Waiman Long) [1548297]
+- [tools] selftests/timens: Add a test for timerfd (Waiman Long) [1548297]
+- [tools] selftests/timens: Add Time Namespace test for supported clocks (Waiman Long) [1548297]
+- [fs] fs/proc: Introduce /proc/pid/timens_offsets (Waiman Long) [1548297]
+- [x86] x86/vdso: Zap vvar pages when switching to a time namespace (Waiman Long) [1548297]
+- [x86] x86/vdso: On timens page fault prefault also VVAR page (Waiman Long) [1548297]
+- [x86] x86/vdso: Handle faults on timens page (Waiman Long) [1548297]
+- [kernel] time: Allocate per-timens vvar page (Waiman Long) [1548297]
+- [x86] x86/vdso: Add time napespace page (Waiman Long) [1548297]
+- [x86] x86/vdso: Provide vdso_data offset on vvar_page (Waiman Long) [1548297]
+- [lib] lib/vdso: Prepare for time namespace support (Waiman Long) [1548297]
+- [x86] x86/vdso: Restrict splitting VVAR VMA (Waiman Long) [1548297]
+- [fs] fs/proc: Respect boottime inside time namespace for /proc/uptime (Waiman Long) [1548297]
+- [kernel] posix-timers: Make clock_nanosleep() time namespace aware (Waiman Long) [1548297]
+- [kernel] hrtimers: Prepare hrtimer_nanosleep() for time namespaces (Waiman Long) [1548297]
+- [kernel] alarmtimer: Make nanosleep() time namespace aware (Waiman Long) [1548297]
+- [kernel] posix-timers: Make timer_settime() time namespace aware (Waiman Long) [1548297]
+- [fs] timerfd: Make timerfd_settime() time namespace aware (Waiman Long) [1548297]
+- [kernel] time: Add do_timens_ktime_to_host() helper (Waiman Long) [1548297]
+- [kernel] posix-clocks: Wire up clock_gettime() with timens offsets (Waiman Long) [1548297]
+- [kernel] posix-timers: Use clock_get_ktime() in common_timer_get() (Waiman Long) [1548297]
+- [kernel] posix-clocks: Introduce clock_get_ktime() callback (Waiman Long) [1548297]
+- [kernel] alarmtimer: Provide get_timespec() callback (Waiman Long) [1548297]
+- [kernel] alarmtimer: Rename gettime() callback to get_ktime() (Waiman Long) [1548297]
+- [kernel] posix-clocks: Rename .clock_get_timespec() callbacks accordingly (Waiman Long) [1548297]
+- [kernel] posix-clocks: Rename the clock_get() callback to clock_get_timespec() (Waiman Long) [1548297]
+- [kernel] time: Add timens_offsets to be used for tasks in time namespace (Waiman Long) [1548297]
+- [kernel] ns: Introduce Time Namespace (Waiman Long) [1548297]
+- [lib] lib/vdso: Mark do_hres() and do_coarse() as __always_inline (Waiman Long) [1548297]
+- [lib] lib/vdso: Avoid duplication in __cvdso_clock_getres() (Waiman Long) [1548297]
+- [lib] lib/vdso: Let do_coarse() return 0 to simplify the callsite (Waiman Long) [1548297]
+- [x86] x86/vdso: Remove unused VDSO_HAS_32BIT_FALLBACK (Waiman Long) [1548297]
+- [arm64] arm64: compat: vdso: Remove unused VDSO_HAS_32BIT_FALLBACK (Waiman Long) [1548297]
+- [lib] lib/vdso: Remove checks on return value for 32 bit vDSO (Waiman Long) [1548297]
+- [lib] lib/vdso: Remove VDSO_HAS_32BIT_FALLBACK (Waiman Long) [1548297]
+- [arm64] arm64: compat: vdso: Expose BUILD_VDSO32 (Waiman Long) [1548297]
+- [include] lib/vdso: Add unlikely() hint into vdso_read_begin() (Waiman Long) [1548297]
+- [x86] y2038: vdso: change time_t to __kernel_old_time_t (Waiman Long) [1548297]
+- [uapi] y2038: add __kernel_old_timespec and __kernel_old_time_t (Waiman Long) [1548297]
+- [arm64] timekeeping/vsyscall: Update VDSO data unconditionally (Waiman Long) [1548297]
+- [x86] um: Fix VDSO compiler warning (Waiman Long) [1548297]
+- [kernel] timekeeping/vsyscall: Prevent math overflow in BOOTTIME update (Waiman Long) [1548297]
+- [arm64] arm64: compat: vdso: Use legacy syscalls as fallback (Waiman Long) [1548297]
+- [x86] x86/vdso/32: Use 32bit syscall fallback (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Cleanup Makefiles (Waiman Long) [1548297]
+- [arm64] arm64: vdso: fix flip/flop vdso build bug (Waiman Long) [1548297]
+- [x86] x86/vdso: Fix flip/flop vdso build bug (Waiman Long) [1548297]
+- [kernel] timekeeping/vsyscall: Use __iter_div_u64_rem() (Waiman Long) [1548297]
+- [arm64] arm64: compat: Fix __arch_get_hw_counter() implementation (Waiman Long) [1548297]
+- [arm64] arm64: Fix __arch_get_hw_counter() implementation (Waiman Long) [1548297]
+- [arm64] arm64: compat: No need for pre-ARMv7 barriers on an ARMv8 system (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Remove unnecessary asm-offsets.c definitions (Waiman Long) [1548297]
+- [include] vdso: Remove superfluous #ifdef __KERNEL__ in vdso/datapage.h (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Enable vDSO compat support (Waiman Long) [1548297]
+- [arm64] arm64: compat: Get sigreturn trampolines from vDSO (Waiman Long) [1548297]
+- [arm64] arm64: elf: VDSO code page discovery (Waiman Long) [1548297]
+- [arm64] arm64: compat: VDSO setup for compat layer (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Refactor vDSO code (Waiman Long) [1548297]
+- [arm64] arm64: compat: Add vDSO (Waiman Long) [1548297]
+- [arm64] arm64: compat: Generate asm offsets for signals (Waiman Long) [1548297]
+- [arm64] arm64: compat: Expose signal related structures (Waiman Long) [1548297]
+- [arm64] arm64: compat: Add missing syscall numbers (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Build vDSO with -ffixed-x18 (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Substitute gettimeofday() with C implementation (Waiman Long) [1548297]
+- [lib] lib/vdso: Build 32 bit specific functions in the right context (Waiman Long) [1548297]
+- [lib] lib/vdso: Make __cvdso_clock_getres() static (Waiman Long) [1548297]
+- [lib] lib/vdso: Make clock_getres() POSIX compliant again (Waiman Long) [1548297]
+- [lib] lib/vdso/32: Provide legacy syscall fallbacks (Waiman Long) [1548297]
+- [lib] lib/vdso: Move fallback invocation to the callers (Waiman Long) [1548297]
+- [lib] lib/vdso/32: Remove inconsistent NULL pointer checks (Waiman Long) [1548297]
+- [x86] lib/vdso: Make delta calculation work correctly (Waiman Long) [1548297]
+- [x86] x86/vdso: Add clock_gettime64() entry point (Waiman Long) [1548297]
+- [x86] x86/vdso: Add clock_getres() entry point (Waiman Long) [1548297]
+- [x86] x86/vdso: Switch to generic vDSO implementation (Waiman Long) [1548297]
+- [x86] x86/vdso: Prevent segfaults due to hoisted vclock reads (Waiman Long) [1548297]
+- [kernel] timekeeping: Provide a generic update_vsyscall() implementation (Waiman Long) [1548297]
+- [lib] lib/vdso: Add compat support (Waiman Long) [1548297]
+- [lib] lib/vdso: Provide generic VDSO implementation (Waiman Long) [1548297]
+- [include] hrtimer: Split out hrtimer defines into separate header (Waiman Long) [1548297]
+- [include] vdso: Define standardized vdso_datapage (Waiman Long) [1548297]
+- [arm64] arm64: arch_timer: mark functions as __always_inline (Waiman Long) [1548297]
+- [x86] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 223 (Waiman Long) [1548297]
+- [clocksource] clocksource/drivers/arm_arch_timer: Don't trace count reader functions (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Explicitly add build-id option (Waiman Long) [1548297]
+- [x86] gcc-9: properly declare the {pv, hv}clock_page storage (Waiman Long) [1548297]
+- [arm64] arm64: vdso: Fix clock_getres() for CLOCK_REALTIME (Waiman Long) [1548297]
+- [arm64] arm64: compat: Refactor aarch32_alloc_vdso_pages() (Waiman Long) [1548297]
+- [arm64] arm64: compat: Split kuser32 (Waiman Long) [1548297]
+- [arm64] arm64: compat: Alloc separate pages for vectors and sigpage (Waiman Long) [1548297]
+- [arm64] arm64: arch_timer: Ensure counter register reads occur with seqlock held (Waiman Long) [1548297]
+- [clocksource] clocksource/arm_arch_timer: Use arch_timer_read_counter to access stable counters (Waiman Long) [1548297]
+- [clocksource] clocksource/arm_arch_timer: Remove use of workaround static key (Waiman Long) [1548297]
+- [arm64] clocksource/arm_arch_timer: Drop use of static key in arch_timer_reg_read_stable (Waiman Long) [1548297]
+- [clocksource] clocksource/arm_arch_timer: Direcly assign set_next_event workaround (Waiman Long) [1548297]
+- [arm64] arm64: Use arch_timer_read_counter instead of arch_counter_get_cntvct (Waiman Long) [1548297]
+- [watchdog] watchdog/sbsa: Use arch_timer_read_counter instead of arch_counter_get_cntvct (Waiman Long) [1548297]
+- [kernel] alarmtimer: Return correct remaining time (Waiman Long) [1548297]
+- [arm64] arm64: vdso: use $(LD) instead of $(CC) to link VDSO (Waiman Long) [1548297]
+- [arm64] arm64: vdso: fix and clean-up Makefile (Waiman Long) [1548297]
+- [x86] x86/vdso: Remove hpet_page from vDSO (Waiman Long) [1548297]
+- [scripts] checksyscalls: fix up mq_timedreceive and stat exceptions (Waiman Long) [1548297]
+- [uapi] time: Add time_types.h (Waiman Long) [1548297]
+- [uapi] socket: Add struct __kernel_sock_timeval (Waiman Long) [1548297]
+- [arm64] arm64: asm-offsets: remove unused offsets (Waiman Long) [1548297]
+- [arm64] y2038: add 64-bit time_t syscalls to all 32-bit architectures (Waiman Long) [1548297]
+- [arm64] arm64: replace arm64-obj-* in Makefile with obj-* (Waiman Long) [1548297]
+- [x86] x86/vdso: Remove obsolete "fake section table" reservation (Waiman Long) [1548297]
+- [x86] x86/vdso: Rename variable to fix -Wshadow warning (Waiman Long) [1548297]
+- [x86] x86/vdso: Rearrange do_hres() to improve code generation (Waiman Long) [1548297]
+- [x86] x86/vdso: Document vgtod_ts better (Waiman Long) [1548297]
+- [x86] x86/vdso: Remove "memory" clobbers in the vDSO syscall fallbacks (Waiman Long) [1548297]
+- [x86] x86/vdso: Initialize the CPU/node NR segment descriptor earlier (Waiman Long) [1548297]
+- [x86] x86/vdso: Introduce helper functions for CPU and node number (Waiman Long) [1548297]
+- [x86] x86/segments/64: Rename the GDT PER_CPU entry to CPU_NUMBER (Waiman Long) [1548297]
+- [x86] x66/vdso: Add CLOCK_TAI support (Waiman Long) [1548297]
+- [x86] x86/vdso: Move cycle_last handling into the caller (Waiman Long) [1548297]
+- [x86] x86/vdso: Simplify the invalid vclock case (Waiman Long) [1548297]
+- [x86] x86/vdso: Replace the clockid switch case (Waiman Long) [1548297]
+- [x86] x86/vdso: Collapse coarse functions (Waiman Long) [1548297]
+- [x86] x86/vdso: Collapse high resolution functions (Waiman Long) [1548297]
+- [x86] x86/vdso: Introduce and use vgtod_ts (Waiman Long) [1548297]
+- [x86] x86/vdso: Use unsigned int consistently for vsyscall_gtod_data:: Seq (Waiman Long) [1548297]
+- [x86] x86/vdso: Enforce 64bit clocksource (Waiman Long) [1548297]
+- [x86] x86/time: Implement clocksource_arch_init() (Waiman Long) [1548297]
+- [kernel] clocksource: Provide clocksource_arch_init() (Waiman Long) [1548297]
+- [fs] fs/proc/uptime.c: use ktime_get_boottime_ts64 (Waiman Long) [1548297]
+- [include] y2038: Provide aliases for compat helpers (Waiman Long) [1548297]
+- [fs] kernel: add kcompat_sys_{f,}statfs64() (Waiman Long) [1548297]
+- [kernel] sysinfo: Remove get_monotonic_boottime() (Waiman Long) [1548297]
+- [kernel] posix-timers: Use new ktime_get_*_ts64() helpers (Waiman Long) [1548297]
+- [kernel] time: Use ktime_get_real_seconds() in time syscall (Waiman Long) [1548297]
+- [include] time: Introduce struct __kernel_itimerspec (Waiman Long) [1548297]
+- [scripts] kconfig: improve the recursive dependency report (Bruno Meneguele) [1890578]
+- [scripts] kconfig: report recursive dependency involving 'imply' (Bruno Meneguele) [1890578]
+- [scripts] kconfig: error out when seeing recursive dependency (Bruno Meneguele) [1890578]
+- [scsi] scsi: hpsa: Update copyright (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Remove pci-dma-compat wrapper API (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Use fallthrough pseudo-keyword (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Correct ctrl queue depth (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Bump version (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Increase controller error handling timeout (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Increase queue depth for external LUNs (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Correct rare oob condition (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: hpsa_ioctl(): Tidy up a bit (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Get rid of compat_alloc_user_space() (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Don't bother with vmalloc for BIG_IOCTL_Command_struct (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: Lift {BIG_, }IOCTL_Command_struct copy{in, out} into hpsa_ioctl() (Joseph Szczypek) [1861541]
+- [scsi] scsi: hpsa: remove ioremap_nocache and devm_ioremap_nocache (Joseph Szczypek) [1861541]
+- [tools] selftests/powerpc: Make alignment handler test P9N DD2.1 vector CI load workaround (Gustavo Duarte) [1887442]
+- [powerpc] powerpc: Fix undetected data corruption with P9N DD2.1 VSX CI load emulation (Gustavo Duarte) [1887442]
+- [scsi] scsi: smartpqi: Update copyright (Don Brace) [1861538]
+- [scsi] scsi: smartpqi: Bump version to 1.2.16-010 (Don Brace) [1861538]
+- [scsi] scsi: smartpqi: Add RAID bypass counter (Don Brace) [1861538]
+- [scsi] scsi: smartpqi: Avoid crashing kernel for controller issues (Don Brace) [1861538]
+- [scsi] scsi: smartpqi: Update logical volume size after expansion (Don Brace) [1861538]
+- [scsi] scsi: smartpqi: Add id support for SmartRAID 3152-8i (Don Brace) [1861538]
+- [scsi] scsi: smartpqi: Identify physical devices without issuing INQUIRY (Don Brace) [1861538]
+- [mm] mm: simplify find_min_pfn_with_active_regions() (Baoquan He) [1844157]
+- [mm] mm: clean up free_area_init_node() and its helpers (Baoquan He) [1844157]
+- [mm] mm: rename free_area_init_node() to free_area_init_memoryless_node() (Baoquan He) [1844157]
+- [mm] mm: free_area_init: allow defining max_zone_pfn in descending order (Baoquan He) [1844157]
+- [powerpc] mm: remove early_pfn_in_nid() and CONFIG_NODES_SPAN_OTHER_NODES (Baoquan He) [1844157]
+- [mm] mm: memmap_init: iterate over memblock regions rather that check each PFN (Baoquan He) [1844157]
+- [mm] arm64: simplify detection of memory zone boundaries for UMA configs (Baoquan He) [1844157]
+- [mm] mm: use free_area_init() instead of free_area_init_nodes() (Baoquan He) [1844157]
+- [mm] mm: free_area_init: use maximal zone PFNs rather than zone sizes (Baoquan He) [1844157]
+- [mm] mm: remove CONFIG_HAVE_MEMBLOCK_NODE_MAP option (Baoquan He) [1844157]
+- [mm] numa: make "nr_node_ids" unsigned int (Baoquan He) [1844157]
+- [mm] mm: make early_pfn_to_nid() and related defintions close to each other (Baoquan He) [1844157]
+- [mm] mm: memblock: replace dereferences of memblock_region.nid with API calls (Baoquan He) [1844157]
+- [mm] mm: factor out next_present_section_nr() (Baoquan He) [1844157]
+- [mm] mm/page_alloc: fix and rework pfn handling in memmap_init_zone() (Baoquan He) [1844157]
+- [mm] mm/page_alloc: skip non present sections on zone initialization (Baoquan He) [1844157]
+- [mm] mm: move mirrored memory specific code outside of memmap_init_zone (Baoquan He) [1844157]
+- [mm] mm: calculate deferred pages after skipping mirrored memory (Baoquan He) [1844157]
+- [mm] mm/memblock.c: fix a typo in __next_mem_pfn_range() comments (Baoquan He) [1844157]
+- [mm] memblock: remove memblock_{set, clear}_region_flags (Baoquan He) [1844157]
+- [mm] mm: replace all open encodings for NUMA_NO_NODE (Baoquan He) [1844157]
+- [powerpc] lockdep: Only trace IRQ edges (Waiman Long) [1885084]
+- [arm64] arm64: Implement arch_irqs_disabled() (Waiman Long) [1885084]
+- [include] locking/lockdep: Cleanup (Waiman Long) [1885084]
+- [include] lockdep: Use raw_cpu_*() for per-cpu variables (Waiman Long) [1885084]
+- [x86] locking/seqlock, headers: Untangle the spaghetti monster (Waiman Long) [1885084]
+- [misc] vmw_balloon: Explicitly include linux/io.h for virt_to_phys() (Waiman Long) [1885084]
+- [x86] x86: i8259: Add missing include file (Waiman Long) [1885084]
+- [include] seqcount: More consistent seqprop names (Waiman Long) [1885084]
+- [include] seqcount: Compress SEQCNT_LOCKNAME_ZERO() (Waiman Long) [1885084]
+- [include] seqlock: Fold seqcount_LOCKNAME_init() definition (Waiman Long) [1885084]
+- [include] seqlock: Fold seqcount_LOCKNAME_t definition (Waiman Long) [1885084]
+- [include] seqlock: s/__SEQ_LOCKDEP/__SEQ_LOCK/g (Waiman Long) [1885084]
+- [kernel] hrtimer: Use sequence counter with associated raw spinlock (Waiman Long) [1885084]
+- [kernel] timekeeping: Use sequence counter with associated raw spinlock (Waiman Long) [1885084]
+- [kernel] timekeeping: Use proper seqcount initializer (Waiman Long) [1885084]
+- [init] sched: tasks: Use sequence counter with associated spinlock (Waiman Long) [1885084]
+- [kernel] lockdep: Refactor IRQ trace events fields into struct (Waiman Long) [1885084]
+- [drm] dma-buf: Use sequence counter with associated wound/wait mutex (Waiman Long) [1885084]
+- [dma-buf] dma-buf: Remove custom seqcount lockdep class key (Waiman Long) [1885084]
+- [include] seqlock: Align multi-line macros newline escapes at 72 columns (Waiman Long) [1885084]
+- [documentation] seqlock: Extend seqcount API with associated locks (Waiman Long) [1885084]
+- [include] seqlock: lockdep assert non-preemptibility on seqcount_t write (Waiman Long) [1885084]
+- [lib] lockdep: Add preemption enabled/disabled assertion APIs (Waiman Long) [1885084]
+- [include] seqlock: Implement raw_seqcount_begin() in terms of raw_read_seqcount() (Waiman Long) [1885084]
+- [include] seqlock: Add kernel-doc for seqcount_t and seqlock_t APIs (Waiman Long) [1885084]
+- [include] seqlock: Reorder seqcount_t and seqlock_t API definitions (Waiman Long) [1885084]
+- [include] seqlock: seqcount_t latch: End read sections with read_seqcount_retry() (Waiman Long) [1885084]
+- [include] seqlock: Properly format kernel-doc code samples (Waiman Long) [1885084]
+- [documentation] Documentation: locking: Describe seqlock design and usage (Waiman Long) [1885084]
+- [include] seqlock: Require WRITE_ONCE surrounding raw_seqcount_barrier (Waiman Long) [1885084]
+- [include] seqlock, kcsan: Add annotations for KCSAN (Waiman Long) [1885084]
+- [include] include/linux/compiler.h: Introduce data_race(expr) macro (Waiman Long) [1885084]
+- [kernel] kcsan: Add Kernel Concurrency Sanitizer infrastructure (Waiman Long) [1885084]
+- [include] locking/qspinlock: Do not include atomic.h from qspinlock_types.h (Waiman Long) [1885084]
+- [include] locking/atomic: Move ATOMIC_INIT into linux/types.h (Waiman Long) [1885084]
+- [connector] connector/cn_proc: Protect send_msg() with a local lock (Waiman Long) [1885084]
+- [mm] mm/swap: Use local_lock for protection (Waiman Long) [1885084]
+- [include] radix-tree: Use local_lock for protection (Waiman Long) [1885084]
+- [include] locking: Introduce local_lock() (Waiman Long) [1885084]
+- [documentation] Documentation/locking/locktypes: Minor copy editor fixes (Waiman Long) [1885084]
+- [documentation] Documentation/locking/locktypes: Further clarifications and wordsmithing (Waiman Long) [1885084]
+- [documentation] Documentation: Add lock ordering and nesting documentation (Waiman Long) [1885084]
+- [mm] mm/swap.c: trivial mark_page_accessed() cleanup (Waiman Long) [1885084]
+- [lib] radix tree: Remove radix_tree_maybe_preload_order (Waiman Long) [1885084]
+- [kernel] locking/lockdep: Fix "USED" <- "IN-NMI" inversions (Waiman Long) [1885084]
+- [kernel] lockdep: Remove lockdep_hardirq{s_enabled, _context}() argument (Waiman Long) [1885084]
+- [kernel] lockdep: Change hardirq{s_enabled, _context} to per-cpu variables (Waiman Long) [1885084]
+- [kernel] x86/entry: Rename trace_hardirqs_off_prepare() (Waiman Long) [1885084]
+- [kernel] lockdep: Prepare for NMI IRQ state tracking (Waiman Long) [1885084]
+- [include] lockdep: Move list.h inclusion into lockdep.h (Waiman Long) [1885084]
+- [include] lockdep: Split header file into lockdep and lockdep_types (Waiman Long) [1885084]
+- [kernel] lockdep: __always_inline more for noinstr (Waiman Long) [1885084]
+- [kernel] lockdep: Prepare for noinstr sections (Waiman Long) [1885084]
+- [kernel] tracing: Provide lockdep less trace_hardirqs_on/off() variants (Waiman Long) [1885084]
+- [include] vmlinux.lds.h: Create section for protection against instrumentation (Waiman Long) [1885084]
+- [kernel] locking/lockdep: Replace zero-length array with flexible-array (Waiman Long) [1885084]
+- [kernel] hrtimer: Don't dereference the hrtimer pointer after the callback (Waiman Long) [1885084]
+- [kernel] hrtimer: Add missing sparse annotation for __run_timer() (Waiman Long) [1885084]
+- [kernel] lockdep: Always inline lockdep_{off,on}() (Waiman Long) [1885084]
+- [kernel] locking/lockdep: Improve 'invalid wait context' splat (Waiman Long) [1885084]
+- [kernel] lockdep: Rename trace_{hard, soft}{irq_context, irqs_enabled}() (Waiman Long) [1885084]
+- [kernel] lockdep: Rename trace_softirqs_{on,off}() (Waiman Long) [1885084]
+- [kernel] lockdep: Rename trace_hardirq_{enter, exit}() (Waiman Long) [1885084]
+- [kernel] completion: Use lockdep_assert_RT_in_threaded_ctx() in complete_all() (Waiman Long) [1885084]
+- [usb] completion: Use simple wait queues (Waiman Long) [1885084]
+- [kernel] sched/swait: Prepare usage in completions (Waiman Long) [1885084]
+- [kernel] lockdep: Add posixtimer context tracing bits (Waiman Long) [1885084]
+- [kernel] lockdep: Annotate irq_work (Waiman Long) [1885084]
+- [kernel] lockdep: Add hrtimer context tracing bits (Waiman Long) [1885084]
+- [include] lockdep: Introduce wait-type checks (Waiman Long) [1885084]
+- [kernel] lockdep: Teach lockdep about "USED" <- "IN-NMI" inversions (Waiman Long) [1885084]
+- [kernel] locking/lockdep: Rework lockdep_lock (Waiman Long) [1885084]
+- [kernel] locking/lockdep: Fix bad recursion pattern (Waiman Long) [1885084]
+- [s390] s390/ftrace: fix endless recursion in function_graph tracer (Waiman Long) [1885084]
+- [s390] s390/time: ensure get_clock_monotonic() returns monotonic values (Waiman Long) [1885084]
+- [kernel] irq_work: Fix IRQ_WORK_BUSY bit clearing (Waiman Long) [1885084]
+- [kernel] irq_work: Slightly simplify IRQ_WORK_PENDING clearing (Waiman Long) [1885084]
+- [kernel] irq_work: Fix irq_work_claim() memory ordering (Waiman Long) [1885084]
+- [kernel] irq_work: Convert flags to atomic_t (Waiman Long) [1885084]
+- [kernel] kprobes: Prohibit probing on lockdep functions (Waiman Long) [1885084]
+- [kernel] kprobes: Prohibit probing on hardirq tracers (Waiman Long) [1885084]
+- [lib] locking/lockdep: Make global debug_locks* variables read-mostly (Waiman Long) [1885084]
+- [kernel] locking/lockdep: Delete unnecessary #include (Waiman Long) [1885084]
+- [kernel] tracing: More reverting of "tracing: Centralize preemptirq tracepoints and unify their usage" (Waiman Long) [1885084]
+- [kernel] tracing/irqsoff: Handle preempt_count for different configs (Waiman Long) [1885084]
+- [kernel] tracing: Partial revert of "tracing: Centralize preemptirq tracepoints and unify their usage" (Waiman Long) [1885084]
+- [kernel] tracing: irqsoff: Account for additional preempt_disable (Waiman Long) [1885084]
+- [kernel] tracing: Centralize preemptirq tracepoints and unify their usage (Waiman Long) [1885084]
+- [kernel] tracing/irqsoff: Split reset into separate functions (Waiman Long) [1885084]
+- [kernel] sched/fair: Use dst group while checking imbalance for NUMA balancer (Phil Auld) [1877360]
+- [kernel] sched/fair: Reduce busy load balance interval (Phil Auld) [1877360]
+- [kernel] sched/fair: Reduce minimal imbalance threshold (Phil Auld) [1877360]
+- [kernel] sched/fair: Minimize concurrent LBs between domain level (Phil Auld) [1877360]
+- [kernel] sched/fair: Fix wrong cpu selecting from isolated domain (Phil Auld) [1877360]
+- [kernel] sched/fair: Relax constraint on task's load during load balance (Phil Auld) [1877360]
+- [kernel] sched/numa: Use runnable_avg to classify node (Phil Auld) [1877360]
+- [kernel] sched: Remove duplicated tick_nohz_full_enabled() check (Phil Auld) [1877360]
+- [kernel] sched: Warn if garbage is passed to default_wake_function() (Phil Auld) [1877360]
+- [kernel] sched: nohz: stop passing around unused "ticks" parameter (Phil Auld) [1877360]
+- [kernel] sched/fair: update_pick_idlest() Select group with lowest group_util when idle_cpus are equal (Phil Auld) [1877360]
+- [kernel] sched: Better document ttwu() (Phil Auld) [1877360]
+- [kernel] sched/fair: handle case of task_h_load() returning 0 (Phil Auld) [1877360]
+- [kernel] sched: Fix unreliable rseq cpu_id for new tasks (Phil Auld) [1877360]
+- [kernel] sched/core: s/WF_ON_RQ/WQ_ON_CPU/ (Phil Auld) [1877360]
+- [include] sched/core: Remove mmdrop() definition (Phil Auld) [1877360]
+- [kernel] sched/fair: Optimize dequeue_task_fair() (Phil Auld) [1877360]
+- [kernel] sched/pelt: Cleanup PELT divider (Phil Auld) [1877360]
+- [kernel] sched/fair: Fix NOHZ next idle balance (Phil Auld) [1877360]
+- [kernel] sched: correct SD_flags returned by tl->sd_flags() (Phil Auld) [1877360]
+- [kernel] sched/fair: Remove unused 'sd' parameter from scale_rt_capacity() (Phil Auld) [1877360]
+- [kernel] sched/idle, stop: Remove .get_rr_interval from sched_class (Phil Auld) [1877360]
+- [kernel] sched/core: Remove redundant 'preempt' param from sched_class->yield_to_task() (Phil Auld) [1877360]
+- [kernel] sched/pelt: Remove redundant cap_scale() definition (Phil Auld) [1877360]
+- [kernel] sched/pelt: Sync util/runnable_sum with PELT window when propagating (Phil Auld) [1877360]
+- [kernel] sched/cpuacct: Fix charge cpuacct.usage_sys (Phil Auld) [1877360]
+- [kernel] sched/cpuacct: Use __this_cpu_add() instead of this_cpu_ptr() (Phil Auld) [1877360]
+- [kernel] sched/fair: Fix unthrottle_cfs_rq() for leaf_cfs_rq list (Phil Auld) [1877360]
+- [kernel] sched/core: Simplify sched_init() (Phil Auld) [1877360]
+- [kernel] sched/fair: Mark sched_init_granularity __init (Phil Auld) [1877360]
+- [kernel] sched/core: Fix illegal RCU from offline CPUs (Phil Auld) [1877360]
+- [kernel] sched/fair: Use __this_cpu_read() in wake_wide() (Phil Auld) [1877360]
+- [kernel] sched: Extract the task putting code from pick_next_task() (Phil Auld) [1877360]
+- [kernel] sched: Make newidle_balance() static again (Phil Auld) [1877360]
+- [kernel] sched/fair: Remove distribute_running from CFS bandwidth (Phil Auld) [1877360]
+- [kernel] sched/fair: Simplify the code of should_we_balance() (Phil Auld) [1877360]
+- [kernel] sched/debug: Fix trival print_task() format (Phil Auld) [1877360]
+- [kernel] sched/debug: Factor out printing formats into common macros (Phil Auld) [1877360]
+- [kernel] sched/debug: Remove redundant macro define (Phil Auld) [1877360]
+- [kernel] sched/core: Remove unused rq::last_load_update_tick (Phil Auld) [1877360]
+- [kernel] sched/fair: Align rq->avg_idle and rq->avg_scan_cost (Phil Auld) [1877360]
+- [kernel] sched/fair: Improve spreading of utilization (Phil Auld) [1877360]
+- [kernel] sched/fair: Fix condition of avg_load calculation (Phil Auld) [1877360]
+- [kernel] kthread: Do not preempt current task if it is going to call schedule() (Phil Auld) [1877360]
+- [kernel] sched/core: Distribute tasks within affinity masks (Phil Auld) [1877360]
+- [kernel] time/sched_clock: Expire timer in hardirq context (Phil Auld) [1877360]
+- [kernel] sched/deadline: Make two functions static (Phil Auld) [1877360]
+- [mm] slab: store tagged freelist for off-slab slabmgmt (Waiman Long) [1887067]
+- [mm] mm/kasan: fix false positive invalid-free reports with CONFIG_KASAN_SW_TAGS=y (Waiman Long) [1887067]
+- [arm64] arm64: avoid clang warning about self-assignment (Waiman Long) [1887067]
+- [mm] kasan: add memory corruption identification for software tag-based mode (Waiman Long) [1887067]
+- [mm] mm/kasan: print frame description for stack bugs (Waiman Long) [1887067]
+- [mm] kasan: initialize tag to 0xff in __kasan_kmalloc (Waiman Long) [1887067]
+- [mm] kasan: Makefile: Replace -pg with CC_FLAGS_FTRACE (Waiman Long) [1887067]
+- [mm] x86/uaccess, kasan: Fix KASAN vs SMAP (Waiman Long) [1887067]
+- [mm] mm/kasan: Simplify stacktrace handling (Waiman Long) [1887067]
+- [mm] kasan: fix variable 'tag' set but not used warning (Waiman Long) [1887067]
+- [mm] slub: fix a crash with SLUB_DEBUG + KASAN_SW_TAGS (Waiman Long) [1887067]
+- [mm] kasan, slab: remove redundant kasan_slab_alloc hooks (Waiman Long) [1887067]
+- [mm] kasan, slab: make freelist stored without tags (Waiman Long) [1887067]
+- [mm] kasan, slab: fix conflicts with CONFIG_HARDENED_USERCOPY (Waiman Long) [1887067]
+- [mm] kasan: prevent tracing of tags.c (Waiman Long) [1887067]
+- [mm] kasan: fix random seed generation for tag-based mode (Waiman Long) [1887067]
+- [mm] slub: fix SLAB_CONSISTENCY_CHECKS + KASAN_SW_TAGS (Waiman Long) [1887067]
+- [mm] kasan, slub: fix more conflicts with CONFIG_SLAB_FREELIST_HARDENED (Waiman Long) [1887067]
+- [mm] kasan, slub: fix conflicts with CONFIG_SLAB_FREELIST_HARDENED (Waiman Long) [1887067]
+- [mm] kasan, slub: move kasan_poison_slab hook before page_address (Waiman Long) [1887067]
+- [mm] kmemleak: account for tagged pointers when calculating pointer range (Waiman Long) [1887067]
+- [mm] kasan, kmemleak: pass tagged pointers to kmemleak (Waiman Long) [1887067]
+- [mm] kasan: fix assigning tags twice (Waiman Long) [1887067]
+- [mm] kasan: mark file common so ftrace doesn't trace it (Waiman Long) [1887067]
+- [mm] kasan: fix krealloc handling for tag-based mode (Waiman Long) [1887067]
+- [mm] kasan: make tag based mode work with CONFIG_HARDENED_USERCOPY (Waiman Long) [1887067]
+- [arm64] kasan, arm64: use ARCH_SLAB_MINALIGN instead of manual aligning (Waiman Long) [1887067]
+- [mm] kasan: add SPDX-License-Identifier mark to source files (Waiman Long) [1887067]
+- [documentation] kasan: update documentation (Waiman Long) [1887067]
+- [arm64] kasan, arm64: select HAVE_ARCH_KASAN_SW_TAGS (Waiman Long) [1887067]
+- [mm] kasan: add __must_check annotations to kasan hooks (Waiman Long) [1887067]
+- [mm] kasan, mm, arm64: tag non slab memory allocated via pagealloc (Waiman Long) [1887067]
+- [arm64] kasan, arm64: add brk handler for inline instrumentation (Waiman Long) [1887067]
+- [mm] kasan: add hooks implementation for tag-based mode (Waiman Long) [1887067]
+- [mm] kasan: add bug reporting routines for tag-based mode (Waiman Long) [1887067]
+- [mm] kasan: split out generic_report.c from report.c (Waiman Long) [1887067]
+- [mm] kasan, mm: perform untagged pointers comparison in krealloc (Waiman Long) [1887067]
+- [mm] kasan, arm64: enable top byte ignore for the kernel (Waiman Long) [1887067]
+- [mm] kasan, arm64: fix up fault handling logic (Waiman Long) [1887067]
+- [mm] kasan: preassign tags to objects with ctors or SLAB_TYPESAFE_BY_RCU (Waiman Long) [1887067]
+- [arm64] kasan, arm64: untag address in _virt_addr_is_linear (Waiman Long) [1887067]
+- [arm64] kasan: add tag related helper functions (Waiman Long) [1887067]
+- [mm] kasan: initialize shadow to 0xff for tag-based mode (Waiman Long) [1887067]
+- [mm] kasan: rename kasan_zero_page to kasan_early_shadow_page (Waiman Long) [1887067]
+- [arm64] kasan, arm64: adjust shadow size for tag-based mode (Waiman Long) [1887067]
+- [mm] kasan: add CONFIG_KASAN_GENERIC and CONFIG_KASAN_SW_TAGS (Waiman Long) [1887067]
+- [mm] kasan: rename source files to reflect the new naming scheme (Waiman Long) [1887067]
+- [mm] kasan: move common generic and tag-based code to common.c (Waiman Long) [1887067]
+- [mm] kasan, slub: handle pointer tags in early_kmem_cache_node_alloc (Waiman Long) [1887067]
+- [mm] kasan, mm: change hooks signatures (Waiman Long) [1887067]
+- [arm64] arm64: kasan: Increase stack size for KASAN_EXTRA (Waiman Long) [1887067]
+- [s390] s390/cio: add cond_resched() in the slow_eval_known_fn() loop (Claudio Imbrenda) [1885961]
+- [s390] scsi: zfcp: fix missing erp_lock in port recovery trigger for point-to-point (Claudio Imbrenda) [1885876]
+- [tools] selftests/vm/gup_benchmark.c: match gup struct to kernel (Rafael Aquini) [1873952]
+- [uapi] redhat: Fix the number of KVM_CAP_S390_DIAG318 (Thomas Huth) [1659413]
+- [s390] setup: diag 318: refactor struct (Thomas Huth) [1659413]
+- [s390] kvm: diagnose 0x318 sync and reset (Thomas Huth) [1659413]
+- [mm] swap: reduce lock contention on swap cache from swap slots allocation (Nico Pache) [1839049]
+- [mm] mm/swapfile.c: use prandom_u32_max() (Nico Pache) [1839049]
+- [mm] swap: try to scan more free slots even when fragmented (Nico Pache) [1839049]
+- [mm] mm/swapfile.c: move inode_lock out of claim_swapfile (Nico Pache) [1839049]
+- [mm] vfs: don't allow writes to swap files (Nico Pache) [1839049]
+- [mm] mm: set S_SWAPFILE on blockdev swap devices (Nico Pache) [1839049]
+- [edac] EDAC/ie31200: Add Intel Coffee Lake CPU support (Aristeu Rozanski) [1847567]
+
+* Wed Nov 11 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-248.el8]
+- [netdrv] macsec: avoid use-after-free in macsec_handle_frame() (Balazs Nemeth) [1890122]
+- [include] netlink: check for null extack in cookie helpers (Ivan Vecera) [1878274]
+- [net] ethtool: Don't omit the netlink reply if no features were changed (Ivan Vecera) [1878274]
+- [net] ethtool: Account for hw_features in netlink interface (Ivan Vecera) [1878274]
+- [net] ethtool: Fix preserving of wanted feature bits in netlink interface (Ivan Vecera) [1878274]
+- [net] ethtool: ethnl_set_linkmodes: remove redundant null check (Ivan Vecera) [1878274]
+- [net] ethtool: fix genlmsg_put() failure handling in ethnl_default_dumpit() (Ivan Vecera) [1878274]
+- [net] ethtool: add missing string for NETIF_F_GSO_TUNNEL_REMCSUM (Ivan Vecera) [1878274]
+- [net] ethtool: Fix check in ethtool_rx_flow_rule_create (Ivan Vecera) [1878274]
+- [net] ethtool: linkinfo: remove an unnecessary NULL check (Ivan Vecera) [1878274]
+- [net] ethtool: propagate get_coalesce return value (Ivan Vecera) [1878274]
+- [net] ethtool: don't call set_channels in drivers if config didn't change (Ivan Vecera) [1878274]
+- [net] ethtool: check if there is at least one channel for TX/RX in the core (Ivan Vecera) [1878274]
+- [net] drivers: Remove inclusion of vermagic header (Ivan Vecera) [1878274]
+- [net] ethtool: count header size in reply size estimate (Ivan Vecera) [1878274]
+- [net] ethtool: provide timestamping information with TSINFO_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add timestamping related string sets (Ivan Vecera) [1878274]
+- [net] ethtool: add EEE_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set EEE settings with EEE_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide EEE settings with EEE_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add PAUSE_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set pause parameters with PAUSE_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide pause parameters with PAUSE_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add COALESCE_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set coalescing parameters with COALESCE_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide coalescing parameters with COALESCE_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: fix reference leak in ethnl_set_privflags() (Ivan Vecera) [1878274]
+- [net] ethtool: fix incorrect tx-checksumming settings reporting (Ivan Vecera) [1878274]
+- [include] ethtool.h: Replace zero-length array with flexible-array member (Ivan Vecera) [1878274]
+- [net] ethtool: fix reference leak in some *_SET handlers (Ivan Vecera) [1878274]
+- [net] ethtool: reject unrecognized request flags (Ivan Vecera) [1878274]
+- [include] netlink: add nl_set_extack_cookie_u32() (Ivan Vecera) [1878274]
+- [net] netlink: allow extack cookie also for error messages (Ivan Vecera) [1878274]
+- [net] ethtool: fix spelling mistake "exceeeds" -> "exceeds" (Ivan Vecera) [1878274]
+- [net] ethtool: add CHANNELS_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set device channel counts with CHANNELS_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide channel counts with CHANNELS_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add RINGS_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set device ring sizes with RINGS_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide ring sizes with RINGS_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add PRIVFLAGS_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set device private flags with PRIVFLAGS_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide private flags with PRIVFLAGS_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add FEATURES_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set netdev features with FEATURES_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: add ethnl_parse_bitset() helper (Ivan Vecera) [1878274]
+- [net] ethtool: provide netdev features with FEATURES_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: update mapping of features to legacy ioctl requests (Ivan Vecera) [1878274]
+- [net] ethtool: rename ethnl_parse_header() to ethnl_parse_header_dev_get() (Ivan Vecera) [1878274]
+- [include] hns: reject unsupported coalescing params (Ivan Vecera) [1878274]
+- [include] net: liquidio: reject unsupported coalescing params (Ivan Vecera) [1878274]
+- [net] ethtool: Factored out similar ethtool link settings for virtual devices to core (Ivan Vecera) [1878274]
+- [net] ethtool: limit bitset size (Ivan Vecera) [1878274]
+- [net] ethtool: fix application of verbose no_mask bitset (Ivan Vecera) [1878274]
+- [net] ethtool: Add support for low latency RS FEC (Ivan Vecera) [1878274]
+- [net] ethtool: add WOL_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set wake-on-lan settings with WOL_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide WoL settings with WOL_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add DEBUG_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set message mask with DEBUG_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide message mask with DEBUG_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: fix kernel-doc descriptions (Ivan Vecera) [1878274]
+- [net] ethtool: potential NULL dereference in strset_prepare_data() (Ivan Vecera) [1878274]
+- [net] ethtool: fix ->reply_size() error handling (Ivan Vecera) [1878274]
+- [net] ethtool: fix a memory leak in ethnl_default_start() (Ivan Vecera) [1878274]
+- [net] ethtool: remove set but not used variable 'lsettings' (Ivan Vecera) [1878274]
+- [net] ethtool: provide link state with LINKSTATE_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add LINKMODES_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: set link modes related data with LINKMODES_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide link mode information with LINKMODES_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: add LINKINFO_NTF notification (Ivan Vecera) [1878274]
+- [net] ethtool: add default notification handler (Ivan Vecera) [1878274]
+- [net] ethtool: set link settings with LINKINFO_SET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide link settings with LINKINFO_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: provide string sets with STRSET_GET request (Ivan Vecera) [1878274]
+- [net] ethtool: default handlers for GET requests (Ivan Vecera) [1878274]
+- [net] ethtool: support for netlink notifications (Ivan Vecera) [1878274]
+- [net] ethtool: netlink bitset handling (Ivan Vecera) [1878274]
+- [net] ethtool: helper functions for netlink interface (Ivan Vecera) [1878274]
+- [net] ethtool: introduce ethtool netlink interface (Ivan Vecera) [1878274]
+- [net] ethtool: provide link mode names as a string set (Ivan Vecera) [1878274]
+- [net] ethtool: move string arrays into common file (Ivan Vecera) [1878274]
+- [net] ethtool: move RHEL specific stuff to separate header file (Ivan Vecera) [1878274]
+- [net] ethtool: move to its own directory (Ivan Vecera) [1878274]
+- [net] rtnetlink: provide permanent hardware address in RTM_NEWLINK (Ivan Vecera) [1878274]
+- [net] Zeroing the structure ethtool_wolinfo in ethtool_get_wol() (Ivan Vecera) [1878274]
+- [net] ethtool: Allow parsing ETHER_FLOW types when using flow_rule (Ivan Vecera) [1878274]
+- [net] ethtool: Allow matching on vlan DEI bit (Ivan Vecera) [1878274]
+- [net] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (Ivan Vecera) [1878274]
+- [include] net: ethtool: Document get_rxfh_context and set_rxfh_context ethtool ops (Ivan Vecera) [1878274]
+- [include] ethtool: avoid signed-unsigned comparison in ethtool_validate_speed() (Ivan Vecera) [1878274]
+- [net] ethtool: not call vzalloc for zero sized memory request (Ivan Vecera) [1878274]
+- [net] ethtool: reduce stack usage with clang (Ivan Vecera) [1878274]
+- [net] ethtool: Use explicit designated initializers for .cmd (Ivan Vecera) [1878274]
+- [net] ethtool: remove unnecessary check in ethtool_get_regs() (Ivan Vecera) [1878274]
+- [include] uapi/ethtool: fix spelling errors (Ivan Vecera) [1878274]
+- [net] ethtool: fix a missing-check bug (Ivan Vecera) [1878274]
+- [include] ethtool: Remove trailing semicolon for static inline (Ivan Vecera) [1878274]
+- [net] ipv6: some fixes for ipv6_dev_find() (Xin Long) [1862458]
+- [net] tipc: not enable tipc when ipv6 works as a module (Xin Long) [1862458]
+- [net] tipc: set ub->ifindex for local ipv6 address (Xin Long) [1862458]
+- [net] ipv6: add ipv6_dev_find() (Xin Long) [1862458]
+- [powerpc] powerpc/pseries: explicitly reschedule during drmem_lmb list traversal (Steve Best) [1892377]
+- [scsi] scsi: ibmvscsi: Fix potential race after loss of transport (Steve Best) [1892316]
+- [mm] mm: fix a race during THP splitting (Rafael Aquini) [1865813 1739593]
+- [mm] mm, memcg: do not high throttle allocators based on wraparound (Waiman Long) [1873759]
+- [mm] mm, memcg: throttle allocators based on ancestral memory.high (Waiman Long) [1873759]
+- [mm] mm, memcg: fix corruption on 64-bit divisor in memory.high throttling (Waiman Long) [1873759]
+- [mm] mm, memcg: throttle allocators when failing reclaim over memory.high (Waiman Long) [1873759]
+- [mm] mm, oom: dump stack of victim when reaping failed (Waiman Long) [1873759]
+- [mm] mm/oom: fix pgtables units mismatch in Killed process message (Waiman Long) [1873759]
+- [mm] mm, oom: consider present pages for the node size (Waiman Long) [1873759]
+- [mm] mm/oom_kill.c: fix oom_cpuset_eligible() comment (Waiman Long) [1873759]
+- [mm] mm/oom: add oom_score_adj and pgtables to Killed process message (Waiman Long) [1873759]
+- [mm] mm/oom_kill.c: remove redundant OOM score normalization in select_bad_process() (Waiman Long) [1873759]
+- [fs] oom: decouple mems_allowed from oom_unkillable_task (Waiman Long) [1873759]
+- [mm] mm, oom: remove redundant task_in_mem_cgroup() check (Waiman Long) [1873759]
+- [mm] mm, oom: refactor dump_tasks for memcg OOMs (Waiman Long) [1873759]
+- [mm] mm, oom: describe task memory unit, larger PID pad (Waiman Long) [1873759]
+- [mm] mm, oom: remove oom_lock from oom_reaper (Waiman Long) [1873759]
+- [mm] mm/vmscan: remove unused RECLAIM_OFF/RECLAIM_ZONE (Waiman Long) [1873759]
+- [mm] mm/vmscan: remove prefetch_prev_lru_page (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: remove unused return value of shrink_node (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: clean code by removing unnecessary assignment (Waiman Long) [1873759]
+- [mm] mm: vmscan: protect shrinker idr replace with CONFIG_MEMCG (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: fix typo in comment (Waiman Long) [1873759]
+- [mm] mm: vmscan: enforce inactive:active ratio at the reclaim root (Waiman Long) [1873759]
+- [mm] mm: vmscan: detect file thrashing at the reclaim root (Waiman Long) [1873759]
+- [mm] mm: vmscan: move file exhaustion detection to the node level (Waiman Long) [1873759]
+- [include] mm: vmscan: harmonize writeback congestion tracking for nodes & memcgs (Waiman Long) [1873759]
+- [mm] mm: vmscan: split shrink_node() into node part and memcgs part (Waiman Long) [1873759]
+- [mm] mm: vmscan: turn shrink_node_memcg() into shrink_lruvec() (Waiman Long) [1873759]
+- [mm] mm: vmscan: replace shrink_node() loop with a retry jump (Waiman Long) [1873759]
+- [mm] mm: vmscan: naming fixes: global_reclaim() and sane_reclaim() (Waiman Long) [1873759]
+- [mm] mm: vmscan: move inactive_list_is_low() swap check to the caller (Waiman Long) [1873759]
+- [mm] mm: vmscan: simplify lruvec_lru_size() (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: remove unused scan_control parameter from pageout() (Waiman Long) [1873759]
+- [mm] mm/vmscan: remove unused lru_pages argument (Waiman Long) [1873759]
+- [mm] mm: do not allow MADV_PAGEOUT for CoW pages (Waiman Long) [1873759]
+- [mm] mm: fix trying to reclaim unevictable lru page when calling madvise_pageout (Waiman Long) [1873759]
+- [mm] mm: factor out common parts between MADV_COLD and MADV_PAGEOUT (Waiman Long) [1873759]
+- [mm] mm: introduce MADV_PAGEOUT (Waiman Long) [1873759]
+- [mm] mm: change PAGEREF_RECLAIM_CLEAN with PAGE_REFRECLAIM (Waiman Long) [1873759]
+- [mm] mm: introduce MADV_COLD (Waiman Long) [1873759]
+- [mm] mm: thp: don't need care deferred split queue in memcg charge move path (Waiman Long) [1873759]
+- [mm] mm: thp: make deferred split shrinker memcg aware (Waiman Long) [1873759]
+- [mm] mm: shrinker: make shrinker not depend on memcg kmem (Waiman Long) [1873759]
+- [mm] mm: move mem_cgroup_uncharge out of __page_cache_release() (Waiman Long) [1873759]
+- [mm] mm: thp: extract split_queue_* into a struct (Waiman Long) [1873759]
+- [mm] mm/page_alloc.c: move ifdefery out of free_area_init_core (Waiman Long) [1873759]
+- [mm] mm, memcg: do not set reclaim_state on soft limit reclaim (Waiman Long) [1873759]
+- [mm] mm, vmscan: do not special-case slab reclaim when watermarks are boosted (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: add checks for incorrect handling of current->reclaim_state (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: calculate reclaimed slab caches in all reclaim paths (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: add a new member reclaim_state in struct shrink_control (Waiman Long) [1873759]
+- [mm] mm: vmscan: remove double slab pressure by inc'ing sc->nr_scanned (Waiman Long) [1873759]
+- [mm] mm: limit boost_watermark on small zones (Waiman Long) [1873759]
+- [mm] mm: do not boost watermarks to avoid fragmentation for the DISCONTIG memory model (Waiman Long) [1873759]
+- [mm] mm, page_alloc: fix a division by zero error when boosting watermarks v2 (Waiman Long) [1873759]
+- [mm] mm, page_alloc: do not wake kswapd with zone lock held (Waiman Long) [1873759]
+- [mm] mm/page_alloc.c: drop uneeded __meminit and __meminitdata (Waiman Long) [1873759]
+- [mm] mm/page_alloc.c: fix never set ALLOC_NOFRAGMENT flag (Waiman Long) [1873759]
+- [mm] mm/page_alloc.c: avoid potential NULL pointer dereference (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: don't disable irq again when count pgrefill for memcg (Waiman Long) [1873759]
+- [mm] mm/vmscan: drop may_writepage and classzone_idx from direct reclaim begin template (Waiman Long) [1873759]
+- [mm] mm/vmscan: add tracepoints for node reclaim (Waiman Long) [1873759]
+- [mm] mm: generalize putback scan functions (Waiman Long) [1873759]
+- [mm] mm: remove pages_to_free argument of move_active_pages_to_lru() (Waiman Long) [1873759]
+- [mm] mm/workingset: remove unused @mapping argument in workingset_eviction() (Waiman Long) [1873759]
+- [mm] Revert "mm: slowly shrink slabs with a relatively small number of objects" (Waiman Long) [1873759]
+- [mm] mm: reclaim small amounts of memory when an external fragmentation event occurs (Waiman Long) [1873759]
+- [mm] mm: use alloc_flags to record if kswapd can wake (Waiman Long) [1873759]
+- [mm] mm: move zone watermark accesses behind an accessor (Waiman Long) [1873759]
+- [mm] mm, page_alloc: spread allocations across zones before introducing fragmentation (Waiman Long) [1873759]
+- [mm] mm: Convert delete_from_swap_cache to XArray (Waiman Long) [1873759]
+- [fs] mm: zero-seek shrinkers (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: fix int overflow in callers of do_shrink_slab() (Waiman Long) [1873759]
+- [mm] mm: slowly shrink slabs with a relatively small number of objects (Waiman Long) [1873759]
+- [mm] mm: fix page_freeze_refs and page_unfreeze_refs in comments (Waiman Long) [1873759]
+- [mm] mm: check shrinker is memcg-aware in register_shrinker_prepared() (Waiman Long) [1873759]
+- [mm] mm: use special value SHRINKER_REGISTERING instead of list_empty() check (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: move check for SHRINKER_NUMA_AWARE to do_shrink_slab() (Waiman Long) [1873759]
+- [mm] mm/vmscan.c: condense scan_control (Waiman Long) [1873759]
+- [arch] asm-generic/tlb: add missing CONFIG symbol (Waiman Long) [1873759]
+- [include] asm-gemeric/tlb: remove stray function declarations (Waiman Long) [1873759]
+- [x86] x86/ldt: Remove unused variable in map_ldt_struct() (Waiman Long) [1873759]
+- [x86] x86/ldt: Unmap PTEs for the slot before freeing LDT pages (Waiman Long) [1873759]
+- [x86] x86/mm/tlb: Add freed_tables argument to flush_tlb_mm_range (Waiman Long) [1873759]
+- [mm] asm-generic/tlb: Remove tlb_table_flush() (Waiman Long) [1873759]
+- [mm] asm-generic/tlb: Remove tlb_flush_mmu_free() (Waiman Long) [1873759]
+- [mm] asm-generic/tlb: Remove CONFIG_HAVE_GENERIC_MMU_GATHER (Waiman Long) [1873759]
+- [mm] asm-generic/tlb: Remove arch_tlb*_mmu() (Waiman Long) [1873759]
+- [s390] s390/tlb: Convert to generic mmu_gather (Waiman Long) [1873759]
+- [mm] asm-generic/tlb: Introduce CONFIG_HAVE_MMU_GATHER_NO_GATHER=y (Waiman Long) [1873759]
+- [include] asm-generic/tlb, ia64: Conditionally provide tlb_migrate_finish() (Waiman Long) [1873759]
+- [include] asm-generic/tlb: Provide generic tlb_flush() based on flush_tlb_mm() (Waiman Long) [1873759]
+- [arm64] asm-generic/tlb, arch: Provide generic tlb_flush() based on flush_tlb_range() (Waiman Long) [1873759]
+- [mm] asm-generic/tlb, arch: Provide CONFIG_HAVE_MMU_GATHER_PAGE_SIZE (Waiman Long) [1873759]
+- [include] asm-generic/tlb: Provide a comment (Waiman Long) [1873759]
+- [mm] mm/memory: Move mmu_gather and TLB invalidation code into its own file (Waiman Long) [1873759]
+- [x86] x86/mm: Page size aware flush_tlb_mm_range() (Waiman Long) [1873759]
+- [x86] x86/ldt: Split out sanity check in map_ldt_struct() (Waiman Long) [1873759]
+- [mm] asm-generic/tlb: Track which levels of the page tables have been cleared (Waiman Long) [1873759]
+- [include] asm-generic/tlb: Track freeing of page-table directories in struct mmu_gather (Waiman Long) [1873759]
+- [mm] mm/cow: don't bother write protecting already write-protected pages (Waiman Long) [1873759]
+- [powerpc] mm/mmu_gather: invalidate TLB correctly on batch allocation failure and flush (Diego Domingos) [1805031]
+- [powerpc] powerpc/mmu_gather: enable RCU_TABLE_FREE even for !SMP case (Diego Domingos) [1805031]
+- [fs] cifs: smb1: Try failing back to SetFileInfo if SetPathInfo fails (Leif Sahlberg) [1857038]
+
+* Mon Nov 09 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-247.el8]
+- [scsi] scsi: libfc: Fix passing zero to 'PTR_ERR' warning (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Fix for double free() (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Free skb in fc_disc_gpn_id_resp() for valid cases (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: Memory leak fix in fcoe_sysfs_fcf_del() (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: Use eth_zero_addr() to clear mac address (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Provide missing and repair existing function documentation (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Fix a couple of misdocumented function parameters (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Repair function parameter documentation (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: Correct some kernel-doc issues (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: Fix a myriad of documentation issues (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: Fix various kernel-doc infringements (Chris Leech) [1849542]
+- [scsi] scsi: libfc: trivial: Fix spelling mistake of 'discovery' (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Supply some missing kerneldoc struct/function attributes/params (Chris Leech) [1849542]
+- [scsi] scsi: libfc: fc_disc: Fix-up some incorrectly referenced function parameters (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Skip additional kref updating work event (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Handling of extra kref (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: remove unneeded semicolon in fcoe.c (Chris Leech) [1849542]
+- [scsi] scsi: libfc: rport state move to PLOGI if all PRLI retry exhausted (Chris Leech) [1849542]
+- [scsi] scsi: libfc: If PRLI rejected, move rport to PLOGI state (Chris Leech) [1849542]
+- [scsi] scsi: libfc: free response frame from GPN_ID (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: fix null-ptr-deref Read in fc_release_transport (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: remove redundant call to skb_transport_header (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: pass in fcoe_rport structure instead of fc_rport_priv (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: Embed fc_rport_priv in fcoe_rport structure (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Whitespace cleanup in libfc.h (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: fix a typo (Chris Leech) [1849542]
+- [scsi] scsi: libfc: fix null pointer dereference on a null lport (Chris Leech) [1849542]
+- [scsi] scsi: libfcoe: switch to SPDX tags (Chris Leech) [1849542]
+- [scsi] scsi: libfc: switch to SPDX tags (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: make use of fip_mode enum complete (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: remove unneeded fcoe_ctlr_destroy_store export (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: convert to use BUS_ATTR_WO (Chris Leech) [1849542]
+- [scsi] scsi: libfc: free skb when receiving invalid flogi resp (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: remove set but not used variable 'port' (Chris Leech) [1849542]
+- [scsi] scsi: libfc: fc_rport: Mark expected switch fall-through (Chris Leech) [1849542]
+- [scsi] scsi: libfc: Remove set but not used variable 'disc' (Chris Leech) [1849542]
+- [scsi] scsi: libfc: remove set but not used variable 'rpriv' (Chris Leech) [1849542]
+- [scsi] scsi: libfc: remove unnecessary condition check (Chris Leech) [1849542]
+- [scsi] scsi: fcoe: hold disc_mutex when traversing rport lists (Chris Leech) [1849542]
+- [net] netfilter: nftables: allow re-computing sctp CRC-32C in 'payload' statements (Davide Caratti) [1741052]
+- [fs] nfsd4: fix NULL dereference in nfsd/clients display code (Scott Mayhew) [1872311]
+- [fs] nfsd: Fix old-style function definition (Scott Mayhew) [1872311]
+- [fs] nfsd: clients don't need to break their own delegations (Scott Mayhew) [1872311]
+- [kernel] kthread: save thread function (Scott Mayhew) [1872311]
+- [fs] locks: Add trace_leases_conflict (Scott Mayhew) [1872311]
+- [fs] SUNRPC reverting d03727b248d0 ("NFSv4 fix CLOSE not waiting for direct IO compeletion") (Scott Mayhew) [1872311]
+- [fs] NFS: Fix interrupted slots by sending a solo SEQUENCE operation (Scott Mayhew) [1872311]
+- [net] SUNRPC: Add missing definition of ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE (Scott Mayhew) [1872311]
+- [fs] NFSv4 fix CLOSE not waiting for direct IO compeletion (Scott Mayhew) [1872311]
+- [fs] nfs: Fix memory leak of export_path (Scott Mayhew) [1872311]
+- [net] sunrpc: fixed rollback in rpc_gssd_dummy_populate() (Scott Mayhew) [1872311]
+- [net] xprtrdma: Clean up disconnect (Scott Mayhew) [1872311]
+- [fs] nfsd: apply umask on fs without ACL support (Scott Mayhew) [1872311]
+- [fs] NFS: Fix direct WRITE throughput regression (Scott Mayhew) [1872311]
+- [trace] SUNRPC: rpc_xprt lifetime events should record xprt->state (Scott Mayhew) [1872311]
+- [fs] nfs: set invalid blocks after NFSv4 writes (Scott Mayhew) [1872311]
+- [fs] NFS: remove redundant initialization of variable result (Scott Mayhew) [1872311]
+- [fs] NFS: Add a tracepoint in nfs_set_pgio_error() (Scott Mayhew) [1872311]
+- [fs] NFS: Trace short NFS READs (Scott Mayhew) [1872311]
+- [fs] NFS: nfs_xdr_status should record the procedure name (Scott Mayhew) [1872311]
+- [net] SUNRPC: Set SOFTCONN when destroying GSS contexts (Scott Mayhew) [1872311]
+- [net] SUNRPC: rpc_call_null_helper() should set RPC_TASK_SOFT (Scott Mayhew) [1872311]
+- [net] SUNRPC: rpc_call_null_helper() already sets RPC_TASK_NULLCREDS (Scott Mayhew) [1872311]
+- [net] SUNRPC: trace RPC client lifetime events (Scott Mayhew) [1872311]
+- [net] SUNRPC: Trace transport lifetime events (Scott Mayhew) [1872311]
+- [net] SUNRPC: Split the xdr_buf event class (Scott Mayhew) [1872311]
+- [net] SUNRPC: Add tracepoint to rpc_call_rpcerror() (Scott Mayhew) [1872311]
+- [trace] SUNRPC: Update the RPC_SHOW_SOCKET() macro (Scott Mayhew) [1872311]
+- [trace] SUNRPC: Update the rpc_show_task_flags() macro (Scott Mayhew) [1872311]
+- [net] SUNRPC: Trace GSS context lifetimes (Scott Mayhew) [1872311]
+- [net] SUNRPC: receive buffer size estimation values almost never change (Scott Mayhew) [1872311]
+- [net] sunrpc: use kmemdup_nul() in gssp_stringify() (Scott Mayhew) [1872311]
+- [fs] nfsd: safer handling of corrupted c_type (Scott Mayhew) [1872311]
+- [fs] mm/writeback: discard NR_UNSTABLE_NFS, use NR_WRITEBACK instead (Scott Mayhew) [1872311]
+- [mm] mm/writeback: replace PF_LESS_THROTTLE with PF_LOCAL_THROTTLE (Scott Mayhew) [1872311]
+- [net] SUNRPC: Remove unreachable error condition in rpcb_getport_async() (Scott Mayhew) [1872311]
+- [fs] nfsd: Fix svc_xprt refcnt leak when setup callback client failed (Scott Mayhew) [1872311]
+- [net] sunrpc: check that domain table is empty at module unload (Scott Mayhew) [1872311]
+- [fs] NFS: remove duplicate headers (Scott Mayhew) [1872311]
+- [fs] NFSv4.1 fix rpc_call_done assignment for BIND_CONN_TO_SESSION (Scott Mayhew) [1872311]
+- [fs] NFS: Use the correct style for SPDX License Identifier (Scott Mayhew) [1872311]
+- [net] net: sunrpc: Fix off-by-one issues in 'rpc_ntop6' (Scott Mayhew) [1872311]
+- [fs] NFS: move dprintk after nfs_alloc_fattr in nfs3_proc_lookup (Scott Mayhew) [1872311]
+- [fs] NFSD: Fix improperly-formatted Doxygen comments (Scott Mayhew) [1872311]
+- [fs] NFSD: Squash an annoying compiler warning (Scott Mayhew) [1872311]
+- [net] SUNRPC: Clean up request deferral tracepoints (Scott Mayhew) [1872311]
+- [fs] NFSD: Add tracepoints for monitoring NFSD callbacks (Scott Mayhew) [1872311]
+- [fs] NFSD: Add tracepoints to the NFSD state management code (Scott Mayhew) [1872311]
+- [fs] NFSD: Add tracepoints to NFSD's duplicate reply cache (Scott Mayhew) [1872311]
+- [trace] SUNRPC: svc_show_status() macro should have enum definitions (Scott Mayhew) [1872311]
+- [net] SUNRPC: Restructure svc_udp_recvfrom() (Scott Mayhew) [1872311]
+- [net] SUNRPC: Refactor svc_recvfrom() (Scott Mayhew) [1872311]
+- [net] SUNRPC: Clean up svc_release_skb() functions (Scott Mayhew) [1872311]
+- [net] SUNRPC: Refactor recvfrom path dealing with incomplete TCP receives (Scott Mayhew) [1872311]
+- [net] SUNRPC: Replace dprintk() call sites in TCP receive path (Scott Mayhew) [1872311]
+- [net] SUNRPC: Restructure svc_tcp_recv_record() (Scott Mayhew) [1872311]
+- [net] SUNRPC: Rename svc_sock::sk_reclen (Scott Mayhew) [1872311]
+- [net] SUNRPC: Trace server-side rpcbind registration events (Scott Mayhew) [1872311]
+- [net] SUNRPC: Replace dprintk call sites in TCP state change callouts (Scott Mayhew) [1872311]
+- [net] SUNRPC: Add more svcsock tracepoints (Scott Mayhew) [1872311]
+- [net] SUNRPC: Remove "#include <trace/events/skb.h>" (Scott Mayhew) [1872311]
+- [net] SUNRPC: Trace a few more generic svc_xprt events (Scott Mayhew) [1872311]
+- [net] SUNRPC: Tracepoint to record errors in svc_xpo_create() (Scott Mayhew) [1872311]
+- [trace] SUNRPC: Remove kernel memory address from svc_xprt tracepoints (Scott Mayhew) [1872311]
+- [net] svcrdma: Add tracepoints to report ->xpo_accept failures (Scott Mayhew) [1872311]
+- [net] svcrdma: Displayed remote IP address should match stored address (Scott Mayhew) [1872311]
+- [include] svcrdma: Remove the SVCRDMA_DEBUG macro (Scott Mayhew) [1872311]
+- [net] svcrdma: Rename tracepoints that record header decoding errors (Scott Mayhew) [1872311]
+- [net] svcrdma: Remove backchannel dprintk call sites (Scott Mayhew) [1872311]
+- [net] SUNRPC: Move xpt_mutex into socket xpo_sendto methods (Scott Mayhew) [1872311]
+- [net] sunrpc: add missing newline when printing parameter 'pool_mode' by sysfs (Scott Mayhew) [1872311]
+- [net] sunrpc: Remove unused function ip_map_update (Scott Mayhew) [1872311]
+- [fs] nfsd: handle repeated BIND_CONN_TO_SESSION (Scott Mayhew) [1872311]
+- [net] ip_tunnel_core: Fix build for archs without _HAVE_ARCH_IPV6_CSUM (Aaron Conole) [1849736]
+- [tools] selftests: pmtu.sh: Add tests for UDP tunnels handled by Open vSwitch (Aaron Conole) [1849736]
+- [tools] selftests: pmtu.sh: Add tests for bridged UDP tunnels (Aaron Conole) [1849736]
+- [net] geneve: Support for PMTU discovery on directly bridged links (Aaron Conole) [1849736]
+- [net] vxlan: Support for PMTU discovery on directly bridged links (Aaron Conole) [1849736]
+- [net] tunnels: PMTU discovery support for directly bridged IP packets (Aaron Conole) [1849736]
+- [net] ipv4: route: Ignore output interface in FIB lookup for PMTU route (Aaron Conole) [1849736]
+- [infiniband] RDMA/core: Free DIM memory in error unwind (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Stop DIM before destroying CQ (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Add min length checks to user structure copies (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Protect access to remote_sidr_table (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Fix race in rdma_alloc_commit_uobject() (Kamal Heib) [1857602]
+- [net] xprtrdma: fix incorrect header size calculations (Kamal Heib) [1857602]
+- [net] xprtrdma: Fix handling of connect errors (Kamal Heib) [1857602]
+- [net] xprtrdma: Fix return code from rpcrdma_xprt_connect() (Kamal Heib) [1857602]
+- [net] xprtrdma: Fix recursion into rpcrdma_xprt_disconnect() (Kamal Heib) [1857602]
+- [net] xprtrdma: Fix double-free in rpcrdma_ep_create() (Kamal Heib) [1857602]
+- [infiniband] RDMA/siw: Fix reporting vendor_part_id (Kamal Heib) [1857602]
+- [infiniband] IB/sa: Resolv use-after-free in ib_nl_make_request() (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add explicit cast OPA_MTU_8192 to 'enum ib_mtu' (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add atomic triggered sleep/wakeup (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Correct -EBUSY handling in tx code (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Restore kfree in dummy_netdev cleanup (Kamal Heib) [1857602]
+- [infiniband] IB/mad: Fix use after free when destroying MAD agent (Kamal Heib) [1857602]
+- [infiniband] RDMA/counter: Query a counter before release (Kamal Heib) [1857602]
+- [net] xprtrdma: Fix handling of RDMA_ERROR replies (Kamal Heib) [1857602]
+- [net] xprtrdma: Clean up synopsis of rpcrdma_flush_disconnect() (Kamal Heib) [1857602]
+- [net] xprtrdma: Use re_connect_status safely in rpcrdma_xprt_connect() (Kamal Heib) [1857602]
+- [net] xprtrdma: Prevent dereferencing r_xprt->rx_ep after it is freed (Kamal Heib) [1857602]
+- [infiniband] RDMA/mad: Fix possible memory leak in ib_mad_post_receive_mads() (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Check that type_attrs is not NULL prior access (Kamal Heib) [1857602]
+- [infiniband] RDMA/cma: Protect bind_list and listen_list while finding matching cm id (Kamal Heib) [1857602]
+- [infiniband] RDMA/efa: Set maximum pkeys device attribute (Kamal Heib) [1857602]
+- [infiniband] RDMA/rvt: Fix potential memory leak caused by rvt_alloc_rq (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Annotate CMA unlock helper routine (Kamal Heib) [1857602]
+- [infiniband] RDMA/siw: Fix pointer-to-int-cast warning in siw_rx_pbl() (Kamal Heib) [1857602]
+- [infiniband] RDMA/hfi1: Fix trivial mis-spelling of 'descriptor' (Kamal Heib) [1857602]
+- [net] xprtrdma: Make xprt_rdma_slot_table_entries static (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Spurious WARNING triggered in cm_destroy_id() (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Use free_netdev() in hfi1_netdev_free() (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Move and rename trace_cm_id_create() (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Fix hfi1_netdev_rx_init() error handling (Kamal Heib) [1857602]
+- [infiniband] RDMA: Remove 'max_map_per_fmr' (Kamal Heib) [1857602]
+- [infiniband] RDMA: Remove 'max_fmr' (Kamal Heib) [1857602]
+- [net] RDMA/rds: Remove FMR support for memory registration (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Remove FMR device ops (Kamal Heib) [1857602]
+- [infiniband] RDMA/rdmavt: Remove FMR memory registration (Kamal Heib) [1857602]
+- [infiniband] RDMA/mthca: Remove FMR support for memory registration (Kamal Heib) [1857602]
+- [infiniband] RDMA/mlx4: Remove FMR support for memory registration (Kamal Heib) [1857602]
+- [infiniband] RDMA/i40iw: Remove FMR leftovers (Kamal Heib) [1857602]
+- [infiniband] RDMA/bnxt_re: Remove FMR leftovers (Kamal Heib) [1857602]
+- [infiniband] RDMA/mlx5: Remove FMR leftovers (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Remove FMR pool API (Kamal Heib) [1857602]
+- [infiniband] RDMA/srp: Remove support for FMR memory registration (Kamal Heib) [1857602]
+- [infiniband] RDMA/iser: Remove support for FMR memory registration (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Fix several reference count leaks (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Fix spelling mistake "enought" -> "enough" (Kamal Heib) [1857602]
+- [rdma] RDMA/core: Use offsetofend() instead of open coding (Kamal Heib) [1857602]
+- [infiniband] RDMA/srpt: Increase max_send_sge (Kamal Heib) [1857602]
+- [infiniband] RDMA/srpt: Reduce max_recv_sge to 1 (Kamal Heib) [1857602]
+- [infiniband] RDMA/srpt: Make debug output more detailed (Kamal Heib) [1857602]
+- [infiniband] RDMA/srp: Make the channel count configurable per target (Kamal Heib) [1857602]
+- [infiniband] hfi1: get rid of pointless access_ok() (Kamal Heib) [1857602]
+- [infiniband] RDMA/cma: Provide ECE reject reason (Kamal Heib) [1857602]
+- [infiniband] RDMA/cma: Connect ECE to rdma_accept (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Send and receive ECE parameter over the wire (Kamal Heib) [1857602]
+- [infiniband] RDMA/ucma: Deliver ECE parameters through UCMA events (Kamal Heib) [1857602]
+- [infiniband] RDMA/ucma: Extend ucma_connect to receive ECE parameters (Kamal Heib) [1857602]
+- [rdma] RDMA/cm: Add Enhanced Connection Establishment (ECE) bits (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Use sizeof_field() helper (Kamal Heib) [1857602]
+- [infiniband] RDMA/ipoib: Remove can_sleep parameter from iboib_mcast_alloc (Kamal Heib) [1857602]
+- [infiniband] IB/cma: Fix ports memory leak in cma_configfs (Kamal Heib) [1857602]
+- [infiniband] IB/uverbs: Introduce create/destroy QP commands over ioctl (Kamal Heib) [1857602]
+- [infiniband] IB/uverbs: Introduce create/destroy WQ commands over ioctl (Kamal Heib) [1857602]
+- [infiniband] IB/uverbs: Introduce create/destroy SRQ commands over ioctl (Kamal Heib) [1857602]
+- [rdma] IB/uverbs: Move QP, SRQ, WQ type and flags to UAPI (Kamal Heib) [1857602]
+- [infiniband] IB/uverbs: Extend CQ to get its own asynchronous event FD (Kamal Heib) [1857602]
+- [infiniband] IB/uverbs: Refactor related objects to use their own asynchronous event FD (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Allow the ioctl layer to abort a fully created uobject (Kamal Heib) [1857602]
+- [infiniband] IB/mlx5: Expose UAR object and its alloc/destroy commands (Kamal Heib) [1857602]
+- [infiniband] IB/mlx5: Fix a NULL vs IS_ERR() check (Kamal Heib) [1857602]
+- [infiniband] IB/mlx5: Introduce UAPIs to manage packet pacing (Kamal Heib) [1857602]
+- [netdrv] net/mlx5: Expose raw packet pacing APIs (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Enable the transmit side of the datagram ipoib netdev (Kamal Heib) [1857602]
+- [infiniband] IB/ipoib: Add capability to switch between datagram and connected mode (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add packet histogram trace event (Kamal Heib) [1857602]
+- [infiniband] IB/{hfi1, ipoib, rdma}: Broadcast ping sent packets which exceeded mtu size (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Activate the dummy netdev (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add rx functions for dummy netdev (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add interrupt handler functions for accelerated ipoib (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add functions to receive accelerated ipoib packets (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Rename num_vnic_contexts as num_netdev_contexts (Kamal Heib) [1857602]
+- [infiniband] IB/ipoib: Increase ipoib Datagram mode MTU's upper limit (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: RSM rules for AIP (Kamal Heib) [1857602]
+- [infiniband] IB/{rdmavt, hfi1}: Implement creation of accelerated UD QPs (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Remove module parameter for KDETH qpns (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add the transmit side of a datagram ipoib RDMA netdev (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add functions to transmit datagram ipoib packets (Kamal Heib) [1857602]
+- [infiniband] IB/hfi1: Add accelerated IP capability bit (Kamal Heib) [1857602]
+- [infiniband] RDMA/efa: Report host information to the device (Kamal Heib) [1857602]
+- [infiniband] RDMA/efa: Fix setting of wrong bit in get/set_feature commands (Kamal Heib) [1857602]
+- [infiniband] RDMA/siw: Replace one-element array and use struct_size() helper (Kamal Heib) [1857602]
+- [net] svcrdma: Fix backchannel return code (Kamal Heib) [1857602]
+- [net] svcrdma: trace undersized Write chunks (Kamal Heib) [1857602]
+- [net] svcrdma: Trace page overruns when constructing RDMA Reads (Kamal Heib) [1857602]
+- [net] svcrdma: Clean up handling of get_rw_ctx errors (Kamal Heib) [1857602]
+- [net] svcrdma: Clean up the tracing for rw_ctx_init errors (Kamal Heib) [1857602]
+- [infiniband] RDMA/srpt: Add a newline when printing parameter 'srpt_service_guid' by sysfs (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Consolidate ib_create_srq flows (Kamal Heib) [1857602]
+- [infiniband] RDMA/uverbs: Fix create WQ to use the given user handle (Kamal Heib) [1857602]
+- [infiniband] RDMA/uverbs: Cleanup wq/srq context usage from uverbs layer (Kamal Heib) [1857602]
+- [rdma] IB/rdmavt: Replace zero-length array with flexible-array (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Increment the refcount inside cm_find_listen() (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Remove needless cm_id variable (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Remove the cm_free_id() wrapper function (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Make find_remote_id() return a cm_id_private (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Add a note explaining how the timewait is eventually freed (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Pass the cm_id_private into cm_cleanup_timewait (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Pull duplicated code into cm_queue_work_unlock() (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Remove unused store to ret in cm_rej_handler (Kamal Heib) [1857602]
+- [infiniband] RDMA/cm: Remove return code from add_cm_id_to_port_list (Kamal Heib) [1857602]
+- [infiniband] RDMA/addr: Mark addr_resolve as might_sleep() (Kamal Heib) [1857602]
+- [infiniband] RDMA/ucma: Return stable IB device index as identifier (Kamal Heib) [1857602]
+- [infiniband] RDMA/cma: Initialize the flow label of CM's route path record (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Consider flow label when building skb (Kamal Heib) [1857602]
+- [rdma] RDMA/core: Add hash functions to calculate RoCEv2 flowlabel and UDP source port (Kamal Heib) [1857602]
+- [infiniband] RDMA: Allow ib_client's to fail when add() is called (Kamal Heib) [1857602]
+- [infiniband] RDMA/mad: Remove snoop interface (Kamal Heib) [1857602]
+- [infiniband] RDMA/efa: Count admin commands errors (Kamal Heib) [1857602]
+- [infiniband] RDMA/efa: Count mmap failures (Kamal Heib) [1857602]
+- [infiniband] RDMA/efa: Report create CQ error counter (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Get xmit slave for LAG (Kamal Heib) [1857602]
+- [infiniband] RDMA/core: Add LAG functionality (Kamal Heib) [1857602]
+- [infiniband] RDMA: Group create AH arguments in struct (Kamal Heib) [1857602]
+- [infiniband] RDMA/rw: use DIV_ROUND_UP to calculate nr_ops (Kamal Heib) [1857602]
+- [infiniband] RDMA/cma: Limit the scope of rdma_is_consumer_reject function (Kamal Heib) [1857602]
+- [infiniband] IB: Fix some documentation warnings (Kamal Heib) [1857602]
+- [infiniband] RDMA: Remove a few extra calls to ib_get_client_data() (Kamal Heib) [1857602]
+- [infiniband] RDMA/uverbs: Make the event_queue fds return POLLERR when disassociated (Kamal Heib) [1857602]
+- [infiniband] RDMA/rxe: Set default vendor ID (Kamal Heib) [1857602]
+- [netdrv] bonding: Use fallthrough pseudo-keyword (Jarod Wilson) [1860495]
+- [netdrv] bonding: fix active-backup failover for current ARP slave (Jarod Wilson) [1860495]
+- [netdrv] bonding: fix a potential double-unregister (Jarod Wilson) [1860495]
+- [netdrv] net: bonding: bond_alb: Describe alb_handle_addr_collision_on_attach()'s 'bond' and 'addr' params (Jarod Wilson) [1860495]
+- [netdrv] net: bonding: bond_main: Document 'proto' and rename 'new_active' parameters (Jarod Wilson) [1860495]
+- [netdrv] net: bonding: bond_3ad: Fix a bunch of kerneldoc parameter issues (Jarod Wilson) [1860495]
+- [netdrv] bonding: show saner speed for broadcast mode (Jarod Wilson) [1868265 1860495]
+- [netdrv] bonding: check return value of register_netdevice() in bond_newlink() (Jarod Wilson) [1860495]
+- [netdrv] bonding: check error value of register_netdevice() immediately (Jarod Wilson) [1860495]
+- [netdrv] bonding: don't need RTNL for ipsec helpers (Jarod Wilson) [1860495]
+- [netdrv] bonding: deal with xfrm state in all modes and add more error-checking (Jarod Wilson) [1860495]
+- [netdrv] bonding: allow xfrm offload setup post-module-load (Jarod Wilson) [1860495]
+- [netdrv] bonding: Remove extraneous parentheses in bond_setup (Jarod Wilson) [1860495]
+- [netdrv] bonding/xfrm: use real_dev instead of slave_dev (Jarod Wilson) [1860495]
+- [netdrv] bonding: support hardware encryption offload to slaves (Jarod Wilson) [1860495]
+- [netdrv] mlx5: become aware of when running as a bonding slave (Jarod Wilson) [1860495]
+- [netdrv] ixgbe_ipsec: become aware of when running as a bonding slave (Jarod Wilson) [1860495]
+- [net] xfrm: bail early on slave pass over skb (Jarod Wilson) [1860495]
+- [netdrv] bonding: Fix reference count leak in bond_sysfs_slave_add (Jarod Wilson) [1860495]
+- [netdrv] bonding: propagate transmit status (Jarod Wilson) [1860495]
+- [netdrv] bonding: remove useless stats_lock_key (Jarod Wilson) [1860495]
+- [netdrv] bonding: Implement ndo_get_xmit_slave (Jarod Wilson) [1860495]
+- [netdrv] bonding: Add array of all slaves (Jarod Wilson) [1860495]
+- [netdrv] bonding: Add function to get the xmit slave in active-backup mode (Jarod Wilson) [1860495]
+- [netdrv] bonding: Add helper function to get the xmit slave in rr mode (Jarod Wilson) [1860495]
+- [netdrv] bonding: Add helper function to get the xmit slave based on hash (Jarod Wilson) [1860495]
+- [netdrv] bonding/alb: Add helper functions to get the xmit slave (Jarod Wilson) [1860495]
+- [netdrv] bonding: Rename slave_arr to usable_slaves (Jarod Wilson) [1860495]
+- [netdrv] bonding: Export skip slave logic to function (Jarod Wilson) [1860495]
+- [netdrv] bonding: Remove inclusion of vermagic header (Jarod Wilson) [1860495]
+- [netdrv] net/bond: Delete driver and module versions (Jarod Wilson) [1860495]
+
+* Sun Nov 08 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-246.el8]
+- [mm] powerpc/book3s64/radix: Fix boot failure with large amount of guest memory (Steve Best) [1854543]
+- [powerpc] powerpc/book3s64/radix: Add kernel command line option to disable radix GTSE (Steve Best) [1854543]
+- [powerpc] powerpc/prom: Enable Radix GTSE in cpu pa-features (Steve Best) [1854543]
+- [powerpc] powerpc/mm/book3s64/radix: Off-load TLB invalidations to host when !GTSE (Steve Best) [1854543]
+- [powerpc] powerpc/pseries: H_REGISTER_PROC_TBL should ask for GTSE only if enabled (Steve Best) [1854543]
+- [powerpc] powerpc/mm: Enable radix GTSE only if supported (Steve Best) [1854543]
+- [misc] powerpc/64s/radix: introduce options to disable use of the tlbie instruction (Steve Best) [1854543]
+- [mm] powerpc/64s: remove unnecessary translation cache flushes at boot (Steve Best) [1854543]
+- [mm] powerpc/64s/pseries: radix flush translations before MMU is enabled at boot (Steve Best) [1854543]
+- [mm] powerpc/64s: make mmu_partition_table_set_entry TLB flush optional (Steve Best) [1854543]
+- [mm] powerpc/64s/radix: tidy up TLB flushing code (Steve Best) [1854543]
+- [mm] powerpc/64s: remove register_process_table callback (Steve Best) [1854543]
+- [mm] powerpc/mm: Limit resize_hpt_for_hotplug() call to hash guests only (Steve Best) [1854543]
+- [powerpc] powerpc/mm/radix: Create separate mappings for hot-plugged memory (Steve Best) [1854543]
+- [mm] powerpc/mm/radix: Remove split_kernel_mapping() (Steve Best) [1854543]
+- [mm] powerpc/mm/radix: Free PUD table when freeing pagetable (Steve Best) [1854543]
+- [mm] powerpc/mm/radix: Fix PTE/PMD fragment count for early page table mappings (Steve Best) [1854543]
+- [mm] powerpc/64s: Fix page table fragment refcount race vs speculative references (Steve Best) [1854543]
+- [powerpc] powerpc/security: Fix link stack flush instruction (Gustavo Duarte) [1862103]
+- [powerpc] powerpc/pseries: add new branch prediction security bits for link stack (Gustavo Duarte) [1862103]
+- [powerpc] powerpc/security: Allow for processors that flush the link stack using the special bcctr (Gustavo Duarte) [1862103]
+- [powerpc] powerpc/64s: Move branch cache flushing bcctr variant to ppc-ops.h (Gustavo Duarte) [1862103]
+- [powerpc] powerpc/security: split branch cache flush toggle from code patching (Gustavo Duarte) [1862103]
+- [powerpc] powerpc/security: make display of branch cache flush more consistent (Gustavo Duarte) [1862103]
+- [powerpc] powerpc/security: change link stack flush state to the flush type enum (Gustavo Duarte) [1862103]
+- [powerpc] powerpc/security: re-name count cache flush to branch cache flush (Gustavo Duarte) [1862103]
+- [kernel] smp: Remove superfluous cond_func check in smp_call_function_many_cond() (Prarit Bhargava) [1882551]
+- [kernel] smp: Remove allocation mask from on_each_cpu_cond.*() (Prarit Bhargava) [1882551]
+- [kernel] smp: Add a smp_cond_func_t argument to smp_call_function_many() (Prarit Bhargava) [1882551]
+- [kernel] smp: Use smp_cond_func_t as type for the conditional function (Prarit Bhargava) [1882551]
+- [kernel] smp, cpumask: introduce on_each_cpu_cond_mask (Prarit Bhargava) [1882551]
+- [kernel] smp: use __cpumask_set_cpu in on_each_cpu_cond (Prarit Bhargava) [1882551]
+- [pci] PCI: Add support for root bus sizing (Myron Stowe) [1886036]
+- [drm] PCI: Use ioremap(), not phys_to_virt() for platform ROM (Myron Stowe) [1886036]
+- [pci] PCI: Avoid ASMedia XHCI USB PME# from D0 defect (Myron Stowe) [1886036]
+- [pci] PCI/ACPI: Move pcie_to_hpx3_typefrom stack to static data (Myron Stowe) [1886036]
+- [documentation] Documentation: PCI: Add background on Boot Interrupts (Myron Stowe) [1886036]
+- [pci] PCI: Add boot interrupt quirk mechanism for Xeon chipsets (Myron Stowe) [1886036]
+- [pci] PCI: Add PCIE_LNKCAP2_SLS2SPEED() macro (Myron Stowe) [1886036]
+- [pci] PCI: Use pci_speed_string() for all PCI/PCI-X/PCIe strings (Myron Stowe) [1886036]
+- [pci] PCI: Add pci_speed_string() (Myron Stowe) [1886036]
+- [pci] PCI: Add 32 GT/s decoding in some macros (Myron Stowe) [1886036]
+- [powerpc] powerpc/test_emulate_step: Move extern declaration to sstep.h (Desnes Augusto Nunes do Rosario) [1854542]
+- [powerpc] powerpc/sstep: Introduce macros to retrieve Prefix instruction operands (Desnes Augusto Nunes do Rosario) [1854542]
+- [powerpc] powerpc/test_emulate_step: Add negative tests for prefixed addi (Desnes Augusto Nunes do Rosario) [1854542]
+- [powerpc] powerpc/test_emulate_step: Enhancement to test negative scenarios (Desnes Augusto Nunes do Rosario) [1854542]
+- [netdrv] drivers/net/ibmvnic: Update VNIC protocol version reporting (Steve Best) [1882269]
+- [s390] s390/zcrypt: fix kmalloc 256k failure (Claudio Imbrenda) [1885963]
+- [x86] crypto: x86/aesni-gcm - fix crash on empty plaintext (Herbert Xu) [1882868]
+- [x86] crypto: x86/aesni-gcm - make 'struct aesni_gcm_tfm_s' static const (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Add scatter/gather avx stubs, and use them in C (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Introduce partial block macro (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Introduce READ_PARTIAL_BLOCK macro (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Move ghash_mul to GCM_COMPLETE (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Fill in new context data structures (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Merge avx precompute functions (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Split AAD hash calculation to separate macro (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Add GCM_COMPLETE macro (Herbert Xu) [1882868]
+- [x86] crypto: aesni - support 256 byte keys in avx asm (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Macro-ify func save/restore (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Introduce gcm_context_data (Herbert Xu) [1882868]
+- [x86] crypto: aesni - Merge GCM_ENC_DEC (Herbert Xu) [1882868]
+- [pci] PCI: Add DMA alias quirk for PLX PEX NTB (Myron Stowe) [1884657]
+- [pci] PCI: Add nr_devfns parameter to pci_add_dma_alias() (Myron Stowe) [1884657]
+- [pci] PCI: Fix pci_add_dma_alias() bitmask size (Myron Stowe) [1884657]
+- [pci] PCI/IOV: Fix memory leak in pci_iov_add_virtfn() (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Add Gen4 device IDs (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Add Gen4 MRPC GAS access permission check (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Add Gen4 flash information interface support (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Add Gen4 system info register support (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Separate Gen3 register structures into unions (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Factor out Gen3 ioctl_flash_part_info() (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Add 'generation' variable (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Rename generation-specific constants (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Move check event ID from mask_event() to switchtec_event_isr() (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Remove redundant valid PFF number count (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Add support for Intercomm Notify and Upstream Error Containment (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Fix vep_vector_number ioread width (Myron Stowe) [1884657]
+- [pci] PCI/switchtec: Use dma_set_mask_and_coherent() (Myron Stowe) [1884657]
+- [pci] PCI: Allow adjust_bridge_window() to shrink resource if necessary (Myron Stowe) [1884657]
+- [pci] PCI: Set resource size directly in adjust_bridge_window() (Myron Stowe) [1884657]
+- [pci] PCI: Rename extend_bridge_window() to adjust_bridge_window() (Myron Stowe) [1884657]
+- [pci] PCI: Rename extend_bridge_window() parameter (Myron Stowe) [1884657]
+- [pci] PCI: Consider alignment of hot-added bridges when assigning resources (Myron Stowe) [1884657]
+- [pci] PCI: Remove local variable usage in pci_bus_distribute_available_resources() (Myron Stowe) [1884657]
+- [pci] PCI: Pass size + alignment to pci_bus_distribute_available_resources() (Myron Stowe) [1884657]
+- [pci] PCI: Rename variables (Myron Stowe) [1884657]
+- [pci] PCI: Remove unnecessary braces (Myron Stowe) [1884657]
+- [pci] PCI: Don't disable bridge BARs when assigning bus resources (Myron Stowe) [1884657]
+- [documentation] Documentation: PCI: Fix pci_alloc_irq_vectors() function name typo (Myron Stowe) [1884657]
+- [pci] PCI: Increase D3 delay for AMD Ryzen5/7 XHCI controllers (Myron Stowe) [1884657]
+- [pci] PCI: Add generic quirk for increasing D3hot delay (Myron Stowe) [1884657]
+- [edac] x86/mce, EDAC/mce_amd: Print PPIN in machine check records (Prarit Bhargava) [1860381]
+
+* Sat Nov 07 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-245.el8]
+- [netdrv] geneve: add transport ports in route lookup for geneve (Mark Gray) [1884481] {CVE-2020-25645}
+- [drm] PM: sleep: core: Rename DPM_FLAG_NEVER_SKIP (Ivan Vecera) [1867164]
+- [base] PM: sleep: core: Drop racy and redundant checks from device_prepare() (Ivan Vecera) [1867164]
+- [mm] mm/page_isolation: fix potential warning from user (Waiman Long) [1811009]
+- [mm] mm/hotplug: silence a lockdep splat with printk() (Waiman Long) [1811009]
+- [mm] mm/debug.c: always print flags in dump_page() (Waiman Long) [1811009]
+- [mm] mm/debug.c: PageAnon() is true for PageKsm() pages (Waiman Long) [1811009]
+- [mm] mm/debug.c: __dump_page() prints an extra line (Waiman Long) [1811009]
+- [mm] mm: fix some typos in mm directory (Waiman Long) [1811009]
+- [mm] mm, fault_around: do not take a reference to a locked page (Waiman Long) [1811009]
+- [mm] mm: remove the exporting of totalram_pages (Waiman Long) [1880090]
+- [mm] mm: remove managed_page_count_lock spinlock (Waiman Long) [1880090]
+- [mm] mm: convert totalram_pages and totalhigh_pages variables to atomic (Waiman Long) [1880090]
+- [mm] mm: convert zone->managed_pages to atomic variable (Waiman Long) [1880090]
+- [net] mm: reference totalram_pages and managed_pages once per function (Waiman Long) [1880090]
+- [mm] mm/page_alloc: Introduce free_area_init_core_hotplug (Waiman Long) [1880090]
+- [mm] mm/page_alloc: inline function to handle CONFIG_DEFERRED_STRUCT_PAGE_INIT (Waiman Long) [1880090]
+- [mm] mm: remove __paginginit (Waiman Long) [1880090]
+- [mm] mm: access zone->node via zone_to_nid() and zone_set_nid() (Waiman Long) [1880090]
+- [mm] mm, page_alloc: double zone's batchsize (Waiman Long) [1880090]
+- [powerpc] powerpc/pseries/cmm: fix managed page counts when migrating pages between zones (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug: drain per-cpu pages again during memory offline (Chris von Recklinghausen) [1754739]
+- [mm] mm: move nr_deactivate accounting to shrink_active_list() (Chris von Recklinghausen) [1754739]
+- [mm] sh: fix build error in mm/init.c (Chris von Recklinghausen) [1754739]
+- [mm] mm/memremap: set caching mode for PCI P2PDMA memory to WC (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug: add pgprot_t to mhp_params (Chris von Recklinghausen) [1754739]
+- [mm] powerpc/mm: thread pgprot_t through create_section_mapping() (Chris von Recklinghausen) [1754739]
+- [mm] x86/mm: thread pgprot_t through init_memory_mapping() (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug: rename mhp_restrictions to mhp_params (Chris von Recklinghausen) [1754739]
+- [include] mm/memory_hotplug: drop the flags field from struct mhp_restrictions (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: cleanup __add_pages() (Chris von Recklinghausen) [1754739]
+- [mm] mm, hotplug: fix page online with DEBUG_PAGEALLOC compiled but not enabled (Chris von Recklinghausen) [1754739]
+- [mm] arm64/mm: Enable memory hot remove (Chris von Recklinghausen) [1754739]
+- [firmware] arm/efi: EFI soft reservation to memblock (Chris von Recklinghausen) [1754739]
+- [mm] arm64: mm: convert mm/dump.c to use walk_page_range() (Chris von Recklinghausen) [1754739]
+- [base] mm/memory_hotplug: drop valid_start/valid_end from test_pages_in_a_zone() (Chris von Recklinghausen) [1754739]
+- [base] mm/memory_hotplug: pass in nid to online_pages() (Chris von Recklinghausen) [1754739]
+- [mm] mm: remove "count" parameter from has_unmovable_pages() (Chris von Recklinghausen) [1754739]
+- [base] mm: remove the memory isolate notifier (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Disable instrumentation in the EFI runtime handling code (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: avoid KASAN false positives when accessing the 1: 1 mapping (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Limit EFI old memory map to SGI UV machines (Chris von Recklinghausen) [1754739]
+- [x86] efi/libstub/x86: Fix unused-variable warning (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Simplify mixed mode call wrapper (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Simplify 64-bit EFI firmware call wrapper (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Split SetVirtualAddresMap() wrappers into 32 and 64 bit versions (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Split off some old memmap handling into separate routines (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Re-disable RT services for 32-bit kernels running on 64-bit EFI (Chris von Recklinghausen) [1754739]
+- [x86] efi/libstub: Distinguish between native/mixed not 32/64 bit (Chris von Recklinghausen) [1754739]
+- [firmware] efi/libstub: Extend native protocol definitions with mixed_mode aliases (Chris von Recklinghausen) [1754739]
+- [firmware] efi/libstub: Use a helper to iterate over a EFI handle array (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Rename efi_is_native() to efi_is_mixed() (Chris von Recklinghausen) [1754739]
+- [firmware] efi/gop: Unify 32/64-bit functions (Chris von Recklinghausen) [1754739]
+- [firmware] efi/gop: Convert GOP structures to typedef and clean up some types (Chris von Recklinghausen) [1754739]
+- [firmware] efi/gop: Remove unused typedef (Chris von Recklinghausen) [1754739]
+- [firmware] efi/gop: Remove bogus packed attribute from GOP structures (Chris von Recklinghausen) [1754739]
+- [firmware] efi/libstub/random: Initialize pointer variables to zero for mixed mode (Chris von Recklinghausen) [1754739]
+- [firmware] efi: Fix efi_loaded_image_t::unload type (Chris von Recklinghausen) [1754739]
+- [firmware] efi/gop: Fix memory leak in __gop_query32/64() (Chris von Recklinghausen) [1754739]
+- [firmware] efi/gop: Return EFI_SUCCESS if a usable GOP was found (Chris von Recklinghausen) [1754739]
+- [firmware] efi/gop: Return EFI_NOT_FOUND if there are no usable GOPs (Chris von Recklinghausen) [1754739]
+- [hv] mm/memory_hotplug.c: remove __online_page_set_limits() (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: don't allow to online/offline memory blocks with holes (Chris von Recklinghausen) [1754739]
+- [mm] mm/page_isolation.c: convert SKIP_HWPOISON to MEMORY_OFFLINE (Chris von Recklinghausen) [1754739]
+- [mm] mm/page_alloc.c: don't set pages PageReserved() when offlining (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug: remove __online_page_free() and __online_page_increment_counters() (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: add a bounds check to __add_pages() (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Fix NMI vs ESPFIX (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Unwind the ESPFIX stack earlier on exception entry (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Move FIXUP_FRAME after pushing fs in SAVE_ALL (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Simplify common_exception (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Use ss segment where required (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Fix IRET exception (Chris von Recklinghausen) [1754739]
+- [x86] x86/xen/32: Make xen_iret_crit_fixup() independent of frame layout (Chris von Recklinghausen) [1754739]
+- [x86] x86/stackframe/32: Repair 32-bit Xen PV (Chris von Recklinghausen) [1754739]
+- [x86] x86/stackframe/32: Allow int3_emulate_push() (Chris von Recklinghausen) [1754739]
+- [x86] x86: Hide the int3_emulate_call/jmp functions from UML (Chris von Recklinghausen) [1754739]
+- [x86] ftrace/x86_64: Emulate call function while updating in breakpoint handler (Chris von Recklinghausen) [1754739]
+- [x86] x86/stackframe/32: Provide consistent pt_regs (Chris von Recklinghausen) [1754739]
+- [x86] kprobes, x86/ptrace.h: Make regs_get_kernel_stack_nth() not fault on bad stack (Chris von Recklinghausen) [1754739]
+- [x86] x86/stackframe, x86/ftrace: Add pt_regs frame annotations (Chris von Recklinghausen) [1754739]
+- [x86] x86/stackframe, x86/kprobes: Fix frame pointer annotations (Chris von Recklinghausen) [1754739]
+- [x86] x86/stackframe: Move ENCODE_FRAME_POINTER to asm/frame.h (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Clean up return from interrupt preemption path (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Simulation mode (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Switch to balloon_page_alloc() (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Implement balloon compaction (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Convert loaned_pages to an atomic_long_t (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Rip out memory isolate notifier (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Use adjust_managed_page_count() insted of totalram_pages_* (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Drop page array (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Cleanup rc handling in cmm_init() (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Report errors when registering notifiers fails (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries/cmm: Implement release() function for sysfs device (Chris von Recklinghausen) [1754739]
+- [x86] x86/efi: Push EFI_MEMMAP check into leaf routines (Chris von Recklinghausen) [1754739]
+- [mm] powerpc: Don't flush caches when adding memory (Chris von Recklinghausen) [1754739]
+- [firmware] efi/random: use arch-independent efi_call_proto() (Chris von Recklinghausen) [1754739]
+- [x86] x86/dumpstack/64: Don't evaluate exception stacks before setup (Chris von Recklinghausen) [1754739]
+- [xen] xen/balloon: Mark pages PG_offline in balloon_append() (Chris von Recklinghausen) [1754739]
+- [xen] xen/balloon: Drop __balloon_append() (Chris von Recklinghausen) [1754739]
+- [xen] xen/balloon: Set pages PageOffline() in balloon_add_region() (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: prevent memory leak when reusing pgdat (Chris von Recklinghausen) [1754739]
+- [base] drivers/base/memory.c: don't store end_section_nr in memory blocks (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug: remove move_pfn_range() (Chris von Recklinghausen) [1754739]
+- [mm] mm: introduce compound_nr() (Chris von Recklinghausen) [1754739]
+- [x86] x86/asm: Make some functions local labels (Chris von Recklinghausen) [1754739]
+- [firmware] efi-stub: Fix get_efi_config_table on mixed-mode setups (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: move UV_SYSTAB handling into arch/x86 (Chris von Recklinghausen) [1754739]
+- [x86] efi: x86: move efi_is_table_address() into arch/x86 (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: remove unneeded return for void function (Chris von Recklinghausen) [1754739]
+- [x86] x86/uaccess: Remove redundant CLACs in getuser/putuser error paths (Chris von Recklinghausen) [1754739]
+- [x86] x86/uaccess: Remove ELF function annotation from copy_user_handle_tail() (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry: Fix thunk function ELF sizes (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/64: Simplify idtentry a little (Chris von Recklinghausen) [1754739]
+- [mm] mm: vmscan: correct some vmscan counters for THP swapout (Chris von Recklinghausen) [1754739]
+- [mm] mm/gup: speed up check_and_migrate_cma_pages() on huge page (Chris von Recklinghausen) [1754739]
+- [x86] x86/ldt: Initialize the context lock for init_mm (Chris von Recklinghausen) [1754739]
+- [powerpc] powerpc/pseries: avoid blocking in irq when queuing hotplug events (Chris von Recklinghausen) [1754739]
+- [arm64] arm64/mm: don't initialize pgd_cache twice (Chris von Recklinghausen) [1754739]
+- [mm] mm/vmscan.c: fix recent_rotated history (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86/Add missing error handling to old_memmap 1:1 mapping code (Chris von Recklinghausen) [1754739]
+- [mm] arm64/mm: Inhibit huge-vmap with ptdump (Chris von Recklinghausen) [1754739]
+- [mm] mm/vmscan.c: simplify shrink_inactive_list() (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: cleanup memory offline path (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: fix the wrong usage of N_HIGH_MEMORY (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: drop redundant hugepage_migration_supported check (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: unlock 1GB-hugetlb on x86_64 (Chris von Recklinghausen) [1754739]
+- [mm] mm: move recent_rotated pages calculation to shrink_inactive_list() (Chris von Recklinghausen) [1754739]
+- [mm] x86/mm: Initialize PGD cache during mm initialization (Chris von Recklinghausen) [1754739]
+- [x86] x86/alternatives: Initialize temporary mm for patching (Chris von Recklinghausen) [1754739]
+- [mm] x86/mm: Fix a crash with kmemleak_scan() (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq: Fix outdated comments (Chris von Recklinghausen) [1754739]
+- [mm] mm/hotplug: treat CMA pages as unmovable (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Remove stack overflow debug code (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Remap the IRQ stack with guard pages (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Split the IRQ stack into its own pages (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Init hardirq_stack_ptr during CPU hotplug (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/32: Handle irq stack allocation failure proper (Chris von Recklinghausen) [1754739]
+- [xen] x86/irq/32: Invoke irq_ctx_init() from init_IRQ() (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Rename irq_stack_ptr to hardirq_stack_ptr (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/32: Rename hard/softirq_stack to hard/softirq_stack_ptr (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/32: Make irq stack a character array (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/32: Define IRQ_STACK_SIZE (Chris von Recklinghausen) [1754739]
+- [x86] x86/dumpstack/64: Speedup in_exception_stack() (Chris von Recklinghausen) [1754739]
+- [x86] x86/exceptions: Split debug IST stack (Chris von Recklinghausen) [1754739]
+- [x86] x86/exceptions: Enable IST guard pages (Chris von Recklinghausen) [1754739]
+- [x86] x86/exceptions: Disconnect IST index and stack order (Chris von Recklinghausen) [1754739]
+- [x86] x86/cpu: Remove orig_ist array (Chris von Recklinghausen) [1754739]
+- [x86] x86/cpu: Prepare TSS.IST setup for guard pages (Chris von Recklinghausen) [1754739]
+- [x86] x86/dumpstack/64: Use cpu_entry_area instead of orig_ist (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Use cpu entry area instead of orig_ist (Chris von Recklinghausen) [1754739]
+- [mm] x86/traps: Use cpu_entry_area instead of orig_ist (Chris von Recklinghausen) [1754739]
+- [mm] x86/cpu_entry_area: Provide exception stack accessor (Chris von Recklinghausen) [1754739]
+- [mm] x86/cpu_entry_area: Prepare for IST guard pages (Chris von Recklinghausen) [1754739]
+- [x86] x86/exceptions: Add structs for exception stacks (Chris von Recklinghausen) [1754739]
+- [mm] x86/cpu_entry_area: Cleanup setup functions (Chris von Recklinghausen) [1754739]
+- [x86] x86/exceptions: Make IST index zero based (Chris von Recklinghausen) [1754739]
+- [x86] x86/exceptions: Remove unused stack defines on 32bit (Chris von Recklinghausen) [1754739]
+- [x86] x86/64: Remove stale CURRENT_MASK (Chris von Recklinghausen) [1754739]
+- [x86] x86/idt: Remove unused macro SISTG (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Sanitize the top/bottom confusion (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Remove a hardcoded irq_stack_union access (Chris von Recklinghausen) [1754739]
+- [x86] x86/dumpstack: Fix off-by-one errors in stack identification (Chris von Recklinghausen) [1754739]
+- [x86] x86/irq/64: Limit IST stack overflow check to #DB stack (Chris von Recklinghausen) [1754739]
+- [mm] arm64: mm: Consolidate early page table allocation (Chris von Recklinghausen) [1754739]
+- [mm] arm64: mm: don't call page table ctors for init_mm (Chris von Recklinghausen) [1754739]
+- [mm] arm64: mm: use appropriate ctors for page tables (Chris von Recklinghausen) [1754739]
+- [x86] x86/uaccess: Move copy_user_handle_tail() into asm (Chris von Recklinghausen) [1754739]
+- [mm] mm/page_isolation.c: fix a wrong flag in set_migratetype_isolate() (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: fix notification in offline error path (Chris von Recklinghausen) [1754739]
+- [mm] mm/hotplug: fix an imbalance with DEBUG_PAGEALLOC (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: explicitly pass the head to isolate_huge_page (Chris von Recklinghausen) [1754739]
+- [mm] mm/vmscan.c: do not allocate duplicate stack variables in shrink_page_list() (Chris von Recklinghausen) [1754739]
+- [mm] mm: refactor swap-in logic out of shmem_getpage_gfp (Chris von Recklinghausen) [1754739]
+- [mm] mm/vmscan.c: remove 7th argument of isolate_lru_pages() (Chris von Recklinghausen) [1754739]
+- [mm] mm: remove extra drain pages on pcp list (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory-hotplug: Allow memory resources to be children (Chris von Recklinghausen) [1754739]
+- [kernel] mm/resource: Move HMM pr_debug() deeper into resource code (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: fix off-by-one in is_pageblock_removable (Chris von Recklinghausen) [1754739]
+- [mm] x86/cpu_entry_area: Move percpu_setup_debug_store() to __init section (Chris von Recklinghausen) [1754739]
+- [mm] arm64: ptdump: Don't iterate kernel page tables using PTRS_PER_PXX (Chris von Recklinghausen) [1754739]
+- [firmware] efi: Use 32-bit alignment for efi_guid_t (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: __offline_pages fix wrong locking (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: test_pages_in_a_zone do not pass the end of zone (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: don't bail out in do_migrate_range() prematurely (Chris von Recklinghausen) [1754739]
+- [mm] arm64: dump: no need to check return value of debugfs_create functions (Chris von Recklinghausen) [1754739]
+- [x86] x86/asm/suspend: Drop ENTRY from local data (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: deobfuscate migration part of offlining (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: try to migrate full pfn range (Chris von Recklinghausen) [1754739]
+- [mm] mm, hotplug: move init_currently_empty_zone() under zone_span_lock protection (Chris von Recklinghausen) [1754739]
+- [mm] mm: only report isolation failures when offlining memory (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: be more verbose for memory offline failures (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: print reason for the offlining failure (Chris von Recklinghausen) [1754739]
+- [mm] mm, memory_hotplug: drop pointless block alignment checks from __offline_pages (Chris von Recklinghausen) [1754739]
+- [x86] x86/efi: Don't unmap EFI boot services code/data regions for EFI_OLD_MEMMAP and EFI_MIXED_MODE (Chris von Recklinghausen) [1754739]
+- [x86] kprobes/x86: Blacklist non-attachable interrupt functions (Chris von Recklinghausen) [1754739]
+- [include] linkage: add generic GLOBAL() macro (Chris von Recklinghausen) [1754739]
+- [x86] x86/efi: Move efi_<reserve/free>_boot_services() to arch/x86 (Chris von Recklinghausen) [1754739]
+- [x86] x86/efi: Unmap EFI boot services code/data regions from efi_pgd (Chris von Recklinghausen) [1754739]
+- [mm] x86/mm/pageattr: Introduce helper function to unmap EFI boot services (Chris von Recklinghausen) [1754739]
+- [x86] x86/fpu: Use the correct exception table macro in the XSTATE_OP wrapper (Chris von Recklinghausen) [1754739]
+- [firmware] efi/arm/libstub: Pack FDT after populating it (Chris von Recklinghausen) [1754739]
+- [x86] x86/traps: Complete prototype declarations (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: clean up node_states_check_changes_offline() (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: simplify node_states_check_changes_online (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: tidy up node_states_clear_node() (Chris von Recklinghausen) [1754739]
+- [mm] mm/memory_hotplug.c: spare unnecessary calls to node_set_state (Chris von Recklinghausen) [1754739]
+- [include] include/linux/linkage.h: align weak symbols (Chris von Recklinghausen) [1754739]
+- [mm] shmem: Convert shmem_add_to_page_cache to XArray (Chris von Recklinghausen) [1754739]
+- [mm] shmem: Convert shmem_radix_tree_replace to XArray (Chris von Recklinghausen) [1754739]
+- [mm] mm: Convert add_to_swap_cache to XArray (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Clear the CS high bits (Chris von Recklinghausen) [1754739]
+- [x86] x86-32, hibernate: Set up temporary text mapping for 32bit system (Chris von Recklinghausen) [1754739]
+- [x86] x86-32, hibernate: Switch to original page table after resumed (Chris von Recklinghausen) [1754739]
+- [x86] x86-32, hibernate: Enable CONFIG_ARCH_HIBERNATION_HEADER on 32bit system (Chris von Recklinghausen) [1754739]
+- [x86] x86, hibernate: Extract the common code of 64/32 bit system (Chris von Recklinghausen) [1754739]
+- [x86] x86-32/asm/power: Create stack frames in hibernate_asm_32.S (Chris von Recklinghausen) [1754739]
+- [x86] PM / hibernate: Check the success of generating md5 digest before hibernation (Chris von Recklinghausen) [1754739]
+- [x86] x86/efi: Load fixmap GDT in efi_call_phys_epilog() before setting cr3 (Chris von Recklinghausen) [1754739]
+- [x86] x86/xen: Move pv irq related functions under CONFIG_XEN_PV umbrella (Chris von Recklinghausen) [1754739]
+- [x86] x86/extable: Introduce _ASM_EXTABLE_UA for uaccess fixups (Chris von Recklinghausen) [1754739]
+- [x86] x86/efi: Load fixmap GDT in efi_call_phys_epilog() (Chris von Recklinghausen) [1754739]
+- [tools] tools arch: Update arch/x86/lib/memcpy_64.S copy used in 'perf bench mem memcpy' (Chris von Recklinghausen) [1754739]
+- [mm] x86/mm: Remove redundant check for kmem_cache_create() (Chris von Recklinghausen) [1754739]
+- [x86] x86/power/hibernate_64: Remove VLA usage (Chris von Recklinghausen) [1754739]
+- [firmware] efi: Deduplicate efi_open_volume() (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Merge 32-bit and 64-bit UGA draw protocol setup routines (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Align efi_uga_draw_protocol typedef names to convention (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Merge the setup_efi_pci32() and setup_efi_pci64() routines (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Prevent reentrant firmware calls in mixed mode (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Add debug code to check entry/exit CR3 (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Add PTI CR3 switches to NMI handler code (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Add PTI cr3 switch to non-NMI entry/exit points (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Handle Entry from Kernel-Mode on Entry-Stack (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Introduce SAVE_ALL_NMI and RESTORE_ALL_NMI (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Leave the kernel via trampoline stack (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Enter the kernel via trampoline stack (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Load task stack from x86_tss.sp1 in SYSENTER handler (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Split off return-to-kernel path (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Unshare NMI return path (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Put ESPFIX code into a macro (Chris von Recklinghausen) [1754739]
+- [x86] x86/entry/32: Rename TSS_sysenter_sp0 to TSS_entry2task_stack (Chris von Recklinghausen) [1754739]
+- [x86] efi/x86: Clean up the eboot code (Chris von Recklinghausen) [1754739]
+- [x86] x86/asm/64: Use 32-bit XOR to zero registers (Chris von Recklinghausen) [1754739]
+- [x86] Revert "x86/platform/uv: Mark uv_bios_call() and uv_bios_call_irqsave() static" (Frank Ramsay) [1833121]
+- [x86] Revert "x86/platform/uv: Unexport sn_coherency_id" (Frank Ramsay) [1833121]
+- [x86] Revert "x86/platform/uv: Unexport symbols only used by x2apic_uv_x.c" (Frank Ramsay) [1833121]
+- [x86] x86/apic: Cleanup the include maze (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Fix missing checks of kcalloc() return values (Frank Ramsay) [1833121]
+- [x86] x86/platform/UV: Replace kmalloc() and memset() with kalloc() calls (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Remove the unused _uv_cpu_blade_processor_id() macro (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Unexport uv_apicid_hibits (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Remove _uv_hub_info_check() (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Simplify uv_send_IPI_one() (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Mark uv_min_hub_revision_id static (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Mark is_uv_hubless() static (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Remove the UV*_HUB_IS_SUPPORTED macros (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Unexport symbols only used by x2apic_uv_x.c (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Unexport sn_coherency_id (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Remove the uv_partition_coherence_id() macro (Frank Ramsay) [1833121]
+- [x86] x86/platform/uv: Mark uv_bios_call() and uv_bios_call_irqsave() static (Frank Ramsay) [1833121]
+- [x86] x86/platform/UV: Mark memblock related init code and data correctly (Frank Ramsay) [1833121]
+- [x86] x86/platform/UV: Remove unnecessary #ifdef CONFIG_EFI (Frank Ramsay) [1833121]
+- [x86] x86/platform/UV: Remove uv_bios_call_reentrant() (Frank Ramsay) [1833121]
+- [x86] x86/platform/UV: Use efi_enabled() instead of test_bit() (Frank Ramsay) [1833121]
+- [x86] x86/apic/uv: Remove code for unused distributed GRU mode (Frank Ramsay) [1833121]
+
+* Fri Nov 06 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-244.el8]
+- [thermal] thermal/x86_pkg_temp: Make pkg_temp_lock a raw_spinlock_t (Prarit Bhargava) [1890657]
+- [net] sched: act_tunnel_key: fix OOB write in case of IPv6 ERSPAN tunnels (Davide Caratti) [1889601]
+- [netdrv] ibmveth: Identify ingress large send packets (Gustavo Duarte) [1887038]
+- [netdrv] ibmveth: Switch order of ibmveth_helper calls (Gustavo Duarte) [1887038]
+- [sound] ALSA: redhat: add drivers/soundwire tree and regmap-sdw to the redhat/filter-modules.sh (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC - enable AMD Renoir support for DMIC (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC - enable the Intel's SoundWire driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/hdmi: fix incorrect locking in hdmi_pcm_close (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: fix jack detection with Realtek codecs when in D3 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: fireworks: use semicolons rather than commas to separate statements (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: use semicolons rather than commas to separate statements (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/i915 - fix list corruption with concurrent probes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - The front Mic on a HP machine doesn't work (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hdspm: Fix typo arbitary (Jaroslav Kysela) [1869536]
+- [sound] ALSA: bebob: potential info leak in hwdep_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Enable audio jacks of ASUS D700SA with ALC887 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: endpoint.c: fix repeated word 'there' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: portman2x4: fix repeated word 'if' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Add mute Led support for HP Elitebook 845 G7 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: loader: handle all SOF_IPC_EXT types (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: haswell: Mark FE DAIs as nonatomic (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: broadwell: Mark FE DAIs as nonatomic (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: Mark FE DAIs as nonatomic (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: add version_id to avoid rt714/rt715 confusion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt715-sdw: probe with RT714 Device ID (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt1316: add missing component string (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt1308: add extra check on init (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qdsp6: add ifdef CONFIG_OF around of_device_id (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-cpu: Enable MI2S BCLK and LRCLK together (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt700: add codec prefix (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Remove unused variables (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Remove ti, asi-format code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Set regcache when shutting down and waking device (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Add shutdown capability via a GPIO (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2562: Remove duplicate code for I/V sense (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASOC: Intel: sof_sdw: restore playback functionality with max98373 amps (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: add support for new SoundWire hardware layout on TGL (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: remove hard-coded codec_conf table (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: remove ternary operator (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra_max98090: use devm_snd_soc_register_card() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: hda_dsp_common: use static function in conditional block (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: mx27vis-aic32x4: use devm_snd_soc_register_card() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: imx-mc13783: use devm_snd_soc_register_card() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm_adsp: Pass full name to snd_ctl_notify (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt715: Add power-up delay to fix dmic pop sound issue (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: Enable the power of "MICBIAS" and "Vref2" for the DMIC clock (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdac_hda: allow runtime pm at end of probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: add codec name prefix to ACPI machine description (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: sysfs: add slave status and device number before probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: add enumerated Slave device to device list (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: remove an unnecessary NULL check (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: cadence: add data port test fail interrupt (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: enable test modes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: enable Data Port test modes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - set mic to auto detect on a HP AIO machine (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - Don't register a cb func if it is registered already (Jaroslav Kysela) [1869536]
+- [sound] ALSA: HDA: Early Forbid of runtime PM (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - remove kerneldoc for internal hdac_i915 function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ctl: Workaround for lockdep warning wrt card->ctl_files_rwlock (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Disable autosuspend for Lenovo ThinkStation P620 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: treewide: Remove uninitialized_var() usage (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: arm: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-pcm: add dpcm_create/remove_debugfs_state() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-pcm: move CONFIG_DEBUG_FS functions to top side (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pxa: magician: convert to use i2c_new_client_device() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pxa: Enable AC'97 bus support for PXA machines (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pxa: Select regmap from AC'97 machines (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: support TDM out and 8ch I2S out (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: kirkwood: fix external clock probe defer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ppc: keywest: convert to use i2c_new_client_device() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: treewide: Use sizeof_field() macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: hdac_hdmi: Set ops to NULL on remove (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ppc: More constifications (Jaroslav Kysela) [1869536]
+- [sound] ALSA: i2c: Constify snd_kcontrol_new items (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ppc: Constify snd_kcontrol_new items (Jaroslav Kysela) [1869536]
+- [sound] ALSA: vxpocket: Support PCM sync_stop (Jaroslav Kysela) [1869536]
+- [sound] ALSA: mips: Constify snd_device_ops definitions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: i2c: Constify snd_device_ops definitions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: seq: oss: Fix running status after receiving sysex (Jaroslav Kysela) [1869536]
+- [sound] ALSA: arm: More constification (Jaroslav Kysela) [1869536]
+- [sound] ALSA: treewide: add "WITH Linux-syscall-note" to SPDX tag of uapi headers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: treewide: replace '---help---' in Kconfig files with 'help' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: fix SPDX license for header file (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdac: make SOF HDA codec driver probe deterministic (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Refactor sample rate function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Fix the spacing and new lines (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Convert bit mask to GENMASK in header (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Fix unbalanced calls to pm_runtime (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2562: Add the TAS2110 class-D amplifier (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: control: add size checks for ext_bytes control .put() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: control: fix size checks for volatile ext_bytes control .get() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: control: fix size checks for ext_bytes control .get() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tlv320aic32x4: Enable fast charge (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tlv320aic32x4: Ensure a minimum delay before clock stabilization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt711: wait for the delayed work to finish when the system suspends (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Fix error handling with update_bits (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Fix required DT properties in the code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Add missing bias level power states (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Fix calling reset in probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt700: wait for the delayed work to finish when the system suspends (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2562: Add the TAS2564 compatible (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: add missing MODULE_LICENSE() for imx-common (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: pm: Fix prepare callback behavior for OF usecase (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: cs42l51: add additional ADC volume controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: fix the process being scheduled on core0 always (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - fix CONTROLLER_IN_GPU macro name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - handle multiple i915 device instances (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - controller is in GPU on the DG1 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - add Intel DG1 PCI and HDMI ids (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Revert "ALSA: hda - Fix silent audio output and corrupted input on MSI X570-A PRO" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add delay quirk for H570e USB headsets (Jaroslav Kysela) [1869536]
+- [sound] ALSA: compat_ioctl: avoid compat_alloc_user_space (Jaroslav Kysela) [1869536]
+- [sound] ALSA: asihpi: fix spellint typo in comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Enable front panel headset LED on Lenovo ThinkStation P520 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Couldn't detect Mic if booting with headset plugged (Jaroslav Kysela) [1869536]
+- [sound] ALSA: asihpi: fix iounmap in error handler (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: use {u32|u16}p_replace_bits (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: cadence: use u32p_replace_bits (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: get max rows and cols info from compatible (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: add support to block packing mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: clear BIT FIELDs before value set (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: Add generic bandwidth allocation algorithm (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ak4458: Add DSD support for ak4458 and ak4497 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-sc7180: Add MODULE_DEVICE_TABLE (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: Add support for tgl-h (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codec: tlv320aic32x4: do software reset before clock registration (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codec: tlv320aic32x4: fix missing aic32x4_disable_regulators() in error path (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Set MCLK input or output direction (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Add fsl_sai_check_version function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Add new added registers and new bit definition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6afe-clocks: add q6afe clock controller (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: reduce verbosity of boot error logs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: fix range checks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: remove several superfluous type-casts (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: (cosmetic) remove redundant "ret" variable uses (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: control: update test for pm_runtime_get_sync() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: debug: update test for pm_runtime_get_sync() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Add `src_hash` to `sof_ipc_fw_version` structure (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: Add debug support for imx platforms (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: disable size checks for bytes_ext controls if needed (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_audmix: make clock and output src write only (Jaroslav Kysela) [1869536]
+- [sound] ALSA: remove calls to usb_pipe_type_check for control endpoints (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hiface: move to use usb_control_msg_send() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: line6: move to use usb_control_msg_send() and usb_control_msg_recv() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: 6fire: move to use usb_control_msg_send() and usb_control_msg_recv() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usx2y: move to use usb_control_msg_send() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: USB: add usb_control_msg_send() and usb_control_msg_recv() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: USB: move snd_usb_pipe_sanity_check into the USB core (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1015: Fix the failure to flush DAC data before playback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1015: Fix DC calibration on bypass boost mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: stm32: sai: add pm_runtime support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: rockchip_i2s: fix a possible divide-by-zero bug in rockchip_i2s_hw_params() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: Use DMI oem string search for tgl_max98373_rt5682 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda-loader: s/master/primary (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: remove the HDA_DSP_CORE_MASK() macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: modify core_power_up/down op (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: rename cores_mask to host_managed_cores_mask (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: j721e-evm: Add support for j7200-cpb audio (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: support machine driver with rt1015p (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6dsp: q6afe-dai: add support to Codec DMA ports (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6dsp: q6afe: add codec lpass clocks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6dsp: q6afe: update q6afe_set_param to support global clocks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6dsp: q6afe: add lpass hw voting support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6dsp: q6afe: add global q6afe waitqueue (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6dsp: q6afe: prepare afe_apr_send_pkt to take response opcode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6dsp: q6routing: add support to Codec DMA ports (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6dsp: q6afe: add support to Codec DMA ports (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qdsp6: dt-bindings: Add q6afe display_port dt binding (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1015p: add codec driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: cadence: add parity error injection through debugfs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: export broadcast read/write capability for tests (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: realtek-soundwire: ignore initial PARITY errors (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: use quirk to filter out invalid parity errors (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: slave: add first_interrupt_done status (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: filter-out unwanted interrupt reports (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC/soundwire: bus: use property to set interrupt masks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm: Remove unused inline function snd_mask_sizeof (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/asihpi: Remove unused function hpi_stream_group_get_map() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: mixart: Correct comment wrt obsoleted tasklet usage (Jaroslav Kysela) [1869536]
+- [sound] ALSA: aloop: Replace tasklet with work (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mchp-spdiftx: add driver for S/PDIF TX Controller (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: fix SLIBMUS/SLIMBUS typo (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: cadence: fix race condition between suspend and Slave device alerts (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: imx-es8328: add missing put_device() call in imx_es8328_probe() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: common: Parse auxiliary devices from device tree (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mt6359: fix failed to parse DT properties (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Implement snd_sof_bytes_ext_volatile_get kcontrol IO (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: Add support for WO and RO TLV byte kcontrols (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: Kconfig: Allow the j721e machine driver to be used on K3 platform (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: KeemBay: Fix warning potential ! vs ~ typo (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: add v1.5.1 compatible (Jaroslav Kysela) [1869536]
+- [sound] ALSA: dt-bindings: soundwire: add bindings for Qcom controller (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: add support for mmio soundwire master devices (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: avoid dependency on CONFIG_SLIMBUS (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: fix abh/ahb typo (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: make process type optional (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_mux (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_process (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_tone (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_asrc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_src (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_host (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_volume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_mixer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: append extended data to sof_ipc_comp_dai (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: add helper for setting up IPC component (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: use the sof_ipc_comp reserved bytes for extended data (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: parse comp_ext_tokens for all widgets (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: create component extended tokens (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: add comp_ext to struct snd_sof_widget (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: tokens: add token for component UUID (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Manage module clock via DAPM (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Attach the bus clock to the regmap (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Sort masks in a consistent order (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Fix field bit number indentation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Fix ADC_DIG_CTRL field name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Fix AIF1_MXR_SRC field names (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Fix AIF1_ADCDAT_CTRL field names (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Fix AIF1 MODCLK widget name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Remove extraneous widgets (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: add dailink .prepare and .hw_free callback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: add dailink .trigger callback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: clarify return value for get_sdw_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: remove stream handling from .prepare and .hw_free (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: remove .trigger operation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: fix NULL/ERR_PTR confusion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: stream: fix NULL/IS_ERR confusion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: remove SDW_REG_SHIFT() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel_init: use FIELD_{GET|PREP} (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: use FIELD_{GET|PREP} (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: cadence: use FIELD_{GET|PREP} (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom : use FIELD_{GET|PREP} (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: stream: use FIELD_{GET|PREP} (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: slave: use SDW_DISCO_LINK_ID() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: use FIELD_GET() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: define and use addr bit masks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: fix core enable sequence (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: support topology components on secondary cores (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: add a "core" parameter to widget loading functions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Set SAI Channel Mode to Output Mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Support multiple data channel enable bits (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: don't manage link power individually (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: pass link_mask information to each master (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add error log for clock-stop invalid configs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: stream: enable hw_sync as needed by hardware (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add multi-link hw_synchronization information (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: update multi-link definition with hw sync details (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add missing support for all clock stop modes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add multi-link support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: ignore software command retries (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: disable shim wake on suspend (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: fix port_readydynamic allocation in mipi_disco (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: add definition for maximum number of ports (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: soundwire: remove port_readyusage from codecs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: vx: vx_pcm: remove redundant assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: vx: vx_pcm: remove redundant assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: vx: vx_core: clarify operator precedence (Jaroslav Kysela) [1869536]
+- [sound] ALSA: rawmidi: (cosmetic) align function parameters (Jaroslav Kysela) [1869536]
+- [sound] ALSA: atmel: ac97: clarify operator precedence (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ac97: (cosmetic) align argument names (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb: scarless_gen2: fix endianness issue (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: (cosmetic) align function parameters (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: auto_parser: remove shadowed variable declaration (Jaroslav Kysela) [1869536]
+- [sound] ALSA: aoa: i2sbus: use DECLARE_COMPLETION_ONSTACK() macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: core: init: use DECLARE_COMPLETION_ONSTACK() macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: compress_offload: remove redundant initialization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: compress_offload: dereference after checking for NULL pointer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: core: timer: clarify operator precedence (Jaroslav Kysela) [1869536]
+- [sound] ALSA: core: timer: remove redundant assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: core: pcm_memory: dereference pointer after NULL checks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: core: pcm: simplify locking for timers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: Prefer async probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: remove artificial component and DAI name constraint (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max9867: shutdown codec when changing filter type (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: AMD: Clean kernel log from deferred probe error messages (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Simplify error handling during FW boot (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Add sof_tgl_ops for TGL platforms (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Define FW boot sequence with ICCMAX (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: define macro for code loader stream format (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: modify the signature of get_stream_with_tag() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Add helper function to program ICCMAX stream (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Remove unused parameters in cl_dsp_init() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: fix VS_LTRC register name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: sof-of-dev: Add .arch_ops field (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: Replace sdev->private with sdev->pdata->hw_pdata (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add extended rom status dump to error log (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: fix the ipc_size calculation for process component (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: intel: hda: support also devices with 1 and 3 dmics (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: fix a runtime pm issue in SOF when HDMI codec doesn't work (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: report error only for the last ROM init iteration (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: loader: Add debug box region (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ext_manifest: Parse debug ABI version (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: loader: fix memory leak in get_ext_windows (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: IPC: make sof_ipc_window monosized (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: fix intel_suspend/resume defined but not used warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add AE-7 exit commands (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add AE-7 custom controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add AE-7 microphone selection commands (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add output selection for SoundBlaster AE-7 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add DSP setup functions for AE-7 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add init data for SoundBlaster AE-7 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add pre-init function for SoundBlaster AE-7 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add ca0132_mmio_init data for SoundBlaster AE-7 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Set AE-7 bools and select mixer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add SoundBlaster AE-7 pincfg (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add new quirk ID for SoundBlaster AE-7 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Fix Recon3D Center/LFE output (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add quirk output selection structures (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Clean up ca0132_alt_out_select (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Remove surround output selection (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add bass redirection controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add full-range speaker selection controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add surround channel config control (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add speaker tuning initialization commands (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Cleanup ca0132_mmio_init function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdac_hdmi: tidy up a memset() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: use consistent HDAudio spelling in comments/docs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: add dev_dbg log when driver is not selected (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: acpi: add dev_dbg() log for probe completion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: IPC: reduce verbosity of IPC pointer updates (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: reduce the log level for unhandled widgets (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: remove unnecessary memory alloc for sdev->private (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: (cosmetic) use the "bool" type where it makes sense (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: (cosmetic) remove redundant variable initialisations (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Add -EPROBE_DEFER check for regmap init (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ak5558: Add regulator support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: clean-up inclusion of header files (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: sof_sdw: add rt711 rt1316 rt714 SDCA codec support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Add topology filename override based on dmi data match (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_rt5682: override quirk data for tgl_max98373_rt5682 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: SoC: Intel: sof_sdw: Add support for product Ripto (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: rename id as part_id (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: check SoundWire version when matching codec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: max98373-sdw: add missing test on resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: soc-acpi: add support for SDCA boards (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: soc-acpi: mirror CML and TGL configurations (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof-soundwire: add support for rt5682 on link2 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: soc-acpi: cnl: add support for rt5682 on SoundWire link2 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: modify SoundWire version id in acpi match table (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Correct wrongly matching entries with audio class (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7219: Fix I/O voltage range configuration during probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: sof_sdw: add .exit callback function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: add support for TLV320AIC32x4 codec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: add build support for SoundWire (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: add missing out of memory check on drvdata->clks allocation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt6359: add codec driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Properly match with audio interface class (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Simplify quirk entries with a macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Move device rename and profile quirks to an internal table (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Hook up component probe function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: s3c2412-i2s: avoid hardcoded S3C2410_PA_IIS (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: rx1950: turn into platform driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: neo1973: turn into platform driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt*-sdw: use SDW_SLAVE_ENTRY_EXT (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm_adsp: Update naming in error handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: Get "extal" clock rate by clk_get_rate (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: add a dedicated menuconfig (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8962: Export DAC/ADC monomix switches (Jaroslav Kysela) [1869536]
+- [sound] ALSA: remove duplicate "the the" phrase in Kconfig text (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: delete repeated words in comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm0010: use DECLARE_COMPLETION_ONSTACK() macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: simple-card: Use snd_soc_of_parse_aux_devs() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: Add common helper to parse aux devs from device tree (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ak4458: Add regulator support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdac_hdmi: support 'ELD' mixer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: sound/soc/intel: Fix spelling mistake "cant" --> "can't" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: delete repeated words in comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: various vendors: delete repeated words in comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: (cosmetic) align function parameters (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: skl-topology: remove redundant assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: skl-topology: remove redundant assignments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: sst-utils: remove redundant assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: cldma: remove redundant initialization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: skl-nhlt: remove redundant initialization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: haswell-ipc: remove redundant assignments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: haswell: (cosmetic) align function parameters (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: common: (cosmetic) align function parameters (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Baytrail: (cosmetic) align function parameters (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: (cosmetic) align parameters (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: sst_pvt: simplify return handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: sst_loader: remove always-true condition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: remove useless assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: platform-pcm: fix redundant return (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: sst_pvt: remove redundant initialization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: remove redundant initialization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: sst: remove useless NULL assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: platform-pcm: remove redundant assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: compress: remove redundant assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Atom: sst-atom-controls: remove redundant assignments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: refine runtime pm for SDW_INTEL_CLK_STOP_BUS_RESET (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: support clock_stop mode without quirks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel_init: handle power rail dependencies for clock stop mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add CLK_STOP_NOT_ALLOWED support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add CLK_STOP_BUS_RESET support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add CLK_STOP_TEARDOWN for pm_runtime suspend (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: pm_runtime idle scheduling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: reinitialize IP+DSP in .prepare(), but only when resuming (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: call helper to reset Slave states on resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: fix race condition on system resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: reset pm_runtime status during system resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add pm_runtime support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7219: Fix clock handling around codec level probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7219: Move soft reset handling to codec level probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7219: Move required devm_* allocations to device level code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm-dai: add support to copy callback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm-dai: add gapless support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm-dai: prepare set params to accept profile change (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm-dai: add next track metadata support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm: add support to gapless flag in q6asm open (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm: add support to remove intial and trailing silence (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm: add length to write command token (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm: use flags directly from q6asm-dai (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm: make commands specific to streams (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm: rename misleading session id variable (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: KMB: Enable TDM audio capture (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codec: tlv3204: Moving GPIO reset and add ADC reset (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codec: tlv3204: Increased maximum supported channels (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codec: tlv3204: Enable 24 bit audio support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun50i-codec-analog: Enable DAPM for earpiece switch (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun50i-codec-analog: Enable DAPM for line out switch (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun50i-codec-analog: Make line out routes stereo (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun50i-codec-analog: Enable DAPM for headphone switch (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun50i-codec-analog: Make headphone routes stereo (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun50i-codec-analog: Group and sort mixer routes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun50i-codec-analog: Gate the amplifier clock during suspend (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun50i-codec-analog: Fix duplicate use of ADC enable bits (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bytcht_cx2072x: simplify return handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: rename shadowed variable for all broadwell boards (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda-codec: move variable used conditionally (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASOC: SOF: Intel: hda-codec: move unused label to correct position (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Add a quirk for LRCK inversion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Add missing mixer routes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sun8i-codec: Fix DAPM to match the hardware topology (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Replace synchronous check with fsl_sai_dir_is_synced (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Drop TMR/RMR settings for synchronous mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Refine enable/disable TE/RE sequence in trigger() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-platform: Use platform_get_irq (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-cpu: Use platform_get_resource (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-sc7180: Add platform driver for lpass audio (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-cpu: fix concurrency issue (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass: Use regmap_field for i2sctl and dmactl registers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-platform: fix memory leak (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-platform: Replace card->dev with component->dev (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-cpu: Move ahbix clk to platform specific function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: Add common array to initialize soc based core clocks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: Use dev_dbg() in rt5682_clk_check() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: Add basic power management support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: master: enable pm runtime (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: add argument to function definition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: add module_sdw_driver helper macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: sdw.h: fix indentation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: sdw.h: fix PRBS/Static_1 swapped definitions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: seq: virmidi: Fix running status after receiving sysex (Jaroslav Kysela) [1869536]
+- [sound] ALSA: bt87x: use pci_status_get_and_clear_errors (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - The Mic on a RedmiBook doesn't work (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: Do not cleanup uninitialized dais on soc_pcm_open failure (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: fixup headset for ASUS GX502 laptop (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Improved routing for Thinkpad X1 7th/8th Gen (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: fix double free of dangling pointer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for MPMAN Converter9 2-in-1 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: use consistent HDAudio spelling in comments/docs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: add dev_dbg log when driver is not selected (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: fix a runtime pm issue in SOF when integrated GPU is disabled (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: hdmi - add Rocketlake support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: haswell: Fix power transition refactor (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm: oss: Remove superfluous WARN_ON() for mulaw sanity check (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8994: Ensure the device is resumed in wm89xx_mic_detect functions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8994: Skip setting of the WM8994_MICBIAS register for WM1811 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - Fix silent audio output and corrupted input on MSI X570-A PRO (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: axg-toddr: fix channel order on g12 platforms (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: add snd_soc_find_dai_with_mutex() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/hdmi: always check pin power status in i915 pin fixup (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: common: Fix refcount imbalance on error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt700: Fix return check for devm_regmap_init_sdw() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt715: Fix return check for devm_regmap_init_sdw() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt711: Fix return check for devm_regmap_init_sdw() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1308-sdw: Fix return check for devm_regmap_init_sdw() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98373: Fix return check for devm_regmap_init_sdw() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Add quirk for Samsung Galaxy Book Ion NT950XCJ-X716A (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add basic capture support for Pioneer DJ DJM-250MK2 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add implicit feedback quirk for UR22C (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: fixup ams_delta_mute() function name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pcm3168a: ignore 0 Hz settings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Revert "ALSA: hda: Add support for Loongson 7A1000 controller" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/tegra: Program WAKEEN register for Tegra (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Fix 2 channel swapping for Tegra (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ca0106: fix error code handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: tgl_max98373: fix a runtime pm issue in multi-thread case (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-digi00x: exclude Avid Adrenaline from detection (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ALSA; firewire-tascam: exclude Tascam FE-8 from detection (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: Set card->owner to avoid warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: atom: Add period size constraint (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: avoid reset of sdo_limit (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: skl_hda_dsp_generic: Fix NULLptr dereference in autosuspend delay (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: fix typo in comment on INTSTAT registers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Add quirk for Samsung Galaxy Book Ion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: ignore broken processing/extension unit (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: Fix memleak in sst_media_open (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8994: Avoid attempts to read unreadable registers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: msm8916-wcd-analog: fix register Interrupt offset (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8994: Prevent access to invalid VU register bits on WM1811 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Add model alc298-samsung-headphone (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Update documentation comment for MS2109 quirk (Jaroslav Kysela) [1869536]
+- [sound] ALSA: isa: fix spelling mistakes in the comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add capture support for Saffire 6 (USB 1.1) (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Add quirk for Samsung Galaxy Flex Book (Jaroslav Kysela) [1869536]
+- [sound] ALSA: echoaudio: Fix potential Oops in snd_echo_resume() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/hdmi: Use force connectivity quirk on another HP desktop (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Fix unused variable warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6routing: add dummy register read/write function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6afe-dai: mark all widgets registers as SND_SOC_NOPM (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Make soc_component_read() returning an error code again (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - reverse the setting value in the micmute_led_set (Jaroslav Kysela) [1869536]
+- [sound] ALSA: echoaduio: Drop superfluous volatile modifier (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: Replacing component->name with codec_dai->name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: add quirk for Pioneer DDJ-RB (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: work around streaming quirk for MacroSilicon MS2109 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - fix the micmute led status for Lenovo ThinkCentre AIO (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: fix overeager device match for MacroSilicon MS2109 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Fix pin default on Intel NUC 8 Rugged (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Creative USB X-Fi Pro SB1095 volume knob support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: fix spelling mistake "buss" -> "bus" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci: delete repeated words in comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: isa: delete repeated words in comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/tegra: Add 100us dma stop delay (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Add dma stop delay variable (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hda/tegra: Set buffer alignment to 128 bytes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: seq: oss: Serialize ioctls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/hdmi: Add quirk to force connectivity (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: add startech usb audio dock name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: Fix unused variable warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra210_i2s: Fix compile warning with CONFIG_PM=n (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra210_dmic: Fix compile warning with CONFIG_PM=n (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra210_ahub: Fix compile warning with CONFIG_PM=n (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra210_admaif: Fix compile warning with CONFIG_PM=n (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra186_dspk: Fix compile warning with CONFIG_PM=n (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add support for Lenovo ThinkStation P620 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: renoir: restore two more registers during resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8962: Do not remove ADDITIONAL_CONTROL_4 from readable register list (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: Remove fsl_asoc_card_set_bias_level function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Revert "ALSA: hda: call runtime_allow() for all hda controllers" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Fix AE-5 microphone selection commands (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Add new quirk ID for Recon3D (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/ca0132 - Fix ZxR Headphone gain control get value (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Add alc269/alc662 pin-tables for Loongson-3 laptops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: Two step component registration (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: Simplify snd_soc_component_initialize declaration (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: Relocate and expose snd_soc_component_initialize (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sh: Replace 'select' DMADEVICES 'with depends on' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Fix value of FSL_SAI_CR1_RFW_MASK (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: use less strict tests for dailink capabilities (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rk3399_gru_sound: Add DAPM pins, kcontrols for jack detection (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8962: Do not access WM8962_GPIO_BASE (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: use resource_size (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: drop unnecessary list_empty (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: Added hw_params support for ALC1015 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: Passing card structure based on codec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: Renaming snd-soc-card structure and fields (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: Add sound support for Midas boards (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: KMB: Rework disable channel function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: KMB: Add 8kHz audio support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: Fix regression causing sysfs entries to disappear (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: axg-tdm-formatters: fix sclk inversion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: axg-tdmin: fix g12a skew (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: axg-tdm-interface: fix link fmt setup (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Fixed HP right speaker no sound (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: fix NULL pointer dereference during suspend (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: bcm2835: Silence clk_get() error on -EPROBE_DEFER (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2562: Update shutdown GPIO property (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: disable traces when switching to S0Ix D0I3 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: fix the suspend procedure to support s0ix entry (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/hdmi: Fix keep_power assignment for non-component devices (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Workaround for spurious wakeups on some Intel platforms (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: endpoint : remove needless check before usb_free_coherent() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: AMD: Restore PME_EN state at Power On (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel/boards: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Fix add a "ultra_low_power" function for intel reference board (alc256) (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: dapm: don't call pm_runtime_* on card device (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: typo_fix: enable headset mic of ASUS ROG Zephyrus G14(GA401) series with ALC289 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: enable headset mic of ASUS ROG Zephyrus G15(GA502) series with ALC289 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98390: update dsm param bin max size (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98390: Update dsm init sequence and condition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: don't report of_xlate_dai_name failures (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: common: Avoid printing errors for -EPROBE_DEFER (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: apq8016_sbc: Use qcom_snd_parse_of() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: common: Parse properties with "qcom, " prefix (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: common: Support parsing links without DPCM (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6afe: Remove unused q6afe_is_rx_port() function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: common: Use snd_soc_dai_link_set_capabilities() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: Use devm for resource management (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98390: Fix dac event dapm mixer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: Support configuring dai fmt from DT (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_esai: add IRQF_SHARED for devm_request_irq (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Fix build error due to 64-by-32 division (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: fix SND_SOC_J721E_EVM warnings & errors (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: omap: Replace HTTP links with HTTPS ones (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm_adsp: Support new metadata block ID's (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: Replace HTTP links with HTTPS ones (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: Replace HTTP links with HTTPS ones (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: uniphier: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mxs: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: xtensa: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: kirkwood: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sprd: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: generic: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: bcm: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: au1x: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: dwc: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: atmel: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rockchip: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: cirrus: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pxa: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sh: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sof: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: stm: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sunxi: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ux500: use asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-xxx: add asoc_substream_to_rtd() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: kbl_rt5663_rt5514_max98927: Fix kabylake_ssp_fixup function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdac_hda: fix deadlock after PCM open error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdac_hda: fix memleak on module unload (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdac_hda: call patch_ops.free() on probe error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Replace HTTP links with HTTPS ones (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183: support machine driver with max98357b (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183: support left justified format for I2S (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel/skl/hda - fix probe regression on systems without i915 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: pcm: Update rate/channels for SAI/ESAI DAIs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: Update SAI config bclk/fsync rate (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx8: Add SAI dai driver for i.MX/i.MX8X (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx8m: Fix SAI DAI driver for i.MX8M (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx8: Fix ESAI DAI driver name for i.MX8/iMX8X (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: Use ARRAY_SIZE instead of hardcoded value (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: define INFO_ flags in dsp_ops for imx8 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add implicit feedback quirk for SSL2 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Add Tegra210 based ADMAIF driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2770: Fix reset gpio property name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98357a: move control of SD_MODE back to DAI ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Soundwire: intel_init: save Slave(s) _ADR info in sdw_intel_ctx (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add wake interrupt support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel/cadence: merge Soundwire interrupt handlers/threads (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel_init: add implementation of sdw_intel_enable_irq() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: introduce helper for link synchronization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: introduce a helper to arm link synchronization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: revisit SHIM programming sequences (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: report slave_ids for each link to SOF driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add clock stop quirks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add mutex for shared SHIM register access (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add prototype for WAKEEN interrupt processing (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: add link_list to handle interrupts with a single thread (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: update headers for interrupts (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: reuse code for wait loops to set/clear bits (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: board: sof_rt5682: Update rt1015 pll input clk freq (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: avoid crash if invalid DSP topology loaded (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: add support for systems without i915 audio (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt711: remove properties in card remove (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt711: remove hard-coded codec name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai.h: drop a duplicated word (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wcd9335.h: fix duplicated word (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra20_das.h: delete duplicated words (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: Avoid the use of one-element array (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Add Tegra186 based DSPK driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Add Tegra210 based AHUB driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Add Tegra210 based I2S driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Add Tegra210 based DMIC driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Add support for CIF programming (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: common: change match table ehl-rt5660 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: remove .digital_mute (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Replace the word "slave" in vmaster API (Jaroslav Kysela) [1869536]
+- [sound] ALSA: asihpi: delete duplicated word (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Replace HTTP links with HTTPS ones (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Fixed ALC298 sound bug by adding quirk for Samsung Notebook Pen S (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: optimize the power consumption (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai.h: don't use discriminatory terms for comment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: qdsp6: Use IS_ERR() instead of IS_ERR_OR_NULL() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: disable MICBIAS and Vref2 widget in default (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: qdsp6: Use the defined variable to clean code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: snd_soc_dai_digital_mute() for both CPU/Codec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: atmel: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: fixes the missed kfree() for axg_card_add_tdm_loopback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: info: Drop WARN_ON() from buffer NULL sanity check (Jaroslav Kysela) [1869536]
+- [sound] ALSA: line6: Use kmemdup in podhd_set_monitor_level() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Add support for Loongson 7A1000 controller (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Revert "ALSA: pcm: Use SG-buffer only when direct DMA is available" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: Add missed return for calling soc_component_ret (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: fsl-asoc-card: Trivial: Fix misspelling of 'exists' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: Support Headphone and Microphone Jack detection (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: simple-card-utils: Support configure pin_name for asoc_simple_init_jack (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: ak*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: cs*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: da*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: es*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: alc*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: max*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: pcm*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: ssm*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: tas*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: tlv*: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: spear: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdmi-codec: merge .digital_mute() into .mute_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: drm/mediatek: exit earlier if failed to register audio driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: drm/i2c/tda998x: Make tda998x_audio_digital_mute static (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai.c: add .no_capture_mute support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdmi-codec: return -ENOTSUPP for digital_mute (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: fix snd_hda_codec_cleanup() documentation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: export snd_hda_codec_cleanup_for_unbind() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: Report the button event in the headset type only (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Add missed put_device() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - fixup for yet another Intel reference board (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Enable Speaker for ASUS UX563 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Enable Speaker for ASUS UX533 and UX534 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: fix the kernel-doc comment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Replace blacklist word (Jaroslav Kysela) [1869536]
+- [sound] ALSA: via82xx: Replace the words whitelist (Jaroslav Kysela) [1869536]
+- [sound] ALSA: nm256: Replace the words blacklist (Jaroslav Kysela) [1869536]
+- [sound] ALSA: intel8x0: Replace the words white/blacklist (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Replace the words white/blacklist (Jaroslav Kysela) [1869536]
+- [sound] ALSA: es1968: Replace the words white/blacklist (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ctxfi: Replace the word blacklist (Jaroslav Kysela) [1869536]
+- [sound] ALSA: bt87x: Replace the words white/blacklist (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ac97: Replace the words white/blacklist (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: don't free dma_data in DAI shutdown (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: cadence: allocate/free dma_data in set_sdw_stream (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: remove stream allocation/free (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: stream: add helper to startup/shutdown streams (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: implement get_sdw_stream() operations (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/tegra: Disable sync-write operation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ssi: don't use discriminatory terms for debug log (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: siu: don't use discriminatory terms for parameter (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsi: don't use discriminatory terms for comment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rsnd: don't use discriminatory terms for comment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rsnd: don't use discriminatory terms for function names (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: Enable Vref2 under using PLL2 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rockchip: spdif: Handle clk by pm runtime (Jaroslav Kysela) [1869536]
+- [sound] ALSA: echoaudio: re-enable IRQs on failure path (Jaroslav Kysela) [1869536]
+- [sound] ALSA: line6: add hw monitor volume control for POD HD500 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Enable headset mic of Acer TravelMate B311R-31 with ALC256 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: enable headset mic of ASUS ROG Zephyrus G14(G401) series with ALC289 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - change to suitable link model for ASUS platform (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fix race against the error recovery URB submission (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5672: Improve dai-set-fmt comment in cht_codec_fixup() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: support HDMI jack reporting (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: use hdmi-codec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183: use hdmi-codec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_spdif: Add kctl for configuring TX validity bit (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_spdif: Clear the validity bit for TX (Jaroslav Kysela) [1869536]
+- [sound] ALSA: line6: Sync the pending work cancel at disconnection (Jaroslav Kysela) [1869536]
+- [sound] ALSA: line6: Perform sanity check for each URB creation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: ak4458: Remove set but never checked variable 'ret' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: tlv320aic26: Demote seemingly unintentional kerneldoc header (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt5659: Remove many unused const variables (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt5631: fix spurious kernel-doc start and missing arguments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ux500: ux500_msp_i2s: Remove unused variables 'reg_val_DR' and 'reg_val_TSTDR' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pxa: pxa-ssp: Demote seemingly unintentional kerneldoc header (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sunxi: sun4i-spdif: Fix misspelling of 'reg_dac_txdata' in kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sunxi: sun4i-i2s: add missing clock and format arguments in kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: qdsp6: q6asm: Provide documentation for 'codec_profile' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sti: uniperif: fix 'defined by not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: atmel-pdmic: remove codec component (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: atmel-classd: remove codec component (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt*: fix 'defined but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: max98390: fix 'defined but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: es8316: fix 'defined but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: omap-mcbsp-st: Remove set, but unused variable 'w' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: jz4770: Remove defined but never used variable 'mic_boost_tlv' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: da7219: fix 'defined but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: da7210: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: uniphier: aio-core: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra20_das: remove always-true comparison (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: pcm: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: spdif: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: atmel: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sdw_max98373: add card_late_probe support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof-sdw: add MAX98373 I2C dependencies (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: max98373: add SoundWire support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: max98373: split I2C and common parts (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: support machine driver with rt1015 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: extract codec and DAI names (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: remove forward declaration of headset_init (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: sort header inclusions in alphabetical (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt286: fix unexpected interrupt happens (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8974: remove unsupported clock mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8974: fix Boost Mixer Aux Switch (Jaroslav Kysela) [1869536]
+- [sound] ALSA: xen: Remove superfluous fall through comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: atmel: Remove invalid "fall through" comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: echoaudio: Address bugs in the interrupt handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: echoaudio: Prevent some noise on unloading the module (Jaroslav Kysela) [1869536]
+- [sound] ALSA: echoaudio: Prevent races in calls to set_audio_format() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: echoaudio: Race conditions around "opencount" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: echoaudio: Remove redundant check (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: fixed kernel warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183: support machine driver with rt1015 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183: sort header inclusions in alphabetical (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qdsp6: use dev_err instead of pr_err (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm: add command opcode to timeout error report (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: core: fix null-ptr-deref bug during device removal (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoc: codecs: max98373: remove Idle_bias_on to let codec suspend (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: max98373: Removed superfluous volume control from chip default (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: add more logs when topology load fails (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: factor kfree(se) in error handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: use break on errors, not continue (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: fix tlvs in error handling for widget_dmixer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: fix kernel oops on route addition error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: add min/max channels for SAI/ESAI on i.MX8/i.MX8M (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: fix non BE conversion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: set dai_link dpcm_ flags with a helper (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb/line6: remove 'defined but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: mpc8610_hpcd: Add missing of_node_put() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7213: add default clock handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add ACPI dependency check (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: raven: acp3x-i2s: remove unused-but-set variable (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: raven: acp3x-pcm-dma: remove unused-but-set variable (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: raven: acp3x-i2s: fix 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: raven: acp3x-pcm-dma: fix 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: acp-rt5645: fix 'defined but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: acp-da7219-max98357a: fix 'defined but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm: Fix build error on m68k and others (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: Remove only the registered component in devm functions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/hdmi: Add Intel silent stream support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/au88x0: remove "defined but not used" warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: vx_core: remove warning for empty loop body (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcmcia/pdaudiocf: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/via82xx: remove 'set but not used' warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/fm801: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/es1938: remove 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: xen: remove 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/oxygen/xonar_wm87x6: remove always true condition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/rme9652/hdspm: remove always true condition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/korg1212: remove 'set but not used' warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/emu10k1: remove 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pci/emu10k1: remove "set but not used' warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/ctxfi: fix kernel-doc warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/ctxfi/ctatc: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/aw2-saa7146: remove 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/echoaudio: remove 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/asihpi: remove 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/asihpi: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pci/asihpi: remove 'set but not used' warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: isa/gus: remove 'set but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: isa/gus: remove -Wmissing-prototypes warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: compress: fix partial_drain completion state (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add implicit feedback quirk for RTX6001 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: fix SND_HDA_GENERIC kconfig & build (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: add quirk for MacroSilicon MS2109 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: core: pcm_iec958: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Enable headset mic of Acer Veriton N4660G with ALC269VC (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Enable headset mic of Acer C20-820 with ALC269VC (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Enable audio jacks of Acer vCopperbox with ALC269VC (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Fix Lenovo Thinkpad X1 Carbon 7th quirk subdevice id (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/hdmi: improve debug traces for stream lookups (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/hdmi: fix failures at PCM open on Intel ICL and later (Jaroslav Kysela) [1869536]
+- [sound] ALSA: opl3: fix infoleak in opl3 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm8400: remove unused variables (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-ac97: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add logic to check dmic hardware runtime (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: j721e-evm: Fix missing unlock on error in j721e_audio_hw_params() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: fsl_esai: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: fsl_asrc: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: fsl_spdif: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: fsl-asoc-card: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: fsl_ssi: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: fsl_ssi_dbg: remove spurious kernel-doc comment start (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5670: Rename dev_gpio to gpio1_is_irq (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5670: Remove struct rt5670_platform_data (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bxt-da7219-max98357a: return -EINVAL on unrecognized speaker amplifier (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm8994: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm9713: remove spurious kernel-doc comment start (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm8960: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm8986: fix missing kernel-doc arguments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: cs42l42: remove always-true comparisons (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: cs4270: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: sof-acpi-dev: fix 'defined but unused' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: atom: fix 'defined but not used' warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: atom: fix kernel-doc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bxt-da7219-max98357a: support MAX98390 speaker amp (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc: Add an option to select internal ratio mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: Enable interrupt in dma_open (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: KeemBay: Fix header guard (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_sai: Refine regcache usage with pm runtime (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: Add custom machine driver for j721e EVM (CPB and IVI) (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Specify stream_name for playback/capture (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rockchip: add format and rate constraints on rk3399 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: Rectifying Unbalanced pm_runtime_enable! issue (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: cancel jack_detect_work if hs_jack is set to null even soundwire mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fix some typos (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Replace s/frame/packet/ where appropriate (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fix packet size calculation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: initialize bus clock base and scale registers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: add definitions for 1.2 spec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: remove multiple blank lines (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: extend SDW_SLAVE_ENTRY (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus_type: convert open-coded while() to for() loop (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5670: Fix dac- and adc- vol-tlv values being off by a factor of 10 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5670: Add new gpio1_is_ext_spk_en quirk and enable it on the Lenovo Miix 2 10 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5670: Correct RT5670_LDO_SEL_MASK (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5672: Change bus format to I2S 2 channel (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2562: Add voltage sense slot configuration (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2562: Add right and left channel slot programming (Jaroslav Kysela) [1869536]
+- [sound] ALSA: asoc: Update supported rate and format for dummy dai (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: Drop HAS_DMA dependency to fix link failure (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: Add MAX98373 support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: Fix a typo in Kconfig (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: common: add match table for TGL MAX98373 + RT5682 SoundWire driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoc: Intel: cml_rt1011_rt5682: explicitly access first codec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: snd/soc: correct trivial kernel-doc inconsistency (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Boards: tgl_max98373: Update TDM configuration in hw_params (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: cml_rt1011_rt5682: use for_each_card_prelinks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Boards: cml_rt1011_rt5682: use statically define codec config (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Boards: cml_rt1011_rt5682: reduce log level for printing quirk (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: sof_rt5682: Add support for jsl-max98360a-rt5682 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Boards: tgl_max98373: Fix the comment for max_98373_components (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Boards: tgl_max98373: add dai_trigger function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: boards: byt*.c: remove cast in dev_info quirk log (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: add quirk override with kernel parameter (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bxt_rt298: add missing .owner field (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: add missing .owner field (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: cml_rt1011_rt5682: add missing .owner field (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: nocodec: add missing .owner field (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1015: add missing header inclusion (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: dapm: declare missing structure prototypes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: move definition of enum snd_soc_bias_level (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2562: Fix format issue for extra space before a comma (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2562: Update shutdown GPIO property (Jaroslav Kysela) [1869536]
+- [sound] ALSA: AsoC: amd: add missing snd- module prefix to the acp3x-rn driver kernel module (Jaroslav Kysela) [1869536]
+- [sound] ALSA: core: Warn on empty module (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda - let hs_mic be picked ahead of hp_mic (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: Add WM8524 support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: fix the pop noise while OMTP type headset plugin (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fix OOB access of mixer element list (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: add quirk for Samsung USBC Headset (AKG) (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1011: fix KASAN out-of-bounds bug in find_next_bit() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: set playback and capture constraints (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_easrc: Fix uninitialized scalar variable in fsl_easrc_set_ctx_format (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: cml_rt1011_rt5682: disable jack in dailink .exit() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: sof_rt5682: move disabling jack to dai link's exit() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: kbl-rt5660: use .exit() dailink callback to release gpiod (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: fix module load/unload issues (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-link: introduce exit() callback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_mqs: Fix unchecked return value for clk_prepare_enable (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_mqs: Don't check clock is NULL before calling clk API (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add registration quirk for Kingston HyperX Cloud Flight S (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm_adsp: Add controls for calibration and diagnostic FW (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: remove snd_soc_component_read32() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: ak*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: cs*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: da*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: alc*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: msm*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: max*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: tlv*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wcd*: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: atmel: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pxa: rename to snd_soc_component_read() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: use io_mutex correctly (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: merge snd_soc_component_read() and snd_soc_component_read32() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: Constify static structs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: transition to 3 steps initialization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel_init: pass link information as platform data (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel_init: use devm_ allocation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel_init: remove useless test (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: clarify drvdata and remove more indirections (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: cleanups for indirections/logs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: fix memory leak with devm_kasprintf (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: clock_stop: don't deal with UNATTACHED Slave devices (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: Replace 'objs' by 'y' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_spdif: Add pm runtime function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Enable sync-write operation as default for all controllers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rockchip: Fix a reference count leak (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: Removing unnecessary instance initialization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: closing specific instance (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Let LED cdev handling suspend/resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Unify LED helper code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/sigmatel: Use the new vmaster mute LED helper (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/conexant: Use the new vmaster mute LED helper (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Use the new vmaster mute LED helper (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: generic: Add vmaster mute LED helper (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: generic: Drop the old mic-mute LED hook (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: generic: Drop unused snd_hda_gen_fixup_micmute_led() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/sigmatel: Convert to cdev-variant of mic-mute LED controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/conexant: Convert to cdev-variant of mic-mute LED controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Convert to cdev-variant of mic-mute LED controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: generic: Add a helper for mic-mute LED with LED classdev (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: generic: Always call led-trigger for mic mute LED (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Intel: add missing PCI IDs for ICL-H, TGL-H and EKL (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: broadwell: simplify card names for SOF uses (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: cht*: simplify card names for SOF uses (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: byt*: simplify card names for SOF uses (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hdac_hda: fix memleak with regmap not freed on remove (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: add PCI IDs for ICL-H and TGL-H (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: add PCI ID for CometLake-S (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: SOF: merge COMETLAKE_LP and COMETLAKE_H (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: imply acodec glue on axg sound card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Add mute LED and micmute LED support for HP systems (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_spdif: Add support for imx6sx platform (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: Add MQS support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Fix reference count leaks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fix potential use-after-free of streams (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Add quirk for MSI GE63 laptop (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1015: Flush DAC data before playback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_ssi: Fix bclk calculation for mono channel (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Replace zero-length array with flexible-array (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: AMD: Use mixer control to switch between DMICs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98390: Add Amp init common setting func (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: DAI wclk supports 44100 Hz output (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: Let PLL2 support the freq conversion for 44100Hz sample rate (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rl6231: Add new supports on rl6231 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: img-parallel-out: Fix a reference count leak (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: img: Fix a reference count leak in img_i2s_in_set_fmt (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8960: Support headphone jack detection function (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: samsung: Add driver for Aries boards (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm0010: Use kmemdup rather than duplicating its implementation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Add makefiles and kconfig changes for KeemBay (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Add KeemBay platform driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt6358: support DMIC one-wire mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_easrc: Fix "Function parameter not described" warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_easrc: Fix -Wunused-but-set-variable (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_easrc: Fix -Wmissing-prototypes warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: tidyup Copyright (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: merge soc_pcm_trigger_start/stop() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: merge soc-io.c into soc-component.c (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_init() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_trigger() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_hw_free() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_hw_params() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_prepare() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: add soc_component_err() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: move snd_soc_component_initialize() to soc-component.c (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: move snd_soc_component_xxx_regmap() to soc-component (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: add soc_component_pin() and share code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-pcm/compress: reduce verbosity on mapping ok messages (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-pcm: improve error messages in soc_pcm_new() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: reduce verbosity of BE override message (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm: Use SG-buffer only when direct DMA is available (Jaroslav Kysela) [1869536]
+- [sound] ALSA: memalloc: Make SG-buffer helper usable for continuous buffer, too (Jaroslav Kysela) [1869536]
+- [sound] ALSA: memalloc: Initialize all fields of snd_dma_buffer properly (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm: Use dma_mmap_coherent() on x86, too (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98357a: add compatible string for MAX98360A (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Clear RIRB status before reading WP (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1015: Update rt1015 default register value according to spec modification (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: common: set correct directions for dailinks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoc: q6afe: add support to get port direction (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-pcm: fix checks for multi-cpu FE dailinks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: Let dai clks be registered whether mclk exists or not (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: wait for notification when changing clock configuration for protocol v3 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-topology: use devm_snd_soc_register_dai() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-devres: add devm_snd_soc_register_dai() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Set 48 kHz rate for Rodecaster (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: add quirk for Denon DCD-1500RE (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc_dma: Fix data copying speed issue with EDMA (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc_dma: Reuse the dma channel if available in Back-End (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: dmaengine_pcm: export soc_component_to_pcm (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: export snd_soc_lookup_component_nolocked (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add implicit feedback quirk for SSL2+ (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Add NVIDIA codec IDs 9a & 9d through a0 to patch table (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: q6asm: handle EOS correctly (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98390: Update regmap readable reg and volatile (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5645: Add platform-data for Asus T101HA (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for Toshiba Encore WT10-A tablet (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: nocodec: conditionally set dpcm_capture/dpcm_playback flags (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: boards: replace capture_only by dpcm_capture (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: core: only convert non DPCM link to DPCM link (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-pcm: dpcm: fix playback/capture checks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-pcm: dpcm: Only allow playback/capture if supported (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: add missing free_irq() in error path (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm: disallow linking stream to itself (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Manage auto-pm of all bundled interfaces (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - add a pintbl quirk for several Lenovo machines (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm: fix snd_pcm_link() lockdep splat (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Use the new macro for HP Dock rename quirks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add vendor, product and profile name for HP Thunderbolt Dock (Jaroslav Kysela) [1869536]
+- [sound] ALSA: emu10k1: delete an unnecessary condition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fix inconsistent card PM state after resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98390: Fix potential crash during param fw loading (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98390: Fix incorrect printf qualifier (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: Defer probe when fail to find codec device (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rl6231: Modify the target DMIC clock rate (Jaroslav Kysela) [1869536]
+- [sound] ALSA: es1688: Add the missed snd_card_free() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: add sienna_cichlid audio asic id for sienna_cichlid up (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add Pioneer DJ DJM-900NXS2 support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: q6asm-dai: kCFI fix (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_remove_dai_link() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_add_dai_link() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_set_bias_level_post() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_set_bias_level() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_remove() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_late_probe() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_probe() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add probed bit field to snd_soc_card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_resume_post() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_resume_pre() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_suspend_post() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: add snd_soc_card_suspend_pre() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: move snd_soc_card_subclass to soc-card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: move snd_soc_card_get_codec_dai() to soc-card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: move snd_soc_card_set/get_drvdata() to soc-card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: move snd_soc_card_jack_new() to soc-card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-card: move snd_soc_card_get_kcontrol() to soc-card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: add soc-card.c (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc.h: convert bool to bit field for snd_soc_card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sof_pcm512x: remove CONFIG_SND_HDA_CODEC_HDMI condition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sof-sdw: remove CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC condition (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: add depends on SND_SOC_SOF_HDA_AUDIO_CODEC for common hdmi (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fixing usage of plain int instead of NULL (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix generic hda codec support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: Baytrail: fix 'defined but not used' warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Subject:ASoC: soc-pcm: fix BE dai not hw_free and shutdown during mixer update (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: reduce verbosity of error messages for sof-dai and sof-link (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc_dma: Fix dma_chan leak when config DMA channel failed (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1015: Enable class-D silence and clock detections (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: img-i2s-out: Fix runtime PM imbalance on error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: remove the redundant pass checks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: refine and log the header in the correct pass (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ac97: Remove sound driver for ancient platform (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: Removing unnecessary instance initialization (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sta32x: add missed function calls in error paths (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: split i2c driver into separate module (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: nau8810: add I2C device and compatible ID (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ingenic: Unconditionally depend on devicetree (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Clean up quirk entries with macros (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Fix return value check in asoc_mmp_sspa_probe() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8962: Fix runtime PM imbalance on error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: img-spdif-in: Fix runtime PM imbalance on error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: img-spdif-out: Fix runtime PM imbalance on error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: BYT: harden IPC initialization and handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: BYT: mask BUSY or DONE interrupts in handler (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: BYT: add .remove op (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ipc: ignore DSP replies received when they are not expected (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: byt/cht: add .pm_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640/51: remove .ignore_suspend (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: pm: handle resume on legacy Intel platforms (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: byt: Add PM callbacks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: dapm: Move dai_link widgets to runtime to fix use after free (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Add new codec supported for ALC287 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Quirks for Gigabyte TRX40 Aorus Master onboard audio (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tas2552: Fix runtime PM imbalance in tas2552_component_probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fix incomplete error-handling in img_i2s_in_probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: Fix runtime PM imbalance in omap2_mcbsp_set_clks_src (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fix semicolon.cocci warnings (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: mixer: volume quirk for ESS Technology Asus USB DAC (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Add a model for Thinkpad T570 without DAC workaround (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hwdep: fix a left shifting 1 by 31 UB bug (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc: Merge suspend/resume function to runtime_suspend/resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: imx-audmix: Fix unused assignment to variable 'ret' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc: Fix -Wmissing-prototypes warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98390: Added Amplifier Driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ext_manifest: parse compiler version (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ext_manifest: parse windows (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ext_manifest: parse firmware version (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Introduce extended manifest (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: loader: Adjust validation condition for fw_offset (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-link: add snd_soc_link_compr_set_params() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-link: add snd_soc_link_compr_shutdown() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-link: add snd_soc_link_compr_startup() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-link: add snd_soc_link_be_hw_params_fixup() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-link: remove unneeded parameter from snd_soc_link_xxx() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-link: move soc_rtd_xxx() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: add soc-link.c (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: add support for MOTU UltraLite-mk3 (FireWire only model) (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max9867: keep ADCs and DACs always on (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max9867: add digital microphone controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: refactoring protocol v2 for fetching mode switch (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: refactoring protocol v3 for clock source getter (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: refactoring protocol v2 for clock source getter (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: remove obsoleted codes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: use table-based calculation of packet formats for stream management (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: use table-based calculation of packet formats for proc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: add alternative functions to detect packet format for protocol v3 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: add alternative functions to detect packet format for protocol v2 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: add model-specific table of chunk count (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: drop protocol structure (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: add wrapper functions for protocol-dependent operations (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: localize protocol data (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: move spec data to v3 protocol file (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: move spec data to v2 protocol file (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pxa: remove Compulab pxa2xx boards (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max9867: add mono playback switch (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max9867: add filter controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max9867: don't use regmap defaults (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Fix the error handling in probe() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: use a single module (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max9867: fix ADC level control (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: fix spelling mistake (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: fix trailing line in sysfs_slave.c (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: add Slave sysfs support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: master: add sysfs support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: disco: s/ch/channels/ (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Add Device Tree support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: return error when acp de-init fails (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: refactoring dai_hw_params() callback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: fix kernel warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_micfil: Do not pass irq numbers in comments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_micfil: Remove unneeded ifdef's (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc: Set ASR76K and ASR56K based on processing clock (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: enable build for RN machine driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: RN machine driver using dmic (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: create platform devices for Renoir (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: enable Renoir acp3x drivers build (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add ACP PDM DMA driver pm ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add Renoir ACP PCI driver PM ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add ACP PDM DMA driver dai ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add acp3x pdm driver dma ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: irq handler changes for ACP3x PDM dma driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add ACP3x PDM platform driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: create acp3x pdm platform device (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add acp init/de-init functions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add Renoir ACP PCI driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: add Renoir ACP3x IP register header (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Add more fixup entries for Clevo machines (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: master: add runtime pm support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus_type: add sdw_master_device support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: add unique bus id (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus_type: introduce sdw_slave_type and sdw_master_type (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: rename sdw_bus_master_add/delete, add arguments (Jaroslav Kysela) [1869536]
+- [sound] ALSA: iec1712: Initialize STDSP24 properly when using the model=staudio option (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for Toshiba Encore WT8-A tablet (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max9867: fix volume controls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_micfil: Fix unused assignment in fsl_set_clock_params() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd: raven: Make the driver name consistent across files (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_micfil: Fix indentation to put on one line affected code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: cleanup dai / component active code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: dwc: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: uniphier: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: pxa: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: meson: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: jz4740: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: cirrus: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: bcm: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: atomel: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: use snd_soc_xxx_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_stream_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_active() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dapm: use snd_soc_dai_activate()/deactivate() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_action() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-pcm: replace snd_soc_runtime_activate()/deactivate() to macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7213: move set_pll to codec level (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7213: move set_sysclk to codec level (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7213: Add regulator support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: da7213: Add da7212 DT compatible (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: cht_bsw_nau8824: remap BTN_0 as KEY_PLAYPAUSE (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt700: remap buttons (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt711: remap buttons (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: fix typo in components string (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: soc-acpi: change machine driver name for WM8804 platforms (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: make imx8m_dsp_ops static (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: make dsp_ops static (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: define INFO_ flags in dsp_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: sdw: relax sdw machine select constraints (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: add support to smart amplifier (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: inform DSP that driver is going to be removed (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: add a power_down_notify method (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Do nothing when DSP PM callbacks are not set (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt1308-sdw: remove duplicate allocation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt*-sdw: fix memory leak in set_sdw_stream() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt*-sdw: don't assign slave_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Xtreme (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm: fix incorrect hw_base increase (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Unexport some local helper functions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Drop unused snd_hda_queue_unsol_event() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Fix potential race in unsol event handler (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add duplex sound support for USB devices using implicit feedback (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: fixing upper volume limit for RME Babyface Pro routing crosspoints (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_esai: introduce SoC specific data (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Limit int mic boost for Thinkpad T530 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8962: Use force clear for WM8962_SYSCLK_ENA after reset (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Set appropriate bus format for given bit width (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Add support for the runtime power management (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Prepare/unprepare the clocks (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Remove the embedded struct ssp_device (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Add support for soc-generic-dmaengine-pcm (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Get rid of dma_params and phys_base (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: A trivial typo fix (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: omap-mcbsp: Fix an error handling path in 'asoc_mcbsp_probe()' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: Update description for HDaudio kconfig (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ux500: mop500: Fix some refcounted resources issues (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: Replace zero-length array with flexible-array (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Drop S20_3LE case (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mmp-sspa: Flip SNDRV_PCM_FMTBIT_S24_3LE on (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Use readq to read 64 bit registers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: baytrail: Fix register access (Jaroslav Kysela) [1869536]
+- [sound] ALSA: SoC: rsnd: add interrupt support for SSI BUSIF buffer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Add COEF workaround for ASUS ZenBook UX431DA (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Enable headset mic of ASUS UX581LV with ALC295 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Enable headset mic of ASUS UX550GE with ALC295 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Enable headset mic of ASUS GL503VM with ALC295 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: drivers/powerpc: Replace _ALIGN_UP() by ALIGN() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: core: fix error return code in sof_probe_continue() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: set headset button maps (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-motu: fulfill missing entries in Kconfig (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: (cosmetic) remove multiple superfluous "else" statements (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: (cosmetic) remove multiple superfluous "else" statements (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: Use IRQF_ONESHOT (Jaroslav Kysela) [1869536]
+- [sound] ALSA: fireface: add support for RME Fireface UFX (untested) (Jaroslav Kysela) [1869536]
+- [sound] ALSA: fireface: add support for RME FireFace 802 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: fireface: code refactoring to decide name of sound card (Jaroslav Kysela) [1869536]
+- [sound] ALSA: fireface: code refactoring to add enumeration constants for model identification (Jaroslav Kysela) [1869536]
+- [sound] ALSA: fireface: start IR context immediately (Jaroslav Kysela) [1869536]
+- [sound] ALSA: fireface: fix configuration error for nominal sampling transfer frequency (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek: Add quirk for Samsung Notebook (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: Replace zero-length array with flexible-array (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: Fix unused variable warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: use sequence of syt offset and data block on pool in AMDTP domain (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: pool ideal sequence of syt offset and data block (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: add cache for packet sequence to AMDTP domain structure (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: code refactoring for data block calculation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: code refactoring for syt offset calculation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: code refactoring for syt computation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: code refactoring for parameters of packet queue and IRQ timing (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: add reference to domain structure from stream structure (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: use macro for maximum value of second in 1394 OHCI isoc descriptor (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: fix invalid assignment to union data for directional parameter (Jaroslav Kysela) [1869536]
+- [sound] ALSA: fireworks: Replace zero-length array with flexible-array (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Replace zero-length array with flexible-array (Jaroslav Kysela) [1869536]
+- [sound] ALSA: rawmidi: Fix racy buffer resize under concurrent accesses (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soc: fsl_asrc: Make some functions static (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1016: Add the rt1016 support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5677: Use devm_snd_soc_register_component() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: mt8183: fix error handling of platform_get_irq() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Allow SST driver on SKL and KBL platforms with DMIC (Jaroslav Kysela) [1869536]
+- [sound] ALSA: portman2x4: Use bitwise instead of arithmetic operator for flags (Jaroslav Kysela) [1869536]
+- [sound] ALSA: sound/ppc: Use bitwise instead of arithmetic operator for flags (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mediatek: Fix error handling (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: amd :High hw_level while simultaneous capture (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Return true, false for return type bool (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: lpass-cpu: Make I2S SD lines configurable (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Use hdac_to_hda_codec macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Use dev_to_hdac_dev macro (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: bus: reduce verbosity on enumeration (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: debugfs: clarify SDPX license with GPL-2.0-only (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: slave: don't init debugfs on device registration error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: qcom: fix error handling in probe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8524: Add support S32_LE (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: Use the defined variable to simplify code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt1015: Add condition to prevent SoC providing bclk in ratio of 50 times of sample rate (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rl6231: Add the K bypass for the PLL parameters (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: adau7118: Mark the ADAU7118 reset register as volatile (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: max9768: update contact email (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: max98373: reorder max98373_reset() in resume (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/tegra: workaround playback failure on Tegra194 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: add member to store ratio for stripe control (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/tegra: correct number of SDO lines for Tegra194 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: add mapping for ASRock TRX40 Creator (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Fix S3 pop noise on Dell Wyse (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Revert "ALSA: hda/realtek: Fix pop noise on ALC225" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: firewire-lib: fix 'function sizeof not defined' error of tracepoints format (Jaroslav Kysela) [1869536]
+- [sound] ALSA: line6: Add poll callback for hwdep (Jaroslav Kysela) [1869536]
+- [sound] ALSA: line6: hwdep: add support for O_NONBLOCK opening mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF/Intel: clarify SPDX license with GPL-2.0-only (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ipc: channel map structures (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: boards: sof-wm8804: support for Hifiberry Digiplus boards (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Update correct LED status at the first time usage of update_mute_led() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Add control message quirk delay for Kingston HyperX headset (Jaroslav Kysela) [1869536]
+- [sound] ALSA: isa/wavefront: prevent out of bounds write in ioctl (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Fix unused variable warning w/o CONFIG_LEDS_TRIGGER_AUDIO (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Add LED class support for micmute LED (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Enable micmute LED on and HP system (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda/realtek - Introduce polarity for micmute LED GPIO (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: sort out Kconfig, again (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: remove unwanted btn_type assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: remove duplicate rt5682_reset() calls (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: replace message printing from pr_() to dev_() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: remove empty default case (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: fix space issues (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: simplify assertions (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: change trigger sequence to fix pop noise when stopping playback on sdw platforms (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: replace sof_link_hda_process by sof_set_dai_config (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: set component dai_index to ipc dai config dai_index (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: send ipc for all found DAIs in sof_set_dai_config (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: broadwell: Fix oops during module removal (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: rt5682: fix I2C/Soundwire dependencies (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_easrc: mark PM functions __maybe_unused (Jaroslav Kysela) [1869536]
+- [sound] ALSA: seq: oss: remove unused inline function snd_seq_oss_timer_is_realtime (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mxs-saif: Fix unused assignment (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoc: nau8810: add AUX related dapm widgets and routes (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: wm97xx: fix ac97 dependency (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: component: suppress uninitialized-variable warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_get_metadata() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_set_metadata() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_pointer() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_ack() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_get_params() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_set_params() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_trigger() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_shutdown() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compr_start() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_pcm_dai_remove() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_pcm_dai_probe() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_pcm_dai_bespoke_trigger() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_pcm_dai_trigger() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_pcm_dai_prepare() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_pcm_dai_new() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: don't overwide dai->driver->ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-dai: add soc_dai_err() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra_wm8903: Use devm_snd_soc_register_card() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: broadwell: add channel constraint (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: bdw-rt5650: add channel constraint (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: bdw-rt5677: add channel constraint (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: boards: add explicit dependency on GPIOLIB when DMIC is used (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: davinci-mcasp: Fix dma_chan refcnt leak when getting dma type (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: Automatic DMIC format configuration according to information from NHLT (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Multiple I/O PCM format support for pipe (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: Add alternative topology binary name (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hisilicon: Use the defined variable to clean code (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_easrc: Check for null pointer before dereferencing "ctx" in fsl_easrc_hw_free() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: ti: remove comparison to bool in omap_mcbsp_dai_set_dai_fmt() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: mxs-saif: Avoid unnecessary check (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw: add amp number in components string for ucm (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: hisilicon: Use IS_ERR() instead of IS_ERR_OR_NULL() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_esai: Disable exception interrupt before scheduling tasklet (Jaroslav Kysela) [1869536]
+- [sound] ALSA: pcm_native: result of put_user() needs to be checked (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: snd-sof-intel-hda-common - add hda_model parameter and pass it to HDA codec driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-compress: avoid false-positive Wuninitialized warning (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8962: set CLOCKING2 as non-volatile register (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fix racy list management in output queue (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Remove async workaround for Scarlett 2nd gen (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Improve frames size computation (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Refactor Intel NHLT init (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ACPICA: Add NHLT table signature (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Add missing dependency on IMX_SCU (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_easrc: fix spelling mistake "prefitler" -> "prefilter" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: Skylake: Replace guid_copy() with import_guid() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: dmic: Allow GPIO operations to sleep (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: return true, false in snd_soc_volsw_is_stereo() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Fix build (Jaroslav Kysela) [1869536]
+- [sound] ALSA: oxygen: use true, false for bool variables (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Fix a limit check in proc_dump_substream_formats() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel/skl/hda - fix oops on systems without i915 audio codec (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Add initial ZL38060 driver (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-compress: remove snd_compr_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sprd: use snd_compress_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: sof: use snd_compress_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: atom: use snd_compress_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: qcom: q6sp6: use snd_compress_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: uniphier: use snd_compress_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codec: wm_adsp: use snd_compress_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-compress: add snd_compress_ops (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: txx9: add back the hack for a too small resource_size_t (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_easrc: Add EASRC ASoC CPU DAI drivers (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc: Move common definition to fsl_asrc_common (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc: Support new property fsl, asrc-format (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl-asoc-card: Support new property fsl, asrc-format (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_asrc: rename asrc_priv to asrc (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Enable audio mclk during tegra_asoc_utils_init() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Add audio mclk parent configuration (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: Use device managed resource APIs to get the clock (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wcd934x: remove unneeded semicolon (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wcd9335: remove unneeded semicolon (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wcd934x: remove unnecessary comparisons to bool (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: boards: split woofer and tweeter support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Fix wrong dependency of da7210 and wm8983 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: soundwire: intel: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: Print more information in stream proc files (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: txx9: don't work around too small resource_size_t (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: haswell: Power transition refactor (Jaroslav Kysela) [1869536]
+- [sound] ALSA: Fix misspellings of "Analog Devices" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Fix misspellings of "Analog Devices" (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: handle multiple sets of tuple arrays (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: stop parsing when all tokens have been found (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: Get HDA rate and channels from topology (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: fix: parse hda_tokens to &config->hda (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: Get ALH rate amd channels from topology (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: align sof_ipc_dai_alh_params with FW (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: Rename deprecated DMIC IPC struct field (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: Change DMIC load IPC to fixed length (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: Fix typo in header file comment text (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Add XRUN flags field to struct sof_ipc_buffer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: make sof_ipc_cc_version to fixed length (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: change type char to uint8_t in topology.h (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: change type char to uint8_t in trace.h (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: change type char to uint8_t in info.h (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: add debug ABI version (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: add probe support extend data (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: Add support for DC Blocker (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ext_manifest: parse compiler version (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ext_manifest: parse windows (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: ext_manifest: parse firmware version (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Introduce extended manifest (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Introduce offset in firmware data (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Mark get_ext* function ext_hdr arguments as const (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: topology: fix: handle DAI widget connections properly with multiple CPU DAI's (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Add i.MX8MP device descriptor (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: Add i.MX8M HW support (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx: fix undefined reference issue (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: imx8: Fix randbuild error (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: topology: Remove unneeded semicolon (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: fsl_micfil: Omit superfluous error message in fsl_micfil_probe() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: skl_hda_generic: remove rtd->codec_dai (Jaroslav Kysela) [1869536]
+- [sound] ALSA: usb-audio: RME Babyface Pro mixer patch (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8900: remove some defined but not used symbols (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8990: remove some defined but unused symbols (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8991: remove defined but not used 'wm8991_dapm_rxvoice_controls' (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: wm8994: remove wm1811_snd_controls and mixin_boost_tlv (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: tegra: tegra_wm8903: Support nvidia, headset property (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt711: remove codec_dai use (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt700: remove codec_dai use (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt5682: remove codec_dai use (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_rt1308: remove codec dai use (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_hdmi: remove codec_dai use (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_sdw_hdmi: fix compilation issue in fallback mode (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof-da7219-max98373: add DMIC widget and route (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel: sof_sdw: init all aggregated codecs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: boards: support Elkhart Lake with rt5660 (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: add PCI ID for ElkhartLake (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: Add ElkhartLake HDMI codec vid (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: intel/skl/hda - set autosuspend timeout for hda codecs (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: Intel: sof_da7219_max98373: Add BE dailink for dmic16k (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: remove cpu_dai/codec_dai/cpu_dais/codec_dais (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: tidyup soc_new_pcm_runtime() rtd setups (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: set rtd->num_cpu/codec at soc_new_pcm_runtime() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: soc-core: Add dynamic debug logs in soc_dai_link_sanity_check() (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: log number of microphones detected in NHLT tables (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: reduce verbosity on SoundWire detection (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: codecs: rt1308-sdw: reduce verbosity (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: Intel: hda: remove unnecessary parentheses (Jaroslav Kysela) [1869536]
+- [sound] ALSA: ASoC: SOF: remove unneeded variables (Jaroslav Kysela) [1869536]
+- [sound] ALSA: hda: add autodetection for SoundWire (Jaroslav Kysela) [1869536]
+- [s390] mm/gup: fix gup_fast with dynamic page table folding (Philipp Rudo) [1879401 1768713 1883266]
+
+* Thu Nov 05 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-243.el8]
+- [netdrv] Take common prefetch code structure into a function (Ivan Vecera) [1882011]
+- [net] lwtunnel: only keep the available bits when setting vxlan md->gbp (Xin Long) [1879363]
+- [net] sched: only keep the available bits when setting vxlan md->gbp (Xin Long) [1879363]
+- [vhost] Don't call access_ok() when using IOTLB (Greg Kurz) [1883084]
+- [clocksource] hv: clocksource: Add notrace attribute to read_hv_sched_clock_*() functions (Mohammed Gamal) [1880230]
+- [net] core: Replace driver version to be kernel version (Petr Oros) [1867192]
+- [net] use netif_is_bridge_port() to check for IFF_BRIDGE_PORT (Josef Oskera) [1867923]
+- [net] sctp: fix sctp_auth_init_hmacs() error path (Xin Long) [1891413]
+- [net] sctp: Fix IPv6 ancestor_size calc in sctp_copy_descendant (Xin Long) [1891413]
+- [net] sctp: add SCTP_PEER_ADDR_THLDS_V2 sockopt (Xin Long) [1891413]
+- [net] sctp: add support for Primary Path Switchover (Xin Long) [1891413]
+- [net] sctp: add SCTP_EXPOSE_POTENTIALLY_FAILED_STATE sockopt (Xin Long) [1891413]
+- [net] sctp: add SCTP_ADDR_POTENTIALLY_FAILED notification (Xin Long) [1891413]
+- [net] sctp: add pf_expose per netns and sock and asoc (Xin Long) [1891413]
+- [net] qos offload add flow status with dropped count (Ivan Vecera) [1890263]
+- [i2c] i2c: i801: Add support for Intel Tiger Lake PCH-H (Steve Best) [1782725]
+- [i2c] i2c: i801: Add support for Intel Emmitsburg PCH (David Arcari) [1837403]
+- [mfd] mfd: intel-lpss: Add Intel Emmitsburg PCH PCI IDs (David Arcari) [1837403]
+- [powerpc] powerpc/papr_scm: Fix warning triggered by perf_stats_show() (Diego Domingos) [1875364]
+- [powerpc] powerpc/papr_scm: Limit the readability of 'perf_stats' sysfs attribute (Diego Domingos) [1875364]
+- [powerpc] powerpc/papr_scm: Add support for fetching nvdimm 'fuel-gauge' metric (Diego Domingos) [1875364]
+- [powerpc] powerpc/papr_scm: Fetch nvdimm performance stats from PHYP (Diego Domingos) [1875364]
+- [include] driver-core: Introduce DEVICE_ATTR_ADMIN_{RO, RW} (Diego Domingos) [1875364]
+- [net] netfilter: reject: skip csum verification for protocols that don't support it (Florian Westphal) [1740082]
+- [net] netfilter: Fix remainder of pseudo-header protocol 0 (Florian Westphal) [1740082]
+- [powerpc] powerpc/pseries: Add KVM guest doorbell restrictions (Diego Domingos) [1870221]
+- [powerpc] powerpc: Inline doorbell sending functions (Diego Domingos) [1870221]
+- [powerpc] powerpc/pseries: Use doorbells even if XIVE is available (Diego Domingos) [1870221]
+- [powerpc] powerpc: Fix P10 PVR revision in /proc/cpuinfo for SMT4 cores (Steve Best) [1885927]
+- [tools] selftests: implement flower classifier terse dump tests (Ivan Vecera) [1879189]
+- [net] sched: cls_flower: implement terse dump support (Ivan Vecera) [1879189]
+- [net] sched: implement terse dump support in act (Ivan Vecera) [1879189]
+- [net] sched: introduce terse dump flag (Ivan Vecera) [1879189]
+- [netdrv] net/mlx5e: Fix missing switch_id for representors (Petr Oros) [1874073]
+- [tools] selftests: net: Add port split test (Petr Oros) [1874073]
+- [net] devlink: Move input checks from driver to devlink (Petr Oros) [1874073]
+- [net] devlink: Add a new devlink port split ability attribute and pass to netlink (Petr Oros) [1874073]
+- [netdrv] mlxsw: Set port split ability attribute in driver (Petr Oros) [1874073]
+- [net] devlink: Add a new devlink port lanes attribute and pass to netlink (Petr Oros) [1874073]
+- [netdrv] mlxsw: Set number of port lanes attribute in driver (Petr Oros) [1874073]
+- [net] devlink: Replace devlink_port_attrs_set parameters with a struct (Petr Oros) [1874073]
+- [net] devlink: Move switch_port attribute of devlink_port_attrs to devlink_port (Petr Oros) [1874073]
+- [net] devlink: Move set attribute of devlink_port_attrs to devlink_port (Petr Oros) [1874073]
+- [netdrv] mlx5e: Use helper API to get devlink port index for all port flavours (Petr Oros) [1874073]
+- [net] devlink: Add support for board.serial_number to info_get cb. (Petr Oros) [1879194]
+- [net] devlink: Support setting hardware address of port function (Petr Oros) [1879195]
+- [net] devlink: Support querying hardware address of port function (Petr Oros) [1879195]
+- [net] devlink: Prepare devlink port functions to fill extack (Petr Oros) [1879195]
+- [net] sctp: not disable bh in the whole sctp_get_port_local() (Xin Long) [1704525]
+- [net] sctp: replace some sock_net(sk) with just 'net' (Xin Long) [1704525]
+- [x86] x86/resctrl: Fix a NULL vs IS_ERR() static checker warning in rdt_cdp_peer_get() (Terry Bowman) [1873124]
+
+* Wed Nov 04 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-242.el8]
+- [net] sched: initialize with 0 before setting erspan md->u (Xin Long) [1879358]
+- [net] ipv6: Discard next-hop MTU less than minimum link MTU (Balazs Nemeth) [1879893]
+- [kvm] Revert "x86/kvm: Move context tracking where it belongs" (Nitesh Narayan Lal) [1890284]
+- [video] hyperv_fb: Update screen_info after removing old framebuffer (Kairui Song) [1870081]
+- [x86] x86/kexec: Use up-to-dated screen_info copy to fill boot params (Kairui Song) [1870081]
+- [netdrv] netdevsim: Register control traps (Petr Oros) [1888724]
+- [net] devlink: Add ACL control packet traps (Petr Oros) [1888724]
+- [net] devlink: Add layer 3 control packet traps (Petr Oros) [1888724]
+- [net] devlink: Add layer 2 control packet traps (Petr Oros) [1888724]
+- [net] devlink: Add 'control' trap type (Petr Oros) [1888724]
+- [net] devlink: Add 'mirror' trap action (Petr Oros) [1888724]
+- [netdrv] netdevsim: Move layer 3 exceptions to exceptions trap group (Petr Oros) [1888724]
+- [net] devlink: Create dedicated trap group for layer 3 exceptions (Petr Oros) [1888724]
+- [net] xfrmi: drop ignore_df check before updating pmtu (Balazs Nemeth) [1857679]
+- [kernel] sched/features: Fix !CONFIG_JUMP_LABEL case (Daniel Bristot de Oliveira) [1885850]
+- [net] flow_offload: simplify hw stats check handling (Ivan Vecera) [1888317]
+- [scsi] scsi: core: Only re-run queue in scsi_end_request() if device queue is busy (Ewan Milne) [1885733]
+- [scsi] scsi: core: Clean up scsi_noretry_cmd() (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Make sdebug_build_parts() respect virtual_gb (Ewan Milne) [1885733]
+- [scsi] scsi: fc: Add 256GBit speed setting to SCSI FC transport (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Implement lun_format (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Remove superfluous close zone in resp_open_zone() (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_transport_sas: Add spaces around binary operator "|" (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_transport_srp: Sanitize scsi_target_block/unblock sequences (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Implement tur_ms_to_ready parameter (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Fix request sense (Ewan Milne) [1885733]
+- [scsi] scsi: core: Delete unnecessary buffer allocation for every loop iteration (Ewan Milne) [1885733]
+- [scsi] scsi: core: Add missing scsi_device_put() in scsi_host_block() (Ewan Milne) [1885733]
+- [scsi] scsi: core: Only return started requests from scsi_host_find_tag() (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_transport_iscsi: Drop a duplicated word (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_transport_sas: Add missing newline in sysfs 'enable' attribute (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_transport_fc: Match HBA Attribute Length with HBAAPI V2.0 definitions (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Update documentation url and bump version (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: every_nth triggered error injection (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Support hostwide tags (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Add check for sdebug_max_queue during module init (Ewan Milne) [1885733]
+- [scsi] scsi: sd_zbc: Fix kdoc comment format (Ewan Milne) [1885733]
+- [scsi] scsi: sd: Fix kdoc comment format (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Fix in_use bitmap corruption (Ewan Milne) [1885733]
+- [scsi] scsi: core: Register sysfs for SCSI workqueue (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_transport_spi: Fix function pointer check (Ewan Milne) [1885733]
+- [scsi] scsi: core: Fix formatting errors in scsi_lib.c (Ewan Milne) [1885733]
+- [scsi] scsi: core: Remove scsi_sdb_cache (Ewan Milne) [1885733]
+- [scsi] scsi: sr: Fix sr_probe() missing deallocate of device minor (Ewan Milne) [1885733]
+- [scsi] scsi: sr: Fix sr_probe() missing mutex_destroy (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Parser tables and code interaction (Ewan Milne) [1885733]
+- [scsi] scsi: core: Refactor scsi_mq_setup_tags function (Ewan Milne) [1885733]
+- [scsi] scsi: core: Fix incorrect usage of shost_for_each_device (Ewan Milne) [1885733]
+- [scsi] scsi: sd: Add zoned capabilities device attribute (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Fix an error handling bug in sdeb_zbc_model_str() (Ewan Milne) [1885733]
+- [scsi] scsi: pm: Balance pm_only counter of request queue during system resume (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Disallow zone sizes that are not powers of 2 (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Implement ZBC host-aware emulation (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Add zone_size_mb module parameter (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Add zone_nr_conv module parameter (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Add zone_max_open module parameter (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Add ZBC module parameter (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Add ZBC zone commands (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Add ZBC mode and VPD pages (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Bump to version 1.89 (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Re-arrange parameters alphabetically (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Implement PRE-FETCH commands (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Weaken rwlock around ramdisk access (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Implement VERIFY(10), add VERIFY(16) (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Add per_host_store option (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Use scsi_et_resid() where appropriate (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_debug: Randomize command completion time (Ewan Milne) [1885733]
+- [scsi] scsi: core: doc: Change function comments to kernel-doc style (Ewan Milne) [1885733]
+- [scsi] scsi: sr: Use {get, put}_unaligned_be*() instead of open-coding these functions (Ewan Milne) [1885733]
+- [scsi] scsi_ioctl.c: switch SCSI_IOCTL_GET_IDLUN to copy_to_user() (Ewan Milne) [1885733]
+- [scsi] scsi: core: Avoid calling synchronize_rcu() for each device in scsi_host_block() (Ewan Milne) [1885733]
+- [scsi] scsi: st: remove unneeded variable 'result' in st_release() (Ewan Milne) [1885733]
+- [scsi] scsi: sr: Fix sr_block_release() (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_trace: Use get_unaligned_be24() (Ewan Milne) [1885733]
+- [scsi] scsi: st: Use get_unaligned_be24() and sign_extend32() (Ewan Milne) [1885733]
+- [scsi] scsi: core: add scsi_host_busy_iter() (Ewan Milne) [1885733]
+- [scsi] scsi: core: add scsi_host_(block, unblock) helper function (Ewan Milne) [1885733]
+- [scsi] scsi: core: add scsi_host_complete_all_commands() helper (Ewan Milne) [1885733]
+- [scsi] scsi: sr: get rid of sr global mutex (Ewan Milne) [1885733]
+- [powerpc] scsi: sr: remove references to BLK_DEV_SR_VENDOR, leave it enabled (Ewan Milne) [1885733]
+- [scsi] scsi: core: remove .for_blk_mq (Ewan Milne) [1885733]
+- [scsi] scsi: sd_zbc: Rename sd_zbc_check_zones() (Ewan Milne) [1885733]
+- [scsi] scsi: sd_zbc: Simplify sd_zbc_check_zones() (Ewan Milne) [1885733]
+- [ata] scsi: core: Clean up SG_NONE (Ewan Milne) [1885733]
+- [scsi] scsi: scsi_transport.h: switch to SPDX tags (Ewan Milne) [1885733]
+- [scsi] scsi: libsas: Inject revalidate event for root port event (Ewan Milne) [1885733]
+- [scsi] scsi: libsas: Stop hardcoding SAS address length (Ewan Milne) [1885733]
+- [scsi] scsi: clean obsolete return values of eh_timed_out (Ewan Milne) [1885733]
+- [scsi] scsi: libsas: Fix some indentation in libsas.h (Ewan Milne) [1885733]
+- [scsi] scsi: st: mark expected switch fall-throughs (Ewan Milne) [1885733]
+- [scsi] scsi: libsas: delete dead code in scsi_transport_sas.c (Ewan Milne) [1885733]
+- [nvme] nvme-rdma: params to enable pi_capable devices (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Fix return value in __lpfc_nvme_ls_abort (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: fix axchg pointer reference after free and double frees (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Fix pointer checks and comments in (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] scsi: lpfc: Fix lpfc_nodelist leak when processing unsolicited event (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] scsi: lpfc: Remove redundant initialization to variable rc (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Refactor Send LS Response support (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Refactor Send LS Abort support (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: nvme: Add Receive LS Request and Send LS Response support to nvme (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Refactor Send LS Request support (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: nvmet: Add Send LS Request and Abort LS Request support (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: nvmet: Add support for NVME LS request hosthandle (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Refactor NVME LS receive handling (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Commonize lpfc_async_xchg_ctx state and flag definitions (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Refactor nvmet_rcv_ctx to create lpfc_async_xchg_ctx (Gopal Tiwari) [1857052 1857051 1853231]
+- [scsi] lpfc: Refactor lpfc nvme headers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fabrics: allow to queue requests for live queues (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fc: cancel async events before freeing event struct (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: cancel async events before freeing event struct (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: cancel async events before freeing event struct (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Revert: Fix controller creation races with teardown flow (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: only use power of two io boundaries (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: fix reset hang if controller died in the middle of a reset (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Fix NULL dereference for pci nvme controllers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: cancel nvme device request before disabling (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: Fix a missed _irqsave version of spin_lock in 'nvmet_fc_fod_op_done()' (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: serialize controller teardown sequences (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: fix reset hang if controller died in the middle of a reset (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: fix timeout handler (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: fix controller instance leak (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: fix timeout handler (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fabrics: don't check state NVME_CTRL_NEW for request acceptance (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: serialize controller teardown sequences (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-tcp: Fix NULL dereference when a connect data comes in h2cdata pdu (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: have nvme_wait_freeze_timeout return if it timed out (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: Disable keep-alive timer when kato is cleared to 0h (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fc: Fix wrong return value in __nvme_fc_init_request() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Use spin_lock_irq() when taking the ctrl->lock (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: skip noiob for zoned devices (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: call blk_mq_free_request() directly (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: fix oops in pt cmd execution (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: Use u32 for nvme_dev.q_depth and nvme_queue.q_depth (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: add ns tear down label for pt-cmd handling (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: fix a memory leak (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-passthru: Reject commands with non-sgl flags set (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-loop: remove extra variable in create ctrl (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-loop: set ctrl state connecting after init (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: introduce nvme_ctrl_get_by_path() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: introduce the passthru Kconfig option (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: introduce the passthru configfs interface (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: Add passthru enable/disable helpers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: add passthru code to process commands (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: export nvme_find_get_ns() and nvme_put_ns() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: introduce nvme_execute_passthru_rq to call nvme_passthru_() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: remove redundant del_work_active flag (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: create helper function to obtain command effects (Gopal Tiwari) [1857052 1853231]
+- [nvme] nvme-hwmon: log the controller device name (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: check successful reference in nvmet_fc_find_target_assoc (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: clear any SGL flags in passthru commands (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: fix deadlock in disconnect during scan_work and/or ana_work (Gopal Tiwari) [1857052 1857051 1853231]
+- [acpi] nvme-pci: add support for ACPI StorageD3Enable property (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-rdma: use new shared CQ mechanism (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: use xarray for ctrl ns storing (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: document nvme controller states (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: use new shared CQ mechanism (Gopal Tiwari) [1857052 1857051 1853231]
+- [infiniband] RDMA/core: Add protection for shared CQs used by ULPs (Gopal Tiwari) [1857052 1853231]
+- [infiniband] RDMA/core: Introduce shared CQ pool API (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: remove an unnecessary condition (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: remove redundant validation in nvme_start_ctrl() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: prevent SK hynix PC400 from using Write Zeroes command (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: fix possible hang waiting for icresp response (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: explicitly update mpath disk capacity on revalidation (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: remove ns->disk checks (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: fix some comments issues (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: remove redundant segment validation (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: use the consistent return type of nvme_pci_iod_alloc_size() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: add a blank line after declarations (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: support for multiple Command Sets Supported and Effects log pages (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: document quirked Intel models (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: expose reconnect_delay and ctrl_loss_tmo via sysfs (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: use USEC_PER_SEC instead of magic numbers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: implement multiple I/O Command Set support (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-tcp: simplify nvmet_process_resp_list (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: leverage request plugging (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: have queue prod/cons send list become a llist (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: optimize network stack with setting msg flags according to batch size (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fcloop: verify wwnn and wwpn format (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: use unsigned type for u64 (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: introduce flags member in nvmet_fabrics_ops (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-tcp: remove has_keyed_sgls initialization (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-loop: remove unused 'target_ctrl' in nvme_loop_ctrl (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: remove the empty line at the beginning of nvme_should_reset() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: code cleanup for nvme_alloc_host_mem() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: use unsigned for io queue depth (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-core: use u16 type for ctrl->sqsize (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-core: use u16 type for directives (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: fix a crash in nvme_mpath_add_disk (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: fix a missing completion with remove invalidation (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: factor out a nvme_rdma_end_request helper (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-multipath: fix deadlock due to head->lock (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: don't protect ns mutation with ns->head->lock (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-multipath: fix bogus request queue reference put (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-multipath: fix deadlock between ana_work and scan_work (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: fix possible deadlock when I/O is blocked (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: assign completion vector correctly (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: initialize tagset numa value to the value of the ctrl (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: override the value of the controller's numa node (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: initialize tagset numa value to the value of the ctrl (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: set initial value for controller's numa node (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-loop: initialize tagset numa value to the value of the ctrl (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: use simple suspend when a HMB is enabled (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-tcp: constify nvmet_tcp_ops (Gopal Tiwari) [1857052 1857051 1853231]
+- [net] net: add sock_set_keepalive (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: constify nvme_tcp_mq_ops and nvme_tcp_admin_mq_ops (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: do not call del_gendisk() on a disk that was never added (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] ipv4: add ip_sock_set_tos (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] tcp: add tcp_sock_set_syncnt (Gopal Tiwari) [1857052 1857051 1853231]
+- [net] tcp: add tcp_sock_set_nodelay (Gopal Tiwari) [1857052 1857051 1853231]
+- [net] net: add sock_no_linger (Gopal Tiwari) [1857052 1857051 1853231]
+- [target] net: add sock_set_reuseaddr (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] net: add sock_set_priority (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: avoid race between nvme_reap_pending_cqes() and nvme_poll() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: add metadata/T10-PI support (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-rdma: add metadata/T10-PI support (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: add metadata support for block devices (Gopal Tiwari) [1857052 1857051 1853231]
+- [include] nvme: add Metadata Capabilities enumerations (Gopal Tiwari) [1857052 1853231]
+- [nvme] nvme: set dma alignment to qword (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: add metadata characteristics for a namespace (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: introduce NVME_INLINE_METADATA_SG_CNT (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: introduce max_integrity_segments ctrl attribute (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: add metadata/T10-PI support (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: enforce extended LBA format for fabrics metadata (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: introduce nvme_rdma_sgl structure (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: rename nvmet_check_data_len to nvmet_check_transfer_len (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: rename nvmet_rw_len to nvmet_rw_data_len (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: generate AEN for ns revalidate size change (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: introduce NVME_NS_METADATA_SUPPORTED flag (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: introduce namespace features flag (Gopal Tiwari) [1857052 1857051 1853231]
+- [lightnvm] lightnvm: disable interleaved metadata (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: make nvme_ns_has_pi accessible to transports (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: add helper to revalidate bdev and file ns (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: revalidate-ns & generate AEN from configfs (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-tcp: set MSG_EOR if we send last payload in the batch (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: replace zero-length array with flexible-array (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: delete an unnecessary declaration (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: make sure write/poll_queues less or equal then cpu count (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: disable streams when get stream params failed (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: fix io_opt limit setting (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-tcp: set MSG_SENDPAGE_NOTLAST with MSG_MORE when we have more to send (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-tcp: move send/recv error handling in the send/recv methods instead of call-sites (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: mark nvmet_ana_state static (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: set MSG_SENDPAGE_NOTLAST with MSG_MORE when we have more to send (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: replace kstrndup() with kmemdup_nul() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: dma read memory barrier for completions (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: try to send request in queue_rq context (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: align addrfam list to spec (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: flush scan work on passthrough commands (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: define constants for identification values (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: use type-name map for address treq (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: use type-name map for ana states (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: use type-name map for address family (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-multipath: stop using ->queuedata (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: remove volatile cqes (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: avoid scheduling io_work if we are already polling (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: clean up error handling in nvme_init_ns_head (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: remove last_sq_tail (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: add generic type-name mapping (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: centralize port enable access for configfs (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fc: avoid gcc-10 zero-length-bounds warning (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-tcp: use bh_lock in data_ready (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: add ns revalidation support (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: slight cleanup for kbuild test warnings (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: unlink head after removing last namespace (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-multipath: set bdi capabilities once (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: revalidate after verifying identifiers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-rdma: use SRQ per completion vector (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-rdma: add an error flow for post_recv failures (Gopal Tiwari) [1857052 1853231]
+- [nvme] nvme: remove the magic 1024 constant in nvme_scan_ns_list (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: release namespace head reference on error (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: avoid an Identify Controller command for each namespace scan (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: factor out a nvme_ns_remove_by_nsid helper (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: consolidate chunk_sectors settings (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: consolodate io settings (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: revalidate namespace stream parameters (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: clean up nvme_scan_work (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: refine the Qemu Identify CNS quirk (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: check namespace head shared property (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: always search for namespace head (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: remove unused parameter (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: add LS failure messages (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: provide num dword helper (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: Add Disconnect Association Xmt support (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: track hostport handle for associations (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fcloop: add target to host LS request support (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fcloop: refactor to enable target to host LS (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: rename ls_list to ls_rcv_list (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: perform small cleanups on unneeded checks (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fc: Update header and host for common definitions for LS handling (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: Update target for common definitions for LS handling (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: Better size LS buffers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fc nvmet-fc: refactor for common LS definitions (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fc: Add Disconnect Association Rcv support (Gopal Tiwari) [1857052 1857051 1853231]
+- [include] nvme-fc: Sync header to FC-NVME-2 rev 1.08 (Gopal Tiwari) [1857052 1853231]
+- [nvme] nvme-fc and nvmet-fc: revise LLDD api for LS reception and LS request (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: fix "slimmer CQ head update" (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: prevent double free in nvme_alloc_ns() error handling (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-rdma: fix double free of rdma queue (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-rdma: fix bonding failover possible NULL deref (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: fix NULL dereference when removing a referral (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: inherit stable pages constraint in the mpath stack device (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-fc: fix typo in comment (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: Replace comma with a semicolon (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fcloop: fix deallocation of working context (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: fix compat address handling in several ioctls (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Fix controller creation races with teardown flow (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-rdma: Add warning on state change failure at nvme_rdma_setup_ctrl (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: cleanup namespace identifier reporting in nvme_init_ns_head (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: rename __nvme_find_ns_head to nvme_find_ns_head (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: release ida resources (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-rdma: Implement get_mdts controller op (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Use nvme_state_terminal helper (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet-rdma: allocate RW ctxs according to mdts (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Add compat_ioctl handler for NVME_IOCTL_SUBMIT_IO (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-fabrics: Use scnprintf() for avoiding potential buffer overflow (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Remove unused return code from nvme_delete_ctrl_sync (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: Re-order nvme_pci_free_ctrl (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: properly print controller address (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: Add get_mdts op for controllers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: Simplify nvme_poll_irqdisable (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: slimmer CQ head update (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: Remove two-pass completions (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: Remove tag from process cq (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: check ncqr & nsqr for set-features cmd (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Check for readiness more quickly, to speed up boot time (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: code cleanup nvme_identify_ns_desc() (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Don't deter users from enabling hwmon support (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: expose hostid via sysfs for fabrics controllers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: expose hostnqn via sysfs for fabrics controllers (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] scsi: treewide: Consolidate {get, put}_unaligned_e24() definitions (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: check sscanf value for subsys serial attr (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: remove unused return code from nvme_alloc_ns (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: configfs code cleanup (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: make ctrl model configurable (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvmet: make ctrl-id configurable (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme: Fix uninitialized-variable warning (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme-pci: Use single IRQ vector for old Apple models (Gopal Tiwari) [1857052 1857051 1853231]
+- [nvme] nvme/pci: Add sleep quirk for Samsung and Toshiba drives (Gopal Tiwari) [1857052 1857051 1853231]
+- [md] dm: fix request-based DM to not bounce through indirect dm_make_request (Mike Snitzer) [1885650]
+- [md] dm: add support for REQ_NOWAIT and enable it for linear target (Mike Snitzer) [1885650]
+- [block] block: add QUEUE_FLAG_NOWAIT (Mike Snitzer) [1885650]
+- [md] dm: export dm_copy_name_and_uuid (Mike Snitzer) [1885650]
+- [md] dm snap persistent: simplify area_io() (Mike Snitzer) [1885650]
+- [md] dm thin metadata: Remove unused local variable when create thin and snap (Mike Snitzer) [1885650]
+- [md] dm raid: fix discard limits for raid0, raid1 and raid10 (Mike Snitzer) [1885650]
+- [md] dm: use dm_table_get_device_name() where appropriate in targets (Mike Snitzer) [1885650]
+- [md] dm table: make 'struct dm_table' definition accessible to all of DM core (Mike Snitzer) [1885650]
+- [md] dm: eliminate need for start_io_acct() forward declaration (Mike Snitzer) [1885650]
+- [md] dm: simplify __process_abnormal_io() (Mike Snitzer) [1885650]
+- [md] dm: push use of on-stack flush_bio down to __send_empty_flush() (Mike Snitzer) [1885650]
+- [md] dm thin metadata: Fix use-after-free in dm_bm_set_read_only (Mike Snitzer) [1885650]
+- [md] dm thin metadata: Avoid returning cmd->bm wild pointer on error (Mike Snitzer) [1885650]
+- [md] dm cache metadata: Avoid returning cmd->bm wild pointer on error (Mike Snitzer) [1885650]
+- [md] dm integrity: fix error reporting in bitmap mode after creation (Mike Snitzer) [1885650]
+- [md] dm crypt: Initialize crypto wait structures (Mike Snitzer) [1885650]
+- [md] dm mpath: fix racey management of PG initialization (Mike Snitzer) [1885650]
+- [md] dm writecache: handle DAX to partitions on persistent memory correctly (Mike Snitzer) [1885650]
+- [md] dm ioctl: Fix compilation warning (Mike Snitzer) [1885650]
+- [md] dm raid: Remove empty if statement (Mike Snitzer) [1885650]
+- [md] dm verity: Fix compilation warning (Mike Snitzer) [1885650]
+- [md] dm bufio: do buffer cleanup from a workqueue (Mike Snitzer) [1885650]
+- [md] dm verity: add "panic_on_corruption" error handling mode (Mike Snitzer) [1885650]
+- [md] dm: use noio when sending kobject event (Mike Snitzer) [1885650]
+- [md] dm writecache: add cond_resched to loop in persistent_memory_claim() (Mike Snitzer) [1885650]
+- [md] dm ioctl: use struct_size() helper in retrieve_deps() (Mike Snitzer) [1885650]
+- [md] dm writecache: skip writecache_wait when using pmem mode (Mike Snitzer) [1885650]
+- [md] dm writecache: correct uncommitted_block when discarding uncommitted entry (Mike Snitzer) [1885650]
+- [md] dm crypt: avoid truncating the logical block size (Mike Snitzer) [1885650]
+- [md] dm bufio: clean up rbtree block ordering (Mike Snitzer) [1885650]
+- [documentation] dm integrity: add status line documentation (Mike Snitzer) [1885650]
+- [md] dm: replace zero-length array with flexible-array (Mike Snitzer) [1885650]
+- [md] dm mpath: add Historical Service Time Path Selector (Mike Snitzer) [1885650]
+- [md] dm mpath: pass IO start time to path selector (Mike Snitzer) [1885650]
+- [md] dm writecache: improve performance on DDR persistent memory (Optane) (Mike Snitzer) [1885650]
+- [md] dm writecache: remove superfluous test in persistent_memory_claim (Mike Snitzer) [1885650]
+- [md] dm persistent data: switch exit_ro_spine to return void (Mike Snitzer) [1885650]
+- [md] dm integrity: remove set but not used variables (Mike Snitzer) [1885650]
+- [documentation] dm crypt: document encrypted keyring key option (Mike Snitzer) [1885650]
+- [md] dm crypt: support using encrypted keys (Mike Snitzer) [1885650]
+- [md] dm verity fec: fix hash block number in verity_fec_decode (Mike Snitzer) [1885650]
+- [documentation] dm integrity: document allow_discard option (Mike Snitzer) [1885650]
+- [net] bridge: always clear mcast matching struct on reports and leaves (Ivan Vecera) [1859244]
+- [net] bridge: increase multicast's default maximum number of entries (Ivan Vecera) [1859244]
+- [net] bridge: mark hash_elasticity as obsolete (Ivan Vecera) [1859244]
+- [net] bridge: multicast: use non-bh rcu flavor (Ivan Vecera) [1859244]
+- [net] bridge: convert multicast to generic rhashtable (Ivan Vecera) [1859244]
+- [net] revert "net/bridge: Replace call_rcu_bh() and rcu_barrier_bh()" (Ivan Vecera) [1859244]
+- [net] ip6gre: avoid tx_error when sending MLD/DAD on external tunnels (Davide Caratti) [1847838]
+- [nvme] nvme-rdma: fix controller reset hang during traffic (Ming Lei) [1881760]
+- [nvme] nvme-tcp: fix controller reset hang during traffic (Ming Lei) [1881760]
+- [scsi] scsi: sd: sd_zbc: Fix ZBC disk initialization (Ming Lei) [1881760]
+- [md] dm: update original bio sector on Zone Append (Ming Lei) [1881760]
+- [s390] s390/dasd: Fix zero write for FBA devices (Ming Lei) [1881760]
+- [block] block: restore a specific error code in bdev_del_partition (Ming Lei) [1881760]
+- [block] blk-stat: make q->stats->lock irqsafe (Ming Lei) [1881760]
+- [block] blk-iocost: ioc_pd_free() shouldn't assume irq disabled (Ming Lei) [1881760]
+- [block] block: fix locking in bdev_del_partition (Ming Lei) [1881760]
+- [block] block: release disk reference in hd_struct_free_work (Ming Lei) [1881760]
+- [block] loop: Set correct device size when using LOOP_CONFIGURE (Ming Lei) [1881760]
+- [block] loop: unset GENHD_FL_NO_PART_SCAN on LOOP_CONFIGURE (Ming Lei) [1881760]
+- [block] block: check queue's limits.discard_granularity in __blkdev_issue_discard() (Ming Lei) [1881760]
+- [block] block: don't do revalidate zones on invalid devices (Ming Lei) [1881760]
+- [s390] s390/dasd: fix inability to use DASD with DIAG driver (Ming Lei) [1881760]
+- [tools] iocost_monitor: start from the oldest usage index (Ming Lei) [1881760]
+- [block] iocost: Fix check condition of iocg abs_vdebt (Ming Lei) [1881760]
+- [block] block: Use non _rcu version of list functions for tag_set_list (Ming Lei) [1881760]
+- [block] blk-cgroup: show global disk stats in root cgroup io.stat (Ming Lei) [1881760]
+- [block] blk-cgroup: make iostat functions visible to stat printing (Ming Lei) [1881760]
+- [block] block: improve discard bio alignment in __blkdev_issue_discard() (Ming Lei) [1881760]
+- [block] block: defer flush request no matter whether we have elevator (Ming Lei) [1881760]
+- [block] block: make blk_timeout_init() static (Ming Lei) [1881760]
+- [block] Revert "blk-rq-qos: remove redundant finish_wait to rq_qos_wait." (Ming Lei) [1881760]
+- [block] block: relax jiffies rounding for timeouts (Ming Lei) [1881760]
+- [lib] sbitmap: Consider cleared bits in sbitmap_bitmap_show() (Ming Lei) [1881760]
+- [block] blk-cgroup: clean up indentation (Ming Lei) [1881760]
+- [block] blk-cgroup: remove a dead check in blk_throtl_bio (Ming Lei) [1881760]
+- [block] blk-cgroup: remove blkcg_bio_issue_check (Ming Lei) [1881760]
+- [block] blk-cgroup: move rcu locking from blkcg_bio_issue_check to blk_throtl_bio (Ming Lei) [1881760]
+- [kernel] cgroup: unexport cgroup_rstat_updated (Ming Lei) [1881760]
+- [block] blk-cgroup: remove the !bio->bi_blkg check in blkcg_bio_issue_check (Ming Lei) [1881760]
+- [block] block: move the initial blkg lookup into blkg_tryget_closest (Ming Lei) [1881760]
+- [block] block: bypass blkg_tryget_closest for the root_blkg (Ming Lei) [1881760]
+- [block] block: merge blkg_lookup_create and __blkg_lookup_create (Ming Lei) [1881760]
+- [block] block: move the bio cgroup associatation helpers to blk-cgroup.c (Ming Lei) [1881760]
+- [block] block: move bio_associate_blkg_from_page to mm/page_io.c (Ming Lei) [1881760]
+- [block] block: merge __bio_associate_blkg into bio_associate_blkg_from_css (Ming Lei) [1881760]
+- [block] block: really clone the block cgroup in bio_clone_blkg_association (Ming Lei) [1881760]
+- [block] blkcg: clean up blkg_tryget_closest() (Ming Lei) [1881760]
+- [block] block: remove bio_disassociate_blkg (Ming Lei) [1881760]
+- [md] dm: use bio_uninit instead of bio_disassociate_blkg (Ming Lei) [1881760]
+- [block] blk-rq-qos: remove redundant finish_wait to rq_qos_wait (Ming Lei) [1881760]
+- [block] blktrace: Provide event for request merging (Ming Lei) [1881760]
+- [fs] block: simplify sb_is_blkdev_sb (Ming Lei) [1881760]
+- [fs] block: mark bd_finish_claiming static (Ming Lei) [1881760]
+- [tty] tty/sysrq: emergency_thaw_all does not depend on CONFIG_BLOCK (Ming Lei) [1881760]
+- [block] blk-iocost: Use struct_size() in kzalloc_node() (Ming Lei) [1881760]
+- [block] block: bio: Use struct_size() in kmalloc() (Ming Lei) [1881760]
+- [block] block: create the request_queue debugfs_dir on registration (Ming Lei) [1881760]
+- [block] blk-mq: add a new blk_mq_complete_request_remote API (Ming Lei) [1881760]
+- [block] blk-mq: factor out a blk_mq_complete_need_ipi helper (Ming Lei) [1881760]
+- [block] blk-mq: remove the get_cpu/put_cpu pair in blk_mq_complete_request (Ming Lei) [1881760]
+- [block] blk-mq: move failure injection out of blk_mq_complete_request (Ming Lei) [1881760]
+- [block] blk-mq: merge the softirq vs non-softirq IPI logic (Ming Lei) [1881760]
+- [block] blk-mq: short cut the IPI path in blk_mq_force_complete_rq for !SMP (Ming Lei) [1881760]
+- [block] blk-mq: complete polled requests directly (Ming Lei) [1881760]
+- [block] blk-mq: remove raise_blk_irq (Ming Lei) [1881760]
+- [block] blk-mq: factor out a helper to reise the block softirq (Ming Lei) [1881760]
+- [block] blk-mq: merge blk-softirq.c into blk-mq.c (Ming Lei) [1881760]
+- [block] nbd: Fix memory leak in nbd_add_socket (Ming Lei) [1881760]
+- [block] block: make function __bio_integrity_free() static (Ming Lei) [1881760]
+- [block] virtio-blk: free vblk-vqs in error path of virtblk_probe() (Ming Lei) [1881760]
+- [block] blk-mq-debugfs: update blk_queue_flag_nameaccordingly for new flags (Ming Lei) [1881760]
+- [block] block: release bip in a right way in error path (Ming Lei) [1881760]
+- [fs] block: make function 'kill_bdev' static (Ming Lei) [1881760]
+- [block] loop: replace kill_bdev with invalidate_bdev (Ming Lei) [1881760]
+- [block] partitions/ldm: Replace uuid_copy() with import_uuid() where it makes sense (Ming Lei) [1881760]
+- [block] block: update hctx map when use multiple maps (Ming Lei) [1881760]
+- [trace] trace/events/block.h: drop kernel-doc for dropped function parameter (Ming Lei) [1881760]
+- [block] blk-mq: Remove redundant 'return' statement (Ming Lei) [1881760]
+- [block] umem: remove redundant initialization of variable ret (Ming Lei) [1881760]
+- [block] pktcdvd: remove redundant initialization of variable ret (Ming Lei) [1881760]
+- [kernel] blktrace: fix endianness for blk_log_remap() (Ming Lei) [1881760]
+- [kernel] blktrace: fix endianness in get_pdu_int() (Ming Lei) [1881760]
+- [kernel] blktrace: use errno instead of bi_status (Ming Lei) [1881760]
+- [block] block: nr_sects_write(): Disable preemption on seqcount write (Ming Lei) [1881760]
+- [nvme] block: remove the error argument to the block_bio_complete tracepoint (Ming Lei) [1881760]
+- [block] loop: Fix wrong masking of status flags (Ming Lei) [1881760]
+- [block] block/bio-integrity: don't free 'buf' if bio_integrity_add_page() failed (Ming Lei) [1881760]
+- [block] block: always define struct blk_integrity in genhd.h (Ming Lei) [1881760]
+- [s390] dasd: refactor dasd_ioctl_information (Ming Lei) [1881760]
+- [block] loop: Add LOOP_CONFIGURE ioctl (Ming Lei) [1881760]
+- [block] loop: Clean up LOOP_SET_STATUS lo_flags handling (Ming Lei) [1881760]
+- [block] loop: Rework lo_ioctl() __user argument casting (Ming Lei) [1881760]
+- [block] loop: Move loop_set_status_from_info() and friends up (Ming Lei) [1881760]
+- [block] loop: Factor out configuring loop from status (Ming Lei) [1881760]
+- [block] loop: Remove figure_loop_size() (Ming Lei) [1881760]
+- [block] loop: Refactor loop_set_status() size calculation (Ming Lei) [1881760]
+- [block] loop: Switch to set_capacity_revalidate_and_notify() (Ming Lei) [1881760]
+- [block] loop: Factor out setting loop device size (Ming Lei) [1881760]
+- [block] loop: Remove sector_t truncation checks (Ming Lei) [1881760]
+- [block] loop: Call loop_config_discard() only after new config is applied (Ming Lei) [1881760]
+- [block] block/swim3: use set_current_state macro (Ming Lei) [1881760]
+- [block] block: mark bio_wouldblock_error() bio with BIO_QUIET (Ming Lei) [1881760]
+- [block] blk-wbt: rename __wbt_update_limits to wbt_update_limits (Ming Lei) [1881760]
+- [block] blk-wbt: remove wbt_update_limits (Ming Lei) [1881760]
+- [block] blk-throttle: remove tg_drain_bios (Ming Lei) [1881760]
+- [block] blk-throttle: remove blk_throtl_drain (Ming Lei) [1881760]
+- [block] null_blk: force complete for timeout request (Ming Lei) [1881760]
+- [block] block: fix a warning when blkdev.h is included for !CONFIG_BLOCK builds (Ming Lei) [1881760]
+- [block] block: reduce part_stat_lock() scope (Ming Lei) [1881760]
+- [block] block: use __this_cpu_add() instead of access by smp_processor_id() (Ming Lei) [1881760]
+- [block] block: remove rcu_read_lock() from part_stat_lock() (Ming Lei) [1881760]
+- [block] block: add a blk_account_io_merge_bio helper (Ming Lei) [1881760]
+- [block] block: account merge of two requests (Ming Lei) [1881760]
+- [block] zram: nvdimm: use bio_{start, end}_io_acct and disk_{start, end}_io_acct (Ming Lei) [1881760]
+- [nvdimm] nvdimm: use bio_{start,end}_io_acct (Ming Lei) [1881760]
+- [md] dm: use bio_{start,end}_io_acct (Ming Lei) [1881760]
+- [block] rsxx: use bio_{start,end}_io_acct (Ming Lei) [1881760]
+- [block] drbd: use bio_{start,end}_io_acct (Ming Lei) [1881760]
+- [block] block: add disk/bio-based accounting helpers (Ming Lei) [1881760]
+- [block] block: remove the disk and queue NULL checks in blkdev_issue_flush (Ming Lei) [1881760]
+- [fs] block: remove the error_sector argument to blkdev_issue_flush (Ming Lei) [1881760]
+- [block] block: Remove unused flush_queue_delayed in struct blk_flush_queue (Ming Lei) [1881760]
+- [block] null_blk: Zero-initialize read buffers in non-memory-backed mode (Ming Lei) [1881760]
+- [include] block: Document the bio_vec properties (Ming Lei) [1881760]
+- [block] bio.h: Declare the arguments of the bio iteration functions const (Ming Lei) [1881760]
+- [block] block: Fix type of first compat_put_{, u}long() argument (Ming Lei) [1881760]
+- [block] block: merge part_{inc, dev}_in_flight into their only callers (Ming Lei) [1881760]
+- [block] block: don't call part_{inc, dec}_in_flight for blk-mq devices (Ming Lei) [1881760]
+- [block] block: move the blk-mq calls out of part_in_flight{, _rw} (Ming Lei) [1881760]
+- [block] block: mark blk_account_io_completion static (Ming Lei) [1881760]
+- [block] blk-mq: allow blk_mq_make_request to consume the q_usage_counter reference (Ming Lei) [1881760]
+- [kernel] blktrace: Report pid with note messages (Ming Lei) [1881760]
+- [block] iocost: don't let vrate run wild while there's no saturation signal (Ming Lei) [1881760]
+- [block] block: move blk_io_schedule() out of header file (Ming Lei) [1881760]
+- [block] block: export bio_release_pages and bio_iov_iter_get_pages (Ming Lei) [1881760]
+- [block] null_blk: Support REQ_OP_ZONE_APPEND (Ming Lei) [1881760]
+- [scsi] scsi: sd_zbc: emulate ZONE_APPEND commands (Ming Lei) [1881760]
+- [scsi] scsi: sd_zbc: factor out sanity checks for zoned commands (Ming Lei) [1881760]
+- [block] block: Modify revalidate zones (Ming Lei) [1881760]
+- [block] block: introduce blk_req_zone_write_trylock (Ming Lei) [1881760]
+- [block] block: Introduce REQ_OP_ZONE_APPEND (Ming Lei) [1881760]
+- [block] block: rename __bio_add_pc_page to bio_add_hw_page (Ming Lei) [1881760]
+- [block] block: provide fallbacks for blk_queue_zone_is_seq and blk_queue_zone_no (Ming Lei) [1881760]
+- [fs] block: add blk_io_schedule() for avoiding task hung in sync dio (Ming Lei) [1881760]
+- [block] block: don't hold part0's refcount in IO path (Ming Lei) [1881760]
+- [block] block: only define 'nr_sects_seq' in hd_part for 32bit SMP (Ming Lei) [1881760]
+- [block] bdi: fix up for "remove the name field in struct backing_dev_info" (Ming Lei) [1881760]
+- [fs] hfs: stop using ioctl_by_bdev (Ming Lei) [1881760]
+- [fs] bdi: remove the name field in struct backing_dev_info (Ming Lei) [1881760]
+- [mtd] bdi: simplify bdi_alloc (Ming Lei) [1881760]
+- [block] bdi: remove bdi_register_owner (Ming Lei) [1881760]
+- [mm] bdi: unexport bdi_register_va (Ming Lei) [1881760]
+- [base] driver core: remove device_create_vargs (Ming Lei) [1881760]
+- [block] block: rename blk_mq_alloc_rq_maps (Ming Lei) [1881760]
+- [block] block: rename __blk_mq_alloc_rq_map (Ming Lei) [1881760]
+- [fs] udf: stop using ioctl_by_bdev (Ming Lei) [1881760]
+- [fs] isofs: stop using ioctl_by_bdev (Ming Lei) [1881760]
+- [fs] hfsplus: stop using ioctl_by_bdev (Ming Lei) [1881760]
+- [cdrom] cdrom: factor out a cdrom_multisession helper (Ming Lei) [1881760]
+- [cdrom] cdrom: factor out a cdrom_read_tocentry helper (Ming Lei) [1881760]
+- [ide] ide-cd: rename cdrom_read_tocentry (Ming Lei) [1881760]
+- [cdrom] block: add a cdrom_device_info pointer to struct gendisk (Ming Lei) [1881760]
+- [block] block: add a bio_queue_enter helper (Ming Lei) [1881760]
+- [block] block: replace BIO_QUEUE_ENTERED with BIO_CGROUP_ACCT (Ming Lei) [1881760]
+- [block] block: improve the submit_bio and generic_make_request documentation (Ming Lei) [1881760]
+- [block] blk-mq: make function '__blk_mq_sched_dispatch_requests' static (Ming Lei) [1881760]
+- [block] block: bypass ->make_request_fn for blk-mq drivers (Ming Lei) [1881760]
+- [md] dm: remove the make_request_fn check in device_area_is_invalid (Ming Lei) [1881760]
+- [block] block: remove create_io_context (Ming Lei) [1881760]
+- [fs] block: unexport bdev_read_page and bdev_write_page (Ming Lei) [1881760]
+- [scsi] scsi: merge scsi_init_sgtable into scsi_init_io (Ming Lei) [1881760]
+- [block] block: provide a blk_rq_map_sg variant that returns the last element (Ming Lei) [1881760]
+- [block] block: remove RQF_COPY_USER (Ming Lei) [1881760]
+- [block] block: fold bdev_unhash_inode into invalidate_partition (Ming Lei) [1881760]
+- [block] block: simplify block device syncing in bdev_del_partition (Ming Lei) [1881760]
+- [block] block: don't call invalidate_partition from blk_drop_partitions (Ming Lei) [1881760]
+- [s390] dasd: use blk_drop_partitions instead of badly reimplementing it (Ming Lei) [1881760]
+- [block] block: remove the disk argument from blk_drop_partitions (Ming Lei) [1881760]
+- [block] block: remove hd_struct_kill (Ming Lei) [1881760]
+- [block] block: cleanup hd_struct freeing (Ming Lei) [1881760]
+- [block] block: pass a hd_struct to delete_partition (Ming Lei) [1881760]
+- [block] block: refactor blkpg_ioctl (Ming Lei) [1881760]
+- [block] null_blk: don't allow discard for zoned mode (Ming Lei) [1881760]
+- [block] null_blk: return error for invalid zone size (Ming Lei) [1881760]
+- [block] iocost: protect iocg->abs_vdebt with iocg->waitq.lock (Ming Lei) [1881760]
+- [block] block: remove the bd_openers checks in blk_drop_partitions (Ming Lei) [1881760]
+- [block] null_blk: Cleanup zoned device initialization (Ming Lei) [1881760]
+- [block] null_blk: Fix zoned command handling (Ming Lei) [1881760]
+- [fs] block: remove unused header (Ming Lei) [1881760]
+- [fs] bdev: Reduce time holding bd_mutex in sync in blkdev_close() (Ming Lei) [1881760]
+- [trace] blk-wbt: Drop needless newlines from tracepoint format strings (Ming Lei) [1881760]
+- [block] blk-wbt: Use tracepoint_string() for wbt_step tracepoint string literals (Ming Lei) [1881760]
+- [s390] s390/dasd: remove IOSCHED_DEADLINE from DASD Kconfig (Ming Lei) [1881760]
+- [block] block: fix busy device checking in blk_drop_partitions again (Ming Lei) [1881760]
+- [block] block: fix busy device checking in blk_drop_partitions (Ming Lei) [1881760]
+- [block] blkcg: don't offline parent blkcg first (Ming Lei) [1881760]
+- [block] blkcg: rename blkcg->cgwb_refcnt to ->online_pin and always use it (Ming Lei) [1881760]
+- [block] null_blk: add trace in null_blk_zoned.c (Ming Lei) [1881760]
+- [block] null_blk: add tracepoint helpers for zoned mode (Ming Lei) [1881760]
+- [block] block: add a zone condition debug helper (Ming Lei) [1881760]
+- [block] rsxx: Replace zero-length array with flexible-array member (Ming Lei) [1881760]
+- [block] null_blk: describe the usage of fault injection param (Ming Lei) [1881760]
+- [block] null_blk: fix spurious IO errors after failed past-wp access (Ming Lei) [1881760]
+- [block] nbd: requeue command if the soecket is changed (Ming Lei) [1881760]
+- [block] nbd: enable replace socket if only one connection is configured (Ming Lei) [1881760]
+- [block] block/drbd: delete invalid function drbd_md_mark_dirty_ (Ming Lei) [1881760]
+- [block] loop: Only freeze block queue when needed (Ming Lei) [1881760]
+- [block] loop: Only change blocksize when needed (Ming Lei) [1881760]
+- [block] block: move bdevname() into block/generic-partition-rh.c (Ming Lei) [1881760]
+- [block] block: return NULL in blk_alloc_queue() on error (Ming Lei) [1881760]
+- [block] block: simplify queue allocation (Ming Lei) [1881760]
+- [block] Revert "blkdev: check for valid request queue before issuing flush" (Ming Lei) [1881760]
+- [block] null_blk: use blk_mq_init_queue_data (Ming Lei) [1881760]
+- [block] block: add a blk_mq_init_queue_data helper (Ming Lei) [1881760]
+- [block] block: move the ->devnode callback to struct block_device_operations (Ming Lei) [1881760]
+- [block] block: move block layer internals out of include/linux/genhd.h (Ming Lei) [1881760]
+- [fs] block: move guard_bio_eod to bio.c (Ming Lei) [1881760]
+- [block] block: unexport disk_map_sector_rcu (Ming Lei) [1881760]
+- [block] block: unexport disk_get_part (Ming Lei) [1881760]
+- [block] block: mark part_in_flight and part_in_flight_rw static (Ming Lei) [1881760]
+- [block] block: mark block_depr static (Ming Lei) [1881760]
+- [block] block: factor out requeue handling from dispatch code (Ming Lei) [1881760]
+- [block] block/diskstats: replace time_in_queue with sum of request times (Ming Lei) [1881760]
+- [block] block/diskstats: accumulate all per-cpu counters in one pass (Ming Lei) [1881760]
+- [block] block: merge partition-generic.c and check.c (Ming Lei) [1881760]
+- [block] block: move the various x86 Unix label formats out of genhd.h (Ming Lei) [1881760]
+- [block] partitions/msdos: remove LINUX_SWAP_PARTITION (Ming Lei) [1881760]
+- [block] block: move the *_PARTITION enum out of genhd.h (Ming Lei) [1881760]
+- [scsi] block: move struct partition out of genhd.h (Ming Lei) [1881760]
+- [block] block: remove block/partitions/sun.h (Ming Lei) [1881760]
+- [block] block: remove block/partitions/sgi.h (Ming Lei) [1881760]
+- [block] block: remove block/partitions/osf.h (Ming Lei) [1881760]
+- [block] block: remove block/partitions/karma.h (Ming Lei) [1881760]
+- [block] block: declare all partition detection routines in check.h (Ming Lei) [1881760]
+- [block] block: remove warn_no_part (Ming Lei) [1881760]
+- [md] block: cleanup how md_autodetect_dev is called (Ming Lei) [1881760]
+- [block] block: unexport read_dev_sector and put_dev_sector (Ming Lei) [1881760]
+- [scsi] scsi: simplify scsi_partsize (Ming Lei) [1881760]
+- [block] block: remove alloc_part_info and free_part_info (Ming Lei) [1881760]
+- [block] block: move sysfs methods shared by disks and partitions to genhd.c (Ming Lei) [1881760]
+- [block] block: move disk_name and related helpers out of partition-generic.c (Ming Lei) [1881760]
+- [fs] block: remove __bdevname (Ming Lei) [1881760]
+- [block] block: remove the blk_lookup_devt export (Ming Lei) [1881760]
+- [block] block, bfq: invoke flush_idle_tree after reparent_active_queues in pd_offline (Ming Lei) [1881760]
+- [block] block, bfq: make reparent_leaf_entity actually work only on leaf entities (Ming Lei) [1881760]
+- [block] block, bfq: turn put_queue into release_process_ref in __bfq_bic_change_cgroup (Ming Lei) [1881760]
+- [block] block, bfq: move forward the getting of an extra ref in bfq_bfqq_move (Ming Lei) [1881760]
+- [scsi] scsi: Convert to use set_capacity_revalidate_and_notify (Ming Lei) [1881760]
+- [nvme] nvme: Convert to use set_capacity_revalidate_and_notify (Ming Lei) [1881760]
+- [block] virtio_blk.c: Convert to use set_capacity_revalidate_and_notify (Ming Lei) [1881760]
+- [block] block/genhd: Notify udev about capacity change (Ming Lei) [1881760]
+- [fs] block: fix a device invalidation regression (Ming Lei) [1881760]
+- [block] blk-iocost: remove duplicated lines in comments (Ming Lei) [1881760]
+- [block] block: sed-opal: Change the check condition for regular session validity (Ming Lei) [1881760]
+- [block] block: Document genhd capability flags (Ming Lei) [1881760]
+- [block] block: cleanup comment for blk_flush_complete_seq (Ming Lei) [1881760]
+- [block] block: remove unneeded argument from blk_alloc_flush_queue (Ming Lei) [1881760]
+- [block] block: cleanup for _blk/blk_rq_prep_clone (Ming Lei) [1881760]
+- [block] block: remove redundant setting of QUEUE_FLAG_DYING (Ming Lei) [1881760]
+- [block] block: use bio_{wouldblock, io}_error in direct_make_request (Ming Lei) [1881760]
+- [block] block: fix comment for blk_cloned_rq_check_limits (Ming Lei) [1881760]
+- [block] null_blk: Add support for init_hctx() fault injection (Ming Lei) [1881760]
+- [block] null_blk: Handle null_add_dev() failures properly (Ming Lei) [1881760]
+- [block] null_blk: Fix the null_add_dev() error path (Ming Lei) [1881760]
+- [block] compat_ioctl: simplify up block/ioctl.c (Ming Lei) [1881760]
+- [block] compat_ioctl: block: simplify compat_blkpg_ioctl() (Ming Lei) [1881760]
+- [block] compat_ioctl: block: move blkdev_compat_ioctl() into ioctl.c (Ming Lei) [1881760]
+- [block] blk-mq: insert flush request to the front of dispatch queue (Ming Lei) [1881760]
+- [block] block: Remove used kblockd_schedule_work_on() (Ming Lei) [1881760]
+- [block] null_blk: remove unused fields in 'nullb_cmd' (Ming Lei) [1881760]
+- [block] drbd: fifo_alloc() should use struct_size (Ming Lei) [1881760]
+- [block] partitions/ldm: fix spelling mistake "to" -> "too" (Ming Lei) [1881760]
+- [block] block: mark zone-mgmt bios with REQ_SYNC (Ming Lei) [1881760]
+- [block] blk-mq: Document functions for sending request (Ming Lei) [1881760]
+- [block] block: Allow t10-pi to be modular (Ming Lei) [1881760]
+- [block] blk-mq: optimise blk_mq_flush_plug_list() (Ming Lei) [1881760]
+- [include] list: introduce list_for_each_continue() (Ming Lei) [1881760]
+- [block] blk-mq: optimise rq sort function (Ming Lei) [1881760]
+- [block] blk-cgroup: cgroup_rstat_updated() shouldn't be called on cgroup1 (Ming Lei) [1881760]
+- [block] blk-cgroup: separate out blkg_rwstat under CONFIG_BLK_CGROUP_RWSTAT (Ming Lei) [1881760]
+- [block] blk-cgroup: reimplement basic IO stats using cgroup rstat (Ming Lei) [1881760]
+- [block] blk-cgroup: remove now unused blkg_print_stat_{bytes|ios}_recursive() (Ming Lei) [1881760]
+- [block] blk-throtl: stop using blkg->stat_bytes and ->stat_ios (Ming Lei) [1881760]
+- [block] bfq-iosched: Ensure bio->bi_blkg is valid before using it (Ming Lei) [1881760]
+- [block] bfq-iosched: stop using blkg->stat_bytes and ->stat_ios (Ming Lei) [1881760]
+- [block] bfq-iosched: relocate bfqg_*rwstat*() helpers (Ming Lei) [1881760]
+- [md] dm: fix comment in __dm_suspend() (Mike Snitzer) [1881531]
+- [md] dm: fold dm_process_bio() into dm_make_request() (Mike Snitzer) [1881531]
+- [md] dm: fix missing imposition of queue_limits from dm_wq_work() thread (Mike Snitzer) [1881531]
+- [md] dm: optimize max_io_len() by inlining max_io_len_target_boundary() (Mike Snitzer) [1881531]
+- [md] dm: push md->immutable_target optimization down to __process_bio() (Mike Snitzer) [1881531]
+- [md] dm: change max_io_len() to use blk_max_size_offset() (Mike Snitzer) [1881531]
+- [md] dm table: stack 'chunk_sectors' limit to account for target-specific splitting (Mike Snitzer) [1881531]
+- [block] block: allow 'chunk_sectors' to be non-power-of-2 (Mike Snitzer) [1881531]
+- [block] block: use lcm_not_zero() when stacking chunk_sectors (Mike Snitzer) [1881531]
+- [md] dm: fix bio splitting and its bio completion order for regular IO (Mike Snitzer) [1881531]
+- [net] net-sysfs: add backlog len and CPU id to softnet data (Paolo Abeni) [1866909]
+- [net] try to avoid unneeded backlog flush (Paolo Abeni) [1866909]
+- [net] skbuff: fix a data race in skb_queue_len() (Paolo Abeni) [1866909]
+- [cpuidle] cpuidle: pseries: Fix CEDE latency conversion from tb to us (Diego Domingos) [1608791]
+- [cpuidle] cpuidle: pseries: Fixup exit latency for CEDE(0) (Diego Domingos) [1608791]
+- [cpuidle] cpuidle: pseries: Add function to parse extended CEDE records (Diego Domingos) [1608791]
+- [cpuidle] cpuidle: pseries: Set the latency-hint before entering CEDE (Diego Domingos) [1608791]
+- [arm64] paravirt: Initialize steal time when cpu is online (Andrew Jones) [1879137]
+
+* Mon Nov 02 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-241.el8]
+- [infiniband] i40iw: Add support to make destroy QP synchronous (Stefan Assmann) [1757949]
+- [fs] xfs: don't eat an EIO/ENOSPC writeback error when scrubbing data fork (Carlos Maiolino) [1859160]
+- [fs] xfs: fix inode allocation block res calculation precedence (Carlos Maiolino) [1859160]
+- [fs] xfs: fix reflink quota reservation accounting error (Carlos Maiolino) [1859160]
+- [fs] xfs: preserve rmapbt swapext block reservation from freed blocks (Carlos Maiolino) [1859160]
+- [fs] xfs: fix duplicate verification from xfs_qm_dqflush() (Carlos Maiolino) [1859160]
+- [fs] xfs: fix unmount hang and memory leak on shutdown during quotaoff (Carlos Maiolino) [1859160]
+- [fs] xfs: factor out quotaoff intent AIL removal and memory free (Carlos Maiolino) [1859160]
+- [fs] xfs: fix incorrect test in xfs_alloc_ag_vextent_lastblock (Carlos Maiolino) [1859160]
+- [fs] xfs: fix regression in "cleanup xfs_dir2_block_getdents" (Carlos Maiolino) [1859160]
+- [fs] xfs: fix use-after-free when aborting corrupt attr inactivation (Carlos Maiolino) [1859160]
+- [fs] xfs: fix iclog release error check race with shutdown (Carlos Maiolino) [1859160]
+- [fs] xfs: Add the missed xfs_perag_put() for xfs_ifree_cluster() (Carlos Maiolino) [1859160]
+- [fs] xfs: clean up the error handling in xfs_swap_extents (Carlos Maiolino) [1859160]
+- [fs] xfs: acquire superblock freeze protection on eofblocks scans (Carlos Maiolino) [1859160]
+- [fs] xfs: xfs_dabuf_map should return ENOMEM when map allocation fails (Carlos Maiolino) [1859160]
+- [fs] xfs: fix xfs_buf_ioerror_alert location reporting (Carlos Maiolino) [1859160]
+- [fs] xfs: remove unnecessary null pointer checks from _read_agf callers (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_*read_agf return EAGAIN to ALLOC_FLAG_TRYLOCK callers (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the xfs_btree_get_buffunctions (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_trans_get_buf return an error code (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_trans_get_buf_map return an error code (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_buf_read return an error code (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_buf_get_uncached return an error code (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_buf_get return an error code (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_buf_read_map return an error code (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_buf_get_map return an error code (Carlos Maiolino) [1859160]
+- [fs] xfs: make xfs_buf_alloc return an error code (Carlos Maiolino) [1859160]
+- [fs] xfs: fix uninitialized variable in xfs_attr3_leaf_inactive (Carlos Maiolino) [1859160]
+- [fs] xfs: change return value of xfs_inode_need_cow to int (Carlos Maiolino) [1859160]
+- [fs] xfs: check log iovec size to make sure it's plausibly a buffer log format (Carlos Maiolino) [1859160]
+- [fs] xfs: make struct xfs_buf_log_format have a consistent size (Carlos Maiolino) [1859160]
+- [fs] xfs: complain if anyone tries to create a too-large buffer log item (Carlos Maiolino) [1859160]
+- [fs] xfs: clean up xfs_buf_item_get_format return value (Carlos Maiolino) [1859160]
+- [fs] xfs: streamline xfs_attr3_leaf_inactive (Carlos Maiolino) [1859160]
+- [fs] xfs: fix memory corruption during remote attr value buffer invalidation (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor remote attr value buffer invalidation (Carlos Maiolino) [1859160]
+- [fs] xfs: fix IOCB_NOWAIT handling in xfs_file_dio_aio_read (Carlos Maiolino) [1859160]
+- [fs] xfs: Add __packed to xfs_dir2_sf_entry_t definition (Carlos Maiolino) [1859160]
+- [fs] xfs: fix s_maxbytes computation on 32-bit kernels (Carlos Maiolino) [1859160]
+- [fs] xfs: truncate should remove all blocks, not just to the end of the page cache (Carlos Maiolino) [1859160]
+- [fs] xfs: introduce XFS_MAX_FILEOFF (Carlos Maiolino) [1859160]
+- [fs] xfs: remove bogus assertion when online repair isn't enabled (Carlos Maiolino) [1859160]
+- [fs] xfs: Remove all strlen in all xfs_attr_* functions for attr names (Carlos Maiolino) [1859160]
+- [fs] xfs: fix misuse of the XFS_ATTR_INCOMPLETE flag (Carlos Maiolino) [1859160]
+- [fs] xfs: also remove cached ACLs when removing the underlying attr (Carlos Maiolino) [1859160]
+- [fs] xfs: reject invalid flags combinations in XFS_IOC_ATTRMULTI_BY_HANDLE (Carlos Maiolino) [1859160]
+- [fs] xfs: remove shadow variable in xfs_btree_lshift (Carlos Maiolino) [1859160]
+- [fs] xfs: quota: move to time64_t interfaces (Carlos Maiolino) [1859160]
+- [fs] xfs: Make the symbol 'xfs_rtalloc_log_count' static (Carlos Maiolino) [1859160]
+- [fs] libxfs: resync with the userspace libxfs (Carlos Maiolino) [1859160]
+- [fs] xfs: fix log reservation overflows when allocating large rt extents (Carlos Maiolino) [1859160]
+- [fs] xfs: fix mount failure crash on invalid iclog memory access (Carlos Maiolino) [1859160]
+- [fs] xfs: don't check for AG deadlock for realtime files in bunmapi (Carlos Maiolino) [1859160]
+- [fs] xfs: fix realtime file data space leak (Carlos Maiolino) [1859160]
+- [fs] xfs: allow parent directory scans to be interrupted with fatal signals (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the mappedbno argument to xfs_da_get_buf (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the mappedbno argument to xfs_da_read_buf (Carlos Maiolino) [1859160]
+- [fs] xfs: split xfs_da3_node_read (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the mappedbno argument to xfs_dir3_leafn_read (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the mappedbno argument to xfs_dir3_leaf_read (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the mappedbno argument to xfs_attr3_leaf_read (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the mappedbno argument to xfs_da_reada_buf (Carlos Maiolino) [1859160]
+- [fs] xfs: improve the xfs_dabuf_map calling conventions (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor xfs_dabuf_map (Carlos Maiolino) [1859160]
+- [fs] xfs: simplify mappedbno handling in xfs_da_{get, read}_buf (Carlos Maiolino) [1859160]
+- [fs] xfs: report corruption only as a regular error (Carlos Maiolino) [1859160]
+- [fs] xfs: Remove kmem_zone_free() wrapper (Carlos Maiolino) [1859160]
+- [fs] xfs: Remove kmem_zone_destroy() wrapper (Carlos Maiolino) [1859160]
+- [fs] xfs: Remove slab init wrappers (Carlos Maiolino) [1859160]
+- [fs] xfs: fix another missing include (Carlos Maiolino) [1859160]
+- [fs] xfs: remove XFS_IOC_FSSETDM and XFS_IOC_FSSETDM_BY_HANDLE (Carlos Maiolino) [1859160]
+- [fs] xfs: remove duplicated include from xfs_dir2_data.c (Carlos Maiolino) [1859160]
+- [fs] xfs: remove unused structure members & simple typedefs (Carlos Maiolino) [1859160]
+- [fs] xfs: remove unused typedef definitions (Carlos Maiolino) [1859160]
+- [fs] xfs: Replace function declaration by actual definition (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the xfs_qoff_logitem_t typedef (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the xfs_dq_logitem_t typedef (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the xfs_quotainfo_t typedef (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the xfs_disk_dquot_t and xfs_dquot_t (Carlos Maiolino) [1859160]
+- [fs] xfs: avoid time_t in user api (Carlos Maiolino) [1859160]
+- [fs] xfs: don't reset the "inode core" in xfs_iread (Carlos Maiolino) [1859160]
+- [fs] xfs: merge the projid fields in struct xfs_icdinode (Carlos Maiolino) [1859160]
+- [fs] xfs: use a struct timespec64 for the in-core crtime (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->m_dirnameops (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the unused m_chsize field (Carlos Maiolino) [1859160]
+- [fs] xfs: convert open coded corruption check to use XFS_IS_CORRUPT (Carlos Maiolino) [1859160]
+- [fs] xfs: kill the XFS_WANT_CORRUPT_* macros (Carlos Maiolino) [1859160]
+- [fs] xfs: add a XFS_IS_CORRUPT macro (Carlos Maiolino) [1859160]
+- [fs] xfs: attach dquots before performing xfs_swap_extents (Carlos Maiolino) [1859160]
+- [fs] xfs: actually check xfs_btree_check_block return in xfs_btree_islastblock (Carlos Maiolino) [1859160]
+- [fs] xfs: always pass a valid hdr to xfs_dir3_leaf_check_int (Carlos Maiolino) [1859160]
+- [fs] xfs: merge xfs_dir2_data_freescan and xfs_dir2_data_freescan_int (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the now unused dir ops infrastructure (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->data_get_ftype and ->data_put_ftype (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->data_bestfree_p (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup xfs_dir2_data_entsize (Carlos Maiolino) [1859160]
+- [fs] xfs: move the dir2 data block fixed offsets to struct xfs_da_geometry (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->data_entry_tag_p (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->data_entsize (Carlos Maiolino) [1859160]
+- [fs] xfs: replace xfs_dir3_data_endp with xfs_dir3_data_end_offset (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the now unused ->data_entry_p method (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup __xfs_dir3_data_check (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup xfs_dir2_data_freescan_int (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup xfs_dir2_block_to_sf (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup xchk_directory_data_bestfree (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup xchk_dir_rec (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup xfs_dir2_leaf_getdents (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup xfs_dir2_block_getdents (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the ->data_unused_p method (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the ->data_dot_entry_p and ->data_dotdot_entry_p methods (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the data_dotdot_offset field in struct xfs_dir_ops (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the data_dot_offset field in struct xfs_dir_ops (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the unused ->data_first_entry_p method (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->sf_get_ftype and ->sf_put_ftype (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->sf_get_ino and ->sf_put_ino (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->sf_entsize and ->sf_nextentry (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->sf_get_parent_ino and ->sf_put_parent_ino (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->db_to_fdb and ->db_to_fdindex (Carlos Maiolino) [1859160]
+- [fs] xfs: move the max dir2 free bests count to struct xfs_da_geometry (Carlos Maiolino) [1859160]
+- [fs] xfs: move the dir2 free header size to struct xfs_da_geometry (Carlos Maiolino) [1859160]
+- [fs] xfs: add a bests pointer to struct xfs_dir3_icfree_hdr (Carlos Maiolino) [1859160]
+- [fs] xfs: make the xfs_dir3_icfree_hdr available to xfs_dir2_node_addname_int (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->free_hdr_to_disk (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->free_hdr_from_disk (Carlos Maiolino) [1859160]
+- [fs] xfs: move the max dir2 leaf entries count to struct xfs_da_geometry (Carlos Maiolino) [1859160]
+- [fs] xfs: move the dir2 leaf header size to struct xfs_da_geometry (Carlos Maiolino) [1859160]
+- [fs] xfs: add an entries pointer to struct xfs_dir3_icleaf_hdr (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->leaf_hdr_to_disk (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->leaf_hdr_from_disk (Carlos Maiolino) [1859160]
+- [fs] xfs: move the node header size to struct xfs_da_geometry (Carlos Maiolino) [1859160]
+- [fs] xfs: add a btree entries pointer to struct xfs_da3_icnode_hdr (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->node_hdr_to_disk (Carlos Maiolino) [1859160]
+- [fs] xfs: devirtualize ->node_hdr_from_disk (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor btree node scrubbing (Carlos Maiolino) [1859160]
+- [fs] xfs: use unsigned int for all size values in struct xfs_da_geometry (Carlos Maiolino) [1859160]
+- [fs] xfs: move incore structures out of xfs_da_format.h (Carlos Maiolino) [1859160]
+- [fs] xfs: remove a stray tab in xfs_remount_rw() (Carlos Maiolino) [1859160]
+- [fs] xfs: convert EIO to EFSCORRUPTED when log contents are invalid (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor "does this fork map blocks" predicate (Carlos Maiolino) [1859160]
+- [fs] xfs: clean up weird while loop in xfs_alloc_ag_vextent_near (Carlos Maiolino) [1859160]
+- [fs] xfs: annotate functions that trip static checker locking checks (Carlos Maiolino) [1859160]
+- [fs] xfs: Correct comment tyops -> typos (Carlos Maiolino) [1859160]
+- [fs] xfs: range check ri_cnt when recovering log items (Carlos Maiolino) [1859160]
+- [fs] xfs: "optimize" buffer item log segment bitmap setting (Carlos Maiolino) [1859160]
+- [fs] xfs: null out bma->prev if no previous extent (Carlos Maiolino) [1859160]
+- [fs] xfs: fix missing header includes (Carlos Maiolino) [1859160]
+- [fs] xfs: periodically yield scrub threads to the scheduler (Carlos Maiolino) [1859160]
+- [fs] xfs: remove redundant assignment to variable error (Carlos Maiolino) [1859160]
+- [fs] xfs: add missing early termination checks to record scrubbing functions (Carlos Maiolino) [1859160]
+- [fs] xfs: make the assertion message functions take a mount parameter (Carlos Maiolino) [1859160]
+- [fs] xfs: add missing assert in xfs_fsmap_owner_from_rmap (Carlos Maiolino) [1859160]
+- [fs] xfs: decrease indenting problems in xfs_dabuf_map (Carlos Maiolino) [1859160]
+- [fs] xfs: fold xfs_mount-alloc() into xfs_init_fs_context() (Carlos Maiolino) [1859160]
+- [fs] xfs: move xfs_fc_parse_param() above xfs_fc_get_tree() (Carlos Maiolino) [1859160]
+- [fs] xfs: move xfs_fc_get_tree() above xfs_fc_reconfigure() (Carlos Maiolino) [1859160]
+- [fs] xfs: move xfs_fc_reconfigure() above xfs_fc_free() (Carlos Maiolino) [1859160]
+- [fs] xfs: switch to use the new mount-api (Carlos Maiolino) [1859160]
+- [fs] xfs: dont set sb in xfs_mount_alloc() (Carlos Maiolino) [1859160]
+- [fs] xfs: move xfs_parseargs() validation to a helper (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor xfs_parseags() (Carlos Maiolino) [1859160]
+- [fs] xfs: avoid redundant checks when options is empty (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor suffix_kstrtoint() (Carlos Maiolino) [1859160]
+- [fs] xfs: add xfs_remount_ro() helper (Carlos Maiolino) [1859160]
+- [fs] xfs: add xfs_remount_rw() helper (Carlos Maiolino) [1859160]
+- [fs] xfs: merge freeing of mp names and mp (Carlos Maiolino) [1859160]
+- [fs] xfs: use kmem functions for struct xfs_mount (Carlos Maiolino) [1859160]
+- [fs] xfs: dont use XFS_IS_QUOTA_RUNNING() for option check (Carlos Maiolino) [1859160]
+- [fs] xfs: use super s_id instead of struct xfs_mount m_fsname (Carlos Maiolino) [1859160]
+- [fs] xfs: remove unused struct xfs_mount field m_fsname_len (Carlos Maiolino) [1859160]
+- [fs] xfs: always log corruption errors (Carlos Maiolino) [1859160]
+- [fs] xfs: constify the buffer pointer arguments to error functions (Carlos Maiolino) [1859160]
+- [fs] xfs: relax shortform directory size checks (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup use of the XFS_ALLOC_ flags (Carlos Maiolino) [1859160]
+- [fs] xfs: move extent zeroing to xfs_bmapi_allocate (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor xfs_bmapi_allocate (Carlos Maiolino) [1859160]
+- [fs] xfs: simplify the xfs_iomap_write_direct calling (Carlos Maiolino) [1859160]
+- [fs] xfs: don't log the inode in xfs_fs_map_blocks if it (Carlos Maiolino) [1859160]
+- [fs] xfs: slightly tweak an assert in xfs_fs_map_blocks (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the extsize argument to xfs_eof_alignment (Carlos Maiolino) [1859160]
+- [fs] xfs: mark xfs_eof_alignment static (Carlos Maiolino) [1859160]
+- [fs] xfs: simplify xfs_iomap_eof_align_last_fsb (Carlos Maiolino) [1859160]
+- [fs] xfs: merge xfs_showargs into xfs_fs_show_options (Carlos Maiolino) [1859160]
+- [fs] xfs: clean up printing inode32/64 in xfs_showargs (Carlos Maiolino) [1859160]
+- [fs] xfs: clean up printing the allocsize option in (Carlos Maiolino) [1859160]
+- [fs] xfs: reverse the polarity of XFS_MOUNT_COMPAT_IOSIZE (Carlos Maiolino) [1859160]
+- [fs] xfs: rename the XFS_MOUNT_DFLT_IOSIZE option to (Carlos Maiolino) [1859160]
+- [fs] xfs: simplify parsing of allocsize mount option (Carlos Maiolino) [1859160]
+- [fs] xfs: rename the m_writeio_* fields in struct xfs_mount (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the m_readio_* fields in struct xfs_mount (Carlos Maiolino) [1859160]
+- [fs] xfs: don't use a different allocsice for -o wsync (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup calculating the stat optimal I/O size (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the dsunit and dswidth variables in (Carlos Maiolino) [1859160]
+- [fs] xfs: simplify setting bio flags (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor xfs_iread_extents to use xfs_btree_visit_blocks (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor xfs_bmap_count_blocks using newer btree helpers (Carlos Maiolino) [1859160]
+- [fs] xfs: replace -EIO with -EFSCORRUPTED for corrupt metadata (Carlos Maiolino) [1859160]
+- [fs] xfs: namecheck directory entry names before listing them (Carlos Maiolino) [1859160]
+- [fs] xfs: namecheck attribute names before listing them (Carlos Maiolino) [1859160]
+- [fs] xfs: check attribute leaf block structure (Carlos Maiolino) [1859160]
+- [fs] xfs: consolidate preallocation in xfs_file_fallocate (Carlos Maiolino) [1859160]
+- [fs] xfs: disable xfs_ioc_space for always COW inodes (Carlos Maiolino) [1859160]
+- [fs] fs: add generic UNRESVSP and ZERO_RANGE ioctl handlers (Carlos Maiolino) [1859160]
+- [fs] xfs: don't implement XFS_IOC_RESVSP / XFS_IOC_RESVSP64 (Carlos Maiolino) [1859160]
+- [fs] xfs: use xfs_inode_buftarg in xfs_file_ioctl (Carlos Maiolino) [1859160]
+- [fs] xfs: use xfs_inode_buftarg in xfs_file_dio_aio_write (Carlos Maiolino) [1859160]
+- [fs] xfs: add a xfs_inode_buftarg helper (Carlos Maiolino) [1859160]
+- [fs] xfs: mark xfs_buf_free static (Carlos Maiolino) [1859160]
+- [fs] xfs: add mising include of xfs_pnfs.h for missing declarations (Carlos Maiolino) [1859160]
+- [fs] xfs: don't set bmapi total block req where minleft is (Carlos Maiolino) [1859160]
+- [fs] xfs: cap longest free extent to maximum allocatable (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the duplicated inode log fieldmask set (Carlos Maiolino) [1859160]
+- [fs] xfs: improve the IOMAP_NOWAIT check for COW inodes (Carlos Maiolino) [1859160]
+- [fs] xfs: cleanup xfs_direct_write_iomap_begin (Carlos Maiolino) [1859160]
+- [fs] xfs: rename the whichfork variable in xfs_buffered_write_iomap_begin (Carlos Maiolino) [1859160]
+- [fs] xfs: split the iomap ops for buffered vs direct writes (Carlos Maiolino) [1859160]
+- [fs] xfs: move xfs_file_iomap_begin_delay around (Carlos Maiolino) [1859160]
+- [fs] xfs: split out a new set of read-only iomap ops (Carlos Maiolino) [1859160]
+- [fs] xfs: factor out a helper to calculate the end_fsb (Carlos Maiolino) [1859160]
+- [fs] xfs: fill out the srcmap in iomap_begin (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor xfs_file_iomap_begin_delay (Carlos Maiolino) [1859160]
+- [fs] xfs: pass two imaps to xfs_reflink_allocate_cow (Carlos Maiolino) [1859160]
+- [fs] xfs: remove xfs_reflink_dirty_extents (Carlos Maiolino) [1859160]
+- [fs] xfs: also call xfs_file_iomap_end_delalloc for zeroing operations (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the XLOG_STATE_DO_CALLBACK state (Carlos Maiolino) [1859160]
+- [fs] xfs: turn ic_state into an enum (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the unused XLOG_STATE_ALL and XLOG_STATE_UNUSED flags (Carlos Maiolino) [1859160]
+- [fs] xfs: remove dead ifdef XFSERRORDEBUG code (Carlos Maiolino) [1859160]
+- [fs] xfs: call xlog_state_release_iclog with l_icloglock held (Carlos Maiolino) [1859160]
+- [fs] xfs: move the locking from xlog_state_finish_copy to the callers (Carlos Maiolino) [1859160]
+- [fs] xfs: remove the unused ic_io_size field from xlog_in_core (Carlos Maiolino) [1859160]
+- [fs] xfs: pass the correct flag to xlog_write_iclog (Carlos Maiolino) [1859160]
+- [fs] xfs: optimize near mode bnobt scans with concurrent cntbt lookups (Carlos Maiolino) [1859160]
+- [fs] xfs: factor out tree fixup logic into helper (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor near mode alloc bnobt scan into separate function (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor and reuse best extent scanning logic (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor allocation tree fixup code (Carlos Maiolino) [1859160]
+- [fs] xfs: reuse best extent tracking logic for bnobt scan (Carlos Maiolino) [1859160]
+- [fs] xfs: refactor cntbt lastblock scan best extent logic into helper (Carlos Maiolino) [1859160]
+- [fs] xfs: track best extent from cntbt lastblock scan in alloc cursor (Carlos Maiolino) [1859160]
+- [fs] xfs: track allocation busy state in allocation cursor (Carlos Maiolino) [1859160]
+- [fs] xfs: introduce allocation cursor data structure (Carlos Maiolino) [1859160]
+- [fs] xfs: track active state of allocation btree cursors (Carlos Maiolino) [1859160]
+- [fs] xfs: ignore extent size hints for always COW inodes (Carlos Maiolino) [1859160]
+- [fs] xfs: include QUOTA, FATAL ASSERT build options in XFS_BUILD_OPTIONS (Carlos Maiolino) [1859160]
+- [pinctrl] pinctrl: tigerlake: Add support for Tiger Lake-H (Steve Best) [1782722]
+- [pinctrl] pinctrl: intel: Introduce common flags for GPIO mapping scheme (Steve Best) [1782722]
+- [mfd] mfd: intel-lpss: Add Intel Tiger Lake PCH-H PCI IDs (Steve Best) [1782724]
+
+* Fri Oct 30 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.10.el8]
+- [netdrv] iavf: Fix incorrect adapter get in iavf_resume (Stefan Assmann) [1842896]
+- [netdrv] iavf: use generic power management (Stefan Assmann) [1842896]
+- [net] openvswitch: fixes crash if nf_conncount_init() fails (Eelco Chaudron) [1876445]
+- [fs] cifs`: handle ERRBaduid for SMB1 (Leif Sahlberg) [1875184]
+- [net] SUNRPC: 'Directory with parent 'rpc_clnt' already present!' (Scott Mayhew) [1872310]
+- [fs] NFS/pnfs: Don't use RPC_TASK_CRED_NOREF with pnfs (Scott Mayhew) [1872310]
+- [fs] NFS: Don't use RPC_TASK_CRED_NOREF with delegreturn (Scott Mayhew) [1872310]
+- [net] SUNRPC: Signalled ASYNC tasks need to exit (Scott Mayhew) [1872310]
+- [net] SUNRPC: fix use-after-free in rpc_free_client_work() (Scott Mayhew) [1872310]
+- [fs] NFS: Fix a race in __nfs_list_for_each_server() (Scott Mayhew) [1872310]
+- [net] SUNRPC: defer slow parts of rpc_free_client() to a workqueue (Scott Mayhew) [1872310]
+- [net] SUNRPC: Revert 241b1f419f0e ("SUNRPC: Remove xdr_buf_trim()") (Scott Mayhew) [1872310]
+- [fs] NFSv4: Remove unreachable error condition due to rpc_run_task() (Scott Mayhew) [1872310]
+- [net] SUNRPC: Remove unreachable error condition (Scott Mayhew) [1872310]
+- [fs] nfs: Fix potential posix_acl refcnt leak in nfs3_set_acl (Scott Mayhew) [1872310]
+- [fs] NFS/pnfs: Fix a credential use-after-free issue in pnfs_roc() (Scott Mayhew) [1872310]
+- [fs] NFS/pnfs: Ensure that _pnfs_return_layout() waits for layoutreturn completion (Scott Mayhew) [1872310]
+- [net] svcrdma: Fix leak of svc_rdma_recv_ctxt objects (Scott Mayhew) [1872310]
+- [fs] NFS: Fix an ABBA spinlock issue in pnfs_update_layout() (Scott Mayhew) [1872310]
+- [net] SUNRPC/cache: Fix unsafe traverse caused double-free in cache_purge (Scott Mayhew) [1872310]
+- [fs] nfsd: memory corruption in nfsd4_lock() (Scott Mayhew) [1872310]
+- [fs] pNFS: Fix RCU lock leakage (Scott Mayhew) [1872310]
+- [fs] NFS: Clean up process of marking inode stale (Scott Mayhew) [1872310]
+- [fs] NFS: Add softreval behaviour to nfs_lookup_revalidate() (Scott Mayhew) [1872310]
+- [fs] NFS: Add mount option 'softreval' (Scott Mayhew) [1872310]
+- [net] SUNRPC: Don't start a timer on an already queued rpc task (Scott Mayhew) [1872310]
+- [fs] NFS/pnfs: Reference the layout cred in pnfs_prepare_layoutreturn() (Scott Mayhew) [1872310]
+- [fs] NFS/pnfs: Fix dereference of layout cred in pnfs_layoutcommit_inode() (Scott Mayhew) [1872310]
+- [fs] NFS: Beware when dereferencing the delegation cred (Scott Mayhew) [1872310]
+- [fs] NFS: Add a module parameter to set nfs_mountpoint_expiry_timeout (Scott Mayhew) [1872310]
+- [fs] NFS: Try to join page groups before an O_DIRECT retransmission (Scott Mayhew) [1872310]
+- [fs] NFS: Refactor nfs_lock_and_join_requests() (Scott Mayhew) [1872310]
+- [fs] NFS: Reverse the submission order of requests in __nfs_pageio_add_request() (Scott Mayhew) [1872310]
+- [fs] NFS: Clean up nfs_lock_and_join_requests() (Scott Mayhew) [1872310]
+- [fs] NFS: Remove the redundant function nfs_pgio_has_mirroring() (Scott Mayhew) [1872310]
+- [fs] NFS: Fix memory leaks in nfs_pageio_stop_mirroring() (Scott Mayhew) [1872310]
+- [fs] NFS: Fix a request reference leak in nfs_direct_write_clear_reqs() (Scott Mayhew) [1872310]
+- [fs] NFS: Fix races nfs_page_group_destroy() vs nfs_destroy_unlinked_subrequests() (Scott Mayhew) [1872310]
+- [fs] NFS: Remove unused FLUSH_SYNC support in nfs_initiate_pgio() (Scott Mayhew) [1872310]
+- [fs] pNFS/flexfiles: Specify the layout segment range in LAYOUTGET (Scott Mayhew) [1872310]
+- [fs] pNFS/flexfiles: remove requirement for whole file layouts (Scott Mayhew) [1872310]
+- [fs] pNFS/flexfiles: Check the layout segment range before doing I/O (Scott Mayhew) [1872310]
+- [fs] pNFS/flexfile: Don't merge layout segments if the mirrors don't match (Scott Mayhew) [1872310]
+- [fs] NFS/pNFS: Fix pnfs_layout_mark_request_commit() invalid layout segment handling (Scott Mayhew) [1872310]
+- [fs] NFS/pNFS: Simplify bucket layout segment reference counting (Scott Mayhew) [1872310]
+- [fs] NFS/pNFS: Clean up pNFS commit operations (Scott Mayhew) [1872310]
+- [fs] NFS: Remove bucket array from struct pnfs_ds_commit_info (Scott Mayhew) [1872310]
+- [fs] NFS/pNFS: Add a helper pnfs_generic_search_commit_reqs() (Scott Mayhew) [1872310]
+- [fs] pNFS: Enable per-layout segment commit structures (Scott Mayhew) [1872310]
+- [fs] pNFS: Add infrastructure for cleaning up per-layout commit structures (Scott Mayhew) [1872310]
+- [fs] NFS/pNFS: Support commit arrays in nfs_clear_pnfs_ds_commit_verifiers() (Scott Mayhew) [1872310]
+- [fs] NFS: Fix O_DIRECT commit verifier handling (Scott Mayhew) [1872310]
+- [fs] NFS: commit errors should be fatal (Scott Mayhew) [1872310]
+- [fs] NFS/pNFS: Allow O_DIRECT to release the DS commitinfo (Scott Mayhew) [1872310]
+- [fs] pNFS: Support per-layout segment commits in pnfs_generic_commit_pagelist() (Scott Mayhew) [1872310]
+- [fs] pNFS: Support per-layout segment commits in pnfs_generic_recover_commit_reqs() (Scott Mayhew) [1872310]
+- [fs] NFSv4/pNFS: Scan the full list of commit arrays when committing (Scott Mayhew) [1872310]
+- [fs] NFSv4/pnfs: Support a list of commit arrays in struct pnfs_ds_commit_info (Scott Mayhew) [1872310]
+- [net] SUNRPC: Fix a potential buffer overflow in 'svc_print_xprts()' (Scott Mayhew) [1872310]
+- [include] SUNRPC/cache: don't allow invalid entries to be flushed (Scott Mayhew) [1872310]
+- [fs] pNFS: Add a helper to allocate the array of buckets (Scott Mayhew) [1872310]
+- [fs] NFS/pNFS: Refactor pnfs_generic_commit_pagelist() (Scott Mayhew) [1872310]
+- [fs] pNFS/flexfiles: Simplify allocation of the mirror array (Scott Mayhew) [1872310]
+- [fs] NFS: Don't specify NFS version in "UDP not supported" error (Scott Mayhew) [1872310]
+- [fs] nfsroot: set tcp as the default transport protocol (Scott Mayhew) [1872310]
+- [fs] NFS: direct.c: Fix memory leak of dreq when nfs_get_lock_context fails (Scott Mayhew) [1872310]
+- [fs] nfs: Fix up documentation in nfs_follow_referral() and nfs_do_submount() (Scott Mayhew) [1872310]
+- [net] sunrpc: Add tracing for cache events (Scott Mayhew) [1872310]
+- [net] SUNRPC/cache: Allow garbage collection of invalid cache entries (Scott Mayhew) [1872310]
+- [net] sunrpc: clean up cache entry add/remove from hashtable (Scott Mayhew) [1872310]
+- [net] sunrpc: Fix potential leaks in sunrpc_cache_unhash() (Scott Mayhew) [1872310]
+- [fs] nfsd: export upcalls must not return ESTALE when mountd is down (Scott Mayhew) [1872310]
+- [fs] nfsd: Don't add locks to closed or closing open stateids (Scott Mayhew) [1872310]
+- [net] SUNRPC: Teach server to use xprt_sock_sendmsg for socket sends (Scott Mayhew) [1872310]
+- [net] SUNRPC: Refactor xs_sendpages() (Scott Mayhew) [1872310]
+- [fs] NFSD: Clean up nfsd4_encode_readv (Scott Mayhew) [1872310]
+- [fs] fs: nfsd: nfs4state.c: Use built-in RCU list checking (Scott Mayhew) [1872310]
+- [net] sunrpc: Pass lockdep expression to RCU lists (Scott Mayhew) [1872310]
+- [include] sunrpc: Replace zero-length array with flexible-array member (Scott Mayhew) [1872310]
+- [net] SUNRPC: Trim stack utilization in the wrap and unwrap paths (Scott Mayhew) [1872310]
+- [net] SUNRPC: Remove xdr_buf_read_mic() (Scott Mayhew) [1872310]
+- [net] sunrpc: Fix gss_unwrap_resp_integ() again (Scott Mayhew) [1872310]
+- [fs] nfs: Replace zero-length array with flexible-array member (Scott Mayhew) [1872310]
+- [fs] NFSv4.2: error out when relink swapfile (Scott Mayhew) [1872310]
+- [fs] NFS:remove redundant call to nfs_do_access (Scott Mayhew) [1872310]
+- [net] SUNRPC: remove redundant assignments to variable status (Scott Mayhew) [1872310]
+- [fs] NFSv4: Add support for CB_RECALL_ANY for flexfiles layouts (Scott Mayhew) [1872310]
+- [fs] NFSv4: Clean up nfs_delegation_reap_expired() (Scott Mayhew) [1872310]
+- [fs] NFSv4: Clean up nfs_delegation_reap_unclaimed() (Scott Mayhew) [1872310]
+- [fs] NFSv4: Clean up nfs_client_return_marked_delegations() (Scott Mayhew) [1872310]
+- [fs] NFS: Add a helper nfs_client_for_each_server() (Scott Mayhew) [1872310]
+- [fs] NFSv4/pnfs: Clean up nfs_layout_find_inode() (Scott Mayhew) [1872310]
+- [fs] NFSv4: Ensure layout headers are RCU safe (Scott Mayhew) [1872310]
+- [fs] NFSv4/pnfs: Return valid stateids in nfs_layout_find_inode_by_stateid() (Scott Mayhew) [1872310]
+- [fs] pNFS/flexfiles: Report DELAY and GRACE errors from the DS to the server (Scott Mayhew) [1872310]
+- [fs] NFS: Limit the size of the access cache by default (Scott Mayhew) [1872310]
+- [fs] NFS: Avoid referencing the cred twice in async rename/unlink (Scott Mayhew) [1872310]
+- [fs] NFSv4: Avoid unnecessary credential references in layoutget (Scott Mayhew) [1872310]
+- [fs] NFSv4: Avoid referencing the cred unnecessarily during NFSv4 I/O (Scott Mayhew) [1872310]
+- [fs] NFS: Assume cred is pinned by open context in I/O requests (Scott Mayhew) [1872310]
+- [net] SUNRPC: Don't take a reference to the cred on synchronous tasks (Scott Mayhew) [1872310]
+- [net] SUNRPC: Add a flag to avoid reference counts on credentials (Scott Mayhew) [1872310]
+- [fs] NFS: Ensure we time out if a delegreturn does not complete (Scott Mayhew) [1872310]
+- [fs] NFSv4/pnfs: pnfs_set_layout_stateid() should update the layout cred (Scott Mayhew) [1872310]
+- [fs] NFSv4: nfs_update_inplace_delegation() should update delegation cred (Scott Mayhew) [1872310]
+- [fs] NFS: Use the 64-bit server readdir cookies when possible (Scott Mayhew) [1872310]
+- [net] Documentation: nfsroot.rst: Fix references to nfsroot.rst (Scott Mayhew) [1872310]
+- [fs] nfs: add missing "posix" local_lock constant table definition (Scott Mayhew) [1622041]
+- [samples] samples/vfs: avoid warning in statx override (Scott Mayhew) [1622041]
+- [fs] Fix use after free in get_tree_bdev() (Scott Mayhew) [1622041]
+- [security] selinux: fix regression introduced by move_mount(2) syscall (Scott Mayhew) [1622041]
+- [fs] mm/hugetlbfs: fix for_each_hstate() loop in init_hugetlbfs_fs() (Scott Mayhew) [1622041]
+- [fs] mm/hugetlbfs: fix error handling when setting up mounts (Scott Mayhew) [1622041]
+- [fs] cramfs: fix usage on non-MTD device (Scott Mayhew) [1622041]
+- [fs] vfs: move_mount: reject moving kernel internal mounts (Scott Mayhew) [1622041]
+- [fs] do_move_mount(): fix an unsafe use of is_anon_ns() (Scott Mayhew) [1622041]
+- [fs] fs/namespace: fix unprivileged mount propagation (Scott Mayhew) [1622041]
+- [fs] vfs: fsmount: add missing mntget() (Scott Mayhew) [1622041]
+- [fs] get rid of checking for absent device name in vfs_get_tree() (Scott Mayhew) [1622041]
+- [scripts] scripts/gdb: replace flags (MS_xyz -> SB_xyz) (Scott Mayhew) [1622041]
+- [mm] tmpfs: switch to use of invalfc() (Scott Mayhew) [1622041]
+- [kernel] cgroup1: switch to use of errorfc() et.al (Scott Mayhew) [1622041]
+- [fs] procfs: switch to use of invalfc() (Scott Mayhew) [1622041]
+- [fs] hugetlbfs: switch to use of invalfc() (Scott Mayhew) [1622041]
+- [fs] cramfs: switch to use of errofc() et.al (Scott Mayhew) [1622041]
+- [fs] gfs2: switch to use of errorfc() et.al (Scott Mayhew) [1622041]
+- [include] prefix-handling analogues of errorf() and friends (Scott Mayhew) [1622041]
+- [fs] turn fs_param_is_... into functions (Scott Mayhew) [1622041]
+- [fs] fs_parse: handle optional arguments sanely (Scott Mayhew) [1622041]
+- [fs] fs_parse: fold fs_parameter_desc/fs_parameter_spec (Scott Mayhew) [1622041]
+- [x86] x86/resctrl: Fix typos in the mba_sc mount option (Scott Mayhew) [1622041]
+- [fs] fs_parser: remove fs_parameter_description name field (Scott Mayhew) [1622041]
+- [documentation] vfs: Update mount API docs (Scott Mayhew) [1622041]
+- [fs] add prefix to fs_context->log (Scott Mayhew) [1622041]
+- [include] new primitive: __fs_parse() (Scott Mayhew) [1622041]
+- [include] struct p_log, variants of warnf() et.al. taking that one instead (Scott Mayhew) [1622041]
+- [fs] teach logfc() to handle prefices, give it saner calling conventions (Scott Mayhew) [1622041]
+- [kernel] get rid of cg_invalf() (Scott Mayhew) [1622041]
+- [fs] get rid of fs_value_is_filename_empty (Scott Mayhew) [1622041]
+- [fs] don't bother with explicit length argument for __lookup_constant() (Scott Mayhew) [1622041]
+- [fs] fold struct fs_parameter_enum into struct constant_table (Scott Mayhew) [1622041]
+- [fs] fs_parse: get rid of ->enums (Scott Mayhew) [1622041]
+- [fs] fs: fs_parser: fix printk format warning (Scott Mayhew) [1622041]
+- [fs] Pass consistent param->type to fs_parse() (Scott Mayhew) [1622041]
+- [fs] vfs: add missing blkdev_put() in get_tree_bdev() (Scott Mayhew) [1622041]
+- [mm] shmem: fix LSM options parsing (Scott Mayhew) [1622041]
+- [fs] gfs2: make gfs2_fs_parameters static (Scott Mayhew) [1622041]
+- [fs] gfs2: Fix initialisation of args for remount (Scott Mayhew) [1622041]
+- [fs] gfs2: Fix memory leak when gfs2meta's fs_context is freed (Scott Mayhew) [1622041]
+- [fs] gfs2: Convert gfs2 to fs_context (Scott Mayhew) [1622041]
+- [fs] NFS: Fix fscache super_cookie allocation (Scott Mayhew) [1622041]
+- [fs] NFS: Fix a few constant_table array definitions (Scott Mayhew) [1622041]
+- [fs] NFS: Fix leak of ctx->nfs_server.hostname (Scott Mayhew) [1622041]
+- [fs] NFS: Don't hard-code the fs_type when submounting (Scott Mayhew) [1622041]
+- [fs] NFS: Ensure the fs_context has the correct fs_type before mounting (Scott Mayhew) [1622041]
+- [fs] nfs: Return EINVAL rather than ERANGE for mount parse errors (Scott Mayhew) [1622041]
+- [fs] NFS: Attach supplementary error information to fs_context (Scott Mayhew) [1622041]
+- [fs] NFS: Additional refactoring for fs_context conversion (Scott Mayhew) [1622041]
+- [fs] NFS: Add fs_context support (Scott Mayhew) [1622041]
+- [fs] NFS: Convert mount option parsing to use functionality from fs_parser.h (Scott Mayhew) [1622041]
+- [fs] NFS: rename nfs_fs_context pointer arg in a few functions (Scott Mayhew) [1622041]
+- [fs] NFS: Do some tidying of the parsing code (Scott Mayhew) [1622041]
+- [fs] NFS: Add a small buffer in nfs_fs_context to avoid string dup (Scott Mayhew) [1622041]
+- [fs] NFS: Deindent nfs_fs_context_parse_option() (Scott Mayhew) [1622041]
+- [fs] NFS: Split nfs_parse_mount_options() (Scott Mayhew) [1622041]
+- [fs] NFS: Rename struct nfs_parsed_mount_data to struct nfs_fs_context (Scott Mayhew) [1622041]
+- [fs] NFS: Constify mount argument match tables (Scott Mayhew) [1622041]
+- [fs] NFS: Move mount parameterisation bits into their own file (Scott Mayhew) [1622041]
+- [fs] nfs: get rid of ->set_security() (Scott Mayhew) [1622041]
+- [fs] nfs_clone_sb_security(): simplify the check for server bogosity (Scott Mayhew) [1622041]
+- [fs] nfs: get rid of mount_info ->fill_super() (Scott Mayhew) [1622041]
+- [fs] nfs: don't pass nfs_subversion to ->create_server() (Scott Mayhew) [1622041]
+- [fs] nfs: unexport nfs_fs_mount_common() (Scott Mayhew) [1622041]
+- [fs] nfs: merge xdev and remote file_system_type (Scott Mayhew) [1622041]
+- [fs] nfs: don't bother passing nfs_subversion to ->try_mount() and nfs_fs_mount_common() (Scott Mayhew) [1622041]
+- [fs] nfs: stash nfs_subversion reference into nfs_mount_info (Scott Mayhew) [1622041]
+- [fs] nfs: lift setting mount_info from nfs_xdev_mount() (Scott Mayhew) [1622041]
+- [fs] nfs4: fold nfs_do_root_mount/nfs_follow_remote_path (Scott Mayhew) [1622041]
+- [fs] nfs: don't bother setting/restoring export_path around do_nfs_root_mount() (Scott Mayhew) [1622041]
+- [fs] nfs: fold nfs4_remote_fs_type and nfs4_remote_referral_fs_type (Scott Mayhew) [1622041]
+- [fs] nfs: lift setting mount_info from nfs4_remote{, _referral}_mount (Scott Mayhew) [1622041]
+- [fs] nfs: stash server into struct nfs_mount_info (Scott Mayhew) [1622041]
+- [fs] saner calling conventions for nfs_fs_mount_common() (Scott Mayhew) [1622041]
+- [fs] NFS: Make "port=" mount option optional for RDMA mounts (Scott Mayhew) [1622041]
+- [fs] vfs: Make fs_parse() handle fs_param_is_fd-type params better (Scott Mayhew) [1622041]
+- [include] vfs: Convert ramfs, shmem, tmpfs, devtmpfs, rootfs to use the new mount API (Scott Mayhew) [1622041]
+- [mm] shmem_parse_one(): switch to use of fs_parse() (Scott Mayhew) [1622041]
+- [mm] shmem_parse_options(): take handling a single option into a helper (Scott Mayhew) [1622041]
+- [mm] shmem_parse_options(): don't bother with mpol in separate variable (Scott Mayhew) [1622041]
+- [mm] shmem_parse_options(): use a separate structure to keep the results (Scott Mayhew) [1622041]
+- [base] make shmem_fill_super() static (Scott Mayhew) [1622041]
+- [fs] make ramfs_fill_super() static (Scott Mayhew) [1622041]
+- [base] devtmpfs: don't mix {ramfs, shmem}_fill_super() with mount_single() (Scott Mayhew) [1622041]
+- [fs] vfs: Convert squashfs to use the new mount API (Scott Mayhew) [1622041]
+- [mtd] mtd: Kill mount_mtd() (Scott Mayhew) [1622041]
+- [fs] vfs: Convert cramfs to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Add a single-or-reconfig keying to vfs_get_super() (Scott Mayhew) [1622041]
+- [mtd] mtd: Provide fs_context-aware mount_mtd() replacement (Scott Mayhew) [1622041]
+- [fs] vfs: Create fs_context-aware mount_bdev() replacement (Scott Mayhew) [1622041]
+- [fs] new helper: get_tree_keyed() (Scott Mayhew) [1622041]
+- [fs] vfs: set fs_context::user_ns for reconfigure (Scott Mayhew) [1622041]
+- [init] mnt_init(): call shmem_init() unconditionally (Scott Mayhew) [1622041]
+- [base] constify ksys_mount() string arguments (Scott Mayhew) [1622041]
+- [fs] don't bother with registering rootfs (Scott Mayhew) [1622041]
+- [fs] init_rootfs(): don't bother with init_ramfs_fs() (Scott Mayhew) [1622041]
+- [security] vfs: Convert selinuxfs to use the new mount API (Scott Mayhew) [1622041]
+- [security] vfs: Convert securityfs to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert openpromfs to use the new mount API (Scott Mayhew) [1622041]
+- [xen] vfs: Convert xenfs to use the new mount API (Scott Mayhew) [1622041]
+- [oprofile] vfs: Convert oprofilefs to use the new mount API (Scott Mayhew) [1622041]
+- [misc] vfs: Convert ibmasmfs to use the new mount API (Scott Mayhew) [1622041]
+- [infiniband] vfs: Convert qib_fs/ipathfs to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert efivarfs to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert configfs to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert binfmt_misc to use the new mount API (Scott Mayhew) [1622041]
+- [fs] convenience helper: get_tree_single() (Scott Mayhew) [1622041]
+- [fs] convenience helper get_tree_nodev() (Scott Mayhew) [1622041]
+- [fs] vfs: Kill sget_userns() (Scott Mayhew) [1622041]
+- [fs] vfs: Use sget_fc() for pseudo-filesystems (Scott Mayhew) [1622041]
+- [dma-buf] fold mount_pseudo_xattr() into pseudo_fs_get_tree() (Scott Mayhew) [1622041]
+- [virtio] vfs: Convert virtio_balloon to use the new mount API (Scott Mayhew) [1622041]
+- [scsi] vfs: Convert ocxlflash to use the new mount API (Scott Mayhew) [1622041]
+- [misc] vfs: Convert cxl to use the new mount API (Scott Mayhew) [1622041]
+- [drm] vfs: Convert drm to use the new mount API (Scott Mayhew) [1622041]
+- [dax] vfs: Convert dax to use the new mount API (Scott Mayhew) [1622041]
+- [net] vfs: Convert sockfs to use the new mount API (Scott Mayhew) [1622041]
+- [mm] vfs: Convert zsmalloc to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert pipe to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert nsfs to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert bdev to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert anon_inodes to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Convert aio to use the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Provide a mount_pseudo-replacement for the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Provide sb->s_iflags settings in fs_context struct (Scott Mayhew) [1622041]
+- [fs] vfs: Fix refcounting of filenames in fs_parser (Scott Mayhew) [1622041]
+- [fs] move mount_capable() further out (Scott Mayhew) [1622041]
+- [fs] move mount_capable() calls to vfs_get_tree() (Scott Mayhew) [1622041]
+- [kernel] cpuset: move mount -t cpuset logics into cgroup.c (Scott Mayhew) [1622041]
+- [fs] procfs: set ->user_ns before calling ->get_tree() (Scott Mayhew) [1622041]
+- [ipc] mqueue: set ->user_ns before ->get_tree() (Scott Mayhew) [1622041]
+- [fs] switch mount_capable() to fs_context (Scott Mayhew) [1622041]
+- [fs] legacy_get_tree(): pass fc->user_ns to mount_capable() (Scott Mayhew) [1622041]
+- [fs] move the capability checks from sget_userns() to legacy_get_tree() (Scott Mayhew) [1622041]
+- [fs] vfs: Kill mount_ns() (Scott Mayhew) [1622041]
+- [fs] vfs: Convert nfsctl to use the new mount API (Scott Mayhew) [1622041]
+- [net] vfs: Convert rpc_pipefs to use the new mount API (Scott Mayhew) [1622041]
+- [fs] consolidate the capability checks in sget_{fc, userns}() (Scott Mayhew) [1622041]
+- [fs] start massaging the checks in sget_...(): move to sget_userns() (Scott Mayhew) [1622041]
+- [x86] no need to protect against put_user_ns(NULL) (Scott Mayhew) [1622041]
+- [fs] mount_pseudo(): drop 'name' argument, switch to d_make_root() (Scott Mayhew) [1622041]
+- [mm] zsmalloc: don't bother with dentry_operations (Scott Mayhew) [1622041]
+- [virtio] balloon: don't bother with dentry_operations (Scott Mayhew) [1622041]
+- [scsi] cxlflash: don't bother with dentry_operations (Scott Mayhew) [1622041]
+- [misc] cxl: don't bother with dentry_operations (Scott Mayhew) [1622041]
+- [fs] fs: VALIDATE_FS_PARSER should default to n (Scott Mayhew) [1622041]
+- [security] selinux: fix a missing-check bug in selinux_sb_eat_lsm_opts() (Scott Mayhew) [1622041]
+- [security] selinux: fix a missing-check bug in selinux_add_mnt_opt( ) (Scott Mayhew) [1622041]
+- [powerpc] uapi: Wire up the mount API syscalls on non-x86 arches (Scott Mayhew) [1622041]
+- [x86] uapi, x86: Fix the syscall numbering of the mount API syscalls (Scott Mayhew) [1622041]
+- [fs] uapi, fsopen: use square brackets around "fscontext" (Scott Mayhew) [1622041]
+- [samples] vfs: Add a sample program for the new mount API (Scott Mayhew) [1622041]
+- [x86] vfs: syscall: Add fspick() to select a superblock for reconfiguration (Scott Mayhew) [1622041]
+- [x86] vfs: syscall: Add fsmount() to create a mount for a superblock (Scott Mayhew) [1622041]
+- [fs] vfs: syscall: Add fsconfig() for configuring and managing a context (Scott Mayhew) [1622041]
+- [fs] vfs: Implement logging through fs_context (Scott Mayhew) [1622041]
+- [fs] vfs: syscall: Add fsopen() to prepare for superblock creation (Scott Mayhew) [1622041]
+- [fs] Make anon_inodes unconditional (Scott Mayhew) [1622041]
+- [fs] teach move_mount(2) to work with OPEN_TREE_CLONE (Scott Mayhew) [1622041]
+- [x86] vfs: syscall: Add move_mount(2) to move mounts around (Scott Mayhew) [1622041]
+- [fs] vfs: syscall: Add open_tree(2) to reference or clone a mount (Scott Mayhew) [1622041]
+- [fs] fix sysfs_init_fs_context() in !CONFIG_NET_NS case (Scott Mayhew) [1622041]
+- [fs] vfs: Add some logging to the core users of the fs_context log (Scott Mayhew) [1622041]
+- [fs] vfs: Implement logging through fs_context (Scott Mayhew) [1622041]
+- [documentation] vfs: Provide documentation for new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Remove kern_mount_data() (Scott Mayhew) [1622041]
+- [fs] hugetlbfs: Convert to fs_context (Scott Mayhew) [1622041]
+- [kernel] cpuset: Use fs_context (Scott Mayhew) [1622041]
+- [fs] kernfs, sysfs, cgroup, intel_rdt: Support fs_context (Scott Mayhew) [1622041]
+- [kernel] cgroup: store a reference to cgroup_ns into cgroup_fs_context (Scott Mayhew) [1622041]
+- [kernel] cgroup1_get_tree(): separate "get cgroup_root to use" into a separate helper (Scott Mayhew) [1622041]
+- [kernel] cgroup_do_mount(): massage calling conventions (Scott Mayhew) [1622041]
+- [kernel] cgroup: stash cgroup_root reference into cgroup_fs_context (Scott Mayhew) [1622041]
+- [kernel] cgroup2: switch to option-by-option parsing (Scott Mayhew) [1622041]
+- [kernel] cgroup1: switch to option-by-option parsing (Scott Mayhew) [1622041]
+- [kernel] cgroup: take options parsing into ->parse_monolithic() (Scott Mayhew) [1622041]
+- [kernel] cgroup: fold cgroup1_mount() into cgroup1_get_tree() (Scott Mayhew) [1622041]
+- [kernel] cgroup: start switching to fs_context (Scott Mayhew) [1622041]
+- [ipc] ipc: Convert mqueue fs to fs_context (Scott Mayhew) [1622041]
+- [fs] proc: Add fs_context support to procfs (Scott Mayhew) [1622041]
+- [fs] procfs: Move proc_fill_super() to fs/proc/root.c (Scott Mayhew) [1622041]
+- [include] introduce cloning of fs_context (Scott Mayhew) [1622041]
+- [fs] convenience helpers: vfs_get_super() and sget_fc() (Scott Mayhew) [1622041]
+- [fs] vfs: Implement a filesystem superblock creation/configuration context (Scott Mayhew) [1622041]
+- [include] vfs: Put security flags into the fs_context struct (Scott Mayhew) [1622041]
+- [security] selinux: Implement the new mount API LSM hooks (Scott Mayhew) [1622041]
+- [include] vfs: Add LSM hooks for the new mount API (Scott Mayhew) [1622041]
+- [fs] vfs: Add configuration parser helpers (Scott Mayhew) [1622041]
+- [include] vfs: Introduce logging functions (Scott Mayhew) [1622041]
+- [fs] introduce fs_context methods (Scott Mayhew) [1622041]
+- [fs] fs_context flavour for submounts (Scott Mayhew) [1622041]
+- [fs] convert do_remount_sb() to fs_context (Scott Mayhew) [1622041]
+- [fs] vfs_get_tree(): evict the call of security_sb_kern_mount() (Scott Mayhew) [1622041]
+- [fs] new helper: do_new_mount_fc() (Scott Mayhew) [1622041]
+- [fs] teach vfs_get_tree() to handle subtype, switch do_new_mount() to it (Scott Mayhew) [1622041]
+- [fs] new helpers: vfs_create_mount(), fc_mount() (Scott Mayhew) [1622041]
+- [fs] vfs: Introduce fs_context, switch vfs_kern_mount() to it (Scott Mayhew) [1622041]
+- [fs] saner handling of temporary namespaces (Scott Mayhew) [1622041]
+- [fs] separate copying and locking mount tree on cross-userns copies (Scott Mayhew) [1622041]
+- [fs] kill kernfs_pin_sb() (Scott Mayhew) [1622041]
+- [fs] mount_fs: suppress MAC on MS_SUBMOUNT as well as MS_KERNMOUNT (Scott Mayhew) [1622041]
+- [security] LSM: new method: ->sb_add_mnt_opt() (Scott Mayhew) [1622041]
+- [security] selinux: rewrite selinux_sb_eat_lsm_opts() (Scott Mayhew) [1622041]
+- [security] selinux: regularize Opt_... names a bit (Scott Mayhew) [1622041]
+- [security] selinux: switch away from match_token() (Scott Mayhew) [1622041]
+- [security] selinux: new helper - selinux_add_opt() (Scott Mayhew) [1622041]
+- [include] LSM: bury struct security_mnt_opts (Scott Mayhew) [1622041]
+- [security] selinux: switch to private struct selinux_mnt_opts (Scott Mayhew) [1622041]
+- [fs] LSM: hide struct security_mnt_opts from any generic code (Scott Mayhew) [1622041]
+- [security] LSM: turn sb_eat_lsm_opts() into a method (Scott Mayhew) [1622041]
+- [fs] nfs_remount(): don't leak, don't ignore LSM options quietly (Scott Mayhew) [1622041]
+- [security] LSM: split ->sb_set_mnt_opts() out of ->sb_kern_mount() (Scott Mayhew) [1622041]
+- [fs] new helper: security_sb_eat_lsm_opts() (Scott Mayhew) [1622041]
+- [security] LSM: lift extracting and parsing LSM options into the caller of ->sb_remount() (Scott Mayhew) [1622041]
+- [security] LSM: lift parsing LSM options into the caller of ->sb_kern_mount() (Scott Mayhew) [1622041]
+- [fs] vfs: Separate changing mount flags full remount (Scott Mayhew) [1622041]
+- [fs] vfs: Suppress MS_* flag defs within the kernel unless explicitly enabled (Scott Mayhew) [1622041]
+
+* Tue Oct 27 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.9.el8]
+- [hv] hv_utils: drain the timesync packets on onchannelcallback (Vitaly Kuznetsov) [1884733]
+- [hv] hv_utils: return error if host timesysnc update is stale (Vitaly Kuznetsov) [1884733]
+- [netdrv] hv_netvsc: Cache the current data path to avoid duplicate call and message (Mohammed Gamal) [1876527]
+- [netdrv] hv_netvsc: Switch the data path at the right time during hibernation (Mohammed Gamal) [1876527]
+- [netdrv] hv_netvsc: Fix hibernation for mlx5 VF driver (Mohammed Gamal) [1876527]
+- [hv] hv: vmbus: hibernation: do not hang forever in vmbus_bus_resume() (Mohammed Gamal) [1876519]
+- [target] scsi: target: Fix lun lookup for TARGET_SCF_LOOKUP_LUN_FROM_TAG case (Maurizio Lombardi) [1880395]
+- [target] scsi: target: iscsi: Fix hang in iscsit_access_np() when getting tpg->np_login_sem (Maurizio Lombardi) [1880395]
+- [target] scsi: target: iscsi: Fix data digest calculation (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Make iscsit_register_transport() return void (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Make TMR notification optional (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Implement tmr_notify callback (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Fix and simplify timeout handling (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Factor out new helper ring_insert_padding (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Do not queue aborted commands (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Use priv pointer in se_cmd (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Add tmr_notify backend function (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Modify core_tmr_abort_task() (Maurizio Lombardi) [1880395]
+- [target] scsi: target: iscsi: Fix inconsistent debug message (Maurizio Lombardi) [1880395]
+- [target] scsi: target: iscsi: Fix login error when receiving (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Remove unused variable 'tpg' (Maurizio Lombardi) [1880395]
+- [target] scsi: target: cxgbit: Remove tx flow control code (Maurizio Lombardi) [1880395]
+- [target] scsi: target: cxgbit: Check connection state before issuing hardware command (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Handle short iSIDs (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Fix iscsi transport id buf len calculation (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Fix iscsi transport id buffer setup (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Fix iscsi transport id parsing (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Fix crash during SPEC_I_PT handling (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Fix xcopy sess release leak (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Check enforce_pr_isids during registration (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Fix crash on ARM during cmd completion (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Fix crash in tcmu_flush_dcache_range on ARM (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Optimize use of flush_dcache_page (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Remove unnecessary bit TCMU_CMD_BIT_INFLIGHT (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Rename target_setup_cmd_from_cdb() to target_cmd_parse_cdb() (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Fix NULL pointer dereference (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Initialize LUN in transport_init_se_cmd() (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Factor out a new helper, target_cmd_init_cdb() (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Fix size in calls to tcmu_flush_dcache_range (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Fix a use after free in tcmu_check_expired_queue_cmd() (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Userspace must not complete queued commands (Maurizio Lombardi) [1880395]
+- [target] scsi: target: core: Add initiatorname to NON_EXISTENT_LUN error (Maurizio Lombardi) [1880395]
+- [target] scsi: target: loopback: Fix READ with data and sensebytes (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Make pgr_support and alua_support attributes writable (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Make transport_flags per device (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: Add attributes enforce_pr_isids and force_pr_aptpl (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Add missing emulate_pr attribute to passthrough backends (Maurizio Lombardi) [1880395]
+- [target] scsi: target: iscsi: Remove the iscsi_data_count structure (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Put lun_ref at end of tmr processing (Maurizio Lombardi) [1880395]
+- [target] scsi: target/iblock: fix WRITE SAME zeroing (Maurizio Lombardi) [1880395]
+- [target] scsi: target: tcmu: reset_ring should reset TCMU_DEV_BIT_BROKEN (Maurizio Lombardi) [1880395]
+- [target] scsi: target: fix PR IN / READ FULL STATUS for FC (Maurizio Lombardi) [1880395]
+- [target] scsi: target: Write NULL to *port_nexus_ptr if no ISID (Maurizio Lombardi) [1880395]
+- [target] scsi: target: use the stack for XCOPY passthrough cmds (Maurizio Lombardi) [1880395]
+- [target] scsi: target: increase XCOPY I/O size (Maurizio Lombardi) [1880395]
+- [target] scsi: target: avoid per-loop XCOPY buffer allocations (Maurizio Lombardi) [1880395]
+- [target] scsi: target: drop xcopy DISK BLOCK LENGTH debug (Maurizio Lombardi) [1880395]
+- [target] scsi: target: use #define for xcopy descriptor len (Maurizio Lombardi) [1880395]
+- [crypto] crypto: testmgr - mark cts(cbc(aes)) as FIPS allowed (Vladis Dronov) [1855161]
+- [kernel] sched/deadline: Unthrottle PI boosted threads while enqueuing (Daniel Bristot de Oliveira) [1869760]
+- [kernel] sched/deadline: Fix stale throttling on de-/boosted tasks (Daniel Bristot de Oliveira) [1869760]
+- [netdrv] treewide: Use fallthrough pseudo-keyword (Jonathan Toppins) [1871286]
+- [netdrv] tg3: Avoid the use of one-element array (Jonathan Toppins) [1871286]
+- [netdrv] net: tg3: tidy up loop, remove need to compute off with a multiply (Jonathan Toppins) [1871286]
+- [netdrv] net: tg3: reject unsupported coalescing params (Jonathan Toppins) [1871286]
+- [netdrv] net: tg3: use skb_list_walk_safe helper for gso segments (Jonathan Toppins) [1871286]
+- [gpio] gpio: gpio-mlxbf2.c: Provide __releases() annotation to stop confusing Sparse (Alaa Hleihel) [1816931]
+- [gpio] gpio: gpio-mlxbf2: Tell the compiler that ACPI functions may not be use (Alaa Hleihel) [1816931]
+- [gpio] gpio: mlxbf2: Fix sleeping while holding spinlock (Alaa Hleihel) [1816931]
+- [gpio] gpio: mlxbf2: fix return value check in mlxbf2_gpio_get_lock_res() (Alaa Hleihel) [1816931]
+- [gpio] gpio: mlxbf2: remove unused including <linux/version.h> (Alaa Hleihel) [1816931]
+- [gpio] gpio: add driver for Mellanox BlueField 2 GPIO controller (Alaa Hleihel) [1816931]
+- [include] compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use (Ivan Vecera) [1867168]
+- [net] net: sctp: Rename fallthrough label to unhandled (Ivan Vecera) [1867168]
+
+* Mon Oct 26 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.8.el8]
+- [pci] PCI: Mark AMD Navi10 GPU rev 0x00 ATS as broken (Myron Stowe) [1888310]
+- [netdrv] nfp: flower: fix ABI mismatch between driver and firmware (Ivan Vecera) [1886717]
+- [netdrv] netronome: fix ipv6 link error (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: fix incorrect flag assignment (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: fix used time of merge flow statistics (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: inform firmware of flower features (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: renaming of feature bits (Ivan Vecera) [1886717]
+- [netdrv] nfp: don't check lack of RX/TX channels (Ivan Vecera) [1886717]
+- [netdrv] nfp: abm: fix error return code in nfp_abm_vnic_alloc() (Ivan Vecera) [1886717]
+- [netdrv] nfp: abm: fix a memory leak bug (Ivan Vecera) [1886717]
+- [netdrv] net/nfp: Update driver to use global kernel version (Ivan Vecera) [1886717]
+- [netdrv] nfp: allow explicitly selected delayed stats (Ivan Vecera) [1886717]
+- [netdrv] net: nfp: Use scnprintf() for avoiding potential buffer overflow (Ivan Vecera) [1886717]
+- [netdrv] nfp: let core reject the unsupported coalescing parameters (Ivan Vecera) [1886717]
+- [netdrv] nfp: Use pci_get_dsn() (Ivan Vecera) [1886717]
+- [netdrv] netronome: Replace zero-length array with flexible-array member (Ivan Vecera) [1886717]
+- [netdrv] devlink: move devlink documentation to subfolder (Ivan Vecera) [1886717]
+- [netdrv] remove ioremap_nocache and devm_ioremap_nocache (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: implement the stream sync RX resync (Ivan Vecera) [1886717]
+- [netdrv] nfp: pass packet pointer to nfp_net_parse_meta() (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: update flow merge code to support IPv6 tunnels (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: support ipv6 tunnel keep-alive messages from fw (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: handle notifiers for ipv6 route changes (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: handle ipv6 tunnel no neigh request (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: modify pre-tunnel and set tunnel action for ipv6 (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: offload list of IPv6 tunnel endpoint addresses (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: compile match for IPv6 tunnels (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: move udp tunnel key match compilation to helper function (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: pass flow rule pointer directly to match functions (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: fix stats id allocation (Ivan Vecera) [1886717]
+- [netdrv] netronome: use the new txqueue timeout argument (Ivan Vecera) [1886717]
+- [netdrv] nfp: add support for TLV device stats (Ivan Vecera) [1886717]
+- [netdrv] treewide: Use sizeof_field() macro (Ivan Vecera) [1886717]
+- [netdrv] net: use rhashtable_lookup() instead of rhashtable_lookup_fast() (Ivan Vecera) [1886717]
+- [netdrv] nfp: bpf: make array exp_mask static, makes object smaller (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: fix memory leak in nfp_flower_spawn_vnic_reprs (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: prevent memory leak in nfp_flower_spawn_phy_reprs (Ivan Vecera) [1886717]
+- [netdrv] nfp: read chip model from the PluDevice register (Ivan Vecera) [1886717]
+- [netdrv] nfp: devlink: set unknown fw_load_policy (Ivan Vecera) [1886717]
+- [documentation] Documentation: nfp: add nfp driver specific notes (Ivan Vecera) [1886717]
+- [netdrv] kdoc: fix nfp_fw_load documentation (Ivan Vecera) [1886717]
+- [netdrv] nfp: devlink: add 'reset_dev_on_drv_probe' support (Ivan Vecera) [1886717]
+- [netdrv] nfp: devlink: add 'fw_load_policy' support (Ivan Vecera) [1886717]
+- [netdrv] nfp: add devlink param infrastructure (Ivan Vecera) [1886717]
+- [netdrv] nfp: honor FW reset and loading policies (Ivan Vecera) [1886717]
+- [netdrv] nfp: nsp: add support for hwinfo set operation (Ivan Vecera) [1886717]
+- [netdrv] nfp: nsp: add support for optional hwinfo lookup (Ivan Vecera) [1886717]
+- [netdrv] nfp: nsp: add support for fw_loaded command (Ivan Vecera) [1886717]
+- [netdrv] nfp: bpf: add simple map op cache (Ivan Vecera) [1886717]
+- [netdrv] nfp: bpf: rework MTU checking (Ivan Vecera) [1886717]
+- [netdrv] net: Use skb accessors in network drivers (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: rename tls packet counters (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: undo TLS sequence tracking when dropping the frame (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: avoid one of the ifdefs for TLS (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: don't leave key material in freed FW cmsg skbs (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: count TSO segments separately for the TLS offload (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: use unique connection ids instead of 4-tuple for TX (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: move setting ipver_vlan to a helper (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: ignore queue limits for delete commands (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: fix error return code in nfp_net_tls_add() (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: enable TLS RX offload (Ivan Vecera) [1886717]
+- [netdrv] net/tls: don't clear TX resync flag on error (Ivan Vecera) [1886717]
+- [netdrv] net/tls: add tracing for device/offload events (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: make use of kernel-driven TX resync (Ivan Vecera) [1886717]
+- [netdrv] net/tls: generalize the resync callback (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: implement RX TLS resync (Ivan Vecera) [1886717]
+- [netdrv] nfp: add async version of mailbox communication (Ivan Vecera) [1886717]
+- [netdrv] nfp: rename nfp_ccm_mbox_alloc() (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: set skb decrypted flag (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: add basic statistics (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: add/delete TLS TX connections (Ivan Vecera) [1886717]
+- [netdrv] nfp: tls: add datapath support for TLS TX (Ivan Vecera) [1886717]
+- [netdrv] nfp: flower: use struct_size() helper (Ivan Vecera) [1886717]
+- [netdrv] nfp: add missing kdoc (Ivan Vecera) [1886717]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Ivan Vecera) [1886717]
+- [iommu] iommu/amd: Fix the overwritten field in IVMD header (Baoquan He) [1869148]
+- [powerpc] pseries/drmem: don't cache node id in drmem_lmb struct (Diego Domingos) [1816543]
+- [include] cgroup: Fix sock_cgroup_data on big-endian (Vladis Dronov) [1868659] {CVE-2020-14356}
+- [include] cgroup: fix cgroup_sk_alloc() for sk_clone_lock() (Vladis Dronov) [1868659] {CVE-2020-14356}
+- [net] netprio_cgroup: Fix unlimited memory leak of v2 cgroups (Vladis Dronov) [1868659] {CVE-2020-14356}
+- [netdrv] net/broadcom: Clean broadcom code from driver versions (Jonathan Toppins) [1872443]
+
+* Wed Oct 21 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.7.el8]
+- [net] Bluetooth: fix kernel oops in store_pending_adv_report (Gopal Tiwari) [1888455] {CVE-2020-24490}
+- [net] Bluetooth: L2CAP: Fix calling sk_filter on non-socket based channel (Gopal Tiwari) [1888258] {CVE-2020-12351}
+- [net] Bluetooth: A2MP: Fix not initializing all members (Gopal Tiwari) [1888807] {CVE-2020-12352}
+- [mm] mm, compaction: make capture control handling safe wrt interrupts (Rafael Aquini) [1862175]
+- [mm] mm/compaction: fix a typo in comment "pessemistic"->"pessimistic" (Rafael Aquini) [1862175]
+- [mm] mm/compaction: add missing annotation for compact_lock_irqsave (Rafael Aquini) [1862175]
+- [mm] mm/compaction.c: clean code by removing unnecessary assignment (Rafael Aquini) [1862175]
+- [kernel] mm/compaction: Disable compact_unevictable_allowed on RT (Rafael Aquini) [1862175]
+- [kernel] mm/compaction: really limit compact_unevictable_allowed to 0 and 1 (Rafael Aquini) [1862175]
+- [mm] mm, compaction: fully assume capture is not NULL in compact_zone_order() (Rafael Aquini) [1862175]
+- [mm] mm, compaction: fix wrong pfn handling in __reset_isolation_pfn() (Rafael Aquini) [1862175]
+- [mm] mm/compaction.c: remove unnecessary zone parameter in isolate_migratepages() (Rafael Aquini) [1862175]
+- [mm] mm: compaction: avoid 100 CPU usage during compaction when a task is killed (Rafael Aquini) [1862175]
+- [mm] mm, compaction: make sure we isolate a valid PFN (Rafael Aquini) [1862175]
+- [mm] mm/compaction.c: correct zone boundary handling when isolating pages from a pageblock (Rafael Aquini) [1862175]
+- [trace] mm, compaction: some tracepoints should be defined only when CONFIG_COMPACTION is set (Rafael Aquini) [1862175]
+- [trace] mm: compaction: show gfp flag names in try_to_compact_pages tracepoint (Rafael Aquini) [1862175]
+- [mm] mm/compaction.c: fix an undefined behaviour (Rafael Aquini) [1862175]
+- [mm] mm, page_alloc: always use a captured page regardless of compaction result (Rafael Aquini) [1862175]
+- [mm] mm/compaction.c: abort search if isolation fails (Rafael Aquini) [1862175]
+- [mm] mm/compaction.c: correct zone boundary handling when resetting pageblock skip hints (Rafael Aquini) [1862175]
+- [include] include/linux/list.h: fix list_is_first() kernel-doc (Rafael Aquini) [1862175]
+- [mm] mm/compaction: pass pgdat to too_many_isolated() instead of zone (Rafael Aquini) [1862175]
+- [mm] mm: remove zone_lru_lock() function, access ->lru_lock directly (Rafael Aquini) [1862175]
+- [mm] mm, compaction: capture a page under direct compaction (Rafael Aquini) [1862175]
+- [mm] mm, compaction: be selective about what pageblocks to clear skip hints (Rafael Aquini) [1862175]
+- [mm] mm, compaction: sample pageblocks for free pages (Rafael Aquini) [1862175]
+- [mm] mm, compaction: round-robin the order while searching the free lists for a target (Rafael Aquini) [1862175]
+- [mm] mm, compaction: reduce premature advancement of the migration target scanner (Rafael Aquini) [1862175]
+- [mm] mm, compaction: do not consider a need to reschedule as contention (Rafael Aquini) [1862175]
+- [mm] mm, compaction: rework compact_should_abort as compact_check_resched (Rafael Aquini) [1862175]
+- [mm] mm, compaction: keep cached migration PFNs synced for unusable pageblocks (Rafael Aquini) [1862175]
+- [mm] mm, compaction: check early for huge pages encountered by the migration scanner (Rafael Aquini) [1862175]
+- [mm] mm, compaction: finish pageblock scanning on contention (Rafael Aquini) [1862175]
+- [mm] mm, compaction: avoid rescanning the same pageblock multiple times (Rafael Aquini) [1862175]
+- [mm] mm, compaction: use free lists to quickly locate a migration target (Rafael Aquini) [1862175]
+- [mm] mm, compaction: keep migration source private to a single compaction instance (Rafael Aquini) [1862175]
+- [mm] mm, compaction: use free lists to quickly locate a migration source (Rafael Aquini) [1862175]
+- [mm] mm, compaction: always finish scanning of a full pageblock (Rafael Aquini) [1862175]
+- [mm] mm, migrate: immediately fail migration of a page with no migration handler (Rafael Aquini) [1862175]
+- [mm] mm, compaction: rename map_pages to split_map_pages (Rafael Aquini) [1862175]
+- [mm] mm, compaction: remove unnecessary zone parameter in some instances (Rafael Aquini) [1862175]
+- [mm] mm, compaction: remove last_migrated_pfn from compact_control (Rafael Aquini) [1862175]
+- [mm] mm, compaction: rearrange compact_control (Rafael Aquini) [1862175]
+- [mm] mm, compaction: shrink compact_control (Rafael Aquini) [1862175]
+- [kernel] mm: remove sysctl_extfrag_handler() (Rafael Aquini) [1862175]
+- [net] netlink: fix state reallocation in policy export (Petr Oros) [1874050]
+- [net] netlink: add infrastructure to expose policies to userspace (Petr Oros) [1874050]
+- [lib] netlink: factor out policy range helpers (Petr Oros) [1874050]
+- [net] netlink: remove NLA_EXACT_LEN_WARN (Petr Oros) [1874050]
+- [include] netlink: allow NLA_MSECS to have range validation (Petr Oros) [1874050]
+- [net] netlink: extend policy range validation (Petr Oros) [1874050]
+- [net] nl80211: link recursive netlink nested policy (Petr Oros) [1874050]
+- [lib] netlink: limit recursion depth in policy validation (Petr Oros) [1874050]
+- [net] netlink: remove type-unsafe validation_data pointer (Petr Oros) [1874050]
+- [powerpc] powerpc/pseries: new lparcfg key/value pair: partition_affinity_score (Steve Best) [1879420]
+- [powerpc] powerpc/perf: consolidate GPCI hcall structs into asm/hvcall.h (Steve Best) [1879420]
+- [include] iopoll: Introduce read_poll_timeout_atomic macro (Patrick Talbert) [1879211]
+- [include] iopoll: redefined readx_poll_timeout macro to simplify the code (Patrick Talbert) [1879211]
+- [include] iopoll: introduce read_poll_timeout macro (Patrick Talbert) [1879211]
+- [infiniband] IB/ipoib: Fix double free of skb in case of multicast traffic in CM mode (Kamal Heib) [1857600]
+- [infiniband] RDMA/core: Fix double destruction of uobject (Kamal Heib) [1857600]
+- [infiniband] RDMA/pvrdma: Fix missing pci disable in pvrdma_pci_probe() (Kamal Heib) [1857600]
+- [net] xprtrdma: Fix use of xdr_stream_encode_item_{present, absent} (Kamal Heib) [1857600]
+- [net] xprtrdma: Fix trace point use-after-free race (Kamal Heib) [1857600]
+- [net] xprtrdma: Restore wake-up-all to rpcrdma_cm_event_handler() (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Fix missing RDMA_CM_EVENT_REJECTED event after receiving REJ message (Kamal Heib) [1857600]
+- [net] xprtrdma: kmalloc rpcrdma_ep separate from rpcrdma_xprt (Kamal Heib) [1857600]
+- [net] xprtrdma: Extract sockaddr from struct rdma_cm_id (Kamal Heib) [1857600]
+- [net] xprtrdma: Merge struct rpcrdma_ia into struct rpcrdma_ep (Kamal Heib) [1857600]
+- [net] xprtrdma: Disconnect on flushed completion (Kamal Heib) [1857600]
+- [net] xprtrdma: Remove rpcrdma_ia::ri_flags (Kamal Heib) [1857600]
+- [net] xprtrdma: Invoke rpcrdma_ia_open in the connect worker (Kamal Heib) [1857600]
+- [net] xprtrdma: Allocate Protection Domain in rpcrdma_ep_create() (Kamal Heib) [1857600]
+- [net] xprtrdma: Refactor rpcrdma_ep_connect() and rpcrdma_ep_disconnect() (Kamal Heib) [1857600]
+- [net] xprtrdma: Clean up the post_send path (Kamal Heib) [1857600]
+- [net] xprtrdma: Refactor frwr_init_mr() (Kamal Heib) [1857600]
+- [net] xprtrdma: Invoke rpcrdma_ep_create() in the connect worker (Kamal Heib) [1857600]
+- [net] xprtrdma: Enhance MR-related trace points (Kamal Heib) [1857600]
+- [infiniband] IB/iser: Always check sig MR before putting it to the free pool (Kamal Heib) [1857600]
+- [infiniband] RDMA/efa: Use in-kernel offsetofend() to check field availability (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Make sure the cm_id is in the IB_CM_IDLE state in destroy (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Allow ib_send_cm_sidr_rep() to be done under lock (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Allow ib_send_cm_rej() to be done under lock (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Allow ib_send_cm_drep() to be done under lock (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Allow ib_send_cm_dreq() to be done under lock (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Add some lockdep assertions for cm_id_priv->lock (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Make it clearer how concurrency works in cm_req_handler() (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Make it clear that there is no concurrency in cm_sidr_req_handler() (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Simplify establishing a listen cm_id (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Make the destroy_id flow more robust (Kamal Heib) [1857600]
+- [net] svcrdma: Avoid DMA mapping small RPC Replies (Kamal Heib) [1857600]
+- [net] svcrdma: Fix double sync of transport header buffer (Kamal Heib) [1857600]
+- [net] svcrdma: Refactor chunk list encoders (Kamal Heib) [1857600]
+- [net] SUNRPC: Add encoders for list item discriminators (Kamal Heib) [1857600]
+- [net] svcrdma: Rename svcrdma_encode trace points in send routines (Kamal Heib) [1857600]
+- [net] svcrdma: Update synopsis of svc_rdma_send_reply_msg() (Kamal Heib) [1857600]
+- [net] svcrdma: Update synopsis of svc_rdma_map_reply_msg() (Kamal Heib) [1857600]
+- [net] svcrdma: Update synopsis of svc_rdma_send_reply_chunk() (Kamal Heib) [1857600]
+- [net] svcrdma: De-duplicate code that locates Write and Reply chunks (Kamal Heib) [1857600]
+- [include] svcrdma: Use struct xdr_stream to decode ingress transport headers (Kamal Heib) [1857600]
+- [net] svcrdma: Remove svcrdma_cm_event() trace point (Kamal Heib) [1857600]
+- [net] SUNRPC: Add xdr_pad_size() helper (Kamal Heib) [1857600]
+- [net] nfsd: Fix NFSv4 READ on RDMA when using readv (Kamal Heib) [1857600]
+- [net] svcrdma: Replace zero-length array with flexible-array member (Kamal Heib) [1857600]
+- [infiniband] RDMA/cm: Delete not implemented CM peer to peer communication (Kamal Heib) [1857600]
+- [infiniband] RDMA/cma: Teach lockdep about the order of rtnl and lock (Kamal Heib) [1857600]
+- [infiniband] RDMA/rw: map P2P memory correctly for signature operations (Kamal Heib) [1857600]
+- [infiniband] RDMA/ipoib: reject unsupported coalescing params (Kamal Heib) [1857600]
+- [infiniband] RDMA/providers: Fix return value when QP type isn't supported (Kamal Heib) [1857600]
+- [infiniband] RDMA/hns: Use the new APIs for printing log (Kamal Heib) [1857600]
+- [infiniband] RDMA/hns: Optimize hns_roce_modify_qp function (Kamal Heib) [1857600]
+- [infiniband] RDMA/hns: RDMA/hns: Assign rq head pointer when enable rq record db (Kamal Heib) [1857600]
+- [infiniband] RDMA/hns: Update the prompt message for creating and destroy qp (Kamal Heib) [1857600]
+- [infiniband] RDMA/efa: Do not delay freeing of DMA pages (Kamal Heib) [1857600]
+- [infiniband] RDMA/efa: Properly document the interrupt mask register (Kamal Heib) [1857600]
+- [infiniband] RDMA/efa: Unified getters/setters for device structs bitmask access (Kamal Heib) [1857600]
+- [infiniband] RDMA/ipoib: Don't set constant driver version (Kamal Heib) [1857600]
+- [infiniband] RDMA: Replace zero-length array with flexible-array member (Kamal Heib) [1857600]
+- [infiniband] RDMA/ucma: Use refcount_t for the ctx->ref (Kamal Heib) [1857600]
+- [infiniband] RDMA/core: Get rid of ib_create_qp_user (Kamal Heib) [1857600]
+- [infiniband] RDMA/core: Add weak ordering dma attr to dma mapping (Kamal Heib) [1857600]
+- [infiniband] RDMA/ucma: Mask QPN to be 24 bits according to IBTA (Kamal Heib) [1857600]
+- [infiniband] RDMA/cma: Use refcount API to reflect refcount (Kamal Heib) [1857600]
+- [infiniband] RDMA/cma: Rename cma_device ref/deref helpers to to get/put (Kamal Heib) [1857600]
+- [infiniband] RDMA/cma: Use refcount API to reflect refcount (Kamal Heib) [1857600]
+- [infiniband] RDMA/cma: Rename cma_device ref/deref helpers to to get/put (Kamal Heib) [1857600]
+- [infiniband] RDMA/cma: Use RDMA device port iterator (Kamal Heib) [1857600]
+- [infiniband] RDMA/cma: Use a helper function to enqueue resolve work items (Kamal Heib) [1857600]
+- [infiniband] RDMA/rw: Fix error flow during RDMA context initialization (Kamal Heib) [1857600]
+- [infiniband] IB/core: Add interface to advise_mr for kernel users (Kamal Heib) [1857600]
+- [infiniband] IB/core: Introduce ib_reg_user_mr (Kamal Heib) [1857600]
+- [uapi] RDMA/core: Add the core support field to METHOD_GET_CONTEXT (Kamal Heib) [1857600]
+- [infiniband] RDMA/uverbs: Add ioctl command to get a device context (Kamal Heib) [1857600]
+- [fs] xfs: Fix false positive lockdep warning with sb_internal & fs_reclaim (Waiman Long) [1838643]
+- [mm] mm/mmu_notifier: mm/rmap.c: Fix a mmu_notifier range bug in try_to_unmap_one (Waiman Long) [1871883]
+- [mm] mm/memory.c: initialise mmu_notifier_range correctly (Waiman Long) [1871883]
+- [mm] mm/mmu_notifier: use structure for invalidate_range_start/end calls v2 (Waiman Long) [1871883]
+- [mm] hugetlb: take PMD sharing into account when flushing tlb/caches (Waiman Long) [1871883]
+- [mm] mm, hugetlbfs: pass fault address to cow handler (Waiman Long) [1871883]
+- [mm] mm, hugetlbfs: rename address to haddr in hugetlb_cow() (Waiman Long) [1871883]
+- [mm] mm, huge page: copy target sub-page last when copy huge page (Waiman Long) [1871883]
+- [mm] mm, clear_huge_page: move order algorithm into a separate function (Waiman Long) [1871883]
+- [mm] Revert "mm: always flush VMA ranges affected by zap_page_range" (Waiman Long) [1871883]
+- [kernel] psi: eliminate kthread_worker from psi trigger scheduling mechanism (Waiman Long) [1873040]
+- [kernel] psi: get poll_work to run when calling poll syscall next time (Waiman Long) [1873040]
+- [block] block: loop: set discard granularity and alignment for block device backed loop (Ming Lei) [1866712]
+- [net] gre: recompute gre csum for sctp over gre tunnels (Lorenzo Bianconi) [1755200]
+- [include] mm/hugetlb: enable arch specific huge page size support for migration (Donghai Qiao) [1869887]
+- [mm] arm64/mm: enable HugeTLB migration for contiguous bit HugeTLB pages (Donghai Qiao) [1869887]
+- [lib] idr: Fix idr_get_next_ul race with idr_remove (Felix Ansell) [1866062]
+- [lib] genalloc: Fix a set of docs build warnings (Felix Ansell) [1866062]
+- [lib] lib/Kconfig: fix OBJAGG in lib/ menu structure (Felix Ansell) [1866062]
+- [lib] lib: Reduce user_access_begin() boundaries in strncpy_from_user() and strnlen_user() (Felix Ansell) [1866062]
+
+* Fri Oct 16 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.6.el8]
+- [char] random32: update the net random state on interrupt and activity (Donghai Qiao) [1867569] {CVE-2020-16166}
+- [fs] nfs: Fix getxattr kernel panic and memory overflow (Benjamin Coddington) [1880894] {CVE-2020-25212}
+- [tools] selftests: rtnetlink: Test bridge enslavement with different parent IDs (Jonathan Toppins) [1860479]
+- [tools] selftests: rtnetlink: correct the final return value for the test (Jonathan Toppins) [1860479]
+- [net] Fix bridge enslavement failure (Jonathan Toppins) [1860479]
+- [net] Make mpls_entry_encode() available for generic users (Patrick Talbert) [1878818]
+- [net] SUNRPC dont update timeout value on connection reset (Steve Dickson) [1861895]
+- [kernel] overflow.h: Add flex_array_size() helper (Petr Oros) [1876924]
+- [net] netpoll: accept NULL np argument in netpoll_send_skb() (Ivan Vecera) [1867968]
+- [net] netpoll: netpoll_send_skb() returns transmit status (Ivan Vecera) [1867968]
+- [net] netpoll: move netpoll_send_skb() out of line (Ivan Vecera) [1867968]
+- [net] netpoll: remove dev argument from netpoll_send_skb_on_dev() (Ivan Vecera) [1867968]
+- [net] netpoll: Fix use correct return type for ndo_start_xmit() (Ivan Vecera) [1867968]
+- [net] core: Introduce netdev_get_xmit_slave (Ivan Vecera) [1867974]
+- [net] get rid of lockdep_set_class_and_subclass() (Ivan Vecera) [1867961]
+- [net] change addr_list_lock back to static key (Ivan Vecera) [1867961]
+- [net] batman-adv: Revert "Drop lockdep.h include for soft-interface.c" (Ivan Vecera) [1867961]
+- [net] partially revert dynamic lockdep key changes (Ivan Vecera) [1867961]
+- [kernel] rcu: Maintain RHEL kABI (Waiman Long) [1862812]
+- [kernel] rcu: Don't acquire lock in NMI handler in rcu_nmi_enter_common() (Waiman Long) [1862812]
+- [kernel] rcu: Add *_ONCE() to rcu_data ->rcu_forced_tick (Waiman Long) [1862812]
+- [kernel] rcu: Make rcu_barrier() account for offline no-CBs CPUs (Waiman Long) [1862812]
+- [kernel] rcu: Clear ->core_needs_qs at GP end or self-reported QS (Waiman Long) [1862812]
+- [kernel] rcu: Forgive slow expedited grace periods at boot time (Waiman Long) [1862812]
+- [tools] torture: Hoist calls to lscpu to higher-level kvm.sh script (Waiman Long) [1862812]
+- [tools] torture: Allow "CFLIST" to specify default list of scenarios (Waiman Long) [1862812]
+- [kernel] rcutorture: Dynamically allocate rcu_fwds structure (Waiman Long) [1862812]
+- [kernel] rcutorture: Complete threading rcu_fwd pointers through functions (Waiman Long) [1862812]
+- [kernel] rcutorture: Move to dynamic initialization of rcu_fwds (Waiman Long) [1862812]
+- [kernel] rcutorture: Thread rcu_fwd pointer through forward-progress functions (Waiman Long) [1862812]
+- [kernel] rcutorture: Pull callback forward-progress data into rcu_fwd struct (Waiman Long) [1862812]
+- [tools] rcutorture: Add worst-case call_rcu() forward-progress results (Waiman Long) [1862812]
+- [tools] torture: Handle systems lacking the mpstat command (Waiman Long) [1862812]
+- [tools] torture: Handle jitter for CPUs that cannot be offlined (Waiman Long) [1862812]
+- [tools] rcutorture: Dispense with Dracut for initrd creation (Waiman Long) [1862812]
+- [tools] torture: Use gawk instead of awk for systime() function (Waiman Long) [1862812]
+- [kernel] rcu: Avoid tick_dep_set_cpu() misordering (Waiman Long) [1862812]
+- [kernel] rcu: Provide wrappers for uses of ->rcu_read_lock_nesting (Waiman Long) [1862812]
+- [kernel] rcu: Use READ_ONCE() for ->expmask in rcu_read_unlock_special() (Waiman Long) [1862812]
+- [kernel] rcu: Clear ->rcu_read_unlock_special only once (Waiman Long) [1862812]
+- [kernel] rcu: Clear .exp_hint only when deferred quiescent state has been reported (Waiman Long) [1862812]
+- [kernel] rcu: Rename some instance of CONFIG_PREEMPTION to CONFIG_PREEMPT_RCU (Waiman Long) [1862812]
+- [kernel] rcu: Use CONFIG_PREEMPTION where appropriate (Waiman Long) [1862812]
+- [kernel] rcu: Make PREEMPT_RCU be a modifier to TREE_RCU (Waiman Long) [1862812]
+- [kernel] rcu: Use lockdep rather than comment to enforce lock held (Waiman Long) [1862812]
+- [kernel] rcu: Avoid data-race in rcu_gp_fqs_check_wake() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Fix dump_tree hierarchy print always active (Waiman Long) [1862812]
+- [kernel] rculist.h: Add list_tail_rcu() (Waiman Long) [1862812]
+- [kernel] rculist_nulls: Change docbook comment headers (Waiman Long) [1862812]
+- [kernel] rculist_nulls: Add docbook comments (Waiman Long) [1862812]
+- [include] rcu: Add a hlist_nulls_unhashed_lockless() function (Waiman Long) [1862812]
+- [kernel] rcu: Use WRITE_ONCE() for assignments to ->pprev for hlist_nulls (Waiman Long) [1862812]
+- [kernel] rcu: Remove kfree_call_rcu_nobatch() (Waiman Long) [1862812]
+- [kernel] rcu: Remove kfree_rcu() special casing and lazy-callback handling (Waiman Long) [1862812]
+- [kernel] rcu: Add support for debug_objects debugging for kfree_rcu() (Waiman Long) [1862812]
+- [kernel] rcu: Add multiple in-flight batches of kfree_rcu() work (Waiman Long) [1862812]
+- [kernel] rcu: Make kfree_rcu() use a non-atomic ->monitor_todo (Waiman Long) [1862812]
+- [kernel] rcuperf: Add kfree_rcu() performance Tests (Waiman Long) [1862812]
+- [kernel] rcu: Add basic support for kfree_rcu() batching (Waiman Long) [1862812]
+- [kernel] rcu: Remove unused stop-machine #include (Waiman Long) [1862812]
+- [kernel] srcu: Apply *_ONCE() to ->srcu_last_gp_end (Waiman Long) [1862812]
+- [kernel] rcu: Switch force_qs_rnp() to for_each_leaf_node_cpu_mask() (Waiman Long) [1862812]
+- [kernel] rcu: Move rcu_{expedited, normal} definitions into rcupdate.h (Waiman Long) [1862812]
+- [kernel] rcu: Move gp_state_namesand gp_state_getname() to tree_stall.h (Waiman Long) [1862812]
+- [kernel] rcu: Remove the declaration of call_rcu() in tree.h (Waiman Long) [1862812]
+- [kernel] rcu: Fix tracepoint tracking RCU CPU kthread utilization (Waiman Long) [1862812]
+- [kernel] rcu: Fix harmless omission of "CONFIG_" from #if condition (Waiman Long) [1862812]
+- [kernel] rcu: Mark non-global functions and variables as static (Waiman Long) [1862812]
+- [kernel] rcu: Enable tick for nohz_full CPUs slow to provide expedited QS (Waiman Long) [1862812]
+- [kernel] rcu: Replace synchronize_sched_expedited_wait() "_sched" with "_rcu" (Waiman Long) [1862812]
+- [kernel] rcu: Update tree_exp.h function-header comments (Waiman Long) [1862812]
+- [kernel] rcu: Rename sync_rcu_preempt_exp_done() to sync_rcu_exp_done() (Waiman Long) [1862812]
+- [kernel] rcu: Allow only one expedited GP to run concurrently with wakeups (Waiman Long) [1862812]
+- [kernel] rcu: Fix missed wakeup of exp_wq waiters (Waiman Long) [1862812]
+- [kernel] rcu: Substitute lookup for bit-twiddling in sync_rcu_exp_select_node_cpus() (Waiman Long) [1862812]
+- [kernel] rcu: Fix data-race due to atomic_t copy-by-value (Waiman Long) [1862812]
+- [kernel] rcu: Avoid modifying mask_ofl_ipi in sync_rcu_exp_select_node_cpus() (Waiman Long) [1862812]
+- [kernel] rcu: Use *_ONCE() to protect lockless ->expmask accesses (Waiman Long) [1862812]
+- [kernel] rcutorture: Make in-kernel-loop testing more brutal (Waiman Long) [1862812]
+- [kernel] rcutorture: Separate warnings for each failure type (Waiman Long) [1862812]
+- [kernel] rcu: Remove unused variable rcu_perf_writer_state (Waiman Long) [1862812]
+- [tools] rcutorture: Remove CONFIG_HOTPLUG_CPU=n from scenarios (Waiman Long) [1862812]
+- [kernel] rcu: Remove unused function rcutorture_record_progress() (Waiman Long) [1862812]
+- [kernel] rcu: Make kernel-mode nohz_full CPUs invoke the RCU core processing (Waiman Long) [1862812]
+- [kernel] rcu: Confine ->core_needs_qs accesses to the corresponding CPU (Waiman Long) [1862812]
+- [kernel] rcu: Reset CPU hints when reporting a quiescent state (Waiman Long) [1862812]
+- [kernel] rcu: Force nohz_full tick on upon irq enter instead of exit (Waiman Long) [1862812]
+- [kernel] rcu: Force tick on for nohz_full CPUs not reaching quiescent states (Waiman Long) [1862812]
+- [kernel] rcutorture: Emulate dyntick aspect of userspace nohz_full sojourn (Waiman Long) [1862812]
+- [kernel] rcu: Make CPU-hotplug removal operations enable tick (Waiman Long) [1862812]
+- [kernel] stop_machine: Provide RCU quiescent state in multi_cpu_stop() (Waiman Long) [1862812]
+- [kernel] rcutorture: Force on tick for readers and callback flooders (Waiman Long) [1862812]
+- [kernel] rcu: Force on tick when invoking lots of callbacks (Waiman Long) [1862812]
+- [kernel] time: Export tick start/stop functions for rcutorture (Waiman Long) [1862812]
+- [kernel] nohz: Add TICK_DEP_BIT_RCU (Waiman Long) [1862812]
+- [kernel] rcu: Suppress levelspread uninitialized messages (Waiman Long) [1862812]
+- [kernel] rcu: Fix uninitialized variable in nocb_gp_wait() (Waiman Long) [1862812]
+- [trace] rcu: Update descriptions for rcu_future_grace_period tracepoint (Waiman Long) [1862812]
+- [trace] rcu: Update descriptions for rcu_nocb_wake tracepoint (Waiman Long) [1862812]
+- [trace] rcu: Remove obsolete descriptions for rcu_barrier tracepoint (Waiman Long) [1862812]
+- [kernel] rcu: Ensure that ->rcu_urgent_qs is set before resched IPI (Waiman Long) [1862812]
+- [kernel] rcu: Several rcu_segcblist functions can be static (Waiman Long) [1862812]
+- [kernel] rcu: Remove unused function hlist_bl_del_init_rcu() (Waiman Long) [1862812]
+- [kernel] rcu: Allow rcu_do_batch() to dynamically adjust batch sizes (Waiman Long) [1862812]
+- [kernel] srcu: Avoid srcutorture security-based pointer obfuscation (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Don't wake no-CBs GP kthread if timer posted under overload (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Reduce __call_rcu_nocb_wake() leaf rcu_node ->lock contention (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Reduce nocb_cb_wait() leaf rcu_node ->lock contention (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Advance CBs after merge in rcutree_migrate_callbacks() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Avoid synchronous wakeup in __call_rcu_nocb_wake() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Print no-CBs diagnostics when rcutorture writer unduly delayed (Waiman Long) [1862812]
+- [kernel] rcu/nocb: EXP Check use and usefulness of ->nocb_lock_contended (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Add bypass callback queueing (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Atomic ->len field in rcu_segcblist structure (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Unconditionally advance and wake for excessive CBs (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Reduce ->nocb_lock contention with separate ->nocb_gp_lock (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Reduce contention at no-CBs invocation-done time (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Reduce contention at no-CBs registry-time CB advancement (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Round down for number of no-CBs grace-period kthreads (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Avoid ->nocb_lock capture by corresponding CPU (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Avoid needless wakeups of no-CBs grace-period kthread (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Make __call_rcu_nocb_wake() safe for many callbacks (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Never downgrade ->nocb_defer_wakeup in wake_nocb_gp_defer() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Enable re-awakening under high callback load (Waiman Long) [1862812]
+- [kernel] rcu/nohz: Turn off tick for offloaded CPUs (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Suppress uninitialized false-positive in nocb_gp_wait() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Use build-time no-CBs check in rcu_pending() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Use build-time no-CBs check in rcu_core() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Use build-time no-CBs check in rcu_do_batch() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Remove obsolete nocb_gp_head and nocb_gp_tail fields (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Remove obsolete nocb_cb_tail and nocb_cb_head fields (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Remove obsolete nocb_q_count and nocb_q_count_lazy fields (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Remove obsolete nocb_head and nocb_tail fields (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Use rcu_segcblist for no-CBs CPUs (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Leave ->cblist enabled for no-CBs CPUs (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Allow lockless use of rcu_segcblist_empty() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Allow lockless use of rcu_segcblist_restempty() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Remove deferred wakeup checks for extended quiescent states (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Check for deferred nocb wakeups before nohz_full early exit (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Make rcutree_migrate_callbacks() start at leaf rcu_node structure (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Add checks for offloaded callback processing (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Use separate flag to indicate offloaded ->cblist (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Use separate flag to indicate disabled ->cblist (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Print gp/cb kthread hierarchy if dump_tree (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Rename rcu_nocb_leader_stride kernel boot parameter (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Rename and document no-CB CB kthread sleep trace event (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Rename rcu_organize_nocb_kthreads() local variable (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Rename wake_nocb_leader_defer() to wake_nocb_gp_defer() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Rename __wake_nocb_leader() to __wake_nocb_gp() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Rename wake_nocb_leader() to wake_nocb_gp() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Rename nocb_follower_wait() to nocb_cb_wait() (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Provide separate no-CBs grace-period kthreads (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Update comments to prepare for forward-progress work (Waiman Long) [1862812]
+- [kernel] rcu/nocb: Rename rcu_data fields to prepare for forward-progress work (Waiman Long) [1862812]
+- [kernel] rcutorture: Aggressive forward-progress tests shouldn't block shutdown (Waiman Long) [1862812]
+- [kernel] rcuperf: Make rcuperf kernel test more robust for !expedited mode (Waiman Long) [1862812]
+- [kernel] rcutorture: Emulate userspace sojourn during call_rcu() floods (Waiman Long) [1862812]
+- [tools] rcutorture: Test TREE03 with the threadirqs kernel boot parameter (Waiman Long) [1862812]
+- [tools] torture: Expand last_ts variable in kvm-test-1-run.sh (Waiman Long) [1862812]
+- [kernel] rcuperf: Fix perf_type module-parameter description (Waiman Long) [1862812]
+- [documentation] doc: Add rcutree.kthread_prio pointer to stallwarn.txt (Waiman Long) [1862812]
+- [kernel] rcu: Change return type of rcu_spawn_one_boost_kthread() (Waiman Long) [1862812]
+- [kernel] rcu: Add destroy_work_on_stack() to match INIT_WORK_ONSTACK() (Waiman Long) [1862812]
+- [kernel] rcu: Add kernel parameter to dump trace after RCU CPU stall warning (Waiman Long) [1862812]
+- [kernel] rcu: Restore barrier() to rcu_read_lock() and rcu_read_unlock() (Waiman Long) [1862812]
+- [kernel] rcu: Simplify rcu_note_context_switch exit from critical section (Waiman Long) [1862812]
+- [kernel] rcu: Make rcu_read_unlock_special() checks match raise_softirq_irqoff() (Waiman Long) [1862812]
+- [kernel] rcu: Simplify rcu_read_unlock_special() deferred wakeups (Waiman Long) [1862812]
+- [tools] rcu: Don't return a value from rcu_assign_pointer() (Waiman Long) [1862812]
+- [kernel] rcu: Force inlining of rcu_read_lock() (Waiman Long) [1862812]
+- [kernel] rcu: Fix irritating whitespace error in rcu_assign_pointer() (Waiman Long) [1862812]
+- [kernel] rcu: validate arguments for rcu tracepoints (Waiman Long) [1862812]
+- [trace] tracing: introduce TRACE_EVENT_NOP() (Waiman Long) [1862812]
+- [kernel] kprobes: Prohibit probing on RCU debug routine (Waiman Long) [1862812]
+- [init] time: Make VIRT_CPU_ACCOUNTING_GEN depend on GENERIC_CLOCKEVENTS (Waiman Long) [1862812]
+- [kernel] time: Move CONTEXT_TRACKING to kernel/time/Kconfig (Waiman Long) [1862812]
+
+* Tue Oct 13 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.5.el8]
+- [fs] xfs: don't commit sunit/swidth updates to disk if that would cause repair failures (Bill O'Donnell) [1849407]
+- [fs] xfs: split the sunit parameter update into two parts (Bill O'Donnell) [1849407]
+- [fs] xfs: refactor agfl length computation function (Bill O'Donnell) [1849407]
+- [net] netfilter: conntrack: proc: rename stat column (Florian Westphal) [1875681]
+- [net] netfilter: conntrack: add clash resolution stat counter (Florian Westphal) [1875681]
+- [net] netfilter: conntrack: remove ignore stats (Florian Westphal) [1875681]
+- [net] netfilter: conntrack: do not increment two error counters at same time (Florian Westphal) [1875681]
+- [net] netfilter: conntrack: do not auto-delete clash entries on reply (Florian Westphal) [1875681]
+- [powerpc] powerpc/pseries/iommu: Allow bigger 64bit window by removing default DMA window (Steve Best) [1725198]
+- [powerpc] powerpc/pseries/iommu: Move window-removing part of remove_ddw into remove_dma_window (Steve Best) [1725198]
+- [powerpc] powerpc/pseries/iommu: Update call to ibm, query-pe-dma-windows (Steve Best) [1725198]
+- [powerpc] powerpc/pseries/iommu: Create defines for operations in ibm, ddw-applicable (Steve Best) [1725198]
+- [x86] x86/cpu: Add Sapphire Rapids CPU model number (Puneet Sethi) [1872367]
+- [x86] x86/cpu: Add Lakefield, Alder Lake and Rocket Lake models to the to Intel CPU family (Steve Best) [1838902]
+
+* Thu Oct 08 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.4.el8]
+- [powerpc] powerpc/xmon: Improve dumping prefixed instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add a ppc_inst_as_str() helper (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add ppc_inst_as_u64() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add ppc_inst_next() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/sstep: Add tests for Prefixed Add Immediate (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/sstep: Let compute tests specify a required cpu feature (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/sstep: Set NIP in instruction emulation tests (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/sstep: Add tests for prefixed floating-point load/stores (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/sstep: Add tests for prefixed integer load/stores (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add POWER10 architected mode (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/dt_cpu_ftrs: Add MMA feature (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/dt_cpu_ftrs: Enable Prefixed Instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/dt_cpu_ftrs: Advertise support for ISA v3.1 if selected (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add support for ISA v3.1 (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add new HWCAP bits (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc sstep: Add support for prefixed fixed-point arithmetic (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc sstep: Add support for prefixed load/stores (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Support prefixed instructions in alignment handler (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/kprobes: Don't allow breakpoints on suffixes (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/xmon: Don't allow breakpoints on suffixes (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Test prefixed instructions in feature fixups (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Test prefixed code patching (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add prefixed instructions to instruction data type (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/optprobes: Add register argument to patch_imm64_load_insns() (Desnes Augusto Nunes do Rosario) [1854524]
+- [kvm] powerpc: Define new SRR1 bits for a ISA v3.1 (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/83xx: handle machine check caused by watchdog timer (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Enable Prefixed Instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Make test_translate_branch() independent of instruction length (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/xmon: Move insertion of breakpoint for xol'ing (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/xmon: Use a function for reading instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Introduce a function for reporting instruction length (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Define and use get_user_instr() et. al (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/kprobes: Use patch_instruction() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add a probe_kernel_read_inst() function (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add a probe_user_read_inst() function (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Use a function for reading instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Use a datatype for instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/lib: Refactor __patch_instruction() to use __put_user_asm() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: use probe_user_read() and probe_user_write() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/process: Constify the number of insns printed by show instructions functions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/process: Fix interleaved output in show_user_instructions() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/process: Fix sparse address space warnings (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Don't print kernel instructions in show_user_instructions() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Add show_user_instructions() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/lib: fix book3s/32 boot failure due to code patching (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Introduce functions for instruction equality (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Use a function for byte swapping instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Use a function for getting the instruction op code (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Use an accessor for instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc sstep: Add support for extswsli instruction (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: sstep: Add support for maddhd, maddhdu, maddld instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Use a macro for creating instructions from u32s (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/fsl: Add infrastructure to fixup branch predictor flush (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/smp: Use code patching to restore reset vector (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: sstep: Add tests for addcinstruction (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: sstep: Add tests for addinstruction (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: sstep: Add tests for compute type instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/sstep: Fix DS operand in ld encoding to appropriate value (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/fsl: Add barrier_nospec implementation for NXP PowerPC Book3E (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/watchpoint: Don't ignore extraneous exceptions blindly (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/watchpoint: Disable watchpoint hit by larx/stcx instructions (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/kgdb: add kgdb_arch_set/remove_breakpoint() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/hw_breakpoint: move instruction stepping out of hw_breakpoint_handler() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: add modify_instruction() and modify_instruction_site() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: Change calling convention for create_branch() et. al (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc: simplify patch_instruction_site() and patch_branch_site() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/code-patching: Add a helper to get the address of a patch_site (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/ftrace: Handle large kernel configs (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/32: use patch_site_addr() in machine_init() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/lib: Use patch_site to patch copy_32 functions once cache is enabled (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/xmon: Use bitwise calculations in_breakpoint_table() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/xmon: Move breakpoints to text section (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/xmon: Move breakpoint instructions to own array (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/xmon: Remove store_inst() for patch_instruction() (Desnes Augusto Nunes do Rosario) [1854524]
+- [powerpc] powerpc/powernv/idle: Exclude mfspr on HID1, 4, 5 on P9 and above (Steve Best) [1854539]
+- [powerpc] powerpc/powernv/idle: Rename pnv_first_spr_loss_level variable (Steve Best) [1854539]
+- [powerpc] powerpc/powernv/idle: Replace CPU feature check with PVR check (Steve Best) [1854539]
+- [powerpc] powerpc/64s: Don't set FSCR bits in INIT_THREAD (Steve Best) [1854523]
+- [powerpc] powerpc/64s: Save FSCR to init_task.thread.fscr after feature init (Steve Best) [1854523]
+- [powerpc] powerpc/64s: Don't let DT CPU features set FSCR_DSCR (Steve Best) [1854523]
+- [powerpc] powerpc/64s: Don't init FSCR_DSCR in __init_FSCR() (Steve Best) [1854523]
+
+* Wed Oct 07 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.3.el8]
+- [kernel] sched/cfs: change initial value of runnable_avg (Phil Auld) [1875995]
+- [kernel] sched/fair: Fix runnable_avg for throttled cfs (Phil Auld) [1875995]
+- [kernel] sched/fair: Fix kernel build warning in test_idle_cores() for !SMT NUMA (Phil Auld) [1875995]
+- [kernel] sched/numa: Acquire RCU lock for checking idle cores during NUMA balancing (Phil Auld) [1875995]
+- [kernel] sched/numa: Stop an exhastive search if a reasonable swap candidate or idle CPU is found (Phil Auld) [1875995]
+- [kernel] sched/numa: Bias swapping tasks based on their preferred node (Phil Auld) [1875995]
+- [kernel] sched/numa: Find an alternative idle CPU if the CPU is part of an active NUMA balance (Phil Auld) [1875995]
+- [kernel] sched/numa: Prefer using an idle CPU as a migration target instead of comparing tasks (Phil Auld) [1875995]
+- [kernel] sched/fair: Take into account runnable_avg to classify group (Phil Auld) [1875995]
+- [kernel] sched/pelt: Add a new runnable average signal (Phil Auld) [1875995]
+- [kernel] sched/pelt: Remove unused runnable load average (Phil Auld) [1875995]
+- [kernel] sched: Disable allowing small imbalance to preserve RHEL performance (Phil Auld) [1875995]
+- [kernel] sched/numa: Use similar logic to the load balancer for moving between domains with spare capacity (Phil Auld) [1875995]
+- [kernel] sched/numa: Replace runnable_load_avg by load_avg (Phil Auld) [1875995]
+- [kernel] sched/numa: Distinguish between the different task_numa_migrate() failure cases (Phil Auld) [1875995]
+- [kernel] sched/numa: Trace when no candidate CPU was found on the preferred node (Phil Auld) [1875995]
+- [kernel] sched/fair: Allow a small load imbalance between low utilisation SD_NUMA domains (Phil Auld) [1875995]
+- [mm] powerpc/smp: Implement cpu_to_coregroup_id (Diego Domingos) [1854541]
+- [powerpc] powerpc/smp: Create coregroup domain (Diego Domingos) [1854541]
+- [powerpc] powerpc/smp: Allocate cpumask only after searching thread group (Diego Domingos) [1854541]
+- [powerpc] powerpc/numa: Detect support for coregroup (Diego Domingos) [1854541]
+- [powerpc] powerpc/smp: Optimize start_secondary (Diego Domingos) [1854541]
+- [powerpc] powerpc/smp: Dont assume l2-cache to be superset of sibling (Diego Domingos) [1854541]
+- [powerpc] powerpc/smp: Move topology fixups into a new function (Diego Domingos) [1854541]
+- [powerpc] powerpc/smp: Move powerpc_topology above (Diego Domingos) [1854541]
+- [powerpc] powerpc/smp: Merge Power9 topology with Power topology (Diego Domingos) [1854541]
+- [powerpc] powerpc/smp: Fix a warning under !NEED_MULTIPLE_NODES (Diego Domingos) [1854541]
+- [mm] powerpc/numa: Restrict possible nodes based on platform (Diego Domingos) [1854541]
+- [mm] powerpc/numa: Limit possible nodes to within num_possible_nodes (Diego Domingos) [1854541]
+- [powerpc] powerpc: Fix misleading small cores print (Diego Domingos) [1854541]
+- [netdrv] ibmvnic: add missing parenthesis in do_reset() (Steve Best) [1879547]
+- [wireless] rtw88: don't hold all IRQs disabled for PS operations (Jarod Wilson) [1874730]
+- [netdrv] ibmvnic fix NULL tx_pools and rx_tools issue at do_reset (Steve Best) [1872676]
+
+* Fri Oct 02 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.2.el8]
+- [kernel] sched: Fix use of count for nr_running tracepoint (Phil Auld) [1861444]
+- [kernel] sched: Add a tracepoint to track rq->nr_running (Phil Auld) [1861444]
+- [kernel] sched/debug: Add new tracepoints to track util_est (Phil Auld) [1861444]
+- [kernel] sched/debug: Export the newly added tracepoints (Phil Auld) [1861444]
+- [kernel] sched/debug: Add sched_overutilized tracepoint (Phil Auld) [1861444]
+- [kernel] sched/debug: Add new tracepoint to track PELT at se level (Phil Auld) [1861444]
+- [kernel] sched/debug: Add a new sched_trace_*() helper functions (Phil Auld) [1861444]
+- [kernel] sched/autogroup: Make autogroup_path() always available (Phil Auld) [1861444]
+
+* Tue Sep 29 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-240.1.el8]
+- [mm] mm/kmemleak.c: fix check for softirq context (Waiman Long) [1878006]
+- [include] mm/hotplug: invalid PFNs from pfn_to_online_page() (Waiman Long) [1878006]
+- [mm] mm, kmemleak: little optimization while scanning (Waiman Long) [1878006]
+- [mm] kmemleak: add module param to print warnings to dmesg (Waiman Long) [1878006]
+- [mm] kmemleak: always register debugfs file (Waiman Long) [1878006]
+- [scsi] scsi: megaraid_sas: Don't call disable_irq from process IRQ poll (Tomas Henzl) [1837200]
+- [scsi] scsi: megaraid_sas: Remove undefined ENABLE_IRQ_POLL macro (Tomas Henzl) [1837200]
+- [platform] platform/x86: dcdbas: Check SMBIOS for protected buffer address (David Arcari) [1858680]
+- [platform] firmware: dcdbas: Move dcdbas to drivers/platform/x86 (David Arcari) [1858680]
+- [fs] cifs: fix DFS mount with cifsacl/modefromsid (Leif Sahlberg) [1871246]
+- [fs] ext4: fix potential negative array index in do_split() (Pavel Reichl) [1846165] {CVE-2020-14314}
+- [include] block: allow for_each_bvec to support zero len bvec (Ming Lei) [1872032]
+- [nvme] nvme-pci: disable the write zeros command for Intel 600P/P3100 (David Milburn) [1875391]
+
+* Wed Sep 23 2020 Jan Stancek <jstancek@redhat.com> [4.18.0-239.1.el8]
+- [netdrv] ice: Disable VLAN pruning in promiscuous mode (Jonathan Toppins) [1787477]
+- [mm] mm: slub: introduce 'slub_merge' kernel parameter (Rafael Aquini) [1871214]
+- [kernel] time/tick-broadcast: Fix tick_broadcast_offline() lockdep complaint (Alexey Klimov) [1877380]
+
+* Sat Sep 19 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-239.el8]
+- [init] init/Kconfig: disable io_uring (Jeff Moyer) [1879754]
+- [block] blk-mq: always allow reserved allocation in hctx_may_queue (Ming Lei) [1740874]
+- [nvme] nvme-rdma: Avoid double freeing of async event data (Gopal Tiwari) [1878140]
+- [kernel] printk: queue wake_up_klogd irq_work only if per-CPU areas are ready (Igor Mammedov) [1867022]
+
+* Thu Sep 17 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-238.el8]
+- [firmware] efi: don't reserve MOK config table memory region (Kairui Song) [1878584]
+- [fs] xfs: fix boundary test in xfs_attr_shortform_verify (Eric Sandeen) [1875316] {CVE-2020-14385}
+- [powerpc] powerpc/pseries: Do not initiate shutdown when system is running on UPS (Diego Domingos) [1870477]
+
+* Tue Sep 15 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-237.el8]
+- [fs] nfsd: avoid a NULL dereference in __cld_pipe_upcall() (Scott Mayhew) [1847225]
+- [net] packet: fix overflow in tpacket_rcv (Hangbin Liu) [1876224] {CVE-2020-14386}
+- [net] packet: make tp_drops atomic (Hangbin Liu) [1876224] {CVE-2020-14386}
+- [net] espintcp: restore IP CB before handing the packet to xfrm (Sabrina Dubroca) [1868201]
+- [fs] Revert "NFSv4: Handle NFS4ERR_OLD_STATEID in CLOSE/OPEN_DOWNGRADE" (Benjamin Coddington) [1865978]
+- [fs] Revert "NFSv4.x recover from pre-mature loss of openstateid" (Benjamin Coddington) [1865978]
+- [infiniband] RDMA/mlx4: Read pkey table length instead of hardcoded value (Alaa Hleihel) [1853564]
+- [net] net/smc: set rx_off for SMCR explicitly (Philipp Rudo) [1875833]
+- [drm] drm/i915: Auto detect DPCD backlight support by default (Lyude Paul) [1872381]
+- [drm] drm/i915: Fix DPCD register order in intel_dp_aux_enable_backlight() (Lyude Paul) [1872381]
+- [drm] drm/i915: Assume 100 brightness when not in DPCD control mode (Lyude Paul) [1872381]
+- [drm] drm/i915: Fix eDP DPCD aux max backlight calculations (Lyude Paul) [1872381]
+- [kernel] tracing: Define MCOUNT_INSN_SIZE when not defined without direct calls (Jiri Olsa) [1857599]
+- [kernel] ftrace: Fix function_graph tracer interaction with BPF trampoline (Jiri Olsa) [1857599]
+- [x86] x86/function_graph: Simplify with function_graph_enter() (Jiri Olsa) [1857599]
+- [kernel] function_graph: Create function_graph_enter() to consolidate architecture code (Jiri Olsa) [1857599]
+
+* Wed Sep 09 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-236.el8]
+- [crypto] pefile: Support multiple signatures in verify_pefile_signature (Lenny Szubowicz) [1862072]
+- [security] integrity: Load certs from the EFI MOK config table (Lenny Szubowicz) [1868306]
+- [security] integrity: Move import of MokListRT certs to a separate routine (Lenny Szubowicz) [1868306]
+- [firmware] efi: Support for MOK variable config table (Lenny Szubowicz) [1868306]
+- [kernel] Move to dual-signing to split signing keys up better (Frantisek Hrbata) [1837434] {CVE-2020-10713}
+- [powerpc] pseries/hotplug-cpu: wait indefinitely for vCPU death (Michael Roth) [1856588]
+- [powerpc] kvm: ppc: book3s hv: Rework secure mem slot dropping (Michael Roth) [1851259]
+- [powerpc] kvm: ppc: book3s hv: Move kvmppc_svm_page_out up (Michael Roth) [1851259]
+- [powerpc] kvm: ppc: book3s hv: Migrate hot plugged memory (Michael Roth) [1851259]
+- [powerpc] kvm: ppc: book3s hv: In H_SVM_INIT_DONE, migrate remaining normal-GFNs to secure-GFNs (Michael Roth) [1851259]
+- [powerpc] kvm: ppc: book3s hv: Track the state GFNs associated with secure VMs (Michael Roth) [1851259]
+- [powerpc] kvm: ppc: book3s hv: Disable page merging in H_SVM_INIT_START (Michael Roth) [1851259]
+- [powerpc] kvm: ppc: book3s hv: Fix function definition in book3s_hv_uvmem.c (Michael Roth) [1851259]
+- [kernel] mmap locking api: initial implementation as rwsem wrappers (Michael Roth) [1851259]
+- [mm] handle multiple owners of device private pages in migrate_vma (Michael Roth) [1851259]
+- [mm] migrate.c: clean up useless code in migrate_vma_collect_pmd() (Michael Roth) [1851259]
+- [mm] remove the unused MIGRATE_PFN_DEVICE flag (Michael Roth) [1851259]
+- [powerpc] rhel: powerpc: kvm: Increase HDEC threshold to enter guest (David Gibson) [1733467]
+- [netdrv] r8152: Add macpassthru support for ThinkPad Thunderbolt 3 Dock Gen 2 (Michal Schmidt) [1851966]
+- [fs] ceph: fix inode number handling on arches with 32-bit ino_t (Jeff Layton) [1869679]
+- [fs] ceph: don't allow setlease on cephfs (Jeff Layton) [1872382]
+- [block] blk-mq: order adding requests to hctx->dispatch and checking SCHED_RESTART (Ming Lei) [1859628]
+
+* Thu Sep 03 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-235.el8]
+- [s390] scsi: zfcp: Move allocation of the shost object to after xconf- and xport-data (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: Fence early sysfs interfaces for accesses of shost objects (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: Fence adapter status propagation for common statuses (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: Move p-t-p port allocation to after xport data (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: Fence fc_host updates during link-down handling (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: Move fc_host updates during xport data handling into fenced function (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: Move shost updates during xconfig data handling into fenced function (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: Move shost modification after QDIO (re-)open into fenced function (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: fix fc_host attributes that should be unknown on local link down (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: wire previously driver-specific sysfs attributes also to fc_host (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: expose fabric name as common fc_host sysfs attribute (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: add diagnostics buffer for exchange config data (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: diagnostics buffer caching and use for exchange port data (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: signal incomplete or error for sync exchange config/port data (Claudio Imbrenda) [1872799]
+- [s390] scsi: zfcp: Fix use-after-free in request timeout handlers (Claudio Imbrenda) [1872796]
+- [tools] selftests/powerpc: Update the stack expansion test (Gustavo Duarte) [1869755]
+- [mm] powerpc: Allow 4224 bytes of stack expansion for the signal frame (Gustavo Duarte) [1869755]
+- [tools] selftests/powerpc: Add test of stack expansion logic (Gustavo Duarte) [1869755]
+- [mm] mm: check that mm is still valid in madvise() (Jeff Moyer) [1874560]
+- [block] block: virtio_blk: fix handling single range discard request (Ming Lei) [1842035]
+- [block] block: respect queue limit of max discard segment (Ming Lei) [1842035]
+- [fs] io_uring: Fix NULL pointer dereference in loop_rw_iter() (Jeff Moyer) [1854649]
+- [fs] io_uring: return locked and pinned page accounting (Jeff Moyer) [1854649]
+- [fs] io_uring: always allow drain/link/hardlink/async sqe flags (Jeff Moyer) [1854649]
+- [fs] io_uring: ensure double poll additions work with both request types (Jeff Moyer) [1854649]
+- [fs] io_uring: fix recvmsg memory leak with buffer selection (Jeff Moyer) [1854649]
+- [fs] io_uring: fix missing msg_name assignment (Jeff Moyer) [1854649]
+- [fs] io_uring: fix memleak in io_sqe_files_register() (Jeff Moyer) [1854649]
+- [fs] io_uring: account user memory freed when exit has been queued (Jeff Moyer) [1854649]
+- [fs] io_uring: fix memleak in __io_sqe_files_update() (Jeff Moyer) [1854649]
+- [fs] io_uring: fix regression with always ignoring signals in io_cqring_wait() (Jeff Moyer) [1854649]
+- [fs] io_uring: use signal based task_work running (Jeff Moyer) [1854649]
+- [kernel] task_work: teach task_work_add() to do signal_wake_up() (Jeff Moyer) [1854649]
+- [fs] io_uring: fix missing ->mm on exit (Jeff Moyer) [1854649]
+- [fs] io_uring: fix potential use after free on fallback request free (Jeff Moyer) [1854649]
+- [fs] io_uring: fix req->work corruption (Jeff Moyer) [1854649]
+- [fs] io_uring: fix NULL-mm for linked reqs (Jeff Moyer) [1854649]
+- [fs] io_uring: fix current->mm NULL dereference on exit (Jeff Moyer) [1854649]
+- [fs] io_uring: fix hanging iopoll in case of -EAGAIN (Jeff Moyer) [1854649]
+- [fs] io_uring: fix io_sq_thread no schedule when busy (Jeff Moyer) [1854649]
+- [fs] io_uring: fix possible race condition against REQ_F_NEED_CLEANUP (Jeff Moyer) [1854649]
+- [fs] io_uring: reap poll completions while waiting for refs to drop on exit (Jeff Moyer) [1854649]
+- [fs] io_uring: acquire 'mm' for task_work for SQPOLL (Jeff Moyer) [1854649]
+- [fs] io_uring: add memory barrier to synchronize io_kiocb's result and iopoll_completed (Jeff Moyer) [1854649]
+- [fs] io_uring: don't fail links for EAGAIN error in IOPOLL mode (Jeff Moyer) [1854649]
+- [fs] io_uring: fix io_kiocb.flags modification race in IOPOLL mode (Jeff Moyer) [1854649]
+- [fs] io_uring: allow O_NONBLOCK async retry (Jeff Moyer) [1854649]
+- [fs] io_uring: use kvfree() in io_sqe_buffer_register() (Jeff Moyer) [1854649]
+- [fs] io_uring: validate the full range of provided buffers for access (Jeff Moyer) [1854649]
+- [fs] io_uring: re-set iov base/len for buffer select retry (Jeff Moyer) [1854649]
+- [fs] io_uring: fix {SQ, IO}POLL with unsupported opcodes (Jeff Moyer) [1854649]
+- [fs] io_uring: disallow close of ring itself (Jeff Moyer) [1854649]
+- [fs] io_uring: fix overflowed reqs cancellation (Jeff Moyer) [1854649]
+- [fs] io_uring: fix flush req->refs underflow (Jeff Moyer) [1854649]
+- [fs] io_uring: async task poll trigger cleanup (Jeff Moyer) [1854649]
+- [fs] io_uring: allow POLL_ADD with double poll_wait() users (Jeff Moyer) [1854649]
+- [fs] io_uring: remove 'fd is io_uring' from close path (Jeff Moyer) [1854649]
+- [nvme] nvme: allow retry for requests with REQ_FAILFAST_TRANSPORT set (Mike Snitzer) [1843515]
+- [nvme] nvme: decouple basic ANA log page re-read support from native multipathing (Mike Snitzer) [1843515]
+- [nvme] nvme: update failover handling to work with REQ_FAILFAST_TRANSPORT (Mike Snitzer) [1843515]
+- [nvme] nvme: Return BLK_STS_TARGET if the DNR bit is set (Mike Snitzer) [1843515]
+- [nvme] nvme: redirect commands on dying queue (Mike Snitzer) [1843515]
+- [nvme] nvme: just check the status code type in nvme_is_path_error (Mike Snitzer) [1843515]
+- [nvme] nvme: refactor command completion (Mike Snitzer) [1843515]
+- [nvme] nvme-multipath: do not reset on unknown status (Mike Snitzer) [1843515]
+- [nvme] Revert "nvme: allow ANA support to be independent of native multipathing" (Mike Snitzer) [1843515]
+- [nvme] Revert "nvme-multipath: do not reset on unknown status" (Mike Snitzer) [1843515]
+- [mm] mm, THP, swap: fix allocating cluster for swapfile by mistake (Gao Xiang) [1855474]
+- [net] sched: act_ct: Fix skb double-free in tcf_ct_handle_fragments() error flow (Marcelo Leitner) [1866391]
+- [net] netfilter: conntrack: allow sctp hearbeat after connection re-use (Florian Westphal) [1865798]
+- [video] vgacon: Fix for missing check in scrollback handling (Lyude Paul) [1859472] {CVE-2020-14331}
+- [scsi] Revert "scsi: qla2xxx: Disable T10-DIF feature with FC-NVMe during probe" (Nilesh Javali) [1866744]
+- [scsi] Revert "scsi: qla2xxx: Fix crash on qla2x00_mailbox_command" (Nilesh Javali) [1866744]
+- [scsi] scsi: qla2xxx: Fix null pointer access during disconnect from subsystem (Nilesh Javali) [1866744]
+- [scsi] scsi: qla2xxx: Check if FW supports MQ before enabling (Nilesh Javali) [1866744]
+- [scsi] scsi: qla2xxx: Fix WARN_ON in qla_nvme_register_hba (Nilesh Javali) [1866744]
+- [scsi] scsi: qla2xxx: Allow ql2xextended_error_logging special value 1 to be set anytime (Nilesh Javali) [1866744]
+- [scsi] scsi: qla2xxx: Reduce noisy debug message (Nilesh Javali) [1866744]
+- [scsi] scsi: qla2xxx: Fix login timeout (Nilesh Javali) [1866744]
+- [scsi] scsi: qla2xxx: Flush I/O on zone disable (Nilesh Javali) [1866744]
+- [scsi] scsi: qla2xxx: Flush all sessions on zone disable (Nilesh Javali) [1866744]
+- [tools] bpf: selftests: global_funcs: Check err_str before strstr (Yauheni Kaliuta) [1873163]
+- [netdrv] net/mlx5e: E-Switch, Specify flow_source for rule with no in_port (Alaa Hleihel) [1869602]
+- [netdrv] net/mlx5e: E-Switch, Add misc bit when misc fields changed for mirroring (Alaa Hleihel) [1869602]
+- [tools] selftests/bpf: test for map update access from within EXT programs (=?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?=) [1871071]
+- [tools] selftests/bpf: test for checking return code for the extended prog (=?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?=) [1871071]
+- [tools] selftests/bpf: Add test for freplace program with write access (=?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?=) [1871071]
+- [net] bpf: verifier: use target program's type for access verifications (=?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?=) [1871071]
+- [scsi] scsi: lpfc: Fix NVMe rport deregister and registration during ADISC (Dick Kennedy) [1871223]
+- [scsi] scsi: lpfc: Fix LUN loss after cable pull (Dick Kennedy) [1871223]
+- [infiniband] RDMA/bnxt_re: Do not add user qps to flushlist (Selvin Xavier) [1858674]
+- [fs] NFSv4.0 allow nconnect for v4.0 (Benjamin Coddington) [1842746]
+- [mm] mm/vunmap: add cond_resched() in vunmap_pmd_range (Rafael Aquini) [1871710]
+- [s390] s390/bpf: Maintain 8-byte stack alignment (Jiri Olsa) [1871040]
+
+* Thu Aug 20 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-234.el8]
+- [netdrv] vrf: Fix IPv6 with qdisc and xfrm (Sabrina Dubroca) [1868565]
+- [netdrv] vrf: make sure skb->data contains ip header to make routing (Sabrina Dubroca) [1868565]
+- [netdrv] vrf: Check skb for XFRM_TRANSFORMED flag (Sabrina Dubroca) [1868565]
+- [net] Do not clear the sock TX queue in sk_set_socket() (Andrea Claudi) [1850421]
+- [net] Use RCU_INIT_POINTER() to set sk_wq (Andrea Claudi) [1850421]
+- [net] netfilter: ip6tables: Add a .pre_exit hook in all ip6table_foo.c. (Florian Westphal) [1862384]
+- [net] netfilter: iptables: Add a .pre_exit hook in all iptable_foo.c. (Florian Westphal) [1862384]
+- [net] netfilter: ipset: Fix an error code in ip_set_sockfn_get() (Florian Westphal) [1862384]
+- [net] netfilter: nft_set_rbtree: Don't account for expired elements on insertion (Florian Westphal) [1862384]
+- [net] netfilter: nft_set_rbtree: Drop spurious condition for overlap detection on insertion (Florian Westphal) [1862384]
+- [net] netfilter: nft_set_rbtree: Detect partial overlaps on insertion (Florian Westphal) [1862384]
+- [net] netfilter: nft_set_rbtree: Introduce and use nft_rbtree_interval_start() (Florian Westphal) [1862384]
+- [net] netfilter: nf_tables: fix nat hook table deletion (Florian Westphal) [1862384]
+- [net] netfilter: ipset: call ip_set_free() instead of kfree() (Florian Westphal) [1862384]
+- [net] netfilter: ip6tables: Split ip6t_unregister_table() into pre_exit and exit helpers. (Florian Westphal) [1862384]
+- [net] netfilter: iptables: Split ipt_unregister_table() into pre_exit and exit helpers. (Florian Westphal) [1862384]
+- [net] netfilter: nft_set_pipapo: Disable preemption before getting per-CPU pointer (Florian Westphal) [1862384]
+- [net] netfilter: nft_nat: return EOPNOTSUPP if type or flags are not supported (Florian Westphal) [1862384]
+- [net] netfilter: conntrack: comparison of unsigned in cthelper confirmation (Florian Westphal) [1862384]
+- [net] netfilter: conntrack: refetch conntrack after nf_conntrack_update() (Florian Westphal) [1862384]
+- [net] netfilter: conntrack: Pass value of ctinfo to __nf_conntrack_update (Florian Westphal) [1862384]
+- [net] netfilter: conntrack: make conntrack userspace helpers work again (Florian Westphal) [1862384]
+- [net] netfilter: nfnetlink_cthelper: unbreak userspace helper support (Florian Westphal) [1862384]
+- [net] netfilter: nf_conntrack_pptp: fix compilation warning with W=1 build (Florian Westphal) [1862384]
+- [net] netfilter: nf_conntrack_pptp: prevent buffer overflows in debug code (Florian Westphal) [1862384]
+- [net] netfilter: nft_set_bitmap: initialize set element extension in lookups (Florian Westphal) [1862384]
+- [net] netfilter: nft_fwd_netdev: validate family and chain type (Florian Westphal) [1862384]
+- [net] netfilter: nft_payload: add missing attribute validation for payload csum flags (Florian Westphal) [1862384]
+- [net] netfilter: cthelper: add missing attribute validation for cthelper (Florian Westphal) [1862384]
+- [net] netfilter: ipset: Fix forceadd evaluation path (Florian Westphal) [1862384]
+- [net] netfilter: bridge: make sure to pull arp header in br_nf_forward_arp() (Florian Westphal) [1862384]
+- [net] netfilter: nft_set_rbtree: bogus lookup/get on consecutive elements in named sets (Florian Westphal) [1862384]
+- [net] netfilter: ctnetlink: netns exit must wait for callbacks (Florian Westphal) [1862384]
+- [arm64] kvm: arm64: Don't inherit exec permission across page-table levels (Andrew Jones) [1869297]
+- [arm64] kvm: arm64: Flush the instruction cache if not unmapping the VM on reboot (Andrew Jones) [1869297]
+- [s390] s390, dcssblk: kaddr and pfn can be NULL to ->direct_access() (Claudio Imbrenda) [1868927]
+- [fs] chardev: Avoid potential use-after-free in 'chrdev_open()' (Vladis Dronov) [1866324] {CVE-2020-0305}
+- [net] net: accept an empty mask in /sys/class/net/*/queues/rx-*/rps_cpus (Nitesh Narayan Lal) [1868433]
+- [x86] Revert "x86/intel: Disable HPET on Intel Ice Lake platforms" (David Arcari) [1868405]
+- [kernel] sched: Fix race against ptrace_freeze_trace() (Oleg Nesterov) [1862560]
+- [kernel] sched: Fix loadavg accounting race (Oleg Nesterov) [1862560]
+- [kernel] kernel/sched/: remove caller signal_pending branch predictions (Oleg Nesterov) [1862560]
+- [kernel] locking/spinlock, sched/core: Clarify requirements for smp_mb__after_spinlock() (Oleg Nesterov) [1862560]
+- [nvme] nvme: multipath: round-robin: eliminate "fallback" variable (Gopal Tiwari) [1868443]
+- [nvme] nvme: multipath: round-robin: fix single non-optimized path case (Gopal Tiwari) [1868443]
+- [nvme] nvme-multipath: do not fall back to __nvme_find_path() for non-optimized paths (Gopal Tiwari) [1868443]
+- [nvme] nvme-multipath: fix logic for non-optimized paths (Gopal Tiwari) [1868443]
+- [tools] selftests/bpf: Fix segmentation fault in test_progs (Yauheni Kaliuta) [1868494]
+- [pci] hv: Fix a timing issue which causes kdump to fail occasionally (Mohammed Gamal) [1861960]
+- [hv] hv: vmbus: Only notify Hyper-V for die events that are oops (Vitaly Kuznetsov) [1868131]
+- [x86] kvm: nsvm: Correctly set the shadow NPT root level in its MMU role (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: x86: drop superfluous mmu_check_root() from fast_pgd_switch() (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: nsvm: use nested_svm_load_cr3() on guest->host switch (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: nsvm: implement nested_svm_load_cr3() and use it for host->guest switch (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: nsvm: move kvm_set_cr3() after nested_svm_uninit_mmu_context() (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: nsvm: introduce nested_svm_load_cr3()/nested_npt_enabled() (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: nsvm: prepare to handle errors from enter_svm_guest_mode() (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: nsvm: reset nested_run_pending upon nested_svm_vmrun_msrpm() failure (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: mmu: stop dereferencing vcpu->arch.mmu to get the context for MMU init (Vitaly Kuznetsov) [1845507]
+- [x86] kvm: nsvm: split kvm_init_shadow_npt_mmu() from kvm_init_shadow_mmu() (Vitaly Kuznetsov) [1845507]
+- [security] selinux: compute genfs symlink context in case of CephFS (Ondrej Mosnacek) [1865800]
+- [fs] ceph: set sec_context xattr on symlink creation (Ondrej Mosnacek) [1861509]
+- [tools] selftests: bpf: define SO_RCVTIMEO and SO_SNDTIMEO properly for ppc64le (Jiri Benc) [1860386]
+- [tools] bpf: Sync RHEL version of asm-generic/socket.h to tools/ (Jiri Benc) [1860386]
+- [tools] selftests: bpf: skip tests not working on RHEL (Jiri Benc) [1866908]
+- [tools] Revert "selftests: bpf: disable test_lwt_seg6local" (Jiri Benc) [1866908]
+- [tools] Revert "bpf: selftests: remove test_bpftool_build.sh from TEST_PROGS" (Jiri Benc) [1866908]
+- [tools] selftests: add option to skip specific tests in RHEL (Jiri Benc) [1866908]
+- [tools] selftests: bpf: switch off timeout (Jiri Benc) [1866908]
+- [tools] selftest/firmware: Add selftest timeout in settings (Jiri Benc) [1866908]
+- [tools] selftests/harness: Limit step counter reporting (Jiri Benc) [1866908]
+- [tools] selftests/harness: Clean up kern-doc for fixtures (Jiri Benc) [1866908]
+- [tools] selftests: fix condition in run_tests (Jiri Benc) [1866908]
+- [tools] selftests: do not use .ONESHELL (Jiri Benc) [1866908]
+- [tools] selftests/harness: Report skip reason (Jiri Benc) [1866908]
+- [tools] selftests/harness: Display signed values correctly (Jiri Benc) [1866908]
+- [tools] selftests/harness: Refactor XFAIL into SKIP (Jiri Benc) [1866908]
+- [tools] selftests/harness: Switch to TAP output (Jiri Benc) [1866908]
+- [tools] selftests: Add header documentation and helpers (Jiri Benc) [1866908]
+- [tools] kselftest: fix TAP output for skipped tests (Jiri Benc) [1866908]
+- [tools] kselftest: ksft_test_num return type should be unsigned (Jiri Benc) [1866908]
+- [tools] selftests: introduce gen_tar Makefile target (Jiri Benc) [1866908]
+- [tools] kselftest: add fixture variants (Jiri Benc) [1866908]
+- [tools] kselftest: run tests by fixture (Jiri Benc) [1866908]
+- [tools] kselftest: create fixture objects (Jiri Benc) [1866908]
+- [tools] kselftest: factor out list manipulation to a helper (Jiri Benc) [1866908]
+- [tools] selftests: add build/cross-build dependency check script (Jiri Benc) [1866908]
+- [tools] kselftest/runner: allow to properly deliver signals to tests (Jiri Benc) [1866908]
+- [tools] selftests/harness: fix spelling mistake "SIGARLM" -> "SIGALRM" (Jiri Benc) [1866908]
+- [tools] selftests: enforce local header dependency in lib.mk (Jiri Benc) [1866908]
+- [tools] selftests/harness: Handle timeouts cleanly (Jiri Benc) [1866908]
+- [tools] selftests/harness: Move test child waiting logic (Jiri Benc) [1866908]
+- [tools] selftests: Fix kselftest O=objdir build from cluttering top level objdir (Jiri Benc) [1866908]
+- [tools] selftests: allow detection of build failures (Jiri Benc) [1866908]
+- [tools] selftests: fix build behaviour on targets' failures (Jiri Benc) [1866908]
+- [tools] kselftest: Support old perl versions (Jiri Benc) [1866908]
+- [tools] kselftest/runner: Print new line in print of timeout log (Jiri Benc) [1866908]
+- [tools] selftests: Fix dangling documentation references to kselftest_module.sh (Jiri Benc) [1866908]
+- [tools] kselftest: Fix NULL INSTALL_PATH for TARGETS runlist (Jiri Benc) [1866908]
+- [tools] selftests: Move kselftest_module.sh into kselftest/ (Jiri Benc) [1866908]
+- [tools] selftests: gen_kselftest_tar.sh: Do not clobber kselftest/ (Jiri Benc) [1866908]
+- [tools] selftests/kselftest/runner.sh: Add 45 second timeout per test (Jiri Benc) [1866908]
+- [tools] kselftest: exclude failed TARGETS from runlist (Jiri Benc) [1866908]
+- [tools] kselftest: add capability to skip chosen TARGETS (Jiri Benc) [1866908]
+- [tools] selftests: Add kselftest-all and kselftest-install targets (Jiri Benc) [1866908]
+- [tools] selftests: use "$(MAKE)" instead of "make" (Jiri Benc) [1866908]
+- [tools] kselftest: save-and-restore errno to allow for m formatting (Jiri Benc) [1866908]
+- [tools] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 481 (Jiri Benc) [1866908]
+- [tools] selftests/harness: Allow test to configure timeout (Jiri Benc) [1866908]
+- [tools] selftests: avoid KBUILD_OUTPUT dir cluttering with selftest objects (Jiri Benc) [1866908]
+- [tools] selftests: fix bpf build/test workflow regression when KBUILD_OUTPUT is set (Jiri Benc) [1866908]
+- [tools] selftests: fix install target to use default install path (Jiri Benc) [1866908]
+- [tools] selftests: build and run gpio when output directory is the src dir (Jiri Benc) [1866908]
+- [documentation] doc: kselftest: Fix KBUILD_OUTPUT usage instructions (Jiri Benc) [1866908]
+- [tools] selftests: fix headers_install circular dependency (Jiri Benc) [1866908]
+- [tools] selftests/harness: Add 30 second timeout per test (Jiri Benc) [1866908]
+- [tools] kselftest: Add test module framework header (Jiri Benc) [1866908]
+- [tools] kselftest: Add test runner creation script (Jiri Benc) [1866908]
+- [tools] selftests/harness: Update named initializer syntax (Jiri Benc) [1866908]
+- [tools] selftest: include stdio.h in kselftest.h (Jiri Benc) [1866908]
+- [tools] selftests: do not macro-expand failed assertion expressions (Jiri Benc) [1866908]
+- [documentation] Documentation/dev-tools: clean up kselftest.rst (Jiri Benc) [1866908]
+- [documentation] doc: dev-tools: kselftest.rst: update config file location (Jiri Benc) [1866908]
+- [documentation] doc: dev-tools: kselftest.rst: update contributing new tests (Jiri Benc) [1866908]
+
+* Tue Aug 18 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-233.el8]
+- [fs] nfs: ensure correct writeback errors are returned on close() (Scott Mayhew) [1849424]
+- [netdrv] net: thunderx: use spin_lock_bh in nicvf_set_rx_mode_task() (Dean Nelson) [1824858]
+- [crypto] crypto: ecc - SP800-56A rev 3 local public key validation (Herbert Xu) [1855817]
+- [crypto] crypto: dh - SP800-56A rev 3 local public key validation (Herbert Xu) [1855817]
+- [crypto] crypto: dh - check validity of Z before export (Herbert Xu) [1855817]
+- [lib] lib/mpi: Add mpi_sub_ui() (Herbert Xu) [1855817]
+- [crypto] crypto: ecdh - check validity of Z before export (Herbert Xu) [1855817]
+- [netdrv] net: thunderx: initialize VF's mailbox mutex before first usage (Dean Nelson) [1866827]
+- [kernel] timers: Lower base clock forwarding threshold (Phil Auld) [1833096]
+- [kernel] timers: Remove must_forward_clk (Phil Auld) [1833096]
+- [kernel] timers: Spare timer softirq until next expiry (Phil Auld) [1833096]
+- [kernel] timers: Expand clk forward logic beyond nohz (Phil Auld) [1833096]
+- [kernel] timers: Reuse next expiry cache after nohz exit (Phil Auld) [1833096]
+- [kernel] timers: Always keep track of next expiry (Phil Auld) [1833096]
+- [kernel] timers: Optimize _next_timer_interrupt() level iteration (Phil Auld) [1833096]
+- [kernel] timers: Add comments about calc_index() ceiling work (Phil Auld) [1833096]
+- [kernel] timers: Move trigger_dyntick_cpu() to enqueue_timer() (Phil Auld) [1833096]
+- [kernel] timers: Use only bucket expiry for base->next_expiry value (Phil Auld) [1833096]
+- [kernel] timers: Preserve higher bits of expiration on index calculation (Phil Auld) [1833096]
+- [kernel] timer: Fix wheel index calculation on last level (Phil Auld) [1833096]
+- [kernel] timer: Prevent base->clk from moving backward (Phil Auld) [1833096]
+- [kernel] timer: Read jiffies once when forwarding base clk (Phil Auld) [1833096]
+- [powerpc] powerpc/64: Update Speculation_Store_Bypass in /proc/<pid>/status (Gustavo Duarte) [1773868]
+- [scsi] scsi: virtio-scsi: Correctly handle the case where all LUNs are unplugged (Maxim Levitsky) [1756093]
+- [kvm] kvm: x86: replace kvm_spec_ctrl_test_value with runtime test on the host (Maxim Levitsky) [1853447]
+- [kvm] x86/kvm: Move context tracking where it belongs (Nitesh Narayan Lal) [1854011]
+- [scsi] scsi: megaraid_sas: Clear affinity hint (Tomas Henzl) [1828351]
+- [netdrv] revert "vxlan: fix tos value before xmit" (Andrea Claudi) [1862166]
+- [net] udp: Copy has_conns in reuseport_grow(). (Marcelo Leitner) [1867160]
+- [net] dev: Defer free of skbs in flush_backlog (Marcelo Leitner) [1867160]
+- [include] net: core: reduce recursion limit value (Marcelo Leitner) [1867160]
+- [netdrv] pppoe: only process PADT targeted at local interfaces (Andrea Claudi) [1866850]
+- [net] espintcp: count packets dropped in espintcp_rcv (Sabrina Dubroca) [1866393]
+- [net] espintcp: handle short messages instead of breaking the encap socket (Sabrina Dubroca) [1866393]
+- [net] espintcp: recv() should return 0 when the peer socket is closed (Sabrina Dubroca) [1866393]
+- [net] espintcp: support non-blocking sends (Sabrina Dubroca) [1866393]
+- [net] mptcp: be careful on subflow creation (Davide Caratti) [1862200]
+- [net] mptcp: fix bogus sendmsg() return code under pressure (Davide Caratti) [1862200]
+- [net] mptcp: fix joined subflows with unblocking sk (Davide Caratti) [1862200]
+- [net] subflow: explicitly check for plain tcp rsk (Davide Caratti) [1862200]
+- [net] mptcp: silence warning in subflow_data_ready() (Davide Caratti) [1862200]
+- [net] mptcp: fix race in subflow_data_ready() (Davide Caratti) [1862200]
+- [net] mptcp: fix memory leak in mptcp_subflow_create_socket() (Davide Caratti) [1862200]
+- [net] mptcp: don't leak msk in token container (Davide Caratti) [1862200]
+- [net] ipv4: Silence suspicious RCU usage warning (Guillaume Nault) [1866430]
+- [net] devinet: fix memleak in inetdev_init() (Guillaume Nault) [1866430]
+- [net] ipip: fix wrong address family in init error path (Guillaume Nault) [1866430]
+- [net] inet_csk: Fix so_reuseport bind-address cache in tb->fast* (Guillaume Nault) [1866430]
+- [net] ipmr: Add lockdep expression to ipmr_for_each_table macro (Guillaume Nault) [1866430]
+- [net] ipmr: Fix RCU list debugging warning (Guillaume Nault) [1866430]
+- [net] tcp: make sure listeners don't initialize congestion-control state (Paolo Abeni) [1865904]
+- [net] sched: The error lable position is corrected in ct_init_module (Davide Caratti) [1865890]
+- [net] sched: cls_api: fix nooffloaddevcnt warning dmesg log (Davide Caratti) [1865890]
+- [net] tls: fix race condition causing kernel panic (Sabrina Dubroca) [1861756]
+- [net] tls: free record only on encryption error (Sabrina Dubroca) [1861756]
+- [net] tls: fix encryption error checking (Sabrina Dubroca) [1861756]
+- [net] l2tp: add sk_family checks to l2tp_validate_socket (Guillaume Nault) [1861453]
+- [net] l2tp: do not use inet_hash()/inet_unhash() (Guillaume Nault) [1861453]
+- [net] tipc: allow to build NACK message in link timeout function (Xin Long) [1860877]
+- [net] tipc: fix retransmission on unicast links (Xin Long) [1860877]
+- [net] tipc: fix NULL pointer dereference in tipc_disc_rcv() (Xin Long) [1860877]
+- [net] tipc: remove set but not used variable 'prev' (Xin Long) [1860877]
+- [net] tipc: call tsk_set_importance from tipc_topsrv_create_listener (Xin Long) [1860877]
+- [net] tipc: add support for broadcast rcv stats dumping (Xin Long) [1860877]
+- [net] tipc: enable broadcast retrans via unicast (Xin Long) [1860877]
+- [net] tipc: add back link trace events (Xin Long) [1860877]
+- [net] tipc: introduce Gap ACK blocks for broadcast link (Xin Long) [1860877]
+- [net] tipc: block BH before using dst_cache (Xin Long) [1860877]
+- [net] tipc: fix partial topology connection closure (Xin Long) [1860877]
+- [net] xfrm: policy: match with both mark and mask on user interfaces (Xin Long) [1854116]
+- [scsi] scsi: dh: Add Fujitsu device to devinfo and dh lists (Ewan Milne) [1861418]
+- [x86] kvm: Set KVM_SOFT_MAX_VCPUS to 1024 (Eduardo Habkost) [1856996]
+- [md] dm integrity: fix integrity recalculation that is improperly skipped (Mike Snitzer) [1860160]
+- [netdrv] ibmvnic: Fix IRQ mapping disposal in error path (Steve Best) [1867498]
+- [infiniband] IB/hfi1: Do not destroy link_wq when the device is shut down (Kamal Heib) [1858392]
+- [infiniband] IB/hfi1: Do not destroy hfi1_wq when the device is shut down (Kamal Heib) [1858392]
+- [netdrv] Revert "net/broadcom: Clean broadcom code from driver versions" (Jonathan Toppins) [1867146]
+- [net] devmap: Use bpf_map_area_alloc() for allocating hash buckets (Jiri Benc) [1842380]
+- [kernel] kexec_file: Correctly output debugging information for the PT_LOAD ELF header (Lianbo Jiang) [1861186]
+- [kernel] kexec: Improve & fix crash_exclude_mem_range() to handle overlapping ranges (Lianbo Jiang) [1861186]
+- [x86] x86/crash: Correct the address boundary of function parameters (Lianbo Jiang) [1861186]
+- [fs] ceph: handle zero-length feature mask in session messages (Jeff Layton) [1866018]
+- [s390] s390/bpf: Tolerate not converging code shrinking (Yauheni Kaliuta) [1857120]
+- [s390] s390/bpf: Use brcl for jumping to exit_ip if necessary (Yauheni Kaliuta) [1857120]
+- [s390] s390/bpf: Fix sign extension in branch_ku (Yauheni Kaliuta) [1857120]
+- [tools] selftests: bpf: test_kmod.sh: Fix running out of srctree (Yauheni Kaliuta) [1857120]
+- [lib] bpf: revert "test_bpf: Flag tests that cannot be jited on s390" (Yauheni Kaliuta) [1857120]
+- [kernel] uprobes: ensure that uprobe->offset and ->ref_ctr_offset are properly aligned (Oleg Nesterov) [1848596]
+
+* Mon Aug 10 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-232.el8]
+- [fs] nfs: nfs_file_write() should check for writeback errors (Scott Mayhew) [1852788]
+- [s390] s390/cpum_cf, perf: change DFLT_CCERROR counter name (Philipp Rudo) [1865794]
+- [net] net/smc: unique reason code for exceeded max dmb count (Philipp Rudo) [1865792]
+- [s390] s390/ism: indicate correct error reason in ism_alloc_dmb() (Philipp Rudo) [1865792]
+- [net] net/smc: fix dmb buffer shortage (Philipp Rudo) [1865792]
+- [net] net/smc: put slot when connection is killed (Philipp Rudo) [1865792]
+- [net] net/smc: fix restoring of fallback changes (Philipp Rudo) [1865792]
+- [net] net/smc: remove freed buffer from list (Philipp Rudo) [1865792]
+- [net] net/smc: do not call dma sync for unmapped memory (Philipp Rudo) [1865792]
+- [net] net/smc: fix handling of delete link requests (Philipp Rudo) [1865792]
+- [net] net/smc: move add link processing for new device into llc layer (Philipp Rudo) [1865792]
+- [net] net/smc: drop out-of-flow llc response messages (Philipp Rudo) [1865792]
+- [net] net/smc: protect smc ib device initialization (Philipp Rudo) [1865792]
+- [net] net/smc: fix link lookup for new rdma connections (Philipp Rudo) [1865792]
+- [net] net/smc: clear link during SMC client link down processing (Philipp Rudo) [1865792]
+- [net] net/smc: handle unexpected response types for confirm link (Philipp Rudo) [1865792]
+- [net] net/smc: switch smcd_dev_list spinlock to mutex (Philipp Rudo) [1865792]
+- [net] net/smc: fix sleep bug in smc_pnet_find_roce_resource() (Philipp Rudo) [1865792]
+- [net] net/smc: fix work request handling (Philipp Rudo) [1865792]
+- [net] net/smc: separate LLC wait queues for flow and messages (Philipp Rudo) [1865792]
+- [net] net/smc: pre-fetch send buffer outside of send_lock (Philipp Rudo) [1865792]
+- [nvme] nvme-fc: set max_segments to lldd max value (Ewan Milne) [1853181]
+- [powerpc] ppc64/kexec_file: enable early kernel's OPAL calls (Diego Domingos) [1829715]
+- [powerpc] ppc64/kexec_file: fix kexec load failure with lack of memory hole (Diego Domingos) [1829715]
+- [powerpc] ppc64/kexec_file: add appropriate regions for memory reserve map (Diego Domingos) [1829715]
+- [powerpc] ppc64/kexec_file: prepare elfcore header for crashing kernel (Diego Domingos) [1829715]
+- [powerpc] ppc64/kexec_file: setup backup region for kdump kernel (Diego Domingos) [1829715]
+- [powerpc] ppc64/kexec_file: restrict memory usage of kdump kernel (Diego Domingos) [1829715]
+- [mm] powerpc/drmem: make lmb walk a bit more flexible (Diego Domingos) [1829715]
+- [powerpc] ppc64/kexec_file: avoid stomping memory used by special regions (Diego Domingos) [1829715]
+- [powerpc] powerpc/kexec_file: add helper functions for getting memory ranges (Diego Domingos) [1829715]
+- [powerpc] powerpc/kexec_file: mark PPC64 specific code (Diego Domingos) [1829715]
+- [kernel] kexec_file: allow archs to handle special regions while locating memory hole (Diego Domingos) [1829715]
+- [netdrv] net/mlx5e: CT: Support restore ipv6 tunnel (Alaa Hleihel) [1862975]
+- [netdrv] ionic: unlock queue mutex in error path (Jonathan Toppins) [1854270]
+- [netdrv] ionic: use mutex to protect queue operations (Jonathan Toppins) [1854270]
+- [net] xfrm: esp6: fix the location of the transport header with encapsulation (Sabrina Dubroca) [1857653]
+- [net] ipv4: fill fl4_icmp_{type, code} in ping_v4_sendmsg (Sabrina Dubroca) [1861324]
+- [netdrv] geneve: fix an uninitialized value in geneve_changelink() (Sabrina Dubroca) [1860945]
+- [net] ip_tunnel: fix use-after-free in ip_tunnel_lookup() (Sabrina Dubroca) [1860945]
+- [netdrv] vxlan: Avoid infinite loop when suppressing NS messages with invalid options (Sabrina Dubroca) [1860945]
+- [tools] selftests: mptcp: capture pcap on both sides (Hangbin Liu) [1859880]
+- [tools] selftests/net: report etf errors correctly (Hangbin Liu) [1859880]
+- [tools] selftests: net: ip_defrag: ignore EPERM (Hangbin Liu) [1859880]
+- [tools] selftests: forwarding: pedit_dsfield: Check counter value (Hangbin Liu) [1859880]
+- [tools] selftests: net: tcp_mmap: fix SO_RCVLOWAT setting (Hangbin Liu) [1859880]
+- [tools] selftests: net: tcp_mmap: clear whole tcp_zerocopy_receive struct (Hangbin Liu) [1859880]
+- [tools] selftests: A few improvements to fib_nexthops.sh (Hangbin Liu) [1859880]
+- [tools] selftests: Add tests for vrf and xfrms (Hangbin Liu) [1859880]
+- [tools] selftests: pmtu: implement IPIP, SIT and ip6tnl PMTU discovery tests (Hangbin Liu) [1859880]
+- [tools] selftests/net/forwarding: define libs as TEST_PROGS_EXTENDED (Hangbin Liu) [1859880]
+- [tools] selftests/net/forwarding: add Makefile to install tests (Hangbin Liu) [1859880]
+- [tools] selftests: nft_concat_range: Move option for 'list ruleset' before command (Hangbin Liu) [1859880]
+- [tools] selftests: netfilter: use randomized netns names (Hangbin Liu) [1859880]
+- [tools] kselftests: netfilter: fix leftover net/net-next merge conflict (Hangbin Liu) [1859880]
+- [tools] selftests: netfilter: missing error check when setting up veth interface (Hangbin Liu) [1859880]
+- [net] sctp: Don't advertise IPv4 addresses if ipv6only is set on the socket (Xin Long) [1860673]
+- [net] sctp: check assoc before SCTP_ADDR_{MADE_PRIM, ADDED} event (Xin Long) [1860673]
+- [net] sctp: fix typo sctp_ulpevent_nofity_peer_addr_change (Xin Long) [1860673]
+- [net] sctp: Fix spelling in Kconfig help (Xin Long) [1860673]
+- [net] sctp: Start shutdown on association restart if in SHUTDOWN-SENT state and socket is closed (Xin Long) [1860673]
+- [net] sctp: Don't add the shutdown timer if its already been added (Xin Long) [1860673]
+- [net] sctp: Fix SHUTDOWN CTSN Ack in the peer restart case (Xin Long) [1860673]
+- [net] sctp: Fix bundling of SHUTDOWN with COOKIE-ACK (Xin Long) [1860673]
+- [net] ip6_vti: use IS_REACHABLE to avoid some compile errors (Xin Long) [1840976 1835075]
+- [net] xfrm: interface: use IS_REACHABLE to avoid some compile errors (Xin Long) [1840976 1835075]
+- [net] xfrm: interface: not xfrmi_ipv6/ipip_handler twice (Xin Long) [1840976 1835075]
+- [net] ip6_vti: not register vti_ipv6_handler twice (Xin Long) [1840976 1835075]
+- [net] ip_vti: not register vti_ipip_handler twice (Xin Long) [1840976 1835075]
+- [net] xfrm: interface: support IPIP and IPIP6 tunnels processing with .cb_handler (Xin Long) [1840976 1835075]
+- [net] xfrm: interface: support IP6IP6 and IP6IP tunnels processing with .cb_handler (Xin Long) [1840976 1835075]
+- [net] ipcomp: assign if_id to child tunnel from parent tunnel (Xin Long) [1840976 1835075]
+- [net] ip6_vti: support IP6IP tunnel processing (Xin Long) [1840976 1835075]
+- [net] ip6_vti: support IP6IP6 tunnel processing with .cb_handler (Xin Long) [1840976 1835075]
+- [net] ip_vti: support IPIP6 tunnel processing (Xin Long) [1840976 1835075]
+- [net] ip_vti: support IPIP tunnel processing with .cb_handler (Xin Long) [1840976 1835075]
+- [net] tunnel6: add tunnel6_input_afinfo for ipip and ipv6 tunnels (Xin Long) [1840976 1835075]
+- [net] tunnel4: add cb_handler to struct xfrm_tunnel (Xin Long) [1840976 1835075]
+- [net] xfrm: add is_ipip to struct xfrm_input_afinfo (Xin Long) [1840976 1835075]
+- [net] tunnel6: support for IPPROTO_MPLS (Xin Long) [1840976 1835075]
+- [net] virtio_vsock: Enhance connection semantics (Stefano Garzarella) [1861735]
+- [net] virtio_vsock: Fix race condition in virtio_transport_recv_pkt (Stefano Garzarella) [1858135]
+- [net] vsock/virtio: annotate 'the_virtio_vsock' RCU pointer (Stefano Garzarella) [1861762]
+- [vhost] vsock/virtio: fix multiple packet delivery to monitoring devices (Stefano Garzarella) [1861762]
+- [vhost] vsock: fix packet delivery order to monitoring devices (Stefano Garzarella) [1861762]
+- [vhost] vsock: accept only packets with the right dst_cid (Stefano Garzarella) [1861762]
+- [vhost] vsock: refuse CID assigned to the guest->host transport (Stefano Garzarella) [1861762]
+- [vhost] vsock: switch to a mutex for vhost_vsock_hash (Stefano Garzarella) [1861762]
+- [net] vsock: fix timeout in vsock_accept() (Stefano Garzarella) [1861762]
+- [net] vsock: Simplify '__vsock_release()' (Stefano Garzarella) [1861762]
+- [netdrv] net/mlx5e: Fix kernel crash when setting vf VLANID on a VF dev (Alaa Hleihel) [1859477]
+- [netdrv] net/mlx5e: Modify uplink state on interface up/down (Alaa Hleihel) [1861720 1859477]
+- [netdrv] net/mlx5e: Fix missing cleanup of ethtool steering during rep rx cleanup (Alaa Hleihel) [1859477 1856660]
+- [netdrv] ixgbe: Add ethtool support to enable 2.5 and 5.0 Gbps support (Ken Cox) [1835962]
+- [x86] x86/purgatory: Add -fno-stack-protector (Lianbo Jiang) [1857528]
+- [x86] x86/purgatory: Fail the build if purgatory.ro has missing symbols (Lianbo Jiang) [1857528]
+- [x86] x86/purgatory: Do not use __builtin_memcpy and __builtin_memset (Lianbo Jiang) [1857528]
+- [x86] x86/boot: Provide KASAN compatible aliases for string routines (Lianbo Jiang) [1857528]
+- [x86] x86/purgatory: Disable various profiling and sanitizing options (Lianbo Jiang) [1857528]
+- [x86] x86/boot: Restrict header scope to make Clang happy (Lianbo Jiang) [1857528]
+
+* Wed Aug 05 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-231.el8]
+- [x86] x86/entry/64: Update comments and sanity tests for create_gap (Jiri Olsa) [1850831]
+- [x86] x86/alternatives: add missing insn.h include (Jiri Olsa) [1850831]
+- [x86] x86/alternatives: Teach text_poke_bp() to emulate instructions (Jiri Olsa) [1850831]
+- [x86] x86/paravirt: Standardize 'insn_buff' variable names (Jiri Olsa) [1850831]
+- [x86] x86_64: Allow breakpoints to emulate call instructions (Jiri Olsa) [1850831]
+- [x86] x86_64: Add gap to int3 to allow for call emulation (Jiri Olsa) [1850831]
+- [x86] x86/alternatives: Sync bp_patching update for avoiding NULL pointer exception (Jiri Olsa) [1850831]
+- [nvme] nvme: add a Identify Namespace Identification Descriptor list quirk (Gopal Tiwari) [1862136]
+- [nvme] nvme: fix identify error status silent ignore (Gopal Tiwari) [1862136]
+- [nvme] nvme: fix possible hang when ns scanning fails during error recovery (Gopal Tiwari) [1862136]
+- [nvme] nvme: refactor nvme_identify_ns_descs error handling (Gopal Tiwari) [1862136]
+- [infiniband] IB/rdmavt: Fix RQ counting issues causing use of an invalid RWQE (Kamal Heib) [1850314]
+- [powerpc] powerpc/pseries: PCIE PHB reset (Steve Best) [1747345]
+- [drm] drm/nouveau/kms: Handle -EINPROGRESS in nouveau_display_acpi_ntfy() (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms: Fix runtime PM leak in nouveau_display_acpi_ntfy() (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms: Invert conditionals in nouveau_display_acpi_ntfy() (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms: Use pm_runtime_put_autosuspend() in hpd_work (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms/fbcon: Use pm_runtime_put_autosuspend() in suspend work (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms/fbcon: Fix pm_runtime calls in nouveau_fbcon_output_poll_changed() (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms/fbcon: Correct pm_runtime calls in nouveau_fbcon_release() (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms: Fix rpm leak in nouveau_connector_hotplug() (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms: Handle -EINPROGRESS in nouveau_connector_hotplug() (Lyude Paul) [1827812]
+- [drm] drm/nouveau/fbcon: fix module unload when fbcon init has failed for some reason (Lyude Paul) [1827812]
+- [drm] drm/nouveau/kms/tu102: wait for core update to complete when assigning windows (Lyude Paul) [1827812]
+- [drm] drm/nouveau/disp/gm200-: fix regression from HDA SOR selection changes (Lyude Paul) [1827812]
+- [drm] drm/amd/powerplay: fix a crash when overclocking Vega M (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: Fix NULL dereference in dpm sysfs handlers (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: fix preemption unit test (Lyude Paul) [1827812]
+- [drm] drm/amdgpu/gfx10: fix race condition for kiq (Lyude Paul) [1827812]
+- [drm] drm/amd/display: add dmcub check on RENOIR (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Check DMCU Exists Before Loading (Lyude Paul) [1827812]
+- [drm] drm/nouveau/nouveau: fix page fault on device private memory (Lyude Paul) [1827812]
+- [drm] drm/nouveau/i2c/g94-: increase NV_PMGR_DP_AUXCTL_TRANSACTREQ timeout (Lyude Paul) [1827812]
+- [drm] drm/i915/perf: Use GTT when saving/restoring engine GPR (Lyude Paul) [1827812]
+- [drm] drm/i915/gvt: Fix two CFL MMIO handling caused by regression (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Only swap to a random sibling once upon creation (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Ignore irq enabling on the virtual engines (Lyude Paul) [1827812]
+- [drm] drm/i915: Move cec_notifier to intel_hdmi_connector_unregister, v2 (Lyude Paul) [1827812]
+- [drm] drm/amdgpu/display: create fake mst encoders ahead of time (v4) (Lyude Paul) [1827812]
+- [drm] drm/amd/display: handle failed allocation during stream construction (Lyude Paul) [1827812]
+- [drm] drm/amdgpu/sdma5: fix wptr overwritten in ->get_wptr() (Lyude Paul) [1827812]
+- [drm] drm/amdgpu/powerplay: Modify SMC message name for setting power profile mode (Lyude Paul) [1827812]
+- [drm] drm/i915: Also drop vm.ref along error paths for vma construction (Lyude Paul) [1827812]
+- [drm] drm/i915: Drop vm.ref for duplicate vma on construction (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: asd function needs to be unloaded in suspend phase (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: add TMR destory function for psp (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: don't do soft recovery if gpu_recovery=0 (Lyude Paul) [1827812]
+- [drm] drm/i915: Skip stale object handle for debugfs per-file-stats (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Pin the rings before marking active (Lyude Paul) [1827812]
+- [drm] drm/radeon: fix double free (Lyude Paul) [1827812]
+- [drm] drm: panel-orientation-quirks: Use generic orientation-data for Acer S1003 (Lyude Paul) [1827812]
+- [drm] drm: panel-orientation-quirks: Add quirk for Asus T101HA panel (Lyude Paul) [1827812]
+- [iommu] iommu/vt-d: Don't apply gfx quirks to untrusted devices (Lyude Paul) [1827812]
+- [drm] drm/tegra: hub: Do not enable orphaned window group (Lyude Paul) [1827812]
+- [drm] drm/ttm: Fix dma_fence refcnt leak when adding move fence (Lyude Paul) [1827812]
+- [drm] drm/ttm: Fix dma_fence refcnt leak in ttm_bo_vm_fault_reserved (Lyude Paul) [1827812]
+- [drm] drm/amdgpu/atomfirmware: fix vram_info fetching for renoir (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: use u rather than d for sclk/mclk (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Only revalidate bandwidth on medium and fast updates (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Mark timeline->cacheline as destroyed after rcu grace period (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Fix ineffective setting of max bpc property (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Fix incorrectly pruned modes with deep color (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: add fw release for sdma v5_0 (Lyude Paul) [1827812]
+- [drm] drm/radeon: fix fb_div check in ni_init_smc_spll_table() (Lyude Paul) [1827812]
+- [drm] drm/amd: fix potential memleak in err branch (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Enable output_bpc property on all outputs (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Use kfree() to free rgb_user in calculate_user_regamma_ramp() (Lyude Paul) [1827812]
+- [drm] Revert "drm/amd/display: disable dcn20 abm feature for bring up" (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Move gen4 GT workarounds from init_clock_gating to workarounds (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Move vlv GT workarounds from init_clock_gating to workarounds (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Move ilk GT workarounds from init_clock_gating to workarounds (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Move snb GT workarounds from init_clock_gating to workarounds (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Move ivb GT workarounds from init_clock_gating to workarounds (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Move hsw GT workarounds from init_clock_gating to workarounds (Lyude Paul) [1827812]
+- [drm] drm/i915/gt: Incrementally check for rewinding (Lyude Paul) [1827812]
+- [drm] drm/i915/tc: fix the reset of ln0 (Lyude Paul) [1827812]
+- [drm] drm/i915/icl+: Fix hotplug interrupt disabling after storm detection (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Use kvfree() to free coeff in build_regamma() (Lyude Paul) [1827812]
+- [drm] drm/amdkfd: Use correct major in devcgroup check (Lyude Paul) [1827812]
+- [drm] drm/connector: notify userspace on hotplug after register complete (Lyude Paul) [1827812]
+- [drm] drm/i915: Whitelist context-local timestamp in the gen9 cmdparser (Lyude Paul) [1827812]
+- [drm] drm/i915/gem: Avoid iterating an empty list (Lyude Paul) [1827812]
+- [drm] drm/i915: Fix AUX power domain toggling across TypeC mode resets (Lyude Paul) [1827812]
+- [drm] drm/dp_mst: Increase ACT retry timeout to 3s (Lyude Paul) [1827812]
+- [drm] drm/ast: Don't check new mode if CRTC is being disabled (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: Replace invalid device ID with a valid device ID (Lyude Paul) [1827812]
+- [drm] drm/amdgpu/display: use blanked rather than plane state for sync groups (Lyude Paul) [1827812]
+- [drm] drm/qxl: Use correct notify port address when creating cursor ring (Lyude Paul) [1827812]
+- [drm] drm/dp_mst: Reformat drm_dp_check_act_status() a bit (Lyude Paul) [1827812]
+- [drm] drm/ast: fix missing break in switch statement for format->cppcase 4 (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Revalidate bandwidth before commiting DC updates (Lyude Paul) [1827812]
+- [drm] drm/nouveau: gr/gk20a: Use firmware version 0 (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: Sync with VM root BO when switching VM to CPU update mode (Lyude Paul) [1827812]
+- [drm] drm/amd/powerpay: Disable gfxoff when setting manual mode on picasso and raven (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Do not disable pipe split if mode is not supported (Lyude Paul) [1827812]
+- [drm] drm/amd/display: dmcu wait loop calculation is incorrect in RV (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Correct updating logic of dcn21's pipe VM flags (Lyude Paul) [1827812]
+- [drm] drm/ast: Allocate initial CRTC state of the correct size (Lyude Paul) [1827812]
+- [drm] drm/hisilicon: Enforce 128-byte stride alignment to fix the hardware limitation (Lyude Paul) [1827812]
+- [drm] drm/dp: Lenovo X13 Yoga OLED panel brightness fix (Lyude Paul) [1827812]
+- [drm] drm/i915/dpcd_bl: Unbreak enable_dpcd_backlight modparam (Lyude Paul) [1827812]
+- [drm] drm/i915: Force DPCD backlight mode for some Dell CML 2020 panels (Lyude Paul) [1827812]
+- [drm] drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED panel (Lyude Paul) [1827812]
+- [drm] drm/dp: Introduce EDID-based quirks (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: Init data to avoid oops while reading pp_num_states (Lyude Paul) [1827812]
+- [drm] drm/amd/display: fix virtual signal dsc setup (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Force watermark value propagation (Lyude Paul) [1827812]
+- [drm] drm: bridge: adv7511: Extend list of audio sample rates (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: fix and cleanup amdgpu_gem_object_close v4 (Lyude Paul) [1827812]
+- [drm] drm/vkms: Hold gem object while still in-use (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Not doing optimize bandwidth if flip pending (Lyude Paul) [1827812]
+- [drm] drm/amd/display: remove invalid dc_is_hw_initialized function (Lyude Paul) [1827812]
+- [drm] drm/amd/display: DP training to set properly SCRAMBLING_DISABLE (Lyude Paul) [1827812]
+- [drm] drm/edid: Add Oculus Rift S to non-desktop list (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Fix potential integer wraparound resulting in a hang (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Added locking for atomic update stream and update planes (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Indicate dsc updates explicitly (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Split program front end part that occur outside lock (Lyude Paul) [1827812]
+- [drm] drm/amd/display: drop cursor position check in atomic test (Lyude Paul) [1827812]
+- [drm] drm/amd/amdgpu: Update update_config() logic (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: Use GEM obj reference for KFD BOs (Lyude Paul) [1827812]
+- [drm] drm/amd/powerplay: perform PG ungate prior to CG ungate (Lyude Paul) [1827812]
+- [drm] drm/amdgpu: drop unnecessary cancel_delayed_work_sync on PG ungate (Lyude Paul) [1827812]
+- [drm] drm/i915: Propagate error from completed fences (Lyude Paul) [1827812]
+- [drm] drm/i915/gvt: Init DPLL/DDI vreg for virtual display instead of inheritance (Lyude Paul) [1827812]
+- [drm] drm/amd/display: Prevent dpcd reads with passive dongles (Lyude Paul) [1827812]
+- [drm] drm/amd/display: fix counter in wait_for_no_pipes_pending (Lyude Paul) [1827812]
+- [gpu] vgaarb: Keep adding VGA device in queue (Lyude Paul) [1827812]
+
+* Sun Aug 02 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-230.el8]
+- [net] openvswitch: fixes potential deadlock in dp cleanup code (Eelco Chaudron) [1845662]
+- [net] openvswitch: reorder masks array based on usage (Eelco Chaudron) [1845662]
+- [net] openvswitch: ovs_ct_exit to be done under ovs_lock (Eelco Chaudron) [1860853]
+- [net] ip6_gre: fix null-ptr-deref in ip6gre_init_net() (Hangbin Liu) [1860221]
+- [net] ip6_gre: fix use-after-free in ip6gre_tunnel_lookup() (Hangbin Liu) [1860221]
+- [net] mld: fix memory leak in ipv6_mc_destroy_dev() (Hangbin Liu) [1860221]
+- [net] ipv6: Fix suspicious RCU usage warning in ip6mr (Hangbin Liu) [1860221]
+- [net] ip6mr: Fix RCU list debugging warning (Hangbin Liu) [1860221]
+- [net] revert "ipv6: add mtu lock check in __ip6_rt_update_pmtu" (Hangbin Liu) [1860221]
+- [netdrv] macsec: avoid to set wrong mtu (Sabrina Dubroca) [1860944]
+- [netdrv] team: fix hang in team_mode_get() (Hangbin Liu) [1860219]
+- [include] xfrm: Fix crash when the hold queue is used. (Xin Long) [1860672]
+- [net] xfrm: policy: fix IPv6-only espintcp compilation (Xin Long) [1860672]
+- [net] xfrm: esp6: fix encapsulation header offset computation (Xin Long) [1860672]
+- [net] xfrm: Fix double ESP trailer insertion in IPsec crypto offload. (Xin Long) [1860672]
+- [net] esp4: improve xfrm4_beet_gso_segment() to be more readable (Xin Long) [1860672]
+- [net] xfrm interface: don't take extra reference to netdev (Xin Long) [1860672]
+- [net] xfrm interface: fix oops when deleting a x-netns interface (Xin Long) [1860672]
+- [net] xfrm: remove the unnecessary .net_exit for xfrmi (Xin Long) [1860672]
+- [net] xfrm: Always set XFRM_TRANSFORMED in xfrm{4, 6}_output_finish (Xin Long) [1860672]
+- [include] xfrm: fix error in comment (Xin Long) [1860672]
+- [net] sctp: shrink stream outq when fails to do addstream reconf (Xin Long) [1853535]
+- [net] sctp: shrink stream outq only when new outcnt < old outcnt (Xin Long) [1853535]
+- [net] tipc: fix kernel WARNING in tipc_msg_append() (Xin Long) [1844377]
+- [net] tipc: fix NULL pointer dereference in streaming (Xin Long) [1844377]
+- [net] tipc: add test for Nagle algorithm effectiveness (Xin Long) [1844377]
+- [net] tipc: fix failed service subscription deletion (Xin Long) [1844377]
+- [net] tipc: fix memory leak in service subscripting (Xin Long) [1844377]
+- [net] tipc: fix large latency in smart Nagle streaming (Xin Long) [1844377]
+- [net] mptcp: add receive buffer auto-tuning (Florian Westphal) [1858276]
+- [tools] selftests: mptcp: add option to specify size of file to transfer (Florian Westphal) [1858276]
+- [net] mptcp: fallback in case of simultaneous connect (Florian Westphal) [1858276]
+- [net] mptcp: improve fallback to TCP (Florian Westphal) [1858276]
+- [net] mptcp: fix unblocking connect() (Florian Westphal) [1858276]
+- [net] mptcp: cache msk on MP_JOIN init_req (Florian Westphal) [1858276]
+- [net] mptcp: remove msk from the token container at destruction time. (Florian Westphal) [1858276]
+- [net] mptcp: fix races between shutdown and recvmsg (Florian Westphal) [1858276]
+- [net] mptcp: fix race between MP_JOIN and close (Florian Westphal) [1858276]
+- [net] mptcp: drop MPTCP_PM_MAX_ADDR (Florian Westphal) [1858276]
+- [net] mptcp: bugfix for RM_ADDR option parsing (Florian Westphal) [1858276]
+- [net] mptcp: drop MP_JOIN request sock on syn cookies (Florian Westphal) [1858276]
+- [net] mptcp: avoid NULL-ptr derefence on fallback (Florian Westphal) [1858276]
+- [net] mptcp: drop sndr_key in mptcp_syn_options (Florian Westphal) [1858276]
+- [net] mptcp: MPTCP_HMAC_TEST should depend on MPTCP (Florian Westphal) [1858276]
+- [net] mptcp: fix DSS map generation on fin retransmission (Florian Westphal) [1858276]
+- [net] inet_connection_sock: clear inet_num out of destroy helper (Florian Westphal) [1858276]
+- [net] mptcp: fix NULL ptr dereference in MP_JOIN error path (Florian Westphal) [1858276]
+- [net] mptcp: avoid blocking in tcp_sendpages (Florian Westphal) [1858276]
+- [net] mptcp: break and restart in case mptcp sndbuf is full (Florian Westphal) [1858276]
+- [net] l2tp: remove skb_dst_set() from l2tp_xmit_skb() (Xin Long) [1832799]
+- [net] rtnetlink: prevent underflows in do_setvfinfo() (Davide Caratti) [1854740]
+- [net] netfilter: nf_tables: reintroduce the NFT_SET_CONCAT flag (Phil Sutter) [1847553]
+- [net] netfilter: nf_tables: report EOPNOTSUPP on unsupported flags/object type (Phil Sutter) [1847553]
+- [net] openvswitch: take into account de-fragmentation/gso_size in execute_check_pkt_len (Lorenzo Bianconi) [1851888]
+- [tools] selftests: forwarding: mirror_lib: Use mausezahn (Davide Caratti) [1816443]
+- [x86] perf/x86/rapl: Add Ice Lake RAPL support (Michael Petlan) [1841266]
+- [arm64] arm64/mm: enable HugeTLB migration (Donghai Qiao) [1758717]
+- [scsi] scsi: core: Run queue in case of I/O resource contention failure (Ewan Milne) [1854958]
+- [message] scsi: mptscsih: Fix read sense data size (Tomas Henzl) [1850563]
+- [netdrv] net: qed: fix buffer overflow on ethtool -d (Manish Chopra) [1858915]
+- [x86] sched/cputime: Improve cputime_adjust() (Oleg Nesterov) [1859977]
+- [kernel] uprobes: Change handle_swbp() to send SIGTRAP with si_code=SI_KERNEL, to fix GDB regression (Oleg Nesterov) [1855390]
+- [x86] x86/asm: Fix MWAITX C-state hint value (Vladis Dronov) [1767064]
+- [x86] x86/kexec: Fill in acpi_rsdp_addr from the first kernel (Kairui Song) [1684462]
+- [x86] x86/kexec: Don't setup EFI info if EFI runtime is not enabled (Kairui Song) [1684462]
+- [vfio] vfio/pci: fix racy on error and request eventfd ctx (Alex Williamson) [1858346]
+- [platform] platform/x86: ISST: Increase timeout (Prarit Bhargava) [1854682]
+- [mm] x86/mm: split vmalloc_sync_all() (Al Stone) [1851547]
+- [acpi] ACPI: watchdog: Fix gas->access_width usage (Al Stone) [1851547]
+- [acpi] ACPICA: Introduce ACPI_ACCESS_BYTE_WIDTH() macro (Al Stone) [1851547]
+
+* Thu Jul 30 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-229.el8]
+- [virt] kvm: x86: take as_id into account when checking PGD (Vitaly Kuznetsov) [1615704]
+- [arm64] kvm: arm64: Stop clobbering x0 for HVC_SOFT_RESTART (Andrew Jones) [1855788]
+- [arm64] kvm: arm64: pmu: Fix per-CPU access in preemptible context (Andrew Jones) [1855788]
+- [arm64] kvm: arm64: Fix kvm_reset_vcpu() return code being incorrect with SVE (Andrew Jones) [1855788]
+- [arm64] kvm: arm64: Annotate hyp NMI-related functions as __always_inline (Andrew Jones) [1855788]
+- [arm64] kvm: arm64: Remove host_cpu_context member from vcpu structure (Andrew Jones) [1855788]
+- [arm64] kvm: arm64: Move hyp_symbol_addr() to kvm_asm.h (Andrew Jones) [1855788]
+- [arm64] kvm: arm64: Handle PtrAuth traps early (Andrew Jones) [1855788]
+- [arm64] kvm: arm64: Save the host's PtrAuth keys in non-preemptible context (Andrew Jones) [1855788]
+- [arm64] kvm: arm64: Stop save/restoring ACTLR_EL1 (Andrew Jones) [1855788]
+- [kernel] firmware: smccc: Update link to latest SMCCC specification (Andrew Jones) [1855788]
+- [kernel] arm/arm64: smccc-1.1: Handle function result as parameters (Andrew Jones) [1855788]
+- [kernel] arm/arm64: smccc-1.1: Make return values unsigned long (Andrew Jones) [1855788]
+- [video] Revert "hyperv_fb: Fix hibernation for the deferred IO feature" (Mohammed Gamal) [1858755]
+- [netdrv] net/mlx5e: CT: Map 128 bits labels to 32 bit map ID (Alaa Hleihel) [1859540]
+- [security] ima: move APPRAISE_BOOTPARAM dependency on ARCH_POLICY to runtime (Bruno Meneguele) [1847219]
+- [scsi] scsi: lpfc: NVMe remote port devloss_tmo from lldd (Dick Kennedy) [1859344]
+- [netdrv] net/mlx5e: Disable devlink port support for non-switchdev mode (Alaa Hleihel) [1858501 1852904 1849623]
+- [tools] perf powerpc: Don't ignore sym-handling.c file (Michael Petlan) [1858133]
+- [fs] ext4: reserve revoke credits in __ext4_new_inode (Lukas Czerner) [1856760]
+- [include] jbd2: make jbd2_handle_buffer_credits() handle reserved handles (Lukas Czerner) [1856760]
+- [fs] jbd2: avoid leaking transaction credits when unreserving handle (Lukas Czerner) [1856760]
+- [fs] jbd2: Fine tune estimate of necessary descriptor blocks (Lukas Czerner) [1856760]
+- [fs] jbd2: Provide trace event for handle restarts (Lukas Czerner) [1856760]
+- [fs] ext4: Reserve revoke credits for freed blocks (Lukas Czerner) [1856760]
+- [fs] jbd2: Make credit checking more strict (Lukas Czerner) [1856760]
+- [fs] jbd2: Rename h_buffer_credits to h_total_credits (Lukas Czerner) [1856760]
+- [fs] jbd2: add missing tracepoint for reserved handle (Lukas Czerner) [1856760]
+- [fs] jbd2: Reserve space for revoke descriptor blocks (Lukas Czerner) [1856760]
+- [fs] jbd2: Drop jbd2_space_needed() (Lukas Czerner) [1856760]
+- [fs] jbd2: remove repeated assignments in __jbd2_log_wait_for_space() (Lukas Czerner) [1856760]
+- [fs] jbd2: Account descriptor blocks into t_outstanding_credits (Lukas Czerner) [1856760]
+- [include] jbd2: update locking documentation for transaction_t (Lukas Czerner) [1856760]
+- [fs] jbd2: Factor out common parts of stopping and restarting a handle (Lukas Czerner) [1856760]
+- [fs] jbd2: Drop pointless wakeup from jbd2_journal_stop() (Lukas Czerner) [1856760]
+- [fs] jbd2: Drop pointless check from jbd2_journal_stop() (Lukas Czerner) [1856760]
+- [fs] jbd2: Reorganize jbd2_journal_stop() (Lukas Czerner) [1856760]
+- [fs] ext4, jbd2: Provide accessor function for handle credits (Lukas Czerner) [1856760]
+- [fs] ext4: Provide function to handle transaction restarts (Lukas Czerner) [1856760]
+- [fs] ext4: Avoid unnecessary revokes in ext4_alloc_branch() (Lukas Czerner) [1856760]
+- [fs] ext4: Use ext4_journal_extend() instead of jbd2_journal_extend() (Lukas Czerner) [1856760]
+- [fs] jbd2: Completely fill journal descriptor blocks (Lukas Czerner) [1856760]
+- [fs] jbd2: Fixup stale comment in commit code (Lukas Czerner) [1856760]
+- [include] jbd2: Fix possible overflow in jbd2_log_space_left() (Lukas Czerner) [1856760]
+- [fs] ext4, jbd2: ensure panic by fix a race between jbd2 abort and ext4 error handlers (Lukas Czerner) [1856760]
+- [fs] ext4: remove set but not used variable 'es' in ext4_jbd2.c (Lukas Czerner) [1856760]
+- [fs] ext4: remove set but not used variable 'es' (Lukas Czerner) [1856760]
+- [fs] ext4: save all error info in save_error_info() and drop ext4_set_errno() (Lukas Czerner) [1856760]
+- [fs] ext4: save the error code which triggered an ext4_error() in the superblock (Lukas Czerner) [1856760]
+- [fs] jbd2: clean __jbd2_journal_abort_hard() and __journal_abort_soft() (Lukas Czerner) [1856760]
+- [fs] ext4: stop overwrite the errcode in ext4_setup_super (Lukas Czerner) [1856760]
+- [fs] ext4: fix partial cluster initialization when splitting extent (Lukas Czerner) [1856760]
+- [fs] ext4: avoid ext4_error()'s caused by ENOMEM in the truncate path (Lukas Czerner) [1856760]
+- [fs] ext4: fix race between ext4_sync_parent() and rename() (Lukas Czerner) [1856760]
+- [fs] ext4: clean up ext4_ext_convert_to_initialized() error handling (Lukas Czerner) [1856760]
+- [fs] ext4: clean up GET_BLOCKS_PRE_IO error handling (Lukas Czerner) [1856760]
+- [fs] ext4: fix error pointer dereference (Lukas Czerner) [1856760]
+- [fs] ext4: Avoid freeing inodes on dirty list (Lukas Czerner) [1856760]
+- [fs] writeback: Export inode_io_list_del() (Lukas Czerner) [1856760]
+- [fs] ext4: fix buffer_head refcnt leak when ext4_iget() fails (Lukas Czerner) [1856760]
+- [fs] ext4: fix EXT_MAX_EXTENT/INDEX to check for zeroed eh_max (Lukas Czerner) [1856760]
+- [fs] ext4: fix a style issue in fs/ext4/acl.c (Lukas Czerner) [1856760]
+- [fs] ext4: fix return-value types in several function comments (Lukas Czerner) [1856760]
+- [fs] ext4: use non-movable memory for superblock readahead (Lukas Czerner) [1856760]
+- [fs] ext4: fix incorrect group count in ext4_fill_super error message (Lukas Czerner) [1856760]
+- [fs] ext4: fix incorrect inodes per group in error message (Lukas Czerner) [1856760]
+- [fs] ext4: avoid ENOSPC when avoiding to reuse recently deleted inodes (Lukas Czerner) [1856760]
+- [fs] ext4: fix a data race at inode->i_disksize (Lukas Czerner) [1856760]
+- [fs] ext4: fix a data race at inode->i_blocks (Lukas Czerner) [1856760]
+- [fs] ext4: clean up error return for convert_initialized_extent() (Lukas Czerner) [1856760]
+- [fs] ext4: force buffer up-to-date while marking it dirty (Lukas Czerner) [1856760]
+- [fs] ext4: fix race between writepages and enabling EXT4_EXTENTS_FL (Lukas Czerner) [1856760]
+- [fs] ext4: rename s_journal_flag_rwsem to s_writepages_rwsem (Lukas Czerner) [1856760]
+- [fs] ext4: potential crash on allocation error in ext4_alloc_flex_bg_array() (Lukas Czerner) [1856760]
+- [fs] ext4: fix potential race between s_flex_groups online resizing and access (Lukas Czerner) [1856760]
+- [fs] ext4: fix potential race between s_group_info online resizing and access (Lukas Czerner) [1856760]
+- [fs] ext4: fix potential race between online resizing and write operations (Lukas Czerner) [1856760]
+- [fs] ext4: add cond_resched() to __ext4_find_entry() (Lukas Czerner) [1856760]
+- [fs] ext4: fix a data race in EXT4_I(inode)->i_disksize (Lukas Czerner) [1856760]
+- [fs] ext4: fix checksum errors with indexed dirs (Lukas Czerner) [1856760]
+- [fs] ext4: simplify checking quota limits in ext4_statfs() (Lukas Czerner) [1856760]
+- [fs] ext4: choose hardlimit when softlimit is larger than hardlimit in ext4_statfs_project() (Lukas Czerner) [1856760]
+- [fs] ext4: don't assume that mmp_nodename/bdevname have NUL (Lukas Czerner) [1856760]
+- [fs] jbd2: make sure ESHUTDOWN to be recorded in the journal superblock (Lukas Czerner) [1856760]
+- [fs] ext4, jbd2: ensure panic when aborting with zero errno (Lukas Czerner) [1856760]
+- [fs] jbd2: switch to use jbd2_journal_abort() when failed to submit the commit record (Lukas Czerner) [1856760]
+- [fs] jbd2_seq_info_next should increase position index (Lukas Czerner) [1856760]
+- [fs] ext4,jbd2: fix comment and code style (Lukas Czerner) [1856760]
+- [fs] ext4: fix extent_status trace points (Lukas Czerner) [1856760]
+- [fs] ext4: fix extent_status fragmentation for plain files (Lukas Czerner) [1856760]
+- [fs] jbd2: clear JBD2_ABORT flag before journal_reset to update log tail info when load journal (Lukas Czerner) [1856760]
+- [fs] ext4: fix some nonstandard indentation in extents.c (Lukas Czerner) [1856760]
+- [fs] ext4: fix documentation for ext4_ext_try_to_merge() (Lukas Czerner) [1856760]
+- [fs] ext4: avoid fetching btime in ext4_getattr() unless requested (Lukas Czerner) [1856760]
+- [fs] ext4: fix ext4_dax_read/write inode locking sequence for IOCB_NOWAIT (Lukas Czerner) [1856760]
+- [fs] ext4: optimize __ext4_check_dir_entry() (Lukas Czerner) [1856760]
+- [fs] ext4: check for directory entries too close to block end (Lukas Czerner) [1856760]
+- [fs] ext4: fix a bug in ext4_wait_for_tail_page_commit (Lukas Czerner) [1856760]
+- [fs] jbd2: Fix statistics for the number of logged blocks (Lukas Czerner) [1856760]
+- [fs] ext4: Fix ext4_should_journal_data() for EA inodes (Lukas Czerner) [1856760]
+- [fs] ext4: Fix credit estimate for final inode freeing (Lukas Czerner) [1856760]
+- [fs] ext4: Do not iput inode under running transaction (Lukas Czerner) [1856760]
+- [fs] ext4: Move marking of handle as sync to ext4_add_nondir() (Lukas Czerner) [1856760]
+- [fs] ext4: update direct I/O read lock pattern for IOCB_NOWAIT (Lukas Czerner) [1856760]
+- [fs] jbd2: flush_descriptor(): Do not decrease buffer head's ref count (Lukas Czerner) [1856760]
+- [fs] ext4: fix prefetchw of NULL page (Lukas Czerner) [1856760]
+- [fs] ext4: check for non-zero journal inum in ext4_calculate_overhead (Lukas Czerner) [1814574]
+- [fs] ext4: do not commit super on read-only bdev (Lukas Czerner) [1814574]
+- [kernel] isolcpus: Affine unbound kernel threads to housekeeping cpus (Marcelo Tosatti) [1791930]
+- [kernel] kthread: Switch to cpu_possible_mask (Marcelo Tosatti) [1791930]
+- [scsi] scsi: lpfc: Quieten some printks (Dick Kennedy) [1859338]
+- [scsi] Revert "scsi: lpfc: Fix scsi host template for SLI3 vports" (Dick Kennedy) [1851189]
+- [md] dm mpath: use double checked locking in fast path (Mike Snitzer) [1848651]
+- [md] dm mpath: rename current_pgpath to pgpath in multipath_prepare_ioctl (Mike Snitzer) [1848651]
+- [md] dm mpath: rework __map_bio() (Mike Snitzer) [1848651]
+- [md] dm mpath: factor out multipath_queue_bio (Mike Snitzer) [1848651]
+- [md] dm mpath: push locking down to must_push_back_rq() (Mike Snitzer) [1848651]
+- [md] dm mpath: take m->lock spinlock when testing QUEUE_IF_NO_PATH (Mike Snitzer) [1848651]
+- [md] dm mpath: changes from initial m->flags locking audit (Mike Snitzer) [1848651]
+- [md] dm rq: don't call blk_mq_queue_stopped() in dm_stop_queue() (Mike Snitzer) [1848651]
+- [md] dm: do not use waitqueue for request-based DM (Mike Snitzer) [1848651]
+- [block] blk-mq: consider non-idle request as "inflight" in blk_mq_rq_inflight() (Mike Snitzer) [1848651]
+- [powerpc] powerpc/fadump: fix race between pstore write and fadump crash trigger (Steve Best) [1820109]
+- [tools] libbpf: Fix probe code to return EPERM if encountered (=?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?=) [1856592]
+- [tools] tools selftests/bpf: Fix vmlinux test for kprobe and trampoline probes (Jiri Olsa) [1855778]
+- [net] net: Restrict receive packets queuing to housekeeping CPUs (Nitesh Narayan Lal) [1844520]
+- [pci] PCI: Restrict probe functions to housekeeping CPUs (Nitesh Narayan Lal) [1844520]
+- [lib] lib: Restrict cpumask_local_spread to houskeeping CPUs (Nitesh Narayan Lal) [1844520]
+
+* Mon Jul 27 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-228.el8]
+- [tools] selftests/powerpc: Purge extra count_pmc() calls of ebb selftests (Desnes Augusto Nunes do Rosario) [1739769]
+- [netdrv] bonding: symmetric ICMP transmit (Jarod Wilson) [1760293]
+- [netdrv] bonding: balance ICMP echoes in layer3+4 mode (Jarod Wilson) [1760362]
+- [powerpc] powerpc/vas: Report proper error code for address translation failure (Steve Best) [1858160]
+- [infiniband] IB/hfi1: Fix module use count flaw due to leftover module put calls (Kamal Heib) [1858388]
+- [gpu] vgaarb: Add support for 64-bit frame buffer address (Karol Herbst) [1735217]
+- [netdrv] ionic: centralize queue reset code (Jonathan Toppins) [1857851]
+- [s390] s390/qeth: support net namespaces for L3 devices (Philipp Rudo) [1857311]
+- [s390] s390/qeth: implement smarter resizing of the RX buffer pool (Philipp Rudo) [1857311]
+- [s390] s390/qeth: refactor buffer pool code (Philipp Rudo) [1857311]
+- [s390] s390/qeth: use page pointers to manage RX buffer pool (Philipp Rudo) [1857311]
+- [s390] s390/qeth: cancel RX reclaim work earlier (Philipp Rudo) [1857311]
+- [s390] s390/qeth: handle error when backing RX buffer (Philipp Rudo) [1857311]
+- [s390] s390/qeth: don't reset default_out_queue (Philipp Rudo) [1857311]
+- [s390] s390/qdio: fill SBALEs with absolute addresses (Philipp Rudo) [1857311]
+- [s390] s390/qeth: fix off-by-one in RX copybreak check (Philipp Rudo) [1857311]
+- [s390] s390/qeth: vnicc Fix EOPNOTSUPP precedence (Philipp Rudo) [1857311]
+- [s390] s390/qeth: consolidate QDIO queue setup (Philipp Rudo) [1857311]
+- [s390] s390/pci: Fix s390_mmio_read/write with MIO (Philipp Rudo) [1857315]
+- [s390] scsi: zfcp: Fix panic on ERP timeout for previously dismissed ERP action (Philipp Rudo) [1857312]
+- [net] net/smc: tolerate future SMCD versions (Philipp Rudo) [1854992]
+- [fs] ext4: use RCU API in debug_print_tree (Lukas Czerner) [1837777]
+- [fs] ext4: fix potential use after free after remounting with noblock_validity (Lukas Czerner) [1837777]
+- [fs] ext4: add cond_resched() to ext4_protect_reserved_inode (Lukas Czerner) [1837777]
+- [fs] fibmap: Reject negative block numbers (Carlos Maiolino) [1687121]
+- [vfio] vfio/pci: Fix SR-IOV VF handling with MMIO blocking (Alex Williamson) [1837310] {CVE-2020-12888}
+- [vfio] vfio-pci: Invalidate mmaps and block MMIO access on disabled memory (Alex Williamson) [1837310] {CVE-2020-12888}
+- [vfio] vfio-pci: Fault mmaps to enable vma tracking (Alex Williamson) [1837310] {CVE-2020-12888}
+- [vfio] vfio/type1: Support faulting PFNMAP vmas (Alex Williamson) [1837310] {CVE-2020-12888}
+- [vfio] vfio/type1: Fix VA->PA translation for PFNMAP VMAs in vaddr_get_pfn() (Alex Williamson) [1837310] {CVE-2020-12888}
+- [vfio] vfio/pci: call irq_bypass_unregister_producer() before freeing irq (Alex Williamson) [1837310] {CVE-2020-12888}
+- [vfio] vfio_pci: Enable memory accesses before calling pci_map_rom (Alex Williamson) [1837310] {CVE-2020-12888}
+- [x86] mm: Fix mremap not considering huge pmd devmap (Rafael Aquini) [1843441] {CVE-2020-10757}
+- [x86] x86/speculation: PR_SPEC_FORCE_DISABLE enforcement for indirect branches (Waiman Long) [1847396 1846029] {CVE-2020-10768}
+- [x86] x86/speculation: Prevent rogue cross-process SSBD shutdown (Waiman Long) [1847358 1846029] {CVE-2020-10766}
+- [x86] x86/speculation: Avoid force-disabling IBPB based on STIBP and enhanced IBRS (Waiman Long) [1847379 1846029] {CVE-2020-10767}
+- [x86] x86/speculation/mds: Mark mds_user_clear_cpu_buffers() __always_inline (Waiman Long) [1846029]
+- [arm64] Return ENODEV when the selected speculation misfeature is unsupported (Waiman Long) [1846029]
+- [x86] x86/speculation: Add support for STIBP always-on preferred mode (Waiman Long) [1846029]
+- [x86] x86/speculation: Change misspelled STIPB to STIBP (Waiman Long) [1846029]
+
+* Mon Jul 20 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-227.el8]
+- [powerpc] powernv/iov: Ensure the pdn for VFs always contains a valid PE number (David Gibson) [1848235]
+- [powerpc] don't use ioremap_prot() nor __ioremap() unless really needed (Greg Kurz) [1855957]
+- [char] tpm: ibmvtpm: Wait for ready buffer before probing for TPM2 attributes (David Gibson) [1837283]
+- [powerpc] Check prom_init for disallowed sections (Michael Roth) [1856099]
+- [powerpc] prom_init: Move __prombss to it's own section and store it in .bss (Michael Roth) [1856099]
+- [powerpc] prom_init: Move const structures to __initconst (Michael Roth) [1856099]
+- [powerpc] prom_init: Make "default_colors" const (Michael Roth) [1856099]
+- [powerpc] prom_init: Move ibm_arch_vec to __prombss (Michael Roth) [1856099]
+- [fs] ext4: unregister sysfs path before destroying jbd2 journal (Lukas Czerner) [1814577]
+- [powerpc] powerpc/pseries/svm: Fix incorrect check for shared_lppaca_size (Steve Best) [1856889]
+- [netdrv] bnxt_en: fix NULL dereference in case SR-IOV configuration fails (Jonathan Toppins) [1856372]
+- [security] kexec: Allow kexec_file() with appropriate IMA policy when locked down (Bruno Meneguele) [1854097]
+- [x86] x86/apic/vector: Warn when vector space exhaustion breaks affinity (Neil Horman) [1714686]
+- [tools] perf report TUI: Fix segmentation fault in perf_evsel__hists_browse() (Michael Petlan) [1855737]
+- [fs] ext4: do not zeroout extents beyond i_disksize (Lukas Czerner) [1817816]
+- [pci] PCI/DPC: Print IRQ number used by port (Myron Stowe) [1855343]
+- [pci] PCI/AER: Use "aer" variable for capability offset (Myron Stowe) [1855343]
+- [pci] PCI/AER: Remove redundant dev->aer_cap checks (Myron Stowe) [1855343]
+- [pci] PCI/AER: Remove redundant pci_is_pcie() checks (Myron Stowe) [1855343]
+- [pci] PCI/AER: Remove HEST/FIRMWARE_FIRST parsing for AER ownership (Myron Stowe) [1855343]
+- [tools] selftests: bpf: use __u32 for sock::sk_pacing_rate (Yauheni Kaliuta) [1856324]
+- [tools] libbpf: Handle GCC noreturn-turned-volatile quirk (Yauheni Kaliuta) [1854327]
+- [netdrv] net/mlx5e: CT: Fix releasing ft entries (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Remove unused function param (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Return err_ptr from internal functions (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Expand tunnel register mappings (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Use mapping for zone restore register (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Re-use tuple modify headers for identical modify actions (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: Export sharing of mod headers to a new file (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5: Add support for COPY steering action (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5: Accept flow rules without match (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Restore ct state from lookup in zone instead of tupleid (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Don't offload tuple rewrites for established tuples (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: Use netdev_info instead of pr_info (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Allow header rewrite of 5-tuple and ct clear action (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Save ct entries tuples in hashtables (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5: CT: Remove unused variables (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5: Avoid eswitch header inclusion in fs core layer (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: vxlan: Use RCU for vxlan table lookup (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: Remove unused mlx5e_xsk_first_unused_channel (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: CT: Fix memory leak in cleanup (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: Fix port buffers cell size value (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: Fix 50G per lane indication (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: Fix CPU mapping after function reload to avoid aRFS RX crash (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: Fix VXLAN configuration restore after function reload (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5: Fix eeprom support for SFP module (Alaa Hleihel) [1856057]
+- [infiniband] IB/mlx5: Fix 50G per lane indication (Alaa Hleihel) [1856057]
+- [netdrv] net/mlx5e: Do not include rwlock.h directly (Alaa Hleihel) [1856057]
+- [fs] jbd2: fix data races at struct journal_head (Lukas Czerner) [1792518]
+- [fs] jbd2: remove pointless assertion in __journal_remove_journal_head (Lukas Czerner) [1792518]
+- [fs] jbd2: improve comments about freeing data buffers whose page mapping is NULL (Lukas Czerner) [1792518]
+- [fs] jbd2: do not clear the BH_Mapped flag when forgetting a metadata buffer (Lukas Czerner) [1792518]
+- [fs] jbd2: move the clearing of b_modified flag to the journal_unmap_buffer() (Lukas Czerner) [1792518]
+- [fs] ext4: unlock on error in ext4_expand_extra_isize() (Lukas Czerner) [1817636] {CVE-2019-19767}
+- [fs] ext4: fix support for inode sizes > 1024 bytes (Lukas Czerner) [1817636] {CVE-2019-19767}
+- [fs] ext4: validate the debug_want_extra_isize mount option at parse time (Lukas Czerner) [1817636] {CVE-2019-19767}
+- [fs] ext4: add more paranoia checking in ext4_expand_extra_isize handling (Lukas Czerner) [1817636] {CVE-2019-19767}
+- [fs] ext4: unsigned int compared against zero (Lukas Czerner) [1836666] {CVE-2019-19319}
+- [fs] ext4: protect journal inode's blocks using block_validity (Lukas Czerner) [1836666] {CVE-2019-19319}
+- [powerpc] powerpc/kernel/sysfs: Add new config option PMU_SYSFS to enable PMU SPRs sysfs file creation (Michael Petlan) [1821284]
+- [powerpc] powerpc/kernel/sysfs: Refactor current sysfs.c (Michael Petlan) [1821284]
+- [kernel] irqdomain: Add the missing assignment of domain->fwnode for named fwnode (Mohammed Gamal) [1846666]
+- [security] lockdown: Allow unprivileged users to see lockdown status (Vladis Dronov) [1805299]
+- [edac] EDAC/ghes: Setup DIMM label from DMI and use it in error reports (Robert Richter) [1726153]
+
+* Wed Jul 15 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-226.el8]
+- [x86] kvm: nvmx: fixes for preemption timer migration (Paolo Bonzini) [1854831]
+- [powerpc] pci/of: Parse unassigned resources (Greg Kurz) [1849921]
+- [video] revert "hyperv: hyperv_fb: Support deferred IO for Hyper-V frame buffer driver" (Vitaly Kuznetsov) [1848840]
+- [video] revert "hyperv: hyperv_fb: Use physical memory for fb on HyperV Gen 1 VMs" (Vitaly Kuznetsov) [1848840]
+- [pci] hv: Retry PCI bus D0 entry on invalid device state (Mohammed Gamal) [1846666]
+- [pci] hv: Fix the PCI HyperV probe failure path to release resource properly (Mohammed Gamal) [1846666]
+- [pci] hv: Allocate a named fwnode instead of an address-based one (Mohammed Gamal) [1846666]
+- [netdrv] tg3: driver sleeps indefinitely when EEH errors exceed eeh_max_freezes (Jonathan Toppins) [1850176]
+- [scsi] scsi: lpfc: Fix kdump hang on PPC (Dick Kennedy) [1722596]
+- [fs] nfsd: fix nfsdfs inode reference count leak ("J. Bruce Fields") [1846235]
+- [fs] nfsd4: fix nfsdfs reference count loop ("J. Bruce Fields") [1846235]
+- [kernel] sched: Defend cfs and rt bandwidth quota against overflow (Phil Auld) [1854180]
+- [kernel] sched/core: Make some functions static (Phil Auld) [1854180]
+- [kernel] sched/fair: Refill bandwidth before scaling (Phil Auld) [1854180]
+- [kernel] sched/fair: Eliminate bandwidth race between throttling and distribution (Phil Auld) [1854180]
+- [kernel] sched/fair: Fix race between runtime distribution and assignment (Phil Auld) [1854180]
+- [kernel] sched/deadline: Initialize ->dl_boosted (Phil Auld) [1854179]
+- [kernel] sched/core: Fix PI boosting between RT and DEADLINE tasks (Phil Auld) [1854179]
+- [netdrv] ibmveth: Fix max MTU limit (Diego Domingos) [1846435]
+- [kernel] sched/core: Fix ttwu() race (Phil Auld) [1854178]
+- [tools] perf flamegraph: Explicitly set utf-8 encoding (Michael Petlan) [1849027]
+- [kernel] sched/core: Check cpus_mask, not cpus_ptr in __set_cpus_allowed_ptr(), to fix mask corruption (Phil Auld) [1854174]
+- [kernel] workqueue: Remove the warning in wq_worker_sleeping() (Phil Auld) [1854174]
+- [kernel] sched/fair: Fix negative imbalance in imbalance calculation (Phil Auld) [1854174]
+- [kernel] sched/fair: Optimize select_idle_core() (Phil Auld) [1854174]
+- [x86] x86/PCI: Mark Intel C620 MROMs as having non-compliant BARs (Myron Stowe) [1854184]
+- [netdrv] r8169: fix firmware not resetting tp->ocp_base (Josef Oskera) [1851960]
+- [acpi] ACPI: configfs: Disallow loading ACPI tables when locked down (Lenny Szubowicz) [1852969]
+- [arm64] Revert "bpf: Restrict bpf_probe_read{, str}() only to archs where they work" (Jiri Olsa) [1847837]
+- [s390] s390/mm: Explicitly compare PAGE_DEFAULT_KEY against zero in storage_key_init_range (Jiri Olsa) [1847837]
+- [net] Bluetooth: Modify LE window and interval for suspend (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix incorrect type for window and interval (Gopal Tiwari) [1838924]
+- [net] Bluetooth: L2CAP: Use DEFER_SETUP to group ECRED connections (Gopal Tiwari) [1838924]
+- [net] Bluetooth: don't assume key size is 16 when the command fails (Gopal Tiwari) [1838924]
+- [net] Bluetooth: L2CAP: Add get_peer_pid callback (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Restore running state if suspend fails (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix incorrect branch in connection complete (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Do not cancel advertising when starting a scan (Gopal Tiwari) [1838924]
+- [net] Bluetooth: L2CAP: remove set but not used variable 'credits' (Gopal Tiwari) [1838924]
+- [net] Bluetooth: L2CAP: Fix a condition in l2cap_sock_recvmsg() (Gopal Tiwari) [1838924]
+- [net] Bluetooth: L2CAP: handle l2cap config request during open state (Gopal Tiwari) [1838924]
+- [net] Bluetooth: clean up connection in hci_cs_disconnect (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Pause discovery and advertising during suspend (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Handle LE devices during suspend (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Handle BR/EDR devices during suspend (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Handle PM_SUSPEND_PREPARE and PM_POST_SUSPEND (Gopal Tiwari) [1838924]
+- [net] Bluetooth: mgmt: add mgmt_cmd_status in add_advertising (Gopal Tiwari) [1838924]
+- [net] Bluetooth: fix off by one in err_data_reporting cmd masks (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Use bt_dev_err for RPA generation failure message (Gopal Tiwari) [1838924]
+- [net] Bluetooth: RFCOMM: fix ODEBUG bug in rfcomm_dev_ioctl (Gopal Tiwari) [1838924]
+- [net] Bluetooth: L2CAP: Add module option to enable ECRED mode (Gopal Tiwari) [1838924]
+- [net] Bluetooth: L2CAP: Add initial code for Enhanced Credit Based Mode (Gopal Tiwari) [1838924]
+- [net] Bluetooth: L2CAP: Add definitions (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Increment management interface revision (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Make use of skb_pull to parse L2CAP signaling PDUs (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix calculation of SCO handle for packet processing (Gopal Tiwari) [1838924]
+- [net] Bluetooth: guard against controllers sending zero'd events (Gopal Tiwari) [1838924]
+- [net] Bluetooth: During le_conn_timeout disable EXT_ADV (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Remove adv set for directed advertising (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix Suspicious RCU usage warnings (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Use list_for_each_entry_rcu() to traverse RCU list in RCU read-side CS (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Replace zero-length array with flexible-array member (Gopal Tiwari) [1838924]
+- [net] Bluetooth: fix passkey uninitialized when used (Gopal Tiwari) [1838924]
+- [net] Bluetooth: RFCOMM: Use MTU auto tune logic (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix crash when using new BT_PHY option (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Disable Extended Adv if enabled (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Add BT_PHY socket option (Gopal Tiwari) [1838924]
+- [net] Bluetooth: secure bluetooth stack from bluedump attack (Gopal Tiwari) [1838924]
+- [net] Bluetooth: remove __get_channel/dir and __dir (Gopal Tiwari) [1838924]
+- [net] Bluetooth: prefetch channel before killing sock (Gopal Tiwari) [1838924]
+- [net] Bluetooth: optimize barrier usage for Rmw atomics (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix refcount use-after-free issue (Gopal Tiwari) [1838924]
+- [net] Bluetooth: SMP: Fix SALT value in some comments (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix race condition in hci_release_sock() (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Move {min, max}_key_size debugfs into hci_debugfs_create_le (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Add missing checks for HCI_ISODATA_PKT packet type (Gopal Tiwari) [1838924]
+- [net] Bluetooth: fix appearance typo in mgmt.c (Gopal Tiwari) [1838924]
+- [net] Bluetooth: adding missing const decoration to mgmt_status_table (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Increment management interface revision (Gopal Tiwari) [1838924]
+- [net] Bluetooth: monitor: Add support for ISO packets (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Make use of __check_timeout on hci_sched_le (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Implementation of MGMT_OP_SET_BLOCKED_KEYS (Gopal Tiwari) [1838924]
+- [net] Bluetooth: remove redundant assignment to variable icid (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Auto tune if input MTU is set to 0 (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Remove usage of BT_ERR_RATELIMITED macro (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Adding a bt_dev_warn_ratelimited macro (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix memory leak in hci_connect_le_scan (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Allow combination of BDADDR_PROPERTY and INVALID_BDADDR quirks (Gopal Tiwari) [1838924]
+- [net] Bluetooth: delete a stray unlock (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix advertising duplicated flags (Gopal Tiwari) [1838924]
+- [net] net: use skb_queue_empty_lockless() in poll() handlers (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix not using LE_ADV_NONCONN_IND for instance 0 (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Fix using advertising instance duration as timeout (Gopal Tiwari) [1838924]
+- [fs] compat_ioctl: move hci_sock handlers into driver (Gopal Tiwari) [1838924]
+- [fs] compat_ioctl: move rfcomm handlers into driver (Gopal Tiwari) [1838924]
+- [net] Bluetooth: hci_core: fix init for HCI_USER_CHANNEL (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Workaround directed advertising bug in Broadcom controllers (Gopal Tiwari) [1838924]
+- [net] Bluetooth: missed cpu_to_le16 conversion in hci_init4_req (Gopal Tiwari) [1838924]
+- [hid] Bluetooth: hidp: Fix assumptions on the return value of hidp_send_message (Gopal Tiwari) [1838924]
+- [net] Bluetooth: mgmt: Use struct_size() helper (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Add support for utilizing Fast Advertising Interval (Gopal Tiwari) [1838924]
+- [net] Bluetooth: 6lowpan: Make variable header_ops constant (Gopal Tiwari) [1838924]
+- [net] Revert "Bluetooth: validate BLE connection interval updates" (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: print Intel fw build version in power-on boot (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_h5: Switch from BT_ERR to bt_dev_err where possible (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: bfusb: Switch from BT_ERR to bt_dev_err where possible (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Enable erroneous data reporting if WBS is supported (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Replace devm_gpiod_get() with devm_gpiod_get_optional() (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Make bt_en and susclk not mandatory for QCA Rome (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btqca: Fix the NVM baudrate tag offcet for wcn3991 (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Not send vendor pre-shutdown command for QCA Rome (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Support querying for WBS support through MGMT (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Add flag to define wideband speech capability (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_h4: Remove a redundant assignment in 'h4_flush()' (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_h4: Fix a typo in a comment (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_h5: Move variable into local scope (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Bug fixes while collecting controller memory dump (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_h5: btrtl: Add support for RTL8822C (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: Fix a typo in Kconfig (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_uart: Replace zero-length array with flexible-array member (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_intel: Replace zero-length array with flexible-array member (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btintel: Replace zero-length array with flexible-array member (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Add support for 13d3:3548 Realtek 8822CE device (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Optimized code while enabling clocks for BT SOC (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Enable clocks required for BT SOC (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: Use kvmalloc for FW allocations (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Enable power off/on support during hci down/up for QCA Rome (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Retry btsoc initialize when it fails (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Add QCA Rome power off support to the qca_power_shutdown() (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_bcm: enable IRQ capability from devicetree (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_vhci: Add support for ISO packets (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_h4: Add support for ISO packets (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btsdio: Check for valid packet type (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Add definitions (Gopal Tiwari) [1838924]
+- [net] Bluetooth: Add support for (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_h5: Add support for ISO packets (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Add qca_power_on() API to support both wcn399x and Rome power up (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btbcm : Fix warning about missing blank lines after declarations (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Remove set but not used variable 'opcode' (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Use vfree() instead of kfree() (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Add support for 04ca:3021 QCA_ROME device (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Collect controller memory dump during SSR (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_bcm: Drive RTS only for BCM43438 (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Replace of_device_get_match_data with device_get_match_data (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btbcm: Add missing static inline in header (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Disable runtime suspend on Realtek devices (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: fix memory leak on fw (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: fix non-atomic allocation in completion handler (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_bcm: Support pcm params in dts (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btbcm: Support pcm configuration (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_bcm: Disallow set_baudrate for BCM4354 (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Edit the logical value for Realtek Bluetooth reset (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btbcm: Use the BDADDR_PROPERTY quirk (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btbcm: Add entry for BCM4335A0 UART bluetooth (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btbcm: Add entry for BCM4334B0 UART Bluetooth (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: fix PM leak in error case of setup (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btqca: Rename ROME specific variables to generic variables (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btmtksdio: add MODULE_DEVICE_TABLE() (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: Fix invalid-free in bcsp_close() (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: add PM support (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_bcm: Add compatible string for BCM43540 (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: remove unneeded semicolon (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_bcm: Fix RTS handling during startup (Gopal Tiwari) [1838924]
+- [bluetooth] Revert "Bluetooth: hci_qca: Add delay for wcn3990 stability" (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Remove return statement in btintel_reset_to_bootloader (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Split qca_power_setup() (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Use regulator bulk enable/disable (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Don't vote for specific voltage (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Update regulator_set_load() usage (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Add delay for wcn3990 stability (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Trigger Intel FW download error recovery (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btwilink: drop superseded driver (Gopal Tiwari) [1838924]
+- [bluetooth] Revert "Bluetooth: hci_ll: set operational frequency earlier" (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: Fix an issue for the incorrect error return code (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Use IS_ENABLED instead of #ifdef (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: print FW version after FW download (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: avoid unused function warning (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_nokia: Save a few cycles in 'nokia_enqueue()' (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Use cmd_timeout to reset Realtek device (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: Fix an issue that failing to download the FW which size is over 32K bytes (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: Remove trailing newline from calls to rtl_dev macros (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Set HCI_QUIRK_SIMULTANEOUS_DISCOVERY for QCA UART Radio (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: Remove redundant prefix from calls to rtl_dev macros (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: Set HCI_QUIRK_SIMULTANEOUS_DISCOVERY (Gopal Tiwari) [1838924]
+- [bluetooth] bluetooth: bcm: Add support for loading firmware for BCM4345C5 (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: Add firmware version print (Gopal Tiwari) [1838924]
+- [bluetooth] bluetooth: hci_bcm: Give more time to come out of reset (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: wait for Pre shutdown complete event before sending the Power off pulse (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_bcm: Fix -Wunused-const-variable warnings (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btusb: Fix suspend issue for Realtek devices (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Remove redundant initializations to zero (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: Make structure qca_proto constant (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: bpa10x: change return value (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: hci_qca: disable irqs when spinlock is acquired (Gopal Tiwari) [1838924]
+- [bluetooth] Bluetooth: btrtl: Additional Realtek 8822CE Bluetooth devices (Gopal Tiwari) [1838924]
+
+* Mon Jul 13 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-225.el8]
+- [powerpc] powerpc/papr_scm: Implement support for PAPR_PDSM_HEALTH (Gustavo Duarte) [1782178]
+- [powerpc] ndctl/papr_scm, uapi: Add support for PAPR nvdimm specific methods (Gustavo Duarte) [1782178]
+- [powerpc] powerpc/papr_scm: Improve error logging and handling papr_scm_ndctl() (Gustavo Duarte) [1782178]
+- [powerpc] powerpc/papr_scm: Fetch nvdimm health information from PHYP (Gustavo Duarte) [1782178]
+- [lib] seq_buf: Export seq_buf_printf (Gustavo Duarte) [1782178]
+- [firmware] efi: Restrict efivar_ssdt_load when the kernel is locked down (Lenny Szubowicz) [1852949]
+- [netdrv] vmxnet3: allow rx flow hash ops only when rss is enabled (Cathy Avery) [1845417]
+- [netdrv] net: vmxnet3: fix possible buffer overflow caused by bad DMA value in vmxnet3_get_rss() (Cathy Avery) [1845417]
+- [netdrv] vmxnet3: use correct hdr reference when packet is encapsulated (Cathy Avery) [1845417]
+- [netdrv] vmxnet3: update to version 4 (Cathy Avery) [1845417]
+- [netdrv] vmxnet3: add geneve and vxlan tunnel offload support (Cathy Avery) [1845417]
+- [netdrv] vmxnet3: add support to get/set rx flow hash (Cathy Avery) [1845417]
+- [netdrv] vmxnet3: prepare for version 4 changes (Cathy Avery) [1845417]
+- [netdrv] vmxnet3: let core reject the unsupported coalescing parameters (Cathy Avery) [1845417]
+- [netdrv] vmxnet3: use new helper tcp_v6_gso_csum_prep (Cathy Avery) [1845417]
+- [netdrv] vmxnet3: Remove always false conditional statement (Cathy Avery) [1845417]
+- [kernel] kexec: do not verify the signature without the lockdown or mandatory signature (Lianbo Jiang) [1836148]
+- [fs] block: Fix use-after-free in blkdev_get() (Ming Lei) [1847779]
+- [kernel] kernel: rh_features: fix reading empty feature list from /proc (Jiri Benc) [1843064] {CVE-2020-10774}
+- [netdrv] ice: cleanup unsigned loops (Jonathan Toppins) [1781403]
+- [netdrv] ice: fix usage of incorrect variable (Jonathan Toppins) [1781403]
+- [netdrv] ice: Fix bad register reads (Jonathan Toppins) [1781403]
+- [netdrv] ice: check for compatibility between DDP package and firmware (Jonathan Toppins) [1781403]
+- [netdrv] ice: Check if unicast MAC exists before setting VF MAC (Jonathan Toppins) [1781403]
+- [netdrv] ice: print Rx MDD auto reset message before VF reset (Jonathan Toppins) [1781403]
+- [netdrv] ice: Call ice_aq_set_mac_cfg (Jonathan Toppins) [1781403]
+- [netdrv] ice: Implement aRFS (Jonathan Toppins) [1781403]
+- [netdrv] ice: Restore filters following reset (Jonathan Toppins) [1781403]
+- [netdrv] ice: Enable flex-bytes support (Jonathan Toppins) [1781403]
+- [netdrv] ice: Support IPv6 Flow Director filters (Jonathan Toppins) [1781403]
+- [netdrv] ice: Support IPv4 Flow Director filters (Jonathan Toppins) [1781403]
+- [netdrv] ice: Support displaying ntuple rules (Jonathan Toppins) [1781403]
+- [netdrv] ice: Initialize Flow Director resources (Jonathan Toppins) [1781403]
+- [netdrv] ice: Rename build_ctob to ice_build_ctob (Jonathan Toppins) [1781405]
+- [netdrv] ice: remove unnecessary backslash (Jonathan Toppins) [1781405]
+- [netdrv] ice: remove unnecessary check (Jonathan Toppins) [1781405]
+- [netdrv] ice: remove unnecessary expression that is always true (Jonathan Toppins) [1781405]
+- [netdrv] ice: Fix check for removing/adding mac filters (Jonathan Toppins) [1781405]
+- [netdrv] ice: refactor filter functions (Jonathan Toppins) [1781405]
+- [netdrv] ice: Fix resource leak on early exit from function (Jonathan Toppins) [1781405]
+- [netdrv] ice: cleanup vf_id signedness (Jonathan Toppins) [1781405]
+- [netdrv] ice: Fix casting issues (Jonathan Toppins) [1781405]
+- [netdrv] ice: Provide more meaningful error message (Jonathan Toppins) [1781405]
+- [netdrv] ice: Fix probe/open race condition (Jonathan Toppins) [1781405]
+- [netdrv] ice: only drop link once when setting pauseparams (Jonathan Toppins) [1781405]
+- [netdrv] ice: Fix check for contiguous TCs (Jonathan Toppins) [1781405]
+- [netdrv] ice: Don't reset and rebuild for Tx timeout on PFC enabled queue (Jonathan Toppins) [1781405]
+- [netdrv] ice: Add VF promiscuous support (Jonathan Toppins) [1781405]
+- [netdrv] ice: Add support for tunnel offloads (Jonathan Toppins) [1781405]
+- [netdrv] ice: report netlist version in .info_get (Jonathan Toppins) [1781405]
+- [netdrv] ice: add additional E810 device id (Jonathan Toppins) [1725447]
+- [x86] x86/split_lock: Update to use X86_MATCH_INTEL_FAM6_MODEL() (Prarit Bhargava) [1482757]
+- [x86] x86/intel_split_lock: Disable split lock detector by default in RHEL8 (Prarit Bhargava) [1482757]
+- [x86] x86/split_lock: Provide handle_guest_split_lock() (Prarit Bhargava) [1482757]
+- [x86] x86/split_lock: Add Tremont family CPU models (Prarit Bhargava) [1482757]
+- [x86] x86/split_lock: Bits in IA32_CORE_CAPABILITIES are not architectural (Prarit Bhargava) [1482757]
+- [tools] tools arch x86: Sync asm/cpufeatures.h with the kernel sources (Prarit Bhargava) [1482757]
+- [tools] tools arch x86: Sync the msr-index.h copy with the kernel sources (Prarit Bhargava) [1482757]
+- [x86] x86/split_lock: Avoid runtime reads of the TEST_CTRL MSR (Prarit Bhargava) [1482757]
+- [x86] x86/split_lock: Rework the initialization flow of split lock detection (Prarit Bhargava) [1482757]
+- [x86] x86/split_lock: Enable split lock detection by kernel (Prarit Bhargava) [1482757]
+- [netdrv] drivers/net/b44: Change to non-atomic bit operations on pwol_mask (Prarit Bhargava) [1482757]
+- [x86] x86/cpu: Align cpu_caps_cleared and cpu_caps_set to unsigned long (Prarit Bhargava) [1482757]
+- [x86] x86/boot: Make the GDT 8-byte aligned (Prarit Bhargava) [1482757]
+- [wireless] wlcore: simplify/fix/optimize reg_ch_conf_pending operations (Prarit Bhargava) [1482757]
+- [uapi] prctl: PR_{G, S}ET_IO_FLUSHER to support controlling memory reclaim (Waiman Long) [1757240]
+
+* Fri Jul 10 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-224.el8]
+- [kernel] kernel: fork: avoid utilizing a non-initialized task_struct_rh pointer in the error exit path (Rafael Aquini) [1838475 1820041]
+- [infiniband] RDMA/ipoib: Fix ABBA deadlock with ipoib_reap_ah() (Kamal Heib) [1846063]
+- [infiniband] RDMA/ipoib: Return void from ipoib_ib_dev_stop() (Kamal Heib) [1846063]
+- [powerpc] mm/pkeys: Make pkey access check work on execute_only_key (Greg Kurz) [1748772]
+- [powerpc] mm/book3s64: Fix MADV_DONTNEED and parallel page fault race (Greg Kurz) [1748772]
+- [mm] change pmdp_huge_get_and_clear_full take vm_area_struct as arg (Greg Kurz) [1748772]
+- [powerpc] mm/book3s64: Avoid sending IPI on clearing PMD (Greg Kurz) [1748772]
+- [powerpc] 64s: Fix THP PMD collapse serialisation (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: Use pte_present instead of opencoding _PAGE_PRESENT check (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: Use find_kvm_host_pte in kvmppc_get_hpa (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: use find_kvm_host_pte in kvmppc_book3s_instantiate_page (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: Avoid using rmap to protect parallel page table update (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: use find_kvm_host_pte in pute_tce functions (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: Use find_kvm_host_pte in h_enter (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: Use find_kvm_host_pte in page fault handler (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: Add helper for host page table walk (Greg Kurz) [1748772]
+- [powerpc] kvm: ppc: Fix nested guest RC bits update (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: Use kvm helpers to walk shadow or secondary table (Greg Kurz) [1748772]
+- [powerpc] kvm/nested: Add helper to walk nested shadow linux page table (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: Add helper to walk partition scoped linux page table (Greg Kurz) [1748772]
+- [powerpc] kvm/book3s: switch from raw_spin_*lock to arch_spin_lock (Greg Kurz) [1748772]
+- [powerpc] perf/callchain: Use __get_user_pages_fast in read_user_stack_slow (Greg Kurz) [1748772]
+- [powerpc] mce: Don't reload pte val in addr_to_pfn (Greg Kurz) [1748772]
+- [powerpc] book3s64/hash: Use the pte_t address from the caller (Greg Kurz) [1748772]
+- [powerpc] hash64: Restrict page table lookup using init_mm with __flush_hash_table_range (Greg Kurz) [1748772]
+- [powerpc] mm/hash64: use _PAGE_PTE when checking for pte_present (Greg Kurz) [1748772]
+- [powerpc] pkeys: Check vma before returning key fault error to the user (Greg Kurz) [1748772]
+- [powerpc] pkeys: Avoid using lockless page table walk (Greg Kurz) [1748772]
+- [powerpc] mmu: add is_strict_kernel_rwx() helper (Greg Kurz) [1748772]
+- [powerpc] mm: move update_mmu_cache() into book3s hash utils (Greg Kurz) [1748772]
+- [powerpc] mm: Move book3s32 specifics in subdirectory mm/book3s64 (Greg Kurz) [1748772]
+- [powerpc] mm: move FSL_BOOK3 version of update_mmu_cache() (Greg Kurz) [1748772]
+- [powerpc] mm: define empty update_mmu_cache() as static inline (Greg Kurz) [1748772]
+- [powerpc] change CONFIG_PPC_STD_MMU to CONFIG_PPC_BOOK3S (Greg Kurz) [1748772]
+- [powerpc] mm: don't use _PAGE_EXEC for calling hash_preload() (Greg Kurz) [1748772]
+- [powerpc] change CONFIG_PPC_STD_MMU_32 to CONFIG_PPC_BOOK3S_32 (Greg Kurz) [1748772]
+- [powerpc] handover page flags with a pgprot_t parameter (Greg Kurz) [1748772]
+- [powerpc] mm: properly set PAGE_KERNEL flags in ioremap() (Greg Kurz) [1748772]
+- [powerpc] 32: Add ioremap_wt() and ioremap_coherent() (Greg Kurz) [1748772]
+- [netdrv] crypto/chcr: error seen if CONFIG_CHELSIO_TLS_DEVICE isn't set (Christoph von Recklinghausen) [1797945]
+- [crypto] cxgb4/chcr: avoid -Wreturn-local-addr warning (Christoph von Recklinghausen) [1797945]
+- [netdrv] cxgb4: fix EOTID leak when disabling TC-MQPRIO offload (Christoph von Recklinghausen) [1797945]
+- [netdrv] cxgb4/chcr: Enable ktls settings at run time (Christoph von Recklinghausen) [1797945]
+- [netdrv] cxgb4: cleanup error code in setup_sge_queues_uld() (Christoph von Recklinghausen) [1797945]
+- [netdrv] cxgb4: add adapter hotplug support for ULDs (Christoph von Recklinghausen) [1797945]
+- [crypto] Crypto: chelsio - Fixes a deadlock between rtnl_lock and uld_mutex (Christoph von Recklinghausen) [1797945]
+- [netdrv] cxgb4/chcr: nic-tls stats in ethtool (Christoph von Recklinghausen) [1797945]
+- [crypto] crypto/chcr: fix incorrect ipv6 packet length (Christoph von Recklinghausen) [1797945]
+- [crypto] crypto/chcr: Add missing include file <linux/highmem.h> (Christoph von Recklinghausen) [1797945]
+- [crypto] cxgb4/chcr: Add ipv6 support and statistics (Christoph von Recklinghausen) [1797945]
+- [crypto] chcr: Handle first or middle part of record (Christoph von Recklinghausen) [1797945]
+- [crypto] chcr: handle partial end part of a record (Christoph von Recklinghausen) [1797945]
+- [crypto] cxgb4/chcr: complete record tx handling (Christoph von Recklinghausen) [1797945]
+- [crypto] cxgb4/chcr: Save tx keys and handle HW response (Christoph von Recklinghausen) [1797945]
+- [crypto] cxgb4/chcr : Register to tls add and del callback (Christoph von Recklinghausen) [1797945]
+- [hwmon] hwmon: (acpi_power_meter) Change log level for 'unsafe software power cap' (Al Stone) [1749529]
+- [netdrv] net/mlx4_core: fix a memory leak bug (Alaa Hleihel) [1846792]
+- [netdrv] net/mlx4_core: Add missing iounmap() in error path (Alaa Hleihel) [1846792]
+- [netdrv] net/mlx5: E-switch, Fix error unwinding flow for steering init failure (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: E-Switch, Enable chains only if regs loopback is enabled (Alaa Hleihel) [1848830 1846791]
+- [netdrv] net/mlx5e: en_tc: Rely just on register loopback for tunnel restoration (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: E-Switch, Skip restore modify header between prios of same chain (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5e: CT: Fix ipv6 nat header rewrite actions (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: Don't fail driver on failure to create debugfs (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: Add missing mutex destroy (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: Fix devlink objects and devlink device unregister sequence (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: Wait for inactive autogroups (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: Disable reload while removing the device (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5e: Fix ethtool hfunc configuration change (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5e: Fix repeated XSK usage on one channel (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: DR, Split RX and TX lock for parallel insertion (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: DR, Add a spinlock to protect the send ring (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: DR, Fix freeing in dr_create_rc_qp() (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: Fix fatal error handling during device load (Alaa Hleihel) [1846791 1841363]
+- [netdrv] net/mlx5: drain health workqueue in case of driver load error (Alaa Hleihel) [1846791 1841363]
+- [netdrv] net/mlx5: Drain wq first during PCI device removal (Alaa Hleihel) [1846791]
+- [netdrv] net/mlx5: Have single error unwinding path (Alaa Hleihel) [1846791]
+- [netdrv] mlx5: reject unsupported coalescing params (Alaa Hleihel) [1846791]
+- [crypto] Crypto: chelsio - Fixes a hang issue during driver registration (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - Use multiple txq/rxq per tfm to process the requests (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - Recalculate iv only if it is needed (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - un-register crypto algorithms (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - Endianess bug in create_authenc_wr (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - Print the chcr driver information while module load (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - This fixes the kernel panic which occurs during a libkcapi test (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - This fixes the libkcapi's cbc(aes) aio fail test cases (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - Resetting crypto counters during the driver unregister (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - fix writing tfm flags to wrong place (Vishal Kulkarni) [1845004]
+- [crypto] crypto: chelsio - calculating tx_channel_id as per the max number of channels (Vishal Kulkarni) [1845004]
+- [firmware] tpm: check event log version before reading final events (Jerry Snitselaar) [1839284]
+- [char] tpm: Fix TIS locality timeout problems (Jerry Snitselaar) [1840789]
+
+* Tue Jul 07 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-223.el8]
+- [vfio] vfio/pci: Clear error and request eventfd ctx after releasing (Alex Williamson) [1847731]
+- [fs] pNFS/flexfiles: Fix list corruption if the mirror count changes (Benjamin Coddington) [1852500]
+- [netdrv] ionic: update the queue count on open (Michal Schmidt) [1846879]
+- [tools] turbostat: Use sched_getcpu() instead of hardcoded cpu 0 (Prarit Bhargava) [1852123]
+- [infiniband] RDMA/hfi1: Fix null-pointer dereference when calling mmu_notifier_register (Kamal Heib) [1850345]
+- [platform] Revert "intel-speed-select: Firmware workarounds for Icelake" (Prarit Bhargava) [1820597]
+- [powerpc] powerpc/crashkernel: Take "mem=" option into account (Pingfan Liu) [1747969]
+- [tools] perf stat: Increase perf metric output resolution (Michael Petlan) [1844632]
+- [tools] perf vendor events power9: Add missing metrics to POWER9 'cpi_breakdown' (Michael Petlan) [1844632]
+- [tools] perf metrics: Fix parse errors in power8 metrics (Michael Petlan) [1844632]
+- [tools] perf metrics: Fix parse errors in power9 metrics (Michael Petlan) [1844632]
+- [s390] s390/kaslr: add support for R_390_JMP_SLOT relocation type (Claudio Imbrenda) [1850908]
+- [s390] s390: prevent leaking kernel address in BEAR (Claudio Imbrenda) [1850907]
+- [s390] s390/cpumf: Adjust registration of s390 PMU device drivers (Claudio Imbrenda) [1850906]
+- [firmware] efi/x86: Add TPM related EFI tables to unencrypted mapping checks (Lenny Szubowicz) [1849922]
+- [security] selinux: allow reading labels before policy is loaded (Ondrej Mosnacek) [1839819]
+- [idle] intel_idle: Introduce 'use_acpi' module parameter (Prarit Bhargava) [1849666]
+- [net] xsk: Add overflow check for u64 division, stored into u32 (Jiri Benc) [1838075]
+- [tools] selftests: netdevsim: Always initialize 'RET' variable (Jiri Benc) [1838075]
+- [netdrv] netdevsim: Ensure policer drop counter always increases (Jiri Benc) [1838075]
+- [tools] selftests/bpf: Check for correct program attach/detach in xdp_attach test (Jiri Benc) [1838075]
+- [tools] libbpf: Fix type of old_fd in bpf_xdp_set_link_opts (Jiri Benc) [1838075]
+- [net] xsk: Add missing check on user supplied headroom size (Jiri Benc) [1838075]
+- [net] xdp: Reset prog in dev_change_xdp_fd when fd is negative (Jiri Benc) [1838075]
+- [netdrv] veth: rely on peer veth_rq for ndo_xdp_xmit accounting (Jiri Benc) [1838075]
+- [netdrv] veth: rely on veth_rq in veth_xdp_flush_bq signature (Jiri Benc) [1838075]
+- [net] page pool: allow to pass zero flags to page_pool_init() (Jiri Benc) [1838075]
+- [tools] selftests/bpf: Add tests for attaching XDP programs (Jiri Benc) [1838075]
+- [tools] libbpf: Add function to set link XDP fd while specifying old program (Jiri Benc) [1838075]
+- [tools] Add EXPECTED_FD-related definitions in if_link.h (Jiri Benc) [1838075]
+- [net] xdp: Support specifying expected existing program when attaching XDP (Jiri Benc) [1838075]
+- [netdrv] veth: remove atomic64_add from veth_xdp_xmit hotpath (Jiri Benc) [1838075]
+- [netdrv] veth: introduce more xdp counters (Jiri Benc) [1838075]
+- [netdrv] veth: distinguish between rx_drops and xdp_drops (Jiri Benc) [1838075]
+- [netdrv] veth: introduce more specialized counters in veth_stats (Jiri Benc) [1838075]
+- [netdrv] veth: move xdp stats in a dedicated structure (Jiri Benc) [1838075]
+- [net] xdp: Replace zero-length array with flexible-array member (Jiri Benc) [1838075]
+- [net] bpf: inet_diag: Dump bpf_sk_storages in inet_diag_dump() (Jiri Benc) [1838075]
+- [net] bpf: INET_DIAG support in bpf_sk_storage (Jiri Benc) [1838075]
+- [net] inet_diag: Move the INET_DIAG_REQ_BYTECODE nlattr to cb->data (Jiri Benc) [1838075]
+- [net] inet_diag: Refactor inet_sk_diag_fill(), dump(), and dump_one() (Jiri Benc) [1838075]
+- [net] inet_diag: return classid for all socket types (Jiri Benc) [1838075]
+- [net] inet_diag: fix reporting cgroup classid and fallback to priority (Jiri Benc) [1838075]
+- [net] Remove unneeded export of a couple of xdp generic functions (Jiri Benc) [1838075]
+- [net] page_pool: API cleanup and comments (Jiri Benc) [1838075]
+- [net] bpf, sockmap: Replace zero-length array with flexible-array member (Jiri Benc) [1838075]
+- [netdrv] geneve: allow changing DF behavior after creation (Sabrina Dubroca) [1847861]
+- [net] netfilter: nf_tables: add missing ->release_ops() in error path of newrule() (Andrea Claudi) [1846236]
+- [net] netfilter: nft_compat: use .release_ops and remove list of extension (Andrea Claudi) [1846236]
+- [net] ipv6: fix IPV6_ADDRFORM operation logic (Hangbin Liu) [1842025]
+- [net] ipv6: fix restrict IPV6_ADDRFORM operation (Hangbin Liu) [1842025]
+- [net] netfilter: nat: fix error handling upon registering inet hook (Florian Westphal) [1579145]
+- [net] netfilter: nf_tables: fix module autoload for redir (Florian Westphal) [1579145]
+- [net] netfilter: nf_tables: fix module autoload with inet family (Florian Westphal) [1579145]
+- [net] netfilter: nft_chain_nat: inet family is missing module ownership (Florian Westphal) [1579145]
+- [net] netfilter: nf_tables: Support auto-loading for inet nat (Florian Westphal) [1579145]
+- [net] netfilter: nft_redir: fix module autoload with ip4 (Florian Westphal) [1579145]
+- [net] netfilter: nat: fix udp checksum corruption (Florian Westphal) [1579145]
+- [tools] kselftests: extend nft_nat with inet family based nat hooks (Florian Westphal) [1579145]
+- [net] netfilter: nft_redir: add inet support (Florian Westphal) [1579145]
+- [net] netfilter: nft_masq: add inet support (Florian Westphal) [1579145]
+- [net] netfilter: nf_tables: merge route type into core (Florian Westphal) [1579145]
+- [net] netfilter: nat: add inet family nat support (Florian Westphal) [1579145]
+- [net] netfilter: nat: don't register device notifier twice (Florian Westphal) [1579145]
+- [net] netfilter: nf_tables: merge ipv4 and ipv6 nat chain types (Florian Westphal) [1579145]
+- [net] netfilter: nf_tables: nat: merge nft_masq protocol specific modules (Florian Westphal) [1579145]
+- [net] netfilter: nf_tables: nat: merge nft_redir protocol specific modules (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove nf_nat_l3proto.h and nf_nat_core.h (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove l3proto struct (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove csum_recalc hook (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove csum_update hook (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove l3 manip_pkt hook (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove nf_nat_l4proto.h (Florian Westphal) [1579145]
+- [net] netfilter: nat: merge nf_nat_ipv4, 6 into nat core (Florian Westphal) [1579145]
+- [net] netfilter: nat: fix spurious connection timeouts (Florian Westphal) [1579145]
+- [net] netfilter: nat: move nlattr parse and xfrm session decode to core (Florian Westphal) [1579145]
+- [net] netfilter: nat: merge ipv4 and ipv6 masquerade functionality (Florian Westphal) [1579145]
+- [net] netfilter: kconfig: nat related expression depend on nftables core (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: fix bogus port values for other l4 protocols (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: avoid unneeded nf_conntrack_l4proto lookups (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: remove pernet l4 proto register interface (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: remove remaining l4proto indirect packet calls (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: remove module owner field (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: remove invert_tuple callback (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: remove pkt_to_tuple callback (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: udp: set stream timeout to 2 minutes (Florian Westphal) [1579145]
+- [net] netfilter: conntrack: udp: only extend timeout to stream mode after 2s (Florian Westphal) [1579145]
+- [net] netfilter: nat: un-export nf_nat_used_tuple (Florian Westphal) [1579145]
+- [net] netfilter: nat: fix ICMP header corruption on ICMP errors (Florian Westphal) [1579145]
+- [net] netfilter: nat: fix icmp id randomization (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove nf_nat_l4proto struct (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove l4proto->manip_pkt (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove l4proto->nlattr_to_range (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove l4proto->in_range (Florian Westphal) [1579145]
+- [net] netfilter: nat: fold in_range indirection into caller (Florian Westphal) [1579145]
+- [net] netfilter: nat: remove l4proto->unique_tuple (Florian Westphal) [1579145]
+- [net] netfilter: nat: un-export nf_nat_l4proto_unique_tuple (Florian Westphal) [1579145]
+- [net] netfilter: remove NF_NAT_RANGE_PROTO_RANDOM support (Florian Westphal) [1579145]
+- [x86] kvm: x86/pmu: Tweak kvm_pmu_get_msr to pass 'struct msr_data' in (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: do not pass poisoned hva to __kvm_set_memory_region (Vitaly Kuznetsov) [1849987]
+- [tools] kvm: selftests: fix sync_with_host() in smm_test (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: async_pf: Inject 'page ready' event only if 'page not present' was previously injected (Vitaly Kuznetsov) [1849987]
+- [x86] revert "kvm: async_pf: Fix #DF due to inject "Page not Present" and "Page Ready" exceptions simultaneously" (Vitaly Kuznetsov) [1849987]
+- [virt] kvm: async_pf: Cleanup kvm_setup_async_pf() (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: i8254: remove redundant assignment to pointer s (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: respect singlestep when emulating instruction (Vitaly Kuznetsov) [1849987]
+- [tools] kvm: selftests: Don't probe KVM_CAP_HYPERV_ENLIGHTENED_VMCS when nested VMX is unsupported (Vitaly Kuznetsov) [1849987]
+- [tools] kvm: selftests: do not substitute SVM/VMX check with KVM_CAP_NESTED_STATE check (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: nvmx: Consult only the "basic" exit reason when routing nested exit (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: Unexport x86_fpu_cache and make it static (Vitaly Kuznetsov) [1849987]
+- [tools] kvm: selftests: Ignore KVM 5-level paging support for VM_MODE_PXXV48_4K (Vitaly Kuznetsov) [1849987]
+- [virt] kvm: x86: Fix APIC page invalidation race (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: svm: fix calls to is_intercept (Vitaly Kuznetsov) [1849987]
+- [tools] kvm: selftests: fix vmx_preemption_timer_test build with GCC10 (Vitaly Kuznetsov) [1849987]
+- [tools] kvm: selftests: Add x86_64/debug_regs to .gitignore (Vitaly Kuznetsov) [1849987]
+- [x86] revert "kvm: x86: work around leak of uninitialized stack contents" (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: vmx: Properly handle kvm_read/write_guest_virt*() result (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: emulate reserved nops from 0f/18 to 0f/1f (Vitaly Kuznetsov) [1849987]
+- [tools] kvm: selftests: Fix build with "make ARCH=x86_64" (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: minor code refactor and comments fixup around dirty logging (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: avoid unnecessary rmap walks when creating/moving slots (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: remove unnecessary rmap walk of read-only memslots (Vitaly Kuznetsov) [1849987]
+- [virt] kvm: Use vmemdup_user() (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: Move MPK feature detection to common code (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: x86: Assign correct value to array.maxnent (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: let kvm_destroy_vm_debugfs clean up vCPU debugfs directories (Vitaly Kuznetsov) [1849987]
+- [x86] kvm: Handle reads of SandyBridge RAPL PMU MSRs rather than injecting #GP (Vitaly Kuznetsov) [1849987]
+- [documentation] docs: virt/kvm: close inline string literal (Vitaly Kuznetsov) [1849987]
+- [documentation] docs: kvm: Fix KVM_KVMCLOCK_CTRL API doc (Vitaly Kuznetsov) [1849987]
+- [x86] arch/x86/kvm/svm/sev.c: change flag passed to GUP fast in sev_pin_memory() (Vitaly Kuznetsov) [1849987]
+- [virt] kvm/eventfd: remove unneeded conversion to bool (Vitaly Kuznetsov) [1849987]
+- [tools] selftests: fix kvm relocatable native/cross builds and installs (Vitaly Kuznetsov) [1849987]
+- [virt] kvm: x86: move kvm_create_vcpu_debugfs after last failure point (Vitaly Kuznetsov) [1849987]
+- [powerpc] xive: Share the event-queue page with the Hypervisor (Michael Roth) [1837232]
+- [powerpc] kvm: ppc: book3s hv: Read ibm, secure-memory nodes (Michael Roth) [1837232]
+- [powerpc] kvm: ppc: book3s hv: Relax check on H_SVM_INIT_ABORT (Michael Roth) [1837232]
+
+* Wed Jul 01 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-222.el8]
+- [scsi] scsi: be2iscsi: Use scnprintf() for avoiding potential buffer overflow (Maurizio Lombardi) [1849586]
+- [edac] EDAC/i10nm: Update driver to support different bus number config register offsets (Aristeu Rozanski) [1838508]
+- [edac] EDAC, {skx, i10nm}: Make some configurations CPU model specific (Aristeu Rozanski) [1838508]
+- [fs] fuse: copy_file_range should truncate cache (Miklos Szeredi) [1849786]
+- [fs] fuse: fix copy_file_range cache issues (Miklos Szeredi) [1849786]
+- [fs] fuse: update attr_version counter on fuse_notify_inval_inode() (Miklos Szeredi) [1849786]
+- [fs] fuse: don't check refcount after stealing page (Miklos Szeredi) [1849786]
+- [fs] fuse: fix weird page warning (Miklos Szeredi) [1849786]
+- [fs] fuse: use dump_page (Miklos Szeredi) [1849786]
+- [fs] fuse: always allow query of st_dev (Miklos Szeredi) [1849786]
+- [fs] fuse: always flush dirty data on close(2) (Miklos Szeredi) [1849786]
+- [fs] fuse: invalidate inode attr in writeback cache mode (Miklos Szeredi) [1849786]
+- [fs] virtiofs: schedule blocking async replies in separate worker (Miklos Szeredi) [1849786]
+- [fs] fuse: Support RENAME_WHITEOUT flag (Miklos Szeredi) [1849786]
+- [fs] fuse: don't overflow LLONG_MAX with end offset (Miklos Szeredi) [1849786]
+- [fs] fix up iter on short count in fuse_direct_io() (Miklos Szeredi) [1849786]
+- [fs] fuse: fix fuse_send_readpages() in the syncronous read case (Miklos Szeredi) [1849786]
+- [fs] fuse: fix Kconfig indentation (Miklos Szeredi) [1849786]
+- [fs] virtiofs: Use completions while waiting for queue to be drained (Miklos Szeredi) [1849786]
+- [fs] virtiofs: Do not send forget request "struct list_head" element (Miklos Szeredi) [1849786]
+- [fs] virtiofs: Use a common function to send forget (Miklos Szeredi) [1849786]
+- [fs] virtiofs: Fix old-style declaration (Miklos Szeredi) [1849786]
+- [fs] fuse: verify nlink (Miklos Szeredi) [1849786]
+- [fs] fuse: verify write return (Miklos Szeredi) [1849786]
+- [fs] fuse: verify attributes (Miklos Szeredi) [1849786]
+- [fs] fuse: redundant get_fuse_inode() calls in fuse_writepages_fill() (Miklos Szeredi) [1849786]
+- [fs] fuse: truncate pending writes on O_TRUNC (Miklos Szeredi) [1849786]
+- [fs] fuse: flush dirty data/metadata before non-truncate setattr (Miklos Szeredi) [1849786]
+- [fs] ovl: initialize error in ovl_copy_xattr (Miklos Szeredi) [1849770]
+- [fs] ovl: fix redirect traversal on metacopy dentries (Miklos Szeredi) [1849770]
+- [fs] ovl: initialize OVL_UPPERDATA in ovl_lookup() (Miklos Szeredi) [1849770]
+- [fs] ovl: use only uppermetacopy state in ovl_lookup() (Miklos Szeredi) [1849770]
+- [fs] ovl: simplify setting of origin for index lookup (Miklos Szeredi) [1849770]
+- [fs] ovl: fix out of bounds access warning in ovl_check_fb_len() (Miklos Szeredi) [1849770]
+- [fs] ovl: return required buffer size for file handles (Miklos Szeredi) [1849770]
+- [fs] ovl: sync dirty data when remounting to ro mode (Miklos Szeredi) [1849770]
+- [fs] ovl: resolve more conflicting mount options (Miklos Szeredi) [1849770]
+- [fs] ovl: potential crash in ovl_fid_to_fh() (Miklos Szeredi) [1849770]
+- [fs] ovl: clear ATTR_OPEN from attr->ia_valid (Miklos Szeredi) [1849770]
+- [fs] ovl: clear ATTR_FILE from attr->ia_valid (Miklos Szeredi) [1849770]
+- [documentation] ovl: document xino expected behavior (Miklos Szeredi) [1849770]
+- [fs] ovl: enable xino automatically in more cases (Miklos Szeredi) [1849770]
+- [fs] ovl: avoid possible inode number collisions with xino=on (Miklos Szeredi) [1849770]
+- [fs] ovl: use a private non-persistent ino pool (Miklos Szeredi) [1849770]
+- [fs] ovl: fix WARN_ON nlink drop to zero (Miklos Szeredi) [1849770]
+- [fs] ovl: fix a typo in comment (Miklos Szeredi) [1849770]
+- [fs] ovl: replace zero-length array with flexible-array member (Miklos Szeredi) [1849770]
+- [fs] ovl: ovl_obtain_alias(): don't call d_instantiate_anon() for old (Miklos Szeredi) [1849770]
+- [fs] ovl: strict upper fs requirements for remote upper fs (Miklos Szeredi) [1849770]
+- [fs] ovl: check if upper fs supports RENAME_WHITEOUT (Miklos Szeredi) [1849770]
+- [fs] ovl: allow remote upper (Miklos Szeredi) [1849770]
+- [fs] ovl: decide if revalidate needed on a per-dentry basis (Miklos Szeredi) [1849770]
+- [fs] ovl: separate detection of remote upper layer from stacked overlay (Miklos Szeredi) [1849770]
+- [fs] ovl: restructure dentry revalidation (Miklos Szeredi) [1849770]
+- [fs] ovl: ignore failure to copy up unknown xattrs (Miklos Szeredi) [1849770]
+- [documentation] ovl: document permission model (Miklos Szeredi) [1849770]
+- [fs] ovl: simplify i_ino initialization (Miklos Szeredi) [1849770]
+- [fs] ovl: factor out helper ovl_get_root() (Miklos Szeredi) [1849770]
+- [fs] ovl: fix out of date comment and unreachable code (Miklos Szeredi) [1849770]
+- [fs] ovl: fix value of i_ino for lower hardlink corner case (Miklos Szeredi) [1849770]
+- [fs] ovl: fix lockdep warning for async write (Miklos Szeredi) [1849770]
+- [fs] ovl: fix some xino configurations (Miklos Szeredi) [1849770]
+- [fs] ovl: fix lock in ovl_llseek() (Miklos Szeredi) [1849770]
+- [fs] ovl: fix lseek overflow on 32bit (Miklos Szeredi) [1849770]
+- [documentation] docs: filesystems: add overlayfs to index.rst (Miklos Szeredi) [1849770]
+- [fs] ovl: add splice file read write helper (Miklos Szeredi) [1849770]
+- [fs] ovl: implement async IO routines (Miklos Szeredi) [1849770]
+- [fs] vfs: add vfs_iocb_iter_helper functions (Miklos Szeredi) [1849770]
+- [fs] ovl: layer is const (Miklos Szeredi) [1849770]
+- [fs] ovl: fix corner case of non-constant st_dev; st_ino (Miklos Szeredi) [1849770]
+- [fs] ovl: fix corner case of conflicting lower layer uuid (Miklos Szeredi) [1849770]
+- [fs] ovl: generalize the lower_fsarray (Miklos Szeredi) [1849770]
+- [fs] ovl: simplify ovl_same_sb() helper (Miklos Szeredi) [1849770]
+- [fs] ovl: generalize the lower_layersarray (Miklos Szeredi) [1849770]
+- [fs] ovl: improving copy-up efficiency for big sparse file (Miklos Szeredi) [1849770]
+- [fs] ovl: use ovl_inode_lock in ovl_llseek() (Miklos Szeredi) [1849770]
+- [fs] ovl: use pr_fmt auto generate prefix (Miklos Szeredi) [1849770]
+- [fs] ovl: fix wrong WARN_ON() in ovl_cache_update_ino() (Miklos Szeredi) [1849770]
+- [fs] locks: print unsigned ino in /proc/locks (Miklos Szeredi) [1849770]
+- [documentation] docs: filesystems: overlayfs: Fix restview warnings (Miklos Szeredi) [1849770]
+- [fs] ovl: relax WARN_ON() on rename to self (Miklos Szeredi) [1849770]
+- [fs] ovl: fix corner case of non-unique st_dev; st_ino (Miklos Szeredi) [1849770]
+- [fs] ovl: don't use a temp buf for encoding real fh (Miklos Szeredi) [1849770]
+- [fs] ovl: make sure that real fid is 32bit aligned in memory (Miklos Szeredi) [1849770]
+- [fs] ovl: fix lookup failure on multi lower squashfs (Miklos Szeredi) [1849770]
+- [fs] ovl: filter of trusted xattr results in audit (Miklos Szeredi) [1849770]
+- [fs] ovl: Fix dereferencing possible ERR_PTR() (Miklos Szeredi) [1849770]
+- [fs] ovl: fix regression caused by overlapping layers detection (Miklos Szeredi) [1849770]
+- [fs] ovl: make i_ino consistent with st_ino in more cases (Miklos Szeredi) [1849770]
+- [fs] ovl: fix typo in MODULE_PARM_DESC (Miklos Szeredi) [1849770]
+- [fs] ovl: fix bogus -Wmaybe-unitialized warning (Miklos Szeredi) [1849770]
+- [fs] ovl: don't fail with disconnected lower NFS (Miklos Szeredi) [1849770]
+- [fs] ovl: detect overlapping layers (Miklos Szeredi) [1849770]
+- [fs] ovl: using posix_acl_xattr_size() to get size instead of posix_acl_to_xattr() (Miklos Szeredi) [1849770]
+- [fs] ovl: abstract ovl_inode lock with a helper (Miklos Szeredi) [1849770]
+- [fs] ovl: remove the 'locked' argument of ovl_nlink_{start, end} (Miklos Szeredi) [1849770]
+- [fs] ovl: relax requirement for non null uuid of lower fs (Miklos Szeredi) [1849770]
+- [fs] ovl: fold copy-up helpers into callers (Miklos Szeredi) [1849770]
+- [fs] ovl: untangle copy up call chain (Miklos Szeredi) [1849770]
+- [fs] ovl: clean up error handling in ovl_get_tmpfile() (Miklos Szeredi) [1849770]
+- [netdrv] ionic: tame the watchdog timer on reconfig (Jonathan Toppins) [1846879 1846280]
+- [remoteproc] remoteproc: pull in slab.h (Jarod Wilson) [1849080]
+
+* Thu Jun 25 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-221.el8]
+- [x86] revert "kvm: vmx: Micro-optimize vmexit time when not exposing PMU" (Vitaly Kuznetsov) [1844099]
+- [fs] nfsd4: kill warnings on testing stateids with mismatched clientids (Benjamin Coddington) [1765672]
+- [fs] NFS: Ensure security label is set for root inode (Scott Mayhew) [1660798]
+- [s390] kexec: Fix file verification on S390 (Lianbo Jiang) [1815369]
+- [s390] kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and KEXEC_SIG_FORCE (Lianbo Jiang) [1815369]
+- [netdrv] ibmvnic: continue to init in CRQ reset returns H_CLOSED (Steve Best) [1850179]
+- [net] sunrpc: add missing newline when printing parameter 'auth_hashtable_size' by sysfs (Benjamin Coddington) [1849998]
+- [net] sunrpc: clean up properly in gss_mech_unregister() (Benjamin Coddington) [1849998]
+- [net] sunrpc: svcauth_gss_register_pseudoflavor must reject duplicate registrations (Benjamin Coddington) [1849998]
+- [net] SUNRPC: Fix backchannel RPC soft lockups (Benjamin Coddington) [1849998]
+- [fs] NFS: Fix a page leak in nfs_destroy_unlinked_subrequests() (Benjamin Coddington) [1849998]
+- [fs] nfsd4: make drc_slab global, not per-net (Benjamin Coddington) [1849998]
+- [net] SUNRPC: Fix GSS privacy computation of auth->au_ralign (Benjamin Coddington) [1849998]
+- [net] SUNRPC: Add "@len" parameter to gss_unwrap() (Benjamin Coddington) [1849998]
+- [fs] NFS: finish_automount() requires us to hold 2 refs to the mount record (Benjamin Coddington) [1849998]
+- [fs] NFS: Fix use-after-free issues in nfs_pageio_add_request() (Benjamin Coddington) [1849998]
+- [fs] NFS: alloc_nfs_open_context() must use the file cred when available (Benjamin Coddington) [1849998]
+- [net] libceph: don't omit used_replica in target_copy() (Jeff Layton) [1847528]
+- [net] libceph: don't omit recovery_deletes in target_copy() (Jeff Layton) [1847528]
+- [net] libceph: move away from global osd_req_flags (Jeff Layton) [1847528]
+- [fs] ceph: skip checking caps when session reconnecting and releasing reqs (Jeff Layton) [1847528]
+- [fs] ceph: make sure mdsc->mutex is nested in s->s_mutex to fix dead lock (Jeff Layton) [1847528]
+- [fs] ceph: don't return -ESTALE if there's still an open file (Jeff Layton) [1847528]
+- [include] libceph, rbd: replace zero-length array with flexible-array (Jeff Layton) [1847528]
+- [fs] ceph: allow rename operation under different quota realms (Jeff Layton) [1847528]
+- [fs] ceph: normalize 'delta' parameter usage in check_quota_exceeded (Jeff Layton) [1847528]
+- [fs] ceph: ceph_kick_flushing_caps needs the s_mutex (Jeff Layton) [1847528]
+- [fs] ceph: request expedited service on session's last cap flush (Jeff Layton) [1847528]
+- [fs] ceph: convert mdsc->cap_dirty to a per-session list (Jeff Layton) [1847528]
+- [fs] ceph: reset i_requested_max_size if file write is not wanted (Jeff Layton) [1847528]
+- [fs] ceph: throw a warning if we destroy session with mutex still locked (Jeff Layton) [1847528]
+- [fs] ceph: fix potential race in ceph_check_caps (Jeff Layton) [1847528]
+- [fs] ceph: document what protects i_dirty_item and i_flushing_item (Jeff Layton) [1847528]
+- [fs] ceph: don't take i_ceph_lock in handle_cap_import (Jeff Layton) [1847528]
+- [fs] ceph: don't release i_ceph_lock in handle_cap_trunc (Jeff Layton) [1847528]
+- [fs] ceph: add comments for handle_cap_flush_ack logic (Jeff Layton) [1847528]
+- [fs] ceph: split up __finish_cap_flush (Jeff Layton) [1847528]
+- [fs] ceph: reorganize __send_cap for less spinlock abuse (Jeff Layton) [1847528]
+- [fs] ceph: flush release queue when handling caps for unknown inode (Jeff Layton) [1847528]
+- [net] libceph: ignore pool overlay and cache logic on redirects (Jeff Layton) [1847528]
+- [x86] kvm: lapic: ensure APIC map is up to date on concurrent update requests (Igor Mammedov) [1835330]
+- [x86] kvm: lapic: fix broken vcpu hotplug (Igor Mammedov) [1835330]
+- [netdrv] net: hns3: add some error checking in hclge_tm module (Mark Langsdorf) [1809057] {CVE-2019-15925}
+- [fs] udf: Fix mounting of Win7 created UDF filesystems (Oleksandr Natalenko) [1842400]
+- [netdrv] net: qed: fixes crash while running driver in kdump kernel (Manish Chopra) [1727746]
+- [netdrv] net: qed: Disable SRIOV functionality inside kdump kernel (Manish Chopra) [1727746]
+- [netdrv] net: qed*: Reduce RX and TX default ring count when running inside kdump kernel (Manish Chopra) [1727746]
+- [fs] cifs: dump Security Type info in DebugData (Leif Sahlberg) [1845390]
+- [net] netfilter: flowtable: Make nf_flow_table_offload_add/del_cb inline (Marcelo Leitner) [1840938]
+- [net] sched: act_ct: Make tcf_ct_flow_table_restore_skb inline (Marcelo Leitner) [1840938]
+- [net] netfilter: flowtable: Add pending bit for offload work (Marcelo Leitner) [1842670]
+- [net] Evict neighbor entries on carrier down (Ivan Vecera) [1845352]
+- [net] bridge: explicitly zero is_sticky in fdb_create (Ivan Vecera) [1845350]
+- [net] bridge: add support for sticky fdb entries (Ivan Vecera) [1845350]
+- [net] remove indirect block netdev event registration (Marcelo Leitner) [1841300]
+- [netdrv] bnxt_tc: update indirect block support (Marcelo Leitner) [1841300]
+- [netdrv] nfp: update indirect block support (Marcelo Leitner) [1841300]
+- [netdrv] mlx5: update indirect block support (Marcelo Leitner) [1841300]
+- [net] use flow_indr_dev_setup_offload() (Marcelo Leitner) [1841300]
+- [net] cls_api: add tcf_block_offload_init() (Marcelo Leitner) [1841300]
+- [net] flow_offload: consolidate indirect flow_block infrastructure (Marcelo Leitner) [1841300]
+- [net] netfilter: nf_flowtable: expose nf_flow_table_gc_cleanup() (Marcelo Leitner) [1841300]
+- [fs] iomap: Handle memory allocation failure in readahead (Carlos Maiolino) [1828792]
+- [fs] iomap: fix comments in iomap_dio_rw (Carlos Maiolino) [1828792]
+- [fs] iomap: Remove pgoff from tracepoints (Carlos Maiolino) [1828792]
+- [fs] fs: Fix page_mkwrite off-by-one errors (Carlos Maiolino) [1828792]
+- [fs] iomap: stop using ioend after it's been freed in iomap_finish_ioend() (Carlos Maiolino) [1828792]
+- [fs] iomap: fix sub-page uptodate handling (Carlos Maiolino) [1828792]
+- [fs] iomap: remove unneeded variable in iomap_dio_rw() (Carlos Maiolino) [1828792]
+- [fs] iomap: Do not create fake iter in iomap_dio_bio_actor() (Carlos Maiolino) [1828792]
+- [fs] iomap: trace iomap_appply results (Carlos Maiolino) [1828792]
+- [fs] fs/iomap: remove redundant check in iomap_dio_rw() (Carlos Maiolino) [1828792]
+- [fs] iomap: use a srcmap for a read-modify-write I/O (Carlos Maiolino) [1828792]
+- [fs] iomap: renumber IOMAP_HOLE to 0 (Carlos Maiolino) [1828792]
+- [fs] iomap: use write_begin to read pages to unshare (Carlos Maiolino) [1828792]
+- [fs] iomap: move the zeroing case out of iomap_read_page_sync (Carlos Maiolino) [1828792]
+- [fs] iomap: ignore non-shared or non-data blocks in xfs_file_dirty (Carlos Maiolino) [1828792]
+- [fs] iomap: always use AOP_FLAG_NOFS in iomap_write_begin (Carlos Maiolino) [1828792]
+- [fs] iomap: remove the unused iomap argument to __iomap_write_end (Carlos Maiolino) [1828792]
+- [fs] iomap: better document the IOMAP_F_* flags (Carlos Maiolino) [1828792]
+- [fs] iomap: enhance writeback error message (Carlos Maiolino) [1828792]
+- [fs] iomap: pass a struct page to iomap_finish_page_writeback (Carlos Maiolino) [1828792]
+- [fs] iomap: cleanup iomap_ioend_compare (Carlos Maiolino) [1828792]
+- [fs] iomap: move struct iomap_page out of iomap.h (Carlos Maiolino) [1828792]
+- [fs] iomap: warn on inline maps in iomap_writepage_map (Carlos Maiolino) [1828792]
+- [fs] iomap: lift the xfs writeback code to iomap (Carlos Maiolino) [1828792]
+- [fs] iomap: lift common tracing code from xfs to iomap (Carlos Maiolino) [1828792]
+- [fs] iomap: zero newly allocated mapped blocks (Carlos Maiolino) [1828792]
+- [fs] xfs: remove the fork fields in the writepage_ctx and ioend (Carlos Maiolino) [1828792]
+- [fs] xfs: turn io_append_trans into an io_private void pointer (Carlos Maiolino) [1828792]
+- [fs] xfs: refactor the ioend merging code (Carlos Maiolino) [1828792]
+- [fs] xfs: use a struct iomap in xfs_writepage_ctx (Carlos Maiolino) [1828792]
+- [fs] xfs: set IOMAP_F_NEW more carefully (Carlos Maiolino) [1828792]
+- [fs] xfs: initialize iomap->flags in xfs_bmbt_to_iomap (Carlos Maiolino) [1828792]
+- [fs] xfs: Use iomap_dio_rw to wait for unaligned direct IO (Carlos Maiolino) [1828792]
+- [fs] iomap: Allow forcing of waiting for running DIO in iomap_dio_rw() (Carlos Maiolino) [1828792]
+- [fs] iomap: move the iomap_dio_rw ->end_io callback into a structure (Carlos Maiolino) [1828792]
+- [fs] iomap: split size and error for iomap_dio_rw ->end_io (Carlos Maiolino) [1828792]
+- [fs] iomap: fix Invalid License ID (Carlos Maiolino) [1828792]
+- [fs] iomap: move internal declarations into fs/iomap/ (Carlos Maiolino) [1828792]
+- [fs] iomap: move the main iteration code into a separate file (Carlos Maiolino) [1828792]
+- [fs] iomap: move the buffered IO code into a separate file (Carlos Maiolino) [1828792]
+- [fs] iomap: move the direct IO code into a separate file (Carlos Maiolino) [1828792]
+- [fs] iomap: move the SEEK_HOLE code into a separate file (Carlos Maiolino) [1828792]
+- [fs] iomap: move the file mapping reporting code into a separate file (Carlos Maiolino) [1828792]
+- [fs] iomap: move the swapfile code into a separate file (Carlos Maiolino) [1828792]
+- [fs] iomap: start moving code to fs/iomap/ (Carlos Maiolino) [1828792]
+- [fs] iomap: move iomap_read_inline_data around (Carlos Maiolino) [1828792]
+- [fs] iomap: convert to SPDX identifier (Carlos Maiolino) [1828792]
+- [fs] iomap: remove duplicated include from iomap.c (Carlos Maiolino) [1828792]
+- [netdrv] fjes: Handle workqueue allocation failure (Masayoshi Mizuma) [1830565] {CVE-2019-16231}
+
+* Wed Jun 24 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-220.el8]
+- [fs] NFSv4: Ensure the delegation cred is pinned when we call delegreturn (Benjamin Coddington) [1848933]
+- [fs] NFSv4: Ensure the delegation is pinned in nfs_do_return_delegation() (Benjamin Coddington) [1848933]
+- [fs] NFSv4.1 make cachethis=no for writes (Benjamin Coddington) [1848933]
+- [fs] NFSv4: Fix revalidation of dentries with delegations (Benjamin Coddington) [1848933]
+- [fs] NFSv4: Fix races between open and dentry revalidation (Benjamin Coddington) [1848933]
+- [fs] NFS: Fix up directory verifier races (Benjamin Coddington) [1848933]
+- [net] sunrpc: expiry_time should be seconds not timeval (Benjamin Coddington) [1848933]
+- [fs] NFSv4.0: nfs4_do_fsinfo() should not do implicit lease renewals (Benjamin Coddington) [1848933]
+- [fs] NFSv4: try lease recovery on NFS4ERR_EXPIRED (Benjamin Coddington) [1848933]
+- [fs] NFS: Fix memory leaks (Benjamin Coddington) [1848933]
+- [fs] nfs: optimise readdir cache page invalidation (Benjamin Coddington) [1848933]
+- [fs] NFS: Switch readdir to using iterate_shared() (Benjamin Coddington) [1848933]
+- [fs] NFS: Use kmemdup_nul() in nfs_readdir_make_qstr() (Benjamin Coddington) [1848933]
+- [fs] NFS: Directory page cache pages need to be locked when read (Benjamin Coddington) [1848933]
+- [fs] NFS: Fix memory leaks and corruption in readdir (Benjamin Coddington) [1848933]
+- [net] SUNRPC: Use kmemdup_nul() in rpc_parse_scope_id() (Benjamin Coddington) [1848933]
+- [fs] NFS: Replace various occurrences of kstrndup() with kmemdup_nul() (Benjamin Coddington) [1848933]
+- [fs] NFSv4: Limit the total number of cached delegations (Benjamin Coddington) [1848933]
+- [fs] NFSv4: Add accounting for the number of active delegations held (Benjamin Coddington) [1848933]
+- [fs] NFSv4: Try to return the delegation immediately when marked for return on close (Benjamin Coddington) [1848933]
+- [fs] NFS: Clear NFS_DELEGATION_RETURN_IF_CLOSED when the delegation is returned (Benjamin Coddington) [1848933]
+- [fs] NFSv4: nfs_inode_evict_delegation() should set NFS_DELEGATION_RETURNING (Benjamin Coddington) [1848933]
+- [fs] NFS: nfs_find_open_context() should use cred_fscmp() (Benjamin Coddington) [1848933]
+- [fs] NFS: nfs_access_get_cached_rcu() should use cred_fscmp() (Benjamin Coddington) [1848933]
+- [fs] NFSv3: FIx bug when using chacl and chmod to change acl (Benjamin Coddington) [1848933]
+- [fs] NFSv4.x recover from pre-mature loss of openstateid (Benjamin Coddington) [1848933]
+- [fs] NFS: Trust cached access if we've already revalidated the inode once (Benjamin Coddington) [1848933]
+- [fs] NFS: Fix nfs_direct_write_reschedule_io() (Benjamin Coddington) [1848933]
+- [fs] NFS: When resending after a short write, reset the reply count to zero (Benjamin Coddington) [1848933]
+- [fs] NFS: Improve tracing of permission calls (Benjamin Coddington) [1848933]
+- [fs] NFS/pnfs: Fix pnfs_generic_prepare_to_resend_writes() (Benjamin Coddington) [1848933]
+- [fs] NFS: Fix up fsync() when the server rebooted (Benjamin Coddington) [1848933]
+- [net] SUNRPC: Remove broken gss_mech_list_pseudoflavors() (Benjamin Coddington) [1848933]
+- [fs] NFS: Revalidate the file mapping on all fatal writeback errors (Benjamin Coddington) [1848933]
+- [fs] NFS: Revalidate the file size on a fatal write error (Benjamin Coddington) [1848933]
+- [fs] nfs: NFS_SWAP should depend on SWAP (Benjamin Coddington) [1848933]
+- [net] SUNRPC: constify copied structure (Benjamin Coddington) [1848933]
+- [fs] fs/nfs, swapon: check holes in swapfile (Benjamin Coddington) [1848933]
+- [net] SUNRPC: call_connect_status should handle -EPROTO (Benjamin Coddington) [1848933]
+- [fs] NFS: Introduce trace events triggered by page writeback errors (Benjamin Coddington) [1848933]
+- [net] SUNRPC: Capture signalled RPC tasks (Benjamin Coddington) [1848933]
+- [fs] NFS: move dprintk after nfs_alloc_fattr in nfs3_proc_lookup (Benjamin Coddington) [1848933]
+- [fs] NFS4: Remove unneeded semicolon (Benjamin Coddington) [1848933]
+- [fs] nfs: encode nfsv4 timestamps as 64-bit (Benjamin Coddington) [1848933]
+- [fs] nfs: remove timespec from xdr_encode_nfstime (Benjamin Coddington) [1848933]
+- [fs] nfs: use timespec64 in nfs_fattr (Benjamin Coddington) [1848933]
+- [net] sunrpc: convert to time64_t for expiry (Benjamin Coddington) [1848933]
+- [fs] nfsd: use true, false for bool variable in nfssvc.c (Benjamin Coddington) [1848933]
+- [fs] nfsd: use true, false for bool variable in nfs4proc.c (Benjamin Coddington) [1848933]
+- [fs] nfsd: use true, false for bool variable in vfs.c (Benjamin Coddington) [1848933]
+- [fs] nfsd: remove nfs4_reset_lease() declarations (Benjamin Coddington) [1848933]
+- [fs] nfsd: use ktime_get_real_seconds() in nfs4_verifier (Benjamin Coddington) [1848933]
+- [fs] nfsd: use boottime for lease expiry calculation (Benjamin Coddington) [1848933]
+- [fs] nfsd: fix jiffies/time_t mixup in LRU list (Benjamin Coddington) [1848933]
+- [fs] nfsd: fix delay timer on 32-bit architectures (Benjamin Coddington) [1848933]
+- [fs] nfsd: use time64_t in nfsd_proc_setattr() check (Benjamin Coddington) [1848933]
+- [fs] nfsd: pass a 64-bit guardtime to nfsd_setattr() (Benjamin Coddington) [1848933]
+- [fs] nfsd: make 'boot_time' 64-bit wide (Benjamin Coddington) [1848933]
+- [fs] nfsd: use timespec64 in encode_time_delta (Benjamin Coddington) [1848933]
+- [fs] nfsd: handle nfs3 timestamps as unsigned (Benjamin Coddington) [1848933]
+- [fs] nfsd: print 64-bit timestamps in client_info_show (Benjamin Coddington) [1848933]
+- [fs] nfsd: use ktime_get_seconds() for timestamps (Benjamin Coddington) [1848933]
+- [fs] nfsd: remove unnecessary assertion in nfsd4_encode_replay (Benjamin Coddington) [1848933]
+- [fs] nfsd: Clone should commit src file metadata too (Benjamin Coddington) [1848933]
+- [fs] nfsd4: Remove unneeded semicolon (Benjamin Coddington) [1848933]
+- [fs] nfs: fix timstamp debug prints (Benjamin Coddington) [1848933]
+- [net] nfs: use time64_t internally (Benjamin Coddington) [1848933]
+- [fs] nfsd: Return the correct number of bytes written to the file (Benjamin Coddington) [1848933]
+- [fs] nfsd: Fix up some unused variable warnings (Benjamin Coddington) [1848933]
+- [kernel] blktrace: ensure our debugfs dir exists (Ming Lei) [1816559] {CVE-2019-19770}
+- [kernel] blktrace: fix debugfs use after free (Ming Lei) [1816559] {CVE-2019-19770}
+- [block] loop: be paranoid on exit and prevent new additions / removals (Ming Lei) [1816559] {CVE-2019-19770}
+- [kernel] blktrace: annotate required lock on do_blk_trace_setup() (Ming Lei) [1816559] {CVE-2019-19770}
+- [block] block: revert back to synchronous request_queue removal (Ming Lei) [1816559] {CVE-2019-19770}
+- [block] block: clarify context for refcount increment helpers (Ming Lei) [1816559] {CVE-2019-19770}
+- [block] block: add docs for gendisk / request_queue refcount helpers (Ming Lei) [1816559] {CVE-2019-19770}
+- [kernel] blktrace: no need to check return value of debugfs_create functions (Ming Lei) [1816559] {CVE-2019-19770}
+- [kernel] blktrace: Avoid sparse warnings when assigning q->blk_trace (Ming Lei) [1816559] {CVE-2019-19770}
+- [kernel] blktrace: break out of blktrace setup on concurrent calls (Ming Lei) [1816559] {CVE-2019-19770}
+- [nvme] nvme-fc: don't call nvme_cleanup_cmd() for AENs (Ewan Milne) [1847572]
+- [nvme] nvme-fc: convert assoc_active flag to bit op (Ewan Milne) [1847572]
+- [nvme] nvme-fc: Ensure private pointers are NULL if no data (Ewan Milne) [1847572]
+- [nvme] nvme-multipath: do not reset on unknown status (Ewan Milne) [1847572]
+- [documentation] x86/speculation: Add Ivy Bridge to affected list (Josh Poimboeuf) [1827192] {CVE-2020-0543}
+- [documentation] x86/speculation: Add SRBDS vulnerability and mitigation documentation (Josh Poimboeuf) [1827192] {CVE-2020-0543}
+- [x86] x86/speculation: Add Special Register Buffer Data Sampling (SRBDS) mitigation (Josh Poimboeuf) [1827192] {CVE-2020-0543}
+- [x86] x86/cpu: Add 'table' argument to cpu_matches() (Josh Poimboeuf) [1827192] {CVE-2020-0543}
+- [x86] x86/cpu: Add a steppings field to struct x86_cpu_id (Josh Poimboeuf) [1827192] {CVE-2020-0543}
+- [x86] x86/cpu/bugs: Convert to new matching macros (Josh Poimboeuf) [1827192] {CVE-2020-0543}
+- [crypto] crypto: simd - correctly take reqsize of wrapped skcipher into account (Mark Salter) [1830471]
+- [fs] nfsd: depend on CRYPTO_MD5 for legacy client tracking (Benjamin Coddington) [1847468]
+- [fs] nfsd: check for EBUSY from vfs_rmdir/vfs_unink (Benjamin Coddington) [1847468]
+- [fs] NFS: Fallocate should use the nfs4_fattr_bitmap (Benjamin Coddington) [1847468]
+- [fs] NFS: Return -ETXTBSY when attempting to write to a swapfile (Benjamin Coddington) [1847468]
+- [fs] fs: nfs: sysfs: Remove NULL check before kfree (Benjamin Coddington) [1847468]
+- [fs] NFS: remove unneeded semicolon (Benjamin Coddington) [1847468]
+- [fs] NFSv4: add declaration of current_stateid (Benjamin Coddington) [1847468]
+- [include] sunrpc: remove __KERNEL__ ifdefs (Benjamin Coddington) [1847468]
+- [fs] nfsd: document callback_wq serialization of callback code (Benjamin Coddington) [1847468]
+- [fs] nfsd: mark cb path down on unknown errors (Benjamin Coddington) [1847468]
+- [net] SUNRPC: Avoid RPC delays when exiting suspend (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Don't retry the GETATTR on old stateid in nfs4_delegreturn_done() (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Handle NFS4ERR_OLD_STATEID in delegreturn (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Fix races between open and delegreturn (Benjamin Coddington) [1847468]
+- [fs] NFS: nfs_inode_find_state_and_recover() fix stateid matching (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Fix nfs4_inode_make_writeable() (Benjamin Coddington) [1847468]
+- [fs] NFSv4: nfs4_return_incompatible_delegation() should check delegation validity (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Don't reclaim delegations that have been returned or revoked (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Ignore requests to return the delegation if it was revoked (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Revoke the delegation on success in nfs4_delegreturn_done() (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Update the stateid seqid in nfs_revoke_delegation() (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Clear the NFS_DELEGATION_REVOKED flag in nfs_update_inplace_delegation() (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Hold the delegation spinlock when updating the seqid (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Don't remove the delegation from the super_list more than once (Benjamin Coddington) [1847468]
+- [fs] NFS: Rename nfs_inode_return_delegation_noreclaim() (Benjamin Coddington) [1847468]
+- [fs] NFSv4: fail nfs4_refresh_delegation_stateid() when the delegation was revoked (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Delegation recalls should not find revoked delegations (Benjamin Coddington) [1847468]
+- [fs] NFSv4: nfs4_callback_getattr() should ignore revoked delegations (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Fix delegation handling in update_open_stateid() (Benjamin Coddington) [1847468]
+- [fs] NFSv4.1: Don't rebind to the same source port when reconnecting to the server (Benjamin Coddington) [1847468]
+- [fs] NFS/pnfs: Separate NFSv3 DS and MDS traffic (Benjamin Coddington) [1847468]
+- [fs] pNFS: nfs3_set_ds_client should set NFS_CS_NOPING (Benjamin Coddington) [1847468]
+- [fs] NFS: Add a flag to tell nfs_client to set RPC_CLNT_CREATE_NOPING (Benjamin Coddington) [1847468]
+- [fs] NFS: Use non-atomic bit ops when initialising struct nfs_client_initdata (Benjamin Coddington) [1847468]
+- [fs] NFSv3: Clean up timespec encode (Benjamin Coddington) [1847468]
+- [fs] NFSv2: Clean up timespec encode (Benjamin Coddington) [1847468]
+- [fs] NFSv2: Fix a typo in encode_sattr() (Benjamin Coddington) [1847468]
+- [fs] NFSv4: NFSv4 callbacks also support 64-bit timestamps (Benjamin Coddington) [1847468]
+- [fs] NFSv4: Encode 64-bit timestamps (Benjamin Coddington) [1847468]
+- [fs] NFS: Convert struct nfs_fattr to use struct timespec64 (Benjamin Coddington) [1847468]
+- [fs] NFS: If nfs_mountpoint_expiry_timeout < 0, do not expire submounts (Benjamin Coddington) [1847468]
+- [net] SUNRPC: Add trace points to observe transport congestion control (Benjamin Coddington) [1847468]
+- [net] SUNRPC: Eliminate log noise in call_reserveresult (Benjamin Coddington) [1847468]
+- [fs] nfsd: remove private bin2hex implementation (Benjamin Coddington) [1847468]
+- [fs] nfsd: remove set but not used variable 'len' (Benjamin Coddington) [1847468]
+- [fs] NFSv3: fix rpc receive buffer size for MOUNT call (Steve Dickson) [1837034]
+- [fs] NFS: remove unused macros (Steve Dickson) [1837034]
+- [mm] mm, slab: fix sign conversion problem in memcg_uncharge_slab() (Waiman Long) [1849016]
+- [mm] mm: fix false-positive OVERCOMMIT_GUESS failures (Waiman Long) [1849016]
+- [mm] mm: remove CONFIG_MIGRATE_VMA_HELPER (Karol Herbst) [1847908]
+- [nvdimm] libnvdimm: Export the target_node attribute for regions and namespaces (Jeff Moyer) [1783157]
+- [dax] dax: Add numa_node to the default device-dax attributes (Jeff Moyer) [1783157]
+- [nvdimm] libnvdimm: Simplify root read-only definition for the 'resource' attribute (Jeff Moyer) [1783157]
+- [dax] dax: Simplify root read-only definition for the 'resource' attribute (Jeff Moyer) [1783157]
+- [dax] dax: Create a dax device_type (Jeff Moyer) [1783157]
+- [nvdimm] libnvdimm: Move nvdimm_bus_attribute_group to device_type (Jeff Moyer) [1783157]
+- [acpi] libnvdimm: Move nvdimm_attribute_group to device_type (Jeff Moyer) [1783157]
+- [acpi] libnvdimm: Move nd_mapping_attribute_group to device_type (Jeff Moyer) [1783157]
+- [nvdimm] libnvdimm: Move nd_region_attribute_group to device_type (Jeff Moyer) [1783157]
+- [nvdimm] libnvdimm: Move nd_numa_attribute_group to device_type (Jeff Moyer) [1783157]
+- [nvdimm] libnvdimm: Move nd_device_attribute_group to device_type (Jeff Moyer) [1783157]
+- [nvdimm] libnvdimm: Move region attribute group definition (Jeff Moyer) [1783157]
+- [nvdimm] libnvdimm: Move attribute groups to device type (Jeff Moyer) [1783157]
+- [nvdimm] libnvdimm/region: Initialize bad block for volatile namespaces (Jeff Moyer) [1783157]
+- [x86] x86/mce: Add Xeon Icelake to list of CPUs that support PPIN (Steve Best) [1848710]
+- [powerpc] powerpc/kernel: Enables memory hot-remove after reboot on pseries guests (David Gibson) [1848844]
+- [fs] cifs: multichannel: try to rebind when reconnecting a channel (Leif Sahlberg) [1842759]
+- [fs] cifs: multichannel: use pointer for binding channel (Leif Sahlberg) [1842759]
+- [fs] cifs: multichannel: move channel selection above transport layer (Leif Sahlberg) [1842759]
+- [fs] cifs: move some variables off the stack in smb2_ioctl_query_info (Leif Sahlberg) [1842759]
+- [fs] cifs: reduce stack use in smb2_compound_op (Leif Sahlberg) [1842759]
+- [fs] cifs: multichannel: always zero struct cifs_io_parms (Leif Sahlberg) [1842759]
+- [fs] smb3: default to minimum of two channels when multichannel specified (Leif Sahlberg) [1842759]
+- [fs] cifs: multichannel: move channel selection in function (Leif Sahlberg) [1842759]
+- [mm] x86/init: fix build with CONFIG_SWAP=n (Waiman Long) [1839415]
+- [netdrv] ionic: add pcie_print_link_status (Jonathan Toppins) [1846506]
+- [netdrv] ionic: no link check while resetting queues (Jonathan Toppins) [1846953]
+- [netdrv] ionic: export features for vlans to use (Jonathan Toppins) [1846868]
+- [netdrv] ionic: remove support for mgmt device (Jonathan Toppins) [1846506]
+- [netdrv] ionic: wait on queue start until after IFF_UP (Jonathan Toppins) [1844924]
+- [netdrv] ionic: add more ethtool stats (Jonathan Toppins) [1848149]
+- [netdrv] ionic: more ionic name tweaks (Jonathan Toppins) [1848149]
+- [netdrv] ionic: ionic_intr_free parameter change (Jonathan Toppins) [1848149]
+- [netdrv] ionic: reset device at probe (Jonathan Toppins) [1848149]
+- [netdrv] ionic: shorter dev cmd wait time (Jonathan Toppins) [1848149]
+- [netdrv] ionic: add support for more xcvr types (Jonathan Toppins) [1848149]
+- [netdrv] ionic: protect vf calls from fw reset (Jonathan Toppins) [1848149]
+- [netdrv] ionic: updates to ionic FW api description (Jonathan Toppins) [1848149]
+- [netdrv] ionic: support longer tx sg lists (Jonathan Toppins) [1848149]
+- [netdrv] ionic: Use debugfs_create_bool() to export bool (Jonathan Toppins) [1848149]
+- [netdrv] drivers:Remove inclusion of vermagic header (Jonathan Toppins) [1848149]
+- [net] SUNRPC: Destroy the back channel when we destroy the host transport (Benjamin Coddington) [1846984]
+- [net] SUNRPC: fix race to sk_err after xs_error_report (Benjamin Coddington) [1846984]
+- [fs] NFS: Remove redundant mirror tracking in O_DIRECT (Benjamin Coddington) [1846984]
+- [fs] nfs: Fix nfsi->nrequests count error on nfs_inode_remove_request (Benjamin Coddington) [1846984]
+- [net] sunrpc: clean up indentation issue (Benjamin Coddington) [1846984]
+- [fs] NFS: Optimise the default readahead size (Benjamin Coddington) [1846984]
+- [fs] nfsd: fix nfs read eof detection (Benjamin Coddington) [1846984]
+- [fs] nfsd: Make nfsd_reset_boot_verifier_locked static (Benjamin Coddington) [1846984]
+- [fs] NFSv4: Handle NFS4ERR_OLD_STATEID in LOCKU (Benjamin Coddington) [1846984]
+- [fs] NFSv4: Handle NFS4ERR_OLD_STATEID in CLOSE/OPEN_DOWNGRADE (Benjamin Coddington) [1846984]
+- [fs] NFSv4: Fix OPEN_DOWNGRADE error handling (Benjamin Coddington) [1846984]
+- [fs] pNFS: Handle NFS4ERR_OLD_STATEID on layoutreturn by bumping the state seqid (Benjamin Coddington) [1846984]
+- [fs] NFSv4: Add a helper to increment stateid seqids (Benjamin Coddington) [1846984]
+- [fs] NFSv4: Handle RPC level errors in LAYOUTRETURN (Benjamin Coddington) [1846984]
+- [fs] NFSv4: Handle NFS4ERR_DELAY correctly in return-on-close (Benjamin Coddington) [1846984]
+- [fs] NFSv4: Clean up pNFS return-on-close error handling (Benjamin Coddington) [1846984]
+- [fs] NFS: remove unused check for negative dentry (Benjamin Coddington) [1846984]
+- [fs] NFSv3: use nfs_add_or_obtain() to create and reference inodes (Benjamin Coddington) [1846984]
+- [fs] NFS: Refactor nfs_instantiate() for dentry referencing callers (Benjamin Coddington) [1846984]
+- [fs] nfs_instantiate(): prevent multiple aliases for directory inode (Benjamin Coddington) [1846984]
+- [net] SUNRPC: Rename xdr_buf_read_netobj to xdr_buf_read_mic (Benjamin Coddington) [1846984]
+- [fs] nfsd: degraded slot-count more gracefully as allocation nears exhaustion (Benjamin Coddington) [1846984]
+- [fs] nfsd: handle drc over-allocation gracefully (Benjamin Coddington) [1846984]
+- [net] SUNRPC: RPC level errors should always set task->tk_rpc_status (Benjamin Coddington) [1846984]
+- [fs] nfsd: Support the server resetting the boot verifier (Benjamin Coddington) [1846984]
+- [net] sunrpc: Use kzfree rather than its implementation (Benjamin Coddington) [1846984]
+- [fs] nfsd: eliminate an unnecessary acl size limit (Benjamin Coddington) [1846984]
+- [fs] Deprecate nfsd fault injection (Benjamin Coddington) [1846984]
+- [fs] NFS: Have nfs4_proc_get_lease_time() call nfs4_call_sync_custom() (Benjamin Coddington) [1846984]
+- [fs] NFS: Have nfs41_proc_secinfo_no_name() call nfs4_call_sync_custom() (Benjamin Coddington) [1846984]
+- [fs] NFS: Have nfs41_proc_reclaim_complete() call nfs4_call_sync_custom() (Benjamin Coddington) [1846984]
+- [fs] NFS: Have _nfs4_proc_secinfo() call nfs4_call_sync_custom() (Benjamin Coddington) [1846984]
+- [fs] NFS: Have nfs4_proc_setclientid() call nfs4_call_sync_custom() (Benjamin Coddington) [1846984]
+- [fs] NFS: Add an nfs4_call_sync_custom() function (Benjamin Coddington) [1846984]
+- [fs] NFSv4: Fix a memory leak bug (Benjamin Coddington) [1846984]
+- [net] xprtrdma: Fix bc_max_slots return value (Benjamin Coddington) [1846984]
+- [net] SUNRPC: Inline xdr_commit_encode (Benjamin Coddington) [1846984]
+- [net] SUNRPC: Remove rpc_wake_up_queued_task_on_wq() (Benjamin Coddington) [1846984]
+- [fs] fs: nfs: Fix possible null-pointer dereferences in encode_attrs() (Benjamin Coddington) [1846984]
+- [fs] nfsd: Fix the documentation for svcxdr_tmpalloc() (Benjamin Coddington) [1846984]
+- [fs] nfsd: Remove unnecessary NULL checks (Benjamin Coddington) [1846984]
+- [s390] vfio-ccw: make vfio_ccw_regops variables declarations static (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Add trace for CRW event (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Wire up the CRW irq and CRW region (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Introduce a new CRW region (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Refactor IRQ handlers (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Introduce a new schib region (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Refactor the unregister of the async regions (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Register a chp_event callback for vfio-ccw (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Introduce new helper functions to free/destroy regions (Cornelia Huck) [1660917]
+- [documentation] vfio-ccw: document possible errors (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Enable transparent CCW IPL from DASD (Cornelia Huck) [1660917]
+- [s390] cio: generate delayed uevent for vfio-ccw subchannels (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Use the correct style for SPDX License Identifier (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Rework the io_fctl trace (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Add a trace for asynchronous requests (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Trace the FSM jumptable (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Refactor how the traces are built (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: fix error return code in vfio_ccw_sch_init() (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: add some logging (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: make vfio_ccw_async_region_ops static (Cornelia Huck) [1660917]
+- [documentation] documentation: fix vfio-ccw doc (Cornelia Huck) [1660917]
+- [documentation] vfio-ccw: Update documentation for csch/hsch (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Don't call cp_free if we are processing a channel program (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Set pa_nr to 0 if memory allocation fails for pa_iova_pfn (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Fix memory leak and don't call cp_free in cp_init (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Fix misleading comment when setting orb.cmd.c64 (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Fix the conversion of Format-0 CCWs to Format-1 (Cornelia Huck) [1660917]
+- [s390] cio: introduce driver_override on the css bus (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: make convert_ccw0_to_ccw1 static (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Remove copy_ccw_from_iova() (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Factor out the ccw0-to-ccw1 transition (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Copy CCW data outside length calculation (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Skip second copy of guest cp to host (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Move guest_cp storage into common struct (Cornelia Huck) [1660917]
+- [s390] cio: Combine direct and indirect CCW paths (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Rearrange IDAL allocation in direct CCW (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Remove pfn_array_table (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Adjust the first IDAW outside of the nested loops (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Rearrange pfn_array and pfn_array_table arrays (Cornelia Huck) [1660917]
+- [s390] cio: Use generalized CCW handler in cp_init() (Cornelia Huck) [1660917]
+- [s390] cio: Generalize the TIC handler (Cornelia Huck) [1660917]
+- [s390] cio: Refactor the routine that handles TIC CCWs (Cornelia Huck) [1660917]
+- [s390] cio: Squash cp_free() and cp_unpin_free() (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Destroy kmem cache region on module exit (Cornelia Huck) [1660917]
+- [documentation] docs: s390: convert docs to ReST and rename to *.rst (Cornelia Huck) [1660917]
+- [s390] cio: Remove vfio-ccw checks of command codes (Cornelia Huck) [1660917]
+- [s390] cio: Allow zero-length CCWs in vfio-ccw (Cornelia Huck) [1660917]
+- [s390] cio: Don't pin vfio pages for empty transfers (Cornelia Huck) [1660917]
+- [s390] cio: Initialize the host addresses in pfn_array (Cornelia Huck) [1660917]
+- [s390] cio: Split pfn_array_alloc_pin into pieces (Cornelia Huck) [1660917]
+- [s390] cio: Set vfio-ccw FSM state before ioeventfd (Cornelia Huck) [1660917]
+- [s390] cio: Update SCSW if it points to the end of the chain (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Prevent quiesce function going into an infinite loop (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Release any channel program when releasing/removing vfio-ccw mdev (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Do not call flush_workqueue while holding the spinlock (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: add handling for async channel instructions (Cornelia Huck) [1660917]
+- [s390] cio: export hsch to modules (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: add capabilities chain (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: protect the I/O region (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: rework ssch state handling (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: make it safe to access channel programs (Cornelia Huck) [1660917]
+- [s390] vfio: ccw: only free cp on final interrupt (Cornelia Huck) [1660917]
+- [s390] cio: Use cpa range elsewhere within vfio-ccw (Cornelia Huck) [1660917]
+- [s390] cio: Fix vfio-ccw handling of recursive TICs (Cornelia Huck) [1660917]
+- [s390] vfio-ccw: Don't assume there are more ccws after a TIC (Cornelia Huck) [1660917]
+- [s390] vfio: ccw: Merge BUSY and BOXED states (Cornelia Huck) [1660917]
+- [s390] cio: Fix cleanup when unsupported IDA format is used (Cornelia Huck) [1660917]
+- [s390] cio: Fix cleanup of pfn_array alloc failure (Cornelia Huck) [1660917]
+- [s390] vfio: ccw: Register mediated device once all structures are initialized (Cornelia Huck) [1660917]
+- [s390] cio: make vfio_ccw_io_region static (Cornelia Huck) [1660917]
+- [s390] cio: Fix how vfio-ccw checks pinned pages (Cornelia Huck) [1660917]
+- [s390] cio: Refactor alloc of ccw_io_region (Cornelia Huck) [1660917]
+- [s390] cio: Convert ccw_io_region to pointer (Cornelia Huck) [1660917]
+- [netdrv] ibmvnic: Harden device login requests (Steve Best) [1847183]
+- [mm] s390/cmm: fix information leak in cmm_timeout_handler() (Nico Pache) [1846532] {CVE-2020-10773}
+- [fs] kernfs: fix potential null pointer dereference (Carlos Maiolino) [1847872]
+- [netdrv] net: sfc: reject unsupported coalescing params (Jarod Wilson) [1844659]
+- [netdrv] iavf: increase reset complete wait time (Stefan Assmann) [1844598]
+- [netdrv] iavf: Fix reporting 2.5 Gb and 5Gb speeds (Stefan Assmann) [1844598]
+- [netdrv] iavf: use appropriate enum for comparison (Stefan Assmann) [1844598]
+- [netdrv] iavf: fix speed reporting over virtchnl (Stefan Assmann) [1844598]
+- [block] blk-mq: fix blk_mq_all_tag_iter (Ming Lei) [1824037]
+- [block] blk-mq: split out a __blk_mq_get_driver_tag helper (Ming Lei) [1824037]
+- [block] blk-mq: drain I/O when all CPUs in a hctx are offline (Ming Lei) [1824037]
+- [block] blk-mq: add blk_mq_all_tag_iter (Ming Lei) [1824037]
+- [block] blk-mq: open code __blk_mq_alloc_request in blk_mq_alloc_request_hctx (Ming Lei) [1824037]
+- [block] blk-mq: use BLK_MQ_NO_TAG in more places (Ming Lei) [1824037]
+- [block] blk-mq: rename BLK_MQ_TAG_FAIL to BLK_MQ_NO_TAG (Ming Lei) [1824037]
+- [block] blk-mq: move more request initialization to blk_mq_rq_ctx_init (Ming Lei) [1824037]
+- [block] blk-mq: simplify the blk_mq_get_request calling convention (Ming Lei) [1824037]
+- [block] blk-mq: remove a pointless queue enter pair in blk_mq_alloc_request_hctx (Ming Lei) [1824037]
+- [block] blk-mq: remove a pointless queue enter pair in blk_mq_alloc_request (Ming Lei) [1824037]
+- [block] blk-mq: move the call to blk_queue_enter_live out of blk_mq_get_request (Ming Lei) [1824037]
+- [nvme] nvme: force complete cancelled requests (Ming Lei) [1824037]
+- [block] blk-mq: blk-mq: provide forced completion method (Ming Lei) [1824037]
+- [block] block: Limit number of items taken from the I/O scheduler in one go (Ming Lei) [1824037]
+- [scsi] Revert "scsi: core: run queue if SCSI device queue isn't ready and queue is idle" (Ming Lei) [1824037]
+- [block] blk-mq: Rerun dispatching in the case of budget contention (Ming Lei) [1824037]
+- [block] blk-mq: Add blk_mq_delay_run_hw_queues() API call (Ming Lei) [1824037]
+- [block] blk-mq: In blk_mq_dispatch_rq_list() "no budget" is a reason to kick (Ming Lei) [1824037]
+- [block] blk-mq: Put driver tag in blk_mq_dispatch_rq_list() when no budget (Ming Lei) [1824037]
+- [block] blk-mq: don't commit_rqs() if none were queued (Ming Lei) [1824037]
+- [block] blk-mq: Remove some unused function arguments (Ming Lei) [1824037]
+- [block] blk-mq-tag: document tag iteration helper return value (Ming Lei) [1824037]
+- [block] blk-mq: Document the functions that iterate over requests (Ming Lei) [1824037]
+- [block] loop: Better discard support for block devices (Ming Lei) [1824037]
+- [block] loop: Report EOPNOTSUPP properly (Ming Lei) [1824037]
+- [block] block: keep bdi->io_pages in sync with max_sectors_kb for stacked devices (Ming Lei) [1824037]
+- [block] block, zoned: fix integer overflow with BLKRESETZONE et al (Ming Lei) [1824037]
+- [block] block: Fix use-after-free issue accessing struct io_cq (Ming Lei) [1824037]
+- [netdrv] cxgb4: add EOTID tracking and software context dump (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: tune burst buffer size for TC-MQPRIO offload (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: improve credits recovery in TC-MQPRIO Tx path (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix delete filter entry fail in unload path (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix large delays in PTP synchronization (Vishal Kulkarni) [1828665]
+- [netdrv] net/cxgb4: Check the return from t4_query_params properly (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: free MQPRIO resources in shutdown path (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix MPS index overwrite when setting MAC address (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: Add support to catch bits set in INT_CAUSE5 (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: remove set but not used variable 'tab' (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4/ptp: pass the sign of offset delta in FW CMD (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix Txq restart check during backpressure (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix throughput drop during Tx backpressure (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: rework TC filter rule insertion across regions (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: update T5/T6 adapter register ranges (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix checks for max queues to allocate (Vishal Kulkarni) [1828665]
+- [netdrv] net/chelsio: Don't set N/A for not available FW (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: Added tls stats prints (Vishal Kulkarni) [1828665]
+- [netdrv] l2t_seq_next should increase position index (Vishal Kulkarni) [1828665]
+- [netdrv] seq_tab_next() should increase position index (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: reject overlapped queues in TC-MQPRIO offload (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix Tx multi channel port rate limit (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4/cxgb4vf: fix flow control display for auto negotiation (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix refcount init for TC-MQPRIO offload (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4/chtls: fix ULD connection failures due to wrong TID base (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix missed high priority region calculation (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: Fix kernel panic while accessing sge_info (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: add support for high priority filters (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: add stats for MQPRIO QoS offload Tx path (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: add UDP segmentation offload support (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4/chcr: update SGL DMA unmap for USO (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: add TC-MATCHALL classifier ingress offload (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: check rule prio conflicts before offload (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: add TC-MATCHALL classifier egress offload (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: remove unneeded semicolon for switch block (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: Fix an error code in cxgb4_mqprio_alloc_hw_resources() (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: make function 'cxgb4_mqprio_free_hw_resources' static (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: remove redundant assignment to hdr_len (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix 64-bit division on i386 (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: Use match_string() helper to simplify the code (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: add FLOWC based QoS offload (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: add Tx and Rx path for ETHOFLD traffic (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: add ETHOFLD hardware queue support (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: parse and configure TC-MQPRIO offload (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: rework queue config and MSI-X allocation (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: query firmware for QoS offload resources (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: Add pci reset handler (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4/l2t: Simplify 't4_l2e_free()' and '_t4_l2e_free()' (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: fix panic when attaching to ULD fail (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: request the TX CIDX updates to status page (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: Signedness bug in init_one() (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: no need to check return value of debugfs_create functions (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: smt: Use normal int for refcount (Vishal Kulkarni) [1828665]
+- [netdrv] cxgb4: smt: Add lock for atomic_dec_and_test (Vishal Kulkarni) [1828665]
+- [fs] xfs: clear PF_MEMALLOC before exiting xfsaild thread (Brian Foster) [1827912]
+
+* Tue Jun 23 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-219.el8]
+- [drm] drm/amd/display: Defer cursor lock until after VUPDATE (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Use cursor locking to prevent flip delays (Lyude Paul) [1814893]
+- [drm] drm/amdgpu/display: Fix Pollock Variant Detection (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Fix RV2 Variant Detection (Lyude Paul) [1814893]
+- [drm] drm/amdgpu/display: fix pci revision id fetching (Lyude Paul) [1814893]
+- [drm] drm/nouveau/device: detect vGPUs (Lyude Paul) [1814893]
+- [drm] drm/nouveau/device: detect if changing endianness failed (Lyude Paul) [1814893]
+- [drm] drm/nouveau/device: rework mmio mapping code to get rid of second map (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/gm200-: detect and potentially disable HDA support on some SORs (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/gp100: split SOR implementation from gm200 (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp: modify OR allocation policy to account for HDA requirements (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp: split part of OR allocation logic into a function (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp: provide hint to OR allocation about HDA requirements (Lyude Paul) [1814893]
+- [drm] drm/nouveau/kms/gt215-: fix race with audio driver runpm (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/hda/gv100-: NV_PDISP_SF_AUDIO_CNTRL0 register moved (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/hda/gf119-: select HDA device entry based on bound head (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/hda/gf119-: add HAL for programming device entry in SF (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/hda/gt215-: pass head to nvkm_ior.hda.eld() (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/gm200-: fix NV_PDISP_SOR_HDMI2_CTRL(n) selection (Lyude Paul) [1814893]
+- [drm] drm/nouveau/kms/nv50-: Share DP SST mode_valid() handling with MST (Lyude Paul) [1814893]
+- [drm] drm/nouveau/kms/nv50-: Move 8BPC limit for MST into nv50_mstc_get_modes() (Lyude Paul) [1814893]
+- [drm] drm/nouveau/kms/gv100-: Add support for interlaced modes (Lyude Paul) [1814893]
+- [drm] drm/nouveau/kms/nv50-: Probe SOR and PIOR caps for DP interlacing support (Lyude Paul) [1814893]
+- [drm] drm/nouveau/kms/nv50-: Initialize core channel in nouveau_display_create() (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/gv100-: expose capabilities class (Lyude Paul) [1814893]
+- [drm] drm/nouveau/disp/nv50-: increase timeout on pio channel free() polling (Lyude Paul) [1814893]
+- [drm] drm/nouveau/kms/nv50-: wait for FIFO space on PIO channels (Lyude Paul) [1814893]
+- [drm] drm/nouveau/nvif: protect waits against GPU falling off the bus (Lyude Paul) [1814893]
+- [drm] drm/nouveau/nvif: access PTIMER through usermode class, if available (Lyude Paul) [1814893]
+- [drm] drm/nouveau/ttm: evict other IO mappings when running out of BAR1 space (Lyude Paul) [1814893]
+- [drm] drm/nouveau/kms/nv50-: clear SW state of disabled windows harder (Lyude Paul) [1814893]
+- [drm] drm/i915/gen12: Add aux table invalidate for all engines (Lyude Paul) [1814893]
+- [drm] drm/i915/gen12: Invalidate aux table entries forcibly (Lyude Paul) [1814893]
+- [drm] drm/i915/gen12: Flush L3 (Lyude Paul) [1814893]
+- [drm] drm/i915/gen12: Fix HDC pipeline flush (Lyude Paul) [1814893]
+- [drm] Revert "drm/i915/tgl: Include ro parts of l3 to invalidate" (Lyude Paul) [1814893]
+- [drm] drm/i915: Push MST link retraining to the hotplug work (Lyude Paul) [1814893]
+- [drm] drm/i915: Flatten intel_dp_check_mst_status() a bit (Lyude Paul) [1814893]
+- [drm] drm/i915/tc: Do not warn when aux power well of static TC ports timeout (Lyude Paul) [1814893]
+- [drm] drm/i915/tc: Catch TC users accessing FIA registers without enable aux (Lyude Paul) [1814893]
+- [drm] drm/i915/tc/tgl: Implement TC cold sequences (Lyude Paul) [1814893]
+- [drm] drm/i915/tc: Skip ref held check for TC legacy aux power wells (Lyude Paul) [1814893]
+- [drm] drm/i915/tc/icl: Implement TC cold sequences (Lyude Paul) [1814893]
+- [drm] drm/i915/display: Split hsw_power_well_enable() into two (Lyude Paul) [1814893]
+- [drm] drm/i915/display: Add intel_legacy_aux_to_power_domain() (Lyude Paul) [1814893]
+- [drm] drm/i915/display: Move out code to return the digital_port of the aux ch (Lyude Paul) [1814893]
+- [drm] drm/i915: Add missing deinitialization cases of load failure (Lyude Paul) [1814893]
+- [drm] drm/i915: split intel_modeset_init() to pre/post irq install (Lyude Paul) [1814893]
+- [drm] drm/i915: split i915_driver_modeset_probe() to pre/post irq install (Lyude Paul) [1814893]
+- [drm] drm/i915: split i915_driver_modeset_remove() to pre/post irq uninstall (Lyude Paul) [1814893]
+- [drm] drm/i915: split intel_modeset_driver_remove() to pre/post irq uninstall (Lyude Paul) [1814893]
+- [drm] drm/i915: Extract skl SAGV checking (Lyude Paul) [1814893]
+- [drm] drm/i915: Track active_pipes in bw_state (Lyude Paul) [1814893]
+- [drm] drm/i915: Use bw state for per crtc SAGV evaluation (Lyude Paul) [1814893]
+- [drm] drm/i915: Introduce intel_calc_active_pipes() (Lyude Paul) [1814893]
+- [drm] drm/i915: Add pre/post plane updates for SAGV (Lyude Paul) [1814893]
+- [drm] drm/i915: Prepare to extract gen specific functions from intel_can_enable_sagv (Lyude Paul) [1814893]
+- [drm] drm/i915: Add intel_atomic_get_bw_*_state helpers (Lyude Paul) [1814893]
+- [drm] drm/i915: Introduce skl_plane_wm_level accessor (Lyude Paul) [1814893]
+- [drm] drm/i915: do AUD_FREQ_CNTRL state save on all gen9+ platforms (Lyude Paul) [1814893]
+- [drm] drm/i915: Extend hotplug detect retry on TypeC connectors to 5 seconds (Lyude Paul) [1814893]
+- [drm] drm/i915: Add a retry counter for hotplug detect retries (Lyude Paul) [1814893]
+- [drm] drm/i915: Introduce intel_connector_hpd_pin() (Lyude Paul) [1814893]
+- [drm] drm/i915: Prefer intel_connector over drm_connector in hotplug code (Lyude Paul) [1814893]
+- [drm] drm/i915: Use intel_attached_encoder() (Lyude Paul) [1814893]
+- [drm] drm/i915/ehl: Restrict w/a 1607087056 for EHL/JSL (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Initialize multicast register steering for workarounds (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Make Wa_14010229206 permanent (Lyude Paul) [1814893]
+- [drm] drm/i915: Add Wa_1605460711 / Wa_1408767742 to ICL and EHL (Lyude Paul) [1814893]
+- [drm] drm/i915: Apply Wa_1406680159:icl, ehl as an engine workaround (Lyude Paul) [1814893]
+- [drm] drm/i915: Add Wa_1406306137:icl,ehl (Lyude Paul) [1814893]
+- [drm] drm/i915: Add Wa_1604278689:icl,ehl (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Don't treat unslice registers as masked (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Make Wa_1606700617 permanent (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: WaDisableGPGPUMidThreadPreemption (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Move and restrict Wa_1408615072 (Lyude Paul) [1814893]
+- [drm] drm/i915/gen11: Moving WAs to rcs_engine_wa_init() (Lyude Paul) [1814893]
+- [drm] drm/i915: add Wa_14010594013: icl,ehl (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add Wa number to WaAllowPMDepthAndInvocationCountAccessFromUMD (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add note about Wa_1409142259 (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Fix the Wa number of a fix (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add note about Wa_1607063988 (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add note to Wa_1607297627 (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Extend Wa_1606931601 for all steppings (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add Wa_1409085225, Wa_14010229206 (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Implement Wa_1806527549 (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Implement Wa_1409804808 (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add Wa_1808121037 to tgl (Lyude Paul) [1814893]
+- [drm] drm/i915: Use engine wa list for Wa_1607090982 (Lyude Paul) [1814893]
+- [drm] drm/i915: Implement Wa_1607090982 (Lyude Paul) [1814893]
+- [drm] drm/i915: Disable tesselation clock gating on tgl A0 (Lyude Paul) [1814893]
+- [drm] drm/i915: Move ringbuffer WAs to engine workaround list (Lyude Paul) [1814893]
+- [drm] drm/i915/gt: Skip rmw for masked registers (Lyude Paul) [1814893]
+- [drm] drm/i915/selftests: Also wait for the scratch buffer to be bound (Lyude Paul) [1814893]
+- [drm] drm/i915/dp: Return the right vswing tables (Lyude Paul) [1814893]
+- [drm] drm/i915/dp/tgl+: Update combo phy vswing tables (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add definitions for VRR registers and bits (Lyude Paul) [1814893]
+- [drm] drm/i915: use forced codec wake on all gen9+ platforms (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add new PCI IDs to TGL (Lyude Paul) [1814893]
+- [drm] drm/i915/perf: Invalidate OA TLB on when closing perf stream (Lyude Paul) [1814893]
+- [drm] Bump DRM backport version to 5.6.14 (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl+: Fix interrupt handling for DP AUX transactions (Lyude Paul) [1814893]
+- [drm] drm/amd/amdgpu: add raven1 part to the gfxoff quirk list (Lyude Paul) [1814893]
+- [drm] drm/amd/display: add basic atomic check for cursor plane (Lyude Paul) [1814893]
+- [drm] Make the "Reducing compressed framebufer size" message be DRM_INFO_ONCE() (Lyude Paul) [1814893]
+- [drm] drm/i915: Handle idling during i915_gem_evict_something busy loops (Lyude Paul) [1814893]
+- [drm] drm/i915: Mark concurrent submissions with a weak-dependency (Lyude Paul) [1814893]
+- [drm] drm/i915/gvt: Fix kernel oops for 3-level ppgtt guest (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: force fbdev into vram (Lyude Paul) [1814893]
+- [drm] drm/i915/gem: Remove object_is_locked assertion from unpin_from_display_plane (Lyude Paul) [1814893]
+- [drm] drm/i915: Don't enable WaIncreaseLatencyIPCEnabled when IPC is disabled (Lyude Paul) [1814893]
+- [drm] drm/i915/gt: Make timeslicing an explicit engine property (Lyude Paul) [1814893]
+- [drm] drm/qxl: lost qxl_bo_kunmap_atomic_page in qxl_image_init_helper() (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Update downspread percent to match spreadsheet for DCN2.1 (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Defer cursor update around VUPDATE for all ASIC (Lyude Paul) [1814893]
+- [drm] drm/amd/display: check if REFCLK_CNTL register is present (Lyude Paul) [1814893]
+- [drm] drm/amd/powerplay: avoid using pm_en before it is initialized revised (Lyude Paul) [1814893]
+- [drm] drm/amd/display: blank dp stream before re-train the link (Lyude Paul) [1814893]
+- [drm] drm/i915/display: Load DP_TP_CTL/STATUS offset before use it (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: TBT AUX should use TC power well ops (Lyude Paul) [1814893]
+- [drm] drm/i915/tgl: Add Wa_14010477008:tgl (Lyude Paul) [1814893]
+- [drm] drm/amd/display: work around fp code being emitted outside of DC_FP_START/END (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: drop redundant cg/pg ungate on runpm enter (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: move kfd suspend after ip_suspend_phase1 (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: Fix oops when pp_funcs is unset in ACPI event (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: Correctly initialize thermal controller for GPUs with Powerplay table v0 (e.g Hawaii) (Lyude Paul) [1814893]
+- [drm] drm/amd/powerplay: fix resume failed as smu table initialize early exit (Lyude Paul) [1814893]
+- [drm] drm/bridge: anx6345: set correct BPC for display_info of connector (Lyude Paul) [1814893]
+- [drm] drm/i915: Use proper fault mask in interrupt postinstall too (Lyude Paul) [1814893]
+- [drm] drm/i915/selftests: Fix i915_address_space refcnt leak (Lyude Paul) [1814893]
+- [drm] drm/qxl: qxl_release use after free (Lyude Paul) [1814893]
+- [drm] drm/qxl: qxl_release leak in qxl_hw_surface_alloc() (Lyude Paul) [1814893]
+- [drm] drm/qxl: qxl_release leak in qxl_draw_dirty_fb() (Lyude Paul) [1814893]
+- [drm] drm/i915/gt: Check cacheline is valid before acquiring (Lyude Paul) [1814893]
+- [drm] drm/i915/gem: Hold obj->vma.lock over for_each_ggtt_vma() (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Fix green screen issue after suspend (Lyude Paul) [1814893]
+- [drm] drm/edid: Fix off-by-one in DispID DTD pixel clock (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: invalidate L2 before SDMA IBs (v2) (Lyude Paul) [1814893]
+- [dma-buf] dma-buf: Fix SET_NAME ioctl uapi (Lyude Paul) [1814893]
+- [drm] drm/scheduler: fix drm_sched_get_cleanup_job (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: fix wrong vram lost counter increment V2 (Lyude Paul) [1814893]
+- [drm] drm/dp_mst: Zero assigned PBN when releasing VCPI slots (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Calculate scaling ratios on every medium/full update (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Update stream adjust in dc_stream_adjust_vmin_vmax (Lyude Paul) [1814893]
+- [video] fbdev: potential information leak in do_fb_ioctl() (Lyude Paul) [1814893]
+- [drm] drm/nouveau/gr/gp107, gp108: implement workaround for HW hanging during init (Lyude Paul) [1814893]
+- [drm] drm/amdkfd: kfree the wrong pointer (Lyude Paul) [1814893]
+- [drm] drm/nouveau: workaround runpm fail by disabling PCI power management on certain intel bridges (Lyude Paul) [1814893]
+- [drm] drm/nouveau/svm: fix vma range check for migration (Lyude Paul) [1814893]
+- [drm] drm/nouveau/svm: check for SVM initialized before migrating (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Don't try hdcp1.4 when content_type is set to type1 (Lyude Paul) [1814893]
+- [drm] drm/ttm: flush the fence on the bo after we individualize the reservation object (Lyude Paul) [1814893]
+- [drm] drm/i915/perf: Do not clear pollin for small user read buffers (Lyude Paul) [1814893]
+- [drm] drm/nouveau/sec2/gv100-: add missing MODULE_FIRMWARE() (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: fix the hw hang during perform system reboot and reset (Lyude Paul) [1814893]
+- [drm] drm/amdgpu/gfx9: add gfxoff quirk (Lyude Paul) [1814893]
+- [drm] drm/amd/powerplay: force the trim of the mclk dpm_levels if OD is enabled (Lyude Paul) [1814893]
+- [drm] drm/i915/gt: Fill all the unused space in the GGTT (Lyude Paul) [1814893]
+- [drm] drm/i915/ggtt: do not set bits 1-11 in gen12 ptes (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: fix gfx hang during suspend with video playback (v2) (Lyude Paul) [1814893]
+- [drm] drm/dp_mst: Fix clearing payload state on topology disable (Lyude Paul) [1814893]
+- [drm] Revert "drm/dp_mst: Remove VCPI while disabling topology mgr" (Lyude Paul) [1814893]
+- [drm] drm/i915/gt: Treat idling as a RPS downclock event (Lyude Paul) [1814893]
+- [drm] drm/vboxvideo: Add missing remove_conflicting_pci_framebuffers call, v2 (Lyude Paul) [1814893]
+- [drm] drm/i915/icl+: Don't enable DDI IO power on a TypeC port in TBT mode (Lyude Paul) [1814893]
+- [drm] drm/amd/display: Check for null fclk voltage when parsing clock table (Lyude Paul) [1814893]
+- [drm] drm/amdgpu: unify fw_write_wait for new gfx9 asics (Lyude Paul) [1814893]
+- [drm] drm/amd/powerplay: implement the is_dpm_running() (Lyude Paul) [1814893]
+- [drm] drm/amdgpu/powerplay: using the FCLK DPM table to set the MCLK (Lyude Paul) [1814893]
+- [drm] drm: Remove PageReserved manipulation from drm_pci_alloc (Lyude Paul) [1814893]
+- [drm] drm/bridge: analogix-anx78xx: Fix drm_dp_link helper removal (Lyude Paul) [1814893]
+- [drm] drm/i915/gem: Flush all the reloc_gpu batch (Lyude Paul) [1814893]
+- [drm] drm/i915/gen12: Disable preemption timeout (Lyude Paul) [1814893]
+- [drm] drm/i915/display: Fix mode private_flags comparison at atomic_check (Lyude Paul) [1814893]
+- [drm] drm/bridge: analogix-anx6345: Avoid duplicate -supply suffix (Lyude Paul) [1814893]
+- [drm] drm/i915: Allow for different modes of interruptible i915_active_wait (Lyude Paul) [1814893]
+- [gpu] DRM Backport 5.5 -> 5.6 (Lyude Paul) [1814893]
+- [video] video: fbdev: intelfb: use const pointer for fb_ops (Lyude Paul) [1814893]
+- [include] video: fbdev: make fbops member of struct fb_info a const pointer (Lyude Paul) [1814893]
+- [video] video: fbdev: uvesafb: modify the static fb_ops directly (Lyude Paul) [1814893]
+- [video] video: fbdev: nvidia: modify the static fb_ops directly (Lyude Paul) [1814893]
+- [video] video: fbdev: mb862xx: modify the static fb_ops directly (Lyude Paul) [1814893]
+- [video] video: fbdev: atyfb: modify the static fb_ops directly (Lyude Paul) [1814893]
+- [video] video: fbmem: use const pointer for fb_ops (Lyude Paul) [1814893]
+- [video] video: fbdev: vesafb: modify the static fb_ops directly (Lyude Paul) [1814893]
+- [video] video: udlfb: don't restore fb_mmap after deferred IO cleanup (Lyude Paul) [1814893]
+- [video] video: smscufx: don't restore fb_mmap after deferred IO cleanup (Lyude Paul) [1814893]
+- [drm] drm/fb-helper: don't preserve fb_ops across deferred IO use (Lyude Paul) [1814893]
+- [drm] drm/fb-helper: Remove drm_fb_helper_fbdev_{setup, teardown}() (Lyude Paul) [1814893]
+- [video] video: fb_defio: preserve user fb_ops (Lyude Paul) [1814893]
+- [drm] mm, drm/ttm: Fix vm page protection handling (Lyude Paul) [1814893]
+- [dma-buf] udmabuf: Remove deleted map/unmap handlers (Lyude Paul) [1814893]
+- [include] dma-buf: Remove kernel map/unmap hooks (Lyude Paul) [1814893]
+- [drm] drm/udl: Remove udl implementation of GEM's free_object() (Lyude Paul) [1814893]
+- [drm] drm/udl: Unmap buffer object after damage update (Lyude Paul) [1814893]
+- [drm] drm/udl: Fix Kconfig indentation (Lyude Paul) [1814893]
+- [drm] drm/udl: Replace fbdev code with generic emulation (Lyude Paul) [1814893]
+- [drm] drm/udl: Remove struct udl_gem_object and functions (Lyude Paul) [1814893]
+- [drm] drm/udl: Switch to SHMEM (Lyude Paul) [1814893]
+- [drm] drm/udl: Allocate GEM object via struct drm_driver.gem_create_object (Lyude Paul) [1814893]
+- [drm] drm/udl: Remove flags field from struct udl_gem_object (Lyude Paul) [1814893]
+- [drm] drm/armada: Delete dma_buf->k(un)map implemenation (Lyude Paul) [1814893]
+- [tee] drm/tee_shm: Drop dma_buf_k(unmap) support (Lyude Paul) [1814893]
+- [samples] sample/vfio-mdev/mbocs: Remove dma_buf_k(un)map support (Lyude Paul) [1814893]
+- [media] media/videobuf2: Drop dma_buf->k(un)map support (Lyude Paul) [1814893]
+- [drm] drm/vmwgfx: Delete mmaping functions (Lyude Paul) [1814893]
+- [dma-buf] dma-buf: Drop dma_buf_k(un)map (Lyude Paul) [1814893]
+- [drm] drm/tegra: Remove dma_buf->k(un)map (Lyude Paul) [1814893]
+- [drm] drm/omapdrm: Drop dma_buf->k(un)map (Lyude Paul) [1814893]
+- [drm] drm/i915: Drop dma_buf->k(un)map (Lyude Paul) [1814893]
+- [staging] staging/android/ion: delete dma_buf->kmap/unmap implemenation (Lyude Paul) [1814893]
+- [drm] drm/i915: Remove dma_buf_kmap selftest (Lyude Paul) [1814893]
+- [drm] drm/tegra: Delete host1x_bo_ops->k(un)map (Lyude Paul) [1814893]
+- [gpu] drm/tegra: Map cmdbuf once for reloc processing (Lyude Paul) [1814893]
+- [pinctrl] pinctrl: Allow modules to use pinctrl_register_mappings (Lyude Paul) [1814893]
+- [include] lockdep: add might_lock_nested() (Lyude Paul) [1814893]
+- [gpu] DRM Backport 5.4 -> 5.5 (Lyude Paul) [1814893]
+- [security] device_cgroup: Export devcgroup_check_permission (Lyude Paul) [1814893]
+- [video] fbdev: drop res_id parameter from remove_conflicting_pci_framebuffers (Lyude Paul) [1814893]
+- [media] media: cec: check 'transmit_in_progress', not 'transmitting' (Lyude Paul) [1814893]
+- [media] media: cec: avoid decrementing transmit_queue_sz if it is 0 (Lyude Paul) [1814893]
+- [media] media: cec: CEC 2.0-only bcast messages were ignored (Lyude Paul) [1814893]
+- [media] cec: add cec_adapter to cec_notifier_cec_adap_unregister() (Lyude Paul) [1814893]
+- [media] media: cec-pin: add 'received' callback (Lyude Paul) [1814893]
+- [media] media: cec: expose the new connector info API (Lyude Paul) [1814893]
+- [media] media: cec/cec-adap.c: use new UI_CMD defines (Lyude Paul) [1814893]
+- [media] media: cec-notifier: clear cec_adap in cec_notifier_unregister (Lyude Paul) [1814893]
+- [media] media: cec-adap: return from cec_s_conn_info() if adap is invalid (Lyude Paul) [1814893]
+- [media] media: cec-notifier: add new notifier functions (Lyude Paul) [1814893]
+- [media] media: cec: add struct cec_connector_info support (Lyude Paul) [1814893]
+- [media] media: cec-notifier: rename variables, check kstrdup and n->conn_name (Lyude Paul) [1814893]
+- [media] media: cec-adap: fix regression in ping sanity check (Lyude Paul) [1814893]
+- [media] media: cec: allow any initiator for Ping and Image/Text View On (Lyude Paul) [1814893]
+- [media] media: cec: support CEC_MSG_FL_RAW (Lyude Paul) [1814893]
+- [media] media: cec: add CEC_MSG_FL_RAW flag and msg_is_raw helper function (Lyude Paul) [1814893]
+- [media] media: cec: move check from cec_transmit to cec_transmit_msg_fh (Lyude Paul) [1814893]
+- [media] media: cec: cec_transmit_msg_fh: do sanity checks first (Lyude Paul) [1814893]
+- [media] media: cec: mark devnode as registered before actually registering it (Lyude Paul) [1814893]
+- [media] media: cec-notifier: add cec_notifier_parse_hdmi_phandle helper (Lyude Paul) [1814893]
+- [media] media: Kconfig files: use the right help coding style (Lyude Paul) [1814893]
+- [media] media: cec: fill in cec chardev kobject to ease debugging (Lyude Paul) [1814893]
+- [media] media: cec: fix epoll() by calling poll_wait first (Lyude Paul) [1814893]
+- [media] media: cec: keep track of outstanding transmits (Lyude Paul) [1814893]
+- [media] media: cec: add debug_phys_addr module option (Lyude Paul) [1814893]
+- [media] media: cec: report Vendor ID after initialization (Lyude Paul) [1814893]
+- [media] media: cec-pin: fix broken tx_ignore_nack_until_eom error injection (Lyude Paul) [1814893]
+- [media] media: cec: increase debug level for 'queue full' (Lyude Paul) [1814893]
+- [media] media: cec: check for non-OK/NACK conditions while claiming a LA (Lyude Paul) [1814893]
+- [media] media: cec: forgot to cancel delayed work (Lyude Paul) [1814893]
+- [media] media: cec: name for RC passthrough device does not need 'RC for' (Lyude Paul) [1814893]
+- [media] media: cec-gpio: select correct Signal Free Time (Lyude Paul) [1814893]
+- [media] media: cec: fix the Signal Free Time calculation (Lyude Paul) [1814893]
+- [media] media: cec: add new tx/rx status bits to detect aborts/timeouts (Lyude Paul) [1814893]
+- [media] media: cec: remove cec-edid.c (Lyude Paul) [1814893]
+- [media] media: cec/v4l2: move V4L2 specific CEC functions to V4L2 (Lyude Paul) [1814893]
+- [media] media: cec: integrate cec_validate_phys_addr() in cec-api.c (Lyude Paul) [1814893]
+- [media] media: cec: make cec_get_edid_spa_location() an inline function (Lyude Paul) [1814893]
+- [media] media: use strscpy() instead of strlcpy() (Lyude Paul) [1814893]
+- [media] media: cec: move compat_ioctl handling to cec-api.c (Lyude Paul) [1814893]
+- [media] media: cec: add support for 5V signal testing (Lyude Paul) [1814893]
+- [uapi] media: uapi/linux/cec.h: add 5V events (Lyude Paul) [1814893]
+- [scsi] compat_ioctl: move more drivers to compat_ptr_ioctl (Lyude Paul) [1814893]
+- [vhost] compat_ioctl: move drivers to compat_ptr_ioctl (Lyude Paul) [1814893]
+- [rtc] compat_ioctl: move rtc handling into drivers/rtc/dev.c (Lyude Paul) [1814893]
+- [fs] ceph: fix compat_ioctl for ceph_dir_operations (Lyude Paul) [1814893]
+- [fs] compat_sys_ioctl(): make parallel to do_vfs_ioctl() (Lyude Paul) [1814893]
+- [fs] compat: move FS_IOC_RESVSP_32 handling to fs/ioctl.c (Lyude Paul) [1814893]
+- [fs] do_vfs_ioctl(): use saner types (Lyude Paul) [1814893]
+- [fs] compat: itanic doesn't have one (Lyude Paul) [1814893]
+- [fs] FIGETBSZ: fix compat (Lyude Paul) [1814893]
+- [fs] fix compat handling of FICLONERANGE, FIDEDUPERANGE and FS_IOC_FIEMAP (Lyude Paul) [1814893]
+- [gpu] DRM Backport 5.3 -> 5.4 (Lyude Paul) [1814893]
+- [include] Add wait_var_event_interruptible() (Lyude Paul) [1814893]
+- [kernel] kthread: Add __kthread_should_park() (Lyude Paul) [1814893]
+- [kernel] PM / sleep: Refactor filesystems sync to reduce duplication (Lyude Paul) [1814893]
+- [fpga] drivers: Introduce device lookup variants by of_node (Lyude Paul) [1814893]
+- [s390] drivers: Introduce device lookup variants by name (Lyude Paul) [1814893]
+- [base] drivers: Add generic helper to match by of_node (Lyude Paul) [1814893]
+- [drm] kbuild: change *FLAGS_<basetarget>.o to take the path relative to $(obj) (Lyude Paul) [1814893]
+- [video] fbdev: lock_fb_info cannot fail (Lyude Paul) [1814893]
+- [video] fbdev/atyfb: lock_fb_info can't fail (Lyude Paul) [1814893]
+- [video] fbdev: sysfs files can't disappear before the device is gone (Lyude Paul) [1814893]
+- [video] fbcon: call fbcon_fb_(un)registered directly (Lyude Paul) [1814893]
+- [video] fbcon: Remove fbcon_has_exited (Lyude Paul) [1814893]
+- [video] fbcon: s/struct display/struct fbcon_display/ (Lyude Paul) [1814893]
+- [video] fbdev: locking check for fb_set_suspend (Lyude Paul) [1814893]
+- [tty] vt/fbcon: deinitialize resources in visual_init() after failed memory allocation (Lyude Paul) [1814893]
+- [video] fbcon: Don't reset logo_shown when logo is currently shown (Lyude Paul) [1814893]
+- [video] fbdev: fix WARNING in __alloc_pages_nodemask bug (Lyude Paul) [1814893]
+- [video] fbdev: fix divide error in fb_var_to_videomode (Lyude Paul) [1814893]
+- [video] fbdev: list all pci memory bars as conflicting apertures (Lyude Paul) [1814893]
+
+* Sun Jun 21 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-218.el8]
+- [block] Revert "block: end bio with BLK_STS_AGAIN in case of non-mq devs and REQ_NOWAIT" (Jeff Moyer) [1784478]
+- [fs] io_uring: reset -EBUSY error when io sq thread is waken up (Jeff Moyer) [1784478]
+- [fs] io_uring: don't add non-IO requests to iopoll pending list (Jeff Moyer) [1784478]
+- [fs] io_uring: don't use kiocb.private to store buf_index (Jeff Moyer) [1784478]
+- [fs] io_uring: cancel work if task_work_add() fails (Jeff Moyer) [1784478]
+- [fs] io_uring: remove dead check in io_splice() (Jeff Moyer) [1784478]
+- [fs] io_uring: fix FORCE_ASYNC req preparation (Jeff Moyer) [1784478]
+- [fs] io_uring: don't prepare DRAIN reqs twice (Jeff Moyer) [1784478]
+- [fs] io_uring: initialize ctx->sqo_wait earlier (Jeff Moyer) [1784478]
+- [fs] io_uring: polled fixed file must go through free iteration (Jeff Moyer) [1784478]
+- [fs] io_uring: fix zero len do_splice() (Jeff Moyer) [1784478]
+- [fs] io_uring: don't use 'fd' for openat/openat2/statx (Jeff Moyer) [1784478]
+- [fs] splice: move f_mode checks to do_{splice, tee}() (Jeff Moyer) [1784478]
+- [fs] io_uring: handle -EFAULT properly in io_uring_setup() (Jeff Moyer) [1784478]
+- [fs] io_uring: fix mismatched finish_wait() calls in io_uring_cancel_files() (Jeff Moyer) [1784478]
+- [fs] io_uring: punt splice async because of inode mutex (Jeff Moyer) [1784478]
+- [fs] io_uring: check non-sync defer_list carefully (Jeff Moyer) [1784478]
+- [fs] io_uring: fix extra put in sync_file_range() (Jeff Moyer) [1784478]
+- [fs] io_uring: use cond_resched() in io_ring_ctx_wait_and_kill() (Jeff Moyer) [1784478]
+- [fs] io_uring: use proper references for fallback_req locking (Jeff Moyer) [1784478]
+- [fs] io_uring: only force async punt if poll based retry can't handle it (Jeff Moyer) [1784478]
+- [fs] io_uring: enable poll retry for any file with ->read_iter / ->write_iter (Jeff Moyer) [1784478]
+- [fs] io_uring: statx must grab the file table for valid fd (Jeff Moyer) [1784478]
+- [fs] io_uring: only restore req->work for req that needs do completion (Jeff Moyer) [1784478]
+- [fs] io_uring: don't count rqs failed after current one (Jeff Moyer) [1784478]
+- [fs] io_uring: kill already cached timeout.seq_offset (Jeff Moyer) [1784478]
+- [fs] io_uring: fix cached_sq_head in io_timeout() (Jeff Moyer) [1784478]
+- [fs] io_uring: only post events in io_poll_remove_all() if we completed some (Jeff Moyer) [1784478]
+- [fs] io_uring: io_async_task_func() should check and honor cancelation (Jeff Moyer) [1784478]
+- [fs] io_uring: check for need to re-wait in polled async handling (Jeff Moyer) [1784478]
+- [fs] io_uring: correct O_NONBLOCK check for splice punt (Jeff Moyer) [1784478]
+- [fs] io_uring: restore req->work when canceling poll request (Jeff Moyer) [1784478]
+- [fs] io_uring: move all request init code in one place (Jeff Moyer) [1784478]
+- [fs] io_uring: keep all sqe->flags in req->flags (Jeff Moyer) [1784478]
+- [fs] io_uring: early submission req fail code (Jeff Moyer) [1784478]
+- [fs] io_uring: track mm through current->mm (Jeff Moyer) [1784478]
+- [fs] io_uring: remove obsolete @mm_fault (Jeff Moyer) [1784478]
+- [fs] io_uring: punt final io_ring_ctx wait-and-free to workqueue (Jeff Moyer) [1784478]
+- [fs] io_uring: fix fs cleanup on cqe overflow (Jeff Moyer) [1784478]
+- [fs] io_uring: don't read user-shared sqe flags twice (Jeff Moyer) [1784478]
+- [fs] io_uring: remove req init from io_get_req() (Jeff Moyer) [1784478]
+- [fs] io_uring: alloc req only after getting sqe (Jeff Moyer) [1784478]
+- [fs] io_uring: simplify io_get_sqring (Jeff Moyer) [1784478]
+- [fs] io_uring: do not always copy iovec in io_req_map_rw() (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure openat sets O_LARGEFILE if needed (Jeff Moyer) [1784478]
+- [fs] io_uring: initialize fixed_file_data lock (Jeff Moyer) [1784478]
+- [fs] io_uring: remove redundant variable pointer nxt and io_wq_assign_next call (Jeff Moyer) [1784478]
+- [fs] io_uring: fix ctx refcounting in io_submit_sqes() (Jeff Moyer) [1784478]
+- [fs] io_uring: process requests completed with -EAGAIN on poll list (Jeff Moyer) [1784478]
+- [fs] io_uring: remove bogus RLIMIT_NOFILE check in file registration (Jeff Moyer) [1784478]
+- [fs] io_uring: use io-wq manager as backup task if task is exiting (Jeff Moyer) [1784478]
+- [fs] io_uring: grab task reference for poll requests (Jeff Moyer) [1784478]
+- [fs] io_uring: retry poll if we got woken with non-matching mask (Jeff Moyer) [1784478]
+- [fs] io_uring: add missing finish_wait() in io_sq_thread() (Jeff Moyer) [1784478]
+- [fs] io_uring: refactor file register/unregister/update handling (Jeff Moyer) [1784478]
+- [fs] io_uring: cleanup io_alloc_async_ctx() (Jeff Moyer) [1784478]
+- [fs] io_uring: fix missing 'return' in comment (Jeff Moyer) [1784478]
+- [fs] io-wq: handle hashed writes in chains (Jeff Moyer) [1784478]
+- [fs] io-uring: drop 'free_pfile' in struct io_file_put (Jeff Moyer) [1784478]
+- [fs] io-uring: drop completion when removing file (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix ->data corruption on re-enqueue (Jeff Moyer) [1784478]
+- [fs] io-wq: close cancel gap for hashed linked work (Jeff Moyer) [1784478]
+- [uapi] io_uring: make spdxcheck.py happy (Jeff Moyer) [1784478]
+- [fs] io_uring: honor original task RLIMIT_FSIZE (Jeff Moyer) [1784478]
+- [fs] io_uring: make sure accept honor rlimit nofile (Jeff Moyer) [1784478]
+- [fs] io_uring: make sure openat/openat2 honor rlimit nofile (Jeff Moyer) [1784478]
+- [fs] io-wq: hash dependent work (Jeff Moyer) [1784478]
+- [fs] io-wq: split hashing and enqueueing (Jeff Moyer) [1784478]
+- [fs] io-wq: don't resched if there is no work (Jeff Moyer) [1784478]
+- [fs] io_uring: NULL-deref for IOSQE_{ASYNC,DRAIN} (Jeff Moyer) [1784478]
+- [fs] io-wq: remove duplicated cancel code (Jeff Moyer) [1784478]
+- [fs] io_uring: fix truncated async read/readv and write/writev retry (Jeff Moyer) [1784478]
+- [uapi] io_uring: dual license io_uring.h uapi header (Jeff Moyer) [1784478]
+- [fs] io_uring: io_uring_enter(2) don't poll while SETUP_IOPOLL|SETUP_SQPOLL enabled (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix unused function warnings (Jeff Moyer) [1784478]
+- [fs] io_uring: add end-of-bits marker and build time verify it (Jeff Moyer) [1784478]
+- [fs] io_uring: provide means of removing buffers (Jeff Moyer) [1784478]
+- [fs] io_uring: add IOSQE_BUFFER_SELECT support for IORING_OP_RECVMSG (Jeff Moyer) [1784478]
+- [net] net: abstract out normal and compat msghdr import (Jeff Moyer) [1784478]
+- [fs] io_uring: add IOSQE_BUFFER_SELECT support for IORING_OP_READV (Jeff Moyer) [1784478]
+- [fs] io_uring: support buffer selection for OP_READ and OP_RECV (Jeff Moyer) [1784478]
+- [fs] io_uring: add IORING_OP_PROVIDE_BUFFERS (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure RCU callback ordering with rcu_barrier() (Jeff Moyer) [1784478]
+- [fs] io_uring: fix lockup with timeouts (Jeff Moyer) [1784478]
+- [fs] io_uring: free fixed_file_data after RCU grace period (Jeff Moyer) [1784478]
+- [fs] io_uring: buffer registration infrastructure (Jeff Moyer) [1784478]
+- [fs] io_uring/io-wq: forward submission ref to async (Jeff Moyer) [1784478]
+- [fs] io-wq: optimise out *next_work() double lock (Jeff Moyer) [1784478]
+- [fs] io-wq: optimise locking in io_worker_handle_work() (Jeff Moyer) [1784478]
+- [fs] io-wq: shuffle io_worker_handle_work() code (Jeff Moyer) [1784478]
+- [fs] io_uring: get next work with submission ref drop (Jeff Moyer) [1784478]
+- [fs] io_uring: remove @nxt from handlers (Jeff Moyer) [1784478]
+- [fs] io_uring: make submission ref putting consistent (Jeff Moyer) [1784478]
+- [fs] io_uring: clean up io_close (Jeff Moyer) [1784478]
+- [fs] io_uring: Ensure mask is initialized in io_arm_poll_handler (Jeff Moyer) [1784478]
+- [fs] io_uring: remove io_prep_next_work() (Jeff Moyer) [1784478]
+- [fs] io_uring: remove extra nxt check after punt (Jeff Moyer) [1784478]
+- [fs] io_uring: use poll driven retry for files that support it (Jeff Moyer) [1784478]
+- [fs] io_uring: mark requests that we can do poll async in io_op_defs (Jeff Moyer) [1784478]
+- [fs] io_uring: add per-task callback handler (Jeff Moyer) [1784478]
+- [fs] io_uring: store io_kiocb in wait->private (Jeff Moyer) [1784478]
+- [fs] io-wq: use BIT for ulong hash (Jeff Moyer) [1784478]
+- [fs] io_uring: remove IO_WQ_WORK_CB (Jeff Moyer) [1784478]
+- [fs] io-wq: remove unused IO_WQ_WORK_HAS_MM (Jeff Moyer) [1784478]
+- [fs] io_uring: extract kmsg copy helper (Jeff Moyer) [1784478]
+- [fs] io_uring: clean io_poll_complete (Jeff Moyer) [1784478]
+- [fs] io_uring: add splice(2) support (Jeff Moyer) [1784478]
+- [fs] io_uring: add interface for getting files (Jeff Moyer) [1784478]
+- [fs] splice: make do_splice public (Jeff Moyer) [1784478]
+- [fs] io_uring: remove req->in_async (Jeff Moyer) [1784478]
+- [fs] io_uring: don't do full *prep_worker() from io-wq (Jeff Moyer) [1784478]
+- [fs] io_uring: don't call work.func from sync ctx (Jeff Moyer) [1784478]
+- [fs] io_uring: io_accept() should hold on to submit reference on retry (Jeff Moyer) [1784478]
+- [fs] io_uring: consider any io_read/write -EAGAIN as final (Jeff Moyer) [1784478]
+- [fs] io-wq: remove io_wq_flush and IO_WQ_WORK_INTERNAL (Jeff Moyer) [1784478]
+- [fs] io-wq: fix IO_WQ_WORK_NO_CANCEL cancellation (Jeff Moyer) [1784478]
+- [fs] io_uring: fix 32-bit compatability with sendmsg/recvmsg (Jeff Moyer) [1784478]
+- [fs] io_uring: define and set show_fdinfo only if procfs is enabled (Jeff Moyer) [1784478]
+- [fs] io_uring: drop file set ref put/get on switch (Jeff Moyer) [1784478]
+- [fs] io_uring: import_single_range() returns 0/-ERROR (Jeff Moyer) [1784478]
+- [fs] io_uring: pick up link work on submit reference drop (Jeff Moyer) [1784478]
+- [fs] io-wq: ensure work->task_pid is cleared on init (Jeff Moyer) [1784478]
+- [fs] io-wq: remove spin-for-work optimization (Jeff Moyer) [1784478]
+- [fs] io_uring: fix poll_list race for SETUP_IOPOLL|SETUP_SQPOLL (Jeff Moyer) [1784478]
+- [fs] io_uring: fix personality idr leak (Jeff Moyer) [1784478]
+- [fs] io_uring: handle multiple personalities in link chains (Jeff Moyer) [1784478]
+- [fs] io_uring: fix __io_iopoll_check deadlock in io_sq_thread (Jeff Moyer) [1784478]
+- [fs] io_uring: prevent sq_thread from spinning when it should stop (Jeff Moyer) [1784478]
+- [fs] io_uring: fix use-after-free by io_cleanup_req() (Jeff Moyer) [1784478]
+- [fs] io_uring: remove unnecessary NULL checks (Jeff Moyer) [1784478]
+- [fs] io_uring: add missing io_req_cancelled() (Jeff Moyer) [1784478]
+- [fs] io_uring: prune request from overflow list on flush (Jeff Moyer) [1784478]
+- [fs] io-wq: don't call kXalloc_node() with non-online node (Jeff Moyer) [1784478]
+- [fs] io_uring: retain sockaddr_storage across send/recvmsg async punt (Jeff Moyer) [1784478]
+- [fs] io_uring: cancel pending async work if task exits (Jeff Moyer) [1784478]
+- [fs] io-wq: add io_wq_cancel_pid() to cancel based on a specific pid (Jeff Moyer) [1784478]
+- [fs] io-wq: make io_wqe_cancel_work() take a match handler (Jeff Moyer) [1784478]
+- [fs] io_uring: fix openat/statx's filename leak (Jeff Moyer) [1784478]
+- [fs] io_uring: fix double prep iovec leak (Jeff Moyer) [1784478]
+- [fs] io_uring: fix async close() with f_op->flush() (Jeff Moyer) [1784478]
+- [fs] io_uring: allow AT_FDCWD for non-file openat/openat2/statx (Jeff Moyer) [1784478]
+- [fs] io_uring: grab ->fs as part of async preparation (Jeff Moyer) [1784478]
+- [fs] io-wq: add support for inheriting ->fs (Jeff Moyer) [1784478]
+- [fs] io_uring: retry raw bdev writes if we hit -EOPNOTSUPP (Jeff Moyer) [1784478]
+- [fs] io_uring: add cleanup for openat()/statx() (Jeff Moyer) [1784478]
+- [fs] io_uring: fix iovec leaks (Jeff Moyer) [1784478]
+- [fs] io_uring: remove unused struct io_async_open (Jeff Moyer) [1784478]
+- [fs] io_uring: flush overflowed CQ events in the io_uring_poll() (Jeff Moyer) [1784478]
+- [fs] io_uring: statx/openat/openat2 don't support fixed files (Jeff Moyer) [1784478]
+- [fs] io_uring: fix deferred req iovec leak (Jeff Moyer) [1784478]
+- [fs] io_uring: fix 1-bit bitfields to be unsigned (Jeff Moyer) [1784478]
+- [fs] io_uring: get rid of delayed mm check (Jeff Moyer) [1784478]
+- [fs] io_uring: cleanup fixed file data table references (Jeff Moyer) [1784478]
+- [fs] io_uring: spin for sq thread to idle on shutdown (Jeff Moyer) [1784478]
+- [fs] io_uring: put the flag changing code in the same spot (Jeff Moyer) [1784478]
+- [fs] io_uring: iterate req cache backwards (Jeff Moyer) [1784478]
+- [fs] io_uring: punt even fadvise() WILLNEED to async context (Jeff Moyer) [1784478]
+- [fs] io_uring: fix sporadic double CQE entry for close (Jeff Moyer) [1784478]
+- [fs] io_uring: remove extra ->file check (Jeff Moyer) [1784478]
+- [fs] io_uring: don't map read/write iovec potentially twice (Jeff Moyer) [1784478]
+- [fs] io_uring: use the proper helpers for io_send/recv (Jeff Moyer) [1784478]
+- [fs] io_uring: prevent potential eventfd recursion on poll (Jeff Moyer) [1784478]
+- [fs] eventfd: track eventfd_signal() recursion depth (Jeff Moyer) [1784478]
+- [fs] io_uring: add BUILD_BUG_ON() to assert the layout of struct io_uring_sqe (Jeff Moyer) [1784478]
+- [fs] io_uring: add ->show_fdinfo() for the io_uring file descriptor (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for epoll_ctl(2) (Jeff Moyer) [1784478]
+- [fs] eventpoll: support non-blocking do_epoll_ctl() calls (Jeff Moyer) [1784478]
+- [fs] eventpoll: abstract out epoll_ctl() handler (Jeff Moyer) [1784478]
+- [fs] io_uring: fix linked command file table usage (Jeff Moyer) [1784478]
+- [fs] io_uring: support using a registered personality for commands (Jeff Moyer) [1784478]
+- [fs] io_uring: allow registering credentials (Jeff Moyer) [1784478]
+- [fs] io_uring: add io-wq workqueue sharing (Jeff Moyer) [1784478]
+- [fs] io-wq: allow grabbing existing io-wq (Jeff Moyer) [1784478]
+- [fs] io_uring/io-wq: don't use static creds/mm assignments (Jeff Moyer) [1784478]
+- [fs] io-wq: make the io_wq ref counted (Jeff Moyer) [1784478]
+- [fs] io_uring: fix refcounting with batched allocations at OOM (Jeff Moyer) [1784478]
+- [fs] io_uring: add comment for drain_next (Jeff Moyer) [1784478]
+- [fs] io_uring: don't attempt to copy iovec for READ/WRITE (Jeff Moyer) [1784478]
+- [fs] io_uring: don't cancel all work on process exit (Jeff Moyer) [1784478]
+- [fs] Revert "io_uring: only allow submit from owning task" (Jeff Moyer) [1784478]
+- [fs] io_uring: honor IOSQE_ASYNC for linked reqs (Jeff Moyer) [1784478]
+- [fs] io_uring: prep req when do IOSQE_ASYNC (Jeff Moyer) [1784478]
+- [fs] io_uring: use labeled array init in io_op_defs (Jeff Moyer) [1784478]
+- [fs] io_uring: optimise sqe-to-req flags translation (Jeff Moyer) [1784478]
+- [fs] io_uring: remove REQ_F_IO_DRAINED (Jeff Moyer) [1784478]
+- [fs] io_uring: file switch work needs to get flushed on exit (Jeff Moyer) [1784478]
+- [fs] io_uring: hide uring_fd in ctx (Jeff Moyer) [1784478]
+- [fs] io_uring: remove extra check in __io_commit_cqring (Jeff Moyer) [1784478]
+- [fs] io_uring: optimise use of ctx->drain_next (Jeff Moyer) [1784478]
+- [fs] RHEL-only: Add IORING_OP_OPENAT2 opcode (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for probing opcodes (Jeff Moyer) [1784478]
+- [fs] io_uring: account fixed file references correctly in batch (Jeff Moyer) [1784478]
+- [fs] io_uring: add opcode to issue trace event (Jeff Moyer) [1784478]
+- [fs] io_uring: enable option to only trigger eventfd for async completions (Jeff Moyer) [1784478]
+- [fs] io_uring: change io_ring_ctx bool fields into bit fields (Jeff Moyer) [1784478]
+- [fs] io_uring: file set registration should use interruptible waits (Jeff Moyer) [1784478]
+- [fs] io_uring: Remove unnecessary null check (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for send(2) and recv(2) (Jeff Moyer) [1784478]
+- [fs] io_uring: remove extra io_wq_current_is_worker() (Jeff Moyer) [1784478]
+- [fs] io_uring: optimise commit_sqring() for common case (Jeff Moyer) [1784478]
+- [fs] io_uring: optimise head checks in io_get_sqring() (Jeff Moyer) [1784478]
+- [fs] io_uring: clamp to_submit in io_submit_sqes() (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for IORING_SETUP_CLAMP (Jeff Moyer) [1784478]
+- [fs] io_uring: extend batch freeing to cover more cases (Jeff Moyer) [1784478]
+- [fs] io_uring: wrap multi-req freeing in struct req_batch (Jeff Moyer) [1784478]
+- [fs] io_uring: batch getting pcpu references (Jeff Moyer) [1784478]
+- [include] pcpu_ref: add percpu_ref_tryget_many() (Jeff Moyer) [1784478]
+- [fs] io_uring: add IORING_OP_MADVISE (Jeff Moyer) [1784478]
+- [mm] mm: make do_madvise() available internally (Jeff Moyer) [1784478]
+- [fs] io_uring: add IORING_OP_FADVISE (Jeff Moyer) [1784478]
+- [fs] io_uring: allow use of offset == -1 to mean file position (Jeff Moyer) [1784478]
+- [fs] io_uring: add non-vectored read/write commands (Jeff Moyer) [1784478]
+- [fs] io_uring: improve poll completion performance (Jeff Moyer) [1784478]
+- [fs] io_uring: split overflow state into SQ and CQ side (Jeff Moyer) [1784478]
+- [fs] io_uring: add lookup table for various opcode needs (Jeff Moyer) [1784478]
+- [fs] io_uring: remove two unnecessary function declarations (Jeff Moyer) [1784478]
+- [fs] io_uring: move *queue_link_head() from common path (Jeff Moyer) [1784478]
+- [fs] io_uring: rename prev to head (Jeff Moyer) [1784478]
+- [fs] io_uring: add IOSQE_ASYNC (Jeff Moyer) [1784478]
+- [fs] io-wq: support concurrent non-blocking work (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for IORING_OP_STATX (Jeff Moyer) [1784478]
+- [fs] fs: make two stat prep helpers available (Jeff Moyer) [1784478]
+- [fs] io_uring: avoid ring quiesce for fixed file set unregister and update (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for IORING_OP_CLOSE (Jeff Moyer) [1784478]
+- [fs] io-wq: add support for uncancellable work (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for IORING_OP_OPENAT (Jeff Moyer) [1784478]
+- [fs] fs: make build_open_flags() available internally (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for fallocate() (Jeff Moyer) [1784478]
+- [fs] io_uring: fix compat for IORING_REGISTER_FILES_UPDATE (Jeff Moyer) [1784478]
+- [fs] io_uring: only allow submit from owning task (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure workqueue offload grabs ring mutex for poll list (Jeff Moyer) [1784478]
+- [fs] io_uring: clear req->result always before issuing a read/write request (Jeff Moyer) [1784478]
+- [fs] io_uring: be consistent in assigning next work from handler (Jeff Moyer) [1784478]
+- [fs] io-wq: cancel work if we fail getting a mm reference (Jeff Moyer) [1784478]
+- [fs] io_uring: don't setup async context for read/write fixed (Jeff Moyer) [1784478]
+- [fs] io_uring: remove punt of short reads to async context (Jeff Moyer) [1784478]
+- [fs] io-wq: add cond_resched() to worker thread (Jeff Moyer) [1784478]
+- [fs] io-wq: remove unused busy list from io_sqe (Jeff Moyer) [1784478]
+- [fs] io_uring: pass in 'sqe' to the prep handlers (Jeff Moyer) [1784478]
+- [fs] io_uring: standardize the prep methods (Jeff Moyer) [1784478]
+- [fs] io_uring: read 'count' for IORING_OP_TIMEOUT in prep handler (Jeff Moyer) [1784478]
+- [fs] io_uring: move all prep state for IORING_OP_{SEND, RECV}_MGS to prep handler (Jeff Moyer) [1784478]
+- [fs] io_uring: move all prep state for IORING_OP_CONNECT to prep handler (Jeff Moyer) [1784478]
+- [fs] io_uring: add and use struct io_rw for read/writes (Jeff Moyer) [1784478]
+- [fs] io_uring: use u64_to_user_ptr() consistently (Jeff Moyer) [1784478]
+- [fs] io_uring: io_wq_submit_work() should not touch req->rw (Jeff Moyer) [1784478]
+- [fs] io_uring: don't wait when under-submitting (Jeff Moyer) [1784478]
+- [fs] io_uring: warn about unhandled opcode (Jeff Moyer) [1784478]
+- [fs] io_uring: read opcode and user_data from SQE exactly once (Jeff Moyer) [1784478]
+- [fs] io_uring: make IORING_OP_TIMEOUT_REMOVE deferrable (Jeff Moyer) [1784478]
+- [fs] io_uring: make IORING_OP_CANCEL_ASYNC deferrable (Jeff Moyer) [1784478]
+- [fs] io_uring: make IORING_POLL_ADD and IORING_POLL_REMOVE deferrable (Jeff Moyer) [1784478]
+- [fs] io_uring: make HARDLINK imply LINK (Jeff Moyer) [1784478]
+- [fs] io_uring: any deferred command must have stable sqe data (Jeff Moyer) [1784478]
+- [fs] io_uring: remove 'sqe' parameter to the OP helpers that take it (Jeff Moyer) [1784478]
+- [fs] io_uring: fix pre-prepped issue with force_nonblock == true (Jeff Moyer) [1784478]
+- [fs] io-wq: re-add io_wq_current_is_worker() (Jeff Moyer) [1784478]
+- [fs] io_uring: fix sporadic -EFAULT from IORING_OP_RECVMSG (Jeff Moyer) [1784478]
+- [fs] io_uring: fix stale comment and a few typos (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure we return -EINVAL on unknown opcode (Jeff Moyer) [1784478]
+- [fs] io_uring: add sockets to list of files that support non-blocking issue (Jeff Moyer) [1784478]
+- [net] net: make socket read/write_iter() honor IOCB_NOWAIT (Jeff Moyer) [1784478]
+- [fs] io_uring: only hash regular files for async work execution (Jeff Moyer) [1784478]
+- [fs] io_uring: run next sqe inline if possible (Jeff Moyer) [1784478]
+- [fs] io_uring: don't dynamically allocate poll data (Jeff Moyer) [1784478]
+- [fs] io_uring: deferred send/recvmsg should assign iov (Jeff Moyer) [1784478]
+- [fs] io_uring: sqthread should grab ctx->uring_lock for submissions (Jeff Moyer) [1784478]
+- [fs] io-wq: briefly spin for new work after finishing work (Jeff Moyer) [1784478]
+- [fs] io-wq: remove worker->wait waitqueue (Jeff Moyer) [1784478]
+- [fs] io_uring: allow unbreakable links (Jeff Moyer) [1784478]
+- [fs] io_uring: fix a typo in a comment (Jeff Moyer) [1784478]
+- [fs] io_uring: hook all linked requests via link_list (Jeff Moyer) [1784478]
+- [fs] io_uring: fix error handling in io_queue_link_head (Jeff Moyer) [1784478]
+- [fs] io_uring: use hash table for poll command lookups (Jeff Moyer) [1784478]
+- [fs] io-wq: clear node->next on list deletion (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure deferred timeouts copy necessary data (Jeff Moyer) [1784478]
+- [fs] io_uring: allow IO_SQE_* flags on IORING_OP_TIMEOUT (Jeff Moyer) [1784478]
+- [fs] io_uring: handle connect -EINPROGRESS like -EAGAIN (Jeff Moyer) [1784478]
+- [fs] io_uring: remove io_wq_current_is_worker (Jeff Moyer) [1784478]
+- [fs] io_uring: remove parameter ctx of io_submit_state_start (Jeff Moyer) [1784478]
+- [fs] io_uring: mark us with IORING_FEAT_SUBMIT_STABLE (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure async punted connect requests copy data (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure async punted sendmsg/recvmsg requests copy data (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure async punted read/write requests copy iovec (Jeff Moyer) [1784478]
+- [fs] io_uring: add general async offload context (Jeff Moyer) [1784478]
+- [fs] io_uring: transform send/recvmsg() -ERESTARTSYS to -EINTR (Jeff Moyer) [1784478]
+- [fs] io_uring: use current task creds instead of allocating a new one (Jeff Moyer) [1784478]
+- [fs] io_uring: fix missing kmap() declaration on powerpc (Jeff Moyer) [1784478]
+- [fs] io_uring: add mapping support for NOMMU archs (Jeff Moyer) [1784478]
+- [fs] io_uring: make poll->wait dynamically allocated (Jeff Moyer) [1784478]
+- [fs] io-wq: shrink io_wq_work a bit (Jeff Moyer) [1784478]
+- [fs] io-wq: fix handling of NUMA node IDs (Jeff Moyer) [1784478]
+- [fs] io_uring: use kzalloc instead of kcalloc for single-element allocations (Jeff Moyer) [1784478]
+- [fs] io_uring: cleanup io_import_fixed() (Jeff Moyer) [1784478]
+- [fs] io_uring: inline struct sqe_submit (Jeff Moyer) [1784478]
+- [fs] io_uring: store timeout's sqe->off in proper place (Jeff Moyer) [1784478]
+- [net] net: disallow ancillary data for __sys_{send, recv}msg_file() (Jeff Moyer) [1784478]
+- [net] net: separate out the msghdr copy from ___sys_{send, recv}msg() (Jeff Moyer) [1784478]
+- [fs] io_uring: remove superfluous check for sqe->off in io_accept() (Jeff Moyer) [1784478]
+- [fs] io_uring: async workers should inherit the user creds (Jeff Moyer) [1784478]
+- [fs] io-wq: have io_wq_create() take a 'data' argument (Jeff Moyer) [1784478]
+- [fs] io_uring: fix dead-hung for non-iter fixed rw (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for IORING_OP_CONNECT (Jeff Moyer) [1784478]
+- [net] net: add __sys_connect_file() helper (Jeff Moyer) [1784478]
+- [fs] io_uring: only return -EBUSY for submit on non-flushed backlog (Jeff Moyer) [1784478]
+- [fs] io_uring: only !null ptr to io_issue_sqe() (Jeff Moyer) [1784478]
+- [fs] io_uring: simplify io_req_link_next() (Jeff Moyer) [1784478]
+- [fs] io_uring: pass only !null to io_req_find_next() (Jeff Moyer) [1784478]
+- [fs] io_uring: remove io_free_req_find_next() (Jeff Moyer) [1784478]
+- [fs] io_uring: add likely/unlikely in io_get_sqring() (Jeff Moyer) [1784478]
+- [fs] io_uring: rename __io_submit_sqe() (Jeff Moyer) [1784478]
+- [fs] io_uring: improve trace_io_uring_defer() trace point (Jeff Moyer) [1784478]
+- [fs] io_uring: drain next sqe instead of shadowing (Jeff Moyer) [1784478]
+- [fs] io_uring: close lookup gap for dependent next work (Jeff Moyer) [1784478]
+- [fs] io_uring: allow finding next link independent of req reference count (Jeff Moyer) [1784478]
+- [fs] io_uring: io_allocate_scq_urings() should return a sane state (Jeff Moyer) [1784478]
+- [fs] io_uring: Always REQ_F_FREE_SQE for allocated sqe (Jeff Moyer) [1784478]
+- [fs] io_uring: io_fail_links() should only consider first linked timeout (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix leaking linked timeouts (Jeff Moyer) [1784478]
+- [fs] io_uring: remove redundant check (Jeff Moyer) [1784478]
+- [fs] io_uring: break links for failed defer (Jeff Moyer) [1784478]
+- [fs] io-wq: remove extra space characters (Jeff Moyer) [1784478]
+- [fs] io-wq: wait for io_wq_create() to setup necessary workers (Jeff Moyer) [1784478]
+- [fs] io_uring: request cancellations should break links (Jeff Moyer) [1784478]
+- [fs] io_uring: correct poll cancel and linked timeout expiration completion (Jeff Moyer) [1784478]
+- [fs] io_uring: remove dead REQ_F_SEQ_PREV flag (Jeff Moyer) [1784478]
+- [fs] io_uring: fix sequencing issues with linked timeouts (Jeff Moyer) [1784478]
+- [fs] io_uring: make req->timeout be dynamically allocated (Jeff Moyer) [1784478]
+- [fs] io_uring: make io_double_put_req() use normal completion path (Jeff Moyer) [1784478]
+- [fs] io_uring: cleanup return values from the queueing functions (Jeff Moyer) [1784478]
+- [fs] io_uring: io_async_cancel() should pass in 'nxt' request pointer (Jeff Moyer) [1784478]
+- [fs] io_uring: make POLL_ADD/POLL_REMOVE scale better (Jeff Moyer) [1784478]
+- [fs] io-wq: remove now redundant struct io_wq_nulls_list (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix getting file for non-fd opcodes (Jeff Moyer) [1784478]
+- [fs] io_uring: introduce req_need_defer() (Jeff Moyer) [1784478]
+- [fs] io_uring: clean up io_uring_cancel_files() (Jeff Moyer) [1784478]
+- [fs] io-wq: ensure free/busy list browsing see all items (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure registered buffer import returns the IO length (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix getting file for timeout (Jeff Moyer) [1784478]
+- [fs] io-wq: ensure we have a stable view of ->cur_work for cancellations (Jeff Moyer) [1784478]
+- [fs] io_wq: add get/put_work handlers to io_wq_create() (Jeff Moyer) [1784478]
+- [fs] io_uring: check for validity of ->rings in teardown (Jeff Moyer) [1784478]
+- [fs] io_uring: fix potential deadlock in io_poll_wake() (Jeff Moyer) [1784478]
+- [fs] io_uring: use correct "is IO worker" helper (Jeff Moyer) [1784478]
+- [fs] io_uring: make timeout sequence == 0 mean no sequence (Jeff Moyer) [1784478]
+- [fs] io_uring: fix -ENOENT issue with linked timer with short timeout (Jeff Moyer) [1784478]
+- [fs] io_uring: don't do flush cancel under inflight_lock (Jeff Moyer) [1784478]
+- [fs] io_uring: flag SQPOLL busy condition to userspace (Jeff Moyer) [1784478]
+- [fs] io_uring: make ASYNC_CANCEL work with poll and timeout (Jeff Moyer) [1784478]
+- [fs] io_uring: provide fallback request for OOM situations (Jeff Moyer) [1784478]
+- [fs] io_uring: convert accept4() -ERESTARTSYS into -EINTR (Jeff Moyer) [1784478]
+- [fs] io_uring: fix error clear of ->file_table in io_sqe_files_register() (Jeff Moyer) [1784478]
+- [fs] io_uring: separate the io_free_req and io_free_req_find_next interface (Jeff Moyer) [1784478]
+- [fs] io_uring: keep io_put_req only responsible for release and put req (Jeff Moyer) [1784478]
+- [fs] io_uring: remove passed in 'ctx' function parameter ctx if possible (Jeff Moyer) [1784478]
+- [fs] io_uring: reduce/pack size of io_ring_ctx (Jeff Moyer) [1784478]
+- [fs] io_uring: properly mark async work as bounded vs unbounded (Jeff Moyer) [1784478]
+- [fs] io-wq: add support for bounded vs unbunded work (Jeff Moyer) [1784478]
+- [fs] io-wq: io_wqe_run_queue() doesn't need to use list_empty_careful() (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for backlogged CQ ring (Jeff Moyer) [1784478]
+- [fs] io_uring: pass in io_kiocb to fill/add CQ handlers (Jeff Moyer) [1784478]
+- [fs] io_uring: make io_cqring_events() take 'ctx' as argument (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for linked SQE timeouts (Jeff Moyer) [1784478]
+- [fs] io_uring: abstract out io_async_cancel_one() helper (Jeff Moyer) [1784478]
+- [fs] io_uring: use inlined struct sqe_submit (Jeff Moyer) [1784478]
+- [fs] io_uring: Use submit info inlined into req (Jeff Moyer) [1784478]
+- [fs] io_uring: allocate io_kiocb upfront (Jeff Moyer) [1784478]
+- [fs] io_uring: io_queue_link*() right after submit (Jeff Moyer) [1784478]
+- [fs] io_uring: Merge io_submit_sqes and io_ring_submit (Jeff Moyer) [1784478]
+- [fs] io_uring: kill dead REQ_F_LINK_DONE flag (Jeff Moyer) [1784478]
+- [fs] io_uring: fixup a few spots where link failure isn't flagged (Jeff Moyer) [1784478]
+- [fs] io_uring: enable optimized link handling for IORING_OP_POLL_ADD (Jeff Moyer) [1784478]
+- [fs] io-wq: use proper nesting IRQ disabling spinlocks for cancel (Jeff Moyer) [1784478]
+- [fs] io_uring: add completion trace event (Jeff Moyer) [1784478]
+- [fs] io-wq: use kfree_rcu() to simplify the code (Jeff Moyer) [1784478]
+- [fs] io_uring: set -EINTR directly when a signal wakes up in io_cqring_wait (Jeff Moyer) [1784478]
+- [fs] io_uring: support for generic async request cancel (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure we clear io_kiocb->result before each issue (Jeff Moyer) [1784478]
+- [fs] io_uring: io_wq_create() returns an error pointer, not NULL (Jeff Moyer) [1784478]
+- [fs] io_uring: fix race with canceling timeouts (Jeff Moyer) [1784478]
+- [fs] io_uring: support for larger fixed file sets (Jeff Moyer) [1784478]
+- [fs] io_uring: protect fixed file indexing with array_index_nospec() (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for IORING_OP_ACCEPT (Jeff Moyer) [1784478]
+- [net] net: add __sys_accept4_file() helper (Jeff Moyer) [1784478]
+- [fs] io_uring: io_uring: add support for async work inheriting files (Jeff Moyer) [1784478]
+- [fs] io_uring: replace workqueue usage with io-wq (Jeff Moyer) [1784478]
+- [fs] io-wq: small threadpool implementation for io_uring (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix mm_fault with READ/WRITE_FIXED (Jeff Moyer) [1784478]
+- [fs] io_uring: remove index from sqe_submit (Jeff Moyer) [1784478]
+- [fs] io_uring: add set of tracing events (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for canceling timeout requests (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for absolute timeouts (Jeff Moyer) [1784478]
+- [fs] io_uring: replace s->needs_lock with s->in_async (Jeff Moyer) [1784478]
+- [fs] io_uring: allow application controlled CQ ring size (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for IORING_REGISTER_FILES_UPDATE (Jeff Moyer) [1784478]
+- [fs] io_uring: allow sparse fixed file sets (Jeff Moyer) [1784478]
+- [fs] io_uring: run dependent links inline if possible (Jeff Moyer) [1784478]
+- [fs] io_uring: don't touch ctx in setup after ring fd install (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix leaked shadow_req (Jeff Moyer) [1784478]
+- [fs] io_uring: fix bad inflight accounting for SETUP_IOPOLL|SETUP_SQTHREAD (Jeff Moyer) [1784478]
+- [fs] io_uring: used cached copies of sq->dropped and cq->overflow (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix race for sqes with userspace (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix broken links with offloading (Jeff Moyer) [1784478]
+- [fs] io_uring: Fix corrupted user_data (Jeff Moyer) [1784478]
+- [fs] io_uring: correct timeout req sequence when inserting a new entry (Jeff Moyer) [1784478]
+- [fs] io_uring : correct timeout req sequence when waiting timeout (Jeff Moyer) [1784478]
+- [fs] io_uring: revert "io_uring: optimize submit_and_wait API" (Jeff Moyer) [1784478]
+- [fs] io_uring: fix logic error in io_timeout (Jeff Moyer) [1784478]
+- [fs] io_uring: fix up O_NONBLOCK handling for sockets (Jeff Moyer) [1784478]
+- [fs] io_uring: consider the overflow of sequence for timeout req (Jeff Moyer) [1784478]
+- [fs] io_uring: fix sequence logic for timeout requests (Jeff Moyer) [1784478]
+- [fs] io_uring: only flush workqueues on fileset removal (Jeff Moyer) [1784478]
+- [fs] io_uring: remove wait loop spurious wakeups (Jeff Moyer) [1784478]
+- [fs] io_uring: fix reversed nonblock flag for link submission (Jeff Moyer) [1784478]
+- [fs] io_uring: use __kernel_timespec in timeout ABI (Jeff Moyer) [1784478]
+- [fs] io_uring: make CQ ring wakeups be more efficient (Jeff Moyer) [1784478]
+- [fs] io_uring: compare cached_cq_tail with cq.head in_io_uring_poll (Jeff Moyer) [1784478]
+- [fs] io_uring: correctly handle non ->{read, write}_iter() file_operations (Jeff Moyer) [1784478]
+- [fs] io_uring: IORING_OP_TIMEOUT support (Jeff Moyer) [1784478]
+- [fs] io_uring: use cond_resched() in sqthread (Jeff Moyer) [1784478]
+- [fs] io_uring: fix potential crash issue due to io_get_req failure (Jeff Moyer) [1784478]
+- [fs] io_uring: ensure poll commands clear ->sqe (Jeff Moyer) [1784478]
+- [fs] io_uring: fix use-after-free of shadow_req (Jeff Moyer) [1784478]
+- [fs] io_uring: use kmemdup instead of kmalloc and memcpy (Jeff Moyer) [1784478]
+- [fs] io_uring: increase IORING_MAX_ENTRIES to 32K (Jeff Moyer) [1784478]
+- [fs] io_uring: make sqpoll wakeup possible with getevents (Jeff Moyer) [1784478]
+- [fs] io_uring: extend async work merging (Jeff Moyer) [1784478]
+- [fs] io_uring: limit parallelism of buffered writes (Jeff Moyer) [1784478]
+- [fs] io_uring: add io_queue_async_work() helper (Jeff Moyer) [1784478]
+- [fs] io_uring: optimize submit_and_wait API (Jeff Moyer) [1784478]
+- [fs] io_uring: add support for link with drain (Jeff Moyer) [1784478]
+- [fs] io_uring: fix wrong sequence setting logic (Jeff Moyer) [1784478]
+- [fs] io_uring: expose single mmap capability (Jeff Moyer) [1784478]
+- [fs] io_uring: allocate the two rings together (Jeff Moyer) [1784478]
+- [lib] percpu_ref: release percpu memory early without PERCPU_REF_ALLOW_REINIT (Jeff Moyer) [1784478]
+- [fs] io_uring: initialize percpu refcounters using PERCU_REF_ALLOW_REINIT (Jeff Moyer) [1784478]
+- [include] percpu_ref: introduce PERCPU_REF_ALLOW_REINIT flag (Jeff Moyer) [1784478]
+- [fs] binder: fix use-after-free due to ksys_close() during fdget() (Jeff Moyer) [1784478]
+- [init] RHEL-only: Enable io_uring for x86 builds (Jeff Moyer) [1784478]
+- [arm64] compat: ARM64: always include asm-generic/compat.h (Jeff Moyer) [1784478]
+- [include] asm-generic: Move common compat types to asm-generic/compat.h (Jeff Moyer) [1784478]
+
+* Sat Jun 20 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-217.el8]
+- [fs] coredump: fix crash when umh is disabled (Yauheni Kaliuta) [1845114]
+- [kernel] umh: fix memory leak on execve failure (Yauheni Kaliuta) [1845114]
+- [net] bpf: Replace zero-length array with flexible-array member (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix returned error sign when link doesn't support updates (Yauheni Kaliuta) [1845114]
+- [net] bpf: sockmap: Don't attach programs to UDP sockets (Yauheni Kaliuta) [1845114]
+- [net] bpf: cgroup: Allow multi-attach program to replace itself (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: use struct timespec instead of __kernel_timespec (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Fix bpf_link leak in ns_current_pid_tgid selftest (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Fix test_align verifier log patterns (Yauheni Kaliuta) [1845114]
+- [net] bpf, cgroup: Return ENOLINK for auto-detached links on update (Yauheni Kaliuta) [1845114]
+- [net] bpf: Refactor bpf_link update handling (Yauheni Kaliuta) [1845114]
+- [tools] bpf, selftests: Add a verifier test for assigning 32bit reg states to 64bit ones (Yauheni Kaliuta) [1845114]
+- [tools] bpf, selftests: Verifier bounds tests need to be updated (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix a verifier issue when assigning 32bit reg states to 64bit ones (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix use-after-free in fmod_ret check (Yauheni Kaliuta) [1845114]
+- [net] flow_dissector: Drop BPF flow dissector prog ref on netns cleanup (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Prevent mmap()'ing read-only maps as writable (Yauheni Kaliuta) [1845114]
+- [net] bpf: Enforce returning 0 for fentry/fexit progs (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Fix register naming in PT_REGS s390 macros (Yauheni Kaliuta) [1845114]
+- [samples] samples: bpf: Fix build error (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix error return code in map_lookup_and_delete_elem() (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix sk_psock refcnt leak when receiving message (Yauheni Kaliuta) [1845114]
+- [tools] tools/runqslower: Ensure own vmlinux.h is picked up first (Yauheni Kaliuta) [1845114]
+- [net] bpf: Make bpf_link_fops static (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Respect the -d option in struct_ops cmd (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix leak in LINK_UPDATE and enforce empty old_prog_fd (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Fix reStructuredText markup (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Only check mode flags in get_xdp_id (Yauheni Kaliuta) [1845114]
+- [tools] bpf, selftests: Add test for BPF_STX BPF_B storing R10 (Yauheni Kaliuta) [1845114]
+- [x86] bpf, x86: Fix encoding for lower 8-bit registers in BPF_STX BPF_B (Yauheni Kaliuta) [1845114]
+- [net] bpf: Forbid XADD on spilled pointers for unprivileged users (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Always specify expected_attach_type on program load if supported (Yauheni Kaliuta) [1845114]
+- [net] bpf: remove unneeded conversion to bool in __mark_reg_unknown (Yauheni Kaliuta) [1845114]
+- [tools] tools, bpftool: Fix struct_ops command invalid pointer free (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix use of sk->sk_reuseport from sk_assign (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Add test for bpf_get_link_xdp_id (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Fix bpf_get_link_xdp_id flags handling (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix a typo "inacitve" -> "inactive" (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Initialize *nl_pid so gcc 10 is happy (Yauheni Kaliuta) [1845114]
+- [tools] bpf, lsm: Fix the file_mprotect LSM test (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Fix spelling mistake "arithmatic" -> "arithmetic" in test_verifier (Yauheni Kaliuta) [1845114]
+- [lib] kbuild, btf: Fix dependencies for DEBUG_INFO_BTF (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Test FD-based cgroup attachment (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Add support for bpf_link-based cgroup attachment (Yauheni Kaliuta) [1845114]
+- [net] bpf: Implement bpf_prog replacement for an active bpf_cgroup_link (Yauheni Kaliuta) [1845114]
+- [net] bpf: Implement bpf_link-based cgroup BPF program attachment (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Test_verifier, add alu32 bounds tracking tests (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Test_verifier, #65 error message updates for trunc of boundary-cross (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Test_verifier, bpf_get_stack return value add <0 (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Test_progs, add test to catch retval refine error handling (Yauheni Kaliuta) [1845114]
+- [net] bpf: Verifier, refine 32bit bound in do_refine_retval_range (Yauheni Kaliuta) [1845114]
+- [include] bpf: Verifier, do explicit ALU32 bounds tracking (Yauheni Kaliuta) [1845114]
+- [net] bpf: Verifier, do_refine_retval_range may clamp umin to 0 incorrectly (Yauheni Kaliuta) [1845114]
+- [init] bpf, lsm: Make BPF_LSM depend on BPF_EVENTS (Yauheni Kaliuta) [1845114]
+- [tools] selftests: bpf: Extend sk_assign tests for UDP (Yauheni Kaliuta) [1845114]
+- [tools] selftests: bpf: Add test for sk_assign (Yauheni Kaliuta) [1845114]
+- [net] bpf: Don't refcount LISTEN sockets in sk_assign() (Yauheni Kaliuta) [1845114]
+- [net] net: Track socket refcounts in skb_steal_sock() (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add socket assign support (Yauheni Kaliuta) [1845114]
+- [net] bpf: btf: Fix arg verification in btf_ctx_access() (Yauheni Kaliuta) [1845114]
+- [net] bpf: Simplify reg_set_min_max_inv handling (Yauheni Kaliuta) [1845114]
+- [documentation] bpf: lsm: Add Documentation (Yauheni Kaliuta) [1845114]
+- [tools] bpf: lsm: Add selftests for BPF_PROG_TYPE_LSM (Yauheni Kaliuta) [1845114]
+- [tools] tools/libbpf: Add support for BPF_PROG_TYPE_LSM (Yauheni Kaliuta) [1845114]
+- [net] bpf: lsm: Implement attach, detach and execution (Yauheni Kaliuta) [1845114]
+- [net] bpf: lsm: Provide attachment points for BPF LSM programs (Yauheni Kaliuta) [1845114]
+- [net] bpf: Introduce BPF_PROG_TYPE_LSM (Yauheni Kaliuta) [1845114]
+- [tools] selftests: Add test for overriding global data value before load (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Add setter for initial value for internal maps (Yauheni Kaliuta) [1845114]
+- [net] bpf, net: Fix build issue when net ns not configured (Yauheni Kaliuta) [1845114]
+- [net] bpf: Fix build warning regarding missing prototypes (Yauheni Kaliuta) [1845114]
+- [tools] libbpf, xsk: Init all ring members in xsk_umem__create and xsk_socket__create (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Add selftest cases for ctx_or_null argument type (Yauheni Kaliuta) [1845114]
+- [net] bpf: Enable retrival of pid/tgid/comm from bpf cgroup hooks (Yauheni Kaliuta) [1845114]
+- [net] bpf: Enable bpf cgroup hooks to retrieve cgroup v2 and ancestor id (Yauheni Kaliuta) [1845114]
+- [net] bpf: Allow to retrieve cgroup v1 classid from v2 hooks (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add netns cookie and enable it for bpf cgroup hooks (Yauheni Kaliuta) [1845114]
+- [net] bpf: Enable perf event rb output for bpf cgroup progs (Yauheni Kaliuta) [1845114]
+- [net] bpf: Enable retrieval of socket cookie for bind/post-bind hook (Yauheni Kaliuta) [1845114]
+- [net] bpf: Remove unused vairable 'bpf_xdp_link_lops' (Yauheni Kaliuta) [1845114]
+- [net] bpf: Factor out attach_type to prog_type mapping for attach/detach (Yauheni Kaliuta) [1845114]
+- [net] bpf: Factor out cgroup storages operations (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Test_verifier, #70 error message updates for 32-bit right shift (Yauheni Kaliuta) [1845114]
+- [net] bpf: Verifer, adjust_scalar_min_max_vals to always call update_reg_bounds() (Yauheni Kaliuta) [1845114]
+- [net] bpf: Verifer, refactor adjust_scalar_min_max_vals (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Don't allocate 16M for log buffer by default (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Remove unused parameter `def` to get_map_field_int (Yauheni Kaliuta) [1845114]
+- [documentation] bpf: Document bpf_inspect drgn tool (Yauheni Kaliuta) [1845114]
+- [samples] samples, bpf: Refactor perf_event user program with libbpf bpf_link (Yauheni Kaliuta) [1845114]
+- [samples] samples, bpf: Move read_trace_pipe to trace_helpers (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Add tests for bpf_sk_storage to bpf_tcp_ca (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add bpf_sk_storage support to bpf_tcp_ca (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Fix mix of tabs and spaces (Yauheni Kaliuta) [1845114]
+- [net] bpf, tcp: Make tcp_bpf_recvmsg static (Yauheni Kaliuta) [1845114]
+- [net] bpf, tcp: Fix unused function warnings (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Add struct_ops support (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Translate prog_id to its bpf prog_name (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Print as a string for char array (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Print the enum's name instead of value (Yauheni Kaliuta) [1845114]
+- [tools] bpf, libbpf: Fix ___bpf_kretprobe_args1(x) macro definition (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Reset process and thread affinity after each test/sub-test (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Fix test_progs's parsing of test numbers (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Fix race in tcp_rtt test (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Fix nanosleep for real this time (Yauheni Kaliuta) [1845114]
+- [tools] selftest/bpf: Fix compilation warning in sockmap_parse_prog.c (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Add vmlinux.h selftest exercising tracing of syscalls (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Provide CO-RE variants of PT_REGS macros (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Ignore incompatible types with matching name during CO-RE relocation (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Ensure consistent test failure output (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Fix spurious failures in accept due to EAGAIN (Yauheni Kaliuta) [1845114]
+- [tools] tools/bpf: Move linux/types.h for selftests and bpftool (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add missing annotations for __bpf_prog_enter() and __bpf_prog_exit() (Yauheni Kaliuta) [1845114]
+- [scripts] bpf_helpers_doc.py: Fix warning when compiling bpftool (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Fix usleep() implementation (Yauheni Kaliuta) [1845114]
+- [net] bpf: Remove bpf_image tree (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add dispatchers to kallsyms (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add trampolines to kallsyms (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add bpf_ksym_add/del functions (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add prog flag to struct bpf_ksym object (Yauheni Kaliuta) [1845114]
+- [net] bpf: Abstract away entire bpf_link clean up procedure (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add bpf_ksym_find function (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Make tcp_rtt test more robust to failures (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: test_progs: Don't leak server_fd in tcp_rtt (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: test_progs: fix client/server race in tcp_rtt (Yauheni Kaliuta) [1845114]
+- [net] bpf: Move ksym_tnode to bpf_ksym (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Guarantee that useep() calls nanosleep() syscall (Yauheni Kaliuta) [1845114]
+- [net] bpf: Move lnode list node to struct bpf_ksym (Yauheni Kaliuta) [1845114]
+- [tools] tools: bpftool: Restore message on failure to guess program type (Yauheni Kaliuta) [1845114]
+- [include] bpf: Add name to struct bpf_ksym (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add struct bpf_ksym (Yauheni Kaliuta) [1845114]
+- [include] bpf: Add bpf_trampoline_ name prefix for DECLARE_BPF_DISPATCHER (Yauheni Kaliuta) [1845114]
+- [mm] x86/mm: Rename is_kernel_text to __is_kernel_text (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Add bpf_xdp_output() helper (Yauheni Kaliuta) [1845114]
+- [tools] tools/testing/selftests/bpf: Add self-tests for new helper bpf_get_ns_current_pid_tgid (Yauheni Kaliuta) [1845114]
+- [net] bpf: Added new helper bpf_get_ns_current_pid_tgid (Yauheni Kaliuta) [1845114]
+- [fs] fs/nsfs.c: Added ns_match (Yauheni Kaliuta) [1845114]
+- [tools] tools: bpftool: Fix minor bash completion mistakes (Yauheni Kaliuta) [1845114]
+- [tools] tools: bpftool: Allow all prog/map handles for pinning objects (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Split BTF presence checks into libbpf- and kernel-specific parts (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Add _bpftool and profiler.skel.h to .gitignore (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Skeleton should depend on libbpf (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Only build bpftool-prog-profile if supported by clang (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Use linux/types.h from source tree for profiler build (Yauheni Kaliuta) [1845114]
+- [tools] tools/runqslower: Add BPF_F_CURRENT_CPU for running selftest on older kernels (Yauheni Kaliuta) [1845114]
+- [x86] bpf: Fix trampoline generation for fmod_ret programs (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add bpf_link_new_file that doesn't install FD (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Bash completion for "bpftool prog profile" (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Documentation for bpftool prog profile (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Introduce "prog profile" command (Yauheni Kaliuta) [1845114]
+- [tools] selftests: bpf: Enable UDP sockmap reuseport tests (Yauheni Kaliuta) [1845114]
+- [tools] selftests: bpf: Add tests for UDP sockets in sockmap (Yauheni Kaliuta) [1845114]
+- [tools] selftests: bpf: Don't listen() on UDP sockets (Yauheni Kaliuta) [1845114]
+- [net] bpf: sockmap: Add UDP support (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add sockmap hooks for UDP sockets (Yauheni Kaliuta) [1845114]
+- [net] bpf: sockmap: Simplify sock_map_init_proto (Yauheni Kaliuta) [1845114]
+- [net] bpf: sockmap: Move generic sockmap hooks from BPF TCP (Yauheni Kaliuta) [1845114]
+- [net] bpf: tcp: Guard declarations with CONFIG_NET_SOCK_MSG (Yauheni Kaliuta) [1845114]
+- [net] bpf: tcp: Move assertions into tcp_bpf_get_proto (Yauheni Kaliuta) [1845114]
+- [net] skmsg: Update saved hooks only once (Yauheni Kaliuta) [1845114]
+- [net] bpf: sockmap: Only check ULP for TCP sockets (Yauheni Kaliuta) [1845114]
+- [kernel] bpf: Fix bpf_prog_test_run_tracing for !CONFIG_NET (Yauheni Kaliuta) [1845114]
+- [net] bpf: Remove unnecessary CAP_MAC_ADMIN check (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Add selftests for BPF_MODIFY_RETURN (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Add test ops for BPF_PROG_TYPE_TRACING (Yauheni Kaliuta) [1845114]
+- [tools] tools/libbpf: Add support for BPF_MODIFY_RETURN (Yauheni Kaliuta) [1845114]
+- [net] bpf: Attachment verification for BPF_MODIFY_RETURN (Yauheni Kaliuta) [1845114]
+- [net] bpf: Introduce BPF_MODIFY_RETURN (Yauheni Kaliuta) [1845114]
+- [x86] bpf: JIT helpers for fmod_ret progs (Yauheni Kaliuta) [1845114]
+- [net] bpf: Refactor trampoline update code (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Support out-of-tree vmlinux builds for VMLINUX_BTF (Yauheni Kaliuta) [1845114]
+- [tools] tools/runqslower: Drop copy/pasted BPF_F_CURRENT_CPU definiton (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Assume unsigned values for BTF_KIND_ENUM (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Switch BPF UAPI #define constants used from BPF program side to enums (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Test new __sk_buff field gso_size (Yauheni Kaliuta) [1845114]
+- [tools] bpf: Sync uapi bpf.h to tools/ (Yauheni Kaliuta) [1845114]
+- [net] bpf: Add gso_size to __sk_buff (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Add link pinning selftests (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Add bpf_link pinning/unpinning (Yauheni Kaliuta) [1845114]
+- [net] bpf: Introduce pinnable bpf_link abstraction (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Merge selftests' bpf_trace_helpers.h into libbpf's bpf_tracing.h (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Fix use of PT_REGS_PARM macros with vmlinux.h (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Add header guards to generated vmlinux.h (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Add test for "bpftool feature" command (Yauheni Kaliuta) [1845114]
+- [tools] selftests/tpm2: Add log and *.pyc to .gitignore (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Update bash completion for "bpftool feature" command (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Update documentation of "bpftool feature" command (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Make probes which emit dmesg warnings optional (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Move out sections to separate functions (Yauheni Kaliuta) [1845114]
+- [tools] bpftool: Support struct_ops, tracing, ext prog types (Yauheni Kaliuta) [1845114]
+- [scripts] scripts/bpf: Switch to more portable python3 shebang (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Print backtrace on SIGSEGV in test_progs (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Run reuseport tests only with supported socket types (Yauheni Kaliuta) [1845114]
+- [net] bpf/stackmap: Dont trylock mmap_sem with PREEMPT_RT and interrupts disabled (Yauheni Kaliuta) [1845114]
+- [net] bpf, lpm: Make locking RT friendly (Yauheni Kaliuta) [1845114]
+- [net] bpf: Prepare hashtab locking for PREEMPT_RT (Yauheni Kaliuta) [1845114]
+- [net] bpf: Factor out hashtab bucket lock operations (Yauheni Kaliuta) [1845114]
+- [net] bpf: Replace open coded recursion prevention in sys_bpf() (Yauheni Kaliuta) [1845114]
+- [net] bpf: Use recursion prevention helpers in hashtab code (Yauheni Kaliuta) [1845114]
+- [include] bpf: Provide recursion prevention helpers (Yauheni Kaliuta) [1845114]
+- [include] bpf: Use migrate_disable/enable in array macros and cgroup/lirc code (Yauheni Kaliuta) [1845114]
+- [net] bpf: Use migrate_disable/enabe() in trampoline code (Yauheni Kaliuta) [1845114]
+- [lib] bpf/tests: Use migrate disable instead of preempt disable (Yauheni Kaliuta) [1845114]
+- [net] bpf: Use bpf_prog_run_pin_on_cpu() at simple call sites (Yauheni Kaliuta) [1845114]
+- [include] bpf: Replace cant_sleep() with cant_migrate() (Yauheni Kaliuta) [1845114]
+- [include] bpf: Provide bpf_prog_run_pin_on_cpu() helper (Yauheni Kaliuta) [1845114]
+- [include] sched/rt: Provide migrate_disable/enable() inlines (Yauheni Kaliuta) [1845114]
+- [include] sched: Provide cant_migrate() (Yauheni Kaliuta) [1845114]
+- [net] bpf: Dont iterate over possible CPUs with interrupts disabled (Yauheni Kaliuta) [1845114]
+- [net] bpf: Remove recursion prevention from rcu free callback (Yauheni Kaliuta) [1845114]
+- [kernel] perf/bpf: Remove preempt disable around BPF invocation (Yauheni Kaliuta) [1845114]
+- [kernel] bpf/trace: Remove redundant preempt_disable from trace_call_bpf() (Yauheni Kaliuta) [1845114]
+- [kernel] bpf: disable preemption for bpf progs attached to uprobe (Yauheni Kaliuta) [1845114]
+- [kernel] bpf/trace: Remove EXPORT from trace_call_bpf() (Yauheni Kaliuta) [1845114]
+- [kernel] bpf/tracing: Remove redundant preempt_disable() in __bpf_trace_run() (Yauheni Kaliuta) [1845114]
+- [net] bpf: Update locking comment in hashtab code (Yauheni Kaliuta) [1845114]
+- [net] bpf: Enforce preallocation for instrumentation programs on RT (Yauheni Kaliuta) [1845114]
+- [net] bpf: Tighten the requirements for preallocated hash maps (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Tests for sockmap/sockhash holding listening sockets (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Extend SK_REUSEPORT tests to cover SOCKMAP/SOCKHASH (Yauheni Kaliuta) [1845114]
+- [documentation] docs/bpf: Update bpf development Q/A file (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Update xdp_bpf2bpf test to use new set_attach_target API (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Add support for dynamic program attach target (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Bump libpf current version to v0.0.8 (Yauheni Kaliuta) [1845114]
+- [tools] libbpf: Relax check whether BTF is mandatory (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Change llvm flag -mcpu=probe to -mcpu=v3 (Yauheni Kaliuta) [1845114]
+- [tools] selftests/bpf: Add bpf_read_branch_records() selftest (Yauheni Kaliuta) [1845114]
+- [kernel] bpf: Add bpf_read_branch_records() helper (Yauheni Kaliuta) [1845114]
+- [kernel] bpf: Allow bpf_perf_event_read_value in all BPF programs (Yauheni Kaliuta) [1845114]
+- [dma] dma-direct: improve DMA mask overflow reporting (Don Dutile) [1816437]
+- [dma] dma-direct: improve swiotlb error reporting (Don Dutile) [1816437]
+- [dma] dma-direct: relax addressability checks in dma_direct_supported (Don Dutile) [1816437]
+- [dma] dma-contiguous: CMA: give precedence to cmdline (Don Dutile) [1816437]
+- [misc] lib/genalloc.c: rename addr_in_gen_pool to gen_pool_has_addr (Don Dutile) [1816437]
+- [lib] lib/genalloc.c: export symbol addr_in_gen_pool (Don Dutile) [1816437]
+- [acpi] dma-mapping: treat dev->bus_dma_mask as a DMA limit (Don Dutile) [1816437]
+- [powerpc] dma-direct: unify the dma_capable definitions (Don Dutile) [1816437]
+- [of] of/device: Really only set bus DMA mask when appropriate (Don Dutile) [1816437]
+- [dma] dma-direct: exclude dma_direct_map_resource from the min_low_pfn check (Don Dutile) [1816437]
+- [dma] dma-debug: clean up put_hash_bucket() (Don Dutile) [1816437]
+- [iommu] dma-mapping: drop the dev argument to arch_sync_dma_for_* (Don Dutile) [1816437]
+- [xen] swiotlb-xen: simplify cache maintainance (Don Dutile) [1816437]
+- [xen] swiotlb-xen: simplify the DMA sync method implementations (Don Dutile) [1816437]
+- [dma] dma-debug: increase HASH_SIZE (Don Dutile) [1816437]
+- [dma] dma-debug: reorder struct dma_debug_entry fields (Don Dutile) [1816437]
+- [dma] dma-mapping: merge the generic remapping helpers into dma-direct (Don Dutile) [1816437]
+- [dma] dma-direct: provide mmap and get_sgtable method overrides (Don Dutile) [1816437]
+- [dma] dma-direct: remove the dma_handle argument to __dma_direct_alloc_pages (Don Dutile) [1816437]
+- [dma] dma-direct: remove __dma_direct_free_pages (Don Dutile) [1816437]
+- [mm] dma/direct: turn ARCH_ZONE_DMA_BITS into a variable (Don Dutile) [1816437]
+- [dma] dma-direct: check for overflows on 32 bit DMA addresses (Don Dutile) [1816437]
+- [s390] s390/dma: provide proper ARCH_ZONE_DMA_BITS value (Don Dutile) [1816437]
+- [mm] powerpc: fix off by one in max_zone_pfn initialization for ZONE_DMA (Don Dutile) [1816437]
+- [powerpc] powerpc: enable a 30-bit ZONE_DMA for 32-bit pmac (Don Dutile) [1816437]
+- [mm] arm64: rename variables used to calculate ZONE_DMA32's size (Don Dutile) [1816437]
+- [mm] arm64: mm: use arm64_dma_phys_limit instead of calling max_zone_dma_phys() (Don Dutile) [1816437]
+- [mm] arm64: mm: make CONFIG_ZONE_DMA32 configurable (Don Dutile) [1816437]
+- [dma] kernel: dma-contiguous: mark CMA parameters __initdata/__initconst (Don Dutile) [1816437]
+- [dma] dma-debug: add a schedule point in debug_dma_dump_mappings() (Don Dutile) [1816437]
+- [dma] dma-debug: Use pr_warn instead of pr_warning (Don Dutile) [1816437]
+- [dma] dma-mapping: fix false positivse warnings in dma_common_free_remap() (Don Dutile) [1816437]
+- [xen] swiotlb-xen: ensure we have a single callsite for xen_dma_map_page (Don Dutile) [1816437]
+- [iommu] dma-mapping: introduce a dma_common_find_pages helper (Don Dutile) [1816437]
+- [iommu] dma-mapping: always use VM_DMA_COHERENT for generic DMA remap (Don Dutile) [1816437]
+- [mm] vmalloc: lift the arm flag for coherent mappings to common code (Don Dutile) [1816437]
+- [mm] dma-mapping: provide a better default ->get_required_mask (Don Dutile) [1816437]
+- [dma] dma-mapping: remove the dma_declare_coherent_memory export (Don Dutile) [1816437]
+- [dma] dma-mapping: remove the dma_mmap_from_dev_coherent export (Don Dutile) [1816437]
+- [dma] dma-mapping: remove CONFIG_ARCH_NO_COHERENT_DMA_MMAP (Don Dutile) [1816437]
+- [dma] dma-mapping: add a dma_can_mmap helper (Don Dutile) [1816437]
+- [powerpc] dma-mapping: explicitly wire up ->mmap and ->get_sgtable (Don Dutile) [1816437]
+- [mm] dma-mapping: move the dma_get_sgtable API comments from arm to common code (Don Dutile) [1816437]
+- [dma] dma-mapping: introduce dma_get_merge_boundary() (Don Dutile) [1816437]
+- [mm] dma-mapping: make dma_atomic_pool_init self-contained (Don Dutile) [1816437]
+- [arm64] dma-mapping: remove arch_dma_mmap_pgprot (Don Dutile) [1816437]
+- [scsi] scsi: ibmvscsi: Don't send host info in adapter info MAD after LPM (Steve Best) [1847078]
+- [fs] NFS: Fix inode fileid checks in attribute revalidation code (Benjamin Coddington) [1846295]
+- [fs] NFS: remove set but not used variable 'mapping' (Benjamin Coddington) [1846295]
+- [fs] NFSv2: Fix write regression (Benjamin Coddington) [1846295]
+- [fs] NFSv2: Fix eof handling (Benjamin Coddington) [1846295]
+- [fs] NFS: Fix writepage(s) error handling to not report errors twice (Benjamin Coddington) [1846295]
+- [fs] NFS: Fix spurious EIO read errors (Benjamin Coddington) [1846295]
+- [fs] pNFS/flexfiles: Don't time out requests on hard mounts (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Handle EADDRINUSE and ENOBUFS correctly (Benjamin Coddington) [1846295]
+- [fs] pNFS/flexfiles: Turn off soft RPC calls (Benjamin Coddington) [1846295]
+- [fs] NFS: On fatal writeback errors, we need to call nfs_inode_remove_request() (Benjamin Coddington) [1846295]
+- [fs] NFS: Fix initialisation of I/O result struct in nfs_pgio_rpcsetup (Benjamin Coddington) [1846295]
+- [fs] NFSv4: Fix return value in nfs_finish_open() (Benjamin Coddington) [1846295]
+- [fs] NFSv4: Fix return values for nfs4_file_open() (Benjamin Coddington) [1846295]
+- [fs] NFS: Don't refresh attributes with mounted-on-file information (Benjamin Coddington) [1846295]
+- [fs] NFSv4: Ensure state recovery handles ETIMEDOUT correctly (Benjamin Coddington) [1846295]
+- [fs] NFSv4: Report the error from nfs4_select_rw_stateid() (Benjamin Coddington) [1846295]
+- [fs] NFSv4: Print an error in the syslog when state is marked as irrecoverable (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Optimise transport balancing code (Benjamin Coddington) [1846295]
+- [fs] NFSv4: Don't use the zero stateid with layoutget (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Fix up backchannel slot table accounting (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Skip zero-refcount transports (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Replace division by multiplication in calculation of queue length (Benjamin Coddington) [1846295]
+- [fs] NFSv4: Validate the stateid before applying it to state recovery (Benjamin Coddington) [1846295]
+- [fs] nfs4.0: Refetch lease_time after clientid update (Benjamin Coddington) [1846295]
+- [fs] nfs4: Rename nfs41_setup_state_renewal (Benjamin Coddington) [1846295]
+- [fs] nfs4: Make nfs4_proc_get_lease_time available for nfs4.0 (Benjamin Coddington) [1846295]
+- [fs] nfs: Fix copy-and-paste error in debug message (Benjamin Coddington) [1846295]
+- [fs] NFS: Replace 16 seq_printf() calls by seq_puts() (Benjamin Coddington) [1846295]
+- [fs] NFS: Use seq_putc() in nfs_show_stats() (Benjamin Coddington) [1846295]
+- [fs] nfsd: Fix misuse of strlcpy (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Drop redundant CONFIG_ from CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES (Benjamin Coddington) [1846295]
+- [fs] NFS: Cleanup if nfs_match_client is interrupted (Benjamin Coddington) [1846295]
+- [fs] nfs: disable client side deduplication (Benjamin Coddington) [1846295]
+- [fs] NFS: Clean up writeback code (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Remove warning in debugfs.c when compiling with W=1 (Benjamin Coddington) [1846295]
+- [fs] NFS: Add sysfs support for per-container identifier (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Remove the bh-safe lock requirement on the rpc_wait_queue->lock (Benjamin Coddington) [1846295]
+- [fs] NFS: Cleanup - add nfs_clients_exit to mirror nfs_clients_init (Benjamin Coddington) [1846295]
+- [fs] NFS: Create a root NFS directory in /sys/fs/nfs (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Remove the bh-safe lock requirement on xprt->transport_lock (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Replace direct task wakeups from softirq context (Benjamin Coddington) [1846295]
+- [net] SUNRPC: Replace the queue timer with a delayed work function (Benjamin Coddington) [1846295]
+- [fs] NFSv4: Handle open for execute correctly (Benjamin Coddington) [1846295]
+- [fs] nfs: dget_parent() never returns NULL (Benjamin Coddington) [1846295]
+- [net] nfs: fix out-of-date connectathon talk URL (Benjamin Coddington) [1846295]
+- [fs] nfsd4: remove outdated nfsd4_decode_time comment (Benjamin Coddington) [1846295]
+- [fs] nfsd: Spelling s/EACCESS/EACCES/ (Benjamin Coddington) [1846295]
+- [fs] lockd: Make two symbols static (Benjamin Coddington) [1846295]
+- [fs] lockd: Show pid of lockd for remote locks (Benjamin Coddington) [1846295]
+- [fs] lockd: Remove lm_compare_owner and lm_owner_key (Benjamin Coddington) [1846295]
+- [fs] lockd: Convert NLM service fl_owner to nlm_lockowner (Benjamin Coddington) [1846295]
+- [fs] lockd: prepare nlm_lockowner for use by the server (Benjamin Coddington) [1846295]
+- [net] sunrpc: no need to check return value of debugfs_create functions (Benjamin Coddington) [1846295]
+- [fs] nfsd: no need to check return value of debugfs_create functions (Benjamin Coddington) [1846295]
+- [fs] xfs: add agf freeblocks verify in xfs_agf_verify (Brian Foster) [1837192] {CVE-2020-12655}
+- [scsi] scsi: iscsi: Fix deadlock on recovery path during GFP_IO reclaim (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Register sysfs for iscsi workqueue (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Report unbind session event when the target has been removed (Chris Leech) [1830140]
+- [scsi] scsi: libiscsi: Fix error count for active session (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Report connection state in sysfs (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Add support for asynchronous iSCSI session destruction (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Perform connection failure entirely in kernel space (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Don't destroy session if there are outstanding connections (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Fix a potential deadlock in the timeout handler (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Don't send data to unbound connection (Chris Leech) [1830140]
+- [scsi] scsi: libiscsi: switch to SPDX tags (Chris Leech) [1830140]
+- [scsi] scsi: libiscsi: Hold back_lock when calling iscsi_complete_task (Chris Leech) [1830140]
+- [scsi] scsi: libiscsi: Use scsi_et_resid() where appropriate (Chris Leech) [1830140]
+- [scsi] scsi: iscsi: Capture iscsi debug messages using tracepoints (Chris Leech) [1830140]
+- [scsi] scsi: libiscsi: Fix NULL pointer dereference in iscsi_eh_session_reset (Chris Leech) [1830140]
+- [scsi] scsi: iscsi_tcp: Explicitly cast param in iscsi_sw_tcp_host_get_param (Chris Leech) [1830140]
+- [scsi] scsi: libiscsi: Annotate fall-through (Chris Leech) [1830140]
+- [scsi] scsi: libiscsi: Annotate locking assumptions (Chris Leech) [1830140]
+- [nvme] nvmet: fail outstanding host posted AEN req (David Milburn) [1833642]
+- [nvme] nvmet: add async event tracing support (David Milburn) [1833642]
+- [nvme] nvmet: cleanups the loop in nvmet_async_events_process (David Milburn) [1833642]
+- [nvme] nvmet: fix memory leak when removing namespaces and controllers concurrently (David Milburn) [1833642]
+- [netdrv] ibmvnic: Flush existing work items before device removal (Steve Best) [1846761]
+- [kernel] signal: Extend exec_id to 64bits (Chris von Recklinghausen) [1834652] {CVE-2020-12826}
+
+* Thu Jun 18 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-216.el8]
+- [arm64] docs: fix broken references to text files (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Move __load_guest_stage2 to kvm_mmu.h (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Drop obsolete comment about sys_reg ordering (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Parametrize exception entry with a target EL (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Don't use empty structures as CPU reset state (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Move sysreg reset check to boot time (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Add missing reset handlers for PMU emulation (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Refactor vcpu_{read, write}_sys_reg (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: vgic-v3: Take cpu_if pointer directly instead of vcpu (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Remove obsolete kvm_virt_to_phys abstraction (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Fix incorrect comment on kvm_get_hyp_vector() (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Clean up cpu_init_hyp_mode() (Andrew Jones) [1842468]
+- [arm64] cpufeature: Drop open encodings while extracting parange (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Make KVM_CAP_MAX_VCPUS compatible with the selected GIC version (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Support enabling dirty log gradually in small chunks (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Unify handling THP backed host memory (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Clean up the checking for huge mapping (Andrew Jones) [1842468]
+- [arm64] kvm: arm/arm64: Release kvm->mmu_lock in loop to prevent starvation (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Sidestep stage2_unmap_vm() on vcpu reset when S2FWB is supported (Andrew Jones) [1842468]
+- [arm64] kvm: Fix spelling in code comments (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Simplify __kvm_timer_set_cntvoff implementation (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Clean up kvm makefiles (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Change CONFIG_KVM to a menuconfig entry (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Update help text (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Kill off CONFIG_KVM_ARM_HOST (Andrew Jones) [1842468]
+- [arm64] kvm: arm64: Move virt/kvm/arm to arch/arm64 (Andrew Jones) [1842468]
+- [arm64] Unify WORKAROUND_SPECULATIVE_AT_{NVHE, VHE} (Andrew Jones) [1842468]
+- [arm64] cpufeature: Add CPU capability for AArch32 EL1 support (Andrew Jones) [1842468]
+- [net] SUNRPC: Fix a credential refcount leak (Benjamin Coddington) [1831672]
+- [net] Revert "SUNRPC: Declare RPC timers as TIMER_DEFERRABLE" (Benjamin Coddington) [1831672]
+- [net] net :sunrpc :clnt :Fix xps refcount imbalance on the error path (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Rebalance a kref in auth_gss.c (Benjamin Coddington) [1831672]
+- [fs] NFS: Fix a double unlock from nfs_match, get_client (Benjamin Coddington) [1831672]
+- [fs] nfs: pass the correct prototype to read_cache_page (Benjamin Coddington) [1831672]
+- [fs] NFSv4: don't mark all open state for recovery when handling recallable state revoked flag (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Fix an error code in gss_alloc_msg() (Benjamin Coddington) [1831672]
+- [net] SUNRPC: task should be exit if encode return EKEYEXPIRED more times (Benjamin Coddington) [1831672]
+- [fs] NFS: make nfs_match_client killable (Benjamin Coddington) [1831672]
+- [fs] nfsd: update callback done processing (Benjamin Coddington) [1831672]
+- [fs] lockd: Store the lockd client credential in struct nlm_host (Benjamin Coddington) [1831672]
+- [fs] NFS: When mounting, don't share filesystems between different user namespaces (Benjamin Coddington) [1831672]
+- [fs] NFS: Convert NFSv2 to use the container user namespace (Benjamin Coddington) [1831672]
+- [fs] NFSv4: Convert the NFS client idmapper to use the container user namespace (Benjamin Coddington) [1831672]
+- [fs] NFS: Convert NFSv3 to use the container user namespace (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Use namespace of listening daemon in the client AUTH_GSS upcall (Benjamin Coddington) [1831672]
+- [net] net: Remove some unneeded semicolon (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Use the client user namespace when encoding creds (Benjamin Coddington) [1831672]
+- [fs] NFS: Store the credential of the mount process in the nfs_server (Benjamin Coddington) [1831672]
+- [fs] SUNRPC: Cache cred of process creating the rpc_client (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Update comments based on recent changes (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Avoid digging into the ATOMIC pool (Benjamin Coddington) [1831672]
+- [net] xprtrdma: Recognize XDRBUF_SPARSE_PAGES (Benjamin Coddington) [1831672]
+- [fs] Fix nfs4.2 return -EINVAL when do dedupe operation (Benjamin Coddington) [1831672]
+- [fs] NFS: Remove redundant open context from nfs_page (Benjamin Coddington) [1831672]
+- [fs] NFS: Add a helper to return a pointer to the open context of a struct nfs_page (Benjamin Coddington) [1831672]
+- [fs] NFS: Ensure that all nfs lock contexts have a valid open context (Benjamin Coddington) [1831672]
+- [fs] NFS: Allow signal interruption of NFS4ERR_DELAYed operations (Benjamin Coddington) [1831672]
+- [fs] pNFS: Add tracking to limit the number of pNFS retries (Benjamin Coddington) [1831672]
+- [fs] NFS: Remove unused argument from nfs_create_request() (Benjamin Coddington) [1831672]
+- [fs] NFS: Fix up NFS I/O subrequest creation (Benjamin Coddington) [1831672]
+- [fs] NFS: Replace custom error reporting mechanism with generic one (Benjamin Coddington) [1831672]
+- [fs] NFS: Don't inadvertently clear writeback errors (Benjamin Coddington) [1831672]
+- [fs] NFS: Don't call generic_error_remove_page() while holding locks (Benjamin Coddington) [1831672]
+- [fs] NFS: Don't interrupt file writeout due to fatal errors (Benjamin Coddington) [1831672]
+- [fs] NFS: Add a mount option "softerr" to allow clients to see ETIMEDOUT errors (Benjamin Coddington) [1831672]
+- [uapi] NFS: Move internal constants out of uapi/linux/nfs_mount.h (Benjamin Coddington) [1831672]
+- [fs] NFS: Consider ETIMEDOUT to be a fatal error (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Add the 'softerr' rpc_client flag (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Ensure to ratelimit the "server not responding" syslog messages (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Start the first major timeout calculation at task creation (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Ensure that the transport layer respect major timeouts (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Declare RPC timers as TIMER_DEFERRABLE (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Simplify queue timeouts using timer_reduce() (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Fix up tracking of timeouts (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Add function rpc_sleep_on_timeout() (Benjamin Coddington) [1831672]
+- [fs] SUNRPC: Remove unused argument 'action' from rpc_sleep_on_priority() (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Refactor rpc_sleep_on() (Benjamin Coddington) [1831672]
+- [net] SUNRPC: Refactor xprt_request_wait_receive() (Benjamin Coddington) [1831672]
+- [fs] nfsd: fh_drop_write in nfsd_unlink (Benjamin Coddington) [1831672]
+- [fs] nfsd: avoid uninitialized variable warning (Benjamin Coddington) [1831672]
+- [netdrv] Revert "net: phy: realtek: fix using paged operations with RTL8105e / RTL8208" (Josef Oskera) [1846022]
+- [netdrv] ice: Fix Tx timeout when link is toggled on a VF's interface (Jonathan Toppins) [1843144]
+- [netdrv] ice: add a devlink region for dumping NVM contents (Jonathan Toppins) [1843144]
+- [nvme] nvme-fc: print proper nvme-fc devloss_tmo value (Gopal Tiwari) [1846049]
+- [acpi] ACPI: EC: PM: Avoid flushing EC work when EC GPE is inactive (Al Stone) [1803969]
+- [acpi] ACPI: EC: PM: Avoid premature returns from acpi_s2idle_wake() (Al Stone) [1803969]
+- [acpi] ACPI: PM: Add acpi_register_wakeup_handler() (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Refine active GPEs check (Al Stone) [1803969]
+- [acpi] ACPICA: Allow acpi_any_gpe_status_set() to skip one GPE (Al Stone) [1803969]
+- [base] PM: sleep: wakeup: Skip wakeup_source_sysfs_remove() if device is not there (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Check fixed wakeup events in acpi_s2idle_wake() (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Fix comment in acpi_s2idle_prepare_late() (Al Stone) [1803969]
+- [platform] platform/x86: sony-laptop: Make resuming thermal profile safer (Al Stone) [1803969]
+- [platform] platform/x86: sony-laptop: SNC calls should handle BUFFER types (Al Stone) [1803969]
+- [acpi] ACPI: Update Tiger Lake ACPI device IDs (Al Stone) [1803969]
+- [acpi] ACPI: EC: Avoid printing confusing messages in acpi_ec_setup() (Al Stone) [1803969]
+- [acpi] ACPI: EC: Fix flushing of pending work (Al Stone) [1803969]
+- [base] PM / wakeup: Register wakeup class kobj after device is added (Al Stone) [1803969]
+- [base] PM / wakeup: Fix sysfs registration error path (Al Stone) [1803969]
+- [base] PM / wakeup: Unexport wakeup_source_sysfs_{add, remove}() (Al Stone) [1803969]
+- [kernel] PM: suspend: Fix platform_suspend_prepare_noirq() (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Prevent spurious SCIs from waking up the system (Al Stone) [1803969]
+- [acpi] ACPICA: Introduce acpi_any_gpe_status_set() (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Avoid possible race related to the EC GPE (Al Stone) [1803969]
+- [acpi] ACPI: watchdog: Allow disabling WDAT at boot (Al Stone) [1803969]
+- [acpi] ACPI / APD: Add clock frequency for Hisilicon Hip08-Lite I2C controller (Al Stone) [1803969]
+- [acpi] ACPI: thermal: switch to use <linux/units.h> helpers (Al Stone) [1803969]
+- [acpi] ACPI/IORT: Fix 'Number of IDs' handling in iort_id_map() (Al Stone) [1803969]
+- [acpi] ACPI/IORT: Parse SSID property of named component node (Al Stone) [1803969]
+- [iommu] iommu/arm-smmu-v3: Parse PASID devicetree property of platform devices (Al Stone) [1803969]
+- [acpi] ACPICA: Update version to 20200110 (Al Stone) [1803969]
+- [acpi] ACPICA: All acpica: Update copyrights to 2020 Including tool signons (Al Stone) [1803969]
+- [acpi] ACPI: button: Add DMI quirk for Razer Blade Stealth 13 late 2019 lid switch (Al Stone) [1803969]
+- [acpi] ACPI: PPTT: Consistently use unsigned int as parameter type (Al Stone) [1803969]
+- [acpi] ACPI: EC: Reference count query handlers under lock (Al Stone) [1803969]
+- [acpi] ACPICA: Update version to 20191213 (Al Stone) [1803969]
+- [acpi] ACPICA: Dispatcher: always generate buffer objects for ASL create_field() operator (Al Stone) [1803969]
+- [acpi] ACPICA: acpisrc: add unix line ending support for non-windows build (Al Stone) [1803969]
+- [acpi] ACPICA: Disassembler: create buffer fields in ACPI_PARSE_LOAD_PASS1 (Al Stone) [1803969]
+- [acpi] ACPICA: debugger: fix spelling mistake "adress" -> "address" (Al Stone) [1803969]
+- [acpi] ACPI: video: Do not export a non working backlight interface on MSI MS-7721 boards (Al Stone) [1803969]
+- [acpi] ACPI: fan: Add Tiger Lake ACPI device ID (Al Stone) [1803969]
+- [acpi] ACPI: DPTF: Add Tiger Lake ACPI device IDs (Al Stone) [1803969]
+- [acpi] ACPI: fan: Expose fan performance state information (Al Stone) [1803969]
+- [acpi] ACPI / LPSS: Rename pwm_backlight pwm-lookup to pwm_soc_backlight (Al Stone) [1803969]
+- [acpi] ACPI: video: Use native backlight on Lenovo E41-25/45 (Al Stone) [1803969]
+- [acpi] ACPI: video: fix typo in comment (Al Stone) [1803969]
+- [acpi] ACPI / battery: Deal better with neither design nor full capacity not being reported (Al Stone) [1803969]
+- [acpi] ACPI / battery: Use design-cap for capacity calculations if full-cap is not available (Al Stone) [1803969]
+- [acpi] ACPI / battery: Deal with design or full capacity being reported as -1 (Al Stone) [1803969]
+- [acpi] ACPI/sleep: Convert acpi_wakeup_address into a function (Al Stone) [1803969]
+- [acpi] ACPI: PM: Avoid attaching ACPI PM domain to certain devices (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Rework ACPI events synchronization (Al Stone) [1803969]
+- [acpi] ACPI: EC: Rework flushing of pending work (Al Stone) [1803969]
+- [acpi] ACPI: bus: Fix NULL pointer check in acpi_bus_get_private_data() (Al Stone) [1803969]
+- [acpi] ACPI: Fix Kconfig indentation (Al Stone) [1803969]
+- [acpi] ACPI: OSL: only free map once in osl.c (Al Stone) [1803969]
+- [acpi] ACPI: button: Add DMI quirk for Acer Switch 10 SW5-032 lid-switch (Al Stone) [1803969]
+- [acpi] ACPI: sysfs: Change ACPI_MASKABLE_GPE_MAX to 0x100 (Al Stone) [1803969]
+- [acpi] ACPI: OSI: Shoot duplicate word (Al Stone) [1803969]
+- [acpi] ACPI: HMAT: use u instead of d to print u32 values (Al Stone) [1803969]
+- [acpi] ACPI: NUMA: HMAT: fix a section mismatch (Al Stone) [1803969]
+- [acpi] ACPI: HMAT: don't mix pxm and nid when setting memory target processor_pxm (Al Stone) [1803969]
+- [acpi] ACPI: NUMA: HMAT: Register "soft reserved" memory as an "hmem" device (Al Stone) [1803969]
+- [acpi] ACPI: NUMA: HMAT: Register HMAT at device_initcall level (Al Stone) [1803969]
+- [acpi] ACPI: NUMA: Establish a new drivers/acpi/numa/ directory (Al Stone) [1803969]
+- [x86] x86/efi: EFI soft reservation to E820 enumeration (Al Stone) [1803969]
+- [firmware] efi: Common enable/disable infrastructure for EFI soft reservation (Al Stone) [1803969]
+- [firmware] efi: Enumerate EFI_MEMORY_SP (Al Stone) [1803969]
+- [dax] device-dax: Add a driver for "hmem" devices (Al Stone) [1803969]
+- [nvdimm] lib: Uplevel the pmem "region" ida to a global allocator (Al Stone) [1803969]
+- [acpi] ACPICA: Update version to 20191018 (Al Stone) [1803969]
+- [acpi] ACPICA: debugger: remove leading whitespaces when converting a string to a buffer (Al Stone) [1803969]
+- [acpi] ACPICA: acpiexec: initialize all simple types and field units from user input (Al Stone) [1803969]
+- [acpi] ACPICA: debugger: add field unit support for acpi_db_get_next_token (Al Stone) [1803969]
+- [acpi] ACPICA: debugger: surround field unit output with braces '{' (Al Stone) [1803969]
+- [acpi] ACPICA: debugger: add command to dump all fields of particular subtype (Al Stone) [1803969]
+- [acpi] ACPICA: utilities: add flag to only display data when dumping buffers (Al Stone) [1803969]
+- [acpi] ACPICA: make acpi_load_table() return table index (Al Stone) [1803969]
+- [acpi] ACPICA: Add new external interface, acpi_unload_table() (Al Stone) [1803969]
+- [acpi] ACPICA: More Clang changes (Al Stone) [1803969]
+- [acpi] ACPICA: Win OSL: Replace get_tick_count with get_tick_count64 (Al Stone) [1803969]
+- [acpi] ACPICA: Results from Clang (Al Stone) [1803969]
+- [acpi] ACPI: EC: add support for hardware-reduced systems (Al Stone) [1803969]
+- [acpi] ACPI: EC: tweak naming in preparation for GpioInt support (Al Stone) [1803969]
+- [acpi] ACPI: button: Remove unused acpi_lid_notifier_register() functions (Al Stone) [1803969]
+- [acpi] ACPI: button: Add DMI quirk for Asus T200TA (Al Stone) [1803969]
+- [acpi] ACPI: button: Add DMI quirk for Medion Akoya E2215T (Al Stone) [1803969]
+- [acpi] ACPI: button: Turn lid_blacklst DMI table into a generic quirk table (Al Stone) [1803969]
+- [acpi] ACPI: button: Allow disabling LID support with the lid_init_state module option (Al Stone) [1803969]
+- [acpi] ACPI: button: Refactor lid_init_state module parsing code (Al Stone) [1803969]
+- [acpi] ACPI: LPSS: Add dmi quirk for skipping _DEP check for some device-links (Al Stone) [1803969]
+- [acpi] ACPI: LPSS: Add LNXVIDEO -> BYT I2C1 to lpss_device_links (Al Stone) [1803969]
+- [acpi] ACPI: LPSS: Add LNXVIDEO -> BYT I2C7 to lpss_device_links (Al Stone) [1803969]
+- [acpi] ACPI / PMIC: Add Cherry Trail Crystal Cove PMIC OpRegion driver (Al Stone) [1803969]
+- [acpi] ACPI / PMIC: Add byt prefix to Crystal Cove PMIC OpRegion driver (Al Stone) [1803969]
+- [acpi] ACPI / PMIC: Do not register handlers for unhandled OpRegions (Al Stone) [1803969]
+- [acpi] ACPI: processor_idle: Skip dummy wait if kernel is in guest (Al Stone) [1803969]
+- [acpi] acpi: Use pr_warn instead of pr_warning (Al Stone) [1803969]
+- [acpi] ACPI: CPPC: Set pcc_datato NULL in acpi_cppc_processor_exit() (Al Stone) [1803969]
+- [mfd] rhel: constify some function arguments when searching for devices (Al Stone) [1803969]
+- [acpi] ACPI: platform: Unregister stale platform devices (Al Stone) [1803969]
+- [i2c] i2c: Revert incorrect conversion to use generic helper (Al Stone) [1803969]
+- [base] drivers: Introduce device lookup variants by ACPI_COMPANION device (Al Stone) [1803969]
+- [s390] drivers: s390/cio: Fix compilation warning about const qualifiers (Al Stone) [1803969]
+- [s390] driver_find_device: Unify the match function with class_find_device() (Al Stone) [1803969]
+- [acpi] ACPI / LPSS: Switch to use acpi_dev_hid_uid_match() (Al Stone) [1803969]
+- [acpi] ACPI / utils: Move acpi_dev_get_first_match_dev() under CONFIG_ACPI (Al Stone) [1803969]
+- [acpi] ACPI / utils: Describe function parameters in kernel-doc (Al Stone) [1803969]
+- [acpi] ACPI: Always build evged in (Al Stone) [1803969]
+- [acpi] ACPI: video: update doc for acpi_video_bus_DOS() (Al Stone) [1803969]
+- [acpi] ACPI: PM: Drop Dell XPS13 9360 from LPS0 Idle _DSM blacklist (Al Stone) [1803969]
+- [acpi] ACPI: HMAT: ACPI_HMAT_MEMORY_PD_VALID is deprecated since ACPI-6.3 (Al Stone) [1803969]
+- [acpi] i2c: imx: ACPI support for NXP i2c controller (Al Stone) [1803969]
+- [acpi] ACPI / PCI: fix acpi_pci_irq_enable() memory leak (Al Stone) [1803969]
+- [acpi] ACPI: custom_method: fix memory leaks (Al Stone) [1803969]
+- [acpi] ACPI: thermal: Remove redundant acpi_has_method() calls (Al Stone) [1803969]
+- [acpi] ACPI / property: Fix acpi_graph_get_remote_endpoint() name in kerneldoc (Al Stone) [1803969]
+- [acpi] ACPI / CPPC: do not require the _PSD method (Al Stone) [1803969]
+- [acpi] ACPI: SBS: remove unused const variable 'SMBUS_PEC' (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Always set up EC GPE for system wakeup (Al Stone) [1803969]
+- [platform] intel-hid: Disable button array during suspend-to-idle (Al Stone) [1803969]
+- [platform] intel-hid: intel-vbtn: Avoid leaking wakeup_mode set (Al Stone) [1803969]
+- [platform] platform/x86: intel-hid: Missing power button release on some Dell models (Al Stone) [1803969]
+- [platform] platform/x86: intel-hid: Convert to use SPDX identifier (Al Stone) [1803969]
+- [platform] platform/x86: intel-hid: Add support for Device Specific Methods (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Avoid rearming SCI for wakeup unnecessarily (Al Stone) [1803969]
+- [base] PM / wakeup: Show wakeup sources stats in sysfs (Al Stone) [1803969]
+- [kernel] PM / wakeup: Use wakeup_source_register() in wakelock.c (Al Stone) [1803969]
+- [base] PM / wakeup: Drop wakeup_source_init(), wakeup_source_prepare() (Al Stone) [1803969]
+- [base] PM: sleep: Fix possible overflow in pm_system_cancel_wakeup() (Al Stone) [1803969]
+- [acpi] ACPI/PCI: Remove surplus parentheses from a return statement (Al Stone) [1803969]
+- [acpi] ACPICA: Update version to 20190816 (Al Stone) [1803969]
+- [acpi] ACPICA: Add "Windows 2019" string to _OSI support (Al Stone) [1803969]
+- [acpi] ACPICA: Differentiate Windows 8.1 from Windows 8 (Al Stone) [1803969]
+- [acpi] ACPICA: Fully deploy ACPI_PRINTF_LIKE macro (Al Stone) [1803969]
+- [acpi] ACPICA: Fix issues with arg types within printf format strings (Al Stone) [1803969]
+- [acpi] ACPICA: Macros: remove pointer math on a null pointer (Al Stone) [1803969]
+- [acpi] ACPICA: Debugger: remove redundant assignment on obj_desc (Al Stone) [1803969]
+- [acpi] ACPI / APEI: Release resources if gen_pool_add() fails (Al Stone) [1803969]
+- [acpi] acpi: Use built-in RCU list checking for acpi_ioremaps list (Al Stone) [1803969]
+- [acpi] HMAT: Skip publishing target info for nodes with no online memory (Al Stone) [1803969]
+- [acpi] HMAT: Register attributes for memory hot add (Al Stone) [1803969]
+- [acpi] HMAT: Register memory-side cache after parsing (Al Stone) [1803969]
+- [acpi] ACPI / processor: don't print errors for processorIDs == 0xff (Al Stone) [1803969]
+- [acpi] ACPI: PM: Print debug messages on device power state changes (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Execute LPS0 _DSM functions with suspended devices (Al Stone) [1803969]
+- [acpi] ACPI: EC: PM: Make acpi_ec_dispatch_gpe() print debug message (Al Stone) [1803969]
+- [acpi] ACPI: EC: PM: Consolidate some code depending on PM_SLEEP (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Eliminate acpi_sleep_no_ec_events() (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Switch EC over to polling during "noirq" suspend (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Add acpi.sleep_no_lps0 module parameter (Al Stone) [1803969]
+- [acpi] ACPI: PM: s2idle: Rearrange lps0_device_attach() (Al Stone) [1803969]
+- [acpi] ACPI / APEI: Get rid of NULL_UUID_LE constant (Al Stone) [1803969]
+- [acpi] ACPI: PM: Set up EC GPE for system wakeup from drivers that need it (Al Stone) [1803969]
+- [acpi] PM: sleep: Simplify suspend-to-idle control flow (Al Stone) [1803969]
+- [kernel] PCI: irq: Introduce rearm_wake_irq() (Al Stone) [1803969]
+- [acpi] ACPI: PM: Set s2idle_wakeup earlier and clear it later (Al Stone) [1803969]
+- [acpi] ACPI: EC: Return bool from acpi_ec_dispatch_gpe() (Al Stone) [1803969]
+- [acpi] ACPICA: Return u32 from acpi_dispatch_gpe() (Al Stone) [1803969]
+- [kernel] kernel/sysctl.c: ignore out-of-range taint bits introduced via kernel.tainted (Rafael Aquini) [1845358]
+- [documentation] kernel: add panic_on_taint (Rafael Aquini) [1845358]
+- [mm] hugetlbfs: fix changes to command line processing (Baoquan He) [1823769]
+- [documentation] hugetlbfs: clean up command line processing (Baoquan He) [1823769]
+- [mm] hugetlbfs: remove hugetlb_add_hstate() warning for existing hstate (Baoquan He) [1823769]
+- [mm] hugetlbfs: move hugepagesz= parsing to arch independent code (Baoquan He) [1823769]
+- [mm] mm: simplify MEMORY_ISOLATION && COMPACTION || CMA into CONTIG_ALLOC (Baoquan He) [1823769]
+- [mm] hugetlbfs: add arch_hugetlb_valid_size (Baoquan He) [1823769]
+- [mm] arm64/hugetlb: Use macros for contiguous huge page sizes (Baoquan He) [1823769]
+- [mm] arm64: hugetlb: Register hugepages during arch init (Baoquan He) [1823769]
+- [fs] xfs: prohibit fs freezing when using empty transactions (Brian Foster) [1845099]
+- [security] selinux: properly handle multiple messages in selinux_netlink_send() (Ondrej Mosnacek) [1839643] {CVE-2020-10751}
+- [mm] bdi: add a ->dev_name field to struct backing_dev_info (Ming Lei) [1788378]
+- [block] bdi: use bdi_dev_name() to get device name (Ming Lei) [1788378]
+- [mm] bdi: move bdi_dev_name out of line (Ming Lei) [1788378]
+- [fs] memcg: fix a crash in wb_workfn when a device disappears (Ming Lei) [1788378]
+
+* Tue Jun 16 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-215.el8]
+- [tools] libbpf: provide backported RHEL symbols as upstream aliases 2 (Yauheni Kaliuta) [1813372]
+- [include] bpf: include/linux/bpf.h: fix spaces (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add test for freplace program with expected_attach_type (Yauheni Kaliuta) [1813372]
+- [scripts] checkpatch: don't warn about new vsprintf pointer extension 'pe' (Yauheni Kaliuta) [1813372]
+- [s390] s390: enable bpf jit by default when not built as always-on (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Copy runqslower to OUTPUT directory (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Fix memory leak in test selector (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix huge memory leak in libbpf_find_vmlinux_btf_id() (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add runqslower binary to .gitignore (Yauheni Kaliuta) [1813372]
+- [net] bpf: Change kvfree to kfree in generic_map_lookup_batch() (Yauheni Kaliuta) [1813372]
+- [tools] bpf, selftests: Use bpf_probe_read_kernel (Yauheni Kaliuta) [1813372]
+- [net] bpf/cgroup: Replace rcu_swap_protected() with rcu_replace_pointer() (Yauheni Kaliuta) [1813372]
+- [net] bpf: Fix bug in mmap() implementation for BPF array map (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Validate frozen map contents stays frozen (Yauheni Kaliuta) [1813372]
+- [net] bpf: Fix handling of XADD on BTF memory (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Run SYN cookies with reuseport BPF test only for TCP (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Fix typo in bash-completion (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix handling of optional field_name in btf_dump__emit_type_decl (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Declare bpf_log_buf variables as static (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Fix a couple of broken test_btf cases (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Enforce returning 0 for fentry/fexit programs (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Fix BPF_KRETPROBE macro and use it in attach_probe test (Yauheni Kaliuta) [1813372]
+- [net] bpf: Propagate expected_attach_type when verifying freplace programs (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Fix trampoline_count clean up logic (Yauheni Kaliuta) [1813372]
+- [net] bpf: Explicitly memset some bpf info structures declared on the stack (Yauheni Kaliuta) [1813372]
+- [net] bpf: Explicitly memset the bpf_attr structure (Yauheni Kaliuta) [1813372]
+- [net] bpf: Sanitize the bpf_struct_ops tcp-cc name (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add test for the packed enum member in struct/union (Yauheni Kaliuta) [1813372]
+- [net] bpf/btf: Fix BTF verification of enum members in struct/union (Yauheni Kaliuta) [1813372]
+- [net] bpf: Fix cgroup ref leak in cgroup_bpf_inherit on out-of-memory (Yauheni Kaliuta) [1813372]
+- [net] bpf: Initialize storage pointers to NULL to prevent freeing garbage pointer (Yauheni Kaliuta) [1813372]
+- [tools] selftests: bpf: Add test for JMP32 JSET BPF_X with upper bits set (Yauheni Kaliuta) [1813372]
+- [x86] bpf, x32: Fix bug with JMP32 JSET BPF_X checking upper bits (Yauheni Kaliuta) [1813372]
+- [net] bpf: Do not allow map_freeze in struct_ops map (Yauheni Kaliuta) [1813372]
+- [net] bpf: Return better error value in delete_elem for struct_ops map (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add send_signal_sched_switch test (Yauheni Kaliuta) [1813372]
+- [kernel] bpf: Fix deadlock with rq_lock in bpf_send_signal() (Yauheni Kaliuta) [1813372]
+- [net] bpf: Fix a potential deadlock with bpf_map_do_batch (Yauheni Kaliuta) [1813372]
+- [net] bpf: Do not grab the bucket spinlock by default on htab batch ops (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Sanitise internal map names so they are not rejected by the kernel (Yauheni Kaliuta) [1813372]
+- [tools] bpf, uapi: Remove text about bpf_redirect_map() giving higher performance (Yauheni Kaliuta) [1813372]
+- [net] bpf, offload: Replace bitwise AND by logical AND in bpf_prog_offload_info_fill (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Mark SYN cookie test skipped for UDP sockets (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Fix error checking on reading the tcp_fastopen sysctl (Yauheni Kaliuta) [1813372]
+- [net] bpf: Make btf_check_func_type_match() static (Yauheni Kaliuta) [1813372]
+- [tools] bpf: Selftests build error in sockmap_basic.c (Yauheni Kaliuta) [1813372]
+- [net] bpf: Improve bucket_log calculation logic (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Test freeing sockmap/sockhash with a socket in it (Yauheni Kaliuta) [1813372]
+- [tools] tools/bpf/runqslower: Rebuild libbpf.a on libbpf source change (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Fix trampoline_count.c selftest compilation warning (Yauheni Kaliuta) [1813372]
+- [net] bpf: Fix modifier skipping logic (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Remove redundant "HAVE" prefix from the large INSN limit check (Yauheni Kaliuta) [1813372]
+- [tools] runqslower: Fix Makefile (Yauheni Kaliuta) [1813372]
+- [net] bpf: Reuse log from btf_prase_vmlinux() in btf_struct_ops_init() (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add test based on port range for BPF flow dissector (Yauheni Kaliuta) [1813372]
+- [net] bpf: map_seq_next should always increase position index (Yauheni Kaliuta) [1813372]
+- [tools] tools/bpf: Allow overriding llvm tools for runqslower (Yauheni Kaliuta) [1813372]
+- [tools] selftest/bpf: Add test for allowed trampolines count (Yauheni Kaliuta) [1813372]
+- [net] bpf: Allow to resolve bpf trampoline and dispatcher in unwind (Yauheni Kaliuta) [1813372]
+- [net] bpf: Allow BTF ctx access for string pointers (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Improve handling of failed CO-RE relocations (Yauheni Kaliuta) [1813372]
+- [tools] selftests: bpf: Reset global state between reuseport test runs (Yauheni Kaliuta) [1813372]
+- [tools] selftests: bpf: Make reuseport test output more legible (Yauheni Kaliuta) [1813372]
+- [tools] selftests: bpf: Ignore FIN packets for reuseport tests (Yauheni Kaliuta) [1813372]
+- [tools] selftests: bpf: Use a temporary file in test_sockmap (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Print function linkage in BTF dump (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Improve bpftool changes detection (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Initialize duration variable before using (Yauheni Kaliuta) [1813372]
+- [tools] bpf: tcp: Add bpf_cubic example (Yauheni Kaliuta) [1813372]
+- [tools] bpf: Sync uapi bpf.h to tools/ (Yauheni Kaliuta) [1813372]
+- [net] bpf: Add BPF_FUNC_jiffies64 (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add tests for program extensions (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Add support for program extensions (Yauheni Kaliuta) [1813372]
+- [net] bpf: Introduce dynamic program extensions (Yauheni Kaliuta) [1813372]
+- [scripts] bpf, btf: Always output invariant hit in pahole DWARF to BTF transform (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Build urandom_read with LDFLAGS and LDLIBS (Yauheni Kaliuta) [1813372]
+- [net] bpf: Fix error path under memory pressure (Yauheni Kaliuta) [1813372]
+- [net] bpf: don't bother with getname/kern_path - use user_path_at (Yauheni Kaliuta) [1813372]
+- [tools] selftests: Refactor build to remove tools/lib/bpf from include path (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: Use consistent include paths for libbpf (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Use consistent include paths for libbpf (Yauheni Kaliuta) [1813372]
+- [tools] runsqslower: Support user-specified libbpf include and object paths (Yauheni Kaliuta) [1813372]
+- [tools] tools/runqslower: Remove tools/lib/bpf from include path (Yauheni Kaliuta) [1813372]
+- [tools] selftests: Use consistent include paths for libbpf (Yauheni Kaliuta) [1813372]
+- [tools] tools/runqslower: Use consistent include paths for libbpf (Yauheni Kaliuta) [1813372]
+- [tools] selftests: Pass VMLINUX_BTF to runqslower Makefile (Yauheni Kaliuta) [1813372]
+- [tools] tools/bpf/runqslower: Fix override option for VMLINUX_BTF (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: Don't try to remove user's homedir on clean (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Skip perf hw events test if the setup disabled it (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Don't check for btf fd in test_btf (Yauheni Kaliuta) [1813372]
+- [net] bpf: Fix memory leaks in generic update/delete batch ops (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Load btf_vmlinux only once per object (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix potential multiplication overflow in mmap() size calculation (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Simplify BTF initialization logic (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix error handling bug in btf_dump__new (Yauheni Kaliuta) [1813372]
+- [net] bpf: Remove set but not used variable 'first_key' (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Revert bpf_helper_defs.h inclusion regression (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Fix test_progs send_signal flakiness with nmi mode (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix unneeded extra initialization in bpf_map_batch_common (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add whitelist/blacklist of test names to test_progs (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Support dumping a map with btf_vmlinux_value_type_id (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Add struct_ops map name (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Expose bpf_find_kernel_btf as a LIBBPF_API (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Fix missing BTF output for json during map dump (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Fix a leak of btf object (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add batch ops testing to array bpf map (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add batch ops testing for htab and htab_percpu map (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Add libbpf support to batch ops (Yauheni Kaliuta) [1813372]
+- [tools] tools/bpf: Sync uapi header bpf.h (Yauheni Kaliuta) [1813372]
+- [net] bpf: Add batch ops to all htab bpf map (Yauheni Kaliuta) [1813372]
+- [net] bpf: Add lookup and update batch ops to arraymap (Yauheni Kaliuta) [1813372]
+- [net] bpf: Add generic support for update and delete batch ops (Yauheni Kaliuta) [1813372]
+- [net] bpf: Add generic support for lookup batch op (Yauheni Kaliuta) [1813372]
+- [net] bpf: Add bpf_map_{value_size, update_value, map_copy_value} functions (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add a test for attaching a bpf fentry/fexit trace to an XDP program (Yauheni Kaliuta) [1813372]
+- [tools] tools/bpf: Add self tests for bpf_send_signal_thread() (Yauheni Kaliuta) [1813372]
+- [kernel] bpf: Add bpf_send_signal_thread() helper (Yauheni Kaliuta) [1813372]
+- [net] bpf: Fix seq_show for BPF_MAP_TYPE_STRUCT_OPS (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Build runqslower from selftests (Yauheni Kaliuta) [1813372]
+- [tools] tools/bpf: Add runqslower tool to tools/bpf (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Apply preserve_access_index attribute to all types in BTF dump (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Conform selftests/bpf Makefile output to libbpf and bpftool (Yauheni Kaliuta) [1813372]
+- [scripts] libbpf: Clean up bpf_helper_defs.h generation output (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add BPF_PROG, BPF_KPROBE, and BPF_KRETPROBE macros (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Poison kernel-only integer types (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add unit tests for global functions (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Modify a test to check global functions (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add a test for a large global function (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add fexit-to-skb test for global funcs (Yauheni Kaliuta) [1813372]
+- [net] bpf: Introduce function-by-function verification (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Further clean up Makefile output (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Ensure bpf_helper_defs.h are taken from selftests dir (Yauheni Kaliuta) [1813372]
+- [tools] libbpf,selftests/bpf: Fix clean targets (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Make bpf_map order and indices stable (Yauheni Kaliuta) [1813372]
+- [tools] bpf: Document BPF_F_QUERY_EFFECTIVE flag (Yauheni Kaliuta) [1813372]
+- [tools] bpf: Add bpf_dctcp example (Yauheni Kaliuta) [1813372]
+- [tools] bpf: libbpf: Add STRUCT_OPS support (Yauheni Kaliuta) [1813372]
+- [tools] bpf: Synch uapi bpf.h to tools/ (Yauheni Kaliuta) [1813372]
+- [net] bpf: Add BPF_FUNC_tcp_send_ack helper (Yauheni Kaliuta) [1813372]
+- [net] bpf: tcp: Support tcp_congestion_ops in bpf (Yauheni Kaliuta) [1813372]
+- [net] bpf: Introduce BPF_MAP_TYPE_STRUCT_OPS (Yauheni Kaliuta) [1813372]
+- [net] bpf: Introduce BPF_PROG_TYPE_STRUCT_OPS (Yauheni Kaliuta) [1813372]
+- [net] bpf: Support bitfield read access in btf_struct_access (Yauheni Kaliuta) [1813372]
+- [net] bpf: Add enum support to btf_ctx_access() (Yauheni Kaliuta) [1813372]
+- [net] bpf: Avoid storing modifier to info->btf_id (Yauheni Kaliuta) [1813372]
+- [net] bpf: Save PTR_TO_BTF_ID register state when spilling to stack (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Restore original comm in test_overhead (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Add misc section and probe for large INSN limit (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Add probe for large INSN limit (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Make skeleton C code compilable with C++ compiler (Yauheni Kaliuta) [1813372]
+- [tools] bpf: Print error message for bpftool cgroup show (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: Xdp_redirect_cpu fix missing tracepoint attach (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: xdpsock: Add option to specify transmit fill pattern (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: xdpsock: Add option to specify tx packet size (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: xdpsock: Add option to specify number of packets to send (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: xdpsock: Add option to specify batch size (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: xdpsock: Use common code to handle signal and main exit (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: xdpsock: Add duration option to specify how long to run (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Preserve errno in test_progs CHECK macros (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Test BPF_F_REPLACE in cgroup_attach_multi (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Convert test_cgroup_attach to prog_tests (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Introduce bpf_prog_attach_xattr (Yauheni Kaliuta) [1813372]
+- [net] bpf: Support replacing cgroup-bpf program in MULTI mode (Yauheni Kaliuta) [1813372]
+- [net] bpf: Remove unused new_flags in hierarchy_allows_attach() (Yauheni Kaliuta) [1813372]
+- [net] bpf: Simplify __cgroup_bpf_attach (Yauheni Kaliuta) [1813372]
+- [net] bpf: Remove unnecessary assertion on fp_old (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix another __u64 printf warning (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix printing of ulimit value (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: BTF is required when externs are present (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Allow to augment system Kconfig through extra optional config (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Put Kconfig externs into .kconfig section (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Add bpf_link__disconnect() API to preserve underlying BPF resource (Yauheni Kaliuta) [1813372]
+- [tools] bpf: Allow to change skb mark in test_run (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Work-around rst2man conversion bug (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Simplify format string to not use positional args (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Add gen subcommand manpage (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Remove BPF_EMBED_OBJ macro from libbpf.h (Yauheni Kaliuta) [1813372]
+- [tools] bpftool, selftests/bpf: Embed object file inside skeleton (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Reduce log level for custom section names (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix libbpf_common.h when installing libbpf through 'make install' (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: More succinct Makefile output (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Add zlib as a dependency in pkg-config template (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Print hint about ulimit when getting permission denied error (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: Attach XDP programs in driver mode by default (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: Set -fno-stack-protector when building BPF programs (Yauheni Kaliuta) [1813372]
+- [samples] samples/bpf: Add missing -lz to TPROGS_LDLIBS (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Fix compilation warning on shadowed variable (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Fix build by renaming variables (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add flexible array relocation tests (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Support flexible arrays in CO-RE (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add tests for libbpf-provided externs (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Generate externs datasec in BPF skeleton (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Support libbpf-provided extern variables (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Extract internal map names into constants (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Add `gen skeleton` BASH completions (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add test validating data section to struct convertion layout (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Convert few more selftest to skeletons (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add BPF skeletons selftests and convert attach_probe.c (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Add skeleton codegen command (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Add BPF object skeleton support (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Reduce log level of supported section names dump (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Postpone BTF ID finding for TRACING programs to load phase (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Refactor global data map initialization (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Expose BPF program's function name (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Expose BTF-to-C type declaration emitting API (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Expose btf__align_of() API (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Extract common user-facing helpers (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Add BPF_EMBED_OBJ macro for embedding BPF .o files (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Move non-public APIs from libbpf.h to libbpf_internal.h (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Add generic bpf_program__attach() (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Don't require root for bpf_object__open() (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Match maps by name (Yauheni Kaliuta) [1813372]
+- [tools] bpftool: Match programs by name (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Test wire_len/gso_segs in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1813372]
+- [net] bpf: Expose __sk_buff wire_len/gso_segs to BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1813372]
+- [x86] bpf, x86: Align dispatcher branch targets to 16B (Yauheni Kaliuta) [1813372]
+- [tools] selftests: bpf: Add xdp_perf test (Yauheni Kaliuta) [1813372]
+- [net] bpf: Start using the BPF dispatcher in BPF_TEST_RUN (Yauheni Kaliuta) [1813372]
+- [net] bpf, xdp: Start using the BPF dispatcher for XDP (Yauheni Kaliuta) [1813372]
+- [net] bpf: Introduce BPF dispatcher (Yauheni Kaliuta) [1813372]
+- [net] bpf: Move trampoline JIT image allocation to a function (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Fix perf_buffer test on systems w/ offline CPUs (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add CPU mask parsing tests (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Switch reuseport tests for test_progs framework (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Move reuseport tests under prog_tests/ (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Pull up printing the test name into test runner (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Propagate errors during setup for reuseport tests (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Run reuseport tests in a loop (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Unroll the main loop in reuseport test (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Add helpers for getting socket family & type name (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Use sa_family_t everywhere in reuseport tests (Yauheni Kaliuta) [1813372]
+- [tools] selftests/bpf: Let libbpf determine program type from section name (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Recognize SK_REUSEPORT programs from section name (Yauheni Kaliuta) [1813372]
+- [arm64] bpf, x86, arm64: Enable jit by default when not built as always-on (Yauheni Kaliuta) [1813372]
+- [net] bpf: Switch to offsetofend in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1813372]
+- [tools] libbpf: Bump libpf current version to v0.0.7 (Yauheni Kaliuta) [1813372]
+- [fs] vmalloc: fix remap_vmalloc_range() bounds checks (Yauheni Kaliuta) [1813370]
+- [net] bpf: Prevent re-mmap()'ing BPF map as writable for initially r/o mapping (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: fix test_sysctl_prog with alu32 (Yauheni Kaliuta) [1813370]
+- [powerpc] powerpc/bpf: Enable bpf_probe_read{, str}() on powerpc again (Yauheni Kaliuta) [1813370]
+- [kernel] bpf: Restrict bpf_trace_printk()'s s usage and add pks, pus specifier (Yauheni Kaliuta) [1813370]
+- [lib] printf: add support for printing symbolic error names (Yauheni Kaliuta) [1813370]
+- [net] bpf: Add bpf_probe_read_{user, kernel}_str() to do_refine_retval_range (Yauheni Kaliuta) [1813370]
+- [arm64] bpf: Restrict bpf_probe_read{, str}() only to archs where they work (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Fix accounting bug with direct->count in register_ftrace_direct() (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Return the first found result in lookup_rec() (Yauheni Kaliuta) [1813370]
+- [net] bpf: Undo incorrect __reg_bound_offset32 handling (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix tnum constraints for 32-bit comparisons (Yauheni Kaliuta) [1813370]
+- [x86] x86: Fix kernel-doc atomic.h warnings (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix trampoline usage in preempt (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Reintroduce missed build targets (Yauheni Kaliuta) [1813370]
+- [trace] bpf: Reliably preserve btf_trace_xxx types (Yauheni Kaliuta) [1813370]
+- [include] bpf: Avoid setting bpf insns pages read-only when prog is jited (Yauheni Kaliuta) [1813370]
+- [scripts] bpf: Force .BTF section start to zero when dumping from vmlinux (Yauheni Kaliuta) [1813370]
+- [scripts] bpf: Support pre-2.25-binutils objcopy for vmlinux BTF (Yauheni Kaliuta) [1813370]
+- [net] bpfilter: remove superfluous testing message (Jiri Benc) [1819632]
+- [net] bpfilter: fix dprintf usage for /dev/kmsg (Jiri Benc) [1819632]
+- [net] bpf, sockmap: Remove bucket->lock from sock_{hash|map}_free (Jiri Benc) [1819632]
+- [netdrv] veth: ignore peer tx_dropped when counting local rx_dropped (Jiri Benc) [1819632]
+- [net] xsk: Publish global consumer pointers when NAPI is finished (Jiri Benc) [1819632]
+- [kernel] bpf, xdp: Remove no longer required rcu_read_{un}lock() (Jiri Benc) [1819632]
+- [netdrv] bpf, xdp: virtio_net use access ptr macro for xdp enable check (Jiri Benc) [1819632]
+- [kernel] bpf, xdp: Update devmap comments to reflect napi/rcu usage (Jiri Benc) [1819632]
+- [net] xsk, net: Make sock_def_readable() have external linkage (Jiri Benc) [1819632]
+- [kernel] devmap: Adjust tracepoint for map-less queue flush (Jiri Benc) [1819632]
+- [net] xdp: Use bulking for non-map XDP_REDIRECT and consolidate code paths (Jiri Benc) [1819632]
+- [net] xdp: Move devmap bulk queue into struct net_device (Jiri Benc) [1819632]
+- [net] xsk: Support allocations of large umems (Jiri Benc) [1819632]
+- [tools] Sync uapi/linux/if_link.h (Jiri Benc) [1819632]
+- [net] bpf: Return -EBADRQC for invalid map type in __bpf_tx_xdp_map (Jiri Benc) [1819632]
+- [net] flow_dissector: fix document for skb_flow_get_icmp_tci (Jiri Benc) [1819632]
+- [net] xsk: Use struct_size() helper (Jiri Benc) [1819632]
+- [net] xsk: Add function naming comments and reorder functions (Jiri Benc) [1819632]
+- [net] xsk: Remove unnecessary READ_ONCE of data (Jiri Benc) [1819632]
+- [net] xsk: ixgbe: i40e: ice: mlx5: Xsk_umem_discard_addr to xsk_umem_release_addr (Jiri Benc) [1819632]
+- [net] xsk: Change names of validation functions (Jiri Benc) [1819632]
+- [net] xsk: Simplify the consumer ring access functions (Jiri Benc) [1819632]
+- [net] xsk: Simplify xskq_nb_avail and xskq_nb_free (Jiri Benc) [1819632]
+- [net] xsk: Eliminate the RX batch size (Jiri Benc) [1819632]
+- [net] xsk: Standardize naming of producer ring access functions (Jiri Benc) [1819632]
+- [net] xsk: Consolidate to one single cached producer pointer (Jiri Benc) [1819632]
+- [net] xsk: Simplify detection of empty and full rings (Jiri Benc) [1819632]
+- [net] xsk: Eliminate the lazy update threshold (Jiri Benc) [1819632]
+- [net] xdp: Simplify __bpf_tx_xdp_map() (Jiri Benc) [1819632]
+- [net] xdp: Remove map_to_flush and map swap detection (Jiri Benc) [1819632]
+- [net] xdp: Make cpumap flush_list common for all map instances (Jiri Benc) [1819632]
+- [net] xdp: Make devmap flush_list common for all map instances (Jiri Benc) [1819632]
+- [net] xsk: Make xskmap flush_list common for all map instances (Jiri Benc) [1819632]
+- [kernel] xdp: Fix graze->grace type-o in cpumap comments (Jiri Benc) [1819632]
+- [kernel] xdp: Simplify cpumap cleanup (Jiri Benc) [1819632]
+- [kernel] xdp: Simplify devmap cleanup (Jiri Benc) [1819632]
+- [net] sysctl: Fix compiler warning when only cBPF is present (Jiri Benc) [1819631]
+- [net] dsa: fix flow dissection on Tx path (Jiri Benc) [1819631]
+- [net] page_pool: add the possibility to sync DMA memory for device (Jiri Benc) [1819631]
+- [net] xsk: Fix xsk_poll()'s return type (Jiri Benc) [1819631]
+- [tools] net-af_xdp: Use correct number of channels from ethtool (Jiri Benc) [1819631]
+- [net] xdp: remove memory poison on free for struct xdp_mem_allocator (Jiri Benc) [1819631]
+- [documentation] xsk: Extend documentation for Rx|Tx-only sockets and shared umems (Jiri Benc) [1819631]
+- [net] xsk: Restructure/inline XSKMAP lookup/redirect/flush (Jiri Benc) [1819631]
+- [kernel] xsk: Store struct xdp_sock as a flexible array member of the XSKMAP (Jiri Benc) [1819631]
+- [include] xdp: Fix type of string pointer in __XDP_ACT_SYM_TAB (Jiri Benc) [1819631]
+- [documentation] xsk: Improve documentation for AF_XDP (Jiri Benc) [1819631]
+- [tools] Sync if_link.h (Jiri Benc) [1819631]
+- [net] xdp: Trivial, fix spelling in function description (Jiri Benc) [1819631]
+- [netdrv] netdevsim: Use scnprintf() for avoiding potential buffer overflow (Jiri Benc) [1819631]
+- [netdrv] netdevsim: fix ptr_ret.cocci warnings (Jiri Benc) [1819631]
+- [netdrv] netdevsim: remove unused sdev code (Jiri Benc) [1819631]
+- [netdrv] netdevsim: use IS_ERR instead of IS_ERR_OR_NULL for debugfs (Jiri Benc) [1819631]
+- [netdrv] netdevsim: fix stack-out-of-bounds in nsim_dev_debugfs_init() (Jiri Benc) [1819631]
+- [netdrv] netdevsim: fix panic in nsim_dev_take_snapshot_write() (Jiri Benc) [1819631]
+- [net] openvswitch: New MPLS actions for layer 2 tunnelling (Guillaume Nault) [1839760]
+- [net] Rephrased comments section of skb_mpls_pop() (Guillaume Nault) [1839760]
+- [net] skb_mpls_push() modified to allow MPLS header push at start of packet. (Guillaume Nault) [1839760]
+- [net] Change in Openvswitch to support MPLS label depth of 3 in ingress direction (Guillaume Nault) [1839182]
+- [block] block: fix use-after-free on cached last_lookup partition (Ming Lei) [1787968]
+
+* Fri Jun 12 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-214.el8]
+- [drm] drm/prime: fix extracting of the DMA addresses from a scatterlist (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Check for deferred attach in iommu_group_do_dma_attach() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Add get_domain_info() helper (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Don't take group reference in iommu_alloc_default_domain() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Don't call .probe_finalize() under group->mutex (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Apply per-device dma_ops (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Allow PCI sub-hierarchy to use DMA domain (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Allow 32bit devices to uses DMA domain (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Do not probe devices on IOMMU-less busses (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Fix variable "iommu" set but not used (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Unexport iommu_group_get_for_dev() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Move more initialization to __iommu_probe_device() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Remove add_device()/remove_device() code-paths (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu: Convert to probe/release_device() call-backs (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu: Axe a useless test in 'arm_smmu_master_alloc_smes()' (Jerry Snitselaar) [1815610]
+- [iommu] iommu/s390: Convert to probe/release_device() call-backs (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Convert to probe/release_device() call-backs (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Convert to probe/release_device() call-backs (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Remove dev_data->passthrough (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Export bus_iommu_probe() and make is safe for re-probing (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Move iommu_group_create_direct_mappings() out of iommu_group_add_device() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Split off default domain allocation from group assignment (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Move new probe_device path to separate function (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Keep a list of allocated groups in __iommu_probe_device() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Move default domain allocation to iommu_probe_device() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Add probe_device() and release_device() call-backs (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Return -ENODEV in add_device when device is not handled by IOMMU (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Remove dma_mask check from check_device() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Wire up iommu_ops->def_domain_type (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Implement iommu_ops->def_domain_type call-back (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Add def_domain_type() callback in iommu_ops (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Move default domain allocation to separate function (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Fix reference count leak in iommu_group_alloc (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Remove real DMA lookup in find_domain (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Allocate domain info for real DMA sub-devices (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Only clear real DMA device's context entries (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Fix get_acpihid_device_id() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Switch to use acpi_dev_hid_uid_match() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Fix over-read of ACPI UID from IVRS table (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Fix deferred domain attachment (Jerry Snitselaar) [1815610]
+- [include] iommu: Move fwspec->iommu_priv to struct dev_iommu (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu: Use accessor functions for iommu private data (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu: Refactor master_cfg/fwspec usage (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu-v3: Use accessor functions for iommu private data (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu-v3: Improve add_device() error handling (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu-v3: Return -EBUSY when trying to re-add a device (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu-v3: Fix resource_size check (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu-v3: Populate VMID field for CMDQ_OP_TLBI_NH_VA (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu-v3: Drop __GFP_ZERO flag from DMA allocation (Jerry Snitselaar) [1815610]
+- [include] iommu: Introduce accessors for iommu private data (Jerry Snitselaar) [1815610]
+- [acpi] ACPI/IORT: Remove direct access of dev->iommu_fwspec (Jerry Snitselaar) [1815610]
+- [include] iommu: Define dev_iommu_fwspec_get() for !CONFIG_IOMMU_API (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Do not flush Device Table in iommu_map_page() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Update Device Table in increase_address_space() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Call domain_flush_complete() in update_domain() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Do not loop forever when trying to increase address space (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Fix race in increase_address_space()/fetch_pte() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Fix legacy interrupt remapping for x2APIC-enabled system (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Fix the memory leak in dev_iommu_free() (Jerry Snitselaar) [1815610]
+- [include] iommu: Move iommu_fwspec to struct dev_iommu (Jerry Snitselaar) [1815610]
+- [include] iommu: Rename struct iommu_param to dev_iommu (Jerry Snitselaar) [1815610]
+- [iommu] iommu/of: Take a ref to the IOMMU driver during ->of_xlate() (Jerry Snitselaar) [1815610]
+- [iommu] drivers/iommu: Take a ref to the IOMMU driver prior to ->add_device() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix mm reference leak (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Fix the configuration of GCR3 table root pointer (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Silence RCU-list debugging warning in dmar_find_atsr() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix page request descriptor size (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Populate debugfs if IOMMUs are detected (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Ignore devices with out-of-spec domain number (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix the wrong printing in RHSA parsing (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix debugfs register reads (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: quirk_ioat_snb_local_iommu: replace WARN_TAINT with pr_warn + add_taint (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: dmar_parse_one_rmrr: replace WARN_TAINT with pr_warn + add_taint (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: dmar: replace WARN_TAINT with pr_warn + add_taint (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Silence RCU-list debugging warnings (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix RCU-list bugs in intel_iommu_init() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/dma: Fix MSI reservation allocation (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix a bug in intel_iommu_iova_to_phys() for huge page (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Disable IOMMU on Stoney Ridge systems (Jerry Snitselaar) [1815610]
+- [iommu] iommu: intel: Use generic_iommu_put_resv_regions() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: amd: Use generic_iommu_put_resv_regions() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: arm: Use generic_iommu_put_resv_regions() (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Implement generic_iommu_put_resv_regions() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/iova: Silence warnings under memory pressure (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Fix Kconfig indentation (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Remove unnecessary WARN_ON_ONCE() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Unnecessary to handle default identity domain (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Add RMRR base and end addresses sanity check (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Mark firmware tainted if RMRR fails sanity check (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Don't reject Host Bridge due to scope mismatch (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Loose requirement for flush queue initializaton (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Avoid iova flush queue in strict mode (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: trace: Extend map_sg trace event (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Avoid sending invalid page response (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix off-by-one in PASID allocation (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Avoid duplicated code for PASID setup (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Reject SVM bind for failed capability check (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Match CPU and IOMMU paging mode (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix CPU and IOMMU SVM feature matching checks (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Remove VMD child device sanity check (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Use pci_real_dma_dev() for mapping (Jerry Snitselaar) [1815610]
+- [pci] PCI: Introduce pci_real_dma_dev() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Remove the unnecessary assignment (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Remove unused struct member (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Replace two consecutive readl calls with one readq (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Fix typos for PPR macros (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Remove local variables (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Remove unused variable (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Only support x2APIC with IVHD type 11h/40h (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Check feature support bit before accessing MSI capability registers (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Treat per-device exclusion ranges as r/w unity-mapped regions (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Use C99 flexible array in fwspec (Jerry Snitselaar) [1833512 1815610]
+- [iommu] drivers/iommu: Allow IOMMU bus ops to be unregistered (Jerry Snitselaar) [1815610]
+- [iommu] iommu/of: Request ACS from the PCI core when configuring IOMMU linkage (Jerry Snitselaar) [1815610]
+- [iommu] drivers/iommu: Export core IOMMU API symbols to permit modular drivers (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Fix IOMMU perf counter clobbering during init (Jerry Snitselaar) [1815610]
+- [iommu] iommu/dma: fix variable 'cookie' set but not used (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Unlink device if failed to add to group (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Remove device link to group on failure (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Fix adding non-PCI devices to Intel IOMMU (Jerry Snitselaar) [1815610]
+- [iommu] iommu/dma: Relax locking in iommu_dma_prepare_msi() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Remove incorrect PSI capability check (Jerry Snitselaar) [1815610]
+- [iommu] iommu/dma: Rationalise types for DMA masks (Jerry Snitselaar) [1815610]
+- [iommu] iommu/iova: Init the struct iova to fix the possible memleak (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Check VT-d RMRR region in BIOS is reported as reserved (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Turn off translations at shutdown (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Support multiple PCI DMA aliases in IRQ Remapping (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Support multiple PCI DMA aliases in device table (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Do not re-fetch iommu->cmd_buf_tail (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Pass gfp flags to iommu_map_page() in amd_iommu_map() (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Simpify decoding logic for INVALID_PPR_REQUEST event (Jerry Snitselaar) [1815610]
+- [drm] drm/prime: use dma length macro when mapping sg (Jerry Snitselaar) [1815610]
+- [drm] drm/amdgpu: fix scatter-gather mapping with user pages (Jerry Snitselaar) [1815610]
+- [drm] drm/radeon: fix scatter-gather mapping with user pages (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Convert AMD iommu driver to the dma-iommu api (Jerry Snitselaar) [1815610]
+- [iommu] iommu/dma-iommu: Use the dev->coherent_dma_mask (Jerry Snitselaar) [1815610]
+- [iommu] iommu/dma-iommu: Handle deferred devices (Jerry Snitselaar) [1815610]
+- [include] iommu: KABI cleanup (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Add gfp parameter to iommu_ops::map (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Remove unnecessary locking from AMD iommu driver (Jerry Snitselaar) [1815610]
+- [iommu] drivers: iommu: hyperv: Make HYPERV_IOMMU only available on x86 (Jerry Snitselaar) [1815610]
+- [include] iommu/vt-d: Fix QI_DEV_IOTLB_PFSID and QI_DEV_EIOTLB_PFSID macros (Jerry Snitselaar) [1815610]
+- [iommu] iommu: pass cell_count = -1 to of_for_each_phandle with cells_name (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu: Free context bitmap in the err path of arm_smmu_init_domain_context (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Return the correct dma mask when we are bypassing the IOMMU (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Apply the same IVRS IOAPIC workaround to Acer Aspire A315-41 (Jerry Snitselaar) [1815610]
+- [iommu] iommu/arm-smmu: Mask TLBI address correctly (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Remove wrong default domain comments (Jerry Snitselaar) [1815610]
+- [iommu] iommu/dma: Fix for dereferencing before null checking (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Declare Broadwell igfx dmar support snafu (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Add Scalable Mode fault information (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Use bounce buffer for untrusted devices (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Add trace events for device dma map/unmap (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Don't switch off swiotlb if bounce page is used (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Check whether device requires bounce buffer (Jerry Snitselaar) [1815610]
+- [dma] swiotlb: Split size parameter to map/unmap APIs (Jerry Snitselaar) [1815610]
+- [xen] swiotlb-xen: use ->map_page to implement ->map_sg (Jerry Snitselaar) [1815610]
+- [xen] swiotlb-xen: make instances match their method names (Jerry Snitselaar) [1815610]
+- [uapi] iommu: Add padding to struct iommu_fault (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Add recoverable fault reporting (Jerry Snitselaar) [1815610]
+- [iommu] iommu: Introduce device fault report API (Jerry Snitselaar) [1815610]
+- [include] driver core: Add per device iommu param (Jerry Snitselaar) [1815610]
+- [uapi] iommu: Introduce device fault data (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Silence warnings under memory pressure (Jerry Snitselaar) [1815610]
+- [iommu] iommu/amd: Override wrong IVRS IOAPIC on Raven Ridge systems (Jerry Snitselaar) [1815610]
+- [iommu] iommu/vt-d: Use dma_direct for bypass devices (Jerry Snitselaar) [1815610]
+- [dma] dma-direct: don't check swiotlb=force in dma_direct_map_resource (Jerry Snitselaar) [1815610]
+- [mm] dma-mapping: remove the default map_resource implementation (Jerry Snitselaar) [1815610]
+- [iommu] Revert "iommu/vt-d: Fix lock inversion between iommu->lock and device_domain_lock" (Jerry Snitselaar) [1815610 1813666]
+- [dma] dma-direct: don't truncate dma_required_mask to bus addressing capabilities (Jerry Snitselaar) [1815610]
+- [acpi] ACPI / utils: Introduce acpi_dev_hid_uid_match() helper (Jerry Snitselaar) [1815610]
+- [security] efi: Only print errors about failing to get certs if EFI vars are found (Lenny Szubowicz) [1804969]
+- [infiniband] RDMA/iw_cxgb4: Fix incorrect function parameters (Vishal Kulkarni) [1828676]
+- [infiniband] RDMA/iw_cxgb4: initiate CLOSE when entering TERM (Vishal Kulkarni) [1828676]
+- [infiniband] RDMA/iw_cgxb4: Fix an error handling path in 'c4iw_connect()' (Vishal Kulkarni) [1828676]
+- [infiniband] RDMA/iw_cxgb4: Avoid freeing skb twice in arp failure case (Vishal Kulkarni) [1828676]
+- [infiniband] iw_cxgb4: fix ECN check on the passive accept (Vishal Kulkarni) [1828676]
+- [vfio] vfio/pci: fix memory leaks of eventfd ctx (Alex Williamson) [1837678]
+- [vfio] vfio/pci: fix memory leaks in alloc_perm_bits() (Alex Williamson) [1837678]
+- [vfio] vfio: avoid possible overflow in vfio_iommu_type1_pin_pages (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: make create attribute static (Alex Williamson) [1837678]
+- [vfio] vfio/type1: remove hugepage checks in is_invalid_reserved_pfn() (Alex Williamson) [1837678]
+- [vfio] vfio/type1: Initialize resv_msi_base (Alex Williamson) [1837678]
+- [vfio] vfio_pci: Restore original state on release (Alex Williamson) [1837678]
+- [uapi] vfio: re-arrange vfio region definitions (Alex Williamson) [1837678]
+- [vfio] mdev: Send uevents around parent device registration (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Synchronize device create/remove with parent removal (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Avoid creating sysfs remove file on stale device removal (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Improve the create/remove sequence (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Avoid inline get and put parent helpers (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Fix aborting mdev child device removal if one fails (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Follow correct remove sequence (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Avoid masking error code to EBUSY (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Removed unused kref (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: Avoid release parent reference during error path (Alex Williamson) [1837678]
+- [uapi] vfio-ccw: add handling for async channel instructions (Alex Williamson) [1837678]
+- [uapi] vfio-ccw: add capabilities chain (Alex Williamson) [1837678]
+- [vfio] vfio: Fix WARNING "do not call blocking ops when !TASK_RUNNING" (Alex Williamson) [1837678]
+- [vfio] vfio/pci: use correct format characters (Alex Williamson) [1837678]
+- [vfio] vfio: expand minor range when registering chrdev region (Alex Williamson) [1837678]
+- [vfio] vfio/mdev: add static modifier to add_mdev_supported_type (Alex Williamson) [1837678]
+- [vfio] vfio/type1: Remove map_try_harder() code path (Alex Williamson) [1837678]
+- [vfio] vfio/pci: Fix potential memory leak in vfio_msi_cap_len (Alex Williamson) [1837678]
+- [vfio] vfio: Mark expected switch fall-throughs (Alex Williamson) [1837678]
+- [fs] gfs2: Only do glock put in gfs2_create_inode for free inodes (Robert S Peterson) [1831666]
+- [fs] gfs2: Grab glock reference sooner in gfs2_add_revoke (Robert S Peterson) [1831666]
+- [fs] Revert "gfs2: Don't demote a glock until its revokes are written" (Robert S Peterson) [1831666]
+- [fs] signal: Fix wrong PIDTYPE_TGID check in send_sigio() & send_sigurg() (Waiman Long) [1845597]
+- [md] dm mpath: add DM device name to Failing/Reinstating path log messages (Mike Snitzer) [1822975]
+- [md] dm mpath: enhance queue_if_no_path debugging (Mike Snitzer) [1822975]
+- [md] dm mpath: restrict queue_if_no_path state machine (Mike Snitzer) [1822975]
+- [md] dm mpath: simplify __must_push_back (Mike Snitzer) [1822975]
+- [md] dm: use DMDEBUG macros now that they use pr_debug variants (Mike Snitzer) [1822975]
+- [include] dm: use dynamic debug instead of compile-time config option (Mike Snitzer) [1822975]
+- [md] dm mpath: switch paths in dm_blk_ioctl() code path (Mike Snitzer) [1822975]
+- [md] dm multipath: use updated MPATHF_QUEUE_IO on mapping for bio-based mpath (Mike Snitzer) [1822975]
+- [tools] selftests: mlxsw: qos_mc_aware: Specify arping timeout as an integer (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Fix use-after-free of split/unsplit/type_set in case reload fails (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_acl_tcam: Position vchunk in a vregion list properly (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Fix some IS_ERR() vs NULL bugs (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_flower: Do not stop at FLOW_ACTION_VLAN_MANGLE (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_flower: Do not stop at FLOW_ACTION_PRIORITY (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: fix unintention integer overflow on left shift (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add test cases for devlink-trap policers (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Add support for setting of packet trap group parameters (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Switch to use correct packet trap group (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Do not initialize dedicated discard policer (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Add devlink-trap policer support (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Prepare policers for registration with devlink (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Track used packet trap policer IDs (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Extend QPCR register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_ptp: Fix build warnings (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Avoid uninitialized symbol errors (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: switchx2: Remove unnecessary conversion to bool (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core_acl: Avoid defining static variable in header file (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Remove unused RIF and FID families (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Add proper function documentation (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: i2c: Add missing field documentation (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_mr: Fix list iteration in error path (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: qos_dscp_router: Test no DSCP rewrite after pedit (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_flower: Offload FLOW_ACTION_MANGLE (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Add DSCP, ECN, dscp_rw to QOS_ACTION (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Rename mlxsw_afa_qos_cmd to mlxsw_afa_qos_switch_prio_cmd (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Explicitly register packet trap groups (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_cnt: Fix 64-bit division in mlxsw_sp_counter_resources_register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_flower: Offload FLOW_ACTION_PRIORITY (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Add QOS_ACTION (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: pci: Only issue reset when system is ready (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add tc action hw_stats tests (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_cnt: Expose devlink resource occupancy for counters (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_cnt: Consolidate subpools initialization (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_cnt: Move config validation along with resource register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_cnt: Expose subpool sizes over devlink resources (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_cnt: Add entry_size_res_id for each subpool and use it to query entry size (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_cnt: Move sub_pools under per-instance pool struct (Ivan Vecera) [1821646]
+- [tools] selftests: spectrum-2: Adjust tc_flower_scale limit according to current counter count (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_cnt: Query bank size from FW resources (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Increase register field length to 31 bits (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: RED: Test RED ECN nodrop offload (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Offload RED ECN nodrop mode (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_acl: Ask device for rule stats only if counter was created (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Support offloading of FIFO Qdisc (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Add handle parameter to ..._ops.replace (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Introduce struct mlxsw_sp_qdisc_state (Ivan Vecera) [1821646]
+- [netdrv] net: mlxfw: Replace zero-length array with flexible-array member (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: qos_defprio: Use until_counter_is (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: pci: Wait longer before accessing the device after reset (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Update module_type values in PMTM register and map them to width (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: resource_scale: Invoke for Spectrum-3 (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Reduce router scale running time using offload indication (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Reduce running time using offload indication (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add shared buffer traffic test (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add mlxsw lib (Ivan Vecera) [1821646]
+- [tools] selftests: devlink_lib: Add devlink port helpers (Ivan Vecera) [1821646]
+- [tools] selftests: devlink_lib: Check devlink info command is supported (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add shared buffer configuration test (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Use busywait helper in rtnetlink test (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Use busywait helper in vxlan test (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Use busywait helper in blackhole routes test (Ivan Vecera) [1821646]
+- [tools] selftests: devlink_trap_l3_drops: Avoid race condition (Ivan Vecera) [1821646]
+- [tools] selftests: add a mirror test to mlxsw tc flower restrictions (Ivan Vecera) [1821646]
+- [tools] selftests: add egress redirect test to mlxsw tc flower restrictions (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Add mlxsw_sp_span_ops.buffsize_get for Spectrum-3 (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Initialize advertised speeds to supported speeds (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Move the ECN-marked packet counter to ethtool (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_switchdev: Optimize SFN records processing (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Lookup and pass cookie down to devlink_trap_report() (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: pci: Extract cookie index for ACL discard trap packets (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core_acl_flex_actions: Implement flow_offload action cookie offload (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core_acl_flex_actions: Add trap with userdef action (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: fix spelling mistake: "progamming" -> "programming" (Ivan Vecera) [1821646]
+- [tools] selftests: devlink_trap_acl_drops: Add ACL traps test (Ivan Vecera) [1821646]
+- [tools] selftests: pass pref and handle to devlink_trap_drop_* helpers (Ivan Vecera) [1821646]
+- [tools] selftests: introduce test for mlxsw tc flower restrictions (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Add ACL devlink-trap support (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Introduce dummy group with thin policer (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Extend MLXSW_RXL_DIS to register disabled trap group (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Allow to enable/disable rx_listener for trap (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: acl_flex_actions: Trap all ACL dropped packets to DISCARD_*_ACL traps (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_acl: Pass the ingress indication down to flex action (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_flower: Disable mixed bound blocks to contain action drop (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_acl: Track ingress and egress block bindings (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Prepare mlxsw_core_trap_action_set() to handle not only action (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Use listener->en/dis_action instead of hard-coded values (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Allow to register disabled traps using MLXSW_RXL_DIS (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Set unreg_action to be SET_FW_DEFAULT (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: pci: Remove unused values (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Remove priv from listener equality comparison (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_acl: Make block arg const where appropriate (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Make global arrays const as they should be (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Remove initialization to false of mlxsw_listener struct (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Convert is_event and is_ctrl bools to be single bits (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Remove dummy union name from struct mlxsw_listener (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Remove unused action field from mlxsw_rx_listener struct (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Move policer initialization to mlxsw_sp_trap_init() (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core_acl_flex_actions: Rename Trap / Discard Action to Trap Action (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Move functions to avoid their forward declarations (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Use err variable instead of directly checking func return value (Ivan Vecera) [1821646]
+- [netdrv] net/mlx5: Add fsm_reactivate callback support (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: Add reactivate flow support to FSM burn flow (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: Use MLXFW_ERR_MSG macro for error reporting (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: Convert pr_* to dev_* in mlxfw_fsm.c (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: More error messages coverage (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: Improve FSM err message reporting and return codes (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: Generic mlx FW flash status notify (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Remove RTNL where possible (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Take router lock from exported helpers (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Take router lock from inetaddr listeners (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Take router lock from netdev listener (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_dpipe: Take router lock from dpipe code (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Take router lock from inside routing code (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Introduce router lock (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Store NVE decapsulation configuration in router (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Expose router struct to internal users (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_mr: Protect multicast route list with a lock (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_mr: Protect multicast table list with a lock (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_mr: Publish multicast route after writing it to the device (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_nve: Make tunnel initialization symmetric (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Export function to check if RIF exists (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Prevent RIF access outside of routing code (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Prepare function for router lock introduction (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Prepare function for router lock introduction (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Do not assume RTNL is taken when resolving underlay device (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Do not assume RTNL is taken during RIF teardown (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Do not assume RTNL is taken during nexthop init (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_span: Only update mirroring agents if present (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Convert callers to use new mirroring API (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_span: Prepare work item to update mirroring agents (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_span: Use struct_size() to simplify allocation (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_span: Do no expose mirroring agents to entire driver (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Protect counter pool with a lock (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_kvdl: Protect allocations with a lock (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Replace zero-length array with flexible-array member (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: vxlan: Add test for error path (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: vxlan: Adjust test to recent changes (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: extack: Test creation of multiple VLAN-aware bridges (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: extack: Test bridge creation with VXLAN (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Remove deprecated test (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Reduce dependency between bridge and router code (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_switchdev: Remove VXLAN checks during FID membership (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_switchdev: Have VXLAN device take reference on FID (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_switchdev: Propagate extack to bridge creation function (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_fid: Use 'refcount_t' for FID reference counting (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_dpipe: Add missing error path (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Add validation of hardware device types for MGPIR register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Clear offload indication from IPv6 nexthops on abort (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add test cases for local table route replacement (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Fix 64-bit division error in mlxsw_sp_qdisc_tbf_rate_kbps (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: minimal: Fix an error handling path in 'mlxsw_m_port_create()' (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Support offloading of TBF Qdisc (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Configure shaper rate and burst size together (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Add lowest_shaper_bs to struct mlxsw_sp (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Increase MLXSW_REG_QEEC_MAS_DIS (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Add max_shaper_bs to QoS ETS Element Configuration (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Extract a common leaf unoffload function (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Add mlxsw_sp_qdisc_get_class_stats() (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Extract a per-TC stat function (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_acl: Fix use-after-free during reload (Ivan Vecera) [1821646]
+- [netdrv] spectrum: Add a delayed work to update SPAN buffsize according to speed (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Fix SPAN egress mirroring buffer size for Spectrum-2 (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_span: Put buffsize update code into helper function (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Push code getting port speed into a helper (Ivan Vecera) [1821646]
+- [tools] selftests: devlink_trap_tunnel_vxlan: Add test case for overlay_smac_is_mc (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add OVERLAY_SMAC_MC trap (Ivan Vecera) [1821646]
+- [tools] selftests: devlink_trap_tunnel_ipip: Add test case for decap_error (Ivan Vecera) [1821646]
+- [tools] selftests: devlink_trap_tunnel_vxlan: Add test case for decap_error (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add tunnel devlink-trap support (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Reorder cases according to enum order (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add ECN configurations with IPinIP tunnels (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Add Tunneling IPinIP Decapsulation ECN Mapping Register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Add Tunneling IPinIP Encapsulation ECN Mapping Register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add NON_ROUTABLE trap (Ivan Vecera) [1821646]
+- [tools] selftests: devlink_trap_l3_drops: Add test cases of irif and erif disabled (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add irif and erif disabled traps (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Include MC TCs in Qdisc counters (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Wipe xstats.backlog of down ports (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: qos_mc_aware: Fix mausezahn invocation (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: switchx2: Do not modify cloned SKBs during xmit (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Do not modify cloned SKBs during xmit (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Do not enforce same firmware version for multiple ASICs (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add test for FIB offload API (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Set hardware flags for routes (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Separate nexthop offload indication from route (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Only require minimum firmware version (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Update firmware version to xx.2000.2714 (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Ignore grafting of invisible FIFO (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Disable DIP_LINK_LOCAL check in hardware pipeline (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Disable SIP_DIP check in hardware pipeline (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Disable MC_DMAC check in hardware pipeline (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Disable SIP_CLASS_E check in hardware pipeline (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_dcb: Allow setting default port priority (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Add QoS Port DSCP to Priority Mapping Register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Support offloading of ETS Qdisc (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Generalize PRIO offload to support ETS (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Rename MLXSW_REG_QEEC_HIERARCY_* enumerators (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_qdisc: Clarify a comment (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Use dedicated policer for VRRP packets (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Skip loopback RIFs during MAC validation (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: Fix out-of-memory error in mfa2 flash burning (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Fix use of uninitialized adjacency index (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: After underlay moves, demote conflicting tunnels (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Check devlink device before running test (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add router scale test for Spectrum-2 (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Fix determining underlay for a GRE tunnel (Ivan Vecera) [1821646]
+- [netdrv] net/mlxfw: Verify FSM error code translation doesn't exceed array size (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Allocate discard adjacency entry when needed (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Enable EMAD string TLV (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Add support for using EMAD string TLV (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Extend EMAD information reported to devlink hwerr (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Add support for EMAD string TLV parsing (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Add EMAD string TLV (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: emad: Remove deprecated EMAD TLVs (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Parse TLVs' offsets of incoming EMADs (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Enable devlink reload only on probe (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add test cases for devlink-trap layer 3 exceptions (Ivan Vecera) [1821646]
+- [tools] selftests: forwarding: devlink: Add functionality for trap exceptions test (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add layer 3 devlink-trap exceptions support (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add specific trap for packets routed via invalid nexthops (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add new FIB entry type for reject routes (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add test cases for devlink-trap layer 3 drops (Ivan Vecera) [1821646]
+- [tools] selftests: devlink: Make devlink_trap_cleanup() more generic (Ivan Vecera) [1821646]
+- [tools] selftests: devlink: Export functions to devlink library (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add layer 3 devlink-trap support (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Fix error return code in mlxsw_sp_port_module_info_init() (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Generalize split count check (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Iterate over all ports in gap during unsplit create (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Fix base port get for split count 4 and 8 (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Use port_module_max_width to compute base port index (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Remember split base local port and use it in unsplit (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Introduce resource for getting offset of 4 lanes split port (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Push getting offsets of split ports into a helper (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Add sanity checks into module info get (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Pass mapping values in port mapping structure (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Use mapping of port being split for creating split ports (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Replace port_to_module array with array of structs (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Distinguish between unsplittable and split port (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Move max_width check up before count check (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Use PMTM register to get max module width (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Add Port Module Type Mapping Register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Extend PMLP tx/rx lane value size to 4 bits (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Fix 64-bit division in mlxsw_sp_sb_prs_init (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Enforce firmware version for Spectrum-2 (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Bump firmware version to 13.2000.2308 (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: pci: Increase PCI reset timeout for SN3800 systems (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Increase size of MPAR register (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Unpublish devlink parameters during reload (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_buffers: remove unneeded semicolon (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_buffers: Calculate the size of the main pool (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Use guaranteed buffer size as pool size limit (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Extend QSFP EEPROM size for ethtool (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Add macro for getting QSFP module EEPROM page number (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_trap: Push Ethernet header before reporting trap (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add Spectrum-2 target scale for tc flower scale test (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add a resource scale test for Spectrum-2 (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add Spectrum-2 mirror-to-gretap target scale test (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Generalize the parameters of mirror_gre test (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Register switched port analyzers (SPAN) as resource (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Add support for 400Gbps (50Gbps per lane) link modes (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: minimal: Add validation for FW version (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Push minor/subminor fw version check into helper (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: thermal: Provide optimization for QSFP modules number detection (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: hwmon: Provide optimization for QSFP modules number detection (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Extend MGPIR register with new field exposing the number of QSFP modules (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Propagate extack down to register_fib_notifier() (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Register port netdevices into net of core (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Take devlink net instead of init_net (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: PCI: Send EMAD traffic on a separate queue (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Use per-netns netdevice notifier registration (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_flower: Fail in case user specifies multiple mirror actions (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Clear VLAN filters during port initialization (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_buffers: Add the ability to query the CPU port's shared buffer (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Register CPU port with devlink (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_buffers: Prevent changing CPU port's configuration (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add a test case for devlink-trap (Ivan Vecera) [1821646]
+- [tools] selftests: mlxsw: Add test cases for devlink-trap L2 drops (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Add devlink-trap support (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add trap group for layer 2 discards (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: Add layer 2 discard trap IDs (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: reg: Add new trap actions (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: core: Add API to set trap action (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Extend to support Spectrum-3 ASIC (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_flower: Forbid to offload match on reserved TCP flags bits (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_acl: Track rules that forbid egress block bind (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_flower: Forbid to offload mirred redirect on egress (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum_router: Increase scale of IPv6 nexthop groups (Ivan Vecera) [1821646]
+- [netdrv] mlxsw: spectrum: Expose KVD size for Spectrum-2 (Ivan Vecera) [1821646]
+- [netdrv] geneve: change from tx_error to tx_dropped on missing metadata (Jiri Benc) [1843412]
+- [net] mptcp: use untruncated hash in ADD_ADDR HMAC (Florian Westphal) [1840167]
+- [net] mptcp: use rightmost 64 bits in ADD_ADDR HMAC (Florian Westphal) [1840167]
+- [tools] selftests: mptcp: pm: rm the right tmp file (Florian Westphal) [1840167]
+- [net] mptcp: cope better with MP_JOIN failure (Florian Westphal) [1840167]
+- [net] inet_connection_sock: factor out destroy helper. (Florian Westphal) [1840167]
+- [net] mptcp: add new sock flag to deal with join subflows (Florian Westphal) [1840167]
+- [net] mptcp: Initialize map_seq upon subflow establishment (Florian Westphal) [1840167]
+- [net] mptcp: set correct vfs info for subflows (Florian Westphal) [1840167]
+- [net] mptcp: fix uninitialized value access (Florian Westphal) [1840167]
+- [net] mptcp: initialize the data_fin field for mpc packets (Florian Westphal) [1840167]
+- [net] mptcp: fix 'use_ack' option access. (Florian Westphal) [1840167]
+- [net] mptcp: avoid a WARN on bad input. (Florian Westphal) [1840167]
+- [net] mptcp: move option parsing into mptcp_incoming_options() (Florian Westphal) [1840167]
+- [net] mptcp: consolidate synack processing. (Florian Westphal) [1840167]
+- [net] mptcp: replace mptcp_disconnect with a stub (Florian Westphal) [1840167]
+- [net] mptcp: fix race in msk status update (Florian Westphal) [1840167]
+- [net] tcp: mptcp: use mptcp receive buffer space to select rcv window (Florian Westphal) [1840167]
+- [net] mptcp/pm_netlink.c : add check for nla_put_in/6_addr (Florian Westphal) [1840167]
+- [net] mptcp: fix data_fin handing in RX path (Florian Westphal) [1840167]
+- [net] mptcp: drop req socket remote_key* fields (Florian Westphal) [1840167]
+- [net] mptcp: avoid flipping mp_capable field in syn_recv_sock() (Florian Westphal) [1840167]
+- [net] mptcp: handle mptcp listener destruction via rcu (Florian Westphal) [1840167]
+- [net] mptcp: fix 'Attempt to release TCP socket in state' warnings (Florian Westphal) [1840167]
+- [net] mptcp: fix splat when incoming connection is never accepted before exit/close (Florian Westphal) [1840167]
+- [net] mptcp: fix double-unlock in mptcp_poll (Florian Westphal) [1840167]
+- [net] mptcp: add some missing pr_fmt defines (Florian Westphal) [1840167]
+- [net] mptcp: fix "fn parameter not described" warnings (Florian Westphal) [1840167]
+- [net] mptcp: re-check dsn before reading from subflow (Florian Westphal) [1840167]
+- [net] mptcp: subflow: check parent mptcp socket on subflow state change (Florian Westphal) [1840167]
+- [net] mptcp: fix tcp fallback crash (Florian Westphal) [1840167]
+- [tools] selftests:mptcp: fix failure due to whitespace damage (Florian Westphal) [1840167]
+- [tools] selftests: add test-cases for MPTCP MP_JOIN (Florian Westphal) [1840167]
+- [tools] selftests: add PM netlink functional tests (Florian Westphal) [1840167]
+- [net] mptcp: add netlink-based PM (Florian Westphal) [1840167]
+- [net] mptcp: add and use MIB counter infrastructure (Florian Westphal) [1840167]
+- [net] mptcp: allow dumping subflow context to userspace (Florian Westphal) [1840167]
+- [net] mptcp: implement and use MPTCP-level retransmission (Florian Westphal) [1840167]
+- [net] mptcp: rework mptcp_sendmsg_frag to accept optional dfrag (Florian Westphal) [1840167]
+- [net] mptcp: allow partial cleaning of rtx head dfrag (Florian Westphal) [1840167]
+- [net] mptcp: implement memory accounting for mptcp rtx queue (Florian Westphal) [1840167]
+- [net] mptcp: introduce MPTCP retransmission timer (Florian Westphal) [1840167]
+- [net] mptcp: queue data for mptcp level retransmission (Florian Westphal) [1840167]
+- [net] mptcp: update per unacked sequence on pkt reception (Florian Westphal) [1840167]
+- [net] mptcp: Implement path manager interface commands (Florian Westphal) [1840167]
+- [net] mptcp: Add handling of outgoing MP_JOIN requests (Florian Westphal) [1840167]
+- [net] mptcp: Add handling of incoming MP_JOIN requests (Florian Westphal) [1840167]
+- [net] mptcp: Add path manager interface (Florian Westphal) [1840167]
+- [net] mptcp: Add ADD_ADDR handling (Florian Westphal) [1840167]
+- [net] tcp: annotate sk->sk_wmem_queued lockless reads (Florian Westphal) [1840167]
+- [net] mptcp: don't hang in mptcp_sendmsg() after TCP fallback (Florian Westphal) [1840167]
+- [net] mptcp: Remove set but not used variable 'can_ack' (Florian Westphal) [1840167]
+- [net] mptcp: rename fourth ack field (Florian Westphal) [1840167]
+- [net] mptcp: move msk state update to subflow_syn_recv_sock() (Florian Westphal) [1840167]
+- [net] mptcp: drop unneeded checks (Florian Westphal) [1840167]
+- [net] mptcp: create msk early (Florian Westphal) [1840167]
+- [net] mptcp: don't hang before sending 'MP capable with data' (Florian Westphal) [1840167]
+- [net] mptcp: don't grow mptcp socket receive buffer when rcvbuf is locked (Florian Westphal) [1840167]
+- [tools] mptcp: selftests: add rcvbuf set option (Florian Westphal) [1840167]
+- [net] mptcp: always include dack if possible. (Florian Westphal) [1840167]
+- [net] mptcp: Only send DATA_FIN with final mapping (Florian Westphal) [1840167]
+- [net] mptcp: Use per-subflow storage for DATA_FIN sequence number (Florian Westphal) [1840167]
+- [net] mptcp: Check connection state before attempting send (Florian Westphal) [1840167]
+- [net] mptcp: add dummy icsk_sync_mss() (Florian Westphal) [1840167]
+- [net] mptcp: defer work schedule until mptcp lock is released (Florian Westphal) [1840167]
+- [net] mptcp: avoid work queue scheduling if possible (Florian Westphal) [1840167]
+- [net] mptcp: remove mptcp_read_actor (Florian Westphal) [1840167]
+- [net] mptcp: add rmem queue accounting (Florian Westphal) [1840167]
+- [net] mptcp: update mptcp ack sequence from work queue (Florian Westphal) [1840167]
+- [net] mptcp: add work queue skeleton (Florian Westphal) [1840167]
+- [net] mptcp: add and use mptcp_data_ready helper (Florian Westphal) [1840167]
+- [net] xfrm: fix a NULL-ptr deref in xfrm_local_error (Xin Long) [1835208]
+- [net] xfrm: add IPv6 support for espintcp (Sabrina Dubroca) [1446392]
+- [net] xfrm: add support for UDPv6 encapsulation of ESP (Sabrina Dubroca) [1446392]
+- [net] xfrm: ifdef setsockopt(UDP_ENCAP_ESPINUDP/UDP_ENCAP_ESPINUDP_NON_IKE) (Sabrina Dubroca) [1446392]
+- [net] esp: Export esp_output_fill_trailer function (Sabrina Dubroca) [1446392]
+- [net] udp: fix jump label misuse (Sabrina Dubroca) [1446392]
+- [net] udp: implement complete book-keeping for encap_needed (Sabrina Dubroca) [1446392]
+- [net] xfrm: espintcp: save and call old ->sk_destruct (Sabrina Dubroca) [1446392]
+- [net] xfrm: add espintcp (RFC 8229) (Sabrina Dubroca) [1446392]
+- [net] esp4: split esp_output_udp_encap and introduce esp_output_encap (Sabrina Dubroca) [1446392]
+- [net] esp4: prepare esp_input_done2 for non-UDP encapsulation (Sabrina Dubroca) [1446392]
+- [net] xfrm: add route lookup to xfrm4_rcv_encap (Sabrina Dubroca) [1446392]
+- [net] xfrm: introduce xfrm_trans_queue_net (Sabrina Dubroca) [1446392]
+- [net] add queue argument to __skb_wait_for_more_packets and __skb_{, try_}recv_datagram (Sabrina Dubroca) [1446392]
+- [net] use skb_queue_empty_lockless() in busy poll contexts (Sabrina Dubroca) [1446392]
+- [include] net: add skb_queue_empty_lockless() (Sabrina Dubroca) [1446392]
+- [net] add READ_ONCE() annotation in __skb_wait_for_more_packets() (Sabrina Dubroca) [1446392]
+- [net] datagram: remove rendundant 'peeked' argument (Sabrina Dubroca) [1446392]
+- [tools] kvm: selftests: fix rdtsc() for vmx_tsc_adjust_test (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: lapic: Also cancel preemption timer when disarm LAPIC timer (Vitaly Kuznetsov) [1841490]
+- [s390] kvm_host: unify VM_STAT and VCPU_STAT definitions in a single place (Vitaly Kuznetsov) [1841490]
+- [x86] kvm/x86: Remove redundant function implementations (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: VMX preemption timer migration test (Vitaly Kuznetsov) [1841490]
+- [tools] tools arch kvm: Sync kvm headers with the kernel sources (Vitaly Kuznetsov) [1841490]
+- [tools] tools headers uapi: Update tools's copy of kvm.h headers (Vitaly Kuznetsov) [1841490]
+- [tools] tools headers: Sync the various kvm.h header copies (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Fix VMX preemption timer migration (Vitaly Kuznetsov) [1841490]
+- [uapi] x86/kvm/hyper-v: Explicitly align hcall param for kvm_hyperv_exit (Vitaly Kuznetsov) [1841490]
+- [virt] kvm: introduce kvm_read_guest_offset_cached() (Vitaly Kuznetsov) [1841490]
+- [virt] kvm: rename kvm_arch_can_inject_async_page_present() to kvm_arch_can_dequeue_async_page_present() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Replace zero-length array with flexible-array (Vitaly Kuznetsov) [1841490]
+- [virt] revert "kvm: No need to retry for hva_to_pfn_remapped()" (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: implement KVM_GET_NESTED_STATE and KVM_SET_NESTED_STATE (Vitaly Kuznetsov) [1841490]
+- [tools] selftests: kvm: fix smm test on SVM (Vitaly Kuznetsov) [1841490]
+- [tools] selftests: kvm: add a SVM version of state-test (Vitaly Kuznetsov) [1841490]
+- [tools] selftests: kvm: introduce cpu_has_svm() check (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: mmu: pass arbitrary CR0/CR4/EFER to kvm_init_shadow_mmu (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: leave guest mode when clearing EFER.SVME (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: split nested_vmcb_check_controls (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: remove HF_HIF_MASK (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: remove HF_VINTR_MASK (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: synthesize correct EXITINTINFO on vmexit (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: preserve VGIF across VMCB switch (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: extract svm_set_gif (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: remove unnecessary if (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: synchronize VMCB controls updated by the processor on every vmexit (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: restore clobbered INT_CTL fields after clearing VINTR (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: save all control fields in svm->nested (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: remove trailing padding for struct vmcb_control_area (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: pass vmcb_control_area to copy_vmcb_control_area (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: clean up tsc_offset update (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: move MMU setup to nested_prepare_vmcb_control (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: extract preparation of VMCB for nested run (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: extract load_nested_vmcb_control (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: move map argument out of enter_svm_guest_mode (Vitaly Kuznetsov) [1841490]
+- [virt] kvm: check userspace_addr for all memslots (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: always update CR3 in VMCS (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: always update CR3 in VMCB (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: correctly inject INIT vmexits (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: remove exit_required (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: inject exceptions via svm_check_nested_events (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: enable event window in inject_pending_event (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: track manually whether an event has been injected (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: Preserve registers modifications done before nested_svm_vmexit() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Initialize tdp_level during vCPU creation (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: leave ASID aside in copy_vmcb_control_area (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: fix condition for filtering async PF (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: Fix the indentation to match coding style (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: replace "fall through" with "return" to indicate different case (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Take an unsigned 32-bit int for has_emulated_msr()'s index (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Remove superfluous brackets from case statement (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: allow KVM_STATE_NESTED_MTF_PENDING in kvm_state flags (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: simplify is_mmio_spte (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: don't expose MSR_IA32_UMWAIT_CONTROL unconditionally (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: enable X86_FEATURE_WAITPKG in KVM capabilities (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Set mmio_value to '0' if reserved #PF can't be generated (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: only do L1TF workaround on affected processors (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Fix off-by-one error in kvm_vcpu_ioctl_x86_setup_mce (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Migrate the VMX-preemption timer (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Change emulated VMX-preemption timer hrtimer to absolute (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Really make emulated nested preemption timer pinned (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Remove unused 'ops' param from nested_vmx_hardware_setup() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Remove unnecessary V_IRQ unsetting (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Merge svm_enable_vintr into svm_set_vintr (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Handle preemption timer fastpath (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: TSCDEADLINE MSR emulation fastpath (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: introduce kvm_can_use_hv_timer (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Optimize posted-interrupt delivery for timer fastpath (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Introduce more exit_fastpath_completion enum values (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Introduce kvm_vcpu_exit_request() helper (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Print symbolic names of VMX VM-Exit flags in traces (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Introduce generic fastpath handler (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Drop superfluous VMREAD of vmcs02.GUEST_SYSENTER_* (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Truncate writes to vmcs.SYSENTER_EIP/ESP for 32-bit vCPU (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Improve handle_external_interrupt_irqoff inline assembly (Vitaly Kuznetsov) [1841490]
+- [documentation] kvm: documentation: Fix up cpuid page (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Sanity check on gfn before removal (Vitaly Kuznetsov) [1841490]
+- [virt] kvm: No need to retry for hva_to_pfn_remapped() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Force ASYNC_PF_PER_VCPU to be power of two (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Remove unneeded __ASM_SIZE usage with POP instruction (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Add a helper to consolidate root sp allocation (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Drop KVM's hugepage enums in favor of the kernel's enums (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Move max hugepage level to a separate #define (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Tweak PSE hugepage handling to avoid 2M vs 4M conundrum (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Cleanup vcpu->arch.guest_xstate_size (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Tweak handling of failure code for nested VM-Enter failure (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Capture TDP level when updating CPUID (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Move nested EPT out of kvm_x86_ops.get_tdp_level() hook (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Add proper cache tracking for CR0 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Add proper cache tracking for CR4 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Unconditionally validate CR3 during nested transitions (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Save L1 TSC offset in 'struct kvm_vcpu_arch' (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Skip IBPB when temporarily switching between vmcs01 and vmcs02 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Skip IBPB when switching between vmcs01 and vmcs02 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Use accessor to read vmcs.INTR_INFO when handling exception (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: handle wrap around 32-bit address space (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Replace late check_nested_events() hack with more precise fix (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Use vmx_get_rflags() to query RFLAGS in vmx_interrupt_blocked() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Use vmx_interrupt_blocked() directly from vmx_handle_exit() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: WARN on injected+pending exception even in nested case (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: Preserve IRQ/NMI/SMI priority irrespective of exiting behavior (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: Report interrupts as allowed when in L2 and exit-on-interrupt is set (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Prioritize SMI over nested IRQ/NMI (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Preserve IRQ/NMI priority irrespective of exiting behavior (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Split out architectural interrupt/NMI/SMI blocking checks (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Split out architectural interrupt/NMI blocking checks (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: Move SMI vmexit handling to svm_check_nested_events() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: Report NMIs as allowed when in L2 and Exit-on-NMI is set (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Report NMIs as allowed when in L2 and Exit-on-NMI is set (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: replace is_smm checks with kvm_x86_ops.smi_allowed (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Make return for {interrupt_nmi, smi}_allowed() a bool instead of int (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Set KVM_REQ_EVENT if run is canceled with req_immediate_exit set (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Open a window for pending nested VMX preemption timer (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Preserve exception priority irrespective of exiting behavior (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Implement check_nested_events for NMI (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: immediately inject INTR vmexit (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: leave halted state on vmexit (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: introduce nested_run_pending (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Fix pkru save/restore when guest CR4.PKE=0, move it to x86.c (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Disable AVIC before setting V_IRQ (Vitaly Kuznetsov) [1841490]
+- [virt] kvm: Introduce kvm_make_all_cpus_request_except() (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: vmx: pass correct DR6 for GD userspace exit (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86, svm: isolate vcpu->arch.dr6 from vmcb->save.dr6 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: keep DR6 synchronized with vcpu->arch.dr6 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: trap #DB and #BP to userspace if guest debugging is on (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Add KVM_SET_GUEST_DEBUG test (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Fix single-step with KVM_SET_GUEST_DEBUG (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Set RTM for DB_VECTOR too for KVM_EXIT_DEBUG (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: fix DR6 delivery for various cases of #DB injection (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Declare KVM_CAP_SET_GUEST_DEBUG properly (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Fix build for evmcs.h (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Use KVM CPU capabilities to determine CR4 reserved bits (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Explicitly clear RFLAGS.CF and RFLAGS.ZF in VM-Exit RSB path (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: ioapic: Restrict lazy EOI update to edge-triggered interrupts (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Fixes posted interrupt check for IRQs delivery modes (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: fill in kvm_run->debug.arch.dr[67] (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Replace a BUG_ON(1) with BUG() to squash clang warning (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: do not allow VMRUN inside SMM (Vitaly Kuznetsov) [1841490]
+- [virt] kvm: add capability for halt polling (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Store vmcs.EXIT_QUALIFICATION as an unsigned long, not u32 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Drop a redundant call to vmx_get_intr_info() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: move nested-related kvm_x86_ops to a separate struct (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: evmcs: check if nesting is enabled (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: check_nested_events is never NULL (Vitaly Kuznetsov) [1841490]
+- [tools] selftests: kvm/set_memory_region_test: do not check RIP if the guest shuts down (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: avoid infinite loop on NPF from bad address (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: Remove redundant argument to kvm_arch_vcpu_ioctl_run (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nsvm: Check for CR0.CD and CR0.NW on VMRUN of nested guests (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Improve latency for single target IPI fastpath (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Optimize handling of VM-Entry failures in vmx_vcpu_run() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Remove non-functional "support" for CR3 target values (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Avoid an extra memslot lookup in try_async_pf() for L2 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Set @writable to false for non-visible accesses by L2 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Cache vmcs.EXIT_INTR_INFO using arch avail_reg flags (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Cache vmcs.EXIT_QUALIFICATION using arch avail_reg flags (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Drop manual clearing of segment cache on nested VMCS switch (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Reset register cache (available and dirty masks) on VMCS switch (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Invoke ept_save_pdptrs() if and only if PAE paging is enabled (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Rename exit_reason to vm_exit_reason for nested VM-Exit (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Cast exit_reason to u16 to check for nested EXTERNAL_INTERRUPT (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Pull exit_reason from vcpu_vmx in nested_vmx_reflect_vmexit() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Drop a superfluous WARN on reflecting EXTERNAL_INTERRUPT (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Split VM-Exit reflection logic into L0 vs. L1 wants (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: match comment with return type for nested_vmx_exit_reflected (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Move nested VM-Exit tracepoint into nested_vmx_reflect_vmexit() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Move VM-Fail check out of nested_vmx_exit_reflected() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Uninline nested_vmx_reflect_vmexit(), i.e. move it to nested.c (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Move reflection check into nested_vmx_reflect_vmexit() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Use do_machine_check to pass MCE to the host (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Clean cr3/pgd handling in vmx_load_mmu_pgd() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Replace "cr3" with "pgd" in "new cr3/pgd" related code (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Free only the affected contexts when emulating INVEPT (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Don't flush TLB on nested VMX transition (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Skip MMU sync on nested VMX transition when possible (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Add module param to force TLB flush on root reuse (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Add separate override for MMU sync during fast CR3 switch (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Move fast_cr3_switch() side effects to __kvm_mmu_new_cr3() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Don't reload APIC access page if its control is disabled (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Retrieve APIC access page HPA only when necessary (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Reload APIC access page on nested VM-Exit only if necessary (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Selectively use TLB_FLUSH_CURRENT for nested VM-Enter/VM-Exit (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86/mmu: Use KVM_REQ_TLB_FLUSH_CURRENT for MMU specific flushes (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Introduce KVM_REQ_TLB_FLUSH_CURRENT to flush current ASID (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Add helper to handle TLB flushes on nested VM-Enter/VM-Exit (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Rename ->tlb_flush() to ->tlb_flush_all() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Document the ASID logic in svm_flush_tlb() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Introduce vmx_flush_tlb_current() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Move nested_get_vpid02() to vmx/nested.h (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Move vmx_flush_tlb() to vmx.c (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Wire up ->tlb_flush_guest() directly to svm_flush_tlb() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Drop @invalidate_gpa param from kvm_x86_ops' tlb_flush() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Clean up vmx_flush_tlb_gva() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: make Hyper-V PV TLB flush use tlb_flush_guest() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Move "flush guest's TLB" logic to separate kvm_x86_ops hook (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Use vpid_sync_vcpu_addr() to emulate INVVPID with address (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Drop redundant capability checks in low level INVVPID helpers (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Handle INVVPID fallback logic in vpid_sync_vcpu_addr() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Move vpid_sync_vcpu_addr() down a few lines (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Use vpid_sync_context() directly when possible (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Skip global INVVPID fallback if vpid==0 in vpid_sync_context() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Sync SPTEs when injecting page/EPT fault into L1 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: cleanup kvm_inject_emulated_page_fault (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: introduce kvm_mmu_invalidate_gva (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: Disable objtool frame pointer checking for vmenter.S (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: Remove CREATE_IRQCHIP/SET_PIT2 race (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Export kvm_propagate_fault() (as kvm_inject_emulated_page_fault) (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Invalidate all roots when emulating INVVPID without EPT (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Invalidate all EPTP contexts when emulating INVEPT for L1 (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: Validate the EPTP when emulating INVEPT(EXTENT_CONTEXT) (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Flush all EPTP/VPID contexts on remote TLB flush (Vitaly Kuznetsov) [1841490]
+- [tools] selftests: kvm: Add testcase for creating max number of memslots (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Make set_memory_region_test common to all architectures (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Add "zero" testcase to set_memory_region_test (Vitaly Kuznetsov) [1841490]
+- [tools] selftests: kvm: Add vm_get_fd() in kvm_util (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Add "delete" testcase to set_memory_region_test (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: sefltests: Add explicit synchronization to move mem region test (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Add GUEST_ASSERT variants to pass values to host (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Add util to delete memory region (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Use kernel's list instead of homebrewed replacement (Vitaly Kuznetsov) [1841490]
+- [tools] kvm: selftests: Take vcpu pointer instead of id in vm_vcpu_rm() (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: pass through CPUID(0x80000006) (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: x86: Return updated timer current count register from KVM_GET_LAPIC (Vitaly Kuznetsov) [1841490]
+- [virt] kvm: remove redundant assignment to variable r (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Fix __svm_vcpu_run declaration (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Do not setup frame pointer in __svm_vcpu_run (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: Do not mark svm_vcpu_run with STACK_FRAME_NON_STANDARD (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: nvmx: reflect MTF VM-exits if injected by L1 (Vitaly Kuznetsov) [1841490]
+- [kernel] kvm: Check validity of resolved slot when searching memslots (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: vmx: Enable machine check support for 32bit targets (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: move more vmentry code to assembly (Vitaly Kuznetsov) [1841490]
+- [x86] kvm: svm: fix compilation with modular PSP and non-modular KVM (Vitaly Kuznetsov) [1841490]
+- [x86] Increase KVM_MAX_VCPUS to 1024, KVM_MAX_VCPU_ID to 2048 (Eduardo Habkost) [1810811]
+- [scsi] scsi: core: avoid host-wide host_busy counter for scsi_mq (Ewan Milne) [1761928]
+- [gpio] gpio: xgene-sb: set valid IRQ type in to_irq() (Brian Masney) [1802402]
+- [block] rbd: compression_hint option (Ilya Dryomov) [1835925]
+- [include] libceph: support for alloc hint flags (Ilya Dryomov) [1835925]
+- [net] libceph: read_from_replica option (Ilya Dryomov) [1835925]
+- [net] libceph: support for balanced and localized reads (Ilya Dryomov) [1835925]
+- [net] libceph: crush_location infrastructure (Ilya Dryomov) [1835925]
+- [net] libceph: decode CRUSH device/bucket types and names (Ilya Dryomov) [1835925]
+- [net] libceph: add non-asserting rbtree insertion helper (Ilya Dryomov) [1835925]
+- [pci] PCI: pciehp: Fix MSI interrupt race (Myron Stowe) [1779610]
+- [security] ima: Remove __init annotation from ima_pcrread() (Bruno Meneguele) [1843774]
+- [security] ima: Call ima_calc_boot_aggregate() in ima_eventdigest_init() (Bruno Meneguele) [1843774]
+- [security] ima: Directly assign the ima_default_policy pointer to ima_rules (Bruno Meneguele) [1843774]
+- [documentation] powerpc/fadump: sysfs for fadump memory reservation (Diego Domingos) [1804202]
+- [documentation] Documentation/ABI: Mark /sys/kernel/fadump_* sysfs files deprecated (Diego Domingos) [1804202]
+- [documentation] powerpc/powernv: Move core and fadump_release_opalcore under new kobject (Diego Domingos) [1804202]
+- [powerpc] powerpc/fadump: Reorganize /sys/kernel/fadump_* sysfs files (Diego Domingos) [1804202]
+- [fs] sysfs: wrap __compat_only_sysfs_link_entry_to_kobj function to change the symlink name (Diego Domingos) [1804202]
+- [documentation] Documentation/ABI: Add ABI documentation for /sys/kernel/fadump_* (Diego Domingos) [1804202]
+- [hwtracing] intel_th: pci: Add Tiger Lake CPU support (Jiri Olsa) [1483079]
+- [netdrv] e1000e: fix S0ix flows for cable connected case (Ken Cox) [1781385]
+- [netdrv] e1000e: reject unsupported coalescing params (Ken Cox) [1781385]
+- [netdrv] e1000e: Add support for Tiger Lake device (Ken Cox) [1781385]
+- [netdrv] e1000e: Add support for Alder Lake (Ken Cox) [1781385]
+- [netdrv] net: intel: e1000e: fix possible sleep-in-atomic-context bugs in e1000e_get_hw_semaphore() (Ken Cox) [1781385]
+- [netdrv] e1000e: fix missing cpu_to_le64 on buffer_addr (Ken Cox) [1781385]
+- [netdrv] e1000(e): use new helper tcp_v6_gso_csum_prep (Ken Cox) [1781385]
+- [netdrv] e1000e: Revert "e1000e: Make watchdog use delayed work" (Ken Cox) [1781385]
+- [netdrv] e1000e: Use netdev_info instead of pr_info for link messages (Ken Cox) [1781385]
+- [netdrv] net: ethernet: intel: Demote MTU change prints to debug (Ken Cox) [1781385]
+- [netdrv] e1000e: Fix compiler warning when CONFIG_PM_SLEEP is not set (Ken Cox) [1781385]
+- [netdrv] net: ixgbevf: reject unsupported coalescing params (Ken Cox) [1781379]
+- [netdrv] ixgbevf: Remove limit of 10 entries for unicast filter list (Ken Cox) [1781379]
+- [netdrv] net: ixgbe: reject unsupported coalescing params (Ken Cox) [1781378]
+- [netdrv] ixgbe: Use pci_get_dsn() (Ken Cox) [1781378]
+- [netdrv] intel: Replace zero-length array with flexible-array member (Ken Cox) [1781378]
+- [netdrv] ixgbe: Fix calculation of queue with VFs and flow director on interface flap (Ken Cox) [1781378]
+- [netdrv] net: ethernet: intel: Demote MTU change prints to debug (Ken Cox) [1781378]
+- [netdrv] ixgbe: protect TX timestamping from API misuse (Ken Cox) [1781378]
+- [netdrv] ixgbe: Make use of cpumask_local_spread to improve RSS locality (Ken Cox) [1781378]
+- [netdrv] ixgbe: Remove duplicate clear_bit() call (Ken Cox) [1781378]
+- [netdrv] ixgbe: Add UDP segmentation offload support (Ken Cox) [1781378]
+- [x86] x86/resctrl: Fix invalid attempt at removing the default resource group (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Clean up unused function parameter in mkdir path (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Fix a deadlock due to inaccurate reference (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Fix use-after-free due to inaccurate refcount of rdtgroup (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Fix use-after-free when deleting resource groups (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Add task resctrl information display (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Check monitoring static key in the MBM overflow handler (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Do not reconfigure exiting tasks (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Fix potential memory leak (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Fix an imbalance in domain_remove_cpu() (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Fix potential lockdep warning (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Prevent NULL pointer dereference when reading mondata (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Cleanup cbm_ensure_valid() (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Prevent possible overrun during bitmap operations (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Don't stop walking closids when a locksetup group is found (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Use _ASM_BX to avoid ifdeffery (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Remove unused variable (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Remove duplicate MSR_MISC_FEATURE_CONTROL definition (Alexander Beregalov) [1830948]
+- [x86] x86/resctrl: Avoid confusion over the new X86_RESCTRL config (Alexander Beregalov) [1830948]
+- [x86] x86/cache: Rename config option to CONFIG_X86_RESCTRL (Alexander Beregalov) [1830948]
+- [tools] perf flamegraph: Use /bin/bash for report and record scripts (Michael Petlan) [1281843]
+- [tools] perf script: Add flamegraph.py script (Michael Petlan) [1281843]
+- [tools] perf script: Avoid NULL dereference on symbol (Michael Petlan) [1841130]
+- [tools] tools/build: tweak unused value workaround (Michael Petlan) [1841130]
+- [tools] perf stat: Fix no metric header if --per-socket and --metric-only set (Michael Petlan) [1841130]
+- [tools] perf python: Check if clang supports -fno-semantic-interposition (Michael Petlan) [1841130]
+- [tools] perf tools: Support Python 3.8+ in Makefile (Michael Petlan) [1841130]
+- [tools] perf script: Fix invalid read of directory entry after closedir() (Michael Petlan) [1841130]
+- [tools] perf script report: Fix SEGFAULT when using DWARF mode (Michael Petlan) [1841130]
+- [tools] perf script: add -S/--symbols documentation (Michael Petlan) [1841130]
+- [tools] perf pmu-events x86: Use CPU_CLK_UNHALTED.THREAD in Kernel_Utilization metric (Michael Petlan) [1841130]
+- [tools] perf events parser: Add missing Intel CPU events to parser (Michael Petlan) [1841130]
+- [tools] perf script: Allow --symbol to accept hexadecimal addresses (Michael Petlan) [1841130]
+- [tools] perf top: Support hotkey to change sort order (Michael Petlan) [1841130]
+- [tools] perf top: Support --group-sort-idx to change the sort order (Michael Petlan) [1841130]
+- [tools] perf symbols: Fix arm64 gap between kernel start and module end (Michael Petlan) [1841130]
+- [tools] perf build-test: Honour JOBS to override detection of number of cores (Michael Petlan) [1841130]
+- [tools] perf script: Add --show-cgroup-events option (Michael Petlan) [1841130]
+- [tools] perf top: Add --all-cgroups option (Michael Petlan) [1841130]
+- [tools] perf record: Add --all-cgroups option (Michael Petlan) [1841130]
+- [tools] perf record: Support synthesizing cgroup events (Michael Petlan) [1841130]
+- [tools] perf report: Add 'cgroup' sort key (Michael Petlan) [1841130]
+- [tools] perf cgroup: Maintain cgroup hierarchy (Michael Petlan) [1841130]
+- [tools] perf tools: Basic support for CGROUP event (Michael Petlan) [1841130]
+- [tools] perf tools: Add file-handle feature test (Michael Petlan) [1841130]
+- [tools] perf python: Include rwsem.c in the pythong biding (Michael Petlan) [1841130]
+- [tools] tools headers UAPI: Update tools's copy of linux/perf_event.h (Michael Petlan) [1841130]
+- [tools] perf script: Introduce --deltatime option (Michael Petlan) [1841130]
+- [tools] perf: Normalize gcc parameter when generating arch errno table (Michael Petlan) [1841130]
+- [tools] perf parse-events: Add defensive NULL check (Michael Petlan) [1841130]
+- [tools] perf callchain: Update docs regarding kernel/user space unwinding (Michael Petlan) [1841130]
+- [tools] perf cpumap: Fix snprintf overflow check (Michael Petlan) [1841130]
+- [tools] perf test: Test pmu-events aliases (Michael Petlan) [1841130]
+- [tools] perf pmu: Make pmu_uncore_alias_match() public (Michael Petlan) [1841130]
+- [tools] perf pmu: Add is_pmu_core() (Michael Petlan) [1841130]
+- [tools] perf test: Add pmu-events test (Michael Petlan) [1841130]
+- [tools] perf pmu: Refactor pmu_add_cpu_aliases() (Michael Petlan) [1841130]
+- [tools] perf jevents: Support test events folder (Michael Petlan) [1841130]
+- [tools] perf jevents: Add some test events (Michael Petlan) [1841130]
+- [tools] perf tools: Unify a bit the build directory output (Michael Petlan) [1841130]
+- [tools] perf metricgroup: Fix printing event names of metric group with multiple events incase of overlapping events (Michael Petlan) [1841130]
+- [tools] perf stat: Align the output for interval aggregation mode (Michael Petlan) [1841130]
+- [tools] perf report/top TUI: Support hotkeys to let user select any event for sorting (Michael Petlan) [1841130]
+- [tools] perf report: Support a new key to reload the browser (Michael Petlan) [1841130]
+- [tools] perf report: Allow specifying event to be used as sort key in --group output (Michael Petlan) [1841130]
+- [tools] perf report/top TUI: Support hotkey 'a' for annotation of unresolved addresses (Michael Petlan) [1841130]
+- [tools] perf report: Support interactive annotation of code without symbols (Michael Petlan) [1841130]
+- [tools] perf report: Print al_addr when symbol is not found (Michael Petlan) [1841130]
+- [tools] perf symbols: Consolidate symbol fixup issue (Michael Petlan) [1841130]
+- [tools] perf parse-events: Fix 3 use after frees found with clang ASAN (Michael Petlan) [1841130]
+- [tools] perf/tests: Add CET instructions to the new instructions test (Michael Petlan) [1841130]
+- [tools] perf expr: Fix copy/paste mistake (Michael Petlan) [1841130]
+- [tools] perf report: Fix no branch type statistics report issue (Michael Petlan) [1841130]
+- [tools] perf tools: Give synthetic mmap events an inode generation (Michael Petlan) [1841130]
+- [tools] perf test: Print if shell directory isn't present (Michael Petlan) [1841130]
+- [tools] perf record: Fix binding of AIO user space buffers to nodes (Michael Petlan) [1841130]
+- [tools] perf intel-pt: Update intel-pt.txt file with new location of the documentation (Michael Petlan) [1841130]
+- [tools] perf intel-pt: Add Intel PT man page references (Michael Petlan) [1841130]
+- [tools] perf intel-pt: Rename intel-pt.txt and put it in man page format (Michael Petlan) [1841130]
+- [tools] perf doc: Set man page date to last git commit (Michael Petlan) [1841130]
+- [tools] perf cs-etm: Fix unsigned variable comparison to zero (Michael Petlan) [1841130]
+- [tools] perf cs-etm: Optimize copying last branches (Michael Petlan) [1841130]
+- [tools] perf cs-etm: Correct synthesizing instruction samples (Michael Petlan) [1841130]
+- [tools] perf cs-etm: Continuously record last branch (Michael Petlan) [1841130]
+- [tools] perf cs-etm: Swap packets for instruction samples (Michael Petlan) [1841130]
+- [tools] perf map: Use strstarts() to look for Android libraries (Michael Petlan) [1841130]
+- [tools] perf vendor events intel: Add NO_NMI_WATCHDOG metric constraint (Michael Petlan) [1841130]
+- [tools] perf metricgroup: Support metric constraint (Michael Petlan) [1841130]
+- [tools] perf util: Factor out sysctl__nmi_watchdog_enabled() (Michael Petlan) [1841130]
+- [tools] perf metricgroup: Factor out metricgroup__add_metric_weak_group() (Michael Petlan) [1841130]
+- [tools] perf jevents: Support metric constraint (Michael Petlan) [1841130]
+- [tools] perf block-info: Support color ops to print block percents in color (Michael Petlan) [1841130]
+- [tools] perf block-info: Allow selecting which columns to report and its order (Michael Petlan) [1841130]
+- [tools] perf diff: Use __block_info__cmp() to replace block_pair_cmp() (Michael Petlan) [1841130]
+- [tools] perf expr: Make expr__parse() return -1 on error (Michael Petlan) [1841130]
+- [tools] perf expr: Straighten expr__parse()/expr__find_other() interface (Michael Petlan) [1841130]
+- [tools] perf expr: Increase EXPR_MAX_OTHER to support metrics with more than 15 variables (Michael Petlan) [1841130]
+- [tools] perf expr: Move expr lexer to flex (Michael Petlan) [1841130]
+- [tools] perf expr: Add expr.c object (Michael Petlan) [1841130]
+- [tools] perf header: Add check for unexpected use of reserved membrs in event attr (Michael Petlan) [1841130]
+- [tools] perf evsel: Support PERF_SAMPLE_BRANCH_HW_INDEX (Michael Petlan) [1841130]
+- [tools] perf tools: Add hw_idx in struct branch_stack (Michael Petlan) [1841130]
+- [tools] tools headers UAPI: Update tools's copy of linux/perf_event.h (Michael Petlan) [1841130]
+- [tools] tools lib traceevent: Remove extra '\n' in print_event_time() (Michael Petlan) [1841130]
+- [tools] perf annotate: Get rid of annotation->nr_jumps (Michael Petlan) [1841130]
+- [tools] perf llvm: Add debug hint message about missing kernel-devel package (Michael Petlan) [1841130]
+- [tools] perf stat: Show percore counts in per CPU output (Michael Petlan) [1841130]
+- [tools] tools lib api fs: Move cgroupsfs_find_mountpoint() (Michael Petlan) [1841130]
+- [kernel] perf/core: fix parent pid/tid in task exit events (Michael Petlan) [1841130]
+- [x86] perf/x86/cstate: Add Jasper Lake CPU support (Michael Petlan) [1841130]
+- [kernel] perf/core: Disable page faults when getting phys address (Michael Petlan) [1841130]
+- [x86] perf/x86/intel/uncore: Add Ice Lake server uncore support (Michael Petlan) [1841130]
+- [kernel] perf/cgroup: Correct indirection in perf_less_group_idx() (Michael Petlan) [1841130]
+- [kernel] perf/core: Fix event cgroup tracking (Michael Petlan) [1841130]
+- [init] perf/core: Add PERF_SAMPLE_CGROUP feature (Michael Petlan) [1841130]
+- [kernel] perf/core: Add PERF_RECORD_CGROUP event (Michael Petlan) [1841130]
+- [x86] x86 user stack frame reads: switch to explicit __get_user() (Michael Petlan) [1841130]
+- [x86] perf/x86/intel/uncore: Factor out __snr_uncore_mmio_init_box (Michael Petlan) [1841130]
+- [x86] perf/x86/intel/uncore: Add box_offsets for free-running counters (Michael Petlan) [1841130]
+- [kernel] perf/core: Fix reversed NULL check in perf_event_groups_less() (Michael Petlan) [1841130]
+- [kernel] perf/core: Fix endless multiplex timer (Michael Petlan) [1841130]
+- [kernel] perf/cgroup: Order events in RB tree by cgroup id (Michael Petlan) [1841130]
+- [kernel] perf/cgroup: Grow per perf_cpu_context heap storage (Michael Petlan) [1841130]
+- [kernel] perf/core: Add per perf_cpu_context min_heap storage (Michael Petlan) [1841130]
+- [kernel] perf/core: Use min_heap in visit_groups_merge() (Michael Petlan) [1841130]
+- [lib] lib: Introduce generic min-heap (Michael Petlan) [1841130]
+- [kernel] perf/cgroup: Reorder perf_cgroup_connect() (Michael Petlan) [1841130]
+- [kernel] perf/core: Remove 'struct sched_in_data' (Michael Petlan) [1841130]
+- [kernel] perf/core: Unify {pinned, flexible}_sched_in() (Michael Petlan) [1841130]
+- [x86] perf/x86: Add Intel Tiger Lake uncore support (Michael Petlan) [1841130]
+- [x86] perf/x86/intel: Output LBR TOS information correctly (Michael Petlan) [1841130]
+- [powerpc] perf/core: Add new branch sample type for HW index of raw branch records (Michael Petlan) [1841130]
+- [x86] perf/x86/intel: Avoid unnecessary PEBS_ENABLE MSR access in PMI (Michael Petlan) [1841130]
+- [x86] x86/cpu: Add Jasper Lake to Intel family (Michael Petlan) [1841130]
+- [fs] pstore/ram: Run without kernel crash dump region (Desnes Augusto Nunes do Rosario) [1824906]
+- [fs] pstore/ram: Avoid NULL deref in ftrace merging failure path (Desnes Augusto Nunes do Rosario) [1824906]
+- [fs] pstore: Convert buf_lock to semaphore (Desnes Augusto Nunes do Rosario) [1824906]
+- [fs] pstore/ram: Correctly calculate usable PRZ bytes (Desnes Augusto Nunes do Rosario) [1824906]
+- [drm] memremap: add an owner field to struct dev_pagemap (Don Dutile) [1816441]
+- [mm] mm: devmap: refactor 1-based refcounting for ZONE_DEVICE pages (Don Dutile) [1816441]
+- [mm] mm/swap: fix release_pages() when releasing devmap pages (Don Dutile) [1816441]
+- [mm] mm: revert remove MEMORY_DEVICE_PUBLIC support in swap.c (Don Dutile) [1816441]
+- [nvdimm] mm: Cleanup __put_devmap_managed_page() vs ->page_free() (Don Dutile) [1816441]
+- [documentation] hv_netvsc: Update document for XDP support (Mohammed Gamal) [1815497]
+- [netdrv] hv_netvsc: Fix XDP refcnt for synthetic and VF NICs (Mohammed Gamal) [1815497]
+- [netdrv] hv_netvsc: Add XDP support (Mohammed Gamal) [1815497]
+- [powerpc] kvm: ppc: book3s hv: Remove user-triggerable WARN_ON (Laurent Vivier) [1784050]
+- [powerpc] kvm: ppc: book3s hv: Close race with page faults around memslot flushes (Laurent Vivier) [1784050]
+- [powerpc] pseries/svm: Allow IOMMU to work in SVM (Michael Roth) [1730194]
+- [powerpc] pseries/iommu: Separate FW_FEATURE_MULTITCE to put/stuff features (Michael Roth) [1730194]
+- [powerpc] pseries: Allow not having ibm, hypertas-functions::hcall-multi-tce for DDW (Michael Roth) [1730194]
+- [powerpc] revert "powerpc/pseries/iommu: Don't use dma_iommu_ops on secure guests" (Michael Roth) [1730194]
+- [powerpc] ultravisor: Add PPC_UV config option (Michael Roth) [1730194]
+- [mm] ksm: Export ksm_madvise() (Michael Roth) [1730194]
+- [powerpc] configs: Enable secure guest support in pseries and ppc64 defconfigs (Michael Roth) [1730194]
+- [powerpc] prom_init: Undo relocation before entering secure mode (Michael Roth) [1730194]
+- [powerpc] pseries/svm: Force SWIOTLB for secure guests (Michael Roth) [1730194]
+- [powerpc] pseries/iommu: Don't use dma_iommu_ops on secure guests (Michael Roth) [1730194]
+- [powerpc] pseries/svm: Disable doorbells in SVM guests (Michael Roth) [1730194]
+- [powerpc] pseries/svm: Export guest SVM status to user space via sysfs (Michael Roth) [1730194]
+- [powerpc] pseries/svm: Use shared memory for Debug Trace Log (DTL) (Michael Roth) [1730194]
+- [powerpc] prom_init: Pass the "os-term" message to hypervisor (Michael Roth) [1730194]
+- [powerpc] Add support for adding an ESM blob to the zImage wrapper (Michael Roth) [1730194]
+- [powerpc] pseries: Introduce option to build secure virtual machines (Michael Roth) [1730194]
+- [s390] mm: Remove sev_active() function (Michael Roth) [1730194]
+- [kernel] fs/core/vmcore: Move sev_active() reference to x86 arch code (Michael Roth) [1730194]
+- [kernel] x86, s390/mm: Move sme_active() and sme_me_mask to x86-specific header (Michael Roth) [1730194]
+- [kernel] dma-mapping: Remove dma_check_mask() (Michael Roth) [1730194]
+- [kernel] swiotlb: Remove call to sme_active() (Michael Roth) [1730194]
+- [x86] s390: Move ARCH_HAS_MEM_ENCRYPT definition to arch/Kconfig (Michael Roth) [1730194]
+- [powerpc] xmon: don't access ASDR in VMs (Michael Roth) [1730194]
+- [powerpc] xmon: Fix compile error in print_insn* functions (Michael Roth) [1730194]
+- [mm] memremap: provide a not device managed memremap_pages (Michael Roth) [1730194]
+- [mm] memremap: don't use a separate devm action for devmap_managed_enable_get (Michael Roth) [1730194]
+- [mm] memremap: remove the dev field in struct dev_pagemap (Michael Roth) [1730194]
+- [kernel] resource: add a not device managed request_free_mem_region variant (Michael Roth) [1730194]
+- [mm] turn migrate_vma upside down (Michael Roth) [1730194]
+- [kernel] mm: simplify ZONE_DEVICE page private data (Michael Roth) [1730194]
+- [kernel] mm: remove hmm_devmem_add (Michael Roth) [1730194]
+- [mm] remove hmm_vma_alloc_locked_page (Michael Roth) [1730194]
+- [dax] device-dax: use the dev_pagemap internal refcount (Michael Roth) [1730194]
+- [mm] export alloc_pages_vma (Michael Roth) [1730194]
+- [netdrv] net/mlx5: Kconfig: Fix spelling typo (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5e: Introduce kconfig var for TC support (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5e: Move TC-specific code from en_main.c to en_tc.c (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5e: Extract neigh-specific code from en_rep.c to rep/neigh.c (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5e: Extract TC-specific code from en_rep.c to rep/tc.c (Alaa Hleihel) [1843359]
+- [infiniband] net/mlx5: Refactor imm_inval_pkey field in cqe struct (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5e: Take DCBNL-related definitions into dedicated files (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5: E-Switch: Move eswitch chains to a new directory (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5e: remove duplicated check chain_index in mlx5e_rep_setup_ft_cb (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5e: add mlx5e_rep_indr_setup_ft_cb support (Alaa Hleihel) [1843359]
+- [netdrv] net/mlx5e: refactor indr setup block (Alaa Hleihel) [1843359]
+- [infiniband] IB/mlx5: Fix DEVX support for MLX5_CMD_OP_INIT2INIT_QP command (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: Remove warning "devices are not on same switch HW" (Alaa Hleihel) [1842258]
+- [infiniband] RDMA/mlx5: Add init2init as a modify command (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: replace EINVAL in mlx5e_flower_parse_meta() (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: Fix MLX5_TC_CT dependencies (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: Properly set default values when disabling adaptive moderation (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: Fix stats update for matchall classifier (Alaa Hleihel) [1842258]
+- [netdrv] net: sched: expose HW stats types per action used by drivers (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: en_tc: Fix cast to restricted __be32 warning (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: en_tc: Fix incorrect type in initializer warnings (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: Allow partial data mask for tunnel options (Alaa Hleihel) [1842258]
+- [include] net/mlx5: IPSec: Fix incorrect type for spi (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: Accel: fpga tls fix cast to __be64 and incorrect argument types (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: cmd: Fix memset with byte count warning (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: DR: Fix incorrect type in return expression (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: DR: Fix cast to restricted __be32 (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: DR: Fix incorrect type in argument (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: IPoIB, Drop multicast packets that this interface sent (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: IPoIB, Enable loopback packets for IPoIB interfaces (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: Fix error flow in case of function_setup failure (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: CT: Correctly get flow rule (Alaa Hleihel) [1842258 1840408]
+- [netdrv] net/mlx5e: Update netdev txq on completions during closure (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: Annotate mutex destroy for root ns (Alaa Hleihel) [1842258 1840408]
+- [netdrv] net/mlx5: Don't maintain a case of del_sw_func being null (Alaa Hleihel) [1842258 1840408]
+- [netdrv] net/mlx5: Fix cleaning unmanaged flow tables (Alaa Hleihel) [1842258 1840408]
+- [netdrv] net/mlx5: Fix memory leak in mlx5_events_init (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: Fix inner tirs handling (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: kTLS, Destroy key object after destroying the TIS (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5e: Fix allowed tc redirect merged eswitch offload cases (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: Avoid processing commands before cmdif is ready (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: Fix a race when moving command interface to events mode (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: Add command entry handling completion (Alaa Hleihel) [1842258]
+- [infiniband] RDMA/mlx5: Fix NULL pointer dereference in destroy_prefetch_work (Alaa Hleihel) [1842258]
+- [netdrv] net/mlx5: Fix crash upon suspend/resume (Alaa Hleihel) [1842258 1841973]
+- [netdrv] net/mlx5e: Fix devlink port netdev unregistration sequence (Alaa Hleihel) [1842258 1790226]
+- [netdrv] net/mlx5e: Fix devlink port register sequence (Alaa Hleihel) [1842258 1790226]
+- [netdrv] net/mlx5e: Use devlink virtual flavour for VF devlink port (Alaa Hleihel) [1842258 1790226]
+- [netdrv] net/mlx5e: Add support for devlink-port in non-representors mode (Alaa Hleihel) [1842258 1790226]
+- [netdrv] net/mlx5e: Rename representor get devlink port function (Alaa Hleihel) [1842258 1790226]
+- [fs] nfsd4: add filename to states output ("J. Bruce Fields") [1475182]
+- [fs] nfsd4: stid display should preserve on-the-wire byte order ("J. Bruce Fields") [1475182]
+- [fs] nfsd4: common stateid-printing code ("J. Bruce Fields") [1475182]
+- [fs] nfsd: remove read permission bit for ctl sysctl ("J. Bruce Fields") [1475182]
+- [fs] nfsd: "\s" should be "s" ("J. Bruce Fields") [1475182]
+- [fs] nfsd: initialize i_private before d_add ("J. Bruce Fields") [1475182]
+- [fs] nfsd: use i_wrlock instead of rcu for nfsdfs i_private ("J. Bruce Fields") [1475182]
+- [fs] nfsd: fix dentry leak upon mkdir failure ("J. Bruce Fields") [1475182]
+- [fs] nfsd: Make __get_nfsdfs_client() static ("J. Bruce Fields") [1475182]
+- [fs] nfsd: Make two functions static ("J. Bruce Fields") [1475182]
+- [fs] nfsd: decode implementation id ("J. Bruce Fields") [1475182]
+- [fs] nfsd: use 64-bit seconds fields in nfsd v4 code ("J. Bruce Fields") [1475182]
+- [fs] nfsd: create xdr_netobj_dup helper ("J. Bruce Fields") [1475182]
+- [fs] nfsd: allow forced expiration of NFSv4 clients ("J. Bruce Fields") [1475182]
+- [fs] nfsd: create get_nfsdfs_clp helper ("J. Bruce Fields") [1475182]
+- [fs] nfsd4: show layout stateids ("J. Bruce Fields") [1475182]
+- [fs] nfsd: show lock and deleg stateids ("J. Bruce Fields") [1475182]
+- [fs] nfsd4: add file to display list of client's opens ("J. Bruce Fields") [1475182]
+- [fs] nfsd: add more information to client info file ("J. Bruce Fields") [1475182]
+- [include] nfsd: escape high characters in binary data ("J. Bruce Fields") [1475182]
+- [fs] nfsd: copy client's address including port number to cl_addr ("J. Bruce Fields") [1475182]
+- [fs] nfsd4: add a client info file ("J. Bruce Fields") [1475182]
+- [fs] nfsd: make client/ directory names small ints ("J. Bruce Fields") [1475182]
+- [fs] nfsd: add nfsd/clients directory ("J. Bruce Fields") [1475182]
+- [fs] nfsd4: use reference count to free client ("J. Bruce Fields") [1475182]
+- [fs] nfsd: rename cl_refcount ("J. Bruce Fields") [1475182]
+- [fs] nfsd: persist nfsd filesystem across mounts ("J. Bruce Fields") [1475182]
+
+* Tue Jun 09 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-213.el8]
+- [wireless] iwlwifi: pcie: handle QuZ configs with killer NICs as well (Jarod Wilson) [1844129 1842382]
+- [net] mac80211: add ieee80211_is_any_nullfunc() (Jarod Wilson) [1844129]
+- [net] mac80211: sta_info: Add lockdep condition for RCU list usage (Jarod Wilson) [1844129]
+- [net] mac80211: fix channel switch trigger from unknown mesh peer (Jarod Wilson) [1844129]
+- [wireless] rtw88: avoid unused function warnings (Jarod Wilson) [1844129]
+- [wireless] brcmfmac: add stub for monitor interface xmit (Jarod Wilson) [1844129]
+- [wireless] iwlwifi: actually check allocated conf_tlv pointer (Jarod Wilson) [1844129]
+- [wireless] iwlwifi: fix WGDS check when WRDS is disabled (Jarod Wilson) [1844129]
+- [wireless] iwlwifi: mvm: fix inactive TID removal return value usage (Jarod Wilson) [1844129]
+- [wireless] iwlwifi: mvm: Do not declare support for ACK Enabled Aggregation (Jarod Wilson) [1844129]
+- [wireless] iwlwifi: mvm: limit maximum queue appropriately (Jarod Wilson) [1844129]
+- [wireless] iwlwifi: pcie: indicate correct RB size to device (Jarod Wilson) [1844129]
+- [wireless] iwlwifi: mvm: beacon statistics shouldn't go backwards (Jarod Wilson) [1844129]
+- [wireless] iwlwifi: pcie: actually release queue memory in TVQM (Jarod Wilson) [1844129]
+- [wireless] mac80211: populate debugfs only after cfg80211 init (Jarod Wilson) [1844129]
+- [net] mac80211: fix race in ieee80211_register_hw() (Jarod Wilson) [1844129]
+- [net] nl80211: fix NL80211_ATTR_FTM_RESPONDER policy (Jarod Wilson) [1844129]
+- [powerpc] powerpc/fadump: Account for memory_limit while reserving memory (Steve Best) [1840646]
+- [mm] mm: make deferred init's max threads arch-specific (David Hildenbrand) [1818764]
+- [mm] mm: parallelize deferred_init_memmap() (David Hildenbrand) [1818764]
+- [mm] mm: don't track number of pages during deferred initialization (David Hildenbrand) [1818764]
+- [kernel] padata: add basic support for multithreaded jobs (David Hildenbrand) [1818764]
+- [kernel] padata: allocate work structures for parallel jobs from a pool (David Hildenbrand) [1818764]
+- [init] padata: initialize earlier (David Hildenbrand) [1818764]
+- [kernel] padata: remove exit routine (David Hildenbrand) [1818764]
+- [documentation] padata: update documentation (David Hildenbrand) [1818764]
+- [mm] mm: call cond_resched() from deferred_init_memmap() (David Hildenbrand) [1818764]
+- [mm] mm: initialize deferred pages with interrupts enabled (David Hildenbrand) [1818764]
+- [mm] mm/pagealloc.c: call touch_nmi_watchdog() on max order boundaries in deferred init (David Hildenbrand) [1818764]
+- [mm] mm/page_alloc: fix watchdog soft lockups during set_zone_contiguous() (David Hildenbrand) [1818764]
+- [mm] mm/page_alloc.c: fix regression with deferred struct page init (David Hildenbrand) [1818764]
+- [mm] mm: initialize MAX_ORDER_NR_PAGES at a time instead of doing larger sections (David Hildenbrand) [1818764]
+- [mm] mm: implement new zone specific memblock iterator (David Hildenbrand) [1818764]
+- [mm] mm: drop meminit_pfn_in_nid as it is redundant (David Hildenbrand) [1818764]
+- [kernel] audit: add subj creds to NETFILTER_CFG record to (Richard Guy Briggs) [1478533]
+- [kernel] audit: make symbol 'audit_nfcfgs' static (Richard Guy Briggs) [1478533]
+- [net] netfilter: add audit table unregister actions (Richard Guy Briggs) [1478533]
+- [net] audit: tidy and extend netfilter_cfg x_tables (Richard Guy Briggs) [1478533]
+- [x86] x86/efi: Allocate e820 buffer before calling efi_exit_boot_service (Lenny Szubowicz) [1824005]
+- [mm] hugetlb_cgroup: fix possible illegal access to memory (Joel Savitz) [1835398]
+- [kvm] KVM: s390: Remove false WARN_ON_ONCE for the PQAP instruction (Claudio Imbrenda) [1836184]
+- [sound] ASoC: Intel: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [thermal] thermal: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [powercap] powercap/intel_rapl: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [platform] platform/x86: Convert to new CPU match macros (Prarit Bhargava) [1841649]
+- [pci] PCI: intel-mid: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [mmc] mmc: sdhci-acpi: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [idle] intel_idle: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [extcon] extcon: axp288: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [edac] EDAC: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [acpi] ACPI: Convert to new X86 CPU match macros (Prarit Bhargava) [1841649]
+- [x86] x86/platform: Convert to new CPU match macros (Prarit Bhargava) [1841649]
+- [x86] x86/kernel: Convert to new CPU match macros (Prarit Bhargava) [1841649]
+- [x86] x86/perf/events: Convert to new CPU match macros (Prarit Bhargava) [1841649]
+- [x86] x86/cpu: Add consistent CPU match macros (Prarit Bhargava) [1841649]
+- [fs] fix autofs regression caused by follow_managed() changes (Miklos Szeredi) [1784857]
+- [fs] fs/namei.c: fix missing barriers when checking positivity (Miklos Szeredi) [1784857]
+- [fs] fix dget_parent() fastpath race (Miklos Szeredi) [1784857]
+- [fs] new helper: lookup_positive_unlocked() (Miklos Szeredi) [1784857]
+- [fs] fs/namei.c: pull positivity check into follow_managed() (Miklos Szeredi) [1784857]
+- [mm] x86/kasan: Fix boot with 5-level paging and KASAN (Baoquan He) [1838418]
+- [netdrv] bnxt_en: Fix VLAN acceleration handling in bnxt_fix_features() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Return error when allocating zero size context memory (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Improve AER slot reset (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Reduce BNXT_MSIX_VEC_MAX value to supported CQs per PF (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Fix VF anti-spoof filter setup (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Fix "fw.mgmt" and "fw.nsci" info via devlink info_get cb (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add partno to devlink info_get cb (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Read partno and serialno of the board from VPD (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add fw.mgmt.api version to devlink info_get cb (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Reset rings if ring reservation fails during open() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Free context memory after disabling PCI in probe error path (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Return error if bnxt_alloc_ctx_mem() fails (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: fix memory leaks in bnxt_dcbnl_ieee_getets() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Fix Priority Bytes and Packets counters in ethtool -S (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Call devlink_port_type_clear() in remove() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Return -EAGAIN if fw command returns BUSY (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Modify some bnxt_hwrm_*_free() functions to void (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Remove unnecessary assignment of return code (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Clear DCB settings after firmware reset (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Process the NQ under NAPI continuous polling (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Simplify __bnxt_poll_cqs_done() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Handle all NQ notifications in bnxt_poll_p5() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Use pci_get_dsn() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt: reject unsupported coalescing params (Jonathan Toppins) [1790621]
+- [netdrv] net/broadcom: Clean broadcom code from driver versions (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: fix error handling when flashing from file (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: reinitialize IRQs when MTU is modified (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: add newline to netdev_*() format strings (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Issue PCIe FLR in kdump kernel to cleanup pending DMAs (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Improve device shutdown method (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add support for devlink info command (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Rename switch_id to dsn (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add support to update progress of flash update (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Move devlink_register before registering netdev (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Register devlink irrespective of firmware spec version (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Refactor bnxt_dl_register() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Disable workaround for lost interrupts on 575XX B0 and newer chips (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Periodically check and remove aged-out ntuple filters (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Do not accept fragments for aRFS flow steering (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Support UDP RSS hashing on 575XX chips (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Improve bnxt_probe_phy() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Improve link up detection (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Call recovery done after reset is successfully done (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Remove unnecessary NULL checks for fw_health (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add support for flashing the device via devlink (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Allow PHY settings on multi-function or NPAR PFs if allowed by FW (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add async. event logic for PHY configuration changes (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Refactor the initialization of the ethtool link settings (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Skip disabling autoneg before PHY loopback when appropriate (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Assign more RSS context resources to the VFs (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Initialize context memory to the value specified by firmware (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add chip IDs for 57452 and 57454 chips (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Report health status update after reset is done (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Set MASTER flag during driver registration (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Update firmware interface spec to 1.10.1.12 (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Fix array overrun in bnxt_fill_l2_rewrite_fields() (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add support for NAT(L3/L4 rewrite) (Jonathan Toppins) [1790621]
+- [netdrv] bnxt_en: Add support for L2 rewrite (Jonathan Toppins) [1790621]
+- [netdrv] net/mlx5: E-switch, Protect eswitch mode changes (Alaa Hleihel) [1835595 1663246]
+- [netdrv] net/mlx5: E-switch, Extend eswitch enable to handle num_vfs change (Alaa Hleihel) [1835595 1663246]
+- [netdrv] net/mlx5: Split eswitch mode check to different helper function (Alaa Hleihel) [1835595 1663246]
+- [netdrv] net/mlx5: Simplify mlx5_unload_one() and its callers (Alaa Hleihel) [1835595 1663246]
+- [netdrv] net/mlx5: Simplify mlx5_register_device to return void (Alaa Hleihel) [1835595 1663246]
+- [netdrv] net/mlx5: Avoid deriving mlx5_core_dev second time (Alaa Hleihel) [1835595 1663246]
+- [netdrv] net/mlx5: E-switch, Annotate esw state_lock mutex destroy (Alaa Hleihel) [1835595 1663246]
+- [netdrv] net/mlx5: E-switch, Annotate termtbl_mutex mutex destroy (Alaa Hleihel) [1835595 1663246]
+- [netdrv] net/mlx5e: CT: Fix offload with CT action after CT NAT action (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: Fix missing pedit action after ct clear action (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: CT: remove set but not used variable 'unnew' (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: CT: Fix insert rules when TC_CT config isn't enabled (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: Fix actions_match_supported() return (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: CT: Avoid false warning about rule may be used uninitialized (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-Switch, Use correct type for chain, prio and level values (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-switch, Fix printing wrong error value (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: Fix rejecting all egress rules not on vlan (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-Switch: Fix using fwd and modify when firmware doesn't support it (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: Add missing inline to stub esw_add_restore_rule (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-Switch, Enable restore table only if reg_c1 is supported (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-Switch, free flow_group_in after creating the restore table (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-switch, Fix mutex init order (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: CT: Change idr to xarray to protect parallel tuple id allocation (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: CT: Use rhashtable's ct entries instead of a separate list (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: CT: Fix stack usage compiler warning (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: CT: Support clear action (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5e: CT: Handle misses after executing CT action (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5e: CT: Offload established flows (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5e: CT: Introduce connection tracking (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5: E-Switch, Support getting chain mapping (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5: E-Switch, Add support for offloading rules with no in_port (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5: E-Switch, Introduce global tables (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5e: en_rep: Create uplink rep root table after eswitch offloads table (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5: E-Switch, Enable reg c1 loopback when possible (Alaa Hleihel) [1790219 1663246]
+- [netdrv] net/mlx5e: Restore tunnel metadata on miss (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5: E-Switch, Get reg_c1 value on miss (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5e: Support inner header rewrite with goto action (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5e: Disallow inserting vxlan/vlan egress rules without decap/pop (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5e: Move tc tunnel parsing logic with the rest at tc_tun module (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5e: Allow re-allocating mod header actions (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5: E-Switch, Restore chain id on miss (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5e: Rx, Split rep rx mpwqe handler from nic (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5: E-Switch, Mark miss packets with new chain id mapping (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5: E-Switch, Get reg_c0 value on CQE (Alaa Hleihel) [1790219 1790218 1663246]
+- [infiniband] net/mlx5: E-Switch, Move source port on reg_c0 to the upper 16 bits (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5: Introduce mapping infra for mapping unique ids to data (Alaa Hleihel) [1790219 1790218 1663246]
+- [netdrv] net/mlx5e: Add devlink fdb_large_groups parameter (Alaa Hleihel) [1790203 1663246]
+- [netdrv] net/mlx5: Change the name of steering mode param id (Alaa Hleihel) [1790203 1663246]
+- [netdrv] net/mlx5e: Fix an IS_ERR() vs NULL check (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: Verify goto chain offload support (Alaa Hleihel) [1663246]
+- [include] net/mlx5: HW bit for goto chain offload support (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: Remove redundant comment about goto slow path (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: Reduce number of arguments in slow path handling (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: Use NL_SET_ERR_MSG_MOD() extack for errors (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-Switch, Allow goto earlier chain if FW supports it (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5e: Eswitch, Use per vport tables for mirroring (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: make the symbol 'ESW_POOLS' static (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-Switch, Increase number of chains and priorities (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: E-Switch, Refactor chains and priorities (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: ft: Check prio and chain sanity for ft offload (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: ft: Use getter function to get ft chain (Alaa Hleihel) [1663246]
+- [netdrv] net/mlx5: TC: Offload flow table rules (Alaa Hleihel) [1663246]
+
+* Sun Jun 07 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-212.el8]
+- [net] neigh: fix ARP retransmit timer guard (Hangbin Liu) [1767282]
+- [net] xfrm: fix a warning in xfrm_policy_insert_list (Xin Long) [1820956]
+- [net] netfilter: ipset: Fix subcounter update skip (Phil Sutter) [1834881]
+- [netdrv] macvlan: return correct error value (Matteo Croce) [1806146]
+- [net] core: properly remove skb from list (Ivan Vecera) [1839657]
+- [tools] selftests: fix flower parent qdisc (Ivan Vecera) [1824071]
+- [net] sch_choke: Remove classid from choke_skb_cb. (Ivan Vecera) [1824071]
+- [net] sched: choke: Remove unused inline function choke_set_classid (Ivan Vecera) [1824071]
+- [net] schedule: add action gate offloading (Ivan Vecera) [1824071]
+- [net] qos: introduce a gate control flow action (Ivan Vecera) [1824071]
+- [net] sched: fallback to qdisc noqueue if default qdisc setup fail (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: tc_actions.sh: add matchall mirror test (Ivan Vecera) [1824071]
+- [net] sched: report ndo_setup_tc failures via extack (Ivan Vecera) [1824071]
+- [net] sched : Remove unnecessary cast in kfree (Ivan Vecera) [1824071]
+- [tools] selftests: tc-testing: Add a TDC test for pedit munge ip6 dsfield (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: pedit_dsfield: Add pedit munge ip6 dsfield (Ivan Vecera) [1824071]
+- [net] sched: act_ct: update nf_conn_acct for act_ct SW offload in flowtable (Ivan Vecera) [1824071]
+- [net] net_sched: gen_estimator: extend packet counter to 64bit (Ivan Vecera) [1824071]
+- [net] flow_offload: skip hw stats check for FLOW_ACTION_HW_STATS_DONT_CARE (Ivan Vecera) [1824071]
+- [net] net_sched: sch_skbprio: add message validation to skbprio_change() (Ivan Vecera) [1824071]
+- [net] net_sched: fix tcm_parent in tc filter dump (Ivan Vecera) [1824071]
+- [net] sch_sfq: validate silly quantum values (Ivan Vecera) [1824071]
+- [net] sch_choke: avoid potential panic in choke_reset() (Ivan Vecera) [1824071]
+- [net] fq_codel: fix TCA_FQ_CODEL_DROP_BATCH_SIZE sanity checks (Ivan Vecera) [1824071]
+- [net] sched: etf: do not assume all sockets are full blown (Ivan Vecera) [1824071]
+- [tools] tc-testing: remove duplicate code in tdc.py (Ivan Vecera) [1824071]
+- [net] sched: Fix setting last executed chain on skb extension (Ivan Vecera) [1824071]
+- [net] net_sched: fix a missing refcnt in tcindex_init() (Ivan Vecera) [1824071]
+- [net] net_sched: add a temporary refcnt for struct tcindex_data (Ivan Vecera) [1824071]
+- [net] sched: expose HW stats types per action used by drivers (Ivan Vecera) [1824071]
+- [net] introduce nla_put_bitfield32() helper and use it (Ivan Vecera) [1824071]
+- [tools] selftests: skbedit_priority: Test counters at the skbedit rule (Ivan Vecera) [1824071]
+- [net] sched: act_pedit: Implement stats_update callback (Ivan Vecera) [1824071]
+- [net] sched: act_skbedit: Implement stats_update callback (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: Add a forwarding test for pedit munge dsfield (Ivan Vecera) [1824071]
+- [net] flow_offload.h: Fix a comment at flow_action_entry.mangle (Ivan Vecera) [1824071]
+- [net] Fix CONFIG_NET_CLS_ACT=n and CONFIG_NFT_FWD_NETDEV={y, m} build (Ivan Vecera) [1824071]
+- [net] netfilter: nft_fwd_netdev: allow to redirect to ifb via ingress (Ivan Vecera) [1824071]
+- [net] cbs: Fix software cbs to consider packet sending time (Ivan Vecera) [1824071]
+- [include] taprio: do not use BIT() in TCA_TAPRIO_ATTR_FLAG_* definitions (Ivan Vecera) [1824071]
+- [net] cls_flower: Add extack support for flags key (Ivan Vecera) [1824071]
+- [net] cls_flower: Add extack support for src and dst port range options (Ivan Vecera) [1824071]
+- [net] cls_flower: Add extack support for mpls options (Ivan Vecera) [1824071]
+- [include] net: sched: refine extack messages in tcf_change_indev (Ivan Vecera) [1824071]
+- [net] sched: rename more stats_types (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: Add an skbedit priority selftest (Ivan Vecera) [1824071]
+- [net] tc_skbedit: Make the skbedit priority offloadable (Ivan Vecera) [1824071]
+- [include] tc_skbedit: Factor a helper out of is_tcf_skbedit_{mark, ptype}() (Ivan Vecera) [1824071]
+- [include] net: sched: Do not assume RTNL is held in tunnel key action helpers (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Fix leak of ct zone template on replace (Ivan Vecera) [1824071]
+- [net] net_sched: sch_fq: enable use of hrtimer slack (Ivan Vecera) [1824071]
+- [net] net_sched: do not reprogram a timer about to expire (Ivan Vecera) [1824071]
+- [net] net_sched: add qdisc_watchdog_schedule_range_ns() (Ivan Vecera) [1824071]
+- [net] rename flow_action_hw_stats_types* -> flow_action_hw_stats* (Ivan Vecera) [1824071]
+- [net] net_sched: cls_route: remove the right filter from hashtable (Ivan Vecera) [1824071]
+- [tools] selftests: qdiscs: RED: Add nodrop tests (Ivan Vecera) [1824071]
+- [net] sched: RED: Introduce an ECN nodrop mode (Ivan Vecera) [1824071]
+- [net] sched: Allow extending set of supported RED flags (Ivan Vecera) [1824071]
+- [tools] selftests: qdiscs: Add TDC test for RED (Ivan Vecera) [1824071]
+- [tools] tc-testing: add ETS scheduler to tdc build configuration (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Enable hardware offload of flow table entires (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Support refreshing the flow table entries (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Support restoring conntrack info on skbs (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Instantiate flow table entry actions (Ivan Vecera) [1824071]
+- [net] net_sched: keep alloc_hash updated after hash allocation (Ivan Vecera) [1824071]
+- [net] net_sched: hold rtnl lock in tcindex_partial_destroy_work() (Ivan Vecera) [1824071]
+- [include] flow_offload: restrict driver to pass one allowed bit to flow_action_hw_stats_types_check() (Ivan Vecera) [1824071]
+- [netdrv] flow_offload: introduce "delayed" HW stats type and allow it in mlx5 (Ivan Vecera) [1824071]
+- [include] flow_offload: turn hw_stats_type into dedicated enum (Ivan Vecera) [1824071]
+- [include] flow_offload: use flow_action_for_each in flow_action_mixed_hw_stats_types_check() (Ivan Vecera) [1824071]
+- [net] sched: pie: change tc_pie_xstats->prob (Ivan Vecera) [1824071]
+- [net] taprio: Fix sending packets without dequeueing them (Ivan Vecera) [1824071]
+- [net] sched: act_ct: fix lockdep splat in tcf_ct_flow_table_get (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: ETS: Use Qdisc counters (Ivan Vecera) [1824071]
+- [net] sched: Make FIFO Qdisc offloadable (Ivan Vecera) [1824071]
+- [include] pie: realign comment (Ivan Vecera) [1824071]
+- [net] pie: remove pie_vars->accu_prob_overflows (Ivan Vecera) [1824071]
+- [net] pie: remove unnecessary type casting (Ivan Vecera) [1824071]
+- [net] pie: use term backlog instead of qlen (Ivan Vecera) [1824071]
+- [tools] tc-testing: updated tdc tests for basic filter with canid extended match rules (Ivan Vecera) [1824071]
+- [tools] tc-testing: list kernel options for basic filter with canid ematch. (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Use pskb_network_may_pull() (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Fix ipv6 lookup of offloaded connections (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Software offload of established flows (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Offload established connections to flow table (Ivan Vecera) [1824071]
+- [net] sched: act_ct: Create nf flow table per zone (Ivan Vecera) [1824071]
+- [net] taprio: add missing attribute validation for txtime delay (Ivan Vecera) [1824071]
+- [net] fq: add missing attribute validation for orphan mask (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: tc_common: Convert to use busywait (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: Convert until_counter_is() to take expression (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: lib: Add tc_rule_handle_stats_get() (Ivan Vecera) [1824071]
+- [include] net: flow_offload: Replace zero-length array with flexible-array member (Ivan Vecera) [1824071]
+- [net] sched: Replace zero-length array with flexible-array member (Ivan Vecera) [1824071]
+- [net] sched: act: count in the size of action flags bitfield (Ivan Vecera) [1824071]
+- [tools] tc-testing: updated tdc tests for basic filter with u32 extended match rules (Ivan Vecera) [1824071]
+- [tools] tc-testing: updated tdc tests for basic filter with u16 extended match rules (Ivan Vecera) [1824071]
+- [tools] tc-testing: updated tdc tests for basic filter (Ivan Vecera) [1824071]
+- [net] sched: correct flower port blocking (Ivan Vecera) [1824071]
+- [net] sched: Support specifying a starting chain via tc skb ext (Ivan Vecera) [1824071]
+- [net] sched: Change the block's chain list to an rcu list (Ivan Vecera) [1824071]
+- [net] sched: Pass ingress block to tcf_classify_ingress (Ivan Vecera) [1824071]
+- [net] sched: Introduce ingress classification function (Ivan Vecera) [1824071]
+- [net] sched: flower: add missing validation of TCA_FLOWER_FLAGS (Ivan Vecera) [1824071]
+- [net] sched: matchall: add missing validation of TCA_MATCHALL_FLAGS (Ivan Vecera) [1824071]
+- [net] taprio: Fix dropping packets when using taprio + ETF offloading (Ivan Vecera) [1824071]
+- [net] taprio: Use taprio_reset_tc() to reset Traffic Classes configuration (Ivan Vecera) [1824071]
+- [net] taprio: Add missing policy validation for flags (Ivan Vecera) [1824071]
+- [net] taprio: Fix still allowing changing the flags during runtime (Ivan Vecera) [1824071]
+- [net] taprio: Fix enabling offload with wrong number of traffic classes (Ivan Vecera) [1824071]
+- [net] sched: prevent a use after free (Ivan Vecera) [1824071]
+- [tools] tc-testing: add missing 'nsPlugin' to basic.json (Ivan Vecera) [1824071]
+- [net] sch_choke: Use kvcalloc (Ivan Vecera) [1824071]
+- [tools] selftests: mlxsw: Add a RED selftest (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: lib.sh: Add start_tcp_traffic (Ivan Vecera) [1824071]
+- [tools] selftests: mlxsw: Add a TBF selftest (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: lib: Allow reading TC rule byte counters (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: lib: Add helpers for busywaiting (Ivan Vecera) [1824071]
+- [tools] selftests: Move two functions from mlxsw's qos_lib to lib (Ivan Vecera) [1824071]
+- [net] sched: Make TBF Qdisc offloadable (Ivan Vecera) [1824071]
+- [net] sched: sch_tbf: Don't overwrite backlog before dumping (Ivan Vecera) [1824071]
+- [net] sched: add Flow Queue PIE packet scheduler (Ivan Vecera) [1824071]
+- [net] sched: pie: export symbols to be reused by FQ-PIE (Ivan Vecera) [1824071]
+- [net] sched: pie: fix alignment in struct instances (Ivan Vecera) [1824071]
+- [net] sched: pie: fix commenting (Ivan Vecera) [1824071]
+- [include] pie: improve comments and commenting style (Ivan Vecera) [1824071]
+- [net] pie: rearrange structure members and their initializations (Ivan Vecera) [1824071]
+- [include] pie: use u8 instead of bool in pie_vars (Ivan Vecera) [1824071]
+- [include] pie: rearrange macros in order of length (Ivan Vecera) [1824071]
+- [include] pie: use U64_MAX to denote (2^64 - 1) (Ivan Vecera) [1824071]
+- [net] sched: pie: move common code to pie.h (Ivan Vecera) [1824071]
+- [net] sched: use skb_list_walk_safe helper for gso segments (Ivan Vecera) [1824071]
+- [tools] selftests: qdiscs: Add test coverage for ETS Qdisc (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: sch_ets: Add test coverage for ETS Qdisc (Ivan Vecera) [1824071]
+- [tools] selftests: forwarding: Move start_/stop_traffic from mlxsw to lib.sh (Ivan Vecera) [1824071]
+- [net] sch_ets: Make the ETS qdisc offloadable (Ivan Vecera) [1824071]
+- [net] sch_ets: Add a new Qdisc (Ivan Vecera) [1824071]
+- [include] net: pkt_cls: Clarify a comment (Ivan Vecera) [1824071]
+- [net] sch_cake: drop unused variable tin_quantum_prio (Ivan Vecera) [1824071]
+- [net] sched: act_ctinfo: fix memory leak (Ivan Vecera) [1824071]
+- [net] sched: act_ife: initalize ife->metalist earlier (Ivan Vecera) [1824071]
+- [net] sch_cake: avoid possible divide by zero in cake_enqueue() (Ivan Vecera) [1824071]
+- [tools] tc-testing: initial tdc selftests for cls_u32 (Ivan Vecera) [1824071]
+- [net] treewide: Use sizeof_field() macro (Ivan Vecera) [1824071]
+- [tools] tc-testing: unbreak full listing of tdc testcases (Ivan Vecera) [1824071]
+- [net] act_ct: support asymmetric conntrack (Ivan Vecera) [1824071]
+- [net] sch_cake: Add missing NLA policy entry TCA_CAKE_SPLIT_GSO (Ivan Vecera) [1824071]
+- [net] remove the unnecessary strict_start_type in some policies (Ivan Vecera) [1824071]
+- [net] sched: pie: enable timestamp based delay calculation (Ivan Vecera) [1824071]
+- [net] taprio: don't reject same mqprio settings (Ivan Vecera) [1824071]
+- [tools] tc-testing: Introduced tdc tests for basic filter (Ivan Vecera) [1824071]
+- [tools] tc-testing: updated pedit TDC tests (Ivan Vecera) [1824071]
+- [net] net_sched: add TCA_STATS_PKT64 attribute (Ivan Vecera) [1824071]
+- [net] net_sched: extend packet counter to 64bit (Ivan Vecera) [1824071]
+- [include] net_sched: do not export gnet_stats_basic_packed to uapi (Ivan Vecera) [1824071]
+- [tools] tc-testing: added tests with cookie for mpls TC action (Ivan Vecera) [1824071]
+- [net] icmp: remove duplicate code (Ivan Vecera) [1824071]
+- [include] icmp: add helpers to recognize ICMP error packets (Ivan Vecera) [1824071]
+- [net] taprio: fix panic while hw offload sched list swap (Ivan Vecera) [1824071]
+- [net] sched: Replace rcu_swap_protected() with rcu_replace_pointer() (Ivan Vecera) [1824071]
+- [net] net_sched: sch_fq: avoid calling ktime_get_ns() if not needed (Ivan Vecera) [1824071]
+- [net] net_sched: sch_fq: add dctcp-like marking (Ivan Vecera) [1824071]
+- [net] net_sched: sch_fq: remove dead code dealing with retransmits (Ivan Vecera) [1824071]
+- [net] sched: act_ct: fix build failure in RHEL8 (Ivan Vecera) [1824071]
+- [net] don't return invalid table id error when we fall back to PF_UNSPEC (Sabrina Dubroca) [1814093]
+- [net] netfilter: update include directives. (Marcelo Leitner) [1837856]
+- [include] netfilter: fix include guards. (Marcelo Leitner) [1837856]
+- [include] netfilter: add include guard to xt_connlabel.h (Marcelo Leitner) [1837856]
+- [net] sk_msg: Don't use RCU_INIT_POINTER on sk_user_data (Sabrina Dubroca) [1819627]
+- [tools] selftests/bpf: Fix build of sockmap_ktls.c (Sabrina Dubroca) [1819627]
+- [net] Generate reuseport group ID on group creation (Sabrina Dubroca) [1819627]
+- [net] bpf: Allow selecting reuseport socket from a SOCKMAP/SOCKHASH (Sabrina Dubroca) [1819627]
+- [net] bpf, sockmap: Let all kernel-land lookup values in SOCKMAP/SOCKHASH (Sabrina Dubroca) [1819627]
+- [net] bpf, sockmap: Return socket cookie on lookup from syscall (Sabrina Dubroca) [1819627]
+- [net] bpf, sockmap: Don't set up upcalls and progs for listening sockets (Sabrina Dubroca) [1819627]
+- [net] bpf, sockmap: Allow inserting listening TCP sockets into sockmap (Sabrina Dubroca) [1819627]
+- [net] tcp_bpf: Don't let child socket inherit parent protocol ops on copy (Sabrina Dubroca) [1819627]
+- [net] net, sk_msg: Clear sk_user_data pointer on clone if tagged (Sabrina Dubroca) [1819627]
+- [net] net, sk_msg: Annotate lockless access to sk_prot on clone (Sabrina Dubroca) [1819627]
+- [net] bpf, sockmap: bpf_tcp_ingress needs to subtract bytes from sg.size (Sabrina Dubroca) [1819627]
+- [net] bpf, sockmap: msg_pop_data can incorrecty set an sge length (Sabrina Dubroca) [1819627]
+- [net] tls: fix const assignment warning (Sabrina Dubroca) [1819627]
+- [net] tls: Fix sk_psock refcnt leak in bpf_exec_tx_verdict() (Sabrina Dubroca) [1819627]
+- [net] tls: Fix sk_psock refcnt leak when in tls_data_ready() (Sabrina Dubroca) [1819627]
+- [tools] selftests/bpf: Test unhashing kTLS socket after removing from map (Sabrina Dubroca) [1819627]
+- [include] bpf, sk_msg: Don't clear saved sock proto on restore (Sabrina Dubroca) [1819627]
+- [include] bpf, sk_msg: Let ULP restore sk_proto and write_space callback (Sabrina Dubroca) [1819627]
+- [net] tls: Annotate access to sk_prot with READ_ONCE/WRITE_ONCE (Sabrina Dubroca) [1819627]
+- [net] tls: Read sk_prot once when building tls proto ops (Sabrina Dubroca) [1819627]
+- [net] tls: Constify base proto ops used for building tls proto (Sabrina Dubroca) [1819627]
+- [net] tls: Fix to avoid gettig invalid tls record (Sabrina Dubroca) [1819627]
+- [net] tls: avoid spurious decryption error with HW resync (Sabrina Dubroca) [1819627]
+- [net] tls: add helper for testing if socket is RX offloaded (Sabrina Dubroca) [1819627]
+- [tools] selftests: net: tls: remove recv_rcvbuf test (Sabrina Dubroca) [1819627]
+- [net] tls: use sg_next() to walk sg entries (Sabrina Dubroca) [1819627]
+- [net] tls: remove the dead inplace_crypto code (Sabrina Dubroca) [1819627]
+- [tools] selftests/tls: add a test for fragmented messages (Sabrina Dubroca) [1819627]
+- [net] tls: Fix unused function warning (Sabrina Dubroca) [1819627]
+- [net] tls: store decrypted on a single bit (Sabrina Dubroca) [1819627]
+- [net] tls: store async_capable on a single bit (Sabrina Dubroca) [1819627]
+- [net] tls: pass context to tls_device_decrypted() (Sabrina Dubroca) [1819627]
+- [net] tls: make allocation failure unlikely (Sabrina Dubroca) [1819627]
+- [net] tls: mark sk->err being set as unlikely (Sabrina Dubroca) [1819627]
+- [net] sockmap: use bitmap for copy info (Sabrina Dubroca) [1819627]
+- [net] tls: add TlsDeviceRxResync statistic (Sabrina Dubroca) [1819627]
+- [net] tls: add TlsDecryptError stat (Sabrina Dubroca) [1819627]
+- [net] tls: add statistics for installed sessions (Sabrina Dubroca) [1819627]
+- [net] tls: add skeleton of MIB statistics (Sabrina Dubroca) [1819627]
+- [net] tls: add device decrypted trace point (Sabrina Dubroca) [1819627]
+- [net] tls: add tracing for device/offload events (Sabrina Dubroca) [1819627]
+- [net] tls: allow compiling TLS TOE out (Sabrina Dubroca) [1819627]
+- [net] tls: rename tls_hw_* functions tls_toe_* (Sabrina Dubroca) [1819627]
+- [net] tls: move TOE-related code to a separate file (Sabrina Dubroca) [1819627]
+- [net] tls: move tls_build_proto() on init path (Sabrina Dubroca) [1819627]
+- [net] tls: use the full sk_proto pointer (Sabrina Dubroca) [1819627]
+- [net] tls: rename tls_device to tls_toe_device (Sabrina Dubroca) [1819627]
+- [net] tls: move TOE-related structures to a separate header (Sabrina Dubroca) [1819627]
+- [net] tls: sleeping function from invalid context (Sabrina Dubroca) [1819627]
+- [net] netfilter: nft_set_rbtree: Add missing expired checks (Phil Sutter) [1778020]
+- [tools] selftests: netfilter: extend flowtable test script with dnat rule (Marcelo Leitner) [1811193]
+- [tools] selftests: netfilter: extend flowtable test script for ipsec (Marcelo Leitner) [1811193]
+- [tools] selftests: netfilter: add flowtable test script (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: set NF_FLOW_TEARDOWN flag on entry expiration (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Remove WQ_MEM_RECLAIM from workqueue (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_conntrack: add IPS_HW_OFFLOAD status bit (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Free block_cb when being deleted (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add counter support in HW offload (Marcelo Leitner) [1811193]
+- [net] netfilter: conntrack: add nf_ct_acct_add() (Marcelo Leitner) [1811193]
+- [net] netfilter: conntrack: export nf_ct_acct_update() (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Use work entry per offload command (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Use rw sem as flow block lock (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add counter support (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: add enum nft_flowtable_flags to uapi (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Fix incorrect tc_setup_type type (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: populate addr_type mask (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Fix flushing of offloaded flows on free (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: fix NULL pointer dereference in tunnel offload support (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: reload ip{v6}h in nf_flow_tuple_ip{v6} (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: reload ip{v6}h in nf_flow_nat_ip{v6} (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: dump NFTA_CHAIN_FLAGS attribute (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: free flowtable hooks on hook register error (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add tunnel encap/decap action offload support (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add indr block setup support (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add nf_flow_table_block_offload_init() (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add tunnel match offload support (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: skip offload setup if disabled (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Use nf_flow_offload_tuple for stats as well (Marcelo Leitner) [1811193]
+- [net] flow_offload: Add flow_match_ct to get rule ct match (Marcelo Leitner) [1811193]
+- [include] net/sched: act_ct: Enable hardware offload of flow table entires (Marcelo Leitner) [1811193]
+- [include] net/sched: act_ct: Support refreshing the flow table entries (Marcelo Leitner) [1811193]
+- [include] net/sched: act_ct: Support restoring conntrack info on skbs (Marcelo Leitner) [1811193]
+- [net] sched: act_ct: Instantiate flow table entry actions (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Add API for registering to flow table events (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Fix setting forgotten NF_FLOW_HW_DEAD flag (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Fix missing flush hardware on table free (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: Fix hardware flush order on nf_flow_table_cleanup (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: fix check the chain offload flag (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: fix memory leak in nf_tables_parse_netdev_hooks() (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add nf_flow_table_offload_cmd() (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add nf_flow_offload_tuple() helper (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: refresh flow if hardware offload fails (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add nf_flowtable_hw_offload() helper function (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: use atomic bitwise operations for flow flags (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: remove dying bit, use teardown bit instead (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add nf_flow_offload_work_alloc() (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: restrict flow dissector match on meta ingress device (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: fetch stats only if flow is still alive (Marcelo Leitner) [1811193]
+- [net] netfilter: flowtable: add nf_flowtable_time_stamp (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: unbind callbacks from flowtable destroy path (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: fix the nat port mangle. (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: check the status of dst_neigh (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: fix incorrect ethernet dst address (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: fix big-endian integer overflow (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: Correct memcpy size for flow_overload_mangle() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: return EOPNOTSUPP if rule specifies no actions (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: add IPv6 match description (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: Don't use offset uninitialized in flow_offload_port_{d, s}nat (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: Fix block_cb tc_setup_type as TC_SETUP_CLSFLOWER (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: Fix block setup as TC_SETUP_FT cmd (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: check if bind callback fails and unbind if hook registration fails (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: add nft_unregister_flowtable_hook() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: undo updates if transaction fails (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: release flow_rule on error from commit path (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: remove reference to flow rule from deletion path (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: add IPv6 support (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: add flow_action_entry_next() and use it (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: remove unnecessary parameter in flow_offload_fill_dir (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table_offload: Fix check ndo_setup_tc when setup_block (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: Check for the NETDEV_UNREGISTER event (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: hardware offload support (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: add flowtable offload control plane (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: detach routing information from flow description (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_flow_offload: skip tcp rst and fin packets (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flowtable: remove flow_offload_entry structure (Marcelo Leitner) [1811193]
+- [include] netfilter: nf_flow_table: remove union from flow_offload structure (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: move conntrack object to struct flow_offload (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: skip EBUSY on chain update (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: bogus EOPNOTSUPP on basechain update (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: pass extack to nft_flow_cls_offload_setup() (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_meta: offload support for interface index (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: white-space fixes. (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: check for register data length mismatches (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_bitwise: Adjust parentheses to fix memcmp size argument (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_bitwise: add offload support (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: unbind if multi-device binding fails (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: add nft_flow_block_offload_init() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: add nft_chain_offload_cmd() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: restore basechain deletion (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: support for multiple devices per netdev hook (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: fix base chain stat rcu_dereference usage (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: remove rules on unregistered device only (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: add nft_flow_cls_offload_setup() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: Pass callback list to nft_setup_cb_call() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: add nft_flow_block_chain() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: increase maximum devices number per flowtable (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: allow netdevice to be used only once per flowtable (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: dynamically allocate hooks per net_device in flowtables (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: remove flowtable hook flush routine in netns exit routine (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: move priority to struct nf_flowtable (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_payload: fix missing check for matching length in offloads (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: set timeout before insertion into hashes (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: fix always true policy is unset check (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: add NFT_CHAIN_POLICY_UNSET and use it (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: remove rules when the device unregisters (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: refactor the nft_flow_offload_rule function (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: refactor the nft_flow_offload_chain function (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: add __nft_offload_get_chain function (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_{fwd, dup}_netdev: add offload support (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: avoid excessive stack usage (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: move indirect flow_block callback logic to core (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: set default timeout after successful insertion (Marcelo Leitner) [1811193]
+- [net] netfilter: ctnetlink: honor IPS_OFFLOAD flag (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: clear skb tstamp before xmit (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: map basechain priority to hardware priority (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: teardown flow timeout race (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: conntrack picks up expired flows (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables_offload: support indr block call (Marcelo Leitner) [1811193]
+- [net] flow_offload: add flow_block structure and use it (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: store data in offload context registers (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: fix offload for flows that are subject to xfrm (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: don't fail when updating base chain policy (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: add hardware offload support (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: delay chain policy update until transaction is complete (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_flow_offload: IPCB is only valid for ipv4 family (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_flow_offload: don't offload when sequence numbers need adjustment (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_flow_offload: set liberal tracking mode for tcp (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: ignore DF bit setting (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: remove unnecessary variable in flow_offload_tuple (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_flow_offload: add entry to flowtable after confirmation (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_flow_offload: fix checking method of conntrack helper (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: fix missing error check for rhashtable_insert_fast (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: do not flow offload deleted conntrack entries (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: simplify nf_flow_offload_gc_step() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: check ttl value in flow offload data path (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: fix netdev refcnt leak (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flowtable: skip device lookup from interface index (Marcelo Leitner) [1811193]
+- [net] netfilter: conntrack: fix IPV6=n builds (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_flow_offload: fix interaction with vrf slave device (Marcelo Leitner) [1811193]
+- [net] netfilter: nft_flow_offload: Fix reverse route lookup (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: make nf_flow_table_iterate() static (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: do not remove offload when other netns's interface is down (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: remove unnecessary parameter of nf_flow_table_cleanup() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_tables: use rhashtable_lookup() instead of rhashtable_lookup_fast() (Marcelo Leitner) [1811193]
+- [net] netfilter: nf_flow_table: remove unnecessary nat flag check code (Marcelo Leitner) [1811193]
+- [net] mptcp: mark tech preview and disable by default (Florian Westphal) [1835796]
+- [net] mptcp: fix bogus socket flag values (Florian Westphal) [1835796]
+- [net] mptcp: select CRYPTO (Florian Westphal) [1835796]
+- [net] mptcp: Protect subflow socket options before connection completes (Florian Westphal) [1835796]
+- [net] mptcp: make the symbol 'mptcp_sk_clone_lock' static (Florian Westphal) [1835796]
+- [net] mptcp: fix use-after-free for ipv6 (Florian Westphal) [1835796]
+- [net] mptcp: fix use-after-free on tcp fallback (Florian Westphal) [1835796]
+- [net] mptcp: Fix undefined mptcp_handle_ipv6_mapped for modular IPV6 (Florian Westphal) [1835796]
+- [net] mptcp: Fix incorrect IPV6 dependency check (Florian Westphal) [1835796]
+- [net] mptcp: handle tcp fallback when using syn cookies (Florian Westphal) [1835796]
+- [net] mptcp: avoid a lockdep splat when mcast group was joined (Florian Westphal) [1835796]
+- [net] mptcp: fix panic on user pointer access (Florian Westphal) [1835796]
+- [net] mptcp: defer freeing of cached ext until last moment (Florian Westphal) [1835796]
+- [net] mptcp: Fix build with PROC_FS disabled. (Florian Westphal) [1835796]
+- [tools] selftests: settings: tests can be in subsubdirs (Florian Westphal) [1835796]
+- [net] mptcp: Fix code formatting (Florian Westphal) [1835796]
+- [net] mptcp: do not inherit inet proto ops (Florian Westphal) [1835796]
+- [net] add and use MPTCP_PROTO_KERN (Florian Westphal) [1835796]
+- [net] mptcp: cope with later TCP fallback (Florian Westphal) [1835796]
+- [net] mptcp: process MP_CAPABLE data option (Florian Westphal) [1835796]
+- [net] mptcp: parse and emit MP_CAPABLE option according to v1 spec (Florian Westphal) [1835796]
+- [net] mptcp: move from sha1 (v0) to sha256 (v1) (Florian Westphal) [1835796]
+- [tools] mptcp: add basic kselftest for mptcp (Florian Westphal) [1835796]
+- [net] mptcp: new sysctl to control the activation per NS (Florian Westphal) [1835796]
+- [net] mptcp: allow collapsing consecutive sendpages on the same substream (Florian Westphal) [1835796]
+- [net] mptcp: recvmsg() can drain data from multiple subflows (Florian Westphal) [1835796]
+- [net] mptcp: add subflow write space signalling and mptcp_poll (Florian Westphal) [1835796]
+- [net] mptcp: Implement MPTCP receive path (Florian Westphal) [1835796]
+- [net] mptcp: Write MPTCP DSS headers to outgoing data packets (Florian Westphal) [1835796]
+- [net] mptcp: Add setsockopt()/getsockopt() socket operations (Florian Westphal) [1835796]
+- [net] mptcp: Add shutdown() socket operation (Florian Westphal) [1835796]
+- [net] mptcp: Add key generation and token tree (Florian Westphal) [1835796]
+- [net] mptcp: Create SUBFLOW socket for incoming connections (Florian Westphal) [1835796]
+- [net] mptcp: Handle MP_CAPABLE options for outgoing connections (Florian Westphal) [1835796]
+- [net] mptcp: Associate MPTCP context with TCP socket (Florian Westphal) [1835796]
+- [net] mptcp: Handle MPTCP TCP options (Florian Westphal) [1835796]
+- [net] mptcp: Add MPTCP socket stubs (Florian Westphal) [1835796]
+- [net] netfilter: conntrack: fix infinite loop on rmmod (Florian Westphal) [1832381]
+- [tools] selftests: add netdevsim devlink dev info test (Petr Oros) [1830928]
+- [tools] selftests: test netdevsim reload forbid and fail (Petr Oros) [1830928]
+- [netdrv] mlx4: fix "initializer element not constant" compiler error (Petr Oros) [1830928]
+- [netdrv] netdevsim: dev: Fix memory leak in nsim_dev_take_snapshot_write (Petr Oros) [1830928]
+- [net] devlink: fix return value after hitting end in region read (Petr Oros) [1830928]
+- [net] devlink: Fix reporter's recovery condition (Petr Oros) [1830928]
+- [documentation] docs: devlink: clarify the scope of snapshot id (Petr Oros) [1830928]
+- [net] devlink: let kernel allocate region snapshot id (Petr Oros) [1830928]
+- [net] devlink: factor out building a snapshot notification (Petr Oros) [1830928]
+- [documentation] devlink: fix broken link warning (Petr Oros) [1830928]
+- [net] devlink: use NL_SET_ERR_MSG_MOD instead of NL_SET_ERR_MSG (Petr Oros) [1830928]
+- [include] devlink: Add macro for "fw.mgmt.api" to info_get cb. (Petr Oros) [1830928]
+- [netdrv] netdevsim: support taking immediate snapshot via devlink (Petr Oros) [1830928]
+- [net] devlink: implement DEVLINK_CMD_REGION_NEW (Petr Oros) [1830928]
+- [net] devlink: track snapshot id usage count using an xarray (Petr Oros) [1830928]
+- [net] devlink: report error once U32_MAX snapshot ids have been used (Petr Oros) [1830928]
+- [net] devlink: extract snapshot id allocation to helper function (Petr Oros) [1830928]
+- [net] devlink: use -ENOSPC to indicate no more room for snapshots (Petr Oros) [1830928]
+- [net] devlink: add function to take snapshot while locked (Petr Oros) [1830928]
+- [net] devlink: trivial: fix tab in function documentation (Petr Oros) [1830928]
+- [net] devlink: convert snapshot destructor callback to region op (Petr Oros) [1830928]
+- [net] devlink: prepare to support region operations (Petr Oros) [1830928]
+- [documentation] devlink: expand the devlink-info documentation (Petr Oros) [1830928]
+- [net] devlink: Introduce devlink port flavour virtual (Petr Oros) [1830928]
+- [net] devlink: validate length of region addr/len (Petr Oros) [1830928]
+- [net] devlink: validate length of param values (Petr Oros) [1830928]
+- [net] core: Replace zero-length array with flexible-array member (Petr Oros) [1830928]
+- [net] core: devlink.c: Use built-in RCU list checking (Petr Oros) [1830928]
+- [net] devlink: Rely on driver eswitch thread safety instead of devlink (Petr Oros) [1830928]
+- [net] core: devlink.c: Hold devlink->lock from the beginning of devlink_dpipe_table_register() (Petr Oros) [1830928]
+- [net] devlink: Force enclosing array on binary fmsg data (Petr Oros) [1830928]
+- [net] devlink: report 0 after hitting end in region read (Petr Oros) [1830928]
+- [net] devlink: correct misspelling of snapshot (Petr Oros) [1830928]
+- [tools] selftests: Add a test of large binary to devlink health test (Petr Oros) [1830928]
+- [netdrv] netdevsim: Update dummy reporter's devlink binary interface (Petr Oros) [1830928]
+- [net] devlink: Allow large formatted message of binary output (Petr Oros) [1830928]
+- [tools] selftests: netdevsim: Add test cases for devlink-trap policers (Petr Oros) [1823743]
+- [netdrv] netdevsim: Add support for setting of packet trap group parameters (Petr Oros) [1823743]
+- [net] devlink: Allow setting of packet trap group parameters (Petr Oros) [1823743]
+- [net] devlink: Add packet trap group parameters support (Petr Oros) [1823743]
+- [netdrv] netdevsim: Add devlink-trap policer support (Petr Oros) [1823743]
+- [documentation] Add description of packet trap policers (Petr Oros) [1823743]
+- [net] devlink: Add packet trap policers support (Petr Oros) [1823743]
+- [net] devlink: Add auto dump flag to health reporter (Petr Oros) [1823743]
+- [net] devlink: Implicitly set auto recover flag when registering health reporter (Petr Oros) [1823743]
+- [netdrv] netdevsim: Change dummy reporter auto recover default (Petr Oros) [1823743]
+- [net] devlink: Only pass packet trap group identifier in trap structure (Petr Oros) [1823743]
+- [net] devlink: Stop reference counting packet trap groups (Petr Oros) [1823743]
+- [netdrv] netdevsim: Explicitly register packet trap groups (Petr Oros) [1823743]
+- [net] devlink: Add API to register packet trap groups (Petr Oros) [1823743]
+- [net] esp6: calculate transport_header correctly when sel.family != AF_INET6 (Xin Long) [1815980 1761579]
+- [net] esp4: support ipv6 nexthdrs process for beet gso segment (Xin Long) [1815980 1761579]
+- [net] esp6: support ipv6 nexthdrs process for beet gso segment (Xin Long) [1815980 1761579]
+- [net] xfrm: remove the xfrm_state_put call becofe going to out_reset (Xin Long) [1815980 1761579]
+- [net] esp6: get the right proto for transport mode in esp6_gso_encap (Xin Long) [1815980 1761579]
+- [net] xfrm: do pskb_pull properly in __xfrm_transport_prep (Xin Long) [1815980 1761579]
+- [net] xfrm: allow to accept packets with ipv6 NEXTHDR_HOP in xfrm_input (Xin Long) [1815980 1761579]
+- [net] xfrm: add prep for esp beet mode offload (Xin Long) [1815980 1761579]
+- [net] esp6: add gso_segment for esp6 beet mode (Xin Long) [1815980 1761579]
+- [net] esp4: add gso_segment for esp4 beet mode (Xin Long) [1815980 1761579]
+- [net] xfrm: kconfig: make xfrm depend on inet (Xin Long) [1815980 1761579]
+- [net] xfrm: make xfrm modes builtin (Xin Long) [1815980 1761579]
+- [net] xfrm: remove afinfo pointer from xfrm_mode (Xin Long) [1815980 1761579]
+- [net] xfrm: remove output2 indirection from xfrm_mode (Xin Long) [1815980 1761579]
+- [net] xfrm: remove input2 indirection from xfrm_mode (Xin Long) [1815980 1761579]
+- [net] xfrm: remove gso_segment indirection from xfrm_mode (Xin Long) [1815980 1761579]
+- [net] xfrm: remove xmit indirection from xfrm_mode (Xin Long) [1815980 1761579]
+- [net] xfrm: remove output indirection from xfrm_mode (Xin Long) [1815980 1761579]
+- [net] xfrm: remove input indirection from xfrm_mode (Xin Long) [1761579 1815980]
+- [net] xfrm: prefer family stored in xfrm_mode struct (Xin Long) [1815980 1761579]
+- [net] xfrm: place af number into xfrm_mode struct (Xin Long) [1761579 1815980]
+- [net] xfrm: gso partial offload support (Xin Long) [1761579 1815980]
+- [net] netfilter: cttimeout: remove set but not used variable 'l3num' (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: handle icmp pkt_to_tuple helper via direct calls (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: handle builtin l4proto packet functions via direct calls (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove net_id (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: gre: switch module to be built-in (Florian Westphal) [1822085]
+- [net] netfilter: remove unused parameters in nf_ct_l4proto_[un]register_sysctl() (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: gre: convert rwlock to rcu (Florian Westphal) [1822085]
+- [net] netfilter: nfnetlink_cttimeout: fetch timeouts for udplite and gre, too (Florian Westphal) [1822085]
+- [net] netfilter: nfnetlink_cttimeout: pass default timeout policy to obj_to_nlattr (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: add nf_{tcp, udp, sctp, icmp, dccp, icmpv6, generic}_pernet() (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: clamp l4proto array size at largers supported protocol (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove l3->l4 mapping information (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove unused proto arg from netns init functions (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove error callback and handle icmp from core (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: avoid using ->error callback if possible (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: deconstify packet callback skb pointer (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove the l4proto->new() function (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: timeout interface depend on CONFIG_NF_CONNTRACK_TIMEOUT (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: pass nf_hook_state to packet and error handlers (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: place 'new' timeout in first location too (Florian Westphal) [1822085]
+- [net] netfilter: nf_conntrack_h323: Remove deprecated config check (Florian Westphal) [1822085]
+- [include] netfilter: nf_tables: merge route type into core (Florian Westphal) [1822085]
+- [net] netfilter: ipv6: avoid indirect calls for IPV6=y case (Florian Westphal) [1822085]
+- [net] netfilter: nat: remove module dependency on ipv6 core (Florian Westphal) [1822085]
+- [net] netfilter: remove obsolete need_conntrack stub (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: avoid use-after free on rmmod (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: dccp, sctp: handle null timeout argument (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove duplicated include from nf_conntrack_proto_udp.c (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove l3proto abstraction (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove get_timeout() indirection (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: avoid l4proto pkt_to_tuple calls (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: avoid calls to l4proto invert_tuple (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove get_l4proto indirection from l3 protocol trackers (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove invert_tuple indirection from l3 protocol trackers (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove pkt_to_tuple indirection from l3 protocol trackers (Florian Westphal) [1822085]
+- [net] netfilter: conntrack: remove ctnetlink callbacks from l3 protocol trackers (Florian Westphal) [1822085]
+- [net] openvswitch: use nf_ct_get_tuplepr, invert_tuplepr (Florian Westphal) [1822085]
+- [net] netfilter: utils: move nf_ip6_checksum* from ipv6 to utils (Florian Westphal) [1822085]
+- [net] netfilter: utils: move nf_ip_checksum* from ipv4 to utils (Florian Westphal) [1822085]
+- [net] netfilter: flowtables: use fixed renew timeout on teardown (Florian Westphal) [1822085]
+- [netdrv] geneve: use the correct nlattr array in NL_SET_ERR_MSG_ATTR (Xin Long) [1809503]
+- [netdrv] vxlan: use the correct nlattr array in NL_SET_ERR_MSG_ATTR (Xin Long) [1809503]
+- [netdrv] geneve: Allow configuration of DF behaviour (Xin Long) [1809503]
+- [netdrv] vxlan: Allow configuration of DF behaviour (Xin Long) [1809503]
+- [netdrv] net: phy: realtek: fix using paged operations with RTL8105e / RTL8208 (Josef Oskera) [1841511]
+- [netdrv] r8169: fix OCP access on RTL8117 (Josef Oskera) [1841511]
+- [netdrv] r8169: re-establish support for RTL8401 chip version (Josef Oskera) [1841511]
+- [netdrv] r8169: change back SG and TSO to be disabled by default (Josef Oskera) [1841511]
+- [netdrv] r8169: factor out rtl8169_tx_map (Josef Oskera) [1841511]
+- [netdrv] r8169: improve handling of TD_MSS_MAX (Josef Oskera) [1841511]
+- [netdrv] r8169: fix PHY driver check on platforms w/o module softdeps (Josef Oskera) [1841511]
+- [netdrv] r8169: re-enable MSI on RTL8168c (Josef Oskera) [1841511]
+- [netdrv] r8169: don't use MSI before RTL8168d (Josef Oskera) [1841511]
+- [netdrv] r8169: improve RTL8168b FIFO overflow workaround (Josef Oskera) [1841511]
+- [netdrv] r8169: improve rtl_schedule_task (Josef Oskera) [1841511]
+- [netdrv] r8169: simplify rtl_task (Josef Oskera) [1841511]
+- [netdrv] r8169: add new helper rtl8168g_enable_gphy_10m (Josef Oskera) [1841511]
+- [netdrv] net: r8169: reject unsupported coalescing params (Josef Oskera) [1841511]
+- [netdrv] r8169: simplify getting stats by using netdev_stats_to_stats64 (Josef Oskera) [1841511]
+- [netdrv] r8169: let rtl8169_mark_to_asic clear rx descriptor field opts2 (Josef Oskera) [1841511]
+- [netdrv] r8169: remove now unneeded barrier in rtl_tx (Josef Oskera) [1841511]
+- [netdrv] r8169: simplify usage of rtl8169_unmap_tx_skb (Josef Oskera) [1841511]
+- [netdrv] r8169: ensure tx_skb is fully reset after calling rtl8169_unmap_tx_skb (Josef Oskera) [1841511]
+- [netdrv] r8169: convert while to for loop in rtl_tx (Josef Oskera) [1841511]
+- [netdrv] r8169: use pci_status_get_and_clear_errors (Josef Oskera) [1841511]
+- [netdrv] r8169: add PCI_STATUS_PARITY to PCI status error bits (Josef Oskera) [1841511]
+- [netdrv] r8169: improve rtl8169_start_xmit (Josef Oskera) [1841511]
+- [netdrv] r8169: remove RTL_EVENT_NAPI constants (Josef Oskera) [1841511]
+- [netdrv] r8169: use new helper tcp_v6_gso_csum_prep (Josef Oskera) [1841511]
+- [netdrv] r8169: improve statistics of missed rx packets (Josef Oskera) [1841511]
+- [netdrv] r8169: improve rtl_jumbo_config (Josef Oskera) [1841511]
+- [netdrv] r8169: improve rtl8169_get_mac_version (Josef Oskera) [1841511]
+- [netdrv] r8169: add helper rtl_pci_commit (Josef Oskera) [1841511]
+- [netdrv] r8169: simplify setting netdev features (Josef Oskera) [1841511]
+- [netdrv] r8169: remove setting PCI_CACHE_LINE_SIZE in rtl_hw_start_8169 (Josef Oskera) [1841511]
+- [netdrv] r8169: remove unneeded check from rtl_link_chg_patch (Josef Oskera) [1841511]
+- [netdrv] r8169: fix performance regression related to PCIe max read request size (Josef Oskera) [1841511]
+- [netdrv] r8169: don't set min_mtu/max_mtu if not needed (Josef Oskera) [1841511]
+- [netdrv] r8169: factor out PHY configuration to r8169_phy_config.c (Josef Oskera) [1841511]
+- [netdrv] r8169: add r8169.h (Josef Oskera) [1841511]
+- [netdrv] r8169: rename rtl_apply_firmware (Josef Oskera) [1841511]
+- [netdrv] r8169: add phydev argument to rtl8168d_apply_firmware_cond (Josef Oskera) [1841511]
+- [netdrv] r8169: use phy_read/write instead of rtl_readphy/writephy (Josef Oskera) [1841511]
+- [netdrv] r8169: replace rtl_w0w1_phy (Josef Oskera) [1841511]
+- [netdrv] r8169: replace rtl_patchphy (Josef Oskera) [1841511]
+- [netdrv] r8169: move disabling MAC EEE for RTL8402/RTL8106e (Josef Oskera) [1841511]
+- [netdrv] r8169: move setting ERI register 0x1d0 for RTL8106 (Josef Oskera) [1841511]
+- [netdrv] r8169: switch to phylib functions in rtl_writephy_batch (Josef Oskera) [1841511]
+- [netdrv] r8169: change argument type of RTL8168g-specific PHY config functions (Josef Oskera) [1841511]
+- [netdrv] r8169: change argument type of EEE PHY functions (Josef Oskera) [1841511]
+- [netdrv] r8169: move RTL8169scd Gigabyte PHY quirk (Josef Oskera) [1841511]
+- [netdrv] r8169: remove not needed debug print in rtl8169_init_phy (Josef Oskera) [1841511]
+- [netdrv] r8169: prepare for exporting rtl_hw_phy_config (Josef Oskera) [1841511]
+- [netdrv] r8169: add constant EnAnaPLL (Josef Oskera) [1841511]
+- [netdrv] r8169: move enabling EEE to rtl8169_init_phy (Josef Oskera) [1841511]
+- [netdrv] r8169: remove MAC workaround in rtl8168e_2_hw_phy_config (Josef Oskera) [1841511]
+- [netdrv] r8169: factor out rtl8168h_2_get_adc_bias_ioffset (Josef Oskera) [1841511]
+- [netdrv] r8169: check that Realtek PHY driver module is loaded (Josef Oskera) [1841511]
+- [netdrv] treewide: Use sizeof_field() macro (Josef Oskera) [1841511]
+- [netdrv] r8169: fix rtl_hw_jumbo_disable for RTL8168evl (Josef Oskera) [1841511]
+- [netdrv] r8169: add missing RX enabling for WoL on RTL8125 (Josef Oskera) [1841511]
+- [netdrv] r8169: fix jumbo configuration for RTL8168evl (Josef Oskera) [1841511]
+- [netdrv] r8169: add check for PHY_MDIO_CHG to rtl_nic_fw_data_ok (Josef Oskera) [1841511]
+- [netdrv] r8169: use macro FIELD_SIZEOF in definition of FW_OPCODE_SIZE (Josef Oskera) [1841511]
+- [netdrv] r8169: change mdelay to msleep in rtl_fw_write_firmware (Josef Oskera) [1841511]
+- [netdrv] r8169: load firmware for RTL8168fp/RTL8117 (Josef Oskera) [1841511]
+- [netdrv] r8169: improve conditional firmware loading for RTL8168d (Josef Oskera) [1841511]
+- [netdrv] r8169: use r8168d_modify_extpage in rtl8168f_config_eee_phy (Josef Oskera) [1841511]
+- [netdrv] r8169: add support for RTL8117 (Josef Oskera) [1841511]
+- [netdrv] r8169: respect EEE user setting when restarting network (Josef Oskera) [1841511]
+- [netdrv] r8169: remove rtl8168c_4_hw_phy_config (Josef Oskera) [1841511]
+- [netdrv] r8169: add helper r8168d_modify_extpage (Josef Oskera) [1841511]
+- [netdrv] r8169: switch to phylib functions in more places (Josef Oskera) [1841511]
+- [netdrv] r8169: add helper r8168d_phy_param (Josef Oskera) [1841511]
+- [netdrv] r8169: add helper r8168g_phy_param (Josef Oskera) [1841511]
+- [netdrv] r8169: fix page read in r8168g_mdio_read (Josef Oskera) [1841511]
+- [netdrv] r8169: fix wrong PHY ID issue with RTL8168dp (Josef Oskera) [1841511]
+- [netdrv] r8169: use helper rtl_hw_aspm_clkreq_enable also in rtl_hw_start_8168g_2 (Josef Oskera) [1841511]
+- [netdrv] r8169: improve rtl8169_rx_fill (Josef Oskera) [1841511]
+- [netdrv] r8169: align fix_features callback with vendor driver (Josef Oskera) [1841511]
+- [netdrv] r8169: never set PCI_EXP_DEVCTL_NOSNOOP_EN (Josef Oskera) [1841511]
+- [netdrv] r8169: remove rtl_hw_start_8168bef (Josef Oskera) [1841511]
+- [netdrv] r8169: remove rtl_hw_start_8168dp (Josef Oskera) [1841511]
+- [netdrv] r8169: simplify setting PCI_EXP_DEVCTL_NOSNOOP_EN (Josef Oskera) [1841511]
+- [netdrv] r8169: remove fiddling with the PCIe max read request size (Josef Oskera) [1841511]
+- [netdrv] r8169: fix jumbo packet handling on resume from suspend (Josef Oskera) [1841511]
+- [netdrv] r8169: don't set bit RxVlan on RTL8125 (Josef Oskera) [1841511]
+- [netdrv] r8169: add support for EEE on RTL8125 (Josef Oskera) [1841511]
+- [netdrv] r8169: add RTL8125 PHY initialization (Josef Oskera) [1841511]
+- [netdrv] r8169: add support for RTL8125 (Josef Oskera) [1841511]
+- [netdrv] r8169: don't use bit LastFrag in tx descriptor after send (Josef Oskera) [1841511]
+- [netdrv] r8169: read common register for PCI commit (Josef Oskera) [1841511]
+- [netdrv] r8169: move disabling interrupt coalescing to RTL8169/RTL8168 init (Josef Oskera) [1841511]
+- [netdrv] r8169: factor out reading MAC address from registers (Josef Oskera) [1841511]
+- [netdrv] r8169: restrict rtl_is_8168evl_up to RTL8168 chip versions (Josef Oskera) [1841511]
+- [netdrv] r8169: change interrupt mask type to u32 (Josef Oskera) [1841511]
+- [netdrv] r8169: improve DMA handling in rtl_rx (Josef Oskera) [1841511]
+- [netdrv] r8169: fix DMA issue on MIPS platform (Josef Oskera) [1841511]
+- [netdrv] r8169: sync EEE handling for RTL8168h with vendor driver (Josef Oskera) [1841511]
+- [netdrv] r8169: use the generic EEE management functions (Josef Oskera) [1841511]
+- [fs] gfs2: Even more gfs2_find_jhead fixes (Abhijith Das) [1828653]
+- [kernel] sched/fair: Don't NUMA balance for kthreads (Phil Auld) [1842543]
+- [kernel] sched/core: Offload wakee task activation if it the wakee is descheduling (Phil Auld) [1842543]
+- [kernel] sched/core: Optimize ttwu() spinning on p->on_cpu (Phil Auld) [1842543]
+- [fs] gfs2: Smarter iopen glock waiting (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Wake up when setting GLF_DEMOTE (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Check inode generation number in delete_work_func (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Move inode generation number check into gfs2_inode_lookup (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Minor gfs2_lookup_by_inum cleanup (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Try harder to delete inodes locally (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Give up the iopen glock on contention (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Turn gl_delete into a delayed work (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Keep track of deleted inode generations in LVBs (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Allow ASPACE glocks to also have an lvb (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Avoid access time thrashing in gfs2_inode_lookup (Andreas Grunbacher) [1582655]
+- [fs] gfs2: Use IS_ERR_OR_NULL (Andreas Grunbacher) [1582655]
+- [fpga] fpga: mark the intel fpga drivers as tech preview (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [firmware] firmware: stratix10-svc: Remove unneeded semicolon (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [firmware] firmware: Fix incompatible function behavior for RSU driver (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [firmware] firmware: add Intel Stratix10 remote system update driver (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [include] firmware: stratix10-svc: extend svc to support new RSU features (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [edac] EDAC/altera, firmware/intel: Add Stratix10 ECC DBE SMC call (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [firmware] firmware: stratix10-svc: fix wrong of_node_put() in init function (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [include] firmware: add remote status update client support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [firmware] firmware: add Intel Stratix10 service layer driver (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: pci: fix return value of cci_pci_sriov_configure (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: xilinx-pr-decoupler: Remove clk_get error message for probe defer (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: remove redundant dev_err message (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: remove set but not used variable 'afu' (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: remove set but not used variable 'fme' (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: add power management support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: add thermal management support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [documentation] Documentation: fpga: dfl: add descriptions for thermal/power management interfaces (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: Remove dev_err() usage after platform_get_irq() (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [documentation] Documentation: fpga: dfl: add descriptions for virtualization and new interfaces (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: add global error reporting support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add STP (SignalTap) support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add error reporting support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: expose __afu_port_enable/disable function (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add userclock sysfs interfaces (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: convert platform_driver to use dev_groups (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: convert platform_driver to use dev_groups (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: make init callback optional (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-cvp: Add Stratix10 (V2) Support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-cvp: Preparation for V2 parts (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-cvp: Discover Vendor Specific offset (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-ps-spi: Fix getting of optional confd gpio (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: add capability sysfs interfaces (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: make uinit callback optional (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add id_table for dfl private feature driver (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add AFU state related sysfs interfaces (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: pci: enable SRIOV support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: add DFL_FPGA_FME_PORT_RELEASE/ASSIGN ioctl support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: use driver core functions, not sysfs ones (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-pr-ip: Make alt_pr_unregister function void (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-cvp: Fix function definition argument (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga-manager: altera-ps-spi: Fix build error (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: align PR buffer size per PR datawidth (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: remove copy_to_user() in ioctl for PR (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl-fme-mgr: fix FME_PR_INTFC_ID register address (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] drivers: fpga: Kconfig: pedantic cleanups (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [documentation] docs: fpga: convert docs to ReST and rename to *.rst (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441 (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 422 (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 285 (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: zynqmp-fpga: Correctly handle error pointer (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [include] include: fpga: adi-axi-common.h: add common regs & defs header (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: expand minor range when registering chrdev region (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: Add lockdep classes for pdata->lock (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: Pass the correct device to dma_mapping_error() (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: stratix10-soc: fix use-after-free on s10_init() (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] treewide: Add SPDX license identifier - Makefile/Kconfig (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] mm/gup: change GUP fast to use flags rather than a write 'bool' (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga manager: Adding FPGA Manager support for Xilinx zynqmp (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera_freeze_bridge: remove restriction to socfpga (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: mgr: altera-ps-spi: make array dummy static, shrinks object size (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: stratix10-soc: fix wrong of_node_put() in init function (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] Remove 'type' argument from access_ok() function (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: of-fpga-region: Use platform_set_drvdata (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl-fme-region: Use platform_get_drvdata() (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: add intel stratix10 soc fpga manager driver (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: mgr: altera-ps-spi: enable usage on non-dt platforms (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-cvp: fix probing for multiple FPGAs on the bus (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] zynq-fpga: Only route PR via PCAP when required (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-cvp: Fix registration for CvP incapable devices (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: remove set but not used variable 'priv' (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: altera-cvp: fix 'bad IO access' on x86_64 (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: add devm_fpga_region_create (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: bridge: add devm_fpga_bridge_create (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: mgr: add devm_fpga_mgr_create (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [documentation] docs: fpga: document fpga manager flags (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: bridge: fix obvious function documentation error (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: do not access region struct after fpga_region_unregister (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] drivers: fpga: fix two trivial spelling mistakes (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: fix return value check in in pr_mgmt_init() (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add DFL_FPGA_PORT_DMA_MAP/UNMAP ioctls support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add afu sub feature support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add DFL_FPGA_GET_API_VERSION/CHECK_EXTENSION ioctls support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add header sub feature support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: afu: add port ops support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add FPGA Accelerated Function Unit driver basic framework (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme-region: add support for compat_id (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add fpga region platform driver for FME (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add fpga bridge platform driver for FME (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme-mgr: add compat_id support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add fpga manager platform driver for FME (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: add partial reconfiguration sub feature support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: add DFL_FPGA_GET_API_VERSION/CHECK_EXTENSION ioctls support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: fme: add header sub feature support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add FPGA Management Engine driver basic framework (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl-pci: add enumeration for feature devices (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: add FPGA DFL PCIe device driver (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add dfl_fpga_check_port_id function (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add dfl_fpga_port_ops support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add feature device infrastructure (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add dfl_fpga_cdev_find_port (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: dfl: add chardev support for feature devices (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: add device feature list support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: region: add compat_id support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [include] fpga: mgr: add compat_id support (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [fpga] fpga: mgr: add status for fpga-manager (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [include] fpga: mgr: add region_id to fpga_image_info (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [documentation] docs: fpga: add a document for FPGA Device Feature List (DFL) Framework Overview (Luis Goncalves) [1689274 1660310 1494701 1494699]
+- [mm] mm: Add a vmf_insert_mixed_prot() function (Dave Airlie) [1838335]
+- [mm] mm: Add write-protect and clean utilities for address space ranges (Dave Airlie) [1838335]
+- [mm] mm: Add a walk_page_mapping() function to the pagewalk code (Dave Airlie) [1838335]
+- [mm] pagewalk: separate function pointers from iterator data (Dave Airlie) [1838335]
+- [mm] mm: split out a new pagewalk.h header from mm.h (Dave Airlie) [1838335]
+- [mm] mm: update ptep_modify_prot_commit to take old pte value as arg (Dave Airlie) [1838335]
+- [x86] mm: update ptep_modify_prot_start/commit to take vm_area_struct as arg (Dave Airlie) [1838335]
+- [mm] mm/mmu_notifier: add an interval tree notifier (Dave Airlie) [1838335]
+- [mm] mm/mmu_notifier: define the header pre-processor parts even if disabled (Dave Airlie) [1838335]
+- [mm] mm/mmu_notifiers: add a lockdep map for invalidate_range_start/end (Dave Airlie) [1838335]
+- [misc] misc/sgi-gru: use mmu_notifier_get/put for struct gru_mm_struct (Dave Airlie) [1838335]
+- [drm] drm/backport: add mmu notifier get/put support to drm backport (Dave Airlie) [1838335]
+- [mm] mm/mmu_notifiers: add a get/put scheme for the registration (Dave Airlie) [1838335]
+- [mm] mm/mmu_notifiers: do not speculatively allocate a mmu_notifier_mm (Dave Airlie) [1838335]
+- [mm] mm/mmu_notifiers: hoist do_mmu_notifier_register down_write to the caller (Dave Airlie) [1838335]
+- [mm] mm/mmu_notifier.c: remove mmu_notifier_synchronize() (Dave Airlie) [1838335]
+- [infiniband] locking/lockdep: Rename lockdep_assert_held_exclusive() -> lockdep_assert_held_write() (Dave Airlie) [1838335]
+- [include] mm/mmu_notifier: contextual information for event enums (Dave Airlie) [1838335]
+- [mm] mm/memory_hotplug.c: only respect mem= parameter during boot stage (Baoquan He) [1838809 1781472]
+- [scsi] scsi: mpt3sas: Remove unused including <linux/version.h> (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Fix double free warnings (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Disable DIF when prot_mask set to zero (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Capture IOC data for debugging purposes (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Use true, false for ioc->use_32bit_dma (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Remove NULL check before freeing function (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Update mpt3sas version to 33.101.00.00 (Tomas Henzl) [1790760]
+- [scsi] mpt3sas: Fix memset in non-rdpq mode (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Fix reply queue count in non RDPQ mode (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Handle RDPQ DMA allocation in same 4G region (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Separate out RDPQ allocation to new function (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Rename function name is_MSB_are_same (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Don't change the DMA coherent mask after allocations (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: use true, false for bool variables (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Fix kernel panic observed on soft HBA unplug (Tomas Henzl) [1790760]
+- [scsi] scsi: Replace zero-length array with flexible-array member (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Update drive version to 33.100.00.00 (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Remove usage of device_busy counter (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Print function name in which cmd timed out (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Optimize mpt3sas driver logging (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: print in which path firmware fault occurred (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Handle CoreDump state from watchdog thread (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Add support IOCs new state named COREDUMP (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: renamed _base_after_reset_handler function (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Add support for NVMe shutdown (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Update MPI Headers to v02.00.57 (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Fix double free in attach error handling (Tomas Henzl) [1790760]
+- [scsi] scsi: mpt3sas: Clean up some indenting (Tomas Henzl) [1790760]
+- [crypto] crypto: af_alg - cast ki_complete ternary op to int (Herbert Xu) [1837499]
+- [netdrv] virtio-net: per-queue RPS config (Eugenio Perez) [1718086]
+- [netdrv] virtio_net: Differentiate sk_buff and xdp_frame on freeing (Eugenio Perez) [1718086]
+- [netdrv] virtio_net: Use xdp_return_frame to free xdp_frames on destroying vqs (Eugenio Perez) [1718086]
+- [netdrv] virtio_net: enable napi_tx by default (Eugenio Perez) [1718086]
+- [netdrv] virtio_net: Don't call free_old_xmit_skbs for xdp_frames (Eugenio Perez) [1718086]
+- [netdrv] virtio_net: Don't enable NAPI when interface is down (Eugenio Perez) [1718086]
+- [include] cpumask: make cpumask_next_wrap available without smp (Eugenio Perez) [1718086]
+- [netdrv] virtio_net: Stripe queue affinities across cores (Eugenio Perez) [1718086]
+- [virtio] virtio: Make vp_set_vq_affinity() take a mask (Eugenio Perez) [1718086]
+
+* Thu Jun 04 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-211.el8]
+- [netdrv] ice: add board identifier info to devlink .info_get (Jonathan Toppins) [1796682]
+- [netdrv] ice: add basic handler for devlink .info_get (Jonathan Toppins) [1796682]
+- [netdrv] ice: enable initial devlink support (Jonathan Toppins) [1796682]
+- [netdrv] ice: implement full NVM read from ETHTOOL_GEEPROM (Jonathan Toppins) [1796682]
+- [netdrv] ice: discover and store size of available flash (Jonathan Toppins) [1796682]
+- [netdrv] ice: store NVM version info in extracted format (Jonathan Toppins) [1796682]
+- [netdrv] ice: create function to read a section of the NVM and Shadow RAM (Jonathan Toppins) [1796682]
+- [netdrv] ice: use __le16 types for explicitly Little Endian values (Jonathan Toppins) [1796682]
+- [netdrv] ice: fix incorrect size description of ice_get_nvm_version (Jonathan Toppins) [1781388]
+- [netdrv] ice: use variable name more descriptive than type (Jonathan Toppins) [1781388]
+- [netdrv] ice: Use EOPNOTSUPP instead of ENOTSUPP (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix format specifier (Jonathan Toppins) [1781388]
+- [netdrv] ice: fix use of deprecated strlcpy() (Jonathan Toppins) [1781388]
+- [netdrv] ice: Increase mailbox receive queue length to maximum (Jonathan Toppins) [1781388]
+- [netdrv] ice: Correct setting VLAN pruning (Jonathan Toppins) [1781388]
+- [netdrv] ice: renegotiate link after FW DCB on (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix corner case when switching from IEEE to CEE (Jonathan Toppins) [1781388]
+- [netdrv] ice: Display Link detected via Ethtool in safe mode (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix removing driver while bare-metal VFs pass traffic (Jonathan Toppins) [1781388]
+- [netdrv] ice: Improve clarity of prints and variables (Jonathan Toppins) [1781388]
+- [netdrv] ice: allow bigger VFs (Jonathan Toppins) [1781388]
+- [netdrv] ice: Cleanup unneeded parenthesis (Jonathan Toppins) [1781388]
+- [netdrv] ice: Use pci_get_dsn() (Jonathan Toppins) [1781388]
+- [netdrv] ice: let core reject the unsupported coalescing parameters (Jonathan Toppins) [1781388]
+- [netdrv] ice: fix define for E822 backplane device (Jonathan Toppins) [1781388]
+- [netdrv] ice: add support for E823 devices (Jonathan Toppins) [1795812]
+- [netdrv] ice: add backslash-n to strings (Jonathan Toppins) [1781388]
+- [netdrv] ice: increase PF reset wait timeout to 300 milliseconds (Jonathan Toppins) [1781388]
+- [netdrv] ice: Support XDP UMEM wake up mechanism (Jonathan Toppins) [1781388]
+- [netdrv] ice: SW DCB, report correct max TC value (Jonathan Toppins) [1781388]
+- [netdrv] ice: Report correct DCB mode (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add DCBNL ops required to configure ETS in CEE for SW DCB (Jonathan Toppins) [1781388]
+- [netdrv] ice: Always clear the QRXFLXP_CNTXT register for VF Rx queues (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix for TCAM entry management (Jonathan Toppins) [1781388]
+- [netdrv] ice: update malicious driver detection event handling (Jonathan Toppins) [1781388]
+- [netdrv] ice: Validate config for SW DCB map (Jonathan Toppins) [1781388]
+- [netdrv] ice: Wait for VF to be reset/ready before configuration (Jonathan Toppins) [1792691]
+- [netdrv] ice: Don't reject odd values of usecs set by user (Jonathan Toppins) [1781388]
+- [netdrv] ice: use true/false for bool types (Jonathan Toppins) [1781388]
+- [netdrv] ice: add function argument description to function header comment (Jonathan Toppins) [1781388]
+- [netdrv] ice: use proper format for function pointer as a function parameter (Jonathan Toppins) [1781388]
+- [netdrv] ice: remove unnecessary fallthrough comments (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix virtchnl_queue_select bitmap validation (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix and refactor Rx queue disable for VFs (Jonathan Toppins) [1781388]
+- [netdrv] ice: Handle LAN overflow event for VF queues (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix implicit queue mapping mode in ice_vsi_get_qs (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add support to enable/disable all Rx queues before waiting (Jonathan Toppins) [1781388]
+- [netdrv] ice: Only allow tagged bcast/mcast traffic for VF in port VLAN (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix Port VLAN priority bits (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add helper to determine if VF link is up (Jonathan Toppins) [1781388]
+- [netdrv] ice: Refactor port vlan configuration for the VF (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add initial support for QinQ (Jonathan Toppins) [1781388]
+- [netdrv] ice: Trivial fixes (Jonathan Toppins) [1781388]
+- [netdrv] ice: Use correct netif error function (Jonathan Toppins) [1781388]
+- [netdrv] ice: Cleanup ice_vsi_alloc_q_vectors (Jonathan Toppins) [1781388]
+- [netdrv] ice: Make print statements more compact (Jonathan Toppins) [1781388]
+- [netdrv] ice: Use ice_pf_to_dev (Jonathan Toppins) [1781388]
+- [netdrv] ice: Remove possible null dereference (Jonathan Toppins) [1781388]
+- [netdrv] ice: update Unit Load Status bitmask to check after reset (Jonathan Toppins) [1781388]
+- [netdrv] ice: fix and consolidate logging of NVM/firmware version information (Jonathan Toppins) [1781388]
+- [netdrv] ice: Modify link message logging (Jonathan Toppins) [1781388]
+- [netdrv] ice: Remove CONFIG_PCI_IOV wrap in ice_set_pf_caps (Jonathan Toppins) [1781388]
+- [netdrv] ice: Remove ice_dev_onetime_setup() (Jonathan Toppins) [1781388]
+- [netdrv] ice: Don't allow same value for Rx tail to be written twice (Jonathan Toppins) [1781388]
+- [netdrv] ice: display supported and advertised link modes (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix switch between FW and SW LLDP (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix DCB rebuild after reset (Jonathan Toppins) [1781388]
+- [netdrv] ice: Bump version (Jonathan Toppins) [1781401]
+- [netdrv] ice: Implement ethtool get/set rx-flow-hash (Jonathan Toppins) [1781401]
+- [netdrv] ice: Initilialize VF RSS tables (Jonathan Toppins) [1781401]
+- [netdrv] ice: Optimize table usage (Jonathan Toppins) [1781401]
+- [netdrv] ice: Enable writing filtering tables (Jonathan Toppins) [1781401]
+- [netdrv] ice: Populate TCAM filter software structures (Jonathan Toppins) [1781401]
+- [netdrv] ice: Allocate flow profile (Jonathan Toppins) [1781401]
+- [netdrv] ice: Enable writing hardware filtering tables (Jonathan Toppins) [1781401]
+- [netdrv] ice: remove redundant assignment to variable xmit_done (Jonathan Toppins) [1781388]
+- [netdrv] ice: Removing hung_queue variable to use txqueue function parameter (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add device ids for E822 devices (Jonathan Toppins) [1781951]
+- [netdrv] ice: Suppress Coverity warnings for xdp_rxq_info_reg (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add a boundary check in ice_xsk_umem() (Jonathan Toppins) [1781388]
+- [netdrv] ice: add extra check for null Rx descriptor (Jonathan Toppins) [1781388]
+- [netdrv] ice: suppress checked_return error (Jonathan Toppins) [1781388]
+- [netdrv] ice: Demote MTU change print to debug (Jonathan Toppins) [1781388]
+- [netdrv] ice: Enable ip link show on the PF to display VF unicast MAC(s) (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix VF link state when it's IFLA_VF_LINK_STATE_AUTO (Jonathan Toppins) [1781388]
+- [netdrv] ice: Remove Rx flex descriptor programming (Jonathan Toppins) [1781388]
+- [netdrv] ice: Return error on not supported ethtool -C parameters (Jonathan Toppins) [1781388]
+- [netdrv] ice: Restore interrupt throttle settings after VSI rebuild (Jonathan Toppins) [1781388]
+- [netdrv] ice: Set default value for ITR in alloc function (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add ice_for_each_vf() macro (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add code to keep track of current dflt_vsi (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix VF spoofchk (Jonathan Toppins) [1781388]
+- [netdrv] ice: Support UDP segmentation offload (Jonathan Toppins) [1781388]
+- [netdrv] ice: Update FW API minor version (Jonathan Toppins) [1781388]
+- [netdrv] ice: remove pointless NULL check of port_info (Jonathan Toppins) [1781388]
+- [netdrv] ice: Implement ethtool ops for channels (Jonathan Toppins) [1781388]
+- [netdrv] ice: implement VF stats NDO (Jonathan Toppins) [1781388]
+- [netdrv] ice: add helpers for virtchnl (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add ice_pf_to_dev(pf) macro (Jonathan Toppins) [1781388]
+- [netdrv] ice: Do not use devm* functions for local uses (Jonathan Toppins) [1781388]
+- [netdrv] ice: Refactor removal of VLAN promiscuous rules (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix setting coalesce to handle DCB configuration (Jonathan Toppins) [1781388]
+- [netdrv] ice: Only disable VF state when freeing each VF resources (Jonathan Toppins) [1781388]
+- [netdrv] ice: fix stack leakage (Jonathan Toppins) [1781388]
+- [netdrv] ice: Don't modify stripping for add/del VLANs on VF (Jonathan Toppins) [1781388]
+- [netdrv] ice: Disallow VF VLAN opcodes if VLAN offloads disabled (Jonathan Toppins) [1781388]
+- [netdrv] ice: Correct capabilities reporting of max TCs (Jonathan Toppins) [1781388]
+- [netdrv] ice: Store number of functions for the device (Jonathan Toppins) [1781388]
+- [netdrv] ice: fix potential infinite loop because loop counter being too small (Jonathan Toppins) [1781388]
+- [netdrv] ice: print opcode when printing controlq errors (Jonathan Toppins) [1781388]
+- [netdrv] ice: use more accurate ICE_DBG mask types (Jonathan Toppins) [1781388]
+- [netdrv] ice: Introduce and use ice_vsi_type_str (Jonathan Toppins) [1781388]
+- [netdrv] ice: remove unnecessary conditional check (Jonathan Toppins) [1781388]
+- [netdrv] ice: Update enum ice_flg64_bits to current specification (Jonathan Toppins) [1781388]
+- [netdrv] ice: delay less (Jonathan Toppins) [1781388]
+- [netdrv] ice: use pkg_dwnld_status instead of sq_last_status (Jonathan Toppins) [1781388]
+- [netdrv] ice: Change max MSI-x vector_id check in cfg_irq_map (Jonathan Toppins) [1781388]
+- [netdrv] ice: Check if VF is disabled for Opcode and other operations (Jonathan Toppins) [1781388]
+- [netdrv] ice: configure software LLDP in ice_init_pf_dcb (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix to change Rx/Tx ring descriptor size via ethtool with DCBx (Jonathan Toppins) [1781388]
+- [netdrv] ice: avoid setting features during reset (Jonathan Toppins) [1781388]
+- [netdrv] ice: Implement DCBNL support (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add NDO callback to set the maximum per-queue bitrate (Jonathan Toppins) [1781388]
+- [netdrv] ice: Use ice_ena_vsi and ice_dis_vsi in DCB configuration flow (Jonathan Toppins) [1781388]
+- [netdrv] ice: Fix return value when SR-IOV is not supported (Jonathan Toppins) [1781388]
+- [netdrv] ice: Rename VF function ice_vc_dis_vf to match its behavior (Jonathan Toppins) [1781388]
+- [netdrv] ice: Get rid of ice_cleanup_header (Jonathan Toppins) [1781388]
+- [netdrv] ice: print PCI link speed and width (Jonathan Toppins) [1781388]
+- [netdrv] ice: print unsupported module message (Jonathan Toppins) [1781388]
+- [netdrv] ice: write register with correct offset (Jonathan Toppins) [1781388]
+- [netdrv] ice: Check for null pointer dereference when setting rings (Jonathan Toppins) [1781388]
+- [netdrv] ice: save PCI state in probe (Jonathan Toppins) [1781388]
+- [netdrv] ice: Adjust DCB INIT for SW mode (Jonathan Toppins) [1781388]
+- [netdrv] ice: fix driver unload flow (Jonathan Toppins) [1781388]
+- [netdrv] ice: handle DCBx non-contiguous TC request (Jonathan Toppins) [1781388]
+- [netdrv] ice: Update Boot Configuration Section read of NVM (Jonathan Toppins) [1781388]
+- [netdrv] ice: add ethtool -m support for reading i2c eeprom modules (Jonathan Toppins) [1781388]
+- [netdrv] ice: allow 3k MTU for XDP (Jonathan Toppins) [1781388]
+- [netdrv] ice: add build_skb() support (Jonathan Toppins) [1781388]
+- [netdrv] ice: introduce frame padding computation logic (Jonathan Toppins) [1781388]
+- [netdrv] ice: introduce legacy Rx flag (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add support for AF_XDP (Jonathan Toppins) [1730487]
+- [netdrv] ice: Move common functions to ice_txrx_lib.c (Jonathan Toppins) [1781388]
+- [netdrv] ice: Add support for XDP (Jonathan Toppins) [1730487]
+- [netdrv] ice: get rid of per-tc flow in Tx queue configuration routines (Jonathan Toppins) [1781388]
+- [netdrv] ice: Introduce ice_base.c (Jonathan Toppins) [1781388]
+- [netdrv] net:Use skb accessors in network drivers (Jonathan Toppins) [1781388]
+- [powerpc] powerpc/eeh: Remove eeh_add_device_tree_late() (Myron Stowe) [1840904]
+- [powerpc] powerpc/eeh: Add sysfs files in late probe (Myron Stowe) [1840904]
+- [powerpc] powerpc: Drop using struct of_pci_range.pci_space field (Myron Stowe) [1840904]
+- [powerpc] powerpc/pci: Fold pcibios_setup_device() into pcibios_bus_add_device() (Myron Stowe) [1840904]
+- [powerpc] powerpc/pci: Remove pcibios_setup_bus_devices() (Myron Stowe) [1840904]
+- [powerpc] powerpc/pci: Fix pcibios_setup_device() ordering (Myron Stowe) [1840904]
+- [powerpc] powerpc/pci: Remove legacy debug code (Myron Stowe) [1840904]
+- [x86] x86/microcode/AMD: Increase microcode PATCH_MAX_SIZE (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Make stub function static inline (David Arcari) [1826966]
+- [x86] x86/microcode/intel: Issue the revision updated message only on the BSP (David Arcari) [1826966]
+- [x86] x86/microcode: Update late microcode in parallel (David Arcari) [1826966]
+- [x86] x86/microcode/amd: Fix two -Wunused-but-set-variable warnings (David Arcari) [1826966]
+- [x86] x86/microcode: Fix the microcode load on CPU hotplug for real (David Arcari) [1826966]
+- [x86] x86/microcode, cpuhotplug: Add a microcode loader CPU hotplug callback (David Arcari) [1826966]
+- [x86] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 353 (David Arcari) [1826966]
+- [x86] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (David Arcari) [1826966]
+- [x86] treewide: Add SPDX license identifier - Makefile/Kconfig (David Arcari) [1826966]
+- [x86] x86/microcode: Fix the ancient deprecated microcode loading method (David Arcari) [1826966]
+- [x86] x86/microcode/intel: Refactor Intel microcode blob loading (David Arcari) [1826966]
+- [x86] x86/microcode: Announce reload operation's completion (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Update copyright (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Check the equivalence table size when scanning it (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Convert CPU equivalence table variable into a struct (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Check microcode container data in the late loader (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Fix container size's type (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Convert early parser to the new verification routines (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Change verify_patch()'s return value (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Move chipset-specific check into verify_patch() (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Move patch family check to verify_patch() (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Simplify patch family detection (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Concentrate patch verification (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Cleanup verify_patch_size() more (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Clean up per-family patch size checks (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Move verify_patch_size() up in the file (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Add microcode container verification (David Arcari) [1826966]
+- [x86] x86/microcode/AMD: Subtract SECTION_HDR_SIZE from file leftover length (David Arcari) [1826966]
+- [x86] x86/microcode: Make revision and processor flags world-readable (David Arcari) [1826966]
+- [pci] PCI: Add pci_status_get_and_clear_errors (Josef Oskera) [1840535]
+- [pci] PCI: Add constant PCI_STATUS_ERROR_BITS (Josef Oskera) [1840535]
+- [arm64] arm64: dts: ls1046ardb: set RGMII interfaces to RGMII_ID mode (Petr Oros) [1816982]
+- [arm64] arm64: dts: ls1043a-rdb: correct RGMII delay mode to rgmii-id (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: Fix pause frame negotiation (Petr Oros) [1816982]
+- [netdrv] net: phy: propagate an error back to the callers of phy_sfp_probe (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: fix clock sink configuration on ATH8030 and ATH8035 (Petr Oros) [1816982]
+- [netdrv] r8169: fix resume on cable plug-in (Petr Oros) [1816982]
+- [documentation] dt-bindings: net: remove un-implemented property (Petr Oros) [1816982]
+- [netdrv] net: phy: mdio-bcm-unimac: Fix clock handling (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: w/a for fld detect threshold bootstrapping issue (Petr Oros) [1816982]
+- [netdrv] net: phy: sfp-bus.c: get rid of docs warnings (Petr Oros) [1816982]
+- [netdrv] net: phy: mdio-mux-bcm-iproc: check clk_prepare_enable() return value (Petr Oros) [1816982]
+- [netdrv] net: phy: fix MDIO bus PM PHY resuming (Petr Oros) [1816982]
+- [of] drivers/of/of_mdio.c:fix of_mdiobus_register() (Petr Oros) [1816982]
+- [netdrv] net: phy: bcm63xx: fix OOPS due to missing driver name (Petr Oros) [1816982]
+- [netdrv] phylink: Improve error message when validate failed (Petr Oros) [1816982]
+- [netdrv] net: phy: avoid clearing PHY interrupts twice in irq handler (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: don't interpret PHY status unless resolved (Petr Oros) [1816982]
+- [netdrv] net: phy: mscc: fix firmware paths (Petr Oros) [1816982]
+- [netdrv] net: phy: corrected the return value for genphy_check_and_restart_aneg and genphy_c45_check_and_restart_aneg (Petr Oros) [1816982]
+- [documentation] docs: networking: phy: Rephrase paragraph for clarity (Petr Oros) [1816982]
+- [netdrv] net: phy: Avoid multiple suspends (Petr Oros) [1816982]
+- [netdrv] net: phy: broadcom: Fix a typo ("firsly") (Petr Oros) [1816982]
+- [netdrv] net: phy: restore mdio regs in the iproc mdio driver (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: disable vddio regulator (Petr Oros) [1816982]
+- [netdrv] net: mii_timestamper: fix static allocation by PHY driver (Petr Oros) [1816982]
+- [of] net: mdio: of: fix potential NULL pointer derefernce (Petr Oros) [1816982]
+- [netdrv] net: phy: add default ARCH_BCM_IPROC for MDIO_BCM_IPROC (Petr Oros) [1816982]
+- [netdrv] net: phy: DP83822: Add support for additional DP83825 devices (Petr Oros) [1816982]
+- [netdrv] phy: dp83826: Add phy IDs for DP83826N and 826NC (Petr Oros) [1816982]
+- [netdrv] net: phy: add new version of phy_do_ioctl (Petr Oros) [1816982]
+- [netdrv] net: phy: rename phy_do_ioctl to phy_do_ioctl_running (Petr Oros) [1816982]
+- [netdrv] r8169: use generic ndo_do_ioctl handler phy_do_ioctl (Petr Oros) [1816982]
+- [netdrv] net: phy: add generic ndo_do_ioctl handler phy_do_ioctl (Petr Oros) [1816982]
+- [netdrv] net: phylink: allow in-band AN for USXGMII (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: fix a warning about msleep (Petr Oros) [1816982]
+- [netdrv] net: phy: don't crash in phy_read/_write_mmd without a PHY driver (Petr Oros) [1816982]
+- [netdrv] net: phylink: Allow 2.5BASE-T, 5GBASE-T and 10GBASE-T for the 10G link modes (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: const-ify static data (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: Set FORCE_LINK_GOOD to default after reset (Petr Oros) [1816982]
+- [netdrv] net: phy: Maintain MDIO device and bus statistics (Petr Oros) [1816982]
+- [powerpc] powerpc: Add const qual to local_read() parameter (Petr Oros) [1816982]
+- [include] u64_stats: provide u64_stats_t type (Petr Oros) [1816982]
+- [documentation] Documentation: net-sysfs: Remove duplicate PHY device documentation (Petr Oros) [1816982]
+- [netdrv] mdio_bus: Simplify reset handling and extend to non-DT systems (Petr Oros) [1816982]
+- [netdrv] net: phy: Added IRQ print to phylink_bringup_phy() (Petr Oros) [1816982]
+- [netdrv] net: phy: DP83822: Update Kconfig with DP83825I support (Petr Oros) [1816982]
+- [netdrv] net: phy: DP83TC811: Fix typo in Kconfig (Petr Oros) [1816982]
+- [netdrv] net: phylink: add support for polling MAC PCS (Petr Oros) [1816982]
+- [netdrv] net: phylink: make QSGMII a valid PHY mode for in-band AN (Petr Oros) [1816982]
+- [uapi] mii: Add helpers for parsing SGMII auto-negotiation (Petr Oros) [1816982]
+- [netdrv] net: phylink: fix failure to register on x86 systems (Petr Oros) [1816982]
+- [netdrv] net: phy: fixed_phy: switch to using fwnode_gpiod_get_index (Petr Oros) [1816982]
+- [netdrv] net: phy: fixed_phy: fix use-after-free when checking link GPIO (Petr Oros) [1816982]
+- [netdrv] net: phylink: switch to using fwnode_gpiod_get_index() (Petr Oros) [1816982]
+- [netdrv] net: phy: realtek: add support for configuring the RX delay on RTL8211F (Petr Oros) [1816982]
+- [netdrv] net: phy: realtek: add logging for the RGMII TX delay configuration (Petr Oros) [1816982]
+- [netdrv] net: mdio: of: Register discovered MII time stampers (Petr Oros) [1816982]
+- [documentation] dt-bindings: ptp: Introduce MII time stamping devices (Petr Oros) [1816982]
+- [netdrv] net: Add a layer for non-PHY MII time stamping drivers (Petr Oros) [1816982]
+- [netdrv] net: Introduce a new MII time stamping interface (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83640: Move the probe and remove methods around (Petr Oros) [1816982]
+- [netdrv] net: netcp_ethss: Use the PHY time stamping interface (Petr Oros) [1816982]
+- [net] net: ethtool: Use the PHY time stamping interface (Petr Oros) [1816982]
+- [net] net: vlan: Use the PHY time stamping interface (Petr Oros) [1816982]
+- [netdrv] net: macvlan: Use the PHY time stamping interface (Petr Oros) [1816982]
+- [include] net: phy: Introduce helper functions for time stamping support (Petr Oros) [1816982]
+- [include] of: mdio: Add missing inline to of_mdiobus_child_is_phy() dummy (Petr Oros) [1816982]
+- [netdrv] net: phy: aquantia: add suspend / resume ops for AQR105 (Petr Oros) [1816982]
+- [netdrv] net: phy: ensure that phy IDs are correctly typed (Petr Oros) [1816982]
+- [include] mod_devicetable: fix PHY module format (Petr Oros) [1816982]
+- [of] of: mdio: export of_mdiobus_child_is_phy (Petr Oros) [1816982]
+- [netdrv] net: sfp: report error on failure to read sfp soft status (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: use genphy_check_and_restart_aneg() (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: use phy_modify_changed() (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: use existing clause 37 definitions (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: consolidate phy status reading (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: use positive logic for link state (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: initialise link partner state earlier (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: rearrange to use genphy_read_lpa() (Petr Oros) [1816982]
+- [netdrv] net: phy: provide and use genphy_read_status_fixed() (Petr Oros) [1816982]
+- [netdrv] net: phy: add genphy_check_and_restart_aneg() (Petr Oros) [1816982]
+- [netdrv] net: phy: use phy_resolve_aneg_pause() (Petr Oros) [1816982]
+- [netdrv] net: phy: remove redundant .aneg_done initialisers (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83869: Remove unneeded semicolon (Petr Oros) [1816982]
+- [netdrv] net: phylink: extend clause 45 PHY validation workaround (Petr Oros) [1816982]
+- [netdrv] net: phylink: improve clause 45 PHY ksettings_set implementation (Petr Oros) [1816982]
+- [netdrv] net: phylink: fix interface passed to mac_link_up (Petr Oros) [1816982]
+- [netdrv] net: phylink: propagate phy_attach_direct() return code (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: Add rx-fifo-depth and tx-fifo-depth (Petr Oros) [1816982]
+- [documentation] dt-bindings: dp83867: Convert fifo-depth to common fifo-depth and make optional (Petr Oros) [1816982]
+- [netdrv] net: sfp: re-attempt probing for phy (Petr Oros) [1816982]
+- [netdrv] net: sfp: error handling for phy probe (Petr Oros) [1816982]
+- [netdrv] net: sfp: rename sm_retries (Petr Oros) [1816982]
+- [netdrv] net: sfp: use a definition for the fault recovery attempts (Petr Oros) [1816982]
+- [netdrv] net: sfp: add support for Clause 45 PHYs (Petr Oros) [1816982]
+- [netdrv] net: phy: add Broadcom BCM84881 PHY driver (Petr Oros) [1816982]
+- [netdrv] net: phylink: make Broadcom BCM84881 based SFPs work (Petr Oros) [1816982]
+- [netdrv] net: phylink: delay MAC configuration for copper SFP modules (Petr Oros) [1816982]
+- [netdrv] net: phylink: split phylink_sfp_module_insert() (Petr Oros) [1816982]
+- [netdrv] net: phylink: split link_an_mode configured and current settings (Petr Oros) [1816982]
+- [netdrv] net: phylink: support Clause 45 PHYs on SFP+ modules (Petr Oros) [1816982]
+- [netdrv] net: phylink: re-split __phylink_connect_phy() (Petr Oros) [1816982]
+- [netdrv] net: mdio-i2c: add support for Clause 45 accesses (Petr Oros) [1816982]
+- [netdrv] net: sfp: move phy_start()/phy_stop() to phylink (Petr Oros) [1816982]
+- [netdrv] net: sfp: add module start/stop upstream notifications (Petr Oros) [1816982]
+- [netdrv] net: sfp: derive interface mode from ethtool link modes (Petr Oros) [1816982]
+- [netdrv] net: sfp: remove incomplete 100BASE-FX and 100BASE-LX support (Petr Oros) [1816982]
+- [netdrv] net: sfp: avoid tx-fault with Nokia GPON module (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: fix hfs boot in rgmii mode (Petr Oros) [1816982]
+- [netdrv] phy: mdio-thunder: add missed pci_release_regions in remove (Petr Oros) [1816982]
+- [netdrv] net: sfp: fix hwmon (Petr Oros) [1816982]
+- [netdrv] net: sfp: fix unbind (Petr Oros) [1816982]
+- [netdrv] net: phy: realtek: fix using paged operations with RTL8105e / RTL8208 (Petr Oros) [1816982]
+- [netdrv] net: phy: Use the correct style for SPDX License Identifier (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83869: Fix return paths to return proper values (Petr Oros) [1816982]
+- [netdrv] net: phy: add helpers phy_(un)lock_mdio_bus (Petr Oros) [1816982]
+- [netdrv] mdio_bus: don't use managed reset-controller (Petr Oros) [1816982]
+- [netdrv] net: phy: initialise phydev speed and duplex sanely (Petr Oros) [1816982]
+- [netdrv] net: phy: remove phy_ethtool_sset() (Petr Oros) [1816982]
+- [netdrv] net: sfp: soft status and control support (Petr Oros) [1816982]
+- [netdrv] net: sfp: add some quirks for GPON modules (Petr Oros) [1816982]
+- [netdrv] net: sfp: add support for module quirks (Petr Oros) [1816982]
+- [netdrv] net: phylink: fix link mode modification in PHY mode (Petr Oros) [1816982]
+- [netdrv] net: phylink: update documentation on create and destroy (Petr Oros) [1816982]
+- [netdrv] mdio_bus: Fix init if CONFIG_RESET_CONTROLLER=n (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83869: fix return of uninitialized variable ret (Petr Oros) [1816982]
+- [netdrv] phy: mdio-sun4i: add missed regulator_disable in remove (Petr Oros) [1816982]
+- [netdrv] mscc.c: fix semicolon.cocci warnings (Petr Oros) [1816982]
+- [netdrv] net: phy: avoid matching all-ones clause 45 PHY IDs (Petr Oros) [1816982]
+- [netdrv] net: phylink: update to use phy_support_asym_pause() (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell10g: add SFP+ support (Petr Oros) [1816982]
+- [netdrv] net: phy: add core phylib sfp support (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83869: Add TI dp83869 phy (Petr Oros) [1816982]
+- [documentation] dt-bindings: net: dp83869: Add TI dp83869 phy (Petr Oros) [1816982]
+- [netdrv] mscc.c: Add support for additional VSC PHYs (Petr Oros) [1816982]
+- [netdrv] net: sfp: fix spelling mistake "requies" -> "requires" (Petr Oros) [1816982]
+- [netdrv] net: sfp: allow modules with slow diagnostics to probe (Petr Oros) [1816982]
+- [netdrv] net: sfp: allow sfp to probe slow to initialise GPON modules (Petr Oros) [1816982]
+- [netdrv] net: sfp: move module insert reporting out of probe (Petr Oros) [1816982]
+- [netdrv] net: sfp: split power mode switching from probe (Petr Oros) [1816982]
+- [netdrv] net: sfp: track upstream's attachment state in state machine (Petr Oros) [1816982]
+- [netdrv] net: sfp: ensure TX_FAULT has deasserted before probing the PHY (Petr Oros) [1816982]
+- [netdrv] net: sfp: allow fault processing to transition to other states (Petr Oros) [1816982]
+- [netdrv] net: sfp: eliminate mdelay() from PHY probe (Petr Oros) [1816982]
+- [netdrv] net: sfp: split the PHY probe from sfp_sm_mod_init() (Petr Oros) [1816982]
+- [netdrv] net: sfp: control TX_DISABLE and phy only from main state machine (Petr Oros) [1816982]
+- [netdrv] net: sfp: avoid power switch on address-change modules (Petr Oros) [1816982]
+- [netdrv] net: sfp: parse SFP power requirement earlier (Petr Oros) [1816982]
+- [netdrv] net: sfp: rename T_PROBE_WAIT to T_SERIAL (Petr Oros) [1816982]
+- [netdrv] net: sfp: handle module remove outside state machine (Petr Oros) [1816982]
+- [netdrv] net: sfp: rename sfp_sm_ins_next() as sfp_sm_mod_next() (Petr Oros) [1816982]
+- [netdrv] net: sfp: move tx disable on device down to main state machine (Petr Oros) [1816982]
+- [netdrv] net: sfp: move sfp sub-state machines into separate functions (Petr Oros) [1816982]
+- [netdrv] net: sfp: fix sfp_bus_put() kernel documentation (Petr Oros) [1816982]
+- [include] net: sfp: fix sfp_bus_add_upstream() warning (Petr Oros) [1816982]
+- [netdrv] net: sfp: rework upstream interface (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: add missing dependency on CONFIG_REGULATOR (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: remove config_init for AR9331 (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: fix the PHY names (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: mention AR8033 as same as AR8031 (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: add device tree binding (Petr Oros) [1816982]
+- [documentation] dt-bindings: net: phy: Add support for AT803X (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: fix Kconfig description (Petr Oros) [1816982]
+- [netdrv] net: phylink: Fix phylink_dbg() macro (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: add downshift support for 88E1145 (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: add PHY tunable support for more PHY versions (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: add downshift support for M88E1111 (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: fix downshift function naming (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: fix typo in constant MII_M1011_PHY_SRC_DOWNSHIFT_MASK (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: support Wake on LAN (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: move dt parsing to probe (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: enable robust auto-mdix (Petr Oros) [1816982]
+- [netdrv] net: phy: smsc: LAN8740: add PHY_RST_AFTER_CLK_EN flag (Petr Oros) [1816982]
+- [netdrv] net: phy: broadcom: add 1000Base-X support for BCM54616S (Petr Oros) [1816982]
+- [netdrv] net: phy: add support for clause 37 auto-negotiation (Petr Oros) [1816982]
+- [netdrv] net: phy: modify assignment to OR for dev_flags in phy_attach_direct (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: remove superseded function marvell_set_downshift (Petr Oros) [1816982]
+- [netdrv] net: phy: marvell: support downshift as PHY tunable (Petr Oros) [1816982]
+- [netdrv] net: phy: avoid NPE if read_page/write_page callbacks are not available (Petr Oros) [1816982]
+- [netdrv] net: phy: micrel: Update KSZ87xx PHY name (Petr Oros) [1816982]
+- [netdrv] net: phy: micrel: Discern KSZ8051 and KSZ8795 PHYs (Petr Oros) [1816982]
+- [netdrv] net: phy: Fix "link partner" information disappear issue (Petr Oros) [1816982]
+- [netdrv] net: sfp: move fwnode parsing into sfp-bus layer (Petr Oros) [1816982]
+- [netdrv] net: phylink: use more linkmode_* (Petr Oros) [1816982]
+- [netdrv] phylink: fix kernel-doc warnings (Petr Oros) [1816982]
+- [netdrv] net: phy: mscc: make arrays static, makes object smaller (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: use operating parameters from PHY-specific status (Petr Oros) [1816982]
+- [netdrv] net: phy: extract pause mode (Petr Oros) [1816982]
+- [netdrv] net: phy: extract link partner advertisement reading (Petr Oros) [1816982]
+- [netdrv] net: phy: allow for reset line to be tied to a sleepy GPIO controller (Petr Oros) [1816982]
+- [documentation] docs: networking: phy: Improve phrasing (Petr Oros) [1816982]
+- [netdrv] net: phy: broadcom: Use bcm54xx_config_clock_delay() for BCM54612E (Petr Oros) [1816982]
+- [netdrv] net: phy: broadcom: Fix RGMII delays configuration for BCM54210E (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: remove probe and struct at803x_priv (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: add ar9331 support (Petr Oros) [1816982]
+- [of] of: mdio: Fix a signedness bug in of_phy_get_and_connect() (Petr Oros) [1816982]
+- [netdrv] net/phy: fix DP83865 10 Mbps HDX loopback disable function (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: implement Energy Detect Powerdown mode via phy-tunable (Petr Oros) [1816982]
+- [net] ethtool: implement Energy Detect Powerdown support via phy-tunable (Petr Oros) [1816982]
+- [netdrv] net: mdio: switch to using gpiod_get_optional() (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: Add SGMII mode type switching (Petr Oros) [1816982]
+- [documentation] net: phy: dp83867: Add documentation for SGMII mode type (Petr Oros) [1816982]
+- [netdrv] net: phylink: Fix flow control resolution (Petr Oros) [1816982]
+- [netdrv] net: phy: Do not check Link status when loopback is enabled (Petr Oros) [1816982]
+- [netdrv] net: phy: gmii2rgmii: Dont use priv field in phy device (Petr Oros) [1816982]
+- [include] include: mdio: Add driver data helpers (Petr Oros) [1816982]
+- [netdrv] net: phy: force phy suspend when calling phy_stop (Petr Oros) [1816982]
+- [netdrv] phy: mdio-sun4i: use devm_platform_ioremap_resource() to simplify code (Petr Oros) [1816982]
+- [netdrv] phy: mdio-mux-meson-g12a: use devm_platform_ioremap_resource() to simplify code (Petr Oros) [1816982]
+- [netdrv] phy: mdio-moxart: use devm_platform_ioremap_resource() to simplify code (Petr Oros) [1816982]
+- [netdrv] phy: mdio-hisi-femac: use devm_platform_ioremap_resource() to simplify code (Petr Oros) [1816982]
+- [netdrv] phy: mdio-bcm-iproc: use devm_platform_ioremap_resource() to simplify code (Petr Oros) [1816982]
+- [netdrv] net: phy: sfp: Add labels to hwmon sensors (Petr Oros) [1816982]
+- [netdrv] net: phy: remove genphy_config_init (Petr Oros) [1816982]
+- [netdrv] net: phy: remove calls to genphy_config_init (Petr Oros) [1816982]
+- [netdrv] net: phy: realtek: support NBase-T MMD EEE registers on RTL8125 (Petr Oros) [1816982]
+- [uapi] net: phy: add EEE-related constants (Petr Oros) [1816982]
+- [documentation] dt-bindings: net: add bindings for ADIN PHY driver (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: add ethtool get_stats support (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: implement downshift configuration via phy-tunable (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: implement PHY subsystem software reset (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: add EEE translation layer from Clause 45 to Clause 22 (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: add support MDI/MDIX/Auto-MDI selection (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: make RMII fifo depth configurable (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: make RGMII internal delays configurable (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: configure RGMII/RMII/MII modes on config (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: add {write,read}_mmd hooks (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: add support for interrupts (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: hook genphy_{suspend, resume} into the driver (Petr Oros) [1816982]
+- [netdrv] net: phy: adin: add support for Analog Devices PHYs (Petr Oros) [1816982]
+- [netdrv] net: phy: realtek: add support for EEE registers on integrated PHY's (Petr Oros) [1816982]
+- [netdrv] net: phy: swphy: emulate register MII_ESTATUS (Petr Oros) [1816982]
+- [netdrv] net: phy: read MII_CTRL1000 in genphy_read_status only if needed (Petr Oros) [1816982]
+- [netdrv] net: phy: realtek: add NBase-T PHY auto-detection (Petr Oros) [1816982]
+- [netdrv] net: phy: let phy_speed_down/up support speeds >1Gbps (Petr Oros) [1816982]
+- [netdrv] net: phy: add phy_speed_down_core and phy_resolve_min_speed (Petr Oros) [1816982]
+- [netdrv] net: phy: add __set_linkmode_max_speed (Petr Oros) [1816982]
+- [netdrv] net: phy: realtek: add support for the 2.5Gbps PHY in RTL8125 (Petr Oros) [1816982]
+- [netdrv] net: phy: add phy_modify_paged_changed (Petr Oros) [1816982]
+- [netdrv] net: phy: prepare phylib to deal with PHY's extending Clause 22 (Petr Oros) [1816982]
+- [netdrv] net: phy: simplify genphy_config_advert by using the linkmode_adv_to_xxx_t functions (Petr Oros) [1816982]
+- [netdrv] net: phy: at803x: stop switching phy delay config needlessly (Petr Oros) [1816982]
+- [netdrv] net: mdio-octeon: Fix Kconfig warnings and build errors (Petr Oros) [1816982]
+- [netdrv] net: phy: xgene: use devm_platform_ioremap_resource() to simplify code (Petr Oros) [1816982]
+- [netdrv] net: phy: Add mdio-aspeed (Petr Oros) [1816982]
+- [netdrv] net: phy: phy_led_triggers: Fix a possible null-pointer dereference in phy_led_trigger_change_speed() (Petr Oros) [1816982]
+- [netdrv] net: phylink: Fix flow control for fixed-link (Petr Oros) [1816982]
+- [netdrv] net: phylink: don't start and stop SGMII PHYs in SFP modules twice (Petr Oros) [1816982]
+- [netdrv] net: phy: Make use of linkmode_mod_bit helper (Petr Oros) [1816982]
+- [netdrv] net: stmmac: enable clause 45 mdio support (Petr Oros) [1816982]
+- [documentation] doc: phy: document some PHY_INTERFACE_MODE_xxx settings (Petr Oros) [1816982]
+- [netdrv] Revert "net: phylink: set the autoneg state in phylink_phy_change" (Petr Oros) [1816982]
+- [netdrv] net: phy: sfp: clean up a condition (Petr Oros) [1816982]
+- [netdrv] net: phylink: set the autoneg state in phylink_phy_change (Petr Oros) [1816982]
+- [netdrv] net: phy: Add more 1000BaseX support detection (Petr Oros) [1816982]
+- [netdrv] net: phy: broadcom: Add genphy_suspend and genphy_resume for BCM5464 (Petr Oros) [1816982]
+- [netdrv] net: sfp: add mutex to prevent concurrent state checks (Petr Oros) [1816982]
+- [netdrv] net: sfp: Stop SFP polling and interrupt handling during shutdown (Petr Oros) [1816982]
+- [netdrv] net: phy: Add detection of 1000BaseX link mode support (Petr Oros) [1816982]
+- [netdrv] net: phy: remove state PHY_FORCING (Petr Oros) [1816982]
+- [netdrv] net: phy: export phy_queue_state_machine (Petr Oros) [1816982]
+- [netdrv] net: phy: add callback for custom interrupt handler to struct phy_driver (Petr Oros) [1816982]
+- [netdrv] net: phy: enable interrupts when PHY is attached already (Petr Oros) [1816982]
+- [netdrv] net: phy: sfp: enable i2c-bus detection on ACPI based systems (Petr Oros) [1816982]
+- [netdrv] net: phy: tja11xx: Switch to HWMON_CHANNEL_INFO() (Petr Oros) [1816982]
+- [netdrv] net: phylink: Add phylink_{printk, err, warn, info, dbg} macros (Petr Oros) [1816982]
+- [netdrv] net: phylink: Add PHYLINK_DEV operation type (Petr Oros) [1816982]
+- [netdrv] net: phylink: Add struct phylink_config to PHYLINK API (Petr Oros) [1816982]
+- [netdrv] net: phylink: Add phylink_mac_link_{up, down} wrapper functions (Petr Oros) [1816982]
+- [netdrv] net: phy: Add phy_standalone sysfs entry (Petr Oros) [1816982]
+- [netdrv] net: phy: Check against net_device being NULL (Petr Oros) [1816982]
+- [netdrv] net: phy: Guard against the presence of a netdev (Petr Oros) [1816982]
+- [netdrv] net: phy: Add phy_sysfs_create_links helper function (Petr Oros) [1816982]
+- [netdrv] net: sfp: remove sfp-bus use of netdevs (Petr Oros) [1816982]
+- [netdrv] net: sfp: add mandatory attach/detach methods for sfp buses (Petr Oros) [1816982]
+- [netdrv] net: phy: allow Clause 45 access via mii ioctl (Petr Oros) [1816982]
+- [netdrv] net: phylink: support for link gpio interrupt (Petr Oros) [1816982]
+- [netdrv] net: phylink: remove netdev from phylink mii ioctl emulation (Petr Oros) [1816982]
+- [netdrv] net: phy: bcm87xx: improve bcm87xx_config_init and feature detection (Petr Oros) [1816982]
+- [netdrv] net: phy: tja11xx: Add TJA11xx PHY driver (Petr Oros) [1816982]
+- [netdrv] net: phy: aquantia: add USXGMII support and warn if XGMII mode is set (Petr Oros) [1816982]
+- [documentation] dt-bindings: net: document new usxgmii phy mode (Petr Oros) [1816982]
+- [include] net: phy: add interface mode PHY_INTERFACE_MODE_USXGMII (Petr Oros) [1816982]
+- [netdrv] net: phy: lxt: Add suspend/resume support to LXT971 and LXT973 (Petr Oros) [1816982]
+- [netdrv] net: phy: Make phy_basic_t1_features use base100t1 (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: Allocate state struct in probe (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: Validate FIFO depth property (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: IO impedance is not dependent on RGMII delay (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: Use unsigned variables to store unsigned properties (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: Rework delay rgmii delay handling (Petr Oros) [1816982]
+- [netdrv] net: phy: dp83867: Add ability to disable output clock (Petr Oros) [1816982]
+- [documentation] dt-bindings: phy: dp83867: Add documentation for disabling clock output (Petr Oros) [1816982]
+- [documentation] dt-bindings: phy: dp83867: Describe how driver behaves w.r.t rgmii delay (Petr Oros) [1816982]
+- [documentation] Documentation: net: phy: switch documentation to rst format (Petr Oros) [1816982]
+- [of] of: mdio: Support fixed links in of_phy_get_and_connect() (Petr Oros) [1816982]
+- [documentation] doc: add phylink documentation to the networking book (Petr Oros) [1816982]
+- [include] net: phylink: update mac_config() documentation (Petr Oros) [1816982]
+- [tools] libbpf: use .so dynamic symbols for abi check (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Install generated test progs (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Fix memory leak caused by not freeing entry in unregister_ftrace_direct() (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Support CO-RE relocations for LDX/ST/STX instructions (Yauheni Kaliuta) [1813370]
+- [include] bpf: Add bpf_jit_blinding_enabled for !CONFIG_BPF_JIT (Yauheni Kaliuta) [1813370]
+- [tools] tools, bpf_asm: Warn when jumps are out of range (Yauheni Kaliuta) [1813370]
+- [include] bpf: Add typecast to bpf helpers to help BTF generation (Yauheni Kaliuta) [1813370]
+- [trace] bpf: Add typecast to raw_tracepoints to help BTF generation (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Fix build on read-only filesystems (Yauheni Kaliuta) [1813370]
+- [tools] bpf: Add further test_verifier cases for record_func_key (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix record_func_key to perform backtracking on r3 (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix missing prog untrack in release_maps (Yauheni Kaliuta) [1813370]
+- [samples] samples: bpf: fix syscall_tp due to unused syscall (Yauheni Kaliuta) [1813370]
+- [samples] samples: bpf: Replace symbol compare of trace_event (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Test function_graph tracer and bpf trampoline together (Yauheni Kaliuta) [1813370]
+- [net] bpf: Make BPF trampoline use register_ftrace_direct() API (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Add modify_ftrace_direct() (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Add information on number of page groups allocated (Yauheni Kaliuta) [1813370]
+- [x86] ftrace/x86: Tell objtool to ignore nondeterministic ftrace stack layout (Yauheni Kaliuta) [1813370]
+- [x86] ftrace/x86: Add a counter to test function_graph with direct (Yauheni Kaliuta) [1813370]
+- [x86] ftrace/x86: Add register_ftrace_direct() for custom trampolines (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Add another check for match in register_ftrace_direct() (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Add ftrace_find_direct_func() (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Add register_ftrace_direct() (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Separate out the copying of a ftrace_hash from __ftrace_hash_move() (Yauheni Kaliuta) [1813370]
+- [kernel] ftrace: Separate out functionality from ftrace_location_range() (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix build in minimal configurations, again (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add a fexit/bpf2bpf test with target bpf prog no callees (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix a bug when getting subprog 0 jited image in check_attach_btf_id (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Bring back c++ include/link test (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Don't hard-code root cgroup id (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Fix broken xdp_rxq_info due to map order assumptions (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Fix readelf output parsing for Fedora (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Fix readelf output parsing on powerpc with recent binutils (Yauheni Kaliuta) [1813370]
+- [tools] selftests: bpf: correct perror strings (Yauheni Kaliuta) [1813370]
+- [tools] selftests: bpf: test_sockmap: handle file creation failures gracefully (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix build in minimal configurations (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Fix up generation of bpf_helper_defs.h (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Fix global variable relocation (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix static checker warning (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Fix usage of u32 in userspace code (Yauheni Kaliuta) [1813370]
+- [net] bpf: Simplify __bpf_arch_text_poke poke type handling (Yauheni Kaliuta) [1813370]
+- [tools] bpf: Introduce BPF_TRACE_x helper for the tracing tests (Yauheni Kaliuta) [1813370]
+- [tools] bpf, testing: Add various tail call test cases (Yauheni Kaliuta) [1813370]
+- [x86] bpf, x86: Emit patchable direct jump as tail call (Yauheni Kaliuta) [1813370]
+- [net] bpf: Constant map key tracking for prog array pokes (Yauheni Kaliuta) [1813370]
+- [net] bpf: Add poke dependency tracking for prog array maps (Yauheni Kaliuta) [1813370]
+- [include] bpf: Add initial poke descriptor table for jit images (Yauheni Kaliuta) [1813370]
+- [net] bpf: Move owner type, jited info into array auxiliary data (Yauheni Kaliuta) [1813370]
+- [net] bpf: Move bpf_free_used_maps into sleepable section (Yauheni Kaliuta) [1813370]
+- [x86] bpf, x86: Generalize and extend bpf_arch_text_poke for direct jumps (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add BPF trampoline performance test (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Ensure core_reloc_kernel is reading test_progs's data only (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add verifier tests for better jmp32 register bounds (Yauheni Kaliuta) [1813370]
+- [net] bpf: Provide better register bounds after jmp32 instructions (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Integrate verbose verifier log into test_progs (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Support initialized global variables (Yauheni Kaliuta) [1813370]
+- [tools] selftests, bpftool: Skip the build test if not in tree (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Fix various errors and warning reported by checkpatch.pl (Yauheni Kaliuta) [1813370]
+- [tools] selftests, bpftool: Set EXIT trap after usage function (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Ensure no DWARF relocations for BPF object files (Yauheni Kaliuta) [1813370]
+- [tools] tools, bpftool: Fix warning on ignored return value for 'read' (Yauheni Kaliuta) [1813370]
+- [net] bpf: Switch bpf_map_{area_alloc, area_mmapable_alloc}() to u64 size (Yauheni Kaliuta) [1813370]
+- [net] bpf: Make array_map_mmap static (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Enforce no-ALU32 for test_progs-no_alu32 (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Remove JITed image size limitations (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Use lg(f)rl when long displacement cannot be used (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Use lgrl instead of lg where possible (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Load literal pool register using larl (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Align literal pool entries (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Use relative long branches (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix memory leak on object 'data' (Yauheni Kaliuta) [1813370]
+- [tools] selftests, bpf: Workaround an alu32 sub-register spilling issue (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add BPF_TYPE_MAP_ARRAY mmap() tests (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Make global data internal arrays mmap()-able, if possible (Yauheni Kaliuta) [1813370]
+- [net] bpf: Add mmap() support for BPF_MAP_TYPE_ARRAY (Yauheni Kaliuta) [1813370]
+- [netdrv] bpf: Convert bpf_prog refcnt to atomic64_t (Yauheni Kaliuta) [1813370]
+- [netdrv] net: thunderx: set xdp_prog to NULL if bpf_prog_add fails (Yauheni Kaliuta) [1813370]
+- [net] bpf: Switch bpf_map ref counter to atomic64_t so bpf_map_inc() never fails (Yauheni Kaliuta) [1813370]
+- [lib] locking/atomic: Use s64 for atomic64 (Yauheni Kaliuta) [1813370]
+- [include] atomics/treewide: Make conditional inc/dec ops optional (Yauheni Kaliuta) [1813370]
+- [include] atomics/treewide: Make unconditional inc/dec ops optional (Yauheni Kaliuta) [1813370]
+- [include] atomics/treewide: Make test ops optional (Yauheni Kaliuta) [1813370]
+- [include] atomics/treewide: Make atomic64_fetch_add_unless() optional (Yauheni Kaliuta) [1813370]
+- [powerpc] atomics/powerpc: Define atomic64_fetch_add_unless() (Yauheni Kaliuta) [1813370]
+- [lib] atomics/generic: Define atomic64_fetch_add_unless() (Yauheni Kaliuta) [1813370]
+- [include] atomics: Prepare for atomic64_fetch_add_unless() (Yauheni Kaliuta) [1813370]
+- [include] atomics/treewide: Make atomic_fetch_add_unless() optional (Yauheni Kaliuta) [1813370]
+- [include] atomics/treewide: Make atomic64_inc_not_zero() optional (Yauheni Kaliuta) [1813370]
+- [include] atomics: Make conditional ops return 'bool' (Yauheni Kaliuta) [1813370]
+- [net] atomics/treewide: Remove atomic_inc_not_zero_hint() (Yauheni Kaliuta) [1813370]
+- [net] atomics/treewide: Rename __atomic_add_unless() => atomic_fetch_add_unless() (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add a test for attaching BPF prog to another BPF prog and subprog (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Extend test_pkt_access test (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Add support for attaching BPF programs to other BPF programs (Yauheni Kaliuta) [1813370]
+- [net] bpf: Support attaching tracing BPF program to other BPF programs (Yauheni Kaliuta) [1813370]
+- [net] bpf: Compare BTF types of functions arguments with actual types (Yauheni Kaliuta) [1813370]
+- [net] bpf: Annotate context types (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix race in btf_resolve_helper_id() (Yauheni Kaliuta) [1813370]
+- [x86] bpf: Reserve space for BPF trampoline in BPF programs (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add stress test for maximum number of progs (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add combined fentry/fexit test (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add fexit tests for BPF trampoline (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add test for BPF trampoline (Yauheni Kaliuta) [1813370]
+- [net] bpf: Add kernel test functions for fentry testing (Yauheni Kaliuta) [1813370]
+- [tools] selftest/bpf: Simple test for fentry/fexit (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Add support to attach to fentry/fexit tracing progs (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Introduce btf__find_by_name_kind() (Yauheni Kaliuta) [1813370]
+- [net] bpf: Introduce BPF trampoline (Yauheni Kaliuta) [1813370]
+- [x86] bpf: Add bpf_arch_text_poke() helper (Yauheni Kaliuta) [1813370]
+- [x86] bpf: Refactor x86 JIT into helpers (Yauheni Kaliuta) [1813370]
+- [documentation] bpf, doc: Change right arguments for JIT example code (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Add missing option to xdpsock usage (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Remove duplicate option from xdpsock (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Make sure JIT passes do not increase code size (Yauheni Kaliuta) [1813370]
+- [net] bpf: Support doubleword alignment in bpf_jit_binary_alloc (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: adjust Makefile and README.rst (Yauheni Kaliuta) [1813370]
+- [tools] bpf, testing: Add missing object file to TEST_FILES (Yauheni Kaliuta) [1813370]
+- [tools] bpf, testing: Workaround a verifier failure for test_progs (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Use Rx-only and Tx-only sockets in xdpsock (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Allow for creating Rx or Tx only AF_XDP sockets (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Add XDP_SHARED_UMEM support to xdpsock (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Support XDP_SHARED_UMEM with external XDP program (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add tests for automatic map unpinning on load failure (Yauheni Kaliuta) [1813370]
+- [samples] samples: bpf: update map definition to new syntax BTF-defined map (Yauheni Kaliuta) [1813370]
+- [samples] samples: bpf: Update outdated error message (Yauheni Kaliuta) [1813370]
+- [tools] bpf: Add cb access in kfree_skb test (Yauheni Kaliuta) [1813370]
+- [net] bpf: Add array support to btf_struct_access (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Remove unused SEEN_RET0, SEEN_REG_AX and ret0_ip (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Wrap JIT macro parameter usages in parentheses (Yauheni Kaliuta) [1813370]
+- [s390] s390/bpf: Use kvcalloc for addrs array (Yauheni Kaliuta) [1813370]
+- [net] bpf: Account for insn->off when doing bpf_probe_read_kernel (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Simplify BPF_CORE_READ_BITFIELD_PROBED usage (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bps: Clean up removed ints relocations negative tests (Yauheni Kaliuta) [1813370]
+- [tools] selftests: bpf: log direct file writes (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add field size relocation tests (Yauheni Kaliuta) [1813370]
+- [tools] selftest/bpf: Add relocatable bitfield reading tests (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Add support for field size relocations (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Add support for relocatable bitfields (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Remove too strict field offset relo test cases (Yauheni Kaliuta) [1813370]
+- [tools] bpf, testing: Add selftest to read/write sockaddr from user space (Yauheni Kaliuta) [1813370]
+- [tools] bpf, testing: Convert prog tests to probe_read_{user, kernel}{, _str} helper (Yauheni Kaliuta) [1813370]
+- [samples] bpf, samples: Use bpf_probe_read_user where appropriate (Yauheni Kaliuta) [1813370]
+- [net] bpf: Switch BPF probe insns to bpf_probe_read_kernel (Yauheni Kaliuta) [1813370]
+- [kernel] bpf: Add probe_read_{user, kernel} and probe_read_{user, kernel}_str helpers (Yauheni Kaliuta) [1813370]
+- [kernel] bpf: Make use of probe_user_write in probe write helper (Yauheni Kaliuta) [1813370]
+- [mm] uaccess: Add strict non-pagefault kernel-space read function (Yauheni Kaliuta) [1813370]
+- [mm] uaccess: Add non-pagefault user-space write function (Yauheni Kaliuta) [1813370]
+- [mm] uaccess: Add non-pagefault user-space read functions (Yauheni Kaliuta) [1813370]
+- [tools] selftests: Add tests for automatic map pinning (Yauheni Kaliuta) [1813370]
+- [net] bpf: Implement map_gen_lookup() callback for XSKMAP (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Add support for prog_tracing (Yauheni Kaliuta) [1813370]
+- [net] bpf: Replace prog_raw_tp+btf_id with prog_tracing (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix bpf jit kallsym access (Yauheni Kaliuta) [1813370]
+- [documentation] bpf: Add s390 testing documentation (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Test narrow load from bpf_sysctl.write (Yauheni Kaliuta) [1813370]
+- [net] bpf: Enforce 'return 0' in BTF-enabled raw_tp programs (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Restore $(OUTPUT)/test_stub.o rule (Yauheni Kaliuta) [1813370]
+- [tools] selftest/bpf: Use -m{little, big}-endian for clang (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Fix .gitignore to ignore no_alu32/ (Yauheni Kaliuta) [1813370]
+- [net] bpf: Prepare btf_ctx_access for non raw_tp use case (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Fix strncat bounds error in libbpf_prog_type_by_name (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Fix LDLIBS order (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Move test_section_names into test_progs and fix it (Yauheni Kaliuta) [1813370]
+- [tools] tools/bpf: Turn on llvm alu32 attribute by default (Yauheni Kaliuta) [1813370]
+- [tools] selftest/bpf: Get rid of a bunch of explicit BPF program type setting (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Make reference_tracking test use subtests (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Make a copy of subtest name (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Add uprobe/uretprobe and tp/raw_tp section suffixes (Yauheni Kaliuta) [1813370]
+- [tools] bpf, libbpf: Add kernel version section parsing back (Yauheni Kaliuta) [1813370]
+- [kernel] bpf: Fix build error without CONFIG_NET (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix bpf_attr.attach_btf_id check (Yauheni Kaliuta) [1813370]
+- [tools] selftest/bpf: Remove test_libbpf.sh and test_libbpf_open (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Move test_queue_stack_map.h into progs/ where it belongs (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Replace test_progs and test_maps w/ general rule (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add simple per-test targets to Makefile (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Switch test_maps to test_progs' test.h format (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Teach test_progs to cd into subdir (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Restore the netns after flow dissector reattach test (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add kfree_skb raw_tp test (Yauheni Kaliuta) [1813370]
+- [net] bpf: Check types of arguments passed into helpers (Yauheni Kaliuta) [1813370]
+- [net] bpf: Add support for BTF pointers to x86 JIT (Yauheni Kaliuta) [1813370]
+- [net] bpf: Add support for BTF pointers to interpreter (Yauheni Kaliuta) [1813370]
+- [net] bpf: Attach raw_tp program with BTF via type name (Yauheni Kaliuta) [1813370]
+- [net] bpf: Implement accurate raw_tp context access via BTF (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Auto-detect btf_id of BTF-based raw_tracepoints (Yauheni Kaliuta) [1813370]
+- [net] bpf: Add attach_btf_id attribute to program load (Yauheni Kaliuta) [1813370]
+- [net] bpf: Process in-kernel BTF (Yauheni Kaliuta) [1813370]
+- [tools] selftests: bpf: Add selftest for __sk_buff tstamp (Yauheni Kaliuta) [1813370]
+- [net] bpf: Allow __sk_buff tstamp in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Remove obsolete pahole/BTF support detection (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Enforce libbpf build before BPF programs are built (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Add preparation steps and sysroot info to readme (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Add sysroot support (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Provide C/LDFLAGS to libbpf (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Add C/LDFLAGS to libbpf.so and test_libpf targets (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Don't use cxx to test_libpf target (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Use target CC environment for HDR_PROBE (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Use own flags but not HOSTCFLAGS (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Base target programs rules on Makefile.target (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Add makefile.target for separate CC target build (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Drop unnecessarily inclusion for bpf_load (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Use __LINUX_ARM_ARCH__ selector for arm (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Use own EXTRA_CFLAGS for clang commands (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Use --target from cross-compile (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Fix cookie_uid_helper_example obj build (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Fix HDR_PROBE "echo" (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Handle invalid typedef emitted by old GCC (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Generate more efficient BPF_CORE_READ code (Yauheni Kaliuta) [1813370]
+- [net] bpf: Fix cast to pointer from integer of different size warning (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Check that flow dissector can be re-attached (Yauheni Kaliuta) [1813370]
+- [net] flow_dissector: Allow updating the flow dissector program atomically (Yauheni Kaliuta) [1813370]
+- [include] bpf: Align struct bpf_prog_stats (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add read-only map values propagation tests (Yauheni Kaliuta) [1813370]
+- [net] bpf: Track contents of read-only maps as scalars (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Convert test_btf_dump into test_progs test (Yauheni Kaliuta) [1813370]
+- [samples] samples: bpf: Add max_pckt_size option at xdp_adjust_tail (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: add test for BPF flow dissector in the root namespace (Yauheni Kaliuta) [1813370]
+- [net] bpf/flow_dissector: add mode to enforce global BPF flow dissector (Yauheni Kaliuta) [1813370]
+- [samples] samples/bpf: Trivial - fix spelling mistake in usage (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Fix dependency ordering for attach_probe test (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Add cscope and tags targets to Makefile (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: switch tests to new bpf_object__open_{file, mem}() APIs (Yauheni Kaliuta) [1813370]
+- [tools] bpf: Add loop test case with 32 bit reg comparison against 0 (Yauheni Kaliuta) [1813370]
+- [x86] bpf, x86: Small optimization in comparing against imm0 (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Correct path to include msg + path (Yauheni Kaliuta) [1813370]
+- [tools] selftests/bpf: Add static to enable_all_controllers() (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: provide backported RHEL symbols as upstream aliases (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: Bump current version to v0.0.6 (Yauheni Kaliuta) [1813370]
+- [tools] libbpf: bump up version, 0.0.5 (Yauheni Kaliuta) [1813370]
+- [net] cpumap: Avoid warning when CONFIG_DEBUG_PER_CPU_MAPS is enabled (Yauheni Kaliuta) [1823623 1813370]
+- [vfio] vfio-pci: Mask cap zero (Alex Williamson) [1840248]
+- [vfio] spapr_tce: Fix incorrect tce_iommu_group memory free (David Gibson) [1832386]
+- [fs] CIFS: fiemap: do not return EINVAL if get nothing (Leif Sahlberg) [1837180]
+- [fs] CIFS: Increment num_remote_opens stats counter even in case of smb2_query_dir_first (Leif Sahlberg) [1837180]
+- [fs] cifs: potential unintitliazed error code in cifs_getattr() (Leif Sahlberg) [1837180]
+- [fs] cifs: Use #define in cifs_dbg (Leif Sahlberg) [1837180]
+- [fs] cifs: fix rename() by ensuring source handle opened with DELETE bit (Leif Sahlberg) [1837180]
+- [fs] cifs: add missing mount option to /proc/mounts (Leif Sahlberg) [1837180]
+- [fs] cifs: fix potential mismatch of UNC paths (Leif Sahlberg) [1837180]
+- [fs] cifs: enable change notification for SMB2.1 dialect (Leif Sahlberg) [1837180]
+- [fs] cifs: Fix mode output in debugging statements (Leif Sahlberg) [1837180]
+- [fs] cifs: fix mount option display for sec=krb5i (Leif Sahlberg) [1837180]
+- [fs] smb3: Add defines for new information level, FileIdInformation (Leif Sahlberg) [1837180]
+- [fs] smb3: print warning once if posix context returned on open (Leif Sahlberg) [1837180]
+- [fs] smb3: add one more dynamic tracepoint missing from strict fsync path (Leif Sahlberg) [1837180]
+- [fs] cifs: fix mode bits from dir listing when mounted with modefromsid (Leif Sahlberg) [1837180]
+- [fs] cifs: fix channel signing (Leif Sahlberg) [1837180]
+- [fs] cifs: add SMB3 change notification support (Leif Sahlberg) [1837180]
+- [fs] cifs: make multichannel warning more visible (Leif Sahlberg) [1837180]
+- [fs] cifs: Add tracepoints for errors on flush or fsync (Leif Sahlberg) [1837180]
+- [fs] cifs: log warning message (once) if out of disk space (Leif Sahlberg) [1837180]
+- [fs] smb3: fix problem with null cifs super block with previous patch (Leif Sahlberg) [1837180]
+- [fs] SMB3: Backup intent flag missing from some more ops (Leif Sahlberg) [1837180]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1837180]
+- [fs] CIFS: Fix task struct use-after-free on reconnect (Leif Sahlberg) [1837180]
+- [fs] cifs: use PTR_ERR_OR_ZERO() to simplify code (Leif Sahlberg) [1837180]
+- [fs] cifs: add support for fallocate mode 0 for non-sparse files (Leif Sahlberg) [1837180]
+- [fs] CIFS: Add support for setting owner info, dos attributes, and create time (Leif Sahlberg) [1837180]
+- [fs] cifs: remove set but not used variable 'server' (Leif Sahlberg) [1837180]
+- [fs] cifs: fix unitialized variable poential problem with network I/O cache lock patch (Leif Sahlberg) [1837180]
+- [fs] cifs: Fix return value in __update_cache_entry (Leif Sahlberg) [1837180]
+- [fs] cifs: Avoid doing network I/O while holding cache lock (Leif Sahlberg) [1837180]
+- [fs] cifs: Fix potential deadlock when updating vol in cifs_reconnect() (Leif Sahlberg) [1837180]
+- [fs] cifs: Merge is_path_valid() into get_normalized_path() (Leif Sahlberg) [1837180]
+- [fs] cifs: Introduce helpers for finding TCP connection (Leif Sahlberg) [1837180]
+- [fs] cifs: Get rid of kstrdup_const()'d paths (Leif Sahlberg) [1837180]
+- [fs] cifs: Clean up DFS referral cache (Leif Sahlberg) [1837180]
+- [fs] cifs: Don't use iov_iter::type directly (Leif Sahlberg) [1837180]
+- [fs] cifs: set correct max-buffer-size for smb2_ioctl_init() (Leif Sahlberg) [1837180]
+- [fs] fs/cifs/cifssmb.c: use true, false for bool variable (Leif Sahlberg) [1837180]
+- [fs] fs/cifs/smb2ops.c: use true, false for bool variable (Leif Sahlberg) [1837180]
+
+* Wed Jun 03 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-210.el8]
+- [lib] XArray: Optimise xas_sibling() if !CONFIG_XARRAY_MULTI (Don Dutile) [1840916]
+- [include] XArray: Fix incorrect comment in header file (Don Dutile) [1840916]
+- [lib] XArray: Fix xas_pause for large multi-index entries (Don Dutile) [1840916]
+- [lib] XArray: Fix xa_find_next for large multi-index entries (Don Dutile) [1840916]
+- [lib] XArray tests: Add check_insert (Don Dutile) [1840916]
+- [documentation] XArray: Add xa_for_each_range (Don Dutile) [1840916]
+- [documentation] XArray: Improve documentation of search marks (Don Dutile) [1840916]
+- [documentation] docs: remove :c:func: annotations from xarray.rst (Don Dutile) [1840916]
+- [lib] XArray: Fix xas_find returning too many entries (Don Dutile) [1840916]
+- [lib] XArray: Fix xa_find_after with multi-index entries (Don Dutile) [1840916]
+- [lib] XArray: Fix infinite loop with entry at ULONG_MAX (Don Dutile) [1840916]
+- [include] XArray: Add wrappers for nested spinlocks (Don Dutile) [1840916]
+- [lib] XArray: Fix xas_pause at ULONG_MAX (Don Dutile) [1840916]
+- [include] xarray.h: fix kernel-doc warning (Don Dutile) [1840916]
+- [lib] XArray: Fix xas_next() with a single entry at 0 (Don Dutile) [1840916]
+- [fs] mm: fix page cache convergence regression (Don Dutile) [1840916]
+- [netdrv] ionic: call ionic_port_init after fw-upgrade (Jonathan Toppins) [1830969]
+- [netdrv] ionic: leave netdev mac alone after fw-upgrade (Jonathan Toppins) [1830969]
+- [netdrv] ionic: add device reset to fw upgrade down (Jonathan Toppins) [1830969]
+- [netdrv] ionic: refresh devinfo after fw-upgrade (Jonathan Toppins) [1830969]
+- [netdrv] ionic: no link check until after probe (Jonathan Toppins) [1830969]
+- [netdrv] phy: avoid unnecessary link-up delay in polling mode (Petr Oros) [1785663]
+- [x86] x86: Select HARDIRQS_SW_RESEND on x86 (David Arcari) [1840433]
+- [pci] PCI/AER: Fix the broken interrupt injection (David Arcari) [1840433]
+- [kernel] genirq: Provide interrupt injection mechanism (David Arcari) [1840433]
+- [kernel] genirq: Sanitize state handling in check_irq_resend() (David Arcari) [1840433]
+- [kernel] genirq: Add return value to check_irq_resend() (David Arcari) [1840433]
+- [x86] x86/apic/vector: Force interupt handler invocation to irq context (David Arcari) [1840433]
+- [kernel] genirq: Add protection against unsafe usage of generic_handle_irq() (David Arcari) [1840433]
+- [kernel] genirq/debugfs: Add missing sanity checks to interrupt injection (David Arcari) [1840433]
+- [include] genirq/irqdomain: Make sure all irq domain flags are distinct (David Arcari) [1840433]
+- [x86] x86/apic/msi: Plug non-maskable MSI affinity race (David Arcari) [1840433]
+- [char] char: ipmi: convert to use i2c_new_client_device() (Tony Camuso) [1832408]
+- [char] ipmi: kcs: Fix aspeed_kcs_probe_of_v1() (Tony Camuso) [1832408]
+- [char] ipmi: Add missing annotation for ipmi_ssif_lock_cond() and ipmi_ssif_unlock_cond() (Tony Camuso) [1832408]
+- [char] ipmi: kcs: aspeed: Implement v2 bindings (Tony Camuso) [1832408]
+- [char] ipmi: kcs: Finish configuring ASPEED KCS device before enable (Tony Camuso) [1832408]
+- [char] ipmi: fix hung processes in __get_guid() (Tony Camuso) [1832408]
+- [char] drivers: char: ipmi: ipmi_msghandler: Pass lockdep expression to RCU lists (Tony Camuso) [1832408]
+- [char] ipmi_si: Avoid spurious errors for optional IRQs (Tony Camuso) [1832408]
+- [base] driver core: platform: Export platform_get_irq_optional() (Tony Camuso) [1832408]
+- [base] driver core: platform: Introduce platform_get_irq_optional() (Tony Camuso) [1832408]
+- [x86] x86/efi: Update e820 with reserved EFI boot services data to fix kexec breakage (Kairui Song) [1779544]
+- [powerpc] powerpc/nvdimm: use H_SCM_QUERY hcall on H_OVERLAP error (Pingfan Liu) [1792125]
+- [powerpc] powerpc/nvdimm: Use HCALL error as the return value (Pingfan Liu) [1792125]
+- [scsi] scsi: sd: Signal drive managed SMR disks (Ewan Milne) [1838784]
+- [scsi] scsi: core: free sgtables in case command setup fails (Ewan Milne) [1838784]
+- [scsi] scsi: core: Allow the state change from SDEV_QUIESCE to SDEV_BLOCK (Ewan Milne) [1838784]
+- [scsi] scsi: sg: add sg_remove_request in sg_write (Ewan Milne) [1838784]
+- [scsi] scsi: sg: add sg_remove_request in sg_common_write (Ewan Milne) [1838784]
+- [scsi] scsi: sd: Fix optimal I/O size for devices that change reported values (Ewan Milne) [1838784]
+- [scsi] scsi: move scsicam_bios_param to the end of scsicam.c (Ewan Milne) [1838784]
+- [scsi] scsi: simplify scsi_bios_ptable (Ewan Milne) [1838784]
+- [scsi] scsi: core: Use scnprintf() for avoiding potential buffer overflow (Ewan Milne) [1838784]
+- [scsi] scsi: core: avoid repetitive logging of device offline messages (Ewan Milne) [1838784]
+- [scsi] scsi: core: use kobj_to_dev (Ewan Milne) [1838784]
+- [scsi] scsi: sd: Clear sdkp->protection_type if disk is reformatted without PI (Ewan Milne) [1838784]
+- [scsi] scsi: core: Fix a compiler warning triggered by the SCSI logging code (Ewan Milne) [1838784]
+- [scsi] scsi: core: Adjust DBD setting in MODE SENSE for caching mode page per LLD (Ewan Milne) [1838784]
+- [scsi] scsi: sd_zbc: Improve report zones error printout (Ewan Milne) [1838784]
+- [scsi] scsi: scsi_transport_sas: Fix memory leak when removing devices (Ewan Milne) [1838784]
+- [scsi] scsi: scsi_debug: num_tgts must be >= 0 (Ewan Milne) [1838784]
+- [scsi] scsi: core: Handle drivers which set sg_tablesize to zero (Ewan Milne) [1838784]
+- [scsi] scsi: tracing: Fix handling of TRANSFER LENGTH == 0 for READ(6) and WRITE(6) (Ewan Milne) [1838784]
+- [scsi] scsi: sg: sg_ioctl(): get rid of access_ok() (Ewan Milne) [1838784]
+- [scsi] scsi: sg: sg_write(): get rid of access_ok()/__copy_from_user()/__get_user() (Ewan Milne) [1838784]
+- [scsi] scsi: sg: sg_read(): get rid of access_ok()/__copy_..._user() (Ewan Milne) [1838784]
+- [scsi] scsi: sg: sg_new_write(): don't bother with access_ok (Ewan Milne) [1838784]
+- [scsi] scsi: sg: sg_write(): __get_user() can fail.. (Ewan Milne) [1838784]
+- [scsi] scsi: sg: sg_new_write(): replace access_ok() + __copy_from_user() with copy_from_user() (Ewan Milne) [1838784]
+- [scsi] scsi: sg: sg_ioctl(): fix copyout handling (Ewan Milne) [1838784]
+- [scsi] scsi: core: scsi_trace: Use get_unaligned_be*() (Ewan Milne) [1838784]
+- [scsi] drivers/scsi: Replace rcu_swap_protected() with rcu_replace_pointer() (Ewan Milne) [1838784]
+- [scsi] scsi: sd: define variable dif as unsigned int instead of bool (Ewan Milne) [1838784]
+- [scsi] scsi: core: try to get module before removing device (Ewan Milne) [1838784]
+- [scsi] scsi: scsi_dh_alua: handle RTPG sense code correctly during state transitions (Ewan Milne) [1838784]
+- [powerpc] powerpc/64: flush_inval_dcache_range() becomes flush_dcache_range() (Gustavo Duarte) [1834180]
+- [x86] x86/ima: use correct identifier for SetupMode variable (Diego Domingos) [1781925]
+- [lib] kobject: fix dereference before null check on kobj (Diego Domingos) [1781925]
+- [include] MODSIGN: make new include file self contained (Diego Domingos) [1781925]
+- [security] ima: initialize the "template" field with the default template (Diego Domingos) [1781925]
+- [x86] x86/ima: Check EFI_RUNTIME_SERVICES before using (Diego Domingos) [1781925]
+- [x86] x86/ima: check EFI SetupMode too (Diego Domingos) [1781925]
+- [security] ima: Set file->f_mode instead of file->f_flags in ima_calc_file_hash() (Diego Domingos) [1781925]
+- [security] evm: check hash algorithm passed to init_desc() (Diego Domingos) [1781925]
+- [base] firmware: improve LSM/IMA security behaviour (Diego Domingos) [1781925]
+- [lib] kobject: Add support for default attribute groups to kobj_type (Diego Domingos) [1781925]
+- [samples] samples/kobject: Replace foo_ktype's default_attrs field with groups (Diego Domingos) [1781925]
+- [x86] x86/ima: require signed kernel modules (Diego Domingos) [1781925]
+- [security] powerpc: Load firmware trusted keys/hashes into kernel keyring (Diego Domingos) [1781925]
+- [powerpc] powerpc: expose secure variables to userspace via sysfs (Diego Domingos) [1781925]
+- [powerpc] powerpc/powernv: Add OPAL API interface to access secure variable (Diego Domingos) [1781925]
+- [powerpc] powerpc/ima: fix secure boot rules in ima arch policy (Diego Domingos) [1781925]
+- [security] ima: Set again build_ima_appraise variable (Diego Domingos) [1781925]
+- [security] ima: Remove redundant policy rule set in add_rules() (Diego Domingos) [1781925]
+- [powerpc] powerpc/ima: Indicate kernel modules appended signatures are enforced (Diego Domingos) [1781925]
+- [powerpc] powerpc/ima: Update ima arch policy to check for blacklist (Diego Domingos) [1781925]
+- [security] ima: Check against blacklisted hashes for files with modsig (Diego Domingos) [1781925]
+- [security] ima: prevent a file already mmap'ed write to be mmap'ed execute (Diego Domingos) [1781925]
+- [certs] certs: Add wrapper function to check blacklisted binary hash (Diego Domingos) [1781925]
+- [security] ima: Make process_buffer_measurement() generic (Diego Domingos) [1781925]
+- [powerpc] powerpc/ima: Define trusted boot policy (Diego Domingos) [1781925]
+- [powerpc] powerpc: Detect the trusted boot state of the system (Diego Domingos) [1781925]
+- [powerpc] powerpc/ima: Add support to initialize ima policy rules (Diego Domingos) [1781925]
+- [powerpc] powerpc: Detect the secure boot mode of the system (Diego Domingos) [1781925]
+- [security] ima: use struct_size() in kzalloc() (Diego Domingos) [1781925]
+- [tools] sefltest/ima: support appended signatures (modsig) (Diego Domingos) [1781925]
+- [security] ima: Fix use after free in ima_read_modsig() (Diego Domingos) [1781925]
+- [security] ima: fix freeing ongoing ahash_request (Diego Domingos) [1781925]
+- [security] ima: always return negative code for error (Diego Domingos) [1781925]
+- [security] ima: Store the measurement again when appraising a modsig (Diego Domingos) [1781925]
+- [security] ima: Define ima-modsig template (Diego Domingos) [1781925]
+- [security] ima: Collect modsig (Diego Domingos) [1781925]
+- [security] ima: Implement support for module-style appended signatures (Diego Domingos) [1781925]
+- [security] ima: Factor xattr_verify() out of ima_appraise_measurement() (Diego Domingos) [1781925]
+- [security] integrity: Introduce struct evm_xattr (Diego Domingos) [1781925]
+- [security] ima: Add modsig appraise_type option for module-style appended signatures (Diego Domingos) [1781925]
+- [kernel] MODSIGN: Export module signature definitions (Diego Domingos) [1781925]
+- [kernel] modsign: log module name in the event of an error (Diego Domingos) [1781925]
+- [kernel] KEXEC: Call ima_kexec_cmdline to measure the boot command line args (Diego Domingos) [1781925]
+- [security] IMA: Define a new template field buf (Diego Domingos) [1781925]
+- [security] IMA: Define a new hook to measure the kexec boot command line arguments (Diego Domingos) [1781925]
+- [security] IMA: support for per policy rule template formats (Diego Domingos) [1781925]
+- [security] integrity: Fix __integrity_init_keyring() section mismatch (Diego Domingos) [1781925]
+- [security] x86/ima: fix the Kconfig dependency for IMA_ARCH_POLICY (Diego Domingos) [1781925]
+- [security] ima: Make arch_policy_entry static (Diego Domingos) [1781925]
+- [security] ima: show rules with IMA_INMASK correctly (Diego Domingos) [1781925]
+- [security] ima: fix wrong signed policy requirement when not appraising (Diego Domingos) [1781925]
+- [tools] selftests/kexec: update get_secureboot_mode (Diego Domingos) [1781925]
+- [tools] selftests/kexec: make kexec_load test independent of IMA being enabled (Diego Domingos) [1781925]
+- [tools] selftests/kexec: check kexec_load and kexec_file_load are enabled (Diego Domingos) [1781925]
+- [tools] selftests/kexec: Add missing '=y' to config options (Diego Domingos) [1781925]
+- [tools] selftests/kexec: kexec_file_load syscall test (Diego Domingos) [1781925]
+- [tools] selftests/kexec: define "require_root_privileges" (Diego Domingos) [1781925]
+- [tools] selftests/kexec: define common logging functions (Diego Domingos) [1781925]
+- [tools] selftests/kexec: define a set of common functions (Diego Domingos) [1781925]
+- [tools] selftests/kexec: cleanup the kexec selftest (Diego Domingos) [1781925]
+- [tools] selftests/kexec: move the IMA kexec_load selftest to selftests/kexec (Diego Domingos) [1781925]
+- [security] evm: remove set but not used variable 'xattr' (Diego Domingos) [1781925]
+- [security] security: integrity: partial revert of make ima_main explicitly non-modular (Diego Domingos) [1781925]
+- [security] ima: cleanup the match_token policy code (Diego Domingos) [1781925]
+- [security] ima: Use inode_is_open_for_write (Diego Domingos) [1781925]
+- [security] security: fs: make inode explicitly non-modular (Diego Domingos) [1781925]
+- [security] security: audit and remove any unnecessary uses of module.h (Diego Domingos) [1781925]
+- [security] security: integrity: make evm_main explicitly non-modular (Diego Domingos) [1781925]
+- [security] security: integrity: make ima_main explicitly non-modular (Diego Domingos) [1781925]
+- [tools] selftests/ima: kexec_load syscall test (Diego Domingos) [1781925]
+- [security] ima: don't measure/appraise files on efivarfs (Diego Domingos) [1781925]
+- [x86] x86/ima: retry detecting secure boot mode (Diego Domingos) [1781925]
+- [x86] x86/ima: define arch_get_ima_policy() for x86 (Diego Domingos) [1781925]
+- [kernel] kernel/kexec_file.c: remove some duplicated includes (Diego Domingos) [1781925]
+- [security] ima: open a new file instance if no read permissions (Diego Domingos) [1781925]
+- [security] security/integrity: constify some read-only data (Diego Domingos) [1781925]
+- [documentation] security: fix LSM description location (Diego Domingos) [1781925]
+- [security] evm: Allow non-SHA1 digital signatures (Diego Domingos) [1781925]
+- [security] security: export security_kernel_load_data function (Diego Domingos) [1781925]
+- [security] ima: based on policy warn about loading firmware (pre-allocated buffer) (Diego Domingos) [1781925]
+- [security] ima: prevent kexec_load syscall based on runtime secureboot flag (Diego Domingos) [1781925]
+- [security] module: replace the existing LSM hook in init_module (Diego Domingos) [1781925]
+- [security] ima: based on policy require signed firmware (sysfs fallback) (Diego Domingos) [1781925]
+- [security] ima: add support for arch specific policies (Diego Domingos) [1781925]
+- [security] ima: based on policy require signed kexec kernel images (Diego Domingos) [1781925]
+- [security] ima: refactor ima_init_policy() (Diego Domingos) [1781925]
+- [include] sysfs: Fixes __BIN_ATTR_WO() macro (Diego Domingos) [1781925]
+- [include] security: define new LSM hook named security_kernel_load_data (Diego Domingos) [1781925]
+- [kernel] kexec: add call to LSM hook in original kexec_load syscall (Diego Domingos) [1781925]
+- [base] firmware: add call to LSM hook before firmware sysfs fallback (Diego Domingos) [1781925]
+- [security] ima: add build time policy (Diego Domingos) [1781925]
+- [security] ima: Support platform keyring for kernel appraisal (Diego Domingos) [1781925]
+- [security] integrity: Remove references to module keyring (Diego Domingos) [1781925]
+- [powerpc] powerpc/kexec: Fix loading of kernel + initramfs with kexec_file_load() (Diego Domingos) [1781925]
+- [security] ima: Use designated initializers for struct ima_event_data (Diego Domingos) [1781925]
+- [security] ima: Update MAX_TEMPLATE_NAME_LEN to fit largest reasonable definition (Diego Domingos) [1781925]
+- [certs] PKCS#7: Refactor verify_pkcs7_signature() (Diego Domingos) [1781925]
+- [crypto] PKCS#7: Introduce pkcs7_get_digest() (Diego Domingos) [1781925]
+- [security] integrity: Select CONFIG_KEYS instead of depending on it (Diego Domingos) [1781925]
+- [powerpc] powerpc/powernv: Move opal_power_control_init() call in opal_init() (Diego Domingos) [1781925]
+- [security] x86/efi: move common keyring handler functions to new file (Diego Domingos) [1781925]
+- [security] x86/efi: remove unused variables (Diego Domingos) [1781925]
+- [include] sysfs: add BIN_ATTR_WO() macro (Diego Domingos) [1781925]
+- [x86] x86/ima: define arch_ima_get_secureboot (Diego Domingos) [1781925]
+- [powerpc] powerpc/pci: unmap legacy INTx interrupts of passthrough IO adapters (Steve Best) [1840279]
+- [powerpc] powerpc/xive: Clear the page tables for the ESB IO mapping (Steve Best) [1840279]
+- [hv] hyper-v: Use UUID API for exporting the GUID (Mohammed Gamal) [1828451 1815498]
+- [kernel] uuid: Add inline helpers to import / export UUIDs (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: Move AEOI determination to architecture dependent code (Mohammed Gamal) [1828451 1815498]
+- [x86] hyper-v: Report crash data in die() when panic_on_oops is set (Mohammed Gamal) [1828451 1815498]
+- [hv] x86/hyper-v: Report crash register data when sysctl_record_panic_msg is not set (Mohammed Gamal) [1828451 1815498]
+- [x86] hyper-v: Report crash register data or kmsg before running crash kernel (Mohammed Gamal) [1828451 1815498]
+- [hv] x86/hyper-v: Trigger crash enlightenment only once during system crash (Mohammed Gamal) [1828451 1815498]
+- [hv] x86/hyper-v: Free hv_panic_page when fail to register kmsg dump (Mohammed Gamal) [1828451 1815498]
+- [hv] x86/hyper-v: Unload vmbus channel in hv panic callback (Mohammed Gamal) [1828451 1815498]
+- [hv] hv_debugfs: Make hv_debug_root static (Mohammed Gamal) [1828451 1815498]
+- [hv] hyperv_vmbus.h: Replace zero-length array with flexible-array member (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: vmbus: Ignore CHANNELMSG_TL_CONNECT_RESULT(23) (Mohammed Gamal) [1828451 1815498]
+- [hv] hv_balloon: Balloon up according to request page number (Mohammed Gamal) [1828451 1815498]
+- [hv] hv_balloon: use generic_online_page() (Mohammed Gamal) [1828451 1815498]
+- [mm] memory_hotplug: export generic_online_page() (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: vmbus: Fix crash handler reset of Hyper-V synic (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: Replace binary semaphore with mutex (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: balloon: Remove dependencies on guest page size (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: vmbus: Remove dependencies on guest page size (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: util: Specify ring buffer size using Hyper-V page size (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: Specify receive buffer size using Hyper-V page size (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: vmbus: Add module parameter to cap the VMBus version (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: vmbus: Enable VMBus protocol versions 4.1, 5.1 and 5.2 (Mohammed Gamal) [1828451 1815498]
+- [hv] hv: vmbus: Introduce table of VMBus protocol versions (Mohammed Gamal) [1828451 1815498]
+- [pci] hv: Replace zero-length array with flexible-array member (Mohammed Gamal) [1793636]
+- [pci] hv: Decouple the func definition in hv_dr_state from VSP message (Mohammed Gamal) [1793636]
+- [pci] hv: Add support for protocol 1.3 and support PCI_BUS_RELATIONS2 (Mohammed Gamal) [1793636]
+- [pci] hv: Add missing kfree(hbus) in hv_pci_probe()'s error handling path (Mohammed Gamal) [1793636]
+- [pci] hv: Remove unnecessary type casting from kzalloc (Mohammed Gamal) [1793636]
+- [pci] hv: Avoid a kmemleak false positive caused by the hbus buffer (Mohammed Gamal) [1793636]
+- [infiniband] RDMA/srpt: Fix disabling device management (Kamal Heib) [1840016]
+- [misc] vhost: disable for OABI (Jason Wang) [1771441]
+- [include] virtio: drop vringh.h dependency (Jason Wang) [1771441]
+- [virtio] virtio_input: pull in slab.h (Jason Wang) [1771441]
+- [char] virtio-rng: pull in slab.h (Jason Wang) [1771441]
+- [block] virtio_blk: add a missing include (Jason Wang) [1771441]
+- [vdpa] vdpa: fix comment of vdpa_register_device() (Jason Wang) [1771441]
+- [vhost] vdpa: make vhost, virtio depend on menu (Jason Wang) [1771441]
+- [include] vdpa: allow a 32 bit vq alignment (Jason Wang) [1771441]
+- [vdpa] vdpasim: Return status in vdpasim_get_status (Jason Wang) [1771441]
+- [vdpa] vdpa: remove unused variables 'ifcvf' and 'ifcvf_lm' (Jason Wang) [1771441]
+- [vdpa] vdpa-sim: depend on HAS_DMA (Jason Wang) [1771441]
+- [virtio] vdpa: move to drivers/vdpa (Jason Wang) [1771441]
+- [virtio] virtio: Intel IFC VF driver for VDPA (Jason Wang) [1771441]
+- [virtio] vdpasim: vDPA device simulator (Jason Wang) [1771441]
+- [vhost] vhost: introduce vDPA-based backend (Jason Wang) [1771441]
+- [virtio] virtio: introduce a vDPA based transport (Jason Wang) [1771441]
+- [virtio] vDPA: introduce vDPA bus (Jason Wang) [1771441]
+- [vhost] vringh: IOTLB support (Jason Wang) [1771441]
+- [vhost] vhost: factor out IOTLB (Jason Wang) [1771441]
+- [vhost] vhost: allow per device message handler (Jason Wang) [1771441]
+- [misc] vhost: refine vhost and vringh kconfig (Jason Wang) [1771441]
+- [vhost] vringh: fix copy direction of vringh_iov_push_kern() (Jason Wang) [1771441]
+- [vhost] vhost: factor out setting vring addr and num (Jason Wang) [1771441]
+- [vhost] vhost: introduce helpers to get the size of metadata area (Jason Wang) [1771441]
+- [vhost] vhost: rename vq_iotlb_prefetch() to vq_meta_prefetch() (Jason Wang) [1771441]
+- [vhost] vhost: fine grain userspace memory accessors (Jason Wang) [1771441]
+- [vhost] vhost: generalize adding used elem (Jason Wang) [1771441]
+- [misc] mic: vop: Allow building on more systems (Jason Wang) [1771441]
+- [virtio] virtio: support VIRTIO_F_ORDER_PLATFORM (Jason Wang) [1771441]
+- [uapi] vhost: split structs into a separate header file (Jason Wang) [1771441]
+- [fs] compat_ioctl: add compat_ptr_ioctl() (Jason Wang) [1771441]
+- [vhost] vhost: allow vhost-scsi driver to be built-in (Jason Wang) [1771441]
+- [x86] arch/x86: Remove vendor specific CPU ID checks (Prarit Bhargava) [1840145]
+- [tools] perf vendor events amd: Update Zen1 events to V2 (Wei Huang) [1790641]
+- [tools] perf vendor events amd: Add Zen2 events (Wei Huang) [1790641]
+- [tools] perf vendor events amd: Restrict model detection for zen1 based processors (Wei Huang) [1790641]
+- [x86] perf/amd/uncore: Add support for Family 19h L3 PMU (Wei Huang) [1790641]
+- [x86] perf/amd/uncore: Make L3 thread mask code more readable (Wei Huang) [1790641]
+- [x86] perf/amd/uncore: Prepare L3 thread mask code for Family 19h (Wei Huang) [1790641]
+- [scsi] scsi: fnic: Use scnprintf() for avoiding potential buffer overflow (Govindarajulu Varadarajan) [1797808]
+- [scsi] scsi: fnic: do not queue commands during fwreset (Govindarajulu Varadarajan) [1797808]
+- [scsi] scsi: fnic: fix invalid stack access (Govindarajulu Varadarajan) [1797808]
+- [scsi] scsi: fnic: fix use after free (Govindarajulu Varadarajan) [1797808]
+- [scsi] scsi: fnic: make array dev_cmd_err static const, makes object smaller (Govindarajulu Varadarajan) [1797808]
+
+* Tue Jun 02 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-209.el8]
+- [media] media: v4l: fix uapi mpeg slice params definition (Torez Smith) [1825410 1821835]
+- [uapi] v4l2-controls: add a missing include (Torez Smith) [1825410 1821835]
+- [dma] dma-mapping: remove dma_release_declared_memory (Torez Smith) [1825410 1821835]
+- [usb] usb/ohci-tmio: remove the HCD_DMA flag (Torez Smith) [1825410 1821835]
+- [usb] usb: add a HCD_DMA flag instead of guestimating DMA capabilities (Torez Smith) [1825410 1821835]
+- [usb] usb: add a hcd_uses_dma helper (Torez Smith) [1825410 1821835]
+- [usb] usb: don't create dma pools for HCDs with a localmem_pool (Torez Smith) [1825410 1821835]
+- [usb] usb: host: ohci-tmio: Mark expected switch fall-throughs (Torez Smith) [1825410 1821835]
+- [usb] USB: drop HCD_LOCAL_MEM flag (Torez Smith) [1825410 1821835]
+- [usb] usb: host: ohci-tmio: init genalloc for local memory (Torez Smith) [1825410 1821835]
+- [usb] dma-mapping: remove the DMA_MEMORY_EXCLUSIVE flag (Torez Smith) [1825410 1821835]
+- [media] media: xirlink_cit: add missing descriptor sanity checks (Torez Smith) [1825410 1821835]
+- [media] media: ttusb-dec: Fix info-leak in ttusb_dec_send_command() (Torez Smith) [1788005 1825410 1821835] {CVE-2019-19533}
+- [media] media: usb: fix memory leak in af9005_identify_state (Torez Smith) [1825141 1825410 1821835] {CVE-2019-18809}
+- [netdrv] cdc_ether: fix rndis support for Mediatek based smartphones (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: remove calling netif_napi_del (Torez Smith) [1825410 1821835]
+- [netdrv] Revert "r8152: napi hangup fix after disconnect" (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: Set memory to all 0xFFs on failed reg reads (Torez Smith) [1825410 1821835]
+- [netdrv] net: kalmia: fix memory leaks (Torez Smith) [1825410 1821835]
+- [netdrv] cx82310_eth: fix a memory leak bug (Torez Smith) [1825410 1821835]
+- [netdrv] lan78xx: Fix memory leaks (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: fix typo in register name (Torez Smith) [1825410 1821835]
+- [netdrv] can: peak_usb: pcan_usb_pro: Fix info-leaks to USB devices (Torez Smith) [1825410 1821835]
+- [netdrv] can: peak_usb: pcan_usb_fd: Fix info-leaks to USB devices (Torez Smith) [1825410 1821835]
+- [netdrv] can: peak_usb: force the string buffer NULL-terminated (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: pegasus: fix improper read if get_registers() fail (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: qmi_wwan: Add the BroadMobi BM818 card (Torez Smith) [1825410 1821835]
+- [netdrv] can: mark expected switch fall-throughs (Torez Smith) [1825410 1821835]
+- [netdrv] can: peak_usb: fix potential double kfree_skb() (Torez Smith) [1825410 1821835]
+- [netdrv] usb: qmi_wwan: add D-Link DWM-222 A2 device ID (Torez Smith) [1825410 1821835]
+- [uapi] media: videodev2.h: change V4L2_PIX_FMT_BGRA444 define: fourcc was already in use (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: set RTL8152_UNPLUG only for real disconnection (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: move calling r8153b_rx_agg_chg_indicate() (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: asix: init MAC address buffers (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: fix the setting of detecting the linking change for runtime suspend (Torez Smith) [1825410 1821835]
+- [media] media: hdpvr: fix locking and a missing msleep (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Fix out-of-bounds read (Torez Smith) [1825410 1821835]
+- [uapi] media: videodev2.h: Fix shifting signed 32-bit value by 31 bits problem (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 468 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 238 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 235 (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: extend permitted QMAP mux_id value range (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: avoid RCU stalls on device disconnect when in QMAP mode (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: add network device usage statistics for qmimux devices (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: add support for QMAP padding in the RX path (Torez Smith) [1825410 1821835]
+- [media] media: cx231xx-cards: Add Hauppauge 955Q variant (Torez Smith) [1825410 1821835]
+- [media] media: pvrusb2: Add Hauppauge HVR1955/1975 devices (Torez Smith) [1825410 1821835]
+- [media] media: pvrusb2: Add i2c client demod/tuner support (Torez Smith) [1825410 1821835]
+- [media] media: pvrusb2: Add multiple dvb frontend support (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Fix access to uninitialized fields on probe error (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Include streaming interface number in debugfs dir name (Torez Smith) [1825410 1821835]
+- [netdrv] can: usb: Kconfig: Remove duplicate menu entry (Torez Smith) [1825410 1821835]
+- [media] media: pvrusb2: fix null-ptr-deref in class_unregister() (Torez Smith) [1825410 1821835]
+- [media] media: cxusb: Revert "media: cxusb: add raw mode support for, Medion MD95700" (Torez Smith) [1825410 1821835]
+- [netdrv] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 412 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 286 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 258 (Torez Smith) [1825410 1821835]
+- [media] media: media/usb: set device_caps in struct video_device (Torez Smith) [1825410 1821835]
+- [media] media: dvb-usb/cxusb-analog.c: fix coccinelle warning, use ktime.h (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 174 (Torez Smith) [1825410 1821835]
+- [netdrv] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 164 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 131 (Torez Smith) [1825410 1821835]
+- [media] media: cx231xx-dvb: fix memory leak in dvb_fini() (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: use usb_to_input_id() rather than handrolling it (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: use common code for decoding nec scancodes (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: give RC device proper name (Torez Smith) [1825410 1821835]
+- [media] media: cxusb: fix several coding style issues (Torez Smith) [1825410 1821835]
+- [media] media: cxusb-analog: Fix some coding style issues (Torez Smith) [1825410 1821835]
+- [media] media: cxusb: add raw mode support for Medion MD95700 (Torez Smith) [1825410 1821835]
+- [media] media: cxusb: add analog mode support for Medion MD95700 (Torez Smith) [1825410 1821835]
+- [media] media: cxusb: implement Medion MD95700 digital / analog coexistence (Torez Smith) [1825410 1821835]
+- [media] media: usb:zr364xx:Fix KASAN:null-ptr-deref Read in zr364xx_vidioc_querycap (Torez Smith) [1825410 1821835]
+- [media] media: pwc: convert to BIT macro (Torez Smith) [1825410 1821835]
+- [media] media: cpia2_usb: first wake up, then free in disconnect (Torez Smith) [1825410 1821835]
+- [media] media: pvrusb2: use a different format for warnings (Torez Smith) [1825410 1821835]
+- [media] media: smsusb: better handle optional alignment (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 118 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 65 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 61 (Torez Smith) [1825410 1821835]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 55 (Torez Smith) [1825410 1821835]
+- [media] media: remove redundant 'default n' from Kconfig-s (Torez Smith) [1825410 1821835]
+- [media] media: af9035: Remove duplicate error reporting for dvbsky_usb_generic_rw (Torez Smith) [1825410 1821835]
+- [media] media: dvbsky: Remove duplicate error reporting for dvbsky_usb_generic_rw (Torez Smith) [1825410 1821835]
+- [media] media: dvb-usb-v2: Report error on all error paths (Torez Smith) [1825410 1821835]
+- [media] media: au0828: fix null dereference in error path (Torez Smith) [1825410 1821835]
+- [media] media: dvb: usb: fix use after free in dvb_usb_device_exit (Torez Smith) [1825410 1821835]
+- [media] media: usb: siano: Fix false-positive "uninitialized variable" warning (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: fix kernel crash after disconnect (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: ipheth: fix racing condition (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 24 (Torez Smith) [1825410 1821835]
+- [netdrv] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 17 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 13 (Torez Smith) [1825410 1821835]
+- [media] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 1 (Torez Smith) [1825410 1821835]
+- [media] treewide: Add SPDX license identifier - Makefile/Kconfig (Torez Smith) [1825410 1821835]
+- [media] treewide: Add SPDX license identifier for more missed files (Torez Smith) [1825410 1821835]
+- [media] media: usb: siano: Fix general protection fault in smsusb (Torez Smith) [1825410 1821835]
+- [media] media: prefix header search paths with $(srctree)/ (Torez Smith) [1825410 1821835]
+- [media] media: remove unneeded header search paths (Torez Smith) [1825410 1821835]
+- [netdrv] aqc111: cleanup mtu related logic (Torez Smith) [1825410 1821835]
+- [netdrv] Revert "aqc111: fix writing to the phy on BE" (Torez Smith) [1825410 1821835]
+- [netdrv] Revert "aqc111: fix double endianness swap on BE" (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: qmi_wwan: add Telit 0x1260 and 0x1261 compositions (Torez Smith) [1825410 1821835]
+- [netdrv] aqc111: fix double endianness swap on BE (Torez Smith) [1825410 1821835]
+- [netdrv] aqc111: fix writing to the phy on BE (Torez Smith) [1825410 1821835]
+- [netdrv] aqc111: fix endianness issue in aqc111_change_mtu (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: smsc: fix warning reported by kbuild test robot (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: support of_get_mac_address new ERR_PTR error (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: ipheth: Remove unnecessary NULL pointer check (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: ipheth: Simplify device detection (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: new Wistron, ZTE and D-Link devices (Torez Smith) [1825410 1821835]
+- [uapi] media: v4l: Add definitions for missing 16-bit RGB555 formats (Torez Smith) [1825410 1821835]
+- [uapi] media: v4l: Add definitions for missing 16-bit RGB4444 formats (Torez Smith) [1825410 1821835]
+- [uapi] media: v4l: Add definitions for missing 32-bit RGB formats (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: sync sa_family with the media type of network device (Torez Smith) [1825410 1821835]
+- [media] media: pvrusb2: Prevent a buffer overflow (Torez Smith) [1825410 1821835]
+- [media] media: au0828: stop video streaming only when last user stops (Torez Smith) [1825410 1821835]
+- [media] media: au0828: Fix NULL pointer dereference in au0828_analog_stream_enable() (Torez Smith) [1825410 1821835]
+- [media] media: au0828: fix enable and disable source audio and video inconsistencies (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Add quirk for Quectel dynamic config (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: Refresh MAC address during USBDEVFS_RESET (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: remove extra action copying ethernet address (Torez Smith) [1825410 1821835]
+- [media] media: replace strncpy() by strscpy() (Torez Smith) [1825410 1821835]
+- [media] media: usbvision: fix a potential NULL pointer dereference (Torez Smith) [1825410 1821835]
+- [media] media: gspca: Kill URBs on USB device disconnect (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: add Olicard 600 (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Extend HWID table by QNAP device (Torez Smith) [1825410 1821835]
+- [media] media: pwc-ctl: pChoose can't be NULL (Torez Smith) [1825410 1821835]
+- [media] media: Kconfig files: use the right help coding style (Torez Smith) [1825410 1821835]
+- [media] media: em28xx-input: make const array addr_list static (Torez Smith) [1825410 1821835]
+- [media] media: dvb: Add support for the Avermedia TD310 (Torez Smith) [1825410 1821835]
+- [media] media: dvb: init i2c already in it930x_frontend_attach (Torez Smith) [1825410 1821835]
+- [media] media: dvbsky: Avoid leaking dvb frontend (Torez Smith) [1825410 1821835]
+- [media] media: gspca: do not resubmit URBs when streaming has stopped (Torez Smith) [1825410 1821835]
+- [media] media: au0828: minor fix to a misleading comment in _close() (Torez Smith) [1825410 1821835]
+- [media] media: go7007: avoid clang frame overflow warning with KASAN (Torez Smith) [1825410 1821835]
+- [media] media: cpia2: Fix use-after-free in cpia2_exit (Torez Smith) [1825410 1821835]
+- [netdrv] peak_usb: fix clang build warning (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Add support for Quectel EG12/EM12 (Torez Smith) [1825410 1821835]
+- [media] media: a few more typos at staging, pci, platform, radio and usb (Torez Smith) [1825410 1821835]
+- [media] media: usb: fix several typos (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Use usb_make_path to fill in usb_info (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Fix smatch warning (Torez Smith) [1825410 1821835]
+- [media] media: v4l: Add 32-bit packed YUV formats (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: cdc-phonet: use struct_size() in alloc_netdev() (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: rtl8150: mark expected switch fall-through (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: pegasus: Mark expected switch fall-through (Torez Smith) [1825410 1821835]
+- [media] media: hdpvr: fix smatch warning (Torez Smith) [1825410 1821835]
+- [media] media: usbvision: use u64 for the timestamp internally (Torez Smith) [1825410 1821835]
+- [media] media: stkwebcam: use u64 for the timestamp internally (Torez Smith) [1825410 1821835]
+- [media] media: cpia2: use u64 for the timestamp internally (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Avoid NULL pointer dereference at the end of streaming (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Fix 'type' check leading to overflow (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: asix: ax88772_bind return error when hw_reset fail (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: rtl8150: remove set but not used variable 'rx_stat' (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Extend HWID table by TRENDnet device (Torez Smith) [1825410 1821835]
+- [uapi] media: videodev2.h: Add more field helper macros (Torez Smith) [1825410 1821835]
+- [media] media: gspca: ov534-ov772x: remove unnecessary COM3 initialization (Torez Smith) [1825410 1821835]
+- [media] media: gspca: ov534-ov722x: remove camera clock setup from bridge_init (Torez Smith) [1825410 1821835]
+- [media] media: gspca: ov534-ov722x: remove mode specific video data registers from bridge_init (Torez Smith) [1825410 1821835]
+- [media] media: gspca: ov534-ov772x: add SGBRG8 bayer mode support (Torez Smith) [1825410 1821835]
+- [media] media: gspca: ov543-ov772x: move video format specific registers into bridge_start (Torez Smith) [1825410 1821835]
+- [media] media: gspca: support multiple pixel formats in TRY_FMT (Torez Smith) [1825410 1821835]
+- [media] media: gspca: support multiple pixel formats in ENUM_FRAMEINTERVALS (Torez Smith) [1825410 1821835]
+- [media] media: gspca: ov534: replace msleep(10) with usleep_range (Torez Smith) [1825410 1821835]
+- [uapi] media: v4l: uAPI: V4L2_BUF_TYPE_META_OUTPUT is an output buffer type (Torez Smith) [1825410 1821835]
+- [media] media: gspca: mt9m111: Check write_bridge for timeout (Torez Smith) [1825410 1821835]
+- [media] media: gspca: Check the return value of write_bridge for timeout (Torez Smith) [1825410 1821835]
+- [media] media: usb: gspca: add a missed check for goto_low_power (Torez Smith) [1825410 1821835]
+- [media] media: usb: gspca: add a missed return-value check for do_command (Torez Smith) [1825410 1821835]
+- [media] media: v4l2-ctrls.c/uvc: zero v4l2_event (Torez Smith) [1825410 1821835]
+- [media] media: usb: pwc: Don't use coherent DMA buffers for ISO transfer (Torez Smith) [1825410 1821835]
+- [media] media: usb: pwc: Introduce TRACE_EVENTs for pwc_isoc_handler() (Torez Smith) [1825410 1821835]
+- [netdrv] cdc_ether: trivial whitespace readability fix (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: add MTU default to qmap network interface (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Fix qmap header retrieval in qmimux_rx_fixup (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Add support for Fibocom NL678 series (Torez Smith) [1825410 1821835]
+- [netdrv] lan78xx: Resolve issue with changing MAC address (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Added support for Telit LN940 series (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Added support for Fibocom NL668 series (Torez Smith) [1825410 1821835]
+- [media] media: v4l: Add support for V4L2_BUF_TYPE_META_OUTPUT (Torez Smith) [1825410 1821835]
+- [media] media: siano: Use kmemdup instead of duplicating its function (Torez Smith) [1825410 1821835]
+- [media] media: pvrusb2: fix spelling mistake "statuss" -> "status" (Torez Smith) [1825410 1821835]
+- [media] media: lmedm04: Move interrupt buffer to priv buffer (Torez Smith) [1825410 1821835]
+- [media] media: lmedm04: Add missing usb_free_urb to free interrupt urb (Torez Smith) [1825410 1821835]
+- [media] media: stkwebcam: Bugfix for wrong return values (Torez Smith) [1825410 1821835]
+- [media] media: stkwebcam: Support for ASUS A6VM notebook added (Torez Smith) [1825410 1821835]
+- [media] media: usb: dvb-usb: remove old friio driver (Torez Smith) [1825410 1821835]
+- [media] media: lmedm04: use dvb_usbv2_generic_rw_locked (Torez Smith) [1825410 1821835]
+- [media] media: lmedm04: Move usb buffer to lme2510_state (Torez Smith) [1825410 1821835]
+- [media] media: rtl28xxu: add support for Sony CXD2837ER slave demod (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Utilise for_each_uvc_urb iterator (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Rename uvc_{un, }init_video() (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Split uvc_video_enable into two (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Move decode processing to process context (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Abstract streaming object lifetime (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: queue: Support asynchronous buffer handling (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: queue: Simplify spin-lock usage (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Protect queue internals with helper (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Convert decode functions to use new context structure (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Refactor URB descriptors (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: fix spelling mistake, "Cinnergy" -> "Cinergy" (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Refactor teardown of uvc on USB disconnect (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Add support for the CNF4 format (Torez Smith) [1825410 1821835]
+- [documentation] media: v4l: Add 4bpp packed depth confidence format CNF4 (Torez Smith) [1825410 1821835]
+- [media] media: usb: Use kmemdup instead of duplicating its function (Torez Smith) [1825410 1821835]
+- [media] media: dvb: Use WARM definition from identify_state() (Torez Smith) [1825410 1821835]
+- [media] media: dib0700: fix spelling mistake "Amplifyer" -> "Amplifier" (Torez Smith) [1825410 1821835]
+- [media] media: dvb-usb-v2: Fix incorrect use of transfer_flags URB_FREE_BUFFER (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Initialize wol_cfg with memset in aqc111_suspend (Torez Smith) [1825410 1821835]
+- [netdrv] net: Don't default Aquantia USB driver to 'y' (Torez Smith) [1825410 1821835]
+- [netdrv] can: ucan: fix spelling mistake: "resumbmitting" -> "resubmitting" (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Extend cdc_ether blacklist (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add ASIX's HW ids (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add support for wake on LAN by MAGIC packet (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Implement get/set_link_ksettings callbacks (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Initialize ethtool_ops structure (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add RX VLAN filtering support (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add support for VLAN_CTAG_TX/RX offload (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Implement set_rx_mode callback (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add support for TSO (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add support for enable/disable checksum offload (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add support for changing MTU (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add checksum offload support (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Implement RX data path (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Implement TX data path (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add support for getting and setting of MAC address (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Introduce link management (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Introduce PHY access (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Various callbacks implementation (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add implementation of read and write commands (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Add bind and empty unbind callbacks (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: aqc111: Driver skeleton for Aquantia AQtion USB to 5GbE (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: ipheth: fix potential recvmsg bug and recvmsg bug 2 (Torez Smith) [1825410 1821835]
+- [media] media: pulse8-cec: return 0 when invalidating the logical address (Torez Smith) [1825410 1821835]
+- [media] media: gspca: fix frame overflow error (Torez Smith) [1825410 1821835]
+- [media] media: cropcap/g_selection split (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: smsc95xx: check for csum being in last four bytes (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: smsc95xx: fix memcpy for accessing rx-data (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: smsc95xx: simplify tx_fixup code (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: smsc95xx: fix rx packet alignment (Torez Smith) [1825410 1821835]
+- [netdrv] can: ucan: remove duplicated include from ucan.c (Torez Smith) [1825410 1821835]
+- [netdrv] can: ucan: remove set but not used variable 'udev' (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Fix accessing freed memory in kvaser_usb_start_xmit() (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Fix potential uninitialized variable use (Torez Smith) [1825410 1821835]
+- [netdrv] net: smsc95xx: Fix MTU range (Torez Smith) [1825410 1821835]
+- [netdrv] usbnet: smsc95xx: disable carrier check while suspending (Torez Smith) [1825410 1821835]
+- [netdrv] net: cdc_ncm: remove set but not used variable 'ctx' (Torez Smith) [1825410 1821835]
+- [netdrv] net: cdc_ncm: use tasklet_init() for tasklet_struct init (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Added support for Gemalto's Cinterion ALASxx WWAN interface (Torez Smith) [1825410 1821835]
+- [media] media: pvrusb2: replace `printk` with `pr_*` (Torez Smith) [1825410 1821835]
+- [media] media: cx231xx: fix potential sign-extension overflow on large shift (Torez Smith) [1825410 1821835]
+- [media] Revert "media: dvbsky: use just one mutex for serializing device R/W ops" (Torez Smith) [1825410 1821835]
+- [netdrv] net/usb: cancel pending work when unbinding smsc75xx (Torez Smith) [1825410 1821835]
+- [netdrv] smsc95xx: Check for Wake-on-LAN modes (Torez Smith) [1825410 1821835]
+- [netdrv] smsc75xx: Check for Wake-on-LAN modes (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: Check for supported Wake-on-LAN Modes (Torez Smith) [1825410 1821835]
+- [netdrv] sr9800: Check for supported Wake-on-LAN modes (Torez Smith) [1825410 1821835]
+- [netdrv] lan78xx: Check for supported Wake-on-LAN modes (Torez Smith) [1825410 1821835]
+- [netdrv] ax88179_178a: Check for supported Wake-on-LAN modes (Torez Smith) [1825410 1821835]
+- [netdrv] asix: Check for supported Wake-on-LAN modes (Torez Smith) [1825410 1821835]
+- [media] media: v4l: Add definition for the Sunxi tiled NV12 format (Torez Smith) [1825410 1821835]
+- [documentation] media: v4l: Add definitions for MPEG-2 slice format and metadata (Torez Smith) [1825410 1821835]
+- [media] media: au0828: Fix incorrect error messages (Torez Smith) [1825410 1821835]
+- [media] media: au0828: cannot kfree dev before usb disconnect (Torez Smith) [1825410 1821835]
+- [netdrv] net: lan78xx: Avoid unnecessary self assignment (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: set DTR for modems in forced USB2 mode (Torez Smith) [1825410 1821835]
+- [media] media: mxl111sf: declare its own pads (Torez Smith) [1825410 1821835]
+- [media] media: au0828: use signals instead of hardcoding a pad number (Torez Smith) [1825410 1821835]
+- [media] media: v4l2: taint pads with the signal types for consumer devices (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: make v4l2-compliance happier by starting sequence on zero (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: fix input name for Terratec AV 350 (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: use a default format if TRY_FMT fails (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: fix handler for vidioc_s_input() (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: remove redundant null pointer check before of_node_put (Torez Smith) [1825410 1821835]
+- [media] media: usbvision: remove time_in_irq (Torez Smith) [1825410 1821835]
+- [media] media: gspca: sq930x: use GFP_KERNEL in sd_dq_callback() (Torez Smith) [1825410 1821835]
+- [media] media: replace strcpy() by strscpy() (Torez Smith) [1825410 1821835]
+- [media] media: use strscpy() instead of strlcpy() (Torez Smith) [1825410 1821835]
+- [documentation] media: videodev2.h: add new capabilities for buffer types (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Store device information pointer in struct uvc_device (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Rename UVC_QUIRK_INFO to UVC_INFO_QUIRK (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Fix uvc_alloc_entity() allocation alignment (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Fix spelling mistake: "entites" -> "entities" (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Remove unnecessary NULL check before debugfs_remove_recursive (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Make uvc_control_mapping menu_info field const (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Make some structs const (Torez Smith) [1825410 1821835]
+- [netdrv] qmi_wwan: Support dynamic config on Quectel EP06 (Torez Smith) [1825410 1821835]
+- [netdrv] lan78xx: Do not access skb_queue_head list pointers directly (Torez Smith) [1825410 1821835]
+- [netdrv] net: lan78xx: Make declaration style consistent (Torez Smith) [1825410 1821835]
+- [netdrv] net: lan78xx: Switch to SPDX identifier (Torez Smith) [1825410 1821835]
+- [netdrv] net: lan78xx: Drop unnecessary strcpy in lan78xx_probe (Torez Smith) [1825410 1821835]
+- [netdrv] net: lan78xx: Bail out if lan78xx_get_endpoints fails (Torez Smith) [1825410 1821835]
+- [netdrv] net: usbnet: mark expected switch fall-through (Torez Smith) [1825410 1821835]
+- [media] media: v4l2-ctrls: v4l2_ctrl_add_handler: add from_other_dev (Torez Smith) [1825410 1821835]
+- [media] media: videodev2.h: add request_fd field to v4l2_ext_controls (Torez Smith) [1825410 1821835]
+- [uapi] media: videodev2.h: Add new DV flag CAN_DETECT_REDUCED_FPS (Torez Smith) [1825410 1821835]
+- [media] media: af9035: prevent buffer overflow on write (Torez Smith) [1825410 1821835]
+- [netdrv] r8152: disable RX aggregation on new Dell TB16 dock (Torez Smith) [1825410 1821835]
+- [netdrv] drivers/net/usb/r8152: remove the unneeded variable "ret" in rtl8152_system_suspend (Torez Smith) [1825410 1821835]
+- [media] media: rtl28xxu: be sure that it won't go past the array size (Torez Smith) [1825410 1821835]
+- [netdrv] net:usb: Use ARRAY_SIZE instead of calculating the array size (Torez Smith) [1825410 1821835]
+- [media] media: au0828: fix spelling mistake: "completition" -> "completion" (Torez Smith) [1825410 1821835]
+- [media] media: cx231xx: fix spelling mistake: "completition" -> "completion" (Torez Smith) [1825410 1821835]
+- [media] media: dvb-usb-v2: fix spelling mistake: "completition" -> "completion" (Torez Smith) [1825410 1821835]
+- [media] media: dvb-usb: fix spelling mistake: "completition" -> "completion" (Torez Smith) [1825410 1821835]
+- [media] media: usb: hackrf: Replace GFP_ATOMIC with GFP_KERNEL (Torez Smith) [1825410 1821835]
+- [media] media: usb: em28xx: Replace mdelay() with msleep() in em28xx_pre_card_setup() (Torez Smith) [1825410 1821835]
+- [media] media: usb: em28xx: Replace GFP_ATOMIC with GFP_KERNEL in em28xx_init_usb_xfer() (Torez Smith) [1825410 1821835]
+- [media] media: dw2102: Fix memleak on sequence of probes (Torez Smith) [1825410 1821835]
+- [media] media: usbtv: use irqsave() in USB's complete callback (Torez Smith) [1825410 1821835]
+- [media] media: go7007: use irqsave() in USB's complete callback (Torez Smith) [1825410 1821835]
+- [media] media: cx231xx: use irqsave() in USB's complete callback (Torez Smith) [1825410 1821835]
+- [documentation] media: v4l: Add new 10-bit packed grayscale format (Torez Smith) [1825410 1821835]
+- [documentation] media: doc-rst: Add packed Bayer raw14 pixel formats (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: disable null packet filter for WinTVdualHD (Torez Smith) [1825410 1821835]
+- [uapi] media: videodev2: get rid of VIDIOC_RESERVED (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: explicitly disable TS packet filter (Torez Smith) [1825410 1821835]
+- [media] media: dvb-usb/friio, dvb-usb-v2/gl861: decompose friio and merge with gl861 (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: sr9700: Replace mdelay() with msleep() in sr9700_bind() (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: pegasus: Replace mdelay() with msleep() in setup_pegasus_II() (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Send a control event when a Control Change interrupt arrives (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Handle control pipe protocol STALLs (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Remove a redundant check (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Also validate buffers in BULK mode (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Add KSMedia 8-bit IR format support (Torez Smith) [1825410 1821835]
+- [media] media: uvcvideo: Fix minor spelling (Torez Smith) [1825410 1821835]
+- [media] media: em28xx-cards: disable V4L2 mode for dual tuners (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: Remove duplicate PID (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: Fix DualHD disconnect oops (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: Fix dual transport stream operation (Torez Smith) [1825410 1821835]
+- [media] media: dib0700: add code comment (Torez Smith) [1825410 1821835]
+- [media] media: cx231xx: don't check number of messages in the driver (Torez Smith) [1825410 1821835]
+- [media] media: em28xx: don't check number of messages in the driver (Torez Smith) [1825410 1821835]
+- [media] media: hdpvr: don't check number of messages in the driver (Torez Smith) [1825410 1821835]
+- [media] media: dvb-usb: don't check number of messages in the driver (Torez Smith) [1825410 1821835]
+- [media] media: tm6000: don't check number of messages in the driver (Torez Smith) [1825410 1821835]
+- [media] media: gl861: fix probe of dvb_usb_gl861 (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Simplify struct kvaser_cmd_cardinfo (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Add support for Kvaser USB hydra family (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Split driver into kvaser_usb_core.c and kvaser_usb_leaf.c (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Add SPDX GPL-2.0 license identifier (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Fix typos (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Improve logging messages (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Refactor kvaser_usb_init_one() (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Refactor kvaser_usb_get_endpoints() (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Add pointer to struct usb_interface into struct kvaser_usb (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Replace USB timeout constants with one define (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Rename message/msg to command/cmd (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Remove unused commands and defines (Torez Smith) [1825410 1821835]
+- [netdrv] can: kvaser_usb: Remove unnecessary return (Torez Smith) [1825410 1821835]
+- [netdrv] can: peak_usb: mark expected switch fall-throughs (Torez Smith) [1825410 1821835]
+- [netdrv] can: ucan: add driver for Theobroma Systems UCAN devices (Torez Smith) [1825410 1821835]
+- [netdrv] can: usb: Kconfig/Makefile: sort alphabetically (Torez Smith) [1825410 1821835]
+- [media] media: gspca_kinect: cast sizeof to int for comparison (Torez Smith) [1825410 1821835]
+- [media] media: videodev.h: add PIX_FMT_FWHT for use with vicodec (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: hso: use swap macro in hso_kick_transmit (Torez Smith) [1825410 1821835]
+- [netdrv] net: usb: asix: allow optionally getting mac address from device tree (Torez Smith) [1825410 1821835]
+
+* Thu May 28 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-208.el8]
+- [hid] HID: Improve Windows Precision Touchpad detection (Benjamin Tissoires) [1811209]
+- [hid] HID: multitouch: enable multi-input as a quirk for some devices (Benjamin Tissoires) [1811209]
+- [hid] drivers/hid/hid-multitouch.c: fix a possible null pointer access (Benjamin Tissoires) [1811209]
+- [hid] HID: multitouch: Add LG MELF0410 I2C touchscreen support (Benjamin Tissoires) [1811209]
+- [hid] HID: multitouch: add support for the Smart Tech panel (Benjamin Tissoires) [1811209]
+- [hid] HID: multitouch: do not filter mice nodes (Benjamin Tissoires) [1811209]
+- [hid] HID: wacom: Report 2nd-gen Intuos Pro S center button status over BT (Benjamin Tissoires) [1835753]
+- [hid] Revert "HID: wacom: generic: read the number of expected touches on a per collection basis" (Benjamin Tissoires) [1835753]
+- [hid] HID: wacom: Read HID_DG_CONTACTMAX directly for non-generic devices (Benjamin Tissoires) [1835753]
+- [hid] HID: wacom: Recognize new MobileStudio Pro PID (Benjamin Tissoires) [1835753]
+- [hid] HID: wacom: generic: Treat serial number and related fields as unsigned (Benjamin Tissoires) [1835753]
+- [hid] HID: wacom: add new MobileStudio Pro 13 support (Benjamin Tissoires) [1835753]
+- [hid] HID: wacom: do not call hid_set_drvdata(hdev, NULL) (Benjamin Tissoires) [1835753]
+- [hid] HID: wacom: support named keys on older devices (Benjamin Tissoires) [1835753]
+- [target] scsi: target: iscsi: calling iscsit_stop_session() inside iscsit_close_session() has no effect (Maurizio Lombardi) [1840024]
+- [target] scsi: target: fix hang when multiple threads try to destroy the same iscsi session (Maurizio Lombardi) [1840024]
+- [target] scsi: target: remove boilerplate code (Maurizio Lombardi) [1840024]
+- [target] scsi: target: use an enum to track emulate_ua_intlck_ctrl (Maurizio Lombardi) [1840024]
+- [target] scsi: target: convert boolean se_dev_attrib types to bool (Maurizio Lombardi) [1840024]
+- [target] scsi: target: fix unmap_zeroes_data boolean initialisation (Maurizio Lombardi) [1840024]
+- [fs] page cache: Finish XArray conversion (Waiman Long) [1812073]
+- [mm] mm: Convert __do_page_cache_readahead to XArray (Waiman Long) [1812073]
+- [mm] mm: Convert is_page_cache_freeable to XArray (Waiman Long) [1812073]
+- [mm] mm: memcontrol: clean up and document effective low/min calculations (Waiman Long) [1812073]
+- [mm] mm: memcontrol: fix memory.low proportional distribution (Waiman Long) [1812073]
+- [mm] mm: kmem: rename (__)memcg_kmem_(un)charge_memcg() to __memcg_kmem_(un)charge() (Waiman Long) [1812073]
+- [mm] mm: memcg/slab: cache page number in memcg_(un)charge_slab() (Waiman Long) [1812073]
+- [mm] mm: kmem: switch to nr_pages in (__)memcg_kmem_charge_memcg() (Waiman Long) [1812073]
+- [mm] mm: kmem: rename memcg_kmem_(un)charge() into memcg_kmem_(un)charge_page() (Waiman Long) [1812073]
+- [mm] mm: kmem: cleanup memcg_kmem_uncharge_memcg() arguments (Waiman Long) [1812073]
+- [mm] mm: kmem: cleanup (__)memcg_kmem_charge_memcg() arguments (Waiman Long) [1812073]
+- [mm] mm: memcg/slab: use mem_cgroup_from_obj() (Waiman Long) [1812073]
+- [kernel] mm: fork: fix kernel_stack memcg stats for various stack implementations (Waiman Long) [1812073]
+- [mm] memcg: fix NULL pointer dereference in __mem_cgroup_usage_unregister_event (Waiman Long) [1812073]
+- [mm] mm: clean up and clarify lruvec lookup procedure (Waiman Long) [1812073]
+- [mm] mm: memcontrol: try harder to set a new memory.high (Waiman Long) [1812073]
+- [mm] mm: memcontrol: remove dead code from memory_max_write() (Waiman Long) [1812073]
+- [mm] mm, memcg: clean up reclaim iter array (Waiman Long) [1812073]
+- [mm] mm, memcg: make scan aggression always exclude protection (Waiman Long) [1812073]
+- [mm] mm, memcg: make memory.emin the baseline for utilisation determination (Waiman Long) [1812073]
+- [mm] mm, memcg: proportional memory.{low, min} reclaim (Waiman Long) [1812073]
+- [mm] memcg, kmem: do not fail __GFP_NOFAIL charges (Waiman Long) [1812073]
+- [mm] mm: workingset: fix vmstat counters for shadow nodes (Waiman Long) [1812073]
+- [mm] mm: memcontrol: use CSS_TASK_ITER_PROCS at mem_cgroup_scan_tasks() (Waiman Long) [1812073]
+- [kernel] fork, memcg: alloc_thread_stack_node needs to set tsk->stack (Waiman Long) [1812073]
+- [mm] mm/memcontrol.c: fix bad line in comment (Waiman Long) [1812073]
+- [kernel] fork, memcg: fix cached_stacks case (Waiman Long) [1812073]
+- [mm] mm: don't raise MEMCG_OOM event due to failed high-order allocation (Waiman Long) [1812073]
+- [mm] mm: vmscan: memcontrol: remove mem_cgroup_select_victim_node() (Waiman Long) [1812073]
+- [mm] mm: vmscan: do not share cgroup iteration between reclaimers (Waiman Long) [1812073]
+- [mm] mm: vmscan: do not iterate all mem cgroups for global direct reclaim (Waiman Long) [1812073]
+- [mm] mm: workingset: use cheaper __inc_lruvec_state in irqsafe node reclaim (Waiman Long) [1812073]
+- [tools] xarray: Fix early termination of xas_for_each_marked (Waiman Long) [1812073]
+- [lib] mm: Convert workingset to XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert filemap_range_has_page to XArray (Waiman Long) [1812073]
+- [mm] page cache: Remove stray radix comment (Waiman Long) [1812073]
+- [mm] page cache: Convert delete_batch to XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert filemap_map_pages to XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert find_get_entries_tag to XArray (Waiman Long) [1812073]
+- [mm] page cache; Convert find_get_pages_range_tag to XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert find_get_pages_contig to XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert find_get_pages_range to XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert find_get_entries to XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert find_get_entry to XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert page deletion to XArray (Waiman Long) [1812073]
+- [include] page cache: Add and replace pages using the XArray (Waiman Long) [1812073]
+- [mm] page cache: Convert hole search to XArray (Waiman Long) [1812073]
+- [kernel] docs: cgroup-v1: Document the cpuset_v2_mode mount option (Waiman Long) [1812073]
+- [kernel] cgroup1: don't call release_agent when it is "" (Waiman Long) [1812073]
+- [kernel] cgroup: Iterate tasks that did not finish do_exit() (Waiman Long) [1812073]
+- [kernel] cgroup: cgroup_procs_next should increase position index (Waiman Long) [1812073]
+- [kernel] cgroup-v1: cgroup_pidlist_next should update position index (Waiman Long) [1812073]
+- [kernel] cgroup: init_tasks shouldn't be linked to the root cgroup (Waiman Long) [1812073]
+- [kernel] cgroup: Prevent double killing of css when enabling threaded cgroup (Waiman Long) [1812073]
+- [kernel] cgroup: fix function name in comment (Waiman Long) [1812073]
+- [kernel] cgroup: freezer: don't change task and cgroups status unnecessarily (Waiman Long) [1812073]
+- [kernel] cgroup: use cgroup->last_bstat instead of cgroup->bstat_pending for consistency (Waiman Long) [1812073]
+- [kernel] cgroup: remove cgroup_enable_task_cg_lists() optimization (Waiman Long) [1812073]
+- [kernel] cgroup: pids: use atomic64_t for pids->limit (Waiman Long) [1812073]
+- [kernel] cgroup: Optimize single thread migration (Waiman Long) [1812073]
+- [kernel] cgroup: Update comments about task exit path (Waiman Long) [1812073]
+- [kernel] cgroup: short-circuit current_cgns_cgroup_from_root() on the default hierarchy (Waiman Long) [1812073]
+- [kernel] Use kvmalloc in cgroups-v1 (Waiman Long) [1812073]
+- [kernel] cgroup: minor tweak for logic to get cgroup css (Waiman Long) [1812073]
+- [kernel] cgroup: Replace a seq_printf() call by seq_puts() in cgroup_print_ss_mask() (Waiman Long) [1812073]
+- [kernel] cgroup: Fix css_task_iter_advance_css_set() cset skip condition (Waiman Long) [1812073]
+- [kernel] cgroup: css_task_iter_skip()'d iterators must be advanced before accessed (Waiman Long) [1812073]
+- [include] cgroup: Include dying leaders with live threads in PROCS iterations (Waiman Long) [1812073]
+- [kernel] cgroup: Implement css_task_iter_skip() (Waiman Long) [1812073]
+- [kernel] cgroup/pids: turn cgroup_subsys->free() into cgroup_subsys->release() to fix the accounting (Waiman Long) [1586281 1812073]
+- [platform] intel-speed-select: Firmware workarounds for Icelake (Prarit Bhargava) [1840289]
+- [tools] tools/power/x86/intel-speed-select: Fix invalid core mask (Prarit Bhargava) [1840289]
+- [tools] tools/power/x86/intel-speed-select: Increase CPU count (Prarit Bhargava) [1840289]
+- [tools] tools/power/x86/intel-speed-select: Fix json perf-profile output output (Prarit Bhargava) [1840289]
+- [tools] tools/power/x86/intel-speed-select: Update version (Prarit Bhargava) [1840289]
+- [tools] tools/power/x86/intel-speed-select: Enable clos for turbo-freq enable (Prarit Bhargava) [1840289]
+- [tools] tools/power/x86/intel-speed-select: Check support status before enable (Prarit Bhargava) [1840289]
+- [tools] tools/power/x86/intel-speed-select: Change debug to error (Prarit Bhargava) [1840289]
+- [platform] intel_speed_select: internal-only-debug-patch (Prarit Bhargava) [1840289]
+
+* Wed May 27 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-207.el8]
+- [nvdimm] libnvdimm/region: Fix build error (Diego Domingos) [1779218]
+- [nvdimm] libnvdimm/region: Introduce an 'align' attribute (Diego Domingos) [1779218]
+- [nvdimm] libnvdimm/region: Introduce NDD_LABELING (Diego Domingos) [1779218]
+- [nvdimm] libnvdimm/namespace: Enforce memremap_compat_align() (Diego Domingos) [1779218]
+- [nvdimm] libnvdimm/pfn: Prevent raw mode fallback if pfn-infoblock valid (Diego Domingos) [1779218]
+- [mm] mm/memremap_pages: Introduce memremap_compat_align() (Diego Domingos) [1779218]
+- [x86] x86/unwind/orc: Fix unwind_get_return_address_ptr() for inactive tasks (Josh Poimboeuf) [1755143]
+- [x86] x86/unwind/orc: Fix error handling in __unwind_start() (Josh Poimboeuf) [1755143]
+- [x86] x86/unwind/orc: Fix premature unwind stoppage due to IRET frames (Josh Poimboeuf) [1755143]
+- [x86] x86/unwind/orc: Fix error path for bad ORC entry type (Josh Poimboeuf) [1755143]
+- [x86] x86/unwind/orc: Prevent unwinding before ORC initialization (Josh Poimboeuf) [1755143]
+- [x86] x86/unwind/orc: Don't skip the first frame for inactive tasks (Josh Poimboeuf) [1755143]
+- [x86] x86/unwind: Prevent false warnings for non-current tasks (Josh Poimboeuf) [1755143]
+- [x86] x86/unwind/orc: Convert global variables to static (Josh Poimboeuf) [1755143]
+- [x86] x86/entry/64: Fix unwind hints in rewind_stack_do_exit() (Josh Poimboeuf) [1755143]
+- [x86] x86/entry/64: Fix unwind hints in __switch_to_asm() (Josh Poimboeuf) [1755143]
+- [x86] x86/entry/64: Fix unwind hints in kernel exit path (Josh Poimboeuf) [1755143]
+- [x86] x86/entry/64: Fix unwind hints in register clearing code (Josh Poimboeuf) [1755143]
+- [tools] objtool: Fix stack offset tracking for indirect CFAs (Josh Poimboeuf) [1755143]
+- [s390] s390: nvme reipl (Philipp Rudo) [1525179]
+- [s390] s390: nvme ipl (Philipp Rudo) [1525179]
+- [infiniband] RDMA/bnxt_re: make bnxt_re_ib_init static (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Wait for all the CQ events before freeing CQ data structures (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Remove unnecessary sched count (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Fix lifetimes in bnxt_re_task (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Use ib_device_try_get() (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Remove a redundant 'memset' (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Remove set but not used variables 'pg' and 'idx' (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Remove set but not used variable 'dev_attr' (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Remove set but not used variable 'pg_size' (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Use driver_unregister and unregistration API (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Refactor device add/remove functionalities (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Using vmalloc requires including vmalloc.h (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: use ibdev based message printing functions (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Refactor doorbell management functions (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Refactor notification queue management code (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Refactor command queue management code (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Refactor net ring allocation function (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Refactor hardware queue memory allocation (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Replace chip context structure with pointer (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Refactor queue pair creation code (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: remove ioremap_nocache and devm_ioremap_nocache (Selvin Xavier) [1790622]
+- [infiniband] RDMA/bnxt_re: Enable SRIOV VF support on Broadcom's 57500 adapter series (Selvin Xavier) [1790622]
+- [netdrv] net: be2net: reject unsupported coalescing params (Petr Oros) [1790633]
+- [netdrv] treewide: Use sizeof_field() macro (Petr Oros) [1790633]
+- [netdrv] net: emulex: benet: indent a Kconfig depends continuation line (Petr Oros) [1790633]
+- [infiniband] i40iw: fix null pointer dereference on a null wqe pointer (Stefan Assmann) [1839718]
+- [infiniband] RDMA/providers: Fix return value when QP type isn't supported (Stefan Assmann) [1839718]
+- [infiniband] RDMA: Replace zero-length array with flexible-array member (Stefan Assmann) [1839718]
+- [infiniband] i40iw: Do an RCU lookup in i40iw_add_ipv4_addr (Stefan Assmann) [1839718]
+- [infiniband] IB/core: Introduce ib_reg_user_mr (Stefan Assmann) [1839718]
+- [infiniband] RDMA/i40iw: fix a potential NULL pointer dereference (Stefan Assmann) [1839718]
+- [infiniband] i40iw: Remove setting of VMA private data and use rdma_user_mmap_io (Stefan Assmann) [1839718]
+- [infiniband] RDMA/i40iw: Fix potential use after free (Stefan Assmann) [1839718]
+- [powerpc] powerpc/pseries: Fix of_read_drc_info_cell() to point at next record (Diego Domingos) [1779198]
+- [powerpc] powerpc/pseries: Enable support for ibm, drc-info property (Diego Domingos) [1779198]
+- [pci] PCI: rpaphp: Correctly match ibm, my-drc-index to drc-name when using drc-info (Diego Domingos) [1779198]
+- [pci] PCI: rpaphp: Avoid a sometimes-uninitialized warning (Diego Domingos) [1779198]
+- [pci] PCI: rpaphp: Annotate and correctly byte swap DRC properties (Diego Domingos) [1779198]
+- [pci] PCI: rpaphp: Add drc-info support for hotplug slot registration (Diego Domingos) [1779198]
+- [pci] PCI: rpaphp: Don't rely on firmware feature to imply drc-info support (Diego Domingos) [1779198]
+- [pci] PCI: rpaphp: Fix up pointer to first drc-info entry (Diego Domingos) [1779198]
+- [powerpc] powerpc/pseries: Add cpu DLPAR support for drc-info property (Diego Domingos) [1779198]
+- [powerpc] powerpc/pseries: Fix drc-info mappings of logical cpus to drc-index (Diego Domingos) [1779198]
+- [powerpc] powerpc/pseries: Fix bad drc_index_start value parsing of drc-info entry (Diego Domingos) [1779198]
+- [kernel] sched/fair: Optimize enqueue_task_fair() (Phil Auld) [1780466]
+- [kernel] sched/fair: Fix enqueue_task_fair() warning some more (Phil Auld) [1780466]
+- [kernel] sched/fair: Fix enqueue_task_fair warning (Phil Auld) [1780466]
+- [kernel] sched/fair: Fix reordering of enqueue/dequeue_task_fair() (Phil Auld) [1780466]
+- [kernel] sched/fair: Reorder enqueue/dequeue_task_fair path (Phil Auld) [1780466]
+- [fs] ceph: demote quotarealm lookup warning to a debug message (Jeff Layton) [1827767]
+- [fs] ceph: fix double unlock in handle_cap_export() (Jeff Layton) [1827767]
+- [fs] ceph: fix special error code in ceph_try_get_caps() (Jeff Layton) [1827767]
+- [fs] ceph: fix endianness bug when handling MDS session feature bits (Jeff Layton) [1827767]
+- [fs] ceph: fix potential bad pointer deref in async dirops cb's (Jeff Layton) [1827767]
+- [block] rbd: don't mess with a page vector in rbd_notify_op_lock() (Jeff Layton) [1827767]
+- [block] rbd: don't test rbd_dev->opts in rbd_dev_image_release() (Jeff Layton) [1827767]
+- [block] rbd: call rbd_dev_unprobe() after unwatching and flushing notifies (Jeff Layton) [1827767]
+- [block] rbd: avoid a deadlock on header_rwsem when flushing notifies (Jeff Layton) [1827767]
+- [fs] ceph: fix snapshot directory timestamps (Jeff Layton) [1827767]
+- [fs] ceph: wait for async creating inode before requesting new max size (Jeff Layton) [1827767]
+- [fs] ceph: don't skip updating wanted caps when cap is stale (Jeff Layton) [1827767]
+- [fs] ceph: request new max size only when there is auth cap (Jeff Layton) [1827767]
+- [fs] ceph: cleanup return error of try_get_cap_refs() (Jeff Layton) [1827767]
+- [fs] ceph: return ceph_mdsc_do_request() errors from __get_parent() (Jeff Layton) [1827767]
+- [fs] ceph: check all mds' caps after page writeback (Jeff Layton) [1827767]
+- [fs] ceph: update i_requested_max_size only when sending cap msg to auth mds (Jeff Layton) [1827767]
+- [fs] ceph: simplify calling of ceph_get_fmode() (Jeff Layton) [1827767]
+- [fs] ceph: remove delay check logic from ceph_check_caps() (Jeff Layton) [1827767]
+- [fs] ceph: consider inode's last read/write when calculating wanted caps (Jeff Layton) [1827767]
+- [fs] ceph: always renew caps if mds_wanted is insufficient (Jeff Layton) [1827767]
+- [fs] ceph: update dentry lease for async create (Jeff Layton) [1827767]
+- [fs] ceph: attempt to do async create when possible (Jeff Layton) [1827767]
+- [fs] ceph: cache layout in parent dir on first sync create (Jeff Layton) [1827767]
+- [fs] ceph: add new MDS req field to hold delegated inode number (Jeff Layton) [1827767]
+- [fs] ceph: decode interval_sets for delegated inos (Jeff Layton) [1827767]
+- [fs] ceph: make ceph_fill_inode non-static (Jeff Layton) [1827767]
+- [fs] ceph: perform asynchronous unlink if we have sufficient caps (Jeff Layton) [1827767]
+- [fs] ceph: don't take refs to want mask unless we have all bits (Jeff Layton) [1827767]
+- [fs] ceph: cap tracking for async directory operations (Jeff Layton) [1827767]
+- [fs] ceph: make __take_cap_refs non-static (Jeff Layton) [1827767]
+- [fs] ceph: add infrastructure for waiting for async create to complete (Jeff Layton) [1827767]
+- [fs] ceph: track primary dentry link (Jeff Layton) [1827767]
+- [fs] ceph: add flag to designate that a request is asynchronous (Jeff Layton) [1827767]
+- [fs] ceph: more caps.c lockdep assertions (Jeff Layton) [1827767]
+- [fs] ceph: clean up kick_flushing_inode_caps() (Jeff Layton) [1827767]
+- [net] libceph: directly skip to the end of redirect reply (Jeff Layton) [1827767]
+- [net] libceph: simplify ceph_monc_handle_map() (Jeff Layton) [1827767]
+- [fs] ceph: return ETIMEDOUT errno to userland when request timed out (Jeff Layton) [1827767]
+- [fs] ceph: re-org copy_file_range and fix some error paths (Jeff Layton) [1827767]
+- [fs] ceph: move to a dedicated slabcache for mds requests (Jeff Layton) [1827767]
+- [fs] ceph: reorganize fields in ceph_mds_request (Jeff Layton) [1827767]
+- [fs] ceph: replace zero-length array with flexible-array member (Jeff Layton) [1827767]
+- [block] rbd: enable multiple blk-mq queues (Jeff Layton) [1827767]
+- [block] rbd: embed image request in blk-mq pdu (Jeff Layton) [1827767]
+- [block] rbd: acquire header_rwsem just once in rbd_queue_workfn() (Jeff Layton) [1827767]
+- [block] rbd: get rid of img_request_layered_clear() (Jeff Layton) [1827767]
+- [block] rbd: kill img_request kref (Jeff Layton) [1827767]
+- [fs] ceph: check if file lock exists before sending unlock request (Jeff Layton) [1827767]
+- [fs] ceph: move ceph_osdc_{read, write}pages to ceph.ko (Jeff Layton) [1827767]
+- [fs] ceph: don't ClearPageChecked in ceph_invalidatepage() (Jeff Layton) [1827767]
+- [block] rbd: remove barriers from img_request_layered_{set, clear, test}() (Jeff Layton) [1827767]
+- [fs] libceph: drop CEPH_DEFINE_SHOW_FUNC (Jeff Layton) [1827767]
+- [fs] ceph: check inode type for CEPH_CAP_FILE_{CACHE, RD, REXTEND, LAZYIO} (Jeff Layton) [1827767]
+- [fs] ceph: add refcounting for Fx caps (Jeff Layton) [1827767]
+- [fs] ceph: register MDS request with dir inode from the start (Jeff Layton) [1827767]
+- [fs] ceph: fix memory leak in ceph_cleanup_snapid_map() (Jeff Layton) [1827767]
+- [net] libceph: fix alloc_msg_with_page_vector() memory leaks (Jeff Layton) [1827767]
+- [include] ceph: check POOL_FLAG_FULL/NEARFULL in addition to OSDMAP_FULL/NEARFULL (Jeff Layton) [1827767]
+- [fs] ceph: canonicalize server path in place (Jeff Layton) [1827767]
+- [fs] ceph: do not execute direct write in parallel if O_APPEND is specified (Jeff Layton) [1827767]
+- [block] rbd: set the 'device' link in sysfs (Jeff Layton) [1827767]
+- [fs] ceph: move net/ceph/ceph_fs.c to fs/ceph/util.c (Jeff Layton) [1827767]
+- [fs] ceph: print name of xattr in __ceph_{get, set}xattr() douts (Jeff Layton) [1827767]
+- [fs] ceph: print r_direct_hash in hex in __choose_mds() dout (Jeff Layton) [1827767]
+- [fs] ceph: use copy-from2 op in copy_file_range (Jeff Layton) [1827767]
+- [fs] ceph: close holes in structs ceph_mds_session and ceph_mds_request (Jeff Layton) [1827767]
+- [block] rbd: work around -Wuninitialized warning (Jeff Layton) [1827767]
+- [fs] ceph: allocate the correct amount of extra bytes for the session features (Jeff Layton) [1827767]
+- [fs] ceph: rename get_session and switch to use ceph_get_mds_session (Jeff Layton) [1827767]
+- [fs] ceph: remove the extra slashes in the server path (Jeff Layton) [1827767]
+- [fs] ceph: add possible_max_rank and make the code more readable (Jeff Layton) [1827767]
+- [fs] ceph: print dentry offset in hex and fix xattr_version type (Jeff Layton) [1827767]
+- [fs] ceph: only touch the caps which have the subset mask requested (Jeff Layton) [1827767]
+- [fs] ceph: don't clear I_NEW until inode metadata is fully populated (Jeff Layton) [1827767]
+- [fs] ceph: retry the same mds later after the new session is opened (Jeff Layton) [1827767]
+- [fs] ceph: check availability of mds cluster on mount after wait timeout (Jeff Layton) [1827767]
+- [fs] ceph: keep the session state until it is released (Jeff Layton) [1827767]
+- [fs] ceph: add __send_request helper (Jeff Layton) [1827767]
+- [fs] ceph: ensure we have a new cap before continuing in fill_inode (Jeff Layton) [1827767]
+- [fs] ceph: drop unused ttl_from parameter from fill_inode (Jeff Layton) [1827767]
+- [fs] ceph: fix possible long time wait during umount (Jeff Layton) [1827767]
+- [fs] ceph: only choose one MDS who is in up:active state without laggy (Jeff Layton) [1827767]
+- [fs] ceph: fix mdsmap cluster available check based on laggy number (Jeff Layton) [1827767]
+- [fs] ceph: remove unnecessary assignment in ceph_pre_init_acls() (Jeff Layton) [1827767]
+- [fs] ceph: delete redundant douts in con_get/put() (Jeff Layton) [1827767]
+- [fs] ceph: hold extra reference to r_parent over life of request (Jeff Layton) [1827767]
+- [fs] ceph: add more debug info when decoding mdsmap (Jeff Layton) [1827767]
+- [fs] ceph: switch to global cap helper (Jeff Layton) [1827767]
+- [fs] ceph: trigger the reclaim work once there has enough pending caps (Jeff Layton) [1827767]
+- [fs] ceph: show tasks waiting on caps in debugfs caps file (Jeff Layton) [1827767]
+- [fs] fs: ceph: Delete timespec64_trunc() usage (Jeff Layton) [1827767]
+- [block] rbd: ask for a weaker incompat mask for read-only mappings (Jeff Layton) [1827767]
+- [block] rbd: don't query snapshot features (Jeff Layton) [1827767]
+- [block] rbd: remove snapshot existence validation code (Jeff Layton) [1827767]
+- [block] rbd: don't establish watch for read-only mappings (Jeff Layton) [1827767]
+- [block] rbd: don't acquire exclusive lock for read-only mappings (Jeff Layton) [1827767]
+- [block] rbd: disallow read-write partitions on images mapped read-only (Jeff Layton) [1827767]
+- [block] rbd: treat images mapped read-only seriously (Jeff Layton) [1827767]
+- [block] rbd: introduce RBD_DEV_FLAG_READONLY (Jeff Layton) [1827767]
+- [block] rbd: introduce rbd_is_snap() (Jeff Layton) [1827767]
+- [fs] ceph: don't leave ino field in ceph_mds_request_head uninitialized (Jeff Layton) [1827767]
+- [fs] ceph: tone down loglevel on ceph_mdsc_build_path warning (Jeff Layton) [1827767]
+- [fs] ceph: fix geting random mds from mdsmap (Jeff Layton) [1827767]
+- [block] rbd: fix spelling mistake "requeueing" -> "requeuing" (Jeff Layton) [1827767]
+- [fs] ceph: make several helper accessors take const pointers (Jeff Layton) [1827767]
+- [net] libceph: drop unnecessary check from dispatch() in mon_client.c (Jeff Layton) [1827767]
+- [fs] ceph: don't allow copy_file_range when stripe_count != 1 (Jeff Layton) [1827767]
+- [fs] ceph: allow object copies across different filesystems in the same cluster (Jeff Layton) [1827767]
+- [fs] ceph: pass filp to ceph_get_caps() (Jeff Layton) [1827767]
+- [fs] ceph: allow copy_file_range when src and dst inode are same (Jeff Layton) [1827767]
+- [fs] ceph: increment change_attribute on local changes (Jeff Layton) [1827767]
+- [fs] ceph: make 'nocopyfrom' a default mount option (Jeff Layton) [1827767]
+- [fs] vfs: allow copy_file_range to copy across devices (Jeff Layton) [1827767]
+- [fs] vfs: no fallback for ->copy_file_range (Jeff Layton) [1827767]
+- [fs] ceph: add destination file data sync before doing any remote copy (Jeff Layton) [1827767]
+- [fs] ceph: new mount option to disable usage of copy-from op (Jeff Layton) [1827767]
+- [fs] ceph: support copy_file_range file operation (Jeff Layton) [1827767]
+- [include] libceph: support the RADOS copy-from operation (Jeff Layton) [1827767]
+- [fs] cachefiles: Fix race between read_waiter and read_copier involving op->to_do (Dave Wysochanski) [1832644]
+- [char] security: keys: trusted: fix lost handle flush (Jerry Snitselaar) [1815609]
+- [security] KEYS: trusted: Remove set but not used variable 'keyhndl' (Jerry Snitselaar) [1815609]
+- [char] KEYS: trusted: Move TPM2 trusted keys code (Jerry Snitselaar) [1815609]
+- [security] KEYS: trusted: Create trusted keys subsystem (Jerry Snitselaar) [1815609]
+- [security] KEYS: Use common tpm_buf for trusted and asymmetric keys (Jerry Snitselaar) [1815609]
+- [char] tpm: Move tpm_buf code to include/linux/ (Jerry Snitselaar) [1815609]
+- [char] tpm/tpm_tis: Free IRQ if probing fails (Jerry Snitselaar) [1815609 1788758]
+- [char] tpm: Revert tpm_tis_spi_mod.ko to tpm_tis_spi.ko (Jerry Snitselaar) [1815609 1788758]
+- [char] tpm: Add tpm_version_major sysfs file (Jerry Snitselaar) [1815609]
+- [char] tpm: Handle negative priv->response_len in tpm_common_read() (Jerry Snitselaar) [1815609]
+- [char] tpm: fix invalid locking in NONBLOCKING mode (Jerry Snitselaar) [1815609]
+- [char] tpm_crb: fix fTPM on AMD Zen+ CPUs (Jerry Snitselaar) [1815609]
+- [char] tpm: use GFP_KERNEL instead of GFP_HIGHMEM for tpm_buf (Jerry Snitselaar) [1815609]
+- [char] tpm: add check after commands attribs tab allocation (Jerry Snitselaar) [1815609]
+- [char] tpm: tpm_tis_spi: Drop THIS_MODULE usage from driver struct (Jerry Snitselaar) [1815609 1788758]
+- [char] tpm: tpm_tis_spi: Cleanup includes (Jerry Snitselaar) [1815609 1788758]
+- [char] tpm: tpm_tis_spi: Support cr50 devices (Jerry Snitselaar) [1815609 1788758]
+- [char] tpm: tpm_tis_spi: Introduce a flow control callback (Jerry Snitselaar) [1815609 1788758]
+- [char] tpm: Add a flag to indicate TPM power is managed by firmware (Jerry Snitselaar) [1815609]
+- [char] tpm_tis: override durations for STM tpm with firmware 1.2.8.28 (Jerry Snitselaar) [1815609 1788758]
+- [char] tpm: provide a way to override the chip returned durations (Jerry Snitselaar) [1815609]
+- [char] tpm: Remove duplicate code from caps_show() in tpm-sysfs.c (Jerry Snitselaar) [1815609 1788758]
+- [char] tpm: tpm2_bios_measurements_next should increase position index (Jerry Snitselaar) [1815609 1795739]
+- [char] tpm: tpm1_bios_measurements_next should increase position index (Jerry Snitselaar) [1815609 1795739]
+- [char] tpm: Don't make log failures fatal (Jerry Snitselaar) [1815609 1795739]
+- [char] tpm: Initialize crypto_id of allocated_banks to HASH_ALGO__LAST (Jerry Snitselaar) [1815609 1795739]
+- [include] efi/tpm: Don't access event->count when it isn't mapped (Jerry Snitselaar) [1815609 1795739]
+- [firmware] efi/tpm: Return -EINVAL when determining tpm final events log size fails (Jerry Snitselaar) [1815609 1795739]
+- [firmware] efi/tpm: Fix sanity check of unsigned tbl_size being less than zero (Jerry Snitselaar) [1815609 1795739]
+- [firmware] efi/tpm: Only set 'efi_tpm_final_log_size' after successful event log parsing (Jerry Snitselaar) [1815609 1795739]
+- [firmware] efi/tpm: Don't traverse an event log with no events (Jerry Snitselaar) [1815609 1795739]
+- [char] tpm: Don't duplicate events from the final event log in the TCG2 log (Jerry Snitselaar) [1815609 1795739]
+- [firmware] Abstract out support for locating an EFI config table (Jerry Snitselaar) [1815609 1795739]
+- [firmware] efi: Attempt to get the TCG2 event log in the boot stub (Jerry Snitselaar) [1815609 1795739]
+- [char] tpm: Append the final event log to the TPM event log (Jerry Snitselaar) [1815609 1795739]
+- [firmware] tpm: Reserve the TPM final events table (Jerry Snitselaar) [1815609 1795739]
+- [char] tpm: Abstract crypto agile event size calculations (Jerry Snitselaar) [1815609 1795739]
+- [netdrv] bnx2x: Fix accounting of vlan resources among the PFs (Manish Chopra) [1791026]
+- [netdrv] bnx2x: Use appropriate define for vlan credit (Manish Chopra) [1791026]
+- [netdrv] bnx2x: Fix logic to get total no. of PFs per engine (Manish Chopra) [1791026]
+- [netdrv] bnx2x: Do not handle requests from VFs after parity (Manish Chopra) [1791026]
+- [netdrv] qed: remove redundant assignment to variable 'rc' (Manish Chopra) [1791024]
+- [netdrv] qed: Fix use after free in qed_chain_free (Manish Chopra) [1791024]
+- [netdrv] qed: Fix race condition between scheduling and destroying the slowpath workqueue (Manish Chopra) [1791024]
+- [netdrv] qede: remove some unused code in function qede_selftest_receive_traffic (Manish Chopra) [1791024]
+- [netdrv] qede: Fix race between rdma destroy workqueue and link change event (Manish Chopra) [1791024]
+- [netdrv] qed: Fix timestamping issue for L2 unicast ptp packets (Manish Chopra) [1791024]
+- [netdrv] qed: Remove set but not used variable 'p_link' (Manish Chopra) [1791024]
+- [netdrv] qed: Fix a error code in qed_hw_init() (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 debug features (Manish Chopra) [1791024]
+- [netdrv] qed: rt init valid initialization changed (Manish Chopra) [1791024]
+- [netdrv] qed: Debug feature: ilt and mdump (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 Add fw overlay feature (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 HSI changes (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 iscsi/fcoe changes (Manish Chopra) [1791024]
+- [netdrv] qed: Add abstraction for different hsi values per chip (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 Additional ll2 type (Manish Chopra) [1791024]
+- [netdrv] qed: Use dmae to write to widebus registers in fw_funcs (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 Parser offsets modified (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 Queue Manager changes (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 Expose new registers and change windows (Manish Chopra) [1791024]
+- [netdrv] qed: FW 8.42.2.0 Internal ram offsets modifications (Manish Chopra) [1791024]
+- [netdrv] qede: Disable hardware gro when xdp prog is installed (Manish Chopra) [1791024]
+- [netdrv] qed: remove redundant assignments to rc (Manish Chopra) [1791024]
+- [netdrv] qed: Optimize execution time for nvm attributes configuration (Manish Chopra) [1791024]
+- [netdrv] qed: fix spelling mistake "queuess" -> "queues" (Manish Chopra) [1791024]
+- [fs] fs/binfmt_elf.c: allocate initialized memory in fill_thread_core_info() (Bhupesh Sharma) [1832060] {CVE-2020-10732}
+- [tty] vt: selection, push sel_lock up (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [tty] vt: selection, push console lock down (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [staging] staging: speakup: refactor to use existing code in vt (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [tty] vt: selection: allow functions to be called from inside kernel (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [tty] vt: don't reinvent min() (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [tty] vt: selection, close sel_buffer race (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [tty] vt: fix broken display when running aptitude (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [tty] vt: selection: take screen contents from uniscr if available (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [tty] vt: preserve unicode values corresponding to screen characters (Chris von Recklinghausen) [1831037] {CVE-2020-8648}
+- [input] Input: add safety guards to input_set_keycode() (Chris von Recklinghausen) [1828223] {CVE-2019-20636}
+
+* Tue May 26 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-206.el8]
+- [scsi] scsi: bnx2i: fix potential use after free (Nilesh Javali) [1792114]
+- [tools] perf python: Fix clang detection to strip out options passed in $CC (Michael Petlan) [1818841]
+- [tools] libperf: Add counting example (Michael Petlan) [1818841]
+- [tools] perf report/top TUI: Fix title line formatting (Michael Petlan) [1818841]
+- [tools] perf probe: Do not depend on dwfl_module_addrsym() (Michael Petlan) [1818841]
+- [tools] perf probe: Fix to delete multiple probe event (Michael Petlan) [1818841]
+- [tools] perf parse-events: Fix reading of invalid memory in event parsing (Michael Petlan) [1818841]
+- [tools] perf python: Fix clang detection when using CC=clang-version (Michael Petlan) [1818841]
+- [tools] perf map: Fix off by one in strncpy() size argument (Michael Petlan) [1818841]
+- [tools] tools: Let O= makes handle a relative path with -C option (Michael Petlan) [1818841]
+- [tools] tools: Fix off-by 1 relative directory includes (Michael Petlan) [1818841]
+- [tools] perf jevents: Fix leak of mapfile memory (Michael Petlan) [1818841]
+- [tools] perf bench: Clear struct sigaction before sigaction() syscall (Michael Petlan) [1818841]
+- [tools] perf bench futex-wake: Restore thread count default to online CPU count (Michael Petlan) [1818841]
+- [tools] perf top: Fix stdio interface input handling with glibc 2.28+ (Michael Petlan) [1818841]
+- [tools] perf diff: Fix undefined string comparision spotted by clang's -Wstring-compare (Michael Petlan) [1818841]
+- [tools] perf symbols: Don't try to find a vmlinux file when looking for kernel modules (Michael Petlan) [1818841]
+- [tools] perf bench: Share some global variables to fix build with gcc 10 (Michael Petlan) [1818841]
+- [tools] perf parse-events: Use asprintf() instead of strncpy() to read tracepoint files (Michael Petlan) [1818841]
+- [tools] perf env: Do not return pointers to local variables (Michael Petlan) [1818841]
+- [tools] perf tests bp_account: Make global variable static (Michael Petlan) [1818841]
+- [tools] perf annotate: Fix segfault with source toggle (Michael Petlan) [1818841]
+- [tools] perf annotate: Align struct annotate_args (Michael Petlan) [1818841]
+- [tools] perf annotate: Simplify disasm_line allocation and freeing code (Michael Petlan) [1818841]
+- [tools] perf annotate: Remove privsize from symbol__annotate() args (Michael Petlan) [1818841]
+- [tools] perf probe: Check return value of strlist__add() for -ENOMEM (Michael Petlan) [1818841]
+- [tools] perf config: Document missing config options (Michael Petlan) [1818841]
+- [tools] perf annotate: Fix perf config option description (Michael Petlan) [1818841]
+- [tools] perf annotate: Prefer cmdline option over default config (Michael Petlan) [1818841]
+- [tools] perf annotate: Make perf config effective (Michael Petlan) [1818841]
+- [tools] perf config: Introduce perf_config_u8() (Michael Petlan) [1818841]
+- [tools] perf annotate: Fix --show-nr-samples for tui/stdio2 (Michael Petlan) [1818841]
+- [tools] perf annotate: Fix --show-total-period for tui/stdio2 (Michael Petlan) [1818841]
+- [tools] perf annotate/tui: Re-render title bar after switching back from script browser (Michael Petlan) [1818841]
+- [tools] perf arch powerpc: Sync powerpc syscall.tbl with the kernel sources (Michael Petlan) [1818841]
+- [tools] perf auxtrace: Add auxtrace_record__read_finish() (Michael Petlan) [1818841]
+- [tools] perf arm-spe: Fix endless record after being terminated (Michael Petlan) [1818841]
+- [tools] perf cs-etm: Fix endless record after being terminated (Michael Petlan) [1818841]
+- [tools] perf intel-bts: Fix endless record after being terminated (Michael Petlan) [1818841]
+- [tools] perf intel-pt: Fix endless record after being terminated (Michael Petlan) [1818841]
+- [tools] perf test: Fix test trace+probe_vfs_getname.sh on s390 (Michael Petlan) [1818841]
+- [tools] perf bpf: Remove bpf/ subdir from bpf.h headers used to build bpf events (Michael Petlan) [1818841]
+- [tools] perf llvm: Fix script used to obtain kernel make directives to work with new kbuild (Michael Petlan) [1818841]
+- [tools] perf tools: Add arm64 version of get_cpuid() (Michael Petlan) [1818841]
+- [tools] perf trace: Resolve prctl's 'option' arg strings to numbers (Michael Petlan) [1818841]
+- [tools] perf beauty prctl: Export the 'options' strarray (Michael Petlan) [1818841]
+- [tools] perf maps: Move kmap::kmaps setup to maps__insert() (Michael Petlan) [1818841]
+- [tools] perf maps: Fix map__clone() for struct kmap (Michael Petlan) [1818841]
+- [tools] perf maps: Mark ksymbol DSOs with kernel type (Michael Petlan) [1818841]
+- [tools] perf maps: Mark module DSOs with kernel type (Michael Petlan) [1818841]
+- [tools] perf symbols: Convert symbol__is_idle() to use strlist (Michael Petlan) [1818841]
+- [tools] perf symbols: Update the list of kernel idle symbols (Michael Petlan) [1818841]
+- [tools] perf stat: Don't report a null stalled cycles per insn metric (Michael Petlan) [1818841]
+- [tools] perf probe: Add ustring support for perf probe command (Michael Petlan) [1818841]
+- [tools] perf: Make perf able to build with latest libbfd (Michael Petlan) [1818841]
+- [tools] perf test: Fix test case Merge cpu map (Michael Petlan) [1818841]
+- [tools] perf parse: Copy string to perf_evsel_config_term (Michael Petlan) [1818841]
+- [tools] perf parse: Refactor 'struct perf_evsel_config_term' (Michael Petlan) [1818841]
+- [tools] perf: Use consistent include paths for libbpf (Michael Petlan) [1818841]
+- [tools] perf beauty sockaddr: Fix augmented syscall format warning (Michael Petlan) [1818841]
+- [tools] perf/ui/gtk: Fix gtk2 build (Michael Petlan) [1818841]
+- [tools] perf ui gtk: Add missing zalloc object (Michael Petlan) [1818841]
+- [tools] perf tools: Use define api.pure full instead of pure-parser (Michael Petlan) [1818841]
+- [tools] perf tools: Support --prefix/--prefix-strip (Michael Petlan) [1818841]
+- [tools] perf report: Clarify in help that --children is default (Michael Petlan) [1818841]
+- [tools] tools build: Fix test-clang.cpp with Clang 8+ (Michael Petlan) [1818841]
+- [tools] perf clang: Fix build with Clang 9 (Michael Petlan) [1818841]
+- [tools] tools lib: Fix builds when glibc contains strlcpy() (Michael Petlan) [1818841]
+- [tools] perf report/top: Make 'e' visible in the help and make it toggle showing callchains (Michael Petlan) [1818841]
+- [tools] perf report/top: Do not offer annotation for symbols without samples (Michael Petlan) [1818841]
+- [tools] perf report/top: Allow pressing hotkeys in the options popup menu (Michael Petlan) [1818841]
+- [tools] tools ui popup: Allow returning hotkeys (Michael Petlan) [1818841]
+- [tools] perf hists browser: Allow passing an initial hotkey (Michael Petlan) [1818841]
+- [tools] perf report/top: Add 'k' hotkey to zoom directly into the kernel map (Michael Petlan) [1818841]
+- [tools] perf hists browser: Generalize the do_zoom_dso() function (Michael Petlan) [1818841]
+- [tools] perf report/top: Improve toggle callchain menu option (Michael Petlan) [1818841]
+- [tools] perf report/top: Add menu entry for toggling callchain expansion (Michael Petlan) [1818841]
+- [tools] perf report/top: Make ENTER consistently bring up menu (Michael Petlan) [1818841]
+- [tools] perf hists browser: Restore ESC as "Zoom out" of DSO/thread/etc (Michael Petlan) [1818841]
+- [tools] tools lib api fs: Fix gcc9 stringop-truncation compilation error (Michael Petlan) [1818841]
+- [tools] libperf: Add man pages (Michael Petlan) [1818841]
+- [tools] libperf: Move to tools/lib/perf (Michael Petlan) [1818841]
+- [tools] perf tests bp_signal: Show expected versus obtained values (Michael Petlan) [1818841]
+- [tools] perf sched timehist: Add support for filtering on CPU (Michael Petlan) [1818841]
+- [tools] perf record: Adapt affinity to machines with #CPUs > 1K (Michael Petlan) [1818841]
+- [tools] perf mmap: Declare type for cpu mask of arbitrary length (Michael Petlan) [1818841]
+- [tools] tools bitmap: Implement bitmap_equal() operation at bitmap API (Michael Petlan) [1818841]
+- [x86] perf/amd/uncore: Replace manual sampling check with CAP_NO_INTERRUPT flag (Michael Petlan) [1818841]
+- [x86] perf/x86/intel: Fix inaccurate period in context switch for auto-reload (Michael Petlan) [1818841]
+- [x86] perf/x86/amd: Add missing L2 misses event spec to AMD Family 17h's event map (Michael Petlan) [1818841]
+- [x86] perf/x86/msr: Add Tremont support (Michael Petlan) [1818841]
+- [x86] perf/x86/cstate: Add Tremont support (Michael Petlan) [1818841]
+- [x86] perf/x86/intel: Add Elkhart Lake support (Michael Petlan) [1818841]
+- [include] kernel/events: Add a missing prototype for arch_perf_update_userpage() (Michael Petlan) [1818841]
+- [x86] perf/x86/amd: Add support for Large Increment per Cycle Events (Michael Petlan) [1818841]
+- [x86] perf/x86/amd: Constrain Large Increment per Cycle events (Michael Petlan) [1818841]
+- [x86] perf/x86/intel/rapl: Add Comet Lake support (Michael Petlan) [1818841]
+- [x86] perf/x86/intel: Explicitly include asm/io.h to use virt_to_phys() (Michael Petlan) [1818841]
+- [x86] x86/cpu: Add Elkhart Lake to Intel family (Michael Petlan) [1818841]
+- [x86] x86/timer: Don't skip PIT setup when APIC is disabled or in legacy mode (David Arcari) [1837490]
+- [x86] x86/intel: Disable HPET on Intel Ice Lake platforms (David Arcari) [1837490]
+- [x86] x86/timer: Force PIT initialization when !X86_FEATURE_ARAT (David Arcari) [1837490]
+- [x86] x86/timer: Skip PIT initialization on modern chipsets (David Arcari) [1837490]
+- [x86] x86/apic: Rename 'lapic_timer_frequency' to 'lapic_timer_period' (David Arcari) [1837490]
+- [x86] x86/apic: Unify duplicated local apic timer clockevent initialization (David Arcari) [1837490]
+- [vhost] vsock: kick send_pkt worker once device is started (Stefano Garzarella) [1835651]
+- [tools] redhat: update kvm/{arm, arm64} headers in tools (Gavin Shan) [1833572]
+- [tools] kvm: selftests: aarch64: Use stream when given (Gavin Shan) [1833572]
+- [virt] kvm: arm64: Fix 32bit PC wrap-around (Gavin Shan) [1833572]
+- [virt] kvm: arm64: vgic-v4: Initialize GICv4.1 even in the absence of a virtual ITS (Gavin Shan) [1833572]
+- [arm64] kvm: arm64: Save/restore sp_el0 as part of __guest_enter (Gavin Shan) [1833572]
+- [virt] kvm: arm64: vgic-its: Fix memory leak on the error path of vgic_add_lpi() (Gavin Shan) [1833572]
+- [virt] kvm: arm64: vgic-v3: Retire all pending LPIs on vcpu destroy (Gavin Shan) [1833572]
+- [virt] kvm: arm: vgic-v2: Only use the virtual state when userspace accesses pending bits (Gavin Shan) [1833572]
+- [virt] kvm: arm: vgic: Only use the virtual state when userspace accesses enable bits (Gavin Shan) [1833572]
+- [virt] kvm: arm: vgic: Synchronize the whole guest on GIC{D, R}_I{S, C}ACTIVER read (Gavin Shan) [1833572]
+- [virt] kvm: arm64: psci: Forbid 64bit functions for 32bit guests (Gavin Shan) [1833572]
+- [virt] kvm: arm64: psci: Narrow input registers when using 32bit functions (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Update effective affinity of virtual SGIs (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Add support for VPENDBASER's Dirty+Valid signaling (Gavin Shan) [1833572]
+- [virt] kvm: arm: vgic: Fix limit condition when writing to GICD_I[CS]ACTIVER (Gavin Shan) [1833572]
+- [virt] kvm: arm64: gicv4.1: Expose HW-based SGIs in debugfs (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Eagerly vmap vPEs (Gavin Shan) [1833572]
+- [arm64] kvm: arm64: gicv4.1: Allow non-trapping WFI when using HW SGIs (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Add VSGI property setup (Gavin Shan) [1833572]
+- [virt] kvm: arm64: gicv4.1: Reload VLPI configuration on distributor enable/disable (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Add VSGI allocation/teardown (Gavin Shan) [1833572]
+- [virt] kvm: arm64: gicv4.1: Plumb SGI implementation selection in the distributor (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Move doorbell management to the GICv4 abstraction layer (Gavin Shan) [1833572]
+- [virt] kvm: arm64: gicv4.1: Allow SGIs to switch between HW and SW interrupts (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Plumb set_vcpu_affinity SGI callbacks (Gavin Shan) [1833572]
+- [virt] kvm: arm64: gicv4.1: Add direct injection capability to SGI registers (Gavin Shan) [1833572]
+- [virt] kvm: arm64: gicv4.1: Let doorbells be auto-enabled (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Plumb get/set_irqchip_state SGI callbacks (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Plumb mask/unmask SGI callbacks (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Add initial SGI configuration (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Plumb skeletal VSGI irqchip (Gavin Shan) [1833572]
+- [irqchip] gic-v3: Move irq_domain_update_bus_token to after checking for NULL domain (Gavin Shan) [1833572]
+- [kernel] irqchip/gic-v4: Use Inner-Shareable attributes for virtual pending tables (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Map the ITS SGIR register page (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Advertise support v4.1 to KVM (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Ensure mutual exclusion betwen invalidations on the same RD (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Wait for completion of redistributor's INVALL operation (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Ensure mutual exclusion between vPE affinity change and RD access (Gavin Shan) [1833572]
+- [irqchip] gic-v4.1: Skip absent CPUs while iterating over redistributors (Gavin Shan) [1833572]
+- [irqchip] gic-v3: Use SGIs without active state if offered (Gavin Shan) [1833572]
+- [irqchip] gic-v4: Provide irq_retrigger to avoid circular locking dependency (Gavin Shan) [1833572]
+- [irqchip] gic-v3-its: Probe ITS page size for all GITS_BASERn registers (Gavin Shan) [1833572]
+- [irqchip] gic-v3-its: Fix access width for gicr_syncr (Gavin Shan) [1833572]
+- [documentation] kvm: arm/arm64: Always capitalize ITS (Gavin Shan) [1833572]
+- [nvme] nvme-pci: align io queue count with allocted nvme_queue in nvme_probe (Gopal Tiwari) [1837824]
+- [rtc] rtc: cmos: Stop using shared IRQ (Pingfan Liu) [1829667]
+
+* Mon May 25 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-205.el8]
+- [netdrv] enic: prevent waking up stopped tx queues over watchdog reset (Govindarajulu Varadarajan) [1797807]
+- [kernel] crash_core: Increase crashkernel=auto size for x86_64 & S390 (Kairui Song) [1746644]
+- [netdrv] net: iavf: reject unsupported coalescing params (Stefan Assmann) [1781341]
+- [netdrv] iavf: Enable support for up to 16 queues (Stefan Assmann) [1781341]
+- [netdrv] iavf: use tc_cls_can_offload_and_chain0() instead of chain check (Stefan Assmann) [1781341]
+- [netdrv] treewide: Use sizeof_field() macro (Stefan Assmann) [1781341]
+- [netdrv] i40e: Remove unneeded conversion to bool (Stefan Assmann) [1781334]
+- [netdrv] net: i40e: reject unsupported coalescing params (Stefan Assmann) [1781334]
+- [netdrv] intel: Replace zero-length array with flexible-array member (Stefan Assmann) [1781334]
+- [netdrv] i40e: Fix the conditional for i40e_vc_validate_vqs_bitmaps (Stefan Assmann) [1781334]
+- [netdrv] i40e: fix spelling mistake "to" -> "too" (Stefan Assmann) [1781334]
+- [netdrv] i40e: Set PHY Access flag on X722 (Stefan Assmann) [1781334]
+- [netdrv] i40e: Fix virtchnl_queue_select bitmap validation (Stefan Assmann) [1781334]
+- [netdrv] i40e: Removing hung_queue variable to use txqueue function parameter (Stefan Assmann) [1781334]
+- [netdrv] treewide: Use sizeof_field() macro (Stefan Assmann) [1781334]
+- [netdrv] i40e: need_wakeup flag might not be set for Tx (Stefan Assmann) [1781334]
+- [netdrv] i40e: Fix receive buffer starvation for AF_XDP (Stefan Assmann) [1781334]
+- [netdrv] i40e: fix potential RX buffer starvation for AF_XDP (Stefan Assmann) [1781334]
+- [block] null_blk: Fix changing the number of hardware queues (Ming Lei) [1835602]
+- [block] block: reset mapping if failed to update hardware queue count (Ming Lei) [1835602]
+- [block] block: alloc map and request for new hardware queue (Ming Lei) [1835602]
+- [block] block: save previous hardware queue count before udpate (Ming Lei) [1835602]
+- [block] block: free both rq_map and request (Ming Lei) [1835602]
+- [block] blk-mq: Fix a recently introduced regression in blk_mq_realloc_hw_ctxs() (Ming Lei) [1835602]
+- [documentation] Documentation: admin-guide: PM: Add intel_idle document (Steve Best) [1485545]
+- [idle] intel_idle: Use ACPI _CST on server systems (Steve Best) [1485545]
+- [idle] intel_idle: Add module parameter to prevent ACPI _CST from being used (Steve Best) [1485545]
+- [idle] intel_idle: Allow ACPI _CST to be used for selected known processors (Steve Best) [1485545]
+- [idle] intel_idle: Use ACPI _CST for processor models without C-state tables (Steve Best) [1485545]
+- [idle] intel_idle: Refactor intel_idle_cpuidle_driver_init() (Steve Best) [1485545]
+- [infiniband] RDMA/uverbs: Move IB_EVENT_DEVICE_FATAL to destroy_uobj (Kamal Heib) [1786608]
+- [infiniband] RDMA/uverbs: Do not discard the IB_EVENT_DEVICE_FATAL event (Kamal Heib) [1786608]
+- [infiniband] RDMA/core: Fix double put of resource (Kamal Heib) [1786608]
+- [infiniband] IB/core: Fix potential NULL pointer dereference in pkey cache (Kamal Heib) [1786608]
+- [infiniband] IB/hfi1: Fix another case where pq is left on waitlist (Kamal Heib) [1786608]
+- [infiniband] RDMA/rxe: Always return ERR_PTR from rxe_create_mmap_info() (Kamal Heib) [1786608]
+- [infiniband] RDMA/core: Fix race between destroy and release FD object (Kamal Heib) [1786608]
+- [infiniband] IB/rdmavt: Always return ERR_PTR from rvt_create_mmap_info() (Kamal Heib) [1786608]
+- [infiniband] RDMA/core: Fix overwriting of uobj in case of error (Kamal Heib) [1786608]
+- [infiniband] RDMA/core: Prevent mixed use of FDs between shared ufiles (Kamal Heib) [1786608]
+- [infiniband] RDMA/uverbs: Fix a race with disassociate and exit_mmap() (Kamal Heib) [1786608]
+- [infiniband] RDMA/siw: Fix potential siw_mem refcnt leak in siw_fastreg_mr() (Kamal Heib) [1786608]
+- [infiniband] RDMA/cm: Fix an error check in cm_alloc_id_priv() (Kamal Heib) [1786608]
+- [net] svcrdma: Fix trace point use-after-free race (Kamal Heib) [1786608]
+- [infiniband] IB/hfi1: Call kobject_put() when kobject_init_and_add() fails (Kamal Heib) [1786608]
+- [infiniband] RDMA/rxe: Set sys_image_guid to be aligned with HW IB devices (Kamal Heib) [1786608]
+- [infiniband] IB/hfi1: Use scnprintf() for avoiding potential buffer overflow (Kamal Heib) [1786608]
+- [infiniband] IB/hfi1: Remove kobj from hfi1_devdata (Kamal Heib) [1786608]
+- [infiniband] IB/rdmavt: Delete unused routine (Kamal Heib) [1786608]
+- [infiniband] RDMA/rxe: Fix configuration of atomic queue pair attributes (Kamal Heib) [1786608]
+- [infiniband] IB/hfi1: Fix memory leaks in sysfs registration and unregistration (Kamal Heib) [1819051 1786608]
+- [net] svcrdma: Fix leak of transport addresses (Kamal Heib) [1786608]
+- [infiniband] RDMA/cm: Update num_paths in cma_resolve_iboe_route error flow (Kamal Heib) [1786608]
+- [infiniband] RDMA/siw: Suppress uninitialized var warning (Kamal Heib) [1786608]
+- [infiniband] RDMA/cm: Add missing locking around id.state in cm_dup_req_handler (Kamal Heib) [1786608]
+- [infiniband] RDMA/cm: Read id.state under lock when doing pr_debug() (Kamal Heib) [1786608]
+- [infiniband] RDMA/cm: Remove a race freeing timewait_info (Kamal Heib) [1786608]
+- [infiniband] RDMA/cm: Fix checking for allowed duplicate listens (Kamal Heib) [1786608]
+- [infiniband] RDMA/cm: Fix ordering of xa_alloc_cyclic() in ib_create_cm_id() (Kamal Heib) [1786608]
+- [net] svcrdma: Fix double svc_rdma_send_ctxt_put() in an error path (Kamal Heib) [1786608]
+- [infiniband] RDMA/core: Remove the duplicate header file (Kamal Heib) [1786608]
+- [infiniband] RDMA/siw: Fix passive connection establishment (Kamal Heib) [1786608]
+- [infiniband] RDMA/ucma: Put a lock around every call to the rdma_cm layer (Kamal Heib) [1786608]
+- [infiniband] RDMA/siw: Fix setting active_{speed, width} attributes (Kamal Heib) [1798583 1786608]
+- [scsi] qla2xxx: Update driver version to 10.01.00.25.08.3-k (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Delete all sessions before unregister local nvme port (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix hang when issuing nvme disconnect-all in NPIV (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: make 1-bit bit-fields unsigned int (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix MPI failure AEN (8200) handling (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Move free of fcport out of interrupt context (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix I/Os being passed down when FC device is being deleted (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Set Nport ID for N2N (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Handle NVME status iocb correctly (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Remove restriction of FC T10-PI and FC-NVMe (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Serialize fc_port alloc in N2N (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix NPIV instantiation after FW dump (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Force semaphore on flash validation failure (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: add more FW debug information (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Update BPM enablement semantics (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Use a dedicated interrupt handler for 'handshake-required' ISPs (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Return appropriate failure through BSG Interface (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix FCP-SCSI FC4 flag passing error (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Add 16.0GT for PCI String (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Use QLA_FW_STOPPED macro to propagate flag (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Add fixes for mailbox command (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix control flags for login/logout IOCB (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Save rscn_gen for new fcport (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Use correct ISP28xx active FW region (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Use endian macros to assign static fields in fwdump header (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Add endianizer macro calls to fc host stats (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Use get_unaligned_*() instead of open-coding these functions (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix the endianness of the qla82xx_get_fw_size() return type (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Improve readability of the code that handles qla_flt_header (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix mtcp dump collection failure (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix stuck session in GNL (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix RIDA Format-2 (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Consolidate fabric scan (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Correct fcport flags handling (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix stuck login session using prli_pend_timer (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Use common routine to free fcport struct (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Add D-Port Diagnostic reason explanation logs (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix update_fcport for current_topology (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Cleanup unused async_logout_done (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Add a shadow variable to hold disc_state history of fcport (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Retry PLOGI on FC-NVMe PRLI failure (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix fabric scan hang (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Remove defer flag to indicate immeadiate port loss (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Add debug dump of LOGO payload and ELS IOCB (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Ignore PORT UPDATE after N2N PLOGI (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Don't defer relogin unconditonally (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Send Notify ACK after N2N PLOGI (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Configure local loop for N2N target (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix PLOGI payload and ELS IOCB dump length (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Don't call qlt_async_event twice (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Allow PLOGI in target mode (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Change discovery state before PLOGI (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Drop superfluous INIT_WORK of del_work (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Initialize free_work before flushing it (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Use explicit LOGO in target mode (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Ignore NULL pointer in tcm_qla2xxx_free_mcmd (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: Fix qla2x00_request_irqs() for MSI (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: unregister ports after GPN_FT failure (Nilesh Javali) [1789526]
+- [scsi] scsi: qla2xxx: fix rports not being mark as lost in sync fabric scan (Nilesh Javali) [1789526]
+- [s390] s390/kexec_file: fix initrd location for kdump kernel (Lianbo Jiang) [1835097]
+
+* Sat May 23 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-204.el8]
+- [sound] ALSA: ALSA - update sound configuration (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Revert "ALSA: Use the legacy HDA driver as default for Intel DSP platforms" (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: IPC: dai-intel: move ALH declarations in header file (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: add core id to sof_ipc_comp (Jaroslav Kysela) [1797509]
+- [sound] ALSA: compress: bump the version (Jaroslav Kysela) [1797509]
+- [sound] ALSA: compress: add alac & ape decoder params (Jaroslav Kysela) [1797509]
+- [sound] ALSA: compress: Add wma decoder params (Jaroslav Kysela) [1797509]
+- [sound] ALSA: compress: add wma codec profiles (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: remove X86 dependency (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: depend on ACPI || OF (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: depend on ACPI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: fix regmap dependencies and align with other serial links (Jaroslav Kysela) [1797509]
+- [sound] ALSA: treewide: Add SPDX license identifier - Makefile/Kconfig (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: fix kconfig help format (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: Kconfig: fix help format (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: remove useless prototypes (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: mipi_disco: Switch to use fwnode_property_count_uXX() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: don't program ports when a stream that has not been prepared (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: fix support for multiple Slaves on the same link (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: do not update parameters during DISABLED-PREPARED transition (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: only prepare stream when it is configured (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: update state machine and add state checks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Documentation: soundwire: Ensure that code is inside the code blocks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Documentation: soundwire: fix stream.rst markup warnings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Documentation: soundwire: Add documentation for multi link (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: remove redundant pr_err traces (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: remove unnecessary variable initializations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: fix disable sequence (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: fix bad unlock balance (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: use sdw_write instead of update (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: fix PDI/stream mapping for Bulk (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus_type: fix alignment issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: export helpers to find row and column values (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: check first if Slaves become UNATTACHED (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: Add read_only_wordlength flag to port properties (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: fix device number leak on errors (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: sdw_slave: track unattach_request to handle all init sequences (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: sdw_slave: add initialization_complete definition (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: sdw_slave: add enumeration_complete structure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: sdw_slave: add probe_complete structure and new fields (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: remove bitfield for unique_id, use u8 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: make stream name a const pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: Add compute_params callback (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: provide correct return value on error (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: add helper macros for devID fields (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: don't treat CMD_IGNORED as error on ClockStop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: add clock stop helpers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: fix io error when processing alert event (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: avoid multiple assignments (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: disable pm_runtime in sdw_slave_delete (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: add helper to clear Slave status to UNATTACHED (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: write Slave Device Number without runtime_pm (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: add PM/no-PM versions of read/write functions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: improve dynamic debug comments for enumeration (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: split handling of Device0 events (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: fix race condition with initialization_complete signaling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: fix race condition with enumeration_complete signaling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: fix race condition with probe_complete signaling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: ignore uniqueID when irrelevant (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: slave: add helper to extract slave ID (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: slave: fix scanf format (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: slave: fix alignment issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: core: add device tree support for slave devices (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: set initial value to port_status (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: clear FIFO to avoid pop noise issue on playback start (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: multi-link support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: commit changes in the exit_reset() sequence (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: remove automatic command retries (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: remove PREQ_DELAY assignment (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: enable NORMAL operation in cdns_init() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: reorder MCP_CONFIG settings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: make SSP interval programmable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: move clock/SSP related inits to dedicated function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: merge routines to clear/set bits (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: mask Slave interrupt before stopping clock (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: fix a io timeout issue in S3 test (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: add clock_stop/restart routines (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: handle error cases with CONFIG_UPDATE (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: add interface to check clock status (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: simplifiy cdns_init() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: s/update_config/config_update (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: fix kernel-doc parameter descriptions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: remove useless variable incrementation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: update kernel-doc parameter descriptions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: handle multiple status reports per Slave (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: remove config update for interrupt setting (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: log more useful information during timeouts (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: clear interrupt status before enabling interrupt (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: filter out bad interrupts (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: make clock stop exit configurable on init (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: free all resources on hw_free() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: add sdw_stream_setup helper for .startup callback (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: add trigger support in sdw dai driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: add prepare support in sdw dai driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: rename res field as link_res (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: fix factor of two in MCLK handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: update stream callbacks for hwparams/free stream operations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: update interfaces between ASoC and SoundWire (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: fix typo in comments (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: use correct header for io calls (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel_init: add kernel module parameter to filter out links (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel_init: add checks on link numbers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: filter SoundWire controller device search (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: remove empty line after braces (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel_init: fix alignment issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: add helper for initialization (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: fix intel_register_dai PDI offsets and numbers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel/cadence: add flag for interrupt enable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: remove playback/capture stream_name (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: remove DAI_ID_RANGE definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: add missing headers for cross-compilation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: handle disabled links (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: add debugfs register dump (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: remove unused variables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: more alignment fixes (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: add hw_reset capability in debugfs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel/cadence: fix startup sequence (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: improve PDI allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: don't filter out PDI0/1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence/intel: simplify PDI/port mapping (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: add debugfs register dump (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: move shutdown() callback and don't export symbol (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: fix alignment issues in header files (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: fix SPDX license for header files (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: add kernel parameter to override interrupt mask (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: fix divider setting in clock register (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: make use of mclk_freq property (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: use firmware defaults for frame shape (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: revisit interrupt settings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: fix definitions for INTSTAT0/1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: fix register definition for SLAVE_STATE (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: simplify bus clash interrupt clear (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: check the number of bidir PDIs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: log Slave status mask on errors (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: use rate_limited dynamic debug (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: remove spurious newline (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: fix boolean comparisons (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: balance parentheses (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence_master: fix alignment issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cdns: Fix compilation error on arm64 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: cadence: remove empty line after braces (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: read mclk_freq property from firmware (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: fix channel number reported by hardware (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: prevent possible dereference in hw_params (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: remove BIOS work-arounds (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: set dai min and max channels correctly (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: Intel: add log for number of PCM and PDM PDIs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: add debugfs support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: add new mclk_freq field for properties (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: include mod_devicetable.h to avoid compiling warnings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: rename/clarify MIPI DisCo properties (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: clarify comment (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: mipi-disco: fix clock stop modes (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: mipi-disco: remove master_count property for masters (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: remove master data port properties (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: add port-related definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: wrap macro argument in parenthesis (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: rename 'freq' fields (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: mipi_disco: fix master/link error (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: mipi_disco: fix boolean comparisons (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: mipi_disco: fix alignment issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: fix out of boundary access on port properties (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: add a blank line between functions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: fix more typos (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: more alignment fixes (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: remove empty line before/after braces (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: add missing newlines in dynamic debug logs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: fix alignment issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: stream: remove useless initialization of local variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: fix boolean comparison (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: protect macro parameters (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: fix alignment issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: fix implicit header use of module.h/export.h (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: intel: fix inversion in devm_kcalloc parameters (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: remove spurious newline (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: fix boolean comparisons (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: remove useless parentheses (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: fix typos in comments (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: bus: fix alignment issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: remove useless initializations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: fix SPDX license for header files (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm-dai: Add SNDRV_PCM_INFO_BATCH flag (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm-dai: add support for ALAC and APE decoders (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm-dai: add support to wma decoder (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: only enable dais from device tree (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm: add support for alac and ape configs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm: add support to wma config (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm: pass codec profile to q6asm_open_write (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qdsp6: q6routing: remove default routing (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sprd: Allow the MCDT driver to build into modules (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: q6dsp6: q6afe-dai: add missing channels to MI2S DAIs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: lpass-platform: use for_each_pcm_streams() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: common: Silence duplicate parse error messages (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: sdm845: handle soundwire stream (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: Update dependencies for Arizona machine drivers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: qcom: add support for get_sdw_stream() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: use for_each_rtd_codecs/cpus_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soundwaire: qcom: use for_each_rtd_codec_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soundwire: qcom: add support for SoundWire controller (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: sdm845: use for_each_rtd_codec_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rockchip: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: s3c24xx-i2s: Fix build after removal of DAI suspend/resume (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: Silence warnings during deferred probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sh: fsi: Restore devm_ioremap() alignment (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sh: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: dma: set bus width to data width for monaural data (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: Fix "status check failed" spam for multi-SSI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: Don't treat master SSI in multi SSI setup as parent (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: Fix parent SSI start/stop in multi-SSI mode (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: Fix HDMI channel mapping for multi-SSI mode (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sprd: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: i2s: manage rebind issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: i2s: improve error management on probe deferral (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: i2s: manage error when getting reset controller (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: manage error when getting reset controller (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: improve error management on probe deferral (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: fix sai probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: soc/stm/stm32_sub_sai: Add missing '\n' in log messages (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: Add missing cleanup (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: spdifrx: manage rebind issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: spdifrx: fix regmap status check (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: spdifrx: improve error management on probe deferral (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: spdifrx: manage error when getting reset controller (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sunxi: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sun8i-codec: Remove unused dev from codec struct (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tegra: tegra_wm8903: Support DAPM events for built-in microphone (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tegra: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: remove redundant assignment to variable ret (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Add support for platforms using UDMA (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: Add udma-pcm platform driver for UDMA (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: txx9: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: uniphier: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ux500: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: xtensa: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: zte: zx-spdif: remove redundant dev_err message (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: zte: zx-tdm: remove redundant variables dev (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: apq8016_sbc: use for_each_rtd_codec_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pxa: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mxs: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: use for_each_rtd_codecs/cpus_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219-max98357: use for_each_rtd_codec_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: use SND_SOC_DAPM_PINCTRL in TDM out (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: apply some refactors (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: pull TDM GPIO pins down when probed (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: change supported formats of DL2 and UL1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219: add speaker switch (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8173-rt5650: support HDMI jack reporting (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: kirkwood: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740-i2s: Add support for the JZ4770 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740-i2s: Add support for the JZ4760 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740-i2s: Avoid passing enum as match data (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740-i2s: Add local dev variable in probe function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740: Use of_device_get_match_data() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740-i2s: Fix divider written at incorrect offset in register (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: img: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: generic: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: simple-card-utils: use for_each_pcm_streams() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: simple-card: Add support for codec2codec DAI links (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: fsl_asrc_dma: use for_each_pcm_streams() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dwc: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dwc: dwc-i2s: use for_each_pcm_streams() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: cirrus: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: bcm: Fix pointer cast warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: bcm: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: brcm: Add DSL/PON SoC audio driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: au1x: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mchp-i2s-mcc: make signed 1 bit bitfields unsigned (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: atmel: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Allow I2S wake event after ACP is powerd On (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: acp3x-pcm-dma: clean up two indentation issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: AMD: Clear format bits before setting them (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Adding TDM support in hw_params (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Fix button configuration (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoc: amd: acp3x: Add missing include <linux/io.h> (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Fix compile warning of argument type (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoc: amd: Add DMIC switch capability to machine driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Add machine driver for Raven based platform (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usx2y: use for_each_pcm_streams() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usx2y: Fix potential NULL dereference (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add registration quirk for Kingston HyperX Cloud Alpha S (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Apply async workaround for Scarlett 2i4 2nd gen (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Correct a typo of NuPrime DAC-10 USB ID (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add Pioneer DJ DJM-250MK2 quirk (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add quirk for Focusrite Scarlett 2i2 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Use pcm_for_each_format() macro for PCM format iterations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix missing braces in some struct inits (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix usb audio refcnt leak when getting spdif (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add connector notifier delegation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add static mapping table for ALC1220-VB-based mobos (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Check mapping at creating connector controls, too (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add mixer workaround for TRX40 and co (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Don't create jack controls for PCM terminals (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Don't override ignore_ctl_error value from the map (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Filter error from connector kctl ops, too (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix mixer controls' USB interface for Kingston HyperX Amp (0951:16d8) (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Parse source ID of UAC2 effect unit (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb: audio-v2: Add uac2_effect_unit_descriptor definition (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Don't create a mixer element with bogus volume range (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix case when USB MIDI interface has more than one extra endpoint descriptor (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-midi: Replace zero-length array with flexible-array member (Jaroslav Kysela) [1797509]
+- [sound] ALSA: line6: Fix POD HD500 audio playback (Jaroslav Kysela) [1797509]
+- [sound] ALSA: line6: Fix endless MIDI read loop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Filter out unsupported sample rates on Focusrite devices (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add support for Presonus Studio 1810c (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add support for MOTU MicroBook IIc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Inform devices that need delayed registration (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add delayed_register option (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Rewrite registration quirk handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Create a registration quirk for Kingston HyperX Amp (0951:16d8) (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd9335: fix address map representation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: Remove some unnecessary NULL checks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: remove unused headers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: fix High Accuracy Buck enable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: Remove set but not unused variable 'hph_comp_ctrl7' (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm0010: Replace zero-length array with flexible-array member (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8960: Fix wrong clock after suspend & resume (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: codecs: wsa881x: remove soundwire stream handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: codecs: wsa881x: request gpio direction before setting (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wsa881x: mark read_only_wordlength flag (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8974: remove unused variables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm_adsp: Use scnprintf() for the limited buffer output (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas571x: disable regulators on failed probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2562: Fixed incorrect amp_level setting (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2562: Add support for ISENSE and VSENSE (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2562: Add entries for the TAS2563 audio amplifier (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2562: Add support for digital volume control (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sgtl5000: Fix VAG power-on handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1015: modify some structure to be static (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Fix SND_SOC_ALL_CODECS imply ac97 fallout (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm89xx: Add missing dependency (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: fix unmet dependencies (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Fix SND_SOC_ALL_CODECS imply misc fallout (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: adau7118: Fix Kconfig warning without CONFIG_I2C (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Fix SND_SOC_ALL_CODECS imply I2C fallout (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Fix SND_SOC_ALL_CODECS imply SPI fallout (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682-sdw: fix 'defined but not used' pm functions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Make rt5682_clock_config static (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Fix build error without CONFIG_I2C (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: move DAI clock registry to I2S mode (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Add a property for DMIC delay (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Add a property for DMIC clock rate (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: remove noisy debug messages (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: fix the random recording noise of headset (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Fine tune the HP performance in soundwire mode (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Revise the DAC1 volume setting (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Revise the function name (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Add the soundwire support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Use imply for SND_SOC_ALL_CODECS (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Add CCF usage for providing I2S clks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Enable PLL2 function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: Add the field "is_sdw" of private data (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5659: remove redundant assignment to variable idx (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5645: Add platform-data for Medion E1239T (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1308-sdw: use slot and rx_mask to configure stream (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1308-sdw: add set_tdm_slot() support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1015: fix typo for bypass boost control (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rl6231: Add new supports on rl6231 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rockchip: Make RK3328 GPIO_MUTE control explicit (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: MT6660: make spdxcheck.py happy (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: MT6660 update to 1.0.8_G (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98357a: Add ACPI HID MAX98360A (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98357a: move control of SD_MODE to DAPM (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: codecs: hdac_hdmi: Fix incorrect use of list_for_each_entry (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: codecs: hdac_hdmi: (cosmetic) remove redundant variable initialisations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: codecs: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: cs4270: pull reset GPIO low then high (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: allow operation without i915 gfx (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix ordering bug in resume flow (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add parameter to control SoundWire clock stop quirks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: initial SoundWire machine driver autodetect (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add SoundWire stream config/free callbacks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Account for compress streams when servicing IRQs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Fix stream cleanup on hw free (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda-loader: clear the IPC ack bit after FW_PURGE done (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Asoc: SOF: Intel: hda: check SoundWire wakeen interrupt in irq thread (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add WAKEEN interrupt support for SoundWire (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: merge IPC, stream and SoundWire interrupt handlers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: add SoundWire configuration interface (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Expose SDnFMT helpers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Fix probe point getter (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: pcm: skip DMA buffer pre-allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Turn "firmware boot complete" message into a dbg message (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: ipc: check ipc return value before data copy (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sof: sof-audio: use for_each_pcm_streams() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Do not reset hw_params for streams that ignored suspend (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: audio: Add helper to check if only D0i3 streams are active (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Add i.MX8QM device descriptor (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Remove SOF_IPC_EXT_DMA_BUFFER (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Make sof_ipc_ext_data enum more rigid (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: fix uninitialised "work" with VirtIO (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: (cosmetic) use for_each_pcm_streams() in sof_dai_load() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: topology: connect dai widget to all cpu-dais (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: remove unnecessary ROM IPC filter function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda-dai: add stream capability (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda-ctrl: add reset cycle before parsing capabilities (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: call codec wake at chip init (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: do not leave clock gating off upon error (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: disable SoundWire interrupts on suspend (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sof: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Improve DSP state logging (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: use snd_sof_dsp_set_power_state() op (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Allow trace DMA in S0 when DSP is in D0I3 for debug (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Amend the DSP state transition diagram (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: cnl: Implement feature to support DSP D0i3 in S0 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: remove unnecessary waitq before loading firmware (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: add min/max channels for SSP on Baytrail/Broadwell (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: remove SND_SOC_SOF_HDA_COMMON_HDMI_CODEC (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Probe compress operations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Fix Kconfig indentation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: imx8: Add ops for i.MX8QM (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Rename i.MX8 platform to i.MX8X (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Provide probe debugfs support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Move DSP power state transitions to platform-specific ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: pm: Introduce DSP power states (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: pm: Unify suspend/resume routines (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Add Probe compress CPU DAIs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Generic probe compress operations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Implement Probe IPC API (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: use for_each_rtd_codecs/cpus_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: kbl_da7219_max98927: use for_each_rtd_codec_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: cml_rt1011_rt5682: use for_each_rtd_codec_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: haswell: Remove ignore_suspend flag from SSP0 dai link (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: BXT: switch pcm512x based boards to sof_pcm512x (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: CHT: add support for pcm512x boards (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: soc-acpi-intel-icl-match: remove useless 'rt1308_2_adr' (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: soc-acpi-intel-cml-match: remove useless 'rt1308_2_adr' (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sof_pcm512x: drop reverse deps for SND_HDA_CODEC_HDMI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sof_rt5682: Add support for tgl-max98373-rt5682 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sof_rt5682: Add rt1015 speaker amp support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: drop reverse deps for SND_HDA_CODEC_HDMI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sof_sdw: Add Volteer support with RT5682 SNDW helper function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: add sof_sdw machine driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: common: add match table for TGL RT5682 SoundWire driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: soc-acpi: update topology and driver name for SoundWire platforms (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: common: Add mach table for tgl-max98373-rt5682 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-acpi: expand description of _ADR-based devices (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Skylake: Await purge request ack on CNL (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Allow for ROM init retry on CNL platforms (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: skylake: (cosmetic) remove redundant variable initialisations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Skylake: Enable codec wakeup during chip init (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Skylake: Select hda configuration permissively (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Skylake: Remove superfluous chip initialization (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Skylake: Shield against no-NHLT configurations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: sof_da7219_max98373: Add speaker switch (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sof_da7219_max98373: Add support for max98360a speaker amp (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: skl_nau88l25_ssm4567: disable route checks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel/skl/hda - add no-HDMI cases to generic HDA driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Make glk+rt5682 echo ref dynamic (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: don't use GFP_ATOMIC for machine driver contexts (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for MPMAN MPWIN895CL tablet (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: broadwell: Remove ignore_suspend flag from SSP0 dai link (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: broadwell: Revert back SSP0 link to use dummy components (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: Remove ignore_suspend flag from SSP0 dai link (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: Revert SSP0 link to use dummy components (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bdw-rt5650: Remove ignore_suspend flag from SSP0 dai link (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bdw-rt5650: Revert SSP0 link to use dummy components (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: (cosmetic) simplify structure member access (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: atom: Fix uninitialized variable compiler warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: mrfld: return error codes when an error occurs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sof_pcm512x: make HDMI optional for all platforms (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sof_pcm512x: add support for SOF platforms with pcm512x (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: mrfld: fix incorrect check on p->sink (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: atom: Check drv->lock is locked in sst_fill_and_send_cmd_unlocked (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: atom: Take the drv->lock mutex before calling sst_send_slot_map() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Use scnprintf() for string truncation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Allow setting preallocation again for x86 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Fix endianness issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Check return value of soc_tplg_dai_config (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Check return value of pcm_new_ver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Add missing memory checks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Check soc_tplg_add_route return value (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Check return value of soc_tplg_*_create (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Check return value of soc_tplg_create_tlv (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: use name_prefix for new kcontrol (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Perform component check upfront (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fix regwmask (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-generic-dmaengine-pcm: use for_each_pcm_streams() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dapm: Merge for_each_rtd_cpu/codec_dais() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: Remove dapm_connect_dai_link_widgets helper (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: Move error message to avoid some duplication (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: select sleep_state when initializing PINCTRL widget (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: connect virtual mux with default value (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: fixup dapm kcontrol widget (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dai: revert all changes to DAI startup/shutdown sequence (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dai: fix DAI startup/shutdown sequence (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dai: return proper error for get_sdw_stream() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dai: add get_sdw_stream() callback (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: export DPCM runtime update functions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dpcm: allow start or stop during pause for backend (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: Merge for_each_rtd_cpu/codec_dais() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: (cosmetic) simplify dpcm_prune_paths() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: Merge for_each_rtd_cpu/codec_dais() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: Merge CPU/Codec for soc_dai_pcm_new() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: Fix regression introducing multiple copies of DAI widgets (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add asoc_rtd_to_cpu/codec() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: Merge CPU/Codec DAIs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dapm: add for_each_card_widgets() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dapm: add for_each_card_dapms() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc.h: remove non plural form for_each_xxx macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc.h: add for_each_rtd_codecs/cpus_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc: use for_each_rtd_codecs/cpus_dai() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: disable route checks for legacy devices (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Add initial support for multiple CPU DAIs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fix card registration regression (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: use for_each_pcm_streams() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dapm: don't use rtd->cpu_dai on for_each_rtd_cpu_dai() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Add multiple CPU DAI support in DAPM (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Add dapm_add_valid_dai_widget helper (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: Do Digital Mute for both CPU/Codec in same timing (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: check DAI's activity more simply (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: tidyup dulicate handing at dpcm_fe_dai_startup() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: use snd_soc_dai_get_pcm_stream() at dpcm_set_fe_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add dpcm_fe_dai_cleanup() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: move dpcm_fe_dai_close() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm: Export parameter intersection logic (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: remove duplicate be check from dpcm_add_paths() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: use defined stream (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm: check if cpu-dai supports a given stream (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Return error if the function does not support multi-cpu (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Add multiple CPU DAI support for PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: fix state tracking error in snd_soc_component_open/close() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: move dpcm_path_put() to soc-pcm.c (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: merge dpcm_run_new/old_update() into dpcm_fe_runtime_update() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add snd_soc_dai_get_widget() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: cleanup soc_pcm_apply_msb() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add snd_soc_dai_get_pcm_stream() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm/soc-compress: don't use snd_soc_dapm_stream_stop() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dpcm: remove confusing trace in dpcm_get_be() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm: Fix possible buffer overflow in dpcm state sysfs output (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: use for_each_pcm_streams() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: merge playback/cature_active into stream_active (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: use goto and remove multi return (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add snd_soc_dpcm_can_be() and remove duplicate code (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: remove snd_soc_dpcm_be_get/set_state() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: remove soc_dpcm_be_digital_mute() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: use dpcm_get_be() at dpcm_end_walk_at_be() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: use dai_get_widget() at dpcm_end_walk_at_be() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: use dai_get_widget() at dpcm_get_be() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: move dai_get_widget() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: fix regression in soc_new_pcm() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: tidyup soc_pcm_open() order (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: move soc_pcm_close() next to soc_pcm_open() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: adjustment for DAI member 0 reset (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: call snd_soc_component_open/close() once (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: don't use bit-OR'ed error (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm/soc-compress: use snd_soc_dapm_stream_stop() for SND_SOC_DAPM_STREAM_STOP (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add for_each_dapm_widgets() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add snd_soc_runtime_action() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: call snd_soc_dai_startup()/shutdown() once (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: ensure component names are unique (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: allow a dt node to provide several components (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu8000: Fix the cast to __user pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: opti9xx: shut up gcc-10 range warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: firewire-tascam: Add missing annotation for tscm_hwdep_read_queue() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: firewire-tascam: Add missing annotation for tscm_hwdep_read_locked() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: firewire: use KBUILD_MODNAME for struct driver.name instead of string (Jaroslav Kysela) [1797509]
+- [sound] ALSA: via82xx: Fix endianness annotations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hdsp: remove redundant assignment to variable err (Jaroslav Kysela) [1797509]
+- [sound] ALSA: korg1212: fix if-statement empty body warnings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice1724: Fix invalid access for enumerated ctl items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Two front mics on a Lenovo ThinkCenter (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add new codec supported for ALC245 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Fix unexpected init_amp override (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Enable the headset mic on Asus FX505DT (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add quirk for MSI GL63 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add HP new mute led supported for ALC236 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add supported new mute Led for HP (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add quirk for Lenovo Carbon X1 8th gen (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Remove now-unnecessary XPS 13 headphone noise fixups (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Set principled PC Beep configuration for ALC256 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - a fake key event is triggered by running shutup (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek: Enable mute LED on an HP system (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Enable the headset of Acer N50-600 with ALC662 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Enable headset mic of Acer X2660G with ALC662 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek: Fix pop noise on ALC225 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi: Move ELD parse and jack reporting into update_eld() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi: Move runtime PM resume into hdmi_present_sense_via_verbs() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi: Don't use standard hda_jack for generic HDMI jacks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi: Reduce hda_jack_tbl lookup at unsol event handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: drm/nouveau: Fix regression by audio component transition (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi: fix without unlocked before return (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi: fix race in monitor detection during probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi: Add module option to disable audio component binding (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/ca0132 - Replace zero-length array with flexible-array member (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/ca0132 - Add Recon3Di quirk to handle integrated sound on EVGA X99 Classified motherboard (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Match both PCI ID and SSID for driver blacklist (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Remove ASUS ROG Zenith from the blacklist (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: call runtime_allow() for all hda controllers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Explicitly permit using autosuspend if runtime PM is supported (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Keep the controller initialization even if no codecs found (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Release resources at error in delayed probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Honor PM disablement in PM freeze and thaw_noirq ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Don't release card at firmware loading error (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Add driver blacklist (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: remove redundant assignment to variable timeout (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda_codec: Replace zero-length array with flexible-array member (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Always use jackpoll helper for jack update after resume (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Skip controller resume if not needed (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Fix potential access overflow in beep helper (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: default enable CA0132 DSP support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu10k1: Fix endianness annotations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ctxfi: Remove unnecessary cast in kfree (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ali5451: remove redundant variable capture_flag (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dummy: Use standard macros for fixing PCM format cast (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Fix PCM format assignment (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Use a macro for parameter masks to reduce the needed cast (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Minor refactoring (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dmaengine_pcm: No need to take runtime reference twice in pcm_pointer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dmaengine_pcm: Consider DMA cache caused delay in pointer callback (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dmaengine_pcm: Consider DMA cache caused delay in pointer callback (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm_dmaengine: Use pcm_for_each_format() macro for PCM format iteration (Jaroslav Kysela) [1797509]
+- [sound] ALSA: core: Replace zero-length array with flexible-array member (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Fix superfluous snprintf() usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: oss: Place the plugin buffer overflow checks correctly (for 5.7) (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: oss: Fix regression by buffer overflow fix (again) (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: oss: Remove WARNING from snd_pcm_plug_alloc() checks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: oss: Simplify plugin frame size calculations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: oss: Avoid plugin buffer overflow (Jaroslav Kysela) [1797509]
+- [sound] ALSA: info: remove redundant assignment to variable c (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: oss: Unlock mutex temporarily for sleeping at read/write (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Use standard macros for fixing PCM format cast (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Add a standalone version of snd_pcm_limit_hw_rates (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: More helper macros for reducing snd_pcm_format_t cast (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm.h: add for_each_pcm_streams() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: core: Add snd_device_get_state() helper (Jaroslav Kysela) [1797509]
+- [sound] ALSA: core: Implement compress page allocation and free routines (Jaroslav Kysela) [1797509]
+- [sound] ALSA: core: Expand DMA buffer information (Jaroslav Kysela) [1797509]
+- [sound] ALSA: uapi: Fix sparse warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: control: Fix incompatible protocol error (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ctl: bump protocol version up to v2.1.0 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ctl: remove unused macro for timestamping of elem_value (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: use __u32 instead of uint32_t in uapi headers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: uapi: remove unused sof header files (Jaroslav Kysela) [1797509]
+- [sound] ALSA: uapi: Drop unneeded typedefs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: uapi: Add linux/types.h include back (but carefully) (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hdspm: Drop linux/types.h inclusion in uapi header (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Spelling s/configr/configur/ (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: fix for_rtd_codec_dai_rollback() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dpcm: tidyup for_each_dpcm_xx() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: simple_card_utils.h: Fix potential multiple redefinition error (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rawmidi: Avoid bit fields for state flags (Jaroslav Kysela) [1797509]
+- [sound] ALSA: memalloc: Drop snd_dma_pci_data() macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: solo6x10: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: cs231xx: Clean up ALSA PCM API usages (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: em28xx: Clean up ALSA PCM API usages (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: delete unused proc_fs.h include (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: em28xx-audio: use GFP_KERNEL for memory allocation during init (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: go7007: Clean up ALSA PCM API usages (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: tm6000: Clean up ALSA PCM API usages (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: usbtv: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: solo6x10: Remove superfluous snd_dma_continuous_data() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: tw686x: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: media: tw686x: audio: Avoid non-standard macro usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Allow const arrays for legacy resource management helpers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcmcia: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pdaudiocf: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pdaudiocf: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pdaudiocf: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcmcia: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pdaudiocf: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: parisc: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: parisc: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: parisc: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: firewire-tascam: fix corruption due to spin lock without restoration in SoftIRQ context (Jaroslav Kysela) [1797509]
+- [sound] ALSA: oxfw: fix for Stanton SCS.1d (Jaroslav Kysela) [1797509]
+- [sound] ALSA: oxfw: don't add MIDI/PCM interface when packet streaming is unavailable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: oxfw: fix return value in error path of isochronous resources reservation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: oxfw: use ENXIO for not-supported cases (Jaroslav Kysela) [1797509]
+- [sound] ALSA: firewire-motu: fix double unlocked 'motu->mutex' (Jaroslav Kysela) [1797509]
+- [sound] ALSA: fireface: fix return value in error path of isochronous resources reservation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dice: loosen stream format check for MIDI conformant data channel (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dice: fix fallback from protocol extension into limited functionality (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dice: add support for Alesis MasterControl (Jaroslav Kysela) [1797509]
+- [sound] ALSA: firewire: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: firewire: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: firewire: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emux: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: spi: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: spi: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: spi: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: spi: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: spi: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sparc: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sparc: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sparc: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sparc: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sparc: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sparc: Remove superfluous snd_dma_continuous_data() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Apply 48kHz fixed rate playback for Jabra Evolve 65 headset (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: add quirks for Line6 Helix devices fw>=2.82 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add clock validity quirk for Denon MC7000/MCX8000 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Apply sample rate quirk for Audioengine D1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix UAC2/3 effect unit parsing (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Annotate endianess in Scarlett gen2 quirk (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix endianess in descriptor validation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: add implicit fb quirk for MOTU M Series (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: unlock on error in probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: fix sync-ep altsetting sanity check (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add boot quirk for MOTU M Series (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb: update old-style static const declaration (Jaroslav Kysela) [1797509]
+- [sound] ALSA: bcd2000: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usx2y: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: caiaq: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Use lower hex numbers for IDs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Apply the sample rate quirk for Bose Companion 5 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usx2y: Constify struct snd_usb_audio_quirk entries (Jaroslav Kysela) [1797509]
+- [sound] ALSA: line6: Constify snd_ratden definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb: Constify snd_pcm_hardware definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: fix Corsair Virtuoso mixer label collision (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: fix set_format altsetting sanity check (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: set the interface format after resume on Dell WD19 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usx2y: Adjust indentation in snd_usX2Y_hwdep_dsp_status (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usx2y: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ua101: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: line6: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hiface: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: caiaq: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: 6fire: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix Focusrite Scarlett 6i6 gen1 - input handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix NULL dereference at parsing BADD (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix Scarlett 6i6 Gen 2 port data (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Add skip_validation option (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix incorrect size check for processing/extension units (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix incorrect NULL check in create_yamaha_midi_quirk() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: not submit urb for stopped endpoint (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Fix missing error check at mixer resolution test (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ua101: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hiface: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: caiaq: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: 6fire: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb-audio: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: 6fire: Drop the dead code (Jaroslav Kysela) [1797509]
+- [sound] ALSA: usb: Remove superfluous snd_dma_continuous_data() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: intel_hdmi: Remove dev_err() on platform_get_irq() failure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: x86: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hdml-lpe-audio: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: xen: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: atmel: Constify snd_ac97_bus_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: arm: Constify snd_ac97_bus_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: arm: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aoa: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aoa: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aoa: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aoa: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ac97: Constify snd_ac97_bus_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: wss: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: wss: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: wavefront: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sc6000: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sb: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sb: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: opti9xx: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: opti9xx: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: opl3sa2: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: msnd: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: gus: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: gus: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es18xx: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es18xx: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1688: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1688: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1688: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs423x: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs4236: fix error return comparison of an unsigned integer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cmi8330: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cmi8328: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: isa: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: isa: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ad1816a: constify copied structure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ad1816a: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: isa: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: xlnx: Use devm_platform_ioremap_resource() in xlnx_formatter_pcm_probe() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: xtensa: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: xtensa: xtfpga-i2s: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: xilinx: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: xilinx: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: xilinx: xlnx_formatter_pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: uniphier: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: uniphier: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: uniphier: aio-dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: txx9: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: txx9: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: txx9: txx9aclc: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: sdma-pcm: Add back the flags parameter for non standard dma names (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tegra: disable rx_fifo after disable stream (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tegra: add a TDM configuration callback (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sunxi: sun4i-codec: remove unneeded semicolon (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: spdifrx: fix race condition in irq handler (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: spdifrx: retry synchronization in sync state (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: manage rebind issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: fix possible circular locking (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: add restriction on mmap support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: fix sysclk management on shutdown (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: sai: clean up indentation issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: dfsdm: fix 16 bits record (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm: stm32_adfsdm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sprd: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sprd: sprd-pcm-dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: ipc: Fix memory leak in sof_set_get_large_ctrl_data (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda-stream: fix the CONFIG_ prefix missing (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: imx8: fix memory allocation failure check on priv->pd_dev (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: utils: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-utils: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-ops: use snd_soc_card_get_kcontrol() at snd_soc_limit_volume() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: generic-dmaengine-pcm: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: generic-dmaengine: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-generic-dmaengine-pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: do error check after rsnd_channel_normalization() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: dma: fix SSI9 4/5/6/7 busif dma address (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sh: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsi: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sh: fsi: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rcar: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: core.c: add WARN_ON() on rsnd_channel_normalization() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: add missing of_node_put() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: Reinitialize bit clock inversion flag for every format setting (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sh: rsnd: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: siu_pcm: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sh: siu_pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dma-sh7760: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sh: dma-sh7760: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: Use pr_warn instead of pr_warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: idma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: Rename Arndale card driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: arndale: Add support for WM1811 CODEC (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: arndale: Simplify DAI link initialization (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rockchip: rockchip_max98090: Enable SHDN to fix headset detection (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rockchip_max98090: Add HDMI jack support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rockchip_max98090: Optionally support HDMI use case (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6routing: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm-dai: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: lpass-platform: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pxa: pxa2xx-i2s: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pxa: pxa-ssp: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pxa: poodle: Spelling s/enpoints/endpoints/, s/connetion/connection/ (Jaroslav Kysela) [1797509]
+- [sound] ALSA: spi: pxa2xx: No need to keep pointer to platform device (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pxa: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pxa: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pxa: mmp-pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: meson: g12a: add tohdmitx reset (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: meson: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: meson: axg-fifo: relax period size constraints (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: meson: axg-fifo: improve depth handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: meson: axg-fifo: fix fifo threshold setup (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: meson: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: meson: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8183: support WoV (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mt8183: fix audio playback slowly after playback during bootup (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mtk-btcvsd: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: kirkwood: fix device remove ordering (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740: Remove unused match variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: kirkwood: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: kirkwood: fix IRQ error handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: kirkwood: kirkwood-dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740: Drop lb60 board code (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: simple-card: fixup simple_dai_link_of_dpcm() comment (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: audio-graph: fixup graph_dai_link_of_dpcm() comment (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_sai: Fix noise when using EDMA (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_mqs: Move static keyword to the front of declarations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_mqs: Fix error handling in probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_mqs: remove set but not used variable 'bclk' (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_esai: Add spin lock to protect reset, stop and start (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: fsl_dma: fix build failure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: fsl_dma: don't use snd_soc_rtdcom_lookup() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: imx-pcm-fiq: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: mpc5200_dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: fsl_dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: fsl_asrc_dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8958: use <asm/unaligned.h> to simplify code (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tlv320aic32x4: add a check for devm_clk_get (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd9335: clean up indentation issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoc: tas2770: Remove unused defines and variables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2562: Fix misuse of GENMASK macro (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt6358: support WoV (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: msm8916-wcd-digital: add missing MIX2 path for RX1/2 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: msm8916-wcd-analog: Add earpiece (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: msm8916-wcd-analog: Fix RX1 selection in RDAC2 MUX (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_asrc: refine the setting of internal clock divider (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_asrc: Fix error with S24_3LE format bitstream in i.MX8 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_asrc: update supported sample format (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_asrc: Use in(out)put_format instead of in(out)put_word_width (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_mqs: Add MQS component driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dwc: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dwc: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dwc: dwc-pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8994: Add support for MCLKn clock gating (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8994: Add support for setting MCLK clock rate (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2562: Fix sample rate error message (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2562: Return invalid for when bitwidth is invalid (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2562: Introduce the TAS2562 amplifier (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2770: clean up an indentation issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2770: Fix snd_soc_update_bits error handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tas2770: Remove unneeded read of the TDM_CFG3 register (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoc: tas2770: Fix build error without GPIOLIB (Jaroslav Kysela) [1797509]
+- [sound] ALSA: tas2770: fix platform_no_drv_owner.cocci warnings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: tas2770: add tas2770 smart PA kernel driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5663: clean up indentation issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5650: Add Kahlee platform specfic changes (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm3168a: Fix serial mode dependent format support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm3168a: Use fixup instead of constraint for channels and formats (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm3168a: The codec does not support S32_LE (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASOC: adau7118: Change regulators id (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASOC: Add ADAU7118 8 Channel PDM-to-I2S/TDM Converter driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: adau1761: Add ALC controls (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: adau1761: Add PGA Slew time control (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: bcm: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: bcm: cygnus-pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: au1x: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: au1x: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: au1x: dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: au1x: dbdma2: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: atmel_ssc_dai: Remove wrong spinlock usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: atmel: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: atmel: atmel-pcm-pdc: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: ACP needs to be powered off in BIOS (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Additional DAI for I2S SP instance (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Fix simultaneous playback and capture (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: acp3x: Fix return value check in acp3x_dai_probe() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: add ACP3x TDM mode support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Buffer Size instead of MAX Buffer (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Fix for Subsequent Playback issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd MMAP_INTERLEAVED Support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Added ACP3x system resume and runtime pm (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Handle ACP3x I2S-SP Interrupts (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Enabling I2S instance in DMA and DAI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Refactoring of DAI from DMA driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: acp3x-pcm-dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: acp3x: clean up indentation issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: acp-pcm-dma: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8741: Fix typo in Kconfig prompt (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Fix snd_sof_ipc_stream_posn() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1015: modify pre-divider for sysclk (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1015: add operation callback function for rt1015_dai (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-component: tidyup snd_soc_pcm_component_sync_stop() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: Correct DAPM handling of active widgets during shutdown (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Skylake: Fix available clock counter incrementation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm/soc-compress: don't use snd_soc_dapm_stream_stop() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm512x: Fix unbalanced regulator enable call in probe error path (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Fix memleak in soc_tplg_manifest_load() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Fix memleak in soc_tplg_link_elems_load() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: skl: Fix possible buffer overflow in debug outputs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: skl: Fix pin debug prints (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sun8i-codec: Fix setting DAI data format (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: remove snd_soc_dapm_put_enum_double_locked (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: revert invalid fix for handling SHDN (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: codec2codec: avoid invalid/double-free of pcm runtime (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: move i915 init earlier (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Add system_suspend_target field to struct snd_sof_dev (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: atmel: fix atmel_ssc_set_audio link failure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_sai: Fix exiting path on probing failure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: Add missing COMMON_CLK dependency to SND_SOC_ALL_CODECS (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: Add missing COMMON_CLK dependency (Jaroslav Kysela) [1797509]
+- [sound] ALSA: treewide: remove redundant IS_ERR() before error code check (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: add PCI ID for JasperLake (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt715: Add __maybe_unused to PM callbacks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt711: Add __maybe_unused to PM callbacks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt700: Add __maybe_unused to PM callbacks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1308-sdw: Add __maybe_unused to PM callbacks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: consistent HDMI codec probing code (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: soc-acpi-intel-icl-match: fix rt715 ADR (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: pci: add missing default_fw_name of JasperLake (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: trace: fix unconditional free in trace release (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: core: release resources on errors in probe_continue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: core: free trace on errors (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: fix an Oops, caused by invalid topology (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: do not disable i915 power during probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: refactor i915_get/put functions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1015: Remove unnecessary const (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: silence lockdep warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove null_snd_soc_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add soc_rtd_trigger() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add soc_rtd_hw_free() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add soc_rtd_hw_params() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add soc_rtd_prepare() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add soc_rtd_shutdown() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: add soc_rtd_startup() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1015: add rt1015 amplifier driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: fix soc_tplg_fe_link_create() - link->dobj initialization order (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: skl_hda_dsp_common: Fix global-out-of-bounds bug (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Add MediaTek MT6660 Speaker Amp Driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: fix deadlock in max98090_dapm_put_enum_double() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dapm: add snd_soc_dapm_put_enum_double_locked (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: revert "ASoC: max98090: fix lockdep warning" (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove bus_control (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove DAI suspend/resume (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ux500: ux500_msp_dai: remove unused DAI .suspend/.resume (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: i2s: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dwc: dwc-i2s: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: uniphier: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: omap-mcpdm: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sti: sti_uniperif: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: spdif: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: s3c24xx-i2s: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: jz4740: jz4740-i2s: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: cirrus: ep93xx-i2s: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: atmel: atmel_ssc_dai: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: bcm: cygnus-ssp: move .suspend/.resume to component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-generic-dmaengine-pcm: Fix error handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: crash in snd_soc_dapm_new_dai (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5645: Remove unnecessary string buffers and snprintf calls (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Remove unnecessary string buffers and snprintf calls (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Remove code duplication in byt_rt5640_codec_fixup (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: msm8916-wcd-analog: Add MIC BIAS Internal3 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: msm8916-wcd-analog: Simplify MIC BIAS Internal (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt715: fix return value check in rt715_sdw_probe() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt711: fix return value check in rt711_sdw_probe() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt700: fix return value check in rt700_sdw_probe() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt715: remove unused including <linux/version.h> (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Fix SKL dai count (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm_adsp: Correct cache handling of new kernel control API (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sgtl5000: add multi endpoint support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_asrc: Add support for imx8qm & imx8qxp (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sgtl5000: Fix VDDA and VDDIO comparison (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: codecs: Add jz4770-codec driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: remove unused variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: removed unused variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: skl_rt286: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: skl_nau88l25_ssm4567: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: skl_nau88l25_max98357a: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASOC: Intel: kbl_rt5663_rt5514_max98927: remove useless initialization (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_rt5663_rt5514_max98927: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_rt5663_max98927: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_rt5660: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98927: remove unnecessary initialization (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98927: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98927: test return value on route add (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98357a: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: glk_rt5682_max98357a: removed unused variables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: glk_rt5682_max98357a: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bxt_rt298: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bxt_da7219_max98357a: rename shadowed variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda-dai: fix compilation warning in pcm_prepare (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt715: remove warnings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt715: use dev_to_sdw_dev() instead of to_sdw_slave_device() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt700: remove unused including <linux/version.h> (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1308-sdw: add rt1308 SdW amplifier driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: atmel: fix build error with CONFIG_SND_ATMEL_SOC_DMA=m (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: msm8916-wcd-digital: Reset RX interpolation path after use (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: msm8916-wcd-analog: Fix MIC BIAS Internal1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sti: fix possible sleep-in-atomic (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: msm8916-wcd-analog: Fix selected events for MIC BIAS External1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: hdac_hda: Fix error in driver removal after failed probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: fix HDA codec driver probe with multiple controllers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: lower print level to dbg if we will reinit DSP (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: reference SoundWire machine lists (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: support alternate list of machines (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: common: add match tables for TGL w/ SoundWire (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: common: add match tables for CNL/CFL/CML w/ SoundWire (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: common: add match tables for ICL w/ SoundWire (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: common: soc-acpi: declare new tables for SoundWire (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-acpi: add _ADR-based link descriptors (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-acpi: add link_mask field (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: fix PCM playback through ALSA OSS emulation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bdw-rt5650: change cpu_dai and platform components for SOF (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: broadwell: change cpu_dai and platform components for SOF (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: change cpu_dai and platform components for SOF (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: fix Kconfig dependencies (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt711: remove unused including <linux/version.h> (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt715: add RT715 codec driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: txx9: Remove unused rtd variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm/soc-compress: use snd_soc_dapm_stream_stop() for SND_SOC_DAPM_STREAM_STOP (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-dapm: add snd_soc_dapm_stream_stop() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add snd_soc_close_delayed_work() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: do pinctrl_pm_select_xxx() as component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove duplicate pinctrl operation when suspend (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: care .ignore_suspend for Component suspend (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: rename snd_soc_rtdcom_add() to snd_soc_rtd_add_component() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt700: add rt700 codec driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove snd_soc_rtdcom_list (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: Drop incorrectly applied duplicate commit (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt711: add rt711 codec driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: codecs: add wsa881x amplifier support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: fix lockdep warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: fix incorrect helper in max98090_dapm_put_enum_double() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: fix incorrect helper in max98090_dapm_put_enum_double() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: gtm601: fix build warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: loader: add dynamic debug trace (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: pci: change the default firmware path when the community key is used (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Fix NULL dereference at freeing (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sof_rt5682: Ignore the speaker amp when there isn't one (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Fix Irbis NB41 netbook quirk (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5640: Fix NULL dereference on module unload (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-topology: fix endianness issues (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: hda_dsp_common: use NULL pointer assignment, not 0 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: Fix compile-testing RT1011/RT5682 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: imx8: use resource_size (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: constify copied structure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: amd: Create multiple I2S platform device endpoint (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: sdm845: add support to DB845c and Lenovo Yoga (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: add audio routings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: add capture dapm widgets (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: add playback dapm widgets (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: add basic controls (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wcd934x: add support to wcd9340/wcd9341 codec (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: gtm601: add Broadmobi bm818 sound profile (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98357a: remove unused variable 'constraints_16000' and 'ch_mono' (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: hdac_hda: Update hdac hda dai table to include intel-hdmi-hifi4 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Add iDisp4 DAI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: imx8: Fix dsp_box offset (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_audmix: add missed pm_runtime_disable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: spdifrx: fix input pin state management (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: stm32: spdifrx: fix inconsistent lock state (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: Fix access to uninitialized list heads (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: Set dpcm_playback / dpcm_capture (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: Remove empty suspend function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: Add Broadwell rt5650 machine driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: move arch_ops under ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Prevent use-after-free in snd_soc_get_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: imx: Read SAI parameters and send them to DSP (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: imx: Describe SAI parameters to be sent to DSP (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: fix incorrect HDMI Kconfig dependency (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: drop HDA codec upon probe failure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Add machine driver for da7219_max98373 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: log compiler name and version information (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: define struct with compiler name and version (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Introduce state machine for FW boot (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: remove references to Haswell (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: cml_rt1011_rt5682: fix codec_conf by removing legacy style (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: hda-dai: fix oops on hda_link .hw_free (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: fix fault at driver unload after failed probe (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: compress: Add pm_runtime support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: skylake: Remove superfluous bus ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove legacy style of codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: rx51: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: speyside: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: neo1973_wm8753: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: lowland: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: samsung: bells: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219-max98357: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8173-rt5650-rt5676: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: mt8173-rt5650-rt5514: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: skl_nau88l25_ssm4567: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: kbl_rt5663_rt5514_max98927: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: kbl_rt5663_max98927: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: kbl_da7219_max98927: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl: imx-audmix: use snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: support snd_soc_dai_link_component for codec_conf (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8962: fix lambda value (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Drop snd_soc_pcm_lib_ioctl() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: haswell: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: baytrail: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: xtensa: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5514-spi: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: tidyup for CONFIG_DEBUG_FS (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: tidyup for CONFIG_DMI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge soc_set_name_prefix() and soc_set_of_name_prefix() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: byt: fixup topology filename for BYT-CR (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: soc_set_name_prefix(): get component device_node at out of loop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: soc_set_name_prefix(): tidyup loop condition (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: rename soc_link_init() to soc_init_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add missing return value check for soc_link_init() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move soc_link_init() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: rename soc_link_dai_pcm_new() to soc_dai_pcm_new() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move soc_link_dai_pcm_new() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: rename snd_soc_remove_dai_link() to snd_soc_remove_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: rename snd_soc_add_dai_link() to snd_soc_add_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move snd_soc_find_dai_link() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: find rtd via dai_link pointer at snd_soc_get_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move snd_soc_get_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove snd_soc_get_dai_substream() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove snd_soc_disconnect_sync() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove dai_link_list (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc.h: dobj is used only when SND_SOC_TOPOLOGY (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: add SND_SOC_BYTES_E (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: add codec_mask module parameter (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Add asynchronous sample rate converter topology support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: common: work-around incorrect ACPI HID for CML boards (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: split cht and byt debug window sizes (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: loader: fix snd_sof_fw_parse_ext_data (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: loader: snd_sof_fw_parse_ext_data log warning on unknown header (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: simple-card: Don't create separate link when platform is present (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Check return value for soc_tplg_pcm_create() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: topology: Check return value for snd_soc_add_dai_link() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Skylake: Explicitly include linux/io.h for virt_to_phys() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: nocodec: Amend arguments for sof_nocodec_setup() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Remove unused drv_name in sof_pdata (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: remove nocodec_fw_filename (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Make creation of machine device from SOF core optional (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: intel: hda: Modify signature for hda_codec_probe_bus() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: partition audio-related parts from SOF core (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Drop superfluous snd_pcm_sgbuf_ops_page (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Introduce default_fw_filename member in sof_dev_desc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: core: move check for runtime callbacks to core (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: core: modify the signature for snd_sof_create_page_table (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: sof: pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: topology: remove snd_sof_init_topology() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Remove unnecessary string buffers and snprintf calls (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: remove unused variable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel/skl/hda - export number of digital microphones via control components (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: hdmi-codec: set plugged_cb to NULL when component removing (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: hdmi-codec: re-introduce mutex locking again (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: hdmi-codec: drop mutex locking again (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fix soc-core.c kernel-doc warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: solve MSI issues by merging ipc and stream irq handlers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Improve the sysclk selection (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: cs42l51: add dac mux widget in codec routes (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: Calculate DALIGN inversion at run-time (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tlv320aic31xx: Add Volume Soft Stepping control (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: save and restore SHDN when changing sensitive registers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_sai: add IRQF_SHARED (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tlv320aic31xx: Add HP output driver pop reduction controls (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: common: refine hw_params and hw_prepare (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: mediatek: common: add some helpers to control mtk_memif (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: hdac_hdmi: Drop support for Icelake (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: make common HDMI driver default (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: common: Add mach table for tgl-max98357a-rt5682 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: sof_rt5682: Add support for tgl-max98357a-rt5682 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: sof_rt5682: Add quirk for number of HDMI DAI's (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: only flush inited work during free (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Update quirk for Teclast X89 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: Init pcm runtime work early to avoid warnings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: sst: Add missing include <linux/io.h> (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: fix possible race conditions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: exit workaround earlier if PLL is locked (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98090: remove msleep in PLL unlocked workaround (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8904: fix automatic sysclk configuration (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Fix build error without CONFIG_SPI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: topology: Fix unload for SAI/ESAI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: BYT: fix a copy/paste mistake in byt_dump() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: AMD: Enable clk in startup intead of hw_params (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: fix i2c arbitration lost issue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: DMI long name - avoid to add board name if matches with product name (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: improve the DMI long card code in asoc-core (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rsnd: fix DALIGN register for SSIU (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: component: Add sync_stop PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm: Make ioctl ops optional (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: check symmetry before hw_params (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm3168a: Update the RST gpio handling to align with documentation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: add control components management (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: remove soc_pcm_private_free() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: fixup dead-lock at snd_soc_unregister_component() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: fix RIP warning on card removal (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-component: tidyup snd_soc_pcm_component_new/free() parameter (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Update quirk for Acer Switch 10 SW5-012 2-in-1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm_adsp: Expose mixer control API (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: tlv320aic31xx: configure output common-mode voltage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Fix CFL and CML FW nocodec binary names (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Fix build break (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm3168a: Add support for optional RST gpio handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm5100: add missed pm_runtime_disable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm2200: add missed operations in remove and probe failure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm-dai: add support to flac decoder (Jaroslav Kysela) [1797509]
+- [sound] ALSA: compress: add flac decoder params (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: qcom: q6asm: add support to flac config (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: rt5677_check_hotword() can be static (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: fix the charge pump capacitor discharges (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Use dma_request_chan() directly for channel request (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: dmaengine: Use dma_request_chan() directly for channel request (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: care card_probed at soc_cleanup_card_resources() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move snd_soc_unbind_card() next to snd_soc_bind_card() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: call snd_soc_dapm_shutdown() at soc_cleanup_card_resources() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5645: Fixed typo for buddy jack support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8904: fix regcache handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: tidyup soc_probe_aux_devices() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge snd_soc_bind_card() and snd_soc_instantiate_card() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge soc_remove_component() and soc_cleanup_component() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge snd_soc_remove_dai_link() and soc_unbind_dai_link() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge snd_soc_add_dai_link() and soc_bind_dai_link() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge snd_soc_unregister_dai() and soc_del_dai() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge snd_soc_register_dai() and soc_add_dai() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove soc_is_dai_link_bound() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Jack: Fix NULL pointer dereference in snd_soc_jack_report (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: topology: free kcontrol memory on error (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: PM: only suspend to D0I3 when needed (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: add helper to check if we should enter d0i3 suspend (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: PM: add check before setting d0_substate (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: PM: add state machine to comments (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: use fallback for firmware name (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: acpi-match: split CNL tables in three (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Fix CFL and CML FW nocodec binary names (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5682: cancel jack_detect_work if hs_jack is set to null (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5645: Fixed buddy jack support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: wm8904: configure sysclk/FLL automatically (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: kbl_rt5663_rt5514_max98927: Add dmic format constraint (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Add DA7213 audio codec as selectable option (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Wait for DSP to boot before loading firmware (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Set ADC clock to use PLL and enable ASRC (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: bdw-rt5677: Turn on MCLK1 for DSP via DAPM (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Allow VAD to be shut on/off at all times (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Disable irq at suspend (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Stop and restart DSP over suspend/resume (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Mark reg RT5677_PWR_ANLG2 as volatile (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Add DAPM audio path for hotword stream (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Enable jack detect while DSP is running (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: bdw-rt5677: Add a DAI link for rt5677 SPI PCM device (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: fsl_audmix: Add spin lock to protect tdms (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5514-spi: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5514-spi: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Remove superfluous snd_dma_continuous_data() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: set L1SEN on S0ix suspend (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: topology: fix missing NULL pointer check (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: Fix compile warning with CONFIG_DEBUG_FS=n (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: topology: Fix bytes control size checks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove topology specific operation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: call snd_soc_register_dai() from snd_soc_register_dais() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: don't call snd_soc_dapm_new_dai_widgets() at snd_soc_register_dai() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: have legacy_dai_naming at snd_soc_register_dai() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add snd_soc_unregister_dai() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move snd_soc_unregister_dais() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move snd_soc_register_dai() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: use snd_soc_lookup_component() at snd_soc_unregister_component() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove snd_soc_component_add/del() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add snd_soc_del_component_unlocked() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: tidyup snd_soc_lookup_component() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move snd_soc_lookup_component() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add soc_unbind_dai_link() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: call soc_bind_dai_link() under snd_soc_add_dai_link() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove duplicated soc_is_dai_link_bound() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: typo fix at soc_dai_link_sanity_check() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: tidyup soc_init_dai_link() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move soc_init_dai_link() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add for_each_rtd_components() and replace (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove for_each_rtdcom_safe() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: Use different sequence for start/stop trigger (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: snd_soc_unbind_card() cleanup (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add snd_soc_pcm_lib_ioctl() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: setup card->rtd_num at snd_soc_instantiate_card() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: use devm_xxx for component related resource (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add soc_setup_card_name() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove soc_remove_dai_links() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: use devm_kzalloc() for rtd (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: Clarify usage of ignore_machine (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove snd_soc_rtdcom_del_all() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: tidyup soc_new_pcm_runtime() alloc order (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: topology: set trigger order for FE DAI link (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm: update FE/BE trigger order based on the command (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: max98373: replace gpio_request with devm_gpio_request (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Skylake: mark HDAudio codec support as deprecated (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: use def_tristate, avoid using select (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF dependency (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Kconfig: add EXPERT dependency for developer options, clarify help (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: add mutual exclusion between SOF and legacy Baytrail driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Broadwell: clarify mutual exclusion with legacy driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: Baytrail: clarify mutual exclusion with Atom/SST driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Simplify the hda_dsp_wait_d0i3c_done() function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: Add acpi match for rt1011 based m/c driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: ux500: Remove redundant variable "status" (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: hdac_hda: fix race in device removal (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: set the different setting for QFN/WLCSP package (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: some minor changes to improve readability (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: add the range check for temperature_calib from device property (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: remove unnecessary tabs using spaces instead (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: fix spelling mistake "temperture" -> "temperature" (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: Read and apply r0 and temperature device property (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: set tx/rx slots from tx/rx_mask in TDM case (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: improve the rt1011_set_dai_fmt() function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt1011: remove redundant code in kcontrol (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: remove unneeded snd_soc_tplg_component_remove() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677-spi: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Load firmware via SPI using delayed work (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677-spi: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677-spi: fixup compile warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677-spi: fix sparse warnings (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Add missing null check for failed allocation of rt5677_dsp (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: rt5677: Add a PCM device for streaming hotword via SPI (Jaroslav Kysela) [1797509]
+- [sound] ALSA: serial-u16550: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: opl4: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: seq: oss: Constify snd_seq_oss_callback definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: opl3: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: opl3: Constify snd_opl3_drum_voice definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: mts64: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dummy: Constify snd_pcm_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dummy: Fix PCM format loop in proc output (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dummy: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: drivers: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Fix dependency on timer API (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: do not override bus codec_mask in link_get() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Reset stream if DMA RUN bit not cleared (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: No preallocation on x86 platforms (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Update kernel-doc function parameter descriptions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Comment about snd_hdac_bus_update_rirb() and spinlock (Jaroslav Kysela) [1797509]
+- [sound] ALSA: via82xx: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: trident: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rme32: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcxhr: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: intel8x0: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Apply aligned MMIO access only conditionally (Jaroslav Kysela) [1797509]
+- [sound] ALSA: remove ioremap_nocache and devm_ioremap_nocache (Jaroslav Kysela) [1797509]
+- [sound] ALSA: au88x0: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: atiixp: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: asihpi: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Enable the headset of ASUS B9450FA with ALC294 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Master (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add Headset Button supported for ThinkPad X1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add Headset Mic supported (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Fix a regression for mute led on Lenovo Carbon X1 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Use scnprintf() for printing texts for sysfs/procfs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Apply quirk for yet another MSI laptop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Apply quirk for MSI GP63, too (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Fix silent output on MSI-GL73 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add more codec supported Headset Button (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Clear RIRB status before reading WP (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Fixed one of HP ALC671 platform Headset Mic supported (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Fix DP-MST support for NVIDIA codecs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hdsp: Make the firmware loading ioctl a bit more readable (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu10k1: Fix annotation and cast for the recent uapi header change (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Add JasperLake PCI ID and codec vid (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Add Clevo W65_67SB the power_save blacklist (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs46xx: fix spelling mistake "to" -> "too" (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Add docking station support for Lenovo Thinkpad T420s (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - add retry logic to parse_intel_hdmi() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add Headset Mic supported for HP cPC (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/analog - Minor optimization for SPDIF mux connections (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: patch_hdmi: remove warnings with empty body (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: correct kernel-doc parameter descriptions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Manage concurrent reg access more properly (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: enable regmap internal locking (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Fix a typo in comments (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Disable regmap internal locking (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: patch_realtek: fix empty macro usage in if block (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Rename back to dmic_detect option (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: echoaudio: remove set but not used variable 'chip' (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add quirk for the bass speaker on Lenovo Yoga X1 7th gen (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Set EAPD control to default for ALC222 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: via82xx: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: fm801: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ens137x: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: echoaudio: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs4281: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: azt3328: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ak4531: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: lx6464es: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aw2: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cmipci: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1968: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1938: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: atiixp: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: asihpi: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ctxfi: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ca0106: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs46xx: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: korg1212: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: nm256: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ymfpci: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: mixart: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcxhr: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rme9652: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hdspm: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hdsp: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice1712: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: riptide: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu10k1: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: au88x0: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ac97: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: intel8x0: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: vx: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Apply mic mute LED quirk for Dell E7xx laptops, too (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add new codec supported for ALCS1200A (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - constify and cleanup static NodeID tables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: Constify snd_pci_quirk tables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Constify snd_pci_quirk tables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: fm801: Constify snd_fm801_tea575x_gpios (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1968: Constify snd_es1968_tea575x_gpios (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu10k1: Constify snd_emu_chip_details (Jaroslav Kysela) [1797509]
+- [sound] ALSA: bt87x: Constify snd_bt87x_boards (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice1712: Constify wm-specific tables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice17xx: Constify snd_ice1712_card_info (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ca0106: Constify snd_ca0106_details (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ca0106: Constify snd_ca0106_category_str items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ac97: Constify snd_ac97_res_table definition (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Constify snd_kcontrol_new items (Jaroslav Kysela) [1797509]
+- [sound] ALSA: vx: Constify snd_vx_hardware and snd_vx_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: info: Make snd_info_entry_ops as const (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: Constify snd_ac97_bus_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ac97: Treat snd_ac97_bus_ops as const (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Constify snd_timer_hardware definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: Constify snd_pcm_hardware definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: constify copied structure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Enable the bass speaker of ASUS UX431FLC (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice1724: Fix sleep-in-atomic in Infrasonic Quartet support code (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add Bass Speaker and fixed dac for bass speaker (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Apply sync-write workaround to old Intel platforms, too (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: echoaudio: remove usage of dimen menber of elem_value structure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - fix atpx_present when CLASS is not VGA (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu10k1: Make uapi/emu10k1.h compilable again (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Add headset Mic no shutup for ALC283 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cmipci: Allow disabling MPU port via module option (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Downgrade error message for single-cmd fallback (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Fix regression by strip mask fix (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/ca0132 - Fix work handling in delayed HP detection (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/ca0132 - Avoid endless loop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/ca0132 - Keep power on during processing DSP response (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Unify get_response handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Use waitqueue for RIRB in HDA-core helper, too (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: tegra: Fix unused variable compile warning (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hdsp: Make uapi/hdsp.h compilable again (Jaroslav Kysela) [1797509]
+- [sound] ALSA: vx222: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcxhr: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: mixart: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: lx6464es: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ymfpci: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: via82xx: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: trident: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sonicvibes: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sis7019: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rme9652: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rme96: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rme32: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: riptide: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: oxygen: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: nm256: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: maestro3: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: lola: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: korg1212: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: intel8x0: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice1724: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice1712: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: fm801: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1968: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1938: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ens137x: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu10k1: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: echoaudio: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ctxfi: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs5535audio: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs46xx: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs4281: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cmipci: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ca0106: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: bt87x: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: azt3328: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aw2: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: au88x0: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: atiixp: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: als300: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ali5451: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ad1889: Support PCM sync_stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Line-out jack doesn't work on a Dell AIO (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - Fix duplicate unref of pci_dev (Jaroslav Kysela) [1797509]
+- [sound] ALSA: echoaudio: simplify get_audio_levels (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: hdmi - Keep old slot assignment behavior for Intel platforms (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Modify stream stripe mask only when needed (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - fixup for the bass speaker on Lenovo Carbon X1 7th gen (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: hdmi - preserve non-MST PCM routing for Intel platforms (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: hdmi - fix kernel oops caused by invalid PCM idx (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Fix inverted bass GPIO pin on Acer 8951G (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Dell headphone has noise on unmute for ALC236 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: hdmi - fix regression in connect list handling (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - enable automatic runtime pm for AMD HDMI codecs by default (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - enable runtime pm for newer AMD display audio (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - Add new pci ids for AMD GPU display audio (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - fix vgaswitcheroo detection for AMD (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Enable internal speaker of ASUS UX431FLC (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - Clear codec->relaxed_resume flag at unbinding (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Disable audio component for legacy Nvidia HDMI codecs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Enable the headset-mic on a Xiaomi's laptop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Move some alc236 pintbls to fallback table (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/realtek - Move some alc256 pintbls to fallback table (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Add mute led support for HP ProBook 645 G4 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Add DP-MST support for NVIDIA codecs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Add DP-MST support for non-acomp codecs (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Add DP-MST jack support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - Rename snd_hda_pin_sense to snd_hda_jack_pin_sense (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda - remove forced polling workaround for CFL and CNL (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: hdmi - remove redundant code comments (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: hdmi - fix port numbering for ICL and TGL platforms (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/hdmi - Clean up Intel platform-specific fixup checks (Jaroslav Kysela) [1797509]
+- [sound] ALSA: au88x0: Fix incorrect device pointer for preallocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: hdmi - fix pin setup on Tigerlake (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Add Cometlake-S PCI ID (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rme32: Remove superfluous snd_dma_continuous_data() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: hdmi - add Tigerlake support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda/ca0132 - Fix possible workqueue stall (Jaroslav Kysela) [1797509]
+- [sound] ALSA: seq: Fix concurrent access to queue current tick/time (Jaroslav Kysela) [1797509]
+- [sound] ALSA: seq: Avoid concurrent access to queue flags (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Fix double hw_free calls (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Fix sparse warnings wrt snd_pcm_state_t (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Fix memory leak at closing a stream without hw_free (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Set per-card upper limit of PCM buffer allocations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Make snd_pcm_hw_constraints_init() and _complete() static (Jaroslav Kysela) [1797509]
+- [sound] ALSA: seq: Fix racy access for queue timer in proc read (Jaroslav Kysela) [1797509]
+- [sound] ALSA: timer: fix nsec/sec initialization confusion (Jaroslav Kysela) [1797509]
+- [sound] ALSA: control: potential uninitialized return value (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rawmidi: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: oss: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: jack: More constification (Jaroslav Kysela) [1797509]
+- [sound] ALSA: info: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: seq: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: More constifications (Jaroslav Kysela) [1797509]
+- [sound] ALSA: control: Add verification for kctl accesses (Jaroslav Kysela) [1797509]
+- [sound] ALSA: mixer: oss: Constify snd_mixer_oss_assign_table definition (Jaroslav Kysela) [1797509]
+- [sound] ALSA: seq: Constify struct snd_midi_op (Jaroslav Kysela) [1797509]
+- [sound] ALSA: timer: Constify snd_timer_hardware definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: core: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: core: Treat snd_device_ops as const (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ctl: allow TLV read operation for callback type of element in locked case (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ctl: remove dimen member from elem_info structure (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Avoid possible info leaks from PCM stream buffers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: control: remove useless assignment in .info callback of PCM chmap element (Jaroslav Kysela) [1797509]
+- [sound] ALSA: uapi: Fix typos and header inclusion in asound.h (Jaroslav Kysela) [1797509]
+- [sound] ALSA: bump uapi version numbers (Jaroslav Kysela) [1797509]
+- [sound] ALSA: add new 32-bit layout for snd_pcm_mmap_status/control (Jaroslav Kysela) [1797509]
+- [sound] ALSA: move snd_pcm_ioctl_sync_ptr_compat into pcm_native.c (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Avoid using timespec for struct snd_ctl_elem_value (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Avoid using timespec for struct snd_timer_tread (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Avoid using timespec for struct snd_rawmidi_status (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Avoid using timespec for struct snd_pcm_status (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Avoid using timespec for struct snd_timer_status (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Replace timespec with timespec64 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-pcm: fixup dpcm_prune_paths() loop continue (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ps3: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pmac: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ymfpci: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: via82xx: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: trident: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sonicvibes: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sis7019: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: riptide: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: oxygen: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: mixart: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: maestro3: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: lx6464es: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: lola: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: intel8x0: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice1724: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ice1712: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: fm801: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1938: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ens137x: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu10k1: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: emu10k1x: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: echoaudio: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ctxfi: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs5535: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cs4281: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cmipci: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ca0106: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: bt87x: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: azt3328: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aw2: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: atiixp: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: asihpi: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: als4000: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: parisc: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: wss: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: gus: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: sb: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es18xx: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1688: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: cmi8330: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ad1816a: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcsp: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: atmel: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aaci: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aoa: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aoa: Avoid non-standard macro usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: echoaudio: Avoid non-standard macro usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: es1968: Avoid non-standard macro usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: rme: Avoid non-standard macro usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: als300: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ali5451: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ad1889: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: Avoid non-standard macro usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: hda: Use standard waitqueue for RIRB wakeup (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pci: Drop superfluous snd_pcm_sgbuf_ops_page (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: atom: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: sst-mfld-platform-pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: sst-baytrail-pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: Drop superfluous snd_pcm_sgbuf_ops_page (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: sst-haswell-pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: skylake: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: Avoid non-standard macro usage (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: intel: skl-pcm: remove snd_pcm_ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: drivers: Constify snd_ac97_bus_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: drivers: Constify snd_device_ops definitions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: drivers: Drop superfluous ioctl PCM ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ml403: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: vx: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: vx: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: dummy: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: drivers: Remove superfluous snd_dma_continuous_data() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Use managed buffer allocation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Avoid pointer dereference before null-check (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Avoid unexpected timer event callback tasklets (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Remove redundant locking in timer open function (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Support runtime change of snd_timer via info interface (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Support selection of snd_timer instead of jiffies (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Move CABLE_VALID_BOTH to the top of file (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Rename all jiffies timer specific functions (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Use callback functions for timer specific implementations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Support return of error code for timer start and stop (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Describe units of variables (Jaroslav Kysela) [1797509]
+- [sound] ALSA: aloop: Convert to the common vmalloc memalloc (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge soc_free_pcm_runtime() and soc_rtd_free() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge soc_new_pcm_runtime() and soc_rtd_init() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: create rtd->codec_dais first (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: call list_del(&rtd->list) at soc_free_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge soc_add_pcm_runtime() into soc_new_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: move soc_free_pcm_runtime() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: use list_del_init and move it back to soc_cleanup_component (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: core: delete component->card_list in soc_remove_component only (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-component: remove snd_pcm_ops from component driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: add new pcm_construct/pcm_destruct (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-core: merge snd_pcm_ops member to component driver (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: soc-component.h: remove GPL explanation from header (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: oss: Avoid potential buffer overflows (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Add card sync_irq field (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Add the support for sync-stop operation (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Move PCM_RUNTIME_CHECK() macro into local header (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Allow NULL ioctl ops (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Introduce managed buffer allocation mode (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Fix stream lock usage in snd_pcm_period_elapsed() (Jaroslav Kysela) [1797509]
+- [sound] ALSA: timer: Fix the breakage of slave link open (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Unexport snd_pcm_sgbuf_ops_page (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Yet another missing check of non-cached buffer type (Jaroslav Kysela) [1797509]
+- [sound] ALSA: timer: Fix possible race at assigning a timer instance (Jaroslav Kysela) [1797509]
+- [sound] ALSA: timer: Make snd_timer_close() returning void (Jaroslav Kysela) [1797509]
+- [sound] ALSA: timer: Unify master/slave linking code (Jaroslav Kysela) [1797509]
+- [sound] ALSA: timer: Fix incorrectly assigned timer instance (Jaroslav Kysela) [1797509]
+- [sound] ALSA: timer: Limit max amount of slave instances (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Create proc files only for non-empty preallocations (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Warn if doubly preallocated (Jaroslav Kysela) [1797509]
+- [sound] ALSA: pcm: Handle special page mapping in the default mmap handler (Jaroslav Kysela) [1797509]
+- [sound] ALSA: memalloc: Add vmalloc buffer allocation support (Jaroslav Kysela) [1797509]
+- [sound] ALSA: memalloc: Allow NULL device for SNDRV_DMA_TYPE_CONTINUOUS type (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: pcm_dmaengine: Extract snd_dmaengine_pcm_refine_runtime_hwparams (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel - do not describe I/O configuration in the long card name (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel - use control components to describe card config (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: make common HDMI driver the default for SOF (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: sof_rt5682: use dependency on SOF_HDA_LINK (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: Geminilake is only supported by SOF (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: fix configs for bxt-da7219-max98057a (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: remove select SND_HDA_DSP_LOADER (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: Intel: boards: Add CML m/c using RT1011 and RT5682 (Jaroslav Kysela) [1797509]
+- [sound] ALSA: ASoC: compress: fix unsigned integer overflow check (Jaroslav Kysela) [1797509]
+- [sound] ALSA: Revert "ALSA: usb-audio: set the interface format after resume on Dell WD19" (Jaroslav Kysela) [1797509]
+
+* Fri May 22 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-203.el8]
+- [crypto] crypto: ccp - use file mode for sev ioctl permissions (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Cleanup sp_dev_master in psp_dev_destroy() (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Cleanup misc_dev on sev_exit() (Vladis Dronov) [1765717]
+- [crypto] crypto: remove CRYPTO_TFM_RES_BAD_KEY_LEN (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - move SEV vdata to a dedicated data structure (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - create a generic psp-dev file (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - rename psp-dev files to sev-dev (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - set max RSA modulus size for v3 platform devices as well (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - add SEV command privilege separation (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - fix uninitialized list head (Vladis Dronov) [1765717]
+- [crypto] crypto: user - fix memory leak in crypto_report (Vladis Dronov) [1829808 1765717] {CVE-2019-19062}
+- [crypto] crypto: ccp - Release all allocated memory if sha type is invalid (Vladis Dronov) [1825134 1765717] {CVE-2019-18808}
+- [crypto] crypto: ccp - invoke fallback for XTS ciphertext stealing (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Remove unnecessary linux/pci.h include (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Include DMA declarations explicitly (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - use devm_platform_ioremap_resource() to simplify code (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Clean up and exit correctly on allocation failure (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Log an error message when ccp-crypto fails to load (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Ignore tag length when decrypting GCM ciphertext (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Add support for valid authsize values less than 16 (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Fix oops by properly managing allocated structures (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Reduce maximum stack usage (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Include the module name in system log messages (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Add a module parameter to control registration for DMA (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - module parameter to limit the number of enabled CCPs (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Add a module parameter to specify a queue count (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Make CCP debugfs support optional (Vladis Dronov) [1765717]
+- [crypto] crypto: ctr - add helper for performing a CTR encryption walk (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - memset structure fields to zero before reuse (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Fix 3DES complaint from ccp-crypto module (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - fix AES CFB error exposed by new test vectors (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - AES CFB mode is a stream cipher (Vladis Dronov) [1765717]
+- [crypto] treewide: Add SPDX license identifier - Makefile/Kconfig (Vladis Dronov) [1765717]
+- [crypto] crypto: shash - remove shash_desc::flags (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - no need to check return value of debugfs_create functions (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Remove forward declaration (Vladis Dronov) [1765717]
+- [crypto] crypto: ccp - Remove VLA usage of skcipher (Vladis Dronov) [1765717]
+- [crypto] crypto: skcipher - Introduce crypto_sync_skcipher (Vladis Dronov) [1765717]
+- [infiniband] IB/mlx4: Test return value of calls to ib_get_cached_pkey (Alaa Hleihel) [1767259]
+- [netdrv] net/mlx4_core: Fix use of ENOSPC around mlx4_counter_alloc() (Alaa Hleihel) [1767259]
+- [infiniband] RDMA/mlx4: Initialize ib_spec on the stack (Alaa Hleihel) [1767259]
+- [powerpc] powerpc/powernv: Re-enable imc trace-mode in kernel (Desnes Augusto Nunes do Rosario) [1725201]
+- [powerpc] powerpc/perf: Implement a global lock to avoid races between trace, core and thread imc events (Desnes Augusto Nunes do Rosario) [1725201]
+- [powerpc] powerpc/perf: Return accordingly on invalid chip-id in (Desnes Augusto Nunes do Rosario) [1725201]
+- [powerpc] powerpc/perf: Remove PM_BR_CMPL_ALT from power9 event list (Desnes Augusto Nunes do Rosario) [1725201]
+- [powerpc] powerpc/perf: Add generic compat mode pmu driver (Desnes Augusto Nunes do Rosario) [1725201]
+- [powerpc] powerpc/perf: init pmu from core-book3s (Desnes Augusto Nunes do Rosario) [1725201]
+- [fs] NFS: Fix fscache super_cookie index_key from changing after umount (Dave Wysochanski) [1790933]
+- [fs] NFSv4: Fix fscache cookie aux_data to ensure change_attr is included (Dave Wysochanski) [1793560]
+- [fs] nfs: fscache: use timespec64 in inode auxdata (Dave Wysochanski) [1793560]
+- [documentation] i2c: replace i2c_new_probed_device with an ERR_PTR variant (David Arcari) [1835245]
+- [documentation] docs: stop suggesting strlcpy (David Arcari) [1835245]
+- [scsi] scsi: hpsa: Update driver version (Joseph Szczypek) [1815628]
+- [scsi] scsi: hpsa: correct race condition in offload enabled (Joseph Szczypek) [1815628]
+- [kernel] audit: log audit netlink multicast bind and unbind (Richard Guy Briggs) [1829622]
+- [ipc] ipc/mqueue.c: change __do_notify() to bypass check_kill_permission() (Oleg Nesterov) [1808931]
+- [scsi] scsi: megaraid_sas: Update driver version to 07.714.04.00-rc1 (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: TM command refire leads to controller firmware crash (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Replace undefined MFI_BIG_ENDIAN macro with __BIG_ENDIAN_BITFIELD macro (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Remove IO buffer hole detection logic (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Limit device queue depth to controller queue depth (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid: Use true, false for bool variables (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid: make two symbols static in megaraid_sas_base.c (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid: make some symbols static in megaraid_sas_fusion.c (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid: make some symbols static in megaraid_sas_fp.c (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Use scnprintf() for avoiding potential buffer overflow (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: silence a warning (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: fix indentation issue (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Update driver version to 07.713.01.00-rc1 (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Use Block layer API to check SCSI device in-flight IO requests (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Limit the number of retries for the IOCTLs causing firmware fault (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Do not initiate OCR if controller is not in ready state (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Re-Define enum DCMD_RETURN_STATUS (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Do not set HBA Operational if FW is not in operational state (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Do not kill HBA if JBOD Seqence map or RAID map is disabled (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Do not kill host bus adapter, if adapter is already dead (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Update optimal queue depth for SAS and NVMe devices (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Set no_write_same only for Virtual Disk (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Reset adapter if FW is not in READY state after device resume (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Make poll_aen_lock static (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: remove unused variables 'debugBlk', 'fusion' (Tomas Henzl) [1791041]
+- [scsi] scsi: megaraid_sas: Unique names for MSI-X vectors (Tomas Henzl) [1791041]
+
+* Wed May 20 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-202.el8]
+- [crypto] crypto: drbg - fix error return code in drbg_alloc_state() (Vladis Dronov) [1822458]
+- [fs] fs: call fsnotify_sb_delete after evict_inodes (Jay Shin) [1834741]
+- [fs] fs: avoid softlockups in s_inodes iterators (Jay Shin) [1834741]
+- [fs] fs/drop_caches.c: avoid softlockups in drop_pagecache_sb() (Jay Shin) [1834741]
+- [net] net/smc: remove set but not used variables 'del_llc, del_llc_resp' (Philipp Rudo) [1725886]
+- [net] net/smc: remove unused inline function smc_curs_read (Philipp Rudo) [1725886]
+- [net] net/smc: log important pnetid and state change events (Philipp Rudo) [1725886]
+- [net] net/smc: save SMC-R peer link_uid (Philipp Rudo) [1725886]
+- [net] net/smc: create improved SMC-R link_uid (Philipp Rudo) [1725886]
+- [net] net/smc: improve termination processing (Philipp Rudo) [1725886]
+- [net] net/smc: add termination reason and handle LLC protocol violation (Philipp Rudo) [1725886]
+- [net] net/smc: asymmetric link tagging (Philipp Rudo) [1725886]
+- [net] net/smc: assign link to a new connection (Philipp Rudo) [1725886]
+- [net] net/smc: send DELETE_LINK, ALL message and wait for send to complete (Philipp Rudo) [1725886]
+- [net] net/smc: wait for departure of an IB message (Philipp Rudo) [1725886]
+- [net] net/smc: handle incoming CDC validation message (Philipp Rudo) [1725886]
+- [net] net/smc: send failover validation message (Philipp Rudo) [1725886]
+- [net] net/smc: switch connections to alternate link (Philipp Rudo) [1725886]
+- [net] net/smc: save state of last sent CDC message (Philipp Rudo) [1725886]
+- [net] net/smc: enqueue local LLC messages (Philipp Rudo) [1725886]
+- [net] net/smc: delete link processing as SMC server (Philipp Rudo) [1725886]
+- [net] net/smc: delete link processing as SMC client (Philipp Rudo) [1725886]
+- [net] net/smc: llc_del_link_work and use the LLC flow for delete link (Philipp Rudo) [1725886]
+- [net] net/smc: delete an asymmetric link as SMC server (Philipp Rudo) [1725886]
+- [net] net/smc: final part of add link processing as SMC server (Philipp Rudo) [1725886]
+- [net] net/smc: rkey processing for a new link as SMC server (Philipp Rudo) [1725886]
+- [net] net/smc: first part of add link processing as SMC server (Philipp Rudo) [1725886]
+- [net] net/smc: final part of add link processing as SMC client (Philipp Rudo) [1725886]
+- [net] net/smc: rkey processing for a new link as SMC client (Philipp Rudo) [1725886]
+- [net] net/smc: first part of add link processing as SMC client (Philipp Rudo) [1725886]
+- [net] smc: Remove unused function (Philipp Rudo) [1725886]
+- [net] net/smc: llc_add_link_work to handle ADD_LINK LLC requests (Philipp Rudo) [1725886]
+- [net] net/smc: allocate index for a new link (Philipp Rudo) [1725886]
+- [net] net/smc: introduce smc_pnet_find_alt_roce() (Philipp Rudo) [1725886]
+- [net] net/smc: remove DELETE LINK processing from smc_core.c (Philipp Rudo) [1725886]
+- [net] net/smc: take link down instead of terminating the link group (Philipp Rudo) [1725886]
+- [net] net/smc: add smcr_port_err() and smcr_link_down() processing (Philipp Rudo) [1725886]
+- [net] net/smc: add smcr_port_add() and smcr_link_up() processing (Philipp Rudo) [1725886]
+- [net] net/smc: remember PNETID of IB device for later device matching (Philipp Rudo) [1725886]
+- [net] net/smc: mutex to protect the lgr against parallel reconfigurations (Philipp Rudo) [1725886]
+- [net] net/smc: extend smc_llc_send_add_link() and smc_llc_send_delete_link() (Philipp Rudo) [1725886]
+- [net] net/smc: map and register buffers for a new link (Philipp Rudo) [1725886]
+- [net] net/smc: unmapping of buffers to support multiple links (Philipp Rudo) [1725886]
+- [net] net/smc: multiple link support for rmb buffer registration (Philipp Rudo) [1725886]
+- [net] net/smc: remove obsolete link state DELETING (Philipp Rudo) [1725886]
+- [net] net/smc: remove handling of CONFIRM_RKEY_CONTINUE (Philipp Rudo) [1725886]
+- [net] net/smc: adapt SMC remote DELETE_RKEY processing to use the LLC flow (Philipp Rudo) [1725886]
+- [net] net/smc: adapt SMC remote CONFIRM_RKEY processing to use the LLC flow (Philipp Rudo) [1725886]
+- [net] net/smc: new smc_rtoken_set functions for multiple link support (Philipp Rudo) [1725886]
+- [net] net/smc: move the TEST_LINK response processing into event handler (Philipp Rudo) [1725886]
+- [net] net/smc: multiple link support and LLC flow for smc_llc_do_delete_rkey (Philipp Rudo) [1725886]
+- [net] net/smc: multiple link support and LLC flow for smc_llc_do_confirm_rkey (Philipp Rudo) [1725886]
+- [net] net/smc: adapt SMC client code to use the LLC flow (Philipp Rudo) [1725886]
+- [net] net/smc: adapt SMC server code to use the LLC flow (Philipp Rudo) [1725886]
+- [net] net/smc: add logic to evaluate CONFIRM_LINK messages to LLC layer (Philipp Rudo) [1725886]
+- [net] net/smc: introduce link group type (Philipp Rudo) [1725886]
+- [net] net/smc: enqueue all received LLC messages (Philipp Rudo) [1725886]
+- [net] net/smc: add event-based llc_flow framework (Philipp Rudo) [1725886]
+- [net] net/smc: move llc layer related init and clear into smc_llc.c (Philipp Rudo) [1725886]
+- [net] net/smc: use mutex instead of rwlock_t to protect buffers (Philipp Rudo) [1725886]
+- [net] net/smc: process llc responses in tasklet context (Philipp Rudo) [1725886]
+- [net] net/smc: use worker to process incoming llc messages (Philipp Rudo) [1725886]
+- [net] net/smc: simplify link deactivation (Philipp Rudo) [1725886]
+- [net] net/smc: move testlink work to system work queue (Philipp Rudo) [1725886]
+- [net] net/smc: add new link state and related helpers (Philipp Rudo) [1725886]
+- [net] net/smc: multi-link support for smc_rmb_rtoken_handling() (Philipp Rudo) [1725886]
+- [net] net/smc: convert static link ID instances to support multiple links (Philipp Rudo) [1725886]
+- [net] net/smc: convert static link ID to dynamic references (Philipp Rudo) [1725886]
+- [net] net/smc: introduce link_idx for link group array (Philipp Rudo) [1725886]
+- [net] net/smc: separate function for link initialization (Philipp Rudo) [1725886]
+- [net] net/smc: rework pnet table to support SMC-R failover (Philipp Rudo) [1725886]
+- [net] net/smc: improve peer ID in CLC decline for SMC-R (Philipp Rudo) [1725886]
+- [net] net/smc: rework peer ID handling (Philipp Rudo) [1725886]
+- [net] net/smc: reduce port_event scheduling (Philipp Rudo) [1725886]
+- [net] net/smc: simplify normal link termination (Philipp Rudo) [1725886]
+- [net] net/smc: remove unused parameter of smc_lgr_terminate() (Philipp Rudo) [1725886]
+- [net] net/smc: do not delete lgr from list twice (Philipp Rudo) [1725886]
+- [net] net/smc: use termination worker under send_lock (Philipp Rudo) [1725886]
+- [net] net/smc: improve smc_lgr_cleanup() (Philipp Rudo) [1725886]
+- [pci] PCI: Add new PCI_VPD_RO_KEYWORD_SERIALNO macro (Jonathan Toppins) [1834900]
+- [pci] PCI: Introduce pci_get_dsn (Jonathan Toppins) [1834900]
+- [scsi] scsi: lpfc: Remove redundant initialization to variable rc (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: Update lpfc version to 12.8.0.1 (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: Fix MDS Diagnostic Enablement definition (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: Fix noderef and address space warnings (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: Remove unnecessary lockdep_assert_held calls (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: Change default queue allocation for reduced memory consumption (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: Fix negation of else clause in lpfc_prep_node_fc4type (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: Remove re-binding of nvme rport during registration (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: Maintain atomic consistency of queue_claimed flag (Dick Kennedy) [1835310]
+- [scsi] scsi: lpfc: remove duplicate unloading checks (Dick Kennedy) [1835310]
+- [scsi] scsi: qedf: Get dev info after updating the params (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Fix crash when MFW calls for protocol stats while function is still probing (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Add schedule recovery handler (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Implement callback for bw_update (Nilesh Javali) [1792113]
+- [netdrv] scsi: qed: Send BW update notifications to the protocol drivers (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Honor status qualifier in FCP_RSP per spec (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Acquire rport_lock for resetting the delay_timestamp (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Increase the upper limit of retry delay (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Keep track of num of pending flogi (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Simplify mutex_unlock() usage (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Add port_id getter (Nilesh Javali) [1792113]
+- [scsi] scsi: qedf: Remove always false 'tmp_prio < 0' statement (Nilesh Javali) [1792113]
+- [include] NFSv4.1: fix handling of backchannel binding in BIND_CONN_TO_SESSION (Steve Dickson) [1828592]
+- [edac] EDAC/amd64: Drop some family checks for newer systems (Aristeu Rozanski) [1779822 1735611]
+- [edac] EDAC/amd64: Add family ops for Family 19h Models 00h-0Fh (Aristeu Rozanski) [1779822 1735611]
+- [x86] x86/amd_nb: Add Family 19h PCI IDs (Aristeu Rozanski) [1779822 1735611]
+- [edac] EDAC/mce_amd: Always load on SMCA systems (Aristeu Rozanski) [1779822 1735611]
+- [x86] x86/MCE/AMD, EDAC/mce_amd: Add new Load Store unit McaType (Aristeu Rozanski) [1779822 1735611]
+- [edac] EDAC/amd64: Save max number of controllers to family type (Aristeu Rozanski) [1779822 1735611]
+- [edac] EDAC/amd64: Gather hardware information early (Aristeu Rozanski) [1779822 1735611]
+- [edac] EDAC/amd64: Make struct amd64_family_type global (Aristeu Rozanski) [1779822 1735611]
+- [fs] nfsd: Add tracepoints for update of the expkey and export cache entries (Dave Wysochanski) [1775408]
+- [fs] nfsd: Add tracepoints for exp_find_key() and exp_get_by_name() (Dave Wysochanski) [1775408]
+- [fs] nfsd: Add tracing to nfsd_set_fh_dentry() (Dave Wysochanski) [1775408]
+- [net] SUNRPC: Clean up: Replace dprintk and BUG_ON call sites in svcauth_gss.c (Dave Wysochanski) [1775408]
+- [net] svcrdma: Create a generic tracing class for displaying xdr_buf layout (Dave Wysochanski) [1775408]
+- [net] SUNRPC: Capture completion of all RPC tasks (Dave Wysochanski) [1775408]
+- [net] SUNRPC: Trace gssproxy upcall results (Dave Wysochanski) [1775408]
+- [trace] fix null pointer deref in tracepoints in back channel (Dave Wysochanski) [1775408]
+- [fs] NFS: Clean up generic file commit tracepoint (Dave Wysochanski) [1775408]
+- [fs] NFS: Clean up generic writeback tracepoints (Dave Wysochanski) [1775408]
+- [fs] NFS: Clean up generic file read tracepoints (Dave Wysochanski) [1775408]
+- [fs] pNFS/flexfiles: Add tracing for layout errors (Dave Wysochanski) [1775408]
+- [fs] pNFS/flexfiles: Record resend attempts on I/O failure (Dave Wysochanski) [1775408]
+- [fs] NFS: Fix fix of show_nfs_errors (Dave Wysochanski) [1775408]
+- [fs] NFSv4: Improve read/write/commit tracing (Dave Wysochanski) [1775408]
+- [fs] NFS4: Report callback authentication errors (Dave Wysochanski) [1775408]
+- [fs] NFS4: Trace lock reclaims (Dave Wysochanski) [1775408]
+- [fs] NFS4: Trace state recovery operation (Dave Wysochanski) [1775408]
+- [fs] NFS: Add a tracepoint in nfs_fh_to_dentry() (Dave Wysochanski) [1775408]
+- [fs] pnfs/flexfiles: Add tracepoints for detecting pnfs fallback to MDS (Dave Wysochanski) [1775408]
+- [fs] NFS: Record task, client ID, and XID in xdr_status trace points (Dave Wysochanski) [1775408]
+- [fs] NFS: Display symbolic status code names in trace log (Dave Wysochanski) [1775408]
+- [fs] NFS: Fix show_nfs_errors macros again (Dave Wysochanski) [1775408]
+- [fs] NFS4: Add a trace event to record invalid CB sequence IDs (Dave Wysochanski) [1775408]
+- [media] media: v4l: event: Add subscription to list before calling "add" operation (Jarod Wilson) [1828805] {CVE-2019-9458}
+- [media] media: v4l: event: Prevent freeing event subscriptions while accessed (Jarod Wilson) [1828805] {CVE-2019-9458}
+- [vhost] vhost: Check docket sk_family instead of call getname (Vladis Dronov) [1823301] {CVE-2020-10942}
+- [documentation] kvm: ppc: book3s hv: Add a capability for enabling secure guests (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: H_SVM_INIT_START must call UV_RETURN (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Check caller of H_SVM_* Hcalls (David Gibson) [1814624]
+- [powerpc] Introduce the MSR_S bit (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Skip kvmppc_uvmem_free if Ultravisor is not supported (David Gibson) [1814624]
+- [powerpc] kvm: ppc: Kill kvmppc_ops::mmu_destroy() and kvmppc_mmu_destroy() (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s pr: Move kvmppc_mmu_init() into PR KVM (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Treat TM-related invalid form instructions on P9 like the valid ones (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Use RADIX_PTE_INDEX_SIZE in Radix MMU code (David Gibson) [1814624]
+- [powerpc] kvm: no need to check return value of debugfs_create functions (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s pr: Fix -Werror=return-type build failure (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Release lock on page-out failure path (David Gibson) [1814624]
+- [powerpc] mm: Remove kvm radix prefetch workaround for Power9 DD2.2 (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: xive: Fix typo in comment (David Gibson) [1814624]
+- [documentation] kvm: ppc: book3s hv: Implement H_SVM_INIT_ABORT hcall (David Gibson) [1814624]
+- [powerpc] kvm: ppc: Add skip_page_out parameter to uvmem functions (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3e: Replace current->mm by kvm->mm (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s: Replace current->mm by kvm->mm (David Gibson) [1814624]
+- [mm] add account_locked_vm utility function (David Gibson) [1814624]
+- [powerpc] kvm: ppc: Remove set but not used variable 'ra', 'rs', 'rt' (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Don't do ultravisor calls on systems without ultravisor (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Support reset of secure guest (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Handle memory plug/unplug to secure VM (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Radix changes for secure guest (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Shared pages support for secure guests (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Support for running secure guests (David Gibson) [1814624]
+- [powerpc] pseries/svm: Unshare all pages before kexecing a new kernel (David Gibson) [1814624]
+- [powerpc] pseries/svm: Use shared memory for LPPACA structures (David Gibson) [1814624]
+- [powerpc] pseries: Add and use LPPACA_SIZE constant (David Gibson) [1814624]
+- [powerpc] pseries/svm: Add helpers for UV_SHARE_PAGE and UV_UNSHARE_PAGE (David Gibson) [1814624]
+- [powerpc] prom_init: Add the ESM call to prom_init (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Reject mflags=2 (LPCR[AIL]=2) ADDR_TRANS_MODE mode (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Implement LPCR[AIL]=3 mode for injected interrupts (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Reuse kvmppc_inject_interrupt for async guest delivery (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s: Replace reset_msr mmu op with inject_interrupt arch op (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s: Define and use SRR1_MSR_BITS (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: xive: Show VP id in debugfs (David Gibson) [1814624]
+- [powerpc] kvm: ppc: e500: Replace current->mm by kvm->mm (David Gibson) [1814624]
+- [powerpc] kvm: ppc: Report single stepping capability (David Gibson) [1814624]
+- [powerpc] kvm: Fix kvmppc_vcore->in_guest value in kvmhv_switch_to_host (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: use smp_mb() when setting/clearing host_ipi flag (David Gibson) [1814624]
+- [powerpc] 64s: Set reserved PCR bits (David Gibson) [1814624]
+- [powerpc] Fix definition of PCR bits to work with old binutils (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s: Invalidate multiple TCEs at once (David Gibson) [1814624]
+- [powerpc] powernv/ioda: Split out TCE invalidation from TCE updates (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Don't lose pending doorbell request on migration on P9 (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Check for MMU ready on piggybacked virtual cores (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Define usage types for rmap array in guest memslot (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Don't push XIVE context when not using XIVE device (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s hv: Fix race in re-enabling XIVE escalation interrupts (David Gibson) [1814624]
+- [powerpc] kvm: ppc: book3s pr: Fix software breakpoints (David Gibson) [1814624]
+- [powerpc] kvm: ppc: Remove leftover comment from emulate_loadstore.c (David Gibson) [1814624]
+- [x86] hyperv: Properly suspend/resume reenlightenment notifications (Mohammed Gamal) [1815475]
+- [kernel] pm: hibernate: Freeze kernel threads in software_resume() (Mohammed Gamal) [1815475]
+- [kernel] pm: hibernate: Propagate the return value of hibernation_restore() (Mohammed Gamal) [1815475]
+- [x86] hyperv: Suspend/resume the VP assist page for hibernation (Mohammed Gamal) [1815475]
+- [hv] hv: vmbus: Fix Suspend-to-Idle for Generation-2 VM (Mohammed Gamal) [1815475]
+- [net] hv_sock: Add the support of hibernation (Mohammed Gamal) [1815475]
+- [video] hyperv_fb: Fix hibernation for the deferred IO feature (Mohammed Gamal) [1815475]
+- [video] hyperv_fb: Add the support of hibernation (Mohammed Gamal) [1815475]
+- [scsi] storvsc: Add the support of hibernation (Mohammed Gamal) [1815475]
+- [netdrv] hv_netvsc: Add the support of hibernation (Mohammed Gamal) [1815475]
+- [pci] hv: Change pci_protocol_version to per-hbus (Mohammed Gamal) [1815475]
+- [pci] hv: Add hibernation support (Mohammed Gamal) [1815475]
+- [input] hyperv-keyboard: Add the support of hibernation (Mohammed Gamal) [1815475]
+- [hid] hyperv: NULL check before some freeing functions is not needed (Mohammed Gamal) [1815475]
+- [hid] hyperv: Add the support of hibernation (Mohammed Gamal) [1815475]
+- [clocksource] hyper-v: Suspend/resume Hyper-V clocksource for hibernation (Mohammed Gamal) [1815475]
+- [x86] hyperv: Suspend/resume the hypercall page for hibernation (Mohammed Gamal) [1815475]
+- [x86] hyperv: Implement hv_is_hibernation_supported() (Mohammed Gamal) [1815475]
+- [hv] hv_utils: Add the support of hibernation (Mohammed Gamal) [1815475]
+- [hv] hv_utils: Support host-initiated hibernation request (Mohammed Gamal) [1815475]
+- [hv] hv_utils: Support host-initiated restart request (Mohammed Gamal) [1815475]
+- [hv] hv_balloon: Add the support of hibernation (Mohammed Gamal) [1815475]
+- [hv] hv: vmbus: Fix harmless building warnings without CONFIG_PM_SLEEP (Mohammed Gamal) [1815475]
+- [hv] hv: vmbus: Resume after fixing up old primary channels (Mohammed Gamal) [1815475]
+- [hv] hv: vmbus: Suspend after cleaning up hv_sock and sub channels (Mohammed Gamal) [1815475]
+- [hv] hv: vmbus: Clean up hv_sock channels by force upon suspend (Mohammed Gamal) [1815475]
+- [hv] hv: vmbus: Suspend/resume the vmbus itself for hibernation (Mohammed Gamal) [1815475]
+- [hv] hv: vmbus: Ignore the offers when resuming from hibernation (Mohammed Gamal) [1815475]
+- [hv] hv: vmbus: Implement suspend/resume for VSC drivers for hibernation (Mohammed Gamal) [1815475]
+- [net] ipv4: really enforce backoff for redirects (Paolo Abeni) [1834184]
+- [net] netfilter: nat: never update the UDP checksum when it's 0 (Guillaume Nault) [1794714]
+- [net] sched: allow flower to match erspan options (Xin Long) [1830482]
+- [net] sched: allow flower to match vxlan options (Xin Long) [1830482]
+- [net] sched: add erspan option support to act_tunnel_key (Xin Long) [1830482]
+- [net] sched: add vxlan option support to act_tunnel_key (Xin Long) [1830482]
+- [netdrv] netdevsim: disable devlink reload when resources are being used (Ivan Vecera) [1829778]
+- [netdrv] netdevsim: fix using uninitialized resources (Ivan Vecera) [1829778]
+- [netdrv] drivers/net: netdevsim depends on INET (Ivan Vecera) [1829778]
+- [netdrv] netdevsim: fix nsim_fib6_rt_create() error path (Ivan Vecera) [1829778]
+- [tools] selftests: netdevsim: Add test for FIB offload API (Ivan Vecera) [1829778]
+- [tools] selftests: forwarding: Add helpers and tests for FIB offload (Ivan Vecera) [1829778]
+- [tools] selftests: mlxsw: Add a self-test for port-default priority (Ivan Vecera) [1829778]
+- [netdrv] netdevsim: fib: Add dummy implementation for FIB offload (Ivan Vecera) [1829778]
+- [net] ipv6: Add "offload" and "trap" indications to routes (Ivan Vecera) [1829778]
+- [net] ipv4: Add "offload" and "trap" indications to routes (Ivan Vecera) [1829778]
+- [net] ipv4: Encapsulate function arguments in a struct (Ivan Vecera) [1829778]
+- [net] ipv4: Replace route in list before notifying (Ivan Vecera) [1829778]
+- [tools] selftests: netdevsim: Extend devlink trap test to include flow action cookie (Petr Oros) [1823745]
+- [netdrv] netdevsim: add ACL trap reporting cookie as a metadata (Petr Oros) [1823745]
+- [net] devlink: extend devlink_trap_report() to accept cookie and pass (Petr Oros) [1823745]
+- [net] drop_monitor: extend by passing cookie from driver (Petr Oros) [1823745]
+- [net] devlink: add trap metadata type for cookie (Petr Oros) [1823745]
+- [net] devlink: add ACL generic packet traps (Petr Oros) [1823745]
+- [net] devlink: Add overlay source MAC is multicast trap (Petr Oros) [1823745]
+- [net] devlink: Add tunnel generic packet traps (Petr Oros) [1823745]
+- [net] devlink: Add non-routable packet trap (Petr Oros) [1823745]
+- [netdrv] mlxsw: spectrum_router: Prevent incorrect replacement of local table routes (Ivan Vecera) [1828994]
+- [netdrv] mlxsw: spectrum_router: Remove FIB entry list from FIB node (Ivan Vecera) [1828994]
+- [netdrv] mlxsw: spectrum_router: Consolidate identical functions (Ivan Vecera) [1828994]
+- [netdrv] mlxsw: spectrum_router: Make route creation and destruction symmetric (Ivan Vecera) [1828994]
+- [netdrv] mlxsw: spectrum_router: Eliminate dead code (Ivan Vecera) [1828994]
+- [netdrv] mlxsw: spectrum_router: Remove unnecessary checks (Ivan Vecera) [1828994]
+- [net] ipv6: Remove old route notifications and convert listeners (Ivan Vecera) [1828994]
+- [netdrv] mlxsw: spectrum_router: Start using new IPv6 route notifications (Ivan Vecera) [1828994]
+- [net] ipv6: Handle multipath route deletion notification (Ivan Vecera) [1828994]
+- [net] ipv6: Handle route deletion notification (Ivan Vecera) [1828994]
+- [net] ipv6: Only Replay routes of interest to new listeners (Ivan Vecera) [1828994]
+- [net] ipv6: Notify multipath route if should be offloaded (Ivan Vecera) [1828994]
+- [net] ipv6: Notify route if replacing currently offloaded one (Ivan Vecera) [1828994]
+- [net] ipv6: Notify newly added route if should be offloaded (Ivan Vecera) [1828994]
+- [include] net: fib_notifier: Add temporary events to the FIB notification chain (Ivan Vecera) [1828994]
+- [net] ipv4: Remove old route notifications and convert listeners (Ivan Vecera) [1828994]
+- [netdrv] mlxsw: spectrum_router: Start using new IPv4 route notifications (Ivan Vecera) [1828994]
+- [netdrv] mlxsw: spectrum_router: Don't rely on missing extack to symbolize dump (Ivan Vecera) [1828994]
+- [net] ipv4: Only Replay routes of interest to new listeners (Ivan Vecera) [1828994]
+- [net] ipv4: Handle route deletion notification during flush (Ivan Vecera) [1828994]
+- [net] ipv4: Handle route deletion notification (Ivan Vecera) [1828994]
+- [net] ipv4: Notify newly added route if should be offloaded (Ivan Vecera) [1828994]
+- [net] ipv4: Notify route if replacing currently offloaded one (Ivan Vecera) [1828994]
+- [net] ipv4: Extend FIB alias find function (Ivan Vecera) [1828994]
+- [net] ipv4: Notify route after insertion to the routing table (Ivan Vecera) [1828994]
+- [include] net: fib_notifier: Add temporary events to the FIB notification chain (Ivan Vecera) [1828994]
+- [net] vti6: Fix memory leak of skb if input policy check fails (Xin Long) [1829720]
+- [net] xfrm: policy: Fix doulbe free in xfrm_policy_timer (Xin Long) [1829720]
+- [net] xfrm: add the missing verify_sec_ctx_len check in xfrm_add_acquire (Xin Long) [1829720]
+- [net] xfrm: fix uctx len check in verify_sec_ctx_len (Xin Long) [1829720]
+- [net] xfrm: handle NETDEV_UNREGISTER for xfrm device (Xin Long) [1829720]
+- [net] xfrm: interface: do not confirm neighbor when do pmtu update (Xin Long) [1829720]
+- [documentation] xfrm: update doc about xfrm[46]_gc_thresh (Xin Long) [1829720]
+- [documentation] devlink: remove trigger command from devlink-region.rst (Petr Oros) [1822570]
+- [include] devlink: promote "fw.bundle_id" to a generic info version (Petr Oros) [1822570]
+- [documentation] devlink: document devlink info versions reported by bnxt_en driver (Petr Oros) [1822570]
+- [include] devlink: add macro for "fw.roce" (Petr Oros) [1822570]
+- [documentation] Fix typo in devlink documentation (Petr Oros) [1822570]
+- [documentation] devlink: fix typos in qed documentation (Petr Oros) [1822570]
+- [documentation] devlink: document region snapshot triggering from userspace (Petr Oros) [1822570]
+- [documentation] devlink: introduce devlink-dpipe.rst documentation file (Petr Oros) [1822570]
+- [documentation] devlink: add a devlink-resource.rst documentation file (Petr Oros) [1822570]
+- [netdrv] devlink: rename and expand devlink-trap-netdevsim.rst (Petr Oros) [1822570]
+- [documentation] devlink: add documentation for ionic device driver (Petr Oros) [1822570]
+- [documentation] devlink: add a file documenting devlink regions (Petr Oros) [1822570]
+- [documentation] devlink: add a driver-specific file for the qed driver (Petr Oros) [1822570]
+- [documentation] devlink: add parameter documentation for the mlx4 driver (Petr Oros) [1822570]
+- [documentation] devlink: document info versions for each driver (Petr Oros) [1822570]
+- [documentation] devlink: convert driver-specific files to reStructuredText (Petr Oros) [1822570]
+- [documentation] devlink: mention reloading in devlink-params.rst (Petr Oros) [1822570]
+- [documentation] devlink: add documentation for generic devlink parameters (Petr Oros) [1822570]
+- [documentation] devlink: convert devlink-params.txt to reStructuredText (Petr Oros) [1822570]
+- [documentation] devlink: rename devlink-info-versions.rst and add a header (Petr Oros) [1822570]
+- [documentation] devlink: convert devlink-health.txt to rst format (Petr Oros) [1822570]
+- [documentation] devlink: move devlink documentation to subfolder (Petr Oros) [1822570]
+- [include] devlink: add macro for "fw.psid" (Petr Oros) [1822570]
+- [netdrv] ethtool: Add support for 400Gbps (50Gbps per lane) link modes (Ivan Vecera) [1828942]
+- [netdrv] phy: Add support for 100BaseT1 and 1000BaseT1 (Ivan Vecera) [1828942]
+- [net] phy: improve definition of __ETHTOOL_LINK_MODE_MASK_NBITS (Ivan Vecera) [1828942]
+- [net] netfilter: nf_tables: simplify NLM_F_CREATE handling (Phil Sutter) [1812666]
+- [net] devlink: Add layer 3 generic packet exception traps (Petr Oros) [1828737]
+- [net] devlink: Add layer 3 generic packet traps (Petr Oros) [1828737]
+- [net] netfilter: nf_tables: fix infinite loop when expr is not available (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: autoload modules from the abort path (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: remove WARN and add NLA_STRING upper limits (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: store transaction list locally while requesting module (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: use-after-free in failing rule with bound set (Phil Sutter) [1757933]
+- [net] netfilter: nft_meta: skip EAGAIN if nft_meta_bridge is not a module (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: force module load in case select_ops() returns -EAGAIN (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: add nft_expr_type_request_module() (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: bogus EBUSY in helper removal from transaction (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: fix set double-free in abort path (Phil Sutter) [1757933]
+- [net] netfilter: nft_compat: don't use refcount_inc on newly allocated entry (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: unbind set in rule from commit path (Phil Sutter) [1757933]
+- [net] netfilter: nft_compat: destroy function must not have side effects (Phil Sutter) [1757933]
+- [net] netfilter: nft_compat: make lists per netns (Phil Sutter) [1757933]
+- [net] netfilter: nft_compat: use refcnt_t type for nft_xt reference count (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: fix suspicious RCU usage in nft_chain_stats_replace() (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: asynchronous release (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: split set destruction in deactivate and destroy phase (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: flow event notifier must use transaction mutex (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: use dedicated mutex to guard transactions (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: avoid global info storage (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: take module reference when starting a batch (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: make valid_genid callback mandatory (Phil Sutter) [1757933]
+- [net] netfilter: nf_tables: add and use helper for module autoload (Phil Sutter) [1757933]
+
+* Tue May 19 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-201.el8]
+- [kernel] sched: Fix missing bracket in membarrier_switch_mm from mismerge (Phil Auld) [1745111]
+- [fs] nfs: fix NULL deference in nfs4_get_valid_delegation ("J. Bruce Fields") [1831553]
+- [acpi] PCI/AER: Use only _OSC to determine AER ownership (Myron Stowe) [1712820]
+- [pci] PCI/EDR: Log only ACPI_NOTIFY_DISCONNECT_RECOVER events (Myron Stowe) [1712820]
+- [pci] PCI/AER: Rationalize error status register clearing (Myron Stowe) [1712820]
+- [pci] PCI/DPC: Add Error Disconnect Recover (EDR) support (Myron Stowe) [1712820]
+- [pci] PCI/DPC: Expose dpc_process_error(), dpc_reset_link() for use by EDR (Myron Stowe) [1712820]
+- [pci] PCI/AER: Add pci_aer_raw_clear_status() to unconditionally clear Error Status (Myron Stowe) [1712820]
+- [pci] PCI/DPC: Cache DPC capabilities in pci_init_capabilities() (Myron Stowe) [1712820]
+- [pci] PCI/ERR: Return status of pcie_do_recovery() (Myron Stowe) [1712820]
+- [pci] PCI/ERR: Remove service dependency in pcie_do_recovery() (Myron Stowe) [1712820]
+- [pci] PCI/DPC: Move DPC data into struct pci_dev (Myron Stowe) [1712820]
+- [pci] PCI/ERR: Update error status after reset_link() (Myron Stowe) [1712820]
+- [pci] PCI/ERR: Combine pci_channel_io_frozen cases (Myron Stowe) [1712820]
+- [pci] PCI/ASPM: Reduce severity of common clock config message (Myron Stowe) [1712820]
+- [pci] PCI/ASPM: Clear the correct bits when enabling L1 substates (Myron Stowe) [1712820]
+- [pci] PCI/PM: Print config space of devices before suspend (Myron Stowe) [1712820]
+- [pci] PCI/AER: Initialize aer_fifo (Myron Stowe) [1712820]
+- [pci] PCI/AER: Factor message prefixes with dev_fmt() (Myron Stowe) [1712820]
+- [pci] PCI/AER: Log which device prevents error recovery (Myron Stowe) [1712820]
+- [security] ima: Switch to ima_hash_algo for boot aggregate (Jerry Snitselaar) [1786441]
+- [mm] mm: mempolicy: require at least one nodeid for MPOL_PREFERRED (Rafael Aquini) [1834435] {CVE-2020-11565}
+- [tools] perf maps: Add missing unlock to maps__insert() error case (Michael Petlan) [1818838]
+- [tools] perf dso: Fix dso comparison (Michael Petlan) [1818838]
+- [tools] perf block-info: Fix wrong block address comparison in block_info__cmp() (Michael Petlan) [1818838]
+- [tools] libperf: Setup initial evlist::all_cpus value (Michael Petlan) [1818838]
+- [tools] perf report: Fix no libunwind compiled warning break s390 issue (Michael Petlan) [1818838]
+- [tools] perf hists: Fix variable name's inconsistency in hists__for_each() macro (Michael Petlan) [1818838]
+- [tools] perf map: Set kmap->kmaps backpointer for main kernel map chunks (Michael Petlan) [1818838]
+- [tools] perf report: Fix incorrectly added dimensions as switch perf data file (Michael Petlan) [1818838]
+- [tools] tools lib traceevent: Fix memory leakage in filter_event (Michael Petlan) [1818838]
+- [tools] perf vendor events s390: Remove name from L1D_RO_EXCL_WRITES description (Michael Petlan) [1818838]
+- [tools] perf vendor events s390: Fix counter long description for DTLB1_GPAGE_WRITES (Michael Petlan) [1818838]
+- [tools] libtraceevent: Allow custom libdir path (Michael Petlan) [1818838]
+- [tools] perf top: Do not bail out when perf_env__read_cpuid() returns ENOSYS (Michael Petlan) [1818838]
+- [tools] perf arch: Make the default get_cpuid() return compatible error (Michael Petlan) [1818838]
+- [tools] perf inject: Fix processing of ID index for injected instruction tracing (Michael Petlan) [1818838]
+- [tools] perf report: Bail out --mem-mode if mem info is not available (Michael Petlan) [1818838]
+- [tools] perf report: Make -F more strict like -s (Michael Petlan) [1818838]
+- [tools] perf report/top TUI: Replace pr_err() with ui__error() (Michael Petlan) [1818838]
+- [tools] libtraceevent: Copy pkg-config file to output folder when using O= (Michael Petlan) [1818838]
+- [tools] libtraceevent: Fix lib installation with O= (Michael Petlan) [1818838]
+- [tools] perf kvm: Clarify the 'perf kvm' -i and -o command line options (Michael Petlan) [1818838]
+- [tools] perf machine: Fill map_symbol->maps in append_inlines() to fix segfault (Michael Petlan) [1818838]
+- [tools] perf jit: Move test functionality in to a test (Michael Petlan) [1818838]
+- [tools] perf stat: Use affinity for enabling/disabling events (Michael Petlan) [1818838]
+- [tools] perf evsel: Add functions to enable/disable for a specific CPU (Michael Petlan) [1818838]
+- [tools] perf stat: Use affinity for reading (Michael Petlan) [1818838]
+- [tools] perf stat: Use affinity for opening events (Michael Petlan) [1818838]
+- [tools] perf stat: Factor out open error handling (Michael Petlan) [1818838]
+- [tools] perf stat: Use affinity for closing file descriptors (Michael Petlan) [1818838]
+- [tools] perf evsel: Add functions to close evsel on a CPU (Michael Petlan) [1818838]
+- [tools] perf evsel: Add iterator to iterate over events ordered by CPU (Michael Petlan) [1818838]
+- [tools] perf evlist: Maintain evlist->all_cpus (Michael Petlan) [1818838]
+- [tools] perf cpumap: Maintain cpumaps ordered and without dups (Michael Petlan) [1818838]
+- [tools] perf script: Fix brstackinsn for AUXTRACE (Michael Petlan) [1818838]
+- [tools] perf affinity: Add infrastructure to save/restore affinity (Michael Petlan) [1818838]
+- [tools] perf pmu: Use file system cache to optimize sysfs access (Michael Petlan) [1818838]
+- [tools] perf regs: Make perf_reg_name() return "unknown" instead of NULL (Michael Petlan) [1818838]
+- [tools] perf diff: Use llabs() with 64-bit values (Michael Petlan) [1818838]
+- [tools] perf diff: Use llabs() with 64-bit values (Michael Petlan) [1818838]
+- [tools] perf tests: Rename tests/map_groups.c to tests/maps.c (Michael Petlan) [1818838]
+- [tools] perf tests: Rename thread-mg-share to thread-maps-share (Michael Petlan) [1818838]
+- [tools] perf maps: Rename map_groups.h to maps.h (Michael Petlan) [1818838]
+- [tools] perf maps: Rename 'mg' variables to 'maps' (Michael Petlan) [1818838]
+- [tools] perf map_symbol: Rename ms->mg to ms->maps (Michael Petlan) [1818838]
+- [tools] perf addr_location: Rename al->mg to al->maps (Michael Petlan) [1818838]
+- [tools] perf thread: Rename thread->mg to thread->maps (Michael Petlan) [1818838]
+- [tools] perf maps: Merge 'struct maps' with 'struct map_groups' (Michael Petlan) [1818838]
+- [tools] x86/insn: perf tools: Add some more instructions to the new instructions test (Michael Petlan) [1818838]
+- [tools] perf map: Remove unused functions (Michael Petlan) [1818838]
+- [tools] perf map: Remove needless struct forward declarations (Michael Petlan) [1818838]
+- [tools] perf map: Ditch leftover map__reloc_vmlinux() prototype (Michael Petlan) [1818838]
+- [tools] perf script: Move map__fprintf_srccode() to near its only user (Michael Petlan) [1818838]
+- [tools] perf parse: Fix potential memory leak when handling tracepoint errors (Michael Petlan) [1818838]
+- [tools] libtraceevent: Fix memory leakage in copy_filter_type (Michael Petlan) [1818838]
+- [tools] libtraceevent: Fix header installation (Michael Petlan) [1818838]
+- [tools] perf intel-bts: Does not support AUX area sampling (Michael Petlan) [1818838]
+- [tools] perf intel-pt: Add support for decoding AUX area samples (Michael Petlan) [1818838]
+- [tools] perf intel-pt: Add support for recording AUX area samples (Michael Petlan) [1818838]
+- [tools] perf pmu: When using default config, record which bits of config were changed by the user (Michael Petlan) [1818838]
+- [tools] perf auxtrace: Add support for queuing AUX area samples (Michael Petlan) [1818838]
+- [tools] perf session: Add facility to peek at all events (Michael Petlan) [1818838]
+- [tools] perf auxtrace: Add support for dumping AUX area samples (Michael Petlan) [1818838]
+- [tools] perf inject: Cut AUX area samples (Michael Petlan) [1818838]
+- [tools] perf record: Add aux-sample-size config term (Michael Petlan) [1818838]
+- [tools] perf record: Add support for AUX area sampling (Michael Petlan) [1818838]
+- [tools] perf auxtrace: Add support for AUX area sample recording (Michael Petlan) [1818838]
+- [tools] perf auxtrace: Move perf_evsel__find_pmu() (Michael Petlan) [1818838]
+- [tools] perf record: Add a function to test for kernel support for AUX area sampling (Michael Petlan) [1818838]
+- [tools] perf tools: Add kernel AUX area sampling definitions (Michael Petlan) [1818838]
+- [tools] perf report: Jump to symbol source view from total cycles view (Michael Petlan) [1818838]
+- [tools] perf util: Move block TUI function to ui browsers (Michael Petlan) [1818838]
+- [tools] perf dso: Move dso_id from 'struct map' to 'struct dso' (Michael Petlan) [1818838]
+- [tools] perf dsos: Remove unused dsos__find() method (Michael Petlan) [1818838]
+- [tools] perf map: Move comparision of map's dso_id to a separate function (Michael Petlan) [1818838]
+- [tools] perf map: Pass a dso_id to map__new() (Michael Petlan) [1818838]
+- [tools] perf map: Move maj/min/ino/ino_generation to separate struct (Michael Petlan) [1818838]
+- [tools] perf parse: Report initial event parsing error (Michael Petlan) [1818838]
+- [tools] x86/insn: perf tools: Add some instructions to the new instructions test (Michael Petlan) [1818838]
+- [tools] perf map: Move seldom used ->flags field to second cacheline (Michael Petlan) [1818838]
+- [tools] perf map: Use bitmap for booleans (Michael Petlan) [1818838]
+- [tools] libtraceevent: Fix parsing of event o and X argument types (Michael Petlan) [1818838]
+- [tools] perf callchain: Fix segfault in thread__resolve_callchain_sample() (Michael Petlan) [1818838]
+- [tools] perf map_groups: Auto sort maps by name, if needed (Michael Petlan) [1818838]
+- [tools] perf machine: No need to check if kernel module maps pre-exist (Michael Petlan) [1818838]
+- [tools] perf record: No need to process the synthesized MMAP events twice (Michael Petlan) [1818838]
+- [tools] perf map: No need to adjust the long name of modules (Michael Petlan) [1818838]
+- [tools] perf map_groups: Add a front end cache for map lookups by name (Michael Petlan) [1818838]
+- [tools] perf maps: Do not use an rbtree to sort by map name (Michael Petlan) [1818838]
+- [tools] perf maps: Purge the entries from maps->names in __maps__purge() (Michael Petlan) [1818838]
+- [tools] perf vendor events power9: Fix commas so PMU event files are valid JSON (Michael Petlan) [1818838]
+- [tools] perf vendor events power8: Fix commas so PMU event files are valid JSON (Michael Petlan) [1818838]
+- [tools] perf vendor events arm64: Fix commas so PMU event files are valid JSON (Michael Petlan) [1818838]
+- [tools] perf parse: Use YYABORT to clear stack after failure, plugging leaks (Michael Petlan) [1818838]
+- [tools] perf tool: Provide an option to print perf_event_open args and return value (Michael Petlan) [1818838]
+- [tools] perf map: Remove ->groups from 'struct map' (Michael Petlan) [1818838]
+- [tools] perf map: Combine maps__fixup_overlappings with its only use (Michael Petlan) [1818838]
+- [tools] perf annotate: Stop using map->groups, use map_symbol->mg instead (Michael Petlan) [1818838]
+- [tools] perf tools: Add a 'struct map_groups' pointer to 'struct map_symbol' (Michael Petlan) [1818838]
+- [tools] perf symbols: Use kmaps(map)->machine when we know its a kernel map (Michael Petlan) [1818838]
+- [tools] pref tools: Make 'struct addr_map_symbol' contain 'struct map_symbol' (Michael Petlan) [1818838]
+- [tools] perf callchain: Use 'struct map_symbol' in 'struct callchain_cursor_node' (Michael Petlan) [1818838]
+- [tools] perf unwind: Use 'struct map_symbol' in 'struct unwind_entry' (Michael Petlan) [1818838]
+- [tools] perf annotate: Pass a 'map_symbol' in places receiving a pair of 'map' and 'symbol' pointers (Michael Petlan) [1818838]
+- [tools] perf tools: Add map_groups to 'struct addr_location' (Michael Petlan) [1818838]
+- [tools] perf map_groups: Pass the object to map_groups__find_ams() (Michael Petlan) [1818838]
+- [tools] perf symbols: Stop using map->groups, we can use kmaps instead (Michael Petlan) [1818838]
+- [tools] perf map: Use map->dso->kernel + map__kmaps() in map__kmaps() (Michael Petlan) [1818838]
+- [tools] perf report: Sort by sampled cycles percent per block for tui (Michael Petlan) [1818838]
+- [tools] perf report: Support --percent-limit for --total-cycles (Michael Petlan) [1818838]
+- [tools] perf report: Sort by sampled cycles percent per block for stdio (Michael Petlan) [1818838]
+- [tools] perf hist: Support block formats with compare/sort/display (Michael Petlan) [1818838]
+- [tools] perf hist: Count the total cycles of all samples (Michael Petlan) [1818838]
+- [tools] perf block: Cleanup and refactor block info functions (Michael Petlan) [1818838]
+- [tools] perf diff: Don't use hack to skip column length calculation (Michael Petlan) [1818838]
+- [tools] perf tests: Fix out of bounds memory access (Michael Petlan) [1818838]
+- [tools] perf record: Add support for limit perf output file size (Michael Petlan) [1818838]
+- [tools] perf annotate: Fix heap overflow (Michael Petlan) [1818838]
+- [tools] perf machine: Add kernel_dso() method (Michael Petlan) [1818838]
+- [tools] perf symbols: Remove needless checks for map->groups->machine (Michael Petlan) [1818838]
+- [tools] perf parse: Add a deep delete for parse event terms (Michael Petlan) [1818838]
+- [tools] perf parse: If pmu configuration fails free terms (Michael Petlan) [1818838]
+- [tools] perf parse: Before yyabort-ing free components (Michael Petlan) [1818838]
+- [tools] perf parse: Add destructors for parse event terms (Michael Petlan) [1818838]
+- [tools] perf parse: Ensure config and str in terms are unique (Michael Petlan) [1818838]
+- [tools] perf parse: Add parse events handle error (Michael Petlan) [1818838]
+- [tools] perf inject: Make --strip keep evsels (Michael Petlan) [1818838]
+- [tools] perf tools: Fix cross compile for ARM64 (Michael Petlan) [1818838]
+- [tools] perf stat: Add --per-node agregation support (Michael Petlan) [1818838]
+- [tools] perf env: Add perf_env__numa_node() (Michael Petlan) [1818838]
+- [tools] perf tools: Splice events onto evlist even on error (Michael Petlan) [1818838]
+- [tools] libsubcmd: Use -O0 with DEBUG=1 (Michael Petlan) [1818838]
+- [tools] libsubcmd: Move EXTRA_FLAGS to the end to allow overriding existing flags (Michael Petlan) [1818838]
+- [tools] perf map_groups: Introduce for_each_entry() and for_each_entry_safe() iterators (Michael Petlan) [1818838]
+- [tools] perf maps: Add for_each_entry()/_safe() iterators (Michael Petlan) [1818838]
+- [tools] perf map: Allow map__next() to receive a NULL arg (Michael Petlan) [1818838]
+- [tools] perf map: Check if the map still has some refcounts on exit (Michael Petlan) [1818838]
+- [tools] perf dso: Add dso__data_write_cache_addr() (Michael Petlan) [1818838]
+- [tools] perf dso: Refactor dso_cache__read() (Michael Petlan) [1818838]
+- [tools] perf auxtrace: Add auxtrace_cache__remove() (Michael Petlan) [1818838]
+- [tools] perf jevents: Fix resource leak in process_mapfile() and main() (Michael Petlan) [1818838]
+- [tools] perf kvm: Use evlist layer api when possible (Michael Petlan) [1818838]
+- [tools] perf tests: Fix a typo (Michael Petlan) [1818838]
+- [tools] perf tools: Avoid a malloc() for array events (Michael Petlan) [1818838]
+- [tools] perf tools: Move ALLOC_LIST into a function (Michael Petlan) [1818838]
+- [tools] perf evsel: Avoid close(-1) (Michael Petlan) [1818838]
+- [tools] perf evsel: Always preserve errno while cleaning up perf_event_open failures (Michael Petlan) [1818838]
+- [tools] perf cs-etm: Fix definition of macro TO_CS_QUEUE_NR (Michael Petlan) [1818838]
+- [tools] perf llvm: Make .o saving a debug message, not an info one (Michael Petlan) [1818838]
+- [tools] perf record: Put a copy of kcore into the perf.data directory (Michael Petlan) [1818838]
+- [tools] perf data: Support single perf.data file directory (Michael Petlan) [1818838]
+- [tools] perf session: Fix indent in perf_session__new()" (Michael Petlan) [1818838]
+- [tools] perf data: Rename directory "header" file to "data" (Michael Petlan) [1818838]
+- [tools] perf data: Move perf_dir_version into data.h (Michael Petlan) [1818838]
+- [tools] perf data: Correctly identify directory data files (Michael Petlan) [1818838]
+- [tools] perf trace: Use STUL_STRARRAY_FLAGS with mmap (Michael Petlan) [1818838]
+- [tools] perf trace: Wire up strarray__strtoul_flags() (Michael Petlan) [1818838]
+- [tools] libbeauty: Introduce strarray__strtoul_flags() (Michael Petlan) [1818838]
+- [tools] libbeauty: Make the mmap_flags strarray visible outside of its beautifier (Michael Petlan) [1818838]
+- [tools] perf trace: Use strtoul for the fcntl 'cmd' argument (Michael Petlan) [1818838]
+- [tools] libbeauty: Introduce syscall_arg__strtoul_strarrays() (Michael Petlan) [1818838]
+- [tools] libperf: Add pr_err() macro (Michael Petlan) [1818838]
+- [tools] libperf: Do not export perf_evsel__init()/perf_evlist__init() (Michael Petlan) [1818838]
+- [tools] libperf: Keep count of failed tests (Michael Petlan) [1818838]
+- [tools] libperf: Add tests_mmap_cpus test (Michael Petlan) [1818838]
+- [tools] libperf: Add tests_mmap_thread test (Michael Petlan) [1818838]
+- [tools] libperf: Link static tests with libapi.a (Michael Petlan) [1818838]
+- [tools] libperf: Move mask setup to perf_evlist__mmap_ops() (Michael Petlan) [1818838]
+- [tools] libperf: Move mmap allocation to perf_evlist__mmap_ops::get (Michael Petlan) [1818838]
+- [tools] libperf: Introduce perf_evlist__for_each_mmap() (Michael Petlan) [1818838]
+- [tools] perf tests: Disable bp_signal testing for arm64 (Michael Petlan) [1818838]
+- [tools] perf tests bp_account: Add dedicated checking helper is_supported() (Michael Petlan) [1818838]
+- [tools] perf tests: Remove needless headers for bp_account (Michael Petlan) [1818838]
+- [tools] perf list: Hide deprecated events by default (Michael Petlan) [1818838]
+- [tools] perf trace: Pass a syscall_arg to syscall_arg_fmt->strtoul() (Michael Petlan) [1818838]
+- [tools] perf trace: Honour --max-events in processing syscalls:sys_enter_* (Michael Petlan) [1818838]
+- [tools] libbeauty: Introduce syscall_arg__strtoul_strarray() (Michael Petlan) [1818838]
+- [tools] perf trace: Initialize evsel_trace->fmt for syscalls:sys_enter_* tracepoints (Michael Petlan) [1818838]
+- [tools] perf trace: Introduce 'struct evsel__trace' for evsel->priv needs (Michael Petlan) [1818838]
+- [tools] perf trace: Hide evsel->access further, simplify code (Michael Petlan) [1818838]
+- [tools] perf trace: Introduce accessors to trace specific evsel->priv (Michael Petlan) [1818838]
+- [tools] perf trace: Show error message when not finding a field used in a filter expression (Michael Petlan) [1818838]
+- [tools] perf trace: Hook the 'vec' tracepoint argument with the x86 IRQ vectors scnprintf/strtoul (Michael Petlan) [1818838]
+- [tools] perf trace beauty: Add the glue for the autogenerated x86 IRQ vector array (Michael Petlan) [1818838]
+- [tools] libbeauty: Add a strarray__scnprintf_suffix() method (Michael Petlan) [1818838]
+- [tools] libbeauty: Hook up the x86 irq_vectors table generator (Michael Petlan) [1818838]
+- [tools] libbeauty: Add a generator for x86's IRQ vectors -> strings (Michael Petlan) [1818838]
+- [tools] tools arch x86: Grab a copy of the file containing the IRQ vector defines (Michael Petlan) [1818838]
+- [tools] perf vendor events arm64: Add some missing events for Hisi hip08 HHA PMU (Michael Petlan) [1818838]
+- [tools] perf vendor events arm64: Add some missing events for Hisi hip08 L3C PMU (Michael Petlan) [1818838]
+- [tools] perf vendor events arm64: Add some missing events for Hisi hip08 DDRC PMU (Michael Petlan) [1818838]
+- [tools] perf vendor events arm64: Fix Hisi hip08 DDRC PMU eventname (Michael Petlan) [1818838]
+- [tools] perf trace: Support tracepoint dynamic char arrays (Michael Petlan) [1818838]
+- [tools] perf trace: Filter own pid to avoid a feedback look in 'perf trace record -a' (Michael Petlan) [1818838]
+- [tools] perf string: Export asprintf__tp_filter_pids() (Michael Petlan) [1818838]
+- [tools] perf trace: Introduce --errno-summary (Michael Petlan) [1818838]
+- [tools] perf trace: Add syscall failure stats to -s/--summary and -S/--with-summary (Michael Petlan) [1818838]
+- [tools] perf stat: Support --all-kernel/--all-user (Michael Petlan) [1818838]
+- [tools] perf annotate: Fix objdump --no-show-raw-insn flag (Michael Petlan) [1818838]
+- [tools] perf annotate: Don't pipe objdump output through 'expand' command (Michael Petlan) [1818838]
+- [tools] perf annotate: Don't pipe objdump output through 'grep' command (Michael Petlan) [1818838]
+- [tools] perf annotate: Use libsubcmd's run-command.h to fork objdump (Michael Petlan) [1818838]
+- [tools] perf annotate: Avoid reallocation in objdump parsing (Michael Petlan) [1818838]
+- [tools] perf report: Add warning when libunwind not compiled in (Michael Petlan) [1818838]
+- [tools] perf test: Avoid infinite loop for task exit case (Michael Petlan) [1818838]
+- [tools] perf test: Report failure for mmap events (Michael Petlan) [1818838]
+- [tools] perf script: Fix --reltime with --time (Michael Petlan) [1818838]
+- [tools] perf tools: Allow to build with -ltcmalloc (Michael Petlan) [1818838]
+- [tools] perf diff: Report noisy for cycles diff (Michael Petlan) [1818838]
+- [tools] perf tools: Propagate CFLAGS to libperf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_evlist__filter_pollfd() from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Introduce perf_evlist__purge() (Michael Petlan) [1818838]
+- [tools] libperf: Introduce perf_evlist__exit() (Michael Petlan) [1818838]
+- [tools] libperf: Move the pollfd allocation from tools/perf to libperf (Michael Petlan) [1818838]
+- [tools] libperf: Centralize map refcnt setting (Michael Petlan) [1818838]
+- [tools] perf evlist: Switch to libperf's mmap interface (Michael Petlan) [1818838]
+- [tools] perf evlist: Introduce perf_evlist__mmap_cb_mmap() (Michael Petlan) [1818838]
+- [tools] perf evlist: Introduce perf_evlist__mmap_cb_get() (Michael Petlan) [1818838]
+- [tools] perf tools: Introduce perf_evlist__mmap_cb_idx() (Michael Petlan) [1818838]
+- [tools] libperf: Introduce perf_evlist_mmap_ops::mmap callback (Michael Petlan) [1818838]
+- [tools] libperf: Add perf_evlist_mmap_ops::get callback (Michael Petlan) [1818838]
+- [tools] libperf: Introduce perf_evlist_mmap_ops::idx callback (Michael Petlan) [1818838]
+- [tools] libperf: Introduce perf_evlist__mmap_ops() (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_evlist__mmap()/munmap() from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__read_event() from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__read_done() from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__read_init() from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__consume() function from tools/perf (Michael Petlan) [1818838]
+- [tools] perf tools: Use perf_mmap way to detect aux mmap (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__put() function from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__unmap() function from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__get() function from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__mmap() function from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Adopt perf_mmap__mmap_len() function from tools/perf (Michael Petlan) [1818838]
+- [tools] libperf: Add 'struct perf_mmap_param' (Michael Petlan) [1818838]
+- [tools] libperf: Add perf_mmap__init() function (Michael Petlan) [1818838]
+- [tools] perf tools: Avoid 'sample_reg_masks' being const + weak (Michael Petlan) [1818838]
+- [tools] perf beauty: Introduce strtoul() for x86 MSRs (Michael Petlan) [1818838]
+- [tools] perf trace: Expand strings in filters to integers (Michael Petlan) [1818838]
+- [tools] perf trace: Introduce a strtoul() method for 'struct strarrays' (Michael Petlan) [1818838]
+- [tools] perf trace: Add a strtoul() method to 'struct syscall_arg_fmt' (Michael Petlan) [1818838]
+- [tools] perf trace: Introduce --filter for tracepoint events (Michael Petlan) [1818838]
+- [tools] perf evlist: Introduce append_tp_filter_pid() and append_tp_filter_pids() (Michael Petlan) [1818838]
+- [tools] perf evlist: Introduce append_tp_filter() method (Michael Petlan) [1818838]
+- [tools] perf evlist: Factor out asprintf routine to build a tracepoint pid filter (Michael Petlan) [1818838]
+- [tools] perf trace: Associate the "msr" tracepoint arg name with x86_MSR__scnprintf() (Michael Petlan) [1818838]
+- [tools] perf trace beauty: Add the glue for the autogenerated MSR arrays (Michael Petlan) [1818838]
+- [tools] perf trace: Allow associating scnprintf routines with well known arg names (Michael Petlan) [1818838]
+- [tools] perf beauty: Hook up the x86 MSR table generator (Michael Petlan) [1818838]
+- [tools] perf trace beauty: Add a x86 MSR cmd id->str table generator (Michael Petlan) [1818838]
+- [tools] perf beauty: Make strarray's offset be u64 (Michael Petlan) [1818838]
+- [tools] perf trace: Allow choosing how to augment the tracepoint arguments (Michael Petlan) [1818838]
+- [tools] perf trace: Enclose all events argument lists with () (Michael Petlan) [1818838]
+- [tools] perf trace: Add array of chars scnprintf beautifier (Michael Petlan) [1818838]
+- [tools] perf trace: Add the syscall_arg_fmt pointer to syscall_arg (Michael Petlan) [1818838]
+- [tools] perf trace: Move some scnprintf methods from syscall to syscall_arg_fmt (Michael Petlan) [1818838]
+- [tools] perf trace: Allocate an array of beautifiers for tracepoint args (Michael Petlan) [1818838]
+- [tools] perf trace: Factor out the initialization of syscal_arg_fmt->scnprintf (Michael Petlan) [1818838]
+- [tools] perf script: Allow --time with --reltime (Michael Petlan) [1818838]
+- [tools] perf scripts python: exported-sql-viewer.py: Add Time chart by CPU (Michael Petlan) [1818838]
+- [tools] perf scripts python: exported-sql-viewer.py: Add ability for Call tree to open at a specified task and time (Michael Petlan) [1818838]
+- [tools] perf scripts python: exported-sql-viewer.py: Tidy up Call tree call_time (Michael Petlan) [1818838]
+- [tools] perf scripts python: exported-sql-viewer.py: Add global time range calculations (Michael Petlan) [1818838]
+- [tools] perf scripts python: exported-sql-viewer.py: Add HBoxLayout and VBoxLayout (Michael Petlan) [1818838]
+- [tools] perf scripts python: exported-sql-viewer.py: Add LookupModel() (Michael Petlan) [1818838]
+- [tools] perf trace augmented_syscalls: Do not show syscalls when none was asked for (Michael Petlan) [1818838]
+- [tools] perf trace: Postpone parsing .perfconfig trace.add_events to after --verbose is processed (Michael Petlan) [1818838]
+- [tools] perf trace: Generalize the syscall_fmt find routines (Michael Petlan) [1818838]
+- [tools] perf trace: Separate 'struct syscall_fmt' definition from syscall_fmts variable (Michael Petlan) [1818838]
+- [tools] perf trace: Make evlist__set_evsel_handler() affect just entries without a handler (Michael Petlan) [1818838]
+- [tools] perf evlist: Adopt __set_tracepoint_handlers method from perf_session (Michael Petlan) [1818838]
+- [tools] perf top: Initialize perf_env->cpuid, needed by the per arch annotation init routine (Michael Petlan) [1818838]
+- [tools] perf env: Add routine to read the env->cpuid from the running machine (Michael Petlan) [1818838]
+- [kernel] perf/cgroups: Install cgroup events to correct cpuctx (Michael Petlan) [1818838]
+- [kernel] perf/core: Fix mlock accounting in perf_mmap() (Michael Petlan) [1818838]
+- [x86] perf/x86/intel/uncore: Remove PCIe3 unit for SNR (Michael Petlan) [1818838]
+- [x86] perf/x86/intel/uncore: Fix missing marker for snr_uncore_imc_freerunning_events (Michael Petlan) [1818838]
+- [x86] perf/x86/intel/uncore: Add PCI ID of IMC for Xeon E3 V5 Family (Michael Petlan) [1818838]
+- [kernel] perf: Correctly handle failed perf_get_aux_event() (Michael Petlan) [1818838]
+- [x86] perf/x86/intel: Fix PT PMI handling (Michael Petlan) [1818838]
+- [x86] perf/x86/intel/bts: Fix the use of page_private() (Michael Petlan) [1818838]
+- [x86] perf/x86: Fix potential out-of-bounds access (Michael Petlan) [1818838]
+- [x86] perf/x86: Implement immediate enforcement of /sys/devices/cpu/rdpmc value of 0 (Michael Petlan) [1818838]
+- [kernel] perf/core: Make the mlock accounting simple again (Michael Petlan) [1818838]
+- [kernel] perf/core: Fix the mlock accounting, again (Michael Petlan) [1818838]
+- [x86] perf/x86/intel/pt: Prevent redundant WRMSRs (Michael Petlan) [1818838]
+- [x86] perf/x86/intel/pt: Opportunistically use single range output mode (Michael Petlan) [1818838]
+- [x86] perf/x86/intel/pt: Add sampling support (Michael Petlan) [1818838]
+- [x86] perf/x86/intel/pt: Factor out pt_config_start() (Michael Petlan) [1818838]
+- [kernel] perf/aux: Allow using AUX data in perf samples (Michael Petlan) [1818838]
+- [kernel] perf/core: Fix unlock balance in perf_init_event() (Michael Petlan) [1818838]
+- [x86] perf/x86/amd: Remove set but not used variable 'active' (Michael Petlan) [1818838]
+- [kernel] perf/core: Optimize perf_init_event() for TYPE_SOFTWARE (Michael Petlan) [1818838]
+- [kernel] perf/core: Optimize perf_init_event() (Michael Petlan) [1818838]
+- [kernel] perf/core: Optimize perf_install_in_event() (Michael Petlan) [1818838]
+- [x86] perf/x86: Synchronize PMU task contexts on optimized context switches (Michael Petlan) [1818838]
+- [x86] perf/x86/intel: Implement LBR callstack context synchronization (Michael Petlan) [1818838]
+- [x86] perf/x86: Install platform specific ->swap_task_ctx() adapter (Michael Petlan) [1818838]
+- [x86] perf/core, perf/x86: Introduce swap_task_ctx() method at 'struct pmu' (Michael Petlan) [1818838]
+- [kernel] perf/ring_buffer: Matching the memory allocate and free, in rb_alloc() (Michael Petlan) [1818838]
+- [kernel] perf/ring_buffer: Modify the parameter type of perf_mmap_free_page() (Michael Petlan) [1818838]
+- [documentation] Documentation: Document sysfs interfaces purr, spurr, idle_purr, idle_spurr (Steve Best) [1783286]
+- [powerpc] powerpc/sysfs: Show idle_purr and idle_spurr for every CPU (Steve Best) [1783286]
+- [powerpc] powerpc/pseries: Account for SPURR ticks on idle CPUs (Steve Best) [1783286]
+- [powerpc] powerpc/idle: Store PURR snapshot in a per-cpu global variable (Steve Best) [1783286]
+- [powerpc] powerpc: Move idle_loop_prolog()/epilog() functions to header file (Steve Best) [1783286]
+- [kernel] padata: add separate cpuhp node for CPUHP_PADATA_DEAD (Herbert Xu) [1671674]
+- [kernel] padata: fix uninitialized return value in padata_replace() (Herbert Xu) [1671674]
+- [kernel] padata: remove reorder_objects (Herbert Xu) [1671674]
+- [crypto] padata: remove cpumask change notifier (Herbert Xu) [1671674]
+- [kernel] padata: always acquire cpu_hotplug_lock before pinst->lock (Herbert Xu) [1671674]
+- [kernel] padata: validate cpumask without removed CPU during offline (Herbert Xu) [1671674]
+- [crypto] crypto: pcrypt - Avoid deadlock by using per-instance padata queues (Herbert Xu) [1671674]
+- [kernel] padata: Remove unused padata_remove_cpu (Herbert Xu) [1671674]
+- [crypto] crypto: pcrypt - Fix user-after-free on module unload (Herbert Xu) [1671674]
+- [kernel] padata: Remove broken queue flushing (Herbert Xu) [1671674]
+- [kernel] padata: remove cpu_index from the parallel_queue (Herbert Xu) [1671674]
+- [kernel] padata: unbind parallel jobs from specific CPUs (Herbert Xu) [1671674]
+- [kernel] padata: use separate workqueues for parallel and serial work (Herbert Xu) [1671674]
+- [crypto] padata, pcrypt: take CPU hotplug lock internally in padata_alloc_possible (Herbert Xu) [1671674]
+- [crypto] crypto: pcrypt - remove padata cpumask notifier (Herbert Xu) [1671674]
+- [crypto] padata: make padata_do_parallel find alternate callback CPU (Herbert Xu) [1671674]
+- [kernel] workqueue: require CPU hotplug read exclusion for apply_workqueue_attrs (Herbert Xu) [1671674]
+- [kernel] workqueue: unconfine alloc/apply/free_workqueue_attrs() (Herbert Xu) [1671674]
+- [crypto] padata: allocate workqueue internally (Herbert Xu) [1671674]
+- [kernel] padata: initialize pd->cpu with effective cpumask (Herbert Xu) [1671674]
+- [kernel] padata: purge get_cpu and reorder_via_wq from padata_do_serial (Herbert Xu) [1671674]
+- [kernel] padata: Replace delayed timer with immediate workqueue in padata_reorder (Herbert Xu) [1671674]
+- [kernel] padata: use smp_mb in padata_reorder to avoid orphaned padata jobs (Herbert Xu) [1671674]
+- [kernel] tracing: Avoid memory leak in process_system_preds() (Jerome Marchand) [1829953] {CVE-2019-19072}
+- [kernel] tracing: Have error path in predicate_parse() free its allocated memory (Jerome Marchand) [1829953] {CVE-2019-19072}
+- [kernel] tracing: Avoid memory leak in predicate_parse() (Jerome Marchand) [1829953] {CVE-2019-19072}
+- [kernel] tracing: Fix memory leak in create_filter() (Jerome Marchand) [1829953] {CVE-2019-19072}
+- [tools] KVM: selftests: s390x: Provide additional num-guest-pages adjustment (Philipp Rudo) [1792266]
+- [s390] s390/protvirt: fix compilation issue (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: Fix PV check in deliverable_irqs() (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: Return last valid slot if approx index is out-of-bounds (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: vsie: Fix delivery of addressing exceptions (Philipp Rudo) [1792266]
+- [mm] s390/gmap: return proper error code on ksm unsharing (Philipp Rudo) [1792266]
+- [s390] KVM: s390: mark sie block as 512 byte aligned (Philipp Rudo) [1792266]
+- [tools] selftests: KVM: s390: check for registers to NOT change on reset (Philipp Rudo) [1792266]
+- [tools] selftests: KVM: s390: test more register variants for the reset ioctl (Philipp Rudo) [1792266]
+- [tools] selftests: KVM: s390: fix early guest crash (Philipp Rudo) [1792266]
+- [tools] selftests: KVM: s390: fixup fprintf format error in reset.c (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: Also reset registers in sync regs for initial cpu reset (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: introduce module parameter kvm.use_gisa (Philipp Rudo) [1792266]
+- [documentation] KVM: s390: protvirt: Add KVM api documentation (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: introduce and enable KVM_CAP_S390_PROTECTED (Philipp Rudo) [1792266]
+- [documentation] DOCUMENTATION: Protected virtual machine introduction and IPL (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Add UV cpu reset calls (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: do not inject interrupts after start (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Mask PSW interrupt bits for interception 104 and 112 (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Support cmd 5 operation state (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Report CPU state to Ultravisor (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: UV calls in support of diag308 0, 1 (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Add program exception injection (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Only sync fmt4 registers (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Do only reset registers that are accessible (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: disallow one_reg (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: STSI handling (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Write sthyi data to instruction data area (Philipp Rudo) [1792266]
+- [kvm] KVM: s390/mm: handle guest unpin events (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: handle secure guest prefix pages (Philipp Rudo) [1792266]
+- [kvm] KVM: S390: protvirt: Introduce instruction data area bounce buffer (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Add new gprs location handling (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Handle spec exception loops (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Add SCLP interrupt handling (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Implement interrupt injection (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Instruction emulation (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Handle SE notification interceptions (Philipp Rudo) [1792266]
+- [mm] KVM: s390/mm: Make pages accessible before destroying the guest (Philipp Rudo) [1792266]
+- [mm] KVM: s390: protvirt: Secure memory is not mergeable (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Add initial vm and cpu lifecycle handling (Philipp Rudo) [1792266]
+- [s390] KVM: s390: add new variants of UV CALL (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: protvirt: Add UV debug trace (Philipp Rudo) [1792266]
+- [kvm] KVM: s390/interrupt: do not pin adapter interrupt pages (Philipp Rudo) [1792266]
+- [s390] s390/protvirt: Add sysfs firmware interface for Ultravisor information (Philipp Rudo) [1792266]
+- [s390] s390/mm: add (non)secure page access exceptions handlers (Philipp Rudo) [1792266]
+- [s390] s390/mm: provide memory management functions for protected KVM guests (Philipp Rudo) [1792266]
+- [s390] s390/protvirt: add ultravisor initialization (Philipp Rudo) [1792266]
+- [s390] s390/protvirt: introduce host side setup (Philipp Rudo) [1792266]
+- [documentation] KVM: s390: rstify new ioctls in api.rst (Philipp Rudo) [1792266]
+- [s390] s390/uv: Fix handling of length extensions (Philipp Rudo) [1792266]
+- [tools] selftests: KVM: testing the local IRQs resets (Philipp Rudo) [1792266]
+- [tools] selftests: KVM: s390x: Add reset tests (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: Add new reset vcpu API (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: Cleanup initial cpu reset (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: do not clobber registers during guest reset/store status (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: ENOTSUPP -> EOPNOTSUPP fixups (Philipp Rudo) [1792266]
+- [s390] s390/uv: use EOPNOTSUPP instead of ENOTSUPP (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: Do not yield when target is already running (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: count invalid yields (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: mark __insn32_query() as __always_inline (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: fix __insn32_query() inline assembly (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: Cleanup kvm_arch_init error path (Philipp Rudo) [1792266]
+- [kvm] KVM: s390: Remove unused parameter from __inject_sigp_restart() (Philipp Rudo) [1792266]
+- [mm] mm/gup/writeback: add callbacks for inaccessible pages (Philipp Rudo) [1792266]
+- [scsi] scsi: libiscsi: fall back to sendmsg for slab pages (Maurizio Lombardi) [1825775]
+- [fs] smb3: fix default permissions on new files when mounting with modefromsid (Leif Sahlberg) [1833374]
+- [fs] gfs2: don't call quota_unhold if quotas are not locked (Robert S Peterson) [1830043]
+- [fs] gfs2: move privileged user check to gfs2_quota_lock_check (Robert S Peterson) [1830043]
+- [fs] gfs2: remove check for quotas on in gfs2_quota_check (Robert S Peterson) [1830043]
+- [fs] gfs2: Change BUG_ON to an assert_withdraw in gfs2_quota_change (Robert S Peterson) [1830043]
+- [fs] gfs2: Fix problems regarding gfs2_qa_get and _put (Robert S Peterson) [1830043]
+- [powerpc] powerpc/eeh: Fix deadlock handling dead PHB (Sam Bobroff) [1774820]
+- [powerpc] powerpc/powernv/eeh: Fix oops when probing cxl devices (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Slightly simplify eeh_add_to_parent_pe() (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Remove unused return path from eeh_pe_dev_traverse() (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Fix crash when edev->pdev changes (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Convert log messages to eeh_edev_* macros (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Introduce EEH edev logging macros (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Add bdfn field to eeh_dev (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Refactor around eeh_probe_devices() (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: EEH for pSeries hot plug (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Initialize EEH address cache earlier (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Improve debug messages around device addition (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh: Clear stale EEH_DEV_NO_HANDLER flag (Sam Bobroff) [1774820]
+- [powerpc] powerpc/64: Adjust order in pcibios_init() (Sam Bobroff) [1774820]
+- [powerpc] powerpc/pci: Add pci_find_controller_for_domain() (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh_cache: Bump log level of eeh_addr_cache_print() (Sam Bobroff) [1774820]
+- [powerpc] powerpc/eeh_cache: Add pr_debug() prints for insert/remove (Sam Bobroff) [1774820]
+
+* Sun May 17 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-200.el8]
+- [gpio] gpiolib: acpi: Add quirk to ignore EC wakeups on HP x2 10 CHT + AXP288 model (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Add quirk to ignore EC wakeups on HP x2 10 BYT + AXP288 model (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Rework honor_wakeup option into an ignore_wake option (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Correct comment for HP x2 10 honor_wakeup quirk (David Arcari) [1829900]
+- [gpio] gpiolib: Fix irq_disable() semantics (David Arcari) [1829900]
+- [gpio] gpiolib: fix gpio_do_set_config() (David Arcari) [1829900]
+- [gpio] gpiolib: remove unnecessary argument from set_config call (David Arcari) [1829900]
+- [gpio] Revert "gpiolib: remove set but not used variable 'config'" (David Arcari) [1829900]
+- [gpio] Revert "gpiolib: Remove duplicated function gpio_do_set_config()" (David Arcari) [1829900]
+- [gpio] treewide: remove redundant IS_ERR() before error code check (David Arcari) [1829900]
+- [gpio] gpiolib: hold gpio devices lock until ->descs array is initialised (David Arcari) [1829900]
+- [gpio] gpio: Drop the chained IRQ handler assign function (David Arcari) [1829900]
+- [gpio] gpio: xlp: Pass irqchip when adding gpiochip (David Arcari) [1829900]
+- [pinctrl] pinctrl: qcom: Pass irqchip when adding gpiochip (David Arcari) [1829900]
+- [pinctrl] pinctrl: iproc: allow for error from platform_get_irq() (David Arcari) [1829900]
+- [pinctrl] pinctrl: bcm-iproc: Pass irqchip when adding gpiochip (David Arcari) [1829900]
+- [gpio] gpio: pl061: Pass irqchip when adding gpiochip (David Arcari) [1829900]
+- [gpio] gpio: pl061: Move irq_chip definition inside struct pl061 (David Arcari) [1829900]
+- [gpio] gpiolib: Lower verbosity when allocating hierarchy irq (David Arcari) [1829900]
+- [gpio] gpiolib: Remove duplicated function gpio_do_set_config() (David Arcari) [1829900]
+- [include] gpio: Fix the no return statement warning (David Arcari) [1829900]
+- [gpio] gpiolib: remove set but not used variable 'config' (David Arcari) [1829900]
+- [gpio] gpiolib: Set lockdep class for hierarchical irq domains (David Arcari) [1829900]
+- [gpio] gpiolib: Add the support for the msi parent domain (David Arcari) [1829900]
+- [gpio] gpiolib: Add support for the irqdomain which doesn't use irq_fwspec as arg (David Arcari) [1829900]
+- [gpio] gpiolib: use gpiochip_get_desc() in gpio_ioctl() (David Arcari) [1829900]
+- [gpio] gpiolib: use gpiochip_get_desc() in lineevent_create() (David Arcari) [1829900]
+- [gpio] gpiolib: use gpiochip_get_desc() in linehandle_create() (David Arcari) [1829900]
+- [gpio] gpiolib: convert the type of hwnum to unsigned int in gpiochip_get_desc() (David Arcari) [1829900]
+- [gpio] gpiolib: have a single place of calling set_config() (David Arcari) [1829900]
+- [gpio] gpiolib: use 'unsigned int' instead of 'unsigned' in gpio_set_config() (David Arcari) [1829900]
+- [gpio] gpio: gpiolib: fix confusing indention (David Arcari) [1829900]
+- [mmc] mmc: core: Rework cd-gpio handling (David Arcari) [1829900]
+- [mmc] mmc: core: Rework wp-gpio handling (David Arcari) [1829900]
+- [gpio] gpio: add gpiod_toggle_active_low() (David Arcari) [1829900]
+- [gpio] gpiolib: Make use of assign_bit() API (David Arcari) [1829900]
+- [gpio] gpiolib: Add GPIOCHIP_NAME definition (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Add honor_wakeup module-option + quirk mechanism (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Turn dmi_system_id table into a generic quirk table (David Arcari) [1829900]
+- [gpio] gpiolib: fix up emulated open drain outputs (David Arcari) [1829900]
+- [gpio] gpio: Fix error message on out-of-range GPIO in lookup table (David Arcari) [1829900]
+- [gpio] gpiolib: of: Make of_gpio_spi_cs_get_count static (David Arcari) [1829900]
+- [gpio] gpio: Handle counting of Freescale chipselects (David Arcari) [1829900]
+- [gpio] gpio: of: Fix bogus reference to gpiod_get_count() (David Arcari) [1829900]
+- [gpio] gpiolib: Grammar s/manager/managed/ (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Make acpi_gpiochip_alloc_event always return AE_OK (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Print pin number on acpi_gpiochip_alloc_event errors (David Arcari) [1829900]
+- [gpio] gpiolib: fix coding style in gpiod_hog() (David Arcari) [1829900]
+- [gpio] gpio: add new SET_CONFIG ioctl() to gpio chardev (David Arcari) [1829900]
+- [gpio] gpiolib: move validation of line handle flags into helper function (David Arcari) [1829900]
+- [gpio] gpiolib: add support for biasing output lines (David Arcari) [1829900]
+- [gpio] gpiolib: add support for disabling line bias (David Arcari) [1829900]
+- [gpio] gpiolib: add support for pull up/down to lineevent_create (David Arcari) [1829900]
+- [gpio] gpio: expose pull-up/pull-down line flags to userspace (David Arcari) [1829900]
+- [gpio] Revert "gpio: expose pull-up/pull-down line flags to userspace" (David Arcari) [1829900]
+- [gpio] gpiolib: No need to call gpiochip_remove_pin_ranges() twice (David Arcari) [1829900]
+- [include] gpio: Add definition for GPIO direction (David Arcari) [1829900]
+- [gpio] gpiolib: Switch order of valid mask and hw init (David Arcari) [1829900]
+- [gpio] gpio: of: don't warn if ignored GPIO flag matches the behavior (David Arcari) [1829900]
+- [gpio] gpio: fix kernel-doc for of_gpio_need_valid_mask() (David Arcari) [1829900]
+- [gpio] gpio: expose pull-up/pull-down line flags to userspace (David Arcari) [1829900]
+- [gpio] gpiolib: introduce fwnode_gpiod_get_index() (David Arcari) [1829900]
+- [gpio] gpiolib: introduce devm_fwnode_gpiod_get_index() (David Arcari) [1829900]
+- [gpio] gpiolib: sanitize flags before allocating memory in lineevent_create() (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Add Terra Pad 1061 to the run_edge_events_on_boot_blacklist (David Arcari) [1829900]
+- [gpio] gpio: fix getting nonexclusive gpiods from DT (David Arcari) [1829900]
+- [gpio] gpiolib: don't clear FLAG_IS_OUT when emulating open-drain/open-source (David Arcari) [1829900]
+- [gpio] gpiolib: of: add a fallback for wlf, reset GPIO name (David Arcari) [1829900]
+- [gpio] gpio: remove explicit comparison with 0 (David Arcari) [1829900]
+- [gpio] gpio: devres: Switch to EXPORT_SYMBOL_GPL() (David Arcari) [1829900]
+- [gpio] gpio: of: Switch to EXPORT_SYMBOL_GPL() (David Arcari) [1829900]
+- [gpio] gpio: of: Make of_gpio_simple_xlate() private (David Arcari) [1829900]
+- [gpio] gpio: of: Make of_get_named_gpiod_flags() private (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: make acpi_can_fallback_to_crs() static (David Arcari) [1829900]
+- [gpio] gpio: of: Normalize return code variable name (David Arcari) [1829900]
+- [gpio] gpio: gpiolib: Normalize return code variable name (David Arcari) [1829900]
+- [include] gpio: Move gpiochip_lock/unlock_as_irq to gpio/driver.h (David Arcari) [1829900]
+- [gpio] gpio: Use callback presence to determine need of valid_mask (David Arcari) [1829900]
+- [gpio] gpio: Pass mask and size with the init_valid_mask() (David Arcari) [1829900]
+- [pinctrl] pinctrl: msm: Add ability for drivers to supply a reserved GPIO list (David Arcari) [1829900]
+- [pinctrl] pinctrl: msm: Use init_valid_mask exported function (David Arcari) [1829900]
+- [include] gpio: stubs in headers should be inline (David Arcari) [1829900]
+- [gpio] gpio: Add support for hierarchical IRQ domains (David Arcari) [1829900]
+- [kernel] genirq: introduce irq_domain_translate_twocell (David Arcari) [1829900]
+- [gpio] gpio: refactor gpiochip_allocate_mask() with bitmap_alloc() (David Arcari) [1829900]
+- [gpio] gpio: of: Fix hard-assigned valid_mask for OF case (David Arcari) [1829900]
+- [sound] gpiolib-acpi: Move acpi_dev_add_driver_gpios() et al to consumer.h (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Split ACPI stuff to gpiolib-acpi.h (David Arcari) [1829900]
+- [include] gpiolib: of: Reshuffle contents of consumer.h for new library layout (David Arcari) [1829900]
+- [include] pinctrl: remove unneeded #ifdef around declarations (David Arcari) [1829900]
+- [hwmon] hwmon: pmbus: ucd9000: remove unneeded include (David Arcari) [1829900]
+- [include] gpio: remove less important #ifdef around declarations (David Arcari) [1829900]
+- [gpio] gpio: of: Break out OF-only code (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Add gpiolib_acpi_run_edge_events_on_boot option and blacklist (David Arcari) [1829900]
+- [gpio] gpiolib: of: fix fallback quirks handling (David Arcari) [1829900]
+- [gpio] gpio: fix line flag validation in lineevent_create (David Arcari) [1829900]
+- [gpio] gpio: fix line flag validation in linehandle_create (David Arcari) [1829900]
+- [gpio] gpio: Fix irqchip initialization order (David Arcari) [1829900]
+- [gpio] gpio: of: fix Freescale SPI CS quirk handling (David Arcari) [1829900]
+- [gpio] gpiolib: never report open-drain/source lines as 'input' to user-space (David Arcari) [1829900]
+- [include] gpio: Fix build error of function redefinition (David Arcari) [1829900]
+- [gpio] gpiolib: Preserve desc->flags when setting state (David Arcari) [1829900]
+- [include] gpio: don't WARN() on NULL descs if gpiolib is disabled (David Arcari) [1829900]
+- [gpio] gpiolib: fix incorrect IRQ requesting of an active-low lineevent (David Arcari) [1829900]
+- [gpio] Revert "gpio/spi: Fix spi-gpio regression on active high CS" (David Arcari) [1829900]
+- [gpio] gpiolib: of: fix a memory leak in of_gpio_flags_quirks() (David Arcari) [1829900]
+- [gpio] gpiolib: Use spinlock_t instead of struct spinlock (David Arcari) [1829900]
+- [gpio] gpiolib: Clarify use of non-sleeping functions (David Arcari) [1829900]
+- [gpio] gpiolib: Fix references to gpiod_et_*value_cansleep() variants (David Arcari) [1829900]
+- [include] gpiolib: Document new gpio_chip.init_valid_mask field (David Arcari) [1829900]
+- [gpio] gpio/spi: Fix spi-gpio regression on active high CS (David Arcari) [1829900]
+- [gpio] gpio: No need to cast away return value of debugfs_create_file() (David Arcari) [1829900]
+- [include] gpio: Add comments on #if/#else/#endif (David Arcari) [1829900]
+- [regulator] gpio: Fix return value mismatch of function gpiod_get_from_of_node() (David Arcari) [1829900]
+- [gpio] gpio: Drop the parent_irq from gpio_irq_chip (David Arcari) [1829900]
+- [gpio] gpio: of: parse stmmac PHY reset line specific active-low property (David Arcari) [1829900]
+- [gpio] gpio: pass lookup and descriptor flags to request_own (David Arcari) [1829900]
+- [gpio] gpio: of: Handle the Freescale SPI CS (David Arcari) [1829900]
+- [gpio] gpio: Fix gpiochip_add_data_with_key() error path (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Respect pin bias setting (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Add acpi_gpio_update_gpiod_lookup_flags() helper (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Set pin value, based on bias, more accurately (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Change type of dflags (David Arcari) [1829900]
+- [gpio] gpiolib: Introduce GPIO_LOOKUP_FLAGS_DEFAULT (David Arcari) [1829900]
+- [gpio] gpiolib: Make use of enum gpio_lookup_flags consistent (David Arcari) [1829900]
+- [include] gpiolib: Indent entry values of enum gpio_lookup_flags (David Arcari) [1829900]
+- [gpio] gpio: of: Optimize quirk checks (David Arcari) [1829900]
+- [gpio] gpio: mmio: Drop bgpio_dir_inverted (David Arcari) [1829900]
+- [gpio] gpio: Set proper argument value to set_config (David Arcari) [1829900]
+- [gpio] gpio: Remove obsolete comment about gpiochip_free_hogs() usage (David Arcari) [1829900]
+- [gpio] gpio: mmio: Fix bgpio_get_set & bgpio_get_set_multiple (David Arcari) [1829900]
+- [gpio] gpio: mmio: Support two direction registers (David Arcari) [1829900]
+- [gpio] gpiolib: Don't WARN on gpiod_put() for optional GPIO (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Fix references in kernel doc and amend (David Arcari) [1829900]
+- [gpio] gpio: of: Fix of_gpiochip_add() error path (David Arcari) [1829900]
+- [gpio] gpio: of: Check for "spi-cs-high" in child instead of parent node (David Arcari) [1829900]
+- [gpio] gpio: of: Check propname before applying "cs-gpios" quirks (David Arcari) [1829900]
+- [gpio] Revert "gpio: use new gpio_set_config() helper in more places" (David Arcari) [1829900]
+- [gpio] gpio: of: Handle both enable-gpio{,s} (David Arcari) [1829900]
+- [gpio] gpio: of: Restrict enable-gpio quirk to regulator-gpio (David Arcari) [1829900]
+- [gpio] gpio: of: Apply regulator-gpio quirk only to enable-gpios (David Arcari) [1829900]
+- [gpio] gpio: add core support for pull-up/pull-down configuration (David Arcari) [1829900]
+- [gpio] gpio: use new gpio_set_config() helper in more places (David Arcari) [1829900]
+- [gpio] gpio: rename gpio_set_drive_single_ended() to gpio_set_config() (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Correct kernel doc of struct acpi_gpio_event (David Arcari) [1829900]
+- [gpio] gpio: of: Fix logic inversion (David Arcari) [1829900]
+- [gpio] gpio: add irq domain activate/deactivate functions (David Arcari) [1829900]
+- [gpio] gpiolib: fix line event timestamps for nested irqs (David Arcari) [1829900]
+- [gpio] gpiolib-acpi: Preserve non direction flags when updating gpiod_flags (David Arcari) [1829900]
+- [gpio] gpiolib-acpi: Remove unnecessary WARN_ON from acpi_gpiochip_free_interrupts (David Arcari) [1829900]
+- [gpio] gpiolib-acpi: remove unused variable 'err', cleans up build warning (David Arcari) [1829900]
+- [mmc] mmc: core: don't override the CD GPIO level when "cd-inverted" is set (David Arcari) [1829900]
+- [arm64] arm64: dts: meson: Fix mmc cd-gpios polarity (David Arcari) [1829900]
+- [gpio] gpio/mmc/of: Respect polarity in the device tree (David Arcari) [1829900]
+- [include] gpiolib: Fix return value of gpio_to_desc() stub if !GPIOLIB (David Arcari) [1829900]
+- [documentation] Documentation: gpio: fix function links in the HTML docs (David Arcari) [1829900]
+- [documentation] docs: driver-model: convert docs to ReST and rename to *.rst (David Arcari) [1829900]
+- [documentation] docs: gpio: driver.rst: fix a bad tag (David Arcari) [1829900]
+- [documentation] gpio: Fix minor grammar errors in documentation (David Arcari) [1829900]
+- [documentation] gpio: Update documentation (David Arcari) [1829900]
+- [gpio] gpio: Pass a flag to gpiochip_request_own_desc() (David Arcari) [1829900]
+- [gpio] gpio: Add devm_gpiod_unhinge() (David Arcari) [1829900]
+- [gpio] gpio: devres: Handle nonexclusive GPIOs (David Arcari) [1829900]
+- [gpio] gpio: Enable nonexclusive gpiods from DT nodes (David Arcari) [1829900]
+- [gpio] gpiolib-acpi: Only defer request_irq for GpioInt ACPI event handlers (David Arcari) [1829900]
+- [gpio] gpio: OF: Parse MMC-specific CD and WP properties (David Arcari) [1829900]
+- [gpio] gpio: restore original GPLv2+ license of gpiolib-of.c sources (David Arcari) [1829900]
+- [include] gpio: drop broken to_gpio_irq_chip() helper (David Arcari) [1829900]
+- [gpio] gpio: drop devm_gpio_chip_match() (David Arcari) [1829900]
+- [gpio] gpio: don't free unallocated ida on gpiochip_add_data_with_key() error path (David Arcari) [1829900]
+- [gpio] gpiolib: Fix possible use after free on label (David Arcari) [1829900]
+- [documentation] Documentation: gpio: driver: fix wire name for I2C (David Arcari) [1829900]
+- [documentation] gpio/driver.rst: document gpiochip_disable/enable_irq() (David Arcari) [1829900]
+- [gpio] gpio: drop devm_gpiochip_remove() (David Arcari) [1829900]
+- [gpio] gpio: Clarify kerneldoc on gpiochip_set_chained_irqchip() (David Arcari) [1829900]
+- [gpio] gpio: Remove unused 'irqchip' argument to gpiochip_set_cascaded_irqchip() (David Arcari) [1829900]
+- [gpio] gpio: Drop parent irq assignment during cascade setup (David Arcari) [1829900]
+- [gpio] gpiolib: Initialize gdev field before is used (David Arcari) [1829900]
+- [gpio] gpio: Assign gpio_irq_chip::parents to non-stack pointer (David Arcari) [1829900]
+- [gpio] gpio: fix doc string for devm_gpiochip_add_data() to not talk about irq_chip (David Arcari) [1829900]
+- [gpio] gpio: mockup: fix indicated direction (David Arcari) [1829900]
+- [gpio] gpiolib: Show correct direction from the beginning (David Arcari) [1829900]
+- [gpio] gpiolib: Add init_valid_mask exported function (David Arcari) [1829900]
+- [gpio] gpio: Slightly more helpful debugfs (David Arcari) [1829900]
+- [gpio] Accept partial 'gpio-line-names' property (David Arcari) [1829900]
+- [gpio] gpio: Restore indentation of continued lines (David Arcari) [1829900]
+- [gpio] gpio: Propagate errors from gpiod_set_array_value_complex() (David Arcari) [1829900]
+- [gpio] gpiolib: Fix incorrect use of find_next_zero_bit() (David Arcari) [1829900]
+- [gpio] gpiolib: Fix missing updates of bitmap index (David Arcari) [1829900]
+- [gpio] gpio: Add comments on single direction chips (David Arcari) [1829900]
+- [gpio] gpiolib: Fix gpio_direction_* for single direction GPIOs (David Arcari) [1829900]
+- [gpio] gpio: Rename devres implementation file (David Arcari) [1829900]
+- [gpio] gpio: Use SPDX header for core library (David Arcari) [1829900]
+- [gpio] gpiolib: Fix array members of same chip processed separately (David Arcari) [1829900]
+- [gpio] gpiolib: Free the last requested descriptor (David Arcari) [1829900]
+- [gpio] gpio: Get rid of legacy header (David Arcari) [1829900]
+- [gpio] gpiolib: check if irqchip already has the irq hook replacements (David Arcari) [1829900]
+- [gpio] gpiolib: use better errno if get_direction is not available (David Arcari) [1829900]
+- [documentation] gpiolib: Implement fast processing path in get/set array (David Arcari) [1829900]
+- [documentation] Documentation: gpio: Fix reference to gpiod_get_array() (David Arcari) [1829900]
+- [gpio] gpiolib: Pass array info to get/set array functions (David Arcari) [1829900]
+- [gpio] gpiolib: Identify arrays matching GPIO hardware (David Arcari) [1829900]
+- [gpio] gpiolib: Pass bitmaps, not integer arrays, to get/set array (David Arcari) [1829900]
+- [gpio] gpiolib: Don't support irq sharing for userspace (David Arcari) [1829900]
+- [gpio] gpio: of: Handle SPI chipselect legacy bindings (David Arcari) [1829900]
+- [gpio] gpiolib: override irq_enable/disable (David Arcari) [1829900]
+- [gpio] gpiolib: add flag to indicate if the irq is disabled (David Arcari) [1829900]
+- [gpio] gliolib: set hooks in gpiochip_set_irq_hooks() (David Arcari) [1829900]
+- [gpio] gpiolib: export gpiochip_irq_reqres/relres() (David Arcari) [1829900]
+- [include] gpio: fix kernel-doc notation warning for 'request_key' (David Arcari) [1829900]
+- [gpio] gpio: Fix crash due to registration race (David Arcari) [1829900]
+- [gpio] gpio: Convert to using pOFn instead of device_node.name (David Arcari) [1829900]
+- [gpio] gpiolib-acpi: Register GpioInt ACPI event handlers from a late_initcall (David Arcari) [1829900]
+- [gpio] gpiolib: acpi: Switch to cansleep version of GPIO library call (David Arcari) [1829900]
+- [gpio] gpiolib: Avoid calling chip->request() for unused gpios (David Arcari) [1829900]
+- [gpio] gpio: mmio: Fix up inverted direction registers (David Arcari) [1829900]
+- [gpio] gpiolib: Fix of_node inconsistency (David Arcari) [1829900]
+- [gpio] gpiolib: Don't shadow error code of gpiochip_lock_as_irq() (David Arcari) [1829900]
+- [include] gpiolib: Use GPIOD_OUT_{LOW, HIGH} macros in open drain ones (David Arcari) [1829900]
+- [gpio] gpiolib: probe deferral error reporting (David Arcari) [1829900]
+- [include] Input: gpio_keys - add missing include to gpio_keys.h (David Arcari) [1829900]
+- [gpio] gpiolib: remove an unnecessary TODO (David Arcari) [1829900]
+- [gpio] gpiolib: don't allow userspace to set values of input lines (David Arcari) [1829900]
+- [gpio] gpiolib: Join one line back for better readability (David Arcari) [1829900]
+- [gpio] gpiolib: Consistent use of ->get_direction() inside gpiolib (David Arcari) [1829900]
+- [gpio] gpiolib: Defer on non-DT find_chip_by_name() failure (David Arcari) [1829900]
+- [gpio] gpiolib: Respect error code of ->get_direction() (David Arcari) [1829900]
+- [gpio] gpiolib: Join string literals back (David Arcari) [1829900]
+- [include] gpio.h: fix location of gpio legacy documentation (David Arcari) [1829900]
+- [fs] gfs2: Fix use-after-free in gfs2_logd after withdraw (Robert S Peterson) [1831695]
+- [fs] gfs2: Fix BUG during unmount after file system withdraw (Robert S Peterson) [1831695]
+- [fs] gfs2: Fix error exit in do_xmote (Robert S Peterson) [1831695]
+- [fs] gfs2: fix withdraw sequence deadlock (Robert S Peterson) [1831695]
+- [mm] s390/mm: fix page table upgrade vs 2ndary address mode accesses (Vladis Dronov) [1828154] {CVE-2020-11884}
+- [media] media: serial_ir: Fix use-after-free in serial_ir_init_module (Vladis Dronov) [1802396] {CVE-2019-19543}
+- [mm] mm/memory_hotplug: fix remove_memory() lockdep splat (Christoph von Recklinghausen) [1830942]
+- [mm] mm/page_alloc.c: initialize memmap of unavailable memory directly (Christoph von Recklinghausen) [1782827]
+- [fs] fs/proc/page.c: allow inspection of last section and fix end detection (Christoph von Recklinghausen) [1782827]
+- [mm] mm/page_alloc.c: fix uninitialized memmaps on a partially populated last section (Christoph von Recklinghausen) [1782827]
+- [powerpc] kvm: ppc: book3s hv: Handle non-present PTEs in page fault functions (David Gibson) [1820402]
+- [vfio] vfio-pci/nvlink2: Allow fallback to ibm, mmio-atsd[0] (David Gibson) [1819169]
+- [s390] s390/cpuinfo: fix wrong output when CPU0 is offline (Philipp Rudo) [1812982]
+- [s390] s390/topology: remove offline CPUs from CPU topology masks (Philipp Rudo) [1812982]
+- [hwtracing] intel_th: pci: Add Comet Lake PCH-V support (Tony Camuso) [1822983]
+- [kernel] kprobes: Fix optimize_kprobe()/unoptimize_kprobe() cancellation logic (Waiman Long) [1833383]
+- [kernel] kprobes: Set unoptimized flag after unoptimizing code (Waiman Long) [1833383]
+- [kernel] kprobes: Prohibit probing on BUG() and WARN() address (Waiman Long) [1833383]
+- [kernel] kprobes: Fix potential deadlock in kprobe_optimizer() (Waiman Long) [1833383]
+- [fs] gfs2: More gfs2_find_jhead fixes (Abhijith Das) [1828653]
+- [kernel] audit: fix a net reference leak in audit_list_rules_send() (Richard Guy Briggs) [1827327]
+- [kernel] audit: fix a net reference leak in audit_send_reply() (Richard Guy Briggs) [1827327]
+- [kernel] audit: check the length of userspace generated audit records (Richard Guy Briggs) [1827303]
+- [s390] s390/pci: do not set affinity for floating irqs (Philipp Rudo) [1834319]
+- [netdrv] mlx5: Remove the unsupported mark from ConnectX-6 Dx device (Alaa Hleihel) [1789382 1782831]
+- [netdrv] mlx5: Update list of unsupported devices (Alaa Hleihel) [1823685 1789382]
+- [infiniband] RDMA/mlx5: Verify that QP is created with RQ or SQ (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Fix udata response upon SRQ creation (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Set of completion request bit should not clear other adjacent bits (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: en_accel, Add missing net/geneve.h include (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix q counters on uplink representors (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Fix command entry leak in Internal Error State (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Fix forced completion access non initialized command entry (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: DR, On creation set CQ's arm_db member to right value (Alaa Hleihel) [1789384 1789382]
+- [infiniband] RDMA/mlx5: Set GRH fields in query QP on RoCE (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Get the latest values from counters in switchdev mode (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Don't trigger IRQ multiple times on XSK wakeup to avoid WQ overruns (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Fix failing fw tracer allocation on s390 (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix pfnum in devlink port attribute (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix nest_level for vlan pop action (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Add missing release firmware call (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Fix frequent ioread PCI access during recovery (Alaa Hleihel) [1789382]
+- [netdrv] flow_offload: check for basic action hw stats type (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Remove unused argument from parse_tc_pedit_action() (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Use netdev_warn() instead of pr_err() for errors (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: DR, Remove unneeded functions deceleration (Alaa Hleihel) [1789384 1789382]
+- [netdrv] net/mlx5: DR, Improve log messages (Alaa Hleihel) [1789384 1789382]
+- [netdrv] net/mlx5: DR, Change matcher priority parameter type (Alaa Hleihel) [1789384 1789382]
+- [netdrv] net/mlx5: Eswitch, avoid redundant mask (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Don't allow forwarding between uplink (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Replace tunnel mpls capability bits for tunnel_offloads (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Fix missing congestion control debugfs on rep rdma device (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Optimize u64 division on 32-bit arches (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Prevent UMR usage with RO only when we have RO caps (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Fix group version management (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: E-Switch, Hold mutex when querying drop counter in legacy mode (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Tidy up and fix reverse christmas ordring (Alaa Hleihel) [1831133 1789382]
+- [netdrv] net/mlx5: Expose port speed when possible (Alaa Hleihel) [1831133 1789382]
+- [include] net/mlx5: Expose link speed directly (Alaa Hleihel) [1831133 1789382]
+- [netdrv] net/mlx5e: Use netdev_warn() for errors for added prefix (Alaa Hleihel) [1789382]
+- [include] net/mlx5: fix spelling mistake "reserverd" -> "reserved" (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: sparse: warning: Using plain integer as NULL pointer (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: sparse: warning: incorrect type in assignment (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: RX, Use indirect calls wrapper for handling compressed completions (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: RX, Use indirect calls wrapper for posting descriptors (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Change inline mode correctly when changing trust state (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Add context to the preactivate hook (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Allow mlx5e_switch_priv_channels to fail and recover (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Remove unneeded netif_set_real_num_tx_queues (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix configuration of XPS cpumasks and netdev queues in corner cases (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Use preactivate hook to set the indirection table (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Rename hw_modify to preactivate (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Encapsulate updating netdev queues into a function (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Add missing LRO cap check (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Define one flow for TXQ selection when TCs are configured (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Block delay drop to unprivileged users (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Fix access to wrong pointer while performing flush due to error (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Do not recover from a non-fatal syndrome (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix ICOSQ recovery flow with Striding RQ (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix missing reset of SW metadata in Striding RQ reset (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Enhance ICOSQ WQE info fields (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5_core: Set IB capability mask1 to fix ib_srpt connection failure (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Fix the number of hwcounters of a dynamic counter (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Clear LAG notifier pointer after unregister (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix endianness handling in pedit mask (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: kTLS, Fix wrong value in record tracker enum (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: kTLS, Fix TCP seq off-by-1 issue in TX resync flow (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: DR, Fix postsend actions write length (Alaa Hleihel) [1789384 1789382]
+- [infiniband] IB/mlx5: Fix implicit ODP race (Alaa Hleihel) [1789382]
+- [netdrv] mlx5: register lag notifier for init network namespace only (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix crash in recovery flow without devlink reporter (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Reset RQ doorbell counter before moving RQ state from RST to RDY (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Fix sleep while atomic in mlx5_eswitch_get_vepa (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Use div64_u64 for num_var_hw_entries calculation (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Prevent overflow in mmap offset calculations (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Fix async events cleanup flows (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Return failure when rts2rts_qp_counters_set_id is not supported (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Deprecate usage of generic TLS HW capability bit (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: TX, Error completion is for last WQE in batch (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: IPsec, fix memory leak at mlx5_fpga_ipsec_delete_sa_ctx (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: IPsec, Fix esp modify function attribute (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/core: Make the entire API tree static (Alaa Hleihel) [1789382]
+- [netdrv] mlx5: Use dev_net netdevice notifier registrations (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Return the administrative GUID if exists (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: DR, Allow connecting flow table to a lower/same level table (Alaa Hleihel) [1789384 1789382]
+- [netdrv] net/mlx5: DR, Modify header copy support (Alaa Hleihel) [1789384 1789382]
+- [netdrv] net/mlx5: DR, Modify set action limitation extension (Alaa Hleihel) [1789384 1789382]
+- [netdrv] net/mlx5e: Add mlx5e_flower_parse_meta support (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Fix printk format warning (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Allow creating autogroups with reserved entries (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Add ignore level support fwd to table rules (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: fs_core: Introduce unmanaged flow tables (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Refactor mlx5_create_auto_grouped_flow_table (Alaa Hleihel) [1789383 1789382]
+- [include] net/mlx5e: Expose FEC feilds and related capability bit (Alaa Hleihel) [1789382]
+- [include] net/mlx5: Add mlx5_ifc definitions for connection tracking support (Alaa Hleihel) [1789382]
+- [include] net/mlx5: Add copy header action struct layout (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Expose resource dump register mapping (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Add structures and defines for MIRC register (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Read MCAM register groups 1 and 2 (Alaa Hleihel) [1789382]
+- [include] net/mlx5: Add structures layout for new MCAM access reg groups (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Expose RoCE accelerator counters (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Set relaxed ordering when requested (Alaa Hleihel) [1789382]
+- [include] net/mlx5: Expose relaxed ordering bits (Alaa Hleihel) [1789382]
+- [include] net/mlx5: Add RoCE accelerator counters (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Fix handling of IOVA != user_va in ODP paths (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Mask out unsupported ODP capabilities for kernel QPs (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Don't fake udata for kernel path (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Add ODP WQE handlers for kernel QPs (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: Simplify devx async commands (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Add mmap support for VAR (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Introduce VAR object and its alloc/destroy methods (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Extend caps stage to handle VAR capabilities (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Expose vDPA emulation device capabilities (Alaa Hleihel) [1789382]
+- [include] net/mlx5: Add Virtio Emulation related device capabilities (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Use async EQ setup cleanup helpers for multiple EQs (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Reduce No CQ found log level from warn to debug (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Increase the max number of channels to 128 (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Support accept action on nic table (Alaa Hleihel) [1789382]
+- [netdrv] mlx5: work around high stack usage with gcc (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: limit the function in local scope (Alaa Hleihel) [1789382]
+- [infiniband] RDMA/mlx5: use true, false for bool variable (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Unify ODP MR code paths to allow extra flexibility (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Fix outstanding_pi index for GSI qps (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5: Add devlink reload (Alaa Hleihel) [1789382]
+- [netdrv] net/mlx5e: Set netdev name space on creation (Alaa Hleihel) [1789382]
+- [infiniband] IB/mlx5: Load profile according to RoCE enablement state (Alaa Hleihel) [1790200 1789382]
+- [netdrv] net/mlx5: Handle "enable_roce" devlink param (Alaa Hleihel) [1790200 1789382]
+- [fs] gfs2: Another gfs2_walk_metadata fix (Andreas Grunbacher) [1826419]
+- [nvme] nvmet-tcp: optimize tcp stack TX when data digest is used (Chris Leech) [1829540]
+- [nvme] nvmet-tcp: fix maxh2cdata icresp parameter (Chris Leech) [1829540]
+- [nvme] nvmet-tcp: set SO_PRIORITY for accepted sockets (Chris Leech) [1829540]
+- [nvme] nvmet-tcp: set MSG_MORE only if we actually have more to send (Chris Leech) [1829540]
+- [nvme] nvme-tcp: fix possible crash in recv error flow (Chris Leech) [1829540]
+- [nvme] nvme-tcp: don't poll a non-live queue (Chris Leech) [1829540]
+- [nvme] nvme-tcp: fix possible crash in write_zeroes processing (Chris Leech) [1829540]
+- [nvme] nvme-tcp: Add warning on state change failure at nvme_tcp_setup_ctrl (Chris Leech) [1829540]
+- [nvme] nvme: Make nvme_uninit_ctrl symmetric to nvme_init_ctrl (Chris Leech) [1829540]
+- [nvme] nvme: Fix ctrl use-after-free during sysfs deletion (Chris Leech) [1829540]
+- [nvme] nvme-tcp: break from io_work loop if recv failed (Chris Leech) [1829540]
+- [nvme] nvme-tcp: move send failure to nvme_tcp_try_send (Chris Leech) [1829540]
+- [nvme] nvme-tcp: optimize queue io_cpu assignment for multiple queue maps (Chris Leech) [1829540]
+- [nvme] nvme-tcp: Set SO_PRIORITY for all host sockets (Chris Leech) [1829540]
+- [nvme] nvme/tcp: fix bug on double requeue when send fails (Chris Leech) [1829540]
+- [nvme] Revert "nvme: Restart request timers in resetting state" (Chris Leech) [1829540]
+- [acpi] ACPI: processor: Export acpi_processor_evaluate_cst() (Steve Best) [1826415]
+- [acpi] ACPI: processor: Make ACPI_PROCESSOR_CSTATE depend on ACPI_PROCESSOR (Steve Best) [1826415]
+- [acpi] ACPI: processor: Clean up acpi_processor_evaluate_cst() (Steve Best) [1826415]
+- [acpi] ACPI: processor: Introduce acpi_processor_evaluate_cst() (Steve Best) [1826415]
+- [acpi] ACPI: processor: Export function to claim _CST control (Steve Best) [1826415]
+- [s390] s390/ftrace: fix potential crashes when switching tracers (Philipp Rudo) [1831796]
+- [net] net/smc: cancel event worker during device removal (Philipp Rudo) [1780665]
+- [net] net/smc: check for valid ib_client_data (Philipp Rudo) [1780665]
+- [net] net/smc: fix cleanup for linkgroup setup failures (Philipp Rudo) [1780665]
+- [net] net/smc: no peer ID in CLC decline for SMCD (Philipp Rudo) [1780665]
+- [net] net/smc: transfer fasync_list in case of fallback (Philipp Rudo) [1780665]
+- [net] net/smc: fix leak of kernel memory to user space (Philipp Rudo) [1780665]
+- [net] net/smc: allow unprivileged users to read pnet table (Philipp Rudo) [1780665]
+- [net] net/smc: unregister ib devices in reboot_event (Philipp Rudo) [1780665]
+- [net] net/smc: add fallback check to connect() (Philipp Rudo) [1780665]
+- [net] net/smc: shorten lgr_cnt initialization (Philipp Rudo) [1780665]
+- [net] net/smc: fix fastopen for non-blocking connect() (Philipp Rudo) [1780665]
+- [net] net/smc: remove unused constant (Philipp Rudo) [1780665]
+- [net] net/smc: use rcu_barrier() on module unload (Philipp Rudo) [1780665]
+- [net] net/smc: guarantee removal of link groups in reboot (Philipp Rudo) [1780665]
+- [net] net/smc: introduce bookkeeping of SMCR link groups (Philipp Rudo) [1780665]
+- [net] net/smc: immediate termination for SMCR link groups (Philipp Rudo) [1780665]
+- [net] net/smc: wait for tx completions before link freeing (Philipp Rudo) [1780665]
+- [net] net/smc: abnormal termination without orderly flag (Philipp Rudo) [1780665]
+- [net] net/smc: no WR buffer wait for terminating link group (Philipp Rudo) [1780665]
+- [net] net/smc: introduce bookkeeping of SMCD link groups (Philipp Rudo) [1780665]
+- [net] net/smc: abnormal termination of SMCD link groups (Philipp Rudo) [1780665]
+- [net] net/smc: immediate termination for SMCD link groups (Philipp Rudo) [1780665]
+- [net] net/smc: fix final cleanup sequence for SMCD devices (Philipp Rudo) [1780665]
+- [net] net/smc: fix refcount non-blocking connect() -part 2 (Philipp Rudo) [1780665]
+- [net] net/smc: fix ethernet interface refcounting (Philipp Rudo) [1780665]
+- [net] net/smc: fix refcounting for non-blocking connect() (Philipp Rudo) [1780665]
+- [net] net/smc: fix closing of fallback SMC sockets (Philipp Rudo) [1780665]
+- [net] net/smc: remove close abort worker (Philipp Rudo) [1780665]
+- [net] net/smc: introduce link group termination worker (Philipp Rudo) [1780665]
+- [net] net/smc: improve abnormal termination of link groups (Philipp Rudo) [1780665]
+- [net] net/smc: tell peers about abnormal link group termination (Philipp Rudo) [1780665]
+- [net] net/smc: improve link group freeing (Philipp Rudo) [1780665]
+- [net] net/smc: improve abnormal termination locking (Philipp Rudo) [1780665]
+- [net] net/smc: terminate link group without holding lgr lock (Philipp Rudo) [1780665]
+- [net] net/smc: cancel send and receive for terminated socket (Philipp Rudo) [1780665]
+- [net] net/smc: receive pending data after RCV_SHUTDOWN (Philipp Rudo) [1780665]
+- [net] net/smc: receive returns without data (Philipp Rudo) [1780665]
+- [net] net/smc: fix SMCD link group creation with VLAN id (Philipp Rudo) [1780665]
+- [net] net/smc: improve close of terminated socket (Philipp Rudo) [1780665]
+- [net] net/smc: no new connections on disappearing devices (Philipp Rudo) [1780665]
+- [net] net/smc: increase device refcount for added link group (Philipp Rudo) [1780665]
+- [net] net/smc: separate locks for SMCD and SMCR link group lists (Philipp Rudo) [1780665]
+- [net] net/smc: separate SMCD and SMCR link group lists (Philipp Rudo) [1780665]
+- [net] net/smc: original socket family in inet_sock_diag (Philipp Rudo) [1780665]
+- [infiniband] RDMA/bnxt_re: Use rdma_read_gid_hw_context to retrieve HW gid index (Kamal Heib) [1828601]
+- [infiniband] RDMA/core: Add helper function to retrieve driver gid context from gid attr (Kamal Heib) [1828601]
+- [media] media: videobuf2-v4l2: drop WARN_ON in vb2_warn_zero_bytesused() (Vladis Dronov) [1825616] {CVE-2019-9455}
+- [net] SUNRPC: Fix initialisation of struct rpc_xprt_switch (Steve Dickson) [1683394]
+- [net] SUNRPC: add links for all client xprts to debugfs (Steve Dickson) [1683394]
+- [net] SUNRPC: enhance rpc_clnt_show_stats() to report on all xprts (Steve Dickson) [1683394]
+- [net] SUNRPC: Fix transport accounting when caller specifies an rpc_xprt (Steve Dickson) [1683394]
+- [fs] NFS: send state management on a single connection (Steve Dickson) [1683394]
+- [net] SUNRPC: Add basic load balancing to the transport switch (Steve Dickson) [1683394]
+- [net] SUNRPC: Fix up task signalling (Steve Dickson) [1683394]
+- [fs] NFS: Allow multiple connections to a NFSv2 or NFSv3 server (Steve Dickson) [1683394]
+- [fs] NFS: Display the "nconnect" mount option if it is set (Steve Dickson) [1683394]
+- [fs] pNFS: Allow multiple connections to the DS (Steve Dickson) [1683394]
+- [fs] NFSv4: Allow multiple connections to NFSv4.x (x>0) servers (Steve Dickson) [1683394]
+- [fs] NFS: Add a mount option to specify number of TCP connections to use (Steve Dickson) [1683394]
+- [net] SUNRPC: Allow creation of RPC clients with multiple connections (Steve Dickson) [1683394]
+- [net] netlabel: cope with NULL catmap (Paolo Abeni) [1827251] {CVE-2020-10711}
+- [scsi] scsi: qla2xxx: fix a potential NULL pointer dereference ("Ewan D. Milne") [1829250] {CVE-2019-16233}
+- [input] Input: ff-memless - kill timer in destroy() (Chris von Recklinghausen) [1815024] {CVE-2019-19524}
+
+* Wed May 13 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-199.el8]
+- [netdrv] net/mlx5e: kTLS, Do not send decrypted-marked SKBs via non-accel path (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: kTLS, Remove redundant posts in TX resync flow (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: kTLS, Fix corner-case checks in TX resync flow (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: E-Switch, Prevent ingress rate configuration of uplink rep (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Update the list of the PCI supported devices (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Fix lowest FDB pool size (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Fix hairpin RSS table size (Alaa Hleihel) [1789380]
+- [netdrv] Revert "net/mlx5: Support lockless FTE read lookups" (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Move devlink registration before interfaces load (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Always print health reporter message to dmesg (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Avoid duplicating rule destinations (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Fix device memory flows (Alaa Hleihel) [1789380]
+- [netdrv] treewide: Use sizeof_field() macro (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: E-switch, Fix Ingress ACL groups in switchdev mode for prio tag (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Fix build error without IPV6 (Alaa Hleihel) [1789380]
+- [netdrv] net: use rhashtable_lookup() instead of rhashtable_lookup_fast() (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Remove redundant pointer check (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: TC, Stub out ipv6 tun create header function (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: DR, Add support for Geneve packets SW steering (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: DR, Add HW bits and definitions for Geneve flex parser (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: DR, Refactor VXLAN GPE flex parser tunnel code for SW steering (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Don't write read-only fields in MODIFY_HCA_VPORT_CONTEXT command (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Implement callbacks for getting VFs GUID attributes (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Rx, Update page pool numa node when changed (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Support extended number of strides for Striding RQ (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Remove redundant NULL initializations (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Add new chain for netfilter flow table offload (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Refactor creating fast path prio chains (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Accumulate levels for chains prio namespaces (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Define fdb tc levels per prio (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Rename FDB_* tc related defines to FDB_TC_* defines (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Simplify fdb chain and prio eswitch defines (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Support flow counters offset for bulk counters (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Dump of fw_fatal use updated devlink binary interface (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Rename profile and init methods (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: fix spelling mistake "metdata" -> "metadata" (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: fix kvfree of uninitialized pointer spec (Alaa Hleihel) [1789380]
+- [infiniband] IB: mlx5: no need to check return value of debugfs_create functions (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: LAG, Use port enumerators (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: rate limit alloc_ent error messages (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Add ToS (DSCP) header rewrite support (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Bit sized fields rewrite support (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: WQ, Move short getters into header file (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: TX, Dump WQs wqe descriptors on CQE with error events (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Support lockless FTE read lookups (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Do not hold group lock while allocating FTE in software (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Verify that rule has at least one fwd/drop action (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Remove unneeded variable in mlx5_unload_one (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: FPGA, support network cards with standalone FPGA (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Introduce and use mlx5_core_is_vf() (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Refactor ingress acl configuration (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Restrict metadata disablement to offloads mode (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: E-switch, Offloads shift ACL programming during enable/disable vport (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: E-switch, Offloads introduce and use per vport acl tables APIs (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Move ACL drop counters life cycle close to ACL lifecycle (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: E-switch, Legacy introduce and use per vport acl tables APIs (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: E-switch, Prepare code to handle vport enable error (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Tide up state_lock and vport enabled flag usage (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Move legacy drop counter and rule under legacy structure (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Move metdata fields under offloads structure (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: Introduce and use mlx5_esw_is_manager_vport() (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: E-switch, Introduce and use vlan rule config helper (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: E-Switch, Rename ingress acl config in offloads mode (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5: E-Switch, Rename egress config to generic name (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Test write combining support (Alaa Hleihel) [1789380]
+- [netdrv] net: Fix misspellings of "configure" and "configuration" (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Do not race with mlx5_ib_invalidate_range during create and destroy (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Do not store implicit children in the odp_mkeys xarray (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Rework implicit ODP destroy (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Avoid double lookups on the pagefault path (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Reduce locking in implicit_mr_get_data() (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Use an xarray for the children of an implicit ODP (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Split implicit handling from pagefault_mr (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Set the HW IOVA of the child MRs to their place in the tree (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Lift implicit_mr_alloc() into the two routines that call it (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Rework implicit_mr_get_data (Alaa Hleihel) [1789380]
+- [netdrv] RDMA/mlx5: Delete struct mlx5_priv->mkey_table (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Use a dedicated mkey xarray for ODP (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Split sig_err MR data into its own xarray (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Use SRCU properly in ODP prefetch (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Align usage of QP1 create flags with rest of mlx5 defines (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Add capability for max sge to get optimized performance (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Introduce and use mkey context setting helper routine (Alaa Hleihel) [1789380]
+- [include] net/mlx5: Expose optimal performance scatter entries capability (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Remove unnecessary else statement (Alaa Hleihel) [1789380]
+- [infiniband] IB/mlx5: Remove unnecessary return statement (Alaa Hleihel) [1789380]
+- [infiniband] RDMA/mlx5: Group boolean parameters to take less space (Alaa Hleihel) [1789380]
+- [netdrv] net/mlx5e: Add missing capability bit check for IP-in-IP (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Fix ingress rate configuration for representors (Alaa Hleihel) [1789378]
+- [netdrv] mlx5: reject unsupported external timestamp flags (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Replace kfree with kvfree when free vhca stats (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Remove incorrect match criteria assignment line (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Enhance TX resync flow (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Save a copy of the crypto info (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Remove unneeded cipher type checks (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Limit DUMP wqe size (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Fix missing SQ edge fill (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Fix page refcnt leak in TX resync error flow (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Save by-value copy of the record frags (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Save only the frag page to release at completion (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Size of a Dump WQE is fixed (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Release reference on DUMPed fragments in shutdown flow (Alaa Hleihel) [1789378]
+- [infiniband] RDMA/mlx5: Put live in the correct place for ODP MRs (Alaa Hleihel) [1789378]
+- [infiniband] RDMA/odp: Lift umem_mutex out of ib_umem_odp_unmap_dma_pages() (Alaa Hleihel) [1789378]
+- [netdrv] drivers: net: Fix Kconfig indentation (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: DR, Remove redundant dev_name print from err log (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: DR, Remove useless set memory to zero use memset() (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: kTLS, Remove unused function parameter (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Use PTR_ERR_OR_ZERO rather than its implementation (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Use ipv6_stub to avoid dependency with ipv6 being a module (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Kconfig: Fix MLX5_CORE dependency with PCI_HYPERV_INTERFACE (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Fix static checker warning of potential pointer math issue (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Remove unlikely() from WARN*() condition (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Support TSO and TX checksum offloads for IP-in-IP tunnels (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Improve stateless offload capability check (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Support RSS for IP-in-IP and IPv6 tunneled packets (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Change function's position to a more fitting file (Alaa Hleihel) [1789378]
+- [infiniband] IB/mlx5: Add page fault handler for DC initiator WQE (Alaa Hleihel) [1789378]
+- [infiniband] IB/mlx5: Remove check of FW capabilities in ODP page fault handling (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Set ODP capabilities for DC transport to max (Alaa Hleihel) [1789378]
+- [infiniband] RDMA/mlx5: RDMA_RX flow type support for user applications (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Fix return code in case of hyperv wrong size read (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Add mlx5e HV VHCA stats agent (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Add HV VHCA control agent (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Add HV VHCA infrastructure (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Add wrappers for HyperV PCIe operations (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Add trace point for neigh update (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Add trace point for neigh used value update (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Add tc flower tracepoints (Alaa Hleihel) [1789378]
+- [infiniband] RDMA/mlx5: Use odp instead of mr->umem in pagefault_mr (Alaa Hleihel) [1789378]
+- [infiniband] RDMA/mlx5: Use ib_umem_start instead of umem.address (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Create bypass and loopback flow steering namespaces for RDMA RX (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Add per-namespace flow table default miss action support (Alaa Hleihel) [1789378]
+- [include] net/mlx5: Expose IP-in-IP capability bit (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Improve functions documentation (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Report and recover from CQE with error on RQ (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: RX, Handle CQE with error at the earliest stage (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Report and recover from rx timeout (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Report and recover from CQE error on ICOSQ (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Split open/close ICOSQ into stages (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Add support to rx reporter diagnose (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Add helper functions for reporter's basics (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Add cq info to tx reporter diagnose (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Extend tx reporter diagnostics output (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Extend tx diagnose function (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Generalize tx reporter's functionality (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Change naming convention for reporter's functions (Alaa Hleihel) [1790198 1789378]
+- [netdrv] net/mlx5e: Rename reporter header file (Alaa Hleihel) [1790198 1789378]
+- [infiniband] RDMA/mlx5: Annotate lock dependency in bind/unbind slave port (Alaa Hleihel) [1789378]
+- [infiniband] IB/mlx5: Expose XRQ legacy commands over the DEVX interface (Alaa Hleihel) [1789378]
+- [infiniband] IB/mlx5: Add legacy events to DEVX list (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Add XRQ legacy commands opcodes (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: Use debug message instead of warn (Alaa Hleihel) [1789378]
+- [netdrv] mlx5: no need to check return value of debugfs_create functions (Alaa Hleihel) [1789378]
+- [infiniband] mlx5: Use refcount_t for refcount (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Allow dropping specific tunnel packets (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: TX reporter cleanup (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Set tx reporter only on successful creation (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Rx, checksum handling refactoring (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Tx, Soften inline mode VLAN dependencies (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: XDP, Slight enhancement for WQE fetch function (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: XDP, Close TX MPWQE session when no room for inline packet left (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: Tx, Strict the room needed for SQ edge NOPs (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5: E-Switch, add ingress rate support (Alaa Hleihel) [1789378]
+- [infiniband] RDMA/mlx5: Remove DEBUG ODP code (Alaa Hleihel) [1789378]
+- [infiniband] IB/mlx5: Add CREATE_PSV/DESTROY_PSV for devx interface (Alaa Hleihel) [1789378]
+- [infiniband] IB/mlx5: Avoid unnecessary typecast (Alaa Hleihel) [1789378]
+- [netdrv] net/mlx5e: xsk: dynamically allocate mlx5e_channel_param (Alaa Hleihel) [1789378]
+- [netdrv] net: Use skb accessors in network drivers (Alaa Hleihel) [1789378]
+- [char] tpm: Export tpm2_get_cc_attrs_tbl for ibmvtpm driver as module (David Gibson) [1781915]
+- [char] tpm: ibmvtpm: Add support for TPM2 (David Gibson) [1781915]
+- [char] tpm: of: Handle IBM, vtpm20 case when getting log parameters (David Gibson) [1781915]
+- [wireless] iwlwifi: mvm: Do not require PHY_SKU NVM section for 3168 devices (Jarod Wilson) [1807052]
+- [wireless] mwifiex: set needed_headroom, not hard_header_len (Jarod Wilson) [1807052]
+- [wireless] ath9k: Handle txpower changes even when TPC is disabled (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x02: fix coverage_class type (Jarod Wilson) [1807052]
+- [wireless] rtw88: Use kfree_skb() instead of kfree() (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: abort and release host after error (Jarod Wilson) [1807052]
+- [wireless] ath11k: Silence clang -Wsometimes-uninitialized in ath11k_update_per_peer_stats_from_txcompl (Jarod Wilson) [1807052]
+- [wireless] ath10k: Call cpu_latency_qos_*() instead of pm_qos_*() (Jarod Wilson) [1807052]
+- [net] mac80211: fix authentication with iwlwifi/mvm (Jarod Wilson) [1807052]
+- [net] mac80211: set IEEE80211_TX_CTRL_PORT_CTRL_PROTO for nl80211 TX (Jarod Wilson) [1807052]
+- [net] mac80211: mark station unauthorized before key removal (Jarod Wilson) [1807052]
+- [net] mac80211: Check port authorization in the ieee80211_tx_dequeue() case (Jarod Wilson) [1807052]
+- [net] cfg80211: Do not warn on same channel at the end of CSA (Jarod Wilson) [1807052]
+- [net] mac80211: drop data frames without key on encrypted links (Jarod Wilson) [1807052]
+- [net] nl80211: fix NL80211_ATTR_CHANNEL_WIDTH attribute type (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: don't send GEO_TX_POWER_LIMIT if no wgds table (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: add 0x2526/0x401* devices back to cfg detection (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8188ee: Fix regression due to commit d1d1a96bdb44 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: cfg: use antenna diversity with all AX101 devices (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: Fix rate scale NSS configuration (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg: don't abort if sending DBGC_SUSPEND_RESUME fails (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: yoyo: don't add TLV offset when reading FIFOs (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: check allocated pointer when allocating conf_tlvs (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: consider HE capability when setting LDPC (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: take the required lock when clearing time event data (Jarod Wilson) [1807052]
+- [net] mac80211: Do not send mesh HWMP PREQ if HWMP is disabled (Jarod Wilson) [1807052]
+- [net] nl80211: add missing attribute validation for channel switch (Jarod Wilson) [1807052]
+- [net] nl80211: add missing attribute validation for beacon report scanning (Jarod Wilson) [1807052]
+- [net] nl80211: add missing attribute validation for critical protocol indication (Jarod Wilson) [1807052]
+- [wireless] mt76: fix array overflow on receiving too many fragments for a packet (Jarod Wilson) [1807052]
+- [net] mac80211: rx: avoid RCU list traversal under mutex (Jarod Wilson) [1807052]
+- [net] nl80211: explicitly include if_vlan.h (Jarod Wilson) [1807052]
+- [net] mac80211: Remove a redundant mutex unlock (Jarod Wilson) [1807052]
+- [net] cfg80211: check reg_rule for NULL in handle_channel_custom() (Jarod Wilson) [1807052]
+- [net] nl80211: fix potential leak in AP start (Jarod Wilson) [1807052]
+- [net] mac80211: fix wrong 160/80+80 MHz setting (Jarod Wilson) [1807052]
+- [net] cfg80211: add missing policy for NL80211_ATTR_STATUS_CODE (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: fix max_nss in mt7615_eeprom_parse_hw_cap (Jarod Wilson) [1807052]
+- [net] cfg80211: check wiphy driver existence for drvinfo report (Jarod Wilson) [1807052]
+- [net] mac80211: consider more elements in parsing CRC (Jarod Wilson) [1807052]
+- [net] mac80211: fix quiet mode activation in action frames (Jarod Wilson) [1807052]
+- [net] mac80211: use more bits for ack_frame_id (Jarod Wilson) [1807052]
+- [wireless] rtw88: Fix return value of rtw_wow_check_fw_status (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: d3: read all FW CPUs error info (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: fix TDLS discovery with the new firmware API (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: Check the sta is not NULL in iwl_mvm_cfg_he_sta() (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: avoid use after free for pmsr request (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: update the DTS measurement type (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: don't throw error when trying to remove IGTK (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: Fix thermal zone registration (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: use <linux/units.h> helpers (Jarod Wilson) [1807052]
+- [wireless] mwifiex: Fix possible buffer overflows in mwifiex_cmd_append_vsie_tlv() (Jarod Wilson) [1807052]
+- [wireless] mwifiex: Fix possible buffer overflows in mwifiex_ret_wmm_get_status() (Jarod Wilson) [1807052]
+- [wireless] mwifiex: fix unbalanced locking in mwifiex_process_country_ie() (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: btcoex: fix spelling mistake "initilized" -> "initialized" (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8723ae: remove unused variables (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ee: remove unused variables (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8821ae: remove unused variables (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8188ee: remove redundant assignment to variable cond (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: Remove always false 'idx < 0' statement (Jarod Wilson) [1807052]
+- [wireless] rtw88: use shorter delay time to poll PS state (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix potential NULL skb access in TX ISR (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: add initial support for monitor mode (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: simplify building interface combinations (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: sdio: Fix OOB interrupt initialization on brcm43362 (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: use true,false for bool variable (Jarod Wilson) [1807052]
+- [wireless] rtw88: use true,false for bool variable (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8821ae: Make functions static & rm sw.h (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8723be: Make functions static & rm sw.h (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8723ae: Make functions static & rm sw.h (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192se: Remove sw.h header (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ee: Make functions static & rm sw.h (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192cu: Remove sw.h header (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ce: Make functions static & rm sw.h (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8188ee: Make functions static & rm sw.h (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192cu: Fix typo (Jarod Wilson) [1807052]
+- [wireless] rtw88: change max_num_of_tx_queue() definition to inline in pci.h (Jarod Wilson) [1807052]
+- [wireless] rtw88: assign NULL to skb after being kfree()'ed (Jarod Wilson) [1807052]
+- [wireless] rtw88: use rtw_hci_stop() instead of rtwdev->hci.ops->stop() (Jarod Wilson) [1807052]
+- [wireless] rtw88: remove unused vif pointer in struct rtw_vif (Jarod Wilson) [1807052]
+- [wireless] rtw88: remove unused variable 'in_lps' (Jarod Wilson) [1807052]
+- [wireless] rtw88: remove unused spinlock (Jarod Wilson) [1807052]
+- [wireless] rtw88: 8822c: update power sequence to v15 (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix TX secondary channel offset of 40M if current bw is 20M or 40M (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix rate mask for 1SS chip (Jarod Wilson) [1807052]
+- [wireless] rtw88: Add wowlan net-detect support (Jarod Wilson) [1807052]
+- [wireless] rtw88: Add wowlan pattern match support (Jarod Wilson) [1807052]
+- [wireless] rtw88: support wowlan feature for 8822c (Jarod Wilson) [1807052]
+- [wireless] rtw88: load wowlan firmware if wowlan is supported (Jarod Wilson) [1807052]
+- [wireless] rtw88: add interface config for 8822c (Jarod Wilson) [1807052]
+- [wireless] rtw88: pci: reset dma when reset pci trx ring (Jarod Wilson) [1807052]
+- [wireless] rtw88: pci: reset ring index when release skbs in tx ring (Jarod Wilson) [1807052]
+- [wireless] ath10k: Use device_get_match_data() to simplify code (Jarod Wilson) [1807052]
+- [wireless] ath10k: Add newlines to printk messages (Jarod Wilson) [1807052]
+- [wireless] ath10k: Correct the DMA direction for management tx buffers (Jarod Wilson) [1807052]
+- [wireless] mwifiex: drop most magic numbers from mwifiex_process_tdls_action_frame() (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix up some error paths (Jarod Wilson) [1807052]
+- [wireless] ath11k: make sure to also report the RX bandwidth inside radiotap (Jarod Wilson) [1807052]
+- [wireless] ath11k: avoid null pointer dereference when pointer band is null (Jarod Wilson) [1807052]
+- [wireless] ath11k: Add missing pdev rx rate stats (Jarod Wilson) [1807052]
+- [wireless] ath11k: ensure ts.flags is initialized before bit-wise or'ing in values (Jarod Wilson) [1807052]
+- [wireless] ath11k: set TxBf parameters after vdev start (Jarod Wilson) [1807052]
+- [wireless] ath11k: enable HE tlvs in ppdu stats for pktlog lite (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix debugfs build failure (Jarod Wilson) [1807052]
+- [wireless] ath10k: Don't call SCM interface for statically mapped msa region (Jarod Wilson) [1807052]
+- [wireless] Revert "ath10k: fix DMA related firmware crashes on multiple devices" (Jarod Wilson) [1807052]
+- [wireless] ath10k: drop RX skb with invalid length for sdio (Jarod Wilson) [1807052]
+- [wireless] ath10k: use true,false for bool variable (Jarod Wilson) [1807052]
+- [wireless] ath10k: Add optional qdss clk (Jarod Wilson) [1807052]
+- [wireless] ath10k: pci: Fix comment on ath10k_pci_dump_memory_sram (Jarod Wilson) [1807052]
+- [wireless] ath10k: pci: Only dump ATH10K_MEM_REGION_TYPE_IOREG when safe (Jarod Wilson) [1807052]
+- [wireless] ath9k: use true,false for bool variable (Jarod Wilson) [1807052]
+- [net] net: mac80211: use skb_list_walk_safe helper for gso segments (Jarod Wilson) [1807052]
+- [wireless] net: iwlwifi: use skb_list_walk_safe helper for gso segments (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: add device name to device_info (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: implement a new device configuration table (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: assume the driver_data is a trans_cfg, but allow full cfg (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: prph: remove some unused register definitions (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: print out extended secboot status before dump (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: incorporate firmware filename into version (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: yoyo: check for the domain on all TLV types during init (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: add new iwlax411 struct for type SoSnj (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: yoyo: remove the iwl_dbg_tlv_gen_active_trigs() function (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: yoyo: remove unnecessary active triggers status flag (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: yoyo: don't allow changing the domain via debugfs (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: Update BEACON_TEMPLATE_CMD firmware API (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: remove CSR registers abstraction (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: remove some outdated iwl22000 configurations (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: validate queue ID before array deref/bit ops (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: use partial pages if applicable (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: map only used part of RX buffers (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: allocate more receive buffers for HE devices (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: add support for responder config command version 7 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: add support for location range request version 8 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: scan: remove support for fw scan api v11 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: don't skip a TX FIFO when dumping (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: update powersave correctly for D3 (Jarod Wilson) [1807052]
+- [wireless] ath11k: Use sizeof_field() instead of FIELD_SIZEOF() (Jarod Wilson) [1807052]
+- [wireless] ath11k: explicitly cast wmi commands to their correct struct type (Jarod Wilson) [1807052]
+- [wireless] orinoco: avoid assertion in case of NULL pointer (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: Keep OOB wake-interrupt disabled when it shouldn't be enabled (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: Fix memory leak in brcmf_usbdev_qinit (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: not set mbss in vif if firmware does not support MBSS (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: add RSDB condition when setting interface combinations (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: add support for BCM4359 SDIO chipset (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: make errors when setting roaming parameters non-fatal (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: fix rambase for 4359/9 (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: set F2 blocksize and watermark for 4359 (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: reset two D11 cores if chip has two D11 cores (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: use generic rtl_signal_scale_mapping (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192cu: use generic rtl_signal_scale_mapping (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ce: use generic rtl_signal_scale_mapping (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: use generic rtl_query_rxpwrpercentage (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192cu: use generic rtl_query_rxpwrpercentage (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ce: use generic rtl_query_rxpwrpercentage (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: fix interface sanity check (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: fix interface sanity check (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: set interface carrier to off by default (Jarod Wilson) [1807052]
+- [wireless] mwifiex: delete unused mwifiex_get_intf_num() (Jarod Wilson) [1807052]
+- [wireless] rt2x00usb: Fix a warning message in 'rt2x00usb_watchdog_tx_dma()' (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: Fix use after free in brcmf_sdio_readframes() (Jarod Wilson) [1807052]
+- [wireless] rt2x00: use RESET state bit to prevent IV changes on restart (Jarod Wilson) [1807052]
+- [wireless] rt2x00: implement reconfig_complete (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl_pci: Fix -Wcast-function-type (Jarod Wilson) [1807052]
+- [wireless] brcmsmac: Remove always false 'channel < 0' statement (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: Remove last definitions of local bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8723be: Remove usage of private bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8723ae: Remove usage of private bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ee: Remove usage of private bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl88821ae: Remove usage of private bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: Remove dependence on special bit manipulation macros for common driver (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ce: rtl8192c_com: Remove usage of private bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8188ee: Remove usage of private bit manipulation (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: Remove usage of private bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: Convert inline routines to little-endian words (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: Convert macros that set descriptor (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: Replace local bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: Remove unused GET_XXX and SET_XXX macros (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: Fix memory leak in brcmf_p2p_create_p2pdev() (Jarod Wilson) [1807052]
+- [wireless] ath9k: fix storage endpoint lookup (Jarod Wilson) [1807052]
+- [wireless] ath11k: Remove unneeded semicolon (Jarod Wilson) [1807052]
+- [wireless] ath11k: remove an unneeded NULL check (Jarod Wilson) [1807052]
+- [wireless] ath11k: checking for NULL vs IS_ERR() (Jarod Wilson) [1807052]
+- [wireless] ath11k: delete a stray unlock in ath11k_dbg_htt_stats_req() (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix missing free of skb on error return path (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix uninitialized variable radioup (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix memory leak on reg_info (Jarod Wilson) [1807052]
+- [wireless] ath11k: Remove unnecessary enum scan_priority (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix several spelling mistakes (Jarod Wilson) [1807052]
+- [wireless] ath11k: add some missing __packed qualifiers (Jarod Wilson) [1807052]
+- [wireless] ath11k: set the BA buffer size to 256 when HE is enabled (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix pdev when invoking ath11k_wmi_send_twt_enable_cmd() (Jarod Wilson) [1807052]
+- [wireless] ath11k: optimize ath11k_hal_tx_status_parse (Jarod Wilson) [1807052]
+- [wireless] ath11k: optimise ath11k_dp_tx_completion_handler (Jarod Wilson) [1807052]
+- [wireless] ath11k: move some tx_status parsing to debugfs code (Jarod Wilson) [1807052]
+- [wireless] ath11k: rename ath11k_wmi_base instances from wmi_sc to wmi_ab (Jarod Wilson) [1807052]
+- [wireless] ath11k: drop memset when setting up a tx cmd desc (Jarod Wilson) [1807052]
+- [wireless] ath11k: disable PS for STA interfaces by default upon bringup (Jarod Wilson) [1807052]
+- [wireless] ath11k: add wmi helper for turning STA PS on/off (Jarod Wilson) [1807052]
+- [wireless] ath10k: Fix some typo in some warning messages (Jarod Wilson) [1807052]
+- [wireless] ath11k: register HE mesh capabilities (Jarod Wilson) [1807052]
+- [net] netlink: rename nl80211_validate_nested() to nla_validate_nested() (Jarod Wilson) [1807052]
+- [wireless] wireless/mediatek: Replace rcu_swap_protected() with rcu_replace_pointer() (Jarod Wilson) [1807052]
+- [wireless] ath: add support for special 0x0 regulatory domain (Jarod Wilson) [1807052]
+- [wireless] ath10k: change bundle count for max rx bundle for sdio (Jarod Wilson) [1807052]
+- [wireless] ath10k: enable napi on RX path for sdio (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix indentation in ath11k_mac_prepare_he_mode() (Jarod Wilson) [1807052]
+- [wireless] ath11k: Setup REO destination ring before sending wmi_init command (Jarod Wilson) [1807052]
+- [wireless] ath11k: Move mac80211 hw allocation before wmi_init command (Jarod Wilson) [1807052]
+- [wireless] ath11k: Skip update peer stats for management packets (Jarod Wilson) [1807052]
+- [wireless] ath11k: update tx duration in station info (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix vht guard interval mapping (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix memory leak in monitor mode (Jarod Wilson) [1807052]
+- [wireless] ath11k: Advertise MPDU start spacing as no restriction (Jarod Wilson) [1807052]
+- [wireless] ath11k: Update tx and rx chain count properly on drv_set_antenna (Jarod Wilson) [1807052]
+- [wireless] ath11k: add necessary peer assoc params in wmi dbg (Jarod Wilson) [1807052]
+- [wireless] ath11k: unlock mutex during failure in qmi fw ready (Jarod Wilson) [1807052]
+- [wireless] ath11k: add support for controlling tx power to a station (Jarod Wilson) [1807052]
+- [wireless] ath11k: update bawindow size in delba process (Jarod Wilson) [1807052]
+- [wireless] ath11k: avoid use_after_free in ath11k_dp_rx_msdu_coalesce API (Jarod Wilson) [1807052]
+- [wireless] ath11k: avoid burst time conversion logic (Jarod Wilson) [1807052]
+- [wireless] ath11k: pktlog: fix sending/using the pdev id (Jarod Wilson) [1807052]
+- [wireless] ath11k: qmi clean up in ath11k_qmi_wlanfw_wlan_cfg_send() (Jarod Wilson) [1807052]
+- [wireless] ath11k: qmi clean up ce and HTC service config update (Jarod Wilson) [1807052]
+- [wireless] ath11k: tracing: fix ath11k tracing (Jarod Wilson) [1807052]
+- [wireless] ath10k: enable wow feature for sdio chip (Jarod Wilson) [1807052]
+- [wireless] ath10k: change log level for mpdu status of sdio chip (Jarod Wilson) [1807052]
+- [wireless] ath10k: set WMI_PEER_AUTHORIZE after a firmware crash (Jarod Wilson) [1807052]
+- [wireless] ath10k: set max mtu to 1500 for sdio chip (Jarod Wilson) [1807052]
+- [wireless] ath10k: enable firmware log by default for sdio (Jarod Wilson) [1807052]
+- [wireless] ath11k: Fix target crash due to WBM_IDLE_LINK ring desc shortage (Jarod Wilson) [1807052]
+- [wireless] ath11k: Fixing TLV length issue in peer pktlog WMI command (Jarod Wilson) [1807052]
+- [wireless] ath11k: Fix skb_panic observed during msdu coalescing (Jarod Wilson) [1807052]
+- [wireless] ath11k: remove unused tx ring counters (Jarod Wilson) [1807052]
+- [wireless] ath11k: avoid WMM param truncation (Jarod Wilson) [1807052]
+- [wireless] ath11k: optimize RX path latency (Jarod Wilson) [1807052]
+- [wireless] ath11k: update tcl cmd descriptor parameters for STA mode (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix wmi service ready ext tlv parsing (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix resource leak in ath11k_mac_sta_state (Jarod Wilson) [1807052]
+- [wireless] ath11k: Fix htt stats sounding info and pdev cca stats (Jarod Wilson) [1807052]
+- [wireless] ath10k: move non-fatal warn logs to dbg level (Jarod Wilson) [1807052]
+- [wireless] ath11k: add spatial reuse support (Jarod Wilson) [1807052]
+- [wireless] ath11k: add TWT support (Jarod Wilson) [1807052]
+- [wireless] ath11k: add HE support (Jarod Wilson) [1807052]
+- [wireless] ath11k: Remove dead code while handling amsdu packets (Jarod Wilson) [1807052]
+- [wireless] ath11k: fix missed bw conversion in tx completion (Jarod Wilson) [1807052]
+- [wireless] ath11k: convert message from info to dbg (Jarod Wilson) [1807052]
+- [wireless] ath11k: ignore event 0x6017 (Jarod Wilson) [1807052]
+- [wireless] ath11k: add RX stats support for radiotap (Jarod Wilson) [1807052]
+- [wireless] ath11k: driver for Qualcomm IEEE 802.11ax devices (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix RX of frames with broken FCS in monitor mode (Jarod Wilson) [1807052]
+- [wireless] ath10k: report rssi of each chain to mac80211 for sdio (Jarod Wilson) [1807052]
+- [wireless] ath10k: Handle "invalid" BDFs for msm8998 devices (Jarod Wilson) [1807052]
+- [wireless] ath10k: Fix qmi init error handling (Jarod Wilson) [1807052]
+- [wireless] ath10k: add NL80211_FEATURE_ND_RANDOM_MAC_ADDR for NLO (Jarod Wilson) [1807052]
+- [wireless] ath10k: Handle when FW doesn't support QMI_WLFW_HOST_CAP_REQ_V01 (Jarod Wilson) [1807052]
+- [wireless] ath10k: add large size for BMI download data for SDIO (Jarod Wilson) [1807052]
+- [wireless] ath10k: correct the tlv len of ath10k_wmi_tlv_op_gen_config_pno_start (Jarod Wilson) [1807052]
+- [wireless] ath10k: sdio: remove struct ath10k_sdio_rx_data::status (Jarod Wilson) [1807052]
+- [wireless] ath10k: sdio: cosmetic cleanup (Jarod Wilson) [1807052]
+- [wireless] ath10k: add workqueue for RX path of sdio (Jarod Wilson) [1807052]
+- [wireless] ath10k: change max RX bundle size from 8 to 32 for sdio (Jarod Wilson) [1807052]
+- [wireless] ath10k: enable RX bundle receive for sdio (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: don't send the IWL_MVM_RXQ_NSSN_SYNC notif to Rx queues (Jarod Wilson) [1807052]
+- [net] cfg80211: fix page refcount issue in A-MSDU decap (Jarod Wilson) [1807052]
+- [net] cfg80211: check for set_wiphy_params (Jarod Wilson) [1807052]
+- [net] cfg80211: fix memory leak in cfg80211_cqm_rssi_update (Jarod Wilson) [1807052]
+- [net] cfg80211: fix memory leak in nl80211_probe_mesh_link (Jarod Wilson) [1807052]
+- [net] cfg80211: fix deadlocks in autodisconnect work (Jarod Wilson) [1807052]
+- [net] wireless: wext: avoid gcc -O3 warning (Jarod Wilson) [1807052]
+- [net] mac80211: Fix TKIP replay protection immediately after key setup (Jarod Wilson) [1807052]
+- [net] cfg80211: Fix radar event during another phy CAC (Jarod Wilson) [1807052]
+- [net] wireless: fix enabling channel 12 for custom regulatory domain (Jarod Wilson) [1807052]
+- [net] mac80211: mesh: restrict airtime metric to peered established plinks (Jarod Wilson) [1807052]
+- [wireless] Revert "iwlwifi: mvm: fix scan config command size" (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: fw: make pos static in iwl_sar_get_ewrd_table() loop (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: remove lar_disable module parameter (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg: force stop the debug monitor HW (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: always disable L0S states (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: rename L0S_ENABLED bit to L0S_DISABLED (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: fix potential SKB leak on TXQ TX (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: fix SKB leak on invalid queue (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: extend hardware workaround to context-info (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: Don't ignore the cap field upon mcc update (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: report TX rate to mac80211 directly for RS offload (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: fix NVM check for 3168 devices (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: fix TLV fragment allocation loop (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: allocate smaller dev_cmd for TX headers (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: detect the DMA bug and warn if it happens (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: work around DMA hardware bug (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: move page tracking into get_page_hdr() (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: don't send PPAG command if disabled (Jarod Wilson) [1807052]
+- [wireless] mt76: Off by one in mt76_calc_rx_airtime() (Jarod Wilson) [1807052]
+- [wireless] mt76: fix LED link time failure (Jarod Wilson) [1807052]
+- [net] mac80211: Turn AQL into an NL80211_EXT_FEATURE (Jarod Wilson) [1807052]
+- [net] mac80211: airtime: Fix an off by one in ieee80211_calc_rx_airtime() (Jarod Wilson) [1807052]
+- [net] cfg80211: fix double-free after changing network namespace (Jarod Wilson) [1807052]
+- [net] mac80211: fix TID field in monitor mode transmit (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: move power gating workaround earlier in the flow (Jarod Wilson) [1807052]
+- [wireless] Revert "iwlwifi: assign directly to iwl_trans->cfg in QuZ detection" (Jarod Wilson) [1807052]
+- [wireless] wireles: Use sizeof_field() macro (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x0: fix default mac address overwrite (Jarod Wilson) [1807052]
+- [wireless] ath9k: use iowrite32 over __raw_writel (Jarod Wilson) [1807052]
+- [net] mac80211: Use Airtime-based Queue Limits (AQL) on packet dequeue (Jarod Wilson) [1807052]
+- [net] mac80211: Implement Airtime-based Queue Limit (AQL) (Jarod Wilson) [1807052]
+- [net] mac80211: Import airtime calculation code from mt76 (Jarod Wilson) [1807052]
+- [net] mac80211: consider QoS Null frames for STA_NULLFUNC_ACKED (Jarod Wilson) [1807052]
+- [net] mac80211: expose HW conf flags through debugfs (Jarod Wilson) [1807052]
+- [net] mac80211: Add new sta_info getter by sta/vif addrs (Jarod Wilson) [1807052]
+- [net] mac80211: add a comment about monitor-to-dev injection (Jarod Wilson) [1807052]
+- [wireless] drivers: net: Fix Kconfig indentation, continued (Jarod Wilson) [1807052]
+- [wireless] mt76: fix fix ampdu locking (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76u: fix endpoint definition order (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: read {tx,rx} mask from eeprom (Jarod Wilson) [1807052]
+- [wireless] mt76: move mt76_get_antenna in mt76_core module (Jarod Wilson) [1807052]
+- [wireless] mt76: fix possible out-of-bound access in mt7615_fill_txs/mt7603_fill_txs (Jarod Wilson) [1807052]
+- [wireless] Revert "mt76: mt76x0e: don't use hw encryption for MT7630E" (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: disable radar pattern detector during scanning (Jarod Wilson) [1807052]
+- [wireless] mt76: move interface_modes definition in mt76_core module (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: add ibss support (Jarod Wilson) [1807052]
+- [wireless] mt76: move SUPPORTS_REORDERING_BUFFER hw property in mt76_register_device (Jarod Wilson) [1807052]
+- [wireless] mt76: use mt76_dev in mt76_is_{mmio,usb} (Jarod Wilson) [1807052]
+- [wireless] mt76: Remove set but not used variable 'idx' (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76u: rely on a dedicated stats workqueue (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76u: rely on usb_interface instead of usb_dev (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: remove unneeded semicolon (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x0: remove 350ms delay in mt76x0_phy_calibrate (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x02u: update ewma pkt len in mt76x02u_tx_prepare_skb (Jarod Wilson) [1807052]
+- [wireless] mt76: remove obsolete .add_buf() from struct mt76_queue_ops (Jarod Wilson) [1807052]
+- [wireless] mt76: add sanity check for a-mpdu rx wcid index (Jarod Wilson) [1807052]
+- [wireless] mt76: refactor cc_lock locking scheme (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x0: eeprom: add support for MAC address from OF (Jarod Wilson) [1807052]
+- [wireless] mt76: avoid enabling interrupt if NAPI poll is still pending (Jarod Wilson) [1807052]
+- [wireless] mt76: fix aggregation stop issue (Jarod Wilson) [1807052]
+- [wireless] mt76: drop rcu read lock in mt76_rx_aggr_stop (Jarod Wilson) [1807052]
+- [wireless] mt76: add missing locking around ampdu action (Jarod Wilson) [1807052]
+- [wireless] mt76: do not use devm API for led classdev (Jarod Wilson) [1807052]
+- [wireless] mt76: enable airtime fairness (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: track tx/rx airtime for airtime fairness (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: introduce mt7615_mac_wtbl_update routine (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: fix survey channel busy time (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: report tx_time, bss_rx and busy time to mac80211 (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x02: track approximate tx airtime for airtime fairness and survey (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x02: move MT_CH_TIME_CFG init to mt76x02_mac_cc_reset (Jarod Wilson) [1807052]
+- [wireless] mt76: unify channel survey update code (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7603: switch to a different counter for survey busy time (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7603: track tx airtime for airtime fairness and survey (Jarod Wilson) [1807052]
+- [wireless] mt76: track rx airtime for airtime fairness and survey (Jarod Wilson) [1807052]
+- [wireless] mt76: store current channel survey_state in struct mt76_dev (Jarod Wilson) [1807052]
+- [wireless] mt76: rename mt76_driver_ops txwi_flags to drv_flags and include tx aligned4 (Jarod Wilson) [1807052]
+- [wireless] mt76: report rx a-mpdu subframe status (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7603: remove q_rx field from struct mt7603_dev (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7603: collect aggregation stats (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: collect aggregation stats (Jarod Wilson) [1807052]
+- [wireless] mt76: move aggr_stats array in mt76_dev (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: add queue entry in debugfs (Jarod Wilson) [1807052]
+- [wireless] mt76: move queue debugfs entry to driver specific code (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x02u: move mt76x02u_mac_start in mt76x02-usb module (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x0u: reset counter starting the device (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x2: move mt76x02_mac_reset_counters in mt76x02_mac_start (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x02: move mac_reset_counter in mt76x02_lib module (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: enable SCS by default (Jarod Wilson) [1807052]
+- [wireless] mt76: mt76x0e: make array mt76x0_chan_map static const, makes object smaller (Jarod Wilson) [1807052]
+- [wireless] mt76: usb: add lockdep_assert_held in __mt76u_vendor_request (Jarod Wilson) [1807052]
+- [wireless] mt76: remove empty flag in mt76_txq_schedule_list (Jarod Wilson) [1807052]
+- [wireless] mt76: use cancel_delayed_work_sync in mt76_rx_aggr_shutdown (Jarod Wilson) [1807052]
+- [wireless] mt76: remove aggr_work field from struct mt76_wcid (Jarod Wilson) [1807052]
+- [wireless] mt76: mt7615: fix control frame rx in monitor mode (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: bump FW API to 52 for 22000 series (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: check kasprintf() return value (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: remove outdated comment referring to wake lock (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: trace IOVA for iwlwifi_dev_tx_tb (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dvm: excessive if in rs_bt_update_lq() (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: Report tx/rx antennas (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: rx: use rxq queue_size instead of constant (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: remove left-over non-functional email alias (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: config: remove max_rx_agg_size (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: make some RX functions static (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: scan: support scan req FW API ver 13 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: fix support for transmitting SKBs with fraglist (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: Remove set but not used variable 'vif', 'dev', 'len' (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: remove monitor interface when detaching (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: disable PCIe interrupts before bus reset (Jarod Wilson) [1807052]
+- [wireless] rtw88: allows to enable/disable HCI link PS mechanism (Jarod Wilson) [1807052]
+- [wireless] rtw88: pci: enable CLKREQ function if host supports it (Jarod Wilson) [1807052]
+- [wireless] rtw88: pci: use for loop instead of while loop for DBI/MDIO (Jarod Wilson) [1807052]
+- [wireless] rtw88: pci: use macros to access PCI DBI/MDIO registers (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: set proper udelay within rf_serial_read (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rf_lock use non-irqsave spin_lock (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: remove set but not used variable 'mpnum', 'nsp', 'nmp' (Jarod Wilson) [1807052]
+- [wireless] rtw88: remove duplicated include from ps.c (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: Remove set but not used variable 'rsr' (Jarod Wilson) [1807052]
+- [wireless] brcmsmac: remove unnecessary return (Jarod Wilson) [1807052]
+- [wireless] net: wireless: ti: remove local VENDOR_ID and DEVICE_ID definitions (Jarod Wilson) [1807052]
+- [wireless] net: wireless: ti: wl1251 use new SDIO_VENDOR_ID_TI_WL1251 definition (Jarod Wilson) [1807052]
+- [wireless] net: wireless: ti: wl1251 add device tree support (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: fix non-ACPI function (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: 22000: fix some indentation (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: remove IWL_DEVICE_22560/IWL_DEVICE_FAMILY_22560 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: sync the iwl_mvm_session_prot_notif layout (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: start CTDP budget from 2400mA (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: don't skip mgmt tid when flushing all tids (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: scan: enable adaptive dwell in p2p (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: refactor the SAR tables from mvm to acpi (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: scan: support scan req cmd ver 12 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: scan: make new scan req versioning flow (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: fix unaligned read of rx_pkt_status (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: remove redundant assignment to variable bufsz (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: bump FW API to 51 for 22000 series (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: FW API: reference enum in docs of modify_mask (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: print rate_n_flags in a pretty format (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: scan: adapt the code to use api ver 11 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: scan: Create function to build scan cmd (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: scan: create function for scan scheduling params (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: support dump collection upon assert during D3 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: pcie: make iwl_pcie_gen2_update_byte_tbl static (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: in VHT connection use only VHT capabilities (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: nvm: update iwl_uhb_nvm_channels (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: remove else-if in iwl_send_phy_cfg_cmd() (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: fix support for single antenna diversity (Jarod Wilson) [1807052]
+- [wireless] ath10k: qmi: Sleep for a while before assigning MSA memory (Jarod Wilson) [1807052]
+- [wireless] ath10k: Revert "ath10k: add cleanup in ath10k_sta_state()" (Jarod Wilson) [1807052]
+- [wireless] mwifiex: Re-work support for SDIO HW reset (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: Add support for Edimax EW-7611ULB (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: Fix missing enable interrupt flag (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: Fix missing callback that tests for hw release of buffer (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192de: Fix missing code to retrieve RX buffer address (Jarod Wilson) [1807052]
+- [net] mac80211: Use debugfs_create_xul() helper (Jarod Wilson) [1807052]
+- [net] cfg80211: VLAN offload support for set_key and set_sta_vlan (Jarod Wilson) [1807052]
+- [net] mac80211: Shrink the size of ack_frame_id to make room for tx_time_est (Jarod Wilson) [1807052]
+- [net] mac80211: don't re-parse elems in ieee80211_assoc_success() (Jarod Wilson) [1807052]
+- [net] mac80211: move store skb ack code to its own function (Jarod Wilson) [1807052]
+- [wireless] ath10k: disable cpuidle during downloading firmware (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix potential issue of peer stats allocation (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix get invalid tx rate for Mesh metric (Jarod Wilson) [1807052]
+- [wireless] rtw88: signal completion even on firmware-request failure (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix potential NULL pointer access for firmware (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: fix memory leak in rtl92c_set_fw_rsvdpagepkt() (Jarod Wilson) [1807052]
+- [wireless] rt2800: remove errornous duplicate condition (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8225se: remove some unused const variables (Jarod Wilson) [1807052]
+- [wireless] brcmsmac: remove set but not used variables (Jarod Wilson) [1807052]
+- [wireless] rtw88: raise LPS threshold to 50, for less power consumption (Jarod Wilson) [1807052]
+- [wireless] ath5k: eeprom: Remove unneeded variable (Jarod Wilson) [1807052]
+- [wireless] ath10k: remove unneeded semicolon (Jarod Wilson) [1807052]
+- [wireless] mt7601u: use DEFINE_DEBUGFS_ATTRIBUTE to define debugfs fops (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8821ae: Drop condition with no effect (Jarod Wilson) [1807052]
+- [wireless] b43: dma: Fix use true/false for bool type variable (Jarod Wilson) [1807052]
+- [wireless] b43: main: Fix use true/false for bool type (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192c: Drop condition with no effect (Jarod Wilson) [1807052]
+- [wireless] rtw88: remove redundant null pointer check on arrays (Jarod Wilson) [1807052]
+- [wireless] rtw88: avoid FW info flood (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix potential read outside array boundary (Jarod Wilson) [1807052]
+- [wireless] rtw88: rearrange if..else statements for rx rate indexes (Jarod Wilson) [1807052]
+- [wireless] rtw88: use rtw_phy_pg_cfg_pair struct, not arrays (Jarod Wilson) [1807052]
+- [wireless] rtw88: 8822b: add RFE type 3 support (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix sparse warnings for power tracking (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix sparse warnings for DPK (Jarod Wilson) [1807052]
+- [wireless] net: Fix various misspellings of "connect" (Jarod Wilson) [1807052]
+- [wireless] net: Fix misspellings of "configure" and "configuration" (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix GENMASK_ULL for u64 (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: rx: use new api to get band from rx mpdu (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: nvm: create function to convert channel index to nl80211_band (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: Invert the condition for OFDM rate (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: create function to convert nl80211 band to phy band (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: use vzalloc to allocate dumping memory regions (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: add user trigger support (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: add notification for missed VAP (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: fix old-style declaration (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: use the new session protection command (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: remove leftover rs_remove_sta_debugfs() prototype (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: add support for new version for D0I3_END_CMD (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: mvm: consider ieee80211 station max amsdu value (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: support FW notification dumping in case of missed beacon (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: remove old API and some related code (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: rename external debug configuration file (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: support FW response/notification region type (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: support domain changing via debugfs (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: add periodic trigger new API support (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: implement monitor allocation flow (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: implement time point handling (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: add TLV allocation new API support (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: use new API in dump info (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: add error tables dumping support (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: add monitor dumping support (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg: remove multi buffers infra (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: use new trigger TLV in dump flow (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: use new region TLV in dump flow (Jarod Wilson) [1807052]
+- [wireless] iwlwifi: dbg_ini: load external dbg cfg after internal cfg is loaded (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: fix warnings for symbol not declared (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: remove set but not used variable 'rate_mask' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: Remove unnecessary NULL check in rtl_regd_init (Jarod Wilson) [1807052]
+- [wireless] rtw88: add phy_info debugfs to show Tx/Rx physical status (Jarod Wilson) [1807052]
+- [wireless] rtw88: add set_bitrate_mask support (Jarod Wilson) [1807052]
+- [wireless] rtw88: Enable 802.11ac beamformee support (Jarod Wilson) [1807052]
+- [wireless] rtw88: add power tracking support (Jarod Wilson) [1807052]
+- [wireless] rtw88: use macro to check the current band (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: fix RTL8723BU connection failure issue after warm reboot (Jarod Wilson) [1807052]
+- [wireless] rtw88: mark rtw_fw_hdr __packed (Jarod Wilson) [1807052]
+- [wireless] net/wireless: Delete unnecessary checks before the macro call "dev_kfree_skb" (Jarod Wilson) [1807052]
+- [wireless] wireless: Remove call to memset after dma_alloc_coherent (Jarod Wilson) [1807052]
+- [wireless] rtw88: include interrupt.h for tasklet_struct (Jarod Wilson) [1807052]
+- [wireless] rtw88: use a for loop in rtw_power_mode_change(), not goto (Jarod Wilson) [1807052]
+- [wireless] rtw88: coex: Set 4 slot mode for A2DP (Jarod Wilson) [1807052]
+- [wireless] rtw88: pci: config phy after chip info is setup (Jarod Wilson) [1807052]
+- [wireless] rtw88: Use rtw_write8_set to set SYS_FUNC (Jarod Wilson) [1807052]
+- [wireless] rtw88: add NL80211_EXT_FEATURE_CAN_REPLACE_PTK0 support (Jarod Wilson) [1807052]
+- [wireless] rtw88: config 8822c multicast address in MAC init flow (Jarod Wilson) [1807052]
+- [wireless] ath10k: Correct error handling of dma_map_single() (Jarod Wilson) [1807052]
+- [wireless] ath: rename regulatory rules (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix memory leak for tpc_stats_final (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix array out-of-bounds access (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192se: Convert inline routines to little-endian words (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192se: Convert macros that set descriptor (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192se: Replace local bit manipulation macros (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192se: Remove unused GET_XXX and SET_XXX (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ee: Remove set but not used variable 'err' (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix null dereference on pointer crash_data (Jarod Wilson) [1807052]
+- [wireless] ath10k: enable transmit data ack RSSI for QCA9884 (Jarod Wilson) [1807052]
+- [net] mac80211: minstrel_ht: rename prob_ewma to prob_avg, use it for the new average (Jarod Wilson) [1807052]
+- [net] mac80211: minstrel_ht: replace rate stats ewma with a better moving average (Jarod Wilson) [1807052]
+- [net] mac80211: minstrel: remove divisions in tx status path (Jarod Wilson) [1807052]
+- [net] nl80211: trivial: Remove redundant loop (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ee: Remove set but not used variable 'cur_tx_wp' (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: make arrays static, makes object smaller (Jarod Wilson) [1807052]
+- [wireless] rtw88: Fix an error message (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: add bluetooth co-existence support for single antenna (Jarod Wilson) [1807052]
+- [wireless] mwifiex: pcie: Fix memory leak in mwifiex_pcie_alloc_cmdrsp_buf (Jarod Wilson) [1829230 1807052] {CVE-2019-19056}
+- [wireless] rtlwifi: rtl8723: Remove set but not used variable 'own' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: btcoex: Remove set but not used variables 'wifi_busy', 'bt_info_ext' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: btcoex: Remove set but not used variable 'result' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8188ee: Remove set but not used variable 'h2c_parameter' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8188ee: Remove set but not used variables 'v3', 'rtstatus', 'reg_ecc', 'reg_ec4', 'reg_eac', 'b_pathb_ok' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192c: Remove set but not used variables 'reg_ecc', 'reg_eac' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8723ae: Remove set but not used variables 'reg_ecc', 'reg_ec4', 'reg_eac', 'b_pathb_ok' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8821ae: Remove set but not used variables 'rtstatus', 'bd' (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: Improve TX performance of RTL8723BU on rtl8xxxu driver (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: add support for SAE authentication offload (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix error handling when setup efuse info (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix NSS of hw_cap (Jarod Wilson) [1807052]
+- [wireless] rtw88: use struct rtw_fw_hdr to access firmware header (Jarod Wilson) [1807052]
+- [wireless] rtw88: raise firmware version debug level (Jarod Wilson) [1807052]
+- [wireless] rtw88: configure TX queue EDCA parameters (Jarod Wilson) [1807052]
+- [wireless] rtw88: Don't set RX_FLAG_DECRYPTED if packet has no encryption (Jarod Wilson) [1807052]
+- [wireless] rtw88: fix beaconing mode rsvd_page memory violation issue (Jarod Wilson) [1807052]
+- [wireless] rtw88: flush hardware tx queues (Jarod Wilson) [1807052]
+- [wireless] rtw88: add TX-AMSDU support (Jarod Wilson) [1807052]
+- [wireless] rtw88: report tx rate to mac80211 stack (Jarod Wilson) [1807052]
+- [wireless] rtw88: take over rate control from mac80211 (Jarod Wilson) [1807052]
+- [wireless] rtw88: add driver TX queue support (Jarod Wilson) [1807052]
+- [wireless] rtw88: allows to set RTS in TX descriptor (Jarod Wilson) [1807052]
+- [wireless] rtw88: check firmware leave lps successfully (Jarod Wilson) [1807052]
+- [wireless] mac80211: simplify TX aggregation start (Jarod Wilson) [1807052]
+- [net] mac80211: pass internal sta to ieee80211_tx_frags() (Jarod Wilson) [1807052]
+- [net] mac80211: IBSS: avoid unneeded return value processing (Jarod Wilson) [1807052]
+- [wireless] ar5523: check NULL before memcpy() in ar5523_cmd() (Jarod Wilson) [1807052]
+- [wireless] ath10k: add support for hardware rfkill (Jarod Wilson) [1807052]
+- [wireless] ath10k: restore QCA9880-AR1A (v1) detection (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix offchannel tx failure when no ath10k_mac_tx_frm_has_freq (Jarod Wilson) [1807052]
+- [wireless] cw1200: Fix a signedness bug in cw1200_load_firmware() (Jarod Wilson) [1807052]
+- [wireless] rtw88: remove misleading module parameter rtw_fw_support_lps (Jarod Wilson) [1807052]
+- [wireless] rtw88: add deep PS PG mode for 8822c (Jarod Wilson) [1807052]
+- [wireless] rtw88: select deep PS mode when module is inserted (Jarod Wilson) [1807052]
+- [wireless] rtw88: not to enter LPS by coex strategy (Jarod Wilson) [1807052]
+- [wireless] rtw88: add deep power save support (Jarod Wilson) [1807052]
+- [wireless] rtw88: leave PS state for dynamic mechanism (Jarod Wilson) [1807052]
+- [wireless] rtw88: LPS enter/leave should be protected by lock (Jarod Wilson) [1807052]
+- [wireless] rtw88: remove unused lps state check helper (Jarod Wilson) [1807052]
+- [wireless] rtw88: not to control LPS by each vif (Jarod Wilson) [1807052]
+- [wireless] rtw88: not to enter or leave PS under IRQ (Jarod Wilson) [1807052]
+- [wireless] rtw88: pci: reset H2C queue indexes in a single write (Jarod Wilson) [1807052]
+- [wireless] rtw88: remove redundant flag check helper function (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8723be: Remove set but not used variables 'reg_ecc', 'reg_eac' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ee: Remove set but not used variables 'reg_ecc', 'reg_eac' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: rtl8192ee: Remove set but not used variables 'short_gi', 'buf_len' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: Remove set but not used variables 'dataempty', 'hoffset' (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: Remove set but not used variable 'rtstate' (Jarod Wilson) [1807052]
+- [wireless] rtl8xxxu: prevent leaking urb (Jarod Wilson) [1829887 1807052] {CVE-2019-19068}
+- [wireless] net/wireless: Use kmemdup rather than duplicating its implementation (Jarod Wilson) [1807052]
+- [wireless] ath9k_htc: Discard undersized packets (Jarod Wilson) [1807052]
+- [wireless] ath9k_htc: Modify byte order for an error message (Jarod Wilson) [1807052]
+- [wireless] ath9k_hw: fix uninitialized variable data (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix backtrace on coredump (Jarod Wilson) [1807052]
+- [wireless] ath10k: coredump: fix IRAM addr for QCA9984, QCA4019, QCA9888 and QCA99x0 (Jarod Wilson) [1807052]
+- [wireless] ath10k: switch to ieee80211_tx_dequeue_ni (Jarod Wilson) [1807052]
+- [wireless] ath10k: change sw version print format to hex (Jarod Wilson) [1807052]
+- [wireless] ath10k: print supported MCS rates within service ready event (Jarod Wilson) [1807052]
+- [wireless] ath10k: print service ready returned channel range (Jarod Wilson) [1807052]
+- [wireless] ath10k: add 2ghz channel arguments to service ready structure (Jarod Wilson) [1807052]
+- [wireless] ath9k: remove unused including <linux/version.h> (Jarod Wilson) [1807052]
+- [wireless] mwifiex: use 'total_ie_len' in mwifiex_update_bss_desc_with_ie() (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: Remove excessive check in _rtl_ps_inactive_ps() (Jarod Wilson) [1807052]
+- [wireless] rtlwifi: prevent memory leak in rtl_usb_probe (Jarod Wilson) [1829850 1807052] {CVE-2019-19063}
+- [wireless] rtlwifi: rtl8723ae: Remove unused 'rtstatus' variable (Jarod Wilson) [1807052]
+- [wireless] mt7601u: fix bbp version check in mt7601u_wait_bbp_ready (Jarod Wilson) [1807052]
+- [wireless] rtw88: 8822c: fix boolreturn.cocci warnings (Jarod Wilson) [1807052]
+- [wireless] brcmsmac: remove duplicated if condition (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: fix suspend/resume when power is cut off (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: don't WARN when there are no requests (Jarod Wilson) [1807052]
+- [wireless] brcmsmac: remove a useless test (Jarod Wilson) [1807052]
+- [wireless] brcmfmac: send port authorized event for FT-802.1X (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix memory leak (Jarod Wilson) [1807052]
+- [wireless] ath10k: remove the warning of sdio not full support (Jarod Wilson) [1807052]
+- [wireless] ath: Use dev_get_drvdata where possible (Jarod Wilson) [1807052]
+- [wireless] ath: fix various spelling mistakes (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix missing checks for bmi reads and writes (Jarod Wilson) [1807052]
+- [wireless] ath10k: Add support to provide higher range mem chunks in wmi init command (Jarod Wilson) [1807052]
+- [wireless] ath10k: Add peer param map for tlv and non-tlv (Jarod Wilson) [1807052]
+- [wireless] ath10k: Enable MSA region dump support for WCN3990 (Jarod Wilson) [1807052]
+- [wireless] ath10k: Add xo calibration support for wifi rf clock (Jarod Wilson) [1807052]
+- [wireless] ath10k: fix spelling mistake "eanble" -> "enable" (Jarod Wilson) [1807052]
+- [wireless] ath10k: add cleanup in ath10k_sta_state() (Jarod Wilson) [1807052]
+- [wireless] ath10k: revalidate the msa region coming from firmware (Jarod Wilson) [1807052]
+- [wireless] ath10k: use ath10k_pci_soc_ functions for all warm_reset instances (Jarod Wilson) [1807052]
+- [wireless] ath10k: Use ARRAY_SIZE (Jarod Wilson) [1807052]
+- [wireless] ath10k: avoid leaving .bss_info_changed prematurely (Jarod Wilson) [1807052]
+- [wireless] ath10k: Use standard bulk clock API in snoc (Jarod Wilson) [1807052]
+- [wireless] ath10k: Use standard regulator bulk API in snoc (Jarod Wilson) [1807052]
+- [wireless] ath10k: snoc: skip regulator operations (Jarod Wilson) [1807052]
+- [wireless] ath10k: Fix HOST capability QMI incompatibility (Jarod Wilson) [1807052]
+- [wireless] ath10k: Check if station exists before forwarding tx airtime report (Jarod Wilson) [1807052]
+- [include] include/linux/units.h: add helpers for kelvin to/from Celsius conversion (Jarod Wilson) [1807052]
+
+* Tue May 12 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-198.el8]
+- [x86] x86/PCI: Define to_pci_sysdata() even when !CONFIG_PCI (Myron Stowe) [1788364 1783436]
+- [pci] PCI: vmd: Add two VMD Device IDs (Myron Stowe) [1788364 1783436]
+- [pci] x86/PCI: Expose VMD's pci_dev in struct pci_sysdata (Myron Stowe) [1788364 1783436]
+- [x86] x86/PCI: Add to_pci_sysdata() helper (Myron Stowe) [1788364 1783436]
+- [pci] PCI: vmd: Add device id for VMD device 8086:9A0B (Myron Stowe) [1788364 1783436]
+- [pci] PCI: vmd: Add bus 224-255 restriction decode (Myron Stowe) [1788364 1783436]
+- [fs] fuse: copy_file_range needs to strip setuid bits and update timestamps (Eric Sandeen) [1721881]
+- [fs] vfs: allow copy_file_range to copy across devices (Eric Sandeen) [1721881]
+- [fs] vfs: add missing checks to copy_file_range (Eric Sandeen) [1721881]
+- [mm] vfs: remove redundant checks from generic_remap_checks() (Eric Sandeen) [1721881]
+- [fs] vfs: introduce generic_file_rw_checks() (Eric Sandeen) [1721881]
+- [fs] vfs: no fallback for ->copy_file_range (Eric Sandeen) [1721881]
+- [fs] vfs: introduce generic_copy_file_range() (Eric Sandeen) [1721881]
+- [ptp] ptp: add VMware virtual PTP clock driver (Prarit Bhargava) [1829706]
+- [powerpc] powerpc/powernv/ioda: Handle failures correctly in pnv_pci_ioda_iommu_bypass_supported() (Michael Roth) [1805101]
+- [powerpc] powerpc/pseries/dma: Enable SWIOTLB (Michael Roth) [1805101]
+- [powerpc] powerpc/pseries/dma: Allow SWIOTLB (Michael Roth) [1805101]
+- [powerpc] powerpc/powernv: Fix build with IOMMU_API=n (Michael Roth) [1805101]
+- [powerpc] powerpc/powernv: Remove unused pnv_npu_try_dma_set_bypass() function (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: Fix invalid DMA mmap behavior (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: trim the fat from <asm/dma-mapping.h> (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove set_dma_offset (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove get_dma_offset (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: use the generic direct mapping bypass (Michael Roth) [1805101]
+- [powerpc] powerpc/powernv/npu: Remove NPU DMA ops (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: use the dma_direct mapping routines (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: use the dma-direct allocator for coherent platforms (Michael Roth) [1805101]
+- [powerpc] swiotlb: remove swiotlb_dma_supported (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove dma_nommu_dma_supported (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove dma_nommu_get_required_mask (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove dma_nommu_mmap_coherent (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: use phys_to_dma instead of get_dma_offset (Michael Roth) [1805101]
+- [powerpc] dma-mapping, powerpc: simplify the arch dma_set_mask override (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: fix an off-by-one in dma_capable (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove max_direct_dma_addr (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: move pci_dma_dev_setup_swiotlb to fsl_pci.c (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove get_pci_dma_ops (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove the iommu fallback for coherent allocations (Michael Roth) [1805101]
+- [powerpc] powerpc/pci: remove the dma_set_mask pci_controller ops methods (Michael Roth) [1805101]
+- [misc] cxl: drop the dma_set_mask callback from vphb (Michael Roth) [1805101]
+- [powerpc] KABI: re-use deprecated field for iommu_bypass_supported function pointer (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: stop overriding dma_get_required_mask (Michael Roth) [1805101]
+- [dma] KABI: add fake includes for headers used in arch/powerpc/kernel/dma.c (Michael Roth) [1805101]
+- [powerpc] powerpc/powernv: use the generic iommu bypass code (Michael Roth) [1805101]
+- [powerpc] powerpc/powernv: Remove PCI_MSI ifdef checks (Michael Roth) [1805101]
+- [powerpc] powerpc/powernv: remove pnv_npu_dma_set_mask (Michael Roth) [1805101]
+- [powerpc] powerpc/powernv: remove pnv_pci_ioda_pe_single_vendor (Michael Roth) [1805101]
+- [powerpc] powerpc/dart: use the generic iommu bypass code (Michael Roth) [1805101]
+- [powerpc] powerpc/dart: remove dead cleanup code in iommu_init_early_dart (Michael Roth) [1805101]
+- [powerpc] powerpc/cell: use the generic iommu bypass code (Michael Roth) [1805101]
+- [powerpc] powerpc/cell: move dma direct window setup out of dma_configure (Michael Roth) [1805101]
+- [powerpc] powerpc/pseries: use the generic iommu bypass code (Michael Roth) [1805101]
+- [powerpc] powerpc/pseries: unwind dma_get_required_mask_pSeriesLP a bit (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: handle iommu bypass in dma_iommu_ops (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: untangle vio_dma_mapping_ops from dma_iommu_ops (Michael Roth) [1805101]
+- [dma] dma-direct: we might need GFP_DMA for 32-bit dma masks (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: split the two __dma_alloc_coherent implementations (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove the unused dma_iommu_ops export (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove the unused ISA_DMA_THRESHOLD export (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: remove the unused ARCH_HAS_DMA_MMAP_COHERENT define (Michael Roth) [1805101]
+- [powerpc] powerpc/dma: properly wire up the unmap_page and unmap_sg methods (Michael Roth) [1805101]
+- [powerpc] powerpc: allow NOT_COHERENT_CACHE for amigaone (Michael Roth) [1805101]
+- [powerpc] powerpc/fadump: consider reserved ranges while reserving memory (Steve Best) [1813701]
+- [powerpc] powerpc/fadump: use static allocation for reserved memory ranges (Steve Best) [1813701]
+- [fs] audit: Report suspicious O_CREAT usage (partial) (Eric Sandeen) [1797843]
+- [fs] vfs: fix do_last() regression (Eric Sandeen) [1797843]
+- [fs] do_last(): fetch directory ->i_mode and ->i_uid before it's too late (Eric Sandeen) [1797843]
+- [fs] namei: allow restricted O_CREAT of FIFOs and regular files (Eric Sandeen) [1797843]
+- [netdrv] fm10k: use txqueue parameter in fm10k_tx_timeout (Neil Horman) [1781387]
+- [netdrv] fm10k: Use sizeof_field() macro (Neil Horman) [1781387]
+- [netdrv] fm10k: update driver version to match out-of-tree (Neil Horman) [1781387]
+- [netdrv] fm10k: add support for ndo_get_vf_stats operation (Neil Horman) [1781387]
+- [netdrv] fm10k: add missing field initializers to TLV attributes) (Neil Horman) [1781387]
+- [netdrv] fm10k: use a local variable for the frag pointer (Neil Horman) [1781387]
+- [netdrv] ethernet: Delete unnecessary checks before the macro call "dev_kfree_skb" (Neil Horman) [1781387]
+- [netdrv] fm10k: no need to check return value of debugfs_create functions (Neil Horman) [1781387]
+- [security] KEYS: Avoid false positive ENOMEM error on key read (Waiman Long) [1807693]
+- [security] KEYS: Don't write out to userspace while holding key semaphore (Waiman Long) [1807693]
+- [security] selinux: allow per-file labeling for CephFS (Ondrej Mosnacek) [1823764]
+- [scsi] scsi: qedi: make qedi_ll2_buf_size static (Nilesh Javali) [1792111]
+- [scsi] scsi: qedi: Fix termination timeouts in session logout (Nilesh Javali) [1792111]
+- [scsi] scsi: qedi: Add modules param to enable qed iSCSI debug (Nilesh Javali) [1792111]
+- [scsi] scsi: qedi: Do not flush offload work if ARP not resolved (Nilesh Javali) [1792111]
+- [scsi] scsi: qedi: Use correct msix count for fastpath vectors (Nilesh Javali) [1792111]
+- [scsi] scsi: qedi: Avoid unnecessary endpoint allocation on link down (Nilesh Javali) [1792111]
+- [scsi] scsi: qedi: Remove additional char from boot target iqnname (Nilesh Javali) [1792111]
+- [scsi] scsi: qedi: Add PCI shutdown handler support (Nilesh Javali) [1792111]
+- [scsi] scsi: qedi: Add MFW error recovery process (Nilesh Javali) [1792111]
+- [netdrv] ibmvnic: Skip fatal error reset after passive init (Steve Best) [1830989]
+- [ata] ahci: Add Intel Comet Lake PCH-V PCI ID (David Milburn) [1802690]
+- [ata] ahci: Add Intel Comet Lake PCH-H PCI ID (David Milburn) [1802690]
+- [ata] ahci: Add Intel Comet Lake H RAID PCI ID (David Milburn) [1802690]
+- [x86] x86, sched: Move check for CPU type to caller function (Prarit Bhargava) [1828260]
+- [x86] x86, sched: Don't enable static key when starting secondary CPUs (Prarit Bhargava) [1828260]
+- [x86] x86, sched: Account for CPUs with less than 4 cores in freq. invariance (Prarit Bhargava) [1828260]
+- [x86] x86, sched: Bail out of frequency invariance if base frequency is unknown (Prarit Bhargava) [1828260]
+- [lib] scsi: klist: Make it safe to use klists in atomic context (Waiman Long) [1829027]
+- [char] random: try to actively add entropy rather than passively wait for it (Neil Horman) [1778762]
+- [md] dm writecache: fix data corruption when reloading the target (Mike Snitzer) [1830129]
+- [kernel] smp: Allow smp_call_function_single_async() to insert locked csd (Peter Xu) [1830014]
+- [scsi] scsi: ibmvscsi: Fix WARN_ON during event pool release (Steve Best) [1829242]
+- [block] block: avoid to check null profile pointer to see if it is in 3rd party module (Ming Lei) [1829464]
+- [tools] perf scripting perl: Add common_callchain to fix argument order (Michael Petlan) [1809191]
+- [netdrv] ionic: fix unused assignment (Jonathan Toppins) [1780645]
+- [netdrv] ionic: add dynamic_debug header (Jonathan Toppins) [1780645]
+- [netdrv] ionic: set station addr only if needed (Jonathan Toppins) [1780645]
+- [netdrv] ionic: replay filters after fw upgrade (Jonathan Toppins) [1780645]
+- [netdrv] ionic: remove lifs on fw reset (Jonathan Toppins) [1780645]
+- [netdrv] ionic: disable the queues on link down (Jonathan Toppins) [1780645]
+- [netdrv] ionic: check for queues before deleting (Jonathan Toppins) [1780645]
+- [netdrv] ionic: clean tx queue of unfinished requests (Jonathan Toppins) [1780645]
+- [netdrv] ionic: move irq request to qcq alloc (Jonathan Toppins) [1780645]
+- [netdrv] ionic: move debugfs add/delete to match alloc/free (Jonathan Toppins) [1780645]
+- [netdrv] ionic: check for linkup in watchdog (Jonathan Toppins) [1780645]
+- [netdrv] ionic: decouple link message from netdev state (Jonathan Toppins) [1780645]
+- [netdrv] ionic: check for NULL structs on teardown (Jonathan Toppins) [1780645]
+- [netdrv] ionic: clean irq affinity on queue deinit (Jonathan Toppins) [1780645]
+- [netdrv] ionic: ignore eexist on rx filter add (Jonathan Toppins) [1780645]
+- [netdrv] ionic: only save good lif dentry (Jonathan Toppins) [1780645]
+- [netdrv] ionic: leave dev cmd request contents alone on FW timeout (Jonathan Toppins) [1780645]
+- [netdrv] ionic: add timeout error checking for queue disable (Jonathan Toppins) [1780645]
+- [netdrv] ionic: make spdxcheck.py happy (Jonathan Toppins) [1780645]
+- [netdrv] ionic: add decode for IONIC_RC_ENOSUPP (Jonathan Toppins) [1780645]
+- [netdrv] ionic: print data for unknown xcvr type (Jonathan Toppins) [1780645]
+- [netdrv] ionic: remove adminq napi instance (Jonathan Toppins) [1780645]
+- [netdrv] ionic: deinit rss only if selected (Jonathan Toppins) [1780645]
+- [netdrv] ionic: stop devlink warn on mgmt device (Jonathan Toppins) [1780645]
+- [netdrv] net: ionic: Use scnprintf() for avoiding potential buffer overflow (Jonathan Toppins) [1780645]
+- [netdrv] netdev:pass the stuck queue to the timeout handler (Jonathan Toppins) [1780645]
+- [netdrv] ionic: drop ethtool driver version (Jonathan Toppins) [1780645]
+- [netdrv] ionic: add support for device id 0x1004 (Jonathan Toppins) [1780645]
+- [netdrv] ionic: print pci bus lane info (Jonathan Toppins) [1780645]
+- [netdrv] ionic: support ethtool rxhash disable (Jonathan Toppins) [1780645]
+- [netdrv] ionic: clean up bitflag usage (Jonathan Toppins) [1780645]
+- [netdrv] ionic: improve irq numa locality (Jonathan Toppins) [1780645]
+- [netdrv] ionic: remove pragma packed (Jonathan Toppins) [1780645]
+- [netdrv] ionic: keep ionic dev on lif init fail (Jonathan Toppins) [1780645]
+- [netdrv] ionic: fix vf op lock usage (Jonathan Toppins) [1780645]
+- [netdrv] ionic: let core reject the unsupported coalescing parameters (Jonathan Toppins) [1780645]
+- [netdrv] ionic: fix fw_status read (Jonathan Toppins) [1780645]
+- [netdrv] ionic: use new helper tcp_v6_gso_csum_prep (Jonathan Toppins) [1780645]
+- [netdrv] ionic: fix rxq comp packet type mask (Jonathan Toppins) [1780645]
+- [netdrv] ionic: clear compiler warning on hb use before set (Jonathan Toppins) [1780645]
+- [netdrv] ionic: restrict received packets to mtu size (Jonathan Toppins) [1780645]
+- [netdrv] ionic: add Rx dropped packet counter (Jonathan Toppins) [1780645]
+- [netdrv] ionic: drop use of subdevice tags (Jonathan Toppins) [1780645]
+- [netdrv] ionic: support sr-iov operations (Jonathan Toppins) [1780645]
+- [netdrv] ionic: ionic_if bits for sr-iov support (Jonathan Toppins) [1780645]
+- [netdrv] ionic: keep users rss hash across lif reset (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Remove set but not used variable 'sg_desc' (Jonathan Toppins) [1780645]
+- [netdrv] ionic: update driver version (Jonathan Toppins) [1780645]
+- [netdrv] ionic: implement support for rx sgl (Jonathan Toppins) [1780645]
+- [netdrv] ionic: add a watchdog timer to monitor heartbeat (Jonathan Toppins) [1780645]
+- [netdrv] ionic: add heartbeat check (Jonathan Toppins) [1780645]
+- [netdrv] ionic: reverse an interrupt coalesce calculation (Jonathan Toppins) [1780645]
+- [netdrv] ionic: fix up struct name comments (Jonathan Toppins) [1780645]
+- [netdrv] dynamic_debug: provide dynamic_hex_dump stub (Jonathan Toppins) [1780645]
+- [netdrv] ionic: fix stats memory dereference (Jonathan Toppins) [1780645]
+- [netdrv] ionic: add lif_quiesce to wait for queue activity to stop (Jonathan Toppins) [1780645]
+- [netdrv] ionic: implement ethtool set-fec (Jonathan Toppins) [1780645]
+- [netdrv] ionic: report users coalesce request (Jonathan Toppins) [1780645]
+- [netdrv] ionic: use wait_on_bit_lock() rather than open code (Jonathan Toppins) [1780645]
+- [netdrv] ionic: simplify returns in devlink info (Jonathan Toppins) [1780645]
+- [netdrv] ionic: select CONFIG_NET_DEVLINK (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Fix an error code in ionic_lif_alloc() (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Remove unnecessary ternary operator in ionic_debugfs_add_ident (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Remove unused including <linux/version.h> (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add coalesce and other features (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add RSS support (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add driver stats (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add netdev-event handling (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add Tx and Rx handling (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add initial ethtool support (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add async link status check and basic stats (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add Rx filter and rx_mode ndo support (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add management of rx filters (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add the basic NDO callbacks for netdev support (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add notifyq support (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add adminq action (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add basic adminq support (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add interrupts and doorbells (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add basic lif support (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add port management commands (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add hardware init and device commands (Jonathan Toppins) [1780645]
+- [netdrv] ionic: Add basic framework for IONIC Network device driver (Jonathan Toppins) [1780645]
+- [netdrv] net: sfp: add more extended compliance codes (Jonathan Toppins) [1780645]
+- [scsi] scsi: core: Add DID_ALLOC_FAILURE and DID_MEDIUM_ERROR to hostbyte_table (Maurizio Lombardi) [1819061]
+- [netdrv] igc: Add debug messages to MAC filter code (Corinna Vinschen) [1781384]
+- [netdrv] igc: Refactor igc_del_mac_filter() (Corinna Vinschen) [1781384]
+- [netdrv] igc: Refactor igc_mac_entry_can_be_used() (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove igc_*_mac_steering_filter() wrappers (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove IGC_MAC_STATE_QUEUE_STEERING (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove 'queue' check in igc_del_mac_filter() (Corinna Vinschen) [1781384]
+- [netdrv] igc: Improve address check in igc_del_mac_filter() (Corinna Vinschen) [1781384]
+- [netdrv] igc: Refactor igc_rar_set_index() (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix igc_uc_unsync() (Corinna Vinschen) [1781384]
+- [netdrv] igc: Change igc_add_mac_filter() returning value (Corinna Vinschen) [1781384]
+- [netdrv] igc: Check unsupported flag in igc_add_mac_filter() (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove duplicate code in MAC filtering logic (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add new device IDs for i225 part (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix default MAC address filter override (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove dead code related to flower filter (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix NFC queue redirection support (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove copper fiber switch control (Corinna Vinschen) [1781384]
+- [netdrv] igc: Enable NETIF_F_HW_TC flag (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix double definition (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix overwrites when dumping registers (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove forward declaration (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove unused CTRL_EXT_LINK_MODE_MASK (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove unused MDIC_DEST mask (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add support for ETF offloading (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add support for taprio offloading (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add GSO partial support (Corinna Vinschen) [1781384]
+- [netdrv] net: igc: let core reject the unsupported coalescing parameters (Corinna Vinschen) [1781384]
+- [netdrv] intel: Replace zero-length array with flexible-array member (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add comment (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add WOL support (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add pcie error handler support (Corinna Vinschen) [1781384]
+- [netdrv] igc: Complete to commit Add basic skeleton for PTP (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix the typo in comment (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add dump options (Corinna Vinschen) [1781384]
+- [netdrv] igc: Complete to commit Add legacy power management support (Corinna Vinschen) [1781384]
+- [netdrv] igc: make non-global functions static (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add PHY power management control (Corinna Vinschen) [1781384]
+- [netdrv] RHEL-only: Revert "igc: add additional delay during phy hw reset" (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add support for TSO (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add SKU for i225 device (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove unused definition (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix typo in a comment (Corinna Vinschen) [1781384]
+- [netdrv] igc: Use Start of Packet signal from PHY for timestamping (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add support for ethtool GET_TS_INFO command (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add support for TX timestamping (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add support for RX timestamping (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add basic skeleton for PTP (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_sw_init (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_write_itr (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_assign_vector (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_free_q_vector (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_free_q_vectors (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_irq_disable (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_irq_enable (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_configure_msix (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_set_rx_mode (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_set_interrupt_capability (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_alloc_mapped_page (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_configure (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_set_default_mac_filter (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_power_down_link (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove no need declaration of the igc_clean_tx_ring (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove serdes comments from a description of methods (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add legacy power management support (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add 64 bit DMA access support (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix parameter descriptions for a several functions (Corinna Vinschen) [1781384]
+- [netdrv] igc: Fix the parameter description for igc_alloc_rx_buffers (Corinna Vinschen) [1781384]
+- [netdrv] igc: Remove excess parameter description from igc_is_non_eop (Corinna Vinschen) [1781384]
+- [netdrv] igc: Prefer to use the pci_release_mem_regions method (Corinna Vinschen) [1781384]
+- [netdrv] igc: Improve the DMA mapping flow (Corinna Vinschen) [1781384]
+- [netdrv] igc: Add scatter gather support (Corinna Vinschen) [1781384]
+- [netdrv] treewide: Use sizeof_field() macro (Corinna Vinschen) [1781384]
+- [netdrv] igb/igc: use ktime accessors for skb->tstamp (Corinna Vinschen) [1781384]
+- [netdrv] net: ethernet: intel: Demote MTU change prints to debug (Corinna Vinschen) [1781384]
+- [netdrv] igb/igc: Don't warn on fatal read failures when the device is removed (Corinna Vinschen) [1781384]
+- [netdrv] net: igb: let core reject the unsupported coalescing parameters (Corinna Vinschen) [1781381]
+- [netdrv] intel: Replace zero-length array with flexible-array member (Corinna Vinschen) [1781381]
+- [netdrv] igb: Fix SGMII SFP module discovery for 100FX/LX (Corinna Vinschen) [1781381]
+- [netdrv] igb: dont drop packets if rx flow control is enabled (Corinna Vinschen) [1781381]
+- [netdrv] treewide: Use sizeof_field() macro (Corinna Vinschen) [1781381]
+- [netdrv] igb/igc: use ktime accessors for skb->tstamp (Corinna Vinschen) [1781381]
+- [netdrv] net: ethernet: intel: Demote MTU change prints to debug (Corinna Vinschen) [1781381]
+- [netdrv] igb: Fix constant media auto sense switching when no cable is connected (Corinna Vinschen) [1781381]
+- [netdrv] igb: Enable media autosense for the i350 (Corinna Vinschen) [1781381]
+- [netdrv] igb/igc: Don't warn on fatal read failures when the device is removed (Corinna Vinschen) [1781381]
+- [netdrv] igb: Add UDP segmentation offload support (Corinna Vinschen) [1781381]
+- [netdrv] net: igbvf: reject unsupported coalescing params (Corinna Vinschen) [1781382]
+- [netdrv] net: ethernet: intel: Demote MTU change prints to debug (Corinna Vinschen) [1781382]
+- [ata] ahci: Do not export local variable ahci_em_messages (Prarit Bhargava) [1826320]
+- [scripts] modpost: check for static EXPORT_SYMBOL* functions (Prarit Bhargava) [1826320]
+- [kernel] torture: Remove exporting of internal functions (Prarit Bhargava) [1826320]
+- [input] Input: synaptics-rmi4 - remove the exporting of rmi_2d_sensor_set_input_params (Prarit Bhargava) [1826320]
+- [netdrv] net: phy: make exported variables non-static (Prarit Bhargava) [1826320]
+- [scsi] scsi: libsas: remove the exporting of sas_wait_eh (Prarit Bhargava) [1826320]
+- [drm] drm/client: remove the exporting of drm_client_close (Prarit Bhargava) [1826320]
+- [scripts] modpost: always show verbose warning for section mismatch (Prarit Bhargava) [1826320]
+- [net] netfilter: nf_nat_ipv4: remove obsolete EXPORT_SYMBOL (Prarit Bhargava) [1826320]
+- [crypto] crypto: skcipher - remove the exporting of skcipher_walk_next (Prarit Bhargava) [1826320]
+- [scsi] scsi: scsi_debug: Fix a recently introduced regression (Ming Lei) [1822001]
+- [block] scsi: block: remove bidi support (Ming Lei) [1822001]
+- [scsi] scsi: block: remove req->special (Ming Lei) [1822001]
+- [scsi] scsi: stop setting up request->special (Ming Lei) [1822001]
+- [scsi] scsi: remove bidirectional command support (Ming Lei) [1822001]
+- [scsi] scsi: remove the SCSI OSD library (Ming Lei) [1822001]
+- [fs] scsi: fs: remove exofs (Ming Lei) [1822001]
+- [block] scsi: bsg-lib: handle bidi requests without block layer help (Ming Lei) [1822001]
+- [block] scsi: bsg: refactor bsg_ioctl (Ming Lei) [1822001]
+- [netdrv] sfc: fix XDP-redirect in this driver (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: support configuring vf spoofchk on EF10 VFs (Jarod Wilson) [1796582 1788753 1684003]
+- [netdrv] sfc: ethtool: Refactor to remove fallthrough comments in case blocks (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: Replace zero-length array with flexible-array member (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: remove unused variable 'efx_default_channel_type' (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: elide assignment of skb (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move some ARFS code out of headers (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: only schedule asynchronous filter work if needed (Jarod Wilson) [1796582 1788753]
+- [netdrv] net: sfc: Use scnprintf() for avoiding potential buffer overflow (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: detach from cb_page in efx_copy_channel() (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: complete the next packet when we receive a timestamp (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: fix timestamp reconstruction at 16-bit rollover points (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move mcdi filtering code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: create header for mcdi filtering code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: rename mcdi filtering functions/structs (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: remove duplicated include from efx.c (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc/ethtool_common: Make some function to static (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: remove set but not used variable 'nic_data' (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: remove duplicated include from ef10.c (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move RPS code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move yet more functions (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move RSS code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move a couple more functions (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move some ethtool code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move various functions (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move more rx code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move more tx code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: refactor selftest work init code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move MCDI logging device attribute (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: conditioned some functionality (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move MCDI receive queue management code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move MCDI transmit queue management code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move MCDI event queue management code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move MCDI VI alloc/free code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move more MCDI port code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move some MCDI port utility functions (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move some port link state/caps code (Jarod Wilson) [1796582 1788753]
+- [netdrv] net: sfc: use skb_list_walk_safe helper for gso segments (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move common tx code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move common rx code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move event queue management code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move channel interrupt management code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move channel alloc/removal code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move channel start/stop code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move some channel-related code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move struct init and fini code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move some device reset code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move datapath management code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move mac configuration and status functions (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: move reset workqueue code (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: further preparation for code split (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: add new headers in preparation for code split (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: remove ioremap_nocache and devm_ioremap_nocache (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: Remove unnecessary dependencies on I2C (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: avoid duplicate error handling code in 'efx_ef10_sriov_set_vf_mac()' (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: Include XDP packet headroom in buffer step size (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: fix channel allocation with brute force (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: fix build without CONFIG_RFS_ACCEL (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: do ARFS expiry work occasionally even without NAPI poll (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: add statistics for ARFS (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: suppress MCDI errors from ARFS (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: change ARFS expiry mechanism (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: Only cancel the PPS workqueue if it exists (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: trace_xdp_exception on XDP failure (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: add XDP counters to ethtool stats (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: handle XDP_TX outcomes of XDP eBPF programs (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: allocate channels for XDP tx queues (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: Enable setting of xdp_prog (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: perform XDP processing on received packets (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: support encapsulation of xdp_frames in efx_tx_buffer (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: use the new __netdev_tx_sent_queue BQL optimisation (Jarod Wilson) [1796582 1788753]
+- [netdrv] net/sfc: Use skb_frag_off accessors (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: phase out dma_zalloc_coherent() (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: remove redundant variable old_vlan (Jarod Wilson) [1796582 1788753]
+- [netdrv] net: sfc: Convert random_ether_addr to eth_random_addr (Jarod Wilson) [1796582 1788753]
+- [netdrv] sfc: batch up RX delivery (Jarod Wilson) [1796582 1788753]
+- [netdrv] net: mlx4: Use scnprintf() for avoiding potential buffer overflow (Alaa Hleihel) [1789363]
+- [infiniband] IB/mlx4: Fix leak in id_map_find_del (Alaa Hleihel) [1789363]
+- [infiniband] IB/mlx4: Fix memory leak in add_gid error flow (Alaa Hleihel) [1789363]
+- [include] mlx4: Bump up MAX_MSIX from 64 to 128 (Alaa Hleihel) [1789363]
+- [infiniband] RDMA/mlx4: use true, false for bool variable (Alaa Hleihel) [1789363]
+- [infiniband] RDMA/mlx4: Redo TX checksum offload in line with docs (Alaa Hleihel) [1789363]
+- [netdrv] mlx4: use new txqueue timeout argument (Alaa Hleihel) [1789363]
+- [netdrv] treewide: Use sizeof_field() macro (Alaa Hleihel) [1789363 1789362]
+- [infiniband] IB/mlx4: Update HW GID table while adding vlan GID (Alaa Hleihel) [1789363 1789362]
+- [netdrv] net/mlx4_en: ethtool: make array modes static const, makes object smaller (Alaa Hleihel) [1789363 1789361]
+- [infiniband] RDMA/mlx4: Annotate boolean arguments as bool and not int (Alaa Hleihel) [1789363 1789361]
+- [netdrv] mlx4: avoid large stack usage in mlx4_init_hca() (Alaa Hleihel) [1789363 1789361]
+- [infiniband] RDMA/mlx4: Untag user pointers in mlx4_get_umem_mr (Alaa Hleihel) [1789363 1789361]
+- [netdrv] net: Use skb accessors in network drivers (Alaa Hleihel) [1789363 1789361]
+
+* Thu May 07 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-197.el8]
+- [net] ip_vti: receive ipip packet by calling ip_tunnel_rcv (Xin Long) [1815554]
+- [net] xfrm: call xfrm_output_gso when inner_protocol is set in xfrm_output (Xin Long) [1815968]
+- [net] sched: Fix hw_stats_type setting in pedit loop (Ivan Vecera) [1817156]
+- [net] sched: set the hw_stats_type in pedit loop (Ivan Vecera) [1817156]
+- [include] flow_offload: fix allowed types check (Ivan Vecera) [1817156]
+- [net] sched: act: allow user to specify type of HW stats for a filter (Ivan Vecera) [1817156]
+- [net] flow_offload: pass action cookie through offload structures (Ivan Vecera) [1817156]
+- [netdrv] flow_offload: introduce "disabled" HW stats type and allow it in mlxsw (Ivan Vecera) [1817156]
+- [include] flow_offload: introduce "delayed" HW stats type and allow it in mlx5 (Ivan Vecera) [1817156]
+- [netdrv] flow_offload: introduce "immediate" HW stats type and allow it in mlxsw (Ivan Vecera) [1817156]
+- [netdrv] mlxsw: restrict supported HW stats type to "any" (Ivan Vecera) [1817156]
+- [netdrv] mlxsw: spectrum_flower: Do not allow mixing HW stats types for actions (Ivan Vecera) [1817156]
+- [netdrv] flow_offload: check for basic action hw stats type (Ivan Vecera) [1817156]
+- [include] flow_offload: Introduce offload of HW stats type (Ivan Vecera) [1817156]
+- [net] netfilter: nf_tables: use-after-free in dynamic operations (Phil Sutter) [1822577]
+- [net] devlink: Add health recover notifications on devlink flows (Petr Oros) [1821169]
+- [net] devlink: add devink notification when reporter update health state (Petr Oros) [1821169]
+- [net] devlink: add support for reporter recovery completion (Petr Oros) [1821169]
+- [net] devlink: Add new "enable_roce" generic device param (Petr Oros) [1805955]
+- [netdrv] netdevsim: use __GFP_NOWARN to avoid memalloc warning (Petr Oros) [1817157]
+- [tools] selftests: add netdevsim devlink health tests (Petr Oros) [1817157]
+- [netdrv] netdevsim: implement couple of testing devlink health reporters (Petr Oros) [1817157]
+- [net] devlink: propagate extack down to health reporter ops (Petr Oros) [1817157]
+- [net] devlink: don't do reporter recovery if the state is healthy (Petr Oros) [1817157]
+- [net] xsk: Fix out of boundary write in __xsk_rcv_memcpy (Jiri Benc) [1819630]
+- [samples] bpf: Allow for -ENETDOWN in xdpsock (Jiri Benc) [1819630]
+- [samples] bpf: Drop doubled variable declaration in xdpsock (Jiri Benc) [1819630]
+- [netdrv] i40e: Relax i40e_xsk_wakeup's return value when PF is busy (Jiri Benc) [1819630]
+- [netdrv] net/ixgbe: Fix concurrency issues between config flow and XSK (Jiri Benc) [1819630]
+- [netdrv] net/i40e: Fix concurrency issues between config flow and XSK (Jiri Benc) [1819630]
+- [net] xsk: Add rcu_read_lock around the XSK wakeup (Jiri Benc) [1819630]
+- [net] fix installing orphaned programs (Jiri Benc) [1819630]
+- [tools] libbpf: Don't use kernel-side u32 type in xsk.c (Jiri Benc) [1819630]
+- [tools] libbpf: Fix compatibility for kernels without need_wakeup (Jiri Benc) [1819630]
+- [net] xsk: Fix crash in poll when device does not support ndo_xsk_wakeup (Jiri Benc) [1819630]
+- [kernel] bpf/xskmap: Return ERR_PTR for failure case instead of NULL. (Jiri Benc) [1819630]
+- [net] xdp: convert put_page() to put_user_page*() (Jiri Benc) [1819630]
+- [net] xdp: mm: introduce page_size() (Jiri Benc) [1819630]
+- [net] xsk: relax UMEM headroom alignment (Jiri Benc) [1819630]
+- [samples] bpf: fix xdpsock l2fwd tx for unaligned mode (Jiri Benc) [1819630]
+- [netdrv] ixgbe: fix xdp handle calculations (Jiri Benc) [1819630]
+- [netdrv] ixgbe: fix xdp handle calculations (Jiri Benc) [1819630]
+- [netdrv] i40e: fix xdp handle calculations (Jiri Benc) [1819630]
+- [netdrv] i40e: fix xdp handle calculations (Jiri Benc) [1819630]
+- [net] xsk: use state member for socket synchronization (Jiri Benc) [1819630]
+- [documentation] doc/af_xdp: include unaligned chunk case (Jiri Benc) [1819630]
+- [samples] bpf: use hugepages in xdpsock app (Jiri Benc) [1819630]
+- [samples] bpf: add buffer recycling for unaligned chunks to xdpsock (Jiri Benc) [1819630]
+- [samples] bpf: add unaligned chunks mode support to xdpsock (Jiri Benc) [1819630]
+- [tools] libbpf: add flags to umem config (Jiri Benc) [1819630]
+- [netdrv] mlx5e: Allow XSK frames smaller than a page (Jiri Benc) [1819630]
+- [netdrv] mlx5e: modify driver for handling offsets (Jiri Benc) [1819630]
+- [netdrv] ixgbe: modify driver for handling offsets (Jiri Benc) [1819630]
+- [netdrv] i40e: modify driver for handling offsets (Jiri Benc) [1819630]
+- [net] xsk: add support to allow unaligned chunk placement (Jiri Benc) [1819630]
+- [net] xdp: xdp_umem: replace kmap on vmap for umem map (Jiri Benc) [1819630]
+- [net] Don't call XDP_SETUP_PROG when nothing is changed (Jiri Benc) [1819630]
+- [kernel] bpf: Use PTR_ERR_OR_ZERO in xsk_map_inc() (Jiri Benc) [1819630]
+- [kernel] xsk: support BPF_EXIST and BPF_NOEXIST flags in XSKMAP (Jiri Benc) [1819630]
+- [net] xsk: remove AF_XDP socket from map when the socket is released (Jiri Benc) [1819630]
+- [netdrv] mlx5e: Add AF_XDP need_wakeup support (Jiri Benc) [1819630]
+- [netdrv] net/mlx5e: Move the SW XSK code from NAPI poll to a separate function (Jiri Benc) [1819630]
+- [samples] bpf: add use of need_wakeup flag in xdpsock (Jiri Benc) [1819630]
+- [tools] libbpf: add support for need_wakeup flag in AF_XDP part (Jiri Benc) [1819630]
+- [netdrv] ixgbe: need_wakeup flag might not be set for Tx (Jiri Benc) [1819630]
+- [netdrv] ixgbe: add support for AF_XDP need_wakeup feature (Jiri Benc) [1819630]
+- [netdrv] i40e: add support for AF_XDP need_wakeup feature (Jiri Benc) [1819630]
+- [net] xsk: add support for need_wakeup flag in AF_XDP rings (Jiri Benc) [1819630]
+- [net] xsk: replace ndo_xsk_async_xmit with ndo_xsk_wakeup (Jiri Benc) [1819630]
+- [net] xdp: xdp_umem: fix umem pages mapping for 32bits systems (Jiri Benc) [1819630]
+- [net] ethtool: add infrastructure for centralized checking of coalescing parameters (Ivan Vecera) [1818096]
+- [tools] selftests: netfilter: add simple masq/redirect test cases (Hangbin Liu) [1826220]
+- [tools] selftests: netfilter: fix config fragment CONFIG_NF_TABLES_INET (Hangbin Liu) [1826220]
+- [tools] selftests: add script to stress-test nft packet path vs. control plane (Hangbin Liu) [1826220]
+- [net] devlink: disallow reload operation during device cleanup (Petr Oros) [1805958]
+- [tools] selftests: test creating netdevsim inside network namespace (Petr Oros) [1805958]
+- [net] devlink: export devlink net setter (Petr Oros) [1805958]
+- [net] devlink: don't ignore errors during dumpit (Petr Oros) [1805958]
+- [netdrv] netdevsim: fix spelling mistake "forbidded" -> "forbid" (Petr Oros) [1805958]
+- [netdrv] netdevsim: implement devlink dev_info op (Petr Oros) [1805958]
+- [netdrv] netdevsim: add couple of debugfs bools to debug devlink reload (Petr Oros) [1805958]
+- [netdrv] netdevsim: create devlink and netdev instances in namespace (Petr Oros) [1805958]
+- [include] net: skbuff: disambiguate argument and member for skb_list_walk_safe helper (Josef Oskera) [1818105]
+- [include] net: introduce skb_list_walk_safe for skb segment walking (Josef Oskera) [1818105]
+- [netdrv] netdevsim: drop code duplicated by a merge (Petr Oros) [1805951]
+- [tools] selftests: devlink: undo changes at the end of resource_test (Petr Oros) [1805951]
+- [tools] selftests: netdevsim: add tests for devlink reload with resources (Petr Oros) [1805951]
+- [net] devlink: allow to change namespaces during reload (Petr Oros) [1805951]
+- [net] devlink: Add method for time-stamp on reporter's dump (Petr Oros) [1805951]
+- [netdrv] netdevsim: take devlink net instead of init_net (Petr Oros) [1805951]
+- [netdrv] netdevsim: register port netdevices into net of device (Petr Oros) [1805951]
+- [netdrv] netdevsim: implement proper devlink reload (Petr Oros) [1805951]
+- [netdrv] netdevsim: add all ports in nsim_dev_create() and del them in destroy() (Petr Oros) [1805951]
+- [net] devlink: export devlink net getter (Petr Oros) [1805951]
+- [net] fib_notifier: propagate extack down to the notifier block callback (Petr Oros) [1805951]
+- [net] fib_notifier: propagate possible error during fib notifier registration (Petr Oros) [1805951]
+- [net] fib_notifier: make FIB notifier per-netns (Petr Oros) [1805951]
+- [netdrv] netdevsim: change fib accounting and limitations to be per-device (Petr Oros) [1805951]
+- [netdrv] netdevsim: Set offsets to various protocol layers (Petr Oros) [1805951]
+- [net] devlink: Fix error handling in param and info_get dumpit cb (Petr Oros) [1805951]
+- [net] lwtunnel: check erspan options before allocating tun_info (Xin Long) [1730151]
+- [net] lwtunnel: be STRICT to validate the new LWTUNNEL_IP(6)_OPTS (Xin Long) [1730151]
+- [net] lwtunnel: add support for multiple geneve opts (Xin Long) [1730151]
+- [net] lwtunnel: change to use nla_put_u8 for LWTUNNEL_IP_OPT_ERSPAN_VER (Xin Long) [1730151]
+- [net] lwtunnel: ignore any TUNNEL_OPTIONS_PRESENT flags set by users (Xin Long) [1730151]
+- [net] lwtunnel: get nlsize for erspan options properly (Xin Long) [1730151]
+- [net] lwtunnel: change to use nla_parse_nested on new options (Xin Long) [1730151]
+- [net] lwtunnel: add options setting and dumping for erspan (Xin Long) [1730151]
+- [net] lwtunnel: add options setting and dumping for vxlan (Xin Long) [1730151]
+- [net] lwtunnel: add options setting and dumping for geneve (Xin Long) [1730151]
+- [net] lwtunnel: add options process for cmp_encap (Xin Long) [1730151]
+- [net] lwtunnel: add options process for arp request (Xin Long) [1730151]
+- [net] ip_tunnel: Add dst_cache support in lwtunnel_state of ip tunnel (Xin Long) [1730151]
+- [include] tcp: Define IPPROTO_MPTCP (Florian Westphal) [1812198]
+- [net] skb: add helpers to allocate ext independently from sk_buff (Florian Westphal) [1812198]
+- [net] tcp: Check for filled TCP option space before SACK (Florian Westphal) [1812198]
+- [net] tcp: Export TCP functions and ops struct (Florian Westphal) [1812198]
+- [net] tcp: coalesce/collapse must respect MPTCP extensions (Florian Westphal) [1812198]
+- [net] mptcp: Add MPTCP to skb extensions (Florian Westphal) [1812198]
+- [net] tcp, ulp: Add clone operation to tcp_ulp_ops (Florian Westphal) [1812198]
+- [include] tcp: Add MPTCP option number (Florian Westphal) [1812198]
+- [net] Make sock protocol value checks more specific (Florian Westphal) [1812198]
+- [net] ipv6: provide and use ipv6 specific version for {recv, send}msg (Florian Westphal) [1812198]
+- [net] inet: factor out inet_send_prepare() (Florian Westphal) [1812198]
+- [net] tipc: fix incorrect increasing of link window (Xin Long) [1822129]
+- [net] tipc: Add a missing case of TIPC_DIRECT_MSG type (Xin Long) [1822129]
+- [net] tipc: add NULL pointer check to prevent kernel oops (Xin Long) [1822129]
+- [net] tipc: simplify trivial boolean return (Xin Long) [1822129]
+- [net] tipc: add missing attribute validation for MTU property (Xin Long) [1822129]
+- [net] tipc: fix successful connect() but timed out (Xin Long) [1822129]
+- [net] tipc: make three functions static (Xin Long) [1822129]
+- [net] tipc: fix wrong connect() return code (Xin Long) [1822129]
+- [net] tipc: make legacy address flag readable over netlink (Xin Long) [1822129]
+- [net] tipc: don't send gap blocks in ACK messages (Xin Long) [1822129]
+- [net] tipc: fix use-after-free in tipc_disc_rcv() (Xin Long) [1822129]
+- [net] tipc: introduce variable window congestion control (Xin Long) [1822129]
+- [net] tipc: eliminate more unnecessary nacks and retransmissions (Xin Long) [1822129]
+- [net] tipc: eliminate gap indicator from ACK messages (Xin Long) [1822129]
+- [net] tipc: fix duplicate SYN messages under link congestion (Xin Long) [1822129]
+- [net] tipc: support in-order name publication events (Xin Long) [1822129]
+- [net] tipc: add back tipc prefix to log messages (Xin Long) [1822129]
+- [net] tipc: fix update of the uninitialized variable err (Xin Long) [1822129]
+- [net] tipc: add support for AEAD key setting via netlink (Xin Long) [1822129]
+- [net] tipc: introduce TIPC encryption & authentication (Xin Long) [1822129]
+- [include] tipc: add new AEAD key structure for user API (Xin Long) [1822129]
+- [net] tipc: enable creating a "preliminary" node (Xin Long) [1822129]
+- [net] tipc: add reference counter to bearer (Xin Long) [1822129]
+- [net] tipc: eliminate checking netns if node established (Xin Long) [1822129]
+- [net] tipc: eliminate the dummy packet in link synching (Xin Long) [1822129]
+- [net] tipc: improve message bundling algorithm (Xin Long) [1822129]
+- [net] tipc: add smart nagle feature (Xin Long) [1822129]
+- [net] tipc: improve throughput between nodes in netns (Xin Long) [1822129]
+- [net] tipc: add loopback device tracking (Xin Long) [1822129]
+- [netdrv] vxlan: check return value of gro_cells_init() (Sabrina Dubroca) [1821295]
+- [netdrv] geneve: move debug check after netdev unregister (Sabrina Dubroca) [1821295]
+- [net] ip6_tunnel: enhance tunnel locate with link check (Sabrina Dubroca) [1821295]
+- [netdrv] vxlan: implement get_link_ksettings ethtool method (Sabrina Dubroca) [1821295]
+- [netdrv] vxlan: check tun_info options_len properly (Sabrina Dubroca) [1821295]
+- [include] iptunnel: make TUNNEL_FLAGS available in uapi (Sabrina Dubroca) [1821295]
+- [net] introduce dev_net notifier register/unregister variants (Ivan Vecera) [1818102]
+- [net] push code from net notifier reg/unreg into helpers (Ivan Vecera) [1818102]
+- [net] call call_netdevice_unregister_net_notifiers from unregister (Ivan Vecera) [1818102]
+- [net] introduce per-netns netdevice notifiers (Ivan Vecera) [1818102]
+- [net] push loops and nb calls into helper functions (Ivan Vecera) [1818102]
+- [include] net: ipv6: do not consider routes via gateways for anycast address check (Hangbin Liu) [1816506]
+- [net] ipv6/addrconf: call ipv6_mc_up() for non-Ethernet interface (Hangbin Liu) [1816506]
+- [net] ipv6: need update peer route when modify metric (Hangbin Liu) [1816506]
+- [net] ipv6: use configured metric when add peer route (Hangbin Liu) [1816506]
+- [net] ipv6: restrict IPV6_ADDRFORM operation (Hangbin Liu) [1816506]
+- [net] ipv6: Fix nlmsg_flags when splitting a multipath route (Hangbin Liu) [1816506]
+- [net] ipv6: Fix route replacement with dev-only route (Hangbin Liu) [1816506]
+- [net] ipv6/addrconf: fix potential NULL deref in inet6_set_link_af() (Hangbin Liu) [1816506]
+- [net] net-ipv6-ndisc: add support for RFC7710 RA Captive Portal Identifier (Hangbin Liu) [1816506]
+- [net] ipv6: Don't use dst gateway directly in ip6_confirm_neigh() (Hangbin Liu) [1816506]
+- [net] ipv6: Fix the link time qualifier of 'ping_v6_proc_exit_net()' (Hangbin Liu) [1816506]
+- [net] ipv6: propagate ipv6_add_dev's error returns out of ipv6_find_idev (Hangbin Liu) [1816506]
+- [net] ipv6: allow any source address for sendmsg pktinfo with ip_nonlocal_bind (Hangbin Liu) [1816506]
+- [net] multicast: remove useless parameter for group add (Hangbin Liu) [1816506]
+- [documentation] networking: devlink-trap: Fix reference to other document (Petr Oros) [1805882]
+- [netdrv] netdevsim: Fix use-after-free during device dismantle (Petr Oros) [1805882]
+- [netdrv] netdevsim: Fix build error without CONFIG_INET (Petr Oros) [1805882]
+- [net] devlink: move reload fail indication to devlink core and expose to user (Petr Oros) [1805882]
+- [net] devlink: split reload op into two (Petr Oros) [1805882]
+- [netdrv] mlx4: Split restart_one into two functions (Petr Oros) [1805882]
+- [include] devlink: add unknown 'fw_load_policy' value (Petr Oros) [1805882]
+- [net] devlink: add 'reset_dev_on_drv_probe' param (Petr Oros) [1805882]
+- [include] devlink: extend 'fw_load_policy' values (Petr Oros) [1805882]
+- [include] devlink: Add new info version tags for ASIC and FW (Petr Oros) [1805882]
+- [net] devlink: Use switch-case instead of if-else (Petr Oros) [1805882]
+- [net] devlink: Make port index data type as unsigned int (Petr Oros) [1805882]
+- [net] devlink: send notifications for deleted snapshots on region destroy (Petr Oros) [1805882]
+- [net] devlink: remove pointless data_len arg from region snapshot create (Petr Oros) [1805882]
+- [documentation] Add description of netdevsim traps (Petr Oros) [1805882]
+- [netdrv] netdevsim: Add devlink-trap support (Petr Oros) [1805882]
+- [tools] selftests: netdevsim: add devlink regions tests (Petr Oros) [1805882]
+- [tools] selftests: netdevsim: add devlink params tests (Petr Oros) [1805882]
+- [netdrv] netdevsim: implement support for devlink region and snapshots (Petr Oros) [1805882]
+- [netdrv] netdevsim: register couple of devlink params (Petr Oros) [1805882]
+
+* Wed May 06 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-196.el8]
+- [arm64] kvm: arm64: limit PMU version to PMUv3 for ARMv8.1 (Gavin Shan) [1814009]
+- [arm64] cpufeature: Extract capped perfmon fields (Gavin Shan) [1814009]
+- [virt] kvm: arm64: Use the correct timer structure to access the physical counter (Gavin Shan) [1814009]
+- [arm64] Ask the compiler to __always_inline functions used by KVM at HYP (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Define our own swab32() to avoid a uapi static inline (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Ask the compiler to __always_inline functions used at HYP (Gavin Shan) [1814009]
+- [arm64] kvm: arm/arm64: Fold VHE entry/exit work into kvm_vcpu_run_vhe() (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Fix up includes for trace.h (Gavin Shan) [1814009]
+- [virt] kvm: arm64: Treat emulated TVAL TimerValue as a signed 32-bit integer (Gavin Shan) [1814009]
+- [virt] kvm: arm64: pmu: Only handle supported event counters (Gavin Shan) [1814009]
+- [virt] kvm: arm64: pmu: Fix chained SW_INCR counters (Gavin Shan) [1814009]
+- [virt] kvm: arm64: pmu: Don't mark a counter as chained if the odd one is disabled (Gavin Shan) [1814009]
+- [virt] kvm: arm64: pmu: Don't increment SW_INCR if PMCR.E is unset (Gavin Shan) [1814009]
+- [virt] kvm: arm: Make inject_abt32() inject an external abort instead (Gavin Shan) [1814009]
+- [virt] kvm: arm: Fix DFSR setting for non-LPAE aarch32 guests (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Fix young bit from mmu notifier (Gavin Shan) [1814009]
+- [arm64] kvm: Add UAPI notes for swapped registers (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Cleanup MMIO handling (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Write arch.mdcr_el2 changes since last vcpu_load on VHE (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: vgic: Drop the kvm_vgic_register_mmio_region() (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: vgic-its: Properly check the unmapped coll in DISCARD handler (Gavin Shan) [1814009]
+- [arm64] kvm: arm/arm64: Correct AArch32 SPSR on exception entry (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Correct CPSR on exception entry (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Correct PSTATE on exception entry (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Re-check VMA on detecting a poisoned page (Gavin Shan) [1814009]
+- [virt] kvm: arm: Remove duplicate include (Gavin Shan) [1814009]
+- [virt] kvm: arm: Call hyp_cpu_pm_exit at the right place (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: vgic: Handle GICR_PENDBASER.PTZ filed as RAZ (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: vgic-its: Fix restoration of unmapped collections (Gavin Shan) [1814009]
+- [virt] kvm: arm64: Only sign-extend MMIO up to register width (Gavin Shan) [1814009]
+- [arm64] kvm: stop treating register x18 as caller save (Gavin Shan) [1814009]
+- [arm64] Workaround for Cortex-A55 erratum 1530923 (Gavin Shan) [1814009]
+- [arm64] Rename WORKAROUND_1319367 to SPECULATIVE_AT_NVHE (Gavin Shan) [1814009]
+- [arm64] Enable and document ARM errata 1319367 and 1319537 (Gavin Shan) [1814009]
+- [arm64] Rename WORKAROUND_1165522 to SPECULATIVE_AT_VHE (Gavin Shan) [1814009]
+- [arm64] Introduce ID_ISAR6 CPU register (Gavin Shan) [1814009]
+- [arm64] nofpsmid: Handle TIF_FOREIGN_FPSTATE flag cleanly (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Properly handle faulting of device mappings (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Ensure 'params' is initialised when looking up sys register (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Remove excessive permission check in kvm_arch_prepare_memory_region (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Don't log IMP DEF sysreg traps (Gavin Shan) [1814009]
+- [arm64] kvm: Invoke compute_layout() before alternatives are applied (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Sanely ratelimit sysreg messages (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: vgic: Use wrapper function to lock/unlock all vcpus in kvm_vgic_create() (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: vgic: Fix potential double free dist->spis in __kvm_vgic_destroy() (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Get rid of unused arg in cpu_init_hyp_mode() (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Opportunistically turn off WFI trapping when using direct LPI injection (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Let the timer expire in hardirq context on RT (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: vgic: Fix some comments typo (Gavin Shan) [1814009]
+- [kvm] arm/arm64: vgic: Remove the declaration of kvm_send_userspace_msi() (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Don't set HCR_EL2.TVM when S2FWB is supported (Gavin Shan) [1814009]
+- [arm64] kvm: arm/arm64: Show halt poll counters in debugfs (Gavin Shan) [1814009]
+- [arm64] kvm: Prevent speculative S1 PTW when restoring vcpu context (Gavin Shan) [1814009]
+- [arm64] kvm: Disable EL1 PTW when invalidating S2 TLBs (Gavin Shan) [1814009]
+- [arm64] Add ARM64_WORKAROUND_1319367 for all A57 and A72 versions (Gavin Shan) [1814009]
+- [arm64] kvm: Reorder system register restoration and stage-2 activation (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Select TASK_DELAY_ACCT+TASKSTATS rather than SCHEDSTATS (Gavin Shan) [1814009]
+- [arm64] Retrieve stolen time as paravirtualized guest (Gavin Shan) [1814009]
+- [arm64] arm/arm64: Make use of the SMCCC 1.1 wrapper (Gavin Shan) [1814009]
+- [kernel] arm/arm64: Provide a wrapper for SMCCC 1.1 calls (Gavin Shan) [1814009]
+- [virt] kvm: arm64: Provide VCPU attributes for stolen time (Gavin Shan) [1814009]
+- [virt] kvm: arm64: Support stolen time reporting via shared structure (Gavin Shan) [1814009]
+- [virt] kvm: arm64: Implement PV_TIME_FEATURES call (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Factor out hypercall handling from PSCI code (Gavin Shan) [1814009]
+- [documentation] kvm: arm64: Document PV-time interface (Gavin Shan) [1814009]
+- [arm64] kvm: arm/arm64: Allow user injection of external data aborts (Gavin Shan) [1814009]
+- [virt] kvm: arm/arm64: Allow reporting non-ISV data aborts to userspace (Gavin Shan) [1814009]
+- [arm64] errata: use arm_smccc_1_1_get_conduit() (Gavin Shan) [1814009]
+- [kernel] arm/arm64: smccc/psci: add arm_smccc_1_1_get_conduit() (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Fix ptrauth ID register masking logic (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Add capability to advertise ptrauth for guest (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Add userspace flag to enable pointer authentication (Gavin Shan) [1814009]
+- [arm64] kvm: arm/arm64: Context-switch ptrauth registers (Gavin Shan) [1814009]
+- [arm64] kvm: arm64: Add a vcpu flag to control ptrauth for guest (Gavin Shan) [1814009]
+- [tools] selftests: kvm: s390: fix format strings for access reg test (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: make syncregs more reliable on s390 (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: drop vcpu_setup from s390x (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Add support for vcpu_args_set to aarch64 and s390x (Vitaly Kuznetsov) [1813987]
+- [iommu] amd: Fix IOMMU AVIC not properly update the is_run bit in IRTE (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: Fix kernel crash with PR KVM (Vitaly Kuznetsov) [1813987]
+- [x86] cpu: Print "VMX disabled" error message iff KVM is enabled (Vitaly Kuznetsov) [1813987]
+- [tools] redhat: update kvm/x86 headers in tools (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: fix crash cleanup when KVM wasn't used (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Filter out the broadcast dest for IPI fastpath (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: don't clear mtf_pending when nested events are blocked (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Remove unnecessary exception trampoline in vmx_vmenter (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Split svm_vcpu_run inline assembly to separate file (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Move SEV code to separate file (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Move AVIC code to separate file (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Move Nested SVM Implementation to nested.c (Vitaly Kuznetsov) [1813987]
+- [x86] kvm svm: Move SVM related files to own sub-directory (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: fix a missing-prototypes "vmread_error" (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix BUILD_BUG() in __cpuid_entry_get_reg() w/ CONFIG_UBSAN=y (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Add a trampoline to fix VMREAD error handling (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Annotate svm_x86_ops as __initdata (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Annotate vmx_x86_ops as __initdata (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop __exit from kvm_x86_ops' hardware_unsetup() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Copy kvm_x86_ops by value to eliminate layer of indirection (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Set kvm_x86_ops only after ->hardware_setup() completes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Configure runtime hooks using vmx_x86_ops (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Move hardware_setup() definition below vmx_x86_ops (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move init-only kvm_x86_ops to separate struct (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Pass kvm_init()'s opaque param to additional arch funcs (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Fix cosmetic copy-paste error in vm_mem_region_move() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Fix out of range accesses to memslots (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Micro-optimize IPI fastpath delay (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Delay read msr data iff writes ICR MSR (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Narrow down the IPI fastpath to single target IPI (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Gracefully handle faults on VMXON (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Fold loaded_vmcs_init() into alloc_loaded_vmcs() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Always VMCLEAR in-use VMCSes during crash with kexec support (Vitaly Kuznetsov) [1813987]
+- [tools] kvm_stat: add command line switch '-c' to log in csv format (Vitaly Kuznetsov) [1813987]
+- [tools] kvm_stat: add command line switch '-s' to set update interval (Vitaly Kuznetsov) [1813987]
+- [tools] kvm_stat: switch to argparse (Vitaly Kuznetsov) [1813987]
+- [tools] kvm_stat: rework command line sequence and message texts (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: don't allow memory operands for inline asm that modifies SP (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: lapic: Mark hrtimer for period or oneshot mode to expire in hard interrupt context (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Issue WBINVD after deactivating an SEV guest (Vitaly Kuznetsov) [1813987]
+- [documentation] kvm: svm: document KVM_MEM_ENCRYPT_OP, let userspace detect if SEV is available (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: remove bogus user-triggerable WARN_ON (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Rework timespec functions and usage (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Code style cleanup in kvm_arch_dev_ioctl() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add blurb to CPUID tracepoint when using max basic leaf values (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add requested index to the CPUID tracepoint (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nsvm: check for EFER.SVME=1 before entering guest (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: remove side effects from nested_vmx_exit_reflected (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: access regs array in vmenter.S in its natural order (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: enlightened VMPTRLD with an incorrect GPA (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: test enlightened vmenter with wrong eVMCS version (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: define and use EVMCS_VERSION (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: properly handle errors in nested_vmx_handle_enlightened_vmptrld() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: stop abusing need_vmcs12_to_shadow_sync for eVMCS mapping (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: Uses TEST_FAIL in tests/utilities (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: Introduce the TEST_FAIL macro (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Introduce steal-time test (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: virt_map should take npages, not size (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Use consistent message for test skipping (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Enable printf format warnings for TEST_ASSERT (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Share common API documentation (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: svm: Add vmcall test to gitignore (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nsvm: Remove an obsolete comment (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: correct meaningless kvm_apicv_activated() check (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Consolidate nested MTF checks to helper function (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Micro-optimize vmexit time when not exposing PMU (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Introduce GA Log tracepoint for AVIC (Vitaly Kuznetsov) [1813987]
+- [documentation] kvm: documentation: Update fast page fault for indirect sp (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nsvm: avoid loss of pending IRQ/NMI before entering L2 (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nsvm: implement check_nested_events for interrupts (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nsvm: ignore L1 interrupt window while running L2 with V_INTR_MASKING=1 (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nsvm: do not change host intercepts while nested VM is running (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: rename set_cr3 callback and related flags to load_mmu_pgd (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: unify callbacks to load paging root (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor kvm_cpuid() param that controls out-of-range logic (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor out-of-range logic to contain the madness (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix CPUID range checks for Hypervisor and Centaur classes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add helpers to perform CPUID-based guest vendor check (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Trace the original requested CPUID function in kvm_cpuid() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: cpuid: add support for supervisor states (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move nSVM CPUID 0x8000000A handling into common x86 code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nsvm: Advertise and enable NRIPS for L1 iff nrips is enabled (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nsvm: Expose SVM features to L1 iff nested is enabled (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move VMX's host_efer to common x86 code (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Drop largepages_enabled and its accessor/mutator (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Don't propagate MMU lpage support to memslot.disallow_lpage (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Configure max page level during hardware setup (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Merge kvm_{enable, disable}_tdp() into a common function (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Refactor logging of NPT enabled/disabled (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Directly query Intel PT mode when refreshing PMUs (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Check for Intel PT MSR virtualization using KVM cpu caps (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Directly use VMX capabilities helper to detect RDTSCP support (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use KVM cpu caps to detect MSR_TSC_AUX virt support (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Do kvm_cpuid_array capacity checks in terminal functions (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use kvm_cpu_caps to detect Intel PT support (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Set emulated/transmuted feature bits via kvm_cpu_caps (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Override host CPUID results with kvm_cpu_caps (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Do host CPUID at load time to mask KVM cpu caps (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Remove stateful CPUID handling (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Squash CPUID 0x2.0 insanity for modern CPUs (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Remove the unnecessary loop on CPUID 0x7 sub-leafs (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fold CPUID 0x7 masking back into __do_cpuid_func() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use KVM cpu caps to track UMIP emulation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use KVM cpu caps to mark CR4.LA57 as not-reserved (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add a helper to check kernel support when setting cpu cap (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move XSAVES CPUID adjust to VMX's KVM cpu cap update (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Convert feature updates from CPUID to KVM cpu caps (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Convert feature updates from CPUID to KVM cpu caps (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Introduce kvm_cpu_caps to replace runtime CPUID masking (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor handling of XSAVES CPUID adjustment (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: handle GBPAGE CPUID adjustment for EPT with generic code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Handle Intel PT CPUID adjustment in VMX code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Handle RDTSCP CPUID adjustment in VMX code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Handle PKU CPUID adjustment in VMX code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Handle UMIP emulation CPUID adjustment in VMX code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Handle INVPCID CPUID adjustment in VMX code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Handle MPX CPUID adjustment in VMX code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor cpuid_mask() to auto-retrieve the register (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Introduce cpuid_entry_{change, set, clear}() mutators (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Introduce cpuid_entry_{get, has}() accessors (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Replace bare "unsigned" with "unsigned int" in cpuid helpers (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use u32 for holding CPUID register value in helpers (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop explicit @func param from ->set_supported_cpuid() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Clear output regs for CPUID 0x14 if PT isn't exposed to guest (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Make kvm_mpx_supported() an inline function (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use supported_xcr0 to detect MPX support (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Calculate the supported xcr0 mask at load time (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Add helpers to query Intel PT mode (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use common loop iterator when handling CPUID 0xD.N (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop redundant array size check (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Encapsulate CPUID entries and metadata in struct (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor CPUID 0x4 and 0x8000001d handling (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Hoist loop counter and terminator to top of __do_cpuid_func() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Consolidate CPUID array max num entries checking (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop redundant boot cpu checks on SSBD feature bits (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop the explicit @index from do_cpuid_7_mask() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Clean up CPUID 0x7 sub-leaf loop (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor CPUID 0xD.N sub-leaf entry creation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Warn on zero-size save state for valid CPUID 0xD.N sub-leaf (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Check for CPUID 0xD.N support before validating array size (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move CPUID 0xD.1 handling out of the index>0 loop (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Check userspace CPUID array size after validating sub-leaf (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Clean up error handling in kvm_dev_ioctl_get_cpuid() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Simplify handling of Centaur CPUID leafs (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor loop around do_cpuid_func() to separate helper (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Return -E2BIG when KVM_GET_SUPPORTED_CPUID hits max entries (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Shrink the usercopy region of the emulation context (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move kvm_emulate.h into KVM's private directory (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Dynamically allocate per-vCPU emulation context (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move emulation-only helpers to emulate.c (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Explicitly pass an exception struct to check_intercept (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor I/O emulation helpers to provide vcpu-only variant (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Drop gfn_to_pfn_atomic() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix warning due to implicit truncation on 32-bit KVM (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Drop unnecessary check on ept caps for execute-only (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Rename kvm_mmu->get_cr3() to ->get_guest_pgd() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Rename EPTP validity helper and associated variables (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Rename nested_ept_get_cr3() to nested_ept_get_eptp() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Allow L1 to use 5-level page walks for nested EPT (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Drop kvm_mmu_extended_role.cr4_la57 hack (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Don't drop level/direct from MMU role calculation (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Support dirty log initial-all-set test (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Properly handle userspace interrupt window request (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: trigger kvmclock sync request just once on VM creation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: lapic: Recalculate apic map in batch (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Fix some obsolete comments (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: x86: enable dirty log gradually in small chunks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Reuse the current root if possible for fast switch (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Ignore guest CR3 on fast root switch for direct MMU (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Inhibit APIC virtualization for X2APIC guest (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Remove unnecessary asm/kvm_host.h includes (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Fix unknown ucall command asserts (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Consolidate VM allocation and free for VMX and SVM (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Directly return __vmalloc() result in ->vm_alloc() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Gracefully handle __vmalloc() failure during VM allocation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Adjust counter sample period after a wrmsr (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Consolidate open coded variants of memslot TLB flushes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Use range-based TLB flush for dirty log memslot flush (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Move kvm_arch_flush_remote_tlbs_memslot() to mmu.c (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Add test for KVM_SET_USER_MEMORY_REGION (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Dynamically size memslot array based on number of used slots (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Terminate memslot walks via used_slots (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Ensure validity of memslot with respect to kvm_get_dirty_log() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Provide common implementation for generic dirty log functions (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Clean up local variable usage in __kvm_set_memory_region() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Simplify kvm_free_memslot() and all its descendents (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Move memslot deletion to helper function (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Free arrays for old memslot when moving memslot's base gfn (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Drop "const" attribute from old memslot in commit_memory_region() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Move setting of memslot into helper routine (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Refactor error handling for setting memory region (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Explicitly free allocated-but-unused dirty bitmap (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Drop kvm_arch_create_memslot() (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: Move memslot memory allocation into prepare_memory_region() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Allocate memslot resources during prepare_memory_region() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Don't free new memslot if allocation of said memslot fails (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Reinstall old memslots if arch preparation fails (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Allocate new rmap and large page tracking when moving memslot (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move gpa_val and gpa_available into the emulator context (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add EMULTYPE_PF when emulation is triggered by a page fault (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: apic: remove unused function apic_lvt_vector() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Add 'else' to split mutually exclusive case (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: eliminate some unreachable code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix print format and coding style (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: rewrite the comment in vmx_get_mt_mask (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Convert some printf's to pr_info's (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Rework debug message printing (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Time guest demand paging (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Support multiple vCPUs in demand paging test (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Pass args to vCPU in global vCPU args struct (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Add memory size parameter to the demand paging test (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Add configurable demand paging delay (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Add demand paging content to the demand paging test (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Create a demand paging test (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Introduce num-pages conversion utilities (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Introduce vm_guest_mode_params (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Rename vm_guest_mode_params (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: aarch64: Remove unnecessary ifdefs (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: Remove unnecessary defines (Vitaly Kuznetsov) [1813987]
+- [tools] redhat: selftests: kvm: add SPDX-License-Identifier (Vitaly Kuznetsov) [1813987]
+- [x86] redhat: kvm: x86: add SPDX-License-Identifier (Vitaly Kuznetsov) [1813987]
+- [x86] x86 kvm page table walks: switch to explicit __get_user() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: avoid NULL pointer dereference with incorrect EVMCS GPAs (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Initializing all kvm_lapic_irq fields in ioapic_write_indirect (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Condition ENCLS-exiting enabling on CPU support for SGX1 (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: fix Kconfig menu text for -Werror (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: remove stale comment from struct x86_emulate_ctxt (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Fix the svm vmexit code for WRMSR (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix dereference null cpufreq policy (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: limit the number of "kvm: disabled by bios" messages (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: avoid useless copy of cpufreq policy (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: allow disabling -Werror (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: allow compiling as non-module with W=1 (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Pre-allocate 1 cpumask variable per cpu for both pv tlb and pv ipis (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Introduce pv check helpers (Vitaly Kuznetsov) [1813987]
+- [kernel] kvm: let declaration of kvm_get_running_vcpus match implementation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: allocate AVIC data structures based on kvm_amd module parameter (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Emulate MTF when performing instruction emulation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: fix error handling in svm_hardware_setup (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Fix potential memory leak in svm_cpu_init() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: apic: avoid calculating pending eoi from an uninitialized val (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: clear PIN_BASED_POSTED_INTR from nested pinbased_ctls only when apicv is globally disabled (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: handle nested posted interrupts when apicv is disabled for L1 (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: svm: Fix NULL pointer dereference when AVIC not enabled (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Hold KVM's srcu lock when syncing vmcs12->shadow (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: don't notify userspace IOAPIC on edge-triggered interrupt EOI (Vitaly Kuznetsov) [1813987]
+- [x86] kvm/emulate: fix a -Werror=cast-function-type (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: fix incorrect comparison in trace event (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Fix some obsolete comments and grammar error (Vitaly Kuznetsov) [1813987]
+- [kernel] kvm: x86: fix missing prototypes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: enable -Werror (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: virt: guest-halt-polling.txt convert to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: review-checklist.txt: rename to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: Convert timekeeping.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: Convert s390-diag.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: Convert ppc-pv.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: Convert nested-vmx.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: Convert mmu.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: Convert locking.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: Convert hypercalls.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: arm/psci.txt: convert to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert arm/hyp-abi.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: Convert api.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert devices/xive.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert devices/xics.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert devices/vm.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert devices/vfio.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert devices/vcpu.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert devices/s390_flic.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert devices/mpic.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: convert devices/arm-vgit.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: devices/arm-vgit-v3.txt to ReST (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: devices/arm-vgic-its.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: virt: Convert msr.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: virt: convert halt-polling.txt to ReST format (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: kvm: add arm/pvtime.rst to index.rst (Vitaly Kuznetsov) [1813987]
+- [documentation] docs: virtual: add it to the documentation body (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: fix WARN_ON check of an unsigned less than zero (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: Remove unused x86_register enum (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Fix struct guest_walker arrays for 5-level paging (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Use correct root level for nested EPT shadow page tables (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Fix some comment typos and coding style (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Avoid retpoline on ->page_fault() with TDP (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: apic: reuse smp_wmb() in kvm_make_request() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: remove duplicated KVM_REQ_EVENT request (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: svm: Add vmcall test (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: AMD Nested test infrastructure (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: Replace get_{gdt, idt}_base() by get_{gdt, idt}() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Deliver exception payload on KVM_GET_VCPU_EVENTS (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Handle pending #DB when injecting INIT VM-exit (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Mask off reserved bit from #DB exception payload (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Disable preemption in kvm_get_running_vcpu() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: delete meaningless vmx_decache_cr0_guest_bits() declaration (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Mark CR4.UMIP as reserved based on associated CPUID bit (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix perfctr WRMSR for running counters (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: mmu: Separate generating and setting mmio ptes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: mmu: Replace unsigned with unsigned int for PTE access (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Remove stale comment from nested_vmx_load_cr3() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: do not setup pv tlb flush when not paravirtualized (Vitaly Kuznetsov) [1813987]
+- [x86] Add "nopv" parameter to disable PV extensions (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: fix overflow of zero page refcount with ksm running (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Take a u64 when checking for a valid dr7 value (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: use raw clock values consistently (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: reorganize pvclock_gtod_data members (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: delete meaningless nested_vmx_run() declaration (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: allow AVIC without split irqchip (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: ioapic: Lazy update IOAPIC EOI (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: ioapic: Refactor kvm_ioapic_update_eoi() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: i8254: Deactivate APICv when using in-kernel PIT re-injection mode (Vitaly Kuznetsov) [1813987]
+- [x86] svm: Temporarily deactivate AVIC during ExtINT handling (Vitaly Kuznetsov) [1813987]
+- [x86] svm: Deactivate AVIC when launching guest with nested SVM support (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: hyperv: Use APICv update request interface (Vitaly Kuznetsov) [1813987]
+- [x86] svm: Add support for dynamic APICv (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Introduce x86 ops hook for pre-update APICv (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Introduce APICv x86 ops for checking APIC inhibit reasons (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: avic: Add support for dynamic setup/teardown of virtual APIC backing page (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: svm: Add support to (de)activate posted interrupts (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add APICv (de)activate request trace points (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add support for dynamic APICv activation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: remove get_enable_apicv from kvm_x86_ops (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Introduce APICv inhibit reason bits (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: lapic: Introduce APICv update helper function (Vitaly Kuznetsov) [1813987]
+- [iommu] amd: Re-factor guest virtual APIC (de-)activation code (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: Add fpu and one reg set/get library functions (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Clean up host's steal time structure (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Make sure KVM_VCPU_FLUSH_TLB flag is not missed (Vitaly Kuznetsov) [1813987]
+- [virt] x86/kvm: Cache gfn to pfn translation (Vitaly Kuznetsov) [1813987]
+- [virt] x86/kvm: Introduce kvm_(un)map_gfn() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Be careful not to clear KVM_VCPU_FLUSH_TLB bit (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use a typedef for fastop functions (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add 'else' to unify fastop and execute call path (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: inline memslot_valid_for_gpte (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Use huge pages for DAX-backed files (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Remove lpage_is_disallowed() check from set_spte() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Fold max_mapping_level() into kvm_mmu_hugepage_adjust() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Zap any compound page when collapsing sptes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Remove obsolete gfn restoration in FNAME(fetch) (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Rely on host page tables to find HugeTLB mappings (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Drop level optimization from fast_page_fault() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Walk host page tables to find THP mappings (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Refactor THP adjust to prep for changing query (Vitaly Kuznetsov) [1813987]
+- [x86] mm: Introduce lookup_address_in_mm() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Play nice with read-only memslots when querying host page size (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Use vcpu-specific gva->hva translation when querying host page size (Vitaly Kuznetsov) [1813987]
+- [mm] thp: kvm: Explicitly check for THP when populating secondary MMU (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Enforce max_level on HugeTLB mappings (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Return immediately if __kvm_gfn_to_hva_cache_init() fails (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Clean up __kvm_gfn_to_hva_cache_init() and its callers (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Check for a bad hva before dropping into the ghc slow path (Vitaly Kuznetsov) [1813987]
+- [x86] kvm/x86: export kvm_vector_hashing_enabled() is unnecessary (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: remove duplicated segment cache clear (Vitaly Kuznetsov) [1813987]
+- [x86] Adding 'else' to reduce checking (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Check GUEST_DR7 on vmentry of nested guests (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Move running VCPU from ARM to common code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop x86_set_memory_region() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Don't take srcu lock in init_rmode_identity_map() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Add build-time error check on kvm_run size (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Remove kvm_read_guest_atomic() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Perform non-canonical checks in 32-bit KVM (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: WARN on failure to set IA32_PERF_GLOBAL_CTRL (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Remove unused ctxt param from emulator's FPU accessors (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: revert "kvm: x86: Fix fpu state crash in kvm guest" (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Ensure guest's FPU state is loaded when accessing for emulation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Handle TIF_NEED_FPU_LOAD in kvm_{load, put}_guest_fpu() (Vitaly Kuznetsov) [1813987]
+- [x86] revert "kvm: x86: Add a WARN on TIF_NEED_FPU_LOAD in kvm_load_guest_fpu()" (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: apic: short-circuit kvm_apic_accept_pic_intr() when pic intr is accepted (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: avoid clearing pending exception event twice (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect pmu_intel.c from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect DR-based index computations from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect exit_reason from being used in Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor prefix decoding to prevent Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect MSR-based index computations from Spectre-v1/L1TF attacks in x86.c (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect MSR-based index computations in pmu.h from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect MSR-based index computations in fixed_msr_to_seg_unit() from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect kvm_lapic_reg_write() from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect ioapic_write_indirect() from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect ioapic_read_indirect() from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor picdev_write() to prevent Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect kvm_hv_msr_[get|set]_crash_data() from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Protect x86_decode_insn from Spectre-v1/L1TF attacks (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Move vcpu->run page allocation out of kvm_vcpu_init() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Move putting of vcpu->pid to kvm_vcpu_destroy() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Drop kvm_arch_vcpu_init() and kvm_arch_vcpu_uninit() (Vitaly Kuznetsov) [1813987]
+- [arm64] kvm: arm64: Free sve_state via arm specific hook (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: Move all vcpu init code into kvm_arch_vcpu_create() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: arm: Move all vcpu init code into kvm_arch_vcpu_create() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move all vcpu init code into kvm_arch_vcpu_create() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Drop kvm_arch_vcpu_setup() (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: booke: Setup vcpu during kvmppc_core_vcpu_create() (Vitaly Kuznetsov) [1813987]
+- [s390] kvm: s390: Manually invoke vcpu setup during kvm_arch_vcpu_create() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move guts of kvm_arch_vcpu_setup() into kvm_arch_vcpu_create() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Move initialization of preempt notifier to kvm_vcpu_init() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Unexport kvm_vcpu_cache and kvm_vcpu_{un}init() (Vitaly Kuznetsov) [1813987]
+- [s390] kvm: Move vcpu alloc and init invocation to common code (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Introduce kvm_vcpu_destroy() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Invoke kvm_vcpu_uninit() immediately prior to freeing vcpu (Vitaly Kuznetsov) [1813987]
+- [s390] kvm: s390: Invoke kvm_vcpu_init() before allocating sie_page (Vitaly Kuznetsov) [1813987]
+- [s390] kvm: s390: Move guts of kvm_arch_vcpu_init() into kvm_arch_vcpu_create() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Add kvm_arch_vcpu_precreate() to handle pre-allocation issues (Vitaly Kuznetsov) [1813987]
+- [kernel] kvm: Remove kvm_arch_vcpu_free() declaration (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop kvm_arch_vcpu_free() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: arm: Drop kvm_arch_vcpu_free() (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: Drop kvm_arch_vcpu_free() (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: Move kvm_vcpu_init() invocation to common code (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: e500mc: Move reset of oldpir below call to kvm_vcpu_init() (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: book3s pr: Allocate book3s and shadow vcpu after common init (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: Allocate vcpu struct in common PPC code (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: e500mc: Add build-time assert that vcpu is at offset 0 (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: book3s pr: Free shared page if mmu initialization fails (Vitaly Kuznetsov) [1813987]
+- [powerpc] kvm: ppc: book3s hv: Uninit vCPU if vcore creation fails (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Remove spurious clearing of async #PF MSR (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Remove spurious kvm_mmu_unload() from vcpu destruction path (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move kvm_vcpu_init() invocation to common code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move allocation of pio_data page down a few lines (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move FPU allocation to common x86 code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Allocate vcpu struct in common x86 code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Use direct vcpu pointer during vCPU create/free (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Use direct vcpu pointer during vCPU create/free (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Allocate VPID after initializing VCPU (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Free wbinvd_dirty_mask if vCPU creation fails (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: async_pf: drop kvm_arch_async_page_present wrappers (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: fix overlap between SPTE_MMIO_MASK and generation (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Refactor handling of VM debugfs files (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Apply max PA check for MMIO sptes to 32-bit KVM (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: vmread should not set rflags to specify success in case of #PF (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Micro-optimize nEPT's bad memptype/XWR checks (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Reorder the reserved bit check in prefetch_invalid_gpte() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: delete meaningless nested_vmx_prepare_msr_bitmap() declaration (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Refactor and rename bit() to feature_bit() macro (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Expand build-time assertion on reverse CPUID usage (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add CPUID_7_1_EAX to the reverse CPUID table (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move bit() helper to cpuid.h (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add dedicated emulator helpers for querying CPUID features (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add macro to ensure reserved cr4 bits checks stay in sync (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop special XSAVE handling from guest_cpuid_has() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Ensure all logical CPUs have consistent reserved cr4 bits (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Don't let userspace set host-reserved cr4 bits (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Add helper to consolidate up PT/RTIT WRMSR fault logic (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Add non-canonical check on writes to RTIT address MSRs (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Fix some writing mistakes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: hyperv: Fix some typos in vcpu unimpl info (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Fix some grammar mistakes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Fix some comment typos and missing parentheses (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Fix some out-dated function names in comment (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Fix some wrong function names in comment (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: check kvm_pit outside kvm_vm_ioctl_reinject() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: lapic: micro-optimize fixed mode ipi delivery (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: FIXED+PHYSICAL mode single target IPI fastpath (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Allow KVM_INTEL when building for Centaur and/or Zhaoxin CPUs (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Check for full VMX support when verifying CPU compatibility (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Use VMX feature flag to query BIOS enabling (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Drop initialization of IA32_FEAT_CTL MSR (Vitaly Kuznetsov) [1813987]
+- [x86] cpufeatures: Add flag to track whether MSR IA32_FEAT_CTL is configured (Vitaly Kuznetsov) [1813987]
+- [x86] cpu: Set synthetic VMX cpufeatures during init_ia32_feat_ctl() (Vitaly Kuznetsov) [1813987]
+- [x86] cpufeatures: Add EPT_AD feature bit (Vitaly Kuznetsov) [1813987]
+- [x86] cpu: Detect VMX features on Intel, Centaur and Zhaoxin CPUs (Vitaly Kuznetsov) [1813987]
+- [x86] vmx: Introduce VMX_FEATURES_* (Vitaly Kuznetsov) [1813987]
+- [x86] cpu: Clear VMX feature flag if VMX is not fully enabled (Vitaly Kuznetsov) [1813987]
+- [x86] centaur: Use common IA32_FEAT_CTL MSR initialization (Vitaly Kuznetsov) [1813987]
+- [x86] mce: WARN once if IA32_FEAT_CTL MSR is left unlocked (Vitaly Kuznetsov) [1813987]
+- [x86] intel: Initialize IA32_FEAT_CTL MSR at boot (Vitaly Kuznetsov) [1813987]
+- [tools] x86: Sync msr-index.h from kernel sources (Vitaly Kuznetsov) [1813987]
+- [tools] selftests, kvm: Replace manual MSR defs with common msr-index.h (Vitaly Kuznetsov) [1813987]
+- [x86] msr-index: Clean up bit defines for IA32_FEATURE_CONTROL MSR (Vitaly Kuznetsov) [1813987]
+- [tools] tools arch x86: Grab a copy of the file containing the MSR numbers (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: WARN if root_hpa is invalid when handling a page fault (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: WARN on an invalid root_hpa (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Move root_hpa validity checks to top of page fault handler (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Move calls to thp_adjust() down a level (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Move transparent_hugepage_adjust() above __direct_map() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Consolidate tdp_page_fault() and nonpaging_page_fault() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Rename lpage_disallowed to account_disallowed_nx_lpage (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Persist gfn_lpage_is_disallowed() to max_level (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Incorporate guest's page level into max level for shadow MMU (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Refactor handling of forced 4k pages in page faults (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Refactor the per-slot level calculation in mapping_level() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Refactor handling of cache consistency with TDP (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Move nonpaging_page_fault() below try_async_pf() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Fold nonpaging_map() into nonpaging_page_fault() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/mmu: Move definition of make_mmu_pages_available() up (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use gpa_t for cr2/gpa to fix TDP support on 32-bit KVM (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add a WARN on TIF_NEED_FPU_LOAD in kvm_load_guest_fpu() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix potential put_fpu() w/o load_fpu() on MPX platform (Vitaly Kuznetsov) [1813987]
+- [kernel] kvm: Remove duplicated declaration of kvm_vcpu_kick (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Aesthetic cleanup of handle_vmread and handle_vmwrite (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: VMWRITE checks unsupported field before read-only field (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: VMWRITE checks VMCS-link pointer before VMCS field (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Fix the spelling of CPU_BASED_USE_TSC_OFFSETTING (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Rename NMI_PENDING to NMI_WINDOW (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Rename INTERRUPT_PENDING to INTERRUPT_WINDOW (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix some comment typos (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Convert the last users of "shorthand = 0" to use macros (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix callers of kvm_apic_match_dest() to use correct macros (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Drop KVM_APIC_SHORT_MASK and KVM_APIC_DEST_MASK (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Use APIC_DEST_* macros properly in kvm_lapic_irq.dest_mode (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move irrelevant declarations out of ioapic.h (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix kvm_bitmap_or_dest_vcpus() to use irq shorthand (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: explicitly set rmap_head->val to 0 in pte_list_desc_remove_entry() (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: get rid of var page in kvm_set_pfn_dirty() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: remove unreachable statement in vmx_get_msr_feature() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: use CPUID to locate host page table reserved bits (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Host feature SSBD doesn't imply guest feature AMD_SSBD (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Host feature SSBD doesn't imply guest feature SPEC_CTRL_SSBD (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Stop wasting a page for guest_msrs (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: fix out-of-bounds write in KVM_GET_EMULATED_CPUID (CVE-2019-19332) (Vitaly Kuznetsov) [1813987]
+- [documentation] documentation: kvm: Fix mention to number of ioctls classes (Vitaly Kuznetsov) [1813987]
+- [x86] kvm x86: Move kvm cpuid support out of svm (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Relax guest IA32_FEATURE_CONTROL constraints (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Grab KVM's srcu lock when setting nested state (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Open code shared_msr_update() in its only caller (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Fix jump label out_free_* in kvm_init() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: create mmu/ subdirectory (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Remove unnecessary TLB flushes on L1<->L2 switches when L1 use apic-access-page (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Do not mark vmcs02->apic_access_page as dirty when unpinning (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Assume TLB entries of L1 and L2 are tagged differently if L0 use EPT (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Unexport kvm_vcpu_reload_apic_access_page() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: add CR4_LA57 bit to nested CR4_FIXED1 (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Use semi-colon instead of comma for exit-handlers initialization (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Add support for capturing highest observable L2 TSC (Vitaly Kuznetsov) [1813987]
+- [x86] tss: Fix and move VMX BUILD_BUG_ON() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Rename function find_msr() to vmx_find_msr_index() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Rename NR_AUTOLOAD_MSRS to NR_LOADSTORE_MSRS (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nested: Introduce read_and_check_msr_entry() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Expose load IA32_PERF_GLOBAL_CTRL VM-{Entry, Exit} control (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Load GUEST_IA32_PERF_GLOBAL_CTRL MSR on VM-Entry (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: mark functions in the header as "static inline" (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Use kvm_set_msr to load IA32_PERF_GLOBAL_CTRL on VM-Exit (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Check HOST_IA32_PERF_GLOBAL_CTRL on VM-Entry (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Check GUEST_IA32_PERF_GLOBAL_CTRL on VM-Entry (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Add helper to check reserved bits in IA32_PERF_GLOBAL_CTRL (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: Simplify loop in kvm_create_max_vcpus test (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: optimization: Requst TLB flush in fast_cr3_switch() instead of do it directly (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/vpmu: Add lazy mechanism to release perf_event per vPMC (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/vpmu: Reuse perf_event to avoid unnecessary pmc_reprogram_counter (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/vpmu: Introduce a new kvm_pmu_ops->msr_idx_to_pmc callback (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/vpmu: Rename pmu_ops callbacks from msr_idx to rdpmc_ecx (Vitaly Kuznetsov) [1813987]
+- [kernel] perf/core: Provide a kernel-internal interface to pause perf_event (Vitaly Kuznetsov) [1813987]
+- [kernel] perf/core: Provide a kernel-internal interface to recalibrate event period (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Update vmcs01 TPR_THRESHOLD if L2 changed L1 TPR (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Refactor update_cr8_intercept() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Remove check if APICv enabled in SVM update_cr8_intercept() handler (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: apic: add helper func to remove duplicate code in kvm_pv_send_ipi (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: avoid unused setup_syscalls_segments call when SYSCALL check failed (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: mmio: get rid of odd out_err label in kvm_coalesced_mmio_init (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Consume pending LAPIC INIT event when exit on INIT_SIGNAL (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Prevent set vCPU into INIT/SIPI_RECEIVED state when INIT are latched (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Evaluate latched_init in KVM_SET_VCPU_EVENTS when vCPU not in SMM (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: retpolines: x86: eliminate retpoline from svm.c exit handlers (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: retpolines: x86: eliminate retpoline from vmx.c exit handlers (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: optimize more exit handlers in vmx.c (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Add a comment describing the /dev/kvm no_compat handling (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Forbid /dev/kvm being opened by a compat task when CONFIG_KVM_COMPAT=n (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Reset the three MSR list number variables to 0 in kvm_init_msr_list() (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: fix build with glibc >= 2.30 (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: mmu: Do not treat ZONE_DEVICE pages as being reserved (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Introduce pi_is_pir_empty() helper (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Do not change PID.NDST when loading a blocked vCPU (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Consider PID.PIR to determine if vCPU has pending interrupts (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Fix comment to specify PID.ON instead of PIR.ON (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fix initialization of MSR lists (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: fix placement of refcount initialization (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Fix NULL-ptr deref after kvm_create_vm fails (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: get rid of odd out jump label in pdptrs_changed (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: switch KVMCLOCK base to monotonic raw clock (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: call kvm_arch_destroy_vm if vm creation fails (Vitaly Kuznetsov) [1813987]
+- [x86] kvm/pmu: Replace rcu_swap_protected() with rcu_replace_pointer() (Vitaly Kuznetsov) [1813987]
+- [kernel] rcu: Upgrade rcu_swap_protected() to rcu_replace_pointer() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: Fix -Wmissing-prototypes warnings (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Allocate memslots and buses before calling kvm_arch_init_vm (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Don't leak L1 MMIO regions to L2 (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Fix potential wrong physical id in avic_handle_ldr_update (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Add separate helper for putting borrowed reference to kvm (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: tests: Add test to verify MSR_IA32_XSS (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Update svm_xsaves_supported (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move IA32_XSS to kvm_{get, set}_msr_common (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Move IA32_XSS-swapping on VM-entry/VM-exit to common x86 code (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Use wrmsr for switching between guest and host IA32_XSS on Intel (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: svm: Use wrmsr for switching between guest and host IA32_XSS on AMD (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Remove unneeded kvm_vcpu variable, guest_xcr0_loaded (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Fix conditions for guest IA32_XSS support (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Introduce vcpu->arch.xsaves_enabled (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Rename {vmx, nested_vmx}_vcpu_setup() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Initialize vmx->guest_msrs[] right after allocation (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Remove vmx->hv_deadline_tsc initialization from vmx_vcpu_setup() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Write VPID to vmcs when creating vcpu (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86/vpmu: Declare kvm_pmu->reprogram_pmi field using DECLARE_BITMAP (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: remove redundant code in kvm_arch_vm_ioctl (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Modify kvm_x86_ops.get_enable_apicv() to use struct kvm parameter (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fold decache_cr3() into cache_reg() (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add helpers to test/mark reg availability and dirtiness (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Fold 'enum kvm_ex_reg' definitions into 'enum kvm_reg' (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Add WARNs to detect out-of-bounds register indices (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Optimize vmx_set_rflags() for unrestricted guest (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Consolidate to_vmx() usage in RFLAGS accessors (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Skip GUEST_CR3 VMREAD+VMWRITE if the VMCS is up-to-date (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: nvmx: Always write vmcs02.GUEST_CR3 during nested VM-Enter (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: clear kvmclock MSR on reset (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: fix bugon.cocci warnings (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: vmx: Remove specialized handling of unexpected exit-reasons (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: fix sync_regs_test with newer gccs (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Don't shrink/grow vCPU halt_poll_ns if host side polling is disabled (Vitaly Kuznetsov) [1813987]
+- [tools] selftests: kvm: synchronize .gitignore to Makefile (Vitaly Kuznetsov) [1813987]
+- [x86] kvm: x86: Expose RDPID in KVM_GET_SUPPORTED_CPUID (Vitaly Kuznetsov) [1813987]
+- [virt] kvm: Allow kvm_device_ops to be const (Vitaly Kuznetsov) [1813987]
+- [kernel] kvm: Implement kvm_put_guest() (Vitaly Kuznetsov) [1813987]
+- [x86] xen: kvm: Gather the definition of emulate prefixes (Vitaly Kuznetsov) [1813987]
+- [tools] kvm: selftests: do not blindly clobber registers in guest asm (Vitaly Kuznetsov) [1813987]
+
+* Tue May 05 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-195.el8]
+- [fs] cifs: handle prefix paths in reconnect (Leif Sahlberg) [1814203]
+- [fs] cifs: use compounding for open and first query-dir for readdir() (Leif Sahlberg) [1814203]
+- [fs] cifs: create a helper function to parse the query-directory response buffer (Leif Sahlberg) [1814203]
+- [fs] cifs: prepare SMB2_query_directory to be used with compounding (Leif Sahlberg) [1814203]
+- [fs] xfs: reflink should force the log out if mounted with wsync (Bill O'Donnell) [1825373]
+- [fs] xfs: factor out a new xfs_log_force_inode helper (Bill O'Donnell) [1825373]
+- [fs] xfs: don't ever return a stale pointer from __xfs_dir3_free_read (Bill O'Donnell) [1825373]
+- [fs] xfs: fix xfs_rmap_has_other_keys usage of ECANCELED (Bill O'Donnell) [1825373]
+- [fs] xfs: clear kernel only flags in XFS_IOC_ATTRMULTI_BY_HANDLE (Bill O'Donnell) [1825373]
+- [fs] xfs: use bitops interface for buf log item AIL flag check (Bill O'Donnell) [1825373]
+- [fs] xfs: Sanity check flags of Q_XQUOTARM call (Bill O'Donnell) [1825373]
+- [fs] iomap: iomap that extends beyond EOF should be marked dirty (Bill O'Donnell) [1825373]
+- [s390] s390/kasan: Fix crash when attaching PCI device (Philipp Rudo) [1827334]
+- [s390] s390/qeth: fix initialization on old HW (Philipp Rudo) [1780667]
+- [s390] s390/qeth: vnicc Fix init to default (Philipp Rudo) [1780667]
+- [s390] s390/qeth: Fix vnicc_is_in_use if rx_bcast not set (Philipp Rudo) [1780667]
+- [s390] s390/qeth: fix false reporting of VNIC CHAR config failure (Philipp Rudo) [1780667]
+- [s390] s390/qeth: lock the card while changing its hsuid (Philipp Rudo) [1780667]
+- [s390] s390/qeth: fix qdio teardown after early init error (Philipp Rudo) [1780667]
+- [s390] s390/qeth: don't return -ENOTSUPP to userspace (Philipp Rudo) [1780667]
+- [s390] s390/qeth: fix promiscuous mode after reset (Philipp Rudo) [1780667]
+- [s390] s390/qeth: handle error due to unsupported transport mode (Philipp Rudo) [1780667]
+- [s390] s390/qeth: return proper errno on IO error (Philipp Rudo) [1780667]
+- [s390] s390/qeth: don't check drvdata in sysfs code (Philipp Rudo) [1780667]
+- [s390] s390/qeth: replace qeth_l3_get_addr_buffer() (Philipp Rudo) [1780667]
+- [s390] s390/qeth: remove VLAN tracking for L3 devices (Philipp Rudo) [1780667]
+- [net] net: 8021q: vlan_core: allow use list of vlans for real device (Philipp Rudo) [1780667]
+- [s390] s390/qeth: consolidate L3 mcast registration code (Philipp Rudo) [1780667]
+- [s390] s390/qeth: remove gratuitious RX modeset (Philipp Rudo) [1780667]
+- [s390] s390/qeth: fine-tune L3 mcast locking (Philipp Rudo) [1780667]
+- [s390] s390/qeth: clean up error path in qeth_core_probe_device() (Philipp Rudo) [1780667]
+- [s390] s390/qeth: don't cache MAC addresses for multicast IPs (Philipp Rudo) [1780667]
+- [s390] s390/qeth: use helpers for IP address hashing (Philipp Rudo) [1780667]
+- [s390] s390/qeth: don't set card state in qeth_qdio_clear_card() (Philipp Rudo) [1780667]
+- [s390] s390/qeth: consolidate some duplicated HW cmd code (Philipp Rudo) [1780667]
+- [s390] s390/qeth: keep IRQ disabled until NAPI is really done (Philipp Rudo) [1780667]
+- [s390] s390/qeth: use QDIO_BUFNR() (Philipp Rudo) [1780667]
+- [s390] s390/qdio: move SSQD Sniffer mask definition (Philipp Rudo) [1780667]
+- [s390] s390/qdio: don't attempt IRQ avoidance on Output SBALs (Philipp Rudo) [1780667]
+- [s390] s390/qdio: simplify thinint device registration (Philipp Rudo) [1780667]
+- [s390] s390/qdio: add statistics helper macro (Philipp Rudo) [1780667]
+- [s390] s390/qdio: remove a forward declaration (Philipp Rudo) [1780667]
+- [s390] s390/qdio: reduce log level for EQBS partial (Philipp Rudo) [1780667]
+- [s390] s390/qdio: use QDIO_BUFNR() (Philipp Rudo) [1780667]
+- [s390] s390/qeth: Fix initialization of vnicc cmd masks during set online (Philipp Rudo) [1780667]
+- [s390] s390/qeth: Fix error handling during VNICC initialization (Philipp Rudo) [1780667]
+- [s390] s390/qdio: clarify size of the QIB parm area (Philipp Rudo) [1780667]
+- [s390] s390/qeth: get vnicc sub-cmd type from reply data (Philipp Rudo) [1780667]
+- [s390] s390/qeth: merge qeth_reply struct into qeth_cmd_buffer (Philipp Rudo) [1780667]
+- [s390] s390/qeth: keep cmd alive after IO completion (Philipp Rudo) [1780667]
+- [s390] s390/qeth: use correct length field in SNMP cmd callback (Philipp Rudo) [1780667]
+- [s390] s390/qeth: propagate length of processed cmd IO data to callback (Philipp Rudo) [1780667]
+- [s390] s390/qeth: use node_descriptor struct (Philipp Rudo) [1780667]
+- [s390] s390/cio: move struct node_descriptor to cio.h (Philipp Rudo) [1780667]
+- [s390] scsi: zfcp: log FC Endpoint Security errors (Philipp Rudo) [1723820]
+- [s390] scsi: zfcp: enhance handling of FC Endpoint Security errors (Philipp Rudo) [1723820]
+- [lib] lib/zlib: add zlib_deflate_dfltcc_enabled() function (Philipp Rudo) [1659435]
+- [lib] s390/boot: add dfltcc= kernel command line parameter (Philipp Rudo) [1659435]
+- [lib] lib/zlib: add s390 hardware support for kernel zlib_inflate (Philipp Rudo) [1659435]
+- [s390] s390/boot: rename HEAP_SIZE due to name collision (Philipp Rudo) [1659435]
+- [lib] lib/zlib: add s390 hardware support for kernel zlib_deflate (Philipp Rudo) [1659435]
+- [base] mm/memory_hotplug: allow to specify a default online_type (David Hildenbrand) [1038941]
+- [base] mm/memory_hotplug: convert memhp_auto_online to store an online_type (David Hildenbrand) [1038941]
+- [mm] mm/memory_hotplug: unexport memhp_auto_online (David Hildenbrand) [1038941]
+- [hv] hv_balloon: don't check for memhp_auto_online manually (David Hildenbrand) [1038941]
+- [powerpc] powernv/memtrace: always online added memory blocks (David Hildenbrand) [1038941]
+- [base] drivers/base/memory: store mapping between MMOP_* and string in an array (David Hildenbrand) [1038941]
+- [base] drivers/base/memory: map MMOP_OFFLINE to 0 (David Hildenbrand) [1038941]
+- [base] drivers/base/memory: rename MMOP_ONLINE_KEEP to MMOP_ONLINE (David Hildenbrand) [1038941]
+- [netdrv] cxgb4: fix adapter crash due to wrong MC size (Vishal Kulkarni) [1813128]
+- [scsi] scsi: ibmvfc: Don't send implicit logouts prior to NPIV login (Steve Best) [1828725]
+- [fs] cifs: ignore cached share root handle closing errors (Leif Sahlberg) [1827485]
+- [fs] cifs: Optimize readdir on reparse points (Leif Sahlberg) [1827485]
+- [fs] cifs: Adjust indentation in smb2_open_file (Leif Sahlberg) [1827485]
+- [fs] CIFS: Close cached root handle only if it has a lease (Leif Sahlberg) [1827485]
+- [fs] SMB3: Fix crash in SMB2_open_init due to uninitialized field in compounding path (Leif Sahlberg) [1827485]
+- [fs] smb3: fix refcount underflow warning on unmount when no directory leases (Leif Sahlberg) [1827485]
+- [fs] fs: cifs: Delete usage of timespec64_trunc (Leif Sahlberg) [1827485]
+- [fs] smb3: improve check for when we send the security descriptor context on create (Leif Sahlberg) [1827485]
+- [fs] smb3: fix mode passed in on create for modetosid mount option (Leif Sahlberg) [1827485]
+- [fs] cifs: fix possible uninitialized access and race on iface_list (Leif Sahlberg) [1827485]
+- [fs] cifs: Fix lookup of SMB connections on multichannel (Leif Sahlberg) [1827485]
+- [fs] smb3: query attributes on file close (Leif Sahlberg) [1827485]
+- [fs] smb3: remove unused flag passed into close functions (Leif Sahlberg) [1827485]
+- [fs] cifs: remove redundant assignment to pointer pneg_ctxt (Leif Sahlberg) [1827485]
+- [fs] fs: cifs: Fix atime update check vs mtime (Leif Sahlberg) [1827485]
+- [fs] CIFS: fix a white space issue in cifs_get_inode_info() (Leif Sahlberg) [1827485]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1827485]
+- [fs] cifs: Always update signing key of first channel (Leif Sahlberg) [1827485]
+- [fs] cifs: Fix retrieval of DFS referrals in cifs_mount() (Leif Sahlberg) [1827485]
+- [fs] cifs: Fix potential softlockups while refreshing DFS cache (Leif Sahlberg) [1827485]
+- [fs] cifs: Fix lookup of root ses in DFS referral cache (Leif Sahlberg) [1827485]
+- [fs] cifs: Fix use-after-free bug in cifs_reconnect() (Leif Sahlberg) [1827485]
+- [fs] cifs: dump channel info in DebugData (Leif Sahlberg) [1827485]
+- [fs] smb3: dump in_send and num_waiters stats counters by default (Leif Sahlberg) [1827485]
+- [fs] cifs: try harder to open new channels (Leif Sahlberg) [1827485]
+- [fs] CIFS: Properly process SMB3 lease breaks (Leif Sahlberg) [1827485]
+- [fs] cifs: move cifsFileInfo_put logic into a work-queue (Leif Sahlberg) [1827485]
+- [fs] cifs: try opening channels after mounting (Leif Sahlberg) [1827485]
+- [fs] CIFS: refactor cifs_get_inode_info() (Leif Sahlberg) [1827485]
+- [fs] cifs: switch servers depending on binding state (Leif Sahlberg) [1827485]
+- [fs] cifs: add server param (Leif Sahlberg) [1827485]
+- [fs] cifs: add multichannel mount options and data structs (Leif Sahlberg) [1827485]
+- [fs] cifs: sort interface list by speed (Leif Sahlberg) [1827485]
+- [fs] CIFS: Fix SMB2 oplock break processing (Leif Sahlberg) [1827485]
+- [fs] cifs: smbd: Return -EAGAIN when transport is reconnecting (Leif Sahlberg) [1827485]
+- [fs] cifs: smbd: Only queue work for error recovery on memory registration (Leif Sahlberg) [1827485]
+- [fs] smb3: add debug messages for closing unmatched open (Leif Sahlberg) [1827485]
+- [fs] CIFS: Respect O_SYNC and O_DIRECT flags during reconnect (Leif Sahlberg) [1827485]
+- [fs] smb3: remove confusing dmesg when mounting with encryption ("seal") (Leif Sahlberg) [1827485]
+- [fs] cifs: close the shared root handle on tree disconnect (Leif Sahlberg) [1827485]
+- [fs] CIFS: Return directly after a failed build_path_from_dentry() in cifs_do_create() (Leif Sahlberg) [1827485]
+- [fs] CIFS: Use common error handling code in smb2_ioctl_query_info() (Leif Sahlberg) [1827485]
+- [fs] CIFS: Use memdup_user() rather than duplicating its implementation (Leif Sahlberg) [1827485]
+- [fs] cifs: smbd: Return -ECONNABORTED when trasnport is not in connected state (Leif Sahlberg) [1827485]
+- [fs] cifs: smbd: Add messages on RDMA session destroy and reconnection (Leif Sahlberg) [1827485]
+- [fs] cifs: smbd: Return -EINVAL when the number of iovs exceeds SMBDIRECT_MAX_SGE (Leif Sahlberg) [1827485]
+- [fs] cifs: smbd: Invalidate and deregister memory registration on re-send for direct I/O (Leif Sahlberg) [1827485]
+- [fs] cifs: Don't display RDMA transport on reconnect (Leif Sahlberg) [1827485]
+- [fs] CIFS: remove set but not used variables 'cinode' and 'netfid' (Leif Sahlberg) [1827485]
+- [fs] cifs: add support for flock (Leif Sahlberg) [1827485]
+- [fs] cifs: remove unused variable 'sid_user' (Leif Sahlberg) [1827485]
+- [fs] cifs: rename a variable in SendReceive() (Leif Sahlberg) [1827485]
+- [fs] SMB3: Fix persistent handles reconnect (Leif Sahlberg) [1827485]
+- [fs] fix memory leak in large read decrypt offload (Leif Sahlberg) [1827485]
+- [fs] cifs: Fix missed free operations (Leif Sahlberg) [1827485]
+- [fs] cifs: clarify comment about timestamp granularity for old servers (Leif Sahlberg) [1827485]
+- [fs] cifs: Handle -EINPROGRESS only when noblockcnt is set (Leif Sahlberg) [1827485]
+- [fs] smb3: remove noisy debug message and minor cleanup (Leif Sahlberg) [1827485]
+- [fs] fs: cifs: mute -Wunused-const-variable message (Leif Sahlberg) [1827485]
+- [fs] smb3: cleanup some recent endian errors spotted by updated sparse (Leif Sahlberg) [1827485]
+- [fs] CIFS: Fix oplock handling for SMB 2.1+ protocols (Leif Sahlberg) [1827485]
+- [fs] smb3: missing ACL related flags (Leif Sahlberg) [1827485]
+- [fs] smb3: pass mode bits into create calls (Leif Sahlberg) [1827485]
+- [fs] smb3: Add missing reparse tags (Leif Sahlberg) [1827485]
+- [fs] CIFS: fix max ea value size (Leif Sahlberg) [1827485]
+- [fs] fs/cifs/sess.c: Remove set but not used variable 'capabilities' (Leif Sahlberg) [1827485]
+- [fs] fs/cifs/smb2pdu.c: Make SMB2_notify_init static (Leif Sahlberg) [1827485]
+- [fs] smb3: fix leak in "open on server" perf counter (Leif Sahlberg) [1827485]
+- [fs] smb3: allow decryption keys to be dumped by admin for debugging (Leif Sahlberg) [1827485]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1827485]
+- [fs] cifs: modefromsid: write mode ACE first (Leif Sahlberg) [1827485]
+- [fs] cifs: cifsroot: add more err checking (Leif Sahlberg) [1827485]
+- [fs] smb3: add missing worker function for SMB3 change notify (Leif Sahlberg) [1827485]
+- [fs] cifs: Add support for root file systems (Leif Sahlberg) [1827485]
+- [fs] cifs: modefromsid: make room for 4 ACE (Leif Sahlberg) [1827485]
+- [fs] smb3: fix potential null dereference in decrypt offload (Leif Sahlberg) [1827485]
+- [fs] smb3: allow disabling requesting leases (Leif Sahlberg) [1827485]
+- [fs] smb3: improve handling of share deleted (and share recreated) (Leif Sahlberg) [1827485]
+- [fs] smb3: display max smb3 requests in flight at any one time (Leif Sahlberg) [1827485]
+- [fs] smb3: only offload decryption of read responses if multiple requests (Leif Sahlberg) [1827485]
+- [fs] cifs: add a helper to find an existing readable handle to a file (Leif Sahlberg) [1827485]
+- [fs] smb3: enable offload of decryption of large reads via mount option (Leif Sahlberg) [1827485]
+- [fs] smb3: allow parallelizing decryption of reads (Leif Sahlberg) [1827485]
+- [fs] smb3: allow skipping signature verification for perf sensitive configurations (Leif Sahlberg) [1827485]
+- [fs] smb3: add dynamic tracepoints for flush and close (Leif Sahlberg) [1827485]
+- [fs] smb3: log warning if CSC policy conflicts with cache mount option (Leif Sahlberg) [1827485]
+- [fs] smb3: add mount option to allow RW caching of share accessed by only 1 client (Leif Sahlberg) [1827485]
+- [fs] smb3: add some more descriptive messages about share when mounting cache=ro (Leif Sahlberg) [1827485]
+- [fs] smb3: add mount option to allow forced caching of read only share (Leif Sahlberg) [1827485]
+- [fs] cifs: fix dereference on ses before it is null checked (Leif Sahlberg) [1827485]
+- [fs] cifs: use existing handle for compound_op(OP_SET_INFO) when possible (Leif Sahlberg) [1827485]
+- [fs] cifs: create a helper to find a writeable handle by path name (Leif Sahlberg) [1827485]
+- [fs] cifs: remove set but not used variables (Leif Sahlberg) [1827485]
+- [fs] smb3: Incorrect size for netname negotiate context (Leif Sahlberg) [1827485]
+- [fs] cifs: remove unused variable (Leif Sahlberg) [1827485]
+- [fs] cifs: remove redundant assignment to variable rc (Leif Sahlberg) [1827485]
+- [fs] smb3: add missing flag definitions (Leif Sahlberg) [1827485]
+- [fs] cifs: add passthrough for smb2 setinfo (Leif Sahlberg) [1827485]
+- [fs] cifs: prepare SMB2_Flush to be usable in compounds (Leif Sahlberg) [1827485]
+- [fs] cifs: allow chmod to set mode bits using special sid (Leif Sahlberg) [1827485]
+- [fs] cifs: get mode bits from special sid on stat (Leif Sahlberg) [1827485]
+- [fs] fs: cifs: cifsssmb: remove redundant assignment to variable ret (Leif Sahlberg) [1827485]
+- [fs] cifs: fix a comment for the timeouts when sending echos (Leif Sahlberg) [1827485]
+- [fs] fs: cifs: switch to RC4 library interface (Leif Sahlberg) [1827485]
+- [fs] smb3: smbdirect no longer experimental (Leif Sahlberg) [1827485]
+- [fs] cifs: copy_file_range needs to strip setuid bits and update timestamps (Leif Sahlberg) [1827485]
+- [tools] perf vendor events s390: Add new deflate counters for IBM z15 (Philipp Rudo) [1827333]
+- [s390] s390/cpum_cf: Add new extended counters for IBM z15 (Philipp Rudo) [1827333]
+- [s390] s390/zcrypt: use kvmalloc instead of kmalloc for 256k alloc (Philipp Rudo) [1827310]
+- [s390] s390/pkey/zcrypt: Support EP11 AES secure keys (Philipp Rudo) [1723826]
+- [s390] s390/zcrypt: extend EP11 card and queue sysfs attributes (Philipp Rudo) [1723826]
+- [s390] s390/zcrypt: add new low level ep11 functions support file (Philipp Rudo) [1723826]
+- [s390] s390/zcrypt: ep11 structs rework, export zcrypt_send_ep11_cprb (Philipp Rudo) [1723826]
+- [s390] s390/zcrypt: enable card/domain autoselect on ep11 cprbs (Philipp Rudo) [1723826]
+- [crypto] crypto/testmgr: enable selftests for paes-s390 ciphers (Philipp Rudo) [1780668]
+- [s390] s390/pkey: Add support for key blob with clear key value (Philipp Rudo) [1780668]
+- [s390] s390/crypto: enable clear key values for paes ciphers (Philipp Rudo) [1780668]
+- [s390] s390/crypto: Rework on paes implementation (Philipp Rudo) [1780668]
+- [s390] scsi: zfcp: trace FC Endpoint Security of FCP devices and connections (Philipp Rudo) [1723822]
+- [s390] scsi: zfcp: log FC Endpoint Security of connections (Philipp Rudo) [1723822]
+- [s390] scsi: zfcp: report FC Endpoint Security in sysfs (Philipp Rudo) [1723822]
+- [s390] scsi: zfcp: auto variables for dereferenced structs in open port handler (Philipp Rudo) [1723822]
+- [block] blk-iocost: Fix error on iocost_ioc_vrate_adj (Waiman Long) [1828563]
+- [s390] s390/ipl: add support to control memory clearing for FCP and CCW re-IPL (Philipp Rudo) [1812985]
+- [s390] s390: support KPROBES_ON_FTRACE (Philipp Rudo) [1810526]
+- [s390] s390/ftrace: generate traced function stack frame (Philipp Rudo) [1810526]
+- [s390] s390/ftrace: save traced function caller (Philipp Rudo) [1810526]
+- [misc] mei: me: fix irq number stored in hw struct (Tony Camuso) [1822645]
+- [misc] mei: me: add cedar fork device ids (Tony Camuso) [1822645]
+- [misc] mei: fix CNL itouch device number to match the spec (Tony Camuso) [1822645]
+- [misc] misc: Replace zero-length array with flexible-array member (Tony Camuso) [1822645]
+- [misc] mei: remove unused includes from pci-{me, txe}.c (Tony Camuso) [1822645]
+- [misc] mei: limit number of bytes in mei header (Tony Camuso) [1822645]
+- [misc] mei: bus: replace zero-length array with flexible-array member (Tony Camuso) [1822645]
+- [misc] mei: me: add jasper point DID (Tony Camuso) [1822645]
+- [misc] mei: hdcp: bind only with i915 on the same PCH (Tony Camuso) [1822645]
+- [misc] mei: bus: use simple sprintf for sysfs (Tony Camuso) [1822645]
+- [misc] mei: bus: add more client attributes to sysfs (Tony Camuso) [1822645]
+- [misc] mei: add trc detection register to sysfs (Tony Camuso) [1822645]
+- [misc] mei: abstract fw status register read (Tony Camuso) [1822645]
+- [misc] mei: me: store irq number in the hw struct (Tony Camuso) [1822645]
+- [misc] mei: me: mei_me_dev_init() use struct device instead of struct pci_dev (Tony Camuso) [1822645]
+- [misc] mei: me: add comet point V device id (Tony Camuso) [1822645]
+- [misc] mei: bus: prefix device names on bus with the bus name (Tony Camuso) [1822645]
+- [misc] mei: me: fix me_intr_clear function name in KDoc (Tony Camuso) [1822645]
+- [misc] mei: buf: drop 'running hook' debug messages (Tony Camuso) [1822645]
+- [misc] mei: avoid FW version request on Ibex Peak and earlier (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Fill transcoder index in port info (Tony Camuso) [1822645]
+- [misc] drm/i915: mei_hdcp: I915 sends ddi index as per ME FW (Tony Camuso) [1822645]
+- [drm] drm/i915: Attach content type property (Tony Camuso) [1822645]
+- [drm] drm: Add Content protection type property (Tony Camuso) [1822645]
+- [misc] mei: me: add Tiger Lake point LP device ID (Tony Camuso) [1822645]
+- [misc] mei: Use dev_get_drvdata where possible (Tony Camuso) [1822645]
+- [misc] mei: me: add mule creek canyon (EHL) device ids (Tony Camuso) [1822645]
+- [misc] mei: no need to check return value of debugfs_create functions (Tony Camuso) [1822645]
+- [documentation] mei: docs: add hdcp documentation (Tony Camuso) [1822645]
+- [documentation] mei: docs: add a short description for nfc behind mei (Tony Camuso) [1822645]
+- [documentation] mei: docs: update mei client bus documentation (Tony Camuso) [1822645]
+- [documentation] mei: docs: move iamt docs to a iamt.rst file (Tony Camuso) [1822645]
+- [documentation] mei: docs: move documentation under driver-api (Tony Camuso) [1822645]
+- [misc] mei: Convert to use DEFINE_SHOW_ATTRIBUTE macro (Tony Camuso) [1822645]
+- [drm] drm: generic fn converting be24 to cpu and vice versa (Tony Camuso) [1822645]
+- [misc] mei: expose device state in sysfs (Tony Camuso) [1822645]
+- [misc] mei: hdcp: use own Kconfig file (Tony Camuso) [1822645]
+- [misc] mei: adjust the copyright notice in the files (Tony Camuso) [1822645]
+- [misc] mei/hdcp: Fix SPDX identifiers (Tony Camuso) [1822645]
+- [misc] mei: convert to SPDX license tags (Tony Camuso) [1822645]
+- [misc] mei: add missing SPDX tag to mei Kconfig (Tony Camuso) [1822645]
+- [misc] mei: bus: move hw module get/put to probe/release (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Component framework for I915 Interface (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Closing wired HDCP2.2 Tx Session (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Enabling the HDCP authentication (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Verify M_prime (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Repeater topology verification and ack (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Prepare Session Key (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Verify L_prime (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Initiate Locality check (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Store the HDCP Pairing info (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Verify H_prime (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Verify Receiver Cert and prepare km (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Initiate Wired HDCP2.2 Tx Session (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Define ME FW interface for HDCP2.2 (Tony Camuso) [1822645]
+- [misc] misc/mei/hdcp: Client driver for HDCP application (Tony Camuso) [1822645]
+- [misc] mei: bus: whitelist hdcp client (Tony Camuso) [1822645]
+- [misc] mei: hbm: clean the feature flags on link reset (Tony Camuso) [1822645]
+- [misc] mei: bus: export to_mei_cl_device for mei client devices drivers (Tony Camuso) [1822645]
+- [misc] mei: free read cb on ctrl_wr list flush (Tony Camuso) [1822645]
+- [misc] mei: me: add ice lake point device id (Tony Camuso) [1822645]
+- [misc] mei: squash single_recv_buf into one bit in client properties (Tony Camuso) [1822645]
+- [misc] mei: me: add denverton innovation engine device IDs (Tony Camuso) [1822645]
+- [misc] mei: me: mark LBG devices as having dma support (Tony Camuso) [1822645]
+- [misc] mei: dma: silent the reject message (Tony Camuso) [1822645]
+- [misc] mei: me: mark CNP devices as having dma support (Tony Camuso) [1822645]
+- [misc] mei: bump hbm version to 2.1 (Tony Camuso) [1822645]
+- [misc] mei: dma ring: implement transmit flow (Tony Camuso) [1822645]
+- [misc] mei: dma ring: implement rx circular buffer logic (Tony Camuso) [1822645]
+- [misc] mei: hw: add dma ring control block (Tony Camuso) [1822645]
+- [misc] mei: hbm: setup dma ring (Tony Camuso) [1822645]
+- [misc] mei: dma ring buffers allocation (Tony Camuso) [1822645]
+- [misc] mei: expedite ioctl return on the notify set operation error (Tony Camuso) [1822645]
+- [misc] mei: flush queues by the host client only (Tony Camuso) [1822645]
+- [misc] mei: hbm: drop BUG() from the hbm handler (Tony Camuso) [1822645]
+- [misc] mei: replace POLL* with EPOLL* for write queues (Tony Camuso) [1822645]
+- [misc] misc: remove redundant include moduleparam.h (Tony Camuso) [1822645]
+- [misc] mei: bus: need to unlink client before freeing (Tony Camuso) [1822645]
+- [misc] mei: bus: fix hw module get/put balance (Tony Camuso) [1822645]
+- [misc] mei: fix use-after-free in mei_cl_write (Tony Camuso) [1822645]
+- [misc] mei: ignore not found client in the enumeration (Tony Camuso) [1822645]
+- [misc] mei: restrict dma ring support to hbm version 2.1 (Tony Camuso) [1822645]
+- [misc] mei: hbm: introduce dma bit in the message header (Tony Camuso) [1822645]
+- [misc] mei: add support for variable length mei headers (Tony Camuso) [1822645]
+- [misc] mei: add mei_msg_hdr_init wrapper (Tony Camuso) [1822645]
+- [misc] mei: move hbuf_depth from the mei device to the hw modules (Tony Camuso) [1822645]
+- [misc] mei: cleanup slots to data conversions (Tony Camuso) [1822645]
+- [misc] mei: bus: suppress sign-compare warnings (Tony Camuso) [1822645]
+- [misc] mei: fix ssize_t to int assignment in read and write ops (Tony Camuso) [1822645]
+- [misc] mei: use correct type for counter variable in for loops (Tony Camuso) [1822645]
+- [misc] mei: check for error returned from mei_hbuf_empty_slots() (Tony Camuso) [1822645]
+- [misc] mei: don't update offset in write (Tony Camuso) [1822645]
+- [misc] mei: bus: type promotion bug in mei_fwver() (Tony Camuso) [1822645]
+- [misc] mei: bus: type promotion bug in mei_nfc_if_version() (Tony Camuso) [1822645]
+- [misc] mei: expose fw version to sysfs (Tony Camuso) [1822645]
+- [misc] mei: add optional timeout to internal bus recv (Tony Camuso) [1822645]
+- [misc] mei: remove unused MEI_IAMTHIF_STALL_TIMER define (Tony Camuso) [1822645]
+- [s390] s390/pci: Fix unexpected write combine on resource (Philipp Rudo) [1827311]
+- [powerpc] pwerpc/vas: Include linux/types.h in uapi/asm/vas-api.h (Gustavo Duarte) [1725806]
+- [documentation] Documentation/powerpc: VAS API (Gustavo Duarte) [1725806]
+- [crypto] crypto/nx: Remove 'pid' in vas_tx_win_attr struct (Gustavo Duarte) [1725806]
+- [crypto] crypto/nx: Enable and setup GZIP compresstion type (Gustavo Duarte) [1725806]
+- [crypto] crypto/nx: Make enable code generic to add new GZIP compression type (Gustavo Duarte) [1725806]
+- [crypto] crypto/nx: Rename nx-842-powernv file name to nx-common-powernv (Gustavo Duarte) [1725806]
+- [crypto] crypto/nx: Initialize coproc entry with kzalloc (Gustavo Duarte) [1725806]
+- [crypto] crypto: nx - Add of_node_put() before return in 842 (Gustavo Duarte) [1725806]
+- [crypto] crypto/NX: Set receive window credits to max number of CRBs in RxFIFO (Gustavo Duarte) [1725806]
+- [powerpc] crypto/nx: Initialize 842 high and normal RxFIFO control registers (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Add VAS user space API (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Define VAS_TX_WIN_OPEN ioctl API (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Initialize window attributes for GZIP coprocessor type (Gustavo Duarte) [1725806]
+- [powerpc] powerpc: Use mm_context vas_windows counter to issue CP_ABORT (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Free send window in VAS instance after credits returned (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Display process stuck message (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Do not use default credits for receive window (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Print CRB and FIFO values (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Return credits after handling fault (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Update CSB and notify process for fault CRBs (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Setup thread IRQ handler per VAS instance (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Take reference to PID and mm for user space windows (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Register NX with fault window ID and IRQ port value (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Setup fault window per VAS instance (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Alloc and setup IRQ and trigger port (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/vas: Define nx_fault_stamp in coprocessor_request_block (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/xive: Define xive_native_alloc_irq_on_chip() (Gustavo Duarte) [1725806]
+- [powerpc] powerpc/powernv: remove the unused vas_win_paste_addr and vas_win_id functions (Gustavo Duarte) [1725806]
+- [tools] intel-speed-select: Fix speed-select-base-freq-properties output on CLX-N (Prarit Bhargava) [1828306]
+- [tools] tools/power/x86/intel-speed-select: Fix CLX-N package information output (Prarit Bhargava) [1828306]
+- [kernel] sched/isolation: Allow "isolcpus=" to skip unknown sub-parameters (Peter Xu) [1799014]
+- [arm64] arm64: tlb: skip tlbi broadcast, fix speculative tlb lookups (Andrea Arcangeli) [1820817]
+- [x86] pci: hv: Introduce hv_msi_entry (Mohammed Gamal) [1816740]
+- [pci] hv: Move retarget related structures into tlfs header (Mohammed Gamal) [1816740]
+- [pci] hv: Move hypercall related definitions into tlfs header (Mohammed Gamal) [1816740]
+- [pci] hv: Reorganize the code in preparation of hibernation (Mohammed Gamal) [1816740]
+- [pci] hv: Add a Hyper-V PCI interface driver for software backchannel interface (Mohammed Gamal) [1816740]
+- [pci] hv: Add a paravirtual backchannel in software (Mohammed Gamal) [1816740]
+
+* Thu Apr 30 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-194.el8]
+- [include] i2c: fix a doc warning (David Arcari) [1826759]
+- [i2c] i2c: acpi: put device when verifying client fails (David Arcari) [1826759]
+- [i2c] i2c: i2c-core-of: convert to use i2c_new_client_device() (David Arcari) [1826759]
+- [i2c] i2c: i2c-core-base: convert to use i2c_new_client_device() (David Arcari) [1826759]
+- [i2c] i2c: i2c-core-acpi: convert to use i2c_new_client_device() (David Arcari) [1826759]
+- [i2c] i2c: fix bus recovery stop mode timing (David Arcari) [1826759]
+- [i2c] i2c: core: Use DEVICE_ATTR_*() helper macros (David Arcari) [1826759]
+- [include] i2c: remove unneeded 'extern' from function declatations (David Arcari) [1826759]
+- [include] i2c: add helper to check if a client has a driver attached (David Arcari) [1826759]
+- [include] i2c: fix header file kernel-doc warning (David Arcari) [1826759]
+- [misc] eeprom: at24: use devm_i2c_new_dummy_device() (David Arcari) [1826759]
+- [i2c] i2c: remove i2c_new_dummy() API (David Arcari) [1826759]
+- [media] media: dvb-frontends: cxd2820r_core: convert to i2c_new_dummy_device (David Arcari) [1826759]
+- [media] media: dvb-frontends: mn88473: convert to i2c_new_dummy_device (David Arcari) [1826759]
+- [media] media: dvb-frontends: mn88472: convert to i2c_new_dummy_device (David Arcari) [1826759]
+- [hwmon] hwmon: (w83791d) convert to use devm_i2c_new_dummy_device (David Arcari) [1826759]
+- [hwmon] hwmon: (w83793d) convert to use devm_i2c_new_dummy_device (David Arcari) [1826759]
+- [hwmon] hwmon: (w83781d) convert to i2c_new_dummy_device (David Arcari) [1826759]
+- [media] media: ir-kbd-i2c: convert to i2c_new_dummy_device() (David Arcari) [1826759]
+- [misc] misc: eeprom: max6875: convert to i2c_new_dummy_device (David Arcari) [1826759]
+- [hwmon] hwmon: (w83792d) convert to use devm_i2c_new_dummy_device (David Arcari) [1826759]
+- [hwmon] hwmon: (asb100) convert to i2c_new_dummy_device (David Arcari) [1826759]
+- [i2c] i2c: replace i2c_new_probed_device with an ERR_PTR variant (David Arcari) [1826759]
+- [i2c] i2c: smbus: Don't filter out duplicate alerts (David Arcari) [1826759]
+- [i2c] i2c: of: Populate fwnode in of_i2c_get_board_info() (David Arcari) [1826759]
+- [i2c] i2c: remove helpers for ref-counting clients (David Arcari) [1826759]
+- [i2c] i2c: core: fix use after free in of_i2c_notify (David Arcari) [1826759]
+- [i2c] i2c: acpi: Force bus speed to 400KHz if a Silead touchscreen is present (David Arcari) [1826759]
+- [i2c] i2c: add support for filters optional properties (David Arcari) [1826759]
+- [i2c] i2c: slave-eeprom: Add read only mode (David Arcari) [1826759]
+- [i2c] i2c: slave-eeprom: Add comment about address handling (David Arcari) [1826759]
+- [i2c] i2c-eeprom_slave: Add support for more eeprom models (David Arcari) [1826759]
+- [i2c] i2c: make i2c_unregister_device() ERR_PTR safe (David Arcari) [1826759]
+- [media] i2c: replace i2c_new_secondary_device with an ERR_PTR variant (David Arcari) [1826759]
+- [i2c] i2c: Drop unneeded check for of_node (David Arcari) [1826759]
+- [i2c] i2c: core: Tidy up handling of init_irq (David Arcari) [1826759]
+- [i2c] i2c: core: Move ACPI gpio IRQ handling into i2c_acpi_get_irq (David Arcari) [1826759]
+- [i2c] i2c: core: Move ACPI IRQ handling to probe time (David Arcari) [1826759]
+- [i2c] i2c: acpi: Factor out getting the IRQ from ACPI (David Arcari) [1826759]
+- [i2c] i2c: acpi: Use available IRQ helper functions (David Arcari) [1826759]
+- [i2c] i2c: core: Allow whole core to use i2c_dev_irq_from_resources (David Arcari) [1826759]
+- [i2c] i2c: core: add sysfs header (David Arcari) [1826759]
+- [i2c] i2c: add newly exported functions to the header, too (David Arcari) [1826759]
+- [i2c] i2c: mux: add sysfs header (David Arcari) [1826759]
+- [include] i2c: headers: reformat header comment and update copyright (David Arcari) [1826759]
+- [include] i2c: headers: update docs about I2C_CLIENT_* (David Arcari) [1826759]
+- [i2c] i2c: core: always have a named variable in arguments (David Arcari) [1826759]
+- [include] i2c: headers: always have a named variable in arguments (David Arcari) [1826759]
+- [include] i2c: headers: don't use 'dev' as adapter variable (David Arcari) [1826759]
+- [i2c] i2c: mux: Use struct_size() in devm_kzalloc() (David Arcari) [1826759]
+- [i2c] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441 (David Arcari) [1826759]
+- [i2c] i2c: acpi: export i2c_acpi_find_adapter_by_handle (David Arcari) [1826759]
+- [media] tua6100: Avoid build warnings (David Arcari) [1826759]
+- [i2c] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 (David Arcari) [1826759]
+- [i2c] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (David Arcari) [1826759]
+- [i2c] i2c: acpi: permit bus speed to be discovered after enumeration (David Arcari) [1826759]
+- [i2c] i2c: dev: fix potential memory leak in i2cdev_ioctl_rdwr (David Arcari) [1826759]
+- [include] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 1 (David Arcari) [1826759]
+- [i2c] treewide: Add SPDX license identifier - Makefile/Kconfig (David Arcari) [1826759]
+- [i2c] i2c: core: add device-managed version of i2c_new_dummy (David Arcari) [1826759]
+- [i2c] i2c: core: improve return value handling of i2c_new_device and i2c_new_dummy (David Arcari) [1826759]
+- [i2c] i2c: core: apply 'is_suspended' check for SMBus, too (David Arcari) [1826759]
+- [i2c] i2c: core: ratelimit 'transfer when suspended' errors (David Arcari) [1826759]
+- [i2c] i2c: Prevent runtime suspend of adapter when Host Notify is required (David Arcari) [1826759]
+- [i2c] gcc-9: don't warn about uninitialized variable (David Arcari) [1826759]
+- [i2c] i2c: mux: populate the new *_atomic callbacks (David Arcari) [1826759]
+- [i2c] i2c: core: introduce callbacks for atomic transfers (David Arcari) [1826759]
+- [i2c] i2c: core: use I2C locking behaviour also for SMBUS (David Arcari) [1826759]
+- [i2c] i2c: core: remove use of in_atomic() (David Arcari) [1826759]
+- [include] i2c: apply coding style for struct i2c_adapter (David Arcari) [1826759]
+- [i2c] i2c: add extra check to safe DMA buffer helper (David Arcari) [1826759]
+- [i2c] i2c: Allow recovery of the initial IRQ by an I2C client device (David Arcari) [1826759]
+- [i2c] i2c: expand minor range when registering chrdev region (David Arcari) [1826759]
+- [i2c] i2c: core-smbus: don't trace smbus_reply data on errors (David Arcari) [1826759]
+- [i2c] i2c: of: Try to find an I2C adapter matching the parent (David Arcari) [1826759]
+- [include] i2c: acpi: Move I2C bits from acpi.h to i2c.h (David Arcari) [1826759]
+- [i2c] i2c: dev: prevent adapter retries and timeout being set as minus value (David Arcari) [1826759]
+- [i2c] i2c: add suspended flag and accessors for i2c adapters (David Arcari) [1826759]
+- [i2c] treewide: surround Kconfig file paths with double quotes (David Arcari) [1826759]
+- [i2c] i2c: acpi: Introduce i2c_acpi_get_i2c_resource() helper (David Arcari) [1826759]
+- [i2c] i2c: acpi: Use ACPI_FAILURE instead of !ACPI_SUCCESS (David Arcari) [1826759]
+- [i2c] i2c: acpi: Return error pointers from i2c_acpi_new_device() (David Arcari) [1826759]
+- [i2c] i2c: Clear client->irq in i2c_device_remove (David Arcari) [1826759]
+- [i2c] i2c: Remove unnecessary call to irq_find_mapping (David Arcari) [1826759]
+- [i2c] i2c: Fix kerneldoc for renamed i2c dma put function (David Arcari) [1826759]
+- [i2c] i2c: core: remove level of indentation in i2c_transfer (David Arcari) [1826759]
+- [i2c] i2c: core: remove outdated DEBUG output (David Arcari) [1826759]
+- [i2c] i2c: refactor function to release a DMA safe buffer (David Arcari) [1826759]
+- [i2c] i2c: don't use any __deprecated handling anymore (David Arcari) [1826759]
+- [i2c] i2c: remove deprecated attach_adapter callback (David Arcari) [1826759]
+- [i2c] i2c: core: Parse SDA hold time from firmware (David Arcari) [1826759]
+- [i2c] i2c: quirks: add zero length checks (David Arcari) [1826759]
+- [i2c] i2c: recovery: make pin init look like STOP (David Arcari) [1826759]
+- [i2c] i2c: recovery: rename variable for easier understanding (David Arcari) [1826759]
+- [i2c] i2c: recovery: add get_bus_free callback (David Arcari) [1826759]
+- [i2c] i2c: recovery: refactor recovery function (David Arcari) [1826759]
+- [i2c] i2c: recovery: require either get_sda or set_sda (David Arcari) [1826759]
+- [i2c] i2c: remove i2c_lock_adapter and use i2c_lock_bus directly (David Arcari) [1826759]
+- [media] media: tda1004x: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) (David Arcari) [1826759]
+- [media] media: tda18271: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) (David Arcari) [1826759]
+- [media] media: af9013: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) (David Arcari) [1826759]
+- [media] media: drxk_hard: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) (David Arcari) [1826759]
+- [media] media: rtl2830: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) (David Arcari) [1826759]
+- [i2c] i2c: mux: pca9541: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) (David Arcari) [1826759]
+- [i2c] i2c: mux: make use of __i2c_smbus_xfer (David Arcari) [1826759]
+- [kvm] KVM: PPC: Book3S HV: Fix H_CEDE return code for nested guests (David Gibson) [1778556]
+- [block] block/diskstats: more accurate approximation of io_ticks for slow disks (Ming Lei) [1811745]
+- [scsi] scsi: storvsc: Correctly set number of hardware queues for IDE disk (Cathy Avery) [1816702]
+- [netdrv] bonding/alb: make sure arp header is pulled before accessing it (Jarod Wilson) [1819408]
+- [netdrv] bonding/alb: properly access headers in bond_alb_xmit() (Jarod Wilson) [1819408]
+- [netdrv] bonding: rename AD_STATE_* to LACP_STATE_* (Jarod Wilson) [1819408]
+- [netdrv] bonding: fix active-backup transition after link failure (Jarod Wilson) [1819408]
+- [netdrv] bonding: move 802.3ad port state flags to uapi (Jarod Wilson) [1819408]
+- [netdrv] bonding: fix bond_neigh_init() (Jarod Wilson) [1819408]
+- [netdrv] bonding: fix state transition issue in link monitoring (Jarod Wilson) [1819408]
+- [netdrv] bonding: fix potential NULL deref in bond_update_slave_arr (Jarod Wilson) [1819408]
+- [netdrv] team: Always enable vlan tx offload (Hangbin Liu) [1827017]
+- [net] netlink: Use netlink header as base to calculate bad attribute offset (Andrea Claudi) [1825252]
+- [net] netlink: cap max groups which will be considered in netlink_bind() (Andrea Claudi) [1825252]
+- [net] tcp: repair: fix TCP_QUEUE_SEQ implementation (Paolo Abeni) [1823771]
+- [net] tcp: fix "old stuff" D-SACK causing SACK to be treated as D-SACK (Paolo Abeni) [1823771]
+- [net] tcp: refine rule to allow EPOLLOUT generation under mem pressure (Paolo Abeni) [1823771]
+- [net] tcp: refine tcp_write_queue_empty() implementation (Paolo Abeni) [1823771]
+- [include] fib: add missing attribute validation for tun_id (Marcelo Leitner) [1823468]
+- [include] net/flow_dissector: remove unexist field description (Marcelo Leitner) [1823468]
+- [net] vlan: vlan_changelink() should propagate errors (Marcelo Leitner) [1823468]
+- [net] af_packet: set defaule value for tmo (Marcelo Leitner) [1823468]
+- [net] packet: fix data-race in fanout_flow_is_huge() (Marcelo Leitner) [1823468]
+- [net] llc: fix sk_buff refcounting in llc_conn_state_process() (Marcelo Leitner) [1823468]
+- [net] llc: fix another potential sk_buff leak in llc_ui_sendmsg() (Marcelo Leitner) [1823468]
+- [net] llc: fix sk_buff leak in llc_conn_service() (Marcelo Leitner) [1823468]
+- [net] llc: fix sk_buff leak in llc_sap_state_process() (Marcelo Leitner) [1823468]
+- [net] openvswitch: Fix conntrack cache with timeout (Patrlck Talbert) [1765587]
+- [net] openvswitch: Fix log message in ovs conntrack (Patrlck Talbert) [1765587]
+- [net] openvswitch: use after free in __ovs_ct_free_action() (Patrlck Talbert) [1765587]
+- [net] openvswitch: Add timeout support to ct action (Patrlck Talbert) [1765587]
+- [net] netfilter: Export nf_ct_{set, destroy}_timeout() (Patrlck Talbert) [1765587]
+- [net] netfilter: cttimeout: ctnl_timeout_find_get() returns incorrect pointer to type (Patrlck Talbert) [1765587]
+- [net] netfilter: remove ifdef around cttimeout in struct nf_conntrack_l4proto (Patrlck Talbert) [1765587]
+- [net] netfilter: cttimeout: decouple timeout policy from nfnetlink_cttimeout object (Patrlck Talbert) [1765587]
+- [net] netfilter: cttimeout: move ctnl_untimeout to nf_conntrack (Patrlck Talbert) [1765587]
+- [netdrv] ipvlan: do not use cond_resched_rcu() in ipvlan_process_multicast() (Davide Caratti) [1822906]
+- [netdrv] ipvlan: add cond_resched_rcu() while processing muticast backlog (Davide Caratti) [1822906]
+- [netdrv] ipvlan: don't deref eth hdr before checking it's set (Davide Caratti) [1822906]
+- [netdrv] ipvlan: do not add hardware address of master to its unicast filter list (Davide Caratti) [1822906]
+- [include] net/dst: do not confirm neighbor for vxlan and geneve pmtu update (Hangbin Liu) [1755686]
+- [net] sit: do not confirm neighbor when do pmtu update (Hangbin Liu) [1755686]
+- [net] vti: do not confirm neighbor when do pmtu update (Hangbin Liu) [1755686]
+- [net] tunnel: do not confirm neighbor when do pmtu update (Hangbin Liu) [1755686]
+- [include] net/dst: add new function skb_dst_update_pmtu_no_confirm (Hangbin Liu) [1755686]
+- [netdrv] gtp: do not confirm neighbor when do pmtu update (Hangbin Liu) [1755686]
+- [net] ip6_gre: do not confirm neighbor when do pmtu update (Hangbin Liu) [1755686]
+- [net] add bool confirm_neigh parameter for dst_ops.update_pmtu (Hangbin Liu) [1755686]
+- [net] neigh: support smaller retrans_time settting (Hangbin Liu) [1767282]
+- [include] net: core: add helper tcp_v6_gso_csum_prep (Josef Oskera) [1818097]
+- [net] ip_tunnel: fix interface lookup with no key (Guillaume Nault) [1822247]
+- [net] ipv4: fix a RCU-list lock in inet_dump_fib() (Guillaume Nault) [1822247]
+- [net] gre: fix uninit-value in __iptunnel_pull_header (Guillaume Nault) [1822247]
+- [net] netfilter: conntrack: allow insertion of clashing entries (Florian Westphal) [1821404]
+- [net] netfilter: conntrack: split resolve_clash function (Florian Westphal) [1821404]
+- [net] netfilter: conntrack: place confirm-bit setting in a helper (Florian Westphal) [1821404]
+- [net] netfilter: never get/set skb->tstamp (Florian Westphal) [1821404]
+- [net] netfilter: conntrack: remove two args from resolve_clash (Florian Westphal) [1821404]
+- [net] netfilter: conntrack: tell compiler to not inline nf_ct_resolve_clash (Florian Westphal) [1821404]
+- [netdrv] macsec: restrict to ethernet devices (Sabrina Dubroca) [1820524]
+- [netdrv] macsec: add missing attribute validation for port (Sabrina Dubroca) [1820524]
+- [net] netns: restore ops before calling ops_exit_list (Ivan Vecera) [1822568]
+- [net] netns: add pre_exit method to struct pernet_operations (Ivan Vecera) [1822568]
+- [include] net: dst: Force 4-byte alignment of dst_metrics (Guillaume Nault) [1822148]
+- [include] net: annotate lockless accesses to sk->sk_napi_id (Guillaume Nault) [1822148]
+- [net] Fix typo of SKB_SGO_CB_OFFSET (Guillaume Nault) [1822148]
+- [net] use indirect call wrappers for skb_copy_datagram_iter() (Guillaume Nault) [1822148]
+- [net] datagram: Make __skb_datagram_iter static (Guillaume Nault) [1822148]
+- [net] Fix Tx hash bound checking (Guillaume Nault) [1822148]
+- [net] openvswitch: add missing attribute validation for hash (Eelco Chaudron) [1819202]
+- [net] openvswitch: Distribute switch variables for initialization (Eelco Chaudron) [1819202]
+- [net] openvswitch: support asymmetric conntrack (Eelco Chaudron) [1819202]
+- [net] openvswitch: remove another BUG_ON() (Eelco Chaudron) [1819202]
+- [net] openvswitch: drop unneeded BUG_ON() in ovs_flow_cmd_build_info() (Eelco Chaudron) [1819202]
+- [net] openvswitch: don't call pad_packet if not necessary (Eelco Chaudron) [1819202]
+- [net] openvswitch: add hash info to upcall (Eelco Chaudron) [1819202]
+- [net] openvswitch: select vport upcall portid directly (Eelco Chaudron) [1819202]
+- [net] openvswitch: simplify the ovs_dp_cmd_new (Eelco Chaudron) [1819202]
+- [net] openvswitch: fix possible memleak on destroy flow-table (Eelco Chaudron) [1819202]
+- [net] openvswitch: add likely in flow_lookup (Eelco Chaudron) [1819202]
+- [net] openvswitch: simplify the flow_hash (Eelco Chaudron) [1819202]
+- [net] openvswitch: optimize flow-mask looking up (Eelco Chaudron) [1819202]
+- [net] openvswitch: optimize flow mask cache hash collision (Eelco Chaudron) [1819202]
+- [net] openvswitch: shrink the mask array if necessary (Eelco Chaudron) [1819202]
+- [net] openvswitch: convert mask list in mask array (Eelco Chaudron) [1819202]
+- [net] openvswitch: add flow-mask cache for performance (Eelco Chaudron) [1819202]
+- [net] openvswitch: Allow attaching helper in later commit (Eelco Chaudron) [1819202]
+- [net] openvswitch: change type of UPCALL_PID attribute to NLA_UNSPEC (Eelco Chaudron) [1819202]
+- [net] openvswitch: Make metadata_dst tunnel work in IP_TUNNEL_INFO_BRIDGE mode (Eelco Chaudron) [1819202]
+- [netdrv] mlxsw: spectrum_router: Remove unlikely user-triggerable warning (Ivan Vecera) [1821358]
+- [net] ipv6: Error when route does not have any valid nexthops (Ivan Vecera) [1821358]
+- [tools] selftests: mlxsw: Add a test for FIB offload indication (Ivan Vecera) [1821358]
+- [net] ipv6: Stop sending in-kernel notifications for each nexthop (Ivan Vecera) [1821358]
+- [netdrv] mlxsw: spectrum_router: Create IPv6 multipath routes in one go (Ivan Vecera) [1821358]
+- [netdrv] mlxsw: spectrum_router: Add / delete multiple IPv6 nexthops (Ivan Vecera) [1821358]
+- [netdrv] mlxsw: spectrum_router: Pass array of routes to route handling functions (Ivan Vecera) [1821358]
+- [netdrv] mlxsw: spectrum_router: Adjust IPv6 replace logic to new notifications (Ivan Vecera) [1821358]
+- [netdrv] mlxsw: spectrum_router: Pass multiple routes to work item (Ivan Vecera) [1821358]
+- [netdrv] mlxsw: spectrum_router: Prepare function to return errors (Ivan Vecera) [1821358]
+- [netdrv] mlxsw: spectrum_router: Remove processing of IPv6 append notifications (Ivan Vecera) [1821358]
+- [net] ipv6: Add IPv6 multipath notification for route delete (Ivan Vecera) [1821358]
+- [net] ipv6: Add IPv6 multipath notifications for add / replace (Ivan Vecera) [1821358]
+- [netdrv] netdevsim: Ignore IPv6 multipath notifications (Ivan Vecera) [1821358]
+- [netdrv] mlxsw: spectrum_router: Ignore IPv6 multipath notifications (Ivan Vecera) [1821358]
+- [net] ipv6: Extend notifier info for multipath routes (Ivan Vecera) [1821358]
+- [net] ipv6: export function to send route updates (Ivan Vecera) [1821358]
+- [net] sctp: fix possibly using a bad saddr with a given dst (Xin Long) [1821578]
+- [net] sctp: fix refcount bug in sctp_wfree (Xin Long) [1821578]
+- [net] sctp: move the format error check out of __sctp_sf_do_9_1_abort (Xin Long) [1821578]
+- [net] Remove switchdev_ops (Ivan Vecera) [1821402]
+- [net] switchdev: Replace port attr set SDO with a notification (Ivan Vecera) [1821402]
+- [net] switchdev: Complete removal of switchdev_port_attr_get() (Ivan Vecera) [1821402]
+- [net] Get rid of switchdev_port_attr_get() (Ivan Vecera) [1821402]
+- [net] Remove SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS_SUPPORT (Ivan Vecera) [1821402]
+- [net] fib_notifier: move fib_notifier_ops from struct net into per-net struct (Ivan Vecera) [1821186]
+- [net] Properly unlink GRO packets on overflow. (Ivan Vecera) [1805302]
+- [net] Add and use skb_list_del_init(). (Ivan Vecera) [1805302]
+- [net] Add and use skb_mark_not_on_list(). (Ivan Vecera) [1805302]
+- [net] Init backlog NAPI's gro_hash. (Ivan Vecera) [1805302]
+- [net] gro: properly remove skb from list (Ivan Vecera) [1805302]
+- [net] core: trivial netif_receive_skb_list() entry point (Ivan Vecera) [1805302]
+- [net] Convert GRO SKB handling to list_head. (Ivan Vecera) [1805302]
+- [net] ipv6: don't auto-add link-local address to lag ports (Jarod Wilson) [1733953]
+- [tools] selftests: forwarding: vxlan_bridge_1d: use more proper tos value (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: vxlan_bridge_1d: fix tos value (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: use proto icmp for {gretap, ip6gretap}_mac testing (Hangbin Liu) [1816587]
+- [tools] fcnal-test: Fix vrf argument in local tcp tests (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: router: Add test case for destination IP link-local (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: router: Add test case for source IP equals destination IP (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: router: Add test case for multicast destination MAC mismatch (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: router: Add test case for source IP in class E (Hangbin Liu) [1816587]
+- [tools] selftests/net: make so_txtime more robust to timer variance (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: Add speed and auto-negotiation test (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: lib.sh: Add wait for dev with timeout (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: Add ethtool_lib.sh (Hangbin Liu) [1816587]
+- [tools] selftests: net: avoid ptl lock contention in tcp_mmap (Hangbin Liu) [1816587]
+- [tools] selftest: net: add alternative names test (Hangbin Liu) [1816587]
+- [tools] selftest: net: add some traceroute tests (Hangbin Liu) [1816587]
+- [tools] selftests: net: Fix printf format warnings on arm (Hangbin Liu) [1816587]
+- [tools] selftests: net: Use size_t and ssize_t for counting file size (Hangbin Liu) [1816587]
+- [tools] selftests: Make l2tp.sh executable (Hangbin Liu) [1816587]
+- [tools] selftests/net: add nettest to .gitignore (Hangbin Liu) [1816587]
+- [tools] selftests: Add test cases for `ip nexthop flush proto XX` (Hangbin Liu) [1816587]
+- [tools] selftest: A few cleanups for fib_nexthops.sh (Hangbin Liu) [1816587]
+- [tools] selftests: Fix get_ifidx and callers in nettest.c (Hangbin Liu) [1816587]
+- [tools] selftests: Fix detection of nettest command in fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add l2tp tests (Hangbin Liu) [1816587]
+- [tools] selftests: nettest: fix spelling mistake: "potocol" -> "protocol" (Hangbin Liu) [1816587]
+- [tools] selftests: Add use case section to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv6 netfilter tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv4 netfilter tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv6 runtime tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv4 runtime tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv6 address bind tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv4 address bind tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv6 udp tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv4 udp tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv6 tcp tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv4 tcp tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv6 ping tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Add ipv4 ping tests to fcnal-test (Hangbin Liu) [1816587]
+- [tools] selftests: Setup for functional tests for fib and socket lookups (Hangbin Liu) [1816587]
+- [tools] selftests: Add nettest (Hangbin Liu) [1816587]
+- [tools] selftests/net: add missing gitignores (ipv6_flowlabel) (Hangbin Liu) [1816587]
+- [tools] selftests: txring_overwrite: fix incorrect test of mmap() return value (Hangbin Liu) [1816587]
+- [tools] selftests/net: skip psock_tpacket test if KALLSYMS was not enabled (Hangbin Liu) [1816587]
+- [tools] selftests: rtnetlink: skip ipsec offload tests if netdevsim isn't present (Hangbin Liu) [1816587]
+- [tools] selftests: Add test cases for nexthop objects (Hangbin Liu) [1816587]
+- [tools] selftests/net: ipv6 flowlabel (Hangbin Liu) [1816587]
+- [tools] selftests/net: SO_TXTIME with ETF and FQ (Hangbin Liu) [1816587]
+- [tools] selftests: fib-onlink: Make quiet by default (Hangbin Liu) [1816587]
+- [tools] selftests/net: correct the return value for run_afpackettests (Hangbin Liu) [1816587]
+- [tools] selftests/net: correct the return value for run_netsocktests (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: Add reverse path forwarding (RPF) test cases (Hangbin Liu) [1816587]
+- [tools] selftest/net: Remove duplicate header (Hangbin Liu) [1816587]
+- [tools] selftests: fib_tests: sleep after changing carrier. again. (Hangbin Liu) [1816587]
+- [tools] selftests: net: use LDLIBS instead of LDFLAGS (Hangbin Liu) [1816587]
+- [tools] selftests/net: add txring_overwrite (Hangbin Liu) [1816587]
+- [tools] fib_tests: Add tests for invalid metric on route (Hangbin Liu) [1816587]
+- [tools] selftests: forwarding: test for bridge sticky flag (Hangbin Liu) [1816587]
+- [tools] selftests: net: Test headroom handling of ip6_gre devices (Hangbin Liu) [1816587]
+- [net] Don't disable interrupts in __netdev_alloc_skb() (Andrea Claudi) [1811207]
+- [net] Don't disable interrupts in napi_alloc_frag() (Andrea Claudi) [1811207]
+- [net] ipv4: ensure rcu_read_lock() in cipso_v4_error() (Matteo Croce) [1720708]
+- [net] ipv4: add sanity checks in ipv4_link_failure() (Matteo Croce) [1720708]
+- [net] ipv4: ensure rcu_read_lock() in ipv4_link_failure() (Matteo Croce) [1720708]
+- [net] ipv4: recompile ip options in ipv4_link_failure (Matteo Croce) [1720708]
+- [net] avoid use IPCB in cipso_v4_error (Matteo Croce) [1720708]
+- [net] Add __icmp_send helper. (Matteo Croce) [1720708]
+- [net] ipv4: defensive cipso option parsing (Matteo Croce) [1720708]
+- [net] netfilter: nf_queue: enqueue skbs with NULL dst (Matteo Croce) [1786116]
+
+* Tue Apr 28 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.15.el8]
+- [powerpc] powerpc/pseries/ddw: Extend upper limit for huge DMA window for persistent memory (Steve Best) [1817596]
+- [cpuidle] cpuidle: haltpoll: allow force loading on hosts without the REALTIME hint (David Arcari) [1825353]
+- [cpuidle] cpuidle: dt: Support hierarchical CPU idle states (David Arcari) [1825353]
+- [of] of: base: Add of_get_cpu_state_node() to get idle states for a CPU node (David Arcari) [1825353]
+- [cpuidle] cpuidle: Allow idle states to be disabled by default (David Arcari) [1825353]
+- [cpuidle] cpuidle: Drop unnecessary type cast in cpuidle_poll_time() (David Arcari) [1825353]
+- [cpuidle] cpuidle: Fix cpuidle_driver_state_disabled() (David Arcari) [1825353]
+- [cpuidle] cpuidle: use first valid target residency as poll time (David Arcari) [1825353]
+- [cpuidle] cpuidle: Drop disabled field from struct cpuidle_state (David Arcari) [1825353]
+- [cpuidle] cpuidle: Pass exit latency limit to cpuidle_use_deepest_state() (David Arcari) [1825353]
+- [include] cpuidle: Allow idle injection to apply exit latency limit (David Arcari) [1825353]
+- [thermal] cpuidle: play_idle: Increase the resolution to usec (David Arcari) [1825353]
+- [cpuidle] cpuidle: Use nanoseconds as the unit of time (David Arcari) [1825353]
+- [cpuidle] cpuidle: menu: Allow tick to be stopped if PM QoS is used (David Arcari) [1825353]
+- [cpuidle] cpuidle: Consolidate disabled state checks (David Arcari) [1825353]
+- [cpuidle] cpuidle: Do not unset the driver if it is there already (David Arcari) [1825353]
+- [cpuidle] cpuidle: haltpoll: Take 'idle=' override into account (David Arcari) [1825353]
+- [cpuidle] cpuidle-haltpoll: Enable kvm guest polling when dedicated physical CPUs are available (David Arcari) [1825353]
+- [fs] gfs2: fix gfs2_find_jhead that returns uninitialized jhead with seq 0 (Abhijith Das) [1655566]
+- [fs] gfs2: Another gfs2_find_jhead fix (Abhijith Das) [1655566]
+- [fs] gfs2: read journal in large chunks (Abhijith Das) [1655566]
+- [fs] gfs2: add a helper function to get_log_header that can be used elsewhere (Abhijith Das) [1655566]
+- [fs] gfs2: changes to gfs2_log_XXX_bio (Abhijith Das) [1655566]
+- [fs] gfs2: add more timing info to journal recovery process (Abhijith Das) [1655566]
+- [mm] mm: hugetlb controller for cgroup v2 (Joel Savitz) [1810728]
+- [arm64] crypto: arm64/aes-ce - implement 5 way interleave for ECB, CBC and CTR (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-ce - add 5 way interleave routines (Mark Salter) [1826982]
+- [arm64] crypto: arm64/sha2-ce - correct digest for empty data in finup (Mark Salter) [1826982]
+- [arm64] crypto: arm64/sha1-ce - correct digest for empty data in finup (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-neonbs - don't access already-freed walk.iv (Mark Salter) [1826982]
+- [arm64] crypto: arm64/cbcmac - handle empty messages in same way as template (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-blk - update IV after partial final CTR block (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-neonbs - fix returning final keystream block (Mark Salter) [1826982]
+- [arm64] crypto: arm64/crct10dif-ce - cleanup and optimizations (Mark Salter) [1826982]
+- [arm64] crypto: arm64/crct10dif - register PMULL variants as separate algos (Mark Salter) [1826982]
+- [arm64] crypto: arm64/crct10dif - remove dead code (Mark Salter) [1826982]
+- [arm64] crypto: arm64/crct10dif - revert to C code for short inputs (Mark Salter) [1826982]
+- [arm64] crypto: arm64/ghash-neon - bump priority to 150 (Mark Salter) [1826982]
+- [arm64] crypto: arm64/ghash - register PMULL variants as separate algos (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-ccm - don't use an atomic walk needlessly (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-ccm - fix bugs in non-NEON fallback routine (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-blk - ensure XTS mask is always loaded (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes - fix handling sub-block CTS-CBC inputs (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-blk - improve XTS mask handling (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-blk - add support for CTS-CBC mode (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-blk - revert NEON yield for skciphers (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-blk - remove pointless (u8 *) casts (Mark Salter) [1826982]
+- [arm64] crypto: arm64/crct10dif - implement non-Crypto Extensions alternative (Mark Salter) [1826982]
+- [arm64] crypto: arm64/crct10dif - preparatory refactor for 8x8 PMULL version (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-modes - get rid of literal load of addend vector (Mark Salter) [1826982]
+- [arm64] crypto: arm64/sm4-ce - check for the right CPU feature bit (Mark Salter) [1826982]
+- [arm64] crypto: arm64/gcm-aes-ce - fix no-NEON fallback code (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-gcm-ce - fix scatterwalk API violation (Mark Salter) [1826982]
+- [arm64] crypto: arm64/ghash-ce - implement 4-way aggregation (Mark Salter) [1826982]
+- [arm64] crypto: arm64/ghash-ce - replace NEON yield check with block limit (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-ce-gcm - don't reload key schedule if avoidable (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-ce-gcm - implement 2-way aggregation (Mark Salter) [1826982]
+- [arm64] crypto: arm64/aes-ce-gcm - operate on two input blocks at a time (Mark Salter) [1826982]
+- [mm] mm, slub: prevent kmalloc_node crashes and memory leaks (Rafael Aquini) [1819839]
+- [mm] mm: slub: be more careful about the double cmpxchg of freelist (Rafael Aquini) [1819839]
+- [mm] mm: slub: add missing TID bump in kmem_cache_alloc_bulk() (Rafael Aquini) [1819839]
+- [mm] mm/slub.c: avoid slub allocation while holding list_lock (Rafael Aquini) [1819839]
+- [mm] mm/slub.c: clean up validate_slab() (Rafael Aquini) [1819839]
+- [mm] mm: slub: print the offset of fault addresses (Rafael Aquini) [1819839]
+- [mm] hugetlbfs: don't retry when pool page allocations start to fail (Rafael Aquini) [1727288]
+- [mm] mm, compaction: raise compaction priority after it withdrawns (Rafael Aquini) [1727288]
+- [mm] mm, reclaim: cleanup should_continue_reclaim() (Rafael Aquini) [1727288]
+- [mm] mm, reclaim: make should_continue_reclaim perform dryrun detection (Rafael Aquini) [1727288]
+
+* Sat Apr 25 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.14.el8]
+- [tools] bpf: selftests: remove test_bpftool_build.sh from TEST_PROGS (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: Support .text sub-calls relocations (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: Sanitize global functions (Yauheni Kaliuta) [1813365]
+- [kernel] workqueue: Add RCU annotation for pwq list walk (Yauheni Kaliuta) [1813365]
+- [kernel] perf/core: Add SRCU annotation for pmus list walk (Yauheni Kaliuta) [1813365]
+- [net] kcm: disable preemption in kcm_parse_func_strparser() (Yauheni Kaliuta) [1813365]
+- [net] kcm: use BPF_PROG_RUN (Yauheni Kaliuta) [1813365]
+- [kernel] bpf: clarify description for CONFIG_BPF_EVENTS (Yauheni Kaliuta) [1813365]
+- [lib] test_bpf: Fix a new clang warning about xor-ing two numbers (Yauheni Kaliuta) [1813365]
+- [include] bpf: add include guard to tnum.h (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: handle symbol versioning properly for libbpf.a (Yauheni Kaliuta) [1813365]
+- [net] bpf, devmap: Pass lockdep expression to RCU lists (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: Fix Makefile' libbpf symbol mismatch diagnostic (Yauheni Kaliuta) [1813365]
+- [net] xdp: Fix cleanup on map free for devmap_hash map type (Yauheni Kaliuta) [1813365]
+- [tools] tools, bpf: Fix build for 'make -s tools/bpf O=<dir>' (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: Fix passing uninitialized bytes to setsockopt (Yauheni Kaliuta) [1813365]
+- [tools] selftests: bpf: Skip write only files in debugfs (Yauheni Kaliuta) [1813365]
+- [net] xdp: Handle device unregister for devmap_hash map type (Yauheni Kaliuta) [1813365]
+- [net] ipv4: Add lockdep condition to fix for_each_entry() (Yauheni Kaliuta) [1813365]
+- [kernel] rcu/sync: Remove custom check for RCU readers (Yauheni Kaliuta) [1813365]
+- [kernel] rcu: Add support for consolidated-RCU reader checking (Yauheni Kaliuta) [1813365]
+- [kernel] rcu: Remove redundant debug_locks check in rcu_read_lock_sched_held() (Yauheni Kaliuta) [1813365]
+- [net] xdp: Prevent overflow in devmap_hash cost calculation for 32-bit builds (Yauheni Kaliuta) [1813365]
+- [samples] samples/bpf: Add a workaround for asm_inline (Yauheni Kaliuta) [1813365]
+- [samples] samples/bpf: Fix build for task_fd_query_user.c (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: Don't leak server_fd in test_sockopt_inherit (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpf: Use !building_out_of_srctree to determine srctree (Yauheni Kaliuta) [1813365]
+- [net] bpf: Clean up indentation issue in BTF kflag processing (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: Teach btf_dumper to emit stand-alone anonymous enum definitions (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: adjust strobemeta loop to satisfy latest clang (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: delete unused variables in test_sysctl (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: fix false uninitialized variable warning (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: Remove getsockopt() check for XDP_OPTIONS (Yauheni Kaliuta) [1813365]
+- [net] xdp: Fix race in dev_map_hash_update_elem() when replacing element (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: convert test_tcp_rtt (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: convert test_sockopt_inherit (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: convert test_sockopt_multi (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: convert test_sockopt_sk (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: convert test_sockopt (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: add test__join_cgroup helper (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: precision tracking tests (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: fix endianness issues in test_sysctl (Yauheni Kaliuta) [1813365]
+- [arm64] arm64: bpf: optimize modulo operation (Yauheni Kaliuta) [1813365]
+- [s390] bpf: s390: add JIT support for bpf line info (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: add missing \n to CHECK_FAIL (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: fix verbose mode garbage (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: Fix a typo in test_offload.py (Yauheni Kaliuta) [1813365]
+- [net] bpf: fix error check in bpf_tcp_gen_syncookie (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: do not link twice against libbpf.a in Makefile (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpf: account for generated feature/ and libbpf/ directories (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: improve and check builds for different make invocations (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: ignore make built-in rules for getting kernel version (Yauheni Kaliuta) [1813365]
+- [s390] bpf: s390: add JIT support for multi-function programs (Yauheni Kaliuta) [1746980 1813365]
+- [tools] selftests/bpf: remove wrong nhoff in flow dissector test (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: remove unused ret (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: remove asserts from subtests (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: remove global fail/success counts (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: test__skip (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: add precision tracking test (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: verifier precise tests (Yauheni Kaliuta) [1813365]
+- [tools] tools/bpf: sync bpf.h (Yauheni Kaliuta) [1813365]
+- [net] bpf: introduce verifier internal test flag (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: add "bpftool map freeze" subcommand (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: show frozen status for maps (Yauheni Kaliuta) [1813365]
+- [uapi] bpf: clarify when bpf_trace_printk discards lines (Yauheni Kaliuta) [1813365]
+- [samples] samples: bpf: syscall_nrs: use mmap2 if defined (Yauheni Kaliuta) [1813365]
+- [tools] libbpf: use LFS (_FILE_OFFSET_BITS) instead of direct mmap2 syscall (Yauheni Kaliuta) [1813365]
+- [net] bpf: add new BPF_BTF_GET_NEXT_ID syscall command (Yauheni Kaliuta) [1813365]
+- [net] bpf: add BTF ids in procfs for file descriptors to BTF objects (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: add sockopt clone/inheritance test (Yauheni Kaliuta) [1813365]
+- [tools] bpf: sync bpf.h to tools/ (Yauheni Kaliuta) [1813365]
+- [net] bpf: support cloning sk storage on accept() (Yauheni Kaliuta) [1813365]
+- [net] bpf: export bpf_map_inc_not_zero (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: add documentation for net attach/detach (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: add bash-completion for net attach/detach (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: add net detach command to detach XDP on interface (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: add net attach command to attach XDP on interface (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: compile with $(EXTRA_WARNINGS) (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: add feature check for zlib (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: fix reading from /proc/config.gz (Yauheni Kaliuta) [1813365]
+- [samples] samples/bpf: xdp_fwd explain bpf_fib_lookup return codes (Yauheni Kaliuta) [1813365]
+- [samples] samples/bpf: make xdp_fwd more practically usable via devmap lookup (Yauheni Kaliuta) [1813365]
+- [samples] samples/bpf: xdp_fwd rename devmap name to be xdp_tx_ports (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: drop extra trailing tab (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: test__printf -> printf (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: test_progs: switch to open_memstream (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: add loop test 5 (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: add loop test 4 (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: extend sockopt_sk selftest with TCP_CONGESTION use case (Yauheni Kaliuta) [1813365]
+- [net] bpf: always allocate at least 16 bytes for setsockopt hook (Yauheni Kaliuta) [1813365]
+- [tools] tools: bpftool: add support for reporting the effective cgroup progs (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: add test for bpf_tcp_gen_syncookie (Yauheni Kaliuta) [1813365]
+- [tools] bpf: sync bpf.h to tools/ (Yauheni Kaliuta) [1813365]
+- [net] bpf: add bpf_tcp_gen_syncookie helper (Yauheni Kaliuta) [1813365]
+- [net] tcp: add skb-less helpers to retrieve SYN cookie (Yauheni Kaliuta) [1813365]
+- [net] tcp: tcp_syn_flood_action read port from socket (Yauheni Kaliuta) [1813365]
+- [net] tcp: rate limit synflood warnings further (Yauheni Kaliuta) [1813365]
+- [tools] tools: Add definitions for devmap_hash map type (Yauheni Kaliuta) [1813365]
+- [tools] tools/libbpf_probes: Add new devmap_hash type (Yauheni Kaliuta) [1813365]
+- [tools] tools/include/uapi: Add devmap_hash BPF map type (Yauheni Kaliuta) [1813365]
+- [net] xdp: Add devmap_hash map type for looking up devices by hashed index (Yauheni Kaliuta) [1813365]
+- [net] xdp: Refactor devmap allocation code for reuse (Yauheni Kaliuta) [1813365]
+- [include] include/bpf.h: Remove map_insert_ctx() stubs (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: convert send_signal.c to use subtests (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: convert bpf_verif_scale.c to sub-tests API (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: support BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP (Yauheni Kaliuta) [1813365]
+- [tools] bpf/flow_dissector: support ipv6 flow_label and BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: support BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG (Yauheni Kaliuta) [1813365]
+- [tools] tools/bpf: sync bpf_flow_keys flags (Yauheni Kaliuta) [1813365]
+- [net] bpf/flow_dissector: support flags in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1813365]
+- [documentation] bpf/flow_dissector: document flags (Yauheni Kaliuta) [1813365]
+- [net] bpf/flow_dissector: pass input flags to BPF flow dissector program (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: Add selftests for bpf_perf_event_output (Yauheni Kaliuta) [1813365]
+- [net] bpf: Allow bpf_skb_event_output for a few prog types (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: remove perf buffer helpers (Yauheni Kaliuta) [1813365]
+- [samples] samples/bpf: switch trace_output sample to perf_buffer API (Yauheni Kaliuta) [1813365]
+- [samples] samples/bpf: convert xdp_sample_pkts_user to perf_buffer API (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: switch test_tcpnotify to perf_buffer API (Yauheni Kaliuta) [1813365]
+- [tools] selftests/bpf: convert test_get_stack_raw_tp to perf_buffer API (Yauheni Kaliuta) [1813365]
+- [block] block, bfq: fix use-after-free in bfq_idle_slice_timer_body (Ming Lei) [1823596]
+- [block] block, bfq: fix overwrite of bfq_group pointer in bfq_find_set_group() (Ming Lei) [1823596]
+- [block] block, bfq: clarify the goal of bfq_split_bfqq() (Ming Lei) [1823596]
+- [block] block, bfq: get a ref to a group when adding it to a service tree (Ming Lei) [1823596]
+- [block] block, bfq: remove ifdefs from around gets/puts of bfq groups (Ming Lei) [1823596]
+- [block] block, bfq: extend incomplete name of field on_st (Ming Lei) [1823596]
+- [block] block, bfq: get extra ref to prevent a queue from being freed during a group move (Ming Lei) [1823596]
+- [block] block, bfq: do not insert oom queue into position tree (Ming Lei) [1823596]
+- [block] block, bfq: do not plug I/O for bfq_queues with no proc refs (Ming Lei) [1823596]
+- [block] block, bfq: improve arithmetic division in bfq_delta() (Ming Lei) [1823596]
+- [block] block/bfq: remove unused bfq_class_rt which never used (Ming Lei) [1823596]
+- [block] block: Prevent hung_check firing during long sync IO (Ming Lei) [1813383]
+- [block] brd: check and limit max_part par (Ming Lei) [1790403]
+
+* Fri Apr 24 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.13.el8]
+- [char] random: silence a lockdep splat with printk() (Brian Masney) [1798900]
+- [net] SUNRPC: fix krb5p mount to provide large enough buffer in rq_rcvsize (Steve Dickson) [1825388]
+- [include] percpu-refcount: Use normal instead of RCU-sched" (Waiman Long) [1803822]
+- [kernel] locking/spinlock/debug: Fix various data races (Waiman Long) [1803822]
+- [kernel] locktorture: Forgive apparent unfairness if CPU hotplug (Waiman Long) [1803822]
+- [kernel] locktorture: Use private random-number generators (Waiman Long) [1803822]
+- [tools] locktorture: Allow CPU-hotplug to be disabled via --bootargs (Waiman Long) [1803822]
+- [kernel] locking: locktorture: Do not include rwlock.h directly (Waiman Long) [1803822]
+- [kernel] locktorture: Replace strncmp() with str_has_prefix() (Waiman Long) [1803822]
+- [kernel] locking/rtmutex: rcu: Add WRITE_ONCE() to rt_mutex ->owner (Waiman Long) [1803822]
+- [arm64] arm64/spinlock: fix a -Wunused-function warning (Waiman Long) [1803822]
+- [arm64] locking/osq: Use optimized spinning loop for arm64 (Waiman Long) [1803822]
+- [kernel] locking/qspinlock: Fix inaccessible URL of MCS lock paper (Waiman Long) [1803822]
+- [include] string.h: Add str_has_prefix() helper function (Waiman Long) [1803822]
+- [kernel] futex: Remove {get,drop}_futex_key_refs() (Waiman Long) [1803822]
+- [kernel] futex: Remove pointless mmgrap() + mmdrop() (Waiman Long) [1803822]
+- [kernel] futex: Unbreak futex hashing (Waiman Long) [1803822]
+- [fs] futex: Fix inode life-time issue (Waiman Long) [1803822]
+- [kernel] futex: Fix kernel-doc notation warning (Waiman Long) [1803822]
+- [kernel] futex: Prevent exit livelock (Waiman Long) [1803822]
+- [kernel] futex: Provide distinct return value when owner is exiting (Waiman Long) [1803822]
+- [include] futex: Add mutex around futex exit (Waiman Long) [1803822]
+- [kernel] futex: Provide state handling for exec() as well (Waiman Long) [1803822]
+- [kernel] futex: Sanitize exit state handling (Waiman Long) [1803822]
+- [kernel] futex: Mark the begin of futex exit explicitly (Waiman Long) [1803822]
+- [kernel] futex: Set task::futex_state to DEAD right after handling futex exit (Waiman Long) [1803822]
+- [kernel] futex: Split futex_mm_release() for exit/exec (Waiman Long) [1803822]
+- [kernel] exit/exec: Seperate mm_release() (Waiman Long) [1803822]
+- [kernel] futex: Replace PF_EXITPIDONE with a state (Waiman Long) [1803822]
+- [kernel] futex: Move futex exit handling into futex code (Waiman Long) [1803822]
+- [kernel] futex: Prevent robust futex exit race (Waiman Long) [1803822]
+- [kernel] futex: Drop leftover wake_q_add() comment (Waiman Long) [1803822]
+- [kernel] fork: Provide a function for copying init_mm (Waiman Long) [1803822]
+- [kernel] y2038: futex: Move compat implementation into futex.c (Waiman Long) [1803822]
+- [fs] nfsd: Fix races between nfsd4_cb_release() and nfsd4_shutdown_callback() ("J. Bruce Fields") [1797484]
+- [fs] nfsd: minor 4.1 callback cleanup ("J. Bruce Fields") [1797484]
+- [video] vgacon: Fix a UAF in vgacon_invert_region (Vladis Dronov) [1818732] {CVE-2020-8647 CVE-2020-8649}
+- [powerpc] powerpc/xive: Use XIVE_BAD_IRQ instead of zero to catch non configured IPIs (David Gibson) [1773891]
+- [clocksource] hyper-v: Make sched clock return nanoseconds correctly (Mohammed Gamal) [1816731]
+- [clocksource] hyper-v: Set TSC clocksource as default w/ InvariantTSC (Mohammed Gamal) [1816731]
+- [clocksource] hyper-v: Untangle stimers and timesync from clocksources (Mohammed Gamal) [1816731]
+- [clocksource] hyper-v: Reserve PAGE_SIZE space for tsc page (Mohammed Gamal) [1816731]
+- [clocksource] x86/hyperv: Initialize clockevents earlier in CPU onlining (Mohammed Gamal) [1816731]
+- [x86] hyperv: Allow guests to enable InvariantTSC (Mohammed Gamal) [1816731]
+- [hv] hv: vmbus: Suspend/resume the synic for hibernation (Mohammed Gamal) [1816731]
+- [hv] hv: vmbus: Break out synic enable and disable operations (Mohammed Gamal) [1816731]
+- [x86] hyperv: Set pv_info.name to "Hyper-V" (Mohammed Gamal) [1816731]
+- [x86] hyperv: Hide pv_ops access for CONFIG_PARAVIRT=n (Mohammed Gamal) [1816731]
+- [clocksource] hyperv: Enable TSC page clocksource on 32bit (Mohammed Gamal) [1816731]
+- [clocksource] hyperv: Add Hyper-V specific sched clock function (Mohammed Gamal) [1816731]
+- [clocksource] hyperv: Allocate Hyper-V TSC page statically (Mohammed Gamal) [1816731]
+- [clocksource] Continue making Hyper-V clocksource ISA agnostic (Mohammed Gamal) [1816731]
+- [clocksource] Make Hyper-V clocksource ISA agnostic (Mohammed Gamal) [1816731]
+- [tools] hv: Reopen the devices if read() or write() returns errors (Mohammed Gamal) [1824182]
+- [tools] hv: add vmbus testing tool (Mohammed Gamal) [1824182]
+- [tools] hv: move to tools buildsystem (Mohammed Gamal) [1824182]
+- [tools] hv: kvp: eliminate 'may be used uninitialized' warning (Mohammed Gamal) [1824182]
+- [tools] hv: fix typos in toolchain (Mohammed Gamal) [1824182]
+- [tools] hv: fix KVP and VSS daemons exit code (Mohammed Gamal) [1824182]
+- [tools] hv: fixed Python pep8/flake8 warnings for lsvmbus (Mohammed Gamal) [1824182]
+- [tools] hv: kvp: Fix a warning of buffer overflow with gcc 8.0.1 (Mohammed Gamal) [1824182]
+- [tools] hv: fcopy: set 'error' in case an unknown operation was requested (Mohammed Gamal) [1824182]
+- [tools] hv: Fix a bug in the key delete code (Mohammed Gamal) [1824182]
+- [tools] hv: vss: fix loop device detection (Mohammed Gamal) [1824182]
+- [hv] hv: vmbus: Introduce latency testing (Mohammed Gamal) [1824182]
+- [tools] hv: update lsvmbus to be compatible with python3 (Mohammed Gamal) [1824182]
+
+* Thu Apr 23 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.12.el8]
+- [hwtracing] coresight: etm4x: Add kernel configuration for CONTEXTID (Michael Petlan) [1818835]
+- [samples] samples/bpf: fix build by setting HAVE_ATTR_TEST to zero (Michael Petlan) [1818835]
+- [tools] perf metricgroup: Fix printing event names of metric group with multiple events (Michael Petlan) [1818835]
+- [tools] perf script: Fix invalid LBR/binary mismatch error (Michael Petlan) [1818835]
+- [tools] perf c2c: Fix return type for histogram sorting comparision functions (Michael Petlan) [1818835]
+- [tools] perf session: Fix decompression of PERF_RECORD_COMPRESSED records (Michael Petlan) [1818835]
+- [tools] perf tools: Fix time sorting (Michael Petlan) [1818835]
+- [tools] perf tools: Remove unused trace_find_next_event() (Michael Petlan) [1818835]
+- [tools] perf scripting engines: Iterate on tep event arrays directly (Michael Petlan) [1818835]
+- [tools] perf tools: Make usage of test_attr__* optional for perf-sys.h (Michael Petlan) [1818835]
+- [tools] perf kmem: Fix memory leak in compact_gfp_flags() (Michael Petlan) [1818835]
+- [tools] perf c2c: Fix memory leak in build_cl_output() (Michael Petlan) [1818835]
+- [tools] perf tools: Fix mode setting in copyfile_mode_ns() (Michael Petlan) [1818835]
+- [tools] perf annotate: Fix multiple memory and file descriptor leaks (Michael Petlan) [1818835]
+- [tools] perf tools: Fix resource leak of closedir() on the error paths (Michael Petlan) [1818835]
+- [tools] perf evlist: Fix fix for freed id arrays (Michael Petlan) [1818835]
+- [tools] perf annotate: Don't return -1 for error when doing BPF disassembly (Michael Petlan) [1818835]
+- [tools] perf annotate: Return appropriate error code for allocation failures (Michael Petlan) [1818835]
+- [tools] perf annotate: Fix arch specific ->init() failure errors (Michael Petlan) [1818835]
+- [tools] perf annotate: Propagate the symbol__annotate() error return (Michael Petlan) [1818835]
+- [tools] perf annotate: Fix the signedness of failure returns (Michael Petlan) [1818835]
+- [tools] perf annotate: Propagate perf_env__arch() error (Michael Petlan) [1818835]
+- [tools] perf evsel: Fall back to global 'perf_env' in perf_evsel__env() (Michael Petlan) [1818835]
+- [tools] perf tools: Propagate get_cpuid() error (Michael Petlan) [1818835]
+- [tools] perf jevents: Fix period for Intel fixed counters (Michael Petlan) [1818835]
+- [tools] perf script brstackinsn: Fix recovery from LBR/binary mismatch (Michael Petlan) [1818835]
+- [tools] perf docs: Correct and clarify jitdump spec (Michael Petlan) [1818835]
+- [tools] perf inject jit: Fix JIT_CODE_MOVE filename (Michael Petlan) [1818835]
+- [tools] perf map: Fix overlapped map handling (Michael Petlan) [1818835]
+- [tools] perf vendor events s390: Use s390 machine name instead of type 8561 (Michael Petlan) [1818835]
+- [tools] perf llvm: Don't access out-of-scope array (Michael Petlan) [1818835]
+- [tools] perf docs: Allow man page date to be specified (Michael Petlan) [1818835]
+- [tools] perf tests: Avoid raising SEGV using an obvious NULL dereference (Michael Petlan) [1818835]
+- [tools] libsubcmd: Make _FORTIFY_SOURCE defines dependent on the feature (Michael Petlan) [1818835]
+- [tools] perf unwind: Fix libunwind build failure on i386 systems (Michael Petlan) [1818835]
+- [tools] perf parser: Remove needless include directives (Michael Petlan) [1818835]
+- [tools] perf build: Add detection of java-11-openjdk-devel package (Michael Petlan) [1818835]
+- [tools] perf jvmti: Include JVMTI support for s390 (Michael Petlan) [1818835]
+- [tools] perf evlist: Fix access of freed id arrays (Michael Petlan) [1818835]
+- [tools] perf stat: Fix free memory access / memory leaks in metrics (Michael Petlan) [1818835]
+- [tools] perf tools: Replace needless mmap.h with what is needed, event.h (Michael Petlan) [1818835]
+- [tools] perf evsel: Move config terms to a separate header (Michael Petlan) [1818835]
+- [tools] perf evlist: Remove unused perf_evlist__fprintf() method (Michael Petlan) [1818835]
+- [tools] perf evsel: Introduce evsel_fprintf.h (Michael Petlan) [1818835]
+- [tools] perf evsel: Remove need for symbol_conf in evsel_fprintf.c (Michael Petlan) [1818835]
+- [tools] perf copyfile: Move copyfile routines to separate files (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__poll() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__add_pollfd() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__alloc_pollfd() function (Michael Petlan) [1818835]
+- [tools] libperf: Add libperf_init() call to the tests (Michael Petlan) [1818835]
+- [tools] libperf: Merge libperf_set_print() into libperf_init() (Michael Petlan) [1818835]
+- [tools] libperf: Add libperf dependency for tests targets (Michael Petlan) [1818835]
+- [tools] libperf: Use sys/types.h to get ssize_t, not unistd.h (Michael Petlan) [1818835]
+- [tools] perf tools: No need to include internal/lib.h from util/util.h (Michael Petlan) [1818835]
+- [tools] libperf: Move 'page_size' global variable to libperf (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__id_add_fd() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__id_add() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__read_format() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__first()/last() functions (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evsel__alloc_id/perf_evsel__free_id functions (Michael Petlan) [1818835]
+- [tools] libperf: Move 'heads' from 'struct evlist' to 'struct perf_evlist' (Michael Petlan) [1818835]
+- [tools] libperf: Move 'ids' from 'struct evsel' to 'struct perf_evsel' (Michael Petlan) [1818835]
+- [tools] libperf: Move 'id' from 'struct evsel' to 'struct perf_evsel' (Michael Petlan) [1818835]
+- [tools] libperf: Move 'sample_id' from 'struct evsel' to 'struct perf_evsel' (Michael Petlan) [1818835]
+- [tools] libperf: Add missing 'struct xyarray' forward declaration (Michael Petlan) [1818835]
+- [tools] libperf: Move 'pollfd' from 'struct evlist' to 'struct perf_evlist' (Michael Petlan) [1818835]
+- [tools] libperf: Move 'mmap_len' from 'struct evlist' to 'struct perf_evlist' (Michael Petlan) [1818835]
+- [tools] libperf: Move 'nr_mmaps' from 'struct evlist' to 'struct perf_evlist' (Michael Petlan) [1818835]
+- [tools] libperf: Move 'system_wide' from 'struct evsel' to 'struct perf_evsel' (Michael Petlan) [1818835]
+- [tools] libperf: Add 'flush' to 'struct perf_mmap' (Michael Petlan) [1818835]
+- [tools] libperf: Add 'event_copy' to 'struct perf_mmap' (Michael Petlan) [1818835]
+- [tools] libperf: Add 'overwrite' to 'struct perf_mmap' (Michael Petlan) [1818835]
+- [tools] libperf: Add prev/start/end to struct perf_mmap (Michael Petlan) [1818835]
+- [tools] libperf: Add 'refcnt' to struct perf_mmap (Michael Petlan) [1818835]
+- [tools] libperf: Add 'cpu' to struct perf_mmap (Michael Petlan) [1818835]
+- [tools] libperf: Add 'fd' to struct perf_mmap (Michael Petlan) [1818835]
+- [tools] libperf: Add 'mask' to struct perf_mmap (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_mmap struct (Michael Petlan) [1818835]
+- [tools] perf evlist: Adopt backwards ring buffer state enum (Michael Petlan) [1818835]
+- [tools] libperf: Link libapi.a in libperf.so (Michael Petlan) [1818835]
+- [tools] perf tools: Rename perf_evlist__purge() to evlist__purge() (Michael Petlan) [1818835]
+- [tools] perf tools: Rename perf_evlist__exit() to evlist__exit() (Michael Petlan) [1818835]
+- [tools] perf tools: Rename perf_evlist__alloc_mmap() to evlist__alloc_mmap() (Michael Petlan) [1818835]
+- [tools] perf tools: Rename perf_evlist__munmap() to evlist__munmap() (Michael Petlan) [1818835]
+- [tools] perf tools: Rename perf_evlist__mmap() to evlist__mmap() (Michael Petlan) [1818835]
+- [tools] perf tools: Rename 'struct perf_mmap' to 'struct mmap' (Michael Petlan) [1818835]
+- [tools] tools: Add missing stdio.h include to asm/bug.h header (Michael Petlan) [1818835]
+- [tools] libtraceevent: Man pages for tep plugins APIs (Michael Petlan) [1818835]
+- [tools] libtraceevent: Move traceevent plugins in its own subdirectory (Michael Petlan) [1818835]
+- [tools] libtraceevent: Add tep_get_event() in event-parse.h (Michael Petlan) [1818835]
+- [tools] libtraceevent: Man pages fix, changes in event printing APIs (Michael Petlan) [1818835]
+- [tools] libtraceevent: Man pages fix, rename tep_ref_get() to tep_get_ref() (Michael Petlan) [1818835]
+- [tools] libtraceevent: Man pages for libtraceevent event print related API (Michael Petlan) [1818835]
+- [tools] libtraceevent: Round up in tep_print_event() time precision (Michael Petlan) [1818835]
+- [tools] perf record: Move restricted maps check to after a possible fallback to not collect kernel samples (Michael Petlan) [1818835]
+- [tools] perf record: Fix priv level with branch sampling for paranoid=2 (Michael Petlan) [1818835]
+- [tools] perf probe: Fix to clear tev->nargs in clear_probe_trace_event() (Michael Petlan) [1818835]
+- [tools] perf probe: Skip same probe address for a given line (Michael Petlan) [1818835]
+- [tools] perf tests: Fix static build test (Michael Petlan) [1818835]
+- [tools] perf kvm stat: Set 'trace_cycles' as default event for 'perf kvm record' in powerpc (Michael Petlan) [1818835]
+- [tools] perf kvm: Add arch neutral function to choose event for perf kvm record (Michael Petlan) [1818835]
+- [tools] perf kvm: Move kvm-stat header file from conditional inclusion to common include section (Michael Petlan) [1818835]
+- [tools] perf test: Fix spelling mistake "allos" -> "allocate" (Michael Petlan) [1818835]
+- [tools] perf stat: Fix a segmentation fault when using repeat forever (Michael Petlan) [1818835]
+- [tools] perf stat: Reset previous counts on repeat with interval (Michael Petlan) [1818835]
+- [tools] tools lib traceevent: Convert remaining pusers to p (Michael Petlan) [1818835]
+- [tools] perf tools: Move event synthesizing routines to separate .c file (Michael Petlan) [1818835]
+- [tools] perf memswap: Adopt 'struct u64_swap' from evsel.h (Michael Petlan) [1818835]
+- [tools] perf tools: Move event synthesizing routines to separate header (Michael Petlan) [1818835]
+- [tools] perf auxtrace: Add missing 'struct perf_sample' forward declaration (Michael Petlan) [1818835]
+- [tools] perf sched: Add missing event.h include directive (Michael Petlan) [1818835]
+- [tools] perf annotate: Add missing machine.h include directive (Michael Petlan) [1818835]
+- [tools] perf hist: Add missing 'struct branch_stack' forward declaration (Michael Petlan) [1818835]
+- [tools] perf python: Remove debug.h (Michael Petlan) [1818835]
+- [tools] perf callchain: Remove needless event.h include (Michael Petlan) [1818835]
+- [tools] perf stat: Move perf_stat_synthesize_config() to event.h (Michael Petlan) [1818835]
+- [tools] perf event: Move perf_event__synthesize* to event.h (Michael Petlan) [1818835]
+- [tools] perf env: Remove needless cpumap.h header (Michael Petlan) [1818835]
+- [tools] perf symbols: Add missing dso.h header (Michael Petlan) [1818835]
+- [tools] perf probe: Add missing build-id.h header (Michael Petlan) [1818835]
+- [tools] perf tools: Remove util.h from where it is not needed (Michael Petlan) [1818835]
+- [tools] perf tools: Remove debug.h from places where it is not needed (Michael Petlan) [1818835]
+- [tools] perf debug: No need to include ui/util.h (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless builtin.h include directives (Michael Petlan) [1818835]
+- [tools] perf tools: Add PMU event JSON files for ARM Cortex-A76 and, Neoverse N1 (Michael Petlan) [1818835]
+- [tools] libperf: Adopt perf_cpu_map__max() function (Michael Petlan) [1818835]
+- [tools] libperf: Add missing event.h file to install rule (Michael Petlan) [1818835]
+- [tools] perf tests: Add libperf automated test for 'make -C tools/perf build-test' (Michael Petlan) [1818835]
+- [tools] perf python: Add missing python/perf.so dependency for libperf (Michael Petlan) [1818835]
+- [tools] perf build: Ignore intentional differences for the x86 insn decoder (Michael Petlan) [1818835]
+- [tools] perf intel-pt: Use shared x86 insn decoder (Michael Petlan) [1818835]
+- [tools] objtool: Move x86 insn decoder to a common location (Michael Petlan) [1818835]
+- [tools] perf intel-pt: Remove inat.c from build dependency list (Michael Petlan) [1818835]
+- [tools] perf: Update .gitignore file (Michael Petlan) [1818835]
+- [tools] perf metricgroup: Support multiple events for metricgroup (Michael Petlan) [1818835]
+- [tools] perf metricgroup: Scale the metric result (Michael Petlan) [1818835]
+- [tools] perf pmu: Change convert_scale from static to global (Michael Petlan) [1818835]
+- [tools] perf symbols: Move mem_info and branch_info out of symbol.h (Michael Petlan) [1818835]
+- [tools] perf auxtrace: Uninline functions that touch perf_session (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless evlist.h include directives (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless evlist.h include directives (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless thread_map.h include directives (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless thread.h include directives (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless map.h include directives (Michael Petlan) [1818835]
+- [tools] perf probe: No need for symbol.h, symbol_conf is enough (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless sort.h include directives (Michael Petlan) [1818835]
+- [tools] perf tools: Move 'struct events_stats' and prototypes to separate header (Michael Petlan) [1818835]
+- [tools] perf hist: Remove needless ui/progress.h from hist.h (Michael Petlan) [1818835]
+- [tools] perf dsos: Move the dsos struct and its methods to separate source files (Michael Petlan) [1818835]
+- [tools] perf symbols: Move symsrc prototypes to a separate header (Michael Petlan) [1818835]
+- [tools] perf symbols: Add missing linux/refcount.h to symbol.h (Michael Petlan) [1818835]
+- [tools] perf symbol: Move C++ demangle defines to the only file using it (Michael Petlan) [1818835]
+- [tools] perf dso: Adopt DSO related macros from symbol.h (Michael Petlan) [1818835]
+- [tools] libtraceevent: Change users plugin directory (Michael Petlan) [1818835]
+- [tools] libtraceevent: Remove tep_register_trace_clock() (Michael Petlan) [1818835]
+- [tools] libtraceevent, perf tools: Changes in tep_print_event_* APIs (Michael Petlan) [1818835]
+- [tools] perf event: Remove needless include directives from event.h (Michael Petlan) [1818835]
+- [tools] perf env: Remove env.h from other headers where just a fwd decl is needed (Michael Petlan) [1818835]
+- [tools] perf debug: Remove needless include directives from debug.h (Michael Petlan) [1818835]
+- [tools] perf tools: Remove debug.h from header files not needing it (Michael Petlan) [1818835]
+- [tools] perf tools: Remove perf.h from source files not needing it (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless perf.h include directive from headers (Michael Petlan) [1818835]
+- [tools] perf time-utils: Adopt rdclock() from perf.h (Michael Petlan) [1818835]
+- [tools] perf tools: Move everything related to sys_perf_event_open() to perf-sys.h (Michael Petlan) [1818835]
+- [tools] perf header: Move CPUINFO_PROC to the only file where it is used (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless libtraceevent include directives (Michael Petlan) [1818835]
+- [tools] libperf: Warn when exceeding MAX_NR_CPUS in cpumap (Michael Petlan) [1818835]
+- [tools] perf c2c: Display proper cpu count in nodes column (Michael Petlan) [1818835]
+- [tools] tools lib traceevent: Remove unneeded qsort and uses memmove instead (Michael Petlan) [1818835]
+- [tools] tools lib traceevent: Do not free tep->cmdlines in add_new_comm() on failure (Michael Petlan) [1818835]
+- [tools] perf evlist: Use unshare(CLONE_FS) in sb threads to let setns(CLONE_NEWNS) work (Michael Petlan) [1818835]
+- [tools] libperf: Move 'enum perf_user_event_type' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Rename the PERF_RECORD_ structs to have a "perf" prefix (Michael Petlan) [1818835]
+- [tools] libperf: Add 'union perf_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_COMPRESSED 'struct compressed_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_HEADER_FEATURE 'struct feature_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_TIME_CONV 'struct time_conv_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_STAT_ROUND 'struct stat_round_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_STAT 'struct stat_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_STAT_CONFIG 'struct stat_config_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_THREAD_MAP 'struct thread_map_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_SWITCH 'struct context_switch_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_ITRACE_START 'struct itrace_start_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_AUX 'struct aux_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_AUXTRACE_ERROR 'struct auxtrace_error_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_AUXTRACE 'struct auxtrace_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_AUXTRACE_INFO 'struct auxtrace_info_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_ID_INDEX 'struct id_index_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_HEADER_BUILD_ID 'struct build_id_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_HEADER_TRACING_DATA 'struct tracing_data_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_HEADER_EVENT_TYPE 'struct event_type_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_EVENT_UPDATE 'struct event_update_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_CPU_MAP 'struct cpu_map_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_HEADER_ATTR 'struct attr_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] perf top: Fix event group with more than two events (Michael Petlan) [1818835]
+- [tools] perf top: Decay all events in the evlist (Michael Petlan) [1818835]
+- [tools] perf clang: Delete needless util-cxx.h header (Michael Petlan) [1818835]
+- [tools] perf evlist: Remove needless util.h from evlist.h (Michael Petlan) [1818835]
+- [tools] perf tools: Remove needless util.h include from builtin.h (Michael Petlan) [1818835]
+- [tools] perf tools: Warn that perf_event_paranoid can restrict kernel symbols (Michael Petlan) [1818835]
+- [tools] perf symbols: Use CAP_SYSLOG with kptr_restrict checks (Michael Petlan) [1818835]
+- [tools] perf evsel: Kernel profiling is disallowed only when perf_event_paranoid > 1 (Michael Petlan) [1818835]
+- [tools] perf tools: Use CAP_SYS_ADMIN with perf_event_paranoid checks (Michael Petlan) [1818835]
+- [tools] perf event: Check ref_reloc_sym before using it (Michael Petlan) [1818835]
+- [tools] perf arch powerpc: Sync powerpc syscall.tbl (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_missing_features::bpf_event to ::bpf (Michael Petlan) [1818835]
+- [tools] perf tool: Rename perf_tool::bpf_event to bpf (Michael Petlan) [1818835]
+- [tools] perf tools: Rename perf_event::bpf_event to perf_event::bpf (Michael Petlan) [1818835]
+- [tools] perf tools: Rename perf_event::ksymbol_event to perf_event::ksymbol (Michael Petlan) [1818835]
+- [tools] libperf: Rename the PERF_RECORD_ structs to have a "perf" suffix (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_SAMPLE 'struct sample_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_BPF_EVENT 'struct bpf_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_KSYMBOL 'struct ksymbol_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_THROTTLE 'struct throttle_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_READ 'struct read_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_LOST_SAMPLES 'struct lost_samples_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_LOST 'struct lost_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_FORK 'struct fork_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_NAMESPACES 'struct namespaces_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_COMM 'struct comm_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_MMAP2 'struct mmap2_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] libperf: Add PERF_RECORD_MMAP 'struct mmap_event' to perf/event.h (Michael Petlan) [1818835]
+- [tools] perf script: Fix memory leaks in list_scripts() (Michael Petlan) [1818835]
+- [tools] perf report: Fix --ns time sort key output (Michael Petlan) [1818835]
+- [tools] perf report: Use timestamp__scnprintf_nsec() for time sort key (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Reduce perf_event_output() boilerplate (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Introduce helper to get the scratch space (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Postpone tmp map lookup to after pid_filter (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Rename augmented_filename to augmented_arg (Michael Petlan) [1818835]
+- [tools] perf trace beauty ioctl: Fix off-by-one error in cmd->string table (Michael Petlan) [1818835]
+- [tools] perf tests: Fixes hang in zstd compression test by changing the source of random data (Michael Petlan) [1818835]
+- [tools] perf sort: Remove needless headers from sort.h, provide fwd struct decls (Michael Petlan) [1818835]
+- [tools] perf srcline: Add missing srcline.h header to files needing its defs (Michael Petlan) [1818835]
+- [tools] perf cacheline: Move cacheline related routines to separate files (Michael Petlan) [1818835]
+- [tools] perf record: Move record_opts and other record decls out of perf.h (Michael Petlan) [1818835]
+- [tools] perf stat: Remove needless headers from stat.h (Michael Petlan) [1818835]
+- [tools] perf cpumap: No need to include perf.h, ditch it (Michael Petlan) [1818835]
+- [tools] libperf: Fix alignment trap with xyarray contents in 'perf stat' (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_thread_map__nr/perf_thread_map__pid functions (Michael Petlan) [1818835]
+- [tools] perf cpumap: Remove needless includes from cpumap.h (Michael Petlan) [1818835]
+- [tools] perf evsel: Switch to libperf's cpumap.h (Michael Petlan) [1818835]
+- [tools] perf x86 kvm-stat: Add missing string.h header (Michael Petlan) [1818835]
+- [tools] perf evsel: util/evsel.h needs stdio.h as it uses FILE (Michael Petlan) [1818835]
+- [tools] perf evsel: Remove needless stddef.h from util/evsel.h (Michael Petlan) [1818835]
+- [tools] perf evsel: Remove needless counts.h header from util/evsel.h (Michael Petlan) [1818835]
+- [tools] perf evsel: Add missing perf/evsel.h header in util/evsel.h (Michael Petlan) [1818835]
+- [tools] perf scripting python: Add missing counts.h header (Michael Petlan) [1818835]
+- [tools] perf stat: Add missing counts.h (Michael Petlan) [1818835]
+- [tools] perf tests: Add missing counts.h (Michael Petlan) [1818835]
+- [tools] perf script: Add missing counts.h (Michael Petlan) [1818835]
+- [tools] perf evlist: Add missing xyarray.h header (Michael Petlan) [1818835]
+- [tools] perf bpf: Add missing xyarray.h header (Michael Petlan) [1818835]
+- [tools] perf counts: Add missing headers needed for types used (Michael Petlan) [1818835]
+- [tools] perf evsel: Move xyarray.h from evsel.c to evsel.h to reduce include dep tree (Michael Petlan) [1818835]
+- [tools] perf metricgroup: Remove needless includes from metricgroup.h (Michael Petlan) [1818835]
+- [tools] perf kvm s390: Add missing string.h header (Michael Petlan) [1818835]
+- [tools] perf arm64: Add missing debug.h header (Michael Petlan) [1818835]
+- [tools] libperf: Move perf's cpu_map__idx() to perf_cpu_map__idx() (Michael Petlan) [1818835]
+- [tools] libperf: Move perf's cpu_map__empty() to perf_cpu_map__empty() (Michael Petlan) [1818835]
+- [tools] perf tools: Use perf_cpu_map__nr instead of cpu_map__nr (Michael Petlan) [1818835]
+- [tools] tools headers: Add missing perf_event.h include (Michael Petlan) [1818835]
+- [tools] libperf: Fix arch include paths (Michael Petlan) [1818835]
+- [tools] tools headers: Fixup bitsperlong per arch includes (Michael Petlan) [1818835]
+- [tools] perf top: Show info message while collecting samples (Michael Petlan) [1818835]
+- [tools] perf ui browser: Allow specifying message to show when no samples are available to display (Michael Petlan) [1818835]
+- [tools] perf ui: Introduce non-interactive ui__info_window() function (Michael Petlan) [1818835]
+- [tools] perf ui: Make 'exit_msg' optional in ui__question_window() (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Support sample flags 'insn' and 'insnlen' (Michael Petlan) [1818835]
+- [tools] perf report: Prefer DWARF callstacks to LBR ones when captured both (Michael Petlan) [1818835]
+- [tools] perf report: Dump LBR callstack data by -D jointly with thread stack (Michael Petlan) [1818835]
+- [tools] perf record: Enable LBR callstack capture jointly with thread stack (Michael Petlan) [1818835]
+- [tools] tools lib traceevent: Fix "robust" test of do_generate_dynamic_list_file (Michael Petlan) [1818835]
+- [tools] perf evsel: Add comment for 'idx' member in 'struct perf_sample_id (Michael Petlan) [1818835]
+- [tools] tools headers: Synchronize linux/bits.h with the kernel sources (Michael Petlan) [1818835]
+- [tools] tools headers: Grab copy of linux/const.h, needed by linux/bits.h (Michael Petlan) [1818835]
+- [tools] perf tools: tools/include should come before tools/uapi/include (Michael Petlan) [1818835]
+- [tools] tools headers: Add limits.h to access __WORDSIZE (Michael Petlan) [1818835]
+- [tools] perf unwind: Remove unnecessary test (Michael Petlan) [1818835]
+- [tools] perf unwind: Fix libunwind when tid != pid (Michael Petlan) [1818835]
+- [tools] perf map: Use zalloc for map_groups (Michael Petlan) [1818835]
+- [tools] perf report: Add --switch-on/--switch-off events (Michael Petlan) [1818835]
+- [tools] perf top: Add --switch-on/--switch-off events (Michael Petlan) [1818835]
+- [tools] perf trace: Add --switch-on/--switch-off events (Michael Petlan) [1818835]
+- [tools] perf evswitch: Add hint when not finding specified on/off events (Michael Petlan) [1818835]
+- [tools] perf evswitch: Move enoent error message printing to separate function (Michael Petlan) [1818835]
+- [tools] perf evswitch: Introduce init() method to set the on/off evsels from the command line (Michael Petlan) [1818835]
+- [tools] perf evswitch: Introduce OPTS_EVSWITCH() for cmd line processing (Michael Petlan) [1818835]
+- [tools] perf evswitch: Add the names of on/off events (Michael Petlan) [1818835]
+- [tools] perf evswitch: Move switch logic to use in other tools (Michael Petlan) [1818835]
+- [tools] perf evswitch: Move struct to a separate header to use in other tools (Michael Petlan) [1818835]
+- [tools] perf script: Allow specifying event to switch off processing of other events (Michael Petlan) [1818835]
+- [tools] perf script: Allow showing the --switch-on event (Michael Petlan) [1818835]
+- [tools] perf script: Allow specifying event to switch on processing of other events (Michael Petlan) [1818835]
+- [tools] perf vendor events intel: Add Tremontx event file v1.02 (Michael Petlan) [1818835]
+- [tools] perf ui: No need to set ui_browser to 1 twice (Michael Petlan) [1818835]
+- [tools] perf record: Support aarch64 random socket_id assignment (Michael Petlan) [1818835]
+- [tools] perf.data documentation: Clarify HEADER_SAMPLE_TOPOLOGY format (Michael Petlan) [1818835]
+- [tools] perf evsel: Provide meaningful warning when trying to use 'aux_output' on older kernels (Michael Petlan) [1818835]
+- [tools] perf intel-pt: Add brief documentation for PEBS via Intel PT (Michael Petlan) [1818835]
+- [tools] perf tools: Add aux-output config term (Michael Petlan) [1818835]
+- [tools] perf intel-pt: Process options for PEBS event synthesis (Michael Petlan) [1818835]
+- [tools] perf tools: Add itrace option 'o' to synthesize aux-output events (Michael Petlan) [1818835]
+- [tools] perf tools: Add aux_output attribute flag (Michael Petlan) [1818835]
+- [tools] perf record: Add an option to take an AUX snapshot on exit (Michael Petlan) [1818835]
+- [tools] perf ftrace: Improve error message about capability to use ftrace (Michael Petlan) [1818835]
+- [tools] perf ftrace: Use CAP_SYS_ADMIN instead of euid==0 (Michael Petlan) [1818835]
+- [tools] perf tools: Add CAP_SYSLOG define for older systems (Michael Petlan) [1818835]
+- [tools] perf tools: Add NO_LIBCAP=1 to the minimal build test (Michael Petlan) [1818835]
+- [tools] perf tools: Add helpers to use capabilities if present (Michael Petlan) [1818835]
+- [tools] tools build: Add capability-related feature detection (Michael Petlan) [1818835]
+- [tools] perf top: Collapse and resort all evsels in a group (Michael Petlan) [1818835]
+- [tools] perf hist: Remove dummy entries when finding real ones (Michael Petlan) [1818835]
+- [tools] perf trace: Fix segmentation fault when access syscall info on arm64 (Michael Petlan) [1818835]
+- [tools] perf hists: Do not link a pair if already linked (Michael Petlan) [1818835]
+- [tools] perf top: Set display thread COMM to help with debugging (Michael Petlan) [1818835]
+- [tools] perf vendor events intel: Add Icelake V1.00 event file (Michael Petlan) [1818835]
+- [tools] perf tools: Fix paths in include statements (Michael Petlan) [1818835]
+- [tools] perf test vfs_getname: Disable ~/.perfconfig to get default output (Michael Petlan) [1818835]
+- [tools] perf config: Document the PERF_CONFIG environment variable (Michael Petlan) [1818835]
+- [tools] perf config: Honour $PERF_CONFIG env var to specify alternate .perfconfig (Michael Petlan) [1818835]
+- [tools] perf session: Avoid infinite loop when seeing invalid header.size (Michael Petlan) [1818835]
+- [tools] libperf: Initial documentation (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evsel__enable/disable test (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__enable/disable test (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evsel tests (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist test (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_thread_map test (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_cpu_map test (Michael Petlan) [1818835]
+- [tools] libperf: Add tests support (Michael Petlan) [1818835]
+- [tools] libperf: Add install targets (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evsel__attr() function (Michael Petlan) [1818835]
+- [tools] libperf: Adopt perf_evlist__enable()/disable() functions from perf (Michael Petlan) [1818835]
+- [tools] libperf: Adopt simplified perf_evlist__open()/close() functions from tools/perf (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evsel__cpus()/threads() functions (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_cpu_map__for_each_cpu() macro (Michael Petlan) [1818835]
+- [tools] libperf: Adopt perf_evsel__enable()/disable()/apply_filter() functions (Michael Petlan) [1818835]
+- [tools] libperf: Adopt perf_evsel__read() function from tools/perf (Michael Petlan) [1818835]
+- [tools] libperf: Adopt simplified perf_evsel__close() function from tools/perf (Michael Petlan) [1818835]
+- [tools] libperf: Adopt simplified perf_evsel__open() function from tools/perf (Michael Petlan) [1818835]
+- [tools] libperf: Adopt perf_evsel__alloc_fd() function from tools/perf (Michael Petlan) [1818835]
+- [tools] libperf: Adopt the readn()/writen() functions from tools/perf (Michael Petlan) [1818835]
+- [tools] libperf: Move nr_members from perf's evsel to libperf's perf_evsel (Michael Petlan) [1818835]
+- [tools] libperf: Move fd array from perf's evsel to lobperf's perf_evsel class (Michael Petlan) [1818835]
+- [tools] libperf: Adopt xyarray class from perf (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__set_maps() function (Michael Petlan) [1818835]
+- [tools] libperf: Add threads to struct perf_evlist (Michael Petlan) [1818835]
+- [tools] libperf: Add cpus to struct perf_evlist (Michael Petlan) [1818835]
+- [tools] libperf: Add has_user_cpus to struct perf_evlist (Michael Petlan) [1818835]
+- [tools] libperf: Add threads to struct perf_evsel (Michael Petlan) [1818835]
+- [tools] libperf: Add own_cpus to struct perf_evsel (Michael Petlan) [1818835]
+- [tools] libperf: Add cpus to struct perf_evsel (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evsel__delete() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__delete() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__for_each_evsel() iterator (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evsel__new() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__new() function (Michael Petlan) [1818835]
+- [tools] libperf: Move zalloc.o into libperf (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_cpu_map__new()/perf_cpu_map__read() functions (Michael Petlan) [1818835]
+- [tools] libperf: Move perf_event_attr field from perf's evsel to libperf's perf_evsel (Michael Petlan) [1818835]
+- [tools] libperf: Add nr_entries to struct perf_evlist (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__remove() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__add() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist__init() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evsel__init function (Michael Petlan) [1818835]
+- [tools] libperf: Include perf_evlist in evlist object (Michael Petlan) [1818835]
+- [tools] libperf: Include perf_evsel in evsel object (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_evlist and perf_evsel structs (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_thread_map__get()/perf_thread_map__put() (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_thread_map__new_dummy() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_thread_map struct (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_cpu_map__get()/perf_cpu_map__put() (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_cpu_map__dummy_new() function (Michael Petlan) [1818835]
+- [tools] libperf: Add perf_cpu_map struct (Michael Petlan) [1818835]
+- [tools] libperf: Add debug output support (Michael Petlan) [1818835]
+- [tools] libperf: Add perf/core.h header (Michael Petlan) [1818835]
+- [tools] libperf: Add libperf to the python.so build (Michael Petlan) [1818835]
+- [tools] libperf: Add build version support (Michael Petlan) [1818835]
+- [tools] libperf: Make libperf.a part of the perf build (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__disable() to evlist__disable() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__enable() to evlist__enable() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__close() to evlist__close() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__open() to evlist__open() (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_evsel__cpus() to evsel__cpus() (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_evsel__apply_filter() to evsel__apply_filter() (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_evsel__disable() to evsel__disable() (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_evsel__enable() to evsel__enable() (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_evsel__open() to evsel__open() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__remove() to evlist__remove() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__add() to evlist__add() (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_evsel__new() to evsel__new() (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_evsel__delete() to evsel__delete() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__delete() to evlist__delete() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__new() to evlist__new() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename perf_evlist__init() to evlist__init() (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename perf_evsel__init() to evsel__init() (Michael Petlan) [1818835]
+- [tools] perf evlist: Rename struct perf_evlist to struct evlist (Michael Petlan) [1818835]
+- [tools] perf evsel: Rename struct perf_evsel to struct evsel (Michael Petlan) [1818835]
+- [tools] perf tools: Rename struct thread_map to struct perf_thread_map (Michael Petlan) [1818835]
+- [tools] perf cpu_map: Rename struct cpu_map to struct perf_cpu_map (Michael Petlan) [1818835]
+- [tools] perf stat: Move loaded out of struct perf_counts_values (Michael Petlan) [1818835]
+- [tools] perf trace: Add "sendfile64" alias to the "sendfile" syscall (Michael Petlan) [1818835]
+- [tools] perf trace: Reuse BPF augmenters from syscalls with similar args signature (Michael Petlan) [1818835]
+- [tools] perf trace: Preallocate the syscall table (Michael Petlan) [1818835]
+- [tools] perf trace: Mark syscall ids that are not allocated to avoid unnecessary error messages (Michael Petlan) [1818835]
+- [tools] perf trace: Forward error codes when trying to read syscall info (Michael Petlan) [1818835]
+- [tools] perf trace beauty: Add BPF augmenter for the 'rename' syscall (Michael Petlan) [1818835]
+- [tools] perf trace beauty: Beautify bind's sockaddr arg (Michael Petlan) [1818835]
+- [tools] perf trace beauty: Beautify 'sendto's sockaddr arg (Michael Petlan) [1818835]
+- [tools] perf trace beauty: Do not try to use the fd->pathname beautifier for bind/connect fd arg (Michael Petlan) [1818835]
+- [tools] perf trace beauty: Disable fd->pathname when close() not enabled (Michael Petlan) [1818835]
+- [tools] perf trace beauty: Make connect's addrlen be printed as an int, not hex (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Augment sockaddr arg in 'connect' (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Rename augmented_args_filename to augmented_args_payload (Michael Petlan) [1818835]
+- [tools] perf trace: Look for default name for entries in the syscalls prog array (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Support copying two string syscall args (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Switch to using BPF_MAP_TYPE_PROG_ARRAY (Michael Petlan) [1818835]
+- [tools] perf augmented_raw_syscalls: Add handler for "openat" (Michael Petlan) [1818835]
+- [tools] perf trace: Handle raw_syscalls:sys_enter just like the BPF_OUTPUT augmented event (Michael Petlan) [1818835]
+- [tools] perf trace: Put the per-syscall entry/exit prog_array BPF map infrastructure in place (Michael Petlan) [1818835]
+- [tools] perf trace: Allow specifying the bpf prog to augment specific syscalls (Michael Petlan) [1818835]
+- [tools] perf trace: Add BPF handler for unaugmented syscalls (Michael Petlan) [1818835]
+- [tools] perf trace: Order -e syscalls table (Michael Petlan) [1818835]
+- [tools] perf trace: Look up maps just on the __augmented_syscalls__ BPF object (Michael Petlan) [1818835]
+- [tools] perf trace: Add pointer to BPF object containing __augmented_syscalls__ (Michael Petlan) [1818835]
+- [tools] perf evsel: Store backpointer to attached bpf_object (Michael Petlan) [1818835]
+- [tools] perf bpf: Do not attach a BPF prog to a tracepoint if its name starts with ! (Michael Petlan) [1818835]
+- [tools] perf include bpf: Add bpf_tail_call() prototype (Michael Petlan) [1818835]
+- [tools] perf: cs-etm: Optimize option setup for CPU-wide sessions (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Remove duplicate GENMASK() define, use linux/bits.h instead (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Add support for CPU-wide trace scenarios (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Add notion of time to decoding code (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Linking PE contextID with perf thread mechanic (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Add support for multiple traceID queues (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Use traceID aware memory callback API (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Move tid/pid to traceid_queue (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Move thread to traceid_queue (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Get rid of unused cpu in struct cs_etm_queue (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Introduce the concept of trace ID queues (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Fix indentation in function cs_etm__process_decoder_queue() (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Move packet queue out of decoder structure (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Refactor error path in cs_etm_decoder__new() (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Add handling of switch-CPU-wide events (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Add handling of itrace start events (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Configure SWITCH_EVENTS in CPU-wide mode (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Configure timestamp generation in CPU-wide mode (Michael Petlan) [1818835]
+- [tools] perf cs-etm: Configure contextID tracing in CPU-wide mode (Michael Petlan) [1818835]
+- [kernel] perf/core: Fix missing static inline on perf_cgroup_switch() (Michael Petlan) [1818835]
+- [kernel] perf/core: Consistently fail fork on allocation failures (Michael Petlan) [1818835]
+- [kernel] perf/core: Disallow uncore-cgroup events (Michael Petlan) [1818835]
+- [include] perf/headers: Fix spelling s/EACCESS/EACCES/, s/privilidge/privilege/ (Michael Petlan) [1818835]
+- [x86] perf/x86/uncore: Fix event group support (Michael Petlan) [1818835]
+- [kernel] perf/core: Start rejecting the syscall with attr.__reserved_2 set (Michael Petlan) [1818835]
+- [kernel] perf/aux: Fix tracking of auxiliary trace buffer allocation (Michael Petlan) [1818835]
+- [x86] perf/x86/intel/pt: Fix base for single entry topa (Michael Petlan) [1818835]
+- [x86] perf/x86/cstate: Add Tiger Lake CPU support (Michael Petlan) [1818835]
+- [x86] perf/x86/msr: Add Tiger Lake CPU support (Michael Petlan) [1818835]
+- [x86] perf/x86/intel: Add Tiger Lake CPU support (Michael Petlan) [1818835]
+- [x86] perf/x86/cstate: Update C-state counters for Ice Lake (Michael Petlan) [1818835]
+- [x86] perf/x86/msr: Add new CPU model numbers for Ice Lake (Michael Petlan) [1818835]
+- [kernel] perf/core: Fix corner case in perf_rotate_context() (Michael Petlan) [1818835]
+- [kernel] perf/core: Rework memory accounting in perf_mmap() (Michael Petlan) [1818835]
+- [kernel] perf/core: Fix several typos in comments (Michael Petlan) [1818835]
+- [x86] perf/x86: Make more stuff static (Michael Petlan) [1818835]
+- [x86] perf/x86/intel/pt: Get rid of reverse lookup table for ToPA (Michael Petlan) [1818835]
+- [x86] perf/x86/intel/pt: Free up space in a ToPA descriptor (Michael Petlan) [1818835]
+- [x86] perf/x86/intel/pt: Split ToPA metadata and page layout (Michael Petlan) [1818835]
+- [x86] perf/x86/intel/pt: Use pointer arithmetics instead in ToPA entry calculation (Michael Petlan) [1818835]
+- [x86] perf/x86/intel/pt: Use helpers to obtain ToPA entry size (Michael Petlan) [1818835]
+- [x86] perf/x86/intel/pt: Clean up ToPA allocation path (Michael Petlan) [1818835]
+
+* Wed Apr 22 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.11.el8]
+- [scsi] scsi: bnx2fc: Update the driver version to 2.12.13 (Nilesh Javali) [1792115]
+- [scsi] scsi: bnx2fc: fix boolreturn.cocci warnings (Nilesh Javali) [1792115]
+- [scsi] scsi: bnx2fc: Fix SCSI command completion after cleanup is posted (Nilesh Javali) [1792115]
+- [scsi] scsi: bnx2fc: Process the RQE with CQE in interrupt context (Nilesh Javali) [1792115]
+- [scsi] scsi: bnx2fc: timeout calculation invalid for bnx2fc_eh_abort() (Nilesh Javali) [1792115]
+- [powerpc] powerpc/smp: Use nid as fallback for package_id (Steve Best) [1764530]
+- [kernel] audit: Add __rcu annotation to RCU pointer (Richard Guy Briggs) [1822776]
+- [infiniband] i40iw: Report correct firmware version (Stefan Assmann) [1726909]
+- [x86] x86/mce/amd: Add PPIN support for AMD MCE (Wei Huang) [1790521]
+- [kernel] locking/percpu-rwsem: Fix a task_struct refcount (Waiman Long) [1810257]
+- [kernel] locking/percpu-rwsem: Add might_sleep() for writer locking (Waiman Long) [1810257]
+- [kernel] locking/percpu-rwsem: Fold __percpu_up_read() (Waiman Long) [1810257]
+- [kernel] locking/rwsem: Remove RWSEM_OWNER_UNKNOWN (Waiman Long) [1810257]
+- [kernel] locking/percpu-rwsem: Remove the embedded rwsem (Waiman Long) [1810257]
+- [kernel] locking/percpu-rwsem: Extract __percpu_down_read_trylock() (Waiman Long) [1810257]
+- [kernel] locking/percpu-rwsem: Move __this_cpu_inc() into the slowpath (Waiman Long) [1810257]
+- [kernel] locking/percpu-rwsem: Convert to bool (Waiman Long) [1810257]
+- [kernel] locking/percpu-rwsem, lockdep: Make percpu-rwsem use its own lockdep_map (Waiman Long) [1810257]
+- [kernel] locking/lockdep: Remove unused @nested argument from lock_release() (Waiman Long) [1810257]
+- [kernel] sched/core: Convert get_task_struct() to return the task (Waiman Long) [1810257]
+- [kernel] locking/lockdep, cpu/hotplug: Annotate AP thread (Waiman Long) [1810257]
+- [tty] tty/ldsem: Decrement wait_readers on timeouted down_read() (Waiman Long) [1810257]
+- [tty] tty/ldsem: Convert to regular lockdep annotations (Waiman Long) [1810257]
+- [tty] tty/ldsem: Wake up readers after timed out down_write() (Waiman Long) [1810257]
+- [tty] atomic/tty: Fix up atomic abuse in ldsem (Waiman Long) [1810257]
+- [kernel] cpu/hotplug: Remove skip_onerr field from cpuhp_step structure (Waiman Long) [1810257]
+- [watchdog] watchdog: hpwdt: drop warning after calling watchdog_init_timeout (Joseph Szczypek) [1790669]
+- [mm] powerpc/pkeys: Fix handling of pkey state across fork() (Steve Best) [1823744]
+- [irqchip] irqchip/gic-v3: Workaround Cavium erratum 38539 when reading GICD_TYPER2 (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Avoid 64bit division for the sake of 32bit ARM (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Rename VPENDBASER/VPROPBASER accessors (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Remove superfluous WARN_ON (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Drop 'tmp' in inherit_vpe_l1_table_from_rd() (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Ensure L2 vPE table is allocated at RD level (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Set vpe_l1_base for all redistributors (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Fix programming of GICR_VPROPBASER_4_1_SIZE (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Reference to its_invall_cmd descriptor when building INVALL (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Only provision redistributors that are enabled in ACPI (Mark Salter) [1818174]
+- [arm64] arm64: acpi: fix DAIF manipulation with pNMI (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Allow direct invalidation of VLPIs (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Suppress per-VLPI doorbell (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Add VPE INVALL callback (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Add VPE eviction callback (Mark Salter) [1818174]
+- [include] irqchip/gic-v4.1: Add VPE residency callback (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Add mask/unmask doorbell callbacks (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Plumb skeletal VPE irqchip (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Implement the v4.1 flavour of VMOVP (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Don't use the VPE proxy if RVPEID is set (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: Implement the v4.1 flavour of VMAPP (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4.1: VPE table (aka GICR_VPROPBASER) allocation (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Add GICv4.1 VPEID size discovery (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Detect GICv4.1 supporting RVPEID (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Fix get_vlpi_map() breakage with doorbells (Mark Salter) [1818174]
+- [arm64] arm64: Kconfig: Remove CONFIG_ prefix from ARM64_PSEUDO_NMI section (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Make vlpi_lock a spinlock (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Lock VLPI map array before translating it (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Synchronise INT/CLEAR commands targetting a VLPI using VSYNC (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Synchronise INV command targetting a VLPI using VSYNC (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Add its_vlpi_map helpers (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Kill its->device_ids and use TYPER copy instead (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Kill its->ite_size and use TYPER copy instead (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Make is_v4 use a TYPER copy (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Allow LPI invalidation via the DirectLPI interface (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Factor out wait_for_syncr primitive (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Free collection mapping on device teardown (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Fix u64 to __le64 warnings (Mark Salter) [1818174]
+- [irqchip] irqchip: Remove redundant semicolon after while (Mark Salter) [1818174]
+- [virt] KVM: vgic-v4: Track the number of VLPIs per vcpu (Mark Salter) [1818174]
+- [virt] KVM: arm64: vgic-v4: Move the GICv4 residency flow to be driven by vcpu_load/put (Mark Salter) [1818174]
+- [arm64] arm64: add local_daif_inherit() (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Use the exact ITSList for VMOVP (Mark Salter) [1818174]
+- [arm64] arm64: Relax ICC_PMR_EL1 accesses when ICC_CTLR_EL1.PMHE is clear (Mark Salter) [1818174]
+- [arm64] arm64: Fix incorrect irqflag restore for priority masking for compat (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Fix GIC_LINE_NR accessor (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Fix LPI release for Multi-MSI devices (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Remove the redundant set_bit for lpi_map (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Add quirks for HIP06/07 invalid GICD_TYPER erratum 161010803 (Mark Salter) [1818174]
+- [irqchip] irqchip/gic: Skip DT quirks when evaluating IIDR-based quirks (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Warn about inconsistent implementations of extended ranges (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Add EPPI range support (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Dynamically allocate PPI partition descriptors (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Dynamically allocate PPI NMI refcounts (Mark Salter) [1818174]
+- [irqchip] irqchip/gic: Prepare for more than 16 PPIs (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Add ESPI range support (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Add INTID range and convertion primitives (Mark Salter) [1818174]
+- [irqchip] irqchip/gic: Rework gic_configure_irq to take the full ICFGR base (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v2m: Register the frame's PA instead of its VA in fwnode (Mark Salter) [1818174]
+- [irqchip] irqchip/gic: Register the distributor's PA instead of its VA in fwnode (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Register the ITS' PA instead of its VA in fwnode (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Register the distributor's PA instead of its VA in fwnode (Mark Salter) [1818174]
+- [arm64] arm64: kprobes: Recover pstate.D in single-step exception handler (Mark Salter) [1818174]
+- [arm64] arm64: Lower priority mask for GIC_PRIO_IRQON (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Free unused vpt_page when alloc vpe table fail (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Mark expected switch fall-through (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Fix misuse of GENMASK macro (Mark Salter) [1818174]
+- [arm64] arm64: fix kernel stack overflow in kdump capture kernel (Mark Salter) [1818174]
+- [arm64] arm64: irqflags: Introduce explicit debugging for IRQ priorities (Mark Salter) [1818174]
+- [arm64] arm64: Enable the support of pseudo-NMIs (Mark Salter) [1818174]
+- [arm64] arm64: Fix incorrect irqflag restore for priority masking (Mark Salter) [1818174]
+- [arm64] arm64: Fix interrupt tracing in the presence of NMIs (Mark Salter) [1818174]
+- [arm64] arm64: irqflags: Add condition flags to inline asm clobber list (Mark Salter) [1818174]
+- [arm64] arm64: irqflags: Pass flags as readonly operand to restore instruction (Mark Salter) [1818174]
+- [arm64] arm64: Do not enable IRQs for ct_user_exit (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Fix command queue pointer comparison bug (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Make free_lpi_range a little cheaper (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Drop redundant initialization in mk_lpi_range (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Move allocation outside mutex (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Fix typo in a comment in its_msi_prepare() (Mark Salter) [1818174]
+- [include] irqchip/gic-v3-its: fix some definitions of inner cacheability attributes (Mark Salter) [1818174]
+- [arm64] arm64: fix wrong check of on_sdei_stack in nmi context (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Fix comparison logic in lpi_range_cmp (Mark Salter) [1818174]
+- [arm64] arm64: remove obsolete selection of MULTI_IRQ_HANDLER (Mark Salter) [1818174]
+- [irqchip] irqchip/gicv3-its: Use NUMA aware memory allocation for ITS tables (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table (Mark Salter) [1818174]
+- [arm64] arm64: irqflags: Fix clang build warnings (Mark Salter) [1818174]
+- [arm64] arm64: KVM/mm: Move SEA handling behind a single 'claim' interface (Mark Salter) [1818174]
+- [arm64] arm64: Skip irqflags tracing for NMI in IRQs disabled context (Mark Salter) [1818174]
+- [arm64] arm64: Skip preemption when exiting an NMI (Mark Salter) [1818174]
+- [arm64] arm64: Handle serror in NMI context (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Allow interrupts to be set as pseudo-NMI (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Handle pseudo-NMIs (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Detect if GIC can support pseudo-NMIs (Mark Salter) [1818174]
+- [arm64] arm64: gic-v3: Implement arch support for priority masking (Mark Salter) [1818174]
+- [irqchip] arm64: Switch to PMR masking when starting CPUs (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Factor group0 detection into functions (Mark Salter) [1818174]
+- [arm64] arm64: alternative: Apply alternatives early in boot process (Mark Salter) [1818174]
+- [arm64] arm64: alternative: Allow alternative status checking per cpufeature (Mark Salter) [1818174]
+- [arm64] arm64: sysreg: Make mrs_s and msr_s macros work with Clang and LTO (Mark Salter) [1818174]
+- [arm64] arm64: daifflags: Include PMR in daifflags restore operations (Mark Salter) [1818174]
+- [arm64] arm64: irqflags: Use ICC_PMR_EL1 for interrupt masking (Mark Salter) [1818174]
+- [firmware] efi: Let architectures decide the flags that should be saved/restored (Mark Salter) [1818174]
+- [kvm] arm64: kvm: Unmask PMR before entering guest (Mark Salter) [1818174]
+- [mm] arm64: Unmask PMR before going idle (Mark Salter) [1818174]
+- [arm64] arm64: Make PMR part of task context (Mark Salter) [1818174]
+- [arm64] arm64: ptrace: Provide definitions for PMR values (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Switch to PMR masking before calling IRQ handler (Mark Salter) [1818174]
+- [arm64] arm64: cpufeature: Add cpufeature for IRQ priority masking (Mark Salter) [1818174]
+- [arm64] arm64: cpufeature: Set SYSREG_GIC_CPUIF as a boot system feature (Mark Salter) [1818174]
+- [arm64] arm64: Remove unused daif related functions/macros (Mark Salter) [1818174]
+- [arm64] arm64: Fix HCR.TGE status for NMI contexts (Mark Salter) [1818174]
+- [kernel] irqdesc: Add domain handler for NMIs (Mark Salter) [1818174]
+- [kernel] genirq: Update irq stats from NMI handlers (Mark Salter) [1818174]
+- [kernel] genirq: Provide NMI handlers (Mark Salter) [1818174]
+- [kernel] genirq: Provide NMI management for percpu_devid interrupts (Mark Salter) [1818174]
+- [kernel] genirq: Provide basic NMI management for interrupt lines (Mark Salter) [1818174]
+- [include] irqchip/gic-v3-its: Fix ITT_entry_size accessor (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Gracefully fail on LPI exhaustion (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Plug allocation race for devices sharing a DevID (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v4: Fix occasional VLPI drop (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-mbi: Fix uninitialized mbi_lock (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Add quirk for msm8996 broken registers (Mark Salter) [1818174]
+- [irqchip] irqchip/gic: Add support to device tree based quirks (Mark Salter) [1818174]
+- [arm64] arm64: capabilities: Batch cpu_enable callbacks (Mark Salter) [1818174]
+- [arm64] arm64: capabilities: Use linear array for detection and verification (Mark Salter) [1818174]
+- [arm64] arm64: capabilities: Optimize this_cpu_has_cap (Mark Salter) [1818174]
+- [arm64] arm64: capabilities: Speed up capability lookup (Mark Salter) [1818174]
+- [irqchip] irqchip: Convert to using pOFn instead of device_node.name (Mark Salter) [1818174]
+- [mm] arm64: Use daifflag_restore after bp_hardening (Mark Salter) [1818174]
+- [arm64] arm64: daifflags: Use irqflags functions for daifflags (Mark Salter) [1818174]
+- [include] irqchip/gic: Unify GIC priority definitions (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Remove acknowledge loop (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3: Allow interrupt to be configured as wake-up sources (Mark Salter) [1818174]
+- [irqchip] irqchip/gic-v3-its: Make its_lock a raw_spin_lock_t (Mark Salter) [1818174]
+- [irqchip] genirq/irqchip: Remove MULTI_IRQ_HANDLER as it's now obselete (Mark Salter) [1818174]
+- [arm64] arm64: Use the new GENERIC_IRQ_MULTI_HANDLER (Mark Salter) [1818174]
+- [irqchip] irqchip: Port the ARM IRQ drivers to GENERIC_IRQ_MULTI_HANDLER (Mark Salter) [1818174]
+- [arm64] arm64: sdei: Mark sdei stack helper functions as static (Mark Salter) [1818174]
+- [arm64] arm64: Add stack information to on_accessible_stack (Mark Salter) [1818174]
+- [x86] Reserve at most 64M of SWIOTLB memory for crashkernel (Kairui Song) [1812754]
+- [md] md/raid1: introduce wait_for_serialization (Nigel Croxon) [1788370]
+- [md] md/raid1: use bucket based mechanism for IO serialization (Nigel Croxon) [1788370]
+- [md] md: introduce a new struct for IO serialization (Nigel Croxon) [1788370]
+- [md] md: don't destroy serial_info_pool if serialize_policy is true (Nigel Croxon) [1788370]
+- [md] raid1: serialize the overlap write (Nigel Croxon) [1788370]
+- [md] md: reorgnize mddev_create/destroy_serial_pool (Nigel Croxon) [1788370]
+- [md] md: add serialize_policy sysfs node for raid1 (Nigel Croxon) [1788370]
+- [md] md: prepare for enable raid1 io serialization (Nigel Croxon) [1788370]
+- [md] md: fix a typo s/creat/create (Nigel Croxon) [1788370]
+- [md] md: rename wb stuffs (Nigel Croxon) [1788370]
+- [md] raid5: remove worker_cnt_per_group argument from alloc_thread_groups (Nigel Croxon) [1788370]
+- [lib] md/raid6: fix algorithm choice under larger PAGE_SIZE (Nigel Croxon) [1788370]
+- [lib] raid6/test: fix a compilation warning (Nigel Croxon) [1788370]
+- [md] md-bitmap: small cleanups (Nigel Croxon) [1788370]
+
+* Sat Apr 18 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.10.el8]
+- [firmware] efi: cper: print AER info of PCIe fatal error (Vladis Dronov) [1822595]
+- [init] redhat: Replace hardware.redhat.com link in Unsupported message (Prarit Bhargava) [1810301]
+- [pci] PCI: Mark AMD Navi14 GPU rev 0xc5 ATS as broken (Myron Stowe) [1820933]
+- [pci] PCI: Fix typos (Myron Stowe) [1820933]
+- [pci] PCI: Remove useless comments and tidy others (Myron Stowe) [1820933]
+- [pci] PCI: Remove unnecessary includes (Myron Stowe) [1820933]
+- [tools] tools: PCI: Fix fd leakage (Myron Stowe) [1820933]
+- [pci] PCI: Export pci_parse_request_of_pci_ranges() (Myron Stowe) [1820933]
+- [include] resource: Add a resource_list_first_type helper (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Restore EXPORT_SYMBOL_GPL() for pci_{enable, disable}_ats() (Myron Stowe) [1820933]
+- [include] PCI/ATS: Add PASID stubs (Myron Stowe) [1820933]
+- [pci] PCI: Unify ACS quirk desired vs provided checking (Myron Stowe) [1820933]
+- [pci] PCI: Make ACS quirk implementations more uniform (Myron Stowe) [1820933]
+- [pci] PCI: Apply Cavium ACS quirk to ThunderX2 and ThunderX3 (Myron Stowe) [1820933]
+- [pci] PCI/IOV: Serialize sysfs sriov_numvfs reads vs writes (Myron Stowe) [1820933]
+- [pci] PCI: Add DMA alias quirk for Intel VCA NTB (Myron Stowe) [1820933]
+- [pci] PCI: Fix Intel ACS quirk UPDCR register address (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Make pci_restore_pri_state(), pci_restore_pasid_state() private (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Remove unnecessary EXPORT_SYMBOL_GPL() (Myron Stowe) [1820933]
+- [include] PCI/ATS: Remove unused PRI and PASID stubs (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Consolidate ATS declarations in linux/pci-ats.h (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Cache PRI PRG Response PASID Required bit (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Use PF PASID for VFs (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Cache PASID Capability offset (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Cache PRI Capability offset (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Disable PF/VF ATS service independently (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Handle sharing of PF PASID Capability with all VFs (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Handle sharing of PF PRI Capability with all VFs (Myron Stowe) [1820933]
+- [pci] PCI/ATS: Move pci_prg_resp_pasid_required() to CONFIG_PCI_PRI (Myron Stowe) [1820933]
+- [iommu] iommu/vt-d: Select PCI_PRI for INTEL_IOMMU_SVM (Myron Stowe) [1820933]
+- [pci] PCI/switchtec: Read all 64 bits of part_event_bitmap (Myron Stowe) [1820933]
+- [pci] PCI: Do not use bus number zero from EA capability (Myron Stowe) [1820933]
+- [pci] PCI: Avoid double hpmemsize MMIO window assignment (Myron Stowe) [1820933]
+- [pci] PCI: Add "pci=hpmmiosize" and "pci=hpmmioprefsize" parameters (Myron Stowe) [1820933]
+- [pci] PCI: Add PCI_STD_NUM_BARS for the number of standard BARs (Myron Stowe) [1820933]
+- [pci] PCI: Fix missing bridge dma_ranges resource list cleanup (Myron Stowe) [1820933]
+- [pci] PCI: Protect pci_reassign_bridge_resources() against concurrent addition/removal (Myron Stowe) [1820933]
+- [pci] PCI/MSI: Fix incorrect MSI-X masking on resume (Myron Stowe) [1820933]
+- [pci] PCI/MSI: Move power state check out of pci_msi_supported() (Myron Stowe) [1820933]
+- [pci] PCI/MSI: Remove unused pci_irq_get_node() (Myron Stowe) [1820933]
+- [uapi] PCI: Add #defines for Enter Compliance, Transmit Margin (Myron Stowe) [1820933]
+- [pci] PCI: Allow building PCIe things without PCIEPORTBUS (Myron Stowe) [1820933]
+- [pci] PCI: Remove PCIe Kconfig dependencies on PCI (Myron Stowe) [1820933]
+- [pci] PCI/ASPM: Remove dependency on PCIEPORTBUS (Myron Stowe) [1820933]
+- [pci] PCI/PTM: Remove dependency on PCIEPORTBUS (Myron Stowe) [1820933]
+- [pci] PCI/PTM: Remove spurious "d" from granularity message (Myron Stowe) [1820933]
+- [pci] PCI: sysfs: Remove unused attribute groups (Myron Stowe) [1820933]
+- [x86] x86/PCI: Avoid AMD FCH XHCI USB PME# from D0 defect (Myron Stowe) [1820933]
+- [pci] PCI: Remove unused includes and superfluous struct declaration (Myron Stowe) [1820933]
+- [x86] x86/PCI: Replace deprecated EXTRA_CFLAGS with ccflags-y (Myron Stowe) [1820933]
+- [pci] x86/PCI: Correct SPDX comment style (Myron Stowe) [1820933]
+- [x86] x86/PCI: Add NumaChip SPDX GPL-2.0 to replace COPYING boilerplate (Myron Stowe) [1820933]
+- [pci] ACPI / hotplug / PCI: Allocate resources directly under the non-hotplug bridge (Myron Stowe) [1820933]
+- [pci] PCI: pciehp: Prevent deadlock on disconnect (Myron Stowe) [1820933]
+- [pci] PCI: pciehp: Do not disable interrupt twice on suspend (Myron Stowe) [1820933]
+- [pci] PCI: pciehp: Refactor infinite loop in pcie_poll_cmd() (Myron Stowe) [1820933]
+- [pci] PCI: pciehp: Fix indefinite wait on sysfs requests (Myron Stowe) [1820933]
+- [pci] PCI: pciehp: Avoid returning prematurely from sysfs requests (Myron Stowe) [1820933]
+- [pci] PCI: Warn if no host bridge NUMA node info (Myron Stowe) [1820933]
+- [pci] PCI/ASPM: Remove PCIEASPM_DEBUG Kconfig option and related code (Myron Stowe) [1820933]
+- [pci] PCI/ASPM: Add sysfs attributes for controlling ASPM link states (Myron Stowe) [1820933]
+- [pci] PCI/ASPM: Add pcie_aspm_get_link() (Myron Stowe) [1820933]
+- [pci] PCI/ASPM: Allow re-enabling Clock PM (Myron Stowe) [1820933]
+- [pci] PCI/ASPM: Add L1 PM substate support to pci_disable_link_state() (Myron Stowe) [1820933]
+- [pci] PCI/ASPM: Remove pcie_aspm_enabled() unnecessary locking (Myron Stowe) [1820933]
+- [pci] PCI/DPC: Add "pcie_ports=dpc-native" to allow DPC without AER control (Myron Stowe) [1820933]
+- [pci] PCI/AER: Fix kernel-doc warnings (Myron Stowe) [1820933]
+- [pci] PCI/AER: Use for_each_set_bit() to simplify code (Myron Stowe) [1820933]
+- [pci] PCI/AER: Add PoisonTLPBlocked to Uncorrectable error counters (Myron Stowe) [1820933]
+- [pci] PCI/AER: Save AER Capability for suspend/resume (Myron Stowe) [1820933]
+- [pci] PCI: Add ACS quirk for iProc PAXB (Myron Stowe) [1820933]
+- [cpufreq] cpufreq: intel_pstate: Simplify intel_pstate_cpu_init() (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: powernv: Fix frame-size-overflow in powernv_cpufreq_work_fn (Prarit Bhargava) [1823339]
+- [cpufreq] x86/devicetable: Move x86 specific macro out of generic code (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Use scnprintf() for avoiding potential buffer overflow (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: intel_pstate: Consolidate policy verification (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: powernv: Fix unsafe notifiers (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: powernv: Fix use-after-free (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: dt: Allow platform specific intermediate callbacks (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: add function to get the hardware max frequency (Prarit Bhargava) [1823339]
+- [kernel] sched/vtime: Prevent unstable evaluation of WARN(vtime->state) (Prarit Bhargava) [1823339]
+- [cpufreq] docs: cpufreq: fix a broken reference (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: annotate data races in pm_qos_*_value() (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Fix policy initialization for internal governor drivers (Prarit Bhargava) [1823339]
+- [documentation] Documentation: power: fix pm_qos_interface.rst format warning (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Make CPU latency QoS depend on CONFIG_CPU_IDLE (Prarit Bhargava) [1823339]
+- [documentation] Documentation: PM: QoS: Update to reflect previous code changes (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Update file information comments (Prarit Bhargava) [1823339]
+- [x86] x86: platform: iosf_mbi: Call cpu_latency_qos_*() instead of pm_qos_*() (Prarit Bhargava) [1823339]
+- [cpuidle] cpuidle: Call cpu_latency_qos_limit() instead of pm_qos_request() (Prarit Bhargava) [1823339]
+- [x86] x86: baytrail/cherrytrail: Rework and move P-Unit PMIC bus semaphore code (Prarit Bhargava) [1823339]
+- [sound] sound: Call cpu_latency_qos_*() instead of pm_qos_*() (Prarit Bhargava) [1823339]
+- [media] drivers: media: Call cpu_latency_qos_*() instead of pm_qos_*() (Prarit Bhargava) [1823339]
+- [wireless] drivers: net: Call cpu_latency_qos_*() instead of pm_qos_*() (Prarit Bhargava) [1823339]
+- [drm] drm/i915: Implement a better i945gm vblank irq vs. C-states workaround (Prarit Bhargava) [1823339]
+- [drm] drm: i915: Call cpu_latency_qos_*() instead of pm_qos_*() (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Drop PM_QOS_CPU_DMA_LATENCY and rename related functions (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Adjust pm_qos_request() signature and reorder pm_qos.h (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Simplify definitions of CPU latency QoS trace events (Prarit Bhargava) [1823339]
+- [tty] PM: QoS: Rename things related to the CPU latency QoS (Prarit Bhargava) [1823339]
+- [cpuidle] PM: QoS: Drop PM_QOS_CPU_DMA_LATENCY notifier chain (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Redefine struct pm_qos_request and drop struct pm_qos_object (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Clean up misc device file operations (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Drop iterations over global QoS classes (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Clean up pm_qos_read_value() and pm_qos_get/set_value() (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Clean up pm_qos_update_target() and pm_qos_update_flags() (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Drop the PM_QOS_SUM QoS type (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Drop pm_qos_update_request_timeout() (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Drop debugfs interface (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: ti-cpufreq: Add support for OPP_PLUS (Prarit Bhargava) [1823339]
+- [x86] x86/intel_pstate: Handle runtime turbo disablement/enablement in frequency invariance (Prarit Bhargava) [1823339]
+- [x86] x86, sched: Add support for frequency invariance on ATOM (Prarit Bhargava) [1823339]
+- [x86] x86, sched: Add support for frequency invariance on ATOM_GOLDMONT* (Prarit Bhargava) [1823339]
+- [x86] x86, sched: Add support for frequency invariance on XEON_PHI_KNL/KNM (Prarit Bhargava) [1823339]
+- [x86] x86, sched: Add support for frequency invariance on SKYLAKE_X (Prarit Bhargava) [1823339]
+- [x86] x86, sched: Add support for frequency invariance (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Avoid creating excessively large stack frames (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: loongson2_cpufreq: adjust cpufreq uses of LOONGSON_CHIPCFG (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: brcmstb-avs: fix imbalance of cpufreq policy refcount (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: intel_pstate: fix spelling mistake: "Whethet" -> "Whether" (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: s3c: fix unbalances of cpufreq policy refcount (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: tegra186: convert to devm_platform_ioremap_resource (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: kirkwood: convert to devm_platform_ioremap_resource (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: CPPC: put ACPI table after using it (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq : CPPC: Break out if HiSilicon CPPC workaround is matched (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: scmi: Match scmi device by both name and protocol id (Prarit Bhargava) [1823339]
+- [base] PM / QoS: Restore DEV_PM_QOS_MIN/MAX_FREQUENCY (Prarit Bhargava) [1823339]
+- [base] PM: QoS: Drop frequency QoS types from device PM QoS (Prarit Bhargava) [1823339]
+- [include] PM / QoS: Reorder pm_qos/freq_qos/dev_pm_qos structs (Prarit Bhargava) [1823339]
+- [include] PM / QoS: Redefine FREQ_QOS_MAX_DEFAULT_VALUE to S32_MAX (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Fix Kconfig indentation (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Use vtime aware kcpustat accessors for user time (Prarit Bhargava) [1823339]
+- [kernel] sched/vtime: Bring up complete kcpustat accessor (Prarit Bhargava) [1823339]
+- [documentation] PM: Wrap documentation to fit in 80 columns (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Invalidate frequency QoS requests after removal (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Register drivers only after CPU devices have been registered (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Add NULL checks to show() and store() methods of cpufreq (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: intel_pstate: Fix invalid EPB setting (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Initialize cpufreq-dt driver earlier (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: intel_pstate: Fix plain int as pointer warning from sparse (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: powernv: fix stack bloat and hard limit on number of CPUs (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Clarify the comment in cpufreq_set_policy() (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Use vtime aware kcpustat accessor to fetch CPUTIME_SYSTEM (Prarit Bhargava) [1823339]
+- [kernel] sched/kcpustat: Introduce vtime-aware kcpustat accessor for CPUTIME_SYSTEM (Prarit Bhargava) [1823339]
+- [include] sched/vtime: Introduce vtime_accounting_enabled_cpu() (Prarit Bhargava) [1823339]
+- [kernel] sched/vtime: Rename vtime_accounting_cpu_enabled() to vtime_accounting_enabled_this_cpu() (Prarit Bhargava) [1823339]
+- [include] context_tracking: Introduce context_tracking_enabled_cpu() (Prarit Bhargava) [1823339]
+- [include] context_tracking: Rename context_tracking_is_cpu_enabled() to context_tracking_enabled_this_cpu() (Prarit Bhargava) [1823339]
+- [kernel] sched/vtime: Record CPU under seqcount for kcpustat needs (Prarit Bhargava) [1823339]
+- [acpi] ACPI: processor: Add QoS requests for all CPUs (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: scpi: remove stale/outdated comment about the driver (Prarit Bhargava) [1823339]
+- [thermal] thermal/drivers/cpufreq_cooling: Fix return of cpufreq_set_cur_state (Prarit Bhargava) [1823339]
+- [acpi] cpufreq: Use per-policy frequency QoS (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Introduce frequency QoS (Prarit Bhargava) [1823339]
+- [acpi] ACPI: processor: Avoid NULL pointer dereferences at init time (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: ti-cpufreq: Add support for AM3517 (Prarit Bhargava) [1823339]
+- [cpufreq] ARM: dts: omap36xx: using OPP1G needs to control the abb_ldo (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: ti-cpufreq: add support for omap34xx and omap36xx (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Remove CPUFREQ_ADJUST and CPUFREQ_NOTIFY policy notifier events (Prarit Bhargava) [1823339]
+- [base] arch_topology: Use CPUFREQ_CREATE_POLICY instead of CPUFREQ_NOTIFY (Prarit Bhargava) [1823339]
+- [acpi] ACPI: cpufreq: Switch to QoS requests instead of cpufreq notifier (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: Get rid of unused flags (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: intel_pstate: Implement QoS supported freq constraints (Prarit Bhargava) [1823339]
+- [thermal] thermal: cpu_cooling: Switch to QoS requests for freq limits (Prarit Bhargava) [1823339]
+- [cpufreq] cpufreq: Add policy create/remove notifiers back (Prarit Bhargava) [1823339]
+- [documentation] docs: power: convert docs to ReST and rename to *.rst (Prarit Bhargava) [1823339]
+- [kernel] PM: QoS: no need to check return value of debugfs_create functions (Prarit Bhargava) [1823339]
+- [kernel] PM / QoS: Change to use DEFINE_SHOW_ATTRIBUTE macro (Prarit Bhargava) [1823339]
+- [nvme] nvme-fc: Revert "add module to ops template to allow module references" (Gopal Tiwari) [1823270]
+- [nvme] nvme: fix deadlock caused by ANA update wrong locking (Gopal Tiwari) [1823270]
+- [nvme] nvme-pci: Hold cq_poll_lock while completing CQEs (Gopal Tiwari) [1823270]
+- [uapi] nvme: change nvme_passthru_cmd64 to explicitly mark rsvd (Gopal Tiwari) [1823270]
+- [tools] tools/power/x86/intel-speed-select: Fix a typo in error message (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Update version (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Avoid duplicate Package strings for json (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Add display for enabled cpus count (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Print friendly warning for bad command line (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Fix avx options for turbo-freq feature (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Improve CLX commands (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Show error for invalid CPUs in the options (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Improve core-power result and error display (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Kernel interface error handling (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Improve error display for turbo-freq feature (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Improve error display for base-freq feature (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Improve output of perf-profile commands (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Enhance help for core-power assoc (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Display error for invalid priority type (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Check feature status first (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Improve error display for perf-profile feature (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Add an API for error/information print (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Enhance --info option (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Enhance help (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Helpful warning for missing kernel interface (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Store topology information (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Max CPU count calculation when CPU0 is offline (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Special handling for CPU 0 online/offline (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Use more verbiage for clos information (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Enhance core-power info command (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Make target CPU optional for core-power info (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Warn for invalid package id (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Fix last cpu number (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Fix mailbox usage for CLOS_PM_QOS_CONFIG (Prarit Bhargava) [1778956]
+- [platform] platform/x86: ISST: Fix wrong unregister type (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Avoid duplicate names for json parsing (Prarit Bhargava) [1778956]
+- [tools] tools/power/x86/intel-speed-select: Fix display for turbo-freq auto mode (Prarit Bhargava) [1778956]
+- [platform] platform/x86: ISST: Allow additional core-power mailbox commands (Prarit Bhargava) [1778956]
+- [misc] mei: me: add comet point (lake) H device ids (Ken Cox) [1815355]
+- [misc] mei: me: add comet point (lake) LP device ids (Ken Cox) [1815355]
+- [misc] mei: define dma ring buffer sizes for PCH12 HW and newer (Ken Cox) [1815355]
+- [misc] mei: hbm: define dma ring setup protocol (Ken Cox) [1815355]
+- [acpi] apei/ghes: Do not delay GHES polling (Robert Richter) [1793544]
+- [edac] EDAC/ghes: Do not warn when incrementing refcount on 0 (Robert Richter) [1793544]
+- [edac] EDAC/ghes: Fix locking and memory barrier issues (Robert Richter) [1793544]
+- [edac] EDAC/ghes: Fix Use after free in ghes_edac remove path (Robert Richter) [1793544]
+- [edac] EDAC, ghes: Use CPER module handles to locate DIMMs (Robert Richter) [1793544]
+- [kernel] sched/fair: Fix statistics for find_idlest_group() (Phil Auld) [1794398]
+- [kernel] sched/core: Annotate curr pointer in rq with __rcu (Phil Auld) [1794398]
+- [kernel] sched/psi: Fix OOB write when writing 0 bytes to PSI files (Phil Auld) [1794398]
+- [kernel] sched/psi: Correct overly pessimistic size calculation (Phil Auld) [1794398]
+- [kernel] sched/fair: Prevent unlimited runtime on throttled group (Phil Auld) [1794398]
+- [kernel] sched/nohz: Optimize get_nohz_timer_target() (Phil Auld) [1794398]
+- [kernel] sched/topology: Assert non-NUMA topology masks don't (partially) overlap (Phil Auld) [1794398]
+- [kernel] sched/psi: create /proc/pressure and /proc/pressure/{io|memory|cpu} only when psi enabled (Phil Auld) [1794398]
+- [kernel] sched/fair: Remove redundant call to cpufreq_update_util() (Phil Auld) [1794398]
+- [kernel] sched/debug: Add new tracepoints to track PELT at rq level (Phil Auld) [1794398]
+- [kernel] sched/fair: calculate delta runnable load only when it's needed (Phil Auld) [1794398]
+- [kernel] sched/fair: Fix sgc->{min, max}_capacity calculation for SD_OVERLAP (Phil Auld) [1794398]
+- [kernel] sched/debug: Reset watchdog on all CPUs while processing sysrq-t (Phil Auld) [1794398]
+- [kernel] sched/fair: Make sched-idle CPU selection consistent throughout (Phil Auld) [1794398]
+- [kernel] sched/core: Remove unused variable from set_user_nice() (Phil Auld) [1794398]
+- [kernel] sched/fair: Optimize select_idle_cpu (Phil Auld) [1794398]
+- [kernel] schied/fair: Skip calculating @contrib without load (Phil Auld) [1794398]
+- [kernel] sched: Spare resched IPI when prio changes on a single fair task (Phil Auld) [1794398]
+- [kernel] sched: Use fair:prio_changed() instead of ad-hoc implementation (Phil Auld) [1794398]
+- [kernel] sched/wait: fix ___wait_var_event(exclusive) (Phil Auld) [1794398]
+- [kernel] psi: Fix a division error in psi poll() (Phil Auld) [1794398]
+- [kernel] sched/psi: Fix sampling error and rare div0 crashes with cgroups and high uptime (Phil Auld) [1794398]
+- [kernel] sched/cpufreq: Move the cfs_rq_util_change() call to cpufreq_update_util() (Phil Auld) [1794398]
+- [kernel] sched/pelt: Fix update of blocked PELT ordering (Phil Auld) [1794398]
+- [kernel] sched/core: Avoid spurious lock dependencies (Phil Auld) [1794398]
+- [kernel] Add wake_up_interruptible_sync_poll_locked() (Phil Auld) [1794398]
+- [kernel] Remove the nr_exclusive argument from __wake_up_sync_key() (Phil Auld) [1794398]
+- [x86] x86/mce: Do not log spurious corrected mce errors (Prarit Bhargava) [1819761]
+- [x86] x86/MCE: Add an MCE-record filtering function (Prarit Bhargava) [1819761]
+
+* Thu Apr 16 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.9.el8]
+- [mm] mm/page_alloc: increase default min_free_kbytes bound (Joel Savitz) [1808039]
+- [crypto] crypto: remove CRYPTO_TFM_RES_BAD_KEY_LEN (Neil Horman) [1782179]
+- [crypto] crypto: qat - switch to skcipher API (Neil Horman) [1782179]
+- [scsi] scsi: lpfc: Change default SCSI LUN QD to 64 (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Update lpfc version to 12.8.0.0 (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Remove prototype FIPS/DSS options from SLI-3 (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Make debugfs ktime stats generic for NVME and SCSI (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Fix erroneous cpu limit of 128 on I/O statistics (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Fix crash in target side cable pulls hitting WAIT_FOR_UNREG (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Fix update of wq consumer index in lpfc_sli4_wq_release (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Fix crash after handling a pci error (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Fix scsi host template for SLI3 vports (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Fix lpfc overwrite of sg_cnt field in nvmefc_tgt_fcp_req (Dick Kennedy) [1822334]
+- [scsi] scsi: lpfc: Fix lockdep error - register non-static key (Dick Kennedy) [1822334]
+- [fs] utimes: Clamp the timestamps in notify_change() (Eric Sandeen) [1795991]
+- [fs] smb3: Fix regression in time handling (Eric Sandeen) [1795991]
+- [fs] isofs: Initialize filesystem timestamp ranges (Eric Sandeen) [1795991]
+- [fs] fs: ceph: Initialize filesystem timestamp ranges (Eric Sandeen) [1795991]
+- [fs] fs: fat: Initialize filesystem timestamp ranges (Eric Sandeen) [1795991]
+- [fs] fat: propagate 64-bit inode timestamps (Eric Sandeen) [1795991]
+- [fs] fs: cifs: Initialize filesystem timestamp ranges (Eric Sandeen) [1795991]
+- [fs] fs: nfs: Initialize filesystem timestamp ranges (Eric Sandeen) [1795991]
+- [fs] ext4: Initialize timestamps limits (Eric Sandeen) [1795991]
+- [fs] fs: Fill in max and min timestamps in superblock (Eric Sandeen) [1795991]
+- [fs] utimes: Clamp the timestamps before update (Eric Sandeen) [1795991]
+- [fs] timestamp_truncate: Replace users of timespec64_trunc (Eric Sandeen) [1795991]
+- [fs] vfs: Add timestamp_truncate() api (Eric Sandeen) [1795991]
+- [fs] vfs: Add file timestamp range support (Eric Sandeen) [1795991]
+- [fs] cramfs: Deprecate cramfs in RHEL (Abhijith Das) [1794513]
+- [thermal] thermal: intel: intel_pch_thermal: Add Comet Lake (CML) platform support (David Arcari) [1773794]
+- [thermal] thermal: intel: Fix unmatched pci_release_region (David Arcari) [1773794]
+- [thermal] thermal: intel: Use dev_get_drvdata (David Arcari) [1773794]
+- [thermal] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 288 (David Arcari) [1773794]
+- [thermal] drivers: thermal: Move various drivers for intel platforms into a subdir (David Arcari) [1773794]
+- [x86] x86/cpufeatures: Enable a new AVX512 CPU feature (David Arcari) [1783143]
+- [x86] cpu/cpuid-deps: Add a tab to cpuid dependent features (David Arcari) [1783143]
+- [crypto] crypto: rng - Override drivers/char/random in FIPS mode (Herbert Xu) [1785660]
+- [char] random: Add hook to override device reads and getrandom(2) (Herbert Xu) [1785660]
+- [block] nbd: add a flush_workqueue in nbd_start_device (Ming Lei) [1798919]
+- [scsi] scsi: sd_sbc: Fix sd_zbc_report_zones() (Ming Lei) [1798919]
+- [block] block: Fix partition support for host aware zoned block devices (Ming Lei) [1798919]
+- [scsi] block: allow partitions on host aware zone devices (Ming Lei) [1798919]
+- [block] null_blk: Fix zone write handling (Ming Lei) [1798919]
+- [fs] fs: move guard_bio_eod() after bio_set_op_attrs (Ming Lei) [1798919]
+- [block] null_blk: Fix REQ_OP_ZONE_CLOSE handling (Ming Lei) [1798919]
+- [block] block: add bio_truncate to fix guard_bio_eod (Ming Lei) [1798919]
+- [block] compat_ioctl: block: handle Persistent Reservations (Ming Lei) [1798919]
+- [block] compat_ioctl: block: handle add zone open, close and finish ioctl (Ming Lei) [1798919]
+- [block] compat_ioctl: block: handle BLKGETZONESZ/BLKGETNRZONES (Ming Lei) [1798919]
+- [block] compat_ioctl: block: handle BLKREPORTZONE/BLKRESETZONE (Ming Lei) [1798919]
+- [block] block: fix memleak when __blk_rq_map_user_iov() is failed (Ming Lei) [1798919]
+- [s390] s390/dasd: fix typo in copyright statement (Ming Lei) [1798919]
+- [s390] s390/dasd: fix memleak in path handling error case (Ming Lei) [1798919]
+- [s390] s390/dasd/cio: Interpret ccw_device_get_mdc return value correctly (Ming Lei) [1798919]
+- [block] block: Fix a lockdep complaint triggered by request queue flushing (Ming Lei) [1798919]
+- [block] block: Fix the type of 'sts' in bsg_queue_rq() (Ming Lei) [1798919]
+- [block] block: end bio with BLK_STS_AGAIN in case of non-mq devs and REQ_NOWAIT (Ming Lei) [1798919]
+- [block] nbd: fix shutdown and recv work deadlock v2 (Ming Lei) [1798919]
+- [block] blk-iocost: fix incorrect vtime comparison in iocg_is_idle() (Ming Lei) [1798919]
+- [block] iocost: check active_list of all the ancestors in iocg_activate() (Ming Lei) [1798919]
+- [block] iocost: over-budget forced IOs should schedule async delay (Ming Lei) [1798919]
+- [block] blk-cgroup: remove blkcg_drain_queue (Ming Lei) [1798919]
+- [block] block: fix NULL pointer dereference in account statistics with IDE (Ming Lei) [1798919]
+- [block] null_blk: remove unused variable warning on !CONFIG_BLK_DEV_ZONED (Ming Lei) [1798919]
+- [block] brd: warn on un-aligned buffer (Ming Lei) [1798919]
+- [block] brd: remove max_hw_sectors queue limit (Ming Lei) [1798919]
+- [block] block: set the zone size in blk_revalidate_disk_zones atomically (Ming Lei) [1798919]
+- [block] block: don't handle bio based drivers in blk_revalidate_disk_zones (Ming Lei) [1798919]
+- [block] block: allocate the zone bitmaps lazily (Ming Lei) [1798919]
+- [block] block: replace seq_zones_bitmap with conv_zones_bitmap (Ming Lei) [1798919]
+- [block] block: simplify blkdev_nr_zones (Ming Lei) [1798919]
+- [block] block: remove the empty line at the end of blk-zoned.c (Ming Lei) [1798919]
+- [block] null_blk: cleanup null_gendisk_register (Ming Lei) [1798919]
+- [block] null_blk: fix zone size paramter check (Ming Lei) [1798919]
+- [fs] block: don't send uevent for empty disk when not invalidating (Ming Lei) [1798919]
+- [block] ataflop: Remove unneeded semicolon (Ming Lei) [1798919]
+- [block] drbd: Remove unneeded semicolon (Ming Lei) [1798919]
+- [scsi] sr_vendor: support Beurer GL50 evo CD-on-a-chip devices (Ming Lei) [1798919]
+- [cdrom] cdrom: respect device capabilities during opening action (Ming Lei) [1798919]
+- [fs] block: move clearing bd_invalidated into check_disk_size_change (Ming Lei) [1798919]
+- [block] block: remove (__)blkdev_reread_part as an exported API (Ming Lei) [1798919]
+- [block] block: fix bdev_disk_changed for non-partitioned devices (Ming Lei) [1798919]
+- [block] block: move rescan_partitions to fs/block_dev.c (Ming Lei) [1798919]
+- [block] block: merge invalidate_partitions into rescan_partitions (Ming Lei) [1798919]
+- [block] block: refactor rescan_partitions (Ming Lei) [1798919]
+- [scsi] scsi: sd_zbc: Remove set but not used variable 'buflen' (Ming Lei) [1798919]
+- [md] block: rework zone reporting (Ming Lei) [1798919]
+- [scsi] scsi: sd_zbc: Cleanup sd_zbc_alloc_report_buffer() (Ming Lei) [1798919]
+- [block] null_blk: Add zone_nr_conv to features (Ming Lei) [1798919]
+- [block] null_blk: clean up report zones (Ming Lei) [1798919]
+- [block] null_blk: clean up the block device operations (Ming Lei) [1798919]
+- [block] block: Remove partition support for zoned block devices (Ming Lei) [1798919]
+- [md] block: Simplify report zones execution (Ming Lei) [1798919]
+- [block] block: cleanup the !zoned case in blk_revalidate_disk_zones (Ming Lei) [1798919]
+- [scsi] block: Enhance blk_revalidate_disk_zones() (Ming Lei) [1798919]
+- [block] nbd: prevent memory leak (Ming Lei) [1798919]
+- [scsi] scsi: sd_zbc: add zone open, close, and finish support (Ming Lei) [1798919]
+- [block] null_blk: add zone open, close, and finish support (Ming Lei) [1798919]
+- [md] dm: add zone open, close and finish support (Ming Lei) [1798919]
+- [block] loop: fix no-unmap write-zeroes request behavior (Ming Lei) [1798919]
+- [block] null_blk: return fixed zoned reads > write pointer (Ming Lei) [1798919]
+- [block] null_blk: Enable modifying 'submit_queues' after an instance has been configured (Ming Lei) [1798919]
+- [block] null_blk: Improve nullb_device_##NAME##_store() readability (Ming Lei) [1798919]
+- [block] block,bfq: Skip tracing hooks if possible (Ming Lei) [1798919]
+- [block] block: Don't disable interrupts in trigger_softirq() (Ming Lei) [1798919]
+- [lib] sbitmap: Delete sbitmap_any_bit_clear() (Ming Lei) [1798919]
+- [block] blk-mq: Delete blk_mq_has_free_tags() and blk_mq_can_queue() (Ming Lei) [1798919]
+- [block] block: add zone open, close and finish ioctl support (Ming Lei) [1798919]
+- [uapi] uapi: fix ioctl documentation (Ming Lei) [1798919]
+- [uapi] uapi: linux/blkzoned.h: fix BLKGETZONESZ and BLKGETNRZONES definitions (Ming Lei) [1798919]
+- [block] block: add zone open, close and finish operations (Ming Lei) [1798919]
+- [block] block: Simplify REQ_OP_ZONE_RESET_ALL handling (Ming Lei) [1798919]
+- [block] block: Remove REQ_OP_ZONE_RESET plugging (Ming Lei) [1798919]
+- [fs] bdev: Refresh bdev size for disks without partitioning (Ming Lei) [1798919]
+- [fs] bdev: Factor out bdev revalidation into a common helper (Ming Lei) [1798919]
+- [block] blk-mq: Make blk_mq_run_hw_queue() return void (Ming Lei) [1798919]
+- [fs] fcntl: fix typo in RWH_WRITE_LIFE_NOT_SET r/w hint name (Ming Lei) [1798919]
+- [block] blk-mq: remove needless goto from blk_mq_get_driver_tag (Ming Lei) [1798919]
+- [block] block: Reduce the amount of memory used for tag sets (Ming Lei) [1798919]
+- [block] block: Reduce the amount of memory required per request queue (Ming Lei) [1798919]
+- [block] block: Remove the synchronize_rcu() call from __blk_mq_update_nr_hw_queues() (Ming Lei) [1798919]
+- [block] block: account statistics for passthrough requests (Ming Lei) [1798919]
+- [block] blk-stat: Optimise blk_stat_add() (Ming Lei) [1798919]
+- [block] blk-mq: Embed counters into struct mq_inflight (Ming Lei) [1798919]
+- [block] blk-mq: Reuse callback in blk_mq_in_flight*() (Ming Lei) [1798919]
+- [block] blk-mq: Inline status checkers (Ming Lei) [1798919]
+- [block] block: Document all members of blk_mq_tag_set and bkl_mq_queue_map (Ming Lei) [1798919]
+- [block] block: Reduce sysfs_lock locking inside blk_cleanup_queue() (Ming Lei) [1798919]
+- [block] block: Remove "dying" checks from sysfs callbacks (Ming Lei) [1798919]
+- [block] block: Remove request_queue.nr_queues (Ming Lei) [1798919]
+- [trace] block: Fix writeback throttling W=1 compiler warnings (Ming Lei) [1798919]
+- [block] block: Fix three kernel-doc warnings (Ming Lei) [1798919]
+- [fs] writeback: fix use-after-free in finish_writeback_work() (Ming Lei) [1798919]
+- [scsi] scsi: sd_zbc: Fix sd_zbc_complete() (Ming Lei) [1798919]
+- [block] nbd:fix memory leak in nbd_get_socket() (Ming Lei) [1798919]
+- [block] nbd: verify socket is supported during setup (Ming Lei) [1798919]
+- [block] nbd: handle racing with error'ed out commands (Ming Lei) [1798919]
+- [block] nbd: protect cmd->status with cmd->lock (Ming Lei) [1798919]
+- [block] nbd: fix possible sysfs duplicate warning (Ming Lei) [1798919]
+- [block] nbd: fix possible page fault for nbd disk (Ming Lei) [1798919]
+- [block] nbd: rename the runtime flags as NBD_RT_ prefixed (Ming Lei) [1798919]
+- [block] nbd: fix max number of supported devs (Ming Lei) [1798919]
+- [block] nbd: fix zero cmd timeout handling v2 (Ming Lei) [1798919]
+- [block] nbd: add missing config put (Ming Lei) [1798919]
+- [block] nbd: add function to convert blk req op to nbd cmd (Ming Lei) [1798919]
+- [block] nbd: add set cmd timeout helper (Ming Lei) [1798919]
+- [block] loop: change queue block size to match when using DIO (Ming Lei) [1798919]
+- [block] rsxx: add missed destroy_workqueue calls in remove (Ming Lei) [1798919]
+- [fs] cgroup, writeback: don't switch wbs immediately on dead wbs if the memcg is dead (Ming Lei) [1798919]
+- [block] block: drbd: remove a stray unlock in __drbd_send_protocol() (Ming Lei) [1798919]
+- [block] blkcg: make blkcg_print_stat() print stats only for online blkgs (Ming Lei) [1798919]
+- [block] iocost: don't nest spin_lock_irq in ioc_weight_write() (Ming Lei) [1798919]
+- [block] blk-rq-qos: fix first node deletion of rq_qos_del() (Ming Lei) [1798919]
+- [block] blkcg: Fix multiple bugs in blkcg_activate_policy() (Ming Lei) [1798919]
+- [block] block: Fix elv_support_iosched() (Ming Lei) [1798919]
+- [block] null_blk: Fix zoned command return code (Ming Lei) [1798919]
+- [block] blk-wbt: fix performance regression in wbt scale_up/scale_down (Ming Lei) [1798919]
+- [ata] Revert "libata, freezer: avoid block device removal while system is frozen" (Ming Lei) [1798919]
+- [mm] bdi: Do not use freezable workqueue (Ming Lei) [1798919]
+- [uapi] block: pg: add header include guard (Ming Lei) [1798919]
+- [block] block: fix null pointer dereference in blk_mq_rq_timed_out() (Ming Lei) [1798919]
+- [block] rq-qos: get rid of redundant wbt_update_limits() (Ming Lei) [1798919]
+- [block] iocost: bump up default latency targets for hard disks (Ming Lei) [1798919]
+- [block] iocost: improve nr_lagging handling (Ming Lei) [1798919]
+- [block] iocost: better trace vrate changes (Ming Lei) [1798919]
+- [block] block: drop device references in bsg_queue_rq() (Ming Lei) [1798919]
+- [block] pktcdvd: remove warning on attempting to register non-passthrough dev (Ming Lei) [1798919]
+- [ata] ata: libahci_platform: Add of_node_put() before loop exit (Ming Lei) [1798919]
+- [block] block, bfq: push up injection only after setting service time (Ming Lei) [1798919]
+- [block] block, bfq: increase update frequency of inject limit (Ming Lei) [1798919]
+- [block] block, bfq: reduce upper bound for inject limit to max_rq_in_driver+1 (Ming Lei) [1798919]
+- [block] block, bfq: update inject limit only after injection occurred (Ming Lei) [1798919]
+- [block] block: centralize PI remapping logic to the block layer (Ming Lei) [1798919]
+- [block] block: use symbolic constants for t10_pi type (Ming Lei) [1798919]
+- [block] null_blk: format pr_* logs with pr_fmt (Ming Lei) [1798919]
+- [block] null_blk: match the type of parameter nr_devices (Ming Lei) [1798919]
+- [block] null_blk: do not fail the module load with zero devices (Ming Lei) [1798919]
+- [block] block: also check RQF_STATS in blk_mq_need_time_stamp() (Ming Lei) [1798919]
+- [block] block: make rq sector size accessible for block stats (Ming Lei) [1798919]
+- [block] bfq: Fix bfq linkage error (Ming Lei) [1798919]
+- [scsi] scsi: core: remove dummy q->dev check (Ming Lei) [1798919]
+- [block] block: bypass blk_set_runtime_active for uninitialized q->dev (Ming Lei) [1798919]
+- [block] null_blk: validate the number of devices (Ming Lei) [1798919]
+- [block] null_blk: fix module name at log message (Ming Lei) [1798919]
+- [block] iocost_monitor: Report debt (Ming Lei) [1798919]
+- [tools] iocost_monitor: Report more info with higher accuracy (Ming Lei) [1798919]
+- [tools] iocost_monitor: Always use strings for json values (Ming Lei) [1798919]
+- [block] blk-iocost: Don't let merges push vtime into the future (Ming Lei) [1798919]
+- [block] blk-iocost: Account force-charged overage in absolute vtime (Ming Lei) [1798919]
+- [block] blk-iocost: Fix incorrect operation order during iocg free (Ming Lei) [1798919]
+- [block] bfq: Add per-device weight (Ming Lei) [1798919]
+- [block] bfq: Extract bfq_group_set_weight from bfq_io_set_weight_legacy (Ming Lei) [1798919]
+- [block] bfq: Fix the missing barrier in __bfq_entity_update_weight_prio (Ming Lei) [1798919]
+- [block] block: fix elevator_get_by_features() (Ming Lei) [1798919]
+- [scsi] sd: Set ELEVATOR_F_ZBD_SEQ_WRITE for ZBC disks (Ming Lei) [1798919]
+- [block] block: Set ELEVATOR_F_ZBD_SEQ_WRITE for nullblk zoned disks (Ming Lei) [1798919]
+- [block] block: Delay default elevator initialization (Ming Lei) [1798919]
+- [block] block: Improve default elevator selection (Ming Lei) [1798919]
+- [block] block: Introduce elevator features (Ming Lei) [1798919]
+- [block] block: Change elevator_init_mq() to always succeed (Ming Lei) [1798919]
+- [block] block: Cleanup elevator_init_mq() use (Ming Lei) [1798919]
+- [block] paride/pcd: need to check if cd->disk is null in pcd_detect (Ming Lei) [1798919]
+- [block] paride/pcd: need to set queue to NULL before put_disk (Ming Lei) [1798919]
+- [block] blkcg: add missing NULL check in ioc_cpd_alloc() (Ming Lei) [1798919]
+- [block] blkcg: fix missing free on error path of blk_iocost_init() (Ming Lei) [1798919]
+- [trace] blkcg: blk-iocost: predeclare used structs (Ming Lei) [1798919]
+- [block] blkcg: add tools/cgroup/iocost_coef_gen.py (Ming Lei) [1798919]
+- [block] blkcg: add tools/cgroup/iocost_monitor.py (Ming Lei) [1798919]
+- [block] blkcg: implement blk-iocost (Ming Lei) [1798919]
+- [block] blk-mq: add optional request->alloc_time_ns (Ming Lei) [1798919]
+- [block] block: extend 'struct request' via 'request_aux' (Ming Lei) [1798919]
+- [block] blkcg: s/RQ_QOS_CGROUP/RQ_QOS_LATENCY/ (Ming Lei) [1798919]
+- [block] block/rq_qos: implement rq_qos_ops->queue_depth_changed() (Ming Lei) [1798919]
+- [block] block/rq_qos: add rq_qos_merge() (Ming Lei) [1798919]
+- [block] blkcg: separate blkcg_conf_get_disk() out of blkg_conf_prep() (Ming Lei) [1798919]
+- [block] blkcg: make ->cpd_init_fn() optional (Ming Lei) [1798919]
+- [block] blkcg: pass @q and @blkcg into blkcg_pol_alloc_pd_fn() (Ming Lei) [1798919]
+- [include] writeback: Generalize and expose wb_completion (Ming Lei) [1798919]
+- [block] null_blk: fix inline misuse (Ming Lei) [1798919]
+- [block] null_blk: create a helper for req completion (Ming Lei) [1798919]
+- [block] null_blk: create a helper for zoned devices (Ming Lei) [1798919]
+- [block] null_blk: create a helper for mem-backed ops (Ming Lei) [1798919]
+- [block] null_blk: create a helper for badblocks (Ming Lei) [1798919]
+- [block] null_blk: create a helper for throttling (Ming Lei) [1798919]
+- [block] null_blk: move duplicate code to callers (Ming Lei) [1798919]
+- [block] block: remove struct request_queue queue_head (Ming Lei) [1798919]
+- [fs] writeback, cgroup: inode_switch_wbs() shouldn't give up on wb_switch_rwsem trylock fail (Ming Lei) [1798919]
+- [fs] writeback, cgroup: Adjust WB_FRN_TIME_CUT_DIV to accelerate foreign inode switching (Ming Lei) [1798919]
+- [block] blk-mq: Fix memory leak in blk_mq_init_allocated_queue error handling (Ming Lei) [1798919]
+- [block] loop: Add LOOP_SET_DIRECT_IO to compat ioctl (Ming Lei) [1798919]
+- [lib] lib: scatterlist: Fix to support no mapped sg (Ming Lei) [1798919]
+- [block] null_blk: implement REQ_OP_ZONE_RESET_ALL (Ming Lei) [1798919]
+- [scsi] scsi: implement REQ_OP_ZONE_RESET_ALL (Ming Lei) [1798919]
+- [block] blk-zoned: implement REQ_OP_ZONE_RESET_ALL (Ming Lei) [1798919]
+- [block] block: add req op to reset all zones and flag (Ming Lei) [1798919]
+- [block] block: Fix a comment in blk_cleanup_queue() (Ming Lei) [1798919]
+- [block] block: Fix spelling in the header above blkg_lookup() (Ming Lei) [1798919]
+- [kernel] cgroup: Move cgroup_parse_float() implementation out of CONFIG_SYSFS (Ming Lei) [1798919]
+- [kernel] cgroup: add cgroup_parse_float() (Ming Lei) [1798919]
+- [block] nbd: replace kill_bdev() with __invalidate_device() again (Ming Lei) [1798919]
+- [block] nbd: add netlink reconfigure resize support (Ming Lei) [1798919]
+- [block] nbd: fix crash when the blksize is zero (Ming Lei) [1798919]
+- [block] nbd: propagate genlmsg_reply return code (Ming Lei) [1798919]
+- [block] block: loop: mark bvec as ITER_BVEC_FLAG_NO_REF (Ming Lei) [1798919]
+- [block] loop: properly observe rotational flag of underlying device (Ming Lei) [1798919]
+- [block] block: Limit zone array allocation size (Ming Lei) [1798919]
+- [block] block: Fix null_blk_zoned creation failure with small number of zones (Ming Lei) [1798919]
+- [scsi] sd_zbc: Fix report zones buffer allocation (Ming Lei) [1798919]
+- [scsi] scsi: sd_zbc: Fix sd_zbc_report_zones() buffer allocation (Ming Lei) [1798919]
+- [md] block: Kill gfp_t argument of blkdev_report_zones() (Ming Lei) [1798919]
+- [md] dm zoned: Fix zone report handling (Ming Lei) [1798919]
+- [block] blkcg: implement REQ_CGROUP_PUNT (Ming Lei) [1798919]
+- [include] blkcg, writeback: Implement wbc_blkcg_css() (Ming Lei) [1798919]
+- [fs] blkcg, writeback: Add wbc->no_cgroup_owner (Ming Lei) [1798919]
+- [fs] blkcg, writeback: Rename wbc_account_io() to wbc_account_cgroup_owner() (Ming Lei) [1798919]
+- [block] cgroup, blkcg: Prepare some symbols for module and !CONFIG_CGROUP usages (Ming Lei) [1798919]
+- [fs] writeback: synchronize sync(2) against cgroup writeback membership switches (Ming Lei) [1798919]
+- [block] blk-mq: move cancel of requeue_work to the front of blk_exit_queue (Ming Lei) [1798919]
+- [block] blk-mq-debugfs: support rq_qos (Ming Lei) [1798919]
+- [block] null_blk: fix type mismatch null_handle_cmd() (Ming Lei) [1798919]
+- [block] null_blk: remove duplicate 0 initialization (Ming Lei) [1798919]
+- [block] null_blk: remove duplicate check for report zone (Ming Lei) [1798919]
+- [block] null_blk: add zoned config support information (Ming Lei) [1798919]
+- [tools] tools arch x86: Sync asm/cpufeatures.h with the kernel sources (Vitaly Kuznetsov) [1807448]
+- [x86] vmware: Use bool type for vmw_sched_clock (Vitaly Kuznetsov) [1807448]
+- [x86] vmware: Enable steal time accounting (Vitaly Kuznetsov) [1807448]
+- [x86] vmware: Add steal time clock support for VMware guests (Vitaly Kuznetsov) [1807448]
+- [x86] vmware: Remove vmware_sched_clock_setup() (Vitaly Kuznetsov) [1807448]
+- [x86] vmware: Make vmware_select_hypercall() __init (Vitaly Kuznetsov) [1807448]
+- [x86] cpu/vmware: Fix platform detection VMWARE_PORT macro (Vitaly Kuznetsov) [1807448]
+- [x86] cpu/vmware: Use the full form of INL in VMWARE_HYPERCALL, for clang/llvm (Vitaly Kuznetsov) [1807448]
+- [x86] cpu/vmware: Use the full form of INL in VMWARE_PORT (Vitaly Kuznetsov) [1807448]
+- [x86] vmware: Add a header file for hypercall definitions (Vitaly Kuznetsov) [1807448]
+- [x86] vmware: Update platform detection code for VMCALL/VMMCALL hypercalls (Vitaly Kuznetsov) [1807448]
+- [netdrv] hv_netvsc: Fix unwanted wakeup in netvsc_attach() (Mohammed Gamal) [1815503]
+- [netdrv] hv_netvsc: make recording RSS hash depend on feature flag (Mohammed Gamal) [1815503]
+- [netdrv] hv_netvsc: record hardware hash in skb (Mohammed Gamal) [1815503]
+- [netdrv] hv_netvsc: flag software created hash value (Mohammed Gamal) [1815503]
+- [video] hyperv: hyperv_fb: Use physical memory for fb on HyperV Gen 1 VMs (Mohammed Gamal) [1816744]
+- [video] hyperv: hyperv_fb: Support deferred IO for Hyper-V frame buffer driver (Mohammed Gamal) [1816744]
+- [video] hyperv: hyperv_fb: Obtain screen resolution from Hyper-V host (Mohammed Gamal) [1816744]
+- [uio] uio_hv_generic: drop #ifdef DEBUG (Mohammed Gamal) [1816744]
+- [hid] hv: Remove dependencies on PAGE_SIZE for ring buffer (Mohammed Gamal) [1816744]
+- [x86] x86/hyperv: Create and use Hyper-V page definitions (Mohammed Gamal) [1816285]
+- [x86] x86/hyper-v: Drop HV_X64_CONFIGURE_PROFILER definition (Mohammed Gamal) [1816285]
+- [x86] x86: hv: Add function to allocate zeroed page for Hyper-V (Mohammed Gamal) [1816285]
+- [x86] x86/hyperv: Add functions to allocate/deallocate page for Hyper-V (Mohammed Gamal) [1816285]
+- [x86] x86/hyper-v: Fix indentation in hv_do_fast_hypercall16() (Mohammed Gamal) [1816285]
+- [x86] x86/hyperv: Micro-optimize send_ipi_one() (Mohammed Gamal) [1816285]
+- [x86] x86/hyperv: Make vapic support x2apic mode (Mohammed Gamal) [1816285]
+- [x86] x86/hyper-v: Fix overflow bug in fill_gva_list() (Mohammed Gamal) [1816285]
+- [x86] x86/hyper-v: Zero out the VP ASSIST PAGE on allocation (Mohammed Gamal) [1816285]
+- [x86] x86/hyperv: Make hv_vcpu_is_preempted() visible (Mohammed Gamal) [1816285]
+- [x86] x86/hyper-v: Implement EOI assist (Mohammed Gamal) [1816285]
+- [x86] x86/hyperv: Prevent potential NULL pointer dereference (Mohammed Gamal) [1816285]
+- [x86] Drivers: hv: vmbus: Break out ISA independent parts of mshyperv.h (Mohammed Gamal) [1816285]
+- [x86] x86/hyperv: Remove unused include (Mohammed Gamal) [1816285]
+- [net] vsock/virtio: add support for MSG_PEEK (Stefano Garzarella) [1818059]
+
+* Tue Apr 14 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.8.el8]
+- [include] leds: triggers: new function led_set_trigger_data() (Torez Smith) [1686205]
+- [leds] leds: triggers: add device attribute support (Torez Smith) [1686205]
+- [usb] USB: cdc-wdm: fix race between write and disconnect due to flag abuse (Torez Smith) [1686205]
+- [usb] usb: host: xhci: rcar: Fix typo in compatible string matching (Torez Smith) [1686205]
+- [usb] usb: host: xhci-tegra: Set DMA mask correctly (Torez Smith) [1686205]
+- [usb] USB: storage: ums-realtek: Whitelist auto-delink support (Torez Smith) [1686205]
+- [usb] USB: storage: ums-realtek: Update module parameter description for auto_delink_en (Torez Smith) [1686205]
+- [usb] usb: host: ohci: fix a race condition between shutdown and irq (Torez Smith) [1686205]
+- [usb] usb: hcd: use managed device resources (Torez Smith) [1686205]
+- [usb] typec: tcpm: fix a typo in the comparison of pdo_max_voltage (Torez Smith) [1686205]
+- [usb] usb-storage: Add new JMS567 revision to unusual_devs (Torez Smith) [1686205]
+- [usb] usb: chipidea: udc: don't do hardware access if gadget has stopped (Torez Smith) [1686205]
+- [usb] usbtmc: more sanity checking for packet size (Torez Smith) [1686205]
+- [usb] usb: udc: lpc32xx: silence fall-through warning (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: fix EPROBE_DEFER support during driver probe (Torez Smith) [1686205]
+- [usb] usb: host: fotg2: restart hcd after port reset (Torez Smith) [1686205]
+- [usb] USB: CDC: fix sanity checks in CDC union parser (Torez Smith) [1686205]
+- [usb] usb: cdc-acm: make sure a refcount is taken early enough (Torez Smith) [1686205]
+- [usb] USB: serial: option: add the BroadMobi BM818 card (Torez Smith) [1686205]
+- [usb] USB: serial: option: Add Motorola modem UARTs (Torez Smith) [1686205]
+- [usb] USB: core: Fix races in character device registration and deregistraion (Torez Smith) [1686205]
+- [usb] usb: gadget: mass_storage: Fix races between fsg_disable and fsg_set_alt (Torez Smith) [1686205]
+- [usb] usb: gadget: composite: Clear "suspended" on reset/disconnect (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: Fix sysfs interface of "role" (Torez Smith) [1686205]
+- [usb] usb: setup authorized_default attributes using usb_bus_notify (Torez Smith) [1686205]
+- [usb] usb: iowarrior: fix deadlock on disconnect (Torez Smith) [1686205]
+- [usb] Revert "USB: rio500: simplify locking" (Torez Smith) [1686205]
+- [usb] usb: usbfs: fix double-free of usb memory upon submiturb error (Torez Smith) [1686205]
+- [usb] usb: yurex: Fix use-after-free in yurex_delete (Torez Smith) [1686205]
+- [usb] USB: serial: option: add D-Link DWM-222 device ID (Torez Smith) [1686205]
+- [usb] USB: serial: option: Add support for ZTE MF871A (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Ignore unsupported/unknown alternate mode requests (Torez Smith) [1686205]
+- [usb] xhci: Fix NULL pointer dereference at endpoint zero reset (Torez Smith) [1686205]
+- [usb] usb: host: xhci-rcar: Fix timeout in xhci_suspend() (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: ccg: Fix uninitilized symbol error (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: remove tcpm dir if no children (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: free log buf memory when remove debug file (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Add NULL check before dereferencing config (Torez Smith) [1686205]
+- [tools] tools headers UAPI: Sync usbdevice_fs.h with the kernels to get new ioctl (Torez Smith) [1686205]
+- [usb] xhci: Fix crash if scatter gather is used with Immediate Data Transfer (IDT) (Torez Smith) [1686205]
+- [usb] usb: usb251xb: Reallow swap-dx-lanes to apply to the upstream port (Torez Smith) [1686205]
+- [usb] Revert "usb: usb251xb: Add US port lanes inversion property" (Torez Smith) [1686205]
+- [documentation] Revert "usb: usb251xb: Add US lanes inversion dts-bindings" (Torez Smith) [1686205]
+- [usb] usb: wusbcore: fix unbalanced get/put cluster_id (Torez Smith) [1686205]
+- [usb] usb/hcd: Fix a NULL vs IS_ERR() bug in usb_hcd_setup_local_mem() (Torez Smith) [1686205]
+- [usb] usb-storage: Add a limitation for blk_queue_max_hw_sectors() (Torez Smith) [1686205]
+- [usb] usb: pci-quirks: Minor cleanup for AMD PLL quirk (Torez Smith) [1686205]
+- [usb] usb: pci-quirks: Correct AMD PLL quirk detection (Torez Smith) [1686205]
+- [usb] vfs: Convert gadgetfs to use the new mount API (Torez Smith) [1686205]
+- [usb] Revert "usb: gadget: storage: Remove warning message" (Torez Smith) [1686205]
+- [documentation] Revert "dt-bindings: add binding for USBSS-DRD controller." (Torez Smith) [1686205]
+- [usb] Revert "usb:gadget Separated decoding functions from dwc3 driver." (Torez Smith) [1686205]
+- [usb] Revert "usb:gadget Patch simplify usb_decode_set_clear_feature function." (Torez Smith) [1686205]
+- [usb] Revert "usb:gadget Simplify usb_decode_get_set_descriptor function." (Torez Smith) [1686205]
+- [usb] Revert "usb:cdns3 Add Cadence USB3 DRD Driver" (Torez Smith) [1686205]
+- [usb] Revert "usb:cdns3 Fix for stuck packets in on-chip OUT buffer." (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: ehci: Fix example warnings (Torez Smith) [1686205]
+- [usb] usb :fsl: Change string format for errata property (Torez Smith) [1686205]
+- [usb] usb: host: Stops USB controller init if PLL fails to lock (Torez Smith) [1686205]
+- [usb] usb: phy: Workaround for USB erratum-A005728 (Torez Smith) [1686205]
+- [usb] usb: fsl: Set USB_EN bit to select ULPI phy (Torez Smith) [1686205]
+- [usb] usb: Handle USB3 remote wakeup for LPM enabled devices correctly (Torez Smith) [1686205]
+- [usb] drivers/usb/typec/tps6598x.c: fix 4CC cmd write (Torez Smith) [1686205]
+- [usb] drivers/usb/typec/tps6598x.c: fix portinfo width (Torez Smith) [1686205]
+- [usb] usb: storage: scsiglue: Do not skip VPD if try_vpd_pages is set (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: add a workaround for a race condition of workqueue (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: remove redundant assignment to ret (Torez Smith) [1686205]
+- [usb] usb: dwc2: use a longer AHB idle timeout in dwc2_core_reset() (Torez Smith) [1686205]
+- [usb] USB: gadget: function: fix issue Unneeded variable: "value" (Torez Smith) [1686205]
+- [usb] usb: phy: phy-mxs-usb: add imx7ulp support (Torez Smith) [1686205]
+- [usb] usb:cdns3 Fix for stuck packets in on-chip OUT buffer (Torez Smith) [1686205]
+- [usb] usb:cdns3 Add Cadence USB3 DRD Driver (Torez Smith) [1686205]
+- [usb] usb:gadget Simplify usb_decode_get_set_descriptor function (Torez Smith) [1686205]
+- [usb] usb:gadget Patch simplify usb_decode_set_clear_feature function (Torez Smith) [1686205]
+- [usb] usb:gadget Separated decoding functions from dwc3 driver (Torez Smith) [1686205]
+- [documentation] dt-bindings: add binding for USBSS-DRD controller (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: add support for TigerLake Devices (Torez Smith) [1686205]
+- [usb] USB: serial: ftdi_sio: add ID for isodebug v1 (Torez Smith) [1686205]
+- [usb] usb: host: Fix excessive alignment restriction for local memory allocations (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Use struct platform_callback pointer (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Use renesas_usbhs_platform_info on of_device_id.data (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Add a common function for the .get_id (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: move device tree properties parsing (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Add struct device * declaration in usbhs_probe() (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Add has_new_pipe_configs flag (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Use dev_of_node macro instead of open coded (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Remove type member from renesas_usbhs_driver_param (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Use a specific flag instead of type for multi_clks (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Avoid to write platform_data's value (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: move macros from mod.c to the mod.h (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: remove notify_hotplug callback (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: revise the irq_vbus comments (Torez Smith) [1686205]
+- [usb] USB: core: Fix compiler warnings in devio.c (Torez Smith) [1686205]
+- [usb] USB: core: Remove usbfs_mutex (Torez Smith) [1686205]
+- [usb] usb: clean up some of the computations in adu_read (Torez Smith) [1686205]
+- [usb] scsi: usb: image: microtek: use sg helper to iterate over scatterlist (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Use struct assignment instead of memcpy() (Torez Smith) [1686205]
+- [usb] USB: core: correct a spelling mistake in the comment (Torez Smith) [1686205]
+- [usb] usb: dwc3: remove unused @lock member of dwc3_ep struct (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: Add Support for Intel Elkhart Lake Devices (Torez Smith) [1686205]
+- [usb] usb: Replace snprintf with scnprintf in gether_get_ifname (Torez Smith) [1686205]
+- [uapi] USB: fix types in uapi include (Torez Smith) [1686205]
+- [usb] USB: serial: option: add support for GosunCn ME3630 RNDIS mode (Torez Smith) [1686205]
+- [usb] xhci: detect USB 3.2 capable host controllers correctly (Torez Smith) [1686205]
+- [usb] usb: xhci: Don't try to recover an endpoint if port is in error state (Torez Smith) [1686205]
+- [usb] usb: gadget: ether: Fix race between gether_disconnect and rx_submit (Torez Smith) [1686205]
+- [usb] usb: gadget: storage: Remove warning message (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Add support for disabling U1 and U2 entries (Torez Smith) [1686205]
+- [usb] usb: gadget: send usb_gadget as an argument in get_config_params (Torez Smith) [1686205]
+- [documentation] doc: dt: bindings: usb: dwc3: Update entries for disabling U1 and U2 (Torez Smith) [1686205]
+- [usb] usb: dwc3: qcom: Use of_clk_get_parent_count() (Torez Smith) [1686205]
+- [usb] usb: dwc3: Fix core validation in probe, move after clocks are enabled (Torez Smith) [1686205]
+- [usb] usb: dwc3: qcom: Improve error handling (Torez Smith) [1686205]
+- [usb] usb: dwc3: qcom: Start USB in 'host mode' on the SDM845 (Torez Smith) [1686205]
+- [usb] usb: dwc3: qcom: Add support for booting with ACPI (Torez Smith) [1686205]
+- [usb] Revert "usb: dwc2: host: Setting qtd to NULL after freeing it" (Torez Smith) [1686205]
+- [usb] usb: gadget: net2272: remove redundant assignments to pointer 's' (Torez Smith) [1686205]
+- [usb] usb: gadget: Zero ffs_io_data (Torez Smith) [1686205]
+- [usb] USB: omap_udc: Remove unneeded variable (Torez Smith) [1686205]
+- [usb] fotg210-udc: Remove unneeded variable (Torez Smith) [1686205]
+- [usb] usb: gadget: at91_udc: Remove unneeded variable (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: Enhance role switch support (Torez Smith) [1686205]
+- [usb] usb: gadget: u_audio: Fixed variable declaration coding style issue (Torez Smith) [1686205]
+- [usb] usb: gadget: f_fs: data_len used before properly set (Torez Smith) [1686205]
+- [usb] USB: dwc2: Don't turn off the usbphy in suspend if wakeup is enabled (Torez Smith) [1686205]
+- [documentation] Documentation: dt-bindings: Add snps, need-phy-for-wake for dwc2 USB (Torez Smith) [1686205]
+- [usb] usb: dwc2: Force 8bit UTMI width for Samsung Exynos SoCs (Torez Smith) [1686205]
+- [usb] usb: dwc3: meson-g12a: Add support for IRQ based OTG switching (Torez Smith) [1686205]
+- [usb] usb: dwc2: Use generic PHY width in params setup (Torez Smith) [1686205]
+- [usb] usb: host: fotg2: add device tree probing (Torez Smith) [1686205]
+- [usb] usb: isp1362: Spelling s/eclusive/exclusive/ (Torez Smith) [1686205]
+- [usb] USB: add usbfs ioctl to retrieve the connection parameters (Torez Smith) [1686205]
+- [usb] usb: host: xhci-tegra: Fix Wunused-const-variable (Torez Smith) [1686205]
+- [usb] usb: chipidea: udc: workaround for endpoint conflict issue (Torez Smith) [1686205]
+- dt-bindings: usb: renesas_gen3: Rename bindings documentation file (Torez Smith) [1686205]
+- dt-bindings: usb: renesas_usbhs: Rename bindings documentation file (Torez Smith) [1686205]
+- [documentation] docs: power: convert docs to ReST and rename to *.rst (Torez Smith) [1686205]
+- [usb] docs: kbuild: convert docs to ReST and rename to *.rst (Torez Smith) [1686205]
+- [usb] usb: chipidea: msm: Use devm_platform_ioremap_resource() (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: Use devm_platform_ioremap_resource() (Torez Smith) [1686205]
+- [usb] usb: chipidea: Use dev_err() instead of pr_err() (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: "fsl, usbphy" phandle is not mandatory now (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: add imx7ulp support (Torez Smith) [1686205]
+- [usb] usb: typec: Make sure an alt mode exist before getting its partner (Torez Smith) [1686205]
+- [usb] Revert "usb: mtu3: fix up undefined reference to usb_debug_root" (Torez Smith) [1686205]
+- [usb] USB: sisusbvga: Remove unneeded variable (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: fusb302: simplify getting the adapter of a client (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: ccg: add runtime pm workaround (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: ccg: enable runtime pm support (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: lpc32xx: fix return value check in lpc32xx_udc_probe() (Torez Smith) [1686205]
+- [usb] usb: gadget: dwc2: fix zlp handling (Torez Smith) [1686205]
+- [usb] usb: dwc2: Set actual frame number for completed ISOC transfer for none DDMA (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: lpc32xx: allocate descriptor with GFP_ATOMIC (Torez Smith) [1686205]
+- [usb] usb: gadget: fusb300_udc: Fix memory leak of fusb300->ep (Torez Smith) [1686205]
+- [usb] usb: phy: mxs: Disable external charger detect in mxs_phy_hw_init() (Torez Smith) [1686205]
+- [usb] usb: dwc2: Fix DMA cache alignment issues (Torez Smith) [1686205]
+- [usb] usb: dwc2: host: Fix wMaxPacketSize handling (fix webcam regression) (Torez Smith) [1686205]
+- [usb] USB: move usb debugfs directory creation to the usb common core (Torez Smith) [1686205]
+- [usb] usb: host: u132-hcd: remove unneeded variable frame (Torez Smith) [1686205]
+- [usb] media: usb/gadget/f_uvc: set device_caps in struct video_device (Torez Smith) [1686205]
+- [usb] usbip: Replace unused kvec array with single variable in vhci_send_cmd_unlink() (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: remove controlling PWEN/EXTLP support (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: remove sudmac support (Torez Smith) [1686205]
+- [usb] usb: xhci: Add Clear_TT_Buffer (Torez Smith) [1686205]
+- [usb] usb: Add devaddr in struct usb_device (Torez Smith) [1686205]
+- [usb] USB: Fix chipmunk-like voice when using Logitech C270 for recording audio (Torez Smith) [1686205]
+- [usb] USB: usb-storage: Add new ID to ums-realtek (Torez Smith) [1686205]
+- [usb] USB: use genalloc for USB HCs with local memory (Torez Smith) [1686205]
+- [usb] usb: phy: mv-usb: Remove set but not used variable 'phy' (Torez Smith) [1686205]
+- [usb] usb: ftdi-elan: fix possible condition with no effect (if == else) (Torez Smith) [1686205]
+- [usb] USB: ohci-spear: Remove set but not used variable 'ohci' (Torez Smith) [1686205]
+- [usb] USB: atm: ueagle-atm.c: remove redundant license text (Torez Smith) [1686205]
+- [usb] USB: atm: ueagle-atm.c: fix SPDX tag to be BSD2 (Torez Smith) [1686205]
+- [usb] usb: ohci-s3c2410: Remove set but not used variable 'hcd' (Torez Smith) [1686205]
+- [usb] usb: cdc-wdm: remove redundant assignment to rv (Torez Smith) [1686205]
+- [usb] usb: host: ohci-st: Remove set but not used variable 'ohci' (Torez Smith) [1686205]
+- [usb] usb: host: ehci-st: Remove set but not used variable 'ehci' (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: ccg: fix memory leak in do_flash (Torez Smith) [1686205]
+- [include] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 (Torez Smith) [1686205]
+- [tools] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156 (Torez Smith) [1686205]
+- [usb] usbip: usbip_host: fix stub_dev lock context imbalance regression (Torez Smith) [1686205]
+- [tools] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 61 (Torez Smith) [1686205]
+- [usb] usb: avoid redundant allocation and free of memory (Torez Smith) [1686205]
+- [usb] signal/usb: Replace kill_pid_info_as_cred with kill_pid_usb_asyncio (Torez Smith) [1686205]
+- [usb] xhci: Use zu for printing size_t type (Torez Smith) [1686205]
+- [usb] xhci: Convert xhci_handshake() to use readl_poll_timeout_atomic() (Torez Smith) [1686205]
+- [usb] xhci: Fix immediate data transfer if buffer is already DMA mapped (Torez Smith) [1686205]
+- [usb] usb: xhci: avoid null pointer deref when bos field is NULL (Torez Smith) [1686205]
+- [usb] usb: xhci: Fix a potential null pointer dereference in xhci_debugfs_create_endpoint() (Torez Smith) [1686205]
+- [usb] xhci: update bounce buffer with correct sg num (Torez Smith) [1686205]
+- [tools] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 13 (Torez Smith) [1686205]
+- [usb] USB: serial: option: add Telit 0x1260 and 0x1261 compositions (Torez Smith) [1686205]
+- [usb] USB: serial: pl2303: add Allied Telesis VT-Kit3 (Torez Smith) [1686205]
+- [usb] USB: serial: option: add support for Simcom SIM7500/SIM7600 RNDIS mode (Torez Smith) [1686205]
+- [tools] treewide: Add SPDX license identifier - Makefile/Kconfig (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: renesas_usbhs: Add support for r7s9210 (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Add support for RZ/A2 (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: support byte addressable CFIFO (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: add support for CNEN bit (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: move flags to param (Torez Smith) [1686205]
+- [usb] usb: core: hub: Disable hub-initiated U1/U2 (Torez Smith) [1686205]
+- [usb] usb: core: hub: Enable/disable U1/U2 in configured state (Torez Smith) [1686205]
+- [usb] USB: rio500: simplify locking (Torez Smith) [1686205]
+- [usb] USB: rio500: fix memory leak in close after disconnect (Torez Smith) [1686205]
+- [usb] USB: rio500: refuse more than one device at a time (Torez Smith) [1686205]
+- [usb] usbip: usbip_host: fix BUG: sleeping function called from invalid context (Torez Smith) [1686205]
+- [usb] USB: sisusbvga: fix oops in error path of sisusb_probe (Torez Smith) [1686205]
+- [usb] USB: Add LPM quirk for Surface Dock GigE adapter (Torez Smith) [1686205]
+- [usb] usb: mtu3: fix up undefined reference to usb_debug_root (Torez Smith) [1686205]
+- [usb] USB: Fix slab-out-of-bounds write in usb_get_bos_descriptor (Torez Smith) [1686205]
+- [usb] usb: remove redundant 'default n' from Kconfig-s (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Use specific struct instead of USBHS_TYPE_* enums (Torez Smith) [1686205]
+- [usb] USB: OHCI: remove space before open square bracket '[' (Torez Smith) [1686205]
+- [usb] usb: exynos: add workaround for the USB device bindings conflict (Torez Smith) [1686205]
+- [usb] usbip: usbip_host: cleanup do_rebind() return path (Torez Smith) [1686205]
+- [usb] USB: serial: f81232: clear overrun flag (Torez Smith) [1686205]
+- [usb] USB: serial: f81232: fix interrupt worker not stop (Torez Smith) [1686205]
+- [usb] usb: dwc3: Rename DWC3_DCTL_LPM_ERRATA (Torez Smith) [1686205]
+- [usb] usb: dwc3: Fix default lpm_nyet_threshold value (Torez Smith) [1686205]
+- [usb] usb: dwc3: debug: Print GET_STATUS(device) tracepoint (Torez Smith) [1686205]
+- [usb] usb: dwc3: Do core validation early on probe (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Set lpm_capable (Torez Smith) [1686205]
+- [usb] usb: gadget: atmel: tie wake lock to running clock (Torez Smith) [1686205]
+- [usb] usb: gadget: atmel: support USB suspend (Torez Smith) [1686205]
+- [usb] usb: gadget: atmel_usba_udc: simplify setting of interrupt-enabled mask (Torez Smith) [1686205]
+- [usb] dwc2: gadget: Fix completed transfer size calculation in DDMA (Torez Smith) [1686205]
+- [usb] usb: dwc2: Set lpm mode parameters depend on HW configuration (Torez Smith) [1686205]
+- [usb] usb: dwc2: Fix channel disable flow (Torez Smith) [1686205]
+- [usb] usb: dwc2: Set actual frame number for completed ISOC transfer (Torez Smith) [1686205]
+- [usb] usb: gadget: do not use __constant_cpu_to_le16 (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Increase descriptors count for ISOC's (Torez Smith) [1686205]
+- [usb] usb: dwc3: move synchronize_irq() out of the spinlock protected block (Torez Smith) [1686205]
+- [usb] usb: dwc3: Free resource immediately after use (Torez Smith) [1686205]
+- [usb] usb: dwc3: of-simple: Convert to bulk clk API (Torez Smith) [1686205]
+- [usb] usb: dwc2: Delayed status support (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: lpc32xx: rework interrupt handling (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: lpc32xx: add support for stotg04 phy (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: lpc32xx: properly setup phy interrupts (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: lpc32xx: simplify vbus handling (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: lpc32xx: simplify probe (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Move gadget phy init into core phy init (Torez Smith) [1686205]
+- [usb] usb: dwc2: Move phy init into core (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Replace phyif with phy_utmi_width (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Remove duplicated phy init (Torez Smith) [1686205]
+- [usb] usb: dwc2: Move UTMI_PHY_DATA defines closer (Torez Smith) [1686205]
+- [usb] usb: dwc2: optionally assert phy reset when waking up (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: dwc2: Document quirk to reset PHY upon wakeup (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: dwc2: document the vbus-supply property (Torez Smith) [1686205]
+- [usb] USB: UDC: net22{80, 72}: remove mistaken test of req->zero (Torez Smith) [1686205]
+- [usb] USB: UDC: net2280: Remove redundant "if" condition (Torez Smith) [1686205]
+- [usb] usb: gadget: fsl: fix link error against usb-gadget module (Torez Smith) [1686205]
+- [usb] usb: gadget: f_ncm: Add OS descriptor support (Torez Smith) [1686205]
+- [usb] usb: gadget: f_ncm: Fix NTP-32 support (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Reject LPM token during Control transfers (Torez Smith) [1686205]
+- [usb] USB: Export usb_wakeup_enabled_descendants() (Torez Smith) [1686205]
+- [usb] usb: dwc2: bus suspend/resume for hosts with DWC2_POWER_DOWN_PARAM_NONE (Torez Smith) [1686205]
+- [usb] usb: dwc3: Add Amlogic G12A DWC3 glue (Torez Smith) [1686205]
+- [usb] usb: dwc2: Add Amlogic G12A DWC2 Params (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: dwc3: Add Amlogic G12A DWC3 Glue Bindings (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: dwc2: Add Amlogic G12A DWC2 Compatible (Torez Smith) [1686205]
+- [usb] usb: gadget: f_fs: don't free buffer prematurely (Torez Smith) [1686205]
+- [usb] USB: serial: io_edgeport: fix up switch fall-through comments (Torez Smith) [1686205]
+- [usb] usb: usb251xb: Add US port lanes inversion property (Torez Smith) [1686205]
+- [usb] usb: usb251xb: Create a ports field collector method (Torez Smith) [1686205]
+- [documentation] usb: usb251xb: Add US lanes inversion dts-bindings (Torez Smith) [1686205]
+- [usb] usb: isp1760-hcd: Fix fall-through annotations (Torez Smith) [1686205]
+- [usb] usb: musb: dsps: Use dev_get_drvdata() (Torez Smith) [1686205]
+- [usb] usb: musb: jz4740: obtain USB PHY from devicetree (Torez Smith) [1686205]
+- [usb] usb: musb: jz4740: Let the platform probe the PHY (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: Add usb-phy property to the jz4740-musb node (Torez Smith) [1686205]
+- [soc] soc: sunxi: Fix missing dependency on REGMAP_MMIO (Torez Smith) [1686205]
+- [usb] usb: musb: omap2430: Add support for idling phy when musb is idle (Torez Smith) [1686205]
+- [usb] usb: musb: Silence error about blacklisting hubs if !CONFIG_USB (Torez Smith) [1686205]
+- [usb] usbip: vhci_hcd: Mark expected switch fall-through (Torez Smith) [1686205]
+- [usb] UAS: fix alignment of scatter/gather segments (Torez Smith) [1686205]
+- [include] USB: serial: drop unused iflag macro (Torez Smith) [1686205]
+- [usb] USB: serial: drop unnecessary goto (Torez Smith) [1686205]
+- [usb] USB: serial: clean up throttle handling (Torez Smith) [1686205]
+- [usb] USB: serial: fix unthrottle races (Torez Smith) [1686205]
+- [usb] USB: cdc-acm: clean up throttle handling (Torez Smith) [1686205]
+- [usb] USB: cdc-acm: fix unthrottle races (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: ccg: fix missing unlock on error in ccg_cmd_write_flash_row() (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: renesas_usbhs: Add support for r8a77470 (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb-xhci: Add r8a774c0 support (Torez Smith) [1686205]
+- [usb] usb: xhci: add endpoint context tracing when an endpoint is added (Torez Smith) [1686205]
+- [usb] xhci: Add tracing for input control context (Torez Smith) [1686205]
+- [usb] xhci: add port and bus number to port dynamic debugging (Torez Smith) [1686205]
+- [usb] usb: xhci: add Immediate Data Transfer support (Torez Smith) [1686205]
+- [usb] usb: usb251xb: Add an empty hub' i2c-bus segment checker (Torez Smith) [1686205]
+- [usb] USB: serial: spcp8x5: simplify init_termios (Torez Smith) [1686205]
+- [usb] USB: serial: oti6858: simplify init_termios (Torez Smith) [1686205]
+- [usb] USB: serial: iuu_phoenix: simplify init_termios (Torez Smith) [1686205]
+- [usb] USB: serial: iuu_phoenix: drop bogus initial cflag (Torez Smith) [1686205]
+- [usb] USB: serial: cypress_m8: clean up initial-termios handling (Torez Smith) [1686205]
+- [usb] USB: serial: cypress_m8: drop unused termios (Torez Smith) [1686205]
+- [usb] USB: serial: cypress_m8: drop unused driver data flag (Torez Smith) [1686205]
+- [usb] USB: serial: fix initial-termios handling (Torez Smith) [1686205]
+- [usb] USB: yurex: Fix protection fault after device removal (Torez Smith) [1686205]
+- [usb] usb: usbip: fix isoc packet num validation in get_pipe (Torez Smith) [1686205]
+- [usb] usb/hcd: Send a uevent signaling that the host controller had died (Torez Smith) [1686205]
+- [usb] usb: typec: Add driver for NVIDIA Alt Modes (Torez Smith) [1686205]
+- [usb] usb: typec: displayport: Export probe and remove functions (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: Support for DisplayPort alt mode (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: Preliminary support for alternate modes (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: ccg: add firmware flashing support (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: ccg: add get_fw_info function (Torez Smith) [1686205]
+- [usb] usb: usb251xb: Lock i2c-bus segment the hub resides (Torez Smith) [1686205]
+- [usb] usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON (Torez Smith) [1686205]
+- [usb] usbip: stub_rx: tidy the indenting in is_clear_halt_cmd() (Torez Smith) [1686205]
+- [usb] USB: serial: digi_acceleport: clean up set_termios (Torez Smith) [1686205]
+- [usb] USB: serial: digi_acceleport: clean up modem-control handling (Torez Smith) [1686205]
+- [usb] USB: core: Fix bug caused by duplicate interface PM usage counter (Torez Smith) [1686205]
+- [usb] usb: mtu3: get optional clock by devm_clk_get_optional() (Torez Smith) [1686205]
+- [usb] usb: chipidea: msm: get optional clock by devm_clk_get_optional() (Torez Smith) [1686205]
+- [usb] usb: dwc2: get optional clock by devm_clk_get_optional() (Torez Smith) [1686205]
+- [usb] usb: misc: usb3503: get optional clock by devm_clk_get_optional() (Torez Smith) [1686205]
+- [usb] usb: host: xhci-plat: get optional clock by devm_clk_get_optional() (Torez Smith) [1686205]
+- [usb] usb: xhci-mtk: get optional clock by devm_clk_get_optional() (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Revert "Resolve fixed power role contract setup" (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Implement start_toggling for all port-types (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Notify the tcpc to start connection-detection for SRPs (Torez Smith) [1686205]
+- [usb] usb: host: use usb_endpoint_maxp instead of usb_maxpacket (Torez Smith) [1686205]
+- [usb] USB: dummy-hcd: Fix failure to give back unlinked URBs (Torez Smith) [1686205]
+- [usb] USB: core: Don't unbind interfaces following device reset failure (Torez Smith) [1686205]
+- [usb] usb-storage: Set virt_boundary_mask to avoid SG overflows (Torez Smith) [1686205]
+- [usb] USB: core: Fix unterminated string returned by usb_string() (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: Convert the generic EHCI binding to YAML (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: Convert the generic OHCI binding to YAML (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: Convert USB HCD generic binding to YAML (Torez Smith) [1686205]
+- [usb] USB: hub: Remove returned value 'status' since never used (Torez Smith) [1686205]
+- [usb] usb: host: xhci-tegra: Add Tegra186 XUSB support (Torez Smith) [1686205]
+- [usb] usb: host: xhci-tegra: Selectively program IPFS (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: xhci-tegra: Add Tegra186 support (Torez Smith) [1686205]
+- [usb] usb: ohci-da8xx: drop the vbus GPIO (Torez Smith) [1686205]
+- [usb] usb: ohci-da8xx: disable the regulator if the overcurrent irq fired (Torez Smith) [1686205]
+- [usb] usb: ohci-da8xx: let the regulator framework keep track of use count (Torez Smith) [1686205]
+- [usb] USB: serial: pl2303: fix tranceiver suspend mode (Torez Smith) [1686205]
+- [usb] USB: serial: pl2303: fix non-supported xon/xoff (Torez Smith) [1686205]
+- [usb] USB: serial: option: add Olicard 600 (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: add new device id (Torez Smith) [1686205]
+- [usb] usb: u132-hcd: fix resource leak (Torez Smith) [1686205]
+- [usb] usb: cdc-acm: fix race during wakeup blocking TX traffic (Torez Smith) [1686205]
+- [usb] usb: mtu3: fix EXTCON dependency (Torez Smith) [1686205]
+- [usb] usb: usb251xb: fix to avoid potential NULL pointer dereference (Torez Smith) [1686205]
+- [usb] usb: core: Try generic PHY_MODE_USB_HOST if usb_phy_roothub_set_mode fails (Torez Smith) [1686205]
+- [usb] usb: introduce usb_ep_type_string() function (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Make fusb302_irq_work static (Torez Smith) [1686205]
+- [usb] usb: u132-hcd: fix potential NULL pointer dereference (Torez Smith) [1686205]
+- [usb] usb: typec: wcove: Provide fwnode for the port (Torez Smith) [1686205]
+- [usb] usb: core: Add PM runtime calls to usb_hcd_platform_shutdown (Torez Smith) [1686205]
+- [usb] usb: sierra: fix a missing check of device_create_file (Torez Smith) [1686205]
+- [usb] usb: mtu3: add a function to switch mailbox state to string (Torez Smith) [1686205]
+- [usb] usb: mtu3: add tracepoints to help debug (Torez Smith) [1686205]
+- [usb] usb: mtu3: move vbus and mode debugfs interfaces into mtu3_debugfs.c (Torez Smith) [1686205]
+- [usb] usb: mtu3: add debugfs interface files (Torez Smith) [1686205]
+- [usb] usb: mtu3: supports new QMU format (Torez Smith) [1686205]
+- [usb] usb: mtu3: rebuild qmu_gpd struct to prepare to support new QMU format (Torez Smith) [1686205]
+- [usb] usb: mtu3: fix transfer error of USB3 Gen2 isoc (Torez Smith) [1686205]
+- [usb] usb: mtu3: rebuild the code of getting vbus regulator (Torez Smith) [1686205]
+- [usb] usb: mtu3: remove unnecessary local variable @req (Torez Smith) [1686205]
+- [usb] usb: mtu3: print useful information also for device and host modes (Torez Smith) [1686205]
+- [usb] usb: mtu3: check return value of devm_extcon_register_notifier() (Torez Smith) [1686205]
+- [usb] xhci: Don't let USB3 ports stuck in polling state prevent suspend (Torez Smith) [1686205]
+- [usb] usb: xhci: dbc: Don't free all memory with spinlock held (Torez Smith) [1686205]
+- [usb] xhci: Fix port resume done detection for SS ports with LPM enabled (Torez Smith) [1686205]
+- [usb] USB: serial: mos7720: fix mos_parport refcount imbalance on error path (Torez Smith) [1686205]
+- [usb] USB: gadget: f_hid: fix deadlock in f_hidg_write() (Torez Smith) [1686205]
+- [usb] usb: gadget: net2272: Fix net2272_dequeue() (Torez Smith) [1686205]
+- [usb] usb: gadget: net2280: Fix net2280_dequeue() (Torez Smith) [1686205]
+- [usb] usb: gadget: net2280: Fix overrun of OUT messages (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: add support for Comet Lake PCH ID (Torez Smith) [1686205]
+- [usb] usb: usb251xb: Remove unnecessary comparison of unsigned integer with >= 0 (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Add __printf attribute to fusb302_log function (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Improve suspend/resume handling (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: 2 small misc. fixes (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Fix fusb302_handle_togdone_src Ra handling (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Check vconn is off when we start toggling (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Fold fusb302_set_cc_pull into tcpm_set_cc (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Refactor / simplify tcpm_set_cc() (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Make fusb302_set_cc_polarity also set pull ups / downs (Torez Smith) [1686205]
+- [usb] usb: typec: pi3usb30532: Keep orientation when setting mux to safe mode (Torez Smith) [1686205]
+- [usb] usb: typec: altmodes/displayport: Fall back to multi-func pins (Torez Smith) [1686205]
+- [usb] usbip: Remove unnecessary null check (Torez Smith) [1686205]
+- [include] USB: usb.h: tweak struct urb to remove wasted space (Torez Smith) [1686205]
+- [usb] usb: common: Consider only available nodes for dr_mode (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Try PD-2.0 if sink does not respond to 3.0 source-caps (Torez Smith) [1686205]
+- [usb] usb: host: xhci-rcar: Add XHCI_TRUST_TX_LENGTH quirk (Torez Smith) [1686205]
+- [usb] usb: typec: Fix unchecked return value (Torez Smith) [1686205]
+- [usb] USB: serial: option: set driver_info for SIM5218 and compatibles (Torez Smith) [1686205]
+- [usb] USB: serial: ftdi_sio: add additional NovaTech products (Torez Smith) [1686205]
+- [usb] USB: serial: option: add support for Quectel EM12 (Torez Smith) [1686205]
+- [usb] wusb: Remove unnecessary static function ckhdid_printf (Torez Smith) [1686205]
+- [usb] usb: core: make default autosuspend delay configurable (Torez Smith) [1686205]
+- [usb] usb: core: Fix typo in description of "authorized_default" (Torez Smith) [1686205]
+- [usb] usb: chipidea: Refactor USB PHY selection and keep a single PHY (Torez Smith) [1686205]
+- [usb] usb: chipidea: Grab the (legacy) USB PHY by phandle first (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: set power polarity (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: ci-hdrc-usb2: add property power-active-high (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: remove unused header files (Torez Smith) [1686205]
+- [usb] usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() (Torez Smith) [1686205]
+- [usb] usb: core: add option of only authorizing internal devices (Torez Smith) [1686205]
+- [usb] usb: typec: tps6598x: handle block writes separately with plain-I2C adapters (Torez Smith) [1686205]
+- [usb] usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on INTEL_SUNRISEPOINT_LP_XHCI (Torez Smith) [1686205]
+- [usb] usb: xhci: fix build warning - missing prototype (Torez Smith) [1686205]
+- [usb] usb: xhci: dbc: Fixing typo error (Torez Smith) [1686205]
+- [usb] usb: xhci: remove unused member 'parent' in xhci_regset struct (Torez Smith) [1686205]
+- [usb] xhci: tegra: Prevent error pointer dereference (Torez Smith) [1686205]
+- [usb] USB: serial: option: add Telit ME910 ECM composition (Torez Smith) [1686205]
+- [usb] usb: core: Replace hardcoded check with inline function from usb.h (Torez Smith) [1686205]
+- [usb] usb: core: skip interfaces disabled in devicetree (Torez Smith) [1686205]
+- [usb] usb: typec: mux: remove redundant check on variable match (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: fix GPIO in autosuspend (Torez Smith) [1686205]
+- [usb] usb: dwc3: drd: Defer probe if extcon device is not found (Torez Smith) [1686205]
+- [usb] cdc-wdm: pass return value of recover_from_urb_loss (Torez Smith) [1686205]
+- [usb] usb: host: oxu210hp-hcd: remove set but not used variables 'uframes, transfer_buffer_length' (Torez Smith) [1686205]
+- [usb] USB: renesas_usbhs: fix spelling mistake "doens't" -> "doesn't" (Torez Smith) [1686205]
+- [usb] usb: wusbcore: wa-xfer: use struct_size() helper (Torez Smith) [1686205]
+- [usb] usb: core: config: Use struct_size() in kzalloc() (Torez Smith) [1686205]
+- [usb] usb: dwc2: use struct_size() in kzalloc() (Torez Smith) [1686205]
+- [usb] usb: typec: mux: Fix unsigned comparison with less than zero (Torez Smith) [1686205]
+- [usb] USB: serial: ftdi_sio: add ID for Hjelmslund Electronics USB485 (Torez Smith) [1686205]
+- [usb] usb: typec: mux: Find the muxes by also matching against the device node (Torez Smith) [1686205]
+- [usb] usb: typec: Find the ports by also matching against the device node (Torez Smith) [1686205]
+- [usb] usb: roles: Find the muxes by also matching against the device node (Torez Smith) [1686205]
+- [usb] usb: typec: Rationalize the API for the muxes (Torez Smith) [1686205]
+- [usb] usb: typec: tps6598x: Check mode of operation (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Remove unused functions (Torez Smith) [1686205]
+- [usb] USB: musb: mark expected switch fall-through (Torez Smith) [1686205]
+- [usb] usb: phy: twl6030-usb: fix possible use-after-free on remove (Torez Smith) [1686205]
+- [usb] usb: misc: usbtest: add super-speed isoc support (Torez Smith) [1686205]
+- [usb] usb: dwc3: Reset num_trbs after skipping (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: don't enable interrupt when disabling endpoint (Torez Smith) [1686205]
+- [usb] scsi: uas: Use scsi_et_resid() where appropriate (Torez Smith) [1686205]
+- [usb] usb: host: oxu210hp-hcd: fix indentation issue (Torez Smith) [1686205]
+- [usb] usb: ohci-da8xx: add vbus and overcurrent gpios (Torez Smith) [1686205]
+- [usb] usb: ohci-da8xx: add a helper pointer to &pdev->dev (Torez Smith) [1686205]
+- [usb] usb: ohci-da8xx: add a new line after local variables (Torez Smith) [1686205]
+- [usb] usb: musb: Kconfig: Drop dependency on CONFIG_USB for jz4740 (Torez Smith) [1686205]
+- [usb] usb: musb: Kconfig: Drop dependency on MACH_JZ4740 for jz4740 (Torez Smith) [1686205]
+- [usb] usb: musb: jz4740: Add support for devicetree (Torez Smith) [1686205]
+- [documentation] Documentation: dt: Add binding info for jz4740-musb driver (Torez Smith) [1686205]
+- [usb] USB: musb: fix indentation issue on a return statement (Torez Smith) [1686205]
+- [usb] fotg210-udc: pass struct device to DMA API functions (Torez Smith) [1686205]
+- [usb] fotg210-udc: remove a bogus dma_sync_single_for_device call (Torez Smith) [1686205]
+- [usb] usb: gadget: Change Andrzej Pietrasiewicz's e-mail address (Torez Smith) [1686205]
+- [usb] usb: f_fs: Avoid crash due to out-of-scope stack ptr access (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: Remove debug.h file (Torez Smith) [1686205]
+- [usb] usb: typec: Prepare alt mode enter/exit reporting for UCSI alt mode support (Torez Smith) [1686205]
+- [usb] usb: typec: displayport: Move the Configuration VDO helpers to the header (Torez Smith) [1686205]
+- [usb] USB: Fix configuration selection issues introduced in v4.20.0 (Torez Smith) [1686205]
+- [usb] usb: handle warm-reset port requests on hub resume (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: add ID for Ingenico 3070 (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: add minimum baud rate for CP2105 SCI (Torez Smith) [1686205]
+- [usb] usb: dwc3: haps: Workaround matching VID PID (Torez Smith) [1686205]
+- [usb] usb: gadget: f_fs: preserve wMaxPacketSize across usb_ep_autoconfig() call (Torez Smith) [1686205]
+- [usb] usb: gadget: move non-super speed code out of usb_ep_autoconfig_ss() (Torez Smith) [1686205]
+- [usb] usb: gadget: function: sync f_uac1 ac header baInterfaceNr (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Add scatter-gather mode (Torez Smith) [1686205]
+- [usb] usb: gadget: fix various indentation issues (Torez Smith) [1686205]
+- [usb] usb: dwc2: Fix EP TxFIFO number setting (Torez Smith) [1686205]
+- [usb] udc: net2280: Fix net2280_disable (Torez Smith) [1686205]
+- [usb] USB: gadget: Improve kerneldoc for usb_ep_dequeue() (Torez Smith) [1686205]
+- [usb] usb: dwc3: debug: purge usage of strcat (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: add GPIO support for CP2104 (Torez Smith) [1686205]
+- [usb] usb: dwc3: trace: pass trace buffer size to decoding functions (Torez Smith) [1686205]
+- [usb] usb: core: Move variable initialization to appropriate place (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: remove DWC3_EP_END_TRANSFER_PENDING (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: early giveback if End Transfer already completed (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: don't use resource_index as a flag (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: clear DWC3_EP_TRANSFER_STARTED on cmd complete (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Correct the PPS out_volt calculation (Torez Smith) [1686205]
+- [usb] usb: gadget: musb: fix short isoc packets with inventra dma (Torez Smith) [1686205]
+- [usb] usbip: Fix vep_free_request() null pointer checks on input args (Torez Smith) [1686205]
+- [usb] usb: ehci-orion: add S2RAM support (Torez Smith) [1686205]
+- [usb] usb: ehci-orion: avoid double PHY initialization (Torez Smith) [1686205]
+- [usb] usb: host: xhci: mvebu: add reset on resume quirk (Torez Smith) [1686205]
+- [usb] usb: core: comply to PHY framework (Torez Smith) [1686205]
+- [usb] usb: phy: am335x: fix race condition in _probe (Torez Smith) [1686205]
+- [usb] usb: dwc3: exynos: Fix error handling of clk_prepare_enable (Torez Smith) [1686205]
+- [usb] usb: phy: fix link errors (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: net2272: Fix bitwise and boolean operations (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Handle 0 xfer length for OUT EP (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: remove req->started flag (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: prevent dwc3_request from being queued twice (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: add dwc3_request status tracking (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: add support for r8a774c0 (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: add uvcg_warn macro (Torez Smith) [1686205]
+- [usb] usb: gadget: u_serial: process RX in workqueue instead of tasklet (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: renesas_usbhs: Add r8a774c0 support (Torez Smith) [1686205]
+- [documentation] usb: gadget: udc: renesas_usb3: Add bindings for r8a774c0 (Torez Smith) [1686205]
+- [usb] usb: gadget: aspeed: fix typo (Torez Smith) [1686205]
+- [usb] usb: dwc3: keystone: Add support for ti, am654-dwc3 (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: keystone-usb: Add ti, am654-dwc3 support (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Fix OTG events when gadget driver isn't loaded (Torez Smith) [1686205]
+- [usb] usb: dwc3: qcom: Add support for MSM8998 (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: Add support for msm8998 (Torez Smith) [1686205]
+- [usb] usb: gadget: Remove dead branch code (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: support all gpios on CP2102N QFN28 package (Torez Smith) [1686205]
+- [usb] usb: ftdi-elan: Fix if == else warnings in ftdi_elan_respond_engine (Torez Smith) [1686205]
+- [usb] usb: typec: tpcm: improve error handling of tcpm_register_port (Torez Smith) [1686205]
+- [usb] usb: misc: usb3503: Add system sleep support in non-I2C mode (Torez Smith) [1686205]
+- [usb] usbip: Fix vhci_urb_enqueue() URB null transfer buffer error path (Torez Smith) [1686205]
+- [usb] usb: sisusb: remove useless macros and compact the code (Torez Smith) [1686205]
+- [usb] usb: sisusb: let files build only when needed (Torez Smith) [1686205]
+- [usb] usb: sisusb_con, cleanup configs (Torez Smith) [1686205]
+- [usb] usb: sisusb_con, convert addr macros to functions (Torez Smith) [1686205]
+- [usb] usb: ftdi-elan: remove a unnecessary variable 'empty_packets' (Torez Smith) [1686205]
+- [usb] usb: assign ACPI companions for embedded USB devices (Torez Smith) [1686205]
+- [usb] usb: split code locating ACPI companion into port and device (Torez Smith) [1686205]
+- [usb] USB: host: whci: rename Kbuild file (Torez Smith) [1686205]
+- [usb] USB: remove README file (Torez Smith) [1686205]
+- [usb] USB: add missing SPDX lines to Kconfig and Makefiles (Torez Smith) [1686205]
+- [usb] USB: storage: karma: add whitespace after declarations (Torez Smith) [1686205]
+- [usb] USB: serial: keyspan_usa: add proper SPDX lines for .h files (Torez Smith) [1686205]
+- [usb] USB: EHCI: ehci-mv: add MODULE_DEVICE_TABLE (Torez Smith) [1686205]
+- [usb] USB: Consolidate LPM checks to avoid enabling LPM twice (Torez Smith) [1686205]
+- [usb] USB: Add new USB LPM helpers (Torez Smith) [1686205]
+- [usb] drivers: usb :fsl: Remove USB Errata checking code (Torez Smith) [1686205]
+- [usb] usb: kconfig: remove dependency FSL_SOC for ehci fsl driver (Torez Smith) [1686205]
+- [usb] usb: ehci: fsl: Update register accessing for arm/arm64 platforms (Torez Smith) [1686205]
+- [usb] usb: usb251xb: add usb data lane port swap feature (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: usb251xb: add documentation for data lane swapping (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: replace udelay() with usleep_range() (Torez Smith) [1686205]
+- [usb] USB: host: ohci-at91: add sam9x60-sfr definition for ohci (Torez Smith) [1686205]
+- [usb] xhci: Use struct_size() in kzalloc() (Torez Smith) [1686205]
+- [usb] usb: hub: add retry routine after intr URB submit error (Torez Smith) [1686205]
+- [usb] USB: leds: fix regression in usbport led trigger (Torez Smith) [1686205]
+- [usb] usb: chipidea: fix static checker warning for NULL pointer (Torez Smith) [1686205]
+- [usb] USB: usbip: delete README file (Torez Smith) [1686205]
+- [usb] USB: serial: pl2303: add new PID to support PL2303TB (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Fix Remote Wakeup interrupt bit clearing (Torez Smith) [1686205]
+- [usb] USB: serial: ftdi_sio: fix GPIO not working in autosuspend (Torez Smith) [1686205]
+- [usb] usb: gadget: Potential NULL dereference on allocation error (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Fix the uninitialized link_state when udc starts (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Clear req->needs_extra_trb flag on cleanup (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: synchronize_irq dwc irq in suspend (Torez Smith) [1686205]
+- [usb] USB: core: urb: Use struct_size() in kmalloc() (Torez Smith) [1686205]
+- [usb] cross-tree: phase out dma_zalloc_coherent() (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: reduce indentation (Torez Smith) [1686205]
+- [usb] usb: devio: update max count of DPs per interval for ISOC (Torez Smith) [1686205]
+- [usb] usb: host: u132-hcd: fix a couple of indentation issues (Torez Smith) [1686205]
+- [usb] usb: core: Simplify return value of usb_get_configuration() (Torez Smith) [1686205]
+- [usb] USB: Add USB_QUIRK_DELAY_CTRL_MSG quirk for Corsair K70 RGB (Torez Smith) [1686205]
+- [usb] usbcore: Select only first configuration for non-UAC3 compliant devices (Torez Smith) [1686205]
+- [usb] USB: storage: add quirk for SMI SM3350 (Torez Smith) [1686205]
+- [usb] USB: storage: don't insert sane sense for SPC3+ when bad sense specified (Torez Smith) [1686205]
+- [usb] usb: cdc-acm: send ZLP for Telit 3G Intel based modems (Torez Smith) [1686205]
+- [usb] USB: serial: simple: add Motorola Tetra TPG2200 device id (Torez Smith) [1686205]
+- [usb] USB: serial: option: add Fibocom NL678 series (Torez Smith) [1686205]
+- [usb] cdc-acm: fix abnormal DATA RX issue for Mediatek Preloader (Torez Smith) [1686205]
+- [usb] usb: r8a66597: Fix a possible concurrency use-after-free bug in r8a66597_endpoint_disable() (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Extend the matching rules on PPS APDO selection (Torez Smith) [1686205]
+- [documentation] usb: typec: Improve Alt Mode documentation (Torez Smith) [1686205]
+- [usb] usb: musb: dsps: fix runtime pm for peripheral mode (Torez Smith) [1686205]
+- [usb] usb: musb: dsps: fix otg state machine (Torez Smith) [1686205]
+- [usb] USB: serial: pl2303: add ids for Hewlett-Packard HP POS pole displays (Torez Smith) [1686205]
+- [usb] PCI: Move Synopsys HAPS platform device IDs (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: add support for RZ/G2E (Torez Smith) [1686205]
+- [usb] usb: ehci-omap: Fix deferred probe for phy handling (Torez Smith) [1686205]
+- [usb] usb: roles: Add a description for the class to Kconfig (Torez Smith) [1686205]
+- [usb] xhci: Don't prevent USB2 bus suspend in state check intended for USB3 only (Torez Smith) [1686205]
+- [usb] USB: serial: option: add Telit LN940 series (Torez Smith) [1686205]
+- [usb] USB: serial: option: add Fibocom NL668 series (Torez Smith) [1686205]
+- [usb] USB: serial: option: add Simcom SIM7500/SIM7600 (MBIM mode) (Torez Smith) [1686205]
+- [usb] USB: serial: option: add GosunCn ZTE WeLink ME3630 (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: mark PM functions as __maybe_unused (Torez Smith) [1686205]
+- [usb] usb: core: Remove unnecessary memset() (Torez Smith) [1686205]
+- [usb] usb: host: isp1362-hcd: convert to DEFINE_SHOW_ATTRIBUTE (Torez Smith) [1686205]
+- [usb] usb: dwc2: Fix disable all EP's on disconnect (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: allow to configure oc polarity on i.MX25 (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: Warn if oc polarity isn't specified (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: support configuring for active low oc signal (Torez Smith) [1686205]
+- [documentation] doc: usb: ci-hdrc-usb2: Add pinctrl properties for HSIC pin groups (Torez Smith) [1686205]
+- [usb] usb: chipidea: host: override ehci->hub_control (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: add HSIC support (Torez Smith) [1686205]
+- [usb] usb: chipidea: add flag for imx hsic implementation (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Disable CSP for stream OUT ep (Torez Smith) [1686205]
+- [usb] USB: serial: mos7840: remove set but not used variables 'number, serial' (Torez Smith) [1686205]
+- [usb] USB: serial: option: add HP lt4132 (Torez Smith) [1686205]
+- [usb] usb: dwc2: disable power_down on Amlogic devices (Torez Smith) [1686205]
+- [usb] xhci: move usb2 get port status link resume handling to its own function (Torez Smith) [1686205]
+- [usb] xhci: refactor U0 link state handling in get_port_status (Torez Smith) [1686205]
+- [usb] xhci: cleanup code that sets portstatus and portchange bits (Torez Smith) [1686205]
+- [usb] xhci: move usb2 speficic bits to own function in get_port_status call (Torez Smith) [1686205]
+- [usb] xhci: move usb3 speficic bits to own function in get_port_status call (Torez Smith) [1686205]
+- [usb] xhci: remove unused hcd_index() (Torez Smith) [1686205]
+- [usb] xhci: move bus_state structure under the xhci_hub structure (Torez Smith) [1686205]
+- [usb] xhci: remove the unused sw_lpm_support (Torez Smith) [1686205]
+- [usb] Revert "usb: dwc3: pci: Use devm functions to get the phy GPIOs" (Torez Smith) [1686205]
+- [usb] USB: gadget: udc: s3c2410_udc: convert to DEFINE_SHOW_ATTRIBUTE (Torez Smith) [1686205]
+- [usb] usb: mtu3: fix dbginfo in qmu_tx_zlp_error_handler (Torez Smith) [1686205]
+- [usb] usb: dwc3: trace: add missing break statement to make compiler happy (Torez Smith) [1686205]
+- [usb] xhci: Prevent U1/U2 link pm states if exit latency is too long (Torez Smith) [1686205]
+- [usb] xhci: workaround CSS timeout on AMD SNPS 3.0 xHC (Torez Smith) [1686205]
+- [tty] USB: serial: console: fix reported terminal settings (Torez Smith) [1686205]
+- [usb] usb: appledisplay: Remove unnecessary spinlock (Torez Smith) [1686205]
+- [usb] usb: appledisplay: Set urb transfer_flags to URB_NO_TRANSFER_DMA_MAP (Torez Smith) [1686205]
+- [usb] usb: quirk: add no-LPM quirk on SanDisk Ultra Flair device (Torez Smith) [1686205]
+- [usb] USB: Fix invalid-free bug in port_over_current_notify() (Torez Smith) [1686205]
+- [usb] usb: appledisplay: Add 27" Apple Cinema Display (Torez Smith) [1686205]
+- [platform] staging: typec: fusb302: Rename fcs, extcon-name to linux, extcon-name (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Report isoc transfer frame number (Torez Smith) [1686205]
+- [include] usb: gadget: Introduce frame_number to usb_request (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Use SIMPLE_DEV_PM_OPS macro (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Remove dummy runtime PM callbacks (Torez Smith) [1686205]
+- [usb] usb: dwc2: host: use hrtimer for NAK retries (Torez Smith) [1686205]
+- [usb] usb: hub: delay hub autosuspend if USB3 port is still link training (Torez Smith) [1686205]
+- [usb] usb: mtu3: clear SOFTCONN when clear USB3_EN if work as HS mode (Torez Smith) [1686205]
+- [usb] usb: mtu3: enable SETUPENDISR interrupt (Torez Smith) [1686205]
+- [usb] usb: mtu3: fix the issue about SetFeature(U1/U2_Enable) (Torez Smith) [1686205]
+- [usb] usb: mtu3: enable hardware remote wakeup from L1 automatically (Torez Smith) [1686205]
+- [usb] usb: mtu3: remove QMU checksum (Torez Smith) [1686205]
+- [usb] usb/mtu3: power down device ip at setup (Torez Smith) [1686205]
+- [usb] usb: dwc2: Disable power down feature on Samsung SoCs (Torez Smith) [1686205]
+- [usb] usb: dwc3: Correct the logic for checking TRB full in __dwc3_prepare_one_trb() (Torez Smith) [1686205]
+- [usb] usb: dwc3: don't issue no-op trb for stream capable endpoints (Torez Smith) [1686205]
+- [usb] usb: dwc3: update stream id in depcmd (Torez Smith) [1686205]
+- [usb] USB: serial: mos7840: add a product ID for the new product (Torez Smith) [1686205]
+- [usb] USB: serial: mos7840: clean up register handling (Torez Smith) [1686205]
+- [usb] usb: gadget: u_ether: fix unsafe list iteration (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: check if dep->frame_number is still valid (Torez Smith) [1686205]
+- [usb] USB: omap_udc: fix rejection of out transfers when DMA is used (Torez Smith) [1686205]
+- [usb] USB: omap_udc: fix USB gadget functionality on Palm Tungsten E (Torez Smith) [1686205]
+- [usb] USB: omap_udc: fix omap_udc_start() on 15xx machines (Torez Smith) [1686205]
+- [usb] USB: omap_udc: fix crashes on probe error and module removal (Torez Smith) [1686205]
+- [usb] USB: omap_udc: use devm_request_irq() (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: remove unnecessary dev_info() (Torez Smith) [1686205]
+- [usb] usb: dwc3: trace: log ep commands in hex (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: return errors from __dwc3_gadget_start_isoc() (Torez Smith) [1686205]
+- [usb] usb: core: quirks: add RESET_RESUME quirk for Cherry G230 Stream series (Torez Smith) [1686205]
+- [usb] USB: usb-storage: Add new IDs to ums-realtek (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: remove wait_end_transfer (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: move requests to cancelled_list (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: introduce cancelled_list (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: extract dwc3_gadget_ep_skip_trbs() (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: use num_trbs when skipping TRBs on ->dequeue() (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: track number of TRBs per request (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: combine unaligned and zero flags (Torez Smith) [1686205]
+- [usb] usb: dwc3: Add workaround for isoc start transfer failure (Torez Smith) [1686205]
+- [documentation] usb: dwc3: Add disabling of start_transfer failure quirk (Torez Smith) [1686205]
+- [usb] usb: dwc3: Track DWC_usb31 VERSIONTYPE (Torez Smith) [1686205]
+- [usb] usb: gadget: f_fs: Allow scatter-gather buffers (Torez Smith) [1686205]
+- [usb] usb: gadget: f_fs: Add support for CCID descriptors (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: constify vb2_ops structure (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Accept LPM token when TxFIFO is not empty (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Fix WkupAlert interrupt handler (Torez Smith) [1686205]
+- [usb] usb: dwc3: Set default mode for DWC_usb3 v3.30a and higher (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: add a safety connection way for forced_b_device (Torez Smith) [1686205]
+- [usb] usb: dwc3: drd: Add support for DR detection through extcon (Torez Smith) [1686205]
+- [usb] usb: dwc3: drd: Switch to device property for 'extcon' handling (Torez Smith) [1686205]
+- [usb] usb: dwc3: don't log probe deferrals; but do log other error codes (Torez Smith) [1686205]
+- [usb] usb: gadget: aspeed-vhub: constify usb_gadget_ops structure (Torez Smith) [1686205]
+- [usb] usb: dwc3: Support option to disable USB2 LPM (Torez Smith) [1686205]
+- [documentation] usb: dwc3: Add a property to disable USB2 LPM (Torez Smith) [1686205]
+- [usb] usb: dwc3: Set GUSB2PHYCFG.ENBLSLPM (Torez Smith) [1686205]
+- [usb] usb: dwc3: debugfs: Print/set link state for peripheral mode (Torez Smith) [1686205]
+- [usb] usb: dwc3: debugfs: Properly print/set link state for HS (Torez Smith) [1686205]
+- [usb] usb: dwc3: debugfs: Dump internal LSP and ep registers (Torez Smith) [1686205]
+- [usb] usb: dwc3: debugfs: Print eps Tx/RxFIFO in bytes (Torez Smith) [1686205]
+- [usb] usb: dwc3: debugfs: Properly name Tx/RxFIFO (Torez Smith) [1686205]
+- [usb] Revert "usb: dwc3: gadget: skip Set/Clear Halt when invalid" (Torez Smith) [1686205]
+- [usb] drivers: usb: early: clean up indentation, remove extraneous tabs (Torez Smith) [1686205]
+- [usb] USB: ene_usb6250: add missing indentation (Torez Smith) [1686205]
+- [usb] USB: serial: ftdi_sio: use rounding when calculating baud rate divisors (Torez Smith) [1686205]
+- [usb] USB: serial: f81534: fix reading old/new IC config (Torez Smith) [1686205]
+- [usb] usb: cdc-acm: add entry for Hiro (Conexant) modem (Torez Smith) [1686205]
+- [usb] usb: xhci: Prevent bus suspend if a port connect change or polling state is detected (Torez Smith) [1686205]
+- [usb] usb: core: Fix hub port connection events lost (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: fix ISOC TRB type on unaligned transfers (Torez Smith) [1686205]
+- [usb] Revert "usb: gadget: ffs: Fix BUG when userland exits with submitted AIO transfers" (Torez Smith) [1686205]
+- [usb] usb: dwc2: pci: Fix an error code in probe (Torez Smith) [1686205]
+- [usb] usb: dwc3: Fix NULL pointer exception in dwc3_pci_remove() (Torez Smith) [1686205]
+- [usb] USB: serial: mos7840: remove set but not used variables 'st, data1, iflag' (Torez Smith) [1686205]
+- [usb] USB: serial: quatech2: remove set but not used variable 'port_priv' (Torez Smith) [1686205]
+- [include] USB: remove the unused struct hcd_timeout definition (Torez Smith) [1686205]
+- [usb] usb: typec: ucsi: add support for Cypress CCGx (Torez Smith) [1686205]
+- [usb] usb: xhci: fix timeout for transition from RExit to U0 (Torez Smith) [1686205]
+- [usb] usb: xhci: fix uninitialized completion when USB3 port got wrong status (Torez Smith) [1686205]
+- [usb] xhci: Add check for invalid byte size error when UAS devices are connected (Torez Smith) [1686205]
+- [usb] xhci: handle port status events for removed USB3 hcd (Torez Smith) [1686205]
+- [usb] xhci: Fix leaking USB3 shared_hcd at xhci removal (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: xhci-tegra: Add power-domain details (Torez Smith) [1686205]
+- [usb] USB: misc: appledisplay: add 20" Apple Cinema Display (Torez Smith) [1686205]
+- [usb] USB: quirks: Add no-lpm quirk for Raydium touchscreens (Torez Smith) [1686205]
+- [usb] usb: quirks: Add delay-init quirk for Corsair K70 LUX RGB (Torez Smith) [1686205]
+- [usb] USB: Wait for extra delay time after USB_PORT_FEAT_RESET for quirky hub (Torez Smith) [1686205]
+- [usb] USB: gadget: udc: fix spelling mistake "intrerrupt" -> "interrupt" (Torez Smith) [1686205]
+- [usb] usb: host: remove unnecessary condition check (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: charge current handling for sink during hard reset (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Do not disconnect link for self powered devices (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Properly check last unaligned/zero chain TRB (Torez Smith) [1686205]
+- [usb] usb: dwc3: core: Clean up ULPI device (Torez Smith) [1686205]
+- [usb] usb: phy: ab8500: silence some uninitialized variable warnings (Torez Smith) [1686205]
+- [usb] usb: xhci: tegra: Add genpd support (Torez Smith) [1686205]
+- [usb] usb: xhci: tegra: Power-off power-domains on removal (Torez Smith) [1686205]
+- [usb] usbip:vudc: BUG kmalloc-2048 (Not tainted): Poison overwritten (Torez Smith) [1686205]
+- [tools] usbip: tools: fix atoi() on non-null terminated string (Torez Smith) [1686205]
+- [usb] USB: misc: appledisplay: fix backlight update_status return code (Torez Smith) [1686205]
+- [usb] USB: fix the usbfs flag sanitization for control transfers (Torez Smith) [1686205]
+- [documentation] usb: host: add DT bindings for faraday fotg2 (Torez Smith) [1686205]
+- [usb] usb: host: ohci-at91: fix request of irq for optional gpio (Torez Smith) [1686205]
+- [usb] usb: xhci: pci: Enable Intel USB role mux on Apollo Lake platforms (Torez Smith) [1686205]
+- [usb] usb: roles: intel_xhci: Fix Unbalanced pm_runtime_enable (Torez Smith) [1686205]
+- [usb] cdc-acm: correct counting of UART states in serial state notification (Torez Smith) [1686205]
+- [usb] cdc-acm: do not reset notification buffer index upon urb unlinking (Torez Smith) [1686205]
+- [usb] cdc-acm: fix race between reset and control messaging (Torez Smith) [1686205]
+- [usb] usb: usbip: Fix BUG: KASAN: slab-out-of-bounds in vhci_hub_control() (Torez Smith) [1686205]
+- [usb] usb/early: remove set but not used variable 'remain_length' (Torez Smith) [1686205]
+- [usb] usb: typec: Fix copy/paste on typec_set_vconn_role() kerneldoc (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Report back negotiated PPS voltage and current (Torez Smith) [1686205]
+- [usb] USB: core: remove set but not used variable 'udev' (Torez Smith) [1686205]
+- [usb] usb: core: fix memory leak on port_dev_path allocation (Torez Smith) [1686205]
+- [usb] USB: net2280: Remove ->disconnect() callback from net2280_pullup() (Torez Smith) [1686205]
+- [usb] usb: dwc2: disable power_down on rockchip devices (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: add support for r8a77990 (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: renesas_usb3: add bindings for r8a77990 (Torez Smith) [1686205]
+- [usb] USB: serial: cypress_m8: remove set but not used variable 'iflag' (Torez Smith) [1686205]
+- [usb] USB: serial: cypress_m8: fix interrupt-out transfer length (Torez Smith) [1686205]
+- [usb] USB: serial: ftdi_sio: add support for FT232R CBUS gpios (Torez Smith) [1686205]
+- [usb] USB: serial: ftdi_sio: fix gpio name collisions (Torez Smith) [1686205]
+- [netdrv] net: usbnet: make driver_info const (Torez Smith) [1686205]
+- [usb] usb: typec: remove set but not used variables 'snk_ma, min_mv' (Torez Smith) [1686205]
+- [usb] usb: export firmware port location in sysfs (Torez Smith) [1686205]
+- [usb] usb: hub: try old enumeration scheme first for high speed devices (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb-xhci: Document r8a7744 support (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: renesas_usbhs: Add support for r8a7744 (Torez Smith) [1686205]
+- [usb] usb: typec: tcpm: Fix APDO PPS order checking to be based on voltage (Torez Smith) [1686205]
+- [tools] usbip: fix vhci_hcd controller counting (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: Fix b-device mode for "workaround" (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Add handler for WkupAlert interrupt (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: enable WKUP_ALERT interrupt (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Program GREFCLK register (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: Add parameters for GREFCLK register (Torez Smith) [1686205]
+- [usb] usb: dwc2: Add definitions for new registers (Torez Smith) [1686205]
+- [usb] usb: dwc2: Update target (u)frame calculation (Torez Smith) [1686205]
+- [usb] usb: dwc2: Add dwc2_gadget_dec_frame_num_by_one() function (Torez Smith) [1686205]
+- [usb] usb: dwc2: Add core parameter for service interval support (Torez Smith) [1686205]
+- [usb] usb: dwc2: Update registers definitions to support service interval (Torez Smith) [1686205]
+- [usb] usb: gadget: f_uac2: disable IN/OUT ep if unused (Torez Smith) [1686205]
+- [usb] USB: gadget core: Issue ->disconnect() callback from usb_gadget_disconnect() (Torez Smith) [1686205]
+- [usb] usb: dwc3: Fix spelling of 'optimizations' (Torez Smith) [1686205]
+- [usb] usb: gadget: atmel: remove pointless retrieval of DT name property (Torez Smith) [1686205]
+- [usb] usb: gadget: fsl_udc_core: fixup struct_udc_setup documentation (Torez Smith) [1686205]
+- [usb] usb: gadget: fsl_udc_core: check allocation return value and cleanup on failure (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Check ENBLSLPM before sending ep command (Torez Smith) [1686205]
+- [usb] usb: dwc2: fix unbalanced use of external vbus-supply (Torez Smith) [1686205]
+- [usb] usb: dwc2: fix call to vbus supply exit routine, call it unlocked (Torez Smith) [1686205]
+- [usb] usb: dwc2: fix a race with external vbus supply (Torez Smith) [1686205]
+- [usb] usb: dwc2: get optional vbus-supply regulator once (Torez Smith) [1686205]
+- [usb] usb: dwc3: add EXTCON dependency for qcom (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: atmel: handle at91sam9rl PMC (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: fotg210-udc: Fix a sleep-in-atomic-context bug in fotg210_get_status() (Torez Smith) [1686205]
+- [usb] usb: dwc2: Disable all EP's on disconnect (Torez Smith) [1686205]
+- [documentation] usb: dwc3: exynos: Add support for Exynos5433 variant with all clocks (Torez Smith) [1686205]
+- [usb] usb: dwc3: exynos: Rework clock handling and prepare for new variants (Torez Smith) [1686205]
+- [usb] usb: dwc3: exynos: Remove dead code (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: Remove unnecessary parentheses (Torez Smith) [1686205]
+- [usb] usb: dwc2: remove set but unused variable (Torez Smith) [1686205]
+- [usb] usb: gadget: fix spelling mistakeis "queing" -> "queuing" (Torez Smith) [1686205]
+- [usb] usb: xhci-mtk: resume USB3 roothub first (Torez Smith) [1686205]
+- [usb] xhci: Add missing CAS workaround for Intel Sunrise Point xHCI (Torez Smith) [1686205]
+- [usb] usb: cdc_acm: Do not leak URB buffers (Torez Smith) [1686205]
+- [usb] usb: usbtmc: uninitialized symbol 'actual' in usbtmc_ioctl_abort_bulk_in_tag (Torez Smith) [1686205]
+- [usb] usb: usbtmc: uninitialized symbol 'actual' in usbtmc_ioctl_clear (Torez Smith) [1686205]
+- [usb] usb: usbtmc: uninitialized symbol 'actual' in usbtmc_read (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Fix memory leak in usbtmc_ioctl_request (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: add support for R-Car E3 (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: renesas_usbhs: add bindings for r8a77990 (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: rcar3: Use OTG mode for R-Car D3 (Torez Smith) [1686205]
+- [usb] Revert "usb: renesas_usbhs: set the mode by using extcon state for non-otg channel" (Torez Smith) [1686205]
+- [usb] Revert "usb: renesas_usbhs: add extcon notifier to set mode for non-otg channel" (Torez Smith) [1686205]
+- [usb] usb: core: added uevent for over-current (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Resolve fixed power role contract setup (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Correct spelling mistake for toggling state (Torez Smith) [1686205]
+- [usb] xhci: Avoid USB autosuspend when resuming USB2 ports (Torez Smith) [1686205]
+- [usb] usb: xhci: tegra: Firmware header is little endian (Torez Smith) [1686205]
+- [usb] xhci: Use soft retry to recover faster from transaction errors (Torez Smith) [1686205]
+- [usb] usb: host: xhci-plat: add platform TPL support (Torez Smith) [1686205]
+- [usb] usb: xhci-mtk: supports SSP without external USB3 gen2 hub (Torez Smith) [1686205]
+- [usb] usb: xhci-mtk: supports bandwidth scheduling with multi-TT (Torez Smith) [1686205]
+- [usb] usb: xhci-mtk: improve bandwidth scheduling (Torez Smith) [1686205]
+- [usb] usb: xhci-mtk: fix ISOC error when interval is zero (Torez Smith) [1686205]
+- [usb] usb: xhci-mtk: use maximum ESIT payload of endpiont context (Torez Smith) [1686205]
+- [usb] usb: host: Replace empty define with do while (Torez Smith) [1686205]
+- [usb] USB: serial: ftdi_sio: implement GPIO support for FT-X devices (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Use u to print unsigned int values (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Simplify attributes macros (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Fix operation on big endian platforms (Torez Smith) [1686205]
+- [uapi] usb: video: Fix endianness mismatches in descriptor structures (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: Remove uvc_set_trace_param() function (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: Replace plain printk() with dev_*() (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: Only halt video streaming endpoint in bulk mode (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: Factor out video USB request queueing (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Sort frame intervals upon writing (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Prevent format changes after linking header (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Add bFrameIndex attributes (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Add bFormatIndex attributes (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Add interface number attributes (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Allocate groups dynamically (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Drop leaked references to config items (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: dwc2: add description for px30 (Torez Smith) [1686205]
+- [usb] USB: serial: simple: add Motorola Tetra MTP6550 id (Torez Smith) [1686205]
+- [usb] USB: serial: cypress_m8: fix spelling mistake "retreiving" -> "retrieving" (Torez Smith) [1686205]
+- [usb] USB: STORAGE: ISD200 Fixed coding style issue "space required in for loop" (Torez Smith) [1686205]
+- [usb] usb: typec: Group all TCPCI/TCPM code together (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: reorganizing the probe function a little (Torez Smith) [1686205]
+- [usb] usb: typec: class: Don't use port parent for getting mux handles (Torez Smith) [1686205]
+- [usb] usb: typec: mux: Take care of driver module reference counting (Torez Smith) [1686205]
+- [usb] usb: core: safely deal with the dynamic quirk lists (Torez Smith) [1686205]
+- [usb] usb: roles: Take care of driver module reference counting (Torez Smith) [1686205]
+- [usb] usb: phy: mxs: fix spelling mistake "stardard" -> "standard" (Torez Smith) [1686205]
+- [usb] usb: host: fotg2: Fix potential NULL dereference (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Add multiple clocks management (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: renesas_usbhs: add clock-names property (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Add reset_control (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: ohci: Add clocks description for R-Car Gen3 (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: ehci: Add clocks description for R-Car Gen3 (Torez Smith) [1686205]
+- [usb] usbcore: Select UAC3 configuration for audio if present (Torez Smith) [1686205]
+- [documentation] usb: gadget: udc: renesas_usb3: Add r8a774a1 support (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: renesas_usbhs: Add r8a774a1 support (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb-xhci: Add r8a774a1 support (Torez Smith) [1686205]
+- [documentation] dt-bindings: ehci-mv: add bindings (Torez Smith) [1686205]
+- [usb] USB: EHCI: ehci-mv: add DT support (Torez Smith) [1686205]
+- [usb] USB: EHCI: ehci-mv: use phy-pxa-usb (Torez Smith) [1686205]
+- [usb] USB: EHCI: ehci-mv: remove private_init (Torez Smith) [1686205]
+- [usb] USB: EHCI: make ehci-mv a separate driver (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Remove sysfs group TermChar and auto_abort (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Fix split quoted string in debug message (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Remove redundant macro USBTMC_SIZE_IOBUFFER (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Remove redundant code (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl USBTMC_IOCTL_API_VERSION (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Replace USBTMC_TIMEOUT macros for control messages (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Fix ioctl USBTMC_IOCTL_ABORT_BULK_OUT (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Fix ioctl USBTMC_IOCTL_ABORT_BULK_IN (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Fix ioctl USBTMC_IOCTL_CLEAR (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Optimize usbtmc_read (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Optimize usbtmc_write (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl USBTMC_IOCTL_AUTO_ABORT (Torez Smith) [1686205]
+- [usb] usb: usbtmc: add ioctl USBTMC_IOCTL_MSG_IN_ATTR (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl USBTMC488_IOCTL_WAIT_SRQ (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Fix suspend/resume (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl USBTMC_IOCTL_CLEANUP_IO (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl USBTMC_IOCTL_CANCEL_IO (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl for vendor specific read (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl USBTMC_IOCTL_WRITE_RESULT (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl for vendor specific write (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl for generic requests on control (Torez Smith) [1686205]
+- [usb] usb: typec: fusb302: Populate tcpc fwnode for TCPM property handling (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb: fusb302: Use usb-connector bindings for configuration (Torez Smith) [1686205]
+- [documentation] dt-bindings: connector: Add support for USB-PD PPS APDOs to bindings (Torez Smith) [1686205]
+- [usb] USB: handle NULL config in usb_find_alt_setting() (Torez Smith) [1686205]
+- [usb] USB: fix error handling in usb_driver_claim_interface() (Torez Smith) [1686205]
+- [usb] USB: remove LPM management from usb_driver_claim_interface() (Torez Smith) [1686205]
+- [usb] USB: usbdevfs: restore warning for nonsensical flags (Torez Smith) [1686205]
+- [usb] USB: usbdevfs: sanitize flags more (Torez Smith) [1686205]
+- [usb] Revert "usb: cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt()" (Torez Smith) [1686205]
+- [usb] usb: musb: dsps: do not disable CPPI41 irq in driver teardown (Torez Smith) [1686205]
+- [usb] usb: chipidea: Fix otg event handler (Torez Smith) [1686205]
+- [usb] usb: chipidea: Prevent unbalanced IRQ disable (Torez Smith) [1686205]
+- [documentation] doc: usb: ci-hdrc-usb2: Add pinctrl properties definition (Torez Smith) [1686205]
+- [usb] usb: chipidea: Add dynamic pinctrl selection (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: make MODULE_LICENCE and SPDX-identifier match (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: enable OTG overcurrent in case USB subsystem is already started (Torez Smith) [1686205]
+- [usb] usb: chipidea: imx: do not use preprocessor conditionals for PM (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Add section header comments (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Don't wrap groups unnecessarily (Torez Smith) [1686205]
+- [usb] mos7720: bury dead TIOCM... in ->ioctl() (Torez Smith) [1686205]
+- [usb] USB: serial: option: add two-endpoints device-id flag (Torez Smith) [1686205]
+- [usb] USB: serial: option: improve Quectel EP06 detection (Torez Smith) [1686205]
+- [usb] Revert "cdc-acm: implement put_char() and flush_chars()" (Torez Smith) [1686205]
+- [usb] usb: Change usb_of_get_companion_dev() place to usb/common (Torez Smith) [1686205]
+- [usb] usb: xhci: fix interrupt transfer error happened on MTK platforms (Torez Smith) [1686205]
+- [usb] usb: core: phy: clean up return value check about devm_of_phy_get_by_index() (Torez Smith) [1686205]
+- [usb] usb: mtu3: disable vbus rise/fall interrupts of ltssm (Torez Smith) [1686205]
+- [usb] USB: wusbcore: Switch to bitmap_zalloc() (Torez Smith) [1686205]
+- [usb] usb: misc: fix obsolete function (Torez Smith) [1686205]
+- [usb] usb: iowarrior: replace kmalloc with kmalloc_array (Torez Smith) [1686205]
+- [usb] USB: OHCI: Remove USB bus reset delay from OHCI handover code (Torez Smith) [1686205]
+- [usb] usb: host: fotg2: add silicon clock handling (Torez Smith) [1686205]
+- [usb] USB: typec: fsusb302: remove unused variables snk_pdo and toggling_mode_name (Torez Smith) [1686205]
+- [usb] usb storage: remove inherited SCSI dependency for USB_STORAGE_ENE_UB6250 (Torez Smith) [1686205]
+- [usb] usb storage: group dependent USB storage Kconfig entries together (Torez Smith) [1686205]
+- [usb] USB: Removing NULL check for pool since dma_pool_destroy is safe (Torez Smith) [1686205]
+- [usb] usb: cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt() (Torez Smith) [1686205]
+- [usb] usb: misc: uss720: Fix two sleep-in-atomic-context bugs (Torez Smith) [1686205]
+- [usb] usb: host: u132-hcd: Fix a sleep-in-atomic-context bug in u132_get_frame() (Torez Smith) [1686205]
+- [usb] usb: Avoid use-after-free by flushing endpoints early in usb_set_interface() (Torez Smith) [1686205]
+- [usb] usb/typec: fix kernel-doc notation warning for typec_match_altmode (Torez Smith) [1686205]
+- [usb] usb: Don't die twice if PCI xhci host is not responding in resume (Torez Smith) [1686205]
+- [usb] usb: mtu3: fix error of xhci port id when enable U3 dual role (Torez Smith) [1686205]
+- [usb] usb: uas: add support for more quirk flags (Torez Smith) [1686205]
+- [usb] USB: Add quirk to support DJI CineSSD (Torez Smith) [1686205]
+- [usb] usb: typec: fix kernel-doc parameter warning (Torez Smith) [1686205]
+- [usb] usb/dwc3/gadget: fix kernel-doc parameter warning (Torez Smith) [1686205]
+- [usb] USB: yurex: Check for truncation in yurex_read() (Torez Smith) [1686205]
+- [usb] USB: yurex: Fix buffer over-read in yurex_write() (Torez Smith) [1686205]
+- [usb] usb: host: xhci-plat: Iterate over parent nodes for finding quirks (Torez Smith) [1686205]
+- [usb] xhci: Fix use after free for URB cancellation on a reallocated endpoint (Torez Smith) [1686205]
+- [usb] USB: add quirk for WORLDE Controller KS49 or Prodipe MIDI 49C USB controller (Torez Smith) [1686205]
+- [usb] usb: dwc2: Fix call location of dwc2_check_core_endianness (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: Fix return value check in dwc3_byt_enable_ulpi_refclock() (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: fix maxpacket size of ep0 (Torez Smith) [1686205]
+- [usb] usb: gadget: fotg210-udc: Fix memory leak of fotg210->ep (Torez Smith) [1686205]
+- [usb] USB: net2280: Fix erroneous synchronization change (Torez Smith) [1686205]
+- [usb] usb: dwc3: of-simple: avoid unused function warnings (Torez Smith) [1686205]
+- [usb] USB: serial: ti_usb_3410_5052: fix array underflow in completion handler (Torez Smith) [1686205]
+- [usb] USB: serial: io_ti: fix array underflow in completion handler (Torez Smith) [1686205]
+- [usb] USB: serial: pl2303: add a new device id for ATEN (Torez Smith) [1686205]
+- [usb] usb: renesas_usbhs: Kconfig: convert to SPDX identifiers (Torez Smith) [1686205]
+- [usb] usb: dwc3: gadget: Check MaxPacketSize from descriptor (Torez Smith) [1686205]
+- [usb] usb: dwc2: Turn on uframe_sched on "stm32f4x9_fsotg" platforms (Torez Smith) [1686205]
+- [usb] usb: dwc2: Turn on uframe_sched on "amlogic" platforms (Torez Smith) [1686205]
+- [usb] usb: dwc2: Turn on uframe_sched on "his" platforms (Torez Smith) [1686205]
+- [usb] usb: dwc2: Turn on uframe_sched on "bcm" platforms (Torez Smith) [1686205]
+- [usb] usb: dwc2: gadget: ISOC's starting flow improvement (Torez Smith) [1686205]
+- [usb] usb: dwc2: Make dwc2_readl/writel functions endianness-agnostic (Torez Smith) [1686205]
+- [usb] usb: dwc3: core: Enable AutoRetry feature in the controller (Torez Smith) [1686205]
+- [usb] usb: dwc3: Set default mode for dwc_usb31 (Torez Smith) [1686205]
+- [usb] usb: gadget: udc: renesas_usb3: Add register of usb role switch (Torez Smith) [1686205]
+- [usb] usb: dwc2: replace ioread32/iowrite32_rep with dwc2_readl/writel_rep (Torez Smith) [1686205]
+- [usb] usb: dwc2: Modify dwc2_readl/writel functions prototype (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: Intel Merrifield can be host (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: Supply device properties via driver data (Torez Smith) [1686205]
+- [documentation] arm64: dts: dwc3: description of incr burst type (Torez Smith) [1686205]
+- [usb] usb: dwc3: Enable undefined length INCR burst type (Torez Smith) [1686205]
+- [usb] usb: dwc3: add global soc bus configuration reg0 (Torez Smith) [1686205]
+- [usb] usb: dwc3: Describe 'wakeup_work' field of struct dwc3_pci (Torez Smith) [1686205]
+- [usb] USB: option: add support for DW5821e (Torez Smith) [1686205]
+- [usb] usb: dwc3: change stream event enable bit back to 13 (Torez Smith) [1686205]
+- [usb] usb: dwc3: of-simple: reset host controller at suspend/resume (Torez Smith) [1686205]
+- [usb] usb: gadget: storage: Remove reference counting (Torez Smith) [1686205]
+- [usb] usb: gadget: storage: Add error handling for no memory (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: Use devm functions to get the phy GPIOs (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: Enable ULPI Refclk on platforms where the firmware does not (Torez Smith) [1686205]
+- [usb] usb: dwc3: pci: Add GPIO lookup table on platforms without ACPI GPIO resources (Torez Smith) [1686205]
+- [usb] USB: gadget: Document that certain ep operations can be called in interrupt context (Torez Smith) [1686205]
+- [usb] usb: gadget: configfs: avoid spaces for indentation (Torez Smith) [1686205]
+- [usb] usb: dwc3: Add a glue driver for Synopsys HAPS platform (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: Expose configuration name through video node (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: configfs: Move function to avoid forward declaration (Torez Smith) [1686205]
+- [usb] usb: dwc2: Move dwc2_readl/writel functions after hsotg structure (Torez Smith) [1686205]
+- [usb] usb: gadget: tcm: fix spelling mistake: "Manufactor" -> "Manufacturer" (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: Move trace parameter to function module (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: Minimize #include in headers (Torez Smith) [1686205]
+- [usb] usb: gadget: uvc: Move userspace API definition to public header (Torez Smith) [1686205]
+- [usb] usb: host: exynos: Remove support for Exynos5440 (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add support for 32 bit compat applications (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl for termination character (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl for EOM bit (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctl for trigger (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Add ioctls to set/get usb timeout (Torez Smith) [1686205]
+- [usb] usb: usbtmc: use consistent timeout error (Torez Smith) [1686205]
+- [usb] usb: usbtmc: Support Read Status Byte with SRQ per file (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: implement GPIO support for CP2102N (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: improve line-speed handling for CP2104 and CP2105 (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: generalise CP2102N line-speed handling (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: improve baudrate support for CP2102N (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: honour device-type maximum line speed (Torez Smith) [1686205]
+- [usb] USB: serial: cp210x: make line-speed quantisation data driven (Torez Smith) [1686205]
+- [usb] USB: serial: iuu_phoenix: drop redundant input-speed re-encoding (Torez Smith) [1686205]
+- [usb] USB: serial: iuu_phoenix: drop unused driver-data baud rate (Torez Smith) [1686205]
+- [usb] USB: serial: mos7720: remove redundant variables iflag, mask and serial (Torez Smith) [1686205]
+- [documentation] dt-bindings: usb-xhci: Add r8a77990 support (Torez Smith) [1686205]
+- [usb] usb: host: ehci-sched: remove redundant pointer dev (Torez Smith) [1686205]
+- [usb] usb: host: u132-hcd: remove redundant variable num_ports (Torez Smith) [1686205]
+- [usb] USB: host: whci: remove redundant variable t (Torez Smith) [1686205]
+- [usb] usb: xhci: dbc: remove redundant pointer dbc (Torez Smith) [1686205]
+- [usb] usb: isp1760: remove redundant variable 'selector' (Torez Smith) [1686205]
+- [usb] usb-misc: sisusbvga: remove redundant variable modey (Torez Smith) [1686205]
+- [usb] usb: misc: uss720: remove redundant pointer usbdev (Torez Smith) [1686205]
+- [usb] usb: usbip: remove redundant pointer ep (Torez Smith) [1686205]
+- [usb] USB: serial: kl5kusb105: remove KLSI device id (Torez Smith) [1686205]
+- [usb] usb: host: xhci-rcar: Add a condition check about PLL active (Torez Smith) [1686205]
+- [usb] usb: host: xhci-rcar: Simplify getting the firmware name for R-Car Gen3 (Torez Smith) [1686205]
+- [usb] usb: host: xhci-plat: add firmware_name for R-Car Gen3 (Torez Smith) [1686205]
+- [usb] usb: typec: avoid format-overflow warning (Torez Smith) [1686205]
+- [usb] usb: typec: unlock dp->lock on error exit path, and also zero ret if successful (Torez Smith) [1686205]
+- [usb] usb: typec: fix dereference before null check on adev (Torez Smith) [1686205]
+- [usb] usb: usbtest: use irqsave() in USB's complete callback (Torez Smith) [1686205]
+- [usb] USB: serial: kobil_sct: add missing version error handling (Torez Smith) [1686205]
+- [usb] USB: serial: kobil_sct: fix modem-status error handling (Torez Smith) [1686205]
+- [usb] usb: simplify usbport trigger (Torez Smith) [1686205]
+- [include] device connection: Add fwnode member to struct device_connection (Torez Smith) [1686205]
+
+* Sun Apr 12 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.7.el8]
+- [security] KEYS: reaching the keys quotas correctly (Vladis Dronov) [1820405]
+- [security] KEYS: allow reaching the keys quotas exactly (Vladis Dronov) [1820405]
+- [infiniband] RDMA/core: Ensure security pkey modify is not lost (Kamal Heib) [1786604]
+- [infiniband] IB/hfi1: Ensure pq is not left on waitlist (Kamal Heib) [1786604 1739282]
+- [infiniband] RDMA/mad: Do not crash if the rdma device does not have a umad interface (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Fix missing error check on dev_set_name() (Kamal Heib) [1786604]
+- [infiniband] RDMA/nl: Do not permit empty devices names during RDMA_NLDEV_CMD_NEWLINK/SET (Kamal Heib) [1786604]
+- [infiniband] RDMA/iwcm: Fix iwcm work deallocation (Kamal Heib) [1786604]
+- [infiniband] RDMA/siw: Fix failure handling during device creation (Kamal Heib) [1786604]
+- [infiniband] RDMA/nldev: Fix crash when set a QP to a new counter but QPN is missing (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Fix protection fault in ib_mr_pool_destroy (Kamal Heib) [1786604]
+- [infiniband] IB/hfi1, qib: Ensure RCU is locked when accessing list (Kamal Heib) [1786604 1739282]
+- [infiniband] RDMA/core: Fix pkey and port assignment in get_new_pps (Kamal Heib) [1786604]
+- [infiniband] RMDA/cm: Fix missing ib_cm_destroy_id() in ib_cm_insert_listen() (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Fix use of logical OR in get_new_pps (Kamal Heib) [1786604]
+- [infiniband] Revert "RDMA/cma: Simplify rdma_resolve_addr() error flow" (Kamal Heib) [1786604]
+- [net] xprtrdma: Fix DMA scatter-gather list mapping imbalance (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Fix protection fault in get_pkey_idx_qp_list (Kamal Heib) [1786604]
+- [infiniband] RDMA/rxe: Fix soft lockup problem due to using tasklets in softirq (Kamal Heib) [1786604]
+- [infiniband] IB/umad: Fix kernel crash while unloading ib_umad (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Add missing list deletion on freeing event queue (Kamal Heib) [1786604]
+- [infiniband] RDMA/siw: Remove unwanted WARN_ON in siw_cm_llp_data_ready() (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Fix invalid memory access in spec_filter_size (Kamal Heib) [1786604]
+- [infiniband] IB/rdmavt: Reset all QPs when the device is shut down (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Close window for pq and request coliding (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Acquire lock to release TID entries when user file is closed (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/umem: use get_user_pages_fast() to pin DMA pages (Kamal Heib) [1786604]
+- [infiniband] RDMA/efa: Mask access flags with the correct optional range (Kamal Heib) [1786604]
+- [infiniband] RDMA/cma: Fix unbalanced cm_id reference count during address resolve (Kamal Heib) [1786604]
+- [infiniband] RDMA/umem: Fix ib_umem_find_best_pgsz() (Kamal Heib) [1786604]
+- [infiniband] IB/hfi1: Fix logical condition in msix_request_irq (Kamal Heib) [1786604 1739282]
+- [infiniband] RDMA/cm: Remove CM message structs (Kamal Heib) [1786604]
+- [infiniband] RDMA/cm: Use IBA functions for complex structure members (Kamal Heib) [1786604]
+- [infiniband] RDMA/cm: Use IBA functions for simple structure members (Kamal Heib) [1786604]
+- [infiniband] RDMA/cm: Use IBA functions for swapping get/set acessors (Kamal Heib) [1786604]
+- [infiniband] RDMA/cm: Use IBA functions for simple get/set acessors (Kamal Heib) [1786604]
+- [infiniband] RDMA/cm: Add SET/GET implementations to hide IBA wire format (Kamal Heib) [1786604]
+- [infiniband] RDMA/cm: Add accessors for CM_REQ transport_type (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Ensure that rdma_user_mmap_entry_remove() is a fence (Kamal Heib) [1786604]
+- [rdma] RDMA/uverbs: Add new relaxed ordering memory region access flag (Kamal Heib) [1786604]
+- [infiniband] RDMA/efa: Allow passing of optional access flags for MR registration (Kamal Heib) [1786604]
+- [rdma] RDMA/core: Add optional access flags range (Kamal Heib) [1786604]
+- [rdma] RDMA/uverbs: Verify MR access flags (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Remove ucontext_lock from the uverbs_destry_ufile_hw() path (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Add UVERBS_METHOD_ASYNC_EVENT_ALLOC (Kamal Heib) [1786604]
+- [infiniband] IB/srp: Never use immediate data if it is disabled by a user (Kamal Heib) [1786604]
+- [infiniband] RDMA/rxe: Compute the maximum sges and inline size based on the WQE size (Kamal Heib) [1786604]
+- [infiniband] Introduce maximum WQE size to check limits (Kamal Heib) [1786604]
+- [infiniband] RDMA/efa: Remove unused ucontext parameter from efa_qp_user_mmap_entries_remove (Kamal Heib) [1786604]
+- [infiniband] RDMA/efa: Remove {} brackets from single statement if (Kamal Heib) [1786604]
+- [infiniband] RDMA/efa: Device definitions documentation updates (Kamal Heib) [1786604]
+- [net] xprtrdma: DMA map rr_rdma_buf as each rpcrdma_rep is created (Kamal Heib) [1786604]
+- [net] xprtrdma: Destroy reps from previous connection instance (Kamal Heib) [1786604]
+- [net] xprtrdma: Destroy rpcrdma_rep when Receive is flushed (Kamal Heib) [1786604]
+- [net] xprtrdma: Allocate and map transport header buffers at connect time (Kamal Heib) [1786604]
+- [net] xprtrdma: Refactor frwr_is_supported (Kamal Heib) [1786604]
+- [net] xprtrdma: Eliminate per-transport "max pages" (Kamal Heib) [1786604]
+- [net] xprtrdma: Refactor initialization of ep->rep_max_requests (Kamal Heib) [1786604]
+- [net] xprtrdma: Make sendctx queue lifetime the same as connection lifetime (Kamal Heib) [1786604]
+- [net] xprtrdma: Eliminate ri_max_send_sges (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Use READ_ONCE for ib_ufile.async_file (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Make ib_uverbs_async_event_file into a uobject (Kamal Heib) [1786604]
+- [rdma] RDMA/core: Remove the ufile arg from rdma_alloc_begin_uobject (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Simplify type usage for ib_uverbs_async_handler() (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Do not erase the type of ib_wq.uobject (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Do not erase the type of ib_srq.uobject (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Do not erase the type of ib_qp.uobject (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Do not erase the type of ib_cq.uobject (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Make ib_ucq_object use ib_uevent_object (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Do not allow alloc_commit to fail (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Simplify destruction of FD uobjects (Kamal Heib) [1786604]
+- [infiniband] RDMA/mlx5: Use RCU and direct refcounts to keep memory alive (Kamal Heib) [1786604]
+- [infiniband] RDMA/uverbs: Remove needs_kfree_rcu from uverbs_obj_type_class (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Remove err in iw_query_port (Kamal Heib) [1786604]
+- [infiniband] IB/hfi1: Add RcvShortLengthErrCnt to hfi1stats (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Add software counter for ctxt0 seq drop (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Return void in packet receiving functions (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Decouple IRQ name from type (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Create API for auto activate (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: IB/hfi1: Add an API to handle special case drop (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Move common receive IRQ code to function (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Add fast and slow handlers for receive context (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Move chip specific functions to chip.c (Kamal Heib) [1786604 1739282]
+- [infiniband] RDMA/core: Fix locking in ib_uverbs_event_read (Kamal Heib) [1786604]
+- [infiniband] IB/core: Fix build failure without hugepages (Kamal Heib) [1786604]
+- [infiniband] IB/core: Rename event_handler_lock to qp_open_list_lock (Kamal Heib) [1786604]
+- [infiniband] IB/core: Cut down single member ib_cache structure (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Add trace points to follow MR allocation (Kamal Heib) [1786604]
+- [infiniband] RDMA/core: Trace points for diagnosing completion queue issues (Kamal Heib) [1786604]
+- [infiniband] RDMA/cma: Add trace points in RDMA Connection Manager (Kamal Heib) [1786604]
+- [infiniband] RDMA/cm: Delete unused CM ARP functions (Kamal Heib) [1786604]
+- [infiniband] RDMA/cm: Delete unused CM LAP functions (Kamal Heib) [1786604]
+- [infiniband] RDMA/rxe: Fix error type of mmap_offset (Kamal Heib) [1786604]
+- [infiniband] IB/iser: use true,false for bool variable (Kamal Heib) [1786604]
+- [infiniband] IB/hfi1: use true,false for bool variable (Kamal Heib) [1786604 1739282]
+- [infiniband] RDMA/siw: use true,false for bool variable (Kamal Heib) [1786604]
+- [infiniband] IB/core: Fix ODP with IB_ACCESS_HUGETLB handling (Kamal Heib) [1786604]
+- [infiniband] IB/core: Fix ODP get user pages flow (Kamal Heib) [1786604]
+- [infiniband] IB/rdmavt: Correct comments in rdmavt_qp.h header (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: List all receive contexts from debugfs (Kamal Heib) [1786604 1739282]
+- [infiniband] IB/hfi1: Add accessor API routines to access context members (Kamal Heib) [1786604 1739282]
+- [infiniband] RDMA/cm: Use RCU synchronization mechanism to protect cm_id_private xa_load() (Kamal Heib) [1786604]
+- [infiniband] RDMA/srpt: Remove unnecessary assertion in srpt_queue_response (Kamal Heib) [1786604]
+- [infiniband] RDMA/netlink: Do not always generate an ACK for some netlink operations (Kamal Heib) [1786604]
+- [infiniband] RDMA/siw: Simplify QP representation (Kamal Heib) [1786604]
+- [infiniband] RDMA/qedr: Add kernel capability flags for dpm enabled mode (Kamal Heib) [1786604]
+- [platform] platform/x86: intel_pmc_core: Add Intel Tiger Lake support (Alexander Beregalov) [1783390]
+- [platform] platform/x86: intel_pmc_core: Create platform dependent bitmap structs (Alexander Beregalov) [1783390]
+- [platform] platform/x86: intel_pmc_core: Clean up: Remove comma after the termination line (Alexander Beregalov) [1783390]
+- [pinctrl] pinctrl: tigerlake: Tiger Lake uses _HID enumeration (David Arcari) [1773772]
+- [pinctrl] pinctrl: sunrisepoint: Add Coffee Lake-S ACPI ID (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Pass irqchip when adding gpiochip (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Add GPIO <-> pin mapping ranges via callback (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Replace WARN with dev_info_once when setting direct-irq pin to output (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Do not clear IRQ flags on direct-irq enabled pins (David Arcari) [1773772]
+- [pinctrl] pinctrl: sunrisepoint: Add missing Interrupt Status register offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Reuse struct intel_pinctrl in the driver (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Use local variable to keep device pointer (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Keep pointer to struct device instead of its container (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Share struct intel_pinctrl for wider use (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Use GPIO direction definitions (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Use GPIO direction definitions (David Arcari) [1773772]
+- [include] gpio: Add definition for GPIO direction (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Move IRQ valid mask initialization to a dedicated callback (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Group GPIO IRQ chip initialization (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Allocate IRQ chip dynamic (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Pass irqchip when adding gpiochip (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Add GPIO <-> pin mapping ranges via callback (David Arcari) [1773772]
+- [gpio] gpiolib: Introduce ->add_pin_ranges() callback (David Arcari) [1773772]
+- [gpio] gpiolib: Initialize the hardware with a callback (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Update North Community pin list (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Really serialize all register accesses (David Arcari) [1773772]
+- [pinctrl] pinctrl: lewisburg: Update pin list according to v1.1v6 (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Missed type change to unsigned int (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Add Intel Tiger Lake pin controller support (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Use helper to restore register values on ->resume() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Drop level from warning to debug in intel_restore_hostown() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Introduce intel_restore_intmask() helper (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Introduce intel_restore_hostown() helper (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Introduce intel_restore_padcfg() helper (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Avoid potential glitches if pin is in GPIO mode (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Allocate IRQ chip dynamic (David Arcari) [1773772]
+- [pinctrl] gpio: Initialize the irqchip valid_mask with a callback (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: mark intel_pin_to_gpio __maybe_unused (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: remap the pin number to gpio offset for irq enabled pin (David Arcari) [1773772]
+- [pinctrl] pinctrl: denverton: Update pin names according to v1.08 (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Remove dev_err() usage after platform_get_irq() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Use NSEC_PER_USEC for debounce calculus (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Re-use data structures from pinctrl-intel.h (part 2) (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Remove default Interrupt Status offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: lewisburg: Provide Interrupt Status register offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: denverton: Provide Interrupt Status register offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: sunrisepoint: Provide Interrupt Status register offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: icelake: Provide Interrupt Status register offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: geminilake: Provide Interrupt Status register offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: cannonlake: Provide Interrupt Status register offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: broxton: Provide Interrupt Status register offset (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Simplify offset validation in intel_get_padcfg() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Drop double check for data in intel_pinctrl_probe_by_uid() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Use devm_platform_ioremap_resource() (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Use devm_platform_ioremap_resource() (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Use GENMASK() consistently (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Re-use data structures from pinctrl-intel.h (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Use defined macro instead of magic in byt_get_gpio_mux() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Clear interrupt status in mask/unmask callback (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Use GENMASK() consistently (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Increase readability of intel_gpio_update_pad_mode() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Retain HOSTSW_OWN for requested gpio pin (David Arcari) [1773772]
+- [pinctrl] pinctrl: pinctrl-intel: move gpio suspend/resume to noirq phase (David Arcari) [1773772]
+- [pinctrl] pinctrl: cedarfork: Update pin names according to v1.13c (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Fix potential NULL pointer dereference (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Code formatting fixes (David Arcari) [1773772]
+- [pinctrl] pinctrl: icelake: Code formatting fixes (David Arcari) [1773772]
+- [pinctrl] pinctrl: cannonlake: Code formatting fixes (David Arcari) [1773772]
+- [pinctrl] pinctrl: geminilake: Code formatting fixes (David Arcari) [1773772]
+- [pinctrl] pinctrl: broxton: Code formatting fixes (David Arcari) [1773772]
+- [pinctrl] pinctrl: lewisburg: Replace acpi.h with mod_devicetable.h (David Arcari) [1773772]
+- [pinctrl] pinctrl: denverton: Replace acpi.h with mod_devicetable.h (David Arcari) [1773772]
+- [pinctrl] pinctrl: cedarfork: Replace acpi.h with mod_devicetable.h (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Unexport intel_pinctrl_probe() (David Arcari) [1773772]
+- [pinctrl] pinctrl: sunrisepoint: Get rid of unneeded ->probe() stub (David Arcari) [1773772]
+- [pinctrl] pinctrl: icelake: Get rid of unneeded ->probe() stub (David Arcari) [1773772]
+- [pinctrl] pinctrl: cannonlake: Get rid of unneeded ->probe() stub (David Arcari) [1773772]
+- [pinctrl] pinctrl: lewisburg: Get rid of unneeded ->probe() stub (David Arcari) [1773772]
+- [pinctrl] pinctrl: denverton: Get rid of unneeded ->probe() stub (David Arcari) [1773772]
+- [pinctrl] pinctrl: cedarfork: Get rid of unneeded ->probe() stub (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: simplify getting .driver_data (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: simplify getting .driver_data (David Arcari) [1773772]
+- [pinctrl] pinctrl: geminilake: Sort register offsets by value (David Arcari) [1773772]
+- [pinctrl] pinctrl: geminilake: Get rid of unneeded ->probe() stub (David Arcari) [1773772]
+- [pinctrl] pinctrl: geminilake: Update pin list for B0 stepping (David Arcari) [1773772]
+- [pinctrl] pinctrl: broxton: Convert unsigned to unsigned int (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Convert unsigned to unsigned int (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Convert unsigned to unsigned int (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Sort headers alphabetically (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Remove unneeded MODULE_DEVICE_TABLE() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Move linux/pm.h to the local header (David Arcari) [1773772]
+- [pinctrl] pinctrl: Include <linux/gpio/driver.h> nothing else (David Arcari) [1773772]
+- [pinctrl] pinctrl: lewisburg: Define PM ops via INTEL_PINCTRL_PM_OPS() (David Arcari) [1773772]
+- [pinctrl] pinctrl: sunrisepoint: Define PM ops via INTEL_PINCTRL_PM_OPS() (David Arcari) [1773772]
+- [pinctrl] pinctrl: icelake: Define PM ops via INTEL_PINCTRL_PM_OPS() (David Arcari) [1773772]
+- [pinctrl] pinctrl: geminilake: Define PM ops via INTEL_PINCTRL_PM_OPS() (David Arcari) [1773772]
+- [pinctrl] pinctrl: denverton: Define PM ops via INTEL_PINCTRL_PM_OPS() (David Arcari) [1773772]
+- [pinctrl] pinctrl: cedarfork: Define PM ops via INTEL_PINCTRL_PM_OPS() (David Arcari) [1773772]
+- [pinctrl] pinctrl: cannonlake: Define PM ops via INTEL_PINCTRL_PM_OPS() (David Arcari) [1773772]
+- [pinctrl] pinctrl: broxton: Define PM ops via INTEL_PINCTRL_PM_OPS() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Introduce common macro for PM operations (David Arcari) [1773772]
+- [pinctrl] pinctrl: sunrisepoint: Convert to use intel_pinctrl_probe_by_hid() (David Arcari) [1773772]
+- [pinctrl] pinctrl: cannonlake: Convert to use intel_pinctrl_probe_by_hid() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Introduce intel_pinctrl_probe_by_hid() internal API (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: Convert to use device_get_match_data() (David Arcari) [1773772]
+- [pinctrl] pinctrl: geminilake: Convert to use intel_pinctrl_probe_by_uid() (David Arcari) [1773772]
+- [pinctrl] pinctrl: broxton: Convert to use intel_pinctrl_probe_by_uid() (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Introduce intel_pinctrl_probe_by_uid() internal API (David Arcari) [1773772]
+- [pinctrl] pinctrl: intel: Fix a spelling typo in kernel documentation (David Arcari) [1773772]
+- [pinctrl] pinctrl: baytrail: actually print the apparently misconfigured pin (David Arcari) [1773772]
+- [mm] mm, page_alloc: move_freepages should not examine struct page of reserved memory (Rafael Aquini) [1588584]
+- [mm] mm, page_alloc: initialize num_movable in move_freepages() (Rafael Aquini) [1588584]
+- [tools] selftests: vm: drop dependencies on page flags from mlock2 tests (Rafael Aquini) [1658886]
+- [powercap] powercap/intel_rapl: add support for TigerLake Mobile (David Arcari) [1783136]
+- [kernel] locking/lockdep: Avoid recursion in lockdep_count_{for, back}ward_deps() (Waiman Long) [1780993]
+- [kernel] locking/lockdep: Reuse freed chain_hlocks entries (Waiman Long) [1780993]
+- [kernel] locking/lockdep: Track number of zapped lock chains (Waiman Long) [1780993]
+- [kernel] locking/lockdep: Throw away all lock chains with zapped class (Waiman Long) [1780993]
+- [kernel] locking/lockdep: Track number of zapped classes (Waiman Long) [1780993]
+- [kernel] locking/lockdep: Display irq_context names in /proc/lockdep_chains (Waiman Long) [1780993]
+- [kernel] locking/lockdep: Decrement IRQ context counters when removing lock chain (Waiman Long) [1780993]
+- [kernel] locking/lockdep: Fix lockdep_stats indentation problem (Waiman Long) [1780993]
+- [kernel] locking/lockdep: Fix buffer overrun problem in stack_trace (Waiman Long) [1780993]
+- [lib] lib/string: Make memzero_explicit() inline instead of external (Florian Westphal) [1820623]
+- [crypto] crypto: sha256 - Remove sha256/224_init code duplication (Florian Westphal) [1820623]
+- [crypto] crypto: sha256 - Merge crypto/sha256.h into crypto/sha.h (Florian Westphal) [1820623]
+- [crypto] crypto: chelsio - Rename arrays to avoid conflict with crypto/sha256.h (Florian Westphal) [1820623]
+- [x86] crypto: x86 - Rename functions to avoid conflict with crypto/sha256.h (Florian Westphal) [1820623]
+- [arm64] crypto: arm64 - Rename functions to avoid conflict with crypto/sha256.h (Florian Westphal) [1820623]
+- [crypto] crypto: sha256_generic - Switch to the generic lib/crypto/sha256.c lib code (Florian Westphal) [1820623]
+- [lib] crypto: sha256 - Add sha224 support to sha256 library code (Florian Westphal) [1820623]
+- [lib] crypto: sha256 - Make lib/crypto/sha256.c suitable for generic use (Florian Westphal) [1820623]
+- [lib] crypto: sha256 - Use get/put_unaligned_be32 to get input, memzero_explicit (Florian Westphal) [1820623]
+- [s390] crypto: sha256 - Move lib/sha256.c to lib/crypto (Florian Westphal) [1820623]
+- [crypto] crypto: sha256_generic - Fix some coding style issues (Florian Westphal) [1820623]
+- [lib] crypto: sha256 - Fix some coding style issues (Florian Westphal) [1820623]
+- [thunderbolt] thunderbolt: Fix error code in tb_port_is_width_supported() (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Prevent crash if non-active NVMem file is read (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: fix memory leak of object sw (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Fix xhci check in usb4_switch_setup() (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add support for USB 3.x tunnels (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add support for Time Management Unit (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Make tb_switch_find_cap() available to other files (Jarod Wilson) [1482838]
+- [netdrv] thunderbolt: Update Kconfig entries to USB4 (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add initial support for USB4 (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Populate PG field in hot plug acknowledgment packet (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Call tb_eeprom_get_drom_offset() from tb_eeprom_read_n() (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Make tb_find_port() available to other files (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Power cycle the router if NVM authentication fails (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Do not start firmware unless asked by the user (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add bandwidth management for Display Port tunnels (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add Display Port adapter pairing and resource management (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add Display Port CM handshake for Titan Ridge devices (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add downstream PCIe port mappings for Alpine and Titan Ridge (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Expand controller name in tb_switch_is_xy() (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add default linking between lane adapters if not provided by DROM (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add support for lane bonding (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Refactor add_switch() into two functions (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add helper macro to iterate over switch ports (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Make tb_sw_write() take const parameter (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Convert DP adapter register names to follow the USB4 spec (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Convert PCIe adapter register names to follow the USB4 spec (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Convert basic adapter register names to follow the USB4 spec (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Log error if adding switch fails (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Log switch route string on config read/write timeout (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Introduce tb_switch_is_icm() (Jarod Wilson) [1482838]
+- [thunderbolt] thunderbolt: Add 'generation' attribute for devices (Jarod Wilson) [1482838]
+
+* Thu Apr 09 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.6.el8]
+- [scsi] scsi: lpfc: Copyright updates for 12.6.0.4 patches (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Update lpfc version to 12.6.0.4 (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Clean up hba max_lun_queue_depth checks (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Remove handler for obsolete ELS - Read Port Status (RPS) (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix coverity errors in fmdi attribute handling (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix compiler warning on frame size (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix registration of ELS type support in fdmi (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix broken Credit Recovery after driver load (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix lpfc_io_buf resource leak in lpfc_get_scsi_buf_s4 error path (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix RQ buffer leakage when no IOCBs available (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Make lpfc_defer_acc_rsp static (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Update lpfc version to 12.6.0.3 (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix improper flag check for IO type (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix MDS Latency Diagnostics Err-drop rates (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix unmap of dpp bars affecting next driver load (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix disablement of FC-AL on lpe35000 models (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix ras_log via debugfs (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix Fabric hostname registration if system hostname changes (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix missing check for CSF in Write Object Mbox Rsp (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix: Rework setting of fdmi symbolic node name registration (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix incomplete NVME discovery when target (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: fix spelling mistakes of asynchronous (Dick Kennedy) [1793674]
+- [scsi] scsi: lpfc: Fix memory leak on lpfc_bsg_write_ebuf_set func (Dick Kennedy) [1793674]
+- [tools] tools/power turbostat: Support Tiger Lake (David Arcari) [1783441]
+- [md] dm integrity: fix logic bug in integrity tag testing (Mike Snitzer) [1820280]
+- [md] Revert "dm: always call blk_queue_split() in dm_process_bio()" (Mike Snitzer) [1820705]
+- [md] dm integrity: fix ppc64le warning (Mike Snitzer) [1820280]
+- [md] dm writecache: add cond_resched to avoid CPU hangs (Mike Snitzer) [1820280]
+- [md] dm integrity: improve discard in journal mode (Mike Snitzer) [1820280]
+- [md] dm integrity: add optional discard support (Mike Snitzer) [1820280]
+- [md] dm integrity: allow resize of the integrity device (Mike Snitzer) [1820280]
+- [md] dm integrity: factor out get_provided_data_sectors() (Mike Snitzer) [1820280]
+- [md] dm integrity: don't replay journal data past the end of the device (Mike Snitzer) [1820280]
+- [md] dm integrity: remove sector type casts (Mike Snitzer) [1820280]
+- [md] dm integrity: fix a crash with unusually large tag size (Mike Snitzer) [1820280]
+- [md] dm verity fec: fix memory leak in verity_fec_dtr (Mike Snitzer) [1820280]
+- [md] dm writecache: optimize superblock write (Mike Snitzer) [1820280]
+- [md] dm writecache: implement gradual cleanup (Mike Snitzer) [1820280]
+- [md] dm writecache: implement the "cleaner" policy (Mike Snitzer) [1820280]
+- [md] dm writecache: do direct write if the cache is full (Mike Snitzer) [1820280]
+- [md] dm integrity: print device name in integrity_metadata() error message (Mike Snitzer) [1820280]
+- [md] dm crypt: use crypt_integrity_aead() helper (Mike Snitzer) [1820280]
+- [lib] lib/test_bitmap: add tests for bitmap_parselist_user() (Vladis Dronov) [1819152]
+- [lib] lib/test_bitmap: add testcases for bitmap_parselist() (Vladis Dronov) [1819152]
+- [lib] lib/test_bitmap: switch test_bitmap_parselist to ktime_get() (Vladis Dronov) [1819152]
+- [lib] lib: rework bitmap_parselist (Vladis Dronov) [1819152]
+- [lib] lib: make bitmap_parselist_user() a wrapper on bitmap_parselist() (Vladis Dronov) [1819152]
+- [platform] platform/x86: mlx-platform: Add support for next generation systems (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: mlxreg-hotplug: Add support for new capability register (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add support for new capability register (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add support for new system type (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Set system mux configuration based on system type (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Add new attribute for mlxreg-io sysfs interfaces (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add more definitions for system attributes (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Style changes (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Add missed attribute for mlxreg-io sysfs interfaces (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Fix documentation inconsistency for mlxreg-io sysfs interfaces (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Cosmetic changes (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: Fix Kconfig indentation (Ivan Vecera) [1820312]
+- [leds] leds: mlxreg: Fix possible buffer overflow (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: mlxreg-hotplug: Remove dev_err() usage after platform_get_irq() (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Fix error handling in mlxplat_init() (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Add new attribute for mlxreg-io sysfs interfaces (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add more reset cause attributes (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Modify DMI matching order (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add regmap structure for the next generation systems (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Change API for i2c-mlxcpld driver activation (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Move regmap initialization before all drivers activation (Ivan Vecera) [1820312]
+- [documentation] ABI: sysfs-driver-mlxreg-io: fix the what fields (Ivan Vecera) [1820312]
+- [documentation] docs: watchdog: convert docs to ReST and rename to *.rst (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Fix parent device in i2c-mux-reg device registration (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: mlxreg-hotplug: Add devm_free_irq call to remove flow (Ivan Vecera) [1820312]
+- [i2c] i2c: mlxcpld: Fix wrong initialization order in probe (Ivan Vecera) [1820312]
+- [hwmon] hwmon: (mlxreg-fan) Use devm_thermal_of_cooling_device_register (Ivan Vecera) [1820312]
+- [thermal] thermal: Introduce devm_thermal_of_cooling_device_register (Ivan Vecera) [1820312]
+- [watchdog] watchdog: mlx_wdt: Use 'dev' instead of dereferencing it repeatedly (Ivan Vecera) [1820312]
+- [hwmon] hwmon: (mlxreg-fan) Use HWMON_CHANNEL_INFO macro (Ivan Vecera) [1820312]
+- [include] hwmon: Add convience macro to define simple static sensors (Ivan Vecera) [1820312]
+- [hwmon] hwmon: (mlxreg-fan) Add support for fan capability registers (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add mlx-wdt platform driver activation (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add support for tachometer speed register (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Fix access mode for fan_dir attribute (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add UID LED for the next generation systems (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add extra CPLD for next generation systems (Ivan Vecera) [1820312]
+- [documentation] Documentation/watchdog: Add documentation mlx-wdt driver (Ivan Vecera) [1820312]
+- [watchdog] watchdog: mlx-wdt: introduce a watchdog driver for Mellanox systems (Ivan Vecera) [1820312]
+- [include] platform_data/mlxreg: additions for Mellanox watchdog driver (Ivan Vecera) [1820312]
+- [leds] leds: mlxreg: Add support for capability register (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: mlxreg-hotplug: Fix KASAN warning (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Correct mlxreg-io KernelVersion for 5.0 (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add support for new VMOD0007 board name (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add support for fan capability registers (Ivan Vecera) [1820312]
+- [include] platform_data/mlxreg: Add capability field to core platform data (Ivan Vecera) [1820312]
+- [include] platform_data/mlxreg: Document fixes for core platform data (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Add new attribute for mlxreg-io sysfs interfaces (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add support for fan direction register (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Convert to use SPDX identifier (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Add new attribute for mlxreg-io sysfs interfaces (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Allow mlxreg-io driver activation for new systems (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Fix LED configuration (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Fix tachometer registers (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Rename new systems product names (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add definitions for new registers (Ivan Vecera) [1820312]
+- [i2c] i2c: mux: mlxcpld: simplify code to reach the adapter (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Properly use mlxplat_mlxcpld_msn201x_items (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Fix copy-paste error in mlxplat_init() (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Remove unused define (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Change mlxreg-io configuration for MSN274x systems (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Add new attribute for mlxreg-io sysfs interfaces (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Allow mlxreg-io driver activation for more systems (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add ASIC hotplug device configuration (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: mlxreg-hotplug: Add hotplug hwmon uevent notification (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: mlxreg-hotplug: Improve mechanism of ASIC health discovery (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add mlxreg-fan platform driver activation (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: Use 2-factor allocator calls (Ivan Vecera) [1820312]
+- [hwmon] hwmon: (mlxreg-fan) Modify macros for tachometer fault status reading (Ivan Vecera) [1820312]
+- [hwmon] hwmon: (mlxreg-fan) Fix macros for tacho fault reading (Ivan Vecera) [1820312]
+- [hwmon] hwmon: (mlxreg-fan) Add support for Mellanox FAN driver (Ivan Vecera) [1820312]
+- [i2c] i2c: mux: mlxcpld: make use of __i2c_smbus_xfer (Ivan Vecera) [1820312]
+- [i2c] i2c: smbus: add unlocked __i2c_smbus_xfer variant (Ivan Vecera) [1820312]
+- [documentation] Documentation/ABI: Add documentation mlxreg-io sysfs interfaces (Ivan Vecera) [1820312]
+- [platform] platform/x86: mlx-platform: Add mlxreg-io platform driver activation (Ivan Vecera) [1820312]
+- [platform] platform/mellanox: Introduce support for Mellanox register access driver (Ivan Vecera) [1820312]
+- [kernel] audit: trigger accompanying records when no rules present (Richard Guy Briggs) [1819944]
+- [kernel] sched/fair: Allow a per-CPU kthread waking a task to stack on the same CPU, to fix XFS performance regression (Phil Auld) [1745111]
+- [hid] HID: intel-ish-hid: ipc: Add Tiger Lake PCI device ID (Tony Camuso) [1818043]
+- [hid] HID: intel-ish-hid: ipc: add CMP device id (Tony Camuso) [1818043]
+- [hid] HID: intel-ish-hid: Spelling s/diconnect/disconnect/ (Tony Camuso) [1818043]
+- [hid] HID: intel-ish-hid: fix wrong error handling in ishtp_cl_alloc_tx_ring() (Tony Camuso) [1818043]
+- [hid] HID: intel-ish-hid: ipc: check the NO_D3 flag to distinguish resume paths (Tony Camuso) [1818043]
+- [hid] HID: intel-ish-hid: ipc: make ish suspend paths clear (Tony Camuso) [1818043]
+- [hid] HID: intel-ish-hid: ipc: set NO_D3 flag only when needed (Tony Camuso) [1818043]
+- [netdrv] net: ena: Add PCI shutdown handler to allow safe kexec (Bhupesh Sharma) [1758323]
+- [net] vsock: fix potential deadlock in transport->release() (Stefano Garzarella) [1771582]
+- [net] vsock/virtio: remove loopback handling (Stefano Garzarella) [1771582]
+- [net] vsock: use local transport when it is loaded (Stefano Garzarella) [1771582]
+- [net] vsock: add vsock_loopback transport (Stefano Garzarella) [1771582]
+- [net] vsock: add local transport support in the vsock core (Stefano Garzarella) [1771582]
+- [uapi] vsock: add VMADDR_CID_LOCAL definition (Stefano Garzarella) [1771582]
+- [net] vsock/virtio_transport_common: remove unused virtio header includes (Stefano Garzarella) [1771582]
+- [infiniband] IB/rdmavt: Free kernel completion queue when done (Gopal Tiwari) [1805036]
+- [powerpc] powerpc/64s: Fix section mismatch warnings from boot code (Desnes Augusto Nunes do Rosario) [1391523]
+- [powerpc] powerpc/prom: convert PROM_BUG() to standard trap (Desnes Augusto Nunes do Rosario) [1391523]
+- [powerpc] powerpc/64: mark start_here_multiplatform as __ref (Desnes Augusto Nunes do Rosario) [1391523]
+- [mfd] mfd: intel-lpss: Add Intel Tiger Lake PCI IDs (David Arcari) [1773767]
+- [mfd] mfd: intel-lpss: Release IDA resources (David Arcari) [1773767]
+- [mfd] mfd: intel-lpss: Keep device tables sorted by ID (David Arcari) [1773767]
+- [i2c] i2c: i801: Add support for Intel Tiger Lake (David Arcari) [1773765]
+- [edac] EDAC/mce_amd: Print !SMCA processor warning only once (Prarit Bhargava) [1796178]
+- [powerpc] powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() (Steve Best) [1806630] {CVE-2019-12614}
+
+* Tue Apr 07 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.5.el8]
+- [x86] x86/gart: Rewrite early_gart_iommu_check() comment (Waiman Long) [1818532]
+- [mm] mm/memblock.c: warn if zero alignment was requested (Waiman Long) [1818532]
+- [powerpc] memblock: stop using implicit alignment to SMP_CACHE_BYTES (Waiman Long) [1818532]
+- [mm] memblock: replace BOOTMEM_ALLOC_* with MEMBLOCK variants (Waiman Long) [1818532]
+- [mm] mm: remove nobootmem (Waiman Long) [1818532]
+- [mm] memblock: rename __free_pages_bootmem to memblock_free_pages (Waiman Long) [1818532]
+- [mm] memblock: rename free_all_bootmem to memblock_free_all (Waiman Long) [1818532]
+- [firmware] memblock: replace free_bootmem_late with memblock_free_late (Waiman Long) [1818532]
+- [x86] memblock: replace free_bootmem{_node} with memblock_free (Waiman Long) [1818532]
+- [mm] mm: nobootmem: remove bootmem allocation APIs (Waiman Long) [1818532]
+- [mm] memblock: replace __alloc_bootmem with memblock_alloc_from (Waiman Long) [1818532]
+- [mm] memblock: replace alloc_bootmem_pages with memblock_alloc (Waiman Long) [1818532]
+- [mm] memblock: replace alloc_bootmem_low_pages with memblock_alloc_low (Waiman Long) [1818532]
+- [mm] memblock: replace alloc_bootmem_pages_node with memblock_alloc_node (Waiman Long) [1818532]
+- [mm] memblock: add align parameter to memblock_alloc_node() (Waiman Long) [1818532]
+- [arm64] memblock: replace alloc_bootmem_low with memblock_alloc_low (2) (Waiman Long) [1818532]
+- [usb] memblock: replace alloc_bootmem_pages_nopanic with memblock_alloc_nopanic (Waiman Long) [1818532]
+- [x86] memblock: replace __alloc_bootmem_node_nopanic with memblock_alloc_try_nid_nopanic (Waiman Long) [1818532]
+- [x86] memblock: replace alloc_bootmem_low with memblock_alloc_low (Waiman Long) [1818532]
+- [x86] memblock: replace alloc_bootmem_align with memblock_alloc (Waiman Long) [1818532]
+- [mm] memblock: remove _virt from APIs returning virtual address (Waiman Long) [1818532]
+- [powerpc] memblock: rename memblock_alloc{_nid, _try_nid} to memblock_phys_alloc* (Waiman Long) [1818532]
+- [mm] mm: nobootmem: remove dead code (Waiman Long) [1818532]
+- [mm] mm: remove bootmem allocator implementation (Waiman Long) [1818532]
+- [mm] mm: remove CONFIG_HAVE_MEMBLOCK (Waiman Long) [1818532]
+- [mm] mm: remove CONFIG_NO_BOOTMEM (Waiman Long) [1818532]
+- [mm] mm: disable deferred struct page for 32-bit arches (Waiman Long) [1818532]
+- [mm] mm: make DEFERRED_STRUCT_PAGE_INIT explicitly depend on SPARSEMEM (Waiman Long) [1818532]
+- [mm] mm/hugetlb.c: don't zero 1GiB bootmem pages (Waiman Long) [1818532]
+- [mm] docs/mm: memblock: add overview documentation (Waiman Long) [1818532]
+- [include] docs/mm: memblock: add kernel-doc description for memblock types (Waiman Long) [1818532]
+- [mm] docs/mm: memblock: add kernel-doc comments for memblock_add (Waiman Long) [1818532]
+- [mm] docs/mm: bootmem: add overview documentation (Waiman Long) [1818532]
+- [include] docs/mm: bootmem: add kernel-doc description of 'struct bootmem_data' (Waiman Long) [1818532]
+- [mm] docs/mm: bootmem: fix kernel-doc warnings (Waiman Long) [1818532]
+- [mm] docs/mm: nobootmem: fixup kernel-doc comments (Waiman Long) [1818532]
+- [mm] mm/bootmem: drop duplicated kernel-doc comments (Waiman Long) [1818532]
+- [lib] lib/smp_processor_id: Don't use cpumask_equal() (Waiman Long) [1812092]
+- [kernel] audit: always check the netlink payload length in audit_receive_msg() (Richard Guy Briggs) [1814448]
+- [kernel] audit: fix error handling in audit_data_to_entry() (Richard Guy Briggs) [1814448]
+- [fs] fat: work around race with userspace's read via blockdev while mounting (Bill O'Donnell) [1771351]
+- [include] raid6/test: fix a compilation error (Bhupesh Sharma) [1817524]
+- [arm64] arm64: kexec_file: add crash dump support (Bhupesh Sharma) [1817524]
+- [lib] libfdt: include fdt_addresses.c (Bhupesh Sharma) [1817524]
+- [scripts] scripts/dtc: Update to upstream version v1.5.1-22-gc40aeb60b47a (Bhupesh Sharma) [1817524]
+- [include] libfdt: reduce the number of headers included from libfdt_env.h (Bhupesh Sharma) [1817524]
+- [arm64] arm64: dts: amd: Fix SPI bus warnings (Bhupesh Sharma) [1817524]
+- [arm64] arm64: dts: broadcom: Fix I2C and SPI bus warnings (Bhupesh Sharma) [1817524]
+- [scripts] scripts/dtc: Update to upstream version v1.5.0-30-g702c1b6c0e73 (Bhupesh Sharma) [1817524]
+- [scripts] scripts/dtc: Update to upstream version v1.5.0-23-g87963ee20693 (Bhupesh Sharma) [1817524]
+- [include] linux/kernel.h: split *_MAX and *_MIN macros into <linux/limits.h> (Bhupesh Sharma) [1817524]
+- [scripts] kbuild: disable dtc simple_bus_reg warnings by default (Bhupesh Sharma) [1817524]
+- [scripts] scripts/dtc: Update to upstream version v1.4.7-57-gf267e674d145 (Bhupesh Sharma) [1817524]
+- [scripts] scripts/dtc: Update to upstream version v1.4.7-14-gc86da84d30e4 (Bhupesh Sharma) [1817524]
+- [scripts] scripts/dtc: consolidate include path options in Makefile (Bhupesh Sharma) [1817524]
+- [pci] PCI: Remove unnecessary returns (Myron Stowe) [1807175]
+- [pci] PCI: OF: Correct of_irq_parse_pci() documentation (Myron Stowe) [1807175]
+- [pci] PCI: Fix typos and whitespace errors (Myron Stowe) [1807175]
+- [documentation] PCI: Correct pci=resource_alignment parameter example (Myron Stowe) [1807175]
+- [pci] PCI: Use PCI_SRIOV_NUM_BARS in loops instead of PCI_IOV_RESOURCE_END (Myron Stowe) [1807175]
+- [pci] PCI: Convert pci_resource_to_user() to a weak function (Myron Stowe) [1807175]
+- [pci] PCI: pciehp: Refer to "Indicators" instead of "LEDs" in comments (Myron Stowe) [1807175]
+- [pci] PCI: pciehp: Remove pciehp_green_led_{on, off, blink}() (Myron Stowe) [1807175]
+- [pci] PCI: pciehp: Remove pciehp_set_attention_status() (Myron Stowe) [1807175]
+- [pci] PCI: pciehp: Combine adjacent indicator updates (Myron Stowe) [1807175]
+- [pci] PCI: pciehp: Add pciehp_set_indicators() to set both indicators (Myron Stowe) [1807175]
+- [pci] PCI: Add pci_irq_vector() and other stubs when !CONFIG_PCI (Myron Stowe) [1807175]
+- [pci] PCI: Force trailing new line to resource_alignment_param in sysfs (Myron Stowe) [1807175]
+- [pci] PCI: Move pci__resource_alignment_param() into their callers (Myron Stowe) [1807175]
+- [pci] PCI: pci.c: convert to use BUS_ATTR_RW (Myron Stowe) [1807175]
+- [pci] PCI: Clean up resource_alignment parameter to not require static buffer (Myron Stowe) [1807175]
+- [pci] PCI/IOV: Remove group write permission from sriov_numvfs, sriov_drivers_autoprobe (Myron Stowe) [1807175]
+- [pci] PCI/IOV: Move sysfs SR-IOV functions to iov.c (Myron Stowe) [1807175]
+- [pci] PCI: sysfs: Change permissions from symbolic to octal (Myron Stowe) [1807175]
+- [pci] PCI: sysfs: Revert "rescan" file renames (Myron Stowe) [1807175]
+- [pci] PCI: sysfs: Change DEVICE_ATTR() to DEVICE_ATTR_WO() (Myron Stowe) [1807175]
+- [pci] PCI: pci-sysfs.c: convert to use BUS_ATTR_WO (Myron Stowe) [1807175]
+- [pci] PCI: sysfs: Define device attributes with DEVICE_ATTR*() (Myron Stowe) [1807175]
+- [pci] PCI: Mark expected switch fall-through (Myron Stowe) [1807175]
+- [pci] PCI: Use devm_add_action_or_reset() (Myron Stowe) [1807175]
+- [pci] PCI: Get rid of dev->has_secondary_link flag (Myron Stowe) [1807175]
+- [pci] PCI/ACPI: Remove unnecessary struct hotplug_program_ops (Myron Stowe) [1807175]
+- [pci] PCI/ACPI: Move _HPP & _HPX functions to pci-acpi.c (Myron Stowe) [1807175]
+- [pci] PCI/ACPI: Rename _HPX structs from hpp_* to hpx_* (Myron Stowe) [1807175]
+- [pci] PCI: Make pci_set_of_node(), etc private (Myron Stowe) [1807175]
+- [pci] PCI: Make pci_enable_ptm() private (Myron Stowe) [1807175]
+- [pci] PCI: Make pcie_set_ecrc_checking(), pcie_ecrc_get_policy() private (Myron Stowe) [1807175]
+- [pci] PCI: Make pci_ats_init() private (Myron Stowe) [1807175]
+- [pci] PCI: Make pcie_update_link_speed() private (Myron Stowe) [1807175]
+- [pci] PCI: Make pci_bus_get(), pci_bus_put() private (Myron Stowe) [1807175]
+- [pci] PCI: Make pci_hotplug_io_size, mem_size, and bus_size private (Myron Stowe) [1807175]
+- [pci] PCI: Make pci_save_vc_state(), pci_restore_vc_state(), etc private (Myron Stowe) [1807175]
+- [pci] PCI: Make pci_get_host_bridge_device(), pci_put_host_bridge_device() private (Myron Stowe) [1807175]
+- [pci] PCI: Make pci_check_pme_status(), pci_pme_wakeup_bus() private (Myron Stowe) [1807175]
+- [pci] PCI: Make PCI_PM_* delay times private (Myron Stowe) [1807175]
+- [pci] PCI: Unexport pci_bus_sem (Myron Stowe) [1807175]
+- [pci] PCI: Unexport pci_bus_get() and pci_bus_put() (Myron Stowe) [1807175]
+- [pci] PCI: Remove pci_block_cfg_access() et al (unused) (Myron Stowe) [1807175]
+- [wireless] PCI: Move ASPM declarations to linux/pci.h (Myron Stowe) [1807175]
+- [pci] PCI/MSI: Support allocating virtual MSI interrupts (Myron Stowe) [1807175]
+- [fs] gfs2: Remove unnecessary gfs2_qa_{get,put} pairs (Robert S Peterson) [1807146]
+- [fs] gfs2: Split gfs2_rsqa_delete into gfs2_rs_delete and gfs2_qa_put (Robert S Peterson) [1807146]
+- [fs] gfs2: Change inode qa_data to allow multiple users (Robert S Peterson) [1807146]
+- [fs] gfs2: eliminate gfs2_rsqa_alloc in favor of gfs2_qa_alloc (Robert S Peterson) [1807146]
+- [fs] gfs2: Switch to list_{first,last}_entry (Robert S Peterson) [1807146]
+- [fs] gfs2: Clean up inode initialization and teardown (Robert S Peterson) [1807146]
+- [fs] gfs2: Minor gfs2_alloc_inode cleanup (Robert S Peterson) [1807146]
+- [pinctrl] pinctrl: pinmux: fix a possible null pointer in pinmux_can_be_used_for_gpio (David Arcari) [1817454]
+- [pinctrl] pinctrl/gpio: Take MUX usage into account (David Arcari) [1817454]
+- [include] gpio: Fix build warnings on undefined struct pinctrl_dev (David Arcari) [1817454]
+- [pinctrl] pinctrl: remove unused pin_is_valid() (David Arcari) [1817454]
+- [pinctrl] pinctrl: remove unneeded initializer for list_for_each_entry() iterator (David Arcari) [1817454]
+- [pinctrl] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 194 (David Arcari) [1817454]
+- [pinctrl] pinctrl: core: Do not add device links for hogs (David Arcari) [1817454]
+- [pinctrl] pinctrl: Enable device link creation for pin control (David Arcari) [1817454]
+- [pinctrl] pinctrl: generic: add new 'drive-strength-microamp' property support (David Arcari) [1817454]
+- [pinctrl] pinctrl: remove unused 'pinconf-config' debugfs interface (David Arcari) [1817454]
+- [pinctrl] pinctrl: Change to use DEFINE_SHOW_ATTRIBUTE macro (David Arcari) [1817454]
+- [pinctrl] pinctrl: core: make sure strcmp() doesn't get a null parameter (David Arcari) [1817454]
+- [pinctrl] pinctrl: core: Remove broken remove_last group and pinmux functions (David Arcari) [1817454]
+- [pinctrl] pinctrl: pinmux: Return selector to the pinctrl driver (David Arcari) [1817454]
+- [pinctrl] pinctrl: core: Return selector to the pinctrl driver (David Arcari) [1817454]
+- [pinctrl] pinctrl: Cut unused sysfs includes (David Arcari) [1817454]
+- [mm] mm, numa: fix bad pmd by atomically check for pmd_trans_huge when marking page tables prot_numa (Rafael Aquini) [1763878]
+- [mm] mm: thp: fix flags for pmd migration when split (Rafael Aquini) [1763878]
+- [mm] mm: thp: relocate flush_cache_range() in migrate_misplaced_transhuge_page() (Rafael Aquini) [1763878]
+- [mm] mm: thp: fix mmu_notifier in migrate_misplaced_transhuge_page() (Rafael Aquini) [1763878]
+- [mm] mm: thp: fix MADV_DONTNEED vs migrate_misplaced_transhuge_page race condition (Rafael Aquini) [1763878]
+- [fs] nfsd: set the server_scope during service startup (Scott Mayhew) [1817752]
+- [fs] nfsd: v4 support requires CRYPTO_SHA256 (Scott Mayhew) [1817752]
+- [fs] nfsd: Fix cld_net->cn_tfm initialization (Scott Mayhew) [1817752]
+- [fs] nfsd: add support for upcall version 2 (Scott Mayhew) [1817752]
+- [fs] nfsd: add a "GetVersion" upcall for nfsdcld (Scott Mayhew) [1817752]
+- [fs] nfsd: handle legacy client tracking records sent by nfsdcld (Scott Mayhew) [1817752]
+- [fs] nfsd: re-order client tracking method selection (Scott Mayhew) [1817752]
+- [fs] nfsd: keep a tally of RECLAIM_COMPLETE operations when using nfsdcld (Scott Mayhew) [1817752]
+- [fs] nfsd: un-deprecate nfsdcld (Scott Mayhew) [1817752]
+- [fs] nfsd: make nfs4_client_reclaim use an xdr_netobj instead of a fixed char array (Scott Mayhew) [1817752]
+
+* Sun Apr 05 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.4.el8]
+- [s390] scsi: zfcp: fix to prevent port_remove with pure auto scan LUNs (only sdevs) (Philipp Rudo) [1814791]
+- [s390] scsi: zfcp: fix missing zfcp_port reference put on -EBUSY from port_remove (Philipp Rudo) [1814792]
+- [infiniband] RDMA/qedr: Fix null-pointer dereference when calling rdma_user_mmap_get_offset (Kamal Heib) [1786602]
+- [infiniband] RDMA/qedr: Make qedr_iw_load_qp() static (Kamal Heib) [1786602]
+- [infiniband] RDMA/qedr: Fix potential use after free (Kamal Heib) [1786602]
+- [infiniband] RDMA/qedr: Remove unsupported modify_port callback (Kamal Heib) [1786602]
+- [infiniband] IB/ipoib: Add ndo operation for getting VFs GUID attributes (Kamal Heib) [1786602]
+- [net] xprtrdma: Fix oops in Receive handler after device removal (Kamal Heib) [1786602]
+- [net] xprtrdma: Fix completion wait during device removal (Kamal Heib) [1786602]
+- [net] xprtrdma: Fix create_qp crash on device unload (Kamal Heib) [1786602]
+- [infiniband] IB/hfi1: Adjust flow PSN with the correct resync_psn (Kamal Heib) [1786602]
+- [infiniband] IB/hfi1: Don't cancel unused work item (Kamal Heib) [1786602]
+- [infiniband] IB/core: Introduce rdma_user_mmap_entry_insert_range() API (Kamal Heib) [1786602]
+- [infiniband] RDMA/counter: Prevent auto-binding a QP which are not tracked with res (Kamal Heib) [1786602]
+- [infiniband] rxe: correctly calculate iCRC for unaligned payloads (Kamal Heib) [1786602]
+- [infiniband] treewide: Use sizeof_field() macro (Kamal Heib) [1786602]
+- [infiniband] RDMA/cma: add missed unregister_pernet_subsys in init failure (Kamal Heib) [1786602]
+- [infiniband] RDMA/efa: Expose RDMA read related attributes (Kamal Heib) [1786602]
+- [infiniband] RDMA/efa: Support remote read access in MR registration (Kamal Heib) [1786602]
+- [infiniband] RDMA/efa: Store network attributes in device attributes (Kamal Heib) [1786602]
+- [infiniband] IB/hfi1: remove redundant assignment to variable ret (Kamal Heib) [1786602]
+- [infiniband] net: use rhashtable_lookup() instead of rhashtable_lookup_fast() (Kamal Heib) [1786602]
+- [infiniband] IB/core: Add interfaces to get VF node and port GUIDs (Kamal Heib) [1786602]
+- [infiniband] RDMA/cm: Use refcount_t type for refcount variable (Kamal Heib) [1786602]
+- [infiniband] RDMA/cma: Use ACK timeout for RoCE packetLifeTime (Kamal Heib) [1786602]
+- [infiniband] IB/umem: remove the dmasync argument to ib_umem_get (Kamal Heib) [1786602]
+- [infiniband] RDMA/qedr: Add iWARP doorbell recovery support (Kamal Heib) [1786602]
+- [infiniband] RDMA/qedr: Add doorbell overflow recovery support (Kamal Heib) [1786602]
+- [infiniband] RDMA/qedr: Use the common mmap API (Kamal Heib) [1786602]
+- [infiniband] RDMA/qedr: Fix memory leak in user qp and mr (Kamal Heib) [1810854 1786602]
+- [infiniband] RDMA/qedr: Fix synchronization methods and memory leaks in qedr (Kamal Heib) [1810854 1786602]
+- [infiniband] RDMA/qedr: Fix qpids xarray api used (Kamal Heib) [1810854 1786602]
+- [infiniband] RDMA/qedr: Fix srqs xarray initialization (Kamal Heib) [1810854 1786602]
+- [infiniband] RDMA/qedr: Remove Unneeded variable rc (Kamal Heib) [1810854 1786602]
+- [infiniband] RDMA/mlx4: Separate creation of RWQ and QP (Kamal Heib) [1786602]
+- [infiniband] RDMA/hns: Package for hns_roce_rereg_user_mr function (Kamal Heib) [1786602]
+- [infiniband] RDMA/hns: Fix sg offset non-zero issue (Kamal Heib) [1786602]
+- [infiniband] dma-mapping: remove the DMA_ATTR_WRITE_BARRIER flag (Kamal Heib) [1786602]
+- [infiniband] RDMA/efa: Clear the admin command buffer prior to its submission (Kamal Heib) [1786602]
+- [infiniband] RDMA/siw: Cleanup unused mmap structures (Kamal Heib) [1786602]
+- [infiniband] RDMA/srpt: Report the SCSI residual to the initiator (Kamal Heib) [1786602]
+- [infiniband] RDMA: Change MAD processing function to remove extra casting and parameter (Kamal Heib) [1786602]
+- [infiniband] RDMA/mlx5: Rewrite MAD processing logic to be readable (Kamal Heib) [1786602]
+- [infiniband] RDMA/ocrdma: Simplify process_mad function (Kamal Heib) [1786602]
+- [infiniband] RDMA/ocrdma: Make ocrdma_pma_counters() return void (Kamal Heib) [1786602]
+- [infiniband] RDMA/mad: Do not check MAD sizes in roce and ib drivers (Kamal Heib) [1786602]
+- [infiniband] RDMA/hfi1: Delete unreachable code (Kamal Heib) [1786602]
+- [infiniband] RDMA/mad: Allocate zeroed MAD buffer (Kamal Heib) [1786602]
+- [infiniband] RDMA/mad: Delete never implemented functions (Kamal Heib) [1786602]
+- [infiniband] RDMA/core: Fix return code when modify_port isn't supported (Kamal Heib) [1786602]
+- [infiniband] RDMA/siw: Use the common mmap_xa helpers (Kamal Heib) [1786602]
+- [infiniband] RDMA/efa: Use the common mmap_xa helpers (Kamal Heib) [1786602]
+- [infiniband] RDMA: Connect between the mmap entry and the umap_priv structure (Kamal Heib) [1786602]
+- [infiniband] RDMA/hns: Use rdma_user_mmap_io (Kamal Heib) [1786602]
+- [infiniband] RDMA/core: Create mmap database and cookie helper functions (Kamal Heib) [1786602]
+- [infiniband] RDMA/core: Move core content from ib_uverbs to ib_core (Kamal Heib) [1786602]
+- [infiniband] RDMA/odp: Remove broken debugging call to invalidate_range (Kamal Heib) [1786602]
+- [infiniband] RDMA/vmw_pvrdma: Use resource ids from physical device if available (Kamal Heib) [1786602]
+- [infiniband] RDMA/core: Set DMA parameters correctly (Kamal Heib) [1786602]
+- [infiniband] RDMA/siw: Increase DMA max_segment_size parameter (Kamal Heib) [1786602]
+- [infiniband] RDMA/rxe: Increase DMA max_segment_size parameter (Kamal Heib) [1786602]
+- [uapi] rdma: Remove nes ABI header (Kamal Heib) [1786602]
+- [infiniband] RDMA/srpt: Fix TPG creation (Kamal Heib) [1786602]
+- [infiniband] RDMA/cm: Update copyright together with SPDX tag (Kamal Heib) [1786602]
+- [infiniband] RDMA/cm: Use specific keyword to check define (Kamal Heib) [1786602]
+- [infiniband] RDMA/cm: Delete unused cm_is_active_peer function (Kamal Heib) [1786602]
+- [infiniband] RDMA/rxe: Remove useless rxe_init_device_param assignments (Kamal Heib) [1786602]
+- [net] xprtrdma: Replace dprintk in xprt_rdma_set_port (Kamal Heib) [1786602]
+- [net] xprtrdma: Replace dprintk() in rpcrdma_update_connect_private() (Kamal Heib) [1786602]
+- [net] xprtrdma: Refine trace_xprtrdma_fixup (Kamal Heib) [1786602]
+- [net] xprtrdma: Report the computed connect delay (Kamal Heib) [1786602]
+- [net] xprtrdma: Wake tasks after connect worker fails (Kamal Heib) [1786602]
+- [net] xprtrdma: Pull up sometimes (Kamal Heib) [1786602]
+- [net] xprtrdma: Refactor rpcrdma_prepare_msg_sges() (Kamal Heib) [1786602]
+- [net] xprtrdma: Move the rpcrdma_sendctx::sc_wr field (Kamal Heib) [1786602]
+- [net] xprtrdma: Remove rpcrdma_sendctx::sc_device (Kamal Heib) [1786602]
+- [net] xprtrdma: Remove rpcrdma_sendctx::sc_xprt (Kamal Heib) [1786602]
+- [net] xprtrdma: Ensure ri_id is stable during MR recycling (Kamal Heib) [1786602]
+- [net] xprtrdma: Manage MRs in context of a single connection (Kamal Heib) [1786602]
+- [net] xprtrdma: Fix MR list handling (Kamal Heib) [1786602]
+- [net] xprtrdma: Initialize rb_credits in one place (Kamal Heib) [1786602]
+- [infiniband] RDMA/core: Check that process is still alive before sending it to the users (Kamal Heib) [1786602]
+- [infiniband] RDMA/restrack: Remove PID namespace support (Kamal Heib) [1786602]
+- [infiniband] RDMA/uverbs: Add a check for uverbs_attr_get to uverbs_copy_to_struct_or_zero (Kamal Heib) [1786602]
+- [infiniband] IB/cma: Honor traffic class from lower netdevice for RoCE (Kamal Heib) [1786602]
+- [infiniband] RDMA/nldev: Provide MR statistics (Kamal Heib) [1786602]
+- [infiniband] RDMA/mlx5: Return ODP type per MR (Kamal Heib) [1786602]
+- [infiniband] RDMA/nldev: Allow different fill function per resource (Kamal Heib) [1786602]
+- [infiniband] IB/mlx5: Introduce ODP diagnostic counters (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix sw/rdmavt/ kernel-doc notation (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix core/ kernel-doc notation (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix ulp/iser/iser_initiator.c kernel-doc warnings (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix ulp/iser/iser_verbs.c kernel-doc notation (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix core/verbs.c kernel-doc notation (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix ulp/srpt/ib_srpt.h kernel-doc notation (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix ulp/iser/iscsi_iser.h kernel-doc warnings (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix core/ipwm_util.h kernel-doc warnings (Kamal Heib) [1786602]
+- [infiniband] infiniband: fix ulp/iser/iscsi_iser.kernel-doc notation (Kamal Heib) [1786602]
+- [infiniband] RDMA/rw: Support threshold for registration vs scattering to local pages (Kamal Heib) [1786602]
+- [uapi] RDMA/uapi: Fix and re-organize the usage of rdma_driver_id (Kamal Heib) [1786602]
+- [net] svcrdma: Improve DMA mapping trace points (Kamal Heib) [1786602]
+- [infiniband] RDMA/iser: Use iser_err instead of pr_err for logging (Kamal Heib) [1786602]
+- [infiniband] RDMA/srp: Calculate max_it_iu_size if remote max_it_iu length available (Kamal Heib) [1786602]
+- [infiniband] RDMA/srp: Add parse function for maximum initiator to target IU size (Kamal Heib) [1786602]
+- [infiniband] IB/cm: Use container_of() instead of typecast (Kamal Heib) [1786602]
+- [infiniband] RDMA/srpt: Make the code for handling port identities more systematic (Kamal Heib) [1786602]
+- [infiniband] RDMA/srpt: Rework the code that waits until an RDMA port is no longer in use (Kamal Heib) [1786602]
+- [infiniband] RDMA/srpt: Rework the approach for closing an RDMA channel (Kamal Heib) [1786602]
+- [infiniband] RDMA/srpt: Improve a debug message (Kamal Heib) [1786602]
+- [infiniband] RDMA/srpt: Fix handling of iWARP logins (Kamal Heib) [1786602]
+- [infiniband] RDMA/srpt: Fix handling of SR-IOV and iWARP ports (Kamal Heib) [1786602]
+- [infiniband] RDMA/srp: Make route resolving error messages more informative (Kamal Heib) [1786602]
+- [infiniband] RDMA/srp: Honor the max_send_sge device attribute (Kamal Heib) [1786602]
+- [infiniband] RDMA/srp: Remove two casts (Kamal Heib) [1786602]
+- [infiniband] RDMA/siw: Make node GUIDs valid EUI-64 identifiers (Kamal Heib) [1786602]
+- [infiniband] RDMA/iw_cxgb3: Remove the iw_cxgb3 module from kernel (Kamal Heib) [1786602]
+- [infiniband] RDMA/rxe: Verify modify_device mask (Kamal Heib) [1786602]
+- [infiniband] RDMA/core: Fix return code when modify_device isn't supported (Kamal Heib) [1786602]
+- [infiniband] RDMA/siw: Fix port number endianness in a debug message (Kamal Heib) [1786602]
+- [infiniband] RDMA/siw: Simplify several debug messages (Kamal Heib) [1786602]
+- [infiniband] IB/iser: remove redundant macro definitions (Kamal Heib) [1786602]
+- [infiniband] IB/iser: bound protection_sg size by data_sg size (Kamal Heib) [1786602]
+- [infiniband] IB/iser: add unlikely checks in the fast path (Kamal Heib) [1786602]
+- [infiniband] RDMA/counter: Prevent QP counter manual binding in auto mode (Kamal Heib) [1786602]
+- [kvm] KVM: SVM: Override default MMIO mask if memory encryption is enabled (Wei Huang) [1789537]
+- [netdrv] mlx5e: Reorder mirrer action parsing to check for encap first (Ivan Vecera) [1818074]
+- [tools] selftests: mlxsw: Adjust test to recent changes (Ivan Vecera) [1818074]
+- [netdrv] vxlan: fix unexpected failure of vxlan_changelink() (Ivan Vecera) [1818074]
+- [netdrv] bonding: fix lockdep warning in bond_get_stats() (Ivan Vecera) [1818074]
+- [netdrv] bonding: fix using uninitialized mode_lock (Ivan Vecera) [1818074]
+- [net] export netdev_next_lower_dev_rcu() (Ivan Vecera) [1818074]
+- [netdrv] bonding: add missing netdev_update_lockdep_key() (Ivan Vecera) [1818074]
+- [net] avoid updating qdisc_xmit_lock_key in netdev_update_lockdep_key() (Ivan Vecera) [1818074]
+- [include] net: fix kernel-doc warning in <linux/netdevice.h> (Ivan Vecera) [1818074]
+- [net] batman-adv: Drop lockdep.h include for soft-interface.c (Ivan Vecera) [1818074]
+- [net] remove unnecessary variables and callback (Ivan Vecera) [1818074]
+- [netdrv] macsec: Fix multiple coding style issues (Ivan Vecera) [1818074]
+- [netdrv] vxlan: add adjacent link to limit depth level (Ivan Vecera) [1818074]
+- [net] core: add ignore flag to netdev_adjacent structure (Ivan Vecera) [1818074]
+- [netdrv] team: fix nested locking lockdep warning (Ivan Vecera) [1818074]
+- [netdrv] bonding: use dynamic lockdep key instead of subclass (Ivan Vecera) [1818074]
+- [netdrv] bonding: fix unexpected IFF_BONDING bit unset (Ivan Vecera) [1818074]
+- [net] core: add generic lockdep keys (Ivan Vecera) [1818074]
+- [net] core: limit nested device depth (Ivan Vecera) [1818074]
+- [net] udp: rehash on disconnect (Davide Caratti) [1817671]
+- [net] revert "udp: do rmem bulk free even if the rx sk queue is empty" (Davide Caratti) [1817671]
+- [net] udp: fix data-race in udp_set_dev_scratch() (Davide Caratti) [1817671]
+- [net] page_pool: refill page when alloc.count of pool is zero (Petr Oros) [1811201]
+- [net] page_pool: help compiler remove code in case CONFIG_NUMA=n (Petr Oros) [1811201]
+- [net] page_pool: handle page recycle for NUMA_NO_NODE condition (Petr Oros) [1811201]
+- [netdrv] mlx5e: Rx, Update page pool numa node when changed (Petr Oros) [1811201]
+- [net] page_pool: Don't recycle non-reusable pages (Petr Oros) [1811201]
+- [net] page_pool: Add API to update numa node (Petr Oros) [1811201]
+- [include] page_pool: extend tracepoint to also include the page PFN (Petr Oros) [1811201]
+- [net] page_pool: add destroy attempts counter and rename tracepoint (Petr Oros) [1811201]
+- [net] page_pool: remove unnecessary variable init (Petr Oros) [1811201]
+- [net] page_pool: fix logic in __page_pool_get_cached (Petr Oros) [1811201]
+- [netdrv] team: add missing attribute validation for array index (Hangbin Liu) [1816499]
+- [netdrv] team: add missing attribute validation for port ifindex (Hangbin Liu) [1816499]
+- [netdrv] team: Add vlan tx offload to hw_enc_features (Hangbin Liu) [1816499]
+- [netdrv] team: set slave to promisc if team is already in promisc mode (Hangbin Liu) [1816499]
+- [netdrv] team: Free BPF filter when unregistering netdev (Hangbin Liu) [1816499]
+- [netdrv] net: Remove switchdev.h inclusion from team/bond/vlan (Hangbin Liu) [1816499]
+- [netdrv] team: use operstate consistently for linkup (Hangbin Liu) [1816499]
+- [netdrv] team: avoid complex list operations in team_nl_cmd_options_set() (Hangbin Liu) [1816499]
+- [netdev] pass the stuck queue to the timeout handler (Ivan Vecera) [1811203]
+- [net] flow_dissector: extract more ICMP information (Ivan Vecera) [1795213]
+- [net] flow_dissector: skip the ICMP dissector for non ICMP packets (Ivan Vecera) [1795213]
+- [net] flow_dissector: add meaningful comments (Ivan Vecera) [1795213]
+- [net] vti[6]: fix packet tx through bpf_redirect() in XinY cases (Sabrina Dubroca) [1795145]
+- [net] xfrm interface: fix packet tx through bpf_redirect() (Sabrina Dubroca) [1795145]
+- [net] vti[6]: fix packet tx through bpf_redirect() (Sabrina Dubroca) [1795145]
+- [documentation] Clarify trap's description (Petr Oros) [1809496]
+- [net] devlink: Wait longer before warning about unset port type (Petr Oros) [1809496]
+- [documentation] Add a section for devlink-trap testing (Petr Oros) [1809496]
+- [tools] selftests: devlink_trap: Add test cases for devlink-trap (Petr Oros) [1809496]
+- [tools] selftests: forwarding: devlink_lib: Add devlink-trap helpers (Petr Oros) [1809496]
+- [tools] selftests: forwarding: devlink_lib: Allow tests to define devlink device (Petr Oros) [1809496]
+- [documentation] Add devlink-trap documentation (Petr Oros) [1809496]
+- [net] devlink: Add generic packet traps and groups (Petr Oros) [1809496]
+- [net] devlink: Add packet trap infrastructure (Petr Oros) [1809496]
+- [net] devlink: add warning in case driver does not set port type (Petr Oros) [1809496]
+- [net] devlink: remove unused devlink_port_get_phys_port_name() function (Petr Oros) [1809496]
+- [net] tcp: add sanity tests in tcp_add_backlog() (Guillaume Nault) [1790843]
+- [net] tcp: implement coalescing on backlog queue (Guillaume Nault) [1790843]
+- [include] tcp: make tcp_space() aware of socket backlog (Guillaume Nault) [1790843]
+- [net] tcp: take care of compressed acks in tcp_add_reno_sack() (Guillaume Nault) [1790843]
+- [include] tcp: hint compiler about sack flows (Guillaume Nault) [1790843]
+- [net] tcp: drop dst in tcp_add_backlog() (Guillaume Nault) [1790843]
+- [net] drop_monitor: Do not cancel uninitialized work item (Petr Oros) [1810114]
+- [net] drop_monitor: Use kstrdup (Petr Oros) [1810114]
+- [net] drop_monitor: Better sanitize notified packets (Petr Oros) [1810114]
+- [net] drop_monitor: Make timestamps y2038 safe (Petr Oros) [1810114]
+- [net] drop_monitor: Allow user to start monitoring hardware drops (Petr Oros) [1810114]
+- [net] drop_monitor: Add support for summary alert mode for hardware drops (Petr Oros) [1810114]
+- [net] drop_monitor: Add support for packet alert mode for hardware drops (Petr Oros) [1810114]
+- [net] drop_monitor: Consider all monitoring states before performing configuration (Petr Oros) [1810114]
+- [net] drop_monitor: Add basic infrastructure for hardware drops (Petr Oros) [1810114]
+- [net] drop_monitor: Initialize hardware per-CPU data (Petr Oros) [1810114]
+- [net] drop_monitor: Move per-CPU data init/fini to separate functions (Petr Oros) [1810114]
+- [maintainers] drop_monitor: Add missing uAPI file to MAINTAINERS file (Petr Oros) [1810114]
+- [net] drop_monitor: Expose tail drop counter (Petr Oros) [1810114]
+- [net] drop_monitor: Make drop queue length configurable (Petr Oros) [1810114]
+- [net] drop_monitor: Add a command to query current configuration (Petr Oros) [1810114]
+- [net] drop_monitor: Allow truncation of dropped packets (Petr Oros) [1810114]
+- [net] drop_monitor: Add packet alert mode (Petr Oros) [1810114]
+- [net] drop_monitor: Add alert mode operations (Petr Oros) [1810114]
+- [net] drop_monitor: Require CAP_NET_ADMIN for drop monitor configuration (Petr Oros) [1810114]
+- [net] drop_monitor: Reset per-CPU data before starting to trace (Petr Oros) [1810114]
+- [net] drop_monitor: Initialize timer and work item upon tracing enable (Petr Oros) [1810114]
+- [net] drop_monitor: Split tracing enable / disable to different functions (Petr Oros) [1810114]
+- [net] drop_monitor: Use pre_doit / post_doit hooks (Petr Oros) [1810114]
+- [net] drop_monitor: Add extack support (Petr Oros) [1810114]
+- [net] drop_monitor: Avoid multiple blank lines (Petr Oros) [1810114]
+- [net] drop_monitor: Document scope of spinlock (Petr Oros) [1810114]
+- [net] drop_monitor: Rename and document scope of mutex (Petr Oros) [1810114]
+- [net] drop_monitor: Use correct error code (Petr Oros) [1810114]
+- [net] revert "net: dev: introduce support for sch BYPASS for lockless qdisc" (Paolo Abeni) [1805983]
+- [net] neighbour: remove neigh_cleanup() method (Ivan Vecera) [1795285]
+- [include] trace: events: neigh_update: print new state in string format (Ivan Vecera) [1795285]
+- [net] neigh: hook tracepoints in neigh update code (Ivan Vecera) [1795285]
+- [net] trace: events: add a few neigh tracepoints (Ivan Vecera) [1795285]
+- [net] netfilter: nf_tables: add __nft_chain_type_get() (Florian Westphal) [1806888]
+- [net] devlink: Hang reporter's dump method on a dumpit cb (Andrea Claudi) [1804798]
+- [net] core: Do not clear VF index for node/port GUIDs query (Petr Oros) [1805312]
+- [net] core: Populate VF index in struct ifla_vf_guid (Petr Oros) [1805312]
+- [net] core: Add support for getting VF GUIDs (Petr Oros) [1805312]
+- [tools] ptp: Extend the test program to check the external time stamp flags (Petr Oros) [1795192]
+- [netdrv] mlx5: Reject requests to enable time stamping on both edges (Petr Oros) [1795192]
+- [netdrv] igb: Reject requests that fail to enable time stamping on both edges (Petr Oros) [1795192]
+- [netdrv] dp83640: Reject requests to enable time stamping on both edges (Petr Oros) [1795192]
+- [netdrv] mv88e6xxx: Reject requests to enable time stamping on both edges (Petr Oros) [1795192]
+- [netdrv] ptp: Introduce strict checking of external time stamp options (Petr Oros) [1795192]
+- [netdrv] renesas: reject unsupported external timestamp flags (Petr Oros) [1795192]
+- [netdrv] mlx5: reject unsupported external timestamp flags (Petr Oros) [1795192]
+- [netdrv] igb: reject unsupported external timestamp flags (Petr Oros) [1795192]
+- [netdrv] dp83640: reject unsupported external timestamp flags (Petr Oros) [1795192]
+- [netdrv] mv88e6xxx: reject unsupported external timestamp flags (Petr Oros) [1795192]
+- [netdrv] net: reject PTP periodic output requests with unsupported flags (Petr Oros) [1795192]
+- [ptp] Validate requests to enable time stamping of external signals (Petr Oros) [1795192]
+- [tools] ptp: Fix example program to match kernel (Petr Oros) [1795192]
+- [include] uaccess: add noop untagged_addr definition (Josef Oskera) [1805320]
+- [include] debugfs: Add debugfs_create_xul() for hexadecimal unsigned long (Josef Oskera) [1795286]
+- [documentation] debugfs: Document debugfs helper for unsigned long values (Josef Oskera) [1795286]
+- [net] vsock/virtio: add WARN_ON check on virtio_transport_get_ops() (Stefano Garzarella) [1692797]
+- [net] vsock/virtio: fix null-pointer dereference in virtio_transport_recv_listen() (Stefano Garzarella) [1692797]
+- [net] vsock: avoid to assign transport if its initialization fails (Stefano Garzarella) [1692797]
+- [misc] vsock/vmci: make vmci_vsock_cb_host_called static (Stefano Garzarella) [1692797]
+- [net] vsock: fix bind() behaviour taking care of CID (Stefano Garzarella) [1692797]
+- [net] vsock: prevent transport modules unloading (Stefano Garzarella) [1692797]
+- [misc] vsock/vmci: register vmci_transport only when VMCI guest/host are active (Stefano Garzarella) [1692797]
+- [net] vsock: add multi-transports support (Stefano Garzarella) [1692797]
+- [net] hv_sock: set VMADDR_CID_HOST in the hvs_remote_addr_init() (Stefano Garzarella) [1692797]
+- [net] vsock: move vsock_insert_unbound() in the vsock_create() (Stefano Garzarella) [1692797]
+- [net] vsock: add vsock_create_connected() called by transports (Stefano Garzarella) [1692797]
+- [net] vsock: handle buffer_size sockopts in the core (Stefano Garzarella) [1692797]
+- [net] vsock: add 'struct vsock_sock *' param to vsock_core_get_transport() (Stefano Garzarella) [1692797]
+- [net] vsock/virtio: add transport parameter to the virtio_transport_reset_no_sock() (Stefano Garzarella) [1692797]
+- [net] vsock: add 'transport' member in the struct vsock_sock (Stefano Garzarella) [1692797]
+- [kernel] vsock: remove linux/vm_sockets.h file (Stefano Garzarella) [1692797]
+- [net] vsock: remove vm_sockets_get_local_cid() (Stefano Garzarella) [1692797]
+- [net] vsock/vmci: remove unused VSOCK_DEFAULT_CONNECT_TIMEOUT (Stefano Garzarella) [1692797]
+- [x86] kvm: x86: clear stale x86_emulate_ctxt->intercept value (Jon Maloy) [1806817] {CVE-2020-2732}
+- [x86] kvm: vmx: check descriptor table exits on instruction emulation (Jon Maloy) [1806817] {CVE-2020-2732}
+- [x86] kvm: nvmx: Check IO instruction VM-exit conditions (Jon Maloy) [1806817] {CVE-2020-2732}
+- [x86] kvm: nvmx: Refactor IO bitmap checks into helper function (Jon Maloy) [1806817] {CVE-2020-2732}
+- [x86] kvm: nvmx: Don't emulate instructions in guest mode (Jon Maloy) [1806817] {CVE-2020-2732}
+
+* Wed Apr 01 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.3.el8]
+- [fs] gfs2: Fix oversight in gfs2_ail1_flush (Robert S Peterson) [1724769]
+- [kernel] sched/uclamp: Extend sched_setattr() to support utilization clamping (Phil Auld) [1810399]
+- [kernel] sched/core: Further clarify sched_class::set_next_task() (Phil Auld) [1810399]
+- [kernel] sched/fair: Use mul_u32_u32() (Phil Auld) [1810399]
+- [kernel] sched/core: Simplify sched_class::pick_next_task() (Phil Auld) [1810399]
+- [kernel] sched/core: Optimize pick_next_task() (Phil Auld) [1810399]
+- [kernel] sched/core: Make pick_next_task_idle() more consistent (Phil Auld) [1810399]
+- [kernel] sched/fair: Better document newidle_balance() (Phil Auld) [1810399]
+- [kernel] sched: Fix pick_next_task() vs 'change' pattern race (Phil Auld) [1810399]
+- [cpufreq] cpufreq: Initialize the governors in core_initcall (Phil Auld) [1810399]
+- [kernel] sched/vtime: Fix guest/system mis-accounting on task switch (Phil Auld) [1810399]
+- [kernel] sched/fair/util_est: Implement faster ramp-up EWMA on utilization increases (Phil Auld) [1810399]
+- [kernel] sched/topology: Allow sched_asym_cpucapacity to be disabled (Phil Auld) [1810399]
+- [kernel] sched/topology: Don't try to build empty sched domains (Phil Auld) [1810399]
+- [kernel] sched/topology: Don't set SD_BALANCE_WAKE on cpuset domain relax (Phil Auld) [1810399]
+- [kernel] membarrier: Fix RCU locking bug caused by faulty merge (Phil Auld) [1810399]
+- [kernel] sched/core: Fix preempt_schedule() interrupt return comment (Phil Auld) [1810399]
+- [kernel] sched/membarrier: Return -ENOMEM to userspace on memory allocation failure (Phil Auld) [1810399]
+- [kernel] sched/membarrier: Skip IPIs when mm->mm_users == 1 (Phil Auld) [1810399]
+- [tools] selftests, sched/membarrier: Add multi-threaded test (Phil Auld) [1810399]
+- [kernel] sched/membarrier: Fix p->mm->membarrier_state racy load (Phil Auld) [1810399]
+- [include] sched/membarrier: Call sync_core only before usermode for same mm (Phil Auld) [1810399]
+- [kernel] sched/membarrier: Remove redundant check (Phil Auld) [1810399]
+- [kernel] sched/membarrier: Fix private expedited registration check (Phil Auld) [1810399]
+- [kernel] tasks, sched/core: RCUify the assignment of rq->curr (Phil Auld) [1810399]
+- [kernel] tasks, sched/core: With a grace period after finish_task_switch(), remove unnecessary code (Phil Auld) [1810399]
+- [kernel] tasks, sched/core: Ensure tasks are available for a grace period after leaving the runqueue (Phil Auld) [1810399]
+- [kernel] tasks: Add a count of task RCU users (Phil Auld) [1810399]
+- [include] sched/core: Convert task_struct.usage to refcount_t (Phil Auld) [1810399]
+- [include] sched/core: Convert vcpu_is_preempted() from macro to an inline function (Phil Auld) [1810399]
+- [kernel] sched/fair: Remove unused cfs_rq_clock_task() function (Phil Auld) [1810399]
+- [scripts] Kbuild: Handle PREEMPT_RT for version string and magic (Phil Auld) [1810399]
+- [kernel] sched/fair: Use rq_lock/unlock in online_fair_sched_group (Phil Auld) [1810399]
+- [kernel] sched: Rework pick_next_task() slow-path (Phil Auld) [1810399]
+- [kernel] sched: Allow put_prev_task() to drop rq->lock (Phil Auld) [1810399]
+- [kernel] sched/fair: Expose newidle_balance() (Phil Auld) [1810399]
+- [kernel] sched: Add task_struct pointer to sched_class::set_curr_task (Phil Auld) [1810399]
+- [kernel] sched: Rework CPU hotplug task selection (Phil Auld) [1810399]
+- [kernel] rcu/tree: Fix SCHED_FIFO params (Phil Auld) [1810399]
+- [kernel] sched: Clean up active_mm reference counting (Phil Auld) [1810399]
+- [kernel] sched/{rt, deadline}: Fix set_next_task vs pick_next_task (Phil Auld) [1810399]
+- [kernel] sched: Fix kerneldoc comment for ia64_set_curr_task (Phil Auld) [1810399]
+- [kernel] stop_machine: Fix stop_cpus_in_progress ordering (Phil Auld) [1810399]
+- [kernel] sched/psi: Reduce psimon FIFO priority (Phil Auld) [1810399]
+- [kernel] sched/psi: Do not require setsched permission from the trigger creator (Phil Auld) [1810399]
+- [x86] x86/kvm: Use CONFIG_PREEMPTION (Phil Auld) [1810399]
+- [x86] x86/dumpstack: Indicate PREEMPT_RT in dumps (Phil Auld) [1810399]
+- [x86] x86: Use CONFIG_PREEMPTION (Phil Auld) [1810399]
+- [kernel] kprobes: Use CONFIG_PREEMPTION (Phil Auld) [1810399]
+- [kernel] tracing: Use CONFIG_PREEMPTION (Phil Auld) [1810399]
+- [include] locking/spinlocks: Use CONFIG_PREEMPTION (Phil Auld) [1810399]
+- [kernel] rcu: Use CONFIG_PREEMPTION (Phil Auld) [1810399]
+- [kernel] sched/preempt: Use CONFIG_PREEMPTION where appropriate (Phil Auld) [1810399]
+- [kernel] sched/core: Prevent race condition between cpuset and __sched_setscheduler() (Phil Auld) [1810399]
+- [kernel] rcu/tree: Call setschedule() gp ktread to SCHED_FIFO outside of atomic region (Phil Auld) [1810399]
+- [kernel] cgroup/cpuset: Change cpuset_rwsem and hotplug lock order (Phil Auld) [1810399]
+- [kernel] cgroup/cpuset: Convert cpuset_mutex to percpu_rwsem (Phil Auld) [1810399]
+- [kernel] sched/deadline: Fix bandwidth accounting at all levels after offline migration (Phil Auld) [1810399]
+- [kernel] cpusets: Rebuild root domain deadline accounting information (Phil Auld) [1810399]
+- [kernel] sched/core: Streamle calls to task_rq_unlock() (Phil Auld) [1810399]
+- [kernel] sched/topology: Add partition_sched_domains_locked() (Phil Auld) [1810399]
+- [kernel] sched/stats: Fix unlikely() use of sched_info_on() (Phil Auld) [1810399]
+- [kernel] sched/fair: Change task_numa_work() storage to static (Phil Auld) [1810399]
+- [kernel] sched/fair: Move task_numa_work() init to init_numa_balancing() (Phil Auld) [1810399]
+- [kernel] sched/fair: Move init_numa_balancing() below task_numa_work() (Phil Auld) [1810399]
+- [kernel] sched/rt, Kconfig: Unbreak def/oldconfig with CONFIG_PREEMPT=y (Phil Auld) [1810399]
+- [kernel] sched/rt, Kconfig: Introduce CONFIG_PREEMPT_RT (Phil Auld) [1810399]
+- [kernel] kconfig: include kernel/Kconfig.preempt from init/Kconfig (Phil Auld) [1810399]
+- [kernel] sched/core: Fix preempt warning in ttwu (Phil Auld) [1810399]
+- [kernel] sched/core: Optimize try_to_wake_up() for local wakeups (Phil Auld) [1810399]
+- [kernel] sched/core: Introduce set_next_task() helper for better code readability (Phil Auld) [1810399]
+- [kernel] sched/fair: Don't increase sd->balance_interval on newidle balance (Phil Auld) [1810399]
+- [kernel] sched/fair: Clean up load_balance() condition (Phil Auld) [1810399]
+- [mm] mm: fix possible PMD dirty bit lost in set_pmd_migration_entry() (Rafael Aquini) [1809698]
+- [mm] mm, thp: fix defrag setting if newline is not used (Rafael Aquini) [1809698]
+- [mm] mm/migrate.c: also overwrite error when it is bigger than zero (Rafael Aquini) [1809698]
+- [mm] mm/mempolicy.c: fix out of bounds write in mpol_parse_str() (Rafael Aquini) [1809698]
+- [mm] mm: memcg/slab: call flush_memcg_workqueue() only if memcg workqueue is valid (Rafael Aquini) [1809698]
+- [mm] mm/page-writeback.c: avoid potential division by zero in wb_min_max_ratio() (Rafael Aquini) [1809698]
+- [mm] mm/gup: fix memory leak in __gup_benchmark_ioctl (Rafael Aquini) [1809698]
+- [mm] mm: move_pages: return valid node id in status if the page is already on the target node (Rafael Aquini) [1809698]
+- [mm] mm/zsmalloc.c: fix the migrated zspage statistics (Rafael Aquini) [1809698]
+- [mm] mm: memcg/slab: wait for !root kmem_cache refcnt killing on root kmem_cache destruction (Rafael Aquini) [1809698]
+- [mm] mm/mempolicy.c: check range first in queue_pages_test_walk (Rafael Aquini) [1809698]
+- [mm] mm/memory.c: fix a huge pud insertion race during faulting (Rafael Aquini) [1809698]
+- [mm] mm: move the backup x_devmap() functions to asm-generic/pgtable.h (Rafael Aquini) [1809698]
+- [mm] mm/rmap.c: don't reuse anon_vma if we just want a copy (Rafael Aquini) [1809698]
+- [mm] mm/ksm.c: don't WARN if page is still mapped in remove_stable_node() (Rafael Aquini) [1809698]
+- [mm] mm/page_io.c: do not free shared swap slots (Rafael Aquini) [1809698]
+- [mm] mm: thp: handle page cache THP correctly in PageTransCompoundMap (Rafael Aquini) [1809698]
+- [mm] mm/slub: fix a deadlock in show_slab_objects() (Rafael Aquini) [1809698]
+- [mm] mm/vmpressure.c: fix a signedness bug in vmpressure_register_event() (Rafael Aquini) [1809698]
+- [trace] include/trace/events/writeback.h: fix -Wstringop-truncation warnings (Rafael Aquini) [1809698]
+- [mm] mm/compaction.c: clear total_{migrate, free}_scanned before scanning a new zone (Rafael Aquini) [1809698]
+- [mm] mm/hmm: fix hmm_range_fault()'s handling of swapped out pages (Rafael Aquini) [1809698]
+- [mm] mm/migrate.c: initialize pud_entry in migrate_vma() (Rafael Aquini) [1809698]
+- [kernel] ptrace: restore smp_rmb() in __ptrace_may_access() (Rafael Aquini) [1809698]
+- [documentation] mm: fix Documentation/vm/hmm.rst Sphinx warnings (Rafael Aquini) [1809698]
+- [fs] writeback: fix inode cgroup switching comment (Rafael Aquini) [1809698]
+- [include] mm/page_poison: update comment after code moved (Rafael Aquini) [1809698]
+- [mm] mm/filemap: pass inclusive 'end_byte' parameter to filemap_range_has_page (Rafael Aquini) [1809698]
+- [mm] ARM: 8826/1: mm: initialize pfn limits with find_limits() (Rafael Aquini) [1809698]
+- [fs] mm, proc: report PR_SET_THP_DISABLE in proc (Rafael Aquini) [1809698]
+- [mm] mm/khugepaged: fix crashes due to misaccounted holes (Rafael Aquini) [1809698]
+- [include] writeback: don't decrement wb->refcnt if !wb->bdi (Rafael Aquini) [1809698]
+- [mm] mm/filemap.c: Use existing variable (Rafael Aquini) [1809698]
+- [fs] removed extra extern file_fdatawait_range (Rafael Aquini) [1809698]
+- [s390] Revert "s390/dasd: Disable Thin Provisioning to prevent data loss" (Philipp Rudo) [1816984]
+- [s390] s390/dasd: fix data corruption for thin provisioned devices (Philipp Rudo) [1816984]
+- [block] virtio-blk: improve virtqueue error to BLK_STS (Philipp Rudo) [1816983]
+- [block] virtio-blk: fix hw_queue stopped on arbitrary error (Philipp Rudo) [1816983]
+- [s390] s390/pkey: fix missing length of protected key on return (Philipp Rudo) [1816981]
+- [s390] s390/mm: fix panic in gup_fast on large pud (Philipp Rudo) [1816980]
+
+* Tue Mar 31 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.2.el8]
+- [mmc] mmc: core: Use a minimum 1600ms timeout when enabling CACHE ctrl (Yannick Cote) [1811430]
+- [mmc] mmc: core: Allow BKOPS and CACHE ctrl even if no HPI support (Yannick Cote) [1811430]
+- [net] net/smc: keep vlan_id for SMC-R in smc_listen_work() (Philipp Rudo) [1796890]
+- [scripts] redhat: fix modpost.c prerequisites (Frantisek Hrbata) [1818499]
+- [tools] tools/power/x86/intel-speed-select: Update version (Prarit Bhargava) [1817068]
+- [tools] tools/power/x86/intel-speed-select: Change the order for clos disable (Prarit Bhargava) [1817068]
+- [tools] tools/power/x86/intel-speed-select: Fix result display for turbo-freq auto mode (Prarit Bhargava) [1817068]
+- [tools] tools/power/x86/intel-speed-select: Add support for core-power discovery (Prarit Bhargava) [1817068]
+- [netdrv] can, slip: Protect tty->disc_data in write_wakeup and close with RCU (Steve Best) [1816036]
+- [kernel] exit: panic before exit_mm() on global init exit (Oleg Nesterov) [1808944]
+- [fs] nfsd: restore NFSv3 ACL support ("J. Bruce Fields") [1815683]
+- [fs] nfsd4: Fix kernel crash when reading proc file reply_cache_stats ("J. Bruce Fields") [1815683]
+- [fs] nfsd: fix cleanup of nfsd_reply_cache_init on failure ("J. Bruce Fields") [1815683]
+- [fs] nfsd: note inadequate stats locking ("J. Bruce Fields") [1815683]
+- [fs] nfsd4: drc containerization ("J. Bruce Fields") [1815683]
+- [fs] nfsd: don't call nfsd_reply_cache_shutdown twice ("J. Bruce Fields") [1815683]
+- [fs] nfsd: knfsd must use the container user namespace ("J. Bruce Fields") [1815683]
+- [net] SUNRPC: rsi_parse() should use the current user namespace ("J. Bruce Fields") [1815683]
+- [net] SUNRPC: Fix the server AUTH_UNIX userspace mappings ("J. Bruce Fields") [1815683]
+- [fs] lockd: Pass the user cred from knfsd when starting the lockd server ("J. Bruce Fields") [1815683]
+- [net] SUNRPC: Temporary sockets should inherit the cred from their parent ("J. Bruce Fields") [1815683]
+- [fs] SUNRPC: Cache the process user cred in the RPC server listener ("J. Bruce Fields") [1815683]
+- [fs] nfsd: Allow containers to set supported nfs versions ("J. Bruce Fields") [1815683]
+- [fs] nfsd: Add custom rpcbind callbacks for knfsd ("J. Bruce Fields") [1815683]
+- [fs] SUNRPC: Allow further customisation of RPC program registration ("J. Bruce Fields") [1815683]
+- [net] SUNRPC: Clean up generic dispatcher code ("J. Bruce Fields") [1815683]
+- [fs] SUNRPC: Add a callback to initialise server requests ("J. Bruce Fields") [1815683]
+- [fs] SUNRPC/nfs: Fix return value for nfs4_callback_compound() ("J. Bruce Fields") [1815683]
+- [kernel] sched: Avoid scale real weight down to zero (Phil Auld) [1808562]
+- [nvme] nvme/pci: move cqe check after device shutdown (David Milburn) [1779247 1750267]
+- [mm] mm, slb: guarantee natural alignment for kmalloc(power-of-two) (Brian Foster) [1814964]
+- [tools] tools/power turbostat: Support Ice Lake server (Steve Best) [1776467]
+- [pinctrl] pinctrl: intel: Allow to request locked pads (Prarit Bhargava) [1783115]
+- [s390] s390/qeth: fix potential deadlock on workqueue flush (Philipp Rudo) [1814783]
+- [s390] s390/qeth: streamline control code for promisc mode (Philipp Rudo) [1814783]
+- [s390] scsi: zfcp: fix request object use-after-free in send path causing wrong traces (Philipp Rudo) [1814790]
+- [s390] s390/pci: Fix possible deadlock in recover_store() (Philipp Rudo) [1814788]
+- [s390] s390/pci: Recover handle in clp_set_pci_fn() (Philipp Rudo) [1814788]
+- [s390] scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host (Philipp Rudo) [1814794]
+- [s390] scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP devices (Philipp Rudo) [1814793]
+- [s390] s390/cio: fix virtio-ccw DMA without PV (Philipp Rudo) [1814787]
+- [s390] s390/kaslr: store KASLR offset for early dumps (Philipp Rudo) [1814781]
+- [mm] s390/mm: fix dynamic pagetable upgrade for hugetlbfs (Philipp Rudo) [1814779]
+- [char] tpm: ibmvtpm: retry on H_CLOSED in tpm_ibmvtpm_send() (Steve Best) [1808048]
+- [s390] s390/qeth: fix dangling IO buffers after halt/clear (Philipp Rudo) [1814782]
+- [virtio] virtio_ring: fix unmap of indirect descriptors (Philipp Rudo) [1797289]
+- [virtio] virtio_ring: fix return code on DMA mapping fails (Philipp Rudo) [1797289]
+- [misc] dma-mapping: zero memory returned from dma_alloc_* (Philipp Rudo) [1788928]
+- [platform] platform/mellanox: fix the mlx-bootctl sysfs (Alaa Hleihel) [1655714]
+- [platform] platform/mellanox: Add bootctl driver for Mellanox BlueField Soc (Alaa Hleihel) [1655714]
+- [char] tpm: ibmvtpm: Wait for buffer to be set before proceeding (Steve Best) [1815548]
+- [scsi] iscsi: Avoid potential deadlock in iscsi_if_rx func (Oleksandr Natalenko) [1815874]
+- [x86] x86/vector: Remove warning on managed interrupt migration (Peter Xu) [1812331]
+- [scsi] scsi: lpfc: fix spelling mistake "Notication" -> "Notification" (Dick Kennedy) [1796565]
+- [scsi] scsi: lpfc: add RDF registration and Link Integrity FPIN logging (Dick Kennedy) [1796565]
+- [uapi] scsi: fc: Update Descriptor definition and add RDF and Link Integrity FPINs (Dick Kennedy) [1796565]
+
+* Sun Mar 29 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-193.1.el8]
+- [kvm] KVM: PPC: Book3S HV: Use __gfn_to_pfn_memslot in HPT page fault handler (Sam Bobroff) [1815491]
+- [net] tcp: also NULL skb->dev when copy was needed (Florian Westphal) [1775961]
+- [net] tcp: ensure skb->dev is NULL before leaving TCP stack (Florian Westphal) [1775961]
+
+* Thu Mar 26 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-192.2.el8]
+- [mm] mm/memcontrol: use vmstat names for printing statistics (Waiman Long) [1793534]
+- [base] mm/vmstat: add helpers to get vmstat item names for each enum type (Waiman Long) [1793534]
+- [mm] mm/vmstat.c: assert that vmstat_text is in sync with stat_items_size (Waiman Long) [1793534]
+- [mm] mm: memcontrol: dump memory.stat during cgroup OOM (Waiman Long) [1793534]
+- [mm] mm/memcontrol.c: lost css_put in memcg_expand_shrinker_maps() (Waiman Long) [1793534]
+- [mm] mm: memcg/slab: fix percpu slab vmstats flushing (Waiman Long) [1793534]
+- [include] include/linux/memcontrol.h: fix comments based on per-node memcg (Waiman Long) [1793534]
+- [mm] mm: memcg: switch to css_tryget() in get_mem_cgroup_from_mm() (Waiman Long) [1793534]
+- [mm] mm: memcontrol: fix network errors from failing __GFP_ATOMIC charges (Waiman Long) [1793534]
+- [mm] mm: slab: make page_cgroup_ino() to recognize non-compound slab pages properly (Waiman Long) [1793534]
+- [mm] mm: memcontrol: fix NULL-ptr deref in percpu stats flush (Waiman Long) [1793534]
+- [mm] mm/memcontrol: update lruvec counters in mem_cgroup_move_account (Waiman Long) [1793534]
+- [mm] mm: memcg: get number of pages on the LRU list in memcgroup base on lru_zone_size (Waiman Long) [1793534]
+- [mm] mm: memcontrol: fix percpu vmstats and vmevents flush (Waiman Long) [1793534]
+- [mm] mm, memcg: partially revert "mm/memcontrol.c: keep local VM counters in sync with the hierarchical ones" (Waiman Long) [1793534]
+- [mm] mm: memcontrol: flush percpu slab vmstats on kmem offlining (Waiman Long) [1793534]
+- [mm] mm: memcontrol: flush percpu vmevents before releasing memcg (Waiman Long) [1793534]
+- [mm] mm: memcontrol: flush percpu vmstats before releasing memcg (Waiman Long) [1793534]
+- [mm] mm/memcontrol.c: keep local VM counters in sync with the hierarchical ones (Waiman Long) [1793534]
+- [mm] mm/memcontrol: fix wrong statistics in memory.stat (Waiman Long) [1793534]
+- [mm] mm: memcontrol: don't batch updates of local VM stats and events (Waiman Long) [1793534]
+- [mm] mm: memcontrol: fix NUMA round-robin reclaim at intermediate level (Waiman Long) [1793534]
+- [mm] mm: memcontrol: fix recursive statistics correctness & scalabilty (Waiman Long) [1793534]
+- [mm] mm: memcontrol: move stat/event counting functions out-of-line (Waiman Long) [1793534]
+- [mm] mm: memcontrol: make cgroup stats and events query API explicitly local (Waiman Long) [1793534]
+- [mm] mm, memcg: rename ambiguously named memory.stat counters and functions (Waiman Long) [1793534]
+- [mm] mm: memcontrol: quarantine the mem_cgroup_nr_lru_pages() API (Waiman Long) [1793534]
+- [mm] mm: memcontrol: push down mem_cgroup_nr_lru_pages() (Waiman Long) [1793534]
+- [mm] mm: memcontrol: push down mem_cgroup_node_nr_lru_pages() (Waiman Long) [1793534]
+- [mm] mm: memcontrol: replace node summing with memcg_page_state() (Waiman Long) [1793534]
+- [mm] mm: memcontrol: replace zone summing with lruvec_page_state() (Waiman Long) [1793534]
+- [include] mm: memcontrol: track LRU counts in the vmstats array (Waiman Long) [1793534]
+- [mm] mm: writeback: use exact memcg dirty counts (Waiman Long) [1793534]
+- [mm] mm: memcontrol: expose THP events on a per-memcg basis (Waiman Long) [1793534]
+- [mm] memcg: killed threads should not invoke memcg OOM killer (Waiman Long) [1793534]
+- [mm] mm, memcg: extract memcg maxable seq_file logic to seq_show_memcg_tunable (Waiman Long) [1793534]
+- [mm] mm, memcg: create mem_cgroup_from_seq (Waiman Long) [1793534]
+- [mm] mm/oom_kill.c: fix uninitialized oc->constraint (Waiman Long) [1793534]
+- [mm] mm, oom: add oom victim's memcg to the oom context information (Waiman Long) [1793534]
+- [mm] mm, oom: reorganize the oom report in dump_header (Waiman Long) [1793534]
+- [include] mm: Clarify the implication of adding new node stat items (Waiman Long) [1793534]
+- [mm] memcg: Revert "Add preemption point in accumulate_memcg_tree()" (Waiman Long) [1793534]
+- [base] driver core: add dev_groups to all drivers (Don Dutile) [1814347]
+- [tools] selftests/livepatch: Remove unused local variable in set_ftrace_enabled() (Yannick Cote) [1807115]
+- [tools] selftests/livepatch: Replace set_dynamic_debug() with setup_config() in README (Yannick Cote) [1807115]
+- [tools] selftests: livepatch: Fix it to do root uid check and skip (Yannick Cote) [1807115]
+- [tools] selftests/livepatch: Test interaction with ftrace_enabled (Yannick Cote) [1807115]
+- [tools] selftests/livepatch: Make dynamic debug setup and restore generic (Yannick Cote) [1807115]
+- [kernel] ftrace: Introduce PERMANENT ftrace_ops flag (Yannick Cote) [1807115]
+- [samples] livepatch: Handle allocation failure in the sample of shadow variable API (Yannick Cote) [1807115]
+- [lib] livepatch/samples/selftest: Use klp_shadow_alloc() API correctly (Yannick Cote) [1807115]
+- [lib] livepatch/selftest: Clean up shadow variable names and type (Yannick Cote) [1807115]
+- [samples] livepatch/sample: Use the right type for the leaking data pointer (Yannick Cote) [1807115]
+- [kernel] kprobes: Allow kprobes coexist with livepatch (Yannick Cote) [1727330 1807115]
+- [x86] ftrace/x86: Remove mcount() declaration (Yannick Cote) [1807115]
+- [tools] selftests: livepatch: add missing fragments to config (Yannick Cote) [1807115]
+- [lib] livepatch: Selftests of the API for tracking system state changes (Yannick Cote) [1807115]
+- [documentation] livepatch: Documentation of the new API for tracking system state changes (Yannick Cote) [1807115]
+- [kernel] livepatch: Allow to distinguish different version of system state changes (Yannick Cote) [1807115]
+- [kernel] livepatch: Basic API to track system state changes (Yannick Cote) [1807115]
+- [kernel] livepatch: Keep replaced patches until post_patch callback is called (Yannick Cote) [1807115]
+- [tools] selftests/livepatch: Disable the timeout (Yannick Cote) [1807115]
+- [kernel] livepatch: Nullify obj->mod in klp_module_coming()'s error path (Yannick Cote) [1807115]
+- [powerpc] livepatch: Remove klp_check_compiler_support() (Yannick Cote) [1807115]
+- [x86] ftrace/x86: Remove mcount support (Yannick Cote) [1807115]
+- [x86] ftrace/x86_32: Remove support for non DYNAMIC_FTRACE (Yannick Cote) [1807115]
+- [documentation] docs/livepatch: Unify style of livepatch documentation in the ReST format (Yannick Cote) [1807115]
+- [documentation] docs: livepatch: convert docs to ReST and rename to *.rst (Yannick Cote) [1807115]
+- [kernel] livepatch: Remove duplicate warning about missing reliable stacktrace support (Yannick Cote) [1807115]
+- [kernel] livepatch: Use static buffer for debugging messages under rq lock (Yannick Cote) [1807115]
+- [include] livepatch: Remove stale kobj_added entries from kernel-doc descriptions (Yannick Cote) [1807115]
+- [kernel] livepatch: Remove duplicated code for early initialization (Yannick Cote) [1807115]
+- [kernel] livepatch: Remove custom kobject state handling (Yannick Cote) [1807115]
+- [kernel] livepatch: Convert error about unsupported reliable stacktrace into a warning (Yannick Cote) [1807115]
+- [kernel] kprobes: Replace p with other pointer types (Yannick Cote) [1727330 1807115]
+
+* Wed Mar 25 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-192.1.el8]
+- [drm] drm/bochs: downgrade pci_request_region failure from error to warning (Dave Airlie) [1804735]
+- [drm] drm/bochs: deinit bugfix (Dave Airlie) [1804735]
+- [fs] gfs2: fix O_EXCL|O_CREAT handling on cold dcache (Andrew Price) [1811787]
+- [net] esp: remove the skb from the chain when it's enqueued in cryptd_wq (Xin Long) [1807909]
+- [powerpc] powerpc/nvdimm: set target_node properly (Diego Domingos) [1815038]
+
+* Wed Mar 25 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-191.2.el8]
+- [kernel] posix-cpu-timers: Fix two trivial comments (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Annotate lockless access to timer->base (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Fix permission check regression (Prarit Bhargava) [1810244]
+- [include] posix-cpu-timers: Always clear head pointer on dequeue (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Add a missing bracket and hide `migration_base' on !SMP (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Make expiry_active check actually work correctly (Prarit Bhargava) [1810244]
+- [include] posix-timers: Unbreak CONFIG_POSIX_TIMERS=n build (Prarit Bhargava) [1810244]
+- [kernel] tick: Mark sched_timer to expire in hard interrupt context (Prarit Bhargava) [1810244]
+- [include] posix-cpu-timers: Utilize timerqueue for storage (Prarit Bhargava) [1810244]
+- [include] posix-cpu-timers: Move state tracking to struct posix_cputimers (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Deduplicate rlimit handling (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Remove pointless comparisons (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Get rid of 64bit divisions (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Consolidate timer expiry further (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Get rid of zero checks (Prarit Bhargava) [1810244]
+- [kernel] rlimit: Rewrite non-sensical RLIMIT_CPU comment (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Respect INFINITY for hard RTTIME limit (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Switch thread group sampling to array (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Restructure expiry array (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Remove cputime_expires (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Make expiry checks array based (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Provide array based sample functions (Prarit Bhargava) [1810244]
+- [include] posix-cpu-timers: Remove the odd field rename defines (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Switch check_*_timers() to array cache (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Simplify set_process_cpu_timer() (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Simplify timer queueing (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Provide array based access to expiry cache (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Move expiry cache into struct posix_cputimers (Prarit Bhargava) [1810244]
+- [include] sched: Move struct task_cputime to types.h (Prarit Bhargava) [1810244]
+- [include] posix-cpu-timers: Create a container struct (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Move prof/virt_ticks into caller (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Sample task times once in expiry check (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Get rid of pointer indirection (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Simplify sample functions (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Remove pointless return value check (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Use clock ID in posix_cpu_timer_rearm() (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Use clock ID in posix_cpu_timer_get() (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Use clock ID in posix_cpu_timer_set() (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Consolidate thread group sample code (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Rename thread_group_cputimer() and make it static (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Sample directly in timer check (Prarit Bhargava) [1810244]
+- [kernel] itimers: Use quick sample function (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Provide quick sample function for itimer (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Use common permission check in posix_cpu_timer_create() (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Use common permission check in posix_cpu_clock_get() (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Provide task validation functions (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Remove tsk argument from run_posix_cpu_timers() (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Sanitize bogus WARNONS (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Don't take expiry_lock when timer is currently migrated (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Protect lockless access to timer->base (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Fixup stale comment (Prarit Bhargava) [1810244]
+- [include] alarmtimers: Avoid rtc.h include (Prarit Bhargava) [1810244]
+- [include] posix-timers: Cleanup forward declarations and includes (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Improve comments on handling priority inversion against softirq kthread (Prarit Bhargava) [1810244]
+- [kernel] posix-timers: Use a callback for cancel synchronization on PREEMPT_RT (Prarit Bhargava) [1810244]
+- [kernel] posix-timers: Move rcu_head out of it union (Prarit Bhargava) [1810244]
+- [kernel] posix-timers: Rework cancel retry loops (Prarit Bhargava) [1810244]
+- [kernel] posix-timers: Cleanup the flag/flags confusion (Prarit Bhargava) [1810244]
+- [kernel] itimers: Prepare for PREEMPT_RT (Prarit Bhargava) [1810244]
+- [fs] timerfd: Prepare for PREEMPT_RT (Prarit Bhargava) [1810244]
+- [kernel] alarmtimer: Prepare for PREEMPT_RT (Prarit Bhargava) [1810244]
+- [kernel] sched/deadline: Ensure inactive_timer runs in hardirq context (Prarit Bhargava) [1810244]
+- [kernel] timers: Prepare support for PREEMPT_RT (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Prepare support for PREEMPT_RT (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Determine hard/soft expiry mode for hrtimer sleepers on RT (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Move unmarked hrtimers to soft interrupt expiry on RT (Prarit Bhargava) [1810244]
+- [kernel] tick: Mark tick related hrtimers to expiry in hard interrupt context (Prarit Bhargava) [1810244]
+- [kvm] KVM: LAPIC: Mark hrtimer to expire in hard interrupt context (Prarit Bhargava) [1810244]
+- [kernel] watchdog: Mark watchdog_hrtimer to expire in hard interrupt context (Prarit Bhargava) [1810244]
+- [kernel] perf/core: Mark hrtimers to expire in hard interrupt context (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Make enqueue mode check work on RT (Prarit Bhargava) [1810244]
+- [kernel] sched: Mark hrtimers to expire in hard interrupt context (Prarit Bhargava) [1810244]
+- [staging] hrtimer/treewide: Use hrtimer_sleeper_start_expires() (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Provide hrtimer_sleeper_start_expires() (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Consolidate hrtimer_init() + hrtimer_init_sleeper() calls (Prarit Bhargava) [1810244]
+- [kernel] hrtimer: Remove task argument from hrtimer_init_sleeper() (Prarit Bhargava) [1810244]
+- [kernel] futex: Consolidate duplicated timer setup code (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Remove private interval storage (Prarit Bhargava) [1810244]
+- [kernel] posix-cpu-timers: Unbreak timer rearming (Prarit Bhargava) [1810244]
+- [mm] mm, slub: naive detection of double-free or freelist corruption (Rafael Aquini) [1810288]
+- [fs] nfs: add minor version to nfs_server_key for fscache (Dave Wysochanski) [1777097]
+- [edac] EDAC, mellanox: Add ECC support for BlueField DDR4 (Alaa Hleihel) [1725108]
+- [platform] platform/mellanox: fix potential deadlock in the tmfifo driver (Alaa Hleihel) [1655736]
+- [platform] platform/mellanox: Add TmFifo driver for Mellanox BlueField Soc (Alaa Hleihel) [1655736]
+- [mm] powerpc/pmem: Fix kernel crash due to wrong range value usage in flush_dcache_range (Steve Best) [1814279]
+- [mm] powerpc: Chunk calls to flush_dcache_range in arch_*_memory (Steve Best) [1814279]
+- [fs] cifs: fix NULL dereference in match_prepath (Leif Sahlberg) [1760879]
+- [fs] cifs: fail i/o on soft mounts if sessionsetup errors out (Leif Sahlberg) [1798031]
+- [sound] ALSA: usb-audio: set the interface format after resume on Dell WD19 (Perry Yuan) [1807965]
+- [fs] cifs: make sure we do not overflow the max EA buffer size (Leif Sahlberg) [1752437]
+
+* Sun Mar 22 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-191.1.el8]
+- [netdrv] net/mlx5e: Don't clear the whole vf config when switching modes (mohamad meib) [1814350]
+- [fs] fuse: fix stack use after return (Miklos Szeredi) [1814666]
+
+* Sat Mar 21 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-190.3.el8]
+- [target] scsi: Revert "target: iscsi: Wait for all commands to finish before freeing a session" (Maurizio Lombardi) [1784442]
+- [infiniband] scsi: Revert "RDMA/isert: Fix a recently introduced regression related to logout" (Maurizio Lombardi) [1784442]
+- [target] scsi: Revert "target/core: Inline transport_lun_remove_cmd()" (Maurizio Lombardi) [1784442]
+- [target] scsi: libfc: remove unnecessary assertion on ep variable (Maurizio Lombardi) [1784442]
+- [infiniband] scsi: RDMA/isert: Fix a recently introduced regression related to logout (Maurizio Lombardi) [1784442]
+- [target] scsi: target/iblock: Fix protection error with blocks greater than 512B (Maurizio Lombardi) [1784442]
+- [target] scsi: target: core: Fix a pr_debug() argument (Maurizio Lombardi) [1784442]
+- [target] scsi: target: iscsi: Wait for all commands to finish before freeing a session (Maurizio Lombardi) [1784442]
+- [target] scsi: target: core: Release SPC-2 reservations when closing a session (Maurizio Lombardi) [1784442]
+- [target] scsi: target: core: Document target_cmd_size_check() (Maurizio Lombardi) [1784442]
+- [target] scsi: target: tcmu: Prevent memory reclaim recursion (Maurizio Lombardi) [1784442]
+- [scsi] scsi: cxgb4i: remove set but not used variable 'ppmax' (Maurizio Lombardi) [1784442]
+- [target] scsi: target: remove unused extension parameters (Maurizio Lombardi) [1784442]
+- [target] scsi: target: fix SendTargets=All string compares (Maurizio Lombardi) [1784442]
+- [target] scsi: target: Remove tpg_list and se_portal_group.se_tpg_node (Maurizio Lombardi) [1784442]
+- [target] scsi: target: cxgbit: Fix cxgbit_fw4_ack() (Maurizio Lombardi) [1784442]
+- [infiniband] IB/hfi1: TID RDMA WRITE should not return IB_WC_RNR_RETRY_EXC_ERR (Kamal Heib) [1786601]
+- [infiniband] IB/hfi1: Calculate flow weight based on QP MTU for TID RDMA (Kamal Heib) [1786601]
+- [infiniband] IB/hfi1: Ensure r_tid_ack is valid before building TID RDMA ACK packet (Kamal Heib) [1786601]
+- [infiniband] IB/hfi1: Ensure full Gen3 speed in a Gen4 system (Kamal Heib) [1786601]
+- [infiniband] IB/core: Avoid deadlock during netlink message handling (Kamal Heib) [1786601]
+- [infiniband] RDMA/efa: Fix incorrect error print (Kamal Heib) [1786601]
+- [infiniband] IB/iser: Support up to 16MB data transfer in a single command (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Add missing cast for 32 bit (Kamal Heib) [1786601]
+- [documentation] Documentation/infiniband: update name of some functions (Kamal Heib) [1786601]
+- [infiniband] RDMA/iwpm: Delete unnecessary checks before the macro call "dev_kfree_skb" (Kamal Heib) [1786601]
+- [infiniband] RDMA/efa: Use existing FIELD_SIZEOF macro (Kamal Heib) [1786601]
+- [infiniband] RDMA/efa: Remove umem check on dereg MR flow (Kamal Heib) [1786601]
+- [net] xprtrdma: Send Queue size grows after a reconnect (Kamal Heib) [1786601]
+- [net] xprtrdma: Clear xprt->reestablish_timeout on close (Kamal Heib) [1786601]
+- [net] xprtrdma: Recycle MRs after disconnect (Kamal Heib) [1786601]
+- [net] xprtrdma: Optimize rpcrdma_post_recvs() (Kamal Heib) [1786601]
+- [net] xprtrdma: Inline XDR chunk encoder functions (Kamal Heib) [1786601]
+- [infiniband] RDMA/core: Make invalidate_range a device operation (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Use kvcalloc for the dma_list and page_list (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Check for overflow when computing the umem_odp end (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Provide ib_umem_odp_release() to undo the allocs (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Split creating a umem_odp from ib_umem_get (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Make the three ways to create a umem_odp clear (Kamal Heib) [1786601]
+- [infiniband] RMDA/odp: Consolidate umem_odp initialization (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Make it clearer when a umem is an implicit ODP umem (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Iterate over the whole rbtree directly (Kamal Heib) [1786601]
+- [infiniband] RDMA/odp: Use the common interval tree library instead of generic (Kamal Heib) [1786601]
+- [net] xprtrdma: Clean up xprt_rdma_set_connect_timeout() (Kamal Heib) [1786601]
+- [net] xprtrdma: Use an llist to manage free rpcrdma_reps (Kamal Heib) [1786601]
+- [net] xprtrdma: Remove rpcrdma_buffer::rb_mrlock (Kamal Heib) [1786601]
+- [net] xprtrdma: Cache free MRs in each rpcrdma_req (Kamal Heib) [1786601]
+- [net] xprtrdma: Ensure creating an MR does not trigger FS writeback (Kamal Heib) [1786601]
+- [net] xprtrdma: Move rpcrdma_mr_get out of frwr_map (Kamal Heib) [1786601]
+- [net] xprtrdma: Combine rpcrdma_mr_put and rpcrdma_mr_unmap_and_put (Kamal Heib) [1786601]
+- [net] xprtrdma: Simplify rpcrdma_mr_pop (Kamal Heib) [1786601]
+- [net] xprtrdma: Rename rpcrdma_buffer::rb_all (Kamal Heib) [1786601]
+- [net] xprtrdma: Rename CQE field in Receive trace points (Kamal Heib) [1786601]
+- [infiniband] RDMA: Delete DEBUG code (Kamal Heib) [1786601]
+- [include] xprtrdma: Boost client's max slot table size to match Linux server (Kamal Heib) [1786601]
+- [net] xprtrdma: Boost maximum transport header size (Kamal Heib) [1786601]
+- [net] xprtrdma: Fix calculation of ri_max_segs again (Kamal Heib) [1786601]
+- [net] xprtrdma: Update obsolete comment (Kamal Heib) [1786601]
+- [net] xprtrdma: Refresh the documenting comment in frwr_ops.c (Kamal Heib) [1786601]
+- [net] svcrdma: Use llist for managing cache of recv_ctxts (Kamal Heib) [1786601]
+- [net] svcrdma: Remove svc_rdma_wq (Kamal Heib) [1786601]
+- [infiniband] RDMA/efa: Rate limit admin queue error prints (Kamal Heib) [1786601]
+- [rdma] RDMA/core: Introduce ratelimited ibdev printk functions (Kamal Heib) [1786601]
+- [net] rdma: Enable ib_alloc_cq to spread work over a device's comp_vectors (Kamal Heib) [1786601]
+- [infiniband] RDMA/core: fix spelling mistake "Nelink" -> "Netlink" (Kamal Heib) [1786601]
+- [infiniband] net: Use skb_frag_off accessors (Kamal Heib) [1786601]
+- [infiniband] RDMA/efa: Expose device statistics (Kamal Heib) [1786601]
+- [infiniband] RDMA/core: Support netlink commands in non init_net net namespaces (Kamal Heib) [1786601]
+- [rdma] RDMA: Make most headers compile stand alone (Kamal Heib) [1786601]
+- [infiniband] RDMA/core: Annotate destroy of mutex to ensure that it is released as unlocked (Kamal Heib) [1786601]
+- [infiniband] net: Use skb accessors in network drivers (Kamal Heib) [1786601]
+- [documentation] docs: infiniband: add it to the driver-api bookset (Kamal Heib) [1786601]
+- [infiniband] IB/hfi1: use the new FOLL_LONGTERM flag to get_user_pages_fast() (Kamal Heib) [1786601]
+- [documentation] Documentation/infiniband: update from locked to pinned_vm (Kamal Heib) [1786601]
+- [infiniband] opa_vnic: fix check on record->event, incorrect operator used (Kamal Heib) [1786601]
+- [infiniband] opa_vnic: Convert vport_idr to XArray (Kamal Heib) [1786601]
+- [infiniband] IB/hfi1: Ensure ucast_dlid access doesnt exceed bounds (Kamal Heib) [1786601]
+- [infiniband] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 (Kamal Heib) [1786601]
+- [infiniband] treewide: Add SPDX license identifier - Kbuild (Kamal Heib) [1786601]
+- [infiniband] mm/gup: add make_dirty arg to put_user_pages_dirty_lock() (Kamal Heib) [1786601]
+- [netdrv] ibmvnic: Do not process device remove during device reset (Steve Best) [1813223]
+- [bluetooth] Revert "Bluetooth: btusb: driver to enable the usb-wakeup feature" (Gopal Tiwari) [1811534]
+- [tty] serial: 8250_pci: Make PCI class test non fatal (Prarit Bhargava) [1812742]
+- [powercap] powercap/intel_rapl: add support for ICX-D (Steve Best) [1485067]
+- [char] drivers: ipmi: fix off-by-one bounds check that leads to a out-of-bounds write (Tony Camuso) [1812922]
+- [char] ipmi:ssif: Handle a possible NULL pointer reference (Tony Camuso) [1812922]
+- [char] drivers: ipmi: Modify max length of IPMB packet (Tony Camuso) [1812922]
+- [char] drivers: ipmi: Support raw i2c packet in IPMB (Tony Camuso) [1812922]
+- [char] ipmi: fix ipmb_poll()'s return type (Tony Camuso) [1812922]
+- [char] char: Fix Kconfig indentation, continued (Tony Camuso) [1812922]
+- [char] char: Fix Kconfig indentation (Tony Camuso) [1812922]
+- [char] ipmi: kill off 'timespec' usage again (Tony Camuso) [1812922]
+- [char] drivers: ipmi: Support for both IPMB Req and Resp (Tony Camuso) [1812922]
+- [char] ipmi: Fix memory leak in __ipmi_bmc_register (Tony Camuso) [1812922]
+- [char] ipmi: bt-bmc: use devm_platform_ioremap_resource() to simplify code (Tony Camuso) [1812922]
+- [char] ipmi: use *ph to print small buffer (Tony Camuso) [1812922]
+- [char] ipmi: Don't leave holes in the I2C address list in the ssif driver (Tony Camuso) [1812922]
+- [char] ipmi: fix return value of ipmi_set_my_LUN (Tony Camuso) [1812922]
+- [char] ipmi: Convert pr_xxx() to dev_xxx() in the BT code (Tony Camuso) [1812922]
+- [char] ipmi:dmi: Ignore IPMI SMBIOS entries with a zero base address (Tony Camuso) [1812922]
+- [char] ipmi_si: fix potential integer overflow on large shift (Tony Camuso) [1812922]
+- [char] ipmi_si_pci: fix NULL device in ipmi_si error message (Tony Camuso) [1812922]
+- [char] ipmi: Convert printk(KERN_<level> to pr_<level>( (Tony Camuso) [1812922]
+- [char] pci:ipmi: Move IPMI PCI class id defines to pci_ids.h (Tony Camuso) [1812922]
+- [char] ipmi:powernv: Convert ipmi_smi_t to struct ipmi_smi (Tony Camuso) [1812922]
+- [fs] NFSv4 fix acl retrieval over krb5i/krb5p mounts (Steve Dickson) [1787627]
+
+* Fri Mar 20 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-190.2.el8]
+- [fs] gfs2: Additional information when gfs2_ail1_flush withdraws (Robert S Peterson) [1752976]
+- [fs] gfs2: Fix lru_count going negative (Robert S Peterson) [1752976]
+- [fs] gfs2: allow journal replay to hold sd_log_flush_lock (Robert S Peterson) [1752976]
+- [fs] gfs2: don't allow releasepage to free bd still used for revokes (Robert S Peterson) [1752976]
+- [fs] gfs2: clean up iopen glock mess in gfs2_create_inode (Robert S Peterson) [1752976]
+- [fs] gfs2: flesh out delayed withdraw for gfs2_log_flush (Robert S Peterson) [1752976]
+- [fs] gfs2: Fix incorrect variable name (Robert S Peterson) [1752976]
+- [fs] gfs2: Do proper error checking for go_sync family of glops functions (Robert S Peterson) [1752976]
+- [fs] gfs2: Don't demote a glock until its revokes are written (Robert S Peterson) [1752976]
+- [fs] gfs2: drain the ail2 list after io errors (Robert S Peterson) [1752976]
+- [fs] gfs2: Withdraw in gfs2_ail1_flush if write_cache_pages fails (Robert S Peterson) [1752976]
+- [fs] gfs2: Do log_flush in gfs2_ail_empty_gl even if ail list is empty (Robert S Peterson) [1752976]
+- [fs] gfs2: Check for log write errors before telling dlm to unlock (Robert S Peterson) [1752976]
+- [fs] gfs2: Prepare to withdraw as soon as an IO error occurs in log write (Robert S Peterson) [1752976]
+- [fs] gfs2: Issue revokes more intelligently (Robert S Peterson) [1752976]
+- [fs] gfs2: Add verbose option to check_journal_clean (Robert S Peterson) [1752976]
+- [fs] gfs2: fix infinite loop when checking ail item count before go_inval (Robert S Peterson) [1752976]
+- [fs] gfs2: Force withdraw to replay journals and wait for it to finish (Robert S Peterson) [1752976]
+- [fs] gfs2: Allow some glocks to be used during withdraw (Robert S Peterson) [1752976]
+- [fs] gfs2: move check_journal_clean to util.c for future use (Robert S Peterson) [1752976]
+- [fs] gfs2: Ignore dlm recovery requests if gfs2 is withdrawn (Robert S Peterson) [1752976]
+- [fs] gfs2: Only complain the first time an io error occurs in quota or log (Robert S Peterson) [1752976]
+- [fs] gfs2: log error reform (Robert S Peterson) [1752976]
+- [fs] gfs2: Rework how rgrp buffer_heads are managed (Robert S Peterson) [1752976]
+- [fs] gfs2: clear ail1 list when gfs2 withdraws (Robert S Peterson) [1752976]
+- [fs] gfs2: Introduce concept of a pending withdraw (Robert S Peterson) [1752976]
+- [fs] gfs2: Return bool from gfs2_assert functions (Robert S Peterson) [1752976]
+- [fs] gfs2: Turn gfs2_consist into void functions (Robert S Peterson) [1752976]
+- [fs] gfs2: Remove usused cluster_wide arguments of gfs2_consist functions (Robert S Peterson) [1752976]
+- [fs] gfs2: Report errors before withdraw (Robert S Peterson) [1752976]
+- [fs] gfs2: Split gfs2_lm_withdraw into two functions (Robert S Peterson) [1752976]
+- [fs] gfs2: Fix possible fs name overflows (Robert S Peterson) [1752976]
+- [fs] gfs2: Remove active journal side effect from gfs2_write_log_header (Robert S Peterson) [1752976]
+- [fs] gfs2: Don't loop forever in gfs2_freeze if withdrawn (Robert S Peterson) [1752976]
+- [fs] gfs2: fix infinite loop in gfs2_ail1_flush on io error (Robert S Peterson) [1752976]
+- [fs] gfs2: Introduce function gfs2_withdrawn (Robert S Peterson) [1752976]
+- [fs] gfs2: fix glock reference problem in gfs2_trans_add_unrevoke (Robert S Peterson) [1752976]
+- [fs] gfs2: make gfs2_log_shutdown static (Robert S Peterson) [1752976]
+- [fs] gfs2: replace more printk with calls to fs_info and friends (Robert S Peterson) [1752976]
+- [fs] gfs2: dump fsid when dumping glock problems (Robert S Peterson) [1752976]
+- [fs] gfs2: simplify gfs2_freeze by removing case (Robert S Peterson) [1752976]
+- [fs] gfs2: Rename SDF_SHUTDOWN to SDF_WITHDRAWN (Robert S Peterson) [1752976]
+- [fs] gfs2: Warn when a journal replay overwrites a rgrp with buffers (Robert S Peterson) [1752976]
+- [fs] gfs2: log which portion of the journal is replayed (Robert S Peterson) [1752976]
+- [fs] gfs2: kthread and remount improvements (Robert S Peterson) [1752976]
+- [fs] gfs2: Fix occasional glock use-after-free (Robert S Peterson) [1752976]
+- [fs] gfs2: Rename sd_log_le_{revoke,ordered} (Robert S Peterson) [1724769]
+- [watchdog] watchdog: make nowayout sysfs file writable (David Arcari) [1802742]
+- [watchdog] watchdog: prevent deferral of watchdogd wakeup on RT (David Arcari) [1802742]
+- [watchdog] watchdog: Fix the race between the release of watchdog_core_data and cdev (David Arcari) [1802742]
+- [watchdog] watchdog: convert remaining drivers to use SPDX license identifier (David Arcari) [1802742]
+- [watchdog] watchdog: make the device time out at open_deadline when open_timeout is used (David Arcari) [1802742]
+- [watchdog] watchdog: introduce CONFIG_WATCHDOG_OPEN_TIMEOUT (David Arcari) [1802742]
+- [watchdog] watchdog: introduce watchdog.open_timeout commandline parameter (David Arcari) [1802742]
+- [watchdog] watchdog: let core print error message when registering device fails (David Arcari) [1802742]
+- [watchdog] watchdog: make watchdog_deferred_registration_add() void (David Arcari) [1802742]
+- [watchdog] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (David Arcari) [1802742]
+- [watchdog] watchdog: add error messages when initializing timeout fails (David Arcari) [1802742]
+- [watchdog] watchdog: refactor watchdog_init_timeout (David Arcari) [1802742]
+- [watchdog] watchdog: core: fix null pointer dereference when releasing cdev (David Arcari) [1802742]
+- [x86] x86/ioapic: Prevent inconsistent state when moving an interrupt (Prarit Bhargava) [1810236]
+- [x86] x86/fpu: Don't cache access to fpu_fpregs_owner_ctx (Prarit Bhargava) [1810236]
+- [lib] lib/ubsan: don't serialize UBSAN report (Prarit Bhargava) [1810243]
+- [lib] ubsan, x86: Annotate and allow __ubsan_handle_shift_out_of_bounds() in uaccess regions (Prarit Bhargava) [1810243]
+- [kernel] workqueue: Fix pwq ref leak in rescuer_thread() (Prarit Bhargava) [1810243]
+- [kernel] workqueue: Fix missing kfree(rescuer) in destroy_workqueue() (Prarit Bhargava) [1810243]
+- [kernel] workqueue: Fix spurious sanity check failures in destroy_workqueue() (Prarit Bhargava) [1810243]
+- [include] hrtimer: Add kernel doc annotation for HRTIMER_MODE_HARD (Prarit Bhargava) [1810243]
+- [kernel] genirq: Force interrupt threading on RT (Prarit Bhargava) [1810243]
+- [include] hrtimer: Introduce HARD expiry mode (Prarit Bhargava) [1810243]
+- [kernel] workqueue: Remove GPF argument from alloc_workqueue_attrs() (Prarit Bhargava) [1810243]
+- [kernel] workqueue: Make alloc/apply/free_workqueue_attrs() static (Prarit Bhargava) [1810243]
+- [tools] objtool: Add UACCESS validation (Prarit Bhargava) [1810243]
+- [tools] objtool: Handle function aliases (Prarit Bhargava) [1810243]
+- [lib] ubsan: build ubsan.c more conservatively (Prarit Bhargava) [1810243]
+- [lib] x86/uaccess, ubsan: Fix UBSAN vs. SMAP (Prarit Bhargava) [1810243]
+- [tools] objtool: Rewrite alt->skip_orig (Prarit Bhargava) [1810243]
+- [fs] dlm: Don't swamp the CPU with callbacks queued during recovery (Robert S Peterson) [1752976]
+- [nvme] nvmet: update AEN list and array at one place (Gopal Tiwari) [1781927]
+- [nvme] nvmet: Fix controller use after free (Gopal Tiwari) [1781927]
+- [nvme] nvmet: Fix error print message at nvmet_install_queue function (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: remove nvmeq->tags (Gopal Tiwari) [1781927]
+- [nvme] nvmet: fix dsm failure when payload does not match sgl descriptor (Gopal Tiwari) [1781927]
+- [nvme] nvme: hwmon: switch to use <linux/units.h> helpers (Gopal Tiwari) [1781927]
+- [nvme] nvmet: fix per feat data len for get_feature (Gopal Tiwari) [1781927]
+- [nvme] nvme/pci: Fix read queue count (Gopal Tiwari) [1781927]
+- [nvme] nvme/pci Limit write queue sizes to possible cpus (Gopal Tiwari) [1781927]
+- [nvme] nvme/pci: Fix write and poll queue types (Gopal Tiwari) [1781927]
+- [nvme] nvme/pci: Remove last_cq_head (Gopal Tiwari) [1781927]
+- [nvme] nvme: Namepace identification descriptor list is optional (Gopal Tiwari) [1781927]
+- [nvme] Revert "nvme: Add quirk for Kingston NVME SSD running FW E8FK11.T" (Gopal Tiwari) [1781927]
+- [nvme] nvme: else following return is not needed (Gopal Tiwari) [1781927]
+- [nvme] nvme: add error message on mismatching controller ids (Gopal Tiwari) [1781927]
+- [nvme] nvme_fc: add module to ops template to allow module references (Gopal Tiwari) [1781927]
+- [nvme] nvmet-loop: Avoid preallocating big SGL for data (Gopal Tiwari) [1781927]
+- [nvme] nvme-fc: Avoid preallocating big SGL for data (Gopal Tiwari) [1781927]
+- [nvme] nvme-rdma: Avoid preallocating big SGL for data (Gopal Tiwari) [1781927]
+- [nvme] nvme: hwmon: add quirk to avoid changing temperature threshold (Gopal Tiwari) [1781927]
+- [nvme] nvme: hwmon: provide temperature min and max values for each sensor (Gopal Tiwari) [1781927]
+- [nvme] nvme: Discard workaround for non-conformant devices (Gopal Tiwari) [1781927]
+- [nvme] nvme: Add hardware monitoring support (Gopal Tiwari) [1781927]
+- [nvme] nvme-multipath: fix crash in nvme_mpath_clear_ctrl_paths (Gopal Tiwari) [1781927]
+- [nvme] nvme-rdma: fix a segmentation fault during module unload (Gopal Tiwari) [1781927]
+- [nvme] nvmet: clean up command parsing a bit (Gopal Tiwari) [1781927]
+- [nvme] nvmet: fill discovery controller sn, fr and mn correctly (Gopal Tiwari) [1781927]
+- [nvme] nvmet: Open code nvmet_req_execute() (Gopal Tiwari) [1781927]
+- [nvme] nvmet: Remove the data_len field from the nvmet_req struct (Gopal Tiwari) [1781927]
+- [nvme] nvmet: add plugging for read/write when ns is bdev (Gopal Tiwari) [1781927]
+- [nvme] nvmet: stop using bio_set_op_attrs (Gopal Tiwari) [1781927]
+- [nvme] nvmet: Introduce nvmet_dsm_len() helper (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: Spelling s/resdicovered/rediscovered/ (Gopal Tiwari) [1781927]
+- [nvme] nvmet-tcp: Don't check data_len in nvmet_tcp_map_data() (Gopal Tiwari) [1781927]
+- [nvme] nvme: Introduce nvme_lba_to_sect() (Gopal Tiwari) [1781927]
+- [nvme] nvmet-tcp: Don't set the request's data_len (Gopal Tiwari) [1781927]
+- [nvme] nvmet: Cleanup discovery execute handlers (Gopal Tiwari) [1781927]
+- [nvme] nvmet-rdma: add unlikely check at nvmet_rdma_map_sgl_keyed (Gopal Tiwari) [1781927]
+- [nvme] nvme: Cleanup and rename nvme_block_nr() (Gopal Tiwari) [1781927]
+- [nvme] nvme: introduce "Command Aborted By host" status code (Gopal Tiwari) [1781927]
+- [nvme] nvmet: Introduce common execute function for get_log_page and identify (Gopal Tiwari) [1781927]
+- [nvme] nvme: move common call to nvme_cleanup_cmd to core layer (Gopal Tiwari) [1781927]
+- [nvme] nvmet: add unlikely check at nvmet_req_alloc_sgl (Gopal Tiwari) [1781927]
+- [nvme] nvme-fc: ensure association_id is cleared regardless of a Disconnect LS (Gopal Tiwari) [1781927]
+- [nvme] nvme-fc: clarify error messages (Gopal Tiwari) [1781927]
+- [nvme] nvme: introduce nvme_is_aen_req function (Gopal Tiwari) [1781927]
+- [nvme] nvme-fc and nvmet-fc: sync with FC-NVME-2 header changes (Gopal Tiwari) [1781927]
+- [nvme] nvmet: use bio_io_error instead of duplicating it (Gopal Tiwari) [1781927]
+- [nvme] nvme-fc: Set new cmd set indicator in nvme-fc cmnd iu (Gopal Tiwari) [1781927]
+- [nvme] nvme-multipath: remove unused groups_only mode in ana log (Gopal Tiwari) [1781927]
+- [nvme] nvme-multipath: fix possible io hang after ctrl reconnect (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: fix possible leakage during error flow (Gopal Tiwari) [1781927]
+- [nvme] nvmet-loop: fix possible leakage during error flow (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: Initialize sk->sk_ll_usec only with NET_RX_BUSY_POLL (Gopal Tiwari) [1781927]
+- [nvme] nvme: Wait for reset state when required (Gopal Tiwari) [1781927]
+- [nvme] nvme: Prevent resets during paused controller state (Gopal Tiwari) [1781927]
+- [nvme] nvme: Restart request timers in resetting state (Gopal Tiwari) [1781927]
+- [nvme] nvme: Remove ADMIN_ONLY state (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: Free tagset if no IO queues (Gopal Tiwari) [1781927]
+- [nvme] nvme: fix possible deadlock when nvme_update_formats fails (Gopal Tiwari) [1781927]
+- [include] nvme-fc: Sync nvme-fc header to FC-NVME-2 (Gopal Tiwari) [1781927]
+- [nvme] nvme: retain split access workaround for capability reads (Gopal Tiwari) [1781927]
+- [nvme] nvme: Move ctrl sqsize to generic space (Gopal Tiwari) [1781927]
+- [nvme] nvme: Add ctrl attributes for queue_count and sqsize (Gopal Tiwari) [1781927]
+- [nvme] nvme: allow 64-bit results in passthru commands (Gopal Tiwari) [1781927]
+- [nvme] nvme-rdma: Fix max_hw_sectors calculation (Gopal Tiwari) [1781927]
+- [nvme] Added QUIRKs for ADATA XPG SX8200 Pro 512GB (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: fix wrong stop condition in io_work (Gopal Tiwari) [1781927]
+- [nvme] nvme: fix an error code in nvme_init_subsystem() (Gopal Tiwari) [1781927]
+- [nvme] nvmet-tcp: remove superflous check on request sgl (Gopal Tiwari) [1781927]
+- [nvme] nvme: Add quirk for Kingston NVME SSD running FW E8FK11.T (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: Fix a race in controller removal (Gopal Tiwari) [1781927]
+- [nvme] nvmet: change ppl to lpp (Gopal Tiwari) [1781927]
+- [nvme] nvme: add uevent variables for controller devices (Gopal Tiwari) [1781927]
+- [nvme] nvme: Remove redundant assignment of cq vector (Gopal Tiwari) [1781927]
+- [nvme] nvme: enable aen regardless of the presence of I/O queues (Gopal Tiwari) [1781927]
+- [nvme] nvme: send discovery log page change events to userspace (Gopal Tiwari) [1781927]
+- [nvme] nvme: Assign subsys instance from first ctrl (Gopal Tiwari) [1781927]
+- [nvme] nvmet: fix a wrong error status returned in error log page (Gopal Tiwari) [1781927]
+- [nvme] nvme: tcp: remove redundant assignment to variable ret (Gopal Tiwari) [1781927]
+- [nvme] nvme-fabrics: allow discovery subsystems accept a kato (Gopal Tiwari) [1781927]
+- [nvme] nvmet: Use PTR_ERR_OR_ZERO() in nvmet_init_discovery() (Gopal Tiwari) [1781927]
+- [nvme] nvme: Treat discovery subsystems as unique subsystems (Gopal Tiwari) [1781927]
+- [nvme] nvme-fc: Fail transport errors with NVME_SC_HOST_PATH (Gopal Tiwari) [1781927]
+- [nvme] nvme: make nvme_report_ns_ids propagate error back (Gopal Tiwari) [1781927]
+- [nvme] nvme: pass status to nvme_error_status (Gopal Tiwari) [1781927]
+- [nvme] nvme: fix ns removal hang when failing to revalidate due to a transient error (Gopal Tiwari) [1781927]
+- [nvme] nvme: make nvme_identify_ns propagate errors back (Gopal Tiwari) [1781927]
+- [nvme] nvme: fail cancelled commands with NVME_SC_HOST_PATH_ERROR (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: fail command with NVME_SC_HOST_PATH_ERROR send failed (Gopal Tiwari) [1781927]
+- [nvme] nvme: include admin_q sync with nvme_sync_queues (Gopal Tiwari) [1781927]
+- [nvme] nvme-fc: Use rq_dma_dir macro (Gopal Tiwari) [1781927]
+- [nvme] nvme-rdma: Use rq_dma_dir macro (Gopal Tiwari) [1781927]
+- [nvme] nvme-rdma: Add TOS for rdma transport (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: Support shared tags across queues for Apple 2018 controllers (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: Add support for Apple 2018+ models (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: Add support for variable IO SQ element size (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: Add TOS for tcp transport (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: Use struct nvme_ctrl directly (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: Pass the queue to SQ_SIZE/CQ_SIZE macros (Gopal Tiwari) [1781927]
+- [nvme] nvmet-tcp: Add TOS for tcp transport (Gopal Tiwari) [1781927]
+- [nvme] nvme: trace bio completion (Gopal Tiwari) [1781927]
+- [nvme] nvmet-tcp: fix possible NULL deref (Gopal Tiwari) [1781927]
+- [nvme] nvme: tcp: selects CRYPTO_CRC32C for nvme-tcp (Gopal Tiwari) [1781927]
+- [nvme] nvme-fabrics: Add type of service (TOS) configuration (Gopal Tiwari) [1781927]
+- [nvme] nvmet: trace: parse Get LBA Status command in detail (Gopal Tiwari) [1781927]
+- [nvme] nvmet: fix data units read and written counters in SMART log (Gopal Tiwari) [1781927]
+- [nvme] nvmet-tcp: fix possible memory leak (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: support simple polling (Gopal Tiwari) [1781927]
+- [nvme] nvme: trace: parse Get LBA Status command in detail (Gopal Tiwari) [1781927]
+- [include] nvme: add Get LBA Status command opcode (Gopal Tiwari) [1781927]
+- [nvme] nvme: move sqsize setting to the core (Gopal Tiwari) [1781927]
+- [nvme] nvme: don't pass cap to nvme_disable_ctrl (Gopal Tiwari) [1781927]
+- [nvme] nvme-pci: set ctrl sqsize to the device q_depth (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: cleanup nvme_tcp_recv_pdu (Gopal Tiwari) [1781927]
+- [nvme] nvme: have nvme_init_identify set ctrl->cap (Gopal Tiwari) [1781927]
+- [nvme] nvme-tcp: Use protocol specific operations while reading socket (Gopal Tiwari) [1781927]
+- [nvme] nvme: Fix cntlid validation when not using NVMEoF (Gopal Tiwari) [1781927]
+- [infiniband] PCI/P2PDMA: Introduce pci_p2pdma_unmap_sg() (Gopal Tiwari) [1781927]
+- [nvme] PCI/P2PDMA: Add attrs argument to pci_p2pdma_map_sg() (Gopal Tiwari) [1781927]
+- [lightnvm] lightnvm: remove nvm_submit_io_sync_fn (Gopal Tiwari) [1781927]
+- [powerpc] xive: Discard ESB load value when interrupt is invalid (David Gibson) [1744408]
+- [documentation] kvm: ppc: book3s hv: xive: Allow userspace to set the # of VPs (David Gibson) [1744408]
+- [powerpc] kvm: ppc: book3s hv: xive: Make VP block size configurable (David Gibson) [1744408]
+- [powerpc] kvm: ppc: book3s hv: xive: Set kvm->arch.xive when VPs are allocated (David Gibson) [1744408]
+- [powerpc] kvm: ppc: book3s hv: xive: Compute the VP id in a common helper (David Gibson) [1744408]
+- [powerpc] xive: Implement get_irqchip_state method for XIVE to fix shutdown race (David Gibson) [1744408]
+- [powerpc] kvm: ppc: book3s hv: xive: Free escalation interrupts before disabling the VP (David Gibson) [1744408]
+- [powerpc] kvm: ppc: book3s hv: xive: Ensure VP isn't already in use (David Gibson) [1744408]
+- [powerpc] kvm: ppc: book3s hv: Fix regression on big endian hosts (David Gibson) [1725763]
+- [powerpc] 64s: Fix misleading SPR and timebase information (David Gibson) [1725763]
+- [powerpc] powernv: Add ultravisor message log interface (David Gibson) [1725763]
+- [powerpc] powernv/opal-msglog: Refactor memcons code (David Gibson) [1725763]
+- [powerpc] kvm: Use UV_RETURN ucall to return to ultravisor (David Gibson) [1725763]
+- [powerpc] powernv: Access LDBAR only if ultravisor disabled (David Gibson) [1725763]
+- [powerpc] powernv/idle: Fix restore of SPRN_LDBAR for POWER9 stop state (David Gibson) [1725763]
+- [powerpc] powernv/idle: Restore AMR/UAMOR/AMOR/IAMR after idle (David Gibson) [1725763]
+- [powerpc] 64s: Reimplement book3s idle code in C (David Gibson) [1725763]
+- [powerpc] revert "powerpc/powernv/idle: Restore IAMR after idle" (David Gibson) [1725763]
+- [powerpc] revert "powerpc/powernv/idle: Restore AMR/UAMOR/AMOR after idle" (David Gibson) [1725763]
+- [powerpc] mm: Write to PTCR only if ultravisor disabled (David Gibson) [1725763]
+- [powerpc] mm: Use UV_WRITE_PATE ucall to register a PATE (David Gibson) [1725763]
+- [powerpc] powernv: Introduce FW_FEATURE_ULTRAVISOR (David Gibson) [1725763]
+- [powerpc] kernel: Add ucall_norets() ultravisor call handler (David Gibson) [1725763]
+- [documentation] documentation/powerpc: Ultravisor API (David Gibson) [1725763]
+- [documentation] documentation/powerpc: Add ELF note documentation (David Gibson) [1725763]
+- [powerpc] Add PowerPC Capabilities ELF note (David Gibson) [1725763]
+- [netdrv] mlx5e: allow TSO on VXLAN over VLAN topologies (Davide Caratti) [1780643]
+- [net] bluetooth: Add debug setting for changing minimum encryption key size (Gopal Tiwari) [1764976]
+- [net] bluetooth: hidp: Let hidp_send_message return number of queued bytes (Gopal Tiwari) [1764976]
+- [net] bluetooth: 6lowpan: search for destination address in all peers (Gopal Tiwari) [1764976]
+- [net] bluetooth: 6lowpan: always check destination address (Gopal Tiwari) [1764976]
+- [net] bluetooth: 6lowpan: check neighbour table for SLAAC (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add SMP workaround Microsoft Surface Precision Mouse bug (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use controller sets when available (Gopal Tiwari) [1764976]
+- [net] bluetooth: l2cap: Check bearer type on __l2cap_global_chan_by_addr (Gopal Tiwari) [1764976]
+- [net] bluetooth: validate BLE connection interval updates (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add support for LE ping feature (Gopal Tiwari) [1764976]
+- [net] bluetooth: Check state in l2cap_disconnect_rsp (Gopal Tiwari) [1764976]
+- [net] bluetooth: hidp: NUL terminate a string in the compat ioctl (Gopal Tiwari) [1764976]
+- [net] bluetooth: Ignore CC events not matching the last HCI command (Gopal Tiwari) [1764976]
+- [net] bluetooth: Align minimum encryption key size for LE and BR/EDR connections (Gopal Tiwari) [1764976]
+- [net] bluetooth: hci_core: Don't stop BT if the BD address missing in dts (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use struct_size() helper (Gopal Tiwari) [1764976]
+- [net] bluetooth: Fix incorrect pointer arithmatic in ext_adv_report_evt (Gopal Tiwari) [1764976]
+- [net] bluetooth: hidp: fix buffer overflow (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add return check for L2CAP security level set (Gopal Tiwari) [1764976]
+- [net] bluetooth: Fix not initializing L2CAP tx_credits (Gopal Tiwari) [1764976]
+- [net] bluetooth: Check address length before reading address field (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add quirk for reading BD_ADDR from fwnode property (Gopal Tiwari) [1764976]
+- [net] bluetooth: mgmt: Use struct_size() helper (Gopal Tiwari) [1764976]
+- [net] bluetooth: a2mp: Use struct_size() helper (Gopal Tiwari) [1764976]
+- [net] bluetooth: hci_event: Use struct_size() helper (Gopal Tiwari) [1764976]
+- [net] bluetooth: Fix decrementing reference count twice in releasing socket (Gopal Tiwari) [1764976]
+- [net] bluetooth: make hw_err static, reduces object code size (Gopal Tiwari) [1764976]
+- [net] bluetooth: Allow driver specific cmd timeout handling (Gopal Tiwari) [1764976]
+- [net] bluetooth: Mark expected switch fall-throughs (Gopal Tiwari) [1764976]
+- [net] bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt (Gopal Tiwari) [1764976]
+- [net] Bluetooth: Fix locking in bt_accept_enqueue() for BH context (Gopal Tiwari) [1764976]
+- [net] bluetooth: 6lowpan: Fix debugfs_simple_attr.cocci warnings (Gopal Tiwari) [1764976]
+- [net] bluetooth: Fix unnecessary error message for HCI request completion (Gopal Tiwari) [1764976]
+- [net] bluetooth: clean an indentation issue, remove extraneous space (Gopal Tiwari) [1764976]
+- [net] bluetooth: Change to use DEFINE_SHOW_ATTRIBUTE macro (Gopal Tiwari) [1764976]
+- [net] bluetooth: Remove redundant check on status (Gopal Tiwari) [1764976]
+- [net] bluetooth: Errata Service Release 8, Erratum 3253 (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use separate L2CAP LE credit based connection result values (Gopal Tiwari) [1764976]
+- [net] rfcomm: get rid of mentioning TIOC[SG]SERIAL (Gopal Tiwari) [1764976]
+- [net] bluetooth: Fix debugfs NULL pointer dereference (Gopal Tiwari) [1764976]
+- [net] bluetooth: l2cap: Detect if remote is not able to use the whole MPS (Gopal Tiwari) [1764976]
+- [net] bluetooth: l2cap: Derive rx credits from MTU and MPS (Gopal Tiwari) [1764976]
+- [net] bluetooth: l2cap: Derive MPS from connection MTU (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add definitions and track LE resolve list modification (Gopal Tiwari) [1764976]
+- [net] bluetooth: Remove unnecessary smp_mb__{before, after}_atomic (Gopal Tiwari) [1764976]
+- [net] bluetooth: smp: fix crash in unpairing (Gopal Tiwari) [1764976]
+- [net] bluetooth: smp: Fix trying to use non-existent local OOB data (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use correct tfm to generate OOB data (Gopal Tiwari) [1764976]
+- [net] hidp: fix compat_ioctl (Gopal Tiwari) [1764976]
+- [net] hidp: constify hidp_connection_add() (Gopal Tiwari) [1764976]
+- [net] cmtp: fix compat_ioctl (Gopal Tiwari) [1764976]
+- [net] bnep: fix compat_ioctl (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add definitions for LE set address resolution (Gopal Tiwari) [1764976]
+- [net] bluetooth: remove redundant variables 'adv_set' and 'cp' (Gopal Tiwari) [1764976]
+- [net] bluetooth: hidp: Fix handling of strncpy for hid->name information (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add new quirk for non-persistent setup settings (Gopal Tiwari) [1764976]
+- [net] bluetooth: Handle ADv set terminated event (Gopal Tiwari) [1764976]
+- [net] bluetooth: Implement secondary advertising on different PHYs (Gopal Tiwari) [1764976]
+- [net] bluetooth: Implement Set ADV set random address (Gopal Tiwari) [1764976]
+- [net] bluetooth: Implement disable and removal of adv instance (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use ext adv for directed adv (Gopal Tiwari) [1764976]
+- [net] bluetooth: Implement PHY changed event (Gopal Tiwari) [1764976]
+- [net] bluetooth: Handle extended ADV PDU types (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use Set ext adv/scan rsp data if controller supports (Gopal Tiwari) [1764976]
+- [net] bluetooth: Impmlement extended adv enable (Gopal Tiwari) [1764976]
+- [net] bluetooth: Define PHY flags in hdev and set 1M as default (Gopal Tiwari) [1764976]
+- [net] bluetooth: Read no of adv sets during init (Gopal Tiwari) [1764976]
+- [net] bluetooth: Implement Get PHY Configuration mgmt command (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use selected PHYs in extended connect (Gopal Tiwari) [1764976]
+- [net] bluetooth: Set Scan PHYs based on selected PHYs by user (Gopal Tiwari) [1764976]
+- [net] bluetooth: Implement Set PHY Confguration command (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add defines for BREDR pkt_type (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use lock_sock_nested in bt_accept_enqueue (Gopal Tiwari) [1764976]
+- [net] bluetooth: avoid killing an already killed socket (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use extended LE Connection if supported (Gopal Tiwari) [1764976]
+- [net] bluetooth: Introduce helpers for le conn status and complete (Gopal Tiwari) [1764976]
+- [net] bluetooth: Process extended ADV report event (Gopal Tiwari) [1764976]
+- [net] bluetooth: Use extended scanning if controller supports (Gopal Tiwari) [1764976]
+- [net] bluetooth: Introduce helpers for LE set scan start and complete (Gopal Tiwari) [1764976]
+- [net] bluetooth: Store Resolv list size (Gopal Tiwari) [1764976]
+- [net] bluetooth: Add HCI command for clear Resolv list (Gopal Tiwari) [1764976]
+- [leds] triggers: let struct (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Skip 1 error print in device_want_to_sleep() (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: Reset download type to default (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: release_firmware after qca_inject_cmd_complete_event (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Send VS pre shutdown command (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: Use correct byte format for opcode of injected command (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: Add a short delay before downloading the NVM (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Fix error return code in btusb_mtk_setup_firmware() (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Use kfree_skb() instead of kfree() (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Add protocol support for MediaTek MT7663U USB devices (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Add protocol support for MediaTek MT7668U USB devices (Gopal Tiwari) [1764976]
+- [bluetooth] Add new 13d3:3491 QCA_ROME device (Gopal Tiwari) [1764976]
+- [bluetooth] Add new 13d3:3501 QCA_ROME device (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcsp: Fix memory leak in rx_skb (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: Add support for RTL8723DU (Gopal Tiwari) [1764976]
+- [bluetooth] btmtkuart: add an implementation for clock osc property (Gopal Tiwari) [1764976]
+- [bluetooth] btmtkuart: add an implementation for boot-gpios property (Gopal Tiwari) [1764976]
+- [bluetooth] btbcm: Add entry for BCM4359C0 UART bluetooth (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Load customized NVM based on the device property (Gopal Tiwari) [1764976]
+- [bluetooth] hci_mrvl: Add serdev support (Gopal Tiwari) [1764976]
+- [bluetooth] hci_mrvl: Wait for final ack before switching baudrate (Gopal Tiwari) [1764976]
+- [bluetooth] hci_ldisc: Add function to wait for characters to be sent (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: wcn3990: Drop baudrate change vendor event (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: inject command complete event during fw download (Gopal Tiwari) [1764976]
+- [bluetooth] Cleanup formatting and coding style (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: HCI reset on close for Realtek BT chip (Gopal Tiwari) [1764976]
+- [bluetooth] hci_ll: Refactor download_firmware (Gopal Tiwari) [1764976]
+- [bluetooth] hci_ll: set operational frequency earlier (Gopal Tiwari) [1764976]
+- [bluetooth] btsdio: Do not bind to non-removable BCM4356 (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Rename STATE_<flags> to QCA_<flags> (Gopal Tiwari) [1764976]
+- [bluetooth] btbcm: Add default address for BCM2076B1 (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Added support for WCN3998 (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Fix crash with non-serdev devices (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Give enough time to ROME controller to bootup (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Fix empty regulator supplies for Intel Macs (Gopal Tiwari) [1764976]
+- [bluetooth] btbcm: Add entry for BCM2076B1 UART Bluetooth (Gopal Tiwari) [1764976]
+- [bluetooth] btbcm: Add default address for BCM43341B (Gopal Tiwari) [1764976]
+- [bluetooth] btmrvl: add support for SD8987 chipset (Gopal Tiwari) [1764976]
+- [bluetooth] btmtksdio: Drop newline with bt_dev logging macros (Gopal Tiwari) [1764976]
+- [bluetooth] btmtksdio: Fix hdev->stat.byte_rx accumulation (Gopal Tiwari) [1764976]
+- [bluetooth] btmtksdio: Add runtime PM support to SDIO based Bluetooth (Gopal Tiwari) [1764976]
+- [bluetooth] btmtksdio: Add a bit definition for CHLPCR (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: Fixed incorrect type in assignment (Gopal Tiwari) [1764976]
+- [bluetooth] hci_h5: fix spelling mistake "sliped" -> "slipped" (Gopal Tiwari) [1764976]
+- [bluetooth] btmtksdio: fix uninitialized symbol errors in btmtksdio_rx_packet (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: Use module_sdio_driver helper (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: add support for MediaTek MT7663S and MT7668S SDIO devices (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: Fix misspelling of 'baudrate' (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Add helper function to get the chip family (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: request wake pin with NOAUTOEN (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: add support for MediaTek MT7663U and MT7668U UART devices (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Reduce delay after sending baudrate request for WCN3990 (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: add QCA6174A compatible properties (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Use msleep() instead of open coding it (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Add delay after power-off pulse (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Move boot delay to qca_send_power_pulse() (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Pass boolean 'on/off' to qca_send_power_pulse() (Gopal Tiwari) [1764976]
+- [bluetooth] btqcomsmd: use HCI_QUIRK_USE_BDADDR_PROPERTY (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Set HCI_QUIRK_USE_BDADDR_PROPERTY for wcn3990 (Gopal Tiwari) [1764976]
+- [bluetooth] hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in hci_uart_set_proto() (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: update the common setup between MT7622 and other devices (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: pass a pointer to mtk_hci_wmt_sync (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: fix up an error path to restore bdev->tx_state (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: trivial typo fix (Gopal Tiwari) [1764976]
+- [bluetooth] hci_ldisc: Initialize hci_dev before open() (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Disable IBS state machine and flush Tx buffer (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Deassert RTS while baudrate change command (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: use wait_until_sent() for power pulses (Gopal Tiwari) [1764976]
+- [bluetooth] remove redundant zero check on count (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Add shutdown routine for BTUSB_INTEL_NEW devices (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: btusb_intel_cmd_timeout: use sleeping functions (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: Restore old logic to assume firmware is already loaded (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Use the cmd_timeout method to reset the Intel BT chip (Gopal Tiwari) [1764976]
+- [bluetooth] btmrvl: add support for sd8977 chipset (Gopal Tiwari) [1764976]
+- [bluetooth] btmrvl: Drop unused GPIO includes (Gopal Tiwari) [1764976]
+- [bluetooth] btmrvl: lower log level of informational message (Gopal Tiwari) [1764976]
+- [bluetooth] hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf() (Gopal Tiwari) [1764976]
+- [bluetooth] btmrvl: improve printk messages (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Add helper to set device address (Gopal Tiwari) [1764976]
+- [bluetooth] btbcm: Add entry for BCM4329B1 UART bluetooth (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Handle specific unknown packets after firmware loading (Gopal Tiwari) [1764976]
+- [bluetooth] hci_h5: Turn off RTL8723BS on suspend, reprobe on resume (Gopal Tiwari) [1764976]
+- [bluetooth] hci_h5: Add suspend / resume ops (Gopal Tiwari) [1764976]
+- [bluetooth] hci_intel: clean an indentation issue, remove extraneous spaces (Gopal Tiwari) [1764976]
+- [bluetooth] hci_serdev: Remove setting of HCI_QUIRK_RESET_ON_CLOSE (Gopal Tiwari) [1764976]
+- [bluetooth] Remove unnecessary smp_mb__after_atomic() barriers (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Add BCM20702A1 variant (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Wait for device to come out of reset after power on (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Add support for regulator supplies (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Add compatible string for BCM4330 (Gopal Tiwari) [1764976]
+- [bluetooth] btbcm: Add default address for BCM43430A0 (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Add support for LPO clock (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Use "txco" and "extclk" to get clock reference (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Simplify clk_get error handling (Gopal Tiwari) [1764976]
+- [bluetooth] hci_bcm: Handle deferred probing for the clock supply (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Add support for controller debug logs (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Add support for 0cf3:535b QCA_ROME device (Gopal Tiwari) [1764976]
+- [bluetooth] btsdio: Do not bind to non-removable BCM43430 (Gopal Tiwari) [1764976]
+- [bluetooth] ath3k: add more information to error message (Gopal Tiwari) [1764976]
+- [bluetooth] bt3c_cs: Fix obsolete function (Gopal Tiwari) [1764976]
+- [bluetooth] btrsi: fix bt tx timeout issue (Gopal Tiwari) [1764976]
+- [bluetooth] btbcm: Add entry for BCM4335C0 UART bluetooth (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: Add support for RTL8822C with USB interface (Gopal Tiwari) [1764976]
+- [bluetooth] hci_serdev: Fixed error space required before open paranethesis (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Add poweroff support during hci down for wcn3990 (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Add quirk for BTUSB_INTEL_NEW (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: Make array extension_sig static, shrinks object size (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Remove serdev_device_open/close function calls (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Remove hdev dereference in qca_close() (Gopal Tiwari) [1764976]
+- [bluetooth] hci_serdev: clear HCI_UART_PROTO_READY to avoid closing proto races (Gopal Tiwari) [1764976]
+- [bluetooth] hci_serdev: Add protocol check in hci_uart_dequeue() (Gopal Tiwari) [1764976]
+- [bluetooth] hci_ldisc: Free rw_semaphore on close (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: Fix memory leak (Gopal Tiwari) [1764976]
+- [bluetooth] Make BT_HCIUART_RTL configuration option depend on ACPI (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: pass correct size to h4_recv_buf() (Gopal Tiwari) [1764976]
+- [bluetooth] Introduce BT_HCIUART_RTL configuration option (Gopal Tiwari) [1764976]
+- [bluetooth] mediatek: Add protocol support for MediaTek serial devices (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: Introduce HCI_EV_VENDOR and use it (Gopal Tiwari) [1764976]
+- [bluetooth] h5: Fix missing dependency on BT_HCIUART_SERDEV (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Add support for Qualcomm Bluetooth chip wcn3990 (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Enable 3.2 Mbps operating speed (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Add wrapper functions for setting UART speed (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: Add wcn3990 firmware download support (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: Redefine qca_uart_setup() to generic function (Gopal Tiwari) [1764976]
+- [bluetooth] btqca: Rename ROME specific functions to generic functions (Gopal Tiwari) [1764976]
+- [bluetooth] hci_h5: Add support for enable and device-wake GPIOs (Gopal Tiwari) [1764976]
+- [bluetooth] hci_h5: Add support for the RTL8723BS (Gopal Tiwari) [1764976]
+- [bluetooth] hci_h5: Add vendor setup, open, and close callbacks (Gopal Tiwari) [1764976]
+- [bluetooth] hci_h5: Add support for serdev enumerated devices (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: add support for retrieving the UART settings (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: Use rtl_dev_err and rtl_dev_info (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: Add support for a config filename postfix (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: add support for the RTL8723BS and RTL8723DS chips (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: add MODULE_FIRMWARE declarations (Gopal Tiwari) [1764976]
+- [bluetooth] btrtl: split the device initialization into smaller parts (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Release RF resource on BT shutdown (Gopal Tiwari) [1764976]
+- [bluetooth] hci_qca: Replace GFP_ATOMIC with GFP_KERNEL (Gopal Tiwari) [1764976]
+- [bluetooth] hci_intel: Replace GFP_ATOMIC with GFP_KERNEL in inject_cmd_complete() (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: Replace GFP_ATOMIC with GFP_KERNEL in inject_cmd_complete() (Gopal Tiwari) [1764976]
+- [bluetooth] bfusb: Replace GFP_ATOMIC with GFP_KERNEL in bfusb_send_frame() (Gopal Tiwari) [1764976]
+- [bluetooth] bluecard_cs: Replace GFP_ATOMIC with GFP_KERNEL in bluecard_hci_set_baud_rate() (Gopal Tiwari) [1764976]
+- [bluetooth] bpa10x: Replace GFP_ATOMIC with GFP_KERNEL in bpa10x_send_frame() (Gopal Tiwari) [1764976]
+- [bluetooth] btmrvl_sdio: Replace GFP_ATOMIC with GFP_KERNEL in btmrvl_sdio_card_to_host() (Gopal Tiwari) [1764976]
+- [bluetooth] btusb: use irqsave() in URB's complete callback (Gopal Tiwari) [1764976]
+- [bluetooth] Add a new Realtek 8723DE ID 0bda:b009 (Gopal Tiwari) [1764976]
+
+* Thu Mar 19 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-190.1.el8]
+- Revert "[redhat] switch secureboot kernel image signing to release keys" (Frantisek Hrbata)
+- [powerpc] powerpc/pseries: Avoid NULL pointer dereference when drmem is unavailable (David Hildenbrand) [1812874]
+- [x86] kvm/svm: PKU not currently supported (Wei Huang) [1789159]
+- [x86] Remove the unsupported check for Cooper Lake (David Arcari) [1813921]
+
+* Wed Mar 18 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-189.1.el8]
+- [netdrv] net/mlx5e: Show/set Rx network flow classification rules on ul rep (Alaa Hleihel) [1795156 1794280]
+- [netdrv] net/mlx5e: Init ethtool steering for representors (Alaa Hleihel) [1795156 1794280]
+- [netdrv] net/mlx5e: Show/set Rx flow indir table and RSS hash key on ul rep (Alaa Hleihel) [1795156 1794280]
+- [netdrv] net/mlx5e: Introduce root ft concept for representors netdevs (Alaa Hleihel) [1795156 1794280]
+- [netdrv] net/mlx5: E-Switch, Use vport metadata matching only when mandatory (Alaa Hleihel) [1795156]
+- [nvme] nvme: log additional message for controller status (David Milburn) [1752952]
+
+* Tue Mar 17 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-188.3.el8]
+- [powerpc] powerpc: fix hardware PMU exception bug on PowerVM compatibility mode systems (Desnes Augusto Nunes do Rosario) [1755221]
+- [mm] powerpc/book3s64/radix: Remove WARN_ON in destroy_context() (Steve Best) [1812821]
+- [kernel] rcutorture: Upper case solves the case of the vanishing NULL pointer (Waiman Long) [1810247]
+- [tools] torture: Suppress propagating trace_printk() warning (Waiman Long) [1810247]
+- [kernel] rcutorture: Dump trace buffer for callback pipe drain failures (Waiman Long) [1810247]
+- [tools] torture: Add --trust-make to suppress "make clean" (Waiman Long) [1810247]
+- [tools] torture: Make --cpus override idleness calculations (Waiman Long) [1810247]
+- [tools] torture: Run kernel build in source directory (Waiman Long) [1810247]
+- [tools] torture: Add function graph-tracing cheat sheet (Waiman Long) [1810247]
+- [tools] torture: Capture qemu output (Waiman Long) [1810247]
+- [tools] rcutorture: Tweak kvm options (Waiman Long) [1810247]
+- [kernel] rcutorture: Add trivial RCU implementation (Waiman Long) [1810247]
+- [kernel] rcutorture: Halt forward-progress checks at end of run (Waiman Long) [1810247]
+- [kernel] rcutorture: Give the scheduler a chance on PREEMPT && NO_HZ_FULL kernels (Waiman Long) [1810247]
+- [tools] rcutorture: Exempt TREE01 from forward-progress testing (Waiman Long) [1810247]
+- [kernel] rcutorture: Exempt tasks RCU from timely draining of grace periods (Waiman Long) [1810247]
+- [tools] rcutorture: Provide rudimentary Makefile (Waiman Long) [1810247]
+- [tools] torture: Make kvm-find-errors.sh and kvm-recheck.sh provide exit status (Waiman Long) [1810247]
+- [kernel] torture: Allow inter-stutter interval to be specified (Waiman Long) [1810247]
+- [kernel] rcutorture: Fix stutter_wait() return value and freelist checks (Waiman Long) [1810247]
+- [kernel] rcutorture: Add cond_resched() to forward-progress free-up loop (Waiman Long) [1810247]
+- [tools] rcutorture: Add cpu0 to the set of CPUs to add jitter (Waiman Long) [1810247]
+- [tools] rcutorture: Select from only online CPUs (Waiman Long) [1810247]
+- [kernel] rcu/sync: Simplify the state machine (Waiman Long) [1810247]
+- [kernel] locking/percpu-rwsem: Add DEFINE_PERCPU_RWSEM(), use it to initialize cgroup_threadgroup_rwsem (Waiman Long) [1810247]
+- [kernel] rcu/sync: Kill rcu_sync_type/gp_type (Waiman Long) [1810247]
+- [kernel] rcu: Make __call_srcu static (Waiman Long) [1810247]
+- [kernel] rcu: Upgrade sync_exp_work_done() to smp_mb() (Waiman Long) [1810247]
+- [documentation] doc: Remove ".vnet" from paulmck email addresses (Waiman Long) [1810247]
+- [kernel] rcu: Set a maximum limit for back-to-back callback invocation (Waiman Long) [1810247]
+- [kernel] rcu: Correctly unlock root node in rcu_check_gp_start_stall() (Waiman Long) [1810247]
+- [kernel] rcu: Dump specified number of blocked tasks (Waiman Long) [1810247]
+- [kernel] rcu: Remove unused rdp local from synchronize_rcu_expedited() (Waiman Long) [1810247]
+- [kernel] rcu: Rename rcu_data's ->deferred_qs to ->exp_deferred_qs (Waiman Long) [1810247]
+- [kernel] rcu: Add checks for dynticks counters in rcu_is_cpu_rrupt_from_idle() (Waiman Long) [1810247]
+- [kernel] rcu: Avoid self-IPI in sync_sched_exp_online_cleanup() (Waiman Long) [1810247]
+- [kernel] rcu: Avoid self-IPI in sync_rcu_exp_select_node_cpus() (Waiman Long) [1810247]
+- [kernel] rcu: Inline invoke_rcu_callbacks() into its sole remaining caller (Waiman Long) [1810247]
+- [kernel] rcu: Use irq_work to get scheduler's attention in clean context (Waiman Long) [1810247]
+- [kernel] rcu: Allow rcu_read_unlock_special() to raise_softirq() if in_irq() (Waiman Long) [1810247]
+- [kernel] rcu: Only do rcu_read_unlock_special() wakeups if expedited (Waiman Long) [1810247]
+- [kernel] rcu: Check for wakeup-safe conditions in rcu_read_unlock_special() (Waiman Long) [1810247]
+- [kernel] rcu: Enable elimination of Tree-RCU softirq processing (Waiman Long) [1810247]
+- [kernel] rcuperf: Fix cleanup path for invalid perf_type strings (Waiman Long) [1810247]
+- [kernel] rcutorture: Fix cleanup path for invalid torture_type strings (Waiman Long) [1810247]
+- [kernel] rcutorture: Fix expected forward progress duration in OOM notifier (Waiman Long) [1810247]
+- [kernel] rcutorture: Remove ->ext_irq_conflict field (Waiman Long) [1810247]
+- [kernel] rcutorture: Make rcutorture_extend_mask() comment match the code (Waiman Long) [1810247]
+- [tools] tools/.../rcutorture: Convert to SPDX license identifier (Waiman Long) [1810247]
+- [kernel] torture: Don't try to offline the last CPU (Waiman Long) [1810247]
+- [kernel] rcu: Fix nohz status in stall warning (Waiman Long) [1810247]
+- [kernel] rcu: Move forward-progress checkers into tree_stall.h (Waiman Long) [1810247]
+- [kernel] rcu: Move irq-disabled stall-warning checking to tree_stall.h (Waiman Long) [1810247]
+- [kernel] rcu: Organize functions in tree_stall.h (Waiman Long) [1810247]
+- [kernel] rcu: Move FAST_NO_HZ stall-warning code to tree_stall.h (Waiman Long) [1810247]
+- [kernel] rcu: Inline RCU stall-warning info helper functions (Waiman Long) [1810247]
+- [kernel] rcu: Move rcu_print_task_exp_stall() to tree_exp.h (Waiman Long) [1810247]
+- [kernel] rcu: Inline RCU task stall-warning helper functions (Waiman Long) [1810247]
+- [kernel] rcu: Move RCU CPU stall-warning code out of tree.c (Waiman Long) [1810247]
+- [kernel] rcu: Move RCU CPU stall-warning code out of tree_plugin.h (Waiman Long) [1810247]
+- [kernel] rcu: Move RCU CPU stall-warning code out of update.c (Waiman Long) [1810247]
+- [kernel] srcu: Remove cleanup_srcu_struct_quiesced() (Waiman Long) [1810247]
+- [kernel] srcu: Check for in-flight callbacks in _cleanup_srcu_struct() (Waiman Long) [1810247]
+- [kernel] rcu: Correct READ_ONCE()/WRITE_ONCE() for ->rcu_read_unlock_special (Waiman Long) [1810247]
+- [kernel] rcu: Fix typo in tree_exp.h comment (Waiman Long) [1810247]
+- [kernel] rcu: Eliminate redundant NULL-pointer check (Waiman Long) [1810247]
+- [kernel] rcu: Fix force_qs_rnp() header comment (Waiman Long) [1810247]
+- [kernel] rcu: Update jiffies_to_sched_qs and adjust_jiffies_till_sched_qs() comments (Waiman Long) [1810247]
+- [kernel] rcu: Do a single rhp->func read in rcu_head_after_call_rcu() (Waiman Long) [1810247]
+- [kernel] rcu: Default jiffies_to_sched_qs to jiffies_till_sched_qs (Waiman Long) [1810247]
+- [kernel] rcu: Fix self-wakeups for grace-period kthread (Waiman Long) [1810247]
+- [kernel] rcu: Report error for bad rcu_nocbs= parameter values (Waiman Long) [1810247]
+- [kernel] rcu: Allow rcu_nocbs= to specify all CPUs (Waiman Long) [1810247]
+- [kernel] rcu: Move common code out of if-else block (Waiman Long) [1810247]
+- [kernel] rcu: Set rcutree.kthread_prio sysfs access to read-only (Waiman Long) [1810247]
+- [kernel] rcu: Make exit_rcu() handle non-preempted RCU readers (Waiman Long) [1810247]
+- [kernel] rcu: rcu_qs -- Use raise_softirq_irqoff to not save irqs twice (Waiman Long) [1810247]
+- [kernel] rcu: Avoid unnecessary softirq when system is idle (Waiman Long) [1810247]
+- [kernel] rcu: Unconditionally expedite during suspend/hibernate (Waiman Long) [1810247]
+- [kernel] rcu/tree: Convert to SPDX license identifier (Waiman Long) [1810247]
+- [kernel] srcu: Remove srcu_queue_delayed_work_on() (Waiman Long) [1810247]
+- [kernel] sched/fair: Define sched_idle_cpu() only for SMP configurations (Phil Auld) [1419746]
+- [kernel] sched/fair: Load balance aggressively for SCHED_IDLE CPUs (Phil Auld) [1419746]
+- [kernel] sched/fair : Improve update_sd_pick_busiest for spare capacity case (Phil Auld) [1419746]
+- [kernel] sched/fair: Fix find_idlest_group() to handle CPU affinity (Phil Auld) [1419746]
+- [kernel] sched/cfs: fix spurious active migration (Phil Auld) [1419746]
+- [kernel] sched/fair: Add comments for group_type and balancing at SD_NUMA level (Phil Auld) [1419746]
+- [kernel] sched/fair: Fix rework of find_idlest_group() (Phil Auld) [1419746]
+- [kernel] sched/fair: Rework find_idlest_group() (Phil Auld) [1419746]
+- [kernel] sched/fair: Optimize find_idlest_group() (Phil Auld) [1419746]
+- [kernel] sched/fair: Use load instead of runnable load in wakeup path (Phil Auld) [1419746]
+- [kernel] sched/fair: Use utilization to select misfit task (Phil Auld) [1419746]
+- [kernel] sched/fair: Spread out tasks evenly when not overloaded (Phil Auld) [1419746]
+- [kernel] sched/fair: Use load instead of runnable load in load_balance() (Phil Auld) [1419746]
+- [kernel] sched/fair: Use rq->nr_running when balancing load (Phil Auld) [1419746]
+- [kernel] sched/fair: Rework load_balance() (Phil Auld) [1419746]
+- [kernel] sched/fair: Remove meaningless imbalance calculation (Phil Auld) [1419746]
+- [kernel] sched/fair: Rename sg_lb_stats::sum_nr_running to sum_h_nr_running (Phil Auld) [1419746]
+- [kernel] sched/fair: Clean up asym packing (Phil Auld) [1419746]
+- [kernel] sched/fair: Fall back to sched-idle CPU if idle CPU isn't found (Phil Auld) [1419746]
+- [kernel] sched/fair: Start tracking SCHED_IDLE tasks count in cfs_rq (Phil Auld) [1419746]
+- [kernel] sched/core: Allow sched_setattr() to use the current policy (Phil Auld) [1419746]
+- [kernel] sched/fair: Introduce fits_capacity() (Phil Auld) [1419746]
+- [kernel] sched/core: Provide a pointer to the valid CPU mask (Phil Auld) [1419746]
+- [x86] x86/percpu: Optimize raw_cpu_xchg() (Phil Auld) [1419746]
+- [kernel] x86/percpu, sched/fair: Avoid local_clock() (Phil Auld) [1419746]
+- [x86] x86/percpu, x86/irq: Relax {set,get}_irq_regs() (Phil Auld) [1419746]
+- [x86] x86/percpu: Relax smp_processor_id() (Phil Auld) [1419746]
+- [x86] x86/percpu: Differentiate this_cpu_{}() and __this_cpu_{}() (Phil Auld) [1419746]
+- [kernel] sched/fair: Fix unnecessary increase of balance interval (Phil Auld) [1419746]
+- [kernel] sched/fair: Trigger asym_packing during idle load balance (Phil Auld) [1419746]
+- [kernel] sched/fair: Fix rounding bug for asym packing (Phil Auld) [1419746]
+- [kernel] sched/fair: Fix warning on non-SMP build (Phil Auld) [1419746]
+- [kernel] sched/core: Create task_has_idle_policy() helper (Phil Auld) [1419746]
+- [firmware] efi: fix a mistype in comments mentioning efivar_entry_iter_begin() (Vladis Dronov) [1804417]
+- [firmware] efi: add a sanity check to efivar_store_raw() (Vladis Dronov) [1804417]
+- [firmware] efi: fix a race and a buffer overflow while reading efivars via sysfs (Vladis Dronov) [1804417]
+- [scsi] scsi: ibmvfc: Fix NULL return compiler warning (Steve Best) [1810653]
+- [scsi] scsi: ibmvfc: Avoid loss of all paths during SVC node reboot (Steve Best) [1810653]
+- [fs] xfs: fix some memory leaks in log recovery (Bill O'Donnell) [1765693]
+- [fs] xfs: Fix deadlock between AGI and AGF when target_ip exists in xfs_rename() (Bill O'Donnell) [1765693]
+- [fs] xfs: fix inode fork extent count overflow (Bill O'Donnell) [1765693]
+- [fs] xfs: change the seconds fields in xfs_bulkstat to signed (Bill O'Donnell) [1765693]
+- [fs] xfs: assure zeroed memory buffers for certain kmem allocations (Bill O'Donnell) [1765693]
+- [fs] xfs: removed unused error variable from xchk_refcountbt_rec (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unused flags arg from xfs_get_aghdr_buf() (Bill O'Donnell) [1765693]
+- [fs] xfs: Fix tail rounding in xfs_alloc_file_space() (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unlikely() from WARN_ON() condition (Bill O'Donnell) [1765693]
+- [fs] xfs: avoid unused to_mp() function warning (Bill O'Donnell) [1765693]
+- [fs] xfs: log proper length of superblock (Bill O'Donnell) [1765693]
+- [fs] xfs: revert 1baa2800e62d ("xfs: remove the unused XFS_ALLOC_USERDATA flag") (Bill O'Donnell) [1765693]
+- [fs] xfs: removed unneeded variable (Bill O'Donnell) [1765693]
+- [fs] xfs: push the grant head when the log head moves forward (Bill O'Donnell) [1765693]
+- [fs] xfs: push iclog state cleaning into xlog_state_clean_log (Bill O'Donnell) [1765693]
+- [fs] xfs: factor iclog state processing out of xlog_state_do_callback() (Bill O'Donnell) [1765693]
+- [fs] xfs: factor callbacks out of xlog_state_do_callback() (Bill O'Donnell) [1765693]
+- [fs] xfs: factor debug code out of xlog_state_do_callback() (Bill O'Donnell) [1765693]
+- [fs] xfs: prevent CIL push holdoff in log recovery (Bill O'Donnell) [1765693]
+- [fs] xfs: fix missed wakeup on l_flush_wait (Bill O'Donnell) [1765693]
+- [fs] xfs: push the AIL in xlog_grant_head_wake (Bill O'Donnell) [1765693]
+- [fs] xfs: Use WARN_ON_ONCE for bailout mount-operation (Bill O'Donnell) [1765693]
+- [fs] xfs: define a flags field for the AG geometry ioctl structure (Bill O'Donnell) [1765693]
+- [fs] xfs: add a xfs_valid_startblock helper (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the unused XFS_ALLOC_USERDATA flag (Bill O'Donnell) [1765693]
+- [fs] xfs: cleanup xfs_fsb_to_db (Bill O'Donnell) [1765693]
+- [fs] xfs: fix the dax supported check in xfs_ioctl_setattr_dax_invalidate (Bill O'Donnell) [1765693]
+- [fs] xfs: Fix stale data exposure when readahead races with hole punch (Bill O'Donnell) [1765693]
+- [mm] fs: Export generic_fadvise() (Bill O'Donnell) [1765693]
+- [fs] xfs: reverse search directory freespace indexes (Bill O'Donnell) [1765693]
+- [fs] xfs: speed up directory bestfree block scanning (Bill O'Donnell) [1765693]
+- [fs] xfs: factor free block index lookup from xfs_dir2_node_addname_int() (Bill O'Donnell) [1765693]
+- [fs] xfs: factor data block addition from xfs_dir2_node_addname_int() (Bill O'Donnell) [1765693]
+- [fs] xfs: move xfs_dir2_addname() (Bill O'Donnell) [1765693]
+- [fs] xfs: remove all *_ITER_CONTINUE values (Bill O'Donnell) [1765693]
+- [fs] xfs: remove all *_ITER_ABORT values (Bill O'Donnell) [1765693]
+- [fs] xfs: log proper length of btree block in scrub/repair (Bill O'Donnell) [1765693]
+- [fs] xfs: reinitialize rm_flags when unpacking an offset into an rmap irec (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unnecessary int returns from deferred bmap functions (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unnecessary int returns from deferred refcount functions (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unnecessary int returns from deferred rmap functions (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unnecessary parameter from xfs_iext_inc_seq (Bill O'Donnell) [1765693]
+- [fs] xfs: fix sign handling problem in xfs_bmbt_diff_two_keys (Bill O'Donnell) [1765693]
+- [fs] xfs: don't return _QUERY_ABORT from xfs_rmap_has_other_keys (Bill O'Donnell) [1765693]
+- [fs] xfs: fix maxicount division by zero error (Bill O'Donnell) [1765693]
+- [fs] xfs: bmap scrub should only scrub records once (Bill O'Donnell) [1765693]
+- [fs] xfs: remove excess function parameter description in 'xfs_btree_sblock_v5hdr_verify' (Bill O'Donnell) [1765693]
+- [fs] fs: xfs: Remove KM_NOSLEEP and KM_SLEEP (Bill O'Donnell) [1765693]
+- [fs] fs/xfs: Fix return code of xfs_break_leased_layouts() (Bill O'Donnell) [1765693]
+- [fs] xfs: compat_ioctl: use compat_ptr() (Bill O'Donnell) [1765693]
+- [fs] xfs: fall back to native ioctls for unhandled compat ones (Bill O'Donnell) [1765693]
+- [fs] xfs: remove more ondisk directory corruption asserts (Bill O'Donnell) [1765693]
+- [fs] fs: xfs: xfs_log: Don't use KM_MAYFAIL at xfs_log_reserve() (Bill O'Donnell) [1765693]
+- [fs] xfs: Fix possible null-pointer dereferences in xchk_da_btree_block_check_sibling() (Bill O'Donnell) [1765693]
+- [fs] xfs: fix stack contents leakage in the v1 inumber ioctls (Bill O'Donnell) [1765693]
+- [fs] xfs: sync up xfs_trans_inode with userspace (Bill O'Donnell) [1765693]
+- [fs] xfs: move xfs_trans_inode.c to libxfs/ (Bill O'Donnell) [1765693]
+- [fs] xfs: chain bios the right way around in xfs_rw_bdev (Bill O'Donnell) [1765693]
+- [fs] xfs: bump INUMBERS cursor correctly in xfs_inumbers_walk (Bill O'Donnell) [1765693]
+- [fs] xfs: don't update lastino for FSBULKSTAT_SINGLE (Bill O'Donnell) [1765693]
+- [fs] xfs: online scrub needn't bother zeroing its temporary buffer (Bill O'Donnell) [1765693]
+- [fs] xfs: only allocate memory for scrubbing attributes when we need it (Bill O'Donnell) [1765693]
+- [fs] xfs: refactor attr scrub memory allocation function (Bill O'Donnell) [1765693]
+- [fs] xfs: refactor extended attribute buffer pointer functions (Bill O'Donnell) [1765693]
+- [fs] xfs: attribute scrub should use seen_enough to pass error values (Bill O'Donnell) [1765693]
+- [fs] xfs: allow single bulkstat of special inodes (Bill O'Donnell) [1765693]
+- [fs] xfs: specify AG in bulk req (Bill O'Donnell) [1765693]
+- [fs] xfs: wire up the v5 inumbers ioctl (Bill O'Donnell) [1765693]
+- [fs] xfs: wire up new v5 bulkstat ioctls (Bill O'Donnell) [1765693]
+- [fs] xfs: introduce v5 inode group structure (Bill O'Donnell) [1765693]
+- [fs] xfs: introduce new v5 bulkstat structure (Bill O'Donnell) [1765693]
+- [fs] xfs: rename bulkstat functions (Bill O'Donnell) [1765693]
+- [fs] xfs: remove various bulk request typedef usage (Bill O'Donnell) [1765693]
+- [fs] fs: xfs: xfs_log: Change return type from int to void (Bill O'Donnell) [1765693]
+- [fs] xfs: poll waiting for quotacheck (Bill O'Donnell) [1765693]
+- [fs] xfs: multithreaded iwalk implementation (Bill O'Donnell) [1765693]
+- [fs] xfs: refactor INUMBERS to use iwalk functions (Bill O'Donnell) [1765693]
+- [fs] xfs: refactor iwalk code to handle walking inobt records (Bill O'Donnell) [1765693]
+- [fs] xfs: refactor xfs_iwalk_grab_ichunk (Bill O'Donnell) [1765693]
+- [fs] xfs: clean up long conditionals in xfs_iwalk_ichunk_ra (Bill O'Donnell) [1765693]
+- [fs] xfs: change xfs_iwalk_grab_ichunk to use startino, not lastino (Bill O'Donnell) [1765693]
+- [fs] xfs: move bulkstat ichunk helpers to iwalk code (Bill O'Donnell) [1765693]
+- [fs] xfs: calculate inode walk prefetch more carefully (Bill O'Donnell) [1765693]
+- [fs] xfs: convert bulkstat to new iwalk infrastructure (Bill O'Donnell) [1765693]
+- [fs] xfs: bulkstat should copy lastip whenever userspace supplies one (Bill O'Donnell) [1765693]
+- [fs] xfs: convert quotacheck to use the new iwalk functions (Bill O'Donnell) [1765693]
+- [fs] xfs: create simplified inode walk function (Bill O'Donnell) [1765693]
+- [fs] xfs: create iterator error codes (Bill O'Donnell) [1765693]
+- [fs] xfs: remove XFS_TRANS_NOFS (Bill O'Donnell) [1765693]
+- [fs] xfs: simplify xfs_ioend_can_merge (Bill O'Donnell) [1765693]
+- [fs] xfs: allow merging ioends over append boundaries (Bill O'Donnell) [1765693]
+- [fs] xfs: fix a comment typo in xfs_submit_ioend (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the unused xfs_count_page_state declaration (Bill O'Donnell) [1765693]
+- [fs] xfs: fix iclog allocation size (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unused header files (Bill O'Donnell) [1765693]
+- [fs] xfs: account for log space when formatting new AGs (Bill O'Donnell) [1765693]
+- [fs] xfs: refactor free space btree record initialization (Bill O'Donnell) [1765693]
+- [fs] xfs: always update params on small allocation (Bill O'Donnell) [1765693]
+- [fs] xfs: skip small alloc cntbt logic on NULL cursor (Bill O'Donnell) [1765693]
+- [fs] xfs: move small allocation helper (Bill O'Donnell) [1765693]
+- [fs] xfs: clean up small allocation helper (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_trans_bmap.c into xfs_bmap_item.c (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_trans_rmap.c into xfs_rmap_item.c (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_trans_refcount.c into xfs_refcount_item.c (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_trans_extfree.c into xfs_extfree_item.c (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_bud_init into xfs_trans_get_bud (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_rud_init into xfs_trans_get_rud (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_cud_init into xfs_trans_get_cud (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_efd_init into xfs_trans_get_efd (Bill O'Donnell) [1765693]
+- [fs] xfs: remove a pointless comment duplicated above all xfs_item_ops instances (Bill O'Donnell) [1765693]
+- [fs] xfs: use a list_head for iclog callbacks (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the xfs_log_item_t typedef (Bill O'Donnell) [1765693]
+- [fs] xfs: don't cast inode_log_items to get the log_item (Bill O'Donnell) [1765693]
+- [fs] xfs: add a flag to release log items on commit (Bill O'Donnell) [1765693]
+- [fs] xfs: split iop_unlock (Bill O'Donnell) [1765693]
+- [fs] xfs: don't use xfs_trans_free_items in the commit path (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the dummy iop_push implementation for inode creation items (Bill O'Donnell) [1765693]
+- [fs] xfs: don't require log items to implement optional methods (Bill O'Donnell) [1765693]
+- [fs] xfs: stop using XFS_LI_ABORTED as a parameter flag (Bill O'Donnell) [1765693]
+- [fs] xfs: fix a trivial comment typo in xfs_trans_committed_bulk (Bill O'Donnell) [1765693]
+- [fs] xfs: add struct xfs_mount pointer to struct xfs_buf (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the b_io_length field in struct xfs_buf (Bill O'Donnell) [1765693]
+- [fs] xfs: properly type the b_log_item field in struct xfs_buf (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unused buffer cache APIs (Bill O'Donnell) [1765693]
+- [fs] xfs: stop using bp naming for log recovery buffers (Bill O'Donnell) [1765693]
+- [fs] xfs: use bios directly to read and write the log recovery buffers (Bill O'Donnell) [1765693]
+- [fs] xfs: return an offset instead of a pointer from xlog_align (Bill O'Donnell) [1765693]
+- [fs] xfs: move the log ioend workqueue to struct xlog (Bill O'Donnell) [1765693]
+- [fs] xfs: use bios directly to write log buffers (Bill O'Donnell) [1765693]
+- [fs] xfs: make use of the l_targ field in struct xlog (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the syncing argument from xlog_verify_iclog (Bill O'Donnell) [1765693]
+- [fs] xfs: update both stat counters together in xlog_sync (Bill O'Donnell) [1765693]
+- [fs] xfs: factor out iclog size calculation from xlog_sync (Bill O'Donnell) [1765693]
+- [fs] xfs: factor out splitting of an iclog from xlog_sync (Bill O'Donnell) [1765693]
+- [fs] xfs: factor out log buffer writing from xlog_sync (Bill O'Donnell) [1765693]
+- [fs] xfs: don't use REQ_PREFLUSH for split log writes (Bill O'Donnell) [1765693]
+- [fs] xfs: remove XLOG_STATE_IOABORT (Bill O'Donnell) [1765693]
+- [fs] xfs: reformat xlog_get_lowest_lsn (Bill O'Donnell) [1765693]
+- [fs] xfs: cleanup xlog_get_iclog_buffer_size (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the l_iclog_size_log field from struct xlog (Bill O'Donnell) [1765693]
+- [fs] xfs: renumber XBF_WRITE_FAIL (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the never used _XBF_COMPOUND flag (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the no-op spinlock_destroy stub (Bill O'Donnell) [1765693]
+- [fs] xfs: move xfs_ino_geometry to xfs_shared.h (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unused flag arguments (Bill O'Donnell) [1765693]
+- [fs] xfs: remove the debug-only q_transp field from struct xfs_dquot (Bill O'Donnell) [1765693]
+- [fs] xfs: merge xfs_buf_zero and xfs_buf_iomove (Bill O'Donnell) [1765693]
+- [fs] xfs: remove unused flags arg from getsb interfaces (Bill O'Donnell) [1765693]
+- [fs] xfs: include WARN, REPAIR build options in XFS_BUILD_OPTIONS (Bill O'Donnell) [1765693]
+- [fs] xfs: finish converting to inodes_per_cluster (Bill O'Donnell) [1765693]
+- [fs] xfs: fix inode_cluster_size rounding mayhem (Bill O'Donnell) [1765693]
+- [fs] xfs: refactor inode geometry setup routines (Bill O'Donnell) [1765693]
+- [fs] xfs: separate inode geometry (Bill O'Donnell) [1765693]
+- [fs] xfs: use file_modified() helper (Bill O'Donnell) [1765693]
+- [fs] vfs: introduce file_modified() helper (Bill O'Donnell) [1765693]
+
+* Sun Mar 15 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-188.2.el8]
+- [md] dm: bump version of core and various targets (Mike Snitzer) [1810746]
+- [md] dm: fix congested_fn for request-based device (Mike Snitzer) [1810746]
+- [md] dm integrity: use dm_bio_record and dm_bio_restore (Mike Snitzer) [1810746]
+- [md] dm bio record: save_restore bi_end_io and bi_integrity (Mike Snitzer) [1810746]
+- [md] dm writecache: verify watermark during resume (Mike Snitzer) [1810746]
+- [md] dm: report suspended device during destroy (Mike Snitzer) [1810746]
+- [md] dm thin metadata: fix lockdep complaint (Mike Snitzer) [1810746]
+- [md] dm cache: fix a crash due to incorrect work item cancelling (Mike Snitzer) [1810746]
+- [md] dm integrity: fix invalid table returned due to argument count mismatch (Mike Snitzer) [1810746]
+- [md] dm integrity: fix a deadlock due to offloading to an incorrect workqueue (Mike Snitzer) [1810746]
+- [md] dm integrity: fix recalculation when moving from journal mode to bitmap mode (Mike Snitzer) [1810746]
+- [md] dm writecache: improve performance of large linear writes on SSDs (Mike Snitzer) [1810746]
+- [md] dm mpath: Add timeout mechanism for queue_if_no_path (Mike Snitzer) [1810746]
+- [md] dm thin: change data device's flush_bio to be member of struct pool (Mike Snitzer) [1810746]
+- [md] dm thin: don't allow changing data device during thin-pool reload (Mike Snitzer) [1810746]
+- [md] dm thin: fix use-after-free in metadata_pre_commit_callback (Mike Snitzer) [1810746]
+- [md] dm thin metadata: use pool locking at end of dm_pool_metadata_close (Mike Snitzer) [1810746]
+- [md] dm writecache: fix incorrect flush sequence when doing SSD mode commit (Mike Snitzer) [1810746]
+- [md] dm crypt: fix benbi IV constructor crash if used in authenticated mode (Mike Snitzer) [1810746]
+- [md] dm crypt: Implement Elephant diffuser for Bitlocker compatibility (Mike Snitzer) [1810746]
+- [md] dm space map common: fix to ensure new block isn't already in use (Mike Snitzer) [1810746]
+- [md] dm verity: don't prefetch hash blocks for already-verified data (Mike Snitzer) [1810746]
+- [md] dm crypt: fix GFP flags passed to skcipher_request_alloc() (Mike Snitzer) [1810746]
+- [md] dm thin metadata: Fix trivial math error in on-disk format documentation (Mike Snitzer) [1810746]
+- [md] dm thin metadata: use true_false for bool variable (Mike Snitzer) [1810746]
+- [md] dm snapshot: use true_false for bool variable (Mike Snitzer) [1810746]
+- [md] dm bio prison v2: use true_false for bool variable (Mike Snitzer) [1810746]
+- [md] dm mpath: use true_false for bool variable (Mike Snitzer) [1810746]
+- [md] dm zoned: support zone sizes smaller than 128MiB (Mike Snitzer) [1810746]
+- [md] dm raid: table line rebuild status fixes (Mike Snitzer) [1810746]
+- [documentation] docs: dm-integrity: remove reference to ARC4 (Mike Snitzer) [1810746]
+- [md] dm thin: Flush data device before committing metadata (Mike Snitzer) [1810746]
+- [md] dm thin metadata: Add support for a pre-commit callback (Mike Snitzer) [1810746]
+- [md] dm btree: increase rebalance threshold in __rebalance2() (Mike Snitzer) [1810746]
+- [md] dm mpath: remove harmful bio-based optimization (Mike Snitzer) [1810746]
+- [md] dm integrity: fix excessive alignment of metadata runs (Mike Snitzer) [1810746]
+- [md] dm cache: replace spin_lock_irqsave with spin_lock_irq (Mike Snitzer) [1810746]
+- [md] dm bio prison: replace spin_lock_irqsave with spin_lock_irq (Mike Snitzer) [1810746]
+- [md] dm thin: replace spin_lock_irqsave with spin_lock_irq (Mike Snitzer) [1810746]
+- [md] dm raid: streamline rs_get_progress() and its raid_status() caller side (Mike Snitzer) [1810746]
+- [md] dm raid: simplify rs_setup_recovery call chain (Mike Snitzer) [1810746]
+- [md] dm raid: to ensure resynchronization, perform raid set grow in preresume (Mike Snitzer) [1810746]
+- [md] dm raid: change rs_set_dev_and_array_sectors API and callers (Mike Snitzer) [1810746]
+- [md] dm: introduce DM_GET_TARGET_VERSION (Mike Snitzer) [1810746]
+- [md] dm bufio: introduce a global cache replacement (Mike Snitzer) [1810746]
+- [md] dm bufio: remove old-style buffer cleanup (Mike Snitzer) [1810746]
+- [md] dm bufio: introduce a global queue (Mike Snitzer) [1810746]
+- [md] dm bufio: refactor adjust_total_allocated (Mike Snitzer) [1810746]
+- [md] dm bufio: call adjust_total_allocated from __link_buffer and __unlink_buffer (Mike Snitzer) [1810746]
+- [md] dm crypt: omit parsing of the encapsulated cipher (Mike Snitzer) [1810746]
+- [md] dm crypt: switch to ESSIV crypto API template (Mike Snitzer) [1810746]
+- [crypto] crypto: essiv - create wrapper template for ESSIV generation (Mike Snitzer) [1810746]
+- [security] crypto: drop mask=CRYPTO_ALG_ASYNC from shash tfm allocations (Mike Snitzer) [1810746]
+- [crypto] crypto: drop mask=CRYPTO_ALG_ASYNC from cipher tfm allocations (Mike Snitzer) [1810746]
+- [md] dm verity: add root hash pkcs#7 signature verification (Mike Snitzer) [1810746]
+- [md] dm crypt: reuse eboiv skcipher for IV generation (Mike Snitzer) [1810746]
+- [md] dm integrity: fix a crash due to BUG_ON in __journal_read_write() (Mike Snitzer) [1810746]
+- [md] dm kcopyd: Increase default sub-job size to 512KB (Mike Snitzer) [1810746]
+- [documentation] docs: device-mapper: move it to the admin-guide (Mike Snitzer) [1810746]
+- [documentation] docs: convert docs to ReST and rename to *.rst (Mike Snitzer) [1810746]
+- [md] dm crypt: implement eboiv - encrypted byte-offset initialization vector (Mike Snitzer) [1810746]
+- [md] dm integrity: use kzalloc() instead of kmalloc() + memset() (Mike Snitzer) [1810746]
+- [md] dm integrity: always set version on superblock update (Mike Snitzer) [1810746]
+- [md] dm integrity: whitespace, coding style and dead code cleanup (Mike Snitzer) [1810746]
+- [md] dm integrity: implement synchronous mode for reboot handling (Mike Snitzer) [1810746]
+- [md] dm integrity: handle machine reboot in bitmap mode (Mike Snitzer) [1810746]
+- [md] dm integrity: add a bitmap mode (Mike Snitzer) [1810746]
+- [md] dm integrity: introduce a function add_new_range_and_wait() (Mike Snitzer) [1810746]
+- [md] dm integrity: allow large ranges to be described (Mike Snitzer) [1810746]
+- [md] dm ingerity: pass size to dm_integrity_alloc_page_list() (Mike Snitzer) [1810746]
+- [md] dm integrity: introduce rw_journal_sectors() (Mike Snitzer) [1810746]
+- [md] dm crypt and integrity: shash - remove shash_desc::flags (Mike Snitzer) [1810746]
+- [md] dm: fix potential for q->make_request_fn NULL pointer (Mike Snitzer) [1794340]
+- [netdrv] net/mlx5e: Don't clear the whole vf config when switching modes (mohamad meib) [1811428]
+- [scsi] scsi: be2iscsi: be_main: Mark expected switch fall-through (Maurizio Lombardi) [1796740]
+- [scsi] scsi: be2iscsi: be_iscsi: Mark expected switch fall-through (Maurizio Lombardi) [1796740]
+- [scsi] scsi: be2iscsi: switch to generic DMA API (Maurizio Lombardi) [1796740]
+- [scsi] scsi: be2iscsi: fix spelling mistake "Retreiving" -> "Retrieving" (Maurizio Lombardi) [1796740]
+- [scsi] scsi: be2iscsi: remove unused variable dmsg (Maurizio Lombardi) [1796740]
+- [scsi] scsi: be2iscsi: Update copyright (Maurizio Lombardi) [1796740]
+- [security] selinux: fix sidtab string cache locking (Ondrej Mosnacek) [1807001 1806991]
+- [security] selinux: do not allocate ancillary buffer on first load (Ondrej Mosnacek) [1807001]
+- [security] selinux: remove redundant selinux_nlmsg_perm (Ondrej Mosnacek) [1807001]
+- [security] selinux: fix wrong buffer types in policydb.c (Ondrej Mosnacek) [1807001]
+- [security] selinux: treat atomic flags more carefully (Ondrej Mosnacek) [1807001]
+- [security] selinux: make default_noexec read-only after init (Ondrej Mosnacek) [1807001]
+- [security] selinux: move ibpkeys code under CONFIG_SECURITY_INFINIBAND (Ondrej Mosnacek) [1807001]
+- [security] Documentation, selinux: fix references to old selinuxfs mount point (Ondrej Mosnacek) [1807001]
+- [security] selinuxfs: use scnprintf to get real length for inode (Ondrej Mosnacek) [1807001]
+- [security] selinux: remove set but not used variable 'sidtab' (Ondrej Mosnacek) [1807001]
+- [security] selinux: ensure the policy has been loaded before reading the sidtab stats (Ondrej Mosnacek) [1807001]
+- [security] selinux: ensure we cleanup the internal AVC counters on error in avc_update() (Ondrej Mosnacek) [1807001]
+- [security] selinux: randomize layout of key structures (Ondrej Mosnacek) [1807001]
+- [security] selinux: clean up selinux_enabled/disabled/enforcing_boot (Ondrej Mosnacek) [1807001]
+- [security] selinux: remove unnecessary selinux cred request (Ondrej Mosnacek) [1807001]
+- [security] selinux: ensure we cleanup the internal AVC counters on error in avc_insert() (Ondrej Mosnacek) [1807001]
+- [security] security: only build lsm_audit if CONFIG_SECURITY=y (Ondrej Mosnacek) [1807001]
+- [security] selinux: clean up selinux_inode_permission MAY_NOT_BLOCK tests (Ondrej Mosnacek) [1807001]
+- [security] selinux: fall back to ref-walk if audit is required (Ondrej Mosnacek) [1807001]
+- [security] selinux: revert "stop passing MAY_NOT_BLOCK to the AVC upon follow_link" (Ondrej Mosnacek) [1807001]
+- [security] selinux: cache the SID -> context string translation (Ondrej Mosnacek) [1807001 1806991]
+- [security] selinux: sidtab reverse lookup hash table (Ondrej Mosnacek) [1807001]
+- [security] selinux: default_range glblub implementation (Ondrej Mosnacek) [1807001]
+- [security] selinux: allow labeling before policy is loaded (Ondrej Mosnacek) [1807001 1777525]
+- [security] selinux: remove load size limit (Ondrej Mosnacek) [1807001]
+- [security] selinux: fix residual uses of current_security() for the SELinux blob (Ondrej Mosnacek) [1807001]
+- [kernel] rcu: Make kfree_rcu() ignore NULL pointers (Ondrej Mosnacek) [1807001]
+- [security] SELinux: Abstract use of ipc security blobs (Ondrej Mosnacek) [1807001]
+- [security] SELinux: Abstract use of inode security blob (Ondrej Mosnacek) [1807001]
+- [security] SELinux: Abstract use of file security blob (Ondrej Mosnacek) [1807001]
+- [security] SELinux: Abstract use of cred security blob (Ondrej Mosnacek) [1807001]
+- [security] selinux: kill selinux_sb_get_mnt_opts() (Ondrej Mosnacek) [1807001]
+- [security] selinux; don't open-code a loop in sb_finish_set_opts() (Ondrej Mosnacek) [1807001]
+- [security] selinux: expand superblock_doinit() calls (Ondrej Mosnacek) [1807001]
+- [netdrv] hv_netvsc: Fix unwanted rx_table reset (Mohammed Gamal) [1805950]
+- [netdrv] hv_netvsc: Fix tx_table init in rndis_set_subchannel() (Mohammed Gamal) [1805950]
+- [netdrv] hv_netvsc: Fix send_table offset in case of a host bug (Mohammed Gamal) [1805950]
+- [netdrv] hv_netvsc: Fix offset usage in netvsc_send_table() (Mohammed Gamal) [1805950]
+
+* Sat Mar 14 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-188.1.el8]
+- [block] blk-mq: Keep set->nr_hw_queues and set->map.nr_queues in sync (Ming Lei) [1810523]
+- [block] block: clear REQ_HIPRI if polling is not supported (Ming Lei) [1809506]
+
+* Thu Mar 12 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-187.2.el8]
+- [perf] arm_spe: Enable ACPI/Platform automatic module loading (Jeremy Linton) [1501652]
+- [perf] perf: arm_spe: Don't error on high-order pages for aux buf (Jeremy Linton) [1501652]
+- [perf] arm_spe: handle devm_kasprintf() failure (Jeremy Linton) [1501652]
+- [perf] arm_spe: Enable automatic DT loading (Jeremy Linton) [1501652]
+- [block] blk-iolatency: fix STS_AGAIN handling (Ming Lei) [1764737]
+- [block] blk-iolatency: only account submitted bios (Ming Lei) [1764737]
+- [block] blk-iolatency: clear use_delay when io.latency is set to zero (Ming Lei) [1764737]
+- [block] blk-iolatency: #include "blk.h" (Ming Lei) [1764737]
+- [block] Blk-iolatency: warn on negative inflight IO counter (Ming Lei) [1764737]
+- [block] blk-iolatency: fix IO hang due to negative inflight counter (Ming Lei) [1764737]
+- [block] block: fix blk-iolatency accounting underflow (Ming Lei) [1764737]
+- [fs] xfs: stabilize insert range start boundary to avoid COW writeback race (Brian Foster) [1728979]
+- [x86] uprobes/x86: Fix detection of 32-bit user mode (Oleg Nesterov) [1804961]
+- [ipc] Revert "ipc, sem: remove uneeded sem_undo_list lock usage in exit_sem()" ("Herton R. Krzesinski") [1807627]
+- [powerpc] powerpc/tm: Fix clearing MSRin current when reclaiming on signal delivery (Gustavo Duarte) [1751116]
+- [powerpc] powerpc/tm: Set MSRjust prior to recheckpoint (Gustavo Duarte) [1751116]
+- [arm64] arm64: smp: Increase secondary CPU boot timeout value (Gavin Shan) [1807684]
+- [fs] ext4: work around deleting a file with i_nlink == 0 safely (Carlos Maiolino) [1801049]
+- [char] ipmi: fix sleep-in-atomic in free_user at cleanup SRCU user->release_barrier (Waiman Long) [1810638]
+- [char] ipmi: Revert "fix sleep-in-atomic in free_user at cleanup SRCU user->release_barrier" (Waiman Long) [1810638]
+
+* Tue Mar 10 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-187.1.el8]
+- [kernel] blktrace: Protect q->blk_trace with RCU (Ming Lei) [1798329]
+- [drm] drm/i915: Force DPCD backlight mode for some Dell CML 2020 panels (Lyude Paul) [1782671 1773796 1748892]
+- [drm] drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED panel (Lyude Paul) [1782671 1773796 1748892]
+- [drm] drm/dp: Introduce EDID-based quirks (Lyude Paul) [1782671 1773796 1748892]
+- [drm] drm/i915: Auto detect DPCD backlight support by default (Lyude Paul) [1782671 1773796 1748892]
+- [drm] drm/i915: Fix DPCD register order in intel_dp_aux_enable_backlight() (Lyude Paul) [1782671 1773796 1748892]
+- [drm] drm/i915: Assume 100 brightness when not in DPCD control mode (Lyude Paul) [1782671 1773796 1748892]
+- [drm] drm/i915: Fix eDP DPCD aux max backlight calculations (Lyude Paul) [1782671 1773796 1748892]
+- [drm] drm/i915: Check backlight type while doing eDP backlight initializaiton (Lyude Paul) [1782671 1773796 1748892]
+- [tools] selftests: nft_concat_range: Add test for reported add/flush/add issue (Stefano Brivio) [1807892]
+- [net] nft_set_pipapo: Actually fetch key data in nft_pipapo_remove() (Stefano Brivio) [1807892]
+- [net] sched: don't take rtnl lock during flow_action setup (Marcelo Leitner) [1804385]
+- [include] net: sched: refactor ct action helpers to require tcf_lock (Marcelo Leitner) [1804385]
+- [include] net: sched: refactor police action helpers to require tcf_lock (Marcelo Leitner) [1804385]
+- [net] sched: lock action when translating it to flow_action infra (Marcelo Leitner) [1804385]
+- [powerpc] powerpc/smp: Fix NMI IPI xmon timeout (Diego Domingos) [1747320]
+- [powerpc] powerpc/smp: Fix NMI IPI timeout (Diego Domingos) [1747320]
+- [powerpc] powerpc: NMI IPI make NMI IPIs fully sychronous (Diego Domingos) [1747320]
+- [arm64] arm64: select CPUMASK_OFFSTACK if NUMA (Andrea Arcangeli) [1712856]
+- [arm64] arm64: tlb: skip tlbi broadcast (Andrea Arcangeli) [1712856]
+
+* Mon Mar 09 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-186.2.el8]
+- [fs] fs/proc/proc_sysctl.c: Fix a NULL pointer dereference (Vladis Dronov) [1795521] {CVE-2019-20054}
+- [fs] fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links (Vladis Dronov) [1795521] {CVE-2019-20054}
+- [ptp] ptp: correctly disable flags on old ioctls (Petr Oros) [1795188]
+- [uapi] PTP: add support for one-shot output (Petr Oros) [1795188]
+- [ptp] PTP: introduce new versions of IOCTLs (Petr Oros) [1795188]
+- [virtio] virtio_ring: fix stalls for packed rings (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: Fix potential mem leak in virtqueue_add_indirect_packed (Eugenio Perez) [1601355]
+- [uapi] virtio: drop internal struct from UAPI (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: advertize packed ring layout (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: leverage event idx in packed ring (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: introduce packed ring support (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: cache whether we will use DMA API (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: extract split ring handling from ring creation (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: allocate desc state for split ring separately (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: introduce helper for indirect feature (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: introduce debug helpers (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: put split ring fields in a sub struct (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: put split ring functions together (Eugenio Perez) [1601355]
+- [virtio] virtio_ring: add _split suffix for split ring functions (Eugenio Perez) [1601355]
+- [uapi] virtio: add packed ring types and macros (Eugenio Perez) [1601355]
+- [x86] x86/mtrr: Skip cache flushes on CPUs with cache self-snooping (Prarit Bhargava) [1724541]
+- [x86] x86/cpu/intel: Clear cache self-snoop capability in CPUs with known errata (Prarit Bhargava) [1724541]
+- [documentation] Documentation PCI: Fix pciebus-howto.rst filename typo (Myron Stowe) [1793091]
+- [tools] tools: PCI: Fix installation when `make tools/pci_install` (Myron Stowe) [1793091]
+- [tools] tools: PCI: Fix broken pcitest compilation (Myron Stowe) [1793091]
+- [tools] tools pci: Do not delete pcitest.sh in 'make clean' (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: Clear BAR before freeing its space (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: Skip odd BAR when skipping 64bit BAR (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: Allocate enough space for fixed size BAR (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: Set endpoint controller pointer to NULL (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: Add support to specify alignment for buffers allocated to BARs (Myron Stowe) [1793091]
+- [pci] PCI: pci-epf-test: Use pci_epc_get_features() to get EPC features (Myron Stowe) [1793091]
+- [pci] PCI: pci-epf-test: Do not allocate next BARs memory if current BAR is 64Bit (Myron Stowe) [1793091]
+- [pci] PCI: pci-epf-test: Remove setting epf_bar flags in function driver (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: Fix pci_epf_alloc_space() to set correct MEM TYPE flags (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: Add helper to get first unreserved BAR (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: Add new pci_epc_ops to get EPC features (Myron Stowe) [1793091]
+- [pci] PCI: endpoint: functions: Use memcpy_fromio()/memcpy_toio() (Myron Stowe) [1793091]
+- [pci] PCI: Skip resource distribution when no hotplug bridges (Myron Stowe) [1793091]
+- [pci] PCI: Simplify pci_bus_distribute_available_resources() (Myron Stowe) [1793091]
+- [pci] PCI: Reset both NVIDIA GPU and HDA in ThinkPad P50 workaround (Myron Stowe) [1793091]
+- [pci] PCI: Enable NVIDIA HDA controllers (Myron Stowe) [1793091]
+- [pci] PCI: Use seq_puts() instead of seq_printf() in show_device() (Myron Stowe) [1793091]
+- [pci] PCI: Add NVIDIA GPU multi-function power dependencies (Myron Stowe) [1793091]
+- [pci] PCI: Generalize multi-function power dependency device links (Myron Stowe) [1793091]
+- [pci] PCI: sysfs: Ignore lockdep for remove attribute (Myron Stowe) [1793091]
+- [pci] PCI: Decode PCIe 32 GT/s link speed (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert endpoint/pci-test-howto.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert endpoint/pci-test-function.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert endpoint/pci-endpoint-cfs.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert endpoint/pci-endpoint.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert pcieaer-howto.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert pci-error-recovery.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert acpi-info.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert MSI-HOWTO.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert pci-iov-howto.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert PCIEBUS-HOWTO.txt to reST (Myron Stowe) [1793091]
+- [documentation] docs: pci: fix broken links due to conversion from pci.txt to pci.rst (Myron Stowe) [1793091]
+- [documentation] Documentation: PCI: convert pci.txt to reST (Myron Stowe) [1793091]
+- [documentation] Documentation: add Linux PCI to Sphinx TOC tree (Myron Stowe) [1793091]
+- [pci] PCI: Reset Lenovo ThinkPad P50 nvgpu at boot if necessary (Myron Stowe) [1793091]
+- [pci] PCI: Add a stub for pci_ats_disabled() (Myron Stowe) [1793091]
+- [pci] PCI: Provide pci_match_id() with CONFIG_PCI=n (Myron Stowe) [1793091]
+- [misc] ocxl: Add PCI hotplug dependency to Kconfig (Steve Best) [1788902]
+- [pci] pci/hotplug/pnv-php: Wrap warnings in macro (Steve Best) [1788902]
+- [pci] pci/hotplug/pnv-php: Relax check when disabling slot (Steve Best) [1788902]
+- [pci] pci/hotplug/pnv-php: Register opencapi slots (Steve Best) [1788902]
+- [pci] pci/hotplug/pnv-php: Improve error msg on power state change failure (Steve Best) [1788902]
+- [pci] pci/hotplug/pnv-php: Remove erroneous warning (Steve Best) [1788902]
+- [powerpc] powerpc/powernv/ioda: Find opencapi slot for a device node (Steve Best) [1788902]
+- [powerpc] powerpc/powernv/ioda: Release opencapi device (Steve Best) [1788902]
+- [powerpc] powerpc/powernv/ioda: set up PE on opencapi device when enabling (Steve Best) [1788902]
+- [powerpc] powerpc/powernv/ioda: Protect PE list (Steve Best) [1788902]
+- [powerpc] powerpc/powernv/ioda: Fix ref count for devices with their own PE (Steve Best) [1788902]
+- [of] of: overlay: add_changeset_property() memory leak (Steve Best) [1798483]
+- [of] of: unittest: initialize args before calling of_*parse_*() (Steve Best) [1798483]
+- [of] of: unittest: find overlaysentry by name instead of index (Steve Best) [1798483]
+- [of] of: unittest: allow base devicetree to have symbol metadata (Steve Best) [1798483]
+- [of] of: overlay: set node fields from properties when add new overlay node (Steve Best) [1798483]
+- [of] of: unittest: remove unused of_unittest_apply_overlay() argument (Steve Best) [1798483]
+- [of] of: overlay: check prevents multiple fragments touching same property (Steve Best) [1798483]
+- [of] of: overlay: check prevents multiple fragments add or delete same node (Steve Best) [1798483]
+- [of] of: overlay: test case of two fragments adding same node (Steve Best) [1798483]
+- [of] of: overlay: make all pr_debug() and pr_err() messages unique (Steve Best) [1798483]
+- [of] of: overlay: validate overlay properties (Steve Best) [1798483]
+- [of] of: overlay: reorder fields in struct fragment (Steve Best) [1798483]
+- [of] of: overlay: do not duplicate properties from overlay for new nodes (Steve Best) [1798483]
+- [of] of: overlay: use prop add changeset entry for property in new nodes (Steve Best) [1798483]
+- [of] of: Convert to using pOFn instead of device_node.name (Steve Best) [1798483]
+- [powerpc] powerpc/pseries: add of_node_put() in dlpar_detach_node() (Steve Best) [1798483]
+- [of] of: overlay: add missing of_node_get() in __of_attach_node_sysfs (Steve Best) [1798483]
+- [of] of: overlay: add missing of_node_put() after add new node to changeset (Steve Best) [1798483]
+- [of] of: overlay: add tests to validate kfrees from overlay removal (Steve Best) [1798483]
+
+* Sat Mar 07 2020 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-186.1.el8]
+- [kernel] open the RHEL 8.3 development (Frantisek Hrbata)
+- [netdrv] Revert "r8169: don't use MSI before RTL8168d" (Josef Oskera) [1792839]
+- [drm] drm/nouveau/kms/gv100-: Re-set LUT after clearing for modesets (Ben Skeggs) [1789026]
+- [drm] drm/nouveau/disp/gv100-: not all channel types support reporting error codes (Ben Skeggs) [1789481]
+- [drm] drm/nouveau/disp/nv50-: prevent oops when no channel method map provided (Ben Skeggs) [1789481]
+- [fs] cifs: don't leak -EAGAIN for stat() during reconnect (Dave Wysochanski) [1769599]
+- [block] blk-mq: insert passthrough request into hctx->dispatch directly (Ming Lei) [1788728]
+- [scsi] scsi: megaraid_sas: fixup MSIx interrupt setup during resume (Tomas Henzl) [1805353]
+
+* Fri Feb 28 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-185.el8]
+- [fs] NFS: Add deferred cache invalidation for close-to-open consistency violations (Benjamin Coddington) [1803162]
+- [block] nbd: fix stack corruption in nbd_check_sock_type() (Ming Lei) [1803664]
+- [mm] mm/vmscan.c: don't round up scan size for online memory cgroup (Aristeu Rozanski) [1775691]
+- [tools] selftests/bpf: fix clearing buffered output between tests/subtests (Yauheni Kaliuta) [1786006]
+- [tools] libbpf: avoid usage of __builtin_preserve_field_info (Yauheni Kaliuta) [1786006]
+- [tools] selftests/bpf: samples/bpf: fix Split off legacy stuff from bpf_helpers.h (Yauheni Kaliuta) [1786006]
+- [tools] libbpf: fix Make DECLARE_LIBBPF_OPTS macro strictly a variable declaration (Yauheni Kaliuta) [1786006]
+- [tools] selftests: fix too long argument (Yauheni Kaliuta) [1786006]
+- [tools] libbpf: Add BPF-side definitions of supported field relocation kinds (Yauheni Kaliuta) [1786006]
+- [tools] selftests/bpf: add sub-tests support for test_progs (Yauheni Kaliuta) [1786006]
+- [tools] selftests/bpf: abstract away test log output (Yauheni Kaliuta) [1786006]
+- [tools] selftest/bpf: centralize libbpf logging management for test_progs (Yauheni Kaliuta) [1786006]
+- [tools] selftests/bpf: prevent headers to be compiled as C code (Yauheni Kaliuta) [1786006]
+- [tools] selftests/bpf: add test selectors by number and name to test_progs (Yauheni Kaliuta) [1786006]
+- [tools] selftests/bpf: revamp test_progs to allow more control (Yauheni Kaliuta) [1786006]
+- [net] core: Don't skip generic XDP program execution for cloned SKBs (Jiri Benc) [1802507]
+- [tools] selftests/bpf: De-flake test_tcpbpf (Jiri Benc) [1802507]
+- [net] bpf, sockmap: Check update requirements after locking (Jiri Benc) [1802507]
+- [net] bpf, sockhash: Synchronize_rcu before free'ing map (Jiri Benc) [1802507]
+- [net] bpf, sockmap: Don't sleep while holding RCU lock on tear-down (Jiri Benc) [1802507]
+- [net] net: bpf: Don't leak time wait and request sockets (Jiri Benc) [1802507]
+- [net] bpf/sockmap: Read psock ingress_msg before sk_receive_queue (Jiri Benc) [1802507]
+- [net] bpf: Clear skb->tstamp in bpf_redirect when necessary (Jiri Benc) [1802507]
+- [net] xdp: obtain the mem_id mutex before trying to remove an entry (Jiri Benc) [1802507]
+- [net] page_pool: do not release pool until inflight == 0 (Jiri Benc) [1802507]
+- [net] xsk: Fix registration of Rx-only sockets (Jiri Benc) [1802507]
+- [net] xsk: avoid store-tearing when assigning umem (Jiri Benc) [1802507]
+- [net] xsk: avoid store-tearing when assigning queues (Jiri Benc) [1802507]
+- [tools] bpftool: Don't crash on missing xlated program instructions (Jiri Benc) [1802507]
+- [tools] bpftool: Fix printing incorrect pointer in btf_dump_ptr (Jiri Benc) [1802507]
+- [tools] bpftool: Don't crash on missing jited insns or ksyms (Jiri Benc) [1802507]
+- [tools] bpftool: Match several programs with same tag (Jiri Benc) [1802507]
+- [tools] libbpf: Fix realloc usage in bpf_core_find_cands (Jiri Benc) [1802507]
+- [tools] libbpf: Add missing newline in opts validation macro (Jiri Benc) [1802507]
+- [tools] libbpf: Don't attach perf_buffer to offline/missing CPUs (Jiri Benc) [1802507]
+- [tools] libbpf: Extract and generalize CPU mask parsing logic (Jiri Benc) [1802507]
+- [tools] libbpf: Fix printf compilation warnings on ppc64le arch (Jiri Benc) [1802507]
+- [tools] libbpf: Fix sym->st_value print on 32-bit arches (Jiri Benc) [1802507]
+- [tools] libbpf: Make btf__resolve_size logic always check size error condition (Jiri Benc) [1802507]
+- [tools] libbpf: Fix another potential overflow issue in bpf_prog_linfo (Jiri Benc) [1802507]
+- [tools] libbpf: Fix potential overflow issue (Jiri Benc) [1802507]
+- [tools] libbpf: Fix memory leak/double free issue (Jiri Benc) [1802507]
+- [tools] libbpf: Fix off-by-one error in ELF sanity check (Jiri Benc) [1802507]
+- [tools] selftests/bpf: Fix test_attach_probe (Jiri Benc) [1802507]
+- [kernel] bpf: Fix bpf_event_output re-entry issue (Jiri Benc) [1802507]
+- [net] bpf: Fix incorrect verifier simulation of ARSH under ALU32 (Jiri Benc) [1802507]
+- [net] bpf: Fix passing modified ctx to ld/abs/ind instruction (Jiri Benc) [1802507]
+- [net] bpf: cgroup: prevent out-of-order release of cgroup bpf (Jiri Benc) [1802507]
+- [net] bpf: Fix precision tracking for unbounded scalars (Jiri Benc) [1802507]
+- [net] bpf: Fix cgroup local storage prog tracking (Jiri Benc) [1802507]
+- [net] bpf/stackmap: Fix deadlock with rq_lock in bpf_get_stack() (Jiri Benc) [1802507]
+- [net] bpf, offload: Unlock on error in bpf_offload_dev_create() (Jiri Benc) [1802507]
+- [powerpc] powerpc/bpf: Fix tail call implementation (Jiri Benc) [1802507]
+- [net] bpf: Fix use after free in bpf_get_prog_name (Jiri Benc) [1802507]
+- [net] bpf: Fix use after free in subprog's jited symbol removal (Jiri Benc) [1802507]
+- [uapi] bpf: fix BTF limits (Jiri Benc) [1802507]
+- [net] bpf: fix BTF verification of enums (Jiri Benc) [1802507]
+- [netdrv] ice: Don't tell the OS that link is going down (Jonathan Toppins) [1792670]
+- [powerpc] powerpc/powernv: implement opal_put_chars_atomic (Steve Best) [1806254]
+- [tty] powerpc/powernv: move opal console flushing to udbg (Steve Best) [1806254]
+- [powerpc] powerpc/powernv: Remove OPALv1 support from opal console driver (Steve Best) [1806254]
+- [powerpc] powerpc/powernv: Implement and use opal_flush_console (Steve Best) [1806254]
+- [powerpc] powerpc/powernv: opal-kmsg use flush fallback from console code (Steve Best) [1806254]
+- [powerpc] powerpc/powernv: opal-kmsg standardise OPAL_BUSY handling (Steve Best) [1806254]
+- [powerpc] powerpc/powernv: Fix OPAL console driver OPAL_BUSY loops (Steve Best) [1806254]
+- [powerpc] powerpc/powernv: opal_put_chars partial write fix (Steve Best) [1806254]
+- [x86] Mark Comet Lake-S as supported (David Arcari) [1805754]
+
+* Tue Feb 25 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-184.el8]
+- rebuild, due infrastructure issues last kernel build wasn't signed properly [1807216]
+
+* Sun Feb 23 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-183.el8]
+- [nvme] nvme-multipath: Fix memory leak with ana_log_buf (David Milburn) [1804822]
+- [powerpc] pci/of: Fix OF flags parsing for 64bit BARs (David Gibson) [1804038]
+
+* Fri Feb 21 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-182.el8]
+- [pci] PCI: pciehp: Add DMI table for in-band presence disabled (Myron Stowe) [1749528]
+- [pci] PCI: pciehp: Wait for PDS if in-band presence is disabled (Myron Stowe) [1749528]
+- [pci] PCI: pciehp: Add support for disabling in-band presence (Myron Stowe) [1749528]
+- [netdrv] net/mlx5: DR, Handle reformat capability over sw-steering tables (Alaa Hleihel) [1794997]
+- [netdrv] net/mlx5: DR, Fix matching on vport gvmi (Alaa Hleihel) [1794997]
+- [netdrv] net/mlx5: DR, use non preemptible call to get the current cpu number (Alaa Hleihel) [1794997]
+- [netdrv] net/mlx5: DR, Enable counter on non-fwd-dest objects (Alaa Hleihel) [1794997]
+- [iommu] iommu/vt-d: Simplify check in identity_mapping() (Jerry Snitselaar) [1797124 1784649]
+- [iommu] iommu/vt-d: Remove deferred_attach_domain() (Jerry Snitselaar) [1797124 1784649]
+- [iommu] iommu/vt-d: Do deferred attachment in iommu_need_mapping() (Jerry Snitselaar) [1797124 1784649]
+- [iommu] iommu/vt-d: Move deferred device attachment into helper function (Jerry Snitselaar) [1797124 1784649]
+- [iommu] iommu/vt-d: Add attach_deferred() helper (Jerry Snitselaar) [1797124 1784649]
+- [iommu] iommu/vt-d: Refactor find_domain() helper (Jerry Snitselaar) [1797124 1784649]
+- [iommu] iommu/vt-d: Allow devices with RMRRs to use identity domain (Jerry Snitselaar) [1797124 1784649]
+- [iommu] iommu/vt-d: Call __dmar_remove_one_dev_info with valid pointer (Jerry Snitselaar) [1797124 1784649]
+- [iommu] iommu/vt-d: Fix lock inversion between iommu->lock and device_domain_lock (Jerry Snitselaar) [1797124 1784649]
+- [ata] ata: ahci: Add shutdown to freeze hardware resources of ahci (David Milburn) [1784955]
+- [include] redhat: kabi: convert incorrect use of RH_KABI_EXTEND (Jiri Benc) [1715803]
+- [include] redhat: kabi: macros for intentional kABI breakage (Jiri Benc) [1715803]
+- [uapi] redhat: kabi: bpf: remove misleading comment (Jiri Benc) [1715803]
+- [include] redhat: kabi: introduce RH_KABI_HIDE_INCLUDE and RH_KABI_FAKE_INCLUDE (Jiri Benc) [1715803]
+- [kernel] kernel/module.c: wakeup processes in module_wq on module unload (Prarit Bhargava) [1804209]
+- [x86] kvm: x86: do not reset microcode version on INIT or RESET (Paolo Bonzini) [1801853]
+- [x86] kvm: x86: list MSR_IA32_UCODE_REV as an emulated MSR (Paolo Bonzini) [1801853]
+- [nvme] nvme: prevent warning triggered by nvme_stop_keep_alive (David Milburn) [1799890]
+- [nvme] nvme: nvme_keep_alive_end_io fixup setting comp_seen flag (David Milburn) [1799890]
+
+* Thu Feb 20 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-181.el8]
+- [iommu] iommu: don't change default domain if already set by quirk (Jerry Snitselaar) [1786292]
+- [net] netfilter: ipset: Copy the right MAC address in hash:ip, mac IPv6 sets (Stefano Brivio) [1759422]
+- [net] ipv6/addrconf: only check invalid header values when NETLINK_F_STRICT_CHK is set (Guillaume Nault) [1802817]
+- [net] tcp: clear tp->segs_{in|out} in tcp_disconnect() (Guillaume Nault) [1802682]
+- [net] tcp: clear tp->data_segs{in|out} in tcp_disconnect() (Guillaume Nault) [1802682]
+- [net] tcp: clear tp->delivered in tcp_disconnect() (Guillaume Nault) [1802682]
+- [net] tcp: clear tp->total_retrans in tcp_disconnect() (Guillaume Nault) [1802682]
+- [net] tcp: do not leave dangling pointers in tp->highest_sack (Guillaume Nault) [1802682]
+- [net] tcp: Fix highest_sack and highest_sack_seq (Guillaume Nault) [1802682]
+- [net] tcp: do not send empty skb from tcp_write_xmit() (Guillaume Nault) [1802682]
+- [net] tcp: md5: fix potential overestimation of TCP option space (Guillaume Nault) [1802682]
+- [net] tcp: fix data-race in tcp_recvmsg() (Guillaume Nault) [1802682]
+- [net] bridge: ebtables: don't crash when using dnat target in output chains (Andrea Claudi) [1798923]
+- [net] ip6_tunnel: fix namespaces move (Andrea Claudi) [1798649]
+- [net] ip_tunnel: fix namespaces move (Andrea Claudi) [1798649]
+- [net] ipv4: Detect rollover in specific fib table dump (Guillaume Nault) [1801587]
+- [net] inet: protect against too small mtu values. (Guillaume Nault) [1801587]
+- [net] icmp: fix data-race in cmp_global_allow() (Guillaume Nault) [1801587]
+- [net] inetpeer: fix data-race in inet_putpeer / inet_putpeer (Guillaume Nault) [1801587]
+- [net] ipv4: Fix table id reference in fib_sync_down_addr (Guillaume Nault) [1801587]
+- [net] dccp: do not leak jiffies on the wire (Guillaume Nault) [1801587]
+- [net] inet: stop leaking jiffies on the wire (Guillaume Nault) [1801587]
+- [tools] selftests: fib_tests: add more tests for metric update (Guillaume Nault) [1801587]
+- [net] ipv4: fix route update on metric change. (Guillaume Nault) [1801587]
+- [net] iptunnel: Set tun_flags in the iptunnel_metadata_reply from src (Guillaume Nault) [1801587]
+- [net] flow_dissector: Fix to use new variables for port ranges in bpf hook (Ivan Vecera) [1789862]
+- [net] net_sched: fix a resource leak in tcindex_set_parms() (Ivan Vecera) [1789862]
+- [tools] tc-testing: fix eBPF tests failure on linux fresh clones (Ivan Vecera) [1789862]
+- [net] net_sched: fix an OOB access in cls_tcindex (Ivan Vecera) [1789862]
+- [net] cls_rsvp: fix rsvp_policy (Ivan Vecera) [1789862]
+- [net] net_sched: ematch: reject invalid TCF_EM_SIMPLE (Ivan Vecera) [1789862]
+- [net] net_sched: walk through all child classes in tc_bind_tclass() (Ivan Vecera) [1789862]
+- [net] net_sched: fix ops->bind_class() implementations (Ivan Vecera) [1789862]
+- [net] net_sched: fix datalen for ematch (Ivan Vecera) [1789862]
+- [net] net_sched: use validated TCA_KIND attribute in tc_new_tfilter() (Ivan Vecera) [1789862]
+- [net] sch_prio: When ungrafting, replace with FIFO (Ivan Vecera) [1789862]
+- [net] pkt_sched: fq: do not accept silly TCA_FQ_QUANTUM (Ivan Vecera) [1789862]
+- [net] sched: add delete_empty() to filters and use it in cls_flower (Ivan Vecera) [1789862]
+- [net] sched: act_mirred: Pull mac prior redir to non mac_header_xmit device (Ivan Vecera) [1789862]
+- [net] sched: cls_u32: fix refcount leak in the error path of u32_change() (Ivan Vecera) [1789862]
+- [net] net_sched: sch_fq: properly set sk->sk_pacing_status (Ivan Vecera) [1789862]
+- [net] net_sched: validate TCA_KIND attribute in tc_chain_tmplt_add() (Ivan Vecera) [1789862]
+- [net] mqprio: Fix out-of-bounds access in mqprio_dump (Ivan Vecera) [1789862]
+- [net] sched: allow indirect blocks to bind to clsact in TC (Ivan Vecera) [1789862]
+- [net] core: rename indirect block ingress cb function (Ivan Vecera) [1789862]
+- [net] Fixed updating of ethertype in skb_mpls_push() (Ivan Vecera) [1789862]
+- [net] cls_flower: Fix the behavior using port ranges with hw-offload (Ivan Vecera) [1789862]
+- [net] sched: fix dump qlen for sch_mq/sch_mqprio with NOLOCK subqueues (Ivan Vecera) [1789862]
+- [net] Fixed updating of ethertype in function skb_mpls_pop (Ivan Vecera) [1789862]
+- [net] sched: fix `tc -s class show` no bstats on class with nolock subqueues (Ivan Vecera) [1789862]
+- [net] sched: act_pedit: fix WARN() in the traffic path (Ivan Vecera) [1789862]
+- [net] sched: actions: remove unused 'order' (Ivan Vecera) [1789862]
+- [net] sched: annotate lockless accesses to qdisc->empty (Ivan Vecera) [1789862]
+- [net] annotate lockless accesses to sk->sk_max_ack_backlog (Ivan Vecera) [1789862]
+- [net] inet: minor optimization for backlog setting in listen(2) (Ivan Vecera) [1789862]
+- [net] annotate lockless accesses to sk->sk_ack_backlog (Ivan Vecera) [1789862]
+- [net] use helpers to change sk_ack_backlog (Ivan Vecera) [1789862]
+- [net] sched: prevent duplicate flower rules from tcf_proto destroy race (Ivan Vecera) [1789862]
+- [net] flow_dissector: switch to siphash (Ivan Vecera) [1789862]
+- [netdrv] macvlan: use skb_reset_mac_header() in macvlan_queue_xmit() (Davide Caratti) [1801128]
+- [netdrv] macvlan: do not assume mac_header is set in macvlan_broadcast() (Davide Caratti) [1801128]
+- [net] psample: fix skb_over_panic (Sabrina Dubroca) [1800589]
+- [net] openvswitch: don't unlock mutex when changing the user_features fails (Davide Caratti) [1799363]
+- [net] rtnetlink: validate IFLA_MTU attribute in rtnl_create_link() (Guillaume Nault) [1798715]
+- [net] rtnetlink: fix a typo fbd -> fdb (Guillaume Nault) [1798715]
+- [net] bpf: Sockmap, skmsg helper overestimates push, pull, and pop bounds (Sabrina Dubroca) [1798179]
+- [net] bpf: Sockmap/tls, msg_push_data may leave end mark in place (Sabrina Dubroca) [1798179]
+- [net] bpf: Sockmap/tls, push write_space updates through ulp updates (Sabrina Dubroca) [1798179]
+- [net] sk_msg: Don't check if sock is locked when tearing down psock (Sabrina Dubroca) [1798179]
+- [net] bpf: Sockmap/tls, fix pop data with SK_DROP return code (Sabrina Dubroca) [1798179]
+- [net] bpf: Sockmap/tls, skmsg can have wrapped skmsg that needs extra chaining (Sabrina Dubroca) [1798179]
+- [net] bpf: Sockmap/tls, tls_sw can create a plaintext buf > encrypt buf (Sabrina Dubroca) [1798179]
+- [include] bpf: Sockmap/tls, during free we may call tcp_bpf_unhash() in loop (Sabrina Dubroca) [1798179]
+- [net] bpf: Sockmap, ensure sock lock held during tear down (Sabrina Dubroca) [1798179]
+- [net] tls: fix async operation (Sabrina Dubroca) [1798179]
+- [net] tls: Fix return values to avoid ENOTSUPP (Sabrina Dubroca) [1798179]
+- [net] skmsg: fix TLS 1.3 crash with full sk_msg (Sabrina Dubroca) [1798179]
+- [net] tls: free the record on encryption error (Sabrina Dubroca) [1798179]
+- [net] tls: take into account that bpf_exec_tx_verdict() may free the record (Sabrina Dubroca) [1798179]
+- [net] bpf: skmsg, fix potential psock NULL pointer dereference (Sabrina Dubroca) [1798179]
+- [net] tls: enable sk_msg redirect to tls socket egress (Sabrina Dubroca) [1798179]
+- [netdrv] macsec: fix refcnt leak in module exit routine (Sabrina Dubroca) [1799029]
+- [netdrv] ppp: Adjust indentation into ppp_async_input (Guillaume Nault) [1798104]
+- [net] l2tp: Allow duplicate session creation with UDP (Guillaume Nault) [1798104]
+- [net] Fix bugs introduced by netlink strict checking backport (Petr Oros) [1782172]
+- [tools] selftests: forwarding: fix race between packet receive and tc check (Hangbin Liu) [1797941]
+- [tools] selftests: forwarding: tc_common: Add hitting check (Hangbin Liu) [1797941]
+- [tools] selftests: net: push jq workaround into separate helper (Hangbin Liu) [1797941]
+- [tools] selftests: loopback.sh: skip this test if the driver does not support (Hangbin Liu) [1797941]
+- [tools] selftests: pmtu: fix init mtu value in description (Hangbin Liu) [1797941]
+- [tools] selftests: forwarding: Delete IPv6 address at the end (Hangbin Liu) [1797941]
+- [tools] selftests: pmtu: use -oneline for ip route list cache (Hangbin Liu) [1797941]
+- [tools] selftests: net: tcp_mmap should create detached threads (Hangbin Liu) [1797941]
+- [tools] selftests: net: reuseport_dualstack: fix uninitalized parameter (Hangbin Liu) [1797941]
+- [net] tipc: fix link overflow issue at socket shutdown (Xin Long) [1798070]
+- [net] tipc: fix retrans failure due to wrong destination (Xin Long) [1798070]
+- [net] tipc: fix potential hanging after b/rcast changing (Xin Long) [1798070]
+- [net] tipc: fix ordering of tipc module init and exit routine (Xin Long) [1798070]
+- [net] tipc: fix wrong timeout input for tipc_wait_for_cond() (Xin Long) [1798070]
+- [net] tipc: fix wrong socket reference counter after tipc_sk_timeout() returns (Xin Long) [1798070]
+- [net] tipc: fix potential memory leak in __tipc_sendmsg() (Xin Long) [1798070]
+- [net] tipc: fix link name length check (Xin Long) [1798070]
+- [net] tipc: update replicast capability for broadcast send link (Xin Long) [1798070]
+- [net] tipc: update cluster capabilities if node deleted (Xin Long) [1798070]
+- [net] tipc: update mon's self addr when node addr generated (Xin Long) [1798070]
+- [net] tipc: reduce sensitive to retransmit failures (Xin Long) [1798070]
+- [net] sctp: free cmd->obj.chunk for the unprocessed SCTP_CMD_REPLY (Xin Long) [1798061]
+- [net] sctp: fully initialize v4 addr in some functions (Xin Long) [1798061]
+- [net] sctp: cache netns in sctp_ep_common (Xin Long) [1798061]
+- [net] sctp: Fix memory leak in sctp_sf_do_5_2_4_dupcook (Xin Long) [1798061]
+- [net] xfrm: support output_mark for offload ESP packets (Xin Long) [1798059]
+- [net] xfrm: release device reference for invalid state (Xin Long) [1798059]
+- [net] netfilter: fix a use-after-free in mtype_destroy() (Davide Caratti) [1796361]
+- [net] netfilter: ipset: avoid null deref when IPSET_ATTR_LINENO is present (Davide Caratti) [1796361]
+- [net] netfilter: conntrack: Request module if l3proto is unknown (Phil Sutter) [1752765]
+- [include] tcp: Protect accesses to .ts_recent_stamp with {READ,WRITE}_ONCE() (Guillaume Nault) [1780828]
+- [include] tcp: tighten acceptance of ACKs not matching a child socket (Guillaume Nault) [1780828]
+- [include] tcp: fix rejected syncookies due to stale timestamps (Guillaume Nault) [1780828]
+- [net] SUNRPC: Make "no retrans timeout" soft tasks behave like softconn for timeouts (Steve Dickson) [1801454]
+- [kernel] genirq, sched/isolation: Isolate from handling managed interrupts (Peter Xu) [1783026]
+
+* Wed Feb 19 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-180.el8]
+- [nvme] nvme: fix the parameter order for nvme_get_log in nvme_get_fw_slot_info (David Milburn) [1798630]
+- [mm] arm64: debug: Remove unused return value from do_debug_exception() (Bhupesh Sharma) [1802511]
+- [mm] arm64: debug: Don't propagate UNKNOWN FAR into si_code for debug signals (Bhupesh Sharma) [1802511]
+- [mm] arm64/mm: Reorganize arguments for is_el1_permission_fault() (Bhupesh Sharma) [1802511]
+- [mm] arm64/mm: Define esr_to_debug_fault_info() (Bhupesh Sharma) [1802511]
+- [infiniband] IB/mlx5: Do reverse sequence during device removal (Alaa Hleihel) [1801497]
+- [netdrv] bnxt_en: Fix RDMA driver failure with SRIOV after firmware reset (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Refactor logic to re-enable SRIOV after firmware reset detected (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Fix logic that disables Bus Master during firmware reset (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Fix TC queue mapping (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Fix NTUPLE firmware command failures (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Fix ipv6 RFS filter matching logic (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Do not treat DSN (Digital Serial Number) read failure as fatal (Jonathan Toppins) [1801868]
+- [netdrv] bnxt: Detach page from page pool before sending up the stack (Jonathan Toppins) [1801868]
+- [netdrv] bnxt: apply computed clamp value for coalece parameter (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Fix MSIX request logic for RDMA driver (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Free context memory in the open path if firmware has been reset (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Return error if FW returns more data than dump length (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Fix bp->fw_health allocation and free logic (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Add missing devlink health reporters for VFs (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Fix the logic that creates the health reporters (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Do driver unregister cleanup in bnxt_init_one() failure path (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Send FUNC_RESOURCE_QCAPS command in bnxt_resume() (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Combine 2 functions calling the same HWRM_DRV_RGTR fw command (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Abort waiting for firmware response if there is no heartbeat (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Return proper error code for non-existent NVM variable (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Add a warning message for driver initiated reset (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Improve RX buffer error handling (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Extend ETHTOOL_RESET to hot reset driver (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Increase firmware response timeout for coredump commands (Jonathan Toppins) [1801868]
+- [netdrv] bnxt_en: Fix suspend/resume path on 57500 chips (Jonathan Toppins) [1801111]
+- [netdrv] bnxt_en: Disable/enable Bus master during suspend/resume (Jonathan Toppins) [1801111]
+- [fs] cifs: fix soft mounts hanging in the reconnect code (Leif Sahlberg) [1795423]
+- [kernel] audit: CONFIG_CHANGE don't log internal bookkeeping as an event (Richard Guy Briggs) [1798512]
+- [security] selinux: reorder hooks to make runtime disable less broken (Ondrej Mosnacek) [1778990]
+- [scsi] scsi: qla2xxx: Fix unbound NVME response length (Himanshu Madhani) [1796480]
+- [isdn] misdn: enforce CAP_NET_RAW for raw sockets (Andrea Claudi) [1779475] {CVE-2019-17055}
+
+* Fri Feb 14 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-179.el8]
+- [fs] Revert: f5bcc37b81fc ("namei: allow restricted O_CREAT of FIFOs and regular files") (Eric Sandeen) [1801468]
+- [fs] Revert: 433cbb6cf0ae ("quota: honor quota type in Q_XGETQSTATcalls") (Eric Sandeen) [1800435]
+- [infiniband] RDMA/siw: Fix setting active_mtu attribute (Kamal Heib) [1797199]
+- [infiniband] RDMA/hfi1: Fix memory leak in _dev_comp_vect_mappings_create (Kamal Heib) [1733690]
+- [scsi] scsi: lpfc: Fix release of hwq to clear the eq relationship (Dick Kennedy) [1798661]
+- [x86] kvm/hyper-v: don't allow to turn on unsupported VMX controls for nested guests (Vitaly Kuznetsov) [1786288]
+- [x86] kvm/hyper-v: move VMX controls sanitization out of nested_enable_evmcs() (Vitaly Kuznetsov) [1786288]
+- [x86] kvm/hyper-v: remove stale evmcs_already_enabled check from nested_enable_evmcs() (Vitaly Kuznetsov) [1786288]
+- [x86] kvm: svm: relax conditions for allowing MSR_IA32_SPEC_CTRL accesses (Paolo Bonzini) [1796417]
+- [x86] kvm: x86: avoid incorrect writes to host MSR_IA32_SPEC_CTRL (Paolo Bonzini) [1796417]
+- [tools] selftests: netfilter: Introduce tests for sets with range concatenation (Stefano Brivio) [1593711]
+- [net] nf_tables: Add set type for arbitrary concatenation of ranges (Stefano Brivio) [1593711]
+- [lib] bitmap: Introduce bitmap_cut(): cut bits and shift remaining (Stefano Brivio) [1593711]
+- [net] netfilter: nf_tables: Support for sets with multiple ranged fields (Stefano Brivio) [1593711]
+- [net] netfilter: nf_tables: add NFTA_SET_ELEM_KEY_END attribute (Stefano Brivio) [1593711]
+- [net] netfilter: nf_tables: add nft_setelem_parse_key() (Stefano Brivio) [1593711]
+- [net] netfilter: nf_tables: validate NFT_DATA_VALUE after nft_data_init() (Stefano Brivio) [1593711]
+- [net] netfilter: nf_tables: validate NFT_SET_ELEM_INTERVAL_END (Stefano Brivio) [1593711]
+- [net] netfilter: nf_tables: remove unused parameter ctx (Stefano Brivio) [1593711]
+- [net] netfilter: nf_tables: remove unused variable (Stefano Brivio) [1593711]
+- [ptp] ptp: free ptp device pin descriptors properly (Vladis Dronov) [1787568]
+- [ptp] ptp: fix the race between the release of ptp_clock and cdev (Vladis Dronov) [1787568]
+- [ptp] ptp: Fix pass zero to ERR_PTR() in ptp_clock_register (Vladis Dronov) [1787568]
+
+* Wed Feb 12 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-178.el8]
+- [fs] NFSv4: pnfs_roc() must use cred_fscmp() to compare creds (Benjamin Coddington) [1800893]
+- [drm] drm/nouveau/kms/gv100-: avoid sending a core update until the first modeset (Ben Skeggs) [1801091]
+- [drm] drm/nouveau/kms/gv100-: move window ownership setup into modesetting path (Ben Skeggs) [1801091]
+- [drm] drm/nouveau/disp/gv100-: halt NV_PDISP_FE_RM_INTR_STAT_CTRL_DISP_ERROR storms (Ben Skeggs) [1801091]
+- [drm] drm/nouveau: Add HD-audio component notifier support (Ben Skeggs) [1792191]
+- [netdrv] net/mlx5: Fix deadlock in fs_core (Alaa Hleihel) [1786630]
+- [drm] drm/amd/dm/mst: Ignore payload update failures (Lyude Paul) [1773800 1773795]
+- [kernel] sched/rt: Optimize checking group RT scheduler constraints (Phil Auld) [1797106]
+- [fs] cifs: Fix mount options set in automount (Dave Wysochanski) [1790922]
+
+* Mon Feb 10 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-177.el8]
+- [kernel] timers/nohz: Update NOHZ load in remote tick (Scott Wood) [1791434]
+- [kernel] sched/core: Don't skip remote tick for idle CPUs (Scott Wood) [1791434]
+- [drm] drm/amdgpu/vi: silence an uninitialized variable warning (Lyude Paul) [1792565]
+- [drm] drm: panel-lvds: Potential Oops in probe error handling (Lyude Paul) [1792565]
+- [drm] drm/i915: Fix pid leak with banned clients (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: allow direct upload save restore list for raven2 (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Reorder detect_edp_sink_caps before link settings read (Lyude Paul) [1792565]
+- [drm] drm/i915: Add missing include file <linux/math64.h> (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: enable gfxoff for raven1 refresh (Lyude Paul) [1792565]
+- [drm] drm/amdgpu/discovery: reserve discovery data at the top of VRAM (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: cleanup creating BOs at fixed location (v2) (Lyude Paul) [1792565]
+- [drm] drm/tegra: Fix ordering of cleanup code (Lyude Paul) [1792565]
+- [drm] drm/i915/gen9: Clear residual context state on context switch (Lyude Paul) [1792565]
+- [drm] drm/i915: Add Wa_1407352427:icl,ehl (Lyude Paul) [1792565]
+- [drm] drm/dp_mst: correct the shifting in DP_REMOTE_I2C_READ (Lyude Paul) [1792565]
+- [drm] drm/fb-helper: Round up bits_per_pixel if possible (Lyude Paul) [1792565]
+- [drm] drm/i915: Add Wa_1408615072 and Wa_1407596294 to icl, ehl (Lyude Paul) [1792565]
+- [drm] drm/amdgpu/smu: add metrics table lock for vega20 (v2) (Lyude Paul) [1792565]
+- [drm] drm/amdgpu/smu: add metrics table lock for navi (v2) (Lyude Paul) [1792565]
+- [drm] drm/amdgpu/smu: add metrics table lock (Lyude Paul) [1792565]
+- [drm] drm/nouveau/kms/nv50-: fix panel scaling (Lyude Paul) [1792565 1741114]
+- [drm] drm/nouveau: Fix drm-core using atomic code-paths on pre-nv50 hardware (Lyude Paul) [1792565]
+- [drm] drm/nouveau: Move the declaration of struct nouveau_conn_atom up a bit (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Reset steer fifo before unblanking the stream (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Change the delay time before enabling FEC (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Fixed kernel panic when booting with DP-to-HDMI dongle (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: add cache flush workaround to gfx8 emit_fence (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: add check before enabling/disabling broadcast mode (Lyude Paul) [1792565]
+- [drm] drm: limit to INT_MAX in create_blob ioctl (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: Call find_vma under mmap_sem (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: fix uninitialized variable pasid_mapping_needed (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: fix bad DMA from INTERRUPT_CNTL2 (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: Avoid accidental thread reactivation (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: fix potential double drop fence reference (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: disallow direct upload save restore list from gfx driver (Lyude Paul) [1792565]
+- [gpu] gpu: host1x: Allocate gather copy for host1x (Lyude Paul) [1792565]
+- [drm] drm/tegra: sor: Use correct SOR index on Tegra210 (Lyude Paul) [1792565]
+- [drm] drm/amd/display: correctly populate dpp refclk in fpga (Lyude Paul) [1792565]
+- [drm] drm: Don't free jobs in wait_event_interruptible() (Lyude Paul) [1792565]
+- [drm] drm/gma500: fix memory disclosures due to uninitialized bytes (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: fix amdgpu trace event print string format error (Lyude Paul) [1792565]
+- [drm] drm/amd/powerplay: avoid disabling ECC if RAS is enabled for VEGA20 (Lyude Paul) [1792565]
+- [drm] drm/bridge: dw-hdmi: Restore audio when setting a mode (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Program DWB watermarks from correct state (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Fix dongle_caps containing stale information (Lyude Paul) [1792565]
+- [drm] drm/amd/display: add new active dongle to existent w/a (Lyude Paul) [1792565]
+- [drm] drm/amd/display: refactor Device ID for external chips (Lyude Paul) [1792565]
+- [drm] drm/amd/display: wait for set pipe mcp command completion (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Properly round nominal frequency for SPD (Lyude Paul) [1792565]
+- [drm] drm/drm_vblank: Change EINVAL by the correct errno (Lyude Paul) [1792565]
+- [drm] drm/amdkfd: Fix MQD size calculation (Lyude Paul) [1792565]
+- [drm] drm/bridge: dw-hdmi: Refuse DDC/CI transfers on the internal I2C controller (Lyude Paul) [1792565]
+- [drm] drm/amd/display: set minimum abm backlight level (Lyude Paul) [1792565]
+- [drm] drm/amd/display: load iram for abm 2.3 (Lyude Paul) [1792565]
+- [drm] drm/amd/powerplay: A workaround to GPU RESET on APU (Lyude Paul) [1792565]
+- [drm] drm/amdkfd: fix a potential NULL pointer dereference (v2) (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Set number of pipes to 1 if the second pipe was disabled (Lyude Paul) [1792565]
+- [drm] drm/amd/display: Handle virtual signal type in disable_link() (Lyude Paul) [1792565]
+- [drm] drm/ttm: return -EBUSY on pipelining with no_gpu_wait (v2) (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: grab the id mgr lock while accessing passid_mapping (Lyude Paul) [1792565]
+- [drm] drm/amdgpu/sriov: add ring_stop before ring_create in psp v11 code (Lyude Paul) [1792565]
+- [drm] drm/bridge: analogix-anx78xx: silence -EPROBE_DEFER warnings (Lyude Paul) [1792565]
+- [drm] drm/amd/display: verify stream link before link test (Lyude Paul) [1792565]
+- [drm] drm: Use EOPNOTSUPP, not ENOTSUPP (Lyude Paul) [1792565]
+- [drm] drm/mipi-dbi: fix a loop in debugfs code (Lyude Paul) [1792565]
+- [drm] drm: mst: Fix query_payload ack reply struct (Lyude Paul) [1792565]
+- [drm] Revert "drm/virtio: switch virtio_gpu_wait_ioctl() to gem helper." (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: add invalidate semaphore limit for SRIOV and picasso in gmc9 (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: avoid using invalidate semaphore for picasso (Lyude Paul) [1792565]
+- [drm] drm/amdgpu/gfx10: re-init clear state buffer after gpu reset (Lyude Paul) [1792565]
+- [drm] drm/amdgpu/gfx10: explicitly wait for cp idle after halt/unhalt (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: invalidate mmhub semaphore workaround in gmc9/gmc10 (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: set adev->num_vmhubs for gmc6, 7, 8 (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: Export function to flush TLB of specific vm hub (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: add new member in amdgpu_device for vmhub counts per asic chip (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: rename AMDGPU_GFXHUB/MMHUB macro with hub number (Lyude Paul) [1792565]
+- [drm] drm/amdgpu: initialize vm_inv_eng0_sem for gfxhub and mmhub (Lyude Paul) [1792565]
+- [drm] drm/amd/display: add default clocks if not able to fetch them (Lyude Paul) [1792565]
+- [drm] drm/amd/display: re-enable wait in pipelock, but add timeout (Lyude Paul) [1792565]
+- [drm] drm/dp_mst: Correct the bug in drm_dp_update_payload_part1() (Lyude Paul) [1792565]
+- [drm] drm/radeon: fix r1xx/r2xx register checker for POT textures (Lyude Paul) [1792565]
+- [drm] drm/i915/fbc: Disable fbc by default on all glk+ (Lyude Paul) [1792565]
+- [drm] drm/nouveau/kms/nv50-: Limit MST BPC to 8 (Lyude Paul) [1792565 1773804]
+- [drm] drm/nouveau/kms/nv50-: Store the bpc we're using in nv50_head_atom (Lyude Paul) [1792565 1773804]
+- [drm] drm/nouveau/kms/nv50-: Call outp_atomic_check_view() before handling PBN (Lyude Paul) [1792565 1773804]
+- [drm] drm/mgag200: Flag all G200 SE A machines as broken wrt <startadd> (Lyude Paul) [1792565]
+- [drm] drm/mgag200: Add workaround for HW that does not support 'startadd' (Lyude Paul) [1792565]
+- [drm] drm/mgag200: Store flags from PCI driver data in device structure (Lyude Paul) [1792565]
+- [drm] drm/mgag200: Extract device type from flags (Lyude Paul) [1792565]
+- [dma-buf] dma-buf: Fix memory leak in sync_file_merge() (Lyude Paul) [1792565]
+- [video] video/hdmi: Fix AVI bar unpack (Lyude Paul) [1792565]
+- [drm] drm: damage_helper: Fix race checking plane->state->fb (Lyude Paul) [1792565]
+- [drm] drm/i915: Fix detection for a CMP-V PCH (Lyude Paul) [1792565]
+- [x86] Mark AMD Ryzen 7 as supported (David Arcari) [1797317]
+- [x86] Mark AMD Ryzen 5 as supported (David Arcari) [1718051]
+- [mm] mm/sparse.c: reset section's mem_map when fully deactivated (Pingfan Liu) [1797848]
+- [drm] drm/mgag200: Don't unpin the current cursor image's buffer (Lyude Paul) [1784290]
+- [drm] drm/mgag200: Set cursor scanout address to correct BO (Lyude Paul) [1784290]
+- [drm] drm/mgag200: Pin displayed cursor BO to video memory (Lyude Paul) [1784290]
+- [tools] Correction to manpage of cpupower (Prarit Bhargava) [1796139]
+- [fs] cifs: fix soft mounts hanging in the reconnect code (Dave Wysochanski) [1795429]
+- [net] ipv6_stub: use ip6_dst_lookup_flow instead of ip6_dst_lookup (Sabrina Dubroca) [1774440]
+- [net] ipv6: add net argument to ip6_dst_lookup_flow (Sabrina Dubroca) [1774440]
+- [netdrv] can: peak_usb: fix slab info leak (Guillaume Nault) [1787486] {CVE-2019-19534}
+- [netdrv] vxlan: fix tos value before xmit (Hangbin Liu) [1786075]
+- [net] netfilter: nft_tproxy: Fix port selector on Big Endian (Phil Sutter) [1781481]
+- [net] devlink: Change devlink health locking mechanism (Petr Oros) [1785997]
+- [net] xfrm: Fix memleak on xfrm state destroy (Xin Long) [1780470]
+- [net] erspan: remove the incorrect mtu limit for erspan (Hangbin Liu) [1783871]
+- [net] ieee802154: enforce CAP_NET_RAW for raw sockets (Andrea Claudi) [1779495] {CVE-2019-17053}
+- [net] netfilter: masquerade: don't flush all conntracks if only one address deleted on device (Patrick Talbert) [1772334]
+
+* Tue Feb 04 2020 Herton R. Krzesinski <herton@redhat.com> [4.18.0-176.el8]
+- [mm] memcg: Add preemption point in accumulate_memcg_tree() (Waiman Long) [1795049]
+- [edac] EDAC: skx_common: downgrade message importance on missing PCI device (Aristeu Rozanski) [1775511]
+- [infiniband] IB/core: Do not notify GID change event of an unregistered device (Kamal Heib) [1787333]
+- [infiniband] IB/core: Let IB core distribute cache update events (Kamal Heib) [1787333]
+- [arm64] arm64: kexec: always reset to EL2 if present (Bhupesh Sharma) [1794805]
+- [tools] perf header: Use last modification time for timestamp (Michael Petlan) [1791258]
+- [netdrv] net/mlx5e: Enable all available stats for uplink reps (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: Create q counters on uplink representors (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: Convert rep stats to mlx5e_stats_grp-based infra (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: IPoIB, use separate stats groups (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: Convert stats groups array to array of group pointers (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: Declare stats groups via macro (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: Profile specific stats groups (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: Move uplink rep init/cleanup code into own functions (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: Add discard counters per priority (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5e: Add port buffer's congestion counters (Alaa Hleihel) [1786321]
+- [netdrv] net/mlx5: Expose HW capability bits for port buffer per priority congestion counters (Alaa Hleihel) [1786321]
+- [netdrv] qede: Fix multicast mac configuration (Manish Chopra) [1784894]
+- [thunderbolt] thunderbolt: Drop unnecessary read when writing LC command in Ice Lake (Jarod Wilson) [1784568]
+- [thunderbolt] thunderbolt: Fix lockdep circular locking depedency warning (Jarod Wilson) [1784568]
+- [thunderbolt] thunderbolt: Read DP IN adapter first two dwords in one go (Jarod Wilson) [1784568]
+
+* Fri Jan 31 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-175.el8]
+- [pci] PCI/PM: Move pci_dev_wait() definition earlier (Myron Stowe) [1794266]
+- [pci] PCI/PM: Add missing link delays required by the PCIe spec (Myron Stowe) [1794266]
+- [pci] PCI/PM: Add pcie_wait_for_link_delay() (Myron Stowe) [1794266]
+- [pci] PCI/PM: Return error when changing power state from D3cold (Myron Stowe) [1794266]
+- [pci] PCI/PM: Decode D3cold power state correctly (Myron Stowe) [1794266]
+- [pci] PCI/PM: Fold __pci_complete_power_transition() into its caller (Myron Stowe) [1794266]
+- [pci] PCI/PM: Avoid exporting __pci_complete_power_transition() (Myron Stowe) [1794266]
+- [pci] PCI/PM: Fold __pci_start_power_transition() into its caller (Myron Stowe) [1794266]
+- [pci] PCI/PM: Use pci_power_up() in pci_set_power_state() (Myron Stowe) [1794266]
+- [pci] PCI/PM: Move power state update away from pci_power_up() (Myron Stowe) [1794266]
+- [pci] PCI/PM: Remove unused pci_driver.suspend_late() hook (Myron Stowe) [1794266]
+- [pci] PCI/PM: Remove unused pci_driver.resume_early() hook (Myron Stowe) [1794266]
+- [xen] xen-platform: Convert to generic power management (Myron Stowe) [1794266]
+- [pci] PCI/PM: Simplify pci_set_power_state() (Myron Stowe) [1794266]
+- [pci] PCI/PM: Expand PM reset messages to mention D3hot (not just D3) (Myron Stowe) [1794266]
+- [pci] PCI/PM: Apply D2 delay as milliseconds, not microseconds (Myron Stowe) [1794266]
+- [pci] PCI/PM: Use pci_WARN() to include device information (Myron Stowe) [1794266]
+- [pci] PCI/PM: Use PCI dev_printk() wrappers for consistency (Myron Stowe) [1794266]
+- [pci] PCI/PM: Make power management op coding style consistent (Myron Stowe) [1794266]
+- [pci] PCI/PM: Run resume fixups before disabling wakeup events (Myron Stowe) [1794266]
+- [pci] PCI/PM: Clear PCIe PME Status even for legacy power management (Myron Stowe) [1794266]
+- [pci] PCI/PM: Always return devices to D0 when thawing (Myron Stowe) [1794266]
+- [pci] PCI: PM: Fix pci_power_up() (Myron Stowe) [1794266]
+- [pci] PCI: Make pcie_downstream_port() available outside of access.c (Myron Stowe) [1794266]
+- [pci] PCI: Add pci_info_ratelimited() to ratelimit PCI separately (Myron Stowe) [1794266]
+- [pci] PCI: PM: Simplify bus-level hibernation callbacks (Myron Stowe) [1794266]
+- [pci] PCI: Do not poll for PME if the device is in D3cold (Myron Stowe) [1794266]
+- [pci] PCI: PM: Replace pci_dev_keep_suspended() with two functions (Myron Stowe) [1794266]
+- [pci] PCI: PM: Avoid resuming devices in D3hot during system suspend (Myron Stowe) [1794266]
+- [pci] PCI: PM: Avoid skipping bus-level PM on platforms without ACPI (Myron Stowe) [1794266]
+- [pci] treewide: Switch printk users from pf and pF to ps and pS, respectively (Myron Stowe) [1794266]
+- [sound] ALSA: Use the legacy HDA driver as default for Intel DSP platforms (Jaroslav Kysela) [1793227]
+- [nvme] nvme: nvme_mpath_init remove multipath check (David Milburn) [1790958]
+- [mm] mm/page-writeback.c: don't break integrity writeback on ->writepage() error (Christoph von Recklinghausen) [1782117]
+- [arm64] arm64: Revert support for execute-only user mappings (Jeremy Linton) [1788629]
+- [powerpc] powerpc/papr_scm: Don't enable direct map for a region by default (Steve Best) [1795706]
+
+* Thu Jan 30 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-174.el8]
+- [tools] selftests/eeh: Bump EEH wait time to 60s (Steve Best) [1783199]
+- [tools] tools/kvm_stat: Fix kvm_exit filter name (Gavin Shan) [1780345]
+- [infiniband] RDMA/bnxt_re: Report more number of completion vectors (Selvin Xavier) [1788037 1753515]
+- [infiniband] RDMA/bnxt_re: Fix Send Work Entry state check while polling completions (Selvin Xavier) [1788037]
+- [infiniband] RDMA/bnxt_re: Fix missing le16_to_cpu (Selvin Xavier) [1788037]
+- [infiniband] RDMA/bnxt_re: Avoid freeing MR resources if dereg fails (Selvin Xavier) [1788037 1737147]
+- [infiniband] RDMA/bnxt_re: Fix stat push into dma buffer on gen p5 devices (Selvin Xavier) [1788037 1771855]
+- [infiniband] RDMA/bnxt_re: Fix chip number validation Broadcom's Gen P5 series (Selvin Xavier) [1788037 1783943]
+- [netdrv] net/mlx5e: Clear VF config when switching modes (mohamad meib) [1787276]
+- [base] drivers/base/memory.c: cache memory blocks in xarray to accelerate lookup fixup (David Hildenbrand) [1789900]
+- [base] drivers/base/memory.c: cache memory blocks in xarray to accelerate lookup (David Hildenbrand) [1789900]
+- [base] drivers/base/memory.c: drop the mem_sysfs_mutex (David Hildenbrand) [1789900]
+- [base] driver/base/memory.c: validate memory block size early (David Hildenbrand) [1789900]
+- [fs] block: Don't revalidate bdev of hidden gendisk (David Milburn) [1779342]
+- [scsi] scsi: virtio_scsi: unplug LUNs when events missed (Maxim Levitsky) [1614188]
+- [scsi] scsi: virtio_scsi: implement request batching (Maxim Levitsky) [1614188]
+- [scsi] scsi: core: fix dh and multipathing for SCSI hosts without request batching (Maxim Levitsky) [1614188]
+- [scsi] scsi: core: fix missing .cleanup_rq for SCSI hosts without request batching (Maxim Levitsky) [1614188]
+- [scsi] scsi: core: add support for request batching (Maxim Levitsky) [1614188]
+- [scsi] scsi: virtio_scsi: Use struct_size() helper (Maxim Levitsky) [1614188]
+- [scsi] scsi: virtio_scsi: remove unused 'affinity_hint_set' (Maxim Levitsky) [1614188]
+- [scsi] scsi: virtio_scsi: Use HCTX_TYPE_DEFAULT for blk_mq_tag_set->map (Maxim Levitsky) [1614188]
+- [scsi] scsi: virtio_scsi: don't send sc payload with tmfs (Maxim Levitsky) [1614188]
+- [scsi] scsi: virtio_scsi: Remove per-target data because it is no longer used (Maxim Levitsky) [1614188]
+- [powerpc] powerpc/pseries/lparcfg: Fix display of Maximum Memory (Steve Best) [1795622]
+- [powerpc] powernv: Don't reprogram SLW image on every KVM guest entry/exit (Laurent Vivier) [1751078]
+- [x86] Mark certain versions of Comet Lake as supported (David Arcari) [1794198]
+- [s390] s390/dasd: Disable Thin Provisioning to prevent data loss (Philipp Rudo) [1793461]
+
+* Fri Jan 24 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-173.el8]
+- [x86] kvm: x86/mmu: Take slots_lock when using kvm_mmu_zap_all_fast() (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [x86] kvm: x86: disable shattered huge page recovery for PREEMPT_RT (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [documentation] documentation: Add ITLB_MULTIHIT documentation (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [x86] kvm: x86: mmu: Recovery of shattered NX large pages (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [virt] kvm: Add helper function for creating VM worker threads (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [x86] kvm: mmu: ITLB_MULTIHIT mitigation (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [kernel] cpu/speculation: Uninline and export CPU mitigations helpers (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [x86] cpu: Add Tremont to the cpu vulnerability whitelist (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [x86] bugs: Add ITLB_MULTIHIT bug infrastructure (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [x86] kvm: vmx, svm: always run with EFER.NXE=1 when shadow paging is active (Paolo Bonzini) [1690344] {CVE-2018-12207}
+- [crypto] crypto: hmac - fix memory leak in hmac_init_tfm() (Herbert Xu) [1775858]
+- [crypto] crypto: hash - fix incorrect HASH_MAX_DESCSIZE (Herbert Xu) [1775858]
+- [nvme] nvme: Translate more status codes to blk_status_t (Gopal Tiwari) [1781537]
+- [include] nvme: resync include/linux/nvme.h with nvmecli (Gopal Tiwari) [1781537]
+- [netdrv] hv_netvsc: Fix memory leak when removing rndis device (Mohammed Gamal) [1733007]
+- [fs] cifs: Fix memory allocation in __smb2_handle_cancelled_cmd() (Dave Wysochanski) [1793182]
+- [tools] perf c2c: Fix report with offline cpus (Michael Petlan) [1744903]
+- [kernel] locking/rwsem: Fix kernel crash when spinning on RWSEM_OWNER_UNKNOWN (Waiman Long) [1793028]
+- [mm] mm/memory_hotplug: don't free usage map when removing a re-added early section (Pingfan Liu) [1787269]
+- [netdrv] iavf: remove current MAC address filter on VF reset (Stefan Assmann) [1735725 1738738]
+- [dma] dma-mapping: fix handling of dma-ranges for reserved memory (again) (Jerry Snitselaar) [1784691]
+
+* Tue Jan 21 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-172.el8]
+- [fs] pnfs/filelayout: enable LAYOUTGET on OPEN (Steve Dickson) [1756140]
+- [fs] NFSD fixing possible null pointer derefering in copy offload (Benjamin Coddington) [1763220]
+- [fs] nfsd: Ensure CLONE persists data and metadata changes to the target file (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Fix backchannel latency metrics (Benjamin Coddington) [1763220]
+- [fs] NFSv4.x: Drop the slot if nfs4_delegreturn_prepare waits for layoutreturn (Benjamin Coddington) [1763220]
+- [fs] NFSv4.x: Handle bad/dead sessions correctly in nfs41_sequence_process() (Benjamin Coddington) [1763220]
+- [fs] NFS: Fix an RCU lock leak in nfs4_refresh_delegation_stateid() (Benjamin Coddington) [1763220]
+- [fs] NFSv4: Don't allow a cached open with a revoked delegation (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Fix svcauth_gss_proxy_init() (Benjamin Coddington) [1763220]
+- [net] SUNRPC: The TCP back channel mustn't disappear while requests are outstanding (Benjamin Coddington) [1763220]
+- [net] xprtrdma: Close window between waking RPC senders and posting Receives (Benjamin Coddington) [1763220]
+- [net] xprtrdma: Connection becomes unstable after a reconnect (Benjamin Coddington) [1763220]
+- [net] xprtrdma: Add unique trace points for posting Local Invalidate WRs (Benjamin Coddington) [1763220]
+- [net] sunrpc: fix crash when cache_head become valid before update (Benjamin Coddington) [1763220]
+- [fs] nfsd4: fix up replay_matches_cache() (Benjamin Coddington) [1763220]
+- [fs] NFSv4: Fix leak of clp->cl_acceptor string (Benjamin Coddington) [1763220]
+- [fs] pNFS: Ensure we do clear the return-on-close layout stateid on fatal errors (Benjamin Coddington) [1763220]
+- [fs] NFS: Fix O_DIRECT accounting of number of bytes read/written (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Fix another issue with MIC buffer space (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Fix buffer handling of GSS MIC without slack (Benjamin Coddington) [1763220]
+- [fs] Revert "NFSv4/flexfiles: Abort I/O early if the layout segment was invalidated" (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Don't handle errors if the bind/connect succeeded (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Fix congestion window race with disconnect (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Don't try to parse incomplete RPC messages (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Don't receive TCP data into a request buffer that has been reset (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Dequeue the request from the receive queue while we're re-encoding (Benjamin Coddington) [1763220]
+- [net] SUNRPC: Handle connection breakages correctly in call_status() (Benjamin Coddington) [1763220]
+- [net] xprtrdma: Toggle XPRT_CONGESTED in xprtrdma's slot methods (Benjamin Coddington) [1763220]
+- [fs] NFS: Ensure O_DIRECT reports an error if the bytes read/written is 0 (Benjamin Coddington) [1763220]
+- [fs] NFSv4/pnfs: Fix a page lock leak in nfs_pageio_resend() (Benjamin Coddington) [1763220]
+- [fs] NFS: Fix regression whereby fscache errors are appearing on 'nofsc' mounts (Benjamin Coddington) [1763220]
+- [fs] NFSv4: Fix a potential sleep while atomic in nfs4_do_reclaim() (Benjamin Coddington) [1763220]
+- [fs] NFSv4.1: Only reap expired delegations (Benjamin Coddington) [1763220]
+- [fs] NFSv4.1: Fix open stateid recovery (Benjamin Coddington) [1763220]
+- [fs] NFSv4: Fix a credential refcount leak in nfs41_check_delegation_stateid (Benjamin Coddington) [1763220]
+- [fs] NFSv4: Handle the special Linux file open access mode (Benjamin Coddington) [1763220]
+- [fs] nfsd: Fix overflow causing non-working mounts on 1 TB machines (Benjamin Coddington) [1763220]
+- [md] md: make sure desc_nr less than MD_SB_DISKS (Nigel Croxon) [1769057]
+- [md] md: raid1: check rdev before reference in raid1_sync_request func (Nigel Croxon) [1769057]
+- [md] md/raid10: prevent access of uninitialized resync_pages offset (Nigel Croxon) [1769057]
+- [md] md: avoid invalid memory access for array sb->dev_roles (Nigel Croxon) [1769057]
+- [md] md/raid1: avoid soft lockup under high load (Nigel Croxon) [1769057]
+- [md] md: no longer compare spare disk superblock events in super_load (Nigel Croxon) [1769057]
+- [md] md: improve handling of bio with REQ_PREFLUSH in md_flush_request() (Nigel Croxon) [1769057]
+- [md] md/bitmap: avoid race window between md_bitmap_resize and bitmap_file_clear_bit (Nigel Croxon) [1769057]
+- [md] md/raid0: Fix an error message in raid0_make_request() (Nigel Croxon) [1769057]
+- [md] md/raid0: fix warning message for parameter default_layout (Nigel Croxon) [1769057]
+- [netdrv] net/mlx5: DR, Init lists that are used in rule's member (Alaa Hleihel) [1775986]
+- [netdrv] net/mlx5: DR, No need for atomic refcount for internal SW steering resources (Alaa Hleihel) [1775986]
+- [netdrv] net/mlx5: DR, Create multiple destination action from dr_create_fte (Alaa Hleihel) [1775986]
+- [netdrv] net/mlx5: DR, Add support for multiple destination table action (Alaa Hleihel) [1775986]
+- [netdrv] net/mlx5: DR, Align dest FT action creation to API (Alaa Hleihel) [1775986]
+- [netdrv] net/mlx5: DR, Pass table flags at creation to lower layer (Alaa Hleihel) [1775986]
+- [netdrv] net/mlx5: DR, Create multi-destination table for SW-steering use (Alaa Hleihel) [1775986]
+- [netdrv] net/mlx5: DR, Create FTE entry in the FW from SW-steering (Alaa Hleihel) [1775986]
+- [netdrv] net/mlx5: DR, Use attributes struct for FW flow table creation (Alaa Hleihel) [1775986]
+- [drm] drm/amd/display: fix struct init in update_bounding_box (Don Dutile) [1784621]
+- [tools] perf/x86/pmu-events: Fix Kernel_Utilization metric (Michael Petlan) [1788434]
+- [tools] perf vendor events intel: Update all the Intel JSON metrics from TMAM 3.6 (Michael Petlan) [1788434]
+- [tools] perf vendor events intel: Update CascadelakeX events to v1.05 (Michael Petlan) [1788434]
+- [tools] cpupower: mperf_monitor: Update cpupower to use the RDPRU instruction (Janakarajan Natarajan) [1766357]
+- [tools] cpupower: mperf_monitor: Introduce per_cpu_schedule flag (Janakarajan Natarajan) [1766357]
+- [tools] cpupower: Move needs_root variable into a sub-struct (Janakarajan Natarajan) [1766357]
+- [mm] coredump: fix race condition between collapse_huge_page() and core dumping (Andrea Arcangeli) [1722986]
+- [mm] memcg, oom: don't require __GFP_FS when invoking memcg OOM killer (Waiman Long) [1791170]
+- [uapi] mm: move MAP_SYNC to asm-generic/mman-common.h (Jeff Moyer) [1791539]
+
+* Fri Jan 17 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-171.el8]
+- [linux] ptr_ring: wrap back ->producer in __ptr_ring_swap_queue() (Lu Lu) [1663784]
+- [virtio] virtio-balloon: fix managed page counts when migrating pages between zones (David Hildenbrand) [1689800]
+- [infiniband] IB/mlx4: Follow mirror sequence of device add during device removal (mohamad meib) [1786042]
+- [netdrv] gve: Fix the queue page list allocated pages count (Patricio Noyola) [1789114]
+- [netdrv] gve: fix dma sync bug where not all pages synced (David Awogbemila) [1790957]
+- [netdrv] gve: Fixes DMA synchronization (David Awogbemila) [1789027]
+- [net] SUNRPC: Ignore queue transmission errors on successful transmission (Benjamin Coddington) [1769367]
+- [net] Revert "SUNRPC: Micro-optimise when the task is known not to be sleeping" (Benjamin Coddington) [1769367]
+- [net] SUNRPC: Fix up calculation of client message length (Benjamin Coddington) [1769367]
+- [net] Merge tag 'nfs-rdma-for-5.1-1' of git://git.linux-nfs.org/projects/anna/linux-nfs (Benjamin Coddington) [1769367]
+- [char] tpm: Revert "tpm_tis_core: Turn on the TPM before probing IRQ's" (Jerry Snitselaar) [1789088]
+- [char] tpm: Revert "tpm_tis_core: Set TPM_CHIP_FLAG_IRQ before probing for interrupts" (Jerry Snitselaar) [1789088]
+- [tools] perf jvmti: Link against tools/lib/ctype.h to have weak strlcpy() (Michael Petlan) [1786048]
+- [tools] perf jvmti: Link against tools/lib/string.o to have weak strlcpy() (Michael Petlan) [1786048]
+- [kernel] kprobes: Show address of kprobes if kallsyms does (Michael Petlan) [1747099]
+- [kernel] genirq/debugfs: Reset domain debugfs_file on removal of the debugfs file (Mohammed Gamal) [1782640]
+- [powerpc] powerpc: Fix 32-bit KVM-PR lockup and host crash with MacOS guest (Steve Best) [1789594]
+
+* Tue Jan 14 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-170.el8]
+- [platform] x86: intel_pmc_core: Add Comet Lake (CML) platform support to intel_pmc_core driver (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core: Fix the SoC naming inconsistency (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core_pltdrv: Module removal warning fix (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core: Do not ioremap RAM (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_ipc: Remove dev_err() usage after platform_get_irq() (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core: Add ICL-NNPI support to PMC Core (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core: Attach using APCI HID "INT33A1" (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core: transform Pkg C-state residency from TSC ticks into microseconds (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc: no need to check return value of debugfs_create functions (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core: Allow to dump debug registers on S0ix failure (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core: Convert to a platform_driver (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_ipc: Don't map non-used optional resources (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_ipc: Apply same width for offset definitions (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_ipc: Use BIT() macro (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_core: Mark local function static (Lenny Szubowicz) [1773793]
+- [platform] x86: intel_pmc_ipc: adding error handling (Lenny Szubowicz) [1773793]
+- [mm] memory_hotplug: cleanup __remove_pages() (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: drop local variables in shrink_zone_span() (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: don't check for "all holes" in shrink_zone_span() (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: we always have a zone in find_(smallest|biggest)_section_pfn (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: poison memmap in remove_pfn_range_from_zone() (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: shrink zones when offlining memory (Christoph von Recklinghausen) [1766491]
+- [mm] memmap_init: update variable name in memmap_init_zone (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: don't access uninitialized memmaps in shrink_zone_span() (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: fix try_offline_node() (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: fix updating the node span (Christoph von Recklinghausen) [1766491]
+- [mm] hugetlbfs: don't access uninitialized memmaps in pfn_range_valid_gigantic() (Christoph von Recklinghausen) [1766491]
+- [mm] memory_hotplug: don't access uninitialized memmaps in shrink_pgdat_span() (Christoph von Recklinghausen) [1766491]
+- [mm] page_owner: don't access uninitialized memmaps when reading /proc/pagetypeinfo (Christoph von Recklinghausen) [1766491]
+- [mm] memory-failure.c: don't access uninitialized memmaps in memory_failure() (Christoph von Recklinghausen) [1766491]
+- [fs] proc/page.c: don't access uninitialized memmaps in fs/proc/page.c (Christoph von Recklinghausen) [1766491]
+- [base] base/memory.c: don't access uninitialized memmaps in soft_offline_page_store() (Christoph von Recklinghausen) [1766491]
+- [base] base/node.c: simplify unregister_memory_block_under_nodes() (Christoph von Recklinghausen) [1766491]
+- [kernel] /proc/kpagecount: return 0 for special pages that are never mapped (Christoph von Recklinghausen) [1766491]
+- [netdrv] fm10k: fix fm10k_get_fault_pf to read correct address (Neil Horman) [1721716]
+- [netdrv] fm10k: convert NON_Q_VECTORS(hw) into NON_Q_VECTORS (Neil Horman) [1721716]
+- [netdrv] fm10k: mark unused parameters with __always_unused (Neil Horman) [1721716]
+- [netdrv] fm10k: cast page_addr to u8 * when incrementing it (Neil Horman) [1721716]
+- [netdrv] fm10k: explicitly return 0 on success path in function (Neil Horman) [1721716]
+- [netdrv] fm10k: remove needless initialization of size local variable (Neil Horman) [1721716]
+- [netdrv] fm10k: remove needless assignment of err local variable (Neil Horman) [1721716]
+- [netdrv] fm10k: remove unnecessary variable initializer (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce scope of the ring variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce the scope of the result local variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce the scope of the local msg variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce the scope of the local i variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce the scope of the err variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce the scope of the tx_buffer variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce the scope of the q_idx local variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce the scope of local err variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce the scope of qv local variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce scope of *p local variable (Neil Horman) [1721716]
+- [netdrv] fm10k: reduce scope of the err variable (Neil Horman) [1721716]
+- [netdrv] fm10k: Use dev_get_drvdata (Neil Horman) [1721716]
+- [crypto] crypto: qat - Silence smp_processor_id() warning (Neil Horman) [1723573]
+- [crypto] crypto: qat - use struct_size() helper (Neil Horman) [1723573]
+- [crypto] crypto: qat - do not offload zero length requests (Neil Horman) [1723573]
+- [crypto] crypto: qat - return error for block ciphers for invalid requests (Neil Horman) [1723573]
+- [crypto] crypto: qat - return proper error code in setkey (Neil Horman) [1723573]
+- [crypto] crypto: qat - fix block size for aes ctr mode (Neil Horman) [1723573]
+- [crypto] crypto: qat - update iv after encryption or decryption operations (Neil Horman) [1723573]
+- [crypto] crypto: qat - add check for negative offset in alg precompute function (Neil Horman) [1723573]
+- [crypto] crypto: qat - remove spin_lock in qat_ablkcipher_setkey (Neil Horman) [1723573]
+- [crypto] treewide: Add SPDX license identifier - Makefile/Kconfig (Neil Horman) [1723573]
+- [crypto] crypto: shash - remove shash_desc::flags (Neil Horman) [1723573]
+- [crypto] crypto: rsa - unimplement sign/verify for raw RSA backends (Neil Horman) [1723573]
+- [hv] Revert "hv: vmbus: Implement suspend/resume for VSC drivers for hibernation" (Mohammed Gamal) [1788082]
+- [hv] Revert "hv: vmbus: Ignore the offers when resuming from hibernation" (Mohammed Gamal) [1788082]
+- [hv] Revert "hv: vmbus: Suspend/resume the vmbus itself for hibernation" (Mohammed Gamal) [1788082]
+- [hv] Revert "hv: vmbus: Clean up hv_sock channels by force upon suspend" (Mohammed Gamal) [1788082]
+- [hv] Revert "hv: vmbus: Suspend after cleaning up hv_sock and sub channels" (Mohammed Gamal) [1788082]
+- [hv] Revert "hv: vmbus: Resume after fixing up old primary channels" (Mohammed Gamal) [1788082]
+- [hv] Revert "vmbus: Fix harmless building warnings without CONFIG_PM_SLEEP" (Mohammed Gamal) [1788082]
+- [x86] kvm: vmx: Introduce handle_unexpected_vmexit and handle WAITPKG vmexit (Paul Lai) [1494707]
+- [x86] kvm: vmx: Emulate MSR IA32_UMWAIT_CONTROL (Paul Lai) [1494707]
+- [x86] kvm: x86: Add support for user wait instructions (Paul Lai) [1494707]
+- [tools] tools arch x86: Update tools's copy of cpufeatures.h (Paul Lai) [1494707]
+- [kvm] KVM: x86: expose AVX512_BF16 feature to guest (Paul Lai) [1642539]
+- [x86] x86/cpufeatures: Enumerate the new AVX512 BFLOAT16 instructions (Paul Lai) [1642539]
+- [block] rbd: silence bogus uninitialized warning in rbd_object_map_update_finish() (Jeff Layton) [1777961]
+- [fs] ceph: increment/decrement dio counter on async requests (Jeff Layton) [1777961]
+- [fs] ceph: take the inode lock before acquiring cap refs (Jeff Layton) [1777961]
+- [scsi] scsi: lpfc: fix build failure with DEBUGFS disabled (Dick Kennedy) [1784863]
+- [scsi] Revert "storvsc: setup 1:1 mapping between hardware queue and CPU queue" (Cathy Avery) [1787594]
+- [tools] perf session: Return error code for perf_session__new() function on failure (Michael Petlan) [1754995]
+- [tools] perf header: Fix false warning when there are no duplicate cache entries (Michael Petlan) [1776499]
+- [firmware] efi/memreserve: Register reservations as 'reserved' in /proc/iomem (Bhupesh Sharma) [1772730]
+- [firmware] efi/memreserve: deal with memreserve entries in unmapped memory (Bhupesh Sharma) [1772730]
+- [powerpc] powerpc/powernv: Avoid re-registration of imc debugfs directory (Diego Domingos) [1781098]
+- [powerpc] powerpc/powernv: Return for invalid IMC domain (Diego Domingos) [1781098]
+
+* Fri Jan 10 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-169.el8]
+- [tools] perf tools: Allow to link with libbpf dynamicaly (Michael Petlan) [1781570]
+- [tools] perf probe: Fix spelling mistake "addrees" -> "address" (Michael Petlan) [1760227]
+- [tools] perf probe: Trace a magic number if variable is not found (Michael Petlan) [1760227]
+- [tools] perf probe: Support DW_AT_const_value constant value (Michael Petlan) [1760227]
+- [tools] perf probe: Support multiprobe event (Michael Petlan) [1760227]
+- [tools] perf probe: Generate event name with line number (Michael Petlan) [1760227]
+- [tools] perf probe: Do not show non representive lines by perf-probe -L (Michael Petlan) [1760227]
+- [tools] perf probe: Verify given line is a representive line (Michael Petlan) [1760227]
+- [tools] perf probe: Show correct statement line number by perf probe -l (Michael Petlan) [1760227]
+- [tools] perf probe: Skip overlapped location on searching variables (Michael Petlan) [1760227]
+- [tools] perf probe: Fix to show calling lines of inlined functions (Michael Petlan) [1760227]
+- [tools] perf probe: Filter out instances except for inlined subroutine and subprogram (Michael Petlan) [1760227]
+- [tools] perf probe: Skip end-of-sequence and non statement lines (Michael Petlan) [1760227]
+- [tools] perf probe: Return a better scope DIE if there is no best scope (Michael Petlan) [1760227]
+- [tools] perf probe: Fix to show ranges of variables in functions without entry_pc (Michael Petlan) [1760227]
+- [tools] perf probe: Fix to show inlined function callsite without entry_pc (Michael Petlan) [1760227]
+- [tools] perf probe: Fix to list probe event with correct line number (Michael Petlan) [1760227]
+- [tools] perf probe: Fix to probe an inline function which has no entry pc (Michael Petlan) [1760227]
+- [tools] perf probe: Fix to probe a function which has no entry pc (Michael Petlan) [1760227]
+- [tools] perf probe: Fix wrong address verification (Michael Petlan) [1760227]
+- [tools] perf probe: Fix to show function entry line as probe-able (Michael Petlan) [1760227]
+- [tools] perf probe: Walk function lines in lexical blocks (Michael Petlan) [1760227]
+- [tools] perf probe: Fix to find range-only function instance (Michael Petlan) [1760227]
+- [scsi] qla2xxx: Fix incorrect SFUB length used for Secure Flash Update MB Cmd (Himanshu Madhani) [1782598]
+- [scsi] qla2xxx: Added support for MPI and PEP regions for ISP28XX (Himanshu Madhani) [1782598]
+- [scsi] qla2xxx: Correctly retrieve and interpret active flash region (Himanshu Madhani) [1782598]
+- [nvme] nvme: Add quirk for LiteON CL1 devices running FW 22301111 (Perry Yuan) [1769179]
+- [nvme] nvme-pci: Save PCI state before putting drive into deepest state (Perry Yuan) [1769180]
+- [infiniband] rdma/cxgb4: Fix spelling mistake "immedate" -> "immediate" (Vishal Kulkarni) [1725823]
+- [infiniband] rdma/cxgb4: Fix null pointer dereference on alloc_skb failure (Vishal Kulkarni) [1725823]
+- [infiniband] iw_cxgb4: Fix qpid leak (Vishal Kulkarni) [1725823]
+- [netdrv] net/mlx5e: Use correct enum to determine uplink port (mohamad meib) [1786113]
+- [netdrv] net/mlx5e: Fix concurrency issues between config flow and XSK (mohamad meib) [1786113]
+- [infiniband] IB/mlx5: Fix steering rule of drop and count (mohamad meib) [1786113]
+- [netdrv] net/mlx5e: ethtool, Fix analysis of speed setting (mohamad meib) [1786113]
+- [netdrv] net/mlx5e: Fix translation of link mode into speed (mohamad meib) [1786113]
+- [netdrv] net/mlx5e: Fix free peer_flow when refcount is 0 (mohamad meib) [1786113]
+- [netdrv] net/mlx5e: Fix freeing flow with kfree() and not kvfree() (mohamad meib) [1786113]
+- [netdrv] net/mlx5e: Fix SFF 8472 eeprom length (mohamad meib) [1786113]
+- [netdrv] net/mlx5e: Query global pause state before setting prio2buffer (mohamad meib) [1786113]
+- [netdrv] net/mlx5e: Fix TXQ indices to be sequential (mohamad meib) [1786113]
+- [infiniband] RDMA/mlx5: Fix a race with mlx5_ib_update_xlt on an implicit MR (mohamad meib) [1786113]
+- [netdrv] ath10k: Fix a NULL-ptr-deref bug in ath10k_usb_alloc_urb_from_pipe (Jarod Wilson) [1783853] {CVE-2019-15099}
+- [netdrv] revert "[netdrv] ice: mark driver as tech-preview" (Jonathan Toppins) [1783062]
+- [netdrv] ibmvnic: Fix typo in retry check (Steve Best) [1783775]
+- [netdrv] ibmveth: Detect unsupported packets before sending to the hypervisor (Steve Best) [1784904]
+- [netdrv] igc: add additional delay during phy hw reset (David Arcari) [1782824]
+- [net] bridge: fix regression in br_mdb_fill_info() (Petr Oros) [1783888]
+- [net] bpf: Emit audit messages upon successful prog load and unload (Jiri Olsa) [1781266]
+- [fs] fuse: fix leak of fuse_io_priv (Miklos Szeredi) [1777009]
+- [fs] virtiofs: Check contents of options string (Vivek Goyal) [1783426]
+- [fs] exec: Fix mem leak in kernel_read_file (Eric Sandeen) [1683731] {CVE-2019-8980}
+- [lib] sbitmap: only queue kyber's wait callback if not already active (Ming Lei) [1784544]
+- [fs] CIFS: Fix NULL-pointer dereference in smb2_push_mandatory_locks (Dave Wysochanski) [1788202]
+- [kernel] ftrace: Check for successful allocation of hash (Desnes Augusto Nunes do Rosario) [1719414]
+- [kernel] ftrace: Check for empty hash and comment the race with registering probes (Desnes Augusto Nunes do Rosario) [1719414]
+- [kernel] ftrace: Fix NULL pointer dereference in t_probe_next() (Desnes Augusto Nunes do Rosario) [1719414]
+- [iommu] vt-d: Allocate reserved region for ISA with correct permission (Jerry Snitselaar) [1778041]
+- [iommu] set group default domain before creating direct mappings (Jerry Snitselaar) [1778041]
+- [iommu] vt-d: Fix dmar pte read access not set error (Jerry Snitselaar) [1778041]
+- [iommu] vt-d: Set ISA bridge reserved region as relaxable (Jerry Snitselaar) [1778041]
+- [iommu] fix KASAN use-after-free in iommu_insert_resv_region (Auger Eric) [1777014]
+- [platform] platform/x86: dell-laptop: fix rfkill functionality (Jarod Wilson) [1725878]
+- [mm] mm/hugetlb: defer freeing of huge pages if in non-task context (Waiman Long) [1780015]
+- [mm] powerpc/book3s64/hash: Use secondary hash for bolted mapping if the primary is full (Steve Best) [1783159]
+- [mm] powerpc/pseries: Don't fail hash page table insert for bolted mapping (Steve Best) [1783159]
+- [powerpc] powerpc/pseries: Don't opencode HPTE_V_BOLTED (Steve Best) [1783159]
+- [powerpc] powerpc/perf: Disable trace_imc pmu (Steve Best) [1785573]
+- [powerpc] powerpc/spinlocks: Include correct header for static key (Phil Auld) [1767529]
+- [powerpc] powerpc/shared: Use static key to detect shared processor (Phil Auld) [1767529]
+- [powerpc] powerpc/vcpu: Assume dedicated processors as non-preempt (Phil Auld) [1767529]
+- [arm64] arm64: compat: Workaround Neoverse-N1 #1542419 for compat user-space (Jeremy Linton) [1757828]
+- [arm64] arm64: Fake the IminLine size on systems affected by Neoverse-N1 #1542419 (Jeremy Linton) [1757828]
+- [arm64] arm64: errata: Hide CTR_EL0.DIC on systems affected by Neoverse-N1 #1542419 (Jeremy Linton) [1757828]
+- [arm64] arm64: Handle erratum 1418040 as a superset of erratum 1188873 (Jeremy Linton) [1757828]
+- [arm64] arm64: errata: Add workaround for Cortex-A76 erratum #1463225 (Jeremy Linton) [1757828]
+- [arm64] arm64: Kconfig: Tidy up errata workaround help text (Jeremy Linton) [1757828]
+- [arm64] arm64: Apply ARM64_ERRATUM_1188873 to Neoverse-N1 (Jeremy Linton) [1757828]
+- [arm64] arm64: Add part number for Neoverse N1 (Jeremy Linton) [1757828]
+- [arm64] arm64: Make ARM64_ERRATUM_1188873 depend on COMPAT (Jeremy Linton) [1757828]
+- [clocksource] arm64: Restrict ARM64_ERRATUM_1188873 mitigation to AArch32 (Jeremy Linton) [1757828]
+- [arm64] arm64: arch_timer: avoid unused function warning (Jeremy Linton) [1757828]
+- [arm64] arm64: Add workaround for Cortex-A76 erratum 1286807 (Jeremy Linton) [1757828]
+
+* Tue Jan 07 2020 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-168.el8]
+- [kernel] audit: remove redundant condition check in kauditd_thread() (Richard Guy Briggs) [1716002]
+- [kernel] audit: Report suspicious O_CREAT usage (Richard Guy Briggs) [1716002]
+- [fs] namei: allow restricted O_CREAT of FIFOs and regular files (Richard Guy Briggs) [1716002]
+- [kernel] audit_get_nd(): don't unlock parent too early (Richard Guy Briggs) [1716002]
+- [fs] namei.c: keep track of nd->root refcount status (Richard Guy Briggs) [1716002]
+- [fs] namei.c: new helper - legitimize_root() (Richard Guy Briggs) [1716002]
+- [kernel] kill the last users of user_{path, lpath, path_dir}() (Richard Guy Briggs) [1716002]
+- [kernel] namei.h: get the comments on LOOKUP_... in sync with reality (Richard Guy Briggs) [1716002]
+- [kernel] kill LOOKUP_NO_EVAL, don't bother including namei.h from audit.h (Richard Guy Briggs) [1716002]
+- [kernel] audit_inode(): switch to passing AUDIT_INODE_.. (Richard Guy Briggs) [1716002]
+- [fs] filename_mountpoint(): make LOOKUP_NO_EVAL unconditional there (Richard Guy Briggs) [1716002]
+- [fs] filename_lookup(): audit_inode() argument is always 0 (Richard Guy Briggs) [1716002]
+- [kernel] audit: remove the BUG() calls in the audit rule comparison functions (Richard Guy Briggs) [1716002]
+- [kernel] audit: enforce op for string fields (Richard Guy Briggs) [1716002]
+- [kernel] audit: deliver signal_info regarless of syscall (Richard Guy Briggs) [1716002]
+- [fs] fsnotify: fix unlink performance regression (Richard Guy Briggs) [1716002]
+- [kernel] audit_compare_dname_path(): switch to const struct qstr * (Richard Guy Briggs) [1716002]
+- [kernel] audit_update_watch(): switch to const struct qstr * (Richard Guy Briggs) [1716002]
+- [fs] inotify_handle_event(): don't bother with strlen() (Richard Guy Briggs) [1716002]
+- [kernel] fsnotify: switch send_to_group() and ->handle_event to const struct qstr * (Richard Guy Briggs) [1716002]
+- [kernel] fsnotify(): switch to passing const struct qstr * for file_name (Richard Guy Briggs) [1716002]
+- [kernel] switch fsnotify_move() to passing const struct qstr * for old_name (Richard Guy Briggs) [1716002]
+- [fs] ovl_lookup_real_one(): don't bother with strlen() (Richard Guy Briggs) [1716002]
+- [kernel] audit: fix a memory leak bug (Richard Guy Briggs) [1716002]
+- [kernel] audit: purge unnecessary list_empty calls (Richard Guy Briggs) [1716002]
+- [security] audit: link integrity evm_write_xattrs record to syscall event (Richard Guy Briggs) [1716002]
+- [csky] syscall_get_arch: add "struct task_struct *" argument (Richard Guy Briggs) [1716002]
+- [kernel] audit: Make audit_log_cap and audit_copy_inode static (Richard Guy Briggs) [1716002]
+- [kernel] audit: connect LOGIN record to its syscall record (Richard Guy Briggs) [1716002]
+- [kernel] audit: fix a memleak caused by auditing load module (Richard Guy Briggs) [1716002]
+- [kernel] fanotify: check FS_ISDIR flag instead of d_is_dir() (Richard Guy Briggs) [1716002]
+- [kernel] fsnotify: report FS_ISDIR flag with MOVE_SELF and DELETE_SELF events (Richard Guy Briggs) [1716002]
+- [kernel] fsnotify: annotate directory entry modification events (Richard Guy Briggs) [1716002]
+- [kernel] audit: mark expected switch fall-through (Richard Guy Briggs) [1716002]
+- [kernel] audit: hide auditsc_get_stamp and audit_serial prototypes (Richard Guy Briggs) [1716002]
+- [tty] audit: join tty records to their syscall (Richard Guy Briggs) [1716002]
+- [kernel] audit: remove audit_context when CONFIG_ AUDIT and not AUDITSYSCALL (Richard Guy Briggs) [1716002]
+- [kernel] audit: remove unused actx param from audit_rule_match (Richard Guy Briggs) [1716002]
+- [kernel] audit: ignore fcaps on umount (Richard Guy Briggs) [1716002]
+- [kernel] audit: clean up AUDITSYSCALL prototypes and stubs (Richard Guy Briggs) [1716002]
+- [kernel] audit: more filter PATH records keyed on filesystem magic (Richard Guy Briggs) [1716002]
+- [kernel] audit: add support for fcaps v3 (Richard Guy Briggs) [1716002]
+- [kernel] audit: move loginuid and sessionid from CONFIG_AUDITSYSCALL to CONFIG_AUDIT (Richard Guy Briggs) [1716002]
+- [kernel] audit: add syscall information to CONFIG_CHANGE records (Richard Guy Briggs) [1716002]
+- [kernel] audit: hand taken context to audit_kill_trees for syscall logging (Richard Guy Briggs) [1716002]
+- [kernel] audit: give a clue what CONFIG_CHANGE op was involved (Richard Guy Briggs) [1716002]
+- [kernel] audit: remove duplicated include from audit.c (Richard Guy Briggs) [1716002]
+- [kernel] audit: shorten PATH cap values when zero (Richard Guy Briggs) [1716002]
+- [kernel] audit: use current whenever possible (Richard Guy Briggs) [1716002]
+- [kernel] audit: minimize our use of audit_log_format() (Richard Guy Briggs) [1716002]
+- [kernel] audit: remove WATCH and TREE config options (Richard Guy Briggs) [1716002]
+- [kernel] audit: use session_info helper (Richard Guy Briggs) [1716002]
+- [kernel] audit: localize audit_log_session_info prototype (Richard Guy Briggs) [1716002]
+- [kernel] audit: Use 'mark' name for fsnotify_mark variables (Richard Guy Briggs) [1716002]
+- [kernel] audit: Replace chunk attached to mark instead of replacing mark (Richard Guy Briggs) [1716002]
+- [kernel] audit: Simplify locking around untag_chunk() (Richard Guy Briggs) [1716002]
+- [kernel] audit: Drop all unused chunk nodes during deletion (Richard Guy Briggs) [1716002]
+- [kernel] audit: Guarantee forward progress of chunk untagging (Richard Guy Briggs) [1716002]
+- [kernel] audit: Allocate fsnotify mark independently of chunk (Richard Guy Briggs) [1716002]
+- [kernel] audit: Provide helper for dropping mark's chunk reference (Richard Guy Briggs) [1716002]
+- [kernel] audit: Remove pointless check in insert_hash() (Richard Guy Briggs) [1716002]
+- [kernel] audit: Factor out chunk replacement code (Richard Guy Briggs) [1716002]
+- [kernel] audit: Make hash table insertion safe against concurrent lookups (Richard Guy Briggs) [1716002]
+- [kernel] audit: Embed key into chunk (Richard Guy Briggs) [1716002]
+- [kernel] audit: Fix possible tagging failures (Richard Guy Briggs) [1716002]
+- [kernel] audit: Fix possible spurious -ENOSPC error (Richard Guy Briggs) [1716002]
+- [kernel] audit_tree: Remove mark->lock locking (Richard Guy Briggs) [1716002]
+- [kernel] audit: print empty EXECVE args (Richard Guy Briggs) [1716002]
+- [security] evm: fix return value check in evm_write_xattrs() (Richard Guy Briggs) [1716002]
+- [kernel] audit: fix use-after-free in audit_add_watch (Richard Guy Briggs) [1716002]
+- [kernel] audit: use ktime_get_coarse_real_ts64() for timestamps (Richard Guy Briggs) [1716002]
+- [kernel] audit: use ktime_get_coarse_ts64() for time access (Richard Guy Briggs) [1716002]
+- [kernel] audit: simplify audit_enabled check in audit_watch_log_rule_change() (Richard Guy Briggs) [1716002]
+- [kernel] audit: check audit_enabled in audit_tree_log_remove_rule() (Richard Guy Briggs) [1716002]
+- [kernel] cred: conditionally declare groups-related functions (Richard Guy Briggs) [1716002]
+- [kernel] audit: eliminate audit_enabled magic number comparison (Richard Guy Briggs) [1716002]
+- [kernel] audit: Fix extended comparison of GID/EGID (Richard Guy Briggs) [1716002]
+- [kernel] audit: tie ANOM_ABEND records to syscall (Richard Guy Briggs) [1716002]
+- [kernel] audit: tie SECCOMP records to syscall (Richard Guy Briggs) [1716002]
+- [kernel] audit: allow other filter list types for AUDIT_EXE (Richard Guy Briggs) [1716002]
+- [documentation] admin guide/pm: Admin guide for intel-speed-select (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Display TRL buckets for just base config level (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Ignore missing config level (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Increment version (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Use core count for base-freq mask (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Support platform with limited Intel(R) Speed Select (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Use Frequency weight for CLOS (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Make CLOS frequency in MHz (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Use mailbox for CLOS_PM_QOS_CONFIG (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Auto mode for CLX (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Correct CLX-N frequency units (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Change display of "avx" to "avx2" (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Extend command set for perf-profile (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Implement base-freq commands on CascadeLake-N (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Implement 'perf-profile info' on CascadeLake-N (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Implement CascadeLake-N help and command functions structures (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Add check for CascadeLake-N models (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Make process_command generic (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Add int argument to command functions (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Refuse to disable core-power when getting used (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Turbo-freq feature auto mode (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Base-freq feature auto mode (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Remove warning for unused result (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Fix perf-profile command output (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Extend core-power command set (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Fix some debug prints (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Format get-assoc information (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Allow online/offline based on tdp (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Fix high priority core mask over count (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Display core count for bucket (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Allow additional TRL MSRs (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Fix memory leak (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Output success/failed for command output (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Output human readable CPU list (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Change turbo ratio output to maximum turbo frequency (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Switch output to MHz (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Simplify output for turbo-freq and base-freq (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Fix cpu-count output (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Fix help option typo (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Fix package typo (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Fix a read overflow in isst_set_tdp_level_msr() (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Use dev_get_drvdata (Prarit Bhargava) [1766228]
+- [tools] power/x86/intel-speed-select: Add .gitignore file (Prarit Bhargava) [1766228]
+- [tools] tools/power/x86: A tool to validate Intel Speed Select commands (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Restore state on resume (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Add Intel Speed Select PUNIT MSR interface (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Add Intel Speed Select mailbox interface via MSRs (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Add Intel Speed Select mailbox interface via PCI (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Add Intel Speed Select mmio interface (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Add IOCTL to Translate Linux logical CPU to PUNIT CPU number (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Store per CPU information (Prarit Bhargava) [1766228]
+- [platform] x86: isst: Add common API to register and handle ioctls (Prarit Bhargava) [1766228]
+- [documentation] platform/x86: isst: Update ioctl-number.txt for Intel Speed Select interface (Prarit Bhargava) [1766228]
+
+* Sat Dec 14 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-167.el8]
+- [tools] libbpf: Refactor relocation handling (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Fix call relocation offset calculation bug (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Fix bpf_object name determination for bpf_object__open_file() (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: return previous print callback from libbpf_set_print (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: fix bpf_object__name() to actually return object name (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: Make CO-RE reloc test impartial to test_progs flavor (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: Add BPF_CORE_READ and BPF_CORE_READ_STR_INTO macro tests (Yauheni Kaliuta) [1772081]
+- [tools] bpftool: Allow to read btf as raw data (Yauheni Kaliuta) [1772081]
+- [tools] bpftool: implement "bpftool btf show|list" (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: add bpf_btf_get_next_id() to cycle through BTF objects (Jiri Olsa) [1772081]
+- [tools] libbpf: refactor bpf_*_get_next_id() functions (Yauheni Kaliuta) [1772081]
+- [tools] bpf: synchronise BPF UAPI header with tools (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: attempt to load kernel BTF from sysfs first (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Add getter for program size (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Add bpf_get_link_xdp_info() function to get more XDP information (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Use pr_warn() when printing netlink errors (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Propagate EPERM to caller on program load (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Unpin auto-pinned maps if loading fails (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Add auto-pinning of maps when loading BPF objects (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Teach bpf_object__open to guess program types (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Add bpf_program__get_{type, expected_attach_type) APIs (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Move directory creation into _pin() functions (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Store map pin path and status in struct bpf_map (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Fix error handling in bpf_map__reuse_fd() (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Make DECLARE_LIBBPF_OPTS macro strictly a variable declaration (Yauheni Kaliuta) [1772081]
+- [tools] bpftool: Fix bpftool build by switching to bpf_object__open_file() (Yauheni Kaliuta) [1772081]
+- [tools] bpf: Rename pr_warning to pr_warn to align with kernel logging (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: provide more helpful message on uninitialized global var (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: Add field existence CO-RE relocs tests (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Add support for field existance CO-RE relocation (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Update BTF reloc support to latest Clang format (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Add BPF_CORE_READ/BPF_CORE_READ_INTO helpers (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Refactor bpf_object__open APIs to use common opts (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Move bpf_{helpers, helper_defs, endian, tracing}.h into libbpf (Jiri Olsa) [1772081]
+- [tools] uapi/bpf: fix helper docs (Yauheni Kaliuta) [1772081]
+- [tools] bpf: sync bpf.h to tools/ (Yauheni Kaliuta) [1772081]
+- [uapi] bpf: fix 'struct pt_reg' typo in documentation (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: Fix BTF-defined map's __type macro handling of arrays (Yauheni Kaliuta) [1772081]
+- [scripts] bpf: Print an error when known types list needs updating (Yauheni Kaliuta) [1772081]
+- [scripts] bpf: Emit an #error directive known types list needs updating (Yauheni Kaliuta) [1772081]
+- [scripts] bpf: Fix xdp_md forward declaration typo (Yauheni Kaliuta) [1772081]
+- [scripts] bpf: teach bpf_helpers_doc.py to dump BPF helper definitions (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: Split off tracing-only helpers into bpf_tracing.h (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: samples/bpf: Split off legacy stuff from bpf_helpers.h (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: Undo GCC-specific bpf_helpers.h changes (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: auto-generate list of BPF helper definitions (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add bpf-gcc support (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: bpf_tcp_gen_syncookie->bpf_helpers (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: relicense bpf_helpers.h and bpf_endian.h (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: introduce bpf_cpu_to_be64 and bpf_be64_to_cpu (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: Adjust CO-RE reloc tests for new bpf_core_read() macro (Yauheni Kaliuta) [1772081]
+- [tools] bpf: fix core_reloc.c compilation error (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: add bpf_object__open_{file, mem} w/ extensible opts (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: make libbpf.map source of truth for libbpf version (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: stop enforcing kern_version, populate it for users (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs misc tests (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs ints tests (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs ptr-as-array tests (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs modifiers/typedef tests (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs enum/ptr/func_proto tests (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs array tests (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs nesting tests (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs struct flavors tests (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add CO-RE relocs testing setup (Yauheni Kaliuta) [1772081]
+- [tools] selftests/bpf: add BPF_CORE_READ relocatable read macro (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: implement BPF CO-RE offset relocation algorithm (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: add .BTF.ext offset relocation section loading (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: convert libbpf code to use new btf helpers (Yauheni Kaliuta) [1772081]
+- [tools] libbpf: add helpers for working with BTF types (Yauheni Kaliuta) [1772081]
+- [gpu] drm/i915: Add new CNL PCH ID seen on a CML platform (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: add warning for GRBM 1-cycle delay issue in gfx9 (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: register gpu instance before fan boost feature enablment (Lyude Paul) [1771779]
+- [gpu] drm/amd/swsmu: fix smu workload bit map error (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: dont schedule jobs while in reset (Lyude Paul) [1771779]
+- [gpu] drm/i915/userptr: Try to acquire the page lock around set_page_dirty() (Lyude Paul) [1771779]
+- [gpu] drm/i915/pmu: "Frequency" is reported as accumulated cycles (Lyude Paul) [1771779]
+- [gpu] drm/i915: Don't oops in dumb_create ioctl if we have no crtcs (Lyude Paul) [1771779]
+- [gpu] drm/amd/powerplay: issue no PPSMC_MSG_GetCurrPkgPwr on unsupported ASICs (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: disable gfxoff on original raven (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: disable gfxoff when using register read interface (Lyude Paul) [1771779]
+- [gpu] revert "drm/i915/ehl: Update MOCS table for EHL" (Lyude Paul) [1771779]
+- [gpu] drm/i915: update rawclk also on resume (Lyude Paul) [1771779]
+- [gpu] dc.c:use kzalloc without test (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Passive DP->HDMI dongle detection fix (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: add 50us buffer as WA for pstate switch in active (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: do not synchronize "drr" displays (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: If amdgpu_ib_schedule fails return back the error (Lyude Paul) [1771779]
+- [gpu] drm/sched: Set error to s_fence if HW job submission failed (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/sdma5: do not execute 0-sized IBs (v2) (Lyude Paul) [1771779]
+- [gpu] drm/radeon: fix si_enable_smc_cac() failed issue (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: fix error handling in amdgpu_bo_list_create (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: fix potential VM faults (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: Fix SDMA hang when performing VKexample test (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/powerplay/vega10: allow undervolting in p7 (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/gfx10: update gfx golden settings (Lyude Paul) [1771779]
+- [gpu] drm/i915: Fix PCH reference clock for FDI on HSW/BDW (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/gmc10: properly set BANK_SELECT and FRAGMENT_SIZE (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: fix memory leak (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: user pages array memory leak fix (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/uvd7: fix allocation size in enc ring test (v2) (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/uvd6: fix allocation size in enc ring test (v2) (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/vcn: fix allocation size in enc ring test (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/vce: fix allocation size in enc ring test (Lyude Paul) [1771779]
+- [gpu] drm/i915: Favor last VBT child device with conflicting AUX ch/DDC pin (Lyude Paul) [1771779]
+- [gpu] drm/i915/userptr: Never allow userptr into the mappable GGTT (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/sdma5: fix mask value of POLL_REGMEM packet for pipe sync (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: Bail earlier when amdgpu.cik_/si_support is not set to 1 (Lyude Paul) [1771779]
+- [gpu] drm/ttm: Restore ttm prefaulting (Lyude Paul) [1771779]
+- [gpu] drm/edid: Add 6 bpc quirk for SDC panel in Lenovo G50 (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: memory leak (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: fix multiple memory leaks in acp_hw_init (Lyude Paul) [1771779]
+- [gpu] drm: Clear the fence pointer when writeback job signaled (Lyude Paul) [1771779]
+- [gpu] drm: Free the writeback_job when it with an empty fb (Lyude Paul) [1771779]
+- [gpu] drm/i915: Mark contents as dirty on a write fault (Lyude Paul) [1771779]
+- [gpu] drm/i915: Whitelist COMMON_SLICE_CHICKEN2 (Lyude Paul) [1771779]
+- [gpu] drm/i915: Bump skl+ max plane width to 5k for linear/x-tiled (Lyude Paul) [1771779]
+- [gpu] drm/i915: Perform GGTT restore much earlier during resume (Lyude Paul) [1771779]
+- [gpu] drm/radeon: Bail earlier when radeon.cik_/si_support=0 is passed (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: Check for valid number of registers to read (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: Fix KFD-related kernel oops on Hawaii (Lyude Paul) [1771779]
+- [gpu] drm/i915: to make vgpu ppgtt notificaiton as atomic operation (Lyude Paul) [1771779]
+- [gpu] drm/i915/gvt: update vgpu workload head pointer correctly (Lyude Paul) [1771779]
+- [gpu] drm/amd/powerplay: change metrics update period from 1ms to 100ms (Lyude Paul) [1771779]
+- [gpu] drm/nouveau/kms/nv50-: Don't create MSTMs for eDP connectors (Lyude Paul) [1771779]
+- [gpu] drm/atomic: Take the atomic toys away from X (Lyude Paul) [1771779]
+- [gpu] drm/atomic: Reject FLIP_ASYNC unconditionally (Lyude Paul) [1771779]
+- [gpu] drm/i915/dp: Fix dsc bpp calculations, v5 (Lyude Paul) [1771779]
+- [dma-buf] sw_sync: Synchronize signal vs syncpt free (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/si: fix ASIC tests (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: fix trigger not generated for freesync (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: fix MPO HUBP underflow with Scatter Gather (Lyude Paul) [1771779]
+- [gpu] drm/amd/powerpaly: fix navi series custom peak level value error (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: support spdif (Lyude Paul) [1771779]
+- [gpu] drm/nouveau/volt: Fix for some cards having 0 maximum voltage (Lyude Paul) [1771779]
+- [gpu] drm/nouveau/kms/tu102-: disable input lut when input is already FP16 (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/sdma5: fix number of sdma5 trap irq types for navi1x (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Register VUPDATE_NO_LOCK interrupts for DCN2 (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: reprogram VM config when system resume (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Fix frames_to_insert math (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: fix issue where 252-255 values are clipped (Lyude Paul) [1771779]
+- [gpu] drm: radeon: Fix a possible null-pointer dereference in radeon_connector_set_property() (Lyude Paul) [1771779]
+- [gpu] revert "drm/radeon: Fix EEH during kexec" (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Use proper enum conversion functions (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu: Fix hard hang for S/G display BOs (Lyude Paul) [1771779]
+- [gpu] drm/panel: check failure cases in the probe func (Lyude Paul) [1771779]
+- [gpu] drm/bridge: sii902x: fix missing reference to mclk clock (Lyude Paul) [1771779]
+- [gpu] drm/tinydrm/kconfig: Select BACKLIGHT_CLASS_DEVICE (Lyude Paul) [1771779]
+- [video] ssd1307fb: Start page range at page_offset (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Copy GSL groups when committing a new context (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Clear FEC_READY shadow register if DPCD write fails (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: fix not calling ppsmu to trigger PME (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Power-gate all DSCs at driver init time (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: add monitor patch to add T7 delay (Lyude Paul) [1771779]
+- [gpu] drm/panel: simple: fix AUO g185han01 horizontal blanking (Lyude Paul) [1771779]
+- [gpu] drm/vkms: Avoid assigning 0 for possible_crtc (Lyude Paul) [1771779]
+- [gpu] drm/bridge: tc358767: Increase AUX transfer length limit (Lyude Paul) [1771779]
+- [gpu] drm/vkms: Fix crc worker races (Lyude Paul) [1771779]
+- [gpu] drm/amdgpu/display: fix 64 bit divide (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Add missing HBM support and raise Vega20's uclk (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: dce11.x /dce12 update formula input (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Restore backlight brightness after system resume (Lyude Paul) [1771779]
+- [gpu] drm: fix module name in edid_firmware log message (Lyude Paul) [1771779]
+- [gpu] drm/amd/powerplay/smu7: enforce minimal VBITimeout (v2) (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: readd -msse2 to prevent Clang from emitting libcalls to undefined SW FP routines (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Don't replace the dc_state for fast updates (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Skip determining update type for async updates (Lyude Paul) [1771779]
+- [gpu] drm/amd/display: Allow cursor async updates for framebuffer swaps (Lyude Paul) [1771779]
+- [include] sk_buff: fix skb_ext_put() and skb_ext_reset() calls (Ivan Vecera) [1779923]
+- [net] openvswitch: fix flow command message size (Paolo Abeni) [1776765]
+- [net] netfilter: nf_tables: add SECMARK support (Phil Sutter) [1715851]
+- [net] netfilter: nf_tables: add requirements for connsecmark support (Phil Sutter) [1715851]
+- [wireless] mwifiex: pcie: Fix memory leak in mwifiex_pcie_init_evt_ring (Jarod Wilson) [1781534] {CVE-2019-19057}
+- [tools] selftests/powerpc: Disable basic EEH selftest (Steve Best) [1782232]
+- [x86] kvm: x86: Remove a spurious export of a static function (Paolo Bonzini) [1779553] {CVE-2019-19338}
+- [x86] kvm: vmx: use MSR_IA32_TSX_CTRL to hard-disable TSX on guest that lack it (Paolo Bonzini) [1779553] {CVE-2019-19338}
+- [x86] kvm: vmx: implement MSR_IA32_TSX_CTRL disable RTM functionality (Paolo Bonzini) [1779553] {CVE-2019-19338}
+- [x86] kvm: x86: implement MSR_IA32_TSX_CTRL effect on CPUID (Paolo Bonzini) [1779553] {CVE-2019-19338}
+- [x86] kvm: x86: do not modify masked bits of shared MSRs (Paolo Bonzini) [1779553] {CVE-2019-19338}
+- [x86] kvm: x86: fix presentation of TSX feature in ARCH_CAPABILITIES (Paolo Bonzini) [1779553] {CVE-2019-19338}
+- [x86] kvm/x86: Export MDS_NO=0 to guests when TSX is enabled (Paolo Bonzini) [1779553] {CVE-2019-19338}
+- [fs] cifs: Close open handle after interrupted close (Leif Sahlberg) [1771691]
+- [fs] cifs: Do not miss cancelled OPEN responses (Leif Sahlberg) [1771691]
+- [fs] cifs: Fix NULL pointer dereference in mid callback (Leif Sahlberg) [1771691]
+- [fs] cifs: add a debug macro that prints \\server\share for errors (Leif Sahlberg) [1772630]
+- [fs] cifs: add new debugging macro cifs_server_dbg (Leif Sahlberg) [1772630]
+
+* Sat Dec 14 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-166.el8]
+- [netdrv] wireless: fix nl80211 vendor commands (Jarod Wilson) [1776606]
+- [net] nl80211: fix VENDOR_CMD_RAW_DATA (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: initialize last_reset (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: don't consider IV len in A-MSDU (Jarod Wilson) [1776606]
+- [net] mac80211: fix station inactive_time shortly after boot (Jarod Wilson) [1776606]
+- [net] mac80211: fix ieee80211_txq_setup_flows() failure path (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fw api: support new API for scan config cmd (Jarod Wilson) [1776606]
+- [netdrv] mt76: dma: fix buffer unmap with non-linear skbs (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x2e: disable pcie_aspm by default (Jarod Wilson) [1776606]
+- [net] nl80211: fix validation of mesh path nexthop (Jarod Wilson) [1776606]
+- [net] nl80211: Disallow setting of HT for channel 14 (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl_pci: Fix problem of too small skb->len (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: 0x2720 is qu and 0x30DC is not (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: add workaround for power gating in integrated 22000 (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: handle iwl_mvm_tvqm_enable_txq() error return (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: fix all 9460 entries for qnj (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: fix PCI ID 0x2720 configs that should be soc (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: Fix potential overflow on P2P code (Jarod Wilson) [1775223 1776606] {CVE-2019-17666}
+- [netdrv] iwlwifi: pcie: fix merge damage on making QnJ exclusive (Jarod Wilson) [1776606]
+- [netdrv] ath10k: fix latency issue for QCA988x (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: change qu with jf devices to use qu configuration (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: exclude GEO SAR support for 3168 (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: fix memory leaks in iwl_pcie_ctxt_info_gen3_init (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: fix memory leak in alloc_sgtable (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: fix rb_allocator workqueue allocation (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: fix indexing in command dump for new HW (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix race in sync rx queue notification (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: force single phy init (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fix ACPI table revision checks (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: don't access trans_cfg via cfg (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: remove input-polldev.h header (Jarod Wilson) [1776606]
+- [net] mac80211: Don't access sk_queue_head->next directly (Jarod Wilson) [1776606]
+- [net] mac80211: fix scan when operating on DFS channels in ETSI domains (Jarod Wilson) [1776606]
+- [net] mac80211: accept deauth frames in IBSS mode (Jarod Wilson) [1776606]
+- [net] cfg80211: fix a bunch of RCU issues in multi-bssid code (Jarod Wilson) [1776606]
+- [net] nl80211: fix memory leak in nl80211_get_ftm_responder_stats (Jarod Wilson) [1776606]
+- [net] cfg80211: wext: avoid copying malformed SSIDs (Jarod Wilson) [1778634 1776606] {CVE-2019-17133}
+- [net] mac80211: Reject malformed SSID elements (Jarod Wilson) [1776606]
+- [net] mac80211: keep BHs disabled while calling drv_tx_wake_queue() (Jarod Wilson) [1776606]
+- [net] mac80211: fix txq null pointer dereference (Jarod Wilson) [1776606]
+- [net] nl80211: fix null pointer dereference (Jarod Wilson) [1776606]
+- [net] cfg80211: initialize on-stack chandefs (Jarod Wilson) [1776606]
+- [net] cfg80211: validate SSID/MBSSID element ordering assumption (Jarod Wilson) [1776606]
+- [net] nl80211: validate beacon head (Jarod Wilson) [1776606]
+- [net] cfg80211: Purge frame registrations on iftype change (Jarod Wilson) [1776606]
+- [net] cfg80211: Do not compare with boolean in nl80211_common_reg_change_event (Jarod Wilson) [1776606]
+- [net] cfg80211: always shut down on HW rfkill (Jarod Wilson) [1776606]
+- [net] cfg80211: fix boundary value in ieee80211_frequency_to_channel() (Jarod Wilson) [1776606]
+- [net] cfg80211: add local BSS receive time to survey information (Jarod Wilson) [1776606]
+- [net] nl80211: add NL80211_CMD_UPDATE_FT_IES to supported commands (Jarod Wilson) [1776606]
+- [netdrv] wireless: Fix Kconfig indentation (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fw: don't send GEO_TX_POWER_LIMIT command to FW version 36 (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix mt7615 firmware path definitions (Jarod Wilson) [1776606]
+- [netdrv] rtw88: configure firmware after HCI started (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: release tx skbs DMAed when stop (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: extract skbs free routine for trx rings (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix build w/o CONFIG_THERMAL (Jarod Wilson) [1776606]
+- [netdrv] rtw88: report RX power for each antenna (Jarod Wilson) [1776606]
+- [netdrv] rtw88: fix wrong rx power calculation (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192de: replace _rtl92d_evm_db_to_percentage with generic version (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192cu: replace _rtl92c_evm_db_to_percentage with generic version (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ce: replace _rtl92c_evm_db_to_percentage with generic version (Jarod Wilson) [1776606]
+- [netdrv] rtw88: allows to receive AMSDU in AMPDU (Jarod Wilson) [1776606]
+- [netdrv] rtw88: add dynamic cck pd mechanism (Jarod Wilson) [1776606]
+- [netdrv] rtw88: move IQK/DPK into phy_calibration (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: add SW DPK support (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: add FW IQK support (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: Enable interrupt migration (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: update pwr_seq to v13 (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: update PHY parameter to v38 (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8188ee: rtl8192ce: rtl8192de: rtl8723ae: rtl8821ae: Remove some unused bit manipulation macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8723be: Convert inline routines to little-endian words (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8723be: Convert macros that set descriptor (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8723be: Replace local bit manipulation macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8723be: Remove unused SET_XXX and GET_XXX macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8723ae: Convert inline routines to little-endian words (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8723ae: Convert macros that set descriptor (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8723ae: Replace local bit manipulation macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8723ae: Remove unused GET_XXX and SET_XXX macros (Jarod Wilson) [1776606]
+- [netdrv] brcmsmac: Use DIV_ROUND_CLOSEST directly to make it readable (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8821ae: make array static const and remove redundant assignment (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: don't realloc wiphy during PCIe reset (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: split brcmf_attach() and brcmf_detach() functions (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: move "cfg80211_ops" pointer to another struct (Jarod Wilson) [1776606]
+- [netdrv] ath10k: fix channel info parsing for non tlv target (Jarod Wilson) [1776606]
+- [netdrv] ath10k: adjust skb length in ath10k_sdio_mbox_rx_packet (Jarod Wilson) [1776606]
+- [netdrv] ath10k: free beacon buf later in vdev teardown (Jarod Wilson) [1776606]
+- [net] mac80211: allow drivers to set max MTU (Jarod Wilson) [1776606]
+- [net] mac80211: ibss: send deauth when expiring inactive STAs (Jarod Wilson) [1776606]
+- [net] mac80211: don't check if key is NULL in ieee80211_key_link() (Jarod Wilson) [1776606]
+- [net] mac80211: clear crypto tx tailroom counter upon keys enable (Jarod Wilson) [1776606]
+- [net] mac80211: remove unnecessary key condition (Jarod Wilson) [1776606]
+- [net] mac80211: list features in WEP/TKIP disable in better order (Jarod Wilson) [1776606]
+- [net] mac80211: vht: add support VHT EXT NSS BW in parsing VHT (Jarod Wilson) [1776606]
+- [netdrv] ath9k: release allocated buffer if timed out (Jarod Wilson) [1778582 1776606] {CVE-2019-19074}
+- [netdrv] ath9k_htc: release allocated buffer if timed out (Jarod Wilson) [1778572 1776606] {CVE-2019-19073}
+- [netdrv] ath9k: Remove unneeded variable to store return value (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add reorder and change PN check logic for mac80211 (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add mic bytes for pmf management packet (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: use *ph to print small buffer (Jarod Wilson) [1776606]
+- [netdrv] hostap: use *ph to print small buffer (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: Fix file release memory leak (Jarod Wilson) [1776606]
+- [netdrv] rtw88: fix seq_file memory leak (Jarod Wilson) [1776606]
+- [netdrv] hostap: remove set but not used variable 'copied' in prism2_io_debug_proc_read (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: add "reset" debugfs entry for testing reset (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: add stub version of brcmf_debugfs_get_devdir() (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: remove iwl_fw_cancel_dumps function (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: remove periodic trigger (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: fix dump structs doc (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fw api: add DRAM buffer allocation command (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: remove apply point, switch to time point API (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add iwl_tlv_array_len() (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: don't log un-decrypted frames (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: add support for single antenna diversity (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: handle BAR_FRAME_RELEASE (0xc2) notification (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: drop BA sessions on too many old-SN frames (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add sta_id to WOWLAN_CONFIG_CMD (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add support for suspend-resume flow for new device generation (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fix warning iwl-trans.h is included more than once (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: always access the trans configuration via trans (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pass the iwl_trans instead of cfg to some functions (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add a pointer to the trans_cfg directly in trans (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pass the iwl_config_trans_params when needed (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: set iwl_trans->cfg later in the probe function (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: move some cfg mangling from trans_pcie_alloc to probe (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: use the cfg we passed to iwl_trans_pcie_alloc() (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: separate elements from cfg that are needed by trans_alloc (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: use regions ops array instead of switch case in dump flow (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: make a single ops struct for paging collect (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: move tx fifo data into fw runtime (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: use linked list for dump TLVs during dump creation (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: separate cfg and dump flows to different modules (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: look for the first supported channel when add/remove phy ctxt (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: allocate bigger nvm data in case of UHB (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove unnecessary IWL_DEVICE_AX200_COMMON definition (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: align wrt log prints to the same format (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: remove debug flow TLV (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: verify debug TLVs at allocation phase (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: use function to check if ini dbg mode is on (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove duplicate FW string definitions (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: bump FW API to 50 for 22000 series (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: api: fix FTM struct documentation (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: support per-platform antenna gain (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove check for lq_sta in __iwl_mvm_rs_tx_status() (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: simplify the channel switch flow for newer firmware (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: stop passing bogus gfp flags arguments to dma_alloc_coherent (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: remove periphery phy and aux regions handling (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: use linked list to store debug TLVs (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: maintain buffer allocations from trans instead of TLVs buffer (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: add debug periphery registers to 9000 device family (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove unused regdb_ptrs allocation (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: align dbg tlv functions names to a single format (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: scan: don't pass large argument by value (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove pm_runtime completely (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove the d0i3 related module parameters (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: remove some more d0i3 code from the transport (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: remove the refs / unrefs from the transport (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove the opmode's d0i3 handlers (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove runtime_pm_mode (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: Set w-pointer upon resume according to SN (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: use FW thermal monitoring regardless of CONFIG_THERMAL (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: name magic numbers with enum (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: scan: add support for new scan request command version (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: LTR updates (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove the code under IWLWIFI_PCIE_RTPM (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: trans: remove suspending flag (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove CMD_HIGH_PRIO (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove last leftovers of d0i3 (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove iwl_mvm_update_d0i3_power_mode (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove d0i3_ap_sta_id (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: iwl_mvm_wowlan_config_key_params is for wowlan only (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove the d0i3 entry/exit flow (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove the tx defer for d0i3 (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove all the d0i3 references (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: start to remove the code for d0i3 (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: add the skb length to a print (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix scan config command size (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add ldbg config cmd debug print (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: support debug recording suspend resume command (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: move debug recording stop from trans to op mode (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: move monitor recording functionality from header file (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove unnecessary forward declarations (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: Block 26-tone RU OFDMA transmissions (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove redundant condition in iwl_mvm_set_hw_rfkill_state (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: Send DQA enable command only if TVL is on (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: bump FW API to 49 for 22000 series (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add support to read temperature from mcu (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: introduce mt7615_txwi_to_txp utility routine (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: use devm_platform_ioremap_resource() to simplify code (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x0: remove unneeded return value on set channel (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x0: remove redundant chandef copy (Jarod Wilson) [1776606]
+- [netdrv] mt76: make mt76_rx_convert static (Jarod Wilson) [1776606]
+- [netdrv] mt76: remove offchannel check in tx scheduling (Jarod Wilson) [1776606]
+- [netdrv] mt76: do not send BAR frame on tx aggregation flush stop (Jarod Wilson) [1776606]
+- [netdrv] mt76: stop rx aggregation on station removal (Jarod Wilson) [1776606]
+- [netdrv] mt76: dma: reset q->rx_head on rx reset (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: apply calibration-free data from OTP (Jarod Wilson) [1776606]
+- [netdrv] mt76: add default implementation for mt76_sw_scan/mt76_sw_scan_complete (Jarod Wilson) [1776606]
+- [netdrv] mt76: fix some checkpatch warnings (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add BIP_CMAC_128 cipher support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: remove unnecessary mcu queue initialization (Jarod Wilson) [1776606]
+- [netdrv] mt76: move mt76_tx_tasklet in mt76 module (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: enable survey support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: move survey_time in mt76_dev (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02u: enable survey support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02u: enable multi-vif support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: do not copy beacon skb in mt76x02_mac_set_beacon_enable (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: introduce mt76x02_pre_tbtt_enable and mt76x02_beacon_enable macros (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add Smart Carrier Sense support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: rework locking scheme for mt7615_set_channel (Jarod Wilson) [1776606]
+- [netdrv] mt76: switch to SPDX tag instead of verbose boilerplate text (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: fix some checkpatch warnings (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix some checkpatch warnings (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix some checkpatch warnings (Jarod Wilson) [1776606]
+- [netdrv] mt76: Add paragraphs to describe the config symbols fully (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: update cw_min/max related settings (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add 4 WMM sets support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix watchdog rescheduling in mt7603_set_channel (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix MT7615_WATCHDOG_TIME definition (Jarod Wilson) [1776606]
+- [netdrv] mt76: introduce mt76_mmio_read_copy routine (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add set_key_cmd and mt76_wcid to mt7615_mac_wtbl_set_key signature (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: remove wtbl_sec_key definition (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: introduce mt7615_mac_wtbl_set_key routine (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add mt7615_mac_wtbl_addr routine (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: move mt7615_mac_get_key_info in mac.c (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add missing register initialization (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x0u: add support to TP-Link T2UHP (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: use params->ssn value directly (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: use params->ssn value directly (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: use params->ssn value directly (Jarod Wilson) [1776606]
+- [netdrv] mt76: usb: remove unneeded {put,get}_unaligned (Jarod Wilson) [1776606]
+- [netdrv] mt76: usb: fix endian in mt76u_copy (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix invalid fallback rates (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix invalid fallback rates (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix PS buffering of action frames (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix using VHT STBC rates (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76u: fix typo in mt76u_fill_rx_sg (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: sync with mt7603 rate control changes (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: reset rate index/counters on rate table update (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: move mt7615_mcu_set_rates to mac.c (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: enable hardware rate up/down selection (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: introduce mt7615_mcu_send_ram_firmware routine (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: always release sem in mt7615_load_patch (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fall back to sw encryption for unsupported ciphers (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: clean up FWDL TXQ during/after firmware upload (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add radar pattern test knob to debugfs (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add csa support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: do not perform txcalibration before cac is complited (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add hw dfs pattern detector support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: introduce mt7615_regd_notifier (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix sparse warnings: warning: restricted __le16 degrades to integer (Jarod Wilson) [1776606]
+- [netdrv] mt76: round up length on mt76_wr_copy (Jarod Wilson) [1776606]
+- [netdrv] ath6kl: fix a NULL-ptr-deref bug in ath6kl_usb_alloc_urb_from_pipe() (Jarod Wilson) [1776606]
+- [netdrv] ath6kl: Fix a possible null-pointer dereference in ath6kl_htc_mbox_create() (Jarod Wilson) [1776606]
+- [netdrv] ath9k: dynack: set ackto to max timeout in ath_dynack_reset (Jarod Wilson) [1776606]
+- [netdrv] ath9k: dynack: set max timeout according to channel width (Jarod Wilson) [1776606]
+- [netdrv] ath9k: dynack: properly set last timeout timestamp in ath_dynack_reset (Jarod Wilson) [1776606]
+- [netdrv] ath9k: dyanck: introduce ath_dynack_set_timeout routine (Jarod Wilson) [1776606]
+- [netdrv] ath9k: dynack: fix possible deadlock in ath_dynack_node_{de}init (Jarod Wilson) [1776606]
+- [netdrv] ath9k: add loader for AR92XX (and older) pci(e) (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: get chip's default RAM info during PCIe setup (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: replace strncpy() by strscpy() (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: do not set IEEE80211_TX_STAT_AMPDU_NO_BACK on tx status (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: remove redundant assignment to pointer hash (Jarod Wilson) [1776606]
+- [netdrv] brcm80211: Avoid possible null-pointer dereferences in wlc_phy_radio_init_2056() (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: enable MSI interrupt (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: Move a mass of jobs in hw IRQ to soft IRQ (Jarod Wilson) [1776606]
+- [netdrv] rtw88: remove redundant assignment to pointer debugfs_topdir (Jarod Wilson) [1776606]
+- [netdrv] rtw88: drop unused rtw_coex_coex_dm_reset() (Jarod Wilson) [1776606]
+- [netdrv] rtw88: Fix an error message (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ce: Fix incorrect returned values (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8188ee: Fix incorrect returned values (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8821ae: Fix incorrect returned values (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192cu: Convert inline routines to little-endian words (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192cu: Convert macros that set descriptor (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192cu: Replace local bit manipulation macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192cu: Remove unused GET_XXX and SET_XXX (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ee: Remove some variable initializations (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ee: Convert inline routines to little-endian words (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ee: Convert macros that set descriptor (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ee: Replace local bit manipulation macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ee: Remove unused GET_XXX and SET_XXX (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl_pci: Fix memory leak when hardware init fails (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: remove unused variables 'RTL8712_SDIO_EFUSE_TABLE' and 'MAX_PGPKT_SIZE' (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192cu: Fix value set in descriptor (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: fix non-kerneldoc comment in usb.c (Jarod Wilson) [1776606]
+- [net] mac80211: minstrel_ht: fix infinite loop because supported is not being shifted (Jarod Wilson) [1776606]
+- [netdrv] mt76: Remove dev_err() usage after platform_get_irq() (Jarod Wilson) [1776606]
+- [net] mac80211: Do not send Layer 2 Update frame before authorization (Jarod Wilson) [1776606]
+- [netdrv] revert "rt2800: enable TX_PIN_CFG_LNA_PE_ bits per band" (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: clear up IV's on key removal (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: assign directly to iwl_trans->cfg in QuZ detection (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: Fix three heap overflow at parsing element in cfg80211_ap_settings (Jarod Wilson) [1776244 1775484 1775475 1776606]
+- [netdrv] mt76: mt76x0e: disable 5GHz band for MT7630E (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x0e: don't use hw encryption for MT7630E (Jarod Wilson) [1776606]
+- [net] nl80211: fill all policy .type entries (Jarod Wilson) [1776606]
+- [net] cfg80211: Add support to set tx power for a station associated (Jarod Wilson) [1776606]
+- [net] cfg80211: Fix Extended Key ID key install checks (Jarod Wilson) [1776606]
+- [net] mac80211: AMPDU handling for rekeys with Extended Key ID (Jarod Wilson) [1776606]
+- [net] mac80211: Simplify Extended Key ID API (Jarod Wilson) [1776606]
+- [net] nl80211: require and validate vendor command policy (Jarod Wilson) [1776606]
+- [net] mac80211: AMPDU handling for Extended Key ID (Jarod Wilson) [1776606]
+- [net] mac80211: IEEE 802.11 Extended Key ID support (Jarod Wilson) [1776606]
+- [net] nl80211/cfg80211: Extended Key ID support (Jarod Wilson) [1776606]
+- [net] nl80211/cfg80211: Specify band specific min RSSI thresholds with sched scan (Jarod Wilson) [1776606]
+- [net] cfg80211: Use const more consistently in for_each_element macros (Jarod Wilson) [1776606]
+- [net] nl80211: use for_each_element() in validate_ie_attr() (Jarod Wilson) [1776606]
+- [net] cfg80211: add peer measurement with FTM initiator API (Jarod Wilson) [1776606]
+- [net] nl80211: use netlink policy validation function for elements (Jarod Wilson) [1776606]
+- [net] nl80211: use policy range validation where applicable (Jarod Wilson) [1776606]
+- [net] cfg80211: support FTM responder configuration/statistics (Jarod Wilson) [1776606]
+- [net] lib80211: move TKIP handling to ARC4 library code (Jarod Wilson) [1776606]
+- [net] lib80211: move WEP handling to ARC4 library code (Jarod Wilson) [1776606]
+- [net] mac80211: move WEP handling to ARC4 library interface (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: clear IV's on start to fix AP mode regression (Jarod Wilson) [1776606]
+- [netdrv] rt2800usb: Add new rt2800usb device PLANEX GW-USMicroN (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: no need to check return value of debugfs_create functions (Jarod Wilson) [1776606]
+- [netdrv] rt2x00usb: remove unnecessary rx flag checks (Jarod Wilson) [1776606]
+- [netdrv] rt2x00usb: fix rx queue hang (Jarod Wilson) [1776606]
+- [netdrv] rt2800: do not enable watchdog by default (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: add restart hw (Jarod Wilson) [1776606]
+- [netdrv] rt2800: do not nullify initialization vector data (Jarod Wilson) [1776606]
+- [netdrv] rt2800: add pre_reset_hw callback (Jarod Wilson) [1776606]
+- [netdrv] rt2800: initial watchdog implementation (Jarod Wilson) [1776606]
+- [netdrv] rt2800: add helpers for reading dma done index (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: allow to specify watchdog interval (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: add RT3883 support (Jarod Wilson) [1776606]
+- [netdrv] rt2x00mmio: remove legacy comment (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: remove not used entry field (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: remove last_nostatus_check (Jarod Wilson) [1776606]
+- [netdrv] rt2800mmio: use timer and work for handling tx statuses timeouts (Jarod Wilson) [1776606]
+- [netdrv] rt2800mmio: fetch tx status changes (Jarod Wilson) [1776606]
+- [netdrv] rt2800: move txstatus pending routine (Jarod Wilson) [1776606]
+- [netdrv] rt2800: new flush implementation for SoC devices (Jarod Wilson) [1776606]
+- [netdrv] rt2800: partially restore old mmio txstatus behaviour (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: code-style fix in rt2800usb.c (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: do not print error when queue is full (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: check number of EPROTO errors (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: use ratelimited variants dev_warn/dev_err (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: do not increment sequence number while re-transmitting (Jarod Wilson) [1776606]
+- [netdrv] rt2800: comment and simplify AGC init for RT6352 (Jarod Wilson) [1776606]
+- [netdrv] rt2800: enable TX_PIN_CFG_RFRX_EN only for MT7620 (Jarod Wilson) [1776606]
+- [netdrv] rt2800: enable TX_PIN_CFG_LNA_PE_ bits per band (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: remove confusing AGC register (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: remove unneeded check (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: no need to check return value of debugfs_create functions (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: Work around a firmware bug with shared keys (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: reduce tx power to nominal level on RT6352 (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: rt61pci: mark expected switch fall-through (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: rt2800lib: mark expected switch fall-throughs (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: rt2500pci: mark expected switch fall-through (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: rt2400pci: mark expected switch fall-through (Jarod Wilson) [1776606]
+- [netdrv] rt2800: flush and txstatus rework for rt2800mmio (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: use different txstatus timeouts when flushing (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: do not check for txstatus timeout every time on tasklet (Jarod Wilson) [1776606]
+- [netdrv] rt2800mmio: use txdone/txstatus routines from lib (Jarod Wilson) [1776606]
+- [netdrv] rt2800: move usb specific txdone/txstatus routines to rt2800lib (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: use simple_read_from_buffer() (Jarod Wilson) [1776606]
+- [netdrv] rt2x00: remove redundant functions rt2x00mac_sta_{add/remove} (Jarod Wilson) [1776606]
+- [net] mac80211: Correctly set noencrypt for PAE frames (Jarod Wilson) [1776606]
+- [net] mac80211: Don't memset RXCB prior to PAE intercept (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: handle switching killer Qu B0 NICs to C0 (Jarod Wilson) [1776606]
+- [net] mac80211: minstrel_ht: improve rate probing for devices with static fallback (Jarod Wilson) [1776606]
+- [net] mac80211: minstrel_ht: fix default max throughput rate indexes (Jarod Wilson) [1776606]
+- [net] mac80211: minstrel_ht: reduce unnecessary rate probing attempts (Jarod Wilson) [1776606]
+- [net] mac80211: minstrel_ht: fix per-group max throughput rate initialization (Jarod Wilson) [1776606]
+- [net] nl80211: Add support for EDMG channels (Jarod Wilson) [1776606]
+- [net] mac80211: fix possible NULL pointerderef in obss pd code (Jarod Wilson) [1776606]
+- [net] mac80211: add assoc-at support (Jarod Wilson) [1776606]
+- [uapi] cfg80211: Support assoc-at timer in sta-info (Jarod Wilson) [1776606]
+- [net] cfg80211: apply same mandatory rate flags for 5GHz and 6GHz (Jarod Wilson) [1776606]
+- [net] cfg80211: ibss: use 11a mandatory rates for 6GHz band operation (Jarod Wilson) [1776606]
+- [net] cfg80211: use same IR permissive rules for 6GHz band (Jarod Wilson) [1776606]
+- [net] cfg80211: add 6GHz in code handling array with NUM_NL80211_BANDS entries (Jarod Wilson) [1776606]
+- [net] cfg80211: extend ieee80211_operating_class_to_band() for 6GHz (Jarod Wilson) [1776606]
+- [net] cfg80211: util: add 6GHz channel to freq conversion and vice versa (Jarod Wilson) [1776606]
+- [net] cfg80211: add 6GHz UNII band definitions (Jarod Wilson) [1776606]
+- [uapi] nl80211: add 6GHz band definition to enum nl80211_band (Jarod Wilson) [1776606]
+- [net] revert "cfg80211: fix processing world regdomain when non modular" (Jarod Wilson) [1776606]
+- [net] mac80211: add missing length field increment when generating Radiotap header (Jarod Wilson) [1776606]
+- [net] mac80211: 80Mhz was not reported properly when using tx_status_ext (Jarod Wilson) [1776606]
+- [net] mac80211: fix bad guard when reporting legacy rates (Jarod Wilson) [1776606]
+- [net] mac80211: fix TX legacy rate reporting when tx_status_ext is used (Jarod Wilson) [1776606]
+- [net] mac80211: fix possible sta leak (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: fix recognition of QuZ devices (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: don't switch FW to qnj when ax201 is detected (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: fix the byte count table format for 22560 devices (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: Allow multicast data frames only when associated (Jarod Wilson) [1776606]
+- [netdrv] revert "mwifiex: fix system hang problem after resume" (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ce: Convert inline routines to little-endian words (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ce: Convert macros that set descriptor (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ce: Replace local bit manipulation macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192ce: Remove unused GET_XXX and SET_XXX (Jarod Wilson) [1776606]
+- [netdrv] rtw88: add BT co-existence support (Jarod Wilson) [1776606]
+- [netdrv] rtw88: enclose c2h cmd handle with mutex (Jarod Wilson) [1776606]
+- [netdrv] rtw88: allow c2h operation in irq context (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8188ee: Remove local configuration variable (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8188ee: Convert inline routines to little-endian words (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8188ee: Convert macros that set descriptor (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl88188ee: Replace local bit manipulation macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8188ee: Remove unused GET_XXX and SET_XXX descriptor macros (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: remove set but not used variable 'ip_sel' (Jarod Wilson) [1776606]
+- [netdrv] brcmsmac: remove three set but not used variables (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: remove set but not used variable 'dtim_period' (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: remove unneeded function _rtl_dump_channel_map() (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl_pci: Use dev_get_drvdata (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: pcie: Use dev_get_drvdata (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: make error values consistent in mwifiex_update_bss_desc_with_ie() (Jarod Wilson) [1776606]
+- [netdrv] rtw88: use txpwr_lmt_cfg_pair struct, not arrays (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: fix compile time assert build errors (Jarod Wilson) [1776606]
+- [net] mac80211: HE STA disassoc due to QOS NULL not sent (Jarod Wilson) [1776606]
+- [net] mac80211: allow setting spatial reuse parameters from bss_conf (Jarod Wilson) [1776606]
+- [net] nl80211: add strict start type (Jarod Wilson) [1776606]
+- [net] cfg80211: add support for parsing OBBS_PD attributes (Jarod Wilson) [1776606]
+- [net] mac80211: reject zero MAC address in add station (Jarod Wilson) [1776606]
+- [net] cfg80211: use parallel_ops for genl (Jarod Wilson) [1776606]
+- [net] mac80211: add missing null return check from call to ieee80211_get_sband (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix a use-after-free bug in iwl_mvm_tx_tso_segment (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix an out-of-bound access (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: don't unmap as page memory that was mapped as single (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix version check for GEO_TX_POWER_LIMIT support (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add 3 new IDs for the 9000 series (iwl9260_2ac_160_cfg) (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix possible out-of-bounds read when accessing lq_info (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix frame drop from the reordering buffer (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: replace RS mutex with a spin_lock (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: send LQ command always ASYNC (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: fix comparison of u32 variable with less than zero (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fix locking in delayed GTK setting (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: move iwl_dbg_tlv_free outside of debugfs ifdef (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: move iwl_dbg_tlv_load_bin out of debug override ifdef (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: add a wrapper around rs_tx_status to handle locks (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: add a loose synchronization of the NSSN across Rx queues (Jarod Wilson) [1776606]
+- [netdrv] iwlwiif: mvm: refactor iwl_mvm_notify_rx_queue (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: add a new RSS sync notification for NSSN sync (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: prepare the ground for more RSS notifications (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: don't send GEO_TX_POWER_LIMIT on version < 41 (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: avoid races in rate init and rate perform (Jarod Wilson) [1776606]
+- [net] revert "mac80211: set NETIF_F_LLTX when using intermediate tx queues" (Jarod Wilson) [1776606]
+- [net] mac80211: add support for the ADDBA extension element (Jarod Wilson) [1776606]
+- [net] mac80211: propagate HE operation info into bss_conf (Jarod Wilson) [1776606]
+- [net] cfg80211: fix dfs channels remain DFS_AVAILABLE after ch_switch (Jarod Wilson) [1776606]
+- [net] cfg80211: fix duplicated scan entries after channel switch (Jarod Wilson) [1776606]
+- [net] cfg80211: refactor cfg80211_bss_update (Jarod Wilson) [1776606]
+- [net] mac80211: don't WARN on short WMM parameters from AP (Jarod Wilson) [1776606]
+- [net] nl80211: Include wiphy address setup in NEW_WIPHY (Jarod Wilson) [1776606]
+- [net] mac80211: implement HE support for mesh (Jarod Wilson) [1776606]
+- [net] mac80211: add IEEE80211_KEY_FLAG_GENERATE_MMIE to ieee80211_key_flags (Jarod Wilson) [1776606]
+- [kernel] mac80211: he: add Spatial Reuse element parsing support (Jarod Wilson) [1776606]
+- [net] mac80211: add struct ieee80211_tx_status support to ieee80211_add_tx_radiotap_header (Jarod Wilson) [1776606]
+- [net] {nl, mac}80211: fix interface combinations on crypto controlled devices (Jarod Wilson) [1776606]
+- [net] mac80211: propagate struct ieee80211_tx_status into ieee80211_tx_monitor() (Jarod Wilson) [1776606]
+- [net] mac80211: add xmit rate to struct ieee80211_tx_status (Jarod Wilson) [1776606]
+- [kernel] mac80211: add support for parsing ADDBA_EXT IEs (Jarod Wilson) [1776606]
+- [net] cfg80211: give all multi-BSSID BSS entries the same timestamp (Jarod Wilson) [1776606]
+- [net] cfg80211: don't parse MBSSID if transmitting BSS isn't created (Jarod Wilson) [1776606]
+- [net] cfg80211: clean up cfg80211_inform_single_bss_frame_data() (Jarod Wilson) [1776606]
+- [net] cfg80211: no need to check return value of debugfs_create functions (Jarod Wilson) [1776606]
+- [net] mac80211: add tx dequeue function for process context (Jarod Wilson) [1776606]
+- [net] mac80211: run late dequeue late tx handlers without holding fq->lock (Jarod Wilson) [1776606]
+- [net] lib80211: use crypto API ccm(aes) transform for CCMP processing (Jarod Wilson) [1776606]
+- [net] mac80211: remove unused and unneeded remove_sta_debugfs callback (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove unused .remove_sta_debugfs callback (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dvm: no need to check return value of debugfs_create functions (Jarod Wilson) [1776606]
+- [net] mac80211: pass the vif to cancel_remain_on_channel (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: use eth_broadcast_addr() to assign broadcast address (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: remove assignment to itself (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: don't net_ratelimit() CONSOLE messages on firmware crash (Jarod Wilson) [1776606]
+- [netdrv] rtw88: debug: dump tx power indexes in use (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: btcoex: fix issue possible condition with no effect (if == else) (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: remove unnecessary strlcpy() upon obtaining "ver" iovar (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: simply remove flowring if bus is down (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: avoid firmware commands when bus is down (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: clear events in brcmf_fweh_detach() will always fail (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: avoid firmware command in brcmf_netdev_open() when bus is down (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: change the order of things in brcmf_detach() (Jarod Wilson) [1776606]
+- [netdrv] revert "brcmfmac: fix NULL pointer derefence during USB disconnect" (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: allow 160MHz in custom regulatory rules (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: enable DFS_OFFLOAD extended feature if supported (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: add 160MHz in chandef_to_chanspec() (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: Use DMA sync instead of remapping in RX ISR (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: Rearrange the memory usage for skb in RX ISR (Jarod Wilson) [1776606]
+- [netdrv] rtw88: Fix misuse of GENMASK macro (Jarod Wilson) [1776606]
+- [netdrv] rtl8xxxu: Fix wifi low signal strength issue of RTL8723BU (Jarod Wilson) [1776606]
+- [net] mac80211: don't warn about CW params when not using them (Jarod Wilson) [1776606]
+- [net] mac80211: fix possible memory leak in ieee80211_assign_beacon (Jarod Wilson) [1776606]
+- [kernel] fix typos and some coding style in comments (Jarod Wilson) [1776606]
+- [netdrv] ath10k: work around uninitialized vht_pfr variable (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: add support for qu c-step devices (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add new cards for 9000 and 20000 series (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: clear rfkill_safe_init_done when we start the firmware (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: don't WARN when calling iwl_get_shared_mem_conf with RF-Kill (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: don't service an interrupt that was masked (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fix RF-Kill interrupt while FW load for gen2 devices (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: fix ALIVE interrupt handling for gen2 devices w/o MSI-X (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: delay GTK setting in FW in AP mode (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove MAC_FILTER_IN_11AX for AP mode (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: debug recording stop and restart command remove (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: don't stop dbg recording before entering D3 from 9000 devices (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: fix debug monitor stop and restart in ini mode (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: make the usage of TWT configurable (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: support FSEQ TLV even when FMAC is not compiled (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: move trans debug fields to a separate struct (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: remove redundant checking of ini mode (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: enforce apply point early on buffer allocation tlv (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: fix debug monitor stop and restart delays (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: pcie: increase the size of PCI dumps (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: Drop large non sta frames (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: Add log information about SAR status (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: Add support for SAR South Korea limitation (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fix module init error paths (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: convert to FW AC when configuring MU EDCA (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: correctly fill the ac array in the iwl_mac_ctx_cmd (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: remove some unnecessary NULL checks (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: d3: Use struct_size() helper (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: lib: Use struct_size() helper (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: fw api: support adwell HB default APs number api (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: remove multiple debugfs entries (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: implement dump info collection (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: mvm: add a debugfs entry to set a fixed size AMSDU for all TX packets (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: support debug info TLV (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: use different barker for ini dump (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: add consecutive trigger firing support (Jarod Wilson) [1776606]
+- [kernel] ieee80211: Add a missing extended capability flag definition (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: abort region collection in case the size is 0 (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: update CSI API (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg_ini: dump headers cleanup (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: dbg: allow dump collection in case of an early error (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: iwl_mvm_tx_mpdu() must be called with BH disabled (Jarod Wilson) [1776606]
+- [netdrv] ath10k: pci: remove unnecessary casts (Jarod Wilson) [1776606]
+- [netdrv] ath10k: remove unnecessary 'out of memory' message (Jarod Wilson) [1776606]
+- [netdrv] ath10k: destroy sdio workqueue while remove sdio module (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Move non-fatal warn logs to dbg level for SDIO chip (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Fix memory leak in qmi (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add new hw_ops for sdio chip (Jarod Wilson) [1776606]
+- [netdrv] ath9k: correctly handle short radar pulses (Jarod Wilson) [1776606]
+- [netdrv] rtw88: refine flow to get tx power index (Jarod Wilson) [1776606]
+- [netdrv] rtw88: remove all RTW_MAX_POWER_INDEX macro (Jarod Wilson) [1776606]
+- [netdrv] rtw88: update tx power limit table to RF v20 (Jarod Wilson) [1776606]
+- [netdrv] rtw88: correct power limit selection (Jarod Wilson) [1776606]
+- [netdrv] rtw88: choose the lowest as world-wide power limit (Jarod Wilson) [1776606]
+- [netdrv] rtw88: fix incorrect tx power limit at 5G (Jarod Wilson) [1776606]
+- [netdrv] rtw88: remove unused variable (Jarod Wilson) [1776606]
+- [netdrv] rtw88: unify prefixes for tx power setting routine (Jarod Wilson) [1776606]
+- [netdrv] rtw88: do not use (void *) as argument (Jarod Wilson) [1776606]
+- [netdrv] rtw88: resolve order of tx power setting routines (Jarod Wilson) [1776606]
+- [netdrv] ath: fix SPDX tags (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Add WMI diag fw logging support for WCN3990 (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add report MIC error for sdio chip (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add support for controlling tx power to a station (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Add peer delete response event (Jarod Wilson) [1776606]
+- [netdrv] ath10k: wait for vdev delete response from firmware (Jarod Wilson) [1776606]
+- [netdrv] ath10k: fix PCIE device wake up failed (Jarod Wilson) [1776606]
+- [netdrv] ath10k: fix failure to set multiple fixed rate (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Change the warning message string (Jarod Wilson) [1776606]
+- [netdrv] ath10k: fix fw crash by moving chip reset after napi disabled (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add missing error handling (Jarod Wilson) [1776606]
+- [netdrv] ath10k: enabling tx stats support over pktlog (Jarod Wilson) [1776606]
+- [netdrv] ath10k: acquire lock to fix lockdep's warning (Jarod Wilson) [1776606]
+- [netdrv] ath10k: change firmware file name for UTF mode of SDIO/USB (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add support for firmware crash recovery on SDIO chip (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Add wrapper function to ath10k debug (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add htt_h2t_aggr_cfg_msg op for high latency devices (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add inline wrapper for htt_h2t_aggr_cfg_msg (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix sparse warnings: warning: incorrect type in assignment (different base types) (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix sparse warnings: warning: cast from restricted __le16 (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix sparse warnings: incorrect type in assignment (different base types) (Jarod Wilson) [1776606]
+- [netdrv] mt76: move nl80211_dfs_regions in mt76_dev data structure (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: remove cfg80211_chan_def from mt7615_set_channel signature (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: update peer's bssid when state transition occurs (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix incorrect settings in mesh mode (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: take into account extPA when configuring tx power (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: init per-channel target power (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add support for per-chain signal strength reporting (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: simplify mt7615_mcu_set_sta_rec routine (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: improve hardware rate switching configuration (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: rework and fix tx status reporting (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: remove key check in mt7615_mcu_set_wtbl_key (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: remove unused variable in mt7615_mcu_set_bcn (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: fix slow performance when enable encryption (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: enable support for mesh (Jarod Wilson) [1776606]
+- [netdrv] mt76: Remove set but not used variables 'pid' and 'final_mpdu' (Jarod Wilson) [1776606]
+- [netdrv] mt76: move mt76_get_rate in mt76-module (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: rearrange locking in mt7615_config (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: init get_txpower mac80211 callback (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add the capability to configure tx power (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: select wifi band according to eeprom (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add support for mtd eeprom parsing (Jarod Wilson) [1776606]
+- [netdrv] mt76: move mt76_insert_ccmp_hdr in mt76-module (Jarod Wilson) [1776606]
+- [netdrv] mt76: fix setting chan->max_power (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix reading target tx power from eeprom (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: do not process rx packets if the device is not initialized (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: add debugfs knob to enable/disable edcca (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: add static qualifier to mt7615_rx_poll_complete (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: rearrange cleanup operations in mt7615_unregister_device (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: stop mac80211 queues before setting the channel (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: run __mt76_mcu_send_msg in mt7615_mcu_send_firmware (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: init mcu_restart function pointer (Jarod Wilson) [1776606]
+- [netdrv] mt7615: initialize mt76_mcu_ops data structure (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: use standard signature for mt7615_mcu_msg_send (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: remove unused structure in mcu.h (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: do not use function pointers whenever possible (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: unify __mt7615_mcu_set_dev_info and mt7615_mcu_set_dev_info (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: remove skb_ret from mt7615_mcu_msg_send (Jarod Wilson) [1776606]
+- [netdrv] mt7615: remove dest from mt7615_mcu_msg_send signature (Jarod Wilson) [1776606]
+- [netdrv] mt7615: remove query from mt7615_mcu_msg_send signature (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: remove unused parameter in mt7615_mcu_del_wtbl (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: unify mt7615_mcu_add_wtbl_bmc and mt7615_mcu_del_wtbl_bmc (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: use proper msg size in mt7615_mcu_add_wtbl (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: use proper msg size in mt7615_mcu_add_wtbl_bmc (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: remove bss_info_convert_vif_type routine (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: simplify __mt7615_mcu_set_sta_rec (Jarod Wilson) [1776606]
+- [netdrv] mt7615: mcu: simplify __mt7615_mcu_set_wtbl (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: Make mt7615_irq_handler static (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: Use after free in mt7615_mcu_set_bcn() (Jarod Wilson) [1776606]
+- [netdrv] mt76: Fix a signedness bug in mt7615_add_interface() (Jarod Wilson) [1776606]
+- [netdrv] mt76: move netif_napi_del in mt76_dma_cleanup (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: use napi polling for tx cleanup (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: use napi polling for tx cleanup (Jarod Wilson) [1776606]
+- [netdrv] wireless/mediatek: Add SPDX license identifier - Makefile/Kconfig (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: dynamically alloc mcu req in mt7603_mcu_set_eeprom (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: enable/disable pre_tbtt_tasklet in mt7603_set_channel (Jarod Wilson) [1776606]
+- [netdrv] mt76: move pre_tbtt_tasklet in mt76_dev (Jarod Wilson) [1776606]
+- [netdrv] mt76: move beacon_mask in mt76_dev (Jarod Wilson) [1776606]
+- [netdrv] mt76: move beacon_int in mt76_dev (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: report firmware version using ethtool (Jarod Wilson) [1776606]
+- [netdrv] mt76: fix endianness sparse warnings (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7615: use sizeof instead of sizeof_field (Jarod Wilson) [1776606]
+- [netdrv] mt76: add mac80211 driver for MT7615 PCIe-based chipsets (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: run __mt76_mcu_send_msg in mt7603_mcu_send_firmware (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: init mcu_restart function pointer (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: initialize mt76_mcu_ops data structure (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: use standard signature for mt7603_mcu_msg_send (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: remove query from mt7603_mcu_msg_send signature (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix initialization of max rx length (Jarod Wilson) [1776606]
+- [netdrv] mt76: use macro for sn and seq_ctrl conversion (Jarod Wilson) [1776606]
+- [netdrv] mt76: add skb pointer to mt76_tx_info (Jarod Wilson) [1776606]
+- [netdrv] mt76: move mac_work in mt76_dev (Jarod Wilson) [1776606]
+- [netdrv] mt76: only schedule txqs from the tx tasklet (Jarod Wilson) [1776606]
+- [netdrv] mt76: move tx tasklet to struct mt76_dev (Jarod Wilson) [1776606]
+- [netdrv] mt76: store wcid tx rate info in one u32 reduce locking (Jarod Wilson) [1776606]
+- [netdrv] mt76: use readl/writel instead of ioread32/iowrite32 (Jarod Wilson) [1776606]
+- [netdrv] mt76: fix tx power issues (Jarod Wilson) [1776606]
+- [netdrv] mt76: introduce mt76_free_device routine (Jarod Wilson) [1776606]
+- [netdrv] mt76: unify set_tim (Jarod Wilson) [1776606]
+- [netdrv] mt7603: core: do not use magic numbers in mt7603_reg_map (Jarod Wilson) [1776606]
+- [netdrv] mt7603: remove mt7603_mcu_init routine (Jarod Wilson) [1776606]
+- [netdrv] mt76: dma: add static qualifier to mt76_dma_tx_queue_skb (Jarod Wilson) [1776606]
+- [netdrv] mt76: introduce mt76_tx_info data structure (Jarod Wilson) [1776606]
+- [netdrv] mt76: introduce mt76_sw_queue data structure (Jarod Wilson) [1776606]
+- [netdrv] mt76: remove mt76_queue dependency from tx_complete_skb function pointer (Jarod Wilson) [1776606]
+- [netdrv] mt76: remove mt76_queue dependency from tx_prepare_skb function pointer (Jarod Wilson) [1776606]
+- [netdrv] mt76: remove mt76_queue dependency from tx_queue_skb function pointer (Jarod Wilson) [1776606]
+- [netdrv] mt76: dma: move mt76x02_init_{tx, rx}_queue in mt76 module (Jarod Wilson) [1776606]
+- [netdrv] mt76: mmio: move mt76x02_set_irq_mask in mt76 module (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: send BAR after powersave wakeup (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix sequence number assignment (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: add missing initialization for dev->ps_lock (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: use the correct hweight8() function (Jarod Wilson) [1776606]
+- [netdrv] mt76: fix return value check in mt76_wmac_probe() (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: set moredata flag when queueing ps-filtered packets (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: clear the service period on releasing PS filtered packets (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: notify mac80211 about buffered frames in ps queue (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix up hardware queue index for PS filtered packets (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: clear ps filtering mode before releasing buffered frames (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt7603: fix tx status HT rate validation (Jarod Wilson) [1776606]
+- [netdrv] mt76: add driver for MT7603E and MT7628/7688 (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x0u: do not reset radio on resume (Jarod Wilson) [1776606]
+- [netdrv] mt7601u: null check the allocation (Jarod Wilson) [1776606]
+- [netdrv] mt7601u: use params->ssn value directly (Jarod Wilson) [1776606]
+- [netdrv] mt76: usb: fix rx A-MSDU support (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76u: get rid of {out,in}_max_packet (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76u: reduce rx memory footprint (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02u: fix sparse warnings: should it be static? (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x0: fix RF frontend initialization for external PA (Jarod Wilson) [1776606]
+- [netdrv] mt76: generalize mt76_get_txpower for 4x4:4 devices (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: fix tx reordering on rate control probing without a-mpdu (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: fix tx status reporting issues (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: fix edcca file permission (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: run mt76x02_edcca_init atomically in mt76_edcca_set (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x2: move mutex_lock inside mt76x2_set_channel (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x2u: remove mt76x02_edcca_init in mt76x2u_set_channel (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: remove enable from mt76x02_edcca_init signature (Jarod Wilson) [1776606]
+- [netdrv] mt76: move tx_napi in mt76_dev (Jarod Wilson) [1776606]
+- [netdrv] mt76: mt76x02: remove useless return in mt76x02_resync_beacon_timer (Jarod Wilson) [1776606]
+- [netdrv] mt7601u: fix possible memory leak when the device is disconnected (Jarod Wilson) [1776606]
+- [netdrv] mt7601u: do not schedule rx_tasklet when the device has been disconnected (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: don't disable hardirqs; just softirqs (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: dispatch/rotate from reorder table atomically (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: ignore processing invalid command response (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: update set_mac_address logic (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: print PCI mmap with pK (Jarod Wilson) [1776606]
+- [netdrv] mwifiex: drop 'set_consistent_dma_mask' log message (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add support for hr1 RF ID (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: change 0x02F0 fw from qu to quz (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add new cards for 22000 and change wrong structs (Jarod Wilson) [1776606]
+- [netdrv] iwlwifi: add new cards for 22000 and fix struct name (Jarod Wilson) [1776606]
+- [net] mac80211: notify offchannel expire on mgmt_tx (Jarod Wilson) [1776606]
+- [net] nl80211: send event when CMD_FRAME duration expires (Jarod Wilson) [1776606]
+- [net] mac80211: no need to check return value of debugfs_create functions (Jarod Wilson) [1776606]
+- [net] mac80211: extend __rate_control_send_low warning (Jarod Wilson) [1776606]
+- [net] mac80211: fill low rate even for HAS_RATE_CONTROL (Jarod Wilson) [1776606]
+- [net] mac80211: use STA info in rate_control_send_low() (Jarod Wilson) [1776606]
+- [net] mac80211: call rate_control_send_low() internally (Jarod Wilson) [1776606]
+- [net] cfg80211: Add a function to iterate all BSS entries (Jarod Wilson) [1776606]
+- [net] mac80211: allow turning TWT responder support on and off via netlink (Jarod Wilson) [1776606]
+- [net] mac80211: dynamically enable the TWT requester support on STA interfaces (Jarod Wilson) [1776606]
+- [net] mac80211: add ieee80211_get_he_iftype_cap() helper (Jarod Wilson) [1776606]
+- [uapi] nl80211: add support for SAE authentication offload (Jarod Wilson) [1776606]
+- [net] nl80211: add WPA3 definition for SAE authentication (Jarod Wilson) [1776606]
+- [net] nl80211: add NL80211_ATTR_IFINDEX to port authorized event (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8188ee: remove redundant assignment to rtstatus (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: remove redundant assignment to variable k (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: remove redundant assignment to variable badworden (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8192cu: fix error handle when usb probe failed (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: btcoex: remove unused function exhalbtc_stack_operation_notify (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: btcoex: Remove set but not used variable 'len' and 'asso_type_v2' (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8821ae: Remove set but not used variables 'cur_txokcnt' and 'b_last_is_cur_rdl_state' (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8821ae: Convert inline routines to little-endian words (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8821ae: Convert macros that set descriptor (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8821ae: Replace local bit manipulation macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: rtl8821ae: Remove unused GET_XXX and SET_XXX descriptor macros (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: 8192de: use le32 to access cckswing tables (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: 8192de: Fix used uninitialized variables in power tracking (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: 8192de: make tables to be 'static const' (Jarod Wilson) [1776606]
+- [netdrv] rtlwifi: 8192de: Reduce indentation and fix coding style (Jarod Wilson) [1776606]
+- [netdrv] rtw88: fix typo rtw_writ16_set (Jarod Wilson) [1776606]
+- [netdrv] rtw88: rsvd page should go though management queue (Jarod Wilson) [1776606]
+- [netdrv] rtw88: restore DACK results to save time (Jarod Wilson) [1776606]
+- [netdrv] rtw88: power on again if it was already on (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: use more accurate ofdm fa counting (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: disable rx clock gating before counter reset (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: update channel and bandwidth BB setting (Jarod Wilson) [1776606]
+- [netdrv] rtw88: 8822c: add rf write protection when switching channel (Jarod Wilson) [1776606]
+- [netdrv] rtw88: add beacon function setting (Jarod Wilson) [1776606]
+- [netdrv] rtw88: add support for random mac scan (Jarod Wilson) [1776606]
+- [netdrv] rtw88: add fast xmit support (Jarod Wilson) [1776606]
+- [netdrv] rtw88: more descriptions about LPS (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: check if queue mapping exceeds size of ac_to_hwq (Jarod Wilson) [1776606]
+- [netdrv] rtw88: pci: use ieee80211_ac_numbers instead of 0-3 (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: use strlcpy() instead of strcpy() (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: fix typos in code comments (Jarod Wilson) [1776606]
+- [netdrv] brcm80211: select WANT_DEV_COREDUMP conditionally for brcmfmac (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: use separate Kconfig file for brcmfmac (Jarod Wilson) [1776606]
+- [netdrv] brcmfmac: switch source files to using SPDX license identifier (Jarod Wilson) [1776606]
+- [netdrv] brcmsmac: switch phy source files to using SPDX license identifier (Jarod Wilson) [1776606]
+- [netdrv] brcmutil: switch source files to using SPDX license identifier (Jarod Wilson) [1776606]
+- [netdrv] brcm80211: switch common header files to using SPDX license identifier (Jarod Wilson) [1776606]
+- [net] cfg80211: Handle bss expiry during connection (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Check tx_stats before use it (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add peer id check in ath10k_peer_find_by_id (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Add wmi tlv service map for mesh 11s (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Do not send probe response template for mesh (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Add wmi tlv vdev subtype for mesh in WCN3990 (Jarod Wilson) [1776606]
+- [netdrv] ath10k: change swap mail box config for UTF mode of SDIO (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Fix the wrong value of enums for wmi tlv stats id (Jarod Wilson) [1776606]
+- [netdrv] ath10k: coredump: use struct_size() helper (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Use struct_size() helper (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Fix encoding for protected management frames (Jarod Wilson) [1776606]
+- [netdrv] ath10k: rx_duration update for fw_stats debugfs entry (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Fix the tx stats bytes & packets parsing (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Modify CE4 src buffer entries to 2048 for WCN3990 (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Move board id and fw version logging to info level (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Added support to reset HTT stats in debugfs (Jarod Wilson) [1776606]
+- [netdrv] ath10k: Extended the HTT stats support to retrieve Mu-MIMO related stats (Jarod Wilson) [1776606]
+- [netdrv] ath: DFS JP domain W56 fixed pulse type 3 RADAR detection (Jarod Wilson) [1776606]
+- [netdrv] ath9k: drop redundant code in ar9003_hw_set_channel (Jarod Wilson) [1776606]
+- [netdrv] ath: drop duplicated define (Jarod Wilson) [1776606]
+- [netdrv] ath9k: Remove some set but not used variables (Jarod Wilson) [1776606]
+- [netdrv] ath9k: Differentiate between max combined and per chain power (Jarod Wilson) [1776606]
+- [netdrv] ath9k: Check for errors when reading SREV register (Jarod Wilson) [1776606]
+- [netdrv] ath9k: Don't trust TX status TID number when reporting airtime (Jarod Wilson) [1776606]
+- [netdrv] ath6kl: remove redundant check of status != 0 (Jarod Wilson) [1776606]
+- [netdrv] ath6kl: add some bounds checking (Jarod Wilson) [1776606]
+- [netdrv] ath6kl: wmi: use struct_size() helper (Jarod Wilson) [1776606]
+- [netdrv] ath6kl: debug: Use struct_size() helper (Jarod Wilson) [1776606]
+- [netdrv] ath10k: fix incorrect multicast/broadcast rate setting (Jarod Wilson) [1776606]
+- [netdrv] ath10k: enable QCA6174 hw3.2 SDIO hardware (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add fragmentation handler for high latency devices (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add PN replay protection for high latency devices (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add handler for HTT_T2H_MSG_TYPE_SEC_IND event (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add struct for high latency PN replay protection (Jarod Wilson) [1776606]
+- [netdrv] ath10k: sdio: add missing error check (Jarod Wilson) [1776606]
+- [netdrv] ath10k: add initialization of HTC header (Jarod Wilson) [1776606]
+- [netdrv] ath10k: fix use-after-free on SDIO data frames (Jarod Wilson) [1776606]
+- [netdrv] ath10k: htt: support MSDU ids with SDIO (Jarod Wilson) [1776606]
+- [netdrv] ath10k: initialise struct ath10k_bus params to zero (Jarod Wilson) [1776606]
+- [netdrv] ath10k: htt: don't use txdone_fifo with SDIO (Jarod Wilson) [1776606]
+- [netdrv] ath10k: don't disable interrupts in ath10k_sdio_remove() (Jarod Wilson) [1776606]
+- [netdrv] ath10k: sdio: workaround firmware UART pin configuration bug (Jarod Wilson) [1776606]
+- [net] cfg80211: Add airtime statistics and settings (Jarod Wilson) [1776606]
+- [base] depend on HAS_IOMEM for devm_platform_ioremap_resource() (Jarod Wilson) [1776606]
+- [base] provide devm_platform_ioremap_resource() (Jarod Wilson) [1776606]
+- [lib] crypto: arc4 - refactor arc4 core code into separate library (Jarod Wilson) [1776606]
+- [crypto] export arc4 defines (Jarod Wilson) [1776606]
+- [crypto] arc4 - convert to skcipher API (Jarod Wilson) [1776606]
+- [kernel] bitfield: add u8 helpers (Jarod Wilson) [1776606]
+
+* Thu Dec 12 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-165.el8]
+- [md] raid5: need to set STRIPE_HANDLE for batch head (Nigel Croxon) [1774840]
+- [scsi] lpfc: remove left-over BUILD_NVME defines (Ewan Milne) [1782235]
+- [block] fix memleak of bio integrity data (Ming Lei) [1779898]
+- [fs] xfs: attach dquots and reserve quota blocks during unwritten conversion (Carlos Maiolino) [1782094]
+- [nvme] nvme-fc: fix double-free scenarios on hw queues (Ewan Milne) [1781390]
+- [tools] power turbostat: Add Cometlake support (David Arcari) [1759661]
+- [mm] hugetlbfs: take read_lock on i_mmap for PMD sharing (Waiman Long) [1731295]
+- [documentation] powerpc/pseries: Add documentation for vcpudispatch_stats (Gustavo Duarte) [1723870]
+- [powerpc] pseries: Protect against hogging the cpu while setting up the stats (Gustavo Duarte) [1723870]
+- [powerpc] pseries: Provide vcpu dispatch statistics (Gustavo Duarte) [1723870]
+- [powerpc] pseries: Move mm/book3s64/vphn.c under platforms/pseries/ (Gustavo Duarte) [1723870]
+- [powerpc] pseries: Generalize hcall_vphn() (Gustavo Duarte) [1723870]
+- [powerpc] mm: Move book3s64 specifics in subdirectory mm/book3s64 (Gustavo Duarte) [1723870]
+- [powerpc] pseries: Introduce rwlock to gatekeep DTLB usage (Gustavo Duarte) [1723870]
+- [powerpc] pseries: Factor out DTL buffer allocation and registration routines (Gustavo Duarte) [1723870]
+- [powerpc] pseries: Do not save the previous DTL mask value (Gustavo Duarte) [1723870]
+- [powerpc] pseries: Use macros for referring to the DTL enable mask (Gustavo Duarte) [1723870]
+- [powerpc] mm: change #include "mmu_decl.h" to <mm/mmu_decl.h> (Gustavo Duarte) [1723870]
+- [fs] devpts_pty_kill(): don't bother with d_delete() (Eric Sandeen) [1772718]
+- [fs] devpts: always delete dcache dentry-s in dput() (Eric Sandeen) [1772718]
+- [infiniband] rdma/siw: Fix post_recv QP state locking (Kamal Heib) [1779625]
+- [infiniband] rdma/siw: Fix SQ/RQ drain logic (Kamal Heib) [1779625]
+- [infiniband] rdma/siw: Relax from kmap_atomic() use in TX path (Kamal Heib) [1779625]
+- [netdrv] nfp: flower: cmsg rtnl locks can timeout reify messages (Pablo Cascon) [1729154]
+- [netdrv] nfp: Drop unnecessary continue in nfp_net_pf_alloc_vnics (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: handle neighbour events on internal ports (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: prevent ingress block binds on internal ports (Pablo Cascon) [1729154]
+- [netdrv] nfp: add AMDA0058 boards to firmware list (Pablo Cascon) [1729154]
+- [netdrv] nfp: no need to check return value of debugfs_create functions (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: encode mac indexes with pre-tunnel rule check (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: remove offloaded MACs when reprs are applied to OvS bridges (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: offload pre-tunnel rules (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: verify pre-tunnel rules (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: detect potential pre-tunnel rules (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: push vlan after tunnel in merge (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: offload MPLS set action (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: offload MPLS pop action (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: offload MPLS push action (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: ensure ip protocol is specified for L4 matches (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: fix ethernet check on match fields (Pablo Cascon) [1729154]
+- [netdrv] nfp: ccm: increase message limits (Pablo Cascon) [1729154]
+- [netdrv] nfp: Use spinlock_t instead of struct spinlock (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: add GRE encap action support (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: add GRE decap classification support (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: rename tunnel related functions in action offload (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: add helper functions for tunnel classification (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: refactor tunnel key layer calculation (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: extend extack messaging for flower match and actions (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: use extack messages in flower offload (Pablo Cascon) [1729154]
+- [netdrv] nfp: flower: check L4 matches on unknown IP protocols (Pablo Cascon) [1729154]
+- [netdrv] nfp: print a warning when binding VFs to PF driver (Pablo Cascon) [1729154]
+- [netdrv] nfp: update the old flash error message (Pablo Cascon) [1729154]
+- [netdrv] nfp: prepare for more TX metadata prepend (Pablo Cascon) [1729154]
+- [netdrv] nfp: add tls init code (Pablo Cascon) [1729154]
+- [netdrv] nfp: parse crypto opcode TLV (Pablo Cascon) [1729154]
+- [netdrv] nfp: add support for sending control messages via mailbox (Pablo Cascon) [1729154]
+- [netdrv] nfp: parse the mailbox cmsg TLV (Pablo Cascon) [1729154]
+- [netdrv] nfp: make bar_lock a semaphore (Pablo Cascon) [1729154]
+- [netdrv] nfp: count all failed TX attempts as errors (Pablo Cascon) [1729154]
+- [netdrv] nfp: ensure skb network header is set for packet redirect (Pablo Cascon) [1728773]
+- [netdrv] nfp: reintroduce ndo_get_port_parent_id for representor ports (Pablo Cascon) [1728773]
+- [netdrv] nfp: implement PCI driver shutdown callback (Pablo Cascon) [1728773]
+- [netdrv] nfp: add SR-IOV trusted VF support (Pablo Cascon) [1728773]
+- [netdrv] nfp: split out common control message handling code (Pablo Cascon) [1728773]
+- [netdrv] nfp: move vNIC reset before netdev init (Pablo Cascon) [1728773]
+- [netdrv] nfp: add a mutex lock for the vNIC ctrl BAR (Pablo Cascon) [1728773]
+- [netdrv] nfp: opportunistically poll for reconfig result (Pablo Cascon) [1728773]
+- [netdrv] nfp: remove ndo_get_port_parent_id implementation (Pablo Cascon) [1728773]
+- [netdrv] nfp: pass switch ID through devlink_port_attrs_set() (Pablo Cascon) [1728773]
+- [netdrv] nfp: implement ethtool get module EEPROM (Pablo Cascon) [1728773]
+- [netdrv] nfp: nsp: implement read SFF module EEPROM (Pablo Cascon) [1728773]
+- [netdrv] nfp: do not handle nn->port defined case in nfp_net_get_phys_port_name() (Pablo Cascon) [1728773]
+- [netdrv] nfp: register devlink port before netdev (Pablo Cascon) [1728773]
+- [netdrv] nfp: remove defines for unused control bits (Pablo Cascon) [1728773]
+- [netdrv] replace ndo_get_devlink with ndo_get_devlink_port (Pablo Cascon) [1728773]
+- [netdrv] nfp: add .ndo_get_devlink (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: add rcu locks when accessing netdev for tunnels (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: add qos offload stats request and reply (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: fix size_t compile warning (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: fix implicit fallthrough warning (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: offload merge flows (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: support stats update for merge flows (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: generate merge flow rule (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: validate merge hint flows (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: handle merge hint messages (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: get flows by host context (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: allow tunnels to output to internal port (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: support fallback packets from internal ports (Pablo Cascon) [1728773]
+- [netdrv] nfp: allow fallback packets from non-reprs (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: allow offloading of matches on 'internal' ports (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: turn on recirc and merge hint support in firmware (Pablo Cascon) [1728773]
+- [netdrv] nfp: flower: reduce action list size by coalescing mangle actions (Pablo Cascon) [1728773]
+- [fs] xfs: properly serialise fallocate against AIO+DIO (Eric Sandeen) [1765547]
+- [fs] xfs: fix attr leaf header freemap.size underflow (Brian Foster) [1728989]
+- [mm] maintain randomization of page free lists (Rafael Aquini) [1620349]
+- [mm] move buddy list manipulations into helpers (Rafael Aquini) [1620349]
+- [mm] shuffle initial free memory to improve memory-side-cache utilization (Rafael Aquini) [1620349]
+- [powerpc] kvm: ppc: book3s hv: Flush link stack on guest exit to host kernel (Gustavo Duarte) [1777686]
+- [powerpc] book3s64: Fix link stack flush on context switch (Gustavo Duarte) [1777686]
+- [powerpc] 64s: support nospectre_v2 cmdline option (Gustavo Duarte) [1777686]
+- [powerpc] fsl: Update Spectre v2 reporting (Gustavo Duarte) [1777686]
+- [powerpc] fsl: Add nospectre_v2 command line argument (Gustavo Duarte) [1777686]
+- [powerpc] fsl: Fix spectre_v2 mitigations reporting (Gustavo Duarte) [1777686]
+- [powerpc] 64: Make meltdown reporting Book3S 64 specific (Gustavo Duarte) [1777686]
+- [powerpc] 64: Disable the speculation barrier from the command line (Gustavo Duarte) [1777686]
+- [x86] kprobes: Avoid kretprobe recursion bug (Jiri Olsa) [1779235]
+- [x86] kprobes: Verify stack frame on kretprobe (Jiri Olsa) [1779235]
+
+* Wed Dec 11 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-164.el8]
+- [fs] iomap: Fix pipe page leakage during splicing (Andreas Grunbacher) [1622634]
+- [fs] iomap: fix return value of iomap_dio_bio_actor on 32bit systems (Andreas Grunbacher) [1622634]
+- [fs] iomap: iomap_bmap should check iomap_apply return value (Andreas Grunbacher) [1622634]
+- [fs] iomap: Fix overflow in iomap_page_mkwrite (Andreas Grunbacher) [1622634]
+- [fs] splice: only read in as much information as there is pipe buffer space (Andreas Grunbacher) [1622634]
+- [fs] gfs2: Always mark inode dirty in fallocate (Andreas Grunbacher) [1622634]
+- [fs] dax: Fix pmd vs pte conflict detection (Jeff Moyer) [1777250]
+- [fs] xfs: move local to extent inode logging into bmap helper (Brian Foster) [1737677]
+- [fs] xfs: remove broken error handling on failed attr sf to leaf change (Brian Foster) [1737677]
+- [fs] xfs: log the inode on directory sf to block format change (Brian Foster) [1737677]
+- [block] bfq: deschedule empty bfq_queues not referred by any process (Ming Lei) [1773831]
+- [scsi] revert "scsi: qla2xxx: Fix memory leak when sending I/O fails" (Himanshu Madhani) [1759275]
+- [infiniband] rdma/iw_cxgb4: Report correct port speed/width (Vishal Kulkarni) [1757806]
+- [infiniband] rdma/iw_cxgb4: fix SRQ access from dump_qp() (Vishal Kulkarni) [1779997]
+- [net] nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds (Vladis Dronov) [1778898]
+- [atm] iphase: Fix Spectre v1 vulnerability (Vladis Dronov) [1778898]
+- [x86] tls: Fix possible spectre-v1 in do_get_thread_area() (Vladis Dronov) [1778898]
+- [x86] ptrace: Fix possible spectre-v1 in ptrace_get_debugreg() (Vladis Dronov) [1778898]
+- [net] atm: Fix potential Spectre v1 vulnerabilities (Vladis Dronov) [1778898]
+- [powerpc] ptrace: Mitigate potential Spectre v1 (Vladis Dronov) [1778898]
+- [char] applicom: Fix potential Spectre v1 vulnerabilities (Vladis Dronov) [1778898]
+- [char] mwave: fix potential Spectre v1 vulnerability (Vladis Dronov) [1778898]
+- [misc] misc/sgi-gru: fix Spectre v1 vulnerability (Vladis Dronov) [1778898]
+- [usb] gadget: storage: Fix Spectre v1 vulnerability (Vladis Dronov) [1778898]
+- [misc] hmc6352: fix potential Spectre v1 (Vladis Dronov) [1778898]
+- [s390] qeth: ensure linear access to packet headers (Philipp Rudo) [1781085]
+- [s390] qeth: guard against runt packets (Philipp Rudo) [1781085]
+- [s390] qeth: handle skb allocation error gracefully (Philipp Rudo) [1781085]
+- [s390] qeth: drop unwanted packets earlier in RX path (Philipp Rudo) [1781085]
+- [s390] qeth: support per-frame invalidation (Philipp Rudo) [1781085]
+- [s390] qeth: gather more detailed RX dropped/error statistics (Philipp Rudo) [1781085]
+- [s390] Mark expected switch fall-throughs (Philipp Rudo) [1781085]
+- [sched] fair: Scale bandwidth quota and period without losing quota/period ratio precision (Phil Auld) [1706247]
+- [sched] fair: Fix -Wunused-but-set-variable warnings (Phil Auld) [1706247]
+- [sched] fair: Fix low cpu usage with high throttling by removing expiration of cpu-local slices (Phil Auld) [1706247]
+- [kernel] sched/core: Remove double update_max_interval() call on CPU startup (Phil Auld) [1757535]
+- [kernel] sched/core: Fix migration to invalid CPU in __set_cpus_allowed_ptr() (Phil Auld) [1757535]
+- [kernel] sched/fair: Don't assign runtime for throttled cfs_rq (Phil Auld) [1757535]
+- [kernel] cpufreq: schedutil: Don't skip freq update when limits change (Phil Auld) [1757535]
+- [kernel] sched/deadline: Fix double accounting of rq/running bw in push & pull (Phil Auld) [1757535]
+- [kernel] sched/fair: Fix imbalance due to CPU affinity (Phil Auld) [1757535]
+- [kernel] sched/fair: Use RCU accessors consistently for ->numa_group (Phil Auld) [1757535]
+- [kernel] sched/fair: Don't free p->numa_faults with concurrent readers (Phil Auld) [1757535]
+- [kernel] sched/fair: Rename weighted_cpuload() to cpu_runnable_load() (Phil Auld) [1757535]
+- [kernel] sched/topology: Remove unused 'sd' parameter from arch_scale_cpu_capacity() (Phil Auld) [1757535]
+- [kernel] sched/fair: Don't push cfs_bandwith slack timers forward (Phil Auld) [1757535]
+- [documentation] sched/fair: Fix "runnable_avg_yN_inv" not used warnings (Phil Auld) [1757535]
+- [kernel] sched/fair: Clean up definition of NOHZ blocked load functions (Phil Auld) [1757535]
+- [kernel] sched/core: Add __sched tag for io_schedule() (Phil Auld) [1757535]
+- [kernel] sched/fair: Remove sgs->sum_weighted_load (Phil Auld) [1757535]
+- [kernel] sched/core: Remove sd->*_idx (Phil Auld) [1757535]
+- [kernel] sched/core: Remove rq->cpu_load[] (Phil Auld) [1757535]
+- [kernel] sched/debug: Remove sd->*_idx range on sysctl (Phil Auld) [1757535]
+- [kernel] sched/fair: Replace source_load() & target_load() with weighted_cpuload() (Phil Auld) [1757535]
+- [kernel] sched/fair: Remove the rq->cpu_load[] update code (Phil Auld) [1757535]
+- [kernel] sched/fair: Remove rq->load (Phil Auld) [1757535]
+- [kernel] sched/core: Unify p->on_rq updates (Phil Auld) [1757535]
+- [kernel] sched/core: Remove ttwu_activate() (Phil Auld) [1757535]
+- [kernel] sched/cpufreq: Fix 32-bit math overflow (Phil Auld) [1757535]
+- [kernel] sched/fair: Update scale invariance of PELT (Phil Auld) [1757535]
+- [kernel] sched/pelt: Skip updating util_est when utilization is higher than CPU's capacity (Phil Auld) [1757535]
+- [kernel] sched/fair: Move the rq_of() helper function (Phil Auld) [1757535]
+- [kernel] sched/core: Use READ_ONCE()/WRITE_ONCE() in move_queued_task()/task_rq_lock() (Phil Auld) [1757535]
+- [kernel] sched/numa: Remove unused numa_stats::nr_running field (Phil Auld) [1757535]
+- [kernel] sched/fair: Add lsub_positive() and use it consistently (Phil Auld) [1706247 1757535]
+- [kernel] sched/fair: Mask UTIL_AVG_UNCHANGED usages (Phil Auld) [1706247 1757535]
+- [cpuidle] teo: Avoid using "early hits" incorrectly (Al Stone) [1725618]
+- [cpuidle] teo: Fix "early hits" handling for disabled idle states (Al Stone) [1725618]
+- [cpuidle] teo: Consider hits and misses metrics of disabled states (Al Stone) [1725618]
+- [cpuidle] teo: Rename local variable in teo_select() (Al Stone) [1725618]
+- [cpuidle] teo: Ignore disabled idle states that are too deep (Al Stone) [1725618]
+- [cpuidle] teo: Get rid of redundant check in teo_update() (Al Stone) [1725618]
+- [cpuidle] teo: Allow tick to be stopped if PM QoS is used (Al Stone) [1725618]
+- [cpuidle] governors: unify last_state_idx (Al Stone) [1725618]
+- [powerpc] powernv/cpuidle: Fix idle states all being marked invalid (Al Stone) [1725618]
+- [cpuidle] menu: Avoid overflows when computing variance (Al Stone) [1725618]
+- [cpuidle] dt: bail out if the idle-state DT node is not compatible (Al Stone) [1725618]
+- [kernel] cpuidle: use BIT() for idle state flags and remove CPUIDLE_DRIVER_FLAGS_MASK (Al Stone) [1725618]
+- [cpuidle] New timer events oriented governor for tickless systems (Al Stone) [1725618]
+- [cpuidle] Add 'above' and 'below' idle state metrics (Al Stone) [1725618]
+- [cpuidle] big.little: fix refcount leak (Al Stone) [1725618]
+- [documentation] documentation: admin-guide: pm: Add cpuidle document (Al Stone) [1725618]
+- [cpuidle] powerpc/pseries/cpuidle: Fix preempt warning (Al Stone) [1725618]
+- [cpuidle] arm: cpuidle: Convert to use cpuidle_register|unregister() (Al Stone) [1725618]
+- [cpuidle] arm: cpuidle: Don't register the driver when back-end init returns -ENXIO (Al Stone) [1725618]
+- [cpuidle] menu: Remove get_loadavg() from the performance multiplier (Al Stone) [1725618]
+- [kernel] sched: Factor out nr_iowait and nr_iowait_cpu (Al Stone) [1725618]
+- [kernel] sched/core: Fix comment regarding nr_iowait_cpu() and get_iowait_load() (Al Stone) [1725618]
+- [cpuidle] menu: Avoid computations when result will be discarded (Al Stone) [1725618]
+- [cpuidle] menu: Drop redundant comparison (Al Stone) [1725618]
+- [cpuidle] menu: Simplify checks related to the polling state (Al Stone) [1725618]
+- [cpuidle] menu: Move the latency_req == 0 special case check (Al Stone) [1725618]
+- [cpuidle] menu: Avoid computations for very close timers (Al Stone) [1725618]
+- [cpuidle] menu: Do not update last_state_idx in menu_select() (Al Stone) [1725618]
+- [cpuidle] menu: Get rid of first_idx from menu_select() (Al Stone) [1725618]
+- [cpuidle] menu: Compute first_idx when latency_req is known (Al Stone) [1725618]
+- [cpuidle] menu: Replace data->predicted_us with local variable (Al Stone) [1725618]
+- [cpuidle] enter_state: Don't needlessly calculate diff time (Al Stone) [1725618]
+- [kernel] cpuidle: Remove unnecessary wrapper cpuidle_get_last_residency() (Al Stone) [1725618]
+- [cpuidle] menu: Update stale polling override comment (Al Stone) [1725618]
+- [cpuidle] menu: Fix white space (Al Stone) [1725618]
+- [cpuidle] powernv/cpuidle: Use parsed device tree values for cpuidle_init (Al Stone) [1725618]
+- [powerpc] powernv/cpuidle: Parse dt idle properties into global structure (Al Stone) [1725618]
+- [cpuidle] arm: cpuidle: silence error on driver registration failure (Al Stone) [1725618]
+
+* Tue Dec 10 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-163.el8]
+- [documentation] docs: admin-guide: Remove threads-max auto-tuning (Joe Lawrence) [1771270]
+- [documentation] docs: admin-guide: Fix min value of threads-max in kernel.rst (Joe Lawrence) [1771270]
+- [kernel] sysctl.c: do not override max_threads provided by userspace (Joe Lawrence) [1771270]
+- [fs] ext4: fix integer overflow when calculating commit interval (Lukas Czerner) [1775166]
+- [fs] ext4: fix punch hole for inline_data file systems (Lukas Czerner) [1775166]
+- [fs] ext4: fix warning inside ext4_convert_unwritten_extents_endio (Lukas Czerner) [1775166]
+- [fs] ext4: set error return correctly when ext4_htree_store_dirent fails (Lukas Czerner) [1775166]
+- [fs] ext4: fix warning when turn on dioread_nolock and inline_data (Lukas Czerner) [1775166]
+- [fs] ext4: use jbd2_inode dirty range scoping (Lukas Czerner) [1775166]
+- [fs] jbd2: introduce jbd2_inode dirty range scoping (Lukas Czerner) [1775166]
+- [mm] add filemap_fdatawait_range_keep_errors() (Lukas Czerner) [1775166]
+- [fs] ext4: enforce the immutable flag on open files (Lukas Czerner) [1775166]
+- [fs] ext4: don't allow any modifications to an immutable file (Lukas Czerner) [1775166]
+- [fs] jbd2: fix typo in comment of journal_submit_inode_data_buffers (Lukas Czerner) [1775166]
+- [fs] jbd2: fix some print format mistakes (Lukas Czerner) [1775166]
+- [fs] ext4: do not delete unlinked inode from orphan list on failed truncate (Lukas Czerner) [1775166]
+- [fs] ext4: wait for outstanding dio during truncate in nojournal mode (Lukas Czerner) [1775166]
+- [fs] ext4: don't perform block validity checks on the journal inode (Lukas Czerner) [1775166]
+- [fs] ext4: fix block validity checks for journal inodes using indirect blocks (Lukas Czerner) [1775166]
+- [fs] ext4: fix miscellaneous sparse warnings (Lukas Czerner) [1775166]
+- [fs] jbd2: fix potential double free (Lukas Czerner) [1775166]
+- [fs] quota: fix condition for resetting time limit in do_set_dqblk() (Lukas Czerner) [1778119]
+- [fs] quota: honor quota type in Q_XGETQSTAT[V] calls (Lukas Czerner) [1778119]
+- [fs] quota: fix a problem about transfer quota (Lukas Czerner) [1778119]
+- [fs] quota: add dqi_dirty_list description to comment of Dquot List Management (Lukas Czerner) [1778119]
+- [fs] quota: check time limit when back out space/inode change (Lukas Czerner) [1778119]
+- [fs] quota: fix wrong indentation (Lukas Czerner) [1778119]
+- [fs] quota: remove trailing whitespaces (Lukas Czerner) [1778119]
+- [fs] quota: code cleanup for __dquot_alloc_space() (Lukas Czerner) [1778119]
+- [fs] quota: Lock s_umount in exclusive mode for Q_XQUOTA{ON, OFF} quotactls (Lukas Czerner) [1778119]
+- [fs] quota: Replace XQM_MAXQUOTAS usage with MAXQUOTAS (Lukas Czerner) [1778119]
+- [hv] vmbus: Fix harmless building warnings without CONFIG_PM_SLEEP (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Resume after fixing up old primary channels (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Suspend after cleaning up hv_sock and sub channels (Mohammed Gamal) [1774675]
+- [kernel] hv: vmbus: Add a helper function is_sub_channel() (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Clean up hv_sock channels by force upon suspend (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Suspend/resume the vmbus itself for hibernation (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Ignore the offers when resuming from hibernation (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Implement suspend/resume for VSC drivers for hibernation (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Fix virt_to_hvpfn() for X86_PAE (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Remove the unused "tsc_page" from struct hv_context (Mohammed Gamal) [1774675]
+- [hv] tools: hv: Use the correct style for SPDX License Identifier (Mohammed Gamal) [1774675]
+- [hv] hv_balloon: Reorganize the probe function (Mohammed Gamal) [1774675]
+- [hv] hv_balloon: Use a static page for the balloon_up send buffer (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Replace page definition with Hyper-V specific one (Mohammed Gamal) [1774675]
+- [hv] hv: Add a module description line to the hv_vmbus driver (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Fix race condition with new ring_buffer_info mutex (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Set ring_info field to 0 and remove memset (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Refactor chan->state if statement (Mohammed Gamal) [1774675]
+- [hv] hv: vmbus: Expose monitor data only when monitor pages are used (Mohammed Gamal) [1774675]
+- [netdrv] hv_netvsc: Fix error handling in netvsc_attach() (Mohammed Gamal) [1774687]
+- [netdrv] hv_netvsc: Fix error handling in netvsc_set_features() (Mohammed Gamal) [1774687]
+- [netdrv] hv_netvsc: Sync offloading features to VF NIC (Mohammed Gamal) [1774687]
+- [netdrv] hv_netvsc: Allow scatter-gather feature to be tunable (Mohammed Gamal) [1774687]
+- [netdrv] hv_netvsc: Fix a warning of suspicious RCU usage (Mohammed Gamal) [1774687]
+- [netdrv] hv_netvsc: Fix extra rcu_read_unlock in netvsc_recv_callback() (Mohammed Gamal) [1774687]
+- [netdrv] hv_netvsc: Set probe mode to sync (Mohammed Gamal) [1774687]
+- [netdrv] hv_netvsc: fix race that may miss tx queue wakeup (Mohammed Gamal) [1774687]
+- [netdrv] nfp: bpf: fix latency bug when updating stack index register (Pablo Cascon) [1729156]
+- [netdrv] nfp: bpf: eliminate zero extension code-gen (Pablo Cascon) [1729156]
+- [netdrv] bnxt_en: Call bnxt_ulp_stop()/bnxt_ulp_start() during suspend/resume (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Call bnxt_ulp_stop()/bnxt_ulp_start() during error recovery (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Improve bnxt_ulp_stop()/bnxt_ulp_start() call sequence (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: flow_offload: offload tunnel decap rules via indirect callbacks (Jonathan Toppins) [1773724]
+- [netdrv] bnxt: Avoid logging an unnecessary message when a flow can't be offloaded (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Add support to collect crash dump via ethtool (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Add support to invoke OP-TEE API to reset firmware (Jonathan Toppins) [1773724]
+- [netdrv] broadcom: bnxt: Fix use true/false for bool (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Avoid disabling pci device in bnxt_remove_one() for already disabled device (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Minor formatting changes in FW devlink_health_reporter (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Adjust the time to wait before polling firmware readiness (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Fix devlink NVRAM related byte order related issues (Jonathan Toppins) [1773724]
+- [netdrv] bnxt_en: Fix the size of devlink MSIX parameters (Jonathan Toppins) [1773724]
+- [nvme] Fix parsing of ANA log page (Ewan Milne) [1769028]
+- [nvme] nvme-multipath: fix ana log nsid lookup when nsid is not found (Ewan Milne) [1769028]
+- [nvme] nvme-multipath: fix possible I/O hang when paths are updated (Ewan Milne) [1769028]
+- [nvme] revert "nvme: update node paths after adding new path" (Ewan Milne) [1769028]
+- [netdrv] mlx5: Update the list of the PCI supported devices (Mohammad Heib) [1776921]
+- [netdrv] mlx5: Fix auto group size calculation (Mohammad Heib) [1776921]
+- [netdrv] mlx5e: Do not use non-EXT link modes in EXT mode (Mohammad Heib) [1776921]
+- [netdrv] mlx5e: Fix set vf link state error flow (Mohammad Heib) [1776921]
+- [netdrv] mlx5: DR, Limit STE hash table enlarge based on bytemask (Mohammad Heib) [1776921]
+- [netdrv] mlx5: DR, Fix invalid EQ vector number on CQ creation (Mohammad Heib) [1776921]
+- [netdrv] mlx5: DR, Skip rehash for tables with byte mask zero (Mohammad Heib) [1776921]
+- [netdrv] mlx5e: Fix error flow cleanup in mlx5e_tc_tun_create_header_ipv4/6 (Mohammad Heib) [1776921]
+- [netdrv] mlx5: DR, Fix matcher builders select check (Mohammad Heib) [1776921]
+- [netdrv] mlx5: Read num_vfs before disabling SR-IOV (Mohammad Heib) [1776921]
+- [netdrv] mlx5: Clear VF's configuration on disabling SRIOV (Mohammad Heib) [1776921]
+- [netdrv] mlx5: DR, Fix memory leak during rule creation (Mohammad Heib) [1776921]
+- [netdrv] mlx5: DR, Fix memory leak in modify action destroy (Mohammad Heib) [1776921]
+- [netdrv] mlx5e: Fix eswitch debug print of max fdb flow (Mohammad Heib) [1776921]
+- [netdrv] mlx5: LAG, Use affinity type enumerators (Mohammad Heib) [1776921]
+- [netdrv] mlx5: E-switch, Enable metadata on own vport (Mohammad Heib) [1776921]
+- [netdrv] mlx5: Correct comment for legacy fields (Mohammad Heib) [1776921]
+- [netdrv] mlx5: Fixed a typo in a comment in esw_del_uc_addr() (Mohammad Heib) [1776921]
+- [netdrv] mlx5: Fix rtable reference leak (Mohammad Heib) [1776921]
+- [netdrv] mlx5: fix a -Wstringop-truncation warning (Mohammad Heib) [1776921]
+- [netdrv] mlx5e: Fix a race with XSKICOSQ in XSK wakeup flow (Mohammad Heib) [1776921]
+- [netdrv] mlx5e: Fix wrong max num channels indication (Mohammad Heib) [1776921]
+- [netdrv] mlx5e: Add XSK zero-copy support (Mohammad Heib) [1776921]
+
+* Tue Dec 10 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-162.el8]
+- [mm] memremap: drop unused SECTION_SIZE and SECTION_MASK (Don Dutile) [1754737]
+- [mm] memremap: Fix reuse of pgmap instances with internal references (Don Dutile) [1754737]
+- [mm] memunmap: don't access uninitialized memmap in memunmap_pages() (Don Dutile) [1754737]
+- [mm] memremap: move from kernel/ to mm/ (Don Dutile) [1754737]
+- [kernel] memremap: provide an optional internal refcount in struct dev_pagemap (Don Dutile) [1754737]
+- [kernel] memremap: replace the altmap_valid field with a PGMAP_ALTMAP_VALID flag (Don Dutile) [1754737]
+- [mm] memremap: remove the data field in struct dev_pagemap (Don Dutile) [1754737]
+- [kernel] memremap: add a migrate_to_ram method to struct dev_pagemap_ops (Don Dutile) [1754737]
+- [kernel] memremap: lift the devmap_enable manipulation into devm_memremap_pages (Don Dutile) [1754737]
+- [nvdimm] memremap: pass a struct dev_pagemap to ->kill and ->cleanup (Don Dutile) [1754737]
+- [kernel] memremap: move dev_pagemap callbacks into a separate structure (Don Dutile) [1754737]
+- [kernel] memremap: validate the pagemap type passed to devm_memremap_pages (Don Dutile) [1754737]
+- [mm] remove MEMORY_DEVICE_PUBLIC support (Don Dutile) [1754737]
+- [mm] migrate.c: cleanup expected_page_refs() (Don Dutile) [1754737]
+- [mm] migration: factor out code to compute expected number of page references (Don Dutile) [1754737]
+- [kernel] mm/devm_memremap_pages: fix final page put race (Don Dutile) [1754737]
+- [kernel] mm/devm_memremap_pages: introduce devm_memunmap_pages (Don Dutile) [1754737]
+- [kernel] memremap.c: remove the unused device_private_entry_fault() export (Don Dutile) [1754737]
+- [base] devres: introduce devm_release_action() (Don Dutile) [1754737]
+- [base] devres: Align data[] to ARCH_KMALLOC_MINALIGN (Don Dutile) [1754737]
+- [base] devres: provide devm_kstrdup_const() (Don Dutile) [1754737]
+- [base] devres: constify p in devm_kfree() (Don Dutile) [1754737]
+- [kernel] mm: move is_kernel_rodata() to asm-generic/sections.h (Don Dutile) [1754737]
+- [kernel] mm: fix vm_fault_t cast in VM_FAULT_GET_HINDEX() (Don Dutile) [1754737]
+- [kernel] mm: create the new vm_fault_t type (Don Dutile) [1754737]
+- [kernel] mm/hmm: convert to use vm_fault_t (Don Dutile) [1754737]
+- [kernel] mm/hmm: fix memremap.h, move dev_page_fault_t callback to hmm (Don Dutile) [1754737]
+- [fs] proc/vmcore.c: Convert to use vmf_error() (Don Dutile) [1754737]
+- [fs] proc/vmcore.c: use new typedef vm_fault_t (Don Dutile) [1754737]
+- [s390] vdso_fault return type (Don Dutile) [1754737]
+- [mm] inline vm_insert_pfn_prot() into caller (Don Dutile) [1754737]
+- [mm] remove vm_insert_pfn() (Don Dutile) [1754737]
+- [mm] make vm_insert_pfn_prot() static (Don Dutile) [1754737]
+- [x86] convert vdso to use vm_fault_t (Don Dutile) [1754737]
+- [mm] introduce vmf_insert_pfn_prot() (Don Dutile) [1754737]
+- [mm] convert __vm_insert_mixed() to vm_fault_t (Don Dutile) [1754737]
+- [kernel] mm: remove vm_insert_mixed() (Don Dutile) [1754737]
+- [fs] cramfs: convert to use vmf_insert_mixed (Don Dutile) [1754737]
+- [scsi] cxlflash: Change return type for fault handler (Don Dutile) [1754737]
+- [misc] ocxl: Change return type for fault handler (Don Dutile) [1754737]
+- [kernel] fs/iomap.c: change return type to vm_fault_t (Don Dutile) [1754737]
+- [mm] swap.c: remove duplicated include (Don Dutile) [1754737]
+- [kernel] perf/aux: Fix the aux_output group inheritance fix (Michael Petlan) [1743210]
+- [kernel] perf/core: Fix inheritance of aux_output groups (Michael Petlan) [1743210]
+- [kernel] perf/aux: Disallow aux_output for kernel events (Michael Petlan) [1743210]
+- [kernel] perf/core: Reattach a misplaced comment (Michael Petlan) [1743210]
+- [kernel] perf/aux: Fix AUX output stopping (Michael Petlan) [1743210]
+- [tools] perf vendor events s390: Add JSON transaction for machine type 8561 (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix use of TRUE with SQLite (Michael Petlan) [1743210]
+- [tools] objtool: Fix build by linking against tools/lib/ctype.o sources (Michael Petlan) [1743210]
+- [tools] perf list: Allow plurals for metric, metricgroup (Michael Petlan) [1743210]
+- [tools] perf vendor events: Minor fixes to the README (Michael Petlan) [1743210]
+- [tools] perf vendor events amd: Remove redundant '[' (Michael Petlan) [1743210]
+- [tools] perf vendor events amd: Add L3 cache events for Family 17h (Michael Petlan) [1743210]
+- [tools] tools include uapi: Update copy of files related to new fspick, fsmount, fsconfig, fsopen, move_mount and open_tree syscalls (Michael Petlan) [1743210]
+- [tools] perf pmu-events: Fix missing "cpu_clk_unhalted.core" event (Michael Petlan) [1743210]
+- [tools] perf annotate: Fix s390 gap between kernel end and module start (Michael Petlan) [1743210]
+- [tools] perf record: Fix module size on s390 (Michael Petlan) [1743210]
+- [tools] perf tools: Fix include paths in ui directory (Michael Petlan) [1743210]
+- [tools] perf tools: Fix a typo in a variable name in the Documentation Makefile (Michael Petlan) [1743210]
+- [tools] perf cpumap: Fix writing to illegal memory in handling cpumap mask (Michael Petlan) [1743210]
+- [tools] perf ftrace: Fix failure to set cpumask when only one cpu is present (Michael Petlan) [1743210]
+- [tools] perf db-export: Fix thread__exec_comm() (Michael Petlan) [1743210]
+- [tools] perf annotate: Fix printing of unaugmented disassembled instructions from BPF (Michael Petlan) [1743210]
+- [tools] perf bench numa: Fix cpu0 binding (Michael Petlan) [1743210]
+- [tools] perf tools: Fix perf.data documentation units for memory size (Michael Petlan) [1743210]
+- [tools] perf header: Fix use of unitialized value warning (Michael Petlan) [1743210]
+- [tools] perf header: Fix divide by zero error if f_header.attr_size==0 (Michael Petlan) [1743210]
+- [tools] tools perf beauty: Fix usbdevfs_ioctl table generator to handle _IOC() (Michael Petlan) [1743210]
+- [tools] perf build: Do not use -Wshadow on gcc < 4.8 (Michael Petlan) [1743210]
+- [tools] perf probe: Avoid calling freeing routine multiple times for same pointer (Michael Petlan) [1743210]
+- [tools] perf probe: Set pev->nargs to zero after freeing pev->args entries (Michael Petlan) [1743210]
+- [tools] perf session: Fix loading of compressed data split across adjacent records (Michael Petlan) [1743210]
+- [tools] perf stat: Always separate stalled cycles per insn (Michael Petlan) [1743210]
+- [tools] perf stat: Fix segfault for event group in repeat mode (Michael Petlan) [1743210]
+- [tools] perf tools: Fix proper buffer size for feature processing (Michael Petlan) [1743210]
+- [tools] perf script: Fix off by one in brstackinsn IPC computation (Michael Petlan) [1743210]
+- [tools] perf script: Improve man page description of metrics (Michael Petlan) [1743210]
+- [tools] perf script: Fix --max-blocks man page description (Michael Petlan) [1743210]
+- [tools] perf vendor events s390: Add JSON files for machine type 8561 (Michael Petlan) [1743210]
+- [tools] perf cs-etm: Return errcode in cs_etm__process_auxtrace_info() (Michael Petlan) [1743210]
+- [tools] perf cs-etm: Remove errnoeous ERR_PTR() usage in cs_etm__process_auxtrace_info (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-postgresql.py: Export switch events (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-sqlite.py: Export switch events (Michael Petlan) [1743210]
+- [tools] perf db-export: Export switch events (Michael Petlan) [1743210]
+- [tools] perf db-export: Factor out db_export__threads() (Michael Petlan) [1743210]
+- [tools] perf script: Add scripting operation process_switch() (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Use new 'has_calls' column (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Remove redundant semi-colons (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-postgresql.py: Add has_calls column to comms table (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-sqlite.py: Add has_calls column to comms table (Michael Petlan) [1743210]
+- [tools] perf db-export: Also export thread's current comm (Michael Petlan) [1743210]
+- [tools] perf db-export: Factor out db_export__comm() (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-postgresql.py: Export comm details (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-sqlite.py: Export comm details (Michael Petlan) [1743210]
+- [tools] perf db-export: Export comm details (Michael Petlan) [1743210]
+- [tools] perf db-export: Fix a white space issue in db_export__sample() (Michael Petlan) [1743210]
+- [tools] perf db-export: Move export__comm_thread into db_export__sample() (Michael Petlan) [1743210]
+- [tools] perf db-export: Export comm before exporting thread (Michael Petlan) [1743210]
+- [tools] perf db-export: Export main_thread in db_export__sample() (Michael Petlan) [1743210]
+- [tools] perf db-export: Pass main_thread to db_export__thread() (Michael Petlan) [1743210]
+- [tools] perf db-export: Rename db_export__comm() to db_export__exec_comm() (Michael Petlan) [1743210]
+- [tools] perf db-export: Get rid of db_export__deferred() (Michael Petlan) [1743210]
+- [tools] perf trace: Auto bump rlimit(MEMLOCK) for eBPF maps sake (Michael Petlan) [1743210]
+- [tools] perf test: Auto bump rlimit(MEMLOCK) for BPF test sake (Michael Petlan) [1743210]
+- [tools] perf tools: Introduce rlimit__bump_memlock() helper (Michael Petlan) [1743210]
+- [tools] perf-probe: Add user memory access attribute support (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Fix potential NULL pointer dereference found by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf intel-bts: Fix potential NULL pointer dereference found by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf script: Assume native_arch for pipe mode (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-sqlite.py: Fix DROP VIEW power_events_view (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-postgresql.py: Fix DROP VIEW power_events_view (Michael Petlan) [1743210]
+- [tools] perf hists browser: Fix potential NULL pointer dereference found by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf cs-etm: Fix potential NULL pointer dereference found by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf parse-events: remove unused variable: error (Michael Petlan) [1743210]
+- [tools] perf parse-events: Remove unused variable 'i' (Michael Petlan) [1743210]
+- [tools] perf metricgroup: Add missing list_del_init() when flushing egroups list (Michael Petlan) [1743210]
+- [tools] perf tools: Use list_del_init() more thorougly (Michael Petlan) [1743210]
+- [tools] perf tools: Use zfree() where applicable (Michael Petlan) [1743210]
+- [tools] tools lib: Adopt zalloc()/zfree() from tools/perf (Michael Petlan) [1743210]
+- [tools] perf tools: Move get_current_dir_name() cond prototype out of util.h (Michael Petlan) [1743210]
+- [tools] perf namespaces: Move the conditional setns() prototype to namespaces.h (Michael Petlan) [1743210]
+- [tools] perf tools: Add missing headers, mostly stdlib.h (Michael Petlan) [1743210]
+- [tools] perf evsel: perf_evsel__name(NULL) is valid, no need to check evsel (Michael Petlan) [1743210]
+- [tools] perf session: Fix potential NULL pointer dereference found by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf inject: The tool->read() call may pass a NULL evsel, handle it (Michael Petlan) [1743210]
+- [tools] perf map: Fix potential NULL pointer dereference found by smatch tool (Michael Petlan) [1743210]
+- [tools] perf trace: Fix potential NULL pointer dereference found by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf annotate: Fix dereferencing freed memory found by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf top: Fix potential NULL pointer dereference detected by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf stat: Fix use-after-freed pointer detected by the smatch tool (Michael Petlan) [1743210]
+- [tools] perf test mmap-thread-lookup: Initialize variable to suppress memory sanitizer warning (Michael Petlan) [1743210]
+- [tools] perf script: Allow specifying the files to process guest samples (Michael Petlan) [1743210]
+- [tools] perf tools metric: Don't include duration_time in group (Michael Petlan) [1743210]
+- [tools] perf list: avoid extra : for --raw metrics (Michael Petlan) [1743210]
+- [tools] perf vendor events intel: Metric fixes for SKX/CLX (Michael Petlan) [1743210]
+- [tools] perf tools: Fix typos / broken sentences (Michael Petlan) [1743210]
+- [tools] perf jevents: Add support for Hisi hip08 L3C PMU aliasing (Michael Petlan) [1743210]
+- [tools] perf jevents: Add support for Hisi hip08 HHA PMU aliasing (Michael Petlan) [1743210]
+- [tools] perf jevents: Add support for Hisi hip08 DDRC PMU aliasing (Michael Petlan) [1743210]
+- [tools] perf pmu: Support more complex PMU event aliasing (Michael Petlan) [1743210]
+- [tools] perf diff: Documentation -c cycles option (Michael Petlan) [1743210]
+- [tools] perf diff: Print the basic block cycles diff (Michael Petlan) [1743210]
+- [tools] perf diff: Link same basic blocks among different data (Michael Petlan) [1743210]
+- [tools] perf diff: Use hists to manage basic blocks per symbol (Michael Petlan) [1743210]
+- [tools] perf diff: Check if all data files with branch stacks (Michael Petlan) [1743210]
+- [tools] perf hists: Add block_info in hist_entry (Michael Petlan) [1743210]
+- [tools] perf symbol: Create block_info structure (Michael Petlan) [1743210]
+- [tools] perf jevents: Use nonlocal include statements in pmu-events.c (Michael Petlan) [1743210]
+- [tools] perf annotate: Add csky support (Michael Petlan) [1743210]
+- [tools] perf stat: Fix metrics with --no-merge (Michael Petlan) [1743210]
+- [tools] perf stat: Fix group lookup for metric group (Michael Petlan) [1743210]
+- [tools] perf stat: Don't merge events in the same PMU (Michael Petlan) [1743210]
+- [tools] perf stat: Make metric event lookup more robust (Michael Petlan) [1743210]
+- [tools] tools lib: Move argv_{split, free} from tools/perf/util/ (Michael Petlan) [1743210]
+- [tools] perf tools: Drop strxfrchar(), use strreplace() equivalent from kernel (Michael Petlan) [1743210]
+- [tools] tools lib: Adopt strreplace() from the kernel (Michael Petlan) [1743210]
+- [tools] perf tools: Ditch rtrim(), use strim() from tools/lib (Michael Petlan) [1743210]
+- [tools] perf tools: Remove trim() implementation, use tools/lib's strim() (Michael Petlan) [1743210]
+- [tools] tools lib: Adopt strim() from the kernel (Michael Petlan) [1743210]
+- [tools] perf tools: Ditch rtrim(), use skip_spaces() to get closer to the kernel (Michael Petlan) [1743210]
+- [tools] perf report: Use skip_spaces() (Michael Petlan) [1743210]
+- [tools] perf metricgroup: Use strsep() (Michael Petlan) [1743210]
+- [tools] perf strfilter: Use skip_spaces() (Michael Petlan) [1743210]
+- [tools] perf probe: Use skip_spaces() for argv handling (Michael Petlan) [1743210]
+- [tools] perf time-utils: Use skip_spaces() (Michael Petlan) [1743210]
+- [tools] perf header: Use skip_spaces() in __write_cpudesc() (Michael Petlan) [1743210]
+- [tools] perf stat: Use recently introduced skip_spaces() (Michael Petlan) [1743210]
+- [tools] tools lib: Adopt skip_spaces() from the kernel sources (Michael Petlan) [1743210]
+- [tools] perf tools: Use linux/ctype.h in more places (Michael Petlan) [1743210]
+- [tools] tools perf: Move from sane_ctype.h obtained from git to the Linux's original (Michael Petlan) [1743210]
+- [tools] perf tools: Add missing util.h to pick up 'page_size' variable (Michael Petlan) [1743210]
+- [tools] perf tools: Remove old baggage that is util/include/linux/ctype.h (Michael Petlan) [1743210]
+- [tools] perf symbols: We need util.h in symbol-elf.c for zfree() (Michael Petlan) [1743210]
+- [tools] perf kallsyms: Adopt hex2u64 from tools/perf/util/util.h (Michael Petlan) [1743210]
+- [tools] tools x86 machine: Add missing util.h to pick up 'page_size' (Michael Petlan) [1743210]
+- [tools] perf string: Move 'dots' and 'graph_dotted_line' out of sane_ctype.h (Michael Petlan) [1743210]
+- [tools] perf ctype: Remove now unused 'spaces' variable (Michael Petlan) [1743210]
+- [tools] perf ui stdio: No need to use 'spaces' to left align (Michael Petlan) [1743210]
+- [tools] perf ctype: Remove unused 'graph_line' variable (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-postgresql.py: Export Intel PT power and ptwrite events (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-sqlite.py: Export Intel PT power and ptwrite events (Michael Petlan) [1743210]
+- [tools] perf db-export: Export synth events (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Synthesize CBR events when last seen value changes (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add CBR value to decoder state (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Cater for CBR change in PSB+ (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Decoder to output CBR changes immediately (Michael Petlan) [1743210]
+- [tools] perf thread-stack: Eliminate code duplicating thread_stack__pop_ks() (Michael Petlan) [1743210]
+- [tools] perf thread-stack: Fix thread stack return from kernel for kernel-only case (Michael Petlan) [1743210]
+- [tools] perf tools: Fix cache.h include directive (Michael Petlan) [1743210]
+- [tools] tools build: Fix the zstd test in the test-all.c common case feature test (Michael Petlan) [1743210]
+- [tools] perf build: Handle slang being in /usr/include and in /usr/include/slang/ (Michael Petlan) [1743210]
+- [tools] tools build: Add test to check if slang.h is in /usr/include/slang/ (Michael Petlan) [1743210]
+- [tools] perf tools: Don't hardcode host include path for libslang (Michael Petlan) [1743210]
+- [tools] perf evsel: Make perf_evsel__name() accept a NULL argument (Michael Petlan) [1743210]
+- [tools] perf trace: Fixup pointer arithmetic when consuming augmented syscall args (Michael Petlan) [1743210]
+- [tools] perf pmu: Fix uncore PMU alias list for ARM64 (Michael Petlan) [1743210]
+- [tools] perf tests: Add missing SPDX headers (Michael Petlan) [1743210]
+- [tools] tools build feature tests: Add missing SPDX headers (Michael Petlan) [1743210]
+- [tools] perf trace: Streamline validation of select syscall names list (Michael Petlan) [1743210]
+- [tools] perf trace: Fix exclusion of not available syscall names from selector list (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add callchain to synthesized PEBS sample (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add memory information to synthesized PEBS sample (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add LBR information to synthesized PEBS sample (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add XMM registers to synthesized PEBS sample (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add gp registers to synthesized PEBS sample (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Synthesize PEBS sample basic information (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Factor out common sample preparation for re-use (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Prepare to synthesize PEBS samples (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add decoder support for PEBS via PT (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add Intel PT packet decoder test (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add new packets for PEBS via PT (Michael Petlan) [1743210]
+- [tools] perf tests arm64: Compile tests unconditionally (Michael Petlan) [1743210]
+- [tools] perf trace: Skip unknown syscalls when expanding strace like syscall groups (Michael Petlan) [1743210]
+- [tools] perf report: Support s390 diag event display on x86 (Michael Petlan) [1743210]
+- [tools] perf report: Fix OOM error in TUI mode on s390 (Michael Petlan) [1743210]
+- [tools] perf test 6: Fix missing kvm module load for s390 (Michael Petlan) [1743210]
+- [tools] perf time-utils: Add support for multiple explicit time intervals (Michael Petlan) [1743210]
+- [tools] perf tests: Add a test for time-utils (Michael Petlan) [1743210]
+- [tools] perf time-utils: Make perf_time__parse_for_ranges() more logical (Michael Petlan) [1743210]
+- [tools] perf time-utils: Simplify perf_time__parse_for_ranges() error paths slightly (Michael Petlan) [1743210]
+- [tools] perf time-utils: Fix --time documentation (Michael Petlan) [1743210]
+- [tools] perf time-utils: Prevent percentage time range overlap (Michael Petlan) [1743210]
+- [tools] perf time-utils: Factor out set_percent_time() (Michael Petlan) [1743210]
+- [tools] perf time-utils: Treat time ranges consistently (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add support for efficient time interval filtering (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add support for lookahead (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Factor out intel_pt_get_buffer() (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add intel_pt_fast_forward() (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add reposition parameter to intel_pt_get_data() (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Factor out intel_pt_reposition() (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Factor out intel_pt_8b_tsc() (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add lookahead callback (Michael Petlan) [1743210]
+- [tools] perf report: Set perf time interval in itrace_synth_ops (Michael Petlan) [1743210]
+- [tools] perf script: Set perf time interval in itrace_synth_ops (Michael Petlan) [1743210]
+- [tools] perf auxtrace: Add perf time interval to itrace_synth_ops (Michael Petlan) [1743210]
+- [tools] perf config: Update default value for llvm.clang-bpf-cmd-template (Michael Petlan) [1743210]
+- [tools] perf cs-etm: Properly set the value of 'old' and 'head' in snapshot mode (Michael Petlan) [1743210]
+- [tools] perf data: Fix perf.data documentation for HEADER_CPU_TOPOLOGY (Michael Petlan) [1743210]
+- [tools] perf tools: Apply new CPU topology sysfs attributes (Michael Petlan) [1743210]
+- [tools] perf header: Rename "sibling cores" to "sibling sockets" (Michael Petlan) [1743210]
+- [tools] perf stat: Support per-die aggregation (Michael Petlan) [1743210]
+- [tools] perf header: Add die information in CPU topology (Michael Petlan) [1743210]
+- [tools] perf cpumap: Retrieve die id information (Michael Petlan) [1743210]
+- [tools] perf evsel: Remove superfluous nthreads system_wide setup in alloc_fd() (Michael Petlan) [1743210]
+- [tools] perf record: Add support to collect callchains from kernel or user space only (Michael Petlan) [1743210]
+- [tools] perf config: Bail out when a handler returns failure for a key-value pair (Michael Petlan) [1743210]
+- [tools] perf trace: Exit when failing to build eBPF program (Michael Petlan) [1743210]
+- [tools] perf trace: Associate more argument names with the filename beautifier (Michael Petlan) [1743210]
+- [tools] perf trace: Consume the augmented_raw_syscalls payload (Michael Petlan) [1743210]
+- [tools] perf augmented_raw_syscalls: Move reading filename to the loop (Michael Petlan) [1743210]
+- [tools] perf augmented_raw_syscalls: Change helper to consider just the augmented_filename part (Michael Petlan) [1743210]
+- [tools] perf augmented_raw_syscalls: Move the probe_read_str to a separate function (Michael Petlan) [1743210]
+- [tools] perf augmented_raw_syscalls: Tell which args are filenames and how many bytes to copy (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Select find text when find bar is activated (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Add IPC information to Call Tree (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Add IPC information to Call Graph Graph (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Add CallGraphModelParams (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Add IPC information to the Branch reports (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-postgresql.py: Export IPC information (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-sqlite.py: Export IPC information (Michael Petlan) [1743210]
+- [tools] perf db-export: Export IPC information (Michael Petlan) [1743210]
+- [tools] perf db-export: Add brief documentation (Michael Petlan) [1743210]
+- [tools] perf thread-stack: Accumulate IPC information (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Document IPC usage (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Accumulate cycle count from TSC/TMA/MTC packets (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Re-factor TIP cases in intel_pt_walk_to_ip (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Record when decoding PSB+ packets (Michael Petlan) [1743210]
+- [tools] perf script: Add output of IPC ratio (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Add support for samples to contain IPC ratio (Michael Petlan) [1743210]
+- [tools] perf tools: Add IPC information to perf_sample (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Accumulate cycle count from CYC packets (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Factor out intel_pt_update_sample_time (Michael Petlan) [1743210]
+- [tools] perf record: Allow mixing --user-regs with --call-graph=dwarf (Michael Petlan) [1743210]
+- [tools] perf symbols: Remove unused variable 'err' (Michael Petlan) [1743210]
+- [tools] perf data: document directory format header: HEADER_DIR_FORMAT (Michael Petlan) [1743210]
+- [tools] perf data: document clockid header: HEADER_CLOCKID (Michael Petlan) [1743210]
+- [tools] perf data: document memory topology header: HEADER_MEM_TOPOLOGY (Michael Petlan) [1743210]
+- [tools] perf data: Add description of header HEADER_BPF_PROG_INFO and HEADER_BPF_BTF (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Rationalize intel_pt_sync_switch()'s use of next_tid (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Improve sync_switch by processing PERF_RECORD_SWITCH* in events (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-postgresql.py: Add support for pyside2 (Michael Petlan) [1743210]
+- [tools] perf scripts python: export-to-sqlite.py: Add support for pyside2 (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Add support for pyside2 (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Use argparse module for argument parsing (Michael Petlan) [1743210]
+- [tools] perf scripts python: exported-sql-viewer.py: Change python2 to python (Michael Petlan) [1743210]
+- [tools] perf top: Lower message level for failure on synthesizing events for pre-existing BPF programs (Michael Petlan) [1743210]
+- [tools] perf machine: Return NULL instead of null-terminating /proc/version array (Michael Petlan) [1743210]
+- [tools] perf version: Append 12 git SHA chars to the version string (Michael Petlan) [1743210]
+- [tools] perf script: Remove superfluous BPF event titles (Michael Petlan) [1743210]
+- [tools] perf script: Add --show-bpf-events to show eBPF related events (Michael Petlan) [1743210]
+- [tools] perf tests: Add map_groups__merge_in test (Michael Petlan) [1743210]
+- [tools] perf script: Pad DSO name for --call-trace (Michael Petlan) [1743210]
+- [tools] perf dso: Add BPF DSO read and size hooks (Michael Petlan) [1743210]
+- [tools] perf dso: Simplify dso_cache__read function (Michael Petlan) [1743210]
+- [tools] perf dso: Separate generic code in dso_cache__read (Michael Petlan) [1743210]
+- [tools] perf dso: Separate generic code in dso__data_file_size() (Michael Petlan) [1743210]
+- [tools] perf tools: Remove const from thread read accessors (Michael Petlan) [1743210]
+- [tools] perf top: Add --namespaces option (Michael Petlan) [1743210]
+- [tools] perf beauty: Add generator for sync_file_range's 'flags' arg values (Michael Petlan) [1743210]
+- [tools] perf trace: Beautify 'fsmount' arguments (Michael Petlan) [1743210]
+- [tools] perf trace: Introduce syscall_arg__scnprintf_strarray_flags (Michael Petlan) [1743210]
+- [tools] perf beauty: Add generator for fsmount's 'attr_flags' arg values (Michael Petlan) [1743210]
+- [tools] perf trace: Beautify 'fsconfig' arguments (Michael Petlan) [1743210]
+- [tools] perf beauty: Add generator for fsconfig's 'cmd' arg values (Michael Petlan) [1743210]
+- [tools] perf trace: Beautify 'fspick' arguments (Michael Petlan) [1743210]
+- [tools] perf beauty: Add generator for fspick's 'flags' arg values (Michael Petlan) [1743210]
+- [tools] perf trace: Beautify 'move_mount' arguments (Michael Petlan) [1743210]
+- [tools] perf beauty: Add generator for 'move_mount' flags argument (Michael Petlan) [1743210]
+- [tools] perf augmented_raw_syscalls: Fix up comment (Michael Petlan) [1743210]
+- [tools] perf tools: Preserve eBPF maps when loading kcore (Michael Petlan) [1743210]
+- [tools] perf machine: Keep zero in pgoff BPF map (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Fix itrace defaults for perf script intel-pt documentation (Michael Petlan) [1743210]
+- [tools] perf auxtrace: Fix itrace defaults for perf script (Michael Petlan) [1743210]
+- [tools] perf intel-pt: Fix itrace defaults for perf script (Michael Petlan) [1743210]
+- [tools] perf-with-kcore.sh: Always allow fix_buildid_cache_permissions (Michael Petlan) [1743210]
+- [tools] tools build: Check if gettid() is available before providing helper (Michael Petlan) [1743210]
+- [tools] tools build feature: Check if get_current_dir_name() is available (Michael Petlan) [1743210]
+- [tools] perf jvmti: Address gcc string overflow warning for strncpy() (Michael Petlan) [1743210]
+- [tools] perf python: Remove -fstack-protector-strong if clang doesn't have it (Michael Petlan) [1743210]
+- [tools] perf annotate tui browser: Do not use member from variable within its own initialization (Michael Petlan) [1743210]
+- [tools] perf thread: Allow references to thread objects after machine__exit() (Michael Petlan) [1743210]
+- [fs] sysfs: Fix internal_create_group() for named group updates (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Support PEBS output to PT (Michael Petlan) [1743210]
+- [kernel] perf: Allow normal events to output AUX data (Michael Petlan) [1743210]
+- [x86] perf/x86/amd/ibs: Handle erratum #420 only on the affected CPU family (10h) (Michael Petlan) [1743210]
+- [x86] perf/x86/amd/ibs: Fix reading of the IBS OpData register and thus precise RIP validity (Michael Petlan) [1743210]
+- [kernel] perf/hw_breakpoint: Fix arch_hw_breakpoint use-before-initialization (Michael Petlan) [1743210]
+- [x86] perf/x86/amd/ibs: Fix sample bias for dispatched micro-ops (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Restrict period on Nehalem (Michael Petlan) [1743210]
+- [x86] perf/x86: Fix typo in comment (Michael Petlan) [1743210]
+- [kernel] perf/core: Fix creating kernel counters for PMUs that override event->cpu (Michael Petlan) [1743210]
+- [x86] perf/x86: Apply more accurate check on hypervisor platform (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Fix invalid Bit 13 for Icelake MSR_OFFCORE_RSP_x register (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Fix SLOTS PEBS event constraint (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Mark expected switch fall-throughs (Michael Petlan) [1743210]
+- [kernel] perf_event_get(): don't bother with fget_raw() (Michael Petlan) [1743210]
+- [kernel] perf/core: Fix exclusive events' grouping (Michael Petlan) [1743210]
+- [x86] perf/x86/amd/uncore: Set the thread mask for F17h L3 PMCs (Michael Petlan) [1743210]
+- [perf] x86/amd/uncore: Do not set 'ThreadMask' and 'SliceMask' for non-L3 PMCs (Michael Petlan) [1743210]
+- [kernel] perf/core: Fix race between close() and fork() (Michael Petlan) [1743210]
+- [perf] cgroups: Don't rotate events for cgroups unnecessarily (Michael Petlan) [1743210]
+- [x86] perf/x86/rapl: Get quirk state from new probe framework (Michael Petlan) [1743210]
+- [x86] perf/x86/rapl: Get attributes from new probe framework (Michael Petlan) [1743210]
+- [x86] perf/x86/rapl: Get MSR values from new probe framework (Michael Petlan) [1743210]
+- [x86] perf/x86/rapl: Get rapl_cntr_mask from new probe framework (Michael Petlan) [1743210]
+- [x86] intel: Aggregate big core client naming (Michael Petlan) [1743210]
+- [x86] perf/x86/rapl: Use new MSR detection interface (Michael Petlan) [1743210]
+- [x86] perf/x86/cstate: Use new probe function (Michael Petlan) [1743210]
+- [x86] perf/x86/msr: Use new probe function (Michael Petlan) [1743210]
+- [x86] perf/x86: Add MSR probe interface (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Disable check_msr for real HW (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Use ->is_visible callback for default group (Michael Petlan) [1743210]
+- [x86] perf/x86/intel/uncore: Add IMC uncore support for Snow Ridge (Michael Petlan) [1743210]
+- [x86] perf/x86/intel/uncore: Clean up client IMC (Michael Petlan) [1743210]
+- [x86] perf/x86/intel/uncore: Support MMIO type uncore blocks (Michael Petlan) [1743210]
+- [x86] perf/x86/intel/uncore: Factor out box ref/unref functions (Michael Petlan) [1743210]
+- [x86] perf/x86/intel/uncore: Add uncore support for Snow Ridge server (Michael Petlan) [1743210]
+- [x86] perf/x86/intel/uncore: Handle invalid event coding for free-running counter (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Add more Icelake CPUIDs (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Add Icelake desktop CPUID (Michael Petlan) [1743210]
+- [x86] perf/x86: Use update attribute groups for default attributes (Michael Petlan) [1743210]
+- [x86] perf/x86/intel: Use update attributes for skylake format (Michael Petlan) [1743210]
+- [x86] perf/x86: Use update attribute groups for extra format (Michael Petlan) [1743210]
+- [x86] perf/x86: Use update attribute groups for caps (Michael Petlan) [1743210]
+- [x86] perf/x86: Add is_visible attribute_group callback for base events (Michael Petlan) [1743210]
+- [x86] perf/x86: Use the new pmu::update_attrs attribute group (Michael Petlan) [1743210]
+- [x86] perf/x86: Get rid of x86_pmu::event_attrs (Michael Petlan) [1743210]
+- [x86] perf/x86/regs: Check reserved bits (Michael Petlan) [1743210]
+- [fs] sysfs: Add sysfs_update_groups function (Michael Petlan) [1743210]
+- [kernel] perf/core: Add attr_groups_update into struct pmu (Michael Petlan) [1743210]
+- [x86] perf/x86/intel/uncore: Add new IMC PCI IDs for KabyLake, AmberLake and WhiskeyLake CPUs (Michael Petlan) [1743210]
+- [x86] perf/x86/intel/uncore: Add tabs to Uncore IMC PCI IDs (Michael Petlan) [1743210]
+- [kernel] perf/core: Allow non-privileged uprobe for user processes (Michael Petlan) [1743210]
+- [x86] perf/x86: Add Intel Ice Lake NNPI uncore support (Michael Petlan) [1743210]
+- [perf] arm_pmu: acpi: spe: Add initial MADT/SPE probing (Michael Petlan) [1743210]
+- [netdrv] mwifiex: fix possible heap overflow in mwifiex_process_country_ie() (Jarod Wilson) [1776210] {CVE-2019-14895}
+- [kernel] crash_core: Make S390 share the same crashkernel=auto reservation policy as X86_64 (Baoquan He) [1780432]
+- [s390] kasan: avoid report in get_wchan (Philipp Rudo) [1780112 1780111]
+- [s390] process: avoid potential reading of freed stack (Philipp Rudo) [1780112]
+- [fs] cifs: don't use 'pre:' for MODULE_SOFTDEP (Leif Sahlberg) [1767094]
+- [hwmon] Do not output deprecated warning for hwmon_device_register() (Prarit Bhargava) [1778295]
+- [scsi] lpfc: size cpu map by last cpu id set (Dick Kennedy) [1778912]
+- [scsi] lpfc: use hdwq assigned cpu for allocation (Dick Kennedy) [1778908]
+- [scsi] be2iscsi: Include null char in SET_HOST_DATA (Maurizio Lombardi) [1776358]
+- [netdrv] vmxnet3: turn off lro when rxcsum is disabled (Neil Horman) [1776056]
+- [mmc] sdhci-pci: Add another Id for Intel CML (Alexander Beregalov) [1766718]
+- [x86] kvm: untaint kernel for tech-preview when using nested VMX (Paolo Bonzini) [1726756]
+- [powerpc] kvm: ppc: book3s hv: xive: Fix potential page leak on error path (Laurent Vivier) [1760202]
+- [powerpc] kvm: ppc: book3s hv: xive: Free previous EQ page when setting up a new one (Laurent Vivier) [1760202]
+- [virt] kvm: arm/arm64: vgic: Don't rely on the wrong pending table (Auger Eric) [1777059]
+- [x86] kvm: x86: remove set but not used variable 'called' (Nitesh Narayan Lal) [1773677]
+- [x86] kvm: x86: Zero the IOAPIC scan request dest vCPUs bitmap (Nitesh Narayan Lal) [1773677]
+- [x86] kvm: x86: deliver KVM IOAPIC scan request to target vCPUs (Nitesh Narayan Lal) [1773677]
+- [kernel] kvm: remember position in kvm->vcpus array (Nitesh Narayan Lal) [1773677]
+- [kernel] watchdog: Reduce message verbosity (Vitaly Kuznetsov) [1774915]
+
+* Fri Dec 06 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-161.el8]
+- [fs] binfmt_elf: Do not move brk for INTERP-less ET_EXEC (Waiman Long) [1749633]
+- [fs] binfmt_elf: move brk out of mmap when doing direct loader exec (Waiman Long) [1749633]
+- [gpu] drm/i915/cmdparser: Fix jump whitelist clearing (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915/gen8+: Add RC6 CTX corruption WA (Dave Airlie) [1756805] {CVE-2019-0154}
+- [gpu] drm/i915: Lower RM timeout to avoid DSI hard hangs (Dave Airlie) [1756805] {CVE-2019-0154}
+- [gpu] drm/i915/cmdparser: Ignore Length operands during command matching (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915/cmdparser: Add support for backward jumps (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915/cmdparser: Use explicit goto for error paths (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915: Add gen9 BCS cmdparsing (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915: Allow parsing of unsized batches (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915: Support ro ppgtt mapped cmdparser shadow buffers (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915: Add support for mandatory cmdparsing (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915: Remove Master tables from cmdparser (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915: Disable Secure Batches for gen6+ (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] drm/i915: Rename gen7 cmdparser tables (Dave Airlie) [1756873] {CVE-2019-0155}
+- [gpu] [drm] radeon: fix bad DMA from INTERRUPT_CNTL2 (Sam Bobroff) [1293697]
+- [netdrv] mwifiex: Fix heap overflow in mmwifiex_process_tdls_action_frame() (Jarod Wilson) [1776162] {CVE-2019-14901}
+- [netdrv] mlx4_en: Fix wrong limitation for number of TX rings (Mohammad Heib) [1776822]
+- [netdrv] mlx4_en: fix mlx4 ethtool -N insertion (Mohammad Heib) [1776822]
+- [netdrv] mlx4_core: fix wrong comment about the reason of subtract one from the max_cqes (Mohammad Heib) [1776822]
+- [netdrv] ibmvnic: Serialize device queries (Steve Best) [1778037]
+- [netdrv] ibmvnic: Bound waits for device queries (Steve Best) [1778037]
+- [netdrv] ibmvnic: Terminate waiting device threads after loss of service (Steve Best) [1778037]
+- [netdrv] ibmvnic: Fix completion structure initialization (Steve Best) [1778037]
+- [netdrv] ibmvnic: Ignore H_FUNCTION return from H_EOI to tolerate XIVE mode (Steve Best) [1778037]
+- [netdrv] revert "net/ibmvnic: Fix EOI when running in XIVE mode" (Steve Best) [1778037]
+- [netdrv] cnic: Set fp_hsi_ver as part of CLIENT_SETUP ramrod (Manish Chopra) [1770797]
+- [netdrv] bnx2x: Fix PF-VF communication over multi-cos queues (Manish Chopra) [1770797]
+- [netdrv] bnx2x: Enable Multi-Cos feature (Manish Chopra) [1770797]
+- [netdrv] bnx2x: Utilize FW 7.13.15.0 (Manish Chopra) [1770797]
+- [fs] seq_file: fix problem when seeking mid-record (Bill O'Donnell) [1753822]
+- [documentation] fs/seq_file.c: simplify seq_file iteration code and interface (Bill O'Donnell) [1753822]
+- [scripts] kbuild: replace BASH-specific ${@:2} with shift and ${@} (Jiri Olsa) [1739493]
+- [scripts] btf: do not use CONFIG_OUTPUT_FORMAT (Jiri Olsa) [1739493]
+- [kernel] btf: fix return value check in btf_vmlinux_init() (Jiri Olsa) [1739493]
+- [kernel] btf: rename /sys/kernel/btf/kernel into /sys/kernel/btf/vmlinux (Jiri Olsa) [1739493]
+- [scripts] btf: expose BTF info through sysfs (Jiri Olsa) [1739493]
+- [netdrv] qede: fix NULL pointer deref in __qede_remove() (Manish Chopra) [1769203]
+- [gpu] cleanup: Remove .rej files (Prarit Bhargava) [1779738]
+- [lib] string: Add strscpy_pad() function (Josef Oskera) [1764588]
+- [char] virtio_console: allocate inbufs in add_port() only if it is needed (Pankaj Gupta) [1612795]
+- [fs] xfs: add kmem_alloc_io() (Bill O'Donnell) [1583556]
+- [fs] xfs: make mem_to_page available outside of xfs_buf.c (Bill O'Donnell) [1583556]
+- [fs] xfs: get allocation alignment from the buftarg (Bill O'Donnell) [1583556]
+- [fs] xfs: add kmem_alloc_io() (Bill O'Donnell) [1583556]
+- [fs] cifs: Fix cifsInodeInfo lock_sem deadlock when reconnect occurs (Leif Sahlberg) [1765979]
+- [fs] cifs: avoid using MID 0xFFFF (Leif Sahlberg) [1765979]
+- [fs] cifs: Fix retry mid list corruption on reconnects (Leif Sahlberg) [1765979]
+- [fs] nfsd: allow fh_want_write to be called twice ("J. Bruce Fields") [1699222]
+- [net] revert "sunrpc: Fix up task signalling" (Dave Wysochanski) [1776067]
+- [s390] kasan: support memcpy_real with TRACE_IRQFLAGS (Philipp Rudo) [1777468]
+- [s390] kasan: add kdump support (Philipp Rudo) [1777468]
+- [s390] idle: fix cpu idle time calculation (Philipp Rudo) [1777361]
+- [s390] kaslr: add support for R_390_GLOB_DAT relocation type (Philipp Rudo) [1777467]
+- [x86] jump_label: Make tp_vec_nr static (Daniel Bristot de Oliveira) [1731860]
+- [x86] jump_label: Batch jump label updates (Daniel Bristot de Oliveira) [1731860]
+- [kernel] jump_label: Batch updates if arch supports it (Daniel Bristot de Oliveira) [1731860]
+- [x86] alternative: Batch of patch operations (Daniel Bristot de Oliveira) [1731860]
+- [kernel] jump_label: Sort entries of the same key by the code (Daniel Bristot de Oliveira) [1731860]
+- [x86] jump_label: Add a __jump_label_set_jump_code() helper (Daniel Bristot de Oliveira) [1731860]
+- [kernel] jump_label: Don't warn on __exit jump entries (Daniel Bristot de Oliveira) [1731860]
+- [kernel] jump_label: Add a jump_label_can_update() helper (Daniel Bristot de Oliveira) [1731860]
+- [x86] alternatives: Remove the return value of text_poke_*() (Daniel Bristot de Oliveira) [1731860]
+- [x86] jump-label: Remove support for custom text poker (Daniel Bristot de Oliveira) [1731860]
+- [x86] jump_label: Use text_poke_early() during early init (Daniel Bristot de Oliveira) [1731860]
+- [x86] alternatives: Add text_poke_kgdb() to not assert the lock when debugging (Daniel Bristot de Oliveira) [1731860]
+- [x86] kprobes: Prohibit probing on functions before kprobe_int3_handler() (Daniel Bristot de Oliveira) [1731860]
+- [kernel] jump_label: Fix NULL dereference bug in __jump_label_mod_update() (Daniel Bristot de Oliveira) [1731860]
+- [kernel] jump_label: Annotate entries that operate on __init code earlier (Daniel Bristot de Oliveira) [1731860]
+- [x86] jump_label: Switch to jump_entry accessors (Daniel Bristot de Oliveira) [1731860]
+- [kernel] jump_label: Implement generic support for relative references (Daniel Bristot de Oliveira) [1731860]
+- [kernel] jump_label: Abstract jump_entry member accessors (Daniel Bristot de Oliveira) [1731860]
+- [x86] alternatives: Lockdep-enforce text_mutex in text_poke*() (Daniel Bristot de Oliveira) [1731860]
+- [x86] revert "x86/paravirt: Set up the virt_spin_lock_key after static keys get initialized" (Daniel Bristot de Oliveira) [1731860]
+- [x86] jump_label: Initialize static branching early (Vitaly Kuznetsov) [1777260]
+- [x86] speculation: Fix redundant MDS mitigation message (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] speculation: Fix incorrect MDS/TAA mitigation status (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] speculation/taa: Fix printing of TAA_MSG_SMT on IBRS_ALL CPUs (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] tsx: Add config options to set tsx=on|off|auto (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [documentation] x86/speculation/taa: Add documentation for TSX Async Abort (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] tsx: Add "auto" option to the tsx= cmdline parameter (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] speculation/taa: Add sysfs reporting for TSX Async Abort (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] speculation/taa: Add mitigation for TSX Async Abort (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] cpu: Add a "tsx=" cmdline option with TSX disabled by default (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] cpu: Add a helper function x86_read_arch_cap_msr() (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [x86] msr: Add the IA32_TSX_CTRL MSR (Josh Poimboeuf) [1766551] {CVE-2019-11135}
+- [powerpc] xive: Prevent page fault issues in the machine crash handler (Diego Domingos) [1756116]
+- [tools] Fix memcpy_mcsafe_64.S link on selftests (Desnes Augusto Nunes do Rosario) [1775570]
+
+* Wed Dec 04 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-160.el8]
+- [powerpc] perf: Fix loop exit condition in nest_imc_event_init (Steve Best) [1778609]
+- [net] netfilter: nf_tables: Add missing nft_tproxy Makefile line (Phil Sutter) [1762977]
+
+* Sat Nov 30 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-159.el8]
+- [x86] kdump: Remove the backup region handling (Lianbo Jiang) [1730143]
+- [x86] kdump: Always reserve the low 1M when the crashkernel option is specified (Lianbo Jiang) [1730143]
+- [x86] crash: Add a forward declaration of struct kimage (Lianbo Jiang) [1730143]
+- [x86] kdump: Remove the unused crash_copy_backup_region() (Lianbo Jiang) [1730143]
+- [pci] p2pdma: Fix missing check for dma_virt_ops (Don Dutile) [1754734]
+- [pci] p2pdma: use the dev_pagemap internal refcount (Don Dutile) [1754734]
+- [pci] memremap: pass a struct dev_pagemap to ->kill and ->cleanup (Don Dutile) [1754734]
+- [pci] memremap: move dev_pagemap callbacks into a separate structure (Don Dutile) [1754734]
+- [pci] mm/devm_memremap_pages: fix final page put race (Don Dutile) [1754734]
+- [pci] p2pdma: track pgmap references per resource, not globally (Don Dutile) [1754734]
+- [pci] p2pdma: fix the gen_pool_add_virt() failure path (Don Dutile) [1754734]
+- [pci] mm, hmm: mark hmm_devmem_{add, add_resource} EXPORT_SYMBOL_GPL (Don Dutile) [1754734]
+- [lib] genalloc.c: Add algorithm, align and zeroed family of DMA allocators (Don Dutile) [1754732]
+- [lib] genalloc.c: include vmalloc.h (Don Dutile) [1754732]
+- [lib] genalloc.c: use vzalloc_node() to allocate the bitmap (Don Dutile) [1754732]
+- [md] dm table: propagate BDI_CAP_STABLE_WRITES to fix sporadic checksum errors (Mike Snitzer) [1770210]
+- [fs] gfs2: fix race between gfs2_freeze_func and unmount (Abhijith Das) [1676972]
+- [fs] cifs: smbd: Retry on memory registration failure (Leif Sahlberg) [1771772]
+- [fs] cifs: smbd: Indicate to retry on transport sending failure (Leif Sahlberg) [1771772]
+- [fs] cifs: smbd: Return EINTR when interrupted (Leif Sahlberg) [1771772]
+- [fs] cifs: smbd: Don't destroy transport on RDMA disconnect (Leif Sahlberg) [1771772]
+- [lib] crc-t10dif: crc_t10dif_mutex can be static (Vladis Dronov) [1769462]
+- [lib] crc-t10dif: Allow current transform to be inspected in sysfs (Vladis Dronov) [1769462]
+- [lib] crc-t10dif: Pick better transform if one becomes available (Vladis Dronov) [1769462]
+- [crypto] api - Introduce notifier for new crypto algorithms (Vladis Dronov) [1769462]
+- [netdrv] e1000e: Drop unnecessary __E1000_DOWN bit twiddling (Ken Cox) [1748256]
+- [netdrv] e1000e: Use rtnl_lock to prevent race conditions between net and pci/pm (Ken Cox) [1748256]
+
+* Fri Nov 29 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-158.el8]
+- [powerpc] pseries: safely roll back failed DLPAR cpu add (Steve Best) [1772341]
+- [powerpc] pseries: address checkpatch warnings in dlpar_offline_cpu (Steve Best) [1772341]
+- [scsi] storvsc: setup 1:1 mapping between hardware queue and CPU queue (Cathy Avery) [1771503]
+- [scsi] storvsc: Add ability to change scsi queue depth (Cathy Avery) [1771503]
+- [scsi] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 320 (Cathy Avery) [1771503]
+- [scsi] smartpqi: bump version (Don Brace) [1725045]
+- [scsi] smartpqi: Align driver syntax with oob (Don Brace) [1725045]
+- [scsi] smartpqi: remove unused manifest constants (Don Brace) [1725045]
+- [scsi] smartpqi: fix problem with unique ID for physical device (Don Brace) [1725045]
+- [scsi] smartpqi: correct syntax issue (Don Brace) [1725045]
+- [scsi] smartpqi: change TMF timeout from 60 to 30 seconds (Don Brace) [1725045]
+- [scsi] smartpqi: fix LUN reset when fw bkgnd thread is hung (Don Brace) [1725045]
+- [scsi] smartpqi: add inquiry timeouts (Don Brace) [1725045]
+- [scsi] smartpqi: fix call trace in device discovery (Don Brace) [1725045]
+- [scsi] smartpqi: fix controller lockup observed during force reboot (Don Brace) [1725045]
+- [scsi] smartpqi: clean up an indentation issue (Don Brace) [1725045]
+- [scsi] smartpqi: remove set but not used variable 'ctrl_info' (Don Brace) [1725045]
+- [scsi] smartpqi: clean up indentation of a statement (Don Brace) [1725045]
+- [scsi] smartpqi: bump version (Don Brace) [1725045]
+- [scsi] smartpqi: update copyright (Don Brace) [1725045]
+- [scsi] smartpqi: add new pci ids (Don Brace) [1725045]
+- [scsi] smartpqi: correct REGNEWD return status (Don Brace) [1725045]
+- [scsi] smartpqi: add gigabyte controller (Don Brace) [1725045]
+- [scsi] smartpqi: correct hang when deleting 32 lds (Don Brace) [1725045]
+- [scsi] smartpqi: add bay identifier (Don Brace) [1725045]
+- [scsi] smartpqi: add sysfs entries (Don Brace) [1725045]
+- [scsi] smartpqi: add module param to hide vsep (Don Brace) [1725045]
+- [scsi] smartpqi: add pci ids for fiberhome controller (Don Brace) [1725045]
+- [scsi] smartpqi: add module param for exposure order (Don Brace) [1725045]
+- [scsi] smartpqi: unlock on error in pqi_submit_raid_request_synchronous() (Don Brace) [1725045]
+- [scsi] smartpqi: Reporting unhandled SCSI errors (Don Brace) [1725045]
+- [scsi] mpt3sas: Bump mpt3sas driver version to 32.100.00.00 (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Fix module parameter max_msix_vectors (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Reject NVMe Encap cmnds to unsupported HBA (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Use Component img header to get Package ver (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Fail release cmnd if diag buffer is released (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Add app owned flag support for diag buffer (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Reuse diag buffer allocated at load time (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: clear release bit when buffer reregistered (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Maintain owner of buffer through UniqueID (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Free diag buffer without any status check (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Fix clear pending bit in ioctl status (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Display message before releasing diag buffer (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Register trace buffer based on NVDATA settings (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Introduce module parameter to override queue depth (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Update driver version to 31.100.00.00 (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Run SAS DEVICE STATUS CHANGE EVENT from ISR (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Reduce the performance drop (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Handle fault during HBA initialization (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Add sysfs to know supported features (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Support MEMORY MOVE Tool box command (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Allow ioctls to blocked access status NVMe (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Enumerate SES of a managed PCIe switch (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Update MPI headers to 2.6.8 spec (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Gracefully handle online firmware update (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: memset request frame before reusing (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Add support for PCIe Lane margin (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: support target smid for [abort|query] task (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: clean up a couple sizeof() uses (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Fix msix load balance on and off settings (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Determine smp affinity on per HBA basis (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Use configured PCIe link speed, not max (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Remove CPU arch check to determine perf_mode (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: use DEVICE_ATTR_{RO, RW} (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: make driver options visible in sys (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Mark expected switch fall-through (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Update driver version to 29.100.00.00 (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Introduce perf_mode module parameter (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Enable interrupt coalescing on high iops (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Affinity high iops queues IRQs to local node (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: save and use MSI-X index for posting RD (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Use high iops queues under some circumstances (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: change _base_get_msix_index prototype (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Add flag high_iops_queues (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: Add Atomic RequestDescriptor support on Aero (Tomas Henzl) [1725737]
+- [scsi] mpt3sas: function pointers of request descriptor (Tomas Henzl) [1725737]
+- [scsi] mpt3sas_ctl: fix double-fetch bug in _ctl_ioctl_main() (Tomas Henzl) [1725737]
+- [md] revert "dm crypt: use WQ_HIGHPRI for the IO and crypt workqueues" (Mike Snitzer) [1775756]
+- [md] dm thin: wakeup worker only when deferred bios exist (Mike Snitzer) [1775756]
+- [md] dm raid: Remove unnecessary negation of a shift in raid10_format_to_md_layout (Mike Snitzer) [1775756]
+- [md] dm writecache: handle REQ_FUA (Mike Snitzer) [1775756]
+- [md] dm writecache: fix uninitialized variable warning (Mike Snitzer) [1775756]
+- [md] dm stripe: use struct_size() in kmalloc() (Mike Snitzer) [1775756]
+- [md] dm table: do not allow request-based DM to stack on partitions (Mike Snitzer) [1775756]
+- [md] dm cache: fix bugs when a GFP_NOWAIT allocation fails (Mike Snitzer) [1775756]
+- [md] dm writecache: skip writecache_wait for pmem mode (Mike Snitzer) [1775756]
+- [md] dm stats: use struct_size() helper (Mike Snitzer) [1775756]
+- [md] dm space map common: remove check for impossible sm_find_free() return value (Mike Snitzer) [1775756]
+- [md] dm raid1: use struct_size() with kzalloc() (Mike Snitzer) [1775756]
+- [md] dm writecache: optimize performance by sorting the blocks for writeback_all (Mike Snitzer) [1775756]
+- [md] dm writecache: add unlikely for getting two block with same LBA (Mike Snitzer) [1775756]
+- [md] dm writecache: remove unused member pointer in writeback_struct (Mike Snitzer) [1775756]
+- [md] dm: make dm_table_find_target return NULL (Mike Snitzer) [1775756]
+- [md] dm table: fix invalid memory accesses with too high sector number (Mike Snitzer) [1775756]
+- [md] dm space map metadata: fix missing store of apply_bops() return value (Mike Snitzer) [1775756]
+- [md] dm btree: fix order of block initialization in btree_split_beneath (Mike Snitzer) [1775756]
+- [md] dm raid: add missing cleanup in raid_ctr() (Mike Snitzer) [1775756]
+- [md] dm kcopyd: always complete failed jobs (Mike Snitzer) [1775756]
+- [md] dm crypt: remove obsolete comment about plumb IV (Mike Snitzer) [1775756]
+- [md] dm crypt: wipe private IV struct after key invalid flag is set (Mike Snitzer) [1775756]
+- [md] dm: update stale comment in end_clone_bio() (Mike Snitzer) [1775756]
+- [md] dm log writes: fix incorrect comment about the logged sequence example (Mike Snitzer) [1775756]
+- [md] dm log writes: use struct_size() to calculate size of pending_block (Mike Snitzer) [1775756]
+- [md] dm crypt: use struct_size() when allocating encryption context (Mike Snitzer) [1775756]
+- [md] dm thin metadata: check if in fail_io mode when setting needs_check (Mike Snitzer) [1775756]
+- [md] dm verity: use message limit for data block corruption message (Mike Snitzer) [1775756]
+- [md] dm log writes: make sure super sector log updates are written in order (Mike Snitzer) [1775756]
+- [md] dm: fix a couple brace coding style issues (Mike Snitzer) [1775756]
+- [md] dm crypt: print device name in integrity error message (Mike Snitzer) [1775756]
+- [documentation] dm integrity: update documentation (Mike Snitzer) [1775756]
+- [md] dm integrity: don't report unused options (Mike Snitzer) [1775756]
+- [md] dm integrity: don't check null pointer before kvfree and vfree (Mike Snitzer) [1775756]
+- [md] dm integrity: correctly calculate the size of metadata area (Mike Snitzer) [1775756]
+- [md] dm mpath: always free attached_handler_name in parse_path() (Mike Snitzer) [1775756]
+- [md] dm writecache: avoid unnecessary lookups in writecache_find_entry() (Mike Snitzer) [1775756]
+- [md] dm writecache: remove unused member page_offset in writeback_struct (Mike Snitzer) [1775756]
+- [md] dm delay: fix a crash when invalid device is specified (Mike Snitzer) [1775756]
+- [md] dm: only initialize md->dax_dev if CONFIG_DAX_DRIVER is enabled (Mike Snitzer) [1775756]
+- [md] dm writecache: add unlikely for returned value of rb_next_prev (Mike Snitzer) [1775756]
+- [md] dm writecache: remove needless dereferences in __writecache_writeback_pmem() (Mike Snitzer) [1775756]
+- [md] dm crypt: fix endianness annotations around org_sector_of_dmreq (Mike Snitzer) [1775756]
+- [md] dm integrity: fix deadlock with overlapping I_O (Mike Snitzer) [1775756]
+- [md] dm: disable DISCARD if the underlying storage no longer supports it (Mike Snitzer) [1775756]
+- [md] dm: revert 8f50e358153d ("dm: limit the max bio size as BIO_MAX_PAGES * PAGE_SIZE") (Mike Snitzer) [1775756]
+- [md] dm integrity: make dm_integrity_init and dm_integrity_exit static (Mike Snitzer) [1775756]
+- [md] dm integrity: change memcmp to strncmp in dm_integrity_ctr (Mike Snitzer) [1775756]
+- [x86] platform/uv: Account for UV Hubless in is_uvX_hub Ops (Frank Ramsay) [1757510]
+- [x86] platform/uv: Check EFI Boot to set reboot type (Frank Ramsay) [1757510]
+- [x86] platform/uv: Decode UVsystab Info (Frank Ramsay) [1757510]
+- [x86] platform/uv: Add UV Hubbed/Hubless Proc FS Files (Frank Ramsay) [1757510]
+- [x86] platform/uv: Setup UV functions for Hubless UV Systems (Frank Ramsay) [1757510]
+- [x86] platform/uv: Add return code to UV BIOS Init function (Frank Ramsay) [1757510]
+- [x86] platform/uv: Return UV Hubless System Type (Frank Ramsay) [1757510]
+- [x86] platform/uv: Save OEM_ID from ACPI MADT probe (Frank Ramsay) [1757510]
+- [x86] mm: Handle physical-virtual alignment mismatch in phys_p4d_init() (Baoquan He) [1685383]
+- [x86] mm/kaslr: Reduce randomization granularity for 5-level paging to 1GB (Baoquan He) [1685383]
+- [x86] mm/kaslr: Use only one PUD entry for real mode trampoline (Baoquan He) [1685383]
+- [documentation] documentation/stackprotector: powerpc supports stack protector (Bhupesh Sharma) [1714310]
+- [makefile] kbuild: mark prepare0 as PHONY to fix external module build (Bhupesh Sharma) [1714310]
+- [makefile] kbuild: fix single target build for external module (Bhupesh Sharma) [1714310]
+- [arm64] enable per-task stack canaries (Bhupesh Sharma) [1714310]
+- [powerpc] Fix stack protector crashes on CPU hotplug (Bhupesh Sharma) [1714310]
+- [powerpc] 64: properly initialise the stackprotector canary on SMP (Bhupesh Sharma) [1714310]
+- [powerpc] Fix stackprotector detection for non-glibc toolchains (Bhupesh Sharma) [1714310]
+- [powerpc] 64: add stack protector support (Bhupesh Sharma) [1714310]
+- [powerpc] 32: add stack protector support (Bhupesh Sharma) [1714310]
+- [pci] vmd: Fix shadow offsets to reflect spec changes (Myron Stowe) [1757896]
+- [pci] vmd: Fix config addressing when using bus offsets (Myron Stowe) [1757896]
+- [pci] Fix typos and whitespace errors (Myron Stowe) [1757896]
+- [pci] vmd: use the proper dma_* APIs instead of direct methods calls (Myron Stowe) [1757896]
+- [powerpc] powernv: Disable native PCIe port management (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Fix eeh eeh_debugfs_break_device() with SRIOV devices (Gustavo Duarte) [1524642]
+- [tools] selftests/powerpc: Add basic EEH selftest (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Add a eeh_dev_break debugfs interface (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Add debugfs interface to run an EEH check (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Fix debugfs_simple_attr.cocci warnings (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Fix build with STACKTRACE=n (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Set attention indicator while recovering (Gustavo Duarte) [1524642]
+- [pci] pci-hotplug/pnv_php: Add attention indicator support (Gustavo Duarte) [1524642]
+- [pci] pci-hotplug/pnv_php: Add support for IODA3 Power9 PHBs (Gustavo Duarte) [1524642]
+- [pci] pci-hotplug/pnv_php: Add a reset_slot() callback (Gustavo Duarte) [1524642]
+- [powerpc] powernv/eeh: Use generic code to handle hot resets (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Remove stale CAPI comment (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Defer printing stack trace (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Check slot presence state in eeh_handle_normal_event() (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Make permanently failed devices non-actionable (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Fix race when freeing PDNs (Gustavo Duarte) [1524642]
+- [powerpc] eeh: Clean up EEH PEs after recovery finishes (Gustavo Duarte) [1524642]
+- [netdrv] be2net: disable bh with spin_lock in be_process_mcc (Petr Oros) [1724777]
+- [netdrv] be2net: Synchronize be_update_queues with dev_watchdog (Petr Oros) [1724777]
+- [netdrv] be2net: Signal that the device cannot transmit during reconfiguration (Petr Oros) [1724777]
+- [netdrv] be2net: fix link failure after ethtool offline test (Petr Oros) [1724777]
+- [netdrv] be2net: Fix number of Rx queues used for flow hashing (Petr Oros) [1724777]
+- [netdrv] benet: remove broken and unused macro (Petr Oros) [1724777]
+- [netdrv] benet: use skb_vlan_tag_get_prio() (Petr Oros) [1724777]
+- [netdrv] benet: use __vlan_hwaccel helpers (Petr Oros) [1724777]
+- [netdrv] revert "[netdrv] be2net: Disable queue dump in be_tx_timeout handler" (Petr Oros) [1724777]
+- [infiniband] rdma/i40iw: Set queue pair state when being queried (Stefan Assmann) [1721712]
+- [infiniband] ib/i40iw: Use kmemdup rather than open coding (Stefan Assmann) [1721712]
+- [infiniband] rdma/i40iw: Handle workqueue allocation failure (Stefan Assmann) [1721712]
+- [nvdimm] libnvdimm/pfn_dev: Add page size and struct page size to pfn superblock (Baoquan He) [1724969]
+- [nvdimm] libnvdimm/pfn_dev: Add a build check to make sure we notice when struct page size change (Baoquan He) [1724969]
+- [nvdimm] libnvdimm/pfn: Fix namespace creation on misaligned addresses (Baoquan He) [1724969]
+- [nvdimm] libnvdimm/pfn: stop padding pmem namespaces to section alignment (Baoquan He) [1724969]
+- [nvdimm] libnvdimm/pfn: fix fsdax-mode namespace info-block zero-fields (Baoquan He) [1724969]
+- [nvdimm] revert "libnvdimm/pfn: fix fsdax-mode namespace info-block zero-fields" (Baoquan He) [1724969]
+- [nvdimm] revert "libnvdimm/pfn_dev: Add page size and struct page size to pfn superblock" (Baoquan He) [1724969]
+- [nvdimm] revert "libnvdimm/pfn_dev: Add a build check to make sure we notice when struct page size change" (Baoquan He) [1724969]
+- [mm] sparsemem: cleanup 'section number' data types (Baoquan He) [1724969]
+- [kernel] mm/devm_memremap_pages: enable sub-section remap (Baoquan He) [1724969]
+- [mm] sparsemem: support sub-section hotplug (Baoquan He) [1724969]
+- [mm] sparsemem: prepare for sub-section ranges (Baoquan He) [1724969]
+- [kernel] mm: kill is_dev_zone() helper (Baoquan He) [1724969]
+- [mm] hotplug: kill is_dev_zone() usage in __remove_pages() (Baoquan He) [1724969]
+- [mm] sparsemem: convert kmalloc_section_memmap() to populate_section_memmap() (Baoquan He) [1724969]
+- [mm] hotplug: prepare shrink_{zone, pgdat}_span for sub-section removal (Baoquan He) [1724969]
+- [mm] sparsemem: add helpers track active portions of a section at boot (Baoquan He) [1724969]
+- [mm] sparsemem: introduce a SECTION_IS_EARLY flag (Baoquan He) [1724969]
+- [mm] sparsemem: introduce struct mem_section_usage (Baoquan He) [1724969]
+- [base] base/memory.c: get rid of find_memory_block_hinted() (Baoquan He) [1724969]
+- [mm] memory_hotplug: move and simplify walk_memory_blocks() (Baoquan He) [1724969]
+- [mm] memory_hotplug: rename walk_memory_range() and pass start+size instead of pfns (Baoquan He) [1724969]
+- [mm] hotplug: make remove_memory() interface usable (Baoquan He) [1724969]
+- [kernel] mm: make register_mem_sect_under_node() static (Baoquan He) [1724969]
+- [base] base/memory: use "unsigned long" for block ids (Baoquan He) [1724969]
+- [base] mm: section numbers use the type "unsigned long" (Baoquan He) [1724969]
+- [base] base/memory.c: Use DEVICE_ATTR_RO and friends (Baoquan He) [1724969]
+- [mm] sparse.c: set section nid for hot-add memory (Baoquan He) [1724969]
+- [mm] memory_hotplug: remove "zone" parameter from sparse_remove_one_section (Baoquan He) [1724969]
+- [base] mm/memory_hotplug: make unregister_memory_block_under_nodes() never fail (Baoquan He) [1724969]
+- [base] mm/memory_hotplug: remove memory block devices before arch_remove_memory() (Baoquan He) [1724969]
+- [mm] memory_hotplug: drop MHP_MEMBLOCK_API (Baoquan He) [1724969]
+- [base] mm/memory_hotplug: create memory block devices after arch_add_memory() (Baoquan He) [1724969]
+- [mm] memory_hotplug: allow arch_remove_memory() without CONFIG_MEMORY_HOTREMOVE (Baoquan He) [1724969]
+- [arm64] mm: add temporary arch_remove_memory() implementation (Baoquan He) [1724969]
+- [mm] sparse.c: clean up obsolete code comment (Baoquan He) [1724969]
+- [base] base/memory: pass a block_id to init_memory_block() (Baoquan He) [1724969]
+- [base] base/memory.c: remove an unnecessary check on NR_MEM_SECTIONS (Baoquan He) [1724969]
+- [s390] s390x/mm: implement arch_remove_memory() (Baoquan He) [1724969]
+- [mm] memory_hotplug: make __remove_section() never fail (Baoquan He) [1724969]
+- [base] mm/memory_hotplug: make unregister_memory_section() never fail (Baoquan He) [1724969]
+- [base] base/memory.c: clean up relics in function parameters (Baoquan He) [1724969]
+- [base] mm, memory_hotplug: update a comment in unregister_memory() (Baoquan He) [1724969]
+- [mm] memory_hotplug: release memory resource after arch_remove_memory() (Baoquan He) [1724969]
+- [kernel] mm, memory_hotplug: provide a more generic restrictions for memory hotplug (Baoquan He) [1724969]
+- [kernel] linux/memory_hotplug.h: remove duplicate declaration of offline_pages() (Baoquan He) [1724969]
+- [mm] x86: respect memory size limiting via mem= parameter (Baoquan He) [1724969]
+- [arm64] Add memory hotplug support (Baoquan He) [1724969]
+- [arm64] mm: check for upper PAGE_SHIFT bits in pfn_valid() (Baoquan He) [1724969]
+- [powerpc] mm: Fix section mismatch warning (Baoquan He) [1724969]
+- [base] mm/memory_hotplug: do not unlock after failing to take the device_hotplug_lock (Baoquan He) [1724969]
+- [mm] memory_hotplug: drop "online" parameter from add_memory_resource() (Baoquan He) [1724969]
+- [s390] s390x/mm: fail when an altmap is used for arch_add_memory() (Baoquan He) [1724969]
+- [mm] memory_hotplug: simplify and fix check_hotplug_memory_range() (Baoquan He) [1724969]
+- [mm] memory_hotplug: add nid parameter to arch_remove_memory (Baoquan He) [1724969]
+- [mm] sparse: pass nid instead of pgdat to sparse_add_one_section() (Baoquan He) [1724969]
+- [mm] sparse: drop pgdat_resize_lock in sparse_add/remove_one_section() (Baoquan He) [1724969]
+- [documentation] memory-hotplug.rst: add some details about locking internals (Baoquan He) [1724969]
+- [powerpc] powernv: hold device_hotplug_lock when calling memtrace_offline_pages() (Baoquan He) [1724969]
+- [powerpc] powernv: hold device_hotplug_lock when calling device_online() (Baoquan He) [1724969]
+- [powerpc] powernv: Allow memory that has been hot-removed to be hot-added (Baoquan He) [1724969]
+- [powerpc] powernv/memtrace: Remove memtrace mmap() (Baoquan He) [1724969]
+- [mm] memory_hotplug: fix online/offline_pages called w.o. mem_hotplug_lock (Baoquan He) [1724969]
+- [mm] memory_hotplug: make add_memory() take the device_hotplug_lock (Baoquan He) [1724969]
+- [mm] memory_hotplug: make remove_memory() take the device_hotplug_lock (Baoquan He) [1724969]
+- [powerpc] memtrace: Remove memory in chunks (Baoquan He) [1724969]
+- [base] mm/memory_hotplug.c: drop unnecessary checks from register_mem_sect_under_node() (Baoquan He) [1724969]
+- [base] mm/memory_hotplug.c: make register_mem_sect_under_node() a callback of walk_memory_range() (Baoquan He) [1724969]
+- [mm] memory_hotplug.c: call register_mem_sect_under_node() (Baoquan He) [1724969]
+- [mm] memory_hotplug.c: make add_memory_resource use __try_online_node (Baoquan He) [1724969]
+- [pci] Always allow probing with driver_override (Myron Stowe) [1702178]
+- [pci] Return error if cannot probe VF (Myron Stowe) [1702178]
+- [target] scsi: target: core: Do not overwrite CDB byte 1 (Maurizio Lombardi) [1764579]
+- [target] scsi: target: tcmu: clean the nl_cmd of the udev when nl send fails (Maurizio Lombardi) [1764579]
+- [target] scsi: target: tcmu: avoid use-after-free after command timeout (Maurizio Lombardi) [1764579]
+- [target] scsi: tcmu: Simplify tcmu_update_uio_info() (Maurizio Lombardi) [1764579]
+- [target] scsi: target/iscsi: fix possible condition with no effect (if == else) (Maurizio Lombardi) [1764579]
+- [target] scsi: target/iscsi: Make sure PDU processing continues if parsing a command fails (Maurizio Lombardi) [1764579]
+- [target] scsi: target/iscsi: Make iscsit_map_iovec() more robust (Maurizio Lombardi) [1764579]
+- [target] scsi: target/iscsi: Handle too large immediate data buffers correctly (Maurizio Lombardi) [1764579]
+- [target] scsi: target/iscsi: Only send R2T if needed (Maurizio Lombardi) [1764579]
+- [target] scsi: target/iscsi: Detect conn_cmd_list corruption early (Maurizio Lombardi) [1764579]
+- [target] scsi: target/core: Make the XCOPY setup code easier to read by inlining two functions (Maurizio Lombardi) [1764579]
+- [target] scsi: target/core: Simplify LUN initialization in XCOPY implementation (Maurizio Lombardi) [1764579]
+- [target] scsi: target/core: Remove a set-but-not-used member variable from the XCOPY implementation (Maurizio Lombardi) [1764579]
+- [target] scsi: target/core: Rework the SPC-2 reservation handling code (Maurizio Lombardi) [1764579]
+- [target] scsi: target/core: Fix a race condition in the LUN lookup code (Maurizio Lombardi) [1764579]
+- [target] scsi: target: alua: fix the tg_pt_gps_count (Maurizio Lombardi) [1764579]
+- [target] scsi: target: iscsi: Free conn_ops when zalloc_cpumask_var failed (Maurizio Lombardi) [1764579]
+- [target] scsi: target: iscsi: Fix np_ip_proto and np_sock_type in iscsit_setup_np (Maurizio Lombardi) [1764579]
+- [target] scsi: target: fix unsigned comparision with less than zero (Maurizio Lombardi) [1764579]
+- [target] scsi: target: Add device product id and revision configfs attributes (Maurizio Lombardi) [1764579]
+- [kernel] genirq/affinity: Remove const qualifier from node_to_cpumask argument (Ming Lei) [1743064]
+- [kernel] genirq/affinity: Spread vectors on node according to nr_cpu ratio (Ming Lei) [1743064]
+- [kernel] genirq/affinity: Improve __irq_build_affinity_masks() (Ming Lei) [1743064]
+- [kernel] genirq/affinity: Remove unused argument from [__]irq_build_affinity_masks() (Ming Lei) [1743064]
+- [kernel] workqueue, lockdep: Fix a memory leak in wq->lock_name (Waiman Long) [1736654]
+- [kernel] workqueue, lockdep: Fix an alloc_workqueue() error path (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Report more stack trace statistics (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Reduce space occupied by stack traces (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Make it clear that what lock_class::key points at is not modified (Waiman Long) [1736654]
+- [kernel] lockdep: Make print_lock() address visible (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Clean up #ifdef checks (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Hide unused 'class' variable (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Fix lock used or unused stats error (Waiman Long) [1736654]
+- [kernel] locking/lockdep: increase size of counters for lockdep statistics (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Move mark_lock() inside CONFIG_TRACE_IRQFLAGS && CONFIG_PROVE_LOCKING (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove unnecessary DEBUG_LOCKS_WARN_ON() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Fix merging of hlocks with non-zero references (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Fix OOO unlock when hlocks need merging (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove !dir in lock irq usage check (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Adjust new bit cases in mark_lock (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Consolidate lock usage bit initialization (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Check redundant dependency only when CONFIG_LOCKDEP_SMALL (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Refactorize check_noncircular and check_redundant (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove unused argument in __lock_release (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove redundant argument in check_deadlock (Waiman Long) [1736654]
+- [documentation] locking/lockdep: Add explanation to lock usage rules in lockdep design doc (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Update comments on dependency search (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Avoid constant checks in __bfs by using offset reference (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Change the return type of __cq_dequeue() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Change type of the element field in circular_queue (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Update comment (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove unused argument in validate_chain() and check_deadlock() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Change the range of class_idx in held_lock struct (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Define INITIAL_CHAIN_KEY for chain keys to start with (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Use lockdep_init_task for task initiation consistently (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Update obsolete struct field description (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Print the right depth for chain key collision (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove useless conditional macro (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Adjust lock usage bit character checks (Waiman Long) [1736654]
+- [documentation] locking/lockdep: Add description and explanation in lockdep design doc (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Change all print_*() return type to void (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove the unused print_lock_trace() function (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Don't complain about incorrect name for no validate class (Waiman Long) [1736654]
+- [kernel] lockdep: Add assertion to check if in an interrupt (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove unnecessary unlikely() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Test all incompatible scenarios at once in check_irq_usage() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Avoid bogus Clang warning (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Generate LOCKF_ bit composites (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Use expanded masks on find_usage_*() functions (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Map remaining magic numbers to lock usage mask names (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Move valid_state() inside CONFIG_TRACE_IRQFLAGS && CONFIG_PROVE_LOCKING (Waiman Long) [1736654]
+- [kernel] lockdep: Simplify stack trace handling (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Make lockdep_unregister_key() honor 'debug_locks' again (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Zap lock classes even with lock debugging disabled (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Only call init_rcu_head() after RCU has been initialized (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Avoid a Clang warning (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Shrink struct lock_class_key (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Add module_param to enable consistency checks (Waiman Long) [1736654]
+- [tools] lockdep/lib/tests: Test dynamic key registration (Waiman Long) [1736654]
+- [tools] lockdep/lib/tests: Fix run_tests.sh (Waiman Long) [1736654]
+- [kernel] workqueue: Use dynamic lockdep keys for workqueues (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Add support for dynamic keys (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Verify whether lock objects are small enough to be used as class keys (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Check data structure consistency (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Reuse lock chains that have been freed (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Fix a comment in add_chain_cache() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Introduce lockdep_next_lockchain() and lock_chain_count() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Reuse list entries that are no longer in use (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Free lock classes that are no longer in use (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Update two outdated comments (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Make it easy to detect whether or not inside a selftest (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Split lockdep_free_key_range() and lockdep_reset_lock() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Initialize the locks_before and locks_after lists earlier (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Make zap_class() remove all matching lock order entries (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Reorder struct lock_class members (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Avoid that add_chain_cache() adds an invalid chain to the cache (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Fix reported required memory size (2/2) (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Fix reported required memory size (1/2) (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Fix two 32-bit compiler warnings (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Rename lockdep_info() to lockdep_init() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Add debug_locks check in __lock_downgrade() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Provide enum lock_usage_bit mask names (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Simplify mark_held_locks() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Add debug_locks check in __lock_downgrade() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Stop using RCU primitives to access 'all_lock_classes' (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Make concurrent lockdep_reset_lock() calls safe (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove a superfluous INIT_LIST_HEAD() statement (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Introduce lock_class_cache_is_registered() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Inline __lockdep_init_map() (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Declare local symbols static (Waiman Long) [1736654]
+- [tools] lib/lockdep/tests: Test the lockdep_reset_lock() implementation (Waiman Long) [1736654]
+- [tools] lib/lockdep: Add dummy print_irqtrace_events() implementation (Waiman Long) [1736654]
+- [tools] lib/lockdep: Rename "trywlock" into "trywrlock" (Waiman Long) [1736654]
+- [tools] lib/lockdep/tests: Run lockdep tests a second time under Valgrind (Waiman Long) [1736654]
+- [tools] lib/lockdep/tests: Improve testing accuracy (Waiman Long) [1736654]
+- [tools] lib/lockdep/tests: Fix shellcheck warnings (Waiman Long) [1736654]
+- [tools] lib/lockdep/tests: Display compiler warning and error messages (Waiman Long) [1736654]
+- [kernel] locking/lockdep: Remove ::version from lock_class structure (Waiman Long) [1736654]
+- [init] kconfig: disable io_uring support (Jeff Moyer) [1758680]
+- [virt] kvm: arm64: pmu: Reset sample period on overflow handling (Auger Eric) [1760872]
+- [virt] kvm: arm64: pmu: Set the CHAINED attribute before creating the in-kernel event (Auger Eric) [1760872]
+- [arm64] kvm: Handle PMCR_EL0.LC as RES1 on pure AArch64 systems (Auger Eric) [1760872]
+- [virt] kvm: arm64: pmu: Fix cycle counter truncation (Auger Eric) [1760872]
+- [virt] kvm: arm/arm64: Introduce kvm_pmu_vcpu_init() to setup PMU counter index (Auger Eric) [1760872]
+- [virt] kvm: arm/arm64: Support chained PMU counters (Auger Eric) [1760872]
+- [virt] kvm: arm/arm64: Remove pmc->bitmask (Auger Eric) [1760872]
+- [virt] kvm: arm/arm64: Re-create event when setting counter value (Auger Eric) [1760872]
+- [virt] kvm: arm/arm64: Extract duplicated code to own function (Auger Eric) [1760872]
+- [virt] kvm: arm/arm64: Rename kvm_pmu_{enable/disable}_counter functions (Auger Eric) [1760872]
+- [arm64] perf: Hook up new events (Auger Eric) [1760872]
+- [arm64] perf: Move event definitions into perf_event.h (Auger Eric) [1760872]
+- [arm64] perf: Remove duplicate generic cache events (Auger Eric) [1760872]
+- [arm64] perf: Terminate PMU assignment statements with semicolons (Auger Eric) [1760872]
+- [arm64] Allow CAVIUM_TX2_ERRATUM_219 to be selected (Auger Eric) [1771633]
+- [arm64] Avoid Cavium TX2 erratum 219 when switching TTBR (Auger Eric) [1771633]
+- [arm64] Enable workaround for Cavium TX2 erratum 219 when running SMT (Auger Eric) [1771633]
+- [arm64] kvm: Trap VM ops when ARM64_WORKAROUND_CAVIUM_TX2_219_TVM is set (Auger Eric) [1771633]
+- [arm64] sysreg: fix incorrect definition of SYS_PAR_EL1_F (Auger Eric) [1771633]
+- [arm64] Force SSBS on context switch (Mark Salter) [1756103]
+- [arm64] enable pointer authentication (Mark Salter) [1756103]
+- [arm64] add ptrace regsets for ptrauth key management (Mark Salter) [1756103]
+- arm64: cpufeature: Rework ptr auth hwcaps using multi_entry_cap_matches (Mark Salter) [1756103]
+- [arm64] capabilities: Merge duplicate entries for Qualcomm erratum 1003 (Mark Salter) [1756103]
+- [arm64] cpufeature: Reduce number of pointer auth CPU caps from 6 to 4 (Mark Salter) [1756103]
+- [documentation] arm64: docs: document pointer authentication (Mark Salter) [1756103]
+- [documentation] arm64: docs: Document SSBS HWCAP (Mark Salter) [1756103]
+- [documentation] arm64: docs: Fix typos in ELF hwcaps (Mark Salter) [1756103]
+- [arm64] ptr auth: Move per-thread keys from thread_info to thread_struct (Mark Salter) [1756103]
+- [arm64] add prctl control for resetting ptrauth keys (Mark Salter) [1756103]
+- [arm64] perf: strip PAC when unwinding userspace (Mark Salter) [1756103]
+- [arm64] expose user PAC bit positions via ptrace (Mark Salter) [1756103]
+- [arm64] add basic pointer authentication support (Mark Salter) [1756103]
+- arm64/cpufeature: detect pointer authentication (Mark Salter) [1756103]
+- [arm64] cpufeature: Convert hook_lock to raw_spin_lock_t in cpu_enable_ssbs() (Mark Salter) [1756103]
+- [arm64] entry: Allow handling of undefined instructions from EL1 (Mark Salter) [1756103]
+- [arm64] Fix silly typo in comment (Mark Salter) [1756103]
+- [fs] smb3: fix signing verification of large reads (Dave Wysochanski) [1753114]
+- [fs] revert "nfs4: Fix v4.0 client state corruption when mount" (Benjamin Coddington) [1767012]
+- [kernel] svcrdma: Increase the default connection credit limit (Benjamin Coddington) [1771430]
+- [x86] quirks: Disable HPET on Intel Coffe Lake platforms (David Arcari) [1773774]
+- [sched] core: Fix CPU controller for !RT_GROUP_SCHED (Phil Auld) [1774652]
+- [x86] Add comment for x86 processor OS version support (David Arcari) [1709878]
+- [x86] kvm: svm: taint module and print taint message iff nested is enabled (Bandan Das) [1775410]
+- [x86] cpu: Add Tiger Lake to Intel family (Steve Best) [1773790]
+- [fs] Fix the locking in dcache_readdir() and friends (Miklos Szeredi) [1761746]
+- [infiniband] rdma/mlx5: Return proper error value (Mohammad Heib) [1772101]
+- [scsi] mpt3sas: change allocation option (Tomas Henzl) [1770264]
+- [scsi] qla2xxx: Initialized mailbox to prevent driver load failure (Himanshu Madhani) [1770309]
+- [mfd] intel-lpss: Add Intel Comet Lake PCH-H PCI IDs (David Arcari) [1773307]
+- [powercap] intel_rapl: add support for Cometlake desktop (David Arcari) [1759664]
+- [powercap] intel_rapl: add support for CometLake Mobile (David Arcari) [1746265]
+- [kernel] intel_rapl: need linux/cpuhotplug.h for enum cpuhp_state (Alexander Beregalov) [1732604]
+- [thermal] int340x/processor_thermal_device: Fix proc_thermal_rapl_remove() (Alexander Beregalov) [1732604]
+- [thermal] int340x/processor_thermal_device: add support for MMIO RAPL (Alexander Beregalov) [1732604]
+- [thermal] thermal: processor_thermal_device: Fix build warning (Alexander Beregalov) [1732604]
+- [thermal] thermal: processor_thermal: Read PPCC on resume (Alexander Beregalov) [1732604]
+- [thermal] thermal: processor_thermal: Downgrade error message (Alexander Beregalov) [1732604]
+- [thermal] intel: int340x: processor_thermal_device: simplify to get driver data (Alexander Beregalov) [1732604]
+- [thermal] int3403_thermal: favor _TMP instead of PTYP (Alexander Beregalov) [1732604]
+- [thermal] int340x_thermal: fix mode setting (Alexander Beregalov) [1732604]
+- [thermal] int340x_thermal: Add additional UUIDs (Alexander Beregalov) [1732604]
+- [thermal] thermal: int340x_thermal: Fix sysfs race condition (Alexander Beregalov) [1732604]
+- [thermal] thermal: int340x_thermal: Make PCI dependency explicit (Alexander Beregalov) [1732604]
+- [thermal] int340x_thermal: Fix a NULL vs IS_ERR() check (Alexander Beregalov) [1732604]
+- [thermal] int340x_thermal: int3400_thermal: simplify getting .driver_data (Alexander Beregalov) [1732604]
+- [powercap] Invoke powercap_init() and rapl_init() earlier (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: Fix module autoloading issue (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: support two power limits for every RAPL domain (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: support 64 bit register (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: abstract RAPL common code (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: cleanup hardcoded MSR access (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: cleanup some functions (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: abstract register access operations (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: abstract register address (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: introduce struct rapl_if_private (Alexander Beregalov) [1732604]
+- [kernel] intel_rapl: introduce intel_rapl.h (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: remove hardcoded register index (Alexander Beregalov) [1732604]
+- [powercap] intel_rapl: use reg instead of msr (Alexander Beregalov) [1732604]
+- [security] ima: Differentiate auditing policy rules from "audit" actions (Richard Guy Briggs) [1479911]
+- [security] ima: Do not audit if CONFIG_INTEGRITY_AUDIT is not set (Richard Guy Briggs) [1479911]
+- [security] ima: Use audit_log_format() rather than audit_log_string() (Richard Guy Briggs) [1479911]
+- [security] ima: Call audit_log_string() rather than logging it untrusted (Richard Guy Briggs) [1479911]
+- [security] selinux: avoid atomic_t usage in sidtab (Ondrej Mosnacek) [1741182]
+- [security] selinux: always return a secid from the network caches if we find one (Ondrej Mosnacek) [1741182]
+- [security] selinux: policydb - rename type_val_to_struct_array (Ondrej Mosnacek) [1741182]
+- [security] selinux: policydb - fix some checkpatch.pl warnings (Ondrej Mosnacek) [1741182]
+- [security] selinux: shuffle around policydb.c to get rid of forward declarations (Ondrej Mosnacek) [1741182]
+- [security] selinux: fix memory leak in policydb_init() (Ondrej Mosnacek) [1741182]
+- [security] selinux: check sidtab limit before adding a new entry (Ondrej Mosnacek) [1741182]
+- [security] selinux: format all invalid context as untrusted (Ondrej Mosnacek) [1479914 1741182]
+- [security] selinux: remove some no-op BUG_ONs (Ondrej Mosnacek) [1741182]
+- [security] selinux: provide __le variables explicitly (Ondrej Mosnacek) [1741182]
+- [security] selinux: avoid uninitialized variable warning (Ondrej Mosnacek) [1741182]
+- [security] selinux: remove useless assignments (Ondrej Mosnacek) [1741182]
+- [security] selinux: fix NULL dereference in policydb_destroy() (Ondrej Mosnacek) [1741182]
+- [security] selinux: convert to kvmalloc (Ondrej Mosnacek) [1741182]
+- [kernel] lsm: generalize flag passing to security_capable (Ondrej Mosnacek) [1741182]
+- [kernel] selinux: Remove unused selinux_is_enabled (Ondrej Mosnacek) [1741182]
+- [kernel] selinux: Remove cred security blob poisoning (Ondrej Mosnacek) [1741182]
+- [security] selinux: Remove SECURITY_SELINUX_BOOTPARAM_VALUE (Ondrej Mosnacek) [1741182]
+
+* Thu Nov 28 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-157.el8]
+- [tools] selftests: mlxsw: Add a test for leftover DSCP rule (Ivan Vecera) [1737368]
+- [tools] selftests: mlxsw: Fix local variable declarations in DSCP tests (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Add counters for GC events (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Bump firmware version to 13.2000.1886 (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Prevent auto negotiation on number of lanes (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Remove 56G speed support (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Keep unmatched entries in a linked list (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Further reduce pool size on Spectrum-2 (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Fix error path in mlxsw_sp_module_init() (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: fix duplicated check on orig_egr_types (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Increase parsing depth when PTP is enabled (Ivan Vecera) [1737368]
+- [tools] selftests: mlxsw: Fix typo in qos_mc_aware.sh (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Do not process learned records with a dummy FID (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_dcb: Configure DSCP map as the last rule is removed (Ivan Vecera) [1737368]
+- [netdrv] remove redundant memset (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Apply the PTP shaper enable/disable logic (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Set up PTP shaper when port status has changed (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Enable/disable PTP shaper on a port when getting HWTSTAMP on/off (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Add new operation for getting the port's speed (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Set the PTP shaper parameters (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add QoS PTP Shaper Configuration Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Add note about the PTP shaper (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add ptps field in QoS ETS Element Configuration Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Fix validation in mlxsw_sp1_ptp_packet_finish() (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: ptp: Support ethtool get_ts_info (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: ptp: Support SIOCGHWTSTAMP, SIOCSHWTSTAMP ioctls (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: ptp: Configure PTP traps and FIFO events (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: ptp: Garbage-collect unmatched entries (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: ptp: Support timestamping on Spectrum-1 (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: ptp: Disable BH when working with PHC (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: ptp: Add PTP initialization / finalization (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: pci: ptp: Hook into packet transmit path (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Add support for using SKB control buffer (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: ptp: Hook into packet receive path (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Add support for traps specific to Spectrum-1 (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Extract a helper for trap registration (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add Monitoring Global Configuration Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add Time Precision Packet Timestamping Reading (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add Monitoring Precision Time Protocol Trap Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add Monitoring Time Precision Packet Port Configuration Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Add support for negative temperature readout (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Add the hottest thermal zone detection (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Extend thermal core with per inter-connect device thermal zones (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_flower: Implement support for ingress device matching (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_acl: Fix SRC_SYS_PORT element size (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_acl: Avoid size check for RX_ACL_SYSTEM_PORT element (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_acl: Write RX_ACL_SYSTEM_PORT acl element correctly (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Fix compilation on 32-bit ARM (Ivan Vecera) [1737368]
+- [tools] selftests: ptp: Add Physical Hardware Clock test (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: PTP physical hardware clock initialization (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_ptp: Add implementation for physical hardware clock operations (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add Management Pulse Per Second Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add Management UTC Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: pci: Query free running clock PCI BAR and offsets (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Add a new interface for reading the hardware free running clock (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: cmd: Free running clock PCI BAR and offsets via query firmware (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Implement flash update status notifications (Ivan Vecera) [1737368]
+- [netdrv] mlxfw: Introduce status_notify op and call it to notify about the status (Ivan Vecera) [1737368]
+- [netdrv] mlxfw: Propagate error messages through extack (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Move firmware flash implementation to devlink (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Reduce buffer size in transactions for SFP modules temperature readout (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Extend the index size for temperature sensors readout (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Extend hwmon interface with inter-connect temperature attributes (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add Management General Peripheral Information Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Extend sensor index field size of Management Temperature Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Re-order initialization sequence (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: i2c: Allow flexible setting of I2C transactions size (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: i2c: Extend initialization with querying firmware info (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Disallow prio-tagged packets when PVID is removed (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Reduce pool size on Spectrum-2 (Ivan Vecera) [1737368]
+- [tools] selftests: tc_flower: Add TOS matching test (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_flower: Fix TOS matching (Ivan Vecera) [1737368]
+- [tools] selftests: mlxsw: Test nexthop offload indication (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_router: Refresh nexthop neighbour when it becomes dead (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Use different seeds for ECMP and LAG hash (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Prevent force of 56G (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_acl: Avoid warning after identical rules insertion (Ivan Vecera) [1737368]
+- [tools] selftests: Add loopback test (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Implement loopback ethtool feature (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add Port Physical Loopback Register (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: split base on local_ports_in_{1x, 2x} resources (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: resources: Add local_ports_in_{1x, 2x} (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Bump firmware version to 13.2000.1122 (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Remove obsolete dependency on THERMAL=m (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_router: Prevent ipv6 gateway with v4 route via replace and append (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Adjust CPU port shared buffer egress quotas (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Allow skipping ingress port quota configuration (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Split business logic from mlxsw_sp_port_sb_pms_init() (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Use new CPU ingress pool for control packets (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Add pools for CPU traffic (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Remove assumption about pool order (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Forbid changing multicast TCs' attributes (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Forbid changing threshold type of first egress pool (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Forbid configuration of multicast pool (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Add ability to veto TC's configuration (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Add ability to veto pool's configuration (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Use defines for pool indices (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_buffers: Add extack messages for invalid configurations (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_router: Relax FIB rule validation (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum: Use a stable ECMP/LAG seed (Ivan Vecera) [1737368]
+- [tools] selftests: mlxsw: Test neighbour offload indication (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_router: Add neighbour offload indication (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_router: Propagate neighbour update errors (Ivan Vecera) [1737368]
+- [documentation] documentation: networking: devlink-info-versions: Add fw.psid (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: core: Add support for devlink info command (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: reg: Add MGIR register (Ivan Vecera) [1737368]
+- [tools] selftests: forwarding: test for bridge mcast traffic after report and leave (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: switch_ib: Pass valid HW id down to mlxsw_core_port_init() (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Remove ndo_get_port_parent_id implementation (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Pass switch ID through devlink_port_attrs_set() (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_acl: Rename rehash_dis trace (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_acl: Remove failed_rollback dead end (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_acl: Move rehash_dis trace call and err msg to vregion_migrate() (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: spectrum_acl: Remove redundant failed_rollback from migrate_start() (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Remove ndo_get_phys_port_name implementation (Ivan Vecera) [1737368]
+- [netdrv] mlxsw: Implement ndo_get_devlink_port (Ivan Vecera) [1737368]
+- [tools] selftests: mlxsw: Add a new test for strict priority (Ivan Vecera) [1737368]
+- [tools] selftests: mlxsw: Add qos_lib.sh (Ivan Vecera) [1737368]
+- [tools] selftests: mlxsw: qos_mc_aware: Configure shared buffers (Ivan Vecera) [1737368]
+- [tools] selftests: forwarding: devlink_lib: Add shared buffer helpers (Ivan Vecera) [1737368]
+- [tools] selftests: forwarding: devlink_lib: Simplify deduction of DEVLINK_DEV (Ivan Vecera) [1737368]
+- [tools] selftests: forwarding: devlink_lib: Avoid double sourcing of lib.sh (Ivan Vecera) [1737368]
+- [tools] selftests: forwarding: Test action VLAN modify (Ivan Vecera) [1737368]
+- [tools] selftests: forwarding: Add PCP match and VLAN match tests (Ivan Vecera) [1737368]
+- [infiniband] rdma/mlx5: Use irq xarray locking for mkey_table (Alaa Hleihel) [1724336]
+- [netdrv] mlx4_core: Dynamically set guaranteed amount of counters per VF (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Initialize on stack link modes bitmap (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: fix ethtool self test: link speed (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix handling of compressed CQEs in case of low NAPI budget (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Don't store direct pointer to action's tunnel info (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Fix NULL pointer dereference in extended destination (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Only skip encap flows update when encap init failed (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Determine source port properly for vlan push action (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Fix flow counter list auto bits struct (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Clear old rate limit when closing QP (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Remove dead code (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: fix memory leak in mlx5_fw_fatal_reporter_dump (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: prevent memory leak in mlx5_fpga_conn_create_cq (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: TX, Fix consumer index of error cqe dump (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Tx, Zero-memset WQE info struct upon update (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Tx, Fix assumption of single WQEBB of NOP in cleanup flow (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Add missing synchronize_srcu() for MW cases (Alaa Hleihel) [1724307 1724336]
+- [infiniband] rdma/mlx5: Order num_pending_prefetch properly with synchronize_srcu (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Do not allow rereg of a ODP MR (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix matching on tunnel addresses type (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add device ID of upcoming BlueField-2 (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Free mpi in mp_slave mode (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Use the original address for the page during free_pages (Alaa Hleihel) [1724308 1724336]
+- [netdrv] mlx5: FWTrace, Reduce stack usage (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Remove unnecessary clear_bit()s (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: fix spelling mistake "offlaods" -> "offloads" (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Remove leftover declaration (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: ethtool, Fix a typo in WOL function names (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add missing include file to lib/crypto.c (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: remove self-assignment on esw->dev (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Support MLX5_CMD_OP_QUERY_LAG as a DEVX general command (Alaa Hleihel) [1724307 1724336]
+- [kernel] mlx5: Fix mlx5_ifc_query_lag_out_bits (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Fix formats with line continuation whitespace (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix mlx5e_tx_reporter_create return value (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Fix offset of tisc bits reserved field (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: fix -Wtype-limits compilation warnings (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Support per device q counters in switchdev mode (Alaa Hleihel) [1659186 1724336]
+- [infiniband] ib/mlx5: Refactor code for counters allocation (Alaa Hleihel) [1659186 1724336]
+- [netdrv] mlx5: DR, Replace CRC32 implementation to use kernel lib (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Support IPv4 and IPv6 mixed matcher (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Allow insertion of duplicate rules (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: avoid 64-bit division in dr_icm_pool_mr_create() (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5e: Fix traffic duplication in ethtool steering (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: DR, Allow matching on vport based on vhca_id (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Fix getting incorrect prev node in ste_free (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Remove redundant vport number from action (Alaa Hleihel) [1760284 1724336]
+- [kernel] mlx5: DR, Fix SW steering HW bits and definitions (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: fix missing assignment of variable err (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: Fix rt's type in dr_action_create_reformat_action (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Fix error return code in dr_domain_init_resources() (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: Fix addr's type in mlx5dr_icm_dm (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: Add devlink flow_steering_mode parameter (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: Add support to use SMFS in switchdev mode (Alaa Hleihel) [1760284 1724327 1724336]
+- [netdrv] mlx5: Add API to set the namespace steering mode (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: Add direct rule fs_cmd implementation (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Add CONFIG_MLX5_SW_STEERING for software steering support (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Expose APIs for direct rule managing (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Add required FW steering functionality (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Expose steering rule functionality (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Expose steering action functionality (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Expose steering matcher functionality (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Expose steering table functionality (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Expose steering domain functionality (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Add Steering entry (STE) utilities (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Expose an internal API to issue RDMA operations (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, ICM pool memory allocator (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Add direct rule command utilities (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: DR, Add the internal direct rule types definitions (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: Add flow steering actions to fs_cmd shim layer (Alaa Hleihel) [1760284 1724327 1724336]
+- [netdrv] mlx5: Set only stag for match untagged packets (Alaa Hleihel) [1760284 1724336]
+- [kernel] mlx5: Add stub for mlx5_eswitch_mode (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: Avoid disabling RoCE when uninitialized (Alaa Hleihel) [1760284 1724336]
+- [kernel] mlx5: Add HW bits and definitions required for SW steering (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5: Move device memory management to mlx5_core (Alaa Hleihel) [1760284 1724336]
+- [netdrv] mlx5e: Support LAG TX port affinity distribution (Alaa Hleihel) [1760285 1724336]
+- [netdrv] mlx5e: Expose new function for TIS destroy loop (Alaa Hleihel) [1760285 1724336]
+- [kernel] mlx5: Add lag_tx_port_affinity capability bit (Alaa Hleihel) [1760285 1724336]
+- [netdrv] mlx5e: Add device out of buffer counter (Alaa Hleihel) [1760291 1724336]
+- [netdrv] mlx5: Fix the order of fc_stats cleanup (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix deallocation of non-fully init encap entries (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Only access fully initialized flows in neigh update (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Refactor neigh update for concurrent execution (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Refactor neigh used value update for concurrent execution (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Protect neigh hash encap list with spinlock and rcu (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Refactor mlx5e_neigh_update_table->encap_lock (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Extend neigh hash entry with rcu (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Always take reference to neigh entry (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Extract code that queues neigh update work into function (Alaa Hleihel) [1663231 1724336]
+- [kernel] mlx5: Add support for VNIC_ENV internal rq counter (Alaa Hleihel) [1760291 1724336]
+- [netdrv] mlx5e: Use refcount_t for refcount (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Use vhca_id in generating representor port_index (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Simplify querying port representor parent id (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5: E-switch, Removed unused hwid (Alaa Hleihel) [1663231 1724327 1724336]
+- [netdrv] mlx5e: Allow concurrent creation of encap entries (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Protect encap hash table with mutex (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Extend encap entry with reference counter (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Allow concurrent creation of mod_hdr entries (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Protect mod_hdr hash table with mutex (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Protect mod header entry flows list with spinlock (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Extend mod header entry with reference counter (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Allow concurrent creation of hairpin entries (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Protect hairpin hash table with mutex (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Protect hairpin entry flows list with spinlock (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Extend hairpin entry with reference counter (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5: E-switch, Tide up eswitch config sequence (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Remove redundant mc_promisc NULL check (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, remove redundant error handling (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-switch, Introduce helper function to enable/disable vports (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-switch, Initialize TSAR Qos hardware block before its user vports (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-switch, Combine metadata enable/disable functionality (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Verify support QoS element type (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Make load_one() and unload_one() symmetric (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add flow counter pool (Alaa Hleihel) [1760297 1724336]
+- [netdrv] mlx5: Add flow counter bulk infrastructure (Alaa Hleihel) [1760297 1724336]
+- [kernel] mlx5: Add flow counter bulk allocation hardware bits and command (Alaa Hleihel) [1760297 1724336]
+- [netdrv] mlx5: Refactor and optimize flow counter bulk query (Alaa Hleihel) [1760297 1724336]
+- [netdrv] mlx5e: Protect tc flow table with mutex (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Rely on rcu instead of rtnl lock when getting upper dev (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Eswitch, use state_lock to synchronize vlan change (Alaa Hleihel) [1663231 1724327 1724336]
+- [netdrv] mlx5e: Eswitch, change offloads num_flows type to atomic64 (Alaa Hleihel) [1663231 1724327 1724336]
+- [netdrv] mlx5e: Protect unready flows with dedicated lock (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Protect tc flows hashtable with rcu (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Change flow flags type to unsigned long (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Extend tc flow struct with reference counter (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Simplify get_route_and_out_devs helper function (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Improve ethtool rxnfc callback structure (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Avoid warning print when not required (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Print a warning when LRO feature is dropped or not allowed (Alaa Hleihel) [1663231 1724336]
+- [netdrv] mlx5e: Remove ethernet segment from dump WQE (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Add num bytes metadata to WQE info (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Fix delay in fw fatal report handling due to fw report (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Fix crdump chunks print (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Block MR WR if UMR is not possible (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Fix MR re-registration flow to use UMR properly (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Report and handle ODP support properly (Alaa Hleihel) [1724308 1724336]
+- [infiniband] ib/mlx5: Consolidate use_umr checks into single function (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix compatibility issue with ethtool flash device (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Fix use-after-free error while accessing ev_file pointer (Alaa Hleihel) [1724307 1724336]
+- [netdrv] mlx5e: Remove redundant check in CQE recovery flow of tx reporter (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix error flow of CQE recovery on tx reporter (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix false negative indication on tx reporter CQE recovery (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: kTLS, Fix tisn field placement (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: kTLS, Fix tisn field name (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: kTLS, Fix progress params context WQE layout (Alaa Hleihel) [1724336]
+- [kernel] mlx5: kTLS, Fix wrong TIS opmod constants (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: crypto, Fix wrong offset in encryption key command (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: ethtool, Avoid setting speed to 56GBASE when autoneg off (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Only support tx/rx pause setting for port owner (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Support inner header match criteria for non decap flow action (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5e: Use flow keys dissector to parse packets for ARFS (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Check the correct variable in error handling code (Alaa Hleihel) [1724307 1724336]
+- [infiniband] ib/mlx5: Fix implicit MR release flow (Alaa Hleihel) [1724308 1724336]
+- [netdrv] mlx5e: always initialize frag->last_in_page (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Release locks during notifier unregister (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Fix MR registration flow to use UMR properly (Alaa Hleihel) [1764207 1724336]
+- [netdrv] mlx5e: kTLS, Call WARN_ONCE on netdev mismatch (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Prevent encap flow counter update async to user query (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix matching of speed to PRM link modes (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Fix modify_cq_in alignment (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add missing RDMA_RX capabilities (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Use reversed order when unregister devices (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Fix RSS Toeplitz setup to be aligned with the HW specification (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Prevent concurrent MR updates during invalidation (Alaa Hleihel) [1724308 1724336]
+- [infiniband] ib/mlx5: Fix clean_mr() to work in the expected order (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Move MRs to a kernel PD when freeing them to the MR cache (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Use direct mkey destroy command upon UMR unreg failure (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Fix unreg_umr to ignore the mkey state (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Replace kfree with kvfree (Alaa Hleihel) [1724308 1724336]
+- [netdrv] mlx5: Replace kfree with kvfree (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Rely on filter_dev instead of dissector keys for tunnels (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Verify encapsulation is supported (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Convert single case statement switch statements into if statements (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Reduce ingress acl modify metadata stack usage (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5e: Fix compilation error in TLS code (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: IPoIB, Add error path in mlx5_rdma_setup_rn (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix error flow in tx reporter diagnose (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix return value from timeout recover function (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Rx, Fix checksum calculation for new hardware (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Fix port tunnel GRE entropy control (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Fix default encap mode (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5e: Return in default case statement in tx_post_resync_params (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Register devlink ports for physical link, PCI PF, VFs (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Set RDMA DIM to be enabled by default (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Report correctly tag matching rendezvous capability (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Implement VHCA tunnel mechanism in DEVX (Alaa Hleihel) [1724307 1724336]
+- [kernel] mlx5: Introduce VHCA tunnel device capability (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Add kTLS TX HW offload support (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Introduce a fenced NOP WQE posting function (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Re-work TIS creation functions (Alaa Hleihel) [1760285 1724336]
+- [netdrv] mlx5e: Tx, Unconstify SQ stop room (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Tx, Don't implicitly assume SKB-less wqe has one WQEBB (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Tx, Make SQ WQE fetch function type generic (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Tx, Enforce L4 inline copy when needed (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Move helper functions to a new txrx datapath header (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Accel, Add core TLS support for the Connect-X family (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add crypto library to support create/destroy encryption key (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Kconfig, Better organize compilation flags (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Accel, Expose accel wrapper for IPsec FPGA function (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Add counter_alloc_stats() and counter_update_stats() support (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Support statistic q counter configuration (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Add counter set id as a parameter for mlx5_ib_query_q_counters() (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: Support set qp counter (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Added devlink info callback (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Added fw version query command (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Add rts2rts_qp_counters_set_id field in hca cap (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Use proper allocation API to get zeroed memory (Alaa Hleihel) [1724336]
+- [infiniband] ib/mlx5: DEVX cleanup mdev (Alaa Hleihel) [1724307 1724336]
+- [infiniband] ib/mlx5: Add DEVX support for CQ events (Alaa Hleihel) [1724307 1724336]
+- [infiniband] ib/mlx5: Implement DEVX dispatching event (Alaa Hleihel) [1724307 1724336]
+- [infiniband] ib/mlx5: Enable subscription for device events over DEVX (Alaa Hleihel) [1724307 1724336]
+- [infiniband] ib/mlx5: Register DEVX with mlx5_core to get async events (Alaa Hleihel) [1724307 1724336]
+- [infiniband] ib/mlx5: Introduce MLX5_IB_OBJECT_DEVX_ASYNC_EVENT_FD (Alaa Hleihel) [1724307 1724336]
+- [kernel] mlx5: Properly name the generic WQE control field (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Introduce TLS TX offload hardware bits and structures (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Refactor mlx5_esw_query_functions for modularity (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch prepare functions change handler to be modular (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: Introduce and use mlx5_eswitch_get_total_vports() (Alaa Hleihel) [1724327 1724336]
+- [infiniband] ib/mlx5: Fixed reporting counters on 2nd port for Dual port RoCE (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Expose device definitions for object events (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Report EQE data upon CQ completion (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Report a CQ error event only when a handler was set (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: mlx5_core_create_cq() enhancements (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Expose the API to register for ANY event (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Use event mask based on device capabilities (Alaa Hleihel) [1724308 1724336]
+- [netdrv] mlx5: Fix mlx5_core_destroy_cq() error flow (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Handle UC address change in switchdev mode (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Consider host PF for inline mode and vlan pop (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Use iterator for vlan and min-inline setups (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Reg/unreg function changed event at correct stage (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Consolidate eswitch function number of VFs (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Refactor eswitch SR-IOV interface (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: Handle host PF vport mac/guid for ECPF (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Use correct flags when configuring vlan (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Reduce dependency on enabled_vfs counter and num_vfs (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Don't handle VF func change if host PF is disabled (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: Limit scope of mlx5_get_next_phys_dev() to PCI PF devices (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Move pci status reg access mutex to mlx5_pci_init (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Rename mlx5_pci_dev_type to mlx5_coredev_type (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Cleanup rep when doing unload (Alaa Hleihel) [1724336]
+- [infiniband] {ib, net}/mlx5: E-Switch, Use index of rep for vport to IB port mapping (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Use vport index when init rep (Alaa Hleihel) [1724327 1724336]
+- [kernel] mlx5: Added MCQI and MCQS registers' description to ifc (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Add hardware definitions for sub functions (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Disallow tc redirect offload cases we don't support (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Expose same physical switch_id for all representors (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Don't refresh TIRs when updating representor SQs (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: reduce stack usage in mlx5_eswitch_termtbl_create (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Set drvinfo in generic manner (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Correct phys_port_name for PF port (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Report netdevice MPLS features (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Move to HW checksumming advertising (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: MPFS, Allow adding the same MAC more than once (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: MPFS, Cleanup add MAC flow (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Move queue param structs to en/params.h (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Encapsulate open/close queues into a function (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Consider XSK in XDP MTU limit calculation (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: XDP_TX from UMEM support (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Share the XDP SQ for XDP_TX between RQs (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Refactor struct mlx5e_xdp_info (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Allow ICO SQ to be used by multiple RQs (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Calculate linear RX frag size considering XSK (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Replace deprecated PCI_DMA_TODEVICE (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Attach/detach XDP program safely (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Enable vport metadata matching if firmware supports it (Alaa Hleihel) [1724327 1724336]
+- [infiniband] rdma/mlx5: Add vport metadata matching for IB representors (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Add match on vport metadata for rule in slow path (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Pass metadata from FDB to eswitch manager (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Add query and modify esw vport context functions (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Add match on vport metadata for rule in fast path (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5e: Specifying known origin of packets matching the flow (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Tag packet with vport number in VF vports and uplink ingress ACLs (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: Add flow context for flow tag (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Introduce a helper API to check VF vport (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: Support allocating modify header context from ingress ACL (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Get vport ACL namespace by vport index (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Introduce vport metadata matching bits and enum constants (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Convert mkey_table to XArray (Alaa Hleihel) [1724308 1724307 1724336]
+- [infiniband] rdma/mlx5: Refactor MR descriptors allocation (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Use PA mapping for PI handover (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Improve PI handover performance (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Remove unused IB_WR_REG_SIG_MR code (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Enable decap and packet reformat on FDB (Alaa Hleihel) [1724336]
+- [infiniband] rdma/mlx5: Consider eswitch encap mode (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: add missing void argument to function mlx5_devlink_alloc (Alaa Hleihel) [1724336]
+- [kernel] mlx5: Expose eswitch encap mode (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Declare more strictly devlink encap mode (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5e: use indirect calls wrapper for the rx packet handler (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: use indirect calls wrapper for skb allocation (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Report devlink health on FW fatal issues (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add support for FW fatal reporter dump (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add fw fatal devlink_health_reporter (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Report devlink health on FW issues (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add support for FW reporter dump (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Create FW devlink_health_reporter (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Issue SW reset on FW assert (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Control CR-space access by different PFs (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Handle SW reset of FW in error flow (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add Crdump support (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add Vendor Specific Capability access gateway (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Move all devlink related functions calls to devlink.c (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Add EQ enable/disable API (Alaa Hleihel) [1724308 1724336]
+- [netdrv] mlx5: Use a single IRQ for all async EQs (Alaa Hleihel) [1724308 1724336]
+- [netdrv] mlx5: Rename mlx5_irq_info to mlx5_irq (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Move all IRQ logic to pci_irq.c (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Generalize IRQ interface to work with irq_table (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Separate IRQ table creation from EQ table creation (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Move IRQ affinity set to IRQ allocation phase (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Move IRQ rmap creation to IRQ allocation phase (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Separate IRQ data from EQ table data (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Separate IRQ request/free from EQ life cycle (Alaa Hleihel) [1724308 1724336]
+- [netdrv] mlx5: Change interrupt handler to call chain notifier (Alaa Hleihel) [1724308 1724336]
+- [netdrv] mlx5: Introduce EQ polling budget (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Support querying max VFs from device (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Return raw output for query esw functions (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Handle representors creation in handler context (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: Increase wait time for fw initialization (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Move firmware flash implementation to devlink (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: TX, Improve performance under GSO workload (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Use termination table for VLAN push actions (Alaa Hleihel) [1722647 1724327 1724336]
+- [netdrv] mlx5e: Geneve, Add support for encap/decap flows offload (Alaa Hleihel) [1725582 1724336]
+- [netdrv] mlx5e: Rearrange tc tunnel code in a modular way (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Geneve, Keep tunnel info as pointer to the original struct (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: Geneve, Manage Geneve TLV options (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Enable setting multiple match criteria for flow group (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5e: Allow matching only enc_key_id/enc_dst_port for decapsulation action (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Generalize vport type in vport representor (Alaa Hleihel) [1724336]
+- [netdrv] {ib, net}/mlx5: Constify rep ops functions pointers (Alaa Hleihel) [1724327 1724336]
+- [netdrv] {ib, net}/mlx5: No need to typecast from void* to mlx5_ib_dev* (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: E-Switch, Honor eswitch functions changed event cap (Alaa Hleihel) [1724327 1724336]
+- [netdrv] mlx5: E-Switch, Replace host_params event with functions_changed event (Alaa Hleihel) [1724327 1724336]
+- [kernel] mlx5: Introduce termination table bits (Alaa Hleihel) [1722647 1724336]
+- [kernel] mlx5: Add core dump register access HW bits (Alaa Hleihel) [1724336]
+- [netdrv] mlx5: potential error pointer dereference in error handling (Alaa Hleihel) [1724336]
+- [netdrv] mlx5e: Support tagged tunnel over bond (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Avoid detaching non-existing netdev under switchdev mode (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Fix source port matching in fdb peer flow rule (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Replace reciprocal_scale in TX select queue function (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Avoid reloading already removed devices (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Update pci error handler entries and command translation (Alaa Hleihel) [1724335]
+- [infiniband] mlx5: avoid 64-bit division (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Disable rxhash when CQE compress is enabled (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: restrict the real_dev of vlan device is the same as uplink device (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Allocate root ns memory using kzalloc to match kfree (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Avoid double free in fs init error unwinding path (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Avoid double free of root ns in the error flow path (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Fix error handling in mlx5_load() (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Fix possible modify header actions memory leak (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Fix no rewrite fields with the same match (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Additional check for flow destination comparison (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Add missing ethtool driver info for representors (Alaa Hleihel) [1766306 1724335]
+- [netdrv] mlx5e: Fix number of vports for ingress ACL configuration (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Fix ethtool rxfh commands when CONFIG_MLX5_EN_RXNFC is disabled (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Fix peer pf disable hca command (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: E-Switch, Correct type to u16 for vport_num and int for vport_index (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Add meaningful return codes to status_to_err function (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Imply MLXFW in mlx5_core (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Set completion EQs as shared resources (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Verify DEVX general object type correctly (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Remove MAYEXEC flag (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Device resource control for privileged DEVX user (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Add steering SW ICM device memory type (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Warn on allocated MEMIC buffers during cleanup (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Support device memory type attribute (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Add missing XRC options to QP optional params mask (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: E-Switch, Use atomic rep state to serialize state change (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: E-Switch, Fix the check of legal vport (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: E-Switch, Use getter to access all vport array (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Use available mlx5_vport struct (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Reuse mlx5_esw_for_each_vf_vport macro in two files (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Remove unused mlx5_query_nic_vport_vlans (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: remove meaningless CFLAGS_tracepoint.o (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Put the common XDP code into a function (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: ethtool, Add support for EEPROM high pages query (Alaa Hleihel) [1724322 1724335]
+- [netdrv] mlx5e: Return error when trying to insert existing flower filter (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Replace TC VLAN pop with VLAN 0 rewrite in prio tag mode (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: ACLs for priority tag mode (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Turn on HW tunnel offload in all TIRs (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Take common TIR context settings into a function (Alaa Hleihel) [1724335]
+- [kernel] mlx5: Fix broken hca cap offset (Alaa Hleihel) [1725554 1724335]
+- [kernel] mlx5: Geneve, Add flow table capabilities for Geneve decap with TLV options (Alaa Hleihel) [1725554 1724335]
+- [kernel] mlx5: Geneve, Add basic Geneve encap/decap flow table capabilities (Alaa Hleihel) [1725554 1724335]
+- [netdrv] mlx5: Eswitch, enable RoCE loopback traffic (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Add new miss flow table action (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Add support in RDMA RX steering (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Pass flow steering objects to fs_cmd (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Enable general events on all interfaces (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Restrict 'DELAY_DROP_TIMEOUT' subtype to Ethernet interfaces (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Separate and generalize dma device from pci device (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Get rid of storing copy of device name (Alaa Hleihel) [1724335]
+- [kernel] mlx5: e-switch: Introduce prio tag mode (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Expose TIR ICM address to user space (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Introduce new TIR creation core API (Alaa Hleihel) [1724335]
+- [kernel] mlx5: Expose TIR ICM address in command outbox (Alaa Hleihel) [1724335]
+- [kernel] mlx5: Expose SW ICM related device memory capabilities (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Use #define for the WQE wait timeout constant (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Remove unused rx_page_reuse stat (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Take HW interrupt trigger into a function (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Remove unused parameter (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Add an underflow warning comment (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Move parameter calculation functions to en/params.c (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Report mlx5e_xdp_set errors (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Remove unused parameter (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: XDP, Inline small packets into the TX MPWQE in XDP xmit flow (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: XDP, Add TX MPWQE session counter (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: XDP, Enhance RQ indication for XDP redirect flush (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: XDP, Fix shifted flag index in RQ bitmap (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: RX, Support multiple outstanding UMR posts (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Don't create IB representors when in multiport RoCE mode (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Initialize roce port info before multiport master init (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Allow DEVX and raw creation flow on reps (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Add query e-switch vport context to devx white list (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Allow inserting a steering rule to the FDB (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Create flow table with max size supported (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Access the prio bypass inside the FDB flow table namespace (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Check for error return in flow_rule rather than err (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Remove VF representor profile (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Move to single device multiport ports in switchdev mode (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Move SMI caps logic (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Refactor netdev affinity code (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Move default representors SQ steering to rule to modify QP (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Move rep into port struct (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Use correct size for device resources (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Move ports allocation to outside of INIT stage (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Free IB device on remove (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Move netdev info into the port struct (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: E-Switch, add a new prio to be used by the RDMA side (Alaa Hleihel) [1724335]
+- [kernel] mlx5: E-Switch, don't use hardcoded values for FDB prios (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Remove references to uboject->context (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Unify logic of MTU boundaries (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Obsolete param field holding a constant value (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: A write memory barrier is sufficient in EQ ci update (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Do not rewrite fields with the same match (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Offload TC e-switch rules with ingress VLAN device (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Offload TC e-switch rules with egress VLAN device (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Allow VLAN rewrite of prio field with the same match (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Deny VLAN rewrite if there is no VLAN header match (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Use helpers to get headers criteria and value pointers (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Return -EOPNOTSUPP when attempting to offload an unsupported action (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Deletes unnecessary setting of esw_attr->parse_attr (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Remove 'parse_attr' argument in parse_tc_fdb_actions() (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Make the log friendly when decapsulation offload not supported (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: E-Switch, Fix double mutex initialization (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Handle event of power detection in the PCIE slot (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Cleanup WQE page fault handler (Alaa Hleihel) [1724335]
+- [kernel] mlx5: Expose MPEIN (Management PCIE INfo) register layout (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Add rate limit print macros (Alaa Hleihel) [1724335]
+- [infiniband] mlx5: Add explicit bar address field (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Replace dev_err/warn/info by mlx5_core_err/warn/info (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Use dev->priv.name instead of dev_name (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Make mlx5_core messages independent from mdev->pdev (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Break load_one into three stages (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Function setup/teardown procedures (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Move health and page alloc init to mdev_init (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Split mdev init and pci init (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Remove redundant init functions parameter (Alaa Hleihel) [1724335]
+- [kernel] mlx5: Remove spinlock support from mlx5_write64 (Alaa Hleihel) [1724335]
+- [kernel] mlx5: Remove unused MLX5_*_DOORBELL_LOCK macros (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Declare devx_async_cmd_event_fops static (Alaa Hleihel) [1724335]
+- [infiniband] ib/mlx5: Compare only index part of a memory window rkey (Alaa Hleihel) [1724335]
+- [infiniband] mlx5: Convert mlx5_srq_table to XArray (Alaa Hleihel) [1724335]
+- [netdrv] mlx5e: Replace TC VLAN pop and push actions with VLAN modify (Alaa Hleihel) [1722646 1724335]
+- [netdrv] mlx5e: Support VLAN modify action (Alaa Hleihel) [1722646 1724335]
+- [netdrv] mlx5e: Add VLAN ID rewrite fields (Alaa Hleihel) [1722646 1724335]
+- [netdrv] mlx5e: TX, Add geneve tunnel stateless offload support (Alaa Hleihel) [1722661 1724335]
+- [netdrv] mlx5e: Take SW parser code to a separate function (Alaa Hleihel) [1722661 1724335]
+- [netdrv] mlx5e: Fix port buffer function documentation format (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Simplify mlx5_sriov_is_enabled() by using pci core API (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Rename total_vfs to total_vports (Alaa Hleihel) [1724335]
+- [netdrv] mlx5: Simplify sriov enable/disable flow (Alaa Hleihel) [1724335]
+- [infiniband] rdma/mlx5: Use rdma_user_map_io for mapping BAR pages (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: ethtool, Remove unsupported SFP EEPROM high pages query (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Switch to Toeplitz RSS hash by default (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Protect against non-uplink representor for encap (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Rx, Fixup skb checksum for packets with tail padding (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: XDP, Avoid checksum complete when XDP prog is loaded (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Use fail-safe channels reopen in tx reporter recover (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Skip un-needed tx recover if interface state is down (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Update xon formula (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Update xoff formula (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, fix syndrome (0x678139) when turn on vepa (Alaa Hleihel) [1722659 1724333]
+- [netdrv] mlx5: E-Switch, Protect from invalid memory access in offload fdb table (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Fix access to invalid memory when toggling esw modes (Alaa Hleihel) [1722659 1724333]
+- [netdrv] mlx5e: Add a lock on tir list (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Fix error handling when refreshing TIRs (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Decrease default mr cache size (Alaa Hleihel) [1748518 1724333]
+- [infiniband] ib/mlx5: Reset access mask when looping inside page fault handler (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Avoid panic when setting vport rate (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Avoid panic when setting vport mac, getting vport config (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: IPoIB, Fix RX checksum statistics update (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Remove redundant lag function to get pf num (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: ODP support for XRC transport is not enabled by default in FW (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Update tx reporter status in case channels were successfully opened (Alaa Hleihel) [1722274 1724333]
+- [netdrv] mellanox: Switch to bitmap_zalloc() (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Set correct write permissions for implicit ODP MR (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Declare mlx5e_tx_reporter_recover_from_ctx as static (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Support ndo bridge_setlink and getlink (Alaa Hleihel) [1722659 1724333]
+- [netdrv] mlx5: E-Switch, Add support for VEPA in legacy mode (Alaa Hleihel) [1722659 1724333]
+- [netdrv] mlx5e: Fix mlx5e_tx_reporter_create return value (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Fix return status of TX reporter timeout recover (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Re-add support for TX timeout when TX reporter is not valid (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Fix warn print in case of TX reporter creation failure (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Disable esw manager vport correctly (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Fix the warning on vport index out of range (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Delete unused FPGA QPN variable (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Wrap the open and apply of channels in one fail-safe function (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Factor out HCA capabilities functions (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Allow transition to offloads mode for ECPF (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Load/unload VF reps according to event from host PF (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Consider ECPF vport depends on eswitch ownership (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Assign a different position for uplink rep and vport (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Centralize repersentor reg/unreg to eswitch driver (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Support load/unload reps of specific vport types (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Add state to eswitch vport representors (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Use getter and iterator to access vport/rep (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Split VF and special vports for offloads mode (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Refactor offloads flow steering init/cleanup (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Properly refer to host PF vport as other vport (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Properly refer to the esw manager vport (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Correctly set LAG mode for ECPF (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Avoid magic numbers when initializing offloads mode (Alaa Hleihel) [1724333]
+- [kernel] mlx5: Relocate vport macros to the vport header file (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: E-Switch, Normalize the name of uplink vport number (Alaa Hleihel) [1724333]
+- [kernel] mlx5: Provide an alternative VF upper bound for ECPF (Alaa Hleihel) [1724333]
+- [kernel] mlx5: Add host params change event (Alaa Hleihel) [1724333]
+- [kernel] mlx5: Add query host params command (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Update enable HCA dependency (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Introduce Mellanox SmartNIC and modify page management logic (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Use unified register/load function for uplink and VF vports (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Use consistent vport num argument type (Alaa Hleihel) [1724333]
+- [kernel] mlx5: Use void pointer as the type in address_of macro (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Align ODP capability function with netdev coding style (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: use RCU lock in mlx5_eq_cq_get() (Alaa Hleihel) [1724333]
+- [infiniband] rdma/mlx5: Fix memory leak in case we fail to add an IB device (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Simplify WQE count power of two check (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Add tx timeout support for mlx5e tx reporter (Alaa Hleihel) [1722274 1724333]
+- [netdrv] mlx5e: Add tx reporter support (Alaa Hleihel) [1722274 1724333]
+- [infiniband] ib/mlx5: Advertise XRC ODP support (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Advertise SRQ ODP support for supported transports (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Add ODP SRQ support (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Let read user wqe also from SRQ buffer (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Add XRC initiator ODP support (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Clean mlx5_ib_mr_responder_pfault_handler() signature (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Remove useless check in ODP handler (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Set ODP SRQ support in firmware (Alaa Hleihel) [1724333]
+- [kernel] mlx5: Add XRC transport to ODP device capabilities layout (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Implement DEVX hot unplug for async command FD (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Implement the file ops of DEVX async command FD (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Reuse fold sw stats in representors (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Present the representors SW stats when state is not opened (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Separate between ethtool and netdev software stats folding (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Add trace points for flow tables create/destroy (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Expand XPS cpumask to cover all online cpus (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: Take CQ decompress fields into a separate structure (Alaa Hleihel) [1724333]
+- [netdrv] mlx5e: RX, Make sure packet header does not cross page boundary (Alaa Hleihel) [1724333]
+- [infiniband] mlx5: no need to check return value of debugfs_create functions (Alaa Hleihel) [1724333]
+- [netdrv] mlx5: Add pci AtomicOps request (Alaa Hleihel) [1724333]
+- [infiniband] ib/mlx5: Don't override existing ip_protocol (Alaa Hleihel) [1724333]
+- [infiniband] rdma/mlx5: Replace kzalloc with kcalloc (Alaa Hleihel) [1724333]
+- [documentation] netfilter: doc: Add nf_tables part in tproxy.txt (Phil Sutter) [1762977]
+- [net] netfilter: nft_socket: fix erroneous socket assignment (Phil Sutter) [1762977]
+- [net] netfilter: nft_socket: Break evaluation if no socket found (Phil Sutter) [1762977]
+- [net] netfilter: nft_tproxy: Fix missing-braces warning (Phil Sutter) [1762977]
+- [net] netfilter: nft_tproxy: Add missing config check (Phil Sutter) [1762977]
+- [net] netfilter: nf_tables: Add native tproxy support (Phil Sutter) [1762977]
+- [net] netfilter: nft_tproxy: Move nf_tproxy_assign_sock() to nf_tproxy.h (Phil Sutter) [1762977]
+- [net] sched: ensure opts_len <= IP_TUNNEL_OPTS_MAX in act_tunnel_key (Ivan Vecera) [1774706]
+- [net] ipmr: Fix skb headroom in ipmr_get_route(). (Guillaume Nault) [1773692]
+- [net] netns: fix GFP flags in rtnl_net_notifyid() (Guillaume Nault) [1763661]
+- [net] netns: fix NLM_F_ECHO mechanism for RTM_NEWNSID (Guillaume Nault) [1763661]
+- [netdrv] ptp: ptp_clock: Publish scaled_ppm_to_ppb (Ivan Vecera) [1772085]
+- [kernel] rh_features: move rh_features entry to sys/kernel (Hangbin Liu) [1660583]
+- [net] netfilter: nf_tables: Make nft_meta expression more robust (Phil Sutter) [1725169]
+- [tools] selftests/tls: add test for concurrent recv and send (Sabrina Dubroca) [1760375]
+- [net] tls: add a TX lock (Sabrina Dubroca) [1760375]
+- [net] tls: don't pay attention to sk_write_pending when pushing partial records (Sabrina Dubroca) [1760375]
+- [net] tls: fix sk_msg trim on fallback to copy mode (Sabrina Dubroca) [1760375]
+- [net] tls: align non temporal copy to cache lines (Sabrina Dubroca) [1760375]
+- [net] tls: remove the record tail optimization (Sabrina Dubroca) [1760375]
+- [net] tls: use RCU for the adder to the offload record list (Sabrina Dubroca) [1760375]
+- [net] tls: unref frags in order (Sabrina Dubroca) [1760375]
+- [net] tcp: ulp: fix possible crash in tcp_diag_get_aux_size() (Sabrina Dubroca) [1760375]
+- [net] tls: dedup the record cleanup (Sabrina Dubroca) [1760375]
+- [net] tls: clean up the number of #ifdefs for CONFIG_TLS_DEVICE (Sabrina Dubroca) [1760375]
+- [net] tls: narrow down the critical area of device_offload_lock (Sabrina Dubroca) [1760375]
+- [net] tls: don't jump to return (Sabrina Dubroca) [1760375]
+- [net] tls: export protocol version, cipher, tx_conf/rx_conf to socket diag (Sabrina Dubroca) [1760375]
+- [net] tcp: ulp: add functions to dump ulp-specific information (Sabrina Dubroca) [1760375]
+- [net] tls: use RCU protection on icsk->icsk_ulp_data (Sabrina Dubroca) [1760375]
+- [net] core/skmsg: Delete an unnecessary check before the function call "consume_skb" (Sabrina Dubroca) [1760375]
+- [net] tls, fix sk_write_space NULL write when tx disabled (Sabrina Dubroca) [1760375]
+- [net] tls: swap sk_write_space on close (Sabrina Dubroca) [1760375]
+- [net] tls: prevent skb_orphan() from leaking TLS plain text with offload (Sabrina Dubroca) [1760375]
+- [tools] selftests/tls: add a litmus test for the socket reuse through shutdown (Sabrina Dubroca) [1760375]
+- [net] tls: partially revert fix transition through disconnect with close (Sabrina Dubroca) [1760375]
+- [documentation] TLS: fix stat counters description (Sabrina Dubroca) [1760375]
+- [tools] selftests/tls: fix TLS tests with CONFIG_TLS=n (Sabrina Dubroca) [1760375]
+- [tools] selftests/tls: add shutdown tests (Sabrina Dubroca) [1760375]
+- [tools] selftests/tls: close the socket with open record (Sabrina Dubroca) [1760375]
+- [tools] selftests/tls: add a bidirectional test (Sabrina Dubroca) [1760375]
+- [tools] selftests/tls: test error codes around TLS ULP installation (Sabrina Dubroca) [1760375]
+- [tools] selftests/tls: add a test for ULP but no keys (Sabrina Dubroca) [1760375]
+- [net] bpf: sockmap/tls, close can race with map free (Sabrina Dubroca) [1760375]
+- [net] tls: fix transition through disconnect with close (Sabrina Dubroca) [1760375]
+- [net] tls: remove sock unlock/lock around strp_done() (Sabrina Dubroca) [1760375]
+- [net] tls: remove close callback sock unlock/lock around TX work flush (Sabrina Dubroca) [1760375]
+- [net] tls: don't call tls_sk_proto_close for hw record offload (Sabrina Dubroca) [1760375]
+- [net] tls: don't arm strparser immediately in tls_set_sw_offload() (Sabrina Dubroca) [1760375]
+- [net] tls: add missing prot info init (Sabrina Dubroca) [1760375]
+- [netdrv] mlx5: Return -EINVAL when WARN_ON_ONCE triggers in mlx5e_tls_resync(). (Sabrina Dubroca) [1760375]
+- [net] tls: don't clear TX resync flag on error (Sabrina Dubroca) [1760375]
+- [tools] selftests/tls: add test for poll() with data in TLS ULP (Sabrina Dubroca) [1760375]
+- [net] tls: add kernel-driven resync mechanism for TX (Sabrina Dubroca) [1760375]
+- [net] tls: generalize the resync callback (Sabrina Dubroca) [1760375]
+- [net] tls: add kernel-driven TLS RX resync (Sabrina Dubroca) [1760375]
+- [net] tls: rename handle_device_resync() (Sabrina Dubroca) [1760375]
+- [net] tls: pass record number as a byte array (Sabrina Dubroca) [1760375]
+- [net] tls: simplify seq calculation in handle_device_resync() (Sabrina Dubroca) [1760375]
+- [net] tls: export TLS per skb encryption (Sabrina Dubroca) [1760375]
+- [include] net/tls: simplify driver context retrieval (Sabrina Dubroca) [1760375]
+- [include] net/tls: split the TLS_DRIVER_STATE_SIZE and bump TX to 16 bytes (Sabrina Dubroca) [1760375]
+- [net] tls: don't pass version to tls_advance_record_sn() (Sabrina Dubroca) [1760375]
+- [include] net/tls: reorganize struct tls_context (Sabrina Dubroca) [1760375]
+- [net] tls: use version from prot (Sabrina Dubroca) [1760375]
+- [net] tls: don't re-check msg decrypted status in tls_device_decrypted() (Sabrina Dubroca) [1760375]
+- [net] tls: don't look for decrypted frames on non-offloaded sockets (Sabrina Dubroca) [1760375]
+- [net] tls: remove false positive warning (Sabrina Dubroca) [1760375]
+- [net] tls: check return values from skb_copy_bits() and skb_store_bits() (Sabrina Dubroca) [1760375]
+- [net] tls: fully initialize the msg wrapper skb (Sabrina Dubroca) [1760375]
+- [net] tls: replace the sleeping lock around RX resync with a bit lock (Sabrina Dubroca) [1760375]
+- [net] revert "net/tls: avoid NULL-deref on resync during device removal" (Sabrina Dubroca) [1760375]
+- [net] tls: avoid NULL-deref on resync during device removal (Sabrina Dubroca) [1760375]
+- [net] tls: Add support of AES128-CCM based ciphers (Sabrina Dubroca) [1760375]
+- [documentation] add TLS offload documentation (Sabrina Dubroca) [1760375]
+- [documentation] tls: RSTify the ktls documentation (Sabrina Dubroca) [1760375]
+- [net] xdp: increase kABI version (Jiri Benc) [1749817]
+- [tools] selftests: bpf: disable test_seg6_loop test (Jiri Benc) [1749817]
+- [tools] selftests: bpf: fix test_tc_tunnel hanging (Jiri Benc) [1749817]
+- [tools] selftests: bpf: xdping is not meant to be run standalone (Jiri Benc) [1749817]
+- [tools] libbpf: Use implicit XSKMAP lookup from AF_XDP XDP program (Jiri Benc) [1749817]
+- [lib] bpf, testing: Introduce 'gso_linear_no_head_frag' skb_segment test (Jiri Benc) [1749817]
+- [lib] bpf, testing: Refactor test_skb_segment() for testing skb_segment() on different skbs (Jiri Benc) [1749817]
+- [tools] selftests/bpf: test_progs: Don't leak server_fd in tcp_rtt (Jiri Benc) [1749817]
+- [tools] selftests/bpf: test_progs: fix client/server race in tcp_rtt (Jiri Benc) [1749817]
+- [net] flow_dissector: Fix potential use-after-free on BPF_PROG_DETACH (Jiri Benc) [1749817]
+- [tools] selftests/bpf: fix race in test_tcp_rtt test (Jiri Benc) [1749817]
+- [net] xdp: unpin xdp umem pages in error path (Jiri Benc) [1749817]
+- [net] sock: make cookie generation global instead of per netns (Jiri Benc) [1749817]
+- [net] bpfilter: add "WITH Linux-syscall-note" to SPDX tag of uapi headers (Jiri Benc) [1749817]
+- [net] bpf: sockmap, only create entry if ulp is not already enabled (Jiri Benc) [1749817]
+- [net] bpf: sockmap, synchronize_rcu before free'ing map (Jiri Benc) [1749817]
+- [net] bpf: sockmap, sock_map_delete needs to use xchg (Jiri Benc) [1749817]
+- [net] core: page_pool: add user refcnt and reintroduce page_pool_destroy (Jiri Benc) [1749817]
+- [net] bpf: avoid unused variable warning in tcp_bpf_rtt() (Jiri Benc) [1749817]
+- [net] xdp: fix potential deadlock on socket mutex (Jiri Benc) [1749817]
+- [net] bpfilter: print umh messages to /dev/kmsg (Jiri Benc) [1749817]
+- [net] xdp: fix possible cq entry leak (Jiri Benc) [1749817]
+- [net] xdp: fix race on generic receive path (Jiri Benc) [1749817]
+- [samples] bpf: fix tcp_bpf.readme detach command (Jiri Benc) [1749817]
+- [samples] bpf: add sample program that periodically dumps TCP stats (Jiri Benc) [1749817]
+- [tools] selftests/bpf: test BPF_SOCK_OPS_RTT_CB (Jiri Benc) [1749817]
+- [tools] bpf/tools: sync bpf.h (Jiri Benc) [1749817]
+- [net] bpf: add icsk_retransmits to bpf_tcp_sock (Jiri Benc) [1749817]
+- [net] bpf: add dsack_dups/delivered{, _ce} to bpf_tcp_sock (Jiri Benc) [1749817]
+- [net] bpf: split shared bpf_tcp_sock and bpf_sock_ops implementation (Jiri Benc) [1749817]
+- [net] bpf: add BPF_CGROUP_SOCK_OPS callback that is executed on every RTT (Jiri Benc) [1749817]
+- [net] init/kconfig: add CONFIG_CC_CAN_LINK (Jiri Benc) [1749817]
+- [net] page_pool: add helper function for retrieving dma direction (Jiri Benc) [1749817]
+- [net] xdp: fix hang while unregistering device bound to xdp socket (Jiri Benc) [1749817]
+- [net] xdp: hold device for umem regardless of zero-copy mode (Jiri Benc) [1749817]
+- [net] xsk: Change the default frame size to 4096 and allow controlling it (Jiri Benc) [1749817]
+- [tools] libbpf: Support getsockopt XDP_OPTIONS (Jiri Benc) [1749817]
+- [net] xsk: Add getsockopt XDP_OPTIONS (Jiri Benc) [1749817]
+- [net] xsk: Add API to check for available entries in FQ (Jiri Benc) [1749817]
+- [net] xsk: Properly terminate assignment in xskq_produce_flush_desc (Jiri Benc) [1749817]
+- [net] xdp: Make __mem_id_disconnect static (Jiri Benc) [1749817]
+- [net] xsk: sample kernel code is now in libbpf (Jiri Benc) [1749817]
+- [net] page_pool: fix compile warning when CONFIG_PAGE_POOL is disabled (Jiri Benc) [1749817]
+- [net] page_pool: make sure struct device is stable (Jiri Benc) [1749817]
+- [net] page_pool: add tracepoints for page_pool with details need by XDP (Jiri Benc) [1749817]
+- [net] xdp: add tracepoints for XDP mem (Jiri Benc) [1749817]
+- [net] xdp: force mem allocator removal and periodic warning (Jiri Benc) [1749817]
+- [net] xdp: tracking page_pool resources and safe removal (Jiri Benc) [1749817]
+- [netdrv] mlx5: more strict use of page_pool API (Jiri Benc) [1749817]
+- [net] page_pool: introduce page_pool_free and use in mlx5 (Jiri Benc) [1749817]
+- [net] veth: use xdp_release_frame for XDP_PASS (Jiri Benc) [1749817]
+- [net] xdp: page_pool related fix to cpumap (Jiri Benc) [1749817]
+- [net] xdp: fix leak of IDA cyclic id if rhashtable_insert_slow fails (Jiri Benc) [1749817]
+- [net] page_pool: add helper function to unmap dma addresses (Jiri Benc) [1749817]
+- [net] page_pool: add helper function to retrieve dma addresses (Jiri Benc) [1749817]
+- [net] page_pool: use DMA_ATTR_SKIP_CPU_SYNC for DMA mappings (Jiri Benc) [1749817]
+- [net] page_pool: don't use page->private to store dma_addr_t (Jiri Benc) [1749817]
+- [mm] add dma_addr_t to struct page (Jiri Benc) [1749817]
+- [tools] bpf: Sync asm-generic/socket.h to tools/ (Jiri Benc) [1749817]
+- [net] bpf: net: Add SO_DETACH_REUSEPORT_BPF (Jiri Benc) [1749817]
+- [net] veth: Support bulk XDP_TX (Jiri Benc) [1749817]
+- [net] flow_dissector: remove unused FLOW_DISSECTOR_F_STOP_AT_L3 flag (Jiri Benc) [1749817]
+- [tools] selftests/bpf: fix compilation error for flow_dissector.c (Jiri Benc) [1749817]
+- [net] bpf: Update BPF_CGROUP_RUN_PROG_INET_EGRESS calls (Jiri Benc) [1749817]
+- [net] signal/bpfilter: Fix bpfilter_kernl to use send_sig not force_sig (Jiri Benc) [1749817]
+- [net] arch: Use asm-generic/socket.h when possible (Jiri Benc) [1749817]
+- [net] flow_dissector: correct comments on enum flow_dissector_key_id (Jiri Benc) [1749817]
+- [net] tcp: add stat of data packet reordering events (Jiri Benc) [1749817]
+- [net] tcp: add dsack blocks received stats (Jiri Benc) [1749817]
+- [net] tcp: add data bytes retransmitted stats (Jiri Benc) [1749817]
+- [net] tcp: add data bytes sent stats (Jiri Benc) [1749817]
+- [net] tcp: add a helper to calculate size of opt_stats (Jiri Benc) [1749817]
+- [net] netfilter: Support iif matches in POSTROUTING (Phil Sutter) [1775961]
+- [tools] selftests: add basic netdevsim devlink flash testing (Petr Oros) [1770359]
+- [netdrv] netdevsim: implement fake flash updating with notifications (Petr Oros) [1770359]
+- [net] devlink: allow driver to update progress of flash update (Petr Oros) [1770359]
+- [net] devlink: Add extack to shared buffer operations (Petr Oros) [1770347]
+- [net] xfrm: policy: avoid warning splat when merging nodes (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: fix bydst hlist corruption on hash rebuild (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: fix infinite loop when merging src-nodes (Sabrina Dubroca) [1758100]
+- [tools] selftests: xfrm: alter htresh to trigger move of policies to hash table (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: fix reinsertion on node merge (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: delete inexact policies from inexact list on hash rebuild (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: use hlist rcu variants on inexact insert, part 2 (Sabrina Dubroca) [1758100]
+- [tools] selftests: xfrm: add block rules with adjacent/overlapping subnets (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: remove set but not used variable 'priority' (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: fix policy hash rebuild (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: fix netlink/pf_key policy lookups (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: add 2nd-level saddr trees for inexact policies (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: store inexact policies in a tree ordered by source address (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: check reinserted policies match their node (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: store inexact policies in a tree ordered by destination address (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: add inexact policy search tree infrastructure (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: consider if_id when hashing inexact policy (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: store inexact policies in an rhashtable (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: return NULL when inexact search needed (Sabrina Dubroca) [1758100]
+- [net] xfrm: policy: split list insertion into a helper (Sabrina Dubroca) [1758100]
+- [net] xfrm: security: iterate all, not inexact lists (Sabrina Dubroca) [1758100]
+- [tools] selftests: add xfrm policy test script (Sabrina Dubroca) [1758100]
+- [net] af_packet: fix the tx skb protocol in raw sockets with ETH_P_ALL (Ivan Vecera) [1765561]
+- [netdrv] mlx5e: Trust kernel regarding transport offset (Ivan Vecera) [1765561]
+- [netdrv] net/mlx5e: Remove the wrong assumption about transport offset (Ivan Vecera) [1765561]
+- [net] packet: Remove redundant skb->protocol set (Ivan Vecera) [1765561]
+- [net] packet: Ask driver for protocol if not provided by user (Ivan Vecera) [1765561]
+- [net] ethernet: Add parse_protocol header_ops support (Ivan Vecera) [1765561]
+- [include] net: Introduce parse_protocol header_ops callback (Ivan Vecera) [1765561]
+- [net] Don't set transport offset to invalid value (Ivan Vecera) [1765561]
+- [netdrv] Fix Kconfig indentation (Josef Oskera) [1764592]
+- [netdrv] be2net: make two arrays static const, makes object smaller (Josef Oskera) [1764592]
+- [netdrv] be2net: eliminate enable field from be_aic_obj (Josef Oskera) [1764592]
+- [netdrv] Use skb_frag_off accessors (Josef Oskera) [1764592]
+- [netdrv] Use skb accessors in network drivers (Josef Oskera) [1764592]
+- [netdrv] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 338 (Josef Oskera) [1764592]
+- [netdrv] treewide: Add SPDX license identifier - Makefile/Kconfig (Josef Oskera) [1764592]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Josef Oskera) [1764592]
+- [documentation] networking: switchdev: Update port parent ID section (Ivan Vecera) [1757840]
+- [net] Get rid of SWITCHDEV_ATTR_ID_PORT_PARENT_ID (Ivan Vecera) [1757840]
+- [net] dsa: Implement ndo_get_port_parent_id() (Ivan Vecera) [1757840]
+- [drivers] staging: fsl-dpaa2: ethsw: Implement ndo_get_port_parent_id() (Ivan Vecera) [1757840]
+- [netdrv] mscc: ocelot: Implement ndo_get_port_parent_id() (Ivan Vecera) [1757840]
+- [netdrv] net/mlx5e: Implement ndo_get_port_parent_id() (Ivan Vecera) [1757840]
+- [netdrv] liquidio: Implement ndo_get_port_parent_id() (Ivan Vecera) [1757840]
+- [net] tipc: fix unlimited bundling of small messages (Jon Maloy) [1761969]
+- [net] tipc: clean up skb list lock handling on send path (Jon Maloy) [1761969]
+- [net] tipc: fix false detection of retransmit failures (Jon Maloy) [1761969]
+- [net] tipc: reduce risk of wakeup queue starvation (Jon Maloy) [1761969]
+- [net] tipc: fix changeover issues due to large packet (Jon Maloy) [1761969]
+- [net] tipc: optimize link synching mechanism (Jon Maloy) [1761969]
+- [net] tipc: Fix a typo (Jon Maloy) [1761969]
+- [net] tipc: use rcu dereference functions properly (Jon Maloy) [1761969]
+- [net] tipc: remove ub->ubsock checks (Jon Maloy) [1761969]
+- [net] tipc: embed jiffies in macro TIPC_BC_RETR_LIM (Jon Maloy) [1761969]
+- [net] tipc: add dst_cache support for udp media (Jon Maloy) [1761969]
+- [net] tipc: rename function msg_get_wrapped() to msg_inner_hdr() (Jon Maloy) [1761969]
+- [net] tipc: eliminate unnecessary skb expansion during retransmission (Jon Maloy) [1761969]
+- [net] tipc: simplify stale link failure criteria (Jon Maloy) [1761969]
+- [net] tipc: check msg->req data len in tipc_nl_compat_bearer_disable (Jon Maloy) [1761969]
+- [net] tipc: remove the unnecessary msg->req check from tipc_nl_compat_bearer_set (Jon Maloy) [1761969]
+- [net] tipc: fix issues with early FAILOVER_MSG from peer (Jon Maloy) [1761969]
+- [net] tipc: include retrans failure detection for unicast (Jon Maloy) [1761969]
+- [net] tipc: purge deferredq list for each grp member in tipc_group_delete (Jon Maloy) [1761969]
+- [net] devlink: remove redundant rtnl lock assert (Marcelo Leitner) [1774694]
+
+* Wed Nov 27 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-156.el8]
+- [gpu] drm/i915/aml: Allow SPT PCH for all AML devices (Lyude Paul) [1761469 1731110]
+- [gpu] drm/i915/cml: Add second PCH ID for CMP (Lyude Paul) [1731110]
+- [drm] i915/cml: Add Missing PCI IDs (Lyude Paul) [1727949 1731110]
+- [gpu] DRM Backport 5.2 -> 5.3 (Lyude Paul) [1731110]
+- [xen] mm/pgtable: drop pgtable_t variable from pte_fn_t functions (Lyude Paul) [1731110]
+- [gpu] DRM Backport 5.1 -> 5.2 (Lyude Paul) [1731110]
+- [s390] bus_find_device: Unify the match callback with class_find_device (Lyude Paul) [1731110]
+- [kernel] i2c: algo-bit: include main i2c header (Lyude Paul) [1731110]
+- [extcon] axp288: Add a depends on ACPI to the Kconfig entry (Lyude Paul) [1731110]
+- [extcon] axp288: Convert to use acpi_dev_get_first_match_dev() (Lyude Paul) [1731110]
+- [acpi] gpio: merrifield: Fix build err without CONFIG_ACPI (Lyude Paul) [1731110]
+- [gpio] merrifield: Convert to use acpi_dev_get_first_match_dev() (Lyude Paul) [1731110]
+- [kernel] proc/sysctl: add shared variables for range check (Lyude Paul) [1731110]
+- [gpu] drm/i915: Split Pineview device info into desktop and mobile (Lyude Paul) [1731110]
+- [gpu] snd/hda, drm/i915: Track the display_power_status using a cookie (Lyude Paul) [1731110]
+- [video] hdmi: Dropped static functions from kernel doc (Lyude Paul) [1731110]
+- [video] hdmi: Add Unpack function for DRM infoframe (Lyude Paul) [1731110]
+- [video] drm: Enable HDR infoframe support (Lyude Paul) [1731110]
+- [kernel] drm: Add HDR source metadata property (Lyude Paul) [1731110]
+- [gpu] drm: Add colorspace info to AVI Infoframe (Lyude Paul) [1731110]
+- [gpu] drm: Add HDMI colorspace property (Lyude Paul) [1731110]
+- [kernel] video/hdmi: Add an enum for HDMI packet types (Lyude Paul) [1731110]
+- [video] hdmi: Constify infoframe passed to the pack functions (Lyude Paul) [1731110]
+- [video] hdmi: Constify infoframe passed to the log functions (Lyude Paul) [1731110]
+- [video] hdmi: Pass buffer size to infoframe unpack functions (Lyude Paul) [1731110]
+- [video] hdmi: Constify 'buffer' to the unpack functions (Lyude Paul) [1731110]
+- [video] media: hdmi.h: rename ADOBE_RGB to OPRGB and ADOBE_YCC to OPYCC (Lyude Paul) [1731110]
+- [media] replace ADOBERGB by OPRGB (Lyude Paul) [1731110]
+- [dma-buf] add show_fdinfo handler (Lyude Paul) [1731110]
+- [dma-buf] dma-fence: Signal all callbacks from dma_fence_release() (Lyude Paul) [1731110]
+- [dma-buf] udmabuf: actually unmap the scatterlist (Lyude Paul) [1731110]
+- [dma-buf] Make mmap callback actually optional (Lyude Paul) [1731110]
+- [dma-buf] Remove unused sync_dump() (Lyude Paul) [1731110]
+- [kernel] dma-buf: explicitely note that dma-fence-chains use 64bit seqno (Lyude Paul) [1731110]
+- [dma-buf] fix stack corruption in dma_fence_chain_release (Lyude Paul) [1731110]
+- [dma-buf] add new dma_fence_chain container v7 (Lyude Paul) [1731110]
+- [dma-buf] add some lockdep asserts to the reservation object implementation (Lyude Paul) [1731110]
+- [iommu] arm-smmu-v3: Fix build error without CONFIG_PCI_ATS (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Avoid locking on invalidation path when not using ATS (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Fix ATC invalidation ordering wrt main TLBs (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Rework enabling/disabling of ATS for PCI masters (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Don't issue CMD_SYNC for zero-length invalidations (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Remove boolean bitfield for 'ats_enabled' flag (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Document ordering guarantees of command insertion (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Defer TLB invalidation until ->iotlb_sync() (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Reduce contention during command-queue insertion (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Operate directly on low-level queue where possible (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Move low-level queue fields out of arm_smmu_queue (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Drop unused 'q' argument from Q_OVF macro (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Separate s/w and h/w views of prod and cons indexes (Jerry Snitselaar) [1729845]
+- [iommu] io-pgtable: Pass struct iommu_iotlb_gather to ->tlb_add_page() (Jerry Snitselaar) [1729845]
+- [iommu] io-pgtable: Pass struct iommu_iotlb_gather to ->unmap() (Jerry Snitselaar) [1729845]
+- [iommu] io-pgtable: Remove unused ->tlb_sync() callback (Jerry Snitselaar) [1729845]
+- [iommu] io-pgtable: Replace ->tlb_add_flush() with ->tlb_add_page() (Jerry Snitselaar) [1729845]
+- [iommu] io-pgtable-arm: Call ->tlb_flush_walk() and ->tlb_flush_leaf() (Jerry Snitselaar) [1729845]
+- [iommu] io-pgtable: Hook up ->tlb_flush_walk() and ->tlb_flush_leaf() in drivers (Jerry Snitselaar) [1729845]
+- [kernel] iommu/io-pgtable: Introduce tlb_flush_walk() and tlb_flush_leaf() (Jerry Snitselaar) [1729845]
+- [iommu] Pass struct iommu_iotlb_gather to ->unmap() and ->iotlb_sync() (Jerry Snitselaar) [1729845]
+- [kernel] iommu: Introduce iommu_iotlb_gather_add_page() (Jerry Snitselaar) [1729845]
+- [kernel] iommu: Introduce struct iommu_iotlb_gather for batching TLB flushes (Jerry Snitselaar) [1729845]
+- [iommu] io-pgtable: Rename iommu_gather_ops to iommu_flush_ops (Jerry Snitselaar) [1729845]
+- [iommu] io-pgtable-arm: Remove redundant call to io_pgtable_tlb_sync() (Jerry Snitselaar) [1729845]
+- [kernel] iommu: Remove empty iommu_tlb_range_add() callback from iommu_ops (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Invalidate ATC when detaching a device (Jerry Snitselaar) [1729845]
+- [iommu] arm-smmu-v3: Add support for PCI ATS (Jerry Snitselaar) [1729845]
+- [iommu] Introduce iotlb_sync_map callback (Jerry Snitselaar) [1742234]
+- [kernel] dma-mapping: fix page attributes for dma_mmap_* (Jerry Snitselaar) [1754727]
+- [kernel] dma-mapping: check pfn validity in dma_common_{mmap, get_sgtable} (Jerry Snitselaar) [1754727]
+- [kernel] swiotlb: checking whether swiotlb buffer is full with io_tlb_used (Jerry Snitselaar) [1754727]
+- [kernel] dma-direct: fix zone selection after an unaddressable CMA allocation (Jerry Snitselaar) [1754727]
+- [kernel] dma-contiguous: page-align the size in dma_free_contiguous() (Jerry Snitselaar) [1754727]
+- [kernel] dma-contiguous: do not overwrite align in dma_alloc_contiguous() (Jerry Snitselaar) [1754727]
+- [kernel] dma-mapping: fix panic caused by passing empty cma command line argument (Jerry Snitselaar) [1754727]
+- [iommu] dma: Handle SG length overflow better (Jerry Snitselaar) [1742234]
+- [iommu] dma: Handle MSI mappings separately (Jerry Snitselaar) [1742234]
+- [iommu] dma: Apply dma_{alloc, free}_contiguous functions (Jerry Snitselaar) [1742234]
+- [iommu] dma: Don't depend on CONFIG_DMA_DIRECT_REMAP (Jerry Snitselaar) [1742234]
+- [iommu] dma: Refactor iommu_dma_mmap (Jerry Snitselaar) [1742234]
+- [iommu] dma: Refactor iommu_dma_get_sgtable (Jerry Snitselaar) [1742234]
+- [iommu] dma: Refactor iommu_dma_alloc, part 2 (Jerry Snitselaar) [1742234]
+- [iommu] dma: Cleanup variable naming in iommu_dma_alloc (Jerry Snitselaar) [1742234]
+- [iommu] dma: Split iommu_dma_free (Jerry Snitselaar) [1742234]
+- [iommu] dma: Merge the CMA and alloc_pages allocation paths (Jerry Snitselaar) [1742234]
+- [iommu] dma: Don't remap CMA unnecessarily (Jerry Snitselaar) [1742234]
+- [iommu] dma: Refactor iommu_dma_alloc (Jerry Snitselaar) [1742234]
+- [iommu] dma: Refactor iommu_dma_free (Jerry Snitselaar) [1742234]
+- [iommu] dma: Remove __iommu_dma_free (Jerry Snitselaar) [1742234]
+- [iommu] dma: Refactor the page array remapping allocator (Jerry Snitselaar) [1742234]
+- [iommu] dma: Factor out remapped pages lookup (Jerry Snitselaar) [1742234]
+- [iommu] dma: Squash __iommu_dma_{map, unmap}_page helpers (Jerry Snitselaar) [1742234]
+- [iommu] dma: Move domain lookup into __iommu_dma_{map, unmap} (Jerry Snitselaar) [1742234]
+- [iommu] dma: Move __iommu_dma_map (Jerry Snitselaar) [1742234]
+- [iommu] dma: Use for_each_sg in iommu_dma_alloc (Jerry Snitselaar) [1742234]
+- [clk] Make clk_bulk_get_all() return a valid "id" (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable-arm: Support all Mali configurations (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable-arm: Correct Mali attributes (Jerry Snitselaar) [1722978]
+- [iommu] vt-d: Fix panic after kexec -p for kdump (Jerry Snitselaar) [1742234]
+- [kernel] iommu/iova: Fix compilation error with !CONFIG_IOMMU_IOVA (Jerry Snitselaar) [1742234]
+- [iommu] amd: Check PM_LEVEL_SIZE() condition in locked section (Jerry Snitselaar) [1742234]
+- [iommu] amd: Fix incorrect PASID decoding from event log (Jerry Snitselaar) [1742234]
+- [iommu] amd: Lock code paths traversing protection_domain->dev_list (Jerry Snitselaar) [1742234]
+- [iommu] amd: Lock dev_data in attach/detach code paths (Jerry Snitselaar) [1742234]
+- [iommu] amd: Check for busy devices earlier in attach_device() (Jerry Snitselaar) [1742234]
+- [iommu] amd: Take domain->lock for complete attach/detach path (Jerry Snitselaar) [1742234]
+- [iommu] amd: Remove amd_iommu_devtable_lock (Jerry Snitselaar) [1742234]
+- [iommu] amd: Remove domain->updated (Jerry Snitselaar) [1742234]
+- [iommu] iova: Avoid false sharing on fq_timer_on (Jerry Snitselaar) [1742234]
+- [iommu] Don't use sme_active() in generic code (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Fix wrong analysis whether devices share the same bus (Jerry Snitselaar) [1742234]
+- [iommu] amd: Wait for completion of IOTLB flush in attach_device (Jerry Snitselaar) [1742234]
+- [iommu] amd: Unmap all L7 PTEs when downgrading page-sizes (Jerry Snitselaar) [1742234]
+- [iommu] amd: Introduce first_pte_l7() helper (Jerry Snitselaar) [1742234]
+- [iommu] amd: Fix downgrading default page-sizes in alloc_pte() (Jerry Snitselaar) [1742234]
+- [iommu] amd: Fix pages leak in free_pagetable() (Jerry Snitselaar) [1742234]
+- [documentation] documentation: Update Documentation for iommu.passthrough (Jerry Snitselaar) [1745844]
+- [iommu] Disable passthrough mode when SME is active (Jerry Snitselaar) [1745844]
+- [iommu] Set default domain type at runtime (Jerry Snitselaar) [1745844]
+- [iommu] Print default domain type on boot (Jerry Snitselaar) [1745844]
+- [x86] dma: Get rid of iommu_pass_through (Jerry Snitselaar) [1745844]
+- [iommu] vt-d: Request passthrough mode from IOMMU core (Jerry Snitselaar) [1745844]
+- [iommu] amd: Request passthrough mode from IOMMU core (Jerry Snitselaar) [1745844]
+- [iommu] Use Functions to set default domain type in iommu_set_def_domain_type() (Jerry Snitselaar) [1745844]
+- [iommu] Add helpers to set/get default domain type (Jerry Snitselaar) [1745844]
+- [iommu] Remember when default domain type was set on kernel command line (Jerry Snitselaar) [1745844]
+- [iommu] amd: Flush old domains in kdump kernel (Jerry Snitselaar) [1742234]
+- [iommu] amd: Fix race in increase_address_space() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove global page flush support (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Fix possible use-after-free of private domain (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Detach domain before using a private one (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Correctly check format of page table in debugfs (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Detach domain when move device out of group (Jerry Snitselaar) [1742234]
+- [iommu] arm-smmu: Mark expected switch fall-through (Jerry Snitselaar) [1722978]
+- [iommu] vt-d: Print pasid table entries MSB to LSB in debugfs (Jerry Snitselaar) [1742234]
+- [iommu] iova: Remove stale cached32_node (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Check if domain->pgd was allocated (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Don't queue_iova() if there is no flush queue (Jerry Snitselaar) [1742234]
+- [iommu] amd: fix a crash in iova_magazine_free_pfns (Jerry Snitselaar) [1742234]
+- [iommu] Use right function to get group for device (Jerry Snitselaar) [1742234]
+- [iommu] arm-smmu-v3: Fix compilation when CONFIG_CMA=n (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable: Support non-coherent page tables (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable: Replace IO_PGTABLE_QUIRK_NO_DMA with specific flag (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable-arm-v7s: request DMA32 memory, and improve debugging (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable-arm: Add support to use system cache (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Increase maximum size of queues (Jerry Snitselaar) [1722978]
+- [iommu] amd: Flush not present cache in iommu_map_page (Jerry Snitselaar) [1742234]
+- [iommu] amd: Only free resources once on init error (Jerry Snitselaar) [1742234]
+- [iommu] amd: Move gart fallback to amd_iommu_init (Jerry Snitselaar) [1742234]
+- [iommu] amd: Make iommu_disable safer (Jerry Snitselaar) [1742234]
+- [iommu] amd: Add missed 'tag' to error msg in iommu_print_event (Jerry Snitselaar) [1742234]
+- [iommu] amd: Remove redundant assignment to variable npages (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Cleanup unused variable (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Silence a variable set but not used (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove an unused variable "length" (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Cleanup after delegating DMA domain to generic iommu (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Fix suspicious RCU usage in probe_acpi_namespace_devices() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Allow DMA domain attaching to rmrr locked device (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Don't enable iommu's which have been ignored (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Set domain type for a private domain (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Don't return error when device gets right domain (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Fix a variable set but not used (Jerry Snitselaar) [1742234]
+- [kernel] iommu/vt-d: Fix typo in SVM code comment (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove static identity map code (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove duplicated code for device hotplug (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove startup parameter from device_def_domain_type() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Cleanup get_valid_domain_for_dev() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Implement is_attach_deferred iommu ops entry (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Probe DMA-capable ACPI name space devices (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Handle 32bit device with identity default domain (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Identify default domains replaced with private (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Delegate the dma domain to upper layer (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Delegate the identity domain to upper layer (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add device_def_domain_type() helper (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Enable DMA remapping after rmrr mapped (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Expose ISA direct mapping region via iommu_get_resv_regions (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Implement apply_resv_region iommu ops entry (Jerry Snitselaar) [1742234]
+- [iommu] Add API to request DMA domain for device (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add debugfs support to show scalable mode DMAR table internals (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Introduce macros useful for dumping DMAR table (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Modify the format of intel DMAR tables dump (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove unnecessary rcu_read_locks (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Fix bind svm with multiple devices (Jerry Snitselaar) [1742234]
+- [iommu] arm-smmu: Avoid constant zero in TLBI writes (Jerry Snitselaar) [1722978]
+- [iommu] vt-d: Set the right field for Page Walk Snoop (Jerry Snitselaar) [1742234]
+- [iommu] Add missing new line for dma type (Jerry Snitselaar) [1742234]
+- [kernel] iommu/iova: Separate atomic variables to improve performance (Jerry Snitselaar) [1742234]
+- [iommu] Remove iommu_callback_data (Jerry Snitselaar) [1742234]
+- [iommu] amd: Remove amd_iommu_pd_list (Jerry Snitselaar) [1742234]
+- [iommu] amd: Use pci_prg_resp_pasid_required() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Fix leak in intel_pasid_alloc_table on error path (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Make kernel parameter igfx_off work with vIOMMU (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Set intel_iommu_gfx_mapped correctly (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: cleanup: no spaces at the start of a line (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Don't request page request irq under dmar_global_lock (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Use struct_size() helper (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Flush IOTLB for untrusted device in time (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Clean up iommu_no_mapping (Jerry Snitselaar) [1742234]
+- [vfio] type1: Add domain at(de)taching group helpers (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Return ID associated with an auxiliary domain (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Aux-domain specific domain attach/detach (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Move common code out of iommu_attch_device() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add per-device IOMMU feature ops entries (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Make intel_iommu_enable_pasid() more generic (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Switch to bitmap_zalloc() (Jerry Snitselaar) [1742234]
+- [iommu] Bind process address spaces to devices (Jerry Snitselaar) [1742234]
+- [iommu] Add APIs for multiple domains per device (Jerry Snitselaar) [1742234]
+- [iommu] arm-smmu: Log CBFRSYNRA register on context fault (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Don't disable SMMU in kdump kernel (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Disable tagged pointers (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Link domains and devices (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Add a master->domain pointer (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Store SteamIDs in master (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Rename arm_smmu_master_data to arm_smmu_master (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable: Add ARM Mali midgard MMU page table format (Jerry Snitselaar) [1722978]
+- [iommu] vt-d: Save the right domain ID used by hardware (Jerry Snitselaar) [1742234]
+- [iommu] iova: Fix tracking of recently failed iova address (Jerry Snitselaar) [1742234]
+- [iommu] Fix IOMMU debugfs fallout (Jerry Snitselaar) [1742234]
+- [kernel] iommu: Document iommu_ops.is_attach_deferred() (Jerry Snitselaar) [1742234]
+- [kernel] iommu: Document iommu_ops.iotlb_sync_map() (Jerry Snitselaar) [1742234]
+- [kernel] iommu: Fix flush_tlb_all typo (Jerry Snitselaar) [1742234]
+- [iommu] io-pgtable-arm-v7s: Only kmemleak_ignore L2 tables (Jerry Snitselaar) [1722978]
+- [iommu] Use dev_printk() when possible (Jerry Snitselaar) [1742234]
+- [kernel] iommu: Allow io-pgtable to be used outside of iommu/ (Jerry Snitselaar) [1722978]
+- [iommu] iova: Allow compiling the library without IOMMU support (Jerry Snitselaar) [1742234]
+- [iommu] amd: Use dev_printk() when possible (Jerry Snitselaar) [1742234]
+- [iommu] amd: Remove clear_flush_young notifier (Jerry Snitselaar) [1742234]
+- [iommu] amd: Print reason for iommu_map_page failure in map_sg (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Get domain ID before clear pasid entry (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Set context field after value initialized (Jerry Snitselaar) [1742234]
+- [kernel] pci/ats: Add inline to pci_prg_resp_pasid_required() (Jerry Snitselaar) [1724921 1724927]
+- [iommu] vt-d: Enable ATS only if the device uses page aligned address (Jerry Snitselaar) [1724922]
+- [pci] ats: Add pci_ats_page_aligned() interface (Jerry Snitselaar) [1724922]
+- [iommu] vt-d: Fix PRI/PASID dependency issue (Jerry Snitselaar) [1724921 1724927]
+- [pci] ats: Add pci_prg_resp_pasid_required() interface (Jerry Snitselaar) [1724921 1724927]
+- [iommu] vt-d: Allow interrupts from the entire bus for aliased devices (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add helper to set an IRTE to verify only the bus number (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove misleading "domain 0" test from domain_exit() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove unused dmar_remove_one_dev_info() argument (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove unnecessary local variable initializations (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Use dev_printk() when possible (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove change_pte notifier (Jerry Snitselaar) [1742234]
+- iommu/vt-d: Implement dma_[un]map_resource() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Support page request in scalable mode (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Leave scalable mode default off (Jerry Snitselaar) [1742234]
+- [iommu] of: Fix probe-deferral (Jerry Snitselaar) [1742234]
+- [iommu] Check for iommu_ops == NULL in iommu_probe_device() (Jerry Snitselaar) [1742234]
+- [iommu] of: Don't call iommu_ops->add_device directly (Jerry Snitselaar) [1742234]
+- powerpc/iommu: Use device_iommu_mapped() (Jerry Snitselaar) [1742234]
+- [powerpc] iommu: Use device_iommu_mapped() (Jerry Snitselaar) [1742234]
+- [iommu] of: Use device_iommu_mapped() (Jerry Snitselaar) [1742234]
+- [iommu] of: Use helper functions to access dev->iommu_fwspec (Jerry Snitselaar) [1742234]
+- [iommu] dma: Use helper functions to access dev->iommu_fwspec (Jerry Snitselaar) [1742234]
+- [iommu] arm-smmu: Use helper functions to access dev->iommu_fwspec (Jerry Snitselaar) [1722978]
+- [acpi] iort: Fix rc_dma_get_range() (Jerry Snitselaar) [1722978]
+- [kernel] iommu: Change tlb_range_add to iotlb_range_add and tlb_sync to iotlb_sync (Jerry Snitselaar) [1742234]
+- [iommu] arm-smmu: Make arm-smmu-v3 explicitly non-modular (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu: Make arm-smmu explicitly non-modular (Jerry Snitselaar) [1722978]
+- [iommu] Audit and remove any unnecessary uses of module.h (Jerry Snitselaar) [1742234]
+- [iommu] irq_remapping: Remove unused header files (Jerry Snitselaar) [1742234]
+- [iommu] Do physical merging in iommu_map_sg() (Jerry Snitselaar) [1742234]
+- [iommu] amd: Remove leading 0s in error log messages (Jerry Snitselaar) [1742234]
+- [iommu] amd: Fix line-break in error log reporting (Jerry Snitselaar) [1742234]
+- [iommu] amd: Use pr_fmt() (Jerry Snitselaar) [1742234]
+- [iommu] amd: Allow to upgrade page-size (Jerry Snitselaar) [1742234]
+- [iommu] amd: Restart loop if cmpxchg64 succeeded in alloc_pte() (Jerry Snitselaar) [1742234]
+- [iommu] amd: Allow downgrading page-sizes in alloc_pte() (Jerry Snitselaar) [1742234]
+- [iommu] amd: Ignore page-mode 7 in free_sub_pt() (Jerry Snitselaar) [1742234]
+- [iommu] amd: Introduce free_sub_pt() function (Jerry Snitselaar) [1742234]
+- [iommu] amd: Collect page-table pages in freelist (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove deferred invalidation (Jerry Snitselaar) [1724930]
+- [iommu] vt-d: Shared virtual address in scalable mode (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add first level page table interface (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Setup context and enable RID2PASID support (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Pass pasid table to context mapping (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Setup pasid entry for RID2PASID support (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add second level page table interface (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Reserve a domain id for FL and PT modes (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add 256-bit invalidation descriptor support (Jerry Snitselaar) [1742234]
+- [kernel] iommu/vt-d: Move page table helpers into header (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Manage scalalble mode PASID tables (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Enumerate the scalable mode capability (Jerry Snitselaar) [1742234]
+- [kernel] iommu/vtd: Cleanup dma_remapping.h header (Jerry Snitselaar) [1742234]
+- [documentation] dt-bindings: arm-smmu: Add binding doc for Qcom smmu-500 (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu: Add support for qcom, smmu-v2 variant (Jerry Snitselaar) [1722978]
+- [documentation] dt-bindings: arm-smmu: Add bindings for qcom, smmu-v2 (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu: Add the device_link between masters and smmu (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu: Invoke pm_runtime across the driver (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu: Add pm_runtime/sleep ops (Jerry Snitselaar) [1722978]
+- [clk] add managed version of clk_bulk_get_all (Jerry Snitselaar) [1722978]
+- [clk] add new APIs to operate on all available clocks (Jerry Snitselaar) [1722978]
+- [clk] bulk: add of_clk_bulk_get() (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Use explicit mb() when moving cons pointer (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Avoid memory corruption from Hisilicon MSI payloads (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Fix big-endian CMD_SYNC writes (Jerry Snitselaar) [1722978]
+- [iommu] revert "iommu/io-pgtable-arm: Check for v7s-incapable systems" (Jerry Snitselaar) [1722978]
+- [iommu] Fix a typo (Jerry Snitselaar) [1742234]
+- [iommu] Tidy up window attributes (Jerry Snitselaar) [1742234]
+- [iommu] amd: Add default branch in amd_iommu_capable() (Jerry Snitselaar) [1742234]
+- [iommu] amd: Move iommu_init_pci() to .init section (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add debugfs support to show context internals (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add debugfs support for Interrupt remapping (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add debugfs support to show register contents (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Enable base Intel IOMMU debugfs support (Jerry Snitselaar) [1742234]
+- [kernel] iommu/vt-d: Update register definitions to VT-d 3.0 specification (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Relocate struct/function declarations to its header files (Jerry Snitselaar) [1742234]
+- [of] iommu/of: make of_pci_map_rid() available for other devices too (Jerry Snitselaar) [1742234]
+- [iommu] arm-smmu-v3: Remove unnecessary wrapper function (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Add SPDX header (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Fix a couple of minor comment typos (Jerry Snitselaar) [1722978]
+- [kernel] iommu/shmobile: Remove unused linux/platform_data/sh_ipmmu.h header (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Handle memory shortage on pasid table allocation (Jerry Snitselaar) [1742234]
+- [iommu] Add sysfs attribyte for domain type (Jerry Snitselaar) [1742234]
+- [iommu] amd: Add basic debugfs infrastructure for AMD IOMMU (Jerry Snitselaar) [1742234]
+- [iommu] Enable debugfs exposure of IOMMU driver internals (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Remove the obsolete per iommu pasid tables (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Apply per pci device pasid table in SVA (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Allocate and free pasid table (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Per PCI device pasid table interfaces (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Add for_each_device_domain() helper (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Move device_domain_info to header (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Apply global PASID in SVA (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Avoid using idr_for_each_entry() (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Global PASID name space (Jerry Snitselaar) [1742234]
+- [iommu] vt-d: Fix dev iotlb pfsid use (Jerry Snitselaar) [1742234]
+- [kernel] iommu/vt-d: Add definitions for PFSID (Jerry Snitselaar) [1742234]
+- [iommu] amd: Argument page_size could be uninitialized (Jerry Snitselaar) [1742234]
+- [iommu] arm-smmu-v3: Abort all transactions if SMMU is enabled in kdump kernel (Jerry Snitselaar) [1722978]
+- [iommu] arm-smmu-v3: Prevent any devices access to memory without registration (Jerry Snitselaar) [1722978]
+- [iommu] [] iommu/arm-smmu-v3: sync the OVACKFLG to PRIQ consumer register (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable-arm-v7s: Abort allocation when table address overflows the PTE (Jerry Snitselaar) [1722978]
+- [iommu] io-pgtable-arm: Fix pgtable allocation in selftest (Jerry Snitselaar) [1722978]
+- [netdrv] iavf: initialize ITRN registers with correct values (Stefan Assmann) [1721697]
+- [netdrv] iavf: fix MAC address setting for VFs when filter is rejected (Stefan Assmann) [1721697]
+- [netdrv] iavf: allow permanent MAC address to change (Stefan Assmann) [1721697]
+- [netdrv] iavf: remove unused debug function iavf_debug_d (Stefan Assmann) [1721697]
+- [netdrv] Use skb_frag_off accessors (Stefan Assmann) [1721697]
+- [netdrv] Use skb accessors in network drivers (Stefan Assmann) [1721697]
+- [netdrv] iavf: fix dereference of null rx_buffer pointer (Stefan Assmann) [1721697]
+- [netdrv] iavf: Fix up debug print macro (Stefan Assmann) [1721697]
+- [netdrv] iavf: use struct_size() helper (Stefan Assmann) [1721697]
+- [netdrv] iavf: allow null RX descriptors (Stefan Assmann) [1721697]
+- [netdrv] iavf: add call to iavf_[add|del]_cloud_filter (Stefan Assmann) [1721697]
+- [netdrv] iavf: Refactor init state machine (Stefan Assmann) [1721697]
+- [netdrv] iavf: Refactor the watchdog state machine (Stefan Assmann) [1721697]
+- [netdrv] iavf: Remove timer for work triggering, use delaying work instead (Stefan Assmann) [1721697]
+- [netdrv] iavf: Move commands processing to the separate function (Stefan Assmann) [1721697]
+- [netdrv] iavf: Fix the math for valid length for ADq enable (Stefan Assmann) [1721697]
+- [netdrv] iavf: Change GFP_KERNEL to GFP_ATOMIC in kzalloc() (Stefan Assmann) [1721697]
+- [netdrv] iavf: wait longer for close to complete (Stefan Assmann) [1721697]
+- [netdrv] iavf: use signed variable (Stefan Assmann) [1721697]
+- [netdrv] iavf: Create VLAN tag elements starting from the first element (Stefan Assmann) [1721697]
+- [netdrv] iavf: update comments and file checks to match iavf (Stefan Assmann) [1721697]
+- [netdrv] iavf: rename i40e_device to iavf_device (Stefan Assmann) [1721697]
+- [netdrv] iavf: change remaining i40e defines to be iavf (Stefan Assmann) [1721697]
+- [netdrv] iavf: rename iavf_client.h defines to match driver name (Stefan Assmann) [1721697]
+- [netdrv] iavf: rename iavf_status structure flags (Stefan Assmann) [1721697]
+- [netdrv] iavf: replace i40e variables with iavf (Stefan Assmann) [1721697]
+- [netdrv] iavf: rename i40e functions to be iavf (Stefan Assmann) [1721697]
+- [netdrv] iavf: change iavf_status_code to iavf_status (Stefan Assmann) [1721697]
+- [netdrv] iavf: Rename i40e_adminq* files to iavf_adminq* (Stefan Assmann) [1721697]
+- [netdrv] iavf: iavf_client: use struct_size() helper (Stefan Assmann) [1721697]
+- [netdrv] iavf: use struct_size() in kzalloc() (Stefan Assmann) [1721697]
+- [netdrv] iavf: Limiting RSS queues to CPUs (Stefan Assmann) [1721697]
+- [netdrv] iavf: Use printf instead of gnu_printf for iavf_debug_d (Stefan Assmann) [1721697]
+- [netdrv] igb/igc: use ktime accessors for skb->tstamp (Stefan Assmann) [1721695]
+- [netdrv] i40e: Fix for ethtool -m issue on X722 NIC (Stefan Assmann) [1721695]
+- [netdrv] intel: Demote MTU change prints to debug (Stefan Assmann) [1721695]
+- [netdrv] i40e: implement VF stats NDO (Stefan Assmann) [1721695]
+- [netdrv] i40e: enable X710 support (Stefan Assmann) [1721695]
+- [netdrv] i40e: Add UDP segmentation offload support (Stefan Assmann) [1721695]
+- [netdrv] i40e: prevent memory leak in i40e_setup_macvlans (Stefan Assmann) [1721695]
+- [netdrv] i40e: Refactoring VF MAC filters counting to make more reliable (Stefan Assmann) [1721695]
+- [netdrv] i40e: Fix LED blinking flow for X710T*L devices (Stefan Assmann) [1721695]
+- [netdrv] i40e: allow ethtool to report SW and FW versions in recovery mode (Stefan Assmann) [1721695]
+- [netdrv] i40e: initialize ITRN registers with correct values (Stefan Assmann) [1721695]
+- [netdrv] i40e: Extend PHY access with page change flag (Stefan Assmann) [1721695]
+- [netdrv] i40e: Extract detection of HW flags into a function (Stefan Assmann) [1721695]
+- [netdrv] i40e: Wrong 'Advertised FEC modes' after set FEC to AUTO (Stefan Assmann) [1721695]
+- [netdrv] i40e: Fix for persistent lldp support (Stefan Assmann) [1721695]
+- [netdrv] i40e: clear __I40E_VIRTCHNL_OP_PENDING on invalid min Tx rate (Stefan Assmann) [1721695]
+- [netdrv] i40e: use BIT macro to specify the cloud filter field flags (Stefan Assmann) [1721695]
+- [netdrv] i40e: Fix message for other card without FEC (Stefan Assmann) [1721695]
+- [netdrv] i40e: fix missed "Negotiated" string in i40e_print_link_message() (Stefan Assmann) [1721695]
+- [netdrv] i40e: mark additional missing bits as reserved (Stefan Assmann) [1721695]
+- [netdrv] i40e: remove I40E_AQC_ADD_CLOUD_FILTER_OIP (Stefan Assmann) [1721695]
+- [netdrv] i40e: use ktime_get_real_ts64 instead of ktime_to_timespec64 (Stefan Assmann) [1721695]
+- [netdrv] i40e: check __I40E_VF_DISABLE bit in i40e_sync_filters_subtask (Stefan Assmann) [1721695]
+- [netdrv] i40e: Remove EMPR traces from debugfs facility (Stefan Assmann) [1721695]
+- [netdrv] i40e: Implement debug macro hw_dbg using dev_dbg (Stefan Assmann) [1721695]
+- [netdrv] i40e: fix hw_dbg usage in i40e_hmc_get_object_va (Stefan Assmann) [1721695]
+- [netdrv] i40e: simplify Rx buffer recycle (Stefan Assmann) [1721695]
+- [netdrv] i40e: fix retrying in i40e_aq_get_phy_capabilities (Stefan Assmann) [1721695]
+- [netdrv] i40e: Persistent LLDP support (Stefan Assmann) [1721695]
+- [netdrv] i40e: allow reset in recovery mode (Stefan Assmann) [1721695]
+- [netdrv] i40e: Remove function i40e_update_dcb_config() (Stefan Assmann) [1721695]
+- [netdrv] i40e: Fix crash caused by stress setting of VF MAC addresses (Stefan Assmann) [1721695]
+- [netdrv] i40e: reset veb.tc_stats when resetting veb.stats (Stefan Assmann) [1721695]
+- [netdrv] i40e: Update FW API version to 1.9 (Stefan Assmann) [1721695]
+- [netdrv] i40e: check_recovery_mode had wrong if statement (Stefan Assmann) [1721695]
+- [netdrv] i40e: Add drop mode parameter to set mac config (Stefan Assmann) [1721695]
+- [netdrv] i40e: fix shifts of signed values (Stefan Assmann) [1721695]
+- [netdrv] i40e: add check on i40e_configure_tx_ring() return value (Stefan Assmann) [1721695]
+- [netdrv] i40e: Check if transceiver implements DDM before access (Stefan Assmann) [1721695]
+- [netdrv] i40e: reduce stack usage in i40e_set_fc (Stefan Assmann) [1721695]
+- [netdrv] i40e: no need to check return value of debugfs_create functions (Stefan Assmann) [1721695]
+- [netdrv] i40e: Remove unicast log when VF is leaving multicast mode (Stefan Assmann) [1721695]
+- [netdrv] i40e: verify string count matches even on early return (Stefan Assmann) [1721695]
+- [netdrv] i40e: Log info when PF is entering and leaving Allmulti mode (Stefan Assmann) [1721695]
+- [netdrv] i40e: Update visual effect for advertised FEC mode (Stefan Assmann) [1721695]
+- [netdrv] i40e: fix code comments (Stefan Assmann) [1721695]
+- [netdrv] i40e: don't report link up for a VF who hasn't enabled queues (Stefan Assmann) [1721695]
+- [netdrv] i40e: Log disable-fw-lldp flag change by ethtool (Stefan Assmann) [1721695]
+- [netdrv] i40e: fix incorrect ethtool statistics veb and veb.tc_ (Stefan Assmann) [1721695]
+- [netdrv] Use skb_frag_off accessors (Stefan Assmann) [1721695]
+- [netdrv] i40e: Use dev_get_drvdata (Stefan Assmann) [1721695]
+- [netdrv] Use skb accessors in network drivers (Stefan Assmann) [1721695]
+- [netdrv] i40e: Add macvlan support on i40e (Stefan Assmann) [1721695]
+- [netdrv] i40e/i40e_virtchnl_pf: Use struct_size() in kzalloc() (Stefan Assmann) [1721695]
+- [netdrv] i40e: update copyright string (Stefan Assmann) [1721695]
+- [netdrv] i40e: Fix descriptor count manipulation (Stefan Assmann) [1721695]
+- [netdrv] i40e: missing priorities for any QoS traffic (Stefan Assmann) [1721695]
+- [netdrv] i40e: Add log entry while creating or deleting TC0 (Stefan Assmann) [1721695]
+- [netdrv] i40e: fix incorrect function documentation comment (Stefan Assmann) [1721695]
+- [netdrv] i40e: Fix for missing "link modes" info in ethtool (Stefan Assmann) [1721695]
+- [netdrv] i40e: fix 'Unknown bps' in dmesg for 2.5Gb/5Gb speeds (Stefan Assmann) [1721695]
+- [netdrv] i40e: mark expected switch fall-through (Stefan Assmann) [1721695]
+- [netdrv] i40e: Missing response checks in driver when starting/stopping FW LLDP (Stefan Assmann) [1721695]
+- [netdrv] i40e: remove duplicate stat calculation for tx_errors (Stefan Assmann) [1721695]
+- [netdrv] i40e: Check if the BAR size is large enough before writing to registers (Stefan Assmann) [1721695]
+- [netdrv] i40e: Missing response checks in driver when starting/stopping FW LLDP (Stefan Assmann) [1721695]
+- [netdrv] i40e: add input validation for virtchnl handlers (Stefan Assmann) [1721695]
+- [netdrv] i40e: Improve AQ log granularity (Stefan Assmann) [1721695]
+- [netdrv] i40e: Add bounds check for ch[] array (Stefan Assmann) [1721695]
+- [netdrv] i40e: Use signed variable (Stefan Assmann) [1721695]
+- [netdrv] i40e: add constraints for accessing veb array (Stefan Assmann) [1721695]
+- [netdrv] i40e: let untrusted VF to create up to 16 VLANs (Stefan Assmann) [1721695]
+- [netdrv] i40e: add functions stubs to support EEE (Stefan Assmann) [1721695]
+- [netdrv] i40e: Use LLDP ethertype define ETH_P_LLDP (Stefan Assmann) [1721695]
+- [netdrv] r8169: disable TSO on a single version of RTL8168c to fix performance (Corinna Vinschen) [1730024]
+- [netdrv] r8169: fix sporadic transmit timeout issue (Corinna Vinschen) [1730024]
+- [netdrv] r8169: inline rtl8169_free_rx_databuff (Corinna Vinschen) [1730024]
+- [netdrv] r8169: fix performance issue on RTL8168evl (Corinna Vinschen) [1730024]
+- [netdrv] r8169: allocate rx buffers using alloc_pages_node (Corinna Vinschen) [1730024]
+- [netdrv] r8169: sync PCIe PHY init with vendor driver 8.047.01 (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add helper r8168_mac_ocp_modify (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove access to legacy register MultiIntr (Corinna Vinschen) [1730024]
+- [netdrv] r8169: make use of xmit_more (Corinna Vinschen) [1730024]
+- [netdrv] r8169: don't use MSI before RTL8168d (Corinna Vinschen) [1730024]
+- [netdrv] revert ("r8169: remove 1000/Half from supported modes") (Corinna Vinschen) [1730024]
+- [netdrv] r8169: enable HW csum and TSO (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove r8169_csum_workaround (Corinna Vinschen) [1730024]
+- [netdrv] r8169: implement callback ndo_features_check (Corinna Vinschen) [1730024]
+- [netdrv] r8169: set GSO size and segment limits (Corinna Vinschen) [1730024]
+- [netdrv] r8169: align setting PME with vendor driver (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve rtl_set_rx_mode (Corinna Vinschen) [1730024]
+- [netdrv] r8169: fix a typo in a comment (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve rtl_rx (Corinna Vinschen) [1730024]
+- [netdrv] r8169: fix RTL8168g PHY init (Corinna Vinschen) [1730024]
+- [netdrv] r8169: fix issue with confused RX unit after PHY power-down on RTL8411b (Corinna Vinschen) [1730024]
+- [netdrv] r8169: sync few chip names with vendor driver (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add random MAC address fallback (Corinna Vinschen) [1730024]
+- [netdrv] revert "r8169: improve handling VLAN tag" (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove not needed call to dma_sync_single_for_device (Corinna Vinschen) [1730024]
+- [netdrv] r8169: consider that 32 Bit DMA is the default (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve handling VLAN tag (Corinna Vinschen) [1730024]
+- [netdrv] r8169: don't activate ASPM in chip if OS can't control ASPM (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve handling of Abit Fatal1ty F-190HD (Corinna Vinschen) [1730024]
+- [netdrv] r8169: use helper rtl_is_8168evl_up for setting register MaxTxPacketSize (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add helper rtl_is_8168evl_up (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve rtl_coalesce_info (Corinna Vinschen) [1730024]
+- [netdrv] r8169: let mdio read functions return -ETIMEDOUT (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove struct rtl_cfg_info (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove member coalesce_info from struct rtl_cfg_info (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove callback hw_start from struct rtl_cfg_info (Corinna Vinschen) [1730024]
+- [netdrv] r8169: rename CPCMD_QUIRK_MASK and apply it on all chip versions (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve setting interrupt mask (Corinna Vinschen) [1730024]
+- [netdrv] r8169: silence sparse warning in rtl8169_start_xmit (Corinna Vinschen) [1730024]
+- [netdrv] r8169: factor out firmware handling (Corinna Vinschen) [1730024]
+- [netdrv] r8169: rename r8169.c to r8169_main.c (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add rtl_fw_request_firmware and rtl_fw_release_firmware (Corinna Vinschen) [1730024]
+- [netdrv] r8169: make rtl_fw_format_ok and rtl_fw_data_ok more independent (Corinna Vinschen) [1730024]
+- [netdrv] r8169: simplify rtl_fw_write_firmware (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add enum rtl_fw_opcode (Corinna Vinschen) [1730024]
+- [netdrv] r8169: use paged versions of phylib MDIO access functions (Corinna Vinschen) [1730024]
+- [netdrv] r8169: avoid tso csum function indirection (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove struct jumbo_ops (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove struct mdio_ops (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve r8169_csum_workaround (Corinna Vinschen) [1730024]
+- [netdrv] r8169: decouple rtl_phy_write_fw from actual driver code (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve rtl_fw_format_ok (Corinna Vinschen) [1730024]
+- [netdrv] r8169: enable WoL speed down on more chip versions (Corinna Vinschen) [1730024]
+- [netdrv] r8169: fix MAC address being lost in PCI D3 (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove 1000/Half from supported modes (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove support for RTL_GIGA_MAC_VER_01 (Corinna Vinschen) [1730024]
+- [netdrv] r8169: improve RTL8168d PHY initialization (Corinna Vinschen) [1730024]
+- [netdrv] r8169: change type of member mac_version in rtl8169_private (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove unneeded return statement in rtl_hw_init_8168g (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove rtl_hw_init_8168ep (Corinna Vinschen) [1730024]
+- [netdrv] treewide: Add SPDX license identifier - Makefile/Kconfig (Corinna Vinschen) [1730024]
+- [netdrv] treewide: Add SPDX license identifier for more missed files (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add rtl8168g_set_pause_thresholds (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add rtl_set_fifo_size (Corinna Vinschen) [1730024]
+- [netdrv] r8169: move EEE LED config to rtl8168_config_eee_mac (Corinna Vinschen) [1730024]
+- [netdrv] r8169: simplify rtl_writephy_batch and rtl_ephy_init (Corinna Vinschen) [1730024]
+- [netdrv] r8169: speed up rtl_loop_wait (Corinna Vinschen) [1730024]
+- [netdrv] r8169: make use of phy_set_asym_pause (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove rtl_write_exgmac_batch (Corinna Vinschen) [1730024]
+- [netdrv] r8169: remove manual autoneg restart workaround (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add rtl_reset_packet_filter (Corinna Vinschen) [1730024]
+- [netdrv] r8169: add helpers rtl_eri_set/clear_bits (Corinna Vinschen) [1730024]
+- [netdrv] r8169: make ERIAR_EXGMAC the default in eri functions (Corinna Vinschen) [1730024]
+- [netdrv] r8169: use pci_dev_id() helper (Corinna Vinschen) [1730024]
+- [kernel] phy: fix write to mii-ctrl1000 register (Petr Oros) [1772010]
+- [netdrv] bcmgenet: don't set phydev->link from MAC (Petr Oros) [1772010]
+- [netdrv] mdio_bus: Fix PTR_ERR applied after initialization to constant (Petr Oros) [1772010]
+- [netdrv] phy: micrel: add Asym Pause workaround for KSZ9021 (Petr Oros) [1772010]
+- [netdrv] phy: fix race in genphy_update_link (Petr Oros) [1772010]
+- [netdrv] phy: consider AN_RESTART status when reading link status (Petr Oros) [1772010]
+- [kernel] fixed_phy: Add forward declaration for struct gpio_desc; (Petr Oros) [1772010]
+- [netdrv] phy: fixed_phy: print gpio error only if gpio node is present (Petr Oros) [1772010]
+- [netdrv] phy: mscc: initialize stats array (Petr Oros) [1772010]
+- [netdrv] phy: bcm7xxx: define soft_reset for 40nm EPHY (Petr Oros) [1772010]
+- [netdrv] Add genphy_c45_config_aneg() function to phy-c45.c (Petr Oros) [1772010]
+- [netdrv] phy: sfp: hwmon: Fix scaling of RX power (Petr Oros) [1772010]
+- [kernel] hwmon: Fix HWMON_P_MIN_ALARM mask (Petr Oros) [1772010]
+- [netdrv] phy: rename Asix Electronics PHY driver (Petr Oros) [1772010]
+- [netdrv] sfp: read eeprom in maximum 16 byte increments (Petr Oros) [1772010]
+- [netdrv] phylink: avoid reducing support mask (Petr Oros) [1772010]
+- [netdrv] phy: dp83867: Set up RGMII TX delay (Petr Oros) [1772010]
+- [netdrv] phy: dp83867: do not call config_init twice (Petr Oros) [1772010]
+- [netdrv] phy: dp83867: increase SGMII autoneg timer duration (Petr Oros) [1772010]
+- [netdrv] phy: dp83867: fix speed 10 in sgmii mode (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: report if the PHY fails to boot firmware (Petr Oros) [1772010]
+- [netdrv] phylink: ensure consistent phy interface mode (Petr Oros) [1772010]
+- [netdrv] phylink: ensure inband AN works correctly (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: readd XGMII support for AQR107 (Petr Oros) [1772010]
+- [netdrv] phy: realtek: Replace phy functions with non-locked version in rtl8211e_config_init() (Petr Oros) [1772010]
+- [netdrv] meson: fixup g12a glue ephy id (Petr Oros) [1772010]
+- [netdrv] phy: realtek: fix double page ops in generic Realtek driver (Petr Oros) [1772010]
+- [netdrv] phy: realtek: add missing page operations (Petr Oros) [1772010]
+- [netdrv] phy: realtek: Change TX-delay setting for RGMII modes only (Petr Oros) [1772010]
+- [netdrv] phy: realtek: Add rtl8211e rx/tx delays config (Petr Oros) [1772010]
+- [netdrv] phy: improve pause mode reporting in phy_print_status (Petr Oros) [1772010]
+- [kernel] phy: improve resuming from hibernation (Petr Oros) [1772010]
+- [netdrv] phy: fix phy_validate_pause (Petr Oros) [1772010]
+- [netdrv] phy: micrel: make sure the factory test bit is cleared (Petr Oros) [1772010]
+- [netdrv] phy: marvell: Fix buffer overrun with stats counters (Petr Oros) [1772010]
+- [netdrv] phy: avoid unneeded MDIO reads in genphy_read_status (Petr Oros) [1772010]
+- [netdrv] phy: improve genphy_soft_reset (Petr Oros) [1772010]
+- [netdrv] spi: micrel eth switch: declare missing of table (Petr Oros) [1772010]
+- [netdrv] phy: marvell: add new default led configure for m88e151x (Petr Oros) [1772010]
+- [netdrv] phy: vitesse: Remove support for VSC8514 (Petr Oros) [1772010]
+- [netdrv] phy: mscc: add support for VSC8514 PHY (Petr Oros) [1772010]
+- [netdrv] mdio: rename mdio_device reset to reset_gpio (Petr Oros) [1772010]
+- [netdrv] phy: add support for reset-controller (Petr Oros) [1772010]
+- [documentation] dt-bindings: add PHY reset controller binding (Petr Oros) [1772010]
+- [netdrv] phy: remove dead code from phy_sanitize_settings (Petr Oros) [1772010]
+- [netdrv] phy: don't set autoneg if it's not supported (Petr Oros) [1772010]
+- [netdrv] phy: micrel: add Asym Pause workaround (Petr Oros) [1772010]
+- [netdrv] phy: warn if phylib and ethtool PHY mode definitions are out of sync (Petr Oros) [1772010]
+- [netdrv] phy: add support for new modes in phylib (Petr Oros) [1772010]
+- [netdrv] phy: shrink PHY settings array (Petr Oros) [1772010]
+- [netdrv] phy: switch drivers to use dynamic feature detection (Petr Oros) [1772010]
+- [netdrv] phy: fix setting autoneg_complete in genphy_update_link (Petr Oros) [1772010]
+- [netdrv] phy: replace genphy_10g_driver with genphy_c45_driver (Petr Oros) [1772010]
+- [netdrv] phy: remove unnecessary callback settings in C45 drivers (Petr Oros) [1772010]
+- [netdrv] phy: improve link partner capability detection (Petr Oros) [1772010]
+- [netdrv] phy: meson-gxl: clean-up gxl variant driver (Petr Oros) [1772010]
+- [netdrv] phy: meson-gxl: add g12a support (Petr Oros) [1772010]
+- [netdrv] phy: add amlogic g12a mdio mux support (Petr Oros) [1772010]
+- [documentation] dt-bindings: phy: add g12a mdio mux documentation (Petr Oros) [1772010]
+- [netdrv] phy: realtek: remove setting callback get_features and use phylib fallback (Petr Oros) [1772010]
+- [netdrv] phy: fix autoneg mismatch case in genphy_read_status (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: add the suspend/resume callbacks for the 88x2210 (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: implement suspend/resume callbacks (Petr Oros) [1772010]
+- [netdrv] phy: deal properly with autoneg incomplete in genphy_c45_read_lpa (Petr Oros) [1772010]
+- [netdrv] phy: use c45 standard to detect link partner autoneg capability (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: add SGMII statistics (Petr Oros) [1772010]
+- [netdrv] phy: improve genphy_read_status (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: add suspend / resume callbacks for AQR107 family (Petr Oros) [1772010]
+- [netdrv] phy: realtek: use genphy_read_abilities (Petr Oros) [1772010]
+- [netdrv] phy: mdio-bcm-unimac: remove redundant !timeout check (Petr Oros) [1772010]
+- [netdrv] phy: marvell: add PHY tunable fast link down support for 88E1540 (Petr Oros) [1772010]
+- [uapi] ethtool: add PHY Fast Link Down support (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: inform about proprietary 1000Base-T2 mode being in use (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: report PHY details like firmware version (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: print remote capabilities if link partner is Aquantia PHY (Petr Oros) [1772010]
+- [kernel] phy: bcm54xx: Encode link speed and activity into LEDs (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: simplify aqr_config_aneg (Petr Oros) [1772010]
+- [netdrv] phy: don't clear BMCR in genphy_soft_reset (Petr Oros) [1772010]
+- [netdrv] phy: Re-parent menus for MDIO bus drivers correctly (Petr Oros) [1772010]
+- [netdrv] phy: Correct Cygnus/Omega PHY driver prompt (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: add downshift support (Petr Oros) [1772010]
+- [netdrv] phy: Move Omega PHY entry to Cygnus PHY driver (Petr Oros) [1772010]
+- [netdrv] phy: Prepare for moving Omega out of bcm7xxx (Petr Oros) [1772010]
+- [netdrv] phy: Add DP83825I to the DP83822 driver (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: check for changed interface mode in read_status (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: check for supported interface modes in config_init (Petr Oros) [1772010]
+- [netdrv] phy: improve handling link_change_notify callback (Petr Oros) [1772010]
+- [netdrv] phy: meson-gxl: fix interrupt support (Petr Oros) [1772010]
+- [gpio] gpiolib: devprop: Fix syntax error (Petr Oros) [1772010]
+- [kernel] gpiolib: export devprop_gpiochip_set_names() (Petr Oros) [1772010]
+- [netdrv] phy: mdio-mux: fix Kconfig dependencies (Petr Oros) [1772010]
+- [netdrv] phy: use phy_modify_mmd_changed in genphy_c45_an_config_aneg (Petr Oros) [1772010]
+- [netdrv] phy: remove gen10g_no_soft_reset (Petr Oros) [1772010]
+- [netdrv] phy: don't export gen10g_read_status (Petr Oros) [1772010]
+- [netdrv] phy: remove gen10g_config_init (Petr Oros) [1772010]
+- [netdrv] phy: remove gen10g_suspend and gen10g_resume (Petr Oros) [1772010]
+- [netdrv] phy: use genphy_c45_aneg_done in genphy_aneg_done (Petr Oros) [1772010]
+- [netdrv] phy: micrel ksz8061: link failure after cable connect (Petr Oros) [1772010]
+- [netdrv] phy: phylink: fix uninitialized variable in phylink_get_mac_state (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: add hwmon support (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: rename aquantia.c to aquantia_main.c (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: Use the generic C45 helper to read the 2110 features (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: Let genphy_c45_pma_read_abilities set Aneg bit (Petr Oros) [1772010]
+- [netdrv] phy: dp83867: add soft reset delay (Petr Oros) [1772010]
+- [netdrv] phy: mdio-mux: Add support for Generic Mux controls (Petr Oros) [1772010]
+- [netdrv] phy: improve auto-neg emulation in swphy (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: add support for the 88x2110 PHY (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: Force reading of 2.5/5G (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: Use a #define for 88X3310 family id (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: Use 2500BASEX when using 2.5GBASET (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: Use linkmode_set_bit helper instead of __set_bit (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: Use get_features to get the PHY abilities (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: use genphy_c45_read_status (Petr Oros) [1772010]
+- [netdrv] phy: add genphy_c45_read_status (Petr Oros) [1772010]
+- [netdrv] phy: don't change modes we don't care about in genphy_c45_read_lpa (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: add support for auto-negotiation configuration (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: remove false 5G and 10G speed ability for AQCS109 (Petr Oros) [1772010]
+- [netdrv] phy: check PMAPMD link status only in genphy_c45_read_link (Petr Oros) [1772010]
+- [netdrv] mdio_bus: Fix use-after-free on device_register fails (Petr Oros) [1772010]
+- [netdrv] phy: at803x: disable delay only for RGMII mode (Petr Oros) [1772010]
+- [netdrv] phy: at803x: don't inline helpers (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: Use get_features for the PHYs abilities (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: use genphy_c45_check_and_restart_aneg in mv3310_config_aneg (Petr Oros) [1772010]
+- [netdrv] phy: add genphy_c45_check_and_restart_aneg (Petr Oros) [1772010]
+- [netdrv] phy: use genphy_config_eee_advert in genphy_c45_an_config_aneg (Petr Oros) [1772010]
+- [netdrv] phy: export genphy_config_eee_advert (Petr Oros) [1772010]
+- [netdrv] phy: don't use 10BaseT/half as default in genphy_read_status (Petr Oros) [1772010]
+- [netdrv] phy: remove orphaned register read in genphy_read_status (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: improve mv3310_config_aneg (Petr Oros) [1772010]
+- [netdrv] phy: disable aneg in genphy_c45_pma_setup_forced (Petr Oros) [1772010]
+- [netdrv] phy: use mii_10gbt_stat_mod_linkmode_lpa_t in genphy_c45_read_lpa (Petr Oros) [1772010]
+- [kernel] phy: add helper mii_10gbt_stat_mod_linkmode_lpa_t (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: check for newly set aneg (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: use genphy_c45_an_config_aneg (Petr Oros) [1772010]
+- [netdrv] phy: add genphy_c45_an_config_aneg (Petr Oros) [1772010]
+- [kernel] phy: add helper linkmode_adv_to_mii_10gbt_adv_t (Petr Oros) [1772010]
+- [netdrv] mdio_bus: Fix PTR_ERR() usage after initialization to constant (Petr Oros) [1772010]
+- [netdrv] phy: xgmiitorgmii: Support generic PHY status read (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: Don't explicitly set Pause and Asym_Pause (Petr Oros) [1772010]
+- [netdrv] phy: use phy_resolve_aneg_linkmode in genphy_read_status (Petr Oros) [1772010]
+- [netdrv] phy: improve phy_resolve_aneg_linkmode (Petr Oros) [1772010]
+- [netdrv] phy: fix potential race in the phylib state machine (Petr Oros) [1772010]
+- [kernel] phy: don't use locking in phy_is_started (Petr Oros) [1772010]
+- [netdrv] phy: fix interrupt handling in non-started states (Petr Oros) [1772010]
+- [netdrv] phy: simplify genphy_config_eee_advert (Petr Oros) [1772010]
+- [netdrv] phylink: avoid resolving link state too early (Petr Oros) [1772010]
+- [netdrv] phylink: add phylink_init_eee() helper (Petr Oros) [1772010]
+- [netdrv] phylink: only call mac_config() during resolve when link is up (Petr Oros) [1772010]
+- [netdrv] phy: use phy_modify_changed in genphy_config_advert (Petr Oros) [1772010]
+- [netdrv] phy: marvell10g: fix usage of new MMD modifying helpers (Petr Oros) [1772010]
+- [netdrv] phy: add register modifying helpers returning 1 on change (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: add support for AQCS109 (Petr Oros) [1772010]
+- [netdrv] phy: disregard "Clause 22 registers present" bit in get_phy_c45_devs_in_pkg (Petr Oros) [1772010]
+- [netdrv] phy: let genphy_c45_read_link manage the devices to check (Petr Oros) [1772010]
+- [netdrv] phy: don't double-read link status register if link is up (Petr Oros) [1772010]
+- [netdrv] fixed-phy: Add fixed_phy_register_with_gpiod() API (Petr Oros) [1772010]
+- [netdrv] phy: fixed_phy: Fix fixed_phy not checking GPIO (Petr Oros) [1772010]
+- [netdrv] phy: consider latched link-down status in polling mode (Petr Oros) [1772010]
+- [netdrv] sfp: do not probe SFP module before we're attached (Petr Oros) [1772010]
+- [netdrv] phy: make use of new MMD accessors (Petr Oros) [1772010]
+- [kernel] phy: provide full set of accessor functions to MMD registers (Petr Oros) [1772010]
+- [netdrv] phy: improve genphy_c45_read_link (Petr Oros) [1772010]
+- [netdrv] phy: fixed-phy: Drop GPIO from fixed_phy_add() (Petr Oros) [1772010]
+- [netdrv] dp83640: expire old TX-skb (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: replace magic numbers with constants (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: use macro PHY_ID_MATCH_MODEL (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: remove unneeded includes (Petr Oros) [1772010]
+- [netdrv] phy: aquantia: Shorten name space prefix to aqr_ (Petr Oros) [1772010]
+- [netdrv] revert "net: phy: marvell: avoid pause mode on SGMII-to-Copper for 88e151x" (Petr Oros) [1772010]
+- [netdrv] phy: at803x: Use helpers to access MMD PHY registers (Petr Oros) [1772010]
+- [netdrv] phy: change phy_start_interrupts to phy_request_interrupt (Petr Oros) [1772010]
+- [netdrv] phy: start interrupts in phy_start (Petr Oros) [1772010]
+- [netdrv] phy: warn if phy_start is called from invalid state (Petr Oros) [1772010]
+- [netdrv] phy: start state machine in phy_start only (Petr Oros) [1772010]
+- [netdrv] phy: Add SDPX tag based on COPYING file (Petr Oros) [1772010]
+- [netdrv] phy: Fixup GPLv2 SPDX tags based on license text (Petr Oros) [1772010]
+- [netdrv] phy: Fixup GPLv2+ SPDX tags based on license text (Petr Oros) [1772010]
+- [netdrv] phy: Remove redundent License text when SPDX header is present (Petr Oros) [1772010]
+- [netdrv] phy: Convert some PHY and MDIO driver files to SPDX headers (Petr Oros) [1772010]
+- [netdrv] phy: at803x: Disable phy delay for RGMII mode (Petr Oros) [1772010]
+- [netdrv] phy: improve phy_init_hw (Petr Oros) [1772010]
+- [netdrv] phy: fix issue with loading PHY driver w/o initramfs (Petr Oros) [1772010]
+- [netdrv] phy: remove phy_stop_interrupts (Petr Oros) [1772010]
+- [netdrv] phy: ensure phylib state machine is stopped after calling phy_stop (Petr Oros) [1772010]
+- [netdrv] phy: stop PHY if needed when entering phy_disconnect (Petr Oros) [1772010]
+- [netdrv] phy: micrel: use phy_read_mmd and phy_write_mmd (Petr Oros) [1772010]
+- [netdrv] phy: improve get_phy_id (Petr Oros) [1772010]
+- [kernel] phy: remove state PHY_CHANGELINK (Petr Oros) [1772010]
+- [netdrv] phy: mdio_bus: add missing device_del() in mdiobus_register() error handling (Petr Oros) [1772010]
+- [netdrv] phy: check return code when requesting PHY driver module (Petr Oros) [1772010]
+- [netdrv] phy: Add helpers to determine if PHY driver is generic (Petr Oros) [1772010]
+- [netdrv] phy: improve logging in phylib (Petr Oros) [1772010]
+- [netdrv] phy: don't include asm/irq.h directly (Petr Oros) [1772010]
+- [netdrv] phy: remove preliminary workaround for not loading PHY driver (Petr Oros) [1772010]
+- [netdrv] phy: meson-gxl: Use the genphy_soft_reset callback (Petr Oros) [1772010]
+- [netdrv] phy: marvell: Fix deadlock from wrong locking (Petr Oros) [1772010]
+- [netdrv] phy: marvell: Errata for mv88e6390 internal PHYs (Petr Oros) [1772010]
+- [netdrv] phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ9031 (Petr Oros) [1772010]
+- [netdrv] phy: fix too strict check in phy_start_aneg (Petr Oros) [1772010]
+- [kernel] phy.h: fix obvious errors in doc and kerneldoc content (Petr Oros) [1772010]
+- [netdrv] phy: mscc: Fix the VSC 8531/41 Chip Init sequence (Petr Oros) [1772010]
+- [netdrv] phy: Fix the issue that netif always links up after resuming (Petr Oros) [1772010]
+- [netdrv] phy: print stack trace in phy_error (Petr Oros) [1772010]
+- [netdrv] phy: improve phy state checking (Petr Oros) [1772010]
+- [netdrv] fixed phy: Add fixed_phy_change_carrier() (Petr Oros) [1772010]
+- [netdrv] phy: mdio-gpio: Add phy_ignore_ta_mask to platform data (Petr Oros) [1772010]
+- [kernel] phy: mdio-gpio: Add platform_data support for phy_mask (Petr Oros) [1772010]
+- [kernel] gpio: Export gpiod_get_from_of_node() (Petr Oros) [1772010]
+- [netdrv] phy: Revert toggling reset changes (Petr Oros) [1772010]
+- [netdrv] phy: sfp: correct store of detected link modes (Petr Oros) [1772010]
+- [netdrv] phy: micrel: add toggling phy reset if PHY is not attached (Petr Oros) [1772010]
+- [netdrv] phy: Fix not to call phy_resume() if PHY is not attached (Petr Oros) [1772010]
+- [netdrv] phy: improve generic EEE ethtool functions (Petr Oros) [1772010]
+- [netdrv] phy: add workaround for issue where PHY driver doesn't bind to the device (Petr Oros) [1772010]
+- [netdrv] phy: mscc: fix deadlock in vsc85xx_default_config (Petr Oros) [1772010]
+- [netdrv] phy: vitesse: remove duplicate support for VSC8574 (Petr Oros) [1772010]
+- [netdrv] phy: icplus: allow configuring the interrupt function on IP101GR (Petr Oros) [1772010]
+- [netdrv] phy: icplus: implement .did_interrupt for IP101A/G (Petr Oros) [1772010]
+- [netdrv] phy: icplus: rename IP101A_G_NO_IRQ to IP101A_G_IRQ_ALL_MASK (Petr Oros) [1772010]
+- [netdrv] phy: icplus: use the BIT macro where possible (Petr Oros) [1772010]
+- [netdrv] phy: icplus: keep all ip101a_g functions together (Petr Oros) [1772010]
+- [documentation] dt-bindings: phy: add bindings for the IC Plus Corp. IP101A/G PHYs (Petr Oros) [1772010]
+- [documentation] dt-bindings: vendor-prefix: add prefix for IC Plus Corp (Petr Oros) [1772010]
+- [netdrv] phy: mdio-gpio: Fix working over slow can_sleep GPIOs (Petr Oros) [1772010]
+- [netdrv] phy: check for implementation of both callbacks in phy_drv_supports_irq (Petr Oros) [1772010]
+- [netdrv] phy: icplus: add config_intr callback (Petr Oros) [1772010]
+- [kernel] phy: remove states PHY_STARTING and PHY_PENDING (Petr Oros) [1772010]
+- [netdrv] phy: leds: Don't make our own link speed names (Petr Oros) [1772010]
+- [netdrv] phy: improve and inline phy_change (Petr Oros) [1772010]
+- [netdrv] phy: simplify phy_mac_interrupt and related functions (Petr Oros) [1772010]
+- [netdrv] phy: don't set state PHY_CHANGELINK in phy_change (Petr Oros) [1772010]
+- [kernel] phy: improve struct phy_device member interrupts handling (Petr Oros) [1772010]
+- [netdrv] phy: remove flag PHY_HAS_INTERRUPT from driver configs (Petr Oros) [1772010]
+- [netdrv] phy: replace PHY_HAS_INTERRUPT with a check for config_intr and ack_interrupt (Petr Oros) [1772010]
+- [netdrv] phy: use phy_check_link_status in more places in the state machine (Petr Oros) [1772010]
+- [kernel] phy: remove state PHY_AN (Petr Oros) [1772010]
+- [netdrv] phy: add phy_check_link_status (Petr Oros) [1772010]
+- [netdrv] phy: remove useless check in state machine case PHY_RESUMING (Petr Oros) [1772010]
+- [netdrv] phy: remove useless check in state machine case PHY_NOLINK (Petr Oros) [1772010]
+- [netdrv] phy: make phy_trigger_machine static (Petr Oros) [1772010]
+- [netdrv] phy: bcm7xxx: Add entry for BCM7255 (Petr Oros) [1772010]
+- [netdrv] phy: Allow BCM54616S PHY to setup internal TX/RX clock delay (Petr Oros) [1772010]
+- [netdrv] phy: mdio-mux-bcm-iproc: simplify getting .driver_data (Petr Oros) [1772010]
+- [documentation] dt-bindings: add support for Microchip KSZ9131 (Petr Oros) [1772010]
+- [netdrv] phy: micrel: add Microchip KSZ9131 initial driver (Petr Oros) [1772010]
+- [netdrv] phy: mscc: fix memory leak in vsc8574_config_pre_init (Petr Oros) [1772010]
+- [netdrv] phy: mscc: fix signedness bug in vsc85xx_downshift_get (Petr Oros) [1772010]
+- [netdrv] phy: merge phy_start_aneg and phy_start_aneg_priv (Petr Oros) [1772010]
+- [netdrv] phy: simplify handling of PHY_RESUMING in state machine (Petr Oros) [1772010]
+- [netdrv] phy: improve handling of PHY_RUNNING in state machine (Petr Oros) [1772010]
+- [netdrv] phy: trigger state machine immediately in phy_start_machine (Petr Oros) [1772010]
+- [netdrv] phy: sfp: remove sfp_mutex's definition (Petr Oros) [1772010]
+- [netdrv] phy: mscc: add support for VSC8574 PHY (Petr Oros) [1772010]
+- [netdrv] phy: mscc: add support for VSC8584 PHY (Petr Oros) [1772010]
+- [dt-bindings] vsc8531: add two additional LED modes for VSC8584 (Petr Oros) [1772010]
+- [netdrv] phy: mscc: remove unneeded temporary variable (Petr Oros) [1772010]
+- [netdrv] phy: mscc: shorten `x != 0` condition to `x` (Petr Oros) [1772010]
+- [netdrv] phy: mscc: remove unneeded parenthesis (Petr Oros) [1772010]
+- [netdrv] phy: mscc: Add EEE init sequence (Petr Oros) [1772010]
+- [netdrv] phy: mscc: add ethtool statistics counters (Petr Oros) [1772010]
+- [netdrv] phy: mscc: migrate to phy_select/restore_page functions (Petr Oros) [1772010]
+- [netdrv] phy: phylink: fix SFP interface autodetection (Petr Oros) [1772010]
+- [netdrv] phy: Convert to using pOFn instead of device_node.name (Petr Oros) [1772010]
+- [netdrv] phy: improve handling delayed work (Petr Oros) [1772010]
+- [netdrv] phy: mscc: fix printf format (Petr Oros) [1772010]
+- [netdrv] phy: mdio-bcm-unimac: mark PM functions as __maybe_unused (Petr Oros) [1772010]
+- [netdrv] phy: marvell: Fix build (Petr Oros) [1772010]
+- [netdrv] phy: marvell: Avoid unnecessary soft reset (Petr Oros) [1772010]
+- [netdrv] phy: Stop with excessive soft reset (Petr Oros) [1772010]
+- [netdrv] phy: sfp: Fix unregistering of HWMON SFP device (Petr Oros) [1772010]
+- [netdrv] phy: fix WoL handling when suspending the PHY (Petr Oros) [1772010]
+- [net] core: add member wol_enabled to struct net_device (Petr Oros) [1772010]
+- [netdrv] phy: mdio-bcm-unimac: Allow configuring MDIO clock divider (Petr Oros) [1772010]
+- [netdrv] phy: don't reschedule state machine when PHY is halted (Petr Oros) [1772010]
+- [netdrv] phy: phylink: ensure the carrier is off when starting phylink (Petr Oros) [1772010]
+- [netdrv] phy: call state machine synchronously in phy_stop (Petr Oros) [1772010]
+- [net] linkwatch: add check for netdevice being present to linkwatch_do_dev (Petr Oros) [1772010]
+- [netdrv] sfp: fix oops with ethtool -m (Petr Oros) [1772010]
+- [netdrv] mdio: remove duplicated include from mdio_bus.c (Petr Oros) [1772010]
+- [netdrv] phy: et011c: Remove incorrect PHY_POLL flags (Petr Oros) [1772010]
+- [netdrv] phy: sfp: Handle unimplemented hwmon limits and alarms (Petr Oros) [1772010]
+- [netdrv] phy: mscc: read 'vsc8531, led-d-mode' as an u32 (Petr Oros) [1772010]
+- [netdrv] phy: mscc: read 'vsc8531, edge-slowdown' as an u32 (Petr Oros) [1772010]
+- [netdrv] phy: mscc: read 'vsc8531, vddmac' as an u32 (Petr Oros) [1772010]
+- [netdrv] phy: mscc: factorize function for getting LED mode from DT (Petr Oros) [1772010]
+- [netdrv] phy: mscc: factorize code for LEDs mode (Petr Oros) [1772010]
+- [netdrv] dp83640: Mark expected switch fall-throughs (Petr Oros) [1772010]
+- [netdrv] phylink: add helper for configuring 2500BaseX modes (Petr Oros) [1772010]
+- [netdrv] phy: sftp: print debug message with text, not numbers (Petr Oros) [1772010]
+- [netdrv] phy: Add support for Broadcom Omega internal Combo GPHY (Petr Oros) [1772010]
+- [netdrv] phy: Add pm support to Broadcom iProc mdio mux driver (Petr Oros) [1772010]
+- [netdrv] phy: Add support to configure clock in Broadcom iProc mdio mux (Petr Oros) [1772010]
+- [documentation] dt-bindings: Add clock handle to Broadcom iProc mdio mux (Petr Oros) [1772010]
+- [netdrv] phy: Use devm api for mdio bus allocation in bcm iproc mdio mux (Petr Oros) [1772010]
+- [netdrv] phy: Disable external master access in bcm mdio mux driver (Petr Oros) [1772010]
+- [arm64] dts: Fix the base address of the Broadcom iProc mdio mux (Petr Oros) [1772010]
+- [netdrv] phy: Fix the register offsets in Broadcom iProc mdio mux driver (Petr Oros) [1772010]
+- [documentation] dt-bindings: Fix Broadcom iProc mdio mux driver base address (Petr Oros) [1772010]
+- [netdrv] phy: mscc: the extended page access register is 16 bits (Petr Oros) [1772010]
+- [netdrv] phy: marvell: Replace mdelay() with msleep() in m88e1116r_config_init() (Petr Oros) [1772010]
+- [kernel] phy: add helper phy_polling_mode (Petr Oros) [1772010]
+- [netdrv] phy: prevent PHYs w/o Clause 22 regs from calling genphy_config_aneg (Petr Oros) [1772010]
+- [netdrv] phy: add GBit master / slave error detection (Petr Oros) [1772010]
+- [netdrv] phy: sfp: Do not use "imply HWMON" (Petr Oros) [1772010]
+- [netdrv] phy: sfp: Add HWMON support for module sensors (Petr Oros) [1772010]
+- [kernel] hwmon: Add helper to tell if a char is invalid in a name (Petr Oros) [1772010]
+- [kernel] hwmon: Add support for power min, lcrit, min_alarm and lcrit_alarm (Petr Oros) [1772010]
+- [kernel] hwmon: Add missing HWMON_T_LCRIT_ALARM define (Petr Oros) [1772010]
+- [netdrv] phy: Drop OF dependency for MDIO_BCM_UNIMAC (Petr Oros) [1772010]
+- [gpio] gpiolib: Mark gpio_suffixes array with __maybe_unused (Petr Oros) [1772010]
+- [netdrv] phy: vitesse: Add support for VSC73xx (Petr Oros) [1772010]
+- [netdrv] phy: dp83tc811: Fix SGMII enable/disable (Petr Oros) [1772010]
+- [netdrv] phy: dp83tc811: Add INT_STAT3 (Petr Oros) [1772010]
+- [netdrv] phy: xgmiitorgmii: Check read_status results (Petr Oros) [1772010]
+- [netdrv] phy: xgmiitorgmii: Use correct mdio bus (Petr Oros) [1772010]
+- [netdrv] phy: xgmiitorgmii: Check phy_driver ready before accessing (Petr Oros) [1772010]
+- [netdrv] mdio-mux-gpio: Remove VLA usage (Petr Oros) [1772010]
+- [netdrv] phy: fixed-phy: Make the error path simpler (Petr Oros) [1772010]
+- [netdrv] phy: Allow compile test of GPIO consumers if !GPIOLIB (Petr Oros) [1772010]
+- [watchdog] hpwdt: Reflect changes (Joseph Szczypek) [1769477]
+- [documentation] watchdog/hpwdt: Update documentation (Joseph Szczypek) [1769477]
+- [watchdog] hpwdt: Add module parameter kdumptimeout (Joseph Szczypek) [1769477]
+- [watchdog] hpwdt: Have core ping watchdog (Joseph Szczypek) [1769477]
+- [watchdog] hpwdt: Advertize max_hw_heartbeat_ms (Joseph Szczypek) [1769477]
+- [watchdog] hpwdt: Stop hpwdt on unregister (Joseph Szczypek) [1769477]
+- [watchdog] hpwdt: drop warning after registering device (Joseph Szczypek) [1769477]
+- [watchdog] hpwdt: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Joseph Szczypek) [1769477]
+- [nvme] make fabrics command run on a separate request queue (David Milburn) [1766361]
+- [nvme] Restart request timers in resetting state (David Milburn) [1766361]
+- [nvme] nvme-rdma: fix possible use-after-free in connect timeout (David Milburn) [1766361]
+- [block] blk-mq: remove blk_mq_complete_request_sync (David Milburn) [1766361]
+- [nvme] wait until all completed request's complete fn is called (David Milburn) [1766361]
+- [nvme] don't abort completed request in nvme_cancel_request (David Milburn) [1766361]
+- [block] blk-mq: introduce blk_mq_tagset_wait_completed_request() (David Milburn) [1766361]
+- [block] blk-mq: introduce blk_mq_request_completed() (David Milburn) [1766361]
+
+* Tue Nov 26 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-155.el8]
+- [hwtracing] intel_th: pci: Add Jasper Lake PCH support (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: pci: Add Comet Lake PCH support (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Fix possible memory leak in mode_store() (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Fix overflow in shift of an unsigned int (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Fix missing allocation failure check on a kstrndup (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Fix an uninitialized mutex (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: gth: Fix the window switching sequence (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: pci: Add Tiger Lake support (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Preserve pre-existing buffer configuration (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Prevent freeing buffers while locked windows exist (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Get rid of the window size limit (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu-sink: An example msu buffer "sink" (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Introduce buffer interface (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Start read iterator from a non-empty window (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Split sgt array and pointer in multiwindow mode (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Support multipage blocks (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: pci: Add Ice Lake NNPI support (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Fix single mode with disabled IOMMU (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Remove set but not used variable 'last' (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Fix unused variable warning on arm64 platform (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Add current window tracking (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Add a sysfs attribute to trigger window switch (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Correct the block wrap detection (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Add switch triggering support (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: gth: Factor out trace start/stop (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Factor out pipeline draining (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Switch over to scatterlist (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Replace open-coded list_{first, last, next}_entry variants (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Only report useful IRQs to subdevices (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Start handling IRQs (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: pci: Use MSI interrupt signalling (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Communicate IRQ via resource (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Add "rtit" source device (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Skip subdevices if their MMIO is missing (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Rework resource passing between glue layers and core (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Fix single mode with IOMMU (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: pci: Add Comet Lake support (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: gth: Fix an off-by-one in output unassigning (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Don't reference unassigned outputs (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: pti: Use sysfs_match_string() helper (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Only create useful device nodes (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Mark expected switch fall-throughs (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: msu: Fix an off-by-one in attribute store (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Fix resource handling for ACPI glue layer (Jiri Olsa) [1771015]
+- [hwtracing] intel_th: Fix device removal logic (Jiri Olsa) [1771015]
+- [hwtracing] hwtracing/intel_th/msu.c: change return type to vm_fault_t (Jiri Olsa) [1771015]
+- [scripts] kbuild: modversions: Fix relative CRC byte order interpretation (Don Zickus) [1772940]
+- [tools] tools x86 uapi asm: Sync the pt_regs.h copy with the kernel sources (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for trace sequences APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for APIs used to extract common fields from a record (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for tep_parse_header_page() (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for parse event APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for event filter APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for event fields APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for tep_read_number_field() (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for print field APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for get field value APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for find field APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for libtraceevent event get APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for list events APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for event find APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for tep_read_number() (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for registering print function (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for function related libtraceevent APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for event handler APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for tep_strerror() (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for page size APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for host endian APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for file endian APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for get/set cpus APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man page for header_page APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Man pages for tep_handler related APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Add support for man pages with multiple names (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Introduce man pages (Michael Petlan) [1743208]
+- [tools] perf/x86/regs: Use PERF_REG_EXTENDED_MASK (Michael Petlan) [1743208]
+- [tools] perf record: Fix s390 missing module symbol and warning for non-root users (Michael Petlan) [1743208]
+- [tools] perf machine: Read also the end of the kernel (Michael Petlan) [1743208]
+- [tools] perf test vmlinux-kallsyms: Ignore aliases to _etext when searching on kallsyms (Michael Petlan) [1743208]
+- [tools] perf session: Add missing swap ops for namespace events (Michael Petlan) [1743208]
+- [tools] perf namespace: Protect reading thread's namespace (Michael Petlan) [1743208]
+- [tools] perf data: Fix 'strncat may truncate' build failure with recent gcc (Michael Petlan) [1743208]
+- [tools] perf stat: Support 'percore' event qualifier (Michael Petlan) [1743208]
+- [tools] perf stat: Factor out aggregate counts printing (Michael Petlan) [1743208]
+- [tools] perf tools: Add a 'percore' event qualifier (Michael Petlan) [1743208]
+- [tools] perf docs: Add description for stderr (Michael Petlan) [1743208]
+- [tools] perf intel-pt: Fix sample timestamp wrt non-taken branches (Michael Petlan) [1743208]
+- [tools] perf intel-pt: Fix improved sample timestamp (Michael Petlan) [1743208]
+- [tools] perf intel-pt: Fix instructions sampling rate (Michael Petlan) [1743208]
+- [tools] perf regs x86: Add X86 specific arch__intr_reg_mask() (Michael Petlan) [1743208]
+- [tools] perf parse-regs: Add generic support for arch__intr/user_reg_mask() (Michael Petlan) [1743208]
+- [tools] perf parse-regs: Split parse_regs (Michael Petlan) [1743208]
+- [tools] perf vendor events arm64: Add Cortex-A57 and Cortex-A72 events (Michael Petlan) [1743208]
+- [tools] perf vendor events arm64: Map Brahma-B53 CPUID to cortex-a53 events (Michael Petlan) [1743208]
+- [tools] perf vendor events arm64: Remove [[:xdigit:]] wildcard (Michael Petlan) [1743208]
+- [tools] perf jevents: Remove unused variable (Michael Petlan) [1743208]
+- [tools] perf test zstd: Fixup verbose mode output (Michael Petlan) [1743208]
+- [tools] perf tests: Implement Zstd comp/decomp integration test (Michael Petlan) [1743208]
+- [tools] perf inject: Enable COMPRESSED record decompression (Michael Petlan) [1743208]
+- [tools] perf report: Implement perf.data record decompression (Michael Petlan) [1743208]
+- [tools] perf record: Implement -z, --compression_level[=<n>] option (Michael Petlan) [1743208]
+- [tools] perf report: Add stub processing of compressed events for -D (Michael Petlan) [1743208]
+- [tools] perf record: Implement compression for AIO trace streaming (Michael Petlan) [1743208]
+- [tools] perf record: Implement compression for serial trace streaming (Michael Petlan) [1743208]
+- [tools] perf tools: Introduce Zstd streaming based compression API (Michael Petlan) [1743208]
+- [tools] perf mmap: Implement dedicated memory buffer for data compression (Michael Petlan) [1743208]
+- [tools] perf record: Implement COMPRESSED event record and its attributes (Michael Petlan) [1743208]
+- [tools] perf session: Define 'bytes_transferred' and 'bytes_compressed' metrics (Michael Petlan) [1743208]
+- [tools] perf build tests: Add NO_LIBZSTD=1 to make_minimal (Michael Petlan) [1743208]
+- [tools] perf machine: Null-terminate version char array upon fgets(/proc/version) error (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Add uncore_upi JSON support (Michael Petlan) [1743208]
+- [tools] perf scripts python: exported-sql-viewer.py: Add 'About' dialog box (Michael Petlan) [1743208]
+- [tools] perf scripts python: exported-sql-viewer.py: Add context menu (Michael Petlan) [1743208]
+- [tools] perf scripts python: exported-sql-viewer.py: Add copy to clipboard (Michael Petlan) [1743208]
+- [tools] perf scripts python: exported-sql-viewer.py: Add tree level (Michael Petlan) [1743208]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix error when shrinking / enlarging font (Michael Petlan) [1743208]
+- [tools] perf scripts python: exported-sql-viewer.py: Move view creation (Michael Petlan) [1743208]
+- [tools] perf tools x86: Add support for recording and printing XMM registers (Michael Petlan) [1743208]
+- [tools] perf parse-regs: Improve error output when faced with unknown register name (Michael Petlan) [1743208]
+- [tools] perf record: Fix suggestion to get list of registers usable with --user-regs and --intr-regs (Michael Petlan) [1743208]
+- [tools] perf tools: Speed up report for perf compiled with linwunwind (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Remove hard coded install paths from pkg-config file (Michael Petlan) [1743208]
+- [tools] csky: Add support for libdw (Michael Petlan) [1743208]
+- [tools] perf test: Fix spelling mistake "leadking" -> "leaking" (Michael Petlan) [1743208]
+- [tools] perf annotate: Remove hist__account_cycles() from callback (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update Silvermont to v14 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update GoldmontPlus to v1.01 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update Goldmont to v13 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update Bonnell to V4 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update KnightsLanding events to v9 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update Haswell events to v28 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update IvyBridge events to v21 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update SandyBridge events to v16 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update JakeTown events to v20 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update IvyTown events to v20 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update HaswellX events to v20 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update BroadwellX events to v14 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update SkylakeX events to v1.12 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update Skylake events to v42 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update Broadwell-DE events to v7 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update Broadwell events to v23 (Michael Petlan) [1743208]
+- [tools] perf vendor events intel: Update metrics from TMAM 3.5 (Michael Petlan) [1743208]
+- [tools] perf record: Implement --mmap-flush=<number> option (Michael Petlan) [1743208]
+- [tools] tools build: Implement libzstd feature check, LIBZSTD_DIR and NO_LIBZSTD defines (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Rename input arguments and local variables of libtraceevent from pevent to tep (Michael Petlan) [1743208]
+- [tools] perf tools, tools lib traceevent: Rename "pevent" member of struct tep_event_filter to "tep" (Michael Petlan) [1743208]
+- [tools] perf tools, tools lib traceevent: Rename "pevent" member of struct tep_event to "tep" (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Rename input arguments of libtraceevent APIs from pevent to tep (Michael Petlan) [1743208]
+- [tools] tools tools, tools lib traceevent: Make traceevent APIs more consistent (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Remove call to exit() from tep_filter_add_filter_str() (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Remove tep filter trivial APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Removed unneeded !! and return parenthesis (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Implement new traceevent APIs for accessing struct tep_handler fields (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Coding style fixes (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Change description of few APIs (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Add more debugging to see various internal ring buffer entries (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Implement a new API, tep_list_events_copy() (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Add mono clocks to be parsed in seconds (Michael Petlan) [1743208]
+- [tools] tools lib traceevent: Handle trace_printk() "px" (Michael Petlan) [1743208]
+- [tools] perf list: Output tool events (Michael Petlan) [1743208]
+- [tools] perf evsel: Support printing evsel name for 'duration_time' (Michael Petlan) [1743208]
+- [tools] perf stat: Implement duration_time as a proper event (Michael Petlan) [1743208]
+- [tools] perf stat: Revert checks for duration_time (Michael Petlan) [1743208]
+- [tools] perf list: Fix s390 counter long description for L1D_RO_EXCL_WRITES (Michael Petlan) [1743208]
+- [tools] perf tools: Add header defining used namespace struct to event.h (Michael Petlan) [1743208]
+- [tools] perf trace beauty renameat: No need to include linux/fs.h (Michael Petlan) [1743208]
+- [tools] perf augmented_raw_syscalls: Use a PERCPU_ARRAY map to copy more string bytes (Michael Petlan) [1743208]
+- [tools] perf augmented_raw_syscalls: Copy strings from all syscalls with 1st or 2nd string arg (Michael Petlan) [1743208]
+- [tools] perf trace: Add 'string' event alias to select syscalls with string args (Michael Petlan) [1743208]
+- [x86] perf/x86: Always store regs->ip in perf_callchain_kernel() (Michael Petlan) [1743208]
+- [x86] perf/x86: Remove pmu->pebs_no_xmm_regs (Michael Petlan) [1743208]
+- [x86] perf/x86: Clean up PEBS_XMM_REGS (Michael Petlan) [1743208]
+- [kernel] perf/x86: Disable extended registers for non-supported PMUs (Michael Petlan) [1743208]
+- [kernel] perf/ioctl: Add check for the sample_period value (Michael Petlan) [1743208]
+- [kernel] perf/core: Fix perf_sample_regs_user() mm check (Michael Petlan) [1743208]
+- [kernel] perf/ring-buffer: Use regular variables for nesting (Michael Petlan) [1743208]
+- [kernel] perf/ring-buffer: Always use {READ, WRITE}_ONCE() for rb->user_page data (Michael Petlan) [1743208]
+- [kernel] perf/ring_buffer: Add ordering to rb->nest increment (Michael Petlan) [1743208]
+- [kernel] perf/ring_buffer: Fix exposing a temporarily decreased data_head (Michael Petlan) [1743208]
+- [x86] perf/x86/intel/ds: Fix EVENT vs. UEVENT PEBS constraints (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Allow PEBS multi-entry in watermark mode (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Fix INTEL_FLAGS_EVENT_CONSTRAINT* masking (Michael Petlan) [1743208]
+- [x86] perf/x86/amd/iommu: Make the 'amd_iommu_attr_groups' symbol static (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Add Tremont core PMU support (Michael Petlan) [1743208]
+- [x86] perf/x86/intel/uncore: Add Intel Icelake uncore support (Michael Petlan) [1743208]
+- [x86] perf/x86/msr: Add Icelake support (Michael Petlan) [1743208]
+- [x86] perf/x86/intel/rapl: Add Icelake support (Michael Petlan) [1743208]
+- [x86] perf/x86/intel/cstate: Add Icelake support (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Add Icelake support (Michael Petlan) [1743208]
+- [x86] perf/x86: Support constraint ranges (Michael Petlan) [1743208]
+- [x86] perf/x86/lbr: Avoid reading the LBRs when adaptive PEBS handles them (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Support adaptive PEBS v4 (Michael Petlan) [1743208]
+- [x86] perf/x86/intel/ds: Extract code of event update in short period (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Extract memory code PEBS parser for reuse (Michael Petlan) [1743208]
+- [x86] perf/x86: Support outputting XMM registers (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Force resched when TFA sysctl is modified (Michael Petlan) [1743208]
+- [kernel] perf/core: Add perf_pmu_resched() as global function (Michael Petlan) [1743208]
+- [kernel] perf/headers: Fix stale comment for struct perf_addr_filter (Michael Petlan) [1743208]
+- [kernel] perf/core: Make perf_swevent_init_cpu() static (Michael Petlan) [1743208]
+- [x86] perf/x86: Add sanity checks to x86_schedule_events() (Michael Petlan) [1743208]
+- [x86] perf/x86: Optimize x86_schedule_events() (Michael Petlan) [1743208]
+- [x86] perf/x86: Clear ->event_constraint[] on put (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Optimize intel_get_excl_constraints() (Michael Petlan) [1743208]
+- [x86] perf/x86: Remove PERF_X86_EVENT_COMMITTED (Michael Petlan) [1743208]
+- [x86] perf/x86: Simplify x86_pmu.get_constraints() interface (Michael Petlan) [1743208]
+- [x86] perf/x86/intel: Simplify intel_tfa_commit_scheduling() (Michael Petlan) [1743208]
+- [tools] perf evsel: Do not rely on errno values for precise_ip fallback (Michael Petlan) [1715508]
+- [kernel] redhat: perf kABI-check failure fix (Michael Petlan) [1715508]
+- [tools] perf vendor events: Remove P8 HW events which are not supported (Michael Petlan) [1715508]
+- [x86] cpufeature: Fix various quality problems in the <asm/cpu_device_hd.h> header (Michael Petlan) [1715508]
+- [x86] cpufeature: Add facility to check for min microcode revisions (Michael Petlan) [1715508]
+- [tools] perf tools: Remove needless asm/unistd.h include fixing build in some places (Michael Petlan) [1715508]
+- [tools] tools build: Add -ldl to the disassembler-four-args feature test (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Always allocate memory for cs_etm_queue::prev_packet (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Don't check cs_etm_queue::prev_packet validity (Michael Petlan) [1715508]
+- [tools] perf report: Report OOM in status line in the GTK UI (Michael Petlan) [1715508]
+- [tools] perf bench numa: Add define for RUSAGE_THREAD if not present (Michael Petlan) [1715508]
+- [tools] tools lib traceevent: Change tag string for error (Michael Petlan) [1715508]
+- [tools] perf annotate: Fix build on 32 bit for BPF annotation (Michael Petlan) [1715508]
+- [tools] perf bpf: Return value with unlocking in perf_env__find_btf() (Michael Petlan) [1715508]
+- [tools] perf bpf: Return NULL when RB tree lookup fails in perf_env__find_btf() (Michael Petlan) [1715508]
+- [tools] perf tools: Fix map reference counting (Michael Petlan) [1715508]
+- [tools] perf evlist: Fix side band thread draining (Michael Petlan) [1715508]
+- [tools] perf tools: Check maps for bpf programs (Michael Petlan) [1715508]
+- [tools] perf bpf: Return NULL when RB tree lookup fails in perf_env__find_bpf_prog_info() (Michael Petlan) [1715508]
+- [tools] tools include uapi: Sync sound/asound.h copy (Michael Petlan) [1715508]
+- [tools] perf top: Always sample time to satisfy needs of use of ordered queuing (Michael Petlan) [1715508]
+- [tools] perf evsel: Use hweight64() instead of hweight_long(attr.sample_regs_user) (Michael Petlan) [1715508]
+- [tools] tools lib traceevent: Fix missing equality check for strcmp (Michael Petlan) [1715508]
+- [tools] perf stat: Disable DIR_FORMAT feature for 'perf stat record' (Michael Petlan) [1715508]
+- [tools] perf scripts python: export-to-sqlite.py: Fix use of parent_id in calls_view (Michael Petlan) [1715508]
+- [tools] perf header: Fix lock/unlock imbalances when processing BPF/BTF info (Michael Petlan) [1715508]
+- [tools] perf pmu: Fix parser error for uncore event alias (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix never-ending loop (Michael Petlan) [1715508]
+- [tools] perf machine: Update kernel map address and re-order properly (Michael Petlan) [1715508]
+- [tools] tools headers uapi: Synchronize i915_drm.h (Michael Petlan) [1715508]
+- [tools] tools headers uapi: Update drm/i915_drm.h (Michael Petlan) [1715508]
+- [tools] perf evsel: Fix max perf_event_attr.precise_ip detection (Michael Petlan) [1715508]
+- [tools] perf intel-pt: Fix TSC slip (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Add missing case value (Michael Petlan) [1715508]
+- [tools] perf bpf: Show more BPF program info in print_bpf_prog_info() (Michael Petlan) [1715508]
+- [tools] perf bpf: Extract logic to create program names from perf_event__synthesize_one_bpf_prog() (Michael Petlan) [1715508]
+- [tools] perf tools: Save bpf_prog_info and BTF of new BPF programs (Michael Petlan) [1715508]
+- [tools] perf evlist: Introduce side band thread (Michael Petlan) [1715508]
+- [tools] perf annotate: Enable annotation of BPF programs (Michael Petlan) [1715508]
+- [tools] perf build: Check what binutils's 'disassembler()' signature to use (Michael Petlan) [1715508]
+- [tools] tools build: Add -lrt to FEATURE_CHECK_LDFLAGS-libaio (Michael Petlan) [1715508]
+- [tools] tools build: Add test-reallocarray.c to test-all.c to fix the build (Michael Petlan) [1715508]
+- [tools] perf bpf: Process PERF_BPF_EVENT_PROG_LOAD for annotation (Michael Petlan) [1715508]
+- [tools] perf symbols: Introduce DSO_BINARY_TYPE__BPF_PROG_INFO (Michael Petlan) [1715508]
+- [tools] perf feature detection: Add -lopcodes to feature-libbfd (Michael Petlan) [1715508]
+- [tools] perf top: Add option --no-bpf-event (Michael Petlan) [1715508]
+- [tools] perf bpf: Save BTF information as headers to perf.data (Michael Petlan) [1715508]
+- [tools] perf bpf: Save BTF in a rbtree in perf_env (Michael Petlan) [1715508]
+- [tools] perf bpf: Save bpf_prog_info information as headers to perf.data (Michael Petlan) [1715508]
+- [tools] perf bpf: Save bpf_prog_info in a rbtree in perf_env (Michael Petlan) [1715508]
+- [tools] perf bpf: Make synthesize_bpf_events() receive perf_session pointer instead of perf_tool (Michael Petlan) [1715508]
+- [tools] perf bpf: Synthesize bpf events with bpf_program__get_prog_info_linear() (Michael Petlan) [1715508]
+- [tools] perf record: Replace option --bpf-event with --no-bpf-event (Michael Petlan) [1715508]
+- [tools] perf tests: Fix a memory leak in test__perf_evsel__tp_sched_test() (Michael Petlan) [1715508]
+- [tools] perf tests: Fix memory leak by expr__find_other() in test__expr() (Michael Petlan) [1715508]
+- [tools] perf tests: Fix a memory leak of cpu_map object in the openat_syscall_event_on_all_cpus test (Michael Petlan) [1715508]
+- [tools] perf evsel: Free evsel->counts in perf_evsel__exit() (Michael Petlan) [1715508]
+- [tools] perf top: Fix global-buffer-overflow issue (Michael Petlan) [1715508]
+- [tools] perf maps: Purge all maps from the 'names' tree (Michael Petlan) [1715508]
+- [tools] perf map: Remove map from 'names' tree in __maps__remove() (Michael Petlan) [1715508]
+- [tools] perf hist: Add missing map__put() in error case (Michael Petlan) [1715508]
+- [tools] perf top: Fix error handling in cmd_top() (Michael Petlan) [1715508]
+- [tools] perf top: Delete the evlist before perf_session, fixing heap-use-after-free issue (Michael Petlan) [1715508]
+- [tools] perf build-id: Fix memory leak in print_sdt_events() (Michael Petlan) [1715508]
+- [tools] perf config: Fix a memory leak in collect_config() (Michael Petlan) [1715508]
+- [tools] perf config: Fix an error in the config template documentation (Michael Petlan) [1715508]
+- [tools] perf list: Don't forget to drop the reference to the allocated thread_map (Michael Petlan) [1715508]
+- [tools] perf tools: Add doc about how to build perf with Asan and UBSan (Michael Petlan) [1715508]
+- [tools] perf vendor events: Remove P8 HW events which are not supported (Michael Petlan) [1715508]
+- [tools] perf stat: Improve scaling (Michael Petlan) [1715508]
+- [tools] perf stat: Fix --no-scale (Michael Petlan) [1715508]
+- [tools] perf script: Support relative time (Michael Petlan) [1715508]
+- [tools] perf report: Indicate JITed code better in report (Michael Petlan) [1715508]
+- [tools] perf report: Show all sort keys in help output (Michael Petlan) [1715508]
+- [tools] perf record: Clarify help for --switch-output (Michael Petlan) [1715508]
+- [tools] perf record: Allow to limit number of reported perf.data files (Michael Petlan) [1715508]
+- [tools] perf list: Filter metrics too (Michael Petlan) [1715508]
+- [tools] perf tools report: Add custom scripts to script menu (Michael Petlan) [1715508]
+- [tools] perf ui browser: Fix ui popup argv browser for many entries (Michael Petlan) [1715508]
+- [tools] perf script: Add array bound checking to list_scripts (Michael Petlan) [1715508]
+- [tools] perf tools: Add some new tips describing the new options (Michael Petlan) [1715508]
+- [tools] perf report: Implement browsing of individual samples (Michael Petlan) [1715508]
+- [tools] perf report: Support builtin perf script in scripts menu (Michael Petlan) [1715508]
+- [tools] perf report: Support running scripts for current time range (Michael Petlan) [1715508]
+- [tools] perf report: Support time sort key (Michael Petlan) [1715508]
+- [tools] perf script: Filter COMM/FORK/.. events by CPU (Michael Petlan) [1715508]
+- [tools] perf tools: Update x86's syscall_64.tbl, no change in tools/perf behaviour (Michael Petlan) [1715508]
+- [tools] perf script python: Add printdate function to SQL exporters (Michael Petlan) [1715508]
+- [tools] perf report: Use less for scripts output (Michael Petlan) [1715508]
+- [tools] perf session: Add process callback to reader object (Michael Petlan) [1715508]
+- [tools] perf header: Add DIR_FORMAT feature to describe directory data (Michael Petlan) [1715508]
+- [tools] perf data: Make perf_data__size() work over directory (Michael Petlan) [1715508]
+- [tools] perf data: Add perf_data__update_dir() function (Michael Petlan) [1715508]
+- [tools] perf data: Don't store auxtrace index for directory data file (Michael Petlan) [1715508]
+- [tools] perf data: Support having perf.data stored as a directory (Michael Petlan) [1715508]
+- [tools] perf vendor events amd: perf PMU events for AMD Family 17h (Michael Petlan) [1715508]
+- [tools] perf probe: Fix getting the kernel map (Michael Petlan) [1715508]
+- [tools] perf report: Parse time quantum (Michael Petlan) [1715508]
+- [tools] perf time-utils: Add utility function to print time stamps in nanoseconds (Michael Petlan) [1715508]
+- [tools] perf report: Support output in nanoseconds (Michael Petlan) [1715508]
+- [tools] perf script: Support insn output for normal samples (Michael Petlan) [1715508]
+- [tools] perf data: Force perf_data__open|close zero data->file.path (Michael Petlan) [1715508]
+- [tools] perf session: Fix double free in perf_data__close (Michael Petlan) [1715508]
+- [tools] perf evsel: Probe for precise_ip with simple attr (Michael Petlan) [1715508]
+- [tools] perf tools: Read and store caps/max_precise in perf_pmu (Michael Petlan) [1715508]
+- [tools] perf hist: Fix memory leak of srcline (Michael Petlan) [1715508]
+- [tools] perf hist: Add error path into hist_entry__init (Michael Petlan) [1715508]
+- [tools] perf diff: Support --pid/--tid filter options (Michael Petlan) [1715508]
+- [tools] perf diff: Support --cpu filter option (Michael Petlan) [1715508]
+- [tools] perf diff: Support --time filter option (Michael Petlan) [1715508]
+- [tools] perf thread: Generalize function to copy from thread addr space from intel-bts code (Michael Petlan) [1715508]
+- [tools] perf annotate: Calculate the max instruction name, align column to that (Michael Petlan) [1715508]
+- [tools] perf clang: Remove needless extra semicolon (Michael Petlan) [1715508]
+- [tools] perf bpf: Automatically add BTF ELF markers (Michael Petlan) [1715508]
+- [tools] perf beauty msg_flags: Add missing s lost when adding prefix suppression logic (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Add call tree (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Factor out CallGraphModelBase (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Improve TreeModel abstraction (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Factor out TreeWindowBase (Michael Petlan) [1715508]
+- [tools] perf scripts python: export-to-postgresql.py: Export calls parent_id (Michael Petlan) [1715508]
+- [tools] perf scripts python: export-to-postgresql.py: Fix invalid input syntax for integer error (Michael Petlan) [1715508]
+- [tools] perf scripts python: export-to-sqlite.py: Export calls parent_id (Michael Petlan) [1715508]
+- [tools] perf db-export: Add calls parent_id to enable creation of call trees (Michael Petlan) [1715508]
+- [tools] perf intel-pt: Fix divide by zero when TSC is not available (Michael Petlan) [1715508]
+- [tools] perf auxtrace: Improve address filter error message when there is no DSO (Michael Petlan) [1715508]
+- [tools] perf time-utils: Refactor time range parsing code (Michael Petlan) [1715508]
+- [tools] tools lib traceevent: Fix buffer overflow in arg_eval (Michael Petlan) [1715508]
+- [tools] perf probe: Clarify error message about not finding kernel modules debuginfo (Michael Petlan) [1715508]
+- [tools] replace open encodings for NUMA_NO_NODE (Michael Petlan) [1715508]
+- [tools] perf script python: Add Python3 support to stat-cpi.py (Michael Petlan) [1715508]
+- [tools] perf tools: Add perf_exe() helper to find perf binary (Michael Petlan) [1715508]
+- [tools] perf script: Handle missing fields with -F +. (Michael Petlan) [1715508]
+- [tools] perf data: Add perf_data__open_dir_data function (Michael Petlan) [1715508]
+- [tools] perf data: Add perf_data__(create_dir|close_dir) functions (Michael Petlan) [1715508]
+- [tools] perf data: Fail check_backup in case of error (Michael Petlan) [1715508]
+- [tools] perf data: Make check_backup work over directories (Michael Petlan) [1715508]
+- [tools] perf tools: Add rm_rf_perf_data function (Michael Petlan) [1715508]
+- [tools] perf tools: Add pattern name checking to rm_rf (Michael Petlan) [1715508]
+- [tools] perf tools: Add depth checking to rm_rf (Michael Petlan) [1715508]
+- [tools] perf data: Add global path holder (Michael Petlan) [1715508]
+- [tools] perf data: Move size to struct perf_data_file (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Add top calls report (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Remove no selection error (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Remove SQLTableDialogDataItem (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Create new dialog data item classes (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Move report name into ReportVars (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Factor out ReportVars (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Factor out ReportDialogBase (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Move column headers (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Hide Call Graph option if no calls table (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Remove leftover debugging prints (Michael Petlan) [1715508]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix missing shebang (Michael Petlan) [1715508]
+- [tools] perf thread-stack: Hide x86 retpolines (Michael Petlan) [1715508]
+- [tools] perf thread-stack: Improve thread_stack__no_call_return() (Michael Petlan) [1715508]
+- [tools] perf tools: Make rm_rf() remove single file (Michael Petlan) [1715508]
+- [tools] perf cpumap: Increase debug level for cpu_map__snprint verbose output (Michael Petlan) [1715508]
+- [tools] perf bpf-event: Add missing new line into pr_debug call (Michael Petlan) [1715508]
+- [tools] perf script: Allow +- operator for type specific fields option (Michael Petlan) [1715508]
+- [tools] perf evsel: Force sample_type for slave events (Michael Petlan) [1715508]
+- [tools] perf session: Don't report zero period samples for slave events (Michael Petlan) [1715508]
+- [tools] perf trace: Allow dumping a BPF map after setting up BPF events (Michael Petlan) [1715508]
+- [tools] perf bpf: Add bpf_map dumper (Michael Petlan) [1715508]
+- [tools] perf doc: Fix documentation of the Flags section in perf.data (Michael Petlan) [1715508]
+- [tools] perf doc: Fix HEADER_CMDLINE description in perf.data documentation (Michael Petlan) [1715508]
+- [tools] perf report: Don't shadow inlined symbol with different addr range (Michael Petlan) [1715508]
+- [tools] perf tools: Use sysfs__mountpoint() when reading cpu topology (Michael Petlan) [1715508]
+- [tools] perf tools: Add numa_topology object (Michael Petlan) [1715508]
+- [tools] perf tools: Add cpu_topology object (Michael Petlan) [1715508]
+- [tools] perf tests shell: Skip trace+probe_vfs_getname.sh if built without trace support (Michael Petlan) [1715508]
+- [tools] perf header: Remove unused 'cpu_nr' field from 'struct cpu_topo' (Michael Petlan) [1715508]
+- [tools] perf header: Get rid of write_it label (Michael Petlan) [1715508]
+- [tools] perf list: Display metric expressions for --details option (Michael Petlan) [1715508]
+- [tools] perf tools: Fix legacy events symbol separator parsing (Michael Petlan) [1715508]
+- [tools] perf tools: Rename build libperf to perf (Michael Petlan) [1715508]
+- [tools] perf tools: Rename LIB_FILE to LIBPERF_A (Michael Petlan) [1715508]
+- [tools] perf tools: Compile perf with libperf-in.o instead of libperf.a (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Modularize auxtrace_buffer fetch function (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Modularize main packet processing loop (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Modularize main decoder function (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Make cs_etm__run_decoder() queue independent (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Rethink kernel address initialisation (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Cleaning up function cs_etm__alloc_queue() (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Fix erroneous comment (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Introducing function cs_etm__init_trace_params() (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Fix memory leak in error path (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Introducing function cs_etm_decoder__init_dparams() (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Fix wrong return values in error path (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Remove unused structure field "time" and "timestamp" (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Remove unused structure field "state" (Michael Petlan) [1715508]
+- [tools] perf build: Add missing FEATURE_CHECK_LDFLAGS-libcrypto (Michael Petlan) [1715508]
+- [tools] perf unwind: Do not put libunwind-{x86, aarch64} in FEATURE_TESTS_BASIC (Michael Petlan) [1715508]
+- [tools] perf coresight: Do not test for libopencsd by default (Michael Petlan) [1715508]
+- [tools] perf trace: Filter out gnome-terminal* parent (Michael Petlan) [1715508]
+- [tools] perf trace: Check if the 'fd' is negative when mapping it to pathname (Michael Petlan) [1715508]
+- [tools] perf beauty ioctl cmd: The 'fd' arg is signed (Michael Petlan) [1715508]
+- [tools] perf utils: Silence "Couldn't synthesize bpf events" warning for EPERM (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Add proper header file for symbols (Michael Petlan) [1715508]
+- [tools] perf record: Implement --affinity=node|cpu option (Michael Petlan) [1715508]
+- [tools] perf auxtrace: Add timestamp to auxtrace errors (Michael Petlan) [1715508]
+- [tools] perf intel-pt: Packet splitting can happen only on 32-bit (Michael Petlan) [1715508]
+- [tools] perf intel-pt: Fix CYC timestamp calculation after OVF (Michael Petlan) [1715508]
+- [tools] perf intel-pt: Fix overlap calculation for padding (Michael Petlan) [1715508]
+- [tools] perf auxtrace: Define auxtrace record alignment (Michael Petlan) [1715508]
+- [tools] perf thread-stack: Represent jmps to the start of a different symbol (Michael Petlan) [1715508]
+- [tools] perf thread-stack: Tidy thread_stack__no_call_return() by adding more local variables (Michael Petlan) [1715508]
+- [tools] perf thread-stack: Tidy thread_stack__push_cp() usage (Michael Petlan) [1715508]
+- [tools] perf tools: Fix split_kallsyms_for_kcore() for trampoline symbols (Michael Petlan) [1715508]
+- [tools] perf vendor events intel: Fix Load_Miss_Real_Latency on CLX (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Set sample flags for exception return packet (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Set sample flags for exception packet (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Add traceID in packet (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Change tuple from traceID-CPU# to traceID-metadata (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Add exception number in exception packet (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Set sample flags for trace discontinuity (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Set sample flags for instruction range packet (Michael Petlan) [1715508]
+- [tools] perf cs-etm: Add last instruction information in packet (Michael Petlan) [1715508]
+- [tools] perf tools: Add documentation for BPF event selection (Michael Petlan) [1715508]
+- [tools] perf report: Move symbol annotation to the resort phase (Michael Petlan) [1715508]
+- [tools] perf evsel: Add output_resort_cb method (Michael Petlan) [1715508]
+- [tools] perf hists: Add argument to hists__resort_cb_t callback (Michael Petlan) [1715508]
+- [tools] perf record: Apply affinity masks when reading mmap buffers (Michael Petlan) [1715508]
+- [tools] perf tools: Add fallback versions for CPU_{OR, EQUAL}() (Michael Petlan) [1715508]
+- [tools] perf record: Bind the AIO user space buffers to nodes (Michael Petlan) [1715508]
+- [tools] perf record: Allocate affinity masks (Michael Petlan) [1715508]
+- [tools] perf pmu: Remove set_drv_config API (Michael Petlan) [1715508]
+- [tools] perf coresight: Remove set_drv_config() API (Michael Petlan) [1715508]
+- [tools] perf arm cs-etm: Use event attributes to send sink information to kernel (Michael Petlan) [1715508]
+- [tools] perf pmu: Move EVENT_SOURCE_DEVICE_PATH to PMU header file (Michael Petlan) [1715508]
+- [tools] perf bpf-loader: Remove unecessary includes from bpf-loader.h (Michael Petlan) [1715508]
+- [tools] perf powerpc kvm-stat: Add missing evlist.h header (Michael Petlan) [1715508]
+- [tools] perf kvm stat: Replace kvm-stat.h includes with forward declarations (Michael Petlan) [1715508]
+- [tools] perf pmu: Remove needless evsel.h only needs one fwd decl (Michael Petlan) [1715508]
+- [tools] perf tests pmu: Add missing headers (Michael Petlan) [1715508]
+- [tools] perf hist: Remove the needless callchain.h include from hist.h (Michael Petlan) [1715508]
+- [tools] perf tools: Add missing include <callchain.h> in various places (Michael Petlan) [1715508]
+- [tools] perf thread: Don't include symbol.h, symbol_conf.h is enough (Michael Petlan) [1715508]
+- [tools] perf evsel: No need to include symbol.h in evsel.h, symbol_conf.h is enough (Michael Petlan) [1715508]
+- [tools] perf tools: Add missing include for symbols.h (Michael Petlan) [1715508]
+- [tools] perf hist: Remove symbol.h from hist.h, just fwd decls are needed (Michael Petlan) [1715508]
+- [tools] perf tests: Add missing headers so far obtained indirectly (Michael Petlan) [1715508]
+- [tools] perf map: Move structs and prototypes for map groups to a separate header (Michael Petlan) [1715508]
+- [tools] pref tools: Add missing map.h includes (Michael Petlan) [1715508]
+- [tools] perf symbols: Introduce map_symbol.h (Michael Petlan) [1715508]
+- [tools] perf callchain: Uninline callchain_cursor_reset() to remove map.h dependency (Michael Petlan) [1715508]
+- [tools] perf srccode: Move struct definition from map.h to srccode.h (Michael Petlan) [1715508]
+- [tools] perf arm pmu: Add missing linux/string.h header (Michael Petlan) [1715508]
+- [tools] perf powerpc: Add missing headers to skip-callchain-idx.c (Michael Petlan) [1715508]
+- [tools] perf augmented_syscalls: Convert to bpf_map() (Michael Petlan) [1715508]
+- [tools] perf bpf examples: Convert etcsnoop to use bpf_map() (Michael Petlan) [1715508]
+- [tools] perf trace: Fixup etcsnoop example (Michael Petlan) [1715508]
+- [tools] perf augmented_raw_syscalls: Use bpf_map() (Michael Petlan) [1715508]
+- [tools] perf bpf: Convert pid_map() to bpf_map() (Michael Petlan) [1715508]
+- [tools] perf bpf: Add bpf_map() helper (Michael Petlan) [1715508]
+- [tools] perf bpf: Fix synthesized PERF_RECORD_KSYMBOL/BPF_EVENT (Michael Petlan) [1715508]
+- [tools] perf sched: Use cached rbtrees (Michael Petlan) [1715508]
+- [tools] perf hist: Use cached rbtrees (Michael Petlan) [1715508]
+- [tools] perf symbols: Use cached rbtrees (Michael Petlan) [1715508]
+- [tools] perf util: Use cached rbtree for rblists (Michael Petlan) [1715508]
+- [tools] perf callchain: Use cached rbtrees (Michael Petlan) [1715508]
+- [tools] perf machine: Use cached rbtrees (Michael Petlan) [1715508]
+- [tools] Update rbtree implementation (Michael Petlan) [1715508]
+- [tools] perf callchain: No need to include perf.h (Michael Petlan) [1715508]
+- [tools] perf comm: Remove needless headers from comm.h (Michael Petlan) [1715508]
+- [tools] perf namespaces: Remove namespaces.h from .h headers (Michael Petlan) [1715508]
+- [tools] perf symbols: Remove some unnecessary includes from symbol.h (Michael Petlan) [1715508]
+- [tools] perf symbols: Remove include map.h from dso.h (Michael Petlan) [1715508]
+- [tools] perf block-range: Add missing headers (Michael Petlan) [1715508]
+- [tools] perf tools: Move branch structs to branch.h (Michael Petlan) [1715508]
+- [tools] perf annotate: Remove lots of headers from annotate.h (Michael Petlan) [1715508]
+- [tools] perf symbols: Move symbol_conf to separate file (Michael Petlan) [1715508]
+- [tools] perf color: Add missing stdarg.g to color.h (Michael Petlan) [1715508]
+- [tools] perf utils: Move perf_config using routines from color.c to separate object (Michael Petlan) [1715508]
+- [tools] perf top: Synthesize BPF events for pre-existing loaded BPF programs (Michael Petlan) [1715508]
+- [tools] perf tools: Synthesize PERF_RECORD_* for loaded BPF programs (Michael Petlan) [1715508]
+- [tools] perf tools: Handle PERF_RECORD_BPF_EVENT (Michael Petlan) [1715508]
+- [tools] perf tools: Handle PERF_RECORD_KSYMBOL (Michael Petlan) [1715508]
+- [tools] tools headers uapi: Sync tools/include/uapi/linux/perf_event.h (Michael Petlan) [1715508]
+- [tools] tools headers uapi: Sync tools/include/uapi/linux/perf_event.h (Michael Petlan) [1715508]
+- [tools] perf report: Display names in s390 diagnostic counter sets (Michael Petlan) [1715508]
+- [tools] perf tools: Remove duplicate headers (Michael Petlan) [1715508]
+- [tools] perf session: Add reader__process_events function (Michael Petlan) [1715508]
+- [tools] perf session: Add 'data_offset' member to reader object (Michael Petlan) [1715508]
+- [tools] perf session: Add 'data_size' member to reader object (Michael Petlan) [1715508]
+- [tools] perf session: Add reader object (Michael Petlan) [1715508]
+- [tools] perf session: Get rid of file_size variable (Michael Petlan) [1715508]
+- [tools] perf session: Rearrange perf_session__process_events function (Michael Petlan) [1715508]
+- [tools] perf tools: Replace automatic const char[] variables by statics (Michael Petlan) [1715508]
+- [tools] perf/doc: Update design.txt for exclude_{host|guest} flags (Michael Petlan) [1715508]
+- [x86] perf/x86/intel/pt: Remove software double buffering PMU capability (Michael Petlan) [1715508]
+- [kernel] perf/ring_buffer: Fix AUX software double buffering (Michael Petlan) [1715508]
+- [x86] perf/x86/amd: Update generic hardware cache events for Family 17h (Michael Petlan) [1715508]
+- [x86] perf/x86/amd: Add event map for AMD Family 17h (Michael Petlan) [1715508]
+- [x86] perf/x86: Fix incorrect PEBS_REGS (Michael Petlan) [1715508]
+- [kernel] perf/ring_buffer: Fix AUX record suppression (Michael Petlan) [1715508]
+- [kernel] perf/core: Fix the address filtering fix (Michael Petlan) [1715508]
+- [kernel] perf/core: Fix perf_event_disable_inatomic() race (Michael Petlan) [1715508]
+- [x86] perf/x86/intel: Initialize TFA MSR (Michael Petlan) [1715508]
+- [x86] perf/x86/intel: Fix handling of wakeup_events for multi-entry PEBS (Michael Petlan) [1715508]
+- [kernel] perf/core: Restore mmap record type correctly (Michael Petlan) [1715508]
+- [x86] perf/x86/intel: Make dev_attr_allow_tsx_force_abort static (Michael Petlan) [1715508]
+- [kernel] uprobes: convert uprobe.ref to refcount_t (Michael Petlan) [1715508]
+- [kernel] perf, bpf: Consider events with attr.bpf_event as side-band events (Michael Petlan) [1715508]
+- [kernel] perf/core: Mark expected switch fall-through (Michael Petlan) [1715508]
+- [x86] perf/x86/intel/uncore: Fix client IMC events return huge result (Michael Petlan) [1715508]
+- [kernel] perf/ring_buffer: Use high order allocations for AUX buffers optimistically (Michael Petlan) [1715508]
+- [x86] events: Mark expected switch-case fall-throughs (Michael Petlan) [1715508]
+- [kernel] perf, pt, coresight: Fix address filters for vmas with non-zero offset (Michael Petlan) [1715508]
+- [kernel] perf: Copy parent's address filter offsets on clone (Michael Petlan) [1715508]
+- [x86] perf/x86/intel: Add counter freezing quirk for Goldmont (Michael Petlan) [1715508]
+- [x86] perf/x86/intel: Clean up counter freezing quirk (Michael Petlan) [1715508]
+- [x86] perf/x86/intel: Clean up SNB PEBS quirk (Michael Petlan) [1715508]
+- [x86] perf/x86/kvm: Avoid unnecessary work in guest filtering (Michael Petlan) [1715508]
+- [perf] aux: Make perf_event accessible to setup_aux() (Michael Petlan) [1715508]
+- [kernel] perf/ring_buffer: Convert ring_buffer.aux_refcount to refcount_t (Michael Petlan) [1715508]
+- [kernel] perf/ring_buffer: Convert ring_buffer.refcount to refcount_t (Michael Petlan) [1715508]
+- [kernel] perf: Convert perf_event_context.refcount to refcount_t (Michael Petlan) [1715508]
+- [kernel] perf/uprobes: Convert to SPDX license identifier (Michael Petlan) [1715508]
+- [kernel] perf/hw_breakpoints: Convert to SPDX license identifier (Michael Petlan) [1715508]
+- [kernel] perf/core: Convert to SPDX license identifiers (Michael Petlan) [1715508]
+- [kernel] perf, bpf: Introduce PERF_RECORD_BPF_EVENT (Michael Petlan) [1715508]
+- [kernel] perf, bpf: Introduce PERF_RECORD_KSYMBOL (Michael Petlan) [1715508]
+- [kernel] perf: Remove duplicated workqueue.h include from perf_event.h (Michael Petlan) [1715508]
+- [tools] perf/core: Remove unused perf_flags (Michael Petlan) [1715508]
+- [x86] perf/core, arch/x86: Strengthen exclusion checks with PERF_PMU_CAP_NO_EXCLUDE (Michael Petlan) [1715508]
+- [x86] perf/core, arch/x86: Use PERF_PMU_CAP_NO_EXCLUDE for exclusion incapable PMUs (Michael Petlan) [1715508]
+- [kernel] perf/core: Add PERF_PMU_CAP_NO_EXCLUDE for exclusion incapable PMUs (Michael Petlan) [1715508]
+- [kernel] perf/core: Add function to test for event exclusion flags (Michael Petlan) [1715508]
+
+* Tue Nov 26 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-154.el8]
+- [kernel] mm/hmm: fix ZONE_DEVICE anon page mapping reuse (Jerome Glisse) [1498655 1597758]
+- [gpu] drm/nouveau/dmem: missing mutex_lock in error path (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: always return EBUSY for invalid ranges in hmm_range_{fault, snapshot} (Jerome Glisse) [1498655 1597758]
+- [kernel] mm/hmm: move hmm_vma_range_done and hmm_vma_fault to nouveau (Jerome Glisse) [1498655 1597758]
+- [kernel] mm: factor out a devm_request_free_mem_region helper (Jerome Glisse) [1498655 1597758]
+- [mm] don't clear ->mapping in hmm_devmem_free (Jerome Glisse) [1498655 1597758]
+- [mm] remove the struct hmm_device infrastructure (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Fix error flows in hmm_invalidate_range_start (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Remove confusing comment and logic from hmm_release (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Poison hmm_range during unregister (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Remove racy protection against double-unregistration (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Use lockdep instead of comments (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Hold on to the mmget for the lifetime of the range (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Do not use list*_rcu() for hmm->ranges (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Simplify hmm_get_or_create and make it reliable (Jerome Glisse) [1498655 1597758]
+- [kernel] mm/hmm: Remove duplicate condition test before wait_event_timeout (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Hold a mmgrab from hmm to mm (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Use hmm_mirror not mm as an argument for hmm_range_register (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: fix use after free with struct hmm in the mmu notifiers (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: Only set FAULT_FLAG_ALLOW_RETRY for non-blocking (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: support automatic NUMA balancing (Jerome Glisse) [1498655 1597758]
+- [kernel] mm/hmm: clean up some coding style and comments (Jerome Glisse) [1498655 1597758]
+- [mm] hmm.c: suppress compilation warnings when CONFIG_HUGETLB_PAGE is not set (Jerome Glisse) [1498655 1597758]
+- [kernel] mm/hmm: convert various hmm_pfn_* to device_entry which is a better name (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: add a helper function that fault pages and map them to a device (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: allow to mirror vma of a file on a DAX backed filesystem (Jerome Glisse) [1498655 1597758]
+- [kernel] mm/hmm: add helpers to test if mm is still alive or not (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: mirror hugetlbfs (snapshoting, faulting and DMA mapping) (Jerome Glisse) [1498655 1597758]
+- [documentation] [documentation] mm/hmm: add default fault flags to avoid the need to pre-fill pfns arrays (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: improve driver API to work and wait over a range (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: improve and rename hmm_vma_fault() to hmm_range_fault() (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: improve and rename hmm_vma_get_pfns() to hmm_range_snapshot() (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: do not erase snapshot when a range is invalidated (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: use reference counting for HMM struct (Jerome Glisse) [1498655 1597758]
+- [kernel] mm/hmm: convert to use vm_fault_t (Jerome Glisse) [1498655 1597758]
+- [mm] hmm.c: remove set but not used variable 'devmem' (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: mark hmm_devmem_{add, add_resource} EXPORT_SYMBOL_GPL (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: replace hmm_devmem_pages_create() with devm_memremap_pages() (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: use devm semantics for hmm_devmem_{add, remove} (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: invalidate device page table at start of invalidation (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: use a structure for update callback parameters (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: properly handle migration pmd (Jerome Glisse) [1498655 1597758]
+- [mm] hmm: fix utf8 . (Jerome Glisse) [1498655 1597758]
+- [mm] hmm.c: remove unused variables align_start and align_end (Jerome Glisse) [1498655 1597758]
+- [hid] hyperv: Use in-place iterator API in the channel callback (Benjamin Tissoires) [1740778 1772010]
+- [hid] logitech-hidpp: do all FF cleanup in hidpp_ff_destroy() (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: rework device validation (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: split g920_get_config() (Benjamin Tissoires) [1740778]
+- [hid] fix error message in hid_open_report() (Benjamin Tissoires) [1740778]
+- [hid] Fix assumption that devices have inputs (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: add Trekstor Primebook C11B to descriptor override (Benjamin Tissoires) [1740778]
+- [hid] apple: Fix stuck function keys when using FN (Benjamin Tissoires) [1740778]
+- [hid] wacom: Fix several minor compiler warnings (Benjamin Tissoires) [1740778]
+- [hid] Add quirk for HP X500 PIXART OEM mouse (Benjamin Tissoires) [1740778]
+- [hid] hidraw: Fix invalid read in hidraw_ioctl (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: Fix crash when initial logi_dj_recv_query_paired_devices fails (Benjamin Tissoires) [1740778]
+- [hid] logitech: Fix general protection fault caused by Logitech driver (Benjamin Tissoires) [1740778]
+- [hid] sony: Fix memory corruption issue on cleanup (Benjamin Tissoires) [1740778]
+- [hid] prodikeys: Fix general protection fault during probe (Benjamin Tissoires) [1740778]
+- [hid] wacom: correct misreported EKR ring values (Benjamin Tissoires) [1740778]
+- [hid] cp2112: prevent sleeping function called from invalid context (Benjamin Tissoires) [1740778]
+- [hid] wacom: Correct distance scale for 2nd-gen Intuos devices (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: remove support for the G700 over USB (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: logitech-hidpp: add USB PID for a few more supported mice" (Benjamin Tissoires) [1740778]
+- [hid] sony: Fix race condition between rumble and device remove (Benjamin Tissoires) [1740778]
+- [hid] hiddev: do cleanup in failure of opening a device (Benjamin Tissoires) [1740778]
+- [hid] hiddev: avoid opening a disconnected device (Benjamin Tissoires) [1740778]
+- [hid] input: fix a4tech horizontal wheel custom usage (Benjamin Tissoires) [1740778]
+- [hid] Add quirk for HP X1200 PIXART OEM mouse (Benjamin Tissoires) [1740778]
+- [hid] holtek: test for sanity of intfdata (Benjamin Tissoires) [1740778]
+- [hid] wacom: fix bit shift for Cintiq Companion 2 (Benjamin Tissoires) [1740778]
+- [hid] quirks: Set the INCREMENT_USAGE_ON_DUPLICATE quirk on Saitek X52 (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: Really fix return value of logi_dj_recv_query_hidpp_devices (Benjamin Tissoires) [1740778]
+- [hid] Add 044f:b320 ThrustMaster, Inc. 2 in 1 DT (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add the Powerplay receiver (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: add USB PID for a few more supported mice (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: rename "gaming" receiver to "lightspeed" (Benjamin Tissoires) [1740778]
+- [hid] Add another Primax PIXART OEM mouse quirk (Benjamin Tissoires) [1740778]
+- [hid] wacom: generic: add touchring adjustment for 2nd Gen Pro Small (Benjamin Tissoires) [1740778]
+- [hid] quirks: Refactor ELAN 400 and 401 handling (Benjamin Tissoires) [1740778]
+- [hid] video: fbdev: don't print error message on framebuffer_alloc() failure (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: Fix forwarding of very long HID++ reports (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for Huion HS64 tablet (Benjamin Tissoires) [1740778]
+- [hid] wacom: add new MobileStudio Pro support (Benjamin Tissoires) [1740778]
+- [hid] wacom: generic: read the number of expected touches on a per collection basis (Benjamin Tissoires) [1740778]
+- [hid] wacom: generic: support the 'report valid' usage for touch (Benjamin Tissoires) [1740778]
+- [hid] wacom: generic: read HID_DG_CONTACTMAX from any feature report (Benjamin Tissoires) [1740778]
+- [hid] wacom: Add 2nd gen Intuos Pro Small support (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for Ugee Rainbow CV720 (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: fix return value of logi_dj_recv_query_hidpp_devices (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441 (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 372 (Benjamin Tissoires) [1740778]
+- [kernel] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 335 (Benjamin Tissoires) [1740778]
+- [hid] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 333 (Benjamin Tissoires) [1740778]
+- [hid] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 307 (Benjamin Tissoires) [1740778]
+- [kernel] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 297 (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 288 (Benjamin Tissoires) [1740778]
+- [kernel] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 (Benjamin Tissoires) [1740778]
+- [kernel] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 267 (Benjamin Tissoires) [1740778]
+- [hid] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 265 (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: Fix 064d:c52f receiver support (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: core: Call request_module before doing device_add" (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: core: Do not call request_module() in async context" (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: Increase maximum report size allowed by hid_field_extract()" (Benjamin Tissoires) [1740778]
+- [hid] a4tech: fix horizontal scrolling (Benjamin Tissoires) [1740778]
+- [hid] hyperv: Add a module description line (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 194 (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 178 (Benjamin Tissoires) [1740778]
+- [kernel] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 177 (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156 (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (Benjamin Tissoires) [1740778]
+- [kernel] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 149 (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: Add support for the S510 remote control (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: hid: make const array consumer_rdesc_start static (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: make const array template static (Benjamin Tissoires) [1740778]
+- [hid] multitouch: handle faulty Elo touch device (Benjamin Tissoires) [1740778]
+- [input] treewide: Add SPDX license identifier for more missed files (Benjamin Tissoires) [1740778]
+- [hid] wacom: Sync INTUOSP2_BT touch state after each frame if necessary (Benjamin Tissoires) [1740778]
+- [hid] wacom: Correct button numbering 2nd-gen Intuos Pro over Bluetooth (Benjamin Tissoires) [1740778]
+- [hid] wacom: Send BTN_TOUCH in response to INTUOSP2_BT eraser contact (Benjamin Tissoires) [1740778]
+- [hid] wacom: Don't report anything prior to the tool entering range (Benjamin Tissoires) [1740778]
+- [hid] wacom: Don't set tool type until we're in range (Benjamin Tissoires) [1740778]
+- [hid] wacom: correct touch resolution x/y typo (Benjamin Tissoires) [1740778]
+- [hid] wacom: generic: Correct pad syncing (Benjamin Tissoires) [1740778]
+- [hid] wacom: generic: only switch the mode on devices with LEDs (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: Add usb-id for the 27MHz MX3000 receiver (Benjamin Tissoires) [1740778]
+- [hid] rmi: Use SET_REPORT request on control endpoint for Acer Switch 3 and 5 (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: add support for the MX5500 keyboard (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add support for the Logitech MX5500's Bluetooth Mini-Receiver (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: add iBall Aer3 to descriptor override (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: fix spelling in printk (Benjamin Tissoires) [1740778]
+- [hid] input: add mapping for KEY_KBD_LAYOUT_NEXT (Benjamin Tissoires) [1740778]
+- [hid] input: fix assignment of .value (Benjamin Tissoires) [1740778]
+- [hid] input: make sure the wheel high resolution multiplier is set (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add usbhid dependency in Kconfig (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: add support for HID++ 1.0 consumer keys reports (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: add support for HID++ 1.0 extra mouse buttons reports (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: add support for HID++ 1.0 wheel reports (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: make hidpp10_set_register_bit a bit more generic (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: add input_device ptr to struct hidpp_device (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: do not hardcode very long report length (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: handle devices attached to 27MHz wireless receivers (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: use RAP instead of FAP to get the protocol version (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: remove unused origin_is_hid_core function parameter (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: remove double assignment from __hidpp_send_report (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: do not make failure to get the name fatal (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: ignore very-short or empty names (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: make .probe usbhid capable (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: allow non HID++ devices to be handled by this module (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add support for Logitech Bluetooth Mini-Receiver (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: make appending of the HID++ descriptors conditional (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: remove false-positive error on double queueing of delayed-work (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: pick a better name for non-unifying receivers (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: deal with some KVMs adding an extra interface to the usbdev (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: replace dev_err calls with hid_err calls (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add support for 27 MHz mouse-only receivers (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add support for 27 MHz receivers (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add support for the gaming unifying receiver (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add support for non unifying receivers (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: add logi_dj_recv_queue_unknown_work helper (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: support sharing struct dj_receiver_dev between USB-interfaces (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: rename dj_receiver_dev.hdev to dj_receiver_dev.hidpp (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: protect the paired_dj_devices access in add_djhid_dev with the lock (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: remove unused querying_devices variable (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: do not schedule the dj report itself (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: remove USB dependency (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: declare and use a few HID++ 1.0 constants (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: use BIT() macro for RF Report types (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: fix variable naming in logi_dj_hidpp_event (Benjamin Tissoires) [1740778]
+- [hid] logitech-dj: reshuffle logi_dj_recv_forward_* (Benjamin Tissoires) [1740778]
+- [hid] logitech: Stop setting drvdata to NULL on probe failure and remove (Benjamin Tissoires) [1740778]
+- [hid] quirks: do not blacklist Logitech devices (Benjamin Tissoires) [1740778]
+- [hid] u2fzero: fail probe if not using USB transport (Benjamin Tissoires) [1740778]
+- [hid] u2fzero: fix compiling error in u2fzero_probe() (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: i2c-hid: Disable runtime PM on Synaptics touchpad" (Benjamin Tissoires) [1740778]
+- [hid] add driver for U2F Zero built-in LED and RNG (Benjamin Tissoires) [1740778]
+- [hid] core: Do not call request_module() in async context (Benjamin Tissoires) [1740778]
+- [hid] macally: Add support for Macally ikey keyboard (Benjamin Tissoires) [1740778]
+- [hid] core: Call request_module before doing device_add (Benjamin Tissoires) [1740778]
+- [hid] core: move Usage Page concatenation to Main item (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: change low battery level threshold from 31 to 30 percent (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: remove hidpp_is_connected() (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: simplify printing of HID++ version (Benjamin Tissoires) [1740778]
+- [hid] picolcd: Convert to use sysfs_streq() (Benjamin Tissoires) [1740778]
+- [hid] hid-sensor-custom: simplify getting .driver_data (Benjamin Tissoires) [1740778]
+- [hid] input: add mapping for Assistant key (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: Disable runtime PM on Synaptics touchpad (Benjamin Tissoires) [1740778]
+- [hid] quirks: Fix keyboard + touchpad on Lenovo Miix 630 (Benjamin Tissoires) [1740778]
+- [hid] input: add mapping for "Toggle Display" key (Benjamin Tissoires) [1740778]
+- [hid] input: add mapping for "Full Screen" key (Benjamin Tissoires) [1740778]
+- [hid] input: add mapping for keyboard Brightness Up/Down/Toggle keys (Benjamin Tissoires) [1740778]
+- [hid] input: add mapping for Expose/Overview key (Benjamin Tissoires) [1740778]
+- [hid] input: fix mapping of aspect ratio key (Benjamin Tissoires) [1740778]
+- [hid] logitech: Handle 0 scroll events for the m560 (Benjamin Tissoires) [1740778]
+- [hid] debug: fix race condition with between rdesc_show() and device removal (Benjamin Tissoires) [1740778]
+- [hid] logitech: check the return value of create_singlethread_workqueue (Benjamin Tissoires) [1740778]
+- [hid] steam: fix deadlock with input devices (Benjamin Tissoires) [1740778]
+- [hid] uclogic: remove redudant duplicated null check on ver_ptr (Benjamin Tissoires) [1740778]
+- [hid] quirks: Drop misused kernel-doc annotation (Benjamin Tissoires) [1740778]
+- [hid] quirks: use correct format chars in dbg_hid (Benjamin Tissoires) [1740778]
+- [hid] Remove Waltop tablets from hid_have_special_driver (Benjamin Tissoires) [1740778]
+- [hid] Remove KYE tablets from hid_have_special_driver (Benjamin Tissoires) [1740778]
+- [hid] Remove hid-uclogic entries from hid_have_special_driver (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Do not initialize non-USB devices (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for Ugee G5 (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Support Gray-coded rotary encoders (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Support faking Wacom pad device ID (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for XP-Pen Deco 01 (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for XP-Pen Star G640 (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for XP-Pen Star G540 (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for Ugee EX07S frame controls (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for Ugee M540 (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Add support for Ugee 2150 (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Support v2 protocol (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Support fragmented high-res reports (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Support in-range reporting emulation (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Designate current protocol v1 (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Re-initialize tablets on resume (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Extract tablet parameter discovery into a module (Benjamin Tissoires) [1740778]
+- [hid] uclogic: Extract report descriptors to a module (Benjamin Tissoires) [1740778]
+- [hid] Clarify vendor ID reuse by Ugee tablets (Benjamin Tissoires) [1740778]
+- [hid] viewsonic: Support PD1011 signature pad (Benjamin Tissoires) [1740778]
+- [hid] kye: Add support for EasyPen M406XE (Benjamin Tissoires) [1740778]
+- [hid] wacom: Add support for Pro Pen slim (Benjamin Tissoires) [1740778]
+- [hid] roccat: Mark expected switch fall-through (Benjamin Tissoires) [1740778]
+- [hid] wacom: Mark expected switch fall-through (Benjamin Tissoires) [1740778]
+- [hid] fix Logitech WingMan Formula GP joined axes (Benjamin Tissoires) [1740778]
+- [hid] multitouch: Lenovo X1 Tablet Gen3 trackpoint and buttons (Benjamin Tissoires) [1740778]
+- [hid] steam: fix boot loop with bluetooth firmware (Benjamin Tissoires) [1740778]
+- [hid] Add ASUS T100CHI keyboard dock battery quirks (Benjamin Tissoires) [1740778]
+- [hid] Add support for Toshiba WT10A tablet bluetooth keyboard (Benjamin Tissoires) [1740778]
+- [hid] wacom: Move HID fix for AES serial number into wacom_hid_usage_quirk (Benjamin Tissoires) [1740778]
+- [hid] elan: Make array buf static, shrinks object size (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: Ignore input report if there's no data present on Elan touchpanels (Benjamin Tissoires) [1740778]
+- [hid] core: simplify active collection tracking (Benjamin Tissoires) [1740778]
+- [hid] Support for Maltron L90 keyboard media keys (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: Disable runtime PM on Goodix touchpad (Benjamin Tissoires) [1740778]
+- [hid] sony: Fix SHANWAN PS3 GamePad rumble and led settings support (Benjamin Tissoires) [1740778]
+- [hid] sony: Transform one-time SHANWAN check into quirk (Benjamin Tissoires) [1740778]
+- [hid] core: replace the collection tree pointers with indices (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: Add Odys Winbook 13 to descriptor override (Benjamin Tissoires) [1740778]
+- [hid] lenovo: Add checks to fix of_led_classdev_register (Benjamin Tissoires) [1740778]
+- [hid] intel-ish-hid: add MSI interrupt support (Benjamin Tissoires) [1740778]
+- [hid] debug: Change to use DEFINE_SHOW_ATTRIBUTE macro (Benjamin Tissoires) [1740778]
+- [hid] intel-ish-hid: fixes incorrect error handling (Benjamin Tissoires) [1740778]
+- [hid] logitech: Use LDJ_DEVICE macro for existing Logitech mice (Benjamin Tissoires) [1740778]
+- [hid] logitech: Enable high-resolution scrolling on Logitech mice (Benjamin Tissoires) [1740778]
+- [hid] logitech: Add function to enable HID++ 1.0 "scrolling acceleration" (Benjamin Tissoires) [1740778]
+- [hid] logitech-hidpp: fix typo, hiddpp to hidpp (Benjamin Tissoires) [1740778]
+- [hid] input: use the Resolution Multiplier for high-resolution scrolling (Benjamin Tissoires) [1740778]
+- [hid] core: process the Resolution Multiplier (Benjamin Tissoires) [1740778]
+- [hid] core: store the collections as a basic tree (Benjamin Tissoires) [1740778]
+- [hid] cougar: Add support for Cougar 700K Gaming Keyboard (Benjamin Tissoires) [1740778]
+- [hid] hidraw: enforce minors_lock locking via lockdep (Benjamin Tissoires) [1740778]
+- [hid] quirks: fix RetroUSB.com devices (Benjamin Tissoires) [1740778]
+- [kernel] hid: input: support Microsoft wireless radio control hotkey (Benjamin Tissoires) [1740778]
+- [kernel] hid: use macros in IS_INPUT_APPLICATION (Benjamin Tissoires) [1740778]
+- [hid] ite: Add USB id match for another ITE based keyboard rfkill key quirk (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: input: Create a utility class for counting scroll events" (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: logitech: Add function to enable HID++ 1.0 "scrolling acceleration"" (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: logitech: Enable high-resolution scrolling on Logitech mice" (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: logitech: Use LDJ_DEVICE macro for existing Logitech mice" (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: logitech: fix a used uninitialized GCC warning" (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: input: simplify/fix high-res scroll event handling" (Benjamin Tissoires) [1740778]
+- [hid] Add quirk for Primax PIXART OEM mice (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: Disable runtime PM for LG touchscreen (Benjamin Tissoires) [1740778]
+- [hid] steam: remove input device when a hid client is running (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: uhid: use strlcpy() instead of strncpy()" (Benjamin Tissoires) [1740778]
+- [hid] uhid: forbid UHID_CREATE under KERNEL_DS or elevated privileges (Benjamin Tissoires) [1740778]
+- [hid] iio/hid-sensors: Fix IIO_CHAN_INFO_RAW returning wrong values for signed numbers (Benjamin Tissoires) [1740778]
+- [hid] input: Ignore battery reported by Symbol DS4308 (Benjamin Tissoires) [1740778]
+- [hid] Add quirk for Microsoft PIXART OEM mouse (Benjamin Tissoires) [1740778]
+- [kernel] hid: fix up .raw_event() documentation (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: add Direkt-Tek DTLAPY133-1 to descriptor override (Benjamin Tissoires) [1740778]
+- [hid] input: simplify/fix high-res scroll event handling (Benjamin Tissoires) [1740778]
+- [hid] we do not randomly make new drivers 'default y' (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: properly terminate i2c_hid_dmi_desc_override_table[] array (Benjamin Tissoires) [1740778]
+- [hid] alps: allow incoming reports when only the trackstick is opened (Benjamin Tissoires) [1740778]
+- [hid] revert "hid: add NOGET quirk for Eaton Ellipse MAX UPS" (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: Add a small delay after sleep command for Raydium touchpanel (Benjamin Tissoires) [1740778]
+- [hid] usbhid: Add quirk for Redragon/Dragonrise Seymur 2 (Benjamin Tissoires) [1740778]
+- [hid] wacom: Work around HID descriptor bug in DTK-2451 and DTH-2452 (Benjamin Tissoires) [1740778]
+- [hid] google: add dependency on Cros EC for Hammer (Benjamin Tissoires) [1740778]
+- [hid] elan: fix spelling mistake "registred" -> "registered" (Benjamin Tissoires) [1740778]
+- [hid] google: drop superfluous const before SIMPLE_DEV_PM_OPS() (Benjamin Tissoires) [1740778]
+- [hid] google: add support tablet mode switch for Whiskers (Benjamin Tissoires) [1740778]
+- [hid] magicmouse: add support for Apple Magic Trackpad 2 (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: override HID descriptors for certain devices (Benjamin Tissoires) [1740778]
+- [hid] hid-bigbenff: driver for BigBen Interactive PS3OFMINIPAD gamepad (Benjamin Tissoires) [1740778]
+- [hid] logitech: fix a used uninitialized GCC warning (Benjamin Tissoires) [1740778]
+- [hid] intel-ish-hid: using list_head for ipc write queue (Benjamin Tissoires) [1740778]
+- [hid] intel-ish-hid: use resource-managed api (Benjamin Tissoires) [1740778]
+- [hid] intel_ish-hid: Enhance API to get ring buffer sizes (Benjamin Tissoires) [1740778]
+- [hid] input: Set INPUT_PROP_-property for HID_UP_DIGITIZERS (Benjamin Tissoires) [1740778]
+- [hid] microsoft: the driver now neeed MEMLESS_FF infrastructure (Benjamin Tissoires) [1740778]
+- [hid] cougar: Stop processing vendor events on hid-core (Benjamin Tissoires) [1740778]
+- [hid] cougar: Make parameter 'g6_is_space' dinamically settable (Benjamin Tissoires) [1740778]
+- [hid] microsoft: Add rumble support for Xbox One S controller (Benjamin Tissoires) [1740778]
+- [hid] microsoft: Convert private data to be a proper struct (Benjamin Tissoires) [1740778]
+- [hid] logitech: Use LDJ_DEVICE macro for existing Logitech mice (Benjamin Tissoires) [1740778]
+- [hid] logitech: Enable high-resolution scrolling on Logitech mice (Benjamin Tissoires) [1740778]
+- [hid] logitech: Add function to enable HID++ 1.0 "scrolling acceleration" (Benjamin Tissoires) [1740778]
+- [hid] input: Create a utility class for counting scroll events (Benjamin Tissoires) [1740778]
+- [hid] multitouch: simplify the application retrieval (Benjamin Tissoires) [1740778]
+- [hid] input: do not append a suffix if the name already has it (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: Remove RESEND_REPORT_DESCR quirk and its handling (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: disable runtime PM operations on hantick touchpad (Benjamin Tissoires) [1740778]
+- [hid] sensor-hub: Restore fixup for Lenovo ThinkPad Helix 2 sensor hub report (Benjamin Tissoires) [1740778]
+- [hid] core: fix NULL pointer dereference (Benjamin Tissoires) [1740778]
+- [hid] hid-saitek: Add device ID for RAT 7 Contagion (Benjamin Tissoires) [1740778]
+- [hid] core: fix memory leak on probe (Benjamin Tissoires) [1740778]
+- [hid] add support for Apple Magic Keyboards (Benjamin Tissoires) [1740778]
+- [hid] intel_ish-hid: tx_buf memory leak on probe/remove (Benjamin Tissoires) [1740778]
+- [hid] intel-ish-hid: Prevent loading of driver on Mehlow (Benjamin Tissoires) [1740778]
+- [hid] cougar: Add support for the Cougar 500k Gaming Keyboard (Benjamin Tissoires) [1740778]
+- [hid] cougar: make compare_device_paths reusable (Benjamin Tissoires) [1740778]
+- [hid] multitouch: handle palm for touchscreens (Benjamin Tissoires) [1740778]
+- [hid] multitouch: touchscreens also use confidence reports (Benjamin Tissoires) [1740778]
+- [hid] multitouch: report MT_TOOL_PALM for non-confident touches (Benjamin Tissoires) [1740778]
+- [hid] microsoft: support the Surface Dial (Benjamin Tissoires) [1740778]
+- [hid] core: do not upper bound the collection stack (Benjamin Tissoires) [1740778]
+- [hid] input: enable Totem on the Dell Canvas 27 (Benjamin Tissoires) [1740778]
+- [hid] multitouch: remove one copy of values (Benjamin Tissoires) [1740778]
+- [hid] multitouch: ditch mt_report_id (Benjamin Tissoires) [1740778]
+- [hid] multitouch: store a per application quirks value (Benjamin Tissoires) [1740778]
+- [hid] multitouch: Store per collection multitouch data (Benjamin Tissoires) [1740778]
+- [hid] multitouch: make sure the static list of class is not changed (Benjamin Tissoires) [1740778]
+- [hid] elan: Add support for touchpad on the Toshiba Click Mini L9W (Benjamin Tissoires) [1740778]
+- [hid] elan: Add USB-id for HP x2 10-n000nd touchpad (Benjamin Tissoires) [1740778]
+- [hid] elan: Add a flag for selecting if the touchpad has a LED (Benjamin Tissoires) [1740778]
+- [hid] elan: Query resolution from the touchpad (Benjamin Tissoires) [1740778]
+- [hid] elan: Query device max_x and max_y value from touchpad (Benjamin Tissoires) [1740778]
+- [hid] elan: Hardcode finger-count and usb-interface (Benjamin Tissoires) [1740778]
+- [hid] elan: Correctly report MT_PRESSURE instead of TOOL_WIDTH (Benjamin Tissoires) [1740778]
+- [hid] elan: Stop claiming we have TOUCH_MAJOR and then never reporting it (Benjamin Tissoires) [1740778]
+- [hid] elan: Remove unused max_area_x and max_area_y vatiables (Benjamin Tissoires) [1740778]
+- [hid] hid-sony.c: Use devm_ api to simplify sc->output_report_dmabuf (Benjamin Tissoires) [1740778]
+- [hid] hid-sony.c: Use devm_ api to simplify sony_battery_probe() (Benjamin Tissoires) [1740778]
+- [hid] hid-sony.c: Use devm_ api to simplify sony_leds_init() (Benjamin Tissoires) [1740778]
+- [hid] hid-sony.c: Use devm_ api to simplify sony_register_sensors() (Benjamin Tissoires) [1740778]
+- [hid] hid-sony.c: Use devm_ api to simplify sony_register_touchpad() (Benjamin Tissoires) [1740778]
+- [hid] wacom: convert Wacom custom usages to standard HID usages (Benjamin Tissoires) [1740778]
+- [hid] wacom: Move handling of HID quirks into a dedicated function (Benjamin Tissoires) [1740778]
+- [hid] wacom: Replace touch_max fixup code with static touch_max definitions (Benjamin Tissoires) [1740778]
+- [hid] wiimote: add support for Guitar-Hero devices (Benjamin Tissoires) [1740778]
+- [hid] usbhid: use irqsave() in USB's complete callback (Benjamin Tissoires) [1740778]
+- [hid] redragon: fix num lock and caps lock LEDs (Benjamin Tissoires) [1740778]
+- [hid] hid-ntrig: add error handling for sysfs_create_group (Benjamin Tissoires) [1740778]
+- [hid] i2c-hid: Add vddl regulator control (Benjamin Tissoires) [1740778]
+- [uapi] input: document meanings of KEY_SCREEN and KEY_ZOOM (Benjamin Tissoires) [1740778]
+- [input] synaptics-rmi4 - avoid processing unknown IRQs (Benjamin Tissoires) [1740778]
+- [input] revert "input: elantech - enable SMBus on new (2018+) systems" (Benjamin Tissoires) [1740778]
+- [input] elantech - annotate fall-through case in elantech_use_host_notify() (Benjamin Tissoires) [1740778]
+- [samples] treewide: Add SPDX license identifier - Makefile/Kconfig (Benjamin Tissoires) [1740778]
+- [kernel] input: elan_i2c - remove Lenovo Legion Y7000 PnpID (Benjamin Tissoires) [1740778]
+- [input] synaptics - enable RMI mode for HP Spectre X360 (Benjamin Tissoires) [1740778]
+- [input] elantech - enable SMBus on new (2018+) systems (Benjamin Tissoires) [1740778]
+- [input] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Benjamin Tissoires) [1740778]
+- [kernel] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 234 (Benjamin Tissoires) [1740778]
+- [input] hyperv-keyboard: Use in-place iterator API in the channel callback (Benjamin Tissoires) [1740778]
+- [input] usbtouchscreen - initialize PM mutex before using it (Benjamin Tissoires) [1740778]
+- [input] alps - fix a mismatch between a condition check and its comment (Benjamin Tissoires) [1740778]
+- [input] psmouse - fix build error of multiple definition (Benjamin Tissoires) [1740778]
+- [input] alps - don't handle ALPS cs19 trackpoint-only device (Benjamin Tissoires) [1740778]
+- [input] hyperv-keyboard - remove dependencies on PAGE_SIZE for ring buffer (Benjamin Tissoires) [1740778]
+- [input] synaptics - fix misuse of strlcpy (Benjamin Tissoires) [1740778]
+- [input] synaptics - whitelist Lenovo T580 SMBus intertouch (Benjamin Tissoires) [1740778]
+- [input] synaptics - enable SMBUS on T480 thinkpad trackpad (Benjamin Tissoires) [1740778]
+- [input] joydev - extend absolute mouse detection (Benjamin Tissoires) [1740778]
+- [kernel] input: elan_i2c - export the device id whitelist (Benjamin Tissoires) [1740778]
+- [kernel] pm: suspend: Rename pm_suspend_via_s2idle() (Benjamin Tissoires) [1740778]
+- [kernel] pm: sleep: Add kerneldoc comments to some functions (Benjamin Tissoires) [1740778]
+- [input] synaptics - enable SMBus on ThinkPad E480 and E580 (Benjamin Tissoires) [1740778]
+- [input] synaptics-rmi4 - remove set but not used variable 'sensor_flags' (Benjamin Tissoires) [1740778]
+- [input] uinput - add compat ioctl number translation for UI_*_FF_UPLOAD (Benjamin Tissoires) [1740778]
+- [input] libps2 - mark expected switch fall-through (Benjamin Tissoires) [1740778]
+- [input] synaptics-rmi4 - write config register values to the right offset (Benjamin Tissoires) [1740778]
+- [input] synaptics-rmi4 - fix enum_fmt (Benjamin Tissoires) [1740778]
+- [input] synaptics-rmi4 - fill initial format (Benjamin Tissoires) [1740778]
+- [uapi] input: add KEY_KBD_LAYOUT_NEXT (Benjamin Tissoires) [1740778]
+- [input] synaptics-rmi4 - fix possible double free (Benjamin Tissoires) [1740778]
+- [input] hyperv-keyboard - add module description (Benjamin Tissoires) [1740778]
+- [input] i8042 - signal wakeup from atkbd/psmouse (Benjamin Tissoires) [1740778]
+- [input] evdev - use struct_size() in kzalloc() and vzalloc() (Benjamin Tissoires) [1740778]
+- [input] elan_i2c - add hardware ID for multiple Lenovo laptops (Benjamin Tissoires) [1740778]
+- [input] wacom_serial4 - add support for Wacom ArtPad II tablet (Benjamin Tissoires) [1740778]
+- [input] elan_i2c - add id for touchpad found in Lenovo s21e-20 (Benjamin Tissoires) [1740778]
+- [input] i8042 - rework DT node name comparisons (Benjamin Tissoires) [1740778]
+- [input] synaptics_i2c - remove redundant spinlock (Benjamin Tissoires) [1740778]
+- [input] elan_i2c - add ACPI ID for touchpad in Lenovo V330-15ISK (Benjamin Tissoires) [1740778]
+- [input] revert "input: elan_i2c - add ACPI ID for touchpad in ASUS Aspire F5-573G" (Benjamin Tissoires) [1740778]
+- [input] elantech - enable 3rd button support on Fujitsu CELSIUS H780 (Benjamin Tissoires) [1740778]
+- [uapi] input: input_event - fix the CONFIG_SPARC64 mixup (Benjamin Tissoires) [1740778]
+- [input] uinput - fix undefined behavior in uinput_validate_absinfo() (Benjamin Tissoires) [1740778]
+- [uapi] input: input_event - provide override for sparc64 (Benjamin Tissoires) [1740778]
+- [input] soc_button_array - fix mapping of the 5th GPIO in a PNP0C40 device (Benjamin Tissoires) [1740778]
+- [input] soc_button_array - add usage-page 0x01 usage-id 0xca mapping (Benjamin Tissoires) [1740778]
+- [input] elan_i2c - add ACPI ID for touchpad in ASUS Aspire F5-573G (Benjamin Tissoires) [1740778]
+- [input] synaptics - enable SMBus for HP EliteBook 840 G4 (Benjamin Tissoires) [1740778]
+- [input] synaptics - enable RMI on ThinkPad T560 (Benjamin Tissoires) [1740778]
+- [documentation] input: add `REL_WHEEL_HI_RES` and `REL_HWHEEL_HI_RES` (Benjamin Tissoires) [1740778]
+- [uapi] input: restore EV_ABS ABS_RESERVED (Benjamin Tissoires) [1740778]
+- [input] synaptics - enable SMBus for HP 15-ay000 (Benjamin Tissoires) [1740778]
+- [input] synaptics - add PNP ID for ThinkPad P50 to SMBus (Benjamin Tissoires) [1740778]
+- [input] elan_i2c - add ACPI ID for Lenovo IdeaPad 330-15ARR (Benjamin Tissoires) [1740778]
+- [input] elan_i2c - add support for ELAN0621 touchpad (Benjamin Tissoires) [1740778]
+- [documentation] revert "input: Add the `REL_WHEEL_HI_RES` event code" (Benjamin Tissoires) [1740778]
+- [input] atkbd - clean up indentation issue (Benjamin Tissoires) [1740778]
+- [input] elan_i2c - add ELAN0620 to the ACPI table (Benjamin Tissoires) [1740778]
+- [input] synaptics - avoid using uninitialized variable when probing (Benjamin Tissoires) [1740778]
+- [input] xen-kbdfront - mark expected switch fall-through (Benjamin Tissoires) [1740778]
+- [input] elan_i2c - add ACPI ID for Lenovo IdeaPad 330-15IGM (Benjamin Tissoires) [1740778]
+- [input] of_touchscreen - add support for touchscreen-min-x|y (Benjamin Tissoires) [1740778]
+- [input] elants_i2c - use DMA safe i2c when possible (Benjamin Tissoires) [1740778]
+- [input] uinput - add a schedule point in uinput_inject_events() (Benjamin Tissoires) [1740778]
+- [input] evdev - add a schedule point in evdev_write() (Benjamin Tissoires) [1740778]
+- [input] mousedev - add a schedule point in mousedev_write() (Benjamin Tissoires) [1740778]
+- [uapi] input: reserve 2 events code because of HID (Benjamin Tissoires) [1740778]
+- [input] i8042 - enable keyboard wakeups by default when s2idle is used (Benjamin Tissoires) [1740778]
+- [input] uinput - allow for max == min during input_absinfo validation (Benjamin Tissoires) [1740778]
+- [input] atakbd - fix Atari CapsLock behaviour (Benjamin Tissoires) [1740778]
+- [input] atakbd - fix Atari keymap (Benjamin Tissoires) [1740778]
+- [documentation] input: Add the `REL_WHEEL_HI_RES` event code (Benjamin Tissoires) [1740778]
+- [input] mark expected switch fall-throughs (Benjamin Tissoires) [1740778]
+- [input] evdev - switch to bitmap API (Benjamin Tissoires) [1740778]
+- [input] elan_i2c_smbus - cast sizeof to int for comparison (Benjamin Tissoires) [1740778]
+- [uapi] input: stop telling users to snail-mail Vojtech (Benjamin Tissoires) [1740778]
+- [documentation] input: add MT_TOOL_DIAL (Benjamin Tissoires) [1740778]
+- [input] i8042 - increment wakeup_count for the respective port (Benjamin Tissoires) [1740778]
+- [input] xen-kbdfront - allow better run-time configuration (Benjamin Tissoires) [1740778]
+- [xen] Sync up with the canonical protocol definitions in Xen (Benjamin Tissoires) [1740778]
+- [cpufreq] dev_pm_qos_update_request() can return 1 on success (Al Stone) [1739729 1725581]
+- [cpufreq] Make cpufreq_generic_init() return void (Al Stone) [1739729 1725581]
+- [cpufreq] Add QoS requests for userspace constraints (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Reuse refresh_frequency_limits() (Al Stone) [1739729 1725581]
+- [cpufreq] Register notifiers with the PM QoS framework (Al Stone) [1739729 1725581]
+- [base] pm / qos: Add support for MIN/MAX frequency constraints (Al Stone) [1739729 1725581]
+- [base] pm / qos: Pass request type to dev_pm_qos_read_value() (Al Stone) [1739729 1725581]
+- [base] pm / qos: Rename __dev_pm_qos_read_value() and dev_pm_qos_raw_read_value() (Al Stone) [1739729 1725581]
+- [base] pm / qos: Pass request type to dev_pm_qos_{add|remove}_notifier() (Al Stone) [1739729 1725581]
+- [cpufreq] Avoid calling cpufreq_verify_current_freq() from handle_update() (Al Stone) [1739729 1725581]
+- [cpufreq] Consolidate cpufreq_update_current_freq() and __cpufreq_get() (Al Stone) [1739729 1725581]
+- [cpufreq] Don't skip frequency validation for has_target() drivers (Al Stone) [1739729 1725581]
+- [cpufreq] Use has_target() instead of !setpolicy (Al Stone) [1739729 1725581]
+- [cpufreq] Remove redundant !setpolicy check (Al Stone) [1739729 1725581]
+- [kernel] cpufreq: Move the IS_ENABLED(CPU_THERMAL) macro into a stub (Al Stone) [1739729 1725581]
+- [opp] Don't use IS_ERR on invalid supplies (Al Stone) [1739729 1725581]
+- [kernel] pm: sleep: Update struct wakeup_source documentation (Al Stone) [1739729 1725581]
+- [base] base: power: remove wakeup_sources_stats_dentry variable (Al Stone) [1739729 1725581]
+- [cpufreq] pcc-cpufreq: Fail initialization if driver cannot be registered (Al Stone) [1739729 1725581]
+- [opp] Make dev_pm_opp_set_rate() handle freq = 0 to drop performance votes (Al Stone) [1739729 1725581]
+- [opp] Don't overwrite rounded clk rate (Al Stone) [1739729 1725581]
+- [base] pm: sleep: Show how long dpm_suspend_start() and dpm_suspend_end() take (Al Stone) [1739729 1725581]
+- [base] pm / clk: Remove error message on out-of-memory condition (Al Stone) [1739729 1725581]
+- [base] base: power: clock_ops: Use of_clk_get_parent_count() (Al Stone) [1739729 1725581]
+- [opp] Allocate genpd_virt_devs from dev_pm_opp_attach_genpd() (Al Stone) [1739729 1725581]
+- [opp] Attach genpds to devices from within OPP core (Al Stone) [1739729 1725581]
+- [base] pm / domains: Add GENPD_FLAG_RPM_ALWAYS_ON flag (Al Stone) [1739729 1725581]
+- [cpufreq] Don't find governor for setpolicy drivers in cpufreq_init_policy() (Al Stone) [1739729 1725581]
+- [cpufreq] Explain the kobject_put() in cpufreq_policy_alloc() (Al Stone) [1739729 1725581]
+- [x86] cpufreq: Call transition notifier only once for each policy (Al Stone) [1739729 1725581]
+- [cpufreq] Fix kobject memleak (Al Stone) [1739729 1725581]
+- [cpufreq] centrino: Fix centrino_setpolicy() kerneldoc comment (Al Stone) [1739729 1725581]
+- [base] pm / domains: Allow to attach a CPU via genpd_dev_pm_attach_by_id|name() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Search for the CPU device outside the genpd lock (Al Stone) [1739729 1725581]
+- [base] pm / domains: Drop unused in-parameter to some genpd functions (Al Stone) [1739729 1725581]
+- [base] pm / domains: Use the base device for driver_deferred_probe_check_state() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Enable genpd_dev_pm_attach_by_id|name() for single PM domain (Al Stone) [1739729 1725581]
+- [base] pm / domains: Allow OF lookup for multi PM domain case from ->attach_dev() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Don't kfree() the virtual device in the error path (Al Stone) [1739729 1725581]
+- [cpufreq] Move ->get callback check outside of __cpufreq_get() (Al Stone) [1739729 1725581]
+- [x86] tsc: Rework time_cpufreq_notifier() (Al Stone) [1739729 1725581]
+- [x86] tsc: Fix UV TSC initialization (Al Stone) [1739729 1725581]
+- [x86] tsc: Prevent result truncation on 32bit (Al Stone) [1739729 1725581]
+- [x86] tsc: Consolidate init code (Al Stone) [1739729 1725581]
+- [x86] tsc: Make use of tsc_calibrate_cpu_early() (Al Stone) [1739729 1725581]
+- [x86] tsc: Split native_calibrate_cpu() into early and late parts (Al Stone) [1739729 1725581]
+- [x86] tsc: Use TSC as sched clock early (Al Stone) [1739729 1725581]
+- [x86] tsc: Initialize cyc2ns when tsc frequency is determined (Al Stone) [1739729 1725581]
+- [x86] tsc: Calibrate tsc only once (Al Stone) [1739729 1725581]
+- [x86] tsc: Redefine notsc to behave as tsc=unstable (Al Stone) [1739729 1725581]
+- [x86] platform/uv: Provide is_early_uv_system() (Al Stone) [1739729 1725581]
+- [base] pm / domains: remove unnecessary unlikely() (Al Stone) [1739729 1725581]
+- [cpufreq] Remove needless bios_limit check in show_bios_limit() (Al Stone) [1739729 1725581]
+- [cpufreq] cpufreq/acpi-cpufreq.c: This fixes the following checkpatch warning (Al Stone) [1739729 1725581]
+- [base] pm / core: Propagate dev->power.wakeup_path when no callbacks (Al Stone) [1739729 1725581]
+- [base] pm / domains: Add genpd governor for CPUs (Al Stone) [1739729 1725581]
+- [cpuidle] Export the next timer expiration for CPUs (Al Stone) [1739729 1725581]
+- [base] pm / core: Introduce dpm_async_fn() helper (Al Stone) [1739729 1725581]
+- [cpufreq] boost: Remove CONFIG_CPU_FREQ_BOOST_SW Kconfig option (Al Stone) [1739729 1725581]
+- [opp] Introduce dev_pm_opp_find_freq_ceil_by_volt() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Add support for CPU devices to genpd (Al Stone) [1739729 1725581]
+- [base] pm / domains: Add generic data pointer to struct genpd_power_state (Al Stone) [1739729 1725581]
+- [cpufreq] rhel: cpufreq: switch printk users from pf and pF to ps and pS, respectively (Al Stone) [1739729 1725581]
+- [base] pm / core: fix kerneldoc comment for device_pm_wait_for_dev() (Al Stone) [1739729 1725581]
+- [base] pm / core: fix kerneldoc comment for dpm_watchdog_handler() (Al Stone) [1739729 1725581]
+- [cpufreq] stats: Use lock by stat to replace global spin lock (Al Stone) [1739729 1725581]
+- [cpufreq] Remove cpufreq_driver check in cpufreq_boost_supported() (Al Stone) [1739729 1725581]
+- [cpufreq] ppc_cbe: fix possible object reference leak (Al Stone) [1739729 1725581]
+- [cpufreq] cpufreq: Convert some slow-path static_cpu_has() callers to boot_cpu_has() (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Update max frequency on global turbo changes (Al Stone) [1739729 1725581]
+- [base] pm / wakeup: Use pm_pr_dbg() instead of pr_debug() (Al Stone) [1739729 1725581]
+- [cpufreq] Add cpufreq_cpu_acquire() and cpufreq_cpu_release() (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Driver-specific handling of _PPC updates (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Load only on Intel hardware (Al Stone) [1739729 1725581]
+- [cpufreq] scpi: Fix use after free (Al Stone) [1739729 1725581]
+- [base] pm / domains: Avoid a potential deadlock (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Fix up iowait_boost computation (Al Stone) [1739729 1725581]
+- [opp] pm / opp: Update performance state when freq == old_freq (Al Stone) [1739729 1725581]
+- [base] pm / wakeup: Drop wakeup_source_drop() (Al Stone) [1739729 1725581]
+- [base] pm / wakeup: Rework wakeup source timer cancellation (Al Stone) [1739729 1725581]
+- [base] pm / domains: Remove one unnecessary blank line (Al Stone) [1739729 1725581]
+- [base] pm / domains: Return early for all errors in _genpd_power_off() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Improve warn for multiple states but no governor (Al Stone) [1739729 1725581]
+- [opp] Fix handling of multiple power domains (Al Stone) [1739729 1725581]
+- [base] pm / qos: Fix typo in file description (Al Stone) [1739729 1725581]
+- [base] pm-runtime: Call pm_runtime_active|suspended_time() from sysfs (Al Stone) [1739729 1725581]
+- [base] pm-runtime: Consolidate code to get active/suspended time (Al Stone) [1739729 1725581]
+- [base] pm: Add and use pr_fmt() (Al Stone) [1739729 1725581]
+- [cpufreq] Improve kerneldoc comments for cpufreq_cpu_get/put() (Al Stone) [1739729 1725581]
+- [cpufreq] acpi-cpufreq: Report if CPU doesn't support boost technologies (Al Stone) [1739729 1725581]
+- [base] driver core: Fix PM-runtime for links added during consumer probe (Al Stone) [1739729 1725581]
+- [cpufreq] Pass updated policy to driver ->setpolicy() callback (Al Stone) [1739729 1725581]
+- [cpufreq] Fix two debug messages in cpufreq_set_policy() (Al Stone) [1739729 1725581]
+- [cpufreq] Reorder and simplify cpufreq_update_policy() (Al Stone) [1739729 1725581]
+- [cpufreq] Add kerneldoc comments for two core functions (Al Stone) [1739729 1725581]
+- [cpufreq] scmi: Fix use-after-free in scmi_cpufreq_exit() (Al Stone) [1739729 1725581]
+- [kernel] pm / core: Add support to skip power management in device/driver model (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Rework iowait boosting to be less aggressive (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Eliminate intel_pstate_get_base_pstate() (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Avoid redundant initialization of local vars (Al Stone) [1739729 1725581]
+- [cpufreq] cpufreq / cppc: Work around for Hisilicon CPPC cpufreq (Al Stone) [1739729 1725581]
+- [cpufreq] speedstep: convert BUG() to BUG_ON() (Al Stone) [1739729 1725581]
+- [cpufreq] powernv: fix missing check of return value in init_powernv_pstates() (Al Stone) [1739729 1725581]
+- [cpufreq] pcc-cpufreq: remove unneeded semicolon (Al Stone) [1739729 1725581]
+- [kernel] pm / domains: Mark "name" const in dev_pm_domain_attach_by_name() (Al Stone) [1739729 1725581]
+- [kernel] pm / domains: Mark "name" const in genpd_dev_pm_attach_by_name() (Al Stone) [1739729 1725581]
+- [cpufreq] Replace double NOT (!!) with single NOT (!) (Al Stone) [1739729 1725581]
+- [base] pm / suspend: Print debug messages for device using direct-complete (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Add reasons for failure and debug messages (Al Stone) [1739729 1725581]
+- [base] driver core: Fix possible supplier PM-usage counter imbalance (Al Stone) [1739729 1725581]
+- [base] pm-runtime: Fix __pm_runtime_set_status() race with runtime resume (Al Stone) [1739729 1725581]
+- [cpufreq] dt: Implement online/offline() callbacks (Al Stone) [1739729 1725581]
+- [cpufreq] Allow light-weight tear down and bring up of CPUs (Al Stone) [1739729 1725581]
+- [base] pm-runtime: Take suppliers into account in __pm_runtime_set_status() (Al Stone) [1739729 1725581]
+- [opp] no need to check return value of debugfs_create functions (Al Stone) [1739729 1725581]
+- [cpufreq] scmi: Register an Energy Model (Al Stone) [1739729 1725581]
+- [opp] pm / opp: Introduce a power estimation helper (Al Stone) [1739729 1725581]
+- [opp] pm / opp: Remove unused parameter of _generic_set_opp_clk_only() (Al Stone) [1739729 1725581]
+- [cpufreq] scpi: Register an Energy Model (Al Stone) [1739729 1725581]
+- [cpufreq] dt: Register an Energy Model (Al Stone) [1739729 1725581]
+- [cpufreq] stats: Fix concurrency issues while resetting stats (Al Stone) [1739729 1725581]
+- [cpufreq] stats: Declare freq-attr right after their callbacks (Al Stone) [1739729 1725581]
+- [base] driver core: Do not call rpm_put_suppliers() in pm_runtime_drop_link() (Al Stone) [1739729 1725581]
+- [base] driver core: Fix handling of runtime PM flags in device_link_add() (Al Stone) [1739729 1725581]
+- [base] driver core: Do not resume suppliers under device_links_write_lock() (Al Stone) [1739729 1725581]
+- [base] driver core: Avoid careless re-use of existing device links (Al Stone) [1739729 1725581]
+- [base] driver core: Fix DL_FLAG_AUTOREMOVE_SUPPLIER device link flag handling (Al Stone) [1739729 1725581]
+- [base] driver core: Add flag to autoremove device link on supplier unbind (Al Stone) [1739729 1725581]
+- [base] driver core: Rename flag AUTOREMOVE to AUTOREMOVE_CONSUMER (Al Stone) [1739729 1725581]
+- [base] pm-runtime: update accounting_timestamp on enable (Al Stone) [1739729 1725581]
+- [cpufreq] scpi: Use auto-registration of thermal cooling device (Al Stone) [1739729 1725581]
+- [cpufreq] scmi: Use auto-registration of thermal cooling device (Al Stone) [1739729 1725581]
+- [cpufreq] cpufreq-dt: Use auto-registration of thermal cooling device (Al Stone) [1739729 1725581]
+- [cpufreq] Auto-register the driver as a thermal cooling device if asked (Al Stone) [1739729 1725581]
+- [cpufreq] thermal: cpu_cooling: Require thermal core to be compiled in (Al Stone) [1739729 1725581]
+- [cpufreq] Use struct kobj_attribute instead of struct global_attr (Al Stone) [1739729 1725581]
+- [base] pm / wakeup: fix kerneldoc comment for pm_wakeup_dev_event() (Al Stone) [1739729 1725581]
+- [base] pm: domains: no need to check return value of debugfs_create functions (Al Stone) [1739729 1725581]
+- [opp] Add support for parsing the 'opp-level' property (Al Stone) [1739729 1725581]
+- [kernel] cpufreq: Replace open-coded << with BIT() (Al Stone) [1739729 1725581]
+- [base] pm: clock_ops: fix missing clk_prepare() return value check (Al Stone) [1739729 1725581]
+- [cpufreq] e_powersaver: Use struct_size() in kzalloc() (Al Stone) [1739729 1725581]
+- [cpufreq] Don't update new_policy on failures (Al Stone) [1739729 1725581]
+- [cpufreq] scmi: Fix frequency invariance in slow path (Al Stone) [1739729 1725581]
+- [cpufreq] check if policy is inactive early in __cpufreq_get() (Al Stone) [1739729 1725581]
+- [opp] cpufreq: scpi/scmi: Fix freeing of dynamic OPPs (Al Stone) [1739729 1725581]
+- [base] pm: sleep: call devfreq suspend/resume (Al Stone) [1739729 1725581]
+- [devfreq] pm / devfreq: add devfreq_suspend/resume() functions (Al Stone) [1739729 1725581]
+- [base] pm / domains: remove define_genpd_open_function() and define_genpd_debugfs_fops() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Propagate performance state updates (Al Stone) [1739729 1725581]
+- [base] pm / domains: Factorize dev_pm_genpd_set_performance_state() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Save OPP table pointer in genpd (Al Stone) [1739729 1725581]
+- [opp] Don't return 0 on error from of_get_required_opp_performance_state() (Al Stone) [1739729 1725581]
+- [opp] Add dev_pm_opp_xlate_performance_state() helper (Al Stone) [1739729 1725581]
+- [opp] Improve _find_table_of_opp_np() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Make genpd performance states orthogonal to the idlestates (Al Stone) [1739729 1725581]
+- [opp] Fix missing debugfs supply directory for OPPs (Al Stone) [1739729 1725581]
+- [opp] Use opp_table->regulators to verify no regulator case (Al Stone) [1739729 1725581]
+- [base] pm: Switch to use ptR (Al Stone) [1739729 1725581]
+- [cpufreq] powernv: add of_node_put() (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Force HWP min perf before offline (Al Stone) [1739729 1725581]
+- [cpufreq] cpufreq: change CONFIG_6xx to CONFIG_PPC_BOOK3S_32 (Al Stone) [1739729 1725581]
+- [opp] Fix parsing of multiple phandles in "operating-points-v2" property (Al Stone) [1739729 1725581]
+- [opp] Remove of_dev_pm_opp_find_required_opp() (Al Stone) [1739729 1725581]
+- [base] opp: Rename and relocate of_genpd_opp_to_performance_state() (Al Stone) [1739729 1725581]
+- [opp] Configure all required OPPs (Al Stone) [1739729 1725581]
+- [opp] Add dev_pm_opp_{set|put}_genpd_virt_dev() helper (Al Stone) [1739729 1725581]
+- [base] pm / domains: Add genpd_opp_to_performance_state() (Al Stone) [1739729 1725581]
+- [opp] Populate OPPs from "required-opps" property (Al Stone) [1739729 1725581]
+- [opp] Populate required opp tables from "required-opps" property (Al Stone) [1739729 1725581]
+- [opp] Separate out custom OPP handler specific code (Al Stone) [1739729 1725581]
+- [opp] Identify and mark genpd OPP tables (Al Stone) [1739729 1725581]
+- [base] pm / domains: Rename genpd virtual devices as virt_dev (Al Stone) [1739729 1725581]
+- [cpufreq] remove unused arm_big_little_dt driver (Al Stone) [1739729 1725581]
+- [cpufreq] drop ARM_BIG_LITTLE_CPUFREQ support for ARM64 (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: Fix compilation for !CONFIG_ACPI (Al Stone) [1739729 1725581]
+- [base] pm / domains: Deal with multiple states but no governor in genpd (Al Stone) [1739729 1725581]
+- [base] pm / domains: Don't treat zero found compatible idle states as an error (Al Stone) [1739729 1725581]
+- [cpufreq] conservative: Take limits changes into account properly (Al Stone) [1739729 1725581]
+- [opp] pm / opp: _of_add_opp_table_v2(): increment count only if OPP is added (Al Stone) [1739729 1725581]
+- [cpufreq] dt: Try freeing static OPPs only if we have added them (Al Stone) [1739729 1725581]
+- [opp] Return error on error from dev_pm_opp_get_opp_count() (Al Stone) [1739729 1725581]
+- [opp] Improve error handling in dev_pm_opp_of_cpumask_add_table() (Al Stone) [1739729 1725581]
+- [cpufreq] cpufreq / cppc: Mark acpi_ids as used (Al Stone) [1739729 1725581]
+- [opp] Pass OPP table to _of_add_opp_table_v{1|2}() (Al Stone) [1739729 1725581]
+- [opp] Prevent creating multiple OPP tables for devices sharing OPP nodes (Al Stone) [1739729 1725581]
+- [opp] Use a single mechanism to free the OPP table (Al Stone) [1739729 1725581]
+- [opp] Don't remove dynamic OPPs from _dev_pm_opp_remove_table() (Al Stone) [1739729 1725581]
+- [opp] Create separate kref for static OPPs list (Al Stone) [1739729 1725581]
+- [opp] Don't take OPP table's kref for static OPPs (Al Stone) [1739729 1725581]
+- [opp] Parse OPP table's DT properties from _of_init_opp_table() (Al Stone) [1739729 1725581]
+- [opp] Pass index to _of_init_opp_table() (Al Stone) [1739729 1725581]
+- [opp] Protect dev_list with opp_table lock (Al Stone) [1739729 1725581]
+- [opp] Don't try to remove all OPP tables on failure (Al Stone) [1739729 1725581]
+- [opp] Free OPP table properly on performance state irregularities (Al Stone) [1739729 1725581]
+- [cpufreq] Convert to using pOFn instead of device_node.name (Al Stone) [1739729 1725581]
+- [cpufreq] remove unnecessary unlikely() (Al Stone) [1739729 1725581]
+- [base] pm / clk: signedness bug in of_pm_clk_add_clks() (Al Stone) [1739729 1725581]
+- [trace] cpufreq: trace frequency limits change (Al Stone) [1739729 1725581]
+- [cpufreq] pcc-cpufreq: Disable dynamic scaling on many-CPU systems (Al Stone) [1739729 1725581]
+- [base] pm / domains: Stop deferring probe at the end of initcall (Al Stone) [1739729 1725581]
+- [base] driver: core: Allow subsystems to continue deferring probe (Al Stone) [1739729 1725581]
+- [base] driver core: allow stopping deferred probe after init (Al Stone) [1739729 1725581]
+- [base] driver core: add a debugfs entry to show deferred devices (Al Stone) [1739729 1725581]
+- [base] pm / domains: Introduce dev_pm_domain_attach_by_name() (Al Stone) [1739729 1725581]
+- [base] pm / domains: Introduce option to attach a device by name to genpd (Al Stone) [1739729 1725581]
+- [cpufreq] intel_pstate: use match_string() helper (Al Stone) [1739729 1725581]
+- [fs] ceph: use ceph_evict_inode to cleanup inode's resource (Jeff Layton) [1767959]
+- [fs] ceph: return -EINVAL if given fsc mount option on kernel w/o support (Jeff Layton) [1767959]
+- [fs] ceph: don't try to handle hashed dentries in non-O_CREAT atomic_open (Jeff Layton) [1767959]
+- [fs] ceph: add missing check in d_revalidate snapdir handling (Jeff Layton) [1767959]
+- [fs] ceph: fix RCU case handling in ceph_d_revalidate() (Jeff Layton) [1767959]
+- [fs] ceph: fix use-after-free in __ceph_remove_cap() (Jeff Layton) [1767959]
+- [block] rbd: cancel lock_dwork if the wait is interrupted (Jeff Layton) [1767959]
+- [fs] ceph: just skip unrecognized info in ceph_reply_info_extra (Jeff Layton) [1767959]
+- [fs] ceph: call ceph_mdsc_destroy from destroy_fs_client (Jeff Layton) [1767959]
+- [net] libceph: use ceph_kvmalloc() for osdmap arrays (Jeff Layton) [1767959]
+- [net] libceph: avoid a __vmalloc() deadlock in ceph_kvmalloc() (Jeff Layton) [1767959]
+- [fs] ceph: include ceph_debug.h in cache.c (Jeff Layton) [1767959]
+- [fs] ceph: move static keyword to the front of declarations (Jeff Layton) [1767959]
+- [block] rbd: pull rbd_img_request_create() dout out into the callers (Jeff Layton) [1767959]
+- [fs] ceph: reconnect connection if session hang in opening state (Jeff Layton) [1767959]
+- [net] libceph: drop unused con parameter of calc_target() (Jeff Layton) [1767959]
+- [fs] ceph: use release_pages() directly (Jeff Layton) [1767959]
+- [block] rbd: fix response length parameter for encoded strings (Jeff Layton) [1767959]
+- [fs] ceph: allow arbitrary security.* xattrs (Jeff Layton) [1767959]
+- [fs] ceph: only set CEPH_I_SEC_INITED if we got a MAC label (Jeff Layton) [1767959]
+- [fs] ceph: turn ceph_security_invalidate_secctx into static inline (Jeff Layton) [1767959]
+- [fs] ceph: add buffered/direct exclusionary locking for reads and writes (Jeff Layton) [1767959]
+- [net] libceph: handle OSD op ceph_pagelist_append() errors (Jeff Layton) [1767959]
+- [fs] ceph: don't return a value from void function (Jeff Layton) [1767959]
+- [fs] ceph: don't freeze during write page faults (Jeff Layton) [1767959]
+- [fs] ceph: update the mtime when truncating up (Jeff Layton) [1767959]
+- [fs] ceph: fix indentation in __get_snap_name() (Jeff Layton) [1767959]
+- [fs] ceph: remove incorrect comment above __send_cap (Jeff Layton) [1767959]
+- [fs] ceph: remove CEPH_I_NOFLUSH (Jeff Layton) [1767959]
+- [fs] ceph: remove unneeded test in try_flush_caps (Jeff Layton) [1767959]
+- [fs] ceph: have __mark_caps_flushing return flush_tid (Jeff Layton) [1767959]
+- [fs] ceph: fix comments over ceph_add_cap (Jeff Layton) [1767959]
+- [fs] ceph: eliminate session->s_trim_caps (Jeff Layton) [1767959]
+- [fs] ceph: fetch cap_gen under spinlock in ceph_add_cap (Jeff Layton) [1767959]
+- [fs] ceph: remove ceph_get_cap_mds and __ceph_get_cap_mds (Jeff Layton) [1767959]
+- [fs] ceph: don't SetPageError on writepage errors (Jeff Layton) [1767959]
+- [fs] ceph: auto reconnect after blacklisted (Jeff Layton) [1767959]
+- [fs] ceph: invalidate all write mode filp after reconnect (Jeff Layton) [1767959]
+- [fs] ceph: return -EIO if read/write against filp that lost file locks (Jeff Layton) [1767959]
+- [fs] ceph: add helper function that forcibly reconnects to ceph cluster (Jeff Layton) [1767959]
+- [fs] ceph: pass filp to ceph_get_caps() (Jeff Layton) [1767959]
+- [fs] ceph: track and report error of async metadata operation (Jeff Layton) [1767959]
+- [fs] ceph: allow closing session in restarting/reconnect state (Jeff Layton) [1767959]
+- [net] libceph: add function that clears osd client's abort_err (Jeff Layton) [1767959]
+- [net] libceph: add function that reset client's entity addr (Jeff Layton) [1767959]
+- [fs] ceph: don't list vxattrs in listxattr() (Jeff Layton) [1767959]
+- [fs] ceph: fix directories inode i_blkbits initialization (Jeff Layton) [1767959]
+- [block] rbd: restore zeroing past the overlap when reading from parent (Jeff Layton) [1767959]
+- [net] libceph: don't call crypto_free_sync_skcipher() on a NULL tfm (Jeff Layton) [1767959]
+- [net] libceph: fix PG split vs OSD (re)connect race (Jeff Layton) [1767959]
+- [fs] ceph: don't try fill file_lock on unsuccessful GETFILELOCK reply (Jeff Layton) [1767959]
+- [fs] ceph: clear page dirty before invalidate page (Jeff Layton) [1767959]
+- [fs] ceph: fix buffer free while holding i_ceph_lock in fill_inode() (Jeff Layton) [1767959]
+- [fs] ceph: fix buffer free while holding i_ceph_lock in __ceph_build_xattrs_blob() (Jeff Layton) [1767959]
+- [fs] ceph: fix buffer free while holding i_ceph_lock in __ceph_setxattr() (Jeff Layton) [1767959]
+- [kernel] libceph: allow ceph_buffer_put() to receive a NULL ceph_buffer (Jeff Layton) [1767959]
+- [fs] ceph: fix end offset in truncate_inode_pages_range call (Jeff Layton) [1767959]
+- [fs] ceph: initialize superblock s_time_gran to 1 (Jeff Layton) [1767959]
+- [block] rbd: setallochint only if object doesn't exist (Jeff Layton) [1767959]
+- [block] rbd: support for object-map and fast-diff (Jeff Layton) [1767959]
+- [block] rbd: call rbd_dev_mapping_set() from rbd_dev_image_probe() (Jeff Layton) [1767959]
+- [net] libceph: export osd_req_op_data() macro (Jeff Layton) [1767959]
+- [net] libceph: change ceph_osdc_call() to take page vector for response (Jeff Layton) [1767959]
+- [kernel] libceph: bump CEPH_MSG_MAX_DATA_LEN (again) (Jeff Layton) [1767959]
+- [block] rbd: new exclusive lock wait/wake code (Jeff Layton) [1767959]
+- [block] rbd: quiescing lock should wait for image requests (Jeff Layton) [1767959]
+- [block] rbd: lock should be quiesced on reacquire (Jeff Layton) [1767959]
+- [block] rbd: introduce copyup state machine (Jeff Layton) [1767959]
+- [block] rbd: rename rbd_obj_setup_*() to rbd_obj_init_*() (Jeff Layton) [1767959]
+- [block] rbd: move OSD request allocation into object request state machines (Jeff Layton) [1767959]
+- [block] rbd: factor out __rbd_osd_setup_discard_ops() (Jeff Layton) [1767959]
+- [block] rbd: factor out rbd_osd_setup_copyup() (Jeff Layton) [1767959]
+- [block] rbd: introduce obj_req->osd_reqs list (Jeff Layton) [1767959]
+- [fs] libceph: rename r_unsafe_item to r_private_item (Jeff Layton) [1767959]
+- [block] rbd: introduce image request state machine (Jeff Layton) [1767959]
+- [block] rbd: move OSD request submission into object request state machines (Jeff Layton) [1767959]
+- [block] rbd: get rid of RBD_OBJ_WRITE_{FLAT, GUARD} (Jeff Layton) [1767959]
+- [block] rbd: replace obj_req->tried_parent with obj_req->read_state (Jeff Layton) [1767959]
+- [block] rbd: get rid of obj_req->xferred, obj_req->result and img_req->xferred (Jeff Layton) [1767959]
+- [fs] ceph: don't NULL terminate virtual xattrs (Jeff Layton) [1767959]
+- [fs] ceph: return -ERANGE if virtual xattr value didn't fit in buffer (Jeff Layton) [1767959]
+- [fs] ceph: make getxattr_cb return ssize_t (Jeff Layton) [1767959]
+- [fs] ceph: more precise CEPH_CLIENT_CAPS_PENDING_CAPSNAP (Jeff Layton) [1767959]
+- [fs] ceph: kick flushing and flush snaps before sending normal cap message (Jeff Layton) [1767959]
+- [fs] ceph: clear CEPH_I_KICK_FLUSH flag inside __kick_flushing_caps() (Jeff Layton) [1767959]
+- [fs] ceph: increment change_attribute on local changes (Jeff Layton) [1767959]
+- [fs] ceph: handle change_attr in cap messages (Jeff Layton) [1767959]
+- [fs] ceph: add change_attr field to ceph_inode_info (Jeff Layton) [1767959]
+- [kernel] iversion: add a routine to update a raw value with a larger one (Jeff Layton) [1767959]
+- [fs] ceph: allow querying of STATX_BTIME in ceph_getattr (Jeff Layton) [1767959]
+- [kernel] libceph: turn on CEPH_FEATURE_MSG_ADDR2 (Jeff Layton) [1767959]
+- [fs] ceph: handle btime in cap messages (Jeff Layton) [1767959]
+- [fs] ceph: add btime field to ceph_inode_info (Jeff Layton) [1767959]
+- [net] libceph: rename ceph_encode_addr to ceph_encode_banner_addr (Jeff Layton) [1767959]
+- [net] libceph: use TYPE_LEGACY for entity addrs instead of TYPE_NONE (Jeff Layton) [1767959]
+- [net] ceph: fix decode_locker to use ceph_decode_entity_addr (Jeff Layton) [1767959]
+- [fs] ceph: have MDS map decoding use entity_addr_t decoder (Jeff Layton) [1767959]
+- [net] libceph: correctly decode ADDR2 addresses in incremental OSD maps (Jeff Layton) [1767959]
+- [net] libceph: fix watch_item_t decoding to use ceph_decode_entity_addr (Jeff Layton) [1767959]
+- [net] libceph: switch osdmap decoding to use ceph_decode_entity_addr (Jeff Layton) [1767959]
+- [net] libceph: ADDR2 support for monmap (Jeff Layton) [1767959]
+- [net] libceph: add ceph_decode_entity_addr (Jeff Layton) [1767959]
+- [net] libceph: fix sa_family just after reading address (Jeff Layton) [1767959]
+- [fs] ceph: remove request from waiting list before unregister (Jeff Layton) [1767959]
+- [fs] ceph: don't blindly unregister session that is in opening state (Jeff Layton) [1767959]
+- [fs] ceph: fix infinite loop in get_quota_realm() (Jeff Layton) [1767959]
+- [fs] ceph: add selinux support (Jeff Layton) [1767959]
+- [fs] ceph: rename struct ceph_acls_info to ceph_acl_sec_ctx (Jeff Layton) [1767959]
+- [fs] ceph: fix debug print format in __set_xattr() (Jeff Layton) [1767959]
+- [fs] ceph: fix warning PTR_ERR_OR_ZERO can be used (Jeff Layton) [1767959]
+- [fs] ceph: hold i_ceph_lock when removing caps for freeing inode (Jeff Layton) [1767959]
+- [fs] ceph: ensure d_name/d_parent stability in ceph_mdsc_lease_send_msg() (Jeff Layton) [1767959]
+- [fs] ceph: use READ_ONCE to access d_parent in RCU critical section (Jeff Layton) [1767959]
+- [fs] ceph: fix dir_lease_is_valid() (Jeff Layton) [1767959]
+- [fs] ceph: close race between d_name_cmp() and update_dentry_lease() (Jeff Layton) [1767959]
+- [fs] ceph: fix improper use of smp_mb__before_atomic() (Jeff Layton) [1767959]
+- [fs] ceph: fix "ceph.dir.rctime" vxattr value (Jeff Layton) [1767959]
+- [fs] ceph: remove unused vxattr length helpers (Jeff Layton) [1767959]
+- [fs] ceph: fix listxattr vxattr buffer length calculation (Jeff Layton) [1767959]
+- [fs] ceph: add ceph.snap.btime vxattr (Jeff Layton) [1767959]
+- [fs] ceph: carry snapshot creation time with inodes (Jeff Layton) [1767959]
+- [fs] ceph: clean up ceph.dir.pin vxattr name sizeof() (Jeff Layton) [1767959]
+- [fs] ceph: silence a checker warning in mdsc_show() (Jeff Layton) [1767959]
+- [net] libceph: remove ceph_get_direct_page_vector() (Jeff Layton) [1767959]
+- [fs] ceph: don't open-code the check for dead lockref (Jeff Layton) [1767959]
+- [net] ceph: no need to check return value of debugfs_create functions (Jeff Layton) [1767959]
+- [fs] ceph: fix ceph_mdsc_build_path to not stop on first component (Jeff Layton) [1767959]
+- [fs] ceph: fix error handling in ceph_get_caps() (Jeff Layton) [1767959]
+- [fs] ceph: avoid iput_final() while holding mutex or in dispatch thread (Jeff Layton) [1767959]
+- [fs] ceph: single workqueue for inode related works (Jeff Layton) [1767959]
+- [fs] ceph: flush dirty inodes before proceeding with remount (Jeff Layton) [1767959]
+- [fs] ceph: fix unaligned access in ceph_send_cap_releases (Jeff Layton) [1767959]
+- [net] libceph: make ceph_pr_addr take an struct ceph_entity_addr pointer (Jeff Layton) [1767959]
+- [net] libceph: fix unaligned accesses in ceph_entity_addr handling (Jeff Layton) [1767959]
+- [block] rbd: don't assert on writes to snapshots (Jeff Layton) [1767959]
+- [block] rbd: client_mutex is never nested (Jeff Layton) [1767959]
+- [fs] ceph: print inode number in __caps_issued_mask debugging messages (Jeff Layton) [1767959]
+- [fs] ceph: just call get_session in __ceph_lookup_mds_session (Jeff Layton) [1767959]
+- [fs] ceph: simplify arguments and return semantics of try_get_cap_refs (Jeff Layton) [1767959]
+- [fs] ceph: fix comment over ceph_drop_caps_for_unlink (Jeff Layton) [1767959]
+- [fs] ceph: move wait for mds request into helper function (Jeff Layton) [1767959]
+- [fs] ceph: have ceph_mdsc_do_request call ceph_mdsc_submit_request (Jeff Layton) [1767959]
+- [fs] ceph: after an MDS request, do callback and completions (Jeff Layton) [1767959]
+- [fs] ceph: use pathlen values returned by set_request_path_attr (Jeff Layton) [1767959]
+- [fs] ceph: use __getname/__putname in ceph_mdsc_build_path (Jeff Layton) [1767959]
+- [fs] ceph: use ceph_mdsc_build_path instead of clone_dentry_name (Jeff Layton) [1767959]
+- [fs] ceph: fix potential use-after-free in ceph_mdsc_build_path (Jeff Layton) [1767959]
+- [fs] ceph: dump granular cap info in "caps" debugfs file (Jeff Layton) [1767959]
+- [fs] ceph: make iterate_session_caps a public symbol (Jeff Layton) [1767959]
+- [fs] ceph: fix NULL pointer deref when debugging is enabled (Jeff Layton) [1767959]
+- [fs] ceph: properly handle granular statx requests (Jeff Layton) [1767959]
+- [fs] ceph: remove superfluous inode_lock in ceph_fsync (Jeff Layton) [1767959]
+- [kernel] libceph: fix clang warning for CEPH_DEFINE_OID_ONSTACK (Jeff Layton) [1767959]
+- [block] rbd: convert all rbd_assert(0) to BUG() (Jeff Layton) [1767959]
+- [block] rbd: avoid clang -Wuninitialized warning (Jeff Layton) [1767959]
+- [fs] ceph: snapshot nfs re-export (Jeff Layton) [1767959]
+- [fs] ceph: quota: fix quota subdir mounts (Jeff Layton) [1767959]
+- [fs] ceph: factor out ceph_lookup_inode() (Jeff Layton) [1767959]
+- [fs] ceph: remove duplicated filelock ref increase (Jeff Layton) [1767959]
+- [fs] ceph: fix ci->i_head_snapc leak (Jeff Layton) [1767959]
+- [fs] ceph: handle the case where a dentry has been renamed on outstanding req (Jeff Layton) [1767959]
+- [fs] ceph: ensure d_name stability in ceph_dentry_hash() (Jeff Layton) [1767959]
+- [fs] ceph: only use d_name directly when parent is locked (Jeff Layton) [1767959]
+- [fs] mark expected switch fall-throughs (Jeff Layton) [1767959]
+- [fs] ceph: fix use-after-free on symlink traversal (Jeff Layton) [1767959]
+- [net] libceph: fix breakage caused by multipage bvecs (Jeff Layton) [1767959]
+- [block] rbd: drop wait_for_latest_osdmap() (Jeff Layton) [1767959]
+- [net] libceph: wait for latest osdmap in ceph_monc_blacklist_add() (Jeff Layton) [1767959]
+- [block] rbd: set io_min, io_opt and discard_granularity to alloc_size (Jeff Layton) [1767959]
+- [block] rbd: advertise support for RBD_FEATURE_DEEP_FLATTEN (Jeff Layton) [1767959]
+- [block] rbd: whole-object write and zeroout should copyup when snapshots exist (Jeff Layton) [1767959]
+- [block] rbd: copyup with an empty snapshot context (aka deep-copyup) (Jeff Layton) [1767959]
+- [block] rbd: introduce rbd_obj_issue_copyup_ops() (Jeff Layton) [1767959]
+- [block] rbd: stop copying num_osd_ops in rbd_obj_issue_copyup() (Jeff Layton) [1767959]
+- [block] rbd: factor out __rbd_osd_req_create() (Jeff Layton) [1767959]
+- [block] rbd: clear ->xferred on error from rbd_obj_issue_copyup() (Jeff Layton) [1767959]
+- [block] rbd: remove experimental designation from kernel layering (Jeff Layton) [1767959]
+- [fs] ceph: add mount option to limit caps count (Jeff Layton) [1767959]
+- [fs] ceph: periodically trim stale dentries (Jeff Layton) [1767959]
+- [fs] ceph: delete stale dentry when last reference is dropped (Jeff Layton) [1767959]
+- [fs] ceph: remove dentry_lru file from debugfs (Jeff Layton) [1767959]
+- [fs] ceph: touch existing cap when handling reply (Jeff Layton) [1767959]
+- [fs] ceph: pass inclusive lend parameter to filemap_write_and_wait_range() (Jeff Layton) [1767959]
+- [block] rbd: round off and ignore discards that are too small (Jeff Layton) [1767959]
+- [block] rbd: handle DISCARD and WRITE_ZEROES separately (Jeff Layton) [1767959]
+- [block] rbd: get rid of obj_req->obj_request_count (Jeff Layton) [1767959]
+- [net] libceph: use struct_size() for kmalloc() in crush_decode() (Jeff Layton) [1767959]
+- [fs] ceph: send cap releases more aggressively (Jeff Layton) [1767959]
+- [fs] ceph: support getting ceph.dir.pin vxattr (Jeff Layton) [1767959]
+- [fs] ceph: support versioned reply (Jeff Layton) [1767959]
+- [fs] ceph: map snapid to anonymous bdev ID (Jeff Layton) [1767959]
+- [fs] ceph: split large reconnect into multiple messages (Jeff Layton) [1767959]
+- [fs] ceph: decode feature bits in session message (Jeff Layton) [1767959]
+- [fs] ceph: set special inode's blocksize to page size (Jeff Layton) [1767959]
+- [fs] ceph: avoid repeatedly adding inode to mdsc->snap_flush_list (Jeff Layton) [1767959]
+- [fs] ceph: quota: cleanup license mess (Jeff Layton) [1767959]
+- [net] libceph: avoid KEEPALIVE_PENDING races in ceph_con_keepalive() (Jeff Layton) [1767959]
+- [fs] ceph: clear inode pointer when snap realm gets dropped by its inode (Jeff Layton) [1767959]
+- [block] rbd: don't return 0 on unmap if RBD_DEV_FLAG_REMOVING is set (Jeff Layton) [1767959]
+- [fs] ceph: use vmf_error() in ceph_filemap_fault() (Jeff Layton) [1767959]
+- [net] libceph: allow setting abort_on_full for rbd (Jeff Layton) [1767959]
+- [fs] ceph: don't encode inode pathes into reconnect message (Jeff Layton) [1767959]
+- [fs] ceph: update wanted caps after resuming stale session (Jeff Layton) [1767959]
+- [fs] ceph: skip updating 'wanted' caps if caps are already issued (Jeff Layton) [1767959]
+- [fs] ceph: don't request excl caps when mount is readonly (Jeff Layton) [1767959]
+- [fs] ceph: don't update importing cap's mseq when handing cap export (Jeff Layton) [1767959]
+- [net] libceph: switch more to bool in ceph_tcp_sendmsg() (Jeff Layton) [1767959]
+- [net] libceph: use MSG_SENDPAGE_NOTLAST with ceph_tcp_sendpage() (Jeff Layton) [1767959]
+- [net] libceph: use sock_no_sendpage() as a fallback in ceph_tcp_sendpage() (Jeff Layton) [1767959]
+- [net] libceph: drop last_piece logic from write_partial_message_data() (Jeff Layton) [1767959]
+- [fs] ceph: remove redundant assignment (Jeff Layton) [1767959]
+- [fs] ceph: cleanup splice_dentry() (Jeff Layton) [1767959]
+- [fs] libceph: assume argonaut on the server side (Jeff Layton) [1767959]
+- [fs] ceph: quota: fix null pointer dereference in quota check (Jeff Layton) [1767959]
+- [fs] ceph: add non-blocking parameter to ceph_try_get_caps() (Jeff Layton) [1767959]
+- [net] libceph: check reply num_data_items in setup_request_data() (Jeff Layton) [1767959]
+- [net] libceph: preallocate message data items (Jeff Layton) [1767959]
+- [net] libceph, rbd, ceph: move ceph_osdc_alloc_messages() calls (Jeff Layton) [1767959]
+- [net] libceph: introduce alloc_watch_request() (Jeff Layton) [1767959]
+- [net] libceph: assign cookies in linger_submit() (Jeff Layton) [1767959]
+- [net] libceph: enable fallback to ceph_msg_new() in ceph_msgpool_get() (Jeff Layton) [1767959]
+- [fs] ceph: num_ops is off by one in ceph_aio_retry_work() (Jeff Layton) [1767959]
+- [net] libceph: no need to call osd_req_opcode_valid() in osd_req_encode_op() (Jeff Layton) [1767959]
+- [fs] ceph: set timeout conditionally in __cap_delay_requeue (Jeff Layton) [1767959]
+- [net] libceph: don't consume a ref on pagelist in ceph_msg_data_add_pagelist() (Jeff Layton) [1767959]
+- [net] libceph: introduce ceph_pagelist_alloc() (Jeff Layton) [1767959]
+- [net] libceph: osd_req_op_cls_init() doesn't need to take opcode (Jeff Layton) [1767959]
+- [kernel] libceph: bump CEPH_MSG_MAX_DATA_LEN (Jeff Layton) [1767959]
+- [fs] ceph: only allow punch hole mode in fallocate (Jeff Layton) [1767959]
+- [fs] ceph: refactor ceph_sync_read() (Jeff Layton) [1767959]
+- [fs] ceph: check if LOOKUPNAME request was aborted when filling trace (Jeff Layton) [1767959]
+- [fs] ceph: fix dentry leak in ceph_readdir_prepopulate (Jeff Layton) [1767959]
+- [fs] revert "ceph: fix dentry leak in splice_dentry()" (Jeff Layton) [1767959]
+- [fs] ceph: check snap first in ceph_set_acl() (Jeff Layton) [1767959]
+- [block] rbd: add __init/__exit annotations (Jeff Layton) [1767959]
+- [fs] ceph: reset cap hold timeout only for requeued inode (Jeff Layton) [1767959]
+- [fs] ceph: don't drop message if it contains more data than expected (Jeff Layton) [1767959]
+- [fs] ceph: support cephfs' own feature bits (Jeff Layton) [1767959]
+- [net] crush: fix using plain integer as NULL warning (Jeff Layton) [1767959]
+- [net] libceph: remove unnecessary non NULL check for request_key (Jeff Layton) [1767959]
+- [fs] ceph: refactor error handling code in ceph_reserve_caps() (Jeff Layton) [1767959]
+- [fs] ceph: refactor ceph_unreserve_caps() (Jeff Layton) [1767959]
+- [fs] ceph: change to void return type for __do_request() (Jeff Layton) [1767959]
+- [fs] ceph: compare fsc->max_file_size and inode->i_size for max file size limit (Jeff Layton) [1767959]
+- [fs] ceph: add additional size check in ceph_setattr() (Jeff Layton) [1767959]
+- [fs] ceph: add additional offset check in ceph_write_iter() (Jeff Layton) [1767959]
+- [fs] ceph: add additional range check in ceph_fallocate() (Jeff Layton) [1767959]
+- [fs] ceph: add new field max_file_size in ceph_fs_client (Jeff Layton) [1767959]
+- [net] ceph: fix whitespace (Jeff Layton) [1767959]
+- [fs] ceph: adding new return type vm_fault_t (Jeff Layton) [1767959]
+- [kernel] libceph: remove now unused ceph_{en, de}code_timespec() (Jeff Layton) [1767959]
+- [fs] ceph: use timespec64 for r_stamp (Jeff Layton) [1767959]
+- [fs] libceph: use timespec64 for r_mtime (Jeff Layton) [1767959]
+- [fs] ceph: use timespec64 for inode timestamp (Jeff Layton) [1767959]
+- [fs] ceph: stop using current_kernel_time() (Jeff Layton) [1767959]
+- [net] libceph: use timespec64 in for keepalive2 and ticket validity (Jeff Layton) [1767959]
+- [fs] ceph: add d_drop for some error cases in ceph_symlink() (Jeff Layton) [1767959]
+- [fs] ceph: add d_drop for some error cases in ceph_mknod() (Jeff Layton) [1767959]
+- [fs] ceph: return errors from posix_acl_equiv_mode() correctly (Jeff Layton) [1767959]
+- [net] libceph: amend "bad option arg" error message (Jeff Layton) [1767959]
+- [net] libceph: stop parsing when a bad int arg is detected (Jeff Layton) [1767959]
+- [kernel] libceph: change ceph_pagelist_encode_string() to take u32 (Jeff Layton) [1767959]
+- [net] libceph: make ceph_osdc_notify{, _ack}() payload_len u32 (Jeff Layton) [1767959]
+- [fs] ceph: restore ctime as well in the case of restoring old mode (Jeff Layton) [1767959]
+- [fs] ceph: add retry logic for error -ERANGE in ceph_get_acl() (Jeff Layton) [1767959]
+
+* Tue Nov 26 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-153.el8]
+- [tools] objtool: Support repeated uses of the same C jump table (Yauheni Kaliuta) [1747617]
+- [tools] objtool: Refactor jump table code (Yauheni Kaliuta) [1747617]
+- [tools] objtool: Fix sibling call detection (Yauheni Kaliuta) [1747617]
+- [tools] objtool: Add --backtrace support (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: Improve handling of corrupted ELF during map initialization (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: Fix negative FD close() in xsk_setup_xdp_prog() (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: Change size to u64 for bpf_map_{area_alloc, charge_init}() (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: Fix btf_dump padding test case (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: Fix struct end padding in btf_dump (Yauheni Kaliuta) [1747617]
+- [tools] bpf: Allow narrow loads of bpf_sysctl fields with offset > 0 (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: move "__printf()" attributes to header file (Yauheni Kaliuta) [1747617]
+- [media] bpf: media: properly use bpf_prog_array api (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: fix format string for p_err() in detect_common_prefix() (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: fix argument for p_err() in BTF do_dump() (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: fix arguments for p_err() in do_event_pipe() (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: fix format strings and arguments for jsonw_printf() (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix precision tracking of stack slots (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: handle 32-bit zext during constant blinding (Yauheni Kaliuta) [1747617]
+- [net] bpf: allow narrow loads of some sk_reuseport_md fields with offset > 0 (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix precision tracking in presence of bpf2bpf calls (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add config fragment BPF_JIT (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix test_btf_dump with O= (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix test_cgroup_storage on s390 (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: close prog FD before exit on showing a single program (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix "bind{4, 6} deny specific IP & port" on s390 (Yauheni Kaliuta) [1747617]
+- [tools] bpf: sync bpf.h to tools infrastructure (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: add error message on pin failure (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: fix error message (prog -> object) (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: tests for jmp to 1st insn (Yauheni Kaliuta) [1747617]
+- [x86] bpf: fix x64 JIT code generation for jmp to 1st insn (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: set BTF FD for prog only when there is supported .BTF.ext data (Yauheni Kaliuta) [1747617]
+- [tools] libbpf : make libbpf_num_possible_cpus function thread safe (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix missing __WORDSIZE definition (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix erroneous multi-closing of BTF FD (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: silence GCC8 warning about string truncation (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add another gso_segs access (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix sendmsg6_prog on s390 (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: Avoid designated initializers for unnamed union members (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: Fix endianness macro usage for some compilers (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: sanitize VAR to conservative 1-byte INT (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix SIGSEGV when BTF loading fails, but .BTF.ext exists (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix test_xdp_noinline on s390 (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix "valid read map access into a read-only array 1" on s390 (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: Disable GCC -fgcse optimization for ___bpf_prog_run() (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix perf_buffer on s390 (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: structure test_{progs, maps, verifier} test runners uniformly (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix test_verifier/test_maps make dependencies (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix another GCC8 warning for strncpy (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: skip nmi test when perf hw events are disabled (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: remove logic duplication in test_verifier (Yauheni Kaliuta) [1747617]
+- [tools] bpf: sync bpf.h to tools/ (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add selftests for wide loads (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: rename verifier/wide_store.c to verifier/wide_access.c (Yauheni Kaliuta) [1747617]
+- [net] bpf: allow wide aligned loads for bpf_sock_addr user_ip6 and msg_src_ip6 (Yauheni Kaliuta) [1747617]
+- [samples] bpf: build with -D__TARGET_ARCH_$(SRCARCH) (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: put test_stub.o into $(OUTPUT) (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: make directory prerequisites order-only (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix attach_probe on s390 (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: use typedef'ed arrays as map values (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add trickier size resolution tests (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix BTF verifier size resolution logic (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix compiling loop{1, 2, 3}.c on s390 (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: make PT_REGS_* work in userspace (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix s930 -> s390 typo (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: compile progs with -D__TARGET_ARCH_$(SRCARCH) (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: do not ignore clang failures (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: verifier: avoid fall-through warnings (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix bpf_target_sparc check (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix ptr to u64 conversion warning on 32-bit platforms (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix precision bit propagation for BPF_ST instructions (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: Fix ORC unwinding in non-JIT BPF code (Yauheni Kaliuta) [1747617]
+- [tools] objtool: Add support for C jump tables (Yauheni Kaliuta) [1747617]
+- [tools] objtool: Don't use ignore flag for fake jumps (Yauheni Kaliuta) [1747617]
+- [tools] objtool: Support per-function rodata sections (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix test_reuseport_array on s390 (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: add completion for bpftool prog "loadall" (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: cgroup: Fix build error without CONFIG_NET (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix test_attach_probe map definition (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add verifier tests for wide stores (Yauheni Kaliuta) [1747617]
+- [tools] bpf: sync bpf.h to tools/ (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add perf_buffer_ prefix to README (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: switch map event_pipe to libbpf's perf_buffer (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: test perf buffer API (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: auto-set PERF_EVENT_ARRAY size to number of CPUs (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add perf buffer API (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add test_tcp_rtt to .gitignore (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix test_align liveliness expectations (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: add "prog run" subcommand to test-run programs (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: convert legacy BPF maps to BTF-defined ones (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: convert selftests using BTF-defined maps to new syntax (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add __uint and __type macro for BTF-defined maps (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: capture value in BTF type info for BTF-defined map defs (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: convert existing tracepoint tests to new APIs (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add kprobe/uprobe selftests (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: switch test to new attach_perf_event API (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add raw tracepoint attach API (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add tracepoint attach API (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add kprobe/uprobe attach API (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add ability to attach/detach BPF program to perf event (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: introduce concept of bpf_link (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: make libbpf_strerror_r agnostic to sign of error (Yauheni Kaliuta) [1747617]
+- [tools] selftests: bpf: fix inlines in test_lwt_seg6local (Yauheni Kaliuta) [1747617]
+- [tools] selftests: bpf: standardize to static __always_inline (Yauheni Kaliuta) [1747617]
+- [samples] bpf: Add support for fq's EDT to HBM (Yauheni Kaliuta) [1747617]
+- [tools] bpf, libbpf, smatch: Fix potential NULL pointer dereference (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix GCC8 warning for strncpy (Yauheni Kaliuta) [1747617]
+- [tools] selftests: bpf: add tests for shifts by zero (Yauheni Kaliuta) [1747617]
+- [x86] bpf, x32: Fix bug with ALU64 {LSH, RSH, ARSH} BPF_K shift by 0 (Yauheni Kaliuta) [1747617]
+- [x86] bpf, x32: Fix bug with ALU64 {LSH, RSH, ARSH} BPF_X shift by 0 (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix precision tracking (Yauheni Kaliuta) [1747617]
+- [tools] bpf: fix uapi bpf_prog_info fields alignment (Yauheni Kaliuta) [1747617]
+- [kernel] devmap: Allow map lookups from eBPF (Yauheni Kaliuta) [1747617]
+- [net] bpf_xdp_redirect_map: Perform map lookup in eBPF helper (Yauheni Kaliuta) [1747617]
+- [net] devmap: Rename ifindex member in bpf_redirect_info (Yauheni Kaliuta) [1747617]
+- [kernel] devmap/cpumap: Use flush list instead of bitmap (Yauheni Kaliuta) [1747617]
+- [kernel] xskmap: Move non-standard list manipulation to helper (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix -Wstrict-aliasing in test_sockopt_sk.c (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: support cgroup sockopt (Yauheni Kaliuta) [1747617]
+- [documentation] bpf: add sockopt documentation (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add sockopt test that exercises BPF_F_ALLOW_MULTI (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add sockopt test that exercises sk helpers (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add sockopt test (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: test sockopt section name (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: support sockopt hooks (Yauheni Kaliuta) [1747617]
+- [tools] bpf: sync bpf.h to tools/ (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: implement getsockopt and setsockopt hooks (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix cgroup bpf release synchronization (Yauheni Kaliuta) [1747617]
+- [samples] bpf: make the use of xdp samples consistent (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix BPF_ALU32 | BPF_ARSH on BE arches (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: use correct argument in cgroup errors (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix compiler warning with CONFIG_MODULES=n (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: build tests with debug info (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix max() type mismatch for 32bit (Yauheni Kaliuta) [1747617]
+- [trace] xdp: Add tracepoint for bulk XDP_TX (Yauheni Kaliuta) [1747617]
+- [tools] selftests, bpf: Add test for veth native XDP (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix spelling mistake "conflictling" -> "conflicting" (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: precise scalar_value tracking (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add realistic loop tests (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add basic verifier tests for loops (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix tests (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: fix callees pruning callers (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: introduce bounded loops (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: extend is_branch_taken to registers (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix tests due to const spill/fill (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: track spill/fill of constants (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: constify getter APIs (Yauheni Kaliuta) [1747617]
+- [samples] bpf: refactor header include path (Yauheni Kaliuta) [1747617]
+- [samples] bpf: remove unnecessary include options in Makefile (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: convert tests w/ custom values to BTF-defined maps (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: switch BPF_ANNOTATE_KV_PAIR tests to BTF-defined maps (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add test for BTF-defined maps (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: allow specifying map definitions using BTF (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: split initialization and loading of BTF (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: identify maps by section index in addition to offset (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: refactor map initialization (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: streamline ELF parsing error-handling (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: extract BTF loading logic (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add common min/max macro to libbpf_internal.h (Yauheni Kaliuta) [1747617]
+- [net] bpf: fix the check that forwarding is enabled in bpf_ipv6_fib_lookup (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: Fix build error without CONFIG_INET (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: convert socket_cookie test to sk storage (Yauheni Kaliuta) [1747617]
+- [tools] bpf/tools: sync bpf.h (Yauheni Kaliuta) [1747617]
+- [net] bpf: export bpf_sock for BPF_PROG_TYPE_SOCK_OPS prog type (Yauheni Kaliuta) [1747617]
+- [net] bpf: export bpf_sock for BPF_PROG_TYPE_CGROUP_SOCK_ADDR prog type (Yauheni Kaliuta) [1747617]
+- [tools] bpf: Add test for SO_REUSEPORT_DETACH_BPF (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix check for presence of associated BTF for map creation (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: signedness bug in enable_all_controllers() (Yauheni Kaliuta) [1747617]
+- [samples] bpf: fix include path in Makefile (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: silence warning messages in core (Yauheni Kaliuta) [1747617]
+- [tools] bpf: use libbpf_num_possible_cpus internally (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: remove bpf_util.h from BPF C progs (Yauheni Kaliuta) [1747617]
+- [tools] bpf: add a new API libbpf_num_possible_cpus() (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf : clean up feature/ when make clean (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fix constness of source arg for bpf helpers (Yauheni Kaliuta) [1747617]
+- [samples] bpf: don't run probes at the local make stage (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: remove qidconf and better support external bpf programs (Yauheni Kaliuta) [1747617]
+- [tools] bpf: Add bpf_map_lookup_elem selftest for xskmap (Yauheni Kaliuta) [1747617]
+- [tools] bpf/tools: sync bpf.h (Yauheni Kaliuta) [1747617]
+- [net] bpf: Allow bpf_map_lookup_elem() on an xskmap (Yauheni Kaliuta) [1747617]
+- [documentation] docs: bpf: get rid of two warnings (Yauheni Kaliuta) [1747617]
+- [net] bpf: allow CGROUP_SKB programs to use bpf_skb_cgroup_id() helper (Yauheni Kaliuta) [1747617]
+- [samples] bpf: print a warning about headers_install (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: remove redundant assignment to err (Yauheni Kaliuta) [1747617]
+- [samples] bpf: hbm: fix spelling mistake "notifcations" -> "notificiations" (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: measure RTT from xdp using xdping (Yauheni Kaliuta) [1747617]
+- [documentation] bpf: doc: update answer for 32-bit subregister question (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: move memory size checks to bpf_map_charge_init() (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: rework memlock-based memory accounting for maps (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: group memory related fields in struct bpf_map_memory (Yauheni Kaliuta) [1747617]
+- [net] bpf: add memlock precharge for socket local storage (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: add memlock precharge check for cgroup_local_storage (Yauheni Kaliuta) [1747617]
+- [samples] bpf: Add more stats to HBM (Yauheni Kaliuta) [1747617]
+- [samples] bpf: Add cn support to hbm_out_kern.c (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: Update __cgroup_bpf_run_filter_skb with cn (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: cgroup inet skb programs can return 0 to 3 (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: Create BPF_PROG_CGROUP_INET_EGRESS_RUN_ARRAY (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: reduce unnecessary line wrapping (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: typo and formatting fixes (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: simplify two pieces of logic (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: use negative fd to specify missing BTF (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix error code returned on corrupted ELF (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: check map name retrieved from ELF (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: simplify endianness check (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: preserve errno before calling into user callback (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix detection of corrupted BPF instructions section (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: prevent overwriting of log_level in bpf_object__load_progs() (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: tracing: properly use bpf_prog_array api (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: cgroup: properly use bpf_prog_array api (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: remove __rcu annotations from bpf_prog_array (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add auto-detach test (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: enable all available cgroup v2 controllers (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: convert test_cgrp2_attach2 example into kselftest (Yauheni Kaliuta) [1747617]
+- [samples] bpf: fix a couple of style issues in bpf_load (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: fail test_tunnel.sh if subtests fail (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: make -d option print debug output from verifier (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add bpf_object__load_xattr() API function to pass log_level (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: add -d option to get debug output from libbpf (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: fix warning that PTR_ERR_OR_ZERO can be used (Yauheni Kaliuta) [1747617]
+- [tools] bpf: style fix in while(!feof()) loop (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: check signal validity in nmi for bpf_send_signal() helper (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: auto-complete BTF IDs for btf dump (Yauheni Kaliuta) [1747617]
+- [samples] bpf: add ibumad sample to .gitignore (Yauheni Kaliuta) [1747617]
+- [x86] x32: bpf: eliminate zero extension code-gen (Yauheni Kaliuta) [1747617]
+- [s390] bpf: eliminate zero extension code-gen (Yauheni Kaliuta) [1747617]
+- [powerpc] bpf: eliminate zero extension code-gen (Yauheni Kaliuta) [1747617]
+- [tools] selftests: bpf: enable hi32 randomization for all tests (Yauheni Kaliuta) [1747617]
+- [tools] selftests: bpf: adjust several test_verifier helpers for insn insertion (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add "prog_flags" to bpf_program/bpf_prog_load_attr/bpf_load_program_attr (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: verifier: randomize high 32-bit when BPF_F_TEST_RND_HI32 is set (Yauheni Kaliuta) [1747617]
+- [tools] bpf: sync uapi header bpf.h (Yauheni Kaliuta) [1747617]
+- [uapi] bpf: introduce new bpf prog load flags "BPF_F_TEST_RND_HI32" (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: verifier: insert zero extension according to analysis result (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: introduce new mov32 variant for doing explicit zero extension (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: verifier: mark patched-insn with sub-register zext flag (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: verifier: mark verified-insn with sub-register zext flag (Yauheni Kaliuta) [1747617]
+- [tools] bpf: add selftest in test_progs for bpf_send_signal() helper (Yauheni Kaliuta) [1747617]
+- [tools] bpf: sync bpf uapi header bpf.h to tools directory (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: implement bpf_send_signal() helper (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: update bash-completion w/ new c option for btf dump (Yauheni Kaliuta) [1747617]
+- [tools] bpftool/docs: add description of btf dump C option (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: add C output format option to btf dump subcommand (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add btf_dump BTF-to-C conversion tests (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add btf_dump API for BTF-to-C conversion (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: switch btf_dedup() to hashmap for dedup table (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add tests for libbpf's hashmap (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add resizable non-thread safe internal hashmap (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: use btf__parse_elf to check presence of BTF/BTF.ext (Yauheni Kaliuta) [1747617]
+- [tools] bpftool: use libbpf's btf__parse_elf API (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: add btf__parse_elf API to load .BTF and .BTF.ext (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: ensure libbpf.h is included along libbpf_internal.h (Yauheni Kaliuta) [1747617]
+- [samples] bpf: Do not define bpf_printk macro (Yauheni Kaliuta) [1747617]
+- [tools] selftests: bpf: Move bpf_printk to bpf_helpers.h (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: convert explored_states to hash table (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: split explored_states (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: cleanup explored_states (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: add pyperf scale test (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: adjust verifier scale test (Yauheni Kaliuta) [1747617]
+- [kernel] bpf: bump jmp sequence limit (Yauheni Kaliuta) [1747617]
+- [tools] libbpf: emit diff of mismatched public API, if any (Yauheni Kaliuta) [1747617]
+- [tools] bpf, selftest: test global data/bss/rodata sections (Yauheni Kaliuta) [1747617]
+- [tools] selftests/bpf: test_tc_tunnel: skip unsupported tests (Jiri Benc) [1749814]
+- [tools] selftests/bpf: More compatible nc options in test_tc_edt (Jiri Benc) [1749814]
+- [net] xdp: check device pointer before clearing (Jiri Benc) [1749814]
+- [net] bpf: udp: Avoid calling reuseport's bpf_prog from udp_gro (Jiri Benc) [1749814]
+- [net] bpf: sockmap, fix use after free from sleep in psock backlog workqueue (Jiri Benc) [1749814]
+- [include] bpf: sockmap, restore sk_write_space when psock gets dropped (Jiri Benc) [1749814]
+- [net] bpfilter: fallback to netfilter if failed to load bpfilter kernel module (Jiri Benc) [1749814]
+- [net] pass net_device argument to the eth_get_headlen (Jiri Benc) [1749814]
+- [net] flow_dissector: handle no-skb use case (Jiri Benc) [1749814]
+- [net] plumb network namespace into __skb_flow_dissect (Jiri Benc) [1749814]
+- [net] bpfilter: dont use module_init in non-modular code (Jiri Benc) [1749814]
+- [net] xsk: fix XDP socket ring buffer memory ordering (Jiri Benc) [1749814]
+- [tools] selftests/bpf: install files test_xdp_vlan.sh (Jiri Benc) [1749814]
+- [net] fix bpf_xdp_adjust_head regression for generic-XDP (Jiri Benc) [1749814]
+- [tools] selftests/bpf: reduce time to execute test_xdp_vlan.sh (Jiri Benc) [1749814]
+- [tools] selftests/bpf: add wrapper scripts for test_xdp_vlan.sh (Jiri Benc) [1749814]
+- [tools] bpf: fix XDP vlan selftests test_xdp_vlan.sh (Jiri Benc) [1749814]
+- [net] core: support XDP generic on stacked devices. (Jiri Benc) [1749814]
+- [netdrv] netvsc: unshare skb in VF rx handler (Jiri Benc) [1749814]
+- [net] convert rps_needed and rfs_needed to new static branch api (Jiri Benc) [1749814]
+- [net] core: Document __skb_flow_dissect() flags argument (Jiri Benc) [1749814]
+- [net] gso: Fix skb_segment splat when splitting gso_size mangled skb having linear-headed frag_list (Jiri Benc) [1749814]
+- [net] sock_map, fix missing ulp check in sock hash case (Jiri Benc) [1749814]
+- [net] Fix missing meta data in skb with vlan packet (Jiri Benc) [1749814]
+- [include] skbuff.h: fix using plain integer as NULL warning (Jiri Benc) [1749814]
+- [netdrv] netdevsim: Fix error handling in nsim_fib_init and nsim_fib_exit (Jiri Benc) [1761359]
+- [netdrv] netdevsim: Restore per-network namespace accounting for fib entries (Jiri Benc) [1761359]
+- [netdrv] netdevsim: Make nsim_num_vf static (Jiri Benc) [1761359]
+- [netdrv] netdevsim: fix fall-through annotation (Jiri Benc) [1761359]
+- [netdrv] netdevsim: implement ndo_get_devlink_port (Jiri Benc) [1761359]
+- [netdrv] netdevsim: move netdev creation/destruction to dev probe (Jiri Benc) [1761359]
+- [netdrv] netdevsim: extend device attrs to support port addition and deletion (Jiri Benc) [1761359]
+- [netdrv] netdevsim: implement dev probe/remove skeleton with port initialization (Jiri Benc) [1761359]
+- [netdrv] netdevsim: change debugfs tree topology (Jiri Benc) [1761359]
+- [netdrv] netdevsim: generate random switch id instead of using dev id (Jiri Benc) [1761359]
+- [netdrv] netdevsim: merge sdev into dev (Jiri Benc) [1761359]
+- [netdrv] netdevsim: rename dev_init/exit() functions and make them independent on ns (Jiri Benc) [1761359]
+- [netdrv] netdevsim: add bus attributes to add new and delete devices (Jiri Benc) [1761359]
+- [netdrv] netdevsim: use ida for bus device ids (Jiri Benc) [1761359]
+- [netdrv] netdevsim: add stub netdevsim driver implementation (Jiri Benc) [1761359]
+- [netdrv] netdevsim: move device registration and related code to bus.c (Jiri Benc) [1761359]
+- [netdrv] netdevsim: put netdevsim bus code into separate file (Jiri Benc) [1761359]
+- [netdrv] netdevsim: rename devlink.c to dev.c to contain per-dev(asic) items (Jiri Benc) [1761359]
+- [netdrv] netdevsim: create devlink instance per netdevsim instance (Jiri Benc) [1761359]
+- [netdrv] netdevsim: move device registration on bus to be done earlier in init (Jiri Benc) [1761359]
+- [netdrv] netdevsim: move sdev-specific init/uninit code into separate functions (Jiri Benc) [1761359]
+- [netdrv] netdevsim: make bpf_offload_dev_create() per-sdev instead of first ns (Jiri Benc) [1761359]
+- [netdrv] netdevsim: move shared dev creation and destruction into separate file (Jiri Benc) [1761359]
+- [netdrv] netdevsim: let net core to free netdevsim netdev (Jiri Benc) [1761359]
+- [netdrv] netdevsim: remove nsim_dellink() implementation (Jiri Benc) [1761359]
+- [include] driver core: add BUS_ATTR_WO() macro (Jiri Benc) [1761359]
+- arm64: bpf: do not allocate executable memory (Yauheni Kaliuta) [1762214]
+- modules: page-align module section allocations only for arches supporting strict module rwx (Yauheni Kaliuta) [1762214]
+- modules: always page-align module section allocations (Yauheni Kaliuta) [1762214]
+- modules: fix compile error if don't have strict module rwx (Yauheni Kaliuta) [1762214]
+- modules: Use vmalloc special flag (Yauheni Kaliuta) [1762214]
+- modules: fix BUG when load module with rodata=n (Yauheni Kaliuta) [1762214]
+- x86/modules: Avoid breaking W^X while loading modules (Yauheni Kaliuta) [1762214]
+- x86/alternatives, jumplabel: Use text_poke_early() before mm_init() (Yauheni Kaliuta) [1762214]
+- x86/kprobes: Set instruction page as executable (Yauheni Kaliuta) [1762214]
+- x86/ftrace: Set trampoline pages as executa (Yauheni Kaliuta) [1762214]
+- [tools] bpftool: Fix json dump crash on powerpc (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: fix race in flow dissector tests (Yauheni Kaliuta) [1747615]
+- [arm64] insn: Fix ldadd instruction encoding (Yauheni Kaliuta) [1747615]
+- [scripts] kbuild: tolerate missing pahole when generating BTF (Yauheni Kaliuta) [1747615]
+- [scripts] kbuild: handle old pahole more gracefully when generating BTF (Yauheni Kaliuta) [1747615]
+- [scripts] kbuild: add ability to generate BTF type info for vmlinux (Yauheni Kaliuta) [1747615]
+- [scripts] kbuild: hardcode genksyms path and remove GENKSYMS variable (Yauheni Kaliuta) [1747615]
+- [scripts] bpf: fix script for generating man page on BPF helpers (Yauheni Kaliuta) [1747615]
+- [tools] add smp_* barrier variants to include infrastructure (Yauheni Kaliuta) [1747615]
+- [tools] tools headers barrier: Fix arm64 tools build failure wrt smp_load_{acquire, release} (Yauheni Kaliuta) [1747615]
+- [tools] bpf, x32: Fix bug for BPF_JMP | {BPF_JSGT, BPF_JSLE, BPF_JSLT, BPF_JSGE} (Yauheni Kaliuta) [1747615]
+- [x86] unwind/orc: Fall back to using frame pointers for generated code (Yauheni Kaliuta) [1747615]
+- [x86] unwind: Add hardcoded ORC entry for NULL (Yauheni Kaliuta) [1747615]
+- [x86] unwind: Handle NULL pointer calls better in frame unwinder (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: fix accessing bpf_sysctl.file_pos on s390 (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: fix narrower loads on s390 (Yauheni Kaliuta) [1747615]
+- [net] bpf: rename bpf_ctx_wide_store_ok to bpf_ctx_wide_access_ok (Yauheni Kaliuta) [1747615]
+- [net] bpf: allow wide (u64) aligned stores for some fields of bpf_sock_addr (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: improve unexpected success reporting in test_syctl (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: fix "ctx:write sysctl:write read ok" on s390 (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: fix format string for p_err() in query_flow_dissector() (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: add raw_tracepoint_writable prog type to header (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: fix NULL deref in btf_type_is_resolve_source_only (Yauheni Kaliuta) [1747615]
+- [net] bpf: Set sk_bpf_storage back to NULL for cloned sk (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: fix nested bpf tracepoints with per-cpu data (Yauheni Kaliuta) [1747615]
+- [net] bpf: Fix out of bounds memory access in bpf_sk_storage (Yauheni Kaliuta) [1747615]
+- [kernel] sysctl: define proc_do_static_key() (Yauheni Kaliuta) [1747615]
+- [x86] bpf, x64: fix stack layout of JITed bpf code (Yauheni Kaliuta) [1747615]
+- [kernel] bpf, devmap: Add missing RCU read lock on flush (Yauheni Kaliuta) [1747615]
+- [kernel] bpf, devmap: Add missing bulk queue free (Yauheni Kaliuta) [1747615]
+- [kernel] bpf, devmap: Fix premature entry free on destroying map (Yauheni Kaliuta) [1747615]
+- [powerpc] bpf: use unsigned division instruction for 64-bit operations (Yauheni Kaliuta) [1747615]
+- [tools] bpf: fix div64 overflow tests to properly detect errors (Yauheni Kaliuta) [1747615]
+- [tools] bpf: sync BPF_FIB_LOOKUP flag changes with BPF uapi (Yauheni Kaliuta) [1747615]
+- [uapi] bpf: simplify definition of BPF_FIB_LOOKUP related flags (Yauheni Kaliuta) [1747615]
+- [tools] bpf: lpm_trie: check left child of last leftmost node for NULL (Yauheni Kaliuta) [1747615]
+- [tools] bpf: expand section tests for test_section_names (Yauheni Kaliuta) [1747615]
+- [tools] bpf: more msg_name rewrite tests to test_sock_addr (Yauheni Kaliuta) [1747615]
+- [tools] bpf, bpftool: enable recvmsg attach types (Yauheni Kaliuta) [1747615]
+- [tools] bpf, libbpf: enable recvmsg attach types (Yauheni Kaliuta) [1747615]
+- [tools] bpf: sync tooling uapi header (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: fix unconnected udp hooks (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: Fix JSON output when lookup fails (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: move test_lirc_mode2_user to TEST_GEN_PROGS_EXTENDED (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: Return btf_fd for load_sk_storage_btf (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: fix compiler warning in flow_dissector test (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: complete sub-register zero extension checks (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: move sub-register zero extension checks into subreg.c (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: add zero extend checks for ALU32 and/or/xor (Yauheni Kaliuta) [1747615]
+- [samples] bpf: suppress compiler warning (Yauheni Kaliuta) [1747615]
+- [samples] bpf: fix to change the buffer size for read() (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: fix BTF raw dump of FWD's fwd_kind (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: fix bpf_get_current_task (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: move logging helpers into libbpf_internal.h (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: add test_sysctl and map_tests/tests.h to .gitignore (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: relax inode permission check for retrieving bpf program (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: add prog detach to flow_dissector test (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: add missing \n to flow_dissector CHECK errors (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: don't fail when feature probing fails (Yauheni Kaliuta) [1747615]
+- [tools] bpf: test ref bit from data path and add new tests for syscall path (Yauheni Kaliuta) [1747615]
+- [kernel] bpf, lru: avoid messing with eviction heuristics upon syscall lookup (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: add map_lookup_elem_sys_only for lookups from syscall side (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Sync kernel btf.h header (Yauheni Kaliuta) [1747615]
+- [uapi] bpf: btf: fix the brackets of BTF_INT_OFFSET() (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: devmap: fix use-after-free Read in __dev_map_entry_free (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: fix undefined behavior in narrow load handling (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: detect supported kernel BTF features and sanitize BTF (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: Add files generated after build to .gitignore (Yauheni Kaliuta) [1747615]
+- [tools] bpf: synchronise BPF UAPI header with tools (Yauheni Kaliuta) [1747615]
+- [uapi] bpf: fix minor issues in documentation for BPF helpers (Yauheni Kaliuta) [1747615]
+- [uapi] bpf: fix recurring typo in documentation for BPF helpers (Yauheni Kaliuta) [1747615]
+- [tools] bpf: add various test cases for backward jumps (Yauheni Kaliuta) [1747615]
+- [documentation] docs/btf: fix the missing section marks (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: initialize bpf_object pointers where needed (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: add libbpf_util.h to header install (Yauheni Kaliuta) [1747615]
+- [tools] bpf: fix perf build error with uClibc (seen on ARC) (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: exclude bash-completion/bpftool from .gitignore pattern (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: set RLIMIT_MEMLOCK properly for test_libbpf_open.c (Yauheni Kaliuta) [1747615]
+- [net] bpf: Use PTR_ERR_OR_ZERO in bpf_fd_sk_storage_update_elem() (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Use vmalloc special flag (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Fail bpf_probe_write_user() while mm is switched (Yauheni Kaliuta) [1747615]
+- [kernel] mm/tlb: Provide default nmi_uaccess_okay() (Yauheni Kaliuta) [1747615]
+- [kernel] asm-generic/tlb: Guard with #ifdef CONFIG_MMU (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Add ene-to-end test for bpf_sk_storage_* helpers (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Add BPF_MAP_TYPE_SK_STORAGE test to test_maps (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Add verifier tests for the bpf_sk_storage (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Refactor BTF encoding macro to test_btf.h (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Support BPF_MAP_TYPE_SK_STORAGE in bpf map probing (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Sync bpf.h to tools (Yauheni Kaliuta) [1747615]
+- [net] bpf: Introduce bpf sk local storage (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: test writable buffers in raw tps (Yauheni Kaliuta) [1747615]
+- [tools] sync bpf.h (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: add writable context for raw tracepoints (Yauheni Kaliuta) [1747615]
+- [arm64] bpf, arm64: use more scalable stadd over ldxr / stxr loop in xadd (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: fix indendation in bash-completion/bpftool (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: add bash completions for btf command (Yauheni Kaliuta) [1747615]
+- [tools] bpftool/docs: add btf sub-command documentation (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: add ability to dump BTF types (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: Fix errno variable usage (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: show flow_dissector attachment status (Yauheni Kaliuta) [1747615]
+- [net] bpf: support BPF_PROG_QUERY for BPF_FLOW_DISSECTOR attach_type (Yauheni Kaliuta) [1747615]
+- [samples] bpf: add hbm sample to .gitignore (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: fix samples/bpf build failure due to undefined UINT32_MAX (Yauheni Kaliuta) [1747615]
+- [tools] bpf, libbpf: fix segfault in bpf_object__init_maps' pr_debug statement (Yauheni Kaliuta) [1747615]
+- [tools] bpf, libbpf: handle old kernels more graceful wrt global data sections (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: expand test_tc_tunnel with SIT encap (Yauheni Kaliuta) [1747615]
+- [net] bpf: update skb->protocol in bpf_skb_net_grow (Yauheni Kaliuta) [1747615]
+- [tools] bpf/flow_dissector: don't adjust nhoff by ETH_HLEN in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: properly return error from bpf_flow_load (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: run flow dissector tests in skb-less mode (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: add flow dissector bpf_skb_load_bytes helper test (Yauheni Kaliuta) [1747615]
+- [net] bpf: when doing BPF_PROG_TEST_RUN for flow dissector use no-skb mode (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: drop bpf_verifier_lock (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: remove global variables (Yauheni Kaliuta) [1747615]
+- [documentation] bpf: document the verifier limits (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: fix BPF_LOG_BUF_SIZE off-by-one error (Yauheni Kaliuta) [1747615]
+- [documentation] bpf: move BPF_PROG_TYPE_FLOW_DISSECTOR documentation to a new common place (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Increase MAX_NR_MAPS to 17 in test_verifier.c (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: fix compile errors due to unsync linux/in6.h and netinet/in.h (Yauheni Kaliuta) [1747615]
+- [documentation] bpf: Document BPF_PROG_TYPE_CGROUP_SYSCTL (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: fix a compilation error (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: cpumap memory prefetchw optimizations for struct page (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: cpumap do bulk allocation of SKBs (Yauheni Kaliuta) [1747615]
+- [net] core: introduce build_skb_around (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: cpumap use ptr_ring_consume_batched (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: optimize barrier for XDP socket rings (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: show btf_id in map listing (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: re-organize newline printing for map listing (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: Support sysctl hook (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: fix printf formatter for ptrdiff_t argument (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: use BPF_CAST_CALL for casting bpf call (Yauheni Kaliuta) [1747615]
+- [uapi] bpf: allow clearing all sock_ops callback flags (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: add VRF test cases to lwt_ip_encap test (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: make flow dissector tests more extensible (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: two scale tests (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: Improve handling of ENOSPC on reuseport_array map dumps (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: Use print_entry_error() in case of ENOENT when dumping (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: add a note on program statistics in man page (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: fix short option name for printing version in man pages (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: fix man page documentation for "pinmaps" keyword (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: reset errno for "bpftool cgroup tree" (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: remove blank line after btf_id when listing programs (Yauheni Kaliuta) [1747615]
+- [net] bpf: reserve flags in bpf_skb_net_shrink (Yauheni Kaliuta) [1747615]
+- [tools] bpf: fix whitespace for ENCAP_L2 defines in bpf.h (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: bring back (void *) cast to set_ipv4_csum in test_tc_tunnel (Yauheni Kaliuta) [1747615]
+- [tools] selftests/btf: add VAR and DATASEC case for dedup tests (Yauheni Kaliuta) [1747615]
+- [tools] btf: add support for VAR and DATASEC in btf_dedup() (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: refactor "check_reg_arg" to eliminate code redundancy (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: factor out reg and stack slot propagation into "propagate_liveness_reg" (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: refactor propagate_liveness to eliminate code redundance (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: refactor propagate_liveness to eliminate duplicated for loop (Yauheni Kaliuta) [1747615]
+- [netdrv] netdevsim: move sdev specific bpf debugfs files to sdev dir (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Fix distinct pointer types warning for ARCH=i386 (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: C based test for sysctl and strtoX (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test bpf_strtol and bpf_strtoul helpers (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test ARG_PTR_TO_LONG arg type (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Add sysctl and strtoX helpers to bpf_helpers.h (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Sync bpf.h to tools/ (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Introduce bpf_strtol and bpf_strtoul helpers (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Introduce ARG_PTR_TO_{INT,LONG} arg types (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test file_pos field in bpf_sysctl ctx (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test bpf_sysctl_{get, set}_new_value helpers (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test sysctl_get_current_value helper (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test bpf_sysctl_get_name helper (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test BPF_CGROUP_SYSCTL (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test sysctl section name (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: Support sysctl hook (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Sync bpf.h to tools/ (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Add file_pos field to bpf_sysctl ctx (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Introduce bpf_sysctl_{get, set}_new_value helpers (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Introduce bpf_sysctl_get_current_value helper (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Introduce bpf_sysctl_get_name helper (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Sysctl hook (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Add base proto function for cgroup-bpf programs (Yauheni Kaliuta) [1747615]
+- [net] bpf: explicitly prohibit ctx_{in, out} in non-skb BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1747615]
+- [tools] selftests_bpf: add L2 encap to test_tc_tunnel (Yauheni Kaliuta) [1747615]
+- [tools] bpf: sync bpf.h to tools/ for BPF_F_ADJ_ROOM_ENCAP_L2 (Yauheni Kaliuta) [1747615]
+- [net] bpf: add layer 2 encap support to bpf_skb_adjust_room (Yauheni Kaliuta) [1747615]
+- [tools] selftests_bpf: extend test_tc_tunnel for UDP encap (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: fix missing bpf_check_uarg_tail_zero in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1747615]
+- [s390] Convert IS_ENABLED uses to __is_defined (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: add selftest for __sk_buff context in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: add support for ctx_{size, }_{in, out} in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1747615]
+- [net] bpf: support input __sk_buff context in BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1747615]
+- [tools] bpftool: show btf id in program information (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: Fix build with gcc-8 (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: fix crash in XDP socket part with new larger BPF_LOG_BUF_SIZE (Yauheni Kaliuta) [1747615]
+- [tools] bpf, bpftool: fix a few ubsan warnings (Yauheni Kaliuta) [1747615]
+- [tools] bpf, selftest: add test cases for BTF Var and DataSec (Yauheni Kaliuta) [1747615]
+- [tools] bpf, selftest: test {rd, wr}only flags and direct value access (Yauheni Kaliuta) [1747615]
+- [tools] bpf: bpftool support for dumping data/bss/rodata sections (Yauheni Kaliuta) [1747615]
+- [tools] bpf, libbpf: add support for BTF Var and DataSec (Yauheni Kaliuta) [1747615]
+- [tools] bpf, libbpf: support global data/bss/rodata sections (Yauheni Kaliuta) [1747615]
+- [tools] bpf, libbpf: refactor relocation handling (Yauheni Kaliuta) [1747615]
+- [tools] bpf: sync {btf, bpf}.h uapi header from tools infrastructure (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: allow for key-less BTF in array map (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: kernel side support for BTF Var and DataSec (Yauheni Kaliuta) [1747615]
+- [documentation] bpf: add specification for BTF Var and DataSec kinds (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: allow . char as part of the object name (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: add syscall side map freeze support (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: add program side {rd, wr}only support for maps (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: do not retain flags that are not tied to map lifetime (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: implement lookup-free direct value access for maps (Yauheni Kaliuta) [1747615]
+- [net] ipv6: Add neighbor helpers that use the ipv6 stub (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: Ignore -Wformat-nonliteral warning (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Add missed newline in verifier verbose log (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test unbounded var_off stack access (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Sanity check max value for var_off stack access (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test indirect var_off stack access in unpriv mode (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Reject indirect var_off stack access in unpriv mode (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test indirect var_off stack access in raw mode (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Reject indirect var_off stack access in raw mode (Yauheni Kaliuta) [1747615]
+- [samples] bpf: fix build with new clang (Yauheni Kaliuta) [1747615]
+- [samples] selftests/bpf: add NULL check for ksym_search (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: ksym_search won't check symbols exists (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: synthetic tests to push verifier limits (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: add few verifier scale tests (Yauheni Kaliuta) [1747615]
+- [tools] libbpf: teach libbpf about log_level bit 2 (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: increase verifier log limit (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: increase complexity limit and maximum program size (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: verbose jump offset overflow check (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: convert temp arrays to kvcalloc (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: improve verification speed by not remarking live_read (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: improve verification speed by droping states (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: add verifier stats and log_level bit 2 (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: remove duplicate .flags initialization in ctx_skb.c (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: fix -Wformat-invalid-specifier for bpf_obj_id.c (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: fix -Wformat-security warning for flow_dissector_load.c (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: tests.h should depend on .c files, not the output (Yauheni Kaliuta) [1747615]
+- [tools] bpf: add bpffs multi-dimensional array tests in test_btf (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Test variable offset stack access (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: Support variable offset stack access from helpers (Yauheni Kaliuta) [1747615]
+- [net] ipv6: Move ipv6 stubs to a separate header file (Yauheni Kaliuta) [1747615]
+- [tools] bpf: generate pkg-config file for libbpf (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: don't depend on hardcoded perf sample_freq (Yauheni Kaliuta) [1747615]
+- [tools] bpf: test_tc_tunnel.sh needs reverse path filtering disabled (Yauheni Kaliuta) [1747615]
+- [tools] selftests: bpf: tc-bpf flow shaping with EDT (Yauheni Kaliuta) [1747615]
+- [net] bpf: make bpf_skb_ecn_set_ce callable from BPF_PROG_TYPE_SCHED_ACT (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: convert bpf tunnel test to encap modes (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: convert bpf tunnel test to BPF_F_ADJ_ROOM_FIXED_GSO (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: convert bpf tunnel test to BPF_ADJ_ROOM_MAC (Yauheni Kaliuta) [1747615]
+- [tools] bpf: Sync bpf.h to tools (Yauheni Kaliuta) [1747615]
+- [net] bpf: add bpf_skb_adjust_room encap flags (Yauheni Kaliuta) [1747615]
+- [net] bpf: add bpf_skb_adjust_room flag BPF_F_ADJ_ROOM_FIXED_GSO (Yauheni Kaliuta) [1747615]
+- [net] bpf: add bpf_skb_adjust_room mode BPF_ADJ_ROOM_MAC (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: extend bpf tunnel test with tso (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: extend bpf tunnel test with gre (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: expand bpf tunnel test to ipv6 (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: expand bpf tunnel test with decap (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: bpf tunnel encap test (Yauheni Kaliuta) [1747615]
+- [net] bpf: in bpf_skb_adjust_room avoid copy in tx fast path (Yauheni Kaliuta) [1747615]
+- [samples] bpf: add xdp_sample_pkts to .gitignore (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: add tests for bpf_tcp_check_syncookie and bpf_skc_lookup_tcp (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: test references to sock_common (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: allow specifying helper for BPF_SK_LOOKUP (Yauheni Kaliuta) [1747615]
+- [tools] update uapi/linux/bpf.h (Yauheni Kaliuta) [1747615]
+- [net] bpf: add helper to check for a valid SYN cookie (Yauheni Kaliuta) [1747615]
+- [net] bpf: add skc_lookup_tcp helper (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: allow helpers to return PTR_TO_SOCK_COMMON (Yauheni Kaliuta) [1747615]
+- [kernel] bpf: track references based on is_acquire_func (Yauheni Kaliuta) [1747615]
+- [tools] selftests/bpf: Add arm target register definitions (Yauheni Kaliuta) [1747615]
+- [documentation] bpf, doc: add RISC-V JIT to BPF documentation (Yauheni Kaliuta) [1747615]
+- [uapi] bpf: fix documentation for eBPF helpers (Yauheni Kaliuta) [1747615]
+- [uapi] bpf: add documentation for helpers bpf_spin_lock(), bpf_spin_unlock() (Yauheni Kaliuta) [1747615]
+
+* Mon Nov 25 2019 Bruno Meneguele <bmeneg@redhat.com> [4.18.0-152.el8]
+- [perf] perf: Add CCPI2 PMU support in ThunderX2 UNCORE driver (Robert Richter) [1726054]
+- [documentation] documentation: perf: Update documentation for ThunderX2 PMU uncore driver (Robert Richter) [1726054]
+- [scsi] lpfc: Update lpfc version to 12.6.0.2 (Dick Kennedy) [1771674]
+- [scsi] lpfc: revise nvme max queues to be hdwq count (Dick Kennedy) [1771674]
+- [scsi] lpfc: Initialize cpu_map for not present cpus (Dick Kennedy) [1771674]
+- [scsi] lpfc: fix inlining of lpfc_sli4_cleanup_poll_list() (Dick Kennedy) [1771674]
+- [scsi] lpfc: fix: coverity: lpfc_cmpl_els_rsp(): Null pointer dereferences (Dick Kennedy) [1771674]
+- [scsi] lpfc: fix: coverity: lpfc_get_scsi_buf_s3(): Null pointer dereferences (Dick Kennedy) [1771674]
+- [scsi] lpfc: Fix lpfc_cpumask_of_node_init() (Dick Kennedy) [1771674]
+- [scsi] lpfc: Fix a kernel warning triggered by lpfc_sli4_enable_intr() (Dick Kennedy) [1771674]
+- [scsi] lpfc: Fix a kernel warning triggered by lpfc_get_sgl_per_hdwq() (Dick Kennedy) [1771674]
+- [scsi] lpfc: Update lpfc version to 12.6.0.1 (Dick Kennedy) [1771674]
+- [scsi] lpfc: Add enablement of multiple adapter dumps (Dick Kennedy) [1771674]
+- [scsi] lpfc: Change default IRQ model on AMD architectures (Dick Kennedy) [1771674]
+- [scsi] lpfc: Add registration for CPU Offline/Online events (Dick Kennedy) [1771674]
+- [scsi] lpfc: Clarify FAWNN error message (Dick Kennedy) [1771674]
+- [scsi] lpfc: Sync with FC-NVMe-2 SLER change to require Conf with SLER (Dick Kennedy) [1771674]
+- [scsi] lpfc: Fix dynamic fw log enablement check (Dick Kennedy) [1771674]
+- [scsi] lpfc: Fix unexpected error messages during RSCN handling (Dick Kennedy) [1771674]
+- [scsi] lpfc: Fix kernel crash at lpfc_nvme_info_show during remote port bounce (Dick Kennedy) [1771674]
+- [scsi] lpfc: Fix configuration of BB credit recovery in service parameters (Dick Kennedy) [1771674]
+- [scsi] lpfc: Fix duplicate unreg_rpi error in port offline flow (Dick Kennedy) [1771674]
+- [infiniband] ib/srp: Add missing new line after displaying fast_io_fail_tmo param (Kamal Heib) [1678461 1720899]
+- [net] sunrpc: The RDMA back channel mustn't disappear while requests are outstanding (Kamal Heib) [1720899]
+- [infiniband] rdma/nldev: Skip counter if port doesn't match (Kamal Heib) [1720899]
+- [rdma] uverbs: Prevent potential underflow (Kamal Heib) [1720899]
+- [infiniband] ib/core: Use rdma_read_gid_l2_fields to compare GID L2 fields (Kamal Heib) [1720899]
+- [infiniband] rdma/siw: free siw_base_qp in kref release routine (Kamal Heib) [1720899]
+- [infiniband] rdma/iwcm: move iw_rem_ref() calls out of spinlock (Kamal Heib) [1720899]
+- [infiniband] ib/core: Fix wrong iterating on ports (Kamal Heib) [1720899]
+- [infiniband] rdma/nldev: Reshuffle the code to avoid need to rebind QP in error path (Kamal Heib) [1720899]
+- [infiniband] rdma/cm: Fix memory leak in cm_add/remove_one (Kamal Heib) [1720899]
+- [infiniband] rdma/core: Fix an error handling path in 'res_get_common_doit()' (Kamal Heib) [1720899]
+- [infiniband] rdma/iwcm: Fix a lock inversion issue (Kamal Heib) [1720899]
+- [infiniband] rdma/siw: Fix serialization issue in write_space() (Kamal Heib) [1720899]
+- [infiniband] rdma/vmw_pvrdma: Free SRQ only once (Kamal Heib) [1757294 1720899]
+- [infiniband] rdma: Fix double-free in srq creation error flow (Kamal Heib) [1720899]
+- [infiniband] rdma/siw: Fix page address mapping in TX path (Kamal Heib) [1720899]
+- [infiniband] rdma/cma: Fix false error message (Kamal Heib) [1720899]
+- [infiniband] rdma/{cxgb3, cxgb4, i40iw}: Remove common code (Kamal Heib) [1760097 1745655 1720899]
+- [infiniband] rdma/core: Fix use after free and refcnt leak on ndev in_device in iwarp_query_port (Kamal Heib) [1760097 1745655 1720899]
+- [infiniband] rdma/core: Add common iWARP query port (Kamal Heib) [1760097 1745655 1720899]
+- [infiniband] rdma/i40iw: Associate ibdev to netdev before IB device registration (Kamal Heib) [1760097 1745655 1720899]
+- [infiniband] rdma/cxgb3: Use ib_device_set_netdev() (Kamal Heib) [1760097 1745655 1720899]
+- [infiniband] rdma: Introduce ib_port_phys_state enum (Kamal Heib) [1760097 1745655 1720899]
+- [sched] topology: Improve load balancing on AMD EPYC systems (Phil Auld) [1757535]
+- [netdrv] broadcom: Use dev_get_drvdata (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add a new BNXT_FW_RESET_STATE_POLL_FW_DOWN state (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.100 (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Increase timeout for HWRM_DBG_COREDUMP_XX commands (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Don't proceed in .ndo_set_rx_mode() when device is not in open state (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Fix compile error regression with CONFIG_BNXT_SRIOV not set (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add FW fatal devlink_health_reporter (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add bnxt_fw_exception() to handle fatal firmware errors (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add RESET_FW state logic to bnxt_fw_reset_task() (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Do not send firmware messages if firmware is in error state (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Retain user settings on a VF after RESET_NOTIFY event (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add devlink health reset reporter (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Handle firmware reset (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Handle RESET_NOTIFY async event from firmware (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add new FW devlink_health_reporter (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add BNXT_STATE_IN_FW_RESET state (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Enable health monitoring (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Pre-map the firmware health monitoring registers (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Discover firmware error recovery capabilities (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Handle firmware reset status during IF_UP (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Register buffers for VFs before reserving resources (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Refactor bnxt_sriov_enable() (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Prepare bnxt_init_one() to be called multiple times (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Suppress all error messages in hwrm_do_send_msg() in silent mode (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Simplify error checking in the SR-IOV message forwarding functions (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Convert error code in firmware message response to standard code (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Remove the -1 error return code from bnxt_hwrm_do_send_msg() (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Use a common function to print the same ethtool -f error message (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Fix allocation of zero statistics block size regression (Jonathan Toppins) [1724766]
+- [netdrv] bnxt: no need to check return value of debugfs_create functions (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add PCI IDs for 57500 series NPAR devices (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Support all variants of the 5750X chip family (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Refactor bnxt_init_one() and turn on TPA support on 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Support TPA counters on 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Allocate the larger per-ring statistics block for 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Refactor ethtool ring statistics logic (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add hardware GRO setup function for 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add TPA ID mapping logic for 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add fast path logic for TPA on 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Set TPA GRO mode flags on 57500 chips properly (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Refactor tunneled hardware GRO logic (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Handle standalone RX_AGG completions (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Expand bnxt_tpa_info struct to support 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Refactor TPA logic (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add TPA structure definitions for BCM57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.89 (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Suppress HWRM errors for HWRM_NVM_GET_VARIABLE command (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Fix to include flow direction in L2 key (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Use correct src_fid to determine direction of the flow (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Fix handling FRAG_ERR when NVM_INSTALL_UPDATE cmd fails (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Improve RX doorbell sequence (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Fix VNIC clearing logic for 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Fix VNIC accounting when enabling aRFS on 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add page_pool_destroy() during RX ring cleanup (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: add page_pool support (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: optimized XDP_REDIRECT support (Jonathan Toppins) [1724766 1669220]
+- [netdrv] bnxt_en: Refactor __bnxt_xmit_xdp() (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: rename some xdp functions (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Device serial number is supported only for PFs (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add support for aRFS on 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Query firmware capability to support aRFS on 57500 chips (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Separate RDMA MR/AH context allocation (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: read the clause type from the PHY ID (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Read package version from firmware (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Check new firmware capability to display extended stats (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Add support for PCIe statistics (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Refactor bnxt_alloc_stats() (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Update firmware interface to 1.10.0.69 (Jonathan Toppins) [1724766]
+- [netdrv] bnxt: remove ndo_get_port_parent_id implementation for physical ports (Jonathan Toppins) [1724766]
+- [netdrv] bnxt: pass switch ID through devlink_port_attrs_set() (Jonathan Toppins) [1724766]
+- [netdrv] bnxt: move bp->switch_id initialization to PF probe (Jonathan Toppins) [1724766]
+- [netdrv] bnxt: remove ndo_get_phys_port_name implementation (Jonathan Toppins) [1724766]
+- [netdrv] bnxt: implement ndo_get_devlink_port (Jonathan Toppins) [1724766]
+- [netdrv] bnxt: Implement ndo_get_port_parent_id() (Jonathan Toppins) [1724766]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Jonathan Toppins) [1724766]
+- [netdrv] bnxt_en: Fix firmware signaled resource change logic in open (Jonathan Toppins) [1724766]
+- [netdrv] bnx2x: Mark expected switch fall-thoughs (Jonathan Toppins) [1724766]
+- [netdrv] bnx2x: Mark expected switch fall-throughs (Jonathan Toppins) [1724766]
+- [tools] selftests: kvm: vmx_dirty_log_test: skip the test when VMX is not supported (Vitaly Kuznetsov) [1771575]
+- [tools] selftests: kvm: consolidate VMX support checks (Vitaly Kuznetsov) [1771575]
+- [tools] selftests: kvm: vmx_set_nested_state_test: don't check for VMX support twice (Vitaly Kuznetsov) [1771575]
+- [net] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 321 (Stefano Garzarella) [1769904]
+- [net] vsock: Send reset control packet when socket is partially bound (Stefano Garzarella) [1769904]
+- [net] vsock/virtio: fix sock refcnt holding during the shutdown (Stefano Garzarella) [1769855]
+- [kernel] vsock/virtio: remove unused 'work' field from 'struct virtio_vsock_pkt' (Stefano Garzarella) [1769855]
+- [net] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 482 (Stefano Garzarella) [1769855]
+- [net] vsock/virtio: set SOCK_DONE on peer shutdown (Stefano Garzarella) [1769855]
+- [net] vsock/virtio: discard packets if credit is not respected (Stefano Garzarella) [1769853 1769846 1769836]
+- [net] vsock/virtio: send a credit update when buffer size is changed (Stefano Garzarella) [1769853 1769846 1769836]
+- [net] vsock/virtio: a better comment on credit update (Stefano Garzarella) [1769853 1769846 1769836]
+- [net] vsock/virtio: fix locking in virtio_transport_inc_tx_pkt() (Stefano Garzarella) [1769853 1769846 1769836]
+- [net] vsock/virtio: reduce credit update messages (Stefano Garzarella) [1769853 1769846 1769836]
+- [net] vsock/virtio: change the maximum packet size allowed (Stefano Garzarella) [1679971]
+- [vhost] vsock: split packets to send using multiple buffers (Stefano Garzarella) [1679971]
+- [net] vsock/virtio: limit the memory used per-socket (Stefano Garzarella) [1769744]
+- [net] vsock/virtio: free packets during the socket release (Stefano Garzarella) [1769744]
+- [net] vsock: Fix a lockdep warning in __vsock_release() (Stefano Garzarella) [1769714]
+- [net] vsock: correct removal of socket from the list (Stefano Garzarella) [1769714]
+- [net] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (Stefano Garzarella) [1769714]
+- [net] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 321 (Stefano Garzarella) [1769714]
+- [net] Fix ERROR:do not initialise statics to 0 in af_vsock.c (Stefano Garzarella) [1769714]
+- [net] vsock: bind to random port for VMADDR_PORT_ANY (Stefano Garzarella) [1769714]
+- [tools] tc-testing: added tests with cookie for conntrack TC action (Ivan Vecera) [1739606]
+- [net] cls_bpf: fix NULL deref on offload filter removal (Ivan Vecera) [1739606]
+- [tools] tc-testing: fixed two failing pedit tests (Ivan Vecera) [1739606]
+- [tools] tc-testing: implement tests for new fast_init action flag (Ivan Vecera) [1739606]
+- [net] sched: update action implementations to support flags (Ivan Vecera) [1739606]
+- [net] sched: use temporary variable for actions indexes (Ivan Vecera) [1739606]
+- [net] sched: extend TCA_ACT space with TCA_ACT_FLAGS (Ivan Vecera) [1739606]
+- [net] sched: modify stats helper functions to support regular stats (Ivan Vecera) [1739606]
+- [net] sched: don't expose action qstats to skb_tc_reinsert() (Ivan Vecera) [1739606]
+- [net] sched: extract qstats update code into functions (Ivan Vecera) [1739606]
+- [net] sched: extract bstats update code into function (Ivan Vecera) [1739606]
+- [net] sched: extract common action counters update code into function (Ivan Vecera) [1739606]
+- [tools] tc-testing: list required kernel options for act_ct action (Ivan Vecera) [1739606]
+- [net] fq_codel: do not include <linux/jhash.h> (Ivan Vecera) [1739606]
+- [net] sch_generic: Use pfifo_fast as fallback scheduler for CAN hardware (Ivan Vecera) [1739606]
+- [net] sched: taprio: fix -Wmissing-prototypes warnings (Ivan Vecera) [1739606]
+- [net] sched: act_police: re-use tcf_tm_dump() (Ivan Vecera) [1739606]
+- [tools] tc-testing: updated pedit TDC tests (Ivan Vecera) [1739606]
+- [net] sched: Avoid using yield() in a busy waiting loop (Ivan Vecera) [1739606]
+- [tools] tc-testing: updated pedit test cases (Ivan Vecera) [1739606]
+- [net] sched: etf: Fix ordering of packets with same txtime (Ivan Vecera) [1739606]
+- [tools] tc-testing: updated pedit test cases (Ivan Vecera) [1739606]
+- [net] taprio: Fix returning EINVAL when configuring without flags (Ivan Vecera) [1739606]
+- [net] net_sched: fix backward compatibility for TCA_ACT_KIND (Ivan Vecera) [1739606]
+- [net] net_sched: fix backward compatibility for TCA_KIND (Ivan Vecera) [1739606]
+- [net] sched: Set default of CONFIG_NET_TC_SKB_EXT to N (Ivan Vecera) [1739606]
+- [net] sch_netem: fix rcu splat in netem_enqueue() (Ivan Vecera) [1739606]
+- [net] net_sched: remove need_resched() from qdisc_run() (Ivan Vecera) [1739606]
+- [net] sched: cbs: Avoid division by zero when calculating the port rate (Ivan Vecera) [1739606]
+- [net] sched: taprio: Avoid division by zero on invalid link speed (Ivan Vecera) [1739606]
+- [net] sched: taprio: Fix potential integer overflow in taprio_set_picos_per_byte (Ivan Vecera) [1739606]
+- [net] sched: cbs: Fix not adding cbs instance to list (Ivan Vecera) [1739606]
+- [net] Fix Kconfig indentation (Ivan Vecera) [1739606]
+- [net] net_sched: add policy validation for action attributes (Ivan Vecera) [1739606]
+- [net] net_sched: add max len check for TCA_KIND (Ivan Vecera) [1739606]
+- [net] taprio: Add support for hardware offloading (Ivan Vecera) [1739606]
+- [net] sched: use get_dev() action API in flow_action infra (Ivan Vecera) [1739606]
+- [net] sched: take reference to psample group in flow_action infra (Ivan Vecera) [1739606]
+- [net] sched: extend flow_action_entry with destructor (Ivan Vecera) [1739606]
+- [net] sch_hhf: ensure quantum and hhf_non_hh_weight are non-zero (Ivan Vecera) [1739606]
+- [net] net_sched: check cops->tcf_block in tc_bind_tclass() (Ivan Vecera) [1739606]
+- [net] sched: fix reordering issues (Ivan Vecera) [1739606]
+- [net] net_sched: act_police: add 2 new attributes to support police 64bit rate and peakrate (Ivan Vecera) [1739606]
+- [net] openvswitch: Set OvS recirc_id from tc chain index (Ivan Vecera) [1739606]
+- [net] sk_buff: drop all skb extensions on free and skb scrubbing (Ivan Vecera) [1739606]
+- [net] minor cleanup in skb_ext_add() (Ivan Vecera) [1739606]
+- [include] net: drop the unused helper skb_ext_get() (Ivan Vecera) [1739606]
+- [net] fix possible user-after-free in skb_ext_add() (Ivan Vecera) [1739606]
+- [net] sk_buff: add skb extension infrastructure (Ivan Vecera) [1739606]
+- [net] sched: cbs: remove redundant assignment to variable port_rate (Ivan Vecera) [1739606]
+- [tools] tc-testing: don't hardcode 'ip' in nsPlugin.py (Ivan Vecera) [1739606]
+- [net] sched: cbs: Set default link speed to 10 Mbps in cbs_set_port_rate (Ivan Vecera) [1739606]
+- [net] taprio: Set default link speed to 10 Mbps in taprio_set_picos_per_byte (Ivan Vecera) [1739606]
+- [net] taprio: Fix kernel panic in taprio_destroy (Ivan Vecera) [1739606]
+- [netdrv] mlx5e: Move local var definition into ifdef block (Ivan Vecera) [1739606]
+- [net] sched: cls_matchall: cleanup flow_action before deallocating (Ivan Vecera) [1739606]
+- [net] sched: act_vlan: implement stats_update callback (Ivan Vecera) [1739606]
+- [net] sched: act_sample: fix psample group handling on overwrite (Ivan Vecera) [1739606]
+- [net] sched: flower: don't take rtnl lock for cls hw offloads API (Ivan Vecera) [1739606]
+- [net] sched: copy tunnel info when setting flow_action entry->tunnel (Ivan Vecera) [1739606]
+- [net] sched: take reference to action dev before calling offloads (Ivan Vecera) [1739606]
+- [net] sched: take rtnl lock in tc_setup_flow_action() (Ivan Vecera) [1739606]
+- [net] sched: conditionally obtain rtnl lock in cls hw offloads API (Ivan Vecera) [1739606]
+- [net] sched: add API for registering unlocked offload block callbacks (Ivan Vecera) [1739606]
+- [net] sched: notify classifier on successful offload add/delete (Ivan Vecera) [1739606]
+- [net] sched: refactor block offloads counter usage (Ivan Vecera) [1739606]
+- [net] sched: change tcf block offload counter type to atomic_t (Ivan Vecera) [1739606]
+- [net] sched: protect block offload-related fields with rw_semaphore (Ivan Vecera) [1739606]
+- [net] net_sched: fix a NULL pointer deref in ipt action (Ivan Vecera) [1739606]
+- [tools] tc-testing: concurrency: wrap piped rule update commands (Ivan Vecera) [1739606]
+- [tools] tc-testing: use dedicated DUMMY interface name for dummy dev (Ivan Vecera) [1739606]
+- [net] flow_offload: convert block_ing_cb_list to regular list type (Ivan Vecera) [1739606]
+- [netdrv] sched: use major priority number as hardware priority (Ivan Vecera) [1739606]
+- [tools] tc-testing: added tdc tests for matchall filter (Ivan Vecera) [1739606]
+- [net] taprio: remove unused variable 'entry_list_policy' (Ivan Vecera) [1739606]
+- [tools] tc-testing: updated skbedit action tests with batch create/delete (Ivan Vecera) [1739606]
+- [net] sched: update skbedit action for batched events operations (Ivan Vecera) [1739606]
+- [net] fq_codel: remove set but not used variables 'prev_ecn_mark' and 'prev_drop_count' (Ivan Vecera) [1739606]
+- [net] flow_offload: support get multi-subsystem block (Ivan Vecera) [1739606]
+- [net] flow_offload: move tc indirect block to flow offload (Ivan Vecera) [1739606]
+- [net] cls_api: add flow_indr_block_call function (Ivan Vecera) [1739606]
+- [net] cls_api: remove the tcf_block cache (Ivan Vecera) [1739606]
+- [net] cls_api: modify the tc_indr_block_ing_cmd parameters. (Ivan Vecera) [1739606]
+- [net] sched: sch_taprio: fix memleak in error path for sched list parse (Ivan Vecera) [1739606]
+- [net] fq_codel: Kill useless per-flow dropped statistic (Ivan Vecera) [1739606]
+- [net] Increase fq_codel count in the bulk dropper (Ivan Vecera) [1739606]
+- [include] sched: sample: allow accessing psample_group with rtnl (Ivan Vecera) [1739606]
+- [tools] tc-testing: updated vlan action tests with batch create/delete (Ivan Vecera) [1739606]
+- [net] sched: update vlan action for batched events operations (Ivan Vecera) [1739606]
+- [tools] tc-testing: Clarify the use of tdc's -d option (Ivan Vecera) [1739606]
+- [net] sched: Fix a possible null-pointer dereference in dequeue_func() (Ivan Vecera) [1739606]
+- [tools] tc-testing: added tdc tests for [b|p]fifo qdisc (Ivan Vecera) [1739606]
+- [net] ife: error out when nla attributes are empty (Ivan Vecera) [1739606]
+- [net] sched: verify that q!=NULL before setting q->flags (Ivan Vecera) [1739606]
+- [net] net_sched: unset TCQ_F_CAN_BYPASS when adding filters (Ivan Vecera) [1739606]
+- [net] fix: taprio: Change type of txtime-delay parameter to u32 (Ivan Vecera) [1739606]
+- [tools] tc-tests: updated skbedit tests (Ivan Vecera) [1739606]
+- [include] pkt_sched: Include const.h (Ivan Vecera) [1739606]
+- [tools] tc-testing: introduce scapyPlugin for basic traffic (Ivan Vecera) [1739606]
+- [tools] tc-testing: Allow tdc plugins to see test case data (Ivan Vecera) [1739606]
+- [tools] tc-testing: added tdc tests for prio qdisc (Ivan Vecera) [1739606]
+- [tools] tc-testing: updated mirred action tests with batch create/delete (Ivan Vecera) [1739606]
+- [net] sched: update mirred action for batched events operations (Ivan Vecera) [1739606]
+- [net] sched: em_ipt: add support for addrtype matching (Ivan Vecera) [1739606]
+- [net] sched: em_ipt: keep the user-specified nfproto and dump it (Ivan Vecera) [1739606]
+- [net] sched: em_ipt: set the family based on the packet if it's unspecified (Ivan Vecera) [1739606]
+- [net] sched: em_ipt: match only on ip/ipv6 traffic (Ivan Vecera) [1739606]
+- [net] taprio: Adjust timestamps for TCP packets (Ivan Vecera) [1739606]
+- [net] taprio: make clock reference conversions easier (Ivan Vecera) [1739606]
+- [net] taprio: Add support for txtime-assist mode (Ivan Vecera) [1739606]
+- [net] taprio: Remove inline directive (Ivan Vecera) [1739606]
+- [net] taprio: calculate cycle_time when schedule is installed (Ivan Vecera) [1739606]
+- [net] etf: Add skip_sock_check (Ivan Vecera) [1739606]
+- [include] etf: Don't use BIT() in UAPI headers. (Ivan Vecera) [1739606]
+- [tools] tc-testing: add ingress qdisc tests (Ivan Vecera) [1739606]
+- [tools] tc-testing: Restore original behaviour for namespaces in tdc (Ivan Vecera) [1739606]
+- [include] net: sched: act_ctinfo: tidy UAPI definition (Ivan Vecera) [1739606]
+- [include] act_ctinfo: Don't use BIT() in UAPI headers. (Ivan Vecera) [1739606]
+- [net] sched: cls_matchall: allow to delete filter (Ivan Vecera) [1739606]
+- [net] sched: act_ctinfo: fix policy validation (Ivan Vecera) [1739606]
+- [net] sched: act_ctinfo: fix action creation (Ivan Vecera) [1739606]
+- [tools] tc-tests: updated skbedit tests (Ivan Vecera) [1739606]
+- [tools] tc-tests: added path to ip command in tdc (Ivan Vecera) [1739606]
+- [net] sched: remove NET_CLS_IND config option (Ivan Vecera) [1739606]
+- [net] sched: act_ctinfo: use extack error reporting (Ivan Vecera) [1739606]
+- [net] sched: ingress: set 'unlocked' flag for clsact Qdisc ops (Ivan Vecera) [1739606]
+- [net] sched: ingress: set 'unlocked' flag for Qdisc ops (Ivan Vecera) [1739606]
+- [tools] tc-tests: updated fw with bind actions by reference use cases (Ivan Vecera) [1739606]
+- [net] sched: act_ctinfo: minor size optimisation (Ivan Vecera) [1739606]
+- [net] flow_offload: use struct_size() in kzalloc() (Ivan Vecera) [1739606]
+- [net] sched: don't use tc_action->order during action dump (Ivan Vecera) [1739606]
+- [net] sch_htb: redefine htb qdisc overlimits (Ivan Vecera) [1739606]
+- [tools] selftests: tc-testing: Add pedit tests (Ivan Vecera) [1739606]
+- [net] sched: add ingress mirred action to hardware IR (Ivan Vecera) [1757520]
+- [include] net: tc_act: add helpers to detect ingress mirred actions (Ivan Vecera) [1757520]
+- [net] sched: add skbedit of ptype action to hardware IR (Ivan Vecera) [1757520]
+- [include] net: tc_act: add skbedit_ptype helper functions (Ivan Vecera) [1757520]
+- [net] openvswitch: load and reference the NAT helper. (Flavio Leitner) [1752970]
+- [net] openvswitch: load NAT helper (Flavio Leitner) [1752970]
+- [net] netfilter: nf_nat: register NAT helpers. (Flavio Leitner) [1752970]
+- [net] netfilter: add API to manage NAT helpers. (Flavio Leitner) [1752970]
+- [net] netfilter: use macros to create module aliases. (Flavio Leitner) [1752970]
+- [net] xfrm: remove a duplicated assignment (Sabrina Dubroca) [1760002]
+- [net] xfrm: remove empty xfrmi_init_net (Sabrina Dubroca) [1760002]
+- [net] xfrm: remove unneeded export_symbols (Sabrina Dubroca) [1760002]
+- [include] xfrm: clean an indentation issue, remove a space (Sabrina Dubroca) [1760002]
+- [net] xfrm6: remove BUG_ON from xfrm6_dst_ifdown (Sabrina Dubroca) [1760002]
+- [net] xfrm: policy: add missing indentation (Sabrina Dubroca) [1760002]
+- [net] xfrm: Fix bucket count reported to userspace (Sabrina Dubroca) [1760002]
+- [net] xfrm: use complete IPv6 addresses for hash (Sabrina Dubroca) [1760002]
+- [net] xfrm: use correct size to initialise sp->ovec (Sabrina Dubroca) [1760002]
+- [net] xfrm: allow driver to quietly refuse offload (Sabrina Dubroca) [1760002]
+- [net] esp: remove redundant define esph (Sabrina Dubroca) [1760002]
+- [net] ip6_vti: simplify stats handling in vti6_xmit (Sabrina Dubroca) [1760002]
+- [net] xfrm: fix 'passing zero to ERR_PTR()' warning (Sabrina Dubroca) [1760002]
+- [net] xfrm: remove blank lines at EOF (Sabrina Dubroca) [1760002]
+- [net] xfrm: don't check offload_handle for nonzero (Sabrina Dubroca) [1760002]
+- [net] ipv6: xfrm: use 64-bit timestamps (Sabrina Dubroca) [1760002]
+- [net] devlink: Introduce PCI VF port flavour and port attribute (Petr Oros) [1761495]
+- [net] devlink: Introduce PCI PF port flavour and port attribute (Petr Oros) [1761495]
+- [net] devlink: Return physical port fields only for applicable port flavours (Petr Oros) [1761495]
+- [net] devlink: Refactor physical port attributes (Petr Oros) [1761495]
+- [net] ipv4: fix race condition between route lookup and invalidation (Guillaume Nault) [1765639]
+- [net] add {READ|WRITE}_ONCE() annotations on ->rskq_accept_head (Guillaume Nault) [1765639]
+- [net] ipv4/icmp: fix rt dst dev null pointer dereference (Guillaume Nault) [1765639]
+- [net] ipip: validate header length in ipip_tunnel_xmit (Guillaume Nault) [1765639]
+- [net] ipv4: Use return value of inet_iif() for __raw_v4_lookup in the while loop (Guillaume Nault) [1765639]
+- [net] ipv4: Fix raw socket lookup for local traffic (Guillaume Nault) [1765639]
+- [net] ipv4: Return error for RTA_VIA attribute (Guillaume Nault) [1765639]
+- [net] ipmr: fix unresolved entry dumps (Guillaume Nault) [1765639]
+- [net] ipvs: don't ignore errors in case refcounting ip_vs module fails (Davide Caratti) [1687094]
+- [net] ipvs: fix tinfo memory leak in start_sync_thread (Davide Caratti) [1687094]
+- [net] tcp: fix a possible lockdep splat in tcp_done() (Marcelo Leitner) [1764654]
+- [net] tcp: add rcu protection around tp->fastopen_rsk (Marcelo Leitner) [1764654]
+- [net] tcp: annotate lockless access to tcp_memory_pressure (Marcelo Leitner) [1764654]
+- [net] tcp: fix tcp_ecn_withdraw_cwr() to clear TCP_ECN_QUEUE_CWR (Marcelo Leitner) [1764654]
+- [net] tcp: inherit timestamp on mtu probe (Marcelo Leitner) [1764654]
+- [net] tcp: remove empty skb from write queue in error cases (Marcelo Leitner) [1764654]
+- [net] tcp: get rid of tcp_check_send_head() (Marcelo Leitner) [1764654]
+- [net] tcp: make sure EPOLLOUT wont be missed (Marcelo Leitner) [1764654]
+- [net] ipv4: set the tcp_min_rtt_wlen range from 0 to one day (Marcelo Leitner) [1764654]
+- [net] net-tcp: /proc/sys/net/ipv4/tcp_probe_interval is a u32 not int (Marcelo Leitner) [1764654]
+- [net] tcp: fix a race in inet_diag_dump_icsk() (Marcelo Leitner) [1764654]
+- [net] netfilter: nft_meta: Add NFT_META_I/OIFKIND meta type (Florian Westphal) [1763657]
+- [net] netfilter: nft_xfrm: use state family, not hook one (Florian Westphal) [1763654]
+- [net] netfilter: nf_tables: add xfrm expression (Florian Westphal) [1763654]
+- [net] netfilter: nf_tables: rt: allow checking if dst has xfrm attached (Florian Westphal) [1763654]
+- [netdrv] mlx5e: Fix unnecessary flow_block_cb_is_busy call (Ivan Vecera) [1737890]
+- [netdrv] nfp: flower: verify that block cb is not busy before binding (Ivan Vecera) [1737890]
+- [netdrv] net/mlx5e: Provide cb_list pointer when setting up tc block on rep (Ivan Vecera) [1737890]
+- [net] sched: Fix NULL-pointer dereference in tc_indr_block_ing_cmd() (Ivan Vecera) [1737890]
+- [net] flow_offload: add flow_block structure and use it (Ivan Vecera) [1737890]
+- [net] flow_offload: rename tc_setup_cb_t to flow_setup_cb_t (Ivan Vecera) [1737890]
+- [include] flow_offload: include linux/kernel.h from flow_offload.h (Ivan Vecera) [1737890]
+- [net] flow_offload: remove netns parameter from flow_block_cb_alloc() (Ivan Vecera) [1737890]
+- [net] openvswitch: rename flow_stats to sw_flow_stats (Ivan Vecera) [1737890]
+- [netdrv] mlx5e: Fix unused variable warning when CONFIG_MLX5_ESWITCH is off (Ivan Vecera) [1737890]
+- [netdrv] net: flow_offload: rename tc_cls_flower_offload to flow_cls_offload (Ivan Vecera) [1737890]
+- [net] flow_offload: add flow_block_cb_is_busy() and use it (Ivan Vecera) [1737890]
+- [net] sched: remove tcf block API (Ivan Vecera) [1737890]
+- [include] sched: use new symbol for TC kABI version (Ivan Vecera) [1737890]
+- [netdrv] use flow block API (Ivan Vecera) [1737890]
+- [net] sched: use flow block API (Ivan Vecera) [1737890]
+- [net] flow_offload: add flow_block_cb_{priv, incref, decref}() (Ivan Vecera) [1737890]
+- [net] flow_offload: add list handling functions (Ivan Vecera) [1737890]
+- [net] flow_offload: add flow_block_cb_alloc() and flow_block_cb_free() (Ivan Vecera) [1737890]
+- [net] flow_offload: rename TCF_BLOCK_BINDER_TYPE_* to FLOW_BLOCK_BINDER_TYPE_* (Ivan Vecera) [1737890]
+- [net] flow_offload: rename TC_BLOCK_{UN}BIND to FLOW_BLOCK_{UN}BIND (Ivan Vecera) [1737890]
+- [net] flow_offload: add flow_block_cb_setup_simple() (Ivan Vecera) [1737890]
+- [net] openvswitch: free vport unless register_netdevice() succeeds (Stefano Brivio) [1765580]
+- [net] openvswitch: Clear the L4 portion of the key for "later" fragments. (Stefano Brivio) [1765580]
+- [net] openvswitch: Properly set L4 keys on "later" IP fragments (Stefano Brivio) [1765580]
+- [net] openvswitch: Print error when ovs_execute_actions() fails (Stefano Brivio) [1765580]
+- [net] openvswitch: do not free vport if register_netdevice() is failed. (Stefano Brivio) [1765580]
+- [net] xfrm: policy: remove pcpu policy cache (Xin Long) [1743519]
+- [net] netem: correct the parent's backlog when corrupted packet was dropped (Davide Caratti) [1764553]
+- [net] netem: fix error path for corrupted GSO frames (Davide Caratti) [1764553]
+- [net] avoid potential infinite loop in tc_ctl_action() (Davide Caratti) [1764553]
+- [net] act_mirred: Fix mirred_init_module error handling (Davide Caratti) [1764553]
+- [net] sch_dsmark: fix potential NULL deref in dsmark_init() (Davide Caratti) [1764553]
+- [net] sch_cbq: validate TCA_CBQ_WRROPT to avoid crash (Davide Caratti) [1764553]
+- [net] sched: sch_sfb: don't call qdisc_put() while holding tree lock (Davide Caratti) [1764553]
+- [net] sched: multiq: don't call qdisc_put() while holding tree lock (Davide Caratti) [1764553]
+- [net] sched: sch_htb: don't call qdisc_put() while holding tree lock (Davide Caratti) [1764553]
+- [net] sched: fix possible crash in tcf_action_destroy() (Davide Caratti) [1764553]
+- [net] sch_netem: fix a divide by zero in tabledist() (Davide Caratti) [1764553]
+- [net] sched: act_sample: don't push mac header on ip6gre ingress (Davide Caratti) [1764553]
+- [net] net_sched: let qdisc_put() accept NULL pointer (Davide Caratti) [1764553]
+- [net] tcp: adjust rto_base in retransmits_timed_out() (Marcelo Leitner) [1756775]
+- [net] tcp: better handle TCP_USER_TIMEOUT in SYN_SENT state (Marcelo Leitner) [1756775]
+- [include] netlink: use 48 byte ctx instead of 6 signed longs for callback (Petr Oros) [1751273]
+- [net] rtnetlink: skip metrics loop for dst_default_metrics (Petr Oros) [1751273]
+- [include] netlink: Add field to skip in-kernel notifications (Petr Oros) [1751273]
+- [include] netlink: Document all fields of 'struct nl_info' (Petr Oros) [1751273]
+- [net] ipoib: show VF broadcast address (Petr Oros) [1751273]
+- [net] remove empty netlink_tap_exit_net (Petr Oros) [1751273]
+- [net] netlink: make netlink_walk_start() void return type (Petr Oros) [1751273]
+- [include] net: nexthop uapi (Petr Oros) [1751273]
+- [net] Treat sock->sk_drops as an unsigned int when printing (Petr Oros) [1751273]
+- [net] fix two coding style issues (Petr Oros) [1751273]
+- [net] ipset: drop ipset_nest_start() and ipset_nest_end() (Petr Oros) [1751273]
+- [net] netlink: make nla_nest_start() add NLA_F_NESTED flag (Petr Oros) [1751273]
+- [net] netfilter: nf_tables: fix a missing check of nla_put_failure (Petr Oros) [1751273]
+- [net] ncsi: fix a missing check for nla_nest_start (Petr Oros) [1751273]
+- [net] genetlink: use idr_alloc_cyclic for family->id assignment (Petr Oros) [1751273]
+- [net] netlink: Check address length before reading groups field (Petr Oros) [1751273]
+- [net] core: Fix rtnetlink kernel-doc headers (Petr Oros) [1751273]
+- [net] rhashtable: Remove obsolete rhashtable_walk_init function (Petr Oros) [1751273]
+- [net] netfilter: nf_tables: use rhashtable_walk_enter instead of rhashtable_walk_init (Petr Oros) [1751273]
+- [net] netlink: reduce NLA_POLICY_NESTED{, _ARRAY} arguments (Petr Oros) [1751273]
+- [net] netlink: rename NETLINK_DUMP_STRICT_CHK -> NETLINK_GET_STRICT_CHK (Petr Oros) [1751273]
+- [include] netlink: replace __NLA_ENSURE implementation (Petr Oros) [1751273]
+- [include] netlink: fix typo in nla_parse_nested() comment (Petr Oros) [1751273]
+- [net] netlink: remove hash::nelems check in netlink_insert (Petr Oros) [1751273]
+- [net] netlink: Make groups check less stupid in netlink_bind() (Petr Oros) [1751273]
+- [include] genetlink: constify genl_err_attr() argument (Petr Oros) [1751273]
+- [net] netlink: do not store start function in netlink_cb (Petr Oros) [1751273]
+- [include] linux: Add skb_frag_t page_offset accessors (Petr Oros) [1757515]
+- [include] net: add missing documentation in linux/skbuff.h (Petr Oros) [1757515]
+- [net] l2tp: Fix possible NULL pointer dereference (Stefano Brivio) [1764185]
+- [net] l2ip: fix possible use-after-free (Stefano Brivio) [1764185]
+- [net] l2tp: use rcu_dereference_sk_user_data() in l2tp_udp_encap_recv() (Stefano Brivio) [1764185]
+- [net] l2tp: fix infoleak in l2tp_ip6_recvmsg() (Stefano Brivio) [1764185]
+- [net] l2tp: copy 4 more bytes to linear part if necessary (Stefano Brivio) [1764185]
+- [net] l2tp: fix reading optional fields of L2TPv3 (Stefano Brivio) [1764185]
+- [net] l2tp: remove ->recv_payload_hook (Stefano Brivio) [1764185]
+- [net] l2tp: don't export l2tp_session_queue_purge() (Stefano Brivio) [1764185]
+- [net] l2tp: remove .show from struct l2tp_tunnel (Stefano Brivio) [1764185]
+- [netdrv] vxlan: do not destroy fdb if register_netdevice() is failed (Stefano Brivio) [1763793]
+- [net] ip6erspan: remove the incorrect mtu limit for ip6erspan (Stefano Brivio) [1763286]
+- [net] ipv6: Handle missing host route in __ipv6_ifa_notify (Stefano Brivio) [1763286]
+- [net] ipv6: drop incoming packets having a v4mapped source address (Stefano Brivio) [1763286]
+- [net] ip6_gre: fix a dst leak in ip6erspan_tunnel_xmit (Stefano Brivio) [1763286]
+- [net] mld: fix memory leak in mld_del_delrec() (Stefano Brivio) [1763286]
+- [net] ipv6: rt6_check should return NULL if 'from' is NULL (Stefano Brivio) [1763286]
+- [net] ipv6_sockglue: Fix a missing-check bug in ip6_ra_control() (Stefano Brivio) [1763286]
+- [net] ipv6_gre: Fix GRO to work on IPv6 over GRE tap (Stefano Brivio) [1763286]
+- [net] ipv4: Return -ENETUNREACH if we can't create route but saddr is valid (Stefano Brivio) [1686686]
+- [net] netfilter: nft_connlimit: disable bh on garbage collection (Florian Westphal) [1762844]
+- [net] netfilter: ebtables: Fix argument order to ADD_COUNTER (Florian Westphal) [1762844]
+- [net] netfilter: ebtables: CONFIG_COMPAT: reject trailing data after last rule (Florian Westphal) [1762844]
+- [net] netfilter: ebtables: CONFIG_COMPAT: drop a bogus WARN_ON (Florian Westphal) [1762844]
+- [net] netfilter: bridge: set skb transport_header before entering NF_INET_PRE_ROUTING (Florian Westphal) [1762844]
+- [net] netfilter: ebtables: also count base chain policies (Florian Westphal) [1762844]
+- [net] netfilter: ebtables: compat: un-break 32bit setsockopt when no rules are present (Florian Westphal) [1762844]
+- [net] sctp: change sctp_prot .no_autobind with true (Xin Long) [1762625]
+- [net] sctp: destroy bucket if failed to bind addr (Xin Long) [1762625]
+- [net] sctp: remove redundant assignment when call sctp_get_port_local (Xin Long) [1762625]
+- [net] sctp: change return type of sctp_get_port_local (Xin Long) [1762625]
+- [net] sctp: Fix the link time qualifier of 'sctp_ctrlsock_exit()' (Xin Long) [1762625]
+- [net] sctp: fix the missing put_user when dumping transport thresholds (Xin Long) [1762625]
+- [net] sctp: use transport pf_retrans in sctp_do_8_2_transport_strike (Xin Long) [1762625]
+- [net] sctp: allow users to set ep ecn flag by sockopt (Xin Long) [1762625]
+- [net] sctp: allow users to set netns ecn flag with sysctl (Xin Long) [1762625]
+- [net] sctp: make ecn flag per netns and endpoint (Xin Long) [1762625]
+- [net] sctp: remove net sctp.x_enable working as a global switch (Xin Long) [1762625]
+- [net] sctp: add SCTP_AUTH_SUPPORTED sockopt (Xin Long) [1762625]
+- [net] sctp: add sctp_auth_init and sctp_auth_free (Xin Long) [1762625]
+- [net] sctp: use ep and asoc auth_enable properly (Xin Long) [1762625]
+- [net] sctp: add SCTP_ASCONF_SUPPORTED sockopt (Xin Long) [1762625]
+- [net] sctp: check asoc peer.asconf_capable before processing asconf (Xin Long) [1762625]
+- [net] sctp: not set peer.asconf_capable in sctp_association_init (Xin Long) [1762625]
+- [net] sctp: add asconf_enable in struct sctp_endpoint (Xin Long) [1762625]
+- [net] sctp: fix memleak in sctp_send_reset_streams (Xin Long) [1762625]
+- [net] sctp: fix the transport error_count check (Xin Long) [1762625]
+- [net] sched: fix corrupted L2 header with MPLS 'push' and 'pop' actions (Ivan Vecera) [1737820]
+- [net] avoid errors when trying to pop MLPS header on non-MPLS packets (Ivan Vecera) [1737820]
+- [net] netfilter: connlabels: prefer static lock initialiser (Ivan Vecera) [1737820]
+- [net] sched: include mpls actions in hardware intermediate representation (Ivan Vecera) [1737820]
+- [net] sched: Make NET_ACT_CT depends on NF_NAT (Ivan Vecera) [1737820]
+- [tools] tc-tests: Add tc action ct tests (Ivan Vecera) [1737820]
+- [net] sched: cls_flower: Add matching on conntrack info (Ivan Vecera) [1737820]
+- [net] flow_dissector: add connection tracking dissection (Ivan Vecera) [1737820]
+- [net] sched: Introduce action ct (Ivan Vecera) [1737820]
+- [tools] tc-tests: actions: add MPLS tests (Ivan Vecera) [1737820]
+- [net] sched: add mpls manipulation actions to TC (Ivan Vecera) [1737820]
+- [net] core: add MPLS update core helper and use in OvS (Ivan Vecera) [1737820]
+- [net] core: move pop MPLS functionality from OvS to core helper (Ivan Vecera) [1737820]
+- [net] core: move push MPLS functionality from OvS to core helper (Ivan Vecera) [1737820]
+- [net] sched: Introduce act_ctinfo action (Ivan Vecera) [1737820]
+- [netdrv] mlx5e: Allow dissector meta key in tc flower (Ivan Vecera) [1762861]
+- [tools] selftests: tc: add ingress device matching support (Ivan Vecera) [1762861]
+- [net] flow_offload: implement support for meta key (Ivan Vecera) [1762861]
+- [net] sched: cls_flower: use flow_dissector for ingress ifindex (Ivan Vecera) [1762861]
+- [net] flow_dissector: add support for ingress ifindex dissection (Ivan Vecera) [1762861]
+- [net] udp: only do GSO if # of segs > 1 (Guillaume Nault) [1762357]
+- [net] udp: fix gso_segs calculations (Guillaume Nault) [1762357]
+- [tools] selftests: rtnetlink: add small test case with 'promote_secondaries' enabled (Petr Oros) [1759177]
+- [net] ipv4: fix infinite loop on secondary addr promotion (Petr Oros) [1759177]
+- [tools] selftests: rtnetlink: add addresses with fixed life time (Petr Oros) [1759177]
+- [net] ipv4: remove erroneous advancement of list pointer (Petr Oros) [1759177]
+- [net] ipv4: fix rcu lockdep splat due to wrong annotation (Petr Oros) [1759177]
+- [net] ipv4: provide __rcu annotation for ifa_list (Petr Oros) [1759177]
+- [drivers] use in_dev_for_each_ifa_rtnl/rcu (Petr Oros) [1759177]
+- [net] use new in_dev_ifa iterators (Petr Oros) [1759177]
+- [net] netfilter: use in_dev_for_each_ifa_rcu (Petr Oros) [1759177]
+- [net] devinet: use in_dev_for_each_ifa_rcu in more places (Petr Oros) [1759177]
+- [net] inetdevice: provide replacement iterators for in_ifaddr walk (Petr Oros) [1759177]
+- [fs] afs: do not send list of client addresses (Petr Oros) [1759177]
+- [net] sctp: add SCTP_SEND_FAILED_EVENT event (Xin Long) [1751129]
+- [net] sctp: add SCTP_ADDR_MADE_PRIM event (Xin Long) [1751129]
+- [net] sctp: add SCTP_ADDR_REMOVED event (Xin Long) [1751129]
+- [net] sctp: add SCTP_ADDR_ADDED event (Xin Long) [1751129]
+- [netdrv] team: call RCU read lock when walking the port_list (Hangbin Liu) [1724896]
+- [net] packet: fix race in tpacket_snd() (Davide Caratti) [1760276]
+- [net] packet: fix memory leak in packet_set_ring() (Davide Caratti) [1760276]
+- [net] packet: unconditionally free po->rollover (Davide Caratti) [1760276]
+- [net] llc: fix skb leak in llc_build_and_send_ui_pkt() (Davide Caratti) [1760276]
+- [net] af_key: fix leaks in key_pol_get_resp and dump_sp. (Davide Caratti) [1760276]
+- [net] packet: in recvmsg msg_name return at least sizeof sockaddr_ll (Davide Caratti) [1760276]
+- [net] packet: Set __GFP_NOWARN upon allocation in alloc_pg_vec (Davide Caratti) [1760276]
+- [net] packet: fix 4gb buffer limit due to overflow check (Davide Caratti) [1760276]
+- [net] llc: do not use sk_eat_skb() (Davide Caratti) [1760276]
+- [fs] proc: fix /proc/net/* after setns(2) (Davide Caratti) [1760276]
+- [net] Unpublish sk from sk_reuseport_cb before call_rcu (Paolo Abeni) [1760409]
+- [net] Fix null de-reference of device refcount (Paolo Abeni) [1760409]
+- [include] ipv4: Define __ipv4_neigh_lookup_noref when CONFIG_INET is disabled (Paolo Abeni) [1760409]
+- [net] neighbor: Call __ipv4_neigh_lookup_noref in neigh_xmit (Paolo Abeni) [1760409]
+- [net] ebpf: record usage of flow dissector (Jiri Benc) [1749812]
+- [tools] selftests/bpf: More compatible nc options in test_lwt_ip_encap (Jiri Benc) [1749812]
+- [tools] selftests/bpf: Set rp_filter in test_flow_dissector (Jiri Benc) [1749812]
+- [net] bpf: lwtunnel: fix reroute supplying invalid dst (Jiri Benc) [1749812]
+- [kernel] rh_features: convert to atomic allocation (Jiri Benc) [1749812]
+- [net] xsk: lock the control mutex in sock_diag interface (Jiri Benc) [1749812]
+- [documentation] networking: fix af_xdp.rst Sphinx warnings (Jiri Benc) [1749812]
+- [documentation] flow_dissector: rst'ify documentation (Jiri Benc) [1749812]
+- [documentation] flow_dissector: document BPF flow dissector environment (Jiri Benc) [1749812]
+- [net] xsk: fix umem memory leak on cleanup (Jiri Benc) [1749812]
+- [net] xsk: fix to reject invalid options in Tx descriptor (Jiri Benc) [1749812]
+- [net] xsk: fix to reject invalid flags in xsk_bind (Jiri Benc) [1749812]
+- [net] xsk: fix potential crash in xsk_diag_put_umem() (Jiri Benc) [1749812]
+- [net] bpfilter: re-add header search paths to tools include to fix build error (Jiri Benc) [1749812]
+- [documentation] xsk: add FAQ to facilitate for first time users (Jiri Benc) [1749812]
+- [net] bpf/test_run: fix unkillable BPF_PROG_TEST_RUN for flow dissector (Jiri Benc) [1749812]
+- [tools] sync uapi/linux/if_link.h header (Jiri Benc) [1749812]
+- [net] xdp: allow generic and driver XDP on one interface (Jiri Benc) [1749812]
+- [net] xdp: Provide extack messages when prog attachment failed (Jiri Benc) [1749812]
+- [net] bpfilter: remove extra header search paths for bpfilter_umh (Jiri Benc) [1749812]
+- [include] bpf: fix missing prototype warnings (Jiri Benc) [1749812]
+- [net] xsk: add sock_diag interface for AF_XDP (Jiri Benc) [1749812]
+- [net] xsk: add id to umem (Jiri Benc) [1749812]
+- [net] xsk: track AF_XDP sockets on a per-netns list (Jiri Benc) [1749812]
+- [include] redhat: rh_kabi: introduce RH_KABI_EXTEND_WITH_SIZE (Jiri Benc) [1749812]
+- [net] tcp: Avoid TCP syncookie rejected by SO_REUSEPORT socket (Jiri Benc) [1749812]
+- [net] tcp: use monotonic timestamps for PAWS (Jiri Benc) [1749812]
+- [net] tcp: remove one indentation level in tcp_create_openreq_child (Jiri Benc) [1749812]
+- [netdrv] ppp: Fix memory leak in ppp_write (Guillaume Nault) [1759312]
+- [netdrv] ppp: deflate: Fix possible crash in deflate_init (Guillaume Nault) [1759312]
+- [netdrv] pppoe: fix reception of frames with no mac header (Guillaume Nault) [1759312]
+- [net] tcp_bbr: fix quantization code to not raise cwnd if not probing bandwidth (Florian Westphal) [1759208]
+- [net] tcp_bbr: refactor bbr_target_cwnd() for general inflight provisioning (Florian Westphal) [1759208]
+- [net] tcp_bbr: centralize code to set gains (Florian Westphal) [1759208]
+- [net] tcp_bbr: apply PROBE_RTT cwnd cap even if acked==0 (Florian Westphal) [1759208]
+- [net] tcp_bbr: in restart from idle, see if we should exit PROBE_RTT (Florian Westphal) [1759208]
+- [net] tcp_bbr: add bbr_check_probe_rtt_done() helper (Florian Westphal) [1759208]
+- [net] xfrm/xfrm_policy: fix dst dev null pointer dereference in collect_md mode (Hangbin Liu) [1734589]
+- [tools] selftests: forwarding: gre_multipath: Fix flower filters (Hangbin Liu) [1756832]
+- [tools] selftests: forwarding: gre_multipath: Enable IPv4 forwarding (Hangbin Liu) [1756832]
+- [tools] set sysctl bc_forwarding properly in router_broadcast.sh (Hangbin Liu) [1756832]
+- [tools] selftests: fib_rule_tests: enable forwarding before ipv4 from/iif test (Hangbin Liu) [1756832]
+- [tools] selftests: fib_rule_tests: use pre-defined DEV_ADDR (Hangbin Liu) [1756832]
+- [tools] selftests: fib_rule_tests: fix local IPv4 address typo (Hangbin Liu) [1756832]
+- [tools] selftests: fib_rule_tests: print the result and return 1 if any tests failed (Hangbin Liu) [1756832]
+- [tools] selftests: fib_tests: Fix 'Command line is not complete' errors (Hangbin Liu) [1756832]
+- [tools] selftests: Update fib_tests to handle missing ping6 (Hangbin Liu) [1756832]
+- [tools] fib_tests: Add tests for metrics on routes (Hangbin Liu) [1756832]
+- [tools] selftests: udpgso_bench.sh explicitly requires bash (Hangbin Liu) [1756832]
+- [tools] selftests/net: add tls to .gitignore (Hangbin Liu) [1756832]
+- [net] ipv4: avoid mixed n_redirects and rate_tokens usage (Paolo Abeni) [1753092]
+- [lib] netlink: set bad attribute also on maxtype check (Petr Oros) [1757776]
+- [lib] netlink: add validation of NLA_F_NESTED flag (Petr Oros) [1757776]
+- [net] ila: Fix rhashtable walker list corruption (Petr Oros) [1757776]
+- [lib] ila: make lockdep happy again (Petr Oros) [1757776]
+- [net] genetlink: do not validate dump requests if there is no policy (Petr Oros) [1757776]
+- [include] netlink: Fix nlmsg_parse as a wrapper for strict message parsing (Petr Oros) [1757776]
+- [net] tipc: fix missing indentation in source code (Petr Oros) [1757776]
+- [net] genetlink: optionally validate strictly/dumps (Petr Oros) [1757776]
+- [lib] netlink: add strict parsing for future attributes (Petr Oros) [1757776]
+- [include] netlink: re-add parse/validate functions in strict mode (Petr Oros) [1757776]
+- [net] netlink: make validation more configurable for future strictness (Petr Oros) [1757776]
+- [lib] netlink: add NLA_MIN_LEN (Petr Oros) [1757776]
+- [net] genetlink: make policy common to family (Petr Oros) [1757776]
+- [net] ila: Flush netlink command to clear xlat table (Petr Oros) [1757776]
+- [net] ila: Create main ila source file (Petr Oros) [1757776]
+- [net] ila: Call library function alloc_bucket_locks (Petr Oros) [1757776]
+- [net] ila: Fix use of rhashtable walk in ila_xlat.c (Petr Oros) [1757776]
+- [net] rtnetlink: fix rtnl_valid_stats_req() nlmsg_len check (Petr Oros) [1757750]
+- [net] mpls: netconf: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] mpls: route: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] ipv6: route: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] ipv6: addrlabel: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] ipv6: netconf: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] ipv6: addr: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] ipv4: ipmr: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] ipv4: route: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] ipv4: netconf: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] namespace: perform strict checks also for doit handlers (Petr Oros) [1757750]
+- [net] rtnetlink: ifinfo: perform strict checks also for doit handler (Petr Oros) [1757750]
+- [net] rtnetlink: stats: reject requests for unknown stats (Petr Oros) [1757750]
+- [net] rtnetlink: stats: validate attributes in get as well as dumps (Petr Oros) [1757750]
+- [net] netlink: add helper to retrieve NETLINK_F_STRICT_CHK (Petr Oros) [1757750]
+- [include] linux/netlink.h: drop unnecessary extern prefix (Petr Oros) [1757750]
+- [net] rtnetlink: avoid frame size warning in rtnl_newlink() (Petr Oros) [1757750]
+- [net] rtnetlink: remove a level of indentation in rtnl_newlink() (Petr Oros) [1757750]
+- [net] rtnetlink: Add more extack messages to rtnl_newlink (Petr Oros) [1757750]
+- [net] netfilter: nf_tables: allow lookups in dynamic sets (Florian Westphal) [1759074]
+- [net] netfilter: nf_tables: check the result of dereferencing base_chain->stats (Florian Westphal) [1759074]
+- [net] revert "netfilter: nft_hash: add map lookups for hashing operations" (Florian Westphal) [1759074]
+- [net] netfilter: nf_tables: don't prevent event handler from device cleanup on netns exit (Florian Westphal) [1759074]
+- [net] netfilter: nft_ct: enable conntrack for helpers (Florian Westphal) [1759074]
+- [net] netfilter: conntrack: always store window size un-scaled (Florian Westphal) [1758668]
+- [net] netfilter: synproxy: fix rst sequence number mismatch (Florian Westphal) [1758668]
+- [net] netfilter: synproxy: fix erroneous tcp mss option (Florian Westphal) [1758668]
+- [net] netfilter: nfnetlink: avoid deadlock due to synchronous request_module (Florian Westphal) [1758668]
+- [net] netfilter: nf_queue: fix reinject verdict handling (Florian Westphal) [1758668]
+- [net] netfilter: conntrack: Use consistent ct id hash calculation (Florian Westphal) [1758668]
+- [net] netfilter: ctnetlink: don't use conntrack/expect object addresses as id (Florian Westphal) [1758668]
+- [net] netfilter: bridge: Don't sabotage nf_hook calls for an l3mdev slave (Florian Westphal) [1758668]
+- [net] netfilter: avoid using skb->nf_bridge directly (Florian Westphal) [1758668]
+- [net] netfilter: nat: can't use dst_hold on noref dst (Florian Westphal) [1758668]
+- [net] netfilter: bridge: Don't sabotage nf_hook calls from an l3mdev (Florian Westphal) [1758668]
+- [net] netfilter: conntrack: fix removal of conntrack entries when l4tracker is removed (Florian Westphal) [1758668]
+- [net] netfilter: xt_hashlimit: fix a possible memory leak in htable_create() (Florian Westphal) [1758668]
+- [net] netfilter: xt_TEE: add missing code to get interface index in checkentry. (Florian Westphal) [1758668]
+- [net] netfilter: xt_TEE: fix wrong interface selection (Florian Westphal) [1758668]
+- [net] netfilter: xtables: avoid BUG_ON (Florian Westphal) [1758668]
+- [net] netfilter: nat: limit port clash resolution attempts (Florian Westphal) [1758646]
+- [net] netfilter: nat: remove l4 protocol port rovers (Florian Westphal) [1758646]
+- [net] neighbour: remove stray semicolon (Ivan Vecera) [1757459]
+- [net] neighbor: Initialize protocol when new pneigh_entry are created (Ivan Vecera) [1757459]
+- [net] neighbour: register rtnl doit handler (Ivan Vecera) [1757459]
+- [net] neighbor: Add protocol attribute (Ivan Vecera) [1757459]
+- [net] neighbor: Add extack messages for add and delete commands (Ivan Vecera) [1757459]
+- [net] rtnetlink: address is mandatory for rtnl_fdb_get (Ivan Vecera) [1757105]
+- [netdrv] vxlan: support for ndo_fdb_get (Ivan Vecera) [1757105]
+- [net] rtnetlink: support for fdb get (Ivan Vecera) [1757105]
+- [net] bridge: support for ndo_fdb_get (Ivan Vecera) [1757105]
+- [net] ipmr: remove hard code cache_resolve_queue_len limit (Hangbin Liu) [1631022]
+- [net] ipv6/addrconf: allow adding multicast addr if IFA_F_MCAUTOJOIN is set (Hangbin Liu) [1740961]
+- [net] xfrm interface: fix management of phydev (Xin Long) [1727240]
+- [net] xfrm interface: fix list corruption for x-netns (Xin Long) [1727240]
+- [net] xfrm interface: ifname may be wrong in logs (Xin Long) [1727240]
+- [net] xfrm interface: avoid corruption on changelink (Xin Long) [1727240]
+- [net] netlink: add validation function to policy (Ivan Vecera) [1753333]
+- [net] netlink: add attribute range validation to policy (Ivan Vecera) [1753333]
+- [net] sched: police: allow accessing police->params with rtnl (Ivan Vecera) [1731416]
+- [net] sched: remove block pointer from common offload structure (Ivan Vecera) [1731416]
+- [net] nfp: flower: add qos offload install and remove functionality. (Ivan Vecera) [1731416]
+- [net] nfp: flower: add qos offload framework (Ivan Vecera) [1731416]
+- [net] sched: add block pointer to tc_cls_common_offload structure (Ivan Vecera) [1731416]
+- [net] sched: allow stats updates from offloaded police actions (Ivan Vecera) [1731416]
+- [net] sched: extend matchall offload for hardware statistics (Ivan Vecera) [1731416]
+- [net] sched: add police action to the hardware intermediate representation (Ivan Vecera) [1731416]
+- [net] sched: move police action structures to header (Ivan Vecera) [1731416]
+- [net] sched: remove unused functions for matchall offload (Ivan Vecera) [1731416]
+- [net] dsa: use intermediate representation for matchall offload (Ivan Vecera) [1731416]
+- [netdrv] mlxsw: use intermediate representation for matchall offload (Ivan Vecera) [1731416]
+- [net] tipc: disallow enabling of loopback interface bearer (Jon Maloy) [1717305]
+- [net] tipc: add NULL pointer check before calling kfree_rcu (Jon Maloy) [1747392]
+- [net] xsk: Return the whole xdp_desc from xsk_umem_consume_tx (Ivan Vecera) [1748497]
+- [net] devlink: add warning for ndo_get_port_parent_id set when not needed (Petr Oros) [1737133]
+- [net] devlink: introduce devlink_compat_switch_id_get() helper (Petr Oros) [1737133]
+- [net] devlink: extend port attrs for switch ID (Petr Oros) [1737133]
+- [net] devlink: convert devlink_port_attrs bools to bits (Petr Oros) [1737133]
+- [net] devlink: add warning for ndo_get_phys_port_name set when not needed (Petr Oros) [1737133]
+- [netdrv] nfp: move devlink port type set after netdev registration (Petr Oros) [1737133]
+- [netdrv] dsa: move devlink_port_attrs_set() call before register (Petr Oros) [1737133]
+- [netdrv] mlxsw: Move devlink_port_attrs_set() call before register (Petr Oros) [1737133]
+- [netdrv] bnxt: set devlink port type after registration (Petr Oros) [1737133]
+- [netdrv] bnxt: call devlink_port_type_eth_set() before port register (Petr Oros) [1737133]
+- [netdrv] bnxt: set devlink port attrs properly (Petr Oros) [1737133]
+- [netdrv] dsa: add missing net/devlink.h include (Petr Oros) [1737133]
+- [netdrv] bnxt: add missing net/devlink.h include (Petr Oros) [1737133]
+- [netdrv] revert "devlink: Add a generic wake_on_lan port parameter" (Petr Oros) [1737133]
+- [netdrv] bnxt_en: Add bnxt_en initial port params table and register it (Petr Oros) [1737133]
+- [netdrv] mlxsw: spectrum: Assume CONFIG_NET_DEVLINK is always enabled (Petr Oros) [1737527]
+- [netdrv] netdevsim: assume CONFIG_NET_DEVLINK is always enabled (Petr Oros) [1737527]
+- [net] devlink: introduce devlink_compat_phys_port_name_get() (Petr Oros) [1737527]
+- [net] replace ndo_get_devlink with ndo_get_devlink_port (Petr Oros) [1737527]
+- [net] devlink: select NET_DEVLINK from drivers (Petr Oros) [1737527]
+- [net] devlink: add port type spinlock (Petr Oros) [1737527]
+- [net] devlink: warn on setting type on unregistered port (Petr Oros) [1737527]
+- [net] devlink: disallow port_attrs_set() to be called before register (Petr Oros) [1737527]
+- [net] devlink: don't pass return value of __devlink_port_type_set() (Petr Oros) [1737527]
+- [net] devlink: don't take devlink_mutex for devlink_compat_* (Petr Oros) [1737527]
+- [net] devlink: add couple of missing mutex_destroy() calls (Petr Oros) [1737527]
+- [net] devlink: fix kdoc (Petr Oros) [1737527]
+- [net] devlink: require non-NULL ops for devlink instances (Petr Oros) [1737527]
+- [net] devlink: hold a reference to the netdevice around ethtool compat (Petr Oros) [1737527]
+- [net] devlink: create a special NDO for getting the devlink instance (Petr Oros) [1737527]
+- [net] devlink: Add WARN_ON to catch errors of not cleaning devlink objects (Petr Oros) [1737527]
+- [netdrv] s390/qeth: fix xmit_more support (Ivan Vecera) [1734516]
+- [netdrv] revert "[netdrv] gve: account for lack of netdev_xmit_more() definition (RHEL-only)" (Ivan Vecera) [1734516]
+- [netdrv] net/mlx5e: Fix wrong xmit_more application (Ivan Vecera) [1734516]
+- [include] net: use correct this_cpu primitive in dev_recursion_level (Ivan Vecera) [1734516]
+- [netdrv] drivers: net: aurora: use netdev_xmit_more helper (Ivan Vecera) [1734516]
+- [netdrv] drivers: net: sfc: use netdev_xmit_more helper (Ivan Vecera) [1734516]
+- [netdrv] drivers: mellanox: use netdev_xmit_more() helper (Ivan Vecera) [1734516]
+- [netdrv] net: move skb->xmit_more hint to softnet data (Ivan Vecera) [1734516]
+- [net] place xmit recursion in softnet data (Ivan Vecera) [1734516]
+
+* Fri Nov 15 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-151.el8]
+- [netdrv] net: ena: clean up indentation issue (John Linville) [1770979]
+- [netdrv] net: ena: Select DIMLIB for ENA_ETHERNET (John Linville) [1770979]
+- [netdrv] net: ena: fix incorrect update of intr_delay_resolution (John Linville) [1770979]
+- [netdrv] net: ena: fix retrieval of nonadaptive interrupt moderation intervals (John Linville) [1770979]
+- [netdrv] net: ena: fix update of interrupt moderation register (John Linville) [1770979]
+- [netdrv] net: ena: remove all old adaptive rx interrupt moderation code from ena_com (John Linville) [1770979]
+- [netdrv] net: ena: remove ena_restore_ethtool_params() and relevant fields (John Linville) [1770979]
+- [netdrv] net: ena: remove old adaptive interrupt moderation code from ena_netdev (John Linville) [1770979]
+- [netdrv] net: ena: remove code duplication in ena_com_update_nonadaptive_moderation_interval _*() (John Linville) [1770979]
+- [netdrv] net: ena: enable the interrupt_moderation in driver_supported_features (John Linville) [1770979]
+- [netdrv] net: ena: reimplement set/get_coalesce() (John Linville) [1770979]
+- [netdrv] net: ena: switch to dim algorithm for rx adaptive interrupt moderation (John Linville) [1770979]
+- [netdrv] net: ena: add intr_moder_rx_interval to struct ena_com_dev and use it (John Linville) [1770979]
+
+* Thu Nov 14 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-150.el8]
+- [fs] autofs: add ignore mount option (Ian Kent) [1743441]
+- [fs] autofs: improve ioctl sbi checks (Ian Kent) [1672133]
+- [crypto] crypto: ccp - Retry SEV INIT command in case of integrity check failure. (Gary Hook) [1767627]
+- [crypto] crypto: ccp - Verify access to device registers before initializing (Gary Hook) [1756867]
+- [crypto] crypto: ccp - Change a message to reflect status instead of failure (Gary Hook) [1756867]
+- [netdrv] ixgbevf: Bump version for RHEL 8.2.0 (Ken Cox) [1721701]
+- [netdrv] ixgbevf: Fix secpath usage for IPsec Tx offload (Ken Cox) [1721701]
+- [netdrv] ixgbevf: make array api static const, makes object smaller (Ken Cox) [1721701]
+- [netdrv] ixgbevf: Link lost in VM on ixgbevf when restoring from freeze or suspend (Ken Cox) [1721701]
+- [netdrv] ixgbevf: fix a compilation error of skb_frag_t (Ken Cox) [1721701]
+- [netdrv] net: Use skb accessors in network drivers (Ken Cox) [1721701]
+- [netdrv] ixgbevf: Use cached link state instead of re-reading the value for ethtool (Ken Cox) [1721701]
+- [netdrv] ixgbevf: fix possible divide by zero in ixgbevf_update_itr (Ken Cox) [1721701]
+- [netdrv] ixgbevf: fix a missing check of ixgbevf_write_msg_read_ack (Ken Cox) [1721701]
+- [infiniband] IB/hfi1: Use a common pad buffer for 9B and 16B packets (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Avoid excessive retry for TID RDMA READ request (Honggang Li) [1719676]
+- [infiniband] RDMA/hfi1: Prevent memory leak in sdma_init (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: remove unlikely() from IS_ERR*() condition (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Define variables as unsigned long to fix KASAN warning (Honggang Li) [1719676]
+- [infiniband] IB/{rdmavt, hfi1, qib}: Add a counter for credit waits (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Add traces for TID RDMA READ (Honggang Li) [1719676]
+- [infiniband] infiniband: hfi1: fix memory leaks (Honggang Li) [1719676]
+- [infiniband] infiniband: hfi1: fix a memory leak bug (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Drop stale TID RDMA packets that cause TIDErr (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Add additional checks when handling TID RDMA WRITE DATA packet (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Add additional checks when handling TID RDMA READ RESP packet (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Unsafe PSN checking for TID RDMA READ Resp packet (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Drop stale TID RDMA packets (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Fix Spectre v1 vulnerability (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Remove unused define (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Do not update hcrc for a KDETH packet during fault injection (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Drop all TID RDMA READ RESP packets after r_next_psn (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Field not zero-ed when allocating TID flow memory (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Unreserve a flushed OPFN request (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Check for error on call to alloc_rsm_map_table (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Fix variable shadowing issue in rvt_create_cq (Honggang Li) [1719676]
+- [infiniband] RDMA/rvt: Do not use a kernel header in the ABI (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: No need to use try_module_get for debugfs (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Add trace for map_mr_sg (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Enhance trace information for FRWR debug (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Add missing INVALIDATE opcodes for trace (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Reduce excessive aspm inlines (Honggang Li) [1719676]
+- [infiniband] IB/{rdmavt, hfi1, qib}: Add helpers to hide SWQE WR details (Honggang Li) [1719676]
+- [infiniband] IB/{rdmavt, hfi1, qib}: Remove AH refcount for UD QPs (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Set QP allowed opcodes after QP allocation (Honggang Li) [1719676]
+- [infiniband] IB/{hfi1, qib, rdmavt}: Put qp in error state when cq is full (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Fracture single lock used for posting and processing RWQEs (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Move receive work queue struct into uapi directory (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Move rvt_cq_wc struct into uapi directory (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Add new completion inline (Honggang Li) [1719676]
+- [infiniband] IB/{rdmavt, qib, hfi1}: Convert to new completion API (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Spelling s/statisfied/satisfied/ (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Handle port down properly in pio (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Handle wakeup of orphaned QPs for pio (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Wakeup QPs orphaned on wait list after flush (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Use aborts to trigger RC throttling (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Create inline to get extended headers (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Silence txreq allocation warnings (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Avoid hardlockup with flushlist_lock (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Correct tid qp rcd to match verbs context (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Close PSM sdma_progress sleep window (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Validate fault injection opcode user input (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Use struct_size() helper (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Use struct_size() helper (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Validate page aligned for a given virtual address (Honggang Li) [1719676]
+- [infiniband] IB/{qib, hfi1, rdmavt}: Correct ibv_devinfo max_mr value (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Insure freeze_work work_struct is canceled on shutdown (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Fix alloc_qpn() WARN_ON() (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Remove set but not used variables 'offset' and 'fspsn' (Honggang Li) [1719676]
+- [infiniband] RDMA/rdmavt: Catch use-after-free access of AH structures (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Remove reference to RHF.VCRCErr (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Add selected Rcv counters (Honggang Li) [1719676]
+- [infiniband] IB/{rdmavt, qib, hfi1}: Use new routine to release reference counts (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Use more efficient allowed_ops (Honggang Li) [1719676]
+- [infiniband] IB/rdmavt: Fix ab/ba include issues (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Make opfn.h self sufficient (Honggang Li) [1719676]
+- [infiniband] IB/{rdmavt, hfi1): Miscellaneous comment fixes (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Add debugfs to control expansion ROM write protect (Honggang Li) [1719676]
+- [infiniband] hfi1: Convert hfi1_unit_table to XArray (Honggang Li) [1719676]
+- [infiniband] hfi1: Convert vesw_idr to XArray (Honggang Li) [1719676]
+- [infiniband] RDMA/rdmavt: Use correct sizing on buffers holding page DMA addresses (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Fix two format strings (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Add running average for adaptive pio (Honggang Li) [1719676]
+- [infiniband] mm: replace all open encodings for NUMA_NO_NODE (Honggang Li) [1719676]
+- [infiniband] drivers/IB,hfi1: do not se mmap_sem (Honggang Li) [1719676]
+- [infiniband] IB/hfi1: Suppress a compiler warning (Honggang Li) [1719676]
+- [scsi] qla2xxx: Update driver version (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: don't use zero for FC4_PRIORITY_NVME (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: initialize fc4_type_priority (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: fix NPIV tear down process (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Remove an include directive (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Fix device connect issues in P2P configuration (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Improve logging for scan thread (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Capture FW dump on MPI heartbeat stop event (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Check for MB timeout while capturing ISP27/28xx FW dump (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Set remove flag for all VP (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Add error handling for PLOGI ELS passthrough (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Dual FCP-NVMe target port support (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Fix a dma_pool_free() call (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Fix memory leak when sending I/O fails (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Fix driver unload hang (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Fix SRB leak on switch command timeout (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Fix double scsi_done for abort path (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Do command completion on abort timeout (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Reduce the number of forward declarations (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: fixup incorrect usage of host_byte (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Fix partial flash write of MBI (Himanshu Madhani) [1763248]
+- [scsi] scsi: qla2xxx: Remove WARN_ON_ONCE in qla2x00_status_cont_entry() (Himanshu Madhani) [1763248]
+- [scsi] qla2xxx: Fix conflict_port check for NULL (Himanshu Madhani) [1763248]
+- [netdrv] Bump version for RHEL 8.2.0 (Ken Cox) [1721700]
+- [netdrv] ixgbe: Fix secpath usage for IPsec TX offload. (Ken Cox) [1721700]
+- [netdrv] ixgbe: fix double clean of Tx descriptors with xdp (Ken Cox) [1721700]
+- [netdrv] ixgbe: Prevent u8 wrapping of ITR value to something less than 10us (Ken Cox) [1721700]
+- [netdrv] ixgbe: use skb_get_queue_mapping in tx path (Ken Cox) [1721700]
+- [netdrv] ixgbe: fix memory leaks (Ken Cox) [1721700]
+- [netdrv] ixgbe: sync the first fragment unconditionally (Ken Cox) [1721700]
+- [netdrv] ixgbe: Use kzfree() rather than its implementation. (Ken Cox) [1721700]
+- [netdrv] ixgbe: simplify Rx buffer recycle (Ken Cox) [1721700]
+- [netdrv] ixgbe: no need to check return value of debugfs_create functions (Ken Cox) [1721700]
+- [netdrv] ixgbe: fix possible deadlock in ixgbe_service_task() (Ken Cox) [1721700]
+- [netdrv] net: Use skb accessors in network drivers (Ken Cox) [1721700]
+- [netdrv] ixgbe: fix potential u32 overflow on shift (Ken Cox) [1721700]
+- [netdrv] ixgbe: Avoid NULL pointer dereference with VF on non-IPsec hw (Ken Cox) [1721700]
+- [netdrv] ixgbe: Check DDM existence in transceiver before access (Ken Cox) [1721700]
+- [netdrv] ixgbe: implement support for SDP/PPS output on X550 hardware (Ken Cox) [1721700]
+- [netdrv] ixgbe: Use LLDP ethertype define ETH_P_LLDP (Ken Cox) [1721700]
+- [netdrv] ixgbe: add a kernel documentation comment for ixgbe_ptp_get_ts_config (Ken Cox) [1721700]
+- [netdrv] ixgbe: use 'cc' instead of 'hw_cc' for local variable (Ken Cox) [1721700]
+- [netdrv] ixgbe: fix PTP SDP pin setup on X540 hardware (Ken Cox) [1721700]
+- [netdrv] ixgbe: reduce PTP Tx timestamp timeout to 1 second (Ken Cox) [1721700]
+- [netdrv] ixgbe: fix AF_XDP tx packet count (Ken Cox) [1721700]
+- [netdrv] ixgbe: fix AF_XDP tx byte count (Ken Cox) [1721700]
+- [netdrv] ixgbe: remove umem from adapter (Ken Cox) [1721700]
+- [netdrv] ixgbe: add tracking of AF_XDP zero-copy state for each queue pair (Ken Cox) [1721700]
+- [netdrv] ixgbe: fix mdio bus registration (Ken Cox) [1721700]
+- [netdrv] nfp: bpf: implement jitting of JMP32 (Pablo Cascon) [1729067]
+- [netdrv] nfp: bpf: support removing dead code (Pablo Cascon) [1729067]
+- [netdrv] nfp: bpf: support optimizing dead branches (Pablo Cascon) [1729067]
+- [netdrv] nfp: bpf: save original program length (Pablo Cascon) [1729067]
+- [netdrv] nfp: bpf: split up the skip flag (Pablo Cascon) [1729067]
+- [netdrv] nfp: bpf: don't use instruction number for jump target (Pablo Cascon) [1729067]
+- [scsi] scsi: target: iscsi: rename some variables to avoid confusion. (Maurizio Lombardi) [1769801]
+- [scsi] scsi: target: iscsi: tie the challenge length to the hash digest size (Maurizio Lombardi) [1769801]
+- [scsi] scsi: target: iscsi: CHAP: add support for SHA1, SHA256 and SHA3-256 (Maurizio Lombardi) [1769801]
+- [scsi] scsi: target: compare full CHAP_A Algorithm strings (Maurizio Lombardi) [1769801]
+- [arm64] arm64: topology: Use PPTT to determine if PE is a thread (Jeremy Linton) [1721297]
+- [acpi] ACPI/PPTT: Add support for ACPI 6.3 thread flag (Jeremy Linton) [1721297]
+- [acpi] ACPI / LPSS: Save/restore LPSS private registers also on Lynxpoint (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [documentation] docs: fix numaperf.rst and add it to the doc tree (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Rename arm_smmu_v3_set_proximity() 'node' local variable (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [misc] h8300: pci: Remove local declaration of pcibios_penalize_isa_irq (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [mm] mmc: sdhci-acpi: Make PCI dependency explicit (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [ata] ata: pata_acpi: Make PCI dependency explicit (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [gpu] vga-switcheroo: make PCI dependency explicit (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [platform] platform/x86: intel_ips: make PCI dependency explicit (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [platform] platform/x86: intel_pmc: Make PCI dependency explicit (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [platform] platform/x86: apple-gmux: Make PCI dependency explicit (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [x86] x86/intel/lpss: Make PCI dependency explicit (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [x86] x86/Kconfig: Select PCI_LOCKLESS_CONFIG if PCI is enabled (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [mfd] mfd: Fix unmet dependency warning for MFD_TPS68470 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] drivers/acpi/scan.c: document why we don't need the device_hotplug_lock (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Fix regression in acpi_device_set_power() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Fix off-by-one check in iort_dev_find_its_id() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: video: Add new hw_changes_brightness quirk, set it on PB Easynote MZ35 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: blacklist: fix clang warning for unused DMI table (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] Revert "ACPICA: Update table load object initialization" (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Make acpi_sleep_state_supported() non-static (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Remove needless __ghes_check_estatus() calls (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Unexport acpi_device_get_power() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] PCI / ACPI: Use cached ACPI device state to get PCI device power state (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20190703 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update table load object initialization (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update for object initialization sequence (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: remove legacy module-level code due to deprecation (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Namespace: simplify creation of the initial/default namespace (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: intel: Drop double removal of address space handler (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: APD: remove redundant assignment to pointer clk (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Introduce "poweroff" callbacks for ACPI PM domain and LPSS (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Simplify and fix PM domain hibernation callbacks (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] PM: ACPI/PCI: Resume all devices during hibernation (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] PCI: PM/ACPI: Refresh all stale power state data in pci_pm_complete() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/PPTT: Add function to return ACPI 6.3 Identical tokens (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/PPTT: Modify node flag detection to find last IDENTICAL (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PM: Introduce concept of a _PR0 dependent device (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Allow transitions to D0 to occur in special cases (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Avoid evaluating _PS3 on transitions from D3hot to D3cold (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi: utils: Cleanup acpi_dev_match_cb (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: Make AC and battery drivers available on !X86 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] coresight: acpi: Support for AMBA components (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Clear status of GPEs on first direct enable (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: configfs: Resolve objects on host-directed table loads (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: tables: Allow BGRT to be overridden (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / sleep: Switch to use acpi_dev_get_first_match_dev() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [include] gpio: merrifield: Fix build err without CONFIG_ACPI (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: OSL: Make a W=1 kernel-doc warning go away (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / property: Don't limit named child node matching to data nodes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPIT: Correct LPIT end address for lpit_process() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi/irq: Implement helper to create hierachical domains (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [drivers] node: Add memory-side caching attributes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [drivers] node: Add heterogenous memory access attributes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [drivers] node: Link memory nodes to their compute nodes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [documentation] doc/mm: New documentation for memory performance (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Call pm_set_suspend_via_firmware() during hibernation (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/PCI: PM: Add missing wakeup.flags.valid checks (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Fix build error when IOMMU_SUPPORT is disabled (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Set enable_for_wake for wakeup GPEs during suspend-to-idle (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20190509 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Linux: move ACPI_DEBUG_DEFAULT flag out of ifndef (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: bus: change _ADR representation to 64 bits (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / property: fix handling of data_nodes in acpi_get_next_subnode() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi/hmat: fix an uninitialized memory_target (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi/hmat: Update acpi_hmat_type enum with ACPI_HMAT_TYPE_PROXIMITY (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi/hmat: fix memory leaks in hmat_init() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Check ATS capability in root complex nodes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / DPTF: Use dev_get_drvdata() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: event: replace strcpy() by strscpy() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Use acpi_lpss_* instead of acpi_subsys_* functions for hibernate (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Reject platform device creation on NUMA node mapping failure (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: button: reinitialize button state upon resume (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20190405 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Namespace: add check to avoid null pointer dereference (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20190329 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: utilities: fix spelling of PCC to platform_comm_channel (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Rename nameseg length macro/define for clarity (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Rename nameseg compare macro for clarity (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Rename nameseg copy macro for clarity (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Print debug messages when enabling GPEs for wakeup (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi/hmat: Register memory side cache attributes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi/hmat: Register performance attributes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi/hmat: Register processor domain to its memory (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi/hmat: Parse and report heterogeneous memory (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi: Add HMAT to generic parsing tables (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi: Create subtable parsing infrastructure (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [arm64] arm64: numa: rework ACPI NUMA initialization (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Add support for PMCG (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: video: Use vendor backlight on Sony VPCEH3U1E (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / utils: Remove deprecated function since no user left (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / tables: Clean up whitespace (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Add labels for PNP button devices (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Simplify acpi_bus_extract_wakeup_device_power_package() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: Fix comment typos (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] Revert "ACPICA: Clear status of GPEs before enabling them" (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Namespace: remove address node from global list after method termination (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Clear status of GPEs before enabling them (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: use different default debug value than ACPICA (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / utils: Drop reference in test for device presence (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: sysfs: Prevent get_status() from returning acpi_status (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / device_sysfs: Avoid OF modalias creation for removed device (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / configfs: Mark local data structures static (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / configfs: Mark local functions static (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: tables: Simplify PPTT leaf node detection (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / bus: Respect PRP0001 when retrieving device match data (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20190215 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/ACPICA: Trivial: fix spelling mistakes and fix whitespace formatting (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: add GTDT Revision 3 support (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: HMAT updates (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: PPTT add additional fields in Processor Structure Flags (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: add Error Disconnect Recover Notification value (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: MADT: add support for statistical profiling in GICC (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: add PCC operation region support for AML interpreter (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [clk] clk: x86: Move clk-lpss.h to platform_data/x86 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: APEI: Fix possible out-of-bounds access to BERT region (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / processor: Set P_LVL{2, 3sc] } idle state descriptions (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / CPPC: Add a helper to get desired performance (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: SRAT: add Generic Affinity Structure subtable (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: Add Trigger order to PCC Identifier structure in PDTT (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: ACPI 6.3: Adding predefined methods _NBS, _NCH, _NIC, _NIH, and _NIG (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update/clarify messages for control method failures (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Debugger: Fix possible fault with the "test objects" command (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Interpreter: Emit warning for creation of a zero-length op region (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Remove legacy module-level code support (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / x86: Make PWM2 device always present at Lenovo Yoga Book (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / video: Extend chassis-type detection with a "Lunch Box" check (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / video: Refactor and fix dmi_is_desktop() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Add support for the SDEI GHES Notification type (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [firmware] firmware: arm_sdei: Add ACPI GHES registration helper (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/PPTT: Add acpi_pptt_warn_missing() to consolidate logs (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Use separate fixmap pages for arm64 NMI-like notifications (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Only use queued estatus entry during in_nmi_queue_one_entry() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Split ghes_read_estatus() to allow a peek at the CPER length (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Make GHES estatus header validation more user friendly (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Pass ghes and estatus separately to avoid a later copy (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Let the notification helper specify the fixmap slot (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Move locking to the notification helper (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Switch NOTIFY_SEA to use the estatus queue (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Move NOTIFY_SEA between the estatus-queue and NOTIFY_NMI (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Don't allow ghes_ack_error() to mask earlier errors (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Generalise the estatus queue's notify code (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Don't update struct ghes' flags in read/clear estatus (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Remove spurious GHES_TO_CLEAR check (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Don't store CPER records physical address in struct ghes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Make estatus pool allocation a static size (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Make hest.c manage the estatus memory pool (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Switch estatus pool to use vmalloc memory (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Remove silent flag from ghes_read_estatus() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Don't wait to serialise with oops messages when panic()ing (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: Set debug output flags independent of ACPICA (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Get rid of acpi_sleep_dispatch() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Create platform device for BSG2150 ACPI nodes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] Revert "ACPI / EC: Remove old CLEAR_ON_RESUME quirk" (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: EC: Simplify boot EC checks in acpi_ec_add() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: EC: Eliminate acpi_config_boot_ec() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: EC: Make acpi_ec_dsdt_probe() more straightforward (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: EC: Make acpi_ec_ecdt_probe() more straightforward (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: EC: Declare boot_ec as static (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / DPTF: remove header search path to the parent directory (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: EC: Clean up probing for early EC (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: debug: Clean up acpi_aml_init() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: no need to check return value of debugfs_create functions (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: EC: Look for ECDT EC after calling acpi_load_tables() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Make PCI dependency explicit (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20190108 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: All acpica: Update copyrights to 2019 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: acpiexec: Add option to dump extra info for memory leaks (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Convert more ACPI errors to firmware errors (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: APEI: EINJ: Use DEFINE_DEBUGFS_ATTRIBUTE for debugfs files (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / APEI: Fix parsing HEST that includes Deferred Machine Check subtable (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / tables: table override from built-in initrd (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] APEI / ERST: Switch to use new generic UUID API (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: Add generic intel_soc_pmic_exec_mipi_pmic_seq_element handling (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: Implement exec_mipi_pmic_seq_element for CHT Whiskey Cove PMIC (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Fix build when CONFIG_IOMMU_API=n (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: xpower: Fix TS-pin current-source handling (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: NUMA: Use correct type for printing addresses on i386-PAE (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: power: Skip duplicate power resource references in _PRx (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: Fix build failure when CONFIG_NLS is set to 'n' (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / tables: Add an ifdef around amlcode and dsdt_amlcode (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: Make PCI slot detection driver depend on PCI (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Stub out ACS functions when CONFIG_PCI is not set (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / OSI: Add OEM _OSI string to enable dGPU direct output (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: PM: Loop in full LPS0 mode only (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: EC / PM: Disable non-wakeup GPEs for suspend-to-idle (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Don't call iommu_ops->add_device directly (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Use device_iommu_mapped() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Use helper functions to access dev->iommu_fwspec (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [include] driver core: Introduce device_iommu_mapped() function (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [iommu] iommu/sysfs: Rename iommu_release_device() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [iommu] iommu: Consolitate ->add/remove_device() calls (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [iommu] iommu: Introduce wrappers around dev->iommu_fwspec (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / tables: add DSDT AmlCode new declaration name support (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20181213 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: change coding style to match ACPICA, no functional change (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Debug output: Add option to display method/object evaluation (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: disassembler: disassemble OEMx tables as AML (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Add "Windows 2018.2" string in the _OSI support (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Expressions in package elements are not supported (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update buffer-to-string conversions (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: add comments, no functional change (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Remove defines that use deprecated flag (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Add "Windows 2018" string in the _OSI support (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [pci] PCI: Remove unused attr variable in pci_dma_configure (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Refactor _CCA enforcement (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Ignore acpi_device_fix_up_power() return value (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI, APEI, EINJ: Change to use DEFINE_SHOW_ATTRIBUTE macro (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Create platform device for INT3515 ACPI nodes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI/IORT: Fix iort_get_platform_device_domain() uninitialized pointer value (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: SPCR: Consider baud rate 0 as preconfigured state (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / glue: Add acpi_platform_notify() function (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [drivers] drivers core: Prepare support for multiple platform notifications (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / platform: Add SMB0001 HID to forbidden_id_list (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Fix handling of buffer-size in acpi_ex_write_data_to_field() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20181031 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: iASL: Enhance error detection (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: iASL: adding definition and disassembly for TPM2 revision 3 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Debugger: refactor to fix unused variable warning (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: xpower: fix IOSF_MBI dependency (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: xpower: Add depends on IOSF_MBI to Kconfig entry (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: xpower: Block P-Unit I2C access during read-modify-write (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [include] PM / Domains: Document flags for genpd (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Create platform device for INT33FE ACPI nodes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / OSL: Use 'jiffies' as the time bassis for acpi_os_get_timer() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: probe ECDT before loading AML tables regardless of module-level code flag (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Remove acpi_gbl_group_module_level_code and only use acpi_gbl_execute_tables_as_methods instead (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: AML Parser: fix parse loop to correctly skip erroneous extended opcodes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: AML interpreter: add region addresses in global list during initialization (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: TAD: Add low-level support for real time capability (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PM: Export acpi_device_get_power() for use by modular build drivers (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: remove redundant 'default n' from Kconfig (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / SBS: Fix rare oops when removing modules (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / SBS: Fix GPE storm on recent MacBookPro's (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20181003 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Never run _REG on system_memory and system_IO (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Split large interpreter file (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update for field unit access (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Rename some of the Field Attribute defines (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update for generic_serial_bus and attrib_raw_process_bytes protocol (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / processor: Fix the return value of acpi_processor_ids_walk() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Resume BYT/CHT I2C controllers from resume_noirq (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Add a device link from the GPU to the BYT I2C5 controller (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Add a device link from the GPU to the CHT I2C7 controller (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Make acpi_lpss_find_device() also find PCI devices (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Make hid_uid_match helper accept a NULL uid argument (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Make hid_uid_match helper take an acpi_device as first argument (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] acpi:ipmi: Convert ipmi_user_t to struct ipmi_user 0001-x86-smp-fix-non-SMP-broken-build-due-to-redefinition.patch brew_job bzlist bzlist-v2 run.sh testing_desc v4-notes v5-notes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Exclude I2C busses shared with PUNIT from pmc_atom_d3_mask (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: Convert drivers to use SPDX identifier (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: Sort headers alphabetically (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / property: Switch to bitmap_zalloc() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: custom_method: remove meaningless null check before debugfs_remove() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / LPSS: Force LPSS quirks on boot (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / bus: Only call dmi_check_system() on X86 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: fix menuconfig presentation of ACPI submenu (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] xen/ACPI: don't upload Px/Cx data for disabled processors (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [x86] x86/smp: fix non-SMP broken build due to redefinition of apic_id_is_primary_thread (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PMIC: CrystalCove: Extend PMOP support to support all possible fields (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Clear status of all events when entering sleep states (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20180810 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: acpiexec: fix a small memory leak regression (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Reference count: add additional debugging details (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: acpi_exec: fixing -fi option (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Debugger: Cleanup interface to the AML disassembler (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Utilities: split hex detection into smaller functions (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update an error message for a duplicate table (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [platform] platform/x86: Add ACPI i2c-multi-instantiate pseudo driver (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [kernel] PM / reboot: Eliminate race between reboot and suspend (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / x86: utils: Remove status workaround from acpi_device_always_present() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Create platform device for fwnodes with multiple i2c devices (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Initialize status to ACPI_STA_DEFAULT (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / EC: Add another entry for Thinkpad X1 Carbon 6th (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: bus: Fix a pointer coding style issue (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] arm64 / ACPI: clean the additional checks before calling ghes_notify_sea() (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / scan: Add static attribute to indirect_io_hosts[] (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / battery: Do not export energy_full[_design] on devices without full_charge_capacity (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / EC: Use ec_no_wakeup on ThinkPad X1 Yoga 3rd (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / battery: get rid of negations in conditions (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / battery: use specialized print macros (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / battery: reorder headers alphabetically (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / battery: drop inclusion of init.h (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: battery: remove redundant old_present check on insertion (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: property: Use data node name and reg property for graphs (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: property: Allow direct graph endpoint references (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: property: Make the ACPI graph API private (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: property: Allow making references to non-device nodes (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI: Convert ACPI reference args to generic fwnode reference args (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / OSI: Add OEM _OSI string to enable NVidia HDMI audio (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] Revert "ACPI / bus: Parse tables as term_list for Dell XPS 9570 and Precision M5530" (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PM: save NVS memory for ASUS 1025C laptop (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / button: fix defined but not used warning (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Update version to 20180629 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Revert "iASL compiler: allow compilation of externals with paths that refer to existing names" (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPICA: Revert "iASL: change processing of external op namespace nodes for correctness" (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / x86: enable touchscreen on Dell Venue Pro 7139 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / PM: Default to s2idle in all machines supporting LP S0 (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [acpi] ACPI / button: increment wakeup count only when notified (Al Stone) [1754787 1739728 1730098 1721297 1664185]
+- [powerpc] powerpc/papr_scm: Fix an off-by-one check in papr_scm_meta_{get, set} (Gustavo Duarte) [1731035]
+- [nvdimm] libnvdimm/altmap: Track namespace boundaries in altmap (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/nvdimm: Pick nearby online node if the device node is not online (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Force a scm-unbind if initial scm-bind fails (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Update drc_pmem_unbind() to use H_SCM_UNBIND_ALL (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/pseries: Update SCM hcall op-codes in hvcall.h (Gustavo Duarte) [1731035]
+- [mm] mm/nvdimm: add is_ioremap_addr and use that to check ioremap address (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/pseries/scm: Use a specific endian format for storing uuid from the device tree (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/nvdimm: Add support for multibyte read/write for metadata (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/pseries/scm: Mark the region volatile if cache flush not required (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/mm/nvdimm: Add an informative message if we fail to allocate altmap block (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/mm: Consolidate numa_enable check and min_common_depth check (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/mm: Fix node look up with numa=off boot (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/mm/drconf: Use NUMA_NO_NODE on failures instead of node 0 (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/mm/radix: Use the right page size for vmemmap mapping (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/mm/hash/4k: Don't use 64K page size for vmemmap with 4K pagesize (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Use the correct bind address (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/mm: Fallback to RAM if the altmap is unusable (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Use ibm, unit-guid as the iset cookie (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Fix DIMM device registration race (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Remove endian conversions (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Update DT properties (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Fix resource end address (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/papr_scm: Use depend instead of select (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/pseries: Add driver for PAPR SCM regions (Gustavo Duarte) [1731035]
+- [powerpc] powerpc/pseries: PAPR persistent memory support (Gustavo Duarte) [1731035]
+- [mm] mm, vmstat: reduce zone->lock holding time by /proc/pagetypeinfo (Waiman Long) [1770314]
+- [mm] mm, vmstat: hide /proc/pagetypeinfo from normal users (Waiman Long) [1770314]
+- [crypto] crypto: chtls - remove cdev_list_lock (Neil Horman) [1737078]
+- [crypto] crypto/chelsio/chtls: listen fails with multiadapt (Neil Horman) [1737078]
+- [tools] cpupower : Handle set and info subcommands correctly (Steve Best) [1769973]
+- [s390] s390/qeth: use IQD Multi-Write (Philipp Rudo) [1731028]
+- [s390] s390/qdio: implement IQD Multi-Write (Philipp Rudo) [1731028]
+- [s390] s390/qeth: add xmit_more support for IQD devices (Philipp Rudo) [1731028]
+- [s390] s390/qeth: add BQL support for IQD devices (Philipp Rudo) [1731028]
+- [s390] s390/qeth: when in TX NAPI mode, use napi_consume_skb() (Philipp Rudo) [1731028]
+- [s390] s390/qeth: add TX NAPI support for IQD devices (Philipp Rudo) [1731028]
+- [s390] s390/qeth: collect accurate TX statistics (Philipp Rudo) [1731028]
+- [s390] s390/qdio: let drivers opt-out from Output Queue scanning (Philipp Rudo) [1731028]
+- [s390] s390/qdio: enable drivers to poll for Output completions (Philipp Rudo) [1731028]
+- [usb] xhci-pci: allow host runtime PM as default for Intel Alpine and Titan Ridge (Myron Stowe) [1769877]
+- [x86] x86/atomic: Fix smp_mb__{before,after}_atomic() (Prarit Bhargava) [1769789]
+- [kernel] stacktrace: Don't skip first entry on noncurrent tasks (Waiman Long) [1766681]
+- [kernel] tracing: Fix user stack trace "??" output (Waiman Long) [1766681]
+- [kernel] tracing: Fix out-of-range read in trace_stack_print() (Waiman Long) [1766681]
+- [kernel] stacktrace: Constify 'entries' arguments (Waiman Long) [1766681]
+- [kernel] stacktrace: Force USER_DS for stack_trace_save_user() (Waiman Long) [1766681]
+- [x86] x86/stacktrace: Prevent infinite loop in arch_stack_walk_user() (Waiman Long) [1766681]
+- [kernel] stacktrace: Use PF_KTHREAD to check for kernel threads (Waiman Long) [1766681]
+- [kernel] stacktrace: Unbreak stack_trace_save_tsk_reliable() (Waiman Long) [1766681]
+- [x86] x86/stacktrace: Use common infrastructure (Waiman Long) [1766681]
+- [kernel] stacktrace: Keep stack_trace structure and remove snprint_stack_trace() (Waiman Long) [1766681]
+- [kernel] stacktrace: Provide common infrastructure (Waiman Long) [1766681]
+- [kernel] livepatch: Simplify stack trace retrieval (Waiman Long) [1766681]
+- [kernel] tracing: Remove the last struct stack_trace usage (Waiman Long) [1766681]
+- [kernel] tracing: Simplify stack trace retrieval (Waiman Long) [1766681]
+- [kernel] tracing: Make ftrace_trace_userstack() static and conditional (Waiman Long) [1766681]
+- [kernel] tracing: Use percpu stack trace buffer more intelligently (Waiman Long) [1766681]
+- [kernel] tracing: Simplify stacktrace retrieval in histograms (Waiman Long) [1766681]
+- [kernel] lockdep: Remove save argument from check_prev_add() (Waiman Long) [1766681]
+- [kernel] lockdep: Remove unused trace argument from print_circular_bug() (Waiman Long) [1766681]
+- [drm] drm: Simplify stacktrace handling (Waiman Long) [1766681]
+- [md] dm persistent data: Simplify stack trace handling (Waiman Long) [1766681]
+- [md] dm bufio: Simplify stack trace retrieval (Waiman Long) [1766681]
+- [fs] btrfs: ref-verify: Simplify stack trace retrieval (Waiman Long) [1766681]
+- [kernel] dma/debug: Simplify stracktrace retrieval (Waiman Long) [1766681]
+- [lib] fault-inject: Simplify stacktrace retrieval (Waiman Long) [1766681]
+- [mm] mm/page_owner: Simplify stack trace handling (Waiman Long) [1766681]
+- [mm] mm/kmemleak: Simplify stacktrace handling (Waiman Long) [1766681]
+- [mm] mm/slub: Simplify stack trace retrieval (Waiman Long) [1766681]
+- [kernel] latency_top: Simplify stack trace handling (Waiman Long) [1766681]
+- [fs] proc: Simplify task stack retrieval (Waiman Long) [1766681]
+- [kernel] backtrace-test: Simplify stack trace handling (Waiman Long) [1766681]
+- [lib] lib/stackdepot: Provide functions which operate on plain storage arrays (Waiman Long) [1766681]
+- [kernel] stacktrace: Provide helpers for common stack trace operations (Waiman Long) [1766681]
+- [kernel] tracing: Cleanup stack trace code (Waiman Long) [1766681]
+- [kernel] tracing: Remove the ULONG_MAX stack trace hackery (Waiman Long) [1766681]
+- [drm] drm: Remove the ULONG_MAX stack trace hackery (Waiman Long) [1766681]
+- [kernel] latency_top: Remove the ULONG_MAX stack trace hackery (Waiman Long) [1766681]
+- [mm] mm/kasan: Remove the ULONG_MAX stack trace hackery (Waiman Long) [1766681]
+- [mm] mm/page_owner: Remove the ULONG_MAX stack trace hackery (Waiman Long) [1766681]
+- [mm] mm/slub: Remove the ULONG_MAX stack trace hackery (Waiman Long) [1766681]
+- [kernel] lockdep: Remove the ULONG_MAX stack trace hackery (Waiman Long) [1766681]
+- [kernel] s390/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [kernel] parisc/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [kernel] arm64/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [kernel] riscv/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [kernel] unicore32/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [kernel] sh/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [kernel] arm/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [kernel] [x86] x86/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [kernel] um/stacktrace: Remove the pointless ULONG_MAX marker (Waiman Long) [1766681]
+- [mm] mm/page_owner: clamp read count to PAGE_SIZE (Waiman Long) [1766681]
+- [kernel] tracing: Export trace_dump_stack to modules (Waiman Long) [1766681]
+- [kernel] tracing: Have stack tracer trace full stack (Waiman Long) [1766681]
+- [kernel] trace: Use rcu_dereference_raw for hooks from trace-event subsystem (Waiman Long) [1766681]
+- [kernel] tracing: Have trace_stack nr_entries compare not be so subtle (Waiman Long) [1766681]
+- [cpuidle] cpuidle: governor: Add new governors to cpuidle_governors again (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle-haltpoll: do not set an owner to allow modunload (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle-haltpoll: set haltpoll as preferred governor (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: allow governor switch on cpuidle_register_driver() (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: Add cpuidle.governor= command line parameter (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle-haltpoll: vcpu hotplug support (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle-haltpoll: disable host side polling when kvm virtualized (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: add haltpoll governor (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: header file stubs must be "static inline" (Marcelo Tosatti) [1759282]
+- [cpuidle] governors: unify last_state_idx (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: add poll_limit_ns to cpuidle_device structure (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: poll_state: Fix default time limit (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: poll_state: Disregard disable idle states (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: poll_state: Revise loop termination condition (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle: menu: Fix wakeup statistics updates for polling state (Marcelo Tosatti) [1759282]
+- [cpuidle] cpuidle-haltpoll: return -ENODEV on modinit failure (Marcelo Tosatti) [1759282]
+- [cpuidle] add cpuidle-haltpoll driver (Marcelo Tosatti) [1759282]
+- [mm] mem-hotplug: fix node spanned pages when we have a node with only ZONE_MOVABLE (Baoquan He) [1756210]
+- [x86] x86, efi: never relocate kernel below lowest acceptable address (Kairui Song) [1747367]
+- [fs] CIFS: Force reval dentry if LOOKUP_REVAL flag is set (Dave Wysochanski) [1767664]
+- [fs] CIFS: Force revalidate inode when dentry is stale (Dave Wysochanski) [1767664]
+- [fs] CIFS: Gracefully handle QueryInfo errors during open (Dave Wysochanski) [1767664]
+- [block] blk-mq: make sure that line break can be printed (Ming Lei) [1741462]
+- [block] blk-mq: avoid sysfs buffer overflow with too many CPU cores (Ming Lei) [1741462]
+- [netdrv] bnx2x: Fix VF's VLAN reconfiguration in reload. (Manish Chopra) [1720393]
+- [netdrv] bnx2x: Prevent ptp_task to be rescheduled indefinitely (Manish Chopra) [1720393]
+- [netdrv] bnx2x: Check if transceiver implements DDM before access (Manish Chopra) [1720393]
+- [fs] xfs: allocate xattr buffer on demand (Eric Sandeen) [1684599]
+- [fs] xfs: consolidate attribute value copying (Eric Sandeen) [1684599]
+- [fs] xfs: move remote attr retrieval into xfs_attr3_leaf_getvalue (Eric Sandeen) [1684599]
+- [fs] xfs: remove unnecessary indenting from xfs_attr3_leaf_getvalue (Eric Sandeen) [1684599]
+- [fs] xfs: make attr lookup returns consistent (Eric Sandeen) [1684599]
+- [i2c] i2c: i801: Add support for Intel Comet Lake (David Arcari) [1761547]
+- [powerpc] powerpc/xmon: Improve output of XIVE interrupts (Diego Domingos) [1731130]
+- [powerpc] powerpc/xmon: Fix output of XIVE IPI (Diego Domingos) [1731130]
+- [powerpc] powerpc/xmon: Add a dump of all XIVE interrupts (Diego Domingos) [1731130]
+- [powerpc] powerpc/xive: Fix dump of XIVE interrupt under pseries (Diego Domingos) [1731130]
+- [powerpc] powerpc/xmon: Check for HV mode when dumping XIVE info from OPAL (Diego Domingos) [1731130]
+- [fs] xfs: convert inode to extent format after extent merge due to shift (Brian Foster) [1745253]
+- [mmc] mmc: sdhci-pci: Add support for Intel CML (Alexander Beregalov) [1761593]
+- [powerpc] powerpc/mm/mce: Keep irqs disabled during lockless page table walk (Gustavo Duarte) [1524649]
+- [tools] seltests/powerpc: Add a selftest for memcpy_mcsafe (Gustavo Duarte) [1524649]
+- [powerpc] powerpc/memcpy: Fix stack corruption for smaller sizes (Gustavo Duarte) [1524649]
+- [powerpc] powerpc: add machine check safe copy_to_user (Gustavo Duarte) [1524649]
+- [powerpc] powerpc/memcpy: Add memcpy_mcsafe for pmem (Gustavo Duarte) [1524649]
+- [powerpc] powerpc/mce: Handle UE event for memcpy_mcsafe (Gustavo Duarte) [1524649]
+- [kernel] extable: Add function to search only kernel exception table (Gustavo Duarte) [1524649]
+- [powerpc] powerpc/mce: Make machine_check_ue_event() static (Gustavo Duarte) [1524649]
+- [powerpc] powerpc/mce: Fix MCE handling for huge pages (Gustavo Duarte) [1524649]
+- [powerpc] powerpc/mce: Schedule work from irq_work (Gustavo Duarte) [1524649]
+- [x86] x86/boot/64: Round memory hole size up to next PMD page (Frank Ramsay) [1755602]
+- [x86] x86/boot/64: Make level2_kernel_pgt pages invalid outside kernel area (Frank Ramsay) [1755602]
+- [idle] intel_idle: add support for Jacobsville (Steve Best) [1481744]
+- [powercap] powercap/intel_rapl: add support for ICX (Steve Best) [1724421]
+- [block] blk-mq: apply normal plugging for HDD (Ming Lei) [1759380]
+- [block] blk-mq: honor IO scheduler for multiqueue devices (Ming Lei) [1759380]
+- [block] blk-mq: simplify blk_mq_make_request() (Ming Lei) [1759380]
+- [block] blk-mq: remove blk_mq_put_ctx() (Ming Lei) [1759380]
+- [nvdimm] libnvdimm: Enable unit test infrastructure compile checks (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm: Use PAGE_SIZE instead of SZ_4K for align check (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/label: Remove the dpa align check (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/pfn_dev: Add page size and struct page size to pfn superblock (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/pfn_dev: Add a build check to make sure we notice when struct page size change (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/pmem: Advance namespace seed for specific probe errors (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/region: Rewrite _probe_success() to _advance_seeds() (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/security: Consolidate 'security' operations (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/security: Tighten scope of nvdimm->busy vs security operations (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/security: Introduce a 'frozen' attribute (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm, region: Use struct_size() in kzalloc() (Jeff Moyer) [1724965]
+- [tools] tools/testing/nvdimm: Fix fallthrough warning (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/of_pmem: Provide a unique name for bus provider (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/pfn: fix fsdax-mode namespace info-block zero-fields (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/bus: Fix wait_nvdimm_bus_probe_idle() ABBA deadlock (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/bus: Stop holding nvdimm_bus_list_mutex over __nd_ioctl() (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/bus: Prepare the nd_ioctl() path to be re-entrant (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/region: Register badblocks before namespaces (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/bus: Prevent duplicate device_unregister() calls (Jeff Moyer) [1724965]
+- [drivers] drivers/base: Introduce kill_device() (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm, namespace: Drop uuid_t implementation detail (Jeff Moyer) [1724965]
+- [dax] device-dax: Add a 'resource' attribute (Jeff Moyer) [1724965]
+- [dax] device-dax: Drop register_filesystem() (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/pmem: Bypass CONFIG_HARDENED_USERCOPY overhead (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm: Fix compilation warnings with W=1 (Jeff Moyer) [1724965]
+- [nvdimm] libnvdimm/namespace: Fix label tracking error (Jeff Moyer) [1724965]
+- [dax] device-dax: Add a 'modalias' attribute to DAX 'bus' devices (Jeff Moyer) [1724965]
+- [dax] device-dax: Add a 'target_node' attribute (Jeff Moyer) [1724965]
+- [dax] device-dax: Auto-bind device after successful new_id (Jeff Moyer) [1724965]
+- [dax] acpi/nfit, device-dax: Identify differentiated memory with a unique numa-node (Jeff Moyer) [1724965]
+- [dax] device-dax: Add /sys/class/dax backwards compatibility (Jeff Moyer) [1724965]
+- [dax] device-dax: Add support for a dax override driver (Jeff Moyer) [1724965]
+- [dax] device-dax: Move resource pinning+mapping into the common driver (Jeff Moyer) [1724965]
+- [dax] device-dax: Introduce bus + driver model (Jeff Moyer) [1724965]
+- [dax] device-dax: Start defining a dax bus model (Jeff Moyer) [1724965]
+- [dax] device-dax: Remove multi-resource infrastructure (Jeff Moyer) [1724965]
+- [dax] device-dax: Kill dax_region base (Jeff Moyer) [1724965]
+- [dax] device-dax: Kill dax_region ida (Jeff Moyer) [1724965]
+- [kernel] memremap: Convert to XArray (Jeff Moyer) [1724965]
+- [drivers] drivers/dax/device.c: convert variable to vm_fault_t type (Jeff Moyer) [1724965]
+- [drivers] driver core: Rewrite test_async_driver_probe to cover serialization and NUMA affinity (Jeff Moyer) [1724965]
+- [drivers] libnvdimm: Schedule device registration on node local to the device (Jeff Moyer) [1724965]
+- [drivers] PM core: Use new async_schedule_dev command (Jeff Moyer) [1724965]
+- [drivers] driver core: Attach devices on CPU local to device node (Jeff Moyer) [1724965]
+- [kernel] async: Add support for queueing on specific NUMA node (Jeff Moyer) [1724965]
+- [kernel] workqueue: Provide queue_work_node to queue work near a given NUMA node (Jeff Moyer) [1724965]
+- [drivers] driver core: Probe devices asynchronously instead of the driver (Jeff Moyer) [1724965]
+- [drivers] device core: Consolidate locking and unlocking of parent and device (Jeff Moyer) [1724965]
+- [drivers] driver core: Establish order of operations for device_add and device_del via bitflag (Jeff Moyer) [1724965]
+- [drivers] driver core: Add missing dev->bus->need_parent_lock checks (Jeff Moyer) [1724965]
+- [drivers] driver core: Move async_synchronize_full call (Jeff Moyer) [1724965]
+
+* Tue Nov 12 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-149.el8]
+- [scsi] scsi: qedi: update driver version to 8.37.0.20 (Nilesh Javali) [1724588]
+- [scsi] scsi: qedi: Check targetname while finding boot target information (Nilesh Javali) [1724588]
+- [scsi] scsi: qedi: remove set but not used variables 'cdev' and 'udev' (Nilesh Javali) [1724588]
+- [scsi] scsi: qedi: remove memset/memcpy to nfunc and use func instead (Nilesh Javali) [1724588]
+- [scsi] qedi: Use hwfns and affin_hwfn_idx to get MSI-X vector index (Nilesh Javali) [1724588]
+- [scsi] scsi: qedf: Update the version to 8.42.3.0 (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Fix race betwen fipvlan request and response path (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Use discovery list to traverse rports (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Decrease the LL2 MTU size to 2500 (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Check for module unloading bit before processing link update AEN (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Initiator fails to re-login to switch after link down (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Add debug information for unsolicited processing (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Add support for 20 Gbps speed (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Interpret supported caps value correctly (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Add shutdown callback handler (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Update module description string (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Fix crash during sg_reset (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Stop sending fipvlan request on unload (Nilesh Javali) [1724589]
+- [scsi] scsi: qedf: Print message during bailout conditions (Nilesh Javali) [1724589]
+- [scsi] qedf: Use hwfns and affin_hwfn_idx to get MSI-X vector index to use (Nilesh Javali) [1724589]
+- [scsi] scsi: bnx2fc: Handle scope bits when array returns BUSY or TSF (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: remove set but not used variables 'task', 'port', 'orig_task' (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: remove set but not used variables 'lport', 'host' (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: remove set but not used variable 'fh' (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: fix bnx2fc_cmd refcount imbalance in send_srr (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: fix bnx2fc_cmd refcount imbalance in send_rec (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: Update the driver version to 2.12.10 (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: Limit the IO size according to the FW capability (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: Do not allow both a cleanup completion and abort completion for the same request (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: Separate out completion flags and variables for abort and cleanup (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: Only put reference to io_req in bnx2fc_abts_cleanup if cleanup times out (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: Redo setting source FCoE MAC (Nilesh Javali) [1724598]
+- [scsi] scsi: bnx2fc: fix incorrect cast to u64 on shift operation (Nilesh Javali) [1724598]
+- [netdrv] qed: Fix build error without CONFIG_DEVLINK (Manish Chopra) [1720392]
+- [netdrv] RDMA/qedr: Fix the hca_type and hca_rev returned in device attributes (Manish Chopra) [1720392]
+- [netdrv] qede: qede_fp: simplify a bit 'qede_rx_build_skb()' (Manish Chopra) [1720392]
+- [netdrv] qede: Make two functions static (Manish Chopra) [1720392]
+- [netdrv] qede: Handle infinite driver spinning for Tx timestamp. (Manish Chopra) [1720392]
+- [netdrv] qed: fix spelling mistake "fullill" -> "fulfill" (Manish Chopra) [1720392]
+- [netdrv] qed: Fix Config attribute frame format. (Manish Chopra) [1720392]
+- [netdrv] qed*: Fix size of config attribute dump. (Manish Chopra) [1720392]
+- [netdrv] net: qed: Move static keyword to the front of declaration (Manish Chopra) [1720392]
+- [netdrv] qede: Add support for dumping the grc data. (Manish Chopra) [1720392]
+- [netdrv] qed: Add APIs for configuring grc dump config flags. (Manish Chopra) [1720392]
+- [netdrv] qede: Add support for reading the config id attributes. (Manish Chopra) [1720392]
+- [netdrv] qed: Add APIs for reading config id attributes. (Manish Chopra) [1720392]
+- [netdrv] qed: Add cleanup in qed_slowpath_start() (Manish Chopra) [1720392]
+- [netdrv] qed: Add driver API for flashing the config attributes. (Manish Chopra) [1720392]
+- [netdrv] qed: Add API for configuring NVM attributes. (Manish Chopra) [1720392]
+- [netdrv] qed: Add new ethtool supported port types based on media. (Manish Chopra) [1720392]
+- [netdrv] net/ethernet/qlogic/qed: force the string buffer NULL-terminated (Manish Chopra) [1720392]
+- [netdrv] qed: RDMA - Fix the hw_ver returned in device attributes (Manish Chopra) [1720392]
+- [netdrv] qed*: Change dpi_addr to be denoted with __iomem (Manish Chopra) [1720392]
+- [netdrv] qed: reduce maximum stack frame size (Manish Chopra) [1720392]
+- [netdrv] qed: Prefer pcie_capability_read_word() (Manish Chopra) [1720392]
+- [netdrv] qed: Add support for Timestamping the unicast PTP packets. (Manish Chopra) [1720392]
+- [netdrv] qed: Fix -Wmaybe-uninitialized false positive (Manish Chopra) [1720392]
+- [netdrv] qed: iWARP - Fix default window size to be based on chip (Manish Chopra) [1720392]
+- [netdrv] qed: iWARP - Fix tc for MPA ll2 connection (Manish Chopra) [1720392]
+- [netdrv] qed: iWARP - fix uninitialized callback (Manish Chopra) [1720392]
+- [netdrv] qed: iWARP - Use READ_ONCE and smp_store_release to access ep->state (Manish Chopra) [1720392]
+- [netdrv] qed: remove redundant assignment to rc (Manish Chopra) [1720392]
+- [netdrv] qed: Fix static checker warning (Manish Chopra) [1720392]
+- [netdrv] qed: fix spelling mistake "inculde" -> "include" (Manish Chopra) [1720392]
+- [netdrv] qed: Reduce the severity of ptp debug message. (Manish Chopra) [1720392]
+- [netdrv] qed*: Add iWARP 100g support (Manish Chopra) [1720392]
+- [netdrv] qed: Add qed devlink parameters table (Manish Chopra) [1720392]
+- [netdrv] qed: Set the doorbell address correctly (Manish Chopra) [1720392]
+- [netdrv] qedr: Change the MSI-X vectors selection to be based on affined engine (Manish Chopra) [1720392]
+- [netdrv] qed: Modify offload protocols to use the affined engine (Manish Chopra) [1720392]
+- [netdrv] qed*: Change hwfn used for sb initialization (Manish Chopra) [1720392]
+- [netdrv] qed: Add llh ppfid interface and 100g support for offload protocols (Manish Chopra) [1720392]
+- [netdrv] qed: Modify api for performing a dmae to another PF (Manish Chopra) [1720392]
+- [virt] kvm: arm/arm64: vgic: Use the appropriate TRACE_INCLUDE_PATH (Auger Eric) [1749501]
+- [arm64] kvm: Kill hyp_alternate_select() (Auger Eric) [1749501]
+- [arm64] kvm: Replace hyp_alternate_select with has_vhe() (Auger Eric) [1749501]
+- [arm64] kvm: Drop hyp_alternate_select for checking for ARM64_WORKAROUND_834220 (Auger Eric) [1749501]
+- [documentation] kvm: arm/arm64: vgic: Allow more than 256 vcpus for KVM_IRQ_LINE (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Use a single IO device per redistributor (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Remove spurious semicolons (Auger Eric) [1749501]
+- [arm64] perf_event: Add missing header needed for smp_processor_id() (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Make function comments match function declarations (Auger Eric) [1749501]
+- [arm64] kvm: Remove VMID rollover I-cache maintenance (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-irqfd: Implement kvm_arch_set_irq_inatomic (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-its: Check the LPI translation cache on MSI injection (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-its: Cache successful MSI->LPI translation (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-its: Invalidate MSI-LPI translation cache on vgic teardown (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-its: Invalidate MSI-LPI translation cache on ITS disable (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-its: Invalidate MSI-LPI translation cache on disabling LPIs (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-its: Invalidate MSI-LPI translation cache on specific commands (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-its: Add MSI-LPI translation cache invalidation (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Add __vgic_put_lpi_locked primitive (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Add LPI translation cache definition (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic-v2: Handle SGI bits in GICD_I{S, C}PENDR0 as WI (Auger Eric) [1749501]
+- [arm64] kvm: Replace hardcoded '1' with SYS_PAR_EL1_F (Auger Eric) [1749501]
+- [arm64] sysreg: Add some field definitions for PAR_EL1 (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Fix potential deadlock when ap_list is long (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Properly initialise private IRQ affinity (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Reevaluate level sensitive interrupts on enable (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Don't write junk to sysregs on reset (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: Sync ICH_VMCR_EL2 back when about to block (Auger Eric) [1749501]
+- [arm64] kvm: hyp: debug-sr: Mark expected switch fall-through (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Update kvm_arm_exception_class and esr_class_str for new EC (Auger Eric) [1749501]
+- [virt] kvm: arm: vgic-v3: Mark expected switch fall-through (Auger Eric) [1749501]
+- [arm64] kvm: regmap: Fix unexpected switch fall-through (Auger Eric) [1749501]
+- [arm64] sve: Fix a couple of magic numbers for the Z-reg count (Auger Eric) [1749501]
+- [arm64] sve: Factor out FPSIMD to SVE state conversion (Auger Eric) [1749501]
+- [arm64] kvm: arm/arm64: Initialise host's MPIDRs by reading the actual register (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Migrate _elx sysreg accessors to msr_s/mrs_s (Auger Eric) [1749501]
+- [arm64] sysreg: Make mrs_s and msr_s macros work with Clang and LTO (Auger Eric) [1749501]
+- [documentation] kvm: doc: Add API documentation on the KVM_REG_ARM_WORKAROUNDS register (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: Add save/restore support for firmware workaround state (Auger Eric) [1749501]
+- [arm64] kvm: Propagate full Spectre v2 workaround state to KVM guests (Auger Eric) [1749501]
+- [arm64] sve: Fix missing SVE/FPSIMD endianness conversions (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: vgic: Fix kvm_device leak in vgic_its_destroy (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Filter out invalid core register IDs in KVM_GET_REG_LIST (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Skip more of the SError vaxorcism (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Re-mask SError after the one instruction window (Auger Eric) [1749501]
+- [arm64] Update silicon-errata.txt for Neoverse-N1 #1349291 (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Defer guest entry when an asynchronous exception is pending (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Consume pending SError as early as possible (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Make indirect vectors preamble behaviour symmetric (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Abstract the size of the HYP vectors pre-amble (Auger Eric) [1749501]
+- [arm64] assembler: Switch ESB-instruction with a vanilla nop if !ARM64_HAS_RAS (Auger Eric) [1749501]
+- [arm64] kvm: arm64/sve: Fix vq_present() macro to yield a bool (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Implement vq_present() as a macro (Auger Eric) [1749501]
+- [arm64] fpsimd: Don't disable softirq when touching FPSIMD/SVE state (Auger Eric) [1749501]
+- [arm64] fpsimd: Introduce fpsimd_save_and_flush_cpu_state() and use it (Auger Eric) [1749501]
+- [arm64] fpsimd: Remove the prototype for sve_flush_cpu_state() (Auger Eric) [1749501]
+- [scripts] genksyms: Teach parser about 128-bit built-in types (Auger Eric) [1749501]
+- [tools] kvm: selftests: introduce aarch64_vcpu_add_default (Auger Eric) [1749501]
+- [tools] kvm: selftests: introduce aarch64_vcpu_setup (Auger Eric) [1749501]
+- [virt] kvm: arm/arm64: Move cc/it checks under hyp's Makefile to avoid instrumentation (Auger Eric) [1749501]
+- [arm64] kvm: arm64: Move pmu hyp code under hyp's Makefile to avoid instrumentation (Auger Eric) [1749501]
+- [documentation] arm64: docs: Document perf event attributes (Auger Eric) [1749501]
+- [arm64] kvm: Fix perf cycle counter support for VHE (Auger Eric) [1749501]
+- [arm64] kvm: Avoid isb's by using direct pmxevtyper sysreg (Auger Eric) [1749501]
+- [arm64] kvm: Enable VHE support for :G/:H perf event modifiers (Auger Eric) [1749501]
+- [arm64] kvm: Enable !VHE support for :G/:H perf event modifiers (Auger Eric) [1749501]
+- [arm64] arm_pmu: Add !VHE support for exclude_host/exclude_guest attributes (Auger Eric) [1749501]
+- [arm64] kvm: Add accessors to track guest/host only counters (Auger Eric) [1749501]
+- [arm64] arm_pmu: Remove unnecessary isb instruction (Auger Eric) [1749501]
+- [arm64] perf: Add support for chaining event counters (Auger Eric) [1749501]
+- [arm64] perf: Disable PMU while processing counter overflows (Auger Eric) [1749501]
+- [arm64] perf: Clean up armv8pmu_select_counter (Auger Eric) [1749501]
+- [arm64] kvm: arm: Remove pgtable page standard functions from stage-2 page tables (Auger Eric) [1749501]
+- [netdrv] e1000e: Add support for Tiger Lake (Ken Cox) [1767480]
+- [netdrv] ethernet: Delete unnecessary checks before the macro call dev_kfree_skb (Corinna Vinschen) [1721705]
+- [netdrv] igb: Use dev_get_drvdata where possible (Corinna Vinschen) [1721705]
+- [netdrv] net: Use skb accessors in network drivers (Corinna Vinschen) [1721705]
+- [netdrv] igb: add RR2DCDELAY to ethtool registers dump (Corinna Vinschen) [1721705]
+- [netdrv] igb: minor ethool regdump amendment (Corinna Vinschen) [1721705]
+- [netdrv] igb: clear out skb->tstamp after reading the txtime (Corinna Vinschen) [1721705]
+- [netdrv] igb: mark expected switch fall-through (Corinna Vinschen) [1721705]
+- [netdrv] igb: mark expected switch fall-through (Corinna Vinschen) [1721705]
+- [netdrv] igb/igc: warn when fatal read failure happens (Corinna Vinschen) [1721705]
+- [netdrv] igb: fix various indentation issues (Corinna Vinschen) [1721705]
+- [netdrv] igb: Exclude device from suspend direct complete optimization (Corinna Vinschen) [1721705]
+- [netdrv] intel: correct return from set features callback (Corinna Vinschen) [1721705]
+- [netdrv] net: Use skb accessors in network drivers (Corinna Vinschen) [1721708]
+- [s390] s390/kaslr: reserve memory for kasan usage (Philipp Rudo) [1725888]
+- [s390] s390/mem_detect: provide single get_mem_detect_end (Philipp Rudo) [1725888]
+- [s390] s390/setup: adjust start_code of init_mm to _text (Philipp Rudo) [1725888]
+- [s390] s390/boot: add missing declarations and includes (Philipp Rudo) [1725888]
+- [s390] locking/lockdep: check for freed initmem in static_obj() (Philipp Rudo) [1725888]
+- [s390] s390/kernel: add support for kernel address space layout randomization (KASLR) (Philipp Rudo) [1725888]
+- [s390] s390/kernel: introduce .dma sections (Philipp Rudo) [1725888]
+- [s390] s390/sclp: do not use static sccbs (Philipp Rudo) [1725888]
+- [s390] s390/kprobes: use static buffer for insn_page (Philipp Rudo) [1725888]
+- [s390] s390/kernel: convert SYSCALL and PGM_CHECK handlers to .quad (Philipp Rudo) [1725888]
+- [s390] s390/kernel: build a relocatable kernel (Philipp Rudo) [1725888]
+- [s390] s390/extmem: remove code for 31 bit addressing mode (Philipp Rudo) [1725888]
+- [s390] s390/setup: remove obsolete #ifdef (Philipp Rudo) [1725888]
+- [net] net/core: work around section mismatch warning for ptp_classifier (Philipp Rudo) [1725888]
+- [sound] ALSA: bebob: fix to detect configured source of sampling clock for Focusrite Saffire Pro i/o series (Jaroslav Kysela) [1710702]
+- [sound] ALSA: bebob: link the order of establishing connections and Syt-match clock mode (Jaroslav Kysela) [1710702]
+- [sound] ALSA: bebob: expand delay of start for IR context just for version 3 firmware (Jaroslav Kysela) [1710702]
+- [sound] ALSA: bebob: expand sleep just after breaking connections for protocol version 1 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC/SOF - enable SND_SOC_SOF_HDA_COMMON_HDMI_CODEC (Jaroslav Kysela) [1710702]
+- [sound] ALSA: timer: Fix mutex deadlock at releasing card (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5645: Add quirk for boards using pmc_plt_clk_0 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: eve: Enable mclk and ssp sclk early (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: dt-bindings: rt5682: add button delay device property (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: rt5682: improve the sensitivity of push button (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: bxt_rt298: common hdmi codec support (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: intel: sof_rt5682: common hdmi codec support (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: glk_rt5682_max98357a: common hdmi codec support (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: bxt-da7219-max98357a: common hdmi codec support (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: add support for snd-hda-codec-hdmi (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: skl-hda-dsp-generic: fix include guard name (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: skl-hda-dsp-generic: use snd-hda-codec-hdmi (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: hdac_hda: add support for HDMI/DP as a HDA codec (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda/hdmi - implement mst_no_extra_pcms flag (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF - remove the dead code (skylake/kabylake) (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: intel - fix the card names (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: pci: Add prepare/complete PM callbacks (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: PM: Add support for DSP D0i3 state when entering S0ix (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: return -ENOTSUPP if D0I3 is not supported (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda-dsp: implement suspend/resume for S0ix<->S0 transition (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: ignore suspend/resume for D0ix compatible streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: PM: implement prepare/complete callbacks (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: add a flag suspend_ignored for sof stream (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: add a flag to indicate the system suspend target (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: CNL: add support for sending compact IPC (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: PM: add helpers for setting D0 substate for ADSP (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: configure D0ix IPC flags in set_power_state (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: HDA: add cAVS specific compact IPC header file (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda-ipc: Don't read mailbox for PM_GATE reply (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: ipc: introduce message for DSP power gating (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: PM: rename sof_send_pm_ipc to sof_send_pm_ctx_ipc (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: HDA: use macro for register polling retry count (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda-dsp: align the comments for D0I3C update (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: topology: parse and store d0i3_compatible flag (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: token: add tokens for PCM compatible with D0i3 substate (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: add flag to snd_sof_pcm_stream for D0i3 compatible stream (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: APL: add set_power_state() ops (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: CNL: add set_power_state() ops (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda-dsp: Add helper for setting DSP D0ix substate (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: add set_power_state() to dsp_ops for power state update (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: reset default d0_substate at probe() and resume() (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: add a field to store the current D0 substate of DSP (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: eve: implement set_bias_level function for rt5514 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: only support INFO_BATCH for legacy platforms (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: define INFO_ flags in dsp_ops (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: initial support to JasperLake. (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: common: add ACPI matching tables for JSL (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add dev_err() traces for snd_sof_dsp_read_poll_timeout() (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda-loader: improve error handling (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: sof: include types.h at header.h (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Fix randbuild error (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: topology: check errors when parsing LED tokens (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: topology: remove always-true redundant test (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: bdw: fix operator precedence warnings (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: byt: fix operator precedence warnings (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: imx: Read ESAI parameters and send them to DSP (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: acpi led support for switch controls (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: imx: Describe ESAI parameters to be sent to DSP (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: pci: add debug module param (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: acpi: add debug module param (Jaroslav Kysela) [1710702]
+- [sound] ALSA: Revert "ASoC: SOF: Force polling mode on CFL and CNL" (Jaroslav Kysela) [1710702]
+- [sound] ALSA: AsoC: SOF: refactor control load code (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: enable dual control for pga (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: enable sync_write in hdac_bus (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: simple_card_utils.h: Add missing include (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: Add context data to any IPC timeout. (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix reset of host_period_bytes (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: ipc: introduce no_stream_position in sof_ipc_stream_params struct (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: core: check for mandatory fw_ready op during SOF probe (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: ipc: retain DSP context after FW exception. (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: trace: move to opt-in with Kconfig and module parameter (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda/realtek - Fix 2 front mics of codec 0x623 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda/realtek - Add support for ALC623 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda - Fix mutex deadlock in HDMI codec driver (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda - Fix pending unsol events at shutdown (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: Correct a typo in the clock proc string (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: add support for MOTU UltraLite (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: code refactoring to handle model specific switch for protocol v2 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: minor code refactoring for protocol version 2 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: detect SPH source of sampling clock (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: print for unknown source of sampling clock (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: fix wrong spelling for macro (Jaroslav Kysela) [1710702]
+- [sound] ALSA: bebob: Fix prototype of helper function to return negative value (Jaroslav Kysela) [1710702]
+- [sound] ALSA: usb-audio: Disable quirks for BOSS Katana amplifiers (Jaroslav Kysela) [1710702]
+- [sound] ALSA: usb-audio: sound: usb: usb true/false for bool return type (Jaroslav Kysela) [1710702]
+- [sound] ALSA: usb-audio: Add DSD support for Gustard U16/X26 USB Interface (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda: Allow non-Intel device probe gracefully (Jaroslav Kysela) [1710702]
+- [sound] ALSA: Revert "ALSA: hda: Flush interrupts on disabling" (Jaroslav Kysela) [1710702]
+- [sound] ALSA: PCI: Fix missing inline for pci_pr3_present() (Jaroslav Kysela) [1710702]
+- [sound] ALSA: PCI: Add a helper to check Power Resource Requirements _PR3 existence (Jaroslav Kysela) [1710702]
+- [sound] ALSA: usb-audio: Fix copy&paste error in the validator (Jaroslav Kysela) [1710702]
+- [sound] ALSA: usb-audio: Add DSD support for EVGA NU Audio (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: postpone to start IR context (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: handle several AMDTP streams in callback handler of IRQ target (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: cancel flushing isoc context in the laste step to process context callback (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: replace ack callback to flush isoc contexts in AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: replace pointer callback to flush isoc contexts in AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: add irq_target member into amdtp_domain struct (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: tune the minimum available size of PCM period (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: tune the maximum available size of PCM period (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: schedule hardware IRQ according to the size of PCM period (Jaroslav Kysela) [1710702]
+- [sound] ALSA: fireface: share PCM buffer size for both direction (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: share PCM buffer size for both direction (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-tascam: share PCM buffer size for both direction (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-digi00x: share PCM buffer size for both direction (Jaroslav Kysela) [1710702]
+- [sound] ALSA: dice: share PCM buffer size for both direction (Jaroslav Kysela) [1710702]
+- [sound] ALSA: oxfw: share PCM buffer size for both direction (Jaroslav Kysela) [1710702]
+- [sound] ALSA: fireworks: share PCM buffer size for both direction (Jaroslav Kysela) [1710702]
+- [sound] ALSA: bebob: share PCM buffer size for both direction (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: use variable size of queue for isoc packets instead of fixed size (Jaroslav Kysela) [1710702]
+- [sound] ALSA: fireface: use the same size of period for PCM substreams in AMDTP streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: use the same size of period for PCM substream in AMDTP streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-tascam: use the same size of period for PCM substream in AMDTP streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-digi00x: use the same size of period for PCM substream in AMDTP streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: dice: use the same size of period for PCM substream in AMDTP streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: oxfw: use the same size of period for PCM substream in AMDTP streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: fireworks: use the same size of period for PCM substream in AMDTP streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: bebob: use the same size of period for PCM substream in AMDTP streams (Jaroslav Kysela) [1710702]
+- [sound] ALSA: fireface: register the size of PCM period to AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-motu: register the size of PCM period to AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-tascam: register the size of PCM period to AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-digi00x: register the size of PCM period to AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: dice: register the size of PCM period to AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: oxfw: register the size of PCM period to AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: fireworks: register the size of PCM period to AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: bebob: register the size of PCM period to AMDTP domain (Jaroslav Kysela) [1710702]
+- [sound] ALSA: firewire-lib: add a member into AMDTP domain for events per period (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda/realtek - Enable headset mic on Asus MJ401TA (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda/realtek: Reduce the Headphone static noise on XPS 9350/9360 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda/realtek - Add support for ALC711 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda - Force runtime PM on Nvidia HDMI codecs (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda - Add laptop imic fixup for ASUS M9V laptop (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda: Add Tigerlake/Jasperlake PCI ID (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda: Allow HDA to be runtime suspended when dGPU is not bound to a driver (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hdac: clear link output stream mapping (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: dapm: fix a memory leak bug (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: debug: fix possible memory leak in sof_dfsentry_write() (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: Intel: sof-rt5682: add a check for devm_clk_get (Jaroslav Kysela) [1710702]
+- [sound] ALSA: Fix Kconfig indentation (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: control: return true when kcontrol values change (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda: fix intel DSP config (Jaroslav Kysela) [1710702]
+- [sound] ALSA: hda: add Intel DSP configuration / probe code (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: core: Fix pcm code debugfs error (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoc: rockchip: i2s: Fix RPM imbalance (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: wm_adsp: Don't generate kcontrols without READ flags (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: intel: bytcr_rt5651: add null check to support_button_press (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: intel: sof_rt5682: add remove function to disable jack (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: rt5682: add NULL handler to set_jack function (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: intel: sof_rt5682: use separate route map for dmic (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Disable DMI L1 entry during capture (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: initialise and verify FW crash dump data. (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix warnings during FW load (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: pcm: harden PCM STOP sequence (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: pcm: fix resource leak in hw_free (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: topology: fix parse fail issue for byte/bool tuple types (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: SOF: loader: fix kernel oops on firmware boot failure (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: wm_adsp: Fix theoretical NULL pointer for alg_region (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: max98373: check for device node before parsing (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: topology: Fix a signedness bug in soc_tplg_dapm_widget_create() (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: soc-component: fix a couple missing error assignments (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: wm8994: Do not register inapplicable controls for WM1811 (Jaroslav Kysela) [1710702]
+- [sound] ALSA: ASoC: samsung: arndale: Add missing OF node dereferencing (Jaroslav Kysela) [1710702]
+- [infiniband] RDMA/bnxt_re: Fix spelling mistake "missin_resp" -> "missing_resp" (Kamal Heib) [1724772]
+- [infiniband] RDMA: Fix goto target to release the allocated memory (Kamal Heib) [1724772]
+- [infiniband] IB/bnxt_re: Do not notifify GID change event (Kamal Heib) [1724772]
+- [infiniband] RDMA/bnxt_re: Honor vlan_id in GID entry comparison (Kamal Heib) [1724772]
+- [infiniband] ib/bnxt: Remove mention of idr_alloc from comment (Kamal Heib) [1724772]
+- [infiniband] RDMA/bnxt_re: Use correct sizing on buffers holding page DMA addresses (Kamal Heib) [1724772]
+- [infiniband] bnxt_re: Clean cq for kernel consumers only (Kamal Heib) [1724772]
+- [infiniband] bnxt_re: fix the regression due to changes in alloc_pbl (Kamal Heib) [1724772]
+- [scsi] scsi: lpfc: Make lpfc_debugfs_ras_log_data static (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Fix NULL check before mempool_destroy is not needed (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: fix spelling error in MAGIC_NUMER_xxx (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: fix build error of lpfc_debugfs.c for vfree/vmalloc (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: lpfc_nvmet: Fix Use plain integer as NULL pointer (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: lpfc_attr: Fix Use plain integer as NULL pointer (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Update lpfc version to 12.6.0.0 (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Add additional discovery log messages (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Add FC-AL support to lpe32000 models (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Add FA-WWN Async Event reporting (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Add log macros to allow print by serverity or verbosity setting (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Make FW logging dynamically configurable (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Revise interrupt coalescing for missing scenarios (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Remove lock contention target write path (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Slight fast-path performance optimizations (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: fix coverity error of dereference after null check (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Fix hardlockup in lpfc_abort_handler (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Fix bad ndlp ptr in xri aborted handling (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Fix SLI3 hba in loop mode not discovering devices (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Fix lockdep errors in sli_ringtx_put (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Fix reporting of read-only fw error errors (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: fix lpfc_nvmet_mrq to be bound by hdw queue count (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: Make function lpfc_defer_pt2pt_acc static (Dick Kennedy) [1768102]
+- [scsi] scsi: lpfc: add support for posting FC events on FPIN reception (Dick Kennedy) [1768102]
+- [infiniband] RDMA/siw: Mark Software iWARP Driver as tech-preview (Kamal Heib) [1767292]
+- [crypto] crypto: ccp - Replace dma_pool_alloc + memset with dma_pool_zalloc (Gary Hook) [1724859]
+- [crypto] crypto: ccp/gcm - use const time tag comparison. (Gary Hook) [1724859]
+- [crypto] crypto: ccp - Switch to SPDX license identifiers (Gary Hook) [1724859]
+- [crypto] crypto: ccp - Validate the the error value used to index error messages (Gary Hook) [1724859]
+- [crypto] crypto: ccp - Make ccp_register_rsa_alg static (Gary Hook) [1724859]
+- [crypto] crypto: ccp - Update copyright notices and dates (Gary Hook) [1724859]
+- [crypto] cross-tree: phase out dma_zalloc_coherent() (Gary Hook) [1724859]
+- [x86] x86/umwait: Fix error handling in umwait_init() (Steve Best) [1724525]
+- [documentation] Documentation/ABI: Document umwait control sysfs interfaces (Steve Best) [1724525]
+- [x86] x86/umwait: Add sysfs interface to control umwait maximum time (Steve Best) [1724525]
+- [x86] x86/umwait: Add sysfs interface to control umwait C0.2 state (Steve Best) [1724525]
+- [x86] x86/umwait: Initialize umwait control values (Steve Best) [1724525]
+- [x86] x86/cpufeatures: Enumerate user wait instructions (Steve Best) [1724525]
+- [fs] virtiofs: Remove set but not used variable 'fc' (Vivek Goyal) [1694161]
+- [fs] virtiofs: Retry request submission from worker context (Vivek Goyal) [1694161]
+- [fs] virtiofs: Count pending forgets as in_flight forgets (Vivek Goyal) [1694161]
+- [fs] virtiofs: Set FR_SENT flag only after request has been sent (Vivek Goyal) [1694161]
+- [fs] virtiofs: No need to check fpq->connected state (Vivek Goyal) [1694161]
+- [fs] virtiofs: Do not end request in submission context (Vivek Goyal) [1694161]
+- [fs] fuse: don't advise readdirplus for negative lookup (Vivek Goyal) [1694161]
+- [fs] fuse: don't dereference req->args on finished request (Vivek Goyal) [1694161]
+- [fs] virtio-fs: don't show mount options (Vivek Goyal) [1694161]
+- [fs] virtio-fs: Change module name to virtiofs.ko (Vivek Goyal) [1694161]
+- [include] bitops: protect variables in bit_clear_unless() macro (Vivek Goyal) [1694161]
+- [include] bitops: protect variables in set_mask_bits() macro (Vivek Goyal) [1694161]
+- [fs] fuse: Make fuse_args_to_req static (Vivek Goyal) [1694161]
+- [fs] fuse: fix memleak in cuse_channel_open (Vivek Goyal) [1694161]
+- [fs] fuse: fix beyond-end-of-page access in fuse_parse_cache() (Vivek Goyal) [1694161]
+- [fs] fuse: unexport fuse_put_request (Vivek Goyal) [1694161]
+- [fs] fuse: kmemcg account fs data (Vivek Goyal) [1694161]
+- [fs] fuse: on 64-bit store time in d_fsdata directly (Vivek Goyal) [1694161]
+- [fs] fuse: fix missing unlock_page in fuse_writepage() (Vivek Goyal) [1694161]
+- [fs] virtio-fs: add virtiofs filesystem (Vivek Goyal) [1694161]
+- [fs] fuse: allow skipping control interface and forced unmount (Vivek Goyal) [1694161]
+- [fs] fuse: dissociate DESTROY from fuseblk (Vivek Goyal) [1694161]
+- [fs] fuse: delete dentry if timeout is zero (Vivek Goyal) [1694161]
+- [fs] fuse: separate fuse device allocation and installation in fuse_conn (Vivek Goyal) [1694161]
+- [fs] fuse: add fuse_iqueue_ops callbacks (Vivek Goyal) [1694161]
+- [fs] fuse: extract fuse_fill_super_common() (Vivek Goyal) [1694161]
+- [fs] fuse: export fuse_dequeue_forget() function (Vivek Goyal) [1694161]
+- [fs] fuse: export fuse_get_unique() (Vivek Goyal) [1694161]
+- [fs] fuse: export fuse_send_init_request() (Vivek Goyal) [1694161]
+- [fs] fuse: export fuse_len_args() (Vivek Goyal) [1694161]
+- [fs] fuse: export fuse_end_request() (Vivek Goyal) [1694161]
+- [fs] fuse: fix request limit (Vivek Goyal) [1694161]
+- [fs] fuse: stop copying pages to fuse_req (Vivek Goyal) [1694161]
+- [fs] fuse: stop copying args to fuse_req (Vivek Goyal) [1694161]
+- [fs] fuse: clean up fuse_req (Vivek Goyal) [1694161]
+- [fs] fuse: simplify request allocation (Vivek Goyal) [1694161]
+- [fs] fuse: unexport request ops (Vivek Goyal) [1694161]
+- [fs] fuse: convert retrieve to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: convert release to simple api (Vivek Goyal) [1694161]
+- [fs] cuse: convert init to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: convert init to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: convert writepages to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: convert readdir to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: convert readpages to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: convert direct_io to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: add simple background helper (Vivek Goyal) [1694161]
+- [fs] fuse: convert sync write to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: covert readpage to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: fuse_short_read(): don't take fuse_req as argument (Vivek Goyal) [1694161]
+- [fs] fuse: convert ioctl to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: move page alloc (Vivek Goyal) [1694161]
+- [fs] fuse: convert readlink to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: add pages to fuse_args (Vivek Goyal) [1694161]
+- [fs] fuse: convert destroy to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: add nocreds to fuse_args (Vivek Goyal) [1694161]
+- [fs] fuse: convert fuse_force_forget() to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: add noreply to fuse_args (Vivek Goyal) [1694161]
+- [fs] fuse: convert flush to simple api (Vivek Goyal) [1694161]
+- [fs] fuse: simplify 'nofail' request (Vivek Goyal) [1694161]
+- [fs] fuse: rearrange and resize fuse_args fields (Vivek Goyal) [1694161]
+- [fs] fuse: flatten 'struct fuse_args' (Vivek Goyal) [1694161]
+- [fs] fuse: fix deadlock with aio poll and fuse_iqueue::waitq.lock (Vivek Goyal) [1694161]
+- [fs] cuse: fix broken release (Vivek Goyal) [1694161]
+- [fs] fuse: cleanup fuse_wait_on_page_writeback (Vivek Goyal) [1694161]
+- [fs] fuse: require /dev/fuse reads to have enough buffer capacity (take 2) (Vivek Goyal) [1694161]
+- [fs] Revert "fuse: require /dev/fuse reads to have enough buffer capacity" (Vivek Goyal) [1694161]
+- [fs] fuse: extract helper for range writeback (Vivek Goyal) [1694161]
+- [fs] fuse: add FUSE_WRITE_KILL_PRIV (Vivek Goyal) [1694161]
+- [fs] fuse: clean up fuse_alloc_inode (Vivek Goyal) [1694161]
+- [fs] fuse: Add ioctl flag for x32 compat ioctl (Vivek Goyal) [1694161]
+- [fs] fuse: document fuse_fsync_in.fsync_flags (Vivek Goyal) [1694161]
+- [fs] fuse: require /dev/fuse reads to have enough buffer capacity (Vivek Goyal) [1694161]
+- [fs] fuse: retrieve: cap requested size to negotiated max_write (Vivek Goyal) [1694161]
+- [fs] fuse: allow filesystems to have precise control over data cache (Vivek Goyal) [1694161]
+- [fs] fuse: convert printk -> pr_* (Vivek Goyal) [1694161]
+- [fs] fuse: fix writepages on 32bit (Vivek Goyal) [1694161]
+- [fs] fuse: cache readdir calls if filesystem opts out of opendir (Vivek Goyal) [1694161]
+- [fs] fuse: support clients that don't implement 'opendir' (Vivek Goyal) [1694161]
+- [fs] fuse: lift bad inode checks into callers (Vivek Goyal) [1694161]
+- [fs] fuse: multiplex cached/direct_io file operations (Vivek Goyal) [1694161]
+- [fs] fuse add copy_file_range to direct io fops (Vivek Goyal) [1694161]
+- [fs] fuse: use iov_iter based generic splice helpers (Vivek Goyal) [1694161]
+- [fs] fuse: Switch to using async direct IO for FOPEN_DIRECT_IO (Vivek Goyal) [1694161]
+- [fs] fuse: use atomic64_t for khctr (Vivek Goyal) [1694161]
+- [fs] fuse: clean up aborted (Vivek Goyal) [1694161]
+- [fs] fuse: Protect ff->reserved_req via corresponding fi->lock (Vivek Goyal) [1694161]
+- [fs] fuse: Protect fi->nlookup with fi->lock (Vivek Goyal) [1694161]
+- [fs] fuse: Introduce fi->lock to protect write related fields (Vivek Goyal) [1694161]
+- [fs] fuse: Convert fc->attr_version into atomic64_t (Vivek Goyal) [1694161]
+- [fs] fuse: Add fuse_inode argument to fuse_prepare_release() (Vivek Goyal) [1694161]
+- [fs] fuse: Verify userspace asks to requeue interrupt that we really sent (Vivek Goyal) [1694161]
+- [fs] fuse: Do some refactoring in fuse_dev_do_write() (Vivek Goyal) [1694161]
+- [fs] fuse: Wake up req->waitq of only if not background (Vivek Goyal) [1694161]
+- [fs] fuse: Optimize request_end() by not taking fiq->waitq.lock (Vivek Goyal) [1694161]
+- [fs] fuse: Kill fasync only if interrupt is queued in queue_interrupt() (Vivek Goyal) [1694161]
+- [fs] fuse: Remove stale comment in end_requests() (Vivek Goyal) [1694161]
+- [fs] fuse: Replace page without copying in fuse_writepage_in_flight() (Vivek Goyal) [1694161]
+- [fs] fuse: fix leaked aux requests (Vivek Goyal) [1694161]
+- [fs] fuse: only reuse auxiliary request in fuse_writepage_in_flight() (Vivek Goyal) [1694161]
+- [fs] fuse: clean up fuse_writepage_in_flight() (Vivek Goyal) [1694161]
+- [fs] fuse: extract fuse_find_writeback() helper (Vivek Goyal) [1694161]
+- [fs] cuse: fix ioctl (Vivek Goyal) [1694161]
+- [fs] fuse: Fix memory leak in fuse_dev_free() (Vivek Goyal) [1694161]
+- [fs] fuse: fix revalidation of attributes for permission check (Vivek Goyal) [1694161]
+- [fs] fuse: fix fsync on directory (Vivek Goyal) [1694161]
+- [fs] fuse: Add bad inode check in fuse_destroy_inode() (Vivek Goyal) [1694161]
+- [fs] fuse: enable caching of symlinks (Vivek Goyal) [1694161]
+- [fs] fuse: only invalidate atime in direct read (Vivek Goyal) [1694161]
+- [fs] fuse: realloc page array (Vivek Goyal) [1694161]
+- [fs] fuse: add max_pages to init_out (Vivek Goyal) [1694161]
+- [fs] fuse: allocate page array more efficiently (Vivek Goyal) [1694161]
+- [fs] fuse: reduce size of struct fuse_inode (Vivek Goyal) [1694161]
+- [fs] fuse: use iversion for readdir cache verification (Vivek Goyal) [1694161]
+- [fs] fuse: use mtime for readdir cache verification (Vivek Goyal) [1694161]
+- [fs] fuse: add readdir cache version (Vivek Goyal) [1694161]
+- [fs] fuse: allow using readdir cache (Vivek Goyal) [1694161]
+- [fs] fuse: allow caching readdir (Vivek Goyal) [1694161]
+- [fs] fuse: extract fuse_emit() helper (Vivek Goyal) [1694161]
+- [fs] fuse: add FOPEN_CACHE_DIR (Vivek Goyal) [1694161]
+- [fs] fuse: split out readdir.c (Vivek Goyal) [1694161]
+- [fs] fuse: Use hash table to link processing request (Vivek Goyal) [1694161]
+- [fs] fuse: kill req->intr_unique (Vivek Goyal) [1694161]
+- [fs] fuse: change interrupt requests allocation algorithm (Vivek Goyal) [1694161]
+- [fs] fuse: do not take fc->lock in fuse_request_send_background() (Vivek Goyal) [1694161]
+- [fs] fuse: introduce fc->bg_lock (Vivek Goyal) [1694161]
+- [fs] fuse: add locking to max_background and congestion_threshold changes (Vivek Goyal) [1694161]
+- [fs] fuse: use READ_ONCE on congestion_threshold and max_background (Vivek Goyal) [1694161]
+- [fs] fuse: use list_first_entry() in flush_bg_queue() (Vivek Goyal) [1694161]
+- [fs] fuse: reduce allocation size for splice_write (Vivek Goyal) [1694161]
+- [fs] fuse: use kvmalloc to allocate array of pipe_buffer structs. (Vivek Goyal) [1694161]
+- [fs] fuse: convert last timespec use to timespec64 (Vivek Goyal) [1694161]
+- [fs] fs: fuse: Adding new return type vm_fault_t (Vivek Goyal) [1694161]
+- [fs] fuse: simplify fuse_abort_conn() (Vivek Goyal) [1694161]
+- [infiniband] RDMA/siw: Fix IPv6 addr_list locking (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Fix 64/32bit pointer inconsistency (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Fix SGL mapping issues (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Fix potential NULL de-ref (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Change CQ flags from 64->32 bits (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Fix a memory leak in siw_init_cpulist() (Kamal Heib) [1725830 1720892]
+- [infiniband] Do not dereference 'siw_crypto_shash' before checking (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Remove set but not used variables 'rv' (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Fix error return code in siw_init_module() (Kamal Heib) [1725830 1720892]
+- [infiniband] RMDA/siw: Require a 64 bit arch (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Mark expected switch fall-throughs (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: Remove set but not used variable 's' (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: Add missing dependencies on LIBCRC32C and DMA_VIRT_OPS (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Add missing rtnl_lock around access to ifa (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: Use proper enumerated type in map_cqe_status (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Remove unnecessary kthread create/destroy printouts (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/siw: Fix DEFINE_PER_CPU compilation when ARCH_NEEDS_WEAK_PER_CPU (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: addition to kernel build environment (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: completion queue methods (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: receive path (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: transmit path (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: queue pair methods (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: application buffer management (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: application interface (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: connection management (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: network and RDMA core interface (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: main include file (Kamal Heib) [1725830 1720892]
+- [infiniband] rdma/siw: iWarp wire packet format (Kamal Heib) [1725830 1720892]
+- [infiniband] RDMA/cma: fix null-ptr-deref Read in cma_cleanup (Kamal Heib) [1720892]
+- [infiniband] RDMA/restrack: Rewrite PID namespace check to be reliable (Kamal Heib) [1720892]
+- [infiniband] RDMA/counters: Properly implement PID checks (Kamal Heib) [1720892]
+- [infiniband] IB/core: Fix NULL pointer dereference when bind QP to counter (Kamal Heib) [1720892]
+- [infiniband] RDMA/mlx5: Fix MR npages calculation for IB_ACCESS_HUGETLB (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Fix error code in stat_get_doit_qp() (Kamal Heib) [1720892]
+- [infiniband] RDMA/counter: Prevent QP counter binding if counters unsupported (Kamal Heib) [1720892]
+- [infiniband] RDMA/hns: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Fix -Wunused-const-variable warnings (Kamal Heib) [1720892]
+- [infiniband] RDMA/nldev: Added configuration of RDMA dynamic interrupt moderation to netlink (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Provide RDMA DIM support for ULPs (Kamal Heib) [1720892]
+- [infiniband] linux/dim: Implement RDMA adaptive moderation (DIM) (Kamal Heib) [1720892]
+- [infiniband] IB/mad: Fix use-after-free in ib mad completion handling (Kamal Heib) [1720892]
+- [infiniband] RDMA/restrack: Track driver QP types in resource tracker (Kamal Heib) [1720892]
+- [infiniband] RDMA/devices: Remove the lock around remove_client_context (Kamal Heib) [1720892]
+- [infiniband] RDMA/devices: Do not deadlock during client removal (Kamal Heib) [1720892]
+- [infiniband] IB/core: Add mitigation for Spectre V1 (Kamal Heib) [1720892]
+- [infiniband] IB/counters: Always initialize the port counter object (Kamal Heib) [1720892]
+- [infiniband] IB/core: Fix querying total rdma stats (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Fix race when resolving IP address (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Modernize ops->connect (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Remove rpcrdma_req::rl_buffer (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Refactor chunk encoding (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Streamline rpcrdma_post_recvs (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Simplify rpcrdma_rep_create (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Wake RPCs directly in rpcrdma_wc_send path (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Reduce context switching due to Local Invalidation (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Add mechanism to place MRs back on the free list (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Remove fr_state (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Remove the RPCRDMA_REQ_F_PENDING flag (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Fix occasional transport deadlock (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Replace use of xdr_stream_pos in rpcrdma_marshal_req (Kamal Heib) [1720892]
+- [infiniband] xprtrdma: Fix use-after-free in rpcrdma_post_recvs (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Make rdma_counter.h compile stand alone (Kamal Heib) [1720892]
+- [infiniband] IB/core: Work on the caller socket net namespace in nldev_newlink() (Kamal Heib) [1663224 1720892]
+- [infiniband] RDMA/rxe: Fill in wc byte_len with IB_WC_RECV_RDMA_WITH_IMM (Kamal Heib) [1720892]
+- [infiniband] ibverbs/rxe: Remove variable self-initialization (Kamal Heib) [1720892]
+- [infiniband] RDMA/nldev: Allow get default counter statistics through RDMA netlink (Kamal Heib) [1720892]
+- [infiniband] RDMA/nldev: Allow get counter mode through RDMA netlink (Kamal Heib) [1720892]
+- [infiniband] RDMA/nldev: Allow counter manual mode configration through RDMA netlink (Kamal Heib) [1720892]
+- [infiniband] RDMA/counter: Allow manual mode configuration support (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Get sum value of all counters when perform a sysfs stat read (Kamal Heib) [1720892]
+- [infiniband] RDMA/netlink: Implement counter dumpit calback (Kamal Heib) [1720892]
+- [infiniband] RDMA/nldev: Allow counter auto mode configration through RDMA netlink (Kamal Heib) [1720892]
+- [infiniband] RDMA/counter: Add "auto" configuration mode support (Kamal Heib) [1720892]
+- [infiniband] RDMA/counter: Add set/clear per-port auto mode support (Kamal Heib) [1720892]
+- [infiniband] RDMA/restrack: Make is_visible_in_pid_ns() as an API (Kamal Heib) [1720892]
+- [infiniband] RDMA/restrack: Add an API to attach a task to a resource (Kamal Heib) [1720892]
+- [infiniband] RDMA/restrack: Introduce statistic counter (Kamal Heib) [1720892]
+- [infiniband] IB/ipoib: Add child to parent list only if device initialized (Kamal Heib) [1720892]
+- [infiniband] RDMA/uverbs: remove redundant assignment to variable ret (Kamal Heib) [1720892]
+- [infiniband] IB/ipoib: Remove memset after vzalloc in ipoib_cm.c (Kamal Heib) [1720892]
+- [infiniband] IB: Remove unneeded memset (Kamal Heib) [1720892]
+- [infiniband] RDMA/netlink: Audit policy settings for netlink attributes (Kamal Heib) [1720892]
+- [infiniband] docs: infiniband: convert docs to ReST and rename to *.rst (Kamal Heib) [1720892]
+- [infiniband] RDMA/rw: Use IB_WR_REG_MR_INTEGRITY for PI handover (Kamal Heib) [1720892]
+- [infiniband] RDMA/rw: Introduce rdma_rw_inv_key helper (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Validate integrity handover device cap (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Rename signature qp create flag and signature device capability (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Add an integrity MR pool support (Kamal Heib) [1720892]
+- [infiniband] IB/iser: Unwind WR union at iser_tx_desc (Kamal Heib) [1720892]
+- [infiniband] IB/iser: Use IB_WR_REG_MR_INTEGRITY for PI handover (Kamal Heib) [1720892]
+- [infiniband] RDMA/mlx5: Introduce and implement new IB_WR_REG_MR_INTEGRITY work request (Kamal Heib) [1720892]
+- [infiniband] RDMA/mlx5: Update set_sig_data_segment attribute for new signature API (Kamal Heib) [1720892]
+- [infiniband] RDMA/mlx5: Pass UMR segment flags instead of boolean (Kamal Heib) [1720892]
+- [infiniband] RDMA/mlx5: Add attr for max number page list length for PI operation (Kamal Heib) [1720892]
+- [infiniband] RDMA/mlx5: Implement mlx5_ib_map_mr_sg_pi and mlx5_ib_alloc_mr_integrity (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Add signature attrs element for ib_mr structure (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Introduce ib_map_mr_sg_pi to map data/protection sgl's (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Introduce IB_MR_TYPE_INTEGRITY and ib_alloc_mr_integrity API (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Save the MR type in the ib_mr structure (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Introduce new header file for signature operations (Kamal Heib) [1720892]
+- [infiniband] RDMA/odp: Do not leak dma maps when working with huge pages (Kamal Heib) [1720892]
+- [infiniband] RDMA/uverbs: Use offsetofend instead of opencoding (Kamal Heib) [1720892]
+- [infiniband] [scsi] scsi: RDMA/srp: Fix a sleep-in-invalid-context bug (Kamal Heib) [1720892]
+- [infiniband] RDMA: Check umem pointer validity prior to release (Kamal Heib) [1720892]
+- [infiniband] RDMA/hns: Remove asynchronic QP destroy (Kamal Heib) [1720892]
+- [infiniband] RDMA: Convert destroy_wq to be void (Kamal Heib) [1720892]
+- [infiniband] RDMA/netlink: Resort policy array (Kamal Heib) [1720892]
+- [infiniband] RDMA: Report available cdevs through RDMA_NLDEV_CMD_GET_CHARDEV (Kamal Heib) [1720892]
+- [infiniband] RDMA: Add NLDEV_GET_CHARDEV to allow char dev discovery and autoload (Kamal Heib) [1720892]
+- [infiniband] ipoib: correcly show a VF hardware address (Kamal Heib) [1720892]
+- [infiniband] RDMA: Move rdma_node_type to uapi/ (Kamal Heib) [1720892]
+- [infiniband] rdma: Remove nes (Kamal Heib) [1720892]
+- [infiniband] RDMA/ipoib: Remove check for ETH_SS_TEST (Kamal Heib) [1720892]
+- [infiniband] RDMA: Convert CQ allocations to be under core responsibility (Kamal Heib) [1720892]
+- [infiniband] RDMA/hns: Return correct error code from hns_roce_v1_rsv_lp_qp() (Kamal Heib) [1720892]
+- [infiniband] RDMA/cxgb3: Don't expose DMA addresses (Kamal Heib) [1720892]
+- [infiniband] RDMA/cxgb4: Don't expose DMA addresses (Kamal Heib) [1720892]
+- [infiniband] RDMA/cxgb3: Use sizeof() notation instead of plain sizeof (Kamal Heib) [1720892]
+- [infiniband] RDMA/cxgb3: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720892]
+- [infiniband] RDMA: Clear CQ objects during their allocation (Kamal Heib) [1720892]
+- [infiniband] RDMA: Clean destroy CQ in drivers do not return errors (Kamal Heib) [1720892]
+- [infiniband] RDMA/i40iw: Remove useless NULL checks (Kamal Heib) [1720892]
+- [infiniband] RDMA/cxgb3: Delete and properly mark unimplemented resize CQ function (Kamal Heib) [1720892]
+- [infiniband] RDMA/nes: Avoid memory allocation during CQ destroy (Kamal Heib) [1720892]
+- [infiniband] RDMA: Move owner into struct ib_device_ops (Kamal Heib) [1720892]
+- [infiniband] RDMA: Move uverbs_abi_ver into struct ib_device_ops (Kamal Heib) [1720892]
+- [infiniband] RDMA: Move driver_id into struct ib_device_ops (Kamal Heib) [1720892]
+- [infiniband] rdma: Delete the ib_ucm module (Kamal Heib) [1720892]
+- [infiniband] ucma: Convert ctx_idr to XArray (Kamal Heib) [1720892]
+- [infiniband] ucma: Convert multicast_idr to XArray (Kamal Heib) [1720892]
+- [infiniband] RDMA/ucma: Use struct_size() helper (Kamal Heib) [1720892]
+- [infiniband] RDMA/srp: Accept again source addresses that do not have a port number (Kamal Heib) [1720892]
+- [infiniband] RDMA/ipoib: implement ethtool .get_link() callback (Kamal Heib) [1720892]
+- [infiniband] RDMA/uverbs: check for allocation failure in uapi_add_elm() (Kamal Heib) [1720892]
+- [infiniband] RDMA: Convert put_page() to put_user_page*() (Kamal Heib) [1720892]
+- [infiniband] RDMA/nes: Remove second wait queue initialization call (Kamal Heib) [1720892]
+- [infiniband] RDMA/nes: Remove useless NULL checks (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Make ib_destroy_cq() void (Kamal Heib) [1720892]
+- [infiniband] RDMA/ipoib: Remove check of destroy CQ (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Return void from ib_device_check_mandatory() (Kamal Heib) [1720892]
+- [infiniband] RDMA/umem: Move page_shift from ib_umem to ib_odp_umem (Kamal Heib) [1720892]
+- [infiniband] RDMA/qedr: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720892]
+- [infiniband] RDMA/cxgb4: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720892]
+- [infiniband] RDMA/core: Fix doc typo (Kamal Heib) [1720892]
+- [infiniband] RDMA/rw: Add info regarding SG count failure (Kamal Heib) [1720892]
+- [infiniband] RDMA/rw: Print the correct number of sig MRs (Kamal Heib) [1720892]
+- [infiniband] RDMA/rw: Fix doc typo (Kamal Heib) [1720892]
+- [infiniband] IB/isert: Remove unused sig_attrs argument (Kamal Heib) [1720892]
+- [infiniband] IB/iser: Remove unused sig_attrs argument (Kamal Heib) [1720892]
+- [infiniband] IB/iser: Refactor iscsi_iser_check_protection function (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Entropy in admin commands id (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Print address on AH creation failure (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Be consistent with success flow return value (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Use API to get contiguous memory blocks aligned to device supported page size (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Remove unused includes (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Use rdma block iterator in chunk list creation (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Remove unneeded admin commands abort flow (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Use kvzalloc instead of kzalloc with fallback (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Remove check that prevents destroy of resources in error flows (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Handle mmap insertions overflow (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Fix success return value in case of error (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Remove MAYEXEC flag check from mmap flow (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add driver to Kconfig/Makefile (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add the efa module (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add EFA verbs implementation (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add common command handlers (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Implement functions that submit and complete admin commands (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add the ABI definitions (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add the com service API definitions (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add the efa_com.h file (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add the efa.h header file (Kamal Heib) [1720892]
+- [infiniband] RDMA/efa: Add EFA device definitions (Kamal Heib) [1720892]
+- [infiniband] RDMA: Add EFA related definitions (Kamal Heib) [1720892]
+- [fs] CIFS: Fix use after free of file info structures (Dave Wysochanski) [1757865]
+- [mm] mm, memory_hotplug: fix scan_movable_pages() for gigantic hugepages (Rafael Aquini) [1730172]
+- [char] ipmi: Don't allow device module unload when in use (Tony Camuso) [1759916]
+- [netdrv] net: phy: Also request modules for C45 IDs (Gary Hook) [1764274]
+- [s390] s390/dasd: Fix error handling during online processing (Philipp Rudo) [1764492]
+- [s390] s390/cpumsf: Check for CPU Measurement sampling (Philipp Rudo) [1764490]
+- [edac] EDAC/amd64: Support asymmetric dual-rank DIMMs (Gary Hook) [1753384]
+- [edac] EDAC/amd64: Cache secondary Chip Select registers (Gary Hook) [1753384]
+- [edac] EDAC/amd64: Decode syndrome before translating address (Gary Hook) [1753384]
+- [edac] EDAC/amd64: Find Chip Select memory size using Address Mask (Gary Hook) [1753384]
+- [edac] EDAC/amd64: Initialize DIMM info for systems with more than two channels (Gary Hook) [1753384]
+- [edac] EDAC/amd64: Recognize DRAM device type ECC capability (Gary Hook) [1753384]
+- [edac] EDAC/amd64: Support more than two controllers for chip selects handling (Gary Hook) [1753384]
+- [scsi] scsi: fnic: fix msix interrupt allocation (Govindarajulu Varadarajan) [1745083]
+- [scsi] scsi: fnic: print port speed only at driver init or speed change (Govindarajulu Varadarajan) [1745083]
+- [netdrv] qmi_wwan: apply SET_DTR quirk to Sierra WP7607 (Lubomir Rintel) [1729083]
+
+* Thu Nov 07 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-148.el8]
+- [tools] libbpf: remove compile time warning from libbpf_util.h (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: remove dependency on barrier.h in xsk.h (Yauheni Kaliuta) [1747341]
+- [kernel] seccomp, bpf: disable preemption before calling into bpf prog (Yauheni Kaliuta) [1747341]
+- [lib] bpf: test_bpf: turn off preemption in function __run_once (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: remove unnecessary cast-to-void (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: fix sysctl.c warning (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: fix using uninitialized ioctl results (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: proper XSKMAP cleanup (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: fix invalid munmap call (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: fix XDP socket ring buffer memory ordering (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: remove likely/unlikely in xsk.h (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: xdp_redirect, correctly get dummy program id (Yauheni Kaliuta) [1747341]
+- [net] bpf: fix access to skb_shared_info->gso_segs (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: fix out of bounds backwards jmps due to dead code removal (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: fix use after free in prog symbol exposure (Yauheni Kaliuta) [1747341]
+- [include] bpf: Fix preempt_enable_no_resched() abuse (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: test cases for pkt/null checks in subprogs (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: mark registers in all frames after pkt/null checks (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: add binary to gitignore (Yauheni Kaliuta) [1747341]
+- [net] bpf: Check address length before reading address family (Yauheni Kaliuta) [1747341]
+- [net] flow_dissector: disable preemption around BPF calls (Yauheni Kaliuta) [1747341]
+- [net] flow_dissector: switch kernel context to struct bpf_flow_dissector (Yauheni Kaliuta) [1747341]
+- [net] flow_dissector: fix clamping of BPF flow_keys for non-zero nhoff (Yauheni Kaliuta) [1747341]
+- [net] flow_dissector: allow access only to a subset of __sk_buff fields (Yauheni Kaliuta) [1747341]
+- [net] net/flow_dissector: pass flow_keys->n_proto to BPF programs (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: fix vlan handling in flow dissector program (Yauheni Kaliuta) [1747341]
+- [tools] bpf, libbpf: fix quiet install_headers (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: add libelf dependency to shared library build (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: add xsk.h to install_headers target (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: add btf_dedup test for VOID equivalence check (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: fix btf_dedup equivalence check handling of different kinds (Yauheni Kaliuta) [1747341]
+- [documentation] bpf, doc: fix BTF docs reflow of bullet list (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: test case for invalid call stack in dead code (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: remove incorrect 'verifier bug' warning (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: Only print ref_obj_id for refcounted reg (Yauheni Kaliuta) [1747341]
+- [tools] tool: use bpf_program__get_prog_info_linear() in prog.c:do_dump() (Yauheni Kaliuta) [1747341]
+- [tools] tools lib bpf: Introduce bpf_program__get_prog_info_linear() (Yauheni Kaliuta) [1747341]
+- [tools] perf tools: Fix errors under optimization level '-Og' (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: Try harder when allocating memory for large maps (Yauheni Kaliuta) [1747341]
+- [tools] tools: bpf: synchronise BPF UAPI header with tools (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: add fwd enum resolution test for btf_dedup (Yauheni Kaliuta) [1747341]
+- [tools] btf: resolve enum fwds in btf_dedup (Yauheni Kaliuta) [1747341]
+- [tools] bpf: Add an example for bpf_get_listener_sock (Yauheni Kaliuta) [1747341]
+- [tools] bpf: Test ref release issue in bpf_tcp_sock and bpf_sk_fullsock (Yauheni Kaliuta) [1747341]
+- [tools] bpf: Sync bpf.h to tools/ (Yauheni Kaliuta) [1747341]
+- [net] bpf: Add bpf_get_listener_sock(struct bpf_sock *sk) helper (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: Fix bpf_tcp_sock and bpf_sk_fullsock issue related to bpf_sk_release (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: fix to reject unknown flags in xsk_socket__create() (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: fix segfault of test_progs when prog loading failed (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: fix replace_map_fd_with_map_ptr's ldimm64 second imm field (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: test_progs: initialize duration in singal_pending test (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: force fixdep compilation at the start of the build (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: fix compilation with out-of-tree $(OUTPUT) (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: test that GSO works in lwt_ip_encap (Yauheni Kaliuta) [1747341]
+- [bpf] bpf: hbm: fix spelling mistake "deault" -> "default" (Yauheni Kaliuta) [1747341]
+- [tools] bpf: add test cases for non-pointer sanitiation logic (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up test_progs - misc (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up test_progs - spinlock (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up test_progs - tracepoint (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up test_progs - stackmap (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up test_progs - xdp (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up test_progs - pkt access (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up test_progs - preparations (Yauheni Kaliuta) [1747341]
+- [bpf] bpf: HBM test script (Yauheni Kaliuta) [1747341]
+- [bpf] bpf: User program for testing HBM (Yauheni Kaliuta) [1747341]
+- [bpf] bpf: Sample HBM BPF program to limit egress bw (Yauheni Kaliuta) [1747341]
+- [include] bpf: sync bpf.h to tools and update bpf_helpers.h (Yauheni Kaliuta) [1747341]
+- [net] bpf: add bpf helper bpf_skb_ecn_set_ce (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: silence compiler warning for xdpsock_user.c (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: set unlimited RLIMIT_MEMLOCK for test_sock_fields (Yauheni Kaliuta) [1747341]
+- [documentation] docs/bpf: minor casing/punctuation fixes (Yauheni Kaliuta) [1747341]
+- [documentation] docs/btf: reflow text to fill up to 78 characters (Yauheni Kaliuta) [1747341]
+- [documentation] docs/btf: fix typos, improve wording (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: fix u64_stats_init() usage in bpf_prog_alloc() (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: add btf_dedup test of FWD/STRUCT resolution (Yauheni Kaliuta) [1747341]
+- [tools] btf: allow to customize dedup hash table size (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: fix formatting for btf_ext__get_raw_data (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: fix btf_dedup testing code (Yauheni Kaliuta) [1747341]
+- [tools] tools: libbpf: make sure readelf shows full names in build checks (Yauheni Kaliuta) [1747341]
+- [bpf] samples: bpf: use libbpf where easy (Yauheni Kaliuta) [1747341]
+- [tools] tools: libbpf: add a correctly named define for map iteration (Yauheni Kaliuta) [1747341]
+- [bpf] samples: bpf: remove load_sock_ops in favour of bpftool (Yauheni Kaliuta) [1747341]
+- [bpf] samples: bpf: force IPv4 in ping (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: use __bpf_constant_htons in test_prog.c for flow dissector (Yauheni Kaliuta) [1747341]
+- [tools] bpf: add missing entries to bpf_helpers.h (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: selftests: add map lookup to test_map_in_map bpf prog (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: set inner_map_meta->spin_lock_off correctly (Yauheni Kaliuta) [1747341]
+- [bpf] samples: bpf: fix: broken sample regarding removed function (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpftool: recognize bpf_prog_info run_time_ns and run_cnt (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: sync bpf.h into tools (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: expose program stats via bpf_prog_info (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: fix build without bpf_syscall (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: enable program stats (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: check that BPF programs run with preemption disabled (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: convert xdpsock to use libbpf for AF_XDP access (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: add support for using AF_XDP sockets (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: make sure signal interrupts BPF_PROG_TEST_RUN (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: Fix dummy program unloading for xdp_redirect samples (Yauheni Kaliuta) [1747341]
+- [s390] s390/net: convert pnetids to ascii (Yauheni Kaliuta) [1747341]
+- [net] bpf: add skb->queue_mapping write access from tc clsact (Yauheni Kaliuta) [1747341]
+- [tools] tools/libbpf: support bigger BTF data sizes (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: test_lwt_ip_encap: add negative tests. (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: Introduce bpf_object__btf (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: Introduce bpf_map__resize (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: replace bzero with memset (Yauheni Kaliuta) [1747341]
+- [net] net: fix GSO in bpf_lwt_push_ip_encap (Yauheni Kaliuta) [1747341]
+- [net] net: fix double-free in bpf_lwt_xmit_reroute (Yauheni Kaliuta) [1747341]
+- [net] bpf: fix memory leak in bpf_lwt_xmit_reroute (Yauheni Kaliuta) [1747341]
+- [net] bpf: make LWTUNNEL_BPF dependent on INET (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: add test_lwt_ip_encap selftest (Yauheni Kaliuta) [1747341]
+- [include] bpf: sync <kdir>/include/.../bpf.h with tools/include/.../bpf.h (Yauheni Kaliuta) [1747341]
+- [net] bpf: add handling of BPF_LWT_REROUTE to lwt_bpf.c (Yauheni Kaliuta) [1747341]
+- [net] ipv6_stub: add ipv6_route_input stub/proxy. (Yauheni Kaliuta) [1747341]
+- [net] bpf: handle GSO in bpf_lwt_push_encap (Yauheni Kaliuta) [1747341]
+- [net] bpf: implement BPF_LWT_ENCAP_IP mode in bpf_lwt_push_encap (Yauheni Kaliuta) [1747341]
+- [net] bpf: add plumbing for BPF_LWT_ENCAP_IP in bpf_lwt_push_encap (Yauheni Kaliuta) [1747341]
+- [net] bpf: offload: add priv field for drivers (Yauheni Kaliuta) [1747341]
+- [tools] tools: bpftool: doc, add text about feature-subcommand (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: relax sub-register mode compilation criteria (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: centre kernel bpf objects under new subdir "progs" (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: extend sub-register mode compilation to all bpf object files (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: add "alu32" to .gitignore (Yauheni Kaliuta) [1747341]
+- [tools] bpf: Add test_sock_fields for skb->sk and bpf_tcp_sock (Yauheni Kaliuta) [1747341]
+- [tools] bpf: Add skb->sk, bpf_sk_fullsock and bpf_tcp_sock tests to test_verifer (Yauheni Kaliuta) [1747341]
+- [nclude] bpf: Sync bpf.h to tools/ (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: Add struct bpf_tcp_sock and BPF_FUNC_tcp_sock (Yauheni Kaliuta) [1747341]
+- [net] bpf: Refactor sock_ops_convert_ctx_access (Yauheni Kaliuta) [1747341]
+- [net] bpf: Add state, dst_ip4, dst_ip6 and dst_port to bpf_sock (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: Add a bpf_sock pointer to __sk_buff and a bpf_sk_fullsock helper (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: remove btf__get_strings() superseded by raw data API (Yauheni Kaliuta) [1747341]
+- [tools] btf: expose API to work with raw btf_ext data (Yauheni Kaliuta) [1747341]
+- [tools] btf: expose API to work with raw btf data (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: add log_level to bpf_load_program_attr (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: add missing strings.h include (Yauheni Kaliuta) [1747341]
+- [s390] s390/net: move pnet constants (Yauheni Kaliuta) [1747341]
+- [tools] bpf: test_maps: fix possible out of bound access warning (Yauheni Kaliuta) [1747341]
+- [tools] tools: bpftool: doc, fix incorrect text (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: test reading the offloaded program (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: add test for mixing generic and offload XDP (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: print traceback when test fails (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: fix the expected messages (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: add const qualifier to btf__get_map_kv_tids() map_name parameter (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: add "any alignment" annotation for some tests (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: use localhost in tcp_{server, client}.py (Yauheni Kaliuta) [1747341]
+- [s390] s390: bpf: fix JMP32 code-gen (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: remove generated verifier/tests.h on 'make clean' (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: Check the prog id before exiting (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: Add a "force" flag to XDP samples (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: Extend RLIMIT_MEMLOCK for xdp_{sample_pkts, router_ipv4} (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: Convert XDP samples to libbpf usage (Yauheni Kaliuta) [1747341]
+- [bpf] samples/bpf: xdp_redirect_cpu have not need for read_trace_pipe (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: test for BPF_F_LOCK (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: sync uapi/bpf.h (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: introduce BPF_F_LOCK flag (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: add bpf_spin_lock C test (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: add simple BPF_PROG_TEST_RUN examples for flow dissector (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: add bpf_spin_lock verifier tests (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: sync include/uapi/linux/bpf.h (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: add support for bpf_spin_lock to cgroup local storage (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: introduce bpf_spin_lock (Yauheni Kaliuta) [1747341]
+- [net] bpf: Correctly annotate implicit fall through in bpf_base_func_proto (Yauheni Kaliuta) [1747341]
+- [kernel] bpf, cgroups: clean up kerneldoc warnings (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: fix bitrotted kerneldoc (Yauheni Kaliuta) [1747341]
+- [include] bpf: BPF_PROG_TYPE_CGROUP_{SKB, SOCK, SOCK_ADDR} require cgroups enabled (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: mark verifier test that uses bpf_trace_printk as BPF_PROG_TYPE_TRACEPOINT (Yauheni Kaliuta) [1747341]
+- [net] bpf: add BPF_PROG_TEST_RUN support for flow dissector (Yauheni Kaliuta) [1747341]
+- [net] net/flow_dissector: move bpf case into __skb_flow_bpf_dissect (Yauheni Kaliuta) [1747341]
+- [net] Revert "[net] flow_dissector: disable preemption around BPF calls" (Yauheni Kaliuta) [1747341]
+- [tools] tools: bpftool: warn about risky prog array updates (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: remove duplicated include (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up the rest of test_verifier (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: break up test_verifier (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: prepare for break up of verifier tests (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: makefile support sub-register code-gen test mode (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: functional and min/max reasoning unit tests for JMP32 (Yauheni Kaliuta) [1747341]
+- [s390] s390: bpf: implement jitting of JMP32 (Yauheni Kaliuta) [1747341]
+- [powerpc] ppc: bpf: implement jitting of JMP32 (Yauheni Kaliuta) [1747341]
+- [arm64] arm64: bpf: implement jitting of JMP32 (Yauheni Kaliuta) [1747341]
+- [x86] x86_64: bpf: implement jitting of JMP32 (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: JIT blinds support JMP32 (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: interpreter support for JMP32 (Yauheni Kaliuta) [1747341]
+- [tools] tools: bpftool: teach cfg code about JMP32 (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: disassembler support JMP32 (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: verifier support JMP32 (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: refactor verifier min/max code for condition jump (Yauheni Kaliuta) [1747341]
+- [include] bpf: allocate 0x06 to new eBPF instruction class JMP32 (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: suppress readelf stderr when probing for BTF support (Yauheni Kaliuta) [1747341]
+- [net] bpf: allow BPF programs access skb_shared_info->gso_segs field (Yauheni Kaliuta) [1747341]
+- [tools] tool: feature probing, change default action (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: notify offload JITs about optimizations (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: verifier: record original instruction index (Yauheni Kaliuta) [1747341]
+- [tools] selftests: bpf: add tests for dead code removal (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: verifier: remove unconditional branches by 0 (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: verifier: remove dead code (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: verifier: hard wire branches to dead code (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: change parameters of call/branch offset adjustment (Yauheni Kaliuta) [1747341]
+- [tools] selftests/bpf: don't hardcode iptables/nc path in test_tcpnotify_user (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: Show supported ELF section names when failing to guess prog/attach type (Yauheni Kaliuta) [1747341]
+- [documentation] bpf: btf: add btf documentation (Yauheni Kaliuta) [1747341]
+- [kernel] perf: Make perf_event_output() propagate the output() return (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: fix a (false) compiler warning (Yauheni Kaliuta) [1747341]
+- [tools] tool: add bash completion for peek/push/enqueue/pop/dequeue (Yauheni Kaliuta) [1747341]
+- [tools] tool: add pop and dequeue commands (Yauheni Kaliuta) [1747341]
+- [tools] tool: add push and enqueue commands (Yauheni Kaliuta) [1747341]
+- [tools] tool: add peek command (Yauheni Kaliuta) [1747341]
+- [tools] tool: don't print empty key/value for maps (Yauheni Kaliuta) [1747341]
+- [tools] tool: make key optional in lookup command (Yauheni Kaliuta) [1747341]
+- [tools] tool: make key and value optional in update command (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: support __int128 in bpftool map pretty dumper (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: add bpffs pretty print test for int128 (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: refactor test_btf pretty printing for multiple map value formats (Yauheni Kaliuta) [1747341]
+- [tools] tools/bpf: add int128 raw test in test_btf (Yauheni Kaliuta) [1747341]
+- [kernel] bpf: btf: support 128 bit integer type (Yauheni Kaliuta) [1747341]
+- [tools] libbpf: don't define CC and AR (Yauheni Kaliuta) [1747341]
+- [include] bpf: remove leftovers after v5.0 update (Yauheni Kaliuta) [1715770]
+- [target] scsi: target: cxgbit: add support for IEEE_8021QAZ_APP_SEL_STREAM selector (Vishal Kulkarni) [1725820]
+- [netdrv] cxgb4i: add support for IEEE_8021QAZ_APP_SEL_STREAM selector (Vishal Kulkarni) [1725818]
+- [net] SUNRPC: Fix possible autodisconnect during connect due to old last_used (Dave Wysochanski) [1724692]
+- [fs] NFSv4: Add lease_time and lease_expired to 'nfs4:' line of mountstats (Dave Wysochanski) [1727369]
+- [scsi] scsi: zfcp: fix reaction on bit error threshold notification (Philipp Rudo) [1764494]
+- [iommu] iommu/arm-smmu: Error out only if not enough context interrupts (Mark Langsdorf) [1658736]
+- [netdrv] cxgb4:Fix out-of-bounds MSI-X info array access (Vishal Kulkarni) [1763194]
+- [fs] vfs: Fix EOVERFLOW testing in put_compat_statfs64 (Eric Sandeen) [1757902]
+- [security] selinux: fix context string corruption in convert_context() (Ondrej Mosnacek) [1758086]
+- [fs] cifs: use cifsInodeInfo->open_file_lock while iterating to avoid a panic (Dave Wysochanski) [1757865]
+- [kernel] alarmtimer: Use EOPNOTSUPP instead of ENOTSUPP (Vladis Dronov) [1760638]
+- [netdrv] cxgb4: RHEL-only disable device dump (Jonathan Toppins) [1708456]
+- [fs] xfs: Fix deadlock between AGI and AGF with RENAME_WHITEOUT (Brian Foster) [1759564]
+- [x86] x86/stacktrace: Prevent access_ok() warnings in arch_stack_walk_user() (Jerome Marchand) [1757758]
+- [s390] s390/sclp: Fix bit checked for has_sipl (Philipp Rudo) [1748347]
+- [fs] dax: dax_layout_busy_page() should not unmap cow pages (Jeff Moyer) [1752109]
+- [fs] dax: Fix missed wakeup in put_unlocked_entry() (Jeff Moyer) [1752109]
+- [fs] dax: Fix missed wakeup with PMD faults (Jeff Moyer) [1752109]
+- [fs] dax: Fix xarray entry association for mixed mappings (Jeff Moyer) [1752109]
+- [mm] mm: page_mkclean vs MADV_DONTNEED race (Jeff Moyer) [1752109]
+- [fs] dax: Flush partial PMDs correctly (Jeff Moyer) [1752109 1724979]
+- [fs] dax: Use non-exclusive wait in wait_entry_unlocked() (Jeff Moyer) [1752109]
+- [x86] x86/mm: Fix decoy address handling vs 32-bit builds (Jeff Moyer) [1752109 1585079]
+- [fs] dax: Fix unlock mismatch with updated API (Jeff Moyer) [1752109 1724956]
+- [fs] dax: Don't access a freed inode (Jeff Moyer) [1752109 1724956]
+- [fs] dax: Check page->mapping isn't NULL (Jeff Moyer) [1752109 1585079 1724956]
+- [fs] dax: Avoid losing wakeup in dax_lock_mapping_entry (Jeff Moyer) [1752109]
+- [fs] dax: Fix huge page faults (Jeff Moyer) [1752109]
+- [fs] dax: Fix dax_unlock_mapping_entry for PMD pages (Jeff Moyer) [1752109]
+- [fs] dax: Reinstate RCU protection of inode (Jeff Moyer) [1752109]
+- [fs] dax: Make sure the unlocking entry isn't locked (Jeff Moyer) [1752109]
+- [fs] dax: Remove optimisation from dax_lock_mapping_entry (Jeff Moyer) [1752109]
+- [fs] dax: Convert page fault handlers to XArray (Jeff Moyer) [1752109]
+- [fs] dax: Convert dax_lock_mapping_entry to XArray (Jeff Moyer) [1752109]
+- [fs] dax: Convert dax writeback to XArray (Jeff Moyer) [1752109]
+- [fs] dax: Convert __dax_invalidate_entry to XArray (Jeff Moyer) [1752109]
+- [fs] dax: Convert dax_layout_busy_page to XArray (Jeff Moyer) [1752109]
+- [fs] dax: Convert dax_insert_pfn_mkwrite to XArray (Jeff Moyer) [1752109]
+- [fs] dax: Hash on XArray instead of mapping (Jeff Moyer) [1752109]
+- [fs] dax: Rename some functions (Jeff Moyer) [1752109]
+- [fs] dax: Fix deadlock in dax_lock_mapping_entry() (Jeff Moyer) [1752109 1585079 1641544]
+- [drivers] device-dax: Add missing address_space_operations (Jeff Moyer) [1752109 1585079]
+- [x86] x86/mm/pat: Prepare {reserve, free}_memtype() for "decoy" addresses (Jeff Moyer) [1752109 1585079]
+- [mm] mm, memory_failure: Teach memory_failure() about dev_pagemap pages (Jeff Moyer) [1703560 1752109 1585079]
+- [fs] filesystem-dax: Introduce dax_lock_mapping_entry() (Jeff Moyer) [1752109 1585079]
+- [mm] mm, memory_failure: Collect mapping size in collect_procs() (Jeff Moyer) [1752109 1585079]
+- [mm] mm, madvise_inject_error: Let memory_failure() optionally take a page reference (Jeff Moyer) [1752109 1585079]
+- [mm] mm, madvise_inject_error: Disable MADV_SOFT_OFFLINE for ZONE_DEVICE pages (Jeff Moyer) [1752109 1585079]
+- [fs] filesystem-dax: Set page->index (Jeff Moyer) [1752109 1585079]
+- [drivers] device-dax: Set page->index (Jeff Moyer) [1752109 1585079]
+- [drivers] device-dax: Enable page_mapping() (Jeff Moyer) [1752109 1585079]
+- [drivers] device-dax: Convert to vmf_insert_mixed and vm_fault_t (Jeff Moyer) [1752109 1585079]
+- [pci] PCI: Add quirk to disable MSI-X support for Amazon's Annapurna Labs Root Port (Myron Stowe) [1732357]
+- [pci] PCI/VPD: Prevent VPD access for Amazon's Annapurna Labs Root Port (Myron Stowe) [1732357]
+- [pci] PCI: Add ACS quirk for Amazon Annapurna Labs root ports (Myron Stowe) [1732357]
+- [pci] PCI: Add Amazon's Annapurna Labs vendor ID (Myron Stowe) [1732357]
+- [arm64] arm64: PCI: Preserve firmware configuration when desired (Myron Stowe) [1732372]
+- [arm64] arm64: PCI: Allow resource reallocation if necessary (Myron Stowe) [1732372]
+- [pci] PCI: Don't auto-realloc if we're preserving firmware config (Myron Stowe) [1732372]
+- [pci] PCI/ACPI: Evaluate PCI Boot Configuration _DSM (Myron Stowe) [1732372]
+- [irqchip] irqchip/gic-v2m: Add support for Amazon Graviton variant of GICv3+GICv2m (Myron Stowe) [1732382]
+- [pci] PCI: al: Add Amazon Annapurna Labs PCIe host controller driver (Myron Stowe) [1732357]
+- [netdrv] mlx4: fix spelling mistake "veify" -> "verify" (Alaa Hleihel) [1724340]
+- [netdrv] IB/mlx4: Fix memory leaks (Alaa Hleihel) [1724340]
+- [netdrv] net/mlx4_en: fix a memory leak bug (Alaa Hleihel) [1724340]
+- [netdrv] IB/mlx4: Delete unused func arg (Alaa Hleihel) [1724340]
+- [netdrv] net/mlx4_en: ethtool, Remove unsupported SFP EEPROM high pages query (Alaa Hleihel) [1724340 1724339]
+- [netdrv] net/mlx4_core: Change the error print to info print (Alaa Hleihel) [1724340 1724339]
+- [netdrv] mlx4: Convert pv_id_table to XArray (Alaa Hleihel) [1724340 1724339]
+- [netdrv] IB/mlx4: Fix race condition between catas error reset and aliasguid flows (Alaa Hleihel) [1724340 1724338]
+- [netdrv] net/mlx4_core: Fix qp mtt size calculation (Alaa Hleihel) [1724340 1724338]
+- [netdrv] net/mlx4_core: Fix locking in SRIOV mode when switching between events and polling (Alaa Hleihel) [1724340 1724338]
+- [netdrv] net/mlx4_core: Fix reset flow when in command polling mode (Alaa Hleihel) [1724340 1724338]
+- [netdrv] mellanox: Switch to bitmap_zalloc() (Alaa Hleihel) [1724340 1724338]
+- [netdrv] IB/mlx4: Increase the timeout for CM cache (Alaa Hleihel) [1724340 1724338]
+- [netdrv] net/mlx4_core: A write memory barrier is sufficient in EQ ci update (Alaa Hleihel) [1724340 1724338]
+- [netdrv] net/mlx4: Mark expected switch fall-through (Alaa Hleihel) [1724340 1724338]
+- [netdrv] net/mlx4: remove unneeded semicolon (Alaa Hleihel) [1724340 1724338]
+- [parport] parport: parport_serial: Add support for Sunix Multi I/O boards (John Linville) [1663781]
+- [tty] serial: 8250_pci: Add support for Sunix serial boards (John Linville) [1663781]
+- [scsi] hpsa: update driver version (Joseph Szczypek) [1761968]
+- [scsi] scsi: hpsa: add missing hunks in reset-patch (Joseph Szczypek) [1761968]
+- [netdrv] igc: Clean up unused shadow_vfta pointer (David Arcari) [1721713]
+- [netdrv] igc: Add Rx checksum support (David Arcari) [1721713]
+- [netdrv] igc: Add set_rx_mode support (David Arcari) [1721713]
+- [netdrv] igc: Add SCTP CRC checksumming functionality (David Arcari) [1721713]
+- [netdrv] igc: Add tx_csum offload functionality (David Arcari) [1721713]
+- [netdrv] igc: Remove unneeded PCI bus defines (David Arcari) [1721713]
+- [netdrv] igc: Add NVM checksum validation (David Arcari) [1721713]
+- [netdrv] igc: Remove useless forward declaration (David Arcari) [1721713]
+- [netdrv] ethernet: Delete unnecessary checks before the macro call dev_kfree_skb (David Arcari) [1721713]
+- [netdrv] igc: Add more SKUs for i225 device (David Arcari) [1721713]
+- [netdrv] igc: Update the MAC reset flow (David Arcari) [1721713]
+- [netdrv] igc: Remove the unused field from a device specification structure (David Arcari) [1721713]
+- [netdrv] igc: Remove the polarity field from a PHY information structure (David Arcari) [1721713]
+- [netdrv] net: Use skb accessors in network drivers (David Arcari) [1721713]
+- [netdrv] igc: Prefer pcie_capability_read_word() (David Arcari) [1721713]
+- [netdrv] igc: Cleanup the redundant code (David Arcari) [1721713]
+- [netdrv] igc: Add flow control support (David Arcari) [1721713]
+- [netdrv] igc: Remove the obsolete workaround (David Arcari) [1721713]
+- [netdrv] igc: Clean up unused pointers (David Arcari) [1721713]
+- [netdrv] igc: Fix double definitions (David Arcari) [1721713]
+- [netdrv] igb/igc: warn when fatal read failure happens (David Arcari) [1721713]
+- [scsi] scsi: qla2xxx: Fix different size DMA Alloc/Unmap (Himanshu Madhani) [1753031]
+- [scsi] qla2xxx: call dma_free_coherent with correct size in all cases in qla24xx_sp_unmap (Himanshu Madhani) [1753031]
+- [arm64] crypto: arm64/crc32 - remove PMULL based CRC32 driver (Mark Salter) [1742821]
+- [arm64] arm64/lib: improve CRC32 performance for deep pipelines (Mark Salter) [1742821]
+- [arm64] arm64/lib: add accelerated crc32 routines (Mark Salter) [1742821]
+- [arm64] arm64: cpufeature: add feature for CRC32 instructions (Mark Salter) [1742821]
+- [lib] lib/crc32: make core crc32() routines weak so they can be overridden (Mark Salter) [1742821]
+- [arm64] arm64: cpu: Move errata and feature enable callbacks closer to callers (Mark Salter) [1742821]
+- [arm64] arm64: kill config_sctlr_el1() (Mark Salter) [1742821]
+- [include] ethtool: Add SFF-8436 and SFF-8636 max EEPROM length definitions (Petr Oros) [1757522]
+- [net] bridge/mdb: remove wrong use of NLM_F_MULTI (Hangbin Liu) [1756799]
+- [net] bridge: mcast: don't delete permanent entries when fast leave is enabled (Hangbin Liu) [1756799]
+- [net] bridge: multicast: use rcu to access port list from br_multicast_start_querier (Hangbin Liu) [1756799]
+- [net] bridge: Fix ethernet header pointer before check skb forwardable (Hangbin Liu) [1756799]
+- [net] clear skb->tstamp in bridge forwarding path (Hangbin Liu) [1756799]
+- [net] bridge: br_arp_nd_proxy: set icmp6_router if neigh has NTF_ROUTER (Hangbin Liu) [1756799]
+- [net] vlan: Inherit MPLS features from parent device (Hangbin Liu) [1724306]
+- [netdrv] linux/dim: Fix overflow in dim calculation (Ivan Vecera) [1737807]
+- [lib] dim: Fix -Wunused-const-variable warnings (Ivan Vecera) [1737807]
+- [lib] linux/dim: Add completions count to dim_sample (Ivan Vecera) [1737807]
+- [netdrv] linux/dim: Move implementation to .c files (Ivan Vecera) [1737807]
+- [netdrv] linux/dim: Rename externally used net_dim members (Ivan Vecera) [1737807]
+- [netdrv] linux/dim: Rename net_dim_sample() to net_dim_update_sample() (Ivan Vecera) [1737807]
+- [netdrv] linux/dim: Rename externally exposed macros (Ivan Vecera) [1737807]
+- [include] linux/dim: Remove "net" prefix from internal DIM members (Ivan Vecera) [1737807]
+- [include] linux/dim: Move logic to dim.h (Ivan Vecera) [1737807]
+- [tools] selftests: add a test case for cls_lower handle overflow (Ivan Vecera) [1761512]
+- [net] idr: introduce idr_for_each_entry_continue_ul() (Ivan Vecera) [1761512]
+- [net] idr: fix overflow case for idr_for_each_entry_ul() (Ivan Vecera) [1761512]
+- [net] sctp: add chunks to sk_backlog when the newsk sk_socket is not set (Xin Long) [1734271]
+- [net] netns: enable to dump full nsid translation table (Petr Oros) [1757748]
+- [net] netns: enable to specify a nsid for a get request (Petr Oros) [1757748]
+- [net] netns: add support of NETNSA_TARGET_NSID (Petr Oros) [1757748]
+- [net] netns: introduce 'struct net_fill_args' (Petr Oros) [1757748]
+- [net] netns: remove net arg from rtnl_net_fill() (Petr Oros) [1757748]
+- [net] mpls: fix warning with multi-label encap (Hangbin Liu) [1756788]
+- [net] mpls: Return error for RTA_GATEWAY attribute (Hangbin Liu) [1756788]
+- [net] macsec: drop skb sk before calling gro_cells_receive (Xin Long) [1745819]
+- [net] team: add ethtool get_link_ksettings (Hangbin Liu) [1724896]
+- [net] sched: flower: don't call synchronize_rcu() on mask creation (Ivan Vecera) [1751856]
+- [net] sched: flower: refactor reoffload for concurrent access (Ivan Vecera) [1751856]
+- [net] sched: flower: fix filter net reference counting (Ivan Vecera) [1751856]
+- [net] sched: flower: use correct ht function to prevent duplicates (Ivan Vecera) [1751856]
+- [net] sched: flower: insert filter to ht before offloading it to hw (Ivan Vecera) [1751856]
+- [net] sched: ensure tc flower reoffload takes filter ref (Ivan Vecera) [1751856]
+- [net] sched: flower: set unlocked flag for flower proto ops (Ivan Vecera) [1751856]
+- [net] sched: flower: track rtnl lock state (Ivan Vecera) [1751856]
+- [net] sched: flower: protect flower classifier state with spinlock (Ivan Vecera) [1751856]
+- [net] sched: flower: handle concurrent tcf proto deletion (Ivan Vecera) [1751856]
+- [net] sched: flower: handle concurrent filter insertion in fl_change (Ivan Vecera) [1751856]
+- [net] sched: flower: protect masks list with spinlock (Ivan Vecera) [1751856]
+- [net] sched: flower: handle concurrent mask insertion (Ivan Vecera) [1751856]
+- [net] sched: flower: add reference counter to flower mask (Ivan Vecera) [1751856]
+- [net] sched: flower: track filter deletion with flag (Ivan Vecera) [1751856]
+- [net] sched: flower: introduce reference counting for filters (Ivan Vecera) [1751856]
+- [net] sched: flower: refactor fl_change (Ivan Vecera) [1751856]
+- [net] sched: flower: don't check for rtnl on head dereference (Ivan Vecera) [1751856]
+- [kernel] exit from RHEL 8.2 early ystream mode (Phillip Lougher)
+
+* Fri Nov 01 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.13.el8]
+- [x86] kvm: svm: Remove unneeded WBINVD and DF_FLUSH when starting SEV guests (Janakarajan Natarajan) [1762517]
+- [x86] kvm: svm: Reduce WBINVD/DF_FLUSH invocations (Janakarajan Natarajan) [1762517]
+- [x86] kvm: svm: Guard against DEACTIVATE when performing WBINVD/DF_FLUSH (Janakarajan Natarajan) [1762517]
+- [x86] kvm: svm: Serialize access to the SEV ASID bitmap (Janakarajan Natarajan) [1762517]
+- [xen] remove pre-xen3 fallback handlers (Vitaly Kuznetsov) [1759997]
+- [net] SUNRPC: Count ops completing with tk_status < 0 (Dave Wysochanski) [1636572]
+- [net] SUNRPC: Use proper printk specifiers for unsigned long long (Dave Wysochanski) [1636572]
+- [net] SUNRPC: Move call to rpc_count_iostats before rpc_call_done (Dave Wysochanski) [1636572]
+- [net] SUNRPC: Add tracking of RPC level errors (Dave Wysochanski) [1636572]
+- [net] SUNRPC: Refactor rpc_restart_call/rpc_restart_call_prepare (Dave Wysochanski) [1636572]
+- [net] SUNRPC: Fix up task signalling (Dave Wysochanski) [1636572]
+- [net] SUNRPC: Track writers of the 'channel' file to improve cache_listeners_exist (Dave Wysochanski) [1741333]
+- [net] sunrpc/cache: handle missing listeners better. (Dave Wysochanski) [1741333]
+- [pci] PCI/ACPI: Advertise _HPX Type 3 support via _OSC (Myron Stowe) [1712756]
+- [pci] PCI/ACPI: Implement _HPX Type 3 Setting Record (Myron Stowe) [1712756]
+- [netdrv] e1000e: Add support for Comet Lake (David Arcari) [1764549]
+- [netdrv] e1000e: Add support for S0ix (Ken Cox) [1721709]
+- [netdrv] e1000e: Make speed detection on hotplugging cable more reliable (Ken Cox) [1721709]
+- [netdrv] ethernet: Delete unnecessary checks before the macro call dev_kfree_skb (Ken Cox) [1721709]
+- [netdrv] e1000e: add workaround for possible stalled packet (Ken Cox) [1721709]
+- [netdrv] e1000e: Use dev_get_drvdata where possible (Ken Cox) [1721709]
+- [netdrv] net: Use skb accessors in network drivers (Ken Cox) [1721709]
+- [netdrv] e1000e: PCIm function state support (Ken Cox) [1721709]
+- [netdrv] e1000e: Make watchdog use delayed work (Ken Cox) [1721709]
+- [netdrv] e1000e: Reduce boot time by tightening sleep ranges (Ken Cox) [1721709]
+- [netdrv] e1000e: Increase pause and refresh time (Ken Cox) [1721709]
+- [scsi] scsi: megaraid_sas: Introduce module parameter for default queue depth (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Fix a compilation warning (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Make a bunch of functions static (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Make some functions static (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: fix panic on loading firmware crashdump (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: fix spelling mistake "megarid_sas" -> "megaraid_sas" (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Update driver version to 07.710.50.00 (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Add module parameter for FW Async event logging (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Enable msix_load_balance for Invader and later controllers (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Fix calculation of target ID (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Make some symbols static (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Update driver version to 07.710.06.00-rc1 (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Introduce various Aero performance modes (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Use high IOPS queues based on IO workload (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Set affinity for high IOPS reply queues (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Enable coalescing for high IOPS queues (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Add support for High IOPS queues (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Add support for MPI toolbox commands (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Offload Aero RAID5/6 division calculations to driver (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: RAID1 PCI bandwidth limit algorithm is applicable for only Ventura (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: megaraid_sas: Add check for count returned by HOST_DEVICE_LIST DCMD (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Handle sequence JBOD map failure at driver level (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Don't send FPIO to RL Bypass queue (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: In probe context, retry IOC INIT once if firmware is in fault (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Release Mutex lock before OCR in case of DCMD timeout (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Call disable_irq from process IRQ poll (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Remove few debug counters from IO path (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Add support for Non-secure Aero PCI IDs (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Add 32 bit atomic descriptor support to AERO adapters (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Use struct_size() helper (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Remove unused including <linux/version.h> (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: use DEVICE_ATTR_{RO, RW} (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: use octal permissions instead of constants (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: make max_sectors visible in sys (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: remove set but not used variables 'buff_addr' and 'ci_h' (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: remove set but not used variable 'sge_sz' (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: remove set but not used variables 'host' and 'wait_time' (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: remove set but not used variable 'cur_state' (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Update driver version to 07.708.03.00 (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Export RAID map through debugfs (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Fix MSI-X vector print (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Add debug prints for device list (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Add prints in suspend and resume path (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Print firmware interrupt status (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Print FW fault information (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Export RAID map id through sysfs (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Print BAR information from driver (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Dump system registers for debugging (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Dump system interface regs from sysfs (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Add formatting option for megasas_dump (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Enhance internal DCMD timeout prints (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Enhance prints in OCR and TM path (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Load balance completions across all MSI-X (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: IRQ poll to avoid CPU hard lockups (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Block PCI config space access from userspace during OCR (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Rework code around controller reset (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: fw_reset_no_pci_access required for MFI adapters only (Tomas Henzl) [1726251]
+- [scsi] scsi: megaraid_sas: Remove unused variable target_index (Tomas Henzl) [1726251]
+- [x86] perf/x86/msr: Add Comet Lake CPU support (Michael Petlan) [1763290]
+- [x86] perf/x86/intel: Add Comet Lake CPU support (Michael Petlan) [1763290]
+- [x86] perf/x86/cstate: Add Comet Lake CPU support (Michael Petlan) [1763290]
+- [x86] perf/x86/intel: Update KBL Package C-state events to also include PC8/PC9/PC10 counters (Michael Petlan) [1763290]
+- [x86] x86/cpu: Add Comet Lake to the Intel CPU models header (Michael Petlan) [1763290]
+- [s390] s390/qeth: reject oversized SNMP requests (Philipp Rudo) [1726414]
+- [s390] s390/qeth: serialize cmd reply with concurrent timeout (Philipp Rudo) [1726414]
+- [s390] s390/qeth: move cast type selection into fill_header() (Philipp Rudo) [1726414]
+- [s390] s390/qeth: extract helper for route validation (Philipp Rudo) [1726414]
+- [s390] s390/qeth: consolidate skb RX processing in L3 driver (Philipp Rudo) [1726414]
+- [s390] s390/qeth: consolidate pm code (Philipp Rudo) [1726414]
+- [s390] s390/qeth: streamline SNMP cmd code (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove static cmd buffer infrastructure (Philipp Rudo) [1726414]
+- [s390] s390/qeth: dynamically allocate MPC cmds (Philipp Rudo) [1726414]
+- [s390] s390/qeth: dynamically allocate vnicc cmds (Philipp Rudo) [1726414]
+- [s390] s390/qeth: dynamically allocate diag cmds (Philipp Rudo) [1726414]
+- [s390] s390/qeth: dynamically allocate various cmds with sub-types (Philipp Rudo) [1726414]
+- [s390] s390/qeth: clarify parameter for simple assist cmds (Philipp Rudo) [1726414]
+- [s390] s390/qeth: dynamically allocate simple IPA cmds (Philipp Rudo) [1726414]
+- [s390] s390/qeth: allocate a single cmd on read channel (Philipp Rudo) [1726414]
+- [s390] s390/qeth: command-chain the IDX sequence (Philipp Rudo) [1726414]
+- [s390] s390/qeth: convert RCD code to common IO infrastructure (Philipp Rudo) [1726414]
+- [s390] s390/qeth: add support for dynamically allocated cmds (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove 'channel' parameter from callbacks (Philipp Rudo) [1726414]
+- [s390] s390/qeth: convert device-specific trace entries (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove OSN-specific IO code (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove qeth_wait_for_buffer() (Philipp Rudo) [1726414]
+- [s390] s390/qeth: clean up setting of BLKT defaults (Philipp Rudo) [1726414]
+- [s390] s390/qeth: restart pending READ cmd from callback (Philipp Rudo) [1726414]
+- [s390] s390/qeth: simplify DOWN state handling (Philipp Rudo) [1726414]
+- [s390] s390/qeth: use mm helpers (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't mask TX errors on IQD devices (Philipp Rudo) [1726414]
+- [s390] s390/qeth: handle error when updating TX queue count (Philipp Rudo) [1726414]
+- [s390] s390/qeth: fix VLAN attribute in bridge_hostnotify udev event (Philipp Rudo) [1726414]
+- [s390] s390/qeth: check dst entry before use (Philipp Rudo) [1726414]
+- [s390] s390/qeth: handle limited IPv4 broadcast in L3 TX path (Philipp Rudo) [1726414]
+- [s390] s390/qeth: trust non-IP cast type in qeth_l3_fill_header() (Philipp Rudo) [1726414]
+- [s390] s390/qeth: extract helper to determine L2 cast type (Philipp Rudo) [1726414]
+- [s390] s390/qeth: cache max number of available buffer elements (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't clear Output buffers on every queue init (Philipp Rudo) [1726414]
+- [s390] s390/qeth: use IS_* helpers for checking device type (Philipp Rudo) [1726414]
+- [s390] s390/qeth: clean up stale buffer state documentation (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove RX seqno in skb->cb (Philipp Rudo) [1726414]
+- [s390] s390: qeth: address type mismatch warning (Philipp Rudo) [1726414]
+- [s390] s390/qeth: stop/wake TX queues based on their fill level (Philipp Rudo) [1726414]
+- [s390] s390/qeth: simplify QoS code (Philipp Rudo) [1726414]
+- [s390] s390/qeth: add TX multiqueue support for OSA devices (Philipp Rudo) [1726414]
+- [s390] s390/qeth: add TX multiqueue support for IQD devices (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't keep statistics for tx timeout (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't bother updating the last-tx time (Philipp Rudo) [1726414]
+- [s390] s390/qeth: handle error from qeth_update_from_chp_desc() (Philipp Rudo) [1726414]
+- [s390] s390/qeth: clarify naming for some QDIO helpers (Philipp Rudo) [1726414]
+- [s390] s390/qeth: send IDX cmds via qeth_send_control_data() (Philipp Rudo) [1726414]
+- [s390] s390/qeth: use callback to finalize cmd (Philipp Rudo) [1726414]
+- [s390] s390/qeth: let qeth_notify_reply() set the notify reason (Philipp Rudo) [1726414]
+- [s390] s390/qeth: clarify default cmd callback (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't poll for cmd IO completion (Philipp Rudo) [1726414]
+- [s390] s390/qeth: convert IP table spinlock to mutex (Philipp Rudo) [1726414]
+- [s390] s390/qeth: defer IPv6 address notifier events (Philipp Rudo) [1726414]
+- [s390] s390/qeth: add wrapper for IP table access (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove locking for RX modeset cache (Philipp Rudo) [1726414]
+- [s390] s390/qeth: defer RX modesetting (Philipp Rudo) [1726414]
+- [s390] s390/qeth: fix race when initializing the IP address table (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't erase configuration while probing (Philipp Rudo) [1726414]
+- [s390] s390/qeth: drop redundant state checking (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't special-case HW trap during suspend (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove driver-wide workqueue (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't defer close_dev work during recovery (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove a redundant check for card->dev (Philipp Rudo) [1726414]
+- [s390] s390/qeth: call dev_close() during recovery (Philipp Rudo) [1726414]
+- [s390] s390/qeth: unconditionally clear MAC_REGISTERED flag (Philipp Rudo) [1726414]
+- [s390] s390/qeth: enable/disable the HW trap a little earlier (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove RECOVER state (Philipp Rudo) [1726414]
+- [s390] s390/qeth: split out OSN netdev ops (Philipp Rudo) [1726414]
+- [s390] s390/qeth: add support for ETHTOOL_GRINGPARAM (Philipp Rudo) [1726414]
+- [s390] s390/qeth: overhaul ethtool statistics (Philipp Rudo) [1726414]
+- [s390] s390/qeth: move ethtool code into its own file (Philipp Rudo) [1726414]
+- [s390] s390/qeth: reduce ethtool statistics (Philipp Rudo) [1726414]
+- [s390] s390/qeth: use a static Output Queue array (Philipp Rudo) [1726414]
+- [s390] s390/qeth: allow manual recovery when device is SOFTSETUP (Philipp Rudo) [1726414]
+- [s390] s390/qeth: convert remaining legacy cmd callbacks (Philipp Rudo) [1726414]
+- [s390] s390/qeth: convert bridgeport callbacks (Philipp Rudo) [1726414]
+- [s390] s390/qeth: allow cmd callbacks to return errnos (Philipp Rudo) [1726414]
+- [s390] s390/qeth: limit trace to valid data of command request (Philipp Rudo) [1726414]
+- [s390] s390/qeth: align csum offload with TSO control logic (Philipp Rudo) [1726414]
+- [s390] s390/qeth: enable only required csum offload features (Philipp Rudo) [1726414]
+- [s390] s390/qeth: consolidate filling of low-level cmd length fields (Philipp Rudo) [1726414]
+- [s390] s390/qeth: reduce data length for ARP cache query (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove VLAN tracking for L2 devices (Philipp Rudo) [1726414]
+- [s390] s390/qeth: detach netdevice while card is offline (Philipp Rudo) [1726414]
+- [s390] s390/qeth: delay netdevice registration (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove TX disable from online path (Philipp Rudo) [1726414]
+- [s390] s390/qeth: register MAC address earlier (Philipp Rudo) [1726414]
+- [s390] s390/qeth: consolidate open/stop netdev ops (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove bogus netif_wake_queue() (Philipp Rudo) [1726414]
+- [s390] s390/qeth: streamline TX buffer management (Philipp Rudo) [1726414]
+- [s390] s390/qeth: don't process hsuid in qeth_l3_setup_netdev() (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove unused fallback in Layer3's MAC code (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove two IPA command helpers (Philipp Rudo) [1726414]
+- [s390] s390/qeth: replace open-coded cmd setup (Philipp Rudo) [1726414]
+- [s390] s390/qeth: remove card list (Philipp Rudo) [1726414]
+- [s390] s390/qeth: unify transmit code (Philipp Rudo) [1726414]
+- [s390] s390/qeth: handle af_iucv skbs in qeth_l3_fill_header() (Philipp Rudo) [1726414]
+- [s390] s390/qeth: sanitize ARP requests (Philipp Rudo) [1726414]
+- [s390] s390/qdio: restrict QAOB usage to IQD unicast queues (Philipp Rudo) [1726414]
+- [s390] s390/qdio: add sanity checks to the fast-requeue path (Philipp Rudo) [1726414]
+- [s390] s390/qdio: don't touch the dsci in tiqdio_add_input_queues() (Philipp Rudo) [1726414]
+- [s390] s390/qdio: (re-)initialize tiqdio list entries (Philipp Rudo) [1726414]
+- [s390] s390/qdio: optimize state inspection of HW-owned SBALs (Philipp Rudo) [1726414]
+- [s390] s390/qdio: use get_buf_state() in debug_get_buf_state() (Philipp Rudo) [1726414]
+- [s390] s390/qdio: allow to scan all Output SBALs in one go (Philipp Rudo) [1726414]
+- [s390] s390/qdio: consolidate index tracking for queue scan (Philipp Rudo) [1726414]
+- [s390] s390/qdio: limit direct access to first_to_check cursor (Philipp Rudo) [1726414]
+- [s390] s390/qdio: eliminate queue's last_move cursor (Philipp Rudo) [1726414]
+- [s390] s390/qdio: simplify SBAL range calculation (Philipp Rudo) [1726414]
+- [s390] s390/qdio: pass up count of ready-to-process SBALs (Philipp Rudo) [1726414]
+- [s390] s390/qdio: fix output of DSCI value in debug file (Philipp Rudo) [1726414]
+- [s390] s390/qdio: clean up qdio_check_outbound_after_thinint() (Philipp Rudo) [1726414]
+- [s390] s390/qdio: clean up pci_out_supported() (Philipp Rudo) [1726414]
+- [s390] s390/qdio: make SBAL address array type-safe (Philipp Rudo) [1726414]
+- [s390] s390/qdio: clean up AOB handling (Philipp Rudo) [1726414]
+- [s390] s390/ccwgroup: add get_ccwgroupdev_by_busid() (Philipp Rudo) [1726414]
+
+* Wed Oct 30 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.12.el8]
+- [net] xprtrdma: Remove stale comment (Kamal Heib) [1720891]
+- [net] xprtrdma: Update comments that reference ib_drain_qp (Kamal Heib) [1720891]
+- [net] xprtrdma: Remove pr_err() call sites from completion handlers (Kamal Heib) [1720891]
+- [net] xprtrdma: Eliminate struct rpcrdma_create_data_internal (Kamal Heib) [1720891]
+- [net] xprtrdma: Aggregate the inline settings in struct rpcrdma_ep (Kamal Heib) [1720891]
+- [net] xprtrdma: Remove rpcrdma_create_data_internal::rsize and wsize (Kamal Heib) [1720891]
+- [net] xprtrdma: Eliminate rpcrdma_ia::ri_device (Kamal Heib) [1720891]
+- [net] xprtrdma: More Send completion batching (Kamal Heib) [1720891]
+- [net] xprtrdma: Clean up sendctx functions (Kamal Heib) [1720891]
+- [net] xprtrdma: Trace marshaling failures (Kamal Heib) [1720891]
+- [net] xprtrdma: Increase maximum number of backchannel requests (Kamal Heib) [1720891]
+- [net] xprtrdma: Backchannel can use GFP_KERNEL allocations (Kamal Heib) [1720891]
+- [net] xprtrdma: Clean up regbuf helpers (Kamal Heib) [1720891]
+- [net] xprtrdma: De-duplicate "allocate new, free old regbuf" (Kamal Heib) [1720891]
+- [net] xprtrdma: Allocate req's regbufs at xprt create time (Kamal Heib) [1720891]
+- [net] xprtrdma: rpcrdma_regbuf alignment (Kamal Heib) [1720891]
+- [net] xprtrdma: Clean up rpcrdma_create_rep() and rpcrdma_destroy_rep() (Kamal Heib) [1720891]
+- [net] xprtrdma: Clean up rpcrdma_create_req() (Kamal Heib) [1720891]
+- [scsi] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 502 (Kamal Heib) [1720891]
+- [infiniband] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 288 (Kamal Heib) [1720891]
+- [net] xprtrdma: Use struct_size() in kzalloc() (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Fix panic when port_data isn't initialized (Kamal Heib) [1720891]
+- [infiniband] RDMA/uverbs: Pass udata on uverbs error unwind (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Clear out the udata before error unwind (Kamal Heib) [1720891]
+- [infiniband] RDMA/srp: Rename SRP sysfs name after IB device rename trigger (Kamal Heib) [1720891]
+- [infiniband] treewide: Add SPDX license identifier - Makefile/Kconfig (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Change system parameters callback from dumpit to doit (Kamal Heib) [1720891]
+- [infiniband] RDMA: Directly cast the sockaddr union to sockaddr (Kamal Heib) [1720891]
+- [infiniband] RDMA/ipoib: Allow user space differentiate between valid dev_port (Kamal Heib) [1720891]
+- [infiniband] RDMA/device: Don't fire uevent before device is fully initialized (Kamal Heib) [1720891]
+- [infiniband] RDMA/umem: Remove hugetlb flag (Kamal Heib) [1720891]
+- [infiniband] RDMA/bnxt_re: Use core helpers to get aligned DMA address (Kamal Heib) [1720891]
+- [infiniband] RDMA/bnxt_re: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720891]
+- [infiniband] RDMA/i40iw: Use core helpers to get aligned DMA address within a supported page size (Kamal Heib) [1720891]
+- [infiniband] RDMA/i40iw: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720891]
+- [infiniband] RDMA/verbs: Add a DMA iterator to return aligned contiguous memory blocks (Kamal Heib) [1720891]
+- [infiniband] RDMA/umem: Add API to find best driver supported page size in an MR (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Allow detaching gid attribute netdevice for RoCE (Kamal Heib) [1720891]
+- [infiniband] RDMA/rxe: Use rdma_read_gid_attr_ndev_rcu to access netdev (Kamal Heib) [1720891]
+- [infiniband] RDMA/cma: Use rdma_read_gid_attr_ndev_rcu to access netdev (Kamal Heib) [1720891]
+- [infiniband] RDMA: Introduce and use GID attr helper to read RoCE L2 fields (Kamal Heib) [1720891]
+- [infiniband] RDMA/hns: Add vlan enable bit for hip08 (Kamal Heib) [1720891]
+- [infiniband] RDMA/hns: Update some fields of qp context (Kamal Heib) [1720891]
+- [infiniband] RDMA/hns: Delete unused variable in hns_roce_v2_modify_qp function (Kamal Heib) [1720891]
+- [infiniband] RDMA/hns: Add enable judgement for UD vlan (Kamal Heib) [1720891]
+- [infiniband] IB/mlx5: Consider vlan of lower netdev for macvlan GID entries (Kamal Heib) [1720891]
+- [infiniband] IB/cm: Reduce dependency on gid attribute ndev check (Kamal Heib) [1720891]
+- [infiniband] RDMA/rxe: Consider skb reserve space based on netdev of GID (Kamal Heib) [1720891]
+- [infiniband] RDMA: Get rid of iw_cm_verbs (Kamal Heib) [1720891]
+- [infiniband] RDMA/cxgb4: Use ib_device_set_netdev() (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Do not invoke init_port on compat devices (Kamal Heib) [1720891]
+- [infiniband] IB/core: Set qp->real_qp before it may be accessed (Kamal Heib) [1720891]
+- [infiniband] RDMA/uverbs: Initialize uverbs_attr_bundle ucontext in ib_uverbs_get_context (Kamal Heib) [1720891]
+- [infiniband] RDMA/uverbs: Initialize udata struct on destroy flows (Kamal Heib) [1720891]
+- [infiniband] RDMA/umem: Handle page combining avoidance correctly in ib_umem_add_sg_table() (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Introduce RDMA subsystem ibdev_* print functions (Kamal Heib) [1720891]
+- [infiniband] uverbs: Convert idr to XArray (Kamal Heib) [1720891]
+- [infiniband] RDMA: Remove rdma_user_mmap_page (Kamal Heib) [1720891]
+- [infiniband] RDMA/mlx5: Use get_zeroed_page() for clock_info (Kamal Heib) [1720891]
+- [infiniband] RDMA/mlx5: Do not allow the user to write to the clock page (Kamal Heib) [1720891]
+- [infiniband] RDMA/cma: Consider scope_id while binding to ipv6 ll address (Kamal Heib) [1720891]
+- [infiniband] IB/core: Allow vlan link local address based RoCE GIDs (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Add a netlink command to change net namespace of rdma device (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Introduce a helper function to change net namespace of rdma device (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Avoid freeing netdevs in disable_device() (Kamal Heib) [1720891]
+- [infiniband] RDMA/ocrdma: Remove use of idr use pci bdf instead (Kamal Heib) [1720891]
+- [infiniband] RDMA/drivers: Convert easy drivers to use ib_device_set_netdev() (Kamal Heib) [1720891]
+- [infiniband] RDMA/umem: Use correct value for SG entries in sg_copy_to_buffer() (Kamal Heib) [1720891]
+- [infiniband] RDMA: Handle SRQ allocations by IB/core (Kamal Heib) [1720891]
+- [infiniband] qedr: Convert srqidr to XArray (Kamal Heib) [1720891]
+- [infiniband] qedr: Convert qpidr to XArray (Kamal Heib) [1720891]
+- [infiniband] RDMA: Handle AH allocations by IB/core (Kamal Heib) [1720891]
+- [infiniband] RDMA/hns: Fix bad endianess of port_pd variable (Kamal Heib) [1720891]
+- [infiniband] RDMA/mad: Reduce MAD scope to mlx5_ib only (Kamal Heib) [1720891]
+- [infiniband] RDMA/ocrdma: Remove a set-but-not-used variable (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Support object allocation in atomic context (Kamal Heib) [1720891]
+- [infiniband] IB: When attrs.udata/ufile is available use that instead of uobject (Kamal Heib) [1720891]
+- [infiniband] RDMA/nldev: Return device protocol (Kamal Heib) [1720891]
+- [infiniband] RDMA/cm: Move debug counters to be under relevant IB device (Kamal Heib) [1720891]
+- [infiniband] RDMA/umem: Combine contiguous PAGE_SIZE regions in SGEs (Kamal Heib) [1720891]
+- [infiniband] RDMA/cm: Remove useless zeroing of static global variable (Kamal Heib) [1720891]
+- [infiniband] RDMA/cma: Set proper port number as index (Kamal Heib) [1720891]
+- [infiniband] IB: Pass only ib_udata in function prototypes (Kamal Heib) [1720891]
+- [infiniband] IB: Remove 'uobject->context' dependency in object destroy APIs (Kamal Heib) [1720891]
+- [infiniband] cxgb4: Convert mmidr to XArray (Kamal Heib) [1720891]
+- [infiniband] cxgb4: Convert qpidr to XArray (Kamal Heib) [1720891]
+- [infiniband] cxgb4: Convert cqidr to XArray (Kamal Heib) [1720891]
+- [infiniband] IB: Pass uverbs_attr_bundle down ib_x destroy path (Kamal Heib) [1720891]
+- [infiniband] IB: Pass uverbs_attr_bundle down uobject destroy path (Kamal Heib) [1720891]
+- [infiniband] IB: ucontext should be set properly for all cmd & ioctl paths (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Don't compare specific bit after boolean AND (Kamal Heib) [1720891]
+- [infiniband] RDMA/netlink: Remove unused data structure (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Add command to set ib_core device net namspace sharing mode (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Add interface to read device namespace sharing mode (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Extend ib_device_get_by_index for net namespace (Kamal Heib) [1720891]
+- [infiniband] RDMA: Check net namespace access for uverbs, umad, cma and nldev (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Add module param to disable device sharing among net ns (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Support core port attributes in non init_net (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Implement compat device/sysfs tree in net namespace (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Restrict sysfs entries view to init_net (Kamal Heib) [1720891]
+- [infiniband] RDMA/core: Introduce ib_core_device to hold device (Kamal Heib) [1720891]
+- [infiniband] RDMA/rxe: Use correct sizing on buffers holding page DMA addresses (Kamal Heib) [1720891]
+- [infiniband] RDMA/mthca: Use correct sizing on buffers holding page DMA addresses (Kamal Heib) [1720891]
+- [infiniband] RDMA/uverbs: Allow the compiler to verify declaration and definition consistency (Kamal Heib) [1720891]
+- [infiniband] RDMA/uverbs: Annotate uverbs_request_next_ptr() return value as a __user pointer (Kamal Heib) [1720891]
+- [infiniband] RDMA/uverbs: Add a __user annotation to a pointer (Kamal Heib) [1720891]
+- [infiniband] IB/rxe: Replace av->network_type with skb->protocol (Kamal Heib) [1720891]
+- [infiniband] IB/MAD: Add SMP details to MAD tracing (Kamal Heib) [1720891]
+- [infiniband] IB/UMAD: Add umad trace points (Kamal Heib) [1720891]
+- [infiniband] IB/MAD: Add agent trace points (Kamal Heib) [1720891]
+- [infiniband] IB/MAD: Add recv path trace point (Kamal Heib) [1720891]
+- [infiniband] IB/MAD: Add send path trace points (Kamal Heib) [1720891]
+- [infiniband] RDMA/vmw_pvrdma: Skip zeroing device attrs (Kamal Heib) [1720891]
+- [infiniband] IB/iser: remove uninitialized variable len (Kamal Heib) [1720891]
+- [infiniband] IB/core: Ensure an invalidate_range callback on ODP MR (Kamal Heib) [1720891]
+- [infiniband] RDMA/rxe: Fix slab-out-bounds access which lead to kernel crash later (Kamal Heib) [1720891]
+- [infiniband] drivers: infiniband: Fix whitespace in kconfig (Kamal Heib) [1720891]
+- [infiniband] RDMA/nes: remove redundant check on udata (Kamal Heib) [1720891]
+- [infiniband] cma: Convert portspace IDRs to XArray (Kamal Heib) [1720891]
+- [infiniband] ucm: Convert ctx_id_table to XArray (Kamal Heib) [1720891]
+- [infiniband] ib core: Convert query_idr to XArray (Kamal Heib) [1720891]
+- [infiniband] RDMA/cm: Convert local_id_table to XArray (Kamal Heib) [1720891]
+- [infiniband] IB/mad: Convert ib_mad_clients to XArray (Kamal Heib) [1720891]
+- [infiniband] RDMA: Use __packed annotation instead of __attribute__ ((packed)) (Kamal Heib) [1720891]
+- [char] tpm: Remove a deprecated comments about implicit sysfs locking (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm_tis_core: Set TPM_CHIP_FLAG_IRQ before probing for interrupts (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm_tis_core: Turn on the TPM before probing IRQ's (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Fix null pointer dereference on chip register error path (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Fix TPM 1.2 Shutdown sequence to prevent future TPM operations (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Actually fail on TPM errors during "get random" (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Replace GPLv2 boilerplate/reference with SPDX - rule 505 (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Replace GPLv2 boilerplate/reference with SPDX - rule 441 (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Replace GPLv2 boilerplate/reference with SPDX - rule 399 (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Replace GPLv2 boilerplate/reference with SPDX - rule 13 (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Add SPDX license identifier - Makefile/Kconfig (Jerry Snitselaar) [1725580 1742257]
+- [tools] selftests/tpm2: Open tpm dev in unbuffered mode (Jerry Snitselaar) [1725580 1742257]
+- [tools] selftests/tpm2: Extend tests to cover partial reads (Jerry Snitselaar) [1725580 1742257]
+- [tools] selftests: add TPM 2.0 tests (Jerry Snitselaar) [1725580 1742257]
+- [security] KEYS: trusted: fix -Wvarags warning (Jerry Snitselaar) [1725580 1742257]
+- [security] KEYS: Move trusted.h to include/keys [ver #2] (Jerry Snitselaar) [1725580 1742257]
+- [security] KEYS: trusted: Expose common functionality [ver #2] (Jerry Snitselaar) [1725580 1742257]
+- [char] tpm: Wrap the buffer from the caller to tpm_buf in tpm_send() (Jerry Snitselaar) [1725580 1742257]
+- [security] KEYS: trusted: correctly initialize digests and fix locking issue (Jerry Snitselaar) [1725580 1742257]
+- [security] KEYS: trusted: allow module init if TPM is inactive or deactivated (Jerry Snitselaar) [1725580 1742257]
+- [net] net/smc: make sure EPOLLOUT is raised (Philipp Rudo) [1726415]
+- [net] net/smc: avoid fallback in case of non-blocking connect (Philipp Rudo) [1726415]
+- [net] net/smc: do not schedule tx_work in SMC_CLOSED state (Philipp Rudo) [1726415]
+- [net] net/smc: common release code for non-accepted sockets (Philipp Rudo) [1726415]
+- [net] net/smc: Fix error path in smc_init (Philipp Rudo) [1726415]
+- [net] net/smc: hold conns_lock before calling smc_lgr_register_conn() (Philipp Rudo) [1726415]
+- [dma] dmaengine: ioatdma: support latency tolerance report (LTR) for v3.4 (Jerry Snitselaar) [1661996]
+- [dma] dmaengine: ioatdma: add descriptor pre-fetch support for v3.4 (Jerry Snitselaar) [1661996]
+- [dma] dmaengine: ioatdma: disable DCA enabling on IOATDMA v3.4 (Jerry Snitselaar) [1661996]
+- [dma] dmaengine: ioatdma: Add Snow Ridge ioatdma device id (Jerry Snitselaar) [1661996]
+- [kernel] mutex: Fix up mutex_waiter usage (Waiman Long) [1736609]
+- [kernel] locking/mutex: Use mutex flags macro instead of hard code (Waiman Long) [1736609]
+- [kernel] locking/mutex: Make __mutex_owner static to mutex.c (Waiman Long) [1736609]
+- [kernel] locking/mutex: Test for initialized mutex (Waiman Long) [1736609]
+- [kernel] kernel/locking/mutex.c: remove caller signal_pending branch predictions (Waiman Long) [1736609]
+- [kernel] Revert "locking/pvqspinlock: Don't wait if vCPU is preempted" (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Check for operations on an uninitialized rwsem (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Make handoff writer optimistically spin on owner (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Add ACQUIRE comments (Waiman Long) [1736609]
+- [tty] tty/ldsem, locking/rwsem: Add missing ACQUIRE to read_failed sleep loop (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Add missing ACQUIRE to read_slowpath sleep loop (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Add missing ACQUIRE to read_slowpath exit when queue is empty (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Don't call owner_on_cpu() on read-owner (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Guard against making count negative (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Adaptive disabling of reader optimistic spinning (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Enable time-based spinning on reader-owned rwsem (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Make rwsem->owner an atomic_long_t (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Enable readers spinning on writer (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Clarify usage of owner's nonspinaable bit (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Wake up almost all readers in wait queue (Waiman Long) [1736609]
+- [kernel] locking/rwsem: More optimal RT task handling of null owner (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Always release wait_lock before waking up tasks (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Implement lock handoff to prevent lock starvation (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Make rwsem_spin_on_owner() return owner state (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Code cleanup after files merging (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Add rwsem_init.c to keep __init_rwsem() kABI (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Merge rwsem.h and rwsem-xadd.c into rwsem.c (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Implement a new locking scheme (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Remove rwsem_wake() wakeup optimization (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Make owner available even if !CONFIG_RWSEM_SPIN_ON_OWNER (Waiman Long) [1736609]
+- [kernel] locking/lock_events: Use raw_cpu_{add, inc}() for stats (Waiman Long) [1736609]
+- [kernel] locking/lock_events: Use this_cpu_add() when necessary (Waiman Long) [1736609]
+- [kernel] locking/rwsem: Revert "[kernel] locking/rwsem: Add missing ACQUIRE to read_slowpath ..." (Waiman Long) [1736609]
+- [block] block: don't release queue's sysfs lock during switching elevator (Ming Lei) [1760151]
+- [block] blk-mq: move lockdep_assert_held() into elevator_exit (Ming Lei) [1760151]
+- [block] block: fix race between switching elevator and removing queues (Ming Lei) [1760151]
+- [md] raid5: use bio_end_sector in r5_next_bio (Nigel Croxon) [1754949]
+- [md] raid5: remove STRIPE_OPS_REQ_PENDING (Nigel Croxon) [1754949]
+- [md] md: add feature flag MD_FEATURE_RAID0_LAYOUT (Nigel Croxon) [1754949]
+- [md] md/raid0: avoid RAID0 data corruption due to layout confusion. (Nigel Croxon) [1754949]
+- [md] raid5: don't set STRIPE_HANDLE to stripe which is in batch list (Nigel Croxon) [1754949]
+- [md] raid5: don't increment read_errors on EILSEQ return (Nigel Croxon) [1754949]
+- [md] md/raid5: use bio_end_sector to calculate last_sector (Nigel Croxon) [1730670]
+- [md] md/raid1: fail run raid1 array when active disk less than one (Nigel Croxon) [1730670]
+- [md] md raid0/linear: Mark array as 'broken' and fail BIOs if a member is gone (Nigel Croxon) [1730670]
+- [md] raid5 improve too many read errors msg by adding limits (Nigel Croxon) [1730670]
+- [md] md: don't report active array_state until after revalidate_disk() completes. (Nigel Croxon) [1730670]
+- [md] md: only call set_in_sync() when it is expected to succeed. (Nigel Croxon) [1730670]
+- [md] raid1: factor out a common routine to handle the completion of sync write (Nigel Croxon) [1730670]
+- [md] md: don't call spare_active in md_reap_sync_thread if all member devices can't work (Nigel Croxon) [1730670]
+- [md] md: don't set In_sync if array is frozen (Nigel Croxon) [1730670]
+- [md] md: allow last device to be forcibly removed from RAID1/RAID10. (Nigel Croxon) [1730670]
+- [md] md/raid10: end bio when the device faulty (Nigel Croxon) [1730670]
+- [md] md/raid1: end bio when the device faulty (Nigel Croxon) [1730670]
+- [md] md/raid6: Set R5_ReadError when there is read failure on parity disk (Nigel Croxon) [1730670]
+- [md] raid1: use an int as the return value of raise_barrier() (Nigel Croxon) [1730670]
+- [md] md/raid1: Fix a warning message in remove_wb() (Nigel Croxon) [1730670]
+- [crypto] crypto: ccp - Fix SEV_VERSION_GREATER_OR_EQUAL (Gary Hook) [1754634]
+- [crypto] crypto: ccp - Do not free psp_master when PLATFORM_INIT fails (Gary Hook) [1754634]
+- [crypto] crypto: ccp - Use kmemdup in ccp_copy_and_save_keypart() (Gary Hook) [1754634]
+- [crypto] crypto: ccp - introduce SEV_GET_ID2 command (Gary Hook) [1754634]
+- [netdrv] e1000e: start network tx queue only when link is up (Oleksandr Natalenko) [1747869]
+- [netdrv] Revert "e1000e: fix cyclic resets at link up with active tx" (Oleksandr Natalenko) [1747869]
+- [mm] mm/zsmalloc.c: fix build when CONFIG_COMPACTION=n (Rafael Aquini) [1735181]
+- [mm] mm/zsmalloc.c: fix race condition in zs_destroy_pool (Rafael Aquini) [1735181]
+- [mm] mm/zsmalloc.c: migration can leave pages in ZS_EMPTY indefinitely (Rafael Aquini) [1735181]
+- [mm] mm, page_owner: handle THP splits correctly (Rafael Aquini) [1735181]
+- [mm] hugetlbfs: fix hugetlb page migration/fault race causing SIGBUS (Rafael Aquini) [1735181]
+- [mm] mm/usercopy: use memory range to be accessed for wraparound check (Rafael Aquini) [1735181]
+- [mm] mm/memcontrol.c: fix use after free in mem_cgroup_iter() (Rafael Aquini) [1735181]
+- [mm] mm/hmm: fix bad subpage pointer in try_to_unmap_one (Rafael Aquini) [1735181]
+- [mm] mm: vmscan: check if mem cgroup is disabled or not before calling memcg slab shrinker (Rafael Aquini) [1735181]
+- [mm] mm: revert "kmemleak: allow to coexist with fault injection" (Rafael Aquini) [1735181]
+- [mm] mm/vmalloc: sync unmappings in __purge_vmap_area_lazy() (Rafael Aquini) [1735181]
+- [mm] mm/vmalloc.c: add priority threshold to __purge_vmap_area_lazy() (Rafael Aquini) [1735181]
+- [mm] mm/cma.c: fail if fixed declaration can't be honored (Rafael Aquini) [1735181]
+- [mm] mm/mmu_notifier: use hlist_add_head_rcu() (Rafael Aquini) [1735181]
+- [mm] mm/mincore.c: fix race between swapoff and mincore (Rafael Aquini) [1735181]
+- [mm] mm, swap: fix race between swapoff and some swap operations (Rafael Aquini) [1735181]
+- [mm] mm/failslab.c: by default, do not fail allocations with direct reclaim only (Rafael Aquini) [1735181]
+- [mm] mm: vmscan: scan anonymous pages on file refaults (Rafael Aquini) [1735181]
+- [mm] mm/vmscan.c: prevent useless kswapd loops (Rafael Aquini) [1735181]
+- [mm] mm/page_idle.c: fix oops because end_pfn is larger than max_pfn (Rafael Aquini) [1760459 1735181]
+- [mm] mm/mempolicy.c: fix an incorrect rebind node in mpol_rebind_nodemask (Rafael Aquini) [1735181]
+- [mm] mm/vmscan.c: fix trying to reclaim unevictable LRU page (Rafael Aquini) [1735181]
+- [mm] mm/mlock.c: change count_mm_mlocked_page_nr return type (Rafael Aquini) [1735181]
+- [mm] mm/mlock.c: mlockall error for flag MCL_ONFAULT (Rafael Aquini) [1735181]
+- [mm] mm/list_lru.c: fix memory leak in __memcg_init_list_lru_node (Rafael Aquini) [1735181]
+- [mm] memcg: make it work on sparse non-0-node systems (Rafael Aquini) [1735181]
+- [mm] prctl_set_mm: downgrade mmap_sem to read lock (Rafael Aquini) [1735181]
+- [mm] mm/debug.c: fix __dump_page when mapping->host is not set (Rafael Aquini) [1735181]
+- [mm] mm/debug.c: fix __dump_page() for poisoned pages (Rafael Aquini) [1735181]
+- [mm] mm: update references to page _refcount (Rafael Aquini) [1735181]
+- [mm] mm: lower the printk loglevel for __dump_page messages (Rafael Aquini) [1735181]
+- [mm] mm: print more information about mapping in __dump_page (Rafael Aquini) [1735181]
+- [mm] hugetlb: use same fault hash key for shared and private mappings (Rafael Aquini) [1735181]
+- [mm] mm/hugetlb.c: don't put_page in lock of hugetlb_lock (Rafael Aquini) [1735181]
+- [mm] mm: fix inactive list balancing between NUMA nodes and cgroups (Rafael Aquini) [1735181]
+- [mm] mm/migrate.c: add missing flush_dcache_page for non-mapped page migrate (Rafael Aquini) [1735181]
+- [mm] mm: mempolicy: make mbind() return -EIO when MPOL_MF_STRICT is specified (Rafael Aquini) [1734286 1735181]
+- [mm] mm/hotplug: fix offline undo_isolate_page_range() (Rafael Aquini) [1735181]
+- [mm] mm/sparse: fix a bad comparison (Rafael Aquini) [1735181]
+- [mm] mm, swap: bounds check swap_info array accesses to avoid NULL derefs (Rafael Aquini) [1735181]
+- [mm] mm/vmalloc.c: don't dereference possible NULL pointer in __vunmap() (Rafael Aquini) [1735181]
+- [mm] mm: hwpoison: fix thp split handing in soft_offline_in_use_page() (Rafael Aquini) [1735181]
+- [mm] hugetlbfs: fix races and page leaks during migration (Rafael Aquini) [1735181]
+- [mm] tmpfs: fix uninitialized return value in shmem_link (Rafael Aquini) [1735181]
+- [mm] tmpfs: fix link accounting when a tmpfile is linked in (Rafael Aquini) [1735181]
+- [mm] mm: migrate: don't rely on __PageMovable() of newpage after unlocking it (Rafael Aquini) [1735181]
+- [mm] oom, oom_reaper: do not enqueue same task twice (Rafael Aquini) [1735181]
+- [mm] mm: page_mapped: don't assume compound page is huge or THP (Rafael Aquini) [1735181]
+- [mm] mm, memcg: fix reclaim deadlock with writeback (Rafael Aquini) [1735181]
+- [mm] mm, swap: fix swapoff with KSM pages (Rafael Aquini) [1735181]
+- [mm] mm/huge_memory: fix lockdep complaint on 32-bit i_size_read() (Rafael Aquini) [1735181]
+- [mm] mm/huge_memory: splitting set mapping+index before unfreeze (Rafael Aquini) [1735181]
+- [mm] mm/huge_memory: rename freeze_page() to unmap_page() (Rafael Aquini) [1735181]
+- [mm] mm/page_alloc.c: fix calculation of pgdat->nr_zones (Rafael Aquini) [1735181]
+- [mm] mm: use swp_offset as key in shmem_replace_page() (Rafael Aquini) [1735181]
+- [mm] mm: cleancache: fix corruption on missed inode invalidation (Rafael Aquini) [1735181]
+- [mm] mm/vmstat.c: fix NUMA statistics updates (Rafael Aquini) [1735181]
+- [mm] mm, swap: make CONFIG_THP_SWAP depend on CONFIG_SWAP (Rafael Aquini) [1735181]
+- [mm] ARM: 8820/1: mm: Stop printing the virtual memory layout (Rafael Aquini) [1655192]
+- [netdrv] net: dsa: bcm_sf2: Remove print of base address (Rafael Aquini) [1655192]
+- [netdrv] net: systemport: Remove print of base address (Rafael Aquini) [1655192]
+- [netdrv] net: phy: mdio-bcm-unimac: Remove print of base address (Rafael Aquini) [1655192]
+- [x86] x86/mm: Don't leak kernel addresses (Rafael Aquini) [1655192]
+- [x86] x86/realmode: Make set_real_mode_mem() static inline (Rafael Aquini) [1655192]
+- [x86] x86/realmode: Don't leak the trampoline kernel address (Rafael Aquini) [1655192]
+- [arm64] arm64/vdso: don't leak kernel addresses (Rafael Aquini) [1655192]
+- [powerpc] powerpc/traps: Fix the message printed when stack overflows (Rafael Aquini) [1655192]
+- [kernel] kdb: print real address of pointers instead of hashed addresses (Rafael Aquini) [1655192]
+- [kernel] kdb: use correct pointer when 'btc' calls 'btt' (Rafael Aquini) [1655192]
+
+* Tue Oct 29 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.11.el8]
+- [fs] signal: Allow cifs and drbd to receive their terminating signals (Leif Sahlberg) [1757670]
+- [fs] smb3: fix unmount hang in open_shroot (Leif Sahlberg) [1757670]
+- [fs] cifs: update internal module number (Leif Sahlberg) [1757670]
+- [fs] cifs: replace various strncpy with strscpy and similar (Leif Sahlberg) [1757670]
+- [fs] cifs: Use kzfree() to zero out the password (Leif Sahlberg) [1757670]
+- [fs] cifs: set domainName when a domain-key is used in multiuser (Leif Sahlberg) [1757670]
+- [fs] SMB3: Kernel oops mounting a encryptData share with CONFIG_DEBUG_VIRTUAL (Leif Sahlberg) [1757670]
+- [fs] smb3: send CAP_DFS capability during session setup (Leif Sahlberg) [1757670]
+- [fs] SMB3: Fix potential memory leak when processing compound chain (Leif Sahlberg) [1757670]
+- [fs] SMB3: Fix deadlock in validate negotiate hits reconnect (Leif Sahlberg) [1757670]
+- [fs] cifs: fix rmmod regression in cifs.ko caused by force_sig changes (Leif Sahlberg) [1757670]
+- [fs] cifs: update internal module number (Leif Sahlberg) [1757670]
+- [fs] cifs: flush before set-info if we have writeable handles (Leif Sahlberg) [1757670]
+- [fs] smb3: optimize open to not send query file internal info (Leif Sahlberg) [1757670]
+- [fs] CIFS: fix deadlock in cached root handling (Leif Sahlberg) [1757670]
+- [fs] cifs: fix crash in cifs_dfs_do_automount (Leif Sahlberg) [1757670]
+- [fs] cifs: fix parsing of symbolic link error response (Leif Sahlberg) [1757670]
+- [fs] cifs: refactor and clean up arguments in the reparse point parsing (Leif Sahlberg) [1757670]
+- [fs] SMB3: query inode number on open via create context (Leif Sahlberg) [1757670]
+- [fs] smb3: Send netname context during negotiate protocol (Leif Sahlberg) [1757670]
+- [fs] smb3: do not send compression info by default (Leif Sahlberg) [1757670]
+- [fs] smb3: add new mount option to retrieve mode from special ACE (Leif Sahlberg) [1757670]
+- [fs] smb3: Allow query of symlinks stored as reparse points (Leif Sahlberg) [1757670]
+- [fs] cifs: Fix a race condition with cifs_echo_request (Leif Sahlberg) [1757670]
+- [fs] cifs: always add credits back for unsolicited PDUs (Leif Sahlberg) [1757670]
+- [fs] fs: cifs: cifsssmb: Change return type of convert_ace_to_cifs_ace (Leif Sahlberg) [1757670]
+- [fs] add some missing definitions (Leif Sahlberg) [1757670]
+- [fs] cifs: fix typo in debug message with struct field ia_valid (Leif Sahlberg) [1757670]
+- [fs] smb3: minor cleanup of compound_send_recv (Leif Sahlberg) [1757670]
+- [fs] CIFS: Fix module dependency (Leif Sahlberg) [1757670]
+- [fs] cifs: simplify code by removing CONFIG_CIFS_ACL ifdef (Leif Sahlberg) [1757670]
+- [fs] cifs: Fix check for matching with existing mount (Leif Sahlberg) [1757670]
+- [fs] cifs: Properly handle auto disabling of serverino option (Leif Sahlberg) [1757670]
+- [fs] smb3: if max_credits is specified then display it in /proc/mounts (Leif Sahlberg) [1757670]
+- [fs] Fix match_server check to allow for auto dialect negotiate (Leif Sahlberg) [1757670]
+- [fs] cifs: add missing GCM module dependency (Leif Sahlberg) [1757670]
+- [fs] SMB3.1.1: Add GCM crypto to the encrypt and decrypt functions (Leif Sahlberg) [1757670]
+- [fs] SMB3: Add SMB3.1.1 GCM to negotiated crypto algorigthms (Leif Sahlberg) [1757670]
+- [fs] fs: cifs: Drop unlikely before IS_ERR(_OR_NULL) (Leif Sahlberg) [1757670]
+- [fs] cifs: Use kmemdup in SMB2_ioctl_init() (Leif Sahlberg) [1757670]
+- [fs] SMB3: retry on STATUS_INSUFFICIENT_RESOURCES instead of failing write (Leif Sahlberg) [1757670]
+- [fs] cifs: fix panic in smb2_reconnect (Leif Sahlberg) [1757670]
+- [fs] CIFS: cifs_read_allocate_pages: don't iterate through whole page array on ENOMEM (Leif Sahlberg) [1757670]
+- [fs] dfs_cache: fix a wrong use of kfree in flush_cache_ent() (Leif Sahlberg) [1757670]
+- [fs] fs/cifs/smb2pdu.c: fix buffer free in SMB2_ioctl_free (Leif Sahlberg) [1757670]
+- [fs] cifs: fix memory leak of pneg_inbuf on -EOPNOTSUPP ioctl case (Leif Sahlberg) [1757670]
+- [fs] cifs: add support for SEEK_DATA and SEEK_HOLE (Leif Sahlberg) [1757670]
+- [fs] cifs: Allocate memory for all iovs in smb2_ioctl (Leif Sahlberg) [1757670]
+- [fs] cifs: Don't match port on SMBDirect transport (Leif Sahlberg) [1757670]
+- [fs] cifs:smbd Use the correct DMA direction when sending data (Leif Sahlberg) [1757670]
+- [fs] cifs:smbd When reconnecting to server, call smbd_destroy() after all MIDs have been called (Leif Sahlberg) [1757670]
+- [fs] smb3: trivial cleanup to smb2ops.c (Leif Sahlberg) [1757670]
+- [fs] cifs: cleanup smb2ops.c and normalize strings (Leif Sahlberg) [1757670]
+- [fs] smb3: display session id in debug data (Leif Sahlberg) [1757670]
+- [fs] cifs: update module internal version number (Leif Sahlberg) [1757670]
+- [fs] cifs: fix crash querying symlinks stored as reparse-points (Leif Sahlberg) [1757670]
+- [fs] SMB3: Clean up query symlink when reparse point (Leif Sahlberg) [1757670]
+- [fs] cifs: fix strcat buffer overflow and reduce raciness in smb21_set_oplock_level() (Leif Sahlberg) [1757670]
+- [fs] Negotiate and save preferred compression algorithms (Leif Sahlberg) [1757670]
+- [fs] cifs: rename and clarify CIFS_ASYNC_OP and CIFS_NO_RESP (Leif Sahlberg) [1757670]
+- [fs] smb3: Add protocol structs for change notify support (Leif Sahlberg) [1757670]
+- [fs] cifs: fix smb3_zero_range for Azure (Leif Sahlberg) [1757670]
+- [fs] cifs: zero-range does not require the file is sparse (Leif Sahlberg) [1757670]
+- [fs] Add new flag on SMB3.1.1 read (Leif Sahlberg) [1757670]
+- [fs] cifs: add fiemap support (Leif Sahlberg) [1757670]
+- [fs] SMB3: Add defines for new negotiate contexts (Leif Sahlberg) [1757670]
+- [fs] cifs: fix bi-directional fsctl passthrough calls (Leif Sahlberg) [1757670]
+- [fs] cifs: smbd: take an array of reqeusts when sending upper layer data (Leif Sahlberg) [1757670]
+- [fs] SMB3: Add handling for different FSCTL access flags (Leif Sahlberg) [1757670]
+- [fs] cifs: Add support for FSCTL passthrough that write data to the server (Leif Sahlberg) [1757670]
+- [fs] cifs: remove superfluous inode_lock in cifs_{strict_}fsync (Leif Sahlberg) [1757670]
+- [fs] cifs: Call MID callback before destroying transport (Leif Sahlberg) [1757670]
+- [fs] smbd: Make upper layer decide when to destroy the transport (Leif Sahlberg) [1757670]
+- [fs] SMB3: update comment to clarify enumerating snapshots (Leif Sahlberg) [1757670]
+- [fs] CIFS: check CIFS_MOUNT_NO_DFS when trying to reuse existing sb (Leif Sahlberg) [1757670]
+- [fs] CIFS: Show locallease in /proc/mounts for cifs shares mounted with locallease feature. (Leif Sahlberg) [1757670]
+- [fs] cifs: Fix DFS cache refresher for DFS links (Leif Sahlberg) [1757670]
+- [fs] cifs: don't use __constant_cpu_to_le32() (Leif Sahlberg) [1757670]
+- [fs] SMB3: Track total time spent on roundtrips for each SMB3 command (Leif Sahlberg) [1757670]
+- [fs] cifs: use the right include for signal_pending() (Leif Sahlberg) [1757670]
+- [fs] CIFS: Mask off signals when sending SMB packets (Leif Sahlberg) [1757670]
+- [infiniband] RDMA/umem: Revert broken 'off by one' fix (Kamal Heib) [1720888]
+- [infiniband] RDMA/umem: minor bug fix in error handling path (Kamal Heib) [1720888]
+- [infiniband] RDMA/uverbs: Don't do double free of allocated PD (Kamal Heib) [1720888]
+- [infiniband] RDMA: Handle ucontext allocations by IB/core (Kamal Heib) [1720888]
+- [infiniband] cross-tree: phase out dma_zalloc_coherent() (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Fix a WARN() message (Kamal Heib) [1720888]
+- [infiniband] RDMA/uverbs: Store PR pointer before it is overwritten (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Cosmetic change - move member initialization to correct block (Kamal Heib) [1720888]
+- [infiniband] rdma_rxe: Use netlink messages to add/delete links (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Add RDMA_NLDEV_CMD_NEWLINK/DELLINK support (Kamal Heib) [1720888]
+- [infiniband] RDMA/rxe: Close a race after ib_register_device (Kamal Heib) [1720888]
+- [infiniband] RDMA/rxe: Add ib_device_get_by_name() and use it in rxe (Kamal Heib) [1720888]
+- [infiniband] RDMA/rxe: Use driver_unregister and new unregistration API (Kamal Heib) [1720888]
+- [infiniband] RDMA/device: Provide APIs from the core code to help unregistration (Kamal Heib) [1720888]
+- [infiniband] RDMA/rxe: Use ib_device_get_by_netdev() instead of open coding (Kamal Heib) [1720888]
+- [infiniband] RDMA/device: Add ib_device_get_by_netdev() (Kamal Heib) [1720888]
+- [infiniband] RDMA/device: Add ib_device_set_netdev() as an alternative to get_netdev (Kamal Heib) [1720888]
+- [infiniband] RDMA/cache: Move the cache per-port data into the main ib_port_data (Kamal Heib) [1720888]
+- [infiniband] RDMA/device: Consolidate ib_device per_port data into one place (Kamal Heib) [1720888]
+- [infiniband] RDMA: Add and use rdma_for_each_port (Kamal Heib) [1720888]
+- [infiniband] RDMA/nldev: Don't expose number of not-visible entries (Kamal Heib) [1720888]
+- [infiniband] RDMA/nldev: Connect QP number to .doit callback (Kamal Heib) [1720888]
+- [infiniband] RDMA/nldev: Provide parent IDs for PD, MR and QP objects (Kamal Heib) [1720888]
+- [infiniband] RDMA/nldev: Share with user-space object IDs (Kamal Heib) [1720888]
+- [infiniband] RDMA/restrack: Prepare restrack_root to addition of extra fields per-type (Kamal Heib) [1720888]
+- [infiniband] RDMA/restrack: Hide restrack DB from IB/core (Kamal Heib) [1720888]
+- [infiniband] RDMA/restrack: Reduce scope of synchronization lock while updating DB (Kamal Heib) [1720888]
+- [infiniband] RDMA/nldev: Add resource tracker doit callback (Kamal Heib) [1720888]
+- [infiniband] RDMA/restrack: Translate from ID to restrack object (Kamal Heib) [1720888]
+- [infiniband] RDMA/restrack: Convert internal DB from hash to XArray (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Move device addition deletion to device.c (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Introduce and use ib_setup_port_attrs() (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Use simpler device_del() instead of device_unregister() (Kamal Heib) [1720888]
+- [infiniband] RDMA/nes: Remove useless usecnt variable and redundant memset (Kamal Heib) [1720888]
+- [infiniband] IB/{hw, sw}: Remove 'uobject->context' dependency in object creation APIs (Kamal Heib) [1720888]
+- [infiniband] RDMA/qedr: remove set but not used variable 'ib_ctx' (Kamal Heib) [1720888]
+- [infiniband] RDMA/mthca: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720888]
+- [infiniband] RDMA: Cleanup undesired pd->uobject usage (Kamal Heib) [1720888]
+- [infiniband] RDMA/mthca: Clear QP objects during their allocation (Kamal Heib) [1720888]
+- [include] IB/verbs: Add helper function rdma_udata_to_drv_context (Kamal Heib) [1720888]
+- [infiniband] IB/uverbs: Add ib_ucontext to uverbs_attr_bundle sent from ioctl and cmd flows (Kamal Heib) [1720888]
+- [infiniband] IB/ipoib: Use __func__ instead of function's name (Kamal Heib) [1720888]
+- [infiniband] RDMA/iwpm: Remove set but not used variable 'msg_seq' (Kamal Heib) [1720888]
+- [infiniband] RDMA/nes: Use for_each_sg_dma_page iterator for umem SGL (Kamal Heib) [1720888]
+- [net] xprtrdma: Check inline size before providing a Write chunk (Kamal Heib) [1720888]
+- [infiniband] RDMA/ocrdma: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720888]
+- [infiniband] RDMA/vmw_pvrdma: Use for_each_sg_dma_page iterator on umem SGL (Kamal Heib) [1720888]
+- [infiniband] RDMA/devices: Re-organize device.c locking (Kamal Heib) [1720888]
+- [infiniband] RDMA/devices: Use xarray to store the client_data (Kamal Heib) [1720888]
+- [infiniband] RDMA/devices: Use xarray to store the clients (Kamal Heib) [1720888]
+- [infiniband] RDMA/device: Use an ida instead of a free page in alloc_name (Kamal Heib) [1720888]
+- [infiniband] RDMA/device: Get rid of reg_state (Kamal Heib) [1720888]
+- [infiniband] RDMA/device: Check that the rename is nop under the lock (Kamal Heib) [1720888]
+- [infiniband] RDMA: Handle PD allocations by IB/core (Kamal Heib) [1720888]
+- [infiniband] RDMA/hns: fix spelling mistake "reseved" -> "reserved" (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Share driver structure size with core (Kamal Heib) [1720888]
+- [infiniband] IB/cma: Define option to set ack timeout and pack tos_set (Kamal Heib) [1720888]
+- [infiniband] drivers/IB,core: reduce scope of mmap_sem (Kamal Heib) [1720888]
+- [infiniband] drivers/IB,usnic: reduce scope of mmap_sem (Kamal Heib) [1720888]
+- [net] svcrdma: Remove syslog warnings in work completion handlers (Kamal Heib) [1720888]
+- [net] svcrdma: Squelch compiler warning when SUNRPC_DEBUG is disabled (Kamal Heib) [1720888]
+- [net] svcrdma: Use struct_size() in kmalloc() (Kamal Heib) [1720888]
+- [infiniband] RDMA/iwpm: move kdoc comments to functions (Kamal Heib) [1720888]
+- [infiniband] RDMA/cma: Remove CM_ID statistics provided by rdma-cm module (Kamal Heib) [1720888]
+- [infiniband] scsi: RDMA/srpt: Rework I/O context allocation (Kamal Heib) [1720888]
+- [infiniband] scsi: RDMA/srpt: Fix handling of command / TMF submission failure (Kamal Heib) [1720888]
+- [infiniband] RDMA/IWPM: Support no port mapping requirements (Kamal Heib) [1720888]
+- [infiniband] RDMA/IWPM: refactor the IWPM message attribute names (Kamal Heib) [1720888]
+- [infiniband] RDMA/rxe: Improve loopback marking (Kamal Heib) [1720888]
+- [infiniband] RDMA/rxe: Move rxe_init_av() to rxe_av.c (Kamal Heib) [1720888]
+- [infiniband] IB/core: Remove ib_sg_dma_address() and ib_sg_dma_len() (Kamal Heib) [1720888]
+- [infiniband] IB/uverbs: Expose XRC ODP device capabilities (Kamal Heib) [1720888]
+- [include] IB/core: Allocate a bit for SRQ ODP support (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Use the ops infrastructure to keep all callbacks in one place (Kamal Heib) [1720888]
+- [infiniband] RDMA/cxgb4: Sort SRQ ops alphabetically (Kamal Heib) [1720888]
+- [infiniband] RDMA/restrack: Refactor user/kernel restrack additions (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Simplify restrack interface (Kamal Heib) [1720888]
+- [infiniband] RDMA/nldev: Prepare CAP_NET_ADMIN checks for .doit callbacks (Kamal Heib) [1720888]
+- [infiniband] RDMA/nldev: Factor out the PID namespace check (Kamal Heib) [1720888]
+- [infiniband] RDMA/nldev: Dynamically generate restrack dumpit callbacks (Kamal Heib) [1720888]
+- [infiniband] IB/usnic: Remove stub functions (Kamal Heib) [1720888]
+- [infiniband] RDMA: Add indication for in kernel API support to IB device (Kamal Heib) [1720888]
+- [infiniband] IB/mlx5: Introduce async DEVX obj query API (Kamal Heib) [1720888]
+- [infiniband] IB/mlx5: Introduce MLX5_IB_OBJECT_DEVX_ASYNC_CMD_FD (Kamal Heib) [1720888]
+- [infiniband] infiniband: prefix header search paths with $(srctree)/ (Kamal Heib) [1720888]
+- [infiniband] infiniband: remove unneeded header search paths (Kamal Heib) [1720888]
+- [infiniband] infiniband: ipoib: no need to check return value of debugfs_create functions (Kamal Heib) [1720888]
+- [infiniband] infiniband: usnic: no need to check return value of debugfs_create functions (Kamal Heib) [1720888]
+- [infiniband] infiniband: ocrdma: no need to check return value of debugfs_create functions (Kamal Heib) [1720888]
+- [infiniband] RDMA/ocrdma: Use PCI-ID as an identification in debugfs (Kamal Heib) [1720888]
+- [infiniband] IB/umad: Do not check status of nonseekable_open() (Kamal Heib) [1720888]
+- [infiniband] IB/umad: Avoid additional device reference during open()/close() (Kamal Heib) [1720888]
+- [infiniband] IB/rxe: Remove unnecessary rxe variable (Kamal Heib) [1720888]
+- [infiniband] IB/core: Simplify rdma cgroup registration (Kamal Heib) [1720888]
+- [infiniband] RDMA/device: Use __ib_device_get_by_name() in ib_device_rename() (Kamal Heib) [1720888]
+- [infiniband] RDMA: Rename port_callback to init_port (Kamal Heib) [1720888]
+- [infiniband] RDMA: Clear CTX objects during their allocation (Kamal Heib) [1720888]
+- [infiniband] RDMA: Clear PD objects during their allocation (Kamal Heib) [1720888]
+- [infiniband] RDMA/ocrdma: Fix out of bounds index check in query pkey (Kamal Heib) [1720888]
+- [infiniband] IB/{core, hw}: Have ib_umem_get extract the ib_ucontext from ib_udata (Kamal Heib) [1720888]
+- [infiniband] IB/{core, uverbs}: Move ib_umem_xxx functions from ib_core to ib_uverbs (Kamal Heib) [1720888]
+- [infiniband] RDMA/core: Don't depend device ODP capabilities on kconfig option (Kamal Heib) [1720888]
+- [infiniband] IB/srp: Use struct_size() in kzalloc() (Kamal Heib) [1720888]
+- [infiniband] IB/core: Use struct_size() in kzalloc() (Kamal Heib) [1720888]
+- [infiniband] IB/usnic: Use struct_size() in kmalloc() (Kamal Heib) [1720888]
+- [infiniband] IB/cm: Use struct_size() in kmalloc() (Kamal Heib) [1720888]
+- [mm] mm: introduce put_user_page*(), placeholder versions (Rafael Aquini) [1746371]
+- [mm] mm/gup: add FOLL_LONGTERM capability to GUP fast (Rafael Aquini) [1746371]
+- [mm] mm/gup: change GUP fast to use flags rather than a write 'bool' (Rafael Aquini) [1746371]
+- [mm] mm/gup: change write parameter to flags in fast walk (Rafael Aquini) [1746371]
+- [mm] mm/gup: replace get_user_pages_longterm() with FOLL_LONGTERM (Rafael Aquini) [1746371]
+- [s390] s390/mm: fix pxd_bad with folded page tables (Rafael Aquini) [1746371]
+- [s390] s390/mm: fix dump_pagetables top level page table walking (Rafael Aquini) [1746371]
+- [s390] s390/mm: convert to the generic get_user_pages_fast code (Rafael Aquini) [1746371]
+- [s390] s390/mm: make the pxd_offset functions more robust (Rafael Aquini) [1746371]
+- [mm] mm/gup: fix gup_pmd_range() for dax (Rafael Aquini) [1746371]
+- [mm] mm/gup: remove the 'write' parameter from gup_fast_permitted() (Rafael Aquini) [1746371]
+- [mm] mm/gup: fix follow_page_mask() kerneldoc comment (Rafael Aquini) [1746371]
+- [mm] mm/gup: fix __get_user_pages_fast() comment (Rafael Aquini) [1746371]
+- [mm] mm/gup_benchmark: prevent integer overflow in ioctl (Rafael Aquini) [1746371]
+- [mm] mm/gup_benchmark: add additional pinning methods (Rafael Aquini) [1746371]
+- [mm] mm/gup_benchmark: time put_page() (Rafael Aquini) [1746371]
+- [mm] mm/gup_benchmark: fix unsigned comparison to zero in __gup_benchmark_ioctl (Rafael Aquini) [1746371]
+- [mm] mm: remove caller signal_pending branch predictions (Rafael Aquini) [1746371]
+- [mm] mm: remove unnecessary local variable addr in __get_user_pages_fast() (Rafael Aquini) [1746371]
+- [mm] mm: change return type int to vm_fault_t for fault handlers (Rafael Aquini) [1746371]
+- [mm] mm: make mm->pinned_vm an atomic64 counter (Rafael Aquini) [1746371]
+
+* Fri Oct 25 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.10.el8]
+- [kernel] sched/core: Schedule new worker even if PI-blocked (Waiman Long) [1758629]
+- [char] random: add a spinlock_t to struct batched_entropy (Waiman Long) [1758629]
+- [crypto] crypto: chacha20 - Fix chacha20_block() keystream alignment (again) (Waiman Long) [1758629]
+- [fs] locking/percpu-rwsem: Remove preempt_disable variants (Waiman Long) [1758629]
+- [x86] x86/tsc: Add option to disable tsc clocksource watchdog (Waiman Long) [1758629]
+- [x86] x86/irq: Handle spurious interrupt after shutdown gracefully (Waiman Long) [1758629]
+- [x86] x86/ioapic: Implement irq_get_irqchip_state() callback (Waiman Long) [1758629]
+- [kernel] genirq: Add optional hardware synchronization for shutdown (Waiman Long) [1758629]
+- [kernel] genirq: Fix misleading synchronize_irq() documentation (Waiman Long) [1758629]
+- [kernel] genirq: Delay deactivation in free_irq() (Waiman Long) [1758629]
+- [kernel] genirq: Remove redundant NULL pointer check in __free_irq() (Waiman Long) [1758629]
+- [kernel] genirq: Synchronize only with single thread on free_irq() (Waiman Long) [1758629]
+- [kernel] genirq: Update code comments wrt recycled thread_mask (Waiman Long) [1758629]
+- [usb] usb: core: remove flags variable in __usb_hcd_giveback_urb() (Waiman Long) [1758629]
+- [usb] usb: core: remove local_irq_save() around ->complete() handler (Waiman Long) [1758629]
+- [media] media: tm6000: use irqsave() in USB's complete callback (Waiman Long) [1758629]
+- [media] media: em28xx-audio: use irqsave() in USB's complete callback (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Optimize __cpa_flush_range() (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Factor common code between cpa_flush_*() (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Move CLFLUSH test into cpa_flush_array() (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Move CLFLUSH test into cpa_flush_range() (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Use flush_tlb_kernel_range() (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Unconditionally avoid WBINDV when we can (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Move flush_tlb_all() (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Use flush_tlb_all() (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Avoid the 4k pages check completely (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Do the range check early (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Optimize same protection check (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Add sanity check for existing mappings (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Avoid static protection checks on unmap (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Add large page preservation statistics (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Add debug mechanism (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Allow range check for static protections (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Rework static_protections() (Waiman Long) [1758629]
+- [x86] x86/mm/cpa: Split, rename and clean up try_preserve_large_page() (Waiman Long) [1758629]
+- [x86] x86/mm/init32: Mark text and rodata RO in one go (Waiman Long) [1758629]
+- [mm] mm/kasan/quarantine.c: make quarantine_lock a raw_spinlock_t (Waiman Long) [1758629]
+- [mm] mm/list_lru.c: fold __list_lru_count_one() into its caller (Waiman Long) [1758629]
+- [mm] mm: workingset: make shadow_lru_isolate() use locking suffix (Waiman Long) [1758629]
+- [mm] mm: workingset: remove local_irq_disable() from count_shadow_nodes() (Waiman Long) [1758629]
+- [iommu] iommu/amd: Remove redundant WARN_ON() (Waiman Long) [1758629]
+- [mm] mm/list_lru: introduce list_lru_shrink_walk_irq() (Waiman Long) [1758629]
+- [mm] mm/list_lru.c: pass struct list_lru_node* as an argument to __list_lru_walk_one() (Waiman Long) [1758629]
+- [mm] mm/list_lru.c: move locking from __list_lru_walk_one() to its caller (Waiman Long) [1758629]
+- [mm] mm/list_lru.c: use list_lru_walk_one() in list_lru_walk_node() (Waiman Long) [1758629]
+- [kernel] userns: use irqsave variant of refcount_dec_and_lock() (Waiman Long) [1758629]
+- [kernel] userns: use refcount_t for reference counting instead atomic_t (Waiman Long) [1758629]
+- [kernel] bdi: use irqsave variant of refcount_dec_and_lock() (Waiman Long) [1758629]
+- [mm] bdi: use refcount_t for reference counting instead atomic_t (Waiman Long) [1758629]
+- [char] random: remove preempt disabled region (Waiman Long) [1758629]
+- [misc] ocxl: Update for AFU descriptor template version 1.1 (Steve Best) [1751207]
+- [misc] ocxl: Make ocxl_remove() static (Steve Best) [1751207]
+- [misc] ocxl: do not use C++ style comments in uapi header (Steve Best) [1751207]
+- [misc] ocxl: Allow contexts to be attached with a NULL mm (Steve Best) [1751207]
+- [misc] ocxl: Fix return value check in afu_ioctl() (Steve Best) [1751207]
+- [misc] ocxl: Provide global MMIO accessors for external drivers (Steve Best) [1751207]
+- [misc] ocxl: move event_fd handling to frontend (Steve Best) [1751207]
+- [misc] ocxl: afu_irq only deals with IRQ IDs, not offsets (Steve Best) [1751207]
+- [misc] ocxl: Allow external drivers to use OpenCAPI contexts (Steve Best) [1751207]
+- [misc] ocxl: Create a clear delineation between ocxl backend & frontend (Steve Best) [1751207]
+- [misc] ocxl: Don't pass pci_dev around (Steve Best) [1751207]
+- [misc] ocxl: Split pci.c (Steve Best) [1751207]
+- [misc] ocxl: Remove some unused exported symbols (Steve Best) [1751207]
+- [misc] ocxl: Remove superfluous 'extern' from headers (Steve Best) [1751207]
+- [misc] ocxl: read_pasid never returns an error, so make it void (Steve Best) [1751207]
+- [misc] ocxl: Rename struct link to ocxl_link (Steve Best) [1751207]
+- [misc] ocxl: remove set but not used variables 'tid' and 'lpid' (Steve Best) [1751207]
+- [misc] ocxl: Fix endiannes bug in read_afu_name() (Steve Best) [1751207]
+- [misc] ocxl/afu_irq: Don't include <asm/pnv-ocxl.h> (Steve Best) [1751207]
+- [misc] ocxl: Clarify error path in setup_xsl_irq() (Steve Best) [1751207]
+- [misc] ocxl: Fix endiannes bug in ocxl_link_update_pe() (Steve Best) [1751207]
+- [misc] ocxl: Fix access to the AFU Descriptor Data (Steve Best) [1751207]
+- [netdrv] gve: account for lack of netdev_xmit_more() definition (RHEL-only) (John Linville) [1728864]
+- [netdrv] gve: Copy and paste bug in gve_get_stats() (John Linville) [1728864]
+- [netdrv] gve: Fix case where desc_cnt and data_cnt can get out of sync (John Linville) [1728864]
+- [netdrv] gve: replace kfree with kvfree (John Linville) [1728864]
+- [netdrv] gve: Remove the exporting of gve_probe (John Linville) [1728864]
+- [netdrv] gve: fix unused variable/label warnings (John Linville) [1728864]
+- [netdrv] gve: Fix error return code in gve_alloc_qpls() (John Linville) [1728864]
+- [netdrv] gve: fix -ENOMEM null check on a page allocation (John Linville) [1728864]
+- [netdrv] gve: Fix u64_stats_sync to initialize start (John Linville) [1728864]
+- [netdrv] gve: Add ethtool support (John Linville) [1728864]
+- [netdrv] gve: Add workqueue and reset support (John Linville) [1728864]
+- [netdrv] gve: Add transmit and receive support (John Linville) [1728864]
+- [netdrv] gve: Add basic driver framework for Compute Engine Virtual NIC (John Linville) [1728864]
+- [mfd] mfd: intel-lpss: Add Intel Comet Lake PCI IDs (David Arcari) [1761586]
+- [scsi] scsi: core: save/restore command resid for error handling (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Ignore a failure to sync cache due to lack of authorization (Ewan Milne) [1760503]
+- [scsi] scsi: core: Add sysfs attributes for VPD pages 0h and 89h (Ewan Milne) [1760503]
+- [scsi] scsi: core: Log SCSI command age with errors (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_dh_rdac: zero cdb in send_mode_select() (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Improve unaligned completion resid message (Ewan Milne) [1760503]
+- [scsi] scsi: core: Reduce memory required for SCSI logging (Ewan Milne) [1760503]
+- [scsi] scsi: core: Complain if scsi_target_block() fails (Ewan Milne) [1760503]
+- [scsi] scsi: core: Make scsi_internal_device_unblock_nowait() reject invalid new_state (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_debugfs: Use for_each_set_bit to simplify code (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_dh_alua: always use a 2 second delay before retrying RTPG (Ewan Milne) [1760503]
+- [scsi] scsi: sd_zbc: Fix compilation warning (Ewan Milne) [1760503]
+- [scsi] scsi: devinfo: BLIST_TRY_VPD_PAGES for SanDisk Cruzer Blade (Ewan Milne) [1760503]
+- [scsi] scsi: core: use scmd_printk() to print which command timed out (Ewan Milne) [1760503]
+- [scsi] scsi: Avoid that .queuecommand() gets called for a blocked SCSI device (Ewan Milne) [1760503]
+- [scsi] scsi: core: don't preallocate small SGL in case of NO_SG_CHAIN (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_dh_alua: Fix possible null-ptr-deref (Ewan Milne) [1760503]
+- [scsi] scsi: st: add a SPDX tag to st.c (Ewan Milne) [1760503]
+- [scsi] scsi: sr: add a SPDX tag to sr.c (Ewan Milne) [1760503]
+- [scsi] scsi: sg: switch to SPDX tags (Ewan Milne) [1760503]
+- [scsi] scsi: sd: switch remaining files to SPDX tags (Ewan Milne) [1760503]
+- [scsi] scsi: sd: add a SPDX tag to sd.c (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_transport_srp: switch to SPDX tags (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_transport_spi: switch to SPDX tags (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_transport_sas: switch to SPDX tags (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_transport_iscsi: switch to SPDX tags (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_transport_fc: switch to SPDX tags (Ewan Milne) [1760503]
+- [scsi] scsi: core: switch the remaining scsi midlayer files to use SPDX tags (Ewan Milne) [1760503]
+- [scsi] scsi: core: add SPDX tags to scsi midlayer files missing licensing information (Ewan Milne) [1760503]
+- [scsi] Revert "scsi: sd: Keep disk read-only when re-reading partition" (Ewan Milne) [1760503]
+- [scsi] scsi: core: set result when the command cannot be dispatched (Ewan Milne) [1760503]
+- [scsi] scsi: core: map PQ=1, PDT=other values to SCSI_SCAN_TARGET_PRESENT (Ewan Milne) [1760503]
+- [scsi] scsi: core: don't hold device refcount in IO path (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Quiesce warning if device does not report optimal I/O size (Ewan Milne) [1760503]
+- [scsi] scsi: core: Use HCTX_TYPE_DEFAULT for blk_mq_tag_set->map (Ewan Milne) [1760503]
+- [scsi] scsi: core: Avoid that a kernel warning appears during system resume (Ewan Milne) [1760503]
+- [scsi] scsi: core: Also call destroy_rcu_head() for passthrough requests (Ewan Milne) [1760503]
+- [scsi] scsi: core: replace GFP_ATOMIC with GFP_KERNEL in scsi_scan.c (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Optimal I/O size should be a multiple of physical block size (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Fix typo in sd_first_printk() (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_debug: Implement support for write protect (Ewan Milne) [1760503]
+- [scsi] scsi: sd_zbc: Fix zone information messages (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Improve sd_print_capacity() (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_debug: fix write_same with virtual_gb problem (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Protect against READ(6) or WRITE(6) with zero block transfer length (Ewan Milne) [1760503]
+- [scsi] scsi: core: Remove an atomic instruction from the hot path (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Rename 'SCpnt' into 'cmd' (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Clean up sd_setup_read_write_cmnd() (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Create helper functions for read/write commands (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Simplify misaligned I/O check (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Be consistent about blocks vs. sectors (Ewan Milne) [1760503]
+- [scsi] scsi: sd: Remove a local variable (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_debug: add cmd abort option to every_nth (Ewan Milne) [1760503]
+- [scsi] scsi: scsi_debug: skip long delays when ndelay small (Ewan Milne) [1760503]
+- [x86] efi/x86: Do not clean dummy variable in kexec path (Bhupesh Sharma) [1724436]
+- [scsi] scsi: csiostor: create per port irq affinity mask set (Jonathan Toppins) [1725816]
+- [pci] PCI: let pci_disable_link_state propagate errors (Myron Stowe) [1735834]
+- [scsi] scsi: scsi_transport_fc: Add FPIN fc event codes (Ewan Milne) [1755587]
+- [scsi] scsi: scsi_transport_fc: refactor event posting routines (Ewan Milne) [1755587]
+- [scsi] scsi: fc: add FPIN ELS definition (Ewan Milne) [1755587]
+- [scsi] scsi: lib/sg_pool.c: clear 'first_chunk' in case of no preallocation (Ewan Milne) [1747162]
+- [scsi] scsi: core: Run queue when state is set to running after being blocked (Ewan Milne) [1691599]
+- [scsi] scsi: sd: Fix a race between closing an sd device and sd I/O (Ewan Milne) [1689118]
+- [net] net/ibmvnic: Fix EOI when running in XIVE mode. (Steve Best) [1761378]
+- [powerpc] powerpc/mce: Fix SLB rebolting during MCE recovery path. (Desnes Augusto Nunes do Rosario) [1725842]
+- [powerpc] powerpc/pseries: hwpoison the pages upon hitting UE (Desnes Augusto Nunes do Rosario) [1725842]
+- [x86] perf/x86/amd: Change/fix NMI latency mitigation to use a timestamp (David Arcari) [1730134]
+- [arm64] arm64: entry: Remove unneeded need_resched() loop (Mark Langsdorf) [1737075]
+- [arm64] arm64: preempt: Fix big-endian when checking preempt count in assembly (Mark Langsdorf) [1737075]
+- [arm64] arm64: preempt: Provide our own implementation of asm/preempt.h (Mark Langsdorf) [1737075]
+- [include] preempt: Move PREEMPT_NEED_RESCHED definition into arch code (Mark Langsdorf) [1737075]
+- [x86] x86/intel_rdt: Ensure a CPU remains online for the region's pseudo-locking sequence (Alexander Beregalov) [1724902]
+- [kernel] perf/core: Add sanity check to deal with pinned event failure (Alexander Beregalov) [1724902]
+- [arm64] arm64/sve: Fix wrong free for task->thread.sve_state (Andrew Jones) [1756450]
+- [scsi] scsi: lpfc: Update lpfc version to 12.4.0.1 (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: cleanup: remove unused fcp_txcmlpq_cnt (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Complete removal of FCoE T10 PI support on SLI-4 adapters (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Update async event logging (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix list corruption detected in lpfc_put_sgl_per_hdwq (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix hdwq sgl locks and irq handling (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix spinlock_irq issues in lpfc_els_flush_cmd() (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix list corruption in lpfc_sli_get_iocbq (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix host hang at boot or slow boot (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix coverity errors on NULL pointer checks (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix NVMe ABTS in response to receiving an ABTS (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix discovery failures when target device connectivity bounces (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix GPF on scsi command completion (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix locking on mailbox command completion (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix device recovery errors after PLOGI failures (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix rpi release when deleting vport (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix NVME io abort failures causing hangs (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix miss of register read failure check (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix premature re-enabling of interrupts in lpfc_sli_host_down (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix pt2pt discovery on SLI3 HBAs (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix reset recovery paths that are not recovering (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Convert existing pf users to ps (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: fix 12.4.0.0 GPF at boot (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Remove bg debugfs buffers (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Resolve checker warning for lpfc_new_io_buf() (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Update lpfc version to 12.4.0.0 (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Merge per-protocol WQ/CQ pairs into single per-cpu pair (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Add NVMe sequence level error recovery support (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Support dynamic unbounded SGL lists on G7 hardware. (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Add MDS driver loopback diagnostics support (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Add first and second level hardware revisions to sysfs reporting (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Migrate to px and pf in kernel print calls (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Add simple unlikely optimizations to reduce NVME latency (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix coverity warnings (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix nvme first burst module parameter description (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix BlockGuard enablement on FCoE adapters (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix reported physical link speed on a disabled trunked link (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix Max Frame Size value shown in fdmishow output (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix upcall to bsg done in non-success cases (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix sli4 adapter initialization with MSI (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix nvme sg_seg_cnt display if HBA does not support NVME (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix nvme target mode ABTSing a received ABTS (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix hang when downloading fw on port enabled for nvme (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix too many sg segments spamming in kernel log (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix crash due to port reset racing vs adapter error handling (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix deadlock on host_lock during cable pulls (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix error in remote port address change (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix driver nvme rescan logging (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix sg_seg_cnt for HBAs that don't support NVME (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix propagation of devloss_tmo setting to nvme transport (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix loss of remote port after devloss due to lack of RPIs (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix devices that don't return after devloss followed by rediscovery (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix null ptr oops updating lpfc_devloss_tmo via sysfs attribute (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix FLOGI handling across multiple link up/down conditions (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix irq raising in lpfc_sli_hba_down (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix Oops in nvme_register with target logout/login (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix issuing init_vpi mbox on SLI-3 card (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix ADISC reception terminating login state if a NVME target (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix discovery when target has no GID_FT information (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix leak of ELS completions on adapter reset (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix failure to clear non-zero eq_delay after io rate reduction (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix crash on driver unload in wq free (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix ELS field alignments (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Fix PLOGI failure with high remoteport count (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: remove NULL check before some freeing functions (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: use spin_lock_irqsave in IRQ context (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: remove redundant code (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Remove unnecessary null check before kfree (Dick Kennedy) [1757574]
+- [scripts] scripts/spelling.txt: drop "sepc" from the misspelling list (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: reduce stack size with CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE (Dick Kennedy) [1757574]
+- [scsi] lpfc: add sysfs interface to post NVME RSCN (Dick Kennedy) [1757574]
+- [scsi] lpfc: add support for translating an RSCN rcv into a discovery rescan (Dick Kennedy) [1757574]
+- [scsi] lpfc: add support to generate RSCN events for nport (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: use sg helper to iterate over scatterlist (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Avoid unused function warnings (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Make some symbols static (Dick Kennedy) [1757574]
+- [scsi] scsi: lpfc: Remove set but not used variables 'qp' (Dick Kennedy) [1757574]
+- [lib] lib/vsprintf: Reinstate printing of legacy clock IDs (Prarit Bhargava) [1751075]
+- [lib] vsprintf: fix data type of variable in string_nocheck() (Prarit Bhargava) [1751075]
+- [scripts] kconfig: tests: fix recursive inclusion unit test (Prarit Bhargava) [1751075]
+- [kernel] printk: Replace GPLv2 boilerplate/reference with SPDX - rule 13 (Prarit Bhargava) [1751075]
+- [kernel] printk: Add SPDX license identifier for missed files (Prarit Bhargava) [1751075]
+- [kernel] printk: Add SPDX license identifier for more missed files (Prarit Bhargava) [1751075]
+- [kernel] panic: add an option to replay all the printk message in buffer (Prarit Bhargava) [1751075]
+- [kernel] panic: avoid the extra noise dmesg (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Do not break early boot with probing addresses (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf: Make function pointer_string static (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Limit the length of inlined error messages (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Avoid confusion between invalid address and value (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Prevent crash when dereferencing invalid pointers (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Consolidate handling of unknown pointer specifiers (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Factor out pO handler as kobject_string() (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Factor out pV handler as va_format() (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Factor out p[iI] handler as ip_addr_string() (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Do not check address of well-known strings (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Consistent pK handling for kptr_restrict == 0 (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Shuffle restricted_pointer() (Prarit Bhargava) [1751075]
+- [kernel] printk: Tie printk_once / printk_deferred_once into .data.once for reset (Prarit Bhargava) [1751075]
+- [lib] lib: Use new kselftest header (Prarit Bhargava) [1751075]
+- [lib] lib/test_printf: Add empty module_exit function (Prarit Bhargava) [1751075]
+- [scripts] checkpatch: add pt as a valid vsprintf extension (Prarit Bhargava) [1751075]
+- [lib] lib/test_printf: Switch to bitmap_zalloc() (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf.c: move sizeof(struct printf_spec) next to its definition (Prarit Bhargava) [1751075]
+- [kernel] printk/docs: Add extra integer types to printk-formats (Prarit Bhargava) [1751075]
+- [kernel] printk: Remove no longer used LOG_PREFIX. (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf: Remove pCr remnant in comment (Prarit Bhargava) [1751075]
+- [kernel] printk: Pass caller information to log_store(). (Prarit Bhargava) [1751075]
+- [kernel] kernel/sysctl: add panic_print into sysctl (Prarit Bhargava) [1751075]
+- [kernel] panic: add options to print system info when panic happens (Prarit Bhargava) [1751075]
+- [include] include/linux/printk.h: drop silly "static inline asmlinkage" from dump_stack() (Prarit Bhargava) [1751075]
+- [kernel] printk: Add caller information to printk() output. (Prarit Bhargava) [1751075]
+- [kernel] printk: Remove print_prefix() calls with NULL buffer. (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf: Print time and date in human readable format via pt (Prarit Bhargava) [1751075]
+- [kernel] printk: fix printk_time race. (Prarit Bhargava) [1751075]
+- [kernel] printk: Make printk_emit() local function. (Prarit Bhargava) [1751075]
+- [documentation] doc: printk-formats: Remove bogus kobject references for device nodes (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf: Hash printed address for netdev bits fallback (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf: Hash legacy clock addresses (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf: Prepare for more general use of ptr_to_id() (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf: Make ptr argument conts in ptr_to_id() (Prarit Bhargava) [1751075]
+- [kernel] printk: fix integer overflow in setup_log_buf() (Prarit Bhargava) [1751075]
+- [kernel] printk: do not preliminary split up cont buffer (Prarit Bhargava) [1751075]
+- [kernel] printk: lock/unlock console only for new logbuf entries (Prarit Bhargava) [1751075]
+- [kernel] printk: keep kernel cont support always enabled (Prarit Bhargava) [1751075]
+- [kernel] printk: Give error on attempt to set log buffer length to over 2G (Prarit Bhargava) [1751075]
+- [kernel] printk: Add KBUILD_MODNAME and remove a redundant print prefix (Prarit Bhargava) [1751075]
+- [kernel] printk: Correct wrong casting (Prarit Bhargava) [1751075]
+- [kernel] printk: CON_PRINTBUFFER console registration is a bit racy (Prarit Bhargava) [1751075]
+- [kernel] printk: Do not miss new messages when replaying the log (Prarit Bhargava) [1751075]
+- [kernel] Revert "printk: make sure to print log on console." (Prarit Bhargava) [1751075]
+- [lib] vsprintf: print OF node name using full_name (Prarit Bhargava) [1751075]
+- [kernel] printk/tracing: Do not trace printk_nmi_enter() (Prarit Bhargava) [1751075]
+- [misc] notifier: Remove notifier header file wherever not used (Prarit Bhargava) [1751075]
+- [init] init: allow initcall tables to be emitted using relative references (Prarit Bhargava) [1751075]
+- [lib] lib/vsprintf: Do not handle pO[^F] as px (Prarit Bhargava) [1751075]
+- [kernel] console: Replace #if 0 with atomic var 'ignore_console_lock_warning' (Prarit Bhargava) [1751075]
+- [lib] vsprintf: Use hw RNG for ptr_key (Prarit Bhargava) [1751075]
+- [kernel] printk: Fix warning about unused suppress_message_printing (Prarit Bhargava) [1751075]
+- [char] random: Return nbytes filled from hw RNG (Prarit Bhargava) [1751075]
+- [char] random: Fix whitespace pre random-bytes work (Prarit Bhargava) [1751075]
+- [kernel] printk/nmi: Prevent deadlock when accessing the main log buffer in NMI (Prarit Bhargava) [1751075]
+- [kernel] printk: Create helper function to queue deferred console handling (Prarit Bhargava) [1751075]
+- [kernel] printk: Split the code for storing a message into the log buffer (Prarit Bhargava) [1751075]
+- [kernel] printk: Clean up syslog_print_all() (Prarit Bhargava) [1751075]
+- [kernel] printk: Export is_console_locked (Prarit Bhargava) [1751075]
+- [kernel] printk: Remove unnecessary kmalloc() from syslog during clear (Prarit Bhargava) [1751075]
+- [kernel] printk: Make CONSOLE_LOGLEVEL_QUIET configurable (Prarit Bhargava) [1751075]
+- [kernel] printk: make sure to print log on console. (Prarit Bhargava) [1751075]
+- [lib] lib/test_printf.c: accept "ptrval" as valid result for plain 'p' tests (Prarit Bhargava) [1751075]
+- [kernel] softirq: Remove tasklet_hrtimer (Prarit Bhargava) [1737073]
+- [include] list: add function list_rotate_to_front() (Prarit Bhargava) [1737073]
+- [clocksource] clocksource/drivers/tcb_clksrc: Rename the file for consistency (Prarit Bhargava) [1737073]
+- [clocksource] clocksource/drivers/tcb_clksrc: Move Kconfig option (Prarit Bhargava) [1737073]
+- [clocksource] clocksource/drivers/tcb_clksrc: Use tcb as sched_clock (Prarit Bhargava) [1737073]
+- [kernel] irq_work: Do not raise an IPI when queueing work on the local CPU (Prarit Bhargava) [1737073]
+- [tty] tty/sysrq: Convert show_lock to raw_spinlock_t (Prarit Bhargava) [1737073]
+- [net] xfrm: Replace hrtimer tasklet with softirq hrtimer (Prarit Bhargava) [1737073]
+- [netdrv] mac80211_hwsim: Replace hrtimer tasklet with softirq hrtimer (Prarit Bhargava) [1737073]
+- [kernel] kthread: Do not use TIMER_IRQSAFE (Prarit Bhargava) [1737073]
+- [kernel] kthread: Convert worker lock to raw spinlock (Prarit Bhargava) [1737073]
+- [netdrv] mac80211_hwsim: Timer should be initialized before device registered (Prarit Bhargava) [1737073]
+- [net] xfrm: use time64_t for in-kernel timestamps (Prarit Bhargava) [1737073]
+- [x86] x86/intel: Aggregate microserver naming (Prarit Bhargava) [1725644]
+- [x86] x86/intel: Aggregate big core graphics naming (Prarit Bhargava) [1725644]
+- [x86] x86/intel: Aggregate big core mobile naming (Prarit Bhargava) [1725644]
+- [x86] x86/intel: Aggregate big core client naming (Prarit Bhargava) [1725644]
+- [tools] turbostat: Replace GPLv2 boilerplate/reference with SPDX - rule 335 (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: update version number (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: rename has_hsw_msrs() (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: Fix Haswell Core systems (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: Add support for Hygon Fam 18h (Dhyana) RAPL (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: Fix caller parameter of get_tdp_amd() (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: Fix CPUC1 display value (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: do not enforce 1ms (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: read from pipes too (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: Add Ice Lake NNPI support (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: add Jacobsville support (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: remove duplicate pc10 column (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: fix file descriptor leaks (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: fix leak of file descriptor on error return path (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: fix buffer overrun (Prarit Bhargava) [1725644]
+- [tools] tools/power turbostat: Make interval calculation per thread to reduce jitter (Prarit Bhargava) [1725644]
+- [tools] tools/power/x86: Enable compiler optimisations and Fortify by default (Prarit Bhargava) [1725644]
+- [x86] x86/cpu: Add Ice Lake NNPI to Intel family (Prarit Bhargava) [1725644]
+
+* Tue Oct 22 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.9.el8]
+- [tools] perf tools: Fix segfault in cpu_cache_level__read() (Michael Petlan) [1761995]
+- [scsi] qla2xxx: Update driver version to 10.01.00.19.08.2-k (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix Nport ID display value (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix N2N link up fail (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix N2N link reset (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Optimize NPIV tear down process (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix stale mem access on driver unload (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix unbound sleep in fcport delete path. (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Silence fwdump template message (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix stale session (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix stuck login session (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix driver reload for ISP82xx (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix flash read for Qlogic ISPs (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix message indicating vectors used by driver (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: fix spelling mistake "initializatin" -> "initialization" (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix a recently introduced kernel warning (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix a NULL pointer dereference (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Simplify qla24xx_async_abort_cmd() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove two superfluous if-tests (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Introduce qla2x00_els_dcmd2_free() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Inline the qla2x00_fcport_event_handler() function (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Report invalid mailbox status codes (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove superfluous sts_entry_* casts (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Let the compiler check the type of the SCSI command context pointer (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Complain if sp->done() is not called from the completion path (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Make sure that aborted commands are freed (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Introduce qla2xxx_get_next_handle() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Modify NVMe include directives (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Make qlt_handle_abts_completion() more robust (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix a race condition between aborting and completing a SCSI command (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Introduce the function qla2xxx_init_sp() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Enable type checking for the SRB free and done callback functions (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Rework key encoding in qlt_find_host_by_d_id() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Set the responder mode if appropriate for ELS pass-through IOCBs (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Make it explicit that ELS pass-through IOCBs use little endian (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Check secondary image if reading the primary image fails (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Change the return type of qla24xx_read_flash_data() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Introduce the be_id_t and le_id_t data types for FC src/dst IDs (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Complain if a soft reset fails (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use memcpy() and strlcpy() instead of strcpy() and strncpy() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Check the PCI info string output buffer size (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Complain if waiting for pending commands times out (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Declare fourth qla2x00_set_model_info() argument const (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Always check the qla2x00_wait_for_hba_online() return value (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Suppress multiple Coverity complaint about out-of-bounds accesses (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Suppress a Coveritiy complaint about integer overflow (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove unreachable code from qla83xx_idc_lock() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix qla24xx_process_bidir_cmd() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Simplify a debug statement (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove dead code (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Complain if parsing the version string fails (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Complain if a mailbox command times out (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use strlcpy() instead of strncpy() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Do not corrupt vha->plogi_ack_list (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Report the firmware status code if a mailbox command fails (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix session lookup in qlt_abort_work() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Simplify qla24xx_abort_sp_done() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove two superfluous tests (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove a superfluous pointer check (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Simplify qlt_lport_dump() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Reduce the number of casts in GID list code (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Verify locking assumptions at runtime (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Change data_dsd into an array (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Declare qla_tgt_cmd.cdb const (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Reduce the scope of three local variables in qla2xxx_queuecommand() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Change the return type of qla2x00_update_ms_fdmi_iocb() into void (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Declare the fourth ql_dump_buffer() argument const (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove a superfluous forward declaration (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove an include directive from qla_mr.c (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Include the <asm/unaligned.h> header file from qla_dsd.h (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use tabs instead of spaces for indentation (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Improve Linux kernel coding style conformance (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Really fix qla2xxx_eh_abort() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Make qla2x00_abort_srb() again decrease the sp reference count (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Allow NVMe IO to resume with short cable pull (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix hang in fcport delete path (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use common update-firmware-options routine for ISP27xx+ (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix NVMe port discovery after a short device port loss (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Correct error handling during initialization failures (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Retry fabric Scan on IOCB queue full (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix premature timer expiration (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix Relogin to prevent modifying scan_state flag (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Reject EH_{abort|device_reset|target_request} (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Skip FW dump on LOOP initialization error (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use Correct index for Q-Pair array (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix abort timeout race condition. (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix DMA unmap leak (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Replace vmalloc + memset with vzalloc (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove unnecessary null check (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: remove double assignment in qla2x00_update_fcport (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Add cleanup for PCI EEH recovery (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Avoid that lockdep complains about unsafe locking in tcm_qla2xxx_close_session() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Avoid that qlt_send_resp_ctio() corrupts memory (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use __le64 instead of uint32_t[2] for sending DMA addresses to firmware (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Introduce the dsd32 and dsd64 data structures (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Check the size of firmware data structures at compile time (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Pass little-endian values to the firmware (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Make qla24xx_async_abort_cmd() static (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove unnecessary locking from the target code (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove qla_tgt_cmd.released (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Complain if a command is released that is owned by the firmware (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: target: Fix offline port handling and host reset handling (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix abort handling in tcm_qla2xxx_write_pending() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix error handling in qlt_alloc_qfull_cmd() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Simplify qlt_send_term_imm_notif() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix use-after-free issues in qla2xxx_qpair_sp_free_dma() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix a qla24xx_enable_msix() error path (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Avoid that qla2x00_mem_free() crashes if called twice (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Make qla2x00_mem_free() easier to verify (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Increase the size of the mailbox arrays from 4 to 8 (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Log the status code if a firmware command fails (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Avoid that Coverity complains about dereferencing a NULL rport pointer (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Uninline qla2x00_init_timer() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Move qla2x00_is_reserved_id() from qla_inline.h into qla_init.c (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Move qla2x00_clear_loop_id() from qla_inline.h into qla_init.c (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove a set-but-not-used variable (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Declare qla2x00_find_new_loop_id() static (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Move qla2x00_set_reserved_loop_ids() definition (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix a format specifier (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Update two source code comments (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Silence Successful ELS IOCB message (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix device staying in blocked state (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Move qla2x00_set_fcport_state() from a .h into a .c file (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove two superfluous casts (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove qla_tgt_cmd.data_work and qla_tgt_cmd.data_work_free (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Move the <linux/io-64-nonatomic-lo-hi.h> include directive (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Declare qla24xx_build_scsi_crc_2_iocbs() static (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Move the port_state_str[] definition from a .h to a .c file (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Insert spaces where required (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix formatting of pointer types (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Leave a blank line after declarations (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use tabs to indent code (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix FC-AL connection target discovery (Himanshu Madhani) [1728845]
+- [scsi] scsi: tcm_qla2xxx: Minimize #include directives (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Unregister resources in the opposite order of the registration order (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Unregister chrdev if module initialization fails (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use get/put_unaligned where appropriate (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Make qla2x00_process_response_queue() easier to read (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Declare local symbols static (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use ARRAY_SIZE() in the definition of QLA_LAST_SPEED (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove a comment that refers to the SCSI host lock (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Remove useless set memory to zero use memset() (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Cleanup fcport memory to prevent leak (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Further limit FLASH region write access from SysFS (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Disable T10-DIF feature with FC-NVMe during probe (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Increase the max_sgl_segments to 1024 (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Reset the FCF_ASYNC_{SENT|ACTIVE} flags (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Set the qpair in SRB to NULL when SRB is released (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix a small typo in qla_bsg.c (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Fix comment alignment in qla_bsg.c (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: Use HCTX_TYPE_DEFAULT for blk_mq_tag_set->map (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: deadlock by configfs_depend_item (Himanshu Madhani) [1728845]
+- [scsi] scsi: qla2xxx: use lower_32_bits and upper_32_bits instead of reinventing them (Himanshu Madhani) [1728845]
+- [md] dm snapshot: rework COW throttling to fix deadlock (Mike Snitzer) [1758605]
+- [md] dm snapshot: introduce account_start_copy() and account_end_copy() (Mike Snitzer) [1758605]
+- [netdrv] ice: Bump version (Jonathan Toppins) [1721711]
+- [netdrv] ice: Enable DDP package download (Jonathan Toppins) [1721711]
+- [netdrv] ice: Initialize DDP package structures (Jonathan Toppins) [1721711]
+- [netdrv] ice: Implement Dynamic Device Personalization (DDP) download (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix FW version formatting in dmesg (Jonathan Toppins) [1721711]
+- [netdrv] ice: send driver version to firmware (Jonathan Toppins) [1721711]
+- [netdrv] ice: Rework around device/function capabilities (Jonathan Toppins) [1721711]
+- [netdrv] ice: change default number of receive descriptors (Jonathan Toppins) [1721711]
+- [netdrv] ice: Minor refactor in queue management (Jonathan Toppins) [1721711]
+- [netdrv] ice: Allow for delayed LLDP MIB change registration (Jonathan Toppins) [1721711]
+- [netdrv] ice: update Tx context struct (Jonathan Toppins) [1721711]
+- [netdrv] ice: Report VF link status with opcode to get resources (Jonathan Toppins) [1721711]
+- [netdrv] ice: Check for DCB capability before initializing DCB (Jonathan Toppins) [1721711]
+- [netdrv] ice: report link down for VF when PF's queues are not enabled (Jonathan Toppins) [1721711]
+- [netdrv] ice: Reliably reset VFs (Jonathan Toppins) [1721711]
+- [netdrv] ice: change work limit to a constant (Jonathan Toppins) [1721711]
+- [netdrv] ice: small efficiency fixes (Jonathan Toppins) [1721711]
+- [netdrv] ice: move code closer together (Jonathan Toppins) [1721711]
+- [netdrv] ice: clean up arguments (Jonathan Toppins) [1721711]
+- [netdrv] ice: Check root pointer for validity (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add ice_get_main_vsi to get PF/main VSI (Jonathan Toppins) [1721711]
+- [netdrv] ice: Update fields in ice_vsi_set_num_qs when reconfiguring (Jonathan Toppins) [1721711]
+- [netdrv] ice: Only disable VLAN pruning for the VF when all VLANs are removed (Jonathan Toppins) [1721711]
+- [netdrv] ice: Remove enable DCB when SW LLDP is activated (Jonathan Toppins) [1721711]
+- [netdrv] ice: Report stats when VSI is down (Jonathan Toppins) [1721711]
+- [netdrv] ice: Always notify FW of VF reset (Jonathan Toppins) [1721711]
+- [netdrv] ice: Correctly handle return values for init DCB (Jonathan Toppins) [1721711]
+- [netdrv] ice: Limit Max TCs on devices with more than 4 ports (Jonathan Toppins) [1721711]
+- [netdrv] ice: Cleanup defines in ice_type.h (Jonathan Toppins) [1721711]
+- [netdrv] ice: print extra message if topology issue (Jonathan Toppins) [1721711]
+- [netdrv] ice: add print of autoneg state to link message (Jonathan Toppins) [1721711]
+- [netdrv] ice: update driver unloading field for Queue Shutdown AQ command (Jonathan Toppins) [1721711]
+- [netdrv] ice: add needed PFR during driver unload (Jonathan Toppins) [1721711]
+- [netdrv] ice: Deduce TSA value from the priority value in the CEE mode (Jonathan Toppins) [1721711]
+- [netdrv] ice: Report what the user set for coalesce [tx|rx]-usecs (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix resource leak in ice_remove_rule_internal() (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix EMP reset handling (Jonathan Toppins) [1721711]
+- [netdrv] ice: fix adminq calls during remove (Jonathan Toppins) [1721711]
+- [netdrv] ice: Rework ice_ena_msix_range (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix VF configuration issues due to reset (Jonathan Toppins) [1721711]
+- [netdrv] ice: Alloc queue management bitmaps and arrays dynamically (Jonathan Toppins) [1721711]
+- [netdrv] ice: add support for virtchnl_queue_select.[tx|rx]_queues bitmap (Jonathan Toppins) [1721711]
+- [netdrv] ice: add support for enabling/disabling single queues (Jonathan Toppins) [1721711]
+- [netdrv] ice: fix potential infinite loop (Jonathan Toppins) [1721711]
+- [netdrv] ice: fix ice_is_tc_ena (Jonathan Toppins) [1721711]
+- [netdrv] ice: add validation in OP_CONFIG_VSI_QUEUES VF message (Jonathan Toppins) [1721711]
+- [netdrv] ice: Don't clog kernel debug log with VF MDD events errors (Jonathan Toppins) [1721711]
+- [netdrv] ice: Introduce a local variable for a VSI in the rebuild path (Jonathan Toppins) [1721711]
+- [netdrv] ice: shorten local and add debug prints (Jonathan Toppins) [1721711]
+- [netdrv] ice: Sanitize ice_ena_vsi and ice_dis_vsi (Jonathan Toppins) [1721711]
+- [netdrv] ice: added sibling head to parse nodes (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix ethtool port and PFC stats for 4x25G cards (Jonathan Toppins) [1721711]
+- [netdrv] ice: Don't allow VSI to remove unassociated ucast filter (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix issues updating VSI MAC filters (Jonathan Toppins) [1721711]
+- [netdrv] ice: update ethtool stats on-demand (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add input handlers for virtual channel handlers (Jonathan Toppins) [1721711]
+- [netdrv] ice: Don't clear auto_fec bit in ice_cfg_phy_fec() (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix flag used for module query (Jonathan Toppins) [1721711]
+- [netdrv] ice: silence some bogus error messages (Jonathan Toppins) [1721711]
+- [netdrv] ice: Rename ethtool private flag for lldp (Jonathan Toppins) [1721711]
+- [netdrv] ice: reject VF attempts to enable head writeback (Jonathan Toppins) [1721711]
+- [netdrv] ice: Copy dcbx configuration only if mode is correct (Jonathan Toppins) [1721711]
+- [netdrv] ice: Treat DCBx state NOT_STARTED as valid (Jonathan Toppins) [1721711]
+- [netdrv] ice: Don't call synchronize_irq() for VF's from the host (Jonathan Toppins) [1721711]
+- [netdrv] ice: Account for all states of FW DCBx and LLDP (Jonathan Toppins) [1721711]
+- [netdrv] ice: Allow egress control packets from PF_VSI (Jonathan Toppins) [1721711]
+- [netdrv] ice: improve print for VF's when adding/deleting MAC filters (Jonathan Toppins) [1721711]
+- [netdrv] ice: Change type for queue counts (Jonathan Toppins) [1721711]
+- [netdrv] ice: Move VF resources definition to SR-IOV specific file (Jonathan Toppins) [1721711]
+- [netdrv] ice: Increase size of Mailbox receive queue for many VFs (Jonathan Toppins) [1721711]
+- [netdrv] ice: Reduce wait times during VF bringup/reset (Jonathan Toppins) [1721711]
+- [netdrv] ice: update GLINT_DYN_CTL and GLINT_VECT2FUNC register access (Jonathan Toppins) [1721711]
+- [netdrv] ice: Do not always bring up PF VSI in ice_ena_vsi() (Jonathan Toppins) [1721711]
+- [netdrv] ice: allow empty Rx descriptors (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix kernel hang with DCB reset in CEE mode (Jonathan Toppins) [1721711]
+- [netdrv] ice: Set WB_ON_ITR when we don't re-enable interrupts (Jonathan Toppins) [1721711]
+- [netdrv] ice: fix set pause param autoneg check (Jonathan Toppins) [1721711]
+- [netdrv] ice: Restructure VFs initialization flows (Jonathan Toppins) [1721711]
+- [netdrv] ice: Assume that more than one Rx queue is rare in ice_napi_poll (Jonathan Toppins) [1721711]
+- [netdrv] ice: Use the software based tail when checking for hung Tx ring (Jonathan Toppins) [1721711]
+- [netdrv] ice: Bump version number (Jonathan Toppins) [1721711]
+- [netdrv] ice: Remove flag to track VF interrupt status (Jonathan Toppins) [1721711]
+- [netdrv] ice: Remove unnecessary flag ICE_FLAG_MSIX_ENA (Jonathan Toppins) [1721711]
+- [netdrv] ice: Don't return error for disabling LAN Tx queue that does exist (Jonathan Toppins) [1721711]
+- [netdrv] ice: Remove duplicate code in ice_alloc_rx_bufs (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add stats for Rx drops at the port level (Jonathan Toppins) [1721711]
+- [netdrv] ice: Update number of VF queue before setting VSI resources (Jonathan Toppins) [1721711]
+- [netdrv] ice: Set up Tx scheduling tree based on alloc VSI Tx queues (Jonathan Toppins) [1721711]
+- [netdrv] ice: Only bump Rx tail and release buffers once per napi_poll (Jonathan Toppins) [1721711]
+- [netdrv] ice: Disable VFs until reset is completed (Jonathan Toppins) [1721711]
+- [netdrv] ice: Do not configure port with no media (Jonathan Toppins) [1721711]
+- [netdrv] ice: separate out control queue lock creation (Jonathan Toppins) [1721711]
+- [netdrv] ice: Always set prefena when configuring an Rx queue (Jonathan Toppins) [1721711]
+- [netdrv] ice: Move vector base setup to PF VSI (Jonathan Toppins) [1721711]
+- [netdrv] ice: track hardware stat registers past rollover (Jonathan Toppins) [1721711]
+- [netdrv] ice: add lp_advertising flow control support (Jonathan Toppins) [1721711]
+- [netdrv] ice: Use struct_size() helper (Jonathan Toppins) [1721711]
+- [netdrv] ice: Use LLDP ethertype define ETH_P_LLDP (Jonathan Toppins) [1721711]
+- [netdrv] ice: Trivial cosmetic changes (Jonathan Toppins) [1721711]
+- [netdrv] ice: Recognize higher speeds (Jonathan Toppins) [1721711]
+- [netdrv] ice: Use a different ICE_DBG bit for firmware log messages (Jonathan Toppins) [1721711]
+- [netdrv] ice: Update function header (Jonathan Toppins) [1721711]
+- [netdrv] ice: Move define for ICE_AQC_DRIVER_UNLOADING (Jonathan Toppins) [1721711]
+- [netdrv] ice: Align to updated AQ command formats (Jonathan Toppins) [1721711]
+- [netdrv] ice: Use continue instead of an else block (Jonathan Toppins) [1721711]
+- [netdrv] ice: Change minimum descriptor count value for Tx/Rx rings (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add switch rules to handle LLDP packets (Jonathan Toppins) [1721711]
+- [netdrv] ice: Cleanup ice_update_link_info (Jonathan Toppins) [1721711]
+- [netdrv] ice: Use right type for ice_cfg_vsi_lan return (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add support for Forward Error Correction (FEC) (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add support for virtchnl_vector_map.[rxq|txq]_map (Jonathan Toppins) [1721711]
+- [netdrv] ice: Introduce ice_init_mac_fltr and move ice_napi_del (Jonathan Toppins) [1721711]
+- [netdrv] ice: Use GLINT_DYN_CTL to disable VF's interrupts (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add a helper to trigger software interrupt (Jonathan Toppins) [1721711]
+- [netdrv] ice: Configure RSS LUT key only if RSS is enabled (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add ice_get_fw_log_cfg to init FW logging (Jonathan Toppins) [1721711]
+- [netdrv] ice: Minor cleanup in ice_switch.h (Jonathan Toppins) [1721711]
+- [netdrv] ice: Remove redundant and premature event config (Jonathan Toppins) [1721711]
+- [netdrv] ice: Change message level (Jonathan Toppins) [1721711]
+- [netdrv] ice: Check all VFs for MDD activity, don't disable (Jonathan Toppins) [1721711]
+- [netdrv] ice: Refactor interrupt tracking (Jonathan Toppins) [1721711]
+- [netdrv] ice: Add handler for ethtool selftest (Jonathan Toppins) [1721711]
+- [netdrv] ice: Don't call ice_cfg_itr() for SR-IOV (Jonathan Toppins) [1721711]
+- [netdrv] ice: Set minimum default Rx descriptor count to 512 (Jonathan Toppins) [1721711]
+- [netdrv] ice: Resolve static analysis warning (Jonathan Toppins) [1721711]
+- [netdrv] ice: Implement toggling ethtool rx-vlan-filter (Jonathan Toppins) [1721711]
+- [netdrv] ice: Remove direct write for GLLAN_RCTL_0 (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix LINE_SPACING style issue (Jonathan Toppins) [1721711]
+- [netdrv] ice: Silence semantic parser warnings (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix couple of issues in ice_vsi_release (Jonathan Toppins) [1721711]
+- [netdrv] ice: Reorganize ice_vf struct (Jonathan Toppins) [1721711]
+- [netdrv] ice: Use bitfields when possible (Jonathan Toppins) [1721711]
+- [netdrv] ice: Reorganize tx_buf and ring structs (Jonathan Toppins) [1721711]
+- [netdrv] ice: Format ethtool reported stats (Jonathan Toppins) [1721711]
+- [netdrv] ice: Gracefully handle reset failure in ice_alloc_vfs() (Jonathan Toppins) [1721711]
+- [netdrv] ice: Refactor the LLDP MIB change event handling (Jonathan Toppins) [1721711]
+- [netdrv] ice: Advertise supported link modes if none requested (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix hang when ethtool disables FW LLDP (Jonathan Toppins) [1721711]
+- [netdrv] ice: Call out dev/func caps when printing (Jonathan Toppins) [1721711]
+- [netdrv] ice: Remove braces for single statement blocks (Jonathan Toppins) [1721711]
+- [netdrv] ice: Cleanup an unnecessary variable initialization (Jonathan Toppins) [1721711]
+- [netdrv] ice: Implement LLDP persistence (Jonathan Toppins) [1721711]
+- [netdrv] ice: Fix double spacing (Jonathan Toppins) [1721711]
+- [kernel] sched/debug: Fix potential deadlock when writing to sched_features (Vladis Dronov) [1760060]
+- [kernel] sched/debug: Use match_string() helper instead of open-coded logic (Vladis Dronov) [1760060]
+- [hid] HID: intel-ish-hid: ipc: add EHL device id (Tony Camuso) [1716756]
+- [hid] HID: remove NO_D3 flag when remove driver (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: fix wrong driver_data usage (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Fix a use after free in load_fw_from_host() (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Replace GPLv2 boilerplate/reference with SPDX - rule 288 (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Add SPDX license identifier - Makefile/Kconfig (Tony Camuso) [1716756]
+- [platform] platform/chrome: Add ChromeOS EC ISHTP driver (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: prefix header search paths with $(srctree)/ (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Add Comet Lake PCI device ID (Tony Camuso) [1716756]
+- [platform] platform/chrome: cros_ec: Add EC host command support using rpmsg (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: fix spelling mistake "multipe" -> "multiple" (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: ISH firmware loader client driver (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Add interface function for PCI device pointer (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Use the new interface functions in HID ish client (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Move functions related to bus and device (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Add interface functions for struct ishtp_cl (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Move the common functions from client.h (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Store ishtp_cl_device instance in device (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Move driver registry functions (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Simplify ishtp_cl_link() (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Hide members of struct ishtp_cl_device (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Add match callback to ishtp bus type (Tony Camuso) [1716756]
+- [hid] HID: intel-ish: enable raw interface to HID devices on ISH (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Use VID/PID from ISH (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: Switch to use new generic UUID API (Tony Camuso) [1716756]
+- [hid] HID: intel-ish: ipc: handle PIMR before ish_wakeup also clear PISR busy_clear bit (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: use helper function to search client id (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: ishtp: add helper function for client search (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: use helper function to access client buffer (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: ishtp: add helper functions for client buffer operation (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: use helper function for private driver data set/get (Tony Camuso) [1716756]
+- [hid] HID: intel-ish-hid: ishtp: add helper function for driver data get/set (Tony Camuso) [1716756]
+- [platform] platform/chrome: Move cros-ec transport drivers to drivers/platform. (Tony Camuso) [1716756]
+- [tools] tools: PCI: Fix compiler warning in pcitest (Myron Stowe) [1753749]
+- [iommu] iommu: Fix integer truncation (Myron Stowe) [1753749]
+- [pci] PCI/P2PDMA: Ignore root complex whitelist when an IOMMU is present (Myron Stowe) [1753749]
+- [pci] PCI: Cleanup setup-bus.c comments and whitespace (Myron Stowe) [1753749]
+- [include] CPER: Remove unnecessary use of user-space types (Myron Stowe) [1753749]
+- [include] CPER: Add UEFI spec references (Myron Stowe) [1753749]
+- [pci] PCI: Fix comment typos (Myron Stowe) [1753749]
+- [pci] PCI: Cleanup register definition width and whitespace (Myron Stowe) [1753749]
+- [pci] PCI: pciehp: Remove pointless MY_NAME definition (Myron Stowe) [1753749]
+- [pci] PCI: pciehp: Remove pointless PCIE_MODULE_NAME definition (Myron Stowe) [1753749]
+- [pci] PCI: pciehp: Remove unused dbg/err/info/warn() wrappers (Myron Stowe) [1753749]
+- [pci] PCI: pciehp: Log messages with pci_dev, not pcie_device (Myron Stowe) [1753749]
+- [pci] PCI: pciehp: Replace pciehp_debug module param with dyndbg (Myron Stowe) [1753749]
+- [pci] PCI: pciehp: Remove pciehp_debug uses (Myron Stowe) [1753749]
+- [pci] PCI/AER: Log messages with pci_dev, not pcie_device (Myron Stowe) [1753749]
+- [pci] PCI/DPC: Log messages with pci_dev, not pcie_device (Myron Stowe) [1753749]
+- [pci] PCI/PME: Replace dev_printk(KERN_DEBUG) with dev_info() (Myron Stowe) [1753749]
+- [pci] PCI/AER: Replace dev_printk(KERN_DEBUG) with dev_info() (Myron Stowe) [1753749]
+- [pci] PCI: Replace dev_printk(KERN_DEBUG) with dev_info(), etc (Myron Stowe) [1753749]
+- [pci] PCI: Replace printk(KERN_INFO) with pr_info(), etc (Myron Stowe) [1753749]
+- [pci] PCI: Use dev_printk() when possible (Myron Stowe) [1753749]
+- [iommu] iommu/dma: Reserve IOVA for PCIe inaccessible DMA address (Myron Stowe) [1753749]
+- [pci] PCI: Add dma_ranges window list (Myron Stowe) [1753749]
+- [pci] PCI: endpoint: Fix a potential NULL pointer dereference (Myron Stowe) [1753749]
+- [tools] tools: PCI: Handle pcitest.sh independently from pcitest (Myron Stowe) [1753749]
+- [tools] tools: PCI: Add 'h' in optstring of getopt() (Myron Stowe) [1753749]
+- [tools] tools: PCI: Change pcitest compiling process (Myron Stowe) [1753749]
+- [tools] tools: PCI: Fix compilation warnings (Myron Stowe) [1753749]
+- [tools] tools: PCI: Exit with error code when test fails (Myron Stowe) [1753749]
+- [pci] PCI: Mark Atheros AR9462 to avoid bus reset (Myron Stowe) [1753749]
+- [pci] switchtec: Fix unintended mask of MRPC event (Myron Stowe) [1753749]
+- [pci] switchtec: Increase PFF limit from 48 to 255 (Myron Stowe) [1753749]
+- [pci] PCI/LINK: Disable bandwidth notification interrupt during suspend (Myron Stowe) [1753749]
+- [pci] PCI/P2PDMA: Allow P2P DMA between any devices under AMD ZEN Root Complex (Myron Stowe) [1753749]
+- [maintainers] MAINTAINERS: Add Karthikeyan Mitran and Hou Zhiqiang for Mobiveil PCI (Myron Stowe) [1753749]
+- [platform] platform/chrome: chromeos_laptop: use pci_dev_id() helper (Myron Stowe) [1753749]
+- [iommu] iommu/amd: Use pci_dev_id() helper (Myron Stowe) [1753749]
+- [drm] drm/amdkfd: Use pci_dev_id() helper (Myron Stowe) [1753749]
+- [powerpc] powerpc/powernv/npu: Use pci_dev_id() helper (Myron Stowe) [1753749]
+- [x86] x86/PCI: Fix PCI IRQ routing table memory leak (Myron Stowe) [1753749]
+- [pci] PCI: Remove unused pci_request_region_exclusive() (Myron Stowe) [1753749]
+- [pci] PCI: Mark expected switch fall-throughs (Myron Stowe) [1753749]
+- [pci] PCI/ACPI: Remove the need for 'struct hotplug_params' (Myron Stowe) [1753749]
+- [pci] PCI/ACPI: Do not export pci_get_hp_params() (Myron Stowe) [1753749]
+- [pci] PCI: rpaphp: Get/put device node reference during slot alloc/dealloc (Myron Stowe) [1753749]
+- [pci] PCI: rpadlpar: Fix leaked device_node references in add/remove paths (Myron Stowe) [1753749]
+- [pci] PCI: Assign bus numbers present in EA capability for bridges (Myron Stowe) [1753749]
+- [pci] PCI: OF: Support "external-facing" property (Myron Stowe) [1753749]
+- [documentation] dt-bindings: Add "external-facing" PCIe port property (Myron Stowe) [1753749]
+- [pci] PCI: Init PCIe feature bits for managed host bridge alloc (Myron Stowe) [1753749]
+- [pci] PCI/AER: Change pci_aer_init() stub to return void (Myron Stowe) [1753749]
+- [s390] s390/zcrypt: CEX7S exploitation support (Philipp Rudo) [1726416]
+- [s390] s390/pkey: Add sysfs attributes to emit AES CIPHER key blobs (Philipp Rudo) [1726416]
+- [s390] s390/crypto: Support for SHA3 via CPACF (MSA6) (Philipp Rudo) [1726416]
+- [s390] s390/crypto: xts-aes-s390 fix extra run-time crypto self tests finding (Philipp Rudo) [1726416]
+- [s390] s390: vfio-ap: fix warning reset not completed (Philipp Rudo) [1726416]
+- [s390] crypto: s390 - Rename functions to avoid conflict with crypto/sha256.h (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: fix wrong handling of cca cipher keygenflags (Philipp Rudo) [1726416]
+- [s390] crypto: s390/xts-aes - invoke fallback for ciphertext stealing (Philipp Rudo) [1726416]
+- [s390] s390/paes: Prepare paes functions for large key blobs (Philipp Rudo) [1726416]
+- [s390] s390/pkey: add CCA AES cipher key support (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: Add low level functions for CCA AES cipher keys (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: extend cca_findcard function and helper (Philipp Rudo) [1726416]
+- [s390] s390/pkey: pkey cleanup: narrow in-kernel API, fix some variable types (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: adjust switch fall through comments for -Wimplicit-fallthrough (Philipp Rudo) [1726416]
+- [s390] crypto: s390/aes - fix name clash after AES library refactor (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: new sysfs attributes serialnr and mkvps (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: add base code for cca crypto card info support (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: move cca misc functions to new code file (Philipp Rudo) [1726416]
+- [s390] s390: use __u{16, 32, 64} instead of uint{16, 32, 64}_t in uapi header (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: remove the exporting of ap_query_configuration (Philipp Rudo) [1726416]
+- [s390] s390/crypto: sha: Use -ENODEV instead of -EOPNOTSUPP (Philipp Rudo) [1726416]
+- [s390] s390/crypto: prng: Use -ENODEV instead of -EOPNOTSUPP (Philipp Rudo) [1726416]
+- [s390] s390/crypto: ghash: Use -ENODEV instead of -EOPNOTSUPP (Philipp Rudo) [1726416]
+- [s390] s390/pkey: Use -ENODEV instead of -EOPNOTSUPP (Philipp Rudo) [1726416]
+- [s390] s390/zcrypt: support special flagged EP11 cprbs (Philipp Rudo) [1726416]
+- [s390] s390/crypto: fix possible sleep during spinlock aquired (Philipp Rudo) [1726416]
+- [s390] s390/crypto: use TRNG for seeding/reseeding (Philipp Rudo) [1726416]
+- [s390] s390/crypto: rework generate_entropy function for pseudo random dd (Philipp Rudo) [1726416]
+- [s390] s390: zcrypt: initialize variables before_use (Philipp Rudo) [1726416]
+- [powerpc] powerpc/pseries: Track LMB nid instead of using device tree (Steve Best) [1758742]
+- [powerpc] powerpc/pseries/memory-hotplug: Only update DT once per memory DLPAR request (Steve Best) [1758742]
+- [net] hv_sock: Fix hang when a connection is closed (Cathy Avery) [1739477]
+- [net] hv_sock: Use consistent types for UUIDs (Cathy Avery) [1739477]
+- [net] hvsock: fix epollout hang from race condition (Cathy Avery) [1739477]
+- [net] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 288 (Cathy Avery) [1739477]
+- [net] hv_sock: perf: loop in send() to maximize bandwidth (Cathy Avery) [1739477]
+- [net] hv_sock: perf: Allow the socket buffer size options to influence the actual socket buffers (Cathy Avery) [1739477]
+- [net] hv_sock: Add support for delayed close (Cathy Avery) [1739477]
+- [powerpc] powerpc/rtas: allow rescheduling while changing cpu states (Steve Best) [1758651]
+- [powerpc] powerpc/pseries/mobility: use cond_resched when updating device tree (Steve Best) [1758651]
+- [tools] selftests/powerpc: Fix compile error on tlbie_test due to newer gcc (Desnes Augusto Nunes do Rosario) [1755707]
+- [tools] selftests/powerpc: Add test case for tlbie vs mtpidr ordering issue (Desnes Augusto Nunes do Rosario) [1755707]
+- [powerpc] powerpc/mm: Fixup tlbie vs mtpidr/mtlpidr ordering issue on POWER9 (Desnes Augusto Nunes do Rosario) [1755707]
+- [powerpc] powerpc/book3s64/radix: Rename CPU_FTR_P9_TLBIE_BUG feature flag (Desnes Augusto Nunes do Rosario) [1755707]
+- [powerpc] powerpc/book3s64/mm: Don't do tlbie fixup for some hardware revisions (Desnes Augusto Nunes do Rosario) [1755707]
+- [scsi] scsi: zfcp: make DIX experimental, disabled, and independent of DIF (Philipp Rudo) [1723829]
+- [s390] s390: add support for IBM z15 machines (Philipp Rudo) [1757015]
+- [s390] s390/pci: add mio_enabled attribute (Philipp Rudo) [1757118]
+- [s390] s390: fix setting of mio addressing control (Philipp Rudo) [1757118]
+- [s390] s390/pci: correctly handle MIO opt-out (Philipp Rudo) [1757118]
+- [s390] s390/pci: deal with devices that have no support for MIO instructions (Philipp Rudo) [1757118]
+- [s390] s390/pci: fix assignment of bus resources (Philipp Rudo) [1757118]
+- [s390] s390/pci: fix struct definition for set PCI function (Philipp Rudo) [1757118]
+- [s390] s390/pci: fix MSI message data (Philipp Rudo) [1757123]
+- [powerpc] powerpc/tm: Add tm-poison test (Steve Best) [1756721]
+- [powerpc] powerpc/powernv: Add new opal message type (Desnes Augusto Nunes do Rosario) [1706975]
+- [powerpc] powerpc/powernv: Enhance opal message read interface (Desnes Augusto Nunes do Rosario) [1706975]
+- [char] hwrng: core - don't wait on add_early_randomness() (Laurent Vivier) [1660802]
+- [firmware] efi: Export Runtime Configuration Interface table to sysfs (Al Stone) [1665518]
+- [nvme] nvme: Treat discovery subsystems as unique subsystems (Ewan Milne) [1757525]
+- [powerpc] powerpc/powernv/opal: Use standard interrupts property when available (Steve Best) [1757173]
+- [powerpc] powerpc: dump kernel log before carrying out fadump or kdump (Steve Best) [1756922]
+- [kernel] genirq/affinity: Create affinity mask for single vector (Ming Lei) [1733420]
+- [virt] kvm: arm/arm64: Only skip MMIO insn once (Andrew Jones) [1733928]
+- [vfio] type1: remove duplicate retrieval of reserved regions (Auger Eric) [1704597]
+- [vfio] type1: Add IOVA range capability support (Auger Eric) [1704597]
+- [vfio] type1: check dma map request is within a valid iova range (Auger Eric) [1704597]
+- [vfio] type1: Update iova list on detach (Auger Eric) [1704597]
+- [vfio] type1: Check reserved region conflict and update iova list (Auger Eric) [1704597]
+- [vfio] type1: Introduce iova list and add iommu aperture validity check (Auger Eric) [1704597]
+- [iommu] Revisit iommu_insert_resv_region() implementation (Auger Eric) [1704597]
+- [iommu] vt-d: Differentiate relaxable and non relaxable RMRRs (Auger Eric) [1704597]
+- [iommu] Introduce IOMMU_RESV_DIRECT_RELAXABLE reserved memory regions (Auger Eric) [1704597]
+- [iommu] vt-d: Handle PCI bridge RMRR device scopes in intel_iommu_get_resv_regions (Auger Eric) [1704597]
+- [iommu] vt-d: Handle RMRR with PCI bridge device scopes (Auger Eric) [1704597]
+- [iommu] vt-d: Introduce is_downstream_to_pci_bridge helper (Auger Eric) [1704597]
+- [iommu] vt-d: Duplicate iommu_resv_region objects per device list (Auger Eric) [1704597]
+- [iommu] Fix a leak in iommu_insert_resv_region (Auger Eric) [1704597]
+- [pci] hv: Avoid use of hv_pci_dev->pci_slot after freeing it (Mohammed Gamal) [1737569]
+
+* Thu Oct 17 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.8.el8]
+- [x86] kvm: x86: omit "impossible" pmu MSRs from MSR list (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Fix consistency check on injected exception error code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: omit absent pmu MSRs from MSR list (Vitaly Kuznetsov) [1749495]
+- [tools] selftests: kvm: Fix libkvm build error (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Limit guest PMCs to those supported on the host (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: x86, powerpc: do not allow clearing largepages debugfs entry (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: x86: clarify what is reported on KVM_GET_MSRS failure (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Set VMENTER_L1D_FLUSH_NOT_REQUIRED if !X86_BUG_L1TF (Vitaly Kuznetsov) [1749495]
+- [tools] selftests: kvm: add test for dirty logging inside nested guests (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: fix nested guest live migration with PML (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: assign two bits to track SPTE kinds (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Expose XSAVEERPTR to the guest (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Enumerate support for CLZERO instruction (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Use AMD CPUID semantics for AMD vCPUs (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Improve emulation of CPUID leaves 0BH and 1FH (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Fix userspace set invalid CR4 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Fix a spurious -E2BIG in __do_cpuid_func (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Loosen filter for adaptive tuning of lapic_timer_advance_ns (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: cleanup and fix host 64-bit mode checks (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: fix build warnings in hv_enable_direct_tlbflush() on i386 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Don't check kvm_rebooting in __kvm_handle_fault_on_reboot() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Drop ____kvm_handle_fault_on_reboot() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Add error handling to VMREAD helper (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Optimize VMX instruction error and fault handling (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Check kvm_rebooting in kvm_spurious_fault() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: limit atomic switch MSRs (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: Intercept RDPRU (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add "significant index" flag to a few CPUID leaves (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: Skip invalid pages during zapping iff root_count is zero (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: Explicitly track only a single invalid mmu generation (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: revert "kvm: x86/mmu: Remove is_obsolete() call" (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: revert "revert "kvm: mmu: reclaim the zapped-obsolete page first"" (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: revert "revert "kvm: mmu: collapse TLB flushes when zap all pages"" (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: revert "revert "kvm: mmu: zap pages in batch"" (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: revert "revert "kvm: mmu: add tracepoint for kvm_mmu_invalidate_all_pages"" (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: revert "revert "kvm: mmu: show mmu_valid_gen in shadow page related tracepoints"" (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: Use fast invalidate mechanism to zap MMIO sptes (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: Treat invalid shadow pages as obsolete (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Tune lapic_timer_advance_ns smoothly (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add comments to document various emulation types (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Handle single-step #DB for EMULTYPE_SKIP on EPT misconfig (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Remove emulation_result enums, EMULATE_{DONE, FAIL, USER_EXIT} (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Remove EMULATE_FAIL handling in handle_invalid_guest_state() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Move triple fault request into RM int injection (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Handle emulation failure directly in kvm_task_switch() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Exit to userspace on emulation skip failure (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Move #UD injection for failed emulation into emulation code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add explicit flag for forced emulation on #UD (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Move #GP injection for VMware into x86_emulate_instruction() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Don't attempt VMWare emulation on #GP with non-zero error code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Refactor kvm_vcpu_do_singlestep() to remove out param (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Clean up handle_emulation_failure() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Relocate MMIO exit stats counting (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Check Host Address Space Size on vmentry of nested guests (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: hyperv_cpuid: add check for NoNonArchitecturalCoreSharing bit (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: hyper-v: set NoNonArchitecturalCoreSharing CPUID bit when SMT is impossible (Vitaly Kuznetsov) [1749495]
+- [kernel] cpu/smt: create and export cpu_smt_possible() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: hyperv: Fix Direct Synthetic timers assert an interrupt w/o lapic_in_kernel (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Manually flush collapsible SPTEs only when toggling flags (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: Remove duplicate guest mode handling (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: Introduce VM_MODE_PXXV48_4K (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: Create VM earlier for dirty log test (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: Move vm type into _vm_create() internally (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: announce KVM_CAP_HYPERV_ENLIGHTENED_VMCS support only when it is available (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: svm: remove unneeded nested_enable_evmcs() hook (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/hyper-v/vmx: Add direct tlb flush support (Vitaly Kuznetsov) [1749495]
+- [documentation] kvm/hyper-v: Add new KVM capability KVM_CAP_HYPERV_DIRECT_TLBFLUSH (Vitaly Kuznetsov) [1749495]
+- [x86] hyper-v: Fix definition of struct hv_vp_assist_page (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add Intel PMU MSRs to msrs_to_save[] (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Use IPI shorthands in kvm guest when support (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Fix INIT signal handling in various CPU states (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Introduce exit reason for receiving INIT signal on guest-mode (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Stop the preemption timer during vCPU reset (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Micro optimize IPI latency (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: Nested KVM MMUs need PAE root too (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: set ctxt->have_exception in x86_decode_insn() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: always stop emulation on page fault (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: trace nested VM-Enter failures detected by H/W (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: add tracepoint for failed nested VM-Enter (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: Fix a check in nested_svm_vmrun() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Return to userspace with internal error on unexpected exit reason (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add kvm_emulate_{rd, wr}msr() to consolidate VXM/SVM code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Refactor up kvm_{g, s}et_msr() to simplify callers (Vitaly Kuznetsov) [1749495]
+- [documentation] doc: kvm: Fix return description of KVM_SET_MSRS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Tune PLE Window tracepoint (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Change ple_window type to unsigned int (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Remove tailing newline for tracepoints (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Trace vcpu_id for vmexit (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Manually calculate reserved bits when loading PDPTRS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Disable posted interrupts for non-standard IRQs delivery modes (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Fix and tweak the comments for VM-Enter (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: Assert that struct kvm_vcpu is always as offset zero (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add pv tlb shootdown tracepoint (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Unconditionally call x86 ops that are always implemented (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: Consolidate "is MMIO SPTE" code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: Add explicit access mask for MMIO SPTEs (Vitaly Kuznetsov) [1749495]
+- [documentation] kvm: x86: Rename access permissions cache member in struct kvm_vcpu_arch (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: eliminate hardcoded RIP advancement from vmrun_interception() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: eliminate weird goto from vmrun_interception() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: remove hardcoded instruction length from intercepts (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: add xsetbv to the emulator (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: clear interrupt shadow on EMULTYPE_SKIP (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: propagate errors from skip_emulated_instruction() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: don't pretend to advance RIP in case wrmsr_interception() results in #GP (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Fix x86_decode_insn() return when fetching insn bytes fails (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: use Intel speculation bugs and features as derived in generic x86 code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: always expose VIRT_SSBD to guests (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: fix reporting of AMD speculation bug CPUID leaf (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Call kvm_arch_vcpu_blocking early into the blocking sequence (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/mmu: Reintroduce fast invalidate/zap for flushing memslot (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: work around leak of uninitialized stack contents (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: handle page fault in vmread (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Don't update RIP or do single-step on faulting emulation (Vitaly Kuznetsov) [1749495]
+- [tools] selftests/kvm: make platform_info_test pass on AMD (Vitaly Kuznetsov) [1749495]
+- [x86] revert "kvm: x86/mmu: Zap only the relevant pages when removing a memslot" (Vitaly Kuznetsov) [1749495]
+- [tools] selftests: kvm: fix state save/load on processors without XSAVE (Vitaly Kuznetsov) [1749495]
+- [tools] selftests: kvm: fix vmx_set_nested_state_test (Vitaly Kuznetsov) [1749495]
+- [tools] selftests: kvm: provide common function to enable eVMCS (Vitaly Kuznetsov) [1749495]
+- [tools] selftests: kvm: do not try running the VM in vmx_set_nested_state_test (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: svm: remove redundant assignment of var new_entry (Vitaly Kuznetsov) [1749495]
+- [tools] selftests: kvm: Adding config fragments (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: Update gitignore file for latest changes (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: remove unnecessary PageReserved check (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: remove useless calls to kvm_para_available (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: no need to check return value of debugfs_create functions (Vitaly Kuznetsov) [1749495]
+- [s390] kvm: remove kvm_arch_has_vcpu_debugfs() (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Fix leak vCPU's VMCS value into other pCPU (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Check preempted_in_kernel for involuntary preemption (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Don't need to wakeup vCPU twice afer timer fire (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Boost queue head vCPU to mitigate lock waiter preemption (Vitaly Kuznetsov) [1749495]
+- [documentation] documentation: move Documentation/virtual to Documentation/virt (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add fixed counters to PMU filter (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: dump VMCS on failed entry (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/vpmu: refine kvm_pmu err msg when event creation failed (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Boost vCPUs that are delivering interrupts (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: Remove superfluous define from vmx.c (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: Fix detection of AMD Errata 1096 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Inject timer interrupt via posted interrupt (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: Don't call kvm_spurious_fault() from .fixup (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: Replace vmx_vmenter()'s call to kvm_spurious_fault() with UD2 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: Fix fastop function ELF metadata (Vitaly Kuznetsov) [1749495]
+- [x86] paravirt: Fix callee-saved function ELF sizes (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Make lapic timer unpinned (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/vpmu: reset pmc->counter to 0 for pmu fixed_counters (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Ignore segment base for VMX memory operand when segment not FS or GS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: ioapic and apic debug macros cleanup (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: some tsc debug cleanup (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: fix coccinelle warnings (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: avoid constant-conversion warning (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: avoid -Wsometimes-uninitized warning (Vitaly Kuznetsov) [1749495]
+- [documentation] documentation: virtual: Add toctree hooks (Vitaly Kuznetsov) [1749495]
+- [documentation] documentation: kvm: Convert cpuid.txt to .rst (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Unconditionally enable irqs in guest context (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: PMU Event Filter (Vitaly Kuznetsov) [1749495]
+- [kernel] kvm: x86: Fix -Wmissing-prototypes warnings (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Properly check if "page" is valid in kvm_vcpu_unmap (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Retry tune per-vCPU timer_advance_ns if adaptive tuning goes insane (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: write down valid APIC registers (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: ARBPRI is a reserved register for x2APIC (Vitaly Kuznetsov) [1749495]
+- [x86] kvm nvmx: Check Host Segment Registers and Descriptor Tables on vmentry of nested guests (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Stash L1's CR3 in vmcs01.GUEST_CR3 on nested entry w/o EPT (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: add tracepoints around __direct_map and FNAME(fetch) (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: change kvm_mmu_page_get_gfn BUG_ON to WARN_ON (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: remove now unneeded hugepage gfn adjustment (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: make FNAME(fetch) and __direct_map more similar (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Do not release the page inside mmu_set_spte() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: cpuid: remove has_leaf_count from struct kvm_cpuid_param (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: cpuid: rename do_cpuid_1_ent (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: cpuid: set struct kvm_cpuid_entry2 flags in do_cpuid_1_ent (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: cpuid: extract do_cpuid_7_mask and support multiple subleafs (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: cpuid: do_cpuid_ent works on a whole CPUID function (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: remove the trailing newline used in the fmt parameter of TP_printk (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: svm: add nrips module parameter (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: degrade WARN to pr_warn_ratelimited (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Pass through AMD_STIBP_ALWAYS_ON in GET_SUPPORTED_CPUID (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Remove unnecessary sync_roots from handle_invept (Vitaly Kuznetsov) [1749495]
+- [documentation] documentation: kvm: document CPUID bit for MSR_KVM_POLL_CONTROL (Vitaly Kuznetsov) [1749495]
+- [documentation] kvm: x86: Expose PV_SCHED_YIELD CPUID feature bit to guest (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Implement PV sched yield hypercall (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Yield to IPI target if necessary (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: list VMX MSRs in KVM_GET_MSR_INDEX_LIST (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: allow setting the VMFUNC controls MSR (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: include conditional controls in /dev/kvm KVM_GET_MSRS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Fix apic dangling pointer in vcpu (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: check CPUID before allowing read/write of IA32_XSS (Vitaly Kuznetsov) [1749495]
+- [tools] tests: kvm: Check for a kernel warning (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: tests: Sort tests in the Makefile alphabetically (Vitaly Kuznetsov) [1749495]
+- [documentation] kvm: fix typo in documentation (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: shadow pin based execution controls (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Leave preemption timer running when it's disabled (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Drop hv_timer_armed from 'struct loaded_vmcs' (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Preset *DT exiting in vmcs02 when emulating UMIP (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Preserve last USE_MSR_BITMAPS when preparing vmcs02 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Explicitly initialize controls shadow at VMCS allocation (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Don't reset VMCS controls shadow on VMCS switch (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Shadow VMCS controls on a per-VMCS basis (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Shadow VMCS secondary execution controls (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Shadow VMCS primary execution controls (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Shadow VMCS pin controls (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Add builder macros for shadowing controls (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Use adjusted pin controls for vmcs02 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Copy PDPTRs to/from vmcs12 only when necessary (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Don't update GUEST_BNDCFGS if it's clean in HV eVMCS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Update vmcs12 for MSR_IA32_DEBUGCTLMSR when it's written (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Update vmcs12 for SYSENTER MSRs when they're written (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Update vmcs12 for MSR_IA32_CR_PAT when it's written (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Don't speculatively write APIC-access page address (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Don't speculatively write virtual-APIC page address (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Don't dump VMCS if virtual APIC page can't be mapped (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Don't reread VMCS-agnostic state when switching VMCS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Don't "put" vCPU or host state when switching VMCS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: simplify vmx_prepare_switch_to_{guest, host} (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Don't rewrite GUEST_PML_INDEX during nested VM-Entry (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Write ENCLS-exiting bitmap once per vmcs02 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Always sync GUEST_BNDCFGS when it comes from vmcs01 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Always signal #GP on WRMSR to MSR_IA32_CR_PAT with bad value (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Rename prepare_vmcs02_*_full to prepare_vmcs02_*_rare (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Sync rarely accessed guest fields only when needed (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Add helpers to identify shadowed VMCS fields (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Use descriptive names for VMCS sync functions and flags (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Lift sync_vmcs12() out of prepare_vmcs12() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Track vmcs12 offsets for shadowed VMCS fields (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Intercept VMWRITEs to GUEST_{CS, SS}_AR_BYTES (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Intercept VMWRITEs to read-only shadow VMCS fields (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Handle NMIs, #MCs and async #PFs in common irqs-disabled fn (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Move kvm_{before, after}_interrupt() calls to vendor code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Store the host kernel's IDT base in a global variable (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Read cached VM-Exit reason to detect external interrupt (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: small cleanup in handle_exception (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Fix handling of #MC that occurs during VM-Entry (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: move MSR_IA32_POWER_CTL handling to common code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: offset is ensure to be in range (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: use same convention to name kvm_lapic_{set, clear}_vector() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: check kvm_apic_sw_enabled() is enough (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: add host poll control msrs (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: segment limit check: use access length (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: fix limit checking in get_vmx_mem_address() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add Intel CPUID.1F cpuid emulation support (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Use DR_TRAP_BITS instead of hard-coded 15 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: clean up conditions for asynchronous page fault handling (Vitaly Kuznetsov) [1749495]
+- [documentation] docs: amd-memory-encryption.rst get rid of warnings (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Convert kvm_lock to a mutex (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: remove unneeded 'asm volatile ("")' from vmcs_write64 (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: irqchip: Use struct_size() in kzalloc() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/vmx: drop bad asm() clobber from nested_vmx_check_vmentry_hw() (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: hide vcpu_setup in processor code (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Emulate MSR_IA32_MISC_ENABLE MWAIT bit (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Provide a capability to disable cstate msr read intercepts (Vitaly Kuznetsov) [1749495]
+- [documentation] kvm: documentation: Add disable pause exits to KVM_CAP_X86_DISABLE_EXITS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: refine kvm_get_arch_capabilities() (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Directly return result from kvm_arch_check_processor_compat() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Optimize timer latency further (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Delay trace_kvm_wait_lapic_expire tracepoint to after vmexit (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Extract adaptive tune timer advancement logic (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/nsvm: properly map nested VMCB (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Fix reserved bits related calculation errors caused by MKTME (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Move kvm_set_mmio_spte_mask() from x86.c to mmu.c (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: fix compile on s390 part 2 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: fix return value for reserved EFER (Vitaly Kuznetsov) [1749495]
+- [tools] kvm_stat: fix fields filter for child events (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: aarch64: compile with warnings on (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/pmu: do not mask the value that is written to fixed PMUs (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86/pmu: mask the result of rdpmc according to the width of the counters (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/pmu: Set AMD's virt PMU version to 1 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: do not spam dmesg with VMCS/VMCB dumps (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Check irqchip mode before assign irqfd (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: Remove duplicated TEST_ASSERT in hyperv_cpuid.c (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Expose per-vCPU timer_advance_ns to userspace (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Fix lapic_timer_advance_ns parameter overflow (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Fix -Wmissing-prototypes warnings (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Fix using __this_cpu_read() in preemptible context (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: fix compilation on s390 (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Include CPUID leaf 0x8000001e in kvm's supported CPUID (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Include multiple indices with CPUID leaf 0x8000001d (Vitaly Kuznetsov) [1749495]
+- [tools] kvm: selftests: Fix a condition in test_hv_cpuid() (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Fix spinlock taken warning during host resume (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: fix compilation on aarch64 (Vitaly Kuznetsov) [1749495]
+- [x86] revert "kvm: nvmx: Expose RDPMC-exiting only when guest supports PMU" (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Fix L1TF mitigation for shadow MMU (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Disable intercept for FS/GS base MSRs in vmcs02 when possible (Vitaly Kuznetsov) [1749495]
+- [tools] tests: kvm: Add tests to .gitignore (Vitaly Kuznetsov) [1749495]
+- [documentation] kvm: Introduce KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Fix kvm_clear_dirty_log_protect off-by-(minus-)one (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Fix the bitmap range to copy during clear dirty (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: use direct accessors for RIP and RSP (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Use accessors for GPRs outside of dedicated caching logic (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Omit caching logic for always-available GPRs (Vitaly Kuznetsov) [1749495]
+- [x86] kvm, x86: Properly check whether a pfn is an MMIO or not (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/nvmx: Use page_address_valid in a few more locations (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/nvmx: Use kvm_vcpu_map for accessing the enlightened VMCS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/nvmx: Use kvm_vcpu_map for accessing the shadow VMCS (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/nsvm: Use the new mapping API for mapping guest memory (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/x86: Use kvm_vcpu_map in emulator_cmpxchg_emulated (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/nvmx: Use kvm_vcpu_map when mapping the posted interrupt descriptor table (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/nvmx: Use kvm_vcpu_map when mapping the virtual APIC page (Vitaly Kuznetsov) [1749495]
+- [x86] kvm/nvmx: Use kvm_vcpu_map when mapping the L1 MSR bitmap (Vitaly Kuznetsov) [1749495]
+- [x86] nvmx: handle_vmptrld: Use kvm_vcpu_map when copying VMCS12 from guest memory (Vitaly Kuznetsov) [1749495]
+- [virt] kvm: Introduce a new guest mapping API (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: Handle PFNs outside of kernel reach when touching GPTEs (Vitaly Kuznetsov) [1749495]
+- [x86] nvmx: Update the PML table without mapping and unmapping the page (Vitaly Kuznetsov) [1749495]
+- [x86] nvmx: handle_vmon: Read 4 bytes from guest memory (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: Implement HWCR support (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Include architectural defs header in capabilities.h (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: clean up some debug output (Vitaly Kuznetsov) [1749495]
+- [virt] kvm_main: fix some comments (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Skip delta_tsc shift-and-divide if the dividend is zero (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Check for a pending timer intr prior to start_hv_timer() (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Refactor ->set_hv_timer to use an explicit expired param (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Explicitly cancel the hv timer if it's pre-expired (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: lapic: Busy wait for timer to expire when using hv_timer (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: Nop emulation of MSR_IA32_POWER_CTL (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Add support of clear Trace_ToPA_PMI status (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Inject PMI for KVM guest (Vitaly Kuznetsov) [1749495]
+- [documentation] revert "kvm: doc: Document the life cycle of a VM and its resources" (Vitaly Kuznetsov) [1749495]
+- [documentation] documentation: kvm: fix dirty log ioctl arch lists (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: Make steal_time visible (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Inject #GP if guest attempts to set unsupported EFER bits (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Skip EFER vs. guest CPUID checks for host-initiated writes (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Return -EINVAL when signaling failure in VM-Entry helpers (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Return -EINVAL when signaling failure in pre-VM-Entry helpers (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Rename and split top-level consistency checks to match SDM (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Move guest non-reg state checks to VM-Exit path (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Check "load IA32_PAT" VM-entry control on vmentry (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: nvmx: Check "load IA32_PAT" VM-exit control on vmentry (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: optimize check for valid PAT value (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: clear VM_EXIT_SAVE_IA32_PAT (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: vmx: print more APICv fields in dump_vmcs (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: Raise #GP when guest vCPU do not support PMU (Vitaly Kuznetsov) [1749495]
+- [documentation] kvm: doc: Document the life cycle of a VM and its resources (Vitaly Kuznetsov) [1749495]
+- [x86] kvm: x86: skip populating logical dest map if apic is not sw enabled (Bandan Das) [1728503]
+- [powerpc] kvm: ppc: book3s: Fix incorrect guest-to-user-translation error handling (David Gibson) [1749504]
+- [powerpc] kvm: Fall through switch case explicitly (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Fix CR0 setting in TM emulation (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Invalidate ERAT when flushing guest TLB entries (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Only write DAWR[X] when handling h_set_dawr in real mode (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: xive: Fix spelling mistake "acessing" -> "accessing" (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Make sure to load LPID for radix VCPUs (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Flush TLB on secondary radix threads (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Move HPT guest TLB flushing to C code (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Handle virtual mode in XIVE VCPU push code (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: smb->smp comment fixup (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s: Allocate guest TCEs on demand too (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Avoid lockdep debugging in TCE realmode handlers (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Fix lockdep warning when entering the guest (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Implement real mode H_PAGE_INIT handler (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s hv: Implement virtual mode H_PAGE_INIT handler (David Gibson) [1749504]
+- [powerpc] kvm: ppc: book3s: Protect memslots while validating user address (David Gibson) [1749504]
+- [pci] PCI: hv: Use bytes 4 and 5 from instance ID as the PCI domain numbers (Mohammed Gamal) [1671288]
+- [pci] PCI: hv: Detect and fix Hyper-V PCI domain number collision (Mohammed Gamal) [1671288]
+- [fs] Revert "lockd: Show pid of lockd for remote locks" (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix an Oops in nfs4_do_setattr (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Check the return value of update_open_stateid() (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix delegation state recovery (Benjamin Coddington) [1732409]
+- [fs] pnfs/flexfiles: Fix PTR_ERR() dereferences in ff_layout_track_ds_error (Benjamin Coddington) [1732409]
+- [fs] Revert "NFS: readdirplus optimization by cache mechanism" (memleak) (Benjamin Coddington) [1732409]
+- [fs] svcrdma: Ignore source port when computing DRC hash (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Use the correct TCP timeout for flexfiles I/O (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1: Fix bug only first CB_NOTIFY_LOCK is handled (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1: Again fix a race where CB_NOTIFY_LOCK fails to wake a waiter (Benjamin Coddington) [1732409]
+- [fs] SUNRPC fix regression in umount of a secure mount (Benjamin Coddington) [1732409]
+- [fs] NFS4: Fix v4.0 client state corruption when mount (Benjamin Coddington) [1732409]
+- [fs] NFSv4: When recovering state fails with EAGAIN, retry the same recovery (Benjamin Coddington) [1732409]
+- [fs] pnfs: Fix a problem where we gratuitously start doing I/O through the MDS (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Ensure the bvecs are reset when we re-encode the RPC request (Benjamin Coddington) [1732409]
+- [fs] sunrpc/cache: remove the exporting of cache_seq_next (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix a use after free when a server rejects the RPCSEC_GSS credential (Benjamin Coddington) [1732409]
+- [fs] xprtrdma: Fix an frwr_map recovery nit (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1 fix incorrect return value in copy_file_range (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix handling of reply page vector (Benjamin Coddington) [1732409]
+- [fs] NFS: Forbid setting AF_INET6 to "struct sockaddr_in"->sin_family. (Benjamin Coddington) [1732409]
+- [fs] nfsd: Don't release the callback slot unless it was actually held (Benjamin Coddington) [1732409]
+- [fs] nfsd/nfsd3_proc_readdir: fix buffer count and page pointers (Benjamin Coddington) [1732409]
+- [fs] sunrpc: don't mark uninitialised items as VALID. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: fix uninitialized variable warning (Benjamin Coddington) [1732409]
+- [fs] pNFS/flexfiles: Fix layoutstats handling during read failovers (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix a typo in nfs_init_timeout_values() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Don't let RPC_SOFTCONN tasks time out if the transport is connected (Benjamin Coddington) [1732409]
+- [fs] NFS: fix mount/umount race in nlmclnt. (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix nfs4_lock_state refcounting in nfs4_alloc_{lock, unlock}data() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove redundant check for the reply length in call_decode() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Handle the SYSTEM_ERR rpc error (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: rpc_decode_header() must always return a non-zero value on error (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Use the ENOTCONN error on socket disconnect (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix the minimal size for reply buffer allocation (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix a client regression when handling oversized replies (Benjamin Coddington) [1732409]
+- [fs] pNFS: Fix a typo in pnfs_update_layout (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Take the transport send lock before binding+connecting (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Micro-optimise when the task is known not to be sleeping (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Check whether the task was transmitted before rebind/reconnect (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove redundant calls to RPC_IS_QUEUED() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Clean up (Benjamin Coddington) [1732409]
+- [fs] nfsd: allow nfsv3 readdir request to be larger. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Respect RPC call timeouts when retrying transmission (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix up RPC back channel transmission (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Prevent thundering herd when the socket is not connected (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix wrong check in write_v4_end_grace() (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix memory corruption caused by readdir (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Allow dynamic allocation of back channel slots (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1: Bump the default callback session slot count to 16 (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Convert remaining GFP_NOIO, and GFP_NOWAIT sites in sunrpc (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Clean up mirror DS initialisation (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Remove dead code in ff_layout_mirror_valid() (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfile: Simplify nfs4_ff_layout_select_ds_stateid() (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfile: Simplify nfs4_ff_layout_ds_version() (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Simplify ff_layout_get_ds_cred() (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Simplify nfs4_ff_find_or_create_ds_client() (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Simplify nfs4_ff_layout_select_ds_fh() (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Speed up read failover when DSes are down (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Don't invalidate DS deviceids for being unresponsive (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Remove bogus checks for invalid deviceids (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Avoid unnecessary layout invalidations (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: refactor calls to fs4_ff_layout_prepare_ds() (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Handle early exit in layoutget by returning an error (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Send LAYOUTERROR when failing over mirrored reads (Benjamin Coddington) [1732409]
+- [fs] NFSv4.2: Add client support for the generic 'layouterror' RPC call (Benjamin Coddington) [1732409]
+- [fs] NFSv4/flexfiles: Abort I/O early if the layout segment was invalidated (Benjamin Coddington) [1732409]
+- [fs] NFSv4/pnfs: Fix barriers in nfs4_mark_deviceid_unavailable() (Benjamin Coddington) [1732409]
+- [fs] NFS/flexfiles: Fix up sparse RCU annotations (Benjamin Coddington) [1732409]
+- [fs] NFSv4/flexfiles: Fix invalid deref in FF_LAYOUT_DEVID_NODE() (Benjamin Coddington) [1732409]
+- [fs] NFS: Add missing encode / decode sequence_maxsz to v4.2 operations (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1: Don't process the sequence op more than once. (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1: Reinitialise sequence results before retransmitting a request (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix an Oops in udp_poll() (Benjamin Coddington) [1732409]
+- [fs] NFS/pnfs: Bulk destroy of layouts needs to be safe w.r.t. umount (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix a soft lockup in the delegation recovery code (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix performance-limiting session calculation (Benjamin Coddington) [1732409]
+- [fs] svcrpc: fix UDP on servers with lots of threads (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove the redundant 'zerocopy' argument to xs_sendpages() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Further cleanups of xs_sendpages() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Convert socket page send code to use iov_iter() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Convert xs_send_kvec() to use iov_iter_kvec() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Initiate a connection close on an ESHUTDOWN error in stream receive (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Don't suppress socket errors when a message read completes (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Handle zero length fragments correctly (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Don't reset the stream record info when the receive worker is running (Benjamin Coddington) [1732409]
+- [fs] nfs: fix xfstest generic/099 failed on nfsv3 (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix typo in comments of nfs_readdir_alloc_pages() (Benjamin Coddington) [1732409]
+- [fs] NFS: Remove redundant semicolon (Benjamin Coddington) [1732409]
+- [fs] NFS: readdirplus optimization by cache mechanism (Benjamin Coddington) [1732409]
+- [fs] fs/nfs: Fix nfs_parse_devname to not modify it's argument (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: remove pointless test in unx_match() (Benjamin Coddington) [1732409]
+- [fs] NFS: drop useless LIST_HEAD (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Ensure rq_bytes_sent is reset before request transmission (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Use poll() to fix up the socket requeue races (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Set memalloc_nofs_save() on all rpciod/xprtiod jobs (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix sparse annotations for nfs_set_open_stateid_locked() (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix up documentation warnings (Benjamin Coddington) [1732409]
+- [fs] NFS: ENOMEM should also be a fatal error. (Benjamin Coddington) [1732409]
+- [fs] NFS: EINTR is also a fatal error. (Benjamin Coddington) [1732409]
+- [fs] NFS: Ensure NFS writeback allocations don't recurse back into NFS. (Benjamin Coddington) [1732409]
+- [fs] NFS: Pass error information to the pgio error cleanup routine (Benjamin Coddington) [1732409]
+- [fs] NFS: Clean up list moves of struct nfs_page (Benjamin Coddington) [1732409]
+- [fs] NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix an I/O request leakage in nfs_do_recoalesce (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix I/O request leakages (Benjamin Coddington) [1732409]
+- [fs] Revert "nfsd4: return default lease period" (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Use au_rslack when computing reply buffer size (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add rpc_auth::au_ralign field (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Make AUTH_SYS and AUTH_NULL set au_verfsize (Benjamin Coddington) [1732409]
+- [fs] NFS: Account for XDR pad of buf->pages (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Introduce rpc_prepare_reply_pages() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove xdr_buf_trim() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Introduce trace points in rpc_auth_gss.ko (Benjamin Coddington) [1732409]
+- [fs] xprtrdma: Squelch a sparse warning (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Use struct xdr_stream when decoding RPC Reply header (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Clean up rpc_verify_header() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Use struct xdr_stream when constructing RPC Call header (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add build option to disable support for insecure enctypes (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove rpc_xprt::tsh_size (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove some dprintk() call sites from auth functions (Benjamin Coddington) [1732409]
+- [fs] NFS: Add trace events to report non-zero NFS status codes (Benjamin Coddington) [1732409]
+- [fs] NFS: Remove print_overflow_msg() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add trace event that reports reply page vector alignment (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add XDR overflow trace event (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add xdr_stream::rqst field (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Display symbolic flag names in RPC trace events (Benjamin Coddington) [1732409]
+- [fs] rpc: properly check debugfs dentry before using it (Benjamin Coddington) [1732409]
+- [fs] svcrpc: fix unlikely races preventing queueing of sockets (Benjamin Coddington) [1732409]
+- [fs] svcrpc: svc_xprt_has_something_to_do seems a little long (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Don't allow compiler optimisation of svc_xprt_release_slot() (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix an IS_ERR() vs NULL check (Benjamin Coddington) [1732409]
+- [fs] nfsd: Fix error return values for nfsd4_clone_file_range() (Benjamin Coddington) [1732409]
+- [fs] nfs: Fix NULL pointer dereference of dev_name (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Address Kerberos performance/behavior regression (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Ensure we respect the RPCSEC_GSS sequence number limit (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Ensure rq_bytes_sent is reset before request transmission (Benjamin Coddington) [1732409]
+- [fs] NFSv4.2 fix unnecessary retry in nfs4_copy_file_range (Benjamin Coddington) [1732409]
+- [fs] sunrpc: kernel BUG at kernel/cred.c:825! (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix TCP receive code on archs with flush_dcache_page() (Benjamin Coddington) [1732409]
+- [fs] sunrpc: convert to DEFINE_SHOW_ATTRIBUTE (Benjamin Coddington) [1732409]
+- [fs] sunrpc: Add xprt after nfs4_test_session_trunk() (Benjamin Coddington) [1732409]
+- [fs] sunrpc: convert unnecessary GFP_ATOMIC to GFP_NOFS (Benjamin Coddington) [1732409]
+- [fs] sunrpc: handle ENOMEM in rpcb_getport_async (Benjamin Coddington) [1732409]
+- [fs] NFS: remove unnecessary test for IS_ERR(cred) (Benjamin Coddington) [1732409]
+- [fs] NFSv4.2 fix async copy reboot recovery (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix some kernel doc complaints (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Simplify defining common RPC trace events (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix NFSv4 symbolic trace point output (Benjamin Coddington) [1732409]
+- [fs] nfs: fixed broken compilation in nfs_callback_up_net() (Benjamin Coddington) [1732409]
+- [fs] nfs: minor typo in nfs4_callback_up_net() (Benjamin Coddington) [1732409]
+- [fs] sunrpc: fix debug message in svc_create_xprt() (Benjamin Coddington) [1732409]
+- [fs] sunrpc: remove svc_rdma_bc_class (Benjamin Coddington) [1732409]
+- [fs] sunrpc: remove unused bc_up operation from rpc_xprt_ops (Benjamin Coddington) [1732409]
+- [fs] sunrpc: use SVC_NET() in svcauth_gss_* functions (Benjamin Coddington) [1732409]
+- [fs] nfsd: drop useless LIST_HEAD (Benjamin Coddington) [1732409]
+- [fs] SUNRPC discard cr_uid from struct rpc_cred. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: simplify auth_unix. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: remove crbind rpc_cred operation (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: remove generic cred code. (Benjamin Coddington) [1732409]
+- [fs] NFS/NFSD/SUNRPC: replace generic creds with 'struct cred'. (Benjamin Coddington) [1732409]
+- [fs] NFS: struct nfs_open_dir_context: convert rpc_cred pointer to cred. (Benjamin Coddington) [1732409]
+- [fs] NFS: change access cache to use 'struct cred'. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: remove RPCAUTH_AUTH_NO_CRKEY_TIMEOUT (Benjamin Coddington) [1732409]
+- [fs] NFS: move credential expiry tracking out of SUNRPC into NFS. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: add side channel to use non-generic cred for rpc call. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: introduce RPC_TASK_NULLCREDS to request auth_none (Benjamin Coddington) [1732409]
+- [fs] NFS/SUNRPC: don't lookup machine credential until rpcauth_bindcred(). (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: discard RPC_DO_ROOTOVERRIDE() (Benjamin Coddington) [1732409]
+- [fs] NFSv4: don't require lock for get_renew_cred or get_machine_cred (Benjamin Coddington) [1732409]
+- [fs] NFSv4: add cl_root_cred for use when machine cred is not available. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: remove machine_cred field from struct auth_cred (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: remove uid and gid from struct auth_cred (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: remove groupinfo from struct auth_cred. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: add 'struct cred *' to auth_cred and rpc_cred (Benjamin Coddington) [1732409]
+- [fs] cred: allow get_cred() and put_cred() to be given NULL. (Benjamin Coddington) [1732409]
+- [fs] cred: export get_task_cred(). (Benjamin Coddington) [1732409]
+- [fs] cred: add get_cred_rcu() (Benjamin Coddington) [1732409]
+- [fs] cred: add cred_fscmp() for comparing creds. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: allow /proc entries without CONFIG_SUNRPC_DEBUG (Benjamin Coddington) [1732409]
+- [fs] nfs: fix comment to nfs_generic_pg_test which does the opposite (Benjamin Coddington) [1732409]
+- [fs] NFSv4: cleanup remove unused nfs4_xdev_fs_type (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove xprt_connect_status() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix a race with XPRT_CONNECTING (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix disconnection races (Benjamin Coddington) [1732409]
+- [fs] Revert "[net] Revert "sunrpc: Ensure we always close the socket after a connection shuts down"" (Benjamin Coddington) [1732409]
+- [fs] lockd: Show pid of lockd for remote locks (Benjamin Coddington) [1732409]
+- [fs] NFSD remove OP_CACHEME from 4.2 op_flags (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Don't force a redundant disconnection in xs_read_stream() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix up socket polling (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Use the discard iterator rather than MSG_TRUNC (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Treat EFAULT as a truncated message in xs_read_stream_request() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix up handling of the XDRBUF_SPARSE_PAGES flag (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix RPC receive hangs (Benjamin Coddington) [1732409]
+- [fs] nfsd: Return EPERM, not EACCES, in some SETATTR cases (Benjamin Coddington) [1732409]
+- [fs] sunrpc: fix cache_head leak due to queued request (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix a potential race in xprt_connect() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix a memory leak in call_encode() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix leak of krb5p encode pages (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: call_connect_status() must handle tasks that got transmitted (Benjamin Coddington) [1732409]
+- [fs] nfs: don't dirty kernel pages read by direct-io (Benjamin Coddington) [1732409]
+- [fs] NFS: use locks_copy_lock() to copy locks. (Benjamin Coddington) [1732409]
+- [fs] nfsd: clean up indentation, increase indentation in switch statement (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix a warning in __cld_pipe_upcall() (Benjamin Coddington) [1732409]
+- [fs] lockd: fix decoding of TEST results (Benjamin Coddington) [1732409]
+- [fs] nfsd4: fix crash on writing v4_end_grace before nfsd startup (Benjamin Coddington) [1732409]
+- [fs] nfsd4: skip unused assignment (Benjamin Coddington) [1732409]
+- [fs] nfsd4: forbid all renames during grace period (Benjamin Coddington) [1732409]
+- [fs] nfsd4: remove unused nfs4_check_olstateid parameter (Benjamin Coddington) [1732409]
+- [fs] nfsd4: zero-length WRITE should succeed (Benjamin Coddington) [1732409]
+- [fs] NFSv4.2 copy do not allocate memory under the lock (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix a NFSv4 state manager deadlock (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix an Oops during delegation callbacks (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix a bogus get/put in generic_key_to_expire() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix a Oops when destroying the RPCSEC_GSS credential cache (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Ensure that the state manager exits the loop on SIGKILL (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Don't exit the state manager without clearing NFS4CLNT_MANAGER_RUNNING (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer() (Benjamin Coddington) [1732409]
+- [fs] nfsd: COPY and CLONE operations require the saved filehandle to be set (Benjamin Coddington) [1732409]
+- [fs] sunrpc: correct the computation for page_ptr when truncating (Benjamin Coddington) [1732409]
+- [fs] NFS: fix spelling mistake, EACCESS -> EACCES (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Use atomic(64)_t for seq_send(64) (Benjamin Coddington) [1732409]
+- [fs] nfsd: Fix an Oops in free_session() (Benjamin Coddington) [1732409]
+- [fs] nfsd: correctly decrement odstate refcount in error path (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix fall-through annotations (Benjamin Coddington) [1732409]
+- [fs] knfsd: Improve lookup performance in the duplicate reply cache using an rbtree (Benjamin Coddington) [1732409]
+- [fs] knfsd: Further simplify the cache lookup (Benjamin Coddington) [1732409]
+- [fs] knfsd: Simplify NFS duplicate replay cache (Benjamin Coddington) [1732409]
+- [fs] knfsd: Remove dead code from nfsd_cache_lookup (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Simplify TCP receive code (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Replace the cache_detail->hash_lock with a regular spinlock (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove non-RCU protected lookup (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix up a typo in nfs_dns_ent_put (Benjamin Coddington) [1732409]
+- [fs] NFS: Lockless DNS lookups (Benjamin Coddington) [1732409]
+- [fs] knfsd: Lockless lookup of NFSv4 identities. (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Lockless server RPCSEC_GSS context lookup (Benjamin Coddington) [1732409]
+- [fs] knfsd: Allow lockless lookups of the exports (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Make server side AUTH_UNIX use lockless lookups (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Allow cache lookups to use RCU protection rather than the r/w spinlock (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Convert the auth cred cache to use refcount_t (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Convert auth creds to use refcount_t (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Simplify lookup code (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Clean up the AUTH cache code (Benjamin Coddington) [1732409]
+- [fs] NFS: change sign of nfs_fh length (Benjamin Coddington) [1732409]
+- [fs] sunrpc: safely reallow resvport min/max inversion (Benjamin Coddington) [1732409]
+- [fs] nfs: remove redundant call to nfs_context_set_write_error() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix a compile warning for cmpxchg64() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: use cmpxchg64() in gss_seq_send64_fetch_and_inc() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Refactor sunrpc_cache_lookup (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add lockless lookup of the server's auth domain (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove the server 'authtab_lock' and just use RCU (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix lookup revalidate of regular files (Benjamin Coddington) [1732409]
+- [fs] NFS: Refactor nfs_lookup_revalidate() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Replace krb5_seq_lock with a lockless scheme (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Lockless lookup of RPCSEC_GSS mechanisms (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Remove rpc_authflavor_lock in favour of RCU locking (Benjamin Coddington) [1732409]
+- [fs] NFS: Remove private spinlock in struct nfs_pgio_header (Benjamin Coddington) [1732409]
+- [fs] NFSv3: Improve NFSv3 performance when server returns no post-op attributes (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Split out NFS v4.2 copy completion functions (Benjamin Coddington) [1732409]
+- [fs] NFS: Reduce indentation of nfs4_recovery_handle_error() (Benjamin Coddington) [1732409]
+- [fs] NFS: Reduce indentation of the switch statement in nfs4_reclaim_open_state() (Benjamin Coddington) [1732409]
+- [fs] NFS: Split out the body of nfs4_reclaim_open_state() (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1: Fix the r/wsize checking (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Convert struct nfs4_state to use refcount_t (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Convert open state lookup to use RCU (Benjamin Coddington) [1732409]
+- [fs] NFS: Convert lookups of the open context to RCU (Benjamin Coddington) [1732409]
+- [fs] NFS: Simplify internal check for whether file is open for write (Benjamin Coddington) [1732409]
+- [fs] NFS: Convert lookups of the lock context to RCU (Benjamin Coddington) [1732409]
+- [fs] pNFS: Don't allocate more pages than we need to fit a layoutget response (Benjamin Coddington) [1732409]
+- [fs] pNFS: Don't zero out the array in nfs4_alloc_pages() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Unexport xdr_partial_copy_from_skb() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Clean up xs_udp_data_receive() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Allow AF_LOCAL sockets to use the generic stream receive (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Clean up - rename xs_tcp_data_receive() to xs_stream_data_receive() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Simplify TCP receive code by switching to using iterators (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add a bvec array to struct xdr_buf for use with iovec_iter() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add a label for RPC calls that require allocation on receive (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Convert the xprt->sending queue back to an ordinary wait queue (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix priority queue fairness (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Convert xprt receive queue to use an rbtree (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Don't take transport->lock unnecessarily when taking XPRT_LOCK (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Cleanup: remove the unused 'task' argument from the request_send() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Clean up transport write space handling (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Turn off throttling of RPC slots for TCP sockets (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Allow soft RPC calls to time out when waiting for the XPRT_LOCK (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Allow calls to xprt_transmit() to drain the entire transmit queue (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Enqueue swapper tagged RPCs at the head of the transmit queue (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Support for congestion control when queuing is enabled (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Improve latency for interactive tasks (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Move RPC retransmission stat counter to xprt_transmit() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Simplify xprt_prepare_transmit() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Don't reset the request 'bytes_sent' counter when releasing XPRT_LOCK (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Treat the task and request as separate in the xprt_ops->send_request() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Fix up the back channel transmit (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Refactor RPC call encoding (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add a transmission queue for RPC requests (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Distinguish between the slot allocation list and receive queue (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Minor cleanup for call_transmit() (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Refactor xprt_transmit() to remove wait for reply code (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Refactor xprt_transmit() to remove the reply queue code (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Rename xprt->recv_lock to xprt->queue_lock (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Don't wake queued RPC calls multiple times in xprt_transmit (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Test whether the task is queued before grabbing the queue spinlocks (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add a helper to wake up a sleeping rpc_task and set its status (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Refactor the transport request pinning (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Simplify dealing with aborted partially transmitted messages (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Add socket transmit queue offset tracking (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Move reset of TCP state variables into the reconnect code (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Rename TCP receive-specific state variables (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Avoid holding locks across the XDR encoding of the RPC message (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: Simplify identification of when the message send/receive is complete (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: The transmitted message must lie in the RPCSEC window of validity (Benjamin Coddington) [1732409]
+- [fs] SUNRPC: If there is no reply expected, bail early from call_decode (Benjamin Coddington) [1732409]
+- [fs] nfsd: remove set but not used variable 'dirp' (Benjamin Coddington) [1732409]
+- [fs] NFSD introduce async copy feature (Benjamin Coddington) [1732409]
+- [fs] NFSD OFFLOAD_CANCEL xdr (Benjamin Coddington) [1732409]
+- [fs] NFSD OFFLOAD_STATUS xdr (Benjamin Coddington) [1732409]
+- [fs] NFSD CB_OFFLOAD xdr (Benjamin Coddington) [1732409]
+- [fs] NFS: Don't open code clearing of delegation state (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1 fix infinite loop on I/O. (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix a tracepoint Oops in initiate_file_draining() (Benjamin Coddington) [1732409]
+- [fs] pNFS: Ensure we return the error if someone kills a waiting layoutget (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix a tracepoint Oops in initiate_file_draining() (Benjamin Coddington) [1732409]
+- [fs] sunrpc: Add comment defining gssd upcall API keywords (Benjamin Coddington) [1732409]
+- [fs] nfsd: Remove callback_cred (Benjamin Coddington) [1732409]
+- [fs] nfsd: Use correct credential for NFSv4.0 callback with GSS (Benjamin Coddington) [1732409]
+- [fs] sunrpc: Extract target name into svc_cred (Benjamin Coddington) [1732409]
+- [fs] sunrpc: Enable the kernel to specify the hostname part of service principals (Benjamin Coddington) [1732409]
+- [fs] pNFS: Remove unwanted optimisation of layoutget (Benjamin Coddington) [1732409]
+- [fs] pNFS/flexfiles: ff_layout_pg_init_read should exit on error (Benjamin Coddington) [1732409]
+- [fs] pNFS: Treat RECALLCONFLICT like DELAY... (Benjamin Coddington) [1732409]
+- [fs] pNFS: When updating the stateid in layoutreturn, also update the recall range (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix a sleep in atomic context in nfs4_callback_sequence() (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix locking in pnfs_generic_recover_commit_reqs (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix a typo in nfs4_init_channel_attrs() (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Don't busy wait if NFSv4 session draining is interrupted (Benjamin Coddington) [1732409]
+- [fs] NFS recover from destination server reboot for copies (Benjamin Coddington) [1732409]
+- [fs] nfsd: use true and false for boolean values (Benjamin Coddington) [1732409]
+- [fs] nfsd: constify write_op[] (Benjamin Coddington) [1732409]
+- [fs] fs/nfsd: Delete invalid assignment statements in nfsd4_decode_exchange_id (Benjamin Coddington) [1732409]
+- [fs] NFSD: Handle full-length symlinks (Benjamin Coddington) [1732409]
+- [fs] NFSD: Refactor the generic write vector fill helper (Benjamin Coddington) [1732409]
+- [fs] nfsd: Mark expected switch fall-through (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix leaked file lock with nfs exported overlayfs (Benjamin Coddington) [1732409]
+- [fs] NFS add a simple sync nfs4_proc_commit after async COPY (Benjamin Coddington) [1732409]
+- [fs] NFS handle COPY ERR_OFFLOAD_NO_REQS (Benjamin Coddington) [1732409]
+- [fs] NFS send OFFLOAD_CANCEL when COPY killed (Benjamin Coddington) [1732409]
+- [fs] NFS export nfs4_async_handle_error (Benjamin Coddington) [1732409]
+- [fs] NFS handle COPY reply CB_OFFLOAD call race (Benjamin Coddington) [1732409]
+- [fs] NFS add support for asynchronous COPY (Benjamin Coddington) [1732409]
+- [fs] NFS COPY xdr handle async reply (Benjamin Coddington) [1732409]
+- [fs] NFS OFFLOAD_CANCEL xdr (Benjamin Coddington) [1732409]
+- [fs] NFS CB_OFFLOAD xdr (Benjamin Coddington) [1732409]
+- [fs] NFS: Use an appropriate work queue for direct-write completion (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Fix error handling in nfs4_sp4_select_mode() (Benjamin Coddington) [1732409]
+- [fs] pnfs: Use true and false for boolean values (Benjamin Coddington) [1732409]
+- [fs] pnfs: pnfs_find_lseg() should not check NFS_LSEG_LAYOUTRETURN (Benjamin Coddington) [1732409]
+- [fs] NFS: Mark expected switch fall-throughs (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Mark the inode change attribute up to date in update_changeattr() (Benjamin Coddington) [1732409]
+- [fs] NFSv4: Detect nlink changes on cross-directory renames too (Benjamin Coddington) [1732409]
+- [fs] NFSv4: bump/drop the nlink count on the parent dir when we mkdir/rmdir (Benjamin Coddington) [1732409]
+- [fs] pnfs: Fix handling of NFS4ERR_OLD_STATEID replies to layoutreturn (Benjamin Coddington) [1732409]
+- [fs] sunrpc: whitespace fixes (Benjamin Coddington) [1732409]
+- [fs] NFSv4 client live hangs after live data migration recovery (Benjamin Coddington) [1732409]
+- [fs] NFSv4.0 fix client reference leak in callback (Benjamin Coddington) [1732409]
+- [fs] sunrpc: kstrtoul() can also return -ERANGE (Benjamin Coddington) [1732409]
+- [fs] NFS: silence a harmless uninitialized variable warning (Benjamin Coddington) [1732409]
+- [fs] net/sunrpc: Make rpc_auth_create_args a const (Benjamin Coddington) [1732409]
+- [fs] pnfs/blocklayout: off by one in bl_map_stripe() (Benjamin Coddington) [1732409]
+- [fs] nfs: Referrals not inheriting proto setting from parent (Benjamin Coddington) [1732409]
+- [fs] nfs: initiate returning delegation when reclaiming one that's been recalled (Benjamin Coddington) [1732409]
+- [fs] fs: nfs: Adding new return type vm_fault_t (Benjamin Coddington) [1732409]
+- [fs] nfs: add error check in nfs_idmap_prepare_message() (Benjamin Coddington) [1732409]
+- [fs] NFS: More excessive attribute revalidation in nfs_execute_ok() (Benjamin Coddington) [1732409]
+- [fs] NFS: Fix excessive attribute revalidation in nfs_execute_ok() (Benjamin Coddington) [1732409]
+- [fs] NFS: Ensure we immediately start writeback on rescheduled writes (Benjamin Coddington) [1732409]
+- [fs] NFSv4.1: Fix a potential layoutget/layoutrecall deadlock (Benjamin Coddington) [1732409]
+- [fs] pNFS: Parse the results of layoutget on open even if permissions checks fail (Benjamin Coddington) [1732409]
+- [fs] NFS: Allow optimisation of lseek(fd, SEEK_CUR, 0) on directories (Benjamin Coddington) [1732409]
+- [fs] pNFS: Wait for stale layoutget calls to complete in pnfs_update_layout() (Benjamin Coddington) [1732409]
+- [fs] pNFS/flexfiles: Ensure we always return a layout if it has layoutstats (Benjamin Coddington) [1732409]
+- [fs] pNFS: Ignore non-recalled layouts in pnfs_layout_need_return() (Benjamin Coddington) [1732409]
+- [fs] pNFS: Don't update the stateid when replying NFS4ERR_DELAY to a layout recall (Benjamin Coddington) [1732409]
+- [fs] pNFS: Don't discard layout segments that are marked for return (Benjamin Coddington) [1732409]
+- [fs] nfsd: don't advertise a SCSI layout for an unsupported request_queue (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix corrupted reply to badly ordered compound (Benjamin Coddington) [1732409]
+- [fs] nfsd: clarify check_op_ordering (Benjamin Coddington) [1732409]
+- [fs] nfsd: update obselete comment referencing the BKL (Benjamin Coddington) [1732409]
+- [fs] nfsd4: cleanup sessionid in nfsd4_destroy_session (Benjamin Coddington) [1732409]
+- [fs] nfsd4: less confusing nfsd4_compound_in_session (Benjamin Coddington) [1732409]
+- [fs] nfsd4: support change_attr_type attribute (Benjamin Coddington) [1732409]
+- [fs] nfsd: fix NFSv4 time_delta attribute (Benjamin Coddington) [1732409]
+- [fs] nfsd4: return default lease period (Benjamin Coddington) [1732409]
+- [fs] nfsd4: extend reclaim period for reclaiming clients (Benjamin Coddington) [1732409]
+- [netdrv] i40e: Do not check VF state in i40e_ndo_get_vf_config (Stefan Assmann) [1752498]
+- [netdrv] i40e: Add support for X710 device (Stefan Assmann) [1752891]
+- [mm] mm/oom_kill.c: add task UID to info message on an oom kill (Joel Savitz) [1693039]
+- [pci] ACPICA: Increase total number of possible Owner IDs (Al Stone) [1713050]
+- [powerpc] powerpc/pseries: correctly track irq state in default idle (Steve Best) [1751971]
+- [powerpc] powerpc/imc: Dont create debugfs files for cpu-less nodes (Steve Best) [1726031]
+- [fs] userfaultfd_release: always remove uffd flags and clear vm_userfaultfd_ctx (Alex Gladkov) [1749763]
+- [infiniband] RDMA/bnxt_re: Fix stack-out-of-bounds in bnxt_qplib_rcfw_send_message (Selvin Xavier) [1643312]
+- [drm] drm/bochs: Fix connector leak during driver unload (Sam Bobroff) [1463490]
+- [tools] selftests: Remove forced unbuffering for test running (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] selftests: Add test plan API to kselftest.h and adjust callers (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] selftests: Remove KSFT_TAP_LEVEL (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] selftests: Move test output to diagnostic lines (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] selftests: Distinguish between missing and non-executable (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] selftests: Add plan line and fix result line syntax (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] selftests: Extract logic for multiple test runs (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] selftests: Use runner.sh for emit targets (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] selftests: Extract single-test shell logic from lib.mk (Desnes Augusto Nunes do Rosario) [1721461]
+- [tools] x86/selftests/pkeys: Fork() to check for state being preserved (Vladis Dronov) [1738880]
+- [x86] x86/pkeys: Properly copy pkey state at fork() (Vladis Dronov) [1738880]
+- [netdrv] cxgb4: fix a memory leak bug (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Prefer pcie_capability_read_word() (Jonathan Toppins) [1725776]
+- [netdrv] allocate_flower_entry: should check for null deref (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: reduce kernel stack usage in cudbg_collect_mem_region() (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Add MPS refcounting for alloc/free mac filters (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Add MPS TCAM refcounting for cxgb4 change mac (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Add MPS TCAM refcounting for raw mac filters (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Re-work the logic for mps refcounting (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4/libcxgb/cxgb4i/cxgbit: enable eDRAM page pods for iSCSI (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Set initial IRQ affinity hints (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Make t4_get_tp_e2c_map static (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Revert "cxgb4: Remove SGE_HOST_PAGE_SIZE dependency on page size" (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: offload VLAN flows regardless of VLAN ethtype (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: use firmware API for validating filter spec (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Enable hash filter with offload (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Fix error path in cxgb4_init_module (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Delete all hash and TCAM filters before resource cleanup (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4/cxgb4vf_main: Mark expected switch fall-through (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4/cxgb4vf: Display advertised FEC in ethtool (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Update 1.23.3.0 as the latest firmware supported. (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4: Update 1.22.9.0 as the latest firmware supported. (Jonathan Toppins) [1725776]
+- [netdrv] cxgb4/l2t: Use struct_size() in kvzalloc() (Jonathan Toppins) [1725776]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Jonathan Toppins) [1725776]
+- [netdrv] crypto/chelsio/chtls: macro correction in tx path (Jonathan Toppins) [1725776]
+
+* Tue Oct 15 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.7.el8]
+- [kernel] rcu: Add sparse check to rcu_assign_pointer() (Waiman Long) [1737054]
+- [kernel] rcu: Fix obsolete DYNTICK_IRQ_NONIDLE comment (Waiman Long) [1737054]
+- [kernel] rcu: Repair rcu_nmi_exit() docbook header (Waiman Long) [1737054]
+- [kernel] rcu: Remove preemption disabling from expedited CPU selection (Waiman Long) [1737054]
+- [kernel] rcu: Rename rcu_process_callbacks() to rcu_core() for Tree RCU (Waiman Long) [1737054]
+- [kernel] rcu: Rename rcu_check_callbacks() to rcu_sched_clock_irq() (Waiman Long) [1737054]
+- [kernel] rcu: Docbook for rcu_head_init() and rcu_head_after_call_rcu() (Waiman Long) [1737054]
+- [documentation] doc: Fix outdated links (Waiman Long) [1737054]
+- [documentation] doc: CPU-hotplug notifiers cannot invoke synchronize_srcu() or srcu_barrier() (Waiman Long) [1737054]
+- [documentation] doc: Now jiffies_till_sched_qs solicits help from cond_resched() (Waiman Long) [1737054]
+- [kernel] rcuperf: Stop abusing IS_ENABLED() (Waiman Long) [1737054]
+- [kernel] rcutorture: Add grace period after CPU offline (Waiman Long) [1737054]
+- [kernel] torture: Explain and simplify odd "for" loop in mkinitrd.sh (Waiman Long) [1737054]
+- [kernel] rcutorture: Record grace periods in forward-progress histogram (Waiman Long) [1737054]
+- [kernel] rcu: Prevent needless ->gp_seq_needed update in __note_gp_changes() (Waiman Long) [1737054]
+- [kernel] rcu: Do RCU GP kthread self-wakeup from softirq and interrupt (Waiman Long) [1737054]
+- [kernel] rcu: Add sysrq rcu_node-dump capability (Waiman Long) [1737054]
+- [kernel] rcu: Protect rcu_check_gp_kthread_starvation() access to ->gp_flags (Waiman Long) [1737054]
+- [kernel] rcu: Improve diagnostics for failed RCU grace-period start (Waiman Long) [1737054]
+- [kernel] rcu: Update NOCB comments (Waiman Long) [1737054]
+- [kernel] rcu: Remove unused rcu_cpu_kthread_cpu per-CPU variable (Waiman Long) [1737054]
+- [kernel] rcu: Move rcu_cpu_has_work to rcu_data structure (Waiman Long) [1737054]
+- [kernel] rcu: Remove unused rcu_cpu_kthread_loops per-CPU variable (Waiman Long) [1737054]
+- [kernel] rcu: Move rcu_cpu_kthread_status to rcu_data structure (Waiman Long) [1737054]
+- [kernel] rcu: Move rcu_cpu_kthread_task to rcu_data structure (Waiman Long) [1737054]
+- [kernel] rcu: Accommodate zero jiffies_till_first_fqs and kthread kicking (Waiman Long) [1737054]
+- [kernel] rcu: Remove wrapper definitions for obsolete RCU update functions (Waiman Long) [1737054]
+- [kernel] rcu: Discard separate per-CPU callback counts (Waiman Long) [1737054]
+- [kernel] rcu: Inline _synchronize_rcu_expedited() into synchronize_rcu_expedited() (Waiman Long) [1737054]
+- [kernel] rcu: Consolidate PREEMPT and !PREEMPT synchronize_rcu() (Waiman Long) [1737054]
+- [kernel] rcu: Consolidate PREEMPT and !PREEMPT synchronize_rcu_expedited() (Waiman Long) [1737054]
+- [kernel] rcu: Determine expedited-GP IPI handler at build time (Waiman Long) [1737054]
+- [kernel] rcu: Inline rcu_kthread_do_work() into its sole remaining caller (Waiman Long) [1737054]
+- [kernel] rcu: Eliminate RCU_BH_FLAVOR and RCU_SCHED_FLAVOR (Waiman Long) [1737054]
+- [kernel] rcu: Inline force_quiescent_state() into rcu_force_quiescent_state() (Waiman Long) [1737054]
+- [kernel] rcu: Make expedited IPI handler return after handling critical section (Waiman Long) [1737054]
+- [kernel] rcu: Rename and comment changes due to only one rcuo kthread per CPU (Waiman Long) [1737054]
+- [kernel] sched: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [kernel] sched: Replace call_rcu_sched() with call_rcu() (Waiman Long) [1737054]
+- [net] net/core: Replace call_rcu_bh() and synchronize_rcu_bh() (Waiman Long) [1737054]
+- [net] netpoll: allow cleanup to be synchronous (Waiman Long) [1737054]
+- [net] netfilter: Replace call_rcu_bh(), rcu_barrier_bh(), and synchronize_rcu_bh() (Waiman Long) [1737054]
+- [kernel] uprobes: Use synchronize_rcu() not synchronize_sched() (Waiman Long) [1737054]
+- [kernel] rcutorture: Don't do busted forward-progress testing (Waiman Long) [1737054]
+- [kernel] rcutorture: Use 100ms buckets for forward-progress callback histograms (Waiman Long) [1737054]
+- [kernel] rcutorture: Recover from OOM during forward-progress tests (Waiman Long) [1737054]
+- [kernel] rcutorture: Print forward-progress test age upon failure (Waiman Long) [1737054]
+- [kernel] rcutorture: Print time since GP end upon forward-progress failure (Waiman Long) [1737054]
+- [kernel] rcutorture: Print histogram of CB invocation at OOM time (Waiman Long) [1737054]
+- [kernel] rcutorture: Print GP age upon forward-progress failure (Waiman Long) [1737054]
+- [kernel] rcu: Print per-CPU callback counts for forward-progress failures (Waiman Long) [1737054]
+- [kernel] rcu: Account for nocb-CPU callback counts in RCU CPU stall warnings (Waiman Long) [1737054]
+- [kernel] rcutorture: Dump grace-period diagnostics upon forward-progress OOM (Waiman Long) [1737054]
+- [kernel] rcutorture: Prepare for asynchronous access to rcu_fwd_startat (Waiman Long) [1737054]
+- [kernel] torture: Remove unnecessary "ret" variables (Waiman Long) [1737054]
+- [kernel] rcutorture: Affinity forward-progress test to avoid housekeeping CPUs (Waiman Long) [1737054]
+- [kernel] rcutorture: Break up too-long rcu_torture_fwd_prog() function (Waiman Long) [1737054]
+- [kernel] rcutorture: Remove cbflood facility (Waiman Long) [1737054]
+- [kernel] torture: Bring any extra CPUs online during kernel startup (Waiman Long) [1737054]
+- [kernel] rcutorture: Add call_rcu() flooding forward-progress tests (Waiman Long) [1737054]
+- [tools] rcutorture/formal: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [tools] tools/kernel.h: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [net] net/decnet: Replace rcu_barrier_bh() with rcu_barrier() (Waiman Long) [1737054]
+- [net] net/core/skmsg: Replace call_rcu_sched() with call_rcu() (Waiman Long) [1737054]
+- [kernel] cgroups: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [kernel] types: Remove call_rcu_bh() and call_rcu_sched() (Waiman Long) [1737054]
+- [include] percpu-rwsem: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [net] net/bridge: Replace call_rcu_bh() and rcu_barrier_bh() (Waiman Long) [1737054]
+- [kernel] srcu: Use "ssp" instead of "sp" for srcu_struct pointer (Waiman Long) [1737054]
+- [kernel] srcu: Lock srcu_data structure in srcu_gp_start() (Waiman Long) [1737054]
+- [mm] mm: Replace call_rcu_sched() with call_rcu() (Waiman Long) [1737054]
+- [kernel] percpu-refcount: Replace call_rcu_sched() with call_rcu() (Waiman Long) [1737054]
+- [kernel] events: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [kernel] workqueue: Replace call_rcu_sched() with call_rcu() (Waiman Long) [1737054]
+- [kernel] modules: Replace synchronize_sched() and call_rcu_sched() (Waiman Long) [1737054]
+- [kernel] sched/membarrier: synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [kernel] lockdep: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [kernel] kprobes: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [init] main: Replace rcu_barrier_sched() with rcu_barrier() (Waiman Long) [1737054]
+- [kernel] tracing: Replace synchronize_sched() and call_rcu_sched() (Waiman Long) [1737054]
+- [kernel] tracepoints: Free early tracepoints after RCU is initialized (Waiman Long) [1737054]
+- [kernel] tracing: Fix synchronizing to event changes with tracepoint_synchronize_unregister() (Waiman Long) [1737054]
+- [kernel] tracepoint: Make rcuidle tracepoint callers use SRCU (Waiman Long) [1737054]
+- [fs] fs/file: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [cpufreq] cpufreq/cpufreq_governor: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [cpufreq] cpufreq/intel_pstate: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [vhost] drivers/vhost: Replace synchronize_rcu_bh() with synchronize_rcu() (Waiman Long) [1737054]
+- [netdrv] ethernet/sis: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [char] drivers/ipmi: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [crypto] crypto/pcrypt: Replace synchronize_rcu_bh() with synchronize_rcu() (Waiman Long) [1737054]
+- [mm] mm: Replace spin_is_locked() with lockdep (Waiman Long) [1737054]
+- [kernel] locking/mutex: Replace spin_is_locked() with lockdep (Waiman Long) [1737054]
+- [fs] userfaultfd: Replace spin_is_locked() with lockdep (Waiman Long) [1737054]
+- [net] smsc: Replace spin_is_locked() with lockdep (Waiman Long) [1737054]
+- [scripts] checkpatch.pl: Suggest lockdep instead of asserting !spin_is_locked() (Waiman Long) [1737054]
+- [scripts] checkpatch: Create table of obsolete APIs and apply to RCU (Waiman Long) [1737054]
+- [maintainers] MAINTAINERS: Add Joel Fernandes as RCU reviewer (Waiman Long) [1737054]
+- [kernel] rcu: Avoid signed integer overflow in rcu_preempt_deferred_qs() (Waiman Long) [1737054]
+- [kernel] rcu: Replace this_cpu_ptr() with __this_cpu_read() (Waiman Long) [1737054]
+- [kernel] rcu: Speed up expedited GPs when interrupting RCU reader (Waiman Long) [1737054]
+- [kernel] rcu: Trace end of grace period before end of grace period (Waiman Long) [1737054]
+- [kernel] rcu: Adjust the comment of function rcu_is_watching (Waiman Long) [1737054]
+- [kernel] rcu: Add jiffies-since-GP-activity to show_rcu_gp_kthreads() (Waiman Long) [1737054]
+- [kernel] rcu: Add state name to show_rcu_gp_kthreads() output (Waiman Long) [1737054]
+- [kernel] rcu: Parameterize rcu_check_gp_start_stall() (Waiman Long) [1737054]
+- [kernel] rcu: Avoid double multiply by HZ (Waiman Long) [1737054]
+- [documentation] doc: Fix "struction" typo in RCU memory-ordering documentation (Waiman Long) [1737054]
+- [documentation] doc: Correct parameter in stallwarn (Waiman Long) [1737054]
+- [documentation] doc: RCU scheduler spinlock rcu_read_unlock() restriction remains (Waiman Long) [1737054]
+- [documentation] doc: Make listing in RCU perf/scale requirements use rcu_assign_pointer() (Waiman Long) [1737054]
+- [documentation] doc: Remove obsolete (non-)requirement about disabling preemption (Waiman Long) [1737054]
+- [documentation] doc: Make reader aware of rcu_dereference_protected (Waiman Long) [1737054]
+- [documentation] doc: rcu: Encourage use of rcu_barrier in checklist (Waiman Long) [1737054]
+- [documentation] doc: rcu: Remove obsolete checklist item about synchronize_rcu usage (Waiman Long) [1737054]
+- [documentation] doc: rcu: Remove obsolete suggestion from checklist (Waiman Long) [1737054]
+- [documentation] doc: rcu: Add more rationale for using rcu_read_lock_sched in checklist (Waiman Long) [1737054]
+- [documentation] doc: rcu: Update core and full API in whatisRCU (Waiman Long) [1737054]
+- [documentation] doc: Document rcutorture forward-progress test kernel parameters (Waiman Long) [1737054]
+- [documentation] doc: rcu: Update description of gp_seq fields in rcu_data (Waiman Long) [1737054]
+- [documentation] doc: rcu: Better clarify the rcu_segcblist ->len field (Waiman Long) [1737054]
+- [documentation] doc: rcu: Update Data-Structures for RCU flavor consolidation (Waiman Long) [1737054]
+- [documentation] doc: Remove rcu_dynticks from Data-Structures (Waiman Long) [1737054]
+- [documentation] doc: Update information about resched_cpu (Waiman Long) [1737054]
+- [kernel] rcu: Eliminate BUG_ON() for kernel/rcu/update.c (Waiman Long) [1737054]
+- [kernel] rcu: Eliminate BUG_ON() for kernel/rcu/tree_plugin.h (Waiman Long) [1737054]
+- [kernel] rcu: Stop expedited grace periods from relying on stop-machine (Waiman Long) [1737054]
+- [kernel] srcu: Prevent __call_srcu() counter wrap with read-side critical section (Waiman Long) [1737054]
+- [include] srcu: Fix kernel-doc missing notation (Waiman Long) [1737054]
+- [x86] x86/PCI: Replace spin_is_locked() with lockdep (Waiman Long) [1737054]
+- [tools] rcutorture: Make use of nolibc when available (Waiman Long) [1737054]
+- [tools] rcutorture: Import a copy of nolibc (Waiman Long) [1737054]
+- [tools] rcutorture: Check initrd/init instead of initrd only (Waiman Long) [1737054]
+- [tools] rcutorture: Always strip using the cross-compiler (Waiman Long) [1737054]
+- [tools] rcutorture: Add cross-compile capability to initrd.sh (Waiman Long) [1737054]
+- [tools] rcutorture: Make initrd/init execute in userspace (Waiman Long) [1737054]
+- [tools] rcutorture: Add initrd support for systems lacking dracut (Waiman Long) [1737054]
+- [tools] rcutorture: Automatically create initrd directory (Waiman Long) [1737054]
+- [documentation] doc: Remove rcu_preempt_state reference in stallwarn (Waiman Long) [1737054]
+- [documentation] doc: Clarify RCU data-structure comment about rcu_tree fanout (Waiman Long) [1737054]
+- [documentation] doc: Set down forward-progress requirements (Waiman Long) [1737054]
+- [powerpc] powerpc: Convert hugepd_free() to use call_rcu() (Waiman Long) [1737054]
+- [s390] s390/mm: Convert tlb_table_flush() to use call_rcu() (Waiman Long) [1737054]
+- [kernel] sparc/oprofile: Convert timer_stop() to use synchronize_rcu() (Waiman Long) [1737054]
+- [kernel] sched/membarrier: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1737054]
+- [kernel] rcu: Consolidate the RCU update functions invoked by sync.c (Waiman Long) [1737054]
+- [kernel] rcu: Eliminate synchronize_rcu_mult() (Waiman Long) [1737054]
+- [kernel] rcu: Fix rcu_{node, data} comments about gp_seq_needed (Waiman Long) [1737054]
+- [kernel] rcu: Remove unused rcu_state externs (Waiman Long) [1737054]
+- [kernel] rcu: Eliminate BUG_ON() for kernel/rcu/tree.c (Waiman Long) [1737054]
+- [kernel] rcu: Eliminate BUG_ON() for sync.c (Waiman Long) [1737054]
+- [include] srcu: Add notrace variant of srcu_dereference (Waiman Long) [1737054]
+- [documentation] PM/EM: Document the Energy Model framework (Phil Auld) [1718927]
+- [kernel] sched/doc: Document Energy Aware Scheduling (Phil Auld) [1718927]
+- [kernel] sched/fair: Remove unneeded prototype of capacity_of() (Phil Auld) [1718927]
+- [kernel] sched/fair: Skip LLC NOHZ logic for asymmetric systems (Phil Auld) [1718927]
+- [kernel] sched/fair: Tune down misfit NOHZ kicks (Phil Auld) [1718927]
+- [kernel] sched/fair: Comment some nohz_balancer_kick() kick conditions (Phil Auld) [1718927]
+- [kernel] sched/fair: Prune, fix and simplify the nohz_balancer_kick() comment block (Phil Auld) [1718927]
+- [kernel] sched/fair: Explain LLC nohz kick condition (Phil Auld) [1718927]
+- [kernel] sched/fair: Simplify nohz_balancer_kick() (Phil Auld) [1718927]
+- [kernel] sched/topology: Fix percpu data types in struct sd_data & struct s_data (Phil Auld) [1718927]
+- [kernel] sched/fair: Simplify post_init_entity_util_avg() by calling it with a task_struct pointer argument (Phil Auld) [1718927]
+- [kernel] sched/fair: Fix util_avg of new tasks for asymmetric systems (Phil Auld) [1718927]
+- [kernel] sched/fair: Optimize update_blocked_averages() (Phil Auld) [1718927]
+- [kernel] sched/topology: Introduce a sysctl for Energy Aware Scheduling (Phil Auld) [1718927]
+- [kernel] Revert "sched/core: Take the hotplug lock in sched_init_smp()" (Phil Auld) [1718927]
+- [kernel] cpu/hotplug: Mute hotplug lockdep during init (Phil Auld) [1718927]
+- [kernel] sched/fair: Select an energy-efficient CPU on task wake-up (Phil Auld) [1718927]
+- [kernel] sched/fair: Introduce an energy estimation helper function (Phil Auld) [1718927]
+- [kernel] sched/fair: Add over-utilization/tipping point indicator (Phil Auld) [1718927]
+- [kernel] sched/fair: Clean-up update_sg_lb_stats parameters (Phil Auld) [1718927]
+- [kernel] sched/toplogy: Introduce the 'sched_energy_present' static key (Phil Auld) [1718927]
+- [kernel] sched/topology: Make Energy Aware Scheduling depend on schedutil (Phil Auld) [1718927]
+- [kernel] sched/topology: Disable EAS on inappropriate platforms (Phil Auld) [1718927]
+- [kernel] sched/topology: Add lowest CPU asymmetry sched_domain level pointer (Phil Auld) [1718927]
+- [kernel] sched/topology: Reference the Energy Model of CPUs when available (Phil Auld) [1718927]
+- [kernel] PM: Introduce an Energy Model management framework (Phil Auld) [1718927]
+- [kernel] sched/cpufreq: Prepare schedutil for Energy Aware Scheduling (Phil Auld) [1718927]
+- [kernel] sched/topology: Relocate arch_scale_cpu_capacity() to the internal header (Phil Auld) [1718927]
+- [kernel] sched/core: Take the hotplug lock in sched_init_smp() (Phil Auld) [1718927]
+- [kernel] sched/core: Disable SD_PREFER_SIBLING on asymmetric CPU capacity domains (Phil Auld) [1718927]
+- [kernel] sched/fair: Don't move tasks to lower capacity CPUs unless necessary (Phil Auld) [1718927]
+- [kernel] sched/fair: Set rq->rd->overload when misfit (Phil Auld) [1718927]
+- [kernel] sched/fair: Wrap rq->rd->overload accesses with READ/WRITE_ONCE() (Phil Auld) [1718927]
+- [kernel] sched/core: Change root_domain->overload type to int (Phil Auld) [1718927]
+- [kernel] sched/fair: Change 'prefer_sibling' type to bool (Phil Auld) [1718927]
+- [kernel] sched/fair: Kick nohz balance if rq->misfit_task_load (Phil Auld) [1718927]
+- [kernel] sched/fair: Consider misfit tasks when load-balancing (Phil Auld) [1718927]
+- [kernel] sched/fair: Add sched_group per-CPU max capacity (Phil Auld) [1718927]
+- [kernel] sched/fair: Add 'group_misfit_task' load-balance type (Phil Auld) [1718927]
+- [kernel] sched/topology: Add static_key for asymmetric CPU capacity optimizations (Phil Auld) [1718927]
+- [kernel] sched/core, workqueues: Distangle worker accounting from rq lock (Phil Auld) [1737067]
+- [kernel] workqueue: Use normal rcu (Phil Auld) [1737067]
+- [kernel] tick/broadcast: Fix warning about undefined tick_broadcast_oneshot_offline() (Phil Auld) [1737067]
+- [kernel] timer/trace: Improve timer tracing (Phil Auld) [1737067]
+- [include] timer/trace: Replace deprecated vsprintf pointer extension pf by ps (Phil Auld) [1737067]
+- [kernel] timer: Move trace point to get proper index (Phil Auld) [1737067]
+- [kernel] tick/sched: Update tick_sched struct documentation (Phil Auld) [1737067]
+- [kernel] tick: Remove outgoing CPU from broadcast masks (Phil Auld) [1737067]
+- [kernel] timekeeping: Consistently use unsigned int for seqcount snapshot (Phil Auld) [1737067]
+- [kernel] sched/fair: Robustify CFS-bandwidth timer locking (Phil Auld) [1737067]
+- [kernel] tick/sched : Remove redundant cpu_online() check (Phil Auld) [1737067]
+- [misc] sched/swait: Rename to exclusive (Phil Auld) [1737067]
+- [kernel] sched/swait: Switch to full exclusive mode (Phil Auld) [1737067]
+- [kernel] sched/swait: Remove __prepare_to_swait (Phil Auld) [1737067]
+- [netdrv] net: ena: don't wake up tx queue when down (John Linville) [1722628]
+- [netdrv] Revert "net: ena: ethtool: add extra properties retrieval via get_priv_flags" (John Linville) [1722628]
+- [netdrv] net: ena: Fix bug where ring allocation backoff stopped too late (John Linville) [1722628]
+- [netdrv] net: ena: update driver version from 2.0.3 to 2.1.0 (John Linville) [1722628]
+- [netdrv] net: ena: remove inline keyword from functions in *.c (John Linville) [1722628]
+- [netdrv] net: ena: add ethtool function for changing io queue sizes (John Linville) [1722628]
+- [netdrv] net: ena: allow queue allocation backoff when low on memory (John Linville) [1722628]
+- [netdrv] net: ena: make ethtool show correct current and max queue sizes (John Linville) [1722628]
+- [netdrv] net: ena: enable negotiating larger Rx ring size (John Linville) [1722628]
+- [netdrv] net: ena: add MAX_QUEUES_EXT get feature admin command (John Linville) [1722628]
+- [netdrv] net: ena: use dev_info_once instead of static variable (John Linville) [1722628]
+- [netdrv] net: ena: add good checksum counter (John Linville) [1722628]
+- [netdrv] net: ena: optimise calculations for CQ doorbell (John Linville) [1722628]
+- [netdrv] net: ena: add support for changing max_header_size in LLQ mode (John Linville) [1722628]
+- [netdrv] net: ena: allow automatic fallback to polling mode (John Linville) [1722628]
+- [netdrv] net: ena: add newline at the end of pr_err prints (John Linville) [1722628]
+- [netdrv] net: ena: arrange ena_probe() function variables in reverse christmas tree (John Linville) [1722628]
+- [netdrv] net: ena: replace free_tx/rx_ids union with single free_ids field in ena_ring (John Linville) [1722628]
+- [netdrv] net: ena: ethtool: add extra properties retrieval via get_priv_flags (John Linville) [1722628]
+- [netdrv] net: ena: add handling of llq max tx burst size (John Linville) [1722628]
+- [netdrv] net: ena: gcc 8: fix compilation warning (John Linville) [1722628]
+- [netdrv] net: ena: fix ena_com_fill_hash_function() implementation (John Linville) [1722628]
+- [netdrv] net: ena: improve latency by disabling adaptive interrupt moderation by default (John Linville) [1722628]
+- [netdrv] net: ena: fix return value of ena_com_config_llq_info() (John Linville) [1722628]
+- [netdrv] net: ena: fix incorrect test of supported hash function (John Linville) [1722628]
+- [netdrv] net: ena: fix: Free napi resources when ena_up() fails (John Linville) [1722628]
+- [netdrv] net: ena: fix: set freed objects to NULL to avoid failing future allocations (John Linville) [1722628]
+- [netdrv] net: ena: fix swapped parameters when calling ena_com_indirect_table_fill_entry (John Linville) [1722628]
+- [arm64] arm64: kexec: Add comment to explain use of __flush_icache_range() (Mark Salter) [1757450]
+- [arm64] arm64: kexec: machine_kexec should call __flush_icache_range (Mark Salter) [1757450]
+- [arm64] arm64: Do not issue IPIs for user executable ptes (Mark Salter) [1757450]
+- [arm64] arm64: hibernate: Avoid sending cross-calling with interrupts disabled (Mark Salter) [1757450]
+- [arm64] arm64: mm: Export __flush_icache_range() to modules (Mark Salter) [1757450]
+- [arm64] arm64: IPI each CPU after invalidating the I-cache for kernel mappings (Mark Salter) [1757450]
+- [s390] s390/dasd: Handle out-of-space constraint (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Use ALIGN_DOWN macro (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Make dasd_setup_queue() a discipline function (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Add new ioctl to release space (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Add dasd_sleep_on_queue_interruptible() (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Add missing intensity definition (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Fix whitespace (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Add dynamic formatting support for ESE volumes (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Recognise data for ESE volumes (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Put sub-order definitions in a separate section (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Make layout analysis ESE compatible (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Remove old defines and function (Philipp Rudo) [1525398]
+- [s390] s390/dasd: Remove unused structs and function prototypes (Philipp Rudo) [1525398]
+- [tools] perf report: Dump s390 counter set data to file (Philipp Rudo) [1731036]
+- [tools] perf report: Display arch specific diagnostic counter sets, starting with s390 (Philipp Rudo) [1731036]
+- [tools] perf report: Add s390 diagnosic sampling descriptor size (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf_diag: Add support for CPU-MF SVN 6 (Philipp Rudo) [1731036]
+- [s390] s390/cpumf: Fix warning from check_processor_id (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf_diag: Add support for s390 counter facility diagnostic trace (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: Handle EBUSY return code from CPU counter facility reservation (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: add ctr_stcctm() function (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: move common functions into a separate file (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: introduce kernel_cpumcf_avail() function (Philipp Rudo) [1731036]
+- [s390] s390/cpu_mf: replace stcctm5() with the stcctm() function (Philipp Rudo) [1731036]
+- [s390] s390/cpu_mf: add store cpu counter multiple instruction support (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: Add minimal in-kernel interface for counter measurements (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: introduce kernel_cpumcf_alert() to obtain measurement alerts (Philipp Rudo) [1731036]
+- [s390] s390/cpu_mf: move struct cpu_cf_events and per-CPU variable to header file (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: rename per-CPU counter facility structure and variables (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: prepare for in-kernel counter measurements (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: move counter set controls to a new header file (Philipp Rudo) [1731036]
+- [s390] s390/cpum_cf: Reject request for sampling in event initialization (Philipp Rudo) [1731036]
+- [s390] s390/perf: Change CPUM_CF return code in event init function (Philipp Rudo) [1731036]
+- [acpi] ACPI / property: Add two new Thunderbolt property GUIDs to the list (Jarod Wilson) [1483494]
+- [acpi] ACPI: property: restore _DSD data subnodes GUID comment (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add support for Intel Ice Lake (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Expose active parts of NVM even if upgrade is not supported (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Hide switch attributes that are not set (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Do not fail adding switch if some port is not implemented (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Use 32-bit writes when writing ring producer/consumer (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Move NVM upgrade support flag to struct icm (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Correct path indices for PCIe tunnel (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Show key using *pE not *pEp (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Switch to use device_property_count_uXX() (Jarod Wilson) [1483494]
+- [include] device property: Add helpers to count items in an array (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Implement CIO reset correctly for Titan Ridge (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Make sure device runtime resume completes before taking domain lock (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add SPDX license identifier - Makefile/Kconfig (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add SPDX license identifier for more missed files (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Make priority unsigned in struct tb_path (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: shash - remove shash_desc::flags (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Start firmware on Titan Ridge Apple systems (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Reword output of tb_dump_hop() (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Make rest of the logging to happen at debug level (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Make __TB_[SW|PORT]_PRINT take const parameters (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add support for XDomain connections (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Make tb_switch_alloc() return ERR_PTR() (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add support for DMA tunnels (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add XDomain UUID exchange support (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Run tb_xdp_handle_request() in system workqueue (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Do not tear down tunnels when driver is unloaded (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add support for Display Port tunnels (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Rework NFC credits handling (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Generalize port finding routines to support all port types (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Scan only valid NULL adapter ports in hotplug (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add support for full PCIe daisy chains (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Discover preboot PCIe paths the boot firmware established (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Deactivate all paths before restarting them (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Extend tunnel creation to more than 2 adjacent switches (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add helper function to iterate from one port to another (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Assign remote for both ports in case of dual link (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add functions for allocating and releasing HopIDs (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Generalize tunnel creation functionality (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Rename tunnel_pci to tunnel (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Cache adapter specific capability offset into struct port (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Properly disable path (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Set sleep bit when suspending switch (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Configure lanes when switch is initialized (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Move LC specific functionality into a separate file (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Add dummy read after port capability list walk on Light Ridge (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Enable TMU access when accessing port space on legacy devices (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Do not allocate switch if depth is greater than 6 (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Take domain lock in switch sysfs attribute callbacks (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Block reads and writes if switch is unplugged (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Drop duplicated get_switch_at_route() (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Remove unused work field in struct tb_switch (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Fix to check the return value of kmemdup (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: property: Fix a missing check of kzalloc (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: xdomain: Fix to check return value of kmemdup (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Fix to check return value of ida_simple_get (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Fix to check for kmemdup failure (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Fix a missing check of kmemdup (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: property: Fix a NULL pointer dereference (Jarod Wilson) [1483494]
+- [thunderbolt] thunderbolt: Prevent root port runtime suspend during NVM upgrade (Jarod Wilson) [1483494]
+- [netdrv] net/ibmvnic: prevent more than one thread from running in reset (Steve Best) [1756943]
+- [netdrv] net/ibmvnic: unlock rtnl_lock in reset so linkwatch_event can run (Steve Best) [1756943]
+- [netdrv] sfc: don't score irq moderation points for GRO (Jarod Wilson) [1736303]
+- [netdrv] sfc: Use dev_get_drvdata where possible (Jarod Wilson) [1736303]
+- [netdrv] sfc: Remove 'PCIE error reporting unavailable' (Jarod Wilson) [1736303]
+- [netdrv] sfc: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Jarod Wilson) [1736303]
+- [netdrv] sfc: Add SPDX license identifier - Makefile/Kconfig (Jarod Wilson) [1736303]
+- [netdrv] bonding: no need to print a message if debugfs_create_dir() fails (Jarod Wilson) [1756517]
+- [netdrv] bonding: Add vlan tx offload to hw_enc_features (Jarod Wilson) [1756517]
+- [netdrv] bonding: fix value exported by Netlink for peer_notif_delay (Jarod Wilson) [1756517]
+- [netdrv] bonding: add an option to specify a delay between peer notifications (Jarod Wilson) [1756517]
+- [netdrv] bonding: validate ip header before check IPPROTO_IGMP (Jarod Wilson) [1756517]
+- [netdrv] bonding/main: fix NULL dereference in bond_select_active_slave() (Jarod Wilson) [1756517]
+- [netdrv] bonding: Always enable vlan tx offload (Jarod Wilson) [1756517]
+- [netdrv] bonding/options: convert to using slave printk macros (Jarod Wilson) [1756517]
+- [netdrv] bonding/alb: convert to using slave printk macros (Jarod Wilson) [1756517]
+- [netdrv] bonding/802.3ad: convert to using slave printk macros (Jarod Wilson) [1756517]
+- [netdrv] bonding/main: convert to using slave printk macros (Jarod Wilson) [1756517]
+- [netdrv] bonding: add slave_foo printk macros (Jarod Wilson) [1756517]
+- [netdrv] bonding: fix error messages in bond_do_fail_over_mac (Jarod Wilson) [1756517]
+- [netdrv] bonding: improve event debug usability (Jarod Wilson) [1756517]
+- [netdrv] net: bonding: Inherit MPLS features from slave devices (Jarod Wilson) [1756517]
+- [netdrv] bonding: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (Jarod Wilson) [1756517]
+- [netdrv] bonding: Replace GPLv2 boilerplate/reference with SPDX - rule 90 (Jarod Wilson) [1756517]
+- [netdrv] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 5 (Jarod Wilson) [1756517]
+- [netdrv] bonding: Add SPDX license identifier - Makefile/Kconfig (Jarod Wilson) [1756517]
+- [powerpc] powerpc/fadump: support holes in kernel boot memory area (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: remove RMA_START and RMA_END macros (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: update documentation about option to release opalcore (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: consider f/w load area (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/opalcore: provide an option to invalidate /sys/firmware/opal/core file (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/opalcore: enable CONFIG_OPAL_CORE for FADUMP (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/opalcore: export /sys/firmware/opal/core for analysing opal crashes (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: update documentation about CONFIG_PRESERVE_FA_DUMP (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: add support to preserve crash data on FADUMP disabled kernel (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: improve how crashed kernel's memory is reserved (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: consider reserved ranges while releasing memory (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: make crash memory ranges array allocation generic (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: process architected register state data provided by firmware (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: make use of memblock's bottom up allocation mode (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: Update documentation about OPAL platform support (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: handle invalidation of crashdump and re-registraion (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: Warn before processing partial crashdump (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: process the crashdump by exporting it as /proc/vmcore (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: support copying multiple kernel boot memory regions (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: define OPAL register/un-register callback functions (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: reset metadata address during clean up (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: register kernel metadata address with opal (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: improve fadump_reserve_mem() (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: add fadump support on powernv (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/opal: add MPIPL interface definitions (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/powernv: Make possible for user to force a full ipl cec reboot (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: use FADump instead of fadump for how it is pronounced (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] pseries/fadump: move out platform specific support from generic code (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: release all the memory above boot memory size (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: add source info while displaying region contents (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] pseries/fadump: define RTAS register/un-register callback functions (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: introduce callbacks for platform specific operations (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: move rtas specific definitions to platform code (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: define an empty fadump_cleanup() (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: use helper functions to reserve/release cpu notes buffer (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: Improve fadump documentation (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: declare helper functions in internal header file (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: add helper functions (Desnes Augusto Nunes do Rosario) [1524687]
+- [powerpc] powerpc/fadump: move internal macros/definitions to a new header (Desnes Augusto Nunes do Rosario) [1524687]
+- [watchdog] watchdog: iTCO: Add support for Cannon Lake PCH iTCO (Alexander Beregalov) [1724532]
+- [i2c] i2c: i801: Use iTCO version 6 in Cannon Lake PCH and beyond (Alexander Beregalov) [1724532]
+- [i2c] i2c: i801: Allow ACPI AML access I/O ports not reserved for SMBus (Alexander Beregalov) [1724532]
+- [block] loop: set PF_MEMALLOC_NOIO for the worker thread (Ming Lei) [1741392]
+- [fs] bdev: Fixup error handling in blkdev_get() (Ming Lei) [1741392]
+- [block] loop: Fix mount(2) failure due to race with LOOP_SET_FD (Ming Lei) [1741392]
+- [block] block, bfq: handle NULL return value by bfq_init_rq() (Ming Lei) [1741392]
+- [block] block, bfq: move update of waker and woken list to queue freeing (Ming Lei) [1741392]
+- [block] block, bfq: reset last_completed_rq_bfqq if the pointed queue is freed (Ming Lei) [1741392]
+- [block] block: aoe: Fix kernel crash due to atomic sleep when exiting (Ming Lei) [1741392]
+- [block] rq-qos: use a mb for got_token (Ming Lei) [1741392]
+- [block] rq-qos: set ourself TASK_UNINTERRUPTIBLE after we schedule (Ming Lei) [1741392]
+- [block] rq-qos: don't reset has_sleepers on spurious wakeups (Ming Lei) [1741392]
+- [block] rq-qos: fix missed wake-ups in rq_qos_throttle (Ming Lei) [1741392]
+- [include] wait: add wq_has_single_sleeper helper (Ming Lei) [1741392]
+- [block] block, bfq: check also in-flight I/O in dispatch plugging (Ming Lei) [1741392]
+- [block] block: fix sysfs module parameters directory path in comment (Ming Lei) [1741392]
+- [block] block: Allow mapping of vmalloc-ed buffers (Ming Lei) [1741392]
+- [block] block/bio-integrity: fix a memory leak bug (Ming Lei) [1741392]
+- [block] block: Disable write plugging for zoned block devices (Ming Lei) [1741392]
+- [block] blk-throttle: fix zero wait time for iops throttled group (Ming Lei) [1741392]
+- [block] block: Fix potential overflow in blk_report_zones() (Ming Lei) [1741392]
+- [block] blk-cgroup: turn on psi memstall stuff (Ming Lei) [1741392]
+- [block] block: init flush rq ref count to 1 (Ming Lei) [1741392]
+- [lib] sbitmap: Replace cmpxchg with xchg (Ming Lei) [1741392]
+- [block] block: Remove unused code (Ming Lei) [1741392]
+- [block] block, bfq: Init saved_wr_start_at_switch_to_srt in unlikely case (Ming Lei) [1741392]
+- [block] block, bfq: re-schedule empty queues if they deserve I/O plugging (Ming Lei) [1741392]
+- [block] block, bfq: preempt lower-weight or lower-priority queues (Ming Lei) [1741392]
+- [block] block, bfq: detect wakers and unconditionally inject their I/O (Ming Lei) [1741392]
+- [block] block, bfq: bring forward seek&think time update (Ming Lei) [1741392]
+- [block] block, bfq: update base request service times when possible (Ming Lei) [1741392]
+- [block] block, bfq: fix rq_in_driver check in bfq_update_inject_limit (Ming Lei) [1741392]
+- [block] block, bfq: reset inject limit when think-time state changes (Ming Lei) [1741392]
+- [kernel] cgroup: export css_next_descendant_pre for bfq (Ming Lei) [1741392]
+- [block] block: update print_req_error() (Ming Lei) [1741392]
+- [block] block: use blk_op_str() in blk-mq-debugfs.c (Ming Lei) [1741392]
+- [block] block: add centralize REQ_OP_XXX to string helper (Ming Lei) [1741392]
+- [block] block: improve print_req_error (Ming Lei) [1741392]
+- [block] block: rename CONFIG_DEBUG_BLK_CGROUP to CONFIG_BFQ_CGROUP_DEBUG (Ming Lei) [1741392]
+- [block] bfq-iosched: move bfq_stat_recursive_sum into the only caller (Ming Lei) [1741392]
+- [block] blk-cgroup: move struct blkg_stat to bfq (Ming Lei) [1741392]
+- [block] blk-cgroup: introduce a new struct blkg_rwstat_sample (Ming Lei) [1741392]
+- [block] blk-cgroup: pass blkg_rwstat structures by reference (Ming Lei) [1741392]
+- [block] blk-cgroup: factor out a helper to read rwstat counter (Ming Lei) [1741392]
+- [block] block: drbd: no need to check return value of debugfs_create functions (Ming Lei) [1741392]
+- [block] blk-core: Remove blk_end_request*() declarations (Ming Lei) [1741392]
+- [block] block: code cleanup queue_poll_stat_show() (Ming Lei) [1741392]
+- [block] block: use right format specifier for op (Ming Lei) [1741392]
+- [block] block: get rid of redundant else (Ming Lei) [1741392]
+- [block] block: use req_op() to maintain consistency (Ming Lei) [1741392]
+- [fs] blkcg, writeback: dead memcgs shouldn't contribute to writeback ownership arbitration (Ming Lei) [1741392]
+- [block] blkcg: blkcg_activate_policy() should initialize ancestors first (Ming Lei) [1741392]
+- [block] blkcg: perpcu_ref init/exit should be done from blkg_alloc/free() (Ming Lei) [1741392]
+- [block] blkcg: update blkcg_print_stat() to handle larger outputs (Ming Lei) [1741392]
+- [block] block: bio: Use struct_size() in kmalloc() (Ming Lei) [1741392]
+- [block] block: genhd: Use struct_size() helper (Ming Lei) [1741392]
+- [block] block: null_blk: fix race condition for null_del_dev (Ming Lei) [1741392]
+- [block] blk-mq/debugfs: Fix improper print qualifier (Ming Lei) [1741392]
+- [block] loop: Don't change loop device under exclusive opener (Ming Lei) [1741392]
+
+* Wed Oct 09 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.6.el8]
+- [documentation] timekeeping.txt: Correct maxCount of n-bit binary counter (Jaroslav Kysela) [1738610]
+- [sound] ALSA: clk: Add (devm_)clk_get_optional() functions (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: uapi: align comments with firmware files (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: rename SOUNDWIRE to ALH (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: ipc: add ALH parameters (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: remove SPDX "WITH Linux-syscall-note" from kernel-space headers again (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc.h: fe_compr can be bit field (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc.h: fixup for_each_card_links() macro (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Define a set of DAPM pre/post-up events (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: use bit field for bus_control (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple_card_utils.h: care NULL dai at asoc_simple_debug_dai() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: remove an unused field from struct hda_codec (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: Avoid polluting led_* namespace (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Add Hiby device family to quirks for native DSD support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Update DSD support quirks for Oppo and Rotel (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: DSD auto-detection for Playback Designs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: remove some dead code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Fix possible NULL dereference at create_yamaha_midi_quirk() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Clean up check_input_term() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Remove superfluous bLength checks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Unify the release of usb_mixer_elem_info objects (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Simplify parse_audio_unit() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: More validations of descriptor units (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Check mixer unit bitmap yet more strictly (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: Fix memory leak at line6_init_pcm() error path (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Fix invalid NULL check in snd_emuusb_set_samplerate() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Add implicit fb quirk for Behringer UFX1604 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Fix a stack buffer overflow bug in check_input_term (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Fix an OOB bug in parse_audio_mixer_unit (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hiface: fix multiple memory leak bugs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Add Pioneer DDJ-SX3 PCM quirck (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Skip bSynchAddress endpoint check if it is invalid (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: fix PCM device order (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Unify audioformat release code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: fix a memory leak bug (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Fix gpf in snd_usb_pipe_sanity_check (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Scarlett Gen 2 mixer interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: sizeof (byte) is always 1, use that fact. (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: Fix a typo (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: Fix wrong altsetting for LINE6_PODHD500_1 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: fix Line6 Helix audio format rates (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Fix parse of UAC2 Extension Units (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: Fix write on zero-sized buffer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: fix sign unintended sign extension on left shifts (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Sanity checks for each pipe and EP types (Jaroslav Kysela) [1738610]
+- [sound] ALSA: usb-audio: Enable .product_name override for Emagic, Unitor 8. (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: Use container_of() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: Drop superfluous timer helper function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: variax: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: podhd: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: pod: Rewrite complex timer & work combo with a delayed work (Jaroslav Kysela) [1738610]
+- [sound] ALSA: line6: Assure canceling delayed work at disconnection (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 33 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: sparc: Mark expected switch fall-throughs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fix a memory leak bug (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ux500: mop500: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ux500: mop500: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ux500: mop500: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: txx9: txx9aclc-generic: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: rx51: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: rx51: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: rx51: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: osk5912: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap3pandora: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-twl4030: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-twl4030: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-twl4030: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-hdmi: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-hdmi: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-hdmi: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-abe-twl6040: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-abe-twl6040: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: omap-abe-twl6040: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: n810: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Fix slot mask settings when using multiple AXRs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Set unused serializers as INACTIVE (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: Fix SDMA users not providing channel names (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Support for auxclk-fs-ratio (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-evm: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-evm: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-evm: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: ams-delta: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: trimslice: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: trimslice: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: trimslice: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm9712: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm9712: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm9712: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm8903: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm8903: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm8903: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm8753: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm8753: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_wm8753: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_sgtl5000: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_sgtl5000: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_sgtl5000: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_rt5677: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_rt5677: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_rt5677: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_rt5640: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_rt5640: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_rt5640: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_max98090: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_max98090: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_max98090: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_alc5632: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_alc5632: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: tegra_alc5632: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: pass volume min/max linear value to FW (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: ignore unrecoverable CTX_SAVE IPC errors at suspend (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sunxi: sun50i-codec-analog: Add earpiece (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sunxi: sun4i-codec: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: stm32: spdifrx: manage identification registers (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: stm32: dfsdm: add 16 bits audio record support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: add cpu_dai_name for DAIs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: add min/max step for volume_table (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sof: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: ipc: clarify operator precedence (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASOC: SOF: ipc: prevent logging trace messages (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add new macro hstream_to_sof_hda_stream() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: make sure RUN bit setting to 0 during clear stream status (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda-stream: fix a deadlock with bus->reg_lock (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: modify stream interrupt handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: save handle to sdev in sof_intel_hda_stream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: remove misleading error trace from IRQ thread (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: dont wake dsp up in kcontrol IO (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: dapm: Fix handling of custom_stop_condition on DAPM graph walks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: compress: Fix memory leak from snd_soc_new_compress (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sirf: sirf-audio: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sirf: sirf-audio: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sirf: sirf-audio: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sh: sh7760-ac97: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rsnd: ssiu: tidyup SSI_MODE1/2 settings (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rsnd: fixup mod ID calculation in rsnd_ctu_probe_ (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rsnd: add missing pin sharing with SSI9 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sh: migor: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: tobermory: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: tm2_wm5110: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: tm2_wm5110: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: tm2_wm5110: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: speyside: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: snow: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: snow: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: snow: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: smdk_wm8994pcm: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: smdk_wm8994: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: smdk_wm8994: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: smdk_wm8994: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: smdk_wm8580: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: smdk_spdif: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: smartq_wm8987: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: s3c24xx_uda134x: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: s3c24xx_simtec_tlv320aic23: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: s3c24xx_simtec_hermes: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: rx1950_uda1380: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: odroid: fix a double-free issue for cpu_dai (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: odroid: fix an use-after-free issue for codec (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: odroid: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: neo1973_wm8753: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: lowland: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: littlemill: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: jive_wm8750: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: h1940_uda1380: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: bells: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: arndale_rt5631: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: arndale_rt5631: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: arndale_rt5631: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rockchip_rt5645: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rockchip_rt5645: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rockchip_rt5645: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip-max98090: Remove MICBIAS as supply of input pin IN34 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: SoC: rockchip: rockchip_max98090: Enable MICBIAS for headset keypress detection (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rockchip_max98090: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rk3399_gru_sound: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rk3399_gru_sound: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rk3399_gru_sound: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rk3399_gru_sound: Support 32, 44.1 and 88.2 kHz sample rates (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rk3288_hdmi_analog: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rk3288_hdmi_analog: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rk3288_hdmi_analog: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: pdm: select CONFIG_RATIONAL (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: storm: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: storm: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: storm: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: apq8016_sbc: Fix oops with multiple DAI links (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: apq8016_sbc: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: apq8016_sbc: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: tosa: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: hx4700: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: kernel: fix typos and some coding style in comments (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: Add missing Slimbus0 audio route (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: apq8016_sbc: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: zylonite: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: z2: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: ttc-dkb: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: spitz: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: pxa2xx-ac97.c: use devm_snd_soc_register_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: poodle: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: palm27x: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: mioa701_wm9713: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: magician: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: imote2: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: em-x270: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: e800_wm9712: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: e750_wm9705: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: e740_wm9705: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: corgi: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pxa: brownstone: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mxs: mxs-sgtl5000: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mxs: mxs-sgtl5000: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mxs: mxs-sgtl5000: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-toddr: add sm1 support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-toddr: expose all 8 inputs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: tdmout: add sm1 support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-tdmout: right_j is not supported (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: tdmin: expose all 16 inputs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-tdmin: right_j is not supported (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-tdm: fix sample clock inversion (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-tdm: consistently use SND_SOC_DAIFMT defines (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: g12a-tohdmitx: require regmap mmio (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-tdm-formatter: free reset on device removal (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-tdm-formatter: add reset (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-spdifout: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-spdifin: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-pdm: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-frddr: expose all 8 outputs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-frddr: add sm1 support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-fifo: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8173-rt5650: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8173-rt5650-rt5676: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8173-rt5650-rt5514: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8173-max98090: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt6797-mt6351: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt2701-wm8960: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt2701-cs42448: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Add missing newline at end of file (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: kirkwood: armada-370-db: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: kirkwood: armada-370-db: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: kirkwood: armada-370-db: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: jz4740: qi_lb60: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 239 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Fix incorrect capture position reporting (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Fix NULL ptr dereference when unloading clk dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Don't return failure on machine driver reload (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Do not disable FW notifications (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof_rt5682: use GFP_KERNEL instead of GFP_ATOMIC (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof-rt5682: correct naming for dmic16k (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof_rt5682: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Add quirk for Irbis NB41 netbook (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bxt-da7219-max98357a: add BE dailink for dmic16k (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof-rt5682: add MCLK support for BYT platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: skl_rt286: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: skl_nau88l25_ssm4567: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: skl_nau88l25_max98357a: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: skl_hda_dsp_common: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: kbl_rt5663_rt5514_max98927: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: kbl_rt5663_max98927: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: kbl_rt5660: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98927: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: boards: kbl_da7219_max98927: add dai_trigger function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98357a: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: haswell: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: glk_rt5682_max98357a: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5672: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5645: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: cht_bsw_nau8824: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: cht_bsw_max98090_ti: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bytcht_nocodec: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bytcht_da7213: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bytcht_cx2072x: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: byt-rt5640: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: byt-max98090: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bxt_rt298: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bxt_da7219_max98357a: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: broadwell: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: audio-graph-card: fix use-after-free in graph_for_each_link (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: audio-graph-card: add missing const at graph_get_dai_id() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: phycore-ac97: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple-card-utils: care no Platform for DPCM (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: audio-graph-card: fix use-after-free in graph_dai_link_of_dpcm() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: audio-graph-card: fix an use-after-free in graph_get_dai_id() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: wm1133-ev1: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: pcm030-audio-fabric: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-es8328: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-es8328: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-audmix: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-audmix: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: mx27vis-aic32x4: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-spdif: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-spdif: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-spdif: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-sgtl5000: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-sgtl5000: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-sgtl5000: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-mc13783: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-es8328: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-es8328: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-es8328: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-audmix: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-audmix: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: imx-audmix: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: mpc8610_hpcd/p1022_ds/p1022_rdk: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: no need to check return value of debugfs_create functions (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: fsl-asoc-card: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: eukrea-tlv320: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl: efika-audio-fabric: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wm_adsp: Allow bus error handler to be called directly (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wm_adsp: no need to check return value of debugfs_create functions (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wcd9335: remove multiple defines. (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wcd9335: add irqflag IRQF_ONESHOT flag (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wcd9335: Fix misuse of GENMASK macro (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tlv320aic31xx: suppress error message for EPROBE_DEFER (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tas571x: Fix -Wunused-const-variable (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sgtl5000: Fix charge pump source assignment (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sgtl5000: Fix of unmute outputs on probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sgtl5000: add ADC mute control (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sgtl5000: Improve VAG power and mute control (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sgtl5000: Fix definition of VAG Ramp Control (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5682: use devm_snd_soc_register_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677-spi: Rename driver to differentiate from main codec (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5665: remove redundant assignment to variable idx (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5514-spi: don't use snd_soc_lookup_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1308: simplify the EFUSE read function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1308: Remove executable attribute from source files (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1308: Fix platform_no_drv_owner.cocci warnings (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1308: add silence detection and manual PDB control (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1308: Convert headers to SPDX (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: fix DC calibration offset not applying (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Relocate my e-mail to .com domain zone (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: nau8825: fix fake interruption when booting (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: nau8822: support master mode (Jaroslav Kysela) [1738610]
+- [sound] ALSA: soc: codecs: mt6358: change return type of mt6358_codec_init_reg (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: msm8916-wcd-digital: Add sidetone support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98383: fix i2c probe failure (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 496 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdac_hdmi: report codec link up/down status to bus (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codec: hdac_hdmi: fix pin connections at cvt enable (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 463 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cx2072x: mark PM function as __maybe_unused (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98357a: use mdelay for sdmode-delay (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98357a: avoid speaker pop when playback startup (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs42xx8: Fix MFREQ selection issue for async mode (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cros_ec_codec: use devm_snd_soc_register_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ak4118: use devm_snd_soc_register_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: spi: AD ASoC: declare missing of table (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ab8500: add range to usleep_range (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cirrus: snappercl15: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cirrus: simone: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cirrus: ep93xx-i2s.c: use devm_snd_soc_register_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cirrus: edb93xx: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: bcm: cygnus-pcm: Unneeded variable: "ret". (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: au1x: psc-i2s.c: use devm_snd_soc_register_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: au1x: db1200: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: au1x: db1000: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: tse850-pcm5142: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: tse850-pcm5142: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: tse850-pcm5142: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: sam9x5_wm8731: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: sam9x5_wm8731: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: sam9x5_wm8731: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: sam9g20_wm8731: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: mikroe-proto: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: atmel-wm8904: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: atmel-pdmic: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: atmel-pcm-dma.c: use devm_snd_dmaengine_pcm_register() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 234 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: atmel-classd: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: amd: acp-rt5645: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: amd: acp-da7219-max98357a: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 200 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ps3: Remove Unneeded variable: "ret" (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 277 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: rme9652: Unneeded variable: "result". (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 274 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hdspm: Fix single speed ADAT capture and playback with RME HDSPe AIO (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 264 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 404 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: lx6464es - Remove set but not used variables 'orun_mask, urun_mask' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: lx6464es: Remove unneeded variable err (Jaroslav Kysela) [1738610]
+- [sound] ALSA: lx6464es - add support for LX6464ESe pci express variant (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ice1712: Check correct return value to snd_i2c_sendbytes (EWS/DMX 6Fire) (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 29 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 46 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: emu10k1: Remove unneeded variable "change" (Jaroslav Kysela) [1738610]
+- [sound] ALSA: echoaudio: Replace kmalloc + memcpy with kmemdup (Jaroslav Kysela) [1738610]
+- [sound] ALSA: pci: echoaudio: remove variable which is a constant (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 364 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 118 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: cs4281: remove redundant assignment to variable val and remove a goto (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 32 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 116 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 456 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: au88x0: Remove unneeded variable: "changed" (Jaroslav Kysela) [1738610]
+- [sound] ALSA: asihpi: Remove unneeded variable change (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 88 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ac97: remove unused variable 'snd_ac97_controls_master_mono' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dmasound_atari: Mark expected switch fall-through (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 176 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: i2c: ak4xxx-adda: Fix a possible null pointer dereference in build_adc_controls() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: isa/wavefront: remove redundant assignment to pointer bptr (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 370 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: sb: remove redundant assignment to variable result (Jaroslav Kysela) [1738610]
+- [sound] ALSA: Revert "ALSA: hda: Add codec on bus address table lately" (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Unexport a few more stuff (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Drop export of snd_hdac_bus_add/remove_device() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Add codec on bus address table lately (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: readl/writel need linux/io.h (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: intel-nhlt: handle NHLT VENDOR_DEFINED DMIC geometry (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: move parts of NHLT code to new module (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Fix 1-minute detection delay when i915 module is not available (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Fix a headphone detection issue when using SOF (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: fix: lock reg_lock before calling snd_hdac_bus_update_rirb (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: add polling mode in snd_hdac_bus_get_response (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sdm845: remove unneeded semicolon (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: dmaengine: Replace strncpy() with strscpy_pad() for pcm->name (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wcd9335: remove redundant use of ret variable (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdmi-codec: Add an op to set callback function for plug event (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: self contained soc_unbind_aux_dev() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add soc_unbind_aux_dev() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: self contained soc_bind_aux_dev() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: move soc_probe_link_dais() next to soc_remove_link_dais() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: self contained soc_probe_link_dais() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add new soc_link_init() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: move soc_probe_dai() next to soc_remove_dai() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: self contained soc_remove_link_dais() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: self contained soc_remove_link_components() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: self contained soc_probe_link_components() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1308: make array pd static const, makes object smaller (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1305: make array pd static const, makes object smaller (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: make array pd static const, makes object smaller (Jaroslav Kysela) [1738610]
+- [sound] ALSA: SoC: simple-card-utils: set 0Hz to sysclk when shutdown (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: ignore 0Hz sysclk (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codecs: ad193x: make two arrays static const, makes object smaller (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codecs: ad193x: Use regmap_multi_reg_write() when initializing (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codecs: ad193x: Reset used registers at probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codecs: ad193x: Group register initialization at probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codecs: ad193x: Fix memory corruption on BE 64b systems (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: es8316: support fixed and variable both clock rates (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: es8316: fix redundant codes of clock (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: es8316: add DT-bindings (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: dmaengine: Make the pcm->name equal to pcm->id if the name is not set (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: imx8: Fix COMPILE_TEST error (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: common: Include link-name in error messages (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: consider CPU-Platform possibility (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: don't select unnecessary Platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: common: Fix NULL pointer in of parser (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: common: Mark links as nonatomic (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qcom: common: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add comment to jack at soc_remove_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sirf-audio: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ep93xx: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: amd: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: es8316: add clock control of MCLK (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: audio-graph: indicate rebind issue (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple-card: indicate rebind issue (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple-card: fix an use-after-free in simple_for_each_link() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple-card: fix an use-after-free in simple_dai_link_of_dpcm() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple-card: support snd_soc_dai_link_component style for cpu (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: move soc_probe_link_components() position (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add snd_soc_dapm_init() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: dapm related setup at one place (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: move soc_probe_component() position (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add soc_rtd_free() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: fix space issues (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: remove forward declaration of headset_init (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: move headset jack to card-specific storage (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: move private structure (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF/Intel: fix selection of SND_INTEL_NHTL (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: broadwell: Simplify device probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: Simplify device probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: haswell: Simplify device probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Haswell: Adjust machine device private context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-evm: Do not fail if the dai_set_sysclk returns -ENOTSUPP (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: edma-pcm: Fix for legacy dma_slave_map based channel lookup (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-i2s: Add S32_LE as support format (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-i2s: Move the XSYNCERR workaround to .prepare callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Baytrail: Fix implicit fallthrough warning (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_ssi: Fix clock control issue in master mode (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wcd9335: Fix primary interpolator max rate (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: fix tdm out data is valid on rising edge (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: tdm hw support tdm out and 8ch i2s out (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel_ssc_dai: implement left-justified data mode (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel_ssc_dai: rework DAI format configuration (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: atmel: enable SOC_SSC_PDC and SOC_SSC_DMA in Kconfig (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs42xx8: Force suspend/resume during system suspend/resume (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: fix tdm out data align issue (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: add mutex protection to set_fmt/set_tdm_slot (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: es8316: fix inverted L/R of headphone mixer volume (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: es8316: fix headphone mixer volume table (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Release topology when we are done with it (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Remove memory available check (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Remove MCPS available check (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Remove static table index when parsing topology (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Print module type instead of id (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: NHLT: Fix debug print format (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: dapm: Expose snd_soc_dapm_new_control_unlocked properly (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: topology: fix memory leaks on sm, se and sbe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: topology: Consolidate and fix asoc_tplg_dapm_widget_*_create flow (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: topology: Consolidate how dtexts and dvalues are freed (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-topology: fix modern dai link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-topology: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Use correct function to access iomem space (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: imx8: Fix an is IS_ERR() vs NULL check (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i: Revert A83t description (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: imx8: Fix return value check in imx8_probe() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: remove unused DAPM-related variables (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sunxi: Revert initial A83t support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: imx-audmix: register the card on a proper dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: imx8: Make some functions static (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: rename soc_post_component_init() to soc_rtd_init() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: initialize list at one place (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: fix get control data return type and arguments (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: initialize component list (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-topology: use for_each_component_dais() at remove_dai() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: soc_cleanup_card_resources() become void (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add NOTE to snd_soc_rtdcom_lookup() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: use device_register() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: switch tdm pins gpio function when playback on or off (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt2701: Fix -Wunused-const-variable warnings (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wm8988: fix typo in wm8988_right_line_controls (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: imx: Add i.MX8 HW support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Add OF DSP device support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: AMD: Fix Kconfig warning without GPIOLIB (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Add support for DSP formats (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Replace call to params_width by local variable (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Use the actual format width instead of an hardcoded one (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Use the physical / slot width for the clocks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Add support for TDM slots (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: remove unneeded dai_link check from snd_soc_remove_dai_link() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: merge snd_soc_initialize_card_lists() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: Add support for imx8qm (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mchp-i2s-mcc: Fix simultaneous capture and playback in master mode (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mchp-i2s-mcc: Wait for RX/TX RDY only if controller is running (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mchp-i2s-mcc: Fix unprepare of GCLK (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Support more channels (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Pass the channels number as an argument (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Remove duplicated quirks structure (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Fix the LRCK period on A83t (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Fix MCLK Enable bit offset on A83t (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Fix WSS and SR fields for the A83t (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Fix the LRCK polarity (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Fix LRCK and BCLK polarity offsets on newer SoCs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: RX and TX counter registers are swapped (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Fix the MCLK and BCLK dividers on newer SoCs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Use module clock as BCLK parent on newer SoCs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Move the format configuration to a callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Move the channel configuration to a callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Rework MCLK divider calculation (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Replace call to params_channels by local variable (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Don't use the oversample to calculate BCLK (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Switch to devm for PCM register (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Register regmap and PCM before our component (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wm8904: implement input mode select as a mux (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wm8904: fix typo in DAPM kcontrol name (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: intel: cht_bsw_max98090_ti: Add all Chromebooks that need pmc_plt_clk_0 quirk (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: uniphier: Fix double reset assersion when transitioning to suspend state (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: initial support for Intel ALH DAI type (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: Add dummy support for i.MX8 DAIs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: imx-audmux: Add driver suspend and resume to support MEGA Fast (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: common: add ACPI matching tables for EHL (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: common: add ACPI matching tables for Tiger Lake (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: boards: Add Cometlake machine driver support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: core: Move pcm_mutex up to card level from snd_soc_pcm_runtime (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: 88pm860x: remove unused variables 'pcm_switch_controls' and 'aif1_mux' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs42l56: remove unused variable 'adc_swap_enum' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: es8328: remove unused variable 'pga_tlv' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tlv320aic31xx: remove unused variable 'cm_m_enum' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tlv320aic23: remove unused variable 'tlv320aic23_rec_src' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: remove unused variable 'dac_vol_tlv' and 'adc_vol_tlv' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98371: remove unused variable 'max98371_noload_gain_tlv' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs42l73: remove unused variables 'vsp_output_mux' and 'xsp_output_mux' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Print constant literals from format specifier (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt6358: add delay after dmic clock on (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183-mt6358-ts3a227-max98357: remove unused variables (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219-max98357: remove unused variable (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219-max98357: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mt2701: remove unused variables (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: Fix -Wunused-const-variable warning (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wm8737: Fix copy-paste error in wm8737_snd_controls (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs4349: Use PM ops 'cs4349_runtime_pm' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: es8328: Fix copy-paste error in es8328_right_line_controls (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: hsw: remove i386 build warning w/ size_t argument (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: Fix typos in ti/Kconfig (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rockchip_max98090: Set period size to 240 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pcm3168a: Allow reconfiguration of tdm_slots and slot_width (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pcm3168a: Retain the independence of DAC and ADC side of the codec (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183-mt6358-ts3a227-max98357: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: make headset codec optional (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183-mt6358-ts3a227-max98357: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max9850: remove unused variable 'max9850_reg' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98926: remove two unused variables (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: remove legacy style of aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: rx51: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sunxi: sun4i-codec: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: tm2_wm5110: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: speyside: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: samsung: neo1973_wm8753: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: rockchip_max98090: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183-da7219-max98357: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: intel: cht_bsw_max98090_ti: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple-card: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: support snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdac_hdmi: Offload dapm update at jack detection (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: byt: Refactor fw ready / mem windows creation (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: bdw: Use generic function for fw ready / mem windows creation (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Remove call to snd_sof_dsp_mailbox_init (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ml26124: remove unused variable 'ngth' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mt6351: remove unused variable 'mt_lineout_control' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: intel: skl_hda_dsp_common: create HDMI jack kctl (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tscs454: remove unused variable 'PLL_48K_RATE' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: fix module_put() warning in soc_cleanup_component (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: dai_link check under soc_dpcm_debugfs_add() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: define soc_dpcm_debugfs_add() for non CONFIG_DEBUG_FS (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: tidyup for card->deferred_resume_work (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: remove unneeded list_empty() check for snd_soc_try_rebind_card() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: call snd_soc_dapm_debugfs_init() at soc_init_card_debugfs() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: tidyup for snd_soc_add_card_controls() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: tidyup for snd_soc_dapm_add_routes() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: tidyup for snd_soc_add_component_controls() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdac_hda: fix page fault issue by removing race (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Direct MMIO accesses (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: Add support for imx7ulp/imx8mq (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: mark regmap as fast_io (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: large_config_get overhaul (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: Implement set_bclk_ratio (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: Add support for SAI new version (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: derive TX FIFO watermark from FIFO depth (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: add of_match data (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: Update Tx/Rx channel enable mask (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: Add registers definition for multiple datalines (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: tidyup for snd_soc_dapm_new_controls() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: reuse rtdcom at snd_soc_rtdcom_add() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: don't use for_each_card_links_safe() at snd_soc_find_dai_link() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: check return value of snd_soc_add_dai_link() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add comment for for_each_xxx (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: set component->debugfs_root NULL (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: Add a flag for the R0 calibration test (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: Add R0 temperature and TDM1 ADC2DAT Swap control (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rsnd: don't call clk_get_rate() under atomic context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98373: Remove executable bits (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_pcm_free() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_pcm_new() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_mmap() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_page() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_copy_user() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_ioctrl() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_pcm_component_pointer() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: move snd_soc_component_set_bias_level() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: move snd_soc_component_stream_event() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: move snd_soc_component_seq_notifier() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_of_xlate_dai_name() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_of_xlate_dai_id() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_remove() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_probe() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_is_suspended() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_resume() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_suspend() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_trigger() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_hw_free() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_hw_params() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_prepare() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_close() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_open() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-component: add snd_soc_component_get/put() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: add soc-component.c (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-pcm: remove soc_fill_silence() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-pcm: remove soc_rtdcom_copy_kernel() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-pcm: remove soc_rtdcom_ack() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: amd: acp3x: use dma address for acp3x dma driver (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: amd: acp3x: use dma_ops of parent device for acp3x dma driver (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: zx-tdm: remove redundant assignment to ts_width on error return path (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: SoC: skylake: no need to check return value of debugfs_create functions (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codec2codec: fill some of the runtime stream parameters (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codec2codec: remove ephemeral variables (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: create pcm for codec2codec links as well (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: use common NHLT module (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Merge skl_sst and skl into skl_dev struct (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Limit large_config_get to single frame (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Fix use of potentially uninitialized variable (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Update request-reply IPC model (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Common: Fix NULL dereference in tx_wait_done (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 174 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Fix race condition in IPC rx list (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 490 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Read HIPCT extension before clearing DONE bit (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: move NHLT header to common directory (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-tdm-formatter: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: g12a-tohdmitx: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: au1x: psc-i2s: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: psc-ac97: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: uniphier: aio-dma: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: uniphier: evea: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: inno_rk3036: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: jz4740: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mmp-sspa: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codecs: jz4725b: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codecs: msm8916-wcd: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: stm32: sai: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun8i-codec: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sunxi: sun50i-codec-analog: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun8i-codec-analog: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: xlnx: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs4271: Fix a typo in the CS4171_NR_RATIOS (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: Mark expected switch fall-throughs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: xtfpga-i2s: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: kirkwood-i2s: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: spear: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mxs-saif: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sirf: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: bcm2835-i2s: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_audmix: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: imx-audmux: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mt6797: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mt8173: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ep93xx-i2s: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tegra20_das: use devm_platform_ioremap_resource() to simplify code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: g12a-tohdmitx: override codec2codec params (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98373: add 88200 and 96000 sampling rate support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Incorrect SR and WSS computation (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codec2codec: fix missing return of error return code (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Support for correct symmetric sample bits (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Correct slot_width posed constraint (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rockchip: Fix mono capture (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Fix some acpi vs apci typo in somme comments (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Fix clk PDIR handling for i2s master mode (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codec2codec: deal with params when necessary (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codec2codec: name link using stream direction (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codec2codec: run callbacks in order (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: codecs: Add uda1334 codec driver (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1308: Add RT1308 amplifier driver (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Makefile - fix the top-level kernel module names (add snd- prefix) (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Improve serializer handling in multi AXR setups (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Add support for RIGHT_J format (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Cleanup skl_module_cfg declaration (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Make MCPS and CPS params obsolete (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Combine snd_soc_skl_ipc and snd_soc_skl (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Reset pipeline before its deletion (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Strip T and L from TLV IPCs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Properly cleanup on component removal (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Initialize lists before access so they are safe to use (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Add function to cleanup debugfs interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Use recommended SDxFMT programming sequence (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Switch to modern UUID API (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: skl-pcm: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: wm8955: Fix a typo in 'wm8995_pll_factors()' function name (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Fail card instantiation if DAI format setup fails (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: move snd_soc_dai_stream_valid() to soc-dai.c (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: use existing snd_soc_dai_digital_mute() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_compress_new() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_remove() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_probe() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_resume() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_suspend() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_delay() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_bespoke_trigger() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_trigger() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_prepare() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_shutdown() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_startup() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: add snd_soc_dai_hw_free() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dai: mv soc_dai_hw_params() to soc-dai (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: add soc-dai.c (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: core: Return -ENOTSUPP from set_channel_map() if no operation provided (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: support dai_link with platforms_num != 1 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: defer card registration if codec component is missing (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: don't use soc_find_component() at snd_soc_find_dai() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: use soc_find_component() at snd_soc_find_dai() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: soc_find_component() uses snd_soc_dai_link_component (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: soc_find_component() uses snd_soc_is_matching_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: move soc_find_component() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: call snd_soc_unbind_card() under mutex_lock; (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: allow no Platform on dai_link (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: remove legacy style dai_link (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc.h: add sound dai_link connection macro (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rsnd: Support hw_free() callback at DAI level (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5665: Fix a typo in the name of a function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Remove dev_err() usage after platform_get_irq() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_esai: recover the channel swap after xrun (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_esai: Wrap some operations to be functions (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_esai: Add pm runtime function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: ssp: BCLK delay parameter (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Add DMIC token for unmute gain ramp time (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix stream id setting (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix link DMA config (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: reset link DMA state in prepare (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: reserve host DMA channel for hostless streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: assign link DMA channel at run-time (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: initial support for Elkhart Lake (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: initial support for Tiger Lake. (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Use generic function for fw ready / mem windows creation (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: make sure DMA is start/stop by read the RUN bit (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: fix HDA direct MMIO access (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: remove duplicated clear WAKESTS (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: clear stream status and wakests properly (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add function for hda stop chip (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: set position buffer in init chip (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: correct ROM state mask (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Introduce snd_sof_dsp_get_window_offset (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Introduce snd_sof_dsp_get_mailbox_offset (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: add runtime idle callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: docs: timers: convert docs to ReST and rename to *.rst (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: use SOF defined init chip in resume (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Enable jack detection (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: reduce ifdef usage for hda (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: remove unused state variable in suspend function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: implement runtime idle for CNL/APL (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: use the defined stop chip in suspend (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: use the SOF defined ppcap functions (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: release link DMA for paused streams during suspend (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: loader: Don't ignore SRAM block types (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: loader: Use the BAR provided by FW (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Introduce snd_sof_dsp_get_bar_index ops (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: core: increase default IPC timeouts (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: ipc: use timeout configured at probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: pcm: add ALH support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: use common code to send PCM_FREE IPC (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: reset DMA state in prepare (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: couple host and link DMA during FE hw_free (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: pci: mark last_busy value at runtime PM init (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fixup HDaudio topology name with DMIC number (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: Add missing include file hdac_hda.h (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: Initialize hdaudio bus properly (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix MSI handling (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Initialize HDA controller after i915 init (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add a parameter to disable MSI (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: remove duplicated include from hda.c (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: disallow building without CONFIG_PCI again (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: intel: extend IPC dump information (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pcm3168a: Allow all channels in case of parallel DIN/DOUT setup (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pcm3168a: Fix a typo in the name of a constant (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pcm3168a: Add support for multi DIN/DOUT with TDM slots parameter (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pcm3168a: Rename min_frame_size to slot_width (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: skl-hda-dsp-generic: add dmic dapm widget and route (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: skl-hda-dsp-generic: add dependency to dmic driver (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: boards: Match Product Family instead of product (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: dapm: Invalidate only paths reachable for a given stream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: use set_get_data in process load (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_esai: Add compatible string for imx6ull (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: keep analog power register at SND_SOC_BIAS_OFF (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: Remove magic number register writes (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: Revert remove superfluous set (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: remove superfluous set (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: depop stereo dac (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: handle concurrent interrupts (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: clear interrupts by polarity flip (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: move jack-detect init to i2c probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: fall back to DT prop names on error (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: Add component driver name (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: use more of the volume range from DACs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: remove w90x900/nuc900 platform drivers (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: nuc900: nuc900-audio: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof-rt5682: add dmic dapm widget to support dmic PCM (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add for_each_xxx macro for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-card: use snd_soc_dai_link_component for aux_dev (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-card: remove useless check on codec (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-card: fix null pointer dereference in clean up (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-card: use modern dai_link style (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sst: fix kmalloc call with wrong flags (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: core: Fix deadlock in snd_soc_instantiate_card() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Remove erroneous soc_cleanup_card_resources() call (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: use snd_soc_dai_link_component for CPU (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: core: move DAI pre-links initiation to snd_soc_instantiate_card (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: fix warning reported by kbuild test robot and minor issue (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: Mark format integer literals as unsigned (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: core: Tell codec that jack is being removed (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Change SR and WSS computation (Jaroslav Kysela) [1738610]
+- [sound] ALSA: SoC: rt274: Fix internal jack assignment in set_jack callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5672: fix kernel oops with platform_name override (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: cht_bsw_nau8824: fix kernel oops with platform_name override (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: fix kernel oops with platform_name override (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: cht_bsw_max98090: fix kernel oops with platform_name override (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 422 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 395 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 340 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 288 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 284 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Add offset to RX channel select (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-i2s: Fix sun8i tx channel offset mask (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98090: remove 24-bit format support if RJ is 0 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: da7219: Fix build error without CONFIG_I2C (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Fix COMPILE_TEST build error (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: pcm3168a: Implement set_tdm_slot callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: Make some symbols static (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cx2072x: remove set but not used variable 'is_right_j ' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt1011: Add RT1011 amplifier driver (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: debug: add new debugfs entries for IPC flood test (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: ipc: Introduce SOF_IPC_GLB_TEST_MSG IPC command (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: uapi: mirror firmware changes (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: send time stamp to FW for alignment (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: bump to ABI 3.6 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: soundwire: add initial soundwire support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: add support for mux/demux component (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: fix DSP oops definitions in FW ABI (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: ipc: don't check for HIPCCTL register value (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda-ipc: re-enable IPC IRQ at end of handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda-ipc: read all IPC registers first (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: cnl-ipc: re-enable IPC IRQ at end of handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: cnl-ipc: move code around for clarity (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: cnl-ipc: read all IPC registers first (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Do not send cmd via SHIM register (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: add mode parameter for snd_sof_debugfs_buf_item (Jaroslav Kysela) [1738610]
+- [sound] ALSA: Revert "ASoC: core: use component driver name as component name" (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: stm32: sai: manage identification registers (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: ipc: replace fw ready bitfield with explicit bit ordering (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Baytrail: add quirk for Aegex 10 (RU2) tablet (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: fix typos of SPDX-License-Identifier (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 201 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 194 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 177 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 162 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 149 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: use the defined ppcap functions (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: add COMPILE_TEST for PCI options (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: boards: Add COMPILE_TEST for new machine drivers (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: boards: remove dependency on asm/platform_sst_audio.h (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoc: fix sound/soc/intel/skylake/slk-ssp-clk.c build error on IA64 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: use common helpers to detect CPUs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677: Add missing voice activation register definitions (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: core: use component driver name as component name (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs42xx8: Fix build error with CONFIG_GPIOLIB is not set (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof-rt5682: fix undefined references with Baytrail-only support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: wcd9335: fix a incorrect use of kstrndup() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-codec: fix first delay on Speaker (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-spdif: Add support for H6 SoC (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-spdif: Add TX fifo bit flush quirks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: sun4i-spdif: Move quirks to the top (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cx2072x: fix spelling mistake "configued" -> "configured" (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cx2072x: fix integer overflow on unsigned int multiply (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: force end-of-file for debugfs trace at suspend (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: trace: remove code duplication in sof_wait_trace_avail() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Use struct_size() in kmemdup() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98357a: Show KConfig entry (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: topology: Use struct_size() helper (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cx2072x: remove redundant assignment to pulse_len (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: fix the hda init chip (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: ipc: fix a race, leading to IPC timeouts (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: control: correct the copy size for bytes kcontrol put (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: pcm: remove warning - initialize workqueue on open (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: pcm: clear hw_params_upon_resume flag correctly (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: core: fix error handling with the probe workqueue (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: core: remove snd_soc_unregister_component in case of error (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: core: remove DSP after unregistering machine driver (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: fixup references at soc_cleanup_card_resources() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Force polling mode on CFL and CNL (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 119 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 64 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: core: lock client_mutex while removing link components (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple-card: Restore original configuration of DAI format (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: qdsp6: q6core: Use struct_size() in kmemdup() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Use struct_size() helper (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: dapm: Use struct_size() in krealloc() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: boards: remove unnecessary inclusion of skl.h (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: move card registration to the end of probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: mediatek: mt8183: remove unused DAPM pins (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Mediatek: MT8183: enable dev runtime suspend and resume (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Add machine driver for CX2072X on BYT/CHT platforms (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Add support for Conexant CX2072X CODEC (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_asrc: Unify the supported input and output rate (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-pcm: fixup try_module_get()/module_put() timing (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof-rt5682: add newline for clarity (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Mediatek: MT8183: fix compile error (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Mediatek: MT8183: fix compile error (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof-rt5682: fix AMP quirk support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: sof-rt5682: fix for codec button mapping (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 4 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 3 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 1 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: simple-card: Fix configuration of DAI format (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: WARN() is not related to component->driver->probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rsnd: move pcm_new from snd_soc_component_driver to snd_soc_dai_driver (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: glk_rt5682_max98357a: Remap button control-function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Mediatek: MT8183: enable IIR filter (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rename functions that pollute the simple_xxx namespace (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: soc-acpi: Fix machine selection order (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: rt5677-spi: Handle over reading when flipping bytes (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-dpm: fixup DAI active unbalance (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: tlv320aic3x: Add support for high power analog output (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs42xx8: Add reset gpio handling (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: cs42xx8: Add regcache mask dirty (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_asrc: replace the process_option table with function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_asrc: Fix the issue about unsupported rate (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: add g12a tohdmitx control (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-card: add basic codec-to-codec link support (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: dapm: allow muxes to force a disconnect (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: meson: axg-card: set link name based on link node name (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Mediatek: MT8183: set data align (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Mediatek: add memory interface data align (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ak4458: rstn_control - return a non-zero on error only (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdmi-codec: re-introduce mutex locking (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-pcm: add soc_pcm_components_open() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-pcm: add missing cpu_dai->rate = 0 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-pcm: do cpu_dai related operation at same place (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: use soc_find_component() at snd_soc_get_dai_id() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: add soc_component_to_node() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: tidyup soc_bind_dai_link() comment balance (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: don't use codec_dais on soc_bind_dai_link() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-core: use i on snd_soc_resume() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: max98357a: request GPIO when device get probed (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: ICL add Icelake chip info struct (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: ICL: add Icelake SSP count (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: pcm: remove runtime PM calls during pcm open/close (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: Intel: Skylake: Add Cometlake PCI IDs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Add Comet Lake PCI IDs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: amd: Reporting accurate hw_ptr for acp3x dma (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-pcm: BE dai needs prepare when pause release after resume (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: ak4458: add return value for ak4458_probe (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC : cs4265 : readable register too low (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: fix error in verbose ipc command parsing (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: fix race in FW boot timeout handling (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: nocodec: fix undefined reference (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: soc-acpi: fix implicit header use of module.h/export.h (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: fsl_sai: Move clock operation to PM runtime (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: stm32: i2s: manage identification registers (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdmi-codec: remove ops dependency on the dai id (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdmi-codec: remove reference to the dai drivers in the private data (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdmi-codec: remove reference to the current substream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hdmi-codec: remove function name debug traces (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 282 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: xen-front: fix unintention integer overflow on left shifts (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - PCI quirk for Medion E4254 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Apply AMD controller workaround for Raven platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Fix alienware headset mic (Jaroslav Kysela) [1738610]
+- [sound] ALSA: Add Acer Aspire Ethos 8951G model quirk (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/hdmi: remove redundant assignment to variable pcm_idx (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Fix the problem of two front mics on a ThinkCentre (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Enable internal speaker & headset mic of ASUS UX431FL (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Add quirk for HP Pavilion 15 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Fix overridden device-specific initialization (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Fix potential endless loop at applying quirks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Allow runtime PM for controller if component notifier is used (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Blacklist PC beep for Lenovo ThinkCentre M73/93 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Check beep whitelist before assigning in all codecs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/ca0132 - Add new SBZ quirk (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Fixes inverted Conexant GPIO mic mute led (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Define a fallback_pin_fixup_tbl for alc269 family (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Expand pin_match function to match upcoming new tbls (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Drop unsol event handler for Intel HDMI codecs (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Add a generic reboot_notify (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Let all conexant codec enter D3 when rebooting (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/sigmatel - remove unused variable 'stac9200_core_init' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Add quirk for HP Envy x360 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Set fifo_size for both playback and capture streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Fix a memory leak bug (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Add a quirk model for fixing Huawei Matebook X right speaker (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Add model description for Chrome headset button quirk (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Fix a typo in model documentation (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Inform too slow responses (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Apply workaround for another AMD chip 1022:1487 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Remove page allocation redirection (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Workaround for crackled sound on AMD controller (1022:1457) (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Don't override global PCM hw info flag (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Add support of Zhaoxin controller (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/intel: stop probe if DMICS are detected on Skylake+ platforms (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Show the fatal CORB/RIRB error more clearly (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Add a conexant codec entry to let mute led work (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Fix intermittent CORB/RIRB stall on Intel chips (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: SOF: Intel: hda: Make hdac_device device-managed (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Flush interrupts on disabling (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/hdmi - Allow audio component for AMD/ATI and Nvidia HDMI (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/hdmi - Don't report spurious jack state changes (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Optimize resume for codecs without jack detection (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Don't resume forcibly i915 HDMI/DP codec (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/hdmi - Fix i915 reverse port/pin mapping (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/hdmi - Remove duplicated define (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Fixed Headphone Mic can't record on Dell platform (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Simplify snd_hdac_refresh_widgets() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Fix widget_mutex incomplete protection (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/ca0132 - remove redundant assignment to variable 'changed' (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Change front mic location for Lenovo M710q (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek: Add quirks for several Clevo notebook barebones (Jaroslav Kysela) [1738610]
+- [sound] ALSA: Revert "ALSA: hda/realtek - Improve the headset mic for Acer Aspire laptops" (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Add Elkhart Lake PCI ID (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: fix a mask for unsolicited event tags (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ASoC: hda: fix unbalanced codec dev refcount for HDA_DEV_ASOC (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/ca0132: Use struct_size() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: Use struct_size() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Update headset mode for ALC256 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: move polling_mode flag to struct hdac_bus (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda: assign polling_mode after azx_bus_init (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Improve the headset mic for Acer Aspire laptops (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda - Force polling mode on CNL for fixing codec communication (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Enable micmute LED for Huawei laptops (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Set default power save node to 0 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hda/realtek - Check headset type by unplug and resume (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hdac: Fix codec name after machine driver is unloaded and reloaded (Jaroslav Kysela) [1738610]
+- [sound] ALSA: hdac: fix memory release for SST and SOF drivers (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 371 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Add SPDX license identifier for missed files (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Add SPDX license identifier for more missed files (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 130 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 336 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 13 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 285 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 295 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 273 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: fix wrong packet parameter for Alesis iO26 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: check intermediate state of clock status and retry (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: handle error code when getting current source of clock (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: remove WARN_ON() at destruction of AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: add note for FE-8 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: add support for MOTU 4pre (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: fix isoc cycle count to which rx packet is scheduled (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: fix error path for initialization of stream structures (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: fix to handle correct stream for PCM playback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: fix NULL pointer dereference to unused stream structure (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire: fix a memory leak bug (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: localize kernel APIs to start/stop each AMDTP stream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: support AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: support AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: support AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: support AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: support AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: support AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: support AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: support AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: code refactoring for initialization/destruction of AMDTP stream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: code refactoring for initialization/destruction of AMDTP stream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: code refactoring for initialization/destruction of AMDTP stream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: code refactoring for initialization/destruction of AMDTP stream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: code refactoring for bus reset handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: code refactoring for initialization/destruction of AMDTP streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: add a kernel API to start AMDTP streams in AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: add a kernel API to add AMDTP stream into AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: add a kernel API to stop a couple of AMDTP streams in AMDTP domain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: add AMDTP domain structure to handle several isoc contexts (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: more code refactoring for MOTU data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: process payload of isoc context according to packet descriptors (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: code refactoring for FF data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: code refactoring for MOTU data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: code refactoring for TASCAM data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: code refactoring for DOT data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: code refactoring for AM824 data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: pass packet descriptor to data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: code refactoring to process context payloads (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: code refactoring to process PCM substream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use packet descriptor for IR context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use packet descriptor for IT context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: add list of packet descriptor (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: pass no syt information to data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: add syt_override member for some protocols (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: operate data block counter in top level of processing for IR context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: operate data block counter in top level of processing for IT context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: pass data block counter to data block processing layer (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: pass data block count as an argument to tracepoints event (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: obsolete ctx_data.tx.first_dbc with CIP_UNALIGHED_DBC flag (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: code refactoring for local variables (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: code refactoring for post operation to data block counter (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: code refactoring for error path of parser for CIP header (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: fix different data block counter between probed event and transferred isochronous packet (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: fix initial value of data block count for IR context without CIP_DBC_IS_END_EVENT (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib/fireface: fix initial value of data block counter for IR context with CIP_NO_HEADER (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: fix invalid length of rx packet payload for tracepoint events (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: fix wrong reference count for stream functionality at error path of rawmidi interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: fix wrong reference count for stream functionality at error path of rawmidi interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: fix wrong reference count for stream functionality at error path of rawmidi interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: fix wrong reference count for stream functionality at error path of rawmidi interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: fix wrong reference count for stream functionality at error path of rawmidi interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: fix wrong reference count for stream functionality at error path of rawmidi interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib/fireworks: fix miss detection of received MIDI messages (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: fix to process MIDI conformant data channel for AM824 format (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: cache next data_block_counter after probing tracepoints event for IR context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: unify common tracepoints for both direction (Jaroslav Kysela) [1738610]
+- [sound] ALSA: Revert "ALSA: firewire-lib: fix inverted node IDs for amdtp_packet events" (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: ensure to release isochronous resources in pcm.hw_params callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: ensure to release isochronous resources in pcm.hw_params callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: ensure to release isochronous resources in pcm.hw_params callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: unify stop and release method for duplex streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: unify stop and release method for duplex streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: unify stop and release method for duplex streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: unify stop and release method for duplex streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: unify stop and release method for duplex streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: code refactoring for pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: update isochronous resources when starting packet streaming after bus-reset (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: reserve/release isochronous resources in pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: code refactoring to finish streaming session (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: minor code refactoring to stop isochronous context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: rename helper functions to begin/finish streaming session (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: code refactoring for condition to stop streaming (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: add helper function to keep isochronous resources (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: unify midi callback function (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: unify the count of subscriber for packet streaming (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: split allocation of isochronous resources from establishment of connection (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: change the range of critical section for stream data in PCM.hw_free callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: code refactoring for error path to start duplex stream (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: change the range of critical section for stream data in PCM.hw_free callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: code refactoring for callback function to rawmidi interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: code rafactoring for callback functions to PCM interface (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: fix compiler warning due to returning uninitialized value (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: configure stream parameter in pcm.hw_params callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: configure packet format in pcm.hw_params callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: unify substreams counter (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: rename helper functions for duplex streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: expand stop procedure for packet streaming (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: break packet streaming at bus-reset handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: start duplex streams if supported (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: set packet parameter according to current configuration (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: code refactoring for stop condition of packet streaming (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: don't set XRUN in stop streaming (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: configure stream parameters in pcm.hw_params callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: configure sampling transfer frequency in pcm.hw_params callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: code refactoring for pcm.hw_params/hw_free (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: code refactoring for rawmidi.open/close (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireworks: unify substream counter (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: code refactoring to initialize/destroy stream data (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: obsolete useless member of private structure (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: don't set XRUN in stop streaming (Jaroslav Kysela) [1738610]
+- [sound] ALSA: bebob: configure sampling transfer frequency in pcm.hw_params callback (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: code refactoring for pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: update isochronous resources when starting packet streaming after bus-reset (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: reserve/release isochronous resources in pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: code refactoring to keep isochronous resources (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: code refactoring to stop packet streaming (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: code refactoring for pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: update isochronous resources when starting packet streaming after bus-reset (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: reserve/release isochronous resources in pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: code refactoring to keep isochronous resources (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: simplify error path to begin streaming session (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: code refactoring to finish streaming session (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-digi00x: refactoring to move timing of registration for isochronous channel (Jaroslav Kysela) [1738610]
+- [sound] ALSA: oxfw: allow PCM capture for Stanton SCS.1m (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: code refactoring for pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: minor code refactoring to finish streaming session (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: update isochronous resources when starting packet streaming after bus-reset (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: reserve/release isochronous resources in pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: support allocate_resources operation in latter protocol (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: support allocate_resources operation in ff400 protocol (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: support allocate_resources operation in ff800 protocol (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: add protocol-specific operation to allocate isochronous resources (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: code refactoring for pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: minor code refactoring to finish streaming session (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: update isochronous resources when starting packet streaming after bus reset (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: reserve/release isochronous resources in pcm.hw_params/hw_free callbacks (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: code refactoring for release of isochronous resources (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: code refactoring for reservation of isochronous resources (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-tascam: code refactoring for registration of isochronous channels (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-motu: fix destruction of data for isochronous resources (Jaroslav Kysela) [1738610]
+- [sound] ALSA: fireface: Use ULL suffixes for 64-bit constants (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: refactoring to obsolete IR packet handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: refactoring to obsolete IT packet handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: fix inverted node IDs for amdtp_packet events (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: fix data block counter for incoming packet without CIP header (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use 8 byte packet header for IT context to separate CIP header from CIP payload (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: code refactoring to queueing packets (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: unify packet handler for IT context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: split helper function to generate CIP header (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: unify packet handler for IR context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use 16 bytes IR context header to separate CIP header (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: split helper function to check incoming CIP header (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: compute pointer to payload buffer in context handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: calculate the length of packet payload in packet handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use clear name for variable of CIP header (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use IT context header to compute cycle count for scheduling packet (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: obsolete macro for header of IT context (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: add helper function to cancel context inner callback handler (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use union for directional parameters (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: unify tracing events to 'amdtp_packet' event (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use dynamic array for CIP header of tracing events (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use the same unit for payload argument in tracing events (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: add data_blocks/data_block_counter parameter to in_packet/out_packet tracing events (Jaroslav Kysela) [1738610]
+- [sound] ALSA: firewire-lib: use the same type of argument for CIP header for tracing event (Jaroslav Kysela) [1738610]
+- [sound] ALSA: dice: add stream format parameters for PreSonus FireStudio (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 61 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 102 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: aoa: onyx: always initialize register read value (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 250 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: ac97: Fix double free of ac97_codec_device (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Add SPDX license identifier - Makefile/Kconfig (Jaroslav Kysela) [1738610]
+- [sound] ALSA: pcm: add support for 352.8KHz and 384KHz sample rate (Jaroslav Kysela) [1738610]
+- [sound] ALSA: seq: Fix potential concurrent access to the deleted pool (Jaroslav Kysela) [1738610]
+- [sound] ALSA: pcm: fix lost wakeup event scenarios in snd_pcm_drain (Jaroslav Kysela) [1738610]
+- [sound] ALSA: compress: Be more restrictive about when a drain is allowed (Jaroslav Kysela) [1738610]
+- [sound] ALSA: compress: Don't allow paritial drain operations on capture streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: compress: Prevent bypasses of set_params (Jaroslav Kysela) [1738610]
+- [sound] ALSA: compress: Fix regression on compressed capture streams (Jaroslav Kysela) [1738610]
+- [sound] ALSA: pcm: Fix refcount_inc() on zero usage (Jaroslav Kysela) [1738610]
+- [sound] ALSA: seq: Break too long mutex context in the write loop (Jaroslav Kysela) [1738610]
+- [sound] ALSA: seq: fix incorrect order of dest_client/dest_ports arguments (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 372 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 345 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: control: Use struct_size() (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 167 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 151 (Jaroslav Kysela) [1738610]
+- [sound] ALSA: pcm: oss: Use struct_size() helper (Jaroslav Kysela) [1738610]
+
+* Tue Oct 08 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.5.el8]
+- [tools] selftests/powerpc: Retry on host facility unavailable (Desnes Augusto Nunes do Rosario) [1739770]
+- [tools] selftests/powerpc: Do not fail with reschedule (Desnes Augusto Nunes do Rosario) [1739770]
+- [tools] libperf: Warn when exceeding MAX_NR_CPUS in cpumap (Frank Ramsay) [1753332]
+- [tools] perf header: Replace MAX_NR_CPUS with cpu__max_cpu() (Frank Ramsay) [1753332]
+- [tools] perf machine: Replace MAX_NR_CPUS with perf_env::nr_cpus_online (Frank Ramsay) [1753332]
+- [tools] perf session: Replace MAX_NR_CPUS with perf_env::nr_cpus_online (Frank Ramsay) [1753332]
+- [tools] perf stat: Replace MAX_NR_CPUS with cpu__max_cpu() (Frank Ramsay) [1753332]
+- [tools] perf svghelper: Replace MAX_NR_CPUS with perf_env::nr_cpus_online (Frank Ramsay) [1753332]
+- [tools] perf timechart: Refactor svg_build_topology_map() (Frank Ramsay) [1753332]
+- [tools] perf tools: Increase MAX_NR_CPUS and MAX_CACHES (Frank Ramsay) [1753332]
+- [crypto] crypto: chelsio - count incomplete block in IV (Jonathan Toppins) [1725813]
+- [crypto] crypto: chelsio - Fix softlockup with heavy I/O (Jonathan Toppins) [1725813]
+- [crypto] crypto: chelsio - Fix NULL pointer dereference (Jonathan Toppins) [1725813]
+- [nvme] nvme-pci: Allow PCI bus-level PM to be used if ASPM is disabled (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [pci] PCI/ASPM: Add pcie_aspm_enabled() (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: Fix async probe remove race (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: fix controller removal race with scan work (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-rdma: fix possible use-after-free in connect error flow (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: fix a possible deadlock when passthru commands sent to a multipath device (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-core: Fix extra device_put() call on error path (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet-file: fix nvmet_file_flush() always returning an error (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet-loop: Flush nvme_delete_wq when removing the port (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: Fix use-after-free bug when a port is removed (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-multipath: revalidate nvme_ns_head gendisk in nvme_validate_ns (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] Revert "nvme-pci: don't create a read hctx mapping without read queues" (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: fix multipath crash when ANA is deactivated (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: fix memory leak caused by incorrect subsystem free (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: ignore subnqn for ADATA SX6000LNP (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: fix NULL deref for fabrics options (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: fix regression upon hot device removal and insertion (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-fc: fix module unloads while lports still pending (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-tcp: set the STABLE_WRITES flag when data digests are enabled (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: print a hint while rejecting NSID 0 or 0xffffffff (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-tcp: don't use sendpage for SLAB pages (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-multipath: do not select namespaces which are about to be removed (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-multipath: also check for a disabled path if there is a single sibling (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-multipath: factor out a nvme_path_is_disabled helper (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: export I/O characteristics attributes in Identify (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: set physical block size and optimal I/O size (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-trace: add delete completion and submission queue to admin cmds tracer (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-trace: fix spelling mistake "spcecific" -> "specific" (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: check for NULL return from pci_alloc_p2pmem() (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: limit max_hw_sectors based on the DMA max mapping size (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: don't fall back to a 32-bit DMA mask (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: don't create a read hctx mapping without read queues (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: make nvme_dev_pm_ops static (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-fcloop: resolve warnings on RCU usage and sleep warnings (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-fcloop: fix inconsistent lock state warnings (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [pci] PCI: PM: Skip devices in D0 for (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [pci] PCI: PM: Avoid possible suspend-to-idle issue (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: add I/O characteristics fields (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: enable to inject errors into admin commands (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: prepare for fault injection into admin commands (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: introduce target-side trace (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-trace: print result and status in hex format (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-trace: support for fabrics commands in host-side (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-trace: move opcode symbol print to nvme.h (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-trace: do not export nvme_trace_disk_name (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: properly report state change failure in nvme_reset_work (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: clean up nvme_remove_dead_ctrl a bit (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: set the errno on ctrl state change error (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: adjust irq max_vector using num_possible_cpus() (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: use host managed power state for suspend (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: remove unnecessary zero for static var (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: introduce nvme_is_fabrics to check fabrics cmd (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-fc: add message when creating new association (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: remove queue_count_ops for write_queues and poll_queues (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: fix possible io failures when removing multipathed ns (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: export get and set features (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: add transport discovery change op (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-fcloop: add support for nvmet discovery_event op (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [block] block: remove blk_init_request_from_bio (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [block] block: initialize the write priority (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: Fix u32 overflow in the number of namespace list calculation (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet-fc: add transport discovery change event callback support (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: don't limit DMA segement size (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: fix data_len to 0 for bdev-backed write_zeroes (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-tcp: fix queue mapping when queue count is limited (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: use blk-mq mapping for unmanaged irqs (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: copy MTFA field from identify controller (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: release namespace SRCU protection before performing controller ioctls (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: merge nvme_ns_ioctl into nvme_ioctl (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: remove the ifdef around nvme_nvm_ioctl (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: fix srcu locking on error return in nvme_get_ns_from_disk (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: Fix known effects (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: Sync queues on reset (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: Unblock reset_work on IO failure (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: Don't disable on timeout in reset state (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: Fix controller freeze wait disabling (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: validate cntlid during controller initialisation (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: change locking for the per-subsystem controller list (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: trace all async notice events (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-fabrics: remove unused argument (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: add known admin effects to augument admin effects log page (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: init shadow doorbell after each reset (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: mark expected switch fall-through (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: mark nvme_core_init and nvme_core_exit static (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: protect discovery change log event list iteration (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: move command size checks to the core (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: check more command sizes (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-fabrics: check more command sizes (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: remove an unneeded variable initialization (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: unquiesce admin queue on shutdown (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: shutdown on timeout during deletion (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: set 0 capacity if namespace block size exceeds PAGE_SIZE (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-rdma: fix a NULL deref when an admin connect times out (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet-file: clamp-down file namespace lba_shift (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: include <linux/scatterlist.h> (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: rename nvme_completion instances from rsp to cqe (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet-rdma: remove p2p_client initialization from fast-path (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: return a specified error it subsys_alloc fails (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: fix discover log page when offsets are used (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: never fail double namespace enablement (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: log the error status on Identify Namespace failure (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: tidy up nvme_map_data (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: add safety check for subsystem lock during nvmet_ns_changed (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: only call nvme_unmap_data for requests transferring data (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: remove q_dmadev from nvme_queue (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: merge nvme_free_iod into nvme_unmap_data (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: move the call to nvme_cleanup_cmd out of nvme_unmap_data (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: remove nvme_init_iod (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: use a flag for polled queues (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [block] block: add a rq_integrity_vec helper (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [block] block: add dma_map_bvec helper (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [block] block: add a rq_dma_dir helper (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet-fc: use zero-sized array and struct_size() in kzalloc() (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: remove unused nvme_iod member (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: avoid double errno conversions (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: avoid double dereference to convert le to cpu (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: fix error flow during ns enable (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: add proper write zeroes setup for the multipath device (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: disable Write Zeroes for qemu controllers (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet-fc: bring Disconnect into compliance with FC-NVME spec (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: add proper discard setup for the multipath device (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: remove nvme_ns_config_oncs (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet-fc: fix issues with targetport assoc_list list walking (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: add get-feature to admin cmds tracer (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-loop: init nvmet_ctrl fatal_err_work when allocate (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: put ns_head ref if namespace fails allocation (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-trace: fix cdw10 buffer overrun (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: don't warn on block content change effects (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: update comment to make the code easier to read (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: convert to SPDX identifiers (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-lightnvm: convert to SPDX identifiers (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: return error from (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: avoid that deleting a controller triggers a circular locking complaint (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: introduce a helper function for controller deletion (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme: unexport nvme_delete_ctrl_sync() (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvme-pci: check kstrtoint() return value in queue_count_set() (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [nvme] nvmet: fix indentation (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [lightnvm] lightnvm: simplify geometry (Gopal Tiwari) [1718463 1711181 1724950 1725066]
+- [powerpc] powerpc/tm: Fix FP/VMX unavailable exceptions inside a transaction (Gustavo Duarte) [1750653]
+- [powerpc] powerpc/tm: Fix restoring FP/VMX facility incorrectly on interrupts (Gustavo Duarte) [1750653]
+- [block] block: split .sysfs_lock into two locks (Ming Lei) [1697383]
+- [block] block: add helper for checking if queue is registered (Ming Lei) [1697383]
+- [block] blk-mq: don't hold q->sysfs_lock in blk_mq_map_swqueue (Ming Lei) [1697383]
+- [block] block: don't hold q->sysfs_lock in elevator_init_mq (Ming Lei) [1697383]
+- [block] block: Remove blk_mq_register_dev() (Ming Lei) [1697383]
+- [x86] KVM: X86: Fix fpu state crash in kvm guest (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Don't use current->mm to check for a kthread (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Update kernel's FPU state before using for the fsave header (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Use fault_in_pages_writeable() for pre-faulting (Prarit Bhargava) [1737070]
+- [mm] mm/gup: continue VM_FAULT_RETRY processing even for pre-faults (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Fault-in user stack if copy_fpstate_to_sigframe() fails (Prarit Bhargava) [1737070]
+- [x86] x86/pkeys: Add PKRU value to init_fpstate (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Restore regs in copy_fpstate_to_sigframe() in order to use the fastpath (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Add a fastpath to copy_fpstate_to_sigframe() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Add a fastpath to __fpu__restore_sig() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Defer FPU state load until return to userspace (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Merge the two code paths in __fpu__restore_sig() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Restore from kernel memory on the 64-bit path too (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Inline copy_user_to_fpregs_zeroing() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Update xstate's PKRU value on write_pkru() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Prepare copy_fpstate_to_sigframe() for TIF_NEED_FPU_LOAD (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Always store the registers in copy_fpstate_to_sigframe() (Prarit Bhargava) [1737070]
+- [x86] x86/entry: Add TIF_NEED_FPU_LOAD (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Eager switch PKRU state (Prarit Bhargava) [1737070]
+- [x86] x86/pkeys: Don't check if PKRU is zero before writing it (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Only write PKRU if it is different from current (Prarit Bhargava) [1737070]
+- [x86] x86/pkeys: Provide *pkru() helpers (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Use a feature number instead of mask in two more helpers (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Make __raw_xsave_addr() use a feature number instead of mask (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Add an __fpregs_load_activate() internal helper (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Remove user_fpu_begin() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Remove fpu->initialized (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Don't save fxregs for ia32 frames in copy_fpstate_to_sigframe() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Remove fpu->initialized usage in copy_fpstate_to_sigframe() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Always init the state in fpu__clear() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Remove preempt_disable() in fpu__clear() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Remove fpu__restore() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Remove fpu->initialized usage in __fpu__restore_sig() (Prarit Bhargava) [1737070]
+- [x86] x86/entry: Remove unneeded need_resched() loop (Prarit Bhargava) [1737070]
+- [x86] x86/uaccess: Introduce user_access_{save, restore}() (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Fix i486 + no387 boot crash by only saving FPU registers on context switch if there is an FPU (Prarit Bhargava) [1737070]
+- [x86] x86/fpu: Remove second definition of fpu in __fpu__restore_sig() (Prarit Bhargava) [1737070]
+- [net] udp: correct reuseport selection with connected sockets (Paolo Abeni) [1665807]
+- [net] udp6: add missing rehash callback to udplite (Paolo Abeni) [1665807]
+- [net] udp: add missing rehash callback to udplite (Paolo Abeni) [1665807]
+- [net] udp6: prefer listeners bound to an address (Paolo Abeni) [1665807]
+- [net] udp: prefer listeners bound to an address (Paolo Abeni) [1665807]
+- [net] sched: fix race between deactivation and dequeue for NOLOCK qdisc (Davide Caratti) [1744397]
+- [net] check extack._msg before print (Ivan Vecera) [1751279]
+- [net] report invalid mtu value via netlink extack (Ivan Vecera) [1751279]
+- [net] report min and max mtu network device settings (Ivan Vecera) [1751279]
+- [net] failover: change mtu has RTNL (Ivan Vecera) [1751279]
+- [net] neigh: fix multiple neigh timer scheduling (Lorenzo Bianconi) [1730632]
+- [net] virtchnl: fix 'Unknown bps' in dmesg for 2.5Gb/5Gb speeds (Ivan Vecera) [1748437]
+- [net] Add a define for LLDP ethertype (Ivan Vecera) [1748428]
+- [net] devlink: Add support for direct reporter health state update (Petr Oros) [1746363]
+- [netdrv] Add IANA_VXLAN_UDP_PORT definition to vxlan header file (Ivan Vecera) [1731347]
+- [netdrv] Move the definition of the default Geneve udp port to public header file (Ivan Vecera) [1731347]
+- [net] openvswitch: Add a new action check_pkt_len (Numan Siddique) [1700733]
+
+* Thu Oct 03 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.4.el8]
+- [pci] PCI: Add pci_dev_id() helper (Myron Stowe) [1735874]
+- [netdrv] ibmvnic: Warn unknown speed message only when carrier is present (Steve Best) [1749873]
+- [netdrv] net/ibmvnic: Fix missing { in __ibmvnic_reset (Steve Best) [1749873]
+- [netdrv] net/ibmvnic: free reset work of removed device from queue (Steve Best) [1749873]
+- [netdrv] ibmvnic: Do not process reset during or after device removal (Steve Best) [1749873]
+- [cpufreq] cpufreq: intel_pstate: Show different max frequency with turbo 3 and HWP (Alexander Beregalov) [1752053]
+- [char] hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable (Prarit Bhargava) [1660796]
+- [hwtracing] intel_th: pci: Add support for another Lewisburg PCH (Jiri Olsa) [1714486]
+- [x86] x86/entry/32: Fix ENDPROC of common_spurious (Prarit Bhargava) [1730447]
+- [x86] x86/irq: Seperate unused system vectors from spurious entry again (Prarit Bhargava) [1730447]
+- [vfio] vfio/type1: Handle different mdev isolation type (Tarun Gupta) [1498341]
+- [vfio] vfio/type1: Add domain at(de)taching group helpers (Tarun Gupta) [1498341]
+- [vfio] vfio/mdev: Add iommu related member in mdev_device (Tarun Gupta) [1498341]
+- [documentation] ipmb: place it at driver-api and convert to ReST (Tony Camuso) [1752071]
+- [char] ipmi_si_intf: Fix race in timer shutdown handling (Tony Camuso) [1752071]
+- [char] ipmi_ssif: avoid registering duplicate ssif interface (Tony Camuso) [1752071]
+- [char] ipmi: Free receive messages when in an oops (Tony Camuso) [1752071]
+- [char] ipmi_si: Only schedule continuously in the thread in maintenance mode (Tony Camuso) [1752071]
+- [char] ipmi_si: Remove ipmi_ from the device attr names (Tony Camuso) [1752071]
+- [char] ipmi_si: Convert device attr permissions to octal (Tony Camuso) [1752071]
+- [char] ipmi_si: Rework some include files (Tony Camuso) [1752071]
+- [char] ipmi_si: Convert timespec64 to timespec (Tony Camuso) [1752071]
+- [char] Fix uninitialized variable in ipmb_dev_int.c (Tony Camuso) [1752071]
+- [char] fix platform_no_drv_owner.cocci warnings (Tony Camuso) [1752071]
+- [char] ipmi: ipmb: don't allocate i2c_client on stack (Tony Camuso) [1752071]
+- [char] ipmi: ipmb: Fix build error while CONFIG_I2C is set to m (Tony Camuso) [1752071]
+- [char] Add support for IPMB driver (Tony Camuso) [1752071]
+- [char] drivers: ipmi: Drop device reference (Tony Camuso) [1752071]
+- [char] ipmi_ssif: fix unexpected driver unregister warning (Tony Camuso) [1752071]
+- [char] Add SPDX license identifier - Makefile/Kconfig (Tony Camuso) [1752071]
+- [char] ipmi_si: use bool type for initialized variable (Tony Camuso) [1752071]
+- [char] ipmi_si: fix unexpected driver unregister warning (Tony Camuso) [1752071]
+- [char] ipmi: Remove warning if no slave address is present (Tony Camuso) [1752071]
+- [char] ipmi:ssif: Only unregister the platform driver if it was registered (Tony Camuso) [1752071]
+- [char] ipmi: Add the i2c-addr property for SSIF interfaces (Tony Camuso) [1752071]
+- [char] ipmi: avoid atomic_inc in exit function (Tony Camuso) [1752071]
+- [char] ipmi: Remove file from ipmi_file_private (Tony Camuso) [1752071]
+- [char] ipmi_si: remove an unused variable in try_smi_init() (Tony Camuso) [1752071]
+- [char] ipmi: Make ipmi_interfaces_srcu variable static (Tony Camuso) [1752071]
+- [char] ipmi: Change to ktime_get_ts64() (Tony Camuso) [1752071]
+- [char] ipmi: Free the address list on module cleanup (Tony Camuso) [1752071]
+- [edac] EDAC, skx, i10nm: Fix source ID register offset (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, i10nm: Check ECC enabling status per channel (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, i10nm: Add Intel additional Ice-Lake support (Aristeu Rozanski) [1485543 1482412]
+- [x86] x86/CPU: Add more Icelake model numbers (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx, i10nm: Make skx_common.c a pure library (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx_common: Add code to recognise new compound error code (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, i10nm: Fix randconfig builds (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, i10nm: Add a driver for Intel 10nm server processors (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx_edac: Delete duplicated code (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx_common: Separate common code out from skx_edac (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx: Let EDAC core show the decoded result for debugfs (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx: Move debugfs node under EDAC's hierarchy (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx: Prepend hex formatting with '0x' (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx: Fix function calling order in skx_exit() (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, skx_edac: Fix logical channel intermediate decoding (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC, {i7core,sb,skx}_edac: Fix uncorrected error counting (Aristeu Rozanski) [1485543 1482412]
+- [edac] EDAC: Correct DIMM capacity unit symbol (Aristeu Rozanski) [1485543 1482412]
+- [x86] x86/mce: Add notifier_block forward declaration (Aristeu Rozanski) [1485543 1482412]
+- [netdrv] net: thunderx: fix NULL pointer dereference in nicvf_open/nicvf_stop (Dean Nelson) [1657380]
+- [netdrv] net: thunder: fix a potential NULL pointer dereference (Dean Nelson) [1657380]
+- [netdrv] net: thunderx: remove link change polling code and info from nicpf (Dean Nelson) [1657380]
+- [netdrv] net: thunderx: move link state polling function to VF (Dean Nelson) [1657380]
+- [netdrv] net: thunderx: add mutex to protect mailbox from concurrent calls for same VF (Dean Nelson) [1657380]
+- [netdrv] net: thunderx: rework xcast message structure to make it fit into 64 bit (Dean Nelson) [1657380]
+- [netdrv] net: thunderx: add nicvf_send_msg_to_pf result check for set_rx_mode_task (Dean Nelson) [1657380]
+- [netdrv] net: thunderx: make CFG_DONE message to run through generic send-ack sequence (Dean Nelson) [1657380]
+- [netdrv] net: thunderx: replace global nicvf_rx_mode_wq work queue for all VFs to private for each of them. (Dean Nelson) [1657380]
+- [netdrv] net: thunderx: set tso_hdrs pointer to NULL in nicvf_free_snd_queue (Dean Nelson) [1657380]
+- [x86] perf/x86/intel/rapl: Cosmetic rename internal variables in response to multi-die/pkg support (David Arcari) [1616309]
+- [x86] perf/x86/intel/uncore: Cosmetic renames in response to multi-die/pkg support (David Arcari) [1616309]
+- [hwmon] hwmon/coretemp: Cosmetic: Rename internal variables to zones from packages (David Arcari) [1616309]
+- [thermal] thermal/x86_pkg_temp_thermal: Cosmetic: Rename internal variables to zones from packages (David Arcari) [1616309]
+- [x86] perf/x86/intel/cstate: Support multi-die/package (David Arcari) [1616309]
+- [x86] perf/x86/intel/rapl: Support multi-die/package (David Arcari) [1616309]
+- [x86] perf/x86/intel/uncore: Support multi-die/package (David Arcari) [1616309]
+- [topology] topology: Create core_cpus and die_cpus sysfs attributes (David Arcari) [1616309]
+- [topology] topology: Create package_cpus sysfs attribute (David Arcari) [1616309]
+- [hwmon] hwmon/coretemp: Support multi-die/package (David Arcari) [1616309]
+- [powercap] powercap/intel_rapl: Update RAPL domain name and debug messages (David Arcari) [1616309]
+- [thermal] thermal/x86_pkg_temp_thermal: Support multi-die/package (David Arcari) [1616309]
+- [powercap] powercap/intel_rapl: Support multi-die/package (David Arcari) [1616309]
+- [powercap] powercap/intel_rapl: Simplify rapl_find_package() (David Arcari) [1616309]
+- [x86] x86/topology: Define topology_logical_die_id() (David Arcari) [1616309]
+- [x86] x86/topology: Define topology_die_id() (David Arcari) [1616309]
+- [topology] cpu/topology: Export die_id (David Arcari) [1616309]
+- [x86] x86/topology: Create topology_max_die_per_package() (David Arcari) [1616309]
+- [x86] x86/topology: Add CPUID.1F multi-die/package support (David Arcari) [1616309]
+- [x86] x86/smpboot: Rename match_die() to match_pkg() (David Arcari) [1616309]
+- [documentation] topology: Simplify cputopology.txt formatting and wording (David Arcari) [1616309]
+- [documentation] x86/topology: Fix documentation typo (David Arcari) [1616309]
+- [mm] mm: remove stale comment from page struct (Rafael Aquini) [1737065]
+- [mm] mm/slab.c: fix an infinite loop in leaks_show() (Rafael Aquini) [1737065]
+- [mm] mm/slub.c: update the comment about slab frozen (Rafael Aquini) [1737065]
+- [mm] mm/slab.c: remove unneed check in cpuup_canceled (Rafael Aquini) [1737065]
+- [mm] slub: remove useless kmem_cache_debug() before remove_full() (Rafael Aquini) [1737065]
+- [mm] slab: use slab_list instead of lru (Rafael Aquini) [1737065]
+- [mm] slub: use slab_list instead of lru (Rafael Aquini) [1737065]
+- [mm] slob: use slab_list instead of lru (Rafael Aquini) [1737065]
+- [mm] slob: respect list_head abstraction layer (Rafael Aquini) [1737065]
+- [mm] slab: fix a crash by reading /proc/slab_allocators (Rafael Aquini) [1737065]
+- [mm] mm: add support for kmem caches in DMA32 zone (Rafael Aquini) [1737065]
+- [mm] mm, slub: make the comment of put_cpu_partial() complete (Rafael Aquini) [1737065]
+- [mm] mm/slub.c: remove an unused addr argument (Rafael Aquini) [1737065]
+- [mm] mm/slab.c: kmemleak no scan alien caches (Rafael Aquini) [1737065]
+- [mm] mm/slub.c: freelist is ensured to be NULL when new_slab() fails (Rafael Aquini) [1737065]
+- [mm] slab: alien caches must not be initialized if the allocation of the alien cache failed (Rafael Aquini) [1737065]
+- [mm] include/linux/slab.h: fix sparse warning in kmalloc_type() (Rafael Aquini) [1737065]
+- [mm] mm/slub.c: record final state of slub action in deactivate_slab() (Rafael Aquini) [1737065]
+- [mm] mm/slub.c: page is always non-NULL in node_match() (Rafael Aquini) [1737065]
+- [mm] mm/slub.c: remove validation on cpu_slab in __flush_cpu_slab() (Rafael Aquini) [1737065]
+- [mm] mm, slab: remove unnecessary unlikely() (Rafael Aquini) [1737065]
+- [mm] mm: move obj_to_index to include/linux/slab_def.h (Rafael Aquini) [1737065]
+- [mm] slab: make kmem_cache_create{_usercopy} description proper kernel-doc (Rafael Aquini) [1737065]
+- [mm] slub: extend slub debug to handle multiple slabs (Rafael Aquini) [1737065]
+- [mm] mm/slub.c: switch to bitmap_zalloc() (Rafael Aquini) [1737065]
+- [fs] io_uring: add need_resched() check in inner poll loop (Jeff Moyer) [1706143]
+- [fs] io_uring: don't enter poll loop if we have CQEs pending (Jeff Moyer) [1706143]
+- [fs] io_uring: fix potential hang with polled IO (Jeff Moyer) [1706143]
+- [fs] io_uring: fix an issue when IOSQE_IO_LINK is inserted into defer list (Jeff Moyer) [1706143]
+- [fs] io_uring: fix manual setup of iov_iter for fixed buffers (Jeff Moyer) [1706143]
+- [fs] io_uring: fix KASAN use after free in io_sq_wq_submit_work (Jeff Moyer) [1706143]
+- [fs] io_uring: ensure ->list is initialized for poll commands (Jeff Moyer) [1706143]
+- [fs] io_uring: track io length in async_list based on bytes (Jeff Moyer) [1706143]
+- [fs] io_uring: don't use iov_iter_advance() for fixed buffers (Jeff Moyer) [1706143]
+- [fs] io_uring: add a memory barrier before atomic_read (Jeff Moyer) [1706143]
+- [fs] io_uring: fix counter inc/dec mismatch in async_list (Jeff Moyer) [1706143]
+- [fs] io_uring: fix the sequence comparison in io_sequence_defer (Jeff Moyer) [1706143]
+- [fs] io_uring: fix io_sq_thread_stop running in front of io_sq_thread (Jeff Moyer) [1706143]
+- [include] io_uring: add support for recvmsg() (Jeff Moyer) [1706143]
+- [include] io_uring: add support for sendmsg() (Jeff Moyer) [1706143]
+- [fs] signal: remove the wrong signal_pending() check in restore_user_sigmask() (Jeff Moyer) [1706143]
+- [fs] io_uring: add support for sqe links (Jeff Moyer) [1706143]
+- [fs] io_uring: ensure req->file is cleared on allocation (Jeff Moyer) [1706143]
+- [fs] io_uring: fix memory leak of UNIX domain socket inode (Jeff Moyer) [1706143]
+- [fs] io_uring: punt short reads to async context (Jeff Moyer) [1706143]
+- [fs] uio: make import_iovec()/compat_import_iovec() return bytes on success (Jeff Moyer) [1706143]
+- [fs] io_uring: Fix __io_uring_register() false success (Jeff Moyer) [1706143]
+- [tools] tools/io_uring: sync with liburing (Jeff Moyer) [1706143]
+- [tools] tools/io_uring: fix Makefile for pthread library link (Jeff Moyer) [1706143]
+- [fs] io_uring: use wait_event_interruptible for cq_wait conditional wait (Jeff Moyer) [1706143]
+- [fs] io_uring: adjust smp_rmb inside io_cqring_events (Jeff Moyer) [1706143]
+- [fs] io_uring: fix infinite wait in khread_park() on io_finish_async() (Jeff Moyer) [1706143]
+- [fs] io_uring: remove 'ev_flags' argument (Jeff Moyer) [1706143]
+- [fs] io_uring: fix failure to verify SQ_AFF cpu (Jeff Moyer) [1706143]
+- [fs] io_uring: fix race condition reading SQE data (Jeff Moyer) [1706143]
+- [fs] io_uring: use cpu_online() to check p->sq_thread_cpu instead of cpu_possible() (Jeff Moyer) [1706143]
+- [fs] io_uring: fix shadowed variable ret return code being not checked (Jeff Moyer) [1706143]
+- [fs] req->error only used for iopoll (Jeff Moyer) [1706143]
+- [fs] io_uring: add support for eventfd notifications (Jeff Moyer) [1706143]
+- [fs] io_uring: add support for IORING_OP_SYNC_FILE_RANGE (Jeff Moyer) [1706143]
+- [fs] fs: add sync_file_range() helper (Jeff Moyer) [1706143]
+- [fs] io_uring: add support for marking commands as draining (Jeff Moyer) [1706143]
+- [fs] io_uring: avoid page allocation warnings (Jeff Moyer) [1706143]
+- [include] iov_iter: fix iov_iter_type (Jeff Moyer) [1706143]
+- [fs] block: fix handling for BIO_NO_PAGE_REF (Jeff Moyer) [1706143]
+- [fs] io_uring: drop req submit reference always in async punt (Jeff Moyer) [1706143]
+- [fs] io_uring: free allocated io_memory once (Jeff Moyer) [1706143]
+- [fs] io_uring: fix SQPOLL cpu validation (Jeff Moyer) [1706143]
+- [fs] io_uring: have submission side sqe errors post a cqe (Jeff Moyer) [1706143]
+- [fs] io_uring: remove unnecessary barrier after unsetting IORING_SQ_NEED_WAKEUP (Jeff Moyer) [1706143]
+- [fs] io_uring: remove unnecessary barrier after incrementing dropped counter (Jeff Moyer) [1706143]
+- [fs] io_uring: remove unnecessary barrier before reading SQ tail (Jeff Moyer) [1706143]
+- [fs] io_uring: remove unnecessary barrier after updating SQ head (Jeff Moyer) [1706143]
+- [fs] io_uring: remove unnecessary barrier before reading cq head (Jeff Moyer) [1706143]
+- [fs] io_uring: remove unnecessary barrier before wq_has_sleeper (Jeff Moyer) [1706143]
+- [fs] io_uring: fix notes on barriers (Jeff Moyer) [1706143]
+- [fs] io_uring: fix handling SQEs requesting NOWAIT (Jeff Moyer) [1706143]
+- [fs] io_uring: remove 'state' argument from io_{read,write} path (Jeff Moyer) [1706143]
+- [fs] io_uring: fix poll full SQ detection (Jeff Moyer) [1706143]
+- [fs] io_uring: fix race condition when sq threads goes sleeping (Jeff Moyer) [1706143]
+- [fs] io_uring: fix race condition reading SQ entries (Jeff Moyer) [1706143]
+- [fs] io_uring: fail io_uring_register(2) on a dying io_uring instance (Jeff Moyer) [1706143]
+- [fs] io_uring: fix CQ overflow condition (Jeff Moyer) [1706143]
+- [fs] io_uring: fix possible deadlock between io_uring_{enter,register} (Jeff Moyer) [1706143]
+- [powerpc] arch: add pidfd and io_uring syscalls everywhere (Jeff Moyer) [1706143]
+- [fs] io_uring: drop io_file_put() 'file' argument (Jeff Moyer) [1706143]
+- [fs] io_uring: only test SQPOLL cpu after we've verified it (Jeff Moyer) [1706143]
+- [fs] io_uring: park SQPOLL thread if it's percpu (Jeff Moyer) [1706143]
+- [fs] io_uring: restrict IORING_SETUP_SQPOLL to root (Jeff Moyer) [1706143]
+- [tools] tools/io_uring: remove IOCQE_FLAG_CACHEHIT (Jeff Moyer) [1706143]
+- [fs] io_uring: fix double free in case of fileset regitration failure (Jeff Moyer) [1706143]
+- [fs] io_uring: offload write to async worker in case of -EAGAIN (Jeff Moyer) [1706143]
+- [fs] io_uring: fix big-endian compat signal mask handling (Jeff Moyer) [1706143]
+- [fs] block: add BIO_NO_PAGE_REF flag (Jeff Moyer) [1706143]
+- [fs] iov_iter: add ITER_BVEC_FLAG_NO_REF flag (Jeff Moyer) [1706143]
+- [maintainers] io_uring: mark me as the maintainer (Jeff Moyer) [1706143]
+- [fs] io_uring: retry bulk slab allocs as single allocs (Jeff Moyer) [1706143]
+- [fs] io_uring: fix poll races (Jeff Moyer) [1706143]
+- [fs] io_uring: fix fget/fput handling (Jeff Moyer) [1706143]
+- [fs] io_uring: add prepped flag (Jeff Moyer) [1706143]
+- [fs] io_uring: make io_read/write return an integer (Jeff Moyer) [1706143]
+- [fs] io_uring: use regular request ref counts (Jeff Moyer) [1706143]
+- [fs] mm: refactor readahead defines in mm.h (Jeff Moyer) [1706143]
+- [tools] io_uring: add a few test tools (Jeff Moyer) [1706143]
+- [fs] io_uring: allow workqueue item to handle multiple buffered requests (Jeff Moyer) [1706143]
+- [fs] io_uring: add support for IORING_OP_POLL (Jeff Moyer) [1706143]
+- [fs] io_uring: add io_kiocb ref count (Jeff Moyer) [1706143]
+- [fs] io_uring: add submission polling (Jeff Moyer) [1706143]
+- [fs] io_uring: add file set registration (Jeff Moyer) [1706143]
+- [net] net: split out functions related to registering inflight socket files (Jeff Moyer) [1706143]
+- [include] io_uring: add support for pre-mapped user IO buffers (Jeff Moyer) [1706143]
+- [block] block: implement bio helper to add iter bvec pages to bio (Jeff Moyer) [1706143]
+- [fs] io_uring: batch io_kiocb allocation (Jeff Moyer) [1706143]
+- [fs] io_uring: use fget/fput_many() for file references (Jeff Moyer) [1706143]
+- [fs] fs: add fget_many() and fput_many() (Jeff Moyer) [1706143]
+- [fs] io_uring: support for IO polling (Jeff Moyer) [1706143]
+- [fs] io_uring: add fsync support (Jeff Moyer) [1706143]
+- [include] Add io_uring IO interface (Jeff Moyer) [1706143]
+- [fs] iomap: wire up the iopoll method (Jeff Moyer) [1706143]
+- [fs] block: add bio_set_polled() helper (Jeff Moyer) [1706143]
+- [fs] block: wire up block device iopoll method (Jeff Moyer) [1706143]
+- [fs] signal: Add restore_user_sigmask() (Jeff Moyer) [1706143]
+- [fs] signal: Add set_user_sigmask() (Jeff Moyer) [1706143]
+- [net] iov_iter: Fix 9p virtio breakage (Benjamin Coddington) [1734762]
+- [lib] iov_iter: Add I/O discard iterator (Benjamin Coddington) [1734762]
+- [fs] iov_iter: Separate type from direction and use accessor functions (Benjamin Coddington) [1734762]
+- [fs] iov_iter: Use accessor function (Benjamin Coddington) [1734762]
+
+* Wed Oct 02 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.3.el8]
+- [kernel] ftrace/x86: Anotate text_mutex split between ftrace_arch_code_modify_post_process() and ftrace_arch_code_modify_prepare() (Joe Lawrence) [1696461]
+- [kernel] ftrace/x86: Remove possible deadlock between register_kprobe() and ftrace_run_update_code() (Joe Lawrence) [1696461]
+- [kernel] Revert "livepatch: Remove reliable stacktrace check in klp_try_switch_task()" (Joe Lawrence) [1696461]
+- [kernel] selftests/livepatch: push and pop dynamic debug config (Joe Lawrence) [1696461]
+- [kernel] selftests/livepatch: add test skip handling (Joe Lawrence) [1696461]
+- [kernel] module: Fix livepatch/ftrace module text permissions race (Joe Lawrence) [1696461]
+- [kernel] kprobes: Mark ftrace mcount handler functions nokprobe (Joe Lawrence) [1696461]
+- [kernel] selftests/livepatch: Add functions.sh to TEST_PROGS_EXTENDED (Joe Lawrence) [1696461]
+- [kernel] selftests/livepatch: use TEST_PROGS for test scripts (Joe Lawrence) [1696461]
+- [kernel] livepatch/selftests: use "$@" to preserve argument list (Joe Lawrence) [1696461]
+- [kernel] livepatch: Module coming and going callbacks can proceed with all listed patches (Joe Lawrence) [1696461]
+- [kernel] livepatch: Proper error handling in the shadow variables selftest (Joe Lawrence) [1696461]
+- [kernel] livepatch: return -ENOMEM on ptr_id() allocation failure (Joe Lawrence) [1696461]
+- [kernel] livepatch: Introduce klp_for_each_patch macro (Joe Lawrence) [1696461]
+- [kernel] livepatch: core: Return EOPNOTSUPP instead of ENOSYS (Joe Lawrence) [1696461]
+- [kernel] livepatch: samples: non static warnings fix (Joe Lawrence) [1696461]
+- [kernel] livepatch: Remove signal sysfs attribute (Joe Lawrence) [1696461]
+- [kernel] livepatch: Send a fake signal periodically (Joe Lawrence) [1696461]
+- [kernel] selftests/livepatch: introduce tests (Joe Lawrence) [1696461]
+- [kernel] livepatch: Remove ordering (stacking) of the livepatches (Joe Lawrence) [1696461]
+- [kernel] livepatch: Atomic replace and cumulative patches documentation (Joe Lawrence) [1696461]
+- [kernel] livepatch: Remove Nop structures when unused (Joe Lawrence) [1696461]
+- [kernel] livepatch: Add atomic replace (Joe Lawrence) [1696461]
+- [kernel] livepatch: Use lists to manage patches, objects and functions (Joe Lawrence) [1696461]
+- [kernel] livepatch: Simplify API by removing registration step (Joe Lawrence) [1696461]
+- [kernel] livepatch: Don't block the removal of patches loaded after a forced transition (Joe Lawrence) [1696461]
+- [kernel] livepatch: Consolidate klp_free functions (Joe Lawrence) [1696461]
+- [kernel] livepatch: Shuffle klp_enable_patch()/klp_disable_patch() code (Joe Lawrence) [1696461]
+- [kernel] livepatch: Change unsigned long old_addr -> void *old_func in struct klp_func (Joe Lawrence) [1696461]
+- [kernel] livepatch: check kzalloc return values (Joe Lawrence) [1696461]
+- [kernel] livepatch: Replace synchronize_sched() with synchronize_rcu() (Joe Lawrence) [1696461]
+- [kernel] livepatch: Validate module/old func name length (Joe Lawrence) [1696461]
+- [kernel] livepatch: Remove reliable stacktrace check in klp_try_switch_task() (Joe Lawrence) [1696461]
+- [pci] PCI/LINK: Add Kconfig option (default off) (Myron Stowe) [1748141]
+- [pci] PCI/portdrv: Use shared MSI/MSI-X vector for Bandwidth Management (Myron Stowe) [1748141]
+- [pci] PCI: Fix issue with "pci=disable_acs_redir" parameter being ignored (Myron Stowe) [1748141]
+- [pci] PCI: Add function 1 DMA alias quirk for Marvell 9170 SATA controller (Myron Stowe) [1748141]
+- [pci] PCI/LINK: Deduplicate bandwidth reports for multi-function devices (Myron Stowe) [1748141]
+- [pci] PCI/LINK: Clear bandwidth notification interrupt before enabling it (Myron Stowe) [1748141]
+- [pci] PCI/LINK: Supply IRQ handler so level-triggered IRQs are acked (Myron Stowe) [1748141]
+- [pci] PCI/LINK: Report degraded links via link bandwidth notification (Myron Stowe) [1748141]
+- [pci] PCI/portdrv: Support PCIe services on subtractive decode bridges (Myron Stowe) [1748141]
+- [pci] PCI/portdrv: Use conventional Device ID table formatting (Myron Stowe) [1748141]
+- [pci] PCI: Update PCIEPORTBUS Kconfig help text (Myron Stowe) [1748141]
+- [pci] PCI: Clean up usage of __u32 type (Myron Stowe) [1748141]
+- [pci] PCI: Move Rohm Vendor ID to generic list (Myron Stowe) [1748141]
+- [pci] PCI: pciehp: Add HXT quirk for Command Completed errata (Myron Stowe) [1748141]
+- [pci] PCI: Add ACS quirk for HXT SD4800 (Myron Stowe) [1748141]
+- [pci] PCI: Add HXT vendor ID (Myron Stowe) [1748141]
+- [pci] PCI: Use of_node_name_eq() for node name comparisons (Myron Stowe) [1748141]
+- [pci] PCI: Mark expected switch fall-through (Myron Stowe) [1748141]
+- [pci] PCI: ibmphp: Turn semaphores into completions or mutexes (Myron Stowe) [1748141]
+- [pci] x86/PCI: Fixup RTIT_BAR of Intel Denverton Trace Hub (Myron Stowe) [1748141]
+- [pci] PCI: Rely on config space header type, not class code (Myron Stowe) [1748141]
+- [pci] PCI: Make pci_size() return real BAR size (Myron Stowe) [1748141]
+- [pci] PCI/DPC: Fix print AER status in DPC event handling (Myron Stowe) [1748141]
+- [pci] PCI/ASPM: Save LTR Capability for suspend/resume (Myron Stowe) [1748141]
+- [pci] PCI/ASPM: Use LTR if already enabled by platform (Myron Stowe) [1748141]
+- [pci] PCI: Enable SERR# forwarding for all bridges (Myron Stowe) [1748141]
+- [pci] PCI/AER: Use match_string() helper to simplify the code (Myron Stowe) [1748141]
+- [fs] gfs2: Use async glocks for rename (Robert S Peterson) [1737561]
+- [fs] gfs2: create function gfs2_glock_update_hold_time (Robert S Peterson) [1737561]
+- [fs] gfs2: separate holder for rgrps in gfs2_rename (Robert S Peterson) [1737561]
+- [netdrv] net: aquantia: reapply vlan filters on up (Igor Russkikh) [1740500]
+- [s390] s390/setup: Fix kernel lock down for s390 (Philipp Rudo) [1748343]
+- [powerpc] kvm: ppc: book3s hv: Fix XICS-on-XIVE H_IPI when priority = 0 (David Gibson) [1725800]
+- [s390] vfio-ap: fix irq registration (Thomas Huth) [1660910]
+- [s390] ap: kvm: Enable PQAP/AQIC facility for the guest (Thomas Huth) [1660910]
+- [s390] ap: implement PAPQ AQIC interception in kernel (Thomas Huth) [1660910]
+- [s390] vfio: ap: register IOMMU VFIO notifier (Thomas Huth) [1660910]
+- [s390] ap: kvm: add PQAP interception for AQIC (Thomas Huth) [1660910]
+- [s390] kvm: s390: Do not leak kernel stack data in the KVM_S390_INTERRUPT ioctl (Thomas Huth) [1749503]
+- [s390] kvm: s390: vsie: Return correct values for Invalid CRYCB format (Thomas Huth) [1749503]
+- [s390] kvm: s390: vsie: Do not shadow CRYCB when no AP and no keys (Thomas Huth) [1749503]
+- [s390] kvm: s390: change default halt poll time to 50us (Thomas Huth) [1749503]
+- [s390] kvm: s390: fix typo in parameter description (Thomas Huth) [1749503]
+- [s390] kvm: s390: provide kvm_arch_no_poll function (Thomas Huth) [1749503]
+- [kernel] kvm: polling: add architecture backend to disable polling (Thomas Huth) [1749503]
+- [s390] vtime: steal time exponential moving average (Thomas Huth) [1749503]
+- [tools] kvm: selftests: fix ucall on x86 (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Test invalid bits in kvm_valid_regs and kvm_dirty_regs on s390x (Thomas Huth) [1730412]
+- [s390] kvm: s390: Disallow invalid bits in kvm_valid_regs and kvm_dirty_regs (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Add a test for the KVM_S390_MEM_OP ioctl (Thomas Huth) [1730412]
+- [s390] kvm: s390: Test for bad access register and size at the start of S390_MEM_OP (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Enable dirty_log_test on s390x (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Implement ucall() for s390x (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Split ucall.c into architecture specific files (Thomas Huth) [1730412]
+- [tools] kvm: selftests: ucall improvements (Thomas Huth) [1730412]
+- [tools] kvm: selftests: aarch64: dirty_log_test: fix unaligned memslot size (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Compile code with warnings enabled (Thomas Huth) [1730412]
+- [tools] kvm: selftests: enable pgste option for the linker on s390 (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Move kvm_create_max_vcpus test to generic code (Thomas Huth) [1730412]
+- [virt] kvm: s390: Do not report unusabled IDs via KVM_CAP_MAX_VCPU_ID (Thomas Huth) [1730412]
+- [documentation] kvm: move KVM_CAP_NR_MEMSLOTS to common code (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Add the sync_regs test for s390x (Thomas Huth) [1730412]
+- [s390] kvm: s390: fix memory slot handling for KVM_SET_USER_MEMORY_REGION (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Add processor code for s390x (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Align memory region addresses to 1M on s390x (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Introduce a VM_MODE_DEFAULT macro for the default bits (Thomas Huth) [1730412]
+- [tools] kvm: selftests: aarch64: fix default vm mode (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Guard struct kvm_vcpu_events with __KVM_HAVE_VCPU_EVENTS (Thomas Huth) [1730412]
+- [tools] kvm: selftests: Wrap vcpu_nested_state_get/set functions with x86 guard (Thomas Huth) [1730412]
+
+* Fri Sep 27 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.2.el8]
+- [fs] xfs: fix missing ILOCK unlock when xfs_setattr_nonsize fails due to EDQUOT (Bill O'Donnell) [1739607]
+- [fs] xfs: fix reflink source file racing with directio writes (Bill O'Donnell) [1739607]
+- [fs] xfs: implement cgroup aware writeback (Bill O'Donnell) [1274406]
+- [fs] xfs: simplify xfs_chain_bio (Bill O'Donnell) [1274406]
+- [fs] xfs: inode btree scrubber should calculate im_boffset correctly (Bill O'Donnell) [1739607]
+- [fs] xfs: fix broken log reservation debugging (Bill O'Donnell) [1739607]
+- [fs] xfs: don't reserve per-AG space for an internal log (Bill O'Donnell) [1739607]
+- [fs] xfs: change some error-less functions to void types (Bill O'Donnell) [1739607]
+- [fs] xfs: add online scrub for superblock counters (Bill O'Donnell) [1739607]
+- [fs] xfs: don't parse the mtpt mount option (Bill O'Donnell) [1739607]
+- [fs] xfs: scrub should check incore counters against ondisk headers (Bill O'Donnell) [1739607]
+- [fs] xfs: allow scrubbers to pause background reclaim (Bill O'Donnell) [1739607]
+- [fs] xfs: rename the speculative block allocation reclaim toggle functions (Bill O'Donnell) [1739607]
+- [fs] xfs: track delayed allocation reservations across the filesystem (Bill O'Donnell) [1739607]
+- [fs] xfs: fix broken bhold behavior in xrep_roll_ag_trans (Bill O'Donnell) [1739607]
+- [fs] xfs: unlock inode when xfs_ioctl_setattr_get_trans can't get transaction (Bill O'Donnell) [1739607]
+- [fs] xfs: kill the xfs_dqtrx_t typedef (Bill O'Donnell) [1739607]
+- [fs] xfs: widen inode delalloc block counter to 64-bits (Bill O'Donnell) [1739607]
+- [fs] xfs: widen quota block counters to 64-bit integers (Bill O'Donnell) [1739607]
+- [fs] xfs: assert that we don't enter agfl freeing with a non-permanent transaction (Bill O'Donnell) [1739607]
+- [fs] xfs: make tr_growdata a permanent transaction (Bill O'Donnell) [1739607]
+- [fs] xfs: merge adjacent io completions of the same type (Bill O'Donnell) [1739607]
+- [fs] xfs: remove unused m_data_workqueue (Bill O'Donnell) [1739607]
+- [fs] xfs: implement per-inode writeback completion queues (Bill O'Donnell) [1739607]
+- [fs] xfs: scrub should only cross-reference with healthy btrees (Bill O'Donnell) [1739607]
+- [fs] xfs: scrub/repair should update filesystem metadata health (Bill O'Donnell) [1739607]
+- [fs] xfs: hoist the already_fixed variable to the scrub context (Bill O'Donnell) [1739607]
+- [fs] xfs: collapse scrub bool state flags into a single unsigned int (Bill O'Donnell) [1739607]
+- [fs] xfs: refactor scrub context initialization (Bill O'Donnell) [1739607]
+- [fs] xfs: report inode health via bulkstat (Bill O'Donnell) [1739607]
+- [fs] xfs: report AG health via AG geometry ioctl (Bill O'Donnell) [1739607]
+- [fs] xfs: report fs and rt health via geometry structure (Bill O'Donnell) [1739607]
+- [fs] xfs: add a new ioctl to describe allocation group geometry (Bill O'Donnell) [1739607]
+- [fs] xfs: bump XFS_IOC_FSGEOMETRY to v5 structures (Bill O'Donnell) [1739607]
+- [fs] xfs: clear BAD_SUMMARY if unmounting an unhealthy filesystem (Bill O'Donnell) [1739607]
+- [fs] xfs: replace the BAD_SUMMARY mount flag with the equivalent health code (Bill O'Donnell) [1739607]
+- [fs] xfs: track metadata health status (Bill O'Donnell) [1739607]
+- [fs] xfs,fstrim: fix to return correct minlen (Bill O'Donnell) [1739607]
+- [fs] xfs: shutdown after buf release in iflush cluster abort path (Bill O'Donnell) [1739607]
+- [fs] xfs: wake commit waiters on CIL abort before log item abort (Bill O'Donnell) [1739607]
+- [fs] xfs: fix btree scrub checking with regards to root-in-inode (Bill O'Donnell) [1739607]
+- [fs] xfs: dabtree scrub needs to range-check level (Bill O'Donnell) [1739607]
+- [fs] xfs: clean up xfs_dir2_leaf_addname (Bill O'Donnell) [1739607]
+- [fs] xfs: zero initialize highstale and lowstale in xfs_dir2_leaf_addname (Bill O'Donnell) [1739607]
+- [fs] xfs: clean up xfs_dir2_leafn_add (Bill O'Donnell) [1739607]
+- [fs] xfs: Zero initialize highstale and lowstale in xfs_dir2_leafn_add (Bill O'Donnell) [1739607]
+- [fs] xfs: fix backwards endian conversion in scrub (Bill O'Donnell) [1739607]
+- [fs] xfs: fix uninitialized error variables (Bill O'Donnell) [1739607]
+- [fs] xfs: rework breaking of shared extents in xfs_file_iomap_begin (Bill O'Donnell) [1739607]
+- [fs] xfs: don't pass iomap flags to xfs_reflink_allocate_cow (Bill O'Donnell) [1739607]
+- [fs] xfs: fix uninitialized error variable (Bill O'Donnell) [1739607]
+- [fs] xfs: introduce an always_cow mode (Bill O'Donnell) [1739607]
+- [fs] xfs: report IOMAP_F_SHARED from xfs_file_iomap_begin_delay (Bill O'Donnell) [1739607]
+- [fs] xfs: make COW fork unwritten extent conversions more robust (Bill O'Donnell) [1739607]
+- [fs] xfs: merge COW handling into xfs_file_iomap_begin_delay (Bill O'Donnell) [1739607]
+- [fs] xfs: also truncate holes covered by COW blocks (Bill O'Donnell) [1739607]
+- [fs] xfs: don't use delalloc extents for COW on files with extsize hints (Bill O'Donnell) [1739607]
+- [fs] xfs: fix SEEK_DATA for speculative COW fork preallocation (Bill O'Donnell) [1739607]
+- [fs] xfs: make xfs_bmbt_to_iomap more useful (Bill O'Donnell) [1739607]
+- [fs] xfs: fix xfs_buf magic number endian checks (Bill O'Donnell) [1739607]
+- [fs] xfs: retry COW fork delalloc conversion when no extent was found (Bill O'Donnell) [1739607]
+- [fs] xfs: remove the truncate short cut in xfs_map_blocks (Bill O'Donnell) [1739607]
+- [fs] xfs: move xfs_iomap_write_allocate to xfs_aops.c (Bill O'Donnell) [1739607]
+- [fs] xfs: move stat accounting to xfs_bmapi_convert_delalloc (Bill O'Donnell) [1739607]
+- [fs] xfs: move transaction handling to xfs_bmapi_convert_delalloc (Bill O'Donnell) [1739607]
+- [fs] xfs: split XFS_BMAPI_DELALLOC handling from xfs_bmapi_write (Bill O'Donnell) [1739607]
+- [fs] xfs: factor out two helpers from xfs_bmapi_write (Bill O'Donnell) [1739607]
+- [fs] xfs: simplify the xfs_bmap_btree_to_extents calling conventions (Bill O'Donnell) [1739607]
+- [fs] xfs: remove the s_maxbytes checks in xfs_map_blocks (Bill O'Donnell) [1739607]
+- [fs] xfs: remove the io_type field from the writeback context and ioend (Bill O'Donnell) [1739607]
+- [fs] xfs: compile time offset checks for common v4/v5 metadata (Bill O'Donnell) [1739607]
+- [fs] xfs: use buf ops magic to detect btree block type (Bill O'Donnell) [1739607]
+- [fs] xfs: add magic numbers to dquot buffer ops (Bill O'Donnell) [1739607]
+- [fs] xfs: add inode magic to inode verifier (Bill O'Donnell) [1739607]
+- [fs] xfs: factor xfs_da3_blkinfo verification into common helper (Bill O'Donnell) [1739607]
+- [fs] xfs: miscellaneous verifier magic value fixups (Bill O'Donnell) [1739607]
+- [fs] xfs: use verifier magic field in dir2 leaf verifiers (Bill O'Donnell) [1739607]
+- [fs] xfs: distinguish between bnobt and cntbt magic values (Bill O'Donnell) [1739607]
+- [fs] xfs: split up allocation btree verifier (Bill O'Donnell) [1739607]
+- [fs] xfs: distinguish between inobt and finobt magic values (Bill O'Donnell) [1739607]
+- [fs] xfs: create a separate finobt verifier (Bill O'Donnell) [1739607]
+- [fs] xfs: always check magic values in on-disk byte order (Bill O'Donnell) [1739607]
+- [fs] xfs: clarify documentation for the function to reverify buffers (Bill O'Donnell) [1739607]
+- [fs] xfs: cache unlinked pointers in an rhashtable (Bill O'Donnell) [1739607]
+- [fs] xfs: add tracepoints for high level iunlink operations (Bill O'Donnell) [1739607]
+- [fs] xfs: refactor inode update in iunlink_remove (Bill O'Donnell) [1739607]
+- [fs] xfs: refactor unlinked list search and mapping to a separate function (Bill O'Donnell) [1739607]
+- [fs] xfs: refactor inode unlinked pointer update functions (Bill O'Donnell) [1739607]
+- [fs] xfs: strengthen AGI unlinked inode bucket pointer checks (Bill O'Donnell) [1739607]
+- [fs] xfs: refactor AGI unlinked bucket updates (Bill O'Donnell) [1739607]
+- [fs] xfs: add xfs_verify_agino_or_null helper (Bill O'Donnell) [1739607]
+- [fs] xfs: clean up iunlink functions (Bill O'Donnell) [1739607]
+- [fs] xfs: Introduce XFS_PTAG_VERIFIER_ERROR panic mask (Bill O'Donnell) [1739607]
+- [fs] xfs: remove duplicated xfs_defer.h (Bill O'Donnell) [1739607]
+- [fs] xfs: check attribute name validity (Bill O'Donnell) [1739607]
+- [fs] xfs: check directory name validity (Bill O'Donnell) [1739607]
+- [fs] xfs: fix off-by-one error in rtbitmap cross-reference (Bill O'Donnell) [1739607]
+- [fs] xfs: scrub should flag dir/attr offsets that aren't mappable with xfs_dablk_t (Bill O'Donnell) [1739607]
+- [fs] xfs: abort xattr scrub if fatal signals are pending (Bill O'Donnell) [1739607]
+- [fs] xfs: consolidate scrub dinode mapping code into a single function (Bill O'Donnell) [1739607]
+- [fs] xfs: scrub big block inode btrees correctly (Bill O'Donnell) [1739607]
+- [fs] xfs: clean up the inode cluster checking in the inobt scrub (Bill O'Donnell) [1739607]
+- [fs] xfs: hoist inode cluster checks out of loop (Bill O'Donnell) [1739607]
+- [fs] xfs: check inobt record alignment on big block filesystems (Bill O'Donnell) [1739607]
+- [fs] xfs: check the ir_startino alignment directly (Bill O'Donnell) [1739607]
+- [fs] xfs: never try to scrub more than 64 inodes per inobt record (Bill O'Donnell) [1739607]
+- [powerpc] powerpc: Allow flush_(inval_)dcache_range to work across ranges >4GB (Steve Best) [1744062]
+- [scsi] scsi: lpfc: Fix port relogin failure due to GID_FT interaction (Dick Kennedy) [1733217]
+- [rpmspec] redhat: Fix error messages during build of zfcpdump kernel (Philipp Rudo) [1745652]
+- [s390] s390/protvirt: avoid memory sharing for diag 308 set/store (Philipp Rudo) [1745614]
+- [infiniband] IB/hfi1: Remove extra brackets from an if (Petr Oros) [1737066]
+- [documentation] docs/memory-barriers.txt: Update I/O section to be clearer about CPU vs thread (Petr Oros) [1737066]
+- [documentation] docs/memory-barriers.txt: Fix style, spacing and grammar in I/O section (Petr Oros) [1737066]
+- [powerpc] arch: Remove dummy mmiowb() definitions from arch code (Petr Oros) [1737066]
+- [netdrv] net/ethernet/silan/sc92031: Remove stale comment about mmiowb() (Petr Oros) [1737066]
+- [infiniband] i40iw: Redefine i40iw_mmiowb() to do nothing (Petr Oros) [1737066]
+- [scsi] scsi/qla1280: Remove stale comment about mmiowb() (Petr Oros) [1737066]
+- [netdrv] drivers: Remove explicit invocations of mmiowb() (Petr Oros) [1737066]
+- [infiniband] drivers: Remove useless trailing comments from mmiowb() invocations (Petr Oros) [1737066]
+- [documentation] Documentation: Kill all references to mmiowb() (Petr Oros) [1737066]
+- [riscv] riscv/mmiowb: Hook up mmwiob() implementation to asm-generic code (Petr Oros) [1737066]
+- [powerpc] powerpc/mmiowb: Hook up mmwiob() implementation to asm-generic code (Petr Oros) [1737066]
+- [nds32] nds32/io: Remove useless definition of mmiowb() (Petr Oros) [1737066]
+- [x86] x86/io: Remove useless definition of mmiowb() (Petr Oros) [1737066]
+- [arm64] arm64/io: Remove useless definition of mmiowb() (Petr Oros) [1737066]
+- [include] mmiowb: Hook up mmiowb helpers to spinlocks and generic I/O accessors (Petr Oros) [1737066]
+- [arm64] arch: Use asm-generic header for asm/mmiowb.h (Petr Oros) [1737066]
+- [kernel] asm-generic/mmiowb: Add generic implementation of mmiowb() tracking (Petr Oros) [1737066]
+- [documentation] docs/memory-barriers.txt: Rewrite "KERNEL I/O BARRIER EFFECTS" section (Petr Oros) [1737066]
+- [s390] s390/cpum_sf: save TOD clock base in SDBs for time conversion (Philipp Rudo) [1743504]
+- [net] netns: provide pure entropy for net_hash_mix() (Paolo Abeni) [1737439] {CVE-2019-10639}
+- [net] netns: get more entropy from net_hash_mix() (Paolo Abeni) [1737439] {CVE-2019-10639}
+- [netdrv] net: phy: improve pause handling (Petr Oros) [1735763]
+- [netdrv] net: phy: fix reading fixed phy status (Petr Oros) [1735763]
+- [netdrv] net: phy: allow a PHY driver to define neither features nor get_features (Petr Oros) [1735763]
+- [netdrv] net: phy: Add support for asking the PHY its abilities (Petr Oros) [1735763]
+- [netdrv] net: phy: use genphy_read_abilities in genphy driver (Petr Oros) [1735763]
+- [netdrv] net: phy: add genphy_read_abilities (Petr Oros) [1735763]
+- [netdrv] net: phy: let genphy_c45_read_abilities also check aneg capability (Petr Oros) [1735763]
+- [netdrv] net: phy: Add generic support for 2.5GBaseT and 5GBaseT (Petr Oros) [1735763]
+- [netdrv] net: phy: Extract genphy_c45_pma_read_abilities from marvell10g (Petr Oros) [1735763]
+- [netdrv] net: phy: Move of_set_phy_eee_broken to phy-core.c (Petr Oros) [1735763]
+- [netdrv] net: phy: Mask-out non-compatible modes when setting the max-speed (Petr Oros) [1735763]
+- [netdrv] net: phy: don't allow __set_phy_supported to add unsupported modes (Petr Oros) [1735763]
+- [netdrv] net: phy: remove unneeded masking of PHY register read results (Petr Oros) [1735763]
+- [netdrv] net: phy: probe the PHY before determining the supported features (Petr Oros) [1735763]
+- [rpmspec] fix package summary and description for some kernel subpackages ("Herton R. Krzesinski") [1656863]
+- [fs] mm/huge_memory: fix vmf_insert_pfn_{pmd, pud}() crash, handle unaligned addresses (Jeff Moyer) [1743159]
+- [mm] mm/huge_memory.c: fix modifying of page protection by insert_pfn_pmd() (Jeff Moyer) [1743159]
+- [arm64] arm64: disable improved unwind tables (Mark Langsdorf) [1684694]
+- [arm64] arm64/stacktrace: Export save_stack_trace_regs() (Mark Langsdorf) [1684694]
+- [fs] nfs4: flex_file: ignore synthetic uid/gid for tightly coupled DSes (Steve Dickson) [1655712]
+- [include] futex: Update comments and docs about return values of arch futex code (Waiman Long) [1737058]
+- [arm64] arm64: futex: Avoid copying out uninitialised stack in failed cmpxchg() (Waiman Long) [1737058]
+- [arm64] arm64: futex: Bound number of LDXR/STXR loops in FUTEX_WAKE_OP (Waiman Long) [1737058]
+- [kernel] locking/futex: Allow low-level atomic operations to return -EAGAIN (Waiman Long) [1737058]
+- [arm64] arm64: futex: Fix FUTEX_WAKE_OP atomic ops with non-zero result value (Waiman Long) [1737058]
+- [kernel] futex: Ensure that futex address is aligned in handle_futex_death() (Waiman Long) [1737058]
+- [kernel] futex: Convert futex_pi_state.refcount to refcount_t (Waiman Long) [1737058]
+- [kernel] sched/wake_q: Reduce reference counting for special users (Waiman Long) [1737058]
+- [kernel] sched/wake_q: Add branch prediction hint to wake_q_add() cmpxchg (Waiman Long) [1737058]
+- [kernel] futex: No need to check return value of debugfs_create functions (Waiman Long) [1737058]
+- [kernel] futex: Handle early deadlock return correctly (Waiman Long) [1737058]
+- [kernel] futex: Fix barrier comment (Waiman Long) [1737058]
+- [kernel] futex: Cure exit race (Waiman Long) [1737058]
+- [kernel] futex: Replace spin_is_locked() with lockdep (Waiman Long) [1737058]
+- [kernel] futex: Mark expected switch fall-throughs (Waiman Long) [1737058]
+- [kernel] sched/deadline: Correctly handle active 0-lag timers (Phil Auld) [1735907]
+- [include] build_bug.h: add wrapper for _Static_assert (Ivan Vecera) [1735752]
+- [include] build_bug.h: remove most of dummy BUILD_BUG_ON stubs for Sparse (Ivan Vecera) [1735752]
+- [include] build_bug.h: remove negative-array fallback for BUILD_BUG_ON() (Ivan Vecera) [1735752]
+- [mm] percpu: remove spurious lock dependency between percpu and sched (Rafael Aquini) [1731180]
+- [mm] percpu: use chunk scan_hint to skip some scanning (Rafael Aquini) [1731180]
+- [mm] percpu: convert chunk hints to be based on pcpu_block_md (Rafael Aquini) [1731180]
+- [mm] percpu: make pcpu_block_md generic (Rafael Aquini) [1731180]
+- [mm] percpu: use block scan_hint to only scan forward (Rafael Aquini) [1731180]
+- [mm] percpu: remember largest area skipped during allocation (Rafael Aquini) [1731180]
+- [mm] percpu: add block level scan_hint (Rafael Aquini) [1731180]
+- [mm] percpu: set PCPU_BITMAP_BLOCK_SIZE to PAGE_SIZE (Rafael Aquini) [1731180]
+- [mm] percpu: relegate chunks unusable when failing small allocations (Rafael Aquini) [1731180]
+- [mm] percpu: manage chunks based on contig_bits instead of free_bytes (Rafael Aquini) [1731180]
+- [mm] percpu: introduce helper to determine if two regions overlap (Rafael Aquini) [1731180]
+- [mm] percpu: do not search past bitmap when allocating an area (Rafael Aquini) [1731180]
+- [mm] percpu: update free path with correct new free region (Rafael Aquini) [1731180]
+- [mm] mm/percpu: add checks for the return value of memblock_alloc*() (Rafael Aquini) [1731180]
+- [mm] percpu: km: no need to consider pcpu_group_offsets[0] (Rafael Aquini) [1731180]
+- [mm] percpu: use nr_groups as check condition (Rafael Aquini) [1731180]
+- [mm] percpu: convert spin_lock_irq to spin_lock_irqsave. (Rafael Aquini) [1731180]
+- [mm] mm: percpu: remove unnecessary unlikely() (Rafael Aquini) [1731180]
+- [fs] /proc/meminfo: add percpu populated pages count (Rafael Aquini) [1731180]
+- [netdrv] tg3: Use napi_alloc_frag() (Jonathan Toppins) [1724774]
+- [fs] fuse: fix copy_file_range() in the writeback case (Miklos Szeredi) [1650518]
+- [fs] fuse: add support for copy_file_range() (Miklos Szeredi) [1650518]
+
+* Thu Sep 26 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-147.1.el8]
+- [x86] perf/x86/intel: Fix spurious NMI on fixed counter (Michael Petlan) [1755110]
+- [x86] perf/x86/intel: Fix race in intel_pmu_disable_event() (Michael Petlan) [1755110]
+- [netdrv] drivers: tap.c: fix wrong backport causing WARN_ON_ONCE(1) in skb_flow_dissect() (Davide Caratti) [1750711]
+- [virt] KVM: coalesced_mmio: add bounds checking (Bandan Das) [1746804] {CVE-2019-14821}
+
+* Wed Sep 25 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-146.1.el8]
+- [fs] gfs2: clear buf_in_tr when ending a transaction in sweep_bh_for_rgrps (Robert S Peterson) [1750939]
+- [s390] kvm: s390: kvm_s390_vm_start_migration: check dirty_bitmap before using it as target for memset() (Thomas Huth) [1753260]
+- [fs] cifs: fix credits leak for SMB1 oplock breaks (Leif Sahlberg) [1752243]
+
+* Tue Sep 24 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-145.1.el8]
+- Revert "[redhat] switch secureboot kernel image signing to release keys" (Phillip Lougher)
+- [iommu] iommu/amd: Add support for X2APIC IOMMU interrupts (Suravee Suthikulpanit) [1734842]
+- [vhost] vhost: make sure log_num < in_num (Eugenio Perez) [1750882] {CVE-2019-14835}
+
+* Thu Sep 19 2019 Phillip Lougher <plougher@redhat.com> [4.18.0-144.1.el8]
+- [kernel] open the RHEL 8.2 development (Phillip Lougher)
+- [md] Revert "[md] dm: eliminate 'split_discard_bios' flag from DM target interface" (Mike Snitzer) [1749929]
+- [md] Revert "[md] dm: make sure to obey max_io_len_target_boundary" (Mike Snitzer) [1749929]
+- [pci] PCI: Restore Resizable BAR size bits correctly for 1MB BARs (Myron Stowe) [1717760]
+- [net] netfilter: nft_fib_netdev: Terminate rule eval if protocol=IPv6 and ipv6 module is disabled (Phil Sutter) [1743945]
+- [net] netfilter: bridge: Drops IPv6 packets if IPv6 module is not loaded (Phil Sutter) [1743945]
+- [drm] drm/qxl: get vga ioports (Gerd Hoffmann) [1728936]
+- [drm] drm/i915: Call dma_set_max_seg_size() in i915_driver_hw_probe() (Lyude Paul) [1724363]
+
+* Thu Sep 12 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-144.el8]
+- [md] Revert "[md] dm: eliminate 'split_discard_bios' flag from DM target interface" (Mike Snitzer) [1749929]
+- [md] Revert "[md] dm: make sure to obey max_io_len_target_boundary" (Mike Snitzer) [1749929]
+- [pci] PCI: Restore Resizable BAR size bits correctly for 1MB BARs (Myron Stowe) [1717760]
+- [net] netfilter: nft_fib_netdev: Terminate rule eval if protocol=IPv6 and ipv6 module is disabled (Phil Sutter) [1743945]
+- [net] netfilter: bridge: Drops IPv6 packets if IPv6 module is not loaded (Phil Sutter) [1743945]
+- [drm] drm/qxl: get vga ioports (Gerd Hoffmann) [1728936]
+- [drm] drm/i915: Call dma_set_max_seg_size() in i915_driver_hw_probe() (Lyude Paul) [1724363]
+
+* Mon Sep 09 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-143.el8]
+- [net] netfilter: nft_set: fix allocation size overflow in privsize callback. (Florian Westphal) [1746338]
+- [net] net: route dump netlink NLM_F_MULTI flag missing (Stefano Brivio) [1745971]
+- [net] sched: pfifo_fast: fix wrong dereference in pfifo_fast_enqueue (Davide Caratti) [1745390]
+- [net] sched: pfifo_fast: fix wrong dereference when qdisc is reset (Davide Caratti) [1745387]
+- [scsi] scsi: vmw_pscsi: Fix use-after-free in pvscsi_queue_lck() (David Milburn) [1746597]
+
+* Fri Sep 06 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-142.el8]
+- [drm] drm/virtio: use virtio_max_dma_size (Gerd Hoffmann) [1739291]
+- [mm] hwpoison, memory_hotplug: allow hwpoisoned pages to be offlined (Rafael Aquini) [1706088]
+- [powerpc] kvm: ppc: book3s: Enable XIVE native capability only if OPAL has required functions [BZ1744884] (David Gibson) [1744884]
+- [scsi] scsi: lpfc: Fix oops when fewer hdwqs than cpus (Dick Kennedy) [1745731]
+- [scsi] scsi: lpfc: Limit xri count for kdump environment (Dick Kennedy) [1745731]
+- [scsi] scsi: lpfc: Mitigate high memory pre-allocation by SCSI-MQ (Dick Kennedy) [1745731]
+- [scsi] scsi: qla2xxx: Fix hardirq-unsafe locking (Himanshu Madhani) [1719941]
+- [x86] Revert "[x86] x86/kexec/64: Prevent kexec from 5-level paging to a 4-level only kernel" (Baoquan He) [1669088]
+- [x86] Revert "[x86] x86/boot: Add xloadflags bits to check for 5-level paging support" (Baoquan He) [1669088]
+
+* Fri Aug 30 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-141.el8]
+- [wireless] mwifiex: fix 802.11n/WPA detection (Jarod Wilson) [1714476] {CVE-2019-3846}
+
+* Thu Aug 29 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-140.el8]
+- [x86] x86/kdump: Reserve extra memory when SME or SEV is active (Kairui Song) [1728519]
+- [scsi] scsi: qla2xxx: Fix hardlockup in abort command during driver remove (Himanshu Madhani) [1690041]
+- [scsi] qla2xxx: Update driver version to 10.01.00.15.08.1-k1 (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Fix panic from use after free in qla2x00_async_tm_cmd (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: cleanup trace buffer initialization (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: qla2x00_alloc_fw_dump: set ha->eft (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Use mutex protection during qla2x00_sysfs_read_fw_dump() (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: move IO flush to the front of NVME rport unregistration (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Fix NVME cmd and LS cmd timeout race condition (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Complain loudly about reference count underflow (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Fix race conditions in the code for aborting SCSI commands (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Use an on-stack completion in qla24xx_control_vp() (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Change abort wait_loop from msleep to wait_event_timeout (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Set the SCSI command result before calling the command done (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: on session delete, return nvme cmd (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Fix kernel crash after disconnecting NVMe devices (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Remove the fcport test from qla_nvme_abort_work() (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Fix driver unload when FC-NVMe LUNs are connected (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Set remote port devloss timeout to 0 (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Fix panic in qla_dfs_tgt_counters_show (Himanshu Madhani) [1690041]
+- [scsi] scsi: qla2xxx: Fix fw dump corruption (Himanshu Madhani) [1690041]
+- [x86] kvm: disable nested virt on pre-haswell processors (Paolo Bonzini) [1739739]
+- [x86] kvm: taint kernel for tech-preview when using nested virtualization (Paolo Bonzini) [1739739]
+- [x86] kvm: x86: hyper-v: don't crash on KVM_GET_SUPPORTED_HV_CPUID when kvm_intel.nested is disabled (Vitaly Kuznetsov) [1746100]
+
+* Tue Aug 27 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-139.el8]
+- [char] ipmi: move message error checking to avoid deadlock (Tony Camuso) [1731388 1718699]
+- [crypto] crypto: testmgr - mark crc32 checksum as FIPS allowed (Neil Horman) [1738887]
+- [include] dma-mapping: use dma_get_mask in dma_addressing_limited (Don Dutile) [1738631]
+- [kernel] dma-direct: correct the physical addr in dma_direct_sync_sg_for_cpu/device (Don Dutile) [1738631]
+- [kernel] dma-direct: only limit the mapping size if swiotlb could be used (Don Dutile) [1738631]
+- [include] dma-mapping: add a dma_addressing_limited helper (Don Dutile) [1738631]
+- [kernel] dma-direct: Force unencrypted DMA under SME for certain DMA masks (Don Dutile) [1738631]
+- [lib] lib/genalloc: introduce chunk owners (Don Dutile) [1738631]
+- [lib] lib/genalloc: add gen_pool_dma_zalloc() for zeroed DMA allocations (Don Dutile) [1738631]
+- [lib] lib/genalloc.c: fix allocation of aligned buffer from non-aligned chunk (Don Dutile) [1738631]
+- [include] dma-mapping: remove dma_max_pfn (Don Dutile) [1738631]
+- [mmc] mmc: core: let the dma map ops handle bouncing (Don Dutile) [1738631]
+- [mmc] mmc: core: align max segment size with logical block size (Don Dutile) [1738631]
+- [kernel] swiotlb: no need to check return value of debugfs_create functions (Don Dutile) [1738631]
+- [xen] swiotlb: fix phys_addr_t overflow warning (Don Dutile) [1738631]
+- [kernel] swiotlb: Return consistent SWIOTLB segments/nr_tbl (Don Dutile) [1738631]
+- [kernel] swiotlb: Group identical cleanup in swiotlb_cleanup() (Don Dutile) [1738631]
+- [kernel] swiotlb: save io_tlb_used to local variable before leaving critical section (Don Dutile) [1738631]
+- [kernel] swiotlb: dump used and total slots when swiotlb buffer is full (Don Dutile) [1738631]
+- [kernel] swiotlb: add checks for the return value of memblock_alloc*() (Don Dutile) [1738631]
+- [kernel] swiotlb: add debugfs to track swiotlb buffer usage (Don Dutile) [1738631]
+- [kernel] dma-direct: fix DMA_ATTR_NO_KERNEL_MAPPING (Don Dutile) [1738631]
+- [kernel] dma-direct: handle DMA_ATTR_NO_KERNEL_MAPPING in common code (Don Dutile) [1738631]
+- [kernel] dma-direct: fix DMA_ATTR_NO_KERNEL_MAPPING for remapped allocations (Don Dutile) [1738631]
+- [kernel] dma-mapping: remove a pointless memset in dma_atomic_pool_init (Don Dutile) [1738631]
+- [kernel] dma-mapping: fix lack of DMA address assignment in generic remap allocator (Don Dutile) [1738631]
+- [kernel] dma-remap: support DMA_ATTR_NO_KERNEL_MAPPING (Don Dutile) [1738631]
+- [kernel] dma-mapping: support highmem in the generic remap allocator (Don Dutile) [1738631]
+- [kernel] dma-direct: handle DMA_ATTR_NON_CONSISTENT in common code (Don Dutile) [1738631]
+- [kernel] dma-mapping: add a dma_alloc_need_uncached helper (Don Dutile) [1738631]
+- [kernel] dma-mapping: truncate dma masks to what dma_addr_t can hold (Don Dutile) [1738631]
+- [kernel] dma-remap: Avoid de-referencing NULL atomic_pool (Don Dutile) [1738631]
+- [include] dma-buf: add DMA_BUF_SET_NAME ioctls (Don Dutile) [1738631]
+- [include] dma-buf: give each buffer a full-fledged inode (Don Dutile) [1738631]
+- [fs] new wrapper: alloc_file_pseudo() (Don Dutile) [1738631]
+- [kernel] dma-direct: provide generic support for uncached kernel segments (Don Dutile) [1738631]
+- [include] dma-contiguous: fix !CONFIG_DMA_CMA version of dma_{alloc, free}_contiguous() (Don Dutile) [1738631]
+- [kernel] dma-contiguous: use fallback alloc_pages for single pages (Don Dutile) [1738631]
+- [kernel] dma-contiguous: add dma_{alloc,free}_contiguous() helpers (Don Dutile) [1738631]
+- [iommu] iommu/dma: Fix condition check in iommu_dma_unmap_sg (Don Dutile) [1738631]
+- [iommu] iommu/dma: move the arm64 wrappers to common code (Don Dutile) [1738631]
+- [iommu] iommu/dma-iommu.c: convert to use vm_map_pages() (Don Dutile) [1738631]
+- [mm] mm: introduce new vm_map_pages() and vm_map_pages_zero() API (Don Dutile) [1738631]
+- [mm] arm64/iommu: handle non-remapped addresses in ->mmap and ->get_sgtable (Don Dutile) [1738631]
+- [arm64] arm64/mm: wire up CONFIG_ARCH_HAS_SET_DIRECT_MAP (Don Dutile) [1738631]
+- [kernel] mm/hibernation: Make hibernation handle unmapped pages (Don Dutile) [1738631]
+- [mm] page_poison: play nicely with KASAN (Don Dutile) [1738631]
+- [mm] mm/vmalloc: Avoid rare case of flushing TLB with weird arguments (Don Dutile) [1738631]
+- [mm] mm/vmalloc: Fix calculation of direct map addr range (Don Dutile) [1738631]
+- [mm] mm/vmalloc: Add flag for freeing of special permsissions (Don Dutile) [1738631]
+- [x86] x86/mm/cpa: Add set_direct_map_*() functions (Don Dutile) [1738631]
+- [arm64] dma-mapping: add a kconfig symbol for arch_setup_dma_ops availability (Don Dutile) [1738631]
+- [iommu] iommu/dma: Remove the flush_page callback (Don Dutile) [1738631]
+- [include] iommu/dma: Cleanup dma-iommu.h (Don Dutile) [1738631]
+- [dma] dmaengine: Add matching device node validation in __dma_request_channel() (Don Dutile) [1738631]
+- [dma] dmaengine: dma_request_chan_by_mask() to handle deferred probing (Don Dutile) [1738631]
+- [include] dma-buf: start caching of sg_table objects v2 (Don Dutile) [1738631]
+- [kernel] dma-mapping: add a Kconfig symbol to indicate arch_dma_prep_coherent presence (Don Dutile) [1738631]
+- [iommu] iommu/dma-iommu: Remove iommu_dma_map_msi_msg() (Don Dutile) [1738631]
+- [irqchip] irqchip/ls-scfg-msi: Don't map the MSI page in ls_scfg_msi_compose_msg() (Don Dutile) [1738631]
+- [irqchip] irqchip/gic-v3-mbi: Don't map the MSI page in mbi_compose_m{b, s}i_msg() (Don Dutile) [1738631]
+- [irqchip] irqchip/gicv2m: Don't map the MSI page in gicv2m_compose_msi_msg() (Don Dutile) [1738631]
+- [irqchip] irqchip/gic-v3-its: Don't map the MSI page in its_irq_compose_msi_msg() (Don Dutile) [1738631]
+- [irqchip] irqchip/gic-v3-its: Align PCI Multi-MSI allocation on their size (Don Dutile) [1738631]
+- [iommu] iommu/dma-iommu: Split iommu_dma_map_msi_msg() in two parts (Don Dutile) [1738631]
+- [iommu] iommu/dma: Remove unused variable (Don Dutile) [1738631]
+- [iommu] iommu/dma: Use NUMA aware memory allocations in __iommu_dma_alloc_pages() (Don Dutile) [1738631]
+- [kernel] genirq/msi: Add a new field in msi_desc to store an IOMMU cookie (Don Dutile) [1738631]
+- [pci] PCI/MSI: Remove unused mask_msi_irq() and unmask_msi_irq() (Don Dutile) [1738631]
+- [include] PCI/MSI: Remove unused __write_msi_msg() and write_msi_msg() (Don Dutile) [1738631]
+- [include] genirq/msi: Clean up usage of __u8/__u16 types (Don Dutile) [1738631]
+- [base] platform-msi: Free descriptors in platform_msi_domain_free() (Don Dutile) [1738631]
+- [base] genirq/msi: Allow creation of a tree-based irqdomain for platform-msi (Don Dutile) [1738631]
+- [kernel] dma-debug: only skip one stackframe entry (Don Dutile) [1738631]
+- [dma] dmaengine: idma64: Move driver name to the header (Don Dutile) [1738631]
+- [kernel] dma-mapping: remove an unnecessary NULL check (Don Dutile) [1738631]
+- [include] dma-buf: Update [un]map documentation to match the other functions (Don Dutile) [1738631]
+- [include] dma-buf: Remove leftover [un]map_atomic comments (Don Dutile) [1738631]
+- [x86] x86/dma: Remove the x86_dma_fallback_dev hack (Don Dutile) [1738631]
+- [kernel] dma-mapping: remove leftover NULL device support (Don Dutile) [1738631]
+- [kernel] dma: select GENERIC_ALLOCATOR for DMA_REMAP (Don Dutile) [1738631]
+- [crypto] crypto: ccp - Ignore unconfigured CCP device on suspend/resume (Gary Hook) [1743999]
+- [md] dm snapshot: fix oversights in optional discard support (Mike Snitzer) [1744291]
+- [md] dm snapshot: add optional discard support features (Mike Snitzer) [1744291]
+- [md] dm snapshot: Use fine-grained locking scheme (Mike Snitzer) [1744291]
+- [md] dm snapshot: Make exception tables scalable (Mike Snitzer) [1744291]
+- [md] dm snapshot: Replace mutex with rw semaphore (Mike Snitzer) [1744291]
+- [md] dm snapshot: Don't sleep holding the snapshot lock (Mike Snitzer) [1744291]
+- [include] list_bl: Add hlist_bl_add_before/behind helpers (Mike Snitzer) [1744291]
+- [powerpc] powerpc/rtas: use device model APIs and serialization during LPM (Steve Best) [1741643]
+- [firmware] firmware/efi: Add NULL pointer checks in efivars API functions (Jarod Wilson) [1741949]
+- [fs] ovl: fix wrong flags check in FS_IOC_FS[SG]ETXATTR ioctls (Miklos Szeredi) [1724518]
+- [include] mm: page_cache_add_speculative(): refactor out some code duplication (Michael Petlan) [1738331]
+- [netdrv] ibmvnic: Unmap DMA address of TX descriptor buffers after use (Steve Best) [1743155]
+- [fs] NFSv4.1 don't free interrupted slot on open (Steve Dickson) [1708345]
+- [fs] NFSv4.1: Avoid false retries when RPC calls are interrupted (Steve Dickson) [1708345]
+- [net] ipv6: Fix return value of ipv6_mc_may_pull() for malformed packets (Stefano Brivio) [1743203]
+- [net] inet: frags: re-introduce skb coalescing for local delivery (Guillaume Nault) [1719418]
+
+* Mon Aug 26 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-138.el8]
+- [net] xfrm: fix sa selector validation (Sabrina Dubroca) [1738871]
+- [net] xfrm: Fix xfrm sel prefix length validation (Sabrina Dubroca) [1738871]
+- [kernel] locking/rwsem: Prevent decrement of reader count before increment (Waiman Long) [1740338]
+- [include] include/list: Backport list_cut_before() (Waiman Long) [1740338]
+- [vhost] vhost: vsock: add weight support (Jason Wang) [1738494]
+- [vhost] vhost_net: fix possible infinite loop (Jason Wang) [1738494]
+- [vhost] vhost: introduce vhost_exceeds_weight() (Jason Wang) [1738494]
+- [vhost] vhost: reject zero size iova range (Jason Wang) [1738494]
+- [vhost] vhost: silence an unused-variable warning (Jason Wang) [1738494]
+- [vhost] vhost: correctly check the return value of translate_desc() in log_used() (Jason Wang) [1738494]
+- [vhost] vhost: return EINVAL if iovecs size does not match the message size (Jason Wang) [1738494]
+- [vhost] Revert "net: vhost: lock the vqs one by one" (Jason Wang) [1738494]
+- [vhost] vhost_net: switch to use mutex_trylock() in vhost_net_busy_poll() (Jason Wang) [1738494]
+- [vhost] vhost: make sure used idx is seen before log in vhost_add_used_n() (Jason Wang) [1738494]
+- [vhost] vhost: fix IOTLB locking (Jason Wang) [1738494]
+- [netdrv] tun: wake up waitqueues after IFF_UP is set (Jason Wang) [1738494]
+- [netdrv] tuntap: synchronize through tfiles array instead of tun->numqueues (Jason Wang) [1738494]
+- [netdrv] tuntap: fix dividing by zero in ebpf queue selection (Jason Wang) [1738494]
+- [netdrv] tun: Remove unused first parameter of tun_get_iff() (Jason Wang) [1738494]
+- [netdrv] tun: Add ioctl() TUNGETDEVNETNS cmd to allow obtaining real net ns of tun device (Jason Wang) [1738494]
+- [netdrv] tun: add a missing rcu_read_unlock() in error path (Jason Wang) [1738494]
+- [netdrv] tun: properly test for IFF_UP (Jason Wang) [1738494]
+- [netdrv] tun: remove unnecessary memory barrier (Jason Wang) [1738494]
+- [netdrv] tun: fix blocking read (Jason Wang) [1738494]
+- [netdrv] tun: move the call to tun_set_real_num_queues (Jason Wang) [1738494]
+- [netdrv] tun: publish tfile after it's fully initialized (Jason Wang) [1738494]
+- [netdrv] tun: replace get_cpu_ptr with this_cpu_ptr when bh disabled (Jason Wang) [1738494]
+- [netdrv] tun: remove skb access after netif_receive_skb (Jason Wang) [1738494]
+- [netdrv] tun: remove unnecessary check in tun_flow_update (Jason Wang) [1738494]
+- [netdrv] tuntap: fix multiqueue rx (Jason Wang) [1738494]
+- [netdrv] tun: Adjust on-stack tun_page initialization. (Jason Wang) [1738494]
+- [netdrv] tuntap: free XDP dropped packets in a batch (Jason Wang) [1738494]
+- [vhost] vhost_net: mitigate page reference counting during page frag refill (Jason Wang) [1738494]
+- [vhost] net: vhost: remove bad code line (Jason Wang) [1738494]
+- [vhost] net: vhost: add rx busy polling in tx path (Jason Wang) [1738494]
+- [vhost] net: vhost: factor out busy polling logic to vhost_net_busy_poll() (Jason Wang) [1738494]
+- [vhost] net: vhost: replace magic number of lock annotation (Jason Wang) [1738494]
+- [vhost] net: vhost: lock the vqs one by one (Jason Wang) [1738494]
+- [vhost] vhost_net: add a missing error return (Jason Wang) [1738494]
+- [netdrv] net: tun: remove useless codes of tun_automq_select_queue (Jason Wang) [1738494]
+- [vhost] vhost_net: batch submitting XDP buffers to underlayer sockets (Jason Wang) [1738494]
+- [netdrv] tap: accept an array of XDP buffs through sendmsg() (Jason Wang) [1738494]
+- [netdrv] tuntap: accept an array of XDP buffs through sendmsg() (Jason Wang) [1738494]
+- [netdrv] tun: switch to new type of msg_control (Jason Wang) [1738494]
+- [netdrv] tuntap: move XDP flushing out of tun_do_xdp() (Jason Wang) [1738494]
+- [netdrv] tuntap: split out XDP logic (Jason Wang) [1738494]
+- [netdrv] tuntap: tweak on the path of skb XDP case in tun_build_skb() (Jason Wang) [1738494]
+- [netdrv] tuntap: simplify error handling in tun_build_skb() (Jason Wang) [1738494]
+- [netdrv] tuntap: enable bh early during processing XDP (Jason Wang) [1738494]
+- [netdrv] tuntap: switch to use XDP_PACKET_HEADROOM (Jason Wang) [1738494]
+- [netdrv] net: sock: introduce SOCK_XDP (Jason Wang) [1738494]
+- [vhost] vhost: correctly check the iova range when waking virtqueue (Jason Wang) [1738494]
+- [vhost] vhost: switch to use new message format (Jason Wang) [1738494]
+- [vhost] vhost_net: batch update used ring for datacopy TX (Jason Wang) [1738494]
+- [vhost] vhost_net: rename VHOST_RX_BATCH to VHOST_NET_BATCH (Jason Wang) [1738494]
+- [vhost] vhost_net: rename vhost_rx_signal_used() to vhost_net_signal_used() (Jason Wang) [1738494]
+- [vhost] vhost_net: split out datacopy logic (Jason Wang) [1738494]
+- [vhost] vhost_net: introduce tx_can_batch() (Jason Wang) [1738494]
+- [vhost] vhost_net: introduce get_tx_bufs() (Jason Wang) [1738494]
+- [vhost] vhost_net: introduce vhost_exceeds_weight() (Jason Wang) [1738494]
+- [vhost] vhost_net: introduce helper to initialize tx iov iter (Jason Wang) [1738494]
+- [vhost] vhost_net: drop unnecessary parameter (Jason Wang) [1738494]
+- [vhost] vhost_net: Avoid rx vring kicks during busyloop (Jason Wang) [1738494]
+- [vhost] vhost_net: Avoid rx queue wake-ups during busypoll (Jason Wang) [1738494]
+- [vhost] vhost_net: Avoid tx vring kicks during busyloop (Jason Wang) [1738494]
+- [vhost] vhost_net: Rename local variables in vhost_net_rx_peek_head_len (Jason Wang) [1738494]
+- [mm] x86/mm/fault: Allow stack access below rsp (Waiman Long) [1739341]
+- [mm] x86/mm: Clarify hardware vs. software "error_code" (Waiman Long) [1739341]
+- [net] libceph: handle an empty authorize reply (Ilya Dryomov) [1720582]
+
+* Thu Aug 22 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-137.el8]
+- [drm] drm: Don't retry infinitely when receiving no data on i2c over AUX (Lyude Paul) [1672361]
+- [scsi] scsi: hpsa: update revision to RH3 (Joseph Szczypek) [1739615]
+- [scsi] scsi: hpsa: remove printing internal cdb on tag collision (Joseph Szczypek) [1739615]
+- [scsi] scsi: hpsa: correct scsi command status issue after reset (Joseph Szczypek) [1739615]
+- [scsi] hpsa: docs: fix broken doc references due to renames (Joseph Szczypek) [1739615]
+- [scsi] hpsa: docs: pci: fix broken links due to conversion from pci.txt to pci.rst (Joseph Szczypek) [1739615]
+
+* Tue Aug 20 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-136.el8]
+- [drm] drm/nouveau: Only recalculate PBN/VCPI on mode/connector changes (Lyude Paul) [1734452 1734444]
+- [drm] drm/nouveau: Only release VCPI slots on mode changes (Lyude Paul) [1734452 1734444]
+- [infiniband] RDMA/srp: turn off 'use_imm_data' by default (Honggang Li) [1725158]
+- [gpu] vga_switcheroo: Fix missing gpu_bound call at audio client registration (Lyude Paul) [1739727]
+- [net] Bluetooth: Fix faulty expression for minimum encryption key size check (Gopal Tiwari) [1743076] {CVE-2019-9506}
+- [net] Bluetooth: Fix regression with minimum encryption key size alignment (Gopal Tiwari) [1743076] {CVE-2019-9506}
+- [net] Bluetooth: Align minimum encryption key size for LE and BR/EDR connections (Gopal Tiwari) [1743076] {CVE-2019-9506}
+
+* Fri Aug 16 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-135.el8]
+- [rpmspec] perf: package tips.txt (Michael Petlan) [1663816]
+- [mm] mm/memblock.c: skip kmemleak for kasan_init() (Mark Langsdorf) [1722741]
+- [kernel] mm/resource: Return real error codes from walk failures (Kairui Song) [1740443]
+- [tools] perf tests: Fix record+probe_libc_inet_pton.sh for powerpc64 (Michael Petlan) [1733231]
+- [tools] selftests/powerpc: Fix Makefiles for headers_install change (Steve Best) [1740127]
+- [tools] selftests/powerpc: Add more version checks to alignment_handler test (Steve Best) [1740127]
+- [tools] selftests/powerpc: Skip earlier in alignment_handler test (Steve Best) [1740127]
+- [tools] selftests/powerpc: Consolidate copy/paste test logic (Steve Best) [1740127]
+- [s390] s390/bpf: use 32-bit index for tail calls (Yauheni Kaliuta) [1719377]
+- [s390] s390/bpf: fix lcgr instruction encoding (Yauheni Kaliuta) [1719377]
+- [tools] selftests/bpf: fix "alu with different scalars 1" on s390 (Yauheni Kaliuta) [1719377]
+- [net] bpf: fix use after free in bpf_evict_inode (Yauheni Kaliuta) [1719377]
+- [arm64] bpf, arm64: remove prefetch insn in xadd mapping (Yauheni Kaliuta) [1719377]
+- [scsi] scsi: lpfc: Fix crash when cpu count is 1 and null irq affinity mask (Dick Kennedy) [1720905]
+- [md] md: add bitmap_abort label in md_run (Nigel Croxon) [1721944]
+- [md] md-bitmap: create and destroy wb_info_pool with the change of bitmap (Nigel Croxon) [1721944]
+- [md] md-bitmap: create and destroy wb_info_pool with the change of backlog (Nigel Croxon) [1721944]
+- [md] md: introduce mddev_create/destroy_wb_pool for the change of member device (Nigel Croxon) [1721944]
+- [md] md/raid1: fix potential data inconsistency issue with write behind device (Nigel Croxon) [1721944]
+- [md] md: fix for divide error in status_resync (Nigel Croxon) [1721944]
+- [md] md/raid10: read balance chooses idlest disk for SSD (Nigel Croxon) [1721944]
+- [md] md: raid1-10: Unify r{1,10}bio_pool_free (Nigel Croxon) [1721944]
+- [md] md: raid10: Use struct_size() in kmalloc() (Nigel Croxon) [1721944]
+- [md] md/raid1: get rid of extra blank line and space (Nigel Croxon) [1721944]
+- [md] md: fix spelling typo and add necessary space (Nigel Croxon) [1721944]
+- [md] md: md.c: Return -ENODEV when mddev is NULL in rdev_attr_show (Nigel Croxon) [1721944]
+- [md] raid5-cache: Need to do start() part job after adding journal device (Nigel Croxon) [1721944]
+- [md] drivers: md: Unify common definitions of raid1 and raid10 (Nigel Croxon) [1721944]
+- [kernel] userfaultfd: use RCU to free the task struct when fork fails (Andrea Arcangeli) [1718498]
+
+* Thu Aug 15 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-134.el8]
+- [efi] efi/arm: Revert "Defer persistent reservations until after paging_init()" (Mark Salter) [1699961]
+- [s390] s390/ipl: Fix detection of has_secure attribute (Philipp Rudo) [1740653]
+- [fs] xfs: don't crash on null attr fork xfs_bmapi_read (Bill O'Donnell) [1719094]
+- [powerpc] powerpc/mm: Don't report PUDs as memory leaks when using kmemleak (Desnes Augusto Nunes do Rosario) [1716952]
+- [x86] kvm: x86: introduce is_pae_paging (Vitaly Kuznetsov) [1720556]
+- [s390] s390/kasan: Fix recursion loop when triggering kdump (Philipp Rudo) [1740249]
+- [s390] s390/dasd: fix endless loop after read unit address configuration (Philipp Rudo) [1740251]
+- [tools] selftests/powerpc: Give some tests longer to run (Steve Best) [1740420]
+- [nvme] nvme-rdma: use dynamic dma mapping per command (David Milburn) [1738252]
+- [nvme] nvme-rdma: remove redundant reference between ib_device and tagset (David Milburn) [1738252]
+- [x86] kvm: svm/avic: Do not send AVIC doorbell to self (Janakarajan Natarajan) [1720981]
+- [net] tipc: initialise addr_trial_end when setting node addresses (Jon Maloy) [1740317]
+- [net] tipc: ensure head->lock is initialised (Jon Maloy) [1740317]
+- [net] netfilter: nf_tables: fix oops during rule dump (Stefano Brivio) [1739734]
+- [include] netfilter: nf_tables: correct NFT_LOGLEVEL_MAX value (Stefano Brivio) [1739734]
+- [net] netfilter: nft_compat: do not dump private area (Stefano Brivio) [1739734]
+- [net] netfilter: nf_tables: fix register ordering (Stefano Brivio) [1739734]
+- [net] ipvs: defer hook registration to avoid leaks (Stefano Brivio) [1739734]
+- [net] ipvs: Fix use-after-free in ip_vs_in (Stefano Brivio) [1739734]
+- [net] netfilter: nf_conntrack_h323: restore boundary check correctness (Stefano Brivio) [1739734]
+- [net] netfilter: fix nf_l4proto_log_invalid to log invalid packets (Stefano Brivio) [1739734]
+- [net] netfilter: nf_tables: prevent shift wrap in nft_chain_parse_hook() (Stefano Brivio) [1739734]
+- [net] netfilter: nft_set_rbtree: check for inactive element after flag mismatch (Stefano Brivio) [1739734]
+- [net] netfilter: nft_compat: use-after-free when deleting targets (Stefano Brivio) [1739734]
+- [net] netfilter: nf_tables: fix leaking object reference count (Stefano Brivio) [1739734]
+- [net] ip6_gre: reload ipv6h in prepare_ip6gre_xmit_ipv6 (Stefano Brivio) [1739640]
+- [net] ipv6: Unlink sibling route in case of failure (Stefano Brivio) [1739640]
+- [net] ipv6: Default fib6_type to RTN_UNICAST when not set (Stefano Brivio) [1739640]
+- [net] inet: frags: call inet_frags_fini() after unregister_pernet_subsys() (Stefano Brivio) [1739640]
+- [net] ipv6: flowlabel: fl6_sock_lookup() must use atomic_inc_not_zero (Stefano Brivio) [1739640]
+- [net] netfilter: ipset: Fix rename concurrency with listing (Stefano Brivio) [1739578]
+- [net] netfilter: ipset: Fix error path in set_target_v3_checkentry() (Stefano Brivio) [1739578]
+- [net] netfilter: ipset: Fix the last missing check of nla_parse_deprecated() (Stefano Brivio) [1739578]
+- [net] netfilter: ipset: fix a missing check of nla_parse (Stefano Brivio) [1739578]
+- [netdrv] ipvlan, l3mdev: fix broken l3s mode wrt local routes (Guillaume Nault) [1738329]
+- [net] sched: use temporary variable for actions indexes (Marcelo Leitner) [1739244 1729822 1729818 1729398]
+- [net] sched: cbs: Fix error path of cbs_module_init (Marcelo Leitner) [1739244 1729822 1729818 1729398]
+- [net] netem: fix use after free and double free with packet corruption (Marcelo Leitner) [1739244 1729822 1729818 1729398]
+- [net] netem: fix backlog accounting for corrupted GSO frames (Marcelo Leitner) [1739244 1729822 1729818 1729398]
+- [netdrv] macsec: fix checksumming after decryption (Sabrina Dubroca) [1738237]
+- [netdrv] macsec: fix use-after-free of skb during RX (Sabrina Dubroca) [1738237]
+- [net] xfrm interface: fix memory leak on creation (Sabrina Dubroca) [1738267]
+- [net] tls: fix socket wmem accounting on fallback with netem (Sabrina Dubroca) [1739260]
+- [net] tls: fix poll ignoring partially copied records (Sabrina Dubroca) [1739260]
+- [net] tls: make sure offload also gets the keys wiped (Sabrina Dubroca) [1739260]
+- [net] tls: reject offload of TLS 1.3 (Sabrina Dubroca) [1739260]
+- [net] tls: fix page double free on TX cleanup (Sabrina Dubroca) [1739260]
+- [net] tls, correctly account for copied bytes with multiple sk_msgs (Sabrina Dubroca) [1739260]
+- [net] tcp: fix tcp_set_congestion_control() use from bpf hook (Guillaume Nault) [1738272]
+- [net] tcp: Reset bytes_acked and bytes_received when disconnecting (Guillaume Nault) [1738272]
+- [net] tcp: Ensure DCTCP reacts to losses (Guillaume Nault) [1738272]
+- [net] tcp: tcp_v4_err() should be more careful (Guillaume Nault) [1738272]
+- [net] tcp: avoid resetting ACK timer upon receiving packet with ECN CWR flag (Guillaume Nault) [1738272]
+- [net] tcp: always ACK immediately on hole repairs (Guillaume Nault) [1738272]
+- [net] tcp: avoid resetting ACK timer in DCTCP (Guillaume Nault) [1738272]
+- [net] tcp: mandate a one-time immediate ACK (Guillaume Nault) [1738272]
+- [net] tipc: fix unitilized skb list crash (Xin Long) [1734298]
+- [net] tipc: compat: allow tipc commands without arguments (Xin Long) [1738397]
+- [net] sctp: factor out sctp_connect_add_peer (Xin Long) [1738393]
+- [net] sctp: factor out sctp_connect_new_asoc (Xin Long) [1738393]
+- [net] sctp: clean up __sctp_connect (Xin Long) [1738393]
+- [net] sctp: check addr_size with sa_family_t size in __sctp_setsockopt_connectx (Xin Long) [1738393]
+- [net] sctp: only copy the available addr data in sctp_transport_init (Xin Long) [1738393]
+- [net] sctp: drop unneeded likely() call around IS_ERR() (Xin Long) [1738393]
+- [net] sctp: fix warning "NULL check before some freeing functions is not needed" (Xin Long) [1738393]
+- [net] sctp: remove rcu_read_lock from sctp_bind_addr_state (Xin Long) [1738393]
+- [net] sctp: rename sp strm_interleave to ep intl_enable (Xin Long) [1738393]
+- [net] sctp: rename asoc intl_enable to asoc peer.intl_capable (Xin Long) [1738393]
+- [net] sctp: remove prsctp_enable from asoc (Xin Long) [1738393]
+- [net] sctp: remove reconf_enable from asoc (Xin Long) [1738393]
+- [net] sctp: count data bundling sack chunk for outctrlchunks (Xin Long) [1738393]
+- [net] sctp: fix error handling on stream scheduler initialization (Xin Long) [1738393]
+- [net] sctp: not bind the socket in sctp_connect (Xin Long) [1738393]
+- [net] sctp: change to hold sk after auth shkey is created successfully (Xin Long) [1738393]
+- [net] sctp: Free cookie before we memdup a new one (Xin Long) [1738393]
+- [net] Fix memory leak in sctp_process_init (Xin Long) [1738393]
+- [net] sctp: deduplicate identical skb_checksum_ops (Xin Long) [1738393]
+- [net] sctp: Check address length before reading address family (Xin Long) [1738393]
+- [net] sctp: Pass sk_buff_head explicitly to sctp_ulpq_tail_event(). (Xin Long) [1738393]
+- [net] sctp: Make sctp_enqueue_event tak an skb list. (Xin Long) [1738393]
+- [net] sctp: Use helper for sctp_ulpq_tail_event() when hooked up to ->enqueue_event (Xin Long) [1738393]
+- [net] sctp: Always pass skbs on a list to sctp_ulpq_tail_event(). (Xin Long) [1738393]
+- [net] sctp: Remove superfluous test in sctp_ulpq_reasm_drain(). (Xin Long) [1738393]
+- [netdrv] ppp: Remove direct skb_queue_head list pointer access. (Xin Long) [1738393]
+- [net] ipv6: fix neighbour resolution with raw socket (Stefano Brivio) [1728320]
+- [net] ipv6: constify rt6_nexthop() (Stefano Brivio) [1728320]
+- [net] openvswitch: fix csum updates for MPLS actions (Marcelo Leitner) [1738654]
+- [net] udp_gso: Allow TX timestamp with UDP GSO (Paolo Abeni) [1738585]
+- [net] bpf: udp: ipv6: Avoid running reuseport's bpf_prog from __udp6_lib_err (Paolo Abeni) [1738585]
+- [net] fix ifindex collision during namespace removal (Paolo Abeni) [1738492]
+- [net] rtnl: return early from rtnl_unregister_all when protocol isn't registered (Paolo Abeni) [1738492]
+- [net] neigh: fix use-after-free read in pneigh_get_next (Paolo Abeni) [1738492]
+- [net] socket: set sock->sk to NULL after calling proto_ops::release() (Paolo Abeni) [1738492]
+- [net] socket: make bond ioctls go through compat_ifreq_ioctl() (Paolo Abeni) [1738492]
+- [net] socket: fix SIOCGIFNAME in compat (Paolo Abeni) [1738492]
+- [net] Revert "kill dev_ifsioc()" (Paolo Abeni) [1738492]
+- [net] revert "socket: fix struct ifreq size in compat ioctl" (Paolo Abeni) [1738492]
+- [net] ip6_tunnel: fix possible use-after-free on xmit (Guillaume Nault) [1737105]
+- [net] genetlink: Fix a memory leak on error path (Guillaume Nault) [1737821]
+- [net] netfilter: ipset: Copy the right MAC address in bitmap:ip, mac and hash:ip, mac sets (Stefano Brivio) [1723605]
+- [net] netfilter: ipset: Actually allow destination MAC address for hash:ip, mac sets too (Stefano Brivio) [1723605]
+- [net] igmp: fix memory leak in igmpv3_del_delrec() (Hangbin Liu) [1736816]
+- [net] don't clear sock->sk early to avoid trouble in strparser (Hangbin Liu) [1736816]
+- [net] ipv4/igmp: fix build error if !CONFIG_IP_MULTICAST (Hangbin Liu) [1736816]
+- [net] ipv4/igmp: fix another memory leak in igmpv3_del_delrec() (Hangbin Liu) [1736816]
+- [net] route: set the deleted fnhe fnhe_daddr to 0 in ip_del_fnhe to fix a race (Hangbin Liu) [1736816]
+- [net] netlabel: fix out-of-bounds memory accesses (Hangbin Liu) [1736816]
+- [net] ipv4: Fix memory leak in network namespace dismantle (Hangbin Liu) [1736816]
+- [net] bridge: delete local fdb on device init failure (Hangbin Liu) [1736824]
+- [net] bridge: stp: don't cache eth dest pointer before skb pull (Hangbin Liu) [1736824]
+- [net] bridge: don't cache ether dest pointer on input (Hangbin Liu) [1736824]
+- [net] bridge: mcast: fix stale ipv6 hdr pointer when handling v6 query (Hangbin Liu) [1736824]
+- [net] bridge: mcast: fix stale nsrcs pointer in igmp3/mld2 report handling (Hangbin Liu) [1736824]
+- [net] bridge: fix per-port af_packet sockets (Hangbin Liu) [1736824]
+- [include] ip: fix ip_mc_may_pull() return value (Hangbin Liu) [1736824]
+- [net] bridge: use struct_size() helper (Hangbin Liu) [1736824]
+- [net] bridge: simplify ip_mc_check_igmp() and ipv6_mc_check_mld() calls (Hangbin Liu) [1736824]
+- [net] net/bridge/br_multicast: remove redundant variable "err" (Hangbin Liu) [1736824]
+- [x86] x86/kdump/64: Restrict kdump kernel reservation to <64TB (Baoquan He) [1669090]
+- [x86] x86/kexec/64: Prevent kexec from 5-level paging to a 4-level only kernel (Baoquan He) [1669088]
+- [x86] x86/boot: Add xloadflags bits to check for 5-level paging support (Baoquan He) [1669088]
+- [tools] perf header: Fix wrong node write in NUMA_TOPOLOGY feature (Michael Petlan) [1722044]
+- [tools] perf c2c: Fix c2c report for empty numa node (Michael Petlan) [1722044]
+- [x86] kvm: svm/avic: fix off-by-one in checking host APIC ID (Janakarajan Natarajan) [1720983]
+
+* Wed Aug 14 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-133.el8]
+- [fs] gfs2: gfs2_walk_metadata fix (Andreas Grunbacher) [1724361]
+- [netdrv] mlx4/en_netdev: allow offloading VXLAN over VLAN (Paolo Abeni) [1733532]
+- [fs] xfs: always rejoin held resources during defer roll (Bill O'Donnell) [1706588]
+- [bluetooth] Bluetooth: hci_uart: check for missing tty operations (Gopal Tiwari) [1734239] {CVE-2019-10207}
+
+* Tue Aug 13 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-132.el8]
+- [documentation] Documentation: Add swapgs description to the Spectre v1 documentation (Josh Poimboeuf) [1724501] {CVE-2019-1125}
+- [documentation] Documentation: Add section about CPU vulnerabilities for Spectre (Josh Poimboeuf) [1724501] {CVE-2019-1125}
+- [x86] x86/speculation/swapgs: Exclude ATOMs from speculation through SWAPGS (Josh Poimboeuf) [1724501] {CVE-2019-1125}
+- [x86] x86/entry/64: Use JMP instead of JMPQ (Josh Poimboeuf) [1724501] {CVE-2019-1125}
+- [x86] x86/speculation: Enable Spectre v1 swapgs mitigations (Josh Poimboeuf) [1724501] {CVE-2019-1125}
+- [x86] x86/speculation: Prepare entry code for Spectre v1 swapgs mitigations (Josh Poimboeuf) [1724501] {CVE-2019-1125}
+- [x86] x86/cpufeatures: Combine word 11 and 12 into a new scattered features word (Josh Poimboeuf) [1724501] {CVE-2019-1125}
+- [x86] x86/cpufeatures: Carve out CQM features retrieval (Josh Poimboeuf) [1724501] {CVE-2019-1125}
+- [netdrv] ibmveth: fix DMA unmap error in ibmveth_xmit_start error path (Steve Best) [1739431]
+- [rpmspec] rpmspec: use make macro to do headers_install with rpm CFLAGS/LDFLAGS ("Herton R. Krzesinski") [1738659]
+- [rpmspec] rpmspec: use tools_make for building tools ("Herton R. Krzesinski") [1738659]
+- [tools] tools gpio: Allow overriding CFLAGS ("Herton R. Krzesinski") [1738659]
+- [tools] tools thermal tmon: Allow overriding CFLAGS assignments ("Herton R. Krzesinski") [1738659]
+- [tools] tools iio: Override CFLAGS assignments ("Herton R. Krzesinski") [1738659]
+- [fs] NFS: Fix dentry revalidation on NFSv4 lookup (Steve Dickson) [1667774]
+- [fs] pNFS: Avoid read/modify/write when it is not necessary (Benjamin Coddington) [1680649]
+- [fs] pNFS: Fix potential corruption of page being written (Benjamin Coddington) [1680649]
+- [fs] gfs2: Inode dirtying fix (Andreas Grunbacher) [1724361]
+- [net] sunrpc: make visible processing error in bc_svc_process() ("J. Bruce Fields") [1660823] {CVE-2018-16884}
+- [net] sunrpc: remove unused xpo_prep_reply_hdr callback ("J. Bruce Fields") [1660823] {CVE-2018-16884}
+- [net] sunrpc: remove svc_tcp_bc_class ("J. Bruce Fields") [1660823] {CVE-2018-16884}
+- [net] sunrpc: replace svc_serv->sv_bc_xprt by boolean flag ("J. Bruce Fields") [1660823] {CVE-2018-16884}
+- [net] sunrpc: use-after-free in svc_process_common() ("J. Bruce Fields") [1660823] {CVE-2018-16884}
+
+* Mon Aug 12 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-131.el8]
+- [scsi] scsi: implement .cleanup_rq callback (Ming Lei) [1696256]
+- [md] blk-mq: add callback of .cleanup_rq (Ming Lei) [1696256]
+- [block] blk-mq: insert rq with DONTPREP to hctx dispatch list when requeue (Ming Lei) [1696256]
+- [scsi] scsi: core: Fix race on creating sense cache (Ming Lei) [1696256]
+- [block] blk-mq: balance mapping between present CPUs and queues (Ming Lei) [1733040]
+- [block] blk-mq: Fix spelling in a source code comment (Ming Lei) [1733040]
+- [drm] drm/i915: Don't dereference request if it may have been retired when printing (Lyude Paul) [1715997]
+- [drm] drm/i915/icl: whitelist PS_(DEPTH|INVOCATION)_COUNT (Lyude Paul) [1715997]
+- [drm] drm/i915: whitelist PS_(DEPTH|INVOCATION)_COUNT (Lyude Paul) [1715997]
+- [drm] drm/i915: Support flags in whitlist WAs (Lyude Paul) [1715997]
+- [drm] drm/i915: Disable SAMPLER_STATE prefetching on all Gen11 steppings. (Lyude Paul) [1715997]
+- [drm] drm/i915/userptr: Acquire the page lock around set_page_dirty() (Lyude Paul) [1715997]
+- [drm] drm/i915/perf: fix ICL perf register offsets (Lyude Paul) [1715997]
+- [drm] drm/virtio: Add memory barriers for capset cache. (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Always allocate initial connector state state (Lyude Paul) [1715997]
+- [drm] drm/vkms: Forward timer right after drm_crtc_handle_vblank (Lyude Paul) [1715997]
+- [drm] drm/crc-debugfs: Also sprinkle irqrestore over early exits (Lyude Paul) [1715997]
+- [drm] drm/crc-debugfs: User irqsafe spinlock in drm_crtc_add_crc_entry (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Increase Backlight Gain Step Size (Lyude Paul) [1715997]
+- [drm] drm/amd/display: CS_TFM_1D only applied post EOTF (Lyude Paul) [1715997]
+- [drm] drm/edid: Fix a missing-check bug in drm_load_edid_firmware() (Lyude Paul) [1715997]
+- [drm] drm/amdkfd: Fix sdma queue map issue (Lyude Paul) [1715997]
+- [drm] drm/amdkfd: Fix a potential memory leak (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Disable ABM before destroy ABM struct (Lyude Paul) [1715997]
+- [drm] drm/amdgpu/sriov: Need to initialize the HDP_NONSURFACE_BAStE (Lyude Paul) [1715997]
+- [drm] drm/amdgpu: Reserve shared fence for eviction fence (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Disable cursor when offscreen in negative direction (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Fill prescale_params->scale for RGB565 (Lyude Paul) [1715997]
+- [drm] drm/virtio: set seqno for dma-fence (Lyude Paul) [1715997]
+- [drivers] dma-buf: Discard old fence_excl on retrying get_fences_rcu for realloc (Lyude Paul) [1715997]
+- [drivers] dma-buf: balance refcount inbalance (Lyude Paul) [1715997]
+- [drm] drm/edid: parse CEA blocks embedded in DisplayID (Lyude Paul) [1715997]
+- [drm] drm/nouveau/i2c: Enable i2c pads & busses during preinit (Lyude Paul) [1715997]
+- [drm] drm: return -EFAULT if copy_to_user() fails (Lyude Paul) [1715997]
+- [drm] drm/vmwgfx: fix a warning due to missing dma_parms (Lyude Paul) [1715997]
+- [drm] drm/vmwgfx: Honor the sg list segment size limitation (Lyude Paul) [1715997]
+- [drm] drm/virtio: move drm_connector_update_edid_property() call (Lyude Paul) [1715997]
+- [drm] drm/amdgpu/gfx9: use reset default for PA_SC_FIFO_SIZE (Lyude Paul) [1715997]
+- [drm] drm/amdgpu: Don't skip display settings in hwmgr_resume() (Lyude Paul) [1717138 1715997]
+- [drm] drm/amd/powerplay: use hardware fan control if no powerplay fan table (Lyude Paul) [1715997]
+- [drm] drm/i915/ringbuffer: EMIT_INVALIDATE *before* switch context (Lyude Paul) [1715997]
+- [drm] drm/i915: Skip modeset for cdclk changes if possible (Lyude Paul) [1715997]
+- [drm] drm/i915: Remove redundant store of logical CDCLK state (Lyude Paul) [1715997]
+- [drm] drm/i915: Save the old CDCLK atomic state (Lyude Paul) [1715997]
+- [drm] drm/i915: Force 2*96 MHz cdclk on glk/cnl when audio power is enabled (Lyude Paul) [1715997]
+- [drm] drm/i915: Don't clobber M/N values during fastset check (Lyude Paul) [1715997]
+- [drm] drm/vmwgfx: Use the backdoor port if the HB port is not available (Lyude Paul) [1715997]
+- [drm] drm: add fallback override/firmware EDID modes workaround (Lyude Paul) [1715997]
+- [drm] drm/edid: abstract override/firmware EDID retrieval (Lyude Paul) [1715997]
+- [drm] drm/vmwgfx: NULL pointer dereference from vmw_cmd_dx_view_define() (Lyude Paul) [1715997]
+- [drm] drm/vmwgfx: integer underflow in vmw_cmd_dx_set_shader() leading to an invalid read (Lyude Paul) [1715997]
+- [drm] drm/amdgpu: keep stolen memory on picasso (Lyude Paul) [1715997]
+- [drm] drm/i915/dmc: protect against reading random memory (Lyude Paul) [1715997]
+- [drm] drm/i915: Fix per-pixel alpha with CCS (Lyude Paul) [1715997]
+- [drm] drm/i915/dsi: Use a fuzzy check for burst mode clock check (Lyude Paul) [1715997]
+- [drm] drm/i915/sdvo: Implement proper HDMI audio support for SDVO (Lyude Paul) [1715997]
+- [drm] drm/amdgpu/{uvd,vcn}: fetch ring's read_ptr after alloc (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Use plane->color_space for dpp if specified (Lyude Paul) [1715997]
+- [drm] drm/amd/display: disable link before changing link settings (Lyude Paul) [1715997]
+- [drm] Revert "drm: allow render capable master with DRM_AUTH ioctls" (Lyude Paul) [1715997]
+- [drm] drm/amd: fix fb references in async update (Lyude Paul) [1715997]
+- [drm] drm/i915/gvt: Initialize intel_gvt_gtt_entry in stack (Lyude Paul) [1715997]
+- [drm] drm: don't block fb changes for async plane updates (Lyude Paul) [1715997]
+- [drm] drm/i915/gvt: emit init breadcrumb for gvt request (Lyude Paul) [1715997]
+- [drm] drm/amdgpu: fix ring test failure issue during s3 in vce 3.0 (V2) (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Add ASICREV_IS_PICASSO (Lyude Paul) [1715997]
+- [drm] drm/amdgpu/soc15: skip reset on init (Lyude Paul) [1715997]
+- [include] drm/i915: Fix I915_EXEC_RING_MASK (Lyude Paul) [1715997]
+- [drm] drm/amdgpu: remove ATPX_DGPU_REQ_POWER_FOR_DISPLAYS check when hotplug-in (Lyude Paul) [1715997]
+- [drm] drm/radeon: prefer lower reference dividers (Lyude Paul) [1715997]
+- [drm] drm/amdgpu/psp: move psp version specific function pointers to early_init (Lyude Paul) [1715997]
+- [drm] drm: add non-desktop quirks to Sensics and OSVR headsets. (Lyude Paul) [1715997]
+- [drm] drm: add non-desktop quirk for Valve HMDs (Lyude Paul) [1715997]
+- [drm] drm/cma-helper: Fix drm_gem_cma_free_object() (Lyude Paul) [1715997]
+- [drm] drm/lease: Make sure implicit planes are leased (Lyude Paul) [1715997]
+- [drm] drm: Expose "FB_DAMAGE_CLIPS" property to atomic aware user-space only (Lyude Paul) [1715997]
+- [drm] drm/atomic: Wire file_priv through for property changes (Lyude Paul) [1715997]
+- [drm] drm/fb-helper: generic: Call drm_client_add() after setup is done (Lyude Paul) [1715997]
+- [drm] drm/vmwgfx: Don't send drm sysfs hotplug events on initial master set (Lyude Paul) [1715997]
+- [drm] drm/vmwgfx: Fix compat mode shader operation (Lyude Paul) [1715997]
+- [drm] drm/vmwgfx: Fix user space handle equal to zero (Lyude Paul) [1715997]
+- [drm] drm: Wake up next in drm_read() chain if we are forced to putback the event (Lyude Paul) [1715997]
+- [drm] drm/drv: Hold ref on parent device during drm_device lifetime (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Reset planes that were disabled in init_pipes (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Fix exception from AUX acquire failure (Lyude Paul) [1715997]
+- [drm] drm: writeback: Fix leak of writeback job (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Set stream->mode_changed when connectors change (Lyude Paul) [1715997]
+- [drm] drm/amd/display: half bandwidth for YCbCr420 during validation (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Re-add custom degamma support (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Fix Divide by 0 in memory calculations (Lyude Paul) [1715997]
+- [drm] drm/amd/display: add pipe lock during stream update (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Reset alpha state for planes to the correct values (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Update ABM crtc state on non-modeset (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Link train only when link is DP and backend is enabled (Lyude Paul) [1715997]
+- [drm] drm/amd/display: fix releasing planes when exiting odm (Lyude Paul) [1715997]
+- [drm] drm/amd/display: Prevent cursor hotspot overflow for RV overlay planes (Lyude Paul) [1715997]
+- [drm] drm/amd/display: use proper formula to calculate bandwidth from timing (Lyude Paul) [1715997]
+- [drm] drm/amdgpu: fix old fence check in amdgpu_fence_emit (Lyude Paul) [1715997]
+- [drm] drm/nouveau/bar/nv50: ensure BAR is mapped (Lyude Paul) [1715997]
+- [pci] PCI: Mark AMD Stoney Radeon R7 GPU ATS as broken (Lyude Paul) [1715997]
+- [kernel] locking/rwsem: Add missing ACQUIRE to read_slowpath exit when queue is empty (Waiman Long) [1737089]
+- [tools] perf vendor events power9: Added missing event descriptions (Michael Petlan) [1581405]
+- [crypto] crypto: skcipher - fix crash flushing dcache in error path (David Gibson) [1724370]
+- [netdrv] bnx2x: Prevent load reordering in tx completion processing (Manish Chopra) [1729599]
+- [x86] x86/boot/KASLR: Always return a value from process_mem_region (Baoquan He) [1564822]
+- [x86] x86/kexec: Add the ACPI NVS region to the ident map (Baoquan He) [1564822]
+- [x86] x86/boot: Call get_rsdp_addr() after console_init() (Baoquan He) [1564822]
+- [x86] x86/boot: Use efi_setup_data for searching RSDP on kexec-ed kernels (Baoquan He) [1564822]
+- [x86] x86/kexec: Add the EFI system tables and ACPI tables to the ident map (Baoquan He) [1564822]
+- [x86] x86/boot: Fix incorrect ifdeffery scope (Baoquan He) [1564822]
+- [x86] x86/boot: Correct RSDP parsing with 32-bit EFI (Baoquan He) [1564822]
+- [x86] x86/boot: Fix randconfig build error due to MEMORY_HOTREMOVE (Baoquan He) [1564822]
+- [x86] x86/boot: Fix cmdline_find_option() prototype visibility (Baoquan He) [1564822]
+- [x86] x86/boot/KASLR: Limit KASLR to extract the kernel in immovable memory only (Baoquan He) [1564822]
+- [x86] x86/boot: Parse SRAT table and count immovable memory regions (Baoquan He) [1564822]
+- [x86] x86/boot: Early parse RSDP and save it in boot_params (Baoquan He) [1564822]
+- [x86] x86/boot: Search for RSDP in memory (Baoquan He) [1564822]
+- [x86] x86/boot: Search for RSDP in the EFI tables (Baoquan He) [1564822]
+- [x86] x86/boot: Add "acpi_rsdp=" early parsing (Baoquan He) [1564822]
+- [x86] x86/boot: Copy kstrtoull() to boot/string.c (Baoquan He) [1564822]
+- [x86] x86/boot: Use CC_SET()/CC_OUT() instead of open coding it (Baoquan He) [1564822]
+- [x86] x86/boot: Build the command line parsing code unconditionally (Baoquan He) [1564822]
+- [x86] x86/boot: Clear RSDP address in boot_params for broken loaders (Baoquan He) [1564822]
+- [x86] x86/acpi, x86/boot: Take RSDP address from boot params if available (Baoquan He) [1564822]
+- [x86] x86/boot: Mostly revert commit ae7e1238e68f2a ("Add ACPI RSDP address to setup_header") (Baoquan He) [1564822]
+- [x86] x86/acpi, x86/boot: Take RSDP address for boot params if available (Baoquan He) [1564822]
+- [x86] x86/boot: Add ACPI RSDP address to setup_header (Baoquan He) [1564822]
+- [x86] x86/xen: Fix boot loader version reported for PVH guests (Baoquan He) [1564822]
+- [x86] x86/boot: Add missing va_end() to die() (Baoquan He) [1564822]
+- [x86] x86/boot/KASLR: Remove return value from handle_mem_options() (Baoquan He) [1564822]
+- [x86] x86/boot/KASLR: Make local variable mem_limit static (Baoquan He) [1564822]
+- [crypto] crypto: user - prevent operating on larval algorithms (Herbert Xu) [1728835]
+
+* Thu Aug 08 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-130.el8]
+- [scsi] scsi: mpt3sas: Use 63-bit DMA addressing on SAS35 HBA (Tomas Henzl) [1734769]
+- [netdrv] bonding: Force slave speed check after link state recovery for 802.3ad (Jarod Wilson) [1732820]
+- [pci] PCI: hv: Add pci_destroy_slot() in pci_devices_present_work(), if necessary (Mohammed Gamal) [1733302]
+- [pci] PCI: hv: Add hv_pci_remove_slots() when we unload the driver (Mohammed Gamal) [1733302]
+- [pci] PCI: hv: Fix a use-after-free bug in hv_eject_device_work() (Mohammed Gamal) [1733302]
+- [pci] PCI: hv: Fix a memory leak in hv_eject_device_work() (Mohammed Gamal) [1733302]
+- [nvme] nvmet: fix setting ns queue's segment boundary (Ming Lei) [1734458]
+
+* Wed Aug 07 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-129.el8]
+- [tools] perf script python: Remove explicit shebang from setup.py (Michael Petlan) [1664768 1663814]
+- [tools] perf script python: Remove explicit shebang from tests/attr.c (Michael Petlan) [1664768 1663814]
+- [tools] perf script python: Remove explicit shebang from Python scripts (Michael Petlan) [1664768 1663814]
+- [tools] perf script python: Use PyBytes for attr in trace-event-python (Michael Petlan) [1664768 1663814]
+- [tools] perf script python: Add trace_context extension module to sys.modules (Michael Petlan) [1663814 1664768]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix python3 support (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to export-to-sqlite.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to export-to-postgresql.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to exported-sql-viewer.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to intel-pt-events.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to event_analyzing_sample.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: add Python3 support to check-perf-trace.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to futex-contention.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Remove mixed indentation (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to syscall-counts-by-pid.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to syscall-counts.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to stackcollapse.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to sctop.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to powerpc-hcalls.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to net_dropmonitor.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to mem-phys-addr.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to failed-syscalls-by-pid.py (Michael Petlan) [1663814 1664768]
+- [tools] perf script python: Add Python3 support to netdev-times.py (Michael Petlan) [1663814 1664768]
+- [powerpc] mm_iommu: Allow pinning large regions (David Gibson) [1629531]
+- [powerpc] mm_iommu: Fix potential deadlock (David Gibson) [1629531]
+- [powerpc] mm/iommu: allow large IOMMU page size only for hugetlb backing (David Gibson) [1629531]
+- [powerpc] mm/iommu: allow migration of cma allocated pages during mm_iommu_do_alloc (David Gibson) [1629531]
+- [mm] update get_user_pages_longterm to migrate pages allocated from CMA region (David Gibson) [1629531]
+- [kernel] mm/cma: add PF flag to force non cma alloc (David Gibson) [1629531]
+- [net] tcp: be more careful in tcp_fragment() (Marcelo Leitner) [1732103]
+- [net] tipc: initialize 'validated' field of received packets (Jon Maloy) [1730574]
+- [documentation] networking: fix default_ttl typo in mpls-sysctl (Hangbin Liu) [1724882]
+
+* Fri Aug 02 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-128.el8]
+- [powerpc] powerpc/mm: Limit rma_size to 1TB when running without HV mode (Suraj Jitindar Singh) [1723297]
+- [x86] kvm: nvmx: Set cached_vmcs12 and cached_shadow_vmcs12 NULL after free (Paolo Bonzini) [1732096]
+- [x86] kvm: nvmx: do not use dangling shadow VMCS after guest reset (Paolo Bonzini) [1732096]
+- [x86] kvm: nvmx: Clear pending KVM_REQ_GET_VMCS12_PAGES when leaving nested (Paolo Bonzini) [1732096]
+- [x86] kvm: nvmx: Change KVM_STATE_NESTED_EVMCS to signal vmcs12 is copied from eVMCS (Paolo Bonzini) [1732096]
+- [x86] kvm: nvmx: Allow restore nested-state to enable eVMCS when vCPU in SMM (Paolo Bonzini) [1732096]
+- [tools] kvm: nvmx: reorganize initial steps of vmx_set_nested_state (Paolo Bonzini) [1732096]
+- [x86] kvm: x86: Modify struct kvm_nested_state to have explicit fields for data (Paolo Bonzini) [1732096]
+- [x86] kvm: nvmx: Clear nested_run_pending if setting nested state fails (Paolo Bonzini) [1732096]
+- [x86] kvm: nvmx: really fix the size checks on KVM_SET_NESTED_STATE (Paolo Bonzini) [1732096]
+- [x86] kvm: nvmx: Set nested_run_pending in vmx_set_nested_state after checks complete (Paolo Bonzini) [1732096]
+- [x86] kvm: nvmx: KVM_SET_NESTED_STATE - Tear down old EVMCS state before setting new state (Paolo Bonzini) [1732096]
+- [tools] kvm: selftests: avoid type punning (Paolo Bonzini) [1732096]
+- [tools] tests: kvm: Add tests for KVM_SET_NESTED_STATE (Paolo Bonzini) [1732096]
+- [x86] kvm: x86/mmu: Allocate PAE root array when using SVM's 32-bit NPT (Paolo Bonzini) [1732096]
+- [x86] kvm: lapic: Fix pending interrupt in IRR blocked by software disable LAPIC (Paolo Bonzini) [1732096]
+- [x86] kvm: x86: Dynamically allocate user_fpu (Paolo Bonzini) [1732096]
+- [x86] revert "kvm: x86: Use task structs fpu field for user" (Paolo Bonzini) [1732096]
+- [x86] hyperv: suppress "pci: fatal: No config space access function found" (Raghavendra Rao) [1734265]
+- [powerpc] [kvm] kvm: ppc: book3s hv: Save and restore guest visible PSSCR bits on pseries (Suraj Jitindar Singh) [1710726]
+- [powerpc] pmu: Set pmcregs_in_use in paca when running as LPAR (Suraj Jitindar Singh) [1710726]
+- [powerpc] [kvm] kvm: ppc: book3s hv: Always save guest pmu for guest capable of nesting (Suraj Jitindar Singh) [1710726]
+- [powerpc] kvm: ppc: book3s hv: xive: fix rollback when kvmppc_xive_create fails (David Gibson) [1731900]
+- [powerpc] powerpc/pseries: Fix xive=off command line (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc/prom_init: don't use string functions from lib/ (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc: remove CONFIG_CMDLINE #ifdef mess (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc: Move `path` variable inside DEBUG_PROM (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc/prom_init: Generate "phandle" instead of "linux, phandle" (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc/prom_init: Move a few remaining statics to appropriate sections (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc/prom_init: Move prom_radix_disable to __prombss (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc/prom_init: Remove support for OPAL v2 (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc/prom_init: Replace __initdata with __prombss when applicable (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc/prom_init: Make of_workarounds static (Desnes Augusto Nunes do Rosario) [1731400]
+- [powerpc] powerpc/powernv/idle: Restore AMR/UAMOR/AMOR after idle (David Gibson) [1730183]
+- [powerpc] powerpc/powernv/idle: Restore IAMR after idle (David Gibson) [1730183]
+
+* Thu Aug 01 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-127.el8]
+- [kernel] fork: report pid exhaustion correctly (Don Dutile) [1726448]
+- [lib] idr: Fix idr_get_next race with idr_remove (Don Dutile) [1726448]
+- [kernel] Fix failure path in alloc_pid() (Don Dutile) [1726448]
+- [target] scsi: iscsi: set auth_protocol back to NULL if CHAP_A value is not supported (Maurizio Lombardi) [1733498]
+
+* Wed Jul 31 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-126.el8]
+- [infiniband] IB/umem: Add missing down_read on umem_rwsem (Alaa Hleihel) [1733188]
+- [fs] gfs2: Fix rounding error in gfs2_iomap_page_prepare (Andreas Grunbacher) [1733621]
+- [s390] s390/qeth: cancel cmd on early error (Philipp Rudo) [1731430]
+- [s390] s390/qeth: simplify reply object handling (Philipp Rudo) [1731430]
+- [s390] s390/qeth: release cmd buffer in error paths (Philipp Rudo) [1731430]
+- [mm] mm: hugetlb: soft-offline: dissolve_free_huge_page() return zero on !PageHuge (Rafael Aquini) [1706088]
+- [mm] mm: soft-offline: return -EBUSY if set_hwpoison_free_buddy_page() fails (Rafael Aquini) [1706088]
+- [mm] mm: soft-offline: close the race against page allocation (Rafael Aquini) [1706088]
+- [mm] mm: fix race on soft-offlining free huge pages (Rafael Aquini) [1706088]
+- [pci] PCI: Probe bridge window attributes once at enumeration-time (Myron Stowe) [1730763]
+- [mm] swap_readpage(): avoid blk_wake_io_task() if !synchronous (Ming Lei) [1724016]
+- [mm] mm/page_io.c: fix polled swap page in (Ming Lei) [1724016]
+- [include] fs: fix kABI for struct pipe_buf_operations (Miklos Szeredi) [1705007] {CVE-2019-11487}
+- [fs] fs: prevent page refcount overflow in pipe_buf_get (Miklos Szeredi) [1705007] {CVE-2019-11487}
+- [mm] mm: prevent get_user_pages() from overflowing page refcount (Miklos Szeredi) [1705007] {CVE-2019-11487}
+- [include] mm: add 'try_get_page()' helper function (Miklos Szeredi) [1705007] {CVE-2019-11487}
+- [include] mm: make page ref count overflow check tighter and more explicit (Miklos Szeredi) [1705007] {CVE-2019-11487}
+- [fs] fuse: call pipe_buf_release() under pipe lock (Miklos Szeredi) [1705007] {CVE-2019-11487}
+- [kernel] trace: Fix preempt_enable_no_resched() abuse (Phil Auld) [1705550]
+- [kernel] sched/numa: Fix a possible divide-by-zero (Phil Auld) [1705550]
+- [kernel] sched/core: Fix buffer overflow in cgroup2 property cpu.max (Phil Auld) [1705550]
+- [kernel] sched/fair: Remove unused 'sd' parameter from select_idle_smt() (Phil Auld) [1705550]
+- [kernel] sched/topology: Remove the ::smt_gain field from 'struct sched_domain' cleanups (Phil Auld) [1705550]
+- [kernel] sched/numa: Remove unused code from update_numa_stats() (Phil Auld) [1705550]
+
+* Tue Jul 30 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-125.el8]
+- [s390] virtio/s390: fix race on airq_areas[] (Cornelia Huck) [1733499]
+- [powerpc] powerpc: ignore __GFP_DMA/DMA32 if we left an empty ZONE_DMA/DMA32 enabled for kABI purposes (David Gibson) [1728314]
+- [netdrv] bnx2x: Disable multi-cos feature. (Manish Chopra) [1679024]
+- [char] tpm: tpm_ibm_vtpm: Fix unallocated banks (Jerry Snitselaar) [1726126]
+- [scsi] scsi: ibmvfc: fix WARN_ON during event pool release (Steve Best) [1731133]
+- [tools] perf vendor events power9: General metrics (Michael Petlan) [1694638]
+- [tools] perf vendor events power9: Branch_prediction, instruction_stats, latency, lsu_rejects, memory, prefetch & translation metrics (Michael Petlan) [1694638]
+- [tools] perf vendor events power9: Dl1_reloads, instruction_misses, l[23]_stats & pteg_reloads metrics (Michael Petlan) [1694638]
+- [tools] perf vendor events power9: Cpi_breakdown & estimated_dcache_miss_cpi metrics (Michael Petlan) [1694638]
+- [tools] perf vendor events power8: Translaton & general metrics (Michael Petlan) [1694638]
+- [tools] perf vendor events power8: Branch_prediction, latency, bus_stats, instruction_mix & instruction_stats metrics (Michael Petlan) [1694638]
+- [tools] perf vendor events power8: Dl1_reload, instruction_misses, l2_stats, lsu_rejects, memory & pteg_reloads metrics (Michael Petlan) [1694638]
+- [tools] perf vendor events power8: Cpi_breakdown & estimated_dcache_miss_cpi metrics (Michael Petlan) [1694638]
+- [powerpc] powerpc/tm: Fix oops on sigreturn on systems without TM (Steve Best) [1732753]
+- [net] net/mlx5e: Add ndo_set_feature for uplink representor (Alaa Hleihel) [1727708]
+- [misc] VMCI: Fix integer overflow in VMCI handle arrays (Cathy Avery) [1729587]
+- [tools] perf version: Fix segfault due to missing OPT_END() (Michael Petlan) [1732065]
+- [sound] ALSA: hda/realtek - Headphone Mic can't record after S3 (Jaroslav Kysela) [1727676]
+- [char] random: fix CRNG initialization when random.trust_cpu=1 (Oleksandr Natalenko) [1728583]
+- [char] random: move rand_initialize() earlier (Oleksandr Natalenko) [1728583]
+- [char] random: make CPU trust a boot parameter (Oleksandr Natalenko) [1728583]
+- [char] random: add a config option to trust the CPU's hwrng (Oleksandr Natalenko) [1728583]
+- [fs] blockdev: Fix livelocks on loop device (Ming Lei) [1683593]
+- [block] nbd: Use set_blocksize() to set device blocksize (Ming Lei) [1683593]
+- [kernel] ptrace: Fix ->ptracer_cred handling for PTRACE_TRACEME (Aristeu Rozanski) [1730959] {CVE-2019-13272}
+
+* Mon Jul 29 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-124.el8]
+- [include] linux/printk.h: use DYNAMIC_DEBUG_BRANCH in pr_debug_ratelimited (Mike Snitzer) [1729301]
+- [include] dm: use printk ratelimiting functions (Mike Snitzer) [1729301]
+- [md] dm crypt: move detailed message into debug level (Mike Snitzer) [1729301]
+- [powerpc] powerpc/xive: Fix loop exit-condition in xive_find_target_in_mask() (Steve Best) [1731838]
+- [s390] s390/qeth: be drop monitor friendly (Philipp Rudo) [1731200]
+- [s390] s390/cpumf: Add extended counter set definitions for model 8561 and 8562 (Philipp Rudo) [1731195]
+- [s390] s390/qdio: handle PENDING state for QEBSM devices (Philipp Rudo) [1731194]
+- [net] net/af_iucv: build proper skbs for HiperTransport (Philipp Rudo) [1731193]
+- [net] net/af_iucv: remove GFP_DMA restriction for HiperTransport (Philipp Rudo) [1731193]
+- [wireless] iwlwifi: mvm: disable TX-AMSDU on older NICs (Jarod Wilson) [1728992]
+- [wireless] carl9170: fix misuse of device driver API (Jarod Wilson) [1728992]
+- [wireless] p54: fix crash during initialization (Jarod Wilson) [1728992]
+- [wireless] p54usb: Fix race between disconnect and firmware loading (Jarod Wilson) [1728992]
+- [wireless] mwifiex: Don't abort on small, spec-compliant vendor IEs (Jarod Wilson) [1728992]
+- [wireless] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 507 (Jarod Wilson) [1728992]
+- [net] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 505 (Jarod Wilson) [1728992]
+- [wireless] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 501 (Jarod Wilson) [1728992]
+- [net] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500 (Jarod Wilson) [1728992]
+- [wireless] brcmfmac: sdio: Don't tune while the card is off (Jarod Wilson) [1728992]
+- [wireless] brcmfmac: sdio: Disable auto-tuning around commands expected to fail (Jarod Wilson) [1728992]
+- [mmc] mmc: core: Add sdio_retune_hold_now() and sdio_retune_release() (Jarod Wilson) [1728992]
+- [mmc] mmc: core: API to temporarily disable retuning for SDIO CRC errors (Jarod Wilson) [1728992]
+- [wireless] Revert "brcmfmac: disable command decode in sdio_aos" (Jarod Wilson) [1728992]
+- [net] cfg80211: report measurement start TSF correctly (Jarod Wilson) [1728992]
+- [net] cfg80211: fix memory leak of wiphy device name (Jarod Wilson) [1728992]
+- [net] cfg80211: util: fix bit count off by one (Jarod Wilson) [1728992]
+- [net] mac80211: do not start any work during reconfigure flow (Jarod Wilson) [1728992]
+- [net] cfg80211: use BIT_ULL in cfg80211_parse_mbssid_data() (Jarod Wilson) [1728992]
+- [net] mac80211: only warn once on chanctx_conf being NULL (Jarod Wilson) [1728992]
+- [net] mac80211: drop robust management frames from unknown TA (Jarod Wilson) [1728992]
+- [wireless] mwifiex: Fix heap overflow in mwifiex_uap_parse_tail_ies() (Jarod Wilson) [1728992 1721749] {CVE-2019-10126}
+- [wireless] iwlwifi: mvm: change TLC config cmd sent by rs to be async (Jarod Wilson) [1728992]
+- [wireless] iwlwifi: Fix double-free problems in iwl_req_fw_callback() (Jarod Wilson) [1728992]
+- [wireless] iwlwifi: fix AX201 killer sku loading firmware issue (Jarod Wilson) [1728992]
+- [wireless] iwlwifi: print fseq info upon fw assert (Jarod Wilson) [1728992]
+- [wireless] iwlwifi: clear persistence bit according to device family (Jarod Wilson) [1728992]
+- [wireless] iwlwifi: fix load in rfkill flow for unified firmware (Jarod Wilson) [1728992]
+- [wireless] iwlwifi: mvm: remove d3_sram debugfs file (Jarod Wilson) [1728992]
+- [wireless] mwifiex: Abort at too short BSS descriptor element (Jarod Wilson) [1728992 1714476] {CVE-2019-3846}
+- [wireless] mwifiex: Fix possible buffer overflows at parsing bss descriptor (Jarod Wilson) [1728992 1714476] {CVE-2019-3846}
+- [net] mac80211: free peer keys before vif down in mesh (Jarod Wilson) [1728992]
+- [wireless] rtw88: Make some symbols static (Jarod Wilson) [1728992]
+- [wireless] rtw88: avoid circular locking between local->iflist_mtx and rtwdev->mutex (Jarod Wilson) [1728992]
+- [wireless] rtw88: fix unassigned rssi_level in rtw_sta_info (Jarod Wilson) [1728992]
+- [wireless] rtw88: fix subscript above array bounds compiler warning (Jarod Wilson) [1728992]
+- [net] mac80211: mesh: fix RCU warning (Jarod Wilson) [1728992]
+- [net] nl80211: fix station_info pertid memory leak (Jarod Wilson) [1728992]
+- [net] mac80211: Do not use stack memory with scatterlist for GMAC (Jarod Wilson) [1728992]
+- [net] {nl,mac}80211: allow 4addr AP operation on crypto controlled devices (Jarod Wilson) [1728992]
+- [wireless] mac80211_hwsim: mark expected switch fall-through (Jarod Wilson) [1728992]
+- [net] mac80211: fix rate reporting inside cfg80211_calculate_bitrate_he() (Jarod Wilson) [1728992]
+- [net] mac80211: remove set but not used variable 'old' (Jarod Wilson) [1728992]
+- [net] mac80211: handle deauthentication/disassociation from TDLS peer (Jarod Wilson) [1728992]
+- [net] wireless: Skip directory when generating certificates (Jarod Wilson) [1728992]
+- [netdrv] i40e: Check and set the PF driver state first in i40e_ndo_set_vf_mac (Stefan Assmann) [1719538]
+- [fs] cifs: fix crash in smb2_compound_op()/smb2_set_next_command() (Leif Sahlberg) [1722704]
+- [firmware] efi/arm: Show SMBIOS bank/device location in CPER and GHES error logs (Robert Richter) [1721386]
+
+* Thu Jul 25 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-123.el8]
+- [x86] x86/speculation: Allow guests to use SSBD even if host does not (Waiman Long) [1728341]
+- [block] block: kill BLK_MQ_F_SG_MERGE (Ming Lei) [1716595]
+- [block] block: kill QUEUE_FLAG_NO_SG_MERGE (Ming Lei) [1716595]
+
+* Wed Jul 24 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-122.el8]
+- [x86] x86/insn-eval: Fix use-after-free access to LDT entry (Rafael Aquini) [1728561] {CVE-2019-13233}
+- [arm64] arm64/mm: Correct the cache line size warning with non coherent device (Mark Salter) [1715061]
+- [arm64] arm64: cacheinfo: Update cache_line_size detected from DT or PPTT (Mark Salter) [1715061]
+- [base] drivers: base: cacheinfo: Add variable to record max cache line size (Mark Salter) [1715061]
+- [arm64] arm64: cpufeature: Trap CTR_EL0 access only where it is necessary (Mark Salter) [1715061]
+- [arm64] arm64: cpufeature: Fix handling of CTR_EL0.IDC field (Mark Salter) [1715061]
+- [arm64] arm64: cpufeature: ctr: Fix cpu capability check for late CPUs (Mark Salter) [1715061]
+- [arm64] arm64: cpu_errata: Remove ARM64_MISMATCHED_CACHE_LINE_SIZE (Mark Salter) [1715061]
+- [fs] gfs2: Clean up freeing struct gfs2_sbd (Robert S Peterson) [1683698]
+- [target] scsi: target/iblock: Fix overrun in WRITE SAME emulation (Maurizio Lombardi) [1729503]
+- [x86] kvm/nvmx: fix VMCLEAR when Enlightened VMCS is in use (Vitaly Kuznetsov) [1717785]
+- [x86] kvm/nvmx: don't use clean fields data on enlightened VMLAUNCH (Vitaly Kuznetsov) [1717785]
+- [x86] kvm: nvmx: use correct clean fields when copying from eVMCS (Vitaly Kuznetsov) [1717785]
+- [fs] NFS4: Only set creation opendata if O_CREAT (Benjamin Coddington) [1708471]
+- [tools] perf test: Fix failure of 'evsel-tp-sched' test on s390 (Michael Petlan) [1729213]
+- [fs] PNFS fallback to MDS if no deviceid found (Benjamin Coddington) [1708386]
+- [mm] mm, memcg: add a memcg_slabinfo debugfs file (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: reparent memcg kmem_caches on cgroup removal (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: stop setting page->mem_cgroup pointer for slab pages (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: rework non-root kmem_cache lifecycle management (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: synchronize access to kmem_cache dying flag using a spinlock (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: don't check the dying flag on kmem_cache creation (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: unify SLAB and SLUB page accounting (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: introduce __memcg_kmem_uncharge_memcg() (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: generalize postponed non-root kmem_cache deactivation (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: rename slab delayed deactivation functions and fields (Waiman Long) [1699202]
+- [mm] mm: memcg/slab: postpone kmem_cache memcg pointer initialization to memcg_link_cache() (Waiman Long) [1699202]
+- [mm] slub: add comments to endif pre-processor macros (Waiman Long) [1699202]
+- [mm] mm, slab: shorten kmalloc cache names for large sizes (Waiman Long) [1699202]
+- [base] mm, proc: add KReclaimable to /proc/meminfo (Waiman Long) [1699202]
+- [mm] mm: rename and change semantics of nr_indirectly_reclaimable_bytes (Waiman Long) [1699202]
+- [fs] dcache: allocate external names from reclaimable kmalloc caches (Waiman Long) [1699202]
+- [mm] mm, slab/slub: introduce kmalloc-reclaimable caches (Waiman Long) [1699202]
+- [mm] mm, slab: combine kmalloc_caches and kmalloc_dma_caches (Waiman Long) [1699202]
+- [mm] mm: don't warn about large allocations for slab (Waiman Long) [1699202]
+- [mm] slab: Replace synchronize_sched() with synchronize_rcu() (Waiman Long) [1699202]
+- [acpi] ACPI / PM: LPIT: Register sysfs attributes based on FADT (Lenny Szubowicz) [1493461]
+- [platform] platform/x86: intel_pmc_core: Quirk to ignore XTAL shutdown (Lenny Szubowicz) [1493461]
+- [platform] platform/x86: intel_pmc_core: Add Package cstates residency info (Lenny Szubowicz) [1493461]
+- [platform] platform/x86: intel_pmc_core: Add ICL platform support (Lenny Szubowicz) [1493461]
+- [platform] platform/x86: intel_pmc: Sort headers alphabetically (Lenny Szubowicz) [1493461]
+- [net] Revert "[net] net: openvswitch: Add a new action check_pkt_len" ("Herton R. Krzesinski")
+
+* Tue Jul 23 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-121.el8]
+- [nvme] nvme-rdma: use nr_phys_segments when map rq to sgl (David Milburn) [1729113]
+- [nvme] nvme-loop: kill timeout handler (Ming Lei) [1692744]
+- [netdrv] bnxt_en: Suppress error messages when querying DSCP DCB capabilities. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Cap the returned MSIX vectors to the RDMA driver. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Fix statistics context reservation logic for RDMA driver. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Fix ethtool selftest crash under error conditions. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Disable bus master during PCI shutdown and driver unload. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Reduce memory usage when running in kdump kernel. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Fix possible BUG() condition when calling pci_disable_msix(). (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Fix aggregation buffer leak under OOM condition. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Improve NQ reservations. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Fix uninitialized variable usage in bnxt_rx_pkt(). (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Fix statistics context reservation logic. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Pass correct extended TX port statistics size to firmware. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Fix possible crash in bnxt_hwrm_ring_free() under error conditions. (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Free short FW command HWRM memory in error path in bnxt_init_one() (Selvin Xavier) [1727972]
+- [netdrv] bnxt_en: Improve multicast address setup logic. (Selvin Xavier) [1727972]
+- [net] net: openvswitch: Add a new action check_pkt_len (Numan Siddique) [1700733]
+
+* Fri Jul 19 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-120.el8]
+- [crypto] crypto: vmx - ghash: do nosimd fallback manually (Desnes Augusto Nunes do Rosario) [1729532]
+- [crypto] crypto: vmx - CTR: always increment IV as quadword (Desnes Augusto Nunes do Rosario) [1729532]
+- [net] vsock/virtio: fix flush of works during the .remove() (Stefano Garzarella) [1700312]
+- [net] vsock/virtio: stop workers during the .remove() (Stefano Garzarella) [1700312]
+- [net] vsock/virtio: use RCU to avoid use-after-free on the_virtio_vsock (Stefano Garzarella) [1700312]
+- [net] vsock/virtio: Initialize core virtio vsock before registering the driver (Stefano Garzarella) [1700312]
+- [nvme] nvme-fabrics: document the poll function argument (David Milburn) [1727784 1725132]
+- [nvme] nvme-rdma: fix queue mapping when queue count is limited (David Milburn) [1727784 1725132]
+- [nvme] nvme-rdma: rework queue maps handling (David Milburn) [1727784 1725132]
+- [nvme] nvme-rdma: implement polling queue map (David Milburn) [1727784 1725132]
+- [nvme] nvme-fabrics: allow nvmf_connect_io_queue to poll (David Milburn) [1727784 1725132]
+- [hid] HID: multitouch: Add pointstick support for ALPS Touchpad (Benjamin Tissoires) [1672423]
+
+* Thu Jul 18 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-119.el8]
+- [tools] perf header: Assign proper ff->ph in perf_event__synthesize_features() (Michael Petlan) [1667983]
+- [pci] PCI/IOV: Assume SR-IOV VFs support extended config space. (Myron Stowe) [1714978]
+- [pci] Revert "PCI/IOV: Use VF0 cached config space size for other VFs" (Myron Stowe) [1714978]
+- [x86] x86/crash: Add e820 reserved ranges to kdump kernel's e820 table (Lianbo Jiang) [1630108]
+- [mm] x86/mm: Rework ioremap resource mapping determination (Lianbo Jiang) [1630108]
+- [x86] x86/e820, ioport: Add a new I/O resource descriptor IORES_DESC_RESERVED (Lianbo Jiang) [1630108]
+- [kernel] resource: Fix find_next_iomem_res() iteration issue (Lianbo Jiang) [1630108]
+- [kernel] resource: Include resource end in walk_*() interfaces (Lianbo Jiang) [1630108]
+- [x86] x86/kexec: Correct KEXEC_BACKUP_SRC_END off-by-one error (Lianbo Jiang) [1630108]
+- [scsi] scsi: lpfc: Update lpfc version to 12.2.0.3 (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix kernel warnings related to smp_processor_id() (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix BFS crash with DIX enabled (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix FDMI fc4type for nvme support (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix fcp_rsp_len checking on lun reset (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix poor use of hardware queues if fewer irq vectors (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix oops when driver is loaded with 1 interrupt vector (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix incorrect logical link speed on trunks when links down (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix memory leak in abnormal exit path from lpfc_eq_create (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Rework misleading nvme not supported in firmware message (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix hardlockup in scsi_cmd_iocb_cmpl (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Cancel queued work for an IO when processing a received ABTS (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Prevent 'use after free' memory overwrite in nvmet LS handling (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix PT2PT PLOGI collison stopping discovery (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Revert message logging on unsupported topology (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix nvmet handling of received ABTS for unmapped frames (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Separate CQ processing for nvmet_fc upcalls (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Revise message when stuck due to unresponsive adapter (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Correct nvmet buffer free race condition (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix nvmet target abort cmd matching (Dick Kennedy) [1717027]
+- [scsi] scsi: lpfc: Fix alloc context on oas lun creations (Dick Kennedy) [1717027]
+
+* Wed Jul 17 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-118.el8]
+- [virt] kvm: fix guest initialization code mismerge (Marcelo Tosatti) [1726487]
+- [powerpc] powerpc/watchpoint: Restore NV GPRs while returning from exception (Steve Best) [1728557]
+- [fs] fs/proc/vmcore: Enable dumping of encrypted memory when SEV was active (Lianbo Jiang) [1646810]
+- [x86] x86/kexec: Set the C-bit in the identity map page table when SEV is active (Lianbo Jiang) [1646810]
+- [x86] x86/kexec: Do not map kexec area as decrypted when SEV is active (Lianbo Jiang) [1646810]
+- [mm] x86/mm: Do not use set_{pud, pmd}_safe() when splitting a large page (Lianbo Jiang) [1646810]
+
+* Tue Jul 16 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-117.el8]
+- [net] sched: protect against stack overflow in TC act_mirred (Ivan Vecera) [1726399]
+- [net] sched: refactor reinsert action (Ivan Vecera) [1726399]
+- [net] mpls: Fix 6PE forwarding (Hangbin Liu) [1726533]
+- [net] make skb_dst_force return true when dst is refcounted (Florian Westphal) [1704809]
+- [net] ipv4: Fix off-by-one in route dump counter without netlink strict checking (Stefano Brivio) [1725383 1725381 1574290]
+- [net] ipv6: fix suspicious RCU usage in rt6_dump_route() (Stefano Brivio) [1725383 1725381 1574290]
+- [net] ipv4: fix suspicious RCU usage in fib_dump_info_fnhe() (Stefano Brivio) [1725383 1725381 1574290]
+- [net] ip6_fib: Don't discard nodes with valid routing information in fib6_locate_1() (Stefano Brivio) [1725383 1725381 1574290]
+- [net] ipv6: Dump route exceptions if requested (Stefano Brivio) [1725383 1725381 1574290]
+- [net] ipv6/route: Change return code of rt6_dump_route() for partial node dumps (Stefano Brivio) [1725383 1725381 1574290]
+- [net] revert "net/ipv6: Bail early if user only wants cloned entries" (Stefano Brivio) [1725383 1725381 1574290]
+- [net] ipv4: Dump route exceptions if requested (Stefano Brivio) [1725383 1725381 1574290]
+- [net] ipv4/route: Allow NULL flowinfo in rt_fill_info() (Stefano Brivio) [1725383 1725381 1574290]
+- [net] ipv4/fib_frontend: Allow RTM_F_CLONED flag to be used for filtering (Stefano Brivio) [1725383 1725381 1574290]
+- [net] fib_frontend, ip6_fib: Select routes or exceptions dump from RTM_F_CLONED (Stefano Brivio) [1725383 1725381 1574290]
+- [tools] selftests: bpf: disable test_lwt_seg6local (Jiri Benc) [1716346]
+- [netdrv] ipvlan: Fix ipvlan device tso disabled while NETIF_F_IP_CSUM is set (Matteo Croce) [1725125]
+- [netdrv] ipvlan: disallow userns cap_net_admin to change global mode/flags (Matteo Croce) [1725124]
+- [net] netfilter: nft_fib: Fix existence check support (Phil Sutter) [1680578]
+- [net] ipset: Fix memory accounting for hash types on resize (Stefano Brivio) [1714111]
+- [tools] selftests: pmtu: Make list_flush_ipv6_exception test more demanding (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Introduce list_flush_ipv4_exception test case (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Introduce list_flush_ipv6_exception test case (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Add support for routing via nexthop objects (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Move route installs to a new function (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Move running of test into a new function (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Fix encapsulating device in pmtu_vti6_link_change_mtu (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Simplify cleanup and namespace names (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu.sh: Remove quotes around commands in setup_xfrm (Stefano Brivio) [1725384]
+- [tools] selftests: Add debugging options to pmtu.sh (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: add explicit tests for PMTU exceptions cleanup (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: disable DAD in all namespaces (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Introduce FoU and GUE PMTU exceptions tests (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Introduce tests for IPv4/IPv6 over GENEVE over IPv4/IPv6 (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Introduce tests for IPv4/IPv6 over VXLAN over IPv4/IPv6 (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Add optional traffic captures for single tests (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Allow selection of single tests (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: add basic IPv4 and IPv6 PMTU tests (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: extend MTU parsing helper to locked MTU (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: Introduce check_pmtu_value() (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: properly redirect stderr to /dev/null (Stefano Brivio) [1725384]
+- [tools] selftests: pmtu: detect correct binary to ping ipv6 addresses (Stefano Brivio) [1725384]
+- [net] ipv6: icmp: Updating pmtu for link local route (Guillaume Nault) [1721961]
+- [net] bridge: Mark FDB entries that were added by user as such (Ivan Vecera) [1724400]
+- [net] tipc: change to use register_pernet_device (Xin Long) [1719136]
+- [net] sched: cls_flower: fix infinite loop in fl_walk() (Davide Caratti) [1712739]
+
+* Fri Jul 12 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-116.el8]
+- [rpmspec] redhat: fix vmlinux debuginfo on ppc64le (Jan Stancek) [1727638]
+- [powerpc] powerpc/rtas: retry when cpu offline races with suspend/migration (Steve Best) [1727051]
+- [kernel] arm64/crashkernel: Reduce crashkernel size to 448M by default (Bhupesh Sharma) [1564422]
+
+* Thu Jul 11 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-115.el8]
+- [scsi] scsi: libiscsi: Fix race between iscsi_xmit_task and iscsi_complete_task (Chris Leech) [1718875]
+- [scsi] scsi: lpfc: Update lpfc version to 12.2.0.2 (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: add check for loss of ndlp when sending RRQ (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: correct rcu unlock issue in lpfc_nvme_info_show (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: resolve lockdep warnings (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Make lpfc_sli4_oas_verify static (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Fix a recently introduced compiler warning (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Fix missing wakeups on abort threads (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Change smp_processor_id() into raw_smp_processor_id() (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Remove unused functions (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Remove set-but-not-used variables (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Move trunk_errmsg[] from a header file into a .c file (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Annotate switch/case fall-through (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Fix indentation and balance braces (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: Declare local functions static (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: avoid uninitialized variable warning (Dick Kennedy) [1714795]
+- [scsi] scsi: lpfc: change snprintf to scnprintf for possible overflow (Dick Kennedy) [1714795]
+- [net] Bluetooth: hidp: fix buffer overflow (Gopal Tiwari) [1723654] {CVE-2019-11884}
+- [s390] virtio/s390: make airq summary indicators DMA (Philipp Rudo) [1651752]
+- [s390] virtio/s390: use DMA memory for ccw I/O and classic notifiers (Philipp Rudo) [1651752]
+- [s390] virtio/s390: add indirection to indicators access (Philipp Rudo) [1651752]
+- [s390] virtio/s390: use cacheline aligned airq bit vectors (Philipp Rudo) [1651752]
+- [s390] s390/airq: use DMA memory for adapter interrupts (Philipp Rudo) [1651752]
+- [s390] s390/cio: add basic protected virtualization support (Philipp Rudo) [1651752]
+- [s390] s390/cio: introduce DMA pools to cio (Philipp Rudo) [1651752]
+- [s390] s390/mm: force swiotlb for protected virtualization (Philipp Rudo) [1651752]
+- [s390] virtio/s390: DMA support for virtio-ccw (Philipp Rudo) [1651752]
+- [s390] virtio/s390: use vring_create_virtqueue (Philipp Rudo) [1651752]
+- [block] virtio-blk: Consider virtio_max_dma_size() for maximum segment size (Philipp Rudo) [1651752]
+- [virtio] virtio: Introduce virtio_max_dma_size() (Philipp Rudo) [1651752]
+- [kernel] dma: Introduce dma_max_mapping_size() (Philipp Rudo) [1651752]
+- [kernel] swiotlb: Add is_swiotlb_active() function (Philipp Rudo) [1651752]
+- [kernel] swiotlb: Introduce swiotlb_max_mapping_size() (Philipp Rudo) [1651752]
+- [mm] x86/mm: Create a workarea in the kernel for SME early encryption (Lianbo Jiang) [1564427]
+- [x86] x86/mm: Identify the end of the kernel area to be reserved (Lianbo Jiang) [1564427]
+- [x86] x86/kdump: Export the SME mask to vmcoreinfo (Lianbo Jiang) [1564427]
+- [fs] proc/vmcore: Fix i386 build error of missing copy_oldmem_page_encrypted() (Lianbo Jiang) [1564427]
+- [fs] kdump, proc/vmcore: Enable kdumping encrypted memory with SME enabled (Lianbo Jiang) [1564427]
+- [iommu] iommu/amd: Remap the IOMMU device table with the memory encryption mask for kdump (Lianbo Jiang) [1564427]
+- [kernel] kexec: Allocate decrypted control pages for kdump if SME is enabled (Lianbo Jiang) [1564427]
+- [mm] x86/ioremap: Add an ioremap_encrypted() helper (Lianbo Jiang) [1564427]
+- [documentation] Documentation: Add ARM64 to kernel-parameters.rst (Jeremy Linton) [1640855]
+- [arm64] arm64/speculation: Support 'mitigations=' cmdline option (Jeremy Linton) [1640855]
+- [arm64] arm64: ssbs: Don't treat CPUs with SSBS as unaffected by SSB (Jeremy Linton) [1640855]
+- [arm64] arm64: enable generic CPU vulnerabilites support (Jeremy Linton) [1640855]
+- [arm64] arm64: add sysfs vulnerability show for speculative store bypass (Jeremy Linton) [1640855]
+- [arm64] arm64: Always enable ssb vulnerability detection (Jeremy Linton) [1640855]
+- [arm64] arm64: add sysfs vulnerability show for spectre-v2 (Jeremy Linton) [1640855]
+- [arm64] arm64: Always enable spectre-v2 vulnerability detection (Jeremy Linton) [1640855]
+- [arm64] arm64: Use firmware to detect CPUs that are not affected by Spectre-v2 (Jeremy Linton) [1640855]
+- [arm64] arm64: Advertise mitigation of Spectre-v2, or lack thereof (Jeremy Linton) [1640855]
+- [arm64] arm64: add sysfs vulnerability show for meltdown (Jeremy Linton) [1640855]
+- [arm64] arm64: Add sysfs vulnerability show for spectre-v1 (Jeremy Linton) [1640855]
+- [arm64] arm64: Provide a command line to disable spectre_v2 mitigation (Jeremy Linton) [1640855]
+- [documentation] powerpc/fsl: Add FSL_PPC_BOOK3E as supported arch for nospectre_v2 boot arg (Jeremy Linton) [1640855]
+- [documentation] Documentation: Document arm64 kpti control (Jeremy Linton) [1640855]
+- [arm64] arm64: kpti: Whitelist HiSilicon Taishan v110 CPUs (Jeremy Linton) [1640855]
+- [arm64] arm64: Add MIDR encoding for HiSilicon Taishan CPUs (Jeremy Linton) [1640855]
+- [arm64] arm64: kpti: Whitelist Cortex-A CPUs that don't implement the CSV3 field (Jeremy Linton) [1640855]
+- [arm64] arm64: kpti: Update arm64_kernel_use_ng_mappings() when forced on (Jeremy Linton) [1640855]
+- [arm64] arm64: kpti: Avoid rewriting early page tables when KASLR is enabled (Jeremy Linton) [1640855]
+- [arm64] arm64: capabilities: Merge duplicate Cavium erratum entries (Jeremy Linton) [1640855]
+- [arm64] arm64: capabilities: Merge entries for ARM64_WORKAROUND_CLEAN_CACHE (Jeremy Linton) [1640855]
+- [arm64] arm64: Use a raw spinlock in __install_bp_hardening_cb() (Jeremy Linton) [1640855]
+- [arm64] arm64: KVM: Guests can skip __install_bp_hardening_cb()s HYP work (Jeremy Linton) [1640855]
+- [arm64] arm64: fix SSBS sanitization (Jeremy Linton) [1640855]
+- [arm64] arm64: don't zero DIT on signal return (Jeremy Linton) [1640855]
+- [kvm] KVM: arm64: Set SCTLR_EL2.DSSBS if SSBD is forcefully disabled and !vhe (Jeremy Linton) [1640855]
+- [arm64] arm64: ssbd: Add support for PSTATE.SSBS rather than trapping to EL3 (Jeremy Linton) [1640855]
+- [arm64] arm64: ssbd: Drop #ifdefs for PR_SPEC_STORE_BYPASS (Jeremy Linton) [1640855]
+- [arm64] arm64: cpufeature: Detect SSBS and advertise to userspace (Jeremy Linton) [1640855]
+- [arm64] arm64: move SCTLR_EL{1,2} assertions to <asm/sysreg.h> (Jeremy Linton) [1640855]
+
+* Wed Jul 10 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-114.el8]
+- [powerpc] powerpc/mm/64s/hash: Reallocate context ids on fork (Steve Best) [1723808]
+- [powerpc] powerpc/perf: Use cpumask_last() to determine the designated cpu for nest/core units. (Steve Best) [1725746]
+- [fs] iomap: fix page_done callback for short writes (Andreas Grunbacher) [1724361]
+- [fs] fs: fold __generic_write_end back into generic_write_end (Andreas Grunbacher) [1724361]
+- [fs] iomap: don't mark the inode dirty in iomap_write_end (Andreas Grunbacher) [1724361]
+- [fs] gfs2: Fix iomap write page reclaim deadlock (Andreas Grunbacher) [1724361]
+- [fs] iomap: Add a page_prepare callback (Andreas Grunbacher) [1724361]
+- [fs] iomap: Fix use-after-free error in page_done callback (Andreas Grunbacher) [1724361]
+- [fs] fs: Turn __generic_write_end into a void function (Andreas Grunbacher) [1724361]
+- [fs] iomap: Clean up __generic_write_end calling (Andreas Grunbacher) [1724361]
+- [kvm] KVM: PPC: Book3S HV: Clear pending decrementer exceptions on nested guest entry (Suraj Jitindar Singh) [1718822]
+- [kvm] KVM: PPC: Book3S HV: Signed extend decrementer value if not using large decrementer (Suraj Jitindar Singh) [1718822]
+
+* Tue Jul 09 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-113.el8]
+- [hid] HID: chicony: add another quirk for PixArt mouse (Oleksandr Natalenko) [1724967]
+- [scsi] scsi: smartpqi: properly set both the DMA mask and the coherent DMA mask (Don Brace) [1712272]
+- [tools] perf beauty waitid options: Fix up prefix showing logic (Michael Petlan) [1715507]
+- [include] redhat: perf kABI-check failure fix (Michael Petlan) [1715507]
+- [tools] perf script python: Add Python3 support to tests/attr.py (Michael Petlan) [1715507]
+- [tools] perf trace: Support multiple "vfs_getname" probes (Michael Petlan) [1715507]
+- [tools] perf symbols: Filter out hidden symbols from labels (Michael Petlan) [1715507]
+- [tools] perf symbols: Add fallback definitions for GELF_ST_VISIBILITY() (Michael Petlan) [1715507]
+- [tools] perf clang: Do not use 'return std::move(something)' (Michael Petlan) [1715507]
+- [tools] perf tests evsel-tp-sched: Fix bitwise operator (Michael Petlan) [1715507]
+- [tools] perf script: Fix crash when processing recorded stat data (Michael Petlan) [1715507]
+- [tools] perf top: Fix wrong hottest instruction highlighted (Michael Petlan) [1715507]
+- [tools] perf tools: Handle TOPOLOGY headers with no CPU (Michael Petlan) [1715507]
+- [tools] perf python: Remove -fstack-clash-protection when building with some clang versions (Michael Petlan) [1715507]
+- [tools] perf script: Fix crash with printing mixed trace point and other events (Michael Petlan) [1715507]
+- [tools] perf ordered_events: Fix crash in ordered_events__free (Michael Petlan) [1715507]
+- [tools] tools headers powerpc: Remove unistd.h (Michael Petlan) [1715507]
+- [tools] perf powerpc: Rework syscall table generation (Michael Petlan) [1715507]
+- [tools] perf symbols: Add 'arch_cpu_idle' to the list of kernel idle symbols (Michael Petlan) [1715507]
+- [tools] perf beauty: Switch from using uapi/linux/fs.h to uapi/linux/mount.h (Michael Petlan) [1715507]
+- [tools] tools include uapi: Grab a copy of linux/mount.h (Michael Petlan) [1715507]
+- [tools] perf top: Lift restriction on using callchains without "sym" in --sort (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Remove tep_data_event_from_type() API (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Rename tep_is_file_bigendian() to tep_file_bigendian() (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Changed return logic of tep_register_event_handler() API (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Changed return logic of trace_seq_printf() and trace_seq_vprintf() APIs (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Rename struct cmdline to struct tep_cmdline (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Initialize host_bigendian at tep_handle allocation (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Introduce new libtracevent API: tep_override_comm() (Michael Petlan) [1715507]
+- [tools] perf tests: Add a test for the ARM 32-bitpage (Michael Petlan) [1715507]
+- [tools] perf tools: Make find_vdso_map() more modular (Michael Petlan) [1715507]
+- [tools] perf trace: Fix alignment forlines (Michael Petlan) [1715507]
+- [tools] perf trace: Fix ')' placement in "interrupted" syscall lines (Michael Petlan) [1715507]
+- [tools] perf test shell: Use a fallback to get the pathname in vfs_getname (Michael Petlan) [1715507]
+- [tools] perf python: Make sure the python binding output directory is in place (Michael Petlan) [1715507]
+- [tools] perf strbuf: Remove redundant va_end() in strbuf_addv() (Michael Petlan) [1715507]
+- [tools] perf annotate: Pass filename to objdump via execl (Michael Petlan) [1715507]
+- [tools] perf report: Fix wrong iteration count in --branch-history (Michael Petlan) [1715507]
+- [tools] tools headers uapi: Sync copy of asm-generic/unistd.h with the kernel sources (Michael Petlan) [1715507]
+- [tools] tools beauty: Make the prctl option table generator catch all PR_ options (Michael Petlan) [1715507]
+- [tools] perf stat: Fix endless wait for child process (Michael Petlan) [1715507]
+- [tools] perf session: Add comment for perf_session__register_idle_thread() (Michael Petlan) [1715507]
+- [tools] perf thread-stack: Fix thread stack processing for the idle task (Michael Petlan) [1715507]
+- [tools] perf thread-stack: Allocate an array of thread stacks (Michael Petlan) [1715507]
+- [tools] perf thread-stack: Factor out thread_stack__init() (Michael Petlan) [1715507]
+- [tools] perf thread-stack: Allow for a thread stack array (Michael Petlan) [1715507]
+- [tools] perf thread-stack: Avoid direct reference to the thread's stack (Michael Petlan) [1715507]
+- [tools] perf thread-stack: Tidy thread_stack__bottom() usage (Michael Petlan) [1715507]
+- [tools] perf thread-stack: Simplify some code in thread_stack__process() (Michael Petlan) [1715507]
+- [tools] perf c2c: Increase the HITM ratio limit for displayed cachelines (Michael Petlan) [1715507]
+- [tools] perf c2c: Change the default coalesce setup (Michael Petlan) [1715507]
+- [tools] perf trace beauty ioctl: Beautify USBDEVFS_ commands (Michael Petlan) [1715507]
+- [tools] perf trace beauty: Export function to get the files for a thread (Michael Petlan) [1715507]
+- [tools] perf trace: Wire up ioctl's USBDEBFS_ cmd table generator (Michael Petlan) [1715507]
+- [tools] perf beauty ioctl: Add generator for USBDEVFS_ ioctl commands (Michael Petlan) [1715507]
+- [tools] tools headers uapi: Grab a copy of usbdevice_fs.h (Michael Petlan) [1715507]
+- [tools] perf trace: Store the major number for a file when storing its pathname (Michael Petlan) [1715507]
+- [tools] perf trace: Move the files table resizing to outside set_pathname() (Michael Petlan) [1715507]
+- [tools] perf trace: Rename thread_thread->paths to thread_trace->files (Michael Petlan) [1715507]
+- [tools] perf script: Fix LBR skid dump problems in brstackinsn (Michael Petlan) [1715507]
+- [tools] perf trace: Use correct SECCOMP prefix spelling, "SECOMP_*" -> "SECCOMP_*" (Michael Petlan) [1715507]
+- [tools] perf trace: Do not hardcode the size of the tracepoint common_ fields (Michael Petlan) [1715507]
+- [tools] perf build: Don't unconditionally link the libbfd feature test to -liberty and -lz (Michael Petlan) [1715507]
+- [tools] perf beauty mmap: PROT_WRITE should come before PROT_EXEC (Michael Petlan) [1715507]
+- [tools] perf trace: Check if the raw_syscalls:sys_{enter, exit} are setup before setting tp filter (Michael Petlan) [1715507]
+- [tools] perf symbols: Relax checks on perf-PID.map ownership (Michael Petlan) [1715507]
+- [tools] perf trace: Wire up the fadvise 'advice' table generator (Michael Petlan) [1715507]
+- [tools] perf beauty: Add generator for fadvise64's 'advice' arg constants (Michael Petlan) [1715507]
+- [tools] tools headers uapi: Grab a copy of fadvise.h (Michael Petlan) [1715507]
+- [tools] perf beauty mmap: Print mmap's 'offset' arg in hexadecimal (Michael Petlan) [1715507]
+- [tools] perf beauty mmap: Print PROT_READ before PROT_EXEC to match strace output (Michael Petlan) [1715507]
+- [tools] perf trace beauty: Beautify arch_prctl()'s arguments (Michael Petlan) [1715507]
+- [tools] perf trace: When showing string prefixes show prefix + ??? for unknown entries (Michael Petlan) [1715507]
+- [tools] perf trace: Move strarrays to beauty.h for further reuse (Michael Petlan) [1715507]
+- [tools] perf beauty: Wire up the x86_arch prctl code table generator (Michael Petlan) [1715507]
+- [tools] perf beauty: Add a string table generator for x86's 'arch_prctl' codes (Michael Petlan) [1715507]
+- [tools] tools include arch: Grab a copy of x86's prctl.h (Michael Petlan) [1715507]
+- [tools] perf trace: Show NULL when syscall pointer args are 0 (Michael Petlan) [1715507]
+- [tools] perf trace: Enclose the errno strings with () (Michael Petlan) [1715507]
+- [tools] perf augmented_raw_syscalls: Copy 'access' arg as well (Michael Petlan) [1715507]
+- [tools] perf trace: Add alignment spaces after the closing parens (Michael Petlan) [1715507]
+- [tools] perf trace beauty: Print O_RDONLY when (flags & O_ACCMODE) == 0 (Michael Petlan) [1715507]
+- [tools] perf trace: Allow asking for not suppressing common string prefixes (Michael Petlan) [1715507]
+- [tools] perf trace: Add a prefix member to the strarray class (Michael Petlan) [1715507]
+- [tools] perf trace: Enclose strings with double quotes (Michael Petlan) [1715507]
+- [tools] perf trace: Make the alignment of the syscall args be configurable (Michael Petlan) [1715507]
+- [tools] perf trace: Allow suppressing the syscall argument names (Michael Petlan) [1715507]
+- [tools] perf trace: Allow configuring if the syscall start timestamp should be printed (Michael Petlan) [1715507]
+- [tools] perf trace: Allow configuring default for perf_event_attr.inherit (Michael Petlan) [1715507]
+- [tools] perf config: Show the configuration when no arguments are provided (Michael Petlan) [1715507]
+- [tools] perf trace: Allow configuring if the syscall duration should be printed (Michael Petlan) [1715507]
+- [tools] perf trace: Allow configuring if zeroed syscall args should be printed (Michael Petlan) [1715507]
+- [tools] perf trace: Allow specifying a set of events to add in perfconfig (Michael Petlan) [1715507]
+- [tools] perf augmented_raw_syscalls: Do not include stdio.h (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Generate branch sample for exception packet (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Treat EO_TRACE element as trace discontinuity (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Treat NO_SYNC element as trace discontinuity (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Rename CS_ETM_TRACE_ON to CS_ETM_DISCONTINUITY (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Refactor enumeration cs_etm_sample_type (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Remove unused 'trace_on' in cs_etm_decoder (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Avoid stale branch samples when flush packet (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Correct packets swapping in cs_etm__flush() (Michael Petlan) [1715507]
+- [tools] perf trace: Switch to using a struct for the aumented_raw_syscalls syscalls map values (Michael Petlan) [1715507]
+- [tools] perf augmented_syscalls: Switch to using a struct for the syscalls map values (Michael Petlan) [1715507]
+- [tools] perf bpf: Move perf_event_output() from stdio.h to bpf.h (Michael Petlan) [1715507]
+- [tools] perf trace: Implement syscall filtering in augmented_syscalls (Michael Petlan) [1715507]
+- [tools] perf trace: Avoid using raw_syscalls in duplicity with eBPF augmentation (Michael Petlan) [1715507]
+- [tools] perf trace: Rename set_ev_qualifier_filter to clarify its a tracepoint filter (Michael Petlan) [1715507]
+- [tools] perf tools: Cast off_t to s64 to avoid warning on bionic libc (Michael Petlan) [1715507]
+- [tools] perf tools: Add missing open_memstream() prototype for systems lacking it (Michael Petlan) [1715507]
+- [tools] perf header: Fix up argument to ctime() (Michael Petlan) [1715507]
+- [tools] perf tools: Add missing sigqueue() prototype for systems lacking it (Michael Petlan) [1715507]
+- [tools] tools lib subcmd: Don't add the kernel sources to the include path (Michael Petlan) [1715507]
+- [tools] perf trace beauty: renameat's newdirfd may also be AT_FDCWD (Michael Petlan) [1715507]
+- [tools] perf trace: Beautify renameat2's flags argument (Michael Petlan) [1715507]
+- [tools] perf beauty: Wire up the renameat flags table generator to the Makefile (Michael Petlan) [1715507]
+- [tools] perf beauty: Add a string table generator for renameat2's flags constants (Michael Petlan) [1715507]
+- [tools] perf trace beauty: Beautify renameat2's fd arg wrt AT_FDCWD (Michael Petlan) [1715507]
+- [tools] perf trace: Allow selecting use the use of the ordered_events code (Michael Petlan) [1715507]
+- [tools] perf trace: Rename delivery functions to ease making ordered_events selectable (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Fix processing of dereferenced args in bprintk events (Michael Petlan) [1715507]
+- [tools] perf stat: Avoid segfaults caused by negated options (Michael Petlan) [1715507]
+- [tools] perf auxtrace: Alter addr_filter__entire_dso() to work if there are no symbols (Michael Petlan) [1715507]
+- [tools] perf dso: Export data_file_size() method there are no symbols (Michael Petlan) [1715507]
+- [tools] perf trace: Add ordered processing (Michael Petlan) [1715507]
+- [tools] perf ordered_events: Add first_time() method (Michael Petlan) [1715507]
+- [tools] perf trace: Move event delivery to a new deliver_event() function (Michael Petlan) [1715507]
+- [tools] perf ordered_events: Add ordered_events__flush_time interface (Michael Petlan) [1715507]
+- [tools] perf annotate: Introduce basic support for ARC (Michael Petlan) [1715507]
+- [tools] perf config: Modify size factor of snprintf (Michael Petlan) [1715507]
+- [tools] perf record: Fix memory leak on AIO objects deallocation (Michael Petlan) [1715507]
+- [tools] perf vendor events intel: Fix Load_Miss_Real_Latency on SKL/SKX (Michael Petlan) [1715507]
+- [tools] perf parse-events: Fix unchecked usage of strncpy() (Michael Petlan) [1715507]
+- [tools] perf probe: Fix unchecked usage of strncpy() (Michael Petlan) [1715507]
+- [tools] perf ui helpline: Use strlcpy() as a shorter form of strncpy() + explicit set nul (Michael Petlan) [1715507]
+- [tools] perf svghelper: Fix unchecked usage of strncpy() (Michael Petlan) [1715507]
+- [tools] perf help: Remove needless use of strncpy() (Michael Petlan) [1715507]
+- [tools] perf header: Fix unchecked usage of strncpy() (Michael Petlan) [1715507]
+- [tools] perf header: Fix unchecked usage of strncpy() (Michael Petlan) [1715507]
+- [tools] perf dso: Fix unchecked usage of strncpy() (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Add support for PTMv1.1 decoding (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Add support for ETMv3 trace decoding (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Add configuration for ETMv3 trace protocol (Michael Petlan) [1715507]
+- [tools] perf top: Move perf_top__reset_sample_counters() to after counts display (Michael Petlan) [1715507]
+- [tools] perf top: Display slow reader warning when droping samples (Michael Petlan) [1715507]
+- [tools] perf top: Save and display the drop count stats (Michael Petlan) [1715507]
+- [tools] perf top: Drop samples which are behind the refresh rate (Michael Petlan) [1715507]
+- [tools] perf top: Set the 'session_done' volatile variable when exiting (Michael Petlan) [1715507]
+- [tools] perf top: Use cond variable instead of a lock (Michael Petlan) [1715507]
+- [tools] perf top: Add processing thread (Michael Petlan) [1715507]
+- [tools] perf top: Move lost events warning to helpline (Michael Petlan) [1715507]
+- [tools] perf top: Save and display the lost count stats (Michael Petlan) [1715507]
+- [tools] perf ordered_events: Add private data member (Michael Petlan) [1715507]
+- [tools] perf ordered_events: Rework show_progress for __ordered_events__flush (Michael Petlan) [1715507]
+- [tools] perf tools: Support 'srccode' output (Michael Petlan) [1715507]
+- [tools] perf trace: We need to consider "nr" if "__syscall_nr" is not there (Michael Petlan) [1715507]
+- [tools] perf tools: Allow specifying proc-map-timeout in config file (Michael Petlan) [1715507]
+- [tools] tools lib subcmd: Fix a few source code comment typos (Michael Petlan) [1715507]
+- [tools] perf tools: Fix diverse comment typos (Michael Petlan) [1715507]
+- [tools] perf bpf-loader: Fix debugging message typo (Michael Petlan) [1715507]
+- [tools] perf tools Documentation: Fix diverse typos (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Fix diverse typos in comments (Michael Petlan) [1715507]
+- [tools] perf vendor events intel: Fix diverse typos (Michael Petlan) [1715507]
+- [tools] perf tests ARM: Disable breakpoint tests 32-bit (Michael Petlan) [1715507]
+- [tools] perf cs-etm: Support for ARM A32/T32 instruction sets in CoreSight trace (Michael Petlan) [1715507]
+- [tools] perf beauty mmap_flags: Fixed syntax error Fixed missing ']' error (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: traceevent API cleanup (Michael Petlan) [1715507]
+- [tools] perf tools: traceevent API cleanup, remove __tep_data2host*() (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Rename tep_free_format() to tep_free_event() (Michael Petlan) [1715507]
+- [tools] tools lib traceevent, perf tools: Rename 'struct tep_event_format' to 'struct tep_event' (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Install trace-seq.h API header file (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Added support for pkg-config (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Implement new API tep_get_ref() (Michael Petlan) [1715507]
+- [tools] perf report: Documentation average IPC and IPC coverage (Michael Petlan) [1715507]
+- [tools] perf report: Display average IPC and IPC coverage per symbol (Michael Petlan) [1715507]
+- [tools] perf annotate: Create a annotate2 flag in struct symbol (Michael Petlan) [1715507]
+- [tools] perf annotate: Compute average IPC and IPC coverage per symbol (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Add sanity check to is_timestamp_in_us() (Michael Petlan) [1715507]
+- [tools] perf beauty mmap_flags: Check if the arch has a mmap.h file (Michael Petlan) [1715507]
+- [tools] perf record: Extend trace writing to multi AIO (Michael Petlan) [1715507]
+- [tools] perf record: Enable asynchronous trace writing (Michael Petlan) [1715507]
+- [tools] perf mmap: Map data buffer for preserving collected data (Michael Petlan) [1715507]
+- [tools] tools build feature: Check if libaio is available (Michael Petlan) [1715507]
+- [tools] perf intel-pt: Fix error with config term "pt=0" (Michael Petlan) [1715507]
+- [tools] perf top: Allow passing a kallsyms file (Michael Petlan) [1715507]
+- [tools] perf bpf: Use ERR_CAST instead of ERR_PTR(PTR_ERR()) (Michael Petlan) [1715507]
+- [tools] tools include: Adopt ERR_CAST() from the kernel err.h header (Michael Petlan) [1715507]
+- [tools] perf tests record: Allow for 'sleep' being 'coreutils' (Michael Petlan) [1715507]
+- [tools] tools lib traceevent: Fix compile warnings in tools/lib/traceevent/event-parse.c (Michael Petlan) [1715507]
+- [tools] perf script: Use fallbacks for branch stacks (Michael Petlan) [1715507]
+- [tools] perf tools: Use fallback for sample_addr_correlates_sym() cases (Michael Petlan) [1715507]
+- [tools] perf thread: Add fallback functions for cases where cpumode is insufficient (Michael Petlan) [1715507]
+- [tools] perf machine: Record if a arch has a single user/kernel address space (Michael Petlan) [1715507]
+- [tools] perf env: Also consider env->arch == NULL as local operation (Michael Petlan) [1715507]
+- [tools] perf map: Remove extra indirection from map__find() (Michael Petlan) [1715507]
+- [tools] perf stat: Fix CSV mode column output for non-cgroup events (Michael Petlan) [1715507]
+- [tools] perf stat: Fix shadow stats for clock events (Michael Petlan) [1715507]
+- [tools] perf build: Give better hint about devel package for libssl (Michael Petlan) [1715507]
+- [tools] perf pmu: Move *_cpuid_str() weak functions to header.c (Michael Petlan) [1715507]
+- [tools] perf symbols: Fix slowness due to -ffunction-section (Michael Petlan) [1715507]
+- [tools] perf jvmti: Separate jvmti cmlr check (Michael Petlan) [1715507]
+- [tools] perf vendor events: Add JSON metrics for Cascadelake server (Michael Petlan) [1715507]
+- [tools] perf vendor events: Add stepping in CPUID string for x86 (Michael Petlan) [1715507]
+- [tools] perf stat: Use perf_evsel__is_clocki() for clock events (Michael Petlan) [1715507]
+- [tools] perf pmu: Suppress potential format-truncation warning (Michael Petlan) [1715507]
+- [tools] perf tools: Add Hygon Dhyana support (Michael Petlan) [1715507]
+- [tools] perf bench: Add epoll_ctl(2) benchmark (Michael Petlan) [1715507]
+- [tools] perf bench: Add epoll parallel epoll_wait benchmark (Michael Petlan) [1715507]
+- [tools] tools build feature: Check if eventfd() is available (Michael Petlan) [1715507]
+- [tools] perf bench: Move HAVE_PTHREAD_ATTR_SETAFFINITY_NP into bench.h (Michael Petlan) [1715507]
+- [tools] perf script: Share code and output format for uregs and iregs output (Michael Petlan) [1715507]
+- [tools] perf bpf: Reduce the hardcoded .max_entries for pid_maps (Michael Petlan) [1715507]
+- [tools] perf script: Add newline after uregs output (Michael Petlan) [1715507]
+- [tools] Revert "perf augmented_syscalls: Drop 'write', 'poll' for testing without self pid filter" (Michael Petlan) [1715507]
+- [tools] perf augmented_syscalls: Remove example hardcoded set of filtered pids (Michael Petlan) [1715507]
+- [tools] perf trace: Fill in BPF "filtered_pids" map when present (Michael Petlan) [1715507]
+- [tools] perf trace: See if there is a map named "filtered_pids" (Michael Petlan) [1715507]
+- [tools] perf trace: Add "_from_option" suffix to trace__set_filter() (Michael Petlan) [1715507]
+- [tools] perf evlist: Rename perf_evlist__set_filter* to perf_evlist__set_tp_filter* (Michael Petlan) [1715507]
+- [tools] perf augmented_syscalls: Use pid_filter (Michael Petlan) [1715507]
+- [tools] perf augmented_syscalls: Drop 'write', 'poll' for testing without self pid filter (Michael Petlan) [1715507]
+- [tools] perf bpf: Add simple pid_filter class accessible to BPF proggies (Michael Petlan) [1715507]
+- [tools] perf bpf: Add defines for map insertion/lookup (Michael Petlan) [1715507]
+- [tools] perf augmented_syscalls: Remove needless linux/socket.h include (Michael Petlan) [1715507]
+- [tools] perf augmented_syscalls: Filter on a hard coded pid (Michael Petlan) [1715507]
+- [tools] perf bpf: Add unistd.h to the headers accessible to bpf proggies (Michael Petlan) [1715507]
+- [kernel] perf/core: Fix impossible ring-buffer sizes warning (Michael Petlan) [1715507]
+- [x86] perf/x86: Add check_period PMU callback (Michael Petlan) [1715507]
+- [kernel] perf/core: Don't WARN() for impossible ring-buffer sizes (Michael Petlan) [1715507]
+- [x86] perf/x86/intel/uncore: Add Node ID mask (Michael Petlan) [1715507]
+- [kernel] perf core: Fix perf_proc_update_handler() bug (Michael Petlan) [1715507]
+- [tools] powerpc/perf: Update perf_regs structure to include MMCRA (Michael Petlan) [1715507]
+- [powerpc] powerpc/perf: Update perf_regs structure to include SIER (Michael Petlan) [1715507]
+- [include] perf/core: Declare the __percpu attribute on non-deref types (Michael Petlan) [1715507]
+- [kernel] perf: Fix typos in comments (Michael Petlan) [1715507]
+- [arm64] arm64: perf: Add support for Armv8.1 PMCEID register format (Michael Petlan) [1715507]
+
+* Fri Jul 05 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-112.el8]
+- [fs] xfs: abort unaligned nowait directio early (Brian Foster) [1690458]
+- [fs] xfs: serialize unaligned dio writes against all other dio writes (Brian Foster) [1690458]
+- [sound] ALSA: hda/hdmi: consider eld_valid also in sync_eld_via_acomp() (Jaroslav Kysela) [1708555]
+- [fs] Fix error code in nfs_lookup_verify_inode() (Scott Mayhew) [1722315]
+- [md] dm table: don't copy from a NULL pointer in realloc_argv() (Jerome Marchand) [1571628]
+- [net] netfilter: ipset: replace a strncpy() with strscpy() (Jerome Marchand) [1571628]
+- [lib] lib/ubsan.c: don't mark __ubsan_handle_builtin_unreachable as noreturn (Jerome Marchand) [1571628]
+- [include] netfilter: avoid erronous array bounds warning (Jerome Marchand) [1571628]
+- [x86] x86/mm/KASLR: Compute the size of the vmemmap section properly (Baoquan He) [1669076]
+- [security] selinux: fix empty write to keycreate file (Ondrej Mosnacek) [1719067]
+- [netdrv] net: aquantia: fix vlans not working over bridged network (Igor Russkikh) [1718716]
+- [s390] s390/jump_label: replace stop_machine with smp_call_function (Philipp Rudo) [1722161]
+- [s390] s390/dumpstack: print psw mask and address again (Philipp Rudo) [1722157]
+- [s390] s390/crypto: fix gcm-aes-s390 selftest failures (Philipp Rudo) [1722156]
+- [wireless] Backport mt76 drivers from linux-5.2-rc5 (Stanislaw Gruszka) [1709867 1709828]
+- [wireless] Add rtw88 driver from linux-5.2-rc5 (Stanislaw Gruszka) [1487086 1709828]
+- [wireless] Backport mt7601u driver from linux-5.2-rc5 (Stanislaw Gruszka) [1709828]
+- [wireless] Backport mwifiex driver from linux-5.2-rc2 (Stanislaw Gruszka) [1709828]
+- [wireless] Backport rtl8xxxu driver from linux-5.2-rc5 (Stanislaw Gruszka) [1709828]
+- [wireless] Backport rtlwifi drivers from linux-5.2-rc5 (Stanislaw Gruszka) [1709828]
+- [wireless] Backport ath9k driver from linux-5.2-rc5 (Stanislaw Gruszka) [1709828]
+- [wireless] Backport ath10k driver from linux-5.2-rc5 (Stanislaw Gruszka) [1709828]
+- [wireless] Backport brcm80211 drivers from linux-5.2-rc5 (Stanislaw Gruszka) [1709828]
+- [wireless] Backport iwlwifi drivers from linux-5.2-rc5 (Stanislaw Gruszka) [1696052 1662020 1662015 1650016 1650015 1650014 1650013 1622445 1494008 1494001 1709828]
+- [net] Backport mac80211 from linux-5.2-rc5 (Stanislaw Gruszka) [1709828]
+- [net] Backport core wireless code from linux-5.2-rc5 (Stanislaw Gruszka) [1709828]
+- [include] netlink: add nl_set_extack_cookie_u64() (Stanislaw Gruszka) [1709828]
+- [netdrv] r8152: Fix an error on RTL8153-BD MAC Address Passthrough support (Torez Smith) [1683883 1683882]
+- [netdrv] r8152: Add support for MAC address pass through on RTL8153-BD (Torez Smith) [1683883 1683882]
+- [netdrv] nfp: abm: fix spelling mistake "offseting" -> "offsetting" (Pablo Cascon) [1713258]
+- [netdrv] nfp: flower: remove vlan CFI bit from push vlan action (Pablo Cascon) [1713258]
+- [netdrv] nfp: flower: replace CFI with vlan present (Pablo Cascon) [1713258]
+- [netdrv] nfp: flower: remove double new line (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: fix ALU32 high bits clearance bug (Pablo Cascon) [1713258]
+- [netdrv] bpf: do not pass netdev to translate() and prepare() offload callbacks (Pablo Cascon) [1713258]
+- [netdrv] bpf: pass prog instead of env to bpf_prog_offload_verifier_prep() (Pablo Cascon) [1713258]
+- [netdrv] bpf: pass destroy() as a callback and remove its ndo_bpf subcommand (Pablo Cascon) [1713258]
+- [netdrv] bpf: pass translate() as a callback and remove its ndo_bpf subcommand (Pablo Cascon) [1713258]
+- [netdrv] bpf: call verifier_prep from its callback in struct bpf_offload_dev (Pablo Cascon) [1713258]
+- [netdrv] bpf: pass a struct with offload callbacks to bpf_offload_dev_create() (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: move nfp_bpf_analyzer_ops from verifier.c to offload.c (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: relax prog rejection through max_pkt_offset (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: double check vNIC capabilities after object sharing (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: optimise save/restore for R6~R9 based on register usage (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: fix return address from register-saving subroutine to callee (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: update fixup function for BPF-to-BPF calls support (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: account for additional stack usage when checking stack limit (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: add main logics for BPF-to-BPF calls support in nfp driver (Pablo Cascon) [1713258]
+- [netdrv] nfp: bpf: copy eBPF subprograms information from kernel verifier (Pablo Cascon) [1713258]
+- [netdrv] bpf: add verifier callback to get stack usage info for offloaded progs (Pablo Cascon) [1713258]
+
+* Wed Jul 03 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-111.el8]
+- [rpmspec] Enable kernel signing for ppc64le (Gustavo Duarte) [1504169]
+- [nvme] nvme: fix memory leak for power latency tolerance (David Milburn) [1724793]
+- [rpmspec] redhat: fix missing files for mlxsw specific self-tests (Ivan Vecera) [1724735]
+- [rpmspec] redhat: Package the signing key for s390 (Philipp Rudo) [1714194]
+- [rpmspec] redhat: Enable kernel signing for s390 (Philipp Rudo) [1714194]
+- [rpmspec] redhat: Rename secure boot sources (Philipp Rudo) [1714194]
+- [powerpc] powerpc: fix max_zone_pfns initialization (Laurent Vivier) [1706560]
+- [crypto] crypto: dh - update test for public key verification (Herbert Xu) [1722692]
+- [hid] HID: i2c-hid: Don't reset device upon system resume (Perry Yuan) [1715385]
+- [rpmspec] correct the ghost initramfs attributes (Rafael Aquini) [1678881]
+- [s390] s390/mm: fix address space detection in exception handling (Philipp Rudo) [1722160]
+- [s390] s390/zcrypt: Fix wrong dispatching for control domain CPRBs (Philipp Rudo) [1722158]
+- [virt] kvm: arm/arm64: Fix emulated ptimer irq injection (Andrew Jones) [1716383]
+- [x86] kvm/nested: mark as TechPreview on first VM creation (Vitaly Kuznetsov) [1723447]
+- [powerpc] bpf: powerpc64: add JIT support for bpf line info (Yauheni Kaliuta) [1722423]
+- [fs] cifs: add spinlock for the openFileList to cifsInodeInfo (Leif Sahlberg) [1712197]
+- [fs] cifs: fix GlobalMid_Lock bug in cifs_reconnect (Leif Sahlberg) [1716743]
+- [mm] powerpc/numa: document topology_updates_enabled, disable by default (Desnes Augusto Nunes do Rosario) [1705465]
+- [mm] powerpc/numa: improve control of topology updates (Desnes Augusto Nunes do Rosario) [1705465]
+- [kernel] bpf: decouple the lifetime of cgroup_bpf from cgroup itself (Jiri Olsa) [1656432]
+- [netdrv] USB: hso: Fix OOB memory access in hso_probe/hso_get_config_data (Torez Smith) [1689308 1666662] {CVE-2018-19985}
+- [usb] USB: check usb_get_extra_descriptor for proper size (Torez Smith) [1689308 1666662] {CVE-2018-20169}
+- [kvm] KVM: PPC: Book3S HV: Restore SPRG3 in kvmhv_p9_guest_entry() (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: Fix lockdep warning when entering guest on POWER9 (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: XIVE: Fix page offset when clearing ESB pages (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: XIVE: Take the srcu read lock when accessing memslots (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: XIVE: Do not clear IRQ data of passthrough interrupts (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: XIVE: Introduce a new mutex for the XIVE device (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: XIVE: Fix the enforced limit on the vCPU identifier (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: XIVE: Do not test the EQ flag validity when resetting (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: XIVE: Clear file mapping when device is released (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: Don't take kvm->lock around kvm_for_each_vcpu (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S: Use new mutex to synchronize access to rtas token list (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: Use new mutex to synchronize MMU setup (David Gibson) [1719524]
+- [kvm] KVM: PPC: Book3S HV: Avoid touching arch.mmu_ready in XIVE release functions (David Gibson) [1719524]
+- [mm] mm, oom: don't kill global init via memory.oom.group (Waiman Long) [1711604]
+- [mm] mm, oom: remove 'prefer children over parent' heuristic (Waiman Long) [1711604]
+- [mm] mm, oom: fix use-after-free in oom_kill_process (Waiman Long) [1711604]
+- [kernel] fork, memcg: fix crash in free_thread_stack on memcg charge fail (Waiman Long) [1711604]
+- [mm] memcg: localize memcg_kmem_enabled() check (Waiman Long) [1711604]
+- [mm] memcg, oom: notify on oom killer invocation from the charge path (Waiman Long) [1711604]
+- [mm] mm: handle no memcg case in memcg_kmem_charge() properly (Waiman Long) [1711604]
+- [kernel] mm: rework memcg kernel stack accounting (Waiman Long) [1711604]
+- [mm] mm/memcontrol.c: convert mem_cgroup_id::ref to refcount_t type (Waiman Long) [1711604]
+- [mm] memcg: remove memcg_kmem_skip_account (Waiman Long) [1711604]
+- [mm] mm/memcontrol.c: fix memory.stat item ordering (Waiman Long) [1711604]
+- [mm] mm: drain memcg stocks on css offlining (Waiman Long) [1711604]
+- [mm] mm: memcontrol: print proper OOM header when no eligible victim left (Waiman Long) [1711604]
+- [mm] mm, oom: introduce memory.oom.group (Waiman Long) [1711604]
+- [mm] mm, oom: refactor oom_kill_process() (Waiman Long) [1711604]
+- [mm] memcg: reduce memcg tree traversals for stats collection (Waiman Long) [1711604]
+- [mm] mm/vmscan.c: clear shrinker bit if there are no objects related to memcg (Waiman Long) [1711604]
+- [mm] mm: add SHRINK_EMPTY shrinker methods return value (Waiman Long) [1711604]
+- [mm] mm/vmscan.c: generalize shrink_slab() calls in shrink_node() (Waiman Long) [1711604]
+- [mm] mm/vmscan.c: iterate only over charged shrinkers during memcg shrink_slab() (Waiman Long) [1711604]
+- [mm] mm/list_lru.c: set bit in memcg shrinker bitmap on first list_lru item appearance (Waiman Long) [1711604]
+- [mm] mm/memcontrol.c: export mem_cgroup_is_root() (Waiman Long) [1711604]
+- [mm] mm/list_lru.c: pass lru argument to memcg_drain_list_lru_node() (Waiman Long) [1711604]
+- [mm] mm/list_lru: pass dst_memcg argument to memcg_drain_list_lru_node() (Waiman Long) [1711604]
+- [mm] mm/list_lru.c: add memcg argument to list_lru_from_kmem() (Waiman Long) [1711604]
+- [mm] fs: propagate shrinker::id to list_lru (Waiman Long) [1711604]
+- [fs] fs: Don't need to put list_lru into its own cacheline (Waiman Long) [1711604]
+- [fs] fs/super.c: refactor alloc_super() (Waiman Long) [1711604]
+- [mm] mm/workingset.c: refactor workingset_init() (Waiman Long) [1711604]
+- [mm] mm, memcg: assign memcg-aware shrinkers bitmap to memcg (Waiman Long) [1711604]
+- [mm] mm/memcontrol.c: move up for_each_mem_cgroup{, _tree} defines (Waiman Long) [1711604]
+- [mm] mm: assign id to every memcg-aware shrinker (Waiman Long) [1711604]
+- [mm] mm: introduce CONFIG_MEMCG_KMEM as combination of CONFIG_MEMCG && !CONFIG_SLOB (Waiman Long) [1711604]
+- [mm] mm/list_lru.c: combine code under the same define (Waiman Long) [1711604]
+- [mm] memcg, oom: move out_of_memory back to the charge path (Waiman Long) [1711604]
+- [fs] fs, mm: account buffer_head to kmemcg (Waiman Long) [1711604]
+- [fs] fs: fsnotify: account fsnotify metadata to kmemcg (Waiman Long) [1711604]
+- [include] mm: introduce mem_cgroup_put() helper (Waiman Long) [1711604]
+- [net] tcp: refine memory limit test in tcp_fragment() (Florian Westphal) [1724584]
+- [net] tcp: enforce tcp_min_snd_mss in tcp_mtu_probing() (Florian Westphal) [1719923] {CVE-2019-11479}
+- [net] tcp: add tcp_min_snd_mss sysctl (Florian Westphal) [1719923] {CVE-2019-11479}
+- [net] tipc: pass tunnel dev as NULL to udp_tunnel(6)_xmit_skb (Xin Long) [1722751]
+- [include] ip6_tunnel: allow not to count pkts on tstats by passing dev as NULL (Xin Long) [1722751]
+- [net] ip_tunnel: allow not to count pkts on tstats by setting skb's dev to NULL (Xin Long) [1722751]
+- [net] netfilter: ipv6: nf_defrag: accept duplicate fragments again (Guillaume Nault) [1717106]
+- [net] netfilter: ipv6: nf_defrag: fix leakage of unqueued fragments (Guillaume Nault) [1717106]
+- [net] ethtool: fix potential userspace buffer overflow (Paolo Abeni) [1718393]
+- [net] net-gro: fix use-after-free read in napi_gro_frags() (Paolo Abeni) [1718393]
+- [net] ethtool: Check for vlan etype or vlan tci when parsing flow_rule (Paolo Abeni) [1718393]
+- [include] test nouarg before dereferencing zerocopy pointers (Paolo Abeni) [1718393]
+- [net] avoid weird emergency message (Paolo Abeni) [1718393]
+- [net] net-gro: Fix GRO flush when receiving a GSO packet. (Paolo Abeni) [1718393]
+- [net] sock_diag: fix autoloading of the raw_diag module (Paolo Abeni) [1718393]
+- [net] make skb_partial_csum_set() more robust against overflows (Paolo Abeni) [1718393]
+- [net] packets: Always register packet sk in the same order (Paolo Abeni) [1718393]
+- [net] net-sysfs: call dev_hold if kobject_init_and_add success (Paolo Abeni) [1718393]
+- [net] gro_cells: make sure device is up in gro_cells_receive() (Paolo Abeni) [1718393]
+- [net] net-sysfs: Fix mem leak in netdev_register_kobject (Paolo Abeni) [1718393]
+- [include] avoid false positives in untrusted gso validation (Paolo Abeni) [1718393]
+- [include] net: validate untrusted gso packets without csum offload (Paolo Abeni) [1718393]
+- [net] Do not allocate page fragments that are not skb aligned (Paolo Abeni) [1718393]
+- [net] set default network namespace in init_dummy_netdev() (Paolo Abeni) [1718393]
+- [net] Fix usage of pskb_trim_rcsum (Paolo Abeni) [1718393]
+- [net] call sk_dst_reset when set SO_DONTROUTE (Paolo Abeni) [1718393]
+- [net] net, skbuff: do not prefer skb allocation fails early (Paolo Abeni) [1718393]
+- [net] ethtool: check the return value of get_regs_len (Paolo Abeni) [1718393]
+- [net] packet: copy user buffers before orphan or clone (Paolo Abeni) [1718393]
+- [net] don't keep lonely packets forever in the gro hash (Paolo Abeni) [1718393]
+- [net] net-gro: reset skb->pkt_type in napi_reuse_skb() (Paolo Abeni) [1718393]
+- [net] flow_dissector: do not dissect l4 ports for fragments (Paolo Abeni) [1718393]
+- [net] net-ethtool: ETHTOOL_GUFO did not and should not require CAP_NET_ADMIN (Paolo Abeni) [1718393]
+- [net] tipc: fix modprobe tipc failed after switch order of device registration (Jon Maloy) [1718064]
+- [net] tipc: switch order of device registration to fix a crash (Jon Maloy) [1718064]
+- [net] tipc: fix hanging clients using poll with EPOLLOUT flag (Jon Maloy) [1718064]
+- [net] tipc: fix missing Name entries due to half-failover (Jon Maloy) [1718064]
+- [net] tipc: remove rcu_read_unlock() left in tipc_udp_recv() (Jon Maloy) [1718064]
+- [net] tipc: tipc_udp_recv() cleanup vs rcu verbs (Jon Maloy) [1718064]
+- [net] tipc: introduce new socket option TIPC_SOCK_RECVQ_USED (Jon Maloy) [1718064]
+- [net] tipc: set sysctl_tipc_rmem and named_timeout right range (Jon Maloy) [1718064]
+- [net] tipc: fix link established but not in session (Jon Maloy) [1718064]
+- [net] tipc: use standard write_lock & unlock functions when creating node (Jon Maloy) [1718064]
+- [net] tipc: missing entries in name table of publications (Jon Maloy) [1718064]
+- [net] tipc: adapt link failover for new Gap-ACK algorithm (Jon Maloy) [1718064]
+- [net] tipc: reduce duplicate packets for unicast traffic (Jon Maloy) [1718064]
+- [net] tipc: improve TIPC throughput by Gap ACK blocks (Jon Maloy) [1718064]
+- [net] tipc: add NULL pointer check (Jon Maloy) [1718064]
+- [net] tipc: fix return value check in tipc_mcast_send_sync() (Jon Maloy) [1718064]
+- [net] tipc: fix a null pointer deref (Jon Maloy) [1718064]
+- [net] tipc: fix use-after-free in tipc_sk_filter_rcv (Jon Maloy) [1718064]
+- [net] tipc: smooth change between replicast and broadcast (Jon Maloy) [1718064]
+- [net] tipc: introduce new capability flag for cluster (Jon Maloy) [1718064]
+- [net] tipc: support broadcast/replicast configurable for bc-link (Jon Maloy) [1718064]
+- [net] sched: avoid double free on matchall reoffload (Ivan Vecera) [1688236 1687456]
+- [net] taprio: add null check on sched_nest to avoid potential null pointer dereference (Ivan Vecera) [1688236 1687456]
+- [net] nfp: flower: remove unused index from nfp_fl_pedit() (Ivan Vecera) [1688236 1687456]
+- [net] mlx5e: Fix calling wrong function to get inner vlan key and mask (Ivan Vecera) [1688236 1687456]
+- [net] flow_offload: support CVLAN match (Ivan Vecera) [1688236 1687456]
+- [net] nfp: flower: fix masks for tcp and ip flags fields (Ivan Vecera) [1688236 1687456]
+- [net] sched: use the hardware intermediate representation for matchall (Ivan Vecera) [1688236 1687456]
+- [net] sched: add sample action to the hardware intermediate representation (Ivan Vecera) [1688236 1687456]
+- [net] cls_cgroup: avoid panic when receiving a packet before filter set (Ivan Vecera) [1688236 1687456]
+- [net] cls_matchall: avoid panic when receiving a packet before filter set (Ivan Vecera) [1688236 1687456]
+- [net] add a generic tracepoint for TX queue timeout (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: use struct_size() helper (Ivan Vecera) [1688236 1687456]
+- [net] taprio: Add support for cycle-time-extension (Ivan Vecera) [1688236 1687456]
+- [net] taprio: Add support for setting the cycle-time manually (Ivan Vecera) [1688236 1687456]
+- [net] taprio: Add support adding an admin schedule (Ivan Vecera) [1688236 1687456]
+- [net] taprio: Fix potencial use of invalid memory during dequeue() (Ivan Vecera) [1688236 1687456]
+- [net] sched: taprio: Fix taprio_dequeue() (Ivan Vecera) [1688236 1687456]
+- [net] sched: taprio: Fix taprio_peek() (Ivan Vecera) [1688236 1687456]
+- [net] sched: taprio: Remove should_restart_cycle() (Ivan Vecera) [1688236 1687456]
+- [net] sched: taprio: Refactor taprio_get_start_time() (Ivan Vecera) [1688236 1687456]
+- [net] sched: taprio: Remove pointless variable assigment (Ivan Vecera) [1688236 1687456]
+- [net] tc_act: drop include of module.h from tc_ife.h (Ivan Vecera) [1688236 1687456]
+- [net] fib: drop include of module.h from fib_notifier.h (Ivan Vecera) [1688236 1687456]
+- [net] ife: drop include of module.h from net/ife.h (Ivan Vecera) [1688236 1687456]
+- [net] psample: drop include of module.h from psample.h (Ivan Vecera) [1688236 1687456]
+- [net] sched: taprio: fix build without 64bit div (Ivan Vecera) [1688236 1687456]
+- [net] revert: "net: sched: put back q.qlen into a single location" (Ivan Vecera) [1688236 1687456]
+- [net] sched: when clearing NOLOCK, clear TCQ_F_CPUSTATS, too (Ivan Vecera) [1688236 1687456]
+- [net] sched: always do stats accounting according to TCQ_F_CPUSTATS (Ivan Vecera) [1688236 1687456]
+- [net] sched: prefer qdisc_is_empty() over direct qlen access (Ivan Vecera) [1688236 1687456]
+- [net] caif: avoid using qdisc_qlen() (Ivan Vecera) [1688236 1687456]
+- [net] sched: cbs: fix port_rate miscalculation (Ivan Vecera) [1688236 1687456]
+- [net] sched: taprio: fix picos_per_byte miscalculation (Ivan Vecera) [1688236 1687456]
+- [net] selftests: add a tc matchall test case (Ivan Vecera) [1688236 1687456]
+- [net] sch_cake: Make sure we can write the IP header before changing DSCP bits (Ivan Vecera) [1688236 1687456]
+- [net] sch_cake: Use tc_skb_protocol() helper for getting packet protocol (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_sample: fix divide by zero in the traffic path (Ivan Vecera) [1688236 1687456]
+- [net] sched: don't set tunnel for decap action (Ivan Vecera) [1688236 1687456]
+- [net] sched: introduce and use qdisc tree flush/purge helpers (Ivan Vecera) [1688236 1687456]
+- [net] sched: introduce and use qstats read helpers (Ivan Vecera) [1688236 1687456]
+- [net] sched: fix ->get helper of the matchall cls (Ivan Vecera) [1688236 1687456]
+- [net] sched: Kconfig: update reference link for PIE (Ivan Vecera) [1688236 1687456]
+- [net] dev: introduce support for sch BYPASS for lockless qdisc (Ivan Vecera) [1688236 1687456]
+- [net] sched: add empty status flag for NOLOCK qdisc (Ivan Vecera) [1688236 1687456]
+- [net] sched: fix cleanup NULL pointer exception in act_mirr (Ivan Vecera) [1688236 1687456]
+- [net] sched: let actions use RCU to access 'goto_chain' (Ivan Vecera) [1688236 1687456]
+- [net] sched: don't dereference a->goto_chain to read the chain index (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_vlan: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_tunnel_key: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_skbmod: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_skbedit: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_simple: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_sample: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_police: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_pedit: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_nat: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_connmark: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_mirred: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_ife: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_gact: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_csum: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_bpf: validate the control action inside init() (Ivan Vecera) [1688236 1687456]
+- [net] sched: prepare TC actions to properly validate the control action (Ivan Vecera) [1688236 1687456]
+- [net] sch_cake: Interpret fwmark parameter as a bitmask (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: return correct value for *notify* functions (Ivan Vecera) [1688236 1687456]
+- [net] sched: fix potential use-after-free in __tcf_chain_put() (Ivan Vecera) [1688236 1687456]
+- [net] sched: flower: insert new filter to idr after setting its mask (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_tunnel_key: Fix double free dst_cache (Ivan Vecera) [1688236 1687456]
+- [net] sched: avoid unused-label warning (Ivan Vecera) [1688236 1687456]
+- [net] sch_cake: Simplify logic in cake_select_tin() (Ivan Vecera) [1688236 1687456]
+- [net] sch_cake: Permit use of connmarks as tin classifiers (Ivan Vecera) [1688236 1687456]
+- [net] sch_cake: Make the dual modes fairer (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: Allow test cases to be skipped (Ivan Vecera) [1688236 1687456]
+- [net] sched: put back q.qlen into a single location (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: avoid slow division in drop probability decay (Ivan Vecera) [1688236 1687456]
+- [net] netem: fix skb length BUG_ON in __skb_to_sgvec (Ivan Vecera) [1688236 1687456]
+- [net] revert "net: sched: fw: don't set arg->stop in fw_walk() when empty" (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: fix 64-bit division (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: gitignore, ignore local tdc config file (Ivan Vecera) [1688236 1687456]
+- [net] sched: fix typo in walker_check_empty() (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: fix mistake in reference link (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_csum: Fix csum calc for tagged packets (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: update references (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: add derandomization mechanism (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: add more cases to auto-tune alpha and beta (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: change initial value of pie_vars->burst_time (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: change default value of pie_params->tupdate (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: change default value of pie_params->target (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: change value of QUEUE_THRESHOLD (Ivan Vecera) [1688236 1687456]
+- [net] sched: don't release block->lock when dumping chains (Ivan Vecera) [1688236 1687456]
+- [net] sched: set dedicated tcf_walker flag when tp is empty (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_tunnel_key: fix metadata handling (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_tunnel_key: fix NULL pointer dereference during init (Ivan Vecera) [1688236 1687456]
+- [net] Use RCU_POINTER_INITIALIZER() to init static variable (Ivan Vecera) [1688236 1687456]
+- [net] selftests: concurrency: add test to verify parallel replace/delete (Ivan Vecera) [1688236 1687456]
+- [net] selftests: concurrency: add test to verify parallel add/delete (Ivan Vecera) [1688236 1687456]
+- [net] selftests: concurrency: add test to verify concurrent delete (Ivan Vecera) [1688236 1687456]
+- [net] selftests: concurrency: add test to verify concurrent replace (Ivan Vecera) [1688236 1687456]
+- [net] selftests: concurrency: add test to verify parallel rules replace (Ivan Vecera) [1688236 1687456]
+- [net] selftests: concurrency: add test to verify parallel rules deletion (Ivan Vecera) [1688236 1687456]
+- [net] selftests: concurrency: add test to verify parallel rules insertion (Ivan Vecera) [1688236 1687456]
+- [net] selftests: tdc_batch.py: add options needed for concurrency tests (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_skbedit: fix refcount leak when replace fails (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_ipt: fix refcount leak when replace fails (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_tunnel_key: Add dst_cache support (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: initialize net pointer inside tcf_exts_init() (Ivan Vecera) [1687456 1688236]
+- [net] sched: potential NULL dereference in tcf_block_find() (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: fix a memory leak in cls_tcindex (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: fix a race condition in tcindex_destroy() (Ivan Vecera) [1688236 1687456]
+- [net] sched: using kfree_rcu() to simplify the code (Ivan Vecera) [1688236 1687456]
+- [net] sched: route: don't set arg->stop in route4_walk() when empty (Ivan Vecera) [1688236 1687456]
+- [net] sched: fw: don't set arg->stop in fw_walk() when empty (Ivan Vecera) [1688236 1687456]
+- [net] sched: cgroup: verify that filter is not NULL during walk (Ivan Vecera) [1688236 1687456]
+- [net] sched: matchall: verify that filter is not NULL in mall_walk() (Ivan Vecera) [1688236 1687456]
+- [net] sched: remove duplicated include from cls_api.c (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: fix two more memory leaks in cls_tcindex (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: fix a memory leak in cls_tcindex (Ivan Vecera) [1688236 1687456]
+- [net] sched: unlock rules update API (Ivan Vecera) [1688236 1687456]
+- [net] sched: refactor tcf_block_find() into standalone functions (Ivan Vecera) [1688236 1687456]
+- [net] sched: add flags to Qdisc class ops struct (Ivan Vecera) [1688236 1687456]
+- [net] sched: extend proto ops to support unlocked classifiers (Ivan Vecera) [1688236 1687456]
+- [net] sched: extend proto ops with 'put' callback (Ivan Vecera) [1688236 1687456]
+- [net] sched: track rtnl lock status when validating extensions (Ivan Vecera) [1688236 1687456]
+- [net] sched: prevent insertion of new classifiers during chain flush (Ivan Vecera) [1688236 1687456]
+- [net] sched: refactor tp insert/delete for concurrent execution (Ivan Vecera) [1688236 1687456]
+- [net] sched: traverse classifiers in chain with tcf_get_next_proto() (Ivan Vecera) [1688236 1687456]
+- [net] sched: introduce reference counting for tcf_proto (Ivan Vecera) [1688236 1687456]
+- [net] sched: protect filter_chain list with filter_chain_lock mutex (Ivan Vecera) [1688236 1687456]
+- [net] sched: protect chain template accesses with block lock (Ivan Vecera) [1688236 1687456]
+- [net] sched: traverse chains in block with tcf_get_next_chain() (Ivan Vecera) [1688236 1687456]
+- [net] sched: protect block->chain0 with block->lock (Ivan Vecera) [1688236 1687456]
+- [net] sched: refactor tc_ctl_chain() to use block->lock (Ivan Vecera) [1688236 1687456]
+- [net] sched: protect chain->explicitly_created with block->lock (Ivan Vecera) [1688236 1687456]
+- [net] sched: protect block state with mutex (Ivan Vecera) [1688236 1687456]
+- [net] Change TCA_ACT_* to TCA_ID_* to match that of TCA_ID_POLICE (Ivan Vecera) [1688236 1687456]
+- [net] Move all TC actions identifiers to one place (Ivan Vecera) [1688236 1687456]
+- [net] sched: use struct_size() helper (Ivan Vecera) [1688236 1687456]
+- [net] documentation: bring operstate documentation up-to-date (Ivan Vecera) [1688236 1687456]
+- [net] cls_flower: Remove filter from mask before freeing it (Ivan Vecera) [1688236 1687456]
+- [net] cls_flower: don't expose TC actions to drivers anymore (Ivan Vecera) [1688236 1687456]
+- [net] drivers: net: use flow action infrastructure (Ivan Vecera) [1688236 1687456]
+- [net] flow_offload: add flow_rule and flow_match structures and use them (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: add performance counters for basic filter (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: add hit counter for matchall (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_flower: allocate mask dynamically in fl_change() (Ivan Vecera) [1688236 1687456]
+- [net] selftests: tc-testing: fix parsing of ife type (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: refetch skb protocol for each filter (Ivan Vecera) [1688236 1687456]
+- [net] sched: act_tunnel_key: fix memory leak in case of action replace (Ivan Vecera) [1688236 1687456]
+- [net] sch_api: Change signature of qdisc_tree_reduce_backlog() to use ints (Ivan Vecera) [1688236 1687456]
+- [net] sch_cake: Correctly update parent qlen when splitting GSO packets (Ivan Vecera) [1688236 1687456]
+- [net] sched: Fix detection of empty queues in child qdiscs (Ivan Vecera) [1688236 1687456]
+- [net] sched: Avoid dereferencing skb pointer after child enqueue (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_flower: Remove old entries from rhashtable (Ivan Vecera) [1688236 1687456]
+- [net] sched: simplify the qdisc_leaf code (Ivan Vecera) [1688236 1687456]
+- [net] selftests: Fix test errors related to lib.mk khdr target (Ivan Vecera) [1688236 1687456]
+- [net] net_sched: fold tcf_block_cb_call() into tc_setup_cb_call() (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_flower: Reject duplicated rules also under skip_sw (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: gitignore, ignore generated test results (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: Implement the TdcResults module in tdc (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: Add new TdcResults module (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: Add command timeout feature to tdc (Ivan Vecera) [1688236 1687456]
+- [net] netem: use a list in addition to rbtree (Ivan Vecera) [1688236 1687456]
+- [net] Prevent invalid access to skb->prev in __qdisc_drop_all (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: tdc.py: Guard against lack of returncode in executed command (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: tdc.py: ignore errors when decoding stdout/stderr (Ivan Vecera) [1688236 1687456]
+- [net] etf: Drop all expired packets (Ivan Vecera) [1688236 1687456]
+- [net] etf: Split timersortedlist_erase() (Ivan Vecera) [1688236 1687456]
+- [net] etf: Use cached rb_root (Ivan Vecera) [1688236 1687456]
+- [net] etf: Cancel timer if there are no pending skbs (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_flower: Classify packets using port ranges (Ivan Vecera) [1688236 1687456]
+- [net] act_mirred: clear skb->tstamp on redirect (Ivan Vecera) [1688236 1687456]
+- [net] core: use __vlan_hwaccel helpers (Ivan Vecera) [1688236 1687456]
+- [net] sched: Replace call_rcu_bh() and rcu_barrier_bh() (Ivan Vecera) [1688236 1687456]
+- [net] sched: Remove egdev mechanism (Ivan Vecera) [1688236 1687456]
+- [net] sched: avoid writing on noop_qdisc (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: simplify the hell out u32_delete() emptiness check (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: keep track of knodes count in tc_u_common (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: get rid of tp_c (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: the tp_c argument of u32_set_parms() is always tp->data (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: pass tc_u_common to u32_set_parms() instead of tc_u_hnode (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: clean tc_u_common hashtable (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: get rid of tc_u_common ->rcu (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: get rid of tc_u_knode ->tp (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: get rid of unused argument of u32_destroy_key() (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: make sure that divisor is a power of 2 (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: disallow linking to root hnode (Ivan Vecera) [1688236 1687456]
+- [net] sched: cls_u32: mark root hnode explicitly (Ivan Vecera) [1688236 1687456]
+- [net] sched: pie: fix coding style issues (Ivan Vecera) [1688236 1687456]
+- [net] treewide: Replace more open-coded allocation size multiplications (Ivan Vecera) [1688236 1687456]
+- [net] sched: remove unused helpers (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: use a plugin to build eBPF program (Ivan Vecera) [1688236 1687456]
+- [net] tc-testing: fix build of eBPF programs (Ivan Vecera) [1688236 1687456]
+- [net] tc: Add support for configuring the taprio scheduler (Ivan Vecera) [1688236 1687456]
+- [documentation] KVM: arm64: Clarify access behaviour for out-of-range SVE register slice IDs (Andrew Jones) [1550499]
+- [documentation] KVM: Clarify KVM_{SET,GET}_ONE_REG error code documentation (Andrew Jones) [1550499]
+- [documentation] KVM: Clarify capability requirements for KVM_ARM_VCPU_FINALIZE (Andrew Jones) [1550499]
+- [kvm] KVM: arm/arm64: Clean up vcpu finalization function parameter naming (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: Explain validity checks in set_sve_vls() (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: Simplify KVM_REG_ARM64_SVE_VLS array sizing (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: WARN when avoiding divide-by-zero in sve_reg_to_region() (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: Make register ioctl access errors more consistent (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: Miscellaneous tidyups in guest.c (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: Clean up UAPI register ID definitions (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: sys_regs: Demote redundant vcpu_has_sve() checks to WARNs (Andrew Jones) [1550499]
+- [virt] KVM: arm/arm64: Demote kvm_arm_init_arch_resources() to just set up SVE (Andrew Jones) [1550499]
+- [arm64] arm64/sve: Clarify vq map semantics (Andrew Jones) [1550499]
+- [kvm] arm64: KVM: Fix system register enumeration (Andrew Jones) [1550499]
+- [documentation] KVM: arm64/sve: Document KVM API extensions for SVE (Andrew Jones) [1550499]
+- [documentation] KVM: Document errors for KVM_GET_ONE_REG and KVM_SET_ONE_REG (Andrew Jones) [1550499]
+- [arm64] KVM: arm64: Add a capability to advertise SVE support (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: Allow userspace to enable SVE for vcpus (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: Add pseudo-register for the guest's vector lengths (Andrew Jones) [1550499]
+- [virt] KVM: arm/arm64: Add KVM_ARM_VCPU_FINALIZE ioctl (Andrew Jones) [1550499]
+- [virt] KVM: arm/arm64: Add hook for arch-specific KVM initialisation (Andrew Jones) [1550499]
+- [arm64] arm64/sve: In-kernel vector length availability query interface (Andrew Jones) [1550499]
+- [kvm] KVM: arm64: Enumerate SVE register indices for KVM_GET_REG_LIST (Andrew Jones) [1550499]
+- [arm64] KVM: arm64/sve: Add SVE support to register access ioctl interface (Andrew Jones) [1550499]
+- [kvm] KVM: arm64: Reject ioctl access to FPSIMD V-regs on SVE vcpus (Andrew Jones) [1550499]
+- [kvm] KVM: arm64: Factor out core register ID enumeration (Andrew Jones) [1550499]
+- [kvm] KVM: arm64: Add missing #include of <linux/string.h> in guest.c (Andrew Jones) [1550499]
+- [include] KVM: Allow 2048-bit register access via ioctl interface (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: Context switch the SVE registers (Andrew Jones) [1550499]
+- [kvm] KVM: arm64/sve: System register context switch and access support (Andrew Jones) [1550499]
+- [kvm] KVM: arm64: Support runtime sysreg visibility filtering (Andrew Jones) [1550499]
+- [kvm] KVM: arm64: Propagate vcpu into read_id_reg() (Andrew Jones) [1550499]
+- [arm64] KVM: arm64: Add a vcpu flag to control SVE visibility for the guest (Andrew Jones) [1550499]
+- [arm64] arm64/sve: Enable SVE state tracking for non-task contexts (Andrew Jones) [1550499]
+- [arm64] arm64/sve: Check SVE virtualisability (Andrew Jones) [1550499]
+- [arm64] arm64/sve: Clarify role of the VQ map maintenance functions (Andrew Jones) [1550499]
+- [arm64] KVM: arm64: Add missing #includes to kvm_host.h (Andrew Jones) [1550499]
+- [kvm] KVM: arm64: Refactor kvm_arm_num_regs() for easier maintenance (Andrew Jones) [1550499]
+- [arm64] KVM: arm64: Delete orphaned declaration for __fpsimd_enabled() (Andrew Jones) [1550499]
+- [arm64] arm64: fpsimd: Always set TIF_FOREIGN_FPSTATE on task state flush (Andrew Jones) [1550499]
+- [documentation] KVM: Documentation: Document arm64 core registers in detail (Andrew Jones) [1550499]
+- [arm64] arm64/sve: Disentangle <uapi/asm/ptrace.h> from <uapi/asm/sigcontext.h> (Andrew Jones) [1550499]
+- [arm64] arm64/sve: ptrace: Fix SVE_PT_REGS_OFFSET definition (Andrew Jones) [1550499]
+
+* Fri Jun 28 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-110.el8]
+- [fs] xfs: fix reporting supported extra file attributes for statx() (Bill O'Donnell) [1721034]
+- [scsi] scsi: hpsa: correct ioaccel2 chaining (Joseph Szczypek) [1706121]
+- [powerpc] powerpc/pseries/mobility: rebuild cacheinfo hierarchy post-migration (Steve Best) [1720929]
+- [powerpc] powerpc/pseries/mobility: prevent cpu hotplug during DT update (Steve Best) [1720929]
+- [powerpc] powerpc/cacheinfo: add cacheinfo_teardown, cacheinfo_rebuild (Steve Best) [1720929]
+- [kernel] cpuset: restore sanity to cpuset_cpus_allowed_fallback() (Joel Savitz) [1677311]
+
+* Wed Jun 26 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-109.el8]
+- [scripts] scripts: override locale from environment when running recordmcount.pl (Prarit Bhargava) [1721515]
+- [netdrv] net: aquantia: fix wol configuration not applied sometimes (Igor Russkikh) [1662198]
+- [x86] x86/resctrl: Prevent NULL pointer dereference when local MBM is disabled (Prarit Bhargava) [1721208]
+- [fs] inotify: Fix fsnotify_mark refcount leak in inotify_update_existing_watch() (Miklos Szeredi) [1451863]
+- [fs] inotify: Fix fd refcount leak in inotify_add_watch(). (Miklos Szeredi) [1451863]
+- [fs] fanotify: Use inode_is_open_for_write (Miklos Szeredi) [1451863]
+- [fs] fanotify: Make sure to check event_len when copying (Miklos Szeredi) [1451863]
+- [fs] fsnotify/fdinfo: include fdinfo.h for inotify_show_fdinfo() (Miklos Szeredi) [1451863]
+- [include] fanotify: introduce new event mask FAN_OPEN_EXEC_PERM (Miklos Szeredi) [1451863]
+- [include] fsnotify: refactor fsnotify_parent()/fsnotify() paired calls when event is on path (Miklos Szeredi) [1451863]
+- [include] fanotify: introduce new event mask FAN_OPEN_EXEC (Miklos Szeredi) [1451863]
+- [fs] fanotify: return only user requested event types in event mask (Miklos Szeredi) [1451863]
+- [fs] fanotify: support reporting thread id instead of process id (Miklos Szeredi) [1451863]
+- [fs] fanotify: add BUILD_BUG_ON() to count the bits of fanotify constants (Miklos Szeredi) [1451863]
+- [fs] fsnotify: convert runtime BUG_ON() to BUILD_BUG_ON() (Miklos Szeredi) [1451863]
+- [fs] fanotify: deprecate uapi FAN_ALL_* constants (Miklos Szeredi) [1451863]
+- [fs] fanotify: simplify handling of FAN_ONDIR (Miklos Szeredi) [1451863]
+- [include] fanotify: fix collision of internal and uapi mark flags (Miklos Szeredi) [1451863]
+- [fs] fanotify: store fanotify_init() flags in group's fanotify_data (Miklos Szeredi) [1451863]
+- [fs] fanotify: clean up handling of "mark type" (Miklos Szeredi) [1451863]
+- [fs] fsnotify: fix false positive warning on inode delete (Miklos Szeredi) [1451863]
+- [include] inotify: Add flag IN_MASK_CREATE for inotify_add_watch() (Miklos Szeredi) [1451863]
+- [fs] fanotify: factor out helpers to add/remove mark (Miklos Szeredi) [1451863]
+- [fs] fsnotify: add helper to get mask from connector (Miklos Szeredi) [1451863]
+- [fs] fsnotify: let connector point to an abstract object (Miklos Szeredi) [1451863]
+- [fs] fsnotify: pass connp and object type to fsnotify_add_mark() (Miklos Szeredi) [1451863]
+- [fs] fsnotify: use typedef fsnotify_connp_t for brevity (Miklos Szeredi) [1451863]
+- [powerpc] powerpc/pseries: Fix oops in hotplug memory notifier (Steve Best) [1720932]
+- [netdrv] net: aquantia: tcp checksum 0xffff being handled incorrectly (Igor Russkikh) [1719176]
+- [netdrv] net: aquantia: fix LRO with FCS error (Igor Russkikh) [1719176]
+- [netdrv] net: aquantia: check rx csum for all packets in LRO session (Igor Russkikh) [1719176]
+- [netdrv] net: aquantia: tx clean budget logic error (Igor Russkikh) [1719176]
+- [security] selinux: log raw contexts as untrusted strings (Ondrej Mosnacek) [1719666]
+- [kernel] audit: add saddr_fam filter field (Richard Guy Briggs) [1715679]
+- [kernel] audit: re-structure audit field valid checks (Richard Guy Briggs) [1715679]
+- [kernel] audit: rename FILTER_TYPE to FILTER_EXCLUDE (Richard Guy Briggs) [1715679]
+- [kernel] audit: allow other filter list types for AUDIT_EXE (Richard Guy Briggs) [1715679]
+- [documentation] ovl: doc: add non-standard corner cases (Miklos Szeredi) [1718370]
+- [fs] ovl: support the FS_IOC_FSETXATTR ioctls (Miklos Szeredi) [1718370]
+- [fs] ovl: relax WARN_ON() for overlapping layers use case (Miklos Szeredi) [1718370]
+- [fs] ovl: check the capability before cred overridden (Miklos Szeredi) [1718370]
+- [fs] ovl: do not generate duplicate fsnotify events for "fake" path (Miklos Szeredi) [1718370]
+- [fs] ovl: support stacked SEEK_HOLE/SEEK_DATA (Miklos Szeredi) [1718370]
+- [fs] ovl: fix missing upper fs freeze protection on copy up for ioctl (Miklos Szeredi) [1718370]
+- [fs] fuse: fallocate: fix return with locked inode (Miklos Szeredi) [1717457]
+- [fs] fuse: honor RLIMIT_FSIZE in fuse_file_fallocate (Miklos Szeredi) [1717457]
+- [fs] fuse: decrement NR_WRITEBACK_TEMP on the right page (Miklos Szeredi) [1717457]
+- [fs] fuse: handle zero sized retrieve correctly (Miklos Szeredi) [1717457]
+- [fs] fuse: continue to send FUSE_RELEASEDIR when FUSE_OPEN returns ENOSYS (Miklos Szeredi) [1717457]
+
+* Mon Jun 24 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-108.el8]
+- [mm] mm/mincore.c: make mincore() more conservative (Rafael Aquini) [1664203] {CVE-2019-5489}
+- [x86] x86/umip: Make the UMIP activated message generic (David Arcari) [1720014]
+- [x86] x86/umip: Print UMIP line only once (David Arcari) [1720014]
+- [crypto] crypto: vmac - separate tfm and request context (Desnes Augusto Nunes do Rosario) [1702702]
+- [crypto] crypto: ccp - Update driver messages to remove some confusion (David Arcari) [1719026]
+- [block] blk-mq: fix hang caused by freeze/unfreeze sequence (Ming Lei) [1719835]
+- [block] blk-mq: remove WARN_ON(!q->elevator) from blk_mq_sched_free_requests (Ming Lei) [1719835]
+- [block] block: free sched's request pool in blk_cleanup_queue (Ming Lei) [1719835]
+- [block] block: don't protect generic_make_request_checks with blk_queue_enter (Ming Lei) [1719835]
+- [block] block: move blk_exit_queue into __blk_release_queue (Ming Lei) [1719835]
+- [block] block: print offending values when cloned rq limits are exceeded (Ming Lei) [1719816]
+- [block] block: fix page leak when merging to same page (Ming Lei) [1662864]
+- [x86] RHEL: fix build of spec_ctrl.h for older assemblers (Jeff Moyer) [1719406]
+- [drm] drm/amd/display: Initialize stream_update with memset (Jeff Moyer) [1719406]
+- [mm] mm/gup: finish consolidating error handling (Jeff Moyer) [1641506]
+- [mm] mm/gup: cache dev_pagemap while pinning pages (Jeff Moyer) [1641506]
+- [rpmspec] kernel packaging: Fix extra namespace collision (Prarit Bhargava) [1699868]
+- [rpmspec] redhat: kernel-selftests-internal: add dependencies (Jiri Benc) [1717943]
+- [kernel] kernel/module.c: Only return -EEXIST for modules that have finished loading (Prarit Bhargava) [1666939]
+- [input] Input: elantech - remove P52 and P72 from SMBus blacklist (Benjamin Tissoires) [1703157]
+- [input] Input: elan_i2c - handle physical middle button (Benjamin Tissoires) [1703157]
+- [input] Input: elantech/SMBus - export all capabilities from the PS/2 node (Benjamin Tissoires) [1703157]
+- [input] Input: elan_i2c - do not query the info if they are provided (Benjamin Tissoires) [1703157]
+- [input] Input: elantech - detect middle button based on firmware version (Benjamin Tissoires) [1703157]
+- [input] Input: elantech - add helper function elantech_is_buttonpad() (Benjamin Tissoires) [1703157]
+- [input] Input: elantech - query the min/max information beforehand too (Benjamin Tissoires) [1703157]
+- [input] Input: elantech - enable middle button support on 2 ThinkPads (Benjamin Tissoires) [1703157]
+- [input] Input: elan_i2c - increment wakeup count if wake source (Benjamin Tissoires) [1703157]
+- [kernel] timekeeping: Update multiplier when NTP frequency is set directly (Prarit Bhargava) [1714164]
+- [fs] xfs: fix use after free in buf log item unlock assert (Brian Foster) [1666150]
+- [fs] xfs: add missing error check in xfs_prepare_shift() (Brian Foster) [1699214]
+- [documentation] Documentation: Fix grammatical error in sysctl/fs.txt & clarify negative dentry (Waiman Long) [1673955]
+- [fs] fs/dcache: Track & report number of negative dentries (Waiman Long) [1673955]
+- [fs] fs/dcache: Fix incorrect nr_dentry_unused accounting in shrink_dcache_sb() (Waiman Long) [1673955]
+- [net] tcp: tcp_fragment() should apply sane memory limits (Florian Westphal) [1719858] {CVE-2019-11478}
+- [net] tcp: limit payload size of sacked skbs (Florian Westphal) [1719603] {CVE-2019-11477}
+
+* Fri Jun 14 2019 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-107.el8]
+- [tools] kvm: selftests: make hyperv_cpuid test pass on AMD (Vitaly Kuznetsov) [1718501]
+- [scsi] vmw_pvscsi: Fixed to work with SG_CHAIN (Ewan Milne) [1717278]
+- [x86] mark AMD Rome processors supported (David Arcari) [1520002]
+- [fs] ext4: zero out the unused memory region in the extent tree block (Lukas Czerner) [1715276] {CVE-2019-11833}
+- [s390] s390/smp: Fix calling smp_call_ipl_cpu() from ipl CPU (David Hildenbrand) [1715041]
+- [vfio] vfio/type1: Limit DMA mappings per container (Alex Williamson) [1695592] {CVE-2019-3882}
+- [tools] selftests/powerpc: Remove Power9 paste tests (Diego Domingos) [1662374]
+- [tools] selftests/powerpc: Remove Power9 copy_unaligned test (Diego Domingos) [1662374]
+- [tools] selftests/powerpc: Fix ptrace tm failure (Diego Domingos) [1662374]
+- [netdrv] mlxsw: core: Prevent reading unsupported slave address from SFP EEPROM (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Prevent QSFP module initialization for old hardware (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Fix autoneg status in ethtool (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: pci: Reincrease PCI reset timeout (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Put MC TCs into DWRR mode (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Add a multicast pool for Spectrum-2 (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Test VRF MAC vetoing (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Do not check VRF MAC address (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Do not use WQ_MEM_RECLAIM for mlxsw workqueue (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Do not use WQ_MEM_RECLAIM for mlxsw ordered workqueue (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Do not use WQ_MEM_RECLAIM for EMAD workqueue (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Add MDB entries in prepare phase (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: mlxsw: core: avoid -Wint-in-bool-context warning (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: minimal: Initialize base_mac (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Prevent duplication during QSFP module initialization (Ivan Vecera) [1680241]
+- [netdrv] mellanox: Switch to bitmap_zalloc() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: i2c: Extend initialization by querying resources data (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: i2c: Extend input parameters list of command API (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: i2c: Modify input parameter name in initialization API (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: i2c: Fix comment misspelling (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Move resource query API to common location (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: minimal: Add ethtool support (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: minimal: Make structures and variables names shorter (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Move ethtool module callbacks to a common location (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Make mlxsw_sp_acl_tcam_vregion_rehash() return void (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Remember where to continue rehash migration (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Allow to interrupt/continue rehash work (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Do rollback as another call to mlxsw_sp_acl_tcam_vchunk_migrate_all() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Put vchunk migrate start/end code into separate functions (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Put this_is_rollback to rehash context struct (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Rename variables in mlxsw_sp_acl_tcam_ventry_migrate() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: assign vchunk->chunk by the newly created chunk (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: assign vregion->region by the newly created region (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Push code start/end from mlxsw_sp_acl_tcam_vregion_migrate() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Push rehash start/end code into separate functions (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Introduce new rehash context struct and save hint_priv there (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Don't migrate already migrated entry (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Push rehash dw struct into rehash sub-struct (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Handle SWITCHDEV_PORT_ATTR_SET (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: acl: Use struct_size() in kzalloc() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: remove set but not used variable 'autoneg_status' (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: spectrum-2: Add massive delta rehash test (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: spectrum-2: Check migrate end trace (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add vregion migration end tracepoint (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: spectrum-2: Add IPv6 variant of simple delta rehash test (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Don't take mutex in mlxsw_sp_acl_tcam_vregion_rehash_work() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Remove RTNL lock assertions from ERP code (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Don't take rtnl lock during vregion_rehash_intrvl_set() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Introduce a mutex to guard objagg instance manipulation (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Enable vregion rehash per-profile (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Introduce mutex to guard Bloom Filter updates (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Introduce vregion mutex (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Refactor vregion association code (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Introduce a mutex to guard region list updates (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Split TCAM group structure into two (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Remove unused ops field from group structure (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add Spectrum-2 ASIC support for new port types and speeds (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add Spectrum-2 ASIC port type-speed operations (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add new port type-speed fields for PTYS register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: 80 columns wrapping change (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Rename p_eth_proto_adm to full name p_eth_proto_admin (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add port type-speed operations (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Rename port type-speed functions to ASIC specific (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Query port connector type from firmware (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Remove unsupported eth_proto_lp_advertise field in PTYS (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Remove duplicate port link mode entry (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Avoid -Wformat-truncation warnings (Ivan Vecera) [1680241]
+- [netdrv] net: Remove SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS_SUPPORT (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Reject overlarge headroom size requests (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Update port headroom configuration (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Add Spectrum-2 shared buffer configuration (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Keep mlxsw_sp_sb_mm in sb_vals (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Keep mlxsw_sp_sb_cm in sb_vals (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Keep mlxsw_sp_sb_prs in mlxsw_sp_sb_vals (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Keep mlxsw_sp_sb_pms in mlxsw_sp_sb_vals (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Keep pool descriptors in mlxsw_sp_sb_vals (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Allocate prs & pms dynamically (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add struct mlxsw_sp_sb_vals (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Change IP2ME CPU policer rate and burst size values (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: __mlxsw_sp_port_headroom_set(): Fix a use of local variable (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add some missing configuration symbols (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: fix spelling mistake "temprature" -> "temperature" (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Extend thermal module with per QSFP module thermal zones (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Allow thermal zone binding to an external cooling device (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Add QSFP module temperature label attribute to hwmon (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Extend hwmon interface with QSFP module temperature attributes (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Extend hwmon interface with fan fault attribute (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Rename cooling device (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Replace thermal temperature trips with defines (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Modify thermal zone definition (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Set different thermal polling time based on bus frequency capability (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Add API for QSFP module temperature thresholds reading (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Fan Out of Range Event Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Management Temperature Bulk Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Move QSFP EEPROM definitions to common location (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Remove unused variables (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: avoid double sourcing of lib.sh (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_flower: Fix VLAN modify action support (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Drop unnecessary WARN_ON_ONCE() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Set LAG port collector only when active (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Remove getting PORT_BRIDGE_FLAGS (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Use struct_size() in kzalloc() (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: spectrum-2: Add simple delta rehash test (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add couple of vregion rehash tracepoints (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: add "acl_region_rehash_interval" devlink param (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Implement region migration according to hints (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add multi field to PAGT register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Pass hints priv all the way to ERP code (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Implement basic ERP rehash hits creation (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Split entry struct into entry and ventry (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Split chunk struct into chunk and vchunk (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Split region struct into region and vregion (Ivan Vecera) [1680241]
+- [netdrv] lib: objagg: implement optimization hints assembly and use hints for object creation (Ivan Vecera) [1680241]
+- [netdrv] devlink: publish params only after driver init is done (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add a test for blackhole routes (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Offload blackhole routes (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: Implement ndo_get_port_parent_id() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Trace EMAD errors (Ivan Vecera) [1680241]
+- [netdrv] drivers: net: use flow action infrastructure (Ivan Vecera) [1680241]
+- [netdrv] flow_offload: add flow_rule and flow_match structures and use them (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_flower: Fix test result handling (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_bridge_1q_lag: Ignore ARP (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_bridge_1q_lag: Enable forwarding (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_bridge_1q_lag: Flush neighbors (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_vlan_bridge_1q: Fix roaming test (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_lib: Wait for tardy mirrored packets (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_changes: Fix TTL test (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Update ping limits (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_lib: Update ping limits (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Make ping timeout configurable (Ivan Vecera) [1680241]
+- [tools] selftests: spectrum-2: Add delta two masks one key test (Ivan Vecera) [1680241]
+- [tools] selftests: spectrum-2: Fix multiple_masks_test (Ivan Vecera) [1680241]
+- [tools] selftests: spectrum-2: Extend and move trace helpers (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add C-TCAM spill tracepoint (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Include delta bits into hashtable key (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Use OK instead of PASS in test output (Ivan Vecera) [1680241]
+- [tools] selftests: net: forwarding: change devlink resource support checking (Ivan Vecera) [1680241]
+- [documentation] Documentation: add devlink param file for mlxsw driver (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Add more extack messages (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Fix rul/rule typo (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Move mr_ruleset and mr_rule structs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Remove unnecessary arg on action_replace call path (Ivan Vecera) [1680241]
+- [netdrv] mlxfw: Replace license text with SPDX identifiers and adjust copyrights (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Enable VXLAN on Spectrum-2 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Add support for VXLAN on Spectrum-2 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Breakout common code to a common function (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Expose functions to create and destroy underlay RIF (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add a test case for ARP suppression (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add a test for VXLAN symmetric routing (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add a test case for ARP decapsulation (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add a test for VXLAN asymmetric routing (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add IP-in-IP GRE hierarchical topology with keys test (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add IP-in-IP GRE hierarchical topology with key test (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add IP-in-IP GRE hierarchical topology test (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add IP-in-IP GRE flat topology with keys test (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add IP-in-IP GRE flat topology with key test (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add IP-in-IP GRE flat topology test (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add IP tunneling lib (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Add GRE tunnel support for Spectrum-2 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Update tunnel decap properties (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Support RIF without device (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Change mlxsw_sp_ipip_lb_ul_vr_id() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Add underlay RIF ID support (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Mark RIF index as taken before creation (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Adjust loopback RIF configuration (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Set RIF ops per ASIC type (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Split RIF ops array for Spectrum-2 support (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add underlay egress RIF field in RTDP register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add fields to RITR - Router Interface Table Register (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add a test case for externally learned FDB entries (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Test FDB offload indication (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Do not treat static FDB entries as sticky (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Update dummy FID index (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: pci: Return error on PCI reset timeout (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: pci: Increase PCI SW reset timeout (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: pci: Ring CQ's doorbell before RDQ's (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Test veto of unsupported VXLAN FDBs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add extack messages to VXLAN FDB rejection (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: Add extack to mlxsw_sp_nve_ops.fdb_replay (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Use struct_size() in kzalloc() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl_bloom_filter: use struct_size() in kzalloc() (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add a test for VLAN deletion (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Set PVID correctly during VLAN deletion (Ivan Vecera) [1680241]
+- [net] net: bridge: Fix VLANs memory leak (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add a test case for VLAN addition error flow (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Replace error code with EINVAL (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Avoid returning errors in commit phase (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add VXLAN dependency for spectrum (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Disable lag port TX before removing it (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Remove ASSERT_RTNL()s in module removal flow (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add cleanup after C-TCAM update error condition (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: drop useless LIST_HEAD (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add router test with VID 1 (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Adjust test regarding VID 1 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Remove limitation regarding VID 1 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Switch to VID 4095 as default VID (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add an helper function to cleanup VLAN entries (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Store pointer to default port VLAN in port struct (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Allow controlling destruction of default port VLAN (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Set PVID during port initialization (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Replace hard-coded default VID with a define (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add a test case for L3 VNI (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Do not force specific configuration order (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add rtnetlink tests (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Hold a reference on RIF's netdev (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Make RIF deletion more robust (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Propagate 'struct mlxsw_sp' further (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Properly cleanup LAG uppers when removing port from LAG (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Remove reference count from VLAN entries (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Handle VLAN device unlinking (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Remove unused function (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Do not destroy RIFs based on FID's reference count (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Sanitize VLAN interface's uppers (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Fix memory leak upon driver reload (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add trap for decapsulated ARP packets (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Increase timeout during firmware flash process (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Update the supported firmware to version 13.1910.622 (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add Bloom delta test (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add Bloom filter complex test (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add Bloom filter simple test (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Activate Bloom filter (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Set master RP index on transition to eRP (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Update Bloom filter on eRP transitions (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Set A-TCAM rules in Bloom filter (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add Bloom filter update (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add Bloom filter handling (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Introduce Bloom filter (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: resources: Add Spectrum-2 Bloom filter resource (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Policy Engine Algorithmic Bloom Filter Entries Register (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Test FID RIF MAC vetoing (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Test RIF MAC vetoing (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Veto unsupported RIF MAC addresses (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add mlxsw_sp.mac_mask (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Generalize mlxsw_sp_netdevice_router_port_event() (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: extack: Test VLAN add on a port device (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: extack: Test VLAN add on a VXLAN device (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Propagate extack on port VLAN events (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Propagate extack on VXLAN VLAN events (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add multicast routing test (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Add Multicast routing support for Spectrum-2 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Limit priority value (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Support rule creation without action creation (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add replace rule action operation (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add multicast router profile operations (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add Spectrum-2 keys (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Change stage of ACL initialization (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Policy Engine Multicast Router Binding Table Register (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add PVID test case for VXLAN with VLAN-aware bridges (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: vxlan: Test FDB un/marking on VXLAN join/leave (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Un/offload FDB on nve_fid_disable/enable (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add mlxsw_sp_fid_ops.fdb_clear_offload (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Add mlxsw_sp_nve_ops.fdb_clear_offload (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Add mlxsw_sp_nve_ops.fdb_replay (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Publish mlxsw_sp_switchdev_notifier (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Track NVE type at FIDs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Fix VLAN device deletion via ioctl (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Relax GRE decap matching check (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Avoid leaking FID's reference count (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Remove easily triggerable warnings (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add a new test extack.sh (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add one-armed router test (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Mirror loopbacked packets instead of trapping them (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Load firmware version based on devlink parameter (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Reset firmware after flash during driver initialization (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add VxLAN test with a VLAN-aware bridge (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add a test for VxLAN configuration with a VLAN-aware bridge (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Consider VLAN-aware bridges as valid (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Enable VxLAN enslavement to VLAN-aware bridges (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Prepare function for VLAN-aware bridges (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Unify VxLAN leave function (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Add API to lookup 802.1Q FIDs without creating them (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Flip driver to use emulated 802.1Q FIDs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Introduce emulated VLAN RIFs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Introduce emulated 802.1Q FIDs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Make flood index calculation more robust (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Do not set field when it is reserved (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Consider VxLAN learning enabled as valid (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Allow VxLAN learning (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Allow deletion of learned FDB entries (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Process learned VxLAN FDB entries (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Add API to resolve learned IP addresses (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Allow FID lookup by its index (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Store ifindex of NVE device in FID (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add definition of unicast tunnel record for SFN register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Extend cooling device with cooling levels (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add a test for VxLAN flooding (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add a test for VxLAN configuration (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Expose discard counters via ethtool (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: spectrum-2: Add simple delta test (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: acl: Implement delta for ERP (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: acl: Push code related to num_ctcam_erps inc/dec into separate helpers (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: acl: Remove mlxsw_afk_encode() block range args and key/mask check (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: acl: Don't encode the key again in mlxsw_sp_acl_atcam_12kb_lkey_id_get() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core_acl: Change order of args of ops->encode_block() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: acl: Pass key pointer to master_mask_set/clear (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: acl_erp: Convert to use objagg for tracking ERPs (Ivan Vecera) [1680241]
+- [tools] selftests: Adjust spectrum-2 ctcam_two_atcam_masks_test (Ivan Vecera) [1680241]
+- [tools] selftests: Adjust spectrum-2 two_mask_test (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Fix IP2ME CPU policer configuration (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: qos_mc_aware: Add a test for UC awareness (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: qos_mc_aware: Tweak for min shaper (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Set minimum shaper on MC TCs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: QEEC: Add minimum shaper fields (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Fix devlink unregister flow (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Don't ignore deletions of learned MACs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Add support for VxLAN encapsulation (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Enable VxLAN enslavement to bridges (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Configure matching local routes for NVE decap (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Clear NVE configuration when destroying 802.1D FIDs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Implement VxLAN operations (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_nve: Implement common NVE core (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Allow querying VR ID based on table ID (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Enable local routes promotion to perform NVE decap (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Add APIs to lookup FID without creating it (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_fid: Allow setting and clearing NVE properties on FID (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: Fix use-after-free when flashing firmware during init (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add NVE packet traps (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: resources: Add NVE resources (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Monitoring Parsing State Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add definition of unicast tunnel record for SFD register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Tunneling NVE QoS Default Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Tunneling NVE QoS Configuration Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Tunneling NVE Decapsulation ECN Mapping Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Tunneling NVE Encapsulation ECN Mapping Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Tunneling NVE Underlay Multicast Table Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Tunnel Port Configuration Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Tunneling NVE General Configuration Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Seed LAG hash function (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Extend FDB flush types for NVE (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add a new type of KVD linear record (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Move L3 protocol and address definitions to global header file (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Do not assume notifier information type (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Check notification relevance based on upper device (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Prepare for VxLAN FDB notifications (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Remove misuses of private header file (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: qos_mc_aware: Make executable (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Have lldpad_app_wait_set() wait for unknown, too (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: pci: Fix a typo (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Delete RIF when VLAN device is removed (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: pci: Derive event type from event queue number (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: Make MLXSW_SP1_FWREV_MINOR a hard requirement (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Bump required firmware version (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add a test for UC behavior under MC flood (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: lib: Add mtu_set(), mtu_restore() (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: lib: Add ethtool_stats_get() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Tweak SBMM configuration (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Configure MC pool (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Allow configuration of static pools (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Pass SBPM min_size in cells (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Allow an infinite maximum for per-TC pool limit (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Allow pools of infinite size (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Keep shared buffer size in mlxsw_sp_sb (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Split TC_COUNT into ingress and egress (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Use devlink pool indices throughout (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Init shaper for TCs 8..15 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_buffers: Set up a dedicated pool for BUM traffic (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: remove unused arrays mlxsw_i2c_driver_name and mlxsw_pci_driver_name (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core: remove unnecessary function mlxsw_core_driver_put (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Expose counter for all 16 TCs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Include RFC-2819 counters in stats length (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: Replace license text with SPDX identifiers and adjust copyrights (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add TC flower test for Spectrum-2 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Reset FW after flash (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Update the supported firmware to version 13.1702.6 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_flower: Disallow usage of vlan_id key on egress (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_flower: use PTR_ERR_OR_ZERO() (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: gre_multipath: Update next-hop statistics match criteria (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Configure MC-aware mode on mlxsw ports (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Fix a typo (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add QoS Switch Traffic Class Table is Multicast-Aware Register (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add test for ip_forward_update_priority (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Move DSCP capture to lib.sh (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Move lldpad waiting to lib.sh (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Handle sysctl_ip_fwd_update_priority (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Extract work-scheduling into a new function (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Test mirror-to-gretap w/ UL team LACP (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Test mirror-to-gretap w/ UL team (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Introduce $ARPING (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: lib: Support team devices (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: lib: Add require_command() (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: qos_dscp_bridge: Fix (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add test for trust-DSCP (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Support ieee_setapp, ieee_delapp (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add QoS Priority to DSCP Mapping Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add QoS ReWrite Enable Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add QoS Priority Trust State Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add QoS Port DSCP to Priority Mapping Register (Ivan Vecera) [1680241]
+- [tools] selftests: add a selftest for directed broadcast forwarding (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: add tests for TC chain get and dump operations (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Start using A-TCAM (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add A-TCAM rule insertion and deletion (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Pass C-TCAM region and entry to insert function (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add A-TCAM region initialization (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Make global TCAM resources available to regions (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Encapsulate C-TCAM region in A-TCAM region (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add A-TCAM initialization (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Allow encoding a partial key (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Extend Spectrum-2 region struct (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add support for C-TCAM eRPs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Enable C-TCAM only mode in eRP core (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Implement common eRP core (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: resources: Add Spectrum-2 eRP resources (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: resources: Add Spectrum-2 maximum large key ID resource (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Policy-Engine eRP Table Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Policy-Engine TCAM Entry Register Version 3 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Prepare PERERP register for A-TCAM usage (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_flower: Add extack messages (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add extack messages (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core_acl_flex_actions: Add extack messages (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Propagate extack pointer (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: gre_multipath: Drop IPv6 tests (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Implement chain template hinting (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Extend to support Spectrum-2 ASIC (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add initial Spectrum-2 ACL implementation (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add region association callback (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add support for Spectrum-2 block encoding (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Prepare for Spectrum-2 block encoding (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Policy-Engine General Configuration Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Policy-Engine Region eRP Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Policy-Engine Region Configuration Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Policy-Engine Region Association Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: acl: Introduce activity get operation for action block/set (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add support for activity information from PEFA register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Introduce flex key blocks for Spectrum-2 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add Spectrum-2 variant of flex actions ops (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_mr_tcam: Add Spectrum-2 stubs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add KVDL manager implementation for Spectrum-2 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add Infrastructure Entry Delete Register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Expose counters for various packet sizes (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Optimize processing of VRRP MACs (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Add VRRP traps (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Direct macvlans' MACs to router (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Enable macvlan upper devices (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_nh: Unset rp_filter on host VRF (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_span: Change LAG lower selection (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: resources: Add couple of Spectrum-2 KVD resources (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Prepare for multiple FW versions for Spectrum and Spectrum-2 (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Implement priority setting for rules inserted to TCAM (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Add priority field for PTCEV2 register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Move block items encoding into Spectrum op (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Convert mlxsw_afk_create args to ops (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Add tcam init/fini ops (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Split TCAM handling 3 ways (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_mr_tcam: Push Spectrum-specific operations into a separate file (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_kvdl: Pass entry_count to free function (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_kvdl: Pass entry type to alloc/free (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_kvdl: Push out KVD linear management into ops (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_lib: Tighten up VLAN capture (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core_acl_flex_actions: Fix helper to get the first KVD linear index (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core_acl_flex_actions: Allow the first set to be dummy (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Put pointer to flex action ops to mlxsw_sp (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core_acl_flex_keys: Change SRC_SYS_PORT flex key element size (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: core_acl_flex_keys: Split MAC and IP address flex key elements (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_acl: Ignore always-zeroed bits in tp->prio (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: reg: Introduce Flex2 key type for PTAR register (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum: Change name of mlxsw_sp_afk_blocks to mlxsw_sp1_afk_blocks (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: avoid uninitialized variable access (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add mlxsw-specific test for mirror to gretap (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Allow importing dependent libraries (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: test for bridge port isolation (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Test mirror-to-gretap w/ UL 802.1q (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Test mirror-to-gretap w/ UL 802.1d (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add scale test for resources (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add target for mirror-to-gretap test on spectrum (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add scale test for mirror-to-gretap (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add target for tc flower test on spectrum (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add tc flower scale test (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add target for router test on spectrum (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add router test (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add devlink KVD resource test (Ivan Vecera) [1680241]
+- [tools] selftests: mlxsw: Add devlink_lib_spectrum.sh (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Add devlink_lib.sh (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: lib: Parameterize NUM_NETIFS in two functions (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: lib: Add check_err_fail() (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Allow lib.sh sourcing from other directories (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_changes: Fix waiting for neighbor (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: lib: Split out setup_wait_dev() (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Test multipath tunneling (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: mirror_gre_vlan_bridge_1q: Unset rp_filter (Ivan Vecera) [1680241]
+- [tools] selftests: forwarding: Test routed bridge interface (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_switchdev: Ban PVID change if bridge has a RIF (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Add mlxsw_sp_rif_fid() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Publish mlxsw_sp_rif_find_by_dev() (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Allocate FID according to PVID (Ivan Vecera) [1680241]
+- [netdrv] mlxsw: spectrum_router: Propagate extack to .fid_get() (Ivan Vecera) [1680241]
+- [netdrv] net: phy: realtek: Dummy IRQ calls for RTL8366RB (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: add generic Realtek PHY driver (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: use new PHYID matching macros (Corinna Vinschen) [1680528]
+- [include] net: phy: add macros for PHYID matching (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: load driver for all PHYs with a Realtek OUI (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: fix RTL8201F sysfs name (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: Support RTL8366RB variant (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: add missing entry for RTL8211C to mdio_device_id table (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: add support for RTL8211C (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: add missing entry for RTL8211 to mdio_device_id table (Corinna Vinschen) [1680528]
+- [netdrv] net: phy: realtek: add support for RTL8211 (Corinna Vinschen) [1680528]
+- [netdrv] r8169: change irq handler to always trigger NAPI polling (Corinna Vinschen) [1680528]
+- [netdrv] r8169: create function pointer array for chip hw init functions (Corinna Vinschen) [1680528]
+- [netdrv] r8169: create function pointer array for PHY init functions (Corinna Vinschen) [1680528]
+- [netdrv] r8169: disable ASPM again (Corinna Vinschen) [1680528]
+- [netdrv] r8169: disable tx interrupt coalescing on RTL8168 (Corinna Vinschen) [1680528]
+- [netdrv] Revert "r8169: use netif_receive_skb_list batching" (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use netif_receive_skb_list batching (Corinna Vinschen) [1680528]
+- [netdrv] r8169: disable default rx interrupt coalescing on RTL8168 (Corinna Vinschen) [1680528]
+- [netdrv] r8169: fix cable re-plugging issue (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use netif_start_queue instead of netif_wake_qeueue in rtl8169_start_xmit (Corinna Vinschen) [1680528]
+- [netdrv] r8169: don't read interrupt mask register in interrupt handler (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove unneeded mmiowb barriers (Corinna Vinschen) [1680528]
+- [netdrv] Revert "r8169: make use of xmit_more and __netdev_sent_queue" (Corinna Vinschen) [1680528]
+- [netdrv] Revert "r8169: remove unneeded mmiowb barriers" (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Avoid pointer aliasing (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Load MAC address from device tree if present (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove rtl_wol_pll_power_down (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve WoL handling (Corinna Vinschen) [1680528]
+- [netdrv] r8169: enable EEE per default on RTL8168f (Corinna Vinschen) [1680528]
+- [netdrv] r8169: add EEE support for RTL8168f (Corinna Vinschen) [1680528]
+- [netdrv] r8169: enable EEE per default on chip versions from RTL8168g (Corinna Vinschen) [1680528]
+- [netdrv] r8169: add general EEE support for chip versions from RTL8168g (Corinna Vinschen) [1680528]
+- [netdrv] r8169: factor out PHY init sequence adjusting 10M and ALDPS (Corinna Vinschen) [1680528]
+- [netdrv] r8169: factor out disabling ALDPS (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve firmware handling (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove PCI DAC support (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve rx buffer allocation (Corinna Vinschen) [1680528]
+- [netdrv] r8169: factor out getting ether_clk (Corinna Vinschen) [1680528]
+- [netdrv] r8169: replace mii_bus member with phy_device member in struct rtl8169_private (Corinna Vinschen) [1680528]
+- [netdrv] r8169: reset chip synchronously in __rtl8169_resume (Corinna Vinschen) [1680528]
+- [netdrv] r8169: add helpers for locking / unlocking the config registers (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve rtl_pcie_state_l2l3_enable (Corinna Vinschen) [1680528]
+- [netdrv] r8169: initialize task workqueue only once (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove unneeded call in pcierr (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove rtl_get_events (Corinna Vinschen) [1680528]
+- [netdrv] r8169: load Realtek PHY driver module before r8169 (Corinna Vinschen) [1680528]
+- [netdrv] r8169: don't try to read counters if chip is in a PCI power-save state (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Add support for new Realtek Ethernet (Corinna Vinschen) [1680528]
+- [netdrv] r8169: fix WoL device wakeup enable (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve spurious interrupt detection (Corinna Vinschen) [1680528]
+- [netdrv] r8169: fix crash if CONFIG_DEBUG_SHIRQ is enabled (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove unneeded mmiowb barriers (Corinna Vinschen) [1680528]
+- [netdrv] ethernet/realtek: Replace synchronize_sched() with synchronize_rcu() (Corinna Vinschen) [1680528]
+- [netdrv] r8169: make use of xmit_more and __netdev_sent_queue (Corinna Vinschen) [1680528]
+- [netdrv] r8169: replace macro TX_FRAGS_READY_FOR with a function (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use napi_consume_skb where possible (Corinna Vinschen) [1680528]
+- [netdrv] r8169: simplify detecting chip versions with same XID (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove default chip versions (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove ancient GCC bug workaround in a second place (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve chip version identification (Corinna Vinschen) [1680528]
+- [netdrv] r8169: simplify ocp functions (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove workaround for ancient gcc bug (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove manual padding in struct ring_info (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove "not PCI Express" message (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove print_mac_version (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use PCI_VDEVICE macro (Corinna Vinschen) [1680528]
+- [netdrv] r8169: replace event_slow with irq_mask (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove unused interrupt sources (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use dev_get_drvdata where possible (Corinna Vinschen) [1680528]
+- [netdrv] r8169: merge rtl_irq_enable and rtl_irq_enable_all (Corinna Vinschen) [1680528]
+- [pci] PCI: add USR vendor id and use it in r8169 and w6692 driver (Corinna Vinschen) [1680528]
+- [netdrv] net: ethernet: Convert phydev advertize and supported from u32 to link mode (Corinna Vinschen) [1680528]
+- [netdrv] r8169: fix broken Wake-on-LAN from S5 (poweroff) (Corinna Vinschen) [1680528]
+- [netdrv] r8169: add support for Byte Queue Limits (Corinna Vinschen) [1680528]
+- [netdrv] r8169: handle all interrupt events in the hard irq handler (Corinna Vinschen) [1680528]
+- [netdrv] r8169: fix NAPI handling under high load (Corinna Vinschen) [1680528]
+- [netdrv] r8169: re-enable MSI-X on RTL8168g (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove unneeded call to netif_stop_queue in rtl8169_net_suspend (Corinna Vinschen) [1680528]
+- [netdrv] r8169: simplify rtl8169_set_magic_reg (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Enable MSI-X on RTL8106e (Corinna Vinschen) [1680528]
+- [netdrv] r8169: set RX_MULTI_EN bit in RxConfig for 8168F-family chips (Corinna Vinschen) [1680528]
+- [netdrv] r8169: always autoneg on resume (Corinna Vinschen) [1680528]
+- [netdrv] r8169: fix network stalls due to missing bit TXCFG_AUTO_FIFO (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Disable clk during suspend / resume (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve a check in rtl_init_one (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve rtl8169_irq_mask_and_ack (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use default watchdog timeout (Corinna Vinschen) [1680528]
+- [netdrv] r8169: fix autoneg issue on resume with RTL8168E (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove duplicated RTL8169s PHY initialization steps (Corinna Vinschen) [1680528]
+- [netdrv] r8169: simplify RTL8169 PHY initialization (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Get and enable optional ether_clk clock (Corinna Vinschen) [1680528]
+- [netdrv] r8169: enable ASPM on RTL8106E (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Align ASPM/CLKREQ setting function with vendor driver (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Clear RTL_FLAG_TASK_*_PENDING when clearing RTL_FLAG_TASK_ENABLED (Corinna Vinschen) [1680528]
+- [netdrv] r8169: set TxConfig register after TX / RX is enabled, just like RxConfig (Corinna Vinschen) [1680528]
+- [netdrv] r8169: don't configure max jumbo frame size per chip version (Corinna Vinschen) [1680528]
+- [netdrv] r8169: don't configure csum function per chip version (Corinna Vinschen) [1680528]
+- [netdrv] r8169: simplify interrupt handler (Corinna Vinschen) [1680528]
+- [netdrv] r8169: don't include asm headers directly (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove version info (Corinna Vinschen) [1680528]
+- [netdrv] r8169: restore previous behavior to accept BIOS WoL settings (Corinna Vinschen) [1680528]
+- [netdrv] r8169: power down chip in probe (Corinna Vinschen) [1680528]
+- [netdrv] r8169: don't read chip phy status register (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove mii_if_info member from struct rtl8169_private (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove rtl8169_set_speed_xmii (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use phy_speed_down / phy_speed_up (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use phy_mii_ioctl (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use phy_ethtool_nway_reset (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use phy_ethtool_(g|s)et_link_ksettings (Corinna Vinschen) [1680528]
+- [netdrv] r8169: replace open-coded PHY soft reset with genphy_soft_reset (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use phy_resume/phy_suspend (Corinna Vinschen) [1680528]
+- [netdrv] r8169: add basic phylib support (Corinna Vinschen) [1680528]
+- [netdrv] r8169: fix runtime suspend (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove old PHY reset hack (Corinna Vinschen) [1680528]
+- [netdrv] r8169: remove TBI 1000BaseX support (Corinna Vinschen) [1680528]
+- [netdrv] r8169: use standard debug output functions (Corinna Vinschen) [1680528]
+- [netdrv] r8169: reject unsupported WoL options (Corinna Vinschen) [1680528]
+- [netdrv] r8169: don't check WoL when powering down PHY and interface is down (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve saved_wolopts handling (Corinna Vinschen) [1680528]
+- [netdrv] Revert "r8169: restore previous behavior to accept BIOS WoL settings" (Corinna Vinschen) [1680528]
+- [netdrv] r8169: improve phy initialization when resuming (Corinna Vinschen) [1680528]
+- [netdrv] r8169: enable ASPM on RTL8168E-VL (Corinna Vinschen) [1680528]
+- [netdrv] r8169: align ASPM entry latency setting with vendor driver (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Reinstate ASPM Support (Corinna Vinschen) [1680528]
+- [netdrv] r8169: Don't disable ASPM in the driver (Corinna Vinschen) [1680528]
+- [kernel] kernel/sched/psi.c: expose pressure metrics on root cgroup (Waiman Long) [1678388]
+- [kernel] psi: introduce psi monitor (Waiman Long) [1678388]
+- [spi] include/: refactor headers to allow kthread.h inclusion in psi_types.h (Waiman Long) [1678388]
+- [kernel] psi: track changed states (Waiman Long) [1678388]
+- [kernel] psi: split update_stats into parts (Waiman Long) [1678388]
+- [kernel] psi: rename psi fields in preparation for psi trigger addition (Waiman Long) [1678388]
+- [kernel] psi: make psi_enable static (Waiman Long) [1678388]
+- [kernel] psi: introduce state_mask to represent stalled psi states (Waiman Long) [1678388]
+- [kernel] kernel: cgroup: add poll file operation (Waiman Long) [1678388]
+- [fs] fs: kernfs: add poll file operation (Waiman Long) [1678388]
+- [documentation] psi: clarify the units used in pressure files (Waiman Long) [1678388]
+- [kernel] psi: avoid divide-by-zero crash inside virtual machines (Waiman Long) [1678388]
+- [init] psi: clarify the Kconfig text for the default-disable option (Waiman Long) [1678388]
+- [kernel] psi: fix aggregation idle shut-off (Waiman Long) [1678388]
+- [init] psi: fix reference to kernel commandline enable (Waiman Long) [1678388]
+- [kernel] psi: make disabling/enabling easier for vendor kernels (Waiman Long) [1678388]
+- [kernel] kernel/sched/psi.c: simplify cgroup_move_task() (Waiman Long) [1678388]
+- [kernel] psi: cgroup support (Waiman Long) [1678388]
+- [kernel] psi: pressure stall information for CPU, memory, and IO (Waiman Long) [1678388]
+- [kernel] sched: introduce this_rq_lock_irq() (Waiman Long) [1678388]
+- [kernel] sched: sched.h: make rq locking and clock functions available in stats.h (Waiman Long) [1678388]
+- [kernel] sched: loadavg: make calc_load_n() public (Waiman Long) [1678388]
+- [kernel] sched: loadavg: consolidate LOAD_INT, LOAD_FRAC, CALC_LOAD (Waiman Long) [1678388]
+- [kernel] delayacct: track delays from thrashing cache pages (Waiman Long) [1678388]
+- [mm] mm: workingset: tell cache transitions from workingset thrashing (Waiman Long) [1678388]
+- [mm] mm: workingset: don't drop refault information prematurely (Waiman Long) [1678388]
+- [scsi] scsi: ibmvfc: Add failed PRLI to cmd_status lookup array (Diego Domingos) [1665716]
+- [scsi] scsi: ibmvfc: Byte swap status and error codes when logging (Diego Domingos) [1665716]
+- [scsi] scsi: ibmvfc: Remove "failed" from logged errors (Diego Domingos) [1665716]
+- [scsi] scsi: ibmvfc: Clean up transport events (Diego Domingos) [1665716]
+- [scsi] scsi: ibmvscsi: Don't use rc uninitialized in ibmvscsi_do_work (Gustavo Duarte) [1665715]
+- [scsi] scsi: ibmvscsi: fix tripping of blk_mq_run_hw_queue WARN_ON (Gustavo Duarte) [1665715]
+- [scsi] scsi: ibmvscsi: redo driver work thread to use enum action states (Gustavo Duarte) [1665715]
+- [scsi] scsi: ibmvscsi: Wire up host_reset() in the driver's scsi_host_template (Gustavo Duarte) [1665715]
+- [scsi] scsi: ibmvscsi: change strncpy+truncation to strlcpy (Gustavo Duarte) [1665715]
+- [fs] ext4: avoid panic during forced reboot due to aborted journal (Lukas Czerner) [1717831]
+- [fs] ext4: fix use-after-free in dx_release() (Lukas Czerner) [1717831]
+- [fs] ext4: fix data corruption caused by overlapping unaligned and aligned IO (Lukas Czerner) [1717831]
+- [fs] ext4: avoid drop reference to iloc.bh twice (Lukas Czerner) [1717831]
+- [nvme] nvme-tcp: mark NVMe/TCP as a technical preview (Chris Leech) [1696451]
+- [nvme] nvme-tcp: fix possible null deref on a timed out io queue connect (Chris Leech) [1696451]
+- [nvme] nvme-tcp: rename function to have nvme_tcp prefix (Chris Leech) [1696451]
+- [nvme] nvme-tcp: fix a NULL deref when an admin connect times out (Chris Leech) [1696451]
+- [nvme] nvmet-tcp: don't fail maxr2t greater than 1 (Chris Leech) [1696451]
+- [nvme] nvmet-tcp: implement C2HData SUCCESS optimization (Chris Leech) [1696451]
+- [nvme] nvme-tcp: fix an endianess miss-annotation (Chris Leech) [1696451]
+- [nvme] nvme-tcp: support C2HData with SUCCESS flag (Chris Leech) [1696451]
+- [nvme] nvme-tcp: use older iov_iter API to fix panic (Chris Leech) [1696451]
+- [nvme] nvmet: fix building bvec from sg list (Ming Lei) [1690287]
+- [nvme] nvmet: set loop queue's segment boundary mask as PAGE_SIZE - 1 (Ming Lei) [1690287]
+- [x86] x86/qspinlock: Fix compile error (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Prevent unneeded warning during locking selftest (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Enable lock event counting (Waiman Long) [1709451]
+- [kernel] locking/lock_events: Don't show pvqspinlock events on bare metal (Waiman Long) [1709451]
+- [kernel] locking/lock_events: Make lock_events available for all archs & other locks (Waiman Long) [1709451]
+- [kernel] locking/qspinlock_stat: Introduce generic lockevent_*() counting APIs (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Enhance DEBUG_RWSEMS_WARN_ON() macro (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Add debug check for __down_read*() (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Micro-optimize rwsem_try_read_lock_unqueued() (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Move rwsem internal function declarations to rwsem-xadd.h (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Move owner setting code from rwsem.c to rwsem.h (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Relocate rwsem_down_read_failed() (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Optimize down_read_trylock() (Waiman Long) [1709451]
+- [kernel] locking/rwsem: Remove rwsem-spinlock.c & use rwsem-xadd.c for all archs (Waiman Long) [1709451]
+- [x86] locking/rwsem: Remove arch specific rwsem files (Waiman Long) [1709451]
+- [kernel] locking/qspinlock: Remove unnecessary BUG_ON() call (Waiman Long) [1709451]
+- [kernel] locking/qspinlock_stat: Track the no MCS node available case (Waiman Long) [1709451]
+- [kernel] locking/qspinlock: Handle > 4 slowpath nesting levels (Waiman Long) [1709451]
+- [kernel] locking/pvqspinlock: Extend node size when pvqspinlock is configured (Waiman Long) [1709451]
+- [kernel] locking/qspinlock_stat: Count instances of nested lock slowpaths (Waiman Long) [1709451]
+- [kernel] locking/qspinlock, x86: Provide liveness guarantee (Waiman Long) [1709451]
+- [kernel] locking/qspinlock: Rework some comments (Waiman Long) [1709451]
+- [kernel] locking/qspinlock: Re-order code (Waiman Long) [1709451]
+- [x86] x86/headers: Fix -Wmissing-prototypes warning (Waiman Long) [1709451]
+- [x86] Revert "x86/refcount: Work around GCC inlining bug" (Waiman Long) [1709451]
+- [x86] x86/asm: 'Simplify' GEN_*_RMWcc() macros (Waiman Long) [1709451]
+- [x86] x86/refcount: Work around GCC inlining bug (Waiman Long) [1709451]
+- [lib] locking/refcounts: Include fewer headers in <linux/refcount.h> (Waiman Long) [1709451]
+- [media] media: stk1160: Set the vb2_queue lock before calling vb2_queue_init (Torez Smith) [1697664]
+- [usb] USB: typec: fsusb302: Drop empty set_current_limit implementation (Torez Smith) [1697664]
+- [usb] USB: mark expected switch fall-throughs (Torez Smith) [1697664]
+- [usb] USB: musb: mark expected switch fall-throughs (Torez Smith) [1697664]
+- [usb] usb: wusbcore: security: cast sizeof to int for comparison (Torez Smith) [1697664]
+- [usb] usb: typec: tcpm: Support for Alternate Modes (Torez Smith) [1697664]
+- [usb] usb: typec: pi3usb30532: Start using generic state values (Torez Smith) [1697664]
+- [usb] usb: typec: Add driver for DisplayPort alternate mode (Torez Smith) [1697664]
+- [usb] usb: typec: Bus type for alternate modes (Torez Smith) [1697664]
+- [usb] usb: typec: Register a device for every mode (Torez Smith) [1697664]
+- [usb] usb: typec: mux: Get the mux identifier from function parameter (Torez Smith) [1697664]
+- [usb] usb: update for tcpci drivers moving out of staging (Torez Smith) [1697664]
+- [netdrv] net: usb: Mark expected switch fall-throughs (Torez Smith) [1697664]
+- [media] media: tm6000: add error handling for dvb_register_adapter (Torez Smith) [1697664]
+- [usb] usb: typec: function for checking cable plug orientation (Torez Smith) [1697664]
+- [include] usb: pd: include kernel.h (Torez Smith) [1697664]
+- [staging] staging: typec: tcpci: move tcpci drivers out of staging (Torez Smith) [1697664]
+- [usb] typec: tcpm: add starting value for drp toggling (Torez Smith) [1697664]
+- [usb] usb: typec: tcpm: support get typec and pd config from device properties (Torez Smith) [1697664]
+- [usb] usb: typec: add API to get typec basic port power and data config (Torez Smith) [1697664]
+- [staging] usb: typec: add fwnode to tcpc (Torez Smith) [1697664]
+- [documentation] dt-bindings: usb: add documentation for typec port controller(TCPCI) (Torez Smith) [1697664]
+- [documentation] dt-bindings: connector: add properties for typec (Torez Smith) [1697664]
+- [usb] usb: typec: tps6598x: Remove VLA usage (Torez Smith) [1697664]
+- [usb] usb: cdc-wdm: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: cdc-wdm: don't enable interrupts in USB-giveback (Torez Smith) [1697664]
+- [usb] usb: legousbtower: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] usb: ldusb: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] usb: iowarrior: remove intr_idx_lock (Torez Smith) [1697664]
+- [usb] usb: adutux: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] usb: wusbcore: remove excessive irqsave (Torez Smith) [1697664]
+- [usb] usb: usb-skeleton: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] usb: usblp: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] usb: usbfs: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] usb: core: use irqsave() in sg_complete() complete callback (Torez Smith) [1697664]
+- [usb] usb: cdc-acm: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: host: ehci-npcm7xx: Fix some error codes in probe (Torez Smith) [1697664]
+- [media] media: cx231xx: fix RC_CORE dependency (Torez Smith) [1697664]
+- [usb] USB: serial: digi_acceleport: rename tty flag variable (Torez Smith) [1697664]
+- [usb] USB: serial: usb_wwan: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: ti_usb_3410_5052: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: symbolserial: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: sierra: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: sierra: fix potential deadlock at close (Torez Smith) [1697664]
+- [usb] USB: serial: quatech2: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: mos7840: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: mos7720: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: io_ti: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: io_edgeport: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: digi_acceleport: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] USB: serial: cyberjack: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [usb] usb: chipidea: tegra: Use aligned DMA on Tegra114/124 (Torez Smith) [1697664]
+- [documentation] dt-bindings: usb: new ehci-npcm7xx dt (Torez Smith) [1697664]
+- [usb] USB host: Add USB ehci support for nuvoton npcm7xx platform (Torez Smith) [1697664]
+- [usb] usb: cdc-acm: Decrement tty port's refcount if probe() fail (Torez Smith) [1697664]
+- [usb] USB: mon: use ktime_get_real_ts64 instead of getnstimeofday64 (Torez Smith) [1697664]
+- [usb] USB: xhci-hcd: Add get_resuming_ports method (Torez Smith) [1697664]
+- [usb] USB: ehci-hcd: Add get_resuming_ports method (Torez Smith) [1697664]
+- [usb] USB: Report wakeup events on root-hub ports (Torez Smith) [1697664]
+- [usb] USB: serial: cast sizeof() to int when comparing with error code (Torez Smith) [1697664]
+- [netdrv] net: drivers/net: Convert random_ether_addr to eth_random_addr (Torez Smith) [1697664]
+- [netdrv] net: usb: rtl8150: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [netdrv] net: usb: r8152: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [netdrv] net: usb: kaweth: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [netdrv] net: usb: hso: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+- [netdrv] net: usb: cdc-phonet: use irqsave() in USB's complete callback (Torez Smith) [1697664]
+
+* Thu Jun 13 2019 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-106.el8]
+- [net] selftests/tls: add test for sleeping even though there is data (Sabrina Dubroca) [1711821]
+- [net] tls: fix no wakeup on partial reads (Sabrina Dubroca) [1711821]
+- [net] selftests/tls: test for lowat overshoot with multiple records (Sabrina Dubroca) [1711821]
+- [net] tls: fix lowat calculation if some data came from previous record (Sabrina Dubroca) [1711821]
+- [net] tls: don't ignore netdev notifications if no TLS features (Sabrina Dubroca) [1711821]
+- [net] tls: fix state removal with feature flags off (Sabrina Dubroca) [1711821]
+- [net] tls: handle errors from padding_length() (Sabrina Dubroca) [1711821]
+- [net] tls: avoid NULL pointer deref on nskb->sk in fallback (Sabrina Dubroca) [1711821]
+- [net] tls: byte swap device req TCP seq no upon setting (Sabrina Dubroca) [1711821]
+- [net] tls: remove old exports of sk_destruct functions (Sabrina Dubroca) [1711821]
+- [net] tls: don't log errors every time offload can't proceed (Sabrina Dubroca) [1711821]
+- [net] tls: fix refcount adjustment in fallback (Sabrina Dubroca) [1711821]
+- [net] strparser: make it explicitly non-modular (Sabrina Dubroca) [1711821]
+- [net] strparser: partially revert "strparser: Call skb_unclone conditionally" (Sabrina Dubroca) [1711821]
+- [net] tls: fix the IV leaks (Sabrina Dubroca) [1711821]
+- [net] strparser: fix comment (Sabrina Dubroca) [1711821]
+- [net] tls: prevent false connection termination with offload (Sabrina Dubroca) [1711821]
+- [net] tls: Replace kfree_skb() with consume_skb() (Sabrina Dubroca) [1711821]
+- [net] strparser: fix a missing check for create_singlethread_workqueue (Sabrina Dubroca) [1711821]
+- [net] tls: Fix tls_device receive (Sabrina Dubroca) [1711821]
+- [net] tls: Fix mixing between async capable and async (Sabrina Dubroca) [1711821]
+- [net] tls: Return type of non-data records retrieved using MSG_PEEK in recvmsg (Sabrina Dubroca) [1711821]
+- [net] selftest/tls: Add test to verify received 'type' of non-data record (Sabrina Dubroca) [1711821]
+- [net] tls: Move protocol constants from cipher context to tls context (Sabrina Dubroca) [1711821]
+- [net] tls: Do not use async crypto for non-data records (Sabrina Dubroca) [1711821]
+- [net] tls: Disable async decrytion for tls1.3 (Sabrina Dubroca) [1711821]
+- [net] tls: Set async_capable for tls zerocopy only if we see EINPROGRESS (Sabrina Dubroca) [1711821]
+- [net] tls: Add tests for TLS 1.3 (Sabrina Dubroca) [1711821]
+- [net] tls: Add tls 1.3 support (Sabrina Dubroca) [1711821]
+- [net] tls: Refactor control message handling on recv (Sabrina Dubroca) [1711821]
+- [net] tls: Refactor tls aad space size calculation (Sabrina Dubroca) [1711821]
+- [net] tls: Support 256 bit keys (Sabrina Dubroca) [1711821]
+- [net] tls: free ctx in sock destruct (Sabrina Dubroca) [1711821]
+- [net] tls: build_protos moved to common routine (Sabrina Dubroca) [1711821]
+- [net] tls: Fix recvmsg() to be able to peek across multiple records (Sabrina Dubroca) [1711821]
+- [net] tls: Make function tls_sw_do_sendpage static (Sabrina Dubroca) [1711821]
+- [net] tls: remove unused function tls_sw_sendpage_locked (Sabrina Dubroca) [1711821]
+- [net] Optimize sk_msg_clone() by data merge to end dst sg entry (Sabrina Dubroca) [1711821]
+- [net] selftests/tls: Fix recv partial/large_buff test cases (Sabrina Dubroca) [1711821]
+- [net] tls: allocate tls context using GFP_ATOMIC (Sabrina Dubroca) [1711821]
+- [net] tls: Init routines in create_ctx (Sabrina Dubroca) [1711821]
+- [net] selftests/tls: Fix recv(MSG_PEEK) & splice() test cases (Sabrina Dubroca) [1711821]
+- [net] tls: fix currently broken MSG_PEEK behavior (Sabrina Dubroca) [1711821]
+- [net] selftests/tls: Add MSG_WAITALL in recv() syscall (Sabrina Dubroca) [1711821]
+- [net] tls: async support causes out-of-bounds access in crypto APIs (Sabrina Dubroca) [1711821]
+- [net] selftests/tls: Add test for recv(PEEK) spanning across multiple records (Sabrina Dubroca) [1711821]
+- [net] tls: Add support for async decryption of tls records (Sabrina Dubroca) [1711821]
+- [net] tls: Calculate nsg for zerocopy path without skb_cow_data (Sabrina Dubroca) [1711821]
+- [net] strparser: remove redundant variable 'rd_desc' (Sabrina Dubroca) [1711821]
+- [net] tls: Use kmemdup to simplify the code (Sabrina Dubroca) [1711821]
+- [net] tls: Use socket data_ready callback on record availability (Sabrina Dubroca) [1711821]
+- [net] selftests: tls: add selftests for TLS sockets (Sabrina Dubroca) [1711821]
+- [net] strparser: Call skb_unclone conditionally (Sabrina Dubroca) [1711821]
+- [net] tls: Remove VLA usage on nonce (Sabrina Dubroca) [1711821]
+- [net] tls: Removed unused variable (Sabrina Dubroca) [1711821]
+- [netdrv] veth: use generic helper to report timestamping info (Jiri Benc) [1718938]
+- [netdrv] veth: Fix -Wformat-truncation (Jiri Benc) [1718938]
+- [netdrv] veth: Mark expected switch fall-throughs (Jiri Benc) [1718938]
+- [net] Add extack argument to rtnl_create_link (Jiri Benc) [1718938]
+- [netdrv] veth: Add ethtool statistics support for XDP (Jiri Benc) [1718938]
+- [netdrv] veth: Account for XDP packet statistics on rx side (Jiri Benc) [1718938]
+- [netdrv] veth: Account for packet drops in ndo_xdp_xmit (Jiri Benc) [1718938]
+- [netdrv] veth: rename pcpu_vstats as pcpu_lstats (Jiri Benc) [1718938]
+- [netdrv] net: move definition of pcpu_lstats to header file (Jiri Benc) [1718938]
+- [netdrv] veth: add software timestamping (Jiri Benc) [1718938]
+- [net] tcp: tcp_grow_window() needs to respect tcp_space() (Marcelo Leitner) [1718344]
+- [net] tcp: fix a potential NULL pointer dereference in tcp_sk_exit (Marcelo Leitner) [1718344]
+- [net] tcp: do not use ipv6 header for ipv4 flow (Marcelo Leitner) [1718344]
+- [net] tcp: Don't access TCP_SKB_CB before initializing it (Marcelo Leitner) [1718344]
+- [net] tcp: do not report TCP_CM_INQ of 0 for closed connections (Marcelo Leitner) [1718344]
+- [net] tcp: clear icsk_backoff in tcp_write_queue_purge() (Marcelo Leitner) [1718344]
+- [net] tcp: allow MSG_ZEROCOPY transmission also in CLOSE_WAIT state (Marcelo Leitner) [1718344]
+- [net] tcp: change txhash on SYN-data timeout (Marcelo Leitner) [1718344]
+- [net] tcp: lack of available data can also cause TSO defer (Marcelo Leitner) [1718344]
+- [net] tcp: fix NULL ref in tail loss probe (Marcelo Leitner) [1718344]
+- [net] tcp: Do not underestimate rwnd_limited (Marcelo Leitner) [1718344]
+- [net] tcp: defer SACK compression after DupThresh (Marcelo Leitner) [1718344]
+- [net] tcp: do not release socket ownership in tcp_close() (Marcelo Leitner) [1718344]
+- [net] tcp: Fix SOF_TIMESTAMPING_RX_HARDWARE to use the latest timestamp during TCP coalescing (Marcelo Leitner) [1718344]
+- [net] inet: make sure to grab rcu_read_lock before using ireq->ireq_opt (Marcelo Leitner) [1718344]
+- [net] tcp/dccp: fix lockdep issue when SYN is backlogged (Marcelo Leitner) [1718344]
+- [net] xfrm4: Fix uninitialized memory read in _decode_session4 (Sabrina Dubroca) [1718812]
+- [net] esp4: add length check for UDP encapsulation (Sabrina Dubroca) [1718812]
+- [net] xfrm: clean up xfrm protocol checks (Sabrina Dubroca) [1718812]
+- [net] xfrm6_tunnel: Fix potential panic when unloading xfrm6_tunnel module (Sabrina Dubroca) [1718812]
+- [net] xfrm: Reset secpath in xfrm failure (Sabrina Dubroca) [1718812]
+- [net] xfrm: policy: Fix out-of-bound array accesses in __xfrm_policy_unlink (Sabrina Dubroca) [1718812]
+- [net] xfrm: destroy xfrm_state synchronously on net exit path (Sabrina Dubroca) [1718812]
+- [net] esp: Skip TX bytes accounting when sending from a request socket (Sabrina Dubroca) [1718812]
+- [net] xfrm: refine validation of template and selector families (Sabrina Dubroca) [1718812]
+- [net] xfrm: policy: increment xfrm_hash_generation on hash rebuild (Sabrina Dubroca) [1718812]
+- [net] xfrm6_tunnel: Fix spi check in __xfrm6_tunnel_alloc_spi (Sabrina Dubroca) [1718812]
+- [net] xfrm_user: fix freeing of xfrm states on acquire (Sabrina Dubroca) [1718812]
+- [net] xfrm: Fix NULL pointer dereference in xfrm_input when skb_dst_force clears the dst_entry (Sabrina Dubroca) [1718812]
+- [net] xfrm: Fix error return code in xfrm_output_one() (Sabrina Dubroca) [1718812]
+- [net] vti4: eliminated some duplicate code (Guillaume Nault) [1718443]
+- [net] vti4: removed duplicate log message (Guillaume Nault) [1718443]
+- [net] vti4: ipip tunnel deregistration fixes (Guillaume Nault) [1718443]
+- [net] vti4: Fix a ipip packet processing bug in 'IPCOMP' virtual tunnel (Guillaume Nault) [1718443]
+- [net] fou: do not use guehdr after iptunnel_pull_offloads in gue_udp_recv (Guillaume Nault) [1718443]
+- [netdrv] vxlan: test dev->flags & IFF_UP before calling gro_cells_receive() (Guillaume Nault) [1718443]
+- [netdrv] vxlan: test dev->flags & IFF_UP before calling netif_rx() (Guillaume Nault) [1718443]
+- [net] devlink: turn devlink into a built-in (Petr Oros) [1717458]
+- [net] ipv6: fix EFAULT on sendto with icmpv6 and hdrincl (Stefano Brivio) [1718503]
+- [net] ipv6: use READ_ONCE() for inet->hdrincl as in ipv4 (Stefano Brivio) [1718503]
+- [net] ipv6: Fix redirect with VRF (Stefano Brivio) [1718503]
+- [net] ipv6: Consider sk_bound_dev_if when binding a raw socket to an address (Stefano Brivio) [1718503]
+- [net] ipv6: prevent possible fib6 leaks (Stefano Brivio) [1718503]
+- [net] vrf: sit mtu should not be updated when vrf netdev is the link (Stefano Brivio) [1718503]
+- [net] ipv6: A few fixes on dereferencing rt->from (Stefano Brivio) [1718503]
+- [tools] selftests: fib_rule_tests: Fix icmp proto with ipv6 (Stefano Brivio) [1718503]
+- [net] ipv6: fix races in ip6_dst_destroy() (Stefano Brivio) [1718503]
+- [net] ipv6/flowlabel: wait rcu grace period before put_pid() (Stefano Brivio) [1718503]
+- [net] ipv6: invert flowlabel sharing check in process and user mode (Stefano Brivio) [1718503]
+- [net] route: Avoid crash from dereferencing NULL rt->from (Stefano Brivio) [1718503]
+- [net] udpv6: Check address length before reading address family (Stefano Brivio) [1718503]
+- [net] ip6_gre: fix possible use-after-free in ip6erspan_rcv (Stefano Brivio) [1718503]
+- [net] ip6_gre: remove gre_hdr_len from ip6erspan_rcv (Stefano Brivio) [1718503]
+- [net] ipv6: Fix dangling pointer when ipv6 fragment (Stefano Brivio) [1718503]
+- [net] ip6_tunnel: Match to ARPHRD_TUNNEL6 for dev type (Stefano Brivio) [1718503]
+- [net] inet: switch IP ID generator to siphash (Stefano Brivio) [1718503]
+- [net] sit: fix UBSAN Undefined behaviour in check_6rd (Stefano Brivio) [1718503]
+- [net] ip6mr: Do not call __IP6_INC_STATS() from preemptible context (Stefano Brivio) [1718503]
+- [net] sit: fix memory leak in sit_init_net() (Stefano Brivio) [1718503]
+- [net] ipv4: Add ICMPv6 support when parse route ipproto (Stefano Brivio) [1718503]
+- [net] ipv6: Return error for RTA_VIA attribute (Stefano Brivio) [1718503]
+- [net] Set rtm_table to RT_TABLE_COMPAT for ipv6 for tables > 255 (Stefano Brivio) [1718503]
+- [net] ip6_gre: do not report erspan_ver for ip6gre or ip6gretap (Stefano Brivio) [1718503]
+- [net] ipv6: route: enforce RCU protection in rt6_update_exception_stamp_rt() (Stefano Brivio) [1718503]
+- [net] ipv6: route: enforce RCU protection in ip6_route_check_nh_onlink() (Stefano Brivio) [1718503]
+- [net] ipv6: propagate genlmsg_reply return code (Stefano Brivio) [1718503]
+- [net] fix IPv6 prefix route residue (Stefano Brivio) [1718503]
+- [net] ip6mr: Fix notifiers call on mroute_clean_tables() (Stefano Brivio) [1718503]
+- [net] af_packet: fix raw sockets over 6in4 tunnel (Stefano Brivio) [1718503]
+- [net] ip6_gre: fix tunnel list corruption for x-netns (Stefano Brivio) [1718503]
+- [net] ipv6: fix kernel-infoleak in ipv6_local_error() (Stefano Brivio) [1718503]
+- [net] ip: on queued skb use skb_header_pointer instead of pskb_may_pull (Stefano Brivio) [1718503]
+- [net] ipv4: fix use-after-free in ip_cmsg_recv_dstaddr() (Stefano Brivio) [1718503]
+- [net] ipv6: Take rcu_read_lock in __inet6_bind for mapped addresses (Stefano Brivio) [1718503]
+- [net] ipv6: Consider sk_bound_dev_if when binding a socket to a v4 mapped address (Stefano Brivio) [1718503]
+- [net] ipv6: Consider sk_bound_dev_if when binding a socket to an address (Stefano Brivio) [1718503]
+- [net] ip: validate header length on virtual device xmit (Stefano Brivio) [1718503]
+- [net] ipv6: Fix a test against 'ipv6_find_idev()' return value (Stefano Brivio) [1718503]
+- [net] ipv6: tunnels: fix two use-after-free (Stefano Brivio) [1718503]
+- [net] ipv6: add missing tx timestamping on IPPROTO_RAW (Stefano Brivio) [1718503]
+- [net] clear skb->tstamp in forwarding paths (Stefano Brivio) [1718503]
+- [net] ipv6: sr: properly initialize flowi6 prior passing to ip6_route_output (Stefano Brivio) [1718503]
+- [net] always initialize pagedlen (Stefano Brivio) [1718503]
+- [net] ipv6: Fix PMTU updates for UDP/raw sockets in presence of VRF (Stefano Brivio) [1718503]
+- [net] ipv6: gro: do not use slow memcmp() in ipv6_gro_receive() (Stefano Brivio) [1718503]
+- [net] xfrm: fix out-of-bounds packet access (Stefano Brivio) [1718503]
+- [net] ipv6: take rcu lock in rawv6_send_hdrinc() (Stefano Brivio) [1718503]
+- [net] ip6_tunnel: be careful when accessing the inner header (Stefano Brivio) [1718503]
+- [net] revert "ipv6: fix double refcount of fib6_metrics" (Stefano Brivio) [1718503]
+- [net] ipv6: fix memory leak on dst->_metrics (Stefano Brivio) [1718503]
+- [net] ipv6: fix cleanup ordering for ip6_mr failure (Stefano Brivio) [1718503]
+- [net] ipv6: fix cleanup ordering for pingv6 registration (Stefano Brivio) [1718503]
+- [net] ip6_tunnel: collect_md xmit: Use ip_tunnel_key's provided src address (Stefano Brivio) [1718503]
+- [net] ipv6: fix addrconf_sysctl_addr_gen_mode (Stefano Brivio) [1718503]
+- [net] ipv6: don't reinitialize ndev->cnf.addr_gen_mode on new inet6_dev (Stefano Brivio) [1718503]
+- [net] ipv6: reserve room for IFLA_INET6_ADDR_GEN_MODE (Stefano Brivio) [1718503]
+- [net] ipv6: propagate net.ipv6.conf.all.addr_gen_mode to devices (Stefano Brivio) [1718503]
+- [net] openvswitch: check for null pointer return from nla_nest_start_noflag (Stefano Brivio) [1718408]
+- [net] openvswitch: add seqadj extension when NAT is used (Stefano Brivio) [1718408]
+- [net] netfilter: Replace spin_is_locked() with lockdep (Stefano Brivio) [1718392]
+- [net] netfilter: ipset: do not call ipset_nest_end after nla_nest_cancel (Stefano Brivio) [1718392]
+- [net] netfilter: ipset: Fix calling ip_set() macro at dumping (Stefano Brivio) [1718392]
+- [include] netfilter: ipset: Correct rcu_dereference() call in ip_set_put_comment() (Stefano Brivio) [1718392]
+- [net] netfilter: ipset: fix ip_set_list allocation failure (Stefano Brivio) [1718392]
+- [net] netfilter: ipset: Make invalid MAC address checks consistent (Stefano Brivio) [1649087]
+- [net] netfilter: ipset: Allow matching on destination MAC address for mac and ipmac sets (Stefano Brivio) [1649087]
+- [netdrv] rocker: Handle SWITCHDEV_PORT_ATTR_SET (Ivan Vecera) [1717892]
+- [net] switchdev: Add SWITCHDEV_PORT_ATTR_SET (Ivan Vecera) [1717892]
+- [netdrv] rocker: Add missing break for PRE_BRIDGE_FLAGS (Ivan Vecera) [1717892]
+- [net] bridge: Stop calling switchdev_port_attr_get() (Ivan Vecera) [1717892]
+- [netdrv] rocker: Check Handle PORT_PRE_BRIDGE_FLAGS (Ivan Vecera) [1717892]
+- [netdrv] mlxsw: spectrum: Handle PORT_PRE_BRIDGE_FLAGS (Ivan Vecera) [1717892]
+- [include] net: switchdev: Add PORT_PRE_BRIDGE_FLAGS (Ivan Vecera) [1717892]
+- [netdrv] rocker: Remove port_attr_bridge_flags_get assignment (Ivan Vecera) [1717892]
+- [netdrv] rocker: Remove getting PORT_BRIDGE_FLAGS (Ivan Vecera) [1717892]
+- [net] pktgen: do not sleep with the thread lock held (Paolo Abeni) [1715575]
+- [include] ipv6: fix the check before getting the cookie in rt6_get_cookie (Xin Long) [1709166]
+- [net] ipv4: not do cache for local delivery if bc_forwarding is enabled (Xin Long) [1712657]
+- [net] sctp: avoid running the sctp state machine recursively (Xin Long) [1717316]
+- [netdrv] netdevsim: use skb_sec_path helper (Hangbin Liu) [1711810]
+- [netdrv] netdevsim: convert to DEFINE_SHOW_ATTRIBUTE (Hangbin Liu) [1711810]
+- [netdrv] netdevsim: make debug dirs' dentries static (Hangbin Liu) [1711810]
+- [tools] selftests: rtnetlink: use internal netns switch for ip commands (Hangbin Liu) [1711810]
+- [tools] selftests: rtnetlink: add testcases for vxlan flag sets (Hangbin Liu) [1711810]
+- [tools] selftests: rtnetlink: Add a test case for multipath route get (Hangbin Liu) [1711810]
+- [tools] selftests: rtnetlink.sh: add testcase for neigh get (Hangbin Liu) [1711810]
+- [tools] selftests: net: rtnetlink.sh: add fdb get test (Hangbin Liu) [1711810]
+- [tools] selftests: rtnetlink.sh explicitly requires bash (Hangbin Liu) [1711810]
+- [net] udp: with udp_segment release on error path (Paolo Abeni) [1718079]
+- [net] ipv6: explicitly initialize udp6_addr in udp_sock_create6() (Paolo Abeni) [1718079]
+- [netdrv] geneve: Don't assume linear buffers in vxlan_err_lookup() (Stefano Brivio) [1652222]
+- [netdrv] vxlan: Don't assume linear buffers in vxlan_err_lookup() (Stefano Brivio) [1652222]
+- [netdrv] geneve: Initialize addr6 with memset (Stefano Brivio) [1652222]
+- [net] ip_tunnel: don't force DF when MTU is locked (Stefano Brivio) [1652222]
+- [netdrv] geneve: ICMP error lookup handler (Stefano Brivio) [1652222]
+- [netdrv] vxlan: ICMP error lookup handler (Stefano Brivio) [1652222]
+- [net] udp: Handle ICMP errors for tunnels with same destination port on both endpoints (Stefano Brivio) [1652222]
+- [net] udp: gro behind static key (Stefano Brivio) [1652222]
+- [net] bpf: in __bpf_redirect_no_mac pull mac only if present (Jiri Benc) [1687471]
+- [net] lwt_bpf: remove unnecessary rcu_read_lock in run_lwt_bpf (Jiri Benc) [1687471]
+- [net] bpf: add End.DT6 action to bpf_lwt_seg6_action helper (Jiri Benc) [1687471]
+- [net] bpf: fix out-of-bounds read in __bpf_skc_lookup (Jiri Benc) [1687459]
+- [net] bpf: Check sk_fullsock() before returning from bpf_sk_lookup() (Jiri Benc) [1687459]
+- [net] flow_dissector: disable preemption around BPF calls (Jiri Benc) [1687459]
+- [net] bpf: sockmap, only stop/flush strp if it was enabled at some point (Jiri Benc) [1687459]
+- [net] bpf: Stop the psock parser before canceling its work (Jiri Benc) [1687459]
+- [net] bpf: only test gso type on gso packets (Jiri Benc) [1687459]
+- [tools] selftests: add dummy xdp test helper (Jiri Benc) [1687459]
+- [net] filter: mark expected switch fall-through (Jiri Benc) [1687459]
+- [documentation] Update references to netdev-FAQ (Jiri Benc) [1687459]
+- [net] bpfilter: remove trailing newline (Jiri Benc) [1687459]
+- [net] core: filter: mark expected switch fall-through (Jiri Benc) [1687459]
+- [net] revert "xsk: simplify AF_XDP socket teardown" (Jiri Benc) [1687459]
+- [net] bpf/test_run: fix unkillable BPF_PROG_TEST_RUN (Jiri Benc) [1687459]
+- [net] xsk: share the mmap_sem for page pinning (Jiri Benc) [1687459]
+- [net] xsk: add missing smp_rmb() in xsk_mmap (Jiri Benc) [1687459]
+- [net] bpf: only adjust gso_size on bytestream protocols (Jiri Benc) [1687459]
+- [net] sk_msg: Always cancel strp work before freeing the psock (Jiri Benc) [1687459]
+- [net] bpf: sock recvbuff must be limited by rmem_max in bpf_setsockopt() (Jiri Benc) [1687459]
+- [net] bpf: fix SO_MAX_PACING_RATE to support TCP internal pacing (Jiri Benc) [1687459]
+- [net] bpf: bpf_setsockopt: reset sock dst on SO_MARK changes (Jiri Benc) [1687459]
+- [net] bpf: correctly set initial window on active Fast Open sender (Jiri Benc) [1687459]
+- [net] xsk: simplify AF_XDP socket teardown (Jiri Benc) [1687459]
+- [net] bpf: fix doc of bpf_skb_adjust_room() in uapi (Jiri Benc) [1687459]
+- [net] bpf: do not blindly change rlimit in reuseport net selftest (Jiri Benc) [1687459]
+- [net] xsk: proper AF_XDP socket teardown ordering (Jiri Benc) [1687459]
+- [net] bpf: typo fix in Documentation/networking/af_xdp.rst (Jiri Benc) [1687459]
+- [net] xdp: split code for map vs non-map redirect (Jiri Benc) [1687459]
+- [net] xdp: explicit inline __xdp_map_lookup_elem (Jiri Benc) [1687459]
+- [net] xdp: unlikely instrumentation for xdp map redirect (Jiri Benc) [1687459]
+- [net] xdp: remove redundant variable 'headroom' (Jiri Benc) [1687459]
+- [net] xsk: include XDP meta data in AF_XDP frames (Jiri Benc) [1687459]
+- [net] bpf: Enable BPF_PROG_TYPE_SK_REUSEPORT bpf prog in reuseport selection (Jiri Benc) [1687459]
+- [net] revert "xdp: add NULL pointer check in __xdp_return()" (Jiri Benc) [1687459]
+- [lib] test_rhashtable: Make test_insert_dup() allocate its hash table dynamically (Jiri Benc) [1717066]
+- [lib] test_rhashtable: remove semaphore usage (Jiri Benc) [1717066]
+- [lib] rhashtable: detect when object movement between tables might have invalidated a lookup (Jiri Benc) [1717066]
+- [lib] rhashtable: remove duplicated include from rhashtable.c (Jiri Benc) [1717066]
+- [lib] rhashtable: clean up dereference of ->future_tbl (Jiri Benc) [1717066]
+- [lib] rhashtable: use cmpxchg() to protect ->future_tbl (Jiri Benc) [1717066]
+- [lib] rhashtable: simplify nested_table_alloc() and rht_bucket_nested_insert() (Jiri Benc) [1717066]
+- [lib] rhashtable: simplify INIT_RHT_NULLS_HEAD() (Jiri Benc) [1717066]
+- [lib] rhashtable: remove nulls_base and related code (Jiri Benc) [1717066]
+- [lib] rhashtable: split rhashtable.h (Jiri Benc) [1717066]
+- [lib] rhashtable: silence RCU warning in rhashtable_test (Jiri Benc) [1717066]
+- [net] devlink: publish params only after driver init is done (Ivan Vecera) [1715929]
+- [net] iptunnel: NULL pointer deref for ip_md_tunnel_xmit (Hangbin Liu) [1712792]
+- [net] ip_gre: Refactor collect metatdata mode tunnel xmit to ip_md_tunnel_xmit (Hangbin Liu) [1712792]
+- [net] ip_tunnel: Fix route fl4 init in ip_md_tunnel_xmit (Hangbin Liu) [1712792]
+- [net] ip_tunnel: Add tnl_update_pmtu in ip_md_tunnel_xmit (Hangbin Liu) [1712792]
+- [net] ip_tunnel: Add ip tunnel dst_cache in ip_md_tunnel_xmit (Hangbin Liu) [1712792]
+- [net] vlan: Mark expected switch fall-through (Hangbin Liu) [1664359]
+- [net] vlan: disable SIOCSHWTSTAMP in container (Hangbin Liu) [1664359]
+- [netdrv] macvlan: Mark expected switch fall-through (Hangbin Liu) [1664359]
+- [netdrv] macvlan: disable SIOCSHWTSTAMP in container (Hangbin Liu) [1664359]
+- [netdrv] macvlan: pass get_ts_info and SIOC[SG]HWTSTAMP ioctl to real device (Hangbin Liu) [1664359]
+- [net] ethtool: add compat for flash update (Petr Oros) [1708339]
+- [net] devlink: add flash update command (Petr Oros) [1708339]
+- [net] devlink: Fix list access without lock while reading region (Petr Oros) [1708339]
+- [net] devlink: Return right error code in case of errors for region read (Petr Oros) [1708339]
+- [net] devlink: use direct return of genlmsg_reply (Petr Oros) [1708339]
+- [net] devlink: Rename devlink health attributes (Petr Oros) [1709874]
+- [net] devlink: Modify reply of DEVLINK_CMD_HEALTH_REPORTER_GET (Petr Oros) [1709874]
+- [net] devlink: Update reporter state to error even if recover aborted (Petr Oros) [1709874]
+- [documentation] devlink: Add Documentation/networking/devlink-health.txt (Petr Oros) [1709874]
+- [net] devlink: Add health dump {get, clear} commands (Petr Oros) [1709874]
+- [net] devlink: Add health diagnose command (Petr Oros) [1709874]
+- [net] devlink: Add health recover command (Petr Oros) [1709874]
+- [net] devlink: Add health set command (Petr Oros) [1709874]
+- [net] devlink: Add health get command (Petr Oros) [1709874]
+- [net] devlink: Add health report functionality (Petr Oros) [1709874]
+- [net] devlink: Add health reporter create/destroy functionality (Petr Oros) [1709874]
+- [net] devlink: Add devlink formatted message (fmsg) API (Petr Oros) [1709874]
+- [net] devlink: add hardware errors tracing facility (Petr Oros) [1709874]
+- [net] cnb: devlink: report cell size of shared buffers (Petr Oros) [1708348]
+- [net] devlink: skip info_get op call if it is not defined in dumpit (Petr Oros) [1708342]
+- [include] devlink: add a generic board.manufacture version name (Petr Oros) [1708342]
+- [net] devlink: don't allocate attrs on the stack (Petr Oros) [1708342]
+- [net] devlink: fix condition for compat device info (Petr Oros) [1708342]
+- [net] ethtool: add compat for devlink info (Petr Oros) [1708342]
+- [include] devlink: add generic info version names (Petr Oros) [1708342]
+- [net] devlink: add version reporting to devlink info API (Petr Oros) [1708342]
+- [net] devlink: add device information API (Petr Oros) [1708342]
+- [net] devlink: Add devlink notifications support for port params (Petr Oros) [1710228]
+- [net] devlink: Add support for driverinit set value for devlink_port (Petr Oros) [1710228]
+- [net] devlink: Add support for driverinit get value for devlink_port (Petr Oros) [1710228]
+- [net] devlink: Add port param set command (Petr Oros) [1710228]
+- [net] devlink: Add port param get command (Petr Oros) [1710228]
+- [net] devlink: Add devlink_param for port register and unregister (Petr Oros) [1710228]
+- [net] ipv6: properly check return value in inet6_dump_all() (Petr Oros) [1714656]
+- [net] Don't return invalid table id error when dumping all families (Petr Oros) [1714656]
+- [net] ipmr_base: Do not reset index in mr_table_dump (Petr Oros) [1714656]
+- [net] ipv6: Fix dump of specific table with strict checking (Petr Oros) [1714656]
+- [net] ipv4: avoid compile error in fib_info_nh_uses_dev (Petr Oros) [1714656]
+- [net] ipv4: Bail early if user only wants prefix entries (Petr Oros) [1714656]
+- [net] ipv6: Bail early if user only wants cloned entries (Petr Oros) [1714656]
+- [net] mpls: Handle kernel side filtering of route dumps (Petr Oros) [1714656]
+- [net] Enable kernel side filtering of route dumps (Petr Oros) [1714656]
+- [net] Plumb support for filtering ipv4 and ipv6 multicast route dumps (Petr Oros) [1714656]
+- [net] ipmr: Refactor mr_rtm_dumproute (Petr Oros) [1714656]
+- [net] mpls: Plumb support for filtering route dumps (Petr Oros) [1714656]
+- [net] ipv6: Plumb support for filtering route dumps (Petr Oros) [1714656]
+- [net] netfilter: nft_fib: Convert nft_fib4_eval to new dev helper (Petr Oros) [1714656]
+- [net] netfilter: rpfilter: Convert rpfilter_lookup_reverse to new dev helper (Petr Oros) [1714656]
+- [net] ipv4: Move device validation to helper (Petr Oros) [1714656]
+- [net] ipv4: Plumb support for filtering route dumps (Petr Oros) [1714656]
+- [net] Add struct for fib dump filter (Petr Oros) [1714656]
+- [lib] iov_iter: Fix build error without CONFIG_CRYPTO (Ivan Vecera) [1714213]
+- [net] datagram: introduce skb_copy_and_hash_datagram_iter helper (Ivan Vecera) [1714213]
+- [lib] iov_iter: introduce hash_and_copy_to_iter helper (Ivan Vecera) [1714213]
+- [net] datagram: consolidate datagram copy to iter helpers (Ivan Vecera) [1714213]
+- [lib] iov_iter: pass void csum pointer to csum_and_copy_to_iter (Ivan Vecera) [1714213]
+- [net] datagram: open-code copy_page_to_iter (Ivan Vecera) [1714213]
+- [include] net: enable mpls_ptr in net_device (Hangbin Liu) [1350011]
+- [net] netfilter: ipset: actually allow allowable CIDR 0 in hash:net, port, net (Stefano Brivio) [1680512]
+- [net] netfilter: ipset: fix ip_set_byindex function (Stefano Brivio) [1680512]
+- [net] netfilter: ipset: Introduction of new commands and protocol version 7 (Stefano Brivio) [1680512]
+- [net] ipv6: don't return positive numbers when nothing was dumped (Petr Oros) [1700306]
+- [net] rtnetlink: restore handling of dumpit return value in rtnl_dump_all() (Petr Oros) [1700306]
+- [net] netlink: fixup regression in RTM_GETADDR (Petr Oros) [1700306]
+- [net] {ipv4, ipv6}: Do not put target net if input nsid is invalid (Petr Oros) [1700306]
+- [net] rtnl_dump_all needs to propagate error from dumpit function (Petr Oros) [1700306]
+- [net] rtnetlink: Move ifm in valid_fdb_dump_legacy to closer to use (Petr Oros) [1700306]
+- [net] neighbor: NTF_PROXY is a valid ndm_flag for a dump request (Petr Oros) [1700306]
+- [net] mpls: Implement handler for strict data checking on dumps (Petr Oros) [1700306]
+- [net] rtnetlink: Update comment in rtnl_stats_dump regarding strict data checking (Petr Oros) [1700306]
+- [net] ipv6: Put target net when address dump fails due to bad attributes (Petr Oros) [1700306]
+- [net] ipv4: Put target net when address dump fails due to bad attributes (Petr Oros) [1700306]
+- [tools] headers uapi: Update linux/netlink.h header copy (Petr Oros) [1700306]
+- [net] neigh: fix NULL deref in pneigh_dump_table() (Petr Oros) [1700306]
+- [net] ipv6: Add support for dumping addresses for a specific device (Petr Oros) [1700306]
+- [net] ipv4: Add support for dumping addresses for a specific device (Petr Oros) [1700306]
+- [net] ipv6: Remove ip_idx arg to in6_dump_addrs (Petr Oros) [1700306]
+- [net] ipv4: Move loop over addresses on a device into in_dev_dump_addr (Petr Oros) [1700306]
+- [net] netlink: Add answer_flags to netlink_callback (Petr Oros) [1700306]
+- [net] rtnetlink: Update rtnl_fdb_dump for strict data checking (Petr Oros) [1700306]
+- [net] rtnetlink: Move input checking for rtnl_fdb_dump to helper (Petr Oros) [1700306]
+- [net] bridge: Update br_mdb_dump for strict data checking (Petr Oros) [1700306]
+- [net] Update netconf dump handlers for strict data checking (Petr Oros) [1700306]
+- [net] ipv6: Update ip6addrlbl_dump for strict data checking (Petr Oros) [1700306]
+- [net] fib_rules: Update fib_nl_dumprule for strict data checking (Petr Oros) [1700306]
+- [net] namespace: Update rtnl_net_dumpid for strict data checking (Petr Oros) [1700306]
+- [net] neighbor: Update neightbl_dump_info for strict data checking (Petr Oros) [1700306]
+- [net] neighbor: Update neigh_dump_info for strict data checking (Petr Oros) [1700306]
+- [net] rtnetlink: Update fib dumps for strict data checking (Petr Oros) [1700306]
+- [net] rtnetlink: Update ipmr_rtm_dumplink for strict data checking (Petr Oros) [1700306]
+- [net] rtnetlink: Update inet6_dump_ifinfo for strict data checking (Petr Oros) [1700306]
+- [net] rtnetlink: Update rtnl_stats_dump for strict data checking (Petr Oros) [1700306]
+- [net] rtnetlink: Update rtnl_bridge_getlink for strict data checking (Petr Oros) [1700306]
+- [net] rtnetlink: Update rtnl_dump_ifinfo for strict data checking (Petr Oros) [1700306]
+- [net] ipv6: Update inet6_dump_addr for strict data checking (Petr Oros) [1700306]
+- [net] ipv4: Update inet_dump_ifaddr for strict data checking (Petr Oros) [1700306]
+- [net] netlink: Add new socket option to enable strict checking on dumps (Petr Oros) [1700306]
+- [net] ipv6: Refactor address dump to push inet6_fill_args to in6_dump_addrs (Petr Oros) [1700306]
+- [lib] netlink: Add strict version of nlmsg_parse and nla_parse (Petr Oros) [1700306]
+- [net] Add extack to nlmsg_parse (Petr Oros) [1700306]
+- [include] netlink: Add extack message to nlmsg_parse for invalid header length (Petr Oros) [1700306]
+- [net] netlink: Pass extack to dump handlers (Petr Oros) [1700306]
+- [net] neigh: Extend dump filter to proxy neighbor dumps (Petr Oros) [1700306]
+- [lib] netlink: add nested array policy validation (Petr Oros) [1700306]
+- [lib] netlink: allow NLA_NESTED to specify nested policy to validate (Petr Oros) [1700306]
+- [lib] netlink: move extack setting into validate_nla() (Petr Oros) [1700306]
+- [lib] netlink: make validation_data const (Petr Oros) [1700306]
+- [lib] netlink: remove NLA_NESTED_COMPAT (Petr Oros) [1700306]
+- [lib] netlink: add ethernet address policy types (Petr Oros) [1700306]
+- [net] sched: cls_u32: add res to offload information (Ivan Vecera) [1711377]
+- [net] sched: gred: support reporting stats from offloads (Ivan Vecera) [1711377]
+- [net] sched: gred: add basic Qdisc offload (Ivan Vecera) [1711377]
+- [net] sched: gred: allow manipulating per-DP RED flags (Ivan Vecera) [1711377]
+- [net] sched: gred: store red flags per virtual queue (Ivan Vecera) [1711377]
+- [net] sched: gred: provide a better structured dump and expose stats (Ivan Vecera) [1711377]
+- [net] sched: gred: store bytesin as a 64 bit value (Ivan Vecera) [1711377]
+- [net] sched: gred: use extack to provide more details on configuration errors (Ivan Vecera) [1711377]
+- [net] sched: gred: pass extack to nla_parse_nested() (Ivan Vecera) [1711377]
+- [net] sched: gred: separate error and non-error path in gred_change() (Ivan Vecera) [1711377]
+- [net] netlink: add NLA_REJECT policy type (Ivan Vecera) [1711377]
+- [lib] netlink: Return extack message if attribute validation fails (Ivan Vecera) [1711377]
+- [net] sched: red: notify drivers about RED's limit parameter (Ivan Vecera) [1711039]
+- [net] sched: mq: offload a graft notification (Ivan Vecera) [1711039]
+- [net] sched: red: offload a graft notification (Ivan Vecera) [1711039]
+- [net] sched: provide notification for graft on root (Ivan Vecera) [1711039]
+- [net] sched: prio: delay destroying child qdiscs on change (Ivan Vecera) [1711039]
+- [net] sched: red: delay destroying child qdisc on replace (Ivan Vecera) [1711039]
+- [net] sched: refactor grafting Qdiscs with a parent (Ivan Vecera) [1711039]
+- [net] sched: add an offload graft helper (Ivan Vecera) [1711039]
+- [net] sched: set TCQ_F_OFFLOADED flag for MQ (Ivan Vecera) [1711039]
+- [net] sched: red: remove unnecessary red_dump_offload_stats parameter (Ivan Vecera) [1711039]
+- [net] sched: add an offload dump helper (Ivan Vecera) [1711039]
+- [netdrv] netdevsim: Implement ndo_get_port_parent_id() (Ivan Vecera) [1708368]
+- [netdrv] rocker: Implement ndo_get_port_parent_id() (Ivan Vecera) [1708368]
+- [net] Introduce ndo_get_port_parent_id() (Ivan Vecera) [1708368]
+- [net] use indirect calls helpers at early demux stage (Paolo Abeni) [1700747]
+- [net] use indirect calls helpers for L3 handler hooks (Paolo Abeni) [1700747]
+- [net] use indirect calls helpers at the socket layer (Paolo Abeni) [1700747]
+- [net] use indirect calls helpers for ptype hook (Paolo Abeni) [1700747]
+- [net] add documentation to socket.c (Paolo Abeni) [1700747]
+- [net] udp: use indirect call wrappers for GRO socket lookup (Paolo Abeni) [1700747]
+- [net] use indirect call wrappers at GRO transport layer (Paolo Abeni) [1700747]
+- [net] use indirect call wrappers at GRO network layer (Paolo Abeni) [1700747]
+- [net] indirect call wrappers: helpers to speed-up indirect calls of builtin (Paolo Abeni) [1700747]
+- [powerpc] powerpc: bpf: Fix generation of load/store DW instructions (Yauheni Kaliuta) [1700846]
+- [net] bpf: verifier: propagate liveness on all frames (Yauheni Kaliuta) [1700846]
+- [net] bpf: do not restore dst_reg when cur_state is freed (Yauheni Kaliuta) [1700846]
+- [tools] tools lib bpf: Fix the build by adding a missing stdarg.h include (Yauheni Kaliuta) [1700846]
+- [tools] bpf, libbpf: fix version info and add it to shared object (Yauheni Kaliuta) [1700846]
+- [tools] btf: fix bug with resolving STRUCT/UNION into corresponding FWD (Yauheni Kaliuta) [1700846]
+- [tools] tools/libbpf: signedness bug in btf_dedup_ref_type() (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: fix libbpf_print (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: simplify libbpf API function libbpf_set_print() (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpftool: move set_max_rlimit() before __bpf_object__open_xattr() (Yauheni Kaliuta) [1700846]
+- [include] bpf: promote bpf_perf_event.h to mandatory UAPI header (Yauheni Kaliuta) [1700846]
+- [net] bpf: Avoid unnecessary instruction in convert_bpf_ld_abs() (Yauheni Kaliuta) [1700846]
+- [kernel] bpf: fix check of allowed specifiers in bpf_trace_printk (Yauheni Kaliuta) [1700846]
+- [documentation] bpf, doc: Document Jump X addressing mode (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpf: fix license for a compat header file (Yauheni Kaliuta) [1700846]
+- [documentation] docs: bpf: Capitalise document heading (Yauheni Kaliuta) [1700846]
+- [documentation] docs: Add bpf/index to top level index (Yauheni Kaliuta) [1700846]
+- [documentation] docs: bpf: Add toctree to index (Yauheni Kaliuta) [1700846]
+- [documentation] docs: bpf: Rename README.rst to index.rst (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: skip verifier tests for unsupported map types (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: skip verifier tests for unsupported program types (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: skip sockmap in test_maps if kernel doesn't have support (Yauheni Kaliuta) [1700846]
+- [rpmspec] rpmspec: pack bpf-helpers, bpftool-net, bpftool-feature manpages (Yauheni Kaliuta) [1700846]
+- [net] bpf, tcp: correctly handle DONT_WAIT flags and timeo == 0 (Yauheni Kaliuta) [1700846]
+- [kernel] bpf: mark bpf_event_notify and bpf_event_init as static (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap fix msg->sg.size account on ingress skb (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap remove duplicate queue free (Yauheni Kaliuta) [1700846]
+- [net] net/tls: remove set but not used variables (Yauheni Kaliuta) [1700846]
+- [media] bpf: add map helper functions push, pop, peek in more BPF programs (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix infinite loop in map create (Yauheni Kaliuta) [1700846]
+- [net] net/tls: fix build without CONFIG_TLS_DEVICE (Yauheni Kaliuta) [1700846]
+- [net] net/tls: don't leak partially sent record in device mode (Yauheni Kaliuta) [1700846]
+- [net] xdp: fix cpumap redirect SKB creation bug (Yauheni Kaliuta) [1700846]
+- [net] net/core: Document reuseport_add_sock() bind_inany argument (Yauheni Kaliuta) [1700846]
+- [tools] bpf, libbpf: clarify bump in libbpf version info (Yauheni Kaliuta) [1700846]
+- [net] net/tls: Inform user space about send buffer availability (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: handle BTF parsing and loading properly (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix warning about using plain integer as NULL (Yauheni Kaliuta) [1700846]
+- [tools] bpf, libbpf: fixing leak when kernel does not support btf (Yauheni Kaliuta) [1700846]
+- [net] tls: Fix write space handling (Yauheni Kaliuta) [1700846]
+- [net] tls: Fix tls_device handling of partial records (Yauheni Kaliuta) [1700846]
+- [tools] bpf: bpftool, fix documentation for attach types (Yauheni Kaliuta) [1700846]
+- [tools] btf: separate btf creation and loading (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: fix a selftest test_btf failure (Yauheni Kaliuta) [1700846]
+- [tools] selftests/btf: add initial BTF dedup tests (Yauheni Kaliuta) [1700846]
+- [tools] btf: add BTF types deduplication algorithm (Yauheni Kaliuta) [1700846]
+- [tools] btf: extract BTF type size calculation (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: silence a libbpf unnecessary warning (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: implement libbpf btf__get_map_kv_tids() API function (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: expose functions btf_ext__* as API functions (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Add a support for getting xdp prog id on ifindex (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Add a helper for retrieving a map fd for a given name (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: introduce bpf_map_lookup_elem_flags() (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add bash completion for bpftool probes (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add probes for a network device (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add C-style "#define" output for probes (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add probes for eBPF helper functions (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add probes for eBPF map types (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add probes for eBPF program types (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add probes for kernel configuration options (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add probes for /proc/ eBPF parameters (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add basic probe capability, probe syscall availability (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: print out btf log at LIBBPF_WARN level (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: move libbpf pr_* debug print functions to headers (Yauheni Kaliuta) [1700846]
+- [net] net: tls: Fix deadlock in free_resources tx (Yauheni Kaliuta) [1700846]
+- [net] net: tls: Save iv in tls_rec for async crypto requests (Yauheni Kaliuta) [1700846]
+- [tools] bpf: pull in pkt_sched.h header for tooling to fix bpftool build (Yauheni Kaliuta) [1700846]
+- [net] net: bpfilter: change section name of bpfilter UMH blob (Yauheni Kaliuta) [1700846]
+- [netdrv] tap: call skb_probe_transport_header after setting skb->dev (Yauheni Kaliuta) [1700846]
+- [net] Prevent overflow of sk_msg in sk_msg_clone() (Yauheni Kaliuta) [1700846]
+- [net] tls: Do not call sk_memcopy_from_iter with zero length (Yauheni Kaliuta) [1700846]
+- [net] net: ipv4: Set skb->dev for output route resolution (Yauheni Kaliuta) [1700846]
+- [net] bpf: refactor bpf_test_run() to separate own failures and test program result (Yauheni Kaliuta) [1700846]
+- [include] bpf: fix pointer offsets in context for 32 bit (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpftool: copy a few net uapi headers to tools directory (Yauheni Kaliuta) [1700846]
+- [net] bpf: tcp_bpf_recvmsg should return EAGAIN when nonblocking and no data (Yauheni Kaliuta) [1700846]
+- [net] bpf: skmsg, fix psock create on existing kcm/tls port (Yauheni Kaliuta) [1700846]
+- [net] tcp, ulp: remove socket lock assertion on ULP cleanup (Yauheni Kaliuta) [1700846]
+- [lib] bpf: test_bpf: add init_net to dev for flow_dissector (Yauheni Kaliuta) [1700846]
+- [net] flow_dissector: lookup netns by skb->sk if skb->dev is NULL (Yauheni Kaliuta) [1700846]
+- [net] tls: Fixed uninitialised vars warning (Yauheni Kaliuta) [1700846]
+- [include] cgroup: Simplify cgroup_ancestor (Yauheni Kaliuta) [1700846]
+- [netdrv] veth: Orphan skb before GRO (Yauheni Kaliuta) [1700846]
+- [net] net/core/filter: fix unused-variable warning (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix build error with clang (Yauheni Kaliuta) [1700846]
+- [netdrv] veth: Free queues on link delete (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix sanitation rewrite in case of non-pointers (Yauheni Kaliuta) [1700846]
+- [net] bpf: drop refcount if bpf_map_new_fd() fails in map_create() (Yauheni Kaliuta) [1700846]
+- [net] bpf: decrease usercnt if bpf_map_new_fd() fails in bpf_map_get_fd_by_id() (Yauheni Kaliuta) [1700846]
+- [net] bpf, lpm: fix lookup bug in map_delete_elem (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix lockdep false positive in stackmap (Yauheni Kaliuta) [1700846]
+- [net] bpf: Fix narrow load on a bpf_sock returned from sk_lookup() (Yauheni Kaliuta) [1700846]
+- [net] bpf: Fix syscall's stackmap lookup potential deadlock (Yauheni Kaliuta) [1700846]
+- [kernel] bpf: fix potential deadlock in bpf_prog_register (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix lockdep false positive in percpu_freelist (Yauheni Kaliuta) [1700846]
+- [net] bpf: run bpf programs with preemption disabled (Yauheni Kaliuta) [1700846]
+- [tools] bpf, selftests: fix handling of sparse CPU allocations (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: fix test_btf for typedef func_proto case (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: allow typedef func_proto (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix crash with un-owned prog arrays (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: fix percpu maps updating (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: Cleanup license mess (Yauheni Kaliuta) [1700846]
+- [net] bpf: Annotate implicit fall through in cgroup_dev_func_proto (Yauheni Kaliuta) [1700846]
+- [net] bpf: Make function btf_name_offset_valid static (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: retry tests that expect build-id (Yauheni Kaliuta) [1700846]
+- [net] bpf: zero out build_id for BPF_STACK_BUILD_ID_IP (Yauheni Kaliuta) [1700846]
+- [net] bpf: don't assume build-id length is always 20 bytes (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: properly account for libbfd variations (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: retry loading program on EAGAIN (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: workaround clang asm goto compilation errors (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: install with_tunnels.sh for test_flow_dissector.sh (Yauheni Kaliuta) [1700846]
+- [net] net: bpfilter: disallow to remove bpfilter module while being used (Yauheni Kaliuta) [1700846]
+- [net] net: bpfilter: Fix type cast and pointer warnings (Yauheni Kaliuta) [1700846]
+- [net] net: bpfilter: restart bpfilter_umh when error occurred (Yauheni Kaliuta) [1700846]
+- [net] net: bpfilter: use cleanup callback to release umh_info (Yauheni Kaliuta) [1700846]
+- [kernel] umh: add exit routine for UMH process (Yauheni Kaliuta) [1700846]
+- [net] net: bpfilter: Set user mode helper's command line (Yauheni Kaliuta) [1700846]
+- [kernel] umh: Add command line to user mode helpers (Yauheni Kaliuta) [1700846]
+- [net] net: bpfilter: use get_pid_task instead of pid_task (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: fix bpftool map dump with bitfields (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: test btf bitfield with >=256 struct member offset (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix bpffs bitfield pretty print (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix panic in stack_map_get_build_id() on i386 and arm32 (Yauheni Kaliuta) [1700846]
+- [tools] selftests: bpf: install files tcp_(server|client)*.py (Yauheni Kaliuta) [1700846]
+- [samples] samples: bpf: user proper argument index (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add missing executables to .gitignore (Yauheni Kaliuta) [1700846]
+- [tools] bpf, doc: add note for libbpf's stand-alone build (Yauheni Kaliuta) [1700846]
+- [documentation] bpf, doc: update design qa to reflect kern_version requirement (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: fix incorrect users of create_and_get_cgroup (Yauheni Kaliuta) [1700846]
+- [tools] bpf: add various test cases for alu op on mixed dst register types (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Test [::] -> [::1] rewrite in sys_sendmsg in test_sock_addr (Yauheni Kaliuta) [1700846]
+- [net] bpf: Fix [::] -> [::1] rewrite in sys_sendmsg (Yauheni Kaliuta) [1700846]
+- [tools] bpf: add various test cases to selftests (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix check_map_access smin_value test when pointer contains offset (Yauheni Kaliuta) [1700846]
+- [net] bpf: restrict stack pointer arithmetic for unprivileged (Yauheni Kaliuta) [1700846]
+- [net] bpf: restrict map value pointer arithmetic for unprivileged (Yauheni Kaliuta) [1700846]
+- [net] bpf: enable access to ax register also from verifier rewrite (Yauheni Kaliuta) [1700846]
+- [net] bpf: move tmp variable into ax register in interpreter (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: fix error printing in test_devmap() (Yauheni Kaliuta) [1700846]
+- [tools] bpf: fix segfault in test_verifier selftest (Yauheni Kaliuta) [1700846]
+- [net] bpf: tls_sw, init TLS ULP removes BPF proto hooks (Yauheni Kaliuta) [1700846]
+- [net] bpf: sk_msg, sock{map|hash} redirect through ULP (Yauheni Kaliuta) [1700846]
+- [net] bpf: sk_msg, zap ingress queue on psock down (Yauheni Kaliuta) [1700846]
+- [net] bpf: sk_msg, fix socket data_ready events (Yauheni Kaliuta) [1700846]
+- [net] bpf: skb_verdict, support SK_PASS on RX BPF path (Yauheni Kaliuta) [1700846]
+- [net] bpf: skmsg, replace comments with BUILD bug (Yauheni Kaliuta) [1700846]
+- [net] bpf: sk_msg, improve offset chk in _is_valid_access (Yauheni Kaliuta) [1700846]
+- [tools] bpf: sk_msg, fix sk_msg_md access past end test (Yauheni Kaliuta) [1700846]
+- [net] bpf/cpumap: make sure frame_size for build_skb is aligned if headroom isn't (Yauheni Kaliuta) [1700846]
+- [tools] selftests: bpf: add missing executables to .gitignore (Yauheni Kaliuta) [1700846]
+- [net] bpf: verifier: reorder stack size check with dead code sanitization (Yauheni Kaliuta) [1700846]
+- [tools] selftests: bpf: verifier: add tests for JSET interpretation (Yauheni Kaliuta) [1700846]
+- [net] bpf: verifier: teach the verifier to reason about the BPF_JSET instruction (Yauheni Kaliuta) [1700846]
+- [tools] selftests: bpf: add trivial JSET tests (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Add BPF_LD_IMM64 to the line_info test (Yauheni Kaliuta) [1700846]
+- [net] bpf: Ensure line_info.insn_off cannot point to insn with zero code (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: do not force gcc as CC (Yauheni Kaliuta) [1700846]
+- [tools] bpf: fix up uapi helper description and sync bpf header with tools (Yauheni Kaliuta) [1700846]
+- [net] bpf: log struct/union attribute for forward type (Yauheni Kaliuta) [1700846]
+- [tools] bpf: sk_msg, add tests for size field (Yauheni Kaliuta) [1700846]
+- [tools] bpf: add tools lib/include support sk_msg_md size field (Yauheni Kaliuta) [1700846]
+- [include] bpf: sockmap, metadata support for reporting size of msg (Yauheni Kaliuta) [1700846]
+- [net] bpf: correct slot_type marking logic to allow more stack slot sharing (Yauheni Kaliuta) [1700846]
+- [kernel] bpf: support raw tracepoints in modules (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add an option to prevent auto-mount of bpffs, tracefs (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: attempt to mount tracefs if required for tracelog cmd (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: check precise {func, line, jited_line}_info_rec_size in test_btf (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: fix memleak by freeing line_info (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: support pretty print with kind_flag set (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: refactor btf_dumper_int_bits() (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: test kernel bpffs map pretty print with struct kind_flag (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: add test_btf unit tests for kind_flag (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: sync btf.h header from kernel to tools (Yauheni Kaliuta) [1700846]
+- [net] bpf: enable cgroup local storage map pretty print with kind_flag (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: fix struct/union/fwd types with kind_flag (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: refactor btf_int_bits_seq_show() (Yauheni Kaliuta) [1700846]
+- [net] bpf: remove useless version check for prog load (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix -Wmissing declaration warnings (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix warning on struct bpf_prog_linfo definition (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add a prog array map update example to documentation (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix examples in documentation for bpftool prog (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add doc for -m option to bpftool-prog.rst (Yauheni Kaliuta) [1700846]
+- [net] bpf: add self-check logic to liveness analysis (Yauheni Kaliuta) [1700846]
+- [net] bpf: improve stacksafe state comparison (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: check insn processed in test_verifier (Yauheni Kaliuta) [1700846]
+- [net] bpf: speed up stacksafe check (Yauheni Kaliuta) [1700846]
+- [net] bpf: verbose log bpf_line_info in verifier (Yauheni Kaliuta) [1700846]
+- [net] bpf: Create a new btf_name_by_offset() for non type name use case (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Fix sk lookup usage in test_sock_addr (Yauheni Kaliuta) [1700846]
+- [net] bpf: remove obsolete prog->aux sanitation in bpf_insn_prepare_dump (Yauheni Kaliuta) [1700846]
+- [net] bpf: verifier: make sure callees don't prune with caller differences (Yauheni Kaliuta) [1700846]
+- [tools] bpf: sync tools/include/uapi/linux/bpf.h (Yauheni Kaliuta) [1700846]
+- [net] bpf: include sub program tags in bpf_prog_info (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Remove !func_info and !line_info check from test_btf and bpftool (Yauheni Kaliuta) [1700846]
+- [net] bpf: Remove bpf_dump_raw_ok() check for func_info and line_info (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: dual license all files (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: replace Netronome boilerplate with SPDX license headers (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix SPDX format in headers (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add btf annotations for cgroup_local_storage maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: add bpffs pretty print for cgroup local storage maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: pass struct btf pointer to the map_check_btf() callback (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: use __bpf_constant_htons in test_prog.c (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix bpf_jit_limit knob for PAGE_SIZE >= 64K (Yauheni Kaliuta) [1700846]
+- [arm64] bpf: arm64: Enable arm64 jit to provide bpf_line_info (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: use proper type when passing prog_type (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: rename *_info_cnt to nr_*_info (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: sync kernel uapi bpf.h to tools directory (Yauheni Kaliuta) [1700846]
+- [net] bpf: rename *_info_cnt to nr_*_info in bpf_prog_info (Yauheni Kaliuta) [1700846]
+- [net] bpf: clean up bpf_prog_get_info_by_fd() (Yauheni Kaliuta) [1700846]
+- [tools] bpf: bpftool: Fix newline and p_err issue (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add missing pointer dereference for map stacktrace fixup (Yauheni Kaliuta) [1700846]
+- [net] bpf: relax verifier restriction on BPF_MOV | BPF_ALU (Yauheni Kaliuta) [1700846]
+- [tools] media: bpf: add bpf function to report mouse movement (Yauheni Kaliuta) [1700846]
+- [include] bpf: fix documentation for eBPF helpers (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: bpftool: Print bpf_line_info during prog dump (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: Add btf_line_info support to libbpf (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: Refactor and bug fix on the bpf_func_info loading logic (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Add unit tests for bpf_line_info (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Refactor and bug fix in test_func_type in test_btf.c (Yauheni Kaliuta) [1700846]
+- [tools] bpf: tools: Sync uapi bpf.h (Yauheni Kaliuta) [1700846]
+- [include] bpf: Add bpf_line_info support (Yauheni Kaliuta) [1700846]
+- [net] net/flow_dissector: correctly cap nhoff and thoff in case of BPF (Yauheni Kaliuta) [1700846]
+- [net] selftests/bpf: use thoff instead of nhoff in BPF flow dissector (Yauheni Kaliuta) [1700846]
+- [tools] selftests: bpf: update testcases for BPF_ALU | BPF_ARSH (Yauheni Kaliuta) [1700846]
+- [net] bpf: verifier remove the rejection on BPF_ALU | BPF_ARSH (Yauheni Kaliuta) [1700846]
+- [net] bpf: interpreter support BPF_ALU | BPF_ARSH (Yauheni Kaliuta) [1700846]
+- [s390] s390: bpf: implement jitting of BPF_ALU | BPF_ARSH | BPF_* (Yauheni Kaliuta) [1700846]
+- [powerpc] ppc: bpf: implement jitting of BPF_ALU | BPF_ARSH | BPF_* (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Expect !info.func_info and insn_off name changes in test_btf/libbpf/bpftool (Yauheni Kaliuta) [1700846]
+- [tools] bpf: tools: Sync uapi bpf.h for the name changes in bpf_func_info (Yauheni Kaliuta) [1700846]
+- [net] bpf: Change insn_offset to insn_off in bpf_func_info (Yauheni Kaliuta) [1700846]
+- [net] bpf: Improve the info.func_info and info.func_info_rec_size behavior (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add a command to dump the trace pipe (Yauheni Kaliuta) [1700846]
+- [arm64] arm64/bpf: don't allocate BPF JIT programs in module memory (Yauheni Kaliuta) [1700846]
+- [net] bpf: add __weak hook for allocating executable memory (Yauheni Kaliuta) [1700846]
+- [net] bpf: add per-insn complexity limit (Yauheni Kaliuta) [1700846]
+- [net] bpf: improve verifier branch analysis (Yauheni Kaliuta) [1700846]
+- [net] bpf: check pending signals while verifying programs (Yauheni Kaliuta) [1700846]
+- [tools] selftests: add a test for bpf_prog_test_run_xattr (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: add bpf_prog_test_run_xattr (Yauheni Kaliuta) [1700846]
+- [tools] tools: sync uapi/linux/bpf.h (Yauheni Kaliuta) [1700846]
+- [net] bpf: respect size hint to BPF_PROG_TEST_RUN if present (Yauheni Kaliuta) [1700846]
+- [samples] samples: bpf: fix: seg fault with NULL pointer arg (Yauheni Kaliuta) [1700846]
+- [powerpc] bpf: powerpc64: optimize JIT passes for bpf function calls (Yauheni Kaliuta) [1700846]
+- [tools] bpf: allow BPF read access to qdisc pkt_len (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Fix license in README.rst (Yauheni Kaliuta) [1700846]
+- [net] bpf: Fix memleak in aux->func_info and aux->btf (Yauheni Kaliuta) [1700846]
+- [samples] samples: bpf: get ifindex from ifname (Yauheni Kaliuta) [1700846]
+- [samples] samples: bpf: improve xdp1 example (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Apply F_NEEDS_EFFICIENT_UNALIGNED_ACCESS to more ACCEPT test cases (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Make more use of 'any' alignment in test_verifier.c (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Adjust F_NEEDS_EFFICIENT_UNALIGNED_ACCESS handling in test_verifier.c (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Add BPF_F_ANY_ALIGNMENT (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Improve socket lookup reuseport documentation (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Support sk lookup in netns with id 0 (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Fix verifier log string check for bad alignment (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add owner_prog_type and owner_jited to bpftool output (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: mark offloaded programs more explicitly in plain output (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix bash completion for new map types (queue and stack) (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix bash completion for bpftool prog (attach|detach) (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: use "/proc/self/" i.o. crafting links with getpid() (Yauheni Kaliuta) [1700846]
+- [arm64] arm64/bpf: use movn/movk/movk sequence to generate kernel addresses (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: make libbpf _GNU_SOURCE friendly (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix a bitfield pretty print issue (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Fix various lib and testsuite build failures on 32-bit (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: add addition type tests to test_btf (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: fix two test_btf unit test cases (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: check name validity for various types (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add config fragment CONFIG_FTRACE_SYSCALLS (Yauheni Kaliuta) [1700846]
+- [tools] bpf: test_sockmap, add options for msg_pop_data() helper (Yauheni Kaliuta) [1700846]
+- [tools] bpf: add msg_pop_data helper to tools (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Document API and ABI conventions (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Verify versioned symbols (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Add version script for DSO (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Name changing for btf_get_from_id (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: change selftest test_btf for both jit and non-jit (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: support proper non-jit func info (Yauheni Kaliuta) [1700846]
+- [arm64] bpf, arm64: fix getting subprog addr from aux for calls (Yauheni Kaliuta) [1700846]
+- [net] bpf, ppc64: generalize fetching subprog into bpf_jit_get_func_addr (Yauheni Kaliuta) [1700846]
+- [tools] bpf: align map type names formatting (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: fix spelling mistake "Memmber" -> "Member" (Yauheni Kaliuta) [1700846]
+- [net] bpf, tags: Fix DEFINE_PER_CPU expansion (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Add BPF_MAP_TYPE_QUEUE and BPF_MAP_TYPE_STACK to bpftool-map (Yauheni Kaliuta) [1700846]
+- [samples] samples: bpf: fix: error handling regarding kprobe_events (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: make bpf_object__open default to UNSPEC (Yauheni Kaliuta) [1700846]
+- [tools] bpf: add skb->tstamp r/w access from tc clsact and cg skb progs (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix integer overflow in queue_stack_map (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: fix spelling mistake "memeory" -> "memory" (Yauheni Kaliuta) [1700846]
+- [net] bpf, lpm: make longest_prefix_match() faster (Yauheni Kaliuta) [1700846]
+- [tools] bpf: adding tests for map_in_map helpber in libbpf (Yauheni Kaliuta) [1700846]
+- [tools] bpf: adding support for map in map in libbpf (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: don't specify prog name if kernel doesn't support it (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: remove map name retry from bpf_create_map_xattr (Yauheni Kaliuta) [1700846]
+- [tools] bpf, libbpf: introduce bpf_object__probe_caps to test BPF capabilities (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: make sure bpf headers are c++ include-able (Yauheni Kaliuta) [1700846]
+- [tools] bpf: fix a libbpf loader issue (Yauheni Kaliuta) [1700846]
+- [include] bpf: fix a compilation error when CONFIG_BPF_SYSCALL is not defined (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: bpftool: add support for func types (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: enhance test_btf file testing to test func info (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: refactor to implement btf_get_from_id() in lib/bpf (Yauheni Kaliuta) [1700846]
+- [samples] tools/bpf: do not use pahole if clang/llvm can generate BTF sections (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: add support to read .BTF.ext sections (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: extends test_btf to test load/retrieve func_type info (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: add new fields for program load in lib/bpf (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: sync kernel uapi bpf.h header to tools directory (Yauheni Kaliuta) [1700846]
+- [net] bpf: Introduce bpf_func_info (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: Add tests for BTF_KIND_FUNC_PROTO and BTF_KIND_FUNC (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: Sync kernel btf.h header (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: Add BTF_KIND_FUNC and BTF_KIND_FUNC_PROTO (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: Break up btf_type_is_void() (Yauheni Kaliuta) [1700846]
+- [tools] tools: add selftest for BPF_F_ZERO_SEED (Yauheni Kaliuta) [1700846]
+- [tools] tools: sync linux/bpf.h (Yauheni Kaliuta) [1700846]
+- [include] bpf: move BPF_F_QUERY_EFFECTIVE after map flags (Yauheni Kaliuta) [1700846]
+- [net] bpf: allow zero-initializing hash map seed (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: retry map creation without the name (Yauheni Kaliuta) [1700846]
+- [net] bpf: allocate local storage buffers using GFP_ATOMIC (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix off-by-one error in adjust_subprog_starts (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix null pointer dereference on pointer offload (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: make libbfd optional (Yauheni Kaliuta) [1700846]
+- [net] net/bpf: split VLAN_PRESENT bit handling from VLAN_TCI (Yauheni Kaliuta) [1700846]
+- [powerpc] net/bpf_jit: PPC: split VLAN_PRESENT bit handling from VLAN_TCI (Yauheni Kaliuta) [1700846]
+- [net] net/skbuff: add macros for VLAN_PRESENT bit (Yauheni Kaliuta) [1700846]
+- [tools] selftest/bpf: Use bpf_sk_lookup_{tcp, udp} in test_sock_addr (Yauheni Kaliuta) [1700846]
+- [net] bpf: Support socket lookup in CGROUP_SOCK_ADDR progs (Yauheni Kaliuta) [1700846]
+- [net] bpf: Fix IPv6 dport byte order in bpf_sk_lookup_udp (Yauheni Kaliuta) [1700846]
+- [net] bpf: Extend the sk_lookup() helper to XDP hookpoint (Yauheni Kaliuta) [1700846]
+- [net] bpf: helper to pop data from messages (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix wrong helper enablement in cgroup local storage (Yauheni Kaliuta) [1700846]
+- [include] bpf: sk_msg program helper bpf_msg_push_data (Yauheni Kaliuta) [1700846]
+- [net] bpf: Fix IPv6 dport byte-order in bpf_sk_lookup (Yauheni Kaliuta) [1700846]
+- [net] bpf: Allow sk_lookup with IPv6 module (Yauheni Kaliuta) [1700846]
+- [net] net: core: Fix build with CONFIG_IPV6=m (Yauheni Kaliuta) [1700846]
+- [net] bpf: Fix dev pointer dereference from sk_skb (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix building without CONFIG_INET (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf: Fix bpf_program__next() API (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Fix uninitialized duration warning (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Test narrow loads with off > 0 for bpf_sock_addr (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Test narrow loads with off > 0 in test_verifier (Yauheni Kaliuta) [1700846]
+- [net] bpf: Allow narrow loads with offset > 0 (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: support loading flow dissector (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: add pinmaps argument to the load/loadall (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: add loadall command (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: add internal pin_name (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: bpf_program__pin: add special case for instances.nr == 1 (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: cleanup after partial failure in bpf_object__pin (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: rename flow dissector section to flow_dissector (Yauheni Kaliuta) [1700846]
+- [netdrv] bpf: do not pass netdev to translate() and prepare() offload callbacks (Yauheni Kaliuta) [1700846]
+- [net] bpf: pass prog instead of env to bpf_prog_offload_verifier_prep() (Yauheni Kaliuta) [1700846]
+- [netdrv] bpf: pass destroy() as a callback and remove its ndo_bpf subcommand (Yauheni Kaliuta) [1700846]
+- [include] bpf: pass translate() as a callback and remove its ndo_bpf subcommand (Yauheni Kaliuta) [1700846]
+- [netdrv] bpf: call verifier_prep from its callback in struct bpf_offload_dev (Yauheni Kaliuta) [1700846]
+- [net] bpf: call finalize() from its callback in struct bpf_offload_dev (Yauheni Kaliuta) [1700846]
+- [net] bpf: call verify_insn from its callback in struct bpf_offload_dev (Yauheni Kaliuta) [1700846]
+- [netdrv] bpf: pass a struct with offload callbacks to bpf_offload_dev_create() (Yauheni Kaliuta) [1700846]
+- [tools] kselftests/bpf: use ping6 as the default ipv6 ping binary when it exists (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: Improve handling of ENOENT on map dumps (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add a test case for sock_ops perf-event notification (Yauheni Kaliuta) [1700846]
+- [net] bpf: add perf event notificaton support for sock_ops (Yauheni Kaliuta) [1700846]
+- [net] bpf: let verifier to calculate and record max_pkt_offset (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: update references to other man pages in documentation (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: pass an argument to silence open_obj_pinned() (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix plain output and doc for --bpffs option (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: prevent infinite loop in get_fdinfo() (Yauheni Kaliuta) [1700846]
+- [samples] bpf_load: add map name to load_maps error message (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: adjust rlimit RLIMIT_MEMLOCK when loading programs, maps (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: enable (uncomment) all tests in test_libbpf.sh (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix bpf_prog_get_info_by_fd to return 0 func_lens for unpriv (Yauheni Kaliuta) [1700846]
+- [net] bpf: show main program address and length in bpf_prog_info (Yauheni Kaliuta) [1700846]
+- [net] bpf: show real jited address in bpf_prog_info->jited_ksyms (Yauheni Kaliuta) [1700846]
+- [net] bpf: show real jited prog address in /proc/kallsyms (Yauheni Kaliuta) [1700846]
+- [tools] bpf: test make sure to run unpriv test cases in test_verifier (Yauheni Kaliuta) [1700846]
+- [tools] bpf: add various test cases to test_verifier (Yauheni Kaliuta) [1700846]
+- [net] bpf: don't set id on after map lookup with ptr_to_map_val return (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Fix compile error in libbpf_attach_type_by_name (Yauheni Kaliuta) [1700846]
+- [tools] kselftests/bpf: use ping6 as the default ipv6 ping binary if it exists (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: add unlimited rlimit for flow_dissector_load (Yauheni Kaliuta) [1700846]
+- [net] bpf: add bpf_jit_limit knob to restrict unpriv allocations (Yauheni Kaliuta) [1700846]
+- [net] bpf: make direct packet write unclone more robust (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix leaking uninitialized memory on pop/peek helpers (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix direct packet write into pop/peek helpers (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix cg_skb types to hint access type in may_access_direct_pkt_data (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix direct packet access for flow dissector progs (Yauheni Kaliuta) [1700846]
+- [net] bpf: disallow direct packet access for unpriv in cg_skb (Yauheni Kaliuta) [1700846]
+- [tools] bpf: fix test suite to enable all unpriv program types (Yauheni Kaliuta) [1700846]
+- [net] bpf, btf: fix a missing check bug in btf_parse (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add config fragments BPF_STREAM_PARSER and XDP_SOCKETS (Yauheni Kaliuta) [1700846]
+- [net] bpf: devmap: fix wrong interface selection in notifier_call (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: fix completion for "bpftool map update" (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: print nb of cmds to stdout (not stderr) for batch mode (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: document restriction on '.' in names to pin in bpffs (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: fix return value comparison for tests in test_libbpf.sh (Yauheni Kaliuta) [1700846]
+- [tools] bpf, libbpf: simplify and cleanup perf ring buffer walk (Yauheni Kaliuta) [1700846]
+- [net] bpf, verifier: avoid retpoline for map push/pop/peek operation (Yauheni Kaliuta) [1700846]
+- [net] bpf, verifier: remove unneeded flow key in check_helper_mem_access (Yauheni Kaliuta) [1700846]
+- [net] bpf, verifier: reject xadd on flow key memory (Yauheni Kaliuta) [1700846]
+- [net] bpf, verifier: fix register type dump in xadd and st (Yauheni Kaliuta) [1700846]
+- [net] ulp: remove uid and user_visible members (Yauheni Kaliuta) [1700846]
+- [tools] bpf: test_sockmap add options to use msg_push_data (Yauheni Kaliuta) [1700846]
+- [tools] bpf: libbpf support for msg_push_data (Yauheni Kaliuta) [1700846]
+- [tools] Sync uapi/bpf.h to tools/include (Yauheni Kaliuta) [1700846]
+- [net] bpf: add tests for direct packet access from CGROUP_SKB (Yauheni Kaliuta) [1700846]
+- [net] bpf: add cg_skb_is_valid_access for BPF_PROG_TYPE_CGROUP_SKB (Yauheni Kaliuta) [1700846]
+- [tools] bpf, libbpf: use correct barriers in perf ring buffer walk (Yauheni Kaliuta) [1700846]
+- [tools] tools, perf: add and use optimized ring_buffer_{read_head, write_tail} helpers (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add missing executables to .gitignore (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add test cases for queue and stack maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: add MAP_LOOKUP_AND_DELETE_ELEM syscall (Yauheni Kaliuta) [1700846]
+- [net] bpf: add queue and stack maps (Yauheni Kaliuta) [1700846]
+- [net] bpf/verifier: add ARG_PTR_TO_UNINIT_MAP_VALUE (Yauheni Kaliuta) [1700846]
+- [net] bpf/syscall: allow key to be null in map functions (Yauheni Kaliuta) [1700846]
+- [net] bpf: rename stack trace map operations (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: use 4 context mode for the NFP disasm (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: fix file resource leak in load_kallsyms (Yauheni Kaliuta) [1700846]
+- [tools] bpf: sockmap, add msg_peek tests to test_sockmap (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap, support for msg_peek in sk_msg with redirect ingress (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap, fix skmsg recvmsg handler to track size correctly (Yauheni Kaliuta) [1700846]
+- [include] bpf: skmsg, improve sk_msg_used_element to work in cork context (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Per-symbol visibility for DSO (Yauheni Kaliuta) [1700846]
+- [tools] bpf, tls: add tls header to tools infrastructure (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: add map create command (Yauheni Kaliuta) [1700846]
+- [tools] bpf: bpftool, add flag to allow non-compat map definitions (Yauheni Kaliuta) [1700846]
+- [tools] bpf: bpftool, add support for attaching programs to maps (Yauheni Kaliuta) [1700846]
+- [maintainers] bpf, doc: add maintainers entry to related files (Yauheni Kaliuta) [1700846]
+- [tools] bpf: add tls support for testing in test_sockmap (Yauheni Kaliuta) [1700846]
+- [net] tls: add bpf support to sk_msg handling (Yauheni Kaliuta) [1700846]
+- [net] tls: replace poll implementation with read hook (Yauheni Kaliuta) [1700846]
+- [net] tls: convert to generic sk_msg interface (Yauheni Kaliuta) [1700846]
+- [net] bpf, sockmap: convert to generic sk_msg interface (Yauheni Kaliuta) [1700846]
+- [net] tcp, ulp: remove ulp bits from sockmap (Yauheni Kaliuta) [1700846]
+- [net] tcp, ulp: enforce sock_owned_by_me upon ulp init and cleanup (Yauheni Kaliuta) [1700846]
+- [net] net/tls: Make function get_rec() static (Yauheni Kaliuta) [1700846]
+- [net] net/tls: Mark the end in scatterlist table (Yauheni Kaliuta) [1700846]
+- [net] tls: Fixed a memory leak during socket close (Yauheni Kaliuta) [1700846]
+- [net] net/tls: Removed redundant checks for non-NULL (Yauheni Kaliuta) [1700846]
+- [net] tls: Add support for inplace records encryption (Yauheni Kaliuta) [1700846]
+- [net] tls: Remove redundant vars from tls record structure (Yauheni Kaliuta) [1700846]
+- [net] net/tls: Fixed race condition in async encryption (Yauheni Kaliuta) [1700846]
+- [net] tls: Fix socket mem accounting error under async encryption (Yauheni Kaliuta) [1700846]
+- [net] net/tls: Add support for async encryption of records for performance (Yauheni Kaliuta) [1700846]
+- [net] tls: Remove dead code in tls_sw_sendmsg (Yauheni Kaliuta) [1700846]
+- [net] net/tls: Fixed return value when tls_complete_pending_work() fails (Yauheni Kaliuta) [1700846]
+- [net] bpf: wait for running BPF programs when updating map-in-map (Yauheni Kaliuta) [1700846]
+- [tools] selftests: bpf: install script with_addr.sh (Yauheni Kaliuta) [1700846]
+- [tools] selftests: bpf: add config fragment LWTUNNEL (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: use proper type and uapi perf_event.h header for libbpf (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add XDP selftests for modifying and popping VLAN headers (Yauheni Kaliuta) [1700846]
+- [tools] bpf: make TC vlan bpf_helpers avail to selftests (Yauheni Kaliuta) [1700846]
+- [net] net: fix generic XDP to handle if eth header was mangled (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: test_verifier, check bpf_map_lookup_elem access in bpf prog (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: test_verifier, change names of fixup maps (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: bpftool, print strerror when map lookup error occurs (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: bpftool, split the function do_dump() (Yauheni Kaliuta) [1700846]
+- [net] bpf: return EOPNOTSUPP when map lookup isn't supported (Yauheni Kaliuta) [1700846]
+- [net] bpf: error handling when map_lookup_elem isn't supported (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: Fix a missing check bug (Yauheni Kaliuta) [1700846]
+- [net] bpf: allow offload of programs with BPF-to-BPF function calls (Yauheni Kaliuta) [1700846]
+- [net] bpf: add verifier callback to get stack usage info for offloaded progs (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: relicense libbpf as LGPL-2.1 OR BSD-2-Clause (Yauheni Kaliuta) [1700846]
+- [samples] bpf, tracex3_user: erase "ARRAY_SIZE" redefined (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Use __u32 instead of u32 in bpf_program__load (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Make include guards consistent (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Consistent prefixes for interfaces in str_error.h (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Consistent prefixes for interfaces in nlattr.h (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Consistent prefixes for interfaces in libbpf.h (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Move __dump_nlmsg_t from API to implementation (Yauheni Kaliuta) [1700846]
+- [documentation] Documentation: Describe bpf reference tracking (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Add C tests for reference tracking (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Support loading individual progs (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Add tests for reference tracking (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Generalize dummy program types (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Add helper to retrieve socket in BPF (Yauheni Kaliuta) [1700846]
+- [include] bpf: Introduce bpf_skb_ancestor_cgroup_id helper (Yauheni Kaliuta) [1700846]
+- [tools] bpf: sync include/uapi/linux/bpf.h to tools/include/uapi/linux/bpf.h (Yauheni Kaliuta) [1700846]
+- [tools] bpf: sync bpf.h uapi with tools/ (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Sync bpf.h to tools/ (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Sync bpf.h uapi to tools/ (Yauheni Kaliuta) [1700846]
+- [tools] bpf: sync bpf.h to tools/ (Yauheni Kaliuta) [1700846]
+- [net] bpf: Add reference tracking to verifier (Yauheni Kaliuta) [1700846]
+- [net] bpf: Macrofy stack state copy (Yauheni Kaliuta) [1700846]
+- [include] bpf: Add PTR_TO_SOCKET verifier type (Yauheni Kaliuta) [1700846]
+- [net] bpf: Generalize ptr_or_null regs check (Yauheni Kaliuta) [1700846]
+- [net] bpf: Reuse canonical string formatter for ctx errs (Yauheni Kaliuta) [1700846]
+- [net] bpf: Add iterator for spilled registers (Yauheni Kaliuta) [1700846]
+- [net] bpf: don't accept cgroup local storage with zero value size (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: cgroup local storage-based network counters (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: extend test_cgrp2_attach2 test to use per-cpu cgroup storage (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: extend the storage test to test per-cpu cgroup storage (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add verifier per-cpu cgroup storage tests (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: add support for PERCPU_CGROUP_STORAGE maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: don't allow create maps of per-cpu cgroup local storages (Yauheni Kaliuta) [1700846]
+- [net] bpf: introduce per-cpu cgroup local storage (Yauheni Kaliuta) [1700846]
+- [net] bpf: rework cgroup storage pointer passing (Yauheni Kaliuta) [1700846]
+- [net] bpf: extend cgroup bpf core to allow multiple cgroup storage types (Yauheni Kaliuta) [1700846]
+- [net] bpf/test_run: support cgroup local storage (Yauheni Kaliuta) [1700846]
+- [net] bpf: harden flags check in cgroup_storage_update_elem() (Yauheni Kaliuta) [1700846]
+- [net] bpf: permit CGROUP_DEVICE programs accessing helper bpf_get_current_cgroup_id() (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Test libbpf_{prog,attach}_type_by_name (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Use libbpf_attach_type_by_name in test_socket_cookie (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Support sk_skb/stream_{parser, verdict} section names (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Support cgroup_skb/{e,in}gress section names (Yauheni Kaliuta) [1700846]
+- [tools] libbpf: Introduce libbpf_attach_type_by_name (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: Fix bpftool net output (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: add support for BPF_MAP_TYPE_REUSEPORT_SOCKARRAY maps (Yauheni Kaliuta) [1700846]
+- [tools] bpf: test_maps, only support ESTABLISHED socks (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap, fix transition through disconnect without close (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap only allow ESTABLISHED sock state (Yauheni Kaliuta) [1700846]
+- [net] bpf: remove redundant null pointer check before consume_skb (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: fix compilation failure (Yauheni Kaliuta) [1700846]
+- [net] flow_dissector: fix build failure without CONFIG_NET (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: fix a compilation failure (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: remove duplicated includes (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: bpftool: improve output format for bpftool net (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: fix bpf_flow.c build (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: test bpf flow dissection (Yauheni Kaliuta) [1700846]
+- [tools] flow_dissector: implements eBPF parser (Yauheni Kaliuta) [1700846]
+- [tools] bpf: support flow dissector in libbpf and bpftool (Yauheni Kaliuta) [1700846]
+- [include] flow_dissector: implements flow dissector BPF hook (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: Fix end boundary calculation for type section (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: fix a netlink recv issue (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: bpftool: support prog array map and map of maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: add bpffs pretty print for program array map (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: bpftool: add net support (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: add more netlink functionalities in lib/bpf (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: move bpf/lib netlink related functions into a new file (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf/test_progs: do not check errno == 0 (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add missing executables to .gitignore (Yauheni Kaliuta) [1700846]
+- [net] bpf/verifier: fix verifier instability (Yauheni Kaliuta) [1700846]
+- [net] bpf: avoid misuse of psock when TCP_ULP_BPF collides with another ULP (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: bpftool, add xskmap in map types (Yauheni Kaliuta) [1700846]
+- [tools] bpf: add selftest for bpf's (set|get)_sockopt for SAVE_SYN (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: xdpsock, minor fixes (Yauheni Kaliuta) [1700846]
+- [samples] bpf: add TCP_SAVE_SYN/TCP_SAVED_SYN sample program (Yauheni Kaliuta) [1700846]
+- [net] bpf: add TCP_SAVE_SYN/TCP_SAVED_SYN options for bpf_(set|get)sockopt (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: bpftool: add btf percpu map formated dump (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: add bpffs percpu map pretty print tests in test_btf (Yauheni Kaliuta) [1700846]
+- [net] bpf: add bpffs pretty print for percpu arraymap/hash/lru_hash (Yauheni Kaliuta) [1700846]
+- [net] bpf/verifier: display non-spill stack slot types in print_verifier_state (Yauheni Kaliuta) [1700846]
+- [tools] bpf: use --cgroup in test_suite if supplied (Yauheni Kaliuta) [1700846]
+- [tools] bpf: sockmap test remove shutdown() calls (Yauheni Kaliuta) [1700846]
+- [net] bpf: remove duplicated include from syscall.c (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap, decrement copied count correctly in redirect error case (Yauheni Kaliuta) [1700846]
+- [net] bpf, sockmap: fix psock refcount leak in bpf_tcp_recvmsg (Yauheni Kaliuta) [1700846]
+- [net] bpf, sockmap: fix potential use after free in bpf_tcp_close (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: return from do_event_pipe() on bad arguments (Yauheni Kaliuta) [1700846]
+- [net] bpf: use per htab salt for bucket hash (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap: write_space events need to be passed to TCP handler (Yauheni Kaliuta) [1700846]
+- [net] bpf, sockmap: fix sock hash count in alloc_sock_hash_elem (Yauheni Kaliuta) [1700846]
+- [net] bpf, sockmap: fix sock_hash_alloc and reject zero-sized keys (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix redirect to map under tail calls (Yauheni Kaliuta) [1700846]
+- [netdrv] veth: Support per queue XDP ring (Yauheni Kaliuta) [1700846]
+- [netdrv] veth: Add XDP TX and REDIRECT (Yauheni Kaliuta) [1700846]
+- [net] xdp: Helpers for disabling napi_direct of xdp_return_frame (Yauheni Kaliuta) [1700846]
+- [net] bpf: Make redirect_info accessible from modules (Yauheni Kaliuta) [1700846]
+- [netdrv] veth: Add ndo_xdp_xmit (Yauheni Kaliuta) [1700846]
+- [netdrv] veth: Handle xdp_frames in xdp napi ring (Yauheni Kaliuta) [1700846]
+- [netdrv] veth: Avoid drops by oversized packets when XDP is enabled (Yauheni Kaliuta) [1700846]
+- [netdrv] veth: Add driver XDP (Yauheni Kaliuta) [1700846]
+- [net] net: Export skb_headers_offset_update (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: fix bpf selftest test_cgroup_storage failure (Yauheni Kaliuta) [1700846]
+- [net] bpf, sockmap: fix sock_map_ctx_update_elem race with exist/noexist (Yauheni Kaliuta) [1700846]
+- [net] bpf, sockmap: fix map elem deletion race with smap_stop_sock (Yauheni Kaliuta) [1700846]
+- [net] bpf, sockmap: fix leakage of smap_psock_map_entry (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix a rcu usage warning in bpf_prog_array_copy_core() (Yauheni Kaliuta) [1700846]
+- [tools] bpf: test: fix spelling mistake "REUSEEPORT" -> "REUSEPORT" (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Selftest for bpf_skb_ancestor_cgroup_id (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Add cgroup id helpers to bpf_helpers.h (Yauheni Kaliuta) [1700846]
+- [net] bpf: decouple btf from seq bpf fs dump and enable more maps (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Test BPF_PROG_TYPE_SK_REUSEPORT (Yauheni Kaliuta) [1700846]
+- [tools] bpf: test BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Refactor ARRAY_SIZE macro to bpf_util.h (Yauheni Kaliuta) [1700846]
+- [net] bpf: Introduce BPF_PROG_TYPE_SK_REUSEPORT (Yauheni Kaliuta) [1700846]
+- [net] bpf: Introduce BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (Yauheni Kaliuta) [1700846]
+- [net] net: Add ID (if needed) to sock_reuseport and expose reuseport_lock (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpf: add bpffs pretty print btf test for hash/lru_hash maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: btf: add pretty print for hash/lru_hash maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: fix bpffs non-array map seq_show issue (Yauheni Kaliuta) [1700846]
+- [powerpc] powerpc/Makefiles: Convert ifeq to ifdef where possible (Yauheni Kaliuta) [1700846]
+- [net] bpf: introduce update_effective_progs() (Yauheni Kaliuta) [1700846]
+- [s390] s390: fix br_r1_trampoline for machines without exrl (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: fix a typo in map in map test (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpf: fix BTF code added twice to different trees (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: extend test_cgrp2_attach2 test to use cgroup storage (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add a cgroup storage test (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: add verifier cgroup storage tests (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: add support for CGROUP_STORAGE maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: introduce the bpf_get_local_storage() helper function (Yauheni Kaliuta) [1700846]
+- [net] bpf: don't allow create maps of cgroup local storages (Yauheni Kaliuta) [1700846]
+- [net] bpf/verifier: introduce BPF_PTR_TO_MAP_VALUE (Yauheni Kaliuta) [1700846]
+- [net] bpf: extend bpf_prog_array to store pointers to the cgroup storage (Yauheni Kaliuta) [1700846]
+- [net] bpf: allocate cgroup storage entries on attaching bpf programs (Yauheni Kaliuta) [1700846]
+- [net] bpf: pass a pointer to a cgroup storage using pcpu variable (Yauheni Kaliuta) [1700846]
+- [net] bpf: introduce cgroup storage maps (Yauheni Kaliuta) [1700846]
+- [net] bpf: add ability to charge bpf maps memory dynamically (Yauheni Kaliuta) [1700846]
+- [net] bpf: verifier: MOV64 don't mark dst reg unbounded (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Test for get_socket_cookie (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Add bpf_get_socket_cookie to bpf_helpers.h (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Sync bpf.h to tools/ (Yauheni Kaliuta) [1700846]
+- [net] bpf: Support bpf_get_socket_cookie in more prog types (Yauheni Kaliuta) [1700846]
+- [samples] samples: bpf: convert xdpsock_user.c to libbpf (Yauheni Kaliuta) [1700846]
+- [samples] samples: bpf: convert xdp_fwd_user.c to libbpf (Yauheni Kaliuta) [1700846]
+- [tools] tools: libbpf: add bpf_object__find_program_by_title() (Yauheni Kaliuta) [1700846]
+- [tools] tools: libbpf: handle NULL program gracefully in bpf_program__nth_fd() (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: Add BTF build flags to Makefile (Yauheni Kaliuta) [1700846]
+- [tools] tools/bpftool: ignore build products (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Add Python 3 support to selftests scripts for bpf (Yauheni Kaliuta) [1700846]
+- [tools] bpf: btf: fix inconsistent IS_ERR and PTR_ERR (Yauheni Kaliuta) [1700846]
+- [net] bpf: sockmap: remove redundant pointer sg (Yauheni Kaliuta) [1700846]
+- [net] bpf: bpf_prog_array_alloc() should return a generic non-rcu pointer (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpftool: don't pass FEATURES_DUMP to libbpf (Yauheni Kaliuta) [1700846]
+- [tools] tools: libbpf: remove libelf-getphdrnum feature detection (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: test_cgrp2_sock2: fix an off by one (Yauheni Kaliuta) [1700846]
+- [samples] samples: bpf: ensure that we don't load over MAX_PROGS programs (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Test case for BPF_SOCK_OPS_TCP_LISTEN_CB (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Better verification in test_tcpbpf (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Switch test_tcpbpf_user to cgroup_helpers (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Fix const'ness in cgroup_helpers (Yauheni Kaliuta) [1700846]
+- [tools] bpf: Sync bpf.h to tools/ (Yauheni Kaliuta) [1700846]
+- [net] bpf: Add BPF_SOCK_OPS_TCP_LISTEN_CB (Yauheni Kaliuta) [1700846]
+- [tools] bpf: btf: print map dump and lookup with btf info (Yauheni Kaliuta) [1700846]
+- [tools] bpf: btf: add btf print functionality (Yauheni Kaliuta) [1700846]
+- [tools] bpf: btf: export btf types and name by offset from lib (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpf: build and install man page for eBPF helpers from bpftool/ (Yauheni Kaliuta) [1700846]
+- [tools] tools: bpf: synchronise BPF UAPI header with tools (Yauheni Kaliuta) [1700846]
+- [include] bpf: fix documentation for eBPF helpers (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: add bash completion for cgroup tree command (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: document cgroup tree command (Yauheni Kaliuta) [1700846]
+- [tools] bpftool: introduce cgroup tree command (Yauheni Kaliuta) [1700846]
+- [tools] selftests/bpf: Test sys_connect BPF hooks with TFO (Yauheni Kaliuta) [1700846]
+- [samples] samples/bpf: Add xdp_sample_pkts example (Yauheni Kaliuta) [1700846]
+- [tools] trace_helpers.c: Add helpers to poll multiple perf FDs for events (Yauheni Kaliuta) [1700846]
+- [net] bpf: deal with kABI breakage in cgroups (Yauheni Kaliuta) [1700846]
+- [netdrv] nfp: bpf: fix static check error through tightening shift amount adjustment (Pablo Cascon) [1663986]
+- [netdrv] nfp: disable netpoll on representors (Pablo Cascon) [1663986]
+- [netdrv] nfp: validate the return code from dev_queue_xmit() (Pablo Cascon) [1663986]
+- [netdrv] nfp: fix simple vNIC mailbox length (Pablo Cascon) [1663986]
+- [netdrv] nfp: nsp: set higher timeout for flash bundle (Pablo Cascon) [1663986]
+- [netdrv] nfp: nsp: allow the use of DMA buffer (Pablo Cascon) [1663986]
+- [netdrv] nfp: nsp: move default buffer handling into its own function (Pablo Cascon) [1663986]
+- [netdrv] nfp: nsp: use fractional size of the buffer (Pablo Cascon) [1663986]
+- [netdrv] nfp: report RJ45 connector in ethtool (Pablo Cascon) [1663986]
+- [netdrv] nfp: remove ethtool flashing fallback (Pablo Cascon) [1663986]
+- [netdrv] nfp: Remove switchdev.h inclusion (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: fix code-gen bug on BPF_ALU | BPF_XOR | BPF_K (Pablo Cascon) [1663986]
+- [netdrv] nfp: devlink: allow flashing the device via devlink (Pablo Cascon) [1663986]
+- [netdrv] nfp: devlink: include vendor/product info in serial number (Pablo Cascon) [1663986]
+- [netdrv] nfp: devlink: use the generic manufacture identifier instead of vendor (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: cmsg: use struct_size() helper (Pablo Cascon) [1663986]
+- [netdrv] nfp: Implement ndo_get_port_parent_id() (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: complete ALU32 logic shift supports (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: correct the behavior for shifts by zero (Pablo Cascon) [1663986]
+- [netdrv] nfp: devlink: report the running and flashed versions (Pablo Cascon) [1663986]
+- [netdrv] nfp: nsp: add support for versions command (Pablo Cascon) [1663986]
+- [netdrv] nfp: devlink: report fixed versions (Pablo Cascon) [1663986]
+- [netdrv] nfp: devlink: report driver name and serial number (Pablo Cascon) [1663986]
+- [netdrv] nfp: use struct_size() in kzalloc() (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: enable MAC address sharing for offloadable devs (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: ensure MAC cleanup on address change (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: add infastructure for non-repr priv data (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: ensure deletion of old offloaded MACs (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: remove list infastructure from MAC offload (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: ignore offload of VF and PF repr MAC addresses (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: tidy tunnel related private data (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: support multiple memory units for filter offloads (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: increase cmesg reply timeout (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: optimize codegen for JSET with a constant (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: remove the trivial JSET optimization (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: fix cb_ident duplicate in indirect block register (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: allow to opt-out of RED offload (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: ensure TCP flags can be placed in IPv6 frame (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: implement jitting of BPF_ALU | BPF_ARSH | BPF_* (Pablo Cascon) [1663986]
+- [netdrv] nfp: convert to DEFINE_SHOW_ATTRIBUTE (Pablo Cascon) [1663986]
+- [netdrv] nfp: report more info when reconfiguration fails (Pablo Cascon) [1663986]
+- [netdrv] nfp: add offset to all TLV parsing errors (Pablo Cascon) [1663986]
+- [netdrv] nfp: add offloads on representors (Pablo Cascon) [1663986]
+- [netdrv] nfp: add locking around representor changes (Pablo Cascon) [1663986]
+- [netdrv] nfp: run don't require Qdiscs on representor netdevs (Pablo Cascon) [1663986]
+- [netdrv] nfp: run representor TX locklessly (Pablo Cascon) [1663986]
+- [netdrv] nfp: avoid oversized TSO headers with metadata prepend (Pablo Cascon) [1663986]
+- [netdrv] nfp: correct descriptor offsets in presence of metadata (Pablo Cascon) [1663986]
+- [netdrv] nfp: move queue variable init (Pablo Cascon) [1663986]
+- [netdrv] nfp: move temporary variables in nfp_net_tx_complete() (Pablo Cascon) [1663986]
+- [netdrv] nfp: copy only the relevant part of the TX descriptor for frags (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: prevent offload if rhashtable insert fails (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: release metadata on offload failure (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: add support for more threshold actions (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: add cls_u32 offload for simple band classification (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: add functions to update DSCP -> virtual queue map (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: calculate PRIO map len and check mailbox size (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: add GRED offload (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: wrap RED parameters in bands (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: add up bands for sto/non-sto stats (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: switch to extended stats for reading packet/byte counts (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: size threshold table to account for bands (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: pass band parameter to functions (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: map per-band symbols (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: restructure Qdisc handling (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: save RED's parameters (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: reset RED's child based on limit (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: build full Qdisc hierarchy based on graft notifications (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: allocate Qdisc child table (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: remember which Qdisc is root (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: track all offload-enabled qdiscs (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: keep track of all RED thresholds (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: rename qdiscs -> red_qdiscs (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: remove unnecessary code in flow lookup (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: remove TC egdev offloads (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: offload tunnel decap rules via indirect TC blocks (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: increase scope of netdev checking functions (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: allow non repr netdev offload (Pablo Cascon) [1663986]
+- [netdrv] nfp: use the new __netdev_tx_sent_queue() BQL optimisation (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: refuse RED offload with harddrop set (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: don't set negative threshold (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: provide more precise info about offload parameter validation (Pablo Cascon) [1663986]
+- [netdrv] nfp: parse vNIC TLV capabilities at alloc time (Pablo Cascon) [1663986]
+- [netdrv] nfp: pass ctrl_bar pointer to nfp_net_alloc (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: split qdisc offload code into a separate file (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: include geneve as supported offload tunnel type (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: use geneve and vxlan helpers (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: use the common netdev notifier (Pablo Cascon) [1663986]
+- [netdrv] nfp: register a notifier handler in a central location for the device (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: make nfp_fl_lag_changels_event() void (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: don't try to nack device unregister events (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: remove unnecessary iteration over devices (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: protect against mis-initializing atomic counters (Pablo Cascon) [1663986]
+- [netdrv] nfp: devlink port split support for 1x100G CXP NIC (Pablo Cascon) [1663986]
+- [netdrv] nfp: replace long license headers with SPDX (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: support pointers to other stack frames for BPF-to-BPF calls (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: account for BPF-to-BPF calls when preparing nfp JIT (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: ignore helper-related checks for BPF calls in nfp verifier (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: rename nfp_prog->stack_depth as nfp_prog->stack_frame_depth (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: allow control message sizing for map ops (Pablo Cascon) [1663986]
+- [netdrv] nfp: allow apps to request larger MTU on control vNIC (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: parse global BPF ABI version capability (Pablo Cascon) [1663986]
+- [netdrv] nfp: warn on experimental TLV types (Pablo Cascon) [1663986]
+- [netdrv] nfp: remove ndo_poll_controller (Pablo Cascon) [1663986]
+- [netdrv] nfp: replace spin_lock_bh with spin_lock in tasklet callback (Pablo Cascon) [1663986]
+- [netdrv] nfp: separate VXLAN and GRE feature handling (Pablo Cascon) [1663986]
+- [netdrv] nfp: validate rtsym accesses fall within the symbol (Pablo Cascon) [1663986]
+- [netdrv] nfp: prefix rtsym error messages with symbol name (Pablo Cascon) [1663986]
+- [netdrv] nfp: fix readq on absolute RTsyms (Pablo Cascon) [1663986]
+- [netdrv] nfp: make RTsym users handle absolute symbols correctly (Pablo Cascon) [1663986]
+- [netdrv] nfp: support access to absolute RTsyms (Pablo Cascon) [1663986]
+- [netdrv] nfp: convert all RTsym users to use new read/write helpers (Pablo Cascon) [1663986]
+- [netdrv] nfp: convert existing RTsym helpers to full target decoding (Pablo Cascon) [1663986]
+- [netdrv] nfp: pass cpp_id to nfp_cpp_map_area() (Pablo Cascon) [1663986]
+- [netdrv] nfp: add RTsym access helpers (Pablo Cascon) [1663986]
+- [netdrv] nfp: add basic errors messages to target logic (Pablo Cascon) [1663986]
+- [netdrv] nfp: save the MU locality field offset (Pablo Cascon) [1663986]
+- [netdrv] nfp: refactor the per-chip PCIe config (Pablo Cascon) [1663986]
+- [netdrv] nfp: add support for NFP5000 (Pablo Cascon) [1663986]
+- [netdrv] nfp: abm: look up MAC addresses via management FW (Pablo Cascon) [1663986]
+- [netdrv] nfp: add support for indirect HWinfo lookup (Pablo Cascon) [1663986]
+- [netdrv] nfp: interpret extended FW load result codes (Pablo Cascon) [1663986]
+- [netdrv] nfp: attempt FW load from flash (Pablo Cascon) [1663986]
+- [netdrv] nfp: encapsulate NSP command arguments into structs (Pablo Cascon) [1663986]
+- [netdrv] nfp: clean up return types in kdoc comments (Pablo Cascon) [1663986]
+- [netdrv] nfp: flower: allow matching on ipv4 UDP tunnel tos and ttl (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: xdp_adjust_tail support (Pablo Cascon) [1663986]
+- [netdrv] nfp: fix variable dereferenced before check in nfp_app_ctrl_rx_raw() (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: improve map offload info messages (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: remember maps by ID (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: allow receiving perf events on data queues (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: pass raw data buffer to nfp_bpf_event_output() (Pablo Cascon) [1663986]
+- [netdrv] nfp: allow control message reception on data queues (Pablo Cascon) [1663986]
+- [netdrv] nfp: move repr handling on RX path (Pablo Cascon) [1663986]
+- [netdrv] nfp: protect from theoretical size overflows on HW descriptor ring (Pablo Cascon) [1663986]
+- [netdrv] nfp: restore correct ordering of fields in rx ring structure (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: allow program sharing within ASIC (Pablo Cascon) [1663986]
+- [netdrv] nfp: add .ndo_init() and .ndo_uninit() callbacks (Pablo Cascon) [1663986]
+- [netdrv] nfp: add support for simultaneous driver and hw XDP (Pablo Cascon) [1663986]
+- [netdrv] nfp: avoid using getnstimeofday64() (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: migrate to advanced reciprocal divide in reciprocal_div.h (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: support u32 divide using reciprocal_div.h (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: support u16 and u32 multiplications (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: copy range info for all operands of all ALU operations (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: rename umin/umax to umin_src/umax_src (Pablo Cascon) [1663986]
+- [netdrv] nfp: make use of napi_consume_skb() (Pablo Cascon) [1663986]
+- [netdrv] nfp: implement netpoll ndo (thus enabling netconsole) (Pablo Cascon) [1663986]
+- [netdrv] nfp: fail probe if serial or interface id is missing (Pablo Cascon) [1663986]
+- [netdrv] nfp: expose ring stats of inactive rings via ethtool (Pablo Cascon) [1663986]
+- [netdrv] nfp: bpf: allow source ptr type be map ptr in memcpy optimization (Pablo Cascon) [1663986]
+- [netdrv] bpf: offload: keep the offload state per-ASIC (Pablo Cascon) [1663986]
+- [netdrv] bpf: offload: aggregate offloads per-device (Pablo Cascon) [1663986]
+- [tools] selftests/bpf: add test for sharing objects between netdevs (Ivan Vecera) [1708399]
+- [netdrv] netdevsim: allow program sharing between devices (Ivan Vecera) [1708399]
+- [net] bpf: offload: allow program and map sharing per-ASIC (Ivan Vecera) [1708399]
+- [netdrv] bpf: offload: keep the offload state per-ASIC (Ivan Vecera) [1708399]
+- [netdrv] bpf: offload: aggregate offloads per-device (Ivan Vecera) [1708399]
+- [net] bpf: offload: rename bpf_offload_dev_match() to bpf_offload_prog_map_match() (Ivan Vecera) [1708399]
+- [netdrv] netdevsim: associate bound programs with shared dev (Ivan Vecera) [1708399]
+- [netdrv] netdevsim: add shared netdevsim devices (Ivan Vecera) [1708399]
+- [netdrv] netdevsim: add switch_id attribute (Ivan Vecera) [1708399]
+
+* Wed Jun 12 2019 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-105.el8]
+- [infiniband] IB/mlx5: Remove set but not used variable (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: WQE dump jumps over first 16 bytes (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: Fix false compilation warning (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Remove redundant assignment (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Fix compilation warning in en_tc.c (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: Fix compilation warning in eq.c (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Fix the max MTU check in case of XDP (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Fix use-after-free after xdp_return_frame (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Fix scatter to CQE in DCT QP creation (Alaa Hleihel) [1691238]
+- [netdrv] Revert "net/mlx5e: Enable reporting checksum unnecessary also for L3 packets" (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Rx, Check ip headers sanity (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: FPGA, tls, idr remove on flow delete (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: FPGA, tls, hold rcu read lock a bit longer (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Consider tunnel type for encap contexts (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: E-Switch, Fix esw manager vport indication for more vport commands (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Correctly use the namespace type when allocating pedit action (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: ethtool, Allow legacy link-modes configuration via non-extended ptys (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: ethtool, Fix type analysis of advertised link-mode (Alaa Hleihel) [1691238]
+- [netdrv] net: mlx5: Add a missing check on idr_find, free buf (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Allow IPv4 ttl & IPv6 hop_limit rewrite for all L4 protocols (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Use mlx5 core to create/destroy a DEVX DCT (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: Fix DCT creation bad flow (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Fix bad flow upon DEVX mkey creation (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Add support for ODP for DEVX indirection mkey (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Manage indirection mkey upon DEVX flow for ODP (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: DEVX handling for indirection MKEY (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Fix access to non-existing receive queue (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Properly get the PF number phys port name ndo (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: Consolidate update FTE for all removal changes (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: Add a locked flag to node removal functions (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: Add modify FTE helper function (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: Fix multiple updates of steering rules in parallel (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Validate correct PD before prefetch MR (Alaa Hleihel) [1691238]
+- [infiniband] RDMA/mlx5: Introduce and reuse helper to identify ODP MR (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Protect against prefetch of invalid MR (Alaa Hleihel) [1691238]
+- [infiniband] net/mlx5: Make mlx5_cmd_exec_cb() a safe API (Alaa Hleihel) [1691238]
+- [infiniband] RDMA: Clean structures from CONFIG_INFINIBAND_ON_DEMAND_PAGING (Alaa Hleihel) [1691238]
+- [infiniband] RDMA/mlx5: Embed into the code flow the ODP config option (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5e: Add missing static function annotation (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Do not use hw_access_flags for be and CPU data (Alaa Hleihel) [1691238]
+- [netdrv] net/mlx5: Fix code style issue in mlx driver (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Fix the locking of SRQ objects in ODP events (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Make mlx5_ib_stage_odp_cleanup() static (Alaa Hleihel) [1691238]
+- [infiniband] IB/mlx5: Declare local functions 'static' (Alaa Hleihel) [1691238]
+- [netdrv] RDMA/mlx5: Delete declaration of already removed function (Alaa Hleihel) [1691238]
+- [netdrv] mlx5-core: Mark ConnectX-6 Dx as unsupported device (Alaa Hleihel) [1691236 1687434]
+- [netdrv] net/mlx5: Update the list of the PCI supported devices (Alaa Hleihel) [1691236 1687434]
+- [infiniband] IB/mlx5: Fix mapping of link-mode to IB width and speed (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: ethtool, Add ethtool support for 50Gbps per lane link modes (Alaa Hleihel) [1691236 1683102]
+- [infiniband] IB/mlx5: Add support for 50Gbps per lane link modes (Alaa Hleihel) [1691236 1683102]
+- [netdrv] net/mlx5: Add support to ext_* fields introduced in Port Type and Speed register (Alaa Hleihel) [1691236 1683102]
+- [include] net/mlx5: Add new fields to Port Type and Speed register (Alaa Hleihel) [1691236 1683102]
+- [netdrv] net/mlx5: Refactor queries to speed fields in Port Type and Speed register (Alaa Hleihel) [1691236 1683102]
+- [netdrv] net/mlx5e: Set peer flow needed also for multipath (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Update check for merged eswitch device (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Use hint to resolve route when in HW multipath mode (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Always query offloaded tc peer rule counter (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Re-attempt to offload flows on multipath port affinity events (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5: Emit port affinity event for multipath offloads (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Allow one failure when offloading tc encap rules under multipath (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Don't inherit flow flags on peer flow creation (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Activate HW multipath and handle port affinity based on FIB events (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5: Add multipath mode (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5: Use own workqueue for lag netdev events processing (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5: Expose lag operations in header file (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5: Use unsigned int bit instead of bool as a struct member (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Don't make internal use of errno to denote missing neigh (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Cleanup attach encap function (Alaa Hleihel) [1691236 1663236]
+- [netdrv] net/mlx5e: Remove 'parse_attr' argument in mlx5e_tc_add_fdb_flow() (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Introduce mlx5e_flow_esw_attr_init() helper (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Return the allocated flow directly from __mlx5e_add_fdb_flow (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Fix GRE key by controlling port tunnel entropy calculation (Alaa Hleihel) [1691236 1663240]
+- [include] net/mlx5: Introduce tunnel entropy control in PCMR register (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5: Use read-modify-write when changing PCMR register values (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Remove wrong and superfluous tc pedit header type check (Alaa Hleihel) [1691236]
+- [netdrv] drivers: net: use flow action infrastructure (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: support for two independent packet edit actions (Alaa Hleihel) [1691236]
+- [netdrv] flow_offload: add flow_rule and flow_match structures and use them (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, fix redirect resources availability check (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Fix a compilation warning in events.c (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: No command allowed when command interface is not ready (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Fix NULL pointer derefernce in set channels error flow (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Don't overwrite pedit action when multiple pedit used (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Update hw flows when encap source mac changed (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Use the inner headers to determine tc/pedit offload limitation on decap flows (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Properly set steering match levels for offloaded TC decap rules (Alaa Hleihel) [1691236 1663207]
+- [netdrv] net/mlx5e: Unblock setting vid 0 for VFs through the uplink rep (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Move to use common phys port names for vport representors (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Allow MAC invalidation while spoofchk is ON (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Take lock with IRQs disabled to avoid deadlock (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Fix wrong private flag usage causing checksum disable (Alaa Hleihel) [1691236]
+- [netdrv] Revert "net/mlx5e: E-Switch, Initialize eswitch only if eswitch manager" (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Fix flow creation on representors (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Fix how advise_mr() launches async work (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Fix check for supported user flags when creating a QP (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Fix cb_ident duplicate in indirect block register (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Fix wrong (zero) TX drop counter indication for representor (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Fix wrong error code return on FEC query failure (Alaa Hleihel) [1691236]
+- [infiniband] Revert "IB/mlx5: Fix long EEH recover time with NVMe offloads" (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Allow XRC INI usage via verbs in DEVX context (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: drop useless LIST_HEAD (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: fix semicolon.cocci warnings (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Signedness bug in UVERBS_HANDLER() (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Allocate the per-port Q counter shared when DEVX is supported (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, Add user control for XDP TX MPWQE feature (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, Support Enhanced Multi-Packet TX WQE (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, Add array for WQE info descriptors (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, Maintain a FIFO structure for xdp_info instances (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, Replace boolean doorbell indication with segment pointer (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, Warn upon polling an error CQE (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, Change the XDP SQ redirect indication (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: XDP, Precede XDP-related operations in RQ poll by a loaded program check (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: TX, Print opcode in error CQE warning (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Fix wrong error unwind (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Fix long EEH recover time with NVMe offloads (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Simplify netdev unbinding (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Use the correct commands for UMEM and UCTX allocation (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Use uid as part of alloc/dealloc transport domain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Fix LAG requirement when CONFIG_MLX5_ESWITCH is off (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Fix query_nic_sys_image_guid() error during init (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Support tunnel encap over tagged Ethernet (Alaa Hleihel) [1691236 1663255]
+- [netdrv] net/mlx5e: Support VLAN encap ETH header generation (Alaa Hleihel) [1691236 1663255]
+- [netdrv] net/mlx5e: Re-order route and encap header memory allocation (Alaa Hleihel) [1691236 1663255]
+- [netdrv] net/mlx5e: Tunnel encap ETH header helper function (Alaa Hleihel) [1691236 1663255]
+- [netdrv] net/mlx5e: Fail attempt to offload e-switch TC encap flows with vlan on underlay (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Tunnel routing output devs helper function (Alaa Hleihel) [1691236 1663255]
+- [netdrv] net/mlx5e: Fail attempt to offload e-switch TC flows with egress upper devices (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Allow vlans on e-switch uplink reps (Alaa Hleihel) [1691236 1663255]
+- [netdrv] net/mlx5e: Increase VF representors' SQ size to 128 (Alaa Hleihel) [1691236]
+- [netdrv] mlx5: extend PTP gettime function to read system clock (Alaa Hleihel) [1691236]
+- [netdrv] mlx5: update timecounter at least twice per counter overflow (Alaa Hleihel) [1691236]
+- [include] IB/mlx5: Introduce uid as part of alloc/dealloc transport domain (Alaa Hleihel) [1691236]
+- [netdrv] drivers: net: ethernet: mellanox: use skb_sec_path helper (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Fix compile issue when ODP disabled (Alaa Hleihel) [1691236]
+- [include] net/mlx5: Add shared Q counter bits (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Add advise_mr() support (Alaa Hleihel) [1691236 1663248]
+- [infiniband] IB/uverbs: Add helper to get array size from ptr attribute (Alaa Hleihel) [1691236 1663248]
+- [infiniband] RDMA/mlx5: Fix function name typo 'fileds' -> 'fields' (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Delete unreachable handle_atomic code by simplifying SW completion (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Continue driver initialization despite debugfs failure (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Add some ethtool port control entries to the uplink rep netdev (Alaa Hleihel) [1691236 1663256]
+- [netdrv] net/mlx5e: Expose ethtool pause and link functions to mlx5e callers (Alaa Hleihel) [1691236 1663256]
+- [netdrv] net/mlx5e: Add sriov and udp tunnel ndo support for the uplink rep (Alaa Hleihel) [1691236 1663256]
+- [netdrv] net/mlx5e: Handle port mtu/link, dcb and lag for uplink reps (Alaa Hleihel) [1691236 1663256]
+- [netdrv] net/mlx5e: Uninstantiate esw manager vport netdev on switchdev mode (Alaa Hleihel) [1691236 1663256]
+- [netdrv] net/mlx5e: Remove leftover code from the PF netdev being uplink rep (Alaa Hleihel) [1691236 1663256]
+- [netdrv] net/mlx5e: Use dedicated uplink vport netdev representor (Alaa Hleihel) [1691236 1663256]
+- [netdrv] net/mlx5e: Use single argument for the esw representor build params helper (Alaa Hleihel) [1691236 1663256]
+- [netdrv] net/mlx5: E-Switch, Remove redundant reloading of the IB interface (Alaa Hleihel) [1691236 1663256 1663207]
+- [netdrv] net/mlx5: Handle LAG FW commands failure gracefully (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5: Make RoCE and SR-IOV LAG modes explicit (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5: Rename mlx5_lag_is_bonded() to __mlx5_lag_is_active() (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5: Allow co-enablement of uplink LAG and SRIOV (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5: Allow/disallow LAG according to pre-req only (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5: Adjustments for the activate LAG logic to run under sriov (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5e: Duplicate offloaded TC eswitch rules under uplink LAG (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5e: Offload TC e-switch rules with egress LAG device (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5e: In case of LAG, one switch parent id is used for all representors (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5e: Enhance flow counter scheme for offloaded TC eswitch rules (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5e: Infrastructure for duplicated offloading of TC flows (Alaa Hleihel) [1691236 1663230 1663207]
+- [netdrv] net/mlx5e: E-Switch, Add peer miss rules (Alaa Hleihel) [1691236 1663230 1663207]
+- [netdrv] net/mlx5: Introduce inter-device communication mechanism (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5: Fold the modify lag code into function (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5: Add lag affinity info to log (Alaa Hleihel) [1691236 1663230]
+- [netdrv] net/mlx5: Split the activate lag function into two routines (Alaa Hleihel) [1691236 1663230]
+- [include] net/mlx5: E-Switch, Introduce flow counter affinity (Alaa Hleihel) [1691236 1663230]
+- [infiniband] IB/mlx5: Unify e-switch representors load approach between uplink and VFs (Alaa Hleihel) [1691236]
+- [include] net/mlx5: Use lowercase 'X' for hex values (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Remove set but not used variable 'upriv' (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Remove duplicated include from eswitch.c (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Use monitor counters for update stats (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Monitor counters commands support (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Avoid query PPCNT register if not supported by the device (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Use CQE padding for Ethernet CQs (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Support multiple encapsulations for a TC flow (Alaa Hleihel) [1691236 1663239 1663207]
+- [netdrv] net/mlx5e: Allow association of a flow to multiple encaps (Alaa Hleihel) [1691236 1663239]
+- [netdrv] net/mlx5e: Change parse attr struct to accommodate multiple tunnel infos (Alaa Hleihel) [1691236 1663239]
+- [netdrv] net/mlx5e: Support header rewrite actions with remote port mirroring (Alaa Hleihel) [1691236 1663239 1663207]
+- [netdrv] net/mlx5e: Replace the split logic with extended destination (Alaa Hleihel) [1691236 1663239]
+- [netdrv] net/mlx5e: Annul encap action ordering requirement (Alaa Hleihel) [1691236 1663239 1663207]
+- [netdrv] net/mlx5e: Move flow attr reformat action bit to per dest flags (Alaa Hleihel) [1691236 1663239 1663207]
+- [netdrv] net/mlx5e: Refactor eswitch flow attr for destination specific properties (Alaa Hleihel) [1691236 1663239 1663207]
+- [netdrv] net/mlx5: E-Switch, Rename esw attr mirror count field (Alaa Hleihel) [1691236 1663239 1663207]
+- [netdrv] net/mlx5: Consider encapsulation properties when comparing destinations (Alaa Hleihel) [1691236 1663239]
+- [infiniband] RDMA/mlx5: Fail early if user tries to create flows on IB representors (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Remove duplicated include from mlx5_ib.h (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Add 2X width support to query_port (Alaa Hleihel) [1691236 1683102]
+- [infiniband] IB/mlx5: Add HDR speed support to query port (Alaa Hleihel) [1691236 1683102]
+- [infiniband] IB/mlx5: Report CapabilityMask2 in ib_query_port (Alaa Hleihel) [1691236 1683102]
+- [netdrv] net/mlx5e: Add GRE protocol offloading (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Move TC tunnel offloading code to separate source file (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Branch according to classified tunnel type (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Refactor VXLAN tunnel decap offloading code (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Refactor VXLAN tunnel encap offloading code (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Replace egdev with indirect block notifications (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Propagate the filter's net device to mlx5e structures (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Provide the TC filter netdev as parameter to flower callbacks (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Support TC indirect block notifications for eswitch uplink reprs (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5e: Store eswitch uplink representor state on a dedicated struct (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5: Remove the get protocol device interface entry (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Support extended destination format in flow steering command (Alaa Hleihel) [1691236 1663239]
+- [netdrv] net/mlx5: E-Switch, Change vhca id valid bool field to bit flag (Alaa Hleihel) [1691236 1663239 1663207]
+- [include] net/mlx5: Introduce extended destination fields (Alaa Hleihel) [1691236 1663239]
+- [infiniband] net/mlx5: Revise gre and nvgre key formats (Alaa Hleihel) [1691236 1663240]
+- [netdrv] net/mlx5: Add monitor commands layout and event data (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Add support for plugged-disabled cable status in PME (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Add support for PCIe power slot exceeded error in PME (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Rework handling of port module events (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Move flow counters data structures from flow steering header (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Use helper to get CQE opcode (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Use helper to get CQE opcode (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: When fetching CQEs return CQE instead of void pointer (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Report packet based credit mode device capability (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Add packet based credit mode support (Alaa Hleihel) [1691236]
+- [include] net/mlx5: Expose packet based credit mode (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Enable TX on a DEVX flow table (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Improve ethtool private-flags code structure (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: ethtool, Support user configuration for RX hash fields (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Move RSS params to a dedicated struct (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Refactor TIR configuration function (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Move modify tirs hash functionality (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Cleanup unused defines (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Remove trailing space of tx_pause ethtool counter name (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Allow XRC usage via verbs in DEVX context (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Update the supported DEVX commands (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Enforce DEVX privilege by firmware (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Enable modify and query verbs objects via DEVX (Alaa Hleihel) [1691236]
+- [include] net/mlx5: Update mlx5_ifc with DEVX UCTX capabilities bits (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Unfold modify RMP function (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Unfold create RMP function (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Initialize SRQ tables on mlx5_ib (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Update SRQ functions signatures to mlx5_ib format (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Use stages for callback to setup and release DEVX (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Remove SRQ signature global flag (Alaa Hleihel) [1691236]
+- [infiniband] net/mlx5: Move SRQ functions to RDMA part (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Remove references to local mlx5_core functions (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Remove not-used lib/eq.h header file (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Remove dead transobj code (Alaa Hleihel) [1691236]
+- [infiniband] net/mlx5: Align SRQ licenses and copyright information (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Debug print for forwarded async events (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Forward SRQ resource events (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Forward QP/WorkQueues resource events (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Remove all deprecated software versions of FW events (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Handle raw delay drop general event (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Allow forwarding event type general event as is (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Handle raw port change event rather than the software version (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Remove unused events callback and logic (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Use the new mlx5 core notifier API (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Forward all mlx5 events to mlx5 notifiers chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Use the new mlx5 core notifier API (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Allow port change event to be forwarded to driver notifiers chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Driver events notifier API (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Use fragmented QP's buffer for in-kernel users (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Use fragmented SRQ's buffer for in-kernel users (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Attach a DEVX counter via raw flow creation (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Improve core device events handling (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Device events, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: CQ ERR, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Resource tables, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: CmdIF, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: FWPage, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: E-Switch, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: Clock, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: FPGA, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: FWTrace, Use async events chain (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Introduce atomic notifier chain subscription API (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/mlx5: Use the uapi disablement APIs instead of code (Alaa Hleihel) [1691236]
+- [infiniband] RDMA/uverbs: Use a linear list to describe the compiled-in uapi (Alaa Hleihel) [1691236]
+- [netdrv] mlx5: use skb_vlan_tag_get_prio() (Alaa Hleihel) [1691236]
+- [infiniband] IB/mlx5: Allow modify AV in DCI QP to RTR (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Make EQE access methods inline (Alaa Hleihel) [1691236]
+- [netdrv] {net, IB}/mlx5: Move Page fault EQ and ODP logic to RDMA (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Generic EQ (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Different EQ types (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Privatize eq_table and friends (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, irq_info and rmap belong to eq_table (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Create all EQs in one place (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Move all EQ logic to eq.c (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Remove redundant completion EQ list lock (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, No need to store eq index as a field (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Remove unused fields and structures (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5: EQ, Use the right place to store/read IRQ affinity hint (Alaa Hleihel) [1691236]
+- [include] net/mlx5: Fix offsets of ifc reserved fields (Alaa Hleihel) [1691236]
+- [netdrv] net/mlx5e: Remove the false indication of software timestamping support (Alaa Hleihel) [1691234 1647734]
+- [netdrv] net/mlx5: Typo fix in del_sw_hw_rule (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: RX, Fix wrong early return in receive queue poll (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Cancel DIM work on close SQ (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Remove unused UDP GSO remaining counter (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Avoid encap flows deletion attempt the 1st time a neigh is resolved (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Properly initialize flow attributes for slow path eswitch rule deletion (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Avoid overriding the user provided priority for offloaded tc rules (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Err if asked to mirror a goto chain tc eswitch rule (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Fix default amount of channels for VF representors (Alaa Hleihel) [1691234]
+- [include] net/mlx5: E-Switch, Fix fdb cap bits swap (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Block DEVX umem from the non applicable cases (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Fix XRC QP support after introducing extended atomic (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Fix failing ethtool query on FEC query error (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Fix wrong field name in FEC related functions (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Fix a bug in turning off FEC policy in unsupported speeds (Alaa Hleihel) [1691234]
+- [include] net/mlx5: Fix XRC SRQ umem valid bits (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Allocate enough space for the FDB sub-namespaces (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Added 'raw_errors_laneX' fields to ethtool statistics (Alaa Hleihel) [1691234]
+- [include] net/mlx5: Added "per_lane_error_counters" cap bit to PCAM (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Ethtool driver callback for query/set FEC policy (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Add port FEC get/set functions (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Add FEC fields to Port Phy Link Mode (PPLM) reg (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Remove counter from idr after removing it from list (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Take fs_counters dellist before addlist (Alaa Hleihel) [1691234]
+- [infiniband] net/mlx5: Refactor fragmented buffer struct fields and init flow (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Support offloading tc priorities and chains for eswitch flows (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Use a slow path rule instead if vxlan neighbour isn't available (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: E-Switch, Enable setting goto slow path chain action (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Avoid duplicated code for tc offloads add/del fdb rule (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: For TC offloads, always add new flow instead of appending the actions (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Add a no-append flow insertion mode (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: E-Switch, Add chains and priorities (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: E-Switch, Have explicit API to delete fwd rules (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Split FDB fast path prio to multiple namespaces (Alaa Hleihel) [1691234]
+- [include] net/mlx5: Add cap bits for multi fdb encap (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Split TC add rule path for nic vs e-switch (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Change return type of tc add flow functions (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Use flow counter IDs and not the wrapping cache object (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: E-Switch, Get counters for offloaded flows from callers (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Add support for extended atomic operations (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Allow scatter to CQE without global signaled WRs (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Verify that driver supports user flags (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Support scatter to CQE for DC transport type (Alaa Hleihel) [1691234]
+- [include] net/mlx5: Expose DC scatter to CQE capability bit (Alaa Hleihel) [1691234]
+- [infiniband] RDMA/mlx5: Add support for flow tag to raw create flow (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Verify DEVX object type (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Add new counter for aRFS rule insertion failures (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Add extack messages for TC offload failures (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: E-Switch, Add extack messages to devlink callbacks (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Allow reporting of checksum unnecessary (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Enable reporting checksum unnecessary also for L3 packets (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Add ethtool control of ring params to VF representors (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Enable multi-queue and RSS for VF representors (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Expose ethtool rss key size / indirection table functions (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Expose function for building RSS params (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Provide explicit directive if to create inner indirect tirs (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: E-Switch, Provide flow dest when creating vport rx rule (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Extract creation of rep's default flow rule (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Enable stateless offloads for VF representor netdevs (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Change VF representors' RQ type (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Ethtool steering, Support masks for l3/l4 filters (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Enable DEVX on IB (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Enable DEVX white list commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Manage device uid for DEVX white list commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Expose RAW QP device handles to user space (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set valid umem bit on DEVX (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of TD commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of XRCD commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of CQ creation (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid upon PD allocation (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of RQT commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of TIS commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of TIR commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of MCG commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of DCT commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of SRQ commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of SQ commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of RQ commands (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Set uid as part of QP creation (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Use uid as part of PD commands (Alaa Hleihel) [1691234]
+- [include] net/mlx5: Update mlx5_ifc with DEVX UID bits (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Set uid as part of DCT commands (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Set uid as part of SRQ commands (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Set uid as part of SQ commands (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Set uid as part of RQ commands (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Set uid as part of QP commands (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Set uid as part of CQ commands (Alaa Hleihel) [1691234]
+- [infiniband] RDMA/mlx5: Enable vport loopback when user context or QP mandate (Alaa Hleihel) [1691234]
+- [infiniband] RDMA/mlx5: Allow creating RAW ethernet QP with loopback support (Alaa Hleihel) [1691234]
+- [infiniband] RDMA/mlx5: Refactor transport domain bookkeeping logic (Alaa Hleihel) [1691234]
+- [infiniband] net/mlx5: Rename incorrect naming in IFC file (Alaa Hleihel) [1691234]
+- [infiniband] RDMA/mlx5: Use rdma_user_mmap_io (Alaa Hleihel) [1691234]
+- [infiniband] RDMA/mlx5: Allow creating a matcher for a NIC TX flow table (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Add NIC TX namespace when getting a flow table (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Add flow actions support to raw create flow (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Refactor raw flow creation (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Don't overwrite action if already set (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Refactor flow action parsing to be more generic (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Enable attaching packet reformat action to steering flows (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Enable reformat on NIC RX if supported (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Enable attaching DECAP action to steering flows (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Enable decap and packet reformat on flow tables (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Enable attaching modify header to steering flows (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Add NIC TX steering support (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5e: Replace PTP clock lock from RW lock to seq lock (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5e: Move Q counters allocation and drop RQ to init_rx (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Add flow counters idr (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Store flow counters in a list (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Add new list to store deleted flow counters (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Change flow counters addlist type to single linked list (Alaa Hleihel) [1691234]
+- [infiniband] RDMA/mlx5: Extend packet reformat verbs (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Add new flow action verb - packet reformat (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/uverbs: Add generic function to fill in flow action object (Alaa Hleihel) [1691234 1663215]
+- [infiniband] RDMA/mlx5: Add a new flow action verb - modify header (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5: Export packet reformat alloc/dealloc functions (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5: Pass a namespace for packet reformat ID allocation (Alaa Hleihel) [1691234 1663215]
+- [include] net/mlx5: Expose new packet reformat capabilities (Alaa Hleihel) [1691234 1663215]
+- [netdrv] {net, RDMA}/mlx5: Rename encap to reformat packet (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5: Move header encap type to IFC header file (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5: Break encap/decap into two separated flow table creation flags (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5: Add support for more namespaces when allocating modify header (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5: Export modify header alloc/dealloc functions (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5: Add proper NIC TX steering flow tables support (Alaa Hleihel) [1691234 1663215]
+- [netdrv] net/mlx5: Cleanup flow namespace getter switch logic (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Change TX affinity assignment in RoCE LAG mode (Alaa Hleihel) [1691234]
+- [netdrv] net/mlx5: Add memic command opcode to command checker (Alaa Hleihel) [1691234]
+- [infiniband] IB/mlx5: Destroy the DEVX object upon error flow (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: TLS, Read capabilities only when it is safe (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Ethtool steering, fix udp source port value (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Improve argument name for add flow API (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Ethtool steering, l4 proto support (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Ethtool steering, ip6 support (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Ethtool steering flow parsing refactoring (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Ethtool steering flow validation refactoring (Alaa Hleihel) [1691231]
+- [infiniband] IB/uverbs: Use uverbs_alloc for allocations (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Unexport functions that need not be exported (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Remove unused mlx5_query_vport_admin_state (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: E-Switch, Remove unused argument when creating legacy FDB (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Rename modify/query_vport state related enums (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Mark expected switch fall-throughs (Alaa Hleihel) [1691231]
+- [netdrv] mellanox: fix the dport endianness in call of __inet6_lookup_established() (Alaa Hleihel) [1691231]
+- [netdrv] mlx5: handle DMA mapping error case for XDP redirect (Alaa Hleihel) [1691231]
+- [infiniband] IB/uverbs: Add UVERBS_ATTR_FLAGS_IN to the specs language (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Issue direct lookup on vxlan ports by vport representors (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: TX, Use function to access sq_dma object in fifo (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: TX, Move DB fields in TXQ-SQ struct (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Add support for XDP_REDIRECT in device-out side (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Re-order fields of struct mlx5e_xdpsq (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Refactor XDP counters (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Make XDP xmit functions more generic (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Add counter for XDP redirect in RX (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Enable driver uapi commands for flow steering (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Add support for a flow table destination for driver flow steering (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Support adding flow steering rule by raw description (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Introduce driver create and destroy flow methods (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Introduce flow steering matcher uapi object (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Add support for flow table destination number (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Add forward compatible support for the FTE match data (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: Support offloading double vlan push/pop tc actions (Alaa Hleihel) [1691231 1615127]
+- [netdrv] net/mlx5e: Refactor tc vlan push/pop actions offloading (Alaa Hleihel) [1691231 1615127]
+- [netdrv] net/mlx5e: Support offloading tc double vlan headers match (Alaa Hleihel) [1691231 1615127]
+- [netdrv] net/mlx5: FW tracer, Add debug prints (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: FW tracer, Enable tracing (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: FW tracer, parse traces and kernel tracing support (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: FW tracer, events handling (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: FW tracer, register log buffer memory key (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: FW tracer, create trace buffer and copy strings database (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: FW tracer, implement tracer logic (Alaa Hleihel) [1691231]
+- [infiniband] RDMA/mlx5: Remove set but not used variables (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Add XRQ commands definitions (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Add core support for double vlan push/pop steering action (Alaa Hleihel) [1691231 1615127]
+- [netdrv] net/mlx5: Expose MPEGC (Management PCIe General Configuration) structures (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: FW tracer, add hardware structures (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: fix an unused-function warning (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: IPsec, fix byte count in CQE (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Accel, add common metadata functions (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: TLS, build TLS netdev from capabilities (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: TLS, add software statistics (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: TLS, add Innova TLS rx data path (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: TLS, add innova rx support (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Accel, add TLS rx offload routines (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5e: TLS, refactor variable names (Alaa Hleihel) [1691231]
+- [infiniband] RDMA/mlx5: Check that supplied blue flame index doesn't overflow (Alaa Hleihel) [1691231]
+- [infiniband] RDMA/mlx5: Melt consecutive calls to alloc_bfreg() in one call (Alaa Hleihel) [1691231]
+- [netdrv] net/mlx5: Use 2-factor allocator calls (Alaa Hleihel) [1691231]
+- [infiniband] RDMA/mlx5: Remove unused port number parameter (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Expose dump and fill memory key (Alaa Hleihel) [1691231]
+- [include] net/mlx5: Add hardware definitions for dump_fill_mkey (Alaa Hleihel) [1691231]
+- [infiniband] net/mlx5: Limit scope of dump_fill_mkey function (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Add support for drain SQ & RQ (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Support RoCE ICRC encapsulated error counter (Alaa Hleihel) [1691231 1663195]
+- [include] net/mlx5: Add RoCE RX ICRC encapsulated counter (Alaa Hleihel) [1691231 1663195]
+- [infiniband] RDMA/mlx5: Refactor transport domain checks (Alaa Hleihel) [1691231]
+- [infiniband] IB/mlx5: Expose DEVX tree (Alaa Hleihel) [1691231 1663190]
+- [infiniband] IB/mlx5: Add DEVX query EQN support (Alaa Hleihel) [1691231 1663190]
+- [infiniband] IB/mlx5: Add DEVX support for memory registration (Alaa Hleihel) [1691231 1663190]
+- [infiniband] IB/mlx5: Add support for DEVX query UAR (Alaa Hleihel) [1691231 1663190]
+- [infiniband] IB/mlx5: Add DEVX support for modify and query commands (Alaa Hleihel) [1691231 1663190]
+- [infiniband] IB/mlx5: Add obj create and destroy functionality (Alaa Hleihel) [1691231 1663190]
+- [infiniband] IB/mlx5: Add support for DEVX general command (Alaa Hleihel) [1691231 1663190]
+- [infiniband] IB/mlx5: Introduce DEVX (Alaa Hleihel) [1691231 1663190]
+- [netdrv] net/mlx5: Expose DEVX specification (Alaa Hleihel) [1691231]
+
+* Tue Jun 11 2019 Frantisek Hrbata <fhrbata@redhat.com> [4.18.0-104.el8]
+- [virt] kvm: arm/arm64: Don't emulate virtual timers on userspace ioctls (Andrew Jones) [1716066]
+- [virt] kvm: arm/arm64: Remove unused timer variable (Andrew Jones) [1716066]
+- [virt] kvm: arm/arm64: Rework the timer code to use a timer_map (Andrew Jones) [1716066]
+- [powerpc] powernv: Fix compile without CONFIG_TRACEPOINTS (David Gibson) [1524674]
+- [virt] kvm: ppc: book3s: Remove useless checks in 'release' method of KVM device (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Clear escalation interrupt pointers on device close (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Prevent races when releasing device (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Replace the 'destroy' method by a 'release' method (David Gibson) [1524674]
+- [virt] kvm: Introduce a 'release' method for KVM devices (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Activate XIVE exploitation mode (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add passthrough support (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add a mapping for the source ESB pages (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add a TIMA mapping (David Gibson) [1524674]
+- [virt] kvm: Introduce a 'mmap' method for KVM devices (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add get/set accessors for the VP XIVE state (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add a control to dirty the XIVE EQ pages (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add a control to sync the sources (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add a global reset control (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add controls for the EQ configuration (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Add a control to configure a source (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: add a control to initialize a source (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: xive: Introduce a new capability KVM_CAP_PPC_IRQ_XIVE (David Gibson) [1524674]
+- [powerpc] kvm: ppc: book3s hv: Add a new KVM device for the XIVE native exploitation mode (David Gibson) [1524674]
+- [powerpc] xive: add OPAL extensions for the XIVE native exploitation support (David Gibson) [1524674]
+- [powerpc] powernv: move OPAL call wrapper tracing and interrupt handling to C (David Gibson) [1524674]
+- [thermal] thermal/intel_powerclamp: fix truncated kthread name (Lihong Yang) [1716810]
+- [kernel] kernel/signal.c: trace_signal_deliver when signal_group_exit (Waiman Long) [1548279]
+- [kernel] signal: unconditionally leave the frozen state in ptrace_stop() (Waiman Long) [1548279]
+- [kernel] cgroup: never call do_group_exit() with task->frozen bit set (Waiman Long) [1548279]
+- [kernel] kernel: cgroup: fix misuse of x (Waiman Long) [1548279]
+- [kernel] cgroup: get rid of cgroup_freezer_frozen_exit() (Waiman Long) [1548279]
+- [kernel] cgroup: prevent spurious transition into non-frozen state (Waiman Long) [1548279]
+- [kernel] cgroup: Remove unused cgrp variable (Waiman Long) [1548279]
+- [documentation] cgroup: document cgroup v2 freezer interface (Waiman Long) [1548279]
+- [kernel] cgroup: add tracing points for cgroup v2 freezer (Waiman Long) [1548279]
+- [kernel] cgroup: make TRACE_CGROUP_PATH irq-safe (Waiman Long) [1548279]
+- [tools] kselftests: cgroup: don't fail on cg_kill_all() error in cg_destroy() (Waiman Long) [1548279]
+- [kernel] cgroup: cgroup v2 freezer (Waiman Long) [1548279]
+- [kernel] cgroup: protect cgroup->nr_(dying_)descendants by css_set_lock (Waiman Long) [1548279]
+- [kernel] cgroup: implement __cgroup_task_count() helper (Waiman Long) [1548279]
+- [kernel] cgroup: rename freezer.c into legacy_freezer.c (Waiman Long) [1548279]
+- [kernel] cgroup: remove extra cgroup_migrate_finish() call (Waiman Long) [1548279]
+- [kernel] cgroup/cpuset: Update stale generate_sched_domains() comments (Waiman Long) [1548279]
+- [kernel] cgroup: saner refcounting for cgroup_root (Waiman Long) [1548279]
+- [fs] fix cgroup_do_mount() handling of failure exits (Waiman Long) [1548279]
+- [kernel] cgroup: Add named hierarchy disabling to cgroup_no_v1 boot param (Waiman Long) [1548279]
+- [kernel] cgroup: fix parsing empty mount option string (Waiman Long) [1548279]
+- [kernel] cgroup: fix CSS_TASK_ITER_PROCS (Waiman Long) [1548279]
+- [kernel] cgroup: Fix dom_cgrp propagation when enabling threaded mode (Waiman Long) [1548279]
+- [lib] lib: objagg: fix handling of object with 0 users when assembling hints (Ivan Vecera) [1704850]
+- [lib] test_objagg: Uninitialized variable in error handling (Ivan Vecera) [1704850]
+- [lib] test_objagg: Test the correct variable (Ivan Vecera) [1704850]
+- [lib] lib: objagg: Fix an error code in objagg_hints_get() (Ivan Vecera) [1704850]
+- [lib] lib: objagg: add root count to stats (Ivan Vecera) [1704850]
+- [lib] lib: objagg: implement optimization hints assembly and use hints for object creation (Ivan Vecera) [1704850]
+- [lib] lib: objagg: fix typo in objagg_stats_put() docstring (Ivan Vecera) [1704850]
+- [lib] lib: introduce initial implementation of object aggregation manager (Ivan Vecera) [1704850]
+- [netdrv] ibmvnic: Fix unchecked return codes of memory allocations (Steve Best) [1718919]
+- [netdrv] ibmvnic: Refresh device multicast list after reset (Steve Best) [1718919]
+- [netdrv] ibmvnic: Do not close unopened driver during reset (Steve Best) [1718919]
+- [target] scsi: target: tcmu: Switch to bitmap_zalloc() (Maurizio Lombardi) [1712917]
+- [target] scsi: target: tcmu: wait for nl reply only if there are listeners or during an add (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: Simplify iscsit_handle_text_cmd() (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: Simplify iscsit_dump_data_payload() (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: Rename a function and a function pointer (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: Fix spelling of "unsolicited" (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: Convert comments about locking into runtime checks (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: Remove an incorrect comment (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Add target_send_busy() (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Inline transport_lun_remove_cmd() (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Simplify the LUN RESET implementation (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Remove several state tests from the TMF code (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Remove the write_pending_status() callback function (Maurizio Lombardi) [1712917]
+- [target] scsi: target: make the pi_prot_format ConfigFS path readable (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: fix use after free (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: avoid cmd/qfull timers updated whenever a new cmd comes (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: fix error msg typo when create lio_qr_cache failed (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Use kmem_cache_free() instead of kfree() (Maurizio Lombardi) [1712917]
+- [target] scsi: target: perform t10_wwn ID initialisation in target_alloc_device() (Maurizio Lombardi) [1712917]
+- [target] scsi: target: remove hardcoded T10 Vendor ID in INQUIRY response (Maurizio Lombardi) [1712917]
+- [target] scsi: target: add device vendor_id configfs attribute (Maurizio Lombardi) [1712917]
+- [target] scsi: target: consistently null-terminate t10_wwn strings (Maurizio Lombardi) [1712917]
+- [target] scsi: target: use consistent left-aligned ASCII INQUIRY data (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Reduce the amount of code executed with a spinlock held (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Make ABORT and LUN RESET handling synchronous (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Fix TAS handling for aborted commands (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Simplify the code for aborting SCSI commands (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Make it possible to wait from more than one context for command completion (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Use system workqueues for TMF (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Make sure that target_wait_for_sess_cmds() waits long enough (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Fix target_wait_for_sess_cmds breakage with active signals (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Simplify transport_clear_lun_ref() (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Use kvcalloc() instead of open-coding it (Maurizio Lombardi) [1712917]
+- [target] scsi: target/tcmu: Fix queue_cmd_ring() declaration (Maurizio Lombardi) [1712917]
+- [target] scsi: target: replace fabric_ops.name with fabric_alias (Maurizio Lombardi) [1712917]
+- [target] scsi: target: drop unnecessary get_fabric_name() accessor from fabric_ops (Maurizio Lombardi) [1712917]
+- [target] scsi: target: drop unused pi_prot_format attribute storage (Maurizio Lombardi) [1712917]
+- [target] scsi: target: add emulate_pr backstore attr to toggle PR support (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Avoid that a kernel oops is triggered when COMPARE AND WRITE fails (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Don't request modules that aren't even built (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Set response length for REPORT TARGET PORT GROUPS (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Always call transport_complete_callback() upon failure (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Use sg_alloc_table() instead of open-coding it (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Use the SECTOR_SHIFT constant (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Remove the SCF_COMPARE_AND_WRITE_POST flag (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Remove an unused data member from struct xcopy_pt_cmd (Maurizio Lombardi) [1712917]
+- [target] scsi: target/core: Fix spelling in two source code comments (Maurizio Lombardi) [1712917]
+- [target] scsi: target: stash sess_err_stats on Data-Out timeout (Maurizio Lombardi) [1712917]
+- [target] scsi: target: split out helper for cxn timeout error stashing (Maurizio Lombardi) [1712917]
+- [target] scsi: target: log NOP ping timeouts as errors (Maurizio Lombardi) [1712917]
+- [target] scsi: target: log Data-Out timeouts as errors (Maurizio Lombardi) [1712917]
+- [include] scsi: target: use ISCSI_IQN_LEN in iscsi_target_stat (Maurizio Lombardi) [1712917]
+- [target] scsi: target: iblock: split T10 PI SGL across command bios (Maurizio Lombardi) [1712917]
+- [target] scsi: iscsi: target: fix spelling mistake "entires" -> "entries" (Maurizio Lombardi) [1712917]
+- [target] scsi: iscsi: target: Fix conn_ops double free (Maurizio Lombardi) [1712917]
+- [target] scsi: iscsi: target: Set conn->sess to NULL when iscsi_login_set_conn_values fails (Maurizio Lombardi) [1712917]
+- [target] scsi: target: loop, usb, vhost, xen: use target_remove_session (Maurizio Lombardi) [1712917]
+- [target] scsi: tcm_fc: use target_remove_session (Maurizio Lombardi) [1712917]
+- [target] scsi: target: make transport_init_session_tags static (Maurizio Lombardi) [1712917]
+- [target] scsi: iscsi target: have iscsit_start_nopin_timer call __iscsit_start_nopin_timer (Maurizio Lombardi) [1712917]
+- [target] scsi: target: fix __transport_register_session locking (Maurizio Lombardi) [1712917]
+- [target] Revert "scsi: target/iscsi: Reduce number of __iscsit_free_cmd() callers" (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: use u64 for dev_size (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: use match_int for dev params (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: do not set max_blocks if data_bitmap has been setup (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: unmap if dev is configured (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: check if dev is configured before block/reset (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: use lio core se_device configuration helper (Maurizio Lombardi) [1712917]
+- [target] scsi: target: add helper to check if dev is configured (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: initialize list head (Maurizio Lombardi) [1712917]
+- [target] scsi: target_core_user: fix double unlock (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Remove se_dev_entry.ua_count (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Fix handling of removed LUNs (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Send unit attention condition even if the sense buffer is too small (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Do not duplicate the code that marks that a command has sense data (Maurizio Lombardi) [1712917]
+- [target] scsi: target/tcm_loop: Avoid that static checkers warn about dead code (Maurizio Lombardi) [1712917]
+- [target] scsi: target/iscsi: Reduce number of __iscsit_free_cmd() callers (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Simplify the code for waiting for command completion (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Simplify transport_generic_free_cmd() (2/2) (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Simplify transport_generic_free_cmd() (1/2) (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Fold core_tmr_handle_tas_abort() into transport_cmd_finish_abort() (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Simplify core_tmr_handle_tas_abort() (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Document when CMD_T_STOP and CMD_T_COMPLETE are set (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Make the session shutdown code also wait for commands that are being aborted (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Introduce transport_init_session() (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Rename transport_init_session() into transport_alloc_session() (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Move a list_del_init() statement (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Avoid that EXTENDED COPY commands trigger lock inversion (Maurizio Lombardi) [1712917]
+- [target] scsi: target: Use config_item_name() instead of open-coding it (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: Don't pass KERN_ERR to pr_err (Maurizio Lombardi) [1712917]
+- [target] scsi: target: remove target_find_device (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: add module wide block/reset_netlink support (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: misc nl code cleanup (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: simplify nl interface (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: track nl commands (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: delete unused __wait (Maurizio Lombardi) [1712917]
+- [target] scsi: tcmu: remove useless code and clean up the code style (Maurizio Lombardi) [1712917]
+
+* Sat Jun 08 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-103.el8]
+- [ipc] ipc: do cyclic id allocation for the ipc object. (Waiman Long) [1710480]
+- [ipc] ipc: conserve sequence numbers in ipcmni_extend mode (Waiman Long) [1710480]
+- [ipc] ipc: allow boot time extension of IPCMNI from 32k to 16M (Waiman Long) [1710480]
+- [ipc] ipc/mqueue: optimize msg_get() (Waiman Long) [1710480]
+- [ipc] ipc/mqueue: remove redundant wq task assignment (Waiman Long) [1710480]
+- [ipc] ipc: prevent lockup on alloc_msg and free_msg (Waiman Long) [1710480]
+- [ipc] ipc: IPCMNI limit check for semmni (Waiman Long) [1710480]
+- [ipc] ipc: IPCMNI limit check for msgmni and shmmni (Waiman Long) [1710480]
+- [ipc] ipc/shm.c: use ERR_CAST() for shm_lock() error return (Waiman Long) [1710480]
+- [ipc] ipc/shm: properly return EIDRM in shm_lock() (Waiman Long) [1710480]
+- [ipc] ipc/util.c: update return value of ipc_getref from int to bool (Waiman Long) [1710480]
+- [ipc] ipc/util.c: further variable name cleanups (Waiman Long) [1710480]
+- [ipc] ipc: simplify ipc initialization (Waiman Long) [1710480]
+- [ipc] ipc: get rid of ids->tables_initialized hack (Waiman Long) [1710480]
+- [lib] lib/rhashtable: guarantee initial hashtable allocation (Waiman Long) [1710480]
+- [lib] lib/rhashtable: simplify bucket_table_alloc() (Waiman Long) [1710480]
+- [ipc] ipc: drop ipc_lock() (Waiman Long) [1710480]
+- [ipc] ipc/util.c: correct comment in ipc_obtain_object_check (Waiman Long) [1710480]
+- [ipc] ipc: rename ipcctl_pre_down_nolock() (Waiman Long) [1710480]
+- [ipc] ipc/util.c: use ipc_rcu_putref() for failues in ipc_addid() (Waiman Long) [1710480]
+- [ipc] ipc: reorganize initialization of kern_ipc_perm.seq (Waiman Long) [1710480]
+- [ipc] ipc: compute kern_ipc_perm.id under the ipc lock (Waiman Long) [1710480]
+- [x86] x86/speculation/mds: Improve CPU buffer clear documentation (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Revert CPU buffer clear on double fault exit (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Add 'mitigations=' support for MDS (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [s390] s390/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [powerpc] powerpc/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [mm] x86/speculation: Support 'mitigations=' cmdline option (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [kernel] cpu/speculation: Add 'mitigations=' cmdline option (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [documentation] x86/speculation/mds: Fix documentation typo (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [documentation] Documentation: Correct the possible MDS sysfs values (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [documentation] x86/mds: Add MDSUM variant to the MDS documentation (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Fix comment (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Add SMT warning message (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation: Move arch_smt_update() call to after mitigation decisions (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [documentation] x86/speculation/mds: Add mds=full,nosmt cmdline option (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [documentation] Documentation: Add MDS vulnerability documentation (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [documentation] documentation: Move L1TF to separate directory (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Add mitigation mode VMWERV (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [base] x86/speculation/mds: Add sysfs reporting for MDS (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Add mitigation control for MDS (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Conditionally clear CPU buffers on idle entry (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [kvm] x86/kvm/vmx: Add MDS protection when L1D Flush is not active (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Clear CPU buffers on exit to user (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [documentation] x86/speculation/mds: Add mds_clear_cpu_buffers() (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [kvm] x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Add BUG_MSBDS_ONLY (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation/mds: Add basic bug infrastructure for MDS (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation: Consolidate CPU whitelists (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [tools] x86/msr-index: Cleanup bit defines (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [documentation] x86/speculation/l1tf: Drop the swap storage limit restriction when l1tf=off (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [x86] x86/speculation: Cast ~SPEC_CTRL_STIBP atomic value to int (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [tools] tools power x86_energy_perf_policy: Override CFLAGS assignments and add LDFLAGS to build command (Waiman Long) [1713695 1690360 1690351 1690338] {CVE-2018-12126 CVE-2018-12127 CVE-2018-12130 CVE-2019-11091}
+- [scsi] scsi: qla2xxx: Fix read offset in qla24xx_load_risc_flash() (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Simplify conditional check again (Himanshu Madhani) [1665555]
+- [scsi] qla2xxx: Update driver version to 10.01.00.15.08.1-k (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Secure flash update support for ISP28XX (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Add 28xx flash primary/secondary status/image mechanism (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Simplification of register address used in qla_tmpl.c (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Correction and improvement to fwdt processing (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Update flash read/write routine (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Add support for multiple fwdump templates/segments (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Cleanups for NVRAM/Flash read/write path (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Correctly report max/min supported speeds (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Add Serdes support for ISP28XX (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Add Device ID for ISP28XX (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Fix routine qla27xx_dump_{mpi|ram}() (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Remove FW default template (Himanshu Madhani) [1665555]
+- [scsi] scsi: qla2xxx: Add fw_attr and port_no SysFS node (Himanshu Madhani) [1665555]
+- [netdrv] e1000e: Disable runtime PM on CNP+ (David Arcari) [1659179]
+- [netdrv] intel: correct return from set features callback (David Arcari) [1659179]
+- [netdrv] e1000e: Fix -Wformat-truncation warnings (David Arcari) [1659179]
+- [netdrv] e1000e: fix cyclic resets at link up with active tx (David Arcari) [1659179]
+- [netdrv] e1000e: fix a missing check for return value (David Arcari) [1659179]
+- [netdrv] e1000e: Exclude device from suspend direct complete optimization (David Arcari) [1659179]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() (David Arcari) [1659179]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (David Arcari) [1659179]
+- [netdrv] e1000e: extend PTP gettime function to read system clock (David Arcari) [1659179]
+- [netdrv] e1000e: allow non-monotonic SYSTIM readings (David Arcari) [1659179]
+- [netdrv] intel-ethernet: use correct module license (David Arcari) [1659179]
+- [kernel] sched/cpufreq: Fix kobject memleak (Phil Auld) [1714719]
+- [kernel] sched/core: Check quota and period overflow at usec to nsec conversion (Phil Auld) [1714719]
+- [kernel] sched/core: Handle overflow in cpu_shares_write_u64 (Phil Auld) [1714719]
+- [kernel] sched/rt: Check integer overflow at usec to nsec conversion (Phil Auld) [1714719]
+- [base] arch_topology: Make cpu_capacity sysfs node as read-only (Phil Auld) [1714719]
+- [x86] sched/x86: Save [ER]FLAGS on context switch (Phil Auld) [1714719]
+- [kernel] sched/fair: Remove setting task's se->runnable_weight during PELT update (Phil Auld) [1714719]
+- [kernel] sched/fair: Disable LB_BIAS by default (Phil Auld) [1714719]
+- [arm64] sched/topology, arch/arm64: Rebuild the sched_domain hierarchy when the CPU capacity changes (Phil Auld) [1714719]
+- [base] sched/topology, drivers/base/arch_topology: Rebuild the sched_domain hierarchy when capacities change (Phil Auld) [1714719]
+- [kernel] sched/topology: Add SD_ASYM_CPUCAPACITY flag detection (Phil Auld) [1714719]
+- [kernel] sched/fair: Fix load_balance redo for !imbalance (Phil Auld) [1714719]
+- [tools] cpupower : frequency-set -r option misses the last cpu in related cpu list (Steve Best) [1717841]
+- [kernel] Uprobes: Fix kernel oops with delayed_uprobe_remove() (Gustavo Duarte) [1608798]
+- [kernel] trace_uprobe/sdt: Prevent multiple reference counter for same uprobe (Gustavo Duarte) [1608798]
+- [kernel] uprobes/sdt: Prevent multiple reference counter for same uprobe (Gustavo Duarte) [1608798]
+- [kernel] uprobes: Support SDT markers having reference count (semaphore) (Gustavo Duarte) [1608798]
+- [kernel] Uprobe: Additional argument arch_uprobe to uprobe_write_opcode() (Gustavo Duarte) [1608798]
+- [kernel] Uprobes: Simplify uprobe_register() body (Gustavo Duarte) [1608798]
+- [pci] PCI: Rework pcie_retrain_link() wait loop (Myron Stowe) [1707902]
+- [pci] PCI: Work around Pericom PCIe-to-PCI bridge Retrain Link erratum (Myron Stowe) [1707902]
+- [pci] PCI: Factor out pcie_retrain_link() function (Myron Stowe) [1707902]
+- [tools] selftests/powerpc: Fix strncpy usage (Diego Domingos) [1662372]
+- [tools] selftests: Fix test errors related to lib.mk khdr target (Diego Domingos) [1662372]
+- [nvme] nvme-fc: use separate work queue to avoid warning (Ewan Milne) [1715135]
+- [scsi] scsi: scsi_transport_fc: nvme: display FC-NVMe port roles (Ewan Milne) [1715135]
+- [nvme] nvme-fc: correct csn initialization and increments on error (Ewan Milne) [1715135]
+- [nvme] nvme-multipath: avoid crash on invalid subsystem cntlid enumeration (Ewan Milne) [1715135]
+- [nvme] nvme-multipath: don't print ANA group state by default (Ewan Milne) [1715135]
+- [nvme] nvme-multipath: split bios with the ns_head bio_set before submitting (Ewan Milne) [1715135]
+- [nvme] nvme-multipath: relax ANA state check (Ewan Milne) [1715135]
+- [drm] drm/i915: Bump gen7+ fb size limits to 16kx16k (Lyude Paul) [1664969]
+- [drm] drm/i915: Bump fb stride limit to 128KiB for gen4+ and 256KiB for gen7+ (Lyude Paul) [1664969]
+- [drm] drm/i915: Align dumb buffer stride to 4k to allow for gtt remapping (Lyude Paul) [1664969]
+- [drm] drm/i915: Overcome display engine stride limits via GTT remapping (Lyude Paul) [1664969]
+- [drm] drm/i915: Shuffle stride checking code around (Lyude Paul) [1664969]
+- [drm] drm/i915/selftests: Add live vma selftest (Lyude Paul) [1664969]
+- [drm] drm/i915/selftests: Add mock selftest for remapped vmas (Lyude Paul) [1664969]
+- [drm] drm/i915: Add a new "remapped" gtt_view (Lyude Paul) [1664969]
+- [md] dax: Arrange for dax_supported check to span multiple devices (Jeff Moyer) [1665364]
+- [mm] mm/memory_hotplug.c: drop memory device reference after find_memory_block() (Jeff Moyer) [1665367 1665364 1665362]
+- [tools] tools/testing/nvdimm: Retain security state after overwrite (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] libnvdimm/pmem: fix a possible OOB access when read and write pmem (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] libnvdimm/security, acpi/nfit: unify zero-key for all security commands (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] libnvdimm/security: provide fix for secure-erase to use zero-key (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [mm] mm/memory.c: fix modifying of page protection by insert_pfn() (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/btt: Fix a kmemdup failure check (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/namespace: Fix a potential NULL pointer dereference (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi/nfit: Always dump _DSM output payload (Jeff Moyer) [1665367 1665364 1665362]
+- [fs] fs/dax: Deposit pagetable even when installing zero page (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/namespace: Clean up holder_class_store() (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/of_pmem: Fix platform_no_drv_owner.cocci warnings (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi/nfit: Update NFIT flags error message (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/btt: Fix LBA masking during 'free list' population (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/btt: Remove unnecessary code in btt_freelist_init (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/pfn: Remove dax_label_reserve (Jeff Moyer) [1665367 1665364 1665362]
+- [drivers] dax: Check the end of the block-device capacity with dax_direct_access() (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] nfit/ars: Avoid stale ARS results (Jeff Moyer) [1697175 1665367 1665364 1665362]
+- [acpi] nfit/ars: Allow root to busy-poll the ARS state machine (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] nfit/ars: Introduce scrub_flags (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] nfit/ars: Remove ars_start_flags (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] nfit/ars: Attempt short-ARS even in the no_init_ars case (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot (Jeff Moyer) [1697194 1665367 1665364 1665362]
+- [fs] fs/dax: NIT fix comment regarding start/end vs range (Jeff Moyer) [1665367 1665364 1665362]
+- [fs] fs/dax: Convert to use vmf_error() (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi/nfit: Require opt-in for read-only label configurations (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/pmem: Honor force_raw for legacy pmem regions (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/pfn: Account for PAGE_SIZE > info-block-size in nd_pfn_init() (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm: Fix altmap reservation size calculation (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm, pfn: Fix over-trim in trim_pfn_device() (Jeff Moyer) [1665367 1665364 1665362 1662227]
+- [nvdimm] libnvdimm/dimm: Add a no-BLK quirk based on NVDIMM family (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] nfit: Add Hyper-V NVDIMM DSM command set to white list (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] nfit: acpi_nfit_ctl(): Check out_obj->type in the right place (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] nfit: Fix nfit_intel_shutdown_status() command submission (Jeff Moyer) [1665367 1665364 1665362 1662217]
+- [nvdimm] libnvdimm/security: Require nvdimm_security_setup_events() to succeed (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [tools] nfit_test: fix security state pull for nvdimm security nfit_test (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] libnvdimm/security: Fix nvdimm_security_state() state request selection (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] libnvdimm/label: Clear 'updating' flag after label-set update (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi/nfit: Remove duplicate set nd_set in acpi_nfit_init_interleave_set() (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi/nfit: Fix race accessing memdev in nfit_get_smbios_id() (Jeff Moyer) [1665367 1665364 1665362]
+- [include] libnvdimm/dimm: Fix security capability detection for non-Intel NVDIMMs (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [acpi] nfit: Mark some functions as __maybe_unused (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [acpi] ACPI/nfit: delete the function to_acpi_nfit_desc (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] ACPI/nfit: delete the redundant header file (Jeff Moyer) [1665367 1665364 1665362]
+- [kernel] mm, devm_memremap_pages: add MEMORY_DEVICE_PRIVATE support (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] mm, devm_memremap_pages: fix shutdown handling (Jeff Moyer) [1665367 1665364 1665362]
+- [kernel] mm, devm_memremap_pages: kill mapping "System RAM" support (Jeff Moyer) [1665367 1665364 1665362]
+- [kernel] mm, devm_memremap_pages: mark devm_memremap_pages() EXPORT_SYMBOL_GPL (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm/security: Quiet security operations (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [documentation] libnvdimm/security: Add documentation for nvdimm security support (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [tools] tools/testing/nvdimm: add Intel DSM 1.8 support for nfit_test (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [tools] tools/testing/nvdimm: Add overwrite support for nfit_test (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [tools] tools/testing/nvdimm: Add test support for Intel nvdimm security DSMs (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] acpi/nfit, libnvdimm/security: add Intel DSM 1.8 master passphrase support (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] acpi/nfit, libnvdimm/security: Add security DSM overwrite support (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] acpi/nfit, libnvdimm: Add support for issue secure erase DSM to Intel nvdimm (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] acpi/nfit, libnvdimm: Add enable/update passphrase support for Intel nvdimms (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] acpi/nfit, libnvdimm: Add disable passphrase support to Intel nvdimm. (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] acpi/nfit, libnvdimm: Add unlock of nvdimm support for Intel DIMMs (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] acpi/nfit, libnvdimm: Add freeze security support to Intel nvdimm (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [acpi] acpi/nfit, libnvdimm: Introduce nvdimm_security_ops (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [security] keys-encrypted: add nvdimm key format type to encrypted keys (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [security] keys: Export lookup_user_key to external users (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [acpi] acpi/nfit, libnvdimm: Store dimm id as a member to struct nvdimm (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [nvdimm] libnvdimm, namespace: Replace kmemdup() with kstrndup() (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm, label: Switch to bitmap_zalloc() (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] ACPI/nfit: Adjust annotation for why return 0 if fail to find NFIT at start (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm, bus: Check id immediately following ida_simple_get (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi/nfit: Fix user-initiated ARS to be "ARS-long" rather than "ARS-short" (Jeff Moyer) [1665367 1665364 1665362 1662224 1641487]
+- [nvdimm] libnvdimm, pfn: Pad pfn namespaces relative to other regions (Jeff Moyer) [1665367 1665364 1665362 1662227]
+- [tools] tools/testing/nvdimm: Align test resources to 128M (Jeff Moyer) [1665367 1665364 1665362 1662227]
+- [acpi] acpi/nfit: Add support for Intel DSM 1.8 commands (Jeff Moyer) [1665367 1665364 1665362 1584976]
+- [acpi] Revert "acpi, nfit: Further restrict userspace ARS start requests" (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi, nfit: Fix ARS overflow continuation (Jeff Moyer) [1665367 1665364 1665362]
+- [tools] tools/testing/nvdimm: Fix the array size for dimm devices. (Jeff Moyer) [1665367 1665364 1665362 1658918]
+- [mm] mm: Fix warning in insert_pfn() (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi, nfit: Further restrict userspace ARS start requests (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi, nfit: Fix Address Range Scrub completion tracking (Jeff Moyer) [1665367 1665364 1665362 1662224 1641487]
+- [tools] tools/testing/nvdimm: Populate dirty shutdown data (Jeff Moyer) [1665367 1665364 1665362 1662217]
+- [acpi] acpi, nfit: Collect shutdown status (Jeff Moyer) [1665367 1665364 1665362 1662217]
+- [acpi] acpi, nfit: Introduce nfit_mem flags (Jeff Moyer) [1665367 1665364 1665362 1662217]
+- [nvdimm] libnvdimm, label: Fix sparse warning (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm, namespace: Drop the repeat assignment for variable dev->parent (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm, region: Fail badblocks listing for inactive regions (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm, pfn: during init, clear errors in the metadata area (Jeff Moyer) [1665367 1665364 1665362 1641565]
+- [nvdimm] libnvdimm: Set device node in nd_device_register (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm: Hold reference on parent while scheduling async init (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm: remove duplicate include (Jeff Moyer) [1665367 1665364 1665362]
+- [fs] filesystem-dax: Fix use of zero page (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm, pmem: Restore page attributes when clearing errors (Jeff Moyer) [1665367 1665364 1665362]
+- [drivers] device-dax: avoid hang on error before devm_memremap_pages() (Jeff Moyer) [1665367 1665364 1665362]
+- [tools] tools/testing/nvdimm: improve emulation of smart injection (Jeff Moyer) [1685043 1665367 1665364 1665362]
+- [fs] filesystem-dax: Do not request kaddr and pfn when not required (Jeff Moyer) [1665367 1665364 1665362]
+- [drivers] dax/super: Do not request a pointer kaddr when not required (Jeff Moyer) [1665367 1665364 1665362]
+- [tools] tools/testing/nvdimm: kaddr and pfn can be NULL to ->direct_access() (Jeff Moyer) [1665367 1665364 1665362]
+- [nvdimm] libnvdimm, pmem: kaddr and pfn can be NULL to ->direct_access() (Jeff Moyer) [1665367 1665364 1665362]
+- [acpi] acpi/nfit: queue issuing of ars when an uc error notification comes in (Jeff Moyer) [1665367 1665364 1665362 1641487]
+- [kernel] mm, dev_pagemap: Do not clear ->mapping on final put (Jeff Moyer) [1665367 1665364 1665362]
+- [tools] tools/testing/nvdimm: Fix support for emulating controller temperature (Jeff Moyer) [1665367 1665364 1665362]
+- [tools] tools/testing/nvdimm: Make DSM failure code injection an override (Jeff Moyer) [1665367 1665364 1665362 1658918]
+- [acpi] acpi, nfit: Prefer _DSM over _LSR for namespace label reads (Jeff Moyer) [1665367 1665364 1665362 1658918]
+- [nvdimm] libnvdimm: Introduce locked DIMM capacity support (Jeff Moyer) [1665367 1665364 1665362 1658918]
+- [drm] drm/nouveau: fix duplication of nv50_head_atom struct (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/nouveau/disp/dp: respect sink limits when selecting failsafe link configuration (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/nouveau/core: initial support for boards with TU117 chipset (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/nouveau/core: allow detected chipset to be overridden (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/nouveau/kms/gf119-gp10x: push HeadSetControlOutputResource() mthd when encoders change (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/nouveau/kms/nv50-: fix bug preventing non-vsync'd page flips (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/nouveau/kms/gv100-: fix spurious window immediate interlocks (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/nouveau/nouveau: forward error generated while resuming objects tree (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/nouveau/i2c: Disable i2c bus access after ->fini() (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Add WaDisableBankHangMode (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/fbc: disable framebuffer compression on GeminiLake (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Fix setting 10 bit deep color mode (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Add missing combo PHY lane power setup (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Factor out combo PHY lane power setup helper (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Corrupt DSI picture fix for GeminiLake (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Fix clockgating issue when using scalers (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Suppress spurious combo PHY B warning (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Disable read only ppgtt support for gen11 (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Use Engine1 instance for gen11 pm interrupts (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Disable video turbo mode for rp control (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Enable media sampler powergate (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: introduce REG_BIT() and REG_GENMASK() to define register contents (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1664615 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Apply a recommended rc6 threshold (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Use dedicated rc6 enabling sequence for gen11 (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Don't warn on spurious interrupts (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Handle rps interrupts without irq lock (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Make sure we have enough memory bandwidth on ICL (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Make sandybridge_pcode_read() deal with the second data register (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Fix ONLY icl+ max plane width (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Fix MG_DP_MODE() register programming (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Really calculate the cursor ddb based on the highest enabled wm level (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Inline skl_update_pipe_wm() into its only caller (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Don't pass pipe_wm around so much (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Move some variables to tighter scope (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Keep plane watermarks enabled more aggressively (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Make sure cursor has enough ddb for the selected wm level (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Allocate enough DDB for the cursor (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Extract skl_compute_wm_params() (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Don't pass plane state to skl_compute_plane_wm() (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Accept alloc_size == blocks (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/cml: Introduce Comet Lake PCH (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/cml: Add CML PCI IDS (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Fix PSR2 selective update corruption after PSR1 setup (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Turn off the CUS when turning off a HDR plane (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Fix legacy gamma mode for ICL (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Refactor icl_is_hdr_plane (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [include] drm/i915: Add new ICL PCI ID (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Fix CRC mismatch error for DP link layer compliance (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Prevent incorrect DBuf enabling (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Read out memory type (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Extract DIMM info on cnl+ (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Clean up intel_get_dram_info() a bit (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i914: s/l_info/dimm_l/ etc. (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Generalize intel_is_dram_symmetric() (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Use dram_dimm_info more (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Extract DIMM info on GLK too (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Fix DRAM size reporting for BXT (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Extract BXT DIMM helpers (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Polish skl_is_16gb_dimm() (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Extract functions to derive SKL+ DIMM info (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Store DIMM rank information as a number (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Default to Thread Group preemption for compute workloads (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Fix the state checker for ICL Y planes (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: move MG pll hw_state readout (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Finalize Wa_1408961008:icl (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Call MG_DP_MODE() macro with the right parameters order (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Drop redundant gamma mode mask (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Implement new w/a for underruns with wm1+ disabled (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Include "ignore lines" in skl+ wm state (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] Revert "drm/i915: W/A for underruns with WM1+ disabled on icl" (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Make MG PHY macros semantically consistent (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Make combo PHY DDI macro definitions consistent for ICL and CNL (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Add degamma and gamma lut size to gen11 caps (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Enable pipe output csc (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Enable ICL Pipe CSC block (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/icl: Add icl pipe degamma and gamma support (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/glk: Fix degamma lut programming (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Dump skl+ watermark changes (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Update DSPCNTR gamma/csc bits during crtc_enable() (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Disable pipe gamma when C8 pixel format is used (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Turn off pipe CSC when it's not needed (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Turn off pipe gamma when it's not needed (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Track pipe csc enable in crtc state (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Track pipe gamma enable/disable in crtc state (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915: Populate gamma_mode for all platforms (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm: Main backport to rebase from 4.18 to 5.1 (Lyude Paul) [1713573 1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286] {CVE-2019-11085}
+- [include] list: Backport list_is_first() (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] lib/scatterlist: Provide a DMA page iterator (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [acpi] ACPI / PMIC: Add support for executing PMIC MIPI sequence elements (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [include] vfio: add edid api for display (vgpu) devices. (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [mm] mm: don't miss the last page because of round-off error (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [base] PM-runtime: Add new interface to get accounted time (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm: move i915_kick_out_vgacon to vgaarb (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [scripts] tracing: Avoid calling cc-option -mrecord-mcount for every Makefile (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/fb_helper: Allow leaking fbdev smem_start (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/fb: Stop leaking physical address (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [video] fbdev: Add FBINFO_HIDE_SMEM_START flag (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [include] vt: Remove vc_panic_force_write (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] fbdev: Drop FBINFO_CAN_FORCE_OUTPUT flag (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [video] fbdev: fix kerneldoc (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [include] fbdev: add remove_conflicting_pci_framebuffers() (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [media] media: cec-notifier: Get notifier by device and connector name (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [base] driver core: Add device_link_remove function (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] include: Move ascii85 functions from i915 to linux/ascii85.h (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [mm] mm, drm/i915: mark pinned shmemfs pages as unevictable (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [include] list: introduce list_bulk_move_tail helper (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [fs] sysfs: constify sysfs create/remove files harder (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm/i915/selftests: Remove unused dmabuf->kmap routines, fix the build (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] dma-buf: remove kmap_atomic interface (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [include] include/linux/bitops.h: introduce BITS_PER_TYPE (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] dma_buf: remove device parameter from attach callback v2 (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [pci] PCI: Export pcie_get_speed_cap and pcie_get_width_cap (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [drm] drm: Add support for pps and compression mode command packet (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [kernel] locking/mutex: Fix mutex debug call and ww_mutex documentation (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [kernel] locking: Implement an algorithm choice for Wound-Wait mutexes (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+- [kernel] locking: WW mutex cleanup (Lyude Paul) [1707312 1688524 1685552 1685427 1665631 1665088 1664615 1664609 1664189 1664177 1664175 1664104 1662017 1660302 1643842 1640840 1639990 1639436 1637606 1633845 1633843 1633842 1504286]
+
+* Fri Jun 07 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-102.el8]
+- [netdrv] igb: Fix WARN_ONCE on runtime suspend (Corinna Vinschen) [1659168]
+- [netdrv] igb: use struct_size() helper (Corinna Vinschen) [1659168]
+- [netdrv] flow_offload: add flow_rule and flow_match structures and use them (Corinna Vinschen) [1659168]
+- [netdrv] igb: Bump version number (Corinna Vinschen) [1659168]
+- [netdrv] Revert "igb: reduce CPU0 latency when updating statistics" (Corinna Vinschen) [1659168]
+- [netdrv] igb: Fix an issue that PME is not enabled during runtime suspend (Corinna Vinschen) [1659168]
+- [netdrv] igb: Change RXPBSIZE size when setting Qav mode (Corinna Vinschen) [1659168]
+- [netdrv] igb: reduce CPU0 latency when updating statistics (Corinna Vinschen) [1659168]
+- [netdrv] igb: fix uninitialized variables (Corinna Vinschen) [1659168]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Corinna Vinschen) [1659168]
+- [netdrv] igb: Fix format with line continuation whitespace (Corinna Vinschen) [1659168]
+- [netdrv] igb: extend PTP gettime function to read system clock (Corinna Vinschen) [1659168]
+- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Corinna Vinschen) [1659168]
+- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Corinna Vinschen) [1659168]
+- [netdrv] igb: remove ndo_poll_controller (Corinna Vinschen) [1659168]
+- [netdrv] intel-ethernet: use correct module license (Corinna Vinschen) [1659168]
+- [netdrv] igb: Replace mdelay() with msleep() in igb_integrated_phy_loopback() (Corinna Vinschen) [1659168]
+- [netdrv] igb: Replace GFP_ATOMIC with GFP_KERNEL in igb_sw_init() (Corinna Vinschen) [1659168]
+- [netdrv] igb: Use an advanced ctx descriptor for launchtime (Corinna Vinschen) [1659168]
+- [netdrv] igb: e1000_phy: Mark expected switch fall-through (Corinna Vinschen) [1659168]
+- [netdrv] igb: e1000_82575: Mark expected switch fall-through (Corinna Vinschen) [1659168]
+- [netdrv] igb_main: Mark expected switch fall-throughs (Corinna Vinschen) [1659168]
+- [netdrv] igb: Use dma_wmb() instead of wmb() before doorbell writes (Corinna Vinschen) [1659168]
+- [netdrv] igb: Add support for ETF offload (Corinna Vinschen) [1659168]
+- [netdrv] igb: Only call skb_tx_timestamp after descriptors are ready (Corinna Vinschen) [1659168]
+- [netdrv] igb: Refactor igb_offload_cbs() (Corinna Vinschen) [1659168]
+- [netdrv] igb: Only change Tx arbitration when CBS is on (Corinna Vinschen) [1659168]
+- [netdrv] igb: Refactor igb_configure_cbs() (Corinna Vinschen) [1659168]
+- [fs] Revert "[fs] ext4: protect journal inode's blocks using block_validity" (Lukas Czerner) [1716549]
+- [fs] xfs: don't trip over uninitialized buffer on extent read of corrupted inode (Bill O'Donnell) [1715942]
+- [fs] xfs: always init bma in xfs_bmapi_write (Bill O'Donnell) [1715942]
+- [lib] rhashtable: Still do rehash when we get EEXIST (Vladis Dronov) [1712457]
+- [fs] vmcore: Add a kernel parameter novmcoredd (Kairui Song) [1705864]
+- [powerpc] powerpc/eeh: Correct retries in eeh_pe_reset_full() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Improve recovery of passed-through devices (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Add include_passed to eeh_clear_pe_frozen_state() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Add include_passed to eeh_pe_state_clear() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: remove sw_state from eeh_unfreeze_pe() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup eeh_pe_clear_frozen_state() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup control flow in eeh_handle_normal_event() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup eeh_ops.wait_state() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup eeh_pe_state_mark() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup unnecessary eeh_pe_state_mark_with_cfg() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup eeh_enabled() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup logic in eeh_rmv_from_parent_pe() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup field names in eeh_rmv_data (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup list_head field names (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup eeh_add_virt_device() (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup unused field in eeh_dev (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Cleanup EEH_POSTPONED_PROBE (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Avoid misleading message "EEH: no capable adapters found" (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Fix use of EEH_PE_KEEP on wrong field (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Fix null deref for devices removed during EEH (Sam Bobroff) [1352405]
+- [powerpc] powerpc/eeh: Fix possible null deref in eeh_dump_dev_log() (Sam Bobroff) [1352405]
+- [edac] x86/MCE/AMD, EDAC/mce_amd: Add new error descriptions for some SMCA bank types (Janakarajan Natarajan) [1688469]
+- [x86] x86/MCE/AMD, EDAC/mce_amd: Add new McaTypes for CS, PSP, and SMU units (Janakarajan Natarajan) [1688469]
+- [x86] x86/MCE/AMD, EDAC/mce_amd: Add new MP5, NBIO, and PCIE SMCA bank types (Janakarajan Natarajan) [1688469]
+- [scsi] megaraid_sas: remove tech preview from Aero series (Tomas Henzl) [1668409]
+- [scsi] megaraid_sas: sync with mainline (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: fix spelling mistake "oustanding" -> "outstanding" (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Make megasas_host_device_list_query() static (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: reduce module load time (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Remove a bunch of set but not used variables (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: return error when create DMA pool failed (Tomas Henzl) [1668409] {CVE-2019-11810}
+- [scsi] scsi: megaraid_sas: driver version update (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Update structures for HOST_DEVICE_LIST DCMD (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Add support for DEVICE_LIST DCMD in driver (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Rework device add code in AEN path (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Rework code to get PD and LD list (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: correct an info message (Tomas Henzl) [1668409]
+- [scsi] cross-tree: phase out dma_zalloc_coherent() (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid: fix out-of-bound array accesses (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: changes to function prototypes (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: NULL check before some freeing functions is not needed (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas_fusion: Mark expected switch fall-through (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid: megaraid_sas_base: Mark expected switch fall-through (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: modify max supported lds related print (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: remove unused macro (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: increase timeout for IOC INIT to 180seconds (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Remove double endian conversion (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Re-use max_mfi_cmds to calculate queue sizes (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Rename scratch_pad registers (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Remove spin lock for dpc operation (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: optimize raid context access in IO path (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Fail init if heartbeat timer fails (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: For SRIOV, do not set STOP_ADP bit (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Fix combined reply queue mode detection (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Fix module parameter description (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Fix goto labels in error handling (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Update copyright information (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Add check for reset adapter bit (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Fix msleep granularity (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Add support for FW snap dump (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: Add watchdog thread to detect Firmware fault (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: switch to generic DMA API (Tomas Henzl) [1668409]
+- [scsi] scsi: megaraid_sas: fix a missing-check bug (Tomas Henzl) [1668409]
+- [kernel] get_maintainer.pl: Add default .get_maintainer.conf file for RHEL (Prarit Bhargava) [1714630]
+- [scripts] get_maintainer: allow option --mpath <directory> to read all files in <directory> (Prarit Bhargava) [1714630]
+- [scripts] get_maintainer.pl: add -mpath=<path or file> for MAINTAINERS file location (Prarit Bhargava) [1714630]
+- [scripts] get_maintainer: allow usage outside of kernel tree (Prarit Bhargava) [1714630]
+- [scripts] Revert "[scripts] get_maintainer.pl: Add optional .get_maintainer.MAINTAINERS override" (Prarit Bhargava) [1714630]
+- [include] signal: Make siginmask safe when passed a signal of 0 (Waiman Long) [1714351]
+- [fs] signal: Don't send signals to tasks that don't exist (Waiman Long) [1714351]
+- [kernel] signal: Restore the stop PTRACE_EVENT_EXIT (Waiman Long) [1714351]
+- [kernel] signal: Better detection of synchronous signals (Waiman Long) [1714351]
+- [kernel] signal: Always notice exiting tasks (Waiman Long) [1714351]
+- [kernel] signal: Always attempt to allocate siginfo for SIGSTOP (Waiman Long) [1714351]
+- [kernel] signal: Guard against negative signal numbers in copy_siginfo_from_user32 (Waiman Long) [1714351]
+- [kernel] signal: Guard against negative signal numbers in copy_siginfo_from_user (Waiman Long) [1714351]
+- [kernel] signal: In sigqueueinfo prefer sig not si_signo (Waiman Long) [1714351]
+- [include] signal: Use a smaller struct siginfo in the kernel (Waiman Long) [1714351]
+- [include] signal: Distinguish between kernel_siginfo and siginfo (Waiman Long) [1714351]
+- [kernel] signal: Introduce copy_siginfo_from_user and use it's return value (Waiman Long) [1714351]
+- [arm64] signal: Remove the need for __ARCH_SI_PREABLE_SIZE and SI_PAD_SIZE (Waiman Long) [1714351]
+- [kernel] signal: Fail sigqueueinfo if si_signo != sig (Waiman Long) [1714351]
+- [kernel] signal/sparc: Move EMT_TAGOVF into the generic siginfo.h (Waiman Long) [1714351]
+- [mm] signal/arm: Use force_sig_fault where appropriate (Waiman Long) [1714351]
+- [arm64] signal/arm64: Use send_sig_fault where appropriate (Waiman Long) [1714351]
+- [arm64] signal/arm64: Add and use arm64_force_sig_ptrace_errno_trap (Waiman Long) [1714351]
+- [arm64] signal/arm64: In ptrace_hbptriggered name the signal description string (Waiman Long) [1714351]
+- [arm64] signal/arm64: Remove arm64_force_sig_info (Waiman Long) [1714351]
+- [arm64] signal/arm64: Add and use arm64_force_sig_mceerr as appropriate (Waiman Long) [1714351]
+- [arm64] signal/arm64: Add and use arm64_force_sig_fault where appropriate (Waiman Long) [1714351]
+- [mm] signal/arm64: Only call set_thread_esr once in do_page_fault (Waiman Long) [1714351]
+- [mm] signal/arm64: Only perform one esr_to_fault_info call in do_page_fault (Waiman Long) [1714351]
+- [mm] signal/arm64: Expand __do_user_fault and remove it (Waiman Long) [1714351]
+- [mm] signal/arm64: For clarity separate the 3 signal sending cases in do_page_fault (Waiman Long) [1714351]
+- [mm] signal/arm64: Consolidate the two hwpoison cases in do_page_fault (Waiman Long) [1714351]
+- [mm] signal/arm64: Factor set_thread_esr out of __do_user_fault (Waiman Long) [1714351]
+- [arm64] signal/arm64: Factor out arm64_show_signal from arm64_force_sig_info (Waiman Long) [1714351]
+- [arm64] signal/arm64: Remove unneeded tsk parameter from arm64_force_sig_info (Waiman Long) [1714351]
+- [arm64] signal/arm64: Push siginfo generation into arm64_notify_die (Waiman Long) [1714351]
+- [powerpc] signal/powerpc: Use force_sig_fault where appropriate (Waiman Long) [1714351]
+- [powerpc] signal/powerpc: Simplify _exception_pkey by using force_sig_pkuerr (Waiman Long) [1714351]
+- [powerpc] signal/powerpc: Specialize _exception_pkey for handling pkey exceptions (Waiman Long) [1714351]
+- [powerpc] signal/powerpc: Call force_sig_fault from _exception (Waiman Long) [1714351]
+- [powerpc] signal/powerpc: Factor the common exception code into exception_common (Waiman Long) [1714351]
+- [powerpc] powerpc/traps: Print unhandled signals in a separate function (Waiman Long) [1714351]
+- [mm] signal/powerpc: Remove pkey parameter from __bad_area_nosemaphore (Waiman Long) [1714351]
+- [mm] signal/powerpc: Call _exception_pkey directly from bad_key_fault_exception (Waiman Long) [1714351]
+- [mm] signal/powerpc: Remove pkey parameter from __bad_area (Waiman Long) [1714351]
+- [mm] signal/powerpc: Use force_sig_mceerr as appropriate (Waiman Long) [1714351]
+- [x86] signal/x86: Use force_sig_fault where appropriate (Waiman Long) [1714351]
+- [mm] signal/x86: Pass pkey by value (Waiman Long) [1714351]
+- [mm] signal/x86: Replace force_sig_info_fault with force_sig_fault (Waiman Long) [1714351]
+- [mm] signal/x86: Call force_sig_pkuerr from __bad_area_nosemaphore (Waiman Long) [1714351]
+- [mm] signal/x86: Pass pkey not vma into __bad_area (Waiman Long) [1714351]
+- [mm] signal/x86: Don't compute pkey in __do_page_fault (Waiman Long) [1714351]
+- [mm] signal/x86: Remove pkey parameter from mm_fault_error (Waiman Long) [1714351]
+- [mm] signal/x86: Remove the pkey parameter from do_sigbus (Waiman Long) [1714351]
+- [mm] signal/x86: Remove pkey parameter from bad_area_nosemaphore (Waiman Long) [1714351]
+- [x86] signal/x86/traps: Simplify trap generation (Waiman Long) [1714351]
+- [x86] signal/x86/traps: Use force_sig instead of open coding it. (Waiman Long) [1714351]
+- [x86] signal/x86/traps: Use force_sig_bnderr (Waiman Long) [1714351]
+- [x86] signal/x86/traps: Move more code into do_trap_no_signal so it can be reused (Waiman Long) [1714351]
+- [x86] signal/x86/traps: Factor out show_signal (Waiman Long) [1714351]
+- [x86] signal/x86: Move mpx siginfo generation into do_bounds (Waiman Long) [1714351]
+- [x86] signal/x86: In trace_mpx_bounds_register_exception add __user annotations (Waiman Long) [1714351]
+- [mm] signal/x86: Move MCE error reporting out of force_sig_info_fault (Waiman Long) [1714351]
+- [x86] signal/x86: Inline fill_sigtrap_info in it's only caller send_sigtrap (Waiman Long) [1714351]
+- [powerpc] signal: Simplify tracehook_report_syscall_exit (Waiman Long) [1714351]
+- [kernel] signal: Pair exports with their functions (Waiman Long) [1714351]
+- [kernel] signal: Remove specific_send_sig_info (Waiman Long) [1714351]
+- [kernel] signal: Use group_send_sig_info to kill all processes in a pid namespace (Waiman Long) [1714351]
+- [tty] tty_io: Use group_send_sig_info in __do_SACK to note it is a session being killed (Waiman Long) [1714351]
+- [misc] signal/GenWQE: Fix sending of SIGKILL (Waiman Long) [1714351]
+- [include] signal: Remove SEND_SIG_FORCED (Waiman Long) [1714351]
+- [kernel] signal: Use SEND_SIG_PRIV not SEND_SIG_FORCED with SIGKILL and SIGSTOP (Waiman Long) [1714351]
+- [kernel] signal: Never allocate siginfo for SIGKILL or SIGSTOP (Waiman Long) [1714351]
+- [usb] signal: Don't send siginfo to kthreads. (Waiman Long) [1714351]
+- [usb] signal: Remove the siginfo paramater from kernel_dqueue_signal (Waiman Long) [1714351]
+- [tty] signal: send_sig_all no longer needs SEND_SIG_FORCED (Waiman Long) [1714351]
+- [kernel] signal: Always deliver the kernel's SIGKILL and SIGSTOP to a pid namespace init (Waiman Long) [1714351]
+- [x86] signal: Properly deliver SIGSEGV from x86 uprobes (Waiman Long) [1714351]
+- [kernel] signal: Properly deliver SIGILL from uprobes (Waiman Long) [1714351]
+- [kernel] signal: Always ignore SIGKILL and SIGSTOP sent to the global init (Waiman Long) [1714351]
+- [iommu] mm: convert return type of handle_mm_fault() caller to vm_fault_t (Waiman Long) [1714351]
+- [kernel] signal: make get_signal() return bool (Waiman Long) [1714351]
+- [kernel] signal: make sigkill_pending() return bool (Waiman Long) [1714351]
+- [kernel] signal: make legacy_queue() return bool (Waiman Long) [1714351]
+- [kernel] signal: make wants_signal() return bool (Waiman Long) [1714351]
+- [kernel] signal: make flush_sigqueue_mask() void (Waiman Long) [1714351]
+- [kernel] signal: make unhandled_signal() return bool (Waiman Long) [1714351]
+- [kernel] signal: make recalc_sigpending_tsk() return bool (Waiman Long) [1714351]
+- [kernel] signal: make has_pending_signals() return bool (Waiman Long) [1714351]
+- [kernel] signal: make sig_ignored() return bool (Waiman Long) [1714351]
+- [kernel] signal: make sig_task_ignored() return bool (Waiman Long) [1714351]
+- [kernel] signal: make sig_handler_ignored() return bool (Waiman Long) [1714351]
+- [kernel] signal: make kill_ok_by_cred() return bool (Waiman Long) [1714351]
+- [kernel] signal: simplify rt_sigaction() (Waiman Long) [1714351]
+- [kernel] signal: make do_sigpending() void (Waiman Long) [1714351]
+- [kernel] signal: make may_ptrace_stop() return bool (Waiman Long) [1714351]
+- [kernel] signal: make kill_as_cred_perm() return bool (Waiman Long) [1714351]
+- [kernel] signal: make force_sigsegv() void (Waiman Long) [1714351]
+- [kernel] signal: Don't restart fork when signals come in. (Waiman Long) [1714351]
+- [kernel] fork: Have new threads join on-going signal group stops (Waiman Long) [1714351]
+- [include] fork: Skip setting TIF_SIGPENDING in ptrace_init_task (Waiman Long) [1714351]
+- [kernel] signal: Add calculate_sigpending() (Waiman Long) [1714351]
+- [kernel] fork: Unconditionally exit if a fatal signal is pending (Waiman Long) [1714351]
+- [kernel] fork: Move and describe why the code examines PIDNS_ADDING (Waiman Long) [1714351]
+- [kernel] signal: Push pid type down into complete_signal. (Waiman Long) [1714351]
+- [kernel] signal: Push pid type down into __send_signal (Waiman Long) [1714351]
+- [kernel] signal: Push pid type down into send_signal (Waiman Long) [1714351]
+- [tty] signal: Pass pid type into do_send_sig_info (Waiman Long) [1714351]
+- [fs] signal: Pass pid type into send_sigio_to_task & send_sigurg_to_task (Waiman Long) [1714351]
+- [kernel] signal: Pass pid type into group_send_sig_info (Waiman Long) [1714351]
+- [kernel] signal: Pass pid and pid type into send_sigqueue (Waiman Long) [1714351]
+- [kernel] posix-timers: Noralize good_sigevent (Waiman Long) [1714351]
+- [fs] signal: Use PIDTYPE_TGID to clearly store where file signals will be sent (Waiman Long) [1714351]
+- [kernel] pid: Implement PIDTYPE_TGID (Waiman Long) [1714351]
+- [include] pids: Move the pgrp and session pid pointers from task_struct to signal_struct (Waiman Long) [1714351]
+- [fs] pids: Compute task_tgid using signal->leader_pid (Waiman Long) [1714351]
+- [kernel] pids: Move task_pid_type into sched/signal.h (Waiman Long) [1714351]
+- [init] pids: Initialize leader_pid in init_task (Waiman Long) [1714351]
+
+* Thu Jun 06 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-101.el8]
+- [s390] s390: enable processes for mio instructions (Philipp Rudo) [1651734]
+- [s390] s390/pci: add parameter to disable usage of MIO instructions (Philipp Rudo) [1651734]
+- [s390] s390/pci: provide support for MIO instructions (Philipp Rudo) [1651734]
+- [s390] s390/pci: improve bar check (Philipp Rudo) [1651734]
+- [s390] s390/ism: move oddities of device IO to wrapper function (Philipp Rudo) [1651734]
+- [s390] s390/pci: move io address mapping code to pci_insn.c (Philipp Rudo) [1651734]
+- [s390] s390/pci: add parameter to force floating irqs (Philipp Rudo) [1651735]
+- [s390] s390/pci: gather statistics for floating vs directed irqs (Philipp Rudo) [1651735]
+- [s390] s390: show statistics for MSI IRQs (Philipp Rudo) [1651735]
+- [s390] s390/pci: provide support for CPU directed interrupts (Philipp Rudo) [1651735]
+- [s390] s390/airq: provide cacheline aligned ivs (Philipp Rudo) [1651735]
+- [s390] s390/pci: clarify interrupt vector usage (Philipp Rudo) [1651735]
+- [s390] s390/airq: recognize directed interrupts (Philipp Rudo) [1651735]
+- [s390] s390/sclp: detect DIRQ facility (Philipp Rudo) [1651735]
+- [s390] s390/pci: move everything irq related to pci_irq.c (Philipp Rudo) [1651735]
+- [s390] s390/pci: remove stale rc (Philipp Rudo) [1651735]
+- [s390] s390/pci: remove unused define (Philipp Rudo) [1651735]
+- [s390] s390/pci: mark command line parser data __initdata (Philipp Rudo) [1651735]
+- [cpufreq] cpufreq: intel_pstate: Ignore turbo active ratio in HWP (David Arcari) [1711970]
+- [scsi] mpt3sas: remove tech preview from Aero series (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: fix indentation issue (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Update mpt3sas driver version to 28.100.00.00 (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Improve the threshold value and introduce module param (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Load balance to improve performance and avoid soft lockups (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Irq poll to avoid CPU hard lockups (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: simplify interrupt handler (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Fix typo in request_desript_type (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Add missing breaks in switch statements (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Update driver version to 27.102.00.00 (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Add support for ATLAS PCIe switch (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Add support for NVMe Switch Adapter (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Rename mpi endpoint device ID macro. (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: mpt3sas_scsih: Mark expected switch fall-through (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: fix memory ordering on 64bit writes (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: fix spelling mistake "manufaucturing" -> "manufacturing" (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Fix driver modifying persistent data in Manufacturing page11 (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Don't modify EEDPTagMode field setting on SAS3.5 HBA devices (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Fix Sync cache command failure during driver unload (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Call sas_remove_host before removing the target devices (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Refactor mpt3sas_wait_for_ioc function (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Separate out mpt3sas_wait_for_ioc (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: Added new #define variable IOC_OPERATIONAL_WAIT_COUNT (Tomas Henzl) [1684444]
+- [scsi] scsi: mpt3sas: switch to generic DMA API (Tomas Henzl) [1684444]
+- [tools] perf tools beauty ioctl: Support new ISO7816 commands (Michael Petlan) [1709243]
+- [tools] perf tools: Restore proper cwd on return from mnt namespace (Michael Petlan) [1709243]
+- [tools] perf tools: Fix crash on synthesizing the unit (Michael Petlan) [1709243]
+- [tools] perf tools: Do not zero sample_id_all for group members (Michael Petlan) [1709243]
+- [tools] perf beauty: Use SRCARCH, ARCH=x86_64 must map to "x86" to find the headers (Michael Petlan) [1709243]
+- [tools] perf intel-pt: Add MTC and CYC timestamps to debug log (Michael Petlan) [1709243]
+- [tools] perf intel-pt: Add more event information to debug log (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Fix table find when table re-ordered (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Add help window (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Add Selected branches report (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Fall back to /usr/local/lib/libxed.so (Michael Petlan) [1709243]
+- [tools] perf top: Display the LBR stats in callchain entry (Michael Petlan) [1709243]
+- [tools] perf stat: Handle different PMU names with common prefix (Michael Petlan) [1709243]
+- [tools] perf record: Support weak groups (Michael Petlan) [1709243]
+- [tools] perf evlist: Move perf_evsel__reset_weak_group into evlist (Michael Petlan) [1709243]
+- [tools] perf augmented_syscalls: Start collecting pathnames in the BPF program (Michael Petlan) [1709243]
+- [tools] perf trace: Fix setting of augmented payload when using eBPF + raw_syscalls (Michael Petlan) [1709243]
+- [tools] perf trace: When augmenting raw_syscalls plug raw_syscalls:sys_exit too (Michael Petlan) [1709243]
+- [tools] perf examples bpf: Start augmenting raw_syscalls:sys_{start,exit} (Michael Petlan) [1709243]
+- [tools] perf intel-pt/bts: Calculate cpumode for synthesized samples (Michael Petlan) [1709243]
+- [tools] perf intel-pt: Insert callchain context into synthesized callchains (Michael Petlan) [1709243]
+- [tools] perf top: Start display thread earlier (Michael Petlan) [1709243]
+- [tools] perf trace beauty: Use the mmap flags table generated from headers (Michael Petlan) [1709243]
+- [tools] perf beauty: Wire up the mmap flags table generator to the Makefile (Michael Petlan) [1709243]
+- [tools] perf beauty: Add a generator for MAP_ mmap's flag constants (Michael Petlan) [1709243]
+- [tools] perf callchain: Honour the ordering of PERF_CONTEXT_{USER,KERNEL,etc} (Michael Petlan) [1709243]
+- [tools] perf cs-etm: Correct CPU mode for samples (Michael Petlan) [1709243]
+- [tools] perf unwind: Take pgoff into account when reporting elf to libdwfl (Michael Petlan) [1709243]
+- [tools] perf top: Do not use overwrite mode by default (Michael Petlan) [1709243]
+- [tools] perf trace: Beautify mount's first pathname arg (Michael Petlan) [1709243]
+- [tools] perf trace: Beautify the umount's 'name' argument (Michael Petlan) [1709243]
+- [tools] perf trace: Consider syscall aliases too (Michael Petlan) [1709243]
+- [tools] perf trace beauty: Beautify mount/umount's 'flags' argument (Michael Petlan) [1709243]
+- [tools] perf trace beauty: Allow syscalls to mask an argument before considering it (Michael Petlan) [1709243]
+- [tools] perf beauty: Introduce strarray__scnprintf_flags() (Michael Petlan) [1709243]
+- [tools] perf beauty: Switch from GPL v2.0 to LGPL v2.1 (Michael Petlan) [1709243]
+- [tools] perf beauty: Add a generator for MS_ mount/umount's flag constants (Michael Petlan) [1709243]
+- [tools] tools include uapi: Grab a copy of linux/fs.h (Michael Petlan) [1709243]
+- [tools] perf script: Support total cycles count (Michael Petlan) [1709243]
+- [tools] perf script: Make itrace script default to all calls (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Add All branches report (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Add ability to display all the database tables (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Add ability to shrink / enlarge font (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Add ability to find symbols in the call-graph (Michael Petlan) [1709243]
+- [tools] perf scripts python: exported-sql-viewer.py: Add support for multiple sub-windows (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Rename to exported-sql-viewer.py (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Refactor TreeItem class (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Add data helper functions (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Factor out CallGraphModel from TreeModel (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Remove use of setObjectName() (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Add a class for global data (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Separate the database details into a class (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Make a "Main" function (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Change icon (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Set a minimum window size (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Provide better default column sizes (Michael Petlan) [1709243]
+- [tools] perf scripts python: call-graph-from-sql.py: Use SPDX license identifier (Michael Petlan) [1709243]
+- [tools] perf trace: Introduce per-event maximum number of events property (Michael Petlan) [1709243]
+- [tools] perf script: Flush output stream after events in verbose mode (Michael Petlan) [1709243]
+- [tools] perf script: Allow extended console debug output (Michael Petlan) [1709243]
+- [tools] perf stat: Poll for monitored tasks being alive (Michael Petlan) [1709243]
+- [tools] perf trace: Drop thread refcount in trace__event_handler() (Michael Petlan) [1709243]
+- [tools] perf trace: Drop addr_location refcounts (Michael Petlan) [1709243]
+- [tools] perf evsel: Mark a evsel as disabled when asking the kernel do disable it (Michael Petlan) [1709243]
+- [tools] perf evsel: Introduce per event max_events property (Michael Petlan) [1709243]
+- [tools] tools lib subcmd: Introduce OPTION_ULONG (Michael Petlan) [1709243]
+- [tools] perf arm64: Fix generate system call table failed with /tmp mounted with noexec (Michael Petlan) [1709243]
+- [tools] perf symbols: Set PLT entry/header sizes properly on Sparc (Michael Petlan) [1709243]
+- [tools] perf jitdump: Add Sparc support. (Michael Petlan) [1709243]
+- [tools] perf annotate: Add Sparc support (Michael Petlan) [1709243]
+- [tools] perf record: Encode -k clockid frequency into Perf trace (Michael Petlan) [1709243]
+- [tools] perf probe: Support SDT markers having reference counter (semaphore) (Michael Petlan) [1709243]
+- [tools] tools lib traceevent, perf tools: Move struct tep_handler definition in a local header file (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Separate out tep_strerror() for strerror_r() issues (Michael Petlan) [1709243]
+- [tools] perf python: More portable way to make CFLAGS work with clang (Michael Petlan) [1709243]
+- [tools] perf python: Make clang_has_option() work on Python 3 (Michael Petlan) [1709243]
+- [tools] perf tools: Free temporary 'sys' string in read_event_files() (Michael Petlan) [1709243]
+- [tools] perf tools: Avoid double free in read_event_file() (Michael Petlan) [1709243]
+- [tools] perf tools: Free 'printk' string in parse_ftrace_printk() (Michael Petlan) [1709243]
+- [tools] perf tools: Cleanup trace-event-info 'tdata' leak (Michael Petlan) [1709243]
+- [tools] perf strbuf: Match va_{add,copy} with va_end (Michael Petlan) [1709243]
+- [tools] perf test: S390 does not support watchpoints in test 22 (Michael Petlan) [1709243]
+- [tools] perf auxtrace: Include missing asm/bitsperlong.h to get BITS_PER_LONG (Michael Petlan) [1709243]
+- [tools] tools include: Adopt linux/bits.h (Michael Petlan) [1709243]
+- [tools] perf intel-pt: Implement decoder flags for trace begin / end (Michael Petlan) [1709243]
+- [tools] perf intel-pt: Add decoder flags for trace begin / end (Michael Petlan) [1709243]
+- [tools] perf tools: Improve thread_stack__process() for trace begin / end (Michael Petlan) [1709243]
+- [tools] perf tools: Improve thread_stack__event() for trace begin / end (Michael Petlan) [1709243]
+- [tools] perf db-export: Add trace begin / end branch type variants (Michael Petlan) [1709243]
+- [tools] perf script: Enhance sample flags for trace begin / end (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Add prefix tep_ to enum filter_trivial_type (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Rename data2host*() APIs (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Rename struct plugin_list to struct tep_plugin_list (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Add prefix tep_ to structs filter_type and event_filter (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Add prefix tep_ to various structs filter_arg_*. (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Add prefix tep_ to struct filter_{arg,value_type} (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Add prefix tep_ to enums filter_{exp,arg}_type (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Add prefix tep_ to enums filter_{boolean,op,cmp}_type (Michael Petlan) [1709243]
+- [tools] tools lib traceevent, perf tools: Rename enum print_arg_type to enum tep_print_arg_type (Michael Petlan) [1709243]
+- [tools] tools lib traceevent, perf tools: Add prefix tep_ to all print_* structures (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Add prefix TEP_ to all EVENT_FL_* flags (Michael Petlan) [1709243]
+- [tools] tools lib traceevent: Rename enum event_{sort_}type to enum tep_event_{sort_}type (Michael Petlan) [1709243]
+- [tools] tools lib traceevent, perf tools: Rename enum format_flags to enum tep_format_flags (Michael Petlan) [1709243]
+- [tools] tools lib traceevent, perf tools: Rename struct format{_field} to struct tep_format{_field} (Michael Petlan) [1709243]
+- [tools] tools lib traceevent, perf tools: Rename struct event_format to struct tep_event_format (Michael Petlan) [1709243]
+- [tools] perf script: Print DSO for callindent (Michael Petlan) [1709243]
+- [tools] perf script: Allow sym and dso without ip, addr (Michael Petlan) [1709243]
+- [tools] tools lib subcmd: Support overwriting the pager (Michael Petlan) [1709243]
+- [tools] perf tools: Report itrace options in help (Michael Petlan) [1709243]
+- [tools] perf help: Add missing subcommand `version` (Michael Petlan) [1709243]
+- [tools] perf tools: Initialize perf_data_file fd field (Michael Petlan) [1709243]
+- [tools] perf util: Make copyfile_offset() global (Michael Petlan) [1709243]
+- [tools] perf tools: Add 'struct perf_mmap' arg to record__write() (Michael Petlan) [1709243]
+- [tools] perf auxtrace: Pass struct perf_mmap into mmap__read* functions (Michael Petlan) [1709243]
+- [tools] perf tools: Remove perf_tool from event_op3 (Michael Petlan) [1709243]
+- [tools] perf tools: Remove perf_tool from event_op2 (Michael Petlan) [1709243]
+- [tools] perf bpf-loader: use PTR_ERR_OR_ZERO inetead of return code (Michael Petlan) [1709243]
+- [tools] tools include: Adopt PTR_ERR_OR_ZERO from the kernel err.h header (Michael Petlan) [1709243]
+- [tools] perf ordered_events: Prevent crossing max_alloc_size (Michael Petlan) [1709243]
+- [tools] perf ordered_events: Add 'struct ordered_events_buffer' layer (Michael Petlan) [1709243]
+- [tools] perf test: Add watchpoint test (Michael Petlan) [1709243]
+- [tools] perf tests: Fix record+probe_libc_inet_pton.sh without ping's debuginfo (Michael Petlan) [1709243]
+- [tools] perf map: Turn some pr_warning() to pr_debug() (Michael Petlan) [1709243]
+- [tools] perf trace: Use the raw_syscalls:sys_enter for the augmented syscalls (Michael Petlan) [1709243]
+- [tools] perf trace: Setup augmented_args in the raw_syscalls:sys_enter handler (Michael Petlan) [1709243]
+- [tools] perf trace: Introduce syscall__augmented_args() method (Michael Petlan) [1709243]
+- [tools] perf augmented_syscalls: Avoid optimization to pass older BPF validators (Michael Petlan) [1709243]
+- [tools] perf augmented_syscalls: Check probe_read_str() return separately (Michael Petlan) [1709243]
+- [tools] perf annotate: Handle arm64 move instructions (Michael Petlan) [1709243]
+- [tools] perf trace beauty: Alias 'umount' to 'umount2' (Michael Petlan) [1709243]
+- [tools] perf stat: Move the display functions to stat-display.c (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'metric_events' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'walltime_*' data to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Propagate 'struct target' arg to sort_aggr_thread() (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'no_merge' data to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'big_num' data to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Do not use the global 'evsel_list' in print functions (Michael Petlan) [1709243]
+- [tools] perf stat: Move *_aggr_* data to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move ru_* data to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'print_mixed_hw_group_error' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'print_free_counters_hint' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'null_run' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Add 'walltime_nsecs_stats' pointer to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Pass 'evlist' to aggr_update_shadow() (Michael Petlan) [1709243]
+- [tools] perf stat: Pass 'struct perf_stat_config' to first_shadow_cpu() (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'metric_only_len' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'run_count' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Use 'evsel->evlist' instead of 'evsel_list' in collect_all_aliases() (Michael Petlan) [1709243]
+- [tools] perf stat: Pass 'evlist' argument to print functions (Michael Petlan) [1709243]
+- [tools] perf stat: Add 'target' argument to perf_evlist__print_counters() (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'unit_width' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'metric_only' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'interval_clear' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move csv_* to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Pass a 'struct perf_stat_config' argument to global print functions (Michael Petlan) [1709243]
+- [tools] perf stat: Pass 'struct perf_stat_config' argument to local print functions (Michael Petlan) [1709243]
+- [tools] perf stat: Add 'struct perf_stat_config' argument to perf_evlist__print_counters() (Michael Petlan) [1709243]
+- [tools] perf stat: Move STAT_RECORD out of perf_evlist__print_counters() (Michael Petlan) [1709243]
+- [tools] perf stat: Introduce perf_evlist__print_counters() (Michael Petlan) [1709243]
+- [tools] perf stat: Move perf_stat_synthesize_config() to stat.c (Michael Petlan) [1709243]
+- [tools] perf stat: Add 'perf_event__handler_t' argument to perf_stat_synthesize_config() (Michael Petlan) [1709243]
+- [tools] perf stat: Add 'struct perf_evlist' argument to perf_stat_synthesize_config() (Michael Petlan) [1709243]
+- [tools] perf stat: Add 'struct perf_tool' argument to perf_stat_synthesize_config() (Michael Petlan) [1709243]
+- [tools] perf stat: Add 'struct perf_stat_config' argument to perf_stat_synthesize_config() (Michael Petlan) [1709243]
+- [tools] perf stat: Rename 'is_pipe' argument to 'attrs' in perf_stat_synthesize_config() (Michael Petlan) [1709243]
+- [tools] perf stat: Move create_perf_stat_counter() to stat.c (Michael Petlan) [1709243]
+- [tools] perf evsel: Introduce perf_evsel__store_ids() (Michael Petlan) [1709243]
+- [tools] perf tools: Switch 'session' argument to 'evlist' in perf_event__synthesize_attrs() (Michael Petlan) [1709243]
+- [tools] perf stat: Add 'identifier' flag to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Use local config arg for scale in create_perf_stat_counter() (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'no_inherit' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Move 'initial_delay' to 'struct perf_stat_config' (Michael Petlan) [1709243]
+- [tools] perf stat: Use evsel->threads in create_perf_stat_counter() (Michael Petlan) [1709243]
+- [tools] perf trace: Show comm and tid for tracepoint events (Michael Petlan) [1709243]
+- [tools] perf trace augmented_syscalls: Hook into syscalls:sys_exit_SYSCALL too (Michael Petlan) [1709243]
+- [tools] perf trace augmented_syscalls: Rename augmented_*_syscall__enter to just *_syscall (Michael Petlan) [1709243]
+- [tools] perf augmented_syscalls: Update the header comments (Michael Petlan) [1709243]
+- [tools] perf bpf: Add syscall_exit() helper (Michael Petlan) [1709243]
+- [tools] tools lib traceevent, perf tools: Split trace-seq related APIs in a separate header file (Michael Petlan) [1709243]
+- [tools] perf report: Create auxiliary trace data files for s390 (Michael Petlan) [1709243]
+- [tools] perf trace beauty: Reorganize 'struct sockaddr *' beautifier (Michael Petlan) [1709243]
+- [tools] perf trace augmented_syscalls: Augment sendto's 'addr' arg (Michael Petlan) [1709243]
+- [tools] perf trace augmented_syscalls: Augment bind's 'myaddr' sockaddr arg (Michael Petlan) [1709243]
+- [tools] perf trace augmented_syscalls: Add augmented_sockaddr_syscall_enter() (Michael Petlan) [1709243]
+- [tools] perf trace augmented_syscalls: Augment connect's 'sockaddr' arg (Michael Petlan) [1709243]
+- [tools] perf bpf: Add linux/socket.h to the headers accessible to bpf proggies (Michael Petlan) [1709243]
+- [tools] perf bpf: Give precedence to bpf header dir (Michael Petlan) [1709243]
+- [tools] perf trace: Add a etcsnoop.c augmented syscalls eBPF utility (Michael Petlan) [1709243]
+- [tools] perf trace: Augment 'newstat' (aka 'stat') filename ptr (Michael Petlan) [1709243]
+- [tools] perf trace: Introduce augmented_filename_syscall_enter() declarator (Michael Petlan) [1709243]
+- [tools] perf trace: Augment inotify_add_watch pathname syscall arg (Michael Petlan) [1709243]
+- [tools] perf trace: Augment the 'open' syscall 'filename' arg (Michael Petlan) [1709243]
+- [tools] perf trace: Use the augmented filename, expanding syscall enter pointers (Michael Petlan) [1709243]
+- [tools] perf trace: Show comm/tid for augmented_syscalls (Michael Petlan) [1709243]
+- [tools] perf trace: Extract the comm/tid printing for syscall enter (Michael Petlan) [1709243]
+- [tools] perf trace: Print the syscall name for augmented_syscalls (Michael Petlan) [1709243]
+- [tools] perf trace: Make the augmented_syscalls filter out the tracepoint event (Michael Petlan) [1709243]
+- [tools] perf trace: Pass augmented args to the arg formatters when available (Michael Petlan) [1709243]
+- [x86] perf/x86/intel: Disallow precise_ip on BTS events (Michael Petlan) [1709243]
+- [x86] perf/x86/intel: Add generic branch tracing check to intel_pmu_has_bts() (Michael Petlan) [1709243]
+- [x86] perf/x86/intel: Move branch tracing setup to the Intel-specific source file (Michael Petlan) [1709243]
+- [x86] perf/x86/intel: Fix regression by default disabling perfmon v4 interrupt handling (Michael Petlan) [1709243]
+- [x86] perf/x86/intel/uncore: Support CoffeeLake 8th CBOX (Michael Petlan) [1709243]
+- [x86] perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs (Michael Petlan) [1709243]
+- [tools] perf tools: Don't clone maps from parent when synthesizing forks (Michael Petlan) [1709243]
+- [tools] perf top: Allow disabling the overwrite mode (Michael Petlan) [1709243]
+- [kernel] perf/core: Clean up inconsisent indentation (Michael Petlan) [1709243]
+- [tools] perf script: Implement --graph-function (Michael Petlan) [1709243]
+- [tools] tools script: Add --call-trace and --call-ret-trace (Michael Petlan) [1709243]
+- [tools] perf script: Add --insn-trace for instruction decoding (Michael Petlan) [1709243]
+- [tools] perf trace: Introduce --max-events (Michael Petlan) [1709243]
+- [x86] perf/x86/intel: Add quirk for Goldmont Plus (Michael Petlan) [1709243]
+- [kernel] perf: Suppress AUX/OVERWRITE records (Michael Petlan) [1709243]
+- [x86] perf/x86/intel/pt: Annotate 'pt_cap_group' with __ro_after_init (Michael Petlan) [1709243]
+- [x86] perf/x86: Add __ro_after_init annotations (Michael Petlan) [1709243]
+- [x86] x86/mm/mem_encrypt: Disable all instrumentation for early SME setup (Janakarajan Natarajan) [1679265]
+- [fs] cifs: fix copy_file_range to allow write on the same file (Leif Sahlberg) [1689100]
+- [infiniband] Revert "[infiniband] IB/usnic: Remove stub functions" (Jonathan Toppins) [1713753]
+- [x86] Update stepping values for Whiskey Lake U/Y (David Arcari) [1704801]
+- [powerpc] powerpc/perf: Trace imc PMU functions (Jiri Olsa) [1608796]
+- [powerpc] powerpc/perf: Trace imc events detection and cpuhotplug (Jiri Olsa) [1608796]
+- [powerpc] powerpc/perf: Declare static identifier a such (Jiri Olsa) [1608796]
+- [powerpc] powerpc/perf: Add privileged access check for thread_imc (Jiri Olsa) [1608796]
+- [powerpc] powerpc/perf: Rearrange setting of ldbar for thread-imc (Jiri Olsa) [1608796]
+- [powerpc] powerpc/include: Add data structures and macros for IMC trace mode (Jiri Olsa) [1608796]
+- [scsi] hpsa: correct-static-checker-issue-in-reset-handler (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: update driver version (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: correct device resets (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: do-not-complete-cmds-for-deleted-devices (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: wait longer for ptraid commands (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: check for tag collision (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: use local workqueues instead of system workqueues (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: correct simple mode (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: bump driver version (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: correct device id issues (Joseph Szczypek) [1713772]
+- [scsi] scsi: hpsa: check for lv removal (Joseph Szczypek) [1713772]
+- [mm] mm, slub: restore the original intention of prefetch_freepointer() (Rafael Aquini) [1714671]
+- [fs] Revert "add KABI padding to dentry structure" (Waiman Long) [1714253]
+- [crypto] crypto: drbg - add FIPS 140-2 CTRNG for noise source (Herbert Xu) [1687905]
+- [infiniband] RDMA/qedr: Fix incorrect device rate. (Manish Chopra) [1713580]
+- [scsi] scsi: bnx2fc: remove unneeded variable (Nilesh Javali) [1665308]
+- [scsi] scsi: fcoe: make use of fip_mode enum complete (Nilesh Javali) [1665308]
+- [char] ipmi:ssif: compare block number correctly for multi-part return messages (Tony Camuso) [1712159]
+- [kernel] kernel/sysctl.c: define minmax conv functions in terms of non-minmax versions (Alex Gladkov) [1683922]
+- [kernel] kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv (Alex Gladkov) [1683922]
+- [tools] tools/testing/selftests/sysctl/sysctl.sh: add tests for >32-bit values written to 32-bit integers (Alex Gladkov) [1683922]
+- [kernel] sched/nohz: Run NOHZ idle load balancer on HK_FLAG_MISC CPUs (Desnes Augusto Nunes do Rosario) [1666614]
+- [kernel] nohz_full: Allow the boot CPU to be nohz_full (Desnes Augusto Nunes do Rosario) [1666614]
+- [kernel] sched/isolation: Require a present CPU in housekeeping mask (Desnes Augusto Nunes do Rosario) [1666614]
+- [kernel] kernel/cpu: Allow non-zero CPU to be primary for suspend / kexec freeze (Desnes Augusto Nunes do Rosario) [1666614]
+- [kernel] power/suspend: Add function to disable secondaries for suspend (Desnes Augusto Nunes do Rosario) [1666614]
+- [kernel] sched/core: Allow the remote scheduler tick to be started on CPU0 (Desnes Augusto Nunes do Rosario) [1666614]
+- [kernel] sched/fair: Use non-atomic cpumask_{set,clear}_cpu() (Desnes Augusto Nunes do Rosario) [1666614]
+- [lib] lib: reciprocal_div: implement the improved algorithm on the paper mentioned (Petr Oros) [1706982]
+- [kernel] kernel/sysctl.c: fix proc_do_large_bitmap for large input buffers (Eric Sandeen) [1667092]
+- [kernel] tools/testing/selftests/sysctl/sysctl.sh: add proc_do_large_bitmap() test case (Eric Sandeen) [1667092]
+- [tools] tools/testing/selftests/sysctl/sysctl.sh: allow graceful use on older kernels (Eric Sandeen) [1667092]
+- [tools] tools/testing/selftests/sysctl/sysctl.sh: ignore diff output on verify_diff_w() (Eric Sandeen) [1667092]
+- [tools] tools/testing/selftests/sysctl/sysctl.sh: load module before testing for it (Eric Sandeen) [1667092]
+- [tools] tools/testing/selftests/sysctl/sysctl.sh: remove superfluous test_reqs() (Eric Sandeen) [1667092]
+- [kernel] kernel/sysctl.c: fix out-of-bounds access when setting file-max (Eric Sandeen) [1694160]
+- [kernel] sysctl: handle overflow for file-max (Eric Sandeen) [1694160]
+- [kernel] sysctl: handle overflow in proc_get_long (Eric Sandeen) [1694160]
+- [s390] kvm: s390: Fix potential spectre warnings (Thomas Huth) [1702344]
+- [powerpc] mm: move warning from resize_hpt_for_hotplug() (Laurent Vivier) [1660737]
+- [powerpc] pseries: Use pr_xxx() in lpar.c (Laurent Vivier) [1660737]
+- [infiniband] RDMA/iw_cxgb4: Always disconnect when QP is transitioning to TERMINATE state (Arjun Vynipadath) [1664673]
+- [infiniband] cxgb4: kfree mhp after the debug print (Arjun Vynipadath) [1664673]
+- [infiniband] RDMA/cxbg: Use correct sizing on buffers holding page DMA addresses (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: Make function read_tcb() static (Arjun Vynipadath) [1664673]
+- [infiniband] RDMA/cxgb4: Remove kref accounting for sync operation (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: cq/qp mask depends on bar2 pages in a host page (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: fix srqidx leak during connection abort (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: complete the cached SRQ buffers (Arjun Vynipadath) [1664673]
+- [infiniband] rdma/cxgb4: Remove a set-but-not-used variable (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: use tos when finding ipv6 routes (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: use tos when importing the endpoint (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: use listening ep tos when accepting new connections (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb*: kzalloc the iwcm verbs struct (Arjun Vynipadath) [1664673]
+- [infiniband] RDMA/iw_cxgb4: Drop __GFP_NOFAIL (Arjun Vynipadath) [1664673]
+- [infiniband] infiniband: cxgb4: no need to check return value of debugfs_create functions (Arjun Vynipadath) [1664673]
+- [infiniband] RDMA/iw_cxgb4: Fix the unchecked ep dereference (Arjun Vynipadath) [1664673]
+- [infiniband] RDMA: Introduce and use rdma_device_to_ibdev() (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: Check for send WR also while posting write with completion WR (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: only reconnect with MPAv1 if the peer aborts (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: Use proper enumerated type in c4iw_bar2_addrs (Arjun Vynipadath) [1664673]
+- [infiniband] RDMA/cxgb4: remove redundant null pointer check before kfree_skb (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: Remove pci_unmap_addr() wrappers for DMA API (Arjun Vynipadath) [1664673]
+- [infiniband] iw_cxgb4: Declare ib_post_send() and ib_post_recv() arguments const (Arjun Vynipadath) [1664673]
+- [infiniband] rdma/cxgb4: Simplify a structure initialization (Arjun Vynipadath) [1664673]
+- [infiniband] rdma/cxgb4: Fix SRQ endianness annotations (Arjun Vynipadath) [1664673]
+- [infiniband] rdma/cxgb4: Add support for kernel mode SRQ's (Arjun Vynipadath) [1664673]
+- [infiniband] rdma/cxgb4: Add support for srq functions & structs (Arjun Vynipadath) [1664673]
+- [infiniband] RDMA/cxgb4: Restore the dropped uninitialized_var (Arjun Vynipadath) [1664673]
+- [infiniband] RDMA/cxgb4: Make c4iw_poll_cq_one() easier to analyze (Arjun Vynipadath) [1664673]
+- [fs] gfs2: clean_journal improperly set sd_log_flush_head (Robert S Peterson) [1693660]
+
+* Fri May 31 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-100.el8]
+- [netdrv] bonding/802.3ad: fix slave link initialization transition states (Jarod Wilson) [1714387]
+- [iommu] iommu/vt-d: Disable ATS support on untrusted devices (Jerry Snitselaar) [1649210 1692246]
+- [documentation] thunderbolt: Export IOMMU based DMA protection support to userspace (Jerry Snitselaar) [1649210 1692246]
+- [iommu] iommu/vt-d: Do not enable ATS for untrusted devices (Jerry Snitselaar) [1649210 1692246]
+- [iommu] iommu/vt-d: Force IOMMU on for platform opt in hint (Jerry Snitselaar) [1649210 1692246]
+- [arm64] arm64: makefile fix build of .i file in external module case (Jerome Marchand) [1713052]
+- [s390] s390/protvirt: block kernel command line alteration (Philipp Rudo) [1651711]
+- [s390] s390/protvirt: add memory sharing for diag 308 set/store (Philipp Rudo) [1651711]
+- [s390] s390/uv: introduce guest side ultravisor code (Philipp Rudo) [1651711]
+- [netdrv] net: aquantia: fix undefined devm_hwmon_device_register_with_info reference (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: Make aq_ndev_driver_name static (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: remove outdated device ids (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fixups on 64bit dma counters (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: get total counters from DMA block (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fetch up to date statistics on ethtool request (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: extract timer cb into work job (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: introduce fwreq mutex (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: user correct MSI irq type (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: use macros for better visibility (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: improve ifup link detection (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: link status irq handling (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: create global service workqueue (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: link interrupt handling function (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add link interrupt fields (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: implement hwmon api for chip temperature (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add infrastructure to readout chip temperature (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: enable driver build for arm64 or compile_test (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: improve LRO configuration (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: Increase rx ring default size from 1K to 2K (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: Make RX default frame size 2K (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: Introduce rx refill threshold value (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: optimize rx performance by page reuse strategy (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: optimize rx path using larger preallocated skb len (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fix rx checksum offload for UDP/TCP over IPv6 (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: use better wrappers for state registers (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: replace AQ_HW_WAIT_FOR with readx_poll_timeout_atomic (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fixed instack structure overflow (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fixed buffer overflow (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: added newline at end of file (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fixed memcpy size (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: regression on cpus with high cores: set mode with 8 queues (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add support of RSS configuration (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fix initialization of RSS table (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: increase max number of hw queues (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fix RSS table and key sizes (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fix rx checksum offload bits (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: return 'err' if set MPI_DEINIT state fails (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fix spelling mistake "specfield" -> "specified" (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: cleanup err handing in hw_atl_utils_fw_rpc_wait (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add support of rx-vlan-filter offload (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add ethertype and PCP to rx flow filters (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add vlan id to rx flow filters (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add support of L3/L4 ntuple filters (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add infrastructure for ntuple rules (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: add rx-flow filter definitions (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: allow rx checksum offload configuration (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: invalid checksumm offload implementation (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fixed enable unicast on 32 macvlan (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: fix potential IOMMU fault after driver unbind (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: synchronized flow control between mac/phy (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: make function aq_fw2x_update_stats static (Igor Russkikh) [1706905]
+- [netdrv] net: aquantia: remove some redundant variable initializations (Igor Russkikh) [1706905]
+- [netdrv] bnxt_en: Add device IDs 0x1806 and 0x1752 for 57500 devices. (Selvin Xavier) [1672208]
+- [scsi] scsi: fnic: Remove set but not used variable 'vdev' (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: no need to check return value of debugfs_create functions (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: Update fnic driver version to 1.6.0.47 (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: Enable fnic devcmd2 interface (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: Adding devcmd2 init and posting interfaces (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: Add devcmd2 initialization helpers (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: fnic devcmd2 controller definitions (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: fnic devcmd2 interface definitions (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: Impose upper limit on max. # of CQs processed per intr (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: RQ enable and then post descriptors (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: delaying vnic dev enable till after req intr (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: Warn when calling done for IO not issued to fw (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: fnic stats for max CQs processed and ISR time (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: Add port speed stat to fnic debug stats (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: use fnic_lock to guard fnic->state_flags (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: vnic_rq_clean change BUG_ON to WARN_ON (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: change fnic queue depth to 256 (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: support to display 20G port speed (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: Use vzalloc (Govindarajulu Varadarajan) [1656236]
+- [scsi] scsi: fnic: switch to generic DMA API (Govindarajulu Varadarajan) [1656236]
+- [pci] PCI/PME: Fix possible use-after-free on remove (Myron Stowe) [1701834]
+- [pci] PCI/PME: Fix hotplug/sysfs remove deadlock in pcie_pme_remove() (Myron Stowe) [1701834]
+- [pci] PCI: Blacklist power management of Gigabyte X299 DESIGNARE EX PCIe ports (Myron Stowe) [1701834]
+- [tools] perf arm64: Fix mksyscalltbl when system kernel headers are ahead of the kernel (Michael Petlan) [1709242]
+- [rpmspec] perf: remove bpf examples (Michael Petlan) [1709242]
+- [tools] perf tools: Stop fallbacking to kallsyms for vdso symbols lookup (Michael Petlan) [1709242]
+- [tools] perf report: Don't crash on invalid inline debug information (Michael Petlan) [1709242]
+- [tools] perf cpu_map: Align cpu map synthesized events properly. (Michael Petlan) [1709242]
+- [tools] perf tools: Fix tracing_path_mount proper path (Michael Petlan) [1709242]
+- [tools] perf evsel: Store ids for events with their own cpus perf_event__synthesize_event_update_cpus (Michael Petlan) [1709242]
+- [tools] perf vendor events intel: Fix wrong filter_band* values for uncore events (Michael Petlan) [1709242]
+- [tools] Revert "perf tools: Fix PMU term format max value calculation" (Michael Petlan) [1709242]
+- [tools] tools headers uapi: Sync kvm.h copy (Michael Petlan) [1709242]
+- [tools] perf record: Use unmapped IP for inline callchain cursors (Michael Petlan) [1709242]
+- [tools] perf python: Use -Wno-redundant-decls to build with PYTHON=python3 (Michael Petlan) [1709242]
+- [tools] perf report: Don't try to map ip to invalid map (Michael Petlan) [1709242]
+- [tools] perf script python: Fix export-to-sqlite.py sample columns (Michael Petlan) [1709242]
+- [tools] perf script python: Fix export-to-postgresql.py occasional failure (Michael Petlan) [1709242]
+- [tools] perf Documentation: Fix out-of-tree asciidoctor man page generation (Michael Petlan) [1709242]
+- [tools] perf tools: Fix maps__find_symbol_by_name() (Michael Petlan) [1709242]
+- [tools] tools headers uapi: Update tools's copy of linux/if_link.h (Michael Petlan) [1709242]
+- [tools] tools headers uapi: Update tools's copy of linux/vhost.h (Michael Petlan) [1709242]
+- [tools] tools headers uapi: Update tools's copies of kvm headers (Michael Petlan) [1709242]
+- [tools] tools headers uapi: Update tools's copy of drm/drm.h (Michael Petlan) [1709242]
+- [tools] tools headers uapi: Update tools's copy of asm-generic/unistd.h (Michael Petlan) [1709242]
+- [tools] tools headers uapi: Update tools's copy of linux/perf_event.h (Michael Petlan) [1709242]
+- [tools] perf annotate: Fix parsing aarch64 branch instructions after objdump update (Michael Petlan) [1709242]
+- [tools] perf probe powerpc: Ignore SyS symbols irrespective of endianness (Michael Petlan) [1709242]
+- [tools] perf event-parse: Use fixed size string for comms (Michael Petlan) [1709242]
+- [tools] perf util: Fix bad memory access in trace info. (Michael Petlan) [1709242]
+- [tools] perf tools: Streamline bpf examples and headers installation (Michael Petlan) [1709242]
+- [tools] perf evsel: Fix potential null pointer dereference in perf_evsel__new_idx() (Michael Petlan) [1709242]
+- [tools] perf arm64: Fix include path for asm-generic/unistd.h (Michael Petlan) [1709242]
+- [tools] perf tests: Add breakpoint modify tests (Michael Petlan) [1709242]
+- [tools] perf annotate: Properly interpret indirect call (Michael Petlan) [1709242]
+- [tools] tools/lib/lockdep: Add dummy task_struct state member (Michael Petlan) [1709242]
+- [tools] tools/lib/lockdep: Add empty nmi.h (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Change to SPDX License format (Michael Petlan) [1709242]
+- [tools] perf llvm: Allow passing options to llc in addition to clang (Michael Petlan) [1709242]
+- [tools] perf parser: Improve error message for PMU address filters (Michael Petlan) [1709242]
+- [tools] perf tools: Disable parallelism for 'make clean' (Michael Petlan) [1709242]
+- [tools] perf auxtrace: Fix queue resize (Michael Petlan) [1709242]
+- [tools] perf python: Remove -mcet and -fcf-protection when building with clang (Michael Petlan) [1709242]
+- [tools] perf arm spe: Fix uninitialized record error variable (Michael Petlan) [1709242]
+- [tools] perf tools: Move syscall_64.tbl check into check-headers.sh (Michael Petlan) [1709242]
+- [tools] perf tools: Make check-headers.sh check based on kernel dir (Michael Petlan) [1709242]
+- [tools] perf tools: Fix check-headers.sh AND list path of execution (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename static variables and functions in event-parse.c (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename various pevent APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename internal parser related APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename various pevent get/set/is APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename pevent_find_* APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename pevent field APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename pevent_data_ APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename pevent_register / unregister APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename pevent_filter* APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent,  perf tools: Rename traceevent_plugin_* APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent: Rename pevent_function* APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, tools lib lockdep: Rename 'enum pevent_errno' to 'enum tep_errno' (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename 'enum pevent_flag' to 'enum tep_flag' (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename traceevent_* APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename pevent_set_* APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename pevent_register_* APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename pevent_read_number_* APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename pevent print APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename pevent parse APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename pevent find APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename pevent alloc / free APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename pevent plugin related APIs (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename 'struct pevent_record' to 'struct tep_record' (Michael Petlan) [1709242]
+- [tools] tools lib traceevent, perf tools: Rename struct pevent to struct tep_handle (Michael Petlan) [1709242]
+- [tools] perf probe powerpc: Fix trace event post-processing (Michael Petlan) [1709242]
+- [tools] perf map: Optimize maps__fixup_overlappings() (Michael Petlan) [1709242]
+- [tools] perf map: Synthesize maps only for thread group leader (Michael Petlan) [1709242]
+- [tools] perf trace: Wire up the augmented syscalls with the syscalls:sys_enter_FOO beautifier (Michael Petlan) [1709242]
+- [tools] perf trace: Setup the augmented syscalls bpf-output event fields (Michael Petlan) [1709242]
+- [tools] perf bpf: Make bpf__setup_output_event() return the bpf-output event (Michael Petlan) [1709242]
+- [tools] perf trace: Handle "bpf-output" events associated with "__augmented_syscalls__" BPF map (Michael Petlan) [1709242]
+- [tools] perf bpf: Add wrappers to BPF_FUNC_probe_read(_str) functions (Michael Petlan) [1709242]
+- [tools] perf bpf: Add bpf__setup_output_event() strerror() counterpart (Michael Petlan) [1709242]
+- [tools] perf bpf: Generalize bpf__setup_stdout() (Michael Petlan) [1709242]
+- [tools] perf bpf: Make bpf__for_each_stdout_map() generic (Michael Petlan) [1709242]
+- [tools] perf bpf: Add bpf/stdio.h wrapper to bpf_perf_event_output function (Michael Petlan) [1709242]
+- [tools] perf bpf: Add struct bpf_map struct (Michael Petlan) [1709242]
+- [tools] perf report: Add --percent-type option (Michael Petlan) [1709242]
+- [tools] perf annotate: Add --percent-type option (Michael Petlan) [1709242]
+- [tools] perf annotate: Display percent type in stdio output (Michael Petlan) [1709242]
+- [tools] perf annotate: Make local period the default percent type (Michael Petlan) [1709242]
+- [tools] perf annotate: Add support to toggle percent type (Michael Petlan) [1709242]
+- [tools] perf annotate: Pass browser percent_type in annotate_browser__calc_percent() (Michael Petlan) [1709242]
+- [tools] perf annotate: Pass 'struct annotation_options' to map_symbol__annotation_dump() (Michael Petlan) [1709242]
+- [tools] perf annotate: Pass struct annotation_options to symbol__calc_lines() (Michael Petlan) [1709242]
+- [tools] perf annotate: Add percent_type to struct annotation_options (Michael Petlan) [1709242]
+- [tools] perf annotate: Add PERCENT_PERIOD_GLOBAL percent value (Michael Petlan) [1709242]
+- [tools] perf annotate: Add PERCENT_PERIOD_LOCAL percent value (Michael Petlan) [1709242]
+- [tools] perf annotate: Add PERCENT_HITS_GLOBAL percent value (Michael Petlan) [1709242]
+- [tools] perf annotate: Switch struct annotation_data::percent to array (Michael Petlan) [1709242]
+- [tools] perf annotate: Loop group events directly in annotation__calc_percent() (Michael Petlan) [1709242]
+- [tools] perf annotate: Rename hist to sym_hist in annotation__calc_percent (Michael Petlan) [1709242]
+- [tools] perf annotate: Rename local sample variables to data (Michael Petlan) [1709242]
+- [tools] perf annotate: Rename struct annotation_line::samples* to data* (Michael Petlan) [1709242]
+- [tools] perf annotate: Get rid of annotation__scnprintf_samples_period() (Michael Petlan) [1709242]
+- [tools] perf annotate: Make annotation_line__max_percent static (Michael Petlan) [1709242]
+- [tools] perf annotate: Make symbol__annotate_fprintf2() local (Michael Petlan) [1709242]
+- [tools] perf bpf: Add 'syscall_enter' probe helper for syscall enter tracepoints (Michael Petlan) [1709242]
+- [tools] perf tools: Drop unneeded bitmap_zero() calls (Michael Petlan) [1709242]
+- [tools] perf vendor events arm64: Enable JSON events for eMAG (Michael Petlan) [1709242]
+- [tools] perf report: Add GUI report support for s390 auxiliary trace (Michael Petlan) [1709242]
+- [tools] perf report: Add raw report support for s390 auxiliary trace (Michael Petlan) [1709242]
+- [tools] perf auxtrace: Support for perf report -D for s390 (Michael Petlan) [1709242]
+- [tools] perf trace: Use perf_evsel__sc_tp_{uint,ptr} for "id"/"args" handling syscalls:* events (Michael Petlan) [1709242]
+- [tools] perf trace: Setup struct syscall_tp for syscalls:sys_{enter,exit}_NAME events (Michael Petlan) [1709242]
+- [tools] perf trace: Allow setting up a syscall_tp struct without a format_field (Michael Petlan) [1709242]
+- [tools] perf trace: Rename some syscall_tp methods to raw_syscall (Michael Petlan) [1709242]
+- [tools] perf trace: Use beautifiers on syscalls:sys_enter_ handlers (Michael Petlan) [1709242]
+- [tools] perf trace: Associate vfs_getname()'ed pathname with fd returned from 'openat' (Michael Petlan) [1709242]
+- [tools] perf trace: Do not require --no-syscalls to suppress strace like output (Michael Petlan) [1709242]
+- [tools] perf bpf: Include uapi/linux/bpf.h from the 'perf trace' script's bpf.h (Michael Petlan) [1709242]
+- [tools] perf tools: Allow overriding MAX_NR_CPUS at compile time (Michael Petlan) [1709242]
+- [tools] perf bpf: Show better message when failing to load an object (Michael Petlan) [1709242]
+- [tools] perf list: Unify metric group description format with PMU event description (Michael Petlan) [1709242]
+- [tools] perf cs-etm: Generate branch sample for CS_ETM_TRACE_ON packet (Michael Petlan) [1709242]
+- [tools] perf cs-etm: Generate branch sample when receiving a CS_ETM_TRACE_ON packet (Michael Petlan) [1709242]
+- [tools] perf cs-etm: Support dummy address value for CS_ETM_TRACE_ON packet (Michael Petlan) [1709242]
+- [tools] perf cs-etm: Fix start tracing packet handling (Michael Petlan) [1709242]
+- [tools] perf build: Fix installation directory for eBPF (Michael Petlan) [1709242]
+- [tools] perf c2c report: Fix crash for empty browser (Michael Petlan) [1709242]
+- [tools] perf tests: Fix indexing when invoking subtests (Michael Petlan) [1709242]
+- [tools] perf trace: Beautify the AF_INET & AF_INET6 'socket' syscall 'protocol' args (Michael Petlan) [1709242]
+- [tools] perf trace beauty: Add beautifiers for 'socket''s 'protocol' arg (Michael Petlan) [1709242]
+- [tools] perf trace beauty: Do not print NULL strarray entries (Michael Petlan) [1709242]
+- [tools] perf beauty: Add a generator for IPPROTO_ socket's protocol constants (Michael Petlan) [1709242]
+- [tools] tools include uapi: Grab a copy of linux/in.h (Michael Petlan) [1709242]
+- [tools] perf tests: Fix complex event name parsing (Michael Petlan) [1709242]
+- [tools] perf evlist: Fix error out while applying initial delay and LBR (Michael Petlan) [1709242]
+- [tools] perf trace beauty: Default header_dir to cwd to work without parms (Michael Petlan) [1709242]
+- [tools] perf test: Fix subtest number when showing results (Michael Petlan) [1709242]
+- [tools] perf stat: Get rid of extra clock display function (Michael Petlan) [1709242]
+- [tools] perf tools: Use perf_evsel__match instead of open coded equivalent (Michael Petlan) [1709242]
+- [tools] perf tools: Fix struct comm_str removal crash (Michael Petlan) [1709242]
+- [tools] perf machine: Use last_match threads cache only in single thread mode (Michael Petlan) [1709242]
+- [tools] perf machine: Add threads__set_last_match function (Michael Petlan) [1709242]
+- [tools] perf machine: Add threads__get_last_match function (Michael Petlan) [1709242]
+- [tools] perf tools: Synthesize GROUP_DESC feature in pipe mode (Michael Petlan) [1709242]
+- [tools] perf script: Show correct offsets for DWARF-based unwinding (Michael Petlan) [1709242]
+- [tools] perf trace arm64: Use generated syscall table (Michael Petlan) [1709242]
+- [tools] perf arm64: Generate system call table from asm/unistd.h (Michael Petlan) [1709242]
+- [tools] tools include: Grab copies of arm64 dependent unistd.h files (Michael Petlan) [1709242]
+- [tools] perf tests: Fix record+probe_libc_inet_pton.sh when event exists (Michael Petlan) [1709242]
+- [tools] perf tests: Fix record+probe_libc_inet_pton.sh to ensure cleanups (Michael Petlan) [1709242]
+- [tools] perf tests: Fix record+probe_libc_inet_pton.sh for powerpc64 (Michael Petlan) [1709242]
+- [tools] perf powerpc: Fix callchain ip filtering when return address is in a register (Michael Petlan) [1709242]
+- [tools] perf powerpc: Fix callchain ip filtering (Michael Petlan) [1709242]
+- [tools] perf list: Add missing documentation for --desc and --debug options (Michael Petlan) [1709242]
+- [tools] perf stat: Add transaction flag (-T) support for s390 (Michael Petlan) [1709242]
+- [tools] perf json: Add s390 transaction counter definition (Michael Petlan) [1709242]
+- [tools] perf list: Add s390 support for detailed PMU event description (Michael Petlan) [1709242]
+- [tools] Revert "perf list: Add s390 support for detailed/verbose PMU event description" (Michael Petlan) [1709242]
+- [tools] perf cs-etm: Bail out immediately for instruction sample failure (Michael Petlan) [1709242]
+- [tools] perf cs-etm: Introduce invalid address macro (Michael Petlan) [1709242]
+- [tools] perf hists: Clarify callchain disabling when available (Michael Petlan) [1709242]
+- [tools] perf tests: Check that complex event name is parsed correctly (Michael Petlan) [1709242]
+- [arm64] arm64: perf: Reject stand-alone CHAIN events for PMUv3 (Michael Petlan) [1709242]
+- [x86] perf/x86/amd/uncore: Set ThreadMask and SliceMask for L3 Cache perf events (Michael Petlan) [1709242]
+- [x86] perf/x86/intel/uncore: Fix PCI BDF address of M3UPI on SKX (Michael Petlan) [1709242]
+- [kernel] perf/ring_buffer: Prevent concurent ring buffer access (Michael Petlan) [1709242]
+- [x86] perf/x86/intel/uncore: Use boot_cpu_data.phys_proc_id instead of hardcorded physical package ID 0 (Michael Petlan) [1709242]
+- [kernel] perf/core: Fix perf_pmu_unregister() locking (Michael Petlan) [1709242]
+- [kernel] perf/core: Add sanity check to deal with pinned event failure (Michael Petlan) [1709242]
+- [kernel] perf/core: Force USER_DS when recording user stack data (Michael Petlan) [1709242]
+- [include] perf/UAPI: Clearly mark __PERF_SAMPLE_CALLCHAIN_EARLY as internal use (Michael Petlan) [1709242]
+- [x86] perf/x86/intel: Add support/quirk for the MISPREDICT bit on Knights Landing CPUs (Michael Petlan) [1709242]
+- [kernel] perf/hw_breakpoint: Simplify breakpoint enable in perf_event_modify_breakpoint (Michael Petlan) [1709242]
+- [kernel] perf/hw_breakpoint: Enable breakpoint in modify_user_hw_breakpoint (Michael Petlan) [1709242]
+- [kernel] perf/hw_breakpoint: Remove superfluous bp->attr.disabled = 0 (Michael Petlan) [1709242]
+- [kernel] arm64: perf: Add cap_user_time aarch64 (Michael Petlan) [1709242]
+- [include] arm_pmu: Add support for 64bit event counters (Michael Petlan) [1709242]
+- [x86] perf/x86/intel: Support Extended PEBS for Goldmont Plus (Michael Petlan) [1709242]
+- [x86] perf/x86/intel/ds: Handle PEBS overflow for fixed counters (Michael Petlan) [1709242]
+- [x86] perf/x86/intel: Support PEBS on fixed counters (Michael Petlan) [1709242]
+- [kernel] perf, tools: Use correct articles in comments (Michael Petlan) [1709242]
+- [kernel] perf/hw_breakpoint: Clean up and consolidate modify_user_hw_breakpoint_check() (Michael Petlan) [1709242]
+- [kernel] perf/hw_breakpoint: Pass new breakpoint type to modify_breakpoint_slot() (Michael Petlan) [1709242]
+- [kernel] perf/hw_breakpoint: Remove default hw_breakpoint_arch_parse() (Michael Petlan) [1709242]
+- [arm64] perf/arch/arm64: Implement hw_breakpoint_arch_parse() (Michael Petlan) [1709242]
+- [powerpc] perf/arch/powerpc: Implement hw_breakpoint_arch_parse() (Michael Petlan) [1709242]
+- [x86] perf/arch/x86: Implement hw_breakpoint_arch_parse() (Michael Petlan) [1709242]
+- [arm64] perf/hw_breakpoint: Pass arch breakpoint struct to arch_check_bp_in_kernelspace() (Michael Petlan) [1709242]
+- [kernel] perf/core: Change perf_mmap_fault() return type to 'vm_fault_t' (Michael Petlan) [1709242]
+- [x86] perf/x86/intel/lbr: Optimize context switches for the LBR call stack (Michael Petlan) [1709242]
+- [netdrv] cnic: Refactor code and mark expected switch fall-through (Nilesh Javali) [1665302]
+- [netdrv] cnic: remove use of VLAN_TAG_PRESENT (Nilesh Javali) [1665302]
+- [netdrv] cnic: use kvzalloc to allocate memory for csk_tbl (Nilesh Javali) [1665302]
+- [netdrv] cnic: remove redundant pointer req and variable func (Nilesh Javali) [1665302]
+- [scsi] drivers: Remove useless trailing comments from mmiowb() invocations (Nilesh Javali) [1665307]
+- [scsi] scsi: qedf: remove set but not used variables (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Update the driver version to 8.37.25.20 (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add return value to log message if scsi_add_host fails (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Print fcport information on wait for upload timeout (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Check the return value of start_xmit (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Log message if scsi_add_host fails (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Check for fcoe_libfc_config failure (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add comment to display logging levels (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add port_id for fcport into initiate_cleanup debug message (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add LBA to underrun debug messages (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Print scsi_cmd backpointer in good completion path if the command is still being used (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add driver state to 'driver_stats' debugfs node (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Change MSI-X load error message (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: remove memset/memcpy to nfunc and use func instead (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Remove set but not used variable 'fr_len' (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Update the driver version to 8.37.25.19 (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Fix lport may be used uninitialized warning (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Correctly handle refcounting of rdata (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Cleanup rrq_work after QEDF_CMD_OUTSTANDING is cleared (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Check for tm_flags instead of cmd_type during cleanup (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add a flag to help debugging io_req which could not be cleaned (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Don't send ABTS for under run scenario (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Don't queue anything if upload is in progress (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Check both the FCF and fabric ID before servicing clear virtual link (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: fc_rport_priv reference counting fixes (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add missing return in qedf_scsi_done() (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Wait for upload and link down processing during soft ctx reset (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add additional checks for io_req->sc_cmd validity (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: fixup bit operations (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: fixup locking in qedf_restart_rport() (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: missing kref_put in qedf_xmit() (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Check for link state before processing LL2 packets and send fipvlan retries (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add missing fc_disc_init call after allocating lport (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Correct the memory barriers in qedf_ring_doorbell (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Use a separate completion for cleanup commands (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Modify abort and tmf handler to handle edge condition and flush (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Modify flush routine to handle all I/Os and TMF (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Simplify s/g list mapping (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Add missing return in qedf_post_io_req() in the fcport offload check (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Correct xid range overlap between offloaded requests and libfc requests (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: Do not retry ELS request if qedf_alloc_cmd fails (Nilesh Javali) [1665301]
+- [scsi] scsi: fcoe: make use of fip_mode enum complete (Nilesh Javali) [1665301]
+- [scsi] scsi: stop setting up request->special (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: no need to check return value of debugfs_create functions (Nilesh Javali) [1665301]
+- [scsi] cross-tree: phase out dma_zalloc_coherent() (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: NULL check before some freeing functions is not needed (Nilesh Javali) [1665301]
+- [scsi] scsi: qedf: fully convert to the generic DMA API (Nilesh Javali) [1665301]
+- [scsi] scsi: qedi: Adjust termination and offload ramrod timers (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Abort ep termination if offload not scheduled (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: fix spelling mistake "oflload" -> "offload" (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: remove declaration of nvm_image from stack (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Remove set but not used variable 'cls_sess' (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Add ep_state for login completion on un-reachable targets (Nilesh Javali) [1665300]
+- [scsi] cross-tree: phase out dma_zalloc_coherent() (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Update driver version to 8.33.0.21 (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Move LL2 producer index processing in BH. (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: add module param to set ping packet size (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Add packet filter in light L2 Rx path. (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Check for session online before getting iSCSI TLV data. (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Replace PAGE_SIZE with QEDI_PAGE_SIZE (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Fix spelling mistake "OUSTANDING" -> "OUTSTANDING" (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: Cleanup redundant QEDI_PAGE_SIZE macro definition (Nilesh Javali) [1665300]
+- [scsi] scsi: qedi: fully convert to the generic DMA API (Nilesh Javali) [1665300]
+- [x86] x86/kdump: Fall back to reserve high crashkernel memory (Pingfan Liu) [1682984]
+- [x86] x86/kdump: Have crashkernel=X reserve under 4G by default (Pingfan Liu) [1682984]
+- [x86] Revert "[x86] x86/kdump: make the behavior of crashkernel=X consistent with kaslr" (Pingfan Liu) [1682984]
+- [scsi] scsi: core: avoid pre-allocating big SGL for data (Ewan Milne) [1698297]
+- [scsi] scsi: core: avoid pre-allocating big SGL for protection information (Ewan Milne) [1698297]
+- [nvme] scsi: lib/sg_pool.c: improve APIs for allocating sg pool (Ewan Milne) [1698297]
+- [kvm] KVM: PPC: Book3S HV: Save/restore vrsave register in kvmhv_p9_guest_entry() (Suraj Jitindar Singh) [1700272]
+- [fs] ext4: avoid kernel warning when writing the superblock to a dead device (Lukas Czerner) [1695021]
+- [fs] ext4: cond_resched in work-heavy group loops (Lukas Czerner) [1698815]
+- [fs] ext4: ignore e_value_offs for xattrs with value-in-ea-inode (Lukas Czerner) [1698815]
+- [fs] ext4: protect journal inode's blocks using block_validity (Lukas Czerner) [1698815]
+- [fs] ext4: use BUG() instead of BUG_ON(1) (Lukas Czerner) [1698815]
+- [fs] jbd2: check superblock mapped prior to committing (Lukas Czerner) [1698815]
+- [fs] ext4: remove incorrect comment for NEXT_ORPHAN() (Lukas Czerner) [1698815]
+- [fs] ext4: make sanity check in mballoc more strict (Lukas Czerner) [1698815]
+- [fs] ext4: fix use-after-free race with debug_want_extra_isize (Lukas Czerner) [1698815]
+- [fs] ext4: fix ext4_show_options for file systems w/o journal (Lukas Czerner) [1698815]
+- [fs] ext4: actually request zeroing of inode table after grow (Lukas Czerner) [1698815]
+- [fs] Revert "ext4: use ext4_write_inode() when fsyncing w/o a journal" (Lukas Czerner) [1698815]
+- [fs] ext4: fix some error pointer dereferences (Lukas Czerner) [1698815]
+- [fs] ext4: fix special inode number checks in __ext4_iget() (Lukas Czerner) [1698815]
+- [fs] ext4: prohibit fstrim in norecovery mode (Lukas Czerner) [1698815]
+- [fs] ext4: cleanup bh release code in ext4_ind_remove_space() (Lukas Czerner) [1698815]
+- [fs] ext4: brelse all indirect buffer in ext4_ind_remove_space() (Lukas Czerner) [1698815]
+- [fs] ext4: report real fs size after failed resize (Lukas Czerner) [1698815]
+- [fs] ext4: add missing brelse() in add_new_gdb_meta_bg() (Lukas Czerner) [1698815]
+- [fs] ext4: remove useless ext4_pin_inode() (Lukas Czerner) [1698815]
+- [fs] ext4: avoid panic during forced reboot (Lukas Czerner) [1698815]
+- [fs] ext4: fix data corruption caused by unaligned direct AIO (Lukas Czerner) [1698815]
+- [fs] ext4: fix NULL pointer dereference while journal is aborted (Lukas Czerner) [1698815]
+- [fs] jbd2: jbd2_get_transaction does not need to return a value (Lukas Czerner) [1698815]
+- [fs] jbd2: fix invalid descriptor block checksum (Lukas Czerner) [1698815]
+- [fs] ext4: fix bigalloc cluster freeing when hole punching under load (Lukas Czerner) [1698815]
+- [fs] ext4: add sysfs attr /sys/fs/ext4/<disk>/journal_task (Lukas Czerner) [1698815]
+- [fs] ext4: Change debugging support help prefix from EXT4 to Ext4 (Lukas Czerner) [1698815]
+- [fs] ext4: fix compile error when using BUFFER_TRACE (Lukas Czerner) [1698815]
+- [fs] jbd2: fix compile warning when using JBUFFER_TRACE (Lukas Czerner) [1698815]
+- [fs] ext4: annotate more implicit fall throughs (Lukas Czerner) [1698815]
+- [fs] ext4: annotate implicit fall throughs (Lukas Czerner) [1698815]
+- [fs] ext4: don't update s_rev_level if not required (Lukas Czerner) [1698815]
+- [fs] jbd2: fold jbd2_superblock_csum_{verify,set} into their callers (Lukas Czerner) [1698815]
+- [fs] jbd2: fix race when writing superblock (Lukas Czerner) [1698815]
+- [fs] ext4: fix crash during online resizing (Lukas Czerner) [1698815]
+- [fs] ext4: disallow files with EXT4_JOURNAL_DATA_FL from EXT4_IOC_SWAP_BOOT (Lukas Czerner) [1698815]
+- [fs] ext4: add mask of ext4 flags to swap (Lukas Czerner) [1698815]
+- [fs] ext4: update quota information while swapping boot loader inode (Lukas Czerner) [1698815]
+- [fs] ext4: cleanup pagecache before swap i_data (Lukas Czerner) [1698815]
+- [fs] ext4: fix check of inode in swap_inode_boot_loader (Lukas Czerner) [1698815]
+- [fs] ext4: unlock unused_pages timely when doing writeback (Lukas Czerner) [1698815]
+- [fs] ext4: cleanup clean_bdev_aliases() calls (Lukas Czerner) [1698815]
+- [fs] jbd2: discard dirty data when forgetting an un-journalled buffer (Lukas Czerner) [1698815]
+- [fs] jbd2: clear dirty flag when revoking a buffer from an older transaction (Lukas Czerner) [1698815]
+- [fs] ext4: replace opencoded i_writecount usage with inode_is_open_for_write() (Lukas Czerner) [1698815]
+- [fs] jbd2: fix deadlock while checkpoint thread waits commit thread to finish (Lukas Czerner) [1698815]
+- [fs] ext4: use IS_ENCRYPTED() to check encryption status (Lukas Czerner) [1698815]
+- [fs] ext4: track writeback errors using the generic tracking infrastructure (Lukas Czerner) [1698815]
+- [fs] ext4: use ext4_write_inode() when fsyncing w/o a journal (Lukas Czerner) [1698815]
+- [fs] ext4: fix a potential fiemap/page fault deadlock w/ inline_data (Lukas Czerner) [1698815]
+- [fs] ext4: make sure enough credits are reserved for dioread_nolock writes (Lukas Czerner) [1698815]
+- [fs] ext4: check for shutdown and r/o file system in ext4_write_inode() (Lukas Czerner) [1698815]
+- [fs] ext4: force inode writes when nfsd calls commit_metadata() (Lukas Czerner) [1698815]
+- [fs] ext4: avoid declaring fs inconsistent due to invalid file handles (Lukas Czerner) [1698815]
+- [fs] ext4: include terminating u32 in size of xattr entries when expanding inodes (Lukas Czerner) [1698815]
+- [fs] ext4: compare old and new mode before setting update_mode flag (Lukas Czerner) [1698815]
+- [fs] ext4: fix EXT4_IOC_GROUP_ADD ioctl (Lukas Czerner) [1698815]
+- [fs] ext4: hard fail dax mount on unsupported devices (Lukas Czerner) [1698815]
+- [fs] ext4: remove redundant condition check (Lukas Czerner) [1698815]
+- [fs] jbd2: clean up indentation issue, replace spaces with tab (Lukas Czerner) [1698815]
+- [fs] ext4: clean up indentation issues, remove extraneous tabs (Lukas Czerner) [1698815]
+- [fs] ext4: missing unlock/put_page() in ext4_try_to_write_inline_data() (Lukas Czerner) [1698815]
+- [fs] ext4: fix possible use after free in ext4_quota_enable (Lukas Czerner) [1698815]
+- [fs] jbd2: avoid long hold times of j_state_lock while committing a transaction (Lukas Czerner) [1698815]
+- [fs] ext4: add ext4_sb_bread() to disambiguate ENOMEM cases (Lukas Czerner) [1698815]
+- [fs] ext4: remove unneeded brelse call in ext4_xattr_inode_update_ref() (Lukas Czerner) [1698815]
+- [fs] ext4: fix use-after-free race in ext4_remount()'s error path (Lukas Czerner) [1698815]
+- [fs] ext4: don't open-code ERR_CAST (Lukas Czerner) [1698815]
+- [fs] ext4: cache NULL when both default_acl and acl are NULL (Lukas Czerner) [1698815]
+- [fs] ext4: propagate error from dquot_initialize() in EXT4_IOC_FSSETXATTR (Lukas Czerner) [1698815]
+- [fs] ext4: fix setattr project check in fssetxattr ioctl (Lukas Czerner) [1698815]
+- [fs] ext4: convert fault handler to use vm_fault_t type (Lukas Czerner) [1698815]
+- [fs] ext4: fix EXT4_IOC_SWAP_BOOT (Lukas Czerner) [1698815]
+- [fs] ext4: fix argument checking in EXT4_IOC_MOVE_EXT (Lukas Czerner) [1698815]
+- [fs] ext4: fix reserved cluster accounting at page invalidation time (Lukas Czerner) [1698815]
+- [fs] ext4: adjust reserved cluster count when removing extents (Lukas Czerner) [1698815]
+- [fs] ext4: reduce reserved cluster count by number of allocated clusters (Lukas Czerner) [1698815]
+- [fs] ext4: fix reserved cluster accounting at delayed write time (Lukas Czerner) [1698815]
+- [fs] ext4: add new pending reservation mechanism (Lukas Czerner) [1698815]
+- [fs] ext4: generalize extents status tree search functions (Lukas Czerner) [1698815]
+- [fs] ext4: readpages() should submit IO as read-ahead (Lukas Czerner) [1698815]
+- [fs] ext4: improve code readability in ext4_iget() (Lukas Czerner) [1698815]
+- [fs] ext4: use swap macro in mext_page_double_lock (Lukas Czerner) [1698815]
+- [fs] ext4: fix warning message in ext4_enable_quotas() (Lukas Czerner) [1698815]
+- [fs] ext4: super: extend timestamps to 40 bits (Lukas Czerner) [1698815]
+- [fs] jbd2: replace current_kernel_time64 with ktime equivalent (Lukas Czerner) [1698815]
+- [fs] ext4: use timespec64 for all inode times (Lukas Czerner) [1698815]
+- [fs] ext4: use ktime_get_real_seconds for i_dtime (Lukas Czerner) [1698815]
+- [fs] ext4: use 64-bit timestamps for mmp_time (Lukas Czerner) [1698815]
+- [scsi] scsi: smartpqi: Use HCTX_TYPE_DEFAULT for blk_mq_tag_set->map (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: bump driver version (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: add spdx (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: update copyright (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: add H3C controller IDs (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: increase LUN reset timeout (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: Reporting 'logical unit failure' (Don Brace) [1665565]
+- [scsi] scsi: smartpqi_init: fix boolean expression in pqi_device_remove_start (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: call pqi_free_interrupts() in pqi_shutdown() (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: fix build warnings (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: update driver version (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: add ofa support (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: increase fw status register read timeout (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: bump driver version (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: add smp_utils support (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: correct lun reset issues (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: correct volume status (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: do not offline disks for transient did no connect conditions (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: allow for larger raid maps (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: check for null device pointers (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: enhance numa node detection (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: wake up drives after os resumes from suspend (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: fix disk name mount point (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: add h3c ssid (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: add sysfs attributes (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: refactor sending controller raid requests (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: turn off lun data caching for ptraid (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: correct host serial num for ssa (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: add no_write_same for logical volumes (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: Add retries for device reset (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: add support for PQI Config Table handshake (Don Brace) [1665565]
+- [scsi] scsi: smartpqi: fully convert to the generic DMA API (Don Brace) [1665565]
+- [net] rtnetlink: always put IFLA_LINK for links with a link-netnsid (Sabrina Dubroca) [1711933]
+- [net] ipv6: add inet6_fill_args (Ivan Vecera) [1711956]
+- [net] ipv4: add inet_fill_args (Ivan Vecera) [1711956]
+- [net] rtnetlink: s/IFLA_IF_NETNSID/IFLA_TARGET_NETNSID/g (Ivan Vecera) [1711956]
+- [include] if_link: add IFLA_TARGET_NETNSID alias (Ivan Vecera) [1711956]
+- [net] rtnetlink: move type calculation out of loop (Ivan Vecera) [1711956]
+- [net] ipv6: enable IFA_TARGET_NETNSID for RTM_GETADDR (Ivan Vecera) [1711956]
+- [net] ipv4: enable IFA_TARGET_NETNSID for RTM_GETADDR (Ivan Vecera) [1711956]
+- [include] if_addr: add IFA_TARGET_NETNSID (Ivan Vecera) [1711956]
+- [net] rtnetlink: add rtnl_get_net_ns_capable() (Ivan Vecera) [1711956]
+- [tools] selftests: forwarding: mirror_gre_vlan_bridge_1q: Fix untagged test (Hangbin Liu) [1710283]
+- [tools] selftests: forwarding: Tweak tc filters for mirror-to-gretap tests (Hangbin Liu) [1710283]
+- [tools] selftests: forwarding: lib: Avoid trapping soft devices (Hangbin Liu) [1710283]
+- [tools] selftests: pmtu: maximum MTU for vti4 is 2^16-1-20 (Hangbin Liu) [1704659]
+- [net] sched: red: inform offloads about harddrop setting (Ivan Vecera) [1710999]
+- [net] tls: fix copy to fragments in reencrypt (Ivan Vecera) [1710366]
+- [net] tls: don't copy negative amounts of data in reencrypt (Ivan Vecera) [1710366]
+- [net] tls: don't leak IV and record seq when offload fails (Ivan Vecera) [1710366]
+- [net] tls: avoid potential deadlock in tls_set_device_offload_rx() (Ivan Vecera) [1710366]
+- [net] tls: prevent bad memory access in tls_is_sk_tx_device_offloaded() (Ivan Vecera) [1710366]
+- [net] tls: Combined memory allocation for decryption request (Ivan Vecera) [1710366]
+- [net] tls: Skip zerocopy path for ITER_KVEC (Ivan Vecera) [1710366]
+- [net] tls: Fix copy-paste error in tls_device_reencrypt (Ivan Vecera) [1710366]
+- [net] tls: Add rx inline crypto offload (Ivan Vecera) [1710366]
+- [net] tls: Fill software context without allocation (Ivan Vecera) [1710366]
+- [net] tls: Split tls_sw_release_resources_rx (Ivan Vecera) [1710366]
+- [net] tls: Split decrypt_skb to two functions (Ivan Vecera) [1710366]
+- [net] tcp: Don't coalesce decrypted and encrypted SKBs (Ivan Vecera) [1710366]
+- [include] Add TLS rx resync NDO (Ivan Vecera) [1710366]
+- [net] Add TLS RX offload feature (Ivan Vecera) [1710366]
+- [net] Add decrypted field to skb (Ivan Vecera) [1710366]
+- [net] tls: Use aead_request_alloc/free for request alloc/free (Ivan Vecera) [1710366]
+- [net] tls: Refactor tls_offload variable names (Ivan Vecera) [1703389]
+
+* Thu May 30 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-99.el8]
+- [netdrv] qede: use ethtool_rx_flow_rule() to remove duplicated parser code (Manish Chopra) [1663274]
+- [netdrv] qede: place ethtool_rx_flow_spec after code after TC flower codebase (Manish Chopra) [1663274]
+- [netdrv] drivers: net: use flow action infrastructure (Manish Chopra) [1663274]
+- [netdrv] flow_offload: add flow_rule and flow_match structures and use them (Manish Chopra) [1663274]
+- [infiniband] RDMA: Cleanup undesired pd->uobject usage (Manish Chopra) [1663274]
+- [netdrv] qede: Populate mbi version in ethtool driver query data. (Manish Chopra) [1663274]
+- [netdrv] qed: Define new MF bit for no_vlan config (Manish Chopra) [1663274]
+- [netdrv] qed: fix spelling mistake "faspath" -> "fastpath" (Manish Chopra) [1663274]
+- [netdrv] qed: Fix the DORQ's attentions handling (Manish Chopra) [1663274]
+- [netdrv] qed: Fix missing DORQ attentions (Manish Chopra) [1663274]
+- [netdrv] qed: Fix the doorbell address sanity check (Manish Chopra) [1663274]
+- [netdrv] qed: Delete redundant doorbell recovery types (Manish Chopra) [1663274]
+- [netdrv] qede: fix write to free'd pointer error and double free of ptp (Manish Chopra) [1663274]
+- [netdrv] qede: Fix internal loopback failure with jumbo mtu configuration (Manish Chopra) [1663274]
+- [netdrv] qed: Read device port count from the shmem (Manish Chopra) [1663274]
+- [netdrv] qed: Fix iWARP syn packet mac address validation. (Manish Chopra) [1663274]
+- [netdrv] qed: Fix iWARP buffer size provided for syn packet processing. (Manish Chopra) [1663274]
+- [netdrv] qed: fix indentation issue with statements in an if-block (Manish Chopra) [1663274]
+- [netdrv] qede: Add ethtool interface for SmartAN query. (Manish Chopra) [1663274]
+- [netdrv] qed: Add API for SmartAN query. (Manish Chopra) [1663274]
+- [netdrv] qed*: Advance drivers version to 8.37.0.20 (Manish Chopra) [1663274]
+- [netdrv] qed: Change verbosity for coalescing message. (Manish Chopra) [1663274]
+- [netdrv] qede: Fix system crash on configuring channels. (Manish Chopra) [1663274]
+- [netdrv] qed: Consider TX tcs while deriving the max num_queues for PF. (Manish Chopra) [1663274]
+- [netdrv] qed: Assign UFP TC value to vlan priority in UFP mode. (Manish Chopra) [1663274]
+- [netdrv] qed: Fix EQ full firmware assert. (Manish Chopra) [1663274]
+- [netdrv] qed: Fix stack out of bounds bug (Manish Chopra) [1663274]
+- [netdrv] qed: Fix system crash in ll2 xmit (Manish Chopra) [1663274]
+- [netdrv] qed: Fix VF probe failure while FLR (Manish Chopra) [1663274]
+- [netdrv] qed: Fix LACP pdu drops for VFs (Manish Chopra) [1663274]
+- [netdrv] qed: Fix bug in tx promiscuous mode settings (Manish Chopra) [1663274]
+- [netdrv] qede: Error recovery process (Manish Chopra) [1663274]
+- [netdrv] qed: Add infrastructure for error detection and recovery (Manish Chopra) [1663274]
+- [netdrv] qed: Revise load sequence to avoid PCI errors (Manish Chopra) [1663274]
+- [netdrv] qed: Mark expected switch fall-through (Manish Chopra) [1663274]
+- [include] qed: remove duplicated include from qed_if.h (Manish Chopra) [1663274]
+- [infiniband] RDMA/qedr: Fix out of bounds index check in query pkey (Manish Chopra) [1663274]
+- [netdrv] qed: Fix qed_ll2_post_rx_buffer_notify_fw() by adding a write memory barrier (Manish Chopra) [1663274]
+- [include] qed: Fix qed_chain_set_prod() for PBL chains with non power of 2 page count (Manish Chopra) [1663274]
+- [infiniband] infiniband/qedr: Potential null ptr dereference of qp (Manish Chopra) [1663274]
+- [netdrv] qed: Fix an error code qed_ll2_start_xmit() (Manish Chopra) [1663274]
+- [netdrv] qed: fix spelling mistake "Dispalying" -> "Displaying" (Manish Chopra) [1663274]
+- [netdrv] qede: Register l2 queues with doorbell overflow recovery mechanism (Manish Chopra) [1663274]
+- [netdrv] qed: Expose the doorbell overflow recovery mechanism to the protocol drivers (Manish Chopra) [1663274]
+- [netdrv] qed: Register light L2 queues with doorbell overflow recovery mechanism (Manish Chopra) [1663274]
+- [netdrv] qed: Register slowpath queue doorbell with doorbell overflow recovery mechanism (Manish Chopra) [1663274]
+- [netdrv] qed: Use the doorbell overflow recovery mechanism in case of doorbell overflow (Manish Chopra) [1663274]
+- [netdrv] qed: Add doorbell overflow recovery mechanism (Manish Chopra) [1663274]
+- [netdrv] qede - Add a statistic for a case where driver drops tx packet due to memory allocation failure. (Manish Chopra) [1663274]
+- [netdrv] qed: fix spelling mistake "attnetion" -> "attention" (Manish Chopra) [1663274]
+- [netdrv] qed: Add support for MBI upgrade over MFW. (Manish Chopra) [1663274]
+- [netdrv] qede: Update link status only when interface is ready. (Manish Chopra) [1663274]
+- [netdrv] qede: Simplify the usage of qede-flags. (Manish Chopra) [1663274]
+- [netdrv] qed: Display port_id in the UFP debug messages. (Manish Chopra) [1663274]
+- [netdrv] qed: Fix QM getters to always return a valid pq (Manish Chopra) [1663274]
+- [netdrv] qed: Fix bitmap_weight() check (Manish Chopra) [1663274]
+- [netdrv] drivers/net/ethernet/qlogic/qed/qed_rdma.h: fix typo (Manish Chopra) [1663274]
+- [netdrv] qed: Fix reading wrong value in loop condition (Manish Chopra) [1663274]
+- [netdrv] qed: Fix rdma_info structure allocation (Manish Chopra) [1663274]
+- [netdrv] qed: Fix overriding offload_tc by protocols without APP TLV (Manish Chopra) [1663274]
+- [netdrv] qed: Fix PTT leak in qed_drain() (Manish Chopra) [1663274]
+- [netdrv] qed: Fix potential memory corruption (Manish Chopra) [1663274]
+- [netdrv] qed: Fix SPQ entries not returned to pool in error flows (Manish Chopra) [1663274]
+- [netdrv] qed: Fix blocking/unlimited SPQ entries leak (Manish Chopra) [1663274]
+- [netdrv] qed: Fix memory/entry leak in qed_init_sp_request() (Manish Chopra) [1663274]
+- [netdrv] qed: fix link config error handling (Manish Chopra) [1663274]
+- [netdrv] qed: Fix static checker warning (Manish Chopra) [1663274]
+- [netdrv] qed: fix spelling mistake "transcevier" -> "transceiver" (Manish Chopra) [1663274]
+- [netdrv] qed: Prevent link getting down in case of autoneg-off. (Manish Chopra) [1663274]
+- [netdrv] qede: Check available link modes before link set from ethtool. (Manish Chopra) [1663274]
+- [netdrv] qed: Add supported link and advertise link to display in ethtool. (Manish Chopra) [1663274]
+- [netdrv] qed: Added supported transceiver modes, speed capability and board config to HSI. (Manish Chopra) [1663274]
+- [netdrv] qed: Align local and global PTT to propagate through the APIs. (Manish Chopra) [1663274]
+- [netdrv] qed: fix spelling mistake "Ireelevant" -> "Irrelevant" (Manish Chopra) [1663274]
+- [netdrv] qed: Avoid implicit enum conversion in qed_ooo_submit_tx_buffers (Manish Chopra) [1663274]
+- [infiniband] RDMA/qedr: Remove enumerated type qed_roce_ll2_tx_dest (Manish Chopra) [1663274]
+- [netdrv] qed: fix spelling mistake "b_cb_registred" -> "b_cb_registered" (Manish Chopra) [1663274]
+- [netdrv] qed: Remove set but not used variable 'p_archipelago' (Manish Chopra) [1663274]
+- [netdrv] qed: Avoid implicit enum conversion in qed_iwarp_parse_rx_pkt (Manish Chopra) [1663274]
+- [netdrv] qed: Avoid constant logical operation warning in qed_vf_pf_acquire (Manish Chopra) [1663274]
+- [netdrv] qed: Avoid implicit enum conversion in qed_roce_mode_to_flavor (Manish Chopra) [1663274]
+- [netdrv] qed: Fix mask parameter in qed_vf_prep_tunn_req_tlv (Manish Chopra) [1663274]
+- [netdrv] qed: Avoid implicit enum conversion in qed_set_tunn_cls_info (Manish Chopra) [1663274]
+- [netdrv] qed: fix spelling mistake "toogle" -> "toggle" (Manish Chopra) [1663274]
+- [netdrv] net: qed: list usage cleanup (Manish Chopra) [1663274]
+- [netdrv] net: qede: Use FIELD_SIZEOF directly instead of reimplementing its function (Manish Chopra) [1663274]
+- [netdrv] qed: remove duplicated include from qed_cxt.c (Manish Chopra) [1663274]
+- [netdrv] qed*: Utilize FW 8.37.7.0 (Manish Chopra) [1663274]
+- [infiniband] RDMA/qedr: remove set but not used variable 'ctx' (Manish Chopra) [1663274]
+- [netdrv] qed: Lower the severity of a dcbx log message. (Manish Chopra) [1663274]
+- [netdrv] qed: fix spelling mistake "comparsion" -> "comparison" (Manish Chopra) [1663274]
+- [netdrv] net_sched: remove list_head from tc_action (Manish Chopra) [1663274]
+- [infiniband] qedr: Add user space support for SRQ (Manish Chopra) [1663274]
+- [infiniband] qedr: Add support for kernel mode SRQ's (Manish Chopra) [1663274]
+- [infiniband] qedr: Add wrapping generic structure for qpidr and adjust idr routines. (Manish Chopra) [1663274]
+- [netdrv] qed/qede: qede_setup_tc() can be static (Manish Chopra) [1663274]
+- [netdrv] qede: Ingress tc flower offload (drop action) support. (Manish Chopra) [1663274]
+- [netdrv] qede: Add destination ip based flow profile. (Manish Chopra) [1663274]
+- [netdrv] qed/qede: Multi CoS support. (Manish Chopra) [1663274]
+- [netdrv] qede: qede_fp: Mark expected switch fall-through (Manish Chopra) [1663274]
+- [netdrv] qed: qed_dev: Mark expected switch fall-throughs (Manish Chopra) [1663274]
+- [netdrv] qed: Add Multi-TC RoCE support (Manish Chopra) [1663274]
+- [netdrv] qed: Add DCBX API - qed_dcbx_get_priority_tc() (Manish Chopra) [1663274]
+- [netdrv] qed: Make some functions static (Manish Chopra) [1663274]
+- [netdrv] qed: remove redundant functions qed_get_cm_pq_idx_rl (Manish Chopra) [1663274]
+- [netdrv] qed: remove redundant functions qed_set_gft_event_id_cm_hdr (Manish Chopra) [1663274]
+- [netdrv] qede: Add driver callbacks for eeprom module query. (Manish Chopra) [1663274]
+- [netdrv] qed: Add qed APIs for PHY module query. (Manish Chopra) [1663274]
+- [netdrv] qed: remove redundant pointer 'name' (Manish Chopra) [1663274]
+- [iommu] iommu: Don't print warning when IOMMU driver only supports unmanaged domains (Jerry Snitselaar) [1707616 1694210 1689183]
+- [iommu] iommu/vt-d: Check capability before disabling protected memory (Jerry Snitselaar) [1694210]
+- [iommu] iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE (Jerry Snitselaar) [1694210 1694029]
+- [iommu] iommu/amd: Fix NULL dereference bug in match_hid_uid (Jerry Snitselaar) [1677737 1694210]
+- [iommu] iommu/vt-d: Fix NULL pointer reference in intel_svm_bind_mm() (Jerry Snitselaar) [1694210]
+- [iommu] iommu/vt-d: Remove unnecessary WARN_ON() (Jerry Snitselaar) [1694210]
+- [iommu] iommu/vt-d: Check identity map for hot-added devices (Jerry Snitselaar) [1694210]
+- [iommu] iommu/dmar: Fix buffer overflow during PCI bus notification (Jerry Snitselaar) [1694210]
+- [iommu] iommu/vt-d: Fix memory leak in intel_iommu_put_resv_regions() (Jerry Snitselaar) [1694210]
+- [iommu] iommu/amd: Fix amd_iommu=force_isolation (Jerry Snitselaar) [1694210]
+- [iommu] iommu/vt-d: Handle domain agaw being less than iommu agaw (Jerry Snitselaar) [1694210]
+- [iommu] iommu/vt-d: Use memunmap to free memremap (Jerry Snitselaar) [1694210]
+- [iommu] amd/iommu: Fix Guest Virtual APIC Log Tail Address Register (Jerry Snitselaar) [1694210]
+- [iommu] iommu/vt-d: Fix NULL pointer dereference in prq_event_thread() (Jerry Snitselaar) [1694210]
+- [iommu] iommu/amd: Return devid as alias for ACPI HID devices (Jerry Snitselaar) [1694210]
+- [iommu] iommu/rockchip: Free irqs in shutdown handler (Jerry Snitselaar) [1694210]
+- [iommu] iommu/rockchip: Move irq request past pm_runtime_enable (Jerry Snitselaar) [1694210]
+- [iommu] iommu/rockchip: Handle errors returned from PM framework (Jerry Snitselaar) [1694210]
+- [iommu] iommu/amd: make sure TLB to be flushed before IOVA freed (Jerry Snitselaar) [1694210]
+- [idle] intel_idle: Get rid of custom ICPU() macro (Alexander Beregalov) [1710976]
+- [security] selinux: do not report error on connect(AF_UNSPEC) (Ondrej Mosnacek) [1707828]
+- [security] selinux: Check address length before reading address family (Ondrej Mosnacek) [1707828]
+- [scsi] scsi: core: add new RDAC LENOVO/DE_Series device (Maurizio Lombardi) [1700912]
+- [infiniband] i40iw: Avoid panic when handling the inetdev event (Stefan Assmann) [1659180]
+- [infiniband] cross-tree: phase out dma_zalloc_coherent() (Stefan Assmann) [1659180]
+- [infiniband] infiniband: prefix header search paths with $(srctree)/ (Stefan Assmann) [1659180]
+- [infiniband] i40iw: remove use of VLAN_TAG_PRESENT (Stefan Assmann) [1659180]
+- [infiniband] RDMA/i40iw: Fix incorrect iterator type (Stefan Assmann) [1659180]
+- [infiniband] infiniband: i40iw, nes: don't use wall time for TCP sequence numbers (Stefan Assmann) [1659180]
+- [infiniband] i40iw: Reorganize acquire/release of locks in i40iw_manage_apbvt (Stefan Assmann) [1659180]
+- [netdrv] i40e: Changed maximum supported FW API version to 1.8 (Stefan Assmann) [1659174]
+- [netdrv] flow_offload: add flow_rule and flow_match structures and use them (Stefan Assmann) [1659174]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Stefan Assmann) [1659174]
+- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Stefan Assmann) [1659174]
+- [netdrv] drivers: net: remove <net/busy_poll.h> inclusion when not needed (Stefan Assmann) [1659174]
+- [netdrv] i40e: Memory leak in i40e_config_iwarp_qvlist (Stefan Assmann) [1659162]
+- [netdrv] i40e: Fix of memory leak and integer truncation in i40e_virtchnl.c (Stefan Assmann) [1659162]
+- [netdrv] i40e: Use struct_size() in kzalloc() (Stefan Assmann) [1659162]
+- [netdrv] i40e: Revert ShadowRAM checksum calculation change (Stefan Assmann) [1659162]
+- [netdrv] i40e: missing input validation on VF message handling by the PF (Stefan Assmann) [1659162]
+- [netdrv] i40e: Add support for X710 B/P & SFP+ cards (Stefan Assmann) [1659162]
+- [netdrv] i40e: Wrong truncation from u16 to u8 (Stefan Assmann) [1659162]
+- [netdrv] i40e: add num_vectors checker in iwarp handler (Stefan Assmann) [1659162]
+- [netdrv] i40e: Fix the typo in adding 40GE KR4 mode (Stefan Assmann) [1659162]
+- [netdrv] i40e: Setting VF to VLAN 0 requires restart (Stefan Assmann) [1659162]
+- [netdrv] i40e: add new pci id for X710/XXV710 N3000 cards (Stefan Assmann) [1659162]
+- [netdrv] i40e: VF's promiscuous attribute is not kept (Stefan Assmann) [1659162]
+- [netdrv] i40e: Introduce recovery mode support (Stefan Assmann) [1659162]
+- [netdrv] i40e: print PCI vendor and device ID during probe (Stefan Assmann) [1659162]
+- [netdrv] i40e: fix misleading message about promisc setting on un-trusted VF (Stefan Assmann) [1659162]
+- [netdrv] i40e: update version number (Stefan Assmann) [1659162]
+- [netdrv] i40e: remove out-of-range comparisons in i40e_validate_cloud_filter (Stefan Assmann) [1659162]
+- [netdrv] i40e: Further implementation of LLDP (Stefan Assmann) [1659162]
+- [netdrv] i40e: Report advertised link modes on 40GBase_LR4, CR4 and fibre (Stefan Assmann) [1659162]
+- [netdrv] i40e: ShadowRAM checksum calculation change (Stefan Assmann) [1659162]
+- [netdrv] i40e: remove error msg when vf with port vlan tries to remove vlan 0 (Stefan Assmann) [1659162]
+- [netdrv] i40e: change behavior on PF in response to MDD event (Stefan Assmann) [1659162]
+- [netdrv] i40e: Fix for allowing too many MDD events on VF (Stefan Assmann) [1659162]
+- [netdrv] i40e: Fix misleading error message (Stefan Assmann) [1659162]
+- [netdrv] i40e: Able to add up to 16 MAC filters on an untrusted VF (Stefan Assmann) [1659162]
+- [netdrv] i40e: Report advertised link modes on 40GBASE_SR4 (Stefan Assmann) [1659162]
+- [netdrv] i40e: The driver now prints the API version in error message (Stefan Assmann) [1659162]
+- [netdrv] i40e: Changed maximum supported FW API version to 1.8 (Stefan Assmann) [1659162]
+- [netdrv] i40e: Remove misleading messages for untrusted VF (Stefan Assmann) [1659162]
+- [netdrv] i40e: Update i40e_init_dcb to return correct error (Stefan Assmann) [1659162]
+- [netdrv] i40e: Fix for 10G ports LED not blinking (Stefan Assmann) [1659162]
+- [netdrv] i40e: save PTP time before a device reset (Stefan Assmann) [1659162]
+- [netdrv] i40e: don't allow changes to HW VLAN stripping on active port VLANs (Stefan Assmann) [1659162]
+- [netdrv] i40e: Implement DDP support in i40e driver (Stefan Assmann) [1659162]
+- [netdrv] i40e: Queues are reserved despite "Invalid argument" error (Stefan Assmann) [1659162]
+- [netdrv] i40e: add tracking of AF_XDP ZC state for each queue pair (Stefan Assmann) [1659162]
+- [netdrv] i40e: move i40e_xsk_umem function (Stefan Assmann) [1659162]
+- [netdrv] i40e: fix WoL support check (Stefan Assmann) [1659162]
+- [netdrv] i40e: fix i40e_ptp_adjtime when given a negative delta (Stefan Assmann) [1659162]
+- [netdrv] i40e: fix XDP_REDIRECT/XDP xmit ring cleanup race (Stefan Assmann) [1659162]
+- [netdrv] i40e: fix potential RX buffer starvation for AF_XDP (Stefan Assmann) [1659162]
+- [netdrv] net: bpf: remove XDP_QUERY_XSK_UMEM enumerator (Stefan Assmann) [1659162]
+- [netdrv] flow_offload: add flow_rule and flow_match structures and use them (Stefan Assmann) [1659162]
+- [netdrv] i40e: clean up several indentation issues (Stefan Assmann) [1659162]
+- [netdrv] i40e: increase indentation (Stefan Assmann) [1659162]
+- [netdrv] i40e: update version number (Stefan Assmann) [1659162]
+- [netdrv] i40e: remove debugfs tx_timeout support (Stefan Assmann) [1659162]
+- [netdrv] i40e: check queue pairs num in config queues handler (Stefan Assmann) [1659162]
+- [netdrv] i40e: Change unmatched function types (Stefan Assmann) [1659162]
+- [netdrv] i40e: Add support FEC configuration for Fortville 25G (Stefan Assmann) [1659162]
+- [netdrv] i40e: Limiting RSS queues to CPUs (Stefan Assmann) [1659162]
+- [netdrv] i40e: Remove umem from VSI (Stefan Assmann) [1659162]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Stefan Assmann) [1659162]
+- [netdrv] i40e: extend PTP gettime function to read system clock (Stefan Assmann) [1659162]
+- [netdrv] i40e: DRY rx_ptype handling code (Stefan Assmann) [1659162]
+- [netdrv] i40e: fix kerneldoc for xsk methods (Stefan Assmann) [1659162]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Stefan Assmann) [1659162]
+- [netdrv] i40e: suppress bogus error message (Stefan Assmann) [1659162]
+- [netdrv] i40e: Allow disabling FW LLDP on X722 devices (Stefan Assmann) [1659162]
+- [netdrv] i40e: update driver version (Stefan Assmann) [1659162]
+- [netdrv] i40e: Protect access to VF control methods (Stefan Assmann) [1659162]
+- [netdrv] i40e: Replace strncpy with strlcpy to ensure null termination (Stefan Assmann) [1659162]
+- [netdrv] i40e: Add capability flag for stopping FW LLDP (Stefan Assmann) [1659162]
+- [netdrv] i40e: Use a local variable for readability (Stefan Assmann) [1659162]
+- [netdrv] i40e: Replace spin_is_locked() with lockdep (Stefan Assmann) [1659162]
+- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Stefan Assmann) [1659162]
+- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Stefan Assmann) [1659162]
+- [netdrv] drivers: net: remove <net/busy_poll.h> inclusion when not needed (Stefan Assmann) [1659162]
+- [netdrv] i40e: Remove unnecessary print statement (Stefan Assmann) [1659162]
+- [netdrv] i40e: Use proper enum in i40e_ndo_set_vf_link_state (Stefan Assmann) [1659162]
+- [nvme] nvmet: ignore EOPNOTSUPP for discard (Ewan Milne) [1696369]
+- [tools] tools: bpftool: fix potential NULL pointer dereference in do_load (Ivan Vecera) [1708560]
+- [tools] tools lib bpf: Provide wrapper for strerror_r to build in !_GNU_SOURCE systems (Ivan Vecera) [1708560]
+- [tools] libbpf: Remove the duplicate checking of function storage (Ivan Vecera) [1708560]
+- [tools] bpf: fix build error in libbpf with EXTRA_CFLAGS="-Wp, -D_FORTIFY_SOURCE=2 -O2" (Ivan Vecera) [1708560]
+- [tools] tools: include reallocarray feature test in FEATURE_TESTS_BASIC (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: allow reuse of maps with bpftool prog load (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: allow map reuse (Ivan Vecera) [1708560]
+- [tools] tools: bpf: make use of reallocarray (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: move library error code into a separate file (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: reimplement bpf_prog_load() for prog load (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: add extended attributes version of bpf_object__open() (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: recognize offload neutral maps (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: allow users to specify program type for prog load (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: expose the prog type guessing from section name logic (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: add support for loading programs for offload (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: refactor argument parsing for prog load (Ivan Vecera) [1708560]
+- [tools] selftests/bpf: add Error: prefix in check_extack helper (Ivan Vecera) [1708560]
+- [tools] selftests/bpf: remove duplicated word from test offloads (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: deal with options upfront (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: add missing --bpffs to completions (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: drop unnecessary Author comments (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: don't return '.text' as a program for multi-function programs (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: restore the ability to load programs from .text section (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: allow setting ifindex for programs and maps (Ivan Vecera) [1708560]
+- [tools] tools: libbpf: add section names for missing program types (Ivan Vecera) [1708560]
+- [tools] tools: bpftool: use correct make variable type to improve compilation time (Ivan Vecera) [1708560]
+- [scsi] scsi: lpfc: nvme: avoid hang / use-after-free when destroying localport (Dick Kennedy) [1588024]
+
+* Thu May 30 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-98.el8]
+- [xen] ALSA: xen: Introduce shared buffer helpers for page directory... (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: Initialize completion for defer messages (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: intel: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: intel: Remove duplicate assignment (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: intel: Fix uninitialized adev deref (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: intel: Add pre/post bank switch ops (Jaroslav Kysela) [1683051]
+- [include] ALSA: soundwire: keep track of Masters in a stream (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: Add support for multi link bank switch (Jaroslav Kysela) [1683051]
+- [include] ALSA: soundwire: Handle multiple master instances in a stream (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: Add support to lock across bus instances (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: Fix acquiring bus lock twice during master release (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: Fix incorrect exit after configuring stream (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: soundwire: Fix duplicate stream state assignment (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fix for Lenovo B50-70 inverted internal microphone bug (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix race between creating and refreshing sysfs entries (Jaroslav Kysela) [1683051]
+- [include] ALSA: ASoC: uapi: fix sound/skl-tplg-interface.h userspace compilation errors (Jaroslav Kysela) [1683051]
+- [include] ALSA: uapi: #include <time.h> in asound.h (Jaroslav Kysela) [1683051]
+- [include] ALSA: timer: fix wrong comment to refer to 'SNDRV_TIMER_PSFLG_*' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: x86/cpu: Sanitize FAM6_ATOM naming (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: don't select DPCM via simple-audio-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: don't select DPCM via audio-graph-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Corrected fixup for System76 Gazelle (gaze14) (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Avoid superfluous COEF EAPD setups (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fixup headphone noise via runtime suspend (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Fix unused variable warnings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: line6: toneport: Fix broken usage of timer for delayed execution (Jaroslav Kysela) [1683051]
+- [sound] ALSA: aica: Fix a long-time build breakage (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Support low power consumption for ALC256 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: update pcm hardware constraints (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codec: hdac_hdmi: no checking monitor in hw_params (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: mt6358: save PGA for mixer control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: mt6358: save output volume for mixer controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: mt6358: initialize setting when ramping volume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: core: fix undefined nocodec reference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: xtensa: fix undefined references (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Propagate sof_get_ctrl_copy_params() error properly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/intel: add CometLake PCI IDs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Support low power consumption for ALC295 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: Fix an uninitialized variable compile warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Fix a compile warning with CONFIG_PCI=n (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: Fix a compile warning at CONFIG_COMMON_CLK=n (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sound/soc/sof/: fix kconfig dependency warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: spdifrx: change trace level on iec control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: spdifrx: update pcm hardware constraints (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98090: Fix restore of DAPM Muxes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: RT5677-SPI: Disable 16Bit SPI Transfers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/hdmi - Consider eld_valid when reporting jack event (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/hdmi - Read the pin sense from register when repolling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Add reserved DMA memory support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: synth: emux: soundfont.c: divide by zero in calc_gus_envelope_time() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98357a: Map BTN_0 to KEY_PLAYPAUSE (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: add sof-rt5682 machine driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: skl_hda_dsp_generic:refine code style (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: skl_hda_dsp_generic: add DMIC support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: CNL: add ipc dump function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: APL: add ipc dump function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: IPC: add ipc dump function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: intel: hda: add hw_params_upon_resume flag for hda stream (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: hda-stream: handle real stream interrupts only (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: hda-stream: store stream capabilities (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: hda-ipc: simplify handling of IPC IRQ (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: ipc: use snd_sof_pcm_period_elapsed (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: use snd_sof_pcm_period_elapsed (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: PCM: add period_elapsed work to fix race condition in interrupt context (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: hda-pcm: remove useless dependency on hdac_ext (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: hda: set bus->idx as 0 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: hda: set I2S slave before enabling DSP (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add SSP info to the chip info struct (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: hda: add the SSP Host Device memory space (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: cnl: add pointer ops to use DPIB position (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: topology: add support for stricter ABI checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASOC: SOF: ipc: add support for stricter ABI checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: add Kconfig option for strict ABI checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: avoid Oops if DMA setup fails (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdmi-codec: stream is already locked in hw_params (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: remove redundant null checks of dai (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: skip hw_free on codec dai for which the stream is invalid (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fix valid stream condition (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdmi-codec: unlock the device on startup errors (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: Update the support rate list (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: Use clk_round_rate to handle enabled bclk/wclk case (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5645: Headphone Jack sense inverts on the LattePanda board (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_esai: Fix missing break in switch statement (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Correct region base typo in wm_halo_setup_algs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: fix spelling mistake "incompatble" -> "incompatible" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Use DSP ops pointers to stop watchdog in error handlers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Fix to use list_for_each_entry_safe() when delete items (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Fix return value check in sprd_mcdt_probe() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7213: fix DAI_CLK_EN register bit overwrite (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: fix kcontrols for effect widgets (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_audmix: cache pdev->dev pointer (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Fix potential uninitialized variable (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: add I2S2 control path from UL2 and UL3 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: change supported formats of DL2 and UL1 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_audmix: remove "model" attribute (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-audmix: fix object reference leaks in probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs43130: fix a NULL pointer dereference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5645: fix a NULL pointer dereference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: add Geminilake Realtek+Maxim machine driver entry (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Make boards more available for compile test (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mpc5200_dma: Fix invalid license ID (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mpc5200_psc_i2s: Fix invalid license ID (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: atmel: tse850: Make some functions static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx: fix fiq dependencies (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: acp3x: Make acp3x_dai_i2s_ops static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Remove set but not used variable 'mclk_rate' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_micfil: Remove set but not used variable 'osr' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3168a: Enable TDM support for DSP_A/B modes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Configure wclk and bclk of master codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: Fix build err while CONFIG_I2C set to module (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdmi-codec: fix spelling mistake "plalform" -> "platform" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Apply the fixup for ASUS Q325UAR (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Register irq handler after the chip initialization (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usx2y: fix a double free bug (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdac_hda: overwrite hdev type to HDA_DEV_ASOC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: fix unregister device twice on ASoC driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: line6: use dynamic buffers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Fix a memory leak bug (Jaroslav Kysela) [1683051]
+- [sound] ALSA: gus: fix misuse of x (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - EAPD turn on later (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fixed Dell AIO speaker noise (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: select relevant machine drivers for SOF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Make sure BDW based machine drivers build for SOF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add Build support for SOF core and Intel drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Kconfig: expose common option between SST and SOF drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add platform differentiation for APL and CNL (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: add SKL+ platform DAIs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add support for HDAudio codecs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add Intel specific HDA trace operations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add Intel specific HDA stream operations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add hda-bus support and initialization (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add Intel specific HDA PCM operations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add Intel specific HDA firmware loader (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add PCI device support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add ACPI device support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add Intel specific HDA IPC mechanisms. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add Intel specific HDA DSP HW operations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add HDA controller for Intel DSP (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add APL/CNL HW DSP support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add legacy IPC support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add BDW HW DSP support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Intel: Add BYT, CHT and BSW DSP HW support. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add utils (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add xtensa support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add Nocodec machine driver support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add PM support (Jaroslav Kysela) [1683051]
+- [include] ALSA: ASoC: SOF: Add userspace ABI support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add firmware loader support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add DSP HW abstraction operations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add DSP firmware logger support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add support for loading topologies (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add PCM operations support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add support for IPC IO between DSP and Host (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add driver debug support. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add Sound Open Firmware KControl support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: SOF: Add Sound Open Firmware driver core (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: simplify dai driver initialisation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: Read pin switches conf from devicetree (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_sai: Add missing return 0 in remove() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: add asoc_simple_parse_pin_switches() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: btcvsd fix irq mask (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: align quirk override handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: align quirk override handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: fix compilation warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_sai: Add support for runtime pm (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_sai: Update is_slave_mode with correct value (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Add Spreadtrum multi-channel data transfer support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: rt5682: initialize mutex before using (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: return the get_irq error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: fixup 6ch settings to 8ch (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Handle the error from snd_usb_mixer_apply_create_quirk() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add new Dell platform for headset mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codec: hdac_hdmi add device_link to card device (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Haswell: Remove set but not used variable 'stage_type' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm: save fixed-up hw_params of BE (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: tobermory: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: tm2_wm5110: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: speyside: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: spdif: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: snow: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: smdk_wm8994*: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: smdk_wm8580: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: smdk_spdif: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: smartq_wm8987: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: s3c24xx_uda134x: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: s3c24xx_simtec*: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: s3c2412-i2s: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: rx1950_uda1380: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: s3c24xx-i2s: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: s3c-i2s-v2: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: pcm: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: odroid: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: neo1973_wm8753: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: lowland: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: littlemill: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: jive_wm8750: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: idma: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: h1940_uda1380: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: dmaengine: Convert to SPDX License Indentifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: bells: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: arndale: Convert to SPDX License Identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ps3: Remove set but not used variables 'start_vaddr' and 'pcm_index' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - add two more pin configuration sets to quirk table (Jaroslav Kysela) [1683051]
+- [sound] ALSA: core: Don't refer to snd_cards array directly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emu10k1: Drop superfluous id-uniquification behavior (Jaroslav Kysela) [1683051]
+- [sound] ALSA: core: Fix card races between register and disconnect (Jaroslav Kysela) [1683051]
+- [sound] ALSA: info: Fix racy addition/deletion of nodes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Correct unlock sequence at snd_seq_client_ioctl_unlock() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add quirk for Focusrite Scarlett Solo (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Initialize ext-bus-specific fields in snd_hdac_bus_init(), too (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Initialize power_state field properly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Protect racy pool manipulation from OSS sequencer (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Simplify snd_seq_kernel_client_enqueue() helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Cover unsubscribe_port() in list_mutex (Jaroslav Kysela) [1683051]
+- [sound] ALSA: Revert "ALSA: seq: Protect in-kernel ioctl calls with mutex" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: Fix missing regmap requirement (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix racy display power access (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm: fix error handling when try_module_get() fails. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix master clock management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: kbl: fix wrong number of channels (Jaroslav Kysela) [1683051]
+- [sound] ALSA: timer: Coding style fixes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: timer: Simplify error path in snd_timer_open() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Fix race of get-subscription call vs port-delete ioctls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Protect in-kernel ioctl calls with mutex (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Remove superfluous irqsave flags (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Align temporary re-locking with irqsave version (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Use kvmalloc() for cell pools (Jaroslav Kysela) [1683051]
+- [sound] ALSA: timer: Revert active callback sync check at close (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Add two more machines to the power_save_blacklist (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Fix spacing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98927: remove headset (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm: update module refcount if module_get_upon_open is set (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: conditionally increase module refcount on component open (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Add quirk for the Teclast X98+ II (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Add quirk for inverted jack detect (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm1133-ev1: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: phycore-ac97: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm030-audio-fabric: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: p1022_rdk: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: p1022_ds: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mx27vis-aic32x4: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mpc8610_hpcd: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mpc5200_psc_i2s: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mpc5200_psc_ac97: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mpc5200_dma: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-ssi: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-spdif: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-pcm-fiq: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-mc13783: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-es8328: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-audmux: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl-dma: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: eukrea-tlv320: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-pcm: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: fix sai driver name initialisation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: Use the correct dobj to free enum control values and texts (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Fix OOB-reads from strlcpy (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: change mic bias DAPM (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_esai: Support synchronous mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: fix big-endian check (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: fix endianness issues (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-tdmout: add g12a support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-tdm-formatter: rework quirks settings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-frddr: add g12a support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-toddr: add g12a support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-fifo: add g12a support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: remove link components before cleaning up card resources (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: skylake: add remove() callback for component driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs35l35: Disable regulators on driver removal (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: add adc volume control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: add power management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: add support of master mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: add reset management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: add regulator management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Avoid calling snd_compr_stop_error from WDT expiry (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98357a: add missing supported rates (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Add Playback PowerTune Controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Add Switch for Setting Common Mode Voltage (Jaroslav Kysela) [1683051]
+- [sound] ALSA: xen-front: Do not use stream buffer size before it is set (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: Mark RXFIFO_DATA as volatile and precious (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Fix spelling mistake "faied" -> "failed" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: Correct PDM_CTRL0 reg value (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: adjust waterlevel in frame unit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: add compatible for rk1808 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: fixup pdm fractional div (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: optimize clear logic (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: add default regs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: using left justified store mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: change dma burst to 8 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: pdm: fix regmap_ops hang issue (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Update copyright and use SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Fix the smatch warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: Fix platform_no_drv_owner.cocci warnings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: Fix platform_no_drv_owner.cocci warnings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Change author's name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add quirk for Tuxedo XC 1509 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Move to ACT_INIT state (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Fix modular build (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht_bsw_max98090_ti: Enable codec clock once and keep it enabled (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: Fix build error in mt8183_da7219_max98357_dev_probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: TS3A227: fix build error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Make use of local variables (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Remove redundant NULL check in wm_adsp_buffer_free (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic31xx: aic31xx_set_jack() can be static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Check for buffer in trigger stop (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable headset MIC of Acer TravelMate B114-21 with ALC233 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: eukrea-tlv320: fix a leaked reference by adding missing of_node_put (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_utils: fix a leaked reference by adding missing of_node_put (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: fix a leaked reference by adding missing of_node_put (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: Align tplg pointer increment across all kcontrols (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: support driver alias names for FE topology overrides (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Add Spreadtrum audio compress offload support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fix SND_SOC_LOCHNAGAR_SC kconfig warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: set power_check callback for widgets that shouldnt be always on (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic31xx: Add button press detection (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic31xx: Add headphone/headset detection (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dpcm: skip missing substream while applying symmetry (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5672: Convert to use acpi_dev_get_first_match_dev() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5645: Convert to use acpi_dev_get_first_match_dev() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Convert to use acpi_dev_get_first_match_dev() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Convert to use acpi_dev_get_first_match_dev() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Convert to use acpi_dev_get_first_match_dev() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_da7213: Convert to use acpi_dev_get_first_match_dev() (Jaroslav Kysela) [1683051]
+- [acpi] ALSA: ACPI / utils: Introduce acpi_dev_get_first_match_dev() helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: remove set but not used variable 'dai_name' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es8316: Add support for inverted jack detect (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Fix typo in comment (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl: fix spelling mistake: "missign" -> "missing" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: Add machine driver with DA7219 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Mediatek: MT8183: Add machine driver with TS3A227 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5677-spi: Add ACPI ID (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: add multi endpoint support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Fix Common Pins (Jaroslav Kysela) [1683051]
+- [sound] ALSA: us122l: Use alloc_pages_exact() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: Replace snd_malloc_pages() and snd_free_pages() with standard helpers, take#2 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: timer: Make snd_timer_close() really kill pending actions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: timer: Check ack_list emptiness instead of bit flag (Jaroslav Kysela) [1683051]
+- [sound] ALSA: timer: Make sure to clear pending ack list (Jaroslav Kysela) [1683051]
+- [sound] ALSA: timer: Unify timer callback process code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_audmix: Fix kbuild failure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emux: Add support of loading GUS-patch (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl: Add Audio Mixer machine driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl: Add Audio Mixer CPU DAI driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: enable S24_LE format support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Only enable with common clock (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Allow 192000 Sample Rate (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Remove mclk references (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Restructure set_dai_sysclk (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Dynamically Determine Clocking (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Move aosr and dosr setting to separate functions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Control clock gating with CCF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Model BDIV divider in CCF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Model DAC/ADC dividers in CCF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Model CODEC_CLKIN in CCF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Model PLL in CCF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Initialize private_value in snd_soc_dapm_new_dai (Jaroslav Kysela) [1683051]
+- [sound] ALSA: aloop: Support S24 sample formats (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Don't suspend stream in unrecoverable PCM state (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Fix NULL pointer dereference in snd_soc_dapm_free_kcontrol (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sirf-audio: Remove redundant of_match_node call (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: add power management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Fix incorrect extern (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8810: fix the issue of 64 bits division (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: Fix crash at suspend/resume after failed codec registration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Simplify alt firmware loading code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Fix possible OOB access in PCM oss plugins (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: test memory allocation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: lochnagar: Add driver to support Lochnagar 2 sound card (Jaroslav Kysela) [1683051]
+- [mfd] ALSA: mfd: lochnagar: Add support for the Cirrus Logic Lochnagar (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Properly Set Processing Blocks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mchp-i2s-mcc: add driver for I2SC Multi-Channel Controller (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: rename asoc_simple_card_xxx() to asoc_simple_() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: separate asoc_simple_card_parse_dai() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: share asoc_simple_card_init_priv() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: share asoc_simple_be_hw_params_fixup() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: share asoc_simple_dai_init() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: share asoc_simple_hw_param() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: share asoc_simple_shutdown() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: share asoc_simple_startup() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple_card_utils: share common priv for simple-card/audio-graph (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: add asoc_simple_debug_info() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Update DA7219 DAI clock name to align with codec updates (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: Expose BCLK and WCLK control through CCF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_esai: fix channel swap issue when stream starts (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_asrc: add constraint for the asrc of older version (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4270: Set auto-increment bit for register writes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: oss: Fix Spectre v1 vulnerability (Jaroslav Kysela) [1683051]
+- [sound] ALSA: rawmidi: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: dfsdm: add mmap support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: dfsdm: fix debugfs warnings on entry creation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: dfsdm: manage multiple prepare (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Correct some minor issues (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Don't use register read to determine slave/master mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Break out clock setting into separate function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: jz4740: Depend on MIPS instead of MACH_JZ4740 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Add WDT expiry IRQ handling support for Halo core (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Add HALO MPU fault logging (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Add support for new Halo core DSPs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: Reduce repititive code on mtk_regmap_update_bits. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: Fix UBSAN warning. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Factor out DSP specific operations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Factor out parsing of firmware ID header (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Refactor firmware status reading (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Move wm_adsp2_set_dspclk to CODEC drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Don't export wm_adsp2_lock (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Shutdown any compressed streams on DSP watchdog timeout (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Add locking to wm_adsp2_bus_error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Correct handling of compressed streams that restart (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: free link string in error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: free stream_name of dai_drv (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Don't trigger jackpoll_work in azx_resume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph: add graph_parse_mclk_fs() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph: rename graph_get_conversion() to graph_parse_convert() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: add simple_parse_mclk_fs() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: rename simple_get_conversion() to simple_parse_convert() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: recording has no sound after booting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: fix jack type detection issue (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Check JD status when system resume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: mt8183: skip for i2s5 in mck_disable (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-lib: use 8 byte header for IR context to get isochronous cycle (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: add support MOTU 8pre FireWire (Jaroslav Kysela) [1683051]
+- [sound] ALSA: opl3: fix mismatch between snd_opl3_drum_switch definition and declaration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add BYT_RT5651_JD_NOT_INV quirk (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: Add support for active-high jack detect (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: spdifrx: add power management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-amplifier: Make gpio property optional (Jaroslav Kysela) [1683051]
+- [documentation] ALSA: ASoC: dt-bindings: add regulator property to simple amplifier (Jaroslav Kysela) [1683051]
+- [documentation] ALSA: ASoC: simple-amplifier: remame dio2125 documentation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: use 'version' field of unit directory to identify model (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sb8: add a check for request_region (Jaroslav Kysela) [1683051]
+- [sound] ALSA: echoaudio: add a check for ioremap_nocache (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: create tlv before soc_tplg_init_kcontrol (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add support headset mode for New DELL WYSE NB (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add support headset mode for DELL WYSE AIO (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: merge alc_fixup_headset_jack to alc295_fixup_chromebook (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: hdmi - add Icelake support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8810: automatic selecting BCLK in I2S master mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8810: fix the typo of function name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8810: use 64-bit arithmetic instead of 32-bit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: odroid: Fix clock configuration for 44100 sample rate (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8810: fix the issue of widget with prefixed name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - add more quirks for HP Z2 G4 and HP Z240 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fixed Headset Mic JD not stable (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable headset MIC of Acer TravelMate X514-51T with ALC255 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: avoid build error without CONFIG_PM (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usx2y: Fix potential NULL pointer dereference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Avoid NULL pointer dereference at snd_hdac_stream_start() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: axi-i2s: let both capture and playback be optional (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: src: Avoid a potential deadlock (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: fix registers declaration in regmap (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8824: fix the issue of the widget with prefix name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dpcm: prevent snd_soc_dpcm use after free (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC:intel:skl:fix a simultaneous playback & capture issue on hda platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC:hdac_hda:use correct format to setup hda codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC:soc-pcm:fix a codec fixup issue in TDM case (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ti: fix davinci_mcasp_probe dependencies (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ams-delta: remove duplicate 'const' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ti: remove compat dma probing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: use default dai name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: improve channel capabilities handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: change trigger traces (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: add i2c dependency for SND_SOC_SDM845 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: davinci-mcasp: Fix clang warning without CONFIG_PM (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: src: fix compiler warnings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Fix DAPM routes for capture stream (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: Fix probe deferral following prelink failure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdmi-codec: avoid limiting params->msbits in hw_params() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix set_sync service (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix oversampling mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix race condition in irq handler (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix exposed capabilities in spdif mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix iec958 controls indexation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ab8500: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdmi-codec: fix S/PDIF DAI (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add quirk for MOTU MicroBook II (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: btcvsd add loopback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic3x: fix reset gpio reference counting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: skip useless write in slave mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: fix race condition in irq handler (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: remove useless callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: fix dma configuration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: fix stream count management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: fix 16 bit format support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: fix IRQ clearing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Kconfig: fix dependency for sdm845 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Boards: Add Maxim98373 support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: gen: fix SSI9 4/5/6/7 busif related register address (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: fix construction of PCM frame for capture direction (Jaroslav Kysela) [1683051]
+- [sound] ALSA: bebob: use more identical mod_alias for Saffire Pro 10 I/O against Liquid Saffire 56 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Extend i915 component bind timeout (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Improve logging messages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Add support for multiple compressed buffers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Refactor compress stream initialisation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Reorder some functions for improved clarity (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Factor out stripping padding from ADSP data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs35l36: Fix an IS_ERR() vs NULL checking bug (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: sound card name from device tree (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable audio jacks of ASUS UX362FA with ALC294 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: odroid: Prevent uninitialized variable use (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Fix of-node refcount unbalance in qcom_snd_parse_of() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Fix of-node refcount unbalance in apq8016_sbc_parse_of() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: odroid: Fix of_node refcount unbalance (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Reduce click noise on Dell Precision 5820 headphone (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: Fix of-node refcount unbalance in DAI-link parser (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl: Fix of-node refcount unbalance in fsl_ssi_probe_from_dt() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Allow compressed buffers in any memory region (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Update cached error state on trigger (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ppc: Fix of-node refcount unbalance (Jaroslav Kysela) [1683051]
+- [sound] ALSA: aoa: Fix of-node refcount unbalance (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ac97: Fix of-node refcount unbalance (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: pcm186x: Fix energysense SLEEP bit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: pcm186x: fix wrong usage of DECLARE_TLV_DB_SCALE() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Fix multiple "IIS multi" devices initialization (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Fix secondary platform device unregistration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: glk: Add DAI links for Multi-Playback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Add Geminilake Dialog Maxim machine driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Headset button support in broxton machine driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sunxi: sun50i-codec-analog: Rename hpvcc regulator supply to cpvdd (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: adau1977: Add support for setting MICBIAS via DT (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Potential small memory leak in dapm_cnew_widget() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: odroid: Add missing DAPM routes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8741: Make function 'wm8741_mute' static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_esai: fix register setting issue in RIGHT_J mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: SoC: imx-sgtl5000: add missing put_device() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: Fix missing of_node_put() at simple_dai_link_of() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: Fix refcount underflow (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: odroid: Ensure proper sample rate on pri/sec PCM (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: remove set but not used variables 'mask, cr1' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: free created components in tplg load error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs35l36: Make some symbols static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Kconfig: select dmic for sdm845 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_spdif: fix sysclk_df type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_spdif: fix TXCLK_DF mask (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: ad193x: Add support to disable on-chip PLL (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: ad193x: Add runtime support for DSP_A and I2S modes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: ad193x: Fix frame polarity for DSP_A format (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: ad193x: Set constraint to always have 32 sample bits (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: ad193x: Remove capture support for codecs without ADC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsi: fix spelling mistake "doens't" -> "doesn't" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Expose sample resolution through proc interface (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Prevent potential NULL platform data dereference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmaengine: Remove unused SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME flag (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: Update TDM usage to be more flexible (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: Add support for master mode BCLK rate adjustment (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Convert to SPDX License Indentifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Comments clean up (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Change indentation in SAMSUNG_I2S_FMTS definition (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Simplify pri_dai, sec_dai pointers usage (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: add missing put_device() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: Specify DMA channel names through custom DMA config (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: odroid: Add support for secondary CPU DAI (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Get rid of a static spinlock (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Move quirks data to common driver data structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Move IP variant data to common driver data structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Drop spinlock pointer from i2s_dai data structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Move SFR pointer to common driver data structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: es1688: Remove set but not used variable 'hw' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Disable PC beep in passthrough on alc285 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Headset microphone and internal speaker support for System76 oryp5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cros_ec_codec: Make symbol 'cros_ec_dai' static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: mt8183: make some functions static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs35l36: Remove unused including <linux/version.h> (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Move registers cache to common driver data structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Move opclk data to common driver data structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Move core clk to the driver common data structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Add widgets and routes for DPCM support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Move clk supplier data to common driver data structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Restore support for the secondary PCM (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Comment why read blocks when PCM is not running (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-acpi: remove new_mach_data field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-acpi: remove asoc_plat_name field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: soc-acpi: cnl-match.c: remove asoc_plat_name field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: soc-acpi: icl-match: remove asoc_plat_name field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: soc-acpi: hsw-bdw-match: remove asoc_plat_name field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: soc-acpi: glk-match: remove asoc_plat_name field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: soc-acpi: cht-match: remove asoc_plat_name field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: soc-acpi: byt-match: remove asoc_plat_name field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: soc-acpi: bxt-match: remove asoc_plat_name field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: icl-match: remove prefix for SOF files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: hsw-bdw-match: remove prefix for SOF files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: hda-match: remove prefix for SOF files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: glk-match: remove prefix for SOF files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cnl-match: remove prefix for SOF files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht-match: remove prefix for SOF files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: byt-match.c: remove prefix for SOF files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bxt-match: remove prefix for SOF files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Convert to single component with multiple DAIs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: dmaengine: Allow to specify custom DMA device (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmaengine: Extend use of chan_names provided in custom DMA config (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmaengine: Improve of_node test in dmaengine_pcm_request_chan_of() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Fix prescaler setting for the secondary DAI (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Use __printf markup to silence compiler (Jaroslav Kysela) [1683051]
+- [sound] ALSA: tlv320aic32x4: delay i2c access by 1 ms after hardware reset (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: btcvsd fix rx stream assign (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8741: Set OSR mode in hw_params() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8741: Add digital mute callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: PCM: check if ops are defined before suspending PCM (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdac_hdmi: use devm_kzalloc for all structures (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: use pOFn instead of device_node.name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3060: Add clock select (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3060: Add soft reset on probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: set .ignore_module_refcount field in component (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: don't increase component module refcount unconditionally (Jaroslav Kysela) [1683051]
+- [sound] ALSA: gpiolib: acpi: Introduce ACPI_GPIO_QUIRK_ONLY_GPIOIO (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: msm8916-wcd-digital: convert license header to SPDX (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: msm8916-wcd-analog: add missing license information (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: regulator notifier registration should be managed (Jaroslav Kysela) [1683051]
+- [sound] ALSA: i915/snd_hdac: I915 subcomponent for the snd_hdac (Jaroslav Kysela) [1683051]
+- [base] ALSA: components: multiple components for a device (Jaroslav Kysela) [1683051]
+- [documentation] ALSA: component: Add documentation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Revert capture stream behavior change in blocking mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Fix function name in kernel-doc comment (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Define snd_pcm_lib_preallocate_*() as returning void (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: fix up for snd_pcm_lib_preallocate_pages_for_all() API change (Jaroslav Kysela) [1683051]
+- [sound] ALSA: SoC: stm32: i2s: manage clock power (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: i2s: add power management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: jz4725b: Remove unnecessary const qualifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs35l36: Add support for Cirrus CS35L36 Amplifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Fix implicit fb endpoint setup by quirk (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Add quirk for HP EliteBook 840 G5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: jz4725b: Use C++ style comments in header (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: Kconfig: Show knob, and depend on MIPS || COMPILE_TEST (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: jz4740: Add support for devicetree (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: jz4740: Use SPDX license notifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: Prevent clk_get_rate() calls in atomic context (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-codec: Add Line Playback Volume, Line Boost Volume, Line Right, Line Left, Line Playback Switch (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-codec: Add FM Playback Volume, FM Left, FM Right, FM Playback Switch (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-codec: Add Mic1 Playback Switch, Mic2 Playback Switch (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-codec: Merge sun4i_codec_left_mixer_controls and sun4i_codec_right_mixer_controls into sun4i_codec_mixer_controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-codec: Add Mic1 Boost Volume, Mic2 Boost Volume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-codec: Add sun7i_codec_controls, sun7i_codec_codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-codec: Add Mic Playback Volume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-codec: Add MIC2 Pre-Amplifier, Mic2 input (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: jz4725b: fix spelling mistake "Deemphatize" -> "Deemphasize" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: fix semicolon.cocci warnings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: ssiu: correct shift bit for ssiu9 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: Add jz4725b-codec driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: fixup rsnd_ssi_master_clk_start() user count check (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: harden use of lookup tables (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmaengine: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xtensa: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: uniphier: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: txx9: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sh: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dwc: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: fix out-of-bounds accesses to DAPM lookup tables (Jaroslav Kysela) [1683051]
+- [sound] ALSA: cs46xx: Clean up proc file creations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: info: Move card id proc creation into info.c (Jaroslav Kysela) [1683051]
+- [sound] ALSA: info: Minor optimization (Jaroslav Kysela) [1683051]
+- [sound] ALSA: info: Drop unused snd_info_entry.card field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb: Clean up with new procfs helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sparc: Clean up with new procfs helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcmcia: Clean up with new procfs helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pci: Clean up with new procfs helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: i2c: Clean up with new procfs helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: isa: Clean up with new procfs helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: drivers: Clean up with new procfs helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: info: Add standard helpers for card proc file entries (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pci: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: compress: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emux: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: opl4: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire: Remove superfluous snd_info_register() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ssm2602: switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: compress: Add helper functions for component trigger/set_params (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: compress: Clarify the intent of current compressed ops handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: remove some unnecessary NULL checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ssm2602: Fix ADC powerup sequencing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Check for NULL widget in dapm_update_dai_unlocked (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: spi: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sparc: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sh: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ppc: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pci: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: parisc: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: atmel: Drop superfluous PCM preallocation error checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Fix build error without CONFIG_PCI (Jaroslav Kysela) [1683051]
+- [sound] ALSA: compress: Fix stop handling on compressed capture streams (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add support for new T+A USB DAC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: info: Always register entries recursively (Jaroslav Kysela) [1683051]
+- [sound] ALSA: core: Don't allow NULL device for memory allocation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sh: Avoid passing NULL to memory allocators (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: Avoid passing NULL to memory allocators (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak4118: fix missing header (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: btcvsd: fix spelling mistake "offest" -> "offset" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: arm: Avoid passing NULL to memory allocators (Jaroslav Kysela) [1683051]
+- [sound] ALSA: x86: Avoid passing NULL to memory allocators (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: unload physical dai link in remove (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: add SND_SOC_DOBJ_GRAPH type for dapm routes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: clear platform pointers on error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl-asoc-card: fix object reference leaks in fsl_asoc_card_probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Add warnings for widget overwrite when adding route (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Only power up active channels from a DAI (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: fix oops/use-after-free case with dai driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: fix use-after-free issue with dailink sname (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: add btcvsd driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: arizona: Add channel numbers to AIFs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: fixup TDM Split mode check for CTU (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: synchronize connection check for simple-card/audio-graph (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: fixup MIX kctrl registration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: isa: Avoid passing NULL to memory allocators (Jaroslav Kysela) [1683051]
+- [sound] ALSA: mips: pass struct device to DMA API functions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hal2: pass struct device to DMA API functions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Serialize codec registrations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Use a common helper for hp pin reference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fix lose hp_pins for disable auto mute (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Headset microphone support for System76 darp5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: remove a superfluous function declaration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sprd: Add Spreadtrum audio DMA platfrom driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: modify dapm route loading routine and add dapm route unloading (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: fix memory leak in soc_tplg_dapm_widget_create (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: Fix memory leak from soc_tplg_denum_create_texts (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: Remove widgets from dobj list (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: Reduce number of dereferences when accessing dobj (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Use standard device registration for beep (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Apply ALC294 hp init also for S4 resume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Record the current power state before suspend/resume calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5672: remove useless test (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fixed hp_pin no value (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cros_ec_codec: Add codec driver for Cros EC (Jaroslav Kysela) [1683051]
+- [documentation] ALSA: ASoC: Documentation: Add google, cros-ec-codec (Jaroslav Kysela) [1683051]
+- [maintainers] ALSA: MAINTAINERS: add maintainers for ChromeOS EC sub-drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: Fix missing slimbus dependency (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Cleanup DSD whitelist (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: apq8096: add slim support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: add audio routings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: add capture dapm widgets (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: add playback dapm widgets (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: add basic controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: add CLASS-H Controller support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: add support to wcd9335 codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: glk_rt5682_max98357a: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bxt_rt298: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bxt_da7219_max98357a: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5672: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht_bsw_rt5645: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht_bsw_nau8824: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht_bsw_max98090_ti: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_da7213: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bdw-rt5677: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: broadwell: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: haswell: platform name fixup support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add helper to change platform name for all dailinks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: dice: add support for Solid State Logic Duende Classic/Mini (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: Variable "ret" in function rt5651_i2c_probe() could be uninitialized (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-acpi: add static inline fallbacks when CONFIG_ACPI=n (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm512x: Fix clocking calculations when not using the PLL (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm512x: Implement the set_bclk_ratio interface (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: use for_each_link_codecs() for dai_link codecs V2 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Fixup build error for mt6358 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Fix tight loop of OSS capture stream (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add Opus #3 to quirks for native DSD support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: mt6358: add codec driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: mt8183: add platform driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: Allow soc_find_component lookups to match parent of_node (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Use the common error path in __snd_pcm_lib_xfer() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: Off by one in latter_handle_midi_msg() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: make const arrays static, reduces object code size (Jaroslav Kysela) [1683051]
+- [sound] ALSA: proc: Avoid possible leaks of snd_info_entry objects (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Simplify proc file destruction (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Drop unused snd_pcm_substream.file field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: comment cleanup about destination address of async transactions for MIDI messages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Cleanup snd_pcm_stream_lock() & co (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Remove down_write() hack for snd_pcm_link_rwsem (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: More fine-grained PCM link locking (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: Fix multi-CODEC setups (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: support rx MIDI functionality for Fireface UCX (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add protocol-specific operation to fill transaction buffer with MIDI messages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add model-dependent parameter for address to receive async transaction for MIDI messages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: support tx MIDI functionality of Fireface UCX (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add model-dependent parameter for address range to receive async transaction (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: change prototype of handler for async transaction with MIDI messages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Correct the setting while select ASRC clk for AD/DA filter (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: add driver flag for runtime PM (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: implement runtime suspend/resume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: remove redundant clock enable API (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: add runtime PM callbacks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: get clock handles early in probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: runtime power management support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: rename to asoc_simple_card_canonicalize_platform() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: use for_each_link_codecs() for dai_link codecs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: add soc_cleanup_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: reduce if/else nest on soc_probe_link_dais (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: merge card resources cleanup method (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: add new snd_soc_flush_all_delayed_work() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: add .num_platform for dai_link (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Avoid confusing loop in snd_pcm_unlink() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Make PCM linked list consistent while re-grouping (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Unify snd_pcm_group initialization (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Call snd_card_unref() inside in_pcm_file() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Add mute LED support for HP ProBook 470 G5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add support for Fireface UCX (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: code refactoring to parse of clock configuration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: code refactoring for dump of sync status (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add protocol-dependent operation to get clock status (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add protocol-dependent operation to switch mode to fetch PCM frame (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add protocol-dependent operation to dump status (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: obsolete proc node to leave one node (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: unify protocol layer for FF400/FF800 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: rename protocol layer for former models (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Fix unused variable warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc.h: add explanation of legacy/modern style of dai_link (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_sai: Remove expensive print in irq handler (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: remove error due to probe deferral (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-spdif: don't print EPROBE_DEFER as error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_spdif: don't print EPROBE_DEFER as error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-sgtl5000: don't print EPROBE_DEFER as error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-sgtl5000: lower log level for potential probe deferral cases (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-sgtl5000: put of nodes if finding codec fails (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdmi-codec: fix oops on re-probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: add default pdata for i2s mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sdm845: Set DAI format for dmic codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Kconfig: select max98927 for sdm845 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: Fix potential NULL pointer dereference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-audmux: change snprintf to scnprintf for possible overflow (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5514-spi: Fix potential NULL pointer dereference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: change snprintf to scnprintf for possible overflow (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Fix PLL source register definitions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: Don't defer probe on optional, NULL components (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Make snd_pcm_suspend() local static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcmcia: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: arm: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: aoa: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ppc: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: x86: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pci: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: drivers: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: isa: Remove superfluous snd_pcm_suspend*() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: atiixp: Move PCM suspend/resume code into trigger callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Suspend streams globally via device type PM ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: Make snd_soc_find_component() more robust (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: fix init platform memory handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: parse AES audio parameters (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: msm8916-wcd-digital: remove few unused variables (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4341: fix waring unused-function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: program stripe control for codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: program stripe bits for controller (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: add verbs for stripe control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: add register offset for stripe control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Add api to program stripe control bits (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: skl: Fix display power regression (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fix typo for ALC225 model (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: Hold client_mutex around soc_init_dai_link() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: use correct drvdata in snd_byt_cht_es8316_mc_remove() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Boards: move the codec PLL configuration to _init (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: SND_SOC_DAPM_MICBIAS is deprecated (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: Add recalc_rate function to return DAI clock rate (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: MCLK should be enabled before DAI clocks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: defer card probe until all component is added to list (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Remove set but not used variable 'first_ch_bits' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix a mask wrong issue in snd_hdac_stream_start() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix mismatches for register mask and value in hdac controller (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Disable headset Mic VREF for headset mode of ALC225 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add unplug function into unplug state of Headset Mode for ALC225 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: fix CM6206 register definitions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt274: Variable "buf" in function rt274_jack_detect() could be uninitialized (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ADAU7002: Add optional delay before start of capture (Jaroslav Kysela) [1683051]
+- [sound] ALSA: cs46xx: Potential NULL dereference in probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add quirk for PoV TAB-P1006W-232 (v1.0) tablet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add support for jack-detect using an external GPIO (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add quirks module parameter (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Revert "Fix DMIC map headsetmic mapping" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: Add support for jack detect using an external GPIO (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: Add ACPI ID 10EC5640 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: Add quirk for PoV P1006W tablet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: update BSDSR/BSDISR handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sgtl5000: Allow SCLK pad drive strength to be changed (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: atom: fix a missing check of snd_pcm_lib_malloc_pages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: enable SPDIF driver build (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: add SPDIF audio driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic32x4: Kernel OOPS while entering DAPM standby mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Add MICFIL SoC Digital Audio Interface driver. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: eliminate left-over from Raumfeld machine driver removal (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt298: fix boolean tests (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rl6437a: use __be32 for a __be32 buf (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5645: store eq kcontrol byte in __be (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: use logical AND (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: fix endianness issues (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mt6351: remove unneeded variable (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tscs42xx.c: fix boolean test (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8824: fix boolean assignment (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: fix boolean assignments (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98927: fix boolean assignments (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5640: fix boolean assignments (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoc: rt286: fix boolean tests (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt274: fix boolean tests (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4271: fix boolean assignments (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98383: fix boolean assignments to true/false (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5670: remove unused mux/mixer define (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5645: remove unused mux define (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: fix kernel doc descriptions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es8316: remove unused constant variables (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98090: remove unused constant variables (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmic: declare trigger function as static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak4458: Add support for AK4497 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sb: fix a missing check of snd_ctl_add (Jaroslav Kysela) [1683051]
+- [sound] ALSA: line6: fix check on snd_card_register (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ice1712: fix a missing check of snd_i2c_sendbytes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: gus: add a check of the status of snd_ctl_add (Jaroslav Kysela) [1683051]
+- [sound] ALSA: oxygen: initialize spdif_playback_enable to 0 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: virtuoso: add de-emphasis control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Support Dell headset mode for New AIO platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Fix an out-of-bound read in create_composite_quirks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Always check descriptor sizes in parser code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Check mixer unit descriptors more strictly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Avoid access before bLength check in build_audio_procunit() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Add support for GPIO mode of the pins (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: Move context save/restore to runtime_pm callbacks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ti: davinci-mcasp: No need for IS_MODULE/BUILTIN check for pcm driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirks for ASUS MeMO Pad 7 (ME176C) (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: sst: Fallback to BYT-CR if IRQ 5 is missing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: sst: Simplify is_byt_cr() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Add ACPI match table entry for ES8316 codec on BYTCR platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Set card long_name based on quirks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Add input-map support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Add external speaker mux support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Add jack-detect support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Add support for SSP0 (BYTCR) (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Minor refactoring (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcht_es8316: Sort includes alphabetically (Jaroslav Kysela) [1683051]
+- [regulator] ALSA: regulator: fixed: Let core handle GPIO descriptor (Jaroslav Kysela) [1683051]
+- [regulator] ALSA: regulator/gpio: Allow nonexclusive GPIO access (Jaroslav Kysela) [1683051]
+- [regulator] ALSA: regulator: fixed: Default enable high on DT regulators (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es8316: Add DAC mono mix switch mixer control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es8316: Add jack-detect support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Variable "val" in function rt274_i2c_probe() could be uninitialized (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: fix platform_no_drv_owner.cocci warnings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: fix error handling in xlnx_formatter_pcm_probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: add workaround for silence of rk3288 ACODEC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: support ACODEC for rk3328 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: reduce naming prefix (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: cleanup DAI link loop method - step2 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: cleanup DAI link loop method - step1 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: add link_info (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: add 1 CPU : 1 Codec support again (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: add asoc_simple_card_get_conversion() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: reduce naming prefix (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: cleanup DAI link loop method - step2 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: cleanup DAI link loop method - step1 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: add link_info (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: add 1 CPU : 1 Codec support again (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: enable audio formatter driver build (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: add pcm formatter platform driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: remove simple-scu-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: remove audio-graph-scu-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: add asoc_graph_card_get_conversion() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: check "reg" property on asoc_simple_card_get_dai_id() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: boards: use snd_mask_set_format in all machine drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Atom: simplify boolean tests (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Baytrail: simplify boolean test (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Baytrail: remove unneeded variable (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Haswell: assign booleans to true/false (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Haswell: remove unneeded semicolon (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: simplify boolean tests (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: remove useless cast (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8904: enable MCLK in STANDBY (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8904: save model id directly in of_device_id.data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8904: make the driver visible in Kconfig (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4341: Add driver for CS4341 DAC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Fix recording no sound issue (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: atom: Make PCI dependency explicit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: compress: prevent potential divide by zero bugs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: Fix a small memory leak (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: Fix a NULL vs IS_ERR() bug (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: Off by one in of_q6asm_parse_dai_data() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: change license header format style (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Haswell/Broadwell: fix setting for .dynamic field (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: Grammar s/the the/the/ (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dma-sh7760: cleanup a debug printk (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sdm845: set jack only for a specific backend (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Revert DSP detection on legacy HD-audio driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: clear pending irq handlers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable the headset mic auto detection for ASUS laptops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: HD-Audio: SKL+: force HDaudio legacy or SKL+ driver selection (Jaroslav Kysela) [1683051]
+- [sound] ALSA: HD-Audio: SKL+: abort probe if DSP is present and Skylake driver selected (Jaroslav Kysela) [1683051]
+- [sound] ALSA: HDA: export process_unsol_events() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable audio jacks of ASUS UX391UA with ALC294 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: bebob: fix model-id of unit for Apogee Ensemble (Jaroslav Kysela) [1683051]
+- [sound] ALSA: xen-front: Use Xen common shared buffer implementation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ti: Kconfig: Remove the deprecated options (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ti: Merge davinci and omap directories (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: add mute LED support for HP EliteBook 840 G4 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: code refactoring to handle model-specific registers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add support for packet streaming on Fireface 800 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: allocate isochronous resources in mode-specific implementation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: code refactoring to handle multiplier mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: share helper function to switch fetching mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: fix for state to fetch PCM frames (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-lib: use the same print format for 'without_header' tracepoints (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-lib: fix wrong assignment for 'out_packet_without_header' tracepoint (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-lib: fix wrong handling payload_length as payload_quadlet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6routing: add display_port_rx port routing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: add support to Display port RX dais (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: qdafe: add support for display_port_rx (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: Add support to compress offload (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm: add support to MP3 format (Jaroslav Kysela) [1683051]
+- [sound] ALSA: soc-compress: add support to snd_compr_set_runtime_buffer() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: compress: make use of runtime buffer for copy (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: Add more platform granularity (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: tidyup prefix for snd_soc_codec_conf (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: tidyup convert_rate/channel method (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: tidyup mclk-fs method (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: merge simple-scu-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: tidyup prefix for snd_soc_codec_conf (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: tidyup convert_rate/channel method (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: tidyup mclk-fs method (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: merge audio-graph-scu-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: fixup asoc_simple_card_get_dai_id() ID method (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: Invoke pcm_new() for all DAI-link (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm512x: Implement the digital_mute interface (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: fix do_div warning in spdifin (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: add error logs on probe, remove dependency on NHLT (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: remove useless tests on HDaudio capabilities (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: stop probe if HDaudio capabilities don't exist (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: Harden DSP detection with PCI class/subclass info (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: Add CFL-S support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3060: Add powersaving widgets for DAC and ADC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: enable i2s driver build (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: xlnx: Add i2s driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: kbl_rt5660: Add a new machine driver for kbl with rt5660 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add axg spdif input (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-toddr: add support for spdifin backend (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: Dereference pointer for memcpy sizeof in asoc_simple_card_probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl: Fix SND_SOC_EUKREA_TLV320 build error on i.MX8M (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: add support for Huawei WMI micmute LED (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: fix front speakers on Huawei MBXP (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: remove RSND_REG_ from rsnd_reg (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add support for Fireface 800 with MIDI functionality only (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: localize a handler for MIDI messages on tx transaction (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add driver data for register for MIDI high address (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: share register for async transaction of MIDI messages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: add support for second optical interface for ADAT stream (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: share helper function to get current sampling rate and clock source (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: share status and configuration dump (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: share some registers for status of clock synchronization (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: care multi DPCM codec_conf (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: use cpu/codec pointer on graph_dai_props (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: tidyup "convert-rate/channels" parsing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: care link / dai count (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: add dai-link support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - make pci_iounmap() call conditional (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/hdmi: Always set display_power_control for Intel HSW+ codecs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdac_hdmi: Add missing display power-off at driver removal (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Make snd_hdac_display_power() void function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/intel: Properly free the display power at error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/intel: Drop superfluous AZX_DCAPS_I915_POWERWELL checks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Refactor display power management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: tidyup asoc_simple_card_parse_daifmt() timing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: use cpu/codec pointer on simple_dai_props (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: fix build warning without CONFIG_OF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sdm845: add rt5663 codec select (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98927: fix the audio jack button remapping (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for the Point of View Mobii TAB-P1005W-232 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for the Prowise PT301 tablet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable audio jacks of ASUS UX433FN/UX333FA with ALC294 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Enable audio jacks of ASUS UX533FD with ALC294 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: ALC294 mic and headset-mode fixups for ASUS X542UN (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/intel: Refactoring PM code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: fix reference to wrong register for clock configuration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fix the mute LED regresion on Lenovo X1 Carbon (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max9867: Add copyright and module author (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sdm845: Add configuration for headset codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sdm845: Add TDM configuration for speaker (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max9867: Fix signal paths (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max9867: Calculate LRCLK divider (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max9867: Fix power management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max9867: Remove useless assignment (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Enable headset button support for new codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Add jack button support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Add jack pointer and unsolicited event bits to callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fixed headphone issue for ALC700 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5660: Add a new ACPI match ID (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: ak4104: move to GPIO consumer API (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: cs4270: move to GPIO consumer API (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Use of_node_name_eq for node name comparisons (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: use dma_ops of parent device for acp_audio_dma (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: use DMA addr rather than CPU pa for acp_audio_dma (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: cht_bsw_max98090_ti: Add pmc_plt_clk_0 quirk for Chromebook Gnawty (Jaroslav Kysela) [1683051]
+- [sound] ALSA: aoa: Use of_node_name_eq for node name comparisons (Jaroslav Kysela) [1683051]
+- [sound] ALSA: aoa: Remove direct OF name and type accesses (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sparc: Use of_node_name_eq for node name comparisons (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Fix mic issue on Acer AIO Veriton Z4860G/Z6860G (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: Fix mic issue on Acer AIO Veriton Z4660G (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add support for Acer Aspire C24-860 headset mic (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek: ALC286 mic and headset-mode fixups for Acer Aspire U27-880 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: Added max98373_reset for stable amp reset (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: use cpu/codec pointer on graph_dai_props (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: care multi DPCM codec_conf (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: use cpu/codec pointer on graph_dai_props (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: care link / dai count (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: fixup asoc_simple_card_get_dai_id() counting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add missing TDM Split mode support for simple-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: fixup mod ID for CTU regmap read/write (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: indicates Channel and Mode for debug (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/hdmi - Add Tegra186 and Tegra194 support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra - Probe up to 8 codecs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: cht_bsw_max98090_ti: Add pmc_plt_clk_0 quirk for Chromebook Clapper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: remove raumfeld machine driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Fix UAF decrement if card has no live interfaces in card.c (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: add ACPI matching tables for ICL (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fix speaker output regression on Thinkpad T570 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: au8540: use 64-bit arithmetic instead of 32-bit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Add support for AMD Stoney Ridge (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add SMSL D1 to quirks for native DSD support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Fix starvation on down_write_nonblock() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Call snd_pcm_unlink() conditionally at closing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/tegra: compatible string as shortname (Jaroslav Kysela) [1683051]
+- [platform] ALSA: platform/x86: thinkpad_acpi: Add audio mute LED classdev support (Jaroslav Kysela) [1683051]
+- [platform] ALSA: platform/x86: dell-laptop: Add micmute LED trigger support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Support led audio trigger (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3168a: Don't disable pcm3168a when CONFIG_PM defined (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmic: introduce module_param wakeup_delay (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmic: introduce mode switch delay (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: sdm845: Create and setup jack in init callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: sdm845: Add board specific dapm widgets (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: davinci-mcasp: Implement configurable dismod handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: davinci-mcasp: Update PDIR (pin direction) register handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: davinci-mcasp: Clear TXSTAT register before activating serializers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: Add FW reply for MCLK/SCLK IPC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: Make DSP replies more human readable (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: leds: trigger: Introduce audio mute LED trigger (Jaroslav Kysela) [1683051]
+- [drivers] ALSA: leds: core: Introduce LED pattern trigger (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: tidyup registering method for rsnd_kctrl_new() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Support ALC300 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add auto-mute quirk for HP Spectre x360 laptop (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max9867: Fix whitespace (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc.h: makes snd_soc_of_parse_audio_prefix() inline (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: Fix a NULL vs IS_ERR() check in probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - fix the pop noise on headphone for lenovo laptops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: fix spelling mistake "Frequence" -> "Frequency" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: Revert "ALSA: Replace snd_malloc_pages() and snd_free_pages() with standard helpers" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: Replace snd_malloc_pages() and snd_free_pages() with standard helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: control: Consolidate helpers for adding and replacing ctl elements (Jaroslav Kysela) [1683051]
+- [sound] ALSA: control: Fix race between adding and removing a user element (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sparc: Fix invalid snd_free_pages() at error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: wss: Fix invalid snd_free_pages() at error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - fix headset mic detection for MSI MS-B171 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Add ASRock N68C-S UCC the power_save blacklist (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ac97: Fix incorrect bit shift at AC97-SPSA control write (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-tascam: notify events of change of state for userspace applications (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-tascam: apply small refactoring to handle several type of event for hwdep interface (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-tascam: queue events for change of control surface (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-tascam: add new hwdep ioctl command to get state image (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-tascam: pick up data of state from tx isochronous pakcets (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-dmic: Add pm_qos handling to avoid overruns with CPU_IDLE (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcpdm: Add pm_qos handling to avoid under/overruns with CPU_IDLE (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: Fix latency value calculation for pm_qos (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: tidyup define position (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: tidyup typo SND_AUDIO_GRAPH_CARD (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: tidyup asoc_simple_card_parse_daifmt() timing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: tidyup "convert-rate/channels" parsing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: tidyup "prefix" parsing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: tidyup "prefix" parsing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: add snd_soc_of_parse_node_prefix() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-amplifier: add VCC regulator widget (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sunxi: sun50i-codec-analog: Add support for cpvdd regulator supply (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple_card_utils: remove "option" from asoc_simple_card_of_parse_routing() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: tidyup asoc_simple_card_parse_convert() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: accept NULL parameter on asoc_simple_card_xxx() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: remove asoc_simple_card_clk_register() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: makes rsnd_ssi_is_dma_mode() static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: tidyup rsnd_parse_connect_ssiu_compatible() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sdm845: Add support for Secondary MI2S interface (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sdm845: Update slot_width for Quaternary TDM port (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: use platform_data for machine drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: fix interface for Chromebook machine drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: acpi: define common interface for machine driver configuration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: acpi: fix: continue searching when machine is ignored (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: fix Kconfigs, make HDaudio codec optional (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic3x: Add support for CBM_CFS and CBS_CFM clocking modes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: aoa: Use device_type helpers to access the node type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - fix AE-5 pincfg (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add new ZxR quirk (Jaroslav Kysela) [1683051]
+- [sound] ALSA: asihpi: clean up indentation, replace spaces with tab (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5663: Fix error handling of regulator_set_load (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: fix spelling mistake "Inavlid" -> "Invalid" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: clean up indentation, remove extraneous tab (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: arizona: fix indentation issue with return statement (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320dac33: clean up indentation, remove extraneous tab (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic31xx: asihpi: clean up indentation, remove extraneous tab (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Convert a few more users to using pOFn instead of device_node.name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5663: Add regulator support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak4118: Add support for AK4118 S/PDIF transceiver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm186x: Fix device reset-registers trigger value (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: remove set but not used variable 'dma_buffer' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: Fixed build errors (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8822: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8822: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Recalculate audio map forcely when card instantiated (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-abe-twl6040: Fix missing audio card caused by deferred probing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: fix memory leak of i2s_data on error return (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3060: Add DT property for single-ended output (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3060: Rename output widgets (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Set dai_link id to each dai_link (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun8i-codec: add missing route for ADC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: enable acp3x drivers build (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: add acp3x system resume pm op (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: add acp3x runtime pm ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: add acp3x tdm mode support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: add acp3x i2s ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: add acp3x pcm driver dma ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: Interrupt handler changes for ACP3x DMA driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: add ACP3x PCM platform driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: amd: create ACP3x PCM platform device (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: add ACP3.0 PCI driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: add ACP 3.x IP register header (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Power down links before turning off display audio power (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: hdac_hdmi: add Icelake support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Factor out common init code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Fix dma-unsafe read of scratch registers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: add missing slave_config setting for I2S (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: No need to initialize max_xx_thres when it is not used (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: Remove redundant check for mcbsp->pdata (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: Re-arrange files for core McBSP and Sidetone function split (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: Move out the FIFO check from set_threshold and get_delay (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: Simplify the mcbsp_start/_stop function parameters (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: Clean up the interrupt handlers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: Skip dma_data.maxburst initialization (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: Clean up dma_data addr initialization code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: oxfw: add support for APOGEE duet FireWire (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Call pci_iounmap() instead of iounmap() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add quirk entry for HP Pavilion 15 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Optimize for non-PCI configuration (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: use ring buffer for rsnd_mod_name() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun8i-codec: fix crash on module removal (Jaroslav Kysela) [1683051]
+- [sound] ALSA: oss: Use kvzalloc() for local buffer allocations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_ssi: Change to use DEFINE_SHOW_ATTRIBUTE macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add TDM Split mode support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add SSIU BUSIF support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: handle DPCM converted rate/chan under core (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: move HDMI information from ssi.c to core.c (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: use defined io_playback/io_capture (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: rename rsnd_runtime_is_ssi_xxx() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: remove endpoint bidirectional check (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: remove error check which never happen (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: remove endpoint bidirectional check (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: remove endpoint bidirectional check (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: add quirk for APL RVP boards (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: add SOF information for APL RVP (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: remove GFP_ATOMIC, use GFP_KERNEL (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: boards: fix Skylake typo (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: use standard interface for Atom machine drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: use standard interface for Hdaudio machine driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: change ac97 dependencies (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap: Remove unused machine driver for AM3517-evm (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3168a: remove read-only status register from snd_kcontrol_new (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak5558: Remove redundant snd_soc_component_read32 calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: Fix the dai widgets (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: Only add routing once. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Define registers for CM6206 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Fix incorrect clearance of thinkpad_acpi hooks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe: Fix wrong MI2S SD line mask (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: cht_bsw_max98090_ti: Add quirk for boards using pmc_plt_clk_0 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: rsnd_mod_name() handles both name and ID (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add .get_id/.get_id_sub (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: move .get_status under rsnd_mod_ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3168a: cleanup hw_constraint for LEFT_J/I2S (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcbsp: On OMAP1 and OMAP2420 only 16bit format is supported (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: constify regulator_desc structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: constify snd_soc_dai_ops structures (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8825: remove unnecessary unlikely() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: mrfld: fix uninitialized variable access (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm97xx: fix uninitialized regmap pointer problem (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: smd845: constify snd_soc_ops structure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix less than zero comparison on unsigned int (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sunxi: rename SND_SUNXI_ADDA_PR_REGMAP to SND_SUN8I_ADDA_PR_REGMAP (Jaroslav Kysela) [1683051]
+- [sound] ALSA: x86: Rip out the lpe audio runtime suspend/resume hooks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: x86: Fix runtime PM for hdmi-lpe-audio (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: fixup clock start checker (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fix oops w/ for_each_rtd_codec_dai_rollback() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-lib: fix insufficient PCM rule for period/buffer size (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: dice: fix to wait for releases of all ALSA character devices (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix noderef.cocci warnings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: fix master clock naming (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: add clock dependency for sai (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Actually fix microphone issue (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-i2s: move code from startup/shutdown hooks into pm_runtime hooks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm2000: Remove wm2000_read helper function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: fix mclk support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Log addresses as 8 digits in wm_adsp_buffer_populate (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Rename memory fields in wm_adsp_buffer (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs42l51: add mclk support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: set sai as mclk clock provider (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: fix trivial checkpatch issues (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Add support for hw_free on CODEC to CODEC links (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98927: minor white space clean up (Jaroslav Kysela) [1683051]
+- [sound] ALSA: i2c/cs8427: Fix int to char conversion (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: tidyup SSICR::SWSP for TDM (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: enable TDM settings for SSI parent (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3168a: add hw constraint for capture channel (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sta32x: Add support for XTI clock (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8822: new codec driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tegra_sgtl5000: fix device_node refcounting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sunxi: allow the sun8i-codec driver to be built on ARM64 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sunxi: Add new driver for Allwinner A64 codec's analog path controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun8i-codec-analog: split regmap code into separate driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun8i-codec: Don't hardcode BCLK / LRCK ratio (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sun4i-i2s: Add compatibility with A64 codec I2S (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: don't pass GFP_DMA32 to dma_alloc_coherent (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Add 2 more models to the power_save blacklist (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: Add Kabylake Dialog+Maxim machine driver entry (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Boards: Add KBL Dialog Maxim I2S machine driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Add SND_JACK_LINEOUT jack type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: asihpi: don't pass GFP_DMA32 to dma_alloc_coherent (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3168a: add I2S/Left_J TDM support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3168a: add hw constraint for channel (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3168a: add HW constraint for non RIGHT_J (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sta32x: set ->component pointer in private struct (Jaroslav Kysela) [1683051]
+- [sound] ALSA: au88xx: Add fall-through annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: opti92xx-ad1848: Use the standard fall-through annotation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: oss: Use the standard fall-through annotation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: caiaq: Add fall-through annotation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: memalloc: Add fall-through annotation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: add missing entries to Kconfig (Jaroslav Kysela) [1683051]
+- [sound] ALSA: isight: fix leak of reference to firewire unit in error path of .probe callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: Sort DHT Rot Pnt Volume in reverse order (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: Sort max98373_bde_gain_tlv in reverse order (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: Sort BDE Limiter Thresh Volume in reverse order (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: Sort Digital Volume in reverse order (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: enable mclk-fs on codec node (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: use 32bit TDM width as default (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98988: add I2C dependency (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire: simplify cleanup process when failing to register sound card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: bebob/fireworks: simplify handling of local device entry table (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire: release reference count of firewire unit in .remove callback of bus driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire: block .remove callback of bus driver till all of ALSA character devices are released (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Fix headphone pin config for ASUS G751 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Fix input effect controls for desktop cards (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add error checking in ca0132_build_controls() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Clean up patch_ca0132() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Fix microphone inconsistency issues (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98988: make it selectable (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98088: Add master clock handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8782: add support for regulators (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Add ASUS G751 quirk model entry (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Add quirk for ASUS G751 laptop (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: Use the standard fall-through annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: skylake: Add fall-through annotation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt274: Add fall-through annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm186x: Use the standard fall-through annotation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: adau1761: Use the standard fall-through annotation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add custom mixer status quirks for RME CC devices (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: update quirk for B&W PX to remove microphone (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/sigmatel - Disable automute for Elo VuPoint (Jaroslav Kysela) [1683051]
+- [sound] ALSA: rawmidi: A lightweight function to discard pending bytes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add fault detect recovery property to DT bindings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa-ssp: enable and disable extclk if given (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: checking NULL vs IS_ERR() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: skylake: Add missing break in skl_tplg_get_token() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: oxfw: use managed-resource to maintain cache of stream formats (Jaroslav Kysela) [1683051]
+- [sound] ALSA: oxfw: use managed-resource to maintain model-specific data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireworks: use managed-resource to maintain response buffer (Jaroslav Kysela) [1683051]
+- [sound] ALSA: bebob: use managed-resource to maintain data specific to M-Audio FW-1814/ProjectMix I/O (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire: use managed-resource of fw unit device for private data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Cannot adjust speaker's volume on Dell XPS 27 7760 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: intel8x0: Fix fall-through annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sb8: Fix fall-through annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-lib: add PCM rules to obsolete PCM constraints based on LCM of SYT_INTERVAL (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add ZxR exit commands (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add ZxR 600 ohm gain control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Remove input select enum for ZxR (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add ZxR input/output select commands (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add ZxR DSP post-download commands (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add ZxR init commands (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add DBpro hda_codec_ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add ZxR pincfg (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add ZxR quirks + new quirk check function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Fix surround sound with output effects (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Fix AE-5 control type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix mismatch for register mask and value in ext controller. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: qdsp6: remove duplicated include (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm9712: fix unused variable warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: atmel: add SND_SOC_I2C_AND_SPI dependency (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: avoid AC97_BUS build warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-utils: Rename dummy_dma_ops to snd_dummy_dma_ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98088: add OF support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4265: Add a MIC pre. route (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_component_dais() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_component() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: fixup SSI clock during suspend/resume modes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: qdsp6: remove duplicated include from q6adm.c (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tidyup for_each_card_prelinks() dai_link (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5663: Remove the boost volume in the beginning of playback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_dpcm_be() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_dpcm_fe() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_comp_order() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_card_components() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_card_rtds() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_card_links() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_card_prelinks() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rename for_each_rtd_codec_dai_reverse to rollback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: convert for_each_rtd_codec_dai() for missing part (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add AE-5 exit function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add AE-5 specific controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add input selection commands for AE-5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add output set commands for AE-5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Clean up ca0132_alt_out_select (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add DSP setup functions for AE-5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Merge post-dsp functions + cleanup (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Change firmware name and usage (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add AE-5 regular init setup (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add AE-5 pre-init and ca0113 functions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Change ca0132_mmio_init for AE-5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Set AE-5 bools and select mixer (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add pincfg for AE-5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add quirk for Sound BlasterX AE-5 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Define new verbs and control params (Jaroslav Kysela) [1683051]
+- [sound] ALSA: xen-front: Refine indentations and constify snd_pcm_ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix the audio-component completion timeout (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5677-spi: Drop unused GPIO include (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Minor code modification (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Fix capture unstable in beginning for some runs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Fix the boost volume at the begining of playback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Update calibration function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Remove HP volume control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Improve HP performance (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: remove redundant include (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5514-spi: Get the period_bytes in the copy work to make sure the value correctly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: add snd_soc_is_matching_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: manage platform name under snd_soc_init_platform() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: remove duplicated include from q6asm-dai.c (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hisilicon: fix fall-through annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es8328: Fix fall-through annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireworks: fix memory leak of response buffer at error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: oxfw: fix memory leak of discovered stream formats at error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: oxfw: fix memory leak for model-dependent data at error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: bebob: fix memory leak for M-Audio FW1814 and ProjectMix I/O at error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: atiixp: fix fall-through annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Enable runtime PM only for discrete GPU (Jaroslav Kysela) [1683051]
+- [sound] ALSA: oxfw: fix memory leak of private data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-tascam: fix memory leak of private data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-digi00x: fix memory leak of private data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: intel8x0m: Register irq handler after register initializations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix implicit definition of pci_iomap() on SH (Jaroslav Kysela) [1683051]
+- [sound] ALSA: don't call skl_init_chip() to reset intel skl soc (Jaroslav Kysela) [1683051]
+- [sound] ALSA: enable interrupt after dma buffer initialization (Jaroslav Kysela) [1683051]
+- [sound] ALSA: Revert "ASoC: Intel: Skylake: Acquire irq after RIRB allocation" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: remove dai->driver NULL check (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: add support to card rebind (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: remove unneeded static set .owner field in platform_driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: add missing INTERLEAVED PCM attribute (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: remove unused num_dai_links (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: avoid nested code on soc_remove_dai() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5668: remove empty rt5668_i2c_remove() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: fix unused variable warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Fix UBSAN warning at snd_soc_get/put_volsw_sx() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: switch to new ac97 bus support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Fix simultaneous playback and capture on different channel (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emu10k1: fix possible info leak to userspace on SNDRV_EMU10K1_IOCTL_INFO (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Add missing return value check for snd_soc_dapm_new_dai (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: skl-topology: Use kmemdup to replace kzalloc + memcpy (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: q6core: Use kmemdup to replace kzalloc + memcpy (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: txx9: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sh: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nuc900: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tscs454: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5668: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdac_hda: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: bcm: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: atmel_ssc_dai: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Ensure reset bit is cleared before configuring (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: clean up a return (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Fix a couple uninitialized ret variables (Jaroslav Kysela) [1683051]
+- [sound] ALSA: fireface: fix memory leak in ff400_switch_fetching_mode() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: bebob: use address returned by kmalloc() instead of kernel stack for streaming DMA mapping (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Update hardware pointer before start capture (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: usleep_range() needs include/delay.h (Jaroslav Kysela) [1683051]
+- [sound] ALSA: regmap: split up regmap_config.use_single_rw (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: hdac_hdmi: Limit sampling rates at dai creation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Avoid uninitialised variable warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sgtl5000: avoid division by zero if lo_vag is zero (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: don't use p for dev_dbg() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: don't fallback to PIO mode when -EPROBE_DEFER (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: adg: care clock-frequency size (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: gen: use tab instead of white-space (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdac_hdmi: remove redundant check for !port condition (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Move CODEC to CODEC params from the widget to the runtime (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Add support for multi-CODEC CODEC to CODEC links (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Move connection of CODEC to CODEC DAIs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Cosmetic tidy up of snd_soc_dapm_new_control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Move error handling to snd_soc_dapm_new_control_unlocked (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_rtd_codec_dai() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: add for_each_link_codecs() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic31xx: Add overflow detection support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: mips: Cleanup indirect PCM helper usages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: cs46xx: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flag (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emu10k1: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flag (Jaroslav Kysela) [1683051]
+- [sound] ALSA: mips: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flag (Jaroslav Kysela) [1683051]
+- [sound] ALSA: rme32: Use SNDRV_PCM_INFO_SYNC_APPLPTR info flag (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix several mismatch for register mask and value (Jaroslav Kysela) [1683051]
+- [sound] ALSA: aoa: Convert to using pOFn instead of device_node.name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: Don't schedule DAPM work if already in target state (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Add driver for PROTO Audio CODEC (with a WM8731) (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: merge .nolock_start and .prepare (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: ssiu: Support to init different BUSIF instance (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: ssiu: Support BUSIF other than BUSIF0 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoc: rsnd: dma: Calculate PDMACHCRE with consider of BUSIF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoc: rsnd: dma: Calculate dma address with consider of BUSIF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: ssi: Check runtime channel number rather than hw_params (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: ssi: Fix issue in dma data address assignment (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: remove is_play parameter from hw_rule function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add support for 8 bit S8 format (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add support for the DSP_A/DSP_B formats (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add support for 16/24 bit slot widths (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add warning message to rsnd_kctrl_accept_runtime() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: fixup not to call clk_get/set under non-atomic (Jaroslav Kysela) [1683051]
+- [sound] ALSA: rawmidi: Initialize allocated buffers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tlv320aic31xx: Add short circuit detection support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fix soc-core.c kernel-doc warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: q6routing: initialize data correctly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tas6424: Add channel fault reporting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tas6424: Save last fault register even when clear (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tas6424: Print full register name in error message (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-util: remove dai_link compatible code for platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: support snd_soc_dai_link_component style for platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: support snd_soc_dai_link_component style for platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: support snd_soc_dai_link_component style for platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: support snd_soc_dai_link_component style for platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-util: support snd_soc_dai_link_component style for platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: use snd_soc_dai_link_component for platform (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-util: remove dai_link compatible code for codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: support snd_soc_dai_link_component style for codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card: use simple_dai_props (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: support snd_soc_dai_link_component style for codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: support snd_soc_dai_link_component style for codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card: use simple_dai_props (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: support snd_soc_dai_link_component style for codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple_card_utils: support snd_soc_dai_link_component style for codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4265: Add a S/PDIF enable switch (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4265: Add native 32bit I2S transport (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4265: SOC_SINGLE register value error fix (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: tas5720: add TAS5722 TDM slot width setting support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: tas5720: add TAS5722 specific volume control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: davinci-mcasp: Add support for FIFO usage caused delay reporting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Fix cancel_work_sync() stall from jackpoll work (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Clean up jackpoll_ms option handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add axg pdm input (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmic: add DT module alias (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmic: add Kconfig prompt for the generic dmic codec. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: adau17x1: Unused exported functions changed to internal (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3060: Improve legibility of if-statements (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3060: Improve stylistics of file comments (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: atmel: tse850: switch to SPDX license identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Change MCLK to 48Mhz (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Set constraints for DMIC and MAX98357a codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm3060: Add codec driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: cht-bsw-rt5672: Add key-mappings for the headset buttons (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: Add quirk for Thinkpad 8 tablet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5670: Add quirk for Thinkpad 8 tablet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: adau17x1: Implemented safeload support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sigmadsp: safeload should not have lower byte limit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdac_hda: add asoc extension for legacy HDA codec drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: use hda_bus instead of hdac_bus (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: add HDA BE DAIs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: use HDAudio if ACPI enumeration fails (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Boards: Machine driver for SKL+ w/ HDAudio codecs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: add table for HDA-based platforms (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: move hda_codec.h to include/sound (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8804: Add ACPI support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Update calibration function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: Change DAC/ADC volume scale (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: Added 10ms sleep after amp software reset (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-tdm: restrict formats depending on slot width (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-fifo: report interrupt request failure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: imply clock and reset controllers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dpcm: Properly initialise hw->rate_max (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Don't fail creating new DAPM control on NULL pinctrl (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Remove clock framework ifdefs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Convert to using pOFn instead of device_node.name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: intel_hdmi: Use the new non-cached allocation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: intel8x0: Use the new non-cached allocation for 440MX workaround (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Remove substream allocation/free ops (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Use new non-cached allocation for non-snoop mode (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Check the non-cached stream buffers more explicitly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: memalloc: Add non-cached buffer type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: memalloc: Simplify snd_malloc_dev_pages() calls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: memalloc: Don't align the size to power-of-two (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Do error checks at creating system ports (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: add error check in snd_seq_system_client_init() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: signedness bug in snd_pcm_plug_alloc() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hdspm: fix spelling mistake "Initializeing" -> "Initializing" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Return 0 when size < start_threshold in capture (Jaroslav Kysela) [1683051]
+- [kvm] ALSA: treewide: correct "differenciate" and "instanciate" typos (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Fix HP Headset Mic can't record (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ac97: fix unbalanced pm_runtime_enable (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ac97: fix check of pm_runtime_get_sync failure (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ac97: fix device initialization in the compat layer (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5514: Fix the issue of the delay volume applied again (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: Added speaker FS gain cotnrol register to volatile. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: update dell-wmi mic-mute registration to new world order (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Fix NULL pointer deference on CODEC to CODEC DAIs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: virmidi: Fix discarding the unsubscribed output (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: Acquire irq after RIRB allocation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm9712: fix replace codec to component (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirks for 2 more devices (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: adav80x: mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: Add delays to capture path to remove DC offset noise (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: mixart: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: opl3: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add exit commands for Recon3D (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Change mixer controls for Recon3D (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add Recon3D input and output select commands (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add DSP setup defaults for Recon3D (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add Recon3D startup functions and setup (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add bool variable to enable/disable pci region2 mmio (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add Recon3D pincfg (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add quirk ID and enum for Recon3D (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Add alt_functions unsolicited response (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Clean up ca0132_init function. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Create mmio gpio function to make code clearer (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Make DSP name configurable by codec driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Declare firmware controls from codec driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max98373: Added software reset register to readable registers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Correct DSP pointer for preloader control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5677: Fix initialization of rt5677_of_match.data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: compress: make BE and FE order inline with dpcm (Jaroslav Kysela) [1683051]
+- [sound] ALSA: intel_hdmi: remove redundant variable cfg_val (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Set delay value for the capture case (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Modified DMA pointer for capture (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Make ACP->SYSMEM DMA non circular (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8994: Fix missing break in switch (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: add SLIM tx AIF_IN dapm (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: remove unused header files from common.h (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sdm845: remove unused header files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: apq8096: remove unused header files (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: make common.c as proper module (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8903: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da9055: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm5100-tables: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7213: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: twl6040: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7219: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8996: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cs4270: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8990: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tda7419: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5631: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: max9850: use true and false for boolean values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: dice: fix wrong copy to rx parameters for Alesis iO26 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: echoaudio: Mark expected switch fall-throughs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emu10k1: Mark expected switch fall-throughs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: mixart: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add mute LED quirk for HP Spectre x360 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq_oss: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: samsung: i2s: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-dmic: Mark expected switch fall-throughs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_esai: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: omap-mcpdm: Mark expected switch fall-throughs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: davinci-i2s: mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: smd845: fix memory leak (Jaroslav Kysela) [1683051]
+- [sound] ALSA: synth: Remove empty init and exit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pci: Remove empty init and exit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: i2c: Remove empty init and exit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: isa: Remove empty init and exit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: drivers: Remove empty init and exit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: compress: Remove empty init and exit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: gus: fix spelling mistake "acumulator" -> "accumulator" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: es18xx: mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: opti9xx: mark expected switch fall-throughs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: opti92x: mark expected switch fall-throughs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: galaxy: Mark expected switch fall-throughs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bxt: Use refcap device for mono recording (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: remove support for card rebind using component framework (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: smd845: remove auto rebinding (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: apq8096: remove auto rebinding (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Correct Asrock B85M-ITX power_save blacklist entry (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Fix unmet dependency warning for SND_SOC_SDM845 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8994: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm9081: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8995: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8962: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8996: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8904: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8960: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8955: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5677: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5640: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8961: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsi: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sb: Fix a typo (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Fix invalid use of sizeof in parse_uac_endpoint_attributes() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Drop unused 64bit division macros (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Use no intrruptible mutex_lock (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Fix leftovers at probe error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Remove dead codes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Minor cleanup of MIDI event parser helpers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-pcm: Use delay set in component pointer function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: Fix build (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: Fix build due to CLASS-H Controller support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: remove redundant pointer 'urb' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sonicvibes: remove redundant pointer 'dir' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ens137x: remove redundant array pcm_devs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emu10k1: remove redundant variable attn (Jaroslav Kysela) [1683051]
+- [sound] ALSA: cs5535audio: remove redundant pointer 'dma' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: asihpi: remove redundant variable max_streams (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: remove redundant pointers 'priv' and 'rtd' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8540: remove redundant variable osrate (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: add sdm845 sound card support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Add support to parse common audio device nodes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: add CLASS-H Controller support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wcd9335: add support to wcd9335 codec (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Operate UAC3 Power Domains in PCM callbacks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add UAC3 Power Domains to suspend/resume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: AudioStreaming Power Domain parsing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Initial Power Domain support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: virmidi: Use READ_ONCE/WRITE_ONCE() macros (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: virmidi: Offload the output event processing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: uniphier: change functions to static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: uniphier: add support for multichannel output (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sirf: Fix potential NULL pointer dereference (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tegra_alc5632: fix device_node refcounting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sh: Kconfig: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak4613: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: da7210: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak4554: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak4642: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm8988: fix typo in rate constraints (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tegra: i2s: Fix typo/broken macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/hdmi: Use single mutex unlock in error paths (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Sleep for 10ms after entering D3 on Conexant codecs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Turn CX8200 into D3 as well upon reboot (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ctxfi: cthw20k2: Replace mdelay() with msleep() and usleep_range() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ALSA:: ctxfi: cthw20k1: Replace mdelay() with msleep() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: quirks: Replace mdelay() with msleep() and usleep_range() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sb: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: atiixp_modem: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: atiixp: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: bt87x: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: echoaudio: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: maestro3: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: intel8x0m: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: intel8x0: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: lola: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: mixart: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: riptide: Properly endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Proper endian notations for BDL pointers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: trident: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ymfpci: Proper endian notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: xen: Use standard pcm_format_to_bits() for ALSA format bits (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sb: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sb: Fix PCM format bit calculation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: wss: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: asihpi: Fix PCM format notations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: au88x0: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ad1816a: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Fix sparse warning wrt PCM format type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: riptide: Fix PCM format type conversion (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Fix implicit PCM format type conversion (Jaroslav Kysela) [1683051]
+- [sound] ALSA: virmidi: Fix too long output trigger loop (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmaengine: Use standard pcm_format_to_bits() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm186x: Declare PCM format with snd_pcm_format_t (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl: Use snd_mask_set_format() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Fix interval evaluation with openmin/max (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Add snd_mask_set_format() helper for standard usages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: intel: Fix snd_pcm_format_t handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Use int for format bit position (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dmaengine: Fix missing __user prefix in copy_user callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: zte: Fix incorrect PCM format bit usages (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: align axg card driver with DT bindings documentation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: use IRQ_RETVAL in the fifo irq handler (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Fix build warning (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Add a fix voltage regulator for DA7219 and ADAU7002 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: memalloc: Fix missing PAGE_SIZE definition (Jaroslav Kysela) [1683051]
+- [sound] ALSA: memalloc: declare snd_sgbuf_aligned_pages() unconditionally (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emu10k1: Fix missing __force annotation for user/kernel pointer cast (Jaroslav Kysela) [1683051]
+- [sound] ALSA: korg1212: Add __force annotation to cast in user-copy callbacks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Use standard lower_32_bits() and upper_32_bits() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Declare the common variable in header file (Jaroslav Kysela) [1683051]
+- [sound] ALSA: opl3: Declare common variables properly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Fix a sparse warning about snd_ctl_elem_iface_t (Jaroslav Kysela) [1683051]
+- [sound] ALSA: msnd: Use NULL instead of 0 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/ca0132 - Use NULL instead of 0 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: msnd: Fix the default sample sizes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: msnd: Add missing __iomem annotations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Fix multiple definitions in AU0828_DEVICE() macro (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add support for Encore mDSD USB DAC (Jaroslav Kysela) [1683051]
+- [sound] ALSA: cs5535audio: Fix invalid endian conversion (Jaroslav Kysela) [1683051]
+- [sound] ALSA: vxpocket: Fix invalid endian conversions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: vx222: Fix invalid endian conversions (Jaroslav Kysela) [1683051]
+- [sound] ALSA: seq: Fix poll() error return (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: fix widget handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Atom: fix inversion between __iowrite32 and __ioread32 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Atom: simplify iomem address and casts (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: make sst_dma functions static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: BDL definitions should be __le32 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Haswell: fix endianness handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5631: add Volume to the name of volume control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: imx-sgtl5000: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_utils: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_asrc: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl-asoc-card: Switch to SPDX identifier (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: add support to snd_soc_dai_get_channel_map() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5514: Fix the issue of the delay volume applied (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: axg-spdifout: select SND_PCM_IEC958 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/i915: Allow delayed i915 audio component binding (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Generic DSD detection for Thesycon-based implementations (Jaroslav Kysela) [1683051]
+- [sound] ALSA: memalloc: Don't exceed over the requested size (Jaroslav Kysela) [1683051]
+- [sound] ALSA: timer: catch invalid timer object creation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: remove clock divider and pll setup from zylonite and magician (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add axg sound card support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: export snd_soc_of_get_slot_mask (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add tdm input driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add tdm output driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add tdm interface driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add tdm formatter base driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tegra: improve goto error label (Jaroslav Kysela) [1683051]
+- [usb] ALSA: powerpc/ps3: Set driver coherent_dma_mask (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for the "Connect Tablet 9" tablet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add quirk table entries for various devices (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add mono speaker quirk (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add IN2 input mapping (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Set OVCD limit for VIOS LTH17 to 2000uA (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Fix using the wrong GPIO for the ext-amp on some boards (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: Add IN3 Boost volume control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Parse HOST_BUFFER controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Allow up to 8 channels for voice control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Take prefix into account in control name length (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Correct algorithm list allocation size (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Ensure DSP boot work complete before preloader_put return (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Allow changing from a bad sample rate (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add axg spdif output (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add axg toddr driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add axg frddr driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: meson: add axg fifo base driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdac_hdmi: Add documentation for power management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: apq8096: remove component framework related code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6routing: remove component framework related code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: remove component framework related code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: remove component fw related code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: add support to card re-bind using component framework (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Add __force to cast in snd_pcm_lib_read/write() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Nuke snd_pcm_lib_mmap_vmalloc() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: rawmidi: Use kvmalloc() for buffers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: rawmidi: Minor code refactoring (Jaroslav Kysela) [1683051]
+- [sound] ALSA: rawmidi: Simplify error paths (Jaroslav Kysela) [1683051]
+- [sound] ALSA: rawmidi: Tidy up coding styles (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Make audio component support more generic (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/i915: Associate audio component with devres (Jaroslav Kysela) [1683051]
+- [sound] ALSA: drm/i915: Split audio component to a generic type (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emu8000: Use swap macro in snd_emu8000_sample_new (Jaroslav Kysela) [1683051]
+- [sound] ALSA: emu10k1_patch: Use swap macro in snd_emu10k1_sample_new (Jaroslav Kysela) [1683051]
+- [gpu] ALSA: vga_switcheroo: set audio client id according to bound GPU id (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: use PCI_BASE_CLASS_DISPLAY to replace PCI_CLASS_DISPLAY_VGA (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Tidy up logic for Processing Unit min/max values (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Unify virtual type units type to UAC3 values (Jaroslav Kysela) [1683051]
+- [include] ALSA: usb-audio: Add support for Processing Units in UAC3 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Processing Unit controls parsing in UAC2 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-audio: Add support for Selector Units in UAC3 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: For capture have interrupts on I2S->ACP channel (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Send correct channel for configuring DMA descriptors (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Boards: Add GLK Realtek Maxim I2S machine driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hdmi-codec: fix routing (Jaroslav Kysela) [1683051]
+- [sound] ALSA: cs46xx: remove redundant pointer 'ins' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ali5451: remove redundant pointer 'codec' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: sb8: remove redundant pointer runtime (Jaroslav Kysela) [1683051]
+- [sound] ALSA: gus: remove redundant pointer private_data (Jaroslav Kysela) [1683051]
+- [sound] ALSA: es1688: remove redundant pointer chip (Jaroslav Kysela) [1683051]
+- [sound] ALSA: opl3: remove redundant pointer opl3 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6routing: off by one in routing_hw_params() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: fix a range check in of_q6afe_parse_dai_data() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: allow soc-core to pick up name prefixes from component nodes (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dpcm: add rate merge to the BE stream merge (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dpcm: rework runtime stream merge (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Fix snd_interval_refine first/last with open min/max (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Reporting button presses (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Disable jack-detect over suspend/resume (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: Add button press support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: Allow disabling jack-detect by calling set_jack(NULL) (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5651: Fix workqueue cancel vs irq free race on remove (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add support for externar amplifier enable GPIO (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Move getting of codec_dev into probe() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Remove is_valleyview helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for the Lenovo Miix2 8 tablet (Jaroslav Kysela) [1683051]
+- [dma] ALSA: dmaengine: add support for reporting pause and resume separately (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: adau171x1: Connect playback DAI to the DSP (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: make SND_PXA_SOC_SSP depend on PLAT_PXA (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: replace "p" with "pK" (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Allow drivers to set R/W wait time. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8824: use 64-bit arithmetic instead of 32-bit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa-ssp: add support for an external clock in devicetree (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: cmd: Add missing newline to debug message (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsl_spdif: Use 64-bit arithmetic instead of 32-bit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: Do not overwrite slim dai num_channels (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6routing: add slim rx routings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: add support to slim tx dais (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe: Add missing slimbus capture ports (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: Use snd_pcm_stop_xrun() helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sti: Use snd_pcm_stop_xrun() helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: Use snd_pcm_stop_xrun() helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: davinci: Use snd_pcm_stop_xrun() helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: nau8825: use 64-bit arithmetic instead of 32-bit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: do not close port if its not opened (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: do not close port if its not opened (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: Use snd_pcm_stop_xrun() for xrun injection (Jaroslav Kysela) [1683051]
+- [sound] ALSA: pcm: trace XRUN event at injection, too (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: core: Allow topology to override machine driver FE DAI link config. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: atmel-i2s: Remove unnecessary audio PLL clock (aclk) (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es7134: add support for the es7154 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es7134: correct required power supplies (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Simplify trigger handler (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Reset bytescount when starting transaction (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Do not generate interrups for every captured sample (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Fix Capture DMA channel names (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Always subtract bytescount (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Always stop ch2 first (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa-ssp: mark expected switch fall-through (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es7241: add es7241 codec support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: add button detection mode control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb-midi: use irqsave() in USB's complete callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: usb: caiaq: audio: use irqsave() in USB's complete callback (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es7134: Add VDD and AVDD power supplies (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es7134: check if mclk rate is valid (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: es7134: remove 64kHz rate from the supported rates (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa-ssp: remove .set_pll() and .set_clkdiv() callbacks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: select SND_PXA2XX_LIB for drivers that depend on it (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ac97: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-generic-dmaengine-pcm: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-compress: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-topology: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-dapm: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-core: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-acpi: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-devres.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-utils.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-jack.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-dpcm.h: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-pcm.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-ops.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-dai.h: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-io.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-scu-card.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-scu-card.c: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: snd-aoa: add of_node_put() in error path (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mt6797: sub dai use list_head (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: mediatek: sub dai use list_head (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: make SND_PXA2XX_SOC_I2S selectable (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: remove bindings from pxa2xx-pcm (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: provide PCM ops for ssp, i2s and ac97 components (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa2xx-pcm-lib: fix indenting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: move some functions to pxa2xx-lib (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: clean up function names in pxa2xx-lib (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fold pxa2xx-pcm into its only user, pxa2xx-ac97 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: remove the dmaengine compat need (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/hdmi - Don't fall back to generic when i915 binding fails (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dpcm: don't merge format from invalid codec dai (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dpcm: extend channel merging to the backend cpu dai (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: qdafe: fix some off by one bugs (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dpcm: improve runtime update predictability (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: Add AZX_DCAPS_PM_RUNTIME for AMD Raven Ridge (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hdac: add extended ops in the hdac_bus (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hdac: remove memory allocation from snd_hdac_ext_bus_device_init (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda: split snd_hda_codec_new function (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hdac: ext: add wait for codec to respond after link reset (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hdac: Remove usage of struct hdac_ext_driver, use hdac_driver instead (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hdac: Remove usage of struct hdac_ext_bus and use hdac_bus instead (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hdac: Remove usage of struct hdac_ext_device and use hdac_device instead (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Move in_pm accessors to HDA core (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tas517x: add tas5707 support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-amplifer: add simple-amplifier compatible (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-amplifier: rename dio2125 to simple-amplifer (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Sort DMI table entries alphabetically (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add BYT_RT5651_HP_LR_SWAPPED quirk (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Simplify card long-name (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Fix DMIC map headsetmic mapping (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Fix IN1 map headsetmic mapping (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Remove IN2 input mappings (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Fix IN1_IN2_MAP quirk not being logged (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Change default input map from in2 to in1 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5651: Add BYT_RT5651_DEFAULT_QUIRKS define (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Kill snd_hda_codec_update_cache() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Comprehensive model list for ALC882 & co (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Comprehensive model list for ALC262 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Comprehensive model list for ALC268 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Comprehensive model list for ALC259 & co (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Comprehensive model list for ALC662 & co (Jaroslav Kysela) [1683051]
+- [sound] ALSA: Fix references to Documentation/.*/MultiSound (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm: remove unused struct q6asm member (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6routing: add proper error check (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: apq8096: remove redundant owner assignment (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6routing: support dt based module loading (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm-dai: support dt based module loading (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe-dai: support dt based module loading (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6afe: use of_platform_populate/depopulate() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6asm: use of_platform_populate/depopulate() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qdsp6: q6adm: use of_platform_populate/depopulate() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-utils: Fix unregistration order (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: cx20442: Don't ignore regulator_get() errors. (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Apply PRE_PROBE fixup after ALC269 codec variant setups (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/via - Use standard verb containers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/via - Simplify control management (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/via - Rewrite with error goto (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/cirrus - Simplify creation of new controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/conexant - Clean up beep code (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Use common helper for creating beep controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Use common helper for creating ALC268 beep controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Use common GPIO mask for ALC660VD ASUS fixup (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Simplify Dell XPS13 GPIO handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Convert some manual GPIO setups (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Simplify mute LED GPIO handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Simplify alc885_fixup_macpro_gpio() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Consolidate gpio_data and gpio_led (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Add GPIO data update helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Manage GPIO bits commonly (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Allow skipping spec->init_amp detection (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ac97: add codecs devicetree binding (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: soc-pcm: DPCM cares BE channel constraint (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Configure channel 1 or channel 0 for capture (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Change codec to channel link as per hardware redesign (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: uniphier: remove redundant check of PLL ID (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt1305: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: use devm_snd_soc_register_component() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: fix missing rename from 'reef' to 'sof' (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Simplify alc269_fixup_hp_line1_mic1_led() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Sanity check of unexpected cap_sync_hook override (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/sigmatel - Use common helper for mic mute LED (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Allow multiple ADCs for mic mute LED controls (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/conexant - Use the mic-mute LED helper (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda/realtek - Use the mic-mute LED helper for HP and others (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Use the common helper for thinkpad_acpi mic mute LED handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: hda - Move mic mute LED helper to the generic parser (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: rename 'reef' to 'sof' in ACPI matching table (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: arizona: Set compressed IRQ to a wake source (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: wm_adsp: Simplify handling of alg offset and length (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: add support for Motu Traveler (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: cancel chunk alignment for protocol version 2 (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: add a flag for AES/EBU on XLR interface (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: add a flag for chunks for main 1/2 out (Jaroslav Kysela) [1683051]
+- [sound] ALSA: firewire-motu: suppless consumption for unused element of array in stack (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pcm: Tidy up open/hw_params handling (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: fix copy/paste issue with SOF/broadwell topology file (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: add entries for SOF-based machine drivers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: add firmware/topology information for SOF (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: common: Add Geminilake Dialog+Maxim machine driver entry (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: move SKL+ codec ACPI tables to common directory (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: Skylake: cleanup before moving ACPI tables (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: broxton: reduce machine name for bxt_da7219_max98357a (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: kbl_da7219_max98357a: add fe_ops for kbl Audio Capture Port (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ARM: pxa: change SSP DMA channels allocation (Jaroslav Kysela) [1683051]
+- [sound] ALSA: line6: stop using get_seconds() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ctxfi: use enum type CT_SUM_CTL where appropriate (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ice1724: remove unused array (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Fix Acer Iconia 8 over-current detect threshold (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for the Nuvison/TMax TM800W560 tablet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: tegra: fix device_node refcounting (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: pxa: add devicetree support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: codecs: PCM1789: unconditionally flush work (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt5682: add rt5682 codec driver (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: TSCS42xx: Add headphone auto switching (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: TSCS42xx: Remove Playback/Capture in names (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: TSCS42xx: Add mic bias boost control (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak4458: make structure soc_codec_dev_ak4458 static const (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ak5558: make two structures static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: twl6040: make pointer dmic_codec_dev static (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: qcom: apq8096: set card as device drvdata (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: add rsnd_daidrv_get() (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: audio-graph-card: add hp and mic detect gpios same as simple-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card: move hp and mic detection to soc_card probe (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: simple-card-utils: move hp and mic detect gpios from simple-card (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: Intel: bytcr_rt5640: Add quirk for the Chuwi Vi10 tablet (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rt1305: Use ULL suffixes for 64-bit constants (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: add config for rockchip dmaengine pcm register (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rockchip: put device_node on remove (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: stm32: sai: add iec958 controls support (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: AMD: Add NULL pointer check (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: SSI parent cares SWSP bit (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: has .symmetric_rates if SSIs are sharing WS pin (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: sh7760-ac97: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dma-sh7760: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: migor: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: rsnd: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: siu: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: ssi: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: hac: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: fsi: convert to SPDX identifiers (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: Add callback for DAPM route load/unload (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: topology: Give more data to clients via callbacks (Jaroslav Kysela) [1683051]
+- [sound] ALSA: ASoC: dapm: Fix potential DAI widget pointer deref when linking DAIs (Jaroslav Kysela) [1683051]
+- [fs] gfs2: Fix loop in gfs2_rbm_find (v2) (Andreas Grunbacher) [1690483]
+- [fs] gfs2: Rename bitmap.bi_{len => bytes} (Andreas Grunbacher) [1690483]
+
+* Wed May 29 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-97.el8]
+- [vfio] vfio/pci: Mask buggy SR-IOV VF INTx support (Myron Stowe) [1678076]
+- [netdrv] net/ibmvnic: Update carrier state after link state change (Steve Best) [1711282]
+- [netdrv] net/ibmvnic: Update MAC address settings after adapter reset (Steve Best) [1711282]
+- [scsi] scsi: storvsc: Reduce default ring buffer size to 128 Kbytes (Cathy Avery) [1691370]
+- [scsi] scsi: storvsc: Fix calculation of sub-channel count (Cathy Avery) [1691370]
+- [powercap] powercap: RAPL: Get rid of custom RAPL_CPU() macro (Alexander Beregalov) [1706827]
+- [tools] tools/power turbostat: Increase default buffer size (Prarit Bhargava) [1711260]
+- [char] virtio_console: initialize vtermno value for ports (Pankaj Gupta) [1460636]
+- [rpmspec] redhat: exclude kvm_stat from pathfix.py's tenure (Vitaly Kuznetsov) [1692804]
+- [virt] kvm: arm: Skip stage2 huge mappings for unaligned ipa backed by THP (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Ensure vcpu target is unset on reset failure (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic-v3: Retire pending interrupts on disabling LPIs (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: arch_timer: Fix CNTP_TVAL calculation (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move RSB stuffing to before the first RET after VM-Exit (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Fix size checks in vmx_set_nested_state (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: lapic: Check for in-kernel LAPIC before deferencing apic pointer (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: fix KVM_CLEAR_DIRTY_LOG for memory slots of unaligned size (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu: reset MMU context when 32-bit guest switches PAE (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Whitelist port 0x7e for pre-incrementing rip (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: lapic: Convert guest TSC to host time domain if necessary (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: lapic: Allow user to disable adaptive tuning of timer advancement (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: lapic: Track lapic timer advance per vCPU (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: lapic: Disable timer advancement if adaptive tuning goes haywire (Vitaly Kuznetsov) [1692804]
+- [kvm] x86: kvm: hyper-v: deal with buggy TLB flush requests from WS2012 (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Consider LAPIC TSC-Deadline timer expired if deadline too short (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: avoid misreporting level-triggered irqs as edge-triggered in tracing (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: fix spectrev1 gadgets (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: fix warning Using plain integer as NULL pointer (Vitaly Kuznetsov) [1692804]
+- [tools] selftests: kvm: add a selftest for SMM (Vitaly Kuznetsov) [1692804]
+- [tools] selftests: kvm: fix for compilers that do not support -no-pie (Vitaly Kuznetsov) [1692804]
+- [tools] selftests: kvm/evmcs_test: complete I/O before migrating guest state (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Always use 32-bit SMRAM save state for 32-bit kernels (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Don't clear EFER during SMM transitions for 32-bit vCPU (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: clear SMM flags before loading state while leaving SMM (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Open code kvm_set_hflags (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Load SMRAM in a single shot when leaving SMM (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Expose RDPMC-exiting only when guest supports PMU (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm: move kvm_load/put_guest_xcr0 into atomic context (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: svm: make sure NMI is injected after nmi_singlestep (Vitaly Kuznetsov) [1692804]
+- [kvm] svm/avic: Fix invalidate logical APIC id entry (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "svm: Fix AVIC incomplete IPI emulation" (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: mmu: Fix overflow on kvm mmu page limit calculation (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: always use early vmcs check when EPT is disabled (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: allow tests to use bad virtual-APIC page address (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Fix an inverted list_empty() check when zapping sptes (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: nVMX: fix x2APIC VTPR read intercept (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: nVMX: close leak of L0's x2APIC MSRs (CVE-2019-3887) (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: SVM: prevent DBG_DECRYPT and DBG_ENCRYPT overflow (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: svm: fix potential get_num_contig_pages overflow (Vitaly Kuznetsov) [1692804]
+- [documentation] Documentation: kvm: clarify KVM_SET_USER_MEMORY_REGION (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: complete IO before migrating guest state (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: disable stack protector for all KVM tests (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: explicitly disable PIE for tests (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: assert on exit reason in CR4/cpuid sync test (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: update rip after emulating IO (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: avoid spurious pending stimer on vCPU init (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm/x86: Move MSR_IA32_ARCH_CAPABILITIES to array emulated_msrs (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts (Vitaly Kuznetsov) [1692804]
+- [virt] kvm: don't redefine flags as something else (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: mmu: Used range based flushing in slot_handle_level_range (Vitaly Kuznetsov) [1692804]
+- [x86] x86/hyper-v: Fix definition of HV_MAX_FLUSH_REP_COUNT (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: remove check on nr_mmu_pages in kvm_arch_commit_memory_region() (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: nVMX: Add a vmentry check for HOST_SYSENTER_ESP and HOST_SYSENTER_EIP fields (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: SVM: Workaround errata#1096 (insn_len maybe zero on SMAP violation) (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: Reject device ioctls from processes other than the VM's creator (Vitaly Kuznetsov) [1692804]
+- [documentation] KVM: doc: Fix incorrect word ordering regarding supported use of APIs (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: fix handling of role.cr4_pae and rename it to 'gpte_size' (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Do not inherit quadrant and invalid for the root shadow EPT (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Comments cleanup in mmu.c (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic-its: Make attribute accessors static (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Fix handling of stage2 huge mappings (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Enforce PTE mappings at stage2 when needed (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic-its: Take the srcu lock when parsing the memslots (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic-its: Take the srcu lock when writing to guest memory (Vitaly Kuznetsov) [1692804]
+- [virt] arm64: KVM: Always set ICH_HCR_EL2.EN if GICv4 is enabled (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: arm64: Reset the PMU in preemptible context (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: fix formatting of a comment (Vitaly Kuznetsov) [1692804]
+- [documentation] KVM: doc: Document the life cycle of a VM and its resources (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM/MMU: Flush tlb directly in the kvm_zap_gfn_range()" (Vitaly Kuznetsov) [1692804]
+- [documentation] virtio-ccw: diag 500 may return a negative cookie (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S: Add count cache flush parameters to kvmppc_get_cpu_char() (Vitaly Kuznetsov) [1692804]
+- [virt] kvm: properly check debugfs dentry before using it (Vitaly Kuznetsov) [1692804]
+- [powerpc] KVM: PPC: Fix compilation when KVM is not enabled (Vitaly Kuznetsov) [1692804]
+- [powerpc] powerpc: Avoid circular header inclusion in mmu-hash.h (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: MMU: record maximum physical address width in kvm_mmu_extended_role (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Return LA57 feature based on hardware capability (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu: fix switch between root and guest MMUs (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: Minor cleanups for kvm_main.c (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Fix architecturally invalid reset value for FPEXC32_EL2 (Vitaly Kuznetsov) [1692804]
+- [kvm] powerpc/kvm: Save and restore host AMR/IAMR/UAMOR (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S: Improve KVM reference counting (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Fix build failure without IOMMU support (Vitaly Kuznetsov) [1692804]
+- [powerpc] powerpc/64s: Better printing of machine check info for guest MCEs (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Simplify machine check handling (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Context switch AMR on Power9 (Vitaly Kuznetsov) [1692804]
+- [virt] Revert "KVM: Eliminate extra function calls in kvm_get_dirty_log_protect()" (Vitaly Kuznetsov) [1692804]
+- [x86] x86: kvmguest: use TSC clocksource if invariant TSC is exposed (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: Never start grow vCPU halt_poll_ns from value below halt_poll_ns_grow_start (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: Expose the initial start value in grow_halt_poll_ns() as a module parameter (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: grow_halt_poll_ns() should never shrink vCPU halt_poll_ns (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Consolidate kvm_mmu_zap_all() and kvm_mmu_zap_mmio_sptes() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: WARN if zapping a MMIO spte results in zapping children (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Differentiate between nr zapped and list unstable (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM: MMU: fast invalidate all pages" (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Voluntarily reschedule as needed when zapping all sptes (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: skip over invalid root pages when zapping all sptes (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM: x86: use the fast way to invalidate all pages" (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM: MMU: show mmu_valid_gen in shadow page related tracepoints" (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM: MMU: add tracepoint for kvm_mmu_invalidate_all_pages" (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM: MMU: zap pages in batch" (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM: MMU: collapse TLB flushes when zap all pages" (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM: MMU: reclaim the zapped-obsolete page first" (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Remove is_obsolete() call (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Voluntarily reschedule as needed when zapping MMIO sptes (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "KVM: MMU: drop kvm_mmu_zap_mmio_sptes" (Vitaly Kuznetsov) [1692804]
+- [x86] Revert "KVM: MMU: document fast invalidate all pages" (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Zap only the relevant pages when removing a memslot (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Split remote_flush+zap case out of kvm_mmu_flush_or_zap() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Move slot_level_*() helper functions up a few lines (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: Move the memslot update in-progress flag to bit 63 (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: Remove the hack to trigger memslot generation wraparound (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Refactor the MMIO SPTE generation handling (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Use a u64 when passing the MMIO gen around (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: Explicitly define the "memslot update in-progress" bit (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Do not cache MMIO accesses while memslots are in flux (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86/mmu: Detect MMIO generation wrap in any address space (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: Call kvm_arch_memslots_updated() before updating memslots (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Add memcg accounting to KVM allocations (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: svm: Add memcg accounting to KVM allocations (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Add memcg accounting to KVM allocations (Vitaly Kuznetsov) [1692804]
+- [virt] kvm: Add memcg accounting to KVM allocations (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: do not start the preemption timer hrtimer unnecessarily (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Fix typos in vmentry/vmexit control setting (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: cleanup freeing of nested state (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Sync the pending Posted-Interrupts (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: expose MOVDIR64B CPU feature into VM. (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: expose MOVDIRI CPU feature into VM. (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm, x86, mmu: Use kernel generic dynamic physical address mask (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: remove useless is_protmode check (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Ignore limit checks on VMX instructions using flat segments (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Apply addr size mask to effective address for VMX instructions (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Sign extend displacements of VMX instr's mem operands (Vitaly Kuznetsov) [1692804]
+- [kvm] svm: Fix improper check when deactivate AVIC (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: cull apicv code when userspace irqchip is requested (Vitaly Kuznetsov) [1692804]
+- [kvm] svm: Fix AVIC DFR and LDR handling (Vitaly Kuznetsov) [1692804]
+- [virt] kvm: Use struct_size() in kmalloc() (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: set offset for kvm unstable clock (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Reorder clearing of registers in the vCPU-run assembly flow (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Call vCPU-run asm sub-routine from C and remove clobbering (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Preserve callee-save registers in vCPU-run asm sub-routine (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Return VM-Fail from vCPU-run assembly via standard ABI reg (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Pass @launched to the vCPU-run asm via standard ABI regs (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Use RAX as the scratch register during vCPU-run (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Rename ____vmx_vcpu_run() to __vmx_vcpu_run() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Fold __vmx_vcpu_run() back into vmx_vcpu_run() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move vCPU-run code to a proper assembly routine (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Create a stack frame in vCPU-run (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Use #defines in place of immediates in VM-Enter inline asm (Vitaly Kuznetsov) [1692804]
+- [x86] KVM: x86: Explicitly #define the VCPU_REGS_* indices (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Remove unused gpa_end variable (Vitaly Kuznetsov) [1692804]
+- [arm64] KVM: arm64: Fix comment for KVM_PHYS_SHIFT (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: fix spelling mistake: "auxilary" -> "auxiliary" (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: arm/arm64: Prefix header search paths with $(srctree)/ (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: arm/arm64: Remove -I. header search paths (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Fix TRACE_INCLUDE_PATH (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: arch_timer: Mark physical interrupt active when a virtual interrupt is pending (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Describe data or unified caches as having 1 set and 1 way (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: KVM: Expose sanitised cache type register to guest (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Move kvm_is_write_fault to header file (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: arch_timer: Assign the phys timer on VHE systems (Vitaly Kuznetsov) [1692804]
+- [include] clocksource/arm_arch_timer: Store physical timer IRQ number for KVM on VHE (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: timer: Rework data structures for multiple timers (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: consolidate arch timer trap handlers (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: arm64: Reuse sys_reg() macro when searching the trap table (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm64: Fix ICH_ELRSR_EL2 sysreg naming (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Simplify bg_timer programming (Vitaly Kuznetsov) [1692804]
+- [arm64] KVM: arm/arm64: Factor out VMID into struct kvm_vmid (Vitaly Kuznetsov) [1692804]
+- [virt] arm/arm64: KVM: Statically configure the host's view of MPIDR (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Drop VHE-specific HYP call stub (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: KVM: Allow for direct call of HYP functions when using VHE (Vitaly Kuznetsov) [1692804]
+- [virt] arm/arm64: KVM: Introduce kvm_call_hyp_ret() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Release all hardware TCE tables attached to a group (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Optimise mmio emulation for devices on FAST_MMIO_BUS (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S: Allow XICS emulation to work in nested hosts using XIVE (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Replace kmalloc_node+memset with kzalloc_node (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S PR: Add emulation for slbfee. instruction (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Fix entry number check for add_atomic_switch_msr() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Recompute PID.ON when clearing PID.SN (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Restore a preemption timer consistency check (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/nVMX: read from MSR_IA32_VMX_PROCBASED_CTLS2 only when it is available (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Use vcpu->arch.regs directly when saving/loading guest state (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Don't save guest registers after VM-Fail (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Invert the ordering of saving guest/host scratch reg at VM-Enter (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Pass "launched" directly to the vCPU-run asm blob (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Update VMCS.HOST_RSP via helper C function (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Load/save guest CR2 via C code in __vmx_vcpu_run() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Cache host_rsp on a per-VMCS basis (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Let the compiler select the reg for holding HOST_RSP (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Reference vmx->loaded_vmcs->launched directly (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Capture VM-Fail via CC_{SET, OUT} in nested early checks (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Capture VM-Fail to a local var in nested_vmx_check_vmentry_hw() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Explicitly reference the scratch reg in nested early checks (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Drop STACK_FRAME_NON_STANDARD from nested_vmx_check_vmentry_hw() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Remove a rogue "rax" clobber from nested_vmx_check_vmentry_hw() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Let the compiler save/load RDX during vCPU-run (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Manually load RDX in vCPU-run asm blob (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Save RSI to an unused output in the vCPU-run asm blob (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Modify only RSP when creating a placeholder for guest's RCX (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Zero out *all* general purpose registers after VM-Exit (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Check a single byte for VMCS "launched" in nested early checks (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Compare only a single byte for VMCS' "launched" in vCPU-run (Vitaly Kuznetsov) [1692804]
+- [tools] selftests: kvm: add selftest for releasing VM file descriptor while in L2 (Vitaly Kuznetsov) [1692804]
+- [arm64] KVM: arm/arm64: Add kvm_ras.h to collect kvm specific RAS plumbing (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: work around leak of uninitialized stack contents (CVE-2019-7222) (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: arm64: Forbid kprobing of the VHE world-switch code (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm64: Relax the restriction on using stage2 PUD huge mapping (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic: Always initialize the group of private IRQs (Vitaly Kuznetsov) [1692804]
+- [kvm] arm/arm64: KVM: Don't panic on failure to properly reset system registers (Vitaly Kuznetsov) [1692804]
+- [virt] arm/arm64: KVM: Allow a VCPU to fully reset itself (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: arm/arm64: Reset the VCPU without preemption and vcpu state loaded (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: fix possible null pointer dereference in pending_irqs() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: start using the GIB (Vitaly Kuznetsov) [1692804]
+- [s390] KVM: s390: add gib_alert_irq_handler() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: kvm_s390_gisa_clear() now clears the IPM only (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: add functions to (un)register GISC with GISA (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: add kvm reference to struct sie_page2 (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: add the GIB and its related life-cyle functions (Vitaly Kuznetsov) [1692804]
+- [s390] s390/cio: add function chsc_sgib() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: introduce struct kvm_s390_gisa_interrupt (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: remove kvm_s390_ from gisa static inline functions (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: use pending_irqs_no_gisa() where appropriate (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: coding style kvm_s390_gisa_init/clear() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: s390: move bitmap idle_mask into arch struct top level (Vitaly Kuznetsov) [1692804]
+- [virt] virt/kvm: Replace spin_is_locked() with lockdep (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Mark expected switch fall-throughs (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: fix TRACE_INCLUDE_PATH and remove -I. header search paths (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: check returned evmcs version range (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: nested_enable_evmcs() sets vmcs_version incorrectly (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move vmx_vcpu_run()'s VM-Enter asm blob to a helper function (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: Fix region overlap check in kvm_util (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: fix some -Wmissing-prototypes warnings (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nSVM: clear events pending from svm_complete_interrupts() when exiting to L1 (Vitaly Kuznetsov) [1692804]
+- [kvm] svm: Fix AVIC incomplete IPI emulation (Vitaly Kuznetsov) [1692804]
+- [kvm] svm: Add warning message for AVIC IPI invalid target (Vitaly Kuznetsov) [1692804]
+- [x86] KVM: x86: WARN_ONCE if sending a PV IPI returns a fatal error (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Fix PV IPIs for 32-bit KVM host (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: recommend using eVMCS only when it is enabled (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: don't recommend doing reset via synthetic MSR (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86/vmx: Use kzalloc for cached_vmcs12 (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Use the correct field var when clearing VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Fix single-step debugging (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: don't announce GUEST IDLE MSR support (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Don't generate UNDEF when LORegion feature is present (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic: Make vgic_cpu->ap_list_lock a raw_spinlock (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic: Make vgic_dist->lpi_list_lock a raw_spinlock (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic: Make vgic_irq->irq_lock a raw_spinlock (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: powerpc: remove -I. header search paths (Vitaly Kuznetsov) [1692804]
+- [documentation] Documentation/virtual/kvm: Update URL for AMD SEV API specification (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/VMX: Avoid return error when flush tlb successfully in the hv_remote_flush_tlb_with_range() (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: sev: Fail KVM_SEV_INIT if already initialized (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: validate userspace input in kvm_clear_dirty_log_protect() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Fix bit shifting in update_intel_pt_cfg (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: radix: Fix uninitialized var build error (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: ucall: fix exit mmio address guessing (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move VM-Enter + VM-Exit handling to non-inline sub-routines (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Explicitly reference RCX as the vmx_vcpu pointer in asm blobs (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/x86: Use SVM assembly instruction mnemonics instead of .byte streams (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/MMU: Flush tlb directly in the kvm_zap_gfn_range() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/MMU: Flush tlb directly in kvm_set_pte_rmapp() (Vitaly Kuznetsov) [1692804]
+- [virt] KVM/MMU: Move tlb flush in kvm_set_pte_rmapp() to kvm_mmu_notifier_change_pte() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: Make kvm_set_spte_hva() return int (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: Replace old tlb flush function with new one to flush a specified range. (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/MMU: Add tlb flush with range helper function (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/VMX: Add hv tlb range flush support (Vitaly Kuznetsov) [1692804]
+- [x86] x86/hyper-v: Add HvFlushGuestAddressList hypercall support (Vitaly Kuznetsov) [1692804]
+- [x86] KVM: Add tlb_remote_flush_with_range callback in kvm_x86_ops (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Disable Intel PT when VMXON in L1 guest (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Set intercept for Intel PT MSRs read/write (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Implement Intel PT MSRs read/write emulation (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Introduce a function to initialize the PT configuration (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Add Intel PT context switch for each vcpu (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Add Intel Processor Trace cpuid emulation (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Add Intel PT virtualization work mode (Vitaly Kuznetsov) [1692804]
+- [x86] perf/x86/intel/pt: add new capability for Intel PT (Vitaly Kuznetsov) [1692804]
+- [x86] perf/x86/intel/pt: Add new bit definitions for PT MSRs (Vitaly Kuznetsov) [1692804]
+- [x86] perf/x86/intel/pt: Introduce intel_pt_validate_cap() (Vitaly Kuznetsov) [1692804]
+- [x86] perf/x86/intel/pt: Export pt_cap_get() (Vitaly Kuznetsov) [1692804]
+- [x86] perf/x86/intel/pt: Move Intel PT MSRs bit defines to global header (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: aarch64: dirty_log_test: support greater than 40-bit IPAs (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: add pa-48/va-48 VM modes (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: dirty_log_test: improve mode param management (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: dirty_log_test: reset guest test phys offset (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: dirty_log_test: always use -t (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: dirty_log_test: don't identity map the test mem (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: x86_64: dirty_log_test: fix -t (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: fix some typos (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: convert to SPDX identifiers (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Remove KF() macro placeholder (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Allow guest read access to IA32_TSC (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: nVMX: NMI-window and interrupt-window exiting should wake L2 from HLT (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nSVM: Fix nested guest support for PAUSE filtering. (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Remove duplicated include from vmx.c (Vitaly Kuznetsov) [1692804]
+- [tools] selftests: kvm: report failed stage when exit reason is unexpected (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: fix size of x86_fpu_cache objects (Vitaly Kuznetsov) [1692804]
+- [kvm] powerpc/fsl: Flush branch predictor when entering KVM (Vitaly Kuznetsov) [1692804]
+- [kvm] powerpc/fsl: Emulate SPRN_BUCSR register (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: nSVM: fix switch to guest mmu (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Add trapped system register access tracepoint (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: arm64: Make vcpu const in vcpu_read_sys_reg (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: arch_timer: Simplify kvm_timer_vcpu_terminate (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Remove arch timer workqueue (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: fix unregistering coalesced mmio zone from wrong bus (Vitaly Kuznetsov) [1692804]
+- [arm64] KVM: arm64: Add support for creating PUD hugepages at stage 2 (Vitaly Kuznetsov) [1692804]
+- [arm64] KVM: arm64: Update age handlers to support PUD hugepages (Vitaly Kuznetsov) [1692804]
+- [arm64] KVM: arm64: Support handling access faults for PUD hugepages (Vitaly Kuznetsov) [1692804]
+- [arm64] KVM: arm64: Support PUD hugepage in stage2_is_exec() (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm64: Support dirty page tracking for PUD hugepages (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Introduce helpers to manipulate page table entries (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Re-factor setting the Stage 2 entry to exec on fault (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: Share common code in user_mem_abort() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: arm/arm64: Log PSTATE for unhandled sysregs (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Consistently advance singlestep when emulating instructions (Vitaly Kuznetsov) [1692804]
+- [virt] arm64: KVM: Skip MMIO insn after emulation (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Allow passthrough of an emulated device to an L3 guest (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S: Introduce new hcall H_COPY_TOFROM_GUEST to access quadrants 1 & 2 (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Allow passthrough of an emulated device to an L2 guest (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Update kvmppc_st and kvmppc_ld to use quadrants (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Add load_from_eaddr and store_to_eaddr to the kvmppc_ops struct (Vitaly Kuznetsov) [1692804]
+- [powerpc] KVM: PPC: Book3S HV: Implement functions to access quadrants 1 & 2 (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Add function kvmhv_vcpu_is_radix() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S: Only report KVM_CAP_SPAPR_TCE_VFIO on powernv machines (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: ucall: improve ucall placement in memory, fix unsigned comparison (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Dynamically allocate guest_fpu (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Use task structs fpu field for user (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Move the checks for Guest Non-Register States to a separate helper function (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Move the checks for Host Control Registers and MSRs to a separate helper function (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Move the checks for VM-Entry Control Fields to a separate helper function (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Move the checks for VM-Exit Control Fields to a separate helper function (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Remove param indirection from nested_vmx_check_msr_switch() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Move the checks for VM-Execution Control Fields to a separate helper function (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Prepend "nested_vmx_" to check_vmentry_{pre, post}reqs() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/VMX: Check ept_pointer before flushing ept tlb (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM nVMX: MSRs should not be stored if VM-entry fails during or after loading guest state (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Don't modify MSR_PLATFORM_INFO on vCPU reset (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: add cpu into VMX preemption timer bug list (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/hyper-v: Stop caring about EOI for direct stimers (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: avoid open-coding stimer_mark_pending() in kvm_hv_notify_acked_sint() (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: direct mode for synthetic timers (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvm/hyper-v: use stimer config definition from hyperv-tlfs.h (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: Add hyperv_cpuid test (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: implement an unchecked version of vcpu_ioctl() (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: Introduce KVM_GET_SUPPORTED_HV_CPUID (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/hyper-v: Do some housekeeping in hyperv-tlfs.h (Vitaly Kuznetsov) [1692804]
+- [x86] x86/hyper-v: Mark TLFS structures packed (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyper-v: Introduce nested_get_evmcs_version() helper (Vitaly Kuznetsov) [1692804]
+- [kvm] x86: kvm: hyperv: don't retry message delivery for periodic timers (Vitaly Kuznetsov) [1692804]
+- [kvm] x86: kvm: hyperv: simplify SynIC message delivery (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: remove unnecessary recalculate_apic_map (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: svm: remove unused struct definition (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Skip all SYSCALL MSRs in setup_msrs() when !EFER.SCE (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Don't set hardware IA32_CSTAR MSR on VM-entry (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Document the need for MSR_STAR in i386 builds (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Set IA32_TSC_AUX for legacy mode guests (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Move nested code to dedicated files (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Expose nested_vmx_allowed() to nested VMX as a non-inline (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Expose various getters and setters to nested VMX (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Expose misc variables needed for nested VMX (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Move "vmcs12 to shadow/evmcs sync" to helper function (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Call nested_vmx_setup_ctls_msrs() iff @nested is true (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Set callbacks for nested functions during hardware setup (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move the hardware {un}setup functions to the bottom (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: nVMX: Allow nested_enable_evmcs to be NULL (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move nested hardware/vcpu {un}setup to helper functions (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move VMX instruction wrappers to a dedicated header file (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move eVMCS code to dedicated files (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Add vmx.h to hold VMX definitions (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Move vmcs12 code to dedicated files (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move VMCS definitions to dedicated file (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Expose various module param vars via capabilities.h (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move capabilities structs and helpers to dedicated file (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Pass vmx_capability struct to setup_vmcs_config() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Properly handle dynamic VM Entry/Exit controls (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move caching of MSR_IA32_XSS to hardware_setup() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Drop the "vmx" prefix from vmx_evmcs.h (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: rename vmx_shadow_fields.h to vmcs_shadow_fields.h (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Move VMX specific files to a "vmx" subdirectory (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Add requisite includes to hyperv.h (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Add requisite includes to kvm_cache_regs.h (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: Alphabetize the includes in vmx.c (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Allocate and configure VM{READ, WRITE} bitmaps iff enable_shadow_vmcs (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: introduce manual dirty log reprotect (Vitaly Kuznetsov) [1692804]
+- [virt] kvm: rename last argument to kvm_get_dirty_log_protect (Vitaly Kuznetsov) [1692804]
+- [virt] kvm: make KVM_CAP_ENABLE_CAP_VM architecture agnostic (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S PR: Set hflag to indicate that POWER9 supports 1T segments (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Change to use DEFINE_SHOW_ATTRIBUTE macro (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: Don't trap host pointer auth use to EL2 (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64/kvm: hide ptrauth from guests (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: add pointer authentication register bits (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: add comments about EC exception levels (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64/kvm: consistently handle host HCR_EL2 flags (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: Add configuration/documentation for Cortex-A76 erratum 1165522 (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Handle ARM erratum 1165522 in TLB invalidation (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Add synchronization on translation regime change for erratum 1165522 (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: KVM: Force VHE for systems affected by erratum 1165522 (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: Add TCR_EPD{0,1} definitions (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm64: Rework detection of SVE, !VHE systems (Vitaly Kuznetsov) [1692804]
+- [kvm] nVMX x86: Check VMX-preemption timer controls on vmentry of L2 guests (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/nVMX: Remove unneeded forward jump in nested_vmx_check_vmentry_hw asm (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Unrestricted guest mode requires EPT (Vitaly Kuznetsov) [1692804]
+- [tools] tools/kvm_stat: switch to python3 (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: Trace changes to active TSC offset regardless if vCPU in guest-mode (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: vmcs12 revision_id is always VMCS12_REVISION even when copied from eVMCS (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Verify eVMCS revision id match supported eVMCS version on eVMCS VMPTRLD (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/vmx: fix old-style function declaration (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: fix empty-body warnings (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Fix kernel info-leak when enabling KVM_CAP_HYPERV_ENLIGHTENED_VMCS more than once (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm/arm64: vgic: Replace spin_is_locked() with lockdep (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Move and undef TRACE_INCLUDE_PATH/FILE (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Use exported tb_to_ns() function in decrementer emulation (Vitaly Kuznetsov) [1692804]
+- [tools] selftests: kvm: Fix -Wformat warnings (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient" (Vitaly Kuznetsov) [1692804]
+- [kvm] Revert "kvm: x86: optimize dr6 restore" (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Optimize clearing TCEs for sparse tables (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/nVMX: tweak shadow fields (Vitaly Kuznetsov) [1692804]
+- [tools] selftests/kvm: add missing executables to .gitignore (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Don't use streamlined entry path on early POWER9 chips (Vitaly Kuznetsov) [1692804]
+- [virt] arm/arm64: KVM: Enable 32 bits kvm vcpu events support (Vitaly Kuznetsov) [1692804]
+- [virt] arm/arm64: KVM: Rename function kvm_arch_dev_ioctl_check_extension() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: enable nested virtualization by default (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/x86: Use 32bit xor to clear registers in svm.c (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Introduce KVM_CAP_EXCEPTION_PAYLOAD (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: vmx: Defer setting of DR6 until #DB delivery (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Defer setting of CR2 until #PF delivery (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Add payload operands to kvm_multiple_exception (Vitaly Kuznetsov) [1692804]
+- [x86] kvm: x86: Add exception payload fields to kvm_vcpu_events (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: Add has_payload and payload to kvm_queued_exception (Vitaly Kuznetsov) [1692804]
+- [documentation] KVM: Documentation: Fix omission in struct kvm_vcpu_events (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: add Enlightened VMCS test (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/nVMX: nested state migration for Enlightened VMCS (Vitaly Kuznetsov) [1692804]
+- [tools] KVM: selftests: state_test: test bare VMXON migration (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/hyperv: don't clear VP assist pages on init (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: optimize prepare_vmcs02{, _full} for Enlightened VMCS case (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: implement enlightened VMPTRLD and VMCLEAR (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: add enlightened VMCS state (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: add KVM_CAP_HYPERV_ENLIGHTENED_VMCS capability (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: refactor evmcs_sanitize_exec_ctrls() (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: refine the comment of function gfn_to_hva_memslot_prot() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: reintroduce pte_list_remove, but including mmu_spte_clear_track_bits (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: rename pte_list_remove to __pte_list_remove (Vitaly Kuznetsov) [1692804]
+- [virt] kvm/x86 : add coalesced pio support (Vitaly Kuznetsov) [1692804]
+- [documentation] kvm/x86 : add document for coalesced mmio (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm/x86 : fix some typo (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/VMX: Change hv flush logic when ept tables are mismatched. (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/x86: Use 32bit xor to clear register (Vitaly Kuznetsov) [1692804]
+- [x86] KVM/x86: Use assembly instruction mnemonics instead of .byte streams (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/x86: Fix invvpid and invept register operand size in 64-bit mode (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu: check if MMU reconfiguration is needed in init_kvm_nested_mmu() (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu: check if tdp/shadow MMU reconfiguration is needed (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/nVMX: introduce source data cache for kvm_init_shadow_ept_mmu() (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu: make space for source data caching in struct kvm_mmu (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu: get rid of redundant kvm_mmu_setup() (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu: introduce guest_mmu (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu.c: add kvm_mmu parameter to kvm_mmu_free_roots() (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu.c: set get_pdptr hook in kvm_init_shadow_ept_mmu() (Vitaly Kuznetsov) [1692804]
+- [kvm] x86/kvm/mmu: make vcpu->mmu a pointer to the current MMU (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm: x86: optimize dr6 restore (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: hyperv: optimize sparse VP set processing (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: hyperv: fix 'tlb_lush' typo (Vitaly Kuznetsov) [1692804]
+- [virt] vgic: Add support for 52bit guest physical address (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: WARN if nested run hits VMFail with early consistency checks enabled (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: add option to perform early consistency checks via H/W (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: vmx: write HOST_IA32_EFER in vmx_set_constant_host_state() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: call kvm_skip_emulated_instruction in nested_vmx_{fail, succeed} (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: do not call nested_vmx_succeed() for consistency check VMExit (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: do not skip VMEnter instruction that succeeds (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: do early preparation of vmcs02 before check_vmentry_postreqs() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: initialize vmcs02 constant exactly once (per VMCS) (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: split pieces of prepare_vmcs02() to prepare_vmcs02_early() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: VMX: remove ASSERT() on vmx->pml_pg validity (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: vVMX: rename label for post-enter_guest_mode consistency check (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: assimilate nested_vmx_entry_failure() into nested_vmx_enter_non_root_mode() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: rename enter_vmx_non_root_mode to nested_vmx_enter_non_root_mode (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: try to set EFER bits correctly when initializing controls (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: vmx: do not unconditionally clear EFER switching (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: reset cache/shadows when switching loaded VMCS (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: use vm_exit_controls_init() to write exit controls for vmcs02 (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: move vmcs12 EPTP consistency check to check_vmentry_prereqs() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: move host EFER consistency checks to VMFail path (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: leverage change to adjust slots->used_slots in update_memslots() (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: hyperv: implement PV IPI send hypercalls (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: hyperv: optimize kvm_hv_flush_tlb() for vp_index == vcpu_idx case (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: hyperv: valid_bank_mask should be 'u64' (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: hyperv: keep track of mismatched VP indexes (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: x86: hyperv: optimize 'all cpus' case in kvm_hv_flush_tlb() (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm/x86: return meaningful value from KVM_SIGNAL_MSI (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: move definition PT_MAX_HUGEPAGE_LEVEL and KVM_NR_PAGE_SIZES together (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM/VMX: Remve unused function is_external_interrupt(). (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: x86: return 0 in case kvm_mmu_memory_cache has min number of objects (Vitaly Kuznetsov) [1692804]
+- [kvm] nVMX x86: Make nested_vmx_check_pml_controls() concise (Vitaly Kuznetsov) [1692804]
+- [x86] KVM: x86: adjust kvm_mmu_page member to save 8 bytes (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: support high GPAs in dirty_log_test (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: stop lying to aarch64 tests about PA-bits (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: dirty_log_test: also test 64K pages on aarch64 (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: port dirty_log_test to aarch64 (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: introduce new VM mode for 64K pages (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: add vcpu support for aarch64 (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: add virt mem support for aarch64 (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: add vm_phy_pages_alloc (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: tidy up kvm_util (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: add cscope make target (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: move arch-specific files to arch-specific locations (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: introduce ucall (Vitaly Kuznetsov) [1692804]
+- [tools] kvm: selftests: vcpu_setup: set cr4.osfxsr (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: LAPIC: Tune lapic_timer_advance_ns automatically (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Do not flush TLB on L1<->L2 transitions if L1 uses VPID and EPT (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Flush linear and combined mappings on VPID02 related flushes (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Use correct VPID02 when emulating L1 INVVPID (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: nVMX: Flush TLB entries tagged by dest EPTP on L1<->L2 transitions (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: vmx: rename KVM_GUEST_CR0_MASK tp KVM_VM_CR0_ALWAYS_OFF (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Remove redundand permission bits removal (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Propagate errors to the guest when failed instead of ignoring (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S HV: Provide mode where all vCPUs on a core must be the same VM (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Book3S PR: Exiting split hack mode needs to fixup both PC and LR (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Remove some extra semicolon in kvm_target_cpu (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: PPC: Validate all tces before updating tables (Vitaly Kuznetsov) [1692804]
+- [documentation] arm64: Add silicon-errata.txt entry for ARM erratum 1188873 (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: arch_timer: Add workaround for ARM erratum 1188873 (Vitaly Kuznetsov) [1692804]
+- [virt] signal/arm/kvm: Use send_sig_mceerr (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64/cpufeatures: Introduce ESR_ELx_SYS64_ISS_RT() (Vitaly Kuznetsov) [1692804]
+- [kvm] signal/x86: Use send_sig_mceerr as apropriate (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvm: Use __bss_decrypted attribute in shared variables (Vitaly Kuznetsov) [1692804]
+- [x86] x86/mm: Add .bss..decrypted section to hold shared variables (Vitaly Kuznetsov) [1692804]
+- [kvm] KVM: vmx: Inject #UD for SGX ENCLS instruction in guest (Vitaly Kuznetsov) [1692804]
+- [x86] KVM: vmx: Add defines for SGX ENCLS exiting (Vitaly Kuznetsov) [1692804]
+- [documentation] KVM: Documentation: rename the capability of KVM_CAP_ARM_SET_SERROR_ESR (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: Mark kvm_get_preset_lpj() as __init (Vitaly Kuznetsov) [1692804]
+- [virt] kvm: Don't open code task_pid in kvm_vcpu_ioctl (Vitaly Kuznetsov) [1692804]
+- [virt] KVM: arm64: Share the parts of get/set events useful to 32bit (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: export the capability to set guest SError syndrome (Vitaly Kuznetsov) [1692804]
+- [kvm] arm/arm64: KVM: Add KVM_GET/SET_VCPU_EVENTS (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: Switch kvmclock data to a PER_CPU variable (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: Move kvmclock vsyscall param and init to kvmclock (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: Mark variables __initdata and __ro_after_init (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: Cleanup the code (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: Decrapify kvm_register_clock() (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: Remove page size requirement from wall_clock (Vitaly Kuznetsov) [1692804]
+- [x86] x86/kvmclock: Remove memblock dependency (Vitaly Kuznetsov) [1692804]
+- [kvm] kvm/arm: use PSR_AA32 definitions (Vitaly Kuznetsov) [1692804]
+- [kvm] arm64: KVM: Handle Set/Way CMOs as NOPs if FWB is present (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: KVM: Add support for Stage-2 control of memory types and cacheability (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: Handle mismatched cache type (Vitaly Kuznetsov) [1692804]
+- [arm64] arm64: Fix mismatched cache line size detection (Vitaly Kuznetsov) [1692804]
+
+* Mon May 27 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-96.el8]
+- [lib] rhel-kabi: Add RH_KABI_FORCE_CHANGE() to radix-tree and idr functions (Don Dutile) [1692079]
+- [lib] XArray: Fix xa_reserve for 2-byte aligned entries (Don Dutile) [1692079]
+- [lib] XArray: Fix xa_erase of 2-byte aligned entries (Don Dutile) [1692079]
+- [lib] XArray: Use xa_cmpxchg to implement xa_reserve (Don Dutile) [1692079]
+- [lib] XArray: Fix xa_release in allocating arrays (Don Dutile) [1692079]
+- [lib] XArray: Mark xa_insert and xa_reserve as must_check (Don Dutile) [1692079]
+- [lib] XArray: Add cyclic allocation (Don Dutile) [1692079]
+- [lib] XArray: Redesign xa_alloc API (Don Dutile) [1692079]
+- [lib] XArray: Add support for 1s-based allocation (Don Dutile) [1692079]
+- [lib] XArray: Change xa_insert to return -EBUSY (Don Dutile) [1692079]
+- [lib] XArray: Update xa_erase family descriptions (Don Dutile) [1692079]
+- [lib] XArray tests: RCU lock prohibits GFP_KERNEL (Don Dutile) [1692079]
+- [include] XArray: Fix an arithmetic error in xa_is_err (Don Dutile) [1692079]
+- [lib] XArray tests: Check mark 2 gets squashed (Don Dutile) [1692079]
+- [include] XArray: Fix typo in comment (Don Dutile) [1692079]
+- [lib] XArray: Honour reserved entries in xa_insert (Don Dutile) [1692079]
+- [lib] XArray: Permit storing 2-byte-aligned pointers (Don Dutile) [1692079]
+- [lib] XArray: Change xa_for_each iterator (Don Dutile) [1692079]
+- [lib] XArray: Turn xa_init_flags into a static inline (Don Dutile) [1692079]
+- [lib] XArray tests: Add RCU locking (Don Dutile) [1692079]
+- [lib] XArray: Fix xa_alloc when id exceeds max (Don Dutile) [1692079]
+- [lib] XArray tests: Check iterating over multiorder entries (Don Dutile) [1692079]
+- [lib] XArray tests: Handle larger indices more elegantly (Don Dutile) [1692079]
+- [include] XArray: Add xa_cmpxchg_irq and xa_cmpxchg_bh (Don Dutile) [1692079]
+- [tools] radix tree: Don't return retry entries from lookup (Don Dutile) [1692079]
+- [lib] XArray tests: Add missing locking (Don Dutile) [1692079]
+- [lib] XArray tests: Correct some 64-bit assumptions (Don Dutile) [1692079]
+- [lib] XArray: Correct xa_store_range (Don Dutile) [1692079]
+- [lib] XArray: Fix Documentation (Don Dutile) [1692079]
+- [lib] XArray: Handle NULL pointers differently for allocation (Don Dutile) [1692079]
+- [lib] XArray: Unify xa_store and __xa_store (Don Dutile) [1692079]
+- [include] XArray: Add xa_store_bh() and xa_store_irq() (Don Dutile) [1692079]
+- [lib] XArray: Turn xa_erase into an exported function (Don Dutile) [1692079]
+- [lib] XArray: Unify xa_cmpxchg and __xa_cmpxchg (Don Dutile) [1692079]
+- [lib] XArray: Regularise xa_reserve (Don Dutile) [1692079]
+- [lib] XArray: Export __xa_foo to non-GPL modules (Don Dutile) [1692079]
+- [lib] XArray: Fix xa_for_each with a single element at 0 (Don Dutile) [1692079]
+- [lib] xarray: Add range store functionality (Don Dutile) [1692079]
+- [lib] xarray: Move multiorder_check to in-kernel tests (Don Dutile) [1692079]
+- [lib] xarray: Move multiorder_shrink to kernel tests (Don Dutile) [1692079]
+- [lib] xarray: Move multiorder account test in-kernel (Don Dutile) [1692079]
+- [tools] radix tree test suite: Convert iteration test to XArray (Don Dutile) [1692079]
+- [tools] radix tree test suite: Convert tag_tagged_items to XArray (Don Dutile) [1692079]
+- [tools] radix tree test suite: Convert regression1 to XArray (Don Dutile) [1692079]
+- [lib] ida: Convert to XArray (Don Dutile) [1692079]
+- [lib] xarray: Track free entries in an XArray (Don Dutile) [1692079]
+- [lib] xarray: Add xa_reserve and xa_release (Don Dutile) [1692079]
+- [lib] xarray: Add xas_create_range (Don Dutile) [1692079]
+- [lib] xarray: Add xas_for_each_conflict (Don Dutile) [1692079]
+- [lib] xarray: Step through an XArray (Don Dutile) [1692079]
+- [lib] xarray: Destroy an XArray (Don Dutile) [1692079]
+- [lib] xarray: Extract entries from an XArray (Don Dutile) [1692079]
+- [lib] xarray: Add XArray iterators (Don Dutile) [1692079]
+- [lib] xarray: Add XArray conditional store operations (Don Dutile) [1692079]
+- [tools] xarray: Add XArray unconditional store operations (Don Dutile) [1692079]
+- [tools] xarray: Add XArray marks (Don Dutile) [1692079]
+- [tools] xarray: Add XArray load operation (Don Dutile) [1692079]
+- [documentation] xarray: Add documentation (Don Dutile) [1692079]
+- [include] xarray: Define struct xa_node (Don Dutile) [1692079]
+- [tools] xarray: Add definition of struct xarray (Don Dutile) [1692079]
+- [lib] test_ida: Fix lockdep warning (Don Dutile) [1692079]
+- [lib] xarray: Change definition of sibling entries (Don Dutile) [1692079]
+- [mm] xarray: Replace exceptional entries (Don Dutile) [1692079]
+- [lib] idr: Permit any valid kernel pointer to be stored (Don Dutile) [1692079]
+- [pci] Update email address (Don Dutile) [1692079]
+- [lib] ida: Change ida_get_new_above to return the id (Don Dutile) [1692079]
+- [lib] ida: Remove old API (Don Dutile) [1692079]
+- [target] target/iscsi: Allocate session IDs from an IDA (Don Dutile) [1692079]
+- [target] iscsi target: fix session creation failure handling (Don Dutile) [1692079]
+- [drm] drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's (Don Dutile) [1692079]
+- [drm] drm/vmwgfx: Convert to new IDA API (Don Dutile) [1692079]
+- [dma] dmaengine: Convert to new IDA API (Don Dutile) [1692079]
+- [powerpc] ppc: Convert vas ID allocation to new IDA API (Don Dutile) [1692079]
+- [media] media: Convert entity ID allocation to new IDA API (Don Dutile) [1692079]
+- [mm] ppc: Convert mmu context allocation to new IDA API (Don Dutile) [1692079]
+- [net] Convert net_namespace to new IDA API (Don Dutile) [1692079]
+- [misc] cb710: Convert to new IDA API (Don Dutile) [1692079]
+- [block] rsxx: Convert to new IDA API (Don Dutile) [1692079]
+- [scsi] osd: Convert to new IDA API (Don Dutile) [1692079]
+- [scsi] sd: Convert to new IDA API (Don Dutile) [1692079]
+- [fs] devpts: Convert to new IDA API (Don Dutile) [1692079]
+- [fs] fs: Convert namespace IDAs to new API (Don Dutile) [1692079]
+- [fs] fs: Convert unnamed_dev_ida to new API (Don Dutile) [1692079]
+- [lib] test_ida: check_ida_destroy and check_ida_alloc (Don Dutile) [1692079]
+- [lib] test_ida: Convert check_ida_conv to new API (Don Dutile) [1692079]
+- [lib] test_ida: Move ida_check_max (Don Dutile) [1692079]
+- [lib] test_ida: Move ida_check_leaf (Don Dutile) [1692079]
+- [tools] idr-test: Convert ida_check_nomem to new API (Don Dutile) [1692079]
+- [tools] ida: Start new test_ida module (Don Dutile) [1692079]
+- [lib] ida: Lock the IDA in ida_destroy (Don Dutile) [1692079]
+- [lib] radix-tree: Fix UBSAN warning (Don Dutile) [1692079]
+- [include] rh_kabi: Indirect EXTEND macros so nesting of other macros will resolve. (Don Dutile) [1692079]
+- [s390] s390/pkey: add one more argument space for debug feature entry (Philipp Rudo) [1710033]
+- [s390] s390/zcrypt: fix possible deadlock situation on ap queue remove (Philipp Rudo) [1710033]
+- [s390] zcrypt: handle AP Info notification from CHSC SEI command (Philipp Rudo) [1710033]
+- [s390] s390/zcrypt: revisit ap device remove procedure (Philipp Rudo) [1710033]
+- [s390] pkey: Indicate old mkvp only if old and current mkvp are different (Philipp Rudo) [1710033]
+- [s390] s390/zcrypt: use new state UNBOUND during queue driver rebind (Philipp Rudo) [1710033]
+- [s390] s390/zcrypt: fix specification exception on z196 during ap probe (Philipp Rudo) [1710033]
+- [s390] s390/zcrypt: rework ap scan bus code (Philipp Rudo) [1710033]
+- [s390] s390/zcrypt: make sysfs reset attribute trigger queue reset (Philipp Rudo) [1710033]
+- [s390] s390/zcrypt: improve special ap message cmd handling (Philipp Rudo) [1710033]
+- [s390] s390: vfio-ap: include <asm/facility> for test_facility() (Philipp Rudo) [1710033]
+- [fs] flexfiles: enforce per-mirror stateid only for v4 DSes (Scott Mayhew) [1709556]
+- [fs] flexfiles: use per-mirror specified stateid for IO (Scott Mayhew) [1709556]
+- [powerpc] powerpc/pseries: Fix build break due to pnv_npu2_init() (Sam Bobroff) [1704567]
+- [powerpc] powerpc/powernv/sriov: Register IOMMU groups for VFs (Sam Bobroff) [1704567]
+- [powerpc] powerpc/powernv/npu: Allocate enough memory in pnv_try_setup_npu_table_group() (Sam Bobroff) [1704567]
+- [powerpc] powerpc/powernv/npu: Fix oops in pnv_try_setup_npu_table_group() (Sam Bobroff) [1704567]
+- [mm] mm: defer ZONE_DEVICE page initialization to the point where we init pgmap (Waiman Long) [1666538 1634343]
+- [mm] mm: create non-atomic version of SetPageReserved for init use (Waiman Long) [1666538 1634343]
+- [mm] mm: provide kernel parameter to allow disabling page init poisoning (Waiman Long) [1666538 1634343]
+- [x86] x86/resctrl: Initialize a new resource group with default MBA values (David Arcari) [1688127]
+- [x86] x86/resctrl: Move per RDT domain initialization to a separate function (David Arcari) [1688127]
+- [x86] x86/resctrl: Do not repeat rdtgroup mode initialization (David Arcari) [1688127]
+- [x86] x86/resctrl: Fix rdt_find_domain() return value and checks (David Arcari) [1688127]
+- [x86] x86/resctrl: Use rdt_last_cmd_puts() where possible (David Arcari) [1688127]
+
+* Fri May 24 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-95.el8]
+- [s390] s390/pci: map IOV resources (Philipp Rudo) [1659411]
+- [powerpc] powerpc/book3s/64: check for NULL pointer in pgd_alloc() (Steve Best) [1710310]
+- [md] dm thin metadata: do not write metadata if no changes occurred (Mike Snitzer) [1710030]
+- [md] dm thin metadata: add wrappers for managing write locking of metadata (Mike Snitzer) [1710030]
+- [md] dm thin metadata: check __commit_transaction()'s return (Mike Snitzer) [1710030]
+- [md] dm space map common: zero entire ll_disk (Mike Snitzer) [1710030]
+- [powerpc] powerpc/tm: Fix stack pointer corruption (Desnes Augusto Nunes do Rosario) [1707635]
+- [pci] PCI/MSI: Remove obsolete sanity checks for multiple interrupt sets (Prarit Bhargava) [1686678]
+- [kernel] genirq/affinity: Remove the leftovers of the original set support (Prarit Bhargava) [1686678]
+- [nvme] nvme-pci: Simplify interrupt allocation (Prarit Bhargava) [1686678]
+- [include] genirq/affinity: Add new callback for (re)calculating interrupt sets (Prarit Bhargava) [1686678]
+- [nvme] genirq/affinity: Store interrupt sets size in struct irq_affinity (Prarit Bhargava) [1686678]
+- [kernel] genirq/affinity: Code consolidation (Prarit Bhargava) [1686678]
+- [kernel] genirq/affinity: Move allocation of 'node_to_cpumask' to irq_build_affinity_masks() (Prarit Bhargava) [1686678]
+- [kernel] genirq/irqdesc: Fix double increment in alloc_descs() (Prarit Bhargava) [1686678]
+- [include] genirq: Fix the kerneldoc comment for struct irq_affinity_desc (Prarit Bhargava) [1686678]
+- [kernel] genirq/affinity: Add is_managed to struct irq_affinity_desc (Prarit Bhargava) [1686678]
+- [kernel] genirq/core: Introduce struct irq_affinity_desc (Prarit Bhargava) [1686678]
+- [kernel] genirq/affinity: Remove excess indentation (Prarit Bhargava) [1686678]
+
+* Thu May 23 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-94.el8]
+- [md] dm: make sure to obey max_io_len_target_boundary (Mike Snitzer) [1712607]
+
+* Wed May 22 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-93.el8]
+- [mm] x86/dump_pagetables: Fix LDT remap address marker (Baoquan He) [1639560]
+- [x86] x86/mm: Fix guard hole handling (Baoquan He) [1639560]
+- [x86] x86/mm: Move LDT remap out of KASLR region on 5-level paging (Baoquan He) [1639560]
+- [x86] x86/ldt: Define LDT_END_ADDR (Baoquan He) [1639560]
+- [mm] x86/ldt: Reserve address-space range on 32 bit for the LDT (Baoquan He) [1639560]
+- [documentation] x86/mm/doc: Enhance the x86-64 virtual memory layout descriptions (Baoquan He) [1639560]
+- [documentation] x86/mm/doc: Clean up the x86-64 virtual memory layout descriptions (Baoquan He) [1639560]
+- [fs] cifs: fix page reference leak with readv/writev (Leif Sahlberg) [1708033]
+- [fs] cifs: do not attempt cifs operation on smb2+ rename error (Leif Sahlberg) [1708033]
+- [fs] cifs: fix memory leak in SMB2_read (Leif Sahlberg) [1708033]
+- [fs] CIFS: keep FileInfo handle live during oplock break (Leif Sahlberg) [1708033]
+- [fs] cifs: fix handle leak in smb2_query_symlink() (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix lease buffer length error (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix use-after-free in SMB2_read (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix use-after-free in SMB2_write (Leif Sahlberg) [1708033]
+- [fs] cifs: a smb2_validate_and_copy_iov failure does not mean the handle is invalid. (Leif Sahlberg) [1708033]
+- [fs] SMB3: Allow persistent handle timeout to be configurable on mount (Leif Sahlberg) [1708033]
+- [fs] smb3: Fix enumerating snapshots to Azure (Leif Sahlberg) [1708033]
+- [fs] cifs: fix kref underflow in close_shroot() (Leif Sahlberg) [1708033]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1708033]
+- [fs] SMB3: Fix SMB3.1.1 guest mounts to Samba (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix slab-out-of-bounds when tracing SMB tcon (Leif Sahlberg) [1708033]
+- [fs] cifs: allow guest mounts to work for smb3.11 (Leif Sahlberg) [1708033]
+- [fs] fix incorrect error code mapping for OBJECTID_NOT_FOUND (Leif Sahlberg) [1708033]
+- [fs] cifs: fix that return -EINVAL when do dedupe operation (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix an issue with re-sending rdata when transport returning -EAGAIN (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix an issue with re-sending wdata when transport returning -EAGAIN (Leif Sahlberg) [1708033]
+- [fs] CIFS: fix POSIX lock leak and invalid ptr deref (Leif Sahlberg) [1708033]
+- [fs] SMB3: Allow SMB3 FSCTL queries to be sent to server from tools (Leif Sahlberg) [1708033]
+- [fs] cifs: fix incorrect handling of smb2_set_sparse() return in smb3_simple_falloc (Leif Sahlberg) [1708033]
+- [fs] smb2: fix typo in definition of a few error flags (Leif Sahlberg) [1708033]
+- [fs] CIFS: make mknod() an smb_version_op (Leif Sahlberg) [1708033]
+- [documentation] cifs: minor documentation updates (Leif Sahlberg) [1708033]
+- [documentation] cifs: minor updates to documentation (Leif Sahlberg) [1708033]
+- [fs] cifs: remove unused value pointed out by Coverity (Leif Sahlberg) [1708033]
+- [fs] SMB3: passthru query info doesn't check for SMB3 FSCTL passthru (Leif Sahlberg) [1708033]
+- [fs] smb3: add dynamic tracepoints for simple fallocate and zero range (Leif Sahlberg) [1708033]
+- [fs] cifs: fix smb3_zero_range so it can expand the file-size when required (Leif Sahlberg) [1708033]
+- [fs] cifs: add SMB2_ioctl_init/free helpers to be used with compounding (Leif Sahlberg) [1708033]
+- [fs] smb3: Add dynamic trace points for various compounded smb3 ops (Leif Sahlberg) [1708033]
+- [fs] cifs: cache FILE_ALL_INFO for the shared root handle (Leif Sahlberg) [1708033]
+- [fs] smb3: display volume serial number for shares in /proc/fs/cifs/DebugData (Leif Sahlberg) [1708033]
+- [fs] cifs: simplify how we handle credits in compound_send_recv() (Leif Sahlberg) [1708033]
+- [fs] smb3: add dynamic tracepoint for timeout waiting for credits (Leif Sahlberg) [1708033]
+- [fs] smb3: display security information in /proc/fs/cifs/DebugData more accurately (Leif Sahlberg) [1708033]
+- [fs] cifs: add a timeout argument to wait_for_free_credits (Leif Sahlberg) [1708033]
+- [fs] cifs: prevent starvation in wait_for_free_credits for multi-credit requests (Leif Sahlberg) [1708033]
+- [fs] cifs: wait_for_free_credits() make it possible to wait for >=1 credits (Leif Sahlberg) [1708033]
+- [fs] cifs: pass flags down into wait_for_free_credits() (Leif Sahlberg) [1708033]
+- [fs] cifs: change wait_for_free_request() to take flags as argument (Leif Sahlberg) [1708033]
+- [fs] fs: cifs: Kconfig: pedantic formatting (Leif Sahlberg) [1708033]
+- [fs] smb3: request more credits on normal (non-large read/write) ops (Leif Sahlberg) [1708033]
+- [fs] CIFS: Return -EAGAIN instead of -ENOTSOCK (Leif Sahlberg) [1708033]
+- [fs] CIFS: Only send SMB2_NEGOTIATE command on new TCP connections (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix read after write for files with read caching (Leif Sahlberg) [1708033]
+- [fs] smb3: for kerberos mounts display the credential uid used (Leif Sahlberg) [1708033]
+- [fs] cifs: use correct format characters (Leif Sahlberg) [1708033]
+- [fs] smb3: add dynamic trace point for query_info_enter/done (Leif Sahlberg) [1708033]
+- [fs] smb3: add dynamic trace point for smb3_cmd_enter (Leif Sahlberg) [1708033]
+- [fs] smb3: improve dynamic tracing of open and posix mkdir (Leif Sahlberg) [1708033]
+- [fs] smb3: add missing read completion trace point (Leif Sahlberg) [1708033]
+- [fs] smb3: Add tracepoints for read, write and query_dir enter (Leif Sahlberg) [1708033]
+- [fs] smb3: add tracepoints for query dir (Leif Sahlberg) [1708033]
+- [fs] smb3: Update POSIX negotiate context with POSIX ctxt GUID (Leif Sahlberg) [1708033]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1708033]
+- [fs] CIFS: Try to acquire credits at once for compound requests (Leif Sahlberg) [1708033]
+- [fs] CIFS: Return error code when getting file handle for writeback (Leif Sahlberg) [1708033]
+- [fs] CIFS: Move open file handling to writepages (Leif Sahlberg) [1708033]
+- [fs] CIFS: Move unlocking pages from wdata_send_pages() (Leif Sahlberg) [1708033]
+- [fs] CIFS: Find and reopen a file before get MTU credits in writepages (Leif Sahlberg) [1708033]
+- [fs] CIFS: Reopen file before get SMB2 MTU credits for async IO (Leif Sahlberg) [1708033]
+- [fs] CIFS: Remove custom credit adjustments for SMB2 async IO (Leif Sahlberg) [1708033]
+- [fs] CIFS: Adjust MTU credits before reopening a file (Leif Sahlberg) [1708033]
+- [fs] CIFS: Check for reconnects before sending compound requests (Leif Sahlberg) [1708033]
+- [fs] CIFS: Check for reconnects before sending async requests (Leif Sahlberg) [1708033]
+- [fs] CIFS: Respect reconnect in non-MTU credits calculations (Leif Sahlberg) [1708033]
+- [fs] CIFS: Respect reconnect in MTU credits calculations (Leif Sahlberg) [1708033]
+- [fs] CIFS: Set reconnect instance to one initially (Leif Sahlberg) [1708033]
+- [fs] CIFS: Respect SMB2 hdr preamble size in read responses (Leif Sahlberg) [1708033]
+- [fs] CIFS: Count SMB3 credits for malformed pending responses (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not log credits when unmounting a share (Leif Sahlberg) [1708033]
+- [fs] CIFS: Always reset read error to -EIO if no response (Leif Sahlberg) [1708033]
+- [fs] cifs: Accept validate negotiate if server return NT_STATUS_NOT_SUPPORTED (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not skip SMB2 message IDs on send failures (Leif Sahlberg) [1708033]
+- [fs] smb3: request more credits on tree connect (Leif Sahlberg) [1708033]
+- [fs] smb3: make default i/o size for smb3 mounts larger (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not reset lease state to NONE on lease break (Leif Sahlberg) [1708033]
+- [fs] smb3: fix bytes_read statistics (Leif Sahlberg) [1708033]
+- [fs] cifs: return -ENODATA when deleting an xattr that does not exist (Leif Sahlberg) [1708033]
+- [fs] cifs: add credits from unmatched responses/messages (Leif Sahlberg) [1708033]
+- [fs] cifs: replace snprintf with scnprintf (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix NULL pointer dereference of devname (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix leaking locked VFS cache pages in writeback retry (Leif Sahlberg) [1708033]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1708033]
+- [fs] CIFS: fix use-after-free of the lease keys (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not consider -ENODATA as stat failure for reads (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not count -ENODATA as failure for query directory (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix trace command logging for SMB2 reads and writes (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix possible oops and memory leaks in async IO (Leif Sahlberg) [1708033]
+- [fs] cifs: limit amount of data we request for xattrs to CIFSMaxBufSize (Leif Sahlberg) [1708033]
+- [fs] cifs: fix computation for MAX_SMB2_HDR_SIZE (Leif Sahlberg) [1708033]
+- [fs] cifs: print CIFSMaxBufSize as part of /proc/fs/cifs/DebugData (Leif Sahlberg) [1708033]
+- [fs] smb3: add credits we receive from oplock/break PDUs (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix mounts if the client is low on credits (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not assume one credit for async responses (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix credit calculations in compound mid callback (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix credit calculation for encrypted reads with errors (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix credits calculations for reads with errors (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not reconnect TCP session in add_credits() (Leif Sahlberg) [1708033]
+- [fs] smb3: Cleanup license mess (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix possible hang during async MTU reads and writes (Leif Sahlberg) [1708033]
+- [fs] cifs: fix memory leak of an allocated cifs_ntsd structure (Leif Sahlberg) [1708033]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix error paths in writeback code (Leif Sahlberg) [1708033]
+- [fs] CIFS: Move credit processing to mid callbacks for SMB3 (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix credits calculation for cancelled requests (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix potential OOB access of lock element array (Leif Sahlberg) [1708033]
+- [fs] cifs: Limit memory used by lock request calls to a page (Leif Sahlberg) [1708033]
+- [fs] cifs: move large array from stack to heap (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not hide EINTR after sending network packets (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix credit computation for compounded requests (Leif Sahlberg) [1708033]
+- [fs] CIFS: Do not set credits to 1 if the server didn't grant anything (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix adjustment of credits for MTU requests (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix a tiny potential memory leak (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix a debug message (Leif Sahlberg) [1708033]
+- [fs] smb3: add smb3.1.1 to default dialect list (Leif Sahlberg) [1708033]
+- [fs] cifs: fix confusing warning message on reconnect (Leif Sahlberg) [1708033]
+- [fs] smb3: fix large reads on encrypted connections (Leif Sahlberg) [1708033]
+- [fs] cifs: update internal module version number (Leif Sahlberg) [1708033]
+- [fs] cifs: we can not use small padding iovs together with encryption (Leif Sahlberg) [1708033]
+- [fs] cifs: Minor Kconfig clarification (Leif Sahlberg) [1708033]
+- [fs] cifs: Always resolve hostname before reconnecting (Leif Sahlberg) [1708033]
+- [fs] cifs: Add support for failover in cifs_reconnect_tcon() (Leif Sahlberg) [1708033]
+- [fs] cifs: Add support for failover in smb2_reconnect() (Leif Sahlberg) [1708033]
+- [fs] cifs: Only free DFS target list if we actually got one (Leif Sahlberg) [1708033]
+- [fs] cifs: start DFS cache refresher in cifs_mount() (Leif Sahlberg) [1708033]
+- [fs] cifs: Use GFP_ATOMIC when a lock is held in cifs_mount() (Leif Sahlberg) [1708033]
+- [fs] cifs: Add support for failover in cifs_reconnect() (Leif Sahlberg) [1708033]
+- [fs] cifs: Add support for failover in cifs_mount() (Leif Sahlberg) [1708033]
+- [fs] cifs: remove set but not used variable 'sep' (Leif Sahlberg) [1708033]
+- [fs] cifs: Make use of DFS cache to get new DFS referrals (Leif Sahlberg) [1708033]
+- [fs] cifs: check kzalloc return (Leif Sahlberg) [1708033]
+- [fs] cifs: remove set but not used variable 'server' (Leif Sahlberg) [1708033]
+- [fs] cifs: Use kzfree() to free password (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix to use kmem_cache_free() instead of kfree() (Leif Sahlberg) [1708033]
+- [fs] cifs: update for current_kernel_time64() removal (Leif Sahlberg) [1708033]
+- [fs] cifs: Add DFS cache routines (Leif Sahlberg) [1708033]
+- [fs] cifs: Save TTL value when parsing DFS referrals (Leif Sahlberg) [1708033]
+- [fs] cifs: auto disable 'serverino' in dfs mounts (Leif Sahlberg) [1708033]
+- [fs] cifs: Make devname param optional in cifs_compose_mount_options() (Leif Sahlberg) [1708033]
+- [fs] cifs: Skip any trailing backslashes from UNC (Leif Sahlberg) [1708033]
+- [fs] cifs: Refactor out cifs_mount() (Leif Sahlberg) [1708033]
+- [fs] CIFS: Fix error mapping for SMB2_LOCK command which caused OFD lock problem (Leif Sahlberg) [1708033]
+- [fs] CIFS: return correct errors when pinning memory failed for direct I/O (Leif Sahlberg) [1708033]
+- [fs] CIFS: use the correct length when pinning memory for direct I/O for write (Leif Sahlberg) [1708033]
+- [fs] cifs: check ntwrk_buf_start for NULL before dereferencing it (Leif Sahlberg) [1708033]
+- [fs] cifs: remove coverity warning in calc_lanman_hash (Leif Sahlberg) [1708033]
+- [fs] cifs: remove set but not used variable 'smb_buf' (Leif Sahlberg) [1708033]
+- [fs] cifs: suppress some implicit-fallthrough warnings (Leif Sahlberg) [1708033]
+- [fs] cifs: change smb2_query_eas to use the compound query-info helper (Leif Sahlberg) [1708033]
+- [fs] Add vers=3.0.2 as a valid option for SMBv3.0.2 (Leif Sahlberg) [1708033]
+- [fs] cifs: create a helper function for compound query_info (Leif Sahlberg) [1708033]
+- [fs] cifs: address trivial coverity warning (Leif Sahlberg) [1708033]
+- [fs] cifs: smb2 commands can not be negative, remove confusing check (Leif Sahlberg) [1708033]
+- [fs] cifs: use a compound for setting an xattr (Leif Sahlberg) [1708033]
+- [fs] cifs: clean up indentation, replace spaces with tab (Leif Sahlberg) [1708033]
+- [fs] smb3: Fix rmdir compounding regression to strict servers (Leif Sahlberg) [1708033]
+- [fs] CIFS: Avoid returning EBUSY to upper layer VFS (Leif Sahlberg) [1708033]
+- [fs] cifs: Fix separator when building path from dentry (Leif Sahlberg) [1708033]
+- [fs] cifs: In Kconfig CONFIG_CIFS_POSIX needs depends on legacy (insecure cifs) (Leif Sahlberg) [1708033]
+- [fs] cifs: fix signed/unsigned mismatch on aio_read patch (Leif Sahlberg) [1708033]
+- [fs] cifs: don't dereference smb_file_target before null check (Leif Sahlberg) [1708033]
+- [fs] CIFS: Add direct I/O functions to file_operations (Leif Sahlberg) [1708033]
+- [fs] CIFS: Add support for direct I/O write (Leif Sahlberg) [1708033]
+- [fs] CIFS: Add support for direct I/O read (Leif Sahlberg) [1708033]
+- [fs] smb3: missing defines and structs for reparse point handling (Leif Sahlberg) [1708033]
+- [fs] smb3: allow more detailed protocol info on open files for debugging (Leif Sahlberg) [1708033]
+- [fs] smb3: on kerberos mount if server doesn't specify auth type use krb5 (Leif Sahlberg) [1708033]
+- [fs] smb3: add trace point for tree connection (Leif Sahlberg) [1708033]
+- [fs] cifs: fix spelling mistake, EACCESS -> EACCES (Leif Sahlberg) [1708033]
+- [fs] cifs: fix return value for cifs_listxattr (Leif Sahlberg) [1708033]
+- [fs] cifs: update internal module version number for cifs.ko to 2.14 (Leif Sahlberg) [1708033]
+- [fs] smb3: add debug for unexpected mid cancellation (Leif Sahlberg) [1708033]
+- [fs] cifs: allow calling SMB2_xxx_free(NULL) (Leif Sahlberg) [1708033]
+- [fs] smb3 - clean up debug output displaying network interfaces (Leif Sahlberg) [1708033]
+- [fs] smb3: show number of current open files in /proc/fs/cifs/Stats (Leif Sahlberg) [1708033]
+- [fs] cifs: add support for ioctl on directories (Leif Sahlberg) [1708033]
+- [fs] cifs: fallback to older infolevels on findfirst queryinfo retry (Leif Sahlberg) [1708033]
+- [fs] smb3: do not attempt cifs operation in smb3 query info error path (Leif Sahlberg) [1708033]
+- [fs] smb3: send backup intent on compounded query info (Leif Sahlberg) [1708033]
+- [fs] cifs: track writepages in vfs operation counters (Leif Sahlberg) [1708033]
+- [fs] smb2: fix uninitialized variable bug in smb2_ioctl_query_info (Leif Sahlberg) [1708033]
+- [fs] cifs: add IOCTL for QUERY_INFO passthrough to userspace (Leif Sahlberg) [1708033]
+- [fs] cifs: minor clarification in comments (Leif Sahlberg) [1708033]
+- [fs] CIFS: Print message when attempting a mount (Leif Sahlberg) [1708033]
+- [fs] CIFS: Adds information-level logging function (Leif Sahlberg) [1708033]
+- [fs] cifs: OFD locks do not conflict with eachothers (Leif Sahlberg) [1708033]
+- [fs] CIFS: SMBD: Do not call ib_dereg_mr on invalidated memory registration (Leif Sahlberg) [1708033]
+- [fs] CIFS: pass page offsets on SMB1 read/write (Leif Sahlberg) [1708033]
+- [fs] fs/cifs: fix uninitialised variable warnings (Leif Sahlberg) [1708033]
+- [fs] smb3: add tracepoint for sending lease break responses to server (Leif Sahlberg) [1708033]
+- [fs] cifs: do not return atime less than mtime (Leif Sahlberg) [1708033]
+- [fs] smb3: update default requested iosize to 4MB from 1MB for recent dialects (Leif Sahlberg) [1708033]
+- [fs] smb3: Add debug message later in smb2/smb3 reconnect path (Leif Sahlberg) [1708033]
+- [fs] CIFS: make 'nodfs' mount opt a superblock flag (Leif Sahlberg) [1708033]
+- [fs] smb3: track the instance of each session for debugging (Leif Sahlberg) [1708033]
+- [fs] smb3: minor missing defines relating to reparse points (Leif Sahlberg) [1708033]
+- [fs] smb3: add way to control slow response threshold for logging and stats (Leif Sahlberg) [1708033]
+- [fs] cifs: minor updates to module description for cifs.ko (Leif Sahlberg) [1708033]
+- [fs] cifs: protect against server returning invalid file system block size (Leif Sahlberg) [1708033]
+- [fs] smb3: allow stats which track session and share reconnects to be reset (Leif Sahlberg) [1708033]
+- [fs] SMB3: Backup intent flag missing from compounded ops (Leif Sahlberg) [1708033]
+- [fs] cifs: create a define for the max number of iov we need for a SMB2 set_info (Leif Sahlberg) [1708033]
+- [fs] cifs: change SMB2_OP_RENAME and SMB2_OP_HARDLINK to use compounding (Leif Sahlberg) [1708033]
+- [fs] cifs: remove the is_falloc argument to SMB2_set_eof (Leif Sahlberg) [1708033]
+- [fs] cifs: change SMB2_OP_SET_INFO to use compounding (Leif Sahlberg) [1708033]
+- [fs] cifs: change SMB2_OP_SET_EOF to use compounding (Leif Sahlberg) [1708033]
+- [fs] cifs: make rmdir() use compounding (Leif Sahlberg) [1708033]
+- [fs] cifs: create helpers for SMB2_set_info_init/free() (Leif Sahlberg) [1708033]
+- [fs] cifs: change unlink to use a compound (Leif Sahlberg) [1708033]
+- [fs] cifs: change mkdir to use a compound (Leif Sahlberg) [1708033]
+- [fs] cifs: add a smb2_compound_op and change QUERY_INFO to use it (Leif Sahlberg) [1708033]
+- [fs] cifs: fix a credits leak for compund commands (Leif Sahlberg) [1708033]
+- [fs] smb3: add tracepoint to catch cases where credit refund of failed op overlaps reconnect (Leif Sahlberg) [1708033]
+- [fs] cifs: remove set but not used variable 'cifs_sb' (Leif Sahlberg) [1708033]
+- [fs] cifs: Use kmemdup rather than duplicating its implementation in smb311_posix_mkdir() (Leif Sahlberg) [1708033]
+- [fs] smb3: do not display confusing message on mount to Azure servers (Leif Sahlberg) [1708033]
+- [fs] smb3: fix lease break problem introduced by compounding (Leif Sahlberg) [1708033]
+- [fs] cifs: only wake the thread for the very last PDU in a compound (Leif Sahlberg) [1708033]
+- [fs] cifs: add a warning if we try to to dequeue a deleted mid (Leif Sahlberg) [1708033]
+- [fs] smb2: fix missing files in root share directory listing (Leif Sahlberg) [1708033]
+- [fs] cifs: read overflow in is_valid_oplock_break() (Leif Sahlberg) [1708033]
+- [fs] cifs: integer overflow in in SMB2_ioctl() (Leif Sahlberg) [1708033]
+- [fs] CIFS: fix wrapping bugs in num_entries() (Leif Sahlberg) [1708033]
+- [fs] cifs: prevent integer overflow in nxt_dir_entry() (Leif Sahlberg) [1708033]
+- [fs] fs/cifs: suppress a string overflow warning (Leif Sahlberg) [1708033]
+- [fs] cifs: connect to servername instead of IP for IPC$ share (Leif Sahlberg) [1708033]
+- [fs] smb3: check for and properly advertise directory lease support (Leif Sahlberg) [1708033]
+- [fs] smb3: minor debugging clarifications in rfc1001 len processing (Leif Sahlberg) [1708033]
+- [fs] SMB3: Backup intent flag missing for directory opens with backupuid mounts (Leif Sahlberg) [1708033]
+- [fs] fs/cifs: don't translate SFM_SLASH (U+F026) to backslash (Leif Sahlberg) [1708033]
+- [fs] cifs: update internal module version number for cifs.ko to 2.12 (Leif Sahlberg) [1708033]
+- [fs] cifs: check kmalloc before use (Leif Sahlberg) [1708033]
+- [fs] cifs: check if SMB2 PDU size has been padded and suppress the warning (Leif Sahlberg) [1708033]
+- [fs] cifs: create a define for how many iovs we need for an SMB2_open() (Leif Sahlberg) [1708033]
+- [fs] smb3: create smb3 equivalent alias for cifs pseudo-xattrs (Leif Sahlberg) [1708033]
+- [fs] smb3: allow previous versions to be mounted with snapshot= mount parm (Leif Sahlberg) [1708033]
+- [fs] cifs: don't show domain= in mount output when domain is empty (Leif Sahlberg) [1708033]
+- [fs] cifs: add missing support for ACLs in SMB 3.11 (Leif Sahlberg) [1708033]
+- [fs] smb3: enumerating snapshots was leaving part of the data off end (Leif Sahlberg) [1708033]
+- [fs] cifs: update smb2_queryfs() to use compounding (Leif Sahlberg) [1708033]
+- [fs] cifs: update receive_encrypted_standard to handle compounded responses (Leif Sahlberg) [1708033]
+- [fs] cifs: create SMB2_open_init()/SMB2_open_free() helpers. (Leif Sahlberg) [1708033]
+- [fs] cifs: add SMB2_query_info_[init|free]() (Leif Sahlberg) [1708033]
+- [fs] cifs: add SMB2_close_init()/SMB2_close_free() (Leif Sahlberg) [1708033]
+- [fs] smb3: display stats counters for number of slow commands (Leif Sahlberg) [1708033]
+- [fs] CIFS: fix uninitialized ptr deref in smb2 signing (Leif Sahlberg) [1708033]
+- [fs] smb3: Do not send SMB3 SET_INFO if nothing changed (Leif Sahlberg) [1708033]
+- [fs] smb3: fix minor debug output for CONFIG_CIFS_STATS (Leif Sahlberg) [1708033]
+- [fs] smb3: add tracepoint for slow responses (Leif Sahlberg) [1708033]
+- [fs] cifs: add compound_send_recv() (Leif Sahlberg) [1708033]
+- [fs] cifs: make smb_send_rqst take an array of requests (Leif Sahlberg) [1708033]
+- [fs] cifs: update init_sg, crypt_message to take an array of rqst (Leif Sahlberg) [1708033]
+- [fs] smb3: fix reset of bytes read and written stats (Leif Sahlberg) [1708033]
+- [fs] smb3: display bytes_read and bytes_written in smb3 stats (Leif Sahlberg) [1708033]
+- [fs] cifs: simple stats should always be enabled (Leif Sahlberg) [1708033]
+- [fs] cifs: use a refcount to protect open/closing the cached file handle (Leif Sahlberg) [1708033]
+- [fs] smb3: add reconnect tracepoints (Leif Sahlberg) [1708033]
+- [fs] smb3: add tracepoint for session expired or deleted (Leif Sahlberg) [1708033]
+- [fs] cifs: remove unused stats (Leif Sahlberg) [1708033]
+- [fs] smb3: don't request leases in symlink creation and query (Leif Sahlberg) [1708033]
+- [fs] smb3: remove per-session operations from per-tree connection stats (Leif Sahlberg) [1708033]
+- [fs] SMB3: Number of requests sent should be displayed for SMB3 not just CIFS (Leif Sahlberg) [1708033]
+- [fs] smb3: snapshot mounts are read-only and make sure info is displayable about the mount (Leif Sahlberg) [1708033]
+- [fs] smb3: remove noisy warning message on mount (Leif Sahlberg) [1708033]
+- [fs] cifs: add missing debug entries for kconfig options (Leif Sahlberg) [1708033]
+- [fs] smb3: fill in statfs fsid and correct namelen (Leif Sahlberg) [1708033]
+- [fs] cifs: Make sure all data pages are signed correctly (Leif Sahlberg) [1708033]
+- [fs] CIFS: fix memory leak and remove dead code (Leif Sahlberg) [1708033]
+- [fs] cifs: use 64-bit timestamps for fscache (Leif Sahlberg) [1708033]
+- [fs] cifs: use timespec64 internally (Leif Sahlberg) [1708033]
+- [fs] cifs: Silence uninitialized variable warning (Leif Sahlberg) [1708033]
+- [fs] fs/cifs: Simplify ib_post_(send|recv|srq_recv)() calls (Leif Sahlberg) [1708033]
+
+* Mon May 20 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-92.el8]
+- [edac] EDAC/amd64: Set maximum channel layer size depending on family (Gary Hook) [1690984]
+- [edac] EDAC/amd64: Adjust printed chip select sizes when interleaved (Gary Hook) [1690984]
+- [edac] EDAC/amd64: Recognize x16 symbol size (Gary Hook) [1690984]
+- [edac] EDAC/amd64: Support more than two Unified Memory Controllers (Gary Hook) [1690984]
+- [edac] EDAC/amd64: Use a macro for iterating over Unified Memory Controllers (Gary Hook) [1690984]
+- [edac] EDAC, amd64: Add Family 17h, models 10h-2fh support (Gary Hook) [1670609 1690984]
+- [md] dm mpath: fix missing call of path selector type->end_io (Mike Snitzer) [1686227]
+- [rpmspec] redhat: do not generate debuginfo for self-tests and samples (Ivan Vecera) [1708375]
+- [netdrv] broadcom: Mark expected switch fall-throughs (Kamal Heib) [1684380]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() (Kamal Heib) [1684380]
+- [netdrv] broadcom: tg3: fix use of SPEED_UNKNOWN ethtool constant (Kamal Heib) [1684380]
+- [netdrv] tg3: allow ethtool -p to work for NICs in down state (Kamal Heib) [1684380]
+- [netdrv] tg3: optionally use eth_platform_get_mac_address() to get mac address (Kamal Heib) [1684380]
+- [netdrv] tg3: extend PTP gettime function to read system clock (Kamal Heib) [1684380]
+- [netdrv] tg3: Fix fall-through annotations (Kamal Heib) [1684380]
+- [netdrv] tg3: Mark expected switch fall-throughs (Kamal Heib) [1684380]
+- [mm] x86/mm/KASLR: Fix the size of the direct mapping section (Baoquan He) [1669075]
+- [netdrv] net/mlx4_en: fix spelling mistake: "quiting" -> "quitting" (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4_core: Fix error handling when initializing CQ bufs in the driver (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4_core: Add masking for a few queries on HCA caps (Alaa Hleihel) [1691235 1691228]
+- [infiniband] IB/mlx4: Fix using wrong function to destroy sqp AHs under SRIOV (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4: replace pci_{,un}map_sg with dma_{,un}map_sg (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4: Get rid of page operation after dma_alloc_coherent (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4_core: drop useless LIST_HEAD (Alaa Hleihel) [1691235 1691228]
+- [infiniband] IB/mlx4: Remove set but not used variable 'pd' (Alaa Hleihel) [1691235 1691228]
+- [infiniband] IB/mlx4: Utilize macro to calculate SQ spare size (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4_en: remove fallback after kzalloc_node() (Alaa Hleihel) [1691235 1691228]
+- [infiniband] IB/mlx4: Remove unneeded NULL check (Alaa Hleihel) [1691235 1691228]
+- [infiniband] mlx4: Use snprintf instead of complicated strcpy (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4_core: Fix several coding style errors (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4_core: Fix return codes of unsupported operations (Alaa Hleihel) [1691235 1691228]
+- [netdrv] {net, IB}/mlx4: Initialize CQ buffers in the driver when possible (Alaa Hleihel) [1691235 1691228]
+- [netdrv] mlx4: use __vlan_hwaccel helpers (Alaa Hleihel) [1691235 1691228]
+- [netdrv] net/mlx4_en: Fix build break when CONFIG_INET is off (Alaa Hleihel) [1691233 1691228]
+- [netdrv] net/mlx4_en: use __netdev_tx_sent_queue() (Alaa Hleihel) [1691233 1691228]
+- [netdrv] net/mlx4_en: add a missing <net/ip.h> include (Alaa Hleihel) [1691233 1691228]
+- [infiniband] IB/mlx4: Add port and TID to MAD debug print (Alaa Hleihel) [1691233 1691228]
+- [infiniband] IB/mlx4: Enable debug print of SMPs (Alaa Hleihel) [1691233 1691228]
+- [infiniband] RDMA: Fix dependencies for rdma_user_mmap_io (Alaa Hleihel) [1691233 1691228]
+- [infiniband] IB/mlx4: Remove unnecessary parentheses (Alaa Hleihel) [1691233 1691228]
+- [infiniband] RDMA/mlx4: Use rdma_user_mmap_io (Alaa Hleihel) [1691233 1691228]
+- [netdrv] net/mlx4_core: Fix warnings during boot on driverinit param set failures (Alaa Hleihel) [1691228]
+- [netdrv] net/mlx4_core: Use devlink region_snapshot parameter (Alaa Hleihel) [1691228]
+- [netdrv] net/mlx4_core: Add Crdump FW snapshot support (Alaa Hleihel) [1691228]
+- [netdrv] net/mlx4_core: Add health buffer address capability (Alaa Hleihel) [1691228]
+- [netdrv] mlx4: Add support for devlink reload and load driverinit values (Alaa Hleihel) [1691228 1663198]
+- [netdrv] mlx4: Add mlx4 initial parameters table and register it (Alaa Hleihel) [1691228 1663198]
+- [infiniband] IB/mlx4: Create slave AH's directly (Alaa Hleihel) [1691228]
+- [infiniband] IB/mlx4: Add support for drain SQ & RQ (Alaa Hleihel) [1691228]
+- [net] openvswitch: return an error instead of doing BUG_ON() (Eelco Chaudron) [1700468]
+- [include] net: add netif_is_geneve() (Petr Oros) [1707002]
+- [netdrv] team: fix possible recursive locking when add slaves (Hangbin Liu) [1700679]
+- [netdrv] phy: Fix ioctl handler when modifing MII_ADVERTISE (Petr Oros) [1691676]
+- [netdrv] mii: Add mii_lpa_mod_linkmode_lpa_t (Petr Oros) [1691676]
+- [netdrv] phy: marvell: Rename mii_lpa_to_linkmode_lpa_t (Petr Oros) [1691676]
+- [netdrv] mii: Rename mii_stat1000_to_linkmode_lpa_t (Petr Oros) [1691676]
+- [include] mii: Fix autoneg in mii_lpa_to_linkmode_lpa_t() (Petr Oros) [1691676]
+- [netdrv] phy: remove unused code in phy_probe (Petr Oros) [1691676]
+- [netdrv] phy: check if advertising is zero using linkmode_empty (Petr Oros) [1691676]
+- [netdrv] phy: marvell: remove set but not used variable 'pause' (Petr Oros) [1691676]
+- [netdrv] phy: Add support for resolving 5G and 2.5G autoneg (Petr Oros) [1691676]
+- [netdrv] phy: Add more link modes to the settings table (Petr Oros) [1691676]
+- [netdrv] phy: Fixup kerneldoc markup. (Petr Oros) [1691676]
+- [netdrv] phy: Convert u32 phydev->lp_advertising to linkmode (Petr Oros) [1691676]
+- [netdrv] ethernet: Convert phydev advertize and supported from u32 to link mode (Petr Oros) [1691676]
+- [netdrv] bonding: Issue NETDEV_PRE_CHANGEADDR (Ivan Vecera) [1705509]
+- [netdrv] bonding: Give bond_set_dev_addr() a return value (Ivan Vecera) [1705509]
+- [netdrv] ipvlan: Issue NETDEV_PRE_CHANGEADDR (Ivan Vecera) [1705509]
+- [net] bridge: Handle NETDEV_PRE_CHANGEADDR from ports (Ivan Vecera) [1705509]
+- [net] bridge: Issue NETDEV_PRE_CHANGEADDR (Ivan Vecera) [1705509]
+- [net] dev: Issue NETDEV_PRE_CHANGEADDR (Ivan Vecera) [1705509]
+- [net] dev: Add NETDEV_PRE_CHANGEADDR (Ivan Vecera) [1705509]
+- [net] dev: Add extack argument to dev_set_mac_address() (Ivan Vecera) [1705509]
+- [netdrv] phy: phy driver features are mandatory (Petr Oros) [1691720]
+- [netdrv] phy: add missing phy driver features (Petr Oros) [1691720]
+- [netdrv] phy: Add missing features to PHY drivers (Petr Oros) [1691720]
+- [netdrv] phy: genphy_10g_driver: Avoid NULL pointer dereference (Petr Oros) [1691720]
+- [netdrv] phy: phy_support_sym_pause: Clear Asym Pause (Petr Oros) [1691720]
+- [netdrv] phy: Replace phy driver features u32 with link_mode bitmap (Petr Oros) [1691720]
+- [netdrv] ethernet: xgbe: expand PHY_GBIT_FEAUTRES (Petr Oros) [1691720]
+- [net] net: phy: Add limkmode equivalents to some of the MII ethtool helpers (Petr Oros) [1691720]
+- [netdrv] phy: Add helper for advertise to lcl value (Petr Oros) [1691720]
+- [net] phy: Add helper to convert MII ADV register to a linkmode (Petr Oros) [1691720]
+- [netdrv] phy: Add phydev_info() (Petr Oros) [1691720]
+- [netdrv] phy: Add phydev_warn() (Petr Oros) [1691720]
+- [netdrv] phy: Move linkmode helpers to somewhere public (Petr Oros) [1691720]
+- [netdrv] ethernet: dpaa: remove unused variables (Petr Oros) [1691720]
+- [netdrv] ravb: Disable Pause Advertisement (Petr Oros) [1691720]
+- [netdrv] ethernet: Add helper to determine if pause configuration is supported (Petr Oros) [1691720]
+- [netdrv] ethernet: Add helper for set_pauseparam for Pause (Petr Oros) [1691720]
+- [netdrv] ethernet: Add helper for set_pauseparam for Asym Pause (Petr Oros) [1691720]
+- [netdrv] ethernet: Add helper for MACs which support pause (Petr Oros) [1691720]
+- [netdrv] ethernet: Add helper for MACs which support asym pause (Petr Oros) [1691720]
+- [netdrv] ethernet: Add helper to remove a supported link mode (Petr Oros) [1691720]
+- [netdrv] ethernet: Fix up drivers masking pause support (Petr Oros) [1691720]
+- [netdrv] bcmgenet: Fix speed selection for reverse MII (Petr Oros) [1691720]
+- [netdrv] ethernet: Use phy_set_max_speed() to limit advertised speed (Petr Oros) [1691720]
+- [netdrv] phy: bcm63xx: Allow to be built with COMPILE_TEST (Petr Oros) [1691720]
+- [netdrv] phy: et1011c: Remove incorrect missing 1000 Half (Petr Oros) [1691720]
+- [netdrv] phy: ste10Xp: Remove wrong SUPPORTED_Pause (Petr Oros) [1691720]
+- [tools] selftests: net: ip_defrag: cover new IPv6 defrag behavior (Guillaume Nault) [1660282]
+- [tools] selftests: net: fix/improve ip_defrag selftest (Guillaume Nault) [1660282]
+- [tools] selftests: use posix-style redirection in ip_defrag.sh (Guillaume Nault) [1660282]
+- [tools] selftests: net: Clean up an unused variable (Guillaume Nault) [1660282]
+- [tools] selftests/net: add ipv6 tests to ip_defrag selftest (Guillaume Nault) [1660282]
+- [tools] selftests/net: add ip_defrag selftest (Guillaume Nault) [1660282]
+- [net] ip6: fix skb leak in ip6frag_expire_frag_queue() (Guillaume Nault) [1660282]
+- [net] IP6 defrag: use rbtrees in nf_conntrack_reasm.c (Guillaume Nault) [1660282]
+- [net] IP6 defrag: use rbtrees for IPv6 defrag (Guillaume Nault) [1660282]
+- [net] IP defrag: encapsulate rbtree defrag code into callable functions (Guillaume Nault) [1660282]
+- [net] ipv4: do not handle duplicate fragments as overlapping (Guillaume Nault) [1660282]
+- [net] ipv4: ipv6: netfilter: Adjust the frag mem limit when truesize changes (Guillaume Nault) [1660282]
+- [net] ipv6: remove dependency of nf_defrag_ipv6 on ipv6 module (Guillaume Nault) [1660282]
+- [net] ipv6: fix typo in net/ipv6/reassembly.c (Guillaume Nault) [1660282]
+- [net] core: dev: Attach extack to NETDEV_PRE_UP (Ivan Vecera) [1705501]
+- [net] core: dev: Add call_netdevice_notifiers_extack() (Ivan Vecera) [1705501]
+- [net] core: dev: Add extack argument to __dev_change_flags() (Ivan Vecera) [1705501]
+- [net] core: dev: Add extack argument to dev_change_flags() (Ivan Vecera) [1705501]
+- [netdrv] ipvlan: ipvlan_set_port_mode(): Add an extack argument (Ivan Vecera) [1705501]
+- [netdrv] vrf: cycle_netdev(): Add an extack argument (Ivan Vecera) [1705501]
+- [net] net: core: dev: Add extack argument to dev_open() (Ivan Vecera) [1705501]
+- [net] vlan: conditional inclusion of FCoE hooks to match netdevice.h and bnx2x (Chris Leech) [1685894]
+- [net] Do not route unicast IP packets twice (Ivan Vecera) [1704923]
+- [net] skbuff: Rename 'offload_mr_fwd_mark' to 'offload_l3_fwd_mark' (Ivan Vecera) [1704923]
+- [net] devlink: Add 'fw_load_policy' generic parameter (Ivan Vecera) [1704902]
+- [net] bridge: Extend br_vlan_get_pvid() for bridge ports (Ivan Vecera) [1704863]
+- [net] ipv4: Notify about changes to ip_forward_update_priority (Ivan Vecera) [1704697]
+- [net] ipv4: Control SKB reprioritization after forwarding (Ivan Vecera) [1704697]
+- [net] dcb: Add priority-to-DSCP map getters (Ivan Vecera) [1704639]
+- [net] xsk: export xdp_get_umem_from_qid (Ivan Vecera) [1704606]
+- [net] net: Add lag.h, net_lag_port_dev_txable() (Ivan Vecera) [1704297]
+- [netdrv] team: Publish team_port_get_rcu() (Ivan Vecera) [1704297]
+- [net] sched: sch_api: set an error msg when qdisc_alloc_handle() fails (Ivan Vecera) [1677094]
+- [net] ethtool: Remove unnecessary null check in ethtool_rx_flow_rule_create (Ivan Vecera) [1691738]
+- [net] flow_offload: fix block stats (Ivan Vecera) [1691738]
+- [net] sched: flower: only return error from hw offload if skip_sw (Ivan Vecera) [1691738]
+- [net] flow_offload: Fix flow action infrastructure (Ivan Vecera) [1691738]
+- [net] ethtool: add ethtool_rx_flow_spec to flow_rule structure translator (Ivan Vecera) [1691738]
+- [net] flow_offload: add wake-up-on-lan and queue to flow_action (Ivan Vecera) [1691738]
+- [net] flow_offload: add statistics retrieval infrastructure and use it (Ivan Vecera) [1691738]
+- [net] cls_api: add translator to flow_action representation (Ivan Vecera) [1691738]
+- [net] flow_offload: add flow action infrastructure (Ivan Vecera) [1691738]
+- [net] flow_offload: add flow_rule and flow_match structures and use them (Ivan Vecera) [1691738]
+- [net] netfilter: ipv6: Don't preserve original oif for loopback address (Florian Westphal) [1702813]
+- [net] netfilter: ipv6: Preserve link scope traffic original oif (Florian Westphal) [1702813]
+- [net] sctp: implement memory accounting on rx path (Xin Long) [1665243] {CVE-2019-3874}
+- [net] sctp: implement memory accounting on tx path (Xin Long) [1665243] {CVE-2019-3874}
+- [net] openvswitch: fix flow actions reallocation (Eelco Chaudron) [1700468]
+- [net] openvswitch: fix missing checks for nla_nest_start (Eelco Chaudron) [1700468]
+- [net] openvswitch: fix a NULL pointer dereference (Eelco Chaudron) [1700468]
+- [net] openvswitch: meter: Use struct_size() in kzalloc() (Eelco Chaudron) [1700468]
+- [net] openvswitch: Fix IPv6 later frags parsing (Eelco Chaudron) [1700468]
+- [net] openvswitch: fix spelling mistake "execeeds" -> "exceeds" (Eelco Chaudron) [1700468]
+- [net] openvswitch: remove BUG_ON from get_dpdev (Eelco Chaudron) [1700468]
+- [net] openvswitch: fix linking without CONFIG_NF_CONNTRACK_LABELS (Eelco Chaudron) [1700468]
+- [net] revert "openvswitch: Fix template leak in error cases." (Eelco Chaudron) [1700468]
+- [net] openvswitch: Use correct reply values in datapath and vport ops (Eelco Chaudron) [1700468]
+- [net] ovs: fix return type of ndo_start_xmit function (Eelco Chaudron) [1700468]
+- [net] openvswitch: Derive IP protocol number for IPv6 later frags (Eelco Chaudron) [1700468]
+- [net] openvswitch: kernel datapath clone action (Eelco Chaudron) [1700468]
+- [net] openvswitch: Avoid OOB read when parsing flow nlattrs (Eelco Chaudron) [1700468]
+- [net] net/vlan: remove unused #define HAVE_VLAN_GET_TAG (Ivan Vecera) [1700369]
+- [net] vlan: include the shift in skb_vlan_tag_get_prio() (Ivan Vecera) [1700369]
+- [net] vlan: introduce __vlan_hwaccel_copy_tag() helper (Ivan Vecera) [1700369]
+- [net] vlan: introduce __vlan_hwaccel_clear_tag() helper (Ivan Vecera) [1700369]
+- [net] sctp: initialize _pad of sockaddr_in before copying to user memory (Xin Long) [1699076]
+- [net] sctp: use memdup_user instead of vmemdup_user (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_STREAM_SCHEDULER sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_EVENT sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_ENABLE_STREAM_RESET sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_DEFAULT_PRINFO sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_AUTH_DEACTIVATE_KEY sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_AUTH_DELETE_KEY sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_AUTH_ACTIVE_KEY sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_AUTH_KEY sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_MAX_BURST sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_CONTEXT sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_DEFAULT_SNDINFO sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_DELAYED_SACK sockopt (Xin Long) [1699076]
+- [net] sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_DEFAULT_SEND_PARAM sockopt (Xin Long) [1699076]
+- [net] sctp: not copy sctp_sock pd_lobby in sctp_copy_descendant (Xin Long) [1699076]
+- [net] sctp: get sctphdr by offset in sctp_compute_cksum (Xin Long) [1699076]
+- [net] sctp: call sctp_auth_init_hmacs() in sctp_sock_migrate() (Xin Long) [1699076]
+- [net] sctp: move up sctp_auth_init_hmacs() in sctp_endpoint_init() (Xin Long) [1699076]
+- [net] sctp: sctp_sock_migrate() returns error if sctp_bind_addr_dup() fails (Xin Long) [1699076]
+- [net] sctp: remove sched init from sctp_stream_init (Xin Long) [1699076]
+- [net] sctp: call iov_iter_revert() after sending ABORT (Xin Long) [1699076]
+- [net] ipvs: get sctphdr by sctphoff in sctp_csum_check (Xin Long) [1699076]
+- [net] sctp: chunk.c: correct format string for size_t in printk (Xin Long) [1699076]
+- [net] sctp: don't compare hb_timer expire date before starting it (Xin Long) [1699076]
+- [net] doc: sctp: Merge and clean up rst files (Xin Long) [1699076]
+- [net] sctp: set stream ext to NULL after freeing it in sctp_stream_outq_migrate (Xin Long) [1699076]
+- [net] sctp: add SCTP_FUTURE_ASOC and SCTP_CURRENT_ASSOC for SCTP_STREAM_SCHEDULER sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_EVENT sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_ENABLE_STREAM_RESET sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_DEFAULT_PRINFO sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_AUTH_DEACTIVATE_KEY sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_AUTH_DELETE_KEY sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_AUTH_ACTIVE_KEY sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_AUTH_KEY sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_MAX_BURST sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_CONTEXT sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_DEFAULT_SNDINFO sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_DEFAULT_SEND_PARAM sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_DELAYED_SACK sockopt (Xin Long) [1699076]
+- [net] sctp: add SCTP_CURRENT_ASSOC for SCTP_STREAM_SCHEDULER_VALUE sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC for SCTP_INTERLEAVING_SUPPORTED sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC for SCTP_RECONFIG_SUPPORTED sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC for SCTP_PR_SUPPORTED sockopt (Xin Long) [1699076]
+- [net] sctp: add SCTP_FUTURE_ASSOC for SCTP_PEER_ADDR_THLDS sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC for SCTP_LOCAL_AUTH_CHUNKS sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC for SCTP_MAXSEG sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC for SCTP_ASSOCINFO sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC for SCTP_RTOINFO sockopt (Xin Long) [1699076]
+- [net] sctp: use SCTP_FUTURE_ASSOC for SCTP_PEER_ADDR_PARAMS sockopt (Xin Long) [1699076]
+- [net] sctp: introduce SCTP_FUTURE/CURRENT/ALL_ASSOC (Xin Long) [1699076]
+- [net] sctp: set flow sport from saddr only when it's 0 (Xin Long) [1699076]
+- [net] sctp: set chunk transport correctly when it's a new asoc (Xin Long) [1699076]
+- [net] sctp: improve the events for sctp stream adding (Xin Long) [1699076]
+- [net] sctp: improve the events for sctp stream reset (Xin Long) [1699076]
+- [net] sctp: allocate sctp_sockaddr_entry with kzalloc (Xin Long) [1699076]
+- [net] sctp: initialize sin6_flowinfo for ipv6 addrs in sctp_inet6addr_event (Xin Long) [1699076]
+- [net] sctp: frag_point sanity check (Xin Long) [1699076]
+- [net] sctp: kfree_rcu asoc (Xin Long) [1699076]
+- [net] sctp: update frag_point when stream_interleave is set (Xin Long) [1699076]
+- [net] sctp: add sockopt SCTP_EVENT (Xin Long) [1699076]
+- [net] sctp: rename enum sctp_event to sctp_event_type (Xin Long) [1699076]
+- [net] sctp: add subscribe per asoc (Xin Long) [1699076]
+- [net] sctp: define subscribe in sctp_sock as __u16 (Xin Long) [1699076]
+- [net] sctp: process sk_reuseport in sctp_get_port_local (Xin Long) [1699076]
+- [net] sctp: add sock_reuseport for the sock in __sctp_hash_endpoint (Xin Long) [1699076]
+- [net] sctp: do reuseport_select_sock in __sctp_rcv_lookup_endpoint (Xin Long) [1699076]
+- [net] sctp: Fix SKB list traversal in sctp_intl_store_ordered(). (Xin Long) [1699076]
+- [net] sctp: Fix SKB list traversal in sctp_intl_store_reasm(). (Xin Long) [1699076]
+- [net] sctp: define SCTP_SS_DEFAULT for Stream schedulers (Xin Long) [1699076]
+- [net] sctp: clear the transport of some out_chunk_list chunks in sctp_assoc_rm_peer (Xin Long) [1699076]
+- [net] sctp: use sk_wmem_queued to check for writable space (Xin Long) [1699076]
+- [net] sctp: count both sk and asoc sndbuf with skb truesize and sctp_chunk size (Xin Long) [1699076]
+- [net] sctp: use the pmtu from the icmp packet to update transport pathmtu (Xin Long) [1699076]
+- [net] sctp: fix fall-through annotation (Xin Long) [1699076]
+- [net] sctp: Use skb_queue_is_first(). (Xin Long) [1699076]
+- [net] sctp: not traverse asoc trans list if non-ipv6 trans exists for ipv6_flowlabel (Xin Long) [1699076]
+- [net] sctp: fix invalid reference to the index variable of the iterator (Xin Long) [1699076]
+- [net] sctp: remove useless start_fail from sctp_ht_iter in proc (Xin Long) [1699076]
+- [net] sctp: Make wrappers for accessing in/out streams (Xin Long) [1699076]
+- [net] sctp: whitespace fixes (Xin Long) [1699076]
+- [net] sctp: check for ipv6_pinfo legal sndflow with flowlabel in sctp_v6_get_dst (Xin Long) [1699076]
+- [net] sctp: add support for setting flowlabel when adding a transport (Xin Long) [1699076]
+- [net] sctp: add spp_ipv6_flowlabel and spp_dscp for sctp_paddrparams (Xin Long) [1699076]
+- [net] sctp: add support for dscp and flowlabel per transport (Xin Long) [1699076]
+- [net] ipv4: add __ip_queue_xmit() that supports tos param (Xin Long) [1699076]
+- [net] sctp: add support for SCTP_REUSE_PORT sockopt (Xin Long) [1699076]
+- [netdrv] pptp: dst_release sk_dst_cache in pptp_sock_destruct (Xin Long) [1671606]
+- [net] datagram: fix unbounded loop in __skb_try_recv_datagram() (Paolo Abeni) [1692379]
+- [net] ipv6: route: purge exception on removal (Paolo Abeni) [1669049]
+- [net] vsock: cope with memory allocation failure at socket creation time (Paolo Abeni) [1671619]
+- [net] ptp: fix Spectre v1 vulnerability (Hangbin Liu) [1664624]
+
+* Fri May 17 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-91.el8]
+- [infiniband] RDMA/bnxt_re: fix or'ing of data into an uninitialized struct member (Selvin Xavier) [1664798]
+- [netdrv] RDMA/bnxt_en: Enable RDMA driver support for 57500 chip (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Update kernel user abi to pass chip context (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Add extended psn structure for 57500 adapters (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Enable GSI QP support for 57500 series (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Skip backing store allocation for 57500 series (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Add 64bit doorbells for 57500 series (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Add chip context to identify 57500 series (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: fix a size calculation (Selvin Xavier) [1664798]
+- [infiniband] infiniband: bnxt_re: qplib: Check the return value of send_message (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Increase depth of control path command queue (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Query HWRM Interface version from FW (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Make use of destroy AH sleepable flag (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Make use of create AH sleepable flag (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Avoid accessing the device structure after it is freed (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Fix system hang when registration with L2 driver fails (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Avoid resource leak in case the NQ registration fails (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Wait for delayed work to finish before device removal (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Limit max_pkey to 16 bit value (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Fix qp async event reporting (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Report out of sequence hw counters (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Expose rx discards and drop counters (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Prevent driver crash due to NULL pointer in error message print (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Drop L2 async events silently (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Avoid NULL check after accessing the pointer (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Remove the unnecessary version macro definition (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Fix recursive lock warning in debug kernel (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Add missing spin lock initialization (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: QPLIB: Add and use #define dev_fmt(fmt) "QPLIB: " fmt (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Modify a fall-through annotation (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Fix a bunch of off by one bugs in qplib_fp.c (Selvin Xavier) [1664798]
+- [infiniband] RDMA/bnxt_re: Fix a couple off by one bugs (Selvin Xavier) [1664798]
+- [powerpc] powerpc/fadump: Do not allow hot-remove memory from fadump reserved area. (Gustavo Duarte) [1524686]
+- [powerpc] powerpc/fadump: Throw proper error message on fadump registration failure (Gustavo Duarte) [1524686]
+- [powerpc] powerpc/fadump: Reservationless firmware assisted dump (Gustavo Duarte) [1524686]
+- [infiniband] IB/hfi1: Fix WQ_MEM_RECLAIM warning (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Implement CCA for TID RDMA protocol (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove WARN_ON when freeing expected receive groups (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Unify the software PSN check for TID RDMA READ/WRITE (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to read next expected psn from hardware flow (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Delay the release of destination mr for TID RDMA WRITE DATA (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Do not flush send queue in the TID RDMA second leg (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Fix the allocation of RSM table (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Eliminate opcode tests on mr deref (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Clear the IOWAIT pending bits when QP is put into error state (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Failed to drain send queue when QP is put into error state (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add missing break in switch statement (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Fix a build warning for TID RDMA READ (Alex Estrin) [1660618]
+- [infiniband] RDMA/rdmavt: Adapt to handle non-uniform sizes on umem SGEs (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Prioritize the sending of ACK packets (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add static trace for TID RDMA WRITE protocol (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Enable TID RDMA WRITE protocol (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add interlock between TID RDMA WRITE and other requests (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add TID RDMA WRITE functionality into RDMA verbs (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add the dual leg code (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add the TID second leg ACK packet builder (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add the TID second leg send packet builder (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Resend the TID RDMA WRITE DATA packets (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to receive TID RDMA RESYNC packet (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to build TID RDMA RESYNC packet (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add TID RDMA retry timer (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to receive TID RDMA ACK packet (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to build TID RDMA ACK packet (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to receive TID RDMA WRITE DATA packet (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to build TID RDMA WRITE DATA packet (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to receive TID RDMA WRITE response (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add TID resource timer (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to build TID RDMA WRITE response (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add functions to receive TID RDMA WRITE request (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add an s_acked_ack_queue pointer (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Allow for extra entries in QP's s_ack_queue (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Build TID RDMA WRITE request (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add static trace for TID RDMA READ protocol (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Enable TID RDMA READ protocol (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add interlock between a TID RDMA request and other requests (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Integrate TID RDMA READ protocol into RC protocol (Alex Estrin) [1660618]
+- [include] IB/hfi1: Increment the retry timeout value for TID RDMA READ request (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add functions for restarting TID RDMA READ request (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add TID RDMA handlers (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add functions to receive TID RDMA READ response (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add a function to build TID RDMA READ response (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add functions to receive TID RDMA READ request (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Set PbcInsertHcrc for TID RDMA packets (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add functions to build TID RDMA READ request (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add static trace for flow and TID management functions (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add the counter n_tidwait (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: TID RDMA RcvArray programming and TID allocation (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: TID RDMA flow allocation (Alex Estrin) [1660618]
+- [infiniband] IB/hfi: Move RC functions into a header file (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add static trace for OPFN (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Integrate OPFN into RC transactions (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1, IB/rdmavt: Allow for extending of QP's s_ack_queue (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: OPFN interface (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add OPFN helper functions for TID RDMA feature (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: OPFN support discovery (Alex Estrin) [1660618]
+- [infiniband] IB/{hfi1, qib, rvt} Cleanup open coded sge usage (Alex Estrin) [1660618]
+- [infiniband] IB/{hfi1,qib}: Cleanup open coded sge sizing (Alex Estrin) [1660618]
+- [infiniband] RDMA/qib: Use GUP longterm for PSM page pining (Alex Estrin) [1660618]
+- [infiniband] infiniband: qib: no need to check return value of debugfs_create functions (Alex Estrin) [1660618]
+- [infiniband] infiniband: hfi1: no need to check return value of debugfs_create functions (Alex Estrin) [1660618]
+- [infiniband] infiniband: hfi1: drop crazy DEBUGFS_SEQ_FILE_CREATE() macro (Alex Estrin) [1660618]
+- [infiniband] IB/{hfi1, qib}: Fix WC.byte_len calculation for UD_SEND_WITH_IMM (Alex Estrin) [1660618]
+- [infiniband] IB/qib: Fix an error code in qib_sdma_verbs_send() (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Reduce lock contention on iowait_lock for sdma and pio (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Close VNIC sdma_progress sleep window (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Allow the driver to initialize QP priv struct (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add OPFN and TID RDMA capability bits (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Unreserve a reserved request when it is completed (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Consider LMC in 16B/bypass ingress packet check (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Limit VNIC use of SDMA engines to the available count (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Correctly process FECN and BECN in packets (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Ignore LNI errors before DC8051 transitions to Polling state (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Dump pio info for non-user send contexts (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Fix a latency issue for small messages (Alex Estrin) [1660618]
+- [infiniband] RDMA/qib: Remove all occurrences of BUG_ON() (Alex Estrin) [1660618]
+- [infiniband] IB/qib: fix spelling mistake "colescing" -> "coalescing" (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Use VL15 for SM packets (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add mtu check for operational data VLs (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Add static trace for iowait (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Prepare resource waits for dual leg (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Error path MAD response size is incorrect (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Move UnsupportedVL bits definitions to the correct header (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: set_intr_bits uses incorrect source for register modification (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Missing return value in error path for user sdma (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Right size user_sdma sequence numbers and related variables (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Move URGENT IRQ enable to hfi1_rcvctrl() (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Rework the IRQ API to be more flexible (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: PCIe bus width retry (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Make the MSIx resource allocation a bit more flexible (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Prepare for new HFI1 MSIx API (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Get the hfi1_devdata structure as early as possible (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: tune_pcie_caps is arbitrarily placed, poorly (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove duplicated defines (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Rework file list in Makefile (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove incorrect call to do_interrupt callback (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Set in_use_ctxts bits for user ctxts only (Alex Estrin) [1660618]
+- [include] include/rdma/opa_addr.h: Fix an endianness issue (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove INTx support and simplify MSIx usage (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Reorg ctxtdata and rightsize fields (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove caches of chip CSRs (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove unused/writeonly devdata fields (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Rightsize ctxt_eager_bufs fields (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove rcvctrl from ctxtdata (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove rcvhdrq_size (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Remove rcvhdrsize (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Move rhf_offset from devdata to ctxtdata (Alex Estrin) [1660618]
+- [infiniband] IB/hfi1: Move normal functions from hfi1_devdata to const array (Alex Estrin) [1660618]
+- [infiniband] scsi: RDMA/srpt: Fix handling of TMF submission failure (Jonathan Toppins) [1685313]
+- [infiniband] scsi: RDMA/srpt: Fix a credit leak for aborted commands (Jonathan Toppins) [1685313]
+- [net] xprtrdma: Reduce the doorbell rate (Receive) (Jonathan Toppins) [1685313]
+- [net] xprtrdma: Fix sparse warnings (Jonathan Toppins) [1685313]
+- [net] xprtrdma: Fix helper that drains the transport (Jonathan Toppins) [1685313]
+- [netdrv] enic: fix build warning without CONFIG_CPUMASK_OFFSTACK (Jonathan Toppins) [1685313]
+- [infiniband] IB/usnic: Fix out of bounds index check in query pkey (Jonathan Toppins) [1685313]
+- [infiniband] IB/usnic: Remove stub functions (Jonathan Toppins) [1685313]
+- [infiniband] rdma: fix build errors on s390 and MIPS due to bad ZERO_PAGE use (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/ucontext: Fix regression with disassociate (Jonathan Toppins) [1685313]
+- [infiniband] IB/iser: Fix dma_nents type definition (Jonathan Toppins) [1685313]
+- [infiniband] IB/iser: Pass the correct number of entries for dma mapped SGL (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/rxe: Use for_each_sg_page iterator on umem SGL (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/vmw_pvrdma: Fix memory leak on pvrdma_pci_remove (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/vmw_pvrdma: Support upto 64-bit PFNs (Jonathan Toppins) [1683475]
+- [include] IB/mlx5: Remove dead code (Jonathan Toppins) [1685313]
+- [infiniband] IB/mlx5: Ranges in implicit ODP MR inherit its write access (Jonathan Toppins) [1685313]
+- [infiniband] IB/rdmavt: Fix frwr memory registration (Jonathan Toppins) [1685313]
+- [infiniband] IB/rdmavt: Add wc_flags and wc_immdata to cq entry trace (Jonathan Toppins) [1685313]
+- [infiniband] IB/rdmavt: Fix concurrency panics in QP post_send and modify to error (Jonathan Toppins) [1685313]
+- [infiniband] IB/rdmavt: Fix loopback send with invalidate ordering (Jonathan Toppins) [1685313]
+- [infiniband] IB/hfi1: Add limit test for RC/UC send via loopback (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/iwcm: Fix string truncation error (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/iwcm: add tos_set bool to iw_cm struct (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/cma: listening device cm_ids should inherit tos (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/cma: Rollback source IP address if failing to acquire device (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/device: Call ib_cache_release_one() only from ib_device_release() (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/device: Ensure that security memory is always freed (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/uverbs: Fix an error flow in ib_uverbs_poll_cq (Jonathan Toppins) [1685313]
+- [infiniband] IB/ipoib: Make ipoib_intercept_dev_id_attr() static (Jonathan Toppins) [1685313]
+- [infiniband] RDMA: Provide safe ib_alloc_device() function (Jonathan Toppins) [1685313]
+- [infiniband] IB/core, ipoib: Do not overreact to SM LID change event (Jonathan Toppins) [1685313]
+- [infiniband] IB/core: Abort page fault handler silently during owning process exit (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/core: Verify that memory window type is legal (Jonathan Toppins) [1685313]
+- [infiniband] IB/core: Don't register each MAD agent for LSM notifier (Jonathan Toppins) [1711086 1685313]
+- [include] IB/core: Eliminate a hole in MAD agent struct (Jonathan Toppins) [1711086 1685313]
+- [infiniband] IB/core: Fix potential memory leak while creating MAD agents (Jonathan Toppins) [1711086 1685313]
+- [infiniband] IB/core: Unregister notifier before freeing MAD security (Jonathan Toppins) [1711086 1685313]
+- [infiniband] IB/core: Destroy QP if XRC QP fails (Jonathan Toppins) [1685313]
+- [infiniband] IB/core: Declare local functions 'static' (Jonathan Toppins) [1685313]
+- [infiniband] RDMA/i40iw: Make sure to initialize ib_device_ops (Jonathan Toppins) [1685313]
+- [rpmspec] Update the kernel rpm package description to mention backports/bug fixes ("Herton R. Krzesinski") [1701064]
+- [netdrv] bonding: fix arp_validate toggling in active-backup mode (Jarod Wilson) [1654214]
+- [scsi] scsi: bnx2i: fix indentation issue, remove a tab (Maurizio Lombardi) [1665626]
+- [scsi] scsi: bnx2i: remove set but not used variable 'cid_num' (Maurizio Lombardi) [1665626]
+- [scsi] scsi: bnx2i: add error handling for ioremap_nocache (Maurizio Lombardi) [1665626]
+- [wireless] iwlwifi: mvm: Send LQ command as async when necessary (Stanislaw Gruszka) [1687265]
+- [scsi] scsi: bnx2fc: Fix error handling in probe() (Maurizio Lombardi) [1665625]
+- [scsi] scsi: bnx2fc: Fix NULL dereference in error handling (Maurizio Lombardi) [1665625]
+- [scsi] scsi: bnx2fc: Remove set but not used variable 'oxid' (Maurizio Lombardi) [1665625]
+- [scsi] bnx2fc_fcoe: Use skb_queue_walk_safe(). (Maurizio Lombardi) [1665625]
+- [netdrv] hv_netvsc: Fix rndis_per_packet_info internal field initialization (Mohammed Gamal) [1691375]
+- [netdrv] hv_netvsc: Add handler for LRO setting change (Mohammed Gamal) [1691375]
+- [netdrv] hv_netvsc: Add support for LRO/RSC in the vSwitch (Mohammed Gamal) [1691375]
+- [netdrv] hv_netvsc: Fix unwanted wakeup after tx_disable (Mohammed Gamal) [1691375]
+- [netdrv] hv_netvsc: Fix IP header checksum for coalesced packets (Mohammed Gamal) [1691375]
+- [netdrv] hv_netvsc: fix typos in code comments (Mohammed Gamal) [1691375]
+- [netdrv] hv_netvsc: Fix hash key value reset after other ops (Mohammed Gamal) [1691375]
+- [netdrv] hv_netvsc: Refactor assignments of struct netvsc_device_info (Mohammed Gamal) [1691375]
+- [netdrv] hv_netvsc: Fix ethtool change hash key error (Mohammed Gamal) [1691375]
+- [netdrv] ice: Disable sniffing VF traffic on PF (Kamal Heib) [1659176]
+- [netdrv] ice: Use more efficient structures (Kamal Heib) [1659176]
+- [netdrv] ice: Use bitfields where possible (Kamal Heib) [1659176]
+- [netdrv] ice: Add function to program ethertype based filter rule on VSIs (Kamal Heib) [1659176]
+- [netdrv] ice: Separate if conditions for ice_set_features() (Kamal Heib) [1659176]
+- [netdrv] ice: Remove __always_unused attribute (Kamal Heib) [1659176]
+- [netdrv] ice: Suppress false-positive style issues reported by static analyzer (Kamal Heib) [1659176]
+- [netdrv] ice: Refactor getting/setting coalesce (Kamal Heib) [1659176]
+- [netdrv] ice: Always free/allocate q_vectors (Kamal Heib) [1659176]
+- [netdrv] ice: Do not unnecessarily initialize local variable (Kamal Heib) [1659176]
+- [netdrv] ice: Add more validation in ice_vc_cfg_irq_map_msg (Kamal Heib) [1659176]
+- [netdrv] ice: Don't remove VLAN filters that were never programmed (Kamal Heib) [1659176]
+- [netdrv] ice: Preserve VLAN Rx stripping settings (Kamal Heib) [1659176]
+- [netdrv] ice: Fix for allowing too many MDD events on VF (Kamal Heib) [1659176]
+- [netdrv] ice: Use pf instead of vsi-back (Kamal Heib) [1659176]
+- [netdrv] ice: Use dev_err when ice_cfg_vsi_lan fails (Kamal Heib) [1659176]
+- [netdrv] ice: Refactor link event flow (Kamal Heib) [1659176]
+- [netdrv] ice: Add missing PHY type to link settings (Kamal Heib) [1659176]
+- [netdrv] ice: Add reg_idx variable in ice_q_vector structure (Kamal Heib) [1659176]
+- [netdrv] ice: Remove runtime change of PFINT_OICR_ENA register (Kamal Heib) [1659176]
+- [netdrv] ice: Fix issue when adding more than allowed VLANs (Kamal Heib) [1659176]
+- [netdrv] ice: Remove unnecessary wait when disabling/enabling Rx queues (Kamal Heib) [1659176]
+- [netdrv] ice: Add ability to update rx-usecs-high (Kamal Heib) [1659176]
+- [netdrv] ice: Add 52 byte RSS hash key support (Kamal Heib) [1659176]
+- [netdrv] ice: Use ice_for_each_q_vector macro where possible (Kamal Heib) [1659176]
+- [netdrv] ice: Validate ring existence and its q_vector per VSI (Kamal Heib) [1659176]
+- [netdrv] ice: Reduce scope of variable in ice_vsi_cfg_rxqs (Kamal Heib) [1659176]
+- [netdrv] ice: Resolve static analysis reported issue (Kamal Heib) [1659176]
+- [netdrv] ice: Return configuration error without queue to disable (Kamal Heib) [1659176]
+- [netdrv] ice: Create framework for VSI queue context (Kamal Heib) [1659176]
+- [netdrv] ice: Calculate ITR increment based on direct calculation (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Bump driver version (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add code to control FW LLDP and DCBX (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add code for DCB rebuild (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add code to get DCB related statistics (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add priority information into VLAN header (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Update rings based on TC information (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add code to process LLDP MIB change events (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add code for DCB initialization part 4/4 (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add code for DCB initialization part 3/4 (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add code for DCB initialization part 2/4 (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Add code for DCB initialization part 1/4 (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Bump version (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Fix incorrect use of abbreviations (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Fix typos in code comments (Kamal Heib) [1700995 1659176]
+- [netdrv] ice: Remove "2 BITS" comment (Kamal Heib) [1659176]
+- [netdrv] ice: Update comment regarding the ITR_GRAN_S (Kamal Heib) [1659176]
+- [netdrv] ice: Update function header for __ice_vsi_get_qs (Kamal Heib) [1659176]
+- [netdrv] ice: Remove unnecessary braces (Kamal Heib) [1659176]
+- [netdrv] ice: Remove unused function prototype (Kamal Heib) [1659176]
+- [netdrv] ice: Add missing case in print_link_msg for printing flow control (Kamal Heib) [1659176]
+- [netdrv] ice: Audit hotpath structures with pahole (Kamal Heib) [1659176]
+- [netdrv] ice: Do not bail out when filter already exists (Kamal Heib) [1659176]
+- [netdrv] ice: Fix issue with VF attempt to delete default MAC address (Kamal Heib) [1659176]
+- [netdrv] ice: enable VF admin queue interrupts (Kamal Heib) [1659176]
+- [netdrv] ice: Fix for adaptive interrupt moderation (Kamal Heib) [1659176]
+- [netdrv] ice: Implement pci_error_handler ops (Kamal Heib) [1659176]
+- [netdrv] ice: Put __ICE_PREPARED_FOR_RESET check in ice_prepare_for_reset (Kamal Heib) [1659176]
+- [netdrv] ice: use virt channel status codes (Kamal Heib) [1659176]
+- [netdrv] ice: Remove unnecessary newlines from log messages (Kamal Heib) [1659176]
+- [netdrv] ice: Create a generic name for the ice_rx_flg64_bits structure (Kamal Heib) [1659176]
+- [netdrv] ice: add and use new ice_for_each_traffic_class() macro (Kamal Heib) [1659176]
+- [netdrv] ice: change VF VSI tc info along with num_queues (Kamal Heib) [1659176]
+- [netdrv] ice: Prevent unintended multiple chain resets (Kamal Heib) [1659176]
+- [netdrv] ice: map Rx buffer pages with DMA attributes (Kamal Heib) [1659176]
+- [netdrv] ice: Limit the ice_add_rx_frag to frag addition (Kamal Heib) [1659176]
+- [netdrv] ice: Gather the rx buf clean-up logic for better reuse (Kamal Heib) [1659176]
+- [netdrv] ice: Introduce bulk update for page count (Kamal Heib) [1659176]
+- [netdrv] ice: Get rid of ice_pull_tail (Kamal Heib) [1659176]
+- [netdrv] ice: Pull out page reuse checks onto separate function (Kamal Heib) [1659176]
+- [netdrv] ice: Retrieve rx_buf in separate function (Kamal Heib) [1659176]
+- [netdrv] ice: Enable link events over the ARQ (Kamal Heib) [1659176]
+- [netdrv] ice: use irq_num var in ice_vsi_req_irq_msix (Kamal Heib) [1659176]
+- [netdrv] ice: Restore VLAN switch rule if port VLAN existed before (Kamal Heib) [1659176]
+- [netdrv] ice: update VSI config dynamically (Kamal Heib) [1659176]
+- [netdrv] ice: Get VF VSI instances directly via PF (Kamal Heib) [1659176]
+- [netdrv] ice: Don't let VF know that it is untrusted (Kamal Heib) [1659176]
+- [netdrv] ice: Set LAN_EN for all directional rules (Kamal Heib) [1659176]
+- [netdrv] ice: Do not set LB_EN for prune switch rules (Kamal Heib) [1659176]
+- [netdrv] ice: Enable LAN_EN for the right recipes (Kamal Heib) [1659176]
+- [netdrv] ice: Add support for PF/VF promiscuous mode (Kamal Heib) [1659176]
+- [netdrv] ice: code cleanup in ice_sched.c (Kamal Heib) [1659176]
+- [netdrv] ice: Remove unused vsi_id field (Kamal Heib) [1659176]
+- [netdrv] ice: fix some function prototype and signature style issues (Kamal Heib) [1659176]
+- [netdrv] ice: fix the divide by zero issue (Kamal Heib) [1659176]
+- [netdrv] ice: Fix issue reconfiguring VF queues (Kamal Heib) [1659176]
+- [netdrv] ice: Remove unused function prototype (Kamal Heib) [1659176]
+- [netdrv] ice: fix static analysis warnings (Kamal Heib) [1659176]
+- [netdrv] ice: Fix issue reclaiming resources back to the pool after reset (Kamal Heib) [1659176]
+- [netdrv] ice: Enable MAC anti-spoof by default (Kamal Heib) [1659176]
+- [netdrv] ice: Determine descriptor count and ring size based on PAGE_SIZE (Kamal Heib) [1659176]
+- [netdrv] ice: Reset all VFs with VFLR during SR-IOV init flow (Kamal Heib) [1659176]
+- [netdrv] ice: Get resources per function (Kamal Heib) [1659176]
+- [netdrv] ice: Implement flow to reset VFs with PFR and other resets (Kamal Heib) [1659176]
+- [netdrv] ice: configure GLINT_ITR to always have an ITR gran of 2 (Kamal Heib) [1659176]
+- [netdrv] ice: use ice_for_each_vsi macro when possible (Kamal Heib) [1659176]
+- [netdrv] ice : Ensure only valid bits are set in ice_aq_set_phy_cfg (Kamal Heib) [1659176]
+- [netdrv] ice: remove redundant variable and if condition (Kamal Heib) [1659176]
+- [netdrv] ice: avoid multiple unnecessary de-references in probe (Kamal Heib) [1659176]
+- [netdrv] ice: Fix issue with VF reset and multiple VFs support on PFs (Kamal Heib) [1659176]
+- [netdrv] ice: Fix broadcast traffic in port VLAN mode (Kamal Heib) [1659176]
+- [netdrv] ice: fix overlong string, update stats output (Kamal Heib) [1659176]
+- [netdrv] ice: Fix for FC get rx/tx pause params (Kamal Heib) [1659176]
+- [netdrv] ice: use absolute vector ID for VFs (Kamal Heib) [1659176]
+- [netdrv] ice: check for a leaf node presence (Kamal Heib) [1659176]
+- [netdrv] ice: flush Tx pipe on disable queue timeout (Kamal Heib) [1659176]
+- [netdrv] ice: clear VF ARQLEN register on reset (Kamal Heib) [1659176]
+- [netdrv] ice: don't spam VFs with link messages (Kamal Heib) [1659176]
+- [netdrv] ice: only use the VF for ICE_VSI_VF in ice_vsi_release (Kamal Heib) [1659176]
+- [netdrv] ice: fix numeric overflow warning (Kamal Heib) [1659176]
+- [netdrv] ice: fix issue where host reboots on unload when iommu=on (Kamal Heib) [1659176]
+- [netdrv] ice: fix ice_remove_rule_internal vsi_list handling (Kamal Heib) [1659176]
+- [netdrv] ice: fix stack hogs from struct ice_vsi_ctx structures (Kamal Heib) [1659176]
+- [netdrv] ice: sizeof(<type>) should be avoided (Kamal Heib) [1659176]
+- [netdrv] ice: Fix added in VSI supported nodes calc (Kamal Heib) [1659176]
+- [netdrv] ice: Fix the calculation of ICE_MAX_MTU (Kamal Heib) [1659176]
+- [netdrv] ice: Mark extack argument as __always_unused (Kamal Heib) [1659176]
+- [netdrv] ice: add const qualifier to mac_addr parameter (Kamal Heib) [1659176]
+- [netdrv] ice: Add support for new PHY types (Kamal Heib) [1659176]
+- [netdrv] ice: Offload SCTP checksum (Kamal Heib) [1659176]
+- [netdrv] ice: Allow for software timestamping (Kamal Heib) [1659176]
+- [netdrv] ice: Implement getting and setting ethtool coalesce (Kamal Heib) [1659176]
+- [netdrv] ice: Add support for adaptive interrupt moderation (Kamal Heib) [1659176]
+- [netdrv] ice: Move aggregator list into ice_hw instance (Kamal Heib) [1659176]
+- [netdrv] ice: Rework queue management code for reuse (Kamal Heib) [1659176]
+- [netdrv] ice: Add ethtool private flag to make forcing link down optional (Kamal Heib) [1659176]
+- [netdrv] ice: Set physical link up/down when an interface is set up/down (Kamal Heib) [1659176]
+- [netdrv] ice: Implement support for normal get_eeprom[_len] ethtool ops (Kamal Heib) [1659176]
+- [netdrv] ice: Add ethtool set_phys_id handler (Kamal Heib) [1659176]
+- [netdrv] ice: Configure RSS LUT and HASH KEY in rebuild path (Kamal Heib) [1659176]
+- [netdrv] ice: Refactor a few Tx scheduler functions (Kamal Heib) [1659176]
+- [netdrv] ice: Fix unused variable build warning (Kamal Heib) [1659176]
+- [netdrv] ice: Do not enable NAPI on q_vectors that have no rings (Kamal Heib) [1659176]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Kamal Heib) [1659176]
+- [netdrv] ice: Fix possible NULL pointer de-reference (Kamal Heib) [1659176]
+- [netdrv] ice: Use Tx|Rx in comments (Kamal Heib) [1659176]
+- [netdrv] ice: Cosmetic formatting changes (Kamal Heib) [1659176]
+- [netdrv] ice: Cleanup short function signatures (Kamal Heib) [1659176]
+- [netdrv] ice: Cleanup ice_tx_timeout() (Kamal Heib) [1659176]
+- [netdrv] ice: Fix return value from NAPI poll (Kamal Heib) [1659176]
+- [netdrv] ice: Constify global structures that can/should be (Kamal Heib) [1659176]
+- [netdrv] ice: Do not set LAN_EN for MAC-VLAN filters (Kamal Heib) [1659176]
+- [netdrv] ice: Pass the return value of ice_init_def_sw_recp() (Kamal Heib) [1659176]
+- [netdrv] ice: Cleanup duplicate control queue code (Kamal Heib) [1659176]
+- [netdrv] ice: Remove ICE_MAX_TXQ_PER_TXQG check when configuring Tx queue (Kamal Heib) [1659176]
+- [netdrv] ice: Destroy scheduler tree in reset path (Kamal Heib) [1659176]
+- [netdrv] ice: Fix to make VLAN priority tagged traffic to appear on all TCs (Kamal Heib) [1659176]
+- [netdrv] ice: Call pci_disable_sriov before stopping queues for VF (Kamal Heib) [1659176]
+- [netdrv] ice: Increase Rx queue disable timeout (Kamal Heib) [1659176]
+- [netdrv] ice: Fix NVM mask defines (Kamal Heib) [1659176]
+- [netdrv] ice: Avoid nested RTNL locking in ice_dis_vsi (Kamal Heib) [1659176]
+- [netdrv] ice: Calculate guaranteed VSIs per function and use it (Kamal Heib) [1659176]
+- [netdrv] ice: Remove node before releasing VSI (Kamal Heib) [1659176]
+- [netdrv] ice: Check for q_vector when stopping rings (Kamal Heib) [1659176]
+- [netdrv] ice: Fix debug print in ice_tx_timeout (Kamal Heib) [1659176]
+- [netdrv] intel-ethernet: use correct module license (Kamal Heib) [1659176]
+- [netdrv] bnx2x: Add support for detection of P2P event packets. (Manish Chopra) [1638306 1663271]
+- [netdrv] bnx2x: Replace magic numbers with macro definitions. (Manish Chopra) [1638306 1663271]
+- [netdrv] bnx2x: fix spelling mistake "dicline" -> "decline" (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Utilize FW 7.13.11.0. (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Remove set but not used variable 'mfw_vn' (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Use struct_size() in kzalloc() (Manish Chopra) [1663271]
+- [netdrv] broadcom: Mark expected switch fall-throughs (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Bump up driver version to 1.713.36 (Manish Chopra) [1663271]
+- [netdrv] bnx2x: fix various indentation issues (Manish Chopra) [1663271]
+- [netdrv] cross-tree: phase out dma_zalloc_coherent() on headers (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Fix NULL pointer dereference in bnx2x_del_all_vlans() on some hw (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Send update-svid ramrod with retry/poll flags enabled (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Enable PTP only on the PF that initializes the port (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Remove configured vlans as part of unload sequence. (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Clear fip MAC when fcoe offload support is disabled (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Add storm FW version to ethtool driver query output. (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Add MBI version to ethtool driver query output. (Manish Chopra) [1663271]
+- [netdrv] drivers: net: remove <net/busy_poll.h> inclusion when not needed (Manish Chopra) [1663271]
+- [netdrv] bnx2x: remove ndo_poll_controller (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Provide VF link status in ndo_get_vf_config (Manish Chopra) [1663271]
+- [netdrv] bnx2x: Ignore bandwidth attention in single function mode (Manish Chopra) [1663271]
+- [block] block: remove CONFIG_LBDAF (Ming Lei) [1708452]
+- [kernel] sched/pelt: Fix warning and clean up IRQ PELT config (Phil Auld) [1637824]
+- [kernel] sched/pelt: Fix update_blocked_averages() for RT and DL classes (Phil Auld) [1637824]
+- [mm] mm, sched/numa: Remove remaining traces of NUMA rate-limiting (Phil Auld) [1637824]
+- [kernel] sched/fair: Fix cpu_util_wake() for 'execl' type workloads (Phil Auld) [1637824]
+- [kernel] sched/fair: Consider SD_NUMA when selecting the most idle group to schedule on (Phil Auld) [1637824]
+- [kernel] sched/numa: Migrate pages to local nodes quicker early in the lifetime of a task (Phil Auld) [1637824]
+- [mm] mm, sched/numa: Remove rate-limiting of automatic NUMA balancing migration (Phil Auld) [1637824]
+- [kernel] sched/numa: Avoid task migration for small NUMA improvement (Phil Auld) [1637824]
+- [mm] mm/migrate: Use spin_trylock() while resetting rate limit (Phil Auld) [1637824]
+- [kernel] sched/numa: Limit the conditions where scan period is reset (Phil Auld) [1637824]
+- [kernel] sched/numa: Reset scan rate whenever task moves across nodes (Phil Auld) [1637824]
+- [kernel] sched/numa: Pass destination CPU as a parameter to migrate_task_rq (Phil Auld) [1637824]
+- [kernel] sched/numa: Stop multiple tasks from moving to the CPU at the same time (Phil Auld) [1637824]
+- [kernel] sched/fair: Fix scale_rt_capacity() for SMT (Phil Auld) [1637824]
+- [kernel] sched/numa: Move task_numa_placement() closer to numa_migrate_preferred() (Phil Auld) [1637824]
+- [kernel] sched/numa: Use group_weights to identify if migration degrades locality (Phil Auld) [1637824]
+- [kernel] sched/numa: Update the scan period without holding the numa_group lock (Phil Auld) [1637824]
+- [kernel] sched/numa: Remove numa_has_capacity() (Phil Auld) [1637824]
+- [kernel] sched/numa: Modify migrate_swap() to accept additional parameters (Phil Auld) [1637824]
+- [kernel] sched/numa: Remove unused task_capacity from 'struct numa_stats' (Phil Auld) [1637824]
+- [kernel] sched/numa: Skip nodes that are at 'hoplimit' (Phil Auld) [1637824]
+- [kernel] sched/debug: Reverse the order of printing faults (Phil Auld) [1637824]
+- [kernel] sched/numa: Use task faults only if numa_group is not yet set up (Phil Auld) [1637824]
+- [kernel] sched/numa: Set preferred_node based on best_cpu (Phil Auld) [1637824]
+- [kernel] sched/numa: Simplify load_too_imbalanced() (Phil Auld) [1637824]
+- [kernel] sched/numa: Evaluate move once per node (Phil Auld) [1637824]
+- [kernel] sched/fair: Remove #ifdefs from scale_rt_capacity() (Phil Auld) [1637824]
+- [kernel] sched/cpufreq: Clarify sugov_get_util() (Phil Auld) [1637824]
+- [kernel] sched/sysctl: Remove unused sched_time_avg_ms sysctl (Phil Auld) [1637824]
+- [kernel] sched/core: Remove the rt_avg code (Phil Auld) [1637824]
+- [kernel] sched/core: Use PELT for scale_rt_capacity() (Phil Auld) [1637824]
+- [kernel] sched/cpufreq: Remove sugov_aggregate_util() (Phil Auld) [1637824]
+- [kernel] cpufreq/schedutil: Take time spent in interrupts into account (Phil Auld) [1637824]
+- [kernel] sched/irq: Add IRQ utilization tracking (Phil Auld) [1637824]
+- [kernel] cpufreq/schedutil: Use DL utilization tracking (Phil Auld) [1637824]
+- [kernel] sched/dl: Add dl_rq utilization tracking (Phil Auld) [1637824]
+- [kernel] cpufreq/schedutil: Use RT utilization tracking (Phil Auld) [1637824]
+- [kernel] sched/rt: Add rt_rq utilization tracking (Phil Auld) [1637824]
+- [kernel] sched/pelt: Move PELT related code in a dedicated file (Phil Auld) [1637824]
+- [char] ipmi_si: Potential array underflow in hotmod_handler() (Tony Camuso) [1665131]
+- [char] ipmi_si: Remove hacks for adding a dummy platform devices (Tony Camuso) [1665131]
+- [char] ipmi_si: Consolidate scanning the platform bus (Tony Camuso) [1665131]
+- [char] ipmi_si: Remove hotmod devices on removal and exit (Tony Camuso) [1665131]
+- [char] ipmi_si: Remove hardcode IPMI devices by scanning the platform bus (Tony Camuso) [1665131]
+- [char] ipmi_si: Switch hotmod to use a platform device (Tony Camuso) [1665131]
+- [char] ipmi: Fix failure on SMBIOS specified devices (Tony Camuso) [1665131]
+- [char] ipmi: Consolidate the adding of platform devices (Tony Camuso) [1665131]
+- [char] ipmi_si: Rename addr_type to addr_space to match what it does (Tony Camuso) [1665131]
+- [char] ipmi_si: Convert some types into unsigned (Tony Camuso) [1665131]
+- [char] ipmi: ipmi_si_hardcode.c: init si_type array to fix a crash (Tony Camuso) [1665131]
+- [char] ipmi_si: Fix crash when using hard-coded device (Tony Camuso) [1665131]
+- [char] ipmi: Use dedicated API for copying a UUID (Tony Camuso) [1665131]
+- [char] ipmi: Use defined constant for UUID representation (Tony Camuso) [1665131]
+- [char] ipmi:ssif: Change some pr_xxx to dev_xxx calls (Tony Camuso) [1665131]
+- [char] ipmi: kcs_bmc: handle devm_kasprintf() failure case (Tony Camuso) [1665131]
+- [char] ipmi: Fix return value when a message is truncated (Tony Camuso) [1665131]
+- [char] ipmi: clean an indentation issue, remove extraneous space (Tony Camuso) [1665131]
+- [char] ipmi: Make the smi watcher be disabled immediately when not needed (Tony Camuso) [1665131]
+- [char] ipmi: Fix how the lower layers are told to watch for messages (Tony Camuso) [1665131]
+- [char] ipmi: Fix SSIF flag requests (Tony Camuso) [1665131]
+- [char] ipmi_si: fix use-after-free of resource->name (Tony Camuso) [1665131]
+- [char] ipmi: Don't initialize anything in the core until something uses it (Tony Camuso) [1665131]
+- [char] ipmi:ssif: Fix handling of multi-part return messages (Tony Camuso) [1665131]
+- [char] ipmi:dmi: Use pr_fmt in the IPMI DMI code (Tony Camuso) [1665131]
+- [char] ipmi: Remove platform driver overrides and use the id_table (Tony Camuso) [1665131]
+- [char] ipmi: msghandler: Add and use pr_fmt and dev_fmt, remove PFX (Tony Camuso) [1665131]
+- [char] ipmi: Use more common logging styles (Tony Camuso) [1665131]
+- [acpi] ACPI / glue: Split dev_is_platform() out of module for wide use (Tony Camuso) [1665131]
+
+* Thu May 16 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-90.el8]
+- [scsi] scsi: hpsa: bump driver version (Joseph Szczypek) [1672669]
+- [scsi] scsi: hpsa: remove timeout from TURs (Joseph Szczypek) [1672669]
+- [scsi] scsi: hpsa: clean up two indentation issues (Joseph Szczypek) [1672669]
+- [scsi] scsi: hpsa: mark expected switch fall-throughs (Joseph Szczypek) [1672669]
+- [scsi] scsi: hpsa: switch to generic DMA API (Joseph Szczypek) [1672669]
+- [scsi] scsi: hpsa: Use vmemdup_user to replace the open code (Joseph Szczypek) [1672669]
+- [netdrv] ibmvnic: Add device identification to requested IRQs (Steve Best) [1665717]
+- [crypto] crypto: authenc - fix parsing key with misaligned rta_len (Herbert Xu) [1707546]
+- [block] block: don't drain in-progress dispatch in blk_cleanup_queue() (Ming Lei) [1694879]
+- [block] blk-mq: move cancel of hctx->run_work into blk_mq_hw_sysfs_release (Ming Lei) [1694879]
+- [include] blk-mq: always free hctx after request queue is freed (Ming Lei) [1694879]
+- [block] blk-mq: split blk_mq_alloc_and_init_hctx into two parts (Ming Lei) [1694879]
+- [block] blk-mq: free hw queue's resource in hctx's release handler (Ming Lei) [1694879]
+- [block] blk-mq: move cancel of requeue_work into blk_mq_release (Ming Lei) [1694879]
+- [block] blk-mq: grab .q_usage_counter when queuing request from plug code path (Ming Lei) [1694879]
+- [block] block: fix use-after-free on gendisk (Ming Lei) [1694879]
+- [netdrv] bonding: fix event handling for stacked bonds (Jarod Wilson) [1708390]
+- [netdrv] bonding: show full hw address in sysfs for slave entries (Jarod Wilson) [1708390]
+- [netdrv] bonding: fix PACKET_ORIGDEV regression (Jarod Wilson) [1708390]
+- [netdrv] bonding: check slave set command firstly (Jarod Wilson) [1708390]
+- [netdrv] bonding: count master 3ad stats separately (Jarod Wilson) [1708390]
+- [netdrv] bonding: add support for xstats and export 3ad stats (Jarod Wilson) [1708390]
+- [netdrv] bonding: add 3ad stats (Jarod Wilson) [1708390]
+- [netdrv] bonding: 3ad: remove bond_3ad_rx_indication's length argument (Jarod Wilson) [1708390]
+- [netdrv] bonding: adjust style of bond_3ad_rx_indication (Jarod Wilson) [1708390]
+- [netdrv] bonding: update nest level on unlink (Jarod Wilson) [1708390]
+- [netdrv] bonding: fix indentation issues, remove extra spaces (Jarod Wilson) [1708390]
+- [netdrv] bonding: convert to DEFINE_SHOW_ATTRIBUTE (Jarod Wilson) [1708390]
+- [netdrv] bonding: fix 802.3ad state sent to partner when unbinding slave (Jarod Wilson) [1708390]
+- [netdrv] bonding: use netpoll_poll_dev() helper (Jarod Wilson) [1708390]
+- [net] netpoll: do not test NAPI_STATE_SCHED in poll_one_napi() (Jarod Wilson) [1708390]
+- [net] netpoll: make ndo_poll_controller() optional (Jarod Wilson) [1708390]
+- [netdrv] bonding: don't cast const buf in sysfs store (Jarod Wilson) [1708390]
+- [netdrv] netdevsim: fix sa_idx out of bounds check (Ivan Vecera) [1708373]
+- [tools] selftests: rtnetlink: add ipsec offload API test (Ivan Vecera) [1708373]
+- [netdrv] netdevsim: add ipsec offload testing (Ivan Vecera) [1708373]
+- [tools] selftests: rtnetlink: use dummydev as a test device (Ivan Vecera) [1708373]
+- [tools] selftests: rtnetlink: clear the return code at start of ipsec test (Ivan Vecera) [1708373]
+- [tools] selftests: rtnetlink: use a local IP address for IPsec tests (Ivan Vecera) [1708373]
+- [tools] selftests: rtnetlink: hide complaint from terminated monitor (Ivan Vecera) [1708373]
+- [powerpc] powerpc/watchdog: Use hrtimers for per-CPU heartbeat (Steve Best) [1708327]
+- [netdrv] ixgbevf: Update driver version for RHEL-8.1.0 (Ken Cox) [1659166]
+- [netdrv] drivers: net: intel: use secpath helpers in more places (Ken Cox) [1659166]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Ken Cox) [1659166]
+- [netdrv] ixgbevf: add support for software timestamps (Ken Cox) [1659166]
+- [netdrv] ixgbe/ixgbevf: fix XFRM_ALGO dependency (Ken Cox) [1659166]
+- [netdrv] ixgbevf: off by one in ixgbevf_ipsec_tx() (Ken Cox) [1659166]
+- [netdrv] ixgbevf: fix msglen for ipsec mbx messages (Ken Cox) [1659166]
+- [netdrv] ixgbevf: remove ndo_poll_controller (Ken Cox) [1659166]
+- [netdrv] intel-ethernet: use correct module license (Ken Cox) [1659166]
+- [netdrv] ixgbevf: enable VF IPsec offload operations (Ken Cox) [1659166]
+- [netdrv] ixgbevf: add VF IPsec offload code (Ken Cox) [1659166]
+- [netdrv] ixgbevf: add defines for IPsec offload request (Ken Cox) [1659166]
+- [netdrv] ixgbevf: VF2VF TCP RSS (Ken Cox) [1659166]
+- [netdrv] ixgbe: Update driver version for RHEL-8.1.0 (Ken Cox) [1659164]
+- [netdrv] intel: correct return from set features callback (Ken Cox) [1659164]
+- [netdrv] ixgbe: don't do any AF_XDP zero-copy transmit if netif is not OK (Ken Cox) [1659164]
+- [netdrv] ixgbe: fix potential RX buffer starvation for AF_XDP (Ken Cox) [1659164]
+- [netdrv] ixgbe: fix older devices that do not support IXGBE_MRQC_L3L4TXSWEN (Ken Cox) [1659164]
+- [netdrv] net: bpf: remove XDP_QUERY_XSK_UMEM enumerator (Ken Cox) [1659164]
+- [netdrv] ixgbe: Use struct_size() helper (Ken Cox) [1659164]
+- [netdrv] ixgbe: remove magic constant in ixgbe_reset_hw_82599() (Ken Cox) [1659164]
+- [netdrv] ixgbe: use mii_bus to handle MII related ioctls (Ken Cox) [1659164]
+- [netdrv] ixgbe: register a mdiobus (Ken Cox) [1659164]
+- [netdrv] drivers: net: intel: use secpath helpers in more places (Ken Cox) [1659164]
+- [netdrv] ixgbe: Fix race when the VF driver does a reset (Ken Cox) [1659164]
+- [netdrv] ixgbe: recognize 1000BaseLX SFP modules as 1Gbps (Ken Cox) [1659164]
+- [netdrv] ixgbe: Replace synchronize_sched() with synchronize_rcu() (Ken Cox) [1659164]
+- [netdrv] i40e/ixgbe/igb: fail on new WoL flag setting WAKE_MAGICSECURE (Ken Cox) [1659164]
+- [netdrv] intel-ethernet: software timestamp skbs as late as possible (Ken Cox) [1659164]
+- [netdrv] ixgbe: allow IPsec Tx offload in VEPA mode (Ken Cox) [1659164]
+- [netdrv] ixgbe: don't clear_bit on xdp_ring->state if xdp_ring is null (Ken Cox) [1659164]
+- [netdrv] ixgbe: fix MAC anti-spoofing filter after VFLR (Ken Cox) [1659164]
+- [netdrv] ixgbe/ixgbevf: fix XFRM_ALGO dependency (Ken Cox) [1659164]
+- [netdrv] drivers: net: remove <net/busy_poll.h> inclusion when not needed (Ken Cox) [1659164]
+- [netdrv] ixgbe: check return value of napi_complete_done() (Ken Cox) [1659164]
+- [netdrv] ixgbe: add AF_XDP zero-copy Tx support (Ken Cox) [1659164]
+- [netdrv] ixgbe: move common Tx functions to ixgbe_txrx_common.h (Ken Cox) [1659164]
+- [netdrv] ixgbe: add AF_XDP zero-copy Rx support (Ken Cox) [1659164]
+- [netdrv] ixgbe: move common Rx functions to ixgbe_txrx_common.h (Ken Cox) [1659164]
+- [netdrv] ixgbe: added Rx/Tx ring disable/enable functions (Ken Cox) [1659164]
+- [netdrv] ixgbe: Fix crash with VFs and flow director on interface flap (Ken Cox) [1659164]
+- [netdrv] ixgbe: remove redundant function ixgbe_fw_recovery_mode() (Ken Cox) [1659164]
+- [netdrv] ixgbe: Fix ixgbe TX hangs with XDP_TX beyond queue limit (Ken Cox) [1659164]
+- [netdrv] ixgbe: remove ndo_poll_controller (Ken Cox) [1659164]
+- [netdrv] intel-ethernet: use correct module license (Ken Cox) [1659164]
+- [netdrv] ixgbe: fix the return value for unsupported VF offload (Ken Cox) [1659164]
+- [netdrv] ixgbe: disallow IPsec Tx offload when in SR-IOV mode (Ken Cox) [1659164]
+- [netdrv] ixgbe: add VF IPsec offload request message handling (Ken Cox) [1659164]
+- [netdrv] ixgbe: add VF IPsec offload enable flag (Ken Cox) [1659164]
+- [netdrv] ixgbe: add VF IPsec management (Ken Cox) [1659164]
+- [netdrv] ixgbe: prep IPsec constants for later use (Ken Cox) [1659164]
+- [netdrv] ixgbe: reload IPsec IP table after sa tables (Ken Cox) [1659164]
+- [netdrv] ixgbe: don't clear IPsec sa counters on HW clearing (Ken Cox) [1659164]
+- [netdrv] ixgbe: firmware recovery mode (Ken Cox) [1659164]
+- [netdrv] ixgbe: fix driver behaviour after issuing VFLR (Ken Cox) [1659164]
+- [netdrv] ixgbe: Prevent unsupported configurations with XDP (Ken Cox) [1659164]
+- [netdrv] ixgbe: Refactor queue disable logic to take completion time into account (Ken Cox) [1659164]
+- [netdrv] ixgbe: Reorder Tx/Rx shutdown to reduce time needed to stop device (Ken Cox) [1659164]
+- [netdrv] ixgbe: add ipsec security registers into ethtool register dump (Ken Cox) [1659164]
+- [netdrv] ixgbe: Do not allow LRO or MTU change with XDP (Ken Cox) [1659164]
+- [wireless] brcmfmac: add subtype check for event handling in data path (Stanislaw Gruszka) [1705386] {CVE-2019-9500}
+- [wireless] brcmfmac: assure SSID length from firmware is limited (Stanislaw Gruszka) [1705386] {CVE-2019-9500}
+- [base] driver core: Postpone DMA tear-down until after devres release (Maurizio Lombardi) [1698053]
+
+* Wed May 15 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-89.el8]
+- [of] of: Add missing exports of node name compare functions (Neil Horman) [1665660]
+- [of] of: add node name compare helper functions (Neil Horman) [1665660]
+- [include] gpio: Add API to explicitly name a consumer (Neil Horman) [1665660]
+- [drivers] spi: spi-gpio: fix SPI_CS_HIGH capability (Neil Horman) [1665660]
+- [drivers] spi: use gpio[d]_set_value_cansleep for setting chipselect GPIO (Neil Horman) [1665660]
+- [drivers] spi: gpio: Advertise support for SPI_CS_HIGH (Neil Horman) [1665660]
+- [include] spi: support inter-word delay requirement for devices (Neil Horman) [1665660]
+- [drivers] spi: dw: Fix default polarity of native chipselect (Neil Horman) [1665660]
+- [drivers] spi: Support high CS when using descriptors (Neil Horman) [1665660]
+- [include] spi: Go back to immediate teardown (Neil Horman) [1665660]
+- [drivers] spi: dw: change snprintf to scnprintf for possible overflow (Neil Horman) [1665660]
+- [drivers] spi: dw: fix warning unused variable 'ret' (Neil Horman) [1665660]
+- [include] spi: core: avoid waking pump thread from spi_sync instead run teardown delayed (Neil Horman) [1665660]
+- [drivers] spi: dw: Convert to use CS GPIO descriptors (Neil Horman) [1665660]
+- [include] spi: Optionally use GPIO descriptors for CS GPIOs (Neil Horman) [1665660]
+- [drivers] spi: dw: fix potential variable assignment error (Neil Horman) [1665660]
+- [drivers] spi: Use of_node_name_eq for node name comparisons (Neil Horman) [1665660]
+- [drivers] spi: dw-mmio: add ACPI support (Neil Horman) [1665660]
+- [include] spi: add support for octal mode I/O data transfer (Neil Horman) [1665660]
+- [drivers] spi: Fix formatting of header block (Neil Horman) [1665660]
+- [drivers] spi: Fix core transfer waits after slave support (Neil Horman) [1665660]
+- [drivers] spi: Deal with slaves that return from transfer_one() unfinished (Neil Horman) [1665660]
+- [include] spi: gpio: Support 3WIRE high-impedance turn-around (Neil Horman) [1665660]
+- [drivers] spi: Make GPIO CSs honour the SPI_NO_CS flag (Neil Horman) [1665660]
+- [drivers] dw: spi: add support for Amazon's Alpine spi controller (Neil Horman) [1665660]
+- [include] spi: Add driver_override SPI device attribute (Neil Horman) [1665660]
+- [include] spi: make OF helper available for others (Neil Horman) [1665660]
+- [include] spi: switch to SPDX license identifier (Neil Horman) [1665660]
+- [drivers] spi: always use software fallback for SPI_CS_WORD when using cs_gio (Neil Horman) [1665660]
+- [drivers] spi: add software implementation for SPI_CS_WORD (Neil Horman) [1665660]
+- [include] spi: add new SPI_CS_WORD flag (Neil Horman) [1665660]
+- [drivers] spi: gpio: No MISO does not imply no RX (Neil Horman) [1665660]
+- [drivers] spi: dw: support 4-16 bits per word (Neil Horman) [1665660]
+- [drivers] spi: spi-gpio: Remove set but not used variable 'pdata' (Neil Horman) [1665660]
+- [drivers] spi: Do not print a message if spi_controller_{suspend,resume}() fails (Neil Horman) [1665660]
+- [drivers] spi: gpio: Fix copy-and-paste error (Neil Horman) [1665660]
+- [drivers] spi: dw-mmio: avoid hardcoded field mask (Neil Horman) [1665660]
+- [drivers] spi: dw-mmio: add MSCC Jaguar2 support (Neil Horman) [1665660]
+- [include] spi: Introduce one new field to set word delay (Neil Horman) [1665660]
+- [drivers] spi: Fix double IDR allocation with DT aliases (Neil Horman) [1665660]
+- [drivers] spi: fix IDR collision on systems with both fixed and dynamic SPI bus numbers (Neil Horman) [1665660]
+- [drivers] spi: spi-gpio: add SPI_3WIRE support (Neil Horman) [1665660]
+- [drivers] spi: add flags parameter to txrx_word function pointers (Neil Horman) [1665660]
+- [drivers] spi: dw-mmio: add MSCC Ocelot support (Neil Horman) [1665660]
+- [drivers] spi: dw: export dw_spi_set_cs (Neil Horman) [1665660]
+- [drivers] spi: dw: allow providing own set_cs callback (Neil Horman) [1665660]
+- [drivers] spi: dw: fix possible race condition (Neil Horman) [1665660]
+- [acpi] ACPI / APD: Add clock frequency for Hisilicon Hip08 SPI controller (Neil Horman) [1665660]
+- [md] md/raid: raid5 preserve the writeback action after the parity check (Nigel Croxon) [1702309]
+- [md] Revert "Don't jump to compute_result state from check_result state" (Nigel Croxon) [1702309]
+- [md] md: return -ENODEV if rdev has no mddev assigned (Nigel Croxon) [1702309]
+- [md] md: add __acquires/__releases annotations to handle_active_stripes (Nigel Croxon) [1702309]
+- [md] md: add __acquires/__releases annotations to (un)lock_two_stripes (Nigel Croxon) [1702309]
+- [md] md: mark md_cluster_mod static (Nigel Croxon) [1702309]
+- [md] md: use correct type in super_1_sync (Nigel Croxon) [1702309]
+- [md] md: use correct type in super_1_load (Nigel Croxon) [1702309]
+- [md] md: use correct types in md_bitmap_print_sb (Nigel Croxon) [1702309]
+- [md] md: add a missing endianness conversion in check_sb_changes (Nigel Croxon) [1702309]
+- [md] md: add mddev->pers to avoid potential NULL pointer dereference (Nigel Croxon) [1702309]
+- [md] md: batch flush requests. (Nigel Croxon) [1702309]
+- [md] Revert "MD: fix lock contention for flush bios" (Nigel Croxon) [1702309]
+- [md] Don't jump to compute_result state from check_result state (Nigel Croxon) [1702309]
+- [netdrv] bnxt_en: Reset device on RX buffer errors. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Improve RX consumer index validity check. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Drop oversize TX packets to prevent errors. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Wait longer for the firmware message response to complete. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix typo in firmware message timeout logic. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Return relevant error code when offload fails (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add support for mdio read/write to external PHY (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Propagate trusted VF attribute to firmware. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add support for BCM957504 (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.47. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Disable interrupts when allocating CP rings or NQs. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix context memory allocation. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix ring checking logic on 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Adjust default RX coalescing ticks to 10 us. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Support for 64-bit flow handle. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Increase context memory allocations on 57500 chips for RDMA. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add Level 2 context memory paging support. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Enhance bnxt_alloc_ring()/bnxt_free_ring(). (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add support for 2nd firmware message channel. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Introduce bnxt_get_hwrm_resp_addr & bnxt_get_hwrm_seq_id routines. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Avoid arithmetic on void * pointer. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Use macros for firmware message doorbell offsets. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Set hwrm_intr_seq_id value to its inverted value. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.33. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix ethtool self-test loopback. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: query force speeds before disabling autoneg mode. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Do not free port statistics buffer when device is down. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Save ring statistics before reset. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Return linux standard errors in bnxt_ethtool.c (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Don't set ETS on unused TCs. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add ethtool -S priority counters. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add SR-IOV support for 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Disable MSIX before re-reserving NQs/CMPL rings. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Reserve 1 stat_ctx for RDMA driver. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Do not modify max_stat_ctxs after RDMA driver requests/frees stat_ctxs (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: get rid of num_stat_ctxs variable (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add bnxt_get_avail_cp_rings_for_en() helper function. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Store the maximum NQs available on the PF. (Selvin Xavier) [1664477]
+- [netdrv] bnxt: remove printing of hwrm message (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix _bnxt_get_max_rings() for 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix NQ/CP rings accounting on the new 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Keep track of reserved IRQs. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix CNP CoS queue regression. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix filling time in bnxt_fill_coredump_record() (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add software "missed_irqs" counter. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Workaround occasional TX timeout on 57500 A0. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Disable RDMA support on the 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix rx_l4_csum_errors counter on 57500 devices. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix RSS context allocation. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Copy and paste bug in extended tx_stats (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add PCI ID for BCM57508 device. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add new NAPI poll function for 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Refactor bnxt_poll_work(). (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add coalescing setup for 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Use bnxt_cp_ring_info struct pointer as parameter for RX path. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add RSS support for 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Increase RSS context array count and skip ring groups on 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Allocate/Free CP rings for 57500 series chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Modify bnxt_ring_alloc_send_msg() to support 57500 chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add helper functions to get firmware CP ring ID. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Allocate completion ring structures for 57500 series chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Modify the ring reservation functions for 57500 series chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Adjust MSIX and ring groups for 57500 series chips. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Re-structure doorbells. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add 57500 new chip ID and basic structures. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Configure context memory on new devices. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Check context memory requirements from firmware. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add new flags to setup new page table PTE bits on newer devices. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Refactor bnxt_ring_struct. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Update interrupt coalescing logic. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add maximum extended request length fw message support. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add additional extended port statistics. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Update firmware interface spec. to 1.10.0.3. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Remove unnecessary unsigned integer comparison and initialize variable (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: get the reduced max_irqs by the ones used by RDMA (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: free hwrm resources, if driver probe fails. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix enables field in HWRM_QUEUE_COS2BW_CFG request (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix VNIC reservations on the PF. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add a driver specific gre_ver_check devlink parameter. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Use msix_vec_per_pf_max and msix_vec_per_pf_min devlink params. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: return proper error when FW returns HWRM_ERR_CODE_RESOURCE_ACCESS_DENIED (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Use ignore_ari devlink parameter (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix TX timeout during netpoll. (Selvin Xavier) [1664477]
+- [netdrv] bnxt: remove ndo_poll_controller (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: don't try to offload VLAN 'modify' action (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: remove set but not used variable 'addr_type' (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: remove set but not used variable 'rx_stats' (Selvin Xavier) [1664477]
+- [netdrv] net: bnxt: Fix a uninitialized variable warning. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: take coredump_record structure off stack (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: avoid string overflow for record->system_name (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Fix strcpy() warnings in bnxt_ethtool.c (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Do not use the CNP CoS queue for networking traffic. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add DCBNL DSCP application protocol support. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add hwmon sysfs support to read temperature (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Notify firmware about IF state changes. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Move firmware related flags to a new fw_cap field in struct bnxt. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add BNXT_NEW_RM() macro. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add support for ethtool get dump. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Update RSS setup and GRO-HW logic according to the latest spec. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add new VF resource allocation strategy mode. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add PHY retry logic. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add external loopback test to ethtool selftest. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Adjust timer based on ethtool stats-block-usecs settings. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Update firmware interface version to 1.9.2.25. (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: combine 'else if' and 'else' into single branch (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: remove redundant debug register dma mem allocation (Selvin Xavier) [1664477]
+- [netdrv] bnxt_en: Add bnxt_en initial params table and register it. (Selvin Xavier) [1664477]
+- [netdrv] sfc: mcdi_port: Mark expected switch fall-through (Jarod Wilson) [1685478]
+- [netdrv] sfc: ensure recovery after allocation failures (Jarod Wilson) [1685478]
+- [netdrv] sfc: Replace dev_kfree_skb_any by dev_consume_skb_any (Jarod Wilson) [1685478]
+- [netdrv] sfc: add bundle partition definitions to mtd (Jarod Wilson) [1685478]
+- [netdrv] sfc: Replace spin_is_locked() with lockdep (Jarod Wilson) [1685478]
+- [netdrv] sfc: remove ndo_poll_controller (Jarod Wilson) [1685478]
+- [iommu] iommu/amd: Set exclusion range correctly (Jerry Snitselaar) [1702766]
+- [iommu] iommu/amd: Reserve exclusion range in iova-domain (Jerry Snitselaar) [1694835]
+- [scsi] scsi: mpt3sas: Fix kernel panic during expander reset (Tomas Henzl) [1677693]
+- [mm] mm/vmstat.c: fix /proc/vmstat format for CONFIG_DEBUG_TLBFLUSH=y CONFIG_SMP=n (Waiman Long) [1705607]
+- [mm] x86/mm: Drop usage of __flush_tlb_all() in kernel_physical_mapping_init() (Waiman Long) [1705607]
+- [include] x86/mm: Validate kernel_physical_mapping_init() PTE population (Waiman Long) [1705607]
+- [include] generic/pgtable: Introduce set_pte_safe() (Waiman Long) [1705607]
+- [include] generic/pgtable: Introduce {p4d,pgd}_same() (Waiman Long) [1705607]
+- [include] generic/pgtable: Make {pmd, pud}_same() unconditionally available (Waiman Long) [1705607]
+- [mm] percpu: stop printing kernel addresses (Waiman Long) [1705607]
+- [x86] x86/speculation: Prevent deadlock on ssb_state::lock (Waiman Long) [1705607]
+- [fs] debugfs: fix use-after-free on symlink traversal (Waiman Long) [1705607]
+- [lib] debugobjects: avoid recursive calls with kmemleak (Waiman Long) [1705607]
+- [mm] mm/swapfile.c: use kvzalloc for swap_info_struct allocation (Waiman Long) [1705607]
+- [mm] hugetlbfs: fix kernel BUG at fs/hugetlbfs/inode.c:444! (Waiman Long) [1705607]
+- [include] watchdog/core: Add missing prototypes for weak functions (Waiman Long) [1705607]
+- [mm] memory_hotplug: cond_resched in __remove_pages (Waiman Long) [1705607]
+- [kernel] genirq: Fix race on spurious interrupt detection (Waiman Long) [1705607]
+- [kernel] printk: Fix panic caused by passing log_buf_len to command line (Waiman Long) [1705607]
+- [mm] mm/hmm: fix race between hmm_mirror_unregister() and mmu_notifier callback (Waiman Long) [1705607]
+- [mm] mm/rmap: map_pte() was not handling private ZONE_DEVICE page properly (Waiman Long) [1705607]
+- [mm] hugetlbfs: dirty pages as they are added to pagecache (Waiman Long) [1705607]
+- [fs] mm: /proc/pid/smaps_rollup: fix NULL pointer deref in smaps_pte_range() (Waiman Long) [1705607]
+- [kernel] sched/fair: Fix the min_vruntime update logic in dequeue_entity() (Waiman Long) [1705607]
+- [mm] x86/mm/pat: Disable preemption around __flush_tlb_all() (Waiman Long) [1705607]
+- [x86] x86/corruption-check: Fix panic in memory_corruption_check() when boot option without value is provided (Waiman Long) [1705607]
+- [x86] x86/time: Correct the attribute on jiffies' definition (Waiman Long) [1705607]
+- [x86] x86/percpu: Fix this_cpu_read() (Waiman Long) [1705607]
+- [x86] x86/tsc: Force inlining of cyc2ns bits (Waiman Long) [1705607]
+- [mm] mm/migrate.c: split only transparent huge pages when allocation fails (Waiman Long) [1705607]
+- [mm] mm/thp: fix call to mmu_notifier in set_pmd_migration_entry() v2 (Waiman Long) [1705607]
+- [mm] mm/mmap.c: don't clobber partially overlapping VMA with MAP_FIXED_NOREPLACE (Waiman Long) [1705607]
+- [mm] percpu: stop leaking bitmap metadata blocks (Waiman Long) [1705607]
+- [lib] vsprintf: Fix off-by-one bug in bstr_printf() processing dereferenced pointers (Waiman Long) [1705607]
+- [mm] mm/vmstat.c: fix outdated vmstat_text (Waiman Long) [1705607]
+- [base] PM / core: Clear the direct_complete flag on errors (Waiman Long) [1705607]
+- [tools] x86/vdso: Fix vDSO syscall fallback asm constraint regression (Waiman Long) [1705607]
+- [x86] x86/vdso: Only enable vDSO retpolines when enabled and supported (Waiman Long) [1705607]
+- [tools] selftests/x86: Add clock_gettime() tests to test_vdso (Waiman Long) [1705607]
+- [x86] x86/vdso: Fix asm constraints on vDSO syscall fallbacks (Waiman Long) [1705607]
+- [drivers] clocksource/drivers/timer-atmel-pit: Properly handle error cases (Waiman Long) [1705607]
+- [mm] mm/vmstat.c: skip NR_TLB_REMOTE_FLUSH* properly (Waiman Long) [1705607]
+- [mm] mm, thp: fix mlocking THP page with migration enabled (Waiman Long) [1705607]
+- [mm] mm: migration: fix migration of huge PMD shared pages (Waiman Long) [1705607]
+- [net] net/smc: improve smc_conn_create reason codes (Philipp Rudo) [1703471]
+- [net] net/smc: improve smc_listen_work reason codes (Philipp Rudo) [1703471]
+- [net] net/smc: code cleanup smc_listen_work (Philipp Rudo) [1703471]
+- [net] net/smc: cleanup of get vlan id (Philipp Rudo) [1703471]
+- [net] net/smc: consolidate function parameters (Philipp Rudo) [1703471]
+- [net] net/smc: check for ip prefix and subnet (Philipp Rudo) [1703471]
+- [net] net/smc: fallback to TCP after connect problems (Philipp Rudo) [1703471]
+- [net] net/smc: nonblocking connect rework (Philipp Rudo) [1703471]
+- [net] net/smc: move unhash before release of clcsock (Philipp Rudo) [1703471]
+- [net] net/smc: fix return code from FLUSH command (Philipp Rudo) [1703471]
+- [net] net/smc: propagate file from SMC to TCP socket (Philipp Rudo) [1703471]
+- [net] net/smc: fix a NULL pointer dereference (Philipp Rudo) [1703471]
+- [net] net/smc: wait for pending work before clcsock release_sock (Philipp Rudo) [1703471]
+- [net] net/smc: allow pnetid-less configuration (Philipp Rudo) [1700797]
+- [net] net/smc: allow PCI IDs as ib device names in the pnet table (Philipp Rudo) [1700797]
+- [net] net/smc: add pnet table namespace support (Philipp Rudo) [1700797]
+- [net] net/smc: add smcd support to the pnet table (Philipp Rudo) [1700797]
+- [net] net/smc: rework pnet table (Philipp Rudo) [1700797]
+- [net] net/smc: cleanup for smcr_tx_sndbuf_nonempty (Philipp Rudo) [1700797]
+
+* Tue May 14 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-88.el8]
+- [tools] tools power turbostat: Override CFLAGS assignments and add LDFLAGS to build command (Steve Best) [1705959]
+- [tools] tools/power turbostat: update version number (Steve Best) [1705959]
+- [tools] tools/power turbostat: Add checks for failure of fgets() and fscanf() (Steve Best) [1705959]
+- [tools] tools/power turbostat: Warn on bad ACPI LPIT data (Steve Best) [1705959]
+- [tools] tools/power turbostat: Also read package power on AMD F17h (Zen) (Steve Best) [1705959]
+- [tools] tools/power turbostat: Add support for AMD Fam 17h (Zen) RAPL (Steve Best) [1705959]
+- [tools] tools/power turbostat: Do not display an error on systems without a cpufreq driver (Steve Best) [1705959]
+- [tools] tools/power turbostat: Add Die column (Steve Best) [1705959]
+- [tools] tools/power turbostat: Cleanup CNL-specific code (Steve Best) [1705959]
+- [tools] tools/power turbostat: Cleanup CC3-skip code (Steve Best) [1705959]
+- [tools] tools/power turbostat: Restore ability to execute in topology-order (Steve Best) [1705959]
+- [tools] tools/power turbostat: fix goldmont C-state limit decoding (Steve Best) [1705959]
+- [tools] tools/power turbostat: reduce debug output (Steve Best) [1705959]
+- [tools] tools/power turbosat: fix AMD APIC-id output (Steve Best) [1705959]
+- [mmc] mmc: sdhci-iproc: Add ACPI support (Mark Langsdorf) [1576966]
+- [mmc] mmc: sdhci-pltfm: Convert DT properties to generic device properties (Mark Langsdorf) [1576966]
+- [tty] serial: 8250_dw: Add ACPI support for uart on Broadcom SoC (Mark Langsdorf) [1576966]
+- [watchdog] watchdog: sp805: Add clock-frequency property (Mark Langsdorf) [1576966]
+- [watchdog] watchdog: sp805: set WDOG_HW_RUNNING when appropriate (Mark Langsdorf) [1576966]
+- [thermal] thermal: broadcom: Add Stingray thermal driver (Mark Langsdorf) [1576966]
+- [hv] hv: vmbus: Change server monitor_pages index to 0 (Mohammed Gamal) [1691383]
+- [kernel] hv: vmbus: Expose counters for interrupts and full conditions (Mohammed Gamal) [1691383]
+- [kernel] vmbus: Switch to use new generic UUID API (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Check for ring when getting debug info (Mohammed Gamal) [1691383]
+- [x86] hyper-v: move synic/stimer control structures definitions to hyperv-tlfs.h (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Return -EINVAL for the sys files for unopened channels (Mohammed Gamal) [1691383]
+- [hv] x86, hyperv: remove PCI dependency (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Offload the handling of channels to two workqueues (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: check the creation_status in vmbus_establish_gpadl() (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Remove the useless API vmbus_get_outgoing_channel() (Mohammed Gamal) [1691383]
+- [hv] hv: kvp: Use u to print U32 (Mohammed Gamal) [1691383]
+- [hv] hv_utils: update name in struct hv_driver util_drv (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Get rid of unnecessary state in hv_context (Mohammed Gamal) [1691383]
+- [hv] hv: kvp: Fix the recent regression caused by incorrect clean-up (Mohammed Gamal) [1691383]
+- [hv] hv_balloon: Replace spin_is_locked() with lockdep (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Use cpumask_var_t for on-stack cpu mask (Mohammed Gamal) [1691383]
+- [hv] hv: kvp: Fix two "this statement may fall through" warnings (Mohammed Gamal) [1691383]
+- [hv] hv: kvp: Fix the indentation of some "break" statements (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Fix the descriptions of some function parameters (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Use get/put_cpu() in vmbus_connect() (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Fix synic per-cpu context initialization (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Cleanup synic memory free path (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Remove use of slow_virt_to_phys() (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: add numa_node to sysfs (Mohammed Gamal) [1691383]
+- [x86] hv: vmbus: Get rid of MSR access from vmbus_drv.c (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Fix the issue with freeing up hv_ctl_table_hdr (Mohammed Gamal) [1691383]
+- [hv] hv: vmus: Fix the check for return value from kmsg get dump buffer (Mohammed Gamal) [1691383]
+- [hv] hv: Send one page worth of kmsg dump over Hyper-V during panic (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Remove x86 MSR refs in arch independent code (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Fix the offer_in_progress in vmbus_process_offer() (Mohammed Gamal) [1691383]
+- [hv] hv: vmbus: Add comments on ring buffer signaling (Mohammed Gamal) [1691383]
+- [video] use the new async probing feature for the hyperv drivers (Mohammed Gamal) [1691383]
+- [rpmspec] kernel-packaging: Remove kernel files from kernel-modules-extra package (Prarit Bhargava) [1705216]
+- [fs] xfs: don't ever put nlink > 0 inodes on the unlinked list (Brian Foster) [1693063]
+- [fs] xfs: reserve blocks for ifree transaction during log recovery (Brian Foster) [1693063]
+- [fs] xfs: rename m_inotbt_nores to m_finobt_nores (Brian Foster) [1693063]
+- [net] xfrm: Honor original L3 slave device in xfrmi policy lookup (Herbert Xu) [1702198]
+- [net] xfrm: Fix inbound traffic via XFRM interfaces across network namespaces (Herbert Xu) [1702198]
+- [net] xfrm: Make set-mark default behavior backward compatible (Herbert Xu) [1702198]
+- [net] xfrm: remove unnecessary check in xfrmi_get_stats64 (Herbert Xu) [1702198]
+- [net] xfrm: fix gro_cells leak when remove virtual xfrm interfaces (Herbert Xu) [1702198]
+- [net] xfrm: Make function xfrmi_get_link_net() static (Herbert Xu) [1702198]
+- [net] xfrm: fix ptr_ret.cocci warnings (Herbert Xu) [1702198]
+- [net] xfrm: Return detailed errors from xfrmi_newlink (Herbert Xu) [1702198]
+- [net] xfrm: Allow xfrmi if_id to be updated by UPDSA (Herbert Xu) [1702198]
+- [net] xfrm: Remove xfrmi interface ID from flowi (Herbert Xu) [1702198]
+- [net] xfrm: Allow Set Mark to be Updated Using UPDSA (Herbert Xu) [1702198]
+- [net] xfrm: Add virtual xfrm interfaces (Herbert Xu) [1702198]
+- [net] xfrm: Add a new lookup key to match xfrm interfaces. (Herbert Xu) [1702198]
+- [net] flow: Extend flow informations with xfrm interface id. (Herbert Xu) [1702198]
+- [net] xfrm: Extend the output_mark to support input direction and masking. (Herbert Xu) [1702198]
+- [fs] xfs: don't account extra agfl blocks as available (Brian Foster) [1656687]
+- [scsi] scsi: hisi_sas: Some misc tidy-up (Xiaojun Tan) [1702614]
+- [scsi] scsi: hisi_sas: Don't fail IT nexus reset for Open Reject timeout (Xiaojun Tan) [1702614]
+- [scsi] scsi: hisi_sas: Don't hard reset disk during controller reset (Xiaojun Tan) [1702614]
+- [scsi] scsi: hisi_sas: Support all RAS events with MSI interrupts (Xiaojun Tan) [1702614]
+- [scsi] scsi: hisi_sas: allocate different SAS address for directly attached situation (Xiaojun Tan) [1702614]
+- [scsi] scsi: hisi_sas: Adjust the printk format of functions hisi_sas_init_device() (Xiaojun Tan) [1702614]
+- [scsi] scsi: hisi_sas: Fix for setting the PHY linkrate when disconnected (Xiaojun Tan) [1702614]
+- [scsi] scsi: hisi_sas: Remedy inconsistent PHY down state in software (Xiaojun Tan) [1702614]
+- [scsi] scsi: hisi_sas: add host reset interface for test (Xiaojun Tan) [1702614]
+- [hid] HID: Increase maximum report size allowed by hid_field_extract() (Tony Camuso) [1688112]
+- [hid] HID: intel-ish-hid: remove data[128] usage on stack when sending HBM request (Tony Camuso) [1688112]
+- [hid] HID: intel-ish-hid: move doorbell writing before flush (Tony Camuso) [1688112]
+- [hid] HID: intel-ish-hid: Optimize writing ipc message from queue (Tony Camuso) [1688112]
+- [hid] HID: intel-ish-hid: avoid binding wrong ishtp_cl_device (Tony Camuso) [1688112]
+- [hid] HID: intel-ish-hid: Enable Ice Lake mobile (Tony Camuso) [1688112]
+- [hid] HID: increase maximum global item tag report size to 256 (Tony Camuso) [1688112]
+- [hid] HID: intel-ish-hid: Enable Sunrise Point-H ish driver (Tony Camuso) [1688112]
+- [hid] HID: intel-ish-hid: remove redundant variable num_frags (Tony Camuso) [1688112]
+
+* Mon May 13 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-87.el8]
+- [s390] Disable kexec_load via kernel_lockdown for s390 (Philipp Rudo) [1659399]
+- [s390] s390/ipl: Provide has_secure sysfs attribute (Philipp Rudo) [1659399]
+- [s390] s390/kexec_file: Create ipl report and pass to next kernel (Philipp Rudo) [1659399]
+- [s390] s390/kexec_file: Signature verification prototype (Philipp Rudo) [1659399]
+- [s390] s390/kexec_file: Load new kernel to absolute 0 (Philipp Rudo) [1659399]
+- [s390] s390/kexec_file: Unify loader code (Philipp Rudo) [1659399]
+- [s390] s390/kexec_file: Simplify parmarea access (Philipp Rudo) [1659399]
+- [s390] s390/purgatory: Omit use of bin2c (Philipp Rudo) [1659399]
+- [s390] s390/purgatory: Reduce purgatory size (Philipp Rudo) [1659399]
+- [s390] s390/kexec_file: Fix detection of text segment in ELF loader (Philipp Rudo) [1659399]
+- [s390] s390/kexec_file: Fix potential segment overlap in ELF loader (Philipp Rudo) [1659399]
+- [s390] s390/zcore: Rename ipl_block to mitigate name collision (Philipp Rudo) [1659399]
+- [s390] s390/boot: pad bzImage to 4K (Philipp Rudo) [1659399]
+- [s390] s390/ipl: add helper functions to create an IPL report (Philipp Rudo) [1659399]
+- [s390] s390/ipl: read IPL report at early boot (Philipp Rudo) [1659399]
+- [s390] s390/ipl: add definitions for the IPL report block (Philipp Rudo) [1659399]
+- [s390] s390/ipl: provide uapi header for list directed IPL (Philipp Rudo) [1659399]
+- [s390] s390/ipl: make ipl_info less confusing (Philipp Rudo) [1659399]
+- [s390] s390: introduce .boot.preserved.data section compile time validation (Philipp Rudo) [1659399]
+- [s390] s390: move ipl block to .boot.preserved.data section (Philipp Rudo) [1659399]
+- [s390] s390: introduce .boot.preserved.data section (Philipp Rudo) [1659399]
+- [mm] s390: clean up redundant facilities list setup (Philipp Rudo) [1659399]
+- [s390] s390/als: remove duplicated in-place implementation of stfle (Philipp Rudo) [1659399]
+- [netdrv] fm10k: Fix a potential NULL pointer dereference (Neil Horman) [1659172]
+- [netdrv] fm10k: use struct_size() in kzalloc() (Neil Horman) [1659172]
+- [netdrv] fm10k: TRIVIAL cleanup of extra spacing in function comment (Neil Horman) [1659172]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Neil Horman) [1659172]
+- [netdrv] fm10k: bump driver version to match out-of-tree release (Neil Horman) [1659172]
+- [netdrv] fm10k: add missing device IDs to the upstream driver (Neil Horman) [1659172]
+- [netdrv] fm10k: ensure completer aborts are marked as non-fatal after a resume (Neil Horman) [1659172]
+- [netdrv] fm10k: fix SM mailbox full condition (Neil Horman) [1659172]
+- [netdrv] fm10k: remove ndo_poll_controller (Neil Horman) [1659172]
+- [netdrv] intel-ethernet: use correct module license (Neil Horman) [1659172]
+- [scsi] Revert "scsi: fcoe: clear FC_RP_STARTED flags when receiving a LOGO" (Nilesh Javali) [1701545]
+- [tools] tools: introduce test_and_clear_bit (Peter Xu) [1694926]
+- [net] bridge: fix netlink export of vlan_stats_per_port option (Ivan Vecera) [1703551]
+- [net] bridge: fix vlan stats use-after-free on destruction (Ivan Vecera) [1703551]
+- [tools] headers uapi: Update linux/if_link.h header copy (Ivan Vecera) [1703551]
+- [net] bridge: fix a possible memory leak in __vlan_add (Ivan Vecera) [1703551]
+- [net] bridge: add support for per-port vlan stats (Ivan Vecera) [1703551]
+- [net] bridge: mcast: Default back to multicast enabled state (Ivan Vecera) [1703551]
+- [net] bridge: pack net_bridge better (Ivan Vecera) [1703551]
+- [net] bridge: convert mtu_set_by_user to a bit (Ivan Vecera) [1703551]
+- [net] bridge: convert neigh_suppress_enabled option to a bit (Ivan Vecera) [1703551]
+- [net] bridge: convert mcast options to bits (Ivan Vecera) [1703551]
+- [net] bridge: convert and rename mcast disabled (Ivan Vecera) [1703551]
+- [net] bridge: convert group_addr_set option to a bit (Ivan Vecera) [1703551]
+- [net] bridge: convert nf call options to bits (Ivan Vecera) [1703551]
+- [net] bridge: add bitfield for options and convert vlan opts (Ivan Vecera) [1703551]
+- [net] bridge: make struct opening bracket consistent (Ivan Vecera) [1703551]
+- [net] Add netif_is_gretap()/netif_is_ip6gretap() (Ivan Vecera) [1701208]
+- [net] sched: register callbacks for indirect tc block binds (Ivan Vecera) [1701214]
+- [tools] selftests: tc-testing: fix tunnel_key failure if dst_port is unspecified (Ivan Vecera) [1701210]
+- [tools] selftests: tc-testing: drop test on missing tunnel key id (Ivan Vecera) [1701210]
+- [net] sched: act_tunnel_key: Don't dump dst port if it wasn't set (Ivan Vecera) [1701210]
+- [net] sched: act_tunnel_key: Allow key-less tunnels (Ivan Vecera) [1701210]
+- [net] ethtool: Added support for 50Gbps per lane link modes (Ivan Vecera) [1701215]
+- [net] ip_gre: fix parsing gre header in ipgre_err (Hangbin Liu) [1702212]
+- [net] vxlan: Free a leaked vetoed multicast rdst (Ivan Vecera) [1691695]
+- [net] switchdev: Add extack argument to call_switchdev_notifiers() (Ivan Vecera) [1691695]
+- [netdrv] vxlan: Add extack to switchdev operations (Ivan Vecera) [1691695]
+- [net] net: Add extack argument to ndo_fdb_add() (Ivan Vecera) [1691695]
+- [netdrv] vxlan: changelink: Delete remote after update (Ivan Vecera) [1691695]
+- [netdrv] vxlan: changelink: Postpone vxlan_config_apply() (Ivan Vecera) [1691695]
+- [netdrv] vxlan: changelink: Inline vxlan_dev_configure() (Ivan Vecera) [1691695]
+- [netdrv] vxlan: Allow vetoing of FDB notifications (Ivan Vecera) [1691695]
+- [netdrv] vxlan: Have vxlan_fdb_replace() save original rdst value (Ivan Vecera) [1691695]
+- [netdrv] vxlan: Split vxlan_fdb_update() in two (Ivan Vecera) [1691695]
+- [netdrv] vxlan: Move up vxlan_fdb_free(), vxlan_fdb_destroy() (Ivan Vecera) [1691695]
+- [net] bridge: Add br_fdb_clear_offload() (Ivan Vecera) [1691695]
+- [netdrv] vxlan: Add vxlan_fdb_clear_offload() (Ivan Vecera) [1691695]
+- [netdrv] vxlan: Add vxlan_fdb_replay() (Ivan Vecera) [1691695]
+- [net] route: add support for directed broadcast forwarding (Xin Long) [1562384]
+- [net] erspan: build the header with the right proto according to erspan_ver (Xin Long) [1663862]
+- [net] ipv6: make ip6_create_rt_rcu return ip6_null_entry instead of NULL (Xin Long) [1688617]
+- [net] tipc: handle the err returned from cmd header function (Jon Maloy) [1693452]
+- [net] tipc: check link name with right length in tipc_nl_compat_link_set (Jon Maloy) [1693452]
+- [net] tipc: check bearer name with right length in tipc_nl_compat_bearer_enable (Jon Maloy) [1693452]
+- [net] tipc: change to check tipc_own_id to return in tipc_net_stop (Jon Maloy) [1693452]
+- [net] tipc: tipc clang warning (Jon Maloy) [1693452]
+- [net] tipc: fix cancellation of topology subscriptions (Jon Maloy) [1693452]
+- [net] tipc: allow service ranges to be connect()'ed on RDM/DGRAM (Jon Maloy) [1693452]
+- [net] net: tipc: fix a missing check for nla_nest_start (Jon Maloy) [1693452]
+- [net] net: tipc: fix a missing check of nla_nest_start (Jon Maloy) [1693452]
+- [net] tipc: fix RDM/DGRAM connect() regression (Jon Maloy) [1693452]
+- [net] tipc: fix race condition causing hung sendto (Jon Maloy) [1693452]
+- [net] tipc: improve function tipc_wait_for_rcvmsg() (Jon Maloy) [1693452]
+- [net] tipc: improve function tipc_wait_for_cond() (Jon Maloy) [1693452]
+- [net] tipc: fix link session and re-establish issues (Jon Maloy) [1693452]
+- [net] tipc: fix skb may be leaky in tipc_link_input (Jon Maloy) [1693452]
+- [net] tipc: remove dead code in struct tipc_topsrv (Jon Maloy) [1693452]
+- [net] tipc: mark expected switch fall-throughs (Jon Maloy) [1693452]
+- [net] tipc: remove unneeded semicolon in trace.c (Jon Maloy) [1693452]
+- [net] tipc: fix uninit-value in tipc_nl_compat_doit (Jon Maloy) [1693452]
+- [net] tipc: fix uninit-value in tipc_nl_compat_name_table_dump (Jon Maloy) [1693452]
+- [net] tipc: fix uninit-value in tipc_nl_compat_link_set (Jon Maloy) [1693452]
+- [net] tipc: fix uninit-value in tipc_nl_compat_bearer_enable (Jon Maloy) [1693452]
+- [net] tipc: fix uninit-value in tipc_nl_compat_link_reset_stats (Jon Maloy) [1693452]
+- [net] tipc: fix uninit-value in in tipc_conn_rcv_sub (Jon Maloy) [1693452]
+- [net] tipc: fix memory leak in tipc_nl_compat_publ_dump (Jon Maloy) [1693452]
+- [net] tipc: fix a missing check of genlmsg_put (Jon Maloy) [1693452]
+- [net] tipc: fix a double free in tipc_enable_bearer() (Jon Maloy) [1693452]
+- [net] net/netlink_compat: Fix a missing check of nla_parse_nested (Jon Maloy) [1693452]
+- [net] tipc: fix uninitialized value for broadcast retransmission (Jon Maloy) [1693452]
+- [net] tipc: add trace_events for tipc bearer (Jon Maloy) [1693452]
+- [net] tipc: add trace_events for tipc node (Jon Maloy) [1693452]
+- [net] tipc: add trace_events for tipc socket (Jon Maloy) [1693452]
+- [net] tipc: add trace_events for tipc link (Jon Maloy) [1693452]
+- [net] tipc: enable tracepoints in tipc (Jon Maloy) [1693452]
+- [net] tipc: handle broadcast NAME_DISTRIBUTOR packet when receiving it (Jon Maloy) [1693452]
+- [net] tipc: check group dests after tipc_wait_for_cond() (Jon Maloy) [1693452]
+- [net] tipc: check tsk->group in tipc_wait_for_cond() (Jon Maloy) [1693452]
+- [net] tipc: compare remote and local protocols in tipc_udp_enable() (Jon Maloy) [1693452]
+- [net] tipc: use lock_sock() in tipc_sk_reinit() (Jon Maloy) [1693452]
+- [net] tipc: fix node keep alive interval calculation (Jon Maloy) [1693452]
+- [net] tipc: fix lockdep warning during node delete (Jon Maloy) [1693452]
+- [net] tipc: don't assume linear buffer when reading ancillary data (Jon Maloy) [1693452]
+- [net] tipc: fix lockdep warning when reinitilaizing sockets (Jon Maloy) [1693452]
+- [net] tipc: fix link re-establish failure (Jon Maloy) [1693452]
+- [net] tipc: improve broadcast retransmission algorithm (Jon Maloy) [1693452]
+- [net] tipc: use destination length for copy string (Jon Maloy) [1693452]
+- [net] tipc: support binding to specific ip address when activating UDP bearer (Jon Maloy) [1677371 1693452]
+- [net] tipc: remainder of commit ignore STATE_MSG on wrong link session (Jon Maloy) [1693452]
+- [net] tipc: buffer overflow handling in listener socket (Jon Maloy) [1693452]
+- [net] tipc: add SYN bit to connection setup messages (Jon Maloy) [1693452]
+- [net] tipc: refactor function tipc_sk_filter_connect() (Jon Maloy) [1693452]
+- [net] tipc: refactor function tipc_sk_timeout() (Jon Maloy) [1693452]
+- [net] tipc: refactor function tipc_msg_reverse() (Jon Maloy) [1693452]
+- [net] tipc: Add and use skb_mark_not_on_list(). (Jon Maloy) [1693452]
+- [net] tipc: correct spelling errors for tipc_topsrv_queue_evt() comments (Jon Maloy) [1693452]
+- [net] tipc: correct spelling errors for struct tipc_bc_base's comment (Jon Maloy) [1693452]
+- [net] tipc: correct structure parameter comments for topsrv (Jon Maloy) [1693452]
+- [net] net/tipc: remove redundant variables 'tn' and 'oport' (Jon Maloy) [1693452]
+- [net] net: tipc: bcast: Replace GFP_ATOMIC with GFP_KERNEL in tipc_bcast_init() (Jon Maloy) [1693452]
+- [net] net: tipc: name_table: Replace GFP_ATOMIC with GFP_KERNEL in tipc_nametbl_init() (Jon Maloy) [1693452]
+- [net] tipc: make some functions static (Jon Maloy) [1693452]
+- [net] tipc: make link capability update thread safe (Jon Maloy) [1693452]
+- [net] tipc: remove unused tipc_group_size (Jon Maloy) [1693452]
+- [net] tipc: remove unused tipc_link_is_active (Jon Maloy) [1693452]
+- [net] tipc: check session number before accepting link protocol messages (Jon Maloy) [1693452]
+- [net] tipc: add sequence number check for link STATE messages (Jon Maloy) [1693452]
+- [net] tipc: mark expected switch fall-throughs (Jon Maloy) [1693452]
+- [net] tipc: extend sock diag for group communication (Jon Maloy) [1693452]
+- [net] tipc: Auto removal of peer down node instance (Jon Maloy) [1693452]
+- [net] tipc: optimize function tipc_node_timeout() (Jon Maloy) [1693452]
+- [net] tipc: eliminate buffer cloning in function tipc_msg_extract() (Jon Maloy) [1693452]
+- [net] netfilter: nf_conncount: fix argument order to find_next_bit (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: speculative garbage collection on empty lists (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: move all list iterations under spinlock (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: merge lookup and add functions (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: restart search when nodes have been erased (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: split gc in two phases (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: don't skip eviction when age is negative (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: replace CONNCOUNT_LOCK_SLOTS with CONNCOUNT_SLOTS (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: use rb_link_node_rcu() instead of rb_link_node() (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: remove wrong condition check routine (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: fix unexpected permanent node of list. (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: fix list_del corruption in conn_free (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: use spin_lock_bh instead of spin_lock (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: Add list lock and gc worker, and RCU for init tree search (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: Split insert and traversal (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: Move locking into count_tree() (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: Early exit in nf_conncount_lookup() and cleanup (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: Switch to plain list (Florian Westphal) [1531074]
+- [net] netfilter: nf_conncount: Early exit for garbage collection (Florian Westphal) [1531074]
+- [net] ptp: uapi: change _IOW to IOWR in PTP_SYS_OFFSET_EXTENDED definition (Hangbin Liu) [1677215]
+- [net] ptp: check that rsv field is zero in struct ptp_sys_offset_extended (Hangbin Liu) [1677215]
+- [net] ptp: deprecate gettime64() in favor of gettimex64() (Hangbin Liu) [1677215]
+- [net] ptp: add PTP_SYS_OFFSET_EXTENDED ioctl (Hangbin Liu) [1677215]
+- [net] ptp: check gettime64 return code in PTP_SYS_OFFSET ioctl (Hangbin Liu) [1677215]
+- [net] ptp: reorder declarations in ptp_ioctl() (Hangbin Liu) [1677215]
+- [net] tuntap: fix multiqueue rx (Guillaume Nault) [1686563]
+
+* Fri May 10 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-86.el8]
+- [edac] EDAC/amd64: Add Family 17h Model 30h PCI IDs (Aristeu Rozanski) [1696603]
+- [x86] Update stepping values for coffee lake desktop (David Arcari) [1704800]
+- [security] KEYS: trusted: allow trusted.ko to initialize w/o a TPM (Jerry Snitselaar) [1694208]
+- [security] tpm: pass an array of tpm_extend_digest structures to tpm_pcr_extend() (Jerry Snitselaar) [1665130 1665129]
+- [security] KEYS: trusted: explicitly use tpm_chip structure from tpm_default_chip() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm/ppi: Enable submission of optional command parameter for PPI 1.3 (Jerry Snitselaar) [1665130]
+- [char] tpm/ppi: Possibly show command parameter if TPM PPI 1.3 is used (Jerry Snitselaar) [1665130]
+- [char] tpm/ppi: Display up to 101 operations as define for version 1.3 (Jerry Snitselaar) [1665130]
+- [char] tpm/ppi: rename TPM_PPI_REVISION_ID to TPM_PPI_REVISION_ID_1 (Jerry Snitselaar) [1665130]
+- [char] tpm/ppi: pass function revision ID to tpm_eval_dsm() (Jerry Snitselaar) [1665130]
+- [char] tpm: Fix the type of the return value in calc_tpm2_event_size() (Jerry Snitselaar) [1694208 1665129]
+- [char] tpm: fix an invalid condition in tpm_common_poll (Jerry Snitselaar) [1694208]
+- [char] tpm: turn on TPM on suspend for TPM 1.x (Jerry Snitselaar) [1694208 1665130]
+- [char] tpm: move tpm_chip definition to include/linux/tpm.h (Jerry Snitselaar) [1665129]
+- [char] tpm: retrieve digest size of unknown algorithms with PCR read (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: rename and export tpm2_digest and tpm2_algorithms (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: dynamically allocate the allocated_banks array (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: remove @flags from tpm_transmit() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: take TPM chip power gating out of tpm_transmit() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: introduce tpm_chip_start() and tpm_chip_stop() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: remove TPM_TRANSMIT_UNLOCKED flag (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: use tpm_try_get_ops() in tpm-sysfs.c. (Jerry Snitselaar) [1665130]
+- [char] tpm: remove @space from tpm_transmit() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: move TPM space code out of tpm_transmit() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: move tpm_validate_commmand() to tpm2-space.c (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: clean up tpm_try_transmit() error handling flow (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: encapsulate tpm_dev_transmit() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: access command header through struct in tpm_try_transmit() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: declare struct tpm_header (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: print tpm2_commit_space() error inside tpm2_commit_space() (Jerry Snitselaar) [1665129]
+- [char] tpm: return 0 from pcrs_show() when tpm1_pcr_read() fails (Jerry Snitselaar) [1665130]
+- [char] tpm: fix invalid return value in pubek_show() (Jerry Snitselaar) [1694208 1665130]
+- [char] tpm: use tpm_buf in tpm_transmit_cmd() as the IO parameter (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: don't return bool from update_timeouts (Jerry Snitselaar) [1665130]
+- [char] tpm: don't print error message in tpm_transmit_cmd when tpm still testing (Jerry Snitselaar) [1665129]
+- [char] tpm: add _head suffix to tcg_efi_specid_event and tcg_pcr_event2 (Jerry Snitselaar) [1665129]
+- [char] tpm: Fix off-by-one when reading binary_bios_measurements (Jerry Snitselaar) [1694208 1665130]
+- [char] tpm: Simplify the measurements loop (Jerry Snitselaar) [1665130]
+- [char] tpm/tpm_i2c_atmel: Return -E2BIG when the transfer is incomplete (Jerry Snitselaar) [1694208]
+- [char] tpm: Unify the send callback behaviour (Jerry Snitselaar) [1665129]
+- [char] tpm: Fix some name collisions with drivers/char/tpm.h (Jerry Snitselaar) [1694208]
+- [char] tpm/tpm_crb: Avoid unaligned reads in crb_recv() (Jerry Snitselaar) [1694208 1665129]
+- [char] tpm: add support for partial reads (Jerry Snitselaar) [1665129]
+- [char] tpm: tpm_ibmvtpm: fix kdoc warnings (Jerry Snitselaar) [1665129]
+- [char] tpm: fix kdoc for tpm2_flush_context_cmd() (Jerry Snitselaar) [1694208 1665129]
+- [char] tpm: tpm_try_transmit() refactor error flow. (Jerry Snitselaar) [1694208 1665129]
+- [char] tpm: use u32 instead of int for PCR index (Jerry Snitselaar) [1665130 1665129]
+- [security] ima: Get rid of ima_used_chip and use ima_tpm_chip != NULL instead (Jerry Snitselaar) [1665130 1665129]
+- [security] ima: Use tpm_default_chip() and call TPM functions with a tpm_chip (Jerry Snitselaar) [1665129]
+- [char] tpm1: reimplement tpm1_continue_selftest() using tpm_buf (Jerry Snitselaar) [1665130]
+- [char] tpm1: reimplement SAVESTATE using tpm_buf (Jerry Snitselaar) [1665130]
+- [char] tpm1: rename tpm1_pcr_read_dev to tpm1_pcr_read() (Jerry Snitselaar) [1665130]
+- [char] tpm1: implement tpm1_pcr_read_dev() using tpm_buf structure (Jerry Snitselaar) [1665130]
+- [char] tpm: tpm1: rewrite tpm1_get_random() using tpm_buf structure (Jerry Snitselaar) [1665130]
+- [char] tpm: tpm-space.c remove unneeded semicolon (Jerry Snitselaar) [1665129]
+- [char] tpm: tpm-interface.c drop unused macros (Jerry Snitselaar) [1694208 1665130]
+- [char] tpm: add tpm_auto_startup() into tpm-interface.c (Jerry Snitselaar) [1665129]
+- [char] tpm: factor out tpm_startup function (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: factor out tpm 1.x pm suspend flow into tpm1-cmd.c (Jerry Snitselaar) [1665130]
+- [char] tpm: move tpm 1.x selftest code from tpm-interface.c tpm1-cmd.c (Jerry Snitselaar) [1665130]
+- [char] tpm: factor out tpm1_get_random into tpm1-cmd.c (Jerry Snitselaar) [1665130]
+- [char] tpm: move tpm_getcap to tpm1-cmd.c (Jerry Snitselaar) [1665130]
+- [char] tpm: move tpm1_pcr_extend to tpm1-cmd.c (Jerry Snitselaar) [1665130]
+- [char] tpm: factor out tpm_get_timeouts() (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: add tpm_calc_ordinal_duration() wrapper (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: factor out tpm 1.x duration calculation to tpm1-cmd.c (Jerry Snitselaar) [1665130 1665129]
+- [char] tpm: sort objects in the Makefile (Jerry Snitselaar) [1665129]
+- [char] tpm2: add new tpm2 commands according to TCG 1.36 (Jerry Snitselaar) [1665129]
+- [char] tpm: tpm_i2c_nuvoton: use correct command duration for TPM 2.x (Jerry Snitselaar) [1665129]
+- [char] tpm: add support for nonblocking operation (Jerry Snitselaar) [1665129]
+- [char] tpm: add ptr to the tpm_space struct to file_priv (Jerry Snitselaar) [1665129]
+- [char] tpm: Make SECURITYFS a weak dependency (Jerry Snitselaar) [1665129]
+- [char] tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated (Jerry Snitselaar) [1665130]
+- [char] tpm: fix response size validation in tpm_get_random() (Jerry Snitselaar) [1694208 1665129]
+- [char] tpm: replace TPM_TRANSMIT_RAW with TPM_TRANSMIT_NESTED (Jerry Snitselaar) [1665129]
+- [char] tpm: Convert tpm_find_get_ops() to use tpm_default_chip() (Jerry Snitselaar) [1665129]
+- [char] tpm: Implement tpm_default_chip() to find a TPM chip (Jerry Snitselaar) [1665129]
+- [char] tpm: rename tpm_chip_find_get() to tpm_find_get_ops() (Jerry Snitselaar) [1665129]
+- [char] tpm: Allow tpm_tis drivers to set hwrng quality. (Jerry Snitselaar) [1665129]
+- [char] tpm: Return the actual size when receiving an unsupported command (Jerry Snitselaar) [1694208 1665129]
+- [char] tpm/tpm_i2c_infineon: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) (Jerry Snitselaar) [1665129]
+- [char] tpm_tis_spi: Pass the SPI IRQ down to the driver (Jerry Snitselaar) [1665129]
+- [char] tpm: migrate tpm2_get_random() to use struct tpm_buf (Jerry Snitselaar) [1665129]
+- [char] tpm: migrate tpm2_get_tpm_pt() to use struct tpm_buf (Jerry Snitselaar) [1665129]
+- [char] tpm: migrate tpm2_probe() to use struct tpm_buf (Jerry Snitselaar) [1665129]
+- [char] tpm: migrate tpm2_shutdown() to use struct tpm_buf (Jerry Snitselaar) [1665129]
+- [pci] PCI: Fix __initdata issue with "pci=disable_acs_redir" parameter (Myron Stowe) [1704979]
+- [s390] s390/pci: skip VF scanning (Myron Stowe) [1704979]
+- [pci] PCI/IOV: Add flag so platforms can skip VF scanning (Myron Stowe) [1704979]
+- [pci] PCI/IOV: Factor out sriov_add_vfs() (Myron Stowe) [1704979]
+- [pci] switchtec: Add MRPC DMA mode support (Myron Stowe) [1704979]
+- [pci] switchtec: Improve MRPC efficiency by enabling write combining (Myron Stowe) [1704979]
+- [pci] switchtec: Fix SWITCHTEC_IOCTL_EVENT_IDX_ALL flags overwrite (Myron Stowe) [1704979]
+- [pci] switchtec: Set DMA coherent mask (Myron Stowe) [1704979]
+- [pci] switchtec: Remove immediate status check after submitting MRPC command (Myron Stowe) [1704979]
+- [pci] PCI / PM: Allow runtime PM without callback functions (Myron Stowe) [1704979]
+- [pci] PCI/P2PDMA: Clean up documentation and kernel-doc (Myron Stowe) [1704979]
+- [pci] PCI: Remove unnecessary space before function pointer arguments (Myron Stowe) [1704979]
+- [maintainers] MAINTAINERS: Add x86 early-quirks.c file pattern to PCI subsystem (Myron Stowe) [1704979]
+- [pci] PCI: Expand the "PF" acronym in Kconfig help text (Myron Stowe) [1704979]
+- [x86] x86/PCI: Fix Broadcom CNB20LE unintended sign extension (redux) (Myron Stowe) [1704979]
+- [pci] PCI/ASPM: Remove unused lists from struct pcie_link_state (Myron Stowe) [1704979]
+- [pci] PCI / ACPI: Identify untrusted PCI devices (Myron Stowe) [1704979]
+
+* Thu May 09 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-85.el8]
+- [documentation] x86/resctrl: Update Documentation/x86/resctrl_ui.txt (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Remove unnecessary check for cbm_validate() (Prarit Bhargava) [1504489]
+- [maintainers] MAINTAINERS: Update resctrl filename patterns (Prarit Bhargava) [1504489]
+- [documentation] Documentation: Rename and update intel_rdt_ui.txt to resctrl_ui.txt (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Introduce AMD QOS feature (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Fixup the user-visible strings (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Add AMD's X86_FEATURE_MBA to the scattered CPUID features (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Rename the config option INTEL_RDT to RESCTRL (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Add vendor check for the MBA software controller (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Bring cbm_validate() into the resource structure (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Initialize the vendor-specific resource functions (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Move all the macros to resctrl/internal.h (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Re-arrange the RDT init code (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Rename the RDT functions and definitions (Prarit Bhargava) [1504489]
+- [x86] x86/resctrl: Rename and move rdt files to a separate directory (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Prevent pseudo-locking from using stale pointers (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix initial allocation to consider CDP (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: CBM overlap should also check for overlap with CDP peer (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Introduce utility to obtain CDP peer (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix out-of-bounds memory access in CBM tests (Prarit Bhargava) [1504489]
+- [x86] perf/x86: Add helper to obtain performance counter index (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Switch to bitmap_zalloc() (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Re-enable pseudo-lock measurements (Prarit Bhargava) [1504489]
+- [x86] x86/cpu: Sanitize FAM6_ATOM naming (David Arcari) [1504489]
+- [x86] x86/intel_rdt: Use perf infrastructure for measurements (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Create required perf event attributes (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Remove local register variables (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix incorrect loop end condition (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix exclusive mode handling of MBA resource (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix incorrect loop end condition (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Do not allow pseudo-locking of MBA resource (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix unchecked MSR access (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix invalid mode warning when multiple resources are managed (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Global closid helper to support future fixes (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix size reporting of MBA resource (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix data type in parsing callbacks (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Disable PMU access (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix possible circular lock dependency (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Make CPU information accessible for pseudo-locked regions (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Support restoration of subset of permissions (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Fix cleanup of plr structure on error (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Move pseudo_lock_region_clear() (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Limit C-states dynamically when pseudo-locking active (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Support L3 cache performance event of Broadwell (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: More precise L2 hit/miss measurements (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Create character device exposing pseudo-locked region (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Create debugfs files for pseudo-locking testing (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Create resctrl debug area (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Ensure RDT cleanup on exit (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Resctrl files reflect pseudo-locked information (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Support creation/removal of pseudo-locked region (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Pseudo-lock region creation/removal core (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Discover supported platforms via prefetch disable bits (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Add utilities to test pseudo-locked region possibility (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Split resource group removal in two (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Enable entering of pseudo-locksetup mode (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Support enter/exit of locksetup mode (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Introduce pseudo-locked region (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Add check to determine if monitoring in progress (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Utilities to restrict/restore access to specific files (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Protect against resource group changes during locking (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Add utility to restrict/restore access to resctrl files (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Add utility to test if tasks assigned to resource group (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Respect read and write access (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Introduce the Cache Pseudo-Locking modes (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Display resource groups' allocations' size in bytes (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Introduce "bit_usage" to display cache allocations details (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Ensure requested schemata respects mode (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Support flexible data to parsing callbacks (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Making CBM name and type more explicit (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Enable setting of exclusive mode (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Introduce new "exclusive" mode (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Initialize new resource group with sane defaults (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Make useful functions available internally (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Introduce test to determine if closid is in use (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Introduce resource group's mode resctrl file (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Associate mode with each RDT resource group (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Introduce RDT resource group mode (Prarit Bhargava) [1504489]
+- [x86] x86/intel_rdt: Provide pseudo-locking hooks within rdt_mount (Prarit Bhargava) [1504489]
+- [x86] perf/x86: Make perf callchains work without CONFIG_FRAME_POINTER (Jiri Olsa) [1699780]
+
+* Wed May 08 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-84.el8]
+- [kernel] sched/fair: Do not re-read ->h_load_next during hierarchical load calculation (Phil Auld) [1701762]
+- [s390] kvm: s390: enable MSA9 keywrapping functions depending on cpu model (Thomas Huth) [1660913]
+- [s390] kvm: s390: add deflate conversion facilty to cpu model (Thomas Huth) [1660913]
+- [s390] kvm: s390: add enhanced sort facilty to cpu model (Thomas Huth) [1660913]
+- [s390] kvm: s390: provide query function for instructions returning 32 byte (Thomas Huth) [1660913]
+- [s390] kvm: s390: add MSA9 to cpumodel (Thomas Huth) [1660913]
+- [s390] kvm: s390: add vector BCD enhancements facility to cpumodel (Thomas Huth) [1660913]
+- [s390] kvm: s390: add vector enhancements facility 2 to cpumodel (Thomas Huth) [1660913]
+- [s390] kvm: s390: add debug logging for cpu model subfunctions (Thomas Huth) [1660913]
+- [s390] kvm: s390: implement subfunction processor calls (Thomas Huth) [1660913]
+- [powercap] powercap: intel_rapl: add support for Jacobsville (Steve Best) [1482401]
+- [x86] x86/cpu: Add Atom Tremont (Jacobsville) (Steve Best) [1482401]
+
+* Tue May 07 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-83.el8]
+- [crypto] crypto: qat - Remove unused goto label (Neil Horman) [1660313]
+- [crypto] crypto: prefix header search paths with $(srctree)/ (Neil Horman) [1660313]
+- [crypto] crypto: qat - no need to check return value of debugfs_create functions (Neil Horman) [1660313]
+- [crypto] cross-tree: phase out dma_zalloc_coherent() (Neil Horman) [1660313]
+- [crypto] crypto: qat - move temp buffers off the stack (Neil Horman) [1660313]
+- [crypto] crypto: qat - Remove VLA usage (Neil Horman) [1660313]
+- [include] block: kill all_q_node in request_queue (Ming Lei) [1702865]
+- [block] bfq: update internal depth state when queue depth changes (Ming Lei) [1702865]
+- [fs] block: fix the return errno for direct IO (Ming Lei) [1702865]
+- [block] block: do not leak memory in bio_copy_user_iov() (Ming Lei) [1702865]
+- [nvme] nvme: cancel request synchronously (Ming Lei) [1702865]
+- [block] blk-mq: introduce blk_mq_complete_request_sync() (Ming Lei) [1702865]
+- [scsi] scsi: virtio_scsi: limit number of hw queues by nr_cpu_ids (Ming Lei) [1702865]
+- [block] virtio-blk: limit number of hw queues by nr_cpu_ids (Ming Lei) [1702865]
+- [block] block, bfq: fix use after free in bfq_bfqq_expire (Ming Lei) [1702865]
+- [block] paride/pcd: Fix potential NULL pointer dereference and mem leak (Ming Lei) [1702865]
+- [block] blk-mq: do not reset plug->rq_count before the list is sorted (Ming Lei) [1702865]
+- [block] paride/pf: Fix potential NULL pointer dereference (Ming Lei) [1702865]
+- [block] blk-mq: add trace block plug and unplug for multiple queues (Ming Lei) [1702865]
+- [block] block: use blk_free_flush_queue() to free hctx->fq in blk_mq_init_hctx (Ming Lei) [1702865]
+- [block] paride/pcd: cleanup queues when detection fails (Ming Lei) [1702865]
+- [block] paride/pf: cleanup queues when detection fails (Ming Lei) [1702865]
+- [crypto] crypto: chelsio - Fixed Traffic Stall (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - Fix passing zero to 'PTR_ERR' warning in chcr_aead_op (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - Inline single pdu only (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - avoid using sa_entry imm (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - remove set but not used variables 'adap' (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - check set_msg_len overflow in generate_b0 (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - Fix wrong error counter increments (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - Reset counters on cxgb4 Detach (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - Handle PCI shutdown event (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - cleanup:send addr as value in function argument (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - Use same value for both channel in single WR (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - Swap location of AAD and IV sent in WR (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - remove set but not used variable 'kctx_len' (Arjun Vynipadath) [1664679]
+- [crypto] drivers: chelsio: use skb_sec_path helper (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chcr - ESN for Inline IPSec Tx (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chcr - small packet Tx stalls the queue (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - clean up various indentation issues (Arjun Vynipadath) [1664679]
+- [crypto] crypto: chelsio - Update ntx queue received from cxgb4 (Arjun Vynipadath) [1664679]
+
+* Fri May 03 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-82.el8]
+- [platform] platform/x86: intel_pmc_core: Convert to INTEL_CPU_FAM6 macro (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Avoid a u32 overflow (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Include Reserved IP for LTR (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Fix file permissions for ltr_show (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Fix PCH IP name (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Fix PCH IP sts reading (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Handle CFL regmap properly (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: convert to DEFINE_SHOW_ATTRIBUTE (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Decode Snoop / Non Snoop LTR (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Fix LTR IGNORE Max offset (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Show Latency Tolerance info (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc: Convert to use SPDX identifier (David Arcari) [1658080]
+- [platform] platform/x86: intel_pmc_core: Add CNP SLPS0 debug registers (David Arcari) [1658080]
+- [x86] x86/cpu: Introduce INTEL_CPU_FAM*() helper macros (David Arcari) [1658080]
+- [include] locking/atomics, asm-generic: Move some macros from <linux/bitops.h> to a new <linux/bits.h> file (David Arcari) [1658080]
+- [s390] s390/kasan: fix strncpy_from_user kasan checks (Philipp Rudo) [1665182]
+- [s390] s390: correct some inline assembly constraints (Philipp Rudo) [1665182]
+- [s390] s390/kasan: improve string/memory functions checks (Philipp Rudo) [1665182]
+- [include] compiler: remove __no_sanitize_address_or_inline again (Philipp Rudo) [1665182]
+- [s390] s390/kasan: increase instrumented stack size to 64k (Philipp Rudo) [1665182]
+- [mm] s390/kasan: support preemptible kernel build (Philipp Rudo) [1665182]
+- [mm] s390/kasan: add support for mem= kernel parameter (Philipp Rudo) [1665182]
+- [mm] s390/kasan: optimize kasan vmemmap allocation (Philipp Rudo) [1665182]
+- [mm] s390/kasan: avoid kasan crash with standby memory defined (Philipp Rudo) [1665182]
+- [s390] s390/head: avoid doubling early boot stack size under KASAN (Philipp Rudo) [1665182]
+- [mm] s390/mm: improve debugfs ptdump markers walking (Philipp Rudo) [1665182]
+- [mm] s390/mm: optimize debugfs ptdump kasan zero page walking (Philipp Rudo) [1665182]
+- [s390] s390/kasan: add option for 4-level paging support (Philipp Rudo) [1665182]
+- [mm] s390/kasan: free early identity mapping structures (Philipp Rudo) [1665182]
+- [s390] s390/kasan: enable stack and global variables access checks (Philipp Rudo) [1665182]
+- [s390] s390/dumpstack: disable __dump_trace kasan instrumentation (Philipp Rudo) [1665182]
+- [s390] s390/kasan: reipl and kexec support (Philipp Rudo) [1665182]
+- [s390] s390/smp: kasan stack instrumentation support (Philipp Rudo) [1665182]
+- [include] compiler: introduce __no_sanitize_address_or_inline (Philipp Rudo) [1665182]
+- [s390] s390/kasan: use noexec and large pages (Philipp Rudo) [1665182]
+- [mm] s390/kasan: dynamic shadow mem allocation for modules (Philipp Rudo) [1665182]
+- [mm] s390/mm: add kasan shadow to the debugfs pgtable dump (Philipp Rudo) [1665182]
+- [s390] s390/kasan: avoid user access code instrumentation (Philipp Rudo) [1665182]
+- [s390] s390/kasan: double the stack size (Philipp Rudo) [1665182]
+- [s390] s390/kasan: add initialization code and enable it (Philipp Rudo) [1665182]
+- [s390] s390: add pgd_page primitive (Philipp Rudo) [1665182]
+- [s390] s390: introduce MAX_PTRS_PER_P4D (Philipp Rudo) [1665182]
+- [s390] s390/kasan: replace some memory functions (Philipp Rudo) [1665182]
+- [s390] s390/kasan: avoid instrumentation of early C code (Philipp Rudo) [1665182]
+- [s390] s390/kasan: avoid vdso instrumentation (Philipp Rudo) [1665182]
+- [s390] s390/mm: add missing pfn_to_kaddr helper (Philipp Rudo) [1665182]
+- [s390] s390/cpum_cf: Add support for CPU-MF SVN 6 (Philipp Rudo) [1683278]
+- [s390] s390: report new CPU capabilities (Philipp Rudo) [1685086]
+- [net] net/smc: fix smc_poll in SMC_INIT state (Philipp Rudo) [1700812]
+- [net] net/smc: fix byte_order for rx_curs_confirmed (Philipp Rudo) [1700812]
+- [net] net/smc: check port_idx of ib event (Philipp Rudo) [1700799]
+- [net] net/smc: check connections in smc_lgr_free_work (Philipp Rudo) [1700799]
+- [net] net/smc: reduce amount of status updates to peer (Philipp Rudo) [1700799]
+- [net] net/smc: no delay for free tx buffer wait (Philipp Rudo) [1700799]
+- [net] net/smc: move wake up of close waiter (Philipp Rudo) [1700799]
+- [net] net/smc: reset cursor update required flag (Philipp Rudo) [1700799]
+- [net] net/smc: correct state change for peer closing (Philipp Rudo) [1700799]
+- [net] net/smc: delete rkey first before switching to unused (Philipp Rudo) [1700799]
+- [net] net/smc: fix sender_free computation (Philipp Rudo) [1700799]
+- [net] net/smc: preallocated memory for rdma work requests (Philipp Rudo) [1700799]
+- [net] net/smc: fix use of variable in cleared area (Philipp Rudo) [1700799]
+- [net] net/smc: use device link provided in qp_context (Philipp Rudo) [1700799]
+- [net] net/smc: call smc_cdc_msg_send() under send_lock (Philipp Rudo) [1700799]
+- [net] net/smc: do not wait under send_lock (Philipp Rudo) [1700799]
+- [net] net/smc: recvmsg and splice_read should return 0 after shutdown (Philipp Rudo) [1700799]
+- [net] net/smc: don't wait for send buffer space when data was already sent (Philipp Rudo) [1700799]
+- [net] net/smc: prevent races between smc_lgr_terminate() and smc_conn_free() (Philipp Rudo) [1700799]
+- [net] net/smc: allow 16 byte pnetids in netlink policy (Philipp Rudo) [1700799]
+- [net] net/smc: fix another sizeof to int comparison (Philipp Rudo) [1700799]
+- [net] net/smc: move code to clear the conn->lgr field (Philipp Rudo) [1700799]
+- [net] net/smc: use client and server LGR pending locks for SMC-R (Philipp Rudo) [1700799]
+- [net] net/smc: unlock LGR pending lock earlier for SMC-D (Philipp Rudo) [1700799]
+- [net] net/smc: use smc_curs_copy() for SMC-D (Philipp Rudo) [1700799]
+- [net] net/smc: postpone release of clcsock (Philipp Rudo) [1700799]
+- [net] smc: move unhash as early as possible in smc_release() (Philipp Rudo) [1700799]
+- [net] net/smc: fix TCP fallback socket release (Philipp Rudo) [1700799]
+- [s390] s390/ism: ignore some errors during deregistration (Philipp Rudo) [1700799]
+- [infiniband] mlx4: trigger IB events needed by SMC (Philipp Rudo) [1700799]
+- [s390] s390/smp: fix CPU hotplug deadlock with CPU rescan (Philipp Rudo) [1700836]
+- [block] s390/dasd: fix panic for failed online processing (Philipp Rudo) [1700811]
+- [netdrv] s390/qeth: fix use-after-free in error path (Philipp Rudo) [1700803]
+- [netdrv] s390/qeth: cancel close_dev work before removing a card (Philipp Rudo) [1700802]
+- [netdrv] s390/qeth: conclude all event processing before offlining a card (Philipp Rudo) [1700800]
+- [scsi] scsi: zfcp: fix posting too many status read buffers leading to adapter shutdown (Philipp Rudo) [1700775]
+- [fs] xfs: prohibit fstrim in norecovery mode (Bill O'Donnell) [1697749]
+- [x86] perf/x86: Fixup typo in stub functions (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Fix memory corruption (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Implement support for TSX Force Abort (Waiman Long) [1688789]
+- [x86] x86: Add TSX Force Abort CPUID/MSR (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Generalize dynamic constraint creation (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Make cpuc allocations consistent (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Delay memory deallocation until x86_pmu_dead_cpu() (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Export mem events only if there's PEBS support (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Add a separate Arch Perfmon v4 PMI handler (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Factor out common code of PMI handler (Waiman Long) [1688789]
+- [x86] perf/x86/intel: Introduce PMU flag for Extended PEBS (Waiman Long) [1688789]
+- [x86] x86/speculation: Add PR_SPEC_DISABLE_NOEXEC (Waiman Long) [1671512]
+
+* Tue Apr 30 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-81.el8]
+- [kernel] exit from RHEL 8.1 early ystream mode ("Herton R. Krzesinski")
+- [net] Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer (Gopal Tiwari) [1700507] {CVE-2019-3459}
+- [target] scsi: target: iscsi: cxgbit: fix csk leak (Arjun Vynipadath) [1664683]
+- [target] scsi: target: iscsi: cxgbit: add missing spin_lock_init() (Arjun Vynipadath) [1664683]
+- [scsi] scsi: cxgb4i: fix incorrect spelling "reveive" -> "receive" (Arjun Vynipadath) [1664685]
+- [scsi] scsi: libcxgbi: update route finding logic (Arjun Vynipadath) [1664685]
+- [scsi] scsi: libcxgbi: find cxgbi device by MAC address (Arjun Vynipadath) [1664685]
+- [scsi] scsi: cxgbi: remove redundant __kfree_skb call on skb and free cst->atid (Arjun Vynipadath) [1664685]
+- [scsi] scsi: libcxgbi: remove uninitialized variable len (Arjun Vynipadath) [1664685]
+- [scsi] scsi: cxgb4i: validate tcp sequence number only if chip version <= T5 (Arjun Vynipadath) [1664685]
+- [scsi] scsi: cxgb4i: get pf number from lldi->pf (Arjun Vynipadath) [1664685]
+- [scsi] scsi: cxgb4i: add wait_for_completion() (Arjun Vynipadath) [1664685]
+- [scsi] scsi: cxgb4i: fix thermal configuration dependencies (Arjun Vynipadath) [1664685]
+- [scsi] scsi: cxgb4i: add DCB support for iSCSI connections (Arjun Vynipadath) [1664685]
+- [netdrv] cxgb4: Don't return EAGAIN when TCAM is full. (Arjun Vynipadath) [1664670]
+- [netdrv] chelsio: use BUG() instead of BUG_ON(1) (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4/chtls: Prefix adapter flags with CXGB4 (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4vf: Call netif_carrier_off properly in pci_probe (Arjun Vynipadath) [1664682 1664670]
+- [netdrv] cxgb4vf: Revert force link up behaviour (Arjun Vynipadath) [1664682]
+- [netdrv] cxgb4: Add VF Link state support (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4vf: Prefix adapter flags with CXGB4VF (Arjun Vynipadath) [1664682]
+- [netdrv] cxgb4vf: Enter debugging mode if FW is inaccessible (Arjun Vynipadath) [1664682]
+- [netdrv] cxgb4: Enable outer UDP checksum offload for T6 (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4/cxgb4vf: Fix up netdev->hw_features (Arjun Vynipadath) [1664682 1664670]
+- [netdrv] cxgb4: Mask out interrupts that are not enabled. (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Export sge_host_page_size to ulds (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Add capability to get/set SGE Doorbell Queue Timer Tick (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4/cxgb4vf: Add support for SGE doorbell queue timer (Arjun Vynipadath) [1664682 1664670]
+- [netdrv] cxgb4vf: Few more link management changes. (Arjun Vynipadath) [1664682]
+- [netdrv] cxgb4: add tcb flags and tcb rpl struct (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Add new T6 PCI device ids 0x608b (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4/cxgb4vf: Program hash region for {t4/t4vf}_change_mac() (Arjun Vynipadath) [1664682 1664670]
+- [netdrv] cxgb4: smt: use struct_size() in kvzalloc() (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: sched: use struct_size() in kvzalloc() (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: cxgb4_tc_u32: use struct_size() in kvzalloc() (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4vf: Update port information in cxgb4vf_open() (Arjun Vynipadath) [1664682]
+- [netdrv] cxgb4/cxgb4vf: Link management changes (Arjun Vynipadath) [1664682 1664670]
+- [netdrv] cxgb4: TLS record offload enable (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: clip_tbl: Use struct_size() in kvzalloc() (Arjun Vynipadath) [1664670]
+- [netdrv] net: cxgb4: fix various indentation issues (Arjun Vynipadath) [1664670]
+- [netdrv] net: chelsio: Add a missing check on cudg_get_buffer (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: remove DEFINE_SIMPLE_DEBUGFS_FILE() (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: number of VFs supported is not always 16 (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: remove set but not used variables 'multitrc, speed' (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: use new fw interface to get the VIN and smt index (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4/cxgb4vf: Fix mac_hlist initialization and free (Arjun Vynipadath) [1664682 1664670]
+- [netdrv] cxgb4vf: fix memleak in mac_hlist initialization (Arjun Vynipadath) [1664682]
+- [netdrv] cxgb4vf: free mac_hlist properly (Arjun Vynipadath) [1664682]
+- [netdrv] cxgb4: free mac_hlist properly (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: fix thermal zone build error (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: fix thermal configuration dependencies (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Add thermal zone support (Arjun Vynipadath) [1664670]
+- [infiniband] cxgb4: use __vlan_hwaccel helpers (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Add new T6 PCI device ids 0x608a (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: fix the error path of cxgb4_uld_register() (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: use FW_PORT_ACTION_L1_CFG32 for 32 bit capability (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: remove the unneeded locks (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Use proper enum in IEEE_FAUX_SYNC (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Use proper enum in cxgb4_dcb_handle_fw_update (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: remove duplicated include from cxgb4_main.c (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: add per rx-queue counter for packet errors (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Fix endianness issue in t4_fwcache() (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: fix abort_req_rss6 struct (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: remove redundant assignment to vlan_cmd.dropnovlan_fm (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: collect hardware queue descriptors (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Add new T5 PCI device ids 0x50af and 0x50b0 (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: remove set but not used variable 'spd' (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: add support to display DCB info (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4/t4_hw: mark expected switch fall-throughs (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4/l2t: Mark expected switch fall-through (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: fix endian to test F_FW_PORT_CMD_DCBXDIS32 (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: print ULD queue information managed by LLD (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: move Tx/Rx free pages collection to common code (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Add support to read actual provisioned resources (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: Add new T5 PCI device id 0x50ae (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: collect number of free PSTRUCT page pointers (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: display number of rx and tx pages free (Arjun Vynipadath) [1664670]
+- [netdrv] cxgb4: collect ASIC LA dumps from ULP TX (Arjun Vynipadath) [1664670]
+- [netdrv] libcxgb: replace vmalloc and memset with vzalloc (Arjun Vynipadath) [1664670]
+- [netdrv] enic: fix checksum validation for IPv6 (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/vmw_pvrdma: Return the correct opcode when creating WR (Jonathan Toppins) [1688010 1685309]
+- [infiniband] RDMA/vmw_pvrdma: Use atomic memory allocation in create AH (Jonathan Toppins) [1685309]
+- [infiniband] IB/usnic: fix spelling mistake "miniumum" -> "minimum" (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/drivers: Fix spelling mistake "initalize" -> "initialize" (Jonathan Toppins) [1685309]
+- [infiniband] IB/rxe: Reuse code which sets port state (Jonathan Toppins) [1685309]
+- [infiniband] IB/rxe: Make counters thread safe (Jonathan Toppins) [1685309]
+- [infiniband] RDMA: Cleanup undesired pd->uobject usage (Jonathan Toppins) [1685309]
+- [infiniband] IB/{mlx5, ocrdma, qedr, rxe}: Omit port validation from IB verbs (Jonathan Toppins) [1685309]
+- [infiniband] IB/rxe: Fix incorrect cache cleanup in error flow (Jonathan Toppins) [1685309]
+- [infiniband] IB/rxe: Utilize generic function to validate port number (Jonathan Toppins) [1685309]
+- [infiniband] IB/rxe: Make function rxe_pool_cleanup return void (Jonathan Toppins) [1685309]
+- [infiniband] rxe: IB_WR_REG_MR does not capture MR's iova field (Jonathan Toppins) [1685309]
+- [infiniband] IB/rxe: make rxe_unregister_device void (Jonathan Toppins) [1685309]
+- [infiniband] IB/rxe: move the variable into the function that uses it (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/rxe: Add link_down, rdma_sends, rdma_recvs stats counters (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/rxe: Distinguish between down links and disabled links (Jonathan Toppins) [1685309]
+- [infiniband] rxe: fix error completion wr_id and qp_num (Jonathan Toppins) [1685309]
+- [infiniband] IB/rxe: clean skb queue directly (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Make sure Send CQ is allocated on an existing compvec (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srp: Rework SCSI device reset handling (Jonathan Toppins) [1685309]
+- [infiniband] IB/ipoib: Fix for use-after-free in ipoib_cm_tx_start (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Double free in rpcrdma_sendctxs_create() (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Fix error code in rpcrdma_buffer_create() (Jonathan Toppins) [1685309]
+- [infiniband] IB/ipoib: drop useless LIST_HEAD (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Prevent leak of rpcrdma_rep objects (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Don't leak freed MRs (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Add documenting comment for rpcrdma_buffer_destroy (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Replace outdated comment for rpcrdma_ep_post (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Update comments in frwr_op_send (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Trace mapping, alloc, and dereg failures (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Add trace points for calls to transport switch methods (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Relocate the xprtrdma_mr_map trace points (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Clean up of xprtrdma chunk trace points (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Remove unused fields from rpcrdma_ia (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Cull dprintk() call sites (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Simplify locking that protects the rl_allreqs list (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Expose transport header errors (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Remove request_module from backchannel (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Plant XID in on-the-wire RDMA offset (FRWR) (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Remove rpcrdma_memreg_ops (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Remove support for FMR memory registration (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Reduce max_frwr_depth (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Fix ri_max_segs and the result of ro_maxpages (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Don't wake pending tasks until disconnect is done (Jonathan Toppins) [1685309]
+- [net] xprtrdma: No qp_event disconnect (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Replace rpcrdma_receive_wq with a per-xprt workqueue (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Refactor Receive accounting (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Ensure MRs are DMA-unmapped when posting LOCAL_INV fails (Jonathan Toppins) [1685309]
+- [net] xprtrdma: Yet another double DMA-unmap (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srpt: Use kmem_cache_free() instead of kfree() (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srpt: Add support for immediate data (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srpt: Rework the srpt_alloc_srq() error path (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srpt: Remove driver version and release date (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srpt: Make kernel-doc headers complete (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srpt: Join split strings (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srpt: Improve coding style conformance (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srpt: Fix a use-after-free in the channel release code (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srp: Add support for immediate data (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srp: Rework handling of the maximum information unit length (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srp: Move srp_rdma_ch.max_ti_iu_len declaration (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srp: Propagate ib_post_send() failures to the SCSI mid-layer (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srp: Handle large SCSI CDBs correctly (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/srp: Document srp_parse_in() arguments (Jonathan Toppins) [1685309]
+- [infiniband] include/scsi/srp.h: Add support for immediate data (Jonathan Toppins) [1685309]
+- [infiniband] include/scsi/srp.h: Move response flag definitions into this file (Jonathan Toppins) [1685309]
+- [net] svcrdma: Optimize the logic that selects the R_key to invalidate (Jonathan Toppins) [1685309]
+- [infiniband] IB/srpt: Drop pointless static qualifier in srpt_make_tpg() (Jonathan Toppins) [1685309]
+- [infiniband] IB/uverbs: Fix OOPs in uverbs_user_mmap_disassociate (Jonathan Toppins) [1685309]
+- [infiniband] IB/uverbs: Fix ioctl query port to consider device disassociation (Jonathan Toppins) [1685309]
+- [infiniband] IB/uverbs: Fix OOPs upon device disassociation (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/umem: Add missing initialization of owning_mm (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/device: Expose ib_device_try_get(() (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Mark ioctl responses with UVERBS_ATTR_F_VALID_OUTPUT (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/cma: Add cm_id restrack resource based on kernel or user cm_id type (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/nldev: Don't expose unsafe global rkey to regular user (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Fix post send success return value in case of error (Jonathan Toppins) [1685309]
+- [infiniband] IB/core: Add advise_mr to the list of known ops (Jonathan Toppins) [1685309]
+- [infiniband] IB/uverbs: Signedness bug in UVERBS_HANDLER() (Jonathan Toppins) [1685309]
+- [infiniband] IB/umad: Start using dev_groups of class (Jonathan Toppins) [1685309]
+- [infiniband] IB/umad: Use class_groups and let core create class file (Jonathan Toppins) [1685309]
+- [infiniband] IB/umad: Refactor code to use cdev_device_add() (Jonathan Toppins) [1685309]
+- [infiniband] IB/umad: Avoid destroying device while it is accessed (Jonathan Toppins) [1685309]
+- [infiniband] IB/umad: Simplify and avoid dynamic allocation of class (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/iwcm: Don't copy past the end of dev_name() string (Jonathan Toppins) [1685309]
+- [infiniband] IB/core: Move query port to ioctl (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/nldev: Expose port_cap_flags2 (Jonathan Toppins) [1685309]
+- [infiniband] IB/core: uverbs copy to struct or zero helper (Jonathan Toppins) [1685309]
+- [infiniband] RDMA: Mark if destroy address handle is in a sleepable context (Jonathan Toppins) [1685309]
+- [infiniband] RDMA: Mark if create address handle is in a sleepable context (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/restrack: Resource-tracker should not use uobject pointers (Jonathan Toppins) [1685309]
+- [include] IB/uverbs: Add support to advise_mr (Jonathan Toppins) [1685309]
+- [include] IB/uverbs: Add helper to get array size from ptr attribute (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Add an ioctl method to destroy an object (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Add a method to introspect handles in a context (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/core: Delete RoCE GID in hw when corresponding IP is deleted (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Implement an ioctl that can call write and write_ex handlers (Jonathan Toppins) [1685309]
+- [infiniband] RDMA: Start use ib_device_ops (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/rdmavt: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/rxe: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/vmw_pvrdma: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/usnic: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/qib: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/qedr: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/ocrdma: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/nes: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/mthca: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/mlx5: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/mlx4: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/i40iw: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/hns: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/hfi1: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/cxgb4: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/cxgb3: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/bnxt_re: Initialize ib_device_ops struct (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/core: Introduce ib_device_ops (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Optimize clearing of extra bytes in response (Jonathan Toppins) [1685309]
+- [infiniband] IB/core: Add new IB rates (Jonathan Toppins) [1685309]
+- [include] IB/core: Add 2X port width (Jonathan Toppins) [1685309]
+- [include] IB/core: Add CapabilityMask2 to port attributes (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/core: Validate port number in query_pkey verb (Jonathan Toppins) [1685309]
+- [include] RDMA/uverbs: Fix typo in string concatenation macro (Jonathan Toppins) [1685309]
+- [infiniband] IB/core: Enable getting an object type from a given uobject (Jonathan Toppins) [1685309]
+- [infiniband] IB/core: Introduce UVERBS_IDR_ANY_OBJECT (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/nldev: Export to user space number of contexts (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Annotate alloc/deallloc paths with context tracking (Jonathan Toppins) [1685309]
+- [include] RDMA/restrack: Track ucontext (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use only attrs for the write() handler signature (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Do not check the input length on create_cq/qp paths (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use the iterator for ib_uverbs_unmarshall_recv() (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Add a simple iterator interface for reading the command (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Simplify ib_uverbs_ex_query_device (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Fill in the response for IB_USER_VERBS_EX_CMD_MODIFY_QP (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use uverbs_request() and core for write_ex handlers (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use uverbs_request() for request copying (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use uverbs_response() for remaining response copying (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Get rid of the 'callback' scheme in the compat path (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use uverbs_attr_bundle to pass ucore for write/write_ex (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Remove out_len checks that are now done by the core (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: fix ptr_ret.cocci warnings (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use uverbs_attr_bundle to pass udata for ioctl() (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use uverbs_attr_bundle to pass udata for write (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use uverbs_attr_bundle to pass udata for write_ex (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Prohibit write() calls with too small buffers (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Add structure size info to write commands (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Do not pass ib_uverbs_file to ioctl methods (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Make write() handlers return 0 on success (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Replace ib_uverbs_file with uverbs_attr_bundle for write (Jonathan Toppins) [1685309]
+- [include] RDMA/uverbs: Add missing driver_data (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/core: Sync unregistration with netlink commands (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/cma: Move cma module specific functions to cma_priv.h (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Check for NULL driver methods for every write call (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Make all the method functions in uverbs_cmd static (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Convert the write interface to use uverbs_api (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/verbs: Store the write/write_ex uapi entry points in the uverbs_api (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Require all objects to have a driver destroy function (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Add helpers to mark uapi functions as unsupported (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Factor out the add/get pattern into a helper (Jonathan Toppins) [1685309]
+- [infiniband] RDMA/uverbs: Use a linear list to describe the compiled-in uapi (Jonathan Toppins) [1685309]
+- [infiniband] IB/core: Make function ib_fmr_pool_unmap return void (Jonathan Toppins) [1685309]
+- [include] RDMA/core: Remove unused header files mm.h, socket.h, scatterlist.h (Jonathan Toppins) [1685309]
+- [include] IB/uverbs: fix a typo (Jonathan Toppins) [1685309]
+- [fs] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping (Andrea Arcangeli) [1696081] {CVE-2019-3892}
+- [scsi] scsi: csiostor: fix missing data copy in csio_scsi_err_handler() (Arjun Vynipadath) [1664680]
+- [scsi] scsi: csiostor: drop serial_number usage (Arjun Vynipadath) [1664680]
+- [scsi] scsi: csiostor: fix calls to dma_set_mask_and_coherent() (Arjun Vynipadath) [1664680]
+- [scsi] scsi: csiostor: Remove set but not used variable 'pln' (Arjun Vynipadath) [1664680]
+- [scsi] scsi: csiostor: no need to check return value of debugfs_create functions (Arjun Vynipadath) [1664680]
+- [scsi] scsi: csiostor: fix NULL pointer dereference in csio_vport_set_state() (Arjun Vynipadath) [1664680]
+- [scsi] scsi: csiostor: fix incorrect dma device in case of vport (Arjun Vynipadath) [1664680]
+- [scsi] scsi: csiostor: switch to generic DMA API (Arjun Vynipadath) [1664680]
+- [netdrv] thunderx: eliminate extra calls to put_page() for pages held for recycling (Dean Nelson) [1644011]
+- [netdrv] thunderx: enable page recycling for non-XDP case (Dean Nelson) [1644011]
+- [cpufreq] cpufreq: intel_pstate: Also use CPPC nominal_perf for base_frequency (Prarit Bhargava) [1696131]
+- [acpi] ACPI / CPPC: Fix guaranteed performance handling (Prarit Bhargava) [1696131]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (Corinna Vinschen) [1659169]
+- [netdrv] igbvf: Replace spin_is_locked() with lockdep (Corinna Vinschen) [1659169]
+- [netdrv] intel-ethernet: use correct module license (Corinna Vinschen) [1659169]
+- [netdrv] igbvf: netdev: Mark expected switch fall-through (Corinna Vinschen) [1659169]
+- [x86] x86/MCE: Initialize mce.bank in the case of a fatal error in mce_no_way_out() (David Arcari) [1698959]
+- [x86] x86/mce: Restore MCE injector's module name (David Arcari) [1698959]
+- [x86] x86/mce: Streamline MCE subsystem's naming (David Arcari) [1698959]
+- [x86] x86: Fix various typos in comments (David Arcari) [1698959]
+- [x86] x86/MCE/AMD: Fix the thresholding machinery initialization order (David Arcari) [1698959]
+- [x86] x86/mce: Fix -Wmissing-prototypes warnings (David Arcari) [1698959]
+- [x86] acpi/nfit, x86/mce: Validate a MCE's address before using it (David Arcari) [1698959]
+- [x86] acpi/nfit, x86/mce: Handle only uncorrectable machine checks (David Arcari) [1698959]
+- [x86] x86: Clean up 'sizeof x' => 'sizeof(x)' (David Arcari) [1698959]
+- [x86] x86/mcelog: Remove one mce_helper definition (David Arcari) [1698959]
+- [x86] x86/mce-inject: Reset injection struct after injection (David Arcari) [1698959]
+- [mm] x86/mce: Fix set_mce_nospec() to avoid #GP fault (David Arcari) [1698959]
+- [x86] x86/memory_failure: Introduce {set, clear}_mce_nospec() (David Arcari) [1698959]
+- [x86] x86/mce: Cleanup __mc_scan_banks() (David Arcari) [1698959]
+- [x86] x86/mce: Carve out bank scanning code (David Arcari) [1698959]
+- [x86] x86/mce: Carve out the crashing_cpu check (David Arcari) [1698959]
+- [x86] x86/mce: Always use 64-bit timestamps (David Arcari) [1698959]
+- [x86] x86/mce: Remove !banks check (David Arcari) [1698959]
+- [md] dm cache metadata: Fix loading discard bitset (Mike Snitzer) [1701618]
+- [block] null_blk: prevent crash from bad home_node value (Ming Lei) [1696951]
+- [powerpc] powerpc/security: Fix spectre_v2 reporting (Gustavo Duarte) [1694456]
+- [powerpc] powerpc/powernv: Query firmware for count cache flush settings (Gustavo Duarte) [1694456]
+- [powerpc] powerpc/pseries: Query hypervisor for count cache flush settings (Gustavo Duarte) [1694456]
+- [powerpc] powerpc/64s: Add support for software count cache flush (Gustavo Duarte) [1694456]
+- [powerpc] powerpc/64s: Add new security feature flags for count cache flush (Gustavo Duarte) [1694456]
+- [powerpc] powerpc/asm: Add a patch_site macro & helpers for patching instructions (Gustavo Duarte) [1694456]
+- [powerpc] powerpc/64: Call setup_barrier_nospec() from setup_arch() (Gustavo Duarte) [1694456]
+- [powerpc] powerpc/64: Add CONFIG_PPC_BARRIER_NOSPEC (Gustavo Duarte) [1694456]
+- [powerpc] powerpc64s: Show ori31 availability in spectre_v1 sysfs file not v2 (Gustavo Duarte) [1694456]
+
+* Mon Apr 29 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.23.el8]
+- [kernel] sched/fair: Limit sched_cfs_period_timer() loop to avoid hard lockup (Joel Savitz) [1695651]
+- [crypto] crypto: ux500 - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: talitos - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: sun4i-ss - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: stm32 - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: rockchip - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: qce - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: picoxcell - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: omap - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: n2 - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: marvell - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: ixp4xx - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: hifn_795x - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: ccree - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: ccp - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: cavium - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: caam - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: bcm - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: atmel - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: sparc - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [s390] crypto: s390 - Forbid 2-key 3DES in FIPS mode (Herbert Xu) [1687908]
+- [crypto] crypto: des_generic - Forbid 2-key in 3DES and add helpers (Herbert Xu) [1687908]
+- [crypto] crypto: mxc-scc - Remove broken driver (Herbert Xu) [1687908]
+- [kernel] ntp: Audit NTP parameters adjustment (Ondrej Mosnacek) [1680034]
+- [kernel] timekeeping: Audit clock adjustments (Ondrej Mosnacek) [1680034]
+- [kernel] ntp: Remove duplicated include (Ondrej Mosnacek) [1680034]
+- [kernel] timekeeping/ntp: Constify some function arguments (Ondrej Mosnacek) [1680034]
+- [kernel] ntp: Use kstrtos64 for s64 variable (Ondrej Mosnacek) [1680034]
+- [kernel] ntp: Remove redundant arguments (Ondrej Mosnacek) [1680034]
+- [kernel] timekeeping: Use ktime_get_real_ts64() instead of getnstimeofday64() (Ondrej Mosnacek) [1680034]
+- [netdrv] hinic: Add pci device ids (Xiaojun Tan) [1662040]
+- [netdrv] net-next/hinic:add shutdown callback (Xiaojun Tan) [1662040]
+- [netdrv] hinic: optmize rx refill buffer mechanism (Xiaojun Tan) [1662040]
+- [netdrv] net: hinic: remove redundant pointer pfhwdev (Xiaojun Tan) [1662040]
+- [netdrv] net: hns: fix unsigned comparison to less than zero (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Fix sparse: some warnings in HNS drivers (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Fix WARNING when remove HNS driver with SMMU enabled (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: fix ICMP6 neighbor solicitation messages discard problem (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Fix probabilistic memory overwrite when HNS driver initialized (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Use NAPI_POLL_WEIGHT for hns driver (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: fix KASAN: use-after-free in hns_nic_net_xmit_hw() (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: use struct_size() in devm_kzalloc() (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Fixes the missing put_device in positive leg for roce reset (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Fix object reference leaks in hns_dsaf_roce_reset() (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Restart autoneg need return failed when autoneg off (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Fix for missing of_node_put() after of_parse_phandle() (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Use struct_size() in devm_kzalloc() (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Fix use after free identified by SLUB debug (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: make function hns_gmac_wait_fifo_clean() static (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: use eth_get_headlen interface instead of hns_nic_get_headlen (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Mark expected switch fall-through (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: remove redundant variables 'max_frm' and 'tmp_mac_key' (Xiaojun Tan) [1661885]
+- [netdrv] net: hisilicon: hns: Replace mdelay() with msleep() (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: make hns_dsaf_roce_reset non static (Xiaojun Tan) [1661885]
+- [netdrv] net: hns: Make many functions static (Xiaojun Tan) [1661885]
+- [bluetooth] Bluetooth: btusb: Add support for Intel bluetooth device 8087:0029 (Gopal Tiwari) [1678084]
+- [bluetooth] Bluetooth: btusb: Use bt_dev_err for Intel firmware loading errors (Gopal Tiwari) [1678084]
+
+* Fri Apr 26 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.22.el8]
+- [vfio] vfio/pci: Restore device state on PM transition (Alex Williamson) [1700254]
+- [vfio] vfio/pci: Parallelize device open and release (Alex Williamson) [1700254]
+- [pci] Revert "PCI/ASPM: Do not initialize link state when aspm_disabled is set" (Myron Stowe) [1694143]
+- [pci] PCI: Fix incorrect value returned from pcie_get_speed_cap() (Myron Stowe) [1694143]
+- [x86] x86/PCI: Apply VMD's AERSID fixup generically (Myron Stowe) [1694143]
+- [pci] PCI/IOV: Remove unnecessary include of <linux/pci-ats.h> (Myron Stowe) [1694143]
+- [pci] PCI: pcie: Remove redundant 'default n' from Kconfig (Myron Stowe) [1694143]
+- [documentation] NTB: switchtec_ntb: Update switchtec documentation with prerequisites for NTB (Myron Stowe) [1694143]
+- [pci] PCI: Fix Switchtec DMA aliasing quirk dmesg noise (Myron Stowe) [1694143]
+- [pci] PCI: Add macro for Switchtec quirk declarations (Myron Stowe) [1694143]
+- [pci] PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk (Myron Stowe) [1694143]
+- [pci] PCI / ACPI: Mark expected switch fall-through (Myron Stowe) [1694143]
+- [pci] PCI: Remove set but unused variable (Myron Stowe) [1694143]
+- [pci] PCI: Fix pci.c kernel-doc parameter warning (Myron Stowe) [1694143]
+- [pci] PCI: Allocate dma_alias_mask with bitmap_zalloc() (Myron Stowe) [1694143]
+- [include] PCI: Remove unused NFP32xx IDs (Myron Stowe) [1694143]
+- [maintainers] maintainers: Add Hyper-V IOMMU driver into Hyper-V CORE AND DRIVERS scope (Vitaly Kuznetsov) [1663292 1669989]
+- [iommu] hyper-v: Add Hyper-V stub IOMMU driver (Vitaly Kuznetsov) [1663292 1669989]
+- [x86] hyper-v: Set x2apic destination mode to physical when x2apic is available (Vitaly Kuznetsov) [1663292 1669989]
+- [x86] hyper-v: Enable PIT shutdown quirk (Vitaly Kuznetsov) [1663292 1669989]
+- [clocksource] clockevents/drivers/i8253: Add support for PIT shutdown quirk (Vitaly Kuznetsov) [1663292 1669989]
+- [x86] hyperv: Enable PV qspinlock for Hyper-V (Vitaly Kuznetsov) [1663292 1669989]
+- [x86] hyperv: Add GUEST_IDLE_MSR support (Vitaly Kuznetsov) [1663292 1669989]
+- [x86] hv: vmbus: Make TLFS #define names architecture neutral (Vitaly Kuznetsov) [1663292 1669989]
+- [x86] hyperv: Add interrupt handler annotations (Vitaly Kuznetsov) [1663292 1669989]
+- [pci] hv: Refactor hv_irq_unmask() to use cpumask_to_vpset() (Vitaly Kuznetsov) [1663292 1669989]
+- [pci] hv: Replace hv_vp_set with hv_vpset (Vitaly Kuznetsov) [1663292 1669989]
+- [pci] hv: Add __aligned(8) to struct retarget_msi_interrupt (Vitaly Kuznetsov) [1663292 1669989]
+- [vfio] vfio-pci/nvlink2: Fix ancient gcc warnings (Sam Bobroff) [1524679]
+- [vfio] vfio/pci: Cleanup license mess (Sam Bobroff) [1524679]
+- [vfio] vfio/pci: set TRACE_INCLUDE_PATH to fix the build error (Sam Bobroff) [1524679]
+- [vfio] vfio_pci: Add NVIDIA GV100GL [Tesla V100 SXM2] subdriver (Sam Bobroff) [1524679]
+- [vfio] vfio_pci: Allow regions to add own capabilities (Sam Bobroff) [1524679]
+- [vfio] vfio_pci: Allow mapping extra regions (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/npu: Fault user page into the hypervisor's pagetable (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/npu: Check mmio_atsd array bounds when populating (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/npu: Add release_ownership hook (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/npu: Add compound IOMMU groups (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/npu: Convert NPU IOMMU helpers to iommu_table_group_ops (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/npu: Move single TVE handling to NPU PE (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv: Reference iommu_table while it is linked to a group (Sam Bobroff) [1524679]
+- [powerpc] powerpc/iommu_api: Move IOMMU groups setup to a single place (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/pseries: Rework device adding to IOMMU groups (Sam Bobroff) [1524679]
+- [powerpc] powerpc/pseries: Remove IOMMU API support for non-LPAR systems (Sam Bobroff) [1524679]
+- [powerpc] powerpc/pseries/npu: Enable platform support (Sam Bobroff) [1524679]
+- [powerpc] powerpc/pseries/iommu: Use memory@ nodes in max RAM address calculation (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/npu: Move OPAL calls away from context manipulation (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv: Move npu struct from pnv_phb to pci_controller (Sam Bobroff) [1524679]
+- [powerpc] powerpc/vfio/iommu/kvm: Do not pin device memory (Sam Bobroff) [1524679]
+- [vfio] powerpc/mm/iommu/vfio_spapr_tce: Change mm_iommu_get to reference a region (Sam Bobroff) [1524679]
+- [powerpc] powerpc/ioda/npu: Call skiboot's hot reset hook when disabling NPU2 (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/ioda: Allocate indirect TCE levels of cached userspace addresses on demand (Sam Bobroff) [1524679]
+- [powerpc] powerpc/powernv/ioda1: Remove dead code for a single device PE (Sam Bobroff) [1524679]
+- [rpmspec] redhat: add TC selftests to kernel-selftests-internal (Ivan Vecera) [1691376]
+- [rpmspec] redhat: add net selftests to kernel-selftests-internal (Ivan Vecera) [1691376]
+- [rpmspec] redhat: add pktgen samples to kernel-selftests-internal (Ivan Vecera) [1691376]
+- [rpmspec] redhat: rename bpf_samples to kernel-selftests-internal (Ivan Vecera) [1691376]
+- [rpmspec] redhat: remove bpf_samples dependency on glibc-static and build it by default (Ivan Vecera) [1691376]
+- [tools] selftests: bpf: modify urandom_read and link it non-statically (Ivan Vecera) [1691376]
+
+* Wed Apr 24 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.21.el8]
+- [netdrv] ibmvnic: Fix netdev feature clobbering during a reset (Steve Best) [1699018]
+- [netdrv] ibmvnic: Enable GRO (Steve Best) [1699018]
+- [x86] x86/perf/amd: Remove need to check "running" bit in NMI handler (David Arcari) [1640238]
+- [x86] x86/perf/amd: Resolve NMI latency issues for active PMCs (David Arcari) [1640238]
+- [x86] x86/perf/amd: Resolve race condition when disabling PMC (David Arcari) [1640238]
+- [netdrv] qed: Fix qed_mcp_halt|resume() (Manish Chopra) [1697310]
+
+* Tue Apr 23 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.20.el8]
+- [x86] x86/kexec: Fix a kexec_file_load() failure (Bhupesh Sharma) [1666078]
+- [arm64] arm64: kexec_file: include linux/vmalloc.h (Bhupesh Sharma) [1666078]
+- [arm64] arm64: kexec_file: handle empty command-line (Bhupesh Sharma) [1666078]
+- [arm64] arm64: kexec_file: return successfully even if kaslr-seed doesn't exist (Bhupesh Sharma) [1666078]
+- [arm64] arm64: kexec_file: Refactor setup_dtb() to consolidate error checking (Bhupesh Sharma) [1666078]
+- [arm64] arm64: kexec_file: add kaslr support (Bhupesh Sharma) [1666078]
+- [char] random: Make crng state queryable (Bhupesh Sharma) [1666078]
+- [include] include: pe.h: remove message[] from mz header definition (Bhupesh Sharma) [1666078]
+- [arm64] arm64: kexec_file: invoke the kernel without purgatory (Bhupesh Sharma) [1666078]
+- [arm64] arm64: kexec_file: allow for loading Image-format kernel (Bhupesh Sharma) [1666078]
+- [arm64] arm64: kexec_file: load initrd and device-tree (Bhupesh Sharma) [1666078]
+- [arm64] arm64: enable KEXEC_FILE config (Bhupesh Sharma) [1666078]
+- [arm64] arm64: cpufeature: add MMFR0 helper functions (Bhupesh Sharma) [1666078]
+- [arm64] arm64: add image head flag definitions (Bhupesh Sharma) [1666078]
+- [kernel] kexec_file: kexec_walk_memblock() only walks a dedicated region at kdump (Bhupesh Sharma) [1666078]
+- [kernel] powerpc, kexec_file: factor out memblock-based arch_kexec_walk_mem() (Bhupesh Sharma) [1666078]
+- [kernel] s390, kexec_file: drop arch_kexec_mem_walk() (Bhupesh Sharma) [1666078]
+- [kernel] kexec_file: make kexec_image_post_load_cleanup_default() global (Bhupesh Sharma) [1666078]
+- [include] asm-generic: add kexec_file_load system call to unistd.h (Bhupesh Sharma) [1666078]
+- [include] asm-generic: unistd.h: Wire up sys_rseq (Bhupesh Sharma) [1666078]
+- [fs] xfs: don't overflow xattr listent buffer (Bill O'Donnell) [1683531]
+- [drm] drm/i915/gvt: Add in context mmio 0x20D8 to gen9 mmio list (Paul Lai) [1651589]
+- [fs] copy_mount_string: Limit string length to PATH_MAX (Miklos Szeredi) [1655272]
+- [include] redhat: Reuse other arch's cpuhp_state to protect kABI (Robert Richter) [1658476]
+- [drivers] drivers/perf: Add Cavium ThunderX2 SoC UNCORE PMU driver (Robert Richter) [1658476]
+- [documentation] Documentation: perf: Add documentation for ThunderX2 PMU uncore driver (Robert Richter) [1658476]
+
+* Mon Apr 22 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.19.el8]
+- [arm64] arm64: apply workaround on A64FX v1r0 (Mark Langsdorf) [1692306]
+- [fs] kernfs: fix xattr name handling in LSM helpers (Ondrej Mosnacek) [1558179]
+- [include] LSM: lsm_hooks.h - fix missing colon in docstring (Ondrej Mosnacek) [1558179]
+- [security] selinux: Make selinux_kernfs_init_security static (Ondrej Mosnacek) [1558179]
+- [fs] kernfs: initialize security of newly created nodes (Ondrej Mosnacek) [1558179]
+- [security] selinux: implement the kernfs_init_security hook (Ondrej Mosnacek) [1558179]
+- [include] LSM: add new hook for kernfs node initialization (Ondrej Mosnacek) [1558179]
+- [fs] kernfs: use simple_xattrs for security attributes (Ondrej Mosnacek) [1558179]
+- [security] selinux: try security xattr after genfs for kernfs filesystems (Ondrej Mosnacek) [1558179]
+- [fs] kernfs: do not alloc iattrs in kernfs_xattr_get (Ondrej Mosnacek) [1558179]
+- [fs] kernfs: clean up struct kernfs_iattrs (Ondrej Mosnacek) [1558179]
+- [fs] kernfs: allow creating kernfs objects with arbitrary uid/gid (Ondrej Mosnacek) [1558179]
+- [tools] tools/power turbostat: Add Icelake support (Steve Best) [1698546]
+- [tools] tools/power turbostat: consolidate duplicate model numbers (Steve Best) [1698546]
+- [mm] s390/mm: silence compiler warning when compiling without CONFIG_PGSTE (Thomas Huth) [1698848]
+- [scripts] unifdef: use memcpy instead of strncpy (Thomas Huth) [1698848]
+- [s390] s390: align struct lowcore to double page size (Thomas Huth) [1698848]
+- [powerpc] KVM: PPC: Book3S HV: Perserve PSSCR FAKE_SUSPEND bit on guest exit (Suraj Jitindar Singh) [1689768]
+
+* Thu Apr 18 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.18.el8]
+- [virtio] virtio: Honour 'may_reduce_num' in vring_create_virtqueue (Cornelia Huck) [1697505]
+- [s390] setup: set control program code via diag 318 (Thomas Huth) [1592336]
+- [s390] kvm: s390: set host program identifier (Thomas Huth) [1592336]
+- [edac] EDAC, skx: Fix randconfig builds in a better way (Aristeu Rozanski) [1501612 1649988 1571534]
+- [edac] EDAC, skx: Fix randconfig builds (Aristeu Rozanski) [1501612 1649988 1571534]
+- [edac] EDAC, skx_edac: Add address translation for non-volatile DIMMs (Aristeu Rozanski) [1501612 1649988 1571534]
+- [acpi] ACPI/ADXL: Add address translation interface using an ACPI DSM (Aristeu Rozanski) [1501612 1649988 1571534]
+- [x86] x86/mce: Add macros for the corrected error count bit field (Aristeu Rozanski) [1501612 1649988 1571534]
+- [x86] x86/mce: Use BIT_ULL(x) for bit mask definitions (Aristeu Rozanski) [1501612 1649988 1571534]
+- [crypto] crypto: ecc - regularize scalar for scalar multiplication (Neil Horman) [1687888]
+- [crypto] crypto: ecc - check for invalid values in the key verification test (Neil Horman) [1687888]
+- [crypto] crypto: dh - make crypto_dh_encode_key() make robust (Neil Horman) [1687888]
+- [crypto] crypto: dh - fix calculating encoded key size (Neil Horman) [1687888]
+- [crypto] crypto: ecdh - fix typo of P-192 b value (Neil Horman) [1687888]
+- [crypto] crypto: ecdh - add public key verification test (Neil Horman) [1687888]
+- [crypto] crypto: dh - fix memory leak (Neil Horman) [1687888]
+- [crypto] crypto: dh - add public key verification test (Neil Horman) [1687888]
+- [scsi] scsi: hisi_sas: Add softreset in hisi_sas_I_T_nexus_reset() (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Change SERDES_CFG init value to increase reliability of HiLink (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Send HARD RESET to clear the previous affiliation of STP target port (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Set PHY linkrate when disconnected (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: print PHY RX errors count for later revision of v3 hw (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Change return variable type in phy_up_v3_hw() (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: fix calls to dma_set_mask_and_coherent() (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Do some more tidy-up (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Use pci_irq_get_affinity() for v3 hw as experimental (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Issue internal abort on all relevant queues (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: change queue depth from 512 to 4096 (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add manual trigger for debugfs dump (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add support for DIX feature for v3 hw (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add missing seq_printf() call in hisi_sas_show_row_32() (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Fix to only call scsi_get_prot_op() for non-NULL scsi_cmnd (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Some misc tidy-up (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Correct memory allocation size for DQ debugfs (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Fix losing directly attached disk when hot-plug (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Reject setting programmed minimum linkrate > 1.5G (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Remove unused parameter of function hisi_sas_alloc() (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: remove the check of sas_dev status in hisi_sas_I_T_nexus_reset() (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: shutdown axi bus to avoid exception CQ returned (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: send primitive NOTIFY to SSP situation only (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add debugfs ITCT file and add file operations (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Fix type casting and missing static qualifier in debugfs code (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: No need to check return value of debugfs_create functions (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Set protection parameters prior to adding SCSI host (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add debugfs IOST file and add file operations (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add debugfs DQ file and add file operations (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add debugfs CQ file and add file operations (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add debugfs for port registers (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Debugfs global register create file and add file operations (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Take debugfs snapshot for all regs (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Alloc debugfs snapshot buffer memory for all registers (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Create root and device debugfs directories (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add support for DIF feature for v2 hw (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Make sg_tablesize consistent value (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Relocate some code to reduce complexity (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Fix warnings detected by sparse (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: change the time of SAS SSP connection (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Relocate some codes to avoid an unused check (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add support for interrupt coalescing for v3 hw (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Add support for interrupt converge for v3 hw (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Create separate host attributes per HBA (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: use dma_set_mask_and_coherent (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Remove set but not used variable 'dq_list' (Xiaojun Tan) [1662038]
+- [scsi] scsi: hisi_sas: Fix NULL pointer dereference (Xiaojun Tan) [1662038]
+- [nvme] nvme-pci: add missing unlock for reset error (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: fix rapid add remove sequence (Gopal Tiwari) [1665354]
+- [nvme] nvme: remove the .stop_ctrl callout (Gopal Tiwari) [1665354]
+- [nvme] nvme: add support for the Write Zeroes command (Gopal Tiwari) [1665354]
+- [nvme] nvmet-rdma: fix null dereference under heavy load (Gopal Tiwari) [1665354]
+- [nvme] nvme-rdma: fix timeout handler (Gopal Tiwari) [1665354]
+- [nvme] nvme-tcp: fix timeout handler (Gopal Tiwari) [1665354]
+- [nvme] nvmet-tcp: fix uninitialized variable access (Gopal Tiwari) [1665354]
+- [nvme] nvme: don't initlialize ctrl->cntlid twice (Gopal Tiwari) [1665354]
+- [nvme] nvme: introduce NVME_QUIRK_IGNORE_DEV_SUBNQN (Gopal Tiwari) [1665354]
+- [nvme] nvme-tcp: remove dead code (Gopal Tiwari) [1665354]
+- [nvme] nvme-tcp: don't ask if controller is fabrics (Gopal Tiwari) [1665354]
+- [nvme] nvme-fabrics: unset write/poll queues for discovery controllers (Gopal Tiwari) [1665354]
+- [nvme] nvme: pad fake subsys NQN vid and ssvid with zeros (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: fix out of bounds access in nvme_cqe_pending (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: use the same attributes when freeing host_mem_desc_bufs. (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: fix the wrong setting of nr_maps (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: rerun irq setup on IO queue init errors (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: trace SQ status on completions (Gopal Tiwari) [1665354]
+- [nvme] nvme-fabrics: allow user to pass in nr_poll_queues (Gopal Tiwari) [1665354]
+- [nvme] nvme-core: optionally poll sync commands (Gopal Tiwari) [1665354]
+- [nvme] nvme-tcp: fix spelling mistake "attepmpt" -> "attempt" (Gopal Tiwari) [1665354]
+- [nvme] nvme-tcp: fix endianess annotations (Gopal Tiwari) [1665354]
+- [nvme] nvmet-tcp: fix endianess annotations (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: refactor nvme_poll_irqdisable to make sparse happy (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: only set nr_maps to 2 if poll queues are supported (Gopal Tiwari) [1665354]
+- [nvme] nvmet: use a macro for default error location (Gopal Tiwari) [1665354]
+- [nvme] nvmet: fix comparison of a u16 with -1 (Gopal Tiwari) [1665354]
+- [nvme] nvme: fix kernel paging oops (Gopal Tiwari) [1665354]
+- [nvme] nvme-rdma: support separate queue maps for read and write (Gopal Tiwari) [1665354]
+- [nvme] nvme-tcp: support separate queue maps for read and write (Gopal Tiwari) [1665354]
+- [include] block: make request_to_qc_t public (Gopal Tiwari) [1665354]
+- [nvme] nvme-fabrics: allow user to set nr_write_queues for separate queue maps (Gopal Tiwari) [1665354]
+- [nvme] nvme-fabrics: add missing nvmf_ctrl_options documentation (Gopal Tiwari) [1665354]
+- [nvme] blk-mq-rdma: pass in queue map to blk_mq_rdma_map_queues (Gopal Tiwari) [1665354]
+- [nvme] nvmet: update smart log with num err log entries (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add error log support for file backend (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add error log page cmd handler (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add error log support for bdev backend (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add error log support for admin-cmd (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add error log support for fabrics-cmd (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add error log support for rdma backend (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add error log support in the core (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add interface to update error-log page (Gopal Tiwari) [1665354]
+- [include] nvme: add error log page slot definition (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add error-log definitions (Gopal Tiwari) [1665354]
+- [nvme] nvme: remove nvme_common command cdw10 array (Gopal Tiwari) [1665354]
+- [nvme] nvme: provide fallback for discard alloc failure (Gopal Tiwari) [1665354]
+- [nvme] nvmet: remove unused variable (Gopal Tiwari) [1665354]
+- [nvme] nvme: add __exit annotation (Gopal Tiwari) [1665354]
+- [nvme] nvmet: allow configfs tcp trtype configuration (Gopal Tiwari) [1665354]
+- [nvme] nvme-tcp: add NVMe over TCP host driver (Gopal Tiwari) [1665354]
+- [nvme] nvmet-tcp: add NVMe over TCP target driver (Gopal Tiwari) [1665354]
+- [nvme] nvme-fabrics: allow user passing data digest (Gopal Tiwari) [1665354]
+- [nvme] nvme-fabrics: allow user passing header digest (Gopal Tiwari) [1665354]
+- [nvme] nvmet: Add install_queue callout (Gopal Tiwari) [1665354]
+- [nvme] nvmet: use unlikely for req status check (Gopal Tiwari) [1665354]
+- [include] nvme-tcp: Add protocol header (Gopal Tiwari) [1665354]
+- [nvme] nvmet-rdma: Add unlikely for response allocated check (Gopal Tiwari) [1665354]
+- [nvme] nvmet: fix the structure member indentation (Gopal Tiwari) [1665354]
+- [nvme] nvme: implement Enhanced Command Retry (Gopal Tiwari) [1665354]
+- [nvme] nvme: remove unused function nvme_ctrl_ready (Gopal Tiwari) [1665354]
+- [nvme] nvmet: support fabrics sq flow control (Gopal Tiwari) [1665354]
+- [nvme] nvmet: enable Discovery Controller AENs (Gopal Tiwari) [1665354]
+- [nvme] nvmet: expose support for fabrics SQ flow control disable in treq (Gopal Tiwari) [1665354]
+- [nvme] nvme: disable fabrics SQ flow control when asked by the user (Gopal Tiwari) [1665354]
+- [nvme] nvmet-fc: remove the IN_ISR deferred scheduling options (Gopal Tiwari) [1665354]
+- [nvme] nvme: Remove unused forward declaration (Gopal Tiwari) [1665354]
+- [nvme] nvmet: allow host connect even if no allowed subsystems are exported (Gopal Tiwari) [1665354]
+- [nvme] nvmet: don't override treq upon modification. (Gopal Tiwari) [1665354]
+- [nvme] nvmet: mark nvmet_genctr static (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add defines for discovery change async events (Gopal Tiwari) [1665354]
+- [nvme] nvmet: support for traffic based keep-alive (Gopal Tiwari) [1665354]
+- [nvme] nvmet: make kato and AEN processing for use by other controllers (Gopal Tiwari) [1665354]
+- [nvme] nvmet: change aen mask functions to use bit numbers (Gopal Tiwari) [1665354]
+- [nvme] nvmet: provide aen bit functions for multiple controller types (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add support to Discovery controllers for commands (Gopal Tiwari) [1665354]
+- [nvme] nvmet: use IOCB_NOWAIT for file-ns buffered I/O (Gopal Tiwari) [1665354]
+- [nvme] nvmet: allow Keep Alive for Discovery controller (Gopal Tiwari) [1665354]
+- [nvme] nvme: support traffic based keep-alive (Gopal Tiwari) [1665354]
+- [nvme] nvme: cache controller attributes (Gopal Tiwari) [1665354]
+- [nvme] nvme: introduce ctrl attributes enumeration (Gopal Tiwari) [1665354]
+- [nvme] nvme: consolidate memset calls in the nvme_setup_cmd path (Gopal Tiwari) [1665354]
+- [nvme] nvme: warn when finding multi-port subsystems without multipathing enabled (Gopal Tiwari) [1665354]
+- [nvme] Revert "nvmet-rdma: use a private workqueue for delete" (Gopal Tiwari) [1665354]
+- [nvme] nvme-fabrics: move controller options matching to fabrics (Gopal Tiwari) [1665354]
+- [nvme] nvme-rdma: always have a valid trsvcid (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: remove duplicate check (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: fix hot removal during error handling (Gopal Tiwari) [1665354]
+- [nvme] nvmet-fcloop: suppress a compiler warning (Gopal Tiwari) [1665354]
+- [nvme] nvme-core: make implicit seed truncation explicit (Gopal Tiwari) [1665354]
+- [nvme] nvmet-fc: fix kernel-doc headers (Gopal Tiwari) [1665354]
+- [nvme] nvmet: avoid integer overflow in the discard code (Gopal Tiwari) [1665354]
+- [nvme] nvmet-rdma: declare local symbols static (Gopal Tiwari) [1665354]
+- [nvme] nvmet: use strlcpy() instead of strcpy() (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: fix nvme_suspend_queue() kernel-doc header (Gopal Tiwari) [1665354]
+- [nvme] nvme-core: declare local symbols static (Gopal Tiwari) [1665354]
+- [nvme] nvme-core: rework a NQN copying operation (Gopal Tiwari) [1665354]
+- [nvme] nvmet: use strcmp() instead of strncmp() for subsystem lookup (Gopal Tiwari) [1665354]
+- [nvme] nvmet-rdma: check for timeout in nvme_rdma_wait_for_cm() (Gopal Tiwari) [1665354]
+- [nvme] nvmet: remove unreachable code (Gopal Tiwari) [1665354]
+- [nvme] nvme: update node paths after adding new path (Gopal Tiwari) [1665354]
+- [nvme] nvme: remove ns sibling before clearing path (Gopal Tiwari) [1665354]
+- [nvme] nvmet-rdma: use a private workqueue for delete (Gopal Tiwari) [1665354]
+- [nvme] nvmet: don't split large I/Os unconditionally (Gopal Tiwari) [1665354]
+- [nvme] nvme-core: add async event trace helper (Gopal Tiwari) [1665354]
+- [nvme] nvmet_fc: support target port removal with nvmet layer (Gopal Tiwari) [1665354]
+- [nvme] nvmet: remove redundant module prefix (Gopal Tiwari) [1665354]
+- [nvme] nvme: fix typo in nvme_identify_ns_descs (Gopal Tiwari) [1665354]
+- [nvme] nvme: register ns_id attributes as default sysfs groups (Gopal Tiwari) [1665354]
+- [block] block: genhd: add 'groups' argument to device_add_disk (Gopal Tiwari) [1665354]
+- [nvme] nvme: count all ANA groups for ANA Log page (Gopal Tiwari) [1665354]
+- [nvme] nvmet-rdma: fix possible bogus dereference under heavy load (Gopal Tiwari) [1665354]
+- [nvme] nvmet: free workqueue object if module init fails (Gopal Tiwari) [1665354]
+- [nvme] nvme-fcloop: Fix dropped LS's to removed target port (Gopal Tiwari) [1665354]
+- [nvme] nvme-pci: add a memory barrier to nvme_dbbuf_update_and_check_event (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add ns write protect support (Gopal Tiwari) [1665354]
+- [nvme] nvme: set gendisk read only based on nsattr (Gopal Tiwari) [1665354]
+- [include] nvme.h: add support for ns write protect definitions (Gopal Tiwari) [1665354]
+- [nvme] nvmet: use Retain Async Event bit to clear AEN (Gopal Tiwari) [1665354]
+- [nvme] nvmet: support configuring ANA groups (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add minimal ANA support (Gopal Tiwari) [1665354]
+- [nvme] nvmet: track and limit the number of namespaces per subsystem (Gopal Tiwari) [1665354]
+- [nvme] nvmet: keep a port pointer in nvmet_ctrl (Gopal Tiwari) [1665354]
+- [nvme] nvmet: check fileio lba range access boundaries (Gopal Tiwari) [1665354]
+- [nvme] nvmet: don't use uuid_le type (Gopal Tiwari) [1665354]
+- [nvme] nvme-rdma: centralize admin/io queue teardown sequence (Gopal Tiwari) [1665354]
+- [nvme] nvmet: fix file discard return status (Gopal Tiwari) [1665354]
+- [nvme] nvme-rdma: centralize controller setup sequence (Gopal Tiwari) [1665354]
+- [nvme] nvme-rdma: unquiesce queues when deleting the controller (Gopal Tiwari) [1665354]
+- [nvme] nvme: add disk name to trace events (Gopal Tiwari) [1665354]
+- [nvme] nvme-rdma: mark expected switch fall-through (Gopal Tiwari) [1665354]
+- [nvme] nvme: add controller name to trace events (Gopal Tiwari) [1665354]
+- [nvme] nvme: use hw qid in trace events (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add buffered I/O support for file backed ns (Gopal Tiwari) [1665354]
+- [nvme] nvme: move init of keep_alive work item to controller initialization (Gopal Tiwari) [1665354]
+- [nvme] nvmet: add commands supported and effects log page (Gopal Tiwari) [1665354]
+- [nvme] lightnvm: limit get chunk meta request size (Gopal Tiwari) [1665354]
+- [nvme] lightnvm: Remove redundant rq->__data_len initialization (Gopal Tiwari) [1665354]
+- [block] nbd: restrict use to AF_UNIX sockets (Mike Christie) [1673307]
+- [block] nbd: don't allow invalid blocksize settings (Mike Christie) [1673307]
+- [documentation] doc, block, bfq: add information on bfq execution time (Ming Lei) [1686682]
+- [block] block, bfq: save & resume weight on a queue merge/split (Ming Lei) [1686682]
+- [block] block, bfq: print SHARED instead of pid for shared queues in logs (Ming Lei) [1686682]
+- [block] block, bfq: always protect newly-created queues from existing active queues (Ming Lei) [1686682]
+- [block] block, bfq: do not tag totally seeky queues as soft rt (Ming Lei) [1686682]
+- [block] block, bfq: do not merge queues on flash storage with queueing (Ming Lei) [1686682]
+- [block] block, bfq: tune service injection basing on request service times (Ming Lei) [1686682]
+- [block] block, bfq: do not idle for lowest-weight queues (Ming Lei) [1686682]
+- [block] block, bfq: increase idling for weight-raised queues (Ming Lei) [1686682]
+- [block] block/bfq: fix ifdef for CONFIG_BFQ_GROUP_IOSCHED=y (Ming Lei) [1686682]
+- [block] block, bfq: fix in-service-queue check for queue merging (Ming Lei) [1686682]
+- [block] block, bfq: do not overcharge writes in asymmetric scenarios (Ming Lei) [1686682]
+- [block] block, bfq: port commit "cfq-iosched: improve hw_tag detection" (Ming Lei) [1686682]
+- [block] block, bfq: reduce threshold for detecting command queueing (Ming Lei) [1686682]
+- [block] block, bfq: fix queue removal from weights tree (Ming Lei) [1686682]
+- [block] block, bfq: fix sequential rq detection in rate estimation (Ming Lei) [1686682]
+- [block] block, bfq: unconditionally plug I/O in asymmetric scenarios (Ming Lei) [1686682]
+- [block] block, bfq: do not plug I/O of in-service queue when harmful (Ming Lei) [1686682]
+- [block] block, bfq: split function bfq_better_to_idle (Ming Lei) [1686682]
+- [block] block, bfq: consider also ioprio classes in symmetry detection (Ming Lei) [1686682]
+- [block] block, bfq: remove case of redirected bic from insert_request (Ming Lei) [1686682]
+- [block] block, bfq: make sure queue budgets are not below service received (Ming Lei) [1686682]
+- [block] block, bfq: avoid selecting a queue w/o budget (Ming Lei) [1686682]
+- [block] block, bfq: do not consider interactive queues in srt filtering (Ming Lei) [1686682]
+- [net] net: switchdev: Add extack to switchdev_handle_port_obj_add() callback (Ivan Vecera) [1690125]
+- [net] switchdev: Add extack to struct switchdev_notifier_info (Ivan Vecera) [1690125]
+- [net] vxlan: Add a function to init switchdev_notifier_vxlan_fdb_info (Ivan Vecera) [1690125]
+- [net] switchdev: Add extack argument to switchdev_port_obj_add() (Ivan Vecera) [1690125]
+- [net] bridge: Propagate extack to switchdev (Ivan Vecera) [1690125]
+- [net] ndo_bridge_setlink: Add extack (Ivan Vecera) [1690125]
+- [net] rocker, dsa, ethsw: Don't filter VLAN events on bridge itself (Ivan Vecera) [1690125]
+- [net] switchdev: Replace port obj add/del SDO with a notification (Ivan Vecera) [1690125]
+- [net] ocelot: Handle SWITCHDEV_PORT_OBJ_ADD/_DEL (Ivan Vecera) [1690125]
+- [net] mlxsw: spectrum_switchdev: Handle SWITCHDEV_PORT_OBJ_ADD/_DEL (Ivan Vecera) [1690125]
+- [net] switchdev: Add helpers to aid traversal through lower devices (Ivan Vecera) [1690125]
+- [net] staging: fsl-dpaa2: ethsw: Handle SWITCHDEV_PORT_OBJ_ADD/_DEL (Ivan Vecera) [1690125]
+- [net] staging: fsl-dpaa2: ethsw: Introduce ethsw_port_dev_check() (Ivan Vecera) [1690125]
+- [net] dsa: slave: Handle SWITCHDEV_PORT_OBJ_ADD/_DEL (Ivan Vecera) [1690125]
+- [net] rocker: Handle SWITCHDEV_PORT_OBJ_ADD/_DEL (Ivan Vecera) [1690125]
+- [net] switchdev: Add SWITCHDEV_PORT_OBJ_ADD, SWITCHDEV_PORT_OBJ_DEL (Ivan Vecera) [1690125]
+- [net] switchdev: Add a blocking notifier chain (Ivan Vecera) [1690125]
+- [net] switchdev: SWITCHDEV_OBJ_PORT_{VLAN, MDB}(): Sanitize (Ivan Vecera) [1690125]
+- [net] selftests: forwarding: Fix test for different devices (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Add learning test (Ivan Vecera) [1693316]
+- [net] bridge: Allow querying bridge port flags (Ivan Vecera) [1693316]
+- [netdrv] vxlan: Allow changing ageing time (Ivan Vecera) [1693316]
+- [netdrv] vxlan: Add hardware FDB learning (Ivan Vecera) [1693316]
+- [netdrv] vxlan: Don't override user-added entries with ext-learned ones (Ivan Vecera) [1693316]
+- [netdrv] vxlan: Mark user-added FDB entries (Ivan Vecera) [1693316]
+- [netdrv] vxlan: vxlan_fdb_notify(): Make switchdev notification configurable (Ivan Vecera) [1693316]
+- [netdrv] vxlan: __vxlan_fdb_delete(): Drop unused argument vid (Ivan Vecera) [1693316]
+- [netdrv] vxlan: support NTF_USE refresh of fdb entries (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d_port_8472: New test (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Add an ECN decap test (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Add an ECN encap test (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Add a TOS test (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Add a TTL test (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Reconfigure & rerun tests (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Add unicast test (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Add flood test (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: vxlan_bridge_1d: Add ping test (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: Add a skeleton of vxlan_bridge_1d (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: lib: Add link_stats_rx_errors_get() (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: ping{6, }_do(): Allow passing ping arguments (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: ping{6, }_test(): Add description argument (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: lib: Add in_ns() (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: lib: Support NUM_NETIFS of 0 (Ivan Vecera) [1693316]
+- [net] skb_scrub_packet(): Scrub offload_fwd_mark (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: lib: extract ping and ping6 so they can be reused (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: README: Require diagrams (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: lib: Extract interface-init functions (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: tc_rule_stats_get: Parameterize direction (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: multipath_eval(): Improve style (Ivan Vecera) [1693316]
+- [net] selftests: forwarding: Move multipath_eval() to lib.sh (Ivan Vecera) [1693316]
+- [net] selftests: Add test_vxlan_fdb_changelink.sh (Ivan Vecera) [1690309]
+- [netdrv] vxlan: changelink: Fix handling of default remotes (Ivan Vecera) [1690309]
+- [netdrv] vxlan: Fix error path in __vxlan_dev_create() (Ivan Vecera) [1690309]
+- [netdrv] vxlan: Unmark offloaded bit on replaced FDB entries (Ivan Vecera) [1690309]
+- [net] bridge: switchdev: Allow clearing FDB entry offload indication (Ivan Vecera) [1690309]
+- [netdrv] vxlan: Notify for each remote of a removed FDB entry (Ivan Vecera) [1690309]
+- [netdrv] vxlan: Support marking RDSTs as offloaded (Ivan Vecera) [1690309]
+- [netdrv] vxlan: Add vxlan_fdb_find_uc() for FDB querying (Ivan Vecera) [1690309]
+- [netdrv] vxlan: Add switchdev notifications (Ivan Vecera) [1690309]
+- [netdrv] net: Add netif_is_vxlan() (Ivan Vecera) [1690309]
+- [net] inet: Refactor INET_ECN_decapsulate() (Ivan Vecera) [1690309]
+- [netdrv] vxlan: Export address checking functions (Ivan Vecera) [1690309]
+- [net] vxlan: Remove duplicated include from vxlan.h (Ivan Vecera) [1690309]
+- [netdrv] geneve: correctly handle ipv6.disable module parameter (Jiri Benc) [1692390]
+- [net] ipv6: sit: reset ip header pointer in ipip6_rcv (Lorenzo Bianconi) [1691626]
+- [net] vxlan: Don't call gro_cells_destroy() before device is unregistered (Andrea Claudi) [1692499]
+- [net] xsk: do not remove umem from netdevice on fall-back to copy-mode (Petr Oros) [1690568]
+- [net] xsk: Check if a queue exists during umem setup (Petr Oros) [1690568]
+- [net] xsk: simplify xdp_clear_umem_at_qid implementation (Petr Oros) [1690568]
+- [net] ethtool: don't allow disabling queues with umem installed (Petr Oros) [1690568]
+- [net] ethtool: rename local variable max -> curr (Petr Oros) [1690568]
+- [net] xsk: fix bug when trying to use both copy and zero-copy on one queue id (Petr Oros) [1690568]
+- [net] add umem reference in netdev{_rx}_queue (Petr Oros) [1690568]
+- [net] xsk: remove unnecessary assignment (Petr Oros) [1690568]
+- [net] xsk: fix return value of xdp_umem_assign_dev() (Petr Oros) [1690568]
+- [net] xsk: don't allow umem replace at stack level (Petr Oros) [1690568]
+- [net] xsk: refactor xdp_umem_assign_dev() (Petr Oros) [1690568]
+- [net] update real_num_rx_queues even when !CONFIG_SYSFS (Petr Oros) [1690568]
+- [net] core: add __netdev_sent_queue as variant of __netdev_tx_sent_queue (Petr Oros) [1690127]
+- [net] net: do not abort bulk send on BQL status (Petr Oros) [1690129]
+- [net] net: bql: add __netdev_tx_sent_queue() (Petr Oros) [1690129]
+- [net] net: ip6_gre: fix possible NULL pointer dereference in ip6erspan_set_version (Lorenzo Bianconi) [1666315]
+- [net] net: ip6_gre: initialize erspan_ver just for erspan tunnels (Lorenzo Bianconi) [1666315]
+- [net] net: ip6_gre: always reports o_key to userspace (Lorenzo Bianconi) [1666315]
+- [net] net: ip_gre: always reports o_key to userspace (Lorenzo Bianconi) [1666315]
+- [net] tcp: handle inet_csk_reqsk_queue_add() failures (Guillaume Nault) [1690157]
+- [net] ip_gre: use erspan key field for tunnel lookup (Lorenzo Bianconi) [1664570]
+- [net] ip6_gre: simplify gre header parsing in ip6gre_err (Lorenzo Bianconi) [1664570]
+- [net] ipv4: use a dedicated counter for icmp_v4 redirect packets (Lorenzo Bianconi) [1664209]
+- [net] virtchnl: Fix off by one error (Ivan Vecera) [1690114]
+- [net] virtchnl: white space and reorder (Ivan Vecera) [1690114]
+- [net] i40e: Update status codes (Ivan Vecera) [1690114]
+- [net] ethtool: Add WAKE_FILTER and RX_CLS_FLOW_WAKE (Ivan Vecera) [1690091]
+- [net] geneve: allow to clear ttl inherit (Hangbin Liu) [1671251]
+- [net] geneve: add ttl inherit support (Hangbin Liu) [1671251]
+- [net] tipc: fix a double kfree_skb() (Jon Maloy) [1684290]
+- [net] vxlan: Fix GRO cells race condition between receive and link delete (Andrea Claudi) [1687046]
+- [net] sock: consistent handling of extreme SO_SNDBUF/SO_RCVBUF values (Guillaume Nault) [1686564]
+- [net] tun: implement carrier change (Guillaume Nault) [1686566]
+- [net] ip6_tunnel: respect ttl inherit for ip6tnl (Hangbin Liu) [1664944]
+- [net] ip6_gre: update version related info when changing link (Hangbin Liu) [1664900]
+- [net] ipv4/route: fail early when inet dev is missing (Paolo Abeni) [1685424]
+- [net] bonding/802.3ad: fix link_failure_count tracking (Matteo Croce) [1657905]
+- [net] bonding: avoid possible dead-lock (Matteo Croce) [1657905]
+- [net] bonding: fix length of actor system (Matteo Croce) [1657905]
+- [net] bonding: fix warning message (Matteo Croce) [1657905]
+- [net] bonding: pass link-local packets to bonding master also. (Matteo Croce) [1657905]
+
+* Wed Apr 17 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.17.el8]
+- [infiniband] IB/usnic: fix spelling mistake "unvalid" -> "invalid" (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Get rid of ucontext->tgid (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/usnic: Do not use ucontext->tgid (Jonathan Toppins) [1685307]
+- [infiniband] infiniband: remove redundant condition check before debugfs_remove (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/rdmavt: Fix rvt_create_ah function signature (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/drivers: Use core provided API for registering device attributes (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: Remove unnecessary enum values (Jonathan Toppins) [1685307]
+- [infiniband] IB/{hfi1, qib, rdmavt}: Move ruc_loopback to rdmavt (Jonathan Toppins) [1685307]
+- [infiniband] IB/{hfi1, qib, rdmavt}: Move send completion logic to rdmavt (Jonathan Toppins) [1685307]
+- [infiniband] IB/{hfi1, qib, rdmavt}: Move copy SGE logic into rdmavt (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/rxe: Remove unused addr_same() (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: avoid srq memory leak (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: replace kvfree with vfree (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/drivers: Use dev_name instead of ibdev->name (Jonathan Toppins) [1685307 1663226]
+- [infiniband] RDMA/drivers: Use dev_err/dbg/etc instead of pr_* + ibdev->name (Jonathan Toppins) [1685307 1663226]
+- [infiniband] IB/rxe: fixes for rdma read retry (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: avoid back-to-back retries (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: Refactor lookup memory function (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: Avoid NULL check when search is successful (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: Change pool state enums to capital letters (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: Replace spinlock with rwlock (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: Simplify rxe_find_route() to avoid GID query for netdev (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: remove redudant qpn check (Jonathan Toppins) [1685307]
+- [infiniband] IB/rxe: vary the source udp port for receive scaling (Jonathan Toppins) [1685307]
+- [infiniband] iser: set sector for ambiguous mr status errors (Jonathan Toppins) [1685307]
+- [net] svcrdma: Remove try_module_get from backchannel (Jonathan Toppins) [1685307]
+- [net] svcrdma: Remove ->release_rqst call in bc reply handler (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Clean up xprt_rdma_disconnect_inject (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Add documenting comments (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Report when there were zero posted Receives (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Move rb_flags initialization (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Don't disable BH's in backchannel server (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Remove memory address of "ep" from an error message (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Rename rpcrdma_qp_async_error_upcall (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Simplify RPC wake-ups on connect (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Re-organize the switch() in rpcrdma_conn_upcall (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Eliminate "connstate" variable from rpcrdma_conn_upcall() (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Conventional variable names in rpcrdma_conn_upcall (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Rename rpcrdma_conn_upcall (Jonathan Toppins) [1685307]
+- [net] sunrpc: Report connect_time in seconds (Jonathan Toppins) [1685307]
+- [net] sunrpc: Fix connect metrics (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Name MR trace events consistently (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Explicitly resetting MRs is no longer necessary (Jonathan Toppins) [1685307]
+- [net] xprtrdma: Create more MRs at a time (Jonathan Toppins) [1685307]
+- [net] xprtrdma: xprt_release_rqst_cong is called outside of transport_lock (Jonathan Toppins) [1685307]
+- [infiniband] IB/ipoib: Log sysfs 'dev_id' accesses from userspace (Jonathan Toppins) [1685307]
+- [infiniband] IB/ipoib: Use dev_port to expose network interface port numbers (Jonathan Toppins) [1685307]
+- [infiniband] IB/ipoib: Ensure that MTU isn't less than minimum permitted (Jonathan Toppins) [1685307]
+- [infiniband] IB/srp: Remove unnecessary unlikely() (Jonathan Toppins) [1685307]
+- [infiniband] IB/core: Fix oops in netdev_next_upper_dev_rcu() (Jonathan Toppins) [1685307]
+- [infiniband] IB/umem: Set correct address to the invalidation function (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Add GIDs while changing MAC addr only for registered ndev (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Fix comment for hw stats init for port == 0 (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Refactor ib_register_device() function (Jonathan Toppins) [1685307]
+- [infiniband] IB/mlx4: Refer to the device kobject instead of ports_parent (Jonathan Toppins) [1685307]
+- [include] RDMA/core: Allow existing drivers to set one sysfs group per device (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umad: Use kernel API to allocate umad indexes (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Use kernel API to allocate uverbs indexes (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Increase total number of RDMA ports across all devices (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Rename ports_parent to ports_kobj (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/nldev: Allow IB device rename through RDMA netlink (Jonathan Toppins) [1685307 1663226]
+- [infiniband] RDMA/core: Implement IB device rename function (Jonathan Toppins) [1685307 1663226]
+- [infiniband] RDMA/core: Annotate timeout as unsigned long (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Align multiple functions to kernel coding style (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/cma: Remove unused timeout_ms parameter from cma_resolve_iw_route() (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/cm: Respect returned status of cm_init_av_by_path (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/restrack: Protect from reentry to resource return path (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/restrack: Release task struct which was hold by CM_ID object (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/restrack: Consolidate task name updates in one place (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/restrack: Un-inline set task implementation (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Check error status of rdma_find_ndev_for_src_ip_rcu (Jonathan Toppins) [1685307]
+- [include] IB/mlx4: Avoid implicit enumerated type conversion (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/netlink: Simplify netlink listener existence check (Jonathan Toppins) [1685307]
+- [infiniband] RDMA: Remove unused parameter from ib_modify_qp_is_ok() (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Fix RCU annotation for radix slot deference (Jonathan Toppins) [1685307]
+- [infiniband] RDMA: Fix building with CONFIG_MMU=n (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/cma: Introduce and use cma_ib_acquire_dev() (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/cma: Introduce and use cma_acquire_dev_by_src_ip() (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/cma: Allow accepting requests for multi port rdma device (Jonathan Toppins) [1685307]
+- [infiniband] IB/rdmavt: Rename check_send_wqe as setup_wqe (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Acquire and release mmap_sem on page range (Jonathan Toppins) [1685307]
+- [infiniband] IB/sa: simplify return code logic for ib_nl_send_msg() (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/ulp: Use dev_name instead of ibdev->name (Jonathan Toppins) [1685307 1663226]
+- [infiniband] RDMA/core: Use dev_name instead of ibdev->name (Jonathan Toppins) [1685307 1663226]
+- [infiniband] RDMA/core: Use dev_err/dbg/etc instead of pr_* + ibdev->name (Jonathan Toppins) [1685307 1663226]
+- [infiniband] RDMA: Fully setup the device name in ib_register_device (Jonathan Toppins) [1685307 1663226]
+- [infiniband] RDMA/umem: Fix potential addition overflow (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Minor optimizations (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Avoid synchronize_srcu in the ODP MR destruction path (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Handle a half-complete start/end sequence (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Get rid of per_mm->notifier_count (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Use umem->owning_mm inside ODP (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Move all the ODP related stuff out of ucontext and into per_mm (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Get rid of struct ib_umem.odp_data (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Make ib_umem_odp into a sub structure of ib_umem (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Use ib_umem_odp in all function signatures connected to ODP (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Do not use current->tgid to track the mm_struct (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/ucontext: Get rid of the old disassociate flow (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/ucontext: Add a core API for mmaping driver IO memory (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Fix error unwind in ib_uverbs_add_one (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Properly return the error code of rdma_set_src_addr_rcu (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Remove is_closed from ib_uverbs_file (Jonathan Toppins) [1685307]
+- [include] IB/rxe: Revise the ib_wr_opcode enum (Jonathan Toppins) [1685307]
+- [include] RDMA: Remove duplicated include from ib_addr.h (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Consider net ns of gid attribute for RoCE (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Introduce rdma_read_gid_attr_ndev_rcu() to check GID attribute (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Simplify roce_resolve_route_from_path() (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Protect against changing dst->dev during destination resolve (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Refer to network type instead of device type (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Use common code flow for IPv4/6 for addr resolve (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Rename rdma_copy_addr to rdma_copy_src_l2_addr (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Introduce and use rdma_set_src_addr() between IPv4 and IPv6 (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Let protocol specific function typecast sockaddr structure (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Avoid unnecessary sa_family overwrite (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core Introduce and use rdma_find_ndev_for_src_ip_rcu (Jonathan Toppins) [1685307]
+- [infiniband] IB/{hfi1, qib, rdmavt}: Schedule multi RC/UC packets instead of posting (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Move flow resources initialization (Jonathan Toppins) [1685307]
+- [infiniband] IB/uverbs: Add IDRs array attribute type to ioctl() interface (Jonathan Toppins) [1685307]
+- [include] RDMA/core: Document QP @event_handler function (Jonathan Toppins) [1685307]
+- [include] RDMA/core: Document CM @event_handler function (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Assign device ifindex before publishing the device (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Follow correct unregister order between sysfs and cgroup (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/umem: Restore lockdep check while downgrading lock (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Define client_data_lock as rwlock instead of spinlock (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Use simpler spin lock irq API from blocking context (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Remove context entries from list while unregistering device (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Use simplified list_for_each (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: No need to protect kfree with spin lock and semaphore (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/{cma, core}: Avoid callback on rdma_addr_cancel() (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Rate limit MAD error messages (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Fail early if unsupported QP is provided (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Use device.groups to initialize device attributes (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Use cdev_device_add() instead of cdev_add() (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Depend on device_add() to add device attributes (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/core: Replace open-coded variant of get_device (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Declare closing variable as boolean (Jonathan Toppins) [1685307]
+- [infiniband] IB/core: Add an unbound WQ type to the new CQ API (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Add generic function to fill in flow action object (Jonathan Toppins) [1685307]
+- [infiniband] RDMA/uverbs: Add UVERBS_ATTR_CONST_IN to the specs language (Jonathan Toppins) [1685307]
+- [netdrv] ibmvnic: Fix completion structure initialization (Steve Best) [1697103]
+- [rpmspec] redhat: limit headers_install_all to arches we care about (Denys Vlasenko) [1692404]
+- [lib] ida: Add new API (Jonathan Toppins) [1697588]
+- [edac] EDAC: Drop per-memory controller buses (Frank Ramsay) [1686477]
+- [edac] EDAC: Don't add devices under /sys/bus/edac (Frank Ramsay) [1686477]
+- [x86] x86/platform/UV: Use efi_runtime_lock to serialise BIOS calls (Frank Ramsay) [1677695]
+
+* Tue Apr 16 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.16.el8]
+- [pci] PCI: pciehp: Fix re-enabling the slot marked for safe removal (Myron Stowe) [1695922]
+- [rpmspec] redhat: Enable gdb_index (Juri Lelli) [1696747]
+- [fs] ovl: Do not lose security.capability xattr over metadata file copy-up (Vivek Goyal) [1694757]
+- [fs] ovl: During copy up, first copy up data and then xattrs (Vivek Goyal) [1694757]
+
+* Mon Apr 15 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.15.el8]
+- [netdrv] mark the intel igc driver as tech preview (David Arcari) [1495358]
+- [netdrv] igc: Remove unneeded hw_dbg prints (David Arcari) [1495358]
+- [netdrv] igc: Fix the typo in igc_base.h header definition (David Arcari) [1495358]
+- [netdrv] igc: Add support for the ntuple feature (David Arcari) [1495358]
+- [netdrv] igc: Add support for statistics (David Arcari) [1495358]
+- [netdrv] igc: Extend the ethtool supporting (David Arcari) [1495358]
+- [netdrv] igc: Add multiple receive queues control supporting (David Arcari) [1495358]
+- [netdrv] igc: Use struct_size() helper (David Arcari) [1495358]
+- [netdrv] igc: Add ethtool support (David Arcari) [1495358]
+- [netdrv] igc: Remove the 'igc_get_phy_id_base' method (David Arcari) [1495358]
+- [netdrv] igc: Remove the 'igc_read_mac_addr_base' method (David Arcari) [1495358]
+- [netdrv] igc: Remove unneeded code (David Arcari) [1495358]
+- [netdrv] igc: Remove unused code (David Arcari) [1495358]
+- [netdrv] igc: Fix code redundancy (David Arcari) [1495358]
+- [netdrv] igc: Remove unreachable code from igc_phy.c file (David Arcari) [1495358]
+- [netdrv] igc: Remove obsolete IGC_ERR define (David Arcari) [1495358]
+- [netdrv] ethernet/intel: consolidate NAPI and NAPI exit (David Arcari) [1495358]
+- [netdrv] igc: Clean up code (David Arcari) [1495358]
+- [netdrv] igc: Tidy up some white space (David Arcari) [1495358]
+- [netdrv] igc: fix error return handling from call to netif_set_real_num_tx_queues (David Arcari) [1495358]
+- [netdrv] igc: Remove set but not used variable 'pci_using_dac' (David Arcari) [1495358]
+- [netdrv] igc: Remove set but not used variables 'ctrl_ext, link_mode' (David Arcari) [1495358]
+- [netdrv] intel-ethernet: software timestamp skbs as late as possible (David Arcari) [1495358]
+- [netdrv] igc: Add watchdog (David Arcari) [1495358]
+- [netdrv] igc: Add setup link functionality (David Arcari) [1495358]
+- [netdrv] igc: Add code for PHY support (David Arcari) [1495358]
+- [netdrv] igc: Add NVM support (David Arcari) [1495358]
+- [netdrv] igc: Add HW initialization code (David Arcari) [1495358]
+- [netdrv] igc: Add transmit and receive fastpath and interrupt handlers (David Arcari) [1495358]
+- [netdrv] igc: Add support for Tx/Rx rings (David Arcari) [1495358]
+- [netdrv] igc: Add interrupt support (David Arcari) [1495358]
+- [netdrv] igc: Add netdev (David Arcari) [1495358]
+- [netdrv] igc: Add support for PF (David Arcari) [1495358]
+- [netdrv] igc: Add skeletal frame for Intel(R) 2.5G Ethernet Controller support (David Arcari) [1495358]
+- [s390] virtio-ccw: wire up ->bus_name callback (Cornelia Huck) [1695630]
+- [s390] s390/virtio: handle find on invalid queue gracefully (Cornelia Huck) [1695630]
+- [s390] virtio/s390: fix race in ccw_io_helper() (Cornelia Huck) [1695630]
+- [s390] virtio/s390: avoid race on vcdev->config (Cornelia Huck) [1695630]
+- [kvm] KVM: s390: make bitmap declaration consistent (Thomas Huth) [1695090]
+- [kvm] KVM: s390: drop obsolete else path (Thomas Huth) [1695090]
+- [kvm] KVM: s390: clarify kvm related kernel message (Thomas Huth) [1695090]
+- [kvm] s390: vsie: Use effective CRYCBD.31 to check CRYCBD validity (Thomas Huth) [1695090]
+- [kvm] KVM: s390: fix kmsg component kvm-s390 (Thomas Huth) [1695090]
+- [kvm] KVM: s390: unregister debug feature on failing arch init (Thomas Huth) [1695090]
+- [kvm] KVM: s390/vsie: avoid sparse warning (Thomas Huth) [1695090]
+
+* Thu Apr 11 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.14.el8]
+- [powerpc] powerpc: use mm zones more sensibly (David Gibson) [1654978]
+- [s390] s390/mem_detect: add missing include (Philipp Rudo) [1695615]
+- [s390] s390: avoid vmlinux segments overlap (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: add missing FORCE to build targets (Philipp Rudo) [1695615]
+- [s390] s390: move ipl block and cmd line handling to early boot phase (Philipp Rudo) [1695615]
+- [s390] s390/sclp: introduce sclp_early_get_hsa_size (Philipp Rudo) [1695615]
+- [s390] s390/mem_detect: add info source debug print (Philipp Rudo) [1695615]
+- [s390] s390/mem_detect: replace tprot loop with binary search (Philipp Rudo) [1695615]
+- [s390] s390/mem_detect: use SCLP info for continuous memory detection (Philipp Rudo) [1695615]
+- [s390] s390/mem_detect: introduce z/VM specific diag260 call (Philipp Rudo) [1695615]
+- [s390] s390/mem_detect: introduce SCLP storage info (Philipp Rudo) [1695615]
+- [s390] s390: introduce .boot.data section compile time validation (Philipp Rudo) [1695615]
+- [s390] s390/mem_detect: move tprot loop to early boot phase (Philipp Rudo) [1695615]
+- [s390] s390/sclp: move sclp_early_read_info to sclp_early_core.c (Philipp Rudo) [1695615]
+- [s390] s390: introduce .boot.data section (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: clean up and rename compressed/misc.c (Philipp Rudo) [1695615]
+- [s390] s390: rescue initrd as early as possible (Philipp Rudo) [1695615]
+- [s390] s390/sclp: simplify early hsa_size detection (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: get rid of .bss usage (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: rework uncompressed image info collection (Philipp Rudo) [1695615]
+- [s390] s390: remove decompressor's head.S (Philipp Rudo) [1695615]
+- [s390] s390: clean up stacks setup (Philipp Rudo) [1695615]
+- [s390] s390: add initial 64-bit restart PSW (Philipp Rudo) [1695615]
+- [s390] s390/hibernate: fix error handling when suspend cpu != resume cpu (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: support extra debug flags (Philipp Rudo) [1695615]
+- [s390] s390/build: add *.o.chkbss files to targets list (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: avoid packing *.o.chkbss files into startup.a (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: avoid constant startup.a rebuilds (Philipp Rudo) [1695615]
+- [s390] s390/boot: block uncompressed vmlinux booting attempts (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: correct EXCLUDE_FILE construct (Philipp Rudo) [1695615]
+- [s390] s390: move _text to an actual .text start (Philipp Rudo) [1695615]
+- [s390] s390: correct _stext offset (Philipp Rudo) [1695615]
+- [s390] s390: get rid of the first mb of uncompressed image (Philipp Rudo) [1695615]
+- [s390] s390: remove unused _ehead symbol (Philipp Rudo) [1695615]
+- [s390] s390: put expoline execute-trampolines into .text section (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: discard ___kcrctab section (Philipp Rudo) [1695615]
+- [s390] s390/setup: do not reserve the decompressor code (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: support uncompressed kernel (Philipp Rudo) [1695615]
+- [init] init/Kconfig: add an option for uncompressed kernel (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: allow to pack uncompressed vmlinux.bin into piggy.o (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: allow preprocessor in piggy.o linker script (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: extend .bss check for early code (Philipp Rudo) [1695615]
+- [s390] s390: add custom target and make path extension optional for .bss check (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: avoid repeating objects list in Makefile (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: reuse lib/mem.S for mem functions (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: avoid reusing uncompressed image objects (Philipp Rudo) [1695615]
+- [s390] s390/als: avoid .init.* sections usage (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: rename entry point to startup_decompressor (Philipp Rudo) [1695615]
+- [s390] s390/boot: make head.S and als.c be part of the decompressor only (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: trim the kernel image up to 1M (Philipp Rudo) [1695615]
+- [s390] s390: remove uncompressed kernel image build (Philipp Rudo) [1695615]
+- [s390] s390/decompressor: correct build flags (Philipp Rudo) [1695615]
+- [s390] s390/build: remove obsolete -mkernel-backchain flag (Philipp Rudo) [1695615]
+- [tools] tools/power turbostat: return the exit status of a command (David Arcari) [1642739]
+- [misc] misc: hpilo: Do not claim unsupported hardware (Joseph Szczypek) [1665635]
+- [misc] misc: hpilo: Exclude unsupported device via blacklist (Joseph Szczypek) [1665635]
+
+* Wed Apr 10 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.13.el8]
+- [fs] xfs: set buffer ops when repair probes for btree type (Bill O'Donnell) [1689281]
+- [fs] xfs: end sync buffer I/O properly on shutdown error (Bill O'Donnell) [1689281]
+- [fs] xfs: xfs_fsops: drop useless LIST_HEAD (Bill O'Donnell) [1689281]
+- [fs] xfs: xfs_buf: drop useless LIST_HEAD (Bill O'Donnell) [1689281]
+- [fs] iomap: fix a use after free in iomap_dio_rw (Bill O'Donnell) [1689281]
+- [fs] xfs: reallocate realtime summary cache on growfs (Bill O'Donnell) [1689281]
+- [fs] xfs: stringify scrub types in ftrace output (Bill O'Donnell) [1689281]
+- [fs] xfs: stringify btree cursor types in ftrace output (Bill O'Donnell) [1689281]
+- [fs] xfs: move XFS_INODE_FORMAT_STR mappings to libxfs (Bill O'Donnell) [1689281]
+- [fs] xfs: move XFS_AG_BTREE_CMP_FORMAT_STR mappings to libxfs (Bill O'Donnell) [1689281]
+- [fs] xfs: fix symbolic enum printing in ftrace output (Bill O'Donnell) [1689281]
+- [fs] xfs: fix function pointer type in ftrace format (Bill O'Donnell) [1689281]
+- [fs] xfs: Fix x32 ioctls when cmd numbers differ from ia32. (Bill O'Donnell) [1689281]
+- [fs] xfs: Fix bulkstat compat ioctls on x32 userspace. (Bill O'Donnell) [1689281]
+- [fs] xfs: Align compat attrlist_by_handle with native implementation. (Bill O'Donnell) [1689281]
+- [fs] xfs: require both realtime inodes to mount (Bill O'Donnell) [1689281]
+- [fs] xfs: cache minimum realtime summary level (Bill O'Donnell) [1689281]
+- [fs] xfs: count inode blocks correctly in inobt scrub (Bill O'Donnell) [1689281]
+- [fs] xfs: precalculate cluster alignment in inodes and blocks (Bill O'Donnell) [1689281]
+- [fs] xfs: precalculate inodes and blocks per inode cluster (Bill O'Donnell) [1689281]
+- [fs] xfs: add a block to inode count converter (Bill O'Donnell) [1689281]
+- [fs] xfs: remove xfs_rmap_ag_owner and friends (Bill O'Donnell) [1689281]
+- [fs] xfs: const-ify xfs_owner_info arguments (Bill O'Donnell) [1689281]
+- [fs] xfs: streamline defer op type handling (Bill O'Donnell) [1689281]
+- [fs] xfs: idiotproof defer op type configuration (Bill O'Donnell) [1689281]
+- [fs] xfs: clean up indentation issues, remove an unwanted space (Bill O'Donnell) [1689281]
+- [fs] xfs: libxfs: move xfs_perag_put late (Bill O'Donnell) [1689281]
+- [fs] xfs: split up the xfs_reflink_end_cow work into smaller transactions (Bill O'Donnell) [1689281]
+- [crypto] crypto: testmgr - add AES-CFB tests (Neil Horman) [1687897]
+- [scsi] scsi: iscsi: flush running unbind operations when removing a session (Maurizio Lombardi) [1695007]
+- [crypto] crypto: vmx - fix copy-paste error in CTR mode (Herbert Xu) [1693350]
+- [rpmspec] Fix cross builds (Jiri Olsa) [1694956]
+- [lib] sbitmap: order READ/WRITE freed instance and setting clear bit (Ming Lei) [1694521]
+- [block] blk-mq: fix sbitmap ws_active for shared tags (Ming Lei) [1694521]
+- [block] blk-mq: update comment for blk_mq_hctx_has_pending() (Ming Lei) [1694521]
+- [block] blk-mq: use blk_mq_put_driver_tag() to put tag (Ming Lei) [1694521]
+- [include] sbitmap: trivial - update comment for sbitmap_deferred_clear_bit (Ming Lei) [1694521]
+- [block] blkcg: Fix kernel-doc warnings (Ming Lei) [1694521]
+- [block] block: Unexport blk_mq_add_to_requeue_list() (Ming Lei) [1694521]
+- [block] block: add BLK_MQ_POLL_CLASSIC for hybrid poll and return EINVAL for unexpected value (Ming Lei) [1694521]
+- [include] blk-mq: remove unused 'nr_expired' from blk_mq_hw_ctx (Ming Lei) [1694521]
+- [block] loop: access lo_backing_file only when the loop device is Lo_bound (Ming Lei) [1694521]
+- [block] blk-mq: use blk_mq_sched_mark_restart_hctx to set RESTART (Ming Lei) [1694521]
+- [kernel] blkcg: annotate implicit fall through (Ming Lei) [1694521]
+- [block] block: Replace function name in string with __func__ (Ming Lei) [1694521]
+- [block] block: fix NULL pointer dereference in register_disk (Ming Lei) [1694521]
+- [fs] fs: fix guard_bio_eod to check for real EOD errors (Ming Lei) [1694521]
+- [block] blk-mq: use HCTX_TYPE_DEFAULT but not 0 to index blk_mq_tag_set->map (Ming Lei) [1694521]
+- [include] block: remove bvec_iter_rewind() (Ming Lei) [1694521]
+- [block] block: don't use bio->bi_vcnt to figure out segment number (Ming Lei) [1694521]
+- [fs] btrfs: look at bi_size for repair decisions (Ming Lei) [1694521]
+- [block] block: avoid setting none scheduler if it's already none (Ming Lei) [1694521]
+- [block] block: avoid setting wbt_lat_usec to current value (Ming Lei) [1694521]
+- [block] blk-sysfs: Rework documention of __blk_release_queue (Ming Lei) [1694521]
+- [block] blk-cgroup: Fix doc related to blkcg_exit_queue (Ming Lei) [1694521]
+- [block] block: kill QUEUE_FLAG_FLUSH_NQ (Ming Lei) [1694521]
+- [block] block: avoid setting nr_requests to current value (Ming Lei) [1694521]
+- [block] blk-mq: save default hctx into ctx->hctxs for not-supported type (Ming Lei) [1694521]
+- [block] blk-mq: save queue mapping result into ctx directly (Ming Lei) [1694521]
+- [block] block: mq-deadline: Fix write completion handling (Ming Lei) [1694521]
+- [crypto] crypto: user - fix leaking uninitialized memory to userspace (Herbert Xu) [1657880] {CVE-2018-19854}
+- [char] ipmi: fix sleep-in-atomic in free_user at cleanup SRCU user->release_barrier (Xiaojun Tan) [1689480]
+- [infiniband] usnic_verbs: fix deadlock (Govindarajulu Varadarajan) [1688505]
+- [infiniband] IB/usnic: Fix locking when unregistering (Govindarajulu Varadarajan) [1688505]
+- [infiniband] IB/usnic: Fix potential deadlock (Govindarajulu Varadarajan) [1688505]
+- [netdrv] net: hns3: fix improper error handling in the hclge_init_ae_dev() (Xiaojun Tan) [1687060]
+- [netdrv] net: hns3: fix netif_napi_del() not do problem when unloading (Xiaojun Tan) [1687060]
+- [netdrv] net: hns3: Fix NULL deref when unloading driver (Xiaojun Tan) [1687060]
+- [netdrv] net: hns3: Modify the order of initializing command queue register (Xiaojun Tan) [1687060]
+- [netdrv] net: hns3: remove the Redundant put_vector in hns3_client_uninit (Xiaojun Tan) [1687060]
+- [netdrv] net: hns3: reuse reinitialization interface in the hns3_set_channels (Xiaojun Tan) [1687060]
+
+* Tue Apr 09 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.12.el8]
+- [powercap] powercap/intel_rapl: add Ice Lake mobile (Steve Best) [1483427]
+- [x86] x86/CPU: Add Icelake model number (Steve Best) [1483427]
+- [watchdog] watchdog/hpwdt: Update Kconfig documentation (Joseph Szczypek) [1664861]
+- [watchdog] watchdog/hpwdt: Update driver version. (Joseph Szczypek) [1664861]
+- [watchdog] watchdog/hpwdt: Do not claim unsupported hardware (Joseph Szczypek) [1664861]
+- [watchdog] watchdog/hpwdt: Exclude via blacklist (Joseph Szczypek) [1664861]
+- [fs] autofs: add strictexpire mount option (Ian Kent) [1672134]
+- [fs] autofs: change catatonic setting to a bit flag (Ian Kent) [1672134]
+- [fs] autofs: simplify parse_options() function call (Ian Kent) [1672134]
+- [fs] autofs: add AUTOFS_EXP_FORCED flag (Ian Kent) [1672134]
+- [fs] autofs: make expire flags usage consistent with v5 params (Ian Kent) [1672134]
+- [fs] autofs: make autofs_expire_indirect() static (Ian Kent) [1672134]
+- [fs] autofs: make autofs_expire_direct() static (Ian Kent) [1672134]
+- [fs] autofs: fix clearing AUTOFS_EXP_LEAVES in autofs_expire_indirect() (Ian Kent) [1672134]
+- [fs] autofs: fix inconsistent use of now variable (Ian Kent) [1672134]
+- [md] md: Fix failed allocation of md_register_thread (Nigel Croxon) [1665346]
+- [md] It's wrong to add len to sector_nr in raid10 reshape twice (Nigel Croxon) [1665346]
+- [md] raid5: set write hint for PPL (Nigel Croxon) [1665346]
+- [netdrv] amd-xgbe: Fix mdio access for non-zero ports and clause 45 PHYs (Gary Hook) [1669565]
+
+* Mon Apr 08 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.11.el8]
+- [x86] x86/retpolines: Disable switch jump tables when retpolines are enabled (Waiman Long) [1688258]
+- [x86] x86, retpolines: Raise limit for generating indirect calls from switch-case (Waiman Long) [1688258]
+- [net] vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock (Stefano Garzarella) [1676595]
+- [net] vsock/virtio: reset connected sockets on device removal (Stefano Garzarella) [1676595]
+- [net] vsock/virtio: fix kernel panic after device hot-unplug (Stefano Garzarella) [1676595]
+- [powerpc] powerpc/livepatch: return -ERRNO values in save_stack_trace_tsk_reliable() (Joe Lawrence) [1659856]
+- [powerpc] powerpc/livepatch: small cleanups in save_stack_trace_tsk_reliable() (Joe Lawrence) [1659856]
+- [powerpc] powerpc/livepatch: relax reliable stack tracer checks for first-frame (Joe Lawrence) [1659856]
+- [powerpc] powerpc/64s: Make reliable stacktrace dependency clearer (Joe Lawrence) [1659856]
+- [powerpc] powerpc/64s: Clear on-stack exception marker upon exception return (Joe Lawrence) [1659856]
+- [infiniband] iw_cxgb4: Support FW write completion WR (Arjun Vynipadath) [1671320]
+- [infiniband] iw_cxgb4: RDMA write with immediate support (Arjun Vynipadath) [1671320]
+- [infiniband] rdma/cxgb4: fix some info leaks (Arjun Vynipadath) [1671320]
+- [infiniband] rdma/cxgb4: Add support for 64Byte cqes (Arjun Vynipadath) [1671320]
+- [pci] pci: remove unused functionality (Tomas Henzl) [1622638]
+- [scsi] Revert "[scsi] aacraid: add removed id table" (Tomas Henzl) [1622638]
+- [scsi] Revert "[scsi] be2iscsi: add removed id table" (Tomas Henzl) [1622638]
+- [scsi] Revert "[scsi] mpt3sas: add removed id table" (Tomas Henzl) [1622638]
+- [scsi] Revert "[scsi] qla2xxx: add removed id table" (Tomas Henzl) [1622638]
+- [scsi] Revert "[scsi] qla4xxx: add removed id table" (Tomas Henzl) [1622638]
+- [scsi] Revert "[scsi] megaraid_sas: add removed id table" (Tomas Henzl) [1622638]
+- [scsi] lfpc: remove Lancer FCoE (Tomas Henzl) [1622638]
+- [scsi] Revert "[scsi] lpfc: add removed id table" (Tomas Henzl) [1622638]
+- [scsi] Revert "[scsi] lfpc: add Lancer FCoE to the removed devices" (Tomas Henzl) [1622638]
+
+* Fri Apr 05 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.10.el8]
+- [kernel] printk: Export console_printk (Prarit Bhargava) [1642870]
+- [video] fbcon: Silence fbcon logo on 'quiet' boots (Prarit Bhargava) [1642870]
+- [scsi] scsi: ibmvscsi: Fix empty event pool access during host removal (Steve Best) [1692463]
+- [scsi] scsi: ibmvscsi: Protect ibmvscsi_head from concurrent modificaiton (Steve Best) [1692463]
+- [scsi] scsi: ibmvscsi: Improve strings handling (Steve Best) [1692463]
+- [x86] x86/mce: Handle varying MCA bank counts (David Arcari) [1668779]
+- [block] virtio_blk: add discard and write zeroes support (Stefano Garzarella) [1692939]
+- [arm64] arm64: kaslr: ensure randomized quantities are clean also when kaslr is off (Mark Salter) [1673068]
+- [arm64] arm64: kaslr: ensure randomized quantities are clean to the PoC (Mark Salter) [1673068]
+- [tools] perf annotate: Fix getting source line failure (Michael Petlan) [1614435]
+- [infiniband] IB/hfi1: Remove overly conservative VM_EXEC flag check (Alex Estrin) [1680018]
+
+* Thu Apr 04 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.9.el8]
+- [scsi] scsi: qla2xxx: Fix NULL pointer crash due to stale CPUID (Himanshu Madhani) [1685013]
+- [scsi] scsi: core: Avoid that system resume triggers a kernel warning (Ewan Milne) [1691903]
+- [scsi] scsi: core: reset host byte in DID_NEXUS_FAILURE case (Ewan Milne) [1691903]
+- [scsi] scsi: core: Synchronize request queue PM status only on successful resume (Ewan Milne) [1691903]
+- [scsi] scsi: sd: Fix cache_type_store() (Ewan Milne) [1691903]
+- [scsi] scsi: sd: use mempool for discard special page (Ewan Milne) [1691903]
+- [scsi] scsi: core: Remove scsi_block_when_processing_errors: message (Ewan Milne) [1691903]
+- [scsi] scsi: core: Allow state transitions from OFFLINE to BLOCKED (Ewan Milne) [1691903]
+- [scsi] scsi: core: remove unnecessary unlikely() (Ewan Milne) [1691903]
+- [scsi] scsi: st: remove redundant pointer STbuffer (Ewan Milne) [1691903]
+- [scsi] scsi: core: Avoid that SCSI device removal through sysfs triggers a deadlock (Ewan Milne) [1691903]
+- [fs] scsi: sysfs: Introduce sysfs_{un,}break_active_protection() (Ewan Milne) [1691903]
+- [scsi] scsi sg: remove incorrect scsi command checking logic (Ewan Milne) [1691903]
+- [scsi] scsi: read host_busy via scsi_host_busy() (Ewan Milne) [1691903]
+- [scsi] scsi: sd: Remove a superfluous assignment (Ewan Milne) [1691903]
+- [scsi] scsi: don't add scsi command result bytes (Ewan Milne) [1691903]
+- [scsi] scsi: core: check for equality of result byte values (Ewan Milne) [1691903]
+- [scsi] scsi: scsi_transport_fc: use 64-bit timestamps consistently (Ewan Milne) [1691903]
+- [scsi] scsi: sg: clean up gfp_mask in sg_build_indirect (Ewan Milne) [1691903]
+- [scsi] scsi: core: remove Scsi_Cmnd typedef (Ewan Milne) [1691903]
+- [netdrv] ibmvnic: Report actual backing device speed and duplex values (Steve Best) [1691862]
+- [kernel] sched/fair: Fix O(nr_cgroups) in the load balancing path (Phil Auld) [1685636] {CVE-2018-20784}
+- [kernel] sched/fair: Fix insertion in rq->leaf_cfs_rq_list (Phil Auld) [1685636] {CVE-2018-20784}
+- [kernel] sched/fair: Add tmp_alone_branch assertion (Phil Auld) [1685636] {CVE-2018-20784}
+- [kernel] sched/fair: Fix infinite loop in update_blocked_averages() by reverting a9e7f6544b9c (Phil Auld) [1685636] {CVE-2018-20784}
+- [kernel] tracing: Do a WARN_ON() if start_thread() in hwlat is called when thread exists (Jerome Marchand) [1693050]
+- [kernel] ftrace: Add missing check for existing hwlat thread (Jerome Marchand) [1693050]
+- [kernel] tracing: Do not call start/stop() functions when tracing_on does not change (Jerome Marchand) [1693050]
+
+* Wed Apr 03 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.8.el8]
+- [scsi] scsi: lpfc: Fixup eq_clr_intr references (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix build error (Dick Kennedy) [1692882]
+- [scsi] scsi: be2iscsi: lpfc: fix typo (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Update lpfc version to 12.2.0.1 (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Update Copyright in driver version (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Enhance 6072 log string (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix duplicate log message numbers (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Specify node affinity for queue memory allocation (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Reduce memory footprint for lpfc_queue (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Add loopback testing to trunking mode (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix link speed reporting for 4-link trunk (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix handling of trunk links state reporting (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix protocol support on G6 and G7 adapters (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Correct boot bios information to FDMI registration (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix HDMI2 registration string for symbolic name (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix fc4type information for FDMI (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix FDMI manufacturer attribute value (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix io lost on host resets (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix mailbox hang on adapter init (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix driver crash in target reset handler (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Correct localport timeout duration error (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: nvmet: avoid hang / use-after-free when destroying targetport (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Convert bootstrap mbx polling from msleep to udelay (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Coordinate adapter error handling with offline handling (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Stop adapter if pci errors detected (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix deadlock due to nested hbalock call (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix nvmet handling of first burst cmd (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix lpfc_nvmet_mrq attribute handling when 0 (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix nvmet async receive buffer replenishment (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix location of SCSI ktime counters (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix SLI3 commands being issued on SLI4 devices (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix use-after-free mailbox cmd completion (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Resolve irq-unsafe lockdep heirarchy warning in lpfc_io_free (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Resolve inconsistent check of hdwq in lpfc_scsi_cmd_iocb_cmpl (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix error codes in lpfc_sli4_pci_mem_setup() (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: fix 32-bit format string warning (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: fix unused variable warning (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: resolve static checker warning in lpfc_sli4_hba_unset (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Correct __lpfc_sli_issue_iocb_s4 lockdep check (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: fix calls to dma_set_mask_and_coherent() (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: use dma_set_mask_and_coherent (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Remove set but not used variable 'phys_id' (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: fix a handful of indentation issues (Dick Kennedy) [1692882]
+- [scsi] scsi: lpfc: Fix error code if kcalloc() fails (Dick Kennedy) [1692882]
+- [security] security/selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock (Ondrej Mosnacek) [1683296]
+- [security] selinux: add the missing walk_size + len check in selinux_sctp_bind_connect (Ondrej Mosnacek) [1683296]
+- [security] selinux: fix avc audit messages (Ondrej Mosnacek) [1670039 1683296]
+- [security] selinux: replace BUG_ONs with WARN_ONs in avc.c (Ondrej Mosnacek) [1670039 1683296]
+- [security] selinux: log invalid contexts in AVCs (Ondrej Mosnacek) [1670039 1683296]
+- [security] selinux: replace some BUG_ON()s with a WARN_ON() (Ondrej Mosnacek) [1670039 1683296]
+- [security] selinux: inline some AVC functions used only once (Ondrej Mosnacek) [1670039 1683296]
+- [security] selinux: do not override context on context mounts (Ondrej Mosnacek) [1683296]
+- [security] selinux: never allow relabeling on context mounts (Ondrej Mosnacek) [1683296]
+- [security] selinux: stop passing MAY_NOT_BLOCK to the AVC upon follow_link (Ondrej Mosnacek) [1683296]
+- [security] selinux: avoid silent denials in permissive mode under RCU walk (Ondrej Mosnacek) [1683296]
+- [security] selinux: fix GPF on invalid policy (Ondrej Mosnacek) [1683296]
+- [security] selinux: overhaul sidtab to fix bug and improve performance (Ondrej Mosnacek) [1656787 1683296]
+- [security] selinux: use separate table for initial SID lookup (Ondrej Mosnacek) [1656787 1683296]
+- [security] selinux: make "selinux_policycap_names[]" const char * (Ondrej Mosnacek) [1683296]
+- [security] selinux: always allow mounting submounts (Ondrej Mosnacek) [1647723 1683296]
+- [security] selinux: refactor sidtab conversion (Ondrej Mosnacek) [1656787 1683296]
+- [security] selinux: fix non-MLS handling in mls_context_to_sid() (Ondrej Mosnacek) [1683296]
+- [security] selinux: check length properly in SCTP bind hook (Ondrej Mosnacek) [1683296]
+- [security] selinux: policydb - fix byte order and alignment issues (Ondrej Mosnacek) [1668222 1683296]
+- [security] selinux: Add __GFP_NOWARN to allocation at str_read() (Ondrej Mosnacek) [1683296]
+- [security] selinux: refactor mls_context_to_sid() and make it stricter (Ondrej Mosnacek) [1683296]
+- [security] selinux: fix mounting of cgroup2 under older policies (Ondrej Mosnacek) [1683296]
+- [security] selinux: cleanup dentry and inodes on error in selinuxfs (Ondrej Mosnacek) [1683296]
+- [security] selinux: constify write_op[] (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in netnode (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in avc (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in netif (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in netport (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in sidtab (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in netlink (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in selinuxfs (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in services (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in avtab (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in hooks (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in policydb (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in ebitmap (Ondrej Mosnacek) [1683296]
+- [security] selinux: Cleanup printk logging in conditional (Ondrej Mosnacek) [1683296]
+- [fs] fs/proc/kcore.c: fix invalid memory access in multi-page read optimization (Bhupesh Sharma) [1627539]
+- [fs] proc/kcore: add vmcoreinfo note to /proc/kcore (Bhupesh Sharma) [1627539]
+- [kernel] crash_core: use VMCOREINFO_SYMBOL_ARRAY() for swapper_pg_dir (Bhupesh Sharma) [1627539]
+- [fs] proc/kcore: optimize multiple page reads (Bhupesh Sharma) [1627539]
+- [fs] proc/kcore: clean up ELF header generation (Bhupesh Sharma) [1627539]
+- [fs] proc/kcore: hold lock during read (Bhupesh Sharma) [1627539]
+- [fs] proc/kcore: fix memory hotplug vs multiple opens race (Bhupesh Sharma) [1627539]
+- [fs] proc/kcore: replace kclist_lock rwlock with rwsem (Bhupesh Sharma) [1627539]
+- [fs] proc/kcore: don't grab lock for memory hotplug notifier (Bhupesh Sharma) [1627539]
+- [fs] proc/kcore: don't grab lock for kclist_add() (Bhupesh Sharma) [1627539]
+
+* Tue Apr 02 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.7.el8]
+- [net] Merge branch 'linus/master' into rdma.git for-next (Jonathan Toppins) [1685304]
+- [netdrv] net: cisco: enic: Replace GFP_ATOMIC with GFP_KERNEL (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/providers: Remove pointless functions (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/usnic: Suppress a compiler warning (Jonathan Toppins) [1685304]
+- [infiniband] IB/usnic: usnic should not select INFINIBAND_USER_ACCESS (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/vmw_pvrdma: Delete unused function (Jonathan Toppins) [1685304]
+- [infiniband] IB/usnic: Update with bug fixes from core code (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/providers: Fix return value from create_srq callbacks (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/rxe: Simplify the error handling code in rxe_create_ah() (Jonathan Toppins) [1685304]
+- [infiniband] IB/rxe: avoid unnecessary NULL check (Jonathan Toppins) [1685304]
+- [infiniband] IB/rxe: increase max MR limit (Jonathan Toppins) [1685304]
+- [infiniband] IB/rxe: Do not hide uABI stuff in memcpy (Jonathan Toppins) [1685304]
+- [net] rpc: remove unneeded variable 'ret' in rdma_listen_handler (Jonathan Toppins) [1685304]
+- [net] svcrdma: Clean up Read chunk path (Jonathan Toppins) [1685304]
+- [net] svcrdma: Avoid releasing a page in svc_xprt_release() (Jonathan Toppins) [1685304]
+- [net] sunrpc: remove redundant variables 'checksumlen', 'blocksize' and 'data' (Jonathan Toppins) [1685304]
+- [scsi] scsi: target: srp, vscsi, sbp, qla: use target_remove_session (Jonathan Toppins) [1685304]
+- [target] scsi: target: add session removal function (Jonathan Toppins) [1685304]
+- [target] scsi: target: rename target_alloc_session (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/ipoib: Fix check for return code from ib_create_srq (Jonathan Toppins) [1685304]
+- [infiniband] IB/ipoib: Fix error return code in ipoib_dev_init() (Jonathan Toppins) [1685304]
+- [infiniband] IPoIB: use kvzalloc to allocate an array of bucket pointers (Jonathan Toppins) [1685304]
+- [infiniband] ib_srpt: use kvmalloc to allocate ring pointers (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/ipoib: Fix return code from ipoib_cm_dev_init (Jonathan Toppins) [1685304]
+- [infiniband] IB/iser: Remove set-but-not-used variables (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/ipoib: Prefer unsigned int to bare use of unsigned (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/ipoib: Use min_t() macro instead of min() (Jonathan Toppins) [1685304]
+- [infiniband] IB/srp: Remove driver version and release data information (Jonathan Toppins) [1685304]
+- [target] scsi: target: Remove second argument from fabric_make_tpg() (Jonathan Toppins) [1685304]
+- [infiniband] IB/iser: set can_queue earlier to allow setting higher queue depth (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Set right entry state before releasing reference (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Free uapi on destroy (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Fix error cleanup path of ib_uverbs_add_one() (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Release object lock if destroy failed (Jonathan Toppins) [1685304]
+- [infiniband] IB/ucm: fix UCM link error (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Change filter function return type from int to bool (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Update GID entries for netdevice whose mac address changes (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Add default GIDs of the bond master netdev (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Consider adding default GIDs of bond device (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Delete lower netdevice default GID entries in bonding scenario (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Avoid confusing del_netdev_default_ips (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Add comment for change upper netevent handling (Jonathan Toppins) [1685304]
+- [infiniband] IB/ucm: Fix compiling ucm.c (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Do not check for device disassociation during ioctl (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Remove struct uverbs_root_spec and all supporting code (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Use uverbs_api to unmarshal ioctl commands (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Use uverbs_alloc for allocations (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Add a simple allocator to uverbs_attr_bundle (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Remove the ib_uverbs_attr pointer from each attr (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Provide implementation private memory for the uverbs_attr_bundle (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Use uverbs_api to manage the object type inside the uobject (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Build the specs into a radix tree at runtime (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Have the core code create the uverbs_root_spec (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Fix reading of 32 bit flags (Jonathan Toppins) [1685304]
+- [infiniband] IB/ucm: Initialize sgid request GID attribute pointer (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Allow all DESTROY commands to succeed after disassociate (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Do not block disassociate during write() (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Do not pass struct ib_device to the ioctl methods (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Do not pass struct ib_device to the write based methods (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Lower the test for ongoing disassociation (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Allow uobject allocation to work concurrently with disassociate (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Allow RDMA_REMOVE_DESTROY to work concurrently with disassociate (Jonathan Toppins) [1685304]
+- [include] IB/uverbs: Convert 'bool exclusive' into an enum (Jonathan Toppins) [1685304]
+- [include] IB/uverbs: Consolidate uobject destruction (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Make the write path destroy methods use the same flow as ioctl (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Remove rdma_explicit_destroy() from the ioctl methods (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Prefix _ib to IB/RoCE specific functions (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Simplify gid type check in cma_acquire_dev() (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Return bool instead of int (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/cma: Get rid of 1 bit boolean (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/cma: Constify path record, ib_cm_event, listen_id pointers (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Constify dst_addr argument (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/cma: Simplify rdma_resolve_addr() error flow (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/cma: Initialize resource type in __rdma_create_id() (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Check for verbs callbacks before using them (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Remove {create,destroy}_ah from mandatory verbs (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Add UVERBS_ATTR_FLAGS_IN to the specs language (Jonathan Toppins) [1685304]
+- [infiniband] RDMA, core and ULPs: Declare ib_post_send() and ib_post_recv() arguments const (Jonathan Toppins) [1685304]
+- [infiniband] IB/mlx5, ib_post_send(), IB_WR_REG_SIG_MR: Do not modify the 'wr' argument (Jonathan Toppins) [1685304]
+- [net] net/xprtrdma: Restore needed argument to ib_post_send (Jonathan Toppins) [1685304]
+- [net] net/xprtrdma: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [nvme] nvmet-rdma: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [nvme] nvme-rdma: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [infiniband] IB/srpt: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [infiniband] IB/srp: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [infiniband] IB/isert: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [infiniband] IB/iser: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [infiniband] IB/IPoIB: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [infiniband] RDMA: Constify the argument of the work request conversion functions (Jonathan Toppins) [1685304]
+- [infiniband] IB/iser: Inline two work request conversion functions (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/cma: Consider netdevice for RoCE ports (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Introduce and use sgid_attr in CM requests (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Remove extra parentheses (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Fix locking around struct ib_uverbs_file ucontext (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Move the FD uobj type struct file allocation to alloc_commit (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Always propagate errors from rdma_alloc_commit_uobject() (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Rework the locking for cleaning up the ucontext (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Revise and clarify the rwsem and uobjects_lock (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Clarify and revise uverbs_close_fd (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Revise the placement of get/puts on uobject (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Clarify the kref'ing ordering for alloc_commit (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Handle IDR and FD types without truncation (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Get rid of null_obj_type (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Simplify ib_post_(send|recv|srq_recv)() calls (Jonathan Toppins) [1685304]
+- [include] IB/core: Allow ULPs to specify NULL as the third ib_post_(send|recv|srq_recv)() argument (Jonathan Toppins) [1685304]
+- [include] IB/mlx5: Introduce driver create and destroy flow methods (Jonathan Toppins) [1685304]
+- [infiniband] IB: Support ib_flow creation in drivers (Jonathan Toppins) [1685304]
+- [infiniband] IB/mlx5: Introduce flow steering matcher uapi object (Jonathan Toppins) [1685304]
+- [include] IB/uverbs: Move ib_access_flags and ib_read_counters_flags to uapi (Jonathan Toppins) [1685304]
+- [infiniband] IB/cm: Remove cma_multicast->igmp_joined (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/umem: Refactor exit paths in ib_umem_get (Jonathan Toppins) [1685304]
+- [infiniband] IB: Enable uverbs_destroy_def_handler to be used by drivers (Jonathan Toppins) [1685304]
+- [include] IB/uverbs: Pass IB_UVERBS_QPF_GRH_REQUIRED to user space (Jonathan Toppins) [1685304]
+- [infiniband] RDMA: Validate grh_required when handling AVs (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/hfi1: Move grh_required into update_sm_ah (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Simplify check for RoCE route resolve (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Do not use uverbs_cmd_mask in the ioctl path (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/rw: Fix rdma_rw_ctx_signature_init() kernel-doc header (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Remove set-but-not-used variables (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Remove ib_find_cached_gid() and ib_find_cached_gid_by_port() (Jonathan Toppins) [1685304]
+- [infiniband] IB/cm: Remove unused and erroneous msg sequence encoding (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Replace ib_ucq_object uverbs_file with the one in ib_uobject (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Remove ib_uobject_file (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Tidy up remaining references to ucontext (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Replace file->ucontext with file in uverbs_cmd.c (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Replace ib_ucontext with ib_uverbs_file in core function calls (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Move non driver related elements from ib_ucontext to ib_ufile (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Add a uobj_perform_destroy helper (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Combine MIN_SZ_OR_ZERO with UVERBS_ATTR_STRUCT (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Use UVERBS_ATTR_MIN_SIZE correctly and uniformly (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Remove UA_FLAGS (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Get rid of the & in method specifications (Jonathan Toppins) [1685304]
+- [infiniband] IB: Improve uverbs_cleanup_ucontext algorithm (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Simplify UVERBS_OBJECT and _TREE family of macros (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Simplify method definition macros (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Simplify UVERBS_ATTR family of macros (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Split UVERBS_ATTR_FLOW_ACTION_ESP_HANDLE (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Store the specs_root in the struct ib_uverbs_device (Jonathan Toppins) [1685304]
+- [infiniband] IB/cm: Remove now useless rcu_lock in dst_fetch_ha (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Check for rdma_protocol_ib only after validating port_num (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Remove redundant check (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/umem: Don't check for a negative return value of dma_map_sg_attrs() (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/verbs: Drop kernel variant of destroy_flow (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/verbs: Drop kernel variant of create_flow (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Check existence of create_flow callback (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/core: Remove unused ib cache functions (Jonathan Toppins) [1685304]
+- [infiniband] Revert "[infiniband] RDMA/hns: Only assgin the fields of the av if IB_QP_AV bit is set" (Jonathan Toppins) [1685304]
+- [infiniband] RDMA: Convert drivers to use the AH's sgid_attr in post_wr paths (Jonathan Toppins) [1685304]
+- [infiniband] IB/mlx4: Use GID attribute from ah attribute (Jonathan Toppins) [1685304]
+- [infiniband] IB/rxe: Use rdma GID API (Jonathan Toppins) [1685304]
+- [infiniband] IB/cm: Use sgid_attr from the AV (Jonathan Toppins) [1685304]
+- [infiniband] IB/cm: Replace members of sa_path_rec with 'struct sgid_attr *' (Jonathan Toppins) [1685304]
+- [infiniband] IB/cm: Pass the sgid_attr through various events (Jonathan Toppins) [1685304]
+- [infiniband] IB/cm: Keep track of the sgid_attr that created the cm id (Jonathan Toppins) [1685304]
+- [infiniband] IB: Make init_ah_attr_grh_fields set sgid_attr (Jonathan Toppins) [1685304]
+- [infiniband] IB: Make ib_init_ah_from_mcmember set sgid_attr (Jonathan Toppins) [1685304]
+- [infiniband] IB: Make ib_init_ah_attr_from_wc set sgid_attr (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Free GID table entry during GID deletion (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/cma: Consider net namespace while leaving multicast group (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Delete type and id from uverbs_obj_attr (Jonathan Toppins) [1685304]
+- [infiniband] IB/rdmavt, IB/hfi1: Create device dependent s_flags (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Expose ib_ucontext from a given ib_uverbs_file (Jonathan Toppins) [1685304]
+- [include] IB/core: Introduce DECLARE_UVERBS_GLOBAL_METHODS (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Allow an empty namespace in ioctl() framework (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Add a macro to define a type with no kernel known size (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Add PTR_IN attributes that are allocated/copied automatically (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Refactor uverbs_finalize_objects (Jonathan Toppins) [1685304]
+- [infiniband] IB/uverbs: Export uverbs idr and fd types (Jonathan Toppins) [1685304]
+- [infiniband] IB/mad: Use IDR for agent IDs (Jonathan Toppins) [1685304]
+- [infiniband] RDMA: Hold the sgid_attr inside the struct ib_ah/qp (Jonathan Toppins) [1685304]
+- [infiniband] RDMA: Convert drivers to use sgid_attr instead of sgid_index (Jonathan Toppins) [1685304]
+- [infiniband] IB{cm, core}: Introduce and use ah_attr copy, move, replace APIs (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Tidy ib_resolve_eth_dmac (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Add a sgid_attr pointer to struct rdma_ah_attr (Jonathan Toppins) [1685304]
+- [infiniband] IB: Ensure that all rdma_ah_attr's are zero initialized (Jonathan Toppins) [1685304]
+- [infiniband] IB/mad: Agent registration is process context only (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/uverbs: Refactor flow_resources_alloc() function (Jonathan Toppins) [1685304]
+- [infiniband] RDMA/nldev: Return port capability flag for IB only (Jonathan Toppins) [1685304]
+- [net] RDMA/smc: Replace ib_query_gid with rdma_get_gid_attr (Jonathan Toppins) [1685304]
+- [include] IB/cache: Restore compatibility for ib_query_gid (Jonathan Toppins) [1685304]
+- [infiniband] IB: Replace ib_query_gid/ib_get_cached_gid with rdma_query_gid (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Make rdma_find_gid_by_filter support all protocols (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Provide rdma_ versions of the gid cache API (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Replace ib_query_gid with rdma_get_gid_attr (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Introduce GID attribute get, put and hold APIs (Jonathan Toppins) [1685304]
+- [infiniband] RDMA: Use GID from the ib_gid_attr during the add_gid() callback (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Introduce GID entry reference counts (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Store default GID property per-table instead of per-entry (Jonathan Toppins) [1685304]
+- [infiniband] IB/core: Do not set the gid type when reserving default entries (Jonathan Toppins) [1685304]
+- [include] IDR: Expose the XArray lock (Jonathan Toppins) [1688319]
+- [x86] x86/cpufeatures: Enumerate MOVDIR64B instruction (Steve Best) [1482754]
+- [x86] x86/cpufeatures: Enumerate MOVDIRI instruction (Steve Best) [1482754]
+- [nvme] nvme: allow ANA support to be independent of native multipathing (Ewan Milne) [1690940]
+- [nvme] nvme: multipath: Change default of kernel NVMe multipath to be disabled (Ewan Milne) [1690940]
+- [nvme] nvme: convert to SPDX identifiers (Ewan Milne) [1690940]
+- [nvme] nvme-multipath: round-robin I/O policy (Ewan Milne) [1690940]
+- [nvme] nvme-multipath: drop optimization for static ANA group IDs (Ewan Milne) [1690940]
+- [nvme] nvme-multipath: zero out ANA log buffer (Ewan Milne) [1690940]
+- [nvme] nvme-fc: fix numa_node when dev is null (Ewan Milne) [1690940]
+- [nvme] nvme: add a numa_node field to struct nvme_ctrl (Ewan Milne) [1690940]
+- [nvme] nvme: update node paths after adding new path (Ewan Milne) [1690940]
+- [nvme] nvme: take node locality into account when selecting a path (Ewan Milne) [1690940]
+- [s390] s390/mm: Fix ERROR: "__node_distance" undefined! (Ewan Milne) [1690940]
+- [nvme] nvme: call nvme_complete_rq when nvmf_check_ready fails for mpath I/O (Ewan Milne) [1690940]
+- [nvme] nvme: properly propagate errors in nvme_mpath_init (Ewan Milne) [1690940]
+- [nvme] nvme: fixup crash on failed discovery (Ewan Milne) [1690940]
+- [nvme] nvme: add ANA support (Ewan Milne) [1690940]
+- [include] nvme.h: fixup ANA group descriptor format (Ewan Milne) [1690940]
+- [include] nvme.h: add ANA definitions (Ewan Milne) [1690940]
+- [nvme] nvme: remove nvme_req_needs_failover (Ewan Milne) [1690940]
+- [nvme] nvme: simplify the API for getting log pages (Ewan Milne) [1690940]
+- [include] nvme.h: add support for the log specific field (Ewan Milne) [1690940]
+
+* Fri Mar 29 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.6.el8]
+- [md] dm writecache: set "Tech Preview" taint using mark_tech_preview() (Mike Snitzer) [1690587]
+- [md] dm integrity: limit the rate of error messages (Mike Snitzer) [1690105]
+- [md] dm snapshot: don't define direct_access if we don't support it (Mike Snitzer) [1690105]
+- [md] dm cache: add support for discard passdown to the origin device (Mike Snitzer) [1690105]
+- [md] dm writecache: fix typo in name for writeback_wq (Mike Snitzer) [1690105]
+- [md] dm thin: add sanity checks to thin-pool and external snapshot creation (Mike Snitzer) [1690105]
+- [md] dm block manager: remove redundant unlikely annotation (Mike Snitzer) [1690105]
+- [md] dm verity fec: remove redundant unlikely annotation (Mike Snitzer) [1690105]
+- [md] dm integrity: remove redundant unlikely annotation (Mike Snitzer) [1690105]
+- [md] dm switch: use struct_size() in kzalloc() (Mike Snitzer) [1690105]
+- [md] dm: remove unused _rq_tio_cache and _rq_cache (Mike Snitzer) [1690105]
+- [md] dm crypt: don't overallocate the integrity tag space (Mike Snitzer) [1690105]
+- [md] dm: eliminate 'split_discard_bios' flag from DM target interface (Mike Snitzer) [1690105]
+- [md] dm: always call blk_queue_split() in dm_process_bio() (Mike Snitzer) [1690105]
+- [md] dm: update dm_process_bio() to split bio if in ->make_request_fn() (Mike Snitzer) [1690105]
+- [md] dm rq: remove unused arguments from rq_completed() (Mike Snitzer) [1690105]
+- [md] dm integrity: replace open-coded allocation size multiplication (Mike Snitzer) [1690105]
+- [md] dm: Remove VLA usage from hashes (Mike Snitzer) [1690105]
+- [crypto] crypto: hash - Remove VLA usage (Mike Snitzer) [1690105]
+- [md] dm: Avoid namespace collision with bitmap API (Mike Snitzer) [1690105]
+- [md] md/dm-writecache: Don't request pointer dummy_addr when not required (Mike Snitzer) [1690105]
+- [scsi] scsi: qla2xxx: avoid printf format warning (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix issue reported by static checker for qla2x00_els_dcmd2_sp_done() (Himanshu Madhani) [1664534]
+- [scsi] qla2xxx: Update driver version to 10.00.00.14.08.1-k (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Avoid PCI IRQ affinity mapping when multiqueue is not supported (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add new FW dump template entry types (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix code indentation for qla27xx_fwdt_entry (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Move marker request behind QPair (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Prevent SysFS access when chip is down (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add support for setting port speed (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Prevent multiple ADISC commands per session (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Check for FW started flag before aborting (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix unload when NVMe devices are configured (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add First Burst support for FC-NVMe devices (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: remove redundant null check on pointer sess (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Move debug messages before sending srb preventing panic (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Use complete switch scan for RSCN events (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix fw options handle eh_bus_reset() (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Restore FAWWPN of Physical Port only for loop down (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Prevent memory leak for CT req/rsp allocation (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix SRB allocation flag to avoid sleeping in IRQ context (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: allow session delete to finish before create. (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: fix fcport null pointer access. (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: flush IO on chip reset or sess delete (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix session cleanup hang (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Change default ZIO threshold. (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add pci function reset support. (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix N2N target discovery with Local loop (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: no need to check return value of debugfs_create functions (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix DMA error when the DIF sg buffer crosses 4GB boundary (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add protection mask module parameters (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix for FC-NVMe discovery for NPIV port (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix NPIV handling for FC-NVMe (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Enable FC-NVME on NPIV ports (Himanshu Madhani) [1664534]
+- [scsi] Revert "scsi: qla2xxx: Fix NVMe Target discovery" (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: NULL check before some freeing functions is not needed (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Split the __qla2x00_abort_all_cmds() function (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Introduce a switch/case statement in qlt_xmit_tm_rsp() (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix a typo in MODULE_PARM_DESC (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove two arguments from qlafx00_error_entry() (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Make sure that qlafx00_ioctl_iosb_entry() initializes 'res' (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove a set-but-not-used variable (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Make qla2x00_sysfs_write_nvram() easier to analyze (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Declare local functions 'static' (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Improve several kernel-doc headers (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Modify fall-through annotations (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: fully convert to the generic DMA API (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Simplify conditional check (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove unnecessary self assignment (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Return switch command on a timeout (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Move log messages before issuing command to firmware (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix for double free of SRB structure (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix recursive mailbox timeout (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix NVMe Target discovery (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: don't allow negative thresholds (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix comment in MODULE_PARM_DESC in qla2xxx (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove set but not used variable 'ptr_dma' (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: fix typo "CT-PASSTRHU" -> "CT-PASSTHRU" (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix an endian bug in fcpcmd_is_corrupted() (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix double increment of switch scan retry count (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix duplicate switch's Nport ID entries (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove stale debug trace message from tcm_qla2xxx (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix premature command free (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Reject bsg request if chip is down. (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: shutdown chip if reset fail (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix stuck session in PLOGI state (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix early srb free on abort (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add mode control for each physical port (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix race condition for resource cleanup (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix dropped srb resource. (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix port speed display on chip reset (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Check for Register disconnect (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Increase abort timeout value (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Allow FC-NVMe underrun to be handled by transport (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Move ABTS code behind qpair (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove stale ADISC_DONE event (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix Remote port registration (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove ASYNC GIDPN switch command (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Reduce holding sess_lock to prevent CPU lock-up (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Move {get|rel}_sp to base_qpair struct (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add support for ZIO6 interrupt threshold (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix out of order Termination and ABTS response (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add logic to detect ABTS hang and response completion (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add appropriate debug info for invalid RX_ID (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix deadlock between ATIO and HW lock (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Serialize mailbox request (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Terminate Plogi/PRLI if WWN is 0 (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Defer chip reset until target mode is enabled (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove all rports if fabric scan retry fails (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Force fw cleanup on ADISC error (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Turn off IOCB timeout timer on IOCB completion (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Decrement login retry count for only plogi (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Move rport registration out of internal work_list (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Remove redundant check for fcport deletion (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Update rscn_rcvd field to more meaningful scan_needed (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Use correct qpair for ABTS/CMD (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix process response queue for ISP26XX and above (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Migrate NVME N2N handling into state machine (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Save frame payload size from ICB (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix race between switch cmd completion and timeout (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix Management Server NPort handle reservation logic (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Flush mailbox commands on chip reset (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix session state stuck in Get Port DB (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix redundant fc_rport registration (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Silent erroneous message (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Prevent sysfs access when chip is down (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Add longer window for chip reset (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix login retry count (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Fix N2N link re-connect (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: Cleanup for N2N code (Himanshu Madhani) [1664534]
+- [scsi] scsi: qla2xxx: remove irq save in qla2x00_poll() (Himanshu Madhani) [1664534]
+- [netdrv] ice: Do autoneg based on VSI state (Jonathan Toppins) [1687903]
+- [fs] xfs: use the latest extent at writeback delalloc conversion time (Brian Foster) [1661968]
+- [fs] xfs: create delalloc bmapi wrapper for full extent allocation (Brian Foster) [1661968]
+- [fs] xfs: remove superfluous writeback mapping eof trimming (Brian Foster) [1661968]
+- [fs] xfs: validate writeback mapping using data fork seq counter (Brian Foster) [1661968]
+- [fs] xfs: update fork seq counter on data fork changes (Brian Foster) [1661968]
+- [fs] xfs: eof trim writeback mapping as soon as it is cached (Brian Foster) [1661968]
+- [perf] drivers/perf: hisi: update the sccl_id/ccl_id when MT is supported (Xiaojun Tan) [1677815]
+
+* Tue Mar 26 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.5.el8]
+- [x86] x86/hyperv: Fix kernel panic when kexec on HyperV (Kairui Song) [1684451]
+- [rpmspec] apply linux-kernel-test.patch when building ("Herton R. Krzesinski") [1690534]
+- [netdrv] net: ena: update driver version from 2.0.2 to 2.0.3 (John Linville) [1690106]
+- [netdrv] net: ena: fix race between link up and device initalization (John Linville) [1690106]
+- [netdrv] net: phy: add phy_speed_down and phy_speed_up (Petr Oros) [1690131]
+- [netdrv] net: phy: add helper phy_config_aneg (Petr Oros) [1690131]
+- [nvme] nvme-fabrics: convert to SPDX identifiers (Ewan Milne) [1690909]
+- [nvme] nvme-fabrics: fix ctrl_loss_tmo < 0 to reconnect forever (Ewan Milne) [1690909]
+- [nvme] nvme-fc: reject reconnect if io queue count is reduced to zero (Ewan Milne) [1690601]
+- [nvme] nvme-fc: use nr_phys_segments to determine existence of sgl (Ewan Milne) [1690601]
+- [include] nvme-fc: convert to SPDX identifiers (Ewan Milne) [1690601]
+- [nvme] nvme-fc: initialize nvme_req(rq)->ctrl after calling __nvme_fc_init_request() (Ewan Milne) [1690601]
+- [nvme] nvme-fc: fix request private initialization (Ewan Milne) [1690601]
+- [nvme] nvme-fc: rework the request initialization code (Ewan Milne) [1690601]
+- [nvme] nvme-fc: introduce struct nvme_fcp_op_w_sgl (Ewan Milne) [1690601]
+- [nvme] nvme: cache struct nvme_ctrl reference to struct nvme_request (Ewan Milne) [1690601]
+- [nvme] nvme-fc: fix kernel-doc headers (Ewan Milne) [1690601]
+- [nvme] nvme_fc: add 'nvme_discovery' sysfs attribute to fc transport device (Ewan Milne) [1690601]
+- [nvme] nvme-fc: fix for a minor typos (Ewan Milne) [1690601]
+- [crypto] crypto: arm64/aes-ccm - fix logical bug in AAD MAC handling (Neil Horman) [1689185]
+- [mm] mm: enforce min addr even if capable() in expand_downwards() (Rafael Aquini) [1687667] {CVE-2019-9213}
+- [pci] PCI/VMD: Configure MPS settings before adding devices (Prarit Bhargava) [1659270]
+- [pci] PCI: vmd: Detach resources after stopping root bus (Prarit Bhargava) [1659270]
+- [char] tpm: separate cmd_ready/go_idle from runtime_pm (Jerry Snitselaar) [1677735]
+- [block] loop: set GENHD_FL_NO_PART_SCAN after blkdev_reread_part() (Ming Lei) [1683593]
+- [block] loop: do not print warn message if partition scan is successful (Ming Lei) [1683593]
+- [block] loop: drop caches if offset or block_size are changed (Ming Lei) [1683593]
+- [block] block: loop: remove redundant code (Ming Lei) [1683593]
+- [block] block: loop: check error using IS_ERR instead of IS_ERR_OR_NULL in loop_add() (Ming Lei) [1683593]
+- [block] loop: Fix double mutex_unlock(&loop_ctl_mutex) in loop_control_ioctl() (Ming Lei) [1683593]
+- [block] loop: Get rid of 'nested' acquisition of loop_ctl_mutex (Ming Lei) [1683593]
+- [block] loop: Avoid circular locking dependency between loop_ctl_mutex and bd_mutex (Ming Lei) [1683593]
+- [block] loop: Fix deadlock when calling blkdev_reread_part() (Ming Lei) [1683593]
+- [block] loop: Move loop_reread_partitions() out of loop_ctl_mutex (Ming Lei) [1683593]
+- [block] loop: Move special partition reread handling in loop_clr_fd() (Ming Lei) [1683593]
+- [block] loop: Push loop_ctl_mutex down to loop_change_fd() (Ming Lei) [1683593]
+- [block] loop: Push loop_ctl_mutex down to loop_set_fd() (Ming Lei) [1683593]
+- [block] loop: Push loop_ctl_mutex down to loop_set_status() (Ming Lei) [1683593]
+- [block] loop: Push loop_ctl_mutex down to loop_get_status() (Ming Lei) [1683593]
+- [block] loop: Push loop_ctl_mutex down into loop_clr_fd() (Ming Lei) [1683593]
+- [block] loop: Split setting of lo_state from loop_clr_fd (Ming Lei) [1683593]
+- [block] loop: Push lo_ctl_mutex down into individual ioctls (Ming Lei) [1683593]
+- [block] loop: Get rid of loop_index_mutex (Ming Lei) [1683593]
+- [block] loop: Fold __loop_release into loop_release (Ming Lei) [1683593]
+- [block] block/loop: Use global lock for ioctl() operation. (Ming Lei) [1683593]
+- [block] block/loop: Don't grab "struct file" for vfs_getattr() operation. (Ming Lei) [1683593]
+- [crypto] crypto: cfb - fix decryption (Herbert Xu) [1653188]
+
+* Fri Mar 22 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.4.el8]
+- [misc] VMCI: Support upto 64-bit PPNs (Cathy Avery) [1683479]
+- [mm] mm, page_alloc: fix has_unmovable_pages for HugePages (David Gibson) [1688114]
+- [pci] PCI: pciehp: Disable Data Link Layer State Changed event on suspend (Myron Stowe) [1688393 1537397]
+- [pci] PCI: pciehp: Assign ctrl->slot_ctrl before writing it to hardware (Myron Stowe) [1688393 1537397]
+- [pci] PCI/AER: Queue one GHES event, not several uninitialized ones (Myron Stowe) [1688393 1537397]
+- [pci] PCI/AER: Refactor error injection fallbacks (Myron Stowe) [1688393]
+- [pci] PCI/AER: Reuse existing pcie_port_find_device() interface (Myron Stowe) [1688393]
+- [pci] PCI/AER: Use managed resource allocations (Myron Stowe) [1688393]
+- [pci] PCI/AER: Use threaded IRQ for bottom half (Myron Stowe) [1688393]
+- [pci] PCI/AER: Use kfifo_in_spinlocked() to insert locked elements (Myron Stowe) [1688393]
+- [pci] PCI/AER: Use kfifo for tracking events instead of reimplementing it (Myron Stowe) [1688393]
+- [pci] PCI/AER: Remove error source from AER struct aer_rpc (Myron Stowe) [1688393]
+- [pci] PCI/AER: Remove unused aer_error_resume() (Myron Stowe) [1688393]
+- [pci] PCI: pnv_php: Use kmemdup() (Myron Stowe) [1688393]
+- [pci] PCI: cpqphp: Remove set but not used variable 'physical_slot' (Myron Stowe) [1688393]
+- [pci] PCI/ERR: Remove duplicated include from err.c (Myron Stowe) [1688393]
+- [pci] PCI: Equalize hotplug memory and io for occupied and empty slots (Myron Stowe) [1688393]
+- [pci] PCI / ACPI: Whitelist D3 for more PCIe hotplug ports (Myron Stowe) [1688393 1537397]
+- [acpi] ACPI / property: Allow multiple property compatible _DSD entries (Myron Stowe) [1688393 1537397]
+- [pci] PCI: pciehp: Implement runtime PM callbacks (Myron Stowe) [1688393 1537397]
+- [pci] PCI/portdrv: Resume upon exit from system suspend if left runtime suspended (Myron Stowe) [1688393 1537397]
+- [pci] PCI: pciehp: Do not handle events if interrupts are masked (Myron Stowe) [1688393 1537397]
+- [pci] PCI: pciehp: Disable hotplug interrupt during suspend (Myron Stowe) [1688393 1537397]
+- [pci] PCI / ACPI: Enable wake automatically for power managed bridges (Myron Stowe) [1688393 1537397]
+- [pci] PCI: Do not skip power-managed bridges in pci_enable_wake() (Myron Stowe) [1688393 1537397]
+- [pci] PCI: Unify device inaccessible (Myron Stowe) [1688393]
+- [pci] PCI/ERR: Always report current recovery status for udev (Myron Stowe) [1688393]
+- [pci] PCI/ERR: Simplify broadcast callouts (Myron Stowe) [1688393]
+- [pci] PCI/ERR: Run error recovery callbacks for all affected devices (Myron Stowe) [1688393]
+- [pci] PCI/ERR: Handle fatal error recovery (Myron Stowe) [1688393]
+- [pci] PCI/ERR: Use slot reset if available (Myron Stowe) [1688393]
+- [pci] PCI/AER: Don't read upstream ports below fatal errors (Myron Stowe) [1688393]
+- [pci] PCI/AER: Take reference on error devices (Myron Stowe) [1688393]
+- [pci] PCI/DPC: Save and restore config state (Myron Stowe) [1688393]
+- [pci] PCI: portdrv: Restore PCI config state on slot reset (Myron Stowe) [1688393]
+- [pci] PCI: portdrv: Initialize service drivers directly (Myron Stowe) [1688393]
+- [x86] x86/intel_rdt: Show missing resctrl mount options (David Arcari) [1689043]
+- [xen] xen/balloon: Fix mapping PG_offline pages to user space (David Hildenbrand) [1652790]
+- [kernel] PM/Hibernate: exclude all PageOffline() pages (David Hildenbrand) [1652790]
+- [kernel] PM/Hibernate: use pfn_to_online_page() (David Hildenbrand) [1652790]
+- [hv] hv_balloon: mark inflated pages PG_offline (David Hildenbrand) [1652790]
+- [xen] xen/balloon: mark inflated pages PG_offline (David Hildenbrand) [1652790]
+- [kernel] kexec: export PG_offline to VMCOREINFO (David Hildenbrand) [1652790]
+- [include] mm: convert PG_balloon to PG_offline (David Hildenbrand) [1652790]
+- [include] mm: balloon: update comment about isolation/migration/compaction (David Hildenbrand) [1652790]
+- [mm] mm/page_alloc.c: memory hotplug: free pages as higher order (David Hildenbrand) [1652790]
+- [mm] mm/memory.c: do_fault: avoid usage of stale vm_area_struct ("Herton R. Krzesinski") [1684734]
+- [kernel] cpuset: remove unused task_has_mempolicy() (Waiman Long) [1548268]
+- [kernel] cpuset: Remove set but not used variable 'cs' (Waiman Long) [1548268]
+- [kernel] cgroup: Add .__DEBUG__. prefix to debug file names (Waiman Long) [1548268]
+- [kernel] cpuset: Minor cgroup2 interface updates (Waiman Long) [1548268]
+- [kernel] cpuset: Expose cpuset.cpus.subpartitions with cgroup_debug (Waiman Long) [1548268]
+- [documentation] cpuset: Add documentation about the new "cpuset.sched.partition" flag (Waiman Long) [1548268]
+- [kernel] cpuset: Use descriptive text when reading/writing cpuset.sched.partition (Waiman Long) [1548268]
+- [kernel] cpuset: Expose cpus.effective and mems.effective on cgroup v2 root (Waiman Long) [1548268]
+- [kernel] cpuset: Make generate_sched_domains() work with partition (Waiman Long) [1548268]
+- [kernel] cpuset: Make CPU hotplug work with partition (Waiman Long) [1548268]
+- [kernel] cpuset: Track cpusets that use parent's effective_cpus (Waiman Long) [1548268]
+- [kernel] cpuset: Add an error state to cpuset.sched.partition (Waiman Long) [1548268]
+- [kernel] cpuset: Add new v2 cpuset.sched.partition flag (Waiman Long) [1548268]
+- [kernel] cpuset: Simply allocation and freeing of cpumasks (Waiman Long) [1548268]
+- [kernel] cpuset: Define data structures to support scheduling partition (Waiman Long) [1548268]
+- [kernel] cpuset: Enable cpuset controller in default hierarchy (Waiman Long) [1548268]
+- [kernel] cgroup/tracing: Move taking of spin lock out of trace event handlers (Waiman Long) [1548268]
+- [powerpc] powerpc/powernv/ioda: Fix locked_vm counting for memory used by IOMMU tables (David Gibson) [1674410]
+- [pci] PCI: dwc: Fix MSI-X EP framework address calculation bug (Myron Stowe) [1687935]
+- [pci] PCI: cadence: Correct probe behaviour when failing to get PHY (Myron Stowe) [1687935]
+- [pci] PCI: mvebu: Fix PCI I/O mapping creation sequence (Myron Stowe) [1687935]
+- [maintainers] MAINTAINERS: Remove obsolete drivers/pci pattern from ACPI section (Myron Stowe) [1687935]
+- [pci] PCI: dwc: Fix scheduling while atomic issues (Myron Stowe) [1687935]
+- [maintainers] MAINTAINERS: Move mobiveil PCI driver entry where it belongs (Myron Stowe) [1687935]
+- [maintainers] MAINTAINERS: Update PPC contacts for PCI core error handling (Myron Stowe) [1687935]
+- [maintainers] MAINTAINERS: Add Gustavo Pimentel as DesignWare PCI maintainer (Myron Stowe) [1687935]
+- [maintainers] MAINTAINERS: Add entries for PPC64 RPA PCI hotplug drivers (Myron Stowe) [1687935]
+- [pci] PCI: mvebu: Drop bogus comment above mvebu_pcie_map_registers() (Myron Stowe) [1687935]
+- [pci] PCI: mvebu: Convert to use pci_host_bridge directly (Myron Stowe) [1687935]
+- [pci] PCI: mvebu: Use resource_size() to remap I/O space (Myron Stowe) [1687935]
+- [pci] PCI: mvebu: Only remap I/O space if configured (Myron Stowe) [1687935]
+- [pci] PCI: mvebu: Fix I/O space end address calculation (Myron Stowe) [1687935]
+- [pci] PCI: mvebu: Remove redundant platform_set_drvdata() call (Myron Stowe) [1687935]
+- [pci] PCI: mobiveil: Add Kconfig/Makefile entries (Myron Stowe) [1687935]
+- [pci] PCI: mobiveil: Add missing ../pci.h include (Myron Stowe) [1687935]
+- [pci] PCI: mobiveil: Fix struct mobiveil_pcie.pcie_reg_base address type (Myron Stowe) [1687935]
+- [pci] PCI: endpoint: Add MSI set maximum restriction (Myron Stowe) [1687935]
+- [tools] tools: PCI: Add MSI-X support (Myron Stowe) [1687935]
+- [documentation] pci_endpoint_test: Add 2 ioctl commands (Myron Stowe) [1687935]
+- [documentation] pci-epf-test/pci_endpoint_test: Add MSI-X support (Myron Stowe) [1687935]
+- [misc] pci-epf-test/pci_endpoint_test: Use irq_type module parameter (Myron Stowe) [1687935]
+- [misc] pci-epf-test/pci_endpoint_test: Cleanup PCI_ENDPOINT_TEST memspace (Myron Stowe) [1687935]
+- [pci] PCI: dwc: Add legacy interrupt callback handler (Myron Stowe) [1687935]
+- [pci] PCI: dwc: Rework MSI callbacks handler (Myron Stowe) [1687935]
+- [pci] PCI: dwc: Add MSI-X callbacks handler (Myron Stowe) [1687935]
+- [pci] PCI: Update xxx_pcie_ep_raise_irq() and pci_epc_raise_irq() signatures (Myron Stowe) [1687935]
+- [pci] PCI: endpoint: Add MSI-X interfaces (Myron Stowe) [1687935]
+- [pci] PCI: dwc: Fix EP link notification implementation (Myron Stowe) [1687935]
+- [pci] PCI: spear13xx: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: qcom: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: histb: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: designware-plat: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: artpec6: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: armada8k: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: keystone: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: imx6: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: exynos: Drop unnecessary root_bus_nr setting (Myron Stowe) [1687935]
+- [pci] PCI: kirin: Add MSI support (Myron Stowe) [1687935]
+- [pci] PCI: pcie-cadence-ep: Remove redundant variable mmc (Myron Stowe) [1687935]
+- [pci] PCI: cadence: Add shutdown callback to host driver (Myron Stowe) [1687935]
+- [pci] PCI: cadence: Add Power Management ops for host and EP (Myron Stowe) [1687935]
+- [documentation] dt-bindings: PCI: cadence: Add DT bindings for optional PHYs (Myron Stowe) [1687935]
+- [pci] PCI: cadence: Add generic PHY support to host and EP drivers (Myron Stowe) [1687935]
+- [pci] PCI: cadence: Update cdns_pcie_writel() function signature (Myron Stowe) [1687935]
+- [pci] PCI: aardvark: Convert to use pci_host_probe() (Myron Stowe) [1687935]
+- [pci] PCI: aardvark: Size bridges before resources allocation (Myron Stowe) [1687935]
+- [pci] PCI: aardvark: Remove PCIe outbound window configuration (Myron Stowe) [1687935]
+- [pci] PCI: aardvark: Introduce an advk_pcie_valid_device() helper (Myron Stowe) [1687935]
+- [pci] PCI/xilinx: Depend on OF instead of the ARCH (Myron Stowe) [1687935]
+- [md] md: convert to kvmalloc (Nigel Croxon) [1661200]
+- [md] raid1: simplify raid1_error function (Nigel Croxon) [1661200]
+- [md] md-linear: use struct_size() in kzalloc() (Nigel Croxon) [1661200]
+- [md] md/raid5: fix 'out of memory' during raid cache recovery (Nigel Croxon) [1661200]
+- [md] md: Make bio_alloc_mddev use bio_alloc_bioset (Nigel Croxon) [1661200]
+- [md] raid10: refactor common wait code from regular read/write request (Nigel Croxon) [1661200]
+- [md] md: remvoe redundant condition check (Nigel Croxon) [1661200]
+- [lib] lib/raid6: add option to skip algo benchmarking (Nigel Croxon) [1661200]
+- [include] lib/raid6: avoid __attribute_const__ redefinition (Nigel Croxon) [1661200]
+- [include] lib/raid6: add missing include for raid6test (Nigel Croxon) [1661200]
+- [md] md: remove set but not used variable 'bi_rdev' (Nigel Croxon) [1661200]
+- [md] MD: Memory leak when flush bio size is zero (Nigel Croxon) [1661200]
+- [md] md: fix memleak for mempool (Nigel Croxon) [1661200]
+- [md] md-cluster: remove suspend_info (Nigel Croxon) [1661200]
+- [md] md-cluster: send BITMAP_NEEDS_SYNC message if reshaping is interrupted (Nigel Croxon) [1661200]
+- [md] md-cluster/bitmap: don't call md_bitmap_sync_with_cluster during reshaping stage (Nigel Croxon) [1661200]
+- [md] md-cluster/raid10: don't call remove_and_add_spares during reshaping stage (Nigel Croxon) [1661200]
+- [md] md-cluster/raid10: call update_size in md_reap_sync_thread (Nigel Croxon) [1661200]
+- [md] md-cluster: introduce resync_info_get interface for sanity check (Nigel Croxon) [1661200]
+- [md] md-cluster/raid10: support add disk under grow mode (Nigel Croxon) [1661200]
+- [md] md-cluster/raid10: resize all the bitmaps before start reshape (Nigel Croxon) [1661200]
+- [md] MD: fix invalid stored role for a disk - try2 (Nigel Croxon) [1661200]
+- [md] md/bitmap: use mddev_suspend/resume instead of ->quiesce() (Nigel Croxon) [1661200]
+- [md] md: remove redundant code that is no longer reachable (Nigel Croxon) [1661200]
+- [md] md: allow metadata updates while suspending an array - fix (Nigel Croxon) [1661200]
+- [md] MD: fix invalid stored role for a disk (Nigel Croxon) [1661200]
+- [md] md/raid10: Fix raid10 replace hang when new added disk faulty (Nigel Croxon) [1661200]
+- [md] raid5: block failing device if raid will be failed (Nigel Croxon) [1661200]
+- [md] md-cluster: release RESYNC lock after the last resync message (Nigel Croxon) [1661200]
+- [md] RAID10 BUG_ON in raise_barrier when force is true and conf->barrier is 0 (Nigel Croxon) [1661200]
+- [md] md/raid5-cache: disable reshape completely (Nigel Croxon) [1661200]
+- [md] md/raid5: fix data corruption of replacements after originals dropped (Nigel Croxon) [1661200]
+- [md] drivers/md/raid5: Do not disable irq on release_inactive_stripe_list() call (Nigel Croxon) [1661200]
+- [md] drivers/md/raid5: Use irqsave variant of atomic_dec_and_lock() (Nigel Croxon) [1661200]
+- [md] md/r5cache: remove redundant pointer bio (Nigel Croxon) [1661200]
+- [md] md-cluster: don't send msg if array is closing (Nigel Croxon) [1661200]
+- [md] md-cluster: show array's status more accurate (Nigel Croxon) [1661200]
+- [md] md-cluster: clear another node's suspend_area after the copy is finished (Nigel Croxon) [1661200]
+- [powerpc] KVM: PPC: Book3S HV: Add KVM stat largepages_[2M/1G] (Suraj Jitindar Singh) [1581563]
+- [tools] perf mem/c2c: Fix perf_mem_events to support powerpc (Steve Best) [1685084]
+- [powerpc] powerpc/perf: Add mem access events to sysfs (Steve Best) [1685084]
+- [netdrv] net-next/hinic: replace disable_irq_nosync/enable_irq (Xiaojun Tan) [1668958]
+- [powerpc] Fix access_ok() fallout for sparc32 and powerpc (Joe Lawrence) [1673980]
+- [x86] Remove 'type' argument from access_ok() function (Joe Lawrence) [1673980]
+- [arm64] arm64: move untagged_addr macro from uaccess.h to memory.h (Joe Lawrence) [1673980]
+- [powerpc] powerpc/uaccess: fix warning/error with access_ok() (Joe Lawrence) [1673980]
+- [netdrv] igb: shorten maximum PHC timecounter update interval (Corinna Vinschen) [1637098]
+- [netdrv] igb: shorten maximum PHC timecounter update interval (Corinna Vinschen) [1637098]
+
+* Sun Mar 17 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.3.el8]
+- [rpmspec] redhat: speed up binary rpm compression (Denys Vlasenko) [1686921]
+- [netdrv] net/mlx5e: RX, Verify MPWQE stride size is in range (Alaa Hleihel) [1683589]
+- [fs] debugfs: Fix EPERM regression from kernel lockdown check (Lenny Szubowicz) [1686755]
+- [infiniband] IB/hfi1: Close race condition on user context disable and close (Alex Estrin) [1682927]
+- [rpmspec] redhat: parallelize modules compression (Denys Vlasenko) [1686404]
+- [arm64] arm64: Add workaround for Fujitsu A64FX erratum 010001 (Mark Langsdorf) [1666951]
+- [s390] vfio_ap: link the vfio_ap devices to the vfio_ap bus subsystem (Cornelia Huck) [1686044]
+- [drm] drm/cirrus: fix connector leak at unload (Rob Clark) [1685773]
+- [powerpc] powerpc/hugetlb: Handle mmap_min_addr correctly in get_unmapped_area callback (Steve Best) [1685181]
+- [netdrv] net/mlx4_en: Force CHECKSUM_NONE for short ethernet frames (Alaa Hleihel) [1663914 1651509]
+- [netdrv] net/mlx5e: Force CHECKSUM_UNNECESSARY for short ethernet frames (Alaa Hleihel) [1651509]
+- [include] Fix RH_KABI_SET_SIZE to use dereference operator (Tony Camuso) [1670118]
+
+* Thu Mar 14 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.2.el8]
+- [x86] x86/tsc: Make calibration refinement more robust (David Arcari) [1686254]
+- [powerpc] powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR configuration (Steve Best) [1686756]
+- [rpmspec] parallelize "make mrproper" (Denys Vlasenko) [1686865]
+- [rpmspec] use "make -jN" (via _smp_mflags) for modules_install (Denys Vlasenko) [1686308]
+- [fs] xfs: zero length symlinks are not valid (Carlos Maiolino) [1589618]
+- [drm] drm/bufs: Fix Spectre v1 vulnerability (Rob Clark) [1663467]
+- [drm] drm/ioctl: Fix Spectre v1 vulnerabilities (Rob Clark) [1663467]
+- [scsi] scsi: lpfc: Update lpfc version to 12.2.0.0 (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Update 12.2.0.0 file copyrights to 2019 (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix nvmet issues when link bounce under IO load (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct upcalling nvmet_fc transport during io done downcall (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix default driver parameter collision for allowing NPIV support (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Rework locking on SCSI io completion (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Enable SCSI and NVME fc4s by default (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Resize cpu maps structures based on possible cpus (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Utilize new IRQ API when allocating MSI-X vectors (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Rework EQ/CQ processing to address interrupt coalescing (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: cleanup: convert eq_delay to usdelay (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Support non-uniform allocation of MSIX vectors to hardware queues (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix setting affinity hints to correlate with hardware queues (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Allow override of hardware queue selection policies (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Adapt partitioned XRI lists to efficient sharing (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Synchronize hardware queues with SCSI MQ interface (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Convert ring number to hardware queue for nvme wqe posting. (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Move SCSI and NVME Stats to hardware queue structures (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Adapt cpucheck debugfs logic to Hardware Queues (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: cleanup: Remove unused FCP_XRI_ABORT_EVENT slowpath event (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Partition XRI buffer list across Hardware Queues (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Replace io_channels for nvme and fcp with general hdw_queues per cpu (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Remove extra vector and SLI4 queue for Expresslane (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Implement common IO buffers between NVME and SCSI (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: cleanup: Remove excess check on NVME io submit code path (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: cleanup: remove nrport from nvme command structure (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: no need to check return value of debugfs_create functions (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Update lpfc version to 12.0.0.10 (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Adding ability to reset chip via pci bus reset (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Add log messages to aid in debugging fc4type discovery issues (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix discovery failure when PLOGI is defered (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: update fault value on successful trunk events. (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct MDS loopback diagnostics support (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix link state reporting for trunking when adapter is offline (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: do not set queue->page_count to 0 if pc_sli4_params.wqpcnt is invalid (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: update driver version to 12.0.0.9 (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix dif and first burst use in write commands (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix driver release of fw-logging buffers (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct topology type reporting on G7 adapters (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct code setting non existent bits in sli4 ABORT WQE (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Defer LS_ACC to FLOGI on point to point logins (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: ls_rjt erroneus FLOGIs (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Cap NPIV vports to 256 (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix kernel Oops due to null pring pointers (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix a duplicate 0711 log message number. (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix panic when FW-log buffsize is not initialized (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: fix block guard enablement on SLI3 adapters (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Use dma_zalloc_coherent (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: update driver version to 12.0.0.8 (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: add Trunking support (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Implement GID_PT on Nameserver query to support faster failover (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix odd recovery in duplicate FLOGIs in point-to-point (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct LCB RJT handling (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: fcoe: Fix link down issue after 1000+ link bounces (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct errors accessing fw log (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Reset link or adapter instead of doing infinite nameserver PLOGI retry (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix LOGO/PLOGI handling when triggerd by ABTS Timeout event (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix lpfc_sli4_read_config return value check (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct speeds on SFP swap (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: fix remoteport access (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Remove set but not used variables 'tgtp' (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Remove set but not used variable 'psli' (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Remove set but not used variables 'fc_hdr' and 'hw_page_size' (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: fix spelling mistake "Resrouce" -> "Resource" (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: remove a bogus pci_dma_sync_single_for_device call (Dick Kennedy) [1665288]
+- [netdrv] PCI/AER: Remove pci_cleanup_aer_uncorrect_error_status() calls (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Synchronize access to remoteport via rport (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Remove set but not used variable 'sgl_size' (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: update driver version to 12.0.0.7 (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: add support to retrieve firmware logs (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: reduce locking when updating statistics (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix errors in log messages. (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct invalid EQ doorbell write on if_type=6 (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct irq handling via locks when taking adapter offline (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct soft lockup when running mds diagnostics (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Correct race with abort on completion path (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Raise nvme defaults to support a larger io and more connectivity (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: raise sg count for nvme to use available sg resources (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Fix GFT_ID and PRLI logic for RSCN (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: remove an unnecessary NULL check (Dick Kennedy) [1665288]
+- [scsi] scsi: lpfc: Default fdmi_on to on (Dick Kennedy) [1665288]
+- [powerpc] powerpc/mm/hash: Increase vmalloc space with hash translation mode (Steve Best) [1676974]
+- [net] sunrpc: fix 4 more call sites that were using stack memory with a scatterlist (Scott Mayhew) [1679183]
+- [net] sunrpc: Don't use stack buffer with scatterlist (Scott Mayhew) [1679183]
+- [powerpc] powerpc/pseries: Perform full re-add of CPU for topology update post-migration (Steve Best) [1678209]
+- [fs] proc/stat: Make the interrupt statistics more efficient (Waiman Long) [1675168]
+- [kernel] genirq: Avoid summation loops for /proc/stat (Waiman Long) [1675168]
+- [powerpc] powerpc/pseries: fix EEH recovery of some IOV devices (Steve Best) [1676889]
+- [block] nvme: lock NS list changes while handling command effects (David Milburn) [1672759]
+- [powerpc] powerpc/radix: Fix kernel crash with mremap() (Steve Best) [1674186]
+- [crypto] crypto: ccp - fix the SEV probe in kexec boot path (Gary Hook) [1658806]
+- [netdrv] HDLC Frame Relay: mark driver unsupported in RHEL8 (John Linville) [1660627]
+- [netdrv] DLCI: mark driver unsupported in RHEL8 (John Linville) [1660627]
+- [netdrv] ethoc: mark hardware unsupported in RHEL8 (John Linville) [1660627]
+- [netdrv] dnet: mark hardware unsupported in RHEL8 (John Linville) [1660627]
+- [netdrv] dl2k: mark hardware unsupported in RHEL8 (John Linville) [1660627]
+- [netdrv] mark qla3xxx driver as unsupported (John Linville) [1658840]
+- [netdrv] sfc: initialise found bitmap in efx_ef10_mtd_probe (Jarod Wilson) [1668656]
+- [netdrv] sfc: suppress duplicate nvmem partition types in efx_ef10_mtd_probe (Jarod Wilson) [1668656]
+- [netdrv] sfc: extend MTD support for newer hardware (Jarod Wilson) [1668656]
+- [netdrv] sfc: add missing NVRAM partition types for EF10 (Jarod Wilson) [1668656]
+- [netdrv] ibmvnic: Fix non-atomic memory allocation in IRQ context (Steve Best) [1671474]
+- [netdrv] ibmvnic: Convert reset work item mutex to spin lock (Steve Best) [1671474]
+- [powerpc] powerpc/pseries: Export raw per-CPU VPA data via debugfs (Steve Best) [1608797]
+- [powerpc] powerpc/pseries: Export maximum memory value (Steve Best) [1608797]
+- [netdrv] ibmveth: Do not process frames after calling napi_reschedule (Desnes Augusto Nunes do Rosario) [1635577]
+- [cpufreq] cpufreq: powernv: Remove global pstate ramp-down timer in POWER9 (Steve Best) [1670030]
+- [of] of: __of_detach_node() - remove node from phandle cache (Steve Best) [1669198]
+- [of] of: of_node_get()/of_node_put() nodes held in phandle cache (Steve Best) [1669198]
+- [edac] EDAC, sb_edac: Fix signedness bugs in *_get_ha() functions (Aristeu Rozanski) [1641574]
+- [edac] EDAC, sb_edac: Fix reporting for patrol scrubber errors (Aristeu Rozanski) [1641574]
+- [documentation] proc.txt: Adding 'HardwareCorrupted' field and description. (Prashant Dhamdhere) [1658233]
+- [netdrv] qed: Fix command number mismatch between driver and the mfw (Chad Dupuis) [1663500]
+- Revert "[redhat] switch secureboot kernel image signing to release keys" ("Herton R. Krzesinski")
+
+* Wed Mar 13 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-80.1.el8]
+- [arm64] revert "arm64: tlb: Avoid synchronous TLBIs when freeing page tables" (Christoph von Recklinghausen) [1685697]
+
+* Wed Mar 13 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-79.1.el8]
+- [firmware] drivers/firmware: psci_checker: stash and use topology_core_cpumask for hotplug tests (Josh Poimboeuf) [1687101]
+- [arm64] arm64: topology: re-introduce numa mask check for scheduler MC selection (Josh Poimboeuf) [1687101]
+- [arm64] arm64: topology: rename llc_siblings to align with other struct members (Josh Poimboeuf) [1687101]
+- [arm64] arm64: smp: remove cpu and numa topology information when hotplugging out CPU (Josh Poimboeuf) [1687101]
+- [arm64] arm64: topology: restrict updating siblings_masks to online cpus only (Josh Poimboeuf) [1687101]
+- [arm64] arm64: topology: add support to remove cpu topology sibling masks (Josh Poimboeuf) [1687101]
+- [arm64] arm64: numa: separate out updates to percpu nodeid and NUMA node cpumap (Josh Poimboeuf) [1687101]
+- [arm64] arm64: topology: refactor reset_cpu_topology to add support for removing topology (Josh Poimboeuf) [1687101]
+
+* Tue Mar 12 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-78.1.el8]
+- [fs] gfs2: Fix missed wakeups in find_insert_glock (Andreas Grunbacher) [1678907]
+
+* Tue Mar 12 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-77.1.el8]
+- [firmware] efi: Reduce the amount of memblock reservations for persistent allocations (Bhupesh Sharma) [1682988]
+- [firmware] efi: Permit multiple entries in persistent memreserve data structure (Bhupesh Sharma) [1682988]
+- [kernel] cpu/hotplug: Create SMT sysfs interface for all arches (Josh Poimboeuf) [1686068]
+- [net] netfilter: nft_set_hash: bogus element self comparison from deactivation path (Florian Westphal) [1678574]
+- [net] netfilter: nft_set_hash: fix lookups with fixed size hash on big endian (Florian Westphal) [1678574]
+
+* Tue Mar 12 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-76.1.el8]
+- [security] revert "Add a SysRq option to lift kernel lockdown" (Lenny Szubowicz) [1684348]
+- [s390] s390/setup: fix boot crash for machine without EDAT-1 (Philipp Rudo) [1677357]
+- [s390] s390/setup: fix early warning messages (Philipp Rudo) [1677357]
+
+* Tue Mar 12 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-75.1.el8]
+- [netdrv] net: hns3: add 8 BD limit for tx flow (Xiaojun Tan) [1676771]
+- [netdrv] net: hns3: fix a SSU buffer checking bug (Xiaojun Tan) [1676771]
+- [netdrv] net: hns3: aligning buffer size in SSU to 256 bytes (Xiaojun Tan) [1676771]
+- [netdrv] net: hns3: getting tx and dv buffer size through firmware (Xiaojun Tan) [1676771]
+- [net] netfilter: nf_nat_snmp_basic: add missing length checks in ASN.1 cbs (Florian Westphal) [1676602]
+- [char] ipmi: fix use-after-free of user->release_barrier.rda (Xiaojun Tan) [1677550]
+- [char] ipmi: Prevent use-after-free in deliver_response (Xiaojun Tan) [1677550]
+
+* Mon Mar 11 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-74.1.el8]
+- [x86] revert "cpu/hotplug: Add SMT policy options" (Josh Poimboeuf) [1683690]
+- [crypto] net: crypto set sk to NULL when af_alg_release (Neil Horman) [1679450] {CVE-2019-8912}
+- [drm] drm/i915/gvt: update force-to-nonpriv register whitelist (Paul Lai) [1643972]
+- [kernel] MODSIGN: Also check platform keyring in mod_verify_sig() (Lenny Szubowicz) [1568532]
+- [kernel] Fix for module sig verification (Lenny Szubowicz) [1568532]
+- [security] efi: Lock down the kernel if booted in secure boot mode (Lenny Szubowicz) [1568532]
+- [firmware] efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode (Lenny Szubowicz) [1568532]
+- [x86] Copy secure_boot flag in boot params across kexec reboot (Lenny Szubowicz) [1568532]
+- [fs] debugfs: Restrict debugfs when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [mm] x86/mmiotrace: Lock down the testmmiotrace module (Lenny Szubowicz) [1568532]
+- [kernel] Lock down module params that specify hardware parameters (eg. ioport) (Lenny Szubowicz) [1568532]
+- [tty] Lock down TIOCSSERIAL (Lenny Szubowicz) [1568532]
+- [pcmcia] Prohibit PCMCIA CIS storage when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [acpi] acpi: Disable ACPI table override if the kernel is locked down (Lenny Szubowicz) [1568532]
+- [acpi] acpi: Ignore acpi_rsdp kernel param when the kernel has been locked down (Lenny Szubowicz) [1568532]
+- [acpi] ACPI: Limit access to custom_method when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [x86] x86/msr: Restrict MSR access when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [x86] x86: Lock down IO port access when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [pci] PCI: Lock down BAR access when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [kernel] uswsusp: Disable when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [kernel] hibernate: Disable when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [kernel] kexec_load: Disable at runtime if the kernel is locked down (Lenny Szubowicz) [1568532]
+- [char] Restrict /dev/{mem, kmem, port} when the kernel is locked down (Lenny Szubowicz) [1568532]
+- [kernel] MODSIGN: Enforce module signatures if the kernel is locked down (Lenny Szubowicz) [1568532]
+- [security] Add a SysRq option to lift kernel lockdown (Lenny Szubowicz) [1568532]
+- [security] Add the ability to lock down access to the running kernel image (Lenny Szubowicz) [1568532]
+
+* Mon Mar 11 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-73.1.el8]
+- [net] tun: forbid iface creation with rtnl ops (Sabrina Dubroca) [1680969]
+- [net] revert "bridge: do not add port to router list when receives query with source 0.0.0.0" (Hangbin Liu) [1679896]
+- [net] sctp: walk the list of asoc safely (Marcelo Leitner) [1679920] {CVE-2019-8956}
+- [net] netfilter: nf_nat: skip nat clash resolution for same-origin entries (Florian Westphal) [1677647]
+- [net] netfilter: nf_conntrack: resolve clash for matching conntracks (Florian Westphal) [1677647]
+- [net] netfilter: nf_tables: fix flush after rule deletion in the same batch (Phil Sutter) [1677672]
+- [net] gro_cell: add napi_disable in gro_cells_destroy (Stefano Brivio) [1674408]
+- [net] sctp: call gso_reset_checksum when computing checksum in sctp_gso_segment (Xin Long) [1669386]
+- [net] ipvs: fix dependency on nf_defrag_ipv6 (Andrea Claudi) [1660808]
+- [net] sctp: check and update stream->out_curr when allocating stream_out (Xin Long) [1651877]
+
+* Mon Mar 11 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-72.1.el8]
+- [x86] cpu/hotplug: Add SMT policy options (Josh Poimboeuf) [1677405]
+
+* Tue Mar 05 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-71.1.el8]
+- [kernel] open the RHEL 8.1 development ("Herton R. Krzesinski")
+- [pci] pci/quirks: Add quirk to reset nvgpu at boot for the Lenovo ThinkPad P50 (Lyude Paul) [1677022]
+- [arm64] arm64, vmcoreinfo : Append 'MAX_USER_VA_BITS' to vmcoreinfo (Bhupesh Sharma) [1672962]
+- [md] dm thin: fix bug where bio that overwrites thin block ignores FUA (Mike Snitzer) [1679211]
+- [pci] PCI: Fix "try" semantics of bus and slot reset (Myron Stowe) [1662901]
+- [acpi] acpi/nfit: Fix bus command validation (Jeff Moyer) [1673958]
+- [pci] PCI/MSI: Return -ENOSPC from pci_alloc_irq_vectors_affinity() (Myron Stowe) [1667773]
+- [fs] NFS: Don't use page_file_mapping after removing the page (Benjamin Coddington) [1664190]
+- [fs] NFS: Fix up return value on fatal errors in nfs_page_async_flush() (Benjamin Coddington) [1664190]
+- [md] md: fix raid10 hang issue caused by barrier (Xiao Ni) [1630921]
+- [md] md/raid1: don't clear bitmap bits on interrupted recovery. (Xiao Ni) [1677360]
+- [virt] kvm: fix kvm_ioctl_create_device() reference counting (CVE-2019-6974) (Paolo Bonzini) [1673843] {CVE-2019-6974}
+- [block] blk-mq: fix a hung issue when fsync (Ming Lei) [1674399]
+- [block] Revert "block: cover another queue enter recursion via BIO_QUEUE_ENTERED" (Ming Lei) [1673966]
+- [tools] perf tools: Check for null when copying nsinfo. (Jiri Olsa) [1676451]
+- [iommu] iommu/amd: Fix IOMMU page flush when detach device from a domain (Suravee Suthikulpanit) [1672476]
+
+* Tue Feb 19 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-70.el8]
+- [kernel] namespace: Add padding fix to user_table[] (Prarit Bhargava) [1677103]
+- [x86] KVM: nVMX: unconditionally cancel preemption timer in free_nested (CVE-2019-7221) (Paolo Bonzini) [1673841] {CVE-2019-7221}
+- [scsi] scsi: sd: fix entropy gathering for most rotational disks (Ewan Milne) [1676735]
+- [scsi] scsi: sd: Contribute to randomness when running rotational device (Ewan Milne) [1676735]
+- [rpmspec] Revert "Drop -doc subpackage" (Prarit Bhargava) [1657609]
+- [net] svcrdma: Remove max_sge check at connect time (Don Dutile) [1638869]
+- [net] svcrdma: Reduce max_send_sges (Don Dutile) [1638869]
+- [arm64] arm64: mm: Introduce MAX_USER_VA_BITS definition (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: tlb: Rewrite stale comment in asm/tlbflush.h (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: tlb: Avoid synchronous TLBIs when freeing page tables (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: tlb: Remove redundant !CONFIG_HAVE_RCU_TABLE_FREE code (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: tlbflush: Allow stride to be specified for __flush_tlb_range() (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: tlb: Justify non-leaf invalidation in flush_tlb_range() (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: tlb: Add DSB ISHST prior to TLBI in __flush_tlb_[kernel_]pgtable() (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: tlb: Use last-level invalidation in flush_tlb_kernel_range() (Christoph von Recklinghausen) [1672997]
+- [mm] arm64: mm: EXPORT vabits_user to modules (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: fix ARM64_USER_VA_BITS_52 builds (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: Kconfig: Re-jig CONFIG options for 52-bit VA (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: mm: Allow forcing all userspace addresses to 52-bit (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: mm: introduce 52-bit userspace support (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: mm: Prevent mismatched 52-bit VA support (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: mm: Offset TTBR1 to allow 52-bit PTRS_PER_PGD (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: mm: Define arch_get_mmap_end, arch_get_mmap_base (Christoph von Recklinghausen) [1672997]
+- [firmware] arm64: mm: Introduce DEFAULT_MAP_WINDOW (Christoph von Recklinghausen) [1672997]
+- [mm] mm: mmap: Allow for "high" userspace addresses (Christoph von Recklinghausen) [1672997]
+- [mm] arm64: mm: apply r/o permissions of VM areas to its linear alias as well (Christoph von Recklinghausen) [1672997]
+- [mm] arm64: mm: purge lazily unmapped vm regions before changing permissions (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: mm: Don't wait for completion of TLB invalidation when page aging (Christoph von Recklinghausen) [1672997]
+- [mm] arm64: mm: Use __pa_symbol() for set_swapper_pgd() (Christoph von Recklinghausen) [1672997]
+- [mm] arm64: mm: Drop the unused cpu parameter (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64/mm: move runtime pgds to rodata (Christoph von Recklinghausen) [1672997]
+- [mm] arm64/mm: use fixmap to modify swapper_pg_dir (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64/mm: Separate boot-time page tables from swapper_pg_dir (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64/mm: Pass ttbr1 as a parameter to __enable_mmu() (Christoph von Recklinghausen) [1672997]
+- [mm] arm64: fix erroneous warnings in page freeing functions (Christoph von Recklinghausen) [1672997]
+- [mm] arm64: Implement page table free interfaces (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: tlbflush: Introduce __flush_tlb_kernel_pgtable (Christoph von Recklinghausen) [1672997]
+- [lib] ioremap: Update pgtable free interfaces with addr (Christoph von Recklinghausen) [1672997]
+- [mm] x86/mm: Disable ioremap free page handling on x86-PAE (Christoph von Recklinghausen) [1672997]
+- [arm64] arm64: KVM: Enable Common Not Private translations (Christoph von Recklinghausen) [1504991]
+- [arm64] arm64: mm: Support Common Not Private translations (Christoph von Recklinghausen) [1504991]
+- [kernel] cpu/hotplug: Fix "SMT disabled by BIOS" detection for KVM (Igor Mammedov) [1668147]
+- [tools] perf tools: Compile perf with -g instead of -ggdb3 to workaround gdb crash (Jiri Olsa) [1667109]
+
+* Thu Feb 14 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-69.el8]
+- [fs] Revert "gfs2: Fix loop in gfs2_rbm_find" (Andreas Grunbacher) [1658528]
+- [net] bpf: fix sanitation of alu op with pointer / scalar type from different paths (Jiri Olsa) [1673631] {CVE-2019-7308}
+- [net] bpf: prevent out of bounds speculation on pointer arithmetic (Jiri Olsa) [1673631] {CVE-2019-7308}
+- [net] bpf: move {prev_,}insn_idx into verifier env (Jiri Olsa) [1673631] {CVE-2019-7308}
+- [net] bpf/verifier: per-register parent pointers (Jiri Olsa) [1673631] {CVE-2019-7308}
+- [net] bpf: restrict unknown scalars of mixed signed bounds for unprivileged (Jiri Olsa) [1673631] {CVE-2019-7308}
+- [net] bpf: Simplify ptr_min_max_vals adjustment (Jiri Olsa) [1673631] {CVE-2019-7308}
+- [net] bpf: fix inner map masking to prevent oob under speculation (Jiri Olsa) [1673631] {CVE-2019-7308}
+- [include] KABI: struct class padding (Prarit Bhargava) [1670035]
+- [include] KABI: struct timer_list padding (Prarit Bhargava) [1670035]
+- [include] KABI: struct irq_domain padding (Prarit Bhargava) [1670035]
+- [nvdimm] libnvdimm, pmem: Fix badblocks population for 'raw' namespaces (Jeff Moyer) [1672315]
+- [netdrv] net/mlx5e: FPGA, fix Innova IPsec TX offload data path performance (Alaa Hleihel) [1648230]
+- [kernel] exec: increase BINPRM_BUF_SIZE to 256 (Oleg Nesterov) [1447445]
+
+* Wed Feb 13 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-68.el8]
+- [include] KABI: struct kset padding (Prarit Bhargava) [1669796]
+- [include] KABI: struct kobject and kobj_type padding (Prarit Bhargava) [1669796]
+- [include] KABI: struct delayed_work padding (Prarit Bhargava) [1669796]
+- [include] KABI: struct work_struct padding (Prarit Bhargava) [1669796]
+- [include] KABI: struct hrtimer padding (Prarit Bhargava) [1669796]
+- [include] KABI: struct user_namespace padding (Prarit Bhargava) [1669796]
+- [include] KABI: struct resource padding (Prarit Bhargava) [1669796]
+- [include] KABI: Protect device_driver struct (Prarit Bhargava) [1666316]
+- [include] KABI: Protect radix functions (Prarit Bhargava) [1669079]
+- [char] ipmi: msghandler: Fix potential Spectre v1 vulnerabilities (Tony Camuso) [1672582]
+- [vhost] vhost: fix OOB in get_rx_bufs() (Jason Wang) [1668665] {CVE-2018-16880}
+
+* Sat Feb 09 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-67.el8]
+- [md] dm: don't use bio_trim() afterall (Mike Snitzer) [1673657]
+- [md] dm: add memory barrier before waitqueue_active (Mike Snitzer) [1673110]
+- [x86] x86: uaccess: Inhibit speculation past access_ok() in user_access_begin() (Joe Lawrence) [1670113] {CVE-2018-20669}
+- [kernel] make 'user_access_begin()' do 'access_ok()' (Joe Lawrence) [1670113] {CVE-2018-20669}
+- [drm] i915: fix missing user_access_end() in page fault exception case (Joe Lawrence) [1670113] {CVE-2018-20669}
+- [drm] drm/i915: Force the slow path after a user-write error (Joe Lawrence) [1670113] {CVE-2018-20669}
+- [x86] x86/microcode/amd: Don't falsely trick the late loading mechanism (David Arcari) [1654904]
+- [fs] iomap: get/put the page in iomap_page_create/release() (Artem Savkov) [1664298]
+- [scsi] scsi: qla2xxx: Add new FC-NVMe enable BIT to enable FC-NVMe feature (Himanshu Madhani) [1671569]
+- [message] mptsas: pci-id table changes (Tomas Henzl) [1666730]
+- [message] mptsas: Taint kernel if mptsas is loaded (Tomas Henzl) [1666730]
+- [kernel] genirq/matrix: Improve target CPU selection for managed interrupts. (Gary Hook) [1669557]
+- [kernel] irq/matrix: Spread managed interrupts on allocation (Gary Hook) [1669557]
+- [kernel] irq/matrix: Split out the CPU selection code into a helper (Gary Hook) [1669557]
+- [net] sit: check if IPv6 enabled before calling ip6_err_gen_icmpv6_unreach() (Stefano Brivio) [1671680]
+- [net] geneve: should not call rt6_lookup() when ipv6 was disabled (Stefano Brivio) [1671680]
+- [net] netfilter: physdev: relax br_netfilter dependency (Phil Sutter) [1650382]
+- [net] netfilter: nf_tables: add NFTA_RULE_POSITION_ID to nla_policy (Phil Sutter) [1670563]
+- [net] netfilter: nf_tables: Support RULE_ID reference in new rule (Phil Sutter) [1670563]
+- [net] rtnetlink: fix incorrect handling of device stats passed to userspace (Ivan Vecera) [1668298]
+- [net] netfilter: nf_tables: handle nft_object lookups via rhltable (Phil Sutter) [1659725]
+- [net] netfilter: nf_tables: prepare nft_object for lookups via hashtable (Phil Sutter) [1659725]
+- [net] netfilter: nf_tables: selective rule dump needs table to be specified (Phil Sutter) [1659725]
+- [net] netfilter: nf_tables: Fix for endless loop when dumping ruleset (Phil Sutter) [1659725]
+- [net] netfilter: nf_tables: Speed up selective rule dumps (Phil Sutter) [1659725]
+- [net] exclude sock_reuseport from kABI protection (Paolo Abeni) [1665984]
+- [include] KABI: struct device padding (Don Dutile) [1664445]
+- [include] KABI: struct dma_map_ops padding (Don Dutile) [1664482]
+- [kernel] swiotlb: clear io_tlb_start and io_tlb_end in swiotlb_exit (Don Dutile) [1664484]
+- [kernel] dma-mapping: remove a few unused exports (Don Dutile) [1664484]
+- [include] dma-mapping: properly stub out the DMA API for !CONFIG_HAS_DMA (Don Dutile) [1664484]
+- [kernel] dma-mapping: remove dmam_{declare,release}_coherent_memory (Don Dutile) [1664484]
+- [kernel] dma-mapping: implement dmam_alloc_coherent using dmam_alloc_attrs (Don Dutile) [1664484]
+- [include] dma-mapping: implement dma_map_single_attrs using dma_map_page_attrs (Don Dutile) [1664484]
+- [include] dma-mapping: fix flags in dma_alloc_wc (Don Dutile) [1664484]
+- [include] dma-mapping: deprecate dma_zalloc_coherent (Don Dutile) [1664484]
+- [arm64] arm64: default to the direct mapping in get_arch_dma_ops (Don Dutile) [1664484]
+- [kernel] dma-mapping: fix inverted logic in dma_supported (Don Dutile) [1664484]
+- [include] dma-mapping: bypass indirect calls for dma-direct (Don Dutile) [1664484]
+- [kernel] dma-direct: merge swiotlb_dma_ops into the dma_direct code (Don Dutile) [1664484]
+- [kernel] dma-direct: do not include SME mask in the DMA supported check (Don Dutile) [1664484]
+- [kernel] dma-direct: use dma_direct_map_page to implement dma_direct_map_sg (Don Dutile) [1664484]
+- [kernel] dma-direct: improve addressability error reporting (Don Dutile) [1664484]
+- [kernel] dma-direct: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [xen] swiotlb: remove dma_mark_clean (Don Dutile) [1664484]
+- [xen] swiotlb: remove SWIOTLB_MAP_ERROR (Don Dutile) [1664484]
+- [xen] xen-swiotlb: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [kernel] swiotlb: Skip cache maintenance on map error (Don Dutile) [1664484]
+- [kernel] swiotlb: add support for non-coherent DMA (Don Dutile) [1664484]
+- [kernel] swiotlb: mark is_swiotlb_buffer static (Don Dutile) [1664484]
+- [kernel] swiotlb: remove a pointless comment (Don Dutile) [1664484]
+- [kernel] swiotlb: clean up reporting (Don Dutile) [1664484]
+- [kernel] dma-direct: reject highmem pages from dma_alloc_from_contiguous (Don Dutile) [1664484]
+- [kernel] dma-direct: provide page based alloc/free helpers (Don Dutile) [1664484]
+- [include] dma-direct: Make DIRECT_MAPPING_ERROR viable for SWIOTLB (Don Dutile) [1664484]
+- [kernel] dma-direct: respect DMA_ATTR_NO_WARN (Don Dutile) [1664484]
+- [kernel] dma-direct: document the zone selection logic (Don Dutile) [1664484]
+- [kernel] dma-direct: fix return value of dma_direct_supported (Don Dutile) [1664484]
+- [kernel] dma-direct: always allow dma mask <= physiscal memory size (Don Dutile) [1664484]
+- [kernel] dma-direct: implement complete bus_dma_mask handling (Don Dutile) [1664484]
+- [kernel] dma-direct: refine dma_direct_alloc zone selection (Don Dutile) [1664484]
+- [kernel] dma-direct: add an explicit dma_direct_get_required_mask (Don Dutile) [1664484]
+- [kernel] kernel/dma/direct: take DMA offset into account in dma_direct_supported (Don Dutile) [1664484]
+- [kernel] dma-mapping: factor out dummy DMA ops (Don Dutile) [1664484]
+- [mm] arm64: dma-mapping: Fix FORCE_CONTIGUOUS buffer clearing (Don Dutile) [1664484]
+- [iommu] iommu/dma-iommu: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [iommu] iommu/vt-d: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [iommu] iommu/intel: small map_page cleanup (Don Dutile) [1664484]
+- [iommu] intel-iommu: mark intel_dma_ops static (Don Dutile) [1664484]
+- [iommu] ia64: remove iommu_dma_supported (Don Dutile) [1664484]
+- [iommu] iommu: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [iommu] iommu/dma: Use fast DMA domain lookup (Don Dutile) [1664484]
+- [x86] x86/amd_gart: fix unmapping of non-GART mappings (Don Dutile) [1664484]
+- [x86] x86/amd_gart: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [mm] arm64: remove the dummy_dma_ops mapping_error method (Don Dutile) [1664484]
+- [powerpc] powerpc: Do not redefine NEED_DMA_MAP_STATE (Don Dutile) [1664484]
+- [powerpc] powerpc/iommu: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [s390] s390: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [kernel] dma-mapping: always build the direct mapping code (Don Dutile) [1664484]
+- [kernel] dma-mapping: move dma_cache_sync out of line (Don Dutile) [1664484]
+- [kernel] dma-mapping: move various slow path functions out of line (Don Dutile) [1664484]
+- [base] dma-mapping: move dma_get_required_mask to kernel/dma (Don Dutile) [1664484]
+- [base] dma-mapping: move dma_default_get_required_mask under ifdef (Don Dutile) [1664484]
+- [include] dma-mapping: merge dma_unmap_page_attrs and dma_unmap_single_attrs (Don Dutile) [1664484]
+- [include] dma-mapping: simplify the dma_sync_single_range_for_{cpu,device} implementation (Don Dutile) [1664484]
+- [include] dma-mapping: return an error code from dma_mapping_error (Don Dutile) [1664484]
+- [pci] dma-mapping: remove the mapping_error dma_map_ops method (Don Dutile) [1664484]
+- [include] dma-mapping: provide a generic DMA_MAPPING_ERROR (Don Dutile) [1664484]
+- [kernel] dma-mapping: move the arm64 noncoherent alloc/free support to common code (Don Dutile) [1664484]
+- [mm] arm64: fix warnings without CONFIG_IOMMU_DMA (Don Dutile) [1664484]
+- [arm64] arm64: use the generic swiotlb_dma_ops (Don Dutile) [1664484]
+- [kernel] swiotlb: don't dip into swiotlb pool for coherent allocations (Don Dutile) [1664484]
+- [kernel] swiotlb: refactor swiotlb_map_page (Don Dutile) [1664484]
+- [kernel] swiotlb: use swiotlb_map_page in swiotlb_map_sg_attrs (Don Dutile) [1664484]
+- [kernel] swiotlb: merge swiotlb_unmap_page and unmap_single (Don Dutile) [1664484]
+- [kernel] swiotlb: remove the overflow buffer (Don Dutile) [1664484]
+- [kernel] swiotlb: do not panic on mapping failures (Don Dutile) [1664484]
+- [mm] arm64/dma-mapping: Mildly optimise non-coherent IOMMU ops (Don Dutile) [1664484]
+- [iommu] iommu: Add fast hook for getting DMA domains (Don Dutile) [1664484]
+- [iommu] iommu: Remove the ->map_sg indirection (Don Dutile) [1664484]
+- [iommu] kernel/dma: remove unsupported gfp_mask parameter from dma_alloc_from_contiguous() (Don Dutile) [1664484]
+- [mm] mm/cma: remove unsupported gfp_mask parameter from cma_alloc() (Don Dutile) [1664484]
+- [kernel] dma-mapping: move the remap helpers to a separate file (Don Dutile) [1664484]
+- [include] dma-mapping: fix return type of dma_set_max_seg_size() (Don Dutile) [1664484]
+- [include] dma-mapping: translate __GFP_NOFAIL to DMA_ATTR_NO_WARN (Don Dutile) [1664484]
+- [include] dma-debug: Check for drivers mapping invalid addresses in dma_map_single() (Don Dutile) [1664484]
+- [base] dma-mapping: make the get_required_mask method available unconditionally (Don Dutile) [1664484]
+- [xen] dma-mapping: support non-coherent devices in dma_common_get_sgtable (Don Dutile) [1664484]
+- [kernel] dma-mapping: consolidate the dma mmap implementations (Don Dutile) [1664484]
+- [kernel] dma-mapping: merge direct and noncoherent ops (Don Dutile) [1664484]
+- [include] dma-mapping: move the dma_coherent flag to struct device (Don Dutile) [1664484]
+- [include] dma-mapping: remove dma_deconfigure (Don Dutile) [1664484]
+- [base] dma-mapping: remove dma_configure (Don Dutile) [1664484]
+- [include] dma-mapping: relax warning for per-device areas (Don Dutile) [1664484]
+- [kernel] dma-mapping: add the missing ARCH_HAS_SYNC_DMA_FOR_CPU_ALL declaration (Don Dutile) [1664484]
+- [kernel] dma-noncoherent: add a arch_sync_dma_for_cpu_all hook (Don Dutile) [1664484]
+- [block] deprecate elevator= kernel parameter (Jeff Moyer) [1665295]
+- [rpmspec] kernel.spec: disable kabi checks until RC (=?UTF-8?q?=C4=8Cestm=C3=ADr=20Kalina?=) [1671007]
+- [iommu] iommu/amd: Unmap all mapped pages in error path of map_sg (Jerry Snitselaar) [1668448]
+- [iommu] iommu/amd: Call free_iova_fast with pfn in map_sg (Jerry Snitselaar) [1668448]
+
+* Thu Feb 07 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-66.el8]
+- [arm64] arm64, vmcoreinfo : Append 'MAX_PHYSMEM_BITS' to vmcoreinfo (Bhupesh Sharma) [1666679]
+- [kernel] sched/debug: Initialize sd_sysctl_cpus if !CONFIG_CPUMASK_OFFSTACK (Joe Lawrence) [1667840]
+- [init] Small change to the message about certified hardware (Steve Best) [1671765]
+- [x86] x86/kdump: make the behavior of crashkernel=X consistent with kaslr (Pingfan Liu) [1640799]
+- [x86] Add back support for Intel processors (Steve Best) [1670529]
+- [net] SUNRPC: Clean up initialisation of the struct rpc_rqst (Benjamin Coddington) [1650494]
+- [x86] KABI, x86/paravirt: Protect paravirt ops structures (Waiman Long) [1669957]
+- [include] KABI: struct module padding (Prarit Bhargava) [1669480]
+- [include] KABI: struct stack_trace_struct padding (Prarit Bhargava) [1669480]
+- [documentation] iommu: Fix passthrough option documentation (Gary Hook) [1658391]
+- [iommu] iommu: Add config option to set passthrough as default (Gary Hook) [1658391]
+- [kernel] redhat: kernel: clean up taint flags (Jiri Benc) [1654313]
+
+* Wed Feb 06 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-65.el8]
+- [scsi] scsi: qedi: Add the CRC size within iSCSI NVM image (Charles Rose) [1670186]
+- [fs] iomap: don't search past page end in iomap_is_partially_uptodate (Eric Sandeen) [1657588]
+- [netdrv] cxgb4: update supported DCB version (Arjun Vynipadath) [1668571]
+- [x86] kexec, KEYS: Make use of platform keyring for signature verify (Kairui Song) [1640486]
+- [security] integrity, KEYS: add a reference to platform keyring (Kairui Song) [1640486]
+- [security] efi: Allow the "db" UEFI variable to be suppressed (Kairui Song) [1640486]
+- [security] efi: Import certificates from UEFI Secure Boot (Kairui Song) [1640486]
+- [security] efi: Add an EFI signature blob parser (Kairui Song) [1640486]
+- [include] efi: Add EFI signature data types (Kairui Song) [1640486]
+- [security] integrity: Load certs to the platform keyring (Kairui Song) [1640486]
+- [security] integrity: Define a trusted platform keyring (Kairui Song) [1640486]
+- [security] security/integrity: remove unnecessary 'init_keyring' variable (Kairui Song) [1640486]
+- [x86] Fix kexec forbidding kernels signed with keys in the secondary keyring to boot (Kairui Song) [1640486]
+- [crypto] Replace magic for trusting the secondary keyring with #define (Kairui Song) [1640486]
+- [acpi] acpi/nfit: Fix command-supported detection (Jeff Moyer) [1665812]
+- [acpi] acpi/nfit: Block function zero DSMs (Jeff Moyer) [1665812]
+- [md] dm: add missing trace_block_split() to __split_and_process_bio() (Mike Snitzer) [1645283]
+- [md] dm: fix dm_wq_work() to only use __split_and_process_bio() if appropriate (Mike Snitzer) [1645283]
+- [md] dm: fix redundant IO accounting for bios that need splitting (Mike Snitzer) [1645283]
+- [md] dm: fix clone_bio() to trigger blk_recount_segments() (Mike Snitzer) [1645283]
+- [block] block: cover another queue enter recursion via BIO_QUEUE_ENTERED (Mike Snitzer) [1645283]
+- [md] dm thin: fix passdown_double_checking_shared_status() (Mike Snitzer) [1668039]
+- [tools] bpftool: Fix prog dump by tag (Jiri Olsa) [1667305]
+- [arm64] arm64: ftrace: Fix to enable syscall events on arm64 (Don Dutile) [1668035]
+- [arm64] arm64: implement syscall wrappers (Don Dutile) [1668035]
+- [arm64] arm64: convert compat wrappers to C (Don Dutile) [1668035]
+- [arm64] arm64: use SYSCALL_DEFINE6() for mmap (Don Dutile) [1668035]
+- [arm64] arm64: use {COMPAT,}SYSCALL_DEFINE0 for sigreturn (Don Dutile) [1668035]
+- [arm64] arm64: remove in-kernel call to sys_personality() (Don Dutile) [1668035]
+- [include] kernel: add ksys_personality() (Don Dutile) [1668035]
+- [arm64] arm64: drop alignment from syscall tables (Don Dutile) [1668035]
+- [arm64] arm64: entry: remove unused register aliases (Don Dutile) [1668035]
+- [arm64] arm64: convert native/compat syscall entry to C (Don Dutile) [1668035]
+- [arm64] arm64: svc: Ensure hardirq tracing is updated before return (Don Dutile) [1668035]
+- [arm64] arm64: convert syscall trace logic to C (Don Dutile) [1668035]
+- [arm64] arm64: move sve_user_{enable,disable} to <asm/fpsimd.h> (Don Dutile) [1668035]
+- [arm64] arm64: kill change_cpacr() (Don Dutile) [1668035]
+- [arm64] arm64: convert raw syscall invocation to C (Don Dutile) [1668035]
+- [arm64] arm64: introduce syscall_fn_t (Don Dutile) [1668035]
+- [arm64] arm64: remove sigreturn wrappers (Don Dutile) [1668035]
+- [arm64] arm64: rseq: Implement backend rseq calls and select HAVE_RSEQ (Don Dutile) [1668035]
+- [sound] ALSA: usb-audio: Add vendor and product name for Dell WD19 Dock (Jaroslav Kysela) [1664249]
+- [infiniband] IB/hfi1: Fix an out-of-bounds access in get_hw_stats (Alex Estrin) [1667104]
+- [infiniband] IB/hfi1: Incorrect sizing of sge for PIO will OOPs (Alex Estrin) [1667095]
+- [drm] drm/nouveau: register backlight on pascal and newer (Ben Skeggs) [1664899]
+- [drm] drm/nouveau/disp/gm200-: enforce identity-mapped SOR assignment for LVDS/eDP panels (Ben Skeggs) [1664899]
+- [drm] drm/nouveau/disp: move eDP panel power handling (Ben Skeggs) [1664899]
+- [drm] drm/nouveau/devinit: don't fail when PMU/PRE_OS is missing from VBIOS (Ben Skeggs) [1664899]
+- [kernel] locking/rwsem: Fix (possible) missed wakeup (Waiman Long) [1668014]
+- [kernel] futex: Fix (possible) missed wakeup (Waiman Long) [1668014]
+- [kernel] sched/wake_q: Fix wakeup ordering for wake_q (Waiman Long) [1668014]
+- [kernel] sched/wake_q: Document wake_q_add() (Waiman Long) [1668014]
+- [kernel] sched/wait: Fix rcuwait_wake_up() ordering (Waiman Long) [1668014]
+- [kernel] sched/Documentation: Update wake_up() & co. memory-barrier guarantees (Waiman Long) [1668014]
+- [kvm] KVM: PPC: Book3S HV: Flush guest mappings when turning dirty tracking on/off (Laurent Vivier) [1650386]
+- [kvm] KVM: PPC: Book3S HV: Cleanups - constify memslots, fix comments (Laurent Vivier) [1650386]
+- [kvm] KVM: PPC: Book3S HV: Map single pages when doing dirty page logging (Laurent Vivier) [1650386]
+- [kvm] KVM: PPC: Pass change type down to memslot commit function (Laurent Vivier) [1650386]
+- [vhost] vhost: log dirty page correctly (Jason Wang) [1657578]
+- [netdrv] netxen: taint as unsupported in RHEL8 (Tony Camuso) [1654825]
+- [hid] HID: hiddev: fix potential Spectre v1 (Benjamin Tissoires) [1664611]
+- [net] resort to custom code for sk_buff padding (Paolo Abeni) [1665984]
+- [net] add padding to cipher_context (Paolo Abeni) [1665984]
+- [net] add padding to tls_crypto_context (Paolo Abeni) [1665984]
+- [net] add padding to ipv4_devconf (Paolo Abeni) [1665984]
+- [net] ip6mr: Fix potential Spectre v1 vulnerability (Stefano Brivio) [1663472]
+- [net] ipv4: Fix potential Spectre v1 vulnerability (Stefano Brivio) [1663472]
+- [include] add KABI padding to file_system_type (Eric Sandeen) [1665320 1650565]
+- [include] add KABI padding to multiple fs ops vectors (Eric Sandeen) [1665320]
+- [fs] add KABI padding to dentry structure (Eric Sandeen) [1665320]
+- [fs] add KABI padding to inode structure (Eric Sandeen) [1665320]
+- [include] add KABI padding to file_lock structure (Eric Sandeen) [1665320]
+- [include] KABI: add an iopoll method to struct file_operations (Eric Sandeen) [1665320]
+- [sound] ALSA: emux: Fix potential Spectre v1 vulnerabilities (Jaroslav Kysela) [1663477]
+- [sound] ALSA: pcm: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1663477]
+- [sound] ALSA: rme9652: Fix potential Spectre v1 vulnerability (Jaroslav Kysela) [1663477]
+- [sound] ALSA: emu10k1: Fix potential Spectre v1 vulnerabilities (Jaroslav Kysela) [1663477]
+- [powerpc] powerpc/tm: Unset MSR[TS] if not recheckpointing (Gustavo Duarte) [1663853]
+- [netdrv] r8152: Add support for MAC address pass through on RTL8153-BND (Perry Yuan) [1658433]
+- [hid] HID: debug: fix the ring buffer implementation (Tony Camuso) [1669469] {CVE-2019-3819}
+
+* Wed Jan 23 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-64.el8]
+- [netdrv] net: hns: Fix WARNING when hns modules installed (Xiaojun Tan) [1662120]
+- [netdrv] net: hns: Fix ping failed when use net bridge and send multicast (Xiaojun Tan) [1662120]
+- [netdrv] net: hns: Add mac pcs config when enable|disable mac (Xiaojun Tan) [1662120]
+- [netdrv] net: hns: Fix ntuple-filters status error. (Xiaojun Tan) [1662120]
+- [netdrv] net: hns: Free irq when exit from abnormal branch (Xiaojun Tan) [1662120]
+- [netdrv] net: hns: Clean rx fbd when ae stopped. (Xiaojun Tan) [1662120]
+- [netdrv] net: hns: Some registers use wrong address according to the datasheet. (Xiaojun Tan) [1662120]
+- [netdrv] net: hns: All ports can not work when insmod hns ko after rmmod. (Xiaojun Tan) [1662120]
+- [netdrv] net: hns: Incorrect offset address used for some registers. (Xiaojun Tan) [1662120]
+- [include] ipmi: RH_KABI macros to pad kabi exposed structs (Tony Camuso) [1658175]
+- [scsi] reserve space in structures for KABI (Ewan Milne) [1664397]
+
+* Sat Jan 19 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-63.el8]
+- [include] PCI: Add reserved fields to 'struct hotplug_slot' (Myron Stowe) [1663534]
+- [include] PCI: Add reserved fields to 'struct hotplug_slot_ops' (Myron Stowe) [1663534]
+- [pci] PCI: Add reserved fields to 'struct pci_sriov' (Myron Stowe) [1663534]
+- [include] PCI: Add reserved fields to 'struct pci_driver' (Myron Stowe) [1663534]
+- [include] PCI: Add reserved fields to 'struct pci_bus' (Myron Stowe) [1663534]
+- [include] PCI: Add reserved fields, and extension, to 'struct pci_dev' (Myron Stowe) [1663534]
+- [pci] PCI: Add missing include to drivers/pci.h (Myron Stowe) [1663534]
+- [pci] PCI/IOV: Use VF0 cached config space size for other VFs (Myron Stowe) [1663534]
+- [include] PCI: always include 'p2pdma' in 'struct pci_dev' (Myron Stowe) [1663534]
+- [ata] PCI: Remove pci_set_dma_max_seg_size() (Myron Stowe) [1663534]
+- [pci] PCI: Remove pci_set_dma_seg_boundary() (Myron Stowe) [1663534]
+- [include] PCI: Remove pci_unmap_addr() wrappers for DMA API (Myron Stowe) [1663534]
+- [pci] PCI/AER: Abstract AER interrupt handling (Myron Stowe) [1663534]
+- [pci] PCI: Uninline PCI bus accessors for better ftracing (Myron Stowe) [1663534]
+- [pci] PCI/portdrv: Add runtime PM hooks for port service drivers (Myron Stowe) [1663534]
+- [pci] PCI: Make link active reporting detection generic (Myron Stowe) [1663534]
+- [block] block: don't lose track of REQ_INTEGRITY flag (Ming Lei) [1665684]
+- [nvme] nvme-pci: fix nvme_setup_irqs() (Ming Lei) [1661439]
+- [lib] sbitmap: Protect swap_lock from hardirq (Ming Lei) [1666192]
+- [lib] sbitmap: Protect swap_lock from softirqs (Ming Lei) [1666192]
+- [scsi] scsi: isci: initialize shost fully before calling scsi_add_host() (Ming Lei) [1664918]
+- [nvme] nvmet-fc: Mark NVMe/FC target mode driver as unsupported (Ewan Milne) [1664838]
+- [netdrv] bnx2x: Assign unique DMAE channel number for FW DMAE transactions. (Jonathan Toppins) [1638306]
+- [fs] block: don't use un-ordered __set_current_state(TASK_UNINTERRUPTIBLE) (Ming Lei) [1664580]
+- [netdrv] qed: Wait for ready indication before rereading the shmem (Chad Dupuis) [1652417]
+- [netdrv] qed: Avoid sending mailbox commands when MFW is not responsive (Chad Dupuis) [1652417]
+- [netdrv] qed: Wait for MCP halt and resume commands to take place (Chad Dupuis) [1652417]
+- [netdrv] qed: Prevent a possible deadlock during driver load and unload (Chad Dupuis) [1652417]
+- [fs] gfs2: Fix loop in gfs2_rbm_find (Andreas Grunbacher) [1658528]
+- [fs] gfs2: Get rid of potential double-freeing in gfs2_create_inode (Andreas Grunbacher) [1658539]
+
+* Thu Jan 17 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-62.el8]
+- [vhost] vhost/vsock: fix vhost vsock cid hashing inconsistent (Stefan Hajnoczi) [1619848] {CVE-2018-14625}
+- [vhost] vhost/vsock: fix use-after-free in network stack callers (Stefan Hajnoczi) [1619848] {CVE-2018-14625}
+- [netdrv] bnx2x: Add VF spoof-checking configuration (Jonathan Toppins) [1646842]
+- [netdrv] net-next: hinic: fix a problem in free_tx_poll() (Xiaojun Tan) [1642016]
+- [netdrv] net: hns: fix for unmapping problem when SMMU is on (Xiaojun Tan) [1640526]
+- [netdrv] net: hns: add netif_carrier_off before change speed and duplex (Xiaojun Tan) [1640526]
+- [netdrv] net: hns: add the code for cleaning pkt in chip (Xiaojun Tan) [1640526]
+- [netdrv] net: hns: modify variable type in hns_nic_reuse_page (Xiaojun Tan) [1640526]
+
+* Wed Jan 16 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-61.el8]
+- [irqchip] Mark GICv2 deprecated (Wei Huang) [1609391]
+- [scsi] qla2xxx: Use correct number of vectors for online CPUs (Himanshu Madhani) [1644058]
+- [scsi] megaraid_sas: mark Aero controllers as tech preview (Tomas Henzl) [1659972]
+- [scsi] megaraid_sas: add retry logic in megasas_readl (Tomas Henzl) [1659972]
+- [scsi] scsi: megaraid_sas: Introduce new Aero adapter type (Tomas Henzl) [1659972]
+- [scsi] scsi: megaraid_sas: Fix Ventura series based checks (Tomas Henzl) [1659972]
+- [scsi] scsi: libfc: retry PRLI if we cannot analyse the payload (Chris Leech) [1631843]
+- [scsi] scsi: libfc: check fc_frame_payload_get() return value for null (Chris Leech) [1631843]
+- [scsi] scsi: libfc: hold disc_mutex in fc_disc_stop_rports() (Chris Leech) [1631843]
+- [scsi] scsi: libfc: fixup lockdep annotations (Chris Leech) [1631843]
+- [scsi] scsi: libfc: fixup 'sleeping function called from invalid context' (Chris Leech) [1631843]
+- [scsi] scsi: libfc: Add lockdep annotations (Chris Leech) [1631843]
+- [md] dm crypt: fix parsing of extended IV arguments (Mike Snitzer) [1665290]
+- [kernel] redhat: kabi: reserved padding for kernel sched data structures (Rafael Aquini) [1664858]
+- [kernel] redhat: kabi: reserved padding for MM related data structures (Rafael Aquini) [1664858]
+- [vfio] vfio/type1: Fix unmap overflow off-by-one (Alex Williamson) [1662291]
+- [message] mptspi: pci-id table changes (Tomas Henzl) [1651803]
+- [message] mptspi: Taint kernel if mptspi is loaded (Tomas Henzl) [1651803]
+- [block] kabi: reserve space for public data structure (Ming Lei) [1551939]
+- [block] kabi: reserve space for blk-mq related structure (Ming Lei) [1551939]
+- [block] kabi: reserve space for bsg related structure (Ming Lei) [1551939]
+- [block] kabi: reserve space for integrity related structure (Ming Lei) [1551939]
+- [block] kabi: reserve space for CONFIG_BLK_DEV_ZONED (Ming Lei) [1551939]
+- [ata] ata: Disable AHCI ALPM feature for Ampere Computing eMAG SATA (David Milburn) [1663347]
+- [kvm] KVM: x86: Add CPUID support for new instruction WBNOINVD (Andrew Jones) [1659491]
+- [x86] KVM: x86: Use jmp to invoke kvm_spurious_fault() from .fixup (Andrew Jones) [1659491]
+- [virt] kvm: Change offset in kvm_write_guest_offset_cached to unsigned (Andrew Jones) [1659491]
+- [virt] kvm: Disallow wraparound in kvm_gfn_to_hva_cache_init (Andrew Jones) [1659491]
+- [kvm] KVM: x86: svm: report MSR_IA32_MCG_EXT_CTL as unsupported (Andrew Jones) [1659491]
+- [virt] arm/arm64: KVM: Add ARM_EXCEPTION_IS_TRAP macro (Andrew Jones) [1659491]
+- [arm64] arm64: KVM: Avoid setting the upper 32 bits of VTCR_EL2 to 1 (Andrew Jones) [1659491]
+- [virt] KVM: arm/arm64: Fix unintended stage 2 PMD mappings (Andrew Jones) [1659491]
+- [virt] arm/arm64: KVM: vgic: Force VM halt when changing the active state of GICv3 PPIs/SGIs (Andrew Jones) [1659491]
+- [arm64] KVM: arm/arm64: Fixup the kvm_exit tracepoint (Andrew Jones) [1659491]
+- [virt] KVM: arm/arm64: vgic: Consider priority and active state for pending irq (Andrew Jones) [1659491]
+- [virt] KVM: arm/arm64: vgic: Fix off-by-one bug in vgic_get_irq() (Andrew Jones) [1659491]
+- [kvm] KVM: X86: Fix NULL deref in vcpu_scan_ioapic (Andrew Jones) [1659491]
+- [kvm] KVM: Fix UAF in nested posted interrupt processing (Andrew Jones) [1659491]
+- [virt] KVM: arm/arm64: vgic: Cap SPIs to the VM-defined maximum (Andrew Jones) [1659491]
+- [virt] KVM: arm/arm64: vgic: Do not cond_resched_lock() with IRQs disabled (Andrew Jones) [1659491]
+- [virt] KVM: arm/arm64: vgic-v2: Set active_source to 0 when restoring state (Andrew Jones) [1659491]
+- [virt] KVM: arm/arm64: Fix VMID alloc race by reverting to lock-less (Andrew Jones) [1659491]
+- [kvm] KVM: nVMX: Free the VMREAD/VMWRITE bitmaps if alloc_kvm_area() fails (Andrew Jones) [1659491]
+- [kvm] arm64: KVM: Install stage-2 translation before enabling traps (Andrew Jones) [1659491]
+- [kvm] arm64: KVM: Make VHE Stage-2 TLB invalidation operations non-interruptible (Andrew Jones) [1659491]
+- [arm64] arm64: entry: Remove confusing comment (Andrew Jones) [1659491]
+- [kvm] arm64: entry: Place an SB sequence following an ERET instruction (Andrew Jones) [1659491]
+- [arm64] arm64: Add support for SB barrier and patch in over DSB; ISB sequences (Andrew Jones) [1659491]
+- [kvm] kvm: nVMX: Set VM instruction error for VMPTRLD of unbacked page (Andrew Jones) [1659491]
+- [kvm] kvm: svm: Ensure an IBPB on all affected CPUs when freeing a vmcb (Andrew Jones) [1659491]
+- [kvm] kvm: mmu: Fix race in emulated page table writes (Andrew Jones) [1659491]
+- [kvm] KVM: nVMX/nSVM: Fix bug which sets vcpu->arch.tsc_offset to L1 tsc_offset (Andrew Jones) [1659491]
+- [kvm] KVM: VMX: Update shared MSRs to be saved/restored on MSR_EFER.LMA changes (Andrew Jones) [1659491]
+- [kvm] KVM: x86: Fix kernel info-leak in KVM_HC_CLOCK_PAIRING hypercall (Andrew Jones) [1659491]
+- [kvm] svm: Add mutex_lock to protect apic_access_page_done on AMD systems (Andrew Jones) [1659491]
+- [kvm] KVM/nVMX: Do not validate that posted_intr_desc_addr is page aligned (Andrew Jones) [1659491]
+- [kvm] KVM: arm64: Safety check PSTATE when entering guest and handle IL (Andrew Jones) [1659491]
+- [virt] KVM: arm64: Fix caching of host MDCR_EL2 value (Andrew Jones) [1659491]
+- [kvm] x86/kvm/nVMX: allow bare VMXON state migration (Andrew Jones) [1659491]
+- [kvm] x86/kvm/lapic: preserve gfn_to_hva_cache len on cache reinit (Andrew Jones) [1659491]
+- [kvm] KVM: hyperv: define VP assist page helpers (Andrew Jones) [1659491]
+- [kvm] KVM: nVMX: move check_vmentry_postreqs() call to nested_vmx_enter_non_root_mode() (Andrew Jones) [1659491]
+- [kvm] KVM: nVMX: Always reflect #NM VM-exits to L1 (Andrew Jones) [1659491]
+- [kvm] KVM: x86: hyperv: consistently use 'hv_vcpu' for 'struct kvm_vcpu_hv' variables (Andrew Jones) [1659491]
+- [kvm] KVM: x86: hyperv: enforce vp_index < KVM_MAX_VCPUS (Andrew Jones) [1659491]
+- [kvm] KVM: nVMX: restore host state in nested_vmx_vmexit for VMFail (Andrew Jones) [1659491]
+- [kvm] KVM: nVMX: Clear reserved bits of #DB exit qualification (Andrew Jones) [1659491]
+- [virt] KVM: arm/arm64: Ensure only THP is candidate for adjustment (Andrew Jones) [1659491]
+- [kvm] x86: kvm: avoid unused variable warning (Andrew Jones) [1659491]
+- [kvm] powerpc64/ftrace: Include ftrace.h needed for enable/disable calls (Andrew Jones) [1659491]
+- [kvm] x86/kvm/vmx: Remove duplicate l1d flush definitions (Andrew Jones) [1659491]
+- [tools] perf kvm: Fix subcommands on s390 (Andrew Jones) [1659491]
+- [arm64] arm64: add PSR_AA32_* definitions (Andrew Jones) [1659491]
+- [pci] PCI: hotplug: Document TODOs (Myron Stowe) [1664454]
+- [pci] PCI: hotplug: Embed hotplug_slot (Myron Stowe) [1664454]
+- [pci] PCI: hotplug: Drop hotplug_slot_info (Myron Stowe) [1664454]
+- [pci] PCI: hotplug: Constify hotplug_slot_ops (Myron Stowe) [1664454]
+- [pci] PCI: pciehp: Reshuffle controller struct for clarity (Myron Stowe) [1664454]
+- [pci] PCI: pciehp: Rename controller struct members for clarity (Myron Stowe) [1664454]
+- [pci] PCI: pciehp: Unify controller and slot structs (Myron Stowe) [1664454]
+- [pci] PCI: pciehp: Tolerate Presence Detect hardwired to zero (Myron Stowe) [1664454]
+- [pci] PCI: pciehp: Drop hotplug_slot_ops wrappers (Myron Stowe) [1664454]
+- [pci] PCI: pciehp: Drop unnecessary includes (Myron Stowe) [1664454]
+- [pci] PCI: pciehp: Differentiate between surprise and safe removal (Myron Stowe) [1664454]
+- [pci] PCI: Simplify disconnected marking (Myron Stowe) [1664454]
+- [tools] perf vendor events arm64: Revise core JSON events for eMAG (Jiri Olsa) [1663353]
+- [tools] perf vendor events arm64: Enable JSON events for eMAG (Jiri Olsa) [1663353]
+- [perf] drivers/perf: xgene: Add CPU hotplug support (Jiri Olsa) [1663349]
+- [scsi] mpt3sas: mark Aero controllers as tech preview (Tomas Henzl) [1663281]
+- [powerpc] KVM: PPC: Book3S HV: Keep rc bits in shadow pgtable in sync with host (Suraj Jitindar Singh) [1662029]
+- [powerpc] KVM: PPC: Book3S HV: Introduce kvmhv_update_nest_rmap_rc_list() (Suraj Jitindar Singh) [1662029]
+- [powerpc] KVM: PPC: Book3S HV: Apply combination of host and l1 pte rc for nested guest (Suraj Jitindar Singh) [1662029]
+- [powerpc] KVM: PPC: Book3S HV: Align gfn to L1 page size when inserting nest-rmap entry (Suraj Jitindar Singh) [1662029]
+- [powerpc] KVM: PPC: Book3S HV: Hold kvm->mmu_lock across updating nested pte rc bits (Suraj Jitindar Singh) [1662029]
+- [tools] perf python: Do not force closing original perf descriptor in evlist.get_pollfd (Jiri Olsa) [1659445]
+- [mm] mm: thp: relax __GFP_THISNODE for MADV_HUGEPAGE mappings (Andrea Arcangeli) [1613993]
+- [rpmspec] spec: Add libperf-jvmti.so into perf debuginfo rpm (Jiri Olsa) [1653570]
+- [scsi] scsi: hisi_sas: Fix spin lock management in slot_index_alloc_quirk_v2_hw() (Xiaojun Tan) [1642819]
+- [scsi] scsi: hisi_sas: Update v3 hw AIP_LIMIT and CFG_AGING_TIME register values (Xiaojun Tan) [1642819]
+- [scsi] scsi: hisi_sas: Use block layer tag instead for IPTT (Xiaojun Tan) [1642819]
+- [scsi] scsi: hisi_sas: unmask interrupts ent72 and ent74 (Xiaojun Tan) [1642819]
+- [scsi] scsi: hisi_sas: Free slot later in slot_complete_vx_hw() (Xiaojun Tan) [1642819]
+- [scsi] scsi: hisi_sas: Fix the race between IO completion and timeout for SMP/internal IO (Xiaojun Tan) [1642819]
+- [scsi] scsi: hisi_sas: Move evaluation of hisi_hba in hisi_sas_task_prep() (Xiaojun Tan) [1642819]
+- [scsi] scsi: hisi_sas: Feed back linkrate(max/min) when re-attached (Xiaojun Tan) [1642819]
+- [hwtracing] intel_th: pci: Add Ice Lake PCH support (Jiri Olsa) [1485529]
+
+* Fri Jan 11 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-60.el8]
+- [kernel] userns: also map extents in the reverse map to kernel IDs (Chris von Recklinghausen) [1652679] {CVE-2018-18955}
+- [net] ipv6: route: Fix return value of ip6_neigh_lookup() on neigh_create() error (Stefano Brivio) [1662789]
+- [net] ipv6: frags: Fix bogus skb->sk in reassembled packets (Herbert Xu) [1645839]
+- [net] redhat: blacklist auto-loadable net modules in modules-extra (Marcelo Leitner) [1642795]
+- [net] redhat: move sctp modules to kernel-modules-extra (Marcelo Leitner) [1642795]
+- [net] add reserved fields to neighbour (Paolo Abeni) [1655084]
+- [net] add reserved fields to rtnl_link_stats* (Paolo Abeni) [1655084]
+- [net] reserve bits in netdev_features_t for future features (Paolo Abeni) [1655084]
+- [net] add reserved fields to sk_buff (Paolo Abeni) [1655084]
+- [net] add reserved fields to ipv6_devconf (Paolo Abeni) [1655084]
+- [net] add reserved fields to fib_rule (Paolo Abeni) [1655084]
+- [net] add reserved fields to sock (Paolo Abeni) [1655084]
+- [net] add reserved fields to genl_family (Paolo Abeni) [1655084]
+- [net] add reserved fields to proto_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to proto (Paolo Abeni) [1655084]
+- [net] add reserved fields to genl_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to dst_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to dst_entry (Paolo Abeni) [1655084]
+- [net] add reserved fields to lwtunnel_state (Paolo Abeni) [1655084]
+- [net] add reserved fields to packet_type (Paolo Abeni) [1655084]
+- [net] add reserved fields to napi_struct (Paolo Abeni) [1655084]
+- [net] add reserved fields to net_device (Paolo Abeni) [1655084]
+- [net] exclude wireless_dev from KABI protection (Paolo Abeni) [1655084]
+- [net] add reserved fields to dcbnl_rtnl_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to xfrm_* (Paolo Abeni) [1655084]
+- [net] add reserved fields to switchdev_obj (Paolo Abeni) [1655084]
+- [net] add reserved fields to switchdev_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to l3mdev_ops (Paolo Abeni) [1655084]
+- [net] exclude ndisc_ops from kABI protection (Paolo Abeni) [1655084]
+- [net] add reserved fields to xfrmdev_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to tlsdev_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to netdev_rx_queue (Paolo Abeni) [1655084]
+- [net] add reserved fields to netdev_queue (Paolo Abeni) [1655084]
+- [net] add reserved fields to rtnl_link_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to ethtool_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to header_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to net_device_ops (Paolo Abeni) [1655084]
+- [net] add reserved fields to flowi* structs (Paolo Abeni) [1655084]
+- [arm64] KVM: arm64: Clarify explanation of STAGE2_PGTABLE_LEVELS (Christoph von Recklinghausen) [1643586 1643522]
+- [arm64] KVM: arm/arm64: Rename kvm_arm_config_vm to kvm_arm_setup_stage2 (Christoph von Recklinghausen) [1643586 1643522]
+- [virt] KVM: arm64: Drop __cpu_init_stage2 on the VHE path (Christoph von Recklinghausen) [1643586 1643522]
+- [kvm] kvm: arm64: Allow tuning the physical address size for VM (Christoph von Recklinghausen) [1643586 1643522]
+- [kvm] kvm: arm64: Limit the minimum number of page table levels (Christoph von Recklinghausen) [1643586 1643522]
+- [virt] kvm: arm64: Set a limit on the IPA size (Christoph von Recklinghausen) [1643586 1643522]
+- [kvm] kvm: arm64: Add 52bit support for PAR to HPFAR conversoin (Christoph von Recklinghausen) [1643586 1643522]
+- [arm64] kvm: arm64: Switch to per VM IPA limit (Christoph von Recklinghausen) [1643586 1643522]
+- [kvm] kvm: arm64: Configure VTCR_EL2.SL0 per VM (Christoph von Recklinghausen) [1643586 1643522]
+- [arm64] kvm: arm64: Dynamic configuration of VTTBR mask (Christoph von Recklinghausen) [1643586 1643522]
+- [arm64] kvm: arm64: Make stage2 page table layout dynamic (Christoph von Recklinghausen) [1643586 1643522]
+- [arm64] kvm: arm64: Prepare for dynamic stage2 page table layout (Christoph von Recklinghausen) [1643586 1643522]
+- [arm64] kvm: arm/arm64: Prepare for VM specific stage2 translations (Christoph von Recklinghausen) [1643586 1643522]
+- [arm64] kvm: arm64: Configure VTCR_EL2 per VM (Christoph von Recklinghausen) [1643586 1643522]
+- [virt] kvm: arm/arm64: Allow arch specific configurations for VM (Christoph von Recklinghausen) [1643586 1643522]
+- [kvm] kvm: arm64: Clean up VTCR_EL2 initialisation (Christoph von Recklinghausen) [1643586 1643522]
+- [arm64] arm64: Add a helper for PARange to physical shift conversion (Christoph von Recklinghausen) [1643586 1643522]
+- [kvm] kvm: arm64: Add helper for loading the stage2 setting for a VM (Christoph von Recklinghausen) [1643586 1643522]
+- [virt] kvm: arm/arm64: Remove spurious WARN_ON (Christoph von Recklinghausen) [1643586 1643522]
+- [virt] kvm: arm/arm64: Fix stage2_flush_memslot for 4 level page table (Christoph von Recklinghausen) [1643586 1643522]
+- [hv] hv_balloon: avoid touching uninitialized struct page during tail onlining (Vitaly Kuznetsov) [1662277]
+- [x86] Mark AMD EPYC guests as supported (David Arcari) [1663356]
+- [netdrv] be2net: Disable queue dump in be_tx_timeout handler (Petr Oros) [1646838]
+- [vhost] vhost: Fix Spectre V1 vulnerability (Jason Wang) [1663469]
+- [mm] mm/hugetlb.c: teach follow_hugetlb_page() to handle FOLL_NOWAIT (Andrea Arcangeli) [1575028]
+- [tools] cpupower: Fix AMD Family 0x17 msr_pstate size (Prarit Bhargava) [1659883]
+- [tools] cpupower: Fix coredump on VMWare (Prarit Bhargava) [1659883]
+- [scsi] scsi: csiostor: remove flush_scheduled_work() (Arjun Vynipadath) [1663973]
+- [powerpc] KVM: PPC: Book3S HV: Fix race between kvm_unmap_hva_range and MMU mode switch (David Gibson) [1663225]
+- [fs] userfaultfd: check VM_MAYWRITE was set after verifying the uffd is registered (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [mm] userfaultfd: shmem: UFFDIO_COPY: set the page dirty if VM_WRITE is not set (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [mm] userfaultfd: shmem: add i_size checks (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [mm] userfaultfd: shmem/hugetlbfs: only allow to register VM_MAYWRITE vmas (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [mm] userfaultfd: shmem: allocate anonymous memory for MAP_PRIVATE shmem (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [mm] userfaultfd: use ENOENT instead of EFAULT if the atomic copy user fails (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [mm] userfaultfd: allow get_mempolicy(MPOL_F_NODE|MPOL_F_ADDR) to trigger userfaults (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [fs] userfaultfd: clear flag if remap event not enabled (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [fs] userfaultfd: disable irqs when taking the waitqueue lock (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [fs] fs/userfaultfd.c: remove redundant pointer uwq (Andrea Arcangeli) [1657615] {CVE-2018-18397}
+- [fs] NFS: nfs_compare_mount_options always compare auth flavors. (Steve Dickson) [1661619]
+- [infiniband] RDMA/hns: Bugfix for RoCE loopback test (Xiaojun Tan) [1663359]
+- [infiniband] RDMA/hns: Update posting & querying mailbox (Xiaojun Tan) [1663359]
+- [infiniband] RDMA/hns: Fix the bug while use multi-hop of pbl (Xiaojun Tan) [1663359]
+- [infiniband] RDMA/hns: Init qp context when modify qp from reset to init (Xiaojun Tan) [1663359]
+- [infiniband] RDMA/hns: Bugfix pbl configuration for rereg mr (Xiaojun Tan) [1663359]
+- [security] selinux: add support for RTM_NEWCHAIN, RTM_DELCHAIN, and RTM_GETCHAIN (Ondrej Mosnacek) [1660564]
+- [scsi] scsi: megaraid_sas: driver version update (Tomas Henzl) [1656261]
+- [scsi] scsi: megaraid_sas: Use 63-bit DMA addressing (Tomas Henzl) [1656261]
+- [x86] x86/kvm: mark as TechPreview when running as a nested hypervisor (Vitaly Kuznetsov) [1519039]
+- [rpmspec] kernel.spec: Fix kernel-tools files section logic (Prarit Bhargava) [1661247]
+- [crypto] crypto: ccp - Make function sev_get_firmware() static (Gary Hook) [1632894]
+- [crypto] crypto: ccp - Allow SEV firmware to be chosen based on Family and Model (Gary Hook) [1632894]
+- [crypto] crypto: ccp - Fix static checker warning (Gary Hook) [1632894]
+- [crypto] crypto: ccp - add timeout support in the SEV command (Gary Hook) [1632894]
+- [nvdimm] nvdimm: Use namespace index data to reduce number of label reads needed (Jeff Moyer) [1634345]
+- [nvdimm] nvdimm: Split label init out from the logic for getting config data (Jeff Moyer) [1634345]
+- [nvdimm] nvdimm: Remove empty if statement (Jeff Moyer) [1634345]
+- [nvdimm] nvdimm: Clarify comment in sizeof_namespace_index (Jeff Moyer) [1634345]
+- [nvdimm] nvdimm: Sanity check labeloff (Jeff Moyer) [1634345]
+- [nvdimm] libnvdimm, dimm: Maximize label transfer size (Jeff Moyer) [1634345]
+- [mm] mm/page-writeback.c: fix range_cyclic writeback vs writepages deadlock (Brian Foster) [1659528]
+- [input] Input: elantech - disable elan-i2c for P52 and P72 (Benjamin Tissoires) [1658602]
+- [fs] cachefiles: avoid deprecated get_seconds() (David Howells) [1655613]
+- [fs] fscache, cachefiles: remove redundant variable 'cache' (David Howells) [1655613]
+- [fs] cachefiles: Explicitly cast enumerated type in put_object (David Howells) [1655613]
+- [fs] fscache: fix race between enablement and dropping of object (David Howells) [1655613]
+- [fs] cachefiles: Fix page leak in cachefiles_read_backing_file while vmscan is active (David Howells) [1655613]
+- [fs] fscache: Fix race in fscache_op_complete() due to split atomic_sub & read (David Howells) [1655613]
+- [fs] cachefiles: Fix an assertion failure when trying to update a failed object (David Howells) [1655613]
+- [fs] fscache: Fix out of bound read in long cookie keys (David Howells) [1655613]
+- [fs] fscache: Fix incomplete initialisation of inline key space (David Howells) [1655613]
+- [fs] cachefiles: fix the race between cachefiles_bury_object() and rmdir(2) (David Howells) [1655613]
+- [kernel] ebpf: record usage of eBPF (Jiri Benc) [1654279]
+- [kernel] add rh_features to /proc (Jiri Benc) [1654279]
+- [kernel] add support for rh_features (Jiri Benc) [1654279]
+- [fs] fs/lock: show locks taken by processes from another pidns (Miklos Szeredi) [1616125]
+- [iommu] iommu/arm-smmu: Support non-strict mode (Xiaojun Tan) [1643114]
+- [iommu] iommu/io-pgtable-arm-v7s: Add support for non-strict mode (Xiaojun Tan) [1643114]
+- [iommu] iommu/arm-smmu-v3: Add support for non-strict mode (Xiaojun Tan) [1643114]
+- [iommu] iommu/io-pgtable-arm: Add support for non-strict mode (Xiaojun Tan) [1643114]
+- [iommu] iommu: Add "iommu.strict" command line option (Xiaojun Tan) [1643114]
+- [iommu] iommu/dma: Add support for non-strict mode (Xiaojun Tan) [1643114]
+- [iommu] iommu/arm-smmu: Ensure that page-table updates are visible before TLBI (Xiaojun Tan) [1643114]
+- [iommu] iommu/arm-smmu-v3: Implement flush_iotlb_all hook (Xiaojun Tan) [1643114]
+- [iommu] iommu/arm-smmu-v3: Avoid back-to-back CMD_SYNC operations (Xiaojun Tan) [1643114]
+- [iommu] iommu/arm-smmu-v3: Fix unexpected CMD_SYNC timeout (Xiaojun Tan) [1643114]
+- [iommu] iommu/io-pgtable-arm: Fix race handling in split_blk_unmap() (Xiaojun Tan) [1643114]
+- [infiniband] RDMA/hns: Update some attributes of the RoCE device (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Limit the size of extend sge of sq (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Bugfix for CM test (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Submit bad wr when post send wr exception (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Bugfix for reserved qp number (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Refactor the codes for setting transport opode (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Move all prints out of irq handle (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Fix an error code in hns_roce_v2_init_eq_table() (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Fix usage of bitmap allocation functions return values (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Support flush cqe for hip08 in kernel space (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Program the tclass and flow label into the hardware (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Use macro instead of magic number (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Modify qp will return errno when qp type is illegal (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Assign the value for vlan field of qp context (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Only assgin the fields of the av if IB_QP_AV bit is set (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Enable modify_cq for uverbs. (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Update the data type of immediate data (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Use delay instead of usleep (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Add illegal hop_num judgement (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Add 50GE type of hnae3 device match (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Do not overwrite the error code during error unwind in hns_roce_init (Xiaojun Tan) [1639578]
+- [infiniband] hns: Remove a set-but-not-used variable (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Update the implementation of set_mac (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Update the implementation of set_gid (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Add TPQ link table support (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Add TSQ link table support (Xiaojun Tan) [1639578]
+- [infiniband] RDMA/hns: Fix endian conversions and annotations (Xiaojun Tan) [1639578]
+- [scsi] scsi: hisi_sas: Add SATA FIS check for v3 hw (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: add memory barrier in task delivery function (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Tidy hisi_sas_task_prep() (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Implement handlers of PCIe FLR for v3 hw (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: relocate some common code for v3 hw (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: tidy host controller reset function a bit (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Fix the failure of recovering PHY from STP link timeout (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: tidy channel interrupt handler for v3 hw (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Drop hisi_sas_slot_abort() (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Update a couple of register settings for v3 hw (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Add missing PHY spinlock init (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Pre-allocate slot DMA buffers (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Release all remaining resources in clear nexus ha (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Add a flag to filter PHY events during reset (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Adjust task reject period during host reset (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Fix the conflict between dev gone and host reset (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Only process broadcast change in phy_bcast_v3_hw() (Zhou Wang) [1639541]
+- [scsi] scsi: hisi_sas: Use dmam_alloc_coherent() (Zhou Wang) [1639541]
+- [netdrv] xen/netfront: fix waiting for xenbus state change (Petr Oros) [1638456]
+
+* Thu Jan 10 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-59.el8]
+- [x86] expand cpu feature/bug bits (David Arcari) [1662434]
+- [x86] add kabi support for cpuinfo_x86 (David Arcari) [1662434]
+- [init] Display a message about certified hardware (Steve Best) [1660523]
+- [scsi] scsi: t10-pi: Return correct ref tag when queue has no integrity profile (Ming Lei) [1660719]
+- [scsi] scsi: storvsc: Fix a race in sub-channel creation that can cause panic (Mohammed Gamal) [1650149]
+- [uio] uio_hv_generic: set callbacks on open (Mohammed Gamal) [1650149]
+- [hv] vmbus: fix subchannel removal (Mohammed Gamal) [1650149]
+- [uio] uio_hv_generic: defer opening vmbus until first use (Mohammed Gamal) [1650149]
+- [hv] vmbus: split ring buffer allocation from open (Mohammed Gamal) [1650149]
+- [hv] vmbus: pass channel to hv_process_channel_removal (Mohammed Gamal) [1650149]
+- [hv] Drivers: hv: vmbus: Reset the channel callback in vmbus_onoffer_rescind() (Mohammed Gamal) [1650149]
+- [uio] hv_uio_generic: map ringbuffer phys addr (Mohammed Gamal) [1650149]
+- [uio] uio: introduce UIO_MEM_IOVA (Mohammed Gamal) [1650149]
+- [hv] vmbus: add driver_override support (Mohammed Gamal) [1650149]
+- [hv] vmbus: keep pointer to ring buffer page (Mohammed Gamal) [1650149]
+- [uio] uio_hv_generic: increase size of receive and send buffers (Mohammed Gamal) [1650149]
+- [uio] uio: add SPDX license tags (Mohammed Gamal) [1650149]
+- [fs] gfs2: take jdata unstuff into account in do_grow (Robert S Peterson) [1660519]
+- [drm] drm/dp_mst: Check if primary mstb is null (Lyude Paul) [1658711]
+- [tools] perf tests: Use shebangs in the shell scripts (Michael Petlan) [1613523]
+
+* Mon Jan 07 2019 Herton R. Krzesinski <herton@redhat.com> [4.18.0-58.el8]
+- [mm] mm: put_and_wait_on_page_locked() while page is migrated (Baoquan He) [1649214]
+- [netdrv] i40e: define proper net_device::neigh_priv_len (Stefan Assmann) [1658743]
+- [netdrv] i40e: fix VLAN.TCI == 0 RX HW offload (Stefan Assmann) [1658743]
+- [netdrv] i40e: fix mac filter delete when setting mac address (Stefan Assmann) [1658743]
+- [netdrv] i40e: prevent overlapping tx_timeout recover (Stefan Assmann) [1658743]
+- [netdrv] i40e: Use correct shift for VLAN priority (Stefan Assmann) [1658743]
+- [netdrv] i40e: always set ks->base.speed in i40e_get_settings_link_up (Stefan Assmann) [1658743]
+- [netdrv] i40e: don't restart nway if autoneg not supported (Stefan Assmann) [1658743]
+- [netdrv] i40e: enable NETIF_F_NTUPLE and NETIF_F_HW_TC at driver load (Stefan Assmann) [1658743]
+- [netdrv] i40e: restore NETIF_F_GSO_IPXIP[46] to netdev features (Stefan Assmann) [1658743]
+- [acpi] ACPI/APEI: Clear GHES block_status before panic() (David Arcari) [1662442]
+- [misc] VMCI: Resource wildcard match fixed (Vitaly Kuznetsov) [1652868]
+- [mm] mm/page_alloc.c: don't call kasan_free_pages() at deferred mem init (Waiman Long) [1655964]
+- [block] block/bio: Do not zero user pages (Ming Lei) [1662502]
+- [vhost] disable zerocopy by default (Jason Wang) [1582756]
+- [block] kyber: use sbitmap add_wait_queue/list_del wait helpers (Ming Lei) [1661426]
+- [lib] sbitmap: add helpers for add/del wait queue handling (Ming Lei) [1661426]
+- [net] Revert "sunrpc: Ensure we always close the socket after a connection shuts down" (Dave Wysochanski) [1657449]
+- [vhost] vhost/vsock: fix reset orphans race with close timeout (Stefan Hajnoczi) [1660445]
+- [misc] genwqe: Fix size check (Steve Best) [1660126]
+- [fs] aio: fix spectre gadget in lookup_ioctx (Jeff Moyer) [1660963]
+- [block] block: save irq state in blkg_lookup_create() (Ming Lei) [1660299]
+- [md] dm: don't reuse bio for flushes (Ming Lei) [1660401]
+- [wireless] mac80211_hwsim: Fix possible Spectre-v1 for hwsim_world_regdom_custom (Stanislaw Gruszka) [1637113]
+- [wireless] nl80211: Fix possible Spectre-v1 for NL80211_TXRATE_HT (Stanislaw Gruszka) [1637113]
+- [wireless] nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds (Stanislaw Gruszka) [1637113]
+- [block] blk-mq: enable IO poll if .nr_queues of type poll > 0 (Ming Lei) [1660826]
+- [powerpc] powerpc/rtas: Fix a potential race between CPU-Offline & Migration (Desnes Augusto Nunes do Rosario) [1639266]
+- [x86] kvm: x86: Add AMD's EX_CFG to the list of ignored MSRs (Eduardo Habkost) [1625111]
+- [scsi] scsi_sysfs: make unpriv_sgio queue attribute accessible for non-block devices (Paolo Bonzini) [1584504]
+- [block] scsi_ioctl: introduce unpriv_sgio queue flag (Paolo Bonzini) [1584504]
+- [block] scsi_ioctl: pass request_queue to blk_verify_command (Paolo Bonzini) [1584504]
+- [fs] ext4: missing !bh check in ext4_xattr_inode_write() (Lukas Czerner) [1659481]
+- [fs] ext4: fix buffer leak in __ext4_read_dirblock() on error path (Lukas Czerner) [1659481]
+- [fs] ext4: fix buffer leak in ext4_expand_extra_isize_ea() on error path (Lukas Czerner) [1659481]
+- [fs] ext4: fix buffer leak in ext4_xattr_move_to_block() on error path (Lukas Czerner) [1659481]
+- [fs] ext4: release bs.bh before re-using in ext4_xattr_block_find() (Lukas Czerner) [1659481]
+- [fs] ext4: fix buffer leak in ext4_xattr_get_block() on error path (Lukas Czerner) [1659481]
+- [fs] ext4: fix possible leak of s_journal_flag_rwsem in error path (Lukas Czerner) [1659481]
+- [fs] ext4: fix possible leak of sbi->s_group_desc_leak in error path (Lukas Czerner) [1659481]
+- [fs] ext4: avoid possible double brelse() in add_new_gdb() on error path (Lukas Czerner) [1659481]
+- [fs] ext4: avoid buffer leak in ext4_orphan_add() after prior errors (Lukas Czerner) [1659481]
+- [fs] ext4: avoid buffer leak on shutdown in ext4_mark_iloc_dirty() (Lukas Czerner) [1659481]
+- [fs] ext4: fix possible inode leak in the retry loop of ext4_resize_fs() (Lukas Czerner) [1659481]
+- [fs] ext4: fix missing cleanup if ext4_alloc_flex_bg_array() fails while resizing (Lukas Czerner) [1659481]
+- [fs] ext4: add missing brelse() update_backups()'s error path (Lukas Czerner) [1659481]
+- [fs] ext4: add missing brelse() add_new_gdb_meta_bg()'s error path (Lukas Czerner) [1659481]
+- [fs] ext4: add missing brelse() in set_flexbg_block_bitmap()'s error path (Lukas Czerner) [1659481]
+- [fs] ext4: avoid potential extra brelse in setup_new_flex_group_blocks() (Lukas Czerner) [1659481]
+- [scsi] scsi: lpfc: Enable Management features for IF_TYPE=6 (Dick Kennedy) [1658755]
+- [scsi] scsi: mpt3sas: Update driver version to 27.101.00.00 (Tomas Henzl) [1659035]
+- [scsi] scsi: mpt3sas: Replace readl with ioc->base_readl (Tomas Henzl) [1659035]
+- [scsi] scsi: mpt3sas: Add separate function for aero doorbell reads (Tomas Henzl) [1659035]
+- [scsi] scsi: mpt3sas: Introduce flag for aero based controllers (Tomas Henzl) [1659035]
+- [md] dm: do not allow readahead to limit IO size (Mike Snitzer) [1658757]
+- [md] dm raid: fix false -EBUSY when handling check/repair message (Mike Snitzer) [1658757]
+- [block] blk-mq: change blk_mq_queue_busy() to blk_mq_queue_inflight() (Mike Snitzer) [1658757]
+- [md] dm rq: cleanup leftover code from recently removed q->mq_ops branching (Mike Snitzer) [1658757]
+- [md] dm verity: log the hash algorithm implementation (Mike Snitzer) [1658757]
+- [md] dm crypt: log the encryption algorithm implementation (Mike Snitzer) [1658757]
+- [md] dm integrity: fix spelling mistake in workqueue name (Mike Snitzer) [1658757]
+- [md] dm flakey: Properly corrupt multi-page bios. (Mike Snitzer) [1658757]
+- [md] dm: Check for device sector overflow if CONFIG_LBDAF is not set (Mike Snitzer) [1658757]
+- [md] dm crypt: use u64 instead of sector_t to store iv_offset (Mike Snitzer) [1658757]
+- [md] dm kcopyd: Fix bug causing workqueue stalls (Mike Snitzer) [1658757]
+- [md] dm snapshot: Fix excessive memory usage and workqueue stalls (Mike Snitzer) [1658757]
+- [md] dm bufio: update comment in dm-bufio.c (Mike Snitzer) [1658757]
+- [md] dm writecache: fix typo in error msg for creating writecache_flush_thread (Mike Snitzer) [1658757]
+- [md] dm: remove indirect calls from __send_changing_extent_only() (Mike Snitzer) [1658757]
+- [md] dm mpath: only flush workqueue when needed (Mike Snitzer) [1658757]
+- [md] dm: avoid indirect call in __dm_make_request (Mike Snitzer) [1658757]
+- [md] dm thin: bump target version (Mike Snitzer) [1658757]
+- [md] dm thin: send event about thin-pool state change _after_ making it (Mike Snitzer) [1658757]
+- [md] dm cache metadata: verify cache has blocks in blocks_are_clean_separate_dirty() (Mike Snitzer) [1658757]
+- [md] dm writecache: remove disabled code in memory_entry() (Mike Snitzer) [1658757]
+- [md] dm raid: avoid bitmap with raid4/5/6 journal device (Mike Snitzer) [1658757]
+- [md] dm crypt: make workqueue names device-specific (Mike Snitzer) [1658757]
+- [md] dm: add dm_table_device_name() (Mike Snitzer) [1658757]
+- [md] dm ioctl: harden copy_params()'s copy_from_user() from malicious users (Mike Snitzer) [1658757]
+- [md] dm: remove unnecessary unlikely() around WARN_ON_ONCE() (Mike Snitzer) [1658757]
+- [md] dm thin: use refcount_t for thin_c reference counting (Mike Snitzer) [1658757]
+- [netdrv] nfp: provide a better warning when ring allocation fails (Pablo Cascon) [1645456]
+- [netdrv] nfp: use kvcalloc() to allocate SW buffer descriptor arrays (Pablo Cascon) [1645456]
+- [scsi] scsi: lpfc: rport port swap discovery issue. (Dick Kennedy) [1656635]
+- [scsi] scsi: lpfc: Fix discovery failures during port failovers with lots of vports (Dick Kennedy) [1656635]
+- [scsi] scsi: lpfc: refactor mailbox structure context fields (Dick Kennedy) [1656635]
+- [scsi] scsi: lpfc: Correct loss of fc4 type on remote port address change (Dick Kennedy) [1656635]
+- [hid] HID: multitouch: Add pointstick support for Cirque Touchpad (Perry Yuan) [1656673]
+- [powerpc] KVM: PPC: Book3S HV: Fix handling for interrupted H_ENTER_NESTED (Suraj Jitindar Singh) [1649980]
+- [powerpc] powerpc: Select CONFIG_SWIOTLB (Gustavo Duarte) [1648466]
+- [fs] nfs: Fix a missed page unlock after pg_doio() (Benjamin Coddington) [1651287]
+- [arm64] arm64: fix possible spectre-v1 write in ptrace_hbp_set_event() (Mark Salter) [1637585]
+- [fs] fsnotify: Fix busy inodes during unmount (Lukas Czerner) [1650462]
+- [tools] perf vendor events arm64: Update ThunderX2 implementation defined pmu core events (Robert Richter) [1501638]
+- [tools] perf tools: Fix undefined symbol scnprintf in libperf-jvmti.so (Jiri Olsa) [1579484]
+
+* Tue Dec 18 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-57.el8]
+- [block] blk-mq: export hctx->type in debugfs instead of sysfs (Ming Lei) [1660040]
+- [block] blk-mq: fix dispatch from sw queue (Ming Lei) [1660040]
+- [block] blk-mq: skip zero-queue maps in blk_mq_map_swqueue (Ming Lei) [1660040]
+- [nvme] nvme-pci: don't share queue maps (Ming Lei) [1660040]
+- [block] blk-mq: only dispatch to non-defauly queue maps if they have queues (Ming Lei) [1660040]
+- [x86] KVM: LAPIC: Fix pv ipis use-before-initialization (Paul Lai) [1657702]
+- [fs] autofs: fix directory and symlink access (Ian Kent) [1611967]
+- [infiniband] IB/iser: Fix possible NULL deref at iser_inv_desc() (Don Dutile) [1657574]
+- [infiniband] RDMA/core: Fix unwinding flow in case of error to register device (Don Dutile) [1657574]
+- [infiniband] IB/rxe: fix for duplicate request processing and ack psns (Don Dutile) [1657574]
+- [infiniband] IB/ipoib: Clear IPCB before icmp_send (Don Dutile) [1657574]
+- [infiniband] RDMA/core: Do not expose unsupported counters (Don Dutile) [1657574]
+- [infiniband] IB/ucm: Fix Spectre v1 vulnerability (Don Dutile) [1657574]
+- [infiniband] RDMA/ucma: Fix Spectre v1 vulnerability (Don Dutile) [1657574]
+- [infiniband] RDMA/uverbs: Don't overwrite NULL pointer with ZERO_SIZE_PTR (Don Dutile) [1657574]
+- [infiniband] RDMA/cma: Do not ignore net namespace for unbound cm_id (Don Dutile) [1657574]
+- [net] xprtrdma: Reset credit grant properly after a disconnect (Don Dutile) [1657574]
+- [input] Input: hyper-v - fix wakeup from suspend-to-idle (Vitaly Kuznetsov) [1588888]
+- [kernel] kernel: hung_task.c: disable on suspend (Vitaly Kuznetsov) [1588888]
+- [kernel] redhat: add a comment with warning about RH_KABI_EXCLUDE usage (Jiri Benc) [1656933]
+- [rpmspec] Sign the aarch64 kernel (Jeremy Linton) [1659158]
+
+* Mon Dec 17 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-56.el8]
+- [netdrv] nfp: flower: add geneve option match offload (Pablo Cascon) [1655604]
+- [netdrv] nfp: flower: add geneve option push action offload (Pablo Cascon) [1655604]
+- [netdrv] nfp: flower: offload tos and tunnel flags for ipv4 udp tunnels (Pablo Cascon) [1655604]
+- [netdrv] nfp: flower: set ip tunnel ttl from encap action (Pablo Cascon) [1655604]
+- [netdrv] nfp: flower: extract ipv4 udp tunnel ttl from route (Pablo Cascon) [1655604]
+- [net] sctp: hold transport before accessing its asoc in sctp_transport_get_next (Marcelo Leitner) [1656271]
+- [net] sctp: fix the data size calculation in sctp_data_size (Marcelo Leitner) [1656271]
+- [net] sctp: fix race on sctp_id2asoc (Marcelo Leitner) [1656271]
+- [net] rtnetlink: ndo_dflt_fdb_dump() only work for ARPHRD_ETHER devices (Hangbin Liu) [1657120]
+- [netdrv] mlx5e: fix csum adjustments caused by RXFCS (Hangbin Liu) [1657120]
+- [net] drop skb on failure in ip_check_defrag() (Hangbin Liu) [1657120]
+- [net] rtnl_configure_link: fix dev flags changes arg to __dev_notify_flags (Hangbin Liu) [1657120]
+- [net] socket: fix a missing-check bug (Hangbin Liu) [1657120]
+- [net] rtnetlink: Disallow FDB configuration for non-Ethernet device (Hangbin Liu) [1657120]
+- [net] rtnetlink: Fail dump if target netnsid is invalid (Hangbin Liu) [1657120]
+- [net] rtnetlink: fix rtnl_fdb_dump() for ndmsg header (Hangbin Liu) [1657120]
+- [net] rtnl: limit IFLA_NUM_TX_QUEUES and IFLA_NUM_RX_QUEUES to 4096 (Hangbin Liu) [1657120]
+- [net] socket: fix struct ifreq size in compat ioctl (Hangbin Liu) [1657120]
+- [net] fix pskb_trim_rcsum_slow() with odd trim offset (Hangbin Liu) [1657120]
+- [net] gso_segment: Reset skb->mac_len after modifying network header (Hangbin Liu) [1657120]
+- [net] Use __kernel_clockid_t in uapi net_stamp.h (Davide Caratti) [1638022]
+- [net] tun: Consistently configure generic netdev params via rtnetlink (Matteo Croce) [1657910]
+- [net] tun: napi flags belong to tfile (Matteo Croce) [1657910]
+- [net] tun: initialize napi_mutex unconditionally (Matteo Croce) [1657910]
+- [net] tun: remove unused parameters (Matteo Croce) [1657910]
+- [net] team: Forbid enslaving team device to itself (Matteo Croce) [1658725]
+- [net] sched: Remove TCA_OPTIONS from policy (Davide Caratti) [1658516]
+- [net] sched: cls_api: add missing validation of netlink attributes (Davide Caratti) [1658516]
+- [net] sched: gred: pass the right attribute to gred_change_table_def() (Davide Caratti) [1658516]
+- [net] sched: cls_u32: fix hnode refcounting (Davide Caratti) [1658516]
+- [net] sched: Add policy validation for tc attributes (Davide Caratti) [1658516]
+- [net] bpf: use __GFP_COMP while allocating page (Andrea Claudi) [1658231]
+- [net] xsk: do not call synchronize_net() under RCU read lock (Andrea Claudi) [1658231]
+- [net] bpf: fix partial copy of map_ptr when dst is scalar (Andrea Claudi) [1658231]
+- [net] bpf: Fix bpf_msg_pull_data() (Andrea Claudi) [1658231]
+- [net] bpf: fix shift upon scatterlist ring wrap-around in bpf_msg_pull_data (Andrea Claudi) [1658231]
+- [net] bpf: fix sg shift repair start offset in bpf_msg_pull_data (Andrea Claudi) [1658231]
+- [net] bpf: fix msg->data/data_end after sg shift repair in bpf_msg_pull_data (Andrea Claudi) [1658231]
+- [net] bpf: fix several offset tests in bpf_msg_pull_data (Andrea Claudi) [1658231]
+- [net] vlan: add support for tunnel offload (Andrea Claudi) [1656804]
+- [net] 8021q: move vlan offload registrations into vlan_core (Hangbin Liu) [1657658]
+- [net] ipv6/ndisc: Preserve IPv6 control buffer if protocol error handlers are called (Stefano Brivio) [1658010]
+- [net] ipv6: Allow onlink routes to have a device mismatch if it is the default route (Stefano Brivio) [1658010]
+- [net] ipv6: Fix index counter for unicast addresses in in6_dump_addrs (Stefano Brivio) [1658010]
+- [net] ipv6: mcast: fix a use-after-free in inet6_mc_check (Stefano Brivio) [1658010]
+- [net] ipv6: rate-limit probes for neighbourless routes (Stefano Brivio) [1658010]
+- [net] ipv6: stop leaking percpu memory in fib6 info (Stefano Brivio) [1658010]
+- [net] ipv6: Remove extra call to ip6_convert_metrics for multipath case (Stefano Brivio) [1658010]
+- [net] ipv6: Display all addresses in output of /proc/net/if_inet6 (Stefano Brivio) [1658010]
+- [net] ipv6: do not copy dst flags on rt init (Stefano Brivio) [1658010]
+- [net] ipv6: Only update MTU metric if it set (Stefano Brivio) [1658010]
+- [net] ipv6: don't get lwtstate twice in ip6_rt_copy_init() (Stefano Brivio) [1658010]
+- [net] ipv6: Put lwtstate when destroying fib6_info (Stefano Brivio) [1658010]
+- [net] ip6_tunnel: Fix encapsulation layout (Stefano Brivio) [1658008]
+- [net] vxlan: fill ttl inherit info (Stefano Brivio) [1658008]
+- [net] ip_tunnel: be careful when accessing the inner header (Stefano Brivio) [1658008]
+- [net] vti6: remove !skb->ignore_df check from vti6_xmit() (Stefano Brivio) [1658008]
+- [net] ip6_vti: fix a null pointer deference when destroy vti6 tunnel (Stefano Brivio) [1658008]
+- [net] ip6_vti: fix creating fallback tunnel device for vti6 (Stefano Brivio) [1658008]
+- [net] ip_vti: fix a null pointer deferrence when create vti fallback tunnel (Stefano Brivio) [1658008]
+- [net] l2tp: use sk_dst_check() to avoid race on sk->sk_dst_cache (Stefano Brivio) [1658008]
+- [net] macsec: let the administrator set UP state even if lowerdev is down (Sabrina Dubroca) [1645540]
+- [net] macsec: update operstate when lower device changes (Sabrina Dubroca) [1645540]
+- [net] tcp: do not restart timewait timer on rst reception (Paolo Abeni) [1657988]
+- [net] tcp: really ignore MSG_ZEROCOPY if no SO_ZEROCOPY (Paolo Abeni) [1657988]
+- [net] tcp, ulp: add alias for all ulp modules (Paolo Abeni) [1657988]
+- [net] tcp, ulp: fix leftover icsk_ulp_ops preventing sock from reattach (Paolo Abeni) [1657988]
+- [net] ipv4: tcp: send zero IPID for RST and ACK sent in SYN-RECV and TIME-WAIT state (Paolo Abeni) [1657988]
+- [net] neighbour: Avoid writing before skb->head in neigh_hh_output() (Stefano Brivio) [1643336]
+- [net] ipv6: Check available headroom in ip6_xmit() even without options (Stefano Brivio) [1643336]
+- [net] ipv6: fix possible use-after-free in ip6_xmit() (Stefano Brivio) [1643336]
+- [net] openvswitch: Fix push/pop ethernet validation (Hangbin Liu) [1657226]
+- [net] cgroup, netclassid: add a preemption point to write_classid (Hangbin Liu) [1657226]
+- [net] ethtool: fix a privilege escalation bug (Hangbin Liu) [1657226]
+- [net] llc: set SOCK_RCU_FREE in llc_sap_add_socket() (Hangbin Liu) [1657226]
+- [net] dcb: For wild-card lookups, use priority -1, not 0 (Hangbin Liu) [1657226]
+- [net] packet: fix packet drop as of virtio gso (Hangbin Liu) [1657226]
+- [net] netlabel: check for IPV4MASK in addrinfo_get (Hangbin Liu) [1657226]
+- [net] netfilter: seqadj: re-load tcp header pointer after possible head reallocation (Florian Westphal) [1654259]
+- [net] netfilter: nf_tables: avoid BUG_ON usage (Florian Westphal) [1654259]
+- [net] netfilter: nf_tables: deactivate expressions in rule replecement routine (Florian Westphal) [1654259]
+- [net] netfilter: nat: fix double register in masquerade modules (Florian Westphal) [1654259]
+- [net] netfilter: add missing error handling code for register functions (Florian Westphal) [1654259]
+- [net] netfilter: nf_tables: fix use-after-free when deleting compat expressions (Florian Westphal) [1654259]
+- [net] netfilter: xt_RATEEST: remove netns exit routine (Florian Westphal) [1654259]
+- [net] netfilter: nf_tables: don't use position attribute on rule replacement (Florian Westphal) [1654259]
+- [net] revert "netfilter: nft_numgen: add map lookups for numgen random operations" (Florian Westphal) [1654259]
+- [net] netfilter: xt_IDLETIMER: add sysfs filename checking routine (Florian Westphal) [1654259]
+- [net] netfilter: conntrack: fix calculation of next bucket number in early_drop (Florian Westphal) [1654259]
+- [net] netfilter: conntrack: get rid of double sizeof (Florian Westphal) [1654259]
+- [net] netfilter: nft_set_rbtree: add missing rb_erase() in GC routine (Florian Westphal) [1654259]
+- [net] netfilter: nfnetlink_queue: Solve the NFQUEUE/conntrack clash for NF_REPEAT (Florian Westphal) [1654259]
+- [net] netfilter: nf_tables: release chain in flushing set (Florian Westphal) [1654259]
+- [net] netfilter: xt_checksum: ignore gso skbs (Florian Westphal) [1654259]
+- [net] netfilter: xt_cluster: add dependency on conntrack module (Florian Westphal) [1654259]
+- [net] netfilter: fix memory leaks on netlink_dump_start error (Florian Westphal) [1654259]
+- [net] netfilter: x_tables: do not fail xt_alloc_table_info too easilly (Florian Westphal) [1654259]
+- [net] ipvs: fix race between ip_vs_conn_new() and ip_vs_del_dest() (Florian Westphal) [1654259]
+- [net] netfilter: ip6t_rpfilter: set F_IFACE for linklocal addresses (Florian Westphal) [1654259]
+- [net] xfrm: policy: use hlist rcu variants on insert (Sabrina Dubroca) [1657272]
+- [net] xfrm: validate template mode (Sabrina Dubroca) [1657272]
+- [net] xfrm: Fix NULL pointer dereference when skb_dst_force clears the dst_entry. (Sabrina Dubroca) [1657272]
+- [net] xfrm: reset transport header back to network header after all input transforms ahave been applied (Sabrina Dubroca) [1657272]
+- [net] xfrm: reset crypto_done when iterating over multiple input xfrms (Sabrina Dubroca) [1657272]
+- [net] xfrm: Validate address prefix lengths in the xfrm selector. (Sabrina Dubroca) [1657272]
+- [net] tls: fix currently broken MSG_PEEK behavior (Sabrina Dubroca) [1657225]
+- [net] tls: zero the crypto information from tls_context before freeing (Sabrina Dubroca) [1657225]
+- [net] tls: clear key material from kernel memory when do_tls_setsockopt_conf fails (Sabrina Dubroca) [1657225]
+- [net] tls: don't copy the key out of tls12_crypto_info_aes_gcm_128 (Sabrina Dubroca) [1657225]
+- [net] tls: Set count of SG entries if sk_alloc_sg returns -ENOSPC (Sabrina Dubroca) [1657225]
+- [net] tls: possible hang when do_tcp_sendpages hits sndbuf is full case (Sabrina Dubroca) [1657225]
+- [net] tls: Fix improper revert in zerocopy_from_iter (Sabrina Dubroca) [1657225]
+- [net] tls: Fix zerocopy_from_iter iov handling (Sabrina Dubroca) [1657225]
+- [net] netfilter: conntrack: reset tcp maxwin on re-register (Florian Westphal) [1647310]
+- [net] configs: Enable CONFIG_IP_SET_HASH_IPMAC as a module (Stefano Brivio) [1655301]
+- [net] udp: fix handling of CHECKSUM_COMPLETE packets (Paolo Abeni) [1655656]
+- [net] udp: Unbreak modules that rely on external __skb_recv_udp() availability (Paolo Abeni) [1655656]
+- [net] udp6: fix encap return code for resubmitting (Paolo Abeni) [1655656]
+- [net] team: no need to do team_notify_peers or team_mcast_rejoin when disabling port (Hangbin Liu) [1653197]
+- [net] sctp: not increase stream's incnt before sending addstrm_in request (Xin Long) [1651428]
+- [net] sctp: not allow to set asoc prsctp_enable by sockopt (Xin Long) [1647272]
+- [net] revert "sctp: remove sctp_transport_pmtu_check" (Xin Long) [1643330]
+- [net] fix XPS static_key accounting (Ivan Vecera) [1651781]
+- [net] restore call to netdev_queue_numa_node_write when resetting XPS (Ivan Vecera) [1651781]
+- [net] allow fallback function to pass netdev (Ivan Vecera) [1651781]
+- [net] allow ndo_select_queue to pass netdev (Ivan Vecera) [1651781]
+- [net] Add generic ndo_select_queue functions (Ivan Vecera) [1651781]
+- [net] Add support for subordinate traffic classes to netdev_pick_tx (Ivan Vecera) [1651781]
+- [net] ixgbe: Add code to populate and use macvlan TC to Tx queue map (Ivan Vecera) [1651781]
+- [net] Add support for subordinate device traffic classes (Ivan Vecera) [1651781]
+- [net] net-sysfs: Drop support for XPS and traffic_class on single queue device (Ivan Vecera) [1651781]
+- [net] Provide stub for __netif_set_xps_queue if there is no CONFIG_XPS (Ivan Vecera) [1651781]
+- [net] allow to call netif_reset_xps_queues() under cpus_read_lock (Ivan Vecera) [1651781]
+- [net] documentation: Add explanation for XPS using Rx-queue(s) map (Ivan Vecera) [1651781]
+- [net] net-sysfs: Add interface for Rx queue(s) map per Tx queue (Ivan Vecera) [1651781]
+- [net] Enable Tx queue selection based on Rx queues (Ivan Vecera) [1651781]
+- [net] Record receive queue number for a connection (Ivan Vecera) [1651781]
+- [net] sock: Change tx_queue_mapping in sock_common to unsigned short (Ivan Vecera) [1651781]
+- [net] Use static_key for XPS maps (Ivan Vecera) [1651781]
+- [net] Refactor XPS for CPUs and Rx queues (Ivan Vecera) [1651781]
+- [net] devlink: Add helper function for safely copy string param (Ivan Vecera) [1647914]
+- [net] devlink: Fix param cmode driverinit for string type (Ivan Vecera) [1647914]
+- [net] devlink: Fix param set handling for string type (Ivan Vecera) [1647914]
+- [net] devlink: Add Documentation/networking/devlink-params-bnxt.txt (Ivan Vecera) [1647914]
+- [net] devlink: Add Documentation/networking/devlink-params.txt (Ivan Vecera) [1647914]
+- [net] devlink: Add generic parameter msix_vec_per_pf_min (Ivan Vecera) [1647914]
+- [net] devlink: Add generic parameter msix_vec_per_pf_max (Ivan Vecera) [1647914]
+- [net] devlink: Add generic parameter ignore_ari (Ivan Vecera) [1647914]
+- [net] devlink: double free in devlink_resource_fill() (Ivan Vecera) [1647914]
+- [net] devlink: Add extack for eswitch operations (Ivan Vecera) [1647914]
+- [net] devlink: Add generic parameters region_snapshot (Ivan Vecera) [1647914]
+- [net] devlink: Add support for region snapshot read command (Ivan Vecera) [1647914]
+- [net] devlink: Add support for region snapshot delete command (Ivan Vecera) [1647914]
+- [net] devlink: Extend the support querying for region snapshot IDs (Ivan Vecera) [1647914]
+- [net] devlink: Add support for region get command (Ivan Vecera) [1647914]
+- [net] devlink: Add support for creating region snapshots (Ivan Vecera) [1647914]
+- [net] devlink: Add callback to query for snapshot id before snapshot create (Ivan Vecera) [1647914]
+- [net] devlink: Add support for creating and destroying regions (Ivan Vecera) [1647914]
+- [net] devlink: fix incorrect return statement (Ivan Vecera) [1647914]
+- [net] devlink: Add enable_sriov boolean generic parameter (Ivan Vecera) [1647914]
+- [net] devlink: Add generic parameters internal_err_reset and max_macs (Ivan Vecera) [1647914]
+- [net] devlink: Add devlink notifications support for params (Ivan Vecera) [1647914]
+- [net] devlink: Add support for get/set driverinit value (Ivan Vecera) [1647914]
+- [net] devlink: Add param set command (Ivan Vecera) [1647914]
+- [net] devlink: Add param get command (Ivan Vecera) [1647914]
+- [net] devlink: Add devlink_param register and unregister (Ivan Vecera) [1647914]
+- [net] ipvs: call ip_vs_dst_notifier earlier than ipv6_dev_notf (Xin Long) [1645064]
+- [net] ipv6: fix a dst leak when removing its exception (Xin Long) [1645064]
+- [net] netfilter: ipset: list:set: Decrease refcount synchronously on deletion and replace (Stefano Brivio) [1649089]
+- [net] bridge: remove ipv6 zero address check in mcast queries (Hangbin Liu) [1639666]
+- [net] bridge: do not add port to router list when receives query with source 0.0.0.0 (Hangbin Liu) [1639666]
+- [net] netfilter: ipv6: fix oops when defragmenting locally generated fragments (Florian Westphal) [1642341]
+- [net] xfrm6: call kfree_skb when skb is toobig (Sabrina Dubroca) [1628851]
+- [net] sched: act_police: fix memory leak in case of invalid control action (Ivan Vecera) [1638022]
+- [net] sched: act_police: add missing spinlock initialization (Ivan Vecera) [1638022]
+- [net] netfilter: xt_socket: check sk before checking for netns. (Ivan Vecera) [1638022]
+- [net] sched: act_police: fix race condition on state variables (Ivan Vecera) [1638022]
+- [net] sched: cls_flower: validate nested enc_opts_policy to avoid warning (Ivan Vecera) [1638022]
+- [net] sched: act_pedit: fix memory leak when IDR allocation fails (Ivan Vecera) [1638022]
+- [net] configs: disable CAKE, ETF & SKBPRIO qdisc in config (Ivan Vecera) [1638022]
+- [net] tc-tests: test denial of 'goto chain' for exceed traffic in police.json (Ivan Vecera) [1638022]
+- [net] tc-tests: test denial of 'goto chain' on 'random' traffic in gact.json (Ivan Vecera) [1638022]
+- [net] sched: act_police: disallow 'goto chain' on fallback control action (Ivan Vecera) [1638022]
+- [net] sched: act_gact: disallow 'goto chain' on fallback control action (Ivan Vecera) [1638022]
+- [net] net_sched: fix a crash in tc_new_tfilter() (Ivan Vecera) [1638022]
+- [net] core: make function ___gnet_stats_copy_basic() static (Ivan Vecera) [1638022]
+- [net] net_sched: convert idrinfo->lock from spinlock to a mutex (Ivan Vecera) [1638022]
+- [net] loopback: clear skb->tstamp before netif_rx() (Ivan Vecera) [1638022]
+- [net] skbuff: preserve sock reference when scrubbing the skb. (Ivan Vecera) [1638022]
+- [net] netfilter: check if the socket netns is correct. (Ivan Vecera) [1638022]
+- [net] sched: make function qdisc_free_cb() static (Ivan Vecera) [1638022]
+- [net] sched: use reference counting for tcf blocks on rules update (Ivan Vecera) [1638022]
+- [net] sched: implement tcf_block_refcnt_{get|put}() (Ivan Vecera) [1638022]
+- [net] sched: protect block idr with spinlock (Ivan Vecera) [1638022]
+- [net] sched: implement functions to put and flush all chains (Ivan Vecera) [1638022]
+- [net] sched: change tcf block reference counter type to refcount_t (Ivan Vecera) [1638022]
+- [net] sched: use Qdisc rcu API instead of relying on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: add helper function to take reference to Qdisc (Ivan Vecera) [1638022]
+- [net] sched: extend Qdisc with rcu (Ivan Vecera) [1638022]
+- [net] sched: rename qdisc_destroy() to qdisc_put() (Ivan Vecera) [1638022]
+- [net] core: netlink: add helper refcount dec and lock function (Ivan Vecera) [1638022]
+- [net] sched: act_ipt: check for underflow in __tcf_ipt_init() (Ivan Vecera) [1638022]
+- [net] sched: Add hardware specific counters to TC actions (Ivan Vecera) [1638022]
+- [net] core: Add new basic hardware counter (Ivan Vecera) [1638022]
+- [net] net_sched: change tcf_del_walker() to take idrinfo->lock (Ivan Vecera) [1638022]
+- [net] sched: Use FIELD_SIZEOF directly instead of reimplementing its function (Ivan Vecera) [1638022]
+- [net] sched: act_sample: fix NULL dereference in the data path (Ivan Vecera) [1638022]
+- [net] sched: act_police: don't use spinlock in the data path (Ivan Vecera) [1638022]
+- [net] sched: act_police: use per-cpu counters (Ivan Vecera) [1638022]
+- [net] net_sched: notify filter deletion when deleting a chain (Ivan Vecera) [1638022]
+- [net] htb: use anonymous union for simplicity (Ivan Vecera) [1638022]
+- [net] net_sched: remove redundant qdisc lock classes (Ivan Vecera) [1638022]
+- [net] sched: cls_flower: dump offload count value (Ivan Vecera) [1638022]
+- [net] net_sched: properly cancel netlink dump on failure (Ivan Vecera) [1638022]
+- [net] sched: fix memory leak in act_tunnel_key_init() (Ivan Vecera) [1638022]
+- [net] sched: action_ife: take reference to meta module (Ivan Vecera) [1638022]
+- [net] act_ife: fix a potential use-after-free (Ivan Vecera) [1638022]
+- [net] sched: act_nat: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_skbedit: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: null actions array pointer before releasing action (Ivan Vecera) [1638022]
+- [net] sched: fix type of htb statistics (Ivan Vecera) [1638022]
+- [net] net_sched: add missing tcf_lock for act_connmark (Ivan Vecera) [1638022]
+- [net] revert "net: sched: act: add extack for lookup callback" (Ivan Vecera) [1638022]
+- [net] tc-testing: add test-cases for numeric and invalid control action (Ivan Vecera) [1638022]
+- [net] net_sched: reject unknown tcfa_action values (Ivan Vecera) [1638022]
+- [net] sched: act_pedit: fix dump of extended layered op (Ivan Vecera) [1638022]
+- [net] sched: return -ENOENT when trying to remove filter from non-existent chain (Ivan Vecera) [1638022]
+- [net] sched: fix extack error message when chain is failed to be created (Ivan Vecera) [1638022]
+- [net] sched: Fix memory exposure from short TCA_U32_SEL (Ivan Vecera) [1638022]
+- [net] net_sched: fix unused variable warning in stmmac (Ivan Vecera) [1638022]
+- [net] sch_cake: Fix TC filter flow override and expand it to hosts as well (Ivan Vecera) [1638022]
+- [net] sch_cake: Remove unused including <linux/version.h> (Ivan Vecera) [1638022]
+- [net] act_ife: fix a potential deadlock (Ivan Vecera) [1638022]
+- [net] act_ife: move tcfa_lock down to where necessary (Ivan Vecera) [1638022]
+- [net] revert "net: sched: act_ife: disable bh when taking ife_mod_lock" (Ivan Vecera) [1638022]
+- [net] net_sched: remove unused tcfa_capab (Ivan Vecera) [1638022]
+- [net] net_sched: remove list_head from tc_action (Ivan Vecera) [1638022]
+- [net] net_sched: remove unused tcf_idr_check() (Ivan Vecera) [1638022]
+- [net] net_sched: remove unused parameter for tcf_action_delete() (Ivan Vecera) [1638022]
+- [net] net_sched: remove unnecessary ops->delete() (Ivan Vecera) [1638022]
+- [net] net_sched: improve and refactor tcf_action_put_many() (Ivan Vecera) [1638022]
+- [net] sched: always disable bh when taking tcf_lock (Ivan Vecera) [1638022]
+- [net] sched: act_ife: always release ife action on init error (Ivan Vecera) [1638022]
+- [net] cls_matchall: fix tcf_unbind_filter missing (Ivan Vecera) [1638022]
+- [net] sched: act_ife: disable bh when taking ife_mod_lock (Ivan Vecera) [1638022]
+- [net] sched: act_mirred method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_vlan method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_skbmod method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_skbedit method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_simple method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_police method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_pedit method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_nat method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_ipt method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_gact method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_sum method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_bpf method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_connmark method rename for grep-ability and consistency (Ivan Vecera) [1638022]
+- [net] sched: act_police: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] core: protect rate estimator statistics pointer with lock (Ivan Vecera) [1638022]
+- [net] sched: act_mirred: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: extend action ops with put_dev callback (Ivan Vecera) [1638022]
+- [net] sched: act_vlan: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_tunnel_key: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_skbmod: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_simple: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_sample: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_pedit: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_ipt: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_ife: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_gact: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_csum: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] sched: act_bpf: remove dependency on rtnl lock (Ivan Vecera) [1638022]
+- [net] tc: Update README and add config (Ivan Vecera) [1638022]
+- [net] sched: fix block->refcnt decrement (Ivan Vecera) [1638022]
+- [net] tc-tests: initial version of nat action unit tests (Ivan Vecera) [1638022]
+- [net] sched: allow flower to match tunnel options (Ivan Vecera) [1638022]
+- [net] flow_dissector: allow dissection of tunnel options from metadata (Ivan Vecera) [1638022]
+- [net] tc-testing: remove duplicate spaces in skbedit match patterns (Ivan Vecera) [1638022]
+- [net] tc-testing: remove duplicate spaces in connmark match patterns (Ivan Vecera) [1638022]
+- [net] tc-testing: flush gact actions on test teardown (Ivan Vecera) [1638022]
+- [net] tc-testing: fix ip address in u32 test (Ivan Vecera) [1638022]
+- [net] sched: cls_flower: Fix an error code in fl_tmplt_create() (Ivan Vecera) [1638022]
+- [net] sched: fix flush on non-existing chain (Ivan Vecera) [1638022]
+- [net] sched: make tcf_chain_{get, put}() static (Ivan Vecera) [1638022]
+- [net] sched: fix notifications for action-held chains (Ivan Vecera) [1638022]
+- [net] sched: change name of zombie chain to "held_by_acts_only" (Ivan Vecera) [1638022]
+- [net] act_mirred: use TC_ACT_REINSERT when possible (Ivan Vecera) [1638022]
+- [net] tc: introduce TC_ACT_REINSERT. (Ivan Vecera) [1638022]
+- [net] tc/act: remove unneeded RCU lock in action callback (Ivan Vecera) [1638022]
+- [net] sched: user-space can't set unknown tcfa_action values (Ivan Vecera) [1638022]
+- [net] Add and use skb_mark_not_on_list(). (Ivan Vecera) [1638022]
+- [net] sch_netem: Move private queue handler to generic location. (Ivan Vecera) [1638022]
+- [net] sch_htb: Remove local SKB queue handling code. (Ivan Vecera) [1638022]
+- [net] act_bpf: Use kmemdup instead of duplicating it in tcf_bpf_init_from_ops (Ivan Vecera) [1638022]
+- [net] cls_bpf: Use kmemdup instead of duplicating it in cls_bpf_prog_from_ops (Ivan Vecera) [1638022]
+- [net] act_pedit: remove unnecessary semicolon (Ivan Vecera) [1638022]
+- [net] sched: don't dump chains only held by actions (Ivan Vecera) [1638022]
+- [net] sch_cake: Make gso-splitting configurable from userspace (Ivan Vecera) [1638022]
+- [net] sched: unmark chain as explicitly created on delete (Ivan Vecera) [1638022]
+- [net] sched: cls_api: fix dead code in switch (Ivan Vecera) [1638022]
+- [net] sched: cls_flower: Use correct inline function for assignment of vlan tpid (Ivan Vecera) [1638022]
+- [net] sched: fix trailing whitespace (Ivan Vecera) [1638022]
+- [net] cbs: Add support for the graft function (Ivan Vecera) [1638022]
+- [net] sched: add skbprio scheduler (Ivan Vecera) [1638022]
+- [net] selftests: forwarding: add tests for TC chain templates (Ivan Vecera) [1638022]
+- [net] selftests: forwarding: add tests for TC chains creation adn destruction (Ivan Vecera) [1638022]
+- [net] selftests: forwarding: move shblock tc support check to a separate helper (Ivan Vecera) [1638022]
+- [net] sched: cls_flower: propagate chain teplate creation and destruction to drivers (Ivan Vecera) [1638022]
+- [net] sched: cls_flower: implement chain templates (Ivan Vecera) [1638022]
+- [net] sched: cls_flower: change fl_init_dissector to accept mask and dissector (Ivan Vecera) [1638022]
+- [net] sched: cls_flower: move key/mask dumping into a separate function (Ivan Vecera) [1638022]
+- [net] sched: introduce chain templates (Ivan Vecera) [1638022]
+- [net] sched: introduce chain object to uapi (Ivan Vecera) [1638022]
+- [net] sched: Avoid implicit chain 0 creation (Ivan Vecera) [1638022]
+- [net] sched: push ops lookup bits into tcf_proto_lookup_ops() (Ivan Vecera) [1638022]
+- [net] nfp: bring back support for offloading shared blocks (Ivan Vecera) [1638022]
+- [net] sched: use PTR_ERR_OR_ZERO macro in tcf_block_cb_register (Ivan Vecera) [1638022]
+- [net] tc-tests: initial version of fw filter unit tests (Ivan Vecera) [1638022]
+- [net] sch_cake: Fix tin order when set through skb->priority (Ivan Vecera) [1638022]
+- [net] sched: act_skbedit: don't use spinlock in the data path (Ivan Vecera) [1638022]
+- [net] sched: skbedit: use per-cpu counters (Ivan Vecera) [1638022]
+- [net] tc-testing: add geneve options in tunnel_key unit tests (Ivan Vecera) [1638022]
+- [net] sched: fix unprotected access to rcu cookie pointer (Ivan Vecera) [1638022]
+- [net] sched: act_ife: fix memory leak in ife init (Ivan Vecera) [1638022]
+- [net] sched: refactor flower walk to iterate over idr (Ivan Vecera) [1638022]
+- [net] sched: flower: Fix null pointer dereference when run tc vlan command (Ivan Vecera) [1638022]
+- [net] sched: Fix warnings from xchg() on RCU'd cookie pointer. (Ivan Vecera) [1638022]
+- [net] cls_flower: fix error values for commands not supported by drivers (Ivan Vecera) [1638022]
+- [net] nfp: handle cls_flower command default case (Ivan Vecera) [1638022]
+- [net] bnxt: simplify cls_flower command switch and handle default case (Ivan Vecera) [1638022]
+- [net] sch_cake: Conditionally split GSO segments (Ivan Vecera) [1638022]
+- [net] sch_cake: Add overhead compensation support to the rate shaper (Ivan Vecera) [1638022]
+- [net] sch_cake: Add DiffServ handling (Ivan Vecera) [1638022]
+- [net] sch_cake: Add NAT awareness to packet classifier (Ivan Vecera) [1638022]
+- [net] netfilter: Add nf_ct_get_tuple_skb global lookup function (Ivan Vecera) [1638022]
+- [net] sch_cake: Add optional ACK filter (Ivan Vecera) [1638022]
+- [net] sch_cake: Add ingress mode (Ivan Vecera) [1638022]
+- [net] sched: Add Common Applications Kept Enhanced (cake) qdisc (Ivan Vecera) [1638022]
+- [net] Use __u32 in uapi net_stamp.h (Ivan Vecera) [1638022]
+- [net] sched: flower: Add supprt for matching on QinQ vlan headers (Ivan Vecera) [1638022]
+- [net] sched: flower: Dump the ethertype encapsulated in vlan (Ivan Vecera) [1638022]
+- [net] flow_dissector: Add support for QinQ dissection (Ivan Vecera) [1638022]
+- [net] sched: flower: Add support for matching on vlan ethertype (Ivan Vecera) [1638022]
+- [net] flow_dissector: Save vlan ethertype from headers (Ivan Vecera) [1638022]
+- [net] sched: change action API to use array of pointers to actions (Ivan Vecera) [1638022]
+- [net] sched: atomically check-allocate action (Ivan Vecera) [1638022]
+- [net] sched: use reference counting action init (Ivan Vecera) [1638022]
+- [net] sched: don't release reference on action overwrite (Ivan Vecera) [1638022]
+- [net] sched: implement reference counted action release (Ivan Vecera) [1638022]
+- [net] sched: add 'delete' function to action ops (Ivan Vecera) [1638022]
+- [net] sched: implement action API that deletes action by index (Ivan Vecera) [1638022]
+- [net] sched: always take reference to action (Ivan Vecera) [1638022]
+- [net] sched: implement unlocked action init API (Ivan Vecera) [1638022]
+- [net] sched: change type of reference and bind counters (Ivan Vecera) [1638022]
+- [net] sched: use rcu for action cookie update (Ivan Vecera) [1638022]
+- [net] sched: Make etf report drops on error_queue (Ivan Vecera) [1638022]
+- [net] sched: Add HW offloading capability to ETF (Ivan Vecera) [1638022]
+- [net] sched: Introduce the ETF Qdisc (Ivan Vecera) [1638022]
+- [net] sched: Allow creating a Qdisc watchdog with other clocks (Ivan Vecera) [1638022]
+- [net] packet: Hook into time based transmission. (Ivan Vecera) [1638022]
+- [net] ipv6: Hook into time based transmission (Ivan Vecera) [1638022]
+- [net] ipv4: Hook into time based transmission (Ivan Vecera) [1638022]
+- [net] Add a new socket option for a future transmit time. (Ivan Vecera) [1638022]
+- [net] Clear skb->tstamp only on the forwarding path (Ivan Vecera) [1638022]
+- [net] sched: act_pedit: fix possible memory leak in tcf_pedit_init() (Ivan Vecera) [1638022]
+- [net] net sched actions: add extack messages in pedit action (Ivan Vecera) [1638022]
+- [net] net:sched: add action inheritdsfield to skbedit (Ivan Vecera) [1638022]
+- [net] tc-testing: initial version of tunnel_key unit tests (Ivan Vecera) [1638022]
+- [net] net sched actions: avoid bitwise operation on signed value in pedit (Ivan Vecera) [1638022]
+- [net] net sched actions: fix misleading text strings in pedit action (Ivan Vecera) [1638022]
+- [net] net sched actions: use sizeof operator for buffer length (Ivan Vecera) [1638022]
+- [net] net sched actions: fix sparse warning (Ivan Vecera) [1638022]
+- [net] net sched actions: fix coding style in pedit headers (Ivan Vecera) [1638022]
+- [net] net sched actions: fix coding style in pedit action (Ivan Vecera) [1638022]
+- [net] netem: slotting with non-uniform distribution (Ivan Vecera) [1638022]
+- [net] check tunnel option type in tunnel flags (Ivan Vecera) [1638022]
+- [net] sched: act_tunnel_key: add extended ack support (Ivan Vecera) [1638022]
+- [net] tc-tests: add an extreme-case csum action test (Ivan Vecera) [1638022]
+- [net] net_sched: remove unused htb drop_list (Ivan Vecera) [1638022]
+
+* Sun Dec 16 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-55.el8]
+- [rpmspec] always run make with HOSTCFLAGS/HOSTLDFLAGS set (Jiri Olsa) [1624124]
+- [rpmspec] Pass global build flags to tools build (Jiri Olsa) [1624124]
+- [rpmspec] Pass global build flags to bpftool build (Jiri Olsa) [1624124]
+- [kernel] kbuild: Use HOST*FLAGS options from the command line (Jiri Olsa) [1624124]
+- [scripts] kbuild: Rename HOST_LOADLIBES to KBUILD_HOSTLDLIBS (Jiri Olsa) [1624124]
+- [tools] kbuild: Rename HOSTLDFLAGS to KBUILD_HOSTLDFLAGS (Jiri Olsa) [1624124]
+- [scripts] kbuild: Rename HOSTCXXFLAGS to KBUILD_HOSTCXXFLAGS (Jiri Olsa) [1624124]
+- [tools] kbuild: Rename HOSTCFLAGS to KBUILD_HOSTCFLAGS (Jiri Olsa) [1624124]
+- [tools] tools cpupower: Override CFLAGS assignments (Jiri Olsa) [1624124]
+- [tools] tools cpupower debug: Allow to use outside build flags (Jiri Olsa) [1624124]
+- [tools] perf tools: Pass build flags to traceevent build (Jiri Olsa) [1624124]
+- [tools] tools lib traceevent: Use LDFLAGS in the build commands (Jiri Olsa) [1624124]
+- [tools] perf tools: Link libperf-jvmti.so with LDFLAGS variable (Jiri Olsa) [1624124]
+- [tools] bpftool: Allow add linker flags via EXTRA_LDFLAGS variable (Jiri Olsa) [1624124]
+- [tools] bpftool: Allow to add compiler flags via EXTRA_CFLAGS variable (Jiri Olsa) [1624124]
+- [block] blkcg: handle dying request_queue when associating a blkg (Ming Lei) [1655485]
+- [block] block: deactivate blk_stat timer in wbt_disable_default() (Ming Lei) [1655485]
+- [lib] sbitmap: flush deferred clears for resize and shallow gets (Ming Lei) [1655485]
+- [md] dm: fix request-based dm's use of dm_wait_for_completion (Ming Lei) [1655485]
+- [nvme] nvme: fix irq vs io_queue calculations (Ming Lei) [1655485]
+- [md] dm: fix inflight IO check (Ming Lei) [1655485]
+- [md] dm: remove the pending IO accounting (Ming Lei) [1655485]
+- [block] block: return just one value from part_in_flight (Ming Lei) [1655485]
+- [block] block: switch to per-cpu in-flight counters (Ming Lei) [1655485]
+- [block] block: delete part_round_stats and switch to less precise counting (Ming Lei) [1655485]
+- [block] block: stop passing 'cpu' to all percpu stats methods (Ming Lei) [1655485]
+- [md] dm rq: leverage blk_mq_queue_busy() to check for outstanding IO (Ming Lei) [1655485]
+- [md] dm: dont rewrite dm_disk(md)->part0.in_flight (Ming Lei) [1655485]
+- [lib] sbitmap: silence bogus lockdep IRQ warning (Ming Lei) [1655485]
+- [scsi] scsi: Fix a harmless double shift bug (Ming Lei) [1655485]
+- [block] blk-mq: re-build queue map in case of kdump kernel (Ming Lei) [1655485]
+- [block] blkcg: put back rcu lock in blkcg_bio_issue_check() (Ming Lei) [1655485]
+- [block] block: convert io-latency to use rq_qos_wait (Ming Lei) [1655485]
+- [block] block: convert wbt_wait() to use rq_qos_wait() (Ming Lei) [1655485]
+- [block] block: add rq_qos_wait to rq_qos (Ming Lei) [1655485]
+- [block] blkcg: rename blkg_try_get() to blkg_tryget() (Ming Lei) [1655485]
+- [block] blkcg: change blkg reference counting to use percpu_ref (Ming Lei) [1655485]
+- [block] blkcg: remove bio_disassociate_task() (Ming Lei) [1655485]
+- [block] blkcg: remove additional reference to the css (Ming Lei) [1655485]
+- [block] blkcg: remove bio->bi_css and instead use bio->bi_blkg (Ming Lei) [1655485]
+- [block] blkcg: associate writeback bios with a blkg (Ming Lei) [1655485]
+- [block] blkcg: associate a blkg for pages being evicted by swap (Ming Lei) [1655485]
+- [block] blkcg: consolidate bio_issue_init() to be a part of core (Ming Lei) [1655485]
+- [block] blkcg: associate blkg when associating a device (Ming Lei) [1655485]
+- [block] dm: set the static flush bio device on demand (Ming Lei) [1655485]
+- [block] blkcg: introduce common blkg association logic (Ming Lei) [1655485]
+- [block] blkcg: convert blkg_lookup_create() to find closest blkg (Ming Lei) [1655485]
+- [block] blkcg: update blkg_lookup_create() to do locking (Ming Lei) [1655485]
+- [block] blkcg: fix ref count issue with bio_blkcg() using task_css (Ming Lei) [1655485]
+- [block] blk-mq: remove QUEUE_FLAG_POLL from default MQ flags (Ming Lei) [1655485]
+- [block] block: enable polling by default if a poll map is initalized (Ming Lei) [1655485]
+- [block] block: only allow polling if a poll queue_map exists (Ming Lei) [1655485]
+- [block] block: remove ->poll_fn (Ming Lei) [1655485]
+- [nvme] nvme-mpath: remove I/O polling support (Ming Lei) [1655485]
+- [nvme] nvme-rdma: remove I/O polling support (Ming Lei) [1655485]
+- [nvme] nvme-pci: remove the CQ lock for interrupt driven queues (Ming Lei) [1655485]
+- [nvme] nvme-pci: don't poll from irq context when deleting queues (Ming Lei) [1655485]
+- [nvme] nvme-pci: refactor nvme_disable_io_queues (Ming Lei) [1655485]
+- [nvme] nvme-pci: consolidate code for polling non-dedicated queues (Ming Lei) [1655485]
+- [nvme] nvme-pci: only allow polling with separate poll queues (Ming Lei) [1655485]
+- [nvme] nvme-pci: cleanup SQ allocation a bit (Ming Lei) [1655485]
+- [nvme] nvme-pci: use atomic bitops to mark a queue enabled (Ming Lei) [1655485]
+- [block] block: move queues types to the block layer (Ming Lei) [1655485]
+- [fs] aio: clear IOCB_HIPRI (Ming Lei) [1655485]
+- [lib] sbitmap: fix sbitmap_for_each_set() (Ming Lei) [1655485]
+- [block] blk-mq: don't call ktime_get_ns() if we don't need it (Ming Lei) [1655485]
+- [block] block: add cmd_flags to print_req_error (Ming Lei) [1655485]
+- [lib] sbitmap: optimize wakeup check (Ming Lei) [1655485]
+- [lib] sbitmap: ammortize cost of clearing bits (Ming Lei) [1655485]
+- [block] block: avoid extra bio reference for async O_DIRECT (Ming Lei) [1655485]
+- [lib] sbitmap: don't loop for find_next_zero_bit() for !round_robin (Ming Lei) [1655485]
+- [block] blk-mq: use plug for devices that implement ->commits_rqs() (Ming Lei) [1655485]
+- [block] blk-mq: use bd->last == true for list inserts (Ming Lei) [1655485]
+- [block] ataflop: implement mq_ops->commit_rqs() hook (Ming Lei) [1655485]
+- [block] virtio_blk: implement mq_ops->commit_rqs() hook (Ming Lei) [1655485]
+- [nvme] nvme: implement mq_ops->commit_rqs() hook (Ming Lei) [1655485]
+- [block] blk-mq: add mq_ops->commit_rqs() (Ming Lei) [1655485]
+- [block] block: improve logic around when to sort a plug list (Ming Lei) [1655485]
+- [block] blk-mq: Add a NULL check in blk_mq_free_map_and_requests() (Ming Lei) [1655485]
+- [block] ataflop: fix error handling in atari_floppy_init() (Ming Lei) [1655485]
+- [block] block: add io timeout to sysfs (Ming Lei) [1655485]
+- [block] block: use rcu_work instead of call_rcu to avoid sleep in softirq (Ming Lei) [1655485]
+- [block] blk-mq: fix failure to decrement plug count on single rq removal (Ming Lei) [1655485]
+- [block] sunvdc: Do not spin in an infinite loop when vio_ldc_send() returns EAGAIN (Ming Lei) [1655485]
+- [block] block: sum requests in the plug structure (Ming Lei) [1655485]
+- [block] blk-mq: Simplify request completion state (Ming Lei) [1655485]
+- [scsi] scsi: Do not rely on blk-mq for double completions (Ming Lei) [1655485]
+- [block] blk-mq: Return true if request was completed (Ming Lei) [1655485]
+- [block] blk-mq: never redirect polled IO completions (Ming Lei) [1655485]
+- [block] blk-mq: ensure mq_ops ->poll() is entered at least once (Ming Lei) [1655485]
+- [block] block: make blk_poll() take a parameter on whether to spin or not (Ming Lei) [1655485]
+- [nvme] nvme: remove opportunistic polling from bdev target (Ming Lei) [1655485]
+- [block] blk-mq: remove 'tag' parameter from mq_ops->poll() (Ming Lei) [1655485]
+- [block] blk-mq: when polling for IO, look for any completion (Ming Lei) [1655485]
+- [block] block: fix attempt to assign NULL io_context (Ming Lei) [1655485]
+- [block] block: Initialize BIO I/O priority early (Ming Lei) [1655485]
+- [block] block: prevent merging of requests with different priorities (Ming Lei) [1655485]
+- [fs] aio: Fix fallback I/O priority value (Ming Lei) [1655485]
+- [block] block: Introduce get_current_ioprio() (Ming Lei) [1655485]
+- [block] block: Remove bio->bi_ioc (Ming Lei) [1655485]
+- [fs] aio: Comment use of IOCB_FLAG_IOPRIO aio flag (Ming Lei) [1655485]
+- [nvme] nvme-fc: remove ->poll implementation (Ming Lei) [1655485]
+- [block] block: have ->poll_fn() return number of entries polled (Ming Lei) [1655485]
+- [block] block: avoid ordered task state change for polled IO (Ming Lei) [1655485]
+- [nvme] nvme: default to 0 poll queues (Ming Lei) [1655485]
+- [block] floppy: remove now unused 'flags' variable (Ming Lei) [1655485]
+- [mmc] mmc: stop abusing the request queue_lock pointer (Ming Lei) [1655485]
+- [block] ide: don't acquire queue_lock in ide_complete_pm_rq (Ming Lei) [1655485]
+- [block] ide: don't acquire queue lock in ide_pm_execute_rq (Ming Lei) [1655485]
+- [block] pktcdvd: remove queue_lock around blk_queue_max_hw_sectors (Ming Lei) [1655485]
+- [block] floppy: remove queue_lock around floppy_end_request (Ming Lei) [1655485]
+- [block] block: remove the rq_alloc_data request_queue field (Ming Lei) [1655485]
+- [block] block: don't plug for aio/O_DIRECT HIPRI IO (Ming Lei) [1655485]
+- [block] block: for async O_DIRECT, mark us as polling if asked to (Ming Lei) [1655485]
+- [block] block: add polled wakeup task helper (Ming Lei) [1655485]
+- [block] blk-rq-qos: inline check for q->rq_qos functions (Ming Lei) [1655485]
+- [block] block: add queue_is_mq() helper (Ming Lei) [1655485]
+- [nvme] nvme: provide optimized poll function for separate poll queues (Ming Lei) [1655485]
+- [block] ide: clear ide_req()->special for non-passthrough requests (Ming Lei) [1655485]
+- [nvme] nvme: fix handling of EINVAL on pci_alloc_irq_vectors_affinity() (Ming Lei) [1655485]
+- [block] block: add wbt_disable_default export for BFQ (Ming Lei) [1655485]
+- [block] block: remove the queue_lock indirection (Ming Lei) [1655485]
+- [block] block: remove the lock argument to blk_alloc_queue_node (Ming Lei) [1655485]
+- [mmc] mmc: stop abusing the request queue_lock pointer (Ming Lei) [1655485]
+- [mmc] mmc: simplify queue initialization (Ming Lei) [1655485]
+- [block] umem: don't override the queue_lock (Ming Lei) [1655485]
+- [block] drbd: don't override the queue_lock (Ming Lei) [1655485]
+- [block] blk-cgroup: move locking into blkg_destroy_all (Ming Lei) [1655485]
+- [block] blk-cgroup: consolidate error handling in blkcg_init_queue (Ming Lei) [1655485]
+- [block] block: remove a few unused exports (Ming Lei) [1655485]
+- [block] block: update a few comments for the legacy request removal (Ming Lei) [1655485]
+- [block] block: remove the unused lock argument to rq_qos_throttle (Ming Lei) [1655485]
+- [block] block: remove queue_lockdep_assert_held (Ming Lei) [1655485]
+- [block] block: use atomic bitops for ->queue_flags (Ming Lei) [1655485]
+- [block] block: don't hold the queue_lock over blk_abort_request (Ming Lei) [1655485]
+- [block] block: remove deadline __deadline manipulation helpers (Ming Lei) [1655485]
+- [block] block: remove QUEUE_FLAG_BYPASS and ->bypass (Ming Lei) [1655485]
+- [nvme] nvmet-rdma: fix response use after free (Ming Lei) [1655485]
+- [nvme] nvme: validate controller state before rescheduling keep alive (Ming Lei) [1655485]
+- [block] block, bfq: fix decrement of num_active_groups (Ming Lei) [1655485]
+- [ata] libata: whitelist all SAMSUNG MZ7KM* solid-state disks (Ming Lei) [1655485]
+- [nvme] nvme-rdma: fix double freeing of async event data (Ming Lei) [1655485]
+- [nvme] nvme-pci: fix surprise removal (Ming Lei) [1655485]
+- [nvme] nvme: Free ctrl device name on init failure (Ming Lei) [1655485]
+- [nvme] nvme-fc: resolve io failures during connect (Ming Lei) [1655485]
+- [nvme] nvme: make sure ns head inherits underlying device limits (Ming Lei) [1655485]
+- [nvme] nvmet: don't try to add ns to p2p map unless it actually uses it (Ming Lei) [1655485]
+- [nvme] nvme-pci: fix conflicting p2p resource adds (Ming Lei) [1655485]
+- [nvme] nvmet: Optionally use PCI P2P memory (Ming Lei) [1655485]
+- [nvme] nvmet: Introduce helper functions to allocate and free request SGLs (Ming Lei) [1655485]
+- [nvme] nvme-pci: Add support for P2P memory in requests (Ming Lei) [1655485]
+- [nvme] nvme-pci: Use PCI p2pmem subsystem to manage the CMB (Ming Lei) [1655485]
+- [infiniband] IB/core: Ensure we map P2P memory correctly in rdma_rw_ctx_[init|destroy]() (Ming Lei) [1655485]
+- [block] block: Add PCI P2P flag for request queue (Ming Lei) [1655485]
+- [documentation] PCI/P2PDMA: Add P2P DMA driver writer's documentation (Ming Lei) [1655485]
+- [documentation] docs-rst: Add a new directory for PCI documentation (Ming Lei) [1655485]
+- [pci] PCI/P2PDMA: Introduce configfs/sysfs enable attribute helpers (Ming Lei) [1655485]
+- [pci] PCI/P2PDMA: Add PCI p2pmem DMA mappings to adjust the bus offset (Ming Lei) [1655485]
+- [pci] PCI/P2PDMA: Add sysfs group to display p2pmem stats (Ming Lei) [1655485]
+- [pci] PCI/P2PDMA: Support peer-to-peer memory (Ming Lei) [1655485]
+- [nvme] nvmet-rdma: support max(16KB, PAGE_SIZE) inline data (Ming Lei) [1655485]
+- [nvme] nvme-rdma: support up to 4 segments of inline data (Ming Lei) [1655485]
+- [fs] aio: fix failure to put the file pointer (Ming Lei) [1655485]
+- [lib] scsi: Remove percpu_ida (Ming Lei) [1655485]
+- [scsi] scsi: target: Convert target drivers to use sbitmap (Ming Lei) [1655485]
+- [scsi] scsi: target: Abstract tag freeing (Ming Lei) [1655485]
+- [block] mmc: block: Fix unsupported parallel dispatch of requests (Ming Lei) [1655485]
+- [scsi] scsi: target: sbitmap: add seq_file forward declaration (Ming Lei) [1655485]
+- [mm] mm, memory_hotplug: do not clear numa_node association after hot_remove (Waiman Long) [1657422]
+- [fs] iomap: partially revert 4721a601099 (simulated directio short read on EFAULT) (Brian Foster) [1654713]
+- [fs] splice: don't read more than available pipe space (Brian Foster) [1654713]
+- [fs] vfs: allow some remap flags to be passed to vfs_clone_file_range (Brian Foster) [1654713]
+- [fs] xfs: fix inverted return from xfs_btree_sblock_verify_crc (Brian Foster) [1654713]
+- [fs] xfs: fix PAGE_MASK usage in xfs_free_file_space (Brian Foster) [1654713]
+- [fs] fs/xfs: fix f_ffree value for statfs when project quota is set (Brian Foster) [1654713]
+- [fs] iomap: readpages doesn't zero page tail beyond EOF (Brian Foster) [1654713]
+- [fs] vfs: vfs_dedupe_file_range() doesn't return EOPNOTSUPP (Brian Foster) [1654713]
+- [fs] iomap: dio data corruption and spurious errors when pipes fill (Brian Foster) [1654713]
+- [fs] iomap: sub-block dio needs to zeroout beyond EOF (Brian Foster) [1654713]
+- [fs] iomap: FUA is wrong for DIO O_DSYNC writes into unwritten extents (Brian Foster) [1654713]
+- [fs] xfs: delalloc -> unwritten COW fork allocation can go wrong (Brian Foster) [1654713]
+- [fs] xfs: flush removing page cache in xfs_reflink_remap_prep (Brian Foster) [1654713]
+- [fs] xfs: extent shifting doesn't fully invalidate page cache (Brian Foster) [1654713]
+- [fs] xfs: finobt AG reserves don't consider last AG can be a runt (Brian Foster) [1654713]
+- [fs] xfs: fix transient reference count error in xfs_buf_resubmit_failed_buffers (Brian Foster) [1654713]
+- [fs] xfs: uncached buffer tracing needs to print bno (Brian Foster) [1654713]
+- [fs] xfs: make xfs_file_remap_range() static (Brian Foster) [1654713]
+- [fs] xfs: fix shared extent data corruption due to missing cow reservation (Brian Foster) [1654713]
+- [fs] xfs: fix overflow in xfs_attr3_leaf_verify (Brian Foster) [1654713]
+- [fs] xfs: print buffer offsets when dumping corrupt buffers (Brian Foster) [1654713]
+- [fs] xfs: Fix error code in 'xfs_ioc_getbmap()' (Brian Foster) [1654713]
+- [fs] xfs: cancel COW blocks before swapext (Brian Foster) [1654713]
+- [fs] xfs: clear ail delwri queued bufs on unmount of shutdown fs (Brian Foster) [1654713]
+- [fs] xfs: use offsetof() in place of offset macros for __xfsstats (Brian Foster) [1654713]
+- [fs] xfs: Fix xqmstats offsets in /proc/fs/xfs/xqmstat (Brian Foster) [1654713]
+- [fs] xfs: fix use-after-free race in xfs_buf_rele (Brian Foster) [1654713]
+- [fs] xfs: Add attibute remove and helper functions (Brian Foster) [1654713]
+- [fs] xfs: Add attibute set and helper functions (Brian Foster) [1654713]
+- [fs] xfs: Add helper function xfs_attr_try_sf_addname (Brian Foster) [1654713]
+- [fs] xfs: Move fs/xfs/xfs_attr.h to fs/xfs/libxfs/xfs_attr.h (Brian Foster) [1654713]
+- [fs] xfs: issue log message on user force shutdown (Brian Foster) [1654713]
+- [fs] xfs: fix buffer state management in xrep_findroot_block (Brian Foster) [1654713]
+- [fs] xfs: always assign buffer verifiers when one is provided (Brian Foster) [1654713]
+- [fs] xfs: xrep_findroot_block should reject root blocks with siblings (Brian Foster) [1654713]
+- [fs] xfs: add a define for statfs magic to uapi (Brian Foster) [1654713]
+- [fs] xfs: print dangling delalloc extents (Brian Foster) [1654713]
+- [fs] xfs: fix fork selection in xfs_find_trim_cow_extent (Brian Foster) [1654713]
+- [fs] xfs: remove the unused trimmed argument from xfs_reflink_trim_around_shared (Brian Foster) [1654713]
+- [fs] xfs: remove the unused shared argument to xfs_reflink_reserve_cow (Brian Foster) [1654713]
+- [fs] xfs: handle zeroing in xfs_file_iomap_begin_delay (Brian Foster) [1654713]
+- [fs] xfs: remove suport for filesystems without unwritten extent flag (Brian Foster) [1654713]
+- [fs] xfs: remove XFS_IO_INVALID (Brian Foster) [1654713]
+- [fs] xfs: remove [cm]time update from reflink calls (Brian Foster) [1654713]
+- [fs] xfs: remove xfs_reflink_remap_range (Brian Foster) [1654713]
+- [fs] xfs: remove redundant remap partial EOF block checks (Brian Foster) [1654713]
+- [fs] xfs: support returning partial reflink results (Brian Foster) [1654713]
+- [fs] xfs: clean up xfs_reflink_remap_blocks call site (Brian Foster) [1654713]
+- [fs] xfs: fix pagecache truncation prior to reflink (Brian Foster) [1654713]
+- [fs] vfs: clean up generic_remap_file_range_prep return value (Brian Foster) [1654713]
+- [fs] vfs: hide file range comparison function (Brian Foster) [1654713]
+- [fs] vfs: enable remap callers that can handle short operations (Brian Foster) [1654713]
+- [fs] vfs: plumb remap flags through the vfs dedupe functions (Brian Foster) [1654713]
+- [fs] vfs: plumb remap flags through the vfs clone functions (Brian Foster) [1654713]
+- [fs] vfs: make remap_file_range functions take and return bytes completed (Brian Foster) [1654713]
+- [fs] vfs: remap helper should update destination inode metadata (Brian Foster) [1654713]
+- [fs] vfs: pass remap flags to generic_remap_checks (Brian Foster) [1654713]
+- [fs] vfs: pass remap flags to generic_remap_file_range_prep (Brian Foster) [1654713]
+- [fs] vfs: combine the clone and dedupe into a single remap_file_range (Brian Foster) [1654713]
+- [fs] vfs: rename clone_verify_area to remap_verify_area (Brian Foster) [1654713]
+- [fs] vfs: rename vfs_clone_file_prep to be more descriptive (Brian Foster) [1654713]
+- [fs] vfs: skip zero-length dedupe requests (Brian Foster) [1654713]
+- [fs] vfs: avoid problematic remapping requests into partial EOF block (Brian Foster) [1654713]
+- [fs] vfs: strengthen checking of file range inputs to generic_remap_checks (Brian Foster) [1654713]
+- [fs] vfs: exit early from zero length remap operations (Brian Foster) [1654713]
+- [fs] vfs: check file ranges before cloning files (Brian Foster) [1654713]
+- [fs] vfs: vfs_clone_file_prep_inodes should return EINVAL for a clone from beyond EOF (Brian Foster) [1654713]
+- [block] blk-mq: not embed .mq_kobj and ctx->kobj into queue instance (Ming Lei) [1653124]
+- [fs] fs: fix lost error code in dio_complete (Ming Lei) [1655364]
+- [iommu] iommu/iova: Optimise attempts to allocate iova from 32bit address range (Robert Richter) [1639202]
+
+* Fri Dec 14 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-54.el8]
+- [drm] drm/nouveau/drm/nouveau: Check rc from drm_dp_mst_topology_mgr_resume() (Lyude Paul) [1658810]
+- [x86] Mark Intel Apollo Lake supported (David Arcari) [1653799]
+- [infiniband] IB/mlx5: Fix implicit ODP interrupted page fault (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Improve ODP debugging messages (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5: Use multi threaded workqueue for page fault handling (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5: Return success for PAGE_FAULT_RESUME in internal error state (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Lock QP during page fault handling (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5: Enumerate page fault types (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5: Add interface to hold and release core resources (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5: Release resource on error flow (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx4_core: Correctly set PFC param if global pause is turned off. (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx4_en: Change min MTU size to ETH_MIN_MTU (Alaa Hleihel) [1658085]
+- [netdrv] mlx5: fix get_ip_proto() (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Fix page fault handling for MW (Alaa Hleihel) [1658085]
+- [infiniband] RDMA/mlx5: Initialize return variable in case pagefault was skipped (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Skip non-ODP MR when handling a page fault (Alaa Hleihel) [1658085]
+- [net] net/dim: Update DIM start sample after each DIM iteration (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Avoid load failure due to unknown link width (Alaa Hleihel) [1658085]
+- [infiniband] RDMA/mlx5: Fix fence type for IB_WR_LOCAL_INV WR (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Removed unnecessary warnings in FEC caps query (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Fix selftest for small MTUs (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: RX, verify received packet size in Linear Striding RQ (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Apply the correct check for supporting TC esw rules split (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Adjust to max number of channles when re-attaching (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Always use the match level enum when parsing TC rule match (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Claim TC hw offloads support only under a proper build config (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Don't match on vlan non-existence if ethertype is wildcarded (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: IPoIB, Reset QP after channels are closed (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx4: Fix UBSAN warning of signed integer overflow (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx4_core: Fix uninitialized variable compilation warning (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx4_core: Zero out lkey field in SW2HW_MPT fw command (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Fix MR cache initialization (Alaa Hleihel) [1658085]
+- [infiniband] RDMA/mlx5: Remove extraneous error check (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5: Take only bit 24-26 of wqe.pftype_wq for page fault type (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5: Fix memory leak when setting fpga ipsec caps (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Unmap DMA addr from HCA before IOMMU (Alaa Hleihel) [1658085]
+- [infiniband] RDMA/mlx5: Remove superfluous version print (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Allow transition of DCI QP to reset (Alaa Hleihel) [1658085]
+- [infiniband] IB/mlx5: Don't hold spin lock while checking device state (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Move mlx5e_priv_flags into en_ethtool.c (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5: Fix atomic_mode enum values (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: Delete unneeded function argument (Alaa Hleihel) [1658085]
+- [netdrv] net/mlx5e: RX, Prefetch the xdp_frame data area (Alaa Hleihel) [1658085]
+- [drm] drm/i915: Synchronize hpd work in i915_hpd_storm_ctl_show() (Lyude Paul) [1658376]
+- [drm] drm/i915: Add short HPD IRQ storm detection for non-MST systems (Lyude Paul) [1658376]
+- [drm] drm/i915: Clarify flow for disabling IRQs on storms (Lyude Paul) [1658376]
+- [drm] drm/i915: Fix threshold check in intel_hpd_irq_storm_detect() (Lyude Paul) [1658376]
+- [drm] drm/i915: Fix NULL deref when re-enabling HPD IRQs on systems with MST (Lyude Paul) [1658376]
+- [drm] drm/i915: Fix possible race in intel_dp_add_mst_connector() (Lyude Paul) [1658376]
+- [x86] kvm: x86: bump KVM_(SOFT_)MAX_VCPUS to 384 (Radim Krcmar) [1635205]
+- [block] blk-mq: punt failed direct issue to dispatch list (Ming Lei) [1656653]
+- [block] blk-mq: fix corruption with direct issue (Ming Lei) [1656653]
+- [pci] PCI: Add support for Immediate Readiness (Myron Stowe) [1483409]
+- [x86] x86/PCI: Remove node-local allocation when initialising host controller (Myron Stowe) [1483409]
+- [arm64] arm64: PCI: Remove node-local allocations when initialising host controller (Myron Stowe) [1483409]
+- [cpufreq] cpufreq: intel_pstate: Add base_frequency attribute (Prarit Bhargava) [1648207]
+- [acpi] ACPI / CPPC: Add support for guaranteed performance (Prarit Bhargava) [1648207]
+- [block] block: fix single range discard merge (Ming Lei) [1654096]
+- [scsi] SCSI: fix queue cleanup race before queue initialization is done (Ming Lei) [1642404]
+- [netdrv] net: hinic: fix null pointer dereference on pointer hwdev (Xiaojun Tan) [1654207]
+- [netdrv] net-next/hinic: fix a bug in rx data flow (Xiaojun Tan) [1654207]
+- [netdrv] net-next/hinic:fix a bug in set mac address (Xiaojun Tan) [1654207]
+- [netdrv] net-next/hinic:add rx checksum offload for HiNIC (Xiaojun Tan) [1654207]
+- [netdrv] net-next/hinic:replace multiply and division operators (Xiaojun Tan) [1654207]
+- [netdrv] hinic: Fix l4_type parameter in hinic_task_set_tunnel_l4 (Xiaojun Tan) [1654207]
+- [netdrv] net-next/hinic: add checksum offload and TSO support (Xiaojun Tan) [1654207]
+- [netdrv] cxgb4: Remove SGE_HOST_PAGE_SIZE dependency on page size (Arjun Vynipadath) [1651082]
+
+* Thu Dec 13 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-53.el8]
+- [x86] kvm: x86: Report STIBP on GET_SUPPORTED_CPUID (Eduardo Habkost) [1644870]
+- [kernel] power: remove possible deadlock when unregistering power_supply (Benjamin Tissoires) [1657623]
+- [md] dm: call blk_queue_split() to impose device limits on bios (Mike Snitzer) [1657340]
+- [pinctrl] Revert "pinctrl: intel: Do pin translation when lock IRQ" (Benjamin Tissoires) [1658075]
+- [pinctrl] pinctrl: cannonlake: Fix HOSTSW_OWN register offset of H variant (Benjamin Tissoires) [1658075]
+- [pinctrl] pinctrl: intel: Do pin translation in other GPIO operations as well (Benjamin Tissoires) [1658075]
+- [pinctrl] pinctrl: cannonlake: Fix gpio base for GPP-E (Benjamin Tissoires) [1658075]
+- [pinctrl] pinctrl: intel: Don't shadow error code of gpiochip_lock_as_irq() (Benjamin Tissoires) [1658075]
+- [pinctrl] pinctrl: cannonlake: Fix community ordering for H variant (Benjamin Tissoires) [1658075]
+- [pinctrl] pinctrl: intel: Do pin translation when lock IRQ (Benjamin Tissoires) [1658075]
+- [firmware] efi: Prevent GICv3 WARN() by mapping the memreserve table before first use (Bhupesh Sharma) [1638640]
+- [firmware] efi: Permit calling efi_mem_reserve_persistent() from atomic context (Bhupesh Sharma) [1638640]
+- [firmware] efi/arm: Defer persistent reservations until after paging_init() (Bhupesh Sharma) [1638640]
+- [firmware] efi/arm: Revert deferred unmap of early memmap mapping (Bhupesh Sharma) [1638640]
+- [arm64] arm64: memblock: don't permit memblock resizing until linear mapping is up (Bhupesh Sharma) [1638640]
+- [arm64] arm64: Fix /proc/iomem for reserved but not memory regions (Bhupesh Sharma) [1638640]
+- [tty] tty: wipe buffer. (Christoph von Recklinghausen) [1655051]
+- [tty] tty: wipe buffer if not echoing data (Christoph von Recklinghausen) [1655051]
+
+* Wed Dec 12 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-52.el8]
+- [powerpc] powerpc/perf: Remove sched_task function defined for thread-imc (Steve Best) [1657153]
+- [s390] Add reserved fields to mm_context_t (Philipp Rudo) [1656874]
+- [s390] Add reserved fields to thread_struct (Philipp Rudo) [1656874]
+- [documentation] kdump: correct crashkernel=auto threshold (Raghavendra Rao) [1656698]
+- [fs] NFSv4.x: fix lock recovery during delegation recall (Steve Dickson) [1656410]
+- [x86] x86/spec_ctrl: Synchronize RHEL8 percpu SPEC_CTRL MSR states with new STIBP logic (Waiman Long) [1655662]
+- [x86] x86/speculation: Provide IBPB always command line options (Waiman Long) [1655662]
+- [x86] x86/speculation: Add seccomp Spectre v2 user space protection mode (Waiman Long) [1655662]
+- [x86] x86/speculation: Enable prctl mode for spectre_v2_user (Waiman Long) [1655662]
+- [x86] x86/speculation: Add prctl() control for indirect branch speculation (Waiman Long) [1655662]
+- [x86] x86/speculation: Prepare arch_smt_update() for PRCTL mode (Waiman Long) [1655662]
+- [x86] x86/speculation: Prevent stale SPEC_CTRL msr content (Waiman Long) [1655662]
+- [x86] x86/speculation: Split out TIF update (Waiman Long) [1655662]
+- [x86] ptrace: Remove unused ptrace_may_access_sched() and MODE_IBRS (Waiman Long) [1655662]
+- [x86] x86/speculation: Prepare for conditional IBPB in switch_mm() (Waiman Long) [1655662]
+- [x86] x86/speculation: Avoid __switch_to_xtra() calls (Waiman Long) [1655662]
+- [x86] x86/process: Consolidate and simplify switch_to_xtra() code (Waiman Long) [1655662]
+- [x86] x86/speculation: Prepare for per task indirect branch speculation control (Waiman Long) [1655662]
+- [x86] x86/speculation: Add command line control for indirect branch speculation (Waiman Long) [1655662]
+- [x86] x86/speculation: Unify conditional spectre v2 print functions (Waiman Long) [1655662]
+- [x86] x86/speculataion: Mark command line parser data __initdata (Waiman Long) [1655662]
+- [x86] x86/speculation: Mark string arrays const correctly (Waiman Long) [1655662]
+- [x86] x86/speculation: Reorder the spec_v2 code (Waiman Long) [1655662]
+- [x86] x86/l1tf: Show actual SMT state (Waiman Long) [1655662]
+- [x86] x86/speculation: Rework SMT state change (Waiman Long) [1655662]
+- [x86] sched/smt: Expose sched_smt_present static key (Waiman Long) [1655662]
+- [x86] x86/Kconfig: Select SCHED_SMT if SMP enabled (Waiman Long) [1655662]
+- [x86] sched/smt: Make sched_smt_present track topology (Waiman Long) [1655662]
+- [x86] x86/speculation: Reorganize speculation control MSRs update (Waiman Long) [1655662]
+- [x86] x86/speculation: Rename SSBD update functions (Waiman Long) [1655662]
+- [x86] x86/speculation: Disable STIBP when enhanced IBRS is in use (Waiman Long) [1655662]
+- [x86] x86/speculation: Move STIPB/IBPB string conditionals out of cpu_show_common() (Waiman Long) [1655662]
+- [x86] x86/speculation: Remove unnecessary ret variable in cpu_show_common() (Waiman Long) [1655662]
+- [x86] x86/speculation: Clean up spectre_v2_parse_cmdline() (Waiman Long) [1655662]
+- [x86] x86/speculation: Update the TIF_SSBD comment (Waiman Long) [1655662]
+- [x86] x86/retpoline: Remove minimal retpoline support (Waiman Long) [1655662]
+- [x86] x86/retpoline: Make CONFIG_RETPOLINE depend on compiler support (Waiman Long) [1655662]
+- [x86] x86/spec_ctrl: Temporarily remove the IBRS code from process.c & bugs.c (Waiman Long) [1655662]
+- [nvme] nvme: flush namespace scanning work just before removing namespaces (Ewan Milne) [1656028]
+- [netdrv] i40e: Fix deletion of MAC filters (Stefan Assmann) [1646847]
+- [scsi] mpt3sas: Display message on Configurable secure HBA (Tomas Henzl) [1649314]
+- [scsi] scsi: mpt3sas: Add support for Aero controllers (Tomas Henzl) [1649314]
+- [scsi] scsi: mpt3sas: Update MPI headers to support Aero controllers (Tomas Henzl) [1649314]
+- [scsi] megaraid_sas: Add support for MegaRAID Aero controllers (Tomas Henzl) [1649384]
+- [netdrv] nfp: flower: enabled offloading of Team LAG (Pablo Cascon) [1649876]
+- [netdrv] net/mlx5: IPSec, Fix the SA context hash key (Alaa Hleihel) [1645857]
+- [hwmon] hwmon/k10temp: Add support for AMD family 17h, model 30h CPUs (Gary Hook) [1640681]
+- [x86] x86/amd_nb: Add PCI device IDs for family 17h, model 30h (Gary Hook) [1640681]
+- [x86] x86/amd_nb: Add support for newer PCI topologies (Gary Hook) [1640681]
+- [hwmon] hwmon/k10temp, x86/amd_nb: Consolidate shared device IDs (Gary Hook) [1640681]
+- [net] tipc: fix info leak from kernel tipc_event (Jon Maloy) [1643279]
+- [net] tipc: eliminate message disordering during binding table update (Jon Maloy) [1643279]
+- [net] tipc: fix unsafe rcu locking when accessing publication list (Jon Maloy) [1643279]
+- [net] tipc: queue socket protocol error messages into socket receive buffer (Jon Maloy) [1643279]
+- [net] tipc: ignore STATE_MSG on wrong link session (Jon Maloy) [1643279]
+- [net] tipc: fix failover problem (Jon Maloy) [1643279]
+- [net] tipc: eliminate possible recursive locking detected by LOCKDEP (Jon Maloy) [1643279]
+- [net] tipc: lock wakeup & inputq at tipc_link_reset() (Jon Maloy) [1643279]
+- [net] tipc: reset bearer if device carrier not ok (Jon Maloy) [1643279]
+- [net] tipc: fix flow control accounting for implicit connect (Jon Maloy) [1643279]
+- [net] tipc: check return value of __tipc_dump_start() (Jon Maloy) [1643279]
+- [net] tipc: call start and done ops directly in __tipc_nl_compat_dumpit() (Jon Maloy) [1643279]
+- [net] tipc: orphan sock in tipc_release() (Jon Maloy) [1643279]
+- [net] tipc: switch to rhashtable iterator (Jon Maloy) [1643279]
+- [net] tipc: fix a missing rhashtable_walk_exit() (Jon Maloy) [1643279]
+- [net] tipc: add missing dev_put() on error in tipc_enable_l2_media (Jon Maloy) [1643279]
+- [net] tipc: initialize broadcast link stale counter correctly (Jon Maloy) [1643279]
+- [net] tipc: set link tolerance correctly in broadcast link (Jon Maloy) [1643279]
+- [net] tipc: extend link reset criteria for stale packet retransmission (Jon Maloy) [1643279]
+- [crypto] crypto: ccp - Add support for new CCP/PSP device ID (Gary Hook) [1634201]
+- [crypto] crypto: ccp - Support register differences between PSP devices (Gary Hook) [1634201]
+- [crypto] crypto: ccp - Remove unused #defines (Gary Hook) [1634201]
+- [crypto] crypto: ccp - Add psp enabled message when initialization succeeds (Gary Hook) [1634201]
+- [crypto] crypto: ccp - Fix command completion detection race (Gary Hook) [1634201]
+- [crypto] crypto: ccp - Check for NULL PSP pointer at module unload (Gary Hook) [1634201]
+- [net] sctp: increase sk_wmem_alloc when head->truesize is increased (Xin Long) [1645419]
+- [net] sctp: count sk_wmem_alloc by skb truesize in sctp_packet_transmit (Xin Long) [1645419]
+- [net] ipv6: re-do dad when interface has IFF_NOARP flag change (Hangbin Liu) [1644594]
+- [net] netfilter: nf_tables: don't skip inactive chains during update (Florian Westphal) [1643746]
+- [net] inet: frags: better deal with smp races (Sabrina Dubroca) [1645397]
+- [net] geneve, vxlan: Don't set exceptions if skb->len < mtu (Xin Long) [1642842]
+- [net] geneve, vxlan: Don't check skb_dst() twice (Xin Long) [1642842]
+- [net] sctp: fix strchange_flags name for Stream Change Event (Xin Long) [1641852]
+- [net] sctp: update dst pmtu with the correct daddr (Xin Long) [1644478]
+- [net] sctp: not free the new asoc when sctp_wait_for_connect returns err (Xin Long) [1644155]
+- [net] l2tp: fix a sock refcnt leak in l2tp_tunnel_register (Xin Long) [1642749]
+- [net] sctp: check policy more carefully when getting pr status (Xin Long) [1637786]
+- [net] sctp: get pr_assoc and pr_stream all status with SCTP_PR_SCTP_ALL instead (Xin Long) [1637786]
+- [net] ipv4/igmp: fix v1/v2 switchback timeout based on rfc3376, 8.12 (Hangbin Liu) [1638598]
+- [net] netfilter: nft_compat: ebtables 'nat' table is normal chain type (Florian Westphal) [1645377]
+- [net] sched: exclude TC from kABI guarantee (Ivan Vecera) [1628454]
+- [net] netfilter: nft_set_rbtree: allow loose matching of closing element in interval (Phil Sutter) [1641993]
+- [net] netfilter: xt_nat: fix DNAT target for shifted portmap ranges (Paolo Abeni) [1634258]
+- [net] sched: Fix for duplicate class dump (Phil Sutter) [1631179]
+- [x86] KVM: X86: Fix scan ioapic use-before-initialization (Bandan Das) [1653835] {CVE-2018-19407}
+
+* Fri Dec 07 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-51.el8]
+- [scsi] scsi: vmw_pscsi: Rearrange code to avoid multiple calls to free_irq during unload (Cathy Avery) [1590875]
+- [netdrv] net/ibmvnic: Fix RTNL deadlock during device reset (Steve Best) [1656076]
+- [s390] s390/qeth: fix length check in SNMP processing (Philipp Rudo) [1655612]
+- [s390] s390/ism: clear dmbe_mask bit before SMC IRQ handling (Philipp Rudo) [1655611]
+- [net] net/smc: use after free fix in smc_wr_tx_put_slot() (Philipp Rudo) [1655611]
+- [net] net/smc: atomic SMCD cursor handling (Philipp Rudo) [1655611]
+- [net] net/smc: add SMC-D shutdown signal (Philipp Rudo) [1655611]
+- [net] net/smc: use queue pair number when matching link group (Philipp Rudo) [1655611]
+- [net] net/smc: abort CLC connection in smc_release (Philipp Rudo) [1655611]
+- [net] net/smc: unregister rkeys of unused buffer (Philipp Rudo) [1655611]
+- [net] net/smc: add infrastructure to send delete rkey messages (Philipp Rudo) [1655611]
+- [net] net/smc: avoid a delay by waiting for nothing (Philipp Rudo) [1655611]
+- [net] net/smc: cleanup listen worker mutex unlocking (Philipp Rudo) [1655611]
+- [net] net/smc: short wait for late smc_clc_wait_msg (Philipp Rudo) [1655611]
+- [net] net/smc: no link delete for a never active link (Philipp Rudo) [1655611]
+- [net] net/smc: allow fallback after clc timeouts (Philipp Rudo) [1655611]
+- [net] net/smc: remove sock_error detour in clc-functions (Philipp Rudo) [1655611]
+- [net] net/smc: make smc_lgr_free() static (Philipp Rudo) [1655611]
+- [net] net/smc: cleanup tcp_listen_worker initialization (Philipp Rudo) [1655611]
+- [net] net/smc: fix smc_buf_unuse to use the lgr pointer (Philipp Rudo) [1655611]
+- [net] Revert "net: simplify sock_poll_wait" (Philipp Rudo) [1655611]
+- [powerpc] powerpc/pseries: Fix unitialized timer reset on migration (Steve Best) [1655053]
+- [powerpc] powerpc/pseries/mobility: Extend start/stop topology update scope (Steve Best) [1655053]
+- [x86] Mark Intel Cascade Lake supported (Steve Best) [1641425]
+
+* Wed Dec 05 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-50.el8]
+- [x86] KVM: VMX: re-add ple_gap module parameter (Gary Hook) [1652953]
+- [netdrv] tg3: Add PHY reset for 5717/5719/5720 in change ring and flow control paths (Steve Best) [1655515]
+- [pci] PCI/ASPM: Do not initialize link state when aspm_disabled is set (Myron Stowe) [1655246]
+- [pci] PCI/ACPI: Allow _OSC presence to be optional for PCI (Myron Stowe) [1655246]
+- [pci] PCI/ACPI: Correct error message for ASPM disabling (Myron Stowe) [1655246]
+- [pci] PCI/ASPM: Fix link_state teardown on device removal (Myron Stowe) [1655246]
+- [netdrv] ice: Change req_speeds to be u16 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix the bytecount sent to netdev_tx_sent_queue (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix tx_timeout in PF driver (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix napi delete calls for remove (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix typo in error message (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix flags for port VLAN (Jonathan Toppins) [1644403]
+- [netdrv] ice: Remove duplicate addition of VLANs in replay path (Jonathan Toppins) [1644403]
+- [netdrv] ice: Free VSI contexts during for unload (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix dead device link issue with flow control (Jonathan Toppins) [1644403]
+- [netdrv] ice: Check for reset in progress during remove (Jonathan Toppins) [1644403]
+- [netdrv] ice: Set carrier state and start/stop queues in rebuild (Jonathan Toppins) [1644403]
+- [netdrv] virtchnl: Added support to exchange additional speed values (Jonathan Toppins) [1644403]
+- [netdrv] ice: Poll for link status change (Jonathan Toppins) [1644403]
+- [netdrv] ice: Allocate VF interrupts and set queue map (Jonathan Toppins) [1644403]
+- [netdrv] ice: Introduce ice_dev_onetime_setup (Jonathan Toppins) [1644403]
+- [netdrv] ice: Use capability count returned by the firmware (Jonathan Toppins) [1644403]
+- [netdrv] ice: Update expected FW version (Jonathan Toppins) [1644403]
+- [netdrv] ice: Change device ID define names to align with branding string (Jonathan Toppins) [1644403]
+- [netdrv] ice: Make ice_msix_clean_rings static (Jonathan Toppins) [1644403]
+- [netdrv] ice: Update version string (Jonathan Toppins) [1644403]
+- [netdrv] ice: Use the right function to enable/disable VSI (Jonathan Toppins) [1644403]
+- [netdrv] ice: Add more flexibility on how we assign an ITR index (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix potential null pointer issues (Jonathan Toppins) [1644403]
+- [netdrv] ice: Add code to go from ICE_FWD_TO_VSI_LIST to ICE_FWD_TO_VSI (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix forward to queue group logic (Jonathan Toppins) [1644403]
+- [netdrv] ice: Extend malicious operations detection logic (Jonathan Toppins) [1644403]
+- [netdrv] ice: Notify VF of link status change (Jonathan Toppins) [1644403]
+- [netdrv] ice: Implement virtchnl commands for AVF support (Jonathan Toppins) [1644403]
+- [netdrv] ice: Add handlers for VF netdevice operations (Jonathan Toppins) [1644403]
+- [netdrv] ice: Add support for VF reset events (Jonathan Toppins) [1644403]
+- [netdrv] ice: Update VSI and queue management code to handle VF VSI (Jonathan Toppins) [1644403]
+- [netdrv] ice: Add handler to configure SR-IOV (Jonathan Toppins) [1644403]
+- [netdrv] ice: Add support to detect SR-IOV capability and mailbox queues (Jonathan Toppins) [1644403]
+- [netdrv] ice: Fix error on driver remove (Jonathan Toppins) [1644403]
+- [netdrv] ice: Add support for dynamic interrupt moderation (Jonathan Toppins) [1644403]
+- [netdrv] ice: Align ice_reset_req enum values to hardware reset values (Jonathan Toppins) [1644403]
+- [netdrv] ice: Implement ethtool hook for RSS switch (Jonathan Toppins) [1644403]
+- [netdrv] ice: Split irq_tracker into sw_irq_tracker and hw_irq_tracker (Jonathan Toppins) [1644403]
+- [netdrv] ice: Check for actual link state of port after reset (Jonathan Toppins) [1644403]
+- [netdrv] ice: Implement VSI replay framework (Jonathan Toppins) [1644403]
+- [netdrv] ice: Expand use of VSI handles part 2/2 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Expand use of VSI handles part 1/2 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Change pf state behavior to protect reset path (Jonathan Toppins) [1644403]
+- [netdrv] ice: Move common functions out of ice_main.c part 7/7 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Move common functions out of ice_main.c part 6/7 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Move common functions out of ice_main.c part 5/7 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Move common functions out of ice_main.c part 4/7 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Move common functions out of ice_main.c part 3/7 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Move common functions out of ice_main.c part 2/7 (Jonathan Toppins) [1644403]
+- [netdrv] ice: Move common functions out of ice_main.c part 1/7 (Jonathan Toppins) [1644403]
+- [netdrv] ice: fix changing of ring descriptor size (ethtool -G) (Jonathan Toppins) [1644403]
+- [netdrv] ice: Update to capabilities admin queue command (Jonathan Toppins) [1644403]
+- [netdrv] ice: Query the Tx scheduler node before adding it (Jonathan Toppins) [1644403]
+- [netdrv] ice: Update comment for ice_fltr_mgmt_list_entry (Jonathan Toppins) [1644403]
+- [netdrv] ice: update fw version check logic (Jonathan Toppins) [1644403]
+- [netdrv] ice: update branding strings and supported device ids (Jonathan Toppins) [1644403]
+- [netdrv] ice: replace unnecessary memcpy with direct assignment (Jonathan Toppins) [1644403]
+- [netdrv] ice: use [sr]q.count when checking if queue is initialized (Jonathan Toppins) [1644403]
+- [netdrv] ice: remove ndo_poll_controller (Jonathan Toppins) [1644403]
+- [fs] fanotify: fix handling of events on child sub-directory (Miklos Szeredi) [1652432]
+- [fs] fsnotify: generalize handling of extra event flags (Miklos Szeredi) [1652432]
+- [netdrv] net: hns3: add common validation in hclge_dcb (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: fix for multiple unmapping DMA problem (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: rename hns_nic_dma_unmap (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: add handling for big TX fragment (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: move DMA map into hns3_fill_desc (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: remove hns3_fill_desc_tso (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Resume promisc mode and vlan filter status after loopback test (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Resume promisc mode and vlan filter status after reset (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Enable promisc mode when mac vlan table is full (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for rx vlan id handle to support Rev 0x21 hardware (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Add egress/ingress vlan filter for revision 0x21 (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Optimize for unicast mac vlan table (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix loss of coal configuration while doing reset (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Modify hns3_get_max_available_channels (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Change return type of hclge_tm_schd_info_update() (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for netdev not up problem when setting mtu (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for packet buffer setting bug (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Set extra mac address of pause param for HW (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix speed/duplex information loss problem when executing ethtool ethx cmd of VF (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Add get_media_type ops support for VF (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Remove print messages for error packet (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Add nic state check before calling netif_tx_wake_queue (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Add handle for default case (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Unify the prefix of vf functions (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix tqp array traversal condition for vf (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix ets validate issue (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix parameter type for q_id in hclge_tm_q_to_qs_map_cfg() (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix client initialize state issue when roce client initialize failed (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Clear client pointer when initialize client failed or unintialize finished (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix cmdq registers initialization issue for vf (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for setting speed for phy failed problem (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Check hdev state when getting link status (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Set STATE_DOWN bit of hdev state when stopping net (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Remove packet statistics of public (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Remove tx budget to clean more TX descriptors in a napi (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Refine hns3_get_link_ksettings() (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Remove redundant codes of query advertised flow control abilitiy (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Change the dst mac addr of loopback packet (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Only update mac configuation when necessary (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Preserve vlan 0 in hardware table (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix ping exited problem when doing lp selftest (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for loopback selftest failed problem (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix error of checking used vlan id (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for multicast failure (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for vf vlan delete failed problem (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: modify variable type in hns3_nic_reuse_page (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Add vlan filter setting by ethtool command -K (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Set tx ring' tc info when netdev is up (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix desc num set to default when setting channel (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for information of phydev lost problem when down/up (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Add support for serdes loopback selftest (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Refine the MSIX allocation for PF (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix MSIX allocation issue for VF (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: fix return value error while hclge_cmd_csq_clean failed (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Modify inconsistent bit mask macros (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for using wrong mask and shift in hclge_get_ring_chain_from_mbx (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Correct reset event status register (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Prevent to request reset frequently (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Prevent sending command during global or core reset (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Add configure for mac minimal frame size (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for l4 checksum offload bug (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix for waterline not setting correctly (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: Fix tc setup when netdev is first up (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: modify hnae_ to hnae3_ (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: simplify hclge_cmd_csq_clean (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: remove some redundant assignments (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: remove back in struct hclge_hw (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: add unlikely for error check (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: add l4_type check for both ipv4 and ipv6 (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: add vector status check before free vector (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: rename the interface for init_client_instance and uninit_client_instance (Xiaojun Tan) [1640945]
+- [netdrv] net: hns3: remove hclge_get_vector_index from hclge_bind_ring_with_vector (Xiaojun Tan) [1640945]
+- [kernel] redhat: Enable -Werror for architectures (Laura Abbott) [1582754]
+- [drm] drm/atomic_helper: Remove dangling variable (Laura Abbott) [1582754]
+- [s390] s390/tools: fix gcc 8 stringop-truncation warnings (Laura Abbott) [1582754]
+- [tty] kgdboc: Fix restrict error (Laura Abbott) [1582754]
+- [misc] misc: kgdbts: Fix restrict error (Laura Abbott) [1582754]
+- [scsi] scsi: ibmvscsis: Fix a stringop-overflow warning (Laura Abbott) [1582754]
+- [s390] s390/extmem: fix gcc 8 stringop-overflow warning (Laura Abbott) [1582754]
+- [s390] s390/perf: fix gcc 8 array-bounds warning (Laura Abbott) [1582754]
+- [kernel] kdb: Use strscpy with destination buffer size (Laura Abbott) [1582754]
+- [fs] configfs: replace strncpy with memcpy (Laura Abbott) [1582754]
+- [fs] kernfs: Replace strncpy with memcpy (Laura Abbott) [1582754]
+- [kernel] disable stringop truncation warnings for now (Laura Abbott) [1582754]
+- [sound] ALSA: intel_hdmi: Use strlcpy() instead of strncpy() (Laura Abbott) [1582754]
+- [sound] ALSA: trident: Suppress gcc string warning (Laura Abbott) [1582754]
+- [lib] kobject: Replace strncpy with memcpy (Laura Abbott) [1582754]
+- [tty] TTY: isdn: Replace strncpy with memcpy (Laura Abbott) [1582754]
+- [target] scsi: target/iscsi: Make iscsit_ta_authentication() respect the output buffer size (Laura Abbott) [1582754]
+- [fs] fuse: don't need GETATTR after every READ (Miklos Szeredi) [1650538]
+- [fs] fuse: allow fine grained attr cache invaldation (Miklos Szeredi) [1650538]
+
+* Tue Dec 04 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-49.el8]
+- [mm] mm: mremap: properly flush TLB before releasing the page (Rafael Aquini) [1645122] {CVE-2018-18281}
+- [x86] x86/spec_ctrl: Change default Skylake Spectre v2 mitigation to retpoline (Waiman Long) [1651806]
+- [fs] gfs2: write revokes should traverse sd_ail1_list in reverse (Andreas Grunbacher) [1652763]
+- [fs] gfs2: Fix marking bitmaps non-full (Andreas Grunbacher) [1652762]
+- [fs] GFS2: Flush the GFS2 delete workqueue before stopping the kernel threads (Andreas Grunbacher) [1652761]
+- [fs] gfs2: Don't leave s_fs_info pointing to freed memory in init_sbd (Andreas Grunbacher) [1652759]
+- [fs] gfs2: Use fs_* functions instead of pr_* function where we can (Andreas Grunbacher) [1652757]
+- [fs] gfs2: slow the deluge of io error messages (Andreas Grunbacher) [1652757]
+- [fs] gfs2_meta: ->mount() can get NULL dev_name (Andreas Grunbacher) [1652754]
+- [powerpc] powerpc/vdso: Correct call frame information (Steve Best) [1651281]
+- [i2c] i2c: i801: Add support for Intel Ice Lake (David Arcari) [1637435]
+- [usb] xhci: Add quirk to workaround the errata seen on Cavium Thunder-X2 Soc (Robert Richter) [1649829]
+- [x86] x86: numa_emulation: fix uniform-split numa emulation (Rafael Aquini) [1620341]
+- [x86] x86: numa_emulation: introduce uniform split capability (Rafael Aquini) [1620341]
+- [kernel] perf/hw_breakpoint: Modify breakpoint even if the new attr has disabled set (Mark Salter) [1643174]
+- [x86] KVM: vmx: hyper-v: don't pass EPT configuration info to vmx_hv_remote_flush_tlb() (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: support CONFIG_KVM_AMD=y with CONFIG_CRYPTO_DEV_CCP_DD=m (Paolo Bonzini) [1636610]
+- [x86] kvm: nVMX: fix entry with pending interrupt if APICv is enabled (Paolo Bonzini) [1636610]
+- [x86] KVM: VMX: hide flexpriority from guest when disabled at the module level (Paolo Bonzini) [1636610]
+- [x86] KVM: VMX: check for existence of secondary exec controls before accessing (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: fix L1TF's MMIO GFN calculation (Paolo Bonzini) [1636610]
+- [tools] tools/kvm_stat: cut down decimal places in update interval dialog (Paolo Bonzini) [1636610]
+- [x86] KVM: nVMX: Fix emulation of VM_ENTRY_LOAD_BNDCFGS (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Do not use kvm_x86_ops->mpx_supported() directly (Paolo Bonzini) [1636610]
+- [x86] KVM: nVMX: Do not expose MPX VMX controls when guest MPX disabled (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: never trap MSR_KERNEL_GS_BASE (Paolo Bonzini) [1636610]
+- [x86] KVM: LAPIC: Fix pv ipis out-of-bounds access (Paolo Bonzini) [1636610]
+- [x86] KVM: nVMX: Fix loss of pending IRQ/NMI before entering L2 (Paolo Bonzini) [1636610]
+- [tools] tools/kvm_stat: re-animate display of dead guests (Paolo Bonzini) [1636610]
+- [tools] tools/kvm_stat: indicate dead guests as such (Paolo Bonzini) [1636610]
+- [tools] tools/kvm_stat: handle guest removals more gracefully (Paolo Bonzini) [1636610]
+- [tools] tools/kvm_stat: don't reset stats when setting PID filter for debugfs (Paolo Bonzini) [1636610]
+- [tools] tools/kvm_stat: fix updates for dead guests (Paolo Bonzini) [1636610]
+- [tools] tools/kvm_stat: fix handling of invalid paths in debugfs provider (Paolo Bonzini) [1636610]
+- [tools] tools/kvm_stat: fix python3 issues (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Unexport x86_emulate_instruction() (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Rename emulate_instruction() to kvm_emulate_instruction() (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Do not re-{try, execute} after failed emulation in L2 (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Default to not allowing emulation retry in kvm_mmu_page_fault (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Merge EMULTYPE_RETRY and EMULTYPE_ALLOW_REEXECUTE (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Invert emulation re-execute behavior to make it opt-in (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: SVM: Set EMULTYPE_NO_REEXECUTE for RSM emulation (Paolo Bonzini) [1636610]
+- [x86] KVM: VMX: Do not allow reexecute_instruction() when skipping MMIO instr (Paolo Bonzini) [1636610]
+- [x86] KVM: SVM: remove unused variable dst_vaddr_end (Paolo Bonzini) [1636610]
+- [x86] KVM: nVMX: avoid redundant double assignment of nested_run_pending (Paolo Bonzini) [1636610]
+- [x86] KVM: nVMX: Fix bad cleanup on error of get/set nested state IOCTLs (Paolo Bonzini) [1636610]
+- [tools] kvm: selftests: Add platform_info_test (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Control guest reads of MSR_PLATFORM_INFO (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: Turbo bits in MSR_PLATFORM_INFO (Paolo Bonzini) [1636610]
+- [x86] nVMX x86: Check VPID value on vmentry of L2 guests (Paolo Bonzini) [1636610]
+- [x86] nVMX x86: check posted-interrupt descriptor addresss on vmentry of L2 (Paolo Bonzini) [1636610]
+- [x86] KVM: nVMX: Wake blocked vCPU in guest-mode if pending interrupt in virtual APICv (Paolo Bonzini) [1636610]
+- [x86] KVM: VMX: check nested state and CR4.VMXE against SMM (Paolo Bonzini) [1636610]
+- [x86] kvm: x86: make kvm_{load|put}_guest_fpu() static (Paolo Bonzini) [1636610]
+- [x86] x86/hyper-v: rename ipi_arg_{ex, non_ex} structures (Paolo Bonzini) [1636610]
+- [x86] KVM: VMX: use preemption timer to force immediate VMExit (Paolo Bonzini) [1636610]
+- [x86] KVM: VMX: modify preemption timer bit only when arming timer (Paolo Bonzini) [1636610]
+- [x86] KVM: VMX: immediately mark preemption timer expired only for zero value (Paolo Bonzini) [1636610]
+- [x86] KVM: SVM: Switch to bitmap_zalloc() (Paolo Bonzini) [1636610]
+- [lib] bitmap: Add bitmap_alloc(), bitmap_zalloc() and bitmap_free() (Paolo Bonzini) [1636610]
+- [x86] KVM/MMU: Fix comment in walk_shadow_page_lockless_end() (Paolo Bonzini) [1636610]
+- [tools] kvm: selftests: use -pthread instead of -lpthread (Paolo Bonzini) [1636610]
+- [tools] kvm: selftest: add dirty logging test (Paolo Bonzini) [1636610]
+- [tools] kvm: selftest: pass in extra memory when create vm (Paolo Bonzini) [1636610]
+- [tools] kvm: selftest: include the tools headers (Paolo Bonzini) [1636610]
+- [tools] kvm: selftest: unify the guest port macros (Paolo Bonzini) [1636610]
+- [x86] KVM: x86: don't reset root in kvm_mmu_setup() (Paolo Bonzini) [1636610]
+- [x86] kvm: mmu: Don't read PDPTEs when paging is not enabled (Paolo Bonzini) [1636610]
+- [x86] x86/kvm/lapic: always disable MMIO interface in x2APIC mode (Paolo Bonzini) [1636610]
+- [s390] KVM: s390: Make huge pages unavailable in ucontrol VMs (Paolo Bonzini) [1636610]
+- [s390] s390/mm: Check for valid vma before zapping in gmap_discard (Paolo Bonzini) [1636610]
+- [tools] selftests: add headers_install to lib.mk (Paolo Bonzini) [1636610]
+- [tools] selftests: kselftest: Remove outdated comment (Paolo Bonzini) [1636610]
+- [tools] selftests: android: move config up a level (Paolo Bonzini) [1636610]
+- [md] md: Avoid namespace collision with bitmap API (Paolo Bonzini) [1636610]
+
+* Fri Nov 30 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-48.el8]
+- [cpufreq] cpufreq / CPPC: Add cpuinfo_cur_freq support for CPPC (Prarit Bhargava) [1654361]
+- [netdrv] nfp: flower: add ipv6 set flow label and hop limit offload (Pablo Cascon) [1651639]
+- [netdrv] nfp: flower: add ipv4 set ttl and tos offload (Pablo Cascon) [1651639]
+- [netdrv] ibmvnic: Update driver queues after change in ring size support (Steve Best) [1651947]
+- [netdrv] ibmvnic: Fix RX queue buffer cleanup (Steve Best) [1651947]
+- [netdrv] net/ibmnvic: Fix deadlock problem in reset (Steve Best) [1651947]
+- [netdrv] ibmvnic: fix accelerated VLAN handling (Steve Best) [1651947]
+- [netdrv] ibmvnic: Add ethtool private flag for driver-defined queue limits (Steve Best) [1651947]
+- [netdrv] ibmvnic: Introduce driver limits for ring sizes (Steve Best) [1651947]
+- [netdrv] ibmvnic: Increase maximum queue size limit (Steve Best) [1651947]
+- [netdrv] ibmvnic: remove ndo_poll_controller (Steve Best) [1651947]
+- [powerpc] powerpc/powernv/npu: Remove atsd_threshold debugfs setting (Steve Best) [1653661]
+- [powerpc] powerpc/powernv/npu: Use size-based ATSD invalidates (Steve Best) [1653661]
+- [powerpc] powerpc/powernv/npu: Reduce eieio usage when issuing ATSD invalidates (Steve Best) [1653661]
+- [powerpc] powerpc/powernv/npu: Add a debugfs setting to change ATSD threshold (Steve Best) [1653661]
+- [net] libceph: fall back to sendmsg for slab pages (Ilya Dryomov) [1653395]
+- [s390] s390/qeth: utilize virtual MAC for Layer2 OSD devices (Philipp Rudo) [1653246]
+- [fs] vfs: fix FIGETBSZ ioctl on an overlayfs file (Miklos Szeredi) [1651362]
+- [fs] ovl: fix decode of dir file handle with multi lower layers (Miklos Szeredi) [1651362]
+- [fs] ovl: fix missing override creds in link of a metacopy upper (Miklos Szeredi) [1651362]
+- [fs] ovl: automatically enable redirect_dir on metacopy=on (Miklos Szeredi) [1651362]
+- [fs] ovl: check whiteout in ovl_create_over_whiteout() (Miklos Szeredi) [1651362]
+- [fs] ovl: fix recursive oi->lock in ovl_link() (Miklos Szeredi) [1651362]
+- [fs] ovl: fix error handling in ovl_verify_set_fh() (Miklos Szeredi) [1651362]
+- [mm] mm, memory_hotplug: check zone_movable in has_unmovable_pages (Baoquan He) [1643839]
+- [netdrv] hv_netvsc: fix vf serial matching with pci slot info (Vitaly Kuznetsov) [1637519]
+- [netdrv] hv_netvsc: remove ndo_poll_controller (Vitaly Kuznetsov) [1637519]
+- [netdrv] hv_netvsc: pair VF based on serial number (Vitaly Kuznetsov) [1637519]
+- [netdrv] hv_netvsc: fix schedule in RCU context (Vitaly Kuznetsov) [1637519]
+- [pci] PCI: hv: Fix return value check in hv_pci_assign_slots() (Vitaly Kuznetsov) [1637519]
+- [pci] PCI: hv: support reporting serial number as slot information (Vitaly Kuznetsov) [1637519]
+- [pci] PCI: hv: Replace GFP_ATOMIC with GFP_KERNEL in new_pcichild_device() (Vitaly Kuznetsov) [1637519]
+- [char] ipmi: Fix timer race with module unload (Robert Richter) [1649812]
+- [arm64] arm64: hugetlb: Avoid unnecessary clearing in huge_ptep_set_access_flags (Christoph von Recklinghausen) [1635192]
+- [arm64] arm64: hugetlb: Fix handling of young ptes (Christoph von Recklinghausen) [1635192]
+- [mm] mm: Preserve _PAGE_DEVMAP across mprotect() calls (Jeff Moyer) [1647647]
+
+* Thu Nov 29 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-47.el8]
+- [crypto] crypto: vmx - Fix sleep-in-atomic bugs (Steve Best) [1653662]
+- [netdrv] net: ena: update driver version from 2.0.1 to 2.0.2 (John Linville) [1634044]
+- [netdrv] net: ena: fix crash during ena_remove() (John Linville) [1634044]
+- [netdrv] net: ena: fix crash during failed resume from hibernation (John Linville) [1634044]
+- [netdrv] net: ena: enable CONFIG_ENA_ETHERNET for aarch64 (John Linville) [1634044]
+- [netdrv] net: ena: enable Low Latency Queues (John Linville) [1634044]
+- [netdrv] net: ena: Fix Kconfig dependency on X86 (John Linville) [1634044]
+- [netdrv] net: ena: fix indentations in ena_defs for better readability (John Linville) [1634044]
+- [netdrv] net: ena: update driver version to 2.0.1 (John Linville) [1634044]
+- [netdrv] net: ena: remove redundant parameter in ena_com_admin_init() (John Linville) [1634044]
+- [netdrv] net: ena: change rx copybreak default to reduce kernel memory pressure (John Linville) [1634044]
+- [netdrv] net: ena: limit refill Rx threshold to 256 to avoid latency issues (John Linville) [1634044]
+- [netdrv] net: ena: explicit casting and initialization, and clearer error handling (John Linville) [1634044]
+- [netdrv] net: ena: use CSUM_CHECKED device indication to report skb's checksum status (John Linville) [1634044]
+- [netdrv] net: ena: add functions for handling Low Latency Queues in ena_netdev (John Linville) [1634044]
+- [netdrv] net: ena: add functions for handling Low Latency Queues in ena_com (John Linville) [1634044]
+- [netdrv] net: ena: introduce Low Latency Queues data structures according to ENA spec (John Linville) [1634044]
+- [netdrv] net: ena: complete host info to match latest ENA spec (John Linville) [1634044]
+- [netdrv] net: ena: minor performance improvement (John Linville) [1634044]
+- [netdrv] net: ena: fix auto casting to boolean (John Linville) [1634044]
+- [netdrv] net: ena: fix NULL dereference due to untimely napi initialization (John Linville) [1634044]
+- [netdrv] net: ena: fix rare bug when failed restart/resume is followed by driver removal (John Linville) [1634044]
+- [netdrv] net: ena: fix warning in rmmod caused by double iounmap (John Linville) [1634044]
+- [netdrv] net: ena: remove ndo_poll_controller (John Linville) [1634044]
+- [netdrv] net: ena: fix incorrect usage of memory barriers (John Linville) [1634044]
+- [netdrv] net: ena: fix missing calls to READ_ONCE (John Linville) [1634044]
+- [netdrv] net: ena: fix missing lock during device destruction (John Linville) [1634044]
+- [netdrv] net: ena: fix potential double ena_destroy_device() (John Linville) [1634044]
+- [netdrv] net: ena: fix device destruction to gracefully free resources (John Linville) [1634044]
+- [netdrv] net: ena: fix driver when PAGE_SIZE == 64kB (John Linville) [1634044]
+- [netdrv] net: ena: fix surprise unplug NULL dereference kernel crash (John Linville) [1634044]
+- [s390] s390/zcrypt: reinit ap queue state machine during device probe (Philipp Rudo) [1653668]
+- [s390] s390/kdump: Make elfcorehdr size calculation ABI compliant (Philipp Rudo) [1653245]
+- [s390] s390/kdump: Fix elfcorehdr size calculation (Philipp Rudo) [1653245]
+- [block] block: fix 32 bit overflow in __blkdev_issue_discard() (Ming Lei) [1638826]
+- [ata] libata: blacklist SAMSUNG MZ7TD256HAFV-000L9 SSD (Ming Lei) [1638826]
+- [block] block: copy ioprio in __bio_clone_fast() and bounce (Ming Lei) [1638826]
+- [trace] kyber: fix wrong strlcpy() size in trace_kyber_latency() (Ming Lei) [1638826]
+- [block] floppy: fix race condition in __floppy_read_block_0() (Ming Lei) [1638826]
+- [block] block: make blk_try_req_merge() static (Ming Lei) [1638826]
+- [block] block: remove dead queue members (Ming Lei) [1638826]
+- [block] block: clean up dead code that is now redundant (Ming Lei) [1638826]
+- [nvme] nvme: fix boot hang with only being able to get one IRQ vector (Ming Lei) [1638826]
+- [block] ide: don't clear special on ide_queue_rq() entry (Ming Lei) [1638826]
+- [block] null_blk: remove unused nullb device (Ming Lei) [1638826]
+- [block] ide: don't use req->special (Ming Lei) [1638826]
+- [block] pd: replace ->special use with private data in the request (Ming Lei) [1638826]
+- [block] aoe: replace ->special use with private data in the request (Ming Lei) [1638826]
+- [block] skd_main: don't use req->special (Ming Lei) [1638826]
+- [block] nullb: remove leftover legacy request code (Ming Lei) [1638826]
+- [scsi] fnic: fix fnic_scsi_host_{start,end}_tag (Ming Lei) [1638826]
+- [block] block: remove set but not used variable 'et' (Ming Lei) [1638826]
+- [block] block: remove the BLKPREP_* values. (Ming Lei) [1638826]
+- [scsi] scsi: return blk_status_t from device handler ->prep_fn (Ming Lei) [1638826]
+- [scsi] scsi: return blk_status_t from scsi_init_io and ->init_command (Ming Lei) [1638826]
+- [scsi] scsi: clean up error handling in scsi_init_io (Ming Lei) [1638826]
+- [scsi] scsi: push blk_status_t up into scsi_setup_{fs,scsi}_cmnd (Ming Lei) [1638826]
+- [scsi] scsi: simplify scsi_prep_state_check (Ming Lei) [1638826]
+- [block] ide: cleanup ->prep_rq calling convention (Ming Lei) [1638826]
+- [block] block: remove req->timeout_list (Ming Lei) [1638826]
+- [block] blk-mq: provide a helper to check if a queue is busy (Ming Lei) [1638826]
+- [block] blk-mq-tag: change busy_iter_fn to return whether to continue or not (Ming Lei) [1638826]
+- [block] ms_block: remove unused pointer 'set' (Ming Lei) [1638826]
+- [block] sunvdc: fix compiler warning (Ming Lei) [1638826]
+- [nvme] nvme: add separate poll queue map (Ming Lei) [1638826]
+- [block] block: add REQ_HIPRI and inherit it from IOCB_HIPRI (Ming Lei) [1638826]
+- [nvme] nvme: utilize two queue maps, one for reads and one for writes (Ming Lei) [1638826]
+- [block] blk-mq: initial support for multiple queue maps (Ming Lei) [1638826]
+- [block] blk-mq: improve plug list sorting (Ming Lei) [1638826]
+- [block] blk-mq: cleanup and improve list insertion (Ming Lei) [1638826]
+- [block] blk-mq: cache request hardware queue mapping (Ming Lei) [1638826]
+- [block] blk-mq: separate number of hardware queues from nr_cpu_ids (Ming Lei) [1638826]
+- [block] blk-mq: support multiple hctx maps (Ming Lei) [1638826]
+- [block] blk-mq: add 'type' attribute to the sysfs hctx directory (Ming Lei) [1638826]
+- [block] blk-mq: allow software queue to map to multiple hardware queues (Ming Lei) [1638826]
+- [block] blk-mq: pass in request/bio flags to queue mapping (Ming Lei) [1638826]
+- [block] blk-mq: provide dummy blk_mq_map_queue_type() helper (Ming Lei) [1638826]
+- [block] blk-mq: abstract out queue map (Ming Lei) [1638826]
+- [block] blk-mq: kill q->mq_map (Ming Lei) [1638826]
+- [kernel] genirq/affinity: Add support for allocating interrupt sets (Ming Lei) [1638826]
+- [kernel] genirq/affinity: Pass first vector to __irq_build_affinity_masks() (Ming Lei) [1638826]
+- [kernel] genirq/affinity: Move two stage affinity spreading into a helper function (Ming Lei) [1638826]
+- [kernel] genirq/affinity: Spread IRQs to all available NUMA nodes (Ming Lei) [1638826]
+- [block] block: kill request ->cpu member (Ming Lei) [1638826]
+- [block] block: get rid of q->softirq_done_fn() (Ming Lei) [1638826]
+- [block] block: get rid of blk_queued_rq() (Ming Lei) [1638826]
+- [block] blk-merge: kill dead queue lock held check (Ming Lei) [1638826]
+- [block] block: remove req_no_special_merge() from merging code (Ming Lei) [1638826]
+- [block] block: kill request slab cache (Ming Lei) [1638826]
+- [block] block: remove request_list code (Ming Lei) [1638826]
+- [block] bsg: move bsg-lib parts outside of request queue (Ming Lei) [1638826]
+- [block] block: kill legacy parts of timeout handling (Ming Lei) [1638826]
+- [block] block: remove __blk_put_request() (Ming Lei) [1638826]
+- [block] block: get rid of MQ scheduler ops union (Ming Lei) [1638826]
+- [block] block: remove dead elevator code (Ming Lei) [1638826]
+- [block] block: remove legacy IO schedulers (Ming Lei) [1638826]
+- [block] block: cleanup kick/queued handling (Ming Lei) [1638826]
+- [block] block: remove non mq parts from the flush code (Ming Lei) [1638826]
+- [block] block: remove legacy rq tagging (Ming Lei) [1638826]
+- [block] blk-cgroup: remove legacy queue bypassing (Ming Lei) [1638826]
+- [block] blk-wbt: kill check for legacy queue type (Ming Lei) [1638826]
+- [block] block: remove blk_complete_request() (Ming Lei) [1638826]
+- [block] bsg: convert to use blk-mq (Ming Lei) [1638826]
+- [block] bsg: provide bsg_remove_queue() helper (Ming Lei) [1638826]
+- [block] bsg: pass in desired timeout handler (Ming Lei) [1638826]
+- [s390] dasd: remove dead code (Ming Lei) [1638826]
+- [block] block: remove q->lld_busy_fn() (Ming Lei) [1638826]
+- [scsi] scsi: kill off the legacy IO path (Ming Lei) [1638826]
+- [scsi] scsi: provide mq_ops->busy() hook (Ming Lei) [1638826]
+- [block] blk-mq: provide mq_ops->busy() hook (Ming Lei) [1638826]
+- [block] blk-mq: remove legacy check in queue blk_freeze_queue() (Ming Lei) [1638826]
+- [block] blk-mq: remove the request_list usage (Ming Lei) [1638826]
+- [block] ide: convert to blk-mq (Ming Lei) [1638826]
+- [block] mspro_block: convert to blk-mq (Ming Lei) [1638826]
+- [block] ms_block: convert to blk-mq (Ming Lei) [1638826]
+- [block] sunvdc: convert to blk-mq (Ming Lei) [1638826]
+- [block] null_blk: Add conventional zone configuration for zoned support (Ming Lei) [1638826]
+- [ata] libata: Apply NOLPM quirk for SAMSUNG MZ7TD256HAFV-000L9 (Ming Lei) [1638826]
+- [block] block, bfq: fix asymmetric scenarios detection (Ming Lei) [1638826]
+- [cdrom] gdrom: fix mistake in assignment of error (Ming Lei) [1638826]
+- [block] blk-mq: place trace_block_getrq() in correct place (Ming Lei) [1638826]
+- [block] block: Introduce blk_revalidate_disk_zones() (Ming Lei) [1638826]
+- [block] block: add a report_zones method (Ming Lei) [1638826]
+- [block] block: Expose queue nr_zones in sysfs (Ming Lei) [1638826]
+- [block] block: Improve zone reset execution (Ming Lei) [1638826]
+- [block] block: Introduce BLKGETNRZONES ioctl (Ming Lei) [1638826]
+- [block] block: Introduce BLKGETZONESZ ioctl (Ming Lei) [1638826]
+- [block] block: Limit allocation of zone descriptors for report zones (Ming Lei) [1638826]
+- [block] block: Introduce blkdev_nr_zones() helper (Ming Lei) [1638826]
+- [scsi] scsi: sd_zbc: Fix sd_zbc_check_zones() error checks (Ming Lei) [1638826]
+- [scsi] scsi: sd_zbc: Reduce boot device scan and revalidate time (Ming Lei) [1638826]
+- [scsi] scsi: sd_zbc: Rearrange code (Ming Lei) [1638826]
+- [scsi] scsi: sd_zbc: Remove an assignment from sd_zbc_setup_report_cmnd() (Ming Lei) [1638826]
+- [scsi] scsi: sd: don't crash the host on invalid commands (Ming Lei) [1638826]
+- [pci] PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice (Ming Lei) [1638826]
+- [fs] f2fs: remove request_list check in is_idle() (Ming Lei) [1638826]
+- [scsi] scsi: osd: initiator should use mq variant of request ending (Ming Lei) [1638826]
+- [scsi] scsi: fnic: replace gross legacy tag hack with blk-mq hack (Ming Lei) [1638826]
+- [infiniband] ib_srp: Remove WARN_ON in srp_terminate_io() (Ming Lei) [1638826]
+- [scsi] scsi: ufs: Disable blk-mq for now (Ming Lei) [1638826]
+- [block] sx8: convert to blk-mq (Ming Lei) [1638826]
+- [block] z2ram: convert to blk-mq (Ming Lei) [1638826]
+- [cdrom] gdrom: convert to blk-mq (Ming Lei) [1638826]
+- [block] floppy: convert to blk-mq (Ming Lei) [1638826]
+- [block] ataflop: convert to blk-mq (Ming Lei) [1638826]
+- [block] ataflop: fix error handling during setup (Ming Lei) [1638826]
+- [block] ataflop: fold headers into C file (Ming Lei) [1638826]
+- [block] amiflop: convert to blk-mq (Ming Lei) [1638826]
+- [block] amiflop: clean up on errors during setup (Ming Lei) [1638826]
+- [block] amiflop: fold headers into C file (Ming Lei) [1638826]
+- [block] swim3: convert to blk-mq (Ming Lei) [1638826]
+- [block] swim3: add real error handling in setup (Ming Lei) [1638826]
+- [block] swim: convert to blk-mq (Ming Lei) [1638826]
+- [block] swim: fix cleanup on setup error (Ming Lei) [1638826]
+- [mtd] mtd_blkdevs: convert to blk-mq (Ming Lei) [1638826]
+- [block] xsysace: convert to blk-mq (Ming Lei) [1638826]
+- [block] paride: convert pf to blk-mq (Ming Lei) [1638826]
+- [block] paride: convert pd to blk-mq (Ming Lei) [1638826]
+- [block] paride: convert pcd to blk-mq (Ming Lei) [1638826]
+- [block] ps3disk: convert to blk-mq (Ming Lei) [1638826]
+- [block] blk-mq: provide helper for setting up an SQ queue and tag set (Ming Lei) [1638826]
+- [block] null_blk: remove set but not used variable 'q' (Ming Lei) [1638826]
+- [cdrom] cdrom: don't attempt to fiddle with cdo->capability (Ming Lei) [1638826]
+- [block] block: remove bogus check for queue_lock assignment (Ming Lei) [1638826]
+- [block] null_blk: remove legacy IO path (Ming Lei) [1638826]
+- [block] um: Convert ubd driver to blk-mq (Ming Lei) [1638826]
+- [block] skd: fixup usage of legacy IO API (Ming Lei) [1638826]
+- [block] aoe: convert aoeblk to blk-mq (Ming Lei) [1638826]
+- [block] ide: remove redundant variables queue_run_ms and left (Ming Lei) [1638826]
+- [scsi] scsi: core: scsi_io_completion convert BUGs to WARNs (Ming Lei) [1638826]
+- [scsi] scsi: core: scsi_io_completion hints on fastpath (Ming Lei) [1638826]
+- [scsi] scsi: core: add scsi_io_completion_reprep helper (Ming Lei) [1638826]
+- [scsi] scsi: core: add scsi_io_completion_action helper (Ming Lei) [1638826]
+- [scsi] scsi: core: add scsi_io_completion_nz_result function (Ming Lei) [1638826]
+- [scsi] scsi: core: scsi_io_completion: rename variables (Ming Lei) [1638826]
+- [scsi] scsi: core: scsi_io_completion: comment on end_request return (Ming Lei) [1638826]
+- [scsi] scsi: core: use blk_mq_run_hw_queues in scsi_kick_queue (Ming Lei) [1638826]
+- [scsi] scsi: sg: remove bad blk_end_request_all() call (Ming Lei) [1638826]
+- [block] blk-mq: complete req in softirq context in case of single queue (Ming Lei) [1638826]
+- [block] block, bfq: improve asymmetric scenarios detection (Ming Lei) [1638826]
+- [block] block: remove redundant 'default n' from Kconfig-s (Ming Lei) [1638826]
+- [block] blk-mq-debugfs: Also show requests that have not yet been started (Ming Lei) [1638826]
+- [block] block: Finish renaming REQ_DISCARD into REQ_OP_DISCARD (Ming Lei) [1638826]
+- [block] kyber: fix integer overflow of latency targets on 32-bit (Ming Lei) [1638826]
+- [block] kyber: add tracepoints (Ming Lei) [1638826]
+- [block] kyber: implement improved heuristics (Ming Lei) [1638826]
+- [block] kyber: don't make domain token sbitmap larger than necessary (Ming Lei) [1638826]
+- [block] block: export blk_stat_enable_accounting() (Ming Lei) [1638826]
+- [block] block: move call of scheduler's ->completed_request() hook (Ming Lei) [1638826]
+- [block] blk-mq: Enable support for runtime power management (Ming Lei) [1638826]
+- [block] block: Make blk_get_request() block for non-PM requests while suspended (Ming Lei) [1638826]
+- [block] block: Allow unfreezing of a queue while requests are in progress (Ming Lei) [1638826]
+- [lib] percpu-refcount: Introduce percpu_ref_resurrect() (Ming Lei) [1638826]
+- [block] block: Schedule runtime resume earlier (Ming Lei) [1638826]
+- [block] block: Split blk_pm_add_request() and blk_pm_put_request() (Ming Lei) [1638826]
+- [block] block, scsi: Change the preempt-only flag into a counter (Ming Lei) [1638826]
+- [block] block: Move power management code into a new source file (Ming Lei) [1638826]
+- [block] Blk-throttle: update to use rbtree with leftmost node cached (Ming Lei) [1638826]
+- [block] block: use bio_add_page in bio_iov_iter_get_pages (Ming Lei) [1638826]
+- [block] blok, bfq: do not plug I/O if all queues are weight-raised (Ming Lei) [1638826]
+- [block] block, bfq: inject other-queue I/O into seeky idle queues on NCQ flash (Ming Lei) [1638826]
+- [block] block, bfq: correctly charge and reset entity service in all cases (Ming Lei) [1638826]
+
+* Wed Nov 28 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-46.el8]
+- [rpmspec] redhat: fix bpf_samples build (Jiri Benc) [1611579]
+- [fs] mnt: fix __detach_mounts infinite loop (Benjamin Coddington) [1628736]
+- [pci] pcie: Enable Broadom iProc PCIE and mark it is as tech preview (Mark Langsdorf) [1576958]
+- [pci] PCI/ACPI: Add iProc PCIe MCFG quirk (Mark Langsdorf) [1576958]
+- [pci] PCI: iproc: Add ACPI/ECAM support (Mark Langsdorf) [1576958]
+- [pci] PCI: iproc: Remove PAXC slot check to allow VF support (Mark Langsdorf) [1576958]
+- [pci] PCI: iproc: Reduce inbound/outbound mapping print level (Mark Langsdorf) [1576958]
+- [pci] PCI: iproc: Reject unconfigured physical functions from PAXC (Mark Langsdorf) [1576958]
+- [pci] PCI: iproc: Disable MSI parsing in certain PAXC blocks (Mark Langsdorf) [1576958]
+- [pci] PCI: iproc: Fix up corrupted PAXC root complex config registers (Mark Langsdorf) [1576958]
+- [pci] PCI: iproc: Activate PAXC bridge quirk for more devices (Mark Langsdorf) [1576958]
+
+* Tue Nov 27 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-45.el8]
+- [s390] s390/mm: fix mis-accounting of pgtable_bytes (Joe Lawrence) [1644481]
+- [mm] mm: add mm_pxd_folded checks to pgtable_bytes accounting functions (Joe Lawrence) [1644481]
+- [mm] mm: introduce mm_[p4d|pud|pmd]_folded (Joe Lawrence) [1644481]
+- [mm] mm: make the __PAGETABLE_PxD_FOLDED defines non-empty (Joe Lawrence) [1644481]
+- [x86] x86/cpu/vmware: Do not trace vmware_sched_clock() (Vitaly Kuznetsov) [1650273]
+- [fs] fuse: fix possibly missed wake-up after abort (Lukas Czerner) [1649244]
+- [fs] fuse: fix leaked notify reply (Lukas Czerner) [1649244]
+- [fs] fuse: fix blocked_waitq wakeup (Lukas Czerner) [1649244]
+- [fs] fuse: set FR_SENT while locked (Lukas Czerner) [1649244]
+- [fs] fuse: Fix use-after-free in fuse_dev_do_write() (Lukas Czerner) [1649244]
+- [fs] fuse: Fix use-after-free in fuse_dev_do_read() (Lukas Czerner) [1649244]
+- [fs] fuse: Add missed unlock_page() to fuse_readpages_fill() (Lukas Czerner) [1649244]
+- [fs] fuse: Don't access pipe->buffers without pipe_lock() (Lukas Czerner) [1649244]
+- [fs] fuse: fix initial parallel dirops (Lukas Czerner) [1649244]
+- [fs] fuse: Fix oops at process_init_reply() (Lukas Czerner) [1649244]
+- [fs] fuse: umount should wait for all requests (Lukas Czerner) [1649244]
+- [fs] fuse: fix unlocked access to processing queue (Lukas Czerner) [1649244]
+- [fs] fuse: fix double request_end() (Lukas Czerner) [1649244]
+- [fs] fuse: fix use-after-free in fuse_direct_IO() (Lukas Czerner) [1599195]
+
+* Fri Nov 23 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-44.el8]
+- [firmware] efi: Fix debugobjects warning on 'efi_rts_work' (Waiman Long) [1652190]
+- [rpmspec] kernel.spec: Do not zip modules on noarch builds (Prarit Bhargava) [1646471]
+- [iommu] iommu/amd: Clear memory encryption mask from physical address (Gary Hook) [1640384]
+
+* Thu Nov 22 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-43.el8]
+- [powerpc] powerpc/mm/radix: Only need the Nest MMU workaround for R -> RW transition (Steve Best) [1651276]
+- [powerpc] powerpc/mm/books3s: Add new pte bit to mark pte temporarily invalid (Steve Best) [1651276]
+- [powerpc] powerpc/tm: Fix HFSCR bit for no suspend case (Steve Best) [1651275]
+
+* Wed Nov 21 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-42.el8]
+- [powerpc] powerpc/powernv: Fix concurrency issue with npu->mmio_atsd_usage (Steve Best) [1651267]
+- [tools] perf tools: Remove ext from struct kmod_path (Jiri Olsa) [1581390]
+- [tools] perf tools: Add gzip_is_compressed function (Jiri Olsa) [1581390]
+- [tools] perf tools: Add lzma_is_compressed function (Jiri Olsa) [1581390]
+- [tools] perf tools: Add is_compressed callback to compressions array (Jiri Olsa) [1581390]
+- [tools] perf tools: Move the temp file processing into decompress_kmodule (Jiri Olsa) [1581390]
+- [tools] perf tools: Use compression id in decompress_kmodule() (Jiri Olsa) [1581390]
+- [tools] perf tools: Store compression id into struct dso (Jiri Olsa) [1581390]
+- [tools] perf tools: Add compression id into 'struct kmod_path' (Jiri Olsa) [1581390]
+- [tools] perf tools: Make is_supported_compression() static (Jiri Olsa) [1581390]
+- [tools] perf tools: Make decompress_to_file() function static (Jiri Olsa) [1581390]
+- [tools] perf tools: Get rid of dso__needs_decompress() call in __open_dso() (Jiri Olsa) [1581390]
+- [tools] perf tools: Get rid of dso__needs_decompress() call in symbol__disassemble() (Jiri Olsa) [1581390]
+- [tools] perf tools: Get rid of dso__needs_decompress() call in read_object_code() (Jiri Olsa) [1581390]
+- [rpmspec] redhat: Enable kernel-tools (for kvm_stat) on s390x, too (Thomas Huth) [1631222]
+
+* Tue Nov 20 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-41.el8]
+- [drm] drm/atomic_helper: Stop modesets on unregistered connectors harder (Lyude Paul) [1631575]
+- [drm] drm/nouveau: Fix nv50_mstc->best_encoder() (Lyude Paul) [1631575]
+- [drm] drm/atomic_helper: Allow DPMS On<->Off changes for unregistered connectors (Lyude Paul) [1631575]
+- [drm] drm/i915: Fix intel_dp_mst_best_encoder() (Lyude Paul) [1631575]
+- [drm] drm/i915: Skip vcpi allocation for MSTB ports that are gone (Lyude Paul) [1631575]
+- [drm] drm/i915: Don't unset intel_connector->mst_port (Lyude Paul) [1631575]
+- [drm] drm/atomic_helper: Disallow new modesets on unregistered connectors (Lyude Paul) [1631575]
+- [s390] s390/qeth: fix HiperSockets sniffer (Philipp Rudo) [1649773]
+- [s390] s390/qeth: report 25Gbit link speed (Philipp Rudo) [1649772]
+- [s390] s390/qeth: sanitize strings in debug messages (Philipp Rudo) [1649770]
+- [s390] s390/qeth: fix initial operstate (Philipp Rudo) [1649769]
+- [s390] s390/qeth: unregister netdevice only when registered (Philipp Rudo) [1649769]
+- [powerpc] powerpc/64s: consolidate MCE counter increment (Steve Best) [1633550]
+- [powerpc] powerpc/64s: move machine check SLB flushing to mm/slb.c (Steve Best) [1633550]
+- [powerpc] powernv/pseries: consolidate code for mce early handling (Steve Best) [1633550]
+- [powerpc] powerpc/pseries: Dump the SLB contents on SLB MCE errors (Steve Best) [1633550]
+- [powerpc] powerpc/pseries: Display machine check error details (Steve Best) [1633550]
+- [powerpc] powerpc/pseries: Flush SLB contents on SLB MCE errors (Steve Best) [1633550]
+- [powerpc] powerpc/pseries: Define MCE error event section (Steve Best) [1633550]
+- [powerpc] powerpc/pseries: Avoid using the size greater than RTAS_ERROR_LOG_MAX (Steve Best) [1633550]
+- [powerpc] powerpc/pseries: Defer the logging of rtas error to irq work queue (Steve Best) [1633550]
+- [powerpc] powerpc/pseries: Fix endianness while restoring of r3 in MCE handler (Steve Best) [1633550]
+- [cdrom] cdrom: fix improper type cast, which can leat to information leak (Maurizio Lombardi) [1650476]
+
+* Thu Nov 15 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-40.el8]
+- [drm] drm/amdgpu/pm: Fix potential Spectre v1 (Rob Clark) [1637115]
+- [drm] drm/i915/kvmgt: Fix potential Spectre v1 (Rob Clark) [1637115]
+- [fs] gfs2: Fix metadata read-ahead during truncate (2) (Andreas Grunbacher) [1647982]
+- [block] block: make sure writesame bio is aligned with logical block size (Ming Lei) [1648750]
+- [block] block: cleanup __blkdev_issue_discard() (Ming Lei) [1648750]
+- [block] block: make sure discard bio is aligned with logical block size (Ming Lei) [1648750]
+- [block] block: Clear kernel memory before copying to user (Ming Lei) [1648752]
+- [block] block: respect virtual boundary mask in bvecs (Ming Lei) [1648756]
+- [block] xen: don't include <xen/xen.h> from <asm/io.h> and <asm/dma-mapping.h> (Ming Lei) [1648756]
+- [block] block: remove ARCH_BIOVEC_PHYS_MERGEABLE (Ming Lei) [1648756]
+- [block] xen: provide a prototype for xen_biovec_phys_mergeable in xen.h (Ming Lei) [1648756]
+- [block] xen: remove the xen_biovec_phys_mergeable export (Ming Lei) [1648756]
+- [block] arm: remove the unused BIOVEC_MERGEABLE define (Ming Lei) [1648756]
+- [block] block: don't include bug.h from bio.h (Ming Lei) [1648756]
+- [block] block: don't include io.h from bio.h (Ming Lei) [1648756]
+- [block] block: remove bvec_to_phys (Ming Lei) [1648756]
+- [block] block: merge BIOVEC_SEG_BOUNDARY into biovec_phys_mergeable (Ming Lei) [1648756]
+- [block] block: add a missing BIOVEC_SEG_BOUNDARY check in bio_add_pc_page (Ming Lei) [1648756]
+- [block] block: simplify BIOVEC_PHYS_MERGEABLE (Ming Lei) [1648756]
+- [block] block: move req_gap_back_merge to blk.h (Ming Lei) [1648756]
+- [block] block: move req_gap_{back,front}_merge to blk-merge.c (Ming Lei) [1648756]
+- [block] block: move integrity_req_gap_{back,front}_merge to blk.h (Ming Lei) [1648756]
+- [fs] gfs2: Fix iomap buffer head reference counting bug (Andreas Grunbacher) [1647073]
+- [scsi] qla2xxx: Update driver version to 10.00.00.07.08.0-k1 (Himanshu Madhani) [1615896]
+- [scsi] scsi: qla2xxx: Initialize port speed to avoid setting lower speed (Himanshu Madhani) [1615896]
+- [scsi] scsi: qla2xxx: Fix incorrect port speed being set for FC adapters (Himanshu Madhani) [1615896]
+- [block] block: brd: associate with queue until adding disk (Ming Lei) [1644602]
+- [block] block: call rq_qos_exit() after queue is frozen (Ming Lei) [1641558]
+- [block] block: fix the DISCARD request merge (Ming Lei) [1646776]
+- [block] blk-mq: fallback to previous nr_hw_queues when updating fails (Ming Lei) [1642218]
+- [block] blk-mq: realloc hctx when hw queue is mapped to another node (Ming Lei) [1642218]
+- [block] blk-mq: change gfp flags to GFP_NOIO in blk_mq_realloc_hw_ctxs (Ming Lei) [1642218]
+- [block] blk-mq: adjust debugfs and sysfs register when updating nr_hw_queues (Ming Lei) [1642218]
+- [block] block: remove bio_rewind_iter() (Ming Lei) [1642208]
+
+* Wed Nov 14 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-39.el8]
+- [fs] jbd2: fix use after free in jbd2_log_do_checkpoint() (Lukas Czerner) [1644694]
+- [fs] ext4: initialize retries variable in ext4_da_write_inline_data_begin() (Lukas Czerner) [1644694]
+- [fs] ext4: fix build error when DX_DEBUG is defined (Lukas Czerner) [1644694]
+
+* Tue Nov 13 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-38.el8]
+- [pinctrl] pinctrl: intel: Add Ice Lake PCH pin controller support (David Arcari) [1483413]
+- [netdrv] nfp: flower: fix vlan match by checking both vlan id and vlan pcp (Pablo Cascon) [1645220]
+- [netdrv] nfp: flower: reject tunnel encap with ipv6 outer headers for offloading (Pablo Cascon) [1646644]
+- [netdrv] nfp: populate bus-info on representors (Pablo Cascon) [1643998]
+- [powerpc] KVM: PPC: Validate TCEs against preregistered memory page sizes (David Gibson) [1625821]
+- [powerpc] KVM: PPC: Inform the userspace about TCE update failures (David Gibson) [1625821]
+- [powerpc] KVM: PPC: Book3S: Fix guest DMA when guest partially backed by THP pages (David Gibson) [1625821]
+
+* Fri Nov 09 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-37.el8]
+- [kernel] locking/lockdep: Fix debug_locks off performance problem (Waiman Long) [1647560]
+- [kernel] locking/lockdep: Remove duplicated 'lock_class_ops' percpu array (Waiman Long) [1647560]
+- [kernel] locking/lockdep: Make class->ops a percpu counter and move it under CONFIG_DEBUG_LOCKDEP=y (Waiman Long) [1647560]
+- [kernel] locking/lockdep: Add a faster path in __lock_release() (Waiman Long) [1647560]
+- [kernel] locking/lockdep: Eliminate redundant IRQs check in __lock_acquire() (Waiman Long) [1647560]
+- [kernel] locking/lockdep: Remove add_chain_cache_classes() (Waiman Long) [1647560]
+- [fs] gfs2: Put bitmap buffers in put_super (Andreas Grunbacher) [1647073]
+- [scsi] scsi: hpsa: limit transfer length to 1MB, not 512kB (Joseph Szczypek) [1643956]
+- [netdrv] nfp: report FW vNIC stats in interface stats (Pablo Cascon) [1645032]
+- [rpmspec] spec: Add bpftool debuginfo package (Jiri Olsa) [1633018]
+- [crypto] crypto: chelsio: Fix memory corruption in DMA Mapped buffers (Arjun Vynipadath) [1631750]
+- [cdrom] cdrom: Fix info leak/OOB read in cdrom_ioctl_drive_status (Maurizio Lombardi) [1627732] {CVE-2018-16658}
+
+* Wed Nov 07 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-36.el8]
+- [kernel] srcu: Make early-boot call_srcu() reuse workqueue lists (Waiman Long) [1644375]
+- [tools] rcutorture: Test early boot call_srcu() (Waiman Long) [1644375]
+- [kernel] srcu: Make call_srcu() available during very early boot (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_state.ofl_lock to raw_spinlock_t (Waiman Long) [1644375]
+- [kernel] rcu: Remove obsolete ->dynticks_fqs and ->cond_resched_completed (Waiman Long) [1644375]
+- [kernel] rcu: Switch ->dynticks to rcu_data structure, remove rcu_dynticks (Waiman Long) [1644375]
+- [kernel] rcu: Switch dyntick nesting counters to rcu_data structure (Waiman Long) [1644375]
+- [kernel] rcu: Switch urgent quiescent-state requests to rcu_data structure (Waiman Long) [1644375]
+- [kernel] rcu: Switch lazy counts to rcu_data structure (Waiman Long) [1644375]
+- [kernel] rcu: Switch last accelerate/advance to rcu_data structure (Waiman Long) [1644375]
+- [kernel] rcu: Switch ->tick_nohz_enabled_snap to rcu_data structure (Waiman Long) [1644375]
+- [kernel] rcu: Merge rcu_dynticks structure into rcu_data structure (Waiman Long) [1644375]
+- [kernel] rcu: Remove unused rcu_dynticks_snap() from Tiny RCU (Waiman Long) [1644375]
+- [kernel] rcu: Convert "1UL << x" to "BIT(x)" (Waiman Long) [1644375]
+- [kernel] rcu: Avoid resched_cpu() when rescheduling the current CPU (Waiman Long) [1644375]
+- [kernel] rcu: More aggressively enlist scheduler aid for nohz_full CPUs (Waiman Long) [1644375]
+- [kernel] rcu: Compute jiffies_till_sched_qs from other kernel parameters (Waiman Long) [1644375]
+- [kernel] rcu: Provide functions for determining if call_rcu() has been invoked (Waiman Long) [1644375]
+- [kernel] rcu: Eliminate ->rcu_qs_ctr from the rcu_dynticks structure (Waiman Long) [1644375]
+- [kernel] rcu: Motivate Tiny RCU forward progress (Waiman Long) [1644375]
+- [kernel] rcutorture: Dump reader protection sequence if failures or close calls (Waiman Long) [1644375]
+- [kernel] rcu: Provide improved interrupt-from-idle check in rcu_check_callbacks() (Waiman Long) [1644375]
+- [kernel] rcu: Make need_resched() respond to urgent RCU-QS needs (Waiman Long) [1644375]
+- [kernel] rcu: Inline _rcu_barrier() into its sole remaining caller (Waiman Long) [1644375]
+- [kernel] rcu: Define rcu_all_qs() only in !PREEMPT builds (Waiman Long) [1644375]
+- [kernel] rcu: Remove !PREEMPT code from rcu_note_voluntary_context_switch() (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in update.c (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in tree_plugin.h (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in tree_exp.h (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in tree.c (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in tiny.c (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in srcutree.h (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in rcutorture.c (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in rcu.h (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in Kconfig (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in rcupdate_wait.h (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in rculist.h (Waiman Long) [1644375]
+- [kernel] rcu: Clean up flavor-related definitions and comments in rcupdate.h (Waiman Long) [1644375]
+- [kernel] rcu: Remove now-unused rcutorture APIs (Waiman Long) [1644375]
+- [kernel] rcuperf: Remove the "rcu_bh" and "sched" torture types (Waiman Long) [1644375]
+- [kernel] rcutorture: Remove the "rcu_bh" and "sched" torture types (Waiman Long) [1644375]
+- [kernel] rcu: Stop testing RCU-bh and RCU-sched (Waiman Long) [1644375]
+- [kernel] rcutorture: Add RCU-bh and RCU-sched support for extended readers (Waiman Long) [1644375]
+- [kernel] rcu: Consolidate RCU-sched update-side function definitions (Waiman Long) [1644375]
+- [kernel] rcu: Consolidate RCU-bh update-side function definitions (Waiman Long) [1644375]
+- [kernel] rcu: Pull rcu_gp_kthread() FQS loop into separate function (Waiman Long) [1644375]
+- [kernel] rcu: Inline increment_cpu_stall_ticks() into its sole caller (Waiman Long) [1644375]
+- [kernel] rcu: Fix typo in force_qs_rnp()'s parameter's parameter (Waiman Long) [1644375]
+- [kernel] rcu: Eliminate initialization-time use of rsp (Waiman Long) [1644375]
+- [kernel] rcu: Eliminate RCU-barrier use of rsp (Waiman Long) [1644375]
+- [kernel] rcu: Eliminate quiescent-state and grace-period-nonstart use of rsp (Waiman Long) [1644375]
+- [kernel] rcu: Eliminate callback-invocation/invocation use of rsp (Waiman Long) [1644375]
+- [kernel] rcu: Eliminate grace-period management code use of rsp (Waiman Long) [1644375]
+- [kernel] rcu: Eliminate stall-warning use of rsp (Waiman Long) [1644375]
+- [kernel] rcu: Restructure rcu_check_gp_kthread_starvation() (Waiman Long) [1644375]
+- [kernel] rcu: Simplify rcutorture_get_gp_data() (Waiman Long) [1644375]
+- [kernel] rcu: Remove for_each_rcu_flavor() flavor-traversal macro (Waiman Long) [1644375]
+- [kernel] rcu: Remove last non-flavor-traversal rsp local variable from tree_plugin.h (Waiman Long) [1644375]
+- [kernel] rcu: Remove rcu_data structure's ->rsp field (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_node tree accessor macros (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from expedited grace-period functions (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from no-CBs CPU functions (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from print_cpu_stall_info() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_spawn_one_boost_kthread() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from dump_blkd_tasks() and friend (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_print_detail_task_stall() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_init_one() and friends (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_boot_init_percpu_data() and friends (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from _rcu_barrier() and friends (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from __rcu_pending() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from __call_rcu() and friend (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from __rcu_process_callbacks() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_check_gp_start_stall() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from force-quiescent-state functions (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_do_batch() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from CPU hotplug functions (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_check_quiescent_state() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_gp_kthread() and friends (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_gp_slow() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from note_gp_changes() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from __note_gp_changes() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_advance_cbs() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_accelerate_cbs_unlocked() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_accelerate_cbs() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_gp_kthread_wake() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_future_gp_cleanup() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from check_cpu_stall() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from print_cpu_stall() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from print_other_cpu_stall() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_stall_kick_kthreads() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_dump_cpu_stacks() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_check_gp_kthread_starvation() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from record_gp_stall_check_time() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_get_root() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_gp_in_progress() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_report_qs_rdp() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_report_unblock_qs_rnp() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_report_qs_rsp() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rsp parameter from rcu_report_qs_rnp() (Waiman Long) [1644375]
+- [kernel] rcu: Remove rcu_data_p pointer to default rcu_data structure (Waiman Long) [1644375]
+- [kernel] rcu: Remove rcu_state_p pointer to default rcu_state structure (Waiman Long) [1644375]
+- [kernel] rcu: Remove rcu_state structure's ->rda field (Waiman Long) [1644375]
+- [kernel] rcu: Eliminate rcu_state structure's ->call field (Waiman Long) [1644375]
+- [kernel] rcu: Remove RCU_STATE_INITIALIZER() (Waiman Long) [1644375]
+- [kernel] rcu: Express Tiny RCU updates in terms of RCU rather than RCU-sched (Waiman Long) [1644375]
+- [kernel] rcu: Define RCU-sched API in terms of RCU for Tree RCU PREEMPT builds (Waiman Long) [1644375]
+- [kernel] rcu: Fix typo in rcu_get_gp_kthreads_prio() header comment (Waiman Long) [1644375]
+- [kernel] rcu: Drop "wake" parameter from rcu_report_exp_rdp() (Waiman Long) [1644375]
+- [kernel] rcu: Update comments and help text for no more RCU-bh updaters (Waiman Long) [1644375]
+- [kernel] rcu: Define RCU-bh update API in terms of RCU (Waiman Long) [1644375]
+- [kernel] rcu: Report expedited grace periods at context-switch time (Waiman Long) [1644375]
+- [kernel] rcu: Apply RCU-bh QSes to RCU-sched and RCU-preempt when safe (Waiman Long) [1644375]
+- [kernel] rcu: Add warning to detect half-interrupts (Waiman Long) [1644375]
+- [kernel] rcu: Remove now-unused ->b.exp_need_qs field from the rcu_special union (Waiman Long) [1644375]
+- [kernel] rcu: Allow processing deferred QSes for exiting RCU-preempt readers (Waiman Long) [1644375]
+- [kernel] rcutorture: Test extended "rcu" read-side critical sections (Waiman Long) [1644375]
+- [kernel] rcu: Defer reporting RCU-preempt quiescent states when disabled (Waiman Long) [1644375]
+- [kernel] rcu: Refactor rcu_{nmi,irq}_{enter,exit}() (Waiman Long) [1644375]
+- [documentation] doc: Fix broken HTML directive (Waiman Long) [1644375]
+- [documentation] doc: Update removal of RCU-bh/sched update machinery (Waiman Long) [1644375]
+- [kernel] rcutorture: Maintain self-propagating CB only during forward-progress test (Waiman Long) [1644375]
+- [kernel] rcutorture: Check GP completion at stutter end (Waiman Long) [1644375]
+- [kernel] rcutorture: Print forward-progress test interval on error (Waiman Long) [1644375]
+- [kernel] rcutorture: Adjust number of reader kthreads per CPU-hotplug operations (Waiman Long) [1644375]
+- [kernel] rcutorture: Reduce priority of forward-progress testing (Waiman Long) [1644375]
+- [kernel] rcutorture: Limit reader duration if irq or bh disabled (Waiman Long) [1644375]
+- [kernel] rcutorture: Increase rcu_read_delay() longdelay_ms (Waiman Long) [1644375]
+- [kernel] rcutorture: Add self-propagating callback to forward-progress testing (Waiman Long) [1644375]
+- [kernel] rcutorture: Vary forward-progress test interval (Waiman Long) [1644375]
+- [kernel] rcutorture: Avoid no-test complaint if too few forward-progress tries (Waiman Long) [1644375]
+- [kernel] rcutorture: Also use GP sequence to judge forward progress (Waiman Long) [1644375]
+- [kernel] rcutorture: Add forward-progress tests for RCU grace periods (Waiman Long) [1644375]
+- [tools] rcutorture: Remove TREE06 and TREE08 from the default test list (Waiman Long) [1644375]
+- [kernel] rcuperf: Warn on bad perf type for built-in tests (Waiman Long) [1644375]
+- [kernel] rcutorture: Warn on bad torture type for built-in tests (Waiman Long) [1644375]
+- [kernel] rcutorture: Force occasional reader waits (Waiman Long) [1644375]
+- [tools] torture: Stop overwriting Make.out file with obsolete version (Waiman Long) [1644375]
+- [documentation] doc: Improve rcu_dynticks::dynticks documentation (Waiman Long) [1644375]
+- [documentation] doc: Fix broken RCU-requirements link to LKML archive (Waiman Long) [1644375]
+- [documentation] doc: Add design documentation on interruption of NMI handlers (Waiman Long) [1644375]
+- [kernel] rcutorture: Fix rcu_barrier successes counter (Waiman Long) [1644375]
+- [kernel] rcutorture: Add support to detect if boost kthread prio is too low (Waiman Long) [1644375]
+- [kernel] rcutorture: Use monotonic timestamp for stall detection (Waiman Long) [1644375]
+- [kernel] rcutorture: Make boost test more robust (Waiman Long) [1644375]
+- [kernel] rcutorture: Disable RT throttling for boost tests (Waiman Long) [1644375]
+- [kernel] rcutorture: Emphasize testing of single reader protection type (Waiman Long) [1644375]
+- [kernel] rcutorture: Handle extended read-side critical sections (Waiman Long) [1644375]
+- [kernel] rcutorture: Make rcu_torture_timer() use rcu_torture_one_read() (Waiman Long) [1644375]
+- [kernel] rcutorture: Use per-CPU random state for rcu_torture_timer() (Waiman Long) [1644375]
+- [kernel] rcutorture: Use atomic increment for n_rcu_torture_timers (Waiman Long) [1644375]
+- [kernel] rcutorture: Extract common code from rcu_torture_reader() (Waiman Long) [1644375]
+- [kernel] rcuperf: Remove unused torturing_tasks() function (Waiman Long) [1644375]
+- [kernel] rcu: Remove rcutorture test version and sequence number (Waiman Long) [1644375]
+- [kernel] rcutorture: Change units of onoff_interval to jiffies (Waiman Long) [1644375]
+- [kernel] rcu: Assign higher prio to RCU threads if rcutorture is built-in (Waiman Long) [1644375]
+- [documentation] rculist: Improve documentation for list_for_each_entry_from_rcu() (Waiman Long) [1644375]
+- [kernel] srcu: Add grace-period number to rcutorture statistics printout (Waiman Long) [1644375]
+- [kernel] rcu: Print stall-warning NMI dyntick state in hexadecimal (Waiman Long) [1644375]
+- [maintainers] MAINTAINERS: Update RCU, SRCU, and TORTURE-TEST entries (Waiman Long) [1644375]
+- [kernel] rcu: Make rcu_seq_diff() more exact (Waiman Long) [1644375]
+- [documentation] doc: Update synchronize_rcu() definition in whatisRCU.txt (Waiman Long) [1644375]
+- [kernel] rcu: Check the range of jiffies_till_{first, next}_fqs when setting them (Waiman Long) [1644375]
+- [kernel] rcu: Add diagnostics for rcutorture writer stall warning (Waiman Long) [1644375]
+- [kernel] rcu: Add comment to the last sleep in the rcu tasks loop (Waiman Long) [1644375]
+- [kernel] rcu: Speed up calling of RCU tasks callbacks (Waiman Long) [1644375]
+- [kernel] rcu: Add comment documenting how rcu_seq_snap works (Waiman Long) [1644375]
+- [kernel] rcu: Use RCU CPU stall timeout for rcu_check_gp_start_stall() (Waiman Long) [1644375]
+- [kernel] rcu: Remove __maybe_unused from rcu_cpu_has_callbacks() (Waiman Long) [1644375]
+- [kernel] rcu: Remove "inline" from rcu_perf_print_module_parms() (Waiman Long) [1644375]
+- [kernel] rcu: Remove "inline" from rcu_torture_print_module_parms() (Waiman Long) [1644375]
+- [kernel] rcu: Remove "inline" from panic_on_rcu_stall() and rcu_blocking_is_gp() (Waiman Long) [1644375]
+- [kernel] rcu: Remove unused local variable "cpu" (Waiman Long) [1644375]
+- [kernel] rcu: Remove unused rcu_kick_nohz_cpu() function (Waiman Long) [1644375]
+- [kernel] rcu: Clarify and correct the rcu_preempt_qs() header comment (Waiman Long) [1644375]
+- [kernel] rcu: Inline rcu_dynticks_momentary_idle() into its sole caller (Waiman Long) [1644375]
+- [kernel] rcu: Mark task as .need_qs less aggressively (Waiman Long) [1644375]
+- [kernel] rcu: Improve RCU-tasks naming and comments (Waiman Long) [1644375]
+- [kernel] rcu: Use pr_fmt to prefix "rcu: " to logging output (Waiman Long) [1644375]
+- [kernel] rcu: rcupdate.h: Get rid of Sphinx warnings at rcu_pointer_handoff() (Waiman Long) [1644375]
+- [kernel] rcu: Improve rcu_note_voluntary_context_switch() reporting (Waiman Long) [1644375]
+- [kernel] rcu: Make rcu_read_unlock_special() static (Waiman Long) [1644375]
+- [kernel] rcu: Add diagnostics for offline CPUs failing to report QS (Waiman Long) [1644375]
+- [kernel] rcu: Record ->gp_state for both phases of grace-period initialization (Waiman Long) [1644375]
+- [kernel] rcu: Add CPU online/offline state to dump_blkd_tasks() (Waiman Long) [1644375]
+- [kernel] rcu: Add up-tree information to dump_blkd_tasks() diagnostics (Waiman Long) [1644375]
+- [kernel] rcu: Remove CPU-hotplug failsafe from force-quiescent-state code path (Waiman Long) [1644375]
+- [kernel] rcu: Remove failsafe check for lost quiescent state (Waiman Long) [1644375]
+- [kernel] rcu: Move grace-period pre-init delay after pre-init (Waiman Long) [1644375]
+- [kernel] rcu: Add RCU-preempt check for waiting on newly onlined CPU (Waiman Long) [1644375]
+- [kernel] rcu: Fix grace-period hangs due to race with CPU offline (Waiman Long) [1644375]
+- [kernel] rcu: Fix grace-period hangs from mid-init task resume (Waiman Long) [1644375]
+- [kernel] rcu: Suppress false-positive splats from mid-init task resume (Waiman Long) [1644375]
+- [kernel] rcu: Suppress more involved false-positive preempted-task splats (Waiman Long) [1644375]
+- [kernel] rcu: Suppress false-positive preempted-task splats (Waiman Long) [1644375]
+- [kernel] rcu: Suppress false-positive offline-CPU lockdep-RCU splat (Waiman Long) [1644375]
+- [kernel] rcu: Prevent useless FQS scan after all CPUs have checked in (Waiman Long) [1644375]
+- [kernel] rcu: Replace smp_wmb() with smp_store_release() for stall check (Waiman Long) [1644375]
+- [kernel] rcu: Fix typo and add additional debug (Waiman Long) [1644375]
+- [kernel] rcu: Make rcu_report_unblock_qs_rnp() warn on violated preconditions (Waiman Long) [1644375]
+- [kernel] rcu: Make rcu_init_new_rnp() stop upon already-set bit (Waiman Long) [1644375]
+- [kernel] rcu: Fix an obsolete ->qsmaskinit comment (Waiman Long) [1644375]
+- [kernel] rcu: Clean up handling of tasks blocked across full-rcu_node offline (Waiman Long) [1644375]
+- [kernel] rcu: Identify grace period is in progress as we advance up the tree (Waiman Long) [1644375]
+- [kernel] rcu: Use better variable names in funnel locking loop (Waiman Long) [1644375]
+- [kernel] rcu: Rename the grace-period-request variables and parameters (Waiman Long) [1644375]
+- [kernel] rcu: Regularize resetting of rcu_data wrap indicator (Waiman Long) [1644375]
+- [kernel] rcutorture: Correctly handle grace-period sequence wrap (Waiman Long) [1644375]
+- [kernel] rcu: Make rcu_start_this_gp() check for grace period already started (Waiman Long) [1644375]
+- [kernel] rcu: Fix cpustart tracepoint gp_seq number (Waiman Long) [1644375]
+- [kernel] rcu: Produce last "CleanupMore" trace only if late-breaking request (Waiman Long) [1644375]
+- [kernel] rcu: Don't funnel-lock above leaf node if GP in progress (Waiman Long) [1644375]
+- [documentation] doc: Update RCU CPU stall-warning documentation (Waiman Long) [1644375]
+- [documentation] doc: Update memory-ordering documentation for ->gp-seq (Waiman Long) [1644375]
+- [documentation] doc: Update data-structure documentation for ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Make simple callback acceleration refer to rdp->gp_seq_needed (Waiman Long) [1644375]
+- [kernel] rcu: Remove ->gpnum and ->completed (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_fqs tracepoint to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_quiescent_state_report tracepoint to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_unlock_preempted_task tracepoint to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_preempt_task tracepoint to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_grace_period_init tracepoint to gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_future_grace_period tracepoint to gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_grace_period tracepoint to gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Make rcu_nocb_wait_gp() check if GP already requested (Waiman Long) [1644375]
+- [kernel] rcu: Move from ->need_future_gp[] to ->gp_seq_needed (Waiman Long) [1644375]
+- [kernel] rcutorture: Convert rcutorture_get_gp_data() to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Make RCU CPU stall warnings use ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert grace-period requests to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert ->completedqs to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert ->rcu_iw_gpnum to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Move rcu_gp_in_progress() to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Move rcu_nocb_gp_get() to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Move rcu_try_advance_all_cbs() to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Move rcu_implicit_dynticks_qs() to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_gpnum_ovf() to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Move RCU's grace-period-change code to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert conditional grace-period primitives to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Make quiescent-state reporting use ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Convert rcu_check_gp_kthread_starvation() to GP sequence number (Waiman Long) [1644375]
+- [kernel] rcu: Make rcutorture's batches-completed API use ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Move rcu_gp_slow() to ->gp_seq (Waiman Long) [1644375]
+- [kernel] rcu: Introduce grace-period sequence numbers (Waiman Long) [1644375]
+- [kernel] rcu: Make rcu_gp_cleanup() write only once to ->gp_flags (Waiman Long) [1644375]
+- [kernel] rcu: Diagnostics for grace-period startup hangs (Waiman Long) [1644375]
+- [kernel] rcu: Exclude near-simultaneous RCU CPU stall warnings (Waiman Long) [1644375]
+- [kernel] rcu: Use the proper lockdep annotation in dump_blkd_tasks() (Waiman Long) [1644375]
+- [kernel] rcu: Add debugging info to assertion (Waiman Long) [1644375]
+- [kernel] torture: Keep old-school dmesg format (Waiman Long) [1644375]
+- [kernel] torture: Make online/offline messages appear only for verbose=2 (Waiman Long) [1644375]
+- [tools] rcutorture: Make kvm-find-errors.sh find close calls (Waiman Long) [1644375]
+- [tools] rcutorture: Remove obsolete TREE08-T.boot file (Waiman Long) [1644375]
+- [tools] torture: Use a single build directory for torture scenarios (Waiman Long) [1644375]
+- [kernel] srcu: Introduce srcu_read_{un,}lock_notrace() (Waiman Long) [1644375]
+- [kernel] srcu: Add address of first callback to rcutorture output (Waiman Long) [1644375]
+- [kernel] srcu: Document that srcu_funnel_gp_start() implies srcu_funnel_exp_start() (Waiman Long) [1644375]
+- [kernel] srcu: Fix typos in __call_srcu() header comment (Waiman Long) [1644375]
+- [kernel] rcu: Make expedited grace period use direct call on last leaf (Waiman Long) [1644375]
+
+* Tue Nov 06 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-35.el8]
+- [netdrv] nfp: flower: use offsets provided by pedit instead of index for ipv6 (Pablo Cascon) [1645132]
+- [netdrv] nfp: flower: fix multiple keys per pedit action (Pablo Cascon) [1645132]
+- [netdrv] nfp: flower: fix pedit set actions for multiple partial masks (Pablo Cascon) [1645132]
+- [netdrv] nfp: flower: ignore checksum actions when performing pedit actions (Pablo Cascon) [1644400]
+- [kernel] sched/fair: Fix throttle_list starvation with low CFS quota (Phil Auld) [1638526]
+- [net] tipc: fix the big/little endian issue in tipc_dest (Jon Maloy) [1640712]
+- [rpmspec] kernel.spec: Include kernel-signing-ca.cer public key (Prarit Bhargava) [1638465]
+- [block] block: don't deal with discard limit in blkdev_issue_discard() (Ming Lei) [1631255]
+- [powerpc] powerpc/mm: Check memblock_add against MAX_PHYSMEM_BITS range (Gustavo Duarte) [1561402]
+- [powerpc] powerpc/mm: Increase MAX_PHYSMEM_BITS to 128TB with SPARSEMEM_VMEMMAP config (Gustavo Duarte) [1561402]
+
+* Tue Nov 06 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-34.el8]
+- [s390] s390/crypto: Enhance paes cipher to accept variable length key material (Philipp Rudo) [1644387]
+- [s390] s390/pkey: move pckmo subfunction available checks away from module init (Philipp Rudo) [1644387]
+- [s390] s390/pkey: Load pkey kernel module automatically (Philipp Rudo) [1644387]
+- [s390] s390/zcrypt: fix broken zcrypt_send_cprb in-kernel api function (Philipp Rudo) [1644387]
+- [s390] s390/pkey: Introduce new API for transforming key blobs (Philipp Rudo) [1644387]
+- [s390] s390/pkey: Introduce new API for random protected key verification (Philipp Rudo) [1644387]
+- [s390] s390/pkey: Add sysfs attributes to emit secure key blobs (Philipp Rudo) [1644387]
+- [s390] s390/pkey: Add sysfs attributes to emit protected key blobs (Philipp Rudo) [1644387]
+- [s390] s390/pkey: Define protected key blob format (Philipp Rudo) [1644387]
+- [s390] s390/pkey: Introduce new API for random protected key generation (Philipp Rudo) [1644387]
+- [s390] s390/zcrypt: add ap_adapter_mask sysfs attribute (Philipp Rudo) [1644387]
+- [s390] s390/zcrypt: provide apfs failure code on type 86 error reply (Philipp Rudo) [1644387]
+- [s390] s390/zcrypt: zcrypt device driver cleanup (Philipp Rudo) [1644387]
+- [s390] s390/zcrypt: multiple zcrypt device nodes support (Philipp Rudo) [1644387]
+- [s390] s390/zcrypt: enable AP bus scan without a valid default domain (Philipp Rudo) [1644387]
+- [s390] s390/zcrypt: Use kmemdup to replace kmalloc + memcpy (Philipp Rudo) [1644387]
+- [s390] s390/qeth: add TSO support for L2 devices (Philipp Rudo) [1644381]
+- [s390] s390/qeth: add support for IPv6 TSO (Philipp Rudo) [1644381]
+- [s390] s390/qeth: enhance TSO control sequence (Philipp Rudo) [1644381]
+- [s390] s390/qeth: make TSO controls protocol-agnostic (Philipp Rudo) [1644381]
+- [s390] s390: qeth: Fix potential array overrun in cmd/rc lookup (Philipp Rudo) [1644381]
+- [s390] s390: qeth_core_mpc: Use ARRAY_SIZE instead of reimplementing its function (Philipp Rudo) [1644381]
+- [scsi] scsi: mpt3sas: Remove unnecessary parentheses and simplify null checks (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Use dma_pool_zalloc (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Remove unused macro MPT3SAS_FMT (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Convert logging uses with MPT3SAS_FMT without logging levels (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Remove KERN_WARNING from panic uses (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Convert logging uses with MPT3SAS_FMT and reply_q_name to s: (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Convert mlsleading uses of pr_<level> with MPT3SAS_FMT (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Convert uses of pr_<level> with MPT3SAS_FMT to ioc_<level> (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Add ioc_<level> logging macros (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Fix calltrace observed while running IO & reset (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Improve kernel-doc headers (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Split _base_reset_handler(), mpt3sas_scsih_reset_handler() and mpt3sas_ctl_reset_handler() (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Fix a race condition in mpt3sas_base_hard_reset_handler() (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Fix _transport_smp_handler() error path (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Introduce struct mpt3sas_nvme_cmd (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Annotate switch/case fall-through (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Remove set-but-not-used variables (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Fix indentation (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Update driver version "26.100.00.00" (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: As per MPI-spec, use combined reply queue for SAS3.5 controllers when HBA supports more than 16 MSI-x vectors (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Fix, False timeout prints for ioctl and other internal commands during controller reset (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Don't access the structure after decrementing it's instance reference count (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Incorrect command status was set/marked as not used (Tomas Henzl) [1638649]
+- [scsi] scsi: mpt3sas: Don't abort I/Os issued to NVMe drives while processing Async Broadcast primitive event (Tomas Henzl) [1638649]
+- [netdrv] net/mlx5e: Do not ignore netdevice TX/RX queues number (Alaa Hleihel) [1643103]
+- [netdrv] net/mlx5e: Use non-delayed work for update stats (Alaa Hleihel) [1643103]
+- [netdrv] net/mlx5e: Initialize all netdev common structures in one place (Alaa Hleihel) [1643103]
+- [netdrv] net/mlx5e: Always initialize update stats delayed work (Alaa Hleihel) [1643103]
+- [netdrv] net/mlx5e: Gather common netdev init/cleanup functionality in one place (Alaa Hleihel) [1643103]
+- [infiniband] RDMA/netdev: Fix netlink support in IPoIB (Alaa Hleihel) [1643103]
+- [infiniband] RDMA/netdev: Hoist alloc_netdev_mqs out of the driver (Alaa Hleihel) [1643103]
+- [infiniband] IB/ipoib: Consolidate checking of the proposed child interface (Alaa Hleihel) [1643103]
+- [infiniband] IB/ipoib: Maintain the child_intfs list from ndo_init/uninit (Alaa Hleihel) [1643103]
+- [infiniband] IB/ipoib: Do not remove child devices from within the ndo_uninit (Alaa Hleihel) [1643103]
+- [infiniband] IB/ipoib: Get rid of the sysfs_mutex (Alaa Hleihel) [1643103]
+- [infiniband] RDMA/netdev: Use priv_destructor for netdev cleanup (Alaa Hleihel) [1643103]
+- [infiniband] IB/ipoib: Move init code to ndo_init (Alaa Hleihel) [1643103]
+- [infiniband] IB/ipoib: Move all uninit code into ndo_uninit (Alaa Hleihel) [1643103]
+- [infiniband] IB/ipoib: Use cancel_delayed_work_sync for neigh-clean task (Alaa Hleihel) [1643103]
+- [infiniband] IB/ipoib: Get rid of IPOIB_FLAG_GOING_DOWN (Alaa Hleihel) [1643103]
+- [infiniband] RDMA/ipoib: Fix use of sizeof() (Alaa Hleihel) [1643103]
+- [netdrv] net/mlx5e: Do not recycle RX pages in interface down flow (Alaa Hleihel) [1643103 1643047]
+- [netdrv] net/mlx5e: Replace call to MPWQE free with dealloc in interface down flow (Alaa Hleihel) [1643103 1643047]
+- [net] net/xdp: Fix suspicious RCU usage warning (Alaa Hleihel) [1643103 1643047]
+- [netdrv] net/mlx5: WQ, fixes for fragmented WQ buffers API (Alaa Hleihel) [1643103 1636183]
+- [netdrv] net/mlx4_en: Use minimal rx and tx ring sizes on kdump kernel (Alaa Hleihel) [1643103 1615267]
+- [x86] mark coffeelake-s/h 8+2 as supported (David Arcari) [1575461 1575460]
+- [x86] x86/spec_ctrl: Synchronize STIBP changes with RHEL IBRS code (Waiman Long) [1643233]
+- [x86] x86/speculation: Propagate information about RSB filling mitigation to sysfs (Waiman Long) [1643233]
+- [x86] x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation (Waiman Long) [1643233]
+- [x86] x86/speculation: Apply IBPB more strictly to avoid cross-process data leak (Waiman Long) [1643233]
+- [x86] x86/speculation: Add RETPOLINE_AMD support to the inline asm CALL_NOSPEC variant (Waiman Long) [1643233]
+- [x86] x86/CPU: Fix unused variable warning when !CONFIG_IA32_EMULATION (Waiman Long) [1643233]
+- [x86] x86/pti/64: Remove the SYSCALL64 entry trampoline (Waiman Long) [1643233]
+- [x86] x86/entry/64: Use the TSS sp2 slot for SYSCALL/SYSRET scratch space (Waiman Long) [1643233]
+- [x86] x86/entry/64: Document idtentry (Waiman Long) [1643233]
+- [x86] x86/asm-offsets: Move TSS_sp0 and TSS_sp1 to asm-offsets.c (Waiman Long) [1643233]
+- [x86] x86: Add entry trampolines to kcore (Waiman Long) [1643233]
+- [kernel] kallsyms, x86: Export addresses of PTI entry trampolines (Waiman Long) [1643233]
+- [kernel] kallsyms: Simplify update_iter_mod() (Waiman Long) [1643233]
+- [scsi] scsi: csiostor: fix incorrect port capabilities (Arjun Vynipadath) [1628866]
+- [scsi] scsi: csiostor: add a check for NULL pointer after kmalloc() (Arjun Vynipadath) [1628866]
+- [scsi] scsi: csiostor: update ingress pack and pad boundary value (Arjun Vynipadath) [1628866]
+
+* Wed Oct 31 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-33.el8]
+- [netdrv] nfp: flower: use host context count provided by firmware (Pablo Cascon) [1639609]
+- [netdrv] nfp: flower: use stats array instead of storing stats per flow (Pablo Cascon) [1639609]
+- [netdrv] nfp: flower: use rhashtable for flow caching (Pablo Cascon) [1639609]
+- [netdrv] nfp: avoid soft lockups under control message storm (Pablo Cascon) [1639609]
+- [kernel] sched: disable autogroups by default (Phil Auld) [1568166]
+- [s390] s390/keyboard: sanitize array index in do_kdsk_ioctl (Steve Best) [1637591]
+- [char] ipmi:ssif: Add support for multi-part transmit messages > 2 parts (Tony Camuso) [1622053]
+- [scsi] scsi: libsas: fix a race condition when smp task timeout (Zhou Wang) [1640426]
+- [scsi] scsi: libsas: check the ata device status by ata_dev_enabled() (Zhou Wang) [1640426]
+- [scsi] scsi: libsas: always unregister the old device if going to discover new (Zhou Wang) [1640426]
+- [scsi] scsi: libsas: dynamically allocate and free ata host (Zhou Wang) [1640426]
+- [scsi] scsi: libsas: remove irq save in sas_ata_qc_issue() (Zhou Wang) [1640426]
+
+* Sat Oct 27 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-32.el8]
+- [video] fbdev: make FB_BACKLIGHT a tristate (Rob Clark) [1643333 1589158]
+- [netdrv] Taint kernel if e1000 is loaded (Neil Horman) [1643617]
+- [netdrv] iavf: fix a typo (Stefan Assmann) [1627882]
+- [netdrv] i40evf: remove ndo_poll_controller (Stefan Assmann) [1627882]
+- [netdrv] intel-ethernet: use correct module license (Stefan Assmann) [1627882]
+- [netdrv] iavf: finish renaming files to iavf (Stefan Assmann) [1627882]
+- [netdrv] iavf: rename most of i40e strings (Stefan Assmann) [1627882]
+- [netdrv] iavf: tracing infrastructure rename (Stefan Assmann) [1627882]
+- [netdrv] iavf: replace i40e_debug with iavf version (Stefan Assmann) [1627882]
+- [netdrv] iavf: rename i40e_hw to iavf_hw (Stefan Assmann) [1627882]
+- [netdrv] iavf: rename I40E_ADMINQ_DESC (Stefan Assmann) [1627882]
+- [netdrv] iavf: rename device ID defines (Stefan Assmann) [1627882]
+- [netdrv] iavf: remove references to old names (Stefan Assmann) [1627882]
+- [netdrv] iavf: move i40evf files to new name (Stefan Assmann) [1627882]
+- [netdrv] iavf: rename i40e_status to iavf_status (Stefan Assmann) [1627882]
+- [netdrv] iavf: rename functions and structs to new name (Stefan Assmann) [1627882]
+- [netdrv] iavf: diet and reformat (Stefan Assmann) [1627882]
+- [netdrv] configs: enable CONFIG_IAVF=m (Stefan Assmann) [1627882]
+- [netdrv] intel-ethernet: rename i40evf to iavf (Stefan Assmann) [1627882]
+- [netdrv] i40e(vf): remove i40e_ethtool_stats.h header file (Stefan Assmann) [1627882]
+- [netdrv] i40evf: cancel workqueue sync for adminq when a VF is removed (Stefan Assmann) [1627882]
+- [netdrv] i40evf: Don't enable vlan stripping when rx offload is turned on (Stefan Assmann) [1627882]
+- [netdrv] i40evf: set IFF_UNICAST_FLT flag for the VF (Stefan Assmann) [1627882]
+- [netdrv] i40evf: Validate the number of queues a PF sends (Stefan Assmann) [1627882]
+- [netdrv] i40evf: Change a VF mac without reloading the VF driver (Stefan Assmann) [1627882]
+- [netdrv] i40evf: update ethtool stats code and use helper functions (Stefan Assmann) [1627882]
+- [netdrv] i40e: Add AQ command for rearrange NVM structure (Stefan Assmann) [1627882]
+- [netdrv] i40e: Add additional return code to i40e_asq_send_command (Stefan Assmann) [1627882]
+- [netdrv] i40e/i40evf: remove redundant functions i40evf_aq_(set/get)_phy_register (Stefan Assmann) [1627882]
+- [netdrv] cls_flower: fix error values for commands not supported by drivers (Stefan Assmann) [1627882]
+- [init] init/main.c: Enable watchdog_thresh control from kernel line (Prarit Bhargava) [1643161]
+- [s390] s390/purgatory: Remove duplicate variable definitions (Philipp Rudo) [1642447]
+- [s390] s390/purgatory: Add missing FORCE to Makefile targets (Philipp Rudo) [1642447]
+- [s390] s390/purgatory: Fix crash with expoline enabled (Philipp Rudo) [1642447]
+- [s390] s390: disable asm code expolines if cc does not support it (Philipp Rudo) [1642447]
+- [netdrv] Revert be2net: remove desc field from be_eq_obj (Ivan Vecera) [1639867]
+
+* Tue Oct 23 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-31.el8]
+- [rpmspec] redhat: add optional bpf_samples package (Jiri Benc) [1611579]
+- [powerpc] powerpc/time: Fix clockevent_decrementer initalisation for PR KVM (Steve Best) [1641615]
+- [net] ip: frags: fix crash in ip_do_fragment() (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ipfrag: let ip(6)frag_high_thresh in ns be higher than in init_net (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ipv6: discard IP frag queue on more errors (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ip: fail fast on IP defrag errors (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ip: process in-order fragments efficiently (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ip: add helpers to process in-order fragments faster (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ipv6: defrag: drop non-last frags smaller than min mtu (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ipv4: frags: precedence bug in ip_expire() (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ip: use rb trees for IP frag queue (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] modify skb_rbtree_purge to return the truesize of all purged skbs (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [net] ip: discard IPv4 datagrams with overlapping segments (Sabrina Dubroca) [1616058] {CVE-2018-5391}
+- [fs] ovl: fix format of setxattr debug (Miklos Szeredi) [1636875]
+- [fs] ovl: fix access beyond unterminated strings (Miklos Szeredi) [1636875]
+- [fs] ovl: make symbol 'ovl_aops' static (Miklos Szeredi) [1636875]
+- [fs] vfs: swap names of (do,vfs)_clone_file_range() (Miklos Szeredi) [1636875]
+- [fs] ovl: fix freeze protection bypass in ovl_clone_file_range() (Miklos Szeredi) [1636875]
+- [fs] ovl: fix freeze protection bypass in ovl_write_iter() (Miklos Szeredi) [1636875]
+- [fs] ovl: fix memory leak on unlink of indexed file (Miklos Szeredi) [1636875]
+- [fs] ovl: fix oopses in ovl_fill_super() failure paths (Miklos Szeredi) [1636875]
+- [fs] ovl: add ovl_fadvise() (Miklos Szeredi) [1636875]
+- [fs] vfs: implement readahead(2) using POSIX_FADV_WILLNEED (Miklos Szeredi) [1636875]
+- [fs] vfs: add the fadvise() file operation (Miklos Szeredi) [1636875]
+- [fs] Documentation/filesystems: update documentation of file_operations (Miklos Szeredi) [1636875]
+- [fs] ovl: fix GPF in swapfile_activate of file from overlayfs over xfs (Miklos Szeredi) [1636875]
+- [fs] ovl: respect FIEMAP_FLAG_SYNC flag (Miklos Szeredi) [1636875]
+- [fs] ovl: Enable metadata only feature (Miklos Szeredi) [1636875]
+- [fs] ovl: Do not do metacopy only for ioctl modifying file attr (Miklos Szeredi) [1636875]
+- [fs] ovl: Do not do metadata only copy-up for truncate operation (Miklos Szeredi) [1636875]
+- [fs] ovl: add helper to force data copy-up (Miklos Szeredi) [1636875]
+- [fs] ovl: Check redirect on index as well (Miklos Szeredi) [1636875]
+- [fs] ovl: Set redirect on upper inode when it is linked (Miklos Szeredi) [1636875]
+- [fs] ovl: Set redirect on metacopy files upon rename (Miklos Szeredi) [1636875]
+- [fs] ovl: Do not set dentry type ORIGIN for broken hardlinks (Miklos Szeredi) [1636875]
+- [fs] ovl: Add an inode flag OVL_CONST_INO (Miklos Szeredi) [1636875]
+- [fs] ovl: Treat metacopy dentries as type OVL_PATH_MERGE (Miklos Szeredi) [1636875]
+- [fs] ovl: Check redirects for metacopy files (Miklos Szeredi) [1636875]
+- [fs] ovl: Move some dir related ovl_lookup_single() code in else block (Miklos Szeredi) [1636875]
+- [fs] ovl: Do not expose metacopy only dentry from d_real() (Miklos Szeredi) [1636875]
+- [fs] ovl: Open file with data except for the case of fsync (Miklos Szeredi) [1636875]
+- [fs] ovl: Add helper ovl_inode_realdata() (Miklos Szeredi) [1636875]
+- [fs] ovl: Store lower data inode in ovl_inode (Miklos Szeredi) [1636875]
+- [fs] ovl: Fix ovl_getattr() to get number of blocks from lower (Miklos Szeredi) [1636875]
+- [fs] ovl: Add helper ovl_dentry_lowerdata() to get lower data dentry (Miklos Szeredi) [1636875]
+- [fs] ovl: Copy up meta inode data from lowest data inode (Miklos Szeredi) [1636875]
+- [fs] ovl: Modify ovl_lookup() and friends to lookup metacopy dentry (Miklos Szeredi) [1636875]
+- [fs] ovl: Use out_err instead of out_nomem (Miklos Szeredi) [1636875]
+- [fs] ovl: A new xattr OVL_XATTR_METACOPY for file on upper (Miklos Szeredi) [1636875]
+- [fs] ovl: Add helper ovl_already_copied_up() (Miklos Szeredi) [1636875]
+- [fs] ovl: Copy up only metadata during copy up where it makes sense (Miklos Szeredi) [1636875]
+- [fs] ovl: During copy up, first copy up metadata and then data (Miklos Szeredi) [1636875]
+- [fs] ovl: Provide a mount option metacopy=on/off for metadata copyup (Miklos Szeredi) [1636875]
+- [fs] ovl: Move the copy up helpers to copy_up.c (Miklos Szeredi) [1636875]
+- [fs] ovl: Initialize ovl_inode->redirect in ovl_get_inode() (Miklos Szeredi) [1636875]
+- [fs] ovl: fix documentation of non-standard behavior (Miklos Szeredi) [1636875]
+- [fs] ovl: obsolete "check_copy_up" module option (Miklos Szeredi) [1636875]
+- [fs] vfs: remove open_flags from d_real() (Miklos Szeredi) [1636875]
+- [fs] Revert "fsnotify: support overlayfs" (Miklos Szeredi) [1636875]
+- [fs] Partially revert "locks: fix file locking on overlayfs" (Miklos Szeredi) [1636875]
+- [fs] Revert "vfs: do get_write_access() on upper layer of overlayfs" (Miklos Szeredi) [1636875]
+- [fs] Revert "vfs: add flags to d_real()" (Miklos Szeredi) [1636875]
+- [fs] Revert "vfs: update ovl inode before relatime check" (Miklos Szeredi) [1636875]
+- [fs] Revert "ovl: fix relatime for directories" (Miklos Szeredi) [1636875]
+- [fs] vfs: fix freeze protection in mnt_want_write_file() for overlayfs (Miklos Szeredi) [1636875]
+- [fs] Revert "ovl: don't allow writing ioctl on lower layer" (Miklos Szeredi) [1636875]
+- [fs] Revert "ovl: fix may_write_real() for overlayfs directories" (Miklos Szeredi) [1636875]
+- [fs] vfs: don't open real (Miklos Szeredi) [1636875]
+- [fs] ovl: add reflink/copyfile/dedup support (Miklos Szeredi) [1636875]
+- [fs] ovl: add O_DIRECT support (Miklos Szeredi) [1636875]
+- [fs] ovl: add ovl_fiemap() (Miklos Szeredi) [1636875]
+- [fs] ovl: add lsattr/chattr support (Miklos Szeredi) [1636875]
+- [fs] ovl: add ovl_fallocate() (Miklos Szeredi) [1636875]
+- [fs] ovl: add ovl_mmap() (Miklos Szeredi) [1636875]
+- [fs] ovl: add ovl_fsync() (Miklos Szeredi) [1636875]
+- [fs] ovl: add ovl_write_iter() (Miklos Szeredi) [1636875]
+- [fs] ovl: add ovl_read_iter() (Miklos Szeredi) [1636875]
+- [fs] ovl: add helper to return real file (Miklos Szeredi) [1636875]
+- [fs] ovl: stack file ops (Miklos Szeredi) [1636875]
+- [fs] ovl: deal with overlay files in ovl_d_real() (Miklos Szeredi) [1636875]
+- [fs] ovl: copy up file size as well (Miklos Szeredi) [1636875]
+- [fs] Revert "Revert "ovl: get_write_access() in truncate"" (Miklos Szeredi) [1636875]
+- [fs] ovl: copy up inode flags (Miklos Szeredi) [1636875]
+- [fs] ovl: copy up times (Miklos Szeredi) [1636875]
+- [fs] vfs: export vfs_dedupe_file_range_one() to modules (Miklos Szeredi) [1636875]
+- [fs] vfs: export vfs_ioctl() to modules (Miklos Szeredi) [1636875]
+- [fs] vfs: make open_with_fake_path() not contribute to nr_files (Miklos Szeredi) [1636875]
+- [fs] ovl: fix wrong use of impure dir cache in ovl_iterate() (Miklos Szeredi) [1636875]
+- [fs] new helper: open_with_fake_path() (Miklos Szeredi) [1636875]
+- [fs] now we can fold open_check_o_direct() into do_dentry_open() (Miklos Szeredi) [1636875]
+- [fs] lift fput() on late failures into path_openat() (Miklos Szeredi) [1636875]
+- [fs] fold put_filp() into fput() (Miklos Szeredi) [1636875]
+- [fs] introduce FMODE_OPENED (Miklos Szeredi) [1636875]
+- [fs] ->file_open(): lose cred argument (Miklos Szeredi) [1636875]
+- [fs] security_file_open(): lose cred argument (Miklos Szeredi) [1636875]
+- [fs] get rid of cred argument of vfs_open() and do_dentry_open() (Miklos Szeredi) [1636875]
+- [fs] pass ->f_flags value to alloc_empty_file() (Miklos Szeredi) [1636875]
+- [fs] pass creds to get_empty_filp(), make sure dentry_open() passes the right creds (Miklos Szeredi) [1636875]
+- [fs] alloc_file(): switch to passing O_... flags instead of FMODE_... mode (Miklos Szeredi) [1636875]
+- [fs] make sure do_dentry_open() won't return positive as an error (Miklos Szeredi) [1636875]
+- [fs] create_pipe_files(): use fput() if allocation of the second file fails (Miklos Szeredi) [1636875]
+- [fs] turn filp_clone_open() into inline wrapper for dentry_open() (Miklos Szeredi) [1636875]
+- [fs] fold security_file_free() into file_free() (Miklos Szeredi) [1636875]
+- [fs] vfs: dedupe: extract helper for a single dedup (Miklos Szeredi) [1636875]
+- [fs] vfs: dedupe: rationalize args (Miklos Szeredi) [1636875]
+- [fs] vfs: dedupe: return int (Miklos Szeredi) [1636875]
+- [fs] vfs: limit size of dedupe (Miklos Szeredi) [1636875]
+- [fs] ovl: set I_CREATING on inode being created (Miklos Szeredi) [1636875]
+
+* Tue Oct 23 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-30.el8]
+- [rpmspec] redhat spec: Add new perf tools file (Jiri Olsa) [1579484]
+- [tools] perf tools: Fix use of alternatives to find JDIR (Jiri Olsa) [1579484]
+- [net] net: sock_diag: Fix spectre v1 gadget in __sock_diag_cmd() (Paolo Abeni) [1637576]
+- [thunderbolt] thunderbolt: Add Intel as copyright holder (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Convert rest of the driver files to use SPDX identifier (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Print connected devices (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Make the driver less verbose (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Remove a meaningless NULL pointer check before dma_pool_destroy (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Initialize after IOMMUs (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Do not handle ICM events after domain is stopped (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Add support for runtime PM (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Remove redundant variable 'approved' (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Use correct ICM commands in system suspend (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: No need to take tb->lock in domain suspend/complete (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Do not unnecessarily call ICM get route (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Use 64-bit DMA mask if supported by the platform (Jarod Wilson) [1588929]
+- [thunderbolt] thunderbolt: Fix small typo in variable name (Jarod Wilson) [1588929]
+- [mm] Revert x86/e820: put !E820_TYPE_RAM regions into memblock.reserved (Baoquan He) [1639450]
+- [mm] mm: return zero_resv_unavail optimization (Baoquan He) [1639450]
+- [mm] mm: zero remaining unavailable struct pages (Baoquan He) [1639450]
+- [mm] mm: skip invalid pages block at a time in zero_resv_unresv() (Baoquan He) [1639450]
+- [mm] docs/mm: memblock: update kernel-doc comments (Baoquan He) [1639450]
+- [mm] mm/memblock: add a name for memblock flags enumeration (Baoquan He) [1639450]
+- [block] blk-wbt: wake up all when we scale up, not down (Ming Lei) [1640035]
+
+* Sat Oct 20 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-29.el8]
+- [video] fbdev: make FB_BACKLIGHT a tristate (Rob Clark) [1589158]
+- [kernel] EDAC: Raise the maximum number of memory controllers (Aristeu Rozanski) [1634077]
+- [netdrv] i40e: disallow changing the number of descriptors when AF_XDP is on (Stefan Assmann) [1630760]
+- [netdrv] i40e: clean zero-copy XDP Rx ring on shutdown/reset (Stefan Assmann) [1630760]
+- [netdrv] i40e: clean zero-copy XDP Tx ring on shutdown/reset (Stefan Assmann) [1630760]
+- [netdrv] i40e: Remove unused msglen parameter from virtchnl functions (Stefan Assmann) [1630760]
+- [netdrv] i40e: fix double 'NIC Link is Down' messages (Stefan Assmann) [1630760]
+- [netdrv] i40e: add a helper function to validate a VF based on the vf id (Stefan Assmann) [1630760]
+- [netdrv] i40e: use declared variables for pf and hw (Stefan Assmann) [1630760]
+- [netdrv] i40e: Unset promiscuous settings on VF reset (Stefan Assmann) [1630760]
+- [netdrv] i40e: Fix VF's link state notification (Stefan Assmann) [1630760]
+- [netdrv] intel-ethernet: use correct module license (Stefan Assmann) [1630760]
+- [netdrv] i40e(vf): remove i40e_ethtool_stats.h header file (Stefan Assmann) [1630760]
+- [netdrv] i40e: fix possible compiler warning in xsk TX path (Stefan Assmann) [1630760]
+- [netdrv] i40e: add AF_XDP zero-copy Tx support (Stefan Assmann) [1630760]
+- [netdrv] i40e: move common Tx functions to i40e_txrx_common.h (Stefan Assmann) [1630760]
+- [netdrv] xsk: i40e: get rid of useless struct xdp_umem_props (Stefan Assmann) [1630760]
+- [netdrv] i40e: add AF_XDP zero-copy Rx support (Stefan Assmann) [1630760]
+- [netdrv] i40e: move common Rx functions to i40e_txrx_common.h (Stefan Assmann) [1630760]
+- [netdrv] i40e: refactor Rx path for re-use (Stefan Assmann) [1630760]
+- [netdrv] i40e: added queue pair disable/enable functions (Stefan Assmann) [1630760]
+- [netdrv] i40e: Prevent deleting MAC address from VF when set by PF (Stefan Assmann) [1630760]
+- [netdrv] i40e: hold the rtnl lock on clearing interrupt scheme (Stefan Assmann) [1630760]
+- [netdrv] i40e: Check and correct speed values for link on open (Stefan Assmann) [1630760]
+- [netdrv] i40e: report correct statistics when XDP is enabled (Stefan Assmann) [1630760]
+- [netdrv] i40e: static analysis report from community (Stefan Assmann) [1630760]
+- [netdrv] i40e: use correct length for strncpy (Stefan Assmann) [1630760]
+- [netdrv] i40evf: Change a VF mac without reloading the VF driver (Stefan Assmann) [1630760]
+- [netdrv] i40e: move ethtool stats boiler plate code to i40e_ethtool_stats.h (Stefan Assmann) [1630760]
+- [netdrv] i40e: convert queue stats to i40e_stats array (Stefan Assmann) [1630760]
+- [netdrv] i40e: fix condition of WARN_ONCE for stat strings (Stefan Assmann) [1630760]
+- [netdrv] i40e_txrx: mark expected switch fall-through (Stefan Assmann) [1630760]
+- [netdrv] i40e_main: mark expected switch fall-through (Stefan Assmann) [1630760]
+- [netdrv] i40e: fix i40e_add_queue_stats data pointer update (Stefan Assmann) [1630760]
+- [netdrv] i40e: Add AQ command for rearrange NVM structure (Stefan Assmann) [1630760]
+- [netdrv] i40e: Add additional return code to i40e_asq_send_command (Stefan Assmann) [1630760]
+- [netdrv] i40e: fix warning about shadowed ring parameter (Stefan Assmann) [1630760]
+- [netdrv] i40e: remove unnecessary i variable causing -Wshadow warning (Stefan Assmann) [1630760]
+- [netdrv] i40e: convert priority flow control stats to use helpers (Stefan Assmann) [1630760]
+- [netdrv] i40e: convert VEB TC stats to use an i40e_stats array (Stefan Assmann) [1630760]
+- [netdrv] i40e: Set fec_config when forcing link state (Stefan Assmann) [1630760]
+- [netdrv] i40e: add helper to copy statistic values into ethtool buffer (Stefan Assmann) [1630760]
+- [netdrv] i40e: add helper function for copying strings from stat arrays (Stefan Assmann) [1630760]
+- [netdrv] i40e: Remove duplicated prepare call in i40e_shutdown (Stefan Assmann) [1630760]
+- [netdrv] cls_flower: fix error values for commands not supported by drivers (Stefan Assmann) [1630760]
+- [netdrv] net: drivers/net: Convert random_ether_addr to eth_random_addr (Stefan Assmann) [1630760]
+- [net] ipv4: don't let PMTU updates increase route MTU (Sabrina Dubroca) [1638845]
+- [net] ipv4: update fnhe_pmtu when first hop's MTU changes (Sabrina Dubroca) [1638845]
+- [net] xsk: add a simple buffer reuse queue (Ivan Vecera) [1634774]
+- [net] samples/bpf: add -c/--copy -z/--zero-copy flags to xdpsock (Ivan Vecera) [1634774]
+- [net] add napi_if_scheduled_mark_missed (Ivan Vecera) [1634774]
+- [net] xsk: expose xdp_umem_get_(data, dma) to drivers (Ivan Vecera) [1634774]
+- [net] xdp: export xdp_rxq_info_unreg_mem_model (Ivan Vecera) [1634774]
+- [net] xdp: implement convert_to_xdp_frame for MEM_TYPE_ZERO_COPY (Ivan Vecera) [1634774]
+- [net] xdp: Helper function to clear kernel pointers in xdp_frame (Ivan Vecera) [1634774]
+- [net] xsk: i40e: get rid of useless struct xdp_umem_props (Ivan Vecera) [1631809]
+- [net] xdp: fix uninitialized 'err' variable (Ivan Vecera) [1631805]
+- [tools] headers uapi: Update tools's copy of linux/if_link.h (Ivan Vecera) [1631805]
+- [tools] selftests/bpf: add test for multiple programs (Ivan Vecera) [1631805]
+- [net] netdevsim: add support for simultaneous driver and hw XDP (Ivan Vecera) [1631805]
+- [net] xdp: support simultaneous driver and hw XDP attachment (Ivan Vecera) [1631805]
+- [net] xdp: factor out common program/flags handling from drivers (Ivan Vecera) [1631805]
+- [net] xdp: don't make drivers report attachment mode (Ivan Vecera) [1631805]
+- [net] xdp: add per mode attributes for attached programs (Ivan Vecera) [1631805]
+- [net] sched: cls_flower: set correct offload data in fl_reoffload (Ivan Vecera) [1631522]
+- [net] sched: call reoffload op on block callback reg (Ivan Vecera) [1631522]
+- [net] sched: cls_bpf: implement offload tcf_proto_op (Ivan Vecera) [1631522]
+- [net] sched: cls_u32: implement offload tcf_proto_op (Ivan Vecera) [1631522]
+- [net] sched: cls_matchall: implement offload tcf_proto_op (Ivan Vecera) [1631522]
+- [net] sched: cls_flower: implement offload tcf_proto_op (Ivan Vecera) [1631522]
+- [net] sched: add tcf_proto_op to offload a rule (Ivan Vecera) [1631522]
+- [net] sched: pass extack pointer to block binds and cb registration (Ivan Vecera) [1631522]
+
+* Fri Oct 19 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-28.el8]
+- [rpmspec] kernel.spec: s390/zfcpdump: add -zfcpdump kernel variant (Philipp Rudo) [1567291]
+- [kernel] rh_taint: correct loaddable module support dependencies (Philipp Rudo) [1567291]
+- [powerpc] KVM: PPC: Book3S HV: Avoid crash from THP collapse during radix page fault (David Gibson) [1639555]
+- [irqchip] irqchip/gic-v3-its: Allow use of LPI tables in reserved memory (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Register LPI tables with EFI config table (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Check that all RDs have the same property table (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Use pre-programmed redistributor tables with kdump kernels (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Allow use of pre-programmed LPI tables (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Keep track of property table's PA and VA (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Move pending table allocation to init time (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Split property table clearing from allocation (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Simplify LPI_PENDBASE_SZ usage (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Change initialization ordering for LPIs (Jeremy Linton) [1625746]
+- [firmware] efi: add API to reserve memory persistently across kexec reboot (Jeremy Linton) [1625746]
+- [firmware] efi/arm: libstub: add a root memreserve config table (Jeremy Linton) [1625746]
+- [firmware] efi: honour memory reservations passed via a linux specific config table (Jeremy Linton) [1625746]
+- [irqchip] irqchip/gic-v3-its: Cap lpi_id_bits to reduce memory footprint (Jeremy Linton) [1625746]
+- [infiniband] RDMA/bnxt_re: Fix system crash during RDMA resource initialization (Selvin Xavier) [1637122]
+- [infiniband] RDMA/bnxt_re: Fix couple of memory leaks that could lead to IOMMU call traces (Selvin Xavier) [1637120]
+- [arm64] arm64: KVM: Sanitize PSTATE.M when being set from userspace (Wei Huang) [1635721] {CVE-2018-18021}
+- [arm64] arm64: KVM: Tighten guest core register access from userspace (Wei Huang) [1635721] {CVE-2018-18021}
+- [fs] fs/cifs: require sha512 (Leif Sahlberg) [1610619]
+- [fs] smb3: simplify code by removing CONFIG_CIFS_SMB311 (Leif Sahlberg) [1610619]
+- [fs] smb3: add support for statfs for smb3.1.1 posix extensions (Leif Sahlberg) [1610619]
+- [fs] cifs: allow disabling insecure dialects in the config (Leif Sahlberg) [1610619]
+- [fs] smb3: if server does not support posix do not allow posix mount option (Leif Sahlberg) [1610619]
+
+* Tue Oct 16 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-27.el8]
+- [security] cap_inode_getsecurity: use d_find_any_alias() instead of d_find_alias() (Joe Lawrence) [1638647]
+- [powerpc] powerpc/cacheinfo: Report the correct shared_cpu_map on big-cores (Steve Best) [1639265]
+- [powerpc] powerpc: Use cpu_smallcore_sibling_mask at SMT level on bigcores (Steve Best) [1639265]
+- [powerpc] powerpc: Detect the presence of big-cores via ibm, thread-groups (Steve Best) [1639265]
+- [x86] mark amd rome as unsupported (David Arcari) [1638506]
+- [netdrv] qed: Add support for virtual link (Chad Dupuis) [1638013]
+- [netdrv] qede: Add driver support for 20G link speed (Chad Dupuis) [1638013]
+- [netdrv] qed: Add driver support for 20G link speed (Chad Dupuis) [1638013]
+- [netdrv] qed: Fix shmem structure inconsistency between driver and the mfw (Chad Dupuis) [1638013]
+- [netdrv] qed: Add missing device config for RoCE EDPM in UFP mode (Chad Dupuis) [1638013]
+- [netdrv] qed: Add a flag which indicates if offload TC is set (Chad Dupuis) [1638013]
+- [netdrv] qed: Do not add VLAN 0 tag to untagged frames in multi-function mode (Chad Dupuis) [1638013]
+- [netdrv] qed: Fix populating the invalid stag value in multi function mode (Chad Dupuis) [1638013]
+- [tools] perf python: Fix pyrf_evlist__read_on_cpu() interface (Jiri Olsa) [1628229]
+- [tools] perf mmap: Store real cpu number in 'struct perf_mmap' (Jiri Olsa) [1628229]
+
+* Tue Oct 16 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-26.el8]
+- [fs] gfs2: Fix iomap buffered write support for journaled files (2) (Andreas Grunbacher) [1637944]
+- [xen] xen/manage: don't complain about an empty value in control/sysrq node (Vitaly Kuznetsov) [1623344]
+- [drm] drm/amdgpu: Silence harmless WARN_ON() during MST disable (Lyude Paul) [1638137]
+- [netdrv] net: macb: Fix regression breaking non-MDIO fixed-link PHYs (Petr Oros) [1638259]
+- [netdrv] net: macb: do not disable MDIO bus at open/close time (Petr Oros) [1638259]
+- [fs] proc: restrict kernel stack dumps to root (Waiman Long) [1638044]
+- [base] firmware: Always initialize the fw_priv list object (Waiman Long) [1638044]
+- [base] firmware: Fix security issue with request_firmware_into_buf() (Waiman Long) [1638044]
+- [fs] sysfs: Do not return POSIX ACL xattrs via listxattr (Waiman Long) [1638044]
+- [fs] vfs: don't evict uninitialized inode (Waiman Long) [1638044]
+- [fs] new primitive: discard_new_inode() (Waiman Long) [1638044]
+- [arm64] arm64: jump_label.h: use asm_volatile_goto macro instead of "asm goto" (Waiman Long) [1638044]
+- [kernel] sched/topology: Set correct NUMA topology type (Waiman Long) [1638044]
+- [kernel] bpf: 32-bit RSH verification must truncate input before the ALU op (Waiman Long) [1638044]
+- [mm] mm: madvise(MADV_DODUMP): allow hugetlbfs pages (Waiman Long) [1638044]
+- [x86] x86/pti: Fix section mismatch warning/error (Waiman Long) [1638044]
+- [kernel] uaccess: Fix is_source param for check_copy_size() in copy_to_iter_mcsafe() (Waiman Long) [1638044]
+- [x86] x86/mm: Expand static page table for fixmap space (Waiman Long) [1638044]
+- [fs] fs/lock: skip lock owner pid translation in case we are in init_pid_ns (Waiman Long) [1638044]
+- [x86] perf/x86/intel/lbr: Fix incomplete LBR call stack (Waiman Long) [1638044]
+- [kernel] perf/hw_breakpoint: Split attribute parse and commit (Waiman Long) [1638044]
+- [kernel] bitfield: fix *_encode_bits() (Waiman Long) [1638044]
+- [kernel] posix-timers: Sanitize overrun handling (Waiman Long) [1638044]
+- [kernel] posix-timers: Make forward callback return s64 (Waiman Long) [1638044]
+- [kernel] alarmtimer: Prevent overflow for relative nanosleep (Waiman Long) [1638044]
+- [x86] x86/entry/64: Add two more instruction suffixes (Waiman Long) [1638044]
+- [powerpc] powerpc/kdump: Handle crashkernel memory reservation failure (Waiman Long) [1638044]
+- [s390] s390/mm: correct allocate_pgste proc_handler callback (Waiman Long) [1638044]
+- [x86] x86/numa_emulation: Fix emulated-to-physical node mapping (Waiman Long) [1638044]
+- [x86] x86/paravirt: Fix some warning messages (Waiman Long) [1638044]
+- [kernel] sched/fair: Fix vruntime_normalized() for remote non-migration wakeup (Waiman Long) [1638044]
+- [kernel] bpf/verifier: disallow pointer subtraction (Waiman Long) [1638044]
+- [mm] mm: shmem.c: Correctly annotate new inodes for lockdep (Waiman Long) [1638044]
+- [kernel] sched/core: Use smp_mb() in wake_woken_function() (Waiman Long) [1638044]
+- [kernel] bpf: fix rcu annotations in compute_effective_progs() (Waiman Long) [1638044]
+- [x86] x86/mm/pti: Add an overflow check to pti_clone_pmds() (Waiman Long) [1638044]
+- [x86] x86/pti: Check the return value of pti_user_pagetable_walk_pmd() (Waiman Long) [1638044]
+- [x86] x86/pti: Check the return value of pti_user_pagetable_walk_p4d() (Waiman Long) [1638044]
+- [powerpc] powerpc/pseries/mm: call H_BLOCK_REMOVE (Steve Best) [1637116]
+- [powerpc] powerpc/pseries/mm: factorize PTE slot computation (Steve Best) [1637116]
+- [powerpc] powerpc/pseries/mm: Introducing FW_FEATURE_BLOCK_REMOVE (Steve Best) [1637116]
+- [watchdog] watchdog/hpwdt: Disable PreTimeout when Timeout is smaller (Joseph Szczypek) [1632945]
+- [watchdog] watchdog: hpwdt: Update Driver Documentation (Joseph Szczypek) [1632945]
+- [watchdog] watchdog: hpwdt: Update version number (Joseph Szczypek) [1632945]
+- [watchdog] watchdog: hpwdt: Module parameter alias (Joseph Szczypek) [1632945]
+- [watchdog] watchdog: hpwdt: Display module parameters (Joseph Szczypek) [1632945]
+- [watchdog] watchdog: hpwdt: Claim NMI from iLO (Joseph Szczypek) [1632945]
+- [watchdog] watchdog: hpwdt: Initialize pretimeout from module parameter (Joseph Szczypek) [1632945]
+
+* Sat Oct 13 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-25.el8]
+- [mm] mm/sparse: delete old sparse_init and enable new one (Baoquan He) [1625105]
+- [mm] mm/sparse: add new sparse_init_nid() and sparse_init() (Baoquan He) [1625105]
+- [mm] mm/sparse: move buffer init/fini to the common place (Baoquan He) [1625105]
+- [mm] mm/sparse: use the new sparse buffer functions in non-vmemmap (Baoquan He) [1625105]
+- [mm] mm/sparse: abstract sparse buffer allocations (Baoquan He) [1625105]
+- [mm] mm/sparse: optimize memmap allocation during sparse_init() (Baoquan He) [1625105]
+- [mm] mm/sparse.c: add a new parameter 'data_unit_size' for alloc_usemap_and_memmap (Baoquan He) [1625105]
+- [mm] mm/sparsemem.c: defer the ms->section_mem_map clearing (Baoquan He) [1625105]
+- [mm] mm/sparse.c: add a static variable nr_present_sections (Baoquan He) [1625105]
+- [mm] mm/sparse.c: make sparse_init_one_section void and remove check (Baoquan He) [1625105]
+- [target] scsi: target: iscsi: cxgbit: fix csk leak (Arjun Vynipadath) [1628864]
+- [target] scsi: target: iscsi: cxgbit: use pr_debug() instead of pr_info() (Arjun Vynipadath) [1628864]
+- [infiniband] iw_cxgb4: only allow 1 flush on user qps (Arjun Vynipadath) [1628865]
+- [infiniband] iw_cxgb4: pass window scale in flowc work request (Arjun Vynipadath) [1628865]
+- [infiniband] iw_cxgb4: remove duplicate memcpy() in c4iw_create_listen() (Arjun Vynipadath) [1628865]
+- [netdrv] mlxsw: spectrum_switchdev: Do not leak RIFs when removing bridge (Petr Oros) [1638268]
+- [tty] tty: vt_ioctl: fix potential Spectre v1 (Prarit Bhargava) [1637123]
+- [powerpc] powerpc/time: Add set_state_oneshot_stopped decrementer callback (Steve Best) [1638287]
+- [powerpc] powerpc/time: Use clockevents_register_device(), fixing an issue with large decrementer (Steve Best) [1638287]
+- [hwmon] hwmon: (nct6775) Fix potential Spectre v1 (Dean Nelson) [1637464]
+- [vfio] vfio-pci: Disable binding to PFs with SR-IOV enabled (Alex Williamson) [1637871]
+- [netdrv] net: hns3: fix page_offset overflow when CONFIG_ARM64_64K_PAGES (Petr Oros) [1638385]
+- [netdrv] net: hns: fix skb->truesize underestimation (Petr Oros) [1638385]
+- [netdrv] net: hns: fix length and page_offset overflow when CONFIG_ARM64_64K_PAGES (Petr Oros) [1638385]
+- [netdrv] net: hns3: Fix get_vector ops in hclgevf_main module (Petr Oros) [1638385]
+- [netdrv] net: hns3: Fix warning bug when doing lp selftest (Petr Oros) [1638385]
+- [netdrv] net: hns3: Fix for mac pause not disable in pfc mode (Petr Oros) [1638385]
+- [netdrv] net: hns3: Fix for mailbox message truncated problem (Petr Oros) [1638385]
+- [netdrv] net: hns3: Fix return value error in hns3_reset_notify_down_enet (Petr Oros) [1638385]
+- [netdrv] net: hns3: Fix for reset_level default assignment probelm (Petr Oros) [1638385]
+- [netdrv] net: hns3: Reset net device with rtnl_lock (Petr Oros) [1638385]
+- [netdrv] net: hns3: Fix for phy link issue when using marvell phy driver (Petr Oros) [1638385]
+- [netdrv] net: hns3: Fix for command format parsing error in hclge_is_all_function_id_zero (Petr Oros) [1638385]
+- [net] xprtrdma: Fix disconnect regression (Don Dutile) [1635418]
+- [infiniband] RDMA/uverbs: Fix validity check for modify QP (Don Dutile) [1635418]
+- [infiniband] IB/srp: Avoid that sg_reset -d $srp_device triggers an infinite loop (Don Dutile) [1635418]
+- [infiniband] ucma: fix a use-after-free in ucma_resolve_ip() (Don Dutile) [1635418]
+- [infiniband] RDMA/uverbs: Atomically flush and mark closed the comp event queue (Don Dutile) [1635418]
+- [infiniband] RDMA/mlx4: Ensure that maximal send/receive SGE less than supported by HW (Don Dutile) [1635418 1623100]
+- [infiniband] RDMA/cma: Protect cma dev list with lock (Don Dutile) [1635418]
+- [infiniband] IB/ipoib: Avoid a race condition between start_xmit and cm_rep_handler (Don Dutile) [1635418]
+- [infiniband] RDMA/ucma: check fd type in ucma_migrate_id() (Don Dutile) [1635418]
+- [infiniband] RDMA/rxe: Set wqe->status correctly if an unexpected response is received (Don Dutile) [1635418]
+- [infiniband] IB/IPoIB: Set ah valid flag in multicast send flow (Don Dutile) [1635418]
+- [infiniband] RDMA/core: Avoid holding lock while initializing fields on stack (Don Dutile) [1635418]
+- [infiniband] IB/rxe: Drop QP0 silently (Don Dutile) [1635418]
+- [infiniband] RDMA/umem: Don't hold mmap_sem for too long (Don Dutile) [1635418]
+- [infiniband] IB/srpt: Fix srpt_cm_req_recv() error path (2/2) (Don Dutile) [1635418]
+- [infiniband] IB/srpt: Fix srpt_cm_req_recv() error path (1/2) (Don Dutile) [1635418]
+- [infiniband] RDMA: Fix storage of PortInfo CapabilityMask in the kernel (Don Dutile) [1635418]
+- [infiniband] IB/core: type promotion bug in rdma_rw_init_one_mr() (Don Dutile) [1635418]
+- [infiniband] RDMA/i40w: Hold read semaphore while looking after VMA (Don Dutile) [1635418]
+- [infiniband] vmw_pvrdma: Release netdev when vmxnet3 module is removed (Don Dutile) [1635418]
+- [infiniband] ib_srpt: Fix a use-after-free in __srpt_close_all_ch() (Don Dutile) [1635418]
+- [infiniband] ib_srpt: Fix a use-after-free in srpt_close_ch() (Don Dutile) [1635418]
+- [infiniband] IB/srpt: Support HCAs with more than two ports (Don Dutile) [1635418]
+- [infiniband] IB/rxe: don't clear the tx queue on every transfer (Don Dutile) [1635418]
+- [infiniband] IB/core: add max_send_sge and max_recv_sge attributes (Don Dutile) [1635418 1623100]
+- [infiniband] IB/rxe: support for 802.1q VLAN on the listener (Don Dutile) [1635418]
+- [netdrv] cxgb4: impose mandatory VLAN usage when non-zero TAG ID (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: when max_tx_rate is 0 disable tx rate limiting (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: do not return DUPLEX_UNKNOWN when link is down (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: expose stats fetched from firmware via debugfs (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: remove stats fetched from firmware (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: specify IQTYPE in fw_iq_cmd (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: Fix the condition to check if the card is T5 (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: Support ethtool private flags (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: Add support for FW_ETH_TX_PKT_VM_WR (Arjun Vynipadath) [1628863]
+- [netdrv] cxgb4: Add flag tc_flower_initialized (Arjun Vynipadath) [1628863]
+- [s390] s390/zcrypt: remove VLA usage from the AP bus (Philipp Rudo) [1637865]
+- [s390] s390/ap_bus: replace PTR_RET with PTR_ERR_OR_ZERO (Philipp Rudo) [1637865]
+- [s390] s390/crypto: fix gcc 8 stringop-truncation warning (Philipp Rudo) [1637865]
+- [s390] s390/zcrypt: code beautify (Philipp Rudo) [1637865]
+- [s390] s390/zcrypt: add copy_from_user length plausibility checks (Philipp Rudo) [1637865]
+- [s390] s390/zcrypt: Show load of cards and queues in sysfs (Philipp Rudo) [1637865]
+- [s390] s390/kvm: fix deadlock when killed by oom (Philipp Rudo) [1638264]
+- [fs] xfs: fix data corruption w/ unaligned reflink ranges (Brian Foster) [1633476]
+- [fs] xfs: fix data corruption w/ unaligned dedupe ranges (Brian Foster) [1633476]
+- [fs] xfs: update ctime and remove suid before cloning files (Brian Foster) [1633476]
+- [fs] xfs: zero posteof blocks when cloning above eof (Brian Foster) [1633476]
+- [fs] xfs: refactor clonerange preparation into a separate helper (Brian Foster) [1633476]
+- [netdrv] nfp: avoid buffer leak when FW communication fails (Petr Oros) [1638233]
+- [netdrv] nfp: don't fail probe on pci_sriov_set_totalvfs() errors (Petr Oros) [1638233]
+- [netdrv] nfp: wait for posted reconfigs when disabling the device (Petr Oros) [1638233]
+- [netdrv] liquidio: fix hang when re-binding VF host drv after running DPDK VF driver (Petr Oros) [1638224]
+- [netdrv] r8169: set RxConfig after tx/rx is enabled for RTL8169sb/8110sb devices (Petr Oros) [1638210]
+- [netdrv] r8169: add support for NCube 8168 network card (Petr Oros) [1638210]
+- [netdrv] r8169: don't use MSI-X on RTL8106e (Petr Oros) [1638210]
+- [netdrv] r8169: don't use MSI-X on RTL8168g (Petr Oros) [1638210]
+- [powerpc] KVM: PPC: Book3S HV: Fix guest r11 corruption with POWER9 TM workarounds (David Gibson) [1637766]
+- [drm] drm/amdgpu: Suppress keypresses from ACPI_VIDEO events (Lyude Paul) [1631918]
+- [infiniband] IB/hfi1: Remove race conditions in user_sdma send path (Alex Estrin) [1637068]
+- [infiniband] IB/hfi1: Eliminate races in the SDMA send error path (Alex Estrin) [1637068]
+- [infiniband] IB/hfi1: Fix destroy_qp hang after a link down (Alex Estrin) [1637068]
+- [infiniband] IB/hfi1: Fix context recovery when PBC has an UnsupportedVL (Alex Estrin) [1637068]
+- [infiniband] IB/hfi1: Invalid user input can result in crash (Alex Estrin) [1637068]
+- [infiniband] IB/hfi1: Fix SL array bounds check (Alex Estrin) [1637068]
+- [powerpc] powerpc/fadump: re-register firmware-assisted dump if already registered (Steve Best) [1637383]
+- [powerpc] powerpc/fadump: cleanup crash memory ranges support (Steve Best) [1637383]
+- [powerpc] powerpc/fadump: merge adjacent memory ranges to reduce PT_LOAD segements (Steve Best) [1637383]
+- [powerpc] powerpc/fadump: handle crash memory ranges array index overflow (Steve Best) [1637383]
+- [scsi] scsi: qedi: Initialize the stats mutex lock (Chad Dupuis) [1637245]
+- [fs] gfs2: Fix iomap buffered write support for journaled files (Andreas Grunbacher) [1637944]
+- [fs] gfs2: eliminate update_rgrp_lvb_unlinked (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Fix gfs2_testbit to use clone bitmaps (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Get rid of gfs2_ea_strlen (Andreas Grunbacher) [1637944]
+- [fs] GFS2: rgrp free blocks used incorrectly (Andreas Grunbacher) [1637944]
+- [fs] gfs2: remove redundant variable 'moved' (Andreas Grunbacher) [1637944]
+- [fs] gfs2: use iomap_readpage for blocksize == PAGE_SIZE (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Use iomap for stuffed direct I/O reads (Andreas Grunbacher) [1637944]
+- [fs] gfs2: fallocate_chunk: Always initialize struct iomap (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Remove gfs2_write_(begin,end) (Andreas Grunbacher) [1637944]
+- [fs] gfs2: iomap direct I/O support (Andreas Grunbacher) [1637944]
+- [fs] gfs2: gfs2_extent_length cleanup (Andreas Grunbacher) [1637944]
+- [fs] gfs2: iomap buffered write support (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Further iomap cleanups (Andreas Grunbacher) [1637944]
+- [fs] fs: gfs2: Adding new return type vm_fault_t (Andreas Grunbacher) [1637944]
+- [fs] gfs2: using posix_acl_xattr_size instead of posix_acl_to_xattr (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Don't reject a supposedly full bitmap if we have blocks reserved (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Eliminate redundant ip->i_rgd (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Stop messing with ip->i_rgd in the rlist code (Andreas Grunbacher) [1637944]
+- [fs] gfs2: call ktime_get_coarse_real_ts64() directly (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Minor clarification to __gfs2_punch_hole (Andreas Grunbacher) [1637944]
+- [fs] gfs2: Don't withdraw under a spin lock (Andreas Grunbacher) [1637944]
+- [fs] gfs2: eliminate rs_inum and reduce the size of gfs2 inodes (Andreas Grunbacher) [1637944]
+- [drm] drm/nouveau/drm/nouveau: Grab runtime PM ref in nv50_mstc_detect() (Lyude Paul) [1628749]
+- [drm] drm/nouveau/disp: fix DP disable race (Lyude Paul) [1628749]
+- [drm] drm/nouveau/drm/nouveau: Don't forget to cancel hpd_work on suspend/unload (Lyude Paul) [1628749]
+- [drm] drm/nouveau/drm/nouveau: Prevent handling ACPI HPD events too early (Lyude Paul) [1628749]
+- [drm] drm/nouveau: Reset MST branching unit before enabling (Lyude Paul) [1628749]
+- [drm] drm/nouveau: Only write DP_MSTM_CTRL when needed (Lyude Paul) [1628749]
+- [drm] drm/nouveau: Remove useless poll_enable() call in drm_load() (Lyude Paul) [1628749]
+- [drm] drm/nouveau: Remove useless poll_disable() call in switcheroo_set_state() (Lyude Paul) [1628749]
+- [drm] drm/nouveau: Remove useless poll_enable() call in switcheroo_set_state() (Lyude Paul) [1628749]
+- [drm] drm/nouveau: Fix deadlocks in nouveau_connector_detect() (Lyude Paul) [1628749]
+- [drm] drm/nouveau/drm/nouveau: Use pm_runtime_get_noresume() in connector_detect() (Lyude Paul) [1628749]
+- [drm] drm/nouveau/drm/nouveau: Fix deadlock with fb_helper with async RPM requests (Lyude Paul) [1628749]
+- [drm] drm/nouveau: Remove duplicate poll_enable() in pmops_runtime_suspend() (Lyude Paul) [1628749]
+- [drm] drm/nouveau/drm/nouveau: Fix bogus drm_kms_helper_poll_enable() placement (Lyude Paul) [1628749]
+- [md] dm table: require that request-based DM be layered on blk-mq devices (Mike Snitzer) [1637682]
+- [md] dm: rename DM_TYPE_MQ_REQUEST_BASED to DM_TYPE_REQUEST_BASED (Mike Snitzer) [1637682]
+- [md] dm: remove legacy request-based IO path (Mike Snitzer) [1637682]
+- [md] dm linear: fix linear_end_io conditional definition (Mike Snitzer) [1637682]
+- [md] dm linear: eliminate linear_end_io call if CONFIG_DM_ZONED disabled (Mike Snitzer) [1637682]
+- [md] dm: fix report zone remapping to account for partition offset (Mike Snitzer) [1637682]
+- [md] dm cache: destroy migration_cache if cache target registration failed (Mike Snitzer) [1637682]
+- [md] dm cache: fix resize crash if user doesn't reload cache table (Mike Snitzer) [1637682]
+- [md] dm cache metadata: ignore hints array being too small during resize (Mike Snitzer) [1637682]
+- [md] dm raid: remove bogus const from decipher_sync_action() return type (Mike Snitzer) [1637682]
+- [md] dm mpath: fix attached_handler_name leak and dangling hw_handler_name pointer (Mike Snitzer) [1637682]
+- [md] dm thin metadata: fix __udivdi3 undefined on 32-bit (Mike Snitzer) [1637682]
+- [md] dm thin metadata: try to avoid ever aborting transactions (Mike Snitzer) [1637682]
+- [md] dm raid: bump target version, update comments and documentation (Mike Snitzer) [1637682]
+- [md] dm raid: fix RAID leg rebuild errors (Mike Snitzer) [1637682]
+- [md] dm raid: fix rebuild of specific devices by updating superblock (Mike Snitzer) [1637682]
+- [md] dm raid: fix stripe adding reshape deadlock (Mike Snitzer) [1637682]
+- [md] dm raid: fix reshape race on small devices (Mike Snitzer) [1637682]
+- [md] dm: disable CRYPTO_TFM_REQ_MAY_SLEEP to fix a GFP_KERNEL recursion deadlock (Mike Snitzer) [1637682]
+- [md] dm verity: fix crash on bufio buffer that was allocated with vmalloc (Mike Snitzer) [1637682]
+- [md] dm writecache: fix a crash due to reading past end of dirty_bitmap (Mike Snitzer) [1637682]
+- [md] dm crypt: don't decrease device limits (Mike Snitzer) [1637682]
+- [md] dm cache metadata: set dirty on all cache blocks after a crash (Mike Snitzer) [1637682]
+- [md] dm snapshot: remove stale FIXME in snapshot_map() (Mike Snitzer) [1637682]
+- [md] dm snapshot: improve performance by switching out_of_order_list to rbtree (Mike Snitzer) [1637682]
+- [md] dm kcopyd: avoid softlockup in run_complete_job (Mike Snitzer) [1637682]
+- [md] dm cache metadata: save in-core policy_hint_size to on-disk superblock (Mike Snitzer) [1637682]
+- [md] dm thin: stop no_space_timeout worker when switching to write-mode (Mike Snitzer) [1637682]
+- [md] dm kcopyd: return void from dm_kcopyd_copy() (Mike Snitzer) [1637682]
+- [md] dm thin: include metadata_low_watermark threshold in pool status (Mike Snitzer) [1637682]
+- [md] dm writecache: report start_sector in status line (Mike Snitzer) [1637682]
+- [md] dm crypt: convert essiv from ahash to shash (Mike Snitzer) [1637682]
+- [md] dm crypt: use wake_up_process() instead of a wait queue (Mike Snitzer) [1637682]
+- [md] dm integrity: recalculate checksums on creation (Mike Snitzer) [1637682]
+- [md] dm integrity: flush journal on suspend when using separate metadata device (Mike Snitzer) [1637682]
+- [md] dm integrity: use version 2 for separate metadata (Mike Snitzer) [1637682]
+- [md] dm integrity: allow separate metadata device (Mike Snitzer) [1637682]
+- [md] dm integrity: add ic->start in get_data_sector() (Mike Snitzer) [1637682]
+- [md] dm integrity: report provided data sectors in the status (Mike Snitzer) [1637682]
+- [md] dm integrity: implement fair range locks (Mike Snitzer) [1637682]
+- [md] dm integrity: decouple common code in dm_integrity_map_continue() (Mike Snitzer) [1637682]
+- [md] dm integrity: change 'suspending' variable from bool to int (Mike Snitzer) [1637682]
+- [md] dm delay: add flush as a third class of IO (Mike Snitzer) [1637682]
+- [md] dm delay: refactor repetitive code (Mike Snitzer) [1637682]
+- [md] dm cache: only allow a single io_mode cache feature to be requested (Mike Snitzer) [1637682]
+- [md] dm thin: update stale "Status" Documentation (Mike Snitzer) [1637682]
+- [pci] PCI: Reprogram bridge prefetch registers on resume (Myron Stowe) [1637155]
+- [input] Input: xen-kbdfront - fix multi-touch XenStore node's locations (Benjamin Tissoires) [1637027]
+- [input] Input: elantech - enable middle button of touchpad on ThinkPad P72 (Benjamin Tissoires) [1637027]
+- [hid] HID: i2c-hid: Use devm to allocate i2c_hid struct (Benjamin Tissoires) [1637027]
+- [hid] HID: input: fix leaking custom input node name (Benjamin Tissoires) [1637027]
+- [hid] HID: core: fix grouping by application (Benjamin Tissoires) [1637027]
+- [hid] HID: multitouch: fix Elan panels with 2 input modes declaration (Benjamin Tissoires) [1637027]
+- [input] Input: do not use WARN() in input_alloc_absinfo() (Benjamin Tissoires) [1637027]
+- [s390] s390: vfio-ap: setup APCB mask using KVM dedicated function (Cornelia Huck) [1508118]
+- [s390] KVM: s390: Tracing APCB changes (Cornelia Huck) [1508118]
+- [s390] KVM: s390: fix locking for crypto setting error path (Cornelia Huck) [1508118]
+- [s390] s390: doc: detailed specifications for AP virtualization (Cornelia Huck) [1508118]
+- [s390] KVM: s390: CPU model support for AP virtualization (Cornelia Huck) [1508118]
+- [s390] KVM: s390: device attrs to enable/disable AP interpretation (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-2 (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: allow guest FORMAT-1 CRYCB on host FORMAT-2 (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-1 (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: allow CRYCB FORMAT-0 (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: allow CRYCB FORMAT-1 (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: Allow CRYCB FORMAT-2 (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: Make use of CRYCB FORMAT2 clear (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: Do the CRYCB validation first (Cornelia Huck) [1508118]
+- [s390] KVM: s390: Clear Crypto Control Block when using vSIE (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: implement VFIO_DEVICE_RESET ioctl (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: zeroize the AP queues (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: implement VFIO_DEVICE_GET_INFO ioctl (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: implement mediated device open callback (Cornelia Huck) [1508118]
+- [s390] KVM: s390: interface to clear CRYCB masks (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: sysfs interface to view matrix mdev matrix (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: sysfs interfaces to configure control domains (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: sysfs interfaces to configure domains (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: sysfs interfaces to configure adapters (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: register matrix device with VFIO mdev framework (Cornelia Huck) [1508118]
+- [s390] s390: vfio-ap: base implementation of VFIO AP device driver (Cornelia Huck) [1508118]
+- [s390] KVM: s390: refactor crypto initialization (Cornelia Huck) [1508118]
+- [s390] KVM: s390: introduce and use KVM_REQ_VSIE_RESTART (Cornelia Huck) [1508118]
+- [s390] KVM: s390: vsie: simulate VCPU SIE entry/exit (Cornelia Huck) [1508118]
+- [s390] s390/zcrypt: hex string mask improvements for apmask and aqmask (Cornelia Huck) [1508118]
+- [s390] s390/zcrypt: AP bus support for alternate driver(s) (Cornelia Huck) [1508118]
+- [s390] s390/zcrypt: switch return type to bool for ap_instructions_available() (Cornelia Huck) [1508118]
+- [s390] s390/zcrypt: fix ap_instructions_available() returncodes (Cornelia Huck) [1508118]
+- [s390] s390/zcrypt: Integrate ap_asm.h into include/asm/ap.h (Cornelia Huck) [1508118]
+- [s390] s390/zcrypt: Review inline assembler constraints (Cornelia Huck) [1508118]
+- [s390] s390/zcrypt: Add ZAPQ inline function (Cornelia Huck) [1508118]
+- [net] ipv6: use rt6_info members when dst is set in rt6_fill_node (Xin Long) [1625864 1625803 1625117]
+
+* Thu Oct 11 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-24.el8]
+- [netdrv] amd-xgbe: use dma_mapping_error to check map errors (David Arcari) [1637666]
+- [crypto] crypto: qat - Fix KASAN stack-out-of-bounds bug in adf_probe() (Waiman Long) [1629547]
+- [powerpc] powerpc: fix csum_ipv6_magic() on little endian platforms (Diego Domingos) [1625579]
+- [net] smc: generic netlink family should be __ro_after_init (Philipp Rudo) [1632435]
+- [net] net/smc: fix sizeof to int comparison (Philipp Rudo) [1632435]
+- [net] net/smc: no urgent data check for listen sockets (Philipp Rudo) [1632435]
+- [net] net/smc: enable fallback for connection abort in state INIT (Philipp Rudo) [1632435]
+- [net] net/smc: remove duplicate mutex_unlock (Philipp Rudo) [1632435]
+- [net] net/smc: fix non-blocking connect problem (Philipp Rudo) [1632435]
+- [net] net/smc: send response to test link signal (Philipp Rudo) [1632435]
+- [net] net: simplify sock_poll_wait (Philipp Rudo) [1632435]
+- [net] net/smc: Simplify ib_post_(send|recv|srq_recv)() calls (Philipp Rudo) [1632435]
+- [net] net/smc: Remove a WARN_ON() statement (Philipp Rudo) [1632435]
+- [powerpc] KVM: PPC: Book3S HV: Add NO_HASH flag to GET_SMMU_INFO ioctl result (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Add a VM capability to enable nested virtualization (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Add nested shadow page tables to debugfs (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Allow HV module to load without hypervisor mode (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Handle differing endianness for H_ENTER_NESTED (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Sanitise hv_regs on nested guest entry (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Add one-reg interface to virtual PTCR register (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Don't access HFSCR, LPIDR or LPCR when running nested (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Invalidate TLB when nested vcpu moves physical cpu (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Use hypercalls for TLB invalidation when nested (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Implement H_TLB_INVALIDATE hcall (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Introduce rmap to track nested guest mappings (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Handle page fault for a nested guest (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Handle hypercalls correctly when nested (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Use XICS hypercalls when running as a nested hypervisor (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Nested guest entry via hypercall (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Framework and hcall stubs for nested virtualization (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Use kvmppc_unmap_pte() in kvm_unmap_radix() (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Refactor radix page fault handler (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Make kvmppc_mmu_radix_xlate process/partition table agnostic (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Clear partition table entry on vm teardown (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Use ccr field in pt_regs struct embedded in vcpu struct (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Add a debugfs file to dump radix mappings (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Handle hypervisor instruction faults better (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Streamlined guest entry/exit path on P9 for radix guests (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Call kvmppc_handle_exit_hv() with vcore unlocked (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S: Rework TM save/restore code and make it C-callable (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Simplify real-mode interrupt handling (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Extract PMU save/restore operations as C-callable functions (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Move interrupt delivery on guest entry to C code (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S HV: Remove left-over code in XICS-on-XIVE emulation (Suraj Jitindar Singh) [1505999]
+- [powerpc] KVM: PPC: Book3S: Simplify external interrupt handling (Suraj Jitindar Singh) [1505999]
+- [powerpc] powerpc: Turn off CPU_FTR_P9_TM_HV_ASSIST in non-hypervisor mode (Suraj Jitindar Singh) [1505999]
+- [powerpc] powerpc/64s: Remove POWER9 DD1 support (Suraj Jitindar Singh) [1505999]
+- [netdrv] net/mlx5: Add Fast teardown support (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Set vlan masks for all offloaded TC rules (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: E-Switch, Fix out of bound access when setting vport rate (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Avoid unbounded peer devices when unpairing TC hairpin rules (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Cache the system image guid (Alaa Hleihel) [1636554]
+- [netdrv] mlx5: remove ndo_poll_controller (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Check for SQ and not RQ state when modifying hairpin SQ (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Fix read from coherent memory (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: don't set CHECKSUM_COMPLETE on SCTP packets (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Set ECN for received packets using CQE indication (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Fix possible deadlock from lockdep when adding fte to fg (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Check for error in mlx5_attach_interface (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Consider PCI domain in search for next dev (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Fix not releasing read lock when adding flow rules (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: E-Switch, Fix memory leak when creating switchdev mode FDB tables (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Use u16 for Work Queue buffer strides offset (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Use u16 for Work Queue buffer fragment size (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Fix debugfs cleanup in the device init/remove flow (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Fix use-after-free in self-healing flow (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Make function mlx5i_grp_sw_update_stats() static (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: IPoIB, Use priv stats in completion rx flow (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: IPoIB, Add ndo stats support for IPoIB child devices (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: IPoIB, Add ndo stats support for IPoIB netdevices (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: IPoIB, Initialize max_opened_tc in mlx5i_init flow (Alaa Hleihel) [1636554]
+- [netdrv] IB/mlx5: Fix leaking stack memory to userspace (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Reorganize the makefile (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: clock.c depends on CONFIG_PTP_1588_CLOCK (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: vxlan.c depends on CONFIG_VXLAN (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Move flow steering declarations into en/fs.h (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add CONFIG_MLX5_EN_ARFS for accelerated flow steering support (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add CONFIG_MLX5_EN_RXNFC for ethtool rx nfc (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Ethtool steering, move ethtool callbacks (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Reduce command polling interval (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Use max_num_eqs for calculation of required MSIX vectors (Alaa Hleihel) [1636554]
+- [netdrv] RDMA/mlx5: Fix shift overflow in mlx5_ib_create_wq (Alaa Hleihel) [1636554]
+- [netdrv] overflow.h: Add arithmetic shift helper (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Fix uninitialized variable (Alaa Hleihel) [1636554]
+- [netdrv] RDMA: Fix return code check in rdma_set_cq_moderation (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, move vxlan logic to core driver (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, add sync lock for add/del vxlan port (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, return values for add/del port (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, rename from mlx5e to mlx5 (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, rename struct mlx5e_vxlan to mlx5_vxlan_port (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, move netdev only logic to en_main.c (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, add direct delete function (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, cleanup an unused member in vxlan work (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, replace ports radix-tree with hash table (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, check maximum number of UDP ports (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Vxlan, reflect 4789 UDP port default addition to software database (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Move XDP related code into new XDP files (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Restrict the combination of large MTU and XDP (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Gather all XDP pre-requisite checks in a single function (Alaa Hleihel) [1636554]
+- [netdrv] IB/mlx5: avoid excessive warning msgs when creating VFs on 2nd port (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Use PARTIAL_GSO for UDP segmentation (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Remove redundant WARN when we cannot find neigh entry (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Fix tristate and description for MLX5 module (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Better return types for CQE API (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Use ERR_CAST() instead of coding it (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Add missing SET_DRIVER_VERSION command translation (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: fix uaccess beyond "count" in debugfs read/write handlers (Alaa Hleihel) [1636554]
+- [netdrv] IB/mlx5: Honor cnt_set_id_valid flag instead of set_id (Alaa Hleihel) [1636554]
+- [infiniband] IB/mlx5: fix uaccess beyond "count" in debugfs read/write handlers (Alaa Hleihel) [1636554]
+- [infiniband] IB/mlx5: Fix GRE flow specification (Alaa Hleihel) [1636554]
+- [infiniband] IB/mlx5: Remove set-but-not-used variables (Alaa Hleihel) [1636554]
+- [infiniband] RDMA/mlx5: Don't leak UARs in case of free fails (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Update NIC HW stats on demand only (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add counter for total num of NOP operations (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add counter for MPWQE filler strides (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add channel events counter (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add a counter for congested UMRs (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add NAPI statistics (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add XDP_TX completions statistics (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add TX completions statistics (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: RX, Use existing WQ local variable (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Convert large order kzalloc allocations to kvzalloc (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add UDP GSO remaining counter (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5e: Add UDP GSO support (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Rate limit errors in command interface (Alaa Hleihel) [1636554]
+- [netdrv] net/mlx5: Prevent warns in dmesg upon firmware commands (Alaa Hleihel) [1636554]
+- [netdrv] mlx4: remove ndo_poll_controller (Alaa Hleihel) [1636553]
+- [netdrv] net/mlx4: Use cpumask_available for eq->affinity_mask (Alaa Hleihel) [1636553]
+- [netdrv] net/mlx4/en_rx: Mark expected switch fall-throughs (Alaa Hleihel) [1636553]
+- [netdrv] net/mlx4/mcg: Mark expected switch fall-throughs (Alaa Hleihel) [1636553]
+- [infiniband] IB/mlx4: Use 4K pages for kernel QP's WQE buffer (Alaa Hleihel) [1636553]
+- [netdrv] net/mlx4_core: Allow MTTs starting at any index (Alaa Hleihel) [1636553]
+- [infiniband] IB/mlx4: Test port number before querying type (Alaa Hleihel) [1636553]
+- [powerpc] powerpc/numa: Skip onlining a offline node in kdump path (Steve Best) [1637118]
+- [netdrv] net: aquantia: Make function aq_fw1x_set_power() static (David Arcari) [1636533]
+- [netdrv] net: aquantia: memory corruption on jumbo frames (David Arcari) [1636533 1630377]
+- [netdrv] net: aquantia: bump driver version (David Arcari) [1636533]
+- [netdrv] net: aquantia: renaming for better visibility (David Arcari) [1636533]
+- [netdrv] net: aquantia: whitespace changes (David Arcari) [1636533]
+- [netdrv] net: aquantia: implement EEE support (David Arcari) [1636533]
+- [netdrv] net: aquantia: implement WOL support (David Arcari) [1636533]
+- [netdrv] net: aquantia: definitions for WOL (David Arcari) [1636533]
+- [netdrv] net: aquantia: fix hw_atl_utils_fw_upload_dwords (David Arcari) [1636533]
+- [netdrv] net: aquantia: Make some functions static (David Arcari) [1636533]
+- [netdrv] net: aquantia: bump driver version (David Arcari) [1636533]
+- [netdrv] net: aquantia: Add renegotiate ethtool operation support (David Arcari) [1636533]
+- [netdrv] net: aquantia: Implement rx/tx flow control ethtools callback (David Arcari) [1636533]
+- [netdrv] net: aquantia: Improve adapter init/deinit logic (David Arcari) [1636533]
+- [netdrv] net: aquantia: Ethtool based ring size configuration (David Arcari) [1636533]
+- [wireless] ath10k: fix memory leak of tpc_stats (Petr Oros) [1637528]
+- [wireless] ath10k: snoc: use correct bus-specific pointer in RX retry (Petr Oros) [1637528]
+- [wireless] ath10k: fix incorrect size of dma_free_coherent in ath10k_ce_alloc_src_ring_64 (Petr Oros) [1637528]
+- [wireless] brcmsmac: fix wrap around in conversion from constant to s16 (Petr Oros) [1637528]
+- [wireless] mt76x2: fix mrr idx/count estimation in mt76x2_mac_fill_tx_status() (Petr Oros) [1637528]
+- [wireless] ath10k: transmit queued frames after processing rx packets (Petr Oros) [1637528]
+- [wireless] ath10k: protect ath10k_htt_rx_ring_free with rx_ring.lock (Petr Oros) [1637528]
+- [wireless] ath10k: use locked skb_dequeue for rx completions (Petr Oros) [1637528]
+- [wireless] ath10k: sdio: set skb len for all rx packets (Petr Oros) [1637528]
+- [wireless] ath10k: sdio: use same endpoint id for all packets in a bundle (Petr Oros) [1637528]
+- [wireless] iwlwifi: cancel the injective function between hw pointers to tfd entry index (Petr Oros) [1637528]
+- [wireless] ath10k: disable bundle mgmt tx completion event support (Petr Oros) [1637528]
+- [wireless] ath10k: prevent active scans on potential unusable channels (Petr Oros) [1637528]
+- [wireless] ath9k_hw: fix channel maximum power level test (Petr Oros) [1637528]
+- [wireless] ath9k: report tx status on EOSP (Petr Oros) [1637528]
+- [wireless] iwlwifi: pcie: don't access periphery registers when not available (Petr Oros) [1637528]
+- [wireless] brcmfmac: fix brcmf_wiphy_wowl_params() NULL pointer dereference (Petr Oros) [1637528]
+- [netdrv] be2net: don't flip hw_features when VXLANs are added/deleted (Petr Oros) [1637133]
+- [netdrv] be2net: Fix memory leak in be_cmd_get_profile_config() (Petr Oros) [1637133]
+- [netdrv] be2net: Mark expected switch fall-through (Petr Oros) [1637133]
+- [netdrv] be2net: fix spelling mistake "seqence" -> "sequence" (Petr Oros) [1637133]
+- [netdrv] be2net: Update the driver version to 12.0.0.0 (Petr Oros) [1637133]
+- [netdrv] be2net: gather debug info and reset adapter (only for Lancer) on a tx-timeout (Petr Oros) [1637133]
+- [netdrv] be2net: move rss_flags field in rss_info to ensure proper alignment (Petr Oros) [1637133]
+- [netdrv] be2net: re-order fields in be_error_recovert to avoid hole (Petr Oros) [1637133]
+- [netdrv] be2net: remove unused tx_jiffies field from be_tx_stats (Petr Oros) [1637133]
+- [netdrv] be2net: move txcp field in be_tx_obj to eliminate holes in the struct (Petr Oros) [1637133]
+- [netdrv] be2net: reorder fields in be_eq_obj structure (Petr Oros) [1637133]
+- [netdrv] be2net: remove desc field from be_eq_obj (Petr Oros) [1637133]
+- [netdrv] be2net: remove unused old custom busy-poll fields (Petr Oros) [1637133]
+- [netdrv] be2net: remove unused old AIC info (Petr Oros) [1637133]
+- [x86] x86/spec_ctrl/compat: Call IBRS_ENTRY only after valid kernel stack (Waiman Long) [1636843]
+- [acpi] ACPI/PPTT: Handle architecturally unknown cache types (Jeremy Linton) [1636567]
+- [base] drivers: base: cacheinfo: Do not populate sysfs for unknown cache types (Jeremy Linton) [1636567]
+- [fs] getxattr: use correct xattr length (Lukas Czerner) [1637049]
+- [x86] Mark Intel Cascade Lake supported (Steve Best) [1636651]
+- [x86] x86/boot: Fix kexec booting failure in the SEV bit detection code (Kairui Song) [1632514]
+- [scsi] scsi: megaraid_sas: driver version upgrade (Tomas Henzl) [1635565]
+- [scsi] scsi: megaraid_sas: Support FW provided TM timeout values (Tomas Henzl) [1635565]
+- [scsi] scsi: megaraid_sas: Return immediately from wait_for_adapter_operational after kill adapter (Tomas Henzl) [1635565]
+- [scsi] scsi: megaraid_sas: Update controller info during resume (Tomas Henzl) [1635565]
+- [scsi] scsi: megaraid_sas: Do not do Kill adapter if GET_CTRL_INFO times out (Tomas Henzl) [1635565]
+- [scsi] qla2xxx: Update driver version to 10.00.00.07.08.0-k (Himanshu Madhani) [1633373]
+- [scsi] scsi: qla2xxx: Check for Register disconnect (Himanshu Madhani) [1633373]
+- [scsi] scsi: qla2xxx: Fix driver hang when FC-NVMe LUNs are configured (Himanshu Madhani) [1633373]
+- [scsi] scsi: qla2xxx: Fix re-using LoopID when handle is in use (Himanshu Madhani) [1633373]
+- [scsi] scsi: qla2xxx: Fix duplicate switch database entries (Himanshu Madhani) [1633373]
+- [scsi] scsi: qla2xxx: Fix NVMe session hang on unload (Himanshu Madhani) [1633373]
+- [scsi] scsi: qla2xxx: Fix iIDMA error (Himanshu Madhani) [1633373]
+- [scsi] scsi: qla2xxx: Fix stalled relogin (Himanshu Madhani) [1633373]
+- [scsi] scsi: qla2xxx: Fix unintended Logout (Himanshu Madhani) [1633373]
+- [powerpc] powerpc/pseries: Disable CPU hotplug across migrations (Steve Best) [1633587]
+- [block] blk-mq: I/O and timer unplugs are inverted in blktrace (Ming Lei) [1634330]
+- [block] block: fix deadline elevator drain for zoned block devices (Ming Lei) [1634333]
+- [block] blk-mq: Allow blocking queue tag iter callbacks (Ming Lei) [1634328]
+- [block] block: use nanosecond resolution for iostat (Ming Lei) [1634329]
+- [block] null_blk: fix zoned support for non-rq based operation (Ming Lei) [1634324]
+- [block] blk-cgroup: increase number of supported policies (Ming Lei) [1634335]
+- [block] block: bfq: swap puts in bfqg_and_blkg_put (Ming Lei) [1634334]
+- [block] block: don't warn when doing fsync on read-only devices (Ming Lei) [1634331]
+- [block] blkcg: use tryget logic when associating a blkg with a bio (Ming Lei) [1634332]
+- [block] blkcg: delay blkg destruction until after writeback has (Ming Lei) [1634332]
+- [block] Revert "blk-throttle: fix race between (Ming Lei) [1634332]
+- [block] blk-wbt: remove dead code (Ming Lei) [1634326]
+- [block] blk-wbt: improve waking of tasks (Ming Lei) [1634326]
+- [block] blk-wbt: abstract out end IO completion handler (Ming Lei) [1634326]
+
+* Tue Oct 09 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-23.el8]
+- [dma] driver/dma/ioat: Call del_timer_sync() without holding prep_lock (Waiman Long) [1607654]
+- [netdrv] bnxt_en: Fix VF mac address regression (Jonathan Toppins) [1635846]
+- [netdrv] bnxt_en: Do not adjust max_cp_rings by the ones used by RDMA (Jonathan Toppins) [1635846]
+- [netdrv] bnxt_en: Clean up unused functions (Jonathan Toppins) [1635846]
+- [fs] fsnotify: fix ignore mask logic in fsnotify() (Lukas Czerner) [1635537]
+- [net] net/af_iucv: locate IUCV header via skb_network_header() (Philipp Rudo) [1635332]
+- [net] net/af_iucv: drop inbound packets with invalid flags (Philipp Rudo) [1635332]
+- [net] net/af_iucv: fix skb handling on HiperTransport xmit error (Philipp Rudo) [1635332]
+- [hid] HID: i2c-hid: Fix flooded incomplete report after S3 on Rayd touchscreen (David Arcari) [1635746]
+- [i2c] i2c: core: ACPI: Make acpi_gsb_i2c_read_bytes() check i2c_transfer return value (David Arcari) [1635746]
+- [i2c] i2c: designware: Re-init controllers with pm_disabled set on resume (David Arcari) [1635746]
+- [i2c] i2c: core: ACPI: Properly set status byte to 0 for multi-byte writes (David Arcari) [1635746]
+- [fs] fs/quota: Fix spectre gadget in do_quotactl (Lukas Czerner) [1635521]
+- [fs] xfs: fix error handling in xfs_bmap_extents_to_btree (Brian Foster) [1633171]
+- [fs] xfs: remove invalid log recovery first/last cycle check (Brian Foster) [1633171]
+- [fs] xfs: validate inode di_forkoff (Brian Foster) [1633171]
+- [fs] xfs: skip delalloc COW blocks in xfs_reflink_end_cow (Brian Foster) [1633171]
+- [fs] xfs: don't treat unknown di_flags2 as corruption in scrub (Brian Foster) [1633171]
+- [fs] xfs: remove duplicated include from alloc.c (Brian Foster) [1633171]
+- [fs] xfs: don't bring in extents in xfs_bmap_punch_delalloc_range (Brian Foster) [1633171]
+- [fs] xfs: fix transaction leak in xfs_reflink_allocate_cow() (Brian Foster) [1633171]
+- [fs] xfs: avoid lockdep false positives in xfs_trans_alloc (Brian Foster) [1633171]
+- [fs] xfs: refactor xfs_buf_log_item reference count handling (Brian Foster) [1633171]
+- [fs] xfs: clean up xfs_trans_brelse() (Brian Foster) [1633171]
+- [fs] xfs: don't unlock invalidated buf on aborted tx commit (Brian Foster) [1633171]
+- [fs] xfs: remove last of unnecessary xfs_defer_cancel() callers (Brian Foster) [1633171]
+- [fs] xfs: don't crash the vfs on a garbage inline symlink (Brian Foster) [1633171]
+- [fs] iomap: set page dirty after partial delalloc on mkwrite (Brian Foster) [1633171]
+- [fs] xfs: sanity check ag header values in xrep_calc_ag_resblks (Brian Foster) [1633171]
+- [fs] xfs: recalculate summary counters at mount time if icount is bad (Brian Foster) [1633171]
+- [fs] xfs: fix a null pointer dereference in xfs_bmap_extents_to_btree (Brian Foster) [1633171]
+- [fs] xfs: remove b_last_holder & associated macros (Brian Foster) [1633171]
+- [fs] xfs: repair the AGI (Brian Foster) [1633171]
+- [fs] xfs: repair the AGFL (Brian Foster) [1633171]
+- [fs] xfs: repair the AGF (Brian Foster) [1633171]
+- [fs] xfs: remove dead error handling code in xfs_dquot_disk_alloc() (Brian Foster) [1633171]
+- [fs] xfs: use WRITE_ONCE to update if_seq (Brian Foster) [1633171]
+- [fs] xfs: fix a comment in xfs_log_reserve (Brian Foster) [1633171]
+- [fs] xfs: only validate summary counts on primary superblock (Brian Foster) [1633171]
+- [fs] xfs: substitute spaces with tabs (Brian Foster) [1633171]
+- [fs] xfs: fold dfops into the transaction (Brian Foster) [1633171]
+- [fs] xfs: always defer agfl block frees (Brian Foster) [1633171]
+- [fs] xfs: pass transaction to xfs_defer_add() (Brian Foster) [1633171]
+- [fs] xfs: replace xfs_defer_ops ->dop_pending with on-stack list (Brian Foster) [1633171]
+- [fs] xfs: cancel dfops on xfs_defer_finish() error (Brian Foster) [1633171]
+- [fs] xfs: clean out superfluous dfops dop params/vars (Brian Foster) [1633171]
+- [fs] xfs: drop dop param from xfs_defer_op_type ->finish_item() callback (Brian Foster) [1633171]
+- [fs] xfs: automatic dfops inode relogging (Brian Foster) [1633171]
+- [fs] xfs: automatic dfops buffer relogging (Brian Foster) [1633171]
+- [fs] xfs: add missing defer ijoins for held inodes (Brian Foster) [1633171]
+- [fs] xfs: replace dop_low with transaction flag (Brian Foster) [1633171]
+- [fs] xfs: pass transaction to dfops reset/move helpers (Brian Foster) [1633171]
+- [fs] xfs: remove unused __xfs_defer_cancel() internal helper (Brian Foster) [1633171]
+- [fs] xfs: use transaction for intent recovery instead of raw dfops (Brian Foster) [1633171]
+- [fs] xfs: refactor internal dfops initialization (Brian Foster) [1633171]
+- [fs] xfs: check da node magic in _node_lookup_int (Brian Foster) [1633171]
+- [fs] xfs: use a local variable for magic number in xfs_da3_node_lookup_int (Brian Foster) [1633171]
+- [fs] xfs: refactor log recovery check (Brian Foster) [1633171]
+- [fs] xfs: move extent busy tree initialization to xfs_initialize_perag (Brian Foster) [1633171]
+- [fs] xfs: avoid COW fork extent lookups in writeback if the fork didn't change (Brian Foster) [1633171]
+- [fs] xfs: maintain a sequence count for inode fork manipulations (Brian Foster) [1633171]
+- [fs] xfs: check for unknown v5 feature bits in superblock write verifier (Brian Foster) [1633171]
+- [fs] xfs: verify icount in superblock write (Brian Foster) [1633171]
+- [fs] libxfs: add more bounds checking to sb sanity checks (Brian Foster) [1633171]
+- [fs] xfs: refactor superblock verifiers (Brian Foster) [1633171]
+- [fs] xfs: refactor the xrep_extent_list into xfs_bitmap (Brian Foster) [1633171]
+- [fs] xfs: introduce a new xfs_inode_has_cow_data helper (Brian Foster) [1633171]
+- [fs] xfs: remove the xfs_ifork_t typedef (Brian Foster) [1633171]
+- [fs] xfs: simplify xfs_idata_realloc (Brian Foster) [1633171]
+- [fs] xfs: remove if_real_bytes (Brian Foster) [1633171]
+- [fs] xfs: move the repair extent list into its own file (Brian Foster) [1633171]
+- [fs] xfs: pass transaction lock while setting up agresv on cyclic metadata (Brian Foster) [1633171]
+- [fs] xfs: remove deprecated barrier/nobarrier mount (Brian Foster) [1633171]
+- [fs] xfs: clean up IRELE/iput callsites (Brian Foster) [1633171]
+- [fs] xfs: kill IHOLD (Brian Foster) [1633171]
+- [fs] xfs: bypass final dfops roll in trans commit path (Brian Foster) [1633171]
+- [fs] xfs: drop unnecessary xfs_defer_finish() dfops parameter (Brian Foster) [1633171]
+- [fs] xfs: remove unnecessary dfops init calls in xattr code (Brian Foster) [1633171]
+- [fs] xfs: remove all boilerplate defer init/finish code (Brian Foster) [1633171]
+- [fs] xfs: use internal dfops during (b|c)ui recovery (Brian Foster) [1633171]
+- [fs] xfs: use internal dfops in attr code (Brian Foster) [1633171]
+- [fs] xfs: use internal dfops in cow blocks cancel (Brian Foster) [1633171]
+- [fs] xfs: support embedded dfops in transaction (Brian Foster) [1633171]
+- [fs] xfs: pack holes in xfs_defer_ops and xfs_trans (Brian Foster) [1633171]
+- [fs] xfs: reset dfops to initial state after finish (Brian Foster) [1633171]
+- [fs] xfs: remove unused deferred ops committed field (Brian Foster) [1633171]
+- [fs] xfs: make deferred processing safe for embedded dfops (Brian Foster) [1633171]
+- [fs] xfs: fix transaction leak on remote attr set/remove failure (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops in log recovery intent processing (Brian Foster) [1633171]
+- [fs] xfs: pull up dfops from xfs_itruncate_extents() (Brian Foster) [1633171]
+- [fs] xfs: force summary counter recalc at next mount (Brian Foster) [1633171]
+- [fs] xfs: refactor unmount record write (Brian Foster) [1633171]
+- [fs] xfs: detect and fix bad summary counts at mount (Brian Foster) [1633171]
+- [fs] xfs: fix indentation and other whitespace problems in scrub/repair (Brian Foster) [1633171]
+- [fs] xfs: shorten struct xfs_scrub_context to struct xfs_scrub (Brian Foster) [1633171]
+- [fs] xfs: shorten xfs_repair_ prefix to xrep_ (Brian Foster) [1633171]
+- [fs] xfs: shorten xfs_scrub_ prefix (Brian Foster) [1633171]
+- [fs] xfs: clean up xfs_btree_del_cursor callers (Brian Foster) [1633171]
+- [fs] xfs: trivial xfs_btree_del_cursor cleanups (Brian Foster) [1633171]
+- [fs] xfs: return from _defer_finish with a clean transaction (Brian Foster) [1633171]
+- [fs] xfs: check leaf attribute block freemap in verifier (Brian Foster) [1633171]
+- [fs] libxfs: Fix a couple of sparse complaintis (Brian Foster) [1633171]
+- [fs] xfs: use swap macro in xfs_dir2_leafn_rebalance (Brian Foster) [1633171]
+- [fs] xfs_bmap_util: use swap macro (Brian Foster) [1633171]
+- [fs] xfs_attr_leaf: use swap macro in xfs_attr3_leaf_rebalance (Brian Foster) [1633171]
+- [fs] xfs: don't assume a left rmap when allocating a new rmap (Brian Foster) [1633171]
+- [fs] xfs: kill __xfs_buf_submit_common() (Brian Foster) [1633171]
+- [fs] xfs: combine (a)sync buffer submission apis (Brian Foster) [1633171]
+- [fs] xfs: use sync buffer I/O for sync delwri queue submission (Brian Foster) [1633171]
+- [fs] xfs: refactor buffer submission into a common helper (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_defer_init() firstblock param (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in inode inactivate (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in extent swap (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in reflink cow block cancel (Brian Foster) [1633171]
+- [fs] xfs: replace no-op firstblock init with ->t_firstblock (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in dq alloc (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_alloc_arg firstblock field (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_btree_cur private firstblock field (Brian Foster) [1633171]
+- [fs] xfs: remove bmap format helpers firstblock params (Brian Foster) [1633171]
+- [fs] xfs: remove bmap extent add helper firstblock params (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_bmalloca firstblock field (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in bmap extent split (Brian Foster) [1633171]
+- [fs] xfs: remove bmap insert/collapse firstblock param (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_bunmapi() firstblock param (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_bmapi_write() firstblock param (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in insert/collapse range (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in xfs_bmapi_remap() (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock for all xfs_bunmapi() callers (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock for all xfs_bmapi_write() callers (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in xattr ops (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in attrfork add (Brian Foster) [1633171]
+- [fs] xfs: remove firstblock param from xfs dir ops (Brian Foster) [1633171]
+- [fs] xfs: use ->t_firstblock in dir ops (Brian Foster) [1633171]
+- [fs] xfs: add firstblock field to xfs_trans (Brian Foster) [1633171]
+- [fs] xfs: allow null firstblock in xfs_bmapi_write() when tp is null (Brian Foster) [1633171]
+- [fs] xfs: refactor dfops init to attach to transaction (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops in reflink cow recover path (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops in cancel cow blocks operation (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops for rmap extent swap operations (Brian Foster) [1633171]
+- [fs] xfs: remove unused btree cursor bc_private.a.dfops field (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_btree_cur bmbt dfops field (Brian Foster) [1633171]
+- [fs] xfs: remove dfops param from internal bmap extent helpers (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops for collapse/insert range operations (Brian Foster) [1633171]
+- [fs] xfs: remove struct xfs_bmalloca dfops field (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_bmapi_remap() dfops param (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_bunmapi() dfops param (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops for all xfs_bunmapi() callers (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_bmapi_write() dfops param (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops for all xfs_bmapi_write() callers (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops in dqalloc transaction (Brian Foster) [1633171]
+- [fs] xfs: replace xfs_da_args->dfops accesses with ->t_dfops and remove (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops in extent split tx and remove param (Brian Foster) [1633171]
+- [fs] xfs: remove dfops param in attr fork add path (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops for attr set/remove operations (Brian Foster) [1633171]
+- [fs] xfs: use ->t_dfops for recovery of (b|c)ui log items (Brian Foster) [1633171]
+- [fs] xfs: remove dfops param from high level dirname calls (Brian Foster) [1633171]
+- [fs] xfs: remove dfops parameter from ifree call stack (Brian Foster) [1633171]
+- [fs] xfs: rename xfs_trans ->t_agfl_dfops to ->t_dfops (Brian Foster) [1633171]
+- [fs] xfs: cow unwritten conversion uses uninitialized dfops (Brian Foster) [1633171]
+- [fs] xfs: update my copyrights for the writeback and iomap code (Brian Foster) [1633171]
+- [fs] xfs: add support for sub-pagesize writeback without buffer_heads (Brian Foster) [1633171]
+- [fs] xfs: allow writeback on pages without buffer heads (Brian Foster) [1633171]
+- [fs] xfs: refactor the tail of xfs_writepage_map (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_start_page_writeback (Brian Foster) [1633171]
+- [fs] xfs: move all writeback buffer_head manipulation into xfs_map_at_offset (Brian Foster) [1633171]
+- [fs] xfs: don't look at buffer heads in xfs_add_to_ioend (Brian Foster) [1633171]
+- [fs] xfs: remove the imap_valid flag (Brian Foster) [1633171]
+- [fs] xfs: simplify xfs_map_blocks by using xfs_iext_lookup_extent directly (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_reflink_find_cow_mapping (Brian Foster) [1633171]
+- [fs] xfs: remove the now unused XFS_BMAPI_IGSTATE flag (Brian Foster) [1633171]
+- [fs] xfs: make xfs_writepage_map extent map centric (Brian Foster) [1633171]
+- [fs] xfs: rename the offset variable in xfs_writepage_map (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_map_cow (Brian Foster) [1633171]
+- [fs] xfs: remove xfs_reflink_trim_irec_to_next_cow (Brian Foster) [1633171]
+- [fs] xfs: don't use XFS_BMAPI_IGSTATE in xfs_map_blocks (Brian Foster) [1633171]
+- [fs] xfs: don't clear imap_valid for a non-uptodate buffers (Brian Foster) [1633171]
+- [fs] xfs: do not set the page uptodate in xfs_writepage_map (Brian Foster) [1633171]
+- [fs] xfs: move locking into xfs_bmap_punch_delalloc_range (Brian Foster) [1633171]
+- [fs] xfs: simplify xfs_aops_discard_page (Brian Foster) [1633171]
+- [fs] xfs: use iomap for blocksize == PAGE_SIZE readpage and readpages (Brian Foster) [1633171]
+- [fs] iomap: fix WARN_ON_ONCE on uninitialized variable (Brian Foster) [1633171]
+- [fs] iomap: Switch to offset_in_page for clarity (Brian Foster) [1633171]
+- [fs] iomap: add support for sub-pagesize buffered I/O without buffer heads (Brian Foster) [1633171]
+- [fs] iomap: add inline data support to iomap_readpage_actor (Brian Foster) [1633171]
+- [fs] iomap: support direct I/O to inline data (Brian Foster) [1633171]
+- [fs] iomap: refactor iomap_dio_actor (Brian Foster) [1633171]
+- [fs] iomap: add initial support for writes without buffer heads (Brian Foster) [1633171]
+- [fs] iomap: add an iomap-based readpage and readpages implementation (Brian Foster) [1633171]
+- [fs] iomap: add private pointer to struct iomap (Brian Foster) [1633171]
+- [fs] iomap: add a page_done callback (Brian Foster) [1633171]
+- [fs] iomap: generic inline data handling (Brian Foster) [1633171]
+- [fs] iomap: complete partial direct I/O writes synchronously (Brian Foster) [1633171]
+- [fs] iomap: mark newly allocated buffer heads as new (Brian Foster) [1633171]
+- [fs] fs: factor out a __generic_write_end helper (Brian Foster) [1633171]
+- [netdrv] amd-xgbe: mark driver as tech preview (David Arcari) [1633209]
+- [fs] ext4, dax: set ext4_dax_aops for dax files (Lukas Czerner) [1633239]
+- [fs] ext4, dax: add ext4_bmap to ext4_dax_aops (Lukas Czerner) [1633239]
+- [fs] ext4: don't mark mmp buffer head dirty (Lukas Czerner) [1633239]
+- [fs] ext4: show test_dummy_encryption mount option in /proc/mounts (Lukas Czerner) [1633239]
+- [fs] ext4: fix online resizing for bigalloc file systems with a 1k block size (Lukas Czerner) [1633239]
+- [fs] ext4: fix online resize's handling of a too-small final block group (Lukas Czerner) [1633239]
+- [fs] ext4: recalucate superblock checksum after updating free blocks/inodes (Lukas Czerner) [1633239]
+- [fs] ext4: avoid arithemetic overflow that can trigger a BUG (Lukas Czerner) [1633239]
+- [fs] ext4: avoid divide by zero fault when deleting corrupted inline directories (Lukas Czerner) [1633239]
+- [fs] ext4: check to make sure the rename(2)'s destination is not freed (Lukas Czerner) [1633239]
+- [fs] ext4: remove unneeded variable "err" in ext4_mb_release_inode_pa() (Lukas Czerner) [1633239]
+- [fs] ext4: fix spectre gadget in ext4_mb_regular_allocator() (Lukas Czerner) [1633239]
+- [fs] ext4: check for NUL characters in extended attribute's name (Lukas Czerner) [1633239]
+- [fs] ext4: use ext4_warning() for sb_getblk failure (Lukas Czerner) [1633239]
+- [fs] ext4: fix race when setting the bitmap corrupted flag (Lukas Czerner) [1633239]
+- [fs] ext4: reset error code in ext4_find_entry in fallback (Lukas Czerner) [1633239]
+- [fs] ext4: check allocation failure when duplicating "data" in ext4_remount() (Lukas Czerner) [1633239]
+- [fs] ext4: sysfs: print ext4_super_block fields as little-endian (Lukas Czerner) [1633239]
+- [firmware] efi/x86: Handle page faults occurring while running EFI runtime services (Bhupesh Sharma) [1627557]
+- [firmware] efi: Make efi_rts_work accessible to efi page fault handler (Bhupesh Sharma) [1627557]
+- [firmware] efi: Remove the declaration of efi_late_init() as the function is unused (Bhupesh Sharma) [1627557]
+- [firmware] efi: Use a work queue to invoke EFI Runtime Services (Bhupesh Sharma) [1627557]
+- [firmware] efi/x86: Use non-blocking SetVariable() for efi_delete_dummy_variable() (Bhupesh Sharma) [1627557]
+- [fs] gfs2: Special-case rindex for gfs2_grow (Robert S Peterson) [1628360]
+- [fs] GFS2: Fix recovery issues for spectators (Robert S Peterson) [1628298]
+
+* Fri Oct 05 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-22.el8]
+- [powerpc] powerpc/pkeys: Fix reading of ibm, processor-storage-keys property (Steve Best) [1633551]
+- [powerpc] powerpc/pseries: Remove unneeded uses of dlpar work queue (Steve Best) [1633544]
+- [powerpc] powerpc/pseries: Remove prrn_work workqueue (Steve Best) [1633544]
+- [pci] ACPI / hotplug / PCI: Don't scan for non-hotplug bridges if slot is not bridge (Myron Stowe) [1634816]
+- [pci] PCI: Fix enabling of PASID on RC integrated endpoints (Myron Stowe) [1634816]
+- [pci] IB/hfi1,PCI: Allow bus reset while probing (Myron Stowe) [1634816]
+- [pci] PCI: Fix faulty logic in pci_reset_bus() (Myron Stowe) [1634816]
+- [pci] PCI: pciehp: Fix hot-add vs powerfault detection order (Myron Stowe) [1634816]
+- [pci] Revert "PCI: Add ACS quirk for Intel 300 series" (Myron Stowe) [1634816]
+- [powerpc] powerpc/numa: Use associativity if VPHN hcall is successful (Steve Best) [1633569]
+- [pci] PCI: vmd: White list for fast interrupt handlers (Myron Stowe) [1632816]
+- [pci] PCI: Add function 1 DMA alias quirk for Marvell 88SS9183 (Myron Stowe) [1632816]
+- [pci] PCI: Rename pci_try_reset_bus() to pci_reset_bus() (Myron Stowe) [1632816]
+- [pci] PCI: Deprecate pci_reset_bus() and pci_reset_slot() functions (Myron Stowe) [1632816]
+- [pci] PCI: Unify try slot and bus reset API (Myron Stowe) [1632816]
+- [pci] PCI: Hide pci_reset_bridge_secondary_bus() from drivers (Myron Stowe) [1632816]
+- [pci] IB/hfi1: Use pci_try_reset_bus() for initiating PCI Secondary Bus Reset (Myron Stowe) [1632816]
+- [pci] PCI: Handle error return from pci_reset_bridge_secondary_bus() (Myron Stowe) [1632816]
+- [pci] PCI/IOV: Tidy pci_sriov_set_totalvfs() (Myron Stowe) [1632816]
+- [pci] PCI: Enable PASID only if entire path supports End-End TLP prefixes (Myron Stowe) [1632816]
+- [pci] PCI: Expand documentation for pci_add_dma_alias() (Myron Stowe) [1632816]
+- [pci] PCI: Add DMA alias quirk for Microsemi Switchtec NTB (Myron Stowe) [1632816]
+- [pci] switchtec: Use generic PCI Vendor ID and Class Code (Myron Stowe) [1632816]
+- [pci] PCI: Make pci_get_rom_size() static (Myron Stowe) [1632816]
+- [pci] PCI: Add check code for last image indicator not set (Myron Stowe) [1632816]
+- [pci] PCI: Avoid accessing memory outside the ROM BAR (Myron Stowe) [1632816]
+- [pci] PCI: Make early dump functionality generic (Myron Stowe) [1632816]
+- [pci] PCI: Cleanup PCI_REBAR_CTRL_BAR_SHIFT handling (Myron Stowe) [1632816]
+- [pci] PCI: Restore resized BAR state on resume (Myron Stowe) [1632816]
+- [pci] PCI: Clean up resource allocation in devm_of_pci_get_host_bridge_resources() (Myron Stowe) [1632816]
+- [pci] PCI: Add ACS Redirect disable quirk for Intel Sunrise Point (Myron Stowe) [1632816]
+- [pci] PCI: Add device-specific ACS Redirect disable infrastructure (Myron Stowe) [1632816]
+- [pci] PCI: Convert device-specific ACS quirks from NULL termination to ARRAY_SIZE (Myron Stowe) [1632816]
+- [pci] PCI: Add "pci=disable_acs_redir=" parameter for peer-to-peer support (Myron Stowe) [1632816]
+- [pci] PCI: Allow specifying devices using a base bus and path of devfns (Myron Stowe) [1632816]
+- [pci] PCI: Make specifying PCI devices in kernel parameters reusable (Myron Stowe) [1632816]
+- [pci] PCI: Hide ACS quirk declarations inside PCI core (Myron Stowe) [1632816]
+- [pci] PCI: Document ACPI description of PCI host bridges (Myron Stowe) [1632816]
+- [pci] PCI/MSI: Set IRQCHIP_ONESHOT_SAFE for PCI-MSI irqchips (Myron Stowe) [1632816]
+- [pci] PCI: Limit config space size for Netronome NFP5000 (Myron Stowe) [1632816]
+- [pci] PCI: Add PCI_DEVICE_DATA() macro to fully describe device ID entry (Myron Stowe) [1632816]
+- [pci] PCI: Unify PCI and normal DMA direction definitions (Myron Stowe) [1632816]
+- [pci] PCI: Use IRQF_ONESHOT if pci_request_irq() called with no handler (Myron Stowe) [1632816]
+- [pci] PCI: Call dma_debug_add_bus() for pci_bus_type from PCI core (Myron Stowe) [1632816]
+- [pci] PCI: Mark fall-through switch cases before enabling -Wimplicit-fallthrough (Myron Stowe) [1632816]
+
+* Thu Oct 04 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-21.el8]
+- [s390] s390/sclp: Allow to request adapter reset (Philipp Rudo) [1635273]
+- [char] ipmi: Fix NULL pointer dereference in ssif_probe (Tony Camuso) [1635366]
+- [char] ipmi: Fix I2C client removal in the SSIF driver (Tony Camuso) [1635366]
+- [char] ipmi: kcs_bmc: don't change device name (Tony Camuso) [1635366]
+- [kernel] timers: Clear timer_base::must_forward_clk with timer_base::lock held (Waiman Long) [1632820]
+- [pci] switchtec: Fix Spectre v1 vulnerability (Waiman Long) [1632820]
+- [kernel] cpu/hotplug: Prevent state corruption on error rollback (Waiman Long) [1632820]
+- [kernel] cpu/hotplug: Adjust misplaced smb() in cpuhp_thread_fun() (Waiman Long) [1632820]
+- [base] memory_hotplug: fix kernel_panic on offline page processing (Waiman Long) [1632820]
+- [mm] mm/hugetlb: filter out hugetlb pages if HUGEPAGE migration is not supported (Waiman Long) [1632820]
+- [lib] debugobjects: Make stack check warning more informative (Waiman Long) [1632820]
+- [fs] fs/dcache.c: fix kmemcheck splat at take_dentry_name_snapshot() (Waiman Long) [1632820]
+- [x86] x86/process: Don't mix user/kernel regs in 64bit __show_regs() (Waiman Long) [1632820]
+- [x86] x86/dumpstack: Don't dump kernel memory based on usermode RIP (Waiman Long) [1632820]
+- [x86] x86: Avoid pr_cont() in show_opcodes() (Waiman Long) [1632820]
+- [x86] x86/entry/64: Wipe KASAN stack shadow before rewind_stack_do_exit() (Waiman Long) [1632820]
+- [x86] x86/speculation/l1tf: Increase l1tf memory limit for Nehalem+ (Waiman Long) [1632820]
+- [x86] x86/spectre: Add missing family 6 check to microcode check (Waiman Long) [1632820]
+- [x86] x86/nmi: Fix NMI uaccess race against CR3 switching (Waiman Long) [1632820]
+- [x86] x86/vdso: Fix lsl operand order (Waiman Long) [1632820]
+- [x86] x86/vdso: Fix vDSO build if a retpoline is emitted (Waiman Long) [1632820]
+- [x86] x86/speculation/l1tf: Suggest what to do on systems with too much RAM (Waiman Long) [1632820]
+- [x86] x86/speculation/l1tf: Fix off-by-one error when warning that system has too much RAM (Waiman Long) [1632820]
+- [x86] x86/speculation/l1tf: Fix overflow in l1tf_pfn_limit() on 32bit (Waiman Long) [1632820]
+- [x86] x86/speculation/l1tf: Exempt zeroed PTEs from inversion (Waiman Long) [1632820]
+- [x86] x86/mm/pti: Clear Global bit more aggressively (Waiman Long) [1632820]
+- [x86] x86/paravirt: Fix spectre-v2 mitigations for paravirt guests (Waiman Long) [1632820]
+- [target] scsi: target: iscsi: Use bin2hex instead of a re-implementation (Maurizio Lombardi) [1632184] {CVE-2018-14633}
+- [target] scsi: target: iscsi: Use hex2bin instead of a re-implementation (Maurizio Lombardi) [1632184] {CVE-2018-14633}
+
+* Wed Oct 03 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-20.el8]
+- [netdrv] ibmvnic: Include missing return code checks in reset function (Steve Best) [1633553]
+- [netdrv] ibmvnic: Update firmware error reporting with cause string (Steve Best) [1633553]
+- [netdrv] ibmvnic: Remove code to request error information (Steve Best) [1633553]
+- [s390] s390/qeth: remove duplicated carrier state tracking (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: clean up drop conditions for received cmds (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: re-indent qeth_check_ipa_data() (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: consume local address events (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: remove various redundant code (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: remove CARD_FROM_CDEV helper (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: pass card pointer in iob callback (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: re-use qeth_notify_skbs() (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: remove additional skb refcount (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: replace open-coded skb_queue_walk() (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: on gdev release, reset drvdata (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: fix discipline unload after setup error (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: use DEFINE_MUTEX for qeth_mod_mutex (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: convert layer attribute to enum (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: reduce 0-initializing when building IPA cmds (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: fine-tune spinlocks (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: fix typo in return value (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: invoke softirqs after napi_schedule() (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: uninstall IRQ handler on device removal (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: remove qeth_hdr_chk_and_bounce() (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: speed up TSO transmission (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: prepare for copy-free TSO transmission (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: check size of required HW header cache object (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: fix up protocol headers early (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: limit csum offload erratum to L3 devices (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: remove qeth_get_elements_no() (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: remove unused L3 xmit code (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: run non-offload L3 traffic over common xmit path (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: move L2 xmit code to core module (Hendrik Brueckner) [1633841]
+- [s390] s390/qdio: reset old sbal_state flags (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: don't dump past end of unknown HW header (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: use vzalloc for QUERY OAT buffer (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: switch on SG by default for IQD devices (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: indicate error when netdev allocation fails (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: use true and false for boolean values (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: don't restrict qeth_card to DMA memory (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: clean up card initialization (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: do basic setup for data channel (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: use qeth_setup_ccw() to set up all CCWs (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: reduce hard-coded access to ccw channels (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: extract helper for MPC protocol type (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: speed up L2 IQD xmit (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: add support for constrained HW headers (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: merge linearize-check into HW header construction (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: add statistics for consumed buffer elements (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: use core MTU range checking (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: simplify max MTU handling (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: don't cache HW port number (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: allocate netdevice early (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: remove redundant netif_carrier_ok() checks (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: reset layer2 attribute on layer switch (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: fix race in used-buffer accounting (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: speed-up IPv4 OSA xmit (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: speed-up L3 IQD xmit (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: add a L3 xmit wrapper (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: increase GSO max size for eligible L3 devices (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: clean up exported symbols (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: consolidate ccwgroup driver definition (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: clean up Output Queue selection (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: fine-tune RX modesetting (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: remove unused buffer->aob pointer (Hendrik Brueckner) [1633841]
+- [s390] s390/qeth: various buffer management cleanups (Hendrik Brueckner) [1633841]
+- [powerpc] powerpc: Avoid code patching freed init sections (Steve Best) [1633545]
+- [powerpc] powerpc/tm: Fix userspace r13 corruption (Steve Best) [1633543]
+- [powerpc] powerpc/tm: Avoid possible userspace r1 corruption on reclaim (Steve Best) [1633543]
+- [drm] drm/i915/cfl: Add a new CFL PCI ID (Rob Clark) [1626883]
+- [drm] drm/i915/aml: Introducing Amber Lake platform (Rob Clark) [1626883]
+- [drm] drm/i915/whl: Introducing Whiskey Lake platform (Rob Clark) [1626883]
+- [char] ipmi: Move BT capabilities detection to the detect call (Frank Ramsay) [1618774]
+- [char] ipmi: Rework SMI registration failure (Frank Ramsay) [1618774]
+
+* Tue Oct 02 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-19.el8]
+- [s390] s390: detect etoken facility (Thomas Huth) [1634069]
+- [s390] s390/lib: use expoline for all bcr instructions (Thomas Huth) [1634069]
+- [documentation] vm.txt: Adding 'nr_hugepages_mempolicy' parameter description (Prashant Dhamdhere) [1626547]
+
+* Mon Oct 01 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-18.el8]
+- [scsi] scsi: ipr: System hung while dlpar adding primary ipr adapter back (Steve Best) [1633217]
+- [target] scsi: iscsi: target: Don't use stack buffer for scatterlist (Maurizio Lombardi) [1631342]
+- [rpmspec] Forward port weak-modules support from RHEL 7 to RHEL 8 ("Herton R. Krzesinski") [1596884]
+- [fs] xfs: Close race between direct IO and xfs_break_layouts() (Eric Sandeen) [1622191]
+- [fs] xfs: remove unused iolock arg from xfs_break_dax_layouts (Eric Sandeen) [1622191]
+- [fs] ext4: Close race between direct IO and ext4_break_layouts() (Eric Sandeen) [1616303]
+- [fs] ext4: handle layout changes to pinned DAX mappings (Eric Sandeen) [1614154]
+- [fs] dax: dax_layout_busy_page() warn on !exceptional (Eric Sandeen) [1614154]
+- [fs] dax: mark tech preview (Eric Sandeen) [1627455]
+- [mm] usercopy: Allow boot cmdline disabling of hardening (Christoph von Recklinghausen) [1589928]
+
+* Thu Sep 27 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-17.el8]
+- [s390] s390/crypto: Fix return code checking in cbc_paes_crypt() (Philipp Rudo) [1633266]
+- [drm] amd/display/dc/basics/logger.c: fix build error with CONFIG_FORTIFY_SOURCE=y ("Herton R. Krzesinski") [1548068]
+- [acpi] ACPICA: AML Parser: skip opcodes that open a scope upon parse failure (Jeremy Linton) [1609885]
+- [acpi] ACPICA: ACPICA: add status check for acpi_hw_read before assigning return value (Jeremy Linton) [1609885]
+- [acpi] ACPICA: AML Parser: ignore all exceptions resulting from incorrect AML during table load (Jeremy Linton) [1609885]
+- [rpmspec] spec: Add missing BuildRequires for bpftool (Jiri Olsa) [1632756]
+- [powerpc] KVM: PPC: Avoid marking DMA-mapped pages dirty in real mode (David Gibson) [1628412]
+- [powerpc] powerpc/powernv/ioda: Allocate indirect TCE levels on demand (David Gibson) [1628412]
+- [powerpc] powerpc/powernv: Rework TCE level allocation (David Gibson) [1628412]
+- [powerpc] powerpc/powernv: Add indirect levels to it_userspace (David Gibson) [1628412]
+- [powerpc] KVM: PPC: Make iommu_table::it_userspace big endian (David Gibson) [1628412]
+- [powerpc] powerpc/powernv: Move TCE manupulation code to its own file (David Gibson) [1628412]
+- [net] net_sched: fix NULL pointer dereference when delete tcindex filter (Andrea Claudi) [1627648]
+- [net] net_sched: Fix missing res info when create new tc_index filter (Andrea Claudi) [1627648]
+- [samples] samples/bpf: xdpsock: order memory on AArch64 (Jesper Brouer) [1615959]
+- [samples] samples/bpf: xdp_redirect_cpu load balance like Suricata (Jesper Brouer) [1615959]
+- [samples] samples/bpf: add Paul Hsieh's (LGPL 2.1) hash function SuperFastHash (Jesper Brouer) [1615959]
+- [samples] samples/bpf: xdp_redirect_cpu handle parsing of double VLAN tagged packets (Jesper Brouer) [1615959]
+- [samples] samples/bpf: all XDP samples should unload xdp/bpf prog on SIGTERM (Jesper Brouer) [1615959]
+- [samples] samples/bpf: xdp_rxq_info action XDP_TX must adjust MAC-addrs (Jesper Brouer) [1615959]
+- [samples] samples/bpf: extend xdp_rxq_info to read packet payload (Jesper Brouer) [1615959]
+- [powerpc] KVM: PPC: Book3S HV: Use correct pagesize in kvm_unmap_radix() (David Gibson) [1625498]
+- [net] igmp: fix incorrect unsolicit report count after link down and up (Hangbin Liu) [1625538]
+- [net] igmp: fix incorrect unsolicit report count when join group (Hangbin Liu) [1625538]
+- [netdrv] cxgb4: update 1.20.8.0 as the latest firmware supported (Arjun Vynipadath) [1622555]
+- [virt] svm: nested virt support off by default (Bandan Das) [1571993]
+
+* Wed Sep 26 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-16.el8]
+- [powerpc] KVM: PPC: Book3S HV: Don't use compound_order to determine host mapping size (David Gibson) [1625860]
+- [virt] arm64: KVM: Remove pgd_lock (Wei Huang) [1627474]
+- [virt] KVM: Remove obsolete kvm_unmap_hva notifier backend (Wei Huang) [1627474]
+- [virt] arm64: KVM: Only force FPEXC32_EL2.EN if trapping FPSIMD (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Clean dcache to PoC when changing PTE due to CoW (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Skip updating PTE entry if no change (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Skip updating PMD entry if no change (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Move DEBUG_SPINLOCK_BUG_ON to vgic.h (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Do not use spin_lock_irqsave/restore with irq disabled (Wei Huang) [1627474]
+- [virt] KVM: arm: vgic-v3: Add support for ICC_SGI0R and ICC_ASGI1R accesses (Wei Huang) [1627474]
+- [virt] KVM: arm64: vgic-v3: Add support for ICC_SGI0R_EL1 and ICC_ASGI1R_EL1 accesses (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic-v3: Add core support for Group0 SGIs (Wei Huang) [1627474]
+- [virt] KVM: arm64: Remove non-existent AArch32 ICC_SGI1R encoding (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Fix lost IRQs from emulated physcial timer when blocked (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Fix potential loss of ptimer interrupts (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Fix possible spectre-v1 write in vgic_mmio_write_apr() (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Update documentation of the GIC devices wrt IIDR (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Let userspace opt-in to writable v2 IGROUPR (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Allow configuration of interrupt groups (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Return error on incompatible uaccess GICD_IIDR writes (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Permit uaccess writes to return errors (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Signal IRQs using their configured group (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Add group field to struct irq (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: GICv2 IGROUPR should read as zero (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Keep track of implementation revision (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic: Define GICD_IIDR fields for GICv2 and GIv3 (Wei Huang) [1627474]
+- [virt] arm64: KVM: Cleanup tpidr_el2 init on non-VHE (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: vgic-debug: Show LPI status (Wei Huang) [1627474]
+- [virt] KVM: arm64: vgic-its: Remove VLA usage (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Fix vgic init race (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Enable adaptative WFE trapping (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Remove unnecessary CMOs when creating HYP page tables (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Stop using the kernel's (pmd, pud, pgd)_populate helpers (Wei Huang) [1627474]
+- [virt] KVM: arm/arm64: Consolidate page-table accessors (Wei Huang) [1627474]
+- [virt] arm64: KVM: Avoid marking pages as XN in Stage-2 if CTR_EL0.DIC is set (Wei Huang) [1627474]
+- [tools] radix tree test suite: Enable ubsan (Waiman Long) [1630244]
+- [tools] radix tree test suite: Fix compilation (Waiman Long) [1630244]
+- [block] blk-wbt: don't maintain inflight counts if disabled (Ming Lei) [1622790]
+- [block] blk-wbt: fix has-sleeper queueing check (Ming Lei) [1622790]
+- [block] blk-wbt: use wq_has_sleeper() for wq active check (Ming Lei) [1622790]
+- [block] blk-wbt: move disable check into get_limit() (Ming Lei) [1622790]
+- [block] block/DAC960.c: make some arrays static const, shrinks object (Ming Lei) [1622790]
+- [block] blk-mq: sync the update nr_hw_queues with (Ming Lei) [1617959]
+- [block] blk-mq: init hctx sched after update ctx and hctx mapping (Ming Lei) [1617959]
+- [block] block: remove duplicate initialization (Ming Lei) [1622790]
+- [block] tracing/blktrace: Fix to allow setting same value (Ming Lei) [1622790]
+- [block] pktcdvd: fix setting of 'ret' error return for a few cases (Ming Lei) [1622790]
+- [block] block: change return type to bool (Ming Lei) [1622790]
+- [block] block, bfq: return nbytes and not zero from struct cftype (Ming Lei) [1622790]
+- [block] block, bfq: improve code of bfq_bfqq_charge_time (Ming Lei) [1622790]
+- [block] block, bfq: reduce write overcharge (Ming Lei) [1622790]
+- [block] block, bfq: always update the budget of an entity when needed (Ming Lei) [1622790]
+- [block] block, bfq: readd missing reset of parent-entity service (Ming Lei) [1622790]
+- [block] block: don't warn for flush on read-only device (Ming Lei) [1622809]
+
+* Tue Sep 25 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-15.el8]
+- [kernel] locking/rwsem: Make owner store task pointer of last owning reader (Waiman Long) [1631842]
+- [kernel] locking/rwsem: Exit read lock slowpath if queue empty & no writer (Waiman Long) [1631842]
+- [x86] x86/microcode: Update the new microcode revision unconditionally (Prarit Bhargava) [1630931]
+- [x86] x86/microcode: Make sure boot_cpu_data.microcode is up-to-date (Prarit Bhargava) [1630931]
+- [arm64] arm64: tlb: Provide forward declaration of tlb_flush() before including tlb.h (Waiman Long) [1630521]
+- [x86] x86/mm: Only use tlb_remove_table() for paravirt (Waiman Long) [1630521]
+- [mm] mm: mmu_notifier fix for tlb_end_vma (Waiman Long) [1630521]
+- [mm] mm/tlb, x86/mm: Support invalidating TLB caches for RCU_TABLE_FREE (Waiman Long) [1630521]
+- [mm] mm/tlb: Remove tlb_remove_table() non-concurrent condition (Waiman Long) [1630521]
+- [mm] mm: move tlb_table_flush to tlb_flush_mmu_free (Waiman Long) [1630521]
+- [kernel] clocksource: Revert Remove kthread (Waiman Long) [1628402]
+- [cpuidle] cpuidle: menu: Retain tick when shallow state is selected (Waiman Long) [1628402]
+- [cpufreq] cpufreq: governor: Avoid accessing invalid governor_data (Waiman Long) [1628402]
+- [cpuidle] cpuidle: menu: Handle stopped tick more aggressively (Waiman Long) [1628402]
+- [kernel] sched: idle: Avoid retaining the tick when it has been stopped (Waiman Long) [1628402]
+- [net] netfilter: xt_hashlimit: do not crash when reading proc file (Florian Westphal) [1630131]
+- [x86] x86/boot/KASLR: Skip specified number of 1GB huge pages when doing physical randomization (KASLR) (Baoquan He) [1564824]
+- [x86] x86/boot/KASLR: Add two new functions for 1GB huge pages handling (Baoquan He) [1564824]
+- [mfd] mfd: intel-lpss: Add Ice Lake PCI IDs (Gopal Tiwari) [1483477]
+- [mmc] mmc: sdhci-pci: Add support for Intel ICP (Gopal Tiwari) [1483496]
+
+* Mon Sep 24 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-14.el8]
+- [mm] mm: get rid of vmacache_flush_all() entirely (Waiman Long) [1631297] {CVE-2018-17182}
+- [mm] mm, vmacache: hash addresses based on pmd (Waiman Long) [1631297] {CVE-2018-17182}
+- [mm] mm: Allocate the mm_cpumask (mm->cpu_bitmap) dynamically based on nr_cpu_ids (Waiman Long) [1631297] {CVE-2018-17182}
+- [infiniband] IB/hfi1: Invalid NUMA node information can cause a divide by zero (Alex Estrin) [1622222]
+- [nvdimm] libnvdimm: Export max available extent (Jeff Moyer) [1627874]
+- [nvdimm] libnvdimm: Use max contiguous area for namespace size (Jeff Moyer) [1627874]
+- [netdrv] ice: Fix and update driver version string (Jonathan Toppins) [1611786]
+- [netdrv] ice: Introduce SERVICE_DIS flag and service routine functions (Jonathan Toppins) [1611786]
+- [netdrv] ice: Enable VSI Rx/Tx pruning only when VLAN 0 is active (Jonathan Toppins) [1611786]
+- [netdrv] ice: Enable firmware logging during device initialization (Jonathan Toppins) [1611786]
+- [netdrv] ice: Implement ice_bridge_getlink and ice_bridge_setlink (Jonathan Toppins) [1611786]
+- [netdrv] ice: Add support for Tx hang, Tx timeout and malicious driver detection (Jonathan Toppins) [1611786]
+- [netdrv] ice: Clean up register file (Jonathan Toppins) [1611786]
+- [netdrv] ice: Implement handlers for ethtool PHY/link operations (Jonathan Toppins) [1611786]
+- [netdrv] ice: Refactor VSI allocation, deletion and rebuild flow (Jonathan Toppins) [1611786]
+- [netdrv] ice: Refactor switch rule management structures and functions (Jonathan Toppins) [1611786]
+- [netdrv] ice: Code optimization for ice_fill_sw_rule() (Jonathan Toppins) [1611786]
+- [netdrv] ice: Prevent control queue operations during reset (Jonathan Toppins) [1611786]
+- [netdrv] ice: Update request resource command to latest specification (Jonathan Toppins) [1611786]
+- [netdrv] ice: Updates to Tx scheduler code (Jonathan Toppins) [1611786]
+- [netdrv] ice: Rework flex descriptor programming (Jonathan Toppins) [1611786]
+- [netdrv] net/mlx5: Fix SQ offset in QPs with small RQ (Alaa Hleihel) [1623367]
+- [x86] x86/spec_ctrl: Make IBRS code work with SSBD mitigation (Waiman Long) [1565180]
+- [x86] x86/spec_ctrl: Auto-enable IBRS on Skylake (Waiman Long) [1565180]
+- [x86] x86/spec_ctrl: Extend spectre_v2 boot option to support IBRS (Waiman Long) [1565180]
+- [x86] x86/spec_ctrl: Boot time IBRS initialization (Waiman Long) [1565180]
+- [x86] x86/spec_ctrl: Add IBRS code to the 64-bit assembly entry code (Waiman Long) [1565180]
+- [x86] x86/cpufeatures: Increase NCAPINTS for future extension (Waiman Long) [1565180]
+- [netdrv] ice: Trivial formatting fixes (Jonathan Toppins) [1611783]
+- [netdrv] ice: Change struct members from bool to u8 (Jonathan Toppins) [1611783]
+- [netdrv] ice: Fix potential return of uninitialized value (Jonathan Toppins) [1611783]
+- [netdrv] ice: Fix a few null pointer dereference issues (Jonathan Toppins) [1611783]
+- [netdrv] ice: Update to interrupts enabled in OICR (Jonathan Toppins) [1611783]
+- [netdrv] ice: Set VLAN flags correctly (Jonathan Toppins) [1611783]
+- [netdrv] ice: Use order_base_2 to calculate higher power of 2 (Jonathan Toppins) [1611783]
+- [netdrv] ice: Fix bugs in control queue processing (Jonathan Toppins) [1611783]
+- [netdrv] ice: Clean control queues only when they are initialized (Jonathan Toppins) [1611783]
+- [netdrv] ice: Report stats for allocated queues via ethtool stats (Jonathan Toppins) [1611783]
+- [netdrv] ice: Cleanup magic number (Jonathan Toppins) [1611783]
+- [netdrv] ice: Remove unnecessary node owner check (Jonathan Toppins) [1611783]
+- [netdrv] ice: Fix multiple static analyser warnings (Jonathan Toppins) [1611783]
+- [virt] KVM: VMX: fixes for vmentry_l1d_flush module parameter (Waiman Long) [1616248] {CVE-2018-15572}
+- [virt] KVM: x86: SVM: Call x86_spec_ctrl_set_guest/host() with interrupts disabled (Waiman Long) [1616248] {CVE-2018-15572}
+- [virt] x86/kvm/vmx: Fix coding style in vmx_setup_l1d_flush() (Waiman Long) [1616248] {CVE-2018-15572}
+- [x86] x86/speculation: Support Enhanced IBRS on future CPUs (Waiman Long) [1614144]
+- [x86] x86/speculation: Protect against userspace-userspace spectreRSB (Waiman Long) [1616248] {CVE-2018-15572}
+- [x86] x86/speculation: Remove SPECTRE_V2_IBRS in enum spectre_v2_mitigation (Waiman Long) [1616248] {CVE-2018-15572}
+- [cpufreq] cpufreq: Fix a circular lock dependency problem (Waiman Long) [1599154]
+- [kernel] cpu/hotplug: Add a cpus_read_trylock() function (Waiman Long) [1599154]
+- [virt] xen/spinlock: Don't use pvqspinlock if only 1 vCPU (Waiman Long) [1618486]
+
+* Thu Sep 20 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-13.el8]
+- [mailbox] mailbox: PCC: handle parse error (David Arcari) [1630382]
+- [hv] vmbus: don't return values for uninitalized channels (Vitaly Kuznetsov) [1617954]
+- [mm] kernel/memremap, kasan: make ZONE_DEVICE with work with KASAN (Bill O'Donnell) [1629578]
+- [mm] mm: fix BUG_ON() in vmf_insert_pfn_pud() from VM_MIXEDMAP removal (Jeff Moyer) [1622171]
+- [mm] dax: remove VM_MIXEDMAP for fsdax and device dax (Jeff Moyer) [1622171]
+
+* Wed Sep 19 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-12.el8]
+- [i2c] i2c: i801: fix DNV's SMBCTRL register offset (David Arcari) [1628861]
+- [fs] ceph: avoid a use-after-free in ceph_destroy_options() (Ilya Dryomov) [1629884]
+- [fs] ceph: fix incorrect use of strncpy (Ilya Dryomov) [1629884]
+- [block] rbd: support cloning across namespaces (Ilya Dryomov) [1629884]
+- [block] rbd: factor out get_parent_info() (Ilya Dryomov) [1629884]
+- [block] rbd: support for images within namespaces (Ilya Dryomov) [1629884]
+- [block] rbd: pass rbd_spec into parse_rbd_opts_token() (Ilya Dryomov) [1629884]
+- [net] libceph: weaken sizeof check in ceph_x_verify_authorizer_reply() (Ilya Dryomov) [1629884]
+- [net] libceph: check authorizer reply/challenge length before reading (Ilya Dryomov) [1629884]
+- [net] libceph: implement CEPHX_V2 calculation mode (Ilya Dryomov) [1629884]
+- [net] libceph: add authorizer challenge (Ilya Dryomov) [1629884]
+- [net] libceph: factor out encrypt_authorizer() (Ilya Dryomov) [1629884]
+- [net] libceph: factor out __ceph_x_decrypt() (Ilya Dryomov) [1629884]
+- [net] libceph: factor out __prepare_write_connect() (Ilya Dryomov) [1629884]
+- [net] libceph: store ceph_auth_handshake pointer in ceph_connection (Ilya Dryomov) [1629884]
+- [pci] PCI: pciehp: Deduplicate presence check on probe & resume (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Avoid implicit fallthroughs in switch statements (Myron Stowe) [1583983]
+- [pci] PCI: Whitelist Thunderbolt ports for runtime D3 (Myron Stowe) [1583983]
+- [pci] PCI: Whitelist native hotplug ports for runtime D3 (Myron Stowe) [1583983]
+- [pci] PCI: sysfs: Resume to D0 on function reset (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Resume parent to D0 on config space access (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Resume to D0 on enable/disable (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Support interrupts sent from D3hot (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Obey compulsory command delay after resume (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Clear spurious events earlier on resume (Myron Stowe) [1583983]
+- [pci] PCI: portdrv: Deduplicate PM callback iterator (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Avoid slot access during reset (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Always enable occupied slot on probe (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Become resilient to missed events (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Tolerate initially unstable link (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Declare pciehp_enable/disable_slot() static (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Drop enable/disable lock (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Enable/disable exclusively from IRQ thread (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Track enable/disable status (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Publish to user space last on probe (Myron Stowe) [1583983]
+- [pci] PCI: hotplug: Demidlayer registration with the core (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Drop slot workqueue (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Handle events synchronously (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Stop blinking on slot enable failure (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Convert to threaded polling (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Convert to threaded IRQ (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Document struct slot and struct controller (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Declare pciehp_unconfigure_device() void (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Drop unnecessary NULL pointer check (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Fix unprotected list iteration in IRQ handler (Myron Stowe) [1583983]
+- [pci] PCI: pciehp: Fix use-after-free on unplug (Myron Stowe) [1583983]
+- [pci] PCI: hotplug: Don't leak pci_slot on registration failure (Myron Stowe) [1583983]
+- [pci] PCI: hotplug: Delete skeleton driver (Myron Stowe) [1583983]
+- [netdrv] be2net: Use Kconfig flag to support for enabling/disabling adapters (Petr Oros) [1611768]
+- [acpi] ACPICA: Reference Counts: increase max to 0x4000 for large servers (Frank Ramsay) [1618760]
+
+* Tue Sep 18 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-11.el8]
+- [net] udp6: add missing checks on edumux packet processing (Paolo Abeni) [1625954]
+- [net] udp4: fix IP_CMSG_CHECKSUM for connected sockets (Paolo Abeni) [1625954]
+- [s390] s390/pci: fix out of bounds access during irq setup (Hendrik Brueckner) [1627462]
+- [nvdimm] libnvdimm: fix ars_status output length calculation (Jeff Moyer) [1616307]
+
+* Mon Sep 17 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-10.el8]
+- [scsi] scsi: lpfc: Correct MDS diag and nvmet configuration (Dick Kennedy) [1628323]
+- [iommu] iommu/arm-smmu: workaround DMA mode issues (Mark Salter) [1624077]
+- [x86] x86/microcode: Allow late microcode loading with SMT disabled (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] tools headers: Synchronise x86 cpufeatures.h for L1TF additions (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/mm/kmmio: Make the tracer robust against L1TF (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/mm/pat: Make set_memory_np() L1TF safe (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Make pmd/pud_mknotpresent() invert (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Invert all not present mappings (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: Fix SMT supported evaluation (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] KVM: VMX: Tell the nested hypervisor to skip L1D flush on vmentry (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation: Use ARCH_CAPABILITIES to skip L1D flush on vmentry (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation: Simplify sysfs report of VMX L1TF vulnerability (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] Documentation/l1tf: Remove Yonah processors from not vulnerable list (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Don't set l1tf_flush_l1d from vmx_handle_external_intr() (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/irq: Let interrupt handlers set kvm_cpu_l1tf_flush_l1d (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86: Don't include linux/irq.h from asm/hardirq.h (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Introduce per-host-cpu analogue of l1tf_flush_l1d (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/irq: Demote irq_cpustat_t::__softirq_pending to u16 (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Move the l1tf_flush_l1d test to vmx_l1d_flush() (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Replace 'vmx_l1d_flush_always' with 'vmx_l1d_flush_cond' (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Don't set l1tf_flush_l1d to true from vmx_l1d_flush() (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: detect SMT disabled by BIOS (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] Documentation/l1tf: Fix typos (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Initialize the vmx_l1d_flush_pages' content (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Unbreak !__HAVE_ARCH_PFN_MODIFY_ALLOWED architectures (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] Documentation: Add section about CPU vulnerabilities (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/bugs, kvm: Introduce boot-time control of L1TF mitigations (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: Set CPU_SMT_NOT_SUPPORTED early (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: Expose SMT control init function (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/kvm: Allow runtime control of L1D flush (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/kvm: Serialize L1D flush parameter setter (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/kvm: Add static key for flush always (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/kvm: Move l1tf setup function (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/l1tf: Handle EPT disabled state proper (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/kvm: Drop L1TF MSR list approach (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/litf: Introduce vmx status variable (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: Online siblings when SMT control is turned on (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Use MSR save list for IA32_FLUSH_CMD if required (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Extend add_atomic_switch_msr() to allow VMENTER only MSRs (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Separate the VMX AUTOLOAD guest/host number accounting (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Add find_msr() helper function (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Split the VMX MSR LOAD structures to have an host/guest numbers (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Add L1D flush logic (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Add L1D MSR based flush (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Add L1D flush algorithm (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM/VMX: Add module argument for L1TF mitigation (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/KVM: Warn user if KVM is loaded SMT and L1TF CPU bug being present (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: Boot HT siblings at least once (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] Revert "x86/apic: Ignore secondary threads if nosmt=force" (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Fix up pte->pfn conversion for PAE (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Protect PAE swap entries against L1TF (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/CPU/AMD: Move TOPOEXT reenablement before reading smp_num_siblings (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/cpufeatures: Add detection of L1D cache flush support (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Extend 64bit swap file size limit (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/apic: Ignore secondary threads if nosmt=force (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/cpu/AMD: Evaluate smp_num_siblings early (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/CPU/AMD: Do not check CPUID max ext level before parsing SMP info (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/cpu/intel: Evaluate smp_num_siblings early (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/cpu/topology: Provide detect_extended_topology_early() (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/cpu/common: Provide detect_ht_early() (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/cpu/AMD: Remove the pointless detect_ht() call (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/cpu: Remove the pointless CPU printout (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: Provide knobs to control SMT (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: Split do_cpu_down() (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] cpu/hotplug: Make bringup/teardown of smp threads symmetric (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/topology: Provide topology_smt_supported() (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/smp: Provide topology_is_primary_thread() (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] sched/smt: Update sched_smt_present at runtime (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/bugs: Move the l1tf function and define pr_fmt properly (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Limit swap file size to MAX_PA/2 (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Disallow non privileged high MMIO PROT_NONE mappings (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Add sysfs reporting for l1tf (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Make sure the first page is always reserved (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Protect PROT_NONE PTEs against speculation (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Protect swap entries against L1TF (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Change order of offset/type in swap entry (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+- [x86] x86/speculation/l1tf: Increase 32bit PAE __PHYSICAL_PAGE_SHIFT (Waiman Long) [1616046] {CVE-2018-3620 CVE-2018-3646}
+
+* Thu Sep 13 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-9.el8]
+- [pci] PCI/DPC: Remove indirection waiting for inactive link (Myron Stowe) [1485556]
+- [pci] PCI/DPC: Use threaded IRQ for bottom half handling (Myron Stowe) [1485556]
+- [pci] PCI/DPC: Print AER status in DPC event handling (Myron Stowe) [1485556]
+- [pci] PCI/DPC: Remove rp_pio_status from dpc struct (Myron Stowe) [1485556]
+- [pci] PCI/DPC: Defer event handling to work queue (Myron Stowe) [1485556]
+- [pci] PCI/DPC: Leave interrupts enabled while handling event (Myron Stowe) [1485556]
+- [net] net/mlx5e: Offload TC matching on tos/ttl for ip tunnels (Erez Alfasi) [1615121]
+- [net] net/mlx5e: Support setup of tos and ttl for tunnel key TC action offload (Erez Alfasi) [1615121]
+- [net] net/mlx5e: Use ttl from route lookup on tc encap offload only if needed (Erez Alfasi) [1615121]
+- [net] net/sched: cls_flower: Support matching on ip tos and ttl for tunnels (Erez Alfasi) [1615121]
+- [net] flow_dissector: Dissect tos and ttl from the tunnel info (Erez Alfasi) [1615121]
+- [net] net/sched: tunnel_key: Allow to set tos and ttl for tc based ip tunnels (Erez Alfasi) [1615121]
+- [net] net/sched: act_tunnel_key: disambiguate metadata dst error cases (Erez Alfasi) [1615121]
+- [net] net/sched: add tunnel option support to act_tunnel_key (Erez Alfasi) [1615121]
+- [iommu] iommu/amd: Add support for IOMMU XT mode (Suravee Suthikulpanit) [1504485]
+- [iommu] iommu/amd: Add support for higher 64-bit IOMMU Control Register (Suravee Suthikulpanit) [1504485]
+- [x86] x86: irq_remapping: Move irq remapping mode enum (Suravee Suthikulpanit) [1504485]
+- [firmware] dcdbas: Add support for WSMT ACPI table (Charles Rose) [1502286]
+
+* Wed Sep 12 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-8.el8]
+- [documentation] scsi: documentation: add scsi_mod.use_blk_mq to scsi-parameters (Ewan Milne) [1600014]
+- [scsi] scsi: core: Update SCSI_MQ_DEFAULT help text to match default (Ewan Milne) [1600014]
+- [scsi] scsi: core: switch to scsi-mq by default (Ewan Milne) [1600014]
+- [pci] PCI: Match Root Port's MPS to endpoint's MPSS as necessary (Myron Stowe) [1502324]
+- [pci] PCI: Skip MPS logic for Virtual Functions (VFs) (Myron Stowe) [1502324]
+- [pci] PCI: Check for PCIe Link downtraining (Myron Stowe) [1502324]
+- [pci] PCI: Workaround IDT switch ACS Source Validation erratum (Myron Stowe) [1502324]
+- [of] OF: Don't set default coherent DMA mask (Mark Salter) [1581822]
+- [acpi] ACPI/IORT: Don't set default coherent DMA mask (Mark Salter) [1581822]
+- [iommu] iommu/dma: Respect bus DMA limit for IOVAs (Mark Salter) [1581822]
+- [of] of/device: Set bus DMA mask as appropriate (Mark Salter) [1581822]
+- [acpi] ACPI/IORT: Set bus DMA mask as appropriate (Mark Salter) [1581822]
+- [kernel] dma-mapping: Generalise dma_32bit_limit flag (Mark Salter) [1581822]
+- [acpi] ACPI/IORT: Support address size limit for root complexes (Mark Salter) [1581822]
+- [of] of/platform: Initialise default DMA masks (Mark Salter) [1581822]
+- [net] Bluetooth: hidp: buffer overflow in hidp_process_report (Gopal Tiwari) [1623073] {CVE-2018-9363}
+- [irqchip] irqchip/gic-v3-its: Reduce minimum LPI allocation to 1 for PCI devices (Mark Salter) [1550500]
+- [irqchip] irqchip/gic-v3-its: Honor hypervisor enforced LPI range (Mark Salter) [1550500]
+- [irqchip] irqchip/gic-v3: Expose GICD_TYPER in the rdist structure (Mark Salter) [1550500]
+- [irqchip] irqchip/gic-v3-its: Drop chunk allocation compatibility (Mark Salter) [1550500]
+- [irqchip] irqchip/gic-v3-its: Move minimum LPI requirements to individual busses (Mark Salter) [1550500]
+- [irqchip] irqchip/gic-v3-its: Use full range of LPIs (Mark Salter) [1550500]
+- [irqchip] irqchip/gic-v3-its: Refactor LPI allocator (Mark Salter) [1550500]
+
+* Tue Sep 11 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-7.el8]
+- [netdrv] hv_netvsc: Fix a deadlock by getting rtnl lock earlier in netvsc_probe() (Vitaly Kuznetsov) [1625609]
+- [netdrv] hv_netvsc: ignore devices that are not PCI (Vitaly Kuznetsov) [1625609]
+- [netdrv] hv/netvsc: Fix NULL dereference at single queue mode fallback (Vitaly Kuznetsov) [1625609]
+- [netdrv] hv_netvsc: Add per-cpu ethtool stats for netvsc (Vitaly Kuznetsov) [1625609]
+- [pci] PCI: shpchp: Separate existence of SHPC and permission to use it (Steve Best) [1622953]
+- [powerpc] KVM: PPC: Book3S HV: Don't truncate HPTE index in xlate function (David Gibson) [1625513]
+- [kernel] rh_kabi: Add macros to size and extend structs (Prarit Bhargava) [1564570]
+- [pci] PCI: Remove unnecessary include of <linux/pci-aspm.h> (Myron Stowe) [1622672]
+- [wireless] iwlwifi: Remove unnecessary include of <linux/pci-aspm.h> (Myron Stowe) [1622672]
+- [wireless] ath9k: Remove unnecessary include of <linux/pci-aspm.h> (Myron Stowe) [1622672]
+- [netdrv] igb: Remove unnecessary include of <linux/pci-aspm.h> (Myron Stowe) [1622672]
+- [pci] PCI/ASPM: Convert to use sysfs_match_string() helper (Myron Stowe) [1622672]
+- [virt] KVM: s390: Properly lock mm context allow_gmap_hpage_1m setting (Thomas Huth) [1623513]
+- [virt] KVM: s390: vsie: copy wrapping keys to right place (Thomas Huth) [1623513]
+- [virt] KVM: s390: Fix pfmf and conditional skey emulation (Thomas Huth) [1623513]
+- [virt] KVM: s390: Fix storage attributes migration with memory slots (Thomas Huth) [1623513]
+- [virt] KVM: s390: a utility function for migration (Thomas Huth) [1623513]
+
+* Mon Sep 10 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-6.el8]
+- [lib] vsprintf: Add command line option debug_boot_weak_hash (Prarit Bhargava) [1625687]
+- [netdrv] i40e: Fix for Tx timeouts when interface is brought up if DCB is enabled (Stefan Assmann) [1616147]
+- [misc] ocxl: Fix page fault handler in case of fault on dying process (Steve Best) [1624644]
+- [edac] EDAC, sb_edac: Add support for systems with segmented PCI buses (Aristeu Rozanski) [1621849]
+- [netdrv] xen-netfront: fix warn message as irq device name has '/' (Vitaly Kuznetsov) [1576160]
+- [arm64] arm64, kaslr: export offset in VMCOREINFO ELF notes (Bhupesh Sharma) [1624246]
+- [rpmspec] redhat: Move gfs2 and dlm out of kernel-modules-extra (Andrew Price) [1623511]
+- [powerpc] powerpc/topology: Get topology for shared processors at boot (Steve Best) [1620039]
+- [fs] gfs2: Don't set GFS2_RDF_UPTODATE when the lvb is updated (Robert S Peterson) [1622057]
+- [fs] gfs2: improve debug information when lvb mismatches are found (Robert S Peterson) [1622057]
+- [fs] gfs2: cleanup: call gfs2_rgrp_ondisk2lvb from gfs2_rgrp_out (Robert S Peterson) [1622057]
+- [x86] Fix x86 32-bit invalid cpu boot failure message (Prarit Bhargava) [1571456]
+- [net] net/ipv6: init ip6 anycast rt->dst.input as ip6_input (Hangbin Liu) [1615671]
+- [pci] PCI/AER: Don't clear AER bits if error handling is Firmware-First (Myron Stowe) [1621933]
+- [pci] PCI/AER: Remove duplicate PCI_EXP_AER_FLAGS definition (Myron Stowe) [1621933]
+- [pci] PCI/portdrv: Remove pcie_portdrv_err_handler.slot_reset (Myron Stowe) [1621933]
+- [pci] PCI/AER: Clear device status bits during ERR_COR handling (Myron Stowe) [1621933]
+- [pci] PCI/AER: Clear device status bits during ERR_FATAL and ERR_NONFATAL (Myron Stowe) [1621933]
+- [pci] PCI/AER: Remove ERR_FATAL code from ERR_NONFATAL path (Myron Stowe) [1621933]
+- [pci] PCI/AER: Factor out ERR_NONFATAL status bit clearing (Myron Stowe) [1621933]
+- [pci] PCI/AER: Clear only ERR_NONFATAL bits during non-fatal recovery (Myron Stowe) [1621933]
+- [pci] PCI/AER: Clear only ERR_FATAL status bits during fatal recovery (Myron Stowe) [1621933]
+- [pci] PCI/AER: Honor "pcie_ports=native" even if HEST sets FIRMWARE_FIRST (Myron Stowe) [1621933]
+- [pci] PCI/AER: Add sysfs attributes for rootport cumulative stats (Myron Stowe) [1621933]
+- [pci] PCI/AER: Add sysfs attributes to provide AER stats and breakdown (Myron Stowe) [1621933]
+- [pci] PCI/AER: Define aer_stats structure for AER capable devices (Myron Stowe) [1621933]
+- [pci] PCI/AER: Move internal declarations to drivers/pci/pci.h (Myron Stowe) [1621933]
+- [pci] PCI/AER: Adopt lspci names for AER error decoding (Myron Stowe) [1621933]
+- [pci] PCI/AER: Expose internal API for obtaining AER information (Myron Stowe) [1621933]
+- [kernel] rcu: Make expedited GPs handle CPU 0 being offline (Gustavo Duarte) [1610262]
+- [rpmspec] Generate BootLoaderSpec config fragments ("Herton R. Krzesinski") [1619766]
+
+* Wed Aug 29 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-5.el8]
+- [net] erspan: set erspan_ver to 1 by default when adding an erspan dev (Xin Long) [1619118]
+- [hv] x86/hyper-v: Fix wrong merge conflict resolution (Vitaly Kuznetsov) [1597652]
+- [hv] x86/hyper-v: Check for VP_INVAL in hyperv_flush_tlb_others() (Vitaly Kuznetsov) [1597652]
+- [hv] x86/hyper-v: Check cpumask_to_vpset() return value in hyperv_flush_tlb_others_ex() (Vitaly Kuznetsov) [1597652]
+- [hv] x86/hyper-v: Trace PV IPI send (Vitaly Kuznetsov) [1597652]
+- [hv] x86/hyper-v: Use cheaper HVCALL_SEND_IPI hypercall when possible (Vitaly Kuznetsov) [1597652]
+- [hv] x86/hyper-v: Use 'fast' hypercall for HVCALL_SEND_IPI (Vitaly Kuznetsov) [1597652]
+- [hv] x86/hyper-v: Implement hv_do_fast_hypercall16 (Vitaly Kuznetsov) [1597652]
+- [hv] x86/hyper-v: Use cheaper HVCALL_FLUSH_VIRTUAL_ADDRESS_(LIST, SPACE) hypercalls when possible (Vitaly Kuznetsov) [1597652]
+- [netdrv] xen-netfront: fix queue name setting (Vitaly Kuznetsov) [1576160]
+- [scsi] lfpc: add Lancer FCoE to the removed devices (Tomas Henzl) [1602033]
+- [scsi] megaraid_sas: add removed id table (Tomas Henzl) [1602033]
+- [scsi] aacraid: add removed id table (Tomas Henzl) [1602033]
+- [scsi] qla4xxx: add removed id table (Tomas Henzl) [1602033]
+- [scsi] lpfc: add removed id table (Tomas Henzl) [1602033]
+- [scsi] qla2xxx: add removed id table (Tomas Henzl) [1602033]
+- [scsi] mpt3sas: add removed id table (Tomas Henzl) [1602033]
+- [scsi] be2iscsi: add removed id table (Tomas Henzl) [1602033]
+- [scsi] rh_taint, pci : add information about removed hardware (Tomas Henzl) [1602033]
+- [kernel] kernel: add SUPPORT_REMOVED kernel taint (Tomas Henzl) [1602033]
+- [net] sunrpc: Change rpc_print_iostats to rpc_clnt_show_stats and handle rpc_clnt clones (Dave Wysochanski) [1610373]
+- [net] sunrpc: Add _add_rpc_iostats() to add rpc_iostats metrics (Dave Wysochanski) [1610373]
+- [net] sunrpc: add _print_rpc_iostats() to output metrics for one RPC op (Dave Wysochanski) [1610373]
+
+* Mon Aug 27 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-4.el8]
+- [net] xdp: exclude XDP from kABI guarantee (Jiri Benc) [1568551]
+- [kernel] rh_kabi: introduce RH_KABI_EXCLUDE (Jiri Benc) [1568551]
+- [powerpc] powerpc/powernv/pci: Work around races in PCI bridge enabling (Steve Best) [1620035]
+- [block] blk-wbt: fix IO hang in wbt_wait() (Ming Lei) [1614198]
+- [block] blkcg: Make blkg_root_lookup() work for queues in bypass mode (Ming Lei) [1614198]
+- [block] null_blk: add lock drop/acquire annotation (Ming Lei) [1614198]
+- [block] Blk-throttle: reduce tail io latency when iops limit is (Ming Lei) [1614198]
+- [block] block: paride: pd: mark expected switch fall-throughs (Ming Lei) [1614198]
+- [block] block: Ensure that a request queue is dissociated from the (Ming Lei) [1614198]
+- [block] block: Introduce blk_exit_queue() (Ming Lei) [1614198]
+- [block] blkcg: Introduce blkg_root_lookup() (Ming Lei) [1614198]
+- [block] block: Remove two superfluous #include directives (Ming Lei) [1614198]
+- [block] blk-mq: count the hctx as active before allocating tag (Ming Lei) [1614198]
+- [block] block: bvec_nr_vecs() returns value for wrong slab (Ming Lei) [1614198]
+- [block] drivers/block/drbd: remove the null check for (Ming Lei) [1614198]
+- [block] drivers/block/aoe/aoedev: NULL check is not needed for (Ming Lei) [1614198]
+- [block] drivers/block/mtip32xx: remove the null check for (Ming Lei) [1614198]
+- [block] cfq: Suppress compiler warnings about comparisons (Ming Lei) [1614198]
+- [block] cfq: Annotate fall-through in a switch statement (Ming Lei) [1614198]
+- [block] blk-wbt: Avoid lock contention and thundering herd issue in (Ming Lei) [1590363]
+- [block] target/loop: depend on SCSI (Ming Lei) [1614198]
+- [block] xen-blkfront: use true and false for boolean values (Ming Lei) [1614198]
+- [block] lightnvm: remove minor version check for 2.0 (Ming Lei) [1614198]
+- [block] scsi: Check sense buffer size at build time (Ming Lei) [1614198]
+- [block] libata-scsi: Move sense buffers onto stack (Ming Lei) [1614198]
+- [block] cdrom: Use struct scsi_sense_hdr internally (Ming Lei) [1614198]
+- [block] ide-cd: Remove redundant sense buffer (Ming Lei) [1614198]
+- [block] block: Switch struct packet_command to use struct (Ming Lei) [1614198]
+- [block] target: don't depend on SCSI (Ming Lei) [1614198]
+- [block] scsi: build scsi_common.o for all scsi passthrough request (Ming Lei) [1614198]
+- [block] scsi: cxlflash: Drop unused sense buffers (Ming Lei) [1614198]
+- [block] ide-cd: Drop unused sense buffers (Ming Lei) [1614198]
+- [block] blk-mq: fix updating tags depth (Ming Lei) [1611900]
+- [block] block: really disable runtime-pm for blk-mq (Ming Lei) [1611902]
+- [block] aoe: mark expected switch fall-through (Ming Lei) [1614198]
+- [block] block: make iolatency avg_lat exponentially decay (Ming Lei) [1614198]
+- [block] blk-cgroup: clear the throttle queue on fork (Ming Lei) [1614198]
+- [block] blk-cgroup: hold the queue ref during throttling (Ming Lei) [1614198]
+- [block] blk-iolatency: fix blkg leak in timer_fn (Ming Lei) [1614198]
+- [block] block/bsg-lib: use PTR_ERR_OR_ZERO to simplify the flow path (Ming Lei) [1614198]
+- [block] t10-pi: provide empty t10_pi_complete() for (Ming Lei) [1614198]
+- [block] block: blk_init_allocated_queue() set q->fq as NULL in the (Ming Lei) [1614198]
+- [block] nvme: use blk API to remap ref tags for IOs with metadata (Ming Lei) [1614198]
+- [block] block: move dif_prepare/dif_complete functions to block layer (Ming Lei) [1614198]
+- [block] block: move ref_tag calculation func to the block layer (Ming Lei) [1614198]
+- [block] block: don't account for split bio's size in cgroup stats (Ming Lei) [1614198]
+- [block] pktcdvd: Fix possible Spectre-v1 for pkt_devs (Ming Lei) [1614198]
+- [block] partitions/aix: append null character to print data from disk (Ming Lei) [1614198]
+- [block] partitions/aix: fix usage of uninitialized lv_info and lvname (Ming Lei) [1614198]
+- [block] readahead: stricter check for bdi io_pages (Ming Lei) [1614198]
+- [block] scsi: virtio_scsi: fix pi_bytes(out, in) on 4 KiB block size (Ming Lei) [1614198]
+- [block] block: move bio_integrity_(intervals, bytes) into blkdev.h (Ming Lei) [1614198]
+- [block] xen/blkfront: remove unused macros (Ming Lei) [1614198]
+- [block] block: allow max_discard_segments to be stacked (Ming Lei) [1614198]
+- [block] block: unexport bio_clone_bioset (Ming Lei) [1614198]
+- [block] md: remove a bogus comment (Ming Lei) [1614198]
+- [block] block: remove bio_clone_kmalloc (Ming Lei) [1614198]
+- [block] exofs: use bio_clone_fast in _write_mirror (Ming Lei) [1614198]
+- [block] bcache: don't clone bio in bch_data_verify (Ming Lei) [1614198]
+- [block] block: bio_set_pages_dirty can't see NULL bv_page in a valid (Ming Lei) [1614198]
+- [block] block: simplify bio_check_pages_dirty (Ming Lei) [1614198]
+- [block] block: Rename the null_blk_mod kernel module back into (Ming Lei) [1614198]
+- [block] blk-mq: fail the request in case issue failure (Ming Lei) [1614305]
+- [block] blk-rq-qos: make depth comparisons unsigned (Ming Lei) [1614198]
+- [block] blkcg: Track DISCARD statistics and output them in cgroup (Ming Lei) [1614198]
+- [block] block: Track DISCARD statistics and output them in stat and (Ming Lei) [1614198]
+- [block] block: Add and use op_stat_group() for indexing disk_stat (Ming Lei) [1614198]
+- [block] block: Define and use STAT_READ and STAT_WRITE (Ming Lei) [1614198]
+- [block] block: Add part_stat_read_accum to read across field entries (Ming Lei) [1614198]
+- [block] block: make bdev_ops->rw_page() take a REQ_OP instead of bool (Ming Lei) [1614198]
+- [block] pktcdvd: remove assignment in if condition (Ming Lei) [1614198]
+- [block] blk-mq: issue directly if hw queue isn't busy in case of (Ming Lei) [1614305]
+- [block] blk-iolatency: truncate our current time (Ming Lei) [1614198]
+- [block] blk-iolatency: don't change the latency window (Ming Lei) [1614198]
+- [block] block: remove blkdev_entry_to_request() macro (Ming Lei) [1614198]
+- [block] block: skd: Use pad printk format for dma_addr_t values (Ming Lei) [1614198]
+- [block] bsg: remove read/write support (Ming Lei) [1614198]
+- [block] blk-iolatency: fix max_depth comparisons (Ming Lei) [1614198]
+- [block] block: iolatency: avoid 64-bit division (Ming Lei) [1614198]
+- [block] block/DAC960.c: fix defined but not used build warnings (Ming Lei) [1614198]
+- [block] null_blk: add zone support (Ming Lei) [1614198]
+- [block] null_blk: move shared definitions to header file (Ming Lei) [1614198]
+- [block] block: Add default switch case to blk_pm_allow_request() to (Ming Lei) [1614198]
+- [block] block: fix infinite loop if the device loses discard (Ming Lei) [1614198]
+- [block] block, mm: remove unnecessary __GFP_HIGH flag (Ming Lei) [1614198]
+- [block] null_blk: remove NULLB_DEV_FL_CONFIGURED on turning off nullb (Ming Lei) [1614198]
+- [block] mm: skip readahead if the cgroup is congested (Ming Lei) [1614198]
+- [block] Documentation: add a doc for blk-iolatency (Ming Lei) [1614198]
+- [block] block: introduce blk-iolatency io controller (Ming Lei) [1614198]
+- [block] rq-qos: introduce dio_bio callback (Ming Lei) [1614198]
+- [block] block: remove external dependency on wbt_flags (Ming Lei) [1614198]
+- [block] blk-rq-qos: refactor out common elements of blk-wbt (Ming Lei) [1614198]
+- [block] blk-stat: export helpers for modifying blk_rq_stat (Ming Lei) [1614198]
+- [block] memcontrol: schedule throttling if we are congested (Ming Lei) [1614198]
+- [block] blkcg: add generic throttling mechanism (Ming Lei) [1614198]
+- [block] swap, blkcg: issue swap io with the appropriate context (Ming Lei) [1614198]
+- [block] blk: introduce REQ_SWAP (Ming Lei) [1614198]
+- [block] blk-cgroup: allow controllers to output their own stats (Ming Lei) [1614198]
+- [block] block: introduce bio_issue_as_root_blkg (Ming Lei) [1614198]
+- [block] block: add bi_blkg to the bio for cgroups (Ming Lei) [1614198]
+- [block] blk-mq: dequeue request one by one from sw queue if hctx is (Ming Lei) [1614305]
+- [block] block/loop: mark expected switch fall-through (Ming Lei) [1614198]
+- [block] drbd: mark expected switch fall-throughs (Ming Lei) [1614198]
+- [block] blk-mq: only attempt to merge bio if there is rq in sw queue (Ming Lei) [1614305]
+- [block] blk-mq: use list_splice_tail_init() to insert requests (Ming Lei) [1614305]
+- [block] blk-mq: fix typo in a function comment (Ming Lei) [1614198]
+- [block] blk-mq: code clean-up by adding an API to clear set->mq_map (Ming Lei) [1614198]
+- [block] paride: remove redundant variable n (Ming Lei) [1614198]
+- [block] partitions/ldm: remove redundant pointer dgrp (Ming Lei) [1614198]
+- [block] loop: remove redundant pointer inode (Ming Lei) [1614198]
+- [block] block/floppy: remove redundant variable dflags (Ming Lei) [1614198]
+- [block] Block: blk-throttle: set low_valid immediately once one (Ming Lei) [1614198]
+- [block] Blktrace: bail out early if block debugfs is not configured (Ming Lei) [1614198]
+- [block] block: Document how blk_update_request() handles (Ming Lei) [1614198]
+- [block] drbd: Do not redefine __must_hold() (Ming Lei) [1614198]
+- [block] blk-mq: avoid to synchronize rcu inside blk_cleanup_queue() (Ming Lei) [1597067]
+- [block] blk-mq: remove synchronize_rcu() from (Ming Lei) [1597067]
+- [block] blk-mq: introduce new lock for protecting hctx->dispatch_wait (Ming Lei) [1597067]
+- [block] blk-mq: don't pass **hctx to blk_mq_mark_tag_wait() (Ming Lei) [1597067]
+- [block] blk-mq: cleanup blk_mq_get_driver_tag() (Ming Lei) [1597067]
+- [block] block, bfq: give a better name to bfq_bfqq_may_idle (Ming Lei) [1614198]
+- [block] block, bfq: fix service being wrongly set to zero in case of (Ming Lei) [1614198]
+- [block] block, bfq: do not expire a queue that will deserve dispatch (Ming Lei) [1614198]
+- [block] block, bfq: add/remove entity weights correctly (Ming Lei) [1614198]
+- [block] block: Make struct request_queue smaller for (Ming Lei) [1614198]
+- [block] block: Inline blk_queue_nr_zones() (Ming Lei) [1614198]
+- [block] block: Remove bdev_nr_zones() (Ming Lei) [1614198]
+- [block] include/uapi/linux/blkzoned.h: Remove a superfluous __packed (Ming Lei) [1614198]
+- [block] block: Remove a superfluous cast from blkdev_report_zones() (Ming Lei) [1614198]
+
+* Fri Aug 24 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-3.el8]
+- [net] tls: mark as Tech Preview (Sabrina Dubroca) [1570255]
+- [pci] PCI/VPD: Check for VPD access completion before checking for timeout (Myron Stowe) [1618820]
+- [rpmspec] redhat: remove bootwrapper subpackage (Gustavo Duarte) [1578399]
+- [virt] kvm: x86: Set highest physical address bits in non-present/reserved SPTEs (Paolo Bonzini) [1614808]
+- [virt] KVM/x86: Use CC_SET()/CC_OUT in arch/x86/kvm/vmx.c (Paolo Bonzini) [1614808]
+- [virt] KVM: X86: Implement PV IPIs in linux guest (Paolo Bonzini) [1614808]
+- [virt] KVM: X86: Add kvm hypervisor init time platform setup callback (Paolo Bonzini) [1614808]
+- [virt] KVM: X86: Implement "send IPI" hypercall (Paolo Bonzini) [1614808]
+- [virt] KVM/x86: Move X86_CR4_OSXSAVE check into kvm_valid_sregs() (Paolo Bonzini) [1614808]
+- [virt] KVM: x86: Skip pae_root shadow allocation if tdp enabled (Paolo Bonzini) [1614808]
+- [virt] KVM/MMU: Combine flushing remote tlb in mmu_set_spte() (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: skip VMWRITE of HOST_(FS, GS)_BASE when possible (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: skip VMWRITE of HOST_(FS, GS)_SEL when possible (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: always initialize HOST_(FS, GS)_BASE to zero during setup (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: move struct host_state usage to struct loaded_vmcs (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: compute need to reload FS/GS/LDT on demand (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: remove a misleading comment regarding vmcs02 fields (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: rename __vmx_load_host_state() and vmx_save_host_state() (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: add dedicated utility to access guest's kernel_gs_base (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: track host_state.loaded using a loaded_vmcs pointer (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: refactor segmentation code in vmx_save_host_state() (Paolo Bonzini) [1614808]
+- [virt] kvm: nVMX: Fix fault priority for VMX operations (Paolo Bonzini) [1614808]
+- [virt] kvm: nVMX: Fix fault vector for VMX operation at CPL > 0 (Paolo Bonzini) [1614808]
+- [virt] KVM: try __get_user_pages_fast even if not in atomic context (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: Add tlb_remote_flush callback support (Paolo Bonzini) [1614808]
+- [virt] KVM: x86: Add tlb remote flush callback in kvm_x86_ops (Paolo Bonzini) [1614808]
+- [virt] X86/Hyper-V: Add hyperv_nested_flush_guest_mapping ftrace support (Paolo Bonzini) [1614808]
+- [virt] X86/Hyper-V: Add flush HvFlushGuestPhysicalAddressSpace hypercall support (Paolo Bonzini) [1614808]
+- [virt] x86/kvm: Don't use pvqspinlock code if only 1 vCPU (Paolo Bonzini) [1614808]
+- [virt] KVM/MMU: Simplify __kvm_sync_page() function (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Remove CR3_PCID_INVD flag (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Add multi-entry LRU cache for previous CR3s (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Flush only affected TLB entries in kvm_mmu_invlpg* (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Skip shadow page resync on CR3 switch when indicated by guest (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Support selectively freeing either current or previous MMU root (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Add a root_hpa parameter to kvm_mmu->invlpg() (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Skip TLB flush on fast CR3 switch when indicated by guest (Paolo Bonzini) [1614808]
+- [virt] kvm: vmx: Support INVPCID in shadow paging mode (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Propagate guest PCIDs to host PCIDs (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Add ability to skip TLB flush when switching CR3 (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Use fast CR3 switch for nested VMX (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Support resetting the MMU context without resetting roots (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Add support for fast CR3 switch across different MMU modes (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Introduce KVM_REQ_LOAD_CR3 (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Introduce kvm_mmu_calc_root_page_role() (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Add fast CR3 switch code path (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Avoid taking MMU lock in kvm_mmu_sync_roots if no sync is needed (Paolo Bonzini) [1614808]
+- [virt] kvm: x86: Make sync_page() flush remote TLBs once only (Paolo Bonzini) [1614808]
+- [virt] KVM: MMU: drop vcpu param in gpte_access (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Separate logic allocating shadow vmcs to a function (Paolo Bonzini) [1614808]
+- [virt] KVM: VMX: Mark vmcs header as shadow in case alloc_vmcs_cpu() allocate shadow vmcs (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Expose VMCS shadowing to L1 guest (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Do not forward VMREAD/VMWRITE VMExits to L1 if required so by vmcs12 vmread/vmwrite bitmaps (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: vmread/vmwrite: Use shadow vmcs12 if running L2 (Paolo Bonzini) [1614808]
+- [virt] KVM: selftests: add tests for shadow VMCS save/restore (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: include shadow vmcs12 in nested state (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Cache shadow vmcs12 on VMEntry and flush to memory on VMExit (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Verify VMCS shadowing VMCS link pointer (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Verify VMCS shadowing controls (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Introduce nested_cpu_has_shadow_vmcs() (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Fail VMLAUNCH and VMRESUME on shadow VMCS (Paolo Bonzini) [1614808]
+- [virt] KVM: nVMX: Allow VMPTRLD for shadow VMCS if vCPU supports VMCS shadowing (Paolo Bonzini) [1614808]
+- [virt] KVM: VMX: Change vmcs12(read, write)_any() to receive vmcs12 as parameter (Paolo Bonzini) [1614808]
+- [virt] KVM: VMX: Create struct for VMCS header (Paolo Bonzini) [1614808]
+- [virt] kvm: selftests: add test for nested state save/restore (Paolo Bonzini) [1614808]
+- [virt] kvm: nVMX: Introduce KVM_CAP_NESTED_STATE (Paolo Bonzini) [1614808]
+- [virt] KVM: x86: do not load vmcs12 pages while still in SMM (Paolo Bonzini) [1614808]
+- [virt] kvm: selftests: add basic test for state save and restore (Paolo Bonzini) [1614808]
+- [virt] kvm: selftests: ensure vcpu file is released (Paolo Bonzini) [1614808]
+- [virt] kvm: selftests: actually use all of lib/vmx.c (Paolo Bonzini) [1614808]
+- [virt] kvm: selftests: create a GDT and TSS (Paolo Bonzini) [1614808]
+- [virt] KVM: x86: ensure all MSRs can always be KVM_GET/SET_MSR'd (Paolo Bonzini) [1614808]
+- [virt] KVM: vmx: remove save/restore of host BNDCGFS MSR (Paolo Bonzini) [1614808]
+- [virt] KVM: Switch 'requests' to be 64-bit (explicitly) (Paolo Bonzini) [1614808]
+- [virt] kvm: selftests: add cr4_cpuid_sync_test (Paolo Bonzini) [1614808]
+- [virt] KVM: PPC: Book3S HV: Read kvm->arch.emul_smt_mode under kvm->lock (Paolo Bonzini) [1614808]
+- [virt] KVM: PPC: Book3S HV: Allow creating max number of VCPUs on POWER9 (Paolo Bonzini) [1614808]
+- [virt] KVM: PPC: Book3S HV: Pack VCORE IDs to access full VCPU ID space (Paolo Bonzini) [1614808]
+- [virt] KVM: PPC: Book3S HV: Fix constant size warning (Paolo Bonzini) [1614808]
+- [virt] KVM: PPC: Book3S HV: Add of_node_put() in success path (Paolo Bonzini) [1614808]
+- [virt] KVM: PPC: Book3S: Fix matching of hardware and emulated TCE tables (Paolo Bonzini) [1614808]
+- [virt] KVM: PPC: Remove mmio_vsx_tx_sx_enabled in KVM MMIO emulation (Paolo Bonzini) [1614808]
+
+* Fri Aug 17 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-2.el8]
+- [net] tcp: Add tcp_clamp_rto_to_user_timeout() helper to improve accuracy (Michael Cambria) [1605024]
+- [net] tcp: Add tcp_retransmit_stamp() helper routine (Michael Cambria) [1605024]
+- [net] tcp: convert icsk_user_timeout from jiffies to msecs (Michael Cambria) [1605024]
+- [kernel] Revert sched/fair: Consider SD_NUMA when selecting the most idle group to schedule on (Lauro Ramos Venancio) [1585746]
+- [kernel] redhat: makefile: adjust KBUILD_CFLAGS to reflect kernel.spec for powerpc builds (Gustavo Duarte) [1582568]
+- [rpmspec] redhat: spec: build ppc64le kernel with -O3 (Gustavo Duarte) [1582568]
+- [scsi] scsi: csiostor: update csio_get_flash_params() (Arjun Vynipadath) [1503574]
+- [scsi] csiostor: Add a soft dep on cxgb4 driver (Arjun Vynipadath) [1503574]
+- [firmware] dell_rbu: make firmware payload memory uncachable (Charles Rose) [1584401]
+
+* Mon Aug 13 2018 Herton R. Krzesinski <herton@redhat.com> [4.18.0-1.el8]
+- [scsi] scsi: lpfc: update driver version to 12.0.0.6 (Dick Kennedy) [1613913]
+- [scsi] scsi: lpfc: Remove lpfc_enable_pbde as module parameter (Dick Kennedy) [1613913]
+- [scsi] scsi: lpfc: Correct LCB ACCept payload (Dick Kennedy) [1613913]
+- [scsi] scsi: lpfc: Limit tracking of tgt queue depth in fast path (Dick Kennedy) [1613913]
+- [scsi] scsi: lpfc: Fix driver crash when re-registering NVME rports (Dick Kennedy) [1613913]
+- [scsi] scsi: lpfc: Fix list corruption on the completion queue (Dick Kennedy) [1613913]
+- [scsi] scsi: lpfc: Fix sysfs Speed value on CNA ports (Dick Kennedy) [1613913]
+- [scsi] scsi: lpfc: Fix ELS abort on SLI-3 adapters (Dick Kennedy) [1613913]
+- [scsi] scsi: lpfc: remove null check on nvmebuf (Dick Kennedy) [1613913]
+- [arm64] arm64: fix ACPI dependencies (Bhupesh Sharma) [1556832]
+- [arm64] arm64: acpi: fix alignment fault in accessing ACPI (Bhupesh Sharma) [1556832]
+- [firmware] efi/arm: map UEFI memory map even w/o runtime services enabled (Bhupesh Sharma) [1556832]
+- [firmware] efi/arm: preserve early mapping of UEFI memory map longer for BGRT (Bhupesh Sharma) [1556832]
+- [acpi] drivers: acpi: add dependency of EFI for arm64 (Bhupesh Sharma) [1556832]
+- [arm64] arm64: export memblock_reserve()d regions via /proc/iomem (Bhupesh Sharma) [1556832]
+- [arm64] arm64: kconfig: Ensure spinlock fastpaths are inlined if !PREEMPT (Waiman Long) [1607924]
+- [arm64] arm64: locking: Replace ticket lock implementation with qspinlock (Waiman Long) [1607924]
+- [arm64] arm64: barrier: Implement smp_cond_load_relaxed (Waiman Long) [1607924]
+- [scsi] scsi: lpfc: Revise copyright for new company language (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: update driver version to 12.0.0.5 (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: devloss timeout race condition caused null pointer reference (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: Fix NVME Target crash in defer rcv logic (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: Support duration field in Link Cable Beacon V1 command (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: Make PBDE optimizations configurable (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: Fix abort error path for NVMET (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: Fix panic if driver unloaded when port is offline (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: Fix driver not setting dpp bits correctly in doorbell word (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: Add Buffer overflow check, when nvme_info larger than PAGE_SIZE (Dick Kennedy) [1600946]
+- [scsi] scsi: lpfc: use monotonic timestamps for statistics (Dick Kennedy) [1600946]
+- [x86] mark intel knights landing and knights mill unsupported (David Arcari) [1610493]
+- [netdrv] igb: Remove superfluous reset to PHY and page 0 selection (Corinna Vinschen) [1612824]
+- [tools] selftests/powerpc: Fix ptrace-pkey for default execute permission change (Steve Best) [1498799]
+- [tools] selftests/powerpc: Fix core-pkey for default execute permission change (Steve Best) [1498799]
+- [powerpc] powerpc/pkeys: make protection key 0 less special (Steve Best) [1498799]
+- [powerpc] powerpc/pkeys: Preallocate execute-only key (Steve Best) [1498799]
+- [powerpc] powerpc/pkeys: Fix calculation of total pkeys (Steve Best) [1498799]
+- [powerpc] powerpc/pkeys: Save the pkey registers before fork (Steve Best) [1498799]
+- [powerpc] powerpc/pkeys: key allocation/deallocation must not change pkey registers (Steve Best) [1498799]
+- [powerpc] powerpc/pkeys: Deny read/write/execute by default (Steve Best) [1498799]
+- [powerpc] powerpc/pkeys: Give all threads control of their key permissions (Steve Best) [1498799]
+- [s390] KVM: s390: Add huge page enablement control (David Hildenbrand) [1508102]
+- [s390] s390/mm: Add huge page gmap linking support (David Hildenbrand) [1508102]
+- [s390] s390/mm: hugetlb pages within a gmap can not be freed (David Hildenbrand) [1508102]
+- [s390] KVM: s390: Beautify skey enable check (David Hildenbrand) [1508102]
+- [s390] KVM: s390: Add skey emulation fault handling (David Hildenbrand) [1508102]
+- [s390] s390/mm: Add huge pmd storage key handling (David Hildenbrand) [1508102]
+- [s390] s390/mm: Clear skeys for newly mapped huge guest pmds (David Hildenbrand) [1508102]
+- [s390] s390/mm: Clear huge page storage keys on enable_skey (David Hildenbrand) [1508102]
+- [s390] s390/mm: Add huge page dirty sync support (David Hildenbrand) [1508102]
+- [s390] s390/mm: Add gmap pmd invalidation and clearing (David Hildenbrand) [1508102]
+- [s390] s390/mm: Add gmap pmd notification bit setting (David Hildenbrand) [1508102]
+- [s390] s390/mm: Add gmap pmd linking (David Hildenbrand) [1508102]
+- [s390] s390/mm: Abstract gmap notify bit setting (David Hildenbrand) [1508102]
+- [s390] s390/mm: Make gmap_protect_range more modular (David Hildenbrand) [1508102]
+- [s390] KVM: s390: Replace clear_user with kvm_clear_guest (David Hildenbrand) [1508102]
+- [hwmon] hwmon: (ibmpowernv) Add attributes to enable/disable sensor groups (Steve Best) [1524684]
+- [powerpc] powerpc/powernv: Add support to enable sensor groups (Steve Best) [1524684]
+- [net] net/smc: improve delete link processing (Hendrik Brueckner) [1548452]
+- [net] net/smc: provide fallback reason code (Hendrik Brueckner) [1548452]
+- [net] net/smc: use correct vlan gid of RoCE device (Hendrik Brueckner) [1548452]
+- [net] net/smc: fewer parameters for smc_llc_send_confirm_link() (Hendrik Brueckner) [1548452]
+- [net] net/smc: remove local variable page in smc_rx_splice() (Hendrik Brueckner) [1548452]
+- [net] net/smc: use DECLARE_BITMAP for rtokens_used_mask (Hendrik Brueckner) [1548452]
+- [net] net/smc: add function to get link group from link (Hendrik Brueckner) [1548452]
+- [net] net/smc: eliminate cursor read and write calls (Hendrik Brueckner) [1548452]
+- [net] net/smc: provide smc mode in smc_diag.c (Hendrik Brueckner) [1548452]
+- [s390] s390/ism: add device driver for internal shared memory (Hendrik Brueckner) [1548452]
+- [net] net/smc: add SMC-D diag support (Hendrik Brueckner) [1548452]
+- [net] net/smc: add SMC-D support in af_smc (Hendrik Brueckner) [1548452]
+- [net] net/smc: add SMC-D support in data transfer (Hendrik Brueckner) [1548452]
+- [net] net/smc: add SMC-D support in CLC messages (Hendrik Brueckner) [1548452]
+- [net] net/smc: add pnetid support for SMC-D and ISM (Hendrik Brueckner) [1548452]
+- [net] net/smc: add base infrastructure for SMC-D and ISM (Hendrik Brueckner) [1548452]
+- [net] net/smc: add pnetid support (Hendrik Brueckner) [1548452]
+- [net] net/smc: determine port attributes independent from pnet table (Hendrik Brueckner) [1548452]
+- [x86] mark whiskey-lake processor supported (David Arcari) [1609604]
+- [s390] KVM: s390: add etoken support for guests (Thomas Huth) [1612110]
+- [char] ipmi: do not configure ipmi for HPE m400 (Tony Camuso) [1583537]
+- [scsi] scsi: ipr: Format HCAM overlay ID 0x41 (Steve Best) [1498222]
+- [x86] x86/stacktrace: Enable HAVE_RELIABLE_STACKTRACE for the ORC unwinder (Joe Lawrence) [1587952]
+- [x86] x86/unwind/orc: Detect the end of the stack (Joe Lawrence) [1587952]
+- [x86] x86/stacktrace: Do not fail for ORC with regs on stack (Joe Lawrence) [1587952]
+- [x86] x86/stacktrace: Clarify the reliable success paths (Joe Lawrence) [1587952]
+- [x86] x86/stacktrace: Remove STACKTRACE_DUMP_ONCE (Joe Lawrence) [1587952]
+- [x86] x86/stacktrace: Do not unwind after user regs (Joe Lawrence) [1587952]
+- [infiniband] IB/rxe: Mark Soft-RoCE Transport driver as tech-preview (Don Dutile) [1605216]
+- [scsi] scsi: smartpqi: bump driver version to 1.1.4-130 (Don Brace) [1503736]
+- [scsi] scsi: smartpqi: fix critical ARM issue reading PQI index registers (Don Brace) [1503736]
+- [scsi] scsi: smartpqi: add inspur advantech ids (Don Brace) [1503736]
+- [scsi] scsi: smartpqi: improve error checking for sync requests (Don Brace) [1503736]
+- [scsi] scsi: smartpqi: improve handling for sync requests (Don Brace) [1503736]
+- [netdrv] ice: mark driver as tech-preview (Jonathan Toppins) [1495347]
+- [init] init/Kconfig: remove EXPERT from CHECKPOINT_RESTORE (Adrian Reber) [1568995 1557617 1525389]
+- [scsi] be2iscsi: remove BE3 family support (Maurizio Lombardi) [1598366]
+- [x86] update rh_check_supported processor list (David Arcari) [1595918]
+- [kernel] kABI: Add generic kABI macros to use for kABI workarounds (Myron Stowe) [1546831]
+- [pci] add pci_hw_vendor_status() (Maurizio Lombardi) [1590829]
+- [ata] ahci: thunderx2: Fix for errata that affects stop engine (Robert Richter) [1563590]
+- [pci] Vulcan: AHCI PCI bar fix for Broadcom Vulcan early silicon (Robert Richter) [1563590]
+- [kernel] bpf: set default values for bpf_jit_harden and bpf_jit_kallsyms (Eugene Syromiatnikov) [1569061]
+- [kernel] bpf: Add tech preview taint for syscall (Eugene Syromiatnikov) [1559877]
+- [kernel] bpf: set unprivileged_bpf_disabled to 1 by default, add a boot parameter (Eugene Syromiatnikov) [1561171]
+- [kernel] add Red Hat-specific taint flags (Eugene Syromiatnikov) [1559877]
+- [tools] perf tests: Add Python 3 support to attr.py ("Herton R. Krzesinski") [1561505]
+- [tools] perf scripts python: Add Python 3 support to stat-cpi.py ("Herton R. Krzesinski") [1561505]
+- [kernel] kdump: fix a grammar issue in a kernel message (Dave Young) [1507353]
+- [scripts] tags.sh: Ignore redhat/rpm (Prarit Bhargava) [1582586]
+- [kernel] put RHEL info into generated headers (Prarit Bhargava) [1544999]
+- [kernel] kdump: add support for crashkernel=auto (Dave Young) [1507353]
+- [kernel] kdump: round up the total memory size to 128M for crashkernel reservation (Dave Young) [1507353]
+- [arm64] acpi: prefer booting with ACPI over DTS (Mark Salter) [1576869]
+- [acpi] aarch64: acpi scan: Fix regression related to X-Gene UARTs (Mark Salter) [1519554]
+- [acpi] ACPI / irq: Workaround firmware issue on X-Gene based m400 (Mark Salter) [1519554]
+- [x86] add rh_check_supported (David Arcari) [1565717]
+- [scsi] qla2xxx: Remove PCI IDs of deprecated adapter (Himanshu Madhani) [1572233]
+- [scsi] be2iscsi: remove unsupported device IDs (Chris Leech) [1574502]
+- [scsi] Removing Obsolete hba pci-ids from rhel8 (Dick Kennedy) [1572321]
+- [scsi] hpsa: modify hpsa driver version (Joseph Szczypek) [1471185]
+- [scsi] hpsa: remove old cciss-based smartarray pci ids (Joseph Szczypek) [1471185]
+- [kernel] rh_taint: add support for marking driver as unsupported (Jonathan Toppins) [1565704]
+- [kernel] rh_taint: add support (David Arcari) [1565704]
+- [scsi] qla4xxx: Remove deprecated PCI IDs from RHEL 8 (Chad Dupuis) [1518874]
+- [scsi] aacraid: Remove depreciated device and vendor PCI id's (Raghava Aditya Renukunta) [1495307]
+- [scsi] megaraid_sas: remove deprecated pci-ids (Tomas Henzl) [1509329]
+- [scsi] mpt*: remove certain deprecated pci-ids (Tomas Henzl) [1511953]
+- [kernel] modules: add rhelversion MODULE_INFO tag (Prarit Bhargava) [1544999]
+- [acpi] ACPI: APEI: arm64: Ignore broken HPE moonshot APEI support (Al Stone) [1518076]
+- [rpmspec] compute content hash for kernel-headers (Rafael Aquini) [1613003]
+- [rpmspec] compress modules on all architectures ("Herton R. Krzesinski") [1614556]
+- [rpmspec] add gcov rpm packaging support (Jan Stancek) [1601733]
+- [rpmspec] don't ship spdxcheck.py (Jakub Racek)
+- [rpmspec] clean stray bpf files (Jakub Racek) [1593309]
+- [rpmspec] Copy symvers.gz to /lib/modules (Eugene Syromiatnikov) [1609695]
+- [rpmspec] Add kabi-dup related code into specfile (Petr Oros) [1585672]
+- [rpmspec] kernel spec: Add and enable kabi check (Petr Oros) [1585672]
+- [rpmspec] Enable warning checks for configs in rpm build (Prarit Bhargava) [1589858]
+- [rpmspec] remove workaround for rst2man-3 from python3-docutils ("Herton R. Krzesinski") [1602148]
+- [rpmspec] fix dist tag used for hardlink in kernel-devel post ("Herton R. Krzesinski") [1596397]
+- [scripts] get_maintainer.pl: Add optional .get_maintainer.MAINTAINERS override (Prarit Bhargava) [1595727]
+- [rpmspec] drop kernel package dependency on python2 ("Herton R. Krzesinski") [1561505]
+- [kernel] Makefile: Move RHEL definitions down (Jakub Racek) [1576568]
+- [rpmspec] eBPF: Add bpftool package to spec file (Jerome Marchand) [1559607]
+- [rpmspec] fix conflicts with COPYING file while installing newer 4.17 kernel ("Herton R. Krzesinski") [1579563]
+- [rpmspec] do not build kernel meta-package on noarch ("Herton R. Krzesinski") [1579512]
+- [rpmspec] kernel spec: remove copy of arch/x86/purgatory/sha256.* ("Herton R. Krzesinski")
+- [rpmspec] spec: Add new arch/powerpc/kernel/module.lds file to kernel-devel rpm (Steve Best) [1572553]
+- [rpmspec] kernel spec: fix recent build errors from brp-mangle-shebangs ("Herton R. Krzesinski") [1575966]
+- [rpmspec] Add i386 to ExclusiveArch to fix noarch package build ("Herton R. Krzesinski") [1575152]
+- [rpmspec] Build kernel-abi-whitelists package (Petr Oros) [1571189]
+- [rpmspec] kernel spec: build bzImage for s390 (Hendrik Brueckner) [1570041]
+- [rpmspec] kernel spec: arm64: package module.lds in kernel-devel (Mark Salter) [1569014]
+- [rpmspec] Re-enable debuginfo packages and fix build with current dist tag ("Herton R. Krzesinski") [1568901]
+- [rpmspec] kernel spec: build kernel-debug on all architectures ("Herton R. Krzesinski") [1567367]
+- [rpmspec] don't build kernel meta-package if we are only building kernel headers ("Herton R. Krzesinski")
+- [rpmspec] remove use_vdso macro ("Herton R. Krzesinski")
+- [rpmspec] build perf and tools man pages instead of relying on a separate tarball ("Herton R. Krzesinski")
+- [rpmspec] disable debug build if arch is in nobuildarches list ("Herton R. Krzesinski")
+- [rpmspec] remove fedora changelog from spec file ("Herton R. Krzesinski")
+- [rpmspec] only support ppc64le builds ("Herton R. Krzesinski")
+- [rpmspec] remove x86 32-bit package support ("Herton R. Krzesinski")
+- [rpmspec] remove arm 32-bit package support ("Herton R. Krzesinski")
+- [rpmspec] remove configuration generation support from kernel spec file ("Herton R. Krzesinski")
+- [rpmspec] remove broken out patches from kernel spec file ("Herton R. Krzesinski")
+- [rpmspec] import kernel spec from rhel8 bootstrap dist-git ("Herton R. Krzesinski")
+
+###
+# The following Emacs magic makes C-c C-e use UTC dates.
+# Local Variables:
+# rpm-change-log-uses-utc: t
+# End:
+###